diff --git a/.coveralls.yml b/.coveralls.yml new file mode 100644 index 00000000000..c00a1ca9322 --- /dev/null +++ b/.coveralls.yml @@ -0,0 +1,3 @@ +src_dir: . +coverage_clover: ./tmp/clover.xml +json_path: ./tmp/coveralls-upload.json diff --git a/.editorconfig b/.editorconfig index e66ad499f4f..7407b2ecabf 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,4 +1,9 @@ +# This file is for unifying the coding style for different editors and IDEs # editorconfig.org + +# WordPress Coding Standards +# http://make.wordpress.org/core/handbook/coding-standards/ + root = true [*] @@ -10,3 +15,15 @@ indent_style = tab insert_final_newline = true trim_trailing_whitespace = true +[*.md] +trim_trailing_whitespace = false +indent_style = space +indent_size = 2 + +[*.txt] +trim_trailing_whitespace = false + +[*.json] +insert_final_newline = false +indent_style = space +indent_size = 2 diff --git a/.gitignore b/.gitignore index 569829f901b..3b55ddd9bf1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,13 +1,25 @@ -/nbproject/private/ +# Editors project.xml project.properties -.DS_Store -Thumbs.db +/nbproject/private/ .buildpath .project .settings* sftp-config.json +.idea -# Ignore all log files except for .htaccess -/logs/* -!/logs/.htaccess +# Grunt +/node_modules/ +/deploy/ + +# OS X metadata +.DS_Store + +# Windows junk +Thumbs.db + +# ApiGen +/wc-apidocs/ + +# Unit tests +/tmp diff --git a/.jshintrc b/.jshintrc new file mode 100644 index 00000000000..0766eb41f70 --- /dev/null +++ b/.jshintrc @@ -0,0 +1,24 @@ +{ + "boss": true, + "curly": true, + "eqeqeq": true, + "eqnull": true, + "es3": true, + "expr": true, + "immed": true, + "noarg": true, + "onevar": true, + "quotmark": "single", + "trailing": true, + "undef": true, + "unused": true, + + "browser": true, + + "globals": { + "_": false, + "Backbone": false, + "jQuery": false, + "wp": false + } +} diff --git a/.scrutinizer.yml b/.scrutinizer.yml new file mode 100644 index 00000000000..fe40783e6b0 --- /dev/null +++ b/.scrutinizer.yml @@ -0,0 +1,11 @@ +filter: + excluded_paths: + - tests/* + - apigen/* + - includes/api/v1/* + - includes/libraries/* + +checks: + php: + code_rating: true + duplication: true diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000000..7b140e2a793 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,23 @@ +language: php + +matrix: + include: + - php: '5.5' + env: WP_VERSION=latest WP_MULTISITE=1 + - php: '5.4' + env: WP_VERSION=3.8 WP_MULTISITE=0 + - php: '5.3' + env: WP_VERSION=latest WP_MULTISITE=0 + - php: '5.3' + env: WP_VERSION=3.8 WP_MULTISITE=1 + - php: '5.2' + env: WP_VERSION=latest WP_MULTISITE=0 + +before_script: + - bash tests/bin/install.sh woocommerce_test root '' localhost $WP_VERSION + - bash tests/bin/travis.sh before + +script: phpunit -c phpunit.xml.dist + +after_script: + - bash tests/bin/travis.sh after diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 044809440a0..236b9e3944c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,9 +8,9 @@ __Note:__ GitHub is for *bug reports and contributions only* - if you have a support question or a request for a customization don't post here. Use [WooThemes Support](http://support.woothemes.com) for customer support, [WordPress.org](http://wordpress.org/support/plugin/woocommerce) for community support, and for customisations we recommend one of the following services: -- Codeable: http://codeable.io/ -- Tweaky: https://www.tweaky.com/ -- Affiliated Woo Workers: http://www.woothemes.com/affiliated-woo-workers/ +- [Codeable](https://codeable.io/) +- [Elto](https://www.elto.com/) +- [Affiliated Woo Workers](http://www.woothemes.com/affiliated-woo-workers/) ## Getting Started @@ -23,10 +23,11 @@ GitHub is for *bug reports and contributions only* - if you have a support quest * Fork the repository on GitHub. * Make the changes to your forked repository. - * **Ensure you stick to the [WordPress Coding Standards](http://codex.wordpress.org/WordPress_Coding_Standards).** + * **Ensure you stick to the [WordPress Coding Standards](http://make.wordpress.org/core/handbook/coding-standards/php/).** * Ensure you use LF line endings - no crazy windows line endings. :) * When committing, reference your issue (#1234) and include a note about the fix. -* Push the changes to your fork and submit a pull request on the master WooCommerce repository. +* Push the changes to your fork and submit a pull request on the master branch of the WooCommerce repository. Existing maintenance branches will be maintained of by WooCommerce developers. +* Please don't modify the changelog, this will be maintained by WooCommerce developers. At this point you're waiting on us to merge your pull request. We'll review all pull requests, and make suggestions and changes if necessary. diff --git a/Gruntfile.js b/Gruntfile.js new file mode 100644 index 00000000000..883b97dcff5 --- /dev/null +++ b/Gruntfile.js @@ -0,0 +1,271 @@ +/* jshint node:true */ +module.exports = function( grunt ) { + 'use strict'; + + grunt.initConfig({ + + // setting folder templates + dirs: { + css: 'assets/css', + fonts: 'assets/fonts', + images: 'assets/images', + js: 'assets/js' + }, + + // JavaScript linting with JSHint. + jshint: { + options: { + jshintrc: '.jshintrc' + }, + all: [ + 'Gruntfile.js', + '<%= dirs.js %>/admin/*.js', + '!<%= dirs.js %>/admin/*.min.js', + '!<%= dirs.js %>/admin/jquery.flot*', + '<%= dirs.js %>/frontend/*.js', + '!<%= dirs.js %>/frontend/*.min.js' + ] + }, + + // Compile all .less files. + less: { + compile: { + options: { + // These paths are searched for @imports + paths: ['<%= dirs.css %>/'] + }, + files: [{ + expand: true, + cwd: '<%= dirs.css %>/', + src: [ + '*.less', + '!woocommerce-base.less', + '!mixins.less' + ], + dest: '<%= dirs.css %>/', + ext: '.css' + }] + } + }, + + // Minify .js files. + uglify: { + options: { + preserveComments: 'some' + }, + admin: { + files: [{ + expand: true, + cwd: '<%= dirs.js %>/admin/', + src: [ + '*.js', + '!*.min.js', + '!Gruntfile.js', + '!jquery.flot*' // !jquery.flot* prevents to join all jquery.flot files in jquery.min.js + ], + dest: '<%= dirs.js %>/admin/', + ext: '.min.js' + }] + }, + adminflot: { // minify correctly the jquery.flot lib + files: { + '<%= dirs.js %>/admin/jquery.flot.min.js': ['<%= dirs.js %>/admin/jquery.flot.js'], + '<%= dirs.js %>/admin/jquery.flot.pie.min.js': ['<%= dirs.js %>/admin/jquery.flot.pie.js'], + '<%= dirs.js %>/admin/jquery.flot.resize.min.js': ['<%= dirs.js %>/admin/jquery.flot.resize.js'], + '<%= dirs.js %>/admin/jquery.flot.stack.min.js': ['<%= dirs.js %>/admin/jquery.flot.stack.js'], + '<%= dirs.js %>/admin/jquery.flot.time.min.js': ['<%= dirs.js %>/admin/jquery.flot.time.js'], + } + }, + frontend: { + files: [{ + expand: true, + cwd: '<%= dirs.js %>/frontend/', + src: [ + '*.js', + '!*.min.js' + ], + dest: '<%= dirs.js %>/frontend/', + ext: '.min.js' + }] + }, + }, + + // Minify all .css files. + cssmin: { + minify: { + expand: true, + cwd: '<%= dirs.css %>/', + src: ['*.css'], + dest: '<%= dirs.css %>/', + ext: '.css' + } + }, + + // Watch changes for assets. + watch: { + less: { + files: ['<%= dirs.css %>/*.less'], + tasks: ['less', 'cssmin'] + }, + js: { + files: [ + '<%= dirs.js %>/admin/*js', + '<%= dirs.js %>/frontend/*js', + '!<%= dirs.js %>/admin/*.min.js', + '!<%= dirs.js %>/frontend/*.min.js' + ], + tasks: ['uglify'] + } + }, + + // Generate POT files. + makepot: { + options: { + type: 'wp-plugin', + domainPath: 'i18n/languages', + potHeaders: { + 'report-msgid-bugs-to': 'https://github.com/woothemes/woocommerce/issues', + 'language-team': 'LANGUAGE ' + } + }, + frontend: { + options: { + potFilename: 'woocommerce.pot', + exclude: [ + 'includes/admin/.*', + 'apigen/.*', + 'deploy/.*' + ], + processPot: function ( pot ) { + pot.headers['project-id-version'] += ' Frontend'; + return pot; + } + } + }, + admin: { + options: { + potFilename: 'woocommerce-admin.pot', + include: [ + 'includes/admin/.*' + ], + processPot: function ( pot ) { + pot.headers['project-id-version'] += ' Admin'; + return pot; + } + } + } + }, + + // Check textdomain errors. + checktextdomain: { + options:{ + text_domain: 'woocommerce', + keywords: [ + '__:1,2d', + '_e:1,2d', + '_x:1,2c,3d', + 'esc_html__:1,2d', + 'esc_html_e:1,2d', + 'esc_html_x:1,2c,3d', + 'esc_attr__:1,2d', + 'esc_attr_e:1,2d', + 'esc_attr_x:1,2c,3d', + '_ex:1,2c,3d', + '_n:1,2,4d', + '_nx:1,2,4c,5d', + '_n_noop:1,2,3d', + '_nx_noop:1,2,3c,4d' + ] + }, + files: { + src: [ + '**/*.php', // Include all files + '!apigen/**', // Exclude apigen/ + '!deploy/**', // Exclude deploy/ + '!node_modules/**' // Exclude node_modules/ + ], + expand: true + } + }, + + // Exec shell commands. + shell: { + options: { + stdout: true, + stderr: true + }, + apigen: { + command: [ + 'cd apigen/', + 'php apigen.php --source ../ --destination ../wc-apidocs --download yes --template-config ./templates/woodocs/config.neon --title "WooCommerce" --exclude "*/mijireh/*" --exclude "*/includes/libraries/*" --exclude "*/api/*" --exclude "*/i18n/*" --exclude "*/node_modules/*" --exclude "*/deploy/*" --exclude "*/apigen/*" --exclude "*/wc-apidocs/*"', + ].join( '&&' ) + } + }, + + // Copy files to deploy. + copy: { + deploy: { + src: [ + '**', + '!.*', + '!*.md', + '!.*/**', + '.htaccess', + '!Gruntfile.js', + '!sftp-config.json', + '!package.json', + '!node_modules/**', + '!wc-apidocs/**', + '!apigen/**' + ], + dest: 'deploy', + expand: true, + dot: true + } + }, + + // Clean the directory. + clean: { + apigen: { + src: [ 'wc-apidocs' ] + }, + deploy: { + src: [ 'deploy' ] + } + } + }); + + // Load NPM tasks to be used here + grunt.loadNpmTasks( 'grunt-shell' ); + grunt.loadNpmTasks( 'grunt-contrib-jshint' ); + grunt.loadNpmTasks( 'grunt-contrib-less' ); + grunt.loadNpmTasks( 'grunt-contrib-cssmin' ); + grunt.loadNpmTasks( 'grunt-contrib-uglify' ); + grunt.loadNpmTasks( 'grunt-contrib-watch' ); + grunt.loadNpmTasks( 'grunt-contrib-copy' ); + grunt.loadNpmTasks( 'grunt-contrib-clean' ); + grunt.loadNpmTasks( 'grunt-wp-i18n' ); + grunt.loadNpmTasks( 'grunt-checktextdomain' ); + + // Register tasks + grunt.registerTask( 'default', [ + 'less', + 'cssmin', + 'uglify' + ]); + + grunt.registerTask( 'docs', [ + 'clean:apigen', + 'shell:apigen' + ]); + + grunt.registerTask( 'dev', [ + 'default', + 'makepot' + ]); + + grunt.registerTask( 'deploy', [ + 'clean:deploy', + 'copy:deploy' + ]); +}; diff --git a/README.md b/README.md new file mode 100644 index 00000000000..09b56617d99 --- /dev/null +++ b/README.md @@ -0,0 +1,16 @@ +# [WooCommerce](http://www.woothemes.com/woocommerce/) [![Built with Grunt](https://cdn.gruntjs.com/builtwith.png)](http://gruntjs.com/) [![Build Status](https://api.travis-ci.org/woothemes/woocommerce.svg?branch=master)](http://travis-ci.org/woothemes/woocommerce) [![Coverage Status](https://img.shields.io/coveralls/woothemes/woocommerce.svg)](https://coveralls.io/r/woothemes/woocommerce) + +Welcome to the WooCommerce repository on GitHub. Here you can browse the source, look at open issues and keep track of development. We recommend all developers to follow the [WooCommerce development blog](http://develop.woothemes.com/woocommerce/) to stay up to date about everything happening in the project. You can also [follow @DevelopWC](https://twitter.com/DevelopWC) on Twitter for the latest development updates. + +If you are not a developer, please use the [WooCommerce plugin page](http://wordpress.org/plugins/woocommerce/) on WordPress.org. + +## Support +This repository is not suitable for support. Please don't use our issue tracker for support requests, but for core WooCommerce issues only. Support can take place in the appropriate channels: + +* The [WooThemes premium support portal](http://support.woothemes.com/) for customers who have purchased themes or extensions. +* [Our public HelpDesk](https://support.woothemes.com/hc/communities/public/topics) which is available for all WooCommerce users. + +Support requests in issues on this repository will be closed on sight. + +## Contributing to WooCommerce +If you have a patch, or stumbled upon an issue with WooCommerce core, you can contribute this back to the code. Please read our [contributor guidelines](https://github.com/woothemes/woocommerce/blob/master/CONTRIBUTING.md) for more information how you can do this. diff --git a/apigen/ApiGen/Backend.php b/apigen/ApiGen/Backend.php new file mode 100644 index 00000000000..4f201387d1d --- /dev/null +++ b/apigen/ApiGen/Backend.php @@ -0,0 +1,301 @@ +generator = $generator; + $this->cacheTokenStreams = $cacheTokenStreams; + } + + /** + * Destructor. + * + * Deletes all cached token streams. + */ + public function __destruct() + { + foreach ($this->fileCache as $file) { + unlink($file); + } + } + + /** + * Adds a file to the backend storage. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token stream + * @param \TokenReflection\ReflectionFile $file File reflection object + * @return \TokenReflection\Broker\Backend\Memory + */ + public function addFile(TokenReflection\Stream\StreamBase $tokenStream, TokenReflection\ReflectionFile $file) + { + if ($this->cacheTokenStreams) { + $this->fileCache[$file->getName()] = $cacheFile = tempnam(sys_get_temp_dir(), 'trc'); + file_put_contents($cacheFile, serialize($tokenStream)); + } + + parent::addFile($tokenStream, $file); + + return $this; + } + + /** + * Returns an array of tokens for a particular file. + * + * @param string $fileName File name + * @return \TokenReflection\Stream + * @throws \RuntimeException If the token stream could not be returned. + */ + public function getFileTokens($fileName) + { + try { + if (!$this->isFileProcessed($fileName)) { + throw new InvalidArgumentException('File was not processed'); + } + + $realName = Broker::getRealPath($fileName); + if (!isset($this->fileCache[$realName])) { + throw new InvalidArgumentException('File is not in the cache'); + } + + $data = @file_get_contents($this->fileCache[$realName]); + if (false === $data) { + throw new RuntimeException('Cached file is not readable'); + } + $file = @unserialize($data); + if (false === $file) { + throw new RuntimeException('Stream could not be loaded from cache'); + } + + return $file; + } catch (\Exception $e) { + throw new RuntimeException(sprintf('Could not return token stream for file %s', $fileName), 0, $e); + } + } + + /** + * Prepares and returns used class lists. + * + * @return array + */ + protected function parseClassLists() + { + $allClasses = array( + self::TOKENIZED_CLASSES => array(), + self::INTERNAL_CLASSES => array(), + self::NONEXISTENT_CLASSES => array() + ); + + $declared = array_flip(array_merge(get_declared_classes(), get_declared_interfaces())); + + foreach ($this->getNamespaces() as $namespace) { + foreach ($namespace->getClasses() as $name => $trClass) { + $class = new ReflectionClass($trClass, $this->generator); + $allClasses[self::TOKENIZED_CLASSES][$name] = $class; + if (!$class->isDocumented()) { + continue; + } + + foreach (array_merge($trClass->getParentClasses(), $trClass->getInterfaces()) as $parentName => $parent) { + if ($parent->isInternal()) { + if (!isset($allClasses[self::INTERNAL_CLASSES][$parentName])) { + $allClasses[self::INTERNAL_CLASSES][$parentName] = $parent; + } + } elseif (!$parent->isTokenized()) { + if (!isset($allClasses[self::NONEXISTENT_CLASSES][$parentName])) { + $allClasses[self::NONEXISTENT_CLASSES][$parentName] = $parent; + } + } + } + + $this->generator->checkMemory(); + } + } + + foreach ($allClasses[self::TOKENIZED_CLASSES] as $class) { + if (!$class->isDocumented()) { + continue; + } + + foreach ($class->getOwnMethods() as $method) { + $allClasses = $this->processFunction($declared, $allClasses, $method); + } + + foreach ($class->getOwnProperties() as $property) { + $annotations = $property->getAnnotations(); + + if (!isset($annotations['var'])) { + continue; + } + + foreach ($annotations['var'] as $doc) { + foreach (explode('|', preg_replace('~\\s.*~', '', $doc)) as $name) { + if ($name = rtrim($name, '[]')) { + $name = Resolver::resolveClassFQN($name, $class->getNamespaceAliases(), $class->getNamespaceName()); + $allClasses = $this->addClass($declared, $allClasses, $name); + } + } + } + } + + $this->generator->checkMemory(); + } + + foreach ($this->getFunctions() as $function) { + $allClasses = $this->processFunction($declared, $allClasses, $function); + } + + array_walk_recursive($allClasses, function(&$reflection, $name, Generator $generator) { + if (!$reflection instanceof ReflectionClass) { + $reflection = new ReflectionClass($reflection, $generator); + } + }, $this->generator); + + return $allClasses; + } + + /** + * Processes a function/method and adds classes from annotations to the overall class array. + * + * @param array $declared Array of declared classes + * @param array $allClasses Array with all classes parsed so far + * @param \ApiGen\ReflectionFunction|\TokenReflection\IReflectionFunctionBase $function Function/method reflection + * @return array + */ + private function processFunction(array $declared, array $allClasses, $function) + { + static $parsedAnnotations = array('param', 'return', 'throws'); + + $annotations = $function->getAnnotations(); + foreach ($parsedAnnotations as $annotation) { + if (!isset($annotations[$annotation])) { + continue; + } + + foreach ($annotations[$annotation] as $doc) { + foreach (explode('|', preg_replace('~\\s.*~', '', $doc)) as $name) { + if ($name) { + $name = Resolver::resolveClassFQN(rtrim($name, '[]'), $function->getNamespaceAliases(), $function->getNamespaceName()); + $allClasses = $this->addClass($declared, $allClasses, $name); + } + } + } + } + + foreach ($function->getParameters() as $param) { + if ($hint = $param->getClassName()) { + $allClasses = $this->addClass($declared, $allClasses, $hint); + } + } + + return $allClasses; + } + + /** + * Adds a class to list of classes. + * + * @param array $declared Array of declared classes + * @param array $allClasses Array with all classes parsed so far + * @param string $name Class name + * @return array + */ + private function addClass(array $declared, array $allClasses, $name) + { + $name = ltrim($name, '\\'); + + if (!isset($declared[$name]) || isset($allClasses[self::TOKENIZED_CLASSES][$name]) + || isset($allClasses[self::INTERNAL_CLASSES][$name]) || isset($allClasses[self::NONEXISTENT_CLASSES][$name]) + ) { + return $allClasses; + } + + $parameterClass = $this->getBroker()->getClass($name); + if ($parameterClass->isInternal()) { + $allClasses[self::INTERNAL_CLASSES][$name] = $parameterClass; + foreach (array_merge($parameterClass->getInterfaces(), $parameterClass->getParentClasses()) as $parentClass) { + if (!isset($allClasses[self::INTERNAL_CLASSES][$parentName = $parentClass->getName()])) { + $allClasses[self::INTERNAL_CLASSES][$parentName] = $parentClass; + } + } + } elseif (!$parameterClass->isTokenized() && !isset($allClasses[self::NONEXISTENT_CLASSES][$name])) { + $allClasses[self::NONEXISTENT_CLASSES][$name] = $parameterClass; + } + + return $allClasses; + } + + /** + * Returns all constants from all namespaces. + * + * @return array + */ + public function getConstants() + { + $generator = $this->generator; + return array_map(function(IReflectionConstant $constant) use ($generator) { + return new ReflectionConstant($constant, $generator); + }, parent::getConstants()); + } + + /** + * Returns all functions from all namespaces. + * + * @return array + */ + public function getFunctions() + { + $generator = $this->generator; + return array_map(function(IReflectionFunction $function) use ($generator) { + return new ReflectionFunction($function, $generator); + }, parent::getFunctions()); + } +} diff --git a/apigen/ApiGen/Config.php b/apigen/ApiGen/Config.php new file mode 100644 index 00000000000..ea35741dc7c --- /dev/null +++ b/apigen/ApiGen/Config.php @@ -0,0 +1,602 @@ + '', + 'source' => array(), + 'destination' => '', + 'extensions' => array('php'), + 'exclude' => array(), + 'skipDocPath' => array(), + 'skipDocPrefix' => array(), + 'charset' => array('auto'), + 'main' => '', + 'title' => '', + 'baseUrl' => '', + 'googleCseId' => '', + 'googleCseLabel' => '', + 'googleAnalytics' => '', + 'templateConfig' => '', + 'allowedHtml' => array('b', 'i', 'a', 'ul', 'ol', 'li', 'p', 'br', 'var', 'samp', 'kbd', 'tt'), + 'groups' => 'auto', + 'autocomplete' => array('classes', 'constants', 'functions'), + 'accessLevels' => array('public', 'protected'), + 'internal' => false, + 'php' => true, + 'tree' => true, + 'deprecated' => false, + 'todo' => false, + 'download' => false, + 'sourceCode' => true, + 'report' => '', + 'undocumented' => '', + 'wipeout' => true, + 'quiet' => false, + 'progressbar' => true, + 'colors' => true, + 'updateCheck' => true, + 'debug' => false + ); + + /** + * File or directory path options. + * + * @var array + */ + private static $pathOptions = array( + 'config', + 'source', + 'destination', + 'templateConfig', + 'report' + ); + + /** + * Possible values for options. + * + * @var array + */ + private static $possibleOptionsValues = array( + 'groups' => array('auto', 'namespaces', 'packages', 'none'), + 'autocomplete' => array('classes', 'constants', 'functions', 'methods', 'properties', 'classconstants'), + 'accessLevels' => array('public', 'protected', 'private') + ); + + /** + * Initializes default configuration. + */ + public function __construct() + { + $templateDir = self::isInstalledByPear() ? '@data_dir@' . DIRECTORY_SEPARATOR . 'ApiGen' : realpath(__DIR__ . DIRECTORY_SEPARATOR . '..'); + self::$defaultConfig['templateConfig'] = $templateDir . DIRECTORY_SEPARATOR . 'templates' . DIRECTORY_SEPARATOR . 'default' . DIRECTORY_SEPARATOR . 'config.neon'; + self::$defaultConfig['colors'] = 'WIN' !== substr(PHP_OS, 0, 3); + $this->config = self::$defaultConfig; + } + + /** + * Processes command line options. + * + * @param array $options + * @return \ApiGen\Config + */ + public function processCliOptions(array $options) + { + while ($option = current($options)) { + if (preg_match('~^--([a-z][-a-z]*[a-z])(?:=(.+))?$~', $option, $matches) || preg_match('~^-([a-z])=?(.*)~', $option, $matches)) { + $name = $matches[1]; + + if (!empty($matches[2])) { + $value = $matches[2]; + } else { + $next = next($options); + if (false === $next || '-' === $next{0}) { + prev($options); + $value = ''; + } else { + $value = $next; + } + } + + $this->options[$name][] = $value; + } + + next($options); + } + $this->options = array_map(function($value) { + return 1 === count($value) ? $value[0] : $value; + }, $this->options); + + // Compatibility with ApiGen 1.0 + foreach (array('config', 'source', 'destination') as $option) { + if (isset($this->options[$option{0}]) && !isset($this->options[$option])) { + $this->options[$option] = $this->options[$option{0}]; + } + unset($this->options[$option{0}]); + } + + return $this; + } + + /** + * Prepares configuration. + * + * @return \ApiGen\Config + * @throws \ApiGen\ConfigException If something in configuration is wrong. + */ + public function prepare() + { + // Command line options + $cli = array(); + $translator = array(); + foreach ($this->options as $option => $value) { + $converted = preg_replace_callback('~-([a-z])~', function($matches) { + return strtoupper($matches[1]); + }, $option); + + $cli[$converted] = $value; + $translator[$converted] = $option; + } + + $unknownOptions = array_keys(array_diff_key($cli, self::$defaultConfig)); + if (!empty($unknownOptions)) { + $originalOptions = array_map(function($option) { + return (1 === strlen($option) ? '-' : '--') . $option; + }, array_values(array_diff_key($translator, self::$defaultConfig))); + + $message = count($unknownOptions) > 1 + ? sprintf('Unknown command line options "%s"', implode('", "', $originalOptions)) + : sprintf('Unknown command line option "%s"', $originalOptions[0]); + throw new ConfigException($message); + } + + // Config file + $neon = array(); + if (empty($this->options) && $this->defaultConfigExists()) { + $this->options['config'] = $this->getDefaultConfigPath(); + } + if (isset($this->options['config']) && is_file($this->options['config'])) { + $neon = Neon::decode(file_get_contents($this->options['config'])); + foreach (self::$pathOptions as $option) { + if (!empty($neon[$option])) { + if (is_array($neon[$option])) { + foreach ($neon[$option] as $key => $value) { + $neon[$option][$key] = $this->getAbsolutePath($value); + } + } else { + $neon[$option] = $this->getAbsolutePath($neon[$option]); + } + } + } + + $unknownOptions = array_keys(array_diff_key($neon, self::$defaultConfig)); + if (!empty($unknownOptions)) { + $message = count($unknownOptions) > 1 + ? sprintf('Unknown config file options "%s"', implode('", "', $unknownOptions)) + : sprintf('Unknown config file option "%s"', $unknownOptions[0]); + throw new ConfigException($message); + } + } + + // Merge options + $this->config = array_merge(self::$defaultConfig, $neon, $cli); + + // Compatibility with old option name "undocumented" + if (!isset($this->config['report']) && isset($this->config['undocumented'])) { + $this->config['report'] = $this->config['undocumented']; + unset($this->config['undocumented']); + } + + foreach (self::$defaultConfig as $option => $valueDefinition) { + if (is_array($this->config[$option]) && !is_array($valueDefinition)) { + throw new ConfigException(sprintf('Option "%s" must be set only once', $option)); + } + + if (is_bool($this->config[$option]) && !is_bool($valueDefinition)) { + throw new ConfigException(sprintf('Option "%s" expects value', $option)); + } + + if (is_bool($valueDefinition) && !is_bool($this->config[$option])) { + // Boolean option + $value = strtolower($this->config[$option]); + if ('on' === $value || 'yes' === $value || 'true' === $value || '' === $value) { + $value = true; + } elseif ('off' === $value || 'no' === $value || 'false' === $value) { + $value = false; + } + $this->config[$option] = (bool) $value; + } elseif (is_array($valueDefinition)) { + // Array option + $this->config[$option] = array_unique((array) $this->config[$option]); + foreach ($this->config[$option] as $key => $value) { + $value = explode(',', $value); + while (count($value) > 1) { + array_push($this->config[$option], array_shift($value)); + } + $this->config[$option][$key] = array_shift($value); + } + $this->config[$option] = array_filter($this->config[$option]); + } + + // Check posssible values + if (!empty(self::$possibleOptionsValues[$option])) { + $values = self::$possibleOptionsValues[$option]; + + if (is_array($valueDefinition)) { + $this->config[$option] = array_filter($this->config[$option], function($value) use ($values) { + return in_array($value, $values); + }); + } elseif (!in_array($this->config[$option], $values)) { + $this->config[$option] = ''; + } + } + } + + // Unify character sets + $this->config['charset'] = array_map('strtoupper', $this->config['charset']); + + // Process options that specify a filesystem path + foreach (self::$pathOptions as $option) { + if (is_array($this->config[$option])) { + array_walk($this->config[$option], function(&$value) { + if (file_exists($value)) { + $value = realpath($value); + } + }); + usort($this->config[$option], 'strcasecmp'); + } else { + if (file_exists($this->config[$option])) { + $this->config[$option] = realpath($this->config[$option]); + } + } + } + + // Unify directory separators + foreach (array('exclude', 'skipDocPath') as $option) { + $this->config[$option] = array_map(function($mask) { + return str_replace(array('/', '\\'), DIRECTORY_SEPARATOR, $mask); + }, $this->config[$option]); + usort($this->config[$option], 'strcasecmp'); + } + + // Unify prefixes + $this->config['skipDocPrefix'] = array_map(function($prefix) { + return ltrim($prefix, '\\'); + }, $this->config['skipDocPrefix']); + usort($this->config['skipDocPrefix'], 'strcasecmp'); + + // Base url without slash at the end + $this->config['baseUrl'] = rtrim($this->config['baseUrl'], '/'); + + // No progressbar in quiet mode + if ($this->config['quiet']) { + $this->config['progressbar'] = false; + } + + // Check + $this->check(); + + // Default template config + $this->config['template'] = array( + 'require' => array(), + 'resources' => array(), + 'templates' => array( + 'common' => array(), + 'optional' => array() + ) + ); + + // Merge template config + $this->config = array_merge_recursive($this->config, array('template' => Neon::decode(file_get_contents($fileName = $this->config['templateConfig'])))); + $this->config['template']['config'] = realpath($fileName); + + // Check template + $this->checkTemplate(); + + return $this; + } + + /** + * Checks configuration. + * + * @return \ApiGen\Config + * @throws \ApiGen\ConfigException If something in configuration is wrong. + */ + private function check() + { + if (!empty($this->config['config']) && !is_file($this->config['config'])) { + throw new ConfigException(sprintf('Config file "%s" doesn\'t exist', $this->config['config'])); + } + + if (empty($this->config['source'])) { + throw new ConfigException('Source is not set'); + } + foreach ($this->config['source'] as $source) { + if (!file_exists($source)) { + throw new ConfigException(sprintf('Source "%s" doesn\'t exist', $source)); + } + } + + if (empty($this->config['destination'])) { + throw new ConfigException('Destination is not set'); + } + + foreach ($this->config['extensions'] as $extension) { + if (!preg_match('~^[a-z\\d]+$~i', $extension)) { + throw new ConfigException(sprintf('Invalid file extension "%s"', $extension)); + } + } + + if (!is_file($this->config['templateConfig'])) { + throw new ConfigException(sprintf('Template config "%s" doesn\'t exist', $this->config['templateConfig'])); + } + + if (!empty($this->config['baseUrl']) && !preg_match('~^https?://(?:[-a-z0-9]+\.)+[a-z]{2,6}(?:/.*)?$~i', $this->config['baseUrl'])) { + throw new ConfigException(sprintf('Invalid base url "%s"', $this->config['baseUrl'])); + } + + if (!empty($this->config['googleCseId']) && !preg_match('~^\d{21}:[-a-z0-9_]{11}$~', $this->config['googleCseId'])) { + throw new ConfigException(sprintf('Invalid Google Custom Search ID "%s"', $this->config['googleCseId'])); + } + + if (!empty($this->config['googleAnalytics']) && !preg_match('~^UA\\-\\d+\\-\\d+$~', $this->config['googleAnalytics'])) { + throw new ConfigException(sprintf('Invalid Google Analytics tracking code "%s"', $this->config['googleAnalytics'])); + } + + if (empty($this->config['groups'])) { + throw new ConfigException('No supported groups value given'); + } + + if (empty($this->config['autocomplete'])) { + throw new ConfigException('No supported autocomplete value given'); + } + + if (empty($this->config['accessLevels'])) { + throw new ConfigException('No supported access level given'); + } + + return $this; + } + + /** + * Checks template configuration. + * + * @return \ApiGen\Config + * @throws \ApiGen\ConfigException If something in template configuration is wrong. + */ + private function checkTemplate() + { + $require = $this->config['template']['require']; + if (isset($require['min']) && !preg_match('~^\\d+(?:\\.\\d+){0,2}$~', $require['min'])) { + throw new ConfigException(sprintf('Invalid minimal version definition "%s"', $require['min'])); + } + if (isset($require['max']) && !preg_match('~^\\d+(?:\\.\\d+){0,2}$~', $require['max'])) { + throw new ConfigException(sprintf('Invalid maximal version definition "%s"', $require['max'])); + } + + $isMinOk = function($min) { + $min .= str_repeat('.0', 2 - substr_count($min, '.')); + return version_compare($min, Generator::VERSION, '<='); + }; + $isMaxOk = function($max) { + $max .= str_repeat('.0', 2 - substr_count($max, '.')); + return version_compare($max, Generator::VERSION, '>='); + }; + + if (isset($require['min'], $require['max']) && (!$isMinOk($require['min']) || !$isMaxOk($require['max']))) { + throw new ConfigException(sprintf('The template requires version from "%s" to "%s", you are using version "%s"', $require['min'], $require['max'], Generator::VERSION)); + } elseif (isset($require['min']) && !$isMinOk($require['min'])) { + throw new ConfigException(sprintf('The template requires version "%s" or newer, you are using version "%s"', $require['min'], Generator::VERSION)); + } elseif (isset($require['max']) && !$isMaxOk($require['max'])) { + throw new ConfigException(sprintf('The template requires version "%s" or older, you are using version "%s"', $require['max'], Generator::VERSION)); + } + + foreach (array('main', 'optional') as $section) { + foreach ($this->config['template']['templates'][$section] as $type => $config) { + if (!isset($config['filename'])) { + throw new ConfigException(sprintf('Filename for "%s" is not defined', $type)); + } + if (!isset($config['template'])) { + throw new ConfigException(sprintf('Template for "%s" is not defined', $type)); + } + if (!is_file(dirname($this->config['templateConfig']) . DIRECTORY_SEPARATOR . $config['template'])) { + throw new ConfigException(sprintf('Template for "%s" doesn\'t exist', $type)); + } + } + } + + return $this; + } + + /** + * Returns default configuration file path. + * + * @return string + */ + private function getDefaultConfigPath() + { + return getcwd() . DIRECTORY_SEPARATOR . 'apigen.neon'; + } + + /** + * Checks if default configuration file exists. + * + * @return boolean + */ + private function defaultConfigExists() + { + return is_file($this->getDefaultConfigPath()); + } + + /** + * Returns absolute path. + * + * @param string $path Path + * @return string + */ + private function getAbsolutePath($path) + { + if (preg_match('~/|[a-z]:~Ai', $path)) { + return $path; + } + + return dirname($this->options['config']) . DIRECTORY_SEPARATOR . $path; + } + + /** + * Checks if a configuration option exists. + * + * @param string $name Option name + * @return boolean + */ + public function __isset($name) + { + return isset($this->config[$name]); + } + + /** + * Returns a configuration option value. + * + * @param string $name Option name + * @return mixed + */ + public function __get($name) + { + return isset($this->config[$name]) ? $this->config[$name] : null; + } + + /** + * If the user requests help. + * + * @return boolean + */ + public function isHelpRequested() + { + if (empty($this->options) && !$this->defaultConfigExists()) { + return true; + } + + if (isset($this->options['h']) || isset($this->options['help'])) { + return true; + } + + return false; + } + + /** + * Returns help. + * + * @return string + */ + public function getHelp() + { + return <<<"HELP" +Usage: + apigen @option@--config@c <@value@path@c> [options] + apigen @option@--source@c <@value@dir@c|@value@file@c> @option@--destination@c <@value@dir@c> [options] + +Options: + @option@--config@c|@option@-c@c <@value@file@c> Config file + @option@--source@c|@option@-s@c <@value@dir@c|@value@file@c> Source file or directory to parse (can be used multiple times) + @option@--destination@c|@option@-d@c <@value@dir@c> Directory where to save the generated documentation + @option@--extensions@c <@value@list@c> List of allowed file extensions, default "@value@php@c" + @option@--exclude@c <@value@mask@c> Mask (case sensitive) to exclude file or directory from processing (can be used multiple times) + @option@--skip-doc-path@c <@value@mask@c> Don't generate documentation for elements from file or directory with this (case sensitive) mask (can be used multiple times) + @option@--skip-doc-prefix@c <@value@value@c> Don't generate documentation for elements with this (case sensitive) name prefix (can be used multiple times) + @option@--charset@c <@value@list@c> Character set of source files, default "@value@auto@c" + @option@--main@c <@value@value@c> Main project name prefix + @option@--title@c <@value@value@c> Title of generated documentation + @option@--base-url@c <@value@value@c> Documentation base URL + @option@--google-cse-id@c <@value@value@c> Google Custom Search ID + @option@--google-cse-label@c <@value@value@c> Google Custom Search label + @option@--google-analytics@c <@value@value@c> Google Analytics tracking code + @option@--template-config@c <@value@file@c> Template config file, default "@value@{$this->config['templateConfig']}@c" + @option@--allowed-html@c <@value@list@c> List of allowed HTML tags in documentation, default "@value@b,i,a,ul,ol,li,p,br,var,samp,kbd,tt@c" + @option@--groups@c <@value@value@c> How should elements be grouped in the menu. Default value is "@value@auto@c" (namespaces if available, packages otherwise) + @option@--autocomplete@c <@value@list@c> Element types for search input autocomplete. Default value is "@value@classes,constants,functions@c" + @option@--access-levels@c <@value@list@c> Generate documentation for methods and properties with given access level, default "@value@public,protected@c" + @option@--internal@c <@value@yes@c|@value@no@c> Generate documentation for elements marked as internal and display internal documentation parts, default "@value@no@c" + @option@--php@c <@value@yes@c|@value@no@c> Generate documentation for PHP internal classes, default "@value@yes@c" + @option@--tree@c <@value@yes@c|@value@no@c> Generate tree view of classes, interfaces, traits and exceptions, default "@value@yes@c" + @option@--deprecated@c <@value@yes@c|@value@no@c> Generate documentation for deprecated elements, default "@value@no@c" + @option@--todo@c <@value@yes@c|@value@no@c> Generate documentation of tasks, default "@value@no@c" + @option@--source-code@c <@value@yes@c|@value@no@c> Generate highlighted source code files, default "@value@yes@c" + @option@--download@c <@value@yes@c|@value@no@c> Add a link to download documentation as a ZIP archive, default "@value@no@c" + @option@--report@c <@value@file@c> Save a checkstyle report of poorly documented elements into a file + @option@--wipeout@c <@value@yes@c|@value@no@c> Wipe out the destination directory first, default "@value@yes@c" + @option@--quiet@c <@value@yes@c|@value@no@c> Don't display scaning and generating messages, default "@value@no@c" + @option@--progressbar@c <@value@yes@c|@value@no@c> Display progressbars, default "@value@yes@c" + @option@--colors@c <@value@yes@c|@value@no@c> Use colors, default "@value@no@c" on Windows, "@value@yes@c" on other systems + @option@--update-check@c <@value@yes@c|@value@no@c> Check for update, default "@value@yes@c" + @option@--debug@c <@value@yes@c|@value@no@c> Display additional information in case of an error, default "@value@no@c" + @option@--help@c|@option@-h@c Display this help + +Only source and destination directories are required - either set explicitly or using a config file. Configuration parameters passed via command line have precedence over parameters from a config file. + +Boolean options (those with possible values @value@yes@c|@value@no@c) do not have to have their values defined explicitly. Using @option@--debug@c and @option@--debug@c=@value@yes@c is exactly the same. + +Some options can have multiple values. You can do so either by using them multiple times or by separating values by a comma. That means that writing @option@--source@c=@value@file1.php@c @option@--source@c=@value@file2.php@c or @option@--source@c=@value@file1.php,file2.php@c is exactly the same. + +Files or directories specified by @option@--exclude@c will not be processed at all. +Elements from files within @option@--skip-doc-path@c or with @option@--skip-doc-prefix@c will be parsed but will not have their documentation generated. However if classes have any child classes, the full class tree will be generated and their inherited methods, properties and constants will be displayed (but will not be clickable). + +HELP; + } + + /** + * Checks if ApiGen is installed by PEAR. + * + * @return boolean + */ + public static function isInstalledByPear() + { + return false === strpos('@data_dir@', '@data_dir'); + } + + /** + * Checks if ApiGen is installed from downloaded archive. + * + * @return boolean + */ + public static function isInstalledByDownload() + { + return !self::isInstalledByPear(); + } +} diff --git a/apigen/ApiGen/ConfigException.php b/apigen/ApiGen/ConfigException.php new file mode 100644 index 00000000000..07709114b59 --- /dev/null +++ b/apigen/ApiGen/ConfigException.php @@ -0,0 +1,25 @@ + '[%s] %\' 6.2f%% %\' 3dMB', + 'width' => 80, + 'bar' => 64, + 'current' => 0, + 'maximum' => 1 + ); + + /** + * Sets configuration. + * + * @param array $config + */ + public function __construct(Config $config) + { + $this->config = $config; + $this->parsedClasses = new \ArrayObject(); + $this->parsedConstants = new \ArrayObject(); + $this->parsedFunctions = new \ArrayObject(); + } + + /** + * Scans and parses PHP files. + * + * @return array + * @throws \RuntimeException If no PHP files have been found. + */ + public function parse() + { + $files = array(); + + $flags = \RecursiveDirectoryIterator::CURRENT_AS_FILEINFO | \RecursiveDirectoryIterator::SKIP_DOTS; + if (defined('\\RecursiveDirectoryIterator::FOLLOW_SYMLINKS')) { + // Available from PHP 5.3.1 + $flags |= \RecursiveDirectoryIterator::FOLLOW_SYMLINKS; + } + + foreach ($this->config->source as $source) { + $entries = array(); + if (is_dir($source)) { + foreach (new \RecursiveIteratorIterator(new SourceFilesFilterIterator(new \RecursiveDirectoryIterator($source, $flags), $this->config->exclude)) as $entry) { + if (!$entry->isFile()) { + continue; + } + $entries[] = $entry; + } + } elseif ($this->isPhar($source)) { + if (!extension_loaded('phar')) { + throw new RuntimeException('Phar extension is not loaded'); + } + foreach (new \RecursiveIteratorIterator(new \Phar($source, $flags)) as $entry) { + if (!$entry->isFile()) { + continue; + } + $entries[] = $entry; + } + } else { + $entries[] = new \SplFileInfo($source); + } + + $regexp = '~\\.' . implode('|', $this->config->extensions) . '$~i'; + foreach ($entries as $entry) { + if (!preg_match($regexp, $entry->getFilename())) { + continue; + } + + $pathName = $this->normalizePath($entry->getPathName()); + $files[$pathName] = $entry->getSize(); + if (false !== $entry->getRealPath() && $pathName !== $entry->getRealPath()) { + $this->symlinks[$entry->getRealPath()] = $pathName; + } + } + } + + if (empty($files)) { + throw new RuntimeException('No PHP files found'); + } + + if ($this->config->progressbar) { + $this->prepareProgressBar(array_sum($files)); + } + + $broker = new Broker(new Backend($this, !empty($this->config->report)), Broker::OPTION_DEFAULT & ~(Broker::OPTION_PARSE_FUNCTION_BODY | Broker::OPTION_SAVE_TOKEN_STREAM)); + + $errors = array(); + + foreach ($files as $fileName => $size) { + $content = file_get_contents($fileName); + $charset = $this->detectCharset($content); + $this->charsets[$fileName] = $charset; + $content = $this->toUtf($content, $charset); + + try { + $broker->processString($content, $fileName); + } catch (\Exception $e) { + $errors[] = $e; + } + + $this->incrementProgressBar($size); + $this->checkMemory(); + } + + // Classes + $this->parsedClasses->exchangeArray($broker->getClasses(Backend::TOKENIZED_CLASSES | Backend::INTERNAL_CLASSES | Backend::NONEXISTENT_CLASSES)); + $this->parsedClasses->uksort('strcasecmp'); + + // Constants + $this->parsedConstants->exchangeArray($broker->getConstants()); + $this->parsedConstants->uksort('strcasecmp'); + + // Functions + $this->parsedFunctions->exchangeArray($broker->getFunctions()); + $this->parsedFunctions->uksort('strcasecmp'); + + $documentedCounter = function($count, $element) { + return $count += (int) $element->isDocumented(); + }; + + return (object) array( + 'classes' => count($broker->getClasses(Backend::TOKENIZED_CLASSES)), + 'constants' => count($this->parsedConstants), + 'functions' => count($this->parsedFunctions), + 'internalClasses' => count($broker->getClasses(Backend::INTERNAL_CLASSES)), + 'documentedClasses' => array_reduce($broker->getClasses(Backend::TOKENIZED_CLASSES), $documentedCounter), + 'documentedConstants' => array_reduce($this->parsedConstants->getArrayCopy(), $documentedCounter), + 'documentedFunctions' => array_reduce($this->parsedFunctions->getArrayCopy(), $documentedCounter), + 'documentedInternalClasses' => array_reduce($broker->getClasses(Backend::INTERNAL_CLASSES), $documentedCounter), + 'errors' => $errors + ); + } + + /** + * Returns configuration. + * + * @return mixed + */ + public function getConfig() + { + return $this->config; + } + + /** + * Returns parsed class list. + * + * @return \ArrayObject + */ + public function getParsedClasses() + { + return $this->parsedClasses; + } + + /** + * Returns parsed constant list. + * + * @return \ArrayObject + */ + public function getParsedConstants() + { + return $this->parsedConstants; + } + + /** + * Returns parsed function list. + * + * @return \ArrayObject + */ + public function getParsedFunctions() + { + return $this->parsedFunctions; + } + + /** + * Wipes out the destination directory. + * + * @return boolean + */ + public function wipeOutDestination() + { + foreach ($this->getGeneratedFiles() as $path) { + if (is_file($path) && !@unlink($path)) { + return false; + } + } + + $archive = $this->getArchivePath(); + if (is_file($archive) && !@unlink($archive)) { + return false; + } + + return true; + } + + /** + * Generates API documentation. + * + * @throws \RuntimeException If destination directory is not writable. + */ + public function generate() + { + @mkdir($this->config->destination, 0755, true); + if (!is_dir($this->config->destination) || !is_writable($this->config->destination)) { + throw new RuntimeException(sprintf('Directory "%s" isn\'t writable', $this->config->destination)); + } + + // Copy resources + foreach ($this->config->template['resources'] as $resourceSource => $resourceDestination) { + // File + $resourcePath = $this->getTemplateDir() . DIRECTORY_SEPARATOR . $resourceSource; + if (is_file($resourcePath)) { + copy($resourcePath, $this->forceDir($this->config->destination . DIRECTORY_SEPARATOR . $resourceDestination)); + continue; + } + + // Dir + $iterator = Nette\Utils\Finder::findFiles('*')->from($resourcePath)->getIterator(); + foreach ($iterator as $item) { + copy($item->getPathName(), $this->forceDir($this->config->destination . DIRECTORY_SEPARATOR . $resourceDestination . DIRECTORY_SEPARATOR . $iterator->getSubPathName())); + } + } + + // Categorize by packages and namespaces + $this->categorize(); + + // Prepare progressbar + if ($this->config->progressbar) { + $max = count($this->packages) + + count($this->namespaces) + + count($this->classes) + + count($this->interfaces) + + count($this->traits) + + count($this->exceptions) + + count($this->constants) + + count($this->functions) + + count($this->config->template['templates']['common']) + + (int) !empty($this->config->report) + + (int) $this->config->tree + + (int) $this->config->deprecated + + (int) $this->config->todo + + (int) $this->config->download + + (int) $this->isSitemapEnabled() + + (int) $this->isOpensearchEnabled() + + (int) $this->isRobotsEnabled(); + + if ($this->config->sourceCode) { + $tokenizedFilter = function(ReflectionClass $class) { + return $class->isTokenized(); + }; + $max += count(array_filter($this->classes, $tokenizedFilter)) + + count(array_filter($this->interfaces, $tokenizedFilter)) + + count(array_filter($this->traits, $tokenizedFilter)) + + count(array_filter($this->exceptions, $tokenizedFilter)) + + count($this->constants) + + count($this->functions); + unset($tokenizedFilter); + } + + $this->prepareProgressBar($max); + } + + // Prepare template + $tmp = $this->config->destination . DIRECTORY_SEPARATOR . 'tmp'; + $this->deleteDir($tmp); + @mkdir($tmp, 0755, true); + $template = new Template($this); + $template->setCacheStorage(new Nette\Caching\Storages\PhpFileStorage($tmp)); + $template->generator = self::NAME; + $template->version = self::VERSION; + $template->config = $this->config; + + $this->registerCustomTemplateMacros($template); + + // Common files + $this->generateCommon($template); + + // Optional files + $this->generateOptional($template); + + // List of poorly documented elements + if (!empty($this->config->report)) { + $this->generateReport(); + } + + // List of deprecated elements + if ($this->config->deprecated) { + $this->generateDeprecated($template); + } + + // List of tasks + if ($this->config->todo) { + $this->generateTodo($template); + } + + // Classes/interfaces/traits/exceptions tree + if ($this->config->tree) { + $this->generateTree($template); + } + + // Generate packages summary + $this->generatePackages($template); + + // Generate namespaces summary + $this->generateNamespaces($template); + + // Generate classes, interfaces, traits, exceptions, constants and functions files + $this->generateElements($template); + + // Generate ZIP archive + if ($this->config->download) { + $this->generateArchive(); + } + + // Delete temporary directory + $this->deleteDir($tmp); + } + + /** + * Loads template-specific macro and helper libraries. + * + * @param \ApiGen\Template $template Template instance + */ + private function registerCustomTemplateMacros(Template $template) + { + $latte = new Nette\Latte\Engine(); + + if (!empty($this->config->template['options']['extensions'])) { + $this->output("Loading custom template macro and helper libraries\n"); + $broker = new Broker(new Broker\Backend\Memory(), 0); + + $baseDir = dirname($this->config->template['config']); + foreach ((array) $this->config->template['options']['extensions'] as $fileName) { + $pathName = $baseDir . DIRECTORY_SEPARATOR . $fileName; + if (is_file($pathName)) { + try { + $reflectionFile = $broker->processFile($pathName, true); + + foreach ($reflectionFile->getNamespaces() as $namespace) { + foreach ($namespace->getClasses() as $class) { + if ($class->isSubclassOf('ApiGen\\MacroSet')) { + // Macro set + + include $pathName; + call_user_func(array($class->getName(), 'install'), $latte->compiler); + + $this->output(sprintf(" %s (macro set)\n", $class->getName())); + } elseif ($class->implementsInterface('ApiGen\\IHelperSet')) { + // Helpers set + + include $pathName; + $className = $class->getName(); + $template->registerHelperLoader(callback(new $className($template), 'loader')); + + $this->output(sprintf(" %s (helper set)\n", $class->getName())); + } + } + } + } catch (\Exception $e) { + throw new \Exception(sprintf('Could not load macros and helpers from file "%s"', $pathName), 0, $e); + } + } else { + throw new \Exception(sprintf('Helper file "%s" does not exist.', $pathName)); + } + } + } + + $template->registerFilter($latte); + } + + /** + * Categorizes by packages and namespaces. + * + * @return \ApiGen\Generator + */ + private function categorize() + { + foreach (array('classes', 'constants', 'functions') as $type) { + foreach ($this->{'parsed' . ucfirst($type)} as $elementName => $element) { + if (!$element->isDocumented()) { + continue; + } + + $packageName = $element->getPseudoPackageName(); + $namespaceName = $element->getPseudoNamespaceName(); + + if ($element instanceof ReflectionConstant) { + $this->constants[$elementName] = $element; + $this->packages[$packageName]['constants'][$elementName] = $element; + $this->namespaces[$namespaceName]['constants'][$element->getShortName()] = $element; + } elseif ($element instanceof ReflectionFunction) { + $this->functions[$elementName] = $element; + $this->packages[$packageName]['functions'][$elementName] = $element; + $this->namespaces[$namespaceName]['functions'][$element->getShortName()] = $element; + } elseif ($element->isInterface()) { + $this->interfaces[$elementName] = $element; + $this->packages[$packageName]['interfaces'][$elementName] = $element; + $this->namespaces[$namespaceName]['interfaces'][$element->getShortName()] = $element; + } elseif ($element->isTrait()) { + $this->traits[$elementName] = $element; + $this->packages[$packageName]['traits'][$elementName] = $element; + $this->namespaces[$namespaceName]['traits'][$element->getShortName()] = $element; + } elseif ($element->isException()) { + $this->exceptions[$elementName] = $element; + $this->packages[$packageName]['exceptions'][$elementName] = $element; + $this->namespaces[$namespaceName]['exceptions'][$element->getShortName()] = $element; + } else { + $this->classes[$elementName] = $element; + $this->packages[$packageName]['classes'][$elementName] = $element; + $this->namespaces[$namespaceName]['classes'][$element->getShortName()] = $element; + } + } + } + + // Select only packages or namespaces + $userPackagesCount = count(array_diff(array_keys($this->packages), array('PHP', 'None'))); + $userNamespacesCount = count(array_diff(array_keys($this->namespaces), array('PHP', 'None'))); + + $namespacesEnabled = ('auto' === $this->config->groups && ($userNamespacesCount > 0 || 0 === $userPackagesCount)) || 'namespaces' === $this->config->groups; + $packagesEnabled = ('auto' === $this->config->groups && !$namespacesEnabled) || 'packages' === $this->config->groups; + + if ($namespacesEnabled) { + $this->packages = array(); + $this->namespaces = $this->sortGroups($this->namespaces); + } elseif ($packagesEnabled) { + $this->namespaces = array(); + $this->packages = $this->sortGroups($this->packages); + } else { + $this->namespaces = array(); + $this->packages = array(); + } + + return $this; + } + + /** + * Sorts and filters groups. + * + * @param array $groups + * @return array + */ + private function sortGroups(array $groups) + { + // Don't generate only 'None' groups + if (1 === count($groups) && isset($groups['None'])) { + return array(); + } + + $emptyList = array('classes' => array(), 'interfaces' => array(), 'traits' => array(), 'exceptions' => array(), 'constants' => array(), 'functions' => array()); + + $groupNames = array_keys($groups); + $lowerGroupNames = array_flip(array_map(function($y) { + return strtolower($y); + }, $groupNames)); + + foreach ($groupNames as $groupName) { + // Add missing parent groups + $parent = ''; + foreach (explode('\\', $groupName) as $part) { + $parent = ltrim($parent . '\\' . $part, '\\'); + if (!isset($lowerGroupNames[strtolower($parent)])) { + $groups[$parent] = $emptyList; + } + } + + // Add missing element types + foreach ($this->getElementTypes() as $type) { + if (!isset($groups[$groupName][$type])) { + $groups[$groupName][$type] = array(); + } + } + } + + $main = $this->config->main; + uksort($groups, function($one, $two) use ($main) { + // \ as separator has to be first + $one = str_replace('\\', ' ', $one); + $two = str_replace('\\', ' ', $two); + + if ($main) { + if (0 === strpos($one, $main) && 0 !== strpos($two, $main)) { + return -1; + } elseif (0 !== strpos($one, $main) && 0 === strpos($two, $main)) { + return 1; + } + } + + return strcasecmp($one, $two); + }); + + return $groups; + } + + /** + * Generates common files. + * + * @param \ApiGen\Template $template Template + * @return \ApiGen\Generator + */ + private function generateCommon(Template $template) + { + $template->namespace = null; + $template->namespaces = array_keys($this->namespaces); + $template->package = null; + $template->packages = array_keys($this->packages); + $template->class = null; + $template->classes = array_filter($this->classes, $this->getMainFilter()); + $template->interfaces = array_filter($this->interfaces, $this->getMainFilter()); + $template->traits = array_filter($this->traits, $this->getMainFilter()); + $template->exceptions = array_filter($this->exceptions, $this->getMainFilter()); + $template->constant = null; + $template->constants = array_filter($this->constants, $this->getMainFilter()); + $template->function = null; + $template->functions = array_filter($this->functions, $this->getMainFilter()); + $template->archive = basename($this->getArchivePath()); + + // Elements for autocomplete + $elements = array(); + $autocomplete = array_flip($this->config->autocomplete); + foreach ($this->getElementTypes() as $type) { + foreach ($this->$type as $element) { + if ($element instanceof ReflectionClass) { + if (isset($autocomplete['classes'])) { + $elements[] = array('c', $element->getPrettyName()); + } + if (isset($autocomplete['methods'])) { + foreach ($element->getOwnMethods() as $method) { + $elements[] = array('m', $method->getPrettyName()); + } + foreach ($element->getOwnMagicMethods() as $method) { + $elements[] = array('mm', $method->getPrettyName()); + } + } + if (isset($autocomplete['properties'])) { + foreach ($element->getOwnProperties() as $property) { + $elements[] = array('p', $property->getPrettyName()); + } + foreach ($element->getOwnMagicProperties() as $property) { + $elements[] = array('mp', $property->getPrettyName()); + } + } + if (isset($autocomplete['classconstants'])) { + foreach ($element->getOwnConstants() as $constant) { + $elements[] = array('cc', $constant->getPrettyName()); + } + } + } elseif ($element instanceof ReflectionConstant && isset($autocomplete['constants'])) { + $elements[] = array('co', $element->getPrettyName()); + } elseif ($element instanceof ReflectionFunction && isset($autocomplete['functions'])) { + $elements[] = array('f', $element->getPrettyName()); + } + } + } + usort($elements, function($one, $two) { + return strcasecmp($one[1], $two[1]); + }); + $template->elements = $elements; + + foreach ($this->config->template['templates']['common'] as $source => $destination) { + $template + ->setFile($this->getTemplateDir() . DIRECTORY_SEPARATOR . $source) + ->save($this->forceDir($this->config->destination . DIRECTORY_SEPARATOR . $destination)); + + $this->incrementProgressBar(); + } + + unset($template->elements); + + $this->checkMemory(); + + return $this; + } + + /** + * Generates optional files. + * + * @param \ApiGen\Template $template Template + * @return \ApiGen\Generator + */ + private function generateOptional(Template $template) + { + if ($this->isSitemapEnabled()) { + $template + ->setFile($this->getTemplatePath('sitemap', 'optional')) + ->save($this->forceDir($this->getTemplateFileName('sitemap', 'optional'))); + $this->incrementProgressBar(); + } + if ($this->isOpensearchEnabled()) { + $template + ->setFile($this->getTemplatePath('opensearch', 'optional')) + ->save($this->forceDir($this->getTemplateFileName('opensearch', 'optional'))); + $this->incrementProgressBar(); + } + if ($this->isRobotsEnabled()) { + $template + ->setFile($this->getTemplatePath('robots', 'optional')) + ->save($this->forceDir($this->getTemplateFileName('robots', 'optional'))); + $this->incrementProgressBar(); + } + + $this->checkMemory(); + + return $this; + } + + /** + * Generates list of poorly documented elements. + * + * @return \ApiGen\Generator + * @throws \RuntimeException If file isn't writable. + */ + private function generateReport() + { + // Function for element labels + $that = $this; + $labeler = function($element) use ($that) { + if ($element instanceof ReflectionClass) { + if ($element->isInterface()) { + $label = 'interface'; + } elseif ($element->isTrait()) { + $label = 'trait'; + } elseif ($element->isException()) { + $label = 'exception'; + } else { + $label = 'class'; + } + } elseif ($element instanceof ReflectionMethod) { + $label = 'method'; + } elseif ($element instanceof ReflectionFunction) { + $label = 'function'; + } elseif ($element instanceof ReflectionConstant) { + $label = 'constant'; + } elseif ($element instanceof ReflectionProperty) { + $label = 'property'; + } elseif ($element instanceof ReflectionParameter) { + $label = 'parameter'; + } + return sprintf('%s %s', $label, $element->getPrettyName()); + }; + + $list = array(); + foreach ($this->getElementTypes() as $type) { + foreach ($this->$type as $parentElement) { + $fileName = $this->unPharPath($parentElement->getFileName()); + + if (!$parentElement->isValid()) { + $list[$fileName][] = array('error', 0, sprintf('Duplicate %s', $labeler($parentElement))); + continue; + } + + // Skip elements not from the main project + if (!$parentElement->isMain()) { + continue; + } + + // Internal elements don't have documentation + if ($parentElement->isInternal()) { + continue; + } + + $elements = array($parentElement); + if ($parentElement instanceof ReflectionClass) { + $elements = array_merge( + $elements, + array_values($parentElement->getOwnMethods()), + array_values($parentElement->getOwnConstants()), + array_values($parentElement->getOwnProperties()) + ); + } + + $tokens = $parentElement->getBroker()->getFileTokens($parentElement->getFileName()); + + foreach ($elements as $element) { + $line = $element->getStartLine(); + $label = $labeler($element); + + $annotations = $element->getAnnotations(); + + // Documentation + if (empty($element->shortDescription)) { + if (empty($annotations)) { + $list[$fileName][] = array('error', $line, sprintf('Missing documentation of %s', $label)); + continue; + } + // Description + $list[$fileName][] = array('error', $line, sprintf('Missing description of %s', $label)); + } + + // Documentation of method + if ($element instanceof ReflectionMethod || $element instanceof ReflectionFunction) { + // Parameters + $unlimited = false; + foreach ($element->getParameters() as $no => $parameter) { + if (!isset($annotations['param'][$no])) { + $list[$fileName][] = array('error', $line, sprintf('Missing documentation of %s', $labeler($parameter))); + continue; + } + + if (!preg_match('~^[\\w\\\\]+(?:\\[\\])?(?:\\|[\\w\\\\]+(?:\\[\\])?)*(?:\\s+\\$' . $parameter->getName() . ($parameter->isUnlimited() ? ',\\.{3}' : '') . ')?(?:\\s+.+)?$~s', $annotations['param'][$no])) { + $list[$fileName][] = array('warning', $line, sprintf('Invalid documentation "%s" of %s', $annotations['param'][$no], $labeler($parameter))); + } + + if ($unlimited && $parameter->isUnlimited()) { + $list[$fileName][] = array('warning', $line, sprintf('More than one unlimited parameters of %s', $labeler($element))); + } elseif ($parameter->isUnlimited()) { + $unlimited = true; + } + + unset($annotations['param'][$no]); + } + if (isset($annotations['param'])) { + foreach ($annotations['param'] as $annotation) { + $list[$fileName][] = array('warning', $line, sprintf('Existing documentation "%s" of nonexistent parameter of %s', $annotation, $label)); + } + } + + // Return values + $return = false; + $tokens->seek($element->getStartPosition()) + ->find(T_FUNCTION); + while ($tokens->next() && $tokens->key() < $element->getEndPosition()) { + $type = $tokens->getType(); + if (T_FUNCTION === $type) { + // Skip annonymous functions + $tokens->find('{')->findMatchingBracket(); + } elseif (T_RETURN === $type && !$tokens->skipWhitespaces()->is(';')) { + // Skip return without return value + $return = true; + break; + } + } + if ($return && !isset($annotations['return'])) { + $list[$fileName][] = array('error', $line, sprintf('Missing documentation of return value of %s', $label)); + } elseif (isset($annotations['return'])) { + if (!$return && 'void' !== $annotations['return'][0] && ($element instanceof ReflectionFunction || (!$parentElement->isInterface() && !$element->isAbstract()))) { + $list[$fileName][] = array('warning', $line, sprintf('Existing documentation "%s" of nonexistent return value of %s', $annotations['return'][0], $label)); + } elseif (!preg_match('~^[\\w\\\\]+(?:\\[\\])?(?:\\|[\\w\\\\]+(?:\\[\\])?)*(?:\\s+.+)?$~s', $annotations['return'][0])) { + $list[$fileName][] = array('warning', $line, sprintf('Invalid documentation "%s" of return value of %s', $annotations['return'][0], $label)); + } + } + if (isset($annotations['return'][1])) { + $list[$fileName][] = array('warning', $line, sprintf('Duplicate documentation "%s" of return value of %s', $annotations['return'][1], $label)); + } + + // Throwing exceptions + $throw = false; + $tokens->seek($element->getStartPosition()) + ->find(T_FUNCTION); + while ($tokens->next() && $tokens->key() < $element->getEndPosition()) { + $type = $tokens->getType(); + if (T_TRY === $type) { + // Skip try + $tokens->find('{')->findMatchingBracket(); + } elseif (T_THROW === $type) { + $throw = true; + break; + } + } + if ($throw && !isset($annotations['throws'])) { + $list[$fileName][] = array('error', $line, sprintf('Missing documentation of throwing an exception of %s', $label)); + } elseif (isset($annotations['throws']) && !preg_match('~^[\\w\\\\]+(?:\\|[\\w\\\\]+)*(?:\\s+.+)?$~s', $annotations['throws'][0])) { + $list[$fileName][] = array('warning', $line, sprintf('Invalid documentation "%s" of throwing an exception of %s', $annotations['throws'][0], $label)); + } + } + + // Data type of constants & properties + if ($element instanceof ReflectionProperty || $element instanceof ReflectionConstant) { + if (!isset($annotations['var'])) { + $list[$fileName][] = array('error', $line, sprintf('Missing documentation of the data type of %s', $label)); + } elseif (!preg_match('~^[\\w\\\\]+(?:\\[\\])?(?:\\|[\\w\\\\]+(?:\\[\\])?)*(?:\\s+.+)?$~s', $annotations['var'][0])) { + $list[$fileName][] = array('warning', $line, sprintf('Invalid documentation "%s" of the data type of %s', $annotations['var'][0], $label)); + } + + if (isset($annotations['var'][1])) { + $list[$fileName][] = array('warning', $line, sprintf('Duplicate documentation "%s" of the data type of %s', $annotations['var'][1], $label)); + } + } + } + unset($tokens); + } + } + uksort($list, 'strcasecmp'); + + $file = @fopen($this->config->report, 'w'); + if (false === $file) { + throw new RuntimeException(sprintf('File "%s" isn\'t writable', $this->config->report)); + } + fwrite($file, sprintf('%s', "\n")); + fwrite($file, sprintf('%s', "\n")); + foreach ($list as $fileName => $reports) { + fwrite($file, sprintf('%s%s', "\t", $fileName, "\n")); + + // Sort by line + usort($reports, function($one, $two) { + return strnatcmp($one[1], $two[1]); + }); + + foreach ($reports as $report) { + list($severity, $line, $message) = $report; + $message = preg_replace('~\\s+~u', ' ', $message); + fwrite($file, sprintf('%s%s', "\t\t", $severity, $line, htmlspecialchars($message), "\n")); + } + + fwrite($file, sprintf('%s%s', "\t", "\n")); + } + fwrite($file, sprintf('%s', "\n")); + fclose($file); + + $this->incrementProgressBar(); + $this->checkMemory(); + + return $this; + } + + /** + * Generates list of deprecated elements. + * + * @param \ApiGen\Template $template Template + * @return \ApiGen\Generator + * @throws \RuntimeException If template is not set. + */ + private function generateDeprecated(Template $template) + { + $this->prepareTemplate('deprecated'); + + $deprecatedFilter = function($element) { + return $element->isDeprecated(); + }; + + $template->deprecatedMethods = array(); + $template->deprecatedConstants = array(); + $template->deprecatedProperties = array(); + foreach (array_reverse($this->getElementTypes()) as $type) { + $template->{'deprecated' . ucfirst($type)} = array_filter(array_filter($this->$type, $this->getMainFilter()), $deprecatedFilter); + + if ('constants' === $type || 'functions' === $type) { + continue; + } + + foreach ($this->$type as $class) { + if (!$class->isMain()) { + continue; + } + + if ($class->isDeprecated()) { + continue; + } + + $template->deprecatedMethods = array_merge($template->deprecatedMethods, array_values(array_filter($class->getOwnMethods(), $deprecatedFilter))); + $template->deprecatedConstants = array_merge($template->deprecatedConstants, array_values(array_filter($class->getOwnConstants(), $deprecatedFilter))); + $template->deprecatedProperties = array_merge($template->deprecatedProperties, array_values(array_filter($class->getOwnProperties(), $deprecatedFilter))); + } + } + usort($template->deprecatedMethods, array($this, 'sortMethods')); + usort($template->deprecatedConstants, array($this, 'sortConstants')); + usort($template->deprecatedFunctions, array($this, 'sortFunctions')); + usort($template->deprecatedProperties, array($this, 'sortProperties')); + + $template + ->setFile($this->getTemplatePath('deprecated')) + ->save($this->forceDir($this->getTemplateFileName('deprecated'))); + + foreach ($this->getElementTypes() as $type) { + unset($template->{'deprecated' . ucfirst($type)}); + } + unset($template->deprecatedMethods); + unset($template->deprecatedProperties); + + $this->incrementProgressBar(); + $this->checkMemory(); + + return $this; + } + + /** + * Generates list of tasks. + * + * @param \ApiGen\Template $template Template + * @return \ApiGen\Generator + * @throws \RuntimeException If template is not set. + */ + private function generateTodo(Template $template) + { + $this->prepareTemplate('todo'); + + $todoFilter = function($element) { + return $element->hasAnnotation('todo'); + }; + + $template->todoMethods = array(); + $template->todoConstants = array(); + $template->todoProperties = array(); + foreach (array_reverse($this->getElementTypes()) as $type) { + $template->{'todo' . ucfirst($type)} = array_filter(array_filter($this->$type, $this->getMainFilter()), $todoFilter); + + if ('constants' === $type || 'functions' === $type) { + continue; + } + + foreach ($this->$type as $class) { + if (!$class->isMain()) { + continue; + } + + $template->todoMethods = array_merge($template->todoMethods, array_values(array_filter($class->getOwnMethods(), $todoFilter))); + $template->todoConstants = array_merge($template->todoConstants, array_values(array_filter($class->getOwnConstants(), $todoFilter))); + $template->todoProperties = array_merge($template->todoProperties, array_values(array_filter($class->getOwnProperties(), $todoFilter))); + } + } + usort($template->todoMethods, array($this, 'sortMethods')); + usort($template->todoConstants, array($this, 'sortConstants')); + usort($template->todoFunctions, array($this, 'sortFunctions')); + usort($template->todoProperties, array($this, 'sortProperties')); + + $template + ->setFile($this->getTemplatePath('todo')) + ->save($this->forceDir($this->getTemplateFileName('todo'))); + + foreach ($this->getElementTypes() as $type) { + unset($template->{'todo' . ucfirst($type)}); + } + unset($template->todoMethods); + unset($template->todoProperties); + + $this->incrementProgressBar(); + $this->checkMemory(); + + return $this; + } + + /** + * Generates classes/interfaces/traits/exceptions tree. + * + * @param \ApiGen\Template $template Template + * @return \ApiGen\Generator + * @throws \RuntimeException If template is not set. + */ + private function generateTree(Template $template) + { + $this->prepareTemplate('tree'); + + $classTree = array(); + $interfaceTree = array(); + $traitTree = array(); + $exceptionTree = array(); + + $processed = array(); + foreach ($this->parsedClasses as $className => $reflection) { + if (!$reflection->isMain() || !$reflection->isDocumented() || isset($processed[$className])) { + continue; + } + + if (null === $reflection->getParentClassName()) { + // No parent classes + if ($reflection->isInterface()) { + $t = &$interfaceTree; + } elseif ($reflection->isTrait()) { + $t = &$traitTree; + } elseif ($reflection->isException()) { + $t = &$exceptionTree; + } else { + $t = &$classTree; + } + } else { + foreach (array_values(array_reverse($reflection->getParentClasses())) as $level => $parent) { + if (0 === $level) { + // The topmost parent decides about the reflection type + if ($parent->isInterface()) { + $t = &$interfaceTree; + } elseif ($parent->isTrait()) { + $t = &$traitTree; + } elseif ($parent->isException()) { + $t = &$exceptionTree; + } else { + $t = &$classTree; + } + } + $parentName = $parent->getName(); + + if (!isset($t[$parentName])) { + $t[$parentName] = array(); + $processed[$parentName] = true; + ksort($t, SORT_STRING); + } + + $t = &$t[$parentName]; + } + } + $t[$className] = array(); + ksort($t, SORT_STRING); + $processed[$className] = true; + unset($t); + } + + $template->classTree = new Tree($classTree, $this->parsedClasses); + $template->interfaceTree = new Tree($interfaceTree, $this->parsedClasses); + $template->traitTree = new Tree($traitTree, $this->parsedClasses); + $template->exceptionTree = new Tree($exceptionTree, $this->parsedClasses); + + $template + ->setFile($this->getTemplatePath('tree')) + ->save($this->forceDir($this->getTemplateFileName('tree'))); + + unset($template->classTree); + unset($template->interfaceTree); + unset($template->traitTree); + unset($template->exceptionTree); + + $this->incrementProgressBar(); + $this->checkMemory(); + + return $this; + } + + /** + * Generates packages summary. + * + * @param \ApiGen\Template $template Template + * @return \ApiGen\Generator + * @throws \RuntimeException If template is not set. + */ + private function generatePackages(Template $template) + { + if (empty($this->packages)) { + return $this; + } + + $this->prepareTemplate('package'); + + $template->namespace = null; + + foreach ($this->packages as $packageName => $package) { + $template->package = $packageName; + $template->subpackages = array_filter($template->packages, function($subpackageName) use ($packageName) { + return (bool) preg_match('~^' . preg_quote($packageName) . '\\\\[^\\\\]+$~', $subpackageName); + }); + $template->classes = $package['classes']; + $template->interfaces = $package['interfaces']; + $template->traits = $package['traits']; + $template->exceptions = $package['exceptions']; + $template->constants = $package['constants']; + $template->functions = $package['functions']; + $template + ->setFile($this->getTemplatePath('package')) + ->save($this->config->destination . DIRECTORY_SEPARATOR . $template->getPackageUrl($packageName)); + + $this->incrementProgressBar(); + } + unset($template->subpackages); + + $this->checkMemory(); + + return $this; + } + + /** + * Generates namespaces summary. + * + * @param \ApiGen\Template $template Template + * @return \ApiGen\Generator + * @throws \RuntimeException If template is not set. + */ + private function generateNamespaces(Template $template) + { + if (empty($this->namespaces)) { + return $this; + } + + $this->prepareTemplate('namespace'); + + $template->package = null; + + foreach ($this->namespaces as $namespaceName => $namespace) { + $template->namespace = $namespaceName; + $template->subnamespaces = array_filter($template->namespaces, function($subnamespaceName) use ($namespaceName) { + return (bool) preg_match('~^' . preg_quote($namespaceName) . '\\\\[^\\\\]+$~', $subnamespaceName); + }); + $template->classes = $namespace['classes']; + $template->interfaces = $namespace['interfaces']; + $template->traits = $namespace['traits']; + $template->exceptions = $namespace['exceptions']; + $template->constants = $namespace['constants']; + $template->functions = $namespace['functions']; + $template + ->setFile($this->getTemplatePath('namespace')) + ->save($this->config->destination . DIRECTORY_SEPARATOR . $template->getNamespaceUrl($namespaceName)); + + $this->incrementProgressBar(); + } + unset($template->subnamespaces); + + $this->checkMemory(); + + return $this; + } + + /** + * Generate classes, interfaces, traits, exceptions, constants and functions files. + * + * @param Template $template Template + * @return \ApiGen\Generator + * @throws \RuntimeException If template is not set. + */ + private function generateElements(Template $template) + { + if (!empty($this->classes) || !empty($this->interfaces) || !empty($this->traits) || !empty($this->exceptions)) { + $this->prepareTemplate('class'); + } + if (!empty($this->constants)) { + $this->prepareTemplate('constant'); + } + if (!empty($this->functions)) { + $this->prepareTemplate('function'); + } + if ($this->config->sourceCode) { + $this->prepareTemplate('source'); + + $fshl = new FSHL\Highlighter(new FSHL\Output\Html(), FSHL\Highlighter::OPTION_TAB_INDENT | FSHL\Highlighter::OPTION_LINE_COUNTER); + $fshl->setLexer(new FSHL\Lexer\Php()); + } + + // Add @usedby annotation + foreach ($this->getElementTypes() as $type) { + foreach ($this->$type as $parentElement) { + $elements = array($parentElement); + if ($parentElement instanceof ReflectionClass) { + $elements = array_merge( + $elements, + array_values($parentElement->getOwnMethods()), + array_values($parentElement->getOwnConstants()), + array_values($parentElement->getOwnProperties()) + ); + } + foreach ($elements as $element) { + $uses = $element->getAnnotation('uses'); + if (null === $uses) { + continue; + } + foreach ($uses as $value) { + list($link, $description) = preg_split('~\s+|$~', $value, 2); + $resolved = $this->resolveElement($link, $element); + if (null !== $resolved) { + $resolved->addAnnotation('usedby', $element->getPrettyName() . ' ' . $description); + } + } + } + } + } + + $template->package = null; + $template->namespace = null; + $template->classes = $this->classes; + $template->interfaces = $this->interfaces; + $template->traits = $this->traits; + $template->exceptions = $this->exceptions; + $template->constants = $this->constants; + $template->functions = $this->functions; + foreach ($this->getElementTypes() as $type) { + foreach ($this->$type as $element) { + if (!empty($this->namespaces)) { + $template->namespace = $namespaceName = $element->getPseudoNamespaceName(); + $template->classes = $this->namespaces[$namespaceName]['classes']; + $template->interfaces = $this->namespaces[$namespaceName]['interfaces']; + $template->traits = $this->namespaces[$namespaceName]['traits']; + $template->exceptions = $this->namespaces[$namespaceName]['exceptions']; + $template->constants = $this->namespaces[$namespaceName]['constants']; + $template->functions = $this->namespaces[$namespaceName]['functions']; + } elseif (!empty($this->packages)) { + $template->package = $packageName = $element->getPseudoPackageName(); + $template->classes = $this->packages[$packageName]['classes']; + $template->interfaces = $this->packages[$packageName]['interfaces']; + $template->traits = $this->packages[$packageName]['traits']; + $template->exceptions = $this->packages[$packageName]['exceptions']; + $template->constants = $this->packages[$packageName]['constants']; + $template->functions = $this->packages[$packageName]['functions']; + } + + $template->class = null; + $template->constant = null; + $template->function = null; + if ($element instanceof ReflectionClass) { + // Class + $template->tree = array_merge(array_reverse($element->getParentClasses()), array($element)); + + $template->directSubClasses = $element->getDirectSubClasses(); + uksort($template->directSubClasses, 'strcasecmp'); + $template->indirectSubClasses = $element->getIndirectSubClasses(); + uksort($template->indirectSubClasses, 'strcasecmp'); + + $template->directImplementers = $element->getDirectImplementers(); + uksort($template->directImplementers, 'strcasecmp'); + $template->indirectImplementers = $element->getIndirectImplementers(); + uksort($template->indirectImplementers, 'strcasecmp'); + + $template->directUsers = $element->getDirectUsers(); + uksort($template->directUsers, 'strcasecmp'); + $template->indirectUsers = $element->getIndirectUsers(); + uksort($template->indirectUsers, 'strcasecmp'); + + $template->class = $element; + + $template + ->setFile($this->getTemplatePath('class')) + ->save($this->config->destination . DIRECTORY_SEPARATOR . $template->getClassUrl($element)); + } elseif ($element instanceof ReflectionConstant) { + // Constant + $template->constant = $element; + + $template + ->setFile($this->getTemplatePath('constant')) + ->save($this->config->destination . DIRECTORY_SEPARATOR . $template->getConstantUrl($element)); + } elseif ($element instanceof ReflectionFunction) { + // Function + $template->function = $element; + + $template + ->setFile($this->getTemplatePath('function')) + ->save($this->config->destination . DIRECTORY_SEPARATOR . $template->getFunctionUrl($element)); + } + + $this->incrementProgressBar(); + + // Generate source codes + if ($this->config->sourceCode && $element->isTokenized()) { + $template->fileName = $this->getRelativePath($element->getFileName()); + $template->source = $fshl->highlight($this->toUtf(file_get_contents($element->getFileName()), $this->charsets[$element->getFileName()])); + $template + ->setFile($this->getTemplatePath('source')) + ->save($this->config->destination . DIRECTORY_SEPARATOR . $template->getSourceUrl($element, false)); + + $this->incrementProgressBar(); + } + + $this->checkMemory(); + } + } + + return $this; + } + + /** + * Creates ZIP archive. + * + * @return \ApiGen\Generator + * @throws \RuntimeException If something went wrong. + */ + private function generateArchive() + { + if (!extension_loaded('zip')) { + throw new RuntimeException('Extension zip is not loaded'); + } + + $archive = new \ZipArchive(); + if (true !== $archive->open($this->getArchivePath(), \ZipArchive::CREATE)) { + throw new RuntimeException('Could not open ZIP archive'); + } + + $archive->setArchiveComment(trim(sprintf('%s API documentation generated by %s %s on %s', $this->config->title, self::NAME, self::VERSION, date('Y-m-d H:i:s')))); + + $directory = Nette\Utils\Strings::webalize(trim(sprintf('%s API documentation', $this->config->title)), null, false); + $destinationLength = strlen($this->config->destination); + foreach ($this->getGeneratedFiles() as $file) { + if (is_file($file)) { + $archive->addFile($file, $directory . DIRECTORY_SEPARATOR . substr($file, $destinationLength + 1)); + } + } + + if (false === $archive->close()) { + throw new RuntimeException('Could not save ZIP archive'); + } + + $this->incrementProgressBar(); + $this->checkMemory(); + + return $this; + } + + /** + * Tries to resolve string as class, interface or exception name. + * + * @param string $className Class name description + * @param string $namespace Namespace name + * @return \ApiGen\ReflectionClass + */ + public function getClass($className, $namespace = '') + { + if (isset($this->parsedClasses[$namespace . '\\' . $className])) { + $class = $this->parsedClasses[$namespace . '\\' . $className]; + } elseif (isset($this->parsedClasses[ltrim($className, '\\')])) { + $class = $this->parsedClasses[ltrim($className, '\\')]; + } else { + return null; + } + + // Class is not "documented" + if (!$class->isDocumented()) { + return null; + } + + return $class; + } + + /** + * Tries to resolve type as constant name. + * + * @param string $constantName Constant name + * @param string $namespace Namespace name + * @return \ApiGen\ReflectionConstant + */ + public function getConstant($constantName, $namespace = '') + { + if (isset($this->parsedConstants[$namespace . '\\' . $constantName])) { + $constant = $this->parsedConstants[$namespace . '\\' . $constantName]; + } elseif (isset($this->parsedConstants[ltrim($constantName, '\\')])) { + $constant = $this->parsedConstants[ltrim($constantName, '\\')]; + } else { + return null; + } + + // Constant is not "documented" + if (!$constant->isDocumented()) { + return null; + } + + return $constant; + } + + /** + * Tries to resolve type as function name. + * + * @param string $functionName Function name + * @param string $namespace Namespace name + * @return \ApiGen\ReflectionFunction + */ + public function getFunction($functionName, $namespace = '') + { + if (isset($this->parsedFunctions[$namespace . '\\' . $functionName])) { + $function = $this->parsedFunctions[$namespace . '\\' . $functionName]; + } elseif (isset($this->parsedFunctions[ltrim($functionName, '\\')])) { + $function = $this->parsedFunctions[ltrim($functionName, '\\')]; + } else { + return null; + } + + // Function is not "documented" + if (!$function->isDocumented()) { + return null; + } + + return $function; + } + + /** + * Tries to parse a definition of a class/method/property/constant/function and returns the appropriate instance if successful. + * + * @param string $definition Definition + * @param \ApiGen\ReflectionElement|\ApiGen\ReflectionParameter $context Link context + * @param string $expectedName Expected element name + * @return \ApiGen\ReflectionElement|null + */ + public function resolveElement($definition, $context, &$expectedName = null) + { + // No simple type resolving + static $types = array( + 'boolean' => 1, 'integer' => 1, 'float' => 1, 'string' => 1, + 'array' => 1, 'object' => 1, 'resource' => 1, 'callback' => 1, + 'callable' => 1, 'null' => 1, 'false' => 1, 'true' => 1, 'mixed' => 1 + ); + + if (empty($definition) || isset($types[$definition])) { + return null; + } + + $originalContext = $context; + + if ($context instanceof ReflectionParameter && null === $context->getDeclaringClassName()) { + // Parameter of function in namespace or global space + $context = $this->getFunction($context->getDeclaringFunctionName()); + } elseif ($context instanceof ReflectionMethod || $context instanceof ReflectionParameter + || ($context instanceof ReflectionConstant && null !== $context->getDeclaringClassName()) + || $context instanceof ReflectionProperty + ) { + // Member of a class + $context = $this->getClass($context->getDeclaringClassName()); + } + + if (null === $context) { + return null; + } + + // self, $this references + if ('self' === $definition || '$this' === $definition) { + return $context instanceof ReflectionClass ? $context : null; + } + + $definitionBase = substr($definition, 0, strcspn($definition, '\\:')); + $namespaceAliases = $context->getNamespaceAliases(); + if (!empty($definitionBase) && isset($namespaceAliases[$definitionBase]) && $definition !== ($className = \TokenReflection\Resolver::resolveClassFQN($definition, $namespaceAliases, $context->getNamespaceName()))) { + // Aliased class + $expectedName = $className; + + if (false === strpos($className, ':')) { + return $this->getClass($className, $context->getNamespaceName()); + } else { + $definition = $className; + } + } elseif ($class = $this->getClass($definition, $context->getNamespaceName())) { + // Class + return $class; + } elseif ($constant = $this->getConstant($definition, $context->getNamespaceName())) { + // Constant + return $constant; + } elseif (($function = $this->getFunction($definition, $context->getNamespaceName())) + || ('()' === substr($definition, -2) && ($function = $this->getFunction(substr($definition, 0, -2), $context->getNamespaceName()))) + ) { + // Function + return $function; + } + + if (($pos = strpos($definition, '::')) || ($pos = strpos($definition, '->'))) { + // Class::something or Class->something + if (0 === strpos($definition, 'parent::') && ($parentClassName = $context->getParentClassName())) { + $context = $this->getClass($parentClassName); + } elseif (0 !== strpos($definition, 'self::')) { + $class = $this->getClass(substr($definition, 0, $pos), $context->getNamespaceName()); + + if (null === $class) { + $class = $this->getClass(\TokenReflection\Resolver::resolveClassFQN(substr($definition, 0, $pos), $context->getNamespaceAliases(), $context->getNamespaceName())); + } + + $context = $class; + } + + $definition = substr($definition, $pos + 2); + } elseif ($originalContext instanceof ReflectionParameter) { + return null; + } + + // No usable context + if (null === $context || $context instanceof ReflectionConstant || $context instanceof ReflectionFunction) { + return null; + } + + if ($context->hasProperty($definition)) { + // Class property + return $context->getProperty($definition); + } elseif ('$' === $definition{0} && $context->hasProperty(substr($definition, 1))) { + // Class $property + return $context->getProperty(substr($definition, 1)); + } elseif ($context->hasMethod($definition)) { + // Class method + return $context->getMethod($definition); + } elseif ('()' === substr($definition, -2) && $context->hasMethod(substr($definition, 0, -2))) { + // Class method() + return $context->getMethod(substr($definition, 0, -2)); + } elseif ($context->hasConstant($definition)) { + // Class constant + return $context->getConstant($definition); + } + + return null; + } + + /** + * Prints message if printing is enabled. + * + * @param string $message Output message + */ + public function output($message) + { + if (!$this->config->quiet) { + echo $this->colorize($message); + } + } + + /** + * Colorizes message or removes placeholders if OS doesn't support colors. + * + * @param string $message + * @return string + */ + public function colorize($message) + { + static $placeholders = array( + '@header@' => "\x1b[1;34m", + '@count@' => "\x1b[1;34m", + '@option@' => "\x1b[0;36m", + '@value@' => "\x1b[0;32m", + '@error@' => "\x1b[0;31m", + '@c' => "\x1b[0m" + ); + + if (!$this->config->colors) { + $placeholders = array_fill_keys(array_keys($placeholders), ''); + } + + return strtr($message, $placeholders); + } + + /** + * Returns header. + * + * @return string + */ + public function getHeader() + { + $name = sprintf('%s %s', self::NAME, self::VERSION); + return sprintf("@header@%s@c\n%s\n", $name, str_repeat('-', strlen($name))); + } + + /** + * Removes phar:// from the path. + * + * @param string $path Path + * @return string + */ + public function unPharPath($path) + { + if (0 === strpos($path, 'phar://')) { + $path = substr($path, 7); + } + return $path; + } + + /** + * Adds phar:// to the path. + * + * @param string $path Path + * @return string + */ + private function pharPath($path) + { + return 'phar://' . $path; + } + + /** + * Checks if given path is a phar. + * + * @param string $path + * @return boolean + */ + private function isPhar($path) + { + return (bool) preg_match('~\\.phar(?:\\.zip|\\.tar|(?:(?:\\.tar)?(?:\\.gz|\\.bz2))|$)~i', $path); + } + + /** + * Normalizes directory separators in given path. + * + * @param string $path Path + * @return string + */ + private function normalizePath($path) + { + $path = str_replace(array('/', '\\'), DIRECTORY_SEPARATOR, $path); + $path = str_replace('phar:\\\\', 'phar://', $path); + return $path; + } + + /** + * Prepares the progressbar. + * + * @param integer $maximum Maximum progressbar value + */ + private function prepareProgressBar($maximum = 1) + { + if (!$this->config->progressbar) { + return; + } + + $this->progressbar['current'] = 0; + $this->progressbar['maximum'] = $maximum; + } + + /** + * Increments the progressbar by one. + * + * @param integer $increment Progressbar increment + */ + private function incrementProgressBar($increment = 1) + { + if (!$this->config->progressbar) { + return; + } + + echo str_repeat(chr(0x08), $this->progressbar['width']); + + $this->progressbar['current'] += $increment; + + $percent = $this->progressbar['current'] / $this->progressbar['maximum']; + + $progress = str_pad(str_pad('>', round($percent * $this->progressbar['bar']), '=', STR_PAD_LEFT), $this->progressbar['bar'], ' ', STR_PAD_RIGHT); + + echo sprintf($this->progressbar['skeleton'], $progress, $percent * 100, round(memory_get_usage(true) / 1024 / 1024)); + + if ($this->progressbar['current'] === $this->progressbar['maximum']) { + echo "\n"; + } + } + + /** + * Checks memory usage. + * + * @return \ApiGen\Generator + * @throws \RuntimeException If there is unsufficient reserve of memory. + */ + public function checkMemory() + { + static $limit = null; + if (null === $limit) { + $value = ini_get('memory_limit'); + $unit = substr($value, -1); + if ('-1' === $value) { + $limit = 0; + } elseif ('G' === $unit) { + $limit = (int) $value * 1024 * 1024 * 1024; + } elseif ('M' === $unit) { + $limit = (int) $value * 1024 * 1024; + } else { + $limit = (int) $value; + } + } + + if ($limit && memory_get_usage(true) / $limit >= 0.9) { + throw new RuntimeException(sprintf('Used %d%% of the current memory limit, please increase the limit to generate the whole documentation.', round(memory_get_usage(true) / $limit * 100))); + } + + return $this; + } + + /** + * Detects character set for the given text. + * + * @param string $text Text + * @return string + */ + private function detectCharset($text) + { + // One character set + if (1 === count($this->config->charset) && 'AUTO' !== $this->config->charset[0]) { + return $this->config->charset[0]; + } + + static $charsets = array(); + if (empty($charsets)) { + if (1 === count($this->config->charset) && 'AUTO' === $this->config->charset[0]) { + // Autodetection + $charsets = array( + 'Windows-1251', 'Windows-1252', 'ISO-8859-2', 'ISO-8859-1', 'ISO-8859-3', 'ISO-8859-4', 'ISO-8859-5', 'ISO-8859-6', + 'ISO-8859-7', 'ISO-8859-8', 'ISO-8859-9', 'ISO-8859-10', 'ISO-8859-13', 'ISO-8859-14', 'ISO-8859-15' + ); + } else { + // More character sets + $charsets = $this->config->charset; + if (false !== ($key = array_search('WINDOWS-1250', $charsets))) { + // WINDOWS-1250 is not supported + $charsets[$key] = 'ISO-8859-2'; + } + } + // Only supported character sets + $charsets = array_intersect($charsets, mb_list_encodings()); + + // UTF-8 have to be first + array_unshift($charsets, 'UTF-8'); + } + + $charset = mb_detect_encoding($text, $charsets); + // The previous function can not handle WINDOWS-1250 and returns ISO-8859-2 instead + if ('ISO-8859-2' === $charset && preg_match('~[\x7F-\x9F\xBC]~', $text)) { + $charset = 'WINDOWS-1250'; + } + + return $charset; + } + + /** + * Converts text from given character set to UTF-8. + * + * @param string $text Text + * @param string $charset Character set + * @return string + */ + private function toUtf($text, $charset) + { + if ('UTF-8' === $charset) { + return $text; + } + + return @iconv($charset, 'UTF-8//TRANSLIT//IGNORE', $text); + } + + /** + * Checks if sitemap.xml is enabled. + * + * @return boolean + */ + private function isSitemapEnabled() + { + return !empty($this->config->baseUrl) && $this->templateExists('sitemap', 'optional'); + } + + /** + * Checks if opensearch.xml is enabled. + * + * @return boolean + */ + private function isOpensearchEnabled() + { + return !empty($this->config->googleCseId) && !empty($this->config->baseUrl) && $this->templateExists('opensearch', 'optional'); + } + + /** + * Checks if robots.txt is enabled. + * + * @return boolean + */ + private function isRobotsEnabled() + { + return !empty($this->config->baseUrl) && $this->templateExists('robots', 'optional'); + } + + /** + * Sorts methods by FQN. + * + * @param \ApiGen\ReflectionMethod $one + * @param \ApiGen\ReflectionMethod $two + * @return integer + */ + private function sortMethods(ReflectionMethod $one, ReflectionMethod $two) + { + return strcasecmp($one->getDeclaringClassName() . '::' . $one->getName(), $two->getDeclaringClassName() . '::' . $two->getName()); + } + + /** + * Sorts constants by FQN. + * + * @param \ApiGen\ReflectionConstant $one + * @param \ApiGen\ReflectionConstant $two + * @return integer + */ + private function sortConstants(ReflectionConstant $one, ReflectionConstant $two) + { + return strcasecmp(($one->getDeclaringClassName() ?: $one->getNamespaceName()) . '\\' . $one->getName(), ($two->getDeclaringClassName() ?: $two->getNamespaceName()) . '\\' . $two->getName()); + } + + /** + * Sorts functions by FQN. + * + * @param \ApiGen\ReflectionFunction $one + * @param \ApiGen\ReflectionFunction $two + * @return integer + */ + private function sortFunctions(ReflectionFunction $one, ReflectionFunction $two) + { + return strcasecmp($one->getNamespaceName() . '\\' . $one->getName(), $two->getNamespaceName() . '\\' . $two->getName()); + } + + /** + * Sorts functions by FQN. + * + * @param \ApiGen\ReflectionProperty $one + * @param \ApiGen\ReflectionProperty $two + * @return integer + */ + private function sortProperties(ReflectionProperty $one, ReflectionProperty $two) + { + return strcasecmp($one->getDeclaringClassName() . '::' . $one->getName(), $two->getDeclaringClassName() . '::' . $two->getName()); + } + + /** + * Returns list of element types. + * + * @return array + */ + private function getElementTypes() + { + static $types = array('classes', 'interfaces', 'traits', 'exceptions', 'constants', 'functions'); + return $types; + } + + /** + * Returns main filter. + * + * @return \Closure + */ + private function getMainFilter() + { + return function($element) { + return $element->isMain(); + }; + } + + /** + * Returns ZIP archive path. + * + * @return string + */ + private function getArchivePath() + { + $name = trim(sprintf('%s API documentation', $this->config->title)); + return $this->config->destination . DIRECTORY_SEPARATOR . Nette\Utils\Strings::webalize($name) . '.zip'; + } + + /** + * Returns filename relative path to the source directory. + * + * @param string $fileName + * @return string + * @throws \InvalidArgumentException If relative path could not be determined. + */ + public function getRelativePath($fileName) + { + if (isset($this->symlinks[$fileName])) { + $fileName = $this->symlinks[$fileName]; + } + foreach ($this->config->source as $source) { + if ($this->isPhar($source)) { + $source = $this->pharPath($source); + } + if (0 === strpos($fileName, $source)) { + return is_dir($source) ? str_replace('\\', '/', substr($fileName, strlen($source) + 1)) : basename($fileName); + } + } + + throw new InvalidArgumentException(sprintf('Could not determine "%s" relative path', $fileName)); + } + + /** + * Returns template directory. + * + * @return string + */ + private function getTemplateDir() + { + return dirname($this->config->templateConfig); + } + + /** + * Returns template path. + * + * @param string $name Template name + * @param string $type Template type + * @return string + */ + private function getTemplatePath($name, $type = 'main') + { + return $this->getTemplateDir() . DIRECTORY_SEPARATOR . $this->config->template['templates'][$type][$name]['template']; + } + + /** + * Returns template filename. + * + * @param string $name Template name + * @param string $type Template type + * @return string + */ + private function getTemplateFileName($name, $type = 'main') + { + return $this->config->destination . DIRECTORY_SEPARATOR . $this->config->template['templates'][$type][$name]['filename']; + } + + /** + * Checks if template exists. + * + * @param string $name Template name + * @param string $type Template type + * @return string + */ + private function templateExists($name, $type = 'main') + { + return isset($this->config->template['templates'][$type][$name]); + } + + /** + * Checks if template exists and creates dir. + * + * @param string $name + * @throws \RuntimeException If template is not set. + */ + private function prepareTemplate($name) + { + if (!$this->templateExists($name)) { + throw new RuntimeException(sprintf('Template for "%s" is not set', $name)); + } + + $this->forceDir($this->getTemplateFileName($name)); + return $this; + } + + /** + * Returns list of all generated files. + * + * @return array + */ + private function getGeneratedFiles() + { + $files = array(); + + // Resources + foreach ($this->config->template['resources'] as $item) { + $path = $this->getTemplateDir() . DIRECTORY_SEPARATOR . $item; + if (is_dir($path)) { + $iterator = Nette\Utils\Finder::findFiles('*')->from($path)->getIterator(); + foreach ($iterator as $innerItem) { + $files[] = $this->config->destination . DIRECTORY_SEPARATOR . $item . DIRECTORY_SEPARATOR . $iterator->getSubPathName(); + } + } else { + $files[] = $this->config->destination . DIRECTORY_SEPARATOR . $item; + } + } + + // Common files + foreach ($this->config->template['templates']['common'] as $item) { + $files[] = $this->config->destination . DIRECTORY_SEPARATOR . $item; + } + + // Optional files + foreach ($this->config->template['templates']['optional'] as $optional) { + $files[] = $this->config->destination . DIRECTORY_SEPARATOR . $optional['filename']; + } + + // Main files + $masks = array_map(function($config) { + return preg_replace('~%[^%]*?s~', '*', $config['filename']); + }, $this->config->template['templates']['main']); + $filter = function($item) use ($masks) { + foreach ($masks as $mask) { + if (fnmatch($mask, $item->getFilename())) { + return true; + } + } + return false; + }; + + foreach (Nette\Utils\Finder::findFiles('*')->filter($filter)->from($this->config->destination) as $item) { + $files[] = $item->getPathName(); + } + + return $files; + } + + /** + * Ensures a directory is created. + * + * @param string $path Directory path + * @return string + */ + private function forceDir($path) + { + @mkdir(dirname($path), 0755, true); + return $path; + } + + /** + * Deletes a directory. + * + * @param string $path Directory path + * @return boolean + */ + private function deleteDir($path) + { + if (!is_dir($path)) { + return true; + } + + foreach (Nette\Utils\Finder::find('*')->from($path)->childFirst() as $item) { + if ($item->isDir()) { + if (!@rmdir($item)) { + return false; + } + } elseif ($item->isFile()) { + if (!@unlink($item)) { + return false; + } + } + } + if (!@rmdir($path)) { + return false; + } + + return true; + } +} diff --git a/apigen/ApiGen/IHelperSet.php b/apigen/ApiGen/IHelperSet.php new file mode 100644 index 00000000000..911c83820b1 --- /dev/null +++ b/apigen/ApiGen/IHelperSet.php @@ -0,0 +1,28 @@ +getConfig(); + self::$parsedClasses = $generator->getParsedClasses(); + self::$parsedConstants = $generator->getParsedConstants(); + self::$parsedFunctions = $generator->getParsedFunctions(); + } + + $this->reflectionType = get_class($this); + if (!isset(self::$reflectionMethods[$this->reflectionType])) { + self::$reflectionMethods[$this->reflectionType] = array_flip(get_class_methods($this)); + } + + $this->reflection = $reflection; + } + + /** + * Retrieves a property or method value. + * + * First tries the envelope object's property storage, then its methods + * and finally the inspected element reflection. + * + * @param string $name Property name + * @return mixed + */ + public function __get($name) + { + $key = ucfirst($name); + if (isset(self::$reflectionMethods[$this->reflectionType]['get' . $key])) { + return $this->{'get' . $key}(); + } + + if (isset(self::$reflectionMethods[$this->reflectionType]['is' . $key])) { + return $this->{'is' . $key}(); + } + + return $this->reflection->__get($name); + } + + /** + * Checks if the given property exists. + * + * First tries the envelope object's property storage, then its methods + * and finally the inspected element reflection. + * + * @param mixed $name Property name + * @return boolean + */ + public function __isset($name) + { + $key = ucfirst($name); + return isset(self::$reflectionMethods[$this->reflectionType]['get' . $key]) || isset(self::$reflectionMethods[$this->reflectionType]['is' . $key]) || $this->reflection->__isset($name); + } + + /** + * Returns the reflection broker used by this reflection object. + * + * @return \TokenReflection\Broker + */ + public function getBroker() + { + return $this->reflection->getBroker(); + } + + /** + * Returns the name (FQN). + * + * @return string + */ + public function getName() + { + return $this->reflection->getName(); + } + + /** + * Returns an element pretty (docblock compatible) name. + * + * @return string + */ + public function getPrettyName() + { + return $this->reflection->getPrettyName(); + } + + /** + * Returns if the reflection object is internal. + * + * @return boolean + */ + public function isInternal() + { + return $this->reflection->isInternal(); + } + + /** + * Returns if the reflection object is user defined. + * + * @return boolean + */ + public function isUserDefined() + { + return $this->reflection->isUserDefined(); + } + + /** + * Returns if the current reflection comes from a tokenized source. + * + * @return boolean + */ + public function isTokenized() + { + return $this->reflection->isTokenized(); + } + + /** + * Returns the file name the reflection object is defined in. + * + * @return string + */ + public function getFileName() + { + return $this->reflection->getFileName(); + } + + /** + * Returns the definition start line number in the file. + * + * @return integer + */ + public function getStartLine() + { + $startLine = $this->reflection->getStartLine(); + + if ($doc = $this->getDocComment()) { + $startLine -= substr_count($doc, "\n") + 1; + } + + return $startLine; + } + + /** + * Returns the definition end line number in the file. + * + * @return integer + */ + public function getEndLine() + { + return $this->reflection->getEndLine(); + } +} diff --git a/apigen/ApiGen/ReflectionClass.php b/apigen/ApiGen/ReflectionClass.php new file mode 100644 index 00000000000..2dd2c377cff --- /dev/null +++ b/apigen/ApiGen/ReflectionClass.php @@ -0,0 +1,1423 @@ +accessLevels) < 3) { + self::$methodAccessLevels = 0; + self::$propertyAccessLevels = 0; + + foreach (self::$config->accessLevels as $level) { + switch (strtolower($level)) { + case 'public': + self::$methodAccessLevels |= InternalReflectionMethod::IS_PUBLIC; + self::$propertyAccessLevels |= InternalReflectionProperty::IS_PUBLIC; + break; + case 'protected': + self::$methodAccessLevels |= InternalReflectionMethod::IS_PROTECTED; + self::$propertyAccessLevels |= InternalReflectionProperty::IS_PROTECTED; + break; + case 'private': + self::$methodAccessLevels |= InternalReflectionMethod::IS_PRIVATE; + self::$propertyAccessLevels |= InternalReflectionProperty::IS_PRIVATE; + break; + default: + break; + } + } + } else { + self::$methodAccessLevels = null; + self::$propertyAccessLevels = null; + } + } + } + + /** + * Returns the unqualified name (UQN). + * + * @return string + */ + public function getShortName() + { + return $this->reflection->getShortName(); + } + + /** + * Returns modifiers. + * + * @return array + */ + public function getModifiers() + { + return $this->reflection->getModifiers(); + } + + /** + * Returns if the class is abstract. + * + * @return boolean + */ + public function isAbstract() + { + return $this->reflection->isAbstract(); + } + + /** + * Returns if the class is final. + * + * @return boolean + */ + public function isFinal() + { + return $this->reflection->isFinal(); + } + + /** + * Returns if the class is an interface. + * + * @return boolean + */ + public function isInterface() + { + return $this->reflection->isInterface(); + } + + /** + * Returns if the class is an exception or its descendant. + * + * @return boolean + */ + public function isException() + { + return $this->reflection->isException(); + } + + /** + * Returns if the current class is a subclass of the given class. + * + * @param string $class Class name + * @return boolean + */ + public function isSubclassOf($class) + { + return $this->reflection->isSubclassOf($class); + } + + /** + * Returns visible methods. + * + * @return array + */ + public function getMethods() + { + if (null === $this->methods) { + $this->methods = $this->getOwnMethods(); + foreach ($this->reflection->getMethods(self::$methodAccessLevels) as $method) { + if (isset($this->methods[$method->getName()])) { + continue; + } + $apiMethod = new ReflectionMethod($method, self::$generator); + if (!$this->isDocumented() || $apiMethod->isDocumented()) { + $this->methods[$method->getName()] = $apiMethod; + } + } + } + return $this->methods; + } + + /** + * Returns visible methods declared by inspected class. + * + * @return array + */ + public function getOwnMethods() + { + if (null === $this->ownMethods) { + $this->ownMethods = array(); + foreach ($this->reflection->getOwnMethods(self::$methodAccessLevels) as $method) { + $apiMethod = new ReflectionMethod($method, self::$generator); + if (!$this->isDocumented() || $apiMethod->isDocumented()) { + $this->ownMethods[$method->getName()] = $apiMethod; + } + } + } + return $this->ownMethods; + } + + /** + * Returns visible magic methods. + * + * @return array + */ + public function getMagicMethods() + { + $methods = $this->getOwnMagicMethods(); + + $parent = $this->getParentClass(); + while ($parent) { + foreach ($parent->getOwnMagicMethods() as $method) { + if (isset($methods[$method->getName()])) { + continue; + } + + if (!$this->isDocumented() || $method->isDocumented()) { + $methods[$method->getName()] = $method; + } + } + $parent = $parent->getParentClass(); + } + + foreach ($this->getTraits() as $trait) { + foreach ($trait->getOwnMagicMethods() as $method) { + if (isset($methods[$method->getName()])) { + continue; + } + + if (!$this->isDocumented() || $method->isDocumented()) { + $methods[$method->getName()] = $method; + } + } + } + + return $methods; + } + + /** + * Returns visible magic methods declared by inspected class. + * + * @return array + */ + public function getOwnMagicMethods() + { + if (null === $this->ownMagicMethods) { + $this->ownMagicMethods = array(); + + if (!(self::$methodAccessLevels & InternalReflectionMethod::IS_PUBLIC) || false === $this->getDocComment()) { + return $this->ownMagicMethods; + } + + $annotations = $this->getAnnotation('method'); + if (null === $annotations) { + return $this->ownMagicMethods; + } + + foreach ($annotations as $annotation) { + if (!preg_match('~^(?:([\\w\\\\]+(?:\\|[\\w\\\\]+)*)\\s+)?(&)?\\s*(\\w+)\\s*\\(\\s*(.*)\\s*\\)\\s*(.*|$)~s', $annotation, $matches)) { + // Wrong annotation format + continue; + } + + list(, $returnTypeHint, $returnsReference, $name, $args, $shortDescription) = $matches; + + $doc = $this->getDocComment(); + $tmp = $annotation; + if ($delimiter = strpos($annotation, "\n")) { + $tmp = substr($annotation, 0, $delimiter); + } + + $startLine = $this->getStartLine() + substr_count(substr($doc, 0, strpos($doc, $tmp)), "\n"); + $endLine = $startLine + substr_count($annotation, "\n"); + + $method = new ReflectionMethodMagic(null, self::$generator); + $method + ->setName($name) + ->setShortDescription(str_replace("\n", ' ', $shortDescription)) + ->setStartLine($startLine) + ->setEndLine($endLine) + ->setReturnsReference('&' === $returnsReference) + ->setDeclaringClass($this) + ->addAnnotation('return', $returnTypeHint); + + $this->ownMagicMethods[$name] = $method; + + $parameters = array(); + foreach (array_filter(preg_split('~\\s*,\\s*~', $args)) as $position => $arg) { + if (!preg_match('~^(?:([\\w\\\\]+(?:\\|[\\w\\\\]+)*)\\s+)?(&)?\\s*\\$(\\w+)(?:\\s*=\\s*(.*))?($)~s', $arg, $matches)) { + // Wrong annotation format + continue; + } + + list(, $typeHint, $passedByReference, $name, $defaultValueDefinition) = $matches; + + if (empty($typeHint)) { + $typeHint = 'mixed'; + } + + $parameter = new ReflectionParameterMagic(null, self::$generator); + $parameter + ->setName($name) + ->setPosition($position) + ->setTypeHint($typeHint) + ->setDefaultValueDefinition($defaultValueDefinition) + ->setUnlimited(false) + ->setPassedByReference('&' === $passedByReference) + ->setDeclaringFunction($method); + + $parameters[$name] = $parameter; + + $method->addAnnotation('param', ltrim(sprintf('%s $%s', $typeHint, $name))); + } + $method->setParameters($parameters); + } + } + return $this->ownMagicMethods; + } + + /** + * Returns visible methods declared by traits. + * + * @return array + */ + public function getTraitMethods() + { + $methods = array(); + foreach ($this->reflection->getTraitMethods(self::$methodAccessLevels) as $method) { + $apiMethod = new ReflectionMethod($method, self::$generator); + if (!$this->isDocumented() || $apiMethod->isDocumented()) { + $methods[$method->getName()] = $apiMethod; + } + } + return $methods; + } + + /** + * Returns a method reflection. + * + * @param string $name Method name + * @return \ApiGen\ReflectionMethod + * @throws \InvalidArgumentException If required method does not exist. + */ + public function getMethod($name) + { + if ($this->hasMethod($name)) { + return $this->methods[$name]; + } + + throw new InvalidArgumentException(sprintf('Method %s does not exist in class %s', $name, $this->reflection->getName())); + } + + /** + * Returns visible properties. + * + * @return array + */ + public function getProperties() + { + if (null === $this->properties) { + $this->properties = $this->getOwnProperties(); + foreach ($this->reflection->getProperties(self::$propertyAccessLevels) as $property) { + if (isset($this->properties[$property->getName()])) { + continue; + } + $apiProperty = new ReflectionProperty($property, self::$generator); + if (!$this->isDocumented() || $apiProperty->isDocumented()) { + $this->properties[$property->getName()] = $apiProperty; + } + } + } + return $this->properties; + } + + /** + * Returns visible magic properties. + * + * @return array + */ + public function getMagicProperties() + { + $properties = $this->getOwnMagicProperties(); + + $parent = $this->getParentClass(); + while ($parent) { + foreach ($parent->getOwnMagicProperties() as $property) { + if (isset($properties[$method->getName()])) { + continue; + } + + if (!$this->isDocumented() || $property->isDocumented()) { + $properties[$property->getName()] = $property; + } + } + $parent = $parent->getParentClass(); + } + + foreach ($this->getTraits() as $trait) { + foreach ($trait->getOwnMagicProperties() as $property) { + if (isset($properties[$method->getName()])) { + continue; + } + + if (!$this->isDocumented() || $property->isDocumented()) { + $properties[$property->getName()] = $property; + } + } + } + + return $properties; + } + + /** + * Returns visible properties declared by inspected class. + * + * @return array + */ + public function getOwnProperties() + { + if (null === $this->ownProperties) { + $this->ownProperties = array(); + foreach ($this->reflection->getOwnProperties(self::$propertyAccessLevels) as $property) { + $apiProperty = new ReflectionProperty($property, self::$generator); + if (!$this->isDocumented() || $apiProperty->isDocumented()) { + $this->ownProperties[$property->getName()] = $apiProperty; + } + } + } + return $this->ownProperties; + } + + /** + * Returns visible properties magicly declared by inspected class. + * + * @return array + */ + public function getOwnMagicProperties() + { + if (null === $this->ownMagicProperties) { + $this->ownMagicProperties = array(); + + if (!(self::$propertyAccessLevels & InternalReflectionProperty::IS_PUBLIC) || false === $this->getDocComment()) { + return $this->ownMagicProperties; + } + + foreach (array('property', 'property-read', 'property-write') as $annotationName) { + $annotations = $this->getAnnotation($annotationName); + if (null === $annotations) { + continue; + } + + foreach ($annotations as $annotation) { + if (!preg_match('~^(?:([\\w\\\\]+(?:\\|[\\w\\\\]+)*)\\s+)?\\$(\\w+)(?:\\s+(.*))?($)~s', $annotation, $matches)) { + // Wrong annotation format + continue; + } + + list(, $typeHint, $name, $shortDescription) = $matches; + + if (empty($typeHint)) { + $typeHint = 'mixed'; + } + + $doc = $this->getDocComment(); + $tmp = $annotation; + if ($delimiter = strpos($annotation, "\n")) { + $tmp = substr($annotation, 0, $delimiter); + } + + $startLine = $this->getStartLine() + substr_count(substr($doc, 0, strpos($doc, $tmp)), "\n"); + $endLine = $startLine + substr_count($annotation, "\n"); + + $magicProperty = new ReflectionPropertyMagic(null, self::$generator); + $magicProperty + ->setName($name) + ->setTypeHint($typeHint) + ->setShortDescription(str_replace("\n", ' ', $shortDescription)) + ->setStartLine($startLine) + ->setEndLine($endLine) + ->setReadOnly('property-read' === $annotationName) + ->setWriteOnly('property-write' === $annotationName) + ->setDeclaringClass($this) + ->addAnnotation('var', $typeHint); + + $this->ownMagicProperties[$name] = $magicProperty; + } + } + } + + return $this->ownMagicProperties; + } + + /** + * Returns visible properties declared by traits. + * + * @return array + */ + public function getTraitProperties() + { + $properties = array(); + foreach ($this->reflection->getTraitProperties(self::$propertyAccessLevels) as $property) { + $apiProperty = new ReflectionProperty($property, self::$generator); + if (!$this->isDocumented() || $apiProperty->isDocumented()) { + $properties[$property->getName()] = $apiProperty; + } + } + return $properties; + } + + /** + * Returns a method property. + * + * @param string $name Method name + * @return \ApiGen\ReflectionProperty + * @throws \InvalidArgumentException If required property does not exist. + */ + public function getProperty($name) + { + if ($this->hasProperty($name)) { + return $this->properties[$name]; + } + + throw new InvalidArgumentException(sprintf('Property %s does not exist in class %s', $name, $this->reflection->getName())); + } + + /** + * Returns visible properties. + * + * @return array + */ + public function getConstants() + { + if (null === $this->constants) { + $this->constants = array(); + foreach ($this->reflection->getConstantReflections() as $constant) { + $apiConstant = new ReflectionConstant($constant, self::$generator); + if (!$this->isDocumented() || $apiConstant->isDocumented()) { + $this->constants[$constant->getName()] = $apiConstant; + } + } + } + + return $this->constants; + } + + /** + * Returns constants declared by inspected class. + * + * @return array + */ + public function getOwnConstants() + { + if (null === $this->ownConstants) { + $this->ownConstants = array(); + $className = $this->reflection->getName(); + foreach ($this->getConstants() as $constantName => $constant) { + if ($className === $constant->getDeclaringClassName()) { + $this->ownConstants[$constantName] = $constant; + } + } + } + return $this->ownConstants; + } + + /** + * Returns a constant reflection. + * + * @param string $name Constant name + * @return \ApiGen\ReflectionConstant + * @throws \InvalidArgumentException If required constant does not exist. + */ + public function getConstantReflection($name) + { + if (null === $this->constants) { + $this->getConstants(); + } + + if (isset($this->constants[$name])) { + return $this->constants[$name]; + } + + throw new InvalidArgumentException(sprintf('Constant %s does not exist in class %s', $name, $this->reflection->getName())); + } + + /** + * Returns a constant reflection. + * + * @param string $name Constant name + * @return \ApiGen\ReflectionConstant + */ + public function getConstant($name) + { + return $this->getConstantReflection($name); + } + + /** + * Checks if there is a constant of the given name. + * + * @param string $constantName Constant name + * @return boolean + */ + public function hasConstant($constantName) + { + if (null === $this->constants) { + $this->getConstants(); + } + + return isset($this->constants[$constantName]); + } + + /** + * Checks if there is a constant of the given name. + * + * @param string $constantName Constant name + * @return boolean + */ + public function hasOwnConstant($constantName) + { + if (null === $this->ownConstants) { + $this->getOwnConstants(); + } + + return isset($this->ownConstants[$constantName]); + } + + /** + * Returns a constant reflection. + * + * @param string $name Constant name + * @return \ApiGen\ReflectionConstant + * @throws \InvalidArgumentException If required constant does not exist. + */ + public function getOwnConstantReflection($name) + { + if (null === $this->ownConstants) { + $this->getOwnConstants(); + } + + if (isset($this->ownConstants[$name])) { + return $this->ownConstants[$name]; + } + + throw new InvalidArgumentException(sprintf('Constant %s does not exist in class %s', $name, $this->reflection->getName())); + } + + /** + * Returns a constant reflection. + * + * @param string $name Constant name + * @return \ApiGen\ReflectionConstant + */ + public function getOwnConstant($name) + { + return $this->getOwnConstantReflection($name); + } + + /** + * Returns a parent class reflection encapsulated by this class. + * + * @return \ApiGen\ReflectionClass + */ + public function getParentClass() + { + if ($className = $this->reflection->getParentClassName()) { + return self::$parsedClasses[$className]; + } + return $className; + } + + /** + * Returns the parent class name. + * + * @return string|null + */ + public function getParentClassName() + { + return $this->reflection->getParentClassName(); + } + + /** + * Returns all parent classes reflections encapsulated by this class. + * + * @return array + */ + public function getParentClasses() + { + if (null === $this->parentClasses) { + $classes = self::$parsedClasses; + $this->parentClasses = array_map(function(IReflectionClass $class) use ($classes) { + return $classes[$class->getName()]; + }, $this->reflection->getParentClasses()); + } + return $this->parentClasses; + } + + + /** + * Returns the parent classes names. + * + * @return array + */ + public function getParentClassNameList() + { + return $this->reflection->getParentClassNameList(); + } + + /** + * Returns if the class implements the given interface. + * + * @param string|object $interface Interface name or reflection object + * @return boolean + */ + public function implementsInterface($interface) + { + return $this->reflection->implementsInterface($interface); + } + + /** + * Returns all interface reflections encapsulated by this class. + * + * @return array + */ + public function getInterfaces() + { + $classes = self::$parsedClasses; + return array_map(function(IReflectionClass $class) use ($classes) { + return $classes[$class->getName()]; + }, $this->reflection->getInterfaces()); + } + + /** + * Returns interface names. + * + * @return array + */ + public function getInterfaceNames() + { + return $this->reflection->getInterfaceNames(); + } + + /** + * Returns all interfaces implemented by the inspected class and not its parents. + * + * @return array + */ + public function getOwnInterfaces() + { + $classes = self::$parsedClasses; + return array_map(function(IReflectionClass $class) use ($classes) { + return $classes[$class->getName()]; + }, $this->reflection->getOwnInterfaces()); + } + + /** + * Returns names of interfaces implemented by this class, not its parents. + * + * @return array + */ + public function getOwnInterfaceNames() + { + return $this->reflection->getOwnInterfaceNames(); + } + + /** + * Returns all traits reflections encapsulated by this class. + * + * @return array + */ + public function getTraits() + { + $classes = self::$parsedClasses; + return array_map(function(IReflectionClass $class) use ($classes) { + return $classes[$class->getName()]; + }, $this->reflection->getTraits()); + } + + /** + * Returns names of used traits. + * + * @return array + */ + public function getTraitNames() + { + return $this->reflection->getTraitNames(); + } + + /** + * Returns names of traits used by this class an not its parents. + * + * @return array + */ + public function getOwnTraitNames() + { + return $this->reflection->getOwnTraitNames(); + } + + /** + * Returns method aliases from traits. + * + * @return array + */ + public function getTraitAliases() + { + return $this->reflection->getTraitAliases(); + } + + /** + * Returns all traits used by the inspected class and not its parents. + * + * @return array + */ + public function getOwnTraits() + { + $classes = self::$parsedClasses; + return array_map(function(IReflectionClass $class) use ($classes) { + return $classes[$class->getName()]; + }, $this->reflection->getOwnTraits()); + } + + /** + * Returns if the class is a trait. + * + * @return boolean + */ + public function isTrait() + { + return $this->reflection->isTrait(); + } + + /** + * Returns if the class uses a particular trait. + * + * @param string $trait Trait name + * @return boolean + */ + public function usesTrait($trait) + { + return $this->reflection->usesTrait($trait); + } + + /** + * Returns reflections of direct subclasses. + * + * @return array + */ + public function getDirectSubClasses() + { + $subClasses = array(); + $name = $this->reflection->getName(); + foreach (self::$parsedClasses as $class) { + if (!$class->isDocumented()) { + continue; + } + if ($name === $class->getParentClassName()) { + $subClasses[] = $class; + } + } + return $subClasses; + } + + /** + * Returns reflections of indirect subclasses. + * + * @return array + */ + public function getIndirectSubClasses() + { + $subClasses = array(); + $name = $this->reflection->getName(); + foreach (self::$parsedClasses as $class) { + if (!$class->isDocumented()) { + continue; + } + if ($name !== $class->getParentClassName() && $class->isSubclassOf($name)) { + $subClasses[] = $class; + } + } + return $subClasses; + } + + /** + * Returns reflections of classes directly implementing this interface. + * + * @return array + */ + public function getDirectImplementers() + { + if (!$this->isInterface()) { + return array(); + } + + $implementers = array(); + $name = $this->reflection->getName(); + foreach (self::$parsedClasses as $class) { + if (!$class->isDocumented()) { + continue; + } + if (in_array($name, $class->getOwnInterfaceNames())) { + $implementers[] = $class; + } + } + return $implementers; + } + + /** + * Returns reflections of classes indirectly implementing this interface. + * + * @return array + */ + public function getIndirectImplementers() + { + if (!$this->isInterface()) { + return array(); + } + + $implementers = array(); + $name = $this->reflection->getName(); + foreach (self::$parsedClasses as $class) { + if (!$class->isDocumented()) { + continue; + } + if ($class->implementsInterface($name) && !in_array($name, $class->getOwnInterfaceNames())) { + $implementers[] = $class; + } + } + return $implementers; + } + + /** + * Returns reflections of classes directly using this trait. + * + * @return array + */ + public function getDirectUsers() + { + if (!$this->isTrait()) { + return array(); + } + + $users = array(); + $name = $this->reflection->getName(); + foreach (self::$parsedClasses as $class) { + if (!$class->isDocumented()) { + continue; + } + + if (in_array($name, $class->getOwnTraitNames())) { + $users[] = $class; + } + } + return $users; + } + + /** + * Returns reflections of classes indirectly using this trait. + * + * @return array + */ + public function getIndirectUsers() + { + if (!$this->isTrait()) { + return array(); + } + + $users = array(); + $name = $this->reflection->getName(); + foreach (self::$parsedClasses as $class) { + if (!$class->isDocumented()) { + continue; + } + if ($class->usesTrait($name) && !in_array($name, $class->getOwnTraitNames())) { + $users[] = $class; + } + } + return $users; + } + + /** + * Returns an array of inherited methods from parent classes grouped by the declaring class name. + * + * @return array + */ + public function getInheritedMethods() + { + $methods = array(); + $allMethods = array_flip(array_map(function($method) { + return $method->getName(); + }, $this->getOwnMethods())); + + foreach (array_merge($this->getParentClasses(), $this->getInterfaces()) as $class) { + $inheritedMethods = array(); + foreach ($class->getOwnMethods() as $method) { + if (!array_key_exists($method->getName(), $allMethods) && !$method->isPrivate()) { + $inheritedMethods[$method->getName()] = $method; + $allMethods[$method->getName()] = null; + } + } + + if (!empty($inheritedMethods)) { + ksort($inheritedMethods); + $methods[$class->getName()] = array_values($inheritedMethods); + } + } + + return $methods; + } + + /** + * Returns an array of inherited magic methods from parent classes grouped by the declaring class name. + * + * @return array + */ + public function getInheritedMagicMethods() + { + $methods = array(); + $allMethods = array_flip(array_map(function($method) { + return $method->getName(); + }, $this->getOwnMagicMethods())); + + foreach (array_merge($this->getParentClasses(), $this->getInterfaces()) as $class) { + $inheritedMethods = array(); + foreach ($class->getOwnMagicMethods() as $method) { + if (!array_key_exists($method->getName(), $allMethods)) { + $inheritedMethods[$method->getName()] = $method; + $allMethods[$method->getName()] = null; + } + } + + if (!empty($inheritedMethods)) { + ksort($inheritedMethods); + $methods[$class->getName()] = array_values($inheritedMethods); + } + } + + return $methods; + } + + /** + * Returns an array of used methods from used traits grouped by the declaring trait name. + * + * @return array + */ + public function getUsedMethods() + { + $usedMethods = array(); + foreach ($this->getMethods() as $method) { + if (null === $method->getDeclaringTraitName() || $this->getName() === $method->getDeclaringTraitName()) { + continue; + } + + $usedMethods[$method->getDeclaringTraitName()][$method->getName()]['method'] = $method; + if (null !== $method->getOriginalName() && $method->getName() !== $method->getOriginalName()) { + $usedMethods[$method->getDeclaringTraitName()][$method->getName()]['aliases'][$method->getName()] = $method; + } + } + + // Sort + array_walk($usedMethods, function(&$methods) { + ksort($methods); + array_walk($methods, function(&$aliasedMethods) { + if (!isset($aliasedMethods['aliases'])) { + $aliasedMethods['aliases'] = array(); + } + ksort($aliasedMethods['aliases']); + }); + }); + + return $usedMethods; + } + + /** + * Returns an array of used magic methods from used traits grouped by the declaring trait name. + * + * @return array + */ + public function getUsedMagicMethods() + { + $usedMethods = array(); + + foreach ($this->getMagicMethods() as $method) { + if (null === $method->getDeclaringTraitName() || $this->getName() === $method->getDeclaringTraitName()) { + continue; + } + + $usedMethods[$method->getDeclaringTraitName()][$method->getName()]['method'] = $method; + } + + // Sort + array_walk($usedMethods, function(&$methods) { + ksort($methods); + array_walk($methods, function(&$aliasedMethods) { + if (!isset($aliasedMethods['aliases'])) { + $aliasedMethods['aliases'] = array(); + } + ksort($aliasedMethods['aliases']); + }); + }); + + return $usedMethods; + } + + /** + * Returns an array of inherited constants from parent classes grouped by the declaring class name. + * + * @return array + */ + public function getInheritedConstants() + { + return array_filter( + array_map( + function(ReflectionClass $class) { + $reflections = $class->getOwnConstants(); + ksort($reflections); + return $reflections; + }, + array_merge($this->getParentClasses(), $this->getInterfaces()) + ) + ); + } + + /** + * Returns an array of inherited properties from parent classes grouped by the declaring class name. + * + * @return array + */ + public function getInheritedProperties() + { + $properties = array(); + $allProperties = array_flip(array_map(function($property) { + return $property->getName(); + }, $this->getOwnProperties())); + + foreach ($this->getParentClasses() as $class) { + $inheritedProperties = array(); + foreach ($class->getOwnProperties() as $property) { + if (!array_key_exists($property->getName(), $allProperties) && !$property->isPrivate()) { + $inheritedProperties[$property->getName()] = $property; + $allProperties[$property->getName()] = null; + } + } + + if (!empty($inheritedProperties)) { + ksort($inheritedProperties); + $properties[$class->getName()] = array_values($inheritedProperties); + } + } + + return $properties; + } + + /** + * Returns an array of inherited magic properties from parent classes grouped by the declaring class name. + * + * @return array + */ + public function getInheritedMagicProperties() + { + $properties = array(); + $allProperties = array_flip(array_map(function($property) { + return $property->getName(); + }, $this->getOwnMagicProperties())); + + foreach ($this->getParentClasses() as $class) { + $inheritedProperties = array(); + foreach ($class->getOwnMagicProperties() as $property) { + if (!array_key_exists($property->getName(), $allProperties)) { + $inheritedProperties[$property->getName()] = $property; + $allProperties[$property->getName()] = null; + } + } + + if (!empty($inheritedProperties)) { + ksort($inheritedProperties); + $properties[$class->getName()] = array_values($inheritedProperties); + } + } + + return $properties; + } + + /** + * Returns an array of used properties from used traits grouped by the declaring trait name. + * + * @return array + */ + public function getUsedProperties() + { + $properties = array(); + $allProperties = array_flip(array_map(function($property) { + return $property->getName(); + }, $this->getOwnProperties())); + + foreach ($this->getTraits() as $trait) { + $usedProperties = array(); + foreach ($trait->getOwnProperties() as $property) { + if (!array_key_exists($property->getName(), $allProperties)) { + $usedProperties[$property->getName()] = $property; + $allProperties[$property->getName()] = null; + } + } + + if (!empty($usedProperties)) { + ksort($usedProperties); + $properties[$trait->getName()] = array_values($usedProperties); + } + } + + return $properties; + } + + /** + * Returns an array of used magic properties from used traits grouped by the declaring trait name. + * + * @return array + */ + public function getUsedMagicProperties() + { + $properties = array(); + $allProperties = array_flip(array_map(function($property) { + return $property->getName(); + }, $this->getOwnMagicProperties())); + + foreach ($this->getTraits() as $trait) { + $usedProperties = array(); + foreach ($trait->getOwnMagicProperties() as $property) { + if (!array_key_exists($property->getName(), $allProperties)) { + $usedProperties[$property->getName()] = $property; + $allProperties[$property->getName()] = null; + } + } + + if (!empty($usedProperties)) { + ksort($usedProperties); + $properties[$trait->getName()] = array_values($usedProperties); + } + } + + return $properties; + } + + /** + * Checks if there is a property of the given name. + * + * @param string $propertyName Property name + * @return boolean + */ + public function hasProperty($propertyName) + { + if (null === $this->properties) { + $this->getProperties(); + } + + return isset($this->properties[$propertyName]); + } + + /** + * Checks if there is a property of the given name. + * + * @param string $propertyName Property name + * @return boolean + */ + public function hasOwnProperty($propertyName) + { + if (null === $this->ownProperties) { + $this->getOwnProperties(); + } + + return isset($this->ownProperties[$propertyName]); + } + + /** + * Checks if there is a property of the given name. + * + * @param string $propertyName Property name + * @return boolean + */ + public function hasTraitProperty($propertyName) + { + $properties = $this->getTraitProperties(); + return isset($properties[$propertyName]); + } + + /** + * Checks if there is a method of the given name. + * + * @param string $methodName Method name + * @return boolean + */ + public function hasMethod($methodName) + { + if (null === $this->methods) { + $this->getMethods(); + } + + return isset($this->methods[$methodName]); + } + + /** + * Checks if there is a method of the given name. + * + * @param string $methodName Method name + * @return boolean + */ + public function hasOwnMethod($methodName) + { + if (null === $this->ownMethods) { + $this->getOwnMethods(); + } + + return isset($this->ownMethods[$methodName]); + } + + /** + * Checks if there is a method of the given name. + * + * @param string $methodName Method name + * @return boolean + */ + public function hasTraitMethod($methodName) + { + $methods = $this->getTraitMethods(); + return isset($methods[$methodName]); + } + + /** + * Returns if the class is valid. + * + * @return boolean + */ + public function isValid() + { + if ($this->reflection instanceof TokenReflection\Invalid\ReflectionClass) { + return false; + } + + return true; + } + + /** + * Returns if the class should be documented. + * + * @return boolean + */ + public function isDocumented() + { + if (null === $this->isDocumented && parent::isDocumented()) { + $fileName = self::$generator->unPharPath($this->reflection->getFilename()); + foreach (self::$config->skipDocPath as $mask) { + if (fnmatch($mask, $fileName, FNM_NOESCAPE)) { + $this->isDocumented = false; + break; + } + } + if (true === $this->isDocumented) { + foreach (self::$config->skipDocPrefix as $prefix) { + if (0 === strpos($this->reflection->getName(), $prefix)) { + $this->isDocumented = false; + break; + } + } + } + } + + return $this->isDocumented; + } +} diff --git a/apigen/ApiGen/ReflectionConstant.php b/apigen/ApiGen/ReflectionConstant.php new file mode 100644 index 00000000000..c7993aa39ce --- /dev/null +++ b/apigen/ApiGen/ReflectionConstant.php @@ -0,0 +1,145 @@ +reflection->getShortName(); + } + + /** + * Returns constant type hint. + * + * @return string + */ + public function getTypeHint() + { + if ($annotations = $this->getAnnotation('var')) { + list($types) = preg_split('~\s+|$~', $annotations[0], 2); + if (!empty($types)) { + return $types; + } + } + + try { + $type = gettype($this->getValue()); + if ('null' !== strtolower($type)) { + return $type; + } + } catch (\Exception $e) { + // Nothing + } + + return 'mixed'; + } + + /** + * Returns the constant declaring class. + * + * @return \ApiGen\ReflectionClass|null + */ + public function getDeclaringClass() + { + $className = $this->reflection->getDeclaringClassName(); + return null === $className ? null : self::$parsedClasses[$className]; + } + + /** + * Returns the name of the declaring class. + * + * @return string|null + */ + public function getDeclaringClassName() + { + return $this->reflection->getDeclaringClassName(); + } + + /** + * Returns the constant value. + * + * @return mixed + */ + public function getValue() + { + return $this->reflection->getValue(); + } + + /** + * Returns the constant value definition. + * + * @return string + */ + public function getValueDefinition() + { + return $this->reflection->getValueDefinition(); + } + + /** + * Returns if the constant is valid. + * + * @return boolean + */ + public function isValid() + { + if ($this->reflection instanceof \TokenReflection\Invalid\ReflectionConstant) { + return false; + } + + if ($class = $this->getDeclaringClass()) { + return $class->isValid(); + } + + return true; + } + + /** + * Returns if the constant should be documented. + * + * @return boolean + */ + public function isDocumented() + { + if (null === $this->isDocumented && parent::isDocumented() && null === $this->reflection->getDeclaringClassName()) { + $fileName = self::$generator->unPharPath($this->reflection->getFilename()); + foreach (self::$config->skipDocPath as $mask) { + if (fnmatch($mask, $fileName, FNM_NOESCAPE)) { + $this->isDocumented = false; + break; + } + } + if (true === $this->isDocumented) { + foreach (self::$config->skipDocPrefix as $prefix) { + if (0 === strpos($this->reflection->getName(), $prefix)) { + $this->isDocumented = false; + break; + } + } + } + } + + return $this->isDocumented; + } +} diff --git a/apigen/ApiGen/ReflectionElement.php b/apigen/ApiGen/ReflectionElement.php new file mode 100644 index 00000000000..8f12485a3dd --- /dev/null +++ b/apigen/ApiGen/ReflectionElement.php @@ -0,0 +1,373 @@ +reflection->getExtension(); + return null === $extension ? null : new ReflectionExtension($extension, self::$generator); + } + + /** + * Returns the PHP extension name. + * + * @return boolean + */ + public function getExtensionName() + { + return $this->reflection->getExtensionName(); + } + + /** + * Returns the start position in the file token stream. + * + * @return integer + */ + public function getStartPosition() + { + return $this->reflection->getStartPosition(); + } + + /** + * Returns the end position in the file token stream. + * + * @return integer + */ + public function getEndPosition() + { + return $this->reflection->getEndPosition(); + } + + /** + * Returns if the element belongs to main project. + * + * @return boolean + */ + public function isMain() + { + return empty(self::$config->main) || 0 === strpos($this->getName(), self::$config->main); + } + + /** + * Returns if the element should be documented. + * + * @return boolean + */ + public function isDocumented() + { + if (null === $this->isDocumented) { + $this->isDocumented = $this->reflection->isTokenized() || $this->reflection->isInternal(); + + if ($this->isDocumented) { + if (!self::$config->php && $this->reflection->isInternal()) { + $this->isDocumented = false; + } elseif (!self::$config->deprecated && $this->reflection->isDeprecated()) { + $this->isDocumented = false; + } elseif (!self::$config->internal && ($internal = $this->reflection->getAnnotation('internal')) && empty($internal[0])) { + $this->isDocumented = false; + } elseif (count($this->reflection->getAnnotation('ignore')) > 0) { + $this->isDocumented = false; + } + } + } + + return $this->isDocumented; + } + + /** + * Returns if the element is deprecated. + * + * @return boolean + */ + public function isDeprecated() + { + if ($this->reflection->isDeprecated()) { + return true; + } + + if (($this instanceof ReflectionMethod || $this instanceof ReflectionProperty || $this instanceof ReflectionConstant) + && $class = $this->getDeclaringClass() + ) { + return $class->isDeprecated(); + } + + return false; + } + + /** + * Returns if the element is in package. + * + * @return boolean + */ + public function inPackage() + { + return '' !== $this->getPackageName(); + } + + /** + * Returns element package name (including subpackage name). + * + * @return string + */ + public function getPackageName() + { + static $packages = array(); + + if ($package = $this->getAnnotation('package')) { + $packageName = preg_replace('~\s+.*~s', '', $package[0]); + if (empty($packageName)) { + return ''; + } + + if ($subpackage = $this->getAnnotation('subpackage')) { + $subpackageName = preg_replace('~\s+.*~s', '', $subpackage[0]); + if (empty($subpackageName)) { + // Do nothing + } elseif (0 === strpos($subpackageName, $packageName)) { + $packageName = $subpackageName; + } else { + $packageName .= '\\' . $subpackageName; + } + } + $packageName = strtr($packageName, '._/', '\\\\\\'); + + $lowerPackageName = strtolower($packageName); + if (!isset($packages[$lowerPackageName])) { + $packages[$lowerPackageName] = $packageName; + } + + return $packages[$lowerPackageName]; + } + + return ''; + } + + /** + * Returns element package name (including subpackage name). + * + * For internal elements returns "PHP", for elements in global space returns "None". + * + * @return string + */ + public function getPseudoPackageName() + { + if ($this->isInternal()) { + return 'PHP'; + } + + return $this->getPackageName() ?: 'None'; + } + + /** + * Returns if the element is defined within a namespace. + * + * @return boolean + */ + public function inNamespace() + { + return '' !== $this->getNamespaceName(); + } + + /** + * Returns element namespace name. + * + * @return string + */ + public function getNamespaceName() + { + static $namespaces = array(); + + $namespaceName = $this->reflection->getNamespaceName(); + + if (!$namespaceName) { + return $namespaceName; + } + + $lowerNamespaceName = strtolower($namespaceName); + if (!isset($namespaces[$lowerNamespaceName])) { + $namespaces[$lowerNamespaceName] = $namespaceName; + } + + return $namespaces[$lowerNamespaceName]; + } + + /** + * Returns element namespace name. + * + * For internal elements returns "PHP", for elements in global space returns "None". + * + * @return string + */ + public function getPseudoNamespaceName() + { + return $this->isInternal() ? 'PHP' : $this->getNamespaceName() ?: 'None'; + } + + /** + * Returns imported namespaces and aliases from the declaring namespace. + * + * @return array + */ + public function getNamespaceAliases() + { + return $this->reflection->getNamespaceAliases(); + } + + /** + * Returns the short description. + * + * @return string + */ + public function getShortDescription() + { + $short = $this->reflection->getAnnotation(\TokenReflection\ReflectionAnnotation::SHORT_DESCRIPTION); + if (!empty($short)) { + return $short; + } + + if ($this instanceof ReflectionProperty || $this instanceof ReflectionConstant) { + $var = $this->getAnnotation('var'); + list(, $short) = preg_split('~\s+|$~', $var[0], 2); + } + + return $short; + } + + /** + * Returns the long description. + * + * @return string + */ + public function getLongDescription() + { + $short = $this->getShortDescription(); + $long = $this->reflection->getAnnotation(\TokenReflection\ReflectionAnnotation::LONG_DESCRIPTION); + + if (!empty($long)) { + $short .= "\n\n" . $long; + } + + return $short; + } + + /** + * Returns the appropriate docblock definition. + * + * @return string|boolean + */ + public function getDocComment() + { + return $this->reflection->getDocComment(); + } + + /** + * Returns reflection element annotations. + * + * Removes the short and long description. + * + * In case of classes, functions and constants, @package, @subpackage, @author and @license annotations + * are added from declaring files if not already present. + * + * @return array + */ + public function getAnnotations() + { + if (null === $this->annotations) { + static $fileLevel = array('package' => true, 'subpackage' => true, 'author' => true, 'license' => true, 'copyright' => true); + + $annotations = $this->reflection->getAnnotations(); + unset($annotations[\TokenReflection\ReflectionAnnotation::SHORT_DESCRIPTION]); + unset($annotations[\TokenReflection\ReflectionAnnotation::LONG_DESCRIPTION]); + + if ($this->reflection instanceof \TokenReflection\ReflectionClass || $this->reflection instanceof \TokenReflection\ReflectionFunction || ($this->reflection instanceof \TokenReflection\ReflectionConstant && null === $this->reflection->getDeclaringClassName())) { + foreach ($this->reflection->getFileReflection()->getAnnotations() as $name => $value) { + if (isset($fileLevel[$name]) && empty($annotations[$name])) { + $annotations[$name] = $value; + } + } + } + + $this->annotations = $annotations; + } + + return $this->annotations; + } + + /** + * Returns reflection element annotation. + * + * @param string $annotation Annotation name + * @return array + */ + public function getAnnotation($annotation) + { + $annotations = $this->getAnnotations(); + return isset($annotations[$annotation]) ? $annotations[$annotation] : null; + } + + /** + * Checks if there is a particular annotation. + * + * @param string $annotation Annotation name + * @return boolean + */ + public function hasAnnotation($annotation) + { + $annotations = $this->getAnnotations(); + return isset($annotations[$annotation]); + } + + /** + * Adds element annotation. + * + * @param string $annotation Annotation name + * @param string $value Annotation value + * @return \ApiGen\ReflectionElement + */ + public function addAnnotation($annotation, $value) + { + if (null === $this->annotations) { + $this->getAnnotations(); + } + $this->annotations[$annotation][] = $value; + + return $this; + } +} diff --git a/apigen/ApiGen/ReflectionExtension.php b/apigen/ApiGen/ReflectionExtension.php new file mode 100644 index 00000000000..1d636bcdaff --- /dev/null +++ b/apigen/ApiGen/ReflectionExtension.php @@ -0,0 +1,135 @@ +reflection->getClass($name); + if (null === $class) { + return null; + } + if (isset(self::$parsedClasses[$name])) { + return self::$parsedClasses[$name]; + } + return new ReflectionClass($class, self::$generator); + } + + /** + * Returns classes defined by this extension. + * + * @return array + */ + public function getClasses() + { + $generator = self::$generator; + $classes = self::$parsedClasses; + return array_map(function(TokenReflection\IReflectionClass $class) use ($generator, $classes) { + return isset($classes[$class->getName()]) ? $classes[$class->getName()] : new ReflectionClass($class, $generator); + }, $this->reflection->getClasses()); + } + + /** + * Returns a constant reflection. + * + * @param string $name Constant name + * @return \ApiGen\ReflectionConstant|null + */ + public function getConstant($name) + { + return $this->getConstantReflection($name); + } + + /** + * Returns a constant reflection. + * + * @param string $name Constant name + * @return \ApiGen\ReflectionConstant|null + */ + public function getConstantReflection($name) + { + $constant = $this->reflection->getConstantReflection($name); + return null === $constant ? null : new ReflectionConstant($constant, self::$generator); + } + + /** + * Returns reflections of defined constants. + * + * @return array + */ + public function getConstants() + { + return $this->getConstantReflections(); + } + + /** + * Returns reflections of defined constants. + * + * @return array + */ + public function getConstantReflections() + { + $generator = self::$generator; + return array_map(function(TokenReflection\IReflectionConstant $constant) use ($generator) { + return new ReflectionConstant($constant, $generator); + }, $this->reflection->getConstantReflections()); + } + + /** + * Returns a function reflection. + * + * @param string $name Function name + * @return \ApiGen\ReflectionFunction + */ + public function getFunction($name) + { + $function = $this->reflection->getFunction($name); + return null === $function ? null : new ReflectionFunction($function, self::$generator); + } + + /** + * Returns functions defined by this extension. + * + * @return array + */ + public function getFunctions() + { + $generator = self::$generator; + return array_map(function(TokenReflection\IReflectionFunction $function) use ($generator) { + return new ReflectionFunction($function, $generator); + }, $this->reflection->getFunctions()); + } + + /** + * Returns names of functions defined by this extension. + * + * @return array + */ + public function getFunctionNames() + { + return $this->reflection->getFunctionNames(); + } +} diff --git a/apigen/ApiGen/ReflectionFunction.php b/apigen/ApiGen/ReflectionFunction.php new file mode 100644 index 00000000000..75f2e4038d8 --- /dev/null +++ b/apigen/ApiGen/ReflectionFunction.php @@ -0,0 +1,64 @@ +reflection instanceof \TokenReflection\Invalid\ReflectionFunction) { + return false; + } + + return true; + } + + /** + * Returns if the function should be documented. + * + * @return boolean + */ + public function isDocumented() + { + if (null === $this->isDocumented && parent::isDocumented()) { + $fileName = self::$generator->unPharPath($this->reflection->getFilename()); + foreach (self::$config->skipDocPath as $mask) { + if (fnmatch($mask, $fileName, FNM_NOESCAPE)) { + $this->isDocumented = false; + break; + } + } + if (true === $this->isDocumented) { + foreach (self::$config->skipDocPrefix as $prefix) { + if (0 === strpos($this->reflection->getName(), $prefix)) { + $this->isDocumented = false; + break; + } + } + } + } + + return $this->isDocumented; + } +} diff --git a/apigen/ApiGen/ReflectionFunctionBase.php b/apigen/ApiGen/ReflectionFunctionBase.php new file mode 100644 index 00000000000..a86326fd9af --- /dev/null +++ b/apigen/ApiGen/ReflectionFunctionBase.php @@ -0,0 +1,151 @@ +reflection->getShortName(); + } + + /** + * Returns if the function/method returns its value as reference. + * + * @return boolean + */ + public function returnsReference() + { + return $this->reflection->returnsReference(); + } + + /** + * Returns a list of function/method parameters. + * + * @return array + */ + public function getParameters() + { + if (null === $this->parameters) { + $generator = self::$generator; + $this->parameters = array_map(function(TokenReflection\IReflectionParameter $parameter) use ($generator) { + return new ReflectionParameter($parameter, $generator); + }, $this->reflection->getParameters()); + + $annotations = $this->getAnnotation('param'); + if (null !== $annotations) { + foreach ($annotations as $position => $annotation) { + if (isset($parameters[$position])) { + // Standard parameter + continue; + } + + if (!preg_match('~^(?:([\\w\\\\]+(?:\\|[\\w\\\\]+)*)\\s+)?\\$(\\w+),\\.{3}(?:\\s+(.*))?($)~s', $annotation, $matches)) { + // Wrong annotation format + continue; + } + + list(, $typeHint, $name) = $matches; + + if (empty($typeHint)) { + $typeHint = 'mixed'; + } + + $parameter = new ReflectionParameterMagic(null, self::$generator); + $parameter + ->setName($name) + ->setPosition($position) + ->setTypeHint($typeHint) + ->setDefaultValueDefinition(null) + ->setUnlimited(true) + ->setPassedByReference(false) + ->setDeclaringFunction($this); + + $this->parameters[$position] = $parameter; + } + } + } + + return $this->parameters; + } + + /** + * Returns a particular function/method parameter. + * + * @param integer|string $parameterName Parameter name or position + * @return \ApiGen\ReflectionParameter + * @throws \InvalidArgumentException If there is no parameter of the given name. + * @throws \InvalidArgumentException If there is no parameter at the given position. + */ + public function getParameter($parameterName) + { + $parameters = $this->getParameters(); + + if (is_numeric($parameterName)) { + if (isset($parameters[$parameterName])) { + return $parameters[$parameterName]; + } + + throw new InvalidArgumentException(sprintf('There is no parameter at position "%d" in function/method "%s"', $parameterName, $this->getName()), Exception\Runtime::DOES_NOT_EXIST); + } else { + foreach ($parameters as $parameter) { + if ($parameter->getName() === $parameterName) { + return $parameter; + } + } + + throw new InvalidArgumentException(sprintf('There is no parameter "%s" in function/method "%s"', $parameterName, $this->getName()), Exception\Runtime::DOES_NOT_EXIST); + } + } + + /** + * Returns the number of parameters. + * + * @return integer + */ + public function getNumberOfParameters() + { + return $this->reflection->getNumberOfParameters(); + } + + /** + * Returns the number of required parameters. + * + * @return integer + */ + public function getNumberOfRequiredParameters() + { + return $this->reflection->getNumberOfRequiredParameters(); + } +} diff --git a/apigen/ApiGen/ReflectionMethod.php b/apigen/ApiGen/ReflectionMethod.php new file mode 100644 index 00000000000..007935ccd9f --- /dev/null +++ b/apigen/ApiGen/ReflectionMethod.php @@ -0,0 +1,250 @@ +reflection->getDeclaringClassName(); + return null === $className ? null : self::$parsedClasses[$className]; + } + + /** + * Returns the declaring class name. + * + * @return string|null + */ + public function getDeclaringClassName() + { + return $this->reflection->getDeclaringClassName(); + } + + /** + * Returns method modifiers. + * + * @return integer + */ + public function getModifiers() + { + return $this->reflection->getModifiers(); + } + + /** + * Returns if the method is abstract. + * + * @return boolean + */ + public function isAbstract() + { + return $this->reflection->isAbstract(); + } + + /** + * Returns if the method is final. + * + * @return boolean + */ + public function isFinal() + { + return $this->reflection->isFinal(); + } + + /** + * Returns if the method is private. + * + * @return boolean + */ + public function isPrivate() + { + return $this->reflection->isPrivate(); + } + + /** + * Returns if the method is protected. + * + * @return boolean + */ + public function isProtected() + { + return $this->reflection->isProtected(); + } + + /** + * Returns if the method is public. + * + * @return boolean + */ + public function isPublic() + { + return $this->reflection->isPublic(); + } + + /** + * Returns if the method is static. + * + * @return boolean + */ + public function isStatic() + { + return $this->reflection->isStatic(); + } + + /** + * Returns if the method is a constructor. + * + * @return boolean + */ + public function isConstructor() + { + return $this->reflection->isConstructor(); + } + + /** + * Returns if the method is a destructor. + * + * @return boolean + */ + public function isDestructor() + { + return $this->reflection->isDestructor(); + } + + /** + * Returns the method declaring trait. + * + * @return \ApiGen\ReflectionClass|null + */ + public function getDeclaringTrait() + { + $traitName = $this->reflection->getDeclaringTraitName(); + return null === $traitName ? null : self::$parsedClasses[$traitName]; + } + + /** + * Returns the declaring trait name. + * + * @return string|null + */ + public function getDeclaringTraitName() + { + return $this->reflection->getDeclaringTraitName(); + } + + /** + * Returns the overridden method. + * + * @return \ApiGen\ReflectionMethod|null + */ + public function getImplementedMethod() + { + foreach ($this->getDeclaringClass()->getOwnInterfaces() as $interface) { + if ($interface->hasMethod($this->getName())) { + return $interface->getMethod($this->getName()); + } + } + + return null; + } + + /** + * Returns the overridden method. + * + * @return \ApiGen\ReflectionMethod|null + */ + public function getOverriddenMethod() + { + $parent = $this->getDeclaringClass()->getParentClass(); + if (null === $parent) { + return null; + } + + foreach ($parent->getMethods() as $method) { + if ($this->getName() === $method->getName()) { + if (!$method->isPrivate() && !$method->isAbstract()) { + return $method; + } else { + return null; + } + } + } + + return null; + } + + /** + * Returns the original name when importing from a trait. + * + * @return string|null + */ + public function getOriginalName() + { + return $this->reflection->getOriginalName(); + } + + /** + * Returns the original modifiers value when importing from a trait. + * + * @return integer|null + */ + public function getOriginalModifiers() + { + return $this->reflection->getOriginalModifiers(); + } + + /** + * Returns the original method when importing from a trait. + * + * @return \ApiGen\ReflectionMethod|null + */ + public function getOriginal() + { + $originalName = $this->reflection->getOriginalName(); + return null === $originalName ? null : self::$parsedClasses[$this->reflection->getOriginal()->getDeclaringClassName()]->getMethod($originalName); + } + + /** + * Returns if the method is valid. + * + * @return boolean + */ + public function isValid() + { + if ($class = $this->getDeclaringClass()) { + return $class->isValid(); + } + + return true; + } +} diff --git a/apigen/ApiGen/ReflectionMethodMagic.php b/apigen/ApiGen/ReflectionMethodMagic.php new file mode 100644 index 00000000000..05b4514f746 --- /dev/null +++ b/apigen/ApiGen/ReflectionMethodMagic.php @@ -0,0 +1,729 @@ +reflectionType = get_class($this); + if (!isset(self::$reflectionMethods[$this->reflectionType])) { + self::$reflectionMethods[$this->reflectionType] = array_flip(get_class_methods($this)); + } + } + + /** + * Sets method name. + * + * @param string $name + * @return \Apigen\ReflectionMethodMagic + */ + public function setName($name) + { + $this->name = (string) $name; + return $this; + + } + + /** + * Sets short description. + * + * @param string $shortDescription + * @return \Apigen\ReflectionMethodMagic + */ + public function setShortDescription($shortDescription) + { + $this->shortDescription = (string) $shortDescription; + return $this; + } + + /** + * Sets start line. + * + * @param integer $startLine + * @return \Apigen\ReflectionMethodMagic + */ + public function setStartLine($startLine) + { + $this->startLine = (int) $startLine; + return $this; + } + + /** + * Sets end line. + * + * @param integer $endLine + * @return \Apigen\ReflectionMethodMagic + */ + public function setEndLine($endLine) + { + $this->endLine = (int) $endLine; + return $this; + } + + /** + * Sets if the method returns reference. + * + * @param boolean $returnsReference + * @return \Apigen\ReflectionMethodMagic + */ + public function setReturnsReference($returnsReference) + { + $this->returnsReference = (bool) $returnsReference; + return $this; + } + + /** + * Sets parameters. + * + * @param array $parameters + * @return \Apigen\ReflectionMethodMagic + */ + public function setParameters(array $parameters) + { + $this->parameters = $parameters; + return $this; + } + + /** + * Sets declaring class. + * + * @param \ApiGen\ReflectionClass $declaringClass + * @return \ApiGen\ReflectionMethodMagic + */ + public function setDeclaringClass(ReflectionClass $declaringClass) + { + $this->declaringClass = $declaringClass; + return $this; + } + + /** + * Returns the reflection broker used by this reflection object. + * + * @return \TokenReflection\Broker + */ + public function getBroker() + { + return $this->declaringClass->getBroker(); + } + + /** + * Returns the start position in the file token stream. + * + * @return integer + */ + public function getStartPosition() + { + return $this->declaringClass->getStartPosition(); + } + + /** + * Returns the end position in the file token stream. + * + * @return integer + */ + public function getEndPosition() + { + return $this->declaringClass->getEndPosition(); + } + + /** + * Returns the name. + * + * @return string + */ + public function getName() + { + return $this->name; + } + + /** + * Returns the short description. + * + * @return string + */ + public function getShortDescription() + { + return $this->shortDescription; + } + + /** + * Returns the long description. + * + * @return string + */ + public function getLongDescription() + { + return $this->shortDescription; + } + + /** + * Returns the definition start line number in the file. + * + * @return integer + */ + public function getStartLine() + { + return $this->startLine; + } + + /** + * Returns the definition end line number in the file. + * + * @return integer + */ + public function getEndLine() + { + return $this->endLine; + } + + /** + * Returns if the function/method returns its value as reference. + * + * @return boolean + */ + public function returnsReference() + { + return $this->returnsReference; + } + + /** + * Returns if the property is magic. + * + * @return boolean + */ + public function isMagic() + { + return true; + } + + /** + * Returns the unqualified name (UQN). + * + * @return string + */ + public function getShortName() + { + return $this->name; + } + + /** + * Returns the PHP extension reflection. + * + * @return \ApiGen\ReflectionExtension|null + */ + public function getExtension() + { + return null; + } + + /** + * Returns the PHP extension name. + * + * @return boolean + */ + public function getExtensionName() + { + return false; + } + + /** + * Returns if the method should be documented. + * + * @return boolean + */ + public function isDocumented() + { + if (null === $this->isDocumented) { + $this->isDocumented = self::$config->deprecated || !$this->isDeprecated(); + } + + return $this->isDocumented; + } + + /** + * Returns if the property is deprecated. + * + * @return boolean + */ + public function isDeprecated() + { + return $this->declaringClass->isDeprecated(); + } + + /** + * Returns property package name (including subpackage name). + * + * @return string + */ + public function getPackageName() + { + return $this->declaringClass->getPackageName(); + } + + /** + * Returns property namespace name. + * + * @return string + */ + public function getNamespaceName() + { + return $this->declaringClass->getNamespaceName(); + } + + /** + * Returns property annotations. + * + * @return array + */ + public function getAnnotations() + { + if (null === $this->annotations) { + $this->annotations = array(); + } + return $this->annotations; + } + + /** + * Returns the method declaring class. + * + * @return \ApiGen\ReflectionClass|null + */ + public function getDeclaringClass() + { + return $this->declaringClass; + } + + /** + * Returns the declaring class name. + * + * @return string|null + */ + public function getDeclaringClassName() + { + return $this->declaringClass->getName(); + } + + /** + * Returns method modifiers. + * + * @return integer + */ + public function getModifiers() + { + return InternalReflectionMethod::IS_PUBLIC; + } + + /** + * Returns if the method is abstract. + * + * @return boolean + */ + public function isAbstract() + { + return false; + } + + /** + * Returns if the method is final. + * + * @return boolean + */ + public function isFinal() + { + return false; + } + + /** + * Returns if the method is private. + * + * @return boolean + */ + public function isPrivate() + { + return false; + } + + /** + * Returns if the method is protected. + * + * @return boolean + */ + public function isProtected() + { + return false; + } + + /** + * Returns if the method is public. + * + * @return boolean + */ + public function isPublic() + { + return true; + } + + /** + * Returns if the method is static. + * + * @return boolean + */ + public function isStatic() + { + return false; + } + + /** + * Returns if the property is internal. + * + * @return boolean + */ + public function isInternal() + { + return false; + } + + /** + * Returns if the method is a constructor. + * + * @return boolean + */ + public function isConstructor() + { + return false; + } + + /** + * Returns if the method is a destructor. + * + * @return boolean + */ + public function isDestructor() + { + return false; + } + + /** + * Returns the method declaring trait. + * + * @return \ApiGen\ReflectionClass|null + */ + public function getDeclaringTrait() + { + return $this->declaringClass->isTrait() ? $this->declaringClass : null; + } + + /** + * Returns the declaring trait name. + * + * @return string|null + */ + public function getDeclaringTraitName() + { + if ($declaringTrait = $this->getDeclaringTrait()) { + return $declaringTrait->getName(); + } + return null; + } + + /** + * Returns the overridden method. + * + * @return \ApiGen\ReflectionMethod|null + */ + public function getImplementedMethod() + { + return null; + } + + /** + * Returns the overridden method. + * + * @return \ApiGen\ReflectionMethod|null + */ + public function getOverriddenMethod() + { + $parent = $this->declaringClass->getParentClass(); + if (null === $parent) { + return null; + } + + foreach ($parent->getMagicMethods() as $method) { + if ($this->name === $method->getName()) { + return $method; + } + } + + return null; + } + + /** + * Returns the original name when importing from a trait. + * + * @return string|null + */ + public function getOriginalName() + { + return $this->getName(); + } + + /** + * Returns the original modifiers value when importing from a trait. + * + * @return integer|null + */ + public function getOriginalModifiers() + { + return $this->getModifiers(); + } + + /** + * Returns the original method when importing from a trait. + * + * @return \ApiGen\ReflectionMethod|null + */ + public function getOriginal() + { + return null; + } + + /** + * Returns a list of method parameters. + * + * @return array + */ + public function getParameters() + { + return $this->parameters; + } + + /** + * Returns the number of parameters. + * + * @return integer + */ + public function getNumberOfParameters() + { + return count($this->parameters); + } + + /** + * Returns the number of required parameters. + * + * @return integer + */ + public function getNumberOfRequiredParameters() + { + $count = 0; + array_walk($this->parameters, function(ReflectionParameter $parameter) use (&$count) { + if (!$parameter->isOptional()) { + $count++; + } + }); + return $count; + } + + /** + * Returns imported namespaces and aliases from the declaring namespace. + * + * @return array + */ + public function getNamespaceAliases() + { + return $this->declaringClass->getNamespaceAliases(); + } + + /** + * Returns an property pretty (docblock compatible) name. + * + * @return string + */ + public function getPrettyName() + { + return sprintf('%s::%s()', $this->declaringClass->getName(), $this->name); + } + + /** + * Returns the file name the method is defined in. + * + * @return string + */ + public function getFileName() + { + return $this->declaringClass->getFileName(); + } + + /** + * Returns if the method is user defined. + + * @return boolean + */ + public function isUserDefined() + { + return true; + } + + /** + * Returns if the method comes from a tokenized source. + * + * @return boolean + */ + public function isTokenized() + { + return true; + } + + /** + * Returns the appropriate docblock definition. + * + * @return string|boolean + */ + public function getDocComment() + { + $docComment = "/**\n"; + + if (!empty($this->shortDescription)) { + $docComment .= $this->shortDescription . "\n\n"; + } + + if ($annotations = $this->getAnnotation('param')) { + foreach ($annotations as $annotation) { + $docComment .= sprintf("@param %s\n", $annotation); + } + } + + if ($annotations = $this->getAnnotation('return')) { + foreach ($annotations as $annotation) { + $docComment .= sprintf("@return %s\n", $annotation); + } + } + + $docComment .= "*/\n"; + + return $docComment; + } + + /** + * Checks if there is a particular annotation. + * + * @param string $name Annotation name + * @return boolean + */ + public function hasAnnotation($name) + { + $annotations = $this->getAnnotations(); + return array_key_exists($name, $annotations); + } + + /** + * Returns a particular annotation value. + * + * @param string $name Annotation name + * @return string|array|null + */ + public function getAnnotation($name) + { + $annotations = $this->getAnnotations(); + if (array_key_exists($name, $annotations)) { + return $annotations[$name]; + } + return null; + } + + /** + * Retrieves a property or method value. + * + * @param string $name Property name + * @return mixed + */ + public function __get($name) + { + $key = ucfirst($name); + if (isset(self::$reflectionMethods[$this->reflectionType]['get' . $key])) { + return $this->{'get' . $key}(); + } + + if (isset(self::$reflectionMethods[$this->reflectionType]['is' . $key])) { + return $this->{'is' . $key}(); + } + + return null; + } + + /** + * Checks if the given property exists. + * + * @param mixed $name Property name + * @return boolean + */ + public function __isset($name) + { + $key = ucfirst($name); + return isset(self::$reflectionMethods[$this->reflectionType]['get' . $key]) || isset(self::$reflectionMethods[$this->reflectionType]['is' . $key]); + } +} diff --git a/apigen/ApiGen/ReflectionParameter.php b/apigen/ApiGen/ReflectionParameter.php new file mode 100644 index 00000000000..9157d71b2f4 --- /dev/null +++ b/apigen/ApiGen/ReflectionParameter.php @@ -0,0 +1,215 @@ +isArray()) { + return 'array'; + } elseif ($this->isCallable()) { + return 'callable'; + } elseif ($className = $this->getClassName()) { + return $className; + } elseif ($annotations = $this->getDeclaringFunction()->getAnnotation('param')) { + if (!empty($annotations[$this->getPosition()])) { + list($types) = preg_split('~\s+|$~', $annotations[$this->getPosition()], 2); + if (!empty($types) && '$' !== $types[0]) { + return $types; + } + } + } + + return 'mixed'; + } + + /** + * Returns the part of the source code defining the parameter default value. + * + * @return string + */ + public function getDefaultValueDefinition() + { + return $this->reflection->getDefaultValueDefinition(); + } + + /** + * Retutns if a default value for the parameter is available. + * + * @return boolean + */ + public function isDefaultValueAvailable() + { + return $this->reflection->isDefaultValueAvailable(); + } + + /** + * Returns the position within all parameters. + * + * @return integer + */ + public function getPosition() + { + return $this->reflection->position; + } + + /** + * Returns if the parameter expects an array. + * + * @return boolean + */ + public function isArray() + { + return $this->reflection->isArray(); + } + + /** + * Returns if the parameter expects a callback. + * + * @return boolean + */ + public function isCallable() + { + return $this->reflection->isCallable(); + } + + /** + * Returns reflection of the required class of the parameter. + * + * @return \ApiGen\ReflectionClass|null + */ + public function getClass() + { + $className = $this->reflection->getClassName(); + return null === $className ? null : self::$parsedClasses[$className]; + } + + /** + * Returns the required class name of the value. + * + * @return string|null + */ + public function getClassName() + { + return $this->reflection->getClassName(); + } + + /** + * Returns if the the parameter allows NULL. + * + * @return boolean + */ + public function allowsNull() + { + return $this->reflection->allowsNull(); + } + + /** + * Returns if the parameter is optional. + * + * @return boolean + */ + public function isOptional() + { + return $this->reflection->isOptional(); + } + + /** + * Returns if the parameter value is passed by reference. + * + * @return boolean + */ + public function isPassedByReference() + { + return $this->reflection->isPassedByReference(); + } + + /** + * Returns if the paramter value can be passed by value. + * + * @return boolean + */ + public function canBePassedByValue() + { + return $this->reflection->canBePassedByValue(); + } + + /** + * Returns the declaring function. + * + * @return \ApiGen\ReflectionFunctionBase + */ + public function getDeclaringFunction() + { + $functionName = $this->reflection->getDeclaringFunctionName(); + + if ($className = $this->reflection->getDeclaringClassName()) { + return self::$parsedClasses[$className]->getMethod($functionName); + } else { + return self::$parsedFunctions[$functionName]; + } + } + + /** + * Returns the declaring function name. + * + * @return string + */ + public function getDeclaringFunctionName() + { + return $this->reflection->getDeclaringFunctionName(); + } + + /** + * Returns the function/method declaring class. + * + * @return \ApiGen\ReflectionClass|null + */ + public function getDeclaringClass() + { + $className = $this->reflection->getDeclaringClassName(); + return null === $className ? null : self::$parsedClasses[$className]; + } + + /** + * Returns the declaring class name. + * + * @return string|null + */ + public function getDeclaringClassName() + { + return $this->reflection->getDeclaringClassName(); + } + + /** + * If the parameter can be used unlimited. + * + * @return boolean + */ + public function isUnlimited() + { + return false; + } +} diff --git a/apigen/ApiGen/ReflectionParameterMagic.php b/apigen/ApiGen/ReflectionParameterMagic.php new file mode 100644 index 00000000000..287696b1547 --- /dev/null +++ b/apigen/ApiGen/ReflectionParameterMagic.php @@ -0,0 +1,479 @@ +reflectionType = get_class($this); + if (!isset(self::$reflectionMethods[$this->reflectionType])) { + self::$reflectionMethods[$this->reflectionType] = array_flip(get_class_methods($this)); + } + } + + /** + * Sets parameter name. + * + * @param string $name + * @return \ApiGen\ReflectionParameterMagic + */ + public function setName($name) + { + $this->name = (string) $name; + return $this; + } + + /** + * Sets type hint. + * + * @param string $typeHint + * @return \ApiGen\ReflectionParameterMagic + */ + public function setTypeHint($typeHint) + { + $this->typeHint = (string) $typeHint; + return $this; + } + + /** + * Sets position of the parameter in the function/method. + * + * @param integer $position + * @return \ApiGen\ReflectionParameterMagic + */ + public function setPosition($position) + { + $this->position = (int) $position; + return $this; + } + + /** + * Sets the part of the source code defining the parameter default value. + * + * @param string|null $defaultValueDefinition + * @return \ApiGen\ReflectionParameterMagic + */ + public function setDefaultValueDefinition($defaultValueDefinition) + { + $this->defaultValueDefinition = $defaultValueDefinition; + return $this; + } + + /** + * Sets if the parameter can be used unlimited times. + * + * @param boolean $unlimited + * @return \ApiGen\ReflectionParameterMagic + */ + public function setUnlimited($unlimited) + { + $this->unlimited = (bool) $unlimited; + return $this; + } + + /** + * Sets if the parameter value is passed by reference. + * + * @param boolean $passedByReference + * @return \ApiGen\ReflectionParameterMagic + */ + public function setPassedByReference($passedByReference) + { + $this->passedByReference = (bool) $passedByReference; + return $this; + } + + /** + * Sets declaring function. + * + * @param \ApiGen\ReflectionFunctionBase $declaringFunction + * @return \ApiGen\ReflectionParameterMagic + */ + public function setDeclaringFunction(ReflectionFunctionBase $declaringFunction) + { + $this->declaringFunction = $declaringFunction; + return $this; + } + + /** + * Returns the reflection broker used by this reflection object. + * + * @return \TokenReflection\Broker + */ + public function getBroker() + { + return $this->declaringFunction->getBroker(); + } + + /** + * Returns the name. + * + * @return string + */ + public function getName() + { + return $this->name; + } + + /** + * Returns the type hint. + * + * @return string + */ + public function getTypeHint() + { + return $this->typeHint; + } + + /** + * Returns the file name the parameter is defined in. + * + * @return string + */ + public function getFileName() + { + return $this->declaringFunction->getFileName(); + } + + /** + * Returns if the reflection object is internal. + * + * @return boolean + */ + public function isInternal() + { + return false; + } + + /** + * Returns if the reflection object is user defined. + * + * @return boolean + */ + public function isUserDefined() + { + return true; + } + + /** + * Returns if the current reflection comes from a tokenized source. + * + * @return boolean + */ + public function isTokenized() + { + return true; + } + + /** + * Returns an element pretty (docblock compatible) name. + * + * @return string + */ + public function getPrettyName() + { + return str_replace('()', '($' . $this->name . ')', $this->declaringFunction->getPrettyName()); + } + + /** + * Returns the declaring class. + * + * @return \Apigen\ReflectionClass|null + */ + public function getDeclaringClass() + { + return $this->declaringFunction->getDeclaringClass(); + } + + /** + * Returns the declaring class name. + * + * @return string|null + */ + public function getDeclaringClassName() + { + return $this->declaringFunction->getDeclaringClassName(); + } + + /** + * Returns the declaring function. + * + * @return \ApiGen\ReflectionFunctionBase + */ + public function getDeclaringFunction() + { + return $this->declaringFunction; + } + + /** + * Returns the declaring function name. + * + * @return string + */ + public function getDeclaringFunctionName() + { + return $this->declaringFunction->getName(); + } + + /** + * Returns the definition start line number in the file. + * + * @return integer + */ + public function getStartLine() + { + return $this->declaringFunction->getStartLine(); + } + + /** + * Returns the definition end line number in the file. + * + * @return integer + */ + public function getEndLine() + { + return $this->declaringFunction->getEndLine(); + } + + /** + * Returns the appropriate docblock definition. + * + * @return string|boolean + */ + public function getDocComment() + { + return false; + } + + /** + * Returns the part of the source code defining the parameter default value. + * + * @return string + */ + public function getDefaultValueDefinition() + { + return $this->defaultValueDefinition; + } + + /** + * Returns if a default value for the parameter is available. + * + * @return boolean + */ + public function isDefaultValueAvailable() + { + return null !== $this->defaultValueDefinition; + } + + /** + * Returns the position within all parameters. + * + * @return integer + */ + public function getPosition() + { + return $this->position; + } + + /** + * Returns if the parameter expects an array. + * + * @return boolean + */ + public function isArray() + { + return TokenReflection\ReflectionParameter::ARRAY_TYPE_HINT === $this->typeHint; + } + + public function isCallable() + { + return TokenReflection\ReflectionParameter::CALLABLE_TYPE_HINT === $this->typeHint; + } + + /** + * Returns reflection of the required class of the value. + * + * @return \ApiGen\ReflectionClass|null + */ + public function getClass() + { + $className = $this->getClassName(); + return null === $className ? null : self::$parsedClasses[$className]; + } + + /** + * Returns the required class name of the value. + * + * @return string|null + */ + public function getClassName() + { + if ($this->isArray() || $this->isCallable()) { + return null; + } + + if (isset(self::$parsedClasses[$this->typeHint])) { + return $typeHint; + } + + return null; + } + + /** + * Returns if the the parameter allows NULL. + * + * @return boolean + */ + public function allowsNull() + { + if ($this->isArray() || $this->isCallable()) { + return 'null' === strtolower($this->defaultValueDefinition); + } + + return !empty($this->defaultValueDefinition); + } + + /** + * Returns if the parameter is optional. + * + * @return boolean + */ + public function isOptional() + { + return $this->isDefaultValueAvailable(); + } + + /** + * Returns if the parameter value is passed by reference. + * + * @return boolean + */ + public function isPassedByReference() + { + return $this->passedByReference; + } + + /** + * Returns if the parameter value can be passed by value. + * + * @return boolean + */ + public function canBePassedByValue() + { + return false; + } + + /** + * Returns if the parameter can be used unlimited times. + * + * @return boolean + */ + public function isUnlimited() + { + return $this->unlimited; + } + + /** + * Retrieves a property or method value. + * + * @param string $name Property name + * @return mixed + */ + public function __get($name) + { + $key = ucfirst($name); + if (isset(self::$reflectionMethods[$this->reflectionType]['get' . $key])) { + return $this->{'get' . $key}(); + } + + if (isset(self::$reflectionMethods[$this->reflectionType]['is' . $key])) { + return $this->{'is' . $key}(); + } + + return null; + } + + /** + * Checks if the given property exists. + * + * @param mixed $name Property name + * @return boolean + */ + public function __isset($name) + { + $key = ucfirst($name); + return isset(self::$reflectionMethods[$this->reflectionType]['get' . $key]) || isset(self::$reflectionMethods[$this->reflectionType]['is' . $key]); + } +} diff --git a/apigen/ApiGen/ReflectionProperty.php b/apigen/ApiGen/ReflectionProperty.php new file mode 100644 index 00000000000..414cb1c388b --- /dev/null +++ b/apigen/ApiGen/ReflectionProperty.php @@ -0,0 +1,214 @@ +getAnnotation('var')) { + list($types) = preg_split('~\s+|$~', $annotations[0], 2); + if (!empty($types) && '$' !== $types[0]) { + return $types; + } + } + + try { + $type = gettype($this->getDefaultValue()); + if ('null' !== strtolower($type)) { + return $type; + } + } catch (\Exception $e) { + // Nothing + } + + return 'mixed'; + } + + /** + * Returns the property declaring class. + * + * @return \ApiGen\ReflectionClass|null + */ + public function getDeclaringClass() + { + $className = $this->reflection->getDeclaringClassName(); + return null === $className ? null : self::$parsedClasses[$className]; + } + + /** + * Returns the name of the declaring class. + * + * @return string + */ + public function getDeclaringClassName() + { + return $this->reflection->getDeclaringClassName(); + } + + /** + * Returns the property default value. + * + * @return mixed + */ + public function getDefaultValue() + { + return $this->reflection->getDefaultValue(); + } + + /** + * Returns the part of the source code defining the property default value. + * + * @return string + */ + public function getDefaultValueDefinition() + { + return $this->reflection->getDefaultValueDefinition(); + } + + /** + * Returns if the property was created at compile time. + * + * @return boolean + */ + public function isDefault() + { + return $this->reflection->isDefault(); + } + + /** + * Returns property modifiers. + * + * @return integer + */ + public function getModifiers() + { + return $this->reflection->getModifiers(); + } + + /** + * Returns if the property is private. + * + * @return boolean + */ + public function isPrivate() + { + return $this->reflection->isPrivate(); + } + + /** + * Returns if the property is protected. + * + * @return boolean + */ + public function isProtected() + { + return $this->reflection->isProtected(); + } + + /** + * Returns if the property is public. + * + * @return boolean + */ + public function isPublic() + { + return $this->reflection->isPublic(); + } + + /** + * Returns if the poperty is static. + * + * @return boolean + */ + public function isStatic() + { + return $this->reflection->isStatic(); + } + + /** + * Returns the property declaring trait. + * + * @return \ApiGen\ReflectionClass|null + */ + public function getDeclaringTrait() + { + $traitName = $this->reflection->getDeclaringTraitName(); + return null === $traitName ? null : self::$parsedClasses[$traitName]; + } + + /** + * Returns the declaring trait name. + * + * @return string|null + */ + public function getDeclaringTraitName() + { + return $this->reflection->getDeclaringTraitName(); + } + + /** + * Returns if the property is valid. + * + * @return boolean + */ + public function isValid() + { + if ($class = $this->getDeclaringClass()) { + return $class->isValid(); + } + + return true; + } +} diff --git a/apigen/ApiGen/ReflectionPropertyMagic.php b/apigen/ApiGen/ReflectionPropertyMagic.php new file mode 100644 index 00000000000..98e7e2477ef --- /dev/null +++ b/apigen/ApiGen/ReflectionPropertyMagic.php @@ -0,0 +1,651 @@ +reflectionType = get_class($this); + if (!isset(self::$reflectionMethods[$this->reflectionType])) { + self::$reflectionMethods[$this->reflectionType] = array_flip(get_class_methods($this)); + } + } + + /** + * Sets property name. + * + * @param string $name + * @return \Apigen\ReflectionPropertyMagic + */ + public function setName($name) + { + $this->name = (string) $name; + return $this; + + } + + /** + * Sets type hint. + * + * @param string $typeHint + * @return \ApiGen\ReflectionParameterUnlimited + */ + public function setTypeHint($typeHint) + { + $this->typeHint = (string) $typeHint; + return $this; + } + + /** + * Sets short description. + * + * @param string $shortDescription + * @return \Apigen\ReflectionPropertyMagic + */ + public function setShortDescription($shortDescription) + { + $this->shortDescription = (string) $shortDescription; + return $this; + } + + /** + * Sets start line. + * + * @param integer $startLine + * @return \Apigen\ReflectionPropertyMagic + */ + public function setStartLine($startLine) + { + $this->startLine = (int) $startLine; + return $this; + } + + /** + * Sets end line. + * + * @param integer $endLine + * @return \Apigen\ReflectionPropertyMagic + */ + public function setEndLine($endLine) + { + $this->endLine = (int) $endLine; + return $this; + } + + /** + * Sets if the property is read-only. + * + * @param boolean $readOnly + * @return \Apigen\ReflectionPropertyMagic + */ + public function setReadOnly($readOnly) + { + $this->readOnly = (bool) $readOnly; + return $this; + } + + /** + * Sets if the property is write only. + * + * @param boolean $writeOnly + * @return \Apigen\ReflectionPropertyMagic + */ + public function setWriteOnly($writeOnly) + { + $this->writeOnly = (bool) $writeOnly; + return $this; + } + + /** + * Sets declaring class. + * + * @param \ApiGen\ReflectionClass $declaringClass + * @return \ApiGen\ReflectionPropertyMagic + */ + public function setDeclaringClass(ReflectionClass $declaringClass) + { + $this->declaringClass = $declaringClass; + return $this; + } + + /** + * Returns the reflection broker used by this reflection object. + * + * @return \TokenReflection\Broker + */ + public function getBroker() + { + return $this->declaringClass->getBroker(); + } + + /** + * Returns the start position in the file token stream. + * + * @return integer + */ + public function getStartPosition() + { + return $this->declaringClass->getStartPosition(); + } + + /** + * Returns the end position in the file token stream. + * + * @return integer + */ + public function getEndPosition() + { + return $this->declaringClass->getEndPosition(); + } + + /** + * Returns the name. + * + * @return string + */ + public function getName() + { + return $this->name; + } + + /** + * Returns the type hint. + * + * @return string + */ + public function getTypeHint() + { + return $this->typeHint; + } + + /** + * Returns the short description. + * + * @return string + */ + public function getShortDescription() + { + return $this->shortDescription; + } + + /** + * Returns the long description. + * + * @return string + */ + public function getLongDescription() + { + return $this->shortDescription; + } + + /** + * Returns the definition start line number in the file. + * + * @return integer + */ + public function getStartLine() + { + return $this->startLine; + } + + /** + * Returns the definition end line number in the file. + * + * @return integer + */ + public function getEndLine() + { + return $this->endLine; + } + + /** + * Returns if the property is read-only. + * + * @return boolean + */ + public function isReadOnly() + { + return $this->readOnly; + } + + /** + * Returns if the property is write-only. + * + * @return boolean + */ + public function isWriteOnly() + { + return $this->writeOnly; + } + + /** + * Returns if the property is magic. + * + * @return boolean + */ + public function isMagic() + { + return true; + } + + /** + * Returns the PHP extension reflection. + * + * @return \ApiGen\ReflectionExtension|null + */ + public function getExtension() + { + return null; + } + + /** + * Returns the PHP extension name. + * + * @return boolean + */ + public function getExtensionName() + { + return false; + } + + /** + * Returns if the property should be documented. + * + * @return boolean + */ + public function isDocumented() + { + if (null === $this->isDocumented) { + $this->isDocumented = self::$config->deprecated || !$this->isDeprecated(); + } + + return $this->isDocumented; + } + + /** + * Returns if the property is deprecated. + * + * @return boolean + */ + public function isDeprecated() + { + return $this->declaringClass->isDeprecated(); + } + + /** + * Returns property package name (including subpackage name). + * + * @return string + */ + public function getPackageName() + { + return $this->declaringClass->getPackageName(); + } + + /** + * Returns property namespace name. + * + * @return string + */ + public function getNamespaceName() + { + return $this->declaringClass->getNamespaceName(); + } + + /** + * Returns property annotations. + * + * @return array + */ + public function getAnnotations() + { + if (null === $this->annotations) { + $this->annotations = array(); + } + return $this->annotations; + } + + /** + * Returns the property declaring class. + * + * @return \ApiGen\ReflectionClass|null + */ + public function getDeclaringClass() + { + return $this->declaringClass; + } + + /** + * Returns the name of the declaring class. + * + * @return string + */ + public function getDeclaringClassName() + { + return $this->declaringClass->getName(); + } + + /** + * Returns the property default value. + * + * @return mixed + */ + public function getDefaultValue() + { + return null; + } + + /** + * Returns the part of the source code defining the property default value. + * + * @return string + */ + public function getDefaultValueDefinition() + { + return ''; + } + + /** + * Returns if the property was created at compile time. + * + * @return boolean + */ + public function isDefault() + { + return false; + } + + /** + * Returns property modifiers. + * + * @return integer + */ + public function getModifiers() + { + return InternalReflectionProperty::IS_PUBLIC; + } + + /** + * Returns if the property is private. + * + * @return boolean + */ + public function isPrivate() + { + return false; + } + + /** + * Returns if the property is protected. + * + * @return boolean + */ + public function isProtected() + { + return false; + } + + /** + * Returns if the property is public. + * + * @return boolean + */ + public function isPublic() + { + return true; + } + + /** + * Returns if the poperty is static. + * + * @return boolean + */ + public function isStatic() + { + return false; + } + + /** + * Returns if the property is internal. + * + * @return boolean + */ + public function isInternal() + { + return false; + } + + /** + * Returns the property declaring trait. + * + * @return \ApiGen\ReflectionClass|null + */ + public function getDeclaringTrait() + { + return $this->declaringClass->isTrait() ? $this->declaringClass : null; + } + + /** + * Returns the declaring trait name. + * + * @return string|null + */ + public function getDeclaringTraitName() + { + if ($declaringTrait = $this->getDeclaringTrait()) { + return $declaringTrait->getName(); + } + return null; + } + + /** + * Returns imported namespaces and aliases from the declaring namespace. + * + * @return array + */ + public function getNamespaceAliases() + { + return $this->declaringClass->getNamespaceAliases(); + } + + /** + * Returns an property pretty (docblock compatible) name. + * + * @return string + */ + public function getPrettyName() + { + return sprintf('%s::$%s', $this->declaringClass->getName(), $this->name); + } + + /** + * Returns the file name the property is defined in. + * + * @return string + */ + public function getFileName() + { + return $this->declaringClass->getFileName(); + } + + /** + * Returns if the property is user defined. + + * @return boolean + */ + public function isUserDefined() + { + return true; + } + + /** + * Returns if the property comes from a tokenized source. + * + * @return boolean + */ + public function isTokenized() + { + return true; + } + + /** + * Returns the appropriate docblock definition. + * + * @return string|boolean + */ + public function getDocComment() + { + $docComment = "/**\n"; + + if (!empty($this->shortDescription)) { + $docComment .= $this->shortDescription . "\n\n"; + } + + if ($annotations = $this->getAnnotation('var')) { + $docComment .= sprintf("@var %s\n", $annotations[0]); + } + + $docComment .= "*/\n"; + + return $docComment; + } + + /** + * Checks if there is a particular annotation. + * + * @param string $name Annotation name + * @return boolean + */ + public function hasAnnotation($name) + { + $annotations = $this->getAnnotations(); + return array_key_exists($name, $annotations); + } + + /** + * Returns a particular annotation value. + * + * @param string $name Annotation name + * @return string|array|null + */ + public function getAnnotation($name) + { + $annotations = $this->getAnnotations(); + if (array_key_exists($name, $annotations)) { + return $annotations[$name]; + } + return null; + } + + /** + * Retrieves a property or method value. + * + * @param string $name Property name + * @return mixed + */ + public function __get($name) + { + $key = ucfirst($name); + if (isset(self::$reflectionMethods[$this->reflectionType]['get' . $key])) { + return $this->{'get' . $key}(); + } + + if (isset(self::$reflectionMethods[$this->reflectionType]['is' . $key])) { + return $this->{'is' . $key}(); + } + + return null; + } + + /** + * Checks if the given property exists. + * + * @param mixed $name Property name + * @return boolean + */ + public function __isset($name) + { + $key = ucfirst($name); + return isset(self::$reflectionMethods[$this->reflectionType]['get' . $key]) || isset(self::$reflectionMethods[$this->reflectionType]['is' . $key]); + } +} diff --git a/apigen/ApiGen/SourceFilesFilterIterator.php b/apigen/ApiGen/SourceFilesFilterIterator.php new file mode 100644 index 00000000000..dc841088a8b --- /dev/null +++ b/apigen/ApiGen/SourceFilesFilterIterator.php @@ -0,0 +1,75 @@ +excludeMasks = $excludeMasks; + } + + /** + * Returns if the current file/directory should be processed. + * + * @return boolean + */ + public function accept() { + /** @var \SplFileInfo */ + $current = $this->current(); + + foreach ($this->excludeMasks as $mask) { + if (fnmatch($mask, $current->getPathName(), FNM_NOESCAPE)) { + return false; + } + } + + if (!is_readable($current->getPathname())) { + throw new \InvalidArgumentException(sprintf('File/directory "%s" is not readable.', $current->getPathname())); + } + + return true; + } + + /** + * Returns the iterator of the current element's children. + * + * @return \ApiGen\SourceFilesFilterIterator + */ + public function getChildren() + { + return new static($this->getInnerIterator()->getChildren(), $this->excludeMasks); + } +} diff --git a/apigen/ApiGen/Template.php b/apigen/ApiGen/Template.php new file mode 100644 index 00000000000..ea97892e66c --- /dev/null +++ b/apigen/ApiGen/Template.php @@ -0,0 +1,809 @@ +generator = $generator; + $this->config = $generator->getConfig(); + + $that = $this; + + // Output in HTML5 + Nette\Utils\Html::$xhtml = false; + + // FSHL + $fshl = new FSHL\Highlighter(new FSHL\Output\Html()); + $fshl->setLexer(new FSHL\Lexer\Php()); + + // Texy + $this->texy = new \Texy(); + $this->texy->allowedTags = array_flip($this->config->allowedHtml); + $this->texy->allowed['list/definition'] = false; + $this->texy->allowed['phrase/em-alt'] = false; + $this->texy->allowed['longwords'] = false; + $this->texy->allowed['typography'] = false; + $this->texy->linkModule->shorten = false; + // Highlighting ,
+		$this->texy->addHandler('beforeParse', function($texy, &$text, $singleLine) {
+			$text = preg_replace('~(.+?)~', '#code#\\1#/code#', $text);
+		});
+		$this->texy->registerLinePattern(
+			function($parser, $matches, $name) use ($fshl) {
+				return \TexyHtml::el('code', $fshl->highlight($matches[1]));
+			},
+			'~#code#(.+?)#/code#~',
+			'codeInlineSyntax'
+		);
+		$this->texy->registerBlockPattern(
+			function($parser, $matches, $name) use ($fshl) {
+				if ('code' === $matches[1]) {
+					$lines = array_filter(explode("\n", $matches[2]));
+					if (!empty($lines)) {
+						$firstLine = array_shift($lines);
+
+						$indent = '';
+						$li = 0;
+
+						while (isset($firstLine[$li]) && preg_match('~\s~', $firstLine[$li])) {
+							foreach ($lines as $line) {
+								if (!isset($line[$li]) || $firstLine[$li] !== $line[$li]) {
+									break 2;
+								}
+							}
+
+							$indent .= $firstLine[$li++];
+						}
+
+						if (!empty($indent)) {
+							$matches[2] = str_replace(
+								"\n" . $indent,
+								"\n",
+								0 === strpos($matches[2], $indent) ? substr($matches[2], $li) : $matches[2]
+							);
+						}
+					}
+
+					$content = $fshl->highlight($matches[2]);
+				} else {
+					$content = htmlspecialchars($matches[2]);
+				}
+
+				$content = $parser->getTexy()->protect($content, \Texy::CONTENT_BLOCK);
+				return \TexyHtml::el('pre', $content);
+			},
+			'~<(code|pre)>(.+?)~s',
+			'codeBlockSyntax'
+		);
+
+		// Common operations
+		$this->registerHelperLoader('Nette\Templating\Helpers::loader');
+
+		// PHP source highlight
+		$this->registerHelper('highlightPHP', function($source, $context) use ($that, $fshl) {
+			return $that->resolveLink($that->getTypeName($source), $context) ?: $fshl->highlight((string) $source);
+		});
+		$this->registerHelper('highlightValue', function($definition, $context) use ($that) {
+			return $that->highlightPHP(preg_replace('~^(?:[ ]{4}|\t)~m', '', $definition), $context);
+		});
+
+		// Urls
+		$this->registerHelper('packageUrl', new Nette\Callback($this, 'getPackageUrl'));
+		$this->registerHelper('namespaceUrl', new Nette\Callback($this, 'getNamespaceUrl'));
+		$this->registerHelper('groupUrl', new Nette\Callback($this, 'getGroupUrl'));
+		$this->registerHelper('classUrl', new Nette\Callback($this, 'getClassUrl'));
+		$this->registerHelper('methodUrl', new Nette\Callback($this, 'getMethodUrl'));
+		$this->registerHelper('propertyUrl', new Nette\Callback($this, 'getPropertyUrl'));
+		$this->registerHelper('constantUrl', new Nette\Callback($this, 'getConstantUrl'));
+		$this->registerHelper('functionUrl', new Nette\Callback($this, 'getFunctionUrl'));
+		$this->registerHelper('elementUrl', new Nette\Callback($this, 'getElementUrl'));
+		$this->registerHelper('sourceUrl', new Nette\Callback($this, 'getSourceUrl'));
+		$this->registerHelper('manualUrl', new Nette\Callback($this, 'getManualUrl'));
+
+		// Packages & namespaces
+		$this->registerHelper('packageLinks', new Nette\Callback($this, 'getPackageLinks'));
+		$this->registerHelper('namespaceLinks', new Nette\Callback($this, 'getNamespaceLinks'));
+		$this->registerHelper('subgroupName', function($groupName) {
+			if ($pos = strrpos($groupName, '\\')) {
+				return substr($groupName, $pos + 1);
+			}
+			return $groupName;
+		});
+
+		// Types
+		$this->registerHelper('typeLinks', new Nette\Callback($this, 'getTypeLinks'));
+
+		// Docblock descriptions
+		$this->registerHelper('description', function($annotation, $context) use ($that) {
+			$description = trim(strpbrk($annotation, "\n\r\t $"));
+
+			if ($context instanceof ReflectionParameter) {
+				$description = preg_replace('~^(\\$' . $context->getName() . '(?:,\\.{3})?)(\s+|$)~i', '\\2', $description, 1);
+				$context = $context->getDeclaringFunction();
+			}
+			return $that->doc($description, $context);
+		});
+		$this->registerHelper('shortDescription', function($element, $block = false) use ($that) {
+			return $that->doc($element->getShortDescription(), $element, $block);
+		});
+		$this->registerHelper('longDescription', function($element) use ($that) {
+			$long = $element->getLongDescription();
+
+			// Merge lines
+			$long = preg_replace_callback('~(?:<(code|pre)>.+?)|([^<]*)~s', function($matches) {
+				return !empty($matches[2])
+					? preg_replace('~\n(?:\t|[ ])+~', ' ', $matches[2])
+					: $matches[0];
+			}, $long);
+
+			return $that->doc($long, $element, true);
+		});
+
+		// Individual annotations processing
+		$this->registerHelper('annotation', function($value, $name, $context) use ($that, $generator) {
+			switch ($name) {
+				case 'param':
+				case 'return':
+				case 'throws':
+					$description = $that->description($value, $context);
+					return sprintf('%s%s', $that->getTypeLinks($value, $context), $description ? '
' . $description : ''); + case 'license': + list($url, $description) = $that->split($value); + return $that->link($url, $description ?: $url); + case 'link': + list($url, $description) = $that->split($value); + if (Nette\Utils\Validators::isUrl($url)) { + return $that->link($url, $description ?: $url); + } + break; + case 'see': + $doc = array(); + foreach (preg_split('~\\s*,\\s*~', $value) as $link) { + if (null !== $generator->resolveElement($link, $context)) { + $doc[] = sprintf('%s', $that->getTypeLinks($link, $context)); + } else { + $doc[] = $that->doc($link, $context); + } + } + return implode(', ', $doc); + case 'uses': + case 'usedby': + list($link, $description) = $that->split($value); + $separator = $context instanceof ReflectionClass || !$description ? ' ' : '
'; + if (null !== $generator->resolveElement($link, $context)) { + return sprintf('%s%s%s', $that->getTypeLinks($link, $context), $separator, $description); + } + break; + default: + break; + } + + // Default + return $that->doc($value, $context); + }); + + $todo = $this->config->todo; + $internal = $this->config->internal; + $this->registerHelper('annotationFilter', function(array $annotations, array $filter = array()) use ($todo, $internal) { + // Filtered, unsupported or deprecated annotations + static $filtered = array( + 'package', 'subpackage', 'property', 'property-read', 'property-write', 'method', 'abstract', + 'access', 'final', 'filesource', 'global', 'name', 'static', 'staticvar' + ); + foreach ($filtered as $annotation) { + unset($annotations[$annotation]); + } + + // Custom filter + foreach ($filter as $annotation) { + unset($annotations[$annotation]); + } + + // Show/hide internal + if (!$internal) { + unset($annotations['internal']); + } + + // Show/hide tasks + if (!$todo) { + unset($annotations['todo']); + } + + return $annotations; + }); + + $this->registerHelper('annotationSort', function(array $annotations) { + uksort($annotations, function($one, $two) { + static $order = array( + 'deprecated' => 0, 'category' => 1, 'copyright' => 2, 'license' => 3, 'author' => 4, 'version' => 5, + 'since' => 6, 'see' => 7, 'uses' => 8, 'usedby' => 9, 'link' => 10, 'internal' => 11, + 'example' => 12, 'tutorial' => 13, 'todo' => 14 + ); + + if (isset($order[$one], $order[$two])) { + return $order[$one] - $order[$two]; + } elseif (isset($order[$one])) { + return -1; + } elseif (isset($order[$two])) { + return 1; + } else { + return strcasecmp($one, $two); + } + }); + return $annotations; + }); + + $this->registerHelper('annotationBeautify', function($annotation) { + static $names = array( + 'usedby' => 'Used by' + ); + + if (isset($names[$annotation])) { + return $names[$annotation]; + } + + return Nette\Utils\Strings::firstUpper($annotation); + }); + + // Static files versioning + $destination = $this->config->destination; + $this->registerHelper('staticFile', function($name) use ($destination) { + static $versions = array(); + + $filename = $destination . DIRECTORY_SEPARATOR . $name; + if (!isset($versions[$filename]) && is_file($filename)) { + $versions[$filename] = sprintf('%u', crc32(file_get_contents($filename))); + } + if (isset($versions[$filename])) { + $name .= '?' . $versions[$filename]; + } + return $name; + }); + + // Source anchors + $this->registerHelper('sourceAnchors', function($source) { + // Classes, interfaces, traits and exceptions + $source = preg_replace_callback('~((?:class|interface|trait)\\s+)(\\w+)~i', function($matches) { + $link = sprintf('%1$s', $matches[2]); + return $matches[1] . $link; + }, $source); + + // Methods and functions + $source = preg_replace_callback('~(function\\s+)(\\w+)~i', function($matches) { + $link = sprintf('%1$s', $matches[2]); + return $matches[1] . $link; + }, $source); + + // Constants + $source = preg_replace_callback('~(const)(.*?)(;)~is', function($matches) { + $links = preg_replace_callback('~(\\s|,)([A-Z_]+)(\\s+=)~', function($matches) { + return $matches[1] . sprintf('%1$s', $matches[2]) . $matches[3]; + }, $matches[2]); + return $matches[1] . $links . $matches[3]; + }, $source); + + // Properties + $source = preg_replace_callback('~((?:private|protected|public|var|static)\\s+)(.*?)(;)~is', function($matches) { + $links = preg_replace_callback('~()(\\$\\w+)~i', function($matches) { + return $matches[1] . sprintf('%1$s', $matches[2]); + }, $matches[2]); + return $matches[1] . $links . $matches[3]; + }, $source); + + return $source; + }); + + $this->registerHelper('urlize', array($this, 'urlize')); + + $this->registerHelper('relativePath', array($generator, 'getRelativePath')); + $this->registerHelper('resolveElement', array($generator, 'resolveElement')); + $this->registerHelper('getClass', array($generator, 'getClass')); + } + + /** + * Returns unified type value definition (class name or member data type). + * + * @param string $name + * @param boolean $trimNamespaceSeparator + * @return string + */ + public function getTypeName($name, $trimNamespaceSeparator = true) + { + static $names = array( + 'int' => 'integer', + 'bool' => 'boolean', + 'double' => 'float', + 'void' => '', + 'FALSE' => 'false', + 'TRUE' => 'true', + 'NULL' => 'null', + 'callback' => 'callable' + ); + + // Simple type + if (isset($names[$name])) { + return $names[$name]; + } + + // Class, constant or function + return $trimNamespaceSeparator ? ltrim($name, '\\') : $name; + } + + /** + * Returns links for types. + * + * @param string $annotation + * @param \ApiGen\ReflectionElement $context + * @return string + */ + public function getTypeLinks($annotation, ReflectionElement $context) + { + $links = array(); + + list($types) = $this->split($annotation); + if (!empty($types) && '$' === $types{0}) { + $types = null; + } + + if (empty($types)) { + $types = 'mixed'; + } + + foreach (explode('|', $types) as $type) { + $type = $this->getTypeName($type, false); + $links[] = $this->resolveLink($type, $context) ?: $this->escapeHtml(ltrim($type, '\\')); + } + + return implode('|', $links); + } + + /** + * Returns links for package/namespace and its parent packages. + * + * @param string $package + * @param boolean $last + * @return string + */ + public function getPackageLinks($package, $last = true) + { + if (empty($this->packages)) { + return $package; + } + + $links = array(); + + $parent = ''; + foreach (explode('\\', $package) as $part) { + $parent = ltrim($parent . '\\' . $part, '\\'); + $links[] = $last || $parent !== $package + ? $this->link($this->getPackageUrl($parent), $part) + : $this->escapeHtml($part); + } + + return implode('\\', $links); + } + + /** + * Returns links for namespace and its parent namespaces. + * + * @param string $namespace + * @param boolean $last + * @return string + */ + public function getNamespaceLinks($namespace, $last = true) + { + if (empty($this->namespaces)) { + return $namespace; + } + + $links = array(); + + $parent = ''; + foreach (explode('\\', $namespace) as $part) { + $parent = ltrim($parent . '\\' . $part, '\\'); + $links[] = $last || $parent !== $namespace + ? $this->link($this->getNamespaceUrl($parent), $part) + : $this->escapeHtml($part); + } + + return implode('\\', $links); + } + + /** + * Returns a link to a namespace summary file. + * + * @param string $namespaceName Namespace name + * @return string + */ + public function getNamespaceUrl($namespaceName) + { + return sprintf($this->config->template['templates']['main']['namespace']['filename'], $this->urlize($namespaceName)); + } + + /** + * Returns a link to a package summary file. + * + * @param string $packageName Package name + * @return string + */ + public function getPackageUrl($packageName) + { + return sprintf($this->config->template['templates']['main']['package']['filename'], $this->urlize($packageName)); + } + + /** + * Returns a link to a group summary file. + * + * @param string $groupName Group name + * @return string + */ + public function getGroupUrl($groupName) + { + if (!empty($this->packages)) { + return $this->getPackageUrl($groupName); + } + + return $this->getNamespaceUrl($groupName); + } + + /** + * Returns a link to class summary file. + * + * @param string|\ApiGen\ReflectionClass $class Class reflection or name + * @return string + */ + public function getClassUrl($class) + { + $className = $class instanceof ReflectionClass ? $class->getName() : $class; + return sprintf($this->config->template['templates']['main']['class']['filename'], $this->urlize($className)); + } + + /** + * Returns a link to method in class summary file. + * + * @param \ApiGen\ReflectionMethod $method Method reflection + * @param \ApiGen\ReflectionClass $class Method declaring class + * @return string + */ + public function getMethodUrl(ReflectionMethod $method, ReflectionClass $class = null) + { + $className = null !== $class ? $class->getName() : $method->getDeclaringClassName(); + return $this->getClassUrl($className) . '#' . ($method->isMagic() ? 'm' : '') . '_' . ($method->getOriginalName() ?: $method->getName()); + } + + /** + * Returns a link to property in class summary file. + * + * @param \ApiGen\ReflectionProperty $property Property reflection + * @param \ApiGen\ReflectionClass $class Property declaring class + * @return string + */ + public function getPropertyUrl(ReflectionProperty $property, ReflectionClass $class = null) + { + $className = null !== $class ? $class->getName() : $property->getDeclaringClassName(); + return $this->getClassUrl($className) . '#' . ($property->isMagic() ? 'm' : '') . '$' . $property->getName(); + } + + /** + * Returns a link to constant in class summary file or to constant summary file. + * + * @param \ApiGen\ReflectionConstant $constant Constant reflection + * @return string + */ + public function getConstantUrl(ReflectionConstant $constant) + { + // Class constant + if ($className = $constant->getDeclaringClassName()) { + return $this->getClassUrl($className) . '#' . $constant->getName(); + } + // Constant in namespace or global space + return sprintf($this->config->template['templates']['main']['constant']['filename'], $this->urlize($constant->getName())); + } + + /** + * Returns a link to function summary file. + * + * @param \ApiGen\ReflectionFunction $function Function reflection + * @return string + */ + public function getFunctionUrl(ReflectionFunction $function) + { + return sprintf($this->config->template['templates']['main']['function']['filename'], $this->urlize($function->getName())); + } + + /** + * Returns a link to element summary file. + * + * @param \ApiGen\ReflectionElement $element Element reflection + * @return string + */ + public function getElementUrl(ReflectionElement $element) + { + if ($element instanceof ReflectionClass) { + return $this->getClassUrl($element); + } elseif ($element instanceof ReflectionMethod) { + return $this->getMethodUrl($element); + } elseif ($element instanceof ReflectionProperty) { + return $this->getPropertyUrl($element); + } elseif ($element instanceof ReflectionConstant) { + return $this->getConstantUrl($element); + } elseif ($element instanceof ReflectionFunction) { + return $this->getFunctionUrl($element); + } + } + + /** + * Returns a link to a element source code. + * + * @param \ApiGen\ReflectionElement $element Element reflection + * @param boolean $withLine Include file line number into the link + * @return string + */ + public function getSourceUrl(ReflectionElement $element, $withLine = true) + { + if ($element instanceof ReflectionClass || $element instanceof ReflectionFunction || ($element instanceof ReflectionConstant && null === $element->getDeclaringClassName())) { + $elementName = $element->getName(); + + if ($element instanceof ReflectionClass) { + $file = 'class-'; + } elseif ($element instanceof ReflectionConstant) { + $file = 'constant-'; + } elseif ($element instanceof ReflectionFunction) { + $file = 'function-'; + } + } else { + $elementName = $element->getDeclaringClassName(); + $file = 'class-'; + } + + $file .= $this->urlize($elementName); + + $lines = null; + if ($withLine) { + $lines = $element->getStartLine() !== $element->getEndLine() ? sprintf('%s-%s', $element->getStartLine(), $element->getEndLine()) : $element->getStartLine(); + } + + return sprintf($this->config->template['templates']['main']['source']['filename'], $file) . (null !== $lines ? '#' . $lines : ''); + } + + /** + * Returns a link to a element documentation at php.net. + * + * @param \ApiGen\ReflectionBase $element Element reflection + * @return string + */ + public function getManualUrl(ReflectionBase $element) + { + static $manual = 'http://php.net/manual'; + static $reservedClasses = array('stdClass', 'Closure', 'Directory'); + + // Extension + if ($element instanceof ReflectionExtension) { + $extensionName = strtolower($element->getName()); + if ('core' === $extensionName) { + return $manual; + } + + if ('date' === $extensionName) { + $extensionName = 'datetime'; + } + + return sprintf('%s/book.%s.php', $manual, $extensionName); + } + + // Class and its members + $class = $element instanceof ReflectionClass ? $element : $element->getDeclaringClass(); + + if (in_array($class->getName(), $reservedClasses)) { + return $manual . '/reserved.classes.php'; + } + + $className = strtolower($class->getName()); + $classUrl = sprintf('%s/class.%s.php', $manual, $className); + $elementName = strtolower(strtr(ltrim($element->getName(), '_'), '_', '-')); + + if ($element instanceof ReflectionClass) { + return $classUrl; + } elseif ($element instanceof ReflectionMethod) { + return sprintf('%s/%s.%s.php', $manual, $className, $elementName); + } elseif ($element instanceof ReflectionProperty) { + return sprintf('%s#%s.props.%s', $classUrl, $className, $elementName); + } elseif ($element instanceof ReflectionConstant) { + return sprintf('%s#%s.constants.%s', $classUrl, $className, $elementName); + } + } + + /** + * Tries to parse a definition of a class/method/property/constant/function and returns the appropriate link if successful. + * + * @param string $definition Definition + * @param \ApiGen\ReflectionElement $context Link context + * @return string|null + */ + public function resolveLink($definition, ReflectionElement $context) + { + if (empty($definition)) { + return null; + } + + $suffix = ''; + if ('[]' === substr($definition, -2)) { + $definition = substr($definition, 0, -2); + $suffix = '[]'; + } + + $element = $this->generator->resolveElement($definition, $context, $expectedName); + if (null === $element) { + return $expectedName; + } + + $classes = array(); + if ($element->isDeprecated()) { + $classes[] = 'deprecated'; + } + if (!$element->isValid()) { + $classes[] = 'invalid'; + } + + if ($element instanceof ReflectionClass) { + $link = $this->link($this->getClassUrl($element), $element->getName(), true, $classes); + } elseif ($element instanceof ReflectionConstant && null === $element->getDeclaringClassName()) { + $text = $element->inNamespace() + ? $this->escapeHtml($element->getNamespaceName()) . '\\' . $this->escapeHtml($element->getShortName()) . '' + : '' . $this->escapeHtml($element->getName()) . ''; + $link = $this->link($this->getConstantUrl($element), $text, false, $classes); + } elseif ($element instanceof ReflectionFunction) { + $link = $this->link($this->getFunctionUrl($element), $element->getName() . '()', true, $classes); + } else { + $text = $this->escapeHtml($element->getDeclaringClassName()); + if ($element instanceof ReflectionProperty) { + $url = $this->propertyUrl($element); + $text .= '::$' . $this->escapeHtml($element->getName()) . ''; + } elseif ($element instanceof ReflectionMethod) { + $url = $this->methodUrl($element); + $text .= '::' . $this->escapeHtml($element->getName()) . '()'; + } elseif ($element instanceof ReflectionConstant) { + $url = $this->constantUrl($element); + $text .= '::' . $this->escapeHtml($element->getName()) . ''; + } + + $link = $this->link($url, $text, false, $classes); + } + + return sprintf('%s', $link . $suffix); + } + + /** + * Resolves links in documentation. + * + * @param string $text Processed documentation text + * @param \ApiGen\ReflectionElement $context Reflection object + * @return string + */ + private function resolveLinks($text, ReflectionElement $context) + { + $that = $this; + return preg_replace_callback('~{@(?:link|see)\\s+([^}]+)}~', function ($matches) use ($context, $that) { + // Texy already added so it has to be stripped + list($url, $description) = $that->split(strip_tags($matches[1])); + if (Nette\Utils\Validators::isUrl($url)) { + return $that->link($url, $description ?: $url); + } + return $that->resolveLink($matches[1], $context) ?: $matches[1]; + }, $text); + } + + /** + * Resolves internal annotation. + * + * @param string $text + * @return string + */ + private function resolveInternal($text) + { + $internal = $this->config->internal; + return preg_replace_callback('~\\{@(\\w+)(?:(?:\\s+((?>(?R)|[^{}]+)*)\\})|\\})~', function($matches) use ($internal) { + // Replace only internal + if ('internal' !== $matches[1]) { + return $matches[0]; + } + return $internal && isset($matches[2]) ? $matches[2] : ''; + }, $text); + } + + /** + * Formats text as documentation block or line. + * + * @param string $text Text + * @param \ApiGen\ReflectionElement $context Reflection object + * @param boolean $block Parse text as block + * @return string + */ + public function doc($text, ReflectionElement $context, $block = false) + { + return $this->resolveLinks($this->texy->process($this->resolveInternal($text), !$block), $context); + } + + /** + * Parses annotation value. + * + * @param string $value + * @return array + */ + public function split($value) + { + return preg_split('~\s+|$~', $value, 2); + } + + /** + * Returns link. + * + * @param string $url + * @param string $text + * @param boolean $escape If the text should be escaped + * @param array $classes List of classes + * @return string + */ + public function link($url, $text, $escape = true, array $classes = array()) + { + $class = !empty($classes) ? sprintf(' class="%s"', implode(' ', $classes)) : ''; + return sprintf('%s', $url, $class, $escape ? $this->escapeHtml($text) : $text); + } + + /** + * Converts string to url safe characters. + * + * @param string $string + * @return string + */ + public function urlize($string) + { + return preg_replace('~[^\w]~', '.', $string); + } +} diff --git a/apigen/ApiGen/Tree.php b/apigen/ApiGen/Tree.php new file mode 100644 index 00000000000..01f47b6b76b --- /dev/null +++ b/apigen/ApiGen/Tree.php @@ -0,0 +1,90 @@ +setPrefixPart(RecursiveTreeIterator::PREFIX_END_HAS_NEXT, self::HAS_NEXT); + $this->setPrefixPart(RecursiveTreeIterator::PREFIX_END_LAST, self::LAST); + $this->rewind(); + + $this->reflections = $reflections; + } + + /** + * Returns if the current item has a sibling on the same level. + * + * @return boolean + */ + public function hasSibling() + { + $prefix = $this->getPrefix(); + return !empty($prefix) && self::HAS_NEXT === substr($prefix, -1); + } + + /** + * Returns the current reflection. + * + * @return \ApiGen\Reflection + * @throws \UnexpectedValueException If current is not reflection array. + */ + public function current() + { + $className = $this->key(); + if (!isset($this->reflections[$className])) { + throw new RuntimeException(sprintf('Class "%s" is not in the reflection array', $className)); + } + + return $this->reflections[$className]; + } +} diff --git a/apigen/CHANGELOG.md b/apigen/CHANGELOG.md new file mode 100644 index 00000000000..a836e552830 --- /dev/null +++ b/apigen/CHANGELOG.md @@ -0,0 +1,128 @@ +## ApiGen 2.8.0 (2012-09-08) ## + +* Added support for @property and @method annotations +* Added support for variable length parameters +* Enabled selection of more rows in source code +* Templates can specify minimum and maximum required ApiGen version +* Added template for 404 page +* Improved support for malformed @param annotations +* Fixed excluding files and directories and detecting non accessible files and directories +* Fixed internal error when no timezone is specified in php.ini +* Fixed autocomplate in Opera browser +* Nette framework updated to version 2.0.5 +* TokenReflection library updated to version 1.3.1 +* FSHL library updated to version 2.1.0 + +## ApiGen 2.7.0 (2012-07-15) ## + +* Support of custom template macros and helpers +* Information about overridden methods in class method list +* Template UX fixes +* Fixed bugs causing ApiGen to crash +* TokenReflection library updated to version 1.3.0 +* Bootstrap2 based template +* Removed template with frames + +## ApiGen 2.6.1 (2012-03-27) ## + +* Fixed resolving element names in annotations +* Nette framework updated to version 2.0.1 +* TokenReflection library updated to version 1.2.2 + +## ApiGen 2.6.0 (2012-03-11) ## + +* Better error reporting, especially about duplicate classes, functions and constants +* Character set autodetection is on by default +* Changed visualization of deprecated elements +* Improved packages parsing and visualization +* Improved @license and @link visualization +* Improved `````` parsing +* Added option ```--extensions``` to specify file extensions of parsed files +* Minor visualization improvements +* Fixed autocomplete for classes in namespaces +* TokenReflection library updated to version 1.2.0 + +## ApiGen 2.5.0 (2012-02-12) ## + +* Added option ```--groups``` for grouping classes, interfaces, traits and exceptions in the menu +* Added option ```--autocomplete``` for choosing elements in the search autocomplete +* Inheriting some annotations from the file-level docblock +* @uses annotations create a @usedby annotation in the target documentation +* Added warning for unknown options +* Added support of comma-separated values for @see +* Changed all path options to be relative to the configuration file +* Fixed dependencies check +* Nette framework updated to 2.0.0 stable version +* TokenReflection library updated to version 1.1.0 + +## ApiGen 2.4.1 (2012-01-25) ## + +* TokenReflection library updated to version 1.0.2 +* Nette framework updated to version 2.0.0RC1 + +## ApiGen 2.4.0 (2011-12-24) ## + +* TokenReflection library updated to version 1.0.0 +* Fixed support for older PHP versions of the 5.3 branch +* Option ```templateConfig``` is relative to the config file (was relative to cwd) + +## ApiGen 2.3.0 (2011-11-13) ## + +* Added support for default configuration file +* Added link to download documentation as ZIP archive +* Added option ```--charset``` and autodetection of charsets +* Added support for @ignore annotation +* Added PHAR support +* Added support for ClassName[] +* Added memory usage reporting in progressbar +* Improved templates for small screens +* Changed option name ```--undocumented``` to ```--report``` +* FSHL library updated to version 2.0.1 + +## ApiGen 2.2.1 (2011-10-26) ## + +* Fixed processing of magic constants +* Fixed resize.png +* TokenReflection library updated to version 1.0.0RC2 + +## ApiGen 2.2.0 (2011-10-16) ## + +* Added an option to check for updates +* Added an option to initially display elements in alphabetical order +* Added an option to generate the robots.txt file +* Added required extensions check +* Changed reporting of undocumented elements to the checkstyle format +* Improved deprecated elements highlighting +* Highlighting the linked source code line +* Unknown annotations are sorted alphabetically +* Fixed class parameter description parsing +* Fixed command line options parsing +* Fixed include path setting of the GitHub version +* Fixed frames template + +## ApiGen 2.1.0 (2011-09-04) ## + +* Experimental support of PHP 5.4 traits +* Added option ```--colors``` +* Added template with frames +* Added templates option to make element details expanded by default + +## ApiGen 2.0.3 (2011-08-22) ## + +* @param, @return and @throw annotations are inherited + +## ApiGen 2.0.2 (2011-07-21) ## + +* Fixed inherited methods listing +* Interfaces are not labeled "Abstract interface" +* Fixed Google CSE ID validation +* Fixed filtering by ```--exclude``` and ```--skip-doc-path``` +* Fixed exception output when using ```--debug``` + +## ApiGen 2.0.1 (2011-07-17) ## + +* Updated TokenReflection library to 1.0.0beta5 +* Requires FSHL 2.0.0RC +* Fixed url in footer + +## ApiGen 2.0.0 (2011-06-28) ## diff --git a/apigen/LICENSE.md b/apigen/LICENSE.md new file mode 100644 index 00000000000..afe8631e4e6 --- /dev/null +++ b/apigen/LICENSE.md @@ -0,0 +1,32 @@ +# Licenses # + +You may use ApiGen under the terms of either the New BSD License or the GNU General Public License (GPL) version 2 or 3. + +The BSD License is recommended for most projects. It is easy to understand and it places almost no restrictions on what you can do with the framework. If the GPL fits better to your project, you can use the framework under this license. + +You don't have to notify anyone which license you are using. You can freely use ApiGen in commercial projects as long as the copyright header remains intact. + +## New BSD License ## + +Copyright (c) 2010 [David Grudl](http://davidgrudl.com) +Copyright (c) 2011-2012 [Jaroslav Hanslík](https://github.com/kukulich) +Copyright (c) 2011-2012 [Ondřej Nešpor](https://github.com/Andrewsville) + +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +* Neither the name of "ApiGen" nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +## GNU General Public License ## + +GPL licenses are very very long, so instead of including them here we offer you URLs with full text: + +* [GPL version 2](http://www.gnu.org/licenses/gpl-2.0.html) +* [GPL version 3](http://www.gnu.org/licenses/gpl-3.0.html) diff --git a/apigen/README.md b/apigen/README.md new file mode 100644 index 00000000000..14634f8959b --- /dev/null +++ b/apigen/README.md @@ -0,0 +1,285 @@ +# Welcome to ApiGen # + +ApiGen is the tool for creating professional API documentation from PHP source code, similar to discontinued phpDocumentor/phpDoc. + +ApiGen has support for PHP 5.3 namespaces, packages, linking between documentation, cross referencing to PHP standard classes and general documentation, creation of highlighted source code and experimental support for PHP 5.4 **traits**. + +## Support & Bug Reports ## + +For all support questions please use our [mailing list](https://groups.google.com/group/apigen). For bug reports and issues the [issue tracker](https://github.com/apigen/apigen/issues) is available. Changes between versions are described in the [change log](https://github.com/apigen/apigen/blob/master/CHANGELOG.md). + +## Features ## + +* Our own [TokenReflection library](https://github.com/Andrewsville/PHP-Token-Reflection) is used to describe the source code. It is **safe** (documented source code does not get included and thus parsed) and **simple** (you do not need to include or autoload all libraries you use in your source code). +* Detailed documentation of classes, functions and constants. +* Highlighted source code. +* Support of namespaces and packages with subpackages. +* Experimental support of traits. +* A page with trees of classes, interfaces, traits and exceptions. +* A page with a list of deprecated elements. +* A page with Todo tasks. +* Link to download documentation as ZIP archive. +* Checkstyle report of poorly documented elements. +* Support for docblock templates. +* Support for @inheritdoc. +* Support for {@link}. +* Active links in @see and @uses tags. +* Documentation of used internal PHP classes. +* Links to the start line in the highlighted source code for every described element. +* List of direct and indirect known subclasses, implementers and users for every class/interface/trait/exception. +* Check for a new version. +* Google CSE support with suggest. +* Google Analytics support. +* Support for multiple/custom templates. +* Sitemap and opensearch support. +* Support for different charsets and line endings. +* Lots of configuration options (see below). + +## Installation ## + +The preferred installation way is using the PEAR package but there are three more ways how to install ApiGen. + + +### PEAR ### + +PEAR is a distribution system for PHP packages. It is bundled with PHP since the 4.3 version and it is easy to use. + +The PEAR package contains only ApiGen itself. Its dependencies (Nette, Texy, FSHL and TokenReflection) have to be installed separately. But do not panic, the PEAR installer can take care of it. + +The easiest way is to use the PEAR auto discovery feature. In that case all you have to do is to type two commands. + +``` + pear config-set auto_discover 1 + pear install pear.apigen.org/apigen +``` + +If you don't want to use the auto discovery, you have to add PEAR channels of all ApiGen libraries manually. In this case you can install ApiGen by typing these commands. + +``` + pear channel-discover pear.apigen.org + pear channel-discover pear.nette.org + pear channel-discover pear.texy.info + pear channel-discover pear.kukulich.cz + pear channel-discover pear.andrewsville.cz + + pear install apigen/ApiGen +``` + +If you encounter a message like `WARNING: channel "pear.apigen.org" has updated its protocols, use "pear channel-update pear.apigen.org" to update`, you need to tell PEAR to update its information about the ApiGen channel using the suggested command. + +``` +pear channel-update pear.apigen.org +``` + +### Standalone package ### + +Using the standalone package is even easier than using the PEAR installer but it does not handle updates automatically. + +To download the actual release visit the [Downloads section](https://github.com/apigen/apigen/downloads). There you find separate packages for each release in two formats - zip and tar.gz. These packages are prepared by the ApiGen team and are truly standalone; they contain all required libraries in appropriate versions. You just need to extract the contents of an archive and you can start using ApiGen. + +### GitHub built archive ### + +GitHub allows you to download any repository as a zip or tar.gz archive. You can use this feature to download an archive with the current version of ApiGen. However this approach has one disadvantage. Such archive (in contrast to the standalone packages) does not contain required libraries. They are included as git submodules in the repository and GitHub simply ignores them when generating the archive. It means that you will have to obtain required libraries manually. + +### Cloning the repository ### + +The last way how to install ApiGen is simply to clone our repository. If you do so, remember to fetch and rebase to get new versions and do not forget to update submodules in the libs directory. + +## Usage ## + +``` + apigen --config [options] + apigen --source --destination [options] +``` + +As you can see, you can use ApiGen either by providing individual parameters via the command line or using a config file. Moreover you can combine the two methods and the command line parameters will have precedence over those in the config file. + +Every configuration option has to be followed by its value. And it is exactly the same to write ```--config=file.conf``` and ```--config file.conf```. The only exceptions are boolean options (those with yes|no values). When using these options on the command line you do not have to provide the "yes" value explicitly. If ommited, it is assumed that you wanted to turn the option on. So using ```--debug=yes``` and ```--debug``` does exactly the same (and the opposite is ```--debug=no```). + +Some options can have multiple values. To do so, you can either use them multiple times or separate their values by a comma. It means that ```--source=file1.php --source=file2.php``` and ```--source=file1.php,file2.php``` is exactly the same. + +### Options ### + +```--config|-c ``` + +Path to the config file. + +```--source|-s ``` **required** + +Path to the directory or file to be processed. You can use the parameter multiple times to provide a list of directories or files. All types of PHAR archives are supported (requires the PHAR extension). To process gz/bz2 compressed archives you need the appropriate extension (see requirements). + +```--destination|-d ``` **required** + +Documentation will be generated into this directory. + +```--extensions ``` + +List of allowed file extensions, default is "php". + +```--exclude ``` + +Directories and files matching this file mask will not be parsed. You can exclude for example tests from processing this way. This parameter is case sensitive and can be used multiple times. + +```--skip-doc-path ``` +```--skip-doc-prefix ``` + +Using this parameters you can tell ApiGen not to generate documentation for elements from certain files or with certain name prefix. Such classes will appear in class trees, but will not create a link to their documentation. These parameters are case sensitive and can be used multiple times. + +```--charset ``` + +Character set of source files, default is "auto" that lets ApiGen choose from all supported character sets. However if you use only one characters set across your source files you should set it explicitly to avoid autodetection because it can be tricky (and is not completely realiable). Moreover autodetection slows down the process of generating documentation. You can also use the parameter multiple times to provide a list of all used character sets in your documentation. In that case ApiGen will choose one of provided character sets for each file. + +```--main ``` + +Elements with this name prefix will be considered as the "main project" (the rest will be considered as libraries). + +```--title ``` + +Title of the generated documentation. + +```--base-url ``` + +Documentation base URL used in the sitemap. Only needed if you plan to make your documentation public. + +```--google-cse-id ``` + +If you have a Google CSE ID, the search box will use it when you do not enter an exact class, constant or function name. + +```--google-cse-label ``` + +This will be the default label when using Google CSE. + +```--google-analytics ``` + +A Google Analytics tracking code. If provided, an ansynchronous tracking code will be placed into every generated page. + +```--template-config ``` + +Template config file, default is the config file of ApiGen default template. + +```--allowed-html ``` + +List of allowed HTML tags in documentation separated by comma. Default value is "b,i,a,ul,ol,li,p,br,var,samp,kbd,tt". + +```--groups ``` + +How should elements be grouped in the menu. Possible options are "auto", "namespaces", "packages" and "none". Default value is "auto" (namespaces are used if the source code uses them, packages otherwise). + +```--autocomplete ``` + +List of element types that will appear in the search input autocomplete. Possible values are "classes", "constants", "functions", "methods", "properties" and "classconstants". Default value is "classes,constants,functions". + +```--access-levels ``` + +Access levels of methods and properties that should get their documentation parsed. Default value is "public,protected" (don't generate private class members). + +```--internal ``` + +Generate documentation for elements marked as internal (```@internal``` without description) and display parts of the documentation that are marked as internal (```@internal with description ...``` or inline ```{@internal ...}```), default is "No". + +```--php ``` + +Generate documentation for PHP internal classes, default is "Yes". + +```--tree ``` + +Generate tree view of classes, interfaces, traits and exceptions, default is "Yes". + +```--deprecated ``` + +Generate documentation for deprecated elements, default is "No". + +```--todo ``` + +Generate a list of tasks, default is "No". + +```--source-code ``` + +Generate highlighted source code for user defined elements, default is "Yes". + +```--download ``` + +Add a link to download documentation as a ZIP archive, default is "No". + +```--report ``` + +Save a checkstyle report of poorly documented elements into a file. + +```--wipeout ``` + +Delete files generated in the previous run, default is "Yes". + +```--quiet ``` + +Do not print any messages to the console, default is "No". + +```--progressbar ``` + +Display progressbars, default is "Yes". + +```--colors ``` + +Use colors, default "No" on Windows, "Yes" on other systems. Windows doesn't support colors in console however you can enable it with [Ansicon](http://adoxa.110mb.com/ansicon/). + +```--update-check ``` + +Check for a new version of ApiGen, default is "Yes". + +```--debug ``` + +Display additional information (exception trace) in case of an error, default is "No". + +```--help|-h ``` + +Display the list of possible options. + +Only ```--source``` and ```--destination``` parameters are required. You can provide them via command line or a configuration file. + +### Config files ### + +Instead of providing individual parameters via the command line, you can prepare a config file for later use. You can use all the above listed parameters (with one exception: the ```--config``` option) only without dashes and with an uppercase letter after each dash (so ```--access-level``` becomes ```accessLevel```). + +ApiGen uses the [NEON file format](http://ne-on.org) for all its config files. You can try the [online parser](http://ne-on.org) to debug your config files and see how they get parsed. + +Then you can call ApiGen with a single parameter ```--config``` specifying the config file to load. + +``` + apigen --config [options] +``` + +Even when using a config file, you can still provide additional parameters via the command line. Such parameters will have precedence over parameters from the config file. + +Keep in mind, that any values in the config file will be **overwritten** by values from the command line. That means that providing the ```--source``` parameter values both in the config file and via the command line will not result in using all the provided values but only those from the command line. + +If you provide no command line parameters at all, ApiGen will try to load a default config file called ```apigen.neon``` in the current working directory. If found it will work as if you used the ```--config``` option. Note that when using any command line option, you have to specify the config file if you have one. ApiGen will try to load one automatically only when no command line parameters are used. Option names have to be in camelCase in config files (```--template-config``` on the command line becomes ```templateConfig``` in a config file). You can see a full list of configuration options with short descriptions in the example config file [apigen.neon.example](https://github.com/apigen/apigen/blob/master/apigen.neon.example). + +### Example ### + +We are generating documentation for the Nella Framework. We want Nette and Doctrine to be parsed as well because we want their classes to appear in class trees, lists of parent classes and their members in lists of inherited properties, methods and constants. However we do not want to generate their full documentation along with highlighted source codes. And we do not want to process any "test" directories, because there might be classes that do not belong to the project actually. + +``` + apigen --source ~/nella/Nella --source ~/doctrine2/lib/Doctrine --source ~/doctrine2/lib/vendor --source ~/nette/Nette --skip-doc-path "~/doctrine2/*" --skip-doc-prefix Nette --exclude "*/tests/*" --destination ~/docs/ --title "Nella Framework" +``` + +## Requirements ## + +ApiGen requires PHP 5.3 or later. Four libraries it uses ([Nette](https://github.com/nette/nette), [Texy](https://github.com/dg/texy), [TokenReflection](https://github.com/Andrewsville/PHP-Token-Reflection) and [FSHL](https://github.com/kukulich/fshl)) require four additional PHP extensions: [tokenizer](http://php.net/manual/book.tokenizer.php), [mbstring](http://php.net/manual/book.mbstring.php), [iconv](http://php.net/manual/book.iconv.php) and [json](http://php.net/manual/book.json.php). For documenting PHAR archives you need the [phar extension](http://php.net/manual/book.phar.php) and for documenting gz or bz2 compressed PHARs, you need the [zlib](http://php.net/manual/book.zlib.php) or [bz2](http://php.net/manual/book.bzip2.php) extension respectively. To generate the ZIP file with documentation you need the [zip extension](http://php.net/manual/book.zip.php). + +When generating documentation of large libraries (Zend Framework for example) we recommend not to have the Xdebug PHP extension loaded (it does not need to be used, it significantly slows down the generating process even when only loaded). + +## Authors ## + +* [Jaroslav Hanslík](https://github.com/kukulich) +* [Ondřej Nešpor](https://github.com/Andrewsville) +* [David Grudl](https://github.com/dg) + +## Usage examples ## + +* [Doctrine](http://www.doctrine-project.org/api/orm/2.2/index.html) +* [Nette Framework](http://api.nette.org/2.0/) +* [TokenReflection library](http://andrewsville.github.com/PHP-Token-Reflection/) +* [FSHL library](http://fshl.kukulich.cz/api/) +* [Nella Framework](http://api.nellafw.org/) +* Jyxo PHP Libraries, both [namespaced](http://jyxo.github.com/php/) and [non-namespaced](http://jyxo.github.com/php-no-namespace/) + +Besides from these publicly visible examples there are companies that use ApiGen to generate their inhouse documentation: [Medio Interactive](http://www.medio.cz/), [Wikidi](http://wikidi.com/). \ No newline at end of file diff --git a/apigen/apigen.bat b/apigen/apigen.bat new file mode 100644 index 00000000000..9be5228e5dc --- /dev/null +++ b/apigen/apigen.bat @@ -0,0 +1,16 @@ +@echo off +REM ApiGen 2.8.0 - API documentation generator for PHP 5.3+ +REM +REM Copyright (c) 2010-2011 David Grudl (http://davidgrudl.com) +REM Copyright (c) 2011-2012 Jaroslav Hanslík (https://github.com/kukulich) +REM Copyright (c) 2011-2012 Ondřej Nešpor (https://github.com/Andrewsville) +REM +REM For the full copyright and license information, please view +REM the file LICENCE.md that was distributed with this source code. +REM + +IF EXIST "@php_bin@" ( + "@php_bin@" "@bin_dir@\apigen" %* +) ELSE ( + "php.exe" "%~dp0apigen.php" %* +) diff --git a/apigen/apigen.neon.example b/apigen/apigen.neon.example new file mode 100644 index 00000000000..e5e0de7f2f4 --- /dev/null +++ b/apigen/apigen.neon.example @@ -0,0 +1,67 @@ +# Source file or directory to parse +source: +# Directory where to save the generated documentation +destination: +# List of allowed file extensions +extensions: [php] +# Mask to exclude file or directory from processing +exclude: +# Don't generate documentation for classes from file or directory with this mask +skipDocPath: +# Don't generate documentation for classes with this name prefix +skipDocPrefix: +# Character set of source files +charset: auto +# Main project name prefix +main: + +# Title of generated documentation +title: +# Documentation base URL +baseUrl: +# Google Custom Search ID +googleCseId: +# Google Custom Search label +googleCseLabel: +# Google Analytics tracking code +googleAnalytics: +# Template config file +templateConfig: './templates/default/config.neon' +# Grouping of classes +groups: auto +# List of allowed HTML tags in documentation +allowedHtml: [b, i, a, ul, ol, li, p, br, var, samp, kbd, tt] +# Element types for search input autocomplete +autocomplete: [classes, constants, functions] + +# Generate documentation for methods and properties with given access level +accessLevels: [public, protected] +# Generate documentation for elements marked as internal and display internal documentation parts +internal: No +# Generate documentation for PHP internal classes +php: Yes +# Generate tree view of classes, interfaces and exceptions +tree: Yes +# Generate documentation for deprecated classes, methods, properties and constants +deprecated: No +# Generate documentation of tasks +todo: No +# Generate highlighted source code files +sourceCode: Yes +# Add a link to download documentation as a ZIP archive +download: No +# Save a checkstyle report of poorly documented elements into a file +report: + +# Wipe out the destination directory first +wipeout: Yes +# Don't display scanning and generating messages +quiet: No +# Display progressbars +progressbar: Yes +# Use colors +colors: No +# Check for update +updateCheck: Yes +# Display additional information in case of an error +debug: No diff --git a/apigen/apigen.php b/apigen/apigen.php new file mode 100644 index 00000000000..2b4aacd0310 --- /dev/null +++ b/apigen/apigen.php @@ -0,0 +1,254 @@ +#!/usr/bin/env php +processCliOptions($options); + $generator = new Generator($config); + + // Help + if ($config->isHelpRequested()) { + echo $generator->colorize($generator->getHeader()); + echo $generator->colorize($config->getHelp()); + die(); + } + + // Prepare configuration + $config->prepare(); + + if ($config->debug) { + Debugger::$onFatalError = array(); + Debugger::enable(Debugger::DEVELOPMENT, false); + } + + $generator->output($generator->getHeader()); + + // Check for update (only in production mode) + if ($config->updateCheck && !$config->debug) { + ini_set('default_socket_timeout', 5); + $latestVersion = @file_get_contents('http://pear.apigen.org/rest/r/apigen/latest.txt'); + if (false !== $latestVersion && version_compare(trim($latestVersion), Generator::VERSION, '>')) { + $generator->output(sprintf("New version @header@%s@c available\n\n", $latestVersion)); + } + } + + // Scan + if (count($config->source) > 1) { + $generator->output(sprintf("Scanning\n @value@%s@c\n", implode("\n ", $config->source))); + } else { + $generator->output(sprintf("Scanning @value@%s@c\n", $config->source[0])); + } + if (count($config->exclude) > 1) { + $generator->output(sprintf("Excluding\n @value@%s@c\n", implode("\n ", $config->exclude))); + } elseif (!empty($config->exclude)) { + $generator->output(sprintf("Excluding @value@%s@c\n", $config->exclude[0])); + } + + $parsed = $generator->parse(); + + if (count($parsed->errors) > 1) { + $generator->output(sprintf("@error@Found %d errors@c\n\n", count($parsed->errors))); + + $no = 1; + foreach ($parsed->errors as $e) { + + if ($e instanceof TokenReflection\Exception\ParseException) { + $generator->output(sprintf("@error@%d.@c The TokenReflection library threw an exception while parsing the file @value@%s@c.\n", $no, $e->getFileName())); + if ($config->debug) { + $generator->output("\nThis can have two reasons: a) the source code in the file is not valid or b) you have just found a bug in the TokenReflection library.\n\n"); + $generator->output("If the license allows it please send the whole file or at least the following fragment describing where exacly is the problem along with the backtrace to apigen@apigen.org. Thank you!\n\n"); + + $token = $e->getToken(); + $sender = $e->getSender(); + if (!empty($token)) { + $generator->output( + sprintf( + "The cause of the exception \"%s\" was the @value@%s@c token (line @count@%d@c) in following part of %s source code:\n\n", + $e->getMessage(), + $e->getTokenName(), + $e->getExceptionLine(), + $sender && $sender->getName() ? '@value@' . $sender->getPrettyName() . '@c' : 'the' + ) + ); + } else { + $generator->output( + sprintf( + "The exception \"%s\" was thrown when processing %s source code:\n\n", + $e->getMessage(), + $sender && $sender->getName() ? '@value@' . $sender->getPrettyName() . '@c' : 'the' + ) + ); + } + + $generator->output($e->getSourcePart(true) . "\n\nThe exception backtrace is following:\n\n" . $e->getTraceAsString() . "\n\n"); + } + } elseif ($e instanceof TokenReflection\Exception\FileProcessingException) { + $generator->output(sprintf("@error@%d.@c %s\n", $no, $e->getMessage())); + if ($config->debug) { + $generator->output("\n" . $e->getDetail() . "\n\n"); + } + } else { + $generator->output(sprintf("@error@%d.@c %s\n", $no, $e->getMessage())); + if ($config->debug) { + $trace = $e->getTraceAsString(); + while ($e = $e->getPrevious()) { + $generator->output(sprintf("\n%s", $e->getMessage())); + $trace = $e->getTraceAsString(); + } + $generator->output(sprintf("\n%s\n\n", $trace)); + } + } + + $no++; + } + + if (!$config->debug) { + $generator->output("\nEnable the debug mode (@option@--debug@c) to see more details.\n\n"); + } + } + + $generator->output(sprintf("Found @count@%d@c classes, @count@%d@c constants, @count@%d@c functions and other @count@%d@c used PHP internal classes\n", $parsed->classes, $parsed->constants, $parsed->functions, $parsed->internalClasses)); + $generator->output(sprintf("Documentation for @count@%d@c classes, @count@%d@c constants, @count@%d@c functions and other @count@%d@c used PHP internal classes will be generated\n", $parsed->documentedClasses, $parsed->documentedConstants, $parsed->documentedFunctions, $parsed->documentedInternalClasses)); + + // Generating + $generator->output(sprintf("Using template config file @value@%s@c\n", $config->templateConfig)); + + if ($config->wipeout && is_dir($config->destination)) { + $generator->output("Wiping out destination directory\n"); + if (!$generator->wipeOutDestination()) { + throw new \RuntimeException('Cannot wipe out destination directory'); + } + } + + $generator->output(sprintf("Generating to directory @value@%s@c\n", $config->destination)); + $skipping = array_merge($config->skipDocPath, $config->skipDocPrefix); + if (count($skipping) > 1) { + $generator->output(sprintf("Will not generate documentation for\n @value@%s@c\n", implode("\n ", $skipping))); + } elseif (!empty($skipping)) { + $generator->output(sprintf("Will not generate documentation for @value@%s@c\n", $skipping[0])); + } + $generator->generate(); + + // End + $end = new \DateTime(); + $interval = $end->diff($start); + $parts = array(); + if ($interval->h > 0) { + $parts[] = sprintf('@count@%d@c hours', $interval->h); + } + if ($interval->i > 0) { + $parts[] = sprintf('@count@%d@c min', $interval->i); + } + if ($interval->s > 0) { + $parts[] = sprintf('@count@%d@c sec', $interval->s); + } + if (empty($parts)) { + $parts[] = sprintf('@count@%d@c sec', 1); + } + + $duration = implode(' ', $parts); + $generator->output(sprintf("Done. Total time: %s, used: @count@%d@c MB RAM\n", $duration, round(memory_get_peak_usage(true) / 1024 / 1024))); + +} catch (ConfigException $e) { + // Configuration error + echo $generator->colorize($generator->getHeader() . sprintf("\n@error@%s@c\n\n", $e->getMessage()) . $config->getHelp()); + + die(2); +} catch (\Exception $e) { + // Everything else + if ($config->debug) { + do { + echo $generator->colorize(sprintf("\n%s(%d): @error@%s@c", $e->getFile(), $e->getLine(), $e->getMessage())); + $trace = $e->getTraceAsString(); + } while ($e = $e->getPrevious()); + + printf("\n\n%s\n", $trace); + } else { + echo $generator->colorize(sprintf("\n@error@%s@c\n", $e->getMessage())); + } + + die(1); +} \ No newline at end of file diff --git a/apigen/libs/FSHL/FSHL/Generator.php b/apigen/libs/FSHL/FSHL/Generator.php new file mode 100644 index 00000000000..943a13857b2 --- /dev/null +++ b/apigen/libs/FSHL/FSHL/Generator.php @@ -0,0 +1,624 @@ +lexer = $lexer; + $this->lexerName = $lexer->getLanguage(); + $this->source = $this->generate(); + } + + /** + * Returns the generated source. + * + * @return string + */ + public function getSource() + { + return $this->source; + } + + /** + * Saves the generated source to a lexer cache file. + * + * @return \FSHL\Generator + * @throws \RuntimeException If the file could not be saved. + */ + public function saveToCache() + { + $file = __DIR__ . '/Lexer/Cache/' . $this->lexerName . '.php'; + if (false === @file_put_contents($file, $this->getSource())) { + throw new \RuntimeException(sprintf('Cannot save source to "%s"', $file)); + } + require_once $file; + return $this; + } + + /** + * Generates the source. + * + * @return string + */ + private function generate() + { + $this->optimize(); + + $constructor = ''; + $constructor .= $this->getVarSource('$this->language', $this->lexer->getLanguage()); + $constructor .= $this->getVarSource('$this->trans', $this->trans); + $constructor .= $this->getVarSource('$this->initialState', $this->states[$this->lexer->getInitialState()]); + $constructor .= $this->getVarSource('$this->returnState', $this->states[self::STATE_RETURN]); + $constructor .= $this->getVarSource('$this->quitState', $this->states[self::STATE_QUIT]); + $constructor .= $this->getVarSource('$this->flags', $this->flags); + $constructor .= $this->getVarSource('$this->data', $this->data); + $constructor .= $this->getVarSource('$this->classes', $this->classes); + $constructor .= $this->getVarSource('$this->keywords', $this->lexer->getKeywords()); + + $functions = ''; + foreach ($this->delimiters as $state => $delimiter) { + if (null !== $delimiter) { + $functions .= $this->generateState($state); + } + } + + return <<lexerName} lexer. + * + * This file is generated. All changes made in this file will be lost. + * + * @copyright Copyright (c) 2002-2005 Juraj 'hvge' Durech + * @copyright Copyright (c) 2011-2012 Jaroslav Hanslík + * @license http://fshl.kukulich.cz/#license + * @see \\FSHL\\Generator + * @see \\FSHL\\Lexer\\{$this->lexerName} + */ +class {$this->lexerName} +{ + /** + * Language name. + * + * @var array + */ + public \$language; + + /** + * Transitions table. + * + * @var array + */ + public \$trans; + + /** + * Id of the initial state. + * + * @var integer + */ + public \$initialState; + + /** + * Id of the return state. + * + * @var integer + */ + public \$returnState; + + /** + * Id of the quit state. + * + * @var integer + */ + public \$quitState; + + /** + * List of flags for all states. + * + * @var array + */ + public \$flags; + + /** + * Data for all states. + * + * @var array + */ + public \$data; + + /** + * List of CSS classes. + * + * @var array + */ + public \$classes; + + /** + * List of keywords. + * + * @var array + */ + public \$keywords; + + /** + * Initializes the lexer. + */ + public function __construct() + { +$constructor + } +$functions +} +SOURCE; + } + + /** + * Generates a state code. + * + * @param integer $state + * @return string + */ + private function generateState($state) + { + // Delimiter => Condition + static $commonDelimiters = array( + 'ALL' => true, + 'LINE' => "\n", + 'TAB' => "\t", + 'SPACE' => 'preg_match(\'~^\\s+~\', $part, $matches)', + '!SPACE' => 'preg_match(\'~^\\\\S+~\', $part, $matches)', + 'ALPHA' => 'preg_match(\'~^[a-z]+~i\', $part, $matches)', + '!ALPHA' => 'preg_match(\'~^[^a-z]+~i\', $part, $matches)', + 'ALNUM' => 'preg_match(\'~^[a-z\\\\d]+~i\', $part, $matches)', + '!ALNUM' => 'preg_match(\'~^[^a-z\\\\d]+~i\', $part, $matches)', + 'ALNUM_' => 'preg_match(\'~^\\\\w+~\', $part, $matches)', + '!ALNUM_' => 'preg_match(\'~^\\\\W+~\', $part, $matches)', + 'NUM' => 'preg_match(\'~^\\\\d+~\', $part, $matches)', + '!NUM' => 'preg_match(\'~^\\\\D+~\', $part, $matches)', + 'HEXNUM' => 'preg_match(\'~^[a-f\\\\d]+~i\', $part, $matches)', + '!HEXNUM' => 'preg_match(\'~^[^a-f\\\\d]+~i\', $part, $matches)', + 'DOTNUM' => 'preg_match(\'~^\\.\\\\d+~\', $part, $matches)', + '!DOTNUM' => 'preg_match(\'~^(?:[^\\.]|\\.\\\\D)~\', $part, $matches)' + ); + + $allDelimiters = array_merge($commonDelimiters, $this->lexer->getDelimiters()); + + $conditionsSource = ''; + $delimiters = array(); + foreach ($this->delimiters[$state] as $no => $delimiter) { + if ('ALL' === $delimiter) { + $conditionSource = <<states) . '. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter' . $state . '($text, $textLength, $textPos) + { + ' . (!empty($delimiters) ? sprintf('static $delimiters = %s;', $this->getVarValueSource($delimiters)) : '') . ' + + $buffer = false; + while ($textPos < $textLength) { + ' . (!empty($partSource) ? sprintf('$part = %s;', $partSource) : '') . ' + ' . (!empty($letterSource) ? sprintf('$letter = %s;', $letterSource) : '') . ' +' . $conditionsSource . ' + $buffer .= ' . $bufferSource . '; + $textPos++; + } + return array(-1, -1, $buffer); + } +'; + // Removes traling whitespaces and unnecessary empty lines + $source = preg_replace('~\n{3,}~', "\n\n", preg_replace('~\t+\n~', "\n", $source)); + + return $source; + } + + /** + * Optimizes the lexer definition. + * + * @return \FSHL\Generator + * @throws \RuntimeException If the lexer definition is wrong. + */ + private function optimize() + { + $i = 0; + foreach (array_keys($this->lexer->getStates()) as $stateName) { + if (self::STATE_QUIT === $stateName) { + continue; + } + $this->states[$stateName] = $i; + $i++; + } + $this->states[self::STATE_RETURN] = $i++; + $this->states[self::STATE_QUIT] = $i++; + + foreach ($this->lexer->getStates() as $stateName => $state) { + $stateId = $this->states[$stateName]; + + $this->classes[$stateId] = $state[self::STATE_INDEX_CLASS]; + $this->flags[$stateId] = $state[self::STATE_INDEX_FLAGS]; + $this->data[$stateId] = $state[self::STATE_INDEX_DATA]; + + if (is_array($state[self::STATE_INDEX_DIAGRAM])) { + $i = 0; + foreach ($state[self::STATE_INDEX_DIAGRAM] as $delimiter => $trans) { + $transName = $trans[self::STATE_DIAGRAM_INDEX_STATE]; + if (self::STATE_SELF === $transName) { + $transName = array_search($stateId, $this->states); + } + if (!isset($this->states[$transName])) { + throw new \RuntimeException(sprintf('Unknown state in transition %s [%s] => %s', $stateName, $delimiter, $transName)); + } + $this->delimiters[$stateId][$i] = $delimiter; + $trans[self::STATE_DIAGRAM_INDEX_STATE] = $this->states[$transName]; + $this->trans[$stateId][$i] = $trans; + $i++; + } + } else { + $this->delimiters[$stateId] = null; + $this->trans[$stateId] = null; + } + } + + if (!isset($this->states[$this->lexer->getInitialState()])) { + throw new \RuntimeException(sprintf('Unknown initial state "%s"', $this->lexer->getInitialState())); + } + + return $this; + } + + /** + * Returns a variable source. + * + * @param string $name + * @param mixed $value + * @return string + */ + private function getVarSource($name, $value) + { + return sprintf("\t\t%s = %s;\n", $name, $this->getVarValueSource($value)); + } + + /** + * Returns a variable value source. + * + * @param mixed $value + * @param integer $level + * @return string + */ + private function getVarValueSource($value, $level = 0) + { + if (is_array($value)) { + $tmp = ''; + $line = 0; + $total = 0; + foreach ($value as $k => $v) { + if ($line > 25) { + $tmp .= ",\n\t\t" . str_repeat("\t", $level); + $line = 0; + } elseif (0 !== $total) { + $tmp .= ', '; + } + $tmp .= $this->getVarValueSource($k, $level + 1) . ' => ' . $this->getVarValueSource($v, $level + 1); + + $line++; + $total++; + } + return "array(\n\t\t\t" . str_repeat("\t", $level) . $tmp . "\n" . str_repeat("\t", $level) . "\t\t)"; + } elseif (is_string($value) && preg_match('~[\\t\\n\\r]~', $value)) { + $export = var_export($value, true); + $export = str_replace(array("\t", "\n", "\r"), array('\t', '\n', '\r'), $export); + return '"' . substr($export, 1, -1) . '"'; + } else { + return var_export($value, true); + } + } +} diff --git a/apigen/libs/FSHL/FSHL/Highlighter.php b/apigen/libs/FSHL/FSHL/Highlighter.php new file mode 100644 index 00000000000..04e7b42c7a3 --- /dev/null +++ b/apigen/libs/FSHL/FSHL/Highlighter.php @@ -0,0 +1,482 @@ +setOutput($output) + ->setOptions($options, $tabIndentWidth); + } + + /** + * Highlightes a string. + * + * @param string $text + * @param \FSHL\Lexer $lexer + * @return string + * @throws \RuntimeException If no lexer is set. + */ + public function highlight($text, Lexer $lexer = null) + { + // Sets the lexer + $initialLexer = $this->lexer; + if (null !== $lexer) { + $this->setLexer($lexer); + } + + // No lexer + if (null === $this->lexer) { + throw new \RuntimeException('No lexer set'); + } + + // Prepares the text + $text = str_replace(array("\r\n", "\r"), "\n", (string) $text); + $textLength = strlen($text); + $textPos = 0; + + // Parses the text + $output = array(); + $fragment = ''; + $maxLineWidth = 0; + $line = 1; + $char = 0; + if ($this->options & self::OPTION_LINE_COUNTER) { + // Right aligment of line counter + $maxLineWidth = strlen(substr_count($text, "\n") + 1); + $fragment .= $this->line($line, $maxLineWidth); + } + $newLexerName = $lexerName = $this->lexer->language; + $newState = $state = $this->lexer->initialState; + $this->stack = array(); + + while (true) { + list($transitionId, $delimiter, $buffer) = $this->lexer->{'findDelimiter' . $state}($text, $textLength, $textPos); + + // Some data may be collected before getPart reaches the delimiter, we must output this before other processing + if (false !== $buffer) { + $bufferLength = strlen($buffer); + $textPos += $bufferLength; + $char += $bufferLength; + $fragment .= $this->template($buffer, $state); + if (isset($fragment[8192])) { + $output[] = $fragment; + $fragment = ''; + } + } + + if (-1 === $transitionId) { + // End of stream + break; + } + + // Processes received delimiter as string + $prevLine = $line; + $prevChar = $char; + $prevTextPos = $textPos; + + $delimiterLength = strlen($delimiter); + $textPos += $delimiterLength; + $char += $delimiterLength; + + // Adds line counter and tab indentation + $addLine = false; + if ("\n" === $delimiter[$delimiterLength - 1]) { + // Line counter + $line++; + $char = 0; + if ($this->options & self::OPTION_LINE_COUNTER) { + $addLine = true; + $actualLine = $line; + } + } elseif ("\t" === $delimiter && ($this->options & self::OPTION_TAB_INDENT)) { + // Tab indentation + $i = $char % $this->tabIndentWidth; + $delimiter = $this->tabs[$i][0]; + $char += $this->tabs[$i][1]; + } + + // Gets new state from the transitions table + $newState = $this->lexer->trans[$state][$transitionId][Generator::STATE_DIAGRAM_INDEX_STATE]; + if ($newState === $this->lexer->returnState) { + // Chooses mode of delimiter processing + if (Generator::BACK === $this->lexer->trans[$state][$transitionId][Generator::STATE_DIAGRAM_INDEX_MODE]) { + $line = $prevLine; + $char = $prevChar; + $textPos = $prevTextPos; + } else { + $fragment .= $this->template($delimiter, $state); + if ($addLine) { + $fragment .= $this->line($actualLine, $maxLineWidth); + } + if (isset($fragment[8192])) { + $output[] = $fragment; + $fragment = ''; + } + } + + // Get state from the context stack + if ($item = $this->popState()) { + list($newLexerName, $state) = $item; + // If previous context was in a different lexer, switch the lexer too + if ($newLexerName !== $lexerName) { + $this->setLexerByName($newLexerName); + $lexerName = $newLexerName; + } + } else { + $state = $this->lexer->initialState; + } + + continue; + } + + // Chooses mode of delimiter processing + $type = $this->lexer->trans[$state][$transitionId][Generator::STATE_DIAGRAM_INDEX_MODE]; + if (Generator::BACK === $type) { + $line = $prevLine; + $char = $prevChar; + $textPos = $prevTextPos; + } else { + $fragment .= $this->template($delimiter, Generator::NEXT === $type ? $newState : $state); + if ($addLine) { + $fragment .= $this->line($actualLine, $maxLineWidth); + } + if (isset($fragment[8192])) { + $output[] = $fragment; + $fragment = ''; + } + } + + // Switches between lexers (transition to embedded language) + if ($this->lexer->flags[$newState] & Generator::STATE_FLAG_NEWLEXER) { + if ($newState === $this->lexer->quitState) { + // Returns to the previous lexer + if ($item = $this->popState()) { + list($newLexerName, $state) = $item; + if ($newLexerName !== $lexerName) { + $this->setLexerByName($newLexerName); + $lexerName = $newLexerName; + } + } else { + $state = $this->lexer->initialState; + } + } else { + // Switches to the embedded language + $newLexerName = $this->lexer->data[$newState]; + $this->pushState($lexerName, $this->lexer->trans[$newState] ? $newState : $state); + $this->setLexerByName($newLexerName); + $lexerName = $newLexerName; + $state = $this->lexer->initialState; + } + + continue; + } + + // If newState is marked with recursion flag (alias call), push current state to the context stack + if (($this->lexer->flags[$newState] & Generator::STATE_FLAG_RECURSION) && $state !== $newState) { + $this->pushState($lexerName, $state); + } + + // Change the state + $state = $newState; + } + + // Adds template end + $fragment .= $this->output->template('', null); + $output[] = $fragment; + + // Restore lexer + $this->lexer = $initialLexer; + + return implode('', $output); + } + + /** + * Sets the output mode. + * + * @param \FSHL\Output $output + * @return \FSHL\Highlighter + */ + public function setOutput(Output $output) + { + $this->output = $output; + + return $this; + } + + /** + * Sets options. + * + * @param integer $options + * @param integer $tabIndentWidth + * @return \FSHL\Highlighter + */ + public function setOptions($options = self::OPTION_DEFAULT, $tabIndentWidth = 4) + { + $this->options = $options; + + if (($this->options & self::OPTION_TAB_INDENT) && $tabIndentWidth > 0) { + // Precalculate a table for tab indentation + $t = ' '; + $ti = 0; + for ($i = $tabIndentWidth; $i; $i--) { + $this->tabs[$i % $tabIndentWidth] = array($t, $ti++); + $t .= ' '; + } + $this->tabIndentWidth = $tabIndentWidth; + } else { + $this->options &= ~self::OPTION_TAB_INDENT; + } + + return $this; + } + + /** + * Sets the default lexer. + * + * @param \FSHL\Lexer $lexer + * @return \FSHL\Highlighter + */ + public function setLexer(Lexer $lexer) + { + // Generates the lexer cache on fly, if the lexer cache doesn't exist + if (!$this->findCache($lexer->getLanguage())) { + $this->generateCache($lexer); + } + + return $this; + } + + /** + * Sets the current lexer by name. + * + * @param string $lexerName + * @return \FSHL\Highlighter + * @throws \InvalidArgumentException If the class for given lexer doesn't exist. + */ + private function setLexerByName($lexerName) + { + // Generates the lexer cache on fly, if the lexer cache doesn't exist + if (!$this->findCache($lexerName)) { + // Finds the lexer + $lexerClass = '\\FSHL\\Lexer\\' . $lexerName; + if (!class_exists($lexerClass)) { + throw new \InvalidArgumentException(sprintf('The class for "%s" lexer doesn\'t exist', $lexerName)); + } + $lexer = new $lexerClass(); + + // Generates the lexer cache on fly + $this->generateCache($lexer); + } + + return $this; + } + + /** + * Tries to find the lexer cache. + * + * @param string $lexerName + * @return boolean + */ + private function findCache($lexerName) + { + // Lexer has been used before + if (isset($this->lexers[$lexerName])) { + $this->lexer = $this->lexers[$lexerName]; + return true; + } + + // Loads lexer cache + $lexerCacheClass = '\\FSHL\\Lexer\\Cache\\' . $lexerName; + if (class_exists($lexerCacheClass)) { + $this->lexers[$lexerName] = new $lexerCacheClass(); + $this->lexer = $this->lexers[$lexerName]; + return true; + } + + return false; + } + + /** + * Generates the lexer cache on fly. + * + * @param \FSHL\Lexer $lexer + * @return \FSHL\Highlighter + */ + private function generateCache(Lexer $lexer) + { + $generator = new Generator($lexer); + try { + $generator->saveToCache(); + } catch (\RuntimeException $e) { + $file = tempnam(sys_get_temp_dir(), 'fshl'); + file_put_contents($file, $generator->getSource()); + require_once $file; + unlink($file); + } + + $lexerName = $lexer->getLanguage(); + $lexerCacheClass = '\\FSHL\\Lexer\\Cache\\' . $lexerName; + $this->lexers[$lexerName] = new $lexerCacheClass(); + $this->lexer = $this->lexers[$lexerName]; + + return $this; + } + + /** + * Outputs a word. + * + * @param string $part + * @param string $state + * @return string + */ + private function template($part, $state) + { + if ($this->lexer->flags[$state] & Generator::STATE_FLAG_KEYWORD) { + $normalized = Generator::CASE_SENSITIVE === $this->lexer->keywords[Generator::KEYWORD_INDEX_CASE_SENSITIVE] ? $part : strtolower($part); + + if (isset($this->lexer->keywords[Generator::KEYWORD_INDEX_LIST][$normalized])) { + return $this->output->keyword($part, $this->lexer->keywords[Generator::KEYWORD_INDEX_CLASS] . $this->lexer->keywords[Generator::KEYWORD_INDEX_LIST][$normalized]); + } + } + + return $this->output->template($part, $this->lexer->classes[$state]); + } + + /** + * Outputs a line. + * + * @param integer $line + * @param integer $maxLineWidth + * @return string + */ + private function line($line, $maxLineWidth) + { + return $this->output->template(str_pad($line, $maxLineWidth, ' ', STR_PAD_LEFT) . ': ', 'line'); + } + + /** + * Pushes a state to the context stack. + * + * @param string $lexerName + * @param string $state + * @return \FSHL\Highlighter + */ + private function pushState($lexerName, $state) + { + array_unshift($this->stack, array($lexerName, $state)); + return $this; + } + + /** + * Pops a state from the context stack. + * + * @return array|null + */ + private function popState() + { + return array_shift($this->stack); + } +} diff --git a/apigen/libs/FSHL/FSHL/Lexer.php b/apigen/libs/FSHL/FSHL/Lexer.php new file mode 100644 index 00000000000..a78a5baadb9 --- /dev/null +++ b/apigen/libs/FSHL/FSHL/Lexer.php @@ -0,0 +1,66 @@ +language = 'Cpp'; + $this->trans = array( + 0 => array( + 0 => array( + 0 => 0, 1 => 1 + ), 1 => array( + 0 => 0, 1 => 1 + ), 2 => array( + 0 => 1, 1 => -1 + ), 3 => array( + 0 => 8, 1 => 1 + ), 4 => array( + 0 => 4, 1 => 1 + ), 5 => array( + 0 => 2, 1 => 1 + ), 6 => array( + 0 => 2, 1 => 1 + ), 7 => array( + 0 => 5, 1 => 1 + ), 8 => array( + 0 => 6, 1 => 1 + ), 9 => array( + 0 => 7, 1 => 1 + ) + ), 1 => array( + 0 => array( + 0 => 9, 1 => -1 + ) + ), 2 => array( + 0 => array( + 0 => 3, 1 => 1 + ), 1 => array( + 0 => 2, 1 => 1 + ), 2 => array( + 0 => 2, 1 => 1 + ), 3 => array( + 0 => 9, 1 => -1 + ) + ), 3 => array( + 0 => array( + 0 => 3, 1 => 1 + ), 1 => array( + 0 => 9, 1 => -1 + ) + ), 4 => array( + 0 => array( + 0 => 4, 1 => 1 + ), 1 => array( + 0 => 4, 1 => 1 + ), 2 => array( + 0 => 4, 1 => 1 + ), 3 => array( + 0 => 9, 1 => -1 + ) + ), 5 => array( + 0 => array( + 0 => 9, 1 => 0 + ), 1 => array( + 0 => 5, 1 => 1 + ), 2 => array( + 0 => 5, 1 => 1 + ), 3 => array( + 0 => 5, 1 => 1 + ), 4 => array( + 0 => 5, 1 => 1 + ) + ), 6 => array( + 0 => array( + 0 => 9, 1 => 0 + ), 1 => array( + 0 => 6, 1 => 1 + ), 2 => array( + 0 => 6, 1 => 1 + ), 3 => array( + 0 => 6, 1 => 1 + ) + ), 7 => array( + 0 => array( + 0 => 7, 1 => 1 + ), 1 => array( + 0 => 7, 1 => 1 + ), 2 => array( + 0 => 9, 1 => 0 + ) + ), 8 => array( + 0 => array( + 0 => 9, 1 => -1 + ), 1 => array( + 0 => 8, 1 => 1 + ) + ) + ); + $this->initialState = 0; + $this->returnState = 9; + $this->quitState = 10; + $this->flags = array( + 0 => 0, 1 => 5, 2 => 4, 3 => 0, 4 => 4, 5 => 4, 6 => 4, 7 => 4, 8 => 4 + ); + $this->data = array( + 0 => NULL, 1 => NULL, 2 => NULL, 3 => NULL, 4 => NULL, 5 => NULL, 6 => NULL, 7 => NULL, 8 => NULL + ); + $this->classes = array( + 0 => NULL, 1 => NULL, 2 => 'cpp-num', 3 => 'cpp-num', 4 => 'cpp-preproc', 5 => 'cpp-quote', 6 => 'cpp-quote', 7 => 'cpp-comment', 8 => 'cpp-comment' + ); + $this->keywords = array( + 0 => 'cpp-keywords', 1 => array( + 'bool' => 1, 'break' => 1, 'case' => 1, 'catch' => 1, 'char' => 1, 'class' => 1, 'const' => 1, 'const_cast' => 1, 'continue' => 1, 'default' => 1, 'delete' => 1, 'deprecated' => 1, 'dllexport' => 1, 'dllimport' => 1, 'do' => 1, 'double' => 1, 'dynamic_cast' => 1, 'else' => 1, 'enum' => 1, 'explicit' => 1, 'extern' => 1, 'false' => 1, 'float' => 1, 'for' => 1, 'friend' => 1, 'goto' => 1, + 'if' => 1, 'inline' => 1, 'int' => 1, 'long' => 1, 'mutable' => 1, 'naked' => 1, 'namespace' => 1, 'new' => 1, 'noinline' => 1, 'noreturn' => 1, 'nothrow' => 1, 'novtable' => 1, 'operator' => 1, 'private' => 1, 'property' => 1, 'protected' => 1, 'public' => 1, 'register' => 1, 'reinterpret_cast' => 1, 'return' => 1, 'selectany' => 1, 'short' => 1, 'signed' => 1, 'sizeof' => 1, 'static' => 1, 'static_cast' => 1, + 'struct' => 1, 'switch' => 1, 'template' => 1, 'this' => 1, 'thread' => 1, 'throw' => 1, 'true' => 1, 'try' => 1, 'typedef' => 1, 'typeid' => 1, 'typename' => 1, 'union' => 1, 'unsigned' => 1, 'using' => 1, 'uuid' => 1, 'virtual' => 1, 'void' => 1, 'volatile' => 1, '__wchar_t' => 1, 'wchar_t' => 1, 'while' => 1, '__abstract' => 1, '__alignof' => 1, '__asm' => 1, '__assume' => 1, '__based' => 1, + '__box' => 1, '__cdecl' => 1, '__declspec' => 1, '__delegate' => 1, '__event' => 1, '__except' => 1, '__fastcall' => 1, '__finally' => 1, '__forceinline' => 1, '__gc' => 1, '__hook' => 1, '__identifier' => 1, '__if_exists' => 1, '__if_not_exists' => 1, '__inline' => 1, '__int8' => 1, '__int16' => 1, '__int32' => 1, '__int64' => 1, '__interface' => 1, '__leave' => 1, '__m64' => 1, '__m128' => 1, '__m128d' => 1, '__m128i' => 1, '__multiple_inheritance' => 1, + '__nogc' => 1, '__noop' => 1, '__pin' => 1, '__property' => 1, '__raise' => 1, '__sealed' => 1, '__single_inheritance' => 1, '__stdcall' => 1, '__super' => 1, '__try_cast' => 1, '__try' => 1, '__unhook' => 1, '__uuidof' => 1, '__value' => 1, '__virtual_inheritance' => 1, '__w64' => 1 + ), 2 => true + ); + + } + + /** + * Finds a delimiter for state OUT. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter0($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => "\n", 1 => "\t", 3 => '//', 4 => '#', 7 => '"', 8 => '\'', 9 => '/*' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + if (preg_match('~^[a-z]+~i', $part, $matches)) { + return array(2, $matches[0], $buffer); + } + if (0 === strpos($part, $delimiters[3])) { + return array(3, $delimiters[3], $buffer); + } + if ($delimiters[4] === $letter) { + return array(4, $delimiters[4], $buffer); + } + if (preg_match('~^\\d+~', $part, $matches)) { + return array(5, $matches[0], $buffer); + } + if (preg_match('~^\.\\d+~', $part, $matches)) { + return array(6, $matches[0], $buffer); + } + if ($delimiters[7] === $letter) { + return array(7, $delimiters[7], $buffer); + } + if ($delimiters[8] === $letter) { + return array(8, $delimiters[8], $buffer); + } + if (0 === strpos($part, $delimiters[9])) { + return array(9, $delimiters[9], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state KEYWORD. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter1($text, $textLength, $textPos) + { + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + + if (preg_match('~^\\W+~', $part, $matches)) { + return array(0, $matches[0], $buffer); + } + $buffer .= $text[$textPos]; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state NUMBER. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter2($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => 'x', 1 => 'f' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + if (preg_match('~^\.\\d+~', $part, $matches)) { + return array(2, $matches[0], $buffer); + } + return array(3, $letter, $buffer); + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state HEXA. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter3($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => 'L' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if (preg_match('~^[^a-f\\d]+~i', $part, $matches)) { + return array(1, $matches[0], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state PREPROC. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter4($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => "\\\n", 1 => "\t", 2 => "\\\r\n", 3 => "\n" + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if (0 === strpos($part, $delimiters[0])) { + return array(0, $delimiters[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + if (0 === strpos($part, $delimiters[2])) { + return array(2, $delimiters[2], $buffer); + } + if ($delimiters[3] === $letter) { + return array(3, $delimiters[3], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state QUOTE_DOUBLE. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter5($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '"', 1 => '\\\\', 2 => '\\"', 3 => "\n", 4 => "\t" + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if (0 === strpos($part, $delimiters[1])) { + return array(1, $delimiters[1], $buffer); + } + if (0 === strpos($part, $delimiters[2])) { + return array(2, $delimiters[2], $buffer); + } + if ($delimiters[3] === $letter) { + return array(3, $delimiters[3], $buffer); + } + if ($delimiters[4] === $letter) { + return array(4, $delimiters[4], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state QUOTE_SINGLE. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter6($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '\'', 1 => '\\\'', 2 => "\n", 3 => "\t" + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if (0 === strpos($part, $delimiters[1])) { + return array(1, $delimiters[1], $buffer); + } + if ($delimiters[2] === $letter) { + return array(2, $delimiters[2], $buffer); + } + if ($delimiters[3] === $letter) { + return array(3, $delimiters[3], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state COMMENT_BLOCK. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter7($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => "\n", 1 => "\t", 2 => '*/' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + if (0 === strpos($part, $delimiters[2])) { + return array(2, $delimiters[2], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state COMMENT_LINE. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter8($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => "\n", 1 => "\t" + ); + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + +} \ No newline at end of file diff --git a/apigen/libs/FSHL/FSHL/Lexer/Cache/Css.php b/apigen/libs/FSHL/FSHL/Lexer/Cache/Css.php new file mode 100644 index 00000000000..8108bfa86ea --- /dev/null +++ b/apigen/libs/FSHL/FSHL/Lexer/Cache/Css.php @@ -0,0 +1,794 @@ +language = 'Css'; + $this->trans = array( + 0 => array( + 0 => array( + 0 => 10, 1 => 1 + ), 1 => array( + 0 => 3, 1 => 1 + ), 2 => array( + 0 => 3, 1 => 1 + ), 3 => array( + 0 => 4, 1 => 1 + ), 4 => array( + 0 => 5, 1 => 1 + ), 5 => array( + 0 => 7, 1 => 1 + ), 6 => array( + 0 => 12, 1 => 1 + ), 7 => array( + 0 => 1, 1 => 1 + ), 8 => array( + 0 => 2, 1 => 1 + ), 9 => array( + 0 => 0, 1 => 1 + ), 10 => array( + 0 => 0, 1 => 1 + ), 11 => array( + 0 => 15, 1 => 1 + ), 12 => array( + 0 => 13, 1 => 1 + ) + ), 1 => array( + 0 => array( + 0 => 8, 1 => 1 + ), 1 => array( + 0 => 9, 1 => 0 + ), 2 => array( + 0 => 1, 1 => 0 + ), 3 => array( + 0 => 1, 1 => 1 + ), 4 => array( + 0 => 1, 1 => 1 + ), 5 => array( + 0 => 14, 1 => 0 + ), 6 => array( + 0 => 12, 1 => 1 + ) + ), 2 => array( + 0 => array( + 0 => 14, 1 => -1 + ), 1 => array( + 0 => 12, 1 => 1 + ) + ), 3 => array( + 0 => array( + 0 => 14, 1 => 1 + ), 1 => array( + 0 => 14, 1 => -1 + ), 2 => array( + 0 => 14, 1 => -1 + ), 3 => array( + 0 => 6, 1 => 1 + ), 4 => array( + 0 => 12, 1 => 1 + ) + ), 4 => array( + 0 => array( + 0 => 14, 1 => -1 + ), 1 => array( + 0 => 14, 1 => -1 + ), 2 => array( + 0 => 14, 1 => -1 + ), 3 => array( + 0 => 6, 1 => 1 + ), 4 => array( + 0 => 12, 1 => 1 + ) + ), 5 => array( + 0 => array( + 0 => 14, 1 => -1 + ), 1 => array( + 0 => 14, 1 => -1 + ), 2 => array( + 0 => 14, 1 => -1 + ), 3 => array( + 0 => 6, 1 => 1 + ), 4 => array( + 0 => 12, 1 => 1 + ) + ), 6 => array( + 0 => array( + 0 => 14, 1 => -1 + ), 1 => array( + 0 => 14, 1 => -1 + ) + ), 7 => array( + 0 => array( + 0 => 8, 1 => 1 + ), 1 => array( + 0 => 9, 1 => 0 + ), 2 => array( + 0 => 7, 1 => 0 + ), 3 => array( + 0 => 7, 1 => 1 + ), 4 => array( + 0 => 7, 1 => 1 + ), 5 => array( + 0 => 14, 1 => 0 + ), 6 => array( + 0 => 12, 1 => 1 + ) + ), 8 => array( + 0 => array( + 0 => 14, 1 => -1 + ), 1 => array( + 0 => 14, 1 => -1 + ), 2 => array( + 0 => 8, 1 => 1 + ), 3 => array( + 0 => 8, 1 => 1 + ), 4 => array( + 0 => 12, 1 => 1 + ) + ), 9 => array( + 0 => array( + 0 => 11, 1 => 1 + ), 1 => array( + 0 => 14, 1 => -1 + ), 2 => array( + 0 => 10, 1 => 1 + ), 3 => array( + 0 => 14, 1 => -1 + ), 4 => array( + 0 => 14, 1 => -1 + ), 5 => array( + 0 => 9, 1 => 1 + ), 6 => array( + 0 => 9, 1 => 1 + ), 7 => array( + 0 => 12, 1 => 1 + ) + ), 10 => array( + 0 => array( + 0 => 14, 1 => 0 + ), 1 => array( + 0 => 9, 1 => 1 + ) + ), 11 => array( + 0 => array( + 0 => 14, 1 => -1 + ) + ), 12 => array( + 0 => array( + 0 => 12, 1 => 1 + ), 1 => array( + 0 => 12, 1 => 1 + ), 2 => array( + 0 => 14, 1 => 0 + ) + ), 13 => NULL, 15 => NULL + ); + $this->initialState = 0; + $this->returnState = 14; + $this->quitState = 15; + $this->flags = array( + 0 => 0, 1 => 4, 2 => 4, 3 => 4, 4 => 4, 5 => 4, 6 => 4, 7 => 4, 8 => 4, 9 => 4, 10 => 4, 11 => 4, 12 => 4, 13 => 8, 15 => 8 + ); + $this->data = array( + 0 => NULL, 1 => NULL, 2 => NULL, 3 => NULL, 4 => NULL, 5 => NULL, 6 => NULL, 7 => NULL, 8 => NULL, 9 => NULL, 10 => NULL, 11 => NULL, 12 => NULL, 13 => 'Php', 15 => NULL + ); + $this->classes = array( + 0 => NULL, 1 => 'css-at-rule', 2 => 'css-at-rule', 3 => 'css-tag', 4 => 'css-id', 5 => 'css-class', 6 => 'css-pseudo', 7 => NULL, 8 => 'css-property', 9 => 'css-value', 10 => 'css-func', 11 => 'css-color', 12 => 'css-comment', 13 => 'xlang', 15 => 'html-tag' + ); + $this->keywords = array( + + ); + + } + + /** + * Finds a delimiter for state OUT. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter0($text, $textLength, $textPos) + { + static $delimiters = array( + 2 => '*', 3 => '#', 4 => '.', 5 => '{', 6 => '/*', 7 => '@media', 8 => '@', 9 => "\n", 10 => "\t", 11 => ' ':', 2 => ';', 3 => "\n", 4 => "\t", 5 => ')', 6 => '/*' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if (preg_match('~[-a-z]+~iA', $text, $matches, 0, $textPos)) { + return array(0, $matches[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + if ($delimiters[2] === $letter) { + return array(2, $delimiters[2], $buffer); + } + if ($delimiters[3] === $letter) { + return array(3, $delimiters[3], $buffer); + } + if ($delimiters[4] === $letter) { + return array(4, $delimiters[4], $buffer); + } + if ($delimiters[5] === $letter) { + return array(5, $delimiters[5], $buffer); + } + if (0 === strpos($part, $delimiters[6])) { + return array(6, $delimiters[6], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state AT_RULE. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter2($text, $textLength, $textPos) + { + static $delimiters = array( + 1 => '/*' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + + if (preg_match('~^\s+~', $part, $matches)) { + return array(0, $matches[0], $buffer); + } + if (0 === strpos($part, $delimiters[1])) { + return array(1, $delimiters[1], $buffer); + } + $buffer .= $text[$textPos]; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state TAG. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter3($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '{', 1 => ',', 3 => ':', 4 => '/*' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + if (preg_match('~^\s+~', $part, $matches)) { + return array(2, $matches[0], $buffer); + } + if ($delimiters[3] === $letter) { + return array(3, $delimiters[3], $buffer); + } + if (0 === strpos($part, $delimiters[4])) { + return array(4, $delimiters[4], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state ID. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter4($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '{', 1 => ',', 3 => ':', 4 => '/*' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + if (preg_match('~^\s+~', $part, $matches)) { + return array(2, $matches[0], $buffer); + } + if ($delimiters[3] === $letter) { + return array(3, $delimiters[3], $buffer); + } + if (0 === strpos($part, $delimiters[4])) { + return array(4, $delimiters[4], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state CLASS. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter5($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '{', 2 => ',', 3 => ':', 4 => '/*' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if (preg_match('~^\s+~', $part, $matches)) { + return array(1, $matches[0], $buffer); + } + if ($delimiters[2] === $letter) { + return array(2, $delimiters[2], $buffer); + } + if ($delimiters[3] === $letter) { + return array(3, $delimiters[3], $buffer); + } + if (0 === strpos($part, $delimiters[4])) { + return array(4, $delimiters[4], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state PSEUDO. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter6($text, $textLength, $textPos) + { + static $delimiters = array( + 1 => ',' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if (preg_match('~^\s+~', $part, $matches)) { + return array(0, $matches[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state DEF. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter7($text, $textLength, $textPos) + { + static $delimiters = array( + 1 => ':', 2 => ';', 3 => "\n", 4 => "\t", 5 => '}', 6 => '/*' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if (preg_match('~[-a-z]+~iA', $text, $matches, 0, $textPos)) { + return array(0, $matches[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + if ($delimiters[2] === $letter) { + return array(2, $delimiters[2], $buffer); + } + if ($delimiters[3] === $letter) { + return array(3, $delimiters[3], $buffer); + } + if ($delimiters[4] === $letter) { + return array(4, $delimiters[4], $buffer); + } + if ($delimiters[5] === $letter) { + return array(5, $delimiters[5], $buffer); + } + if (0 === strpos($part, $delimiters[6])) { + return array(6, $delimiters[6], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state PROPERTY. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter8($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => ':', 1 => '}', 2 => "\n", 3 => "\t", 4 => '/*' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + if ($delimiters[2] === $letter) { + return array(2, $delimiters[2], $buffer); + } + if ($delimiters[3] === $letter) { + return array(3, $delimiters[3], $buffer); + } + if (0 === strpos($part, $delimiters[4])) { + return array(4, $delimiters[4], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state VALUE. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter9($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '#', 1 => ';', 3 => ')', 4 => '}', 5 => "\n", 6 => "\t", 7 => '/*' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + if (preg_match('~[a-z]+\s*\(~iA', $text, $matches, 0, $textPos)) { + return array(2, $matches[0], $buffer); + } + if ($delimiters[3] === $letter) { + return array(3, $delimiters[3], $buffer); + } + if ($delimiters[4] === $letter) { + return array(4, $delimiters[4], $buffer); + } + if ($delimiters[5] === $letter) { + return array(5, $delimiters[5], $buffer); + } + if ($delimiters[6] === $letter) { + return array(6, $delimiters[6], $buffer); + } + if (0 === strpos($part, $delimiters[7])) { + return array(7, $delimiters[7], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state FUNC. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter10($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => ')' + ); + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + return array(1, $letter, $buffer); + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state COLOR. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter11($text, $textLength, $textPos) + { + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + + if (preg_match('~^[^a-f\\d]+~i', $part, $matches)) { + return array(0, $matches[0], $buffer); + } + $buffer .= $text[$textPos]; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state COMMENT. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter12($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => "\n", 1 => "\t", 2 => '*/' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + if (0 === strpos($part, $delimiters[2])) { + return array(2, $delimiters[2], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + +} \ No newline at end of file diff --git a/apigen/libs/FSHL/FSHL/Lexer/Cache/Html.php b/apigen/libs/FSHL/FSHL/Lexer/Cache/Html.php new file mode 100644 index 00000000000..5fa9997bcff --- /dev/null +++ b/apigen/libs/FSHL/FSHL/Lexer/Cache/Html.php @@ -0,0 +1,672 @@ +language = 'Html'; + $this->trans = array( + 0 => array( + 0 => array( + 0 => 10, 1 => 1 + ), 1 => array( + 0 => 11, 1 => 1 + ), 2 => array( + 0 => 0, 1 => 0 + ), 3 => array( + 0 => 2, 1 => 1 + ), 4 => array( + 0 => 1, 1 => 1 + ), 5 => array( + 0 => 0, 1 => 1 + ), 6 => array( + 0 => 0, 1 => 1 + ) + ), 1 => array( + 0 => array( + 0 => 0, 1 => 0 + ), 1 => array( + 0 => 0, 1 => 0 + ), 2 => array( + 0 => 0, 1 => 0 + ) + ), 2 => array( + 0 => array( + 0 => 0, 1 => 0 + ), 1 => array( + 0 => 3, 1 => 1 + ), 2 => array( + 0 => 4, 1 => 0 + ), 3 => array( + 0 => 4, 1 => 0 + ), 4 => array( + 0 => 6, 1 => 0 + ), 5 => array( + 0 => 6, 1 => 0 + ), 6 => array( + 0 => 11, 1 => 1 + ) + ), 3 => array( + 0 => array( + 0 => 8, 1 => 1 + ), 1 => array( + 0 => 9, 1 => 1 + ), 2 => array( + 0 => 2, 1 => -1 + ), 3 => array( + 0 => 2, 1 => -1 + ), 4 => array( + 0 => 11, 1 => 1 + ), 5 => array( + 0 => 3, 1 => 1 + ), 6 => array( + 0 => 3, 1 => 1 + ) + ), 4 => array( + 0 => array( + 0 => 8, 1 => 1 + ), 1 => array( + 0 => 9, 1 => 1 + ), 2 => array( + 0 => 5, 1 => 1 + ), 3 => array( + 0 => 11, 1 => 1 + ), 4 => array( + 0 => 3, 1 => 1 + ), 5 => array( + 0 => 3, 1 => 1 + ) + ), 5 => array( + 0 => array( + 0 => 12, 1 => 0 + ) + ), 6 => array( + 0 => array( + 0 => 8, 1 => 1 + ), 1 => array( + 0 => 9, 1 => 1 + ), 2 => array( + 0 => 7, 1 => 1 + ), 3 => array( + 0 => 11, 1 => 1 + ), 4 => array( + 0 => 3, 1 => 1 + ), 5 => array( + 0 => 3, 1 => 1 + ) + ), 7 => array( + 0 => array( + 0 => 12, 1 => 0 + ) + ), 8 => array( + 0 => array( + 0 => 12, 1 => 0 + ), 1 => array( + 0 => 11, 1 => 1 + ), 2 => array( + 0 => 8, 1 => 1 + ), 3 => array( + 0 => 8, 1 => 1 + ) + ), 9 => array( + 0 => array( + 0 => 12, 1 => 0 + ), 1 => array( + 0 => 11, 1 => 1 + ), 2 => array( + 0 => 9, 1 => 1 + ), 3 => array( + 0 => 9, 1 => 1 + ) + ), 10 => array( + 0 => array( + 0 => 10, 1 => 1 + ), 1 => array( + 0 => 10, 1 => 1 + ), 2 => array( + 0 => 0, 1 => 0 + ), 3 => array( + 0 => 11, 1 => 1 + ) + ), 11 => NULL + ); + $this->initialState = 0; + $this->returnState = 12; + $this->quitState = 13; + $this->flags = array( + 0 => 0, 1 => 0, 2 => 0, 3 => 0, 4 => 0, 5 => 8, 6 => 0, 7 => 8, 8 => 4, 9 => 4, 10 => 0, 11 => 8 + ); + $this->data = array( + 0 => NULL, 1 => NULL, 2 => NULL, 3 => NULL, 4 => NULL, 5 => 'Css', 6 => NULL, 7 => 'Javascript', 8 => NULL, 9 => NULL, 10 => NULL, 11 => 'Php' + ); + $this->classes = array( + 0 => NULL, 1 => 'html-entity', 2 => 'html-tag', 3 => 'html-tagin', 4 => 'html-tagin', 5 => 'html-tag', 6 => 'html-tagin', 7 => 'html-tag', 8 => 'html-quote', 9 => 'html-quote', 10 => 'html-comment', 11 => 'xlang' + ); + $this->keywords = array( + + ); + + } + + /** + * Finds a delimiter for state OUT. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter0($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + if (0 === strpos($part, $delimiters[2])) { + return array(2, $delimiters[2], $buffer); + } + if (preg_match('~<\\?(php|=|(?!xml))~A', $text, $matches, 0, $textPos)) { + return array(3, $matches[0], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + +} \ No newline at end of file diff --git a/apigen/libs/FSHL/FSHL/Lexer/Cache/HtmlOnly.php b/apigen/libs/FSHL/FSHL/Lexer/Cache/HtmlOnly.php new file mode 100644 index 00000000000..338d463129e --- /dev/null +++ b/apigen/libs/FSHL/FSHL/Lexer/Cache/HtmlOnly.php @@ -0,0 +1,706 @@ +language = 'HtmlOnly'; + $this->trans = array( + 0 => array( + 0 => array( + 0 => 12, 1 => 1 + ), 1 => array( + 0 => 0, 1 => 0 + ), 2 => array( + 0 => 2, 1 => 1 + ), 3 => array( + 0 => 1, 1 => 1 + ), 4 => array( + 0 => 0, 1 => 1 + ), 5 => array( + 0 => 0, 1 => 1 + ) + ), 1 => array( + 0 => array( + 0 => 0, 1 => 0 + ), 1 => array( + 0 => 0, 1 => 0 + ), 2 => array( + 0 => 0, 1 => 0 + ) + ), 2 => array( + 0 => array( + 0 => 0, 1 => 0 + ), 1 => array( + 0 => 3, 1 => 1 + ), 2 => array( + 0 => 4, 1 => 0 + ), 3 => array( + 0 => 4, 1 => 0 + ), 4 => array( + 0 => 7, 1 => 0 + ), 5 => array( + 0 => 7, 1 => 0 + ) + ), 3 => array( + 0 => array( + 0 => 10, 1 => 1 + ), 1 => array( + 0 => 11, 1 => 1 + ), 2 => array( + 0 => 2, 1 => -1 + ), 3 => array( + 0 => 2, 1 => -1 + ), 4 => array( + 0 => 3, 1 => 1 + ), 5 => array( + 0 => 3, 1 => 1 + ) + ), 4 => array( + 0 => array( + 0 => 10, 1 => 1 + ), 1 => array( + 0 => 11, 1 => 1 + ), 2 => array( + 0 => 5, 1 => -1 + ), 3 => array( + 0 => 4, 1 => 1 + ), 4 => array( + 0 => 4, 1 => 1 + ) + ), 5 => array( + 0 => array( + 0 => 6, 1 => 0 + ) + ), 6 => array( + 0 => array( + 0 => 6, 1 => 1 + ), 1 => array( + 0 => 6, 1 => 1 + ), 2 => array( + 0 => 2, 1 => 1 + ), 3 => array( + 0 => 2, 1 => 1 + ) + ), 7 => array( + 0 => array( + 0 => 10, 1 => 1 + ), 1 => array( + 0 => 11, 1 => 1 + ), 2 => array( + 0 => 8, 1 => -1 + ), 3 => array( + 0 => 7, 1 => 1 + ), 4 => array( + 0 => 7, 1 => 1 + ) + ), 8 => array( + 0 => array( + 0 => 9, 1 => 0 + ) + ), 9 => array( + 0 => array( + 0 => 9, 1 => 1 + ), 1 => array( + 0 => 9, 1 => 1 + ), 2 => array( + 0 => 2, 1 => 1 + ), 3 => array( + 0 => 2, 1 => 1 + ) + ), 10 => array( + 0 => array( + 0 => 13, 1 => 0 + ) + ), 11 => array( + 0 => array( + 0 => 13, 1 => 0 + ) + ), 12 => array( + 0 => array( + 0 => 12, 1 => 1 + ), 1 => array( + 0 => 12, 1 => 1 + ), 2 => array( + 0 => 0, 1 => 0 + ) + ) + ); + $this->initialState = 0; + $this->returnState = 13; + $this->quitState = 14; + $this->flags = array( + 0 => 0, 1 => 0, 2 => 0, 3 => 0, 4 => 0, 5 => 0, 6 => 0, 7 => 0, 8 => 0, 9 => 0, 10 => 4, 11 => 4, 12 => 0 + ); + $this->data = array( + 0 => NULL, 1 => NULL, 2 => NULL, 3 => NULL, 4 => NULL, 5 => NULL, 6 => NULL, 7 => NULL, 8 => NULL, 9 => NULL, 10 => NULL, 11 => NULL, 12 => NULL + ); + $this->classes = array( + 0 => NULL, 1 => 'html-entity', 2 => 'html-tag', 3 => 'html-tagin', 4 => 'html-tagin', 5 => 'html-tag', 6 => NULL, 7 => 'html-tagin', 8 => 'html-tag', 9 => NULL, 10 => 'html-quote', 11 => 'html-quote', 12 => 'html-comment' + ); + $this->keywords = array( + + ); + + } + + /** + * Finds a delimiter for state OUT. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter0($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + if (0 === strpos($part, $delimiters[2])) { + return array(2, $delimiters[2], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + +} \ No newline at end of file diff --git a/apigen/libs/FSHL/FSHL/Lexer/Cache/Java.php b/apigen/libs/FSHL/FSHL/Lexer/Cache/Java.php new file mode 100644 index 00000000000..23eb3f20b16 --- /dev/null +++ b/apigen/libs/FSHL/FSHL/Lexer/Cache/Java.php @@ -0,0 +1,479 @@ +language = 'Java'; + $this->trans = array( + 0 => array( + 0 => array( + 0 => 1, 1 => -1 + ), 1 => array( + 0 => 2, 1 => 1 + ), 2 => array( + 0 => 2, 1 => 1 + ), 3 => array( + 0 => 4, 1 => 1 + ), 4 => array( + 0 => 5, 1 => 1 + ), 5 => array( + 0 => 6, 1 => 1 + ), 6 => array( + 0 => 7, 1 => 1 + ), 7 => array( + 0 => 0, 1 => 1 + ), 8 => array( + 0 => 0, 1 => 1 + ) + ), 1 => array( + 0 => array( + 0 => 8, 1 => -1 + ) + ), 2 => array( + 0 => array( + 0 => 3, 1 => 1 + ), 1 => array( + 0 => 2, 1 => 1 + ), 2 => array( + 0 => 8, 1 => -1 + ) + ), 3 => array( + 0 => array( + 0 => 8, 1 => -1 + ) + ), 4 => array( + 0 => array( + 0 => 8, 1 => 0 + ), 1 => array( + 0 => 4, 1 => 1 + ), 2 => array( + 0 => 4, 1 => 1 + ), 3 => array( + 0 => 4, 1 => 1 + ), 4 => array( + 0 => 4, 1 => 1 + ) + ), 5 => array( + 0 => array( + 0 => 8, 1 => 0 + ), 1 => array( + 0 => 5, 1 => 1 + ), 2 => array( + 0 => 5, 1 => 1 + ), 3 => array( + 0 => 5, 1 => 1 + ), 4 => array( + 0 => 5, 1 => 1 + ) + ), 6 => array( + 0 => array( + 0 => 6, 1 => 1 + ), 1 => array( + 0 => 6, 1 => 1 + ), 2 => array( + 0 => 8, 1 => 0 + ) + ), 7 => array( + 0 => array( + 0 => 8, 1 => -1 + ), 1 => array( + 0 => 7, 1 => 1 + ) + ) + ); + $this->initialState = 0; + $this->returnState = 8; + $this->quitState = 9; + $this->flags = array( + 0 => 0, 1 => 5, 2 => 4, 3 => 0, 4 => 4, 5 => 4, 6 => 4, 7 => 4 + ); + $this->data = array( + 0 => NULL, 1 => NULL, 2 => NULL, 3 => NULL, 4 => NULL, 5 => NULL, 6 => NULL, 7 => NULL + ); + $this->classes = array( + 0 => NULL, 1 => NULL, 2 => 'java-num', 3 => 'java-num', 4 => 'java-quote', 5 => 'java-quote', 6 => 'java-comment', 7 => 'java-comment' + ); + $this->keywords = array( + 0 => 'java-keywords', 1 => array( + 'abstract' => 1, 'double' => 1, 'int' => 1, 'strictfp' => 1, 'boolean' => 1, 'else' => 1, 'interface' => 1, 'super' => 1, 'break' => 1, 'extends' => 1, 'long' => 1, 'switch' => 1, 'byte' => 1, 'final' => 1, 'native' => 1, 'synchronized' => 1, 'case' => 1, 'finally' => 1, 'new' => 1, 'this' => 1, 'catch' => 1, 'float' => 1, 'package' => 1, 'throw' => 1, 'char' => 1, 'for' => 1, + 'private' => 1, 'throws' => 1, 'class' => 1, 'goto' => 1, 'protected' => 1, 'transient' => 1, 'const' => 1, 'if' => 1, 'public' => 1, 'try' => 1, 'continue' => 1, 'implements' => 1, 'return' => 1, 'void' => 1, 'default' => 1, 'import' => 1, 'short' => 1, 'volatile' => 1, 'do' => 1, 'instanceof' => 1, 'static' => 1, 'while' => 1 + ), 2 => true + ); + + } + + /** + * Finds a delimiter for state OUT. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter0($text, $textLength, $textPos) + { + static $delimiters = array( + 3 => '"', 4 => '\'', 5 => '/*', 6 => '//', 7 => "\n", 8 => "\t" + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if (preg_match('~^[a-z]+~i', $part, $matches)) { + return array(0, $matches[0], $buffer); + } + if (preg_match('~^\\d+~', $part, $matches)) { + return array(1, $matches[0], $buffer); + } + if (preg_match('~^\.\\d+~', $part, $matches)) { + return array(2, $matches[0], $buffer); + } + if ($delimiters[3] === $letter) { + return array(3, $delimiters[3], $buffer); + } + if ($delimiters[4] === $letter) { + return array(4, $delimiters[4], $buffer); + } + if (0 === strpos($part, $delimiters[5])) { + return array(5, $delimiters[5], $buffer); + } + if (0 === strpos($part, $delimiters[6])) { + return array(6, $delimiters[6], $buffer); + } + if ($delimiters[7] === $letter) { + return array(7, $delimiters[7], $buffer); + } + if ($delimiters[8] === $letter) { + return array(8, $delimiters[8], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state KEYWORD. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter1($text, $textLength, $textPos) + { + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + + if (preg_match('~^\\W+~', $part, $matches)) { + return array(0, $matches[0], $buffer); + } + $buffer .= $text[$textPos]; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state NUMBER. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter2($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => 'x' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if (preg_match('~^\.\\d+~', $part, $matches)) { + return array(1, $matches[0], $buffer); + } + return array(2, $letter, $buffer); + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state HEXA. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter3($text, $textLength, $textPos) + { + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + + if (preg_match('~^[^a-f\\d]+~i', $part, $matches)) { + return array(0, $matches[0], $buffer); + } + $buffer .= $text[$textPos]; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state QUOTE_DOUBLE. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter4($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '"', 1 => '\\\\', 2 => '\\"', 3 => "\n", 4 => "\t" + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if (0 === strpos($part, $delimiters[1])) { + return array(1, $delimiters[1], $buffer); + } + if (0 === strpos($part, $delimiters[2])) { + return array(2, $delimiters[2], $buffer); + } + if ($delimiters[3] === $letter) { + return array(3, $delimiters[3], $buffer); + } + if ($delimiters[4] === $letter) { + return array(4, $delimiters[4], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state QUOTE_SINGLE. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter5($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '\'', 1 => '\\\\', 2 => '\\\'', 3 => "\n", 4 => "\t" + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if (0 === strpos($part, $delimiters[1])) { + return array(1, $delimiters[1], $buffer); + } + if (0 === strpos($part, $delimiters[2])) { + return array(2, $delimiters[2], $buffer); + } + if ($delimiters[3] === $letter) { + return array(3, $delimiters[3], $buffer); + } + if ($delimiters[4] === $letter) { + return array(4, $delimiters[4], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state COMMENT_BLOCK. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter6($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => "\n", 1 => "\t", 2 => '*/' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + if (0 === strpos($part, $delimiters[2])) { + return array(2, $delimiters[2], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state COMMENT_LINE. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter7($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => "\n", 1 => "\t" + ); + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + +} \ No newline at end of file diff --git a/apigen/libs/FSHL/FSHL/Lexer/Cache/Javascript.php b/apigen/libs/FSHL/FSHL/Lexer/Cache/Javascript.php new file mode 100644 index 00000000000..fedf6079e40 --- /dev/null +++ b/apigen/libs/FSHL/FSHL/Lexer/Cache/Javascript.php @@ -0,0 +1,507 @@ +language = 'Javascript'; + $this->trans = array( + 0 => array( + 0 => array( + 0 => 0, 1 => 1 + ), 1 => array( + 0 => 0, 1 => 1 + ), 2 => array( + 0 => 1, 1 => -1 + ), 3 => array( + 0 => 2, 1 => 1 + ), 4 => array( + 0 => 2, 1 => 1 + ), 5 => array( + 0 => 1, 1 => 0 + ), 6 => array( + 0 => 4, 1 => 1 + ), 7 => array( + 0 => 5, 1 => 1 + ), 8 => array( + 0 => 6, 1 => 1 + ), 9 => array( + 0 => 7, 1 => 1 + ), 10 => array( + 0 => 8, 1 => 1 + ), 11 => array( + 0 => 9, 1 => 1 + ), 12 => array( + 0 => 11, 1 => 1 + ) + ), 1 => array( + 0 => array( + 0 => 10, 1 => -1 + ) + ), 2 => array( + 0 => array( + 0 => 3, 1 => 1 + ), 1 => array( + 0 => 2, 1 => 1 + ), 2 => array( + 0 => 10, 1 => -1 + ) + ), 3 => array( + 0 => array( + 0 => 10, 1 => -1 + ) + ), 4 => array( + 0 => array( + 0 => 10, 1 => 0 + ), 1 => array( + 0 => 9, 1 => 1 + ) + ), 5 => array( + 0 => array( + 0 => 10, 1 => 0 + ), 1 => array( + 0 => 9, 1 => 1 + ) + ), 6 => array( + 0 => array( + 0 => 6, 1 => 1 + ), 1 => array( + 0 => 6, 1 => 1 + ), 2 => array( + 0 => 10, 1 => 0 + ), 3 => array( + 0 => 9, 1 => 1 + ) + ), 7 => array( + 0 => array( + 0 => 10, 1 => -1 + ), 1 => array( + 0 => 7, 1 => 1 + ), 2 => array( + 0 => 9, 1 => 1 + ) + ), 8 => array( + 0 => array( + 0 => 10, 1 => -1 + ) + ), 9 => NULL, 11 => NULL + ); + $this->initialState = 0; + $this->returnState = 10; + $this->quitState = 11; + $this->flags = array( + 0 => 0, 1 => 5, 2 => 4, 3 => 0, 4 => 4, 5 => 4, 6 => 4, 7 => 4, 8 => 0, 9 => 8, 11 => 8 + ); + $this->data = array( + 0 => NULL, 1 => NULL, 2 => NULL, 3 => NULL, 4 => NULL, 5 => NULL, 6 => NULL, 7 => NULL, 8 => NULL, 9 => 'Php', 11 => NULL + ); + $this->classes = array( + 0 => 'js-out', 1 => 'js-out', 2 => 'js-num', 3 => 'js-num', 4 => 'js-quote', 5 => 'js-quote', 6 => 'js-comment', 7 => 'js-comment', 8 => 'js-quote', 9 => 'xlang', 11 => 'html-tag' + ); + $this->keywords = array( + 0 => 'js-keywords', 1 => array( + 'abstract' => 1, 'boolean' => 1, 'break' => 1, 'byte' => 1, 'case' => 1, 'catch' => 1, 'char' => 1, 'class' => 1, 'const' => 1, 'continue' => 1, 'debugger' => 1, 'default' => 1, 'delete' => 1, 'do' => 1, 'double' => 1, 'else' => 1, 'enum' => 1, 'export' => 1, 'extends' => 1, 'false' => 1, 'final' => 1, 'finally' => 1, 'float' => 1, 'for' => 1, 'function' => 1, 'goto' => 1, + 'if' => 1, 'implements' => 1, 'import' => 1, 'in' => 1, 'instanceof' => 1, 'int' => 1, 'interface' => 1, 'long' => 1, 'native' => 1, 'new' => 1, 'null' => 1, 'package' => 1, 'private' => 1, 'protected' => 1, 'public' => 1, 'return' => 1, 'short' => 1, 'static' => 1, 'super' => 1, 'switch' => 1, 'synchronized' => 1, 'this' => 1, 'throw' => 1, 'throws' => 1, 'transient' => 1, 'true' => 1, + 'try' => 1, 'typeof' => 1, 'var' => 1, 'void' => 1, 'volatile' => 1, 'while' => 1, 'with' => 1, 'document' => 2, 'getAttribute' => 2, 'getElementsByTagName' => 2, 'getElementById' => 2 + ), 2 => true + ); + + } + + /** + * Finds a delimiter for state OUT. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter0($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => "\n", 1 => "\t", 5 => '.', 6 => '"', 7 => '\'', 8 => '/*', 9 => '//', 12 => ' 'x' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if (preg_match('~^\.\\d+~', $part, $matches)) { + return array(1, $matches[0], $buffer); + } + return array(2, $letter, $buffer); + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state HEXA. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter3($text, $textLength, $textPos) + { + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + + if (preg_match('~^[^a-f\\d]+~i', $part, $matches)) { + return array(0, $matches[0], $buffer); + } + $buffer .= $text[$textPos]; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state QUOTE_DOUBLE. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter4($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '"' + ); + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if (preg_match('~<\\?(php|=|(?!xml))~A', $text, $matches, 0, $textPos)) { + return array(1, $matches[0], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state QUOTE_SINGLE. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter5($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '\'' + ); + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if (preg_match('~<\\?(php|=|(?!xml))~A', $text, $matches, 0, $textPos)) { + return array(1, $matches[0], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state COMMENT_BLOCK. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter6($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => "\n", 1 => "\t", 2 => '*/' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + if (0 === strpos($part, $delimiters[2])) { + return array(2, $delimiters[2], $buffer); + } + if (preg_match('~<\\?(php|=|(?!xml))~A', $text, $matches, 0, $textPos)) { + return array(3, $matches[0], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state COMMENT_LINE. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter7($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => "\n", 1 => "\t" + ); + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + if (preg_match('~<\\?(php|=|(?!xml))~A', $text, $matches, 0, $textPos)) { + return array(2, $matches[0], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state REGEXP. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter8($text, $textLength, $textPos) + { + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + return array(0, $letter, $buffer); + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + +} \ No newline at end of file diff --git a/apigen/libs/FSHL/FSHL/Lexer/Cache/Minimal.php b/apigen/libs/FSHL/FSHL/Lexer/Cache/Minimal.php new file mode 100644 index 00000000000..c9a1fd30d5e --- /dev/null +++ b/apigen/libs/FSHL/FSHL/Lexer/Cache/Minimal.php @@ -0,0 +1,162 @@ +language = 'Minimal'; + $this->trans = array( + 0 => array( + 0 => array( + 0 => 0, 1 => 1 + ), 1 => array( + 0 => 0, 1 => 1 + ) + ) + ); + $this->initialState = 0; + $this->returnState = 1; + $this->quitState = 2; + $this->flags = array( + 0 => 0 + ); + $this->data = array( + 0 => NULL + ); + $this->classes = array( + 0 => NULL + ); + $this->keywords = array( + + ); + + } + + /** + * Finds a delimiter for state OUT. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter0($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => "\n", 1 => "\t" + ); + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + +} \ No newline at end of file diff --git a/apigen/libs/FSHL/FSHL/Lexer/Cache/Neon.php b/apigen/libs/FSHL/FSHL/Lexer/Cache/Neon.php new file mode 100644 index 00000000000..ec7f74e30a1 --- /dev/null +++ b/apigen/libs/FSHL/FSHL/Lexer/Cache/Neon.php @@ -0,0 +1,710 @@ +language = 'Neon'; + $this->trans = array( + 0 => array( + 0 => array( + 0 => 1, 1 => 1 + ), 1 => array( + 0 => 2, 1 => 1 + ), 2 => array( + 0 => 7, 1 => 1 + ), 3 => array( + 0 => 3, 1 => 1 + ), 4 => array( + 0 => 0, 1 => 1 + ), 5 => array( + 0 => 0, 1 => 1 + ) + ), 1 => array( + 0 => array( + 0 => 6, 1 => 1 + ), 1 => array( + 0 => 6, 1 => 1 + ), 2 => array( + 0 => 1, 1 => 1 + ), 3 => array( + 0 => 2, 1 => 1 + ), 4 => array( + 0 => 3, 1 => 1 + ), 5 => array( + 0 => 1, 1 => 1 + ), 6 => array( + 0 => 1, 1 => 1 + ) + ), 2 => array( + 0 => array( + 0 => 6, 1 => 1 + ), 1 => array( + 0 => 6, 1 => 1 + ), 2 => array( + 0 => 4, 1 => 1 + ) + ), 3 => array( + 0 => array( + 0 => 4, 1 => 1 + ) + ), 4 => array( + 0 => array( + 0 => 0, 1 => 1 + ), 1 => array( + 0 => 2, 1 => 1 + ), 2 => array( + 0 => 7, 1 => 1 + ), 3 => array( + 0 => 8, 1 => 1 + ), 4 => array( + 0 => 9, 1 => 1 + ), 5 => array( + 0 => 6, 1 => 1 + ), 6 => array( + 0 => 6, 1 => 1 + ), 7 => array( + 0 => 6, 1 => 1 + ), 8 => array( + 0 => 6, 1 => 1 + ), 9 => array( + 0 => 6, 1 => 1 + ), 10 => array( + 0 => 6, 1 => 1 + ), 11 => array( + 0 => 6, 1 => 1 + ), 12 => array( + 0 => 5, 1 => 1 + ), 13 => array( + 0 => 11, 1 => 1 + ), 14 => array( + 0 => 11, 1 => 1 + ), 15 => array( + 0 => 10, 1 => 1 + ), 16 => array( + 0 => 12, 1 => 1 + ), 17 => array( + 0 => 4, 1 => 1 + ) + ), 5 => array( + 0 => array( + 0 => 10, 1 => 1 + ), 1 => array( + 0 => 7, 1 => 1 + ), 2 => array( + 0 => 0, 1 => 1 + ) + ), 6 => array( + 0 => array( + 0 => 13, 1 => -1 + ) + ), 7 => array( + 0 => array( + 0 => 0, 1 => -1 + ), 1 => array( + 0 => 7, 1 => 1 + ) + ), 8 => array( + 0 => array( + 0 => 13, 1 => 0 + ), 1 => array( + 0 => 10, 1 => 1 + ), 2 => array( + 0 => 8, 1 => 1 + ) + ), 9 => array( + 0 => array( + 0 => 13, 1 => 0 + ), 1 => array( + 0 => 10, 1 => 1 + ), 2 => array( + 0 => 9, 1 => 1 + ) + ), 10 => array( + 0 => array( + 0 => 13, 1 => 0 + ) + ), 11 => array( + 0 => array( + 0 => 11, 1 => 1 + ), 1 => array( + 0 => 13, 1 => -1 + ) + ), 12 => array( + 0 => array( + 0 => 13, 1 => -1 + ) + ) + ); + $this->initialState = 0; + $this->returnState = 13; + $this->quitState = 14; + $this->flags = array( + 0 => 0, 1 => 0, 2 => 0, 3 => 0, 4 => 0, 5 => 0, 6 => 4, 7 => 0, 8 => 4, 9 => 4, 10 => 4, 11 => 4, 12 => 4 + ); + $this->data = array( + 0 => NULL, 1 => NULL, 2 => NULL, 3 => NULL, 4 => NULL, 5 => NULL, 6 => NULL, 7 => NULL, 8 => NULL, 9 => NULL, 10 => NULL, 11 => NULL, 12 => NULL + ); + $this->classes = array( + 0 => NULL, 1 => 'neon-section', 2 => 'neon-key', 3 => 'neon-sep', 4 => 'neon-value', 5 => 'neon-value', 6 => 'neon-sep', 7 => 'neon-comment', 8 => 'neon-quote', 9 => 'neon-quote', 10 => 'neon-var', 11 => 'neon-num', 12 => 'neon-ref' + ); + $this->keywords = array( + + ); + + } + + /** + * Finds a delimiter for state OUT. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter0($text, $textLength, $textPos) + { + static $delimiters = array( + 2 => '#', 3 => '-', 4 => "\n", 5 => "\t" + ); + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + if (preg_match('~[\\w.]+(?=(\\s*<\\s*[\\w.]+)?\\s*:\\s*\n)~Ai', $text, $matches, 0, $textPos)) { + return array(0, $matches[0], $buffer); + } + if (preg_match('~[\\w.]+(?=\\s*(?::|=))~Ai', $text, $matches, 0, $textPos)) { + return array(1, $matches[0], $buffer); + } + if ($delimiters[2] === $letter) { + return array(2, $delimiters[2], $buffer); + } + if ($delimiters[3] === $letter) { + return array(3, $delimiters[3], $buffer); + } + if ($delimiters[4] === $letter) { + return array(4, $delimiters[4], $buffer); + } + if ($delimiters[5] === $letter) { + return array(5, $delimiters[5], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state SECTION. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter1($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '<', 1 => ':', 4 => '-', 5 => "\n", 6 => "\t" + ); + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + if (preg_match('~[\\w.]+(?=(\\s*<\\s*[\\w.]+)?\\s*:\\s*\n)~Ai', $text, $matches, 0, $textPos)) { + return array(2, $matches[0], $buffer); + } + if (preg_match('~[\\w.]+(?=\\s*(?::|=))~Ai', $text, $matches, 0, $textPos)) { + return array(3, $matches[0], $buffer); + } + if ($delimiters[4] === $letter) { + return array(4, $delimiters[4], $buffer); + } + if ($delimiters[5] === $letter) { + return array(5, $delimiters[5], $buffer); + } + if ($delimiters[6] === $letter) { + return array(6, $delimiters[6], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state KEY. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter2($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => ':', 1 => '=' + ); + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + return array(2, $letter, $buffer); + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state LIST. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter3($text, $textLength, $textPos) + { + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + return array(0, $letter, $buffer); + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state VALUE. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter4($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => "\n", 2 => '#', 3 => '"', 4 => '\'', 5 => '[', 6 => ']', 7 => '{', 8 => '}', 9 => '=', 10 => ',', 11 => ':', 16 => '@', 17 => "\t" + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if (preg_match('~[\\w.]+(?=\\s*(?::|=))~Ai', $text, $matches, 0, $textPos)) { + return array(1, $matches[0], $buffer); + } + if ($delimiters[2] === $letter) { + return array(2, $delimiters[2], $buffer); + } + if ($delimiters[3] === $letter) { + return array(3, $delimiters[3], $buffer); + } + if ($delimiters[4] === $letter) { + return array(4, $delimiters[4], $buffer); + } + if ($delimiters[5] === $letter) { + return array(5, $delimiters[5], $buffer); + } + if ($delimiters[6] === $letter) { + return array(6, $delimiters[6], $buffer); + } + if ($delimiters[7] === $letter) { + return array(7, $delimiters[7], $buffer); + } + if ($delimiters[8] === $letter) { + return array(8, $delimiters[8], $buffer); + } + if ($delimiters[9] === $letter) { + return array(9, $delimiters[9], $buffer); + } + if ($delimiters[10] === $letter) { + return array(10, $delimiters[10], $buffer); + } + if ($delimiters[11] === $letter) { + return array(11, $delimiters[11], $buffer); + } + if (preg_match('~[a-z](?![,\\]}#\n])~Ai', $text, $matches, 0, $textPos)) { + return array(12, $matches[0], $buffer); + } + if (preg_match('~^\\d+~', $part, $matches)) { + return array(13, $matches[0], $buffer); + } + if (preg_match('~^\.\\d+~', $part, $matches)) { + return array(14, $matches[0], $buffer); + } + if (preg_match('~%\\w+(?=%)~Ai', $text, $matches, 0, $textPos)) { + return array(15, $matches[0], $buffer); + } + if ($delimiters[16] === $letter) { + return array(16, $delimiters[16], $buffer); + } + if ($delimiters[17] === $letter) { + return array(17, $delimiters[17], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state TEXT. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter5($text, $textLength, $textPos) + { + static $delimiters = array( + 1 => '#', 2 => "\n" + ); + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + if (preg_match('~%\\w+(?=%)~Ai', $text, $matches, 0, $textPos)) { + return array(0, $matches[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + if ($delimiters[2] === $letter) { + return array(2, $delimiters[2], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state SEPARATOR. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter6($text, $textLength, $textPos) + { + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + return array(0, $letter, $buffer); + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state COMMENT. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter7($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => "\n", 1 => "\t" + ); + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state QUOTE_DOUBLE. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter8($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '"', 2 => "\t" + ); + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if (preg_match('~%\\w+(?=%)~Ai', $text, $matches, 0, $textPos)) { + return array(1, $matches[0], $buffer); + } + if ($delimiters[2] === $letter) { + return array(2, $delimiters[2], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state QUOTE_SINGLE. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter9($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '\'', 2 => "\t" + ); + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if (preg_match('~%\\w+(?=%)~Ai', $text, $matches, 0, $textPos)) { + return array(1, $matches[0], $buffer); + } + if ($delimiters[2] === $letter) { + return array(2, $delimiters[2], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state VARIABLE. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter10($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '%' + ); + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state NUMBER. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter11($text, $textLength, $textPos) + { + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if (preg_match('~^\.\\d+~', $part, $matches)) { + return array(0, $matches[0], $buffer); + } + return array(1, $letter, $buffer); + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state REFERENCE. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter12($text, $textLength, $textPos) + { + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + + if (preg_match('~^\\W+~', $part, $matches)) { + return array(0, $matches[0], $buffer); + } + $buffer .= $text[$textPos]; + $textPos++; + } + return array(-1, -1, $buffer); + } + +} \ No newline at end of file diff --git a/apigen/libs/FSHL/FSHL/Lexer/Cache/Php.php b/apigen/libs/FSHL/FSHL/Lexer/Cache/Php.php new file mode 100644 index 00000000000..06bd5c76f6e --- /dev/null +++ b/apigen/libs/FSHL/FSHL/Lexer/Cache/Php.php @@ -0,0 +1,992 @@ +language = 'Php'; + $this->trans = array( + 0 => array( + 0 => array( + 0 => 5, 1 => 1 + ), 1 => array( + 0 => 10, 1 => 1 + ), 2 => array( + 0 => 7, 1 => 1 + ), 3 => array( + 0 => 2, 1 => -1 + ), 4 => array( + 0 => 2, 1 => -1 + ), 5 => array( + 0 => 13, 1 => 1 + ), 6 => array( + 0 => 13, 1 => 1 + ), 7 => array( + 0 => 0, 1 => 1 + ), 8 => array( + 0 => 0, 1 => 1 + ), 9 => array( + 0 => 4, 1 => 1 + ), 10 => array( + 0 => 3, 1 => 1 + ), 11 => array( + 0 => 4, 1 => 1 + ), 12 => array( + 0 => 17, 1 => 1 + ), 13 => array( + 0 => 1, 1 => -1 + ), 14 => array( + 0 => 11, 1 => 1 + ), 15 => array( + 0 => 8, 1 => 1 + ) + ), 1 => array( + 0 => array( + 0 => 16, 1 => 0 + ), 1 => array( + 0 => 16, 1 => 0 + ), 2 => array( + 0 => 16, 1 => 0 + ) + ), 2 => array( + 0 => array( + 0 => 16, 1 => -1 + ) + ), 3 => array( + 0 => array( + 0 => 3, 1 => 1 + ), 1 => array( + 0 => 3, 1 => 1 + ), 2 => array( + 0 => 16, 1 => 0 + ) + ), 4 => array( + 0 => array( + 0 => 16, 1 => -1 + ), 1 => array( + 0 => 4, 1 => 1 + ), 2 => array( + 0 => 16, 1 => 0 + ) + ), 5 => array( + 0 => array( + 0 => 16, 1 => -1 + ), 1 => array( + 0 => 5, 1 => 1 + ), 2 => array( + 0 => 5, 1 => 1 + ), 3 => array( + 0 => 5, 1 => 1 + ) + ), 6 => array( + 0 => array( + 0 => 16, 1 => 0 + ), 1 => array( + 0 => 16, 1 => -1 + ) + ), 7 => array( + 0 => array( + 0 => 16, 1 => 0 + ), 1 => array( + 0 => 7, 1 => 1 + ), 2 => array( + 0 => 7, 1 => 1 + ), 3 => array( + 0 => 5, 1 => 1 + ), 4 => array( + 0 => 6, 1 => 1 + ), 5 => array( + 0 => 7, 1 => 1 + ), 6 => array( + 0 => 7, 1 => 1 + ) + ), 8 => array( + 0 => array( + 0 => 9, 1 => 1 + ), 1 => array( + 0 => 8, 1 => 1 + ), 2 => array( + 0 => 8, 1 => 1 + ), 3 => array( + 0 => 5, 1 => 1 + ), 4 => array( + 0 => 6, 1 => 1 + ) + ), 9 => array( + 0 => array( + 0 => 0, 1 => 0 + ), 1 => array( + 0 => 8, 1 => -1 + ) + ), 10 => array( + 0 => array( + 0 => 16, 1 => 0 + ), 1 => array( + 0 => 10, 1 => 1 + ), 2 => array( + 0 => 10, 1 => 1 + ), 3 => array( + 0 => 10, 1 => 1 + ), 4 => array( + 0 => 10, 1 => 1 + ) + ), 11 => array( + 0 => array( + 0 => 12, 1 => 1 + ), 1 => array( + 0 => 11, 1 => 1 + ) + ), 12 => array( + 0 => array( + 0 => 0, 1 => 0 + ), 1 => array( + 0 => 11, 1 => -1 + ) + ), 13 => array( + 0 => array( + 0 => 14, 1 => 1 + ), 1 => array( + 0 => 14, 1 => 1 + ), 2 => array( + 0 => 15, 1 => 1 + ), 3 => array( + 0 => 13, 1 => 1 + ), 4 => array( + 0 => 13, 1 => 1 + ), 5 => array( + 0 => 16, 1 => -1 + ) + ), 14 => array( + 0 => array( + 0 => 14, 1 => 0 + ), 1 => array( + 0 => 14, 1 => 0 + ), 2 => array( + 0 => 16, 1 => -1 + ) + ), 15 => array( + 0 => array( + 0 => 16, 1 => -1 + ) + ), 17 => NULL + ); + $this->initialState = 0; + $this->returnState = 16; + $this->quitState = 17; + $this->flags = array( + 0 => 0, 1 => 4, 2 => 5, 3 => 4, 4 => 4, 5 => 4, 6 => 4, 7 => 4, 8 => 0, 9 => 0, 10 => 4, 11 => 0, 12 => 0, 13 => 4, 14 => 0, 15 => 0, 17 => 8 + ); + $this->data = array( + 0 => NULL, 1 => NULL, 2 => NULL, 3 => NULL, 4 => NULL, 5 => NULL, 6 => NULL, 7 => NULL, 8 => NULL, 9 => NULL, 10 => NULL, 11 => NULL, 12 => NULL, 13 => NULL, 14 => NULL, 15 => NULL, 17 => NULL + ); + $this->classes = array( + 0 => NULL, 1 => 'xlang', 2 => NULL, 3 => 'php-comment', 4 => 'php-comment', 5 => 'php-var', 6 => 'php-var', 7 => 'php-quote', 8 => 'php-quote', 9 => 'php-quote', 10 => 'php-quote', 11 => 'php-quote', 12 => 'php-quote', 13 => 'php-num', 14 => 'php-num', 15 => 'php-num', 17 => 'xlang' + ); + $this->keywords = array( + 0 => 'php-keyword', 1 => array( + 'abstract' => 1, 'and' => 1, 'array' => 1, 'as' => 1, 'break' => 1, 'callable' => 1, 'case' => 1, 'catch' => 1, 'class' => 1, 'clone' => 1, 'const' => 1, 'continue' => 1, 'declare' => 1, 'default' => 1, 'do' => 1, 'else' => 1, 'elseif' => 1, 'enddeclare' => 1, 'endfor' => 1, 'endforeach' => 1, 'endif' => 1, 'endswitch' => 1, 'endwhile' => 2, 'extends' => 1, 'final' => 1, 'for' => 1, + 'foreach' => 1, 'function' => 1, 'global' => 1, 'goto' => 1, 'if' => 1, 'implements' => 1, 'interface' => 1, 'instanceof' => 1, 'insteadof' => 1, 'namespace' => 1, 'new' => 1, 'or' => 1, 'private' => 1, 'protected' => 1, 'public' => 1, 'static' => 1, 'switch' => 1, 'throw' => 1, 'trait' => 1, 'try' => 1, 'use' => 1, 'var' => 1, 'while' => 1, 'xor' => 1, '__CLASS__' => 1, '__DIR__' => 1, + '__FILE__' => 1, '__LINE__' => 1, '__FUNCTION__' => 1, '__METHOD__' => 1, '__NAMESPACE__' => 1, '__TRAIT__' => 1, 'die' => 1, 'echo' => 1, 'empty' => 1, 'exit' => 1, 'eval' => 2, 'include' => 1, 'include_once' => 1, 'isset' => 1, 'list' => 1, 'require' => 1, 'require_once' => 1, 'return' => 1, 'print' => 1, 'unset' => 1, 'true' => 1, 'false' => 1, 'null' => 1, 'abs' => 2, 'acos' => 2, 'acosh' => 2, + 'ada_afetch' => 2, 'ada_autocommit' => 2, 'ada_close' => 2, 'ada_commit' => 2, 'ada_connect' => 2, 'ada_exec' => 2, 'ada_fetchrow' => 2, 'ada_fieldname' => 2, 'ada_fieldnum' => 2, 'ada_fieldtype' => 2, 'ada_freeresult' => 2, 'ada_numfields' => 2, 'ada_numrows' => 2, 'ada_result' => 2, 'ada_resultall' => 2, 'ada_rollback' => 2, 'addcslashes' => 2, 'addslashes' => 2, 'aggregate' => 2, 'aggregate_methods' => 2, 'aggregate_methods_by_list' => 2, 'aggregate_methods_by_regexp' => 2, 'aggregate_properties' => 2, 'aggregate_properties_by_list' => 2, 'aggregate_properties_by_regexp' => 2, 'aggregation_info' => 2, + 'apache_child_terminate' => 2, 'apache_get_modules' => 2, 'apache_get_version' => 2, 'apache_getenv' => 2, 'apache_lookup_uri' => 2, 'apache_note' => 2, 'apache_request_headers' => 2, 'apache_response_headers' => 2, 'apache_setenv' => 2, 'apc_add' => 2, 'apc_bin_dump' => 2, 'apc_bin_dumpfile' => 2, 'apc_bin_load' => 2, 'apc_bin_loadfile' => 2, 'apc_cache_info' => 2, 'apc_cas' => 2, 'apc_clear_cache' => 2, 'apc_compile_file' => 2, 'apc_dec' => 2, 'apc_define_constants' => 2, 'apc_delete' => 2, 'apc_delete_file' => 2, 'apc_exists' => 2, 'apc_fetch' => 2, 'apc_inc' => 2, 'apc_load_constants' => 2, + 'apc_sma_info' => 2, 'apc_store' => 2, 'array_change_key_case' => 2, 'array_chunk' => 2, 'array_combine' => 2, 'array_count_values' => 2, 'array_diff' => 2, 'array_diff_assoc' => 2, 'array_diff_key' => 2, 'array_diff_uassoc' => 2, 'array_diff_ukey' => 2, 'array_fill' => 2, 'array_fill_keys' => 2, 'array_filter' => 2, 'array_flip' => 2, 'array_intersect' => 2, 'array_intersect_assoc' => 2, 'array_intersect_key' => 2, 'array_intersect_uassoc' => 2, 'array_intersect_ukey' => 2, 'array_key_exists' => 2, 'array_keys' => 2, 'array_map' => 2, 'array_merge' => 2, 'array_merge_recursive' => 2, 'array_multisort' => 2, + 'array_pad' => 2, 'array_pop' => 2, 'array_product' => 2, 'array_push' => 2, 'array_rand' => 2, 'array_reduce' => 2, 'array_replace' => 2, 'array_replace_recursive' => 2, 'array_reverse' => 2, 'array_search' => 2, 'array_shift' => 2, 'array_slice' => 2, 'array_splice' => 2, 'array_sum' => 2, 'array_udiff' => 2, 'array_udiff_assoc' => 2, 'array_udiff_uassoc' => 2, 'array_uintersect' => 2, 'array_uintersect_assoc' => 2, 'array_uintersect_uassoc' => 2, 'array_unique' => 2, 'array_unshift' => 2, 'array_values' => 2, 'array_walk' => 2, 'array_walk_recursive' => 2, 'arsort' => 2, + 'asin' => 2, 'asinh' => 2, 'asort' => 2, 'aspell_check' => 2, 'aspell_check-raw' => 2, 'aspell_new' => 2, 'aspell_suggest' => 2, 'assert' => 2, 'assert_options' => 2, 'atan' => 2, 'atan2' => 2, 'atanh' => 2, 'base64_decode' => 2, 'base64_encode' => 2, 'base_convert' => 2, 'basename' => 2, 'bcadd' => 2, 'bccomp' => 2, 'bcdiv' => 2, 'bcmod' => 2, 'bcmul' => 2, 'bcompiler_load' => 2, 'bcompiler_load_exe' => 2, 'bcompiler_parse_class' => 2, 'bcompiler_read' => 2, 'bcompiler_write_class' => 2, + 'bcompiler_write_constant' => 2, 'bcompiler_write_exe_footer' => 2, 'bcompiler_write_file' => 2, 'bcompiler_write_footer' => 2, 'bcompiler_write_function' => 2, 'bcompiler_write_functions_from_file' => 2, 'bcompiler_write_header' => 2, 'bcompiler_write_included_filename' => 2, 'bcpow' => 2, 'bcpowmod' => 2, 'bcscale' => 2, 'bcsqrt' => 2, 'bcsub' => 2, 'bin2hex' => 2, 'bind_textdomain_codeset' => 2, 'bindec' => 2, 'bindtextdomain' => 2, 'bitset_empty' => 2, 'bitset_equal' => 2, 'bitset_excl' => 2, 'bitset_fill' => 2, 'bitset_from_array' => 2, 'bitset_from_hash' => 2, 'bitset_from_string' => 2, 'bitset_in' => 2, 'bitset_incl' => 2, + 'bitset_intersection' => 2, 'bitset_invert' => 2, 'bitset_is_empty' => 2, 'bitset_subset' => 2, 'bitset_to_array' => 2, 'bitset_to_hash' => 2, 'bitset_to_string' => 2, 'bitset_union' => 2, 'blenc_encrypt' => 2, 'bzclose' => 2, 'bzcompress' => 2, 'bzdecompress' => 2, 'bzerrno' => 2, 'bzerror' => 2, 'bzerrstr' => 2, 'bzflush' => 2, 'bzopen' => 2, 'bzread' => 2, 'bzwrite' => 2, 'cal_days_in_month' => 2, 'cal_from_jd' => 2, 'cal_info' => 2, 'cal_to_jd' => 2, 'call_user_func' => 2, 'call_user_func_array' => 2, 'call_user_method' => 2, + 'call_user_method_array' => 2, 'ceil' => 2, 'chdir' => 2, 'checkdate' => 2, 'checkdnsrr' => 2, 'chgrp' => 2, 'chmod' => 2, 'chop' => 2, 'chown' => 2, 'chr' => 2, 'chunk_split' => 2, 'class_alias' => 2, 'class_exists' => 2, 'class_implements' => 2, 'class_parents' => 2, 'classkit_aggregate_methods' => 2, 'classkit_doc_comments' => 2, 'classkit_import' => 2, 'classkit_method_add' => 2, 'classkit_method_copy' => 2, 'classkit_method_redefine' => 2, 'classkit_method_remove' => 2, 'classkit_method_rename' => 2, 'clearstatcache' => 2, 'closedir' => 2, 'closelog' => 2, + 'collator_asort' => 2, 'collator_compare' => 2, 'collator_create' => 2, 'collator_get_attribute' => 2, 'collator_get_error_code' => 2, 'collator_get_error_message' => 2, 'collator_get_locale' => 2, 'collator_get_sort_key' => 2, 'collator_get_strength' => 2, 'collator_set_attribute' => 2, 'collator_set_strength' => 2, 'collator_sort' => 2, 'collator_sort_with_sort_keys' => 2, 'com_create_guid' => 2, 'com_event_sink' => 2, 'com_get_active_object' => 2, 'com_load_typelib' => 2, 'com_message_pump' => 2, 'com_print_typeinfo' => 2, 'compact' => 2, 'confirm_phpdoc_compiled' => 2, 'connection_aborted' => 2, 'connection_status' => 2, 'connection_timeout' => 2, 'constant' => 2, 'contained' => 2, + 'convert_cyr_string' => 2, 'convert_uudecode' => 2, 'convert_uuencode' => 2, 'copy' => 2, 'cos' => 2, 'cosh' => 2, 'count' => 2, 'count_chars' => 2, 'cpdf_add_annotation' => 2, 'cpdf_add_outline' => 2, 'cpdf_arc' => 2, 'cpdf_begin_text' => 2, 'cpdf_circle' => 2, 'cpdf_clip' => 2, 'cpdf_close' => 2, 'cpdf_closepath' => 2, 'cpdf_closepath_fill_stroke' => 2, 'cpdf_closepath_stroke' => 2, 'cpdf_continue_text' => 2, 'cpdf_curveto' => 2, 'cpdf_end_text' => 2, 'cpdf_fill' => 2, 'cpdf_fill_stroke' => 2, 'cpdf_finalize' => 2, 'cpdf_finalize_page' => 2, 'cpdf_global_set_document_limits' => 2, + 'cpdf_import_jpeg' => 2, 'cpdf_lineto' => 2, 'cpdf_moveto' => 2, 'cpdf_newpath' => 2, 'cpdf_open' => 2, 'cpdf_output_buffer' => 2, 'cpdf_page_init' => 2, 'cpdf_place_inline_image' => 2, 'cpdf_rect' => 2, 'cpdf_restore' => 2, 'cpdf_rlineto' => 2, 'cpdf_rmoveto' => 2, 'cpdf_rotate' => 2, 'cpdf_rotate_text' => 2, 'cpdf_save' => 2, 'cpdf_save_to_file' => 2, 'cpdf_scale' => 2, 'cpdf_set_action_url' => 2, 'cpdf_set_char_spacing' => 2, 'cpdf_set_creator' => 2, 'cpdf_set_current_page' => 2, 'cpdf_set_font' => 2, 'cpdf_set_font_directories' => 2, 'cpdf_set_font_map_file' => 2, 'cpdf_set_horiz_scaling' => 2, 'cpdf_set_keywords' => 2, + 'cpdf_set_leading' => 2, 'cpdf_set_page_animation' => 2, 'cpdf_set_subject' => 2, 'cpdf_set_text_matrix' => 2, 'cpdf_set_text_pos' => 2, 'cpdf_set_text_rendering' => 2, 'cpdf_set_text_rise' => 2, 'cpdf_set_title' => 2, 'cpdf_set_viewer_preferences' => 2, 'cpdf_set_word_spacing' => 2, 'cpdf_setdash' => 2, 'cpdf_setflat' => 2, 'cpdf_setgray' => 2, 'cpdf_setgray_fill' => 2, 'cpdf_setgray_stroke' => 2, 'cpdf_setlinecap' => 2, 'cpdf_setlinejoin' => 2, 'cpdf_setlinewidth' => 2, 'cpdf_setmiterlimit' => 2, 'cpdf_setrgbcolor' => 2, 'cpdf_setrgbcolor_fill' => 2, 'cpdf_setrgbcolor_stroke' => 2, 'cpdf_show' => 2, 'cpdf_show_xy' => 2, 'cpdf_stringwidth' => 2, 'cpdf_stroke' => 2, + 'cpdf_text' => 2, 'cpdf_translate' => 2, 'crack_check' => 2, 'crack_closedict' => 2, 'crack_getlastmessage' => 2, 'crack_opendict' => 2, 'crc32' => 2, 'create_function' => 2, 'crypt' => 2, 'ctype_alnum' => 2, 'ctype_alpha' => 2, 'ctype_cntrl' => 2, 'ctype_digit' => 2, 'ctype_graph' => 2, 'ctype_lower' => 2, 'ctype_print' => 2, 'ctype_punct' => 2, 'ctype_space' => 2, 'ctype_upper' => 2, 'ctype_xdigit' => 2, 'curl_close' => 2, 'curl_copy_handle' => 2, 'curl_errno' => 2, 'curl_error' => 2, 'curl_exec' => 2, 'curl_getinfo' => 2, + 'curl_init' => 2, 'curl_multi_add_handle' => 2, 'curl_multi_close' => 2, 'curl_multi_exec' => 2, 'curl_multi_getcontent' => 2, 'curl_multi_info_read' => 2, 'curl_multi_init' => 2, 'curl_multi_remove_handle' => 2, 'curl_multi_select' => 2, 'curl_setopt' => 2, 'curl_setopt_array' => 2, 'curl_version' => 2, 'current' => 2, 'cvsclient_connect' => 2, 'cvsclient_log' => 2, 'cvsclient_login' => 2, 'cvsclient_retrieve' => 2, 'date' => 2, 'date_add' => 2, 'date_create' => 2, 'date_create_from_format' => 2, 'date_date_set' => 2, 'date_default_timezone_get' => 2, 'date_default_timezone_set' => 2, 'date_diff' => 2, 'date_format' => 2, + 'date_get_last_errors' => 2, 'date_interval_create_from_date_string' => 2, 'date_interval_format' => 2, 'date_isodate_set' => 2, 'date_modify' => 2, 'date_offset_get' => 2, 'date_parse' => 2, 'date_parse_from_format' => 2, 'date_sub' => 2, 'date_sun_info' => 2, 'date_sunrise' => 2, 'date_sunset' => 2, 'date_time_set' => 2, 'date_timestamp_get' => 2, 'date_timestamp_set' => 2, 'date_timezone_get' => 2, 'date_timezone_set' => 2, 'datefmt_create' => 2, 'datefmt_format' => 2, 'datefmt_get_calendar' => 2, 'datefmt_get_datetype' => 2, 'datefmt_get_error_code' => 2, 'datefmt_get_error_message' => 2, 'datefmt_get_locale' => 2, 'datefmt_get_pattern' => 2, 'datefmt_get_timetype' => 2, + 'datefmt_get_timezone_id' => 2, 'datefmt_is_lenient' => 2, 'datefmt_localtime' => 2, 'datefmt_parse' => 2, 'datefmt_set_calendar' => 2, 'datefmt_set_lenient' => 2, 'datefmt_set_pattern' => 2, 'datefmt_set_timezone_id' => 2, 'db_id_list' => 2, 'dba_close' => 2, 'dba_delete' => 2, 'dba_exists' => 2, 'dba_fetch' => 2, 'dba_firstkey' => 2, 'dba_handlers' => 2, 'dba_insert' => 2, 'dba_key_split' => 2, 'dba_list' => 2, 'dba_nextkey' => 2, 'dba_open' => 2, 'dba_optimize' => 2, 'dba_popen' => 2, 'dba_replace' => 2, 'dba_sync' => 2, 'dbase_add_record' => 2, 'dbase_close' => 2, + 'dbase_create' => 2, 'dbase_delete_record' => 2, 'dbase_get_header_info' => 2, 'dbase_get_record' => 2, 'dbase_get_record_with_names' => 2, 'dbase_numfields' => 2, 'dbase_numrecords' => 2, 'dbase_open' => 2, 'dbase_pack' => 2, 'dbase_replace_record' => 2, 'dbg_get_all_contexts' => 2, 'dbg_get_all_module_names' => 2, 'dbg_get_all_source_lines' => 2, 'dbg_get_context_name' => 2, 'dbg_get_loaded_zendextensions' => 2, 'dbg_get_module_name' => 2, 'dbg_get_profiler_results' => 2, 'dbg_get_source_context' => 2, 'dblist' => 2, 'dbmclose' => 2, 'dbmdelete' => 2, 'dbmexists' => 2, 'dbmfetch' => 2, 'dbmfirstkey' => 2, 'dbminsert' => 2, 'dbmnextkey' => 2, + 'dbmopen' => 2, 'dbmreplace' => 2, 'dbx_close' => 2, 'dbx_compare' => 2, 'dbx_connect' => 2, 'dbx_error' => 2, 'dbx_escape_string' => 2, 'dbx_fetch_row' => 2, 'dbx_query' => 2, 'dbx_sort' => 2, 'dcgettext' => 2, 'dcngettext' => 2, 'deaggregate' => 2, 'debug_backtrace' => 2, 'debug_print_backtrace' => 2, 'debug_zval_dump' => 2, 'debugbreak' => 2, 'debugger_off' => 2, 'debugger_on' => 2, 'decbin' => 2, 'dechex' => 2, 'decoct' => 2, 'define' => 2, 'define_syslog_variables' => 2, 'defined' => 2, 'deg2rad' => 2, + 'delete' => 2, 'dgettext' => 2, 'dio_close' => 2, 'dio_open' => 2, 'dio_read' => 2, 'dio_seek' => 2, 'dio_stat' => 2, 'dio_write' => 2, 'dir' => 2, 'dirname' => 2, 'disk_free_space' => 2, 'disk_total_space' => 2, 'diskfreespace' => 2, 'dl' => 2, 'dngettext' => 2, 'dns_check_record' => 2, 'dns_get_mx' => 2, 'dns_get_record' => 2, 'docblock_token_name' => 2, 'docblock_tokenize' => 2, 'dom_import_simplexml' => 2, 'domxml_add_root' => 2, 'domxml_attributes' => 2, 'domxml_children' => 2, 'domxml_doc_add_root' => 2, 'domxml_doc_document_element' => 2, + 'domxml_doc_get_element_by_id' => 2, 'domxml_doc_get_elements_by_tagname' => 2, 'domxml_doc_get_root' => 2, 'domxml_doc_set_root' => 2, 'domxml_doc_validate' => 2, 'domxml_doc_xinclude' => 2, 'domxml_dump_mem' => 2, 'domxml_dump_mem_file' => 2, 'domxml_dump_node' => 2, 'domxml_dumpmem' => 2, 'domxml_elem_get_attribute' => 2, 'domxml_elem_set_attribute' => 2, 'domxml_get_attribute' => 2, 'domxml_getattr' => 2, 'domxml_html_dump_mem' => 2, 'domxml_new_child' => 2, 'domxml_new_doc' => 2, 'domxml_new_xmldoc' => 2, 'domxml_node' => 2, 'domxml_node_add_namespace' => 2, 'domxml_node_attributes' => 2, 'domxml_node_children' => 2, 'domxml_node_get_content' => 2, 'domxml_node_has_attributes' => 2, 'domxml_node_new_child' => 2, 'domxml_node_set_content' => 2, + 'domxml_node_set_namespace' => 2, 'domxml_node_unlink_node' => 2, 'domxml_open_file' => 2, 'domxml_open_mem' => 2, 'domxml_parser' => 2, 'domxml_parser_add_chunk' => 2, 'domxml_parser_cdata_section' => 2, 'domxml_parser_characters' => 2, 'domxml_parser_comment' => 2, 'domxml_parser_end' => 2, 'domxml_parser_end_document' => 2, 'domxml_parser_end_element' => 2, 'domxml_parser_entity_reference' => 2, 'domxml_parser_get_document' => 2, 'domxml_parser_namespace_decl' => 2, 'domxml_parser_processing_instruction' => 2, 'domxml_parser_start_document' => 2, 'domxml_parser_start_element' => 2, 'domxml_root' => 2, 'domxml_set_attribute' => 2, 'domxml_setattr' => 2, 'domxml_substitute_entities_default' => 2, 'domxml_unlink_node' => 2, 'domxml_version' => 2, 'domxml_xmltree' => 2, 'doubleval' => 2, + 'each' => 2, 'easter_date' => 2, 'easter_days' => 2, 'end' => 2, 'ereg' => 2, 'ereg_replace' => 2, 'eregi' => 2, 'eregi_replace' => 2, 'error_get_last' => 2, 'error_log' => 2, 'error_reporting' => 2, 'escapeshellarg' => 2, 'escapeshellcmd' => 2, 'event_deschedule' => 2, 'event_dispatch' => 2, 'event_free' => 2, 'event_handle_signal' => 2, 'event_have_events' => 2, 'event_init' => 2, 'event_new' => 2, 'event_pending' => 2, 'event_priority_set' => 2, 'event_schedule' => 2, 'event_set' => 2, 'event_timeout' => 2, 'exec' => 2, + 'exif_imagetype' => 2, 'exif_read_data' => 2, 'exif_tagname' => 2, 'exif_thumbnail' => 2, 'exp' => 2, 'explode' => 2, 'expm1' => 2, 'extension_loaded' => 2, 'extract' => 2, 'ezmlm_hash' => 2, 'fbird_add_user' => 2, 'fbird_affected_rows' => 2, 'fbird_backup' => 2, 'fbird_blob_add' => 2, 'fbird_blob_cancel' => 2, 'fbird_blob_close' => 2, 'fbird_blob_create' => 2, 'fbird_blob_echo' => 2, 'fbird_blob_get' => 2, 'fbird_blob_import' => 2, 'fbird_blob_info' => 2, 'fbird_blob_open' => 2, 'fbird_close' => 2, 'fbird_commit' => 2, 'fbird_commit_ret' => 2, 'fbird_connect' => 2, + 'fbird_db_info' => 2, 'fbird_delete_user' => 2, 'fbird_drop_db' => 2, 'fbird_errcode' => 2, 'fbird_errmsg' => 2, 'fbird_execute' => 2, 'fbird_fetch_assoc' => 2, 'fbird_fetch_object' => 2, 'fbird_fetch_row' => 2, 'fbird_field_info' => 2, 'fbird_free_event_handler' => 2, 'fbird_free_query' => 2, 'fbird_free_result' => 2, 'fbird_gen_id' => 2, 'fbird_maintain_db' => 2, 'fbird_modify_user' => 2, 'fbird_name_result' => 2, 'fbird_num_fields' => 2, 'fbird_num_params' => 2, 'fbird_param_info' => 2, 'fbird_pconnect' => 2, 'fbird_prepare' => 2, 'fbird_query' => 2, 'fbird_restore' => 2, 'fbird_rollback' => 2, 'fbird_rollback_ret' => 2, + 'fbird_server_info' => 2, 'fbird_service_attach' => 2, 'fbird_service_detach' => 2, 'fbird_set_event_handler' => 2, 'fbird_trans' => 2, 'fbird_wait_event' => 2, 'fclose' => 2, 'fdf_add_doc_javascript' => 2, 'fdf_add_template' => 2, 'fdf_close' => 2, 'fdf_create' => 2, 'fdf_enum_values' => 2, 'fdf_errno' => 2, 'fdf_error' => 2, 'fdf_get_ap' => 2, 'fdf_get_attachment' => 2, 'fdf_get_encoding' => 2, 'fdf_get_file' => 2, 'fdf_get_flags' => 2, 'fdf_get_opt' => 2, 'fdf_get_status' => 2, 'fdf_get_value' => 2, 'fdf_get_version' => 2, 'fdf_header' => 2, 'fdf_next_field_name' => 2, 'fdf_open' => 2, + 'fdf_open_string' => 2, 'fdf_remove_item' => 2, 'fdf_save' => 2, 'fdf_save_string' => 2, 'fdf_set_ap' => 2, 'fdf_set_encoding' => 2, 'fdf_set_file' => 2, 'fdf_set_flags' => 2, 'fdf_set_javascript_action' => 2, 'fdf_set_on_import_javascript' => 2, 'fdf_set_opt' => 2, 'fdf_set_status' => 2, 'fdf_set_submit_form_action' => 2, 'fdf_set_target_frame' => 2, 'fdf_set_value' => 2, 'fdf_set_version' => 2, 'feof' => 2, 'fflush' => 2, 'fgetc' => 2, 'fgetcsv' => 2, 'fgets' => 2, 'fgetss' => 2, 'file' => 2, 'file_exists' => 2, 'file_get_contents' => 2, 'file_put_contents' => 2, + 'fileatime' => 2, 'filectime' => 2, 'filegroup' => 2, 'fileinode' => 2, 'filemtime' => 2, 'fileowner' => 2, 'fileperms' => 2, 'filepro' => 2, 'filepro_fieldcount' => 2, 'filepro_fieldname' => 2, 'filepro_fieldtype' => 2, 'filepro_fieldwidth' => 2, 'filepro_retrieve' => 2, 'filepro_rowcount' => 2, 'filesize' => 2, 'filetype' => 2, 'filter_has_var' => 2, 'filter_id' => 2, 'filter_input' => 2, 'filter_input_array' => 2, 'filter_list' => 2, 'filter_var' => 2, 'filter_var_array' => 2, 'finfo_buffer' => 2, 'finfo_close' => 2, 'finfo_file' => 2, + 'finfo_open' => 2, 'finfo_set_flags' => 2, 'floatval' => 2, 'flock' => 2, 'floor' => 2, 'flush' => 2, 'fmod' => 2, 'fnmatch' => 2, 'fopen' => 2, 'forward_static_call' => 2, 'forward_static_call_array' => 2, 'fpassthru' => 2, 'fprintf' => 2, 'fputcsv' => 2, 'fputs' => 2, 'fread' => 2, 'frenchtojd' => 2, 'fribidi_charset_info' => 2, 'fribidi_get_charsets' => 2, 'fribidi_log2vis' => 2, 'fscanf' => 2, 'fseek' => 2, 'fsockopen' => 2, 'fstat' => 2, 'ftell' => 2, 'ftok' => 2, + 'ftp_alloc' => 2, 'ftp_cdup' => 2, 'ftp_chdir' => 2, 'ftp_chmod' => 2, 'ftp_close' => 2, 'ftp_connect' => 2, 'ftp_delete' => 2, 'ftp_exec' => 2, 'ftp_fget' => 2, 'ftp_fput' => 2, 'ftp_get' => 2, 'ftp_get_option' => 2, 'ftp_login' => 2, 'ftp_mdtm' => 2, 'ftp_mkdir' => 2, 'ftp_nb_continue' => 2, 'ftp_nb_fget' => 2, 'ftp_nb_fput' => 2, 'ftp_nb_get' => 2, 'ftp_nb_put' => 2, 'ftp_nlist' => 2, 'ftp_pasv' => 2, 'ftp_put' => 2, 'ftp_pwd' => 2, 'ftp_quit' => 2, 'ftp_raw' => 2, + 'ftp_rawlist' => 2, 'ftp_rename' => 2, 'ftp_rmdir' => 2, 'ftp_set_option' => 2, 'ftp_site' => 2, 'ftp_size' => 2, 'ftp_ssl_connect' => 2, 'ftp_systype' => 2, 'ftruncate' => 2, 'func_get_arg' => 2, 'func_get_args' => 2, 'func_num_args' => 2, 'function_exists' => 2, 'fwrite' => 2, 'gc_collect_cycles' => 2, 'gc_disable' => 2, 'gc_enable' => 2, 'gc_enabled' => 2, 'gd_info' => 2, 'get_browser' => 2, 'get_called_class' => 2, 'get_cfg_var' => 2, 'get_class' => 2, 'get_class_methods' => 2, 'get_class_vars' => 2, 'get_current_user' => 2, + 'get_declared_classes' => 2, 'get_declared_interfaces' => 2, 'get_declared_traits' => 2, 'get_defined_constants' => 2, 'get_defined_functions' => 2, 'get_defined_vars' => 2, 'get_extension_funcs' => 2, 'get_headers' => 2, 'get_html_translation_table' => 2, 'get_include_path' => 2, 'get_included_files' => 2, 'get_loaded_extensions' => 2, 'get_magic_quotes_gpc' => 2, 'get_magic_quotes_runtime' => 2, 'get_meta_tags' => 2, 'get_object_vars' => 2, 'get_parent_class' => 2, 'get_required_files' => 2, 'get_resource_type' => 2, 'getallheaders' => 2, 'getcwd' => 2, 'getdate' => 2, 'getenv' => 2, 'gethostbyaddr' => 2, 'gethostbyname' => 2, 'gethostbynamel' => 2, + 'gethostname' => 2, 'getimagesize' => 2, 'getimagesizefromstring' => 2, 'getlastmod' => 2, 'getmxrr' => 2, 'getmygid' => 2, 'getmyinode' => 2, 'getmypid' => 2, 'getmyuid' => 2, 'getopt' => 2, 'getprotobyname' => 2, 'getprotobynumber' => 2, 'getrandmax' => 2, 'getrusage' => 2, 'getservbyname' => 2, 'getservbyport' => 2, 'gettext' => 2, 'gettimeofday' => 2, 'gettype' => 2, 'glob' => 2, 'gmdate' => 2, 'gmmktime' => 2, 'gmp_abs' => 2, 'gmp_add' => 2, 'gmp_and' => 2, 'gmp_clrbit' => 2, + 'gmp_cmp' => 2, 'gmp_com' => 2, 'gmp_div' => 2, 'gmp_div_q' => 2, 'gmp_div_qr' => 2, 'gmp_div_r' => 2, 'gmp_divexact' => 2, 'gmp_fact' => 2, 'gmp_gcd' => 2, 'gmp_gcdext' => 2, 'gmp_hamdist' => 2, 'gmp_init' => 2, 'gmp_intval' => 2, 'gmp_invert' => 2, 'gmp_jacobi' => 2, 'gmp_legendre' => 2, 'gmp_mod' => 2, 'gmp_mul' => 2, 'gmp_neg' => 2, 'gmp_nextprime' => 2, 'gmp_or' => 2, 'gmp_perfect_square' => 2, 'gmp_popcount' => 2, 'gmp_pow' => 2, 'gmp_powm' => 2, 'gmp_prob_prime' => 2, + 'gmp_random' => 2, 'gmp_scan0' => 2, 'gmp_scan1' => 2, 'gmp_setbit' => 2, 'gmp_sign' => 2, 'gmp_sqrt' => 2, 'gmp_sqrtrem' => 2, 'gmp_strval' => 2, 'gmp_sub' => 2, 'gmp_xor' => 2, 'gmstrftime' => 2, 'gopher_parsedir' => 2, 'grapheme_extract' => 2, 'grapheme_stripos' => 2, 'grapheme_stristr' => 2, 'grapheme_strlen' => 2, 'grapheme_strpos' => 2, 'grapheme_strripos' => 2, 'grapheme_strrpos' => 2, 'grapheme_strstr' => 2, 'grapheme_substr' => 2, 'gregoriantojd' => 2, 'gzclose' => 2, 'gzcompress' => 2, 'gzdecode' => 2, 'gzdeflate' => 2, + 'gzencode' => 2, 'gzeof' => 2, 'gzfile' => 2, 'gzgetc' => 2, 'gzgets' => 2, 'gzgetss' => 2, 'gzinflate' => 2, 'gzopen' => 2, 'gzpassthru' => 2, 'gzputs' => 2, 'gzread' => 2, 'gzrewind' => 2, 'gzseek' => 2, 'gztell' => 2, 'gzuncompress' => 2, 'gzwrite' => 2, 'hash' => 2, 'hash_algos' => 2, 'hash_copy' => 2, 'hash_file' => 2, 'hash_final' => 2, 'hash_hmac' => 2, 'hash_hmac_file' => 2, 'hash_init' => 2, 'hash_update' => 2, 'hash_update_file' => 2, + 'hash_update_stream' => 2, 'header' => 2, 'header_register_callback' => 2, 'header_remove' => 2, 'headers_list' => 2, 'headers_sent' => 2, 'hebrev' => 2, 'hebrevc' => 2, 'hex2bin' => 2, 'hexdec' => 2, 'highlight_file' => 2, 'highlight_string' => 2, 'html_doc' => 2, 'html_doc_file' => 2, 'html_entity_decode' => 2, 'htmlentities' => 2, 'htmlspecialchars' => 2, 'htmlspecialchars_decode' => 2, 'http_build_cookie' => 2, 'http_build_query' => 2, 'http_build_str' => 2, 'http_build_url' => 2, 'http_cache_etag' => 2, 'http_cache_last_modified' => 2, 'http_chunked_decode' => 2, 'http_date' => 2, + 'http_deflate' => 2, 'http_get' => 2, 'http_get_request_body' => 2, 'http_get_request_body_stream' => 2, 'http_get_request_headers' => 2, 'http_head' => 2, 'http_inflate' => 2, 'http_match_etag' => 2, 'http_match_modified' => 2, 'http_match_request_header' => 2, 'http_negotiate' => 2, 'http_negotiate_charset' => 2, 'http_negotiate_content_type' => 2, 'http_negotiate_language' => 2, 'http_parse_cookie' => 2, 'http_parse_headers' => 2, 'http_parse_message' => 2, 'http_parse_params' => 2, 'http_persistent_handles_clean' => 2, 'http_persistent_handles_count' => 2, 'http_persistent_handles_ident' => 2, 'http_post_data' => 2, 'http_post_fields' => 2, 'http_put_data' => 2, 'http_put_file' => 2, 'http_put_stream' => 2, + 'http_redirect' => 2, 'http_request' => 2, 'http_request_body_encode' => 2, 'http_request_method_exists' => 2, 'http_request_method_name' => 2, 'http_request_method_register' => 2, 'http_request_method_unregister' => 2, 'http_response_code' => 2, 'http_send_content_disposition' => 2, 'http_send_content_type' => 2, 'http_send_data' => 2, 'http_send_file' => 2, 'http_send_last_modified' => 2, 'http_send_status' => 2, 'http_send_stream' => 2, 'http_support' => 2, 'http_throttle' => 2, 'hw_array2objrec' => 2, 'hw_children' => 2, 'hw_childrenobj' => 2, 'hw_close' => 2, 'hw_connect' => 2, 'hw_cp' => 2, 'hw_deleteobject' => 2, 'hw_docbyanchor' => 2, 'hw_docbyanchorobj' => 2, + 'hw_documentattributes' => 2, 'hw_documentbodytag' => 2, 'hw_documentcontent' => 2, 'hw_documentsetcontent' => 2, 'hw_documentsize' => 2, 'hw_edittext' => 2, 'hw_error' => 2, 'hw_errormsg' => 2, 'hw_free_document' => 2, 'hw_getanchors' => 2, 'hw_getanchorsobj' => 2, 'hw_getandlock' => 2, 'hw_getchildcoll' => 2, 'hw_getchildcollobj' => 2, 'hw_getchilddoccoll' => 2, 'hw_getchilddoccollobj' => 2, 'hw_getobject' => 2, 'hw_getobjectbyquery' => 2, 'hw_getobjectbyquerycoll' => 2, 'hw_getobjectbyquerycollobj' => 2, 'hw_getobjectbyqueryobj' => 2, 'hw_getparents' => 2, 'hw_getparentsobj' => 2, 'hw_getremote' => 2, 'hw_getremotechildren' => 2, 'hw_getsrcbydestobj' => 2, + 'hw_gettext' => 2, 'hw_identify' => 2, 'hw_incollections' => 2, 'hw_info' => 2, 'hw_inscoll' => 2, 'hw_insdoc' => 2, 'hw_insertdocument' => 2, 'hw_insertobject' => 2, 'hw_mapid' => 2, 'hw_modifyobject' => 2, 'hw_mv' => 2, 'hw_new_document' => 2, 'hw_objrec2array' => 2, 'hw_outputdocument' => 2, 'hw_pconnect' => 2, 'hw_pipedocument' => 2, 'hw_root' => 2, 'hw_unlock' => 2, 'hw_username' => 2, 'hw_who' => 2, 'hypot' => 2, 'i18n_convert' => 2, 'i18n_discover_encoding' => 2, 'i18n_http_input' => 2, 'i18n_http_output' => 2, 'i18n_internal_encoding' => 2, + 'i18n_ja_jp_hantozen' => 2, 'i18n_mime_header_decode' => 2, 'i18n_mime_header_encode' => 2, 'ibase_add_user' => 2, 'ibase_affected_rows' => 2, 'ibase_backup' => 2, 'ibase_bind' => 2, 'ibase_blob_add' => 2, 'ibase_blob_cancel' => 2, 'ibase_blob_close' => 2, 'ibase_blob_create' => 2, 'ibase_blob_echo' => 2, 'ibase_blob_get' => 2, 'ibase_blob_import' => 2, 'ibase_blob_info' => 2, 'ibase_blob_open' => 2, 'ibase_close' => 2, 'ibase_commit' => 2, 'ibase_commit_ret' => 2, 'ibase_connect' => 2, 'ibase_db_info' => 2, 'ibase_delete_user' => 2, 'ibase_drop_db' => 2, 'ibase_errcode' => 2, 'ibase_errmsg' => 2, 'ibase_execute' => 2, + 'ibase_fetch_assoc' => 2, 'ibase_fetch_object' => 2, 'ibase_fetch_row' => 2, 'ibase_field_info' => 2, 'ibase_free_event_handler' => 2, 'ibase_free_query' => 2, 'ibase_free_result' => 2, 'ibase_gen_id' => 2, 'ibase_maintain_db' => 2, 'ibase_modify_user' => 2, 'ibase_name_result' => 2, 'ibase_num_fields' => 2, 'ibase_num_params' => 2, 'ibase_param_info' => 2, 'ibase_pconnect' => 2, 'ibase_prepare' => 2, 'ibase_query' => 2, 'ibase_restore' => 2, 'ibase_rollback' => 2, 'ibase_rollback_ret' => 2, 'ibase_server_info' => 2, 'ibase_service_attach' => 2, 'ibase_service_detach' => 2, 'ibase_set_event_handler' => 2, 'ibase_timefmt' => 2, 'ibase_trans' => 2, + 'ibase_wait_event' => 2, 'iconv' => 2, 'iconv_get_encoding' => 2, 'iconv_mime_decode' => 2, 'iconv_mime_decode_headers' => 2, 'iconv_mime_encode' => 2, 'iconv_set_encoding' => 2, 'iconv_strlen' => 2, 'iconv_strpos' => 2, 'iconv_strrpos' => 2, 'iconv_substr' => 2, 'id3_get_frame_long_name' => 2, 'id3_get_frame_short_name' => 2, 'id3_get_genre_id' => 2, 'id3_get_genre_list' => 2, 'id3_get_genre_name' => 2, 'id3_get_tag' => 2, 'id3_get_version' => 2, 'id3_remove_tag' => 2, 'id3_set_tag' => 2, 'idate' => 2, 'idn_to_ascii' => 2, 'idn_to_utf8' => 2, 'ifx_affected_rows' => 2, 'ifx_blobinfile_mode' => 2, 'ifx_byteasvarchar' => 2, + 'ifx_close' => 2, 'ifx_connect' => 2, 'ifx_copy_blob' => 2, 'ifx_create_blob' => 2, 'ifx_create_char' => 2, 'ifx_do' => 2, 'ifx_error' => 2, 'ifx_errormsg' => 2, 'ifx_fetch_row' => 2, 'ifx_fieldproperties' => 2, 'ifx_fieldtypes' => 2, 'ifx_free_blob' => 2, 'ifx_free_char' => 2, 'ifx_free_result' => 2, 'ifx_free_slob' => 2, 'ifx_get_blob' => 2, 'ifx_get_char' => 2, 'ifx_getsqlca' => 2, 'ifx_htmltbl_result' => 2, 'ifx_nullformat' => 2, 'ifx_num_fields' => 2, 'ifx_num_rows' => 2, 'ifx_pconnect' => 2, 'ifx_prepare' => 2, 'ifx_query' => 2, 'ifx_textasvarchar' => 2, + 'ifx_update_blob' => 2, 'ifx_update_char' => 2, 'ifxus_close_slob' => 2, 'ifxus_create_slob' => 2, 'ifxus_open_slob' => 2, 'ifxus_read_slob' => 2, 'ifxus_seek_slob' => 2, 'ifxus_tell_slob' => 2, 'ifxus_write_slob' => 2, 'ignore_user_abort' => 2, 'image2wbmp' => 2, 'image_type_to_extension' => 2, 'image_type_to_mime_type' => 2, 'imagealphablending' => 2, 'imageantialias' => 2, 'imagearc' => 2, 'imagechar' => 2, 'imagecharup' => 2, 'imagecolorallocate' => 2, 'imagecolorallocatealpha' => 2, 'imagecolorat' => 2, 'imagecolorclosest' => 2, 'imagecolorclosestalpha' => 2, 'imagecolorclosesthwb' => 2, 'imagecolordeallocate' => 2, 'imagecolorexact' => 2, + 'imagecolorexactalpha' => 2, 'imagecolormatch' => 2, 'imagecolorresolve' => 2, 'imagecolorresolvealpha' => 2, 'imagecolorset' => 2, 'imagecolorsforindex' => 2, 'imagecolorstotal' => 2, 'imagecolortransparent' => 2, 'imageconvolution' => 2, 'imagecopy' => 2, 'imagecopymerge' => 2, 'imagecopymergegray' => 2, 'imagecopyresampled' => 2, 'imagecopyresized' => 2, 'imagecreate' => 2, 'imagecreatefromgd' => 2, 'imagecreatefromgd2' => 2, 'imagecreatefromgd2part' => 2, 'imagecreatefromgif' => 2, 'imagecreatefromjpeg' => 2, 'imagecreatefrompng' => 2, 'imagecreatefromstring' => 2, 'imagecreatefromwbmp' => 2, 'imagecreatefromxbm' => 2, 'imagecreatetruecolor' => 2, 'imagedashedline' => 2, + 'imagedestroy' => 2, 'imageellipse' => 2, 'imagefill' => 2, 'imagefilledarc' => 2, 'imagefilledellipse' => 2, 'imagefilledpolygon' => 2, 'imagefilledrectangle' => 2, 'imagefilltoborder' => 2, 'imagefilter' => 2, 'imagefontheight' => 2, 'imagefontwidth' => 2, 'imageftbbox' => 2, 'imagefttext' => 2, 'imagegammacorrect' => 2, 'imagegd' => 2, 'imagegd2' => 2, 'imagegif' => 2, 'imagegrabscreen' => 2, 'imagegrabwindow' => 2, 'imageinterlace' => 2, 'imageistruecolor' => 2, 'imagejpeg' => 2, 'imagelayereffect' => 2, 'imageline' => 2, 'imageloadfont' => 2, 'imagepalettecopy' => 2, + 'imagepng' => 2, 'imagepolygon' => 2, 'imagepsbbox' => 2, 'imagepsencodefont' => 2, 'imagepsextendfont' => 2, 'imagepsfreefont' => 2, 'imagepsloadfont' => 2, 'imagepsslantfont' => 2, 'imagepstext' => 2, 'imagerectangle' => 2, 'imagerotate' => 2, 'imagesavealpha' => 2, 'imagesetbrush' => 2, 'imagesetpixel' => 2, 'imagesetstyle' => 2, 'imagesetthickness' => 2, 'imagesettile' => 2, 'imagestring' => 2, 'imagestringup' => 2, 'imagesx' => 2, 'imagesy' => 2, 'imagetruecolortopalette' => 2, 'imagettfbbox' => 2, 'imagettftext' => 2, 'imagetypes' => 2, 'imagewbmp' => 2, + 'imagexbm' => 2, 'imap_8bit' => 2, 'imap_alerts' => 2, 'imap_append' => 2, 'imap_base64' => 2, 'imap_binary' => 2, 'imap_body' => 2, 'imap_bodystruct' => 2, 'imap_check' => 2, 'imap_clearflag_full' => 2, 'imap_close' => 2, 'imap_create' => 2, 'imap_createmailbox' => 2, 'imap_delete' => 2, 'imap_deletemailbox' => 2, 'imap_errors' => 2, 'imap_expunge' => 2, 'imap_fetch_overview' => 2, 'imap_fetchbody' => 2, 'imap_fetchheader' => 2, 'imap_fetchmime' => 2, 'imap_fetchstructure' => 2, 'imap_fetchtext' => 2, 'imap_gc' => 2, 'imap_get_quota' => 2, 'imap_get_quotaroot' => 2, + 'imap_getacl' => 2, 'imap_getmailboxes' => 2, 'imap_getsubscribed' => 2, 'imap_header' => 2, 'imap_headerinfo' => 2, 'imap_headers' => 2, 'imap_last_error' => 2, 'imap_list' => 2, 'imap_listmailbox' => 2, 'imap_listscan' => 2, 'imap_listsubscribed' => 2, 'imap_lsub' => 2, 'imap_mail' => 2, 'imap_mail_compose' => 2, 'imap_mail_copy' => 2, 'imap_mail_move' => 2, 'imap_mailboxmsginfo' => 2, 'imap_mime_header_decode' => 2, 'imap_msgno' => 2, 'imap_mutf7_to_utf8' => 2, 'imap_num_msg' => 2, 'imap_num_recent' => 2, 'imap_open' => 2, 'imap_ping' => 2, 'imap_qprint' => 2, 'imap_rename' => 2, + 'imap_renamemailbox' => 2, 'imap_reopen' => 2, 'imap_rfc822_parse_adrlist' => 2, 'imap_rfc822_parse_headers' => 2, 'imap_rfc822_write_address' => 2, 'imap_savebody' => 2, 'imap_scan' => 2, 'imap_scanmailbox' => 2, 'imap_search' => 2, 'imap_set_quota' => 2, 'imap_setacl' => 2, 'imap_setflag_full' => 2, 'imap_sort' => 2, 'imap_status' => 2, 'imap_subscribe' => 2, 'imap_thread' => 2, 'imap_timeout' => 2, 'imap_uid' => 2, 'imap_undelete' => 2, 'imap_unsubscribe' => 2, 'imap_utf7_decode' => 2, 'imap_utf7_encode' => 2, 'imap_utf8' => 2, 'imap_utf8_to_mutf7' => 2, 'implode' => 2, 'import_request_variables' => 2, + 'in_array' => 2, 'inet_ntop' => 2, 'inet_pton' => 2, 'ini_alter' => 2, 'ini_get' => 2, 'ini_get_all' => 2, 'ini_restore' => 2, 'ini_set' => 2, 'interface_exists' => 2, 'intl_error_name' => 2, 'intl_get_error_code' => 2, 'intl_get_error_message' => 2, 'intl_is_failure' => 2, 'intval' => 2, 'ip2long' => 2, 'iptcembed' => 2, 'iptcparse' => 2, 'is_a' => 2, 'is_array' => 2, 'is_bool' => 2, 'is_callable' => 2, 'is_dir' => 2, 'is_double' => 2, 'is_executable' => 2, 'is_file' => 2, 'is_finite' => 2, + 'is_float' => 2, 'is_infinite' => 2, 'is_int' => 2, 'is_integer' => 2, 'is_link' => 2, 'is_long' => 2, 'is_nan' => 2, 'is_null' => 2, 'is_numeric' => 2, 'is_object' => 2, 'is_readable' => 2, 'is_real' => 2, 'is_resource' => 2, 'is_scalar' => 2, 'is_soap_fault' => 2, 'is_string' => 2, 'is_subclass_of' => 2, 'is_uploaded_file' => 2, 'is_writable' => 2, 'is_writeable' => 2, 'iterator_apply' => 2, 'iterator_count' => 2, 'iterator_to_array' => 2, 'java_last_exception_clear' => 2, 'java_last_exception_get' => 2, 'jddayofweek' => 2, + 'jdmonthname' => 2, 'jdtofrench' => 2, 'jdtogregorian' => 2, 'jdtojewish' => 2, 'jdtojulian' => 2, 'jdtounix' => 2, 'jewishtojd' => 2, 'join' => 2, 'jpeg2wbmp' => 2, 'json_decode' => 2, 'json_encode' => 2, 'json_last_error' => 2, 'juliantojd' => 2, 'key' => 2, 'key_exists' => 2, 'krsort' => 2, 'ksort' => 2, 'lcfirst' => 2, 'lcg_value' => 2, 'ldap_add' => 2, 'ldap_bind' => 2, 'ldap_close' => 2, 'ldap_compare' => 2, 'ldap_connect' => 2, 'ldap_count_entries' => 2, 'ldap_delete' => 2, + 'ldap_dn2ufn' => 2, 'ldap_err2str' => 2, 'ldap_errno' => 2, 'ldap_error' => 2, 'ldap_explode_dn' => 2, 'ldap_first_attribute' => 2, 'ldap_first_entry' => 2, 'ldap_first_reference' => 2, 'ldap_free_result' => 2, 'ldap_get_attributes' => 2, 'ldap_get_dn' => 2, 'ldap_get_entries' => 2, 'ldap_get_option' => 2, 'ldap_get_values' => 2, 'ldap_get_values_len' => 2, 'ldap_list' => 2, 'ldap_mod_add' => 2, 'ldap_mod_del' => 2, 'ldap_mod_replace' => 2, 'ldap_modify' => 2, 'ldap_next_attribute' => 2, 'ldap_next_entry' => 2, 'ldap_next_reference' => 2, 'ldap_parse_reference' => 2, 'ldap_parse_result' => 2, 'ldap_read' => 2, + 'ldap_rename' => 2, 'ldap_search' => 2, 'ldap_set_option' => 2, 'ldap_sort' => 2, 'ldap_start_tls' => 2, 'ldap_unbind' => 2, 'leak' => 2, 'levenshtein' => 2, 'libxml_clear_errors' => 2, 'libxml_disable_entity_loader' => 2, 'libxml_get_errors' => 2, 'libxml_get_last_error' => 2, 'libxml_set_streams_context' => 2, 'libxml_use_internal_errors' => 2, 'link' => 2, 'linkinfo' => 2, 'locale_accept_from_http' => 2, 'locale_canonicalize' => 2, 'locale_compose' => 2, 'locale_filter_matches' => 2, 'locale_get_all_variants' => 2, 'locale_get_default' => 2, 'locale_get_display_language' => 2, 'locale_get_display_name' => 2, 'locale_get_display_region' => 2, 'locale_get_display_script' => 2, + 'locale_get_display_variant' => 2, 'locale_get_keywords' => 2, 'locale_get_primary_language' => 2, 'locale_get_region' => 2, 'locale_get_script' => 2, 'locale_lookup' => 2, 'locale_parse' => 2, 'locale_set_default' => 2, 'localeconv' => 2, 'localtime' => 2, 'log' => 2, 'log10' => 2, 'log1p' => 2, 'long2ip' => 2, 'lstat' => 2, 'ltrim' => 2, 'lzf_compress' => 2, 'lzf_decompress' => 2, 'lzf_optimized_for' => 2, 'magic_quotes_runtime' => 2, 'mail' => 2, 'max' => 2, 'mb_check_encoding' => 2, 'mb_convert_case' => 2, 'mb_convert_encoding' => 2, 'mb_convert_kana' => 2, + 'mb_convert_variables' => 2, 'mb_decode_mimeheader' => 2, 'mb_decode_numericentity' => 2, 'mb_detect_encoding' => 2, 'mb_detect_order' => 2, 'mb_encode_mimeheader' => 2, 'mb_encode_numericentity' => 2, 'mb_encoding_aliases' => 2, 'mb_ereg' => 2, 'mb_ereg_match' => 2, 'mb_ereg_replace' => 2, 'mb_ereg_search' => 2, 'mb_ereg_search_getpos' => 2, 'mb_ereg_search_getregs' => 2, 'mb_ereg_search_init' => 2, 'mb_ereg_search_pos' => 2, 'mb_ereg_search_regs' => 2, 'mb_ereg_search_setpos' => 2, 'mb_eregi' => 2, 'mb_eregi_replace' => 2, 'mb_get_info' => 2, 'mb_http_input' => 2, 'mb_http_output' => 2, 'mb_internal_encoding' => 2, 'mb_language' => 2, 'mb_list_encodings' => 2, + 'mb_output_handler' => 2, 'mb_parse_str' => 2, 'mb_preferred_mime_name' => 2, 'mb_regex_encoding' => 2, 'mb_regex_set_options' => 2, 'mb_send_mail' => 2, 'mb_split' => 2, 'mb_strcut' => 2, 'mb_strimwidth' => 2, 'mb_stripos' => 2, 'mb_stristr' => 2, 'mb_strlen' => 2, 'mb_strpos' => 2, 'mb_strrchr' => 2, 'mb_strrichr' => 2, 'mb_strripos' => 2, 'mb_strrpos' => 2, 'mb_strstr' => 2, 'mb_strtolower' => 2, 'mb_strtoupper' => 2, 'mb_strwidth' => 2, 'mb_substitute_character' => 2, 'mb_substr' => 2, 'mb_substr_count' => 2, 'mbereg' => 2, 'mbereg_match' => 2, + 'mbereg_replace' => 2, 'mbereg_search' => 2, 'mbereg_search_getpos' => 2, 'mbereg_search_getregs' => 2, 'mbereg_search_init' => 2, 'mbereg_search_pos' => 2, 'mbereg_search_regs' => 2, 'mbereg_search_setpos' => 2, 'mberegi' => 2, 'mberegi_replace' => 2, 'mbregex_encoding' => 2, 'mbsplit' => 2, 'mbstrcut' => 2, 'mbstrlen' => 2, 'mbstrpos' => 2, 'mbstrrpos' => 2, 'mbsubstr' => 2, 'mcal_close' => 2, 'mcal_date_compare' => 2, 'mcal_date_valid' => 2, 'mcal_day_of_week' => 2, 'mcal_day_of_year' => 2, 'mcal_days_in_month' => 2, 'mcal_delete_event' => 2, 'mcal_event_init' => 2, 'mcal_event_set_alarm' => 2, + 'mcal_event_set_category' => 2, 'mcal_event_set_class' => 2, 'mcal_event_set_description' => 2, 'mcal_event_set_end' => 2, 'mcal_event_set_recur_daily' => 2, 'mcal_event_set_recur_monthly_mday' => 2, 'mcal_event_set_recur_monthly_wday' => 2, 'mcal_event_set_recur_weekly' => 2, 'mcal_event_set_recur_yearly' => 2, 'mcal_event_set_start' => 2, 'mcal_event_set_title' => 2, 'mcal_fetch_current_stream_event' => 2, 'mcal_fetch_event' => 2, 'mcal_is_leap_year' => 2, 'mcal_list_alarms' => 2, 'mcal_list_events' => 2, 'mcal_next_recurrence' => 2, 'mcal_open' => 2, 'mcal_snooze' => 2, 'mcal_store_event' => 2, 'mcal_time_valid' => 2, 'mcrypt_cbc' => 2, 'mcrypt_cfb' => 2, 'mcrypt_create_iv' => 2, 'mcrypt_decrypt' => 2, 'mcrypt_ecb' => 2, + 'mcrypt_enc_get_algorithms_name' => 2, 'mcrypt_enc_get_block_size' => 2, 'mcrypt_enc_get_iv_size' => 2, 'mcrypt_enc_get_key_size' => 2, 'mcrypt_enc_get_modes_name' => 2, 'mcrypt_enc_get_supported_key_sizes' => 2, 'mcrypt_enc_is_block_algorithm' => 2, 'mcrypt_enc_is_block_algorithm_mode' => 2, 'mcrypt_enc_is_block_mode' => 2, 'mcrypt_enc_self_test' => 2, 'mcrypt_encrypt' => 2, 'mcrypt_generic' => 2, 'mcrypt_generic_deinit' => 2, 'mcrypt_generic_end' => 2, 'mcrypt_generic_init' => 2, 'mcrypt_get_block_size' => 2, 'mcrypt_get_cipher_name' => 2, 'mcrypt_get_iv_size' => 2, 'mcrypt_get_key_size' => 2, 'mcrypt_list_algorithms' => 2, 'mcrypt_list_modes' => 2, 'mcrypt_module_close' => 2, 'mcrypt_module_get_algo_block_size' => 2, 'mcrypt_module_get_algo_key_size' => 2, 'mcrypt_module_get_supported_key_sizes' => 2, 'mcrypt_module_is_block_algorithm' => 2, + 'mcrypt_module_is_block_algorithm_mode' => 2, 'mcrypt_module_is_block_mode' => 2, 'mcrypt_module_open' => 2, 'mcrypt_module_self_test' => 2, 'mcrypt_ofb' => 2, 'md5' => 2, 'md5_file' => 2, 'mdecrypt_generic' => 2, 'memcache_add' => 2, 'memcache_add_server' => 2, 'memcache_close' => 2, 'memcache_connect' => 2, 'memcache_debug' => 2, 'memcache_decrement' => 2, 'memcache_delete' => 2, 'memcache_flush' => 2, 'memcache_get' => 2, 'memcache_get_extended_stats' => 2, 'memcache_get_server_status' => 2, 'memcache_get_stats' => 2, 'memcache_get_version' => 2, 'memcache_increment' => 2, 'memcache_pconnect' => 2, 'memcache_replace' => 2, 'memcache_set' => 2, 'memcache_set_compress_threshold' => 2, + 'memcache_set_server_params' => 2, 'memory_get_peak_usage' => 2, 'memory_get_usage' => 2, 'metaphone' => 2, 'method_exists' => 2, 'mhash' => 2, 'mhash_count' => 2, 'mhash_get_block_size' => 2, 'mhash_get_hash_name' => 2, 'mhash_keygen_s2k' => 2, 'microtime' => 2, 'mime_content_type' => 2, 'min' => 2, 'ming_keypress' => 2, 'ming_setcubicthreshold' => 2, 'ming_setscale' => 2, 'ming_useconstants' => 2, 'ming_useswfversion' => 2, 'mkdir' => 2, 'mktime' => 2, 'modifiers' => 2, 'money_format' => 2, 'move_uploaded_file' => 2, 'msgfmt_create' => 2, 'msgfmt_format' => 2, 'msgfmt_format_message' => 2, + 'msgfmt_get_error_code' => 2, 'msgfmt_get_error_message' => 2, 'msgfmt_get_locale' => 2, 'msgfmt_get_pattern' => 2, 'msgfmt_parse' => 2, 'msgfmt_parse_message' => 2, 'msgfmt_set_pattern' => 2, 'msql' => 2, 'msql_affected_rows' => 2, 'msql_close' => 2, 'msql_connect' => 2, 'msql_create_db' => 2, 'msql_createdb' => 2, 'msql_data_seek' => 2, 'msql_db_query' => 2, 'msql_dbname' => 2, 'msql_drop_db' => 2, 'msql_dropdb' => 2, 'msql_error' => 2, 'msql_fetch_array' => 2, 'msql_fetch_field' => 2, 'msql_fetch_object' => 2, 'msql_fetch_row' => 2, 'msql_field_flags' => 2, 'msql_field_len' => 2, 'msql_field_name' => 2, + 'msql_field_seek' => 2, 'msql_field_table' => 2, 'msql_field_type' => 2, 'msql_fieldflags' => 2, 'msql_fieldlen' => 2, 'msql_fieldname' => 2, 'msql_fieldtable' => 2, 'msql_fieldtype' => 2, 'msql_free_result' => 2, 'msql_freeresult' => 2, 'msql_list_dbs' => 2, 'msql_list_fields' => 2, 'msql_list_tables' => 2, 'msql_listdbs' => 2, 'msql_listfields' => 2, 'msql_listtables' => 2, 'msql_num_fields' => 2, 'msql_num_rows' => 2, 'msql_numfields' => 2, 'msql_numrows' => 2, 'msql_pconnect' => 2, 'msql_query' => 2, 'msql_regcase' => 2, 'msql_result' => 2, 'msql_select_db' => 2, 'msql_selectdb' => 2, + 'msql_tablename' => 2, 'mssql_bind' => 2, 'mssql_close' => 2, 'mssql_connect' => 2, 'mssql_data_seek' => 2, 'mssql_execute' => 2, 'mssql_fetch_array' => 2, 'mssql_fetch_assoc' => 2, 'mssql_fetch_batch' => 2, 'mssql_fetch_field' => 2, 'mssql_fetch_object' => 2, 'mssql_fetch_row' => 2, 'mssql_field_length' => 2, 'mssql_field_name' => 2, 'mssql_field_seek' => 2, 'mssql_field_type' => 2, 'mssql_free_result' => 2, 'mssql_free_statement' => 2, 'mssql_get_last_message' => 2, 'mssql_guid_string' => 2, 'mssql_init' => 2, 'mssql_min_error_severity' => 2, 'mssql_min_message_severity' => 2, 'mssql_next_result' => 2, 'mssql_num_fields' => 2, 'mssql_num_rows' => 2, + 'mssql_pconnect' => 2, 'mssql_query' => 2, 'mssql_result' => 2, 'mssql_rows_affected' => 2, 'mssql_select_db' => 2, 'mt_getrandmax' => 2, 'mt_rand' => 2, 'mt_srand' => 2, 'mysql' => 2, 'mysql_affected_rows' => 2, 'mysql_change_user' => 2, 'mysql_client_encoding' => 2, 'mysql_close' => 2, 'mysql_connect' => 2, 'mysql_create_db' => 2, 'mysql_createdb' => 2, 'mysql_data_seek' => 2, 'mysql_db_name' => 2, 'mysql_db_query' => 2, 'mysql_dbname' => 2, 'mysql_drop_db' => 2, 'mysql_dropdb' => 2, 'mysql_errno' => 2, 'mysql_error' => 2, 'mysql_escape_string' => 2, 'mysql_fetch_array' => 2, + 'mysql_fetch_assoc' => 2, 'mysql_fetch_field' => 2, 'mysql_fetch_lengths' => 2, 'mysql_fetch_object' => 2, 'mysql_fetch_row' => 2, 'mysql_field_flags' => 2, 'mysql_field_len' => 2, 'mysql_field_name' => 2, 'mysql_field_seek' => 2, 'mysql_field_table' => 2, 'mysql_field_type' => 2, 'mysql_fieldflags' => 2, 'mysql_fieldlen' => 2, 'mysql_fieldname' => 2, 'mysql_fieldtable' => 2, 'mysql_fieldtype' => 2, 'mysql_free_result' => 2, 'mysql_freeresult' => 2, 'mysql_get_client_info' => 2, 'mysql_get_host_info' => 2, 'mysql_get_proto_info' => 2, 'mysql_get_server_info' => 2, 'mysql_info' => 2, 'mysql_insert_id' => 2, 'mysql_list_dbs' => 2, 'mysql_list_fields' => 2, + 'mysql_list_processes' => 2, 'mysql_list_tables' => 2, 'mysql_listdbs' => 2, 'mysql_listfields' => 2, 'mysql_listtables' => 2, 'mysql_num_fields' => 2, 'mysql_num_rows' => 2, 'mysql_numfields' => 2, 'mysql_numrows' => 2, 'mysql_pconnect' => 2, 'mysql_ping' => 2, 'mysql_query' => 2, 'mysql_real_escape_string' => 2, 'mysql_result' => 2, 'mysql_select_db' => 2, 'mysql_selectdb' => 2, 'mysql_set_charset' => 2, 'mysql_stat' => 2, 'mysql_table_name' => 2, 'mysql_tablename' => 2, 'mysql_thread_id' => 2, 'mysql_unbuffered_query' => 2, 'mysqli_affected_rows' => 2, 'mysqli_autocommit' => 2, 'mysqli_bind_param' => 2, 'mysqli_bind_result' => 2, + 'mysqli_change_user' => 2, 'mysqli_character_set_name' => 2, 'mysqli_client_encoding' => 2, 'mysqli_close' => 2, 'mysqli_commit' => 2, 'mysqli_connect' => 2, 'mysqli_connect_errno' => 2, 'mysqli_connect_error' => 2, 'mysqli_data_seek' => 2, 'mysqli_debug' => 2, 'mysqli_disable_reads_from_master' => 2, 'mysqli_disable_rpl_parse' => 2, 'mysqli_dump_debug_info' => 2, 'mysqli_embedded_server_end' => 2, 'mysqli_embedded_server_start' => 2, 'mysqli_enable_reads_from_master' => 2, 'mysqli_enable_rpl_parse' => 2, 'mysqli_errno' => 2, 'mysqli_error' => 2, 'mysqli_escape_string' => 2, 'mysqli_execute' => 2, 'mysqli_fetch' => 2, 'mysqli_fetch_all' => 2, 'mysqli_fetch_array' => 2, 'mysqli_fetch_assoc' => 2, 'mysqli_fetch_field' => 2, + 'mysqli_fetch_field_direct' => 2, 'mysqli_fetch_fields' => 2, 'mysqli_fetch_lengths' => 2, 'mysqli_fetch_object' => 2, 'mysqli_fetch_row' => 2, 'mysqli_field_count' => 2, 'mysqli_field_seek' => 2, 'mysqli_field_tell' => 2, 'mysqli_free_result' => 2, 'mysqli_get_cache_stats' => 2, 'mysqli_get_charset' => 2, 'mysqli_get_client_info' => 2, 'mysqli_get_client_stats' => 2, 'mysqli_get_client_version' => 2, 'mysqli_get_connection_stats' => 2, 'mysqli_get_host_info' => 2, 'mysqli_get_metadata' => 2, 'mysqli_get_proto_info' => 2, 'mysqli_get_server_info' => 2, 'mysqli_get_server_version' => 2, 'mysqli_get_warnings' => 2, 'mysqli_info' => 2, 'mysqli_init' => 2, 'mysqli_insert_id' => 2, 'mysqli_kill' => 2, 'mysqli_master_query' => 2, + 'mysqli_more_results' => 2, 'mysqli_multi_query' => 2, 'mysqli_next_result' => 2, 'mysqli_num_fields' => 2, 'mysqli_num_rows' => 2, 'mysqli_options' => 2, 'mysqli_param_count' => 2, 'mysqli_ping' => 2, 'mysqli_poll' => 2, 'mysqli_prepare' => 2, 'mysqli_query' => 2, 'mysqli_real_connect' => 2, 'mysqli_real_escape_string' => 2, 'mysqli_real_query' => 2, 'mysqli_reap_async_query' => 2, 'mysqli_refresh' => 2, 'mysqli_report' => 2, 'mysqli_rollback' => 2, 'mysqli_rpl_parse_enabled' => 2, 'mysqli_rpl_probe' => 2, 'mysqli_rpl_query_type' => 2, 'mysqli_select_db' => 2, 'mysqli_send_long_data' => 2, 'mysqli_send_query' => 2, 'mysqli_set_charset' => 2, 'mysqli_set_local_infile_default' => 2, + 'mysqli_set_local_infile_handler' => 2, 'mysqli_set_opt' => 2, 'mysqli_slave_query' => 2, 'mysqli_sqlstate' => 2, 'mysqli_ssl_set' => 2, 'mysqli_stat' => 2, 'mysqli_stmt_affected_rows' => 2, 'mysqli_stmt_attr_get' => 2, 'mysqli_stmt_attr_set' => 2, 'mysqli_stmt_bind_param' => 2, 'mysqli_stmt_bind_result' => 2, 'mysqli_stmt_close' => 2, 'mysqli_stmt_data_seek' => 2, 'mysqli_stmt_errno' => 2, 'mysqli_stmt_error' => 2, 'mysqli_stmt_execute' => 2, 'mysqli_stmt_fetch' => 2, 'mysqli_stmt_field_count' => 2, 'mysqli_stmt_free_result' => 2, 'mysqli_stmt_get_result' => 2, 'mysqli_stmt_get_warnings' => 2, 'mysqli_stmt_init' => 2, 'mysqli_stmt_insert_id' => 2, 'mysqli_stmt_more_results' => 2, 'mysqli_stmt_next_result' => 2, 'mysqli_stmt_num_rows' => 2, + 'mysqli_stmt_param_count' => 2, 'mysqli_stmt_prepare' => 2, 'mysqli_stmt_reset' => 2, 'mysqli_stmt_result_metadata' => 2, 'mysqli_stmt_send_long_data' => 2, 'mysqli_stmt_sqlstate' => 2, 'mysqli_stmt_store_result' => 2, 'mysqli_store_result' => 2, 'mysqli_thread_id' => 2, 'mysqli_thread_safe' => 2, 'mysqli_use_result' => 2, 'mysqli_warning_count' => 2, 'natcasesort' => 2, 'natsort' => 2, 'new_xmldoc' => 2, 'next' => 2, 'ngettext' => 2, 'nl2br' => 2, 'nl_langinfo' => 2, 'normalizer_is_normalized' => 2, 'normalizer_normalize' => 2, 'ntuser_getdomaincontroller' => 2, 'ntuser_getusergroups' => 2, 'ntuser_getuserinfo' => 2, 'ntuser_getuserlist' => 2, 'number_format' => 2, + 'numfmt_create' => 2, 'numfmt_format' => 2, 'numfmt_format_currency' => 2, 'numfmt_get_attribute' => 2, 'numfmt_get_error_code' => 2, 'numfmt_get_error_message' => 2, 'numfmt_get_locale' => 2, 'numfmt_get_pattern' => 2, 'numfmt_get_symbol' => 2, 'numfmt_get_text_attribute' => 2, 'numfmt_parse' => 2, 'numfmt_parse_currency' => 2, 'numfmt_set_attribute' => 2, 'numfmt_set_pattern' => 2, 'numfmt_set_symbol' => 2, 'numfmt_set_text_attribute' => 2, 'ob_clean' => 2, 'ob_deflatehandler' => 2, 'ob_end_clean' => 2, 'ob_end_flush' => 2, 'ob_etaghandler' => 2, 'ob_flush' => 2, 'ob_get_clean' => 2, 'ob_get_contents' => 2, 'ob_get_flush' => 2, 'ob_get_length' => 2, + 'ob_get_level' => 2, 'ob_get_status' => 2, 'ob_gzhandler' => 2, 'ob_iconv_handler' => 2, 'ob_implicit_flush' => 2, 'ob_inflatehandler' => 2, 'ob_list_handlers' => 2, 'ob_start' => 2, 'ob_tidyhandler' => 2, 'ocibindbyname' => 2, 'ocicolumnisnull' => 2, 'ocicolumnname' => 2, 'ocicolumnsize' => 2, 'ocicolumntype' => 2, 'ocicommit' => 2, 'ocidefinebyname' => 2, 'ocierror' => 2, 'ociexecute' => 2, 'ocifetch' => 2, 'ocifetchinto' => 2, 'ocifetchstatement' => 2, 'ocifreecursor' => 2, 'ocifreestatement' => 2, 'ociinternaldebug' => 2, 'ocilogoff' => 2, 'ocilogon' => 2, + 'ocinewcursor' => 2, 'ocinewdescriptor' => 2, 'ocinlogon' => 2, 'ocinumcols' => 2, 'ociparse' => 2, 'ociplogon' => 2, 'ociresult' => 2, 'ocirollback' => 2, 'ocirowcount' => 2, 'ociserverversion' => 2, 'ocistatementtype' => 2, 'octdec' => 2, 'odbc_autocommit' => 2, 'odbc_binmode' => 2, 'odbc_close' => 2, 'odbc_close_all' => 2, 'odbc_columnprivileges' => 2, 'odbc_columns' => 2, 'odbc_commit' => 2, 'odbc_connect' => 2, 'odbc_cursor' => 2, 'odbc_data_source' => 2, 'odbc_do' => 2, 'odbc_error' => 2, 'odbc_errormsg' => 2, 'odbc_exec' => 2, + 'odbc_execute' => 2, 'odbc_fetch_array' => 2, 'odbc_fetch_into' => 2, 'odbc_fetch_object' => 2, 'odbc_fetch_row' => 2, 'odbc_field_len' => 2, 'odbc_field_name' => 2, 'odbc_field_num' => 2, 'odbc_field_precision' => 2, 'odbc_field_scale' => 2, 'odbc_field_type' => 2, 'odbc_foreignkeys' => 2, 'odbc_free_result' => 2, 'odbc_gettypeinfo' => 2, 'odbc_longreadlen' => 2, 'odbc_next_result' => 2, 'odbc_num_fields' => 2, 'odbc_num_rows' => 2, 'odbc_pconnect' => 2, 'odbc_prepare' => 2, 'odbc_primarykeys' => 2, 'odbc_procedurecolumns' => 2, 'odbc_procedures' => 2, 'odbc_result' => 2, 'odbc_result_all' => 2, 'odbc_rollback' => 2, + 'odbc_setoption' => 2, 'odbc_specialcolumns' => 2, 'odbc_statistics' => 2, 'odbc_tableprivileges' => 2, 'odbc_tables' => 2, 'opendir' => 2, 'openlog' => 2, 'openssl_cipher_iv_length' => 2, 'openssl_csr_export' => 2, 'openssl_csr_export_to_file' => 2, 'openssl_csr_get_public_key' => 2, 'openssl_csr_get_subject' => 2, 'openssl_csr_new' => 2, 'openssl_csr_sign' => 2, 'openssl_decrypt' => 2, 'openssl_dh_compute_key' => 2, 'openssl_digest' => 2, 'openssl_encrypt' => 2, 'openssl_error_string' => 2, 'openssl_free_key' => 2, 'openssl_get_cipher_methods' => 2, 'openssl_get_md_methods' => 2, 'openssl_get_privatekey' => 2, 'openssl_get_publickey' => 2, 'openssl_open' => 2, 'openssl_pkcs12_export' => 2, + 'openssl_pkcs12_export_to_file' => 2, 'openssl_pkcs12_read' => 2, 'openssl_pkcs7_decrypt' => 2, 'openssl_pkcs7_encrypt' => 2, 'openssl_pkcs7_sign' => 2, 'openssl_pkcs7_verify' => 2, 'openssl_pkey_export' => 2, 'openssl_pkey_export_to_file' => 2, 'openssl_pkey_free' => 2, 'openssl_pkey_get_details' => 2, 'openssl_pkey_get_private' => 2, 'openssl_pkey_get_public' => 2, 'openssl_pkey_new' => 2, 'openssl_private_decrypt' => 2, 'openssl_private_encrypt' => 2, 'openssl_public_decrypt' => 2, 'openssl_public_encrypt' => 2, 'openssl_random_pseudo_bytes' => 2, 'openssl_seal' => 2, 'openssl_sign' => 2, 'openssl_verify' => 2, 'openssl_x509_check_private_key' => 2, 'openssl_x509_checkpurpose' => 2, 'openssl_x509_export' => 2, 'openssl_x509_export_to_file' => 2, 'openssl_x509_free' => 2, + 'openssl_x509_parse' => 2, 'openssl_x509_read' => 2, 'ora_bind' => 2, 'ora_close' => 2, 'ora_columnname' => 2, 'ora_columntype' => 2, 'ora_commit' => 2, 'ora_commitoff' => 2, 'ora_commiton' => 2, 'ora_error' => 2, 'ora_errorcode' => 2, 'ora_exec' => 2, 'ora_fetch' => 2, 'ora_getcolumn' => 2, 'ora_logoff' => 2, 'ora_logon' => 2, 'ora_open' => 2, 'ora_parse' => 2, 'ora_rollback' => 2, 'ord' => 2, 'output_add_rewrite_var' => 2, 'output_reset_rewrite_vars' => 2, 'outputdebugstring' => 2, 'overload' => 2, 'pack' => 2, 'parse_ini_file' => 2, + 'parse_ini_string' => 2, 'parse_str' => 2, 'parse_url' => 2, 'parsekit_compile_file' => 2, 'parsekit_compile_string' => 2, 'parsekit_func_arginfo' => 2, 'parsekit_opcode_flags' => 2, 'parsekit_opcode_name' => 2, 'passthru' => 2, 'pathinfo' => 2, 'pattern' => 2, 'pclose' => 2, 'pdf_add_annotation' => 2, 'pdf_add_bookmark' => 2, 'pdf_add_launchlink' => 2, 'pdf_add_locallink' => 2, 'pdf_add_nameddest' => 2, 'pdf_add_note' => 2, 'pdf_add_outline' => 2, 'pdf_add_pdflink' => 2, 'pdf_add_thumbnail' => 2, 'pdf_add_weblink' => 2, 'pdf_arc' => 2, 'pdf_arcn' => 2, 'pdf_attach_file' => 2, 'pdf_begin_font' => 2, + 'pdf_begin_glyph' => 2, 'pdf_begin_page' => 2, 'pdf_begin_pattern' => 2, 'pdf_begin_template' => 2, 'pdf_circle' => 2, 'pdf_clip' => 2, 'pdf_close' => 2, 'pdf_close_image' => 2, 'pdf_close_pdi' => 2, 'pdf_close_pdi_page' => 2, 'pdf_closepath' => 2, 'pdf_closepath_fill_stroke' => 2, 'pdf_closepath_stroke' => 2, 'pdf_concat' => 2, 'pdf_continue_text' => 2, 'pdf_create_gstate' => 2, 'pdf_create_pvf' => 2, 'pdf_curveto' => 2, 'pdf_delete' => 2, 'pdf_delete_pvf' => 2, 'pdf_encoding_set_char' => 2, 'pdf_end_font' => 2, 'pdf_end_glyph' => 2, 'pdf_end_page' => 2, 'pdf_end_pattern' => 2, 'pdf_end_template' => 2, + 'pdf_endpath' => 2, 'pdf_execute_image' => 2, 'pdf_fill' => 2, 'pdf_fill_imageblock' => 2, 'pdf_fill_pdfblock' => 2, 'pdf_fill_stroke' => 2, 'pdf_fill_textblock' => 2, 'pdf_findfont' => 2, 'pdf_fit_image' => 2, 'pdf_fit_pdi_page' => 2, 'pdf_fit_textline' => 2, 'pdf_get_apiname' => 2, 'pdf_get_buffer' => 2, 'pdf_get_errmsg' => 2, 'pdf_get_errnum' => 2, 'pdf_get_info' => 2, 'pdf_get_parameter' => 2, 'pdf_get_pdi_parameter' => 2, 'pdf_get_pdi_value' => 2, 'pdf_get_value' => 2, 'pdf_initgraphics' => 2, 'pdf_lineto' => 2, 'pdf_load_font' => 2, 'pdf_load_iccprofile' => 2, 'pdf_load_image' => 2, 'pdf_makespotcolor' => 2, + 'pdf_moveto' => 2, 'pdf_new' => 2, 'pdf_open' => 2, 'pdf_open_ccitt' => 2, 'pdf_open_file' => 2, 'pdf_open_gif' => 2, 'pdf_open_image' => 2, 'pdf_open_image_file' => 2, 'pdf_open_jpeg' => 2, 'pdf_open_memory_image' => 2, 'pdf_open_pdi' => 2, 'pdf_open_pdi_page' => 2, 'pdf_place_image' => 2, 'pdf_place_pdi_page' => 2, 'pdf_process_pdi' => 2, 'pdf_put_image' => 2, 'pdf_rect' => 2, 'pdf_restore' => 2, 'pdf_rotate' => 2, 'pdf_save' => 2, 'pdf_scale' => 2, 'pdf_set_border_color' => 2, 'pdf_set_border_dash' => 2, 'pdf_set_border_style' => 2, 'pdf_set_char_spacing' => 2, 'pdf_set_duration' => 2, + 'pdf_set_font' => 2, 'pdf_set_gstate' => 2, 'pdf_set_horiz_scaling' => 2, 'pdf_set_info' => 2, 'pdf_set_info_author' => 2, 'pdf_set_info_creator' => 2, 'pdf_set_info_keywords' => 2, 'pdf_set_info_subject' => 2, 'pdf_set_info_title' => 2, 'pdf_set_leading' => 2, 'pdf_set_parameter' => 2, 'pdf_set_text_matrix' => 2, 'pdf_set_text_pos' => 2, 'pdf_set_text_rendering' => 2, 'pdf_set_text_rise' => 2, 'pdf_set_transition' => 2, 'pdf_set_value' => 2, 'pdf_set_word_spacing' => 2, 'pdf_setcolor' => 2, 'pdf_setdash' => 2, 'pdf_setdashpattern' => 2, 'pdf_setflat' => 2, 'pdf_setfont' => 2, 'pdf_setgray' => 2, 'pdf_setgray_fill' => 2, 'pdf_setgray_stroke' => 2, + 'pdf_setlinecap' => 2, 'pdf_setlinejoin' => 2, 'pdf_setlinewidth' => 2, 'pdf_setmatrix' => 2, 'pdf_setmiterlimit' => 2, 'pdf_setpolydash' => 2, 'pdf_setrgbcolor' => 2, 'pdf_setrgbcolor_fill' => 2, 'pdf_setrgbcolor_stroke' => 2, 'pdf_shading' => 2, 'pdf_shading_pattern' => 2, 'pdf_shfill' => 2, 'pdf_show' => 2, 'pdf_show_boxed' => 2, 'pdf_show_xy' => 2, 'pdf_skew' => 2, 'pdf_stringwidth' => 2, 'pdf_stroke' => 2, 'pdf_translate' => 2, 'pdo_drivers' => 2, 'pfsockopen' => 2, 'pg_affected_rows' => 2, 'pg_cancel_query' => 2, 'pg_client_encoding' => 2, 'pg_clientencoding' => 2, 'pg_close' => 2, + 'pg_cmdtuples' => 2, 'pg_connect' => 2, 'pg_connection_busy' => 2, 'pg_connection_reset' => 2, 'pg_connection_status' => 2, 'pg_convert' => 2, 'pg_copy_from' => 2, 'pg_copy_to' => 2, 'pg_dbname' => 2, 'pg_delete' => 2, 'pg_end_copy' => 2, 'pg_errormessage' => 2, 'pg_escape_bytea' => 2, 'pg_escape_string' => 2, 'pg_exec' => 2, 'pg_execute' => 2, 'pg_fetch_all' => 2, 'pg_fetch_all_columns' => 2, 'pg_fetch_array' => 2, 'pg_fetch_assoc' => 2, 'pg_fetch_object' => 2, 'pg_fetch_result' => 2, 'pg_fetch_row' => 2, 'pg_field_is_null' => 2, 'pg_field_name' => 2, 'pg_field_num' => 2, + 'pg_field_prtlen' => 2, 'pg_field_size' => 2, 'pg_field_table' => 2, 'pg_field_type' => 2, 'pg_field_type_oid' => 2, 'pg_fieldisnull' => 2, 'pg_fieldname' => 2, 'pg_fieldnum' => 2, 'pg_fieldprtlen' => 2, 'pg_fieldsize' => 2, 'pg_fieldtype' => 2, 'pg_free_result' => 2, 'pg_freeresult' => 2, 'pg_get_notify' => 2, 'pg_get_pid' => 2, 'pg_get_result' => 2, 'pg_getlastoid' => 2, 'pg_host' => 2, 'pg_insert' => 2, 'pg_last_error' => 2, 'pg_last_notice' => 2, 'pg_last_oid' => 2, 'pg_lo_close' => 2, 'pg_lo_create' => 2, 'pg_lo_export' => 2, 'pg_lo_import' => 2, + 'pg_lo_open' => 2, 'pg_lo_read' => 2, 'pg_lo_read_all' => 2, 'pg_lo_seek' => 2, 'pg_lo_tell' => 2, 'pg_lo_unlink' => 2, 'pg_lo_write' => 2, 'pg_loclose' => 2, 'pg_locreate' => 2, 'pg_loexport' => 2, 'pg_loimport' => 2, 'pg_loopen' => 2, 'pg_loread' => 2, 'pg_loreadall' => 2, 'pg_lounlink' => 2, 'pg_lowrite' => 2, 'pg_meta_data' => 2, 'pg_num_fields' => 2, 'pg_num_rows' => 2, 'pg_numfields' => 2, 'pg_numrows' => 2, 'pg_options' => 2, 'pg_parameter_status' => 2, 'pg_pconnect' => 2, 'pg_ping' => 2, 'pg_port' => 2, + 'pg_prepare' => 2, 'pg_put_line' => 2, 'pg_query' => 2, 'pg_query_params' => 2, 'pg_result' => 2, 'pg_result_error' => 2, 'pg_result_error_field' => 2, 'pg_result_seek' => 2, 'pg_result_status' => 2, 'pg_select' => 2, 'pg_send_execute' => 2, 'pg_send_prepare' => 2, 'pg_send_query' => 2, 'pg_send_query_params' => 2, 'pg_set_client_encoding' => 2, 'pg_set_error_verbosity' => 2, 'pg_setclientencoding' => 2, 'pg_trace' => 2, 'pg_transaction_status' => 2, 'pg_tty' => 2, 'pg_unescape_bytea' => 2, 'pg_untrace' => 2, 'pg_update' => 2, 'pg_version' => 2, 'php_egg_logo_guid' => 2, 'php_ini_loaded_file' => 2, + 'php_ini_scanned_files' => 2, 'php_logo_guid' => 2, 'php_real_logo_guid' => 2, 'php_sapi_name' => 2, 'php_strip_whitespace' => 2, 'php_uname' => 2, 'phpcredits' => 2, 'phpdoc_xml_from_string' => 2, 'phpinfo' => 2, 'phpversion' => 2, 'pi' => 2, 'png2wbmp' => 2, 'pop3_close' => 2, 'pop3_delete_message' => 2, 'pop3_get_account_size' => 2, 'pop3_get_message' => 2, 'pop3_get_message_count' => 2, 'pop3_get_message_header' => 2, 'pop3_get_message_ids' => 2, 'pop3_get_message_size' => 2, 'pop3_get_message_sizes' => 2, 'pop3_open' => 2, 'pop3_undelete' => 2, 'popen' => 2, 'pos' => 2, 'posix_ctermid' => 2, + 'posix_errno' => 2, 'posix_get_last_error' => 2, 'posix_getcwd' => 2, 'posix_getegid' => 2, 'posix_geteuid' => 2, 'posix_getgid' => 2, 'posix_getgrgid' => 2, 'posix_getgrnam' => 2, 'posix_getgroups' => 2, 'posix_getlogin' => 2, 'posix_getpgid' => 2, 'posix_getpgrp' => 2, 'posix_getpid' => 2, 'posix_getppid' => 2, 'posix_getpwnam' => 2, 'posix_getpwuid' => 2, 'posix_getrlimit' => 2, 'posix_getsid' => 2, 'posix_getuid' => 2, 'posix_isatty' => 2, 'posix_kill' => 2, 'posix_mkfifo' => 2, 'posix_setegid' => 2, 'posix_seteuid' => 2, 'posix_setgid' => 2, 'posix_setpgid' => 2, + 'posix_setsid' => 2, 'posix_setuid' => 2, 'posix_strerror' => 2, 'posix_times' => 2, 'posix_ttyname' => 2, 'posix_uname' => 2, 'pow' => 2, 'preg_filter' => 2, 'preg_grep' => 2, 'preg_last_error' => 2, 'preg_match' => 2, 'preg_match_all' => 2, 'preg_quote' => 2, 'preg_replace' => 2, 'preg_replace_callback' => 2, 'preg_split' => 2, 'prev' => 2, 'print_r' => 2, 'printf' => 2, 'proc_close' => 2, 'proc_get_status' => 2, 'proc_open' => 2, 'proc_terminate' => 2, 'property_exists' => 2, 'putenv' => 2, 'quoted_printable_decode' => 2, + 'quoted_printable_encode' => 2, 'quotemeta' => 2, 'rad2deg' => 2, 'radius_acct_open' => 2, 'radius_add_server' => 2, 'radius_auth_open' => 2, 'radius_close' => 2, 'radius_config' => 2, 'radius_create_request' => 2, 'radius_cvt_addr' => 2, 'radius_cvt_int' => 2, 'radius_cvt_string' => 2, 'radius_demangle' => 2, 'radius_demangle_mppe_key' => 2, 'radius_get_attr' => 2, 'radius_get_vendor_attr' => 2, 'radius_put_addr' => 2, 'radius_put_attr' => 2, 'radius_put_int' => 2, 'radius_put_string' => 2, 'radius_put_vendor_addr' => 2, 'radius_put_vendor_attr' => 2, 'radius_put_vendor_int' => 2, 'radius_put_vendor_string' => 2, 'radius_request_authenticator' => 2, 'radius_send_request' => 2, + 'radius_server_secret' => 2, 'radius_strerror' => 2, 'rand' => 2, 'range' => 2, 'rawurldecode' => 2, 'rawurlencode' => 2, 'read_exif_data' => 2, 'readdir' => 2, 'readfile' => 2, 'readgzfile' => 2, 'readlink' => 2, 'realpath' => 2, 'realpath_cache_get' => 2, 'realpath_cache_size' => 2, 'recode_file' => 2, 'recode_string' => 2, 'reg_close_key' => 2, 'reg_create_key' => 2, 'reg_enum_key' => 2, 'reg_enum_value' => 2, 'reg_get_value' => 2, 'reg_open_key' => 2, 'reg_set_value' => 2, 'register_shutdown_function' => 2, 'register_tick_function' => 2, 'rename' => 2, + 'res_close' => 2, 'res_get' => 2, 'res_list' => 2, 'res_list_type' => 2, 'res_open' => 2, 'res_set' => 2, 'reset' => 2, 'resourcebundle_count' => 2, 'resourcebundle_create' => 2, 'resourcebundle_get' => 2, 'resourcebundle_get_error_code' => 2, 'resourcebundle_get_error_message' => 2, 'resourcebundle_locales' => 2, 'restore_error_handler' => 2, 'restore_exception_handler' => 2, 'restore_include_path' => 2, 'rewind' => 2, 'rewinddir' => 2, 'rmdir' => 2, 'round' => 2, 'rsort' => 2, 'rtrim' => 2, 'runkit_class_adopt' => 2, 'runkit_class_emancipate' => 2, 'runkit_constant_add' => 2, 'runkit_constant_redefine' => 2, + 'runkit_constant_remove' => 2, 'runkit_default_property_add' => 2, 'runkit_function_add' => 2, 'runkit_function_copy' => 2, 'runkit_function_redefine' => 2, 'runkit_function_remove' => 2, 'runkit_function_rename' => 2, 'runkit_import' => 2, 'runkit_lint' => 2, 'runkit_lint_file' => 2, 'runkit_method_add' => 2, 'runkit_method_copy' => 2, 'runkit_method_redefine' => 2, 'runkit_method_remove' => 2, 'runkit_method_rename' => 2, 'runkit_object_id' => 2, 'runkit_return_value_used' => 2, 'runkit_sandbox_output_handler' => 2, 'runkit_superglobals' => 2, 'runkit_zval_inspect' => 2, 'scandir' => 2, 'sem_acquire' => 2, 'sem_get' => 2, 'sem_release' => 2, 'sem_remove' => 2, 'serialize' => 2, + 'session_cache_expire' => 2, 'session_cache_limiter' => 2, 'session_commit' => 2, 'session_decode' => 2, 'session_destroy' => 2, 'session_encode' => 2, 'session_get_cookie_params' => 2, 'session_id' => 2, 'session_is_registered' => 2, 'session_module_name' => 2, 'session_name' => 2, 'session_regenerate_id' => 2, 'session_register' => 2, 'session_save_path' => 2, 'session_set_cookie_params' => 2, 'session_set_save_handler' => 2, 'session_start' => 2, 'session_unregister' => 2, 'session_unset' => 2, 'session_write_close' => 2, 'set_content' => 2, 'set_error_handler' => 2, 'set_exception_handler' => 2, 'set_file_buffer' => 2, 'set_include_path' => 2, 'set_magic_quotes_runtime' => 2, + 'set_socket_blocking' => 2, 'set_time_limit' => 2, 'setcookie' => 2, 'setlocale' => 2, 'setrawcookie' => 2, 'settype' => 2, 'sha1' => 2, 'sha1_file' => 2, 'shell_exec' => 2, 'shm_attach' => 2, 'shm_detach' => 2, 'shm_get_var' => 2, 'shm_put_var' => 2, 'shm_remove' => 2, 'shm_remove_var' => 2, 'shmop_close' => 2, 'shmop_delete' => 2, 'shmop_open' => 2, 'shmop_read' => 2, 'shmop_size' => 2, 'shmop_write' => 2, 'show_source' => 2, 'shuffle' => 2, 'similar_text' => 2, 'simplexml_import_dom' => 2, 'simplexml_load_file' => 2, + 'simplexml_load_string' => 2, 'sin' => 2, 'sinh' => 2, 'sizeof' => 2, 'sleep' => 2, 'smtp_close' => 2, 'smtp_cmd_data' => 2, 'smtp_cmd_mail' => 2, 'smtp_cmd_rcpt' => 2, 'smtp_connect' => 2, 'snmp2_get' => 2, 'snmp2_getnext' => 2, 'snmp2_real_walk' => 2, 'snmp2_set' => 2, 'snmp2_walk' => 2, 'snmp3_get' => 2, 'snmp3_getnext' => 2, 'snmp3_real_walk' => 2, 'snmp3_set' => 2, 'snmp3_walk' => 2, 'snmp_get_quick_print' => 2, 'snmp_get_valueretrieval' => 2, 'snmp_read_mib' => 2, 'snmp_set_quick_print' => 2, 'snmp_set_valueretrieval' => 2, 'snmpget' => 2, + 'snmpgetnext' => 2, 'snmprealwalk' => 2, 'snmpset' => 2, 'snmpwalk' => 2, 'snmpwalkoid' => 2, 'socket_accept' => 2, 'socket_bind' => 2, 'socket_clear_error' => 2, 'socket_close' => 2, 'socket_connect' => 2, 'socket_create' => 2, 'socket_create_listen' => 2, 'socket_create_pair' => 2, 'socket_get_option' => 2, 'socket_get_status' => 2, 'socket_getopt' => 2, 'socket_getpeername' => 2, 'socket_getsockname' => 2, 'socket_iovec_add' => 2, 'socket_iovec_alloc' => 2, 'socket_iovec_delete' => 2, 'socket_iovec_fetch' => 2, 'socket_iovec_free' => 2, 'socket_iovec_set' => 2, 'socket_last_error' => 2, 'socket_listen' => 2, + 'socket_read' => 2, 'socket_readv' => 2, 'socket_recv' => 2, 'socket_recvfrom' => 2, 'socket_recvmsg' => 2, 'socket_select' => 2, 'socket_send' => 2, 'socket_sendmsg' => 2, 'socket_sendto' => 2, 'socket_set_block' => 2, 'socket_set_blocking' => 2, 'socket_set_nonblock' => 2, 'socket_set_option' => 2, 'socket_set_timeout' => 2, 'socket_setopt' => 2, 'socket_shutdown' => 2, 'socket_strerror' => 2, 'socket_write' => 2, 'socket_writev' => 2, 'solid_close' => 2, 'solid_connect' => 2, 'solid_exec' => 2, 'solid_fetchrow' => 2, 'solid_fieldname' => 2, 'solid_fieldnum' => 2, 'solid_freeresult' => 2, + 'solid_numfields' => 2, 'solid_numrows' => 2, 'solid_result' => 2, 'sort' => 2, 'soundex' => 2, 'spl_autoload' => 2, 'spl_autoload_call' => 2, 'spl_autoload_extensions' => 2, 'spl_autoload_functions' => 2, 'spl_autoload_register' => 2, 'spl_autoload_unregister' => 2, 'spl_classes' => 2, 'spl_object_hash' => 2, 'split' => 2, 'spliti' => 2, 'sprintf' => 2, 'sql_regcase' => 2, 'sqlite_array_query' => 2, 'sqlite_busy_timeout' => 2, 'sqlite_changes' => 2, 'sqlite_close' => 2, 'sqlite_column' => 2, 'sqlite_create_aggregate' => 2, 'sqlite_create_function' => 2, 'sqlite_current' => 2, 'sqlite_error_string' => 2, + 'sqlite_escape_string' => 2, 'sqlite_exec' => 2, 'sqlite_factory' => 2, 'sqlite_fetch_all' => 2, 'sqlite_fetch_array' => 2, 'sqlite_fetch_column_types' => 2, 'sqlite_fetch_object' => 2, 'sqlite_fetch_single' => 2, 'sqlite_fetch_string' => 2, 'sqlite_field_name' => 2, 'sqlite_has_more' => 2, 'sqlite_has_prev' => 2, 'sqlite_last_error' => 2, 'sqlite_last_insert_rowid' => 2, 'sqlite_libencoding' => 2, 'sqlite_libversion' => 2, 'sqlite_next' => 2, 'sqlite_num_fields' => 2, 'sqlite_num_rows' => 2, 'sqlite_open' => 2, 'sqlite_popen' => 2, 'sqlite_prev' => 2, 'sqlite_query' => 2, 'sqlite_rewind' => 2, 'sqlite_seek' => 2, 'sqlite_single_query' => 2, + 'sqlite_udf_decode_binary' => 2, 'sqlite_udf_encode_binary' => 2, 'sqlite_unbuffered_query' => 2, 'sqlite_valid' => 2, 'sqrt' => 2, 'srand' => 2, 'sscanf' => 2, 'ssh2_auth_hostbased_file' => 2, 'ssh2_auth_none' => 2, 'ssh2_auth_password' => 2, 'ssh2_auth_pubkey_file' => 2, 'ssh2_connect' => 2, 'ssh2_exec' => 2, 'ssh2_fetch_stream' => 2, 'ssh2_fingerprint' => 2, 'ssh2_forward_accept' => 2, 'ssh2_forward_listen' => 2, 'ssh2_methods_negotiated' => 2, 'ssh2_poll' => 2, 'ssh2_publickey_add' => 2, 'ssh2_publickey_init' => 2, 'ssh2_publickey_list' => 2, 'ssh2_publickey_remove' => 2, 'ssh2_scp_recv' => 2, 'ssh2_scp_send' => 2, 'ssh2_sftp' => 2, + 'ssh2_sftp_lstat' => 2, 'ssh2_sftp_mkdir' => 2, 'ssh2_sftp_readlink' => 2, 'ssh2_sftp_realpath' => 2, 'ssh2_sftp_rename' => 2, 'ssh2_sftp_rmdir' => 2, 'ssh2_sftp_stat' => 2, 'ssh2_sftp_symlink' => 2, 'ssh2_sftp_unlink' => 2, 'ssh2_shell' => 2, 'ssh2_tunnel' => 2, 'stat' => 2, 'stats_absolute_deviation' => 2, 'stats_cdf_beta' => 2, 'stats_cdf_binomial' => 2, 'stats_cdf_cauchy' => 2, 'stats_cdf_chisquare' => 2, 'stats_cdf_exponential' => 2, 'stats_cdf_f' => 2, 'stats_cdf_gamma' => 2, 'stats_cdf_laplace' => 2, 'stats_cdf_logistic' => 2, 'stats_cdf_negative_binomial' => 2, 'stats_cdf_noncentral_chisquare' => 2, 'stats_cdf_noncentral_f' => 2, 'stats_cdf_noncentral_t' => 2, + 'stats_cdf_normal' => 2, 'stats_cdf_poisson' => 2, 'stats_cdf_t' => 2, 'stats_cdf_uniform' => 2, 'stats_cdf_weibull' => 2, 'stats_covariance' => 2, 'stats_dens_beta' => 2, 'stats_dens_cauchy' => 2, 'stats_dens_chisquare' => 2, 'stats_dens_exponential' => 2, 'stats_dens_f' => 2, 'stats_dens_gamma' => 2, 'stats_dens_laplace' => 2, 'stats_dens_logistic' => 2, 'stats_dens_normal' => 2, 'stats_dens_pmf_binomial' => 2, 'stats_dens_pmf_hypergeometric' => 2, 'stats_dens_pmf_negative_binomial' => 2, 'stats_dens_pmf_poisson' => 2, 'stats_dens_t' => 2, 'stats_dens_uniform' => 2, 'stats_dens_weibull' => 2, 'stats_harmonic_mean' => 2, 'stats_kurtosis' => 2, 'stats_rand_gen_beta' => 2, 'stats_rand_gen_chisquare' => 2, + 'stats_rand_gen_exponential' => 2, 'stats_rand_gen_f' => 2, 'stats_rand_gen_funiform' => 2, 'stats_rand_gen_gamma' => 2, 'stats_rand_gen_ipoisson' => 2, 'stats_rand_gen_iuniform' => 2, 'stats_rand_gen_noncenral_f' => 2, 'stats_rand_gen_noncentral_chisquare' => 2, 'stats_rand_gen_noncentral_t' => 2, 'stats_rand_gen_normal' => 2, 'stats_rand_gen_t' => 2, 'stats_rand_getsd' => 2, 'stats_rand_ibinomial' => 2, 'stats_rand_ibinomial_negative' => 2, 'stats_rand_ignlgi' => 2, 'stats_rand_phrase_to_seeds' => 2, 'stats_rand_ranf' => 2, 'stats_rand_setall' => 2, 'stats_skew' => 2, 'stats_standard_deviation' => 2, 'stats_stat_binomial_coef' => 2, 'stats_stat_correlation' => 2, 'stats_stat_factorial' => 2, 'stats_stat_independent_t' => 2, 'stats_stat_innerproduct' => 2, 'stats_stat_paired_t' => 2, + 'stats_stat_percentile' => 2, 'stats_stat_powersum' => 2, 'stats_variance' => 2, 'str_getcsv' => 2, 'str_ireplace' => 2, 'str_pad' => 2, 'str_repeat' => 2, 'str_replace' => 2, 'str_rot13' => 2, 'str_shuffle' => 2, 'str_split' => 2, 'str_word_count' => 2, 'strcasecmp' => 2, 'strchr' => 2, 'strcmp' => 2, 'strcoll' => 2, 'strcspn' => 2, 'stream_bucket_append' => 2, 'stream_bucket_make_writeable' => 2, 'stream_bucket_new' => 2, 'stream_bucket_prepend' => 2, 'stream_context_create' => 2, 'stream_context_get_default' => 2, 'stream_context_get_options' => 2, 'stream_context_get_params' => 2, 'stream_context_set_default' => 2, + 'stream_context_set_option' => 2, 'stream_context_set_params' => 2, 'stream_copy_to_stream' => 2, 'stream_encoding' => 2, 'stream_filter_append' => 2, 'stream_filter_prepend' => 2, 'stream_filter_register' => 2, 'stream_filter_remove' => 2, 'stream_get_contents' => 2, 'stream_get_filters' => 2, 'stream_get_line' => 2, 'stream_get_meta_data' => 2, 'stream_get_transports' => 2, 'stream_get_wrappers' => 2, 'stream_is_local' => 2, 'stream_notification_callback' => 2, 'stream_register_wrapper' => 2, 'stream_resolve_include_path' => 2, 'stream_select' => 2, 'stream_set_blocking' => 2, 'stream_set_chunk_size' => 2, 'stream_set_read_buffer' => 2, 'stream_set_timeout' => 2, 'stream_set_write_buffer' => 2, 'stream_socket_accept' => 2, 'stream_socket_client' => 2, + 'stream_socket_enable_crypto' => 2, 'stream_socket_get_name' => 2, 'stream_socket_pair' => 2, 'stream_socket_recvfrom' => 2, 'stream_socket_sendto' => 2, 'stream_socket_server' => 2, 'stream_socket_shutdown' => 2, 'stream_supports_lock' => 2, 'stream_wrapper_register' => 2, 'stream_wrapper_restore' => 2, 'stream_wrapper_unregister' => 2, 'strftime' => 2, 'strip_tags' => 2, 'stripcslashes' => 2, 'stripos' => 2, 'stripslashes' => 2, 'stristr' => 2, 'strlen' => 2, 'strnatcasecmp' => 2, 'strnatcmp' => 2, 'strncasecmp' => 2, 'strncmp' => 2, 'strpbrk' => 2, 'strpos' => 2, 'strrchr' => 2, 'strrev' => 2, + 'strripos' => 2, 'strrpos' => 2, 'strspn' => 2, 'strstr' => 2, 'strtok' => 2, 'strtolower' => 2, 'strtotime' => 2, 'strtoupper' => 2, 'strtr' => 2, 'strval' => 2, 'substr' => 2, 'substr_compare' => 2, 'substr_count' => 2, 'substr_replac' => 2, 'substr_replace' => 2, 'svn_add' => 2, 'svn_auth_get_parameter' => 2, 'svn_auth_set_parameter' => 2, 'svn_cat' => 2, 'svn_checkout' => 2, 'svn_cleanup' => 2, 'svn_client_version' => 2, 'svn_commit' => 2, 'svn_diff' => 2, 'svn_export' => 2, 'svn_fs_abort_txn' => 2, + 'svn_fs_apply_text' => 2, 'svn_fs_begin_txn2' => 2, 'svn_fs_change_node_prop' => 2, 'svn_fs_check_path' => 2, 'svn_fs_contents_changed' => 2, 'svn_fs_copy' => 2, 'svn_fs_delete' => 2, 'svn_fs_dir_entries' => 2, 'svn_fs_file_contents' => 2, 'svn_fs_file_length' => 2, 'svn_fs_is_dir' => 2, 'svn_fs_is_file' => 2, 'svn_fs_make_dir' => 2, 'svn_fs_make_file' => 2, 'svn_fs_node_created_rev' => 2, 'svn_fs_node_prop' => 2, 'svn_fs_props_changed' => 2, 'svn_fs_revision_prop' => 2, 'svn_fs_revision_root' => 2, 'svn_fs_txn_root' => 2, 'svn_fs_youngest_rev' => 2, 'svn_import' => 2, 'svn_info' => 2, 'svn_log' => 2, 'svn_ls' => 2, 'svn_repos_create' => 2, + 'svn_repos_fs' => 2, 'svn_repos_fs_begin_txn_for_commit' => 2, 'svn_repos_fs_commit_txn' => 2, 'svn_repos_hotcopy' => 2, 'svn_repos_open' => 2, 'svn_repos_recover' => 2, 'svn_status' => 2, 'svn_update' => 2, 'sybase_affected_rows' => 2, 'sybase_close' => 2, 'sybase_connect' => 2, 'sybase_data_seek' => 2, 'sybase_fetch_array' => 2, 'sybase_fetch_field' => 2, 'sybase_fetch_object' => 2, 'sybase_fetch_row' => 2, 'sybase_field_seek' => 2, 'sybase_free_result' => 2, 'sybase_num_fields' => 2, 'sybase_num_rows' => 2, 'sybase_pconnect' => 2, 'sybase_query' => 2, 'sybase_result' => 2, 'sybase_select_db' => 2, 'symlink' => 2, 'syntax' => 2, + 'sys_get_temp_dir' => 2, 'syslog' => 2, 'system' => 2, 'tan' => 2, 'tanh' => 2, 'tempnam' => 2, 'textdomain' => 2, 'thread_get' => 2, 'thread_include' => 2, 'thread_lock' => 2, 'thread_lock_try' => 2, 'thread_mutex_destroy' => 2, 'thread_mutex_init' => 2, 'thread_set' => 2, 'thread_start' => 2, 'thread_unlock' => 2, 'tidy_access_count' => 2, 'tidy_clean_repair' => 2, 'tidy_config_count' => 2, 'tidy_diagnose' => 2, 'tidy_error_count' => 2, 'tidy_get_body' => 2, 'tidy_get_config' => 2, 'tidy_get_error_buffer' => 2, 'tidy_get_head' => 2, 'tidy_get_html' => 2, + 'tidy_get_html_ver' => 2, 'tidy_get_output' => 2, 'tidy_get_release' => 2, 'tidy_get_root' => 2, 'tidy_get_status' => 2, 'tidy_getopt' => 2, 'tidy_is_xhtml' => 2, 'tidy_is_xml' => 2, 'tidy_parse_file' => 2, 'tidy_parse_string' => 2, 'tidy_repair_file' => 2, 'tidy_repair_string' => 2, 'tidy_warning_count' => 2, 'time' => 2, 'time_nanosleep' => 2, 'time_sleep_until' => 2, 'timezone_abbreviations_list' => 2, 'timezone_identifiers_list' => 2, 'timezone_location_get' => 2, 'timezone_name_from_abbr' => 2, 'timezone_name_get' => 2, 'timezone_offset_get' => 2, 'timezone_open' => 2, 'timezone_transitions_get' => 2, 'timezone_version_get' => 2, 'tmpfile' => 2, + 'token_get_all' => 2, 'token_name' => 2, 'touch' => 2, 'trait_exists' => 2, 'transliterate' => 2, 'transliterate_filters_get' => 2, 'trigger_error' => 2, 'trim' => 2, 'uasort' => 2, 'ucfirst' => 2, 'ucwords' => 2, 'uksort' => 2, 'umask' => 2, 'uniqid' => 2, 'unixtojd' => 2, 'unlink' => 2, 'unpack' => 2, 'unregister_tick_function' => 2, 'unserialize' => 2, 'urldecode' => 2, 'urlencode' => 2, 'use_soap_error_handler' => 2, 'user_error' => 2, 'usleep' => 2, 'usort' => 2, 'utf8_decode' => 2, + 'utf8_encode' => 2, 'var_dump' => 2, 'var_export' => 2, 'variant_abs' => 2, 'variant_add' => 2, 'variant_and' => 2, 'variant_cast' => 2, 'variant_cat' => 2, 'variant_cmp' => 2, 'variant_date_from_timestamp' => 2, 'variant_date_to_timestamp' => 2, 'variant_div' => 2, 'variant_eqv' => 2, 'variant_fix' => 2, 'variant_get_type' => 2, 'variant_idiv' => 2, 'variant_imp' => 2, 'variant_int' => 2, 'variant_mod' => 2, 'variant_mul' => 2, 'variant_neg' => 2, 'variant_not' => 2, 'variant_or' => 2, 'variant_pow' => 2, 'variant_round' => 2, 'variant_set' => 2, + 'variant_set_type' => 2, 'variant_sub' => 2, 'variant_xor' => 2, 'version_compare' => 2, 'vfprintf' => 2, 'virtual' => 2, 'vm_addalias' => 2, 'vm_adduser' => 2, 'vm_delalias' => 2, 'vm_deluser' => 2, 'vm_passwd' => 2, 'vprintf' => 2, 'vsprintf' => 2, 'wddx_add_vars' => 2, 'wddx_deserialize' => 2, 'wddx_packet_end' => 2, 'wddx_packet_start' => 2, 'wddx_serialize_value' => 2, 'wddx_serialize_vars' => 2, 'win32_create_service' => 2, 'win32_delete_service' => 2, 'win32_get_last_control_message' => 2, 'win32_ps_list_procs' => 2, 'win32_ps_stat_mem' => 2, 'win32_ps_stat_proc' => 2, 'win32_query_service_status' => 2, + 'win32_scheduler_delete_task' => 2, 'win32_scheduler_enum_tasks' => 2, 'win32_scheduler_get_task_info' => 2, 'win32_scheduler_run' => 2, 'win32_scheduler_set_task_info' => 2, 'win32_set_service_status' => 2, 'win32_start_service' => 2, 'win32_start_service_ctrl_dispatcher' => 2, 'win32_stop_service' => 2, 'win_beep' => 2, 'win_browse_file' => 2, 'win_browse_folder' => 2, 'win_create_link' => 2, 'win_message_box' => 2, 'win_play_wav' => 2, 'win_shell_execute' => 2, 'wordwrap' => 2, 'xml_error_string' => 2, 'xml_get_current_byte_index' => 2, 'xml_get_current_column_number' => 2, 'xml_get_current_line_number' => 2, 'xml_get_error_code' => 2, 'xml_parse' => 2, 'xml_parse_into_struct' => 2, 'xml_parser_create' => 2, 'xml_parser_create_ns' => 2, + 'xml_parser_free' => 2, 'xml_parser_get_option' => 2, 'xml_parser_set_option' => 2, 'xml_set_character_data_handler' => 2, 'xml_set_default_handler' => 2, 'xml_set_element_handler' => 2, 'xml_set_end_namespace_decl_handler' => 2, 'xml_set_external_entity_ref_handler' => 2, 'xml_set_notation_decl_handler' => 2, 'xml_set_object' => 2, 'xml_set_processing_instruction_handler' => 2, 'xml_set_start_namespace_decl_handler' => 2, 'xml_set_unparsed_entity_decl_handler' => 2, 'xmldoc' => 2, 'xmldocfile' => 2, 'xmlrpc_decode' => 2, 'xmlrpc_decode_request' => 2, 'xmlrpc_encode' => 2, 'xmlrpc_encode_request' => 2, 'xmlrpc_get_type' => 2, 'xmlrpc_is_fault' => 2, 'xmlrpc_parse_method_descriptions' => 2, 'xmlrpc_server_add_introspection_data' => 2, 'xmlrpc_server_call_method' => 2, 'xmlrpc_server_create' => 2, 'xmlrpc_server_destroy' => 2, + 'xmlrpc_server_register_introspection_callback' => 2, 'xmlrpc_server_register_method' => 2, 'xmlrpc_set_type' => 2, 'xmltree' => 2, 'xmlwriter_end_attribute' => 2, 'xmlwriter_end_cdata' => 2, 'xmlwriter_end_comment' => 2, 'xmlwriter_end_document' => 2, 'xmlwriter_end_dtd' => 2, 'xmlwriter_end_dtd_attlist' => 2, 'xmlwriter_end_dtd_element' => 2, 'xmlwriter_end_dtd_entity' => 2, 'xmlwriter_end_element' => 2, 'xmlwriter_end_pi' => 2, 'xmlwriter_flush' => 2, 'xmlwriter_full_end_element' => 2, 'xmlwriter_open_memory' => 2, 'xmlwriter_open_uri' => 2, 'xmlwriter_output_memory' => 2, 'xmlwriter_set_indent' => 2, 'xmlwriter_set_indent_string' => 2, 'xmlwriter_start_attribute' => 2, 'xmlwriter_start_attribute_ns' => 2, 'xmlwriter_start_cdata' => 2, 'xmlwriter_start_comment' => 2, 'xmlwriter_start_document' => 2, + 'xmlwriter_start_dtd' => 2, 'xmlwriter_start_dtd_attlist' => 2, 'xmlwriter_start_dtd_element' => 2, 'xmlwriter_start_dtd_entity' => 2, 'xmlwriter_start_element' => 2, 'xmlwriter_start_element_ns' => 2, 'xmlwriter_start_pi' => 2, 'xmlwriter_text' => 2, 'xmlwriter_write_attribute' => 2, 'xmlwriter_write_attribute_ns' => 2, 'xmlwriter_write_cdata' => 2, 'xmlwriter_write_comment' => 2, 'xmlwriter_write_dtd' => 2, 'xmlwriter_write_dtd_attlist' => 2, 'xmlwriter_write_dtd_element' => 2, 'xmlwriter_write_dtd_entity' => 2, 'xmlwriter_write_element' => 2, 'xmlwriter_write_element_ns' => 2, 'xmlwriter_write_pi' => 2, 'xmlwriter_write_raw' => 2, 'xpath_eval' => 2, 'xpath_eval_expression' => 2, 'xpath_new_context' => 2, 'xpath_register_ns' => 2, 'xpath_register_ns_auto' => 2, 'xptr_eval' => 2, + 'xptr_new_context' => 2, 'yp_all' => 2, 'yp_cat' => 2, 'yp_err_string' => 2, 'yp_errno' => 2, 'yp_first' => 2, 'yp_get_default_domain' => 2, 'yp_master' => 2, 'yp_match' => 2, 'yp_next' => 2, 'yp_order' => 2, 'zend_current_obfuscation_level' => 2, 'zend_get_cfg_var' => 2, 'zend_get_id' => 2, 'zend_loader_current_file' => 2, 'zend_loader_enabled' => 2, 'zend_loader_file_encoded' => 2, 'zend_loader_file_licensed' => 2, 'zend_loader_install_license' => 2, 'zend_loader_version' => 2, 'zend_logo_guid' => 2, 'zend_match_hostmasks' => 2, 'zend_obfuscate_class_name' => 2, 'zend_obfuscate_function_name' => 2, 'zend_optimizer_version' => 2, 'zend_runtime_obfuscate' => 2, + 'zend_version' => 2, 'zip_close' => 2, 'zip_entry_close' => 2, 'zip_entry_compressedsize' => 2, 'zip_entry_compressionmethod' => 2, 'zip_entry_filesize' => 2, 'zip_entry_name' => 2, 'zip_entry_open' => 2, 'zip_entry_read' => 2, 'zip_open' => 2, 'zip_read' => 2, 'zlib_decode' => 2, 'zlib_encode' => 2, 'zlib_get_coding_type' => 2 + ), 2 => false + ); + + } + + /** + * Finds a delimiter for state OUT. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter0($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '$', 1 => '\'', 2 => '"', 4 => '_', 7 => "\n", 8 => "\t", 9 => '//', 10 => '/*', 11 => '#', 12 => '?>', 13 => ' ' ' ' "\n", 1 => "\t", 2 => '*/' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + if (0 === strpos($part, $delimiters[2])) { + return array(2, $delimiters[2], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state COMMENT_LINE. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter4($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => "\n", 1 => "\t", 2 => '?>' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + if (0 === strpos($part, $delimiters[2])) { + return array(2, $delimiters[2], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state VAR. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter5($text, $textLength, $textPos) + { + static $delimiters = array( + 1 => '$', 2 => '{', 3 => '}' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if (preg_match('~^\\W+~', $part, $matches)) { + return array(0, $matches[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + if ($delimiters[2] === $letter) { + return array(2, $delimiters[2], $buffer); + } + if ($delimiters[3] === $letter) { + return array(3, $delimiters[3], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state VAR_STR. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter6($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '}' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if (preg_match('~^\s+~', $part, $matches)) { + return array(1, $matches[0], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state QUOTE_DOUBLE. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter7($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '"', 1 => '\\\\', 2 => '\\"', 3 => '$', 4 => '{$', 5 => "\n", 6 => "\t" + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if (0 === strpos($part, $delimiters[1])) { + return array(1, $delimiters[1], $buffer); + } + if (0 === strpos($part, $delimiters[2])) { + return array(2, $delimiters[2], $buffer); + } + if ($delimiters[3] === $letter) { + return array(3, $delimiters[3], $buffer); + } + if (0 === strpos($part, $delimiters[4])) { + return array(4, $delimiters[4], $buffer); + } + if ($delimiters[5] === $letter) { + return array(5, $delimiters[5], $buffer); + } + if ($delimiters[6] === $letter) { + return array(6, $delimiters[6], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state HEREDOC. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter8($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => "\n", 1 => "\t", 2 => '\\$', 3 => '$', 4 => '{$' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + if (0 === strpos($part, $delimiters[2])) { + return array(2, $delimiters[2], $buffer); + } + if ($delimiters[3] === $letter) { + return array(3, $delimiters[3], $buffer); + } + if (0 === strpos($part, $delimiters[4])) { + return array(4, $delimiters[4], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state HEREDOC_END. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter9($text, $textLength, $textPos) + { + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + if (preg_match('~\\w+;\\n~A', $text, $matches, 0, $textPos)) { + return array(0, $matches[0], $buffer); + } + return array(1, $letter, $buffer); + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state QUOTE_SINGLE. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter10($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '\'', 1 => '\\\\', 2 => '\\\'', 3 => "\n", 4 => "\t" + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if (0 === strpos($part, $delimiters[1])) { + return array(1, $delimiters[1], $buffer); + } + if (0 === strpos($part, $delimiters[2])) { + return array(2, $delimiters[2], $buffer); + } + if ($delimiters[3] === $letter) { + return array(3, $delimiters[3], $buffer); + } + if ($delimiters[4] === $letter) { + return array(4, $delimiters[4], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state NOWDOC. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter11($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => "\n", 1 => "\t" + ); + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state NOWDOC_END. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter12($text, $textLength, $textPos) + { + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + if (preg_match('~\\w+;\\n~A', $text, $matches, 0, $textPos)) { + return array(0, $matches[0], $buffer); + } + return array(1, $letter, $buffer); + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state NUMBER. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter13($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => 'e', 1 => 'E', 2 => 'x', 3 => 'b' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + if ($delimiters[2] === $letter) { + return array(2, $delimiters[2], $buffer); + } + if ($delimiters[3] === $letter) { + return array(3, $delimiters[3], $buffer); + } + if (preg_match('~^\.\\d+~', $part, $matches)) { + return array(4, $matches[0], $buffer); + } + return array(5, $letter, $buffer); + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state EXPONENT. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter14($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '+', 1 => '-' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + if (preg_match('~^\\D+~', $part, $matches)) { + return array(2, $matches[0], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state HEXA. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter15($text, $textLength, $textPos) + { + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + + if (preg_match('~^[^a-f\\d]+~i', $part, $matches)) { + return array(0, $matches[0], $buffer); + } + $buffer .= $text[$textPos]; + $textPos++; + } + return array(-1, -1, $buffer); + } + +} \ No newline at end of file diff --git a/apigen/libs/FSHL/FSHL/Lexer/Cache/Python.php b/apigen/libs/FSHL/FSHL/Lexer/Cache/Python.php new file mode 100644 index 00000000000..2d161639a8d --- /dev/null +++ b/apigen/libs/FSHL/FSHL/Lexer/Cache/Python.php @@ -0,0 +1,711 @@ +language = 'Python'; + $this->trans = array( + 0 => array( + 0 => array( + 0 => 1, 1 => -1 + ), 1 => array( + 0 => 1, 1 => -1 + ), 2 => array( + 0 => 2, 1 => 1 + ), 3 => array( + 0 => 3, 1 => 1 + ), 4 => array( + 0 => 4, 1 => 1 + ), 5 => array( + 0 => 5, 1 => 1 + ), 6 => array( + 0 => 6, 1 => 1 + ), 7 => array( + 0 => 7, 1 => 1 + ), 8 => array( + 0 => 7, 1 => 1 + ), 9 => array( + 0 => 0, 1 => 1 + ), 10 => array( + 0 => 0, 1 => 1 + ) + ), 1 => array( + 0 => array( + 0 => 11, 1 => -1 + ) + ), 2 => array( + 0 => array( + 0 => 11, 1 => 0 + ), 1 => array( + 0 => 2, 1 => 1 + ), 2 => array( + 0 => 2, 1 => 1 + ), 3 => array( + 0 => 2, 1 => 1 + ), 4 => array( + 0 => 2, 1 => 1 + ) + ), 3 => array( + 0 => array( + 0 => 11, 1 => 0 + ), 1 => array( + 0 => 3, 1 => 1 + ), 2 => array( + 0 => 3, 1 => 1 + ), 3 => array( + 0 => 3, 1 => 1 + ), 4 => array( + 0 => 3, 1 => 1 + ) + ), 4 => array( + 0 => array( + 0 => 11, 1 => 0 + ), 1 => array( + 0 => 4, 1 => 1 + ), 2 => array( + 0 => 4, 1 => 1 + ), 3 => array( + 0 => 4, 1 => 1 + ), 4 => array( + 0 => 4, 1 => 1 + ) + ), 5 => array( + 0 => array( + 0 => 11, 1 => 0 + ), 1 => array( + 0 => 5, 1 => 1 + ), 2 => array( + 0 => 5, 1 => 1 + ), 3 => array( + 0 => 5, 1 => 1 + ), 4 => array( + 0 => 5, 1 => 1 + ) + ), 6 => array( + 0 => array( + 0 => 11, 1 => -1 + ), 1 => array( + 0 => 6, 1 => 1 + ) + ), 7 => array( + 0 => array( + 0 => 8, 1 => 1 + ), 1 => array( + 0 => 11, 1 => 0 + ), 2 => array( + 0 => 11, 1 => 0 + ), 3 => array( + 0 => 11, 1 => 0 + ), 4 => array( + 0 => 11, 1 => 0 + ), 5 => array( + 0 => 9, 1 => 1 + ), 6 => array( + 0 => 9, 1 => 1 + ), 7 => array( + 0 => 9, 1 => 1 + ), 8 => array( + 0 => 10, 1 => 1 + ), 9 => array( + 0 => 10, 1 => 1 + ), 10 => array( + 0 => 11, 1 => -1 + ) + ), 8 => array( + 0 => array( + 0 => 11, 1 => 0 + ), 1 => array( + 0 => 11, 1 => 0 + ), 2 => array( + 0 => 9, 1 => 1 + ), 3 => array( + 0 => 9, 1 => 1 + ), 4 => array( + 0 => 9, 1 => 1 + ), 5 => array( + 0 => 11, 1 => -1 + ) + ), 9 => array( + 0 => array( + 0 => 11, 1 => 0 + ), 1 => array( + 0 => 11, 1 => 0 + ), 2 => array( + 0 => 11, 1 => -1 + ) + ), 10 => array( + 0 => array( + 0 => 11, 1 => 0 + ), 1 => array( + 0 => 11, 1 => 0 + ), 2 => array( + 0 => 11, 1 => -1 + ) + ) + ); + $this->initialState = 0; + $this->returnState = 11; + $this->quitState = 12; + $this->flags = array( + 0 => 0, 1 => 5, 2 => 4, 3 => 4, 4 => 4, 5 => 4, 6 => 4, 7 => 4, 8 => 0, 9 => 0, 10 => 4 + ); + $this->data = array( + 0 => NULL, 1 => NULL, 2 => NULL, 3 => NULL, 4 => NULL, 5 => NULL, 6 => NULL, 7 => NULL, 8 => NULL, 9 => NULL, 10 => NULL + ); + $this->classes = array( + 0 => NULL, 1 => NULL, 2 => 'py-docstring', 3 => 'py-docstring', 4 => 'py-quote', 5 => 'py-quote', 6 => 'py-comment', 7 => 'py-num', 8 => 'py-num', 9 => 'py-num', 10 => 'py-num' + ); + $this->keywords = array( + 0 => 'py-keyword', 1 => array( + 'and' => 1, 'as' => 1, 'assert' => 1, 'break' => 1, 'class' => 1, 'continue' => 1, 'def' => 1, 'del' => 1, 'elif' => 1, 'else' => 1, 'except' => 1, 'exec' => 1, 'finally' => 1, 'for' => 1, 'from' => 1, 'global' => 1, 'if' => 1, 'import' => 1, 'in' => 1, 'is' => 1, 'lambda' => 1, 'not' => 1, 'or' => 1, 'pass' => 1, 'print' => 1, 'raise' => 1, + 'return' => 1, 'try' => 1, 'while' => 1, 'with' => 1, 'yield' => 1, 'abs' => 2, 'all' => 2, 'any' => 2, 'apply' => 2, 'basestring' => 2, 'bool' => 2, 'buffer' => 2, 'callable' => 2, 'chr' => 2, 'classmethod' => 2, 'cmp' => 2, 'coerce' => 2, 'compile' => 2, 'complex' => 2, 'delattr' => 2, 'dict' => 2, 'dir' => 2, 'divmod' => 2, 'enumerate' => 2, 'eval' => 2, 'execfile' => 2, + 'file' => 2, 'filter' => 2, 'float' => 2, 'frozenset' => 2, 'getattr' => 2, 'globals' => 2, 'hasattr' => 2, 'hash' => 2, 'hex' => 2, 'id' => 2, 'input' => 2, 'int' => 2, 'intern' => 2, 'isinstance' => 2, 'issubclass' => 2, 'iter' => 2, 'len' => 2, 'list' => 2, 'locals' => 2, 'long' => 2, 'map' => 2, 'max' => 2, 'min' => 2, 'object' => 2, 'oct' => 2, 'open' => 2, + 'ord' => 2, 'pow' => 2, 'property' => 2, 'range' => 2, 'raw_input' => 2, 'reduce' => 2, 'reload' => 2, 'repr' => 2, 'reversed' => 2, 'round' => 2, 'set' => 2, 'setattr' => 2, 'slice' => 2, 'sorted' => 2, 'staticmethod' => 2, 'str' => 2, 'sum' => 2, 'super' => 2, 'tuple' => 2, 'type' => 2, 'unichr' => 2, 'unicode' => 2, 'vars' => 2, 'xrange' => 2, 'zip' => 2, 'ArithmeticError' => 3, + 'AssertionError' => 3, 'AttributeError' => 3, 'BaseException' => 3, 'DeprecationWarning' => 3, 'EOFError' => 3, 'Ellipsis' => 3, 'EnvironmentError' => 3, 'Exception' => 3, 'FloatingPointError' => 3, 'FutureWarning' => 3, 'GeneratorExit' => 3, 'IOError' => 3, 'ImportError' => 3, 'ImportWarning' => 3, 'IndentationError' => 3, 'IndexError' => 3, 'KeyError' => 3, 'KeyboardInterrupt' => 3, 'LookupError' => 3, 'MemoryError' => 3, 'NameError' => 3, 'NotImplemented' => 3, 'NotImplementedError' => 3, 'OSError' => 3, 'OverflowError' => 3, 'OverflowWarning' => 3, + 'PendingDeprecationWarning' => 3, 'ReferenceError' => 3, 'RuntimeError' => 3, 'RuntimeWarning' => 3, 'StandardError' => 3, 'StopIteration' => 3, 'SyntaxError' => 3, 'SyntaxWarning' => 3, 'SystemError' => 3, 'SystemExit' => 3, 'TabError' => 3, 'TypeError' => 3, 'UnboundLocalError' => 3, 'UnicodeDecodeError' => 3, 'UnicodeEncodeError' => 3, 'UnicodeError' => 3, 'UnicodeTranslateError' => 3, 'UnicodeWarning' => 3, 'UserWarning' => 3, 'ValueError' => 3, 'Warning' => 3, 'WindowsError' => 3, 'ZeroDivisionError' => 3, 'BufferType' => 3, 'BuiltinFunctionType' => 3, 'BuiltinMethodType' => 3, + 'ClassType' => 3, 'CodeType' => 3, 'ComplexType' => 3, 'DictProxyType' => 3, 'DictType' => 3, 'DictionaryType' => 3, 'EllipsisType' => 3, 'FileType' => 3, 'FloatType' => 3, 'FrameType' => 3, 'FunctionType' => 3, 'GeneratorType' => 3, 'InstanceType' => 3, 'IntType' => 3, 'LambdaType' => 3, 'ListType' => 3, 'LongType' => 3, 'MethodType' => 3, 'ModuleType' => 3, 'NoneType' => 3, 'ObjectType' => 3, 'SliceType' => 3, 'StringType' => 3, 'StringTypes' => 3, 'TracebackType' => 3, 'TupleType' => 3, + 'TypeType' => 3, 'UnboundMethodType' => 3, 'UnicodeType' => 3, 'XRangeType' => 3, 'False' => 3, 'None' => 3, 'True' => 3, '__abs__' => 3, '__add__' => 3, '__all__' => 3, '__author__' => 3, '__bases__' => 3, '__builtins__' => 3, '__call__' => 3, '__class__' => 3, '__cmp__' => 3, '__coerce__' => 3, '__contains__' => 3, '__debug__' => 3, '__del__' => 3, '__delattr__' => 3, '__delitem__' => 3, '__delslice__' => 3, '__dict__' => 3, '__div__' => 3, '__divmod__' => 3, + '__doc__' => 3, '__eq__' => 3, '__file__' => 3, '__float__' => 3, '__floordiv__' => 3, '__future__' => 3, '__ge__' => 3, '__getattr__' => 3, '__getattribute__' => 3, '__getitem__' => 3, '__getslice__' => 3, '__gt__' => 3, '__hash__' => 3, '__hex__' => 3, '__iadd__' => 3, '__import__' => 3, '__imul__' => 3, '__init__' => 3, '__int__' => 3, '__invert__' => 3, '__iter__' => 3, '__le__' => 3, '__len__' => 3, '__long__' => 3, '__lshift__' => 3, '__lt__' => 3, + '__members__' => 3, '__metaclass__' => 3, '__mod__' => 3, '__mro__' => 3, '__mul__' => 3, '__name__' => 3, '__ne__' => 3, '__neg__' => 3, '__new__' => 3, '__nonzero__' => 3, '__oct__' => 3, '__or__' => 3, '__path__' => 3, '__pos__' => 3, '__pow__' => 3, '__radd__' => 3, '__rdiv__' => 3, '__rdivmod__' => 3, '__reduce__' => 3, '__repr__' => 3, '__rfloordiv__' => 3, '__rlshift__' => 3, '__rmod__' => 3, '__rmul__' => 3, '__ror__' => 3, '__rpow__' => 3, + '__rrshift__' => 3, '__rsub__' => 3, '__rtruediv__' => 3, '__rxor__' => 3, '__setattr__' => 3, '__setitem__' => 3, '__setslice__' => 3, '__self__' => 3, '__slots__' => 3, '__str__' => 3, '__sub__' => 3, '__truediv__' => 3, '__version__' => 3, '__xor__' => 3 + ), 2 => true + ); + + } + + /** + * Finds a delimiter for state OUT. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter0($text, $textLength, $textPos) + { + static $delimiters = array( + 1 => '_', 2 => '\'\'\'', 3 => '"""', 4 => '\'', 5 => '"', 6 => '#', 9 => "\n", 10 => "\t" + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if (preg_match('~^[a-z]+~i', $part, $matches)) { + return array(0, $matches[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + if (0 === strpos($part, $delimiters[2])) { + return array(2, $delimiters[2], $buffer); + } + if (0 === strpos($part, $delimiters[3])) { + return array(3, $delimiters[3], $buffer); + } + if ($delimiters[4] === $letter) { + return array(4, $delimiters[4], $buffer); + } + if ($delimiters[5] === $letter) { + return array(5, $delimiters[5], $buffer); + } + if ($delimiters[6] === $letter) { + return array(6, $delimiters[6], $buffer); + } + if (preg_match('~^\\d+~', $part, $matches)) { + return array(7, $matches[0], $buffer); + } + if (preg_match('~^\.\\d+~', $part, $matches)) { + return array(8, $matches[0], $buffer); + } + if ($delimiters[9] === $letter) { + return array(9, $delimiters[9], $buffer); + } + if ($delimiters[10] === $letter) { + return array(10, $delimiters[10], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state KEYWORD. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter1($text, $textLength, $textPos) + { + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + + if (preg_match('~^\\W+~', $part, $matches)) { + return array(0, $matches[0], $buffer); + } + $buffer .= $text[$textPos]; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state DOCSTRING1. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter2($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '\'\'\'', 1 => '\\\\', 2 => '\\\'\'\'', 3 => "\n", 4 => "\t" + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if (0 === strpos($part, $delimiters[0])) { + return array(0, $delimiters[0], $buffer); + } + if (0 === strpos($part, $delimiters[1])) { + return array(1, $delimiters[1], $buffer); + } + if (0 === strpos($part, $delimiters[2])) { + return array(2, $delimiters[2], $buffer); + } + if ($delimiters[3] === $letter) { + return array(3, $delimiters[3], $buffer); + } + if ($delimiters[4] === $letter) { + return array(4, $delimiters[4], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state DOCSTRING2. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter3($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '"""', 1 => '\\\\', 2 => '\\"""', 3 => "\n", 4 => "\t" + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if (0 === strpos($part, $delimiters[0])) { + return array(0, $delimiters[0], $buffer); + } + if (0 === strpos($part, $delimiters[1])) { + return array(1, $delimiters[1], $buffer); + } + if (0 === strpos($part, $delimiters[2])) { + return array(2, $delimiters[2], $buffer); + } + if ($delimiters[3] === $letter) { + return array(3, $delimiters[3], $buffer); + } + if ($delimiters[4] === $letter) { + return array(4, $delimiters[4], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state QUOTE_SINGLE. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter4($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '\'', 1 => '\\\\', 2 => '\\\'', 3 => "\n", 4 => "\t" + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if (0 === strpos($part, $delimiters[1])) { + return array(1, $delimiters[1], $buffer); + } + if (0 === strpos($part, $delimiters[2])) { + return array(2, $delimiters[2], $buffer); + } + if ($delimiters[3] === $letter) { + return array(3, $delimiters[3], $buffer); + } + if ($delimiters[4] === $letter) { + return array(4, $delimiters[4], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state QUOTE_DOUBLE. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter5($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '"', 1 => '\\\\', 2 => '\\"', 3 => "\n", 4 => "\t" + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if (0 === strpos($part, $delimiters[1])) { + return array(1, $delimiters[1], $buffer); + } + if (0 === strpos($part, $delimiters[2])) { + return array(2, $delimiters[2], $buffer); + } + if ($delimiters[3] === $letter) { + return array(3, $delimiters[3], $buffer); + } + if ($delimiters[4] === $letter) { + return array(4, $delimiters[4], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state COMMENT_LINE. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter6($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => "\n", 1 => "\t" + ); + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state NUMBER. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter7($text, $textLength, $textPos) + { + static $delimiters = array( + 1 => 'l', 2 => 'L', 3 => 'j', 4 => 'J', 5 => 'e-', 6 => 'e+', 7 => 'e', 8 => 'x', 9 => 'X' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if (preg_match('~^\.\\d+~', $part, $matches)) { + return array(0, $matches[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + if ($delimiters[2] === $letter) { + return array(2, $delimiters[2], $buffer); + } + if ($delimiters[3] === $letter) { + return array(3, $delimiters[3], $buffer); + } + if ($delimiters[4] === $letter) { + return array(4, $delimiters[4], $buffer); + } + if (0 === strpos($part, $delimiters[5])) { + return array(5, $delimiters[5], $buffer); + } + if (0 === strpos($part, $delimiters[6])) { + return array(6, $delimiters[6], $buffer); + } + if ($delimiters[7] === $letter) { + return array(7, $delimiters[7], $buffer); + } + if ($delimiters[8] === $letter) { + return array(8, $delimiters[8], $buffer); + } + if ($delimiters[9] === $letter) { + return array(9, $delimiters[9], $buffer); + } + return array(10, $letter, $buffer); + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state FRACTION. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter8($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => 'j', 1 => 'J', 2 => 'e-', 3 => 'e+', 4 => 'e' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + if (0 === strpos($part, $delimiters[2])) { + return array(2, $delimiters[2], $buffer); + } + if (0 === strpos($part, $delimiters[3])) { + return array(3, $delimiters[3], $buffer); + } + if ($delimiters[4] === $letter) { + return array(4, $delimiters[4], $buffer); + } + return array(5, $letter, $buffer); + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state EXPONENT. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter9($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => 'j', 1 => 'J' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + if (preg_match('~^\\D+~', $part, $matches)) { + return array(2, $matches[0], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state HEXA. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter10($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => 'L', 1 => 'l' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + if (preg_match('~^[^a-f\\d]+~i', $part, $matches)) { + return array(2, $matches[0], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + +} \ No newline at end of file diff --git a/apigen/libs/FSHL/FSHL/Lexer/Cache/Sql.php b/apigen/libs/FSHL/FSHL/Lexer/Cache/Sql.php new file mode 100644 index 00000000000..2345dfec5ab --- /dev/null +++ b/apigen/libs/FSHL/FSHL/Lexer/Cache/Sql.php @@ -0,0 +1,594 @@ +language = 'Sql'; + $this->trans = array( + 0 => array( + 0 => array( + 0 => 1, 1 => -1 + ), 1 => array( + 0 => 7, 1 => 1 + ), 2 => array( + 0 => 7, 1 => 1 + ), 3 => array( + 0 => 2, 1 => 1 + ), 4 => array( + 0 => 3, 1 => 1 + ), 5 => array( + 0 => 3, 1 => 1 + ), 6 => array( + 0 => 3, 1 => 1 + ), 7 => array( + 0 => 4, 1 => 1 + ), 8 => array( + 0 => 5, 1 => 1 + ), 9 => array( + 0 => 6, 1 => 1 + ), 10 => array( + 0 => 0, 1 => 1 + ), 11 => array( + 0 => 0, 1 => 1 + ) + ), 1 => array( + 0 => array( + 0 => 10, 1 => -1 + ) + ), 2 => array( + 0 => array( + 0 => 2, 1 => 1 + ), 1 => array( + 0 => 2, 1 => 1 + ), 2 => array( + 0 => 10, 1 => 0 + ) + ), 3 => array( + 0 => array( + 0 => 10, 1 => -1 + ), 1 => array( + 0 => 3, 1 => 1 + ) + ), 4 => array( + 0 => array( + 0 => 10, 1 => 0 + ), 1 => array( + 0 => 4, 1 => 1 + ), 2 => array( + 0 => 4, 1 => 1 + ), 3 => array( + 0 => 4, 1 => 1 + ) + ), 5 => array( + 0 => array( + 0 => 10, 1 => 0 + ), 1 => array( + 0 => 5, 1 => 1 + ), 2 => array( + 0 => 5, 1 => 1 + ), 3 => array( + 0 => 5, 1 => 1 + ) + ), 6 => array( + 0 => array( + 0 => 10, 1 => 0 + ), 1 => array( + 0 => 6, 1 => 1 + ), 2 => array( + 0 => 6, 1 => 1 + ), 3 => array( + 0 => 6, 1 => 1 + ) + ), 7 => array( + 0 => array( + 0 => 8, 1 => 1 + ), 1 => array( + 0 => 7, 1 => 1 + ), 2 => array( + 0 => 10, 1 => -1 + ) + ), 8 => array( + 0 => array( + 0 => 10, 1 => -1 + ) + ), 9 => array( + 0 => array( + 0 => 9, 1 => 1 + ), 1 => array( + 0 => 9, 1 => 1 + ), 2 => array( + 0 => 9, 1 => 1 + ), 3 => array( + 0 => 9, 1 => 1 + ), 4 => array( + 0 => 9, 1 => 1 + ) + ) + ); + $this->initialState = 0; + $this->returnState = 10; + $this->quitState = 11; + $this->flags = array( + 0 => 1, 1 => 5, 2 => 4, 3 => 4, 4 => 4, 5 => 4, 6 => 4, 7 => 4, 8 => 0, 9 => 4 + ); + $this->data = array( + 0 => NULL, 1 => NULL, 2 => NULL, 3 => NULL, 4 => NULL, 5 => NULL, 6 => NULL, 7 => NULL, 8 => NULL, 9 => NULL + ); + $this->classes = array( + 0 => NULL, 1 => NULL, 2 => 'sql-comment', 3 => 'sql-comment', 4 => 'sql-value', 5 => 'sql-value', 6 => 'sql-value', 7 => 'sql-num', 8 => 'sql-num', 9 => 'sql-option' + ); + $this->keywords = array( + 0 => 'sql-keyword', 1 => array( + 'a' => 1, 'abs' => 2, 'acos' => 2, 'add' => 1, 'add_months' => 1, 'after' => 1, 'all' => 1, 'alter' => 1, 'an' => 1, 'and' => 1, 'any' => 1, 'array' => 1, 'as' => 1, 'asc' => 1, 'ascii' => 2, 'asin' => 2, 'atan' => 2, 'atan2' => 2, 'avg' => 2, 'before' => 1, 'begin' => 1, 'between' => 1, 'bigint' => 3, 'binary' => 1, 'bind' => 1, 'binding' => 1, + 'bit' => 1, 'blob' => 3, 'boolean' => 3, 'by' => 1, 'call' => 1, 'cascade' => 1, 'case' => 1, 'cast' => 1, 'ceiling' => 2, 'char' => 3, 'char_length' => 2, 'character' => 2, 'character_length' => 2, 'chartorowid' => 1, 'check' => 1, 'chr' => 1, 'cleanup' => 1, 'close' => 1, 'clustered' => 1, 'coalesce' => 1, 'colgroup' => 1, 'collate' => 1, 'commit' => 1, 'complex' => 1, 'compress' => 1, 'concat' => 2, + 'connect' => 1, 'constraint' => 1, 'contains' => 1, 'continue' => 1, 'convert' => 1, 'cos' => 2, 'count' => 2, 'create' => 1, 'cross' => 1, 'curdate' => 2, 'current' => 1, 'cursor' => 1, 'curtime' => 2, 'cvar' => 1, 'database' => 1, 'datapages' => 1, 'date' => 2, 'dayname' => 2, 'dayofmonth' => 2, 'dayofweek' => 2, 'dayofyear' => 2, 'db_name' => 1, 'dba' => 1, 'dec' => 3, 'decimal' => 3, 'declaration' => 1, + 'declare' => 1, 'decode' => 2, 'default' => 1, 'definition' => 1, 'degrees' => 1, 'delete' => 1, 'desc' => 1, 'describe' => 1, 'descriptor' => 1, 'dhtype' => 1, 'difference' => 1, 'distinct' => 1, 'double' => 3, 'drop' => 1, 'each' => 1, 'else' => 1, 'end' => 1, 'escape' => 1, 'exclusive' => 1, 'exec' => 1, 'execute' => 1, 'exists' => 1, 'exit' => 1, 'exp' => 2, 'explicit' => 1, 'extent' => 1, + 'fetch' => 1, 'field file' => 1, 'float' => 3, 'floor' => 2, 'for' => 1, 'foreign' => 1, 'found' => 1, 'from' => 1, 'full' => 1, 'go' => 1, 'goto' => 1, 'grant' => 1, 'greatest' => 2, 'group' => 1, 'hash' => 1, 'having' => 1, 'hour' => 1, 'identified' => 1, 'ifnull' => 2, 'immediate' => 1, 'in' => 1, 'index' => 1, 'indexpages' => 1, 'indicator' => 1, 'initcap' => 1, 'inner' => 1, + 'inout' => 1, 'input' => 1, 'insert' => 1, 'instr' => 1, 'int' => 3, 'integer' => 3, 'interface' => 1, 'intersect' => 1, 'into' => 1, 'is' => 1, 'isnull' => 2, 'java_object' => 3, 'join' => 1, 'key' => 1, 'last_day' => 2, 'lcase' => 2, 'least' => 2, 'left' => 2, 'length' => 2, 'like' => 1, 'link' => 1, 'list' => 1, 'locate' => 1, 'lock' => 1, 'log' => 2, 'log10' => 2, + 'long' => 1, 'longblob' => 3, 'longtext' => 3, 'longvarbinary' => 3, 'longvarchar' => 3, 'lower' => 1, 'lpad' => 1, 'ltrim' => 2, 'lvarbinary' => 1, 'lvarchar' => 1, 'main' => 1, 'max' => 2, 'mediumint' => 3, 'metadata_only' => 1, 'min' => 2, 'minus' => 2, 'minute' => 2, 'mod' => 2, 'mode' => 1, 'modify' => 1, 'money' => 1, 'month' => 2, 'monthname' => 2, 'months_between' => 2, 'name' => 1, 'national' => 1, + 'natural' => 1, 'nchar' => 1, 'newrow' => 1, 'next_day' => 1, 'nocompress' => 1, 'not' => 1, 'now' => 1, 'nowait' => 1, 'null' => 1, 'nullif' => 1, 'nullvalue' => 1, 'number' => 1, 'numeric' => 1, 'nvl' => 1, 'object_id' => 1, 'odbc_convert' => 1, 'odbcinfo' => 1, 'of' => 1, 'oldrow' => 1, 'on' => 1, 'open' => 1, 'option' => 1, 'or' => 1, 'order' => 1, 'out' => 1, 'outer' => 1, + 'output' => 1, 'pctfree' => 1, 'pi' => 1, 'power' => 1, 'precision' => 1, 'prefix' => 1, 'prepare' => 1, 'primary' => 1, 'privileges' => 1, 'procedure' => 1, 'public' => 1, 'quarter' => 2, 'radians' => 2, 'rand' => 2, 'range' => 2, 'raw' => 1, 'real' => 3, 'record' => 1, 'references' => 1, 'referencing' => 1, 'rename' => 1, 'repeat' => 2, 'replace' => 1, 'resource' => 1, 'restrict' => 1, 'result' => 1, + 'return' => 2, 'revoke' => 2, 'right' => 2, 'rollback' => 1, 'row' => 2, 'rowid' => 2, 'rowidtochar' => 2, 'rownum' => 2, 'rpad' => 2, 'rtrim' => 2, 'searched_case' => 1, 'second' => 1, 'section' => 1, 'select' => 1, 'service' => 1, 'set' => 1, 'share' => 1, 'short' => 1, 'sign' => 1, 'simple_case' => 1, 'sin' => 2, 'size' => 2, 'smallint' => 3, 'some' => 1, 'soundex' => 1, 'space' => 1, + 'sql' => 1, 'sql_bigint' => 3, 'sql_binary' => 3, 'sql_bit' => 3, 'sql_char' => 3, 'sql_date' => 3, 'sql_decimal' => 3, 'sql_double' => 3, 'sql_float' => 1, 'sql_integer' => 3, 'sql_longvarbinary' => 3, 'sql_longvarchar' => 3, 'sql_numeric' => 3, 'sql_real' => 3, 'sql_smallint' => 3, 'sql_time' => 3, 'sql_timestamp' => 1, 'sql_tinyint' => 3, 'sql_tsi_day' => 3, 'sql_tsi_frac_second' => 3, 'sql_tsi_hour' => 3, 'sql_tsi_minute' => 3, 'sql_tsi_month' => 3, 'sql_tsi_quarter' => 3, 'sql_tsi_second' => 3, 'sql_tsi_week' => 3, + 'sql_tsi_year' => 3, 'sql_varbinary' => 3, 'sql_varchar' => 3, 'sqlerror' => 1, 'sqlwarning' => 1, 'sqrt' => 1, 'start' => 1, 'statement' => 1, 'statistics' => 1, 'stop' => 1, 'storage_attributes' => 1, 'storage_manager' => 1, 'store_in_progress' => 1, 'string' => 3, 'substr' => 2, 'substring' => 2, 'suffix' => 2, 'sum' => 2, 'suser_name' => 2, 'synonym' => 2, 'sysdate' => 2, 'systime' => 2, 'systimestamp' => 2, 'table' => 1, 'tan' => 2, 'text' => 3, + 'then' => 1, 'time' => 2, 'timeout' => 2, 'timestamp' => 3, 'timestampadd' => 2, 'timestampdiff' => 2, 'tinyint' => 3, 'to' => 2, 'to_char' => 2, 'to_date' => 2, 'to_number' => 2, 'to_time' => 2, 'to_timestamp' => 2, 'top' => 1, 'tpe' => 1, 'tran' => 1, 'transaction' => 1, 'translate' => 1, 'trigger' => 1, 'type' => 1, 'ucase' => 1, 'uid' => 1, 'union' => 1, 'unique' => 1, 'unsigned' => 1, 'update' => 1, + 'upper' => 1, 'user' => 1, 'user_id' => 1, 'user_name' => 1, 'using' => 1, 'uuid' => 1, 'values' => 1, 'varbinary' => 1, 'varchar' => 3, 'variables' => 1, 'varying' => 1, 'version' => 1, 'view' => 1, 'week' => 2, 'when' => 1, 'whenever' => 1, 'where' => 1, 'with' => 1, 'work' => 1, 'year' => 1 + ), 2 => false + ); + + } + + /** + * Finds a delimiter for state OUT. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter0($text, $textLength, $textPos) + { + static $delimiters = array( + 3 => '/*', 4 => '//', 5 => '#', 6 => '--', 7 => '"', 8 => '\'', 9 => '`', 10 => "\n", 11 => "\t" + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if (preg_match('~^[a-z]+~i', $part, $matches)) { + return array(0, $matches[0], $buffer); + } + if (preg_match('~^\\d+~', $part, $matches)) { + return array(1, $matches[0], $buffer); + } + if (preg_match('~^\.\\d+~', $part, $matches)) { + return array(2, $matches[0], $buffer); + } + if (0 === strpos($part, $delimiters[3])) { + return array(3, $delimiters[3], $buffer); + } + if (0 === strpos($part, $delimiters[4])) { + return array(4, $delimiters[4], $buffer); + } + if ($delimiters[5] === $letter) { + return array(5, $delimiters[5], $buffer); + } + if (0 === strpos($part, $delimiters[6])) { + return array(6, $delimiters[6], $buffer); + } + if ($delimiters[7] === $letter) { + return array(7, $delimiters[7], $buffer); + } + if ($delimiters[8] === $letter) { + return array(8, $delimiters[8], $buffer); + } + if ($delimiters[9] === $letter) { + return array(9, $delimiters[9], $buffer); + } + if ($delimiters[10] === $letter) { + return array(10, $delimiters[10], $buffer); + } + if ($delimiters[11] === $letter) { + return array(11, $delimiters[11], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state FUNCTION. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter1($text, $textLength, $textPos) + { + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + + if (preg_match('~^\\W+~', $part, $matches)) { + return array(0, $matches[0], $buffer); + } + $buffer .= $text[$textPos]; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state COMMENT_BLOCK. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter2($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => "\n", 1 => "\t", 2 => '*/' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + if (0 === strpos($part, $delimiters[2])) { + return array(2, $delimiters[2], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state COMMENT_LINE. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter3($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => "\n", 1 => "\t" + ); + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state QUOTE_DOUBLE. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter4($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '"', 1 => '\\"', 2 => "\n", 3 => "\t" + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if (0 === strpos($part, $delimiters[1])) { + return array(1, $delimiters[1], $buffer); + } + if ($delimiters[2] === $letter) { + return array(2, $delimiters[2], $buffer); + } + if ($delimiters[3] === $letter) { + return array(3, $delimiters[3], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state QUOTE_SINGLE. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter5($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '\'', 1 => '\\\'', 2 => "\n", 3 => "\t" + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if (0 === strpos($part, $delimiters[1])) { + return array(1, $delimiters[1], $buffer); + } + if ($delimiters[2] === $letter) { + return array(2, $delimiters[2], $buffer); + } + if ($delimiters[3] === $letter) { + return array(3, $delimiters[3], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state QUOTE_BACK_APOSTROPHE. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter6($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '`', 1 => '\\`', 2 => "\n", 3 => "\t" + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if (0 === strpos($part, $delimiters[1])) { + return array(1, $delimiters[1], $buffer); + } + if ($delimiters[2] === $letter) { + return array(2, $delimiters[2], $buffer); + } + if ($delimiters[3] === $letter) { + return array(3, $delimiters[3], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state NUMBER. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter7($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => 'x' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if (preg_match('~^\.\\d+~', $part, $matches)) { + return array(1, $matches[0], $buffer); + } + return array(2, $letter, $buffer); + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state HEXA. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter8($text, $textLength, $textPos) + { + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + + if (preg_match('~^[^a-f\\d]+~i', $part, $matches)) { + return array(0, $matches[0], $buffer); + } + $buffer .= $text[$textPos]; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state OPTION. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter9($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => 'BLOB', 1 => 'TEXT', 2 => 'INTEGER', 3 => 'CHAR', 4 => 'DATE' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + + if (0 === strpos($part, $delimiters[0])) { + return array(0, $delimiters[0], $buffer); + } + if (0 === strpos($part, $delimiters[1])) { + return array(1, $delimiters[1], $buffer); + } + if (0 === strpos($part, $delimiters[2])) { + return array(2, $delimiters[2], $buffer); + } + if (0 === strpos($part, $delimiters[3])) { + return array(3, $delimiters[3], $buffer); + } + if (0 === strpos($part, $delimiters[4])) { + return array(4, $delimiters[4], $buffer); + } + $buffer .= $text[$textPos]; + $textPos++; + } + return array(-1, -1, $buffer); + } + +} \ No newline at end of file diff --git a/apigen/libs/FSHL/FSHL/Lexer/Cache/Texy.php b/apigen/libs/FSHL/FSHL/Lexer/Cache/Texy.php new file mode 100644 index 00000000000..69feb42bc4d --- /dev/null +++ b/apigen/libs/FSHL/FSHL/Lexer/Cache/Texy.php @@ -0,0 +1,972 @@ +language = 'Texy'; + $this->trans = array( + 0 => array( + 0 => array( + 0 => 8, 1 => 1 + ), 1 => array( + 0 => 9, 1 => 1 + ), 2 => array( + 0 => 1, 1 => 1 + ) + ), 1 => array( + 0 => array( + 0 => 3, 1 => 1 + ), 1 => array( + 0 => 2, 1 => -1 + ) + ), 2 => array( + 0 => array( + 0 => 4, 1 => 1 + ), 1 => array( + 0 => 4, 1 => 1 + ), 2 => array( + 0 => 4, 1 => 1 + ), 3 => array( + 0 => 4, 1 => 1 + ), 4 => array( + 0 => 0, 1 => -1 + ) + ), 3 => array( + 0 => array( + 0 => 3, 1 => 1 + ), 1 => array( + 0 => 4, 1 => 1 + ), 2 => array( + 0 => 4, 1 => 1 + ), 3 => array( + 0 => 7, 1 => 1 + ), 4 => array( + 0 => 7, 1 => 1 + ), 5 => array( + 0 => 7, 1 => 1 + ), 6 => array( + 0 => 7, 1 => 1 + ), 7 => array( + 0 => 0, 1 => -1 + ) + ), 4 => array( + 0 => array( + 0 => 4, 1 => 1 + ), 1 => array( + 0 => 4, 1 => 1 + ), 2 => array( + 0 => 4, 1 => 1 + ), 3 => array( + 0 => 4, 1 => 1 + ), 4 => array( + 0 => 3, 1 => 1 + ), 5 => array( + 0 => 5, 1 => -1 + ) + ), 5 => array( + 0 => array( + 0 => 6, 1 => 1 + ), 1 => array( + 0 => 6, 1 => 1 + ), 2 => array( + 0 => 6, 1 => 1 + ), 3 => array( + 0 => 6, 1 => 1 + ), 4 => array( + 0 => 3, 1 => 1 + ) + ), 6 => array( + 0 => array( + 0 => 3, 1 => 1 + ) + ), 7 => array( + 0 => array( + 0 => 0, 1 => -1 + ) + ), 8 => array( + 0 => array( + 0 => 15, 1 => 1 + ), 1 => array( + 0 => 19, 1 => 1 + ), 2 => array( + 0 => 10, 1 => 1 + ), 3 => array( + 0 => 11, 1 => 1 + ), 4 => array( + 0 => 0, 1 => -1 + ) + ), 9 => array( + 0 => array( + 0 => 0, 1 => -1 + ) + ), 10 => array( + 0 => array( + 0 => 0, 1 => -1 + ) + ), 11 => array( + 0 => array( + 0 => 12, 1 => -1 + ) + ), 12 => array( + 0 => array( + 0 => 13, 1 => 1 + ) + ), 13 => array( + 0 => array( + 0 => 14, 1 => 1 + ), 1 => array( + 0 => 12, 1 => -1 + ) + ), 14 => array( + 0 => array( + 0 => 0, 1 => -1 + ) + ), 15 => array( + 0 => array( + 0 => 16, 1 => -1 + ) + ), 16 => array( + 0 => array( + 0 => 17, 1 => 1 + ) + ), 17 => array( + 0 => array( + 0 => 18, 1 => 1 + ), 1 => array( + 0 => 16, 1 => -1 + ) + ), 18 => array( + 0 => array( + 0 => 0, 1 => -1 + ) + ), 19 => array( + 0 => array( + 0 => 20, 1 => -1 + ) + ), 20 => array( + 0 => array( + 0 => 21, 1 => 1 + ) + ), 21 => array( + 0 => array( + 0 => 22, 1 => 1 + ), 1 => array( + 0 => 20, 1 => -1 + ) + ), 22 => array( + 0 => array( + 0 => 0, 1 => -1 + ) + ) + ); + $this->initialState = 2; + $this->returnState = 23; + $this->quitState = 24; + $this->flags = array( + 0 => 0, 1 => 0, 2 => 0, 3 => 'texy-err', 4 => 0, 5 => 0, 6 => 0, 7 => 0, 8 => 0, 9 => 0, 10 => 0, 11 => 0, 12 => 0, 13 => 0, 14 => 0, 15 => 0, 16 => 0, 17 => 0, 18 => 0, 19 => 0, 20 => 0, 21 => 0, 22 => 0 + ); + $this->data = array( + 0 => NULL, 1 => NULL, 2 => NULL, 3 => NULL, 4 => NULL, 5 => NULL, 6 => NULL, 7 => NULL, 8 => NULL, 9 => NULL, 10 => NULL, 11 => NULL, 12 => NULL, 13 => NULL, 14 => NULL, 15 => NULL, 16 => NULL, 17 => NULL, 18 => NULL, 19 => NULL, 20 => NULL, 21 => NULL, 22 => NULL + ); + $this->classes = array( + 0 => NULL, 1 => NULL, 2 => NULL, 3 => NULL, 4 => 'texy-hlead', 5 => 'texy-hbody', 6 => 'texy-hlead', 7 => 'texy-hr', 8 => 'texy-hr', 9 => 'texy-hr', 10 => 'texy-hr', 11 => 'texy-hr', 12 => 'texy-text', 13 => 'texy-text', 14 => 'texy-hr', 15 => 'texy-hr', 16 => 'texy-html', 17 => 'texy-html', 18 => 'texy-hr', 19 => 'texy-hr', 20 => 'texy-code', 21 => 'texy-code', 22 => 'texy-hr' + ); + $this->keywords = array( + + ); + + } + + /** + * Finds a delimiter for state LINE_BODY. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter0($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '/---', 1 => '\\---', 2 => "\n" + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if (0 === strpos($part, $delimiters[0])) { + return array(0, $delimiters[0], $buffer); + } + if (0 === strpos($part, $delimiters[1])) { + return array(1, $delimiters[1], $buffer); + } + if ($delimiters[2] === $letter) { + return array(2, $delimiters[2], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state LINE. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter1($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => "\n" + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if (preg_match('~^\\S+~', $part, $matches)) { + return array(1, $matches[0], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state LINE_SINGLE. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter2($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '##', 1 => '**', 2 => '==', 3 => '--' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if (0 === strpos($part, $delimiters[0])) { + return array(0, $delimiters[0], $buffer); + } + if (0 === strpos($part, $delimiters[1])) { + return array(1, $delimiters[1], $buffer); + } + if (0 === strpos($part, $delimiters[2])) { + return array(2, $delimiters[2], $buffer); + } + if (0 === strpos($part, $delimiters[3])) { + return array(3, $delimiters[3], $buffer); + } + return array(4, $letter, $buffer); + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state LINE_DOUBLE. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter3($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => "\n", 1 => '##', 2 => '==', 3 => '--', 4 => '- -', 5 => '**', 6 => '* *' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if (0 === strpos($part, $delimiters[1])) { + return array(1, $delimiters[1], $buffer); + } + if (0 === strpos($part, $delimiters[2])) { + return array(2, $delimiters[2], $buffer); + } + if (0 === strpos($part, $delimiters[3])) { + return array(3, $delimiters[3], $buffer); + } + if (0 === strpos($part, $delimiters[4])) { + return array(4, $delimiters[4], $buffer); + } + if (0 === strpos($part, $delimiters[5])) { + return array(5, $delimiters[5], $buffer); + } + if (0 === strpos($part, $delimiters[6])) { + return array(6, $delimiters[6], $buffer); + } + return array(7, $letter, $buffer); + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state HEADER_IN. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter4($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '=', 1 => '#', 2 => '-', 3 => '*', 4 => "\n" + ); + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + if ($delimiters[2] === $letter) { + return array(2, $delimiters[2], $buffer); + } + if ($delimiters[3] === $letter) { + return array(3, $delimiters[3], $buffer); + } + if ($delimiters[4] === $letter) { + return array(4, $delimiters[4], $buffer); + } + return array(5, $letter, $buffer); + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state HEADER_BODY. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter5($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '=', 1 => '#', 2 => '-', 3 => '*', 4 => "\n" + ); + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + if ($delimiters[1] === $letter) { + return array(1, $delimiters[1], $buffer); + } + if ($delimiters[2] === $letter) { + return array(2, $delimiters[2], $buffer); + } + if ($delimiters[3] === $letter) { + return array(3, $delimiters[3], $buffer); + } + if ($delimiters[4] === $letter) { + return array(4, $delimiters[4], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state HEADER_OUT. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter6($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => "\n" + ); + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state HORIZONTAL_LINE. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter7($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => "\n" + ); + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state BLOCK_IN. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter8($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => 'html', 1 => 'code', 2 => 'div', 3 => 'text' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if (0 === strpos($part, $delimiters[0])) { + return array(0, $delimiters[0], $buffer); + } + if (0 === strpos($part, $delimiters[1])) { + return array(1, $delimiters[1], $buffer); + } + if (0 === strpos($part, $delimiters[2])) { + return array(2, $delimiters[2], $buffer); + } + if (0 === strpos($part, $delimiters[3])) { + return array(3, $delimiters[3], $buffer); + } + return array(4, $letter, $buffer); + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state BLOCK_OUT. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter9($text, $textLength, $textPos) + { + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + return array(0, $letter, $buffer); + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state BLOCK_DUMMY. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter10($text, $textLength, $textPos) + { + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + return array(0, $letter, $buffer); + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state BLOCK_TEXT. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter11($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => "\n" + ); + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state BLOCK_TEXT_BODY. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter12($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => "\n" + ); + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state BLOCK_TEXT_BODY_LINE. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter13($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '\\---' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if (0 === strpos($part, $delimiters[0])) { + return array(0, $delimiters[0], $buffer); + } + return array(1, $letter, $buffer); + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state BLOCK_TEXT_BODY_OUT. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter14($text, $textLength, $textPos) + { + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + return array(0, $letter, $buffer); + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state BLOCK_HTML. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter15($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => "\n" + ); + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state BLOCK_HTML_BODY. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter16($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => "\n" + ); + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state BLOCK_HTML_BODY_LINE. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter17($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '\\---' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if (0 === strpos($part, $delimiters[0])) { + return array(0, $delimiters[0], $buffer); + } + return array(1, $letter, $buffer); + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state BLOCK_HTML_BODY_OUT. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter18($text, $textLength, $textPos) + { + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + return array(0, $letter, $buffer); + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state BLOCK_CODE. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter19($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => "\n" + ); + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state BLOCK_CODE_BODY. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter20($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => "\n" + ); + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + if ($delimiters[0] === $letter) { + return array(0, $delimiters[0], $buffer); + } + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state BLOCK_CODE_BODY_LINE. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter21($text, $textLength, $textPos) + { + static $delimiters = array( + 0 => '\\---' + ); + + $buffer = false; + while ($textPos < $textLength) { + $part = substr($text, $textPos, 10); + $letter = $text[$textPos]; + + if (0 === strpos($part, $delimiters[0])) { + return array(0, $delimiters[0], $buffer); + } + return array(1, $letter, $buffer); + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + + /** + * Finds a delimiter for state BLOCK_CODE_BODY_OUT. + * + * @param string $text + * @param string $textLength + * @param string $textPos + * @return array + */ + public function findDelimiter22($text, $textLength, $textPos) + { + + $buffer = false; + while ($textPos < $textLength) { + + $letter = $text[$textPos]; + + return array(0, $letter, $buffer); + $buffer .= $letter; + $textPos++; + } + return array(-1, -1, $buffer); + } + +} \ No newline at end of file diff --git a/apigen/libs/FSHL/FSHL/Lexer/Cpp.php b/apigen/libs/FSHL/FSHL/Lexer/Cpp.php new file mode 100644 index 00000000000..06076feda5f --- /dev/null +++ b/apigen/libs/FSHL/FSHL/Lexer/Cpp.php @@ -0,0 +1,308 @@ + array( + array( + 'LINE' => array(Generator::STATE_SELF, Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT), + 'ALPHA' => array('KEYWORD', Generator::BACK), + '//' => array('COMMENT_LINE', Generator::NEXT), + '#' => array('PREPROC', Generator::NEXT), + 'NUM' => array('NUMBER', Generator::NEXT), + 'DOTNUM' => array('NUMBER', Generator::NEXT), + '"' => array('QUOTE_DOUBLE', Generator::NEXT), + '\'' => array('QUOTE_SINGLE', Generator::NEXT), + '/*' => array('COMMENT_BLOCK', Generator::NEXT) + ), + Generator::STATE_FLAG_NONE, + null, + null + ), + 'KEYWORD' => array( + array( + '!ALNUM_' => array(Generator::STATE_RETURN, Generator::BACK) + ), + Generator::STATE_FLAG_KEYWORD | Generator::STATE_FLAG_RECURSION, + null, + null + ), + 'NUMBER' => array( + array( + 'x' => array('HEXA', Generator::NEXT), + 'f' => array(Generator::STATE_SELF, Generator::NEXT), + 'DOTNUM' => array(Generator::STATE_SELF, Generator::NEXT), + 'ALL' => array(Generator::STATE_RETURN, Generator::BACK) + ), + Generator::STATE_FLAG_RECURSION, + 'cpp-num', + null + ), + 'HEXA' => array( + array( + 'L' => array(Generator::STATE_SELF, Generator::NEXT), + '!HEXNUM' => array(Generator::STATE_RETURN, Generator::BACK) + ), + Generator::STATE_FLAG_NONE, + 'cpp-num', + null + ), + 'PREPROC' => array( + array( + "\\\n" => array(Generator::STATE_SELF, Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT), + "\\\xd\xa" => array(Generator::STATE_SELF, Generator::NEXT), + 'LINE' => array(Generator::STATE_RETURN, Generator::BACK) + ), + Generator::STATE_FLAG_RECURSION, + 'cpp-preproc', + null + ), + 'QUOTE_DOUBLE' => array( + array( + '"' => array(Generator::STATE_RETURN, Generator::CURRENT), + '\\\\' => array(Generator::STATE_SELF, Generator::NEXT), + '\\"' => array(Generator::STATE_SELF, Generator::NEXT), + 'LINE' => array(Generator::STATE_SELF, Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT) + ), + Generator::STATE_FLAG_RECURSION, + 'cpp-quote', + null + ), + 'QUOTE_SINGLE' => array( + array( + '\'' => array(Generator::STATE_RETURN, Generator::CURRENT), + '\\\'' => array(Generator::STATE_SELF, Generator::NEXT), + 'LINE' => array(Generator::STATE_SELF, Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT) + ), + Generator::STATE_FLAG_RECURSION, + 'cpp-quote', + null + ), + 'COMMENT_BLOCK' => array( + array( + 'LINE' => array(Generator::STATE_SELF, Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT), + '*/' => array(Generator::STATE_RETURN, Generator::CURRENT) + ), + Generator::STATE_FLAG_RECURSION, + 'cpp-comment', + null + ), + 'COMMENT_LINE' => array( + array( + 'LINE' => array(Generator::STATE_RETURN, Generator::BACK), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT) + ), + Generator::STATE_FLAG_RECURSION, + 'cpp-comment', + null + ) + ); + } + + /** + * Returns special delimiters. + * + * @return array + */ + public function getDelimiters() + { + return array(); + } + + /** + * Returns keywords. + * + * @return array + */ + public function getKeywords() + { + return array( + 'cpp-keywords', + array( + 'bool' => 1, + 'break' => 1, + 'case' => 1, + 'catch' => 1, + 'char' => 1, + 'class' => 1, + 'const' => 1, + 'const_cast' => 1, + 'continue' => 1, + 'default' => 1, + 'delete' => 1, + 'deprecated' => 1, + 'dllexport' => 1, + 'dllimport' => 1, + 'do' => 1, + 'double' => 1, + 'dynamic_cast' => 1, + 'else' => 1, + 'enum' => 1, + 'explicit' => 1, + 'extern' => 1, + 'false' => 1, + 'float' => 1, + 'for' => 1, + 'friend' => 1, + 'goto' => 1, + 'if' => 1, + 'inline' => 1, + 'int' => 1, + 'long' => 1, + 'mutable' => 1, + 'naked' => 1, + 'namespace' => 1, + 'new' => 1, + 'noinline' => 1, + 'noreturn' => 1, + 'nothrow' => 1, + 'novtable' => 1, + 'operator' => 1, + 'private' => 1, + 'property' => 1, + 'protected' => 1, + 'public' => 1, + 'register' => 1, + 'reinterpret_cast' => 1, + 'return' => 1, + 'selectany' => 1, + 'short' => 1, + 'signed' => 1, + 'sizeof' => 1, + 'static' => 1, + 'static_cast' => 1, + 'struct' => 1, + 'switch' => 1, + 'template' => 1, + 'this' => 1, + 'thread' => 1, + 'throw' => 1, + 'true' => 1, + 'try' => 1, + 'typedef' => 1, + 'typeid' => 1, + 'typename' => 1, + 'union' => 1, + 'unsigned' => 1, + 'using' => 1, + 'uuid' => 1, + 'virtual' => 1, + 'void' => 1, + 'volatile' => 1, + '__wchar_t' => 1, + 'wchar_t' => 1, + 'while' => 1, + '__abstract' => 1, + '__alignof' => 1, + '__asm' => 1, + '__assume' => 1, + '__based' => 1, + '__box' => 1, + '__cdecl' => 1, + '__declspec' => 1, + '__delegate' => 1, + '__event' => 1, + '__except' => 1, + '__fastcall' => 1, + '__finally' => 1, + '__forceinline' => 1, + '__gc' => 1, + '__hook' => 1, + '__identifier' => 1, + '__if_exists' => 1, + '__if_not_exists' => 1, + '__inline' => 1, + '__int8' => 1, + '__int16' => 1, + '__int32' => 1, + '__int64' => 1, + '__interface' => 1, + '__leave' => 1, + '__m64' => 1, + '__m128' => 1, + '__m128d' => 1, + '__m128i' => 1, + '__multiple_inheritance' => 1, + '__nogc' => 1, + '__noop' => 1, + '__pin' => 1, + '__property' => 1, + '__raise' => 1, + '__sealed' => 1, + '__single_inheritance' => 1, + '__stdcall' => 1, + '__super' => 1, + '__try_cast' => 1, + '__try' => 1, + '__except' => 1, + '__finally' => 1, + '__unhook' => 1, + '__uuidof' => 1, + '__value' => 1, + '__virtual_inheritance' => 1, + '__w64' => 1 + ), + Generator::CASE_SENSITIVE + ); + } +} diff --git a/apigen/libs/FSHL/FSHL/Lexer/Css.php b/apigen/libs/FSHL/FSHL/Lexer/Css.php new file mode 100644 index 00000000000..98e8e0c31f2 --- /dev/null +++ b/apigen/libs/FSHL/FSHL/Lexer/Css.php @@ -0,0 +1,255 @@ + array( + array( + 'FUNC' => array('FUNC', Generator::NEXT), + 'ALNUM' => array('TAG', Generator::NEXT), + '*' => array('TAG', Generator::NEXT), + '#' => array('ID', Generator::NEXT), + '.' => array('CLASS', Generator::NEXT), + '{' => array('DEF', Generator::NEXT), + '/*' => array('COMMENT', Generator::NEXT), + '@media' => array('MEDIA', Generator::NEXT), + '@' => array('AT_RULE', Generator::NEXT), + 'LINE' => array(Generator::STATE_SELF, Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT), + ' array(Generator::STATE_QUIT, Generator::NEXT), + 'PHP' => array('PHP', Generator::NEXT) + ), + Generator::STATE_FLAG_NONE, + null, + null + ), + 'MEDIA' => array( + array( + 'PROPERTY' => array('PROPERTY', Generator::NEXT), + ':' => array('VALUE', Generator::CURRENT), + ';' => array(Generator::STATE_SELF, Generator::CURRENT), + 'LINE' => array(Generator::STATE_SELF, Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT), + ')' => array(Generator::STATE_RETURN, Generator::CURRENT), + '/*' => array('COMMENT', Generator::NEXT) + ), + Generator::STATE_FLAG_RECURSION, + 'css-at-rule', + null + ), + 'AT_RULE' => array( + array( + 'SPACE' => array(Generator::STATE_RETURN, Generator::BACK), + '/*' => array('COMMENT', Generator::NEXT) + ), + Generator::STATE_FLAG_RECURSION, + 'css-at-rule', + null + ), + 'TAG' => array( + array( + '{' => array(Generator::STATE_RETURN, Generator::NEXT), + ',' => array(Generator::STATE_RETURN, Generator::BACK), + 'SPACE' => array(Generator::STATE_RETURN, Generator::BACK), + ':' => array('PSEUDO', Generator::NEXT), + '/*' => array('COMMENT', Generator::NEXT) + ), + Generator::STATE_FLAG_RECURSION, + 'css-tag', + null + ), + 'ID' => array( + array( + '{' => array(Generator::STATE_RETURN, Generator::BACK), + ',' => array(Generator::STATE_RETURN, Generator::BACK), + 'SPACE' => array(Generator::STATE_RETURN, Generator::BACK), + ':' => array('PSEUDO', Generator::NEXT), + '/*' => array('COMMENT', Generator::NEXT) + ), + Generator::STATE_FLAG_RECURSION, + 'css-id', + null + ), + 'CLASS' => array( + array( + '{' => array(Generator::STATE_RETURN, Generator::BACK), + 'SPACE' => array(Generator::STATE_RETURN, Generator::BACK), + ',' => array(Generator::STATE_RETURN, Generator::BACK), + ':' => array('PSEUDO', Generator::NEXT), + '/*' => array('COMMENT', Generator::NEXT) + ), + Generator::STATE_FLAG_RECURSION, + 'css-class', + null + ), + 'PSEUDO' => array( + array( + 'SPACE' => array(Generator::STATE_RETURN, Generator::BACK), + ',' => array(Generator::STATE_RETURN, Generator::BACK) + ), + Generator::STATE_FLAG_RECURSION, + 'css-pseudo', + null + ), + 'DEF' => array( + array( + 'PROPERTY' => array('PROPERTY', Generator::NEXT), + ':' => array('VALUE', Generator::CURRENT), + ';' => array(Generator::STATE_SELF, Generator::CURRENT), + 'LINE' => array(Generator::STATE_SELF, Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT), + '}' => array(Generator::STATE_RETURN, Generator::CURRENT), + '/*' => array('COMMENT', Generator::NEXT) + ), + Generator::STATE_FLAG_RECURSION, + null, + null + ), + 'PROPERTY' => array( + array( + ':' => array(Generator::STATE_RETURN, Generator::BACK), + '}' => array(Generator::STATE_RETURN, Generator::BACK), + 'LINE' => array(Generator::STATE_SELF, Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT), + '/*' => array('COMMENT', Generator::NEXT) + ), + Generator::STATE_FLAG_RECURSION, + 'css-property', + null + ), + 'VALUE' => array( + array( + '#' => array('COLOR', Generator::NEXT), + ';' => array(Generator::STATE_RETURN, Generator::BACK), + 'FUNC' => array('FUNC', Generator::NEXT), + ')' => array(Generator::STATE_RETURN, Generator::BACK), + '}' => array(Generator::STATE_RETURN, Generator::BACK), + 'LINE' => array(Generator::STATE_SELF, Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT), + '/*' => array('COMMENT', Generator::NEXT) + ), + Generator::STATE_FLAG_RECURSION, + 'css-value', + null + ), + 'FUNC' => array( + array( + ')' => array(Generator::STATE_RETURN, Generator::CURRENT), + 'ALL' => array('VALUE', Generator::NEXT) + ), + Generator::STATE_FLAG_RECURSION, + 'css-func', + null + ), + 'COLOR' => array( + array( + '!HEXNUM' => array(Generator::STATE_RETURN, Generator::BACK) + ), + Generator::STATE_FLAG_RECURSION, + 'css-color', + null + ), + 'COMMENT' => array( + array( + 'LINE' => array(Generator::STATE_SELF, Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT), + '*/' => array(Generator::STATE_RETURN, Generator::CURRENT) + ), + Generator::STATE_FLAG_RECURSION, + 'css-comment', + null + ), + 'PHP' => array( + null, + Generator::STATE_FLAG_NEWLEXER, + 'xlang', + 'Php' + ), + Generator::STATE_QUIT => array( + null, + Generator::STATE_FLAG_NEWLEXER, + 'html-tag', + null + ) + ); + } + + /** + * Returns special delimiters. + * + * @return array + */ + public function getDelimiters() + { + return array( + 'FUNC' => 'preg_match(\'~[a-z]+\\s*\\(~iA\', $text, $matches, 0, $textPos)', + 'PROPERTY' => 'preg_match(\'~[-a-z]+~iA\', $text, $matches, 0, $textPos)', + 'PHP' => 'preg_match(\'~<\\\\?(php|=|(?!xml))~A\', $text, $matches, 0, $textPos)' + ); + } + + /** + * Returns keywords. + * + * @return array + */ + public function getKeywords() + { + return array(); + } +} diff --git a/apigen/libs/FSHL/FSHL/Lexer/Html.php b/apigen/libs/FSHL/FSHL/Lexer/Html.php new file mode 100644 index 00000000000..49ed4592c7b --- /dev/null +++ b/apigen/libs/FSHL/FSHL/Lexer/Html.php @@ -0,0 +1,218 @@ + array( + array( + '' => array('OUT', Generator::CURRENT), + 'PHP' => array('PHP', Generator::NEXT) + ), + Generator::STATE_FLAG_NONE, + 'html-comment', + null + ), + 'PHP' => array( + null, + Generator::STATE_FLAG_NEWLEXER, + 'xlang', + 'Php' + ) + ); + } + + /** + * Returns special delimiters. + * + * @return array + */ + public function getDelimiters() + { + return array( + 'PHP' => 'preg_match(\'~<\\\\?(php|=|(?!xml))~A\', $text, $matches, 0, $textPos)' + ); + } + + /** + * Returns keywords. + * + * @return array + */ + public function getKeywords() + { + return array(); + } +} diff --git a/apigen/libs/FSHL/FSHL/Lexer/HtmlOnly.php b/apigen/libs/FSHL/FSHL/Lexer/HtmlOnly.php new file mode 100644 index 00000000000..66935ab1b6c --- /dev/null +++ b/apigen/libs/FSHL/FSHL/Lexer/HtmlOnly.php @@ -0,0 +1,220 @@ + array( + array( + '' => array('OUT', Generator::CURRENT) + ), + Generator::STATE_FLAG_NONE, + 'html-comment', + null + ) + ); + } + + /** + * Returns special delimiters. + * + * @return array + */ + public function getDelimiters() + { + return array(); + } + + /** + * Returns keywords. + * + * @return array + */ + public function getKeywords() + { + return array(); + } +} diff --git a/apigen/libs/FSHL/FSHL/Lexer/Java.php b/apigen/libs/FSHL/FSHL/Lexer/Java.php new file mode 100644 index 00000000000..6a2950b0cbc --- /dev/null +++ b/apigen/libs/FSHL/FSHL/Lexer/Java.php @@ -0,0 +1,221 @@ + array( + array( + 'ALPHA' => array('KEYWORD', Generator::BACK), + 'NUM' => array('NUMBER', Generator::NEXT), + 'DOTNUM' => array('NUMBER', Generator::NEXT), + '"' => array('QUOTE_DOUBLE', Generator::NEXT), + '\'' => array('QUOTE_SINGLE', Generator::NEXT), + '/*' => array('COMMENT_BLOCK', Generator::NEXT), + '//' => array('COMMENT_LINE', Generator::NEXT), + 'LINE' => array(Generator::STATE_SELF, Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT) + ), + Generator::STATE_FLAG_NONE, + null, + null + ), + 'KEYWORD' => array( + array( + '!ALNUM_' => array(Generator::STATE_RETURN, Generator::BACK) + ), + Generator::STATE_FLAG_KEYWORD | Generator::STATE_FLAG_RECURSION, + null, + null + ), + 'NUMBER' => array( + array( + 'x' => array('HEXA', Generator::NEXT), + 'DOTNUM' => array('NUMBER', Generator::NEXT), + 'ALL' => array(Generator::STATE_RETURN, Generator::BACK) + ), + Generator::STATE_FLAG_RECURSION, + 'java-num', + null + ), + 'HEXA' => array( + array( + '!HEXNUM' => array(Generator::STATE_RETURN, Generator::BACK) + ), + Generator::STATE_FLAG_NONE, + 'java-num', + null + ), + 'QUOTE_DOUBLE' => array( + array( + '"' => array(Generator::STATE_RETURN, Generator::CURRENT), + '\\\\' => array(Generator::STATE_SELF, Generator::NEXT), + '\\"' => array(Generator::STATE_SELF, Generator::NEXT), + 'LINE' => array(Generator::STATE_SELF, Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT) + ), + Generator::STATE_FLAG_RECURSION, + 'java-quote', + null + ), + 'QUOTE_SINGLE' => array( + array( + '\'' => array(Generator::STATE_RETURN, Generator::CURRENT), + '\\\\' => array(Generator::STATE_SELF, Generator::NEXT), + '\\\'' => array(Generator::STATE_SELF, Generator::NEXT), + 'LINE' => array(Generator::STATE_SELF, Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT) + ), + Generator::STATE_FLAG_RECURSION, + 'java-quote', + null + ), + 'COMMENT_BLOCK' => array( + array( + 'LINE' => array(Generator::STATE_SELF, Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT), + '*/' => array(Generator::STATE_RETURN, Generator::CURRENT) + ), + Generator::STATE_FLAG_RECURSION, + 'java-comment', + null + ), + 'COMMENT_LINE' => array( + array( + 'LINE' => array(Generator::STATE_RETURN, Generator::BACK), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT) + ), + Generator::STATE_FLAG_RECURSION, + 'java-comment', + null + ) + ); + } + + /** + * Returns special delimiters. + * + * @return array + */ + public function getDelimiters() + { + return array(); + } + + /** + * Returns keywords. + * + * @return array + */ + public function getKeywords() + { + return array( + 'java-keywords', + array( + 'abstract' => 1, + 'double' => 1, + 'int' => 1, + 'strictfp' => 1, + 'boolean' => 1, + 'else' => 1, + 'interface' => 1, + 'super' => 1, + 'break' => 1, + 'extends' => 1, + 'long' => 1, + 'switch' => 1, + 'byte' => 1, + 'final' => 1, + 'native' => 1, + 'synchronized' => 1, + 'case' => 1, + 'finally' => 1, + 'new' => 1, + 'this' => 1, + 'catch' => 1, + 'float' => 1, + 'package' => 1, + 'throw' => 1, + 'char' => 1, + 'for' => 1, + 'private' => 1, + 'throws' => 1, + 'class' => 1, + 'goto' => 1, + 'protected' => 1, + 'transient' => 1, + 'const' => 1, + 'if' => 1, + 'public' => 1, + 'try' => 1, + 'continue' => 1, + 'implements' => 1, + 'return' => 1, + 'void' => 1, + 'default' => 1, + 'import' => 1, + 'short' => 1, + 'volatile' => 1, + 'do' => 1, + 'instanceof' => 1, + 'static' => 1, + 'while' => 1 + ), + Generator::CASE_SENSITIVE + ); + } +} diff --git a/apigen/libs/FSHL/FSHL/Lexer/Javascript.php b/apigen/libs/FSHL/FSHL/Lexer/Javascript.php new file mode 100644 index 00000000000..be48af9cfe4 --- /dev/null +++ b/apigen/libs/FSHL/FSHL/Lexer/Javascript.php @@ -0,0 +1,260 @@ + array( + array( + 'LINE' => array(Generator::STATE_SELF, Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT), + 'ALPHA' => array('KEYWORD', Generator::BACK), + 'NUM' => array('NUMBER', Generator::NEXT), + 'DOTNUM' => array('NUMBER', Generator::NEXT), + '.' => array('KEYWORD', Generator::CURRENT), + '"' => array('QUOTE_DOUBLE', Generator::NEXT), + '\'' => array('QUOTE_SINGLE', Generator::NEXT), + '/*' => array('COMMENT_BLOCK', Generator::NEXT), + '//' => array('COMMENT_LINE', Generator::NEXT), + 'REGEXP' => array('REGEXP', Generator::NEXT), + 'PHP' => array('PHP', Generator::NEXT), + ' array(Generator::STATE_QUIT, Generator::NEXT) + ), + Generator::STATE_FLAG_NONE, + 'js-out', + null + ), + 'KEYWORD' => array( + array( + '!ALNUM_' => array(Generator::STATE_RETURN, Generator::BACK) + ), + Generator::STATE_FLAG_KEYWORD | Generator::STATE_FLAG_RECURSION, + 'js-out', + null + ), + 'NUMBER' => array( + array( + 'x' => array('HEXA', Generator::NEXT), + 'DOTNUM' => array('NUMBER', Generator::NEXT), + 'ALL' => array(Generator::STATE_RETURN, Generator::BACK), + ), + Generator::STATE_FLAG_RECURSION, + 'js-num', + null + ), + 'HEXA' => array( + array( + '!HEXNUM' => array(Generator::STATE_RETURN, Generator::BACK) + ), + Generator::STATE_FLAG_NONE, + 'js-num', + null + ), + 'QUOTE_DOUBLE' => array( + array( + '"' => array(Generator::STATE_RETURN, Generator::CURRENT), + 'PHP' => array('PHP', Generator::NEXT) + ), + Generator::STATE_FLAG_RECURSION, + 'js-quote', + null + ), + 'QUOTE_SINGLE' => array( + array( + '\'' => array(Generator::STATE_RETURN, Generator::CURRENT), + 'PHP' => array('PHP', Generator::NEXT) + ), + Generator::STATE_FLAG_RECURSION, + 'js-quote', + null + ), + 'COMMENT_BLOCK' => array( + array( + 'LINE' => array(Generator::STATE_SELF, Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT), + '*/' => array(Generator::STATE_RETURN, Generator::CURRENT), + 'PHP' => array('PHP', Generator::NEXT) + ), + Generator::STATE_FLAG_RECURSION, + 'js-comment', + null + ), + 'COMMENT_LINE' => array( + array( + 'LINE' => array(Generator::STATE_RETURN, Generator::BACK), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT), + 'PHP' => array('PHP', Generator::NEXT) + ), + Generator::STATE_FLAG_RECURSION, + 'js-comment', + null + ), + 'REGEXP' => array( + array( + 'ALL' => array(Generator::STATE_RETURN, Generator::BACK) + ), + Generator::STATE_FLAG_NONE, + 'js-quote', + null + ), + 'PHP' => array( + null, + Generator::STATE_FLAG_NEWLEXER, + 'xlang', + 'Php' + ), + Generator::STATE_QUIT => array( + null, + Generator::STATE_FLAG_NEWLEXER, + 'html-tag', + null + ) + ); + } + + /** + * Returns special delimiters. + * + * @return array + */ + public function getDelimiters() + { + return array( + 'REGEXP' => 'preg_match(\'~/.*?[^\\\\\\\\]/[gim]*~A\', $text, $matches, 0, $textPos)', + 'PHP' => 'preg_match(\'~<\\\\?(php|=|(?!xml))~A\', $text, $matches, 0, $textPos)' + ); + } + + /** + * Returns keywords. + * + * @return array + */ + public function getKeywords() + { + return array( + 'js-keywords', + array( + 'abstract' => 1, + 'boolean' => 1, + 'break' => 1, + 'byte' => 1, + 'case' => 1, + 'catch' => 1, + 'char' => 1, + 'class' => 1, + 'const' => 1, + 'continue' => 1, + 'debugger' => 1, + 'default' => 1, + 'delete' => 1, + 'do' => 1, + 'double' => 1, + 'else' => 1, + 'enum' => 1, + 'export' => 1, + 'extends' => 1, + 'false' => 1, + 'final' => 1, + 'finally' => 1, + 'float' => 1, + 'for' => 1, + 'function' => 1, + 'goto' => 1, + 'if' => 1, + 'implements' => 1, + 'import' => 1, + 'in' => 1, + 'instanceof' => 1, + 'int' => 1, + 'interface' => 1, + 'long' => 1, + 'native' => 1, + 'new' => 1, + 'null' => 1, + 'package' => 1, + 'private' => 1, + 'protected' => 1, + 'public' => 1, + 'return' => 1, + 'short' => 1, + 'static' => 1, + 'super' => 1, + 'switch' => 1, + 'synchronized' => 1, + 'this' => 1, + 'throw' => 1, + 'throws' => 1, + 'transient' => 1, + 'true' => 1, + 'try' => 1, + 'typeof' => 1, + 'var' => 1, + 'void' => 1, + 'volatile' => 1, + 'while' => 1, + 'with' => 1, + + 'document' => 2, + 'getAttribute' => 2, + 'getElementsByTagName' => 2, + 'getElementById' => 2, + ), + Generator::CASE_SENSITIVE + ); + } +} \ No newline at end of file diff --git a/apigen/libs/FSHL/FSHL/Lexer/Minimal.php b/apigen/libs/FSHL/FSHL/Lexer/Minimal.php new file mode 100644 index 00000000000..028db9e0412 --- /dev/null +++ b/apigen/libs/FSHL/FSHL/Lexer/Minimal.php @@ -0,0 +1,92 @@ + array( + array( + 'LINE' => array(Generator::STATE_SELF, Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT) + ), + Generator::STATE_FLAG_NONE, + null, + null + ) + ); + } + + /** + * Returns special delimiters. + * + * @return array + */ + public function getDelimiters() + { + return array(); + } + + /** + * Returns keywords. + * + * @return array + */ + public function getKeywords() + { + return array(); + } +} diff --git a/apigen/libs/FSHL/FSHL/Lexer/Neon.php b/apigen/libs/FSHL/FSHL/Lexer/Neon.php new file mode 100644 index 00000000000..e6bb7804bf4 --- /dev/null +++ b/apigen/libs/FSHL/FSHL/Lexer/Neon.php @@ -0,0 +1,230 @@ + array( + array( + 'SECTION' => array('SECTION', Generator::NEXT), + 'KEY' => array('KEY', Generator::NEXT), + '#' => array('COMMENT', Generator::NEXT), + '-' => array('LIST', Generator::NEXT), + 'LINE' => array(Generator::STATE_SELF, Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT) + ), + Generator::STATE_FLAG_NONE, + null, + null + ), + 'SECTION' => array( + array( + '<' => array('SEPARATOR', Generator::NEXT), + ':' => array('SEPARATOR', Generator::NEXT), + 'SECTION' => array(Generator::STATE_SELF, Generator::NEXT), + 'KEY' => array('KEY', Generator::NEXT), + '-' => array('LIST', Generator::NEXT), + 'LINE' => array(Generator::STATE_SELF, Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT) + ), + Generator::STATE_FLAG_NONE, + 'neon-section', + null + ), + 'KEY' => array( + array( + ':' => array('SEPARATOR', Generator::NEXT), + '=' => array('SEPARATOR', Generator::NEXT), + 'ALL' => array('VALUE', Generator::NEXT) + ), + Generator::STATE_FLAG_NONE, + 'neon-key', + null + ), + 'LIST' => array( + array( + 'ALL' => array('VALUE', Generator::NEXT) + ), + Generator::STATE_FLAG_NONE, + 'neon-sep', + null + ), + 'VALUE' => array( + array( + 'LINE' => array('OUT', Generator::NEXT), + 'KEY' => array('KEY', Generator::NEXT), + '#' => array('COMMENT', Generator::NEXT), + '"' => array('QUOTE_DOUBLE', Generator::NEXT), + '\'' => array('QUOTE_SINGLE', Generator::NEXT), + '[' => array('SEPARATOR', Generator::NEXT), + ']' => array('SEPARATOR', Generator::NEXT), + '{' => array('SEPARATOR', Generator::NEXT), + '}' => array('SEPARATOR', Generator::NEXT), + '=' => array('SEPARATOR', Generator::NEXT), + ',' => array('SEPARATOR', Generator::NEXT), + ':' => array('SEPARATOR', Generator::NEXT), + 'TEXT' => array('TEXT', Generator::NEXT), + 'NUM' => array('NUMBER', Generator::NEXT), + 'DOTNUM' => array('NUMBER', Generator::NEXT), + 'VARIABLE' => array('VARIABLE', Generator::NEXT), + '@' => array('REFERENCE', Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT) + ), + Generator::STATE_FLAG_NONE, + 'neon-value', + null + ), + 'TEXT' => array( + array( + 'VARIABLE' => array('VARIABLE', Generator::NEXT), + '#' => array('COMMENT', Generator::NEXT), + 'LINE' => array('OUT', Generator::NEXT), + ), + Generator::STATE_FLAG_NONE, + 'neon-value', + null + ), + 'SEPARATOR' => array( + array( + 'ALL' => array(Generator::STATE_RETURN, Generator::BACK) + ), + Generator::STATE_FLAG_RECURSION, + 'neon-sep', + null + ), + 'COMMENT' => array( + array( + 'LINE' => array('OUT', Generator::BACK), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT) + ), + Generator::STATE_FLAG_NONE, + 'neon-comment', + null + ), + 'QUOTE_DOUBLE' => array( + array( + '"' => array(Generator::STATE_RETURN, Generator::CURRENT), + 'VARIABLE' => array('VARIABLE', Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT) + ), + Generator::STATE_FLAG_RECURSION, + 'neon-quote', + null + ), + 'QUOTE_SINGLE' => array( + array( + '\'' => array(Generator::STATE_RETURN, Generator::CURRENT), + 'VARIABLE' => array('VARIABLE', Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT) + ), + Generator::STATE_FLAG_RECURSION, + 'neon-quote', + null + ), + 'VARIABLE' => array( + array( + '%' => array(Generator::STATE_RETURN, Generator::CURRENT) + ), + Generator::STATE_FLAG_RECURSION, + 'neon-var', + null + ), + 'NUMBER' => array( + array( + 'DOTNUM' => array(Generator::STATE_SELF, Generator::NEXT), + 'ALL' => array(Generator::STATE_RETURN, Generator::BACK) + ), + Generator::STATE_FLAG_RECURSION, + 'neon-num', + null + ), + 'REFERENCE' => array( + array( + '!ALNUM_' => array(Generator::STATE_RETURN, Generator::BACK) + ), + Generator::STATE_FLAG_RECURSION, + 'neon-ref', + null + ) + ); + } + + /** + * Returns special delimiters. + * + * @return array + */ + public function getDelimiters() + { + return array( + 'SECTION' => 'preg_match(\'~[\\\\w.]+(?=(\\\\s*<\\\\s*[\\\\w.]+)?\\\\s*:\\\\s*\\n)~Ai\', $text, $matches, 0, $textPos)', + 'KEY' => 'preg_match(\'~[\\\\w.]+(?=\\\\s*(?::|=))~Ai\', $text, $matches, 0, $textPos)', + 'VARIABLE' => 'preg_match(\'~%\\\\w+(?=%)~Ai\', $text, $matches, 0, $textPos)', + 'TEXT' => 'preg_match(\'~[a-z](?![,\\\\]}#\\n])~Ai\', $text, $matches, 0, $textPos)' + ); + } + + /** + * Returns keywords. + * + * @return array + */ + public function getKeywords() + { + return array(); + } +} diff --git a/apigen/libs/FSHL/FSHL/Lexer/Php.php b/apigen/libs/FSHL/FSHL/Lexer/Php.php new file mode 100644 index 00000000000..9679dfe0a30 --- /dev/null +++ b/apigen/libs/FSHL/FSHL/Lexer/Php.php @@ -0,0 +1,3655 @@ + array( + array( + '$' => array('VAR', Generator::NEXT), + '\'' => array('QUOTE_SINGLE', Generator::NEXT), + '"' => array('QUOTE_DOUBLE', Generator::NEXT), + 'ALPHA' => array('FUNCTION', Generator::BACK), + '_' => array('FUNCTION', Generator::BACK), + 'NUM' => array('NUMBER', Generator::NEXT), + 'DOTNUM' => array('NUMBER', Generator::NEXT), + 'LINE' => array(Generator::STATE_SELF, Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT), + '//' => array('COMMENT_LINE', Generator::NEXT), + '/*' => array('COMMENT_BLOCK', Generator::NEXT), + '#' => array('COMMENT_LINE', Generator::NEXT), + '?>' => array(Generator::STATE_QUIT, Generator::NEXT), + ' array('DUMMY_PHP', Generator::BACK), + 'NOWDOC' => array('NOWDOC', Generator::NEXT), + 'HEREDOC' => array('HEREDOC', Generator::NEXT) + ), + Generator::STATE_FLAG_NONE, + null, + null + ), + 'DUMMY_PHP' => array( + array( + ' array(Generator::STATE_RETURN, Generator::CURRENT), + ' array(Generator::STATE_RETURN, Generator::CURRENT), + ' array(Generator::STATE_RETURN, Generator::CURRENT) + ), + Generator::STATE_FLAG_RECURSION, + 'xlang', + null + ), + 'FUNCTION' => array( + array( + '!ALNUM_' => array(Generator::STATE_RETURN, Generator::BACK) + ), + Generator::STATE_FLAG_KEYWORD | Generator::STATE_FLAG_RECURSION, + null, + null + ), + 'COMMENT_BLOCK' => array( + array( + 'LINE' => array(Generator::STATE_SELF, Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT), + '*/' => array(Generator::STATE_RETURN, Generator::CURRENT) + ), + Generator::STATE_FLAG_RECURSION, + 'php-comment', + null + ), + 'COMMENT_LINE' => array( + array( + 'LINE' => array(Generator::STATE_RETURN, Generator::BACK), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT), + '?>' => array(Generator::STATE_RETURN, Generator::CURRENT) + ), + Generator::STATE_FLAG_RECURSION, + 'php-comment', + null + ), + 'VAR' => array( + array( + '!ALNUM_' => array(Generator::STATE_RETURN, Generator::BACK), + '$' => array(Generator::STATE_SELF, Generator::NEXT), + '{' => array(Generator::STATE_SELF, Generator::NEXT), + '}' => array(Generator::STATE_SELF, Generator::NEXT) + ), + Generator::STATE_FLAG_RECURSION, + 'php-var', + null + ), + 'VAR_STR' => array( + array( + '}' => array(Generator::STATE_RETURN, Generator::CURRENT), + 'SPACE' => array(Generator::STATE_RETURN, Generator::BACK) + ), + Generator::STATE_FLAG_RECURSION, + 'php-var', + null + ), + 'QUOTE_DOUBLE' => array( + array( + '"' => array(Generator::STATE_RETURN, Generator::CURRENT), + '\\\\' => array(Generator::STATE_SELF, Generator::NEXT), + '\\"' => array(Generator::STATE_SELF, Generator::NEXT), + '$' => array('VAR', Generator::NEXT), + '{$' => array('VAR_STR', Generator::NEXT), + 'LINE' => array(Generator::STATE_SELF, Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT) + ), + Generator::STATE_FLAG_RECURSION, + 'php-quote', + null + ), + 'HEREDOC' => array( + array( + 'LINE' => array('HEREDOC_END', Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT), + '\\$' => array(Generator::STATE_SELF, Generator::NEXT), + '$' => array('VAR', Generator::NEXT), + '{$' => array('VAR_STR', Generator::NEXT) + ), + Generator::STATE_FLAG_NONE, + 'php-quote', + null + ), + 'HEREDOC_END' => array( + array( + 'HEREDOC_NOWDOC_END' => array('OUT', Generator::CURRENT), + 'ALL' => array('HEREDOC', Generator::BACK) + ), + Generator::STATE_FLAG_NONE, + 'php-quote', + null + ), + 'QUOTE_SINGLE' => array( + array( + '\'' => array(Generator::STATE_RETURN, Generator::CURRENT), + '\\\\' => array(Generator::STATE_SELF, Generator::NEXT), + '\\\'' => array(Generator::STATE_SELF, Generator::NEXT), + 'LINE' => array(Generator::STATE_SELF, Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT) + ), + Generator::STATE_FLAG_RECURSION, + 'php-quote', + null + ), + 'NOWDOC' => array( + array( + 'LINE' => array('NOWDOC_END', Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT) + ), + Generator::STATE_FLAG_NONE, + 'php-quote', + null + ), + 'NOWDOC_END' => array( + array( + 'HEREDOC_NOWDOC_END' => array('OUT', Generator::CURRENT), + 'ALL' => array('NOWDOC', Generator::BACK) + ), + Generator::STATE_FLAG_NONE, + 'php-quote', + null + ), + 'NUMBER' => array( + array( + 'e' => array('EXPONENT', Generator::NEXT), + 'E' => array('EXPONENT', Generator::NEXT), + 'x' => array('HEXA', Generator::NEXT), + 'b' => array(Generator::STATE_SELF, Generator::NEXT), + 'DOTNUM' => array(Generator::STATE_SELF, Generator::NEXT), + 'ALL' => array(Generator::STATE_RETURN, Generator::BACK) + ), + Generator::STATE_FLAG_RECURSION, + 'php-num', + null + ), + 'EXPONENT' => array( + array( + '+' => array(Generator::STATE_SELF, Generator::CURRENT), + '-' => array(Generator::STATE_SELF, Generator::CURRENT), + '!NUM' => array(Generator::STATE_RETURN, Generator::BACK) + ), + Generator::STATE_FLAG_NONE, + 'php-num', + null + ), + 'HEXA' => array( + array( + '!HEXNUM' => array(Generator::STATE_RETURN, Generator::BACK) + ), + Generator::STATE_FLAG_NONE, + 'php-num', + null + ), + Generator::STATE_QUIT => array( + null, + Generator::STATE_FLAG_NEWLEXER, + 'xlang', + null + ) + ); + } + + /** + * Returns special delimiters. + * + * @return array + */ + public function getDelimiters() + { + return array( + 'HEREDOC' => 'preg_match(\'~<<<(?:\\\\w+|"\\\\w+")\\\\n~A\', $text, $matches, 0, $textPos)', + 'NOWDOC' => 'preg_match(\'~<<<\\\'\\\\w+\\\'\\\\n~A\', $text, $matches, 0, $textPos)', + // Starting \n is missing intentionally + 'HEREDOC_NOWDOC_END' => 'preg_match(\'~\\\\w+;\\\\n~A\', $text, $matches, 0, $textPos)' + ); + } + + /** + * Returns keywords. + * + * @return array + */ + public function getKeywords() + { + return array( + 'php-keyword', + array( + // Keywords + 'abstract' => 1, + 'and' => 1, + 'array' => 1, + 'as' => 1, + 'break' => 1, + 'callable' => 1, + 'case' => 1, + 'catch' => 1, + 'class' => 1, + 'clone' => 1, + 'const' => 1, + 'continue' => 1, + 'declare' => 1, + 'default' => 1, + 'do' => 1, + 'else' => 1, + 'elseif' => 1, + 'enddeclare' => 1, + 'endfor' => 1, + 'endforeach' => 1, + 'endif' => 1, + 'endswitch' => 1, + 'endwhile' => 1, + 'extends' => 1, + 'final' => 1, + 'for' => 1, + 'foreach' => 1, + 'function' => 1, + 'global' => 1, + 'goto' => 1, + 'if' => 1, + 'implements' => 1, + 'interface' => 1, + 'instanceof' => 1, + 'insteadof' => 1, + 'namespace' => 1, + 'new' => 1, + 'or' => 1, + 'private' => 1, + 'protected' => 1, + 'public' => 1, + 'static' => 1, + 'switch' => 1, + 'throw' => 1, + 'trait' => 1, + 'try' => 1, + 'use' => 1, + 'var' => 1, + 'while' => 1, + 'xor' => 1, + + // Compile-time constants + '__CLASS__' => 1, + '__DIR__' => 1, + '__FILE__' => 1, + '__LINE__' => 1, + '__FUNCTION__' => 1, + '__METHOD__' => 1, + '__NAMESPACE__' => 1, + '__TRAIT__' => 1, + + // Language constructs + 'die' => 1, + 'echo' => 1, + 'empty' => 1, + 'exit' => 1, + 'eval' => 1, + 'include' => 1, + 'include_once' => 1, + 'isset' => 1, + 'list' => 1, + 'require' => 1, + 'require_once' => 1, + 'return' => 1, + 'print' => 1, + 'unset' => 1, + + // Types + 'true' => 1, + 'false' => 1, + 'null' => 1, + + // Functions list + 'abs' => 2, + 'acos' => 2, + 'acosh' => 2, + 'ada_afetch' => 2, + 'ada_autocommit' => 2, + 'ada_close' => 2, + 'ada_commit' => 2, + 'ada_connect' => 2, + 'ada_exec' => 2, + 'ada_fetchrow' => 2, + 'ada_fieldname' => 2, + 'ada_fieldnum' => 2, + 'ada_fieldtype' => 2, + 'ada_freeresult' => 2, + 'ada_numfields' => 2, + 'ada_numrows' => 2, + 'ada_result' => 2, + 'ada_resultall' => 2, + 'ada_rollback' => 2, + 'addcslashes' => 2, + 'addslashes' => 2, + 'aggregate' => 2, + 'aggregate_methods' => 2, + 'aggregate_methods_by_list' => 2, + 'aggregate_methods_by_regexp' => 2, + 'aggregate_properties' => 2, + 'aggregate_properties_by_list' => 2, + 'aggregate_properties_by_regexp' => 2, + 'aggregation_info' => 2, + 'apache_child_terminate' => 2, + 'apache_get_modules' => 2, + 'apache_get_version' => 2, + 'apache_getenv' => 2, + 'apache_lookup_uri' => 2, + 'apache_note' => 2, + 'apache_request_headers' => 2, + 'apache_response_headers' => 2, + 'apache_setenv' => 2, + 'apc_add' => 2, + 'apc_bin_dump' => 2, + 'apc_bin_dumpfile' => 2, + 'apc_bin_load' => 2, + 'apc_bin_loadfile' => 2, + 'apc_cache_info' => 2, + 'apc_cas' => 2, + 'apc_clear_cache' => 2, + 'apc_compile_file' => 2, + 'apc_dec' => 2, + 'apc_define_constants' => 2, + 'apc_delete' => 2, + 'apc_delete_file' => 2, + 'apc_exists' => 2, + 'apc_fetch' => 2, + 'apc_inc' => 2, + 'apc_load_constants' => 2, + 'apc_sma_info' => 2, + 'apc_store' => 2, + 'array_change_key_case' => 2, + 'array_chunk' => 2, + 'array_combine' => 2, + 'array_count_values' => 2, + 'array_diff' => 2, + 'array_diff_assoc' => 2, + 'array_diff_key' => 2, + 'array_diff_uassoc' => 2, + 'array_diff_ukey' => 2, + 'array_fill' => 2, + 'array_fill_keys' => 2, + 'array_filter' => 2, + 'array_flip' => 2, + 'array_intersect' => 2, + 'array_intersect_assoc' => 2, + 'array_intersect_key' => 2, + 'array_intersect_uassoc' => 2, + 'array_intersect_ukey' => 2, + 'array_key_exists' => 2, + 'array_keys' => 2, + 'array_map' => 2, + 'array_merge' => 2, + 'array_merge_recursive' => 2, + 'array_multisort' => 2, + 'array_pad' => 2, + 'array_pop' => 2, + 'array_product' => 2, + 'array_push' => 2, + 'array_rand' => 2, + 'array_reduce' => 2, + 'array_replace' => 2, + 'array_replace_recursive' => 2, + 'array_reverse' => 2, + 'array_search' => 2, + 'array_shift' => 2, + 'array_slice' => 2, + 'array_splice' => 2, + 'array_sum' => 2, + 'array_udiff' => 2, + 'array_udiff_assoc' => 2, + 'array_udiff_uassoc' => 2, + 'array_uintersect' => 2, + 'array_uintersect_assoc' => 2, + 'array_uintersect_uassoc' => 2, + 'array_unique' => 2, + 'array_unshift' => 2, + 'array_values' => 2, + 'array_walk' => 2, + 'array_walk_recursive' => 2, + 'arsort' => 2, + 'asin' => 2, + 'asinh' => 2, + 'asort' => 2, + 'aspell_check' => 2, + 'aspell_check-raw' => 2, + 'aspell_new' => 2, + 'aspell_suggest' => 2, + 'assert' => 2, + 'assert_options' => 2, + 'atan' => 2, + 'atan2' => 2, + 'atanh' => 2, + 'base64_decode' => 2, + 'base64_encode' => 2, + 'base_convert' => 2, + 'basename' => 2, + 'bcadd' => 2, + 'bccomp' => 2, + 'bcdiv' => 2, + 'bcmod' => 2, + 'bcmul' => 2, + 'bcompiler_load' => 2, + 'bcompiler_load_exe' => 2, + 'bcompiler_parse_class' => 2, + 'bcompiler_read' => 2, + 'bcompiler_write_class' => 2, + 'bcompiler_write_constant' => 2, + 'bcompiler_write_exe_footer' => 2, + 'bcompiler_write_file' => 2, + 'bcompiler_write_footer' => 2, + 'bcompiler_write_function' => 2, + 'bcompiler_write_functions_from_file' => 2, + 'bcompiler_write_header' => 2, + 'bcompiler_write_included_filename' => 2, + 'bcpow' => 2, + 'bcpowmod' => 2, + 'bcscale' => 2, + 'bcsqrt' => 2, + 'bcsub' => 2, + 'bin2hex' => 2, + 'bind_textdomain_codeset' => 2, + 'bindec' => 2, + 'bindtextdomain' => 2, + 'bitset_empty' => 2, + 'bitset_equal' => 2, + 'bitset_excl' => 2, + 'bitset_fill' => 2, + 'bitset_from_array' => 2, + 'bitset_from_hash' => 2, + 'bitset_from_string' => 2, + 'bitset_in' => 2, + 'bitset_incl' => 2, + 'bitset_intersection' => 2, + 'bitset_invert' => 2, + 'bitset_is_empty' => 2, + 'bitset_subset' => 2, + 'bitset_to_array' => 2, + 'bitset_to_hash' => 2, + 'bitset_to_string' => 2, + 'bitset_union' => 2, + 'blenc_encrypt' => 2, + 'bzclose' => 2, + 'bzcompress' => 2, + 'bzdecompress' => 2, + 'bzerrno' => 2, + 'bzerror' => 2, + 'bzerrstr' => 2, + 'bzflush' => 2, + 'bzopen' => 2, + 'bzread' => 2, + 'bzwrite' => 2, + 'cal_days_in_month' => 2, + 'cal_from_jd' => 2, + 'cal_info' => 2, + 'cal_to_jd' => 2, + 'call_user_func' => 2, + 'call_user_func_array' => 2, + 'call_user_method' => 2, + 'call_user_method_array' => 2, + 'ceil' => 2, + 'chdir' => 2, + 'checkdate' => 2, + 'checkdnsrr' => 2, + 'chgrp' => 2, + 'chmod' => 2, + 'chop' => 2, + 'chown' => 2, + 'chr' => 2, + 'chunk_split' => 2, + 'class_alias' => 2, + 'class_exists' => 2, + 'class_implements' => 2, + 'class_parents' => 2, + 'classkit_aggregate_methods' => 2, + 'classkit_doc_comments' => 2, + 'classkit_import' => 2, + 'classkit_method_add' => 2, + 'classkit_method_copy' => 2, + 'classkit_method_redefine' => 2, + 'classkit_method_remove' => 2, + 'classkit_method_rename' => 2, + 'clearstatcache' => 2, + 'closedir' => 2, + 'closelog' => 2, + 'collator_asort' => 2, + 'collator_compare' => 2, + 'collator_create' => 2, + 'collator_get_attribute' => 2, + 'collator_get_error_code' => 2, + 'collator_get_error_message' => 2, + 'collator_get_locale' => 2, + 'collator_get_sort_key' => 2, + 'collator_get_strength' => 2, + 'collator_set_attribute' => 2, + 'collator_set_strength' => 2, + 'collator_sort' => 2, + 'collator_sort_with_sort_keys' => 2, + 'com_create_guid' => 2, + 'com_event_sink' => 2, + 'com_get_active_object' => 2, + 'com_load_typelib' => 2, + 'com_message_pump' => 2, + 'com_print_typeinfo' => 2, + 'compact' => 2, + 'confirm_phpdoc_compiled' => 2, + 'connection_aborted' => 2, + 'connection_status' => 2, + 'connection_timeout' => 2, + 'constant' => 2, + 'contained' => 2, + 'convert_cyr_string' => 2, + 'convert_uudecode' => 2, + 'convert_uuencode' => 2, + 'copy' => 2, + 'cos' => 2, + 'cosh' => 2, + 'count' => 2, + 'count_chars' => 2, + 'cpdf_add_annotation' => 2, + 'cpdf_add_outline' => 2, + 'cpdf_arc' => 2, + 'cpdf_begin_text' => 2, + 'cpdf_circle' => 2, + 'cpdf_clip' => 2, + 'cpdf_close' => 2, + 'cpdf_closepath' => 2, + 'cpdf_closepath_fill_stroke' => 2, + 'cpdf_closepath_stroke' => 2, + 'cpdf_continue_text' => 2, + 'cpdf_curveto' => 2, + 'cpdf_end_text' => 2, + 'cpdf_fill' => 2, + 'cpdf_fill_stroke' => 2, + 'cpdf_finalize' => 2, + 'cpdf_finalize_page' => 2, + 'cpdf_global_set_document_limits' => 2, + 'cpdf_import_jpeg' => 2, + 'cpdf_lineto' => 2, + 'cpdf_moveto' => 2, + 'cpdf_newpath' => 2, + 'cpdf_open' => 2, + 'cpdf_output_buffer' => 2, + 'cpdf_page_init' => 2, + 'cpdf_place_inline_image' => 2, + 'cpdf_rect' => 2, + 'cpdf_restore' => 2, + 'cpdf_rlineto' => 2, + 'cpdf_rmoveto' => 2, + 'cpdf_rotate' => 2, + 'cpdf_rotate_text' => 2, + 'cpdf_save' => 2, + 'cpdf_save_to_file' => 2, + 'cpdf_scale' => 2, + 'cpdf_set_action_url' => 2, + 'cpdf_set_char_spacing' => 2, + 'cpdf_set_creator' => 2, + 'cpdf_set_current_page' => 2, + 'cpdf_set_font' => 2, + 'cpdf_set_font_directories' => 2, + 'cpdf_set_font_map_file' => 2, + 'cpdf_set_horiz_scaling' => 2, + 'cpdf_set_keywords' => 2, + 'cpdf_set_leading' => 2, + 'cpdf_set_page_animation' => 2, + 'cpdf_set_subject' => 2, + 'cpdf_set_text_matrix' => 2, + 'cpdf_set_text_pos' => 2, + 'cpdf_set_text_rendering' => 2, + 'cpdf_set_text_rise' => 2, + 'cpdf_set_title' => 2, + 'cpdf_set_viewer_preferences' => 2, + 'cpdf_set_word_spacing' => 2, + 'cpdf_setdash' => 2, + 'cpdf_setflat' => 2, + 'cpdf_setgray' => 2, + 'cpdf_setgray_fill' => 2, + 'cpdf_setgray_stroke' => 2, + 'cpdf_setlinecap' => 2, + 'cpdf_setlinejoin' => 2, + 'cpdf_setlinewidth' => 2, + 'cpdf_setmiterlimit' => 2, + 'cpdf_setrgbcolor' => 2, + 'cpdf_setrgbcolor_fill' => 2, + 'cpdf_setrgbcolor_stroke' => 2, + 'cpdf_show' => 2, + 'cpdf_show_xy' => 2, + 'cpdf_stringwidth' => 2, + 'cpdf_stroke' => 2, + 'cpdf_text' => 2, + 'cpdf_translate' => 2, + 'crack_check' => 2, + 'crack_closedict' => 2, + 'crack_getlastmessage' => 2, + 'crack_opendict' => 2, + 'crc32' => 2, + 'create_function' => 2, + 'crypt' => 2, + 'ctype_alnum' => 2, + 'ctype_alpha' => 2, + 'ctype_cntrl' => 2, + 'ctype_digit' => 2, + 'ctype_graph' => 2, + 'ctype_lower' => 2, + 'ctype_print' => 2, + 'ctype_punct' => 2, + 'ctype_space' => 2, + 'ctype_upper' => 2, + 'ctype_xdigit' => 2, + 'curl_close' => 2, + 'curl_copy_handle' => 2, + 'curl_errno' => 2, + 'curl_error' => 2, + 'curl_exec' => 2, + 'curl_getinfo' => 2, + 'curl_init' => 2, + 'curl_multi_add_handle' => 2, + 'curl_multi_close' => 2, + 'curl_multi_exec' => 2, + 'curl_multi_getcontent' => 2, + 'curl_multi_info_read' => 2, + 'curl_multi_init' => 2, + 'curl_multi_remove_handle' => 2, + 'curl_multi_select' => 2, + 'curl_setopt' => 2, + 'curl_setopt_array' => 2, + 'curl_version' => 2, + 'current' => 2, + 'cvsclient_connect' => 2, + 'cvsclient_log' => 2, + 'cvsclient_login' => 2, + 'cvsclient_retrieve' => 2, + 'date' => 2, + 'date_add' => 2, + 'date_create' => 2, + 'date_create_from_format' => 2, + 'date_date_set' => 2, + 'date_default_timezone_get' => 2, + 'date_default_timezone_set' => 2, + 'date_diff' => 2, + 'date_format' => 2, + 'date_get_last_errors' => 2, + 'date_interval_create_from_date_string' => 2, + 'date_interval_format' => 2, + 'date_isodate_set' => 2, + 'date_modify' => 2, + 'date_offset_get' => 2, + 'date_parse' => 2, + 'date_parse_from_format' => 2, + 'date_sub' => 2, + 'date_sun_info' => 2, + 'date_sunrise' => 2, + 'date_sunset' => 2, + 'date_time_set' => 2, + 'date_timestamp_get' => 2, + 'date_timestamp_set' => 2, + 'date_timezone_get' => 2, + 'date_timezone_set' => 2, + 'datefmt_create' => 2, + 'datefmt_format' => 2, + 'datefmt_get_calendar' => 2, + 'datefmt_get_datetype' => 2, + 'datefmt_get_error_code' => 2, + 'datefmt_get_error_message' => 2, + 'datefmt_get_locale' => 2, + 'datefmt_get_pattern' => 2, + 'datefmt_get_timetype' => 2, + 'datefmt_get_timezone_id' => 2, + 'datefmt_is_lenient' => 2, + 'datefmt_localtime' => 2, + 'datefmt_parse' => 2, + 'datefmt_set_calendar' => 2, + 'datefmt_set_lenient' => 2, + 'datefmt_set_pattern' => 2, + 'datefmt_set_timezone_id' => 2, + 'db_id_list' => 2, + 'dba_close' => 2, + 'dba_delete' => 2, + 'dba_exists' => 2, + 'dba_fetch' => 2, + 'dba_firstkey' => 2, + 'dba_handlers' => 2, + 'dba_insert' => 2, + 'dba_key_split' => 2, + 'dba_list' => 2, + 'dba_nextkey' => 2, + 'dba_open' => 2, + 'dba_optimize' => 2, + 'dba_popen' => 2, + 'dba_replace' => 2, + 'dba_sync' => 2, + 'dbase_add_record' => 2, + 'dbase_close' => 2, + 'dbase_create' => 2, + 'dbase_delete_record' => 2, + 'dbase_get_header_info' => 2, + 'dbase_get_record' => 2, + 'dbase_get_record_with_names' => 2, + 'dbase_numfields' => 2, + 'dbase_numrecords' => 2, + 'dbase_open' => 2, + 'dbase_pack' => 2, + 'dbase_replace_record' => 2, + 'dbg_get_all_contexts' => 2, + 'dbg_get_all_module_names' => 2, + 'dbg_get_all_source_lines' => 2, + 'dbg_get_context_name' => 2, + 'dbg_get_loaded_zendextensions' => 2, + 'dbg_get_module_name' => 2, + 'dbg_get_profiler_results' => 2, + 'dbg_get_source_context' => 2, + 'dblist' => 2, + 'dbmclose' => 2, + 'dbmdelete' => 2, + 'dbmexists' => 2, + 'dbmfetch' => 2, + 'dbmfirstkey' => 2, + 'dbminsert' => 2, + 'dbmnextkey' => 2, + 'dbmopen' => 2, + 'dbmreplace' => 2, + 'dbx_close' => 2, + 'dbx_compare' => 2, + 'dbx_connect' => 2, + 'dbx_error' => 2, + 'dbx_escape_string' => 2, + 'dbx_fetch_row' => 2, + 'dbx_query' => 2, + 'dbx_sort' => 2, + 'dcgettext' => 2, + 'dcngettext' => 2, + 'deaggregate' => 2, + 'debug_backtrace' => 2, + 'debug_print_backtrace' => 2, + 'debug_zval_dump' => 2, + 'debugbreak' => 2, + 'debugger_off' => 2, + 'debugger_on' => 2, + 'decbin' => 2, + 'dechex' => 2, + 'decoct' => 2, + 'define' => 2, + 'define_syslog_variables' => 2, + 'defined' => 2, + 'deg2rad' => 2, + 'delete' => 2, + 'dgettext' => 2, + 'dio_close' => 2, + 'dio_open' => 2, + 'dio_read' => 2, + 'dio_seek' => 2, + 'dio_stat' => 2, + 'dio_write' => 2, + 'dir' => 2, + 'dirname' => 2, + 'disk_free_space' => 2, + 'disk_total_space' => 2, + 'diskfreespace' => 2, + 'dl' => 2, + 'dngettext' => 2, + 'dns_check_record' => 2, + 'dns_get_mx' => 2, + 'dns_get_record' => 2, + 'docblock_token_name' => 2, + 'docblock_tokenize' => 2, + 'dom_import_simplexml' => 2, + 'domxml_add_root' => 2, + 'domxml_attributes' => 2, + 'domxml_children' => 2, + 'domxml_doc_add_root' => 2, + 'domxml_doc_document_element' => 2, + 'domxml_doc_get_element_by_id' => 2, + 'domxml_doc_get_elements_by_tagname' => 2, + 'domxml_doc_get_root' => 2, + 'domxml_doc_set_root' => 2, + 'domxml_doc_validate' => 2, + 'domxml_doc_xinclude' => 2, + 'domxml_dump_mem' => 2, + 'domxml_dump_mem_file' => 2, + 'domxml_dump_node' => 2, + 'domxml_dumpmem' => 2, + 'domxml_elem_get_attribute' => 2, + 'domxml_elem_set_attribute' => 2, + 'domxml_get_attribute' => 2, + 'domxml_getattr' => 2, + 'domxml_html_dump_mem' => 2, + 'domxml_new_child' => 2, + 'domxml_new_doc' => 2, + 'domxml_new_xmldoc' => 2, + 'domxml_node' => 2, + 'domxml_node_add_namespace' => 2, + 'domxml_node_attributes' => 2, + 'domxml_node_children' => 2, + 'domxml_node_get_content' => 2, + 'domxml_node_has_attributes' => 2, + 'domxml_node_new_child' => 2, + 'domxml_node_set_content' => 2, + 'domxml_node_set_namespace' => 2, + 'domxml_node_unlink_node' => 2, + 'domxml_open_file' => 2, + 'domxml_open_mem' => 2, + 'domxml_parser' => 2, + 'domxml_parser_add_chunk' => 2, + 'domxml_parser_cdata_section' => 2, + 'domxml_parser_characters' => 2, + 'domxml_parser_comment' => 2, + 'domxml_parser_end' => 2, + 'domxml_parser_end_document' => 2, + 'domxml_parser_end_element' => 2, + 'domxml_parser_entity_reference' => 2, + 'domxml_parser_get_document' => 2, + 'domxml_parser_namespace_decl' => 2, + 'domxml_parser_processing_instruction' => 2, + 'domxml_parser_start_document' => 2, + 'domxml_parser_start_element' => 2, + 'domxml_root' => 2, + 'domxml_set_attribute' => 2, + 'domxml_setattr' => 2, + 'domxml_substitute_entities_default' => 2, + 'domxml_unlink_node' => 2, + 'domxml_version' => 2, + 'domxml_xmltree' => 2, + 'doubleval' => 2, + 'each' => 2, + 'easter_date' => 2, + 'easter_days' => 2, + 'end' => 2, + 'endwhile' => 2, + 'ereg' => 2, + 'ereg_replace' => 2, + 'eregi' => 2, + 'eregi_replace' => 2, + 'error_get_last' => 2, + 'error_log' => 2, + 'error_reporting' => 2, + 'escapeshellarg' => 2, + 'escapeshellcmd' => 2, + 'eval' => 2, + 'event_deschedule' => 2, + 'event_dispatch' => 2, + 'event_free' => 2, + 'event_handle_signal' => 2, + 'event_have_events' => 2, + 'event_init' => 2, + 'event_new' => 2, + 'event_pending' => 2, + 'event_priority_set' => 2, + 'event_schedule' => 2, + 'event_set' => 2, + 'event_timeout' => 2, + 'exec' => 2, + 'exif_imagetype' => 2, + 'exif_read_data' => 2, + 'exif_tagname' => 2, + 'exif_thumbnail' => 2, + 'exp' => 2, + 'explode' => 2, + 'expm1' => 2, + 'extension_loaded' => 2, + 'extract' => 2, + 'ezmlm_hash' => 2, + 'fbird_add_user' => 2, + 'fbird_affected_rows' => 2, + 'fbird_backup' => 2, + 'fbird_blob_add' => 2, + 'fbird_blob_cancel' => 2, + 'fbird_blob_close' => 2, + 'fbird_blob_create' => 2, + 'fbird_blob_echo' => 2, + 'fbird_blob_get' => 2, + 'fbird_blob_import' => 2, + 'fbird_blob_info' => 2, + 'fbird_blob_open' => 2, + 'fbird_close' => 2, + 'fbird_commit' => 2, + 'fbird_commit_ret' => 2, + 'fbird_connect' => 2, + 'fbird_db_info' => 2, + 'fbird_delete_user' => 2, + 'fbird_drop_db' => 2, + 'fbird_errcode' => 2, + 'fbird_errmsg' => 2, + 'fbird_execute' => 2, + 'fbird_fetch_assoc' => 2, + 'fbird_fetch_object' => 2, + 'fbird_fetch_row' => 2, + 'fbird_field_info' => 2, + 'fbird_free_event_handler' => 2, + 'fbird_free_query' => 2, + 'fbird_free_result' => 2, + 'fbird_gen_id' => 2, + 'fbird_maintain_db' => 2, + 'fbird_modify_user' => 2, + 'fbird_name_result' => 2, + 'fbird_num_fields' => 2, + 'fbird_num_params' => 2, + 'fbird_param_info' => 2, + 'fbird_pconnect' => 2, + 'fbird_prepare' => 2, + 'fbird_query' => 2, + 'fbird_restore' => 2, + 'fbird_rollback' => 2, + 'fbird_rollback_ret' => 2, + 'fbird_server_info' => 2, + 'fbird_service_attach' => 2, + 'fbird_service_detach' => 2, + 'fbird_set_event_handler' => 2, + 'fbird_trans' => 2, + 'fbird_wait_event' => 2, + 'fclose' => 2, + 'fdf_add_doc_javascript' => 2, + 'fdf_add_template' => 2, + 'fdf_close' => 2, + 'fdf_create' => 2, + 'fdf_enum_values' => 2, + 'fdf_errno' => 2, + 'fdf_error' => 2, + 'fdf_get_ap' => 2, + 'fdf_get_attachment' => 2, + 'fdf_get_encoding' => 2, + 'fdf_get_file' => 2, + 'fdf_get_flags' => 2, + 'fdf_get_opt' => 2, + 'fdf_get_status' => 2, + 'fdf_get_value' => 2, + 'fdf_get_version' => 2, + 'fdf_header' => 2, + 'fdf_next_field_name' => 2, + 'fdf_open' => 2, + 'fdf_open_string' => 2, + 'fdf_remove_item' => 2, + 'fdf_save' => 2, + 'fdf_save_string' => 2, + 'fdf_set_ap' => 2, + 'fdf_set_encoding' => 2, + 'fdf_set_file' => 2, + 'fdf_set_flags' => 2, + 'fdf_set_javascript_action' => 2, + 'fdf_set_on_import_javascript' => 2, + 'fdf_set_opt' => 2, + 'fdf_set_status' => 2, + 'fdf_set_submit_form_action' => 2, + 'fdf_set_target_frame' => 2, + 'fdf_set_value' => 2, + 'fdf_set_version' => 2, + 'feof' => 2, + 'fflush' => 2, + 'fgetc' => 2, + 'fgetcsv' => 2, + 'fgets' => 2, + 'fgetss' => 2, + 'file' => 2, + 'file_exists' => 2, + 'file_get_contents' => 2, + 'file_put_contents' => 2, + 'fileatime' => 2, + 'filectime' => 2, + 'filegroup' => 2, + 'fileinode' => 2, + 'filemtime' => 2, + 'fileowner' => 2, + 'fileperms' => 2, + 'filepro' => 2, + 'filepro_fieldcount' => 2, + 'filepro_fieldname' => 2, + 'filepro_fieldtype' => 2, + 'filepro_fieldwidth' => 2, + 'filepro_retrieve' => 2, + 'filepro_rowcount' => 2, + 'filesize' => 2, + 'filetype' => 2, + 'filter_has_var' => 2, + 'filter_id' => 2, + 'filter_input' => 2, + 'filter_input_array' => 2, + 'filter_list' => 2, + 'filter_var' => 2, + 'filter_var_array' => 2, + 'finfo_buffer' => 2, + 'finfo_close' => 2, + 'finfo_file' => 2, + 'finfo_open' => 2, + 'finfo_set_flags' => 2, + 'floatval' => 2, + 'flock' => 2, + 'floor' => 2, + 'flush' => 2, + 'fmod' => 2, + 'fnmatch' => 2, + 'fopen' => 2, + 'forward_static_call' => 2, + 'forward_static_call_array' => 2, + 'fpassthru' => 2, + 'fprintf' => 2, + 'fputcsv' => 2, + 'fputs' => 2, + 'fread' => 2, + 'frenchtojd' => 2, + 'fribidi_charset_info' => 2, + 'fribidi_get_charsets' => 2, + 'fribidi_log2vis' => 2, + 'fscanf' => 2, + 'fseek' => 2, + 'fsockopen' => 2, + 'fstat' => 2, + 'ftell' => 2, + 'ftok' => 2, + 'ftp_alloc' => 2, + 'ftp_cdup' => 2, + 'ftp_chdir' => 2, + 'ftp_chmod' => 2, + 'ftp_close' => 2, + 'ftp_connect' => 2, + 'ftp_delete' => 2, + 'ftp_exec' => 2, + 'ftp_fget' => 2, + 'ftp_fput' => 2, + 'ftp_get' => 2, + 'ftp_get_option' => 2, + 'ftp_login' => 2, + 'ftp_mdtm' => 2, + 'ftp_mkdir' => 2, + 'ftp_nb_continue' => 2, + 'ftp_nb_fget' => 2, + 'ftp_nb_fput' => 2, + 'ftp_nb_get' => 2, + 'ftp_nb_put' => 2, + 'ftp_nlist' => 2, + 'ftp_pasv' => 2, + 'ftp_put' => 2, + 'ftp_pwd' => 2, + 'ftp_quit' => 2, + 'ftp_raw' => 2, + 'ftp_rawlist' => 2, + 'ftp_rename' => 2, + 'ftp_rmdir' => 2, + 'ftp_set_option' => 2, + 'ftp_site' => 2, + 'ftp_size' => 2, + 'ftp_ssl_connect' => 2, + 'ftp_systype' => 2, + 'ftruncate' => 2, + 'func_get_arg' => 2, + 'func_get_args' => 2, + 'func_num_args' => 2, + 'function_exists' => 2, + 'fwrite' => 2, + 'gc_collect_cycles' => 2, + 'gc_disable' => 2, + 'gc_enable' => 2, + 'gc_enabled' => 2, + 'gd_info' => 2, + 'get_browser' => 2, + 'get_called_class' => 2, + 'get_cfg_var' => 2, + 'get_class' => 2, + 'get_class_methods' => 2, + 'get_class_vars' => 2, + 'get_current_user' => 2, + 'get_declared_classes' => 2, + 'get_declared_interfaces' => 2, + 'get_declared_traits' => 2, + 'get_defined_constants' => 2, + 'get_defined_functions' => 2, + 'get_defined_vars' => 2, + 'get_extension_funcs' => 2, + 'get_headers' => 2, + 'get_html_translation_table' => 2, + 'get_include_path' => 2, + 'get_included_files' => 2, + 'get_loaded_extensions' => 2, + 'get_magic_quotes_gpc' => 2, + 'get_magic_quotes_runtime' => 2, + 'get_meta_tags' => 2, + 'get_object_vars' => 2, + 'get_parent_class' => 2, + 'get_required_files' => 2, + 'get_resource_type' => 2, + 'getallheaders' => 2, + 'getcwd' => 2, + 'getdate' => 2, + 'getenv' => 2, + 'gethostbyaddr' => 2, + 'gethostbyname' => 2, + 'gethostbynamel' => 2, + 'gethostname' => 2, + 'getimagesize' => 2, + 'getimagesizefromstring' => 2, + 'getlastmod' => 2, + 'getmxrr' => 2, + 'getmygid' => 2, + 'getmyinode' => 2, + 'getmypid' => 2, + 'getmyuid' => 2, + 'getopt' => 2, + 'getprotobyname' => 2, + 'getprotobynumber' => 2, + 'getrandmax' => 2, + 'getrusage' => 2, + 'getservbyname' => 2, + 'getservbyport' => 2, + 'gettext' => 2, + 'gettimeofday' => 2, + 'gettype' => 2, + 'glob' => 2, + 'gmdate' => 2, + 'gmmktime' => 2, + 'gmp_abs' => 2, + 'gmp_add' => 2, + 'gmp_and' => 2, + 'gmp_clrbit' => 2, + 'gmp_cmp' => 2, + 'gmp_com' => 2, + 'gmp_div' => 2, + 'gmp_div_q' => 2, + 'gmp_div_qr' => 2, + 'gmp_div_r' => 2, + 'gmp_divexact' => 2, + 'gmp_fact' => 2, + 'gmp_gcd' => 2, + 'gmp_gcdext' => 2, + 'gmp_hamdist' => 2, + 'gmp_init' => 2, + 'gmp_intval' => 2, + 'gmp_invert' => 2, + 'gmp_jacobi' => 2, + 'gmp_legendre' => 2, + 'gmp_mod' => 2, + 'gmp_mul' => 2, + 'gmp_neg' => 2, + 'gmp_nextprime' => 2, + 'gmp_or' => 2, + 'gmp_perfect_square' => 2, + 'gmp_popcount' => 2, + 'gmp_pow' => 2, + 'gmp_powm' => 2, + 'gmp_prob_prime' => 2, + 'gmp_random' => 2, + 'gmp_scan0' => 2, + 'gmp_scan1' => 2, + 'gmp_setbit' => 2, + 'gmp_sign' => 2, + 'gmp_sqrt' => 2, + 'gmp_sqrtrem' => 2, + 'gmp_strval' => 2, + 'gmp_sub' => 2, + 'gmp_xor' => 2, + 'gmstrftime' => 2, + 'gopher_parsedir' => 2, + 'grapheme_extract' => 2, + 'grapheme_stripos' => 2, + 'grapheme_stristr' => 2, + 'grapheme_strlen' => 2, + 'grapheme_strpos' => 2, + 'grapheme_strripos' => 2, + 'grapheme_strrpos' => 2, + 'grapheme_strstr' => 2, + 'grapheme_substr' => 2, + 'gregoriantojd' => 2, + 'gzclose' => 2, + 'gzcompress' => 2, + 'gzdecode' => 2, + 'gzdeflate' => 2, + 'gzencode' => 2, + 'gzeof' => 2, + 'gzfile' => 2, + 'gzgetc' => 2, + 'gzgets' => 2, + 'gzgetss' => 2, + 'gzinflate' => 2, + 'gzopen' => 2, + 'gzpassthru' => 2, + 'gzputs' => 2, + 'gzread' => 2, + 'gzrewind' => 2, + 'gzseek' => 2, + 'gztell' => 2, + 'gzuncompress' => 2, + 'gzwrite' => 2, + 'hash' => 2, + 'hash_algos' => 2, + 'hash_copy' => 2, + 'hash_file' => 2, + 'hash_final' => 2, + 'hash_hmac' => 2, + 'hash_hmac_file' => 2, + 'hash_init' => 2, + 'hash_update' => 2, + 'hash_update_file' => 2, + 'hash_update_stream' => 2, + 'header' => 2, + 'header_register_callback' => 2, + 'header_remove' => 2, + 'headers_list' => 2, + 'headers_sent' => 2, + 'hebrev' => 2, + 'hebrevc' => 2, + 'hex2bin' => 2, + 'hexdec' => 2, + 'highlight_file' => 2, + 'highlight_string' => 2, + 'html_doc' => 2, + 'html_doc_file' => 2, + 'html_entity_decode' => 2, + 'htmlentities' => 2, + 'htmlspecialchars' => 2, + 'htmlspecialchars_decode' => 2, + 'http_build_cookie' => 2, + 'http_build_query' => 2, + 'http_build_str' => 2, + 'http_build_url' => 2, + 'http_cache_etag' => 2, + 'http_cache_last_modified' => 2, + 'http_chunked_decode' => 2, + 'http_date' => 2, + 'http_deflate' => 2, + 'http_get' => 2, + 'http_get_request_body' => 2, + 'http_get_request_body_stream' => 2, + 'http_get_request_headers' => 2, + 'http_head' => 2, + 'http_inflate' => 2, + 'http_match_etag' => 2, + 'http_match_modified' => 2, + 'http_match_request_header' => 2, + 'http_negotiate' => 2, + 'http_negotiate_charset' => 2, + 'http_negotiate_content_type' => 2, + 'http_negotiate_language' => 2, + 'http_parse_cookie' => 2, + 'http_parse_headers' => 2, + 'http_parse_message' => 2, + 'http_parse_params' => 2, + 'http_persistent_handles_clean' => 2, + 'http_persistent_handles_count' => 2, + 'http_persistent_handles_ident' => 2, + 'http_post_data' => 2, + 'http_post_fields' => 2, + 'http_put_data' => 2, + 'http_put_file' => 2, + 'http_put_stream' => 2, + 'http_redirect' => 2, + 'http_request' => 2, + 'http_request_body_encode' => 2, + 'http_request_method_exists' => 2, + 'http_request_method_name' => 2, + 'http_request_method_register' => 2, + 'http_request_method_unregister' => 2, + 'http_response_code' => 2, + 'http_send_content_disposition' => 2, + 'http_send_content_type' => 2, + 'http_send_data' => 2, + 'http_send_file' => 2, + 'http_send_last_modified' => 2, + 'http_send_status' => 2, + 'http_send_stream' => 2, + 'http_support' => 2, + 'http_throttle' => 2, + 'hw_array2objrec' => 2, + 'hw_children' => 2, + 'hw_childrenobj' => 2, + 'hw_close' => 2, + 'hw_connect' => 2, + 'hw_cp' => 2, + 'hw_deleteobject' => 2, + 'hw_docbyanchor' => 2, + 'hw_docbyanchorobj' => 2, + 'hw_documentattributes' => 2, + 'hw_documentbodytag' => 2, + 'hw_documentcontent' => 2, + 'hw_documentsetcontent' => 2, + 'hw_documentsize' => 2, + 'hw_edittext' => 2, + 'hw_error' => 2, + 'hw_errormsg' => 2, + 'hw_free_document' => 2, + 'hw_getanchors' => 2, + 'hw_getanchorsobj' => 2, + 'hw_getandlock' => 2, + 'hw_getchildcoll' => 2, + 'hw_getchildcollobj' => 2, + 'hw_getchilddoccoll' => 2, + 'hw_getchilddoccollobj' => 2, + 'hw_getobject' => 2, + 'hw_getobjectbyquery' => 2, + 'hw_getobjectbyquerycoll' => 2, + 'hw_getobjectbyquerycollobj' => 2, + 'hw_getobjectbyqueryobj' => 2, + 'hw_getparents' => 2, + 'hw_getparentsobj' => 2, + 'hw_getremote' => 2, + 'hw_getremotechildren' => 2, + 'hw_getsrcbydestobj' => 2, + 'hw_gettext' => 2, + 'hw_identify' => 2, + 'hw_incollections' => 2, + 'hw_info' => 2, + 'hw_inscoll' => 2, + 'hw_insdoc' => 2, + 'hw_insertdocument' => 2, + 'hw_insertobject' => 2, + 'hw_mapid' => 2, + 'hw_modifyobject' => 2, + 'hw_mv' => 2, + 'hw_new_document' => 2, + 'hw_objrec2array' => 2, + 'hw_outputdocument' => 2, + 'hw_pconnect' => 2, + 'hw_pipedocument' => 2, + 'hw_root' => 2, + 'hw_unlock' => 2, + 'hw_username' => 2, + 'hw_who' => 2, + 'hypot' => 2, + 'i18n_convert' => 2, + 'i18n_discover_encoding' => 2, + 'i18n_http_input' => 2, + 'i18n_http_output' => 2, + 'i18n_internal_encoding' => 2, + 'i18n_ja_jp_hantozen' => 2, + 'i18n_mime_header_decode' => 2, + 'i18n_mime_header_encode' => 2, + 'ibase_add_user' => 2, + 'ibase_affected_rows' => 2, + 'ibase_backup' => 2, + 'ibase_bind' => 2, + 'ibase_blob_add' => 2, + 'ibase_blob_cancel' => 2, + 'ibase_blob_close' => 2, + 'ibase_blob_create' => 2, + 'ibase_blob_echo' => 2, + 'ibase_blob_get' => 2, + 'ibase_blob_import' => 2, + 'ibase_blob_info' => 2, + 'ibase_blob_open' => 2, + 'ibase_close' => 2, + 'ibase_commit' => 2, + 'ibase_commit_ret' => 2, + 'ibase_connect' => 2, + 'ibase_db_info' => 2, + 'ibase_delete_user' => 2, + 'ibase_drop_db' => 2, + 'ibase_errcode' => 2, + 'ibase_errmsg' => 2, + 'ibase_execute' => 2, + 'ibase_fetch_assoc' => 2, + 'ibase_fetch_object' => 2, + 'ibase_fetch_row' => 2, + 'ibase_field_info' => 2, + 'ibase_free_event_handler' => 2, + 'ibase_free_query' => 2, + 'ibase_free_result' => 2, + 'ibase_gen_id' => 2, + 'ibase_maintain_db' => 2, + 'ibase_modify_user' => 2, + 'ibase_name_result' => 2, + 'ibase_num_fields' => 2, + 'ibase_num_params' => 2, + 'ibase_param_info' => 2, + 'ibase_pconnect' => 2, + 'ibase_prepare' => 2, + 'ibase_query' => 2, + 'ibase_restore' => 2, + 'ibase_rollback' => 2, + 'ibase_rollback_ret' => 2, + 'ibase_server_info' => 2, + 'ibase_service_attach' => 2, + 'ibase_service_detach' => 2, + 'ibase_set_event_handler' => 2, + 'ibase_timefmt' => 2, + 'ibase_trans' => 2, + 'ibase_wait_event' => 2, + 'iconv' => 2, + 'iconv_get_encoding' => 2, + 'iconv_mime_decode' => 2, + 'iconv_mime_decode_headers' => 2, + 'iconv_mime_encode' => 2, + 'iconv_set_encoding' => 2, + 'iconv_strlen' => 2, + 'iconv_strpos' => 2, + 'iconv_strrpos' => 2, + 'iconv_substr' => 2, + 'id3_get_frame_long_name' => 2, + 'id3_get_frame_short_name' => 2, + 'id3_get_genre_id' => 2, + 'id3_get_genre_list' => 2, + 'id3_get_genre_name' => 2, + 'id3_get_tag' => 2, + 'id3_get_version' => 2, + 'id3_remove_tag' => 2, + 'id3_set_tag' => 2, + 'idate' => 2, + 'idn_to_ascii' => 2, + 'idn_to_utf8' => 2, + 'ifx_affected_rows' => 2, + 'ifx_blobinfile_mode' => 2, + 'ifx_byteasvarchar' => 2, + 'ifx_close' => 2, + 'ifx_connect' => 2, + 'ifx_copy_blob' => 2, + 'ifx_create_blob' => 2, + 'ifx_create_char' => 2, + 'ifx_do' => 2, + 'ifx_error' => 2, + 'ifx_errormsg' => 2, + 'ifx_fetch_row' => 2, + 'ifx_fieldproperties' => 2, + 'ifx_fieldtypes' => 2, + 'ifx_free_blob' => 2, + 'ifx_free_char' => 2, + 'ifx_free_result' => 2, + 'ifx_free_slob' => 2, + 'ifx_get_blob' => 2, + 'ifx_get_char' => 2, + 'ifx_getsqlca' => 2, + 'ifx_htmltbl_result' => 2, + 'ifx_nullformat' => 2, + 'ifx_num_fields' => 2, + 'ifx_num_rows' => 2, + 'ifx_pconnect' => 2, + 'ifx_prepare' => 2, + 'ifx_query' => 2, + 'ifx_textasvarchar' => 2, + 'ifx_update_blob' => 2, + 'ifx_update_char' => 2, + 'ifxus_close_slob' => 2, + 'ifxus_create_slob' => 2, + 'ifxus_open_slob' => 2, + 'ifxus_read_slob' => 2, + 'ifxus_seek_slob' => 2, + 'ifxus_tell_slob' => 2, + 'ifxus_write_slob' => 2, + 'ignore_user_abort' => 2, + 'image2wbmp' => 2, + 'image_type_to_extension' => 2, + 'image_type_to_mime_type' => 2, + 'imagealphablending' => 2, + 'imageantialias' => 2, + 'imagearc' => 2, + 'imagechar' => 2, + 'imagecharup' => 2, + 'imagecolorallocate' => 2, + 'imagecolorallocatealpha' => 2, + 'imagecolorat' => 2, + 'imagecolorclosest' => 2, + 'imagecolorclosestalpha' => 2, + 'imagecolorclosesthwb' => 2, + 'imagecolordeallocate' => 2, + 'imagecolorexact' => 2, + 'imagecolorexactalpha' => 2, + 'imagecolormatch' => 2, + 'imagecolorresolve' => 2, + 'imagecolorresolvealpha' => 2, + 'imagecolorset' => 2, + 'imagecolorsforindex' => 2, + 'imagecolorstotal' => 2, + 'imagecolortransparent' => 2, + 'imageconvolution' => 2, + 'imagecopy' => 2, + 'imagecopymerge' => 2, + 'imagecopymergegray' => 2, + 'imagecopyresampled' => 2, + 'imagecopyresized' => 2, + 'imagecreate' => 2, + 'imagecreatefromgd' => 2, + 'imagecreatefromgd2' => 2, + 'imagecreatefromgd2part' => 2, + 'imagecreatefromgif' => 2, + 'imagecreatefromjpeg' => 2, + 'imagecreatefrompng' => 2, + 'imagecreatefromstring' => 2, + 'imagecreatefromwbmp' => 2, + 'imagecreatefromxbm' => 2, + 'imagecreatetruecolor' => 2, + 'imagedashedline' => 2, + 'imagedestroy' => 2, + 'imageellipse' => 2, + 'imagefill' => 2, + 'imagefilledarc' => 2, + 'imagefilledellipse' => 2, + 'imagefilledpolygon' => 2, + 'imagefilledrectangle' => 2, + 'imagefilltoborder' => 2, + 'imagefilter' => 2, + 'imagefontheight' => 2, + 'imagefontwidth' => 2, + 'imageftbbox' => 2, + 'imagefttext' => 2, + 'imagegammacorrect' => 2, + 'imagegd' => 2, + 'imagegd2' => 2, + 'imagegif' => 2, + 'imagegrabscreen' => 2, + 'imagegrabwindow' => 2, + 'imageinterlace' => 2, + 'imageistruecolor' => 2, + 'imagejpeg' => 2, + 'imagelayereffect' => 2, + 'imageline' => 2, + 'imageloadfont' => 2, + 'imagepalettecopy' => 2, + 'imagepng' => 2, + 'imagepolygon' => 2, + 'imagepsbbox' => 2, + 'imagepsencodefont' => 2, + 'imagepsextendfont' => 2, + 'imagepsfreefont' => 2, + 'imagepsloadfont' => 2, + 'imagepsslantfont' => 2, + 'imagepstext' => 2, + 'imagerectangle' => 2, + 'imagerotate' => 2, + 'imagesavealpha' => 2, + 'imagesetbrush' => 2, + 'imagesetpixel' => 2, + 'imagesetstyle' => 2, + 'imagesetthickness' => 2, + 'imagesettile' => 2, + 'imagestring' => 2, + 'imagestringup' => 2, + 'imagesx' => 2, + 'imagesy' => 2, + 'imagetruecolortopalette' => 2, + 'imagettfbbox' => 2, + 'imagettftext' => 2, + 'imagetypes' => 2, + 'imagewbmp' => 2, + 'imagexbm' => 2, + 'imap_8bit' => 2, + 'imap_alerts' => 2, + 'imap_append' => 2, + 'imap_base64' => 2, + 'imap_binary' => 2, + 'imap_body' => 2, + 'imap_bodystruct' => 2, + 'imap_check' => 2, + 'imap_clearflag_full' => 2, + 'imap_close' => 2, + 'imap_create' => 2, + 'imap_createmailbox' => 2, + 'imap_delete' => 2, + 'imap_deletemailbox' => 2, + 'imap_errors' => 2, + 'imap_expunge' => 2, + 'imap_fetch_overview' => 2, + 'imap_fetchbody' => 2, + 'imap_fetchheader' => 2, + 'imap_fetchmime' => 2, + 'imap_fetchstructure' => 2, + 'imap_fetchtext' => 2, + 'imap_gc' => 2, + 'imap_get_quota' => 2, + 'imap_get_quotaroot' => 2, + 'imap_getacl' => 2, + 'imap_getmailboxes' => 2, + 'imap_getsubscribed' => 2, + 'imap_header' => 2, + 'imap_headerinfo' => 2, + 'imap_headers' => 2, + 'imap_last_error' => 2, + 'imap_list' => 2, + 'imap_listmailbox' => 2, + 'imap_listscan' => 2, + 'imap_listsubscribed' => 2, + 'imap_lsub' => 2, + 'imap_mail' => 2, + 'imap_mail_compose' => 2, + 'imap_mail_copy' => 2, + 'imap_mail_move' => 2, + 'imap_mailboxmsginfo' => 2, + 'imap_mime_header_decode' => 2, + 'imap_msgno' => 2, + 'imap_mutf7_to_utf8' => 2, + 'imap_num_msg' => 2, + 'imap_num_recent' => 2, + 'imap_open' => 2, + 'imap_ping' => 2, + 'imap_qprint' => 2, + 'imap_rename' => 2, + 'imap_renamemailbox' => 2, + 'imap_reopen' => 2, + 'imap_rfc822_parse_adrlist' => 2, + 'imap_rfc822_parse_headers' => 2, + 'imap_rfc822_write_address' => 2, + 'imap_savebody' => 2, + 'imap_scan' => 2, + 'imap_scanmailbox' => 2, + 'imap_search' => 2, + 'imap_set_quota' => 2, + 'imap_setacl' => 2, + 'imap_setflag_full' => 2, + 'imap_sort' => 2, + 'imap_status' => 2, + 'imap_subscribe' => 2, + 'imap_thread' => 2, + 'imap_timeout' => 2, + 'imap_uid' => 2, + 'imap_undelete' => 2, + 'imap_unsubscribe' => 2, + 'imap_utf7_decode' => 2, + 'imap_utf7_encode' => 2, + 'imap_utf8' => 2, + 'imap_utf8_to_mutf7' => 2, + 'implode' => 2, + 'import_request_variables' => 2, + 'in_array' => 2, + 'inet_ntop' => 2, + 'inet_pton' => 2, + 'ini_alter' => 2, + 'ini_get' => 2, + 'ini_get_all' => 2, + 'ini_restore' => 2, + 'ini_set' => 2, + 'interface_exists' => 2, + 'intl_error_name' => 2, + 'intl_get_error_code' => 2, + 'intl_get_error_message' => 2, + 'intl_is_failure' => 2, + 'intval' => 2, + 'ip2long' => 2, + 'iptcembed' => 2, + 'iptcparse' => 2, + 'is_a' => 2, + 'is_array' => 2, + 'is_bool' => 2, + 'is_callable' => 2, + 'is_dir' => 2, + 'is_double' => 2, + 'is_executable' => 2, + 'is_file' => 2, + 'is_finite' => 2, + 'is_float' => 2, + 'is_infinite' => 2, + 'is_int' => 2, + 'is_integer' => 2, + 'is_link' => 2, + 'is_long' => 2, + 'is_nan' => 2, + 'is_null' => 2, + 'is_numeric' => 2, + 'is_object' => 2, + 'is_readable' => 2, + 'is_real' => 2, + 'is_resource' => 2, + 'is_scalar' => 2, + 'is_soap_fault' => 2, + 'is_string' => 2, + 'is_subclass_of' => 2, + 'is_uploaded_file' => 2, + 'is_writable' => 2, + 'is_writeable' => 2, + 'iterator_apply' => 2, + 'iterator_count' => 2, + 'iterator_to_array' => 2, + 'java_last_exception_clear' => 2, + 'java_last_exception_get' => 2, + 'jddayofweek' => 2, + 'jdmonthname' => 2, + 'jdtofrench' => 2, + 'jdtogregorian' => 2, + 'jdtojewish' => 2, + 'jdtojulian' => 2, + 'jdtounix' => 2, + 'jewishtojd' => 2, + 'join' => 2, + 'jpeg2wbmp' => 2, + 'json_decode' => 2, + 'json_encode' => 2, + 'json_last_error' => 2, + 'juliantojd' => 2, + 'key' => 2, + 'key_exists' => 2, + 'krsort' => 2, + 'ksort' => 2, + 'lcfirst' => 2, + 'lcg_value' => 2, + 'ldap_add' => 2, + 'ldap_bind' => 2, + 'ldap_close' => 2, + 'ldap_compare' => 2, + 'ldap_connect' => 2, + 'ldap_count_entries' => 2, + 'ldap_delete' => 2, + 'ldap_dn2ufn' => 2, + 'ldap_err2str' => 2, + 'ldap_errno' => 2, + 'ldap_error' => 2, + 'ldap_explode_dn' => 2, + 'ldap_first_attribute' => 2, + 'ldap_first_entry' => 2, + 'ldap_first_reference' => 2, + 'ldap_free_result' => 2, + 'ldap_get_attributes' => 2, + 'ldap_get_dn' => 2, + 'ldap_get_entries' => 2, + 'ldap_get_option' => 2, + 'ldap_get_values' => 2, + 'ldap_get_values_len' => 2, + 'ldap_list' => 2, + 'ldap_mod_add' => 2, + 'ldap_mod_del' => 2, + 'ldap_mod_replace' => 2, + 'ldap_modify' => 2, + 'ldap_next_attribute' => 2, + 'ldap_next_entry' => 2, + 'ldap_next_reference' => 2, + 'ldap_parse_reference' => 2, + 'ldap_parse_result' => 2, + 'ldap_read' => 2, + 'ldap_rename' => 2, + 'ldap_search' => 2, + 'ldap_set_option' => 2, + 'ldap_sort' => 2, + 'ldap_start_tls' => 2, + 'ldap_unbind' => 2, + 'leak' => 2, + 'levenshtein' => 2, + 'libxml_clear_errors' => 2, + 'libxml_disable_entity_loader' => 2, + 'libxml_get_errors' => 2, + 'libxml_get_last_error' => 2, + 'libxml_set_streams_context' => 2, + 'libxml_use_internal_errors' => 2, + 'link' => 2, + 'linkinfo' => 2, + 'locale_accept_from_http' => 2, + 'locale_canonicalize' => 2, + 'locale_compose' => 2, + 'locale_filter_matches' => 2, + 'locale_get_all_variants' => 2, + 'locale_get_default' => 2, + 'locale_get_display_language' => 2, + 'locale_get_display_name' => 2, + 'locale_get_display_region' => 2, + 'locale_get_display_script' => 2, + 'locale_get_display_variant' => 2, + 'locale_get_keywords' => 2, + 'locale_get_primary_language' => 2, + 'locale_get_region' => 2, + 'locale_get_script' => 2, + 'locale_lookup' => 2, + 'locale_parse' => 2, + 'locale_set_default' => 2, + 'localeconv' => 2, + 'localtime' => 2, + 'log' => 2, + 'log10' => 2, + 'log1p' => 2, + 'long2ip' => 2, + 'lstat' => 2, + 'ltrim' => 2, + 'lzf_compress' => 2, + 'lzf_decompress' => 2, + 'lzf_optimized_for' => 2, + 'magic_quotes_runtime' => 2, + 'mail' => 2, + 'max' => 2, + 'mb_check_encoding' => 2, + 'mb_convert_case' => 2, + 'mb_convert_encoding' => 2, + 'mb_convert_kana' => 2, + 'mb_convert_variables' => 2, + 'mb_decode_mimeheader' => 2, + 'mb_decode_numericentity' => 2, + 'mb_detect_encoding' => 2, + 'mb_detect_order' => 2, + 'mb_encode_mimeheader' => 2, + 'mb_encode_numericentity' => 2, + 'mb_encoding_aliases' => 2, + 'mb_ereg' => 2, + 'mb_ereg_match' => 2, + 'mb_ereg_replace' => 2, + 'mb_ereg_search' => 2, + 'mb_ereg_search_getpos' => 2, + 'mb_ereg_search_getregs' => 2, + 'mb_ereg_search_init' => 2, + 'mb_ereg_search_pos' => 2, + 'mb_ereg_search_regs' => 2, + 'mb_ereg_search_setpos' => 2, + 'mb_eregi' => 2, + 'mb_eregi_replace' => 2, + 'mb_get_info' => 2, + 'mb_http_input' => 2, + 'mb_http_output' => 2, + 'mb_internal_encoding' => 2, + 'mb_language' => 2, + 'mb_list_encodings' => 2, + 'mb_output_handler' => 2, + 'mb_parse_str' => 2, + 'mb_preferred_mime_name' => 2, + 'mb_regex_encoding' => 2, + 'mb_regex_set_options' => 2, + 'mb_send_mail' => 2, + 'mb_split' => 2, + 'mb_strcut' => 2, + 'mb_strimwidth' => 2, + 'mb_stripos' => 2, + 'mb_stristr' => 2, + 'mb_strlen' => 2, + 'mb_strpos' => 2, + 'mb_strrchr' => 2, + 'mb_strrichr' => 2, + 'mb_strripos' => 2, + 'mb_strrpos' => 2, + 'mb_strstr' => 2, + 'mb_strtolower' => 2, + 'mb_strtoupper' => 2, + 'mb_strwidth' => 2, + 'mb_substitute_character' => 2, + 'mb_substr' => 2, + 'mb_substr_count' => 2, + 'mbereg' => 2, + 'mbereg_match' => 2, + 'mbereg_replace' => 2, + 'mbereg_search' => 2, + 'mbereg_search_getpos' => 2, + 'mbereg_search_getregs' => 2, + 'mbereg_search_init' => 2, + 'mbereg_search_pos' => 2, + 'mbereg_search_regs' => 2, + 'mbereg_search_setpos' => 2, + 'mberegi' => 2, + 'mberegi_replace' => 2, + 'mbregex_encoding' => 2, + 'mbsplit' => 2, + 'mbstrcut' => 2, + 'mbstrlen' => 2, + 'mbstrpos' => 2, + 'mbstrrpos' => 2, + 'mbsubstr' => 2, + 'mcal_close' => 2, + 'mcal_date_compare' => 2, + 'mcal_date_valid' => 2, + 'mcal_day_of_week' => 2, + 'mcal_day_of_year' => 2, + 'mcal_days_in_month' => 2, + 'mcal_delete_event' => 2, + 'mcal_event_init' => 2, + 'mcal_event_set_alarm' => 2, + 'mcal_event_set_category' => 2, + 'mcal_event_set_class' => 2, + 'mcal_event_set_description' => 2, + 'mcal_event_set_end' => 2, + 'mcal_event_set_recur_daily' => 2, + 'mcal_event_set_recur_monthly_mday' => 2, + 'mcal_event_set_recur_monthly_wday' => 2, + 'mcal_event_set_recur_weekly' => 2, + 'mcal_event_set_recur_yearly' => 2, + 'mcal_event_set_start' => 2, + 'mcal_event_set_title' => 2, + 'mcal_fetch_current_stream_event' => 2, + 'mcal_fetch_event' => 2, + 'mcal_is_leap_year' => 2, + 'mcal_list_alarms' => 2, + 'mcal_list_events' => 2, + 'mcal_next_recurrence' => 2, + 'mcal_open' => 2, + 'mcal_snooze' => 2, + 'mcal_store_event' => 2, + 'mcal_time_valid' => 2, + 'mcrypt_cbc' => 2, + 'mcrypt_cfb' => 2, + 'mcrypt_create_iv' => 2, + 'mcrypt_decrypt' => 2, + 'mcrypt_ecb' => 2, + 'mcrypt_enc_get_algorithms_name' => 2, + 'mcrypt_enc_get_block_size' => 2, + 'mcrypt_enc_get_iv_size' => 2, + 'mcrypt_enc_get_key_size' => 2, + 'mcrypt_enc_get_modes_name' => 2, + 'mcrypt_enc_get_supported_key_sizes' => 2, + 'mcrypt_enc_is_block_algorithm' => 2, + 'mcrypt_enc_is_block_algorithm_mode' => 2, + 'mcrypt_enc_is_block_mode' => 2, + 'mcrypt_enc_self_test' => 2, + 'mcrypt_encrypt' => 2, + 'mcrypt_generic' => 2, + 'mcrypt_generic_deinit' => 2, + 'mcrypt_generic_end' => 2, + 'mcrypt_generic_init' => 2, + 'mcrypt_get_block_size' => 2, + 'mcrypt_get_cipher_name' => 2, + 'mcrypt_get_iv_size' => 2, + 'mcrypt_get_key_size' => 2, + 'mcrypt_list_algorithms' => 2, + 'mcrypt_list_modes' => 2, + 'mcrypt_module_close' => 2, + 'mcrypt_module_get_algo_block_size' => 2, + 'mcrypt_module_get_algo_key_size' => 2, + 'mcrypt_module_get_supported_key_sizes' => 2, + 'mcrypt_module_is_block_algorithm' => 2, + 'mcrypt_module_is_block_algorithm_mode' => 2, + 'mcrypt_module_is_block_mode' => 2, + 'mcrypt_module_open' => 2, + 'mcrypt_module_self_test' => 2, + 'mcrypt_ofb' => 2, + 'md5' => 2, + 'md5_file' => 2, + 'mdecrypt_generic' => 2, + 'memcache_add' => 2, + 'memcache_add_server' => 2, + 'memcache_close' => 2, + 'memcache_connect' => 2, + 'memcache_debug' => 2, + 'memcache_decrement' => 2, + 'memcache_delete' => 2, + 'memcache_flush' => 2, + 'memcache_get' => 2, + 'memcache_get_extended_stats' => 2, + 'memcache_get_server_status' => 2, + 'memcache_get_stats' => 2, + 'memcache_get_version' => 2, + 'memcache_increment' => 2, + 'memcache_pconnect' => 2, + 'memcache_replace' => 2, + 'memcache_set' => 2, + 'memcache_set_compress_threshold' => 2, + 'memcache_set_server_params' => 2, + 'memory_get_peak_usage' => 2, + 'memory_get_usage' => 2, + 'metaphone' => 2, + 'method_exists' => 2, + 'mhash' => 2, + 'mhash_count' => 2, + 'mhash_get_block_size' => 2, + 'mhash_get_hash_name' => 2, + 'mhash_keygen_s2k' => 2, + 'microtime' => 2, + 'mime_content_type' => 2, + 'min' => 2, + 'ming_keypress' => 2, + 'ming_setcubicthreshold' => 2, + 'ming_setscale' => 2, + 'ming_useconstants' => 2, + 'ming_useswfversion' => 2, + 'mkdir' => 2, + 'mktime' => 2, + 'modifiers' => 2, + 'money_format' => 2, + 'move_uploaded_file' => 2, + 'msgfmt_create' => 2, + 'msgfmt_format' => 2, + 'msgfmt_format_message' => 2, + 'msgfmt_get_error_code' => 2, + 'msgfmt_get_error_message' => 2, + 'msgfmt_get_locale' => 2, + 'msgfmt_get_pattern' => 2, + 'msgfmt_parse' => 2, + 'msgfmt_parse_message' => 2, + 'msgfmt_set_pattern' => 2, + 'msql' => 2, + 'msql_affected_rows' => 2, + 'msql_close' => 2, + 'msql_connect' => 2, + 'msql_create_db' => 2, + 'msql_createdb' => 2, + 'msql_data_seek' => 2, + 'msql_db_query' => 2, + 'msql_dbname' => 2, + 'msql_drop_db' => 2, + 'msql_dropdb' => 2, + 'msql_error' => 2, + 'msql_fetch_array' => 2, + 'msql_fetch_field' => 2, + 'msql_fetch_object' => 2, + 'msql_fetch_row' => 2, + 'msql_field_flags' => 2, + 'msql_field_len' => 2, + 'msql_field_name' => 2, + 'msql_field_seek' => 2, + 'msql_field_table' => 2, + 'msql_field_type' => 2, + 'msql_fieldflags' => 2, + 'msql_fieldlen' => 2, + 'msql_fieldname' => 2, + 'msql_fieldtable' => 2, + 'msql_fieldtype' => 2, + 'msql_free_result' => 2, + 'msql_freeresult' => 2, + 'msql_list_dbs' => 2, + 'msql_list_fields' => 2, + 'msql_list_tables' => 2, + 'msql_listdbs' => 2, + 'msql_listfields' => 2, + 'msql_listtables' => 2, + 'msql_num_fields' => 2, + 'msql_num_rows' => 2, + 'msql_numfields' => 2, + 'msql_numrows' => 2, + 'msql_pconnect' => 2, + 'msql_query' => 2, + 'msql_regcase' => 2, + 'msql_result' => 2, + 'msql_select_db' => 2, + 'msql_selectdb' => 2, + 'msql_tablename' => 2, + 'mssql_bind' => 2, + 'mssql_close' => 2, + 'mssql_connect' => 2, + 'mssql_data_seek' => 2, + 'mssql_execute' => 2, + 'mssql_fetch_array' => 2, + 'mssql_fetch_assoc' => 2, + 'mssql_fetch_batch' => 2, + 'mssql_fetch_field' => 2, + 'mssql_fetch_object' => 2, + 'mssql_fetch_row' => 2, + 'mssql_field_length' => 2, + 'mssql_field_name' => 2, + 'mssql_field_seek' => 2, + 'mssql_field_type' => 2, + 'mssql_free_result' => 2, + 'mssql_free_statement' => 2, + 'mssql_get_last_message' => 2, + 'mssql_guid_string' => 2, + 'mssql_init' => 2, + 'mssql_min_error_severity' => 2, + 'mssql_min_message_severity' => 2, + 'mssql_next_result' => 2, + 'mssql_num_fields' => 2, + 'mssql_num_rows' => 2, + 'mssql_pconnect' => 2, + 'mssql_query' => 2, + 'mssql_result' => 2, + 'mssql_rows_affected' => 2, + 'mssql_select_db' => 2, + 'mt_getrandmax' => 2, + 'mt_rand' => 2, + 'mt_srand' => 2, + 'mysql' => 2, + 'mysql_affected_rows' => 2, + 'mysql_change_user' => 2, + 'mysql_client_encoding' => 2, + 'mysql_close' => 2, + 'mysql_connect' => 2, + 'mysql_create_db' => 2, + 'mysql_createdb' => 2, + 'mysql_data_seek' => 2, + 'mysql_db_name' => 2, + 'mysql_db_query' => 2, + 'mysql_dbname' => 2, + 'mysql_drop_db' => 2, + 'mysql_dropdb' => 2, + 'mysql_errno' => 2, + 'mysql_error' => 2, + 'mysql_escape_string' => 2, + 'mysql_fetch_array' => 2, + 'mysql_fetch_assoc' => 2, + 'mysql_fetch_field' => 2, + 'mysql_fetch_lengths' => 2, + 'mysql_fetch_object' => 2, + 'mysql_fetch_row' => 2, + 'mysql_field_flags' => 2, + 'mysql_field_len' => 2, + 'mysql_field_name' => 2, + 'mysql_field_seek' => 2, + 'mysql_field_table' => 2, + 'mysql_field_type' => 2, + 'mysql_fieldflags' => 2, + 'mysql_fieldlen' => 2, + 'mysql_fieldname' => 2, + 'mysql_fieldtable' => 2, + 'mysql_fieldtype' => 2, + 'mysql_free_result' => 2, + 'mysql_freeresult' => 2, + 'mysql_get_client_info' => 2, + 'mysql_get_host_info' => 2, + 'mysql_get_proto_info' => 2, + 'mysql_get_server_info' => 2, + 'mysql_info' => 2, + 'mysql_insert_id' => 2, + 'mysql_list_dbs' => 2, + 'mysql_list_fields' => 2, + 'mysql_list_processes' => 2, + 'mysql_list_tables' => 2, + 'mysql_listdbs' => 2, + 'mysql_listfields' => 2, + 'mysql_listtables' => 2, + 'mysql_num_fields' => 2, + 'mysql_num_rows' => 2, + 'mysql_numfields' => 2, + 'mysql_numrows' => 2, + 'mysql_pconnect' => 2, + 'mysql_ping' => 2, + 'mysql_query' => 2, + 'mysql_real_escape_string' => 2, + 'mysql_result' => 2, + 'mysql_select_db' => 2, + 'mysql_selectdb' => 2, + 'mysql_set_charset' => 2, + 'mysql_stat' => 2, + 'mysql_table_name' => 2, + 'mysql_tablename' => 2, + 'mysql_thread_id' => 2, + 'mysql_unbuffered_query' => 2, + 'mysqli_affected_rows' => 2, + 'mysqli_autocommit' => 2, + 'mysqli_bind_param' => 2, + 'mysqli_bind_result' => 2, + 'mysqli_change_user' => 2, + 'mysqli_character_set_name' => 2, + 'mysqli_client_encoding' => 2, + 'mysqli_close' => 2, + 'mysqli_commit' => 2, + 'mysqli_connect' => 2, + 'mysqli_connect_errno' => 2, + 'mysqli_connect_error' => 2, + 'mysqli_data_seek' => 2, + 'mysqli_debug' => 2, + 'mysqli_disable_reads_from_master' => 2, + 'mysqli_disable_rpl_parse' => 2, + 'mysqli_dump_debug_info' => 2, + 'mysqli_embedded_server_end' => 2, + 'mysqli_embedded_server_start' => 2, + 'mysqli_enable_reads_from_master' => 2, + 'mysqli_enable_rpl_parse' => 2, + 'mysqli_errno' => 2, + 'mysqli_error' => 2, + 'mysqli_escape_string' => 2, + 'mysqli_execute' => 2, + 'mysqli_fetch' => 2, + 'mysqli_fetch_all' => 2, + 'mysqli_fetch_array' => 2, + 'mysqli_fetch_assoc' => 2, + 'mysqli_fetch_field' => 2, + 'mysqli_fetch_field_direct' => 2, + 'mysqli_fetch_fields' => 2, + 'mysqli_fetch_lengths' => 2, + 'mysqli_fetch_object' => 2, + 'mysqli_fetch_row' => 2, + 'mysqli_field_count' => 2, + 'mysqli_field_seek' => 2, + 'mysqli_field_tell' => 2, + 'mysqli_free_result' => 2, + 'mysqli_get_cache_stats' => 2, + 'mysqli_get_charset' => 2, + 'mysqli_get_client_info' => 2, + 'mysqli_get_client_stats' => 2, + 'mysqli_get_client_version' => 2, + 'mysqli_get_connection_stats' => 2, + 'mysqli_get_host_info' => 2, + 'mysqli_get_metadata' => 2, + 'mysqli_get_proto_info' => 2, + 'mysqli_get_server_info' => 2, + 'mysqli_get_server_version' => 2, + 'mysqli_get_warnings' => 2, + 'mysqli_info' => 2, + 'mysqli_init' => 2, + 'mysqli_insert_id' => 2, + 'mysqli_kill' => 2, + 'mysqli_master_query' => 2, + 'mysqli_more_results' => 2, + 'mysqli_multi_query' => 2, + 'mysqli_next_result' => 2, + 'mysqli_num_fields' => 2, + 'mysqli_num_rows' => 2, + 'mysqli_options' => 2, + 'mysqli_param_count' => 2, + 'mysqli_ping' => 2, + 'mysqli_poll' => 2, + 'mysqli_prepare' => 2, + 'mysqli_query' => 2, + 'mysqli_real_connect' => 2, + 'mysqli_real_escape_string' => 2, + 'mysqli_real_query' => 2, + 'mysqli_reap_async_query' => 2, + 'mysqli_refresh' => 2, + 'mysqli_report' => 2, + 'mysqli_rollback' => 2, + 'mysqli_rpl_parse_enabled' => 2, + 'mysqli_rpl_probe' => 2, + 'mysqli_rpl_query_type' => 2, + 'mysqli_select_db' => 2, + 'mysqli_send_long_data' => 2, + 'mysqli_send_query' => 2, + 'mysqli_set_charset' => 2, + 'mysqli_set_local_infile_default' => 2, + 'mysqli_set_local_infile_handler' => 2, + 'mysqli_set_opt' => 2, + 'mysqli_slave_query' => 2, + 'mysqli_sqlstate' => 2, + 'mysqli_ssl_set' => 2, + 'mysqli_stat' => 2, + 'mysqli_stmt_affected_rows' => 2, + 'mysqli_stmt_attr_get' => 2, + 'mysqli_stmt_attr_set' => 2, + 'mysqli_stmt_bind_param' => 2, + 'mysqli_stmt_bind_result' => 2, + 'mysqli_stmt_close' => 2, + 'mysqli_stmt_data_seek' => 2, + 'mysqli_stmt_errno' => 2, + 'mysqli_stmt_error' => 2, + 'mysqli_stmt_execute' => 2, + 'mysqli_stmt_fetch' => 2, + 'mysqli_stmt_field_count' => 2, + 'mysqli_stmt_free_result' => 2, + 'mysqli_stmt_get_result' => 2, + 'mysqli_stmt_get_warnings' => 2, + 'mysqli_stmt_init' => 2, + 'mysqli_stmt_insert_id' => 2, + 'mysqli_stmt_more_results' => 2, + 'mysqli_stmt_next_result' => 2, + 'mysqli_stmt_num_rows' => 2, + 'mysqli_stmt_param_count' => 2, + 'mysqli_stmt_prepare' => 2, + 'mysqli_stmt_reset' => 2, + 'mysqli_stmt_result_metadata' => 2, + 'mysqli_stmt_send_long_data' => 2, + 'mysqli_stmt_sqlstate' => 2, + 'mysqli_stmt_store_result' => 2, + 'mysqli_store_result' => 2, + 'mysqli_thread_id' => 2, + 'mysqli_thread_safe' => 2, + 'mysqli_use_result' => 2, + 'mysqli_warning_count' => 2, + 'natcasesort' => 2, + 'natsort' => 2, + 'new_xmldoc' => 2, + 'next' => 2, + 'ngettext' => 2, + 'nl2br' => 2, + 'nl_langinfo' => 2, + 'normalizer_is_normalized' => 2, + 'normalizer_normalize' => 2, + 'ntuser_getdomaincontroller' => 2, + 'ntuser_getusergroups' => 2, + 'ntuser_getuserinfo' => 2, + 'ntuser_getuserlist' => 2, + 'number_format' => 2, + 'numfmt_create' => 2, + 'numfmt_format' => 2, + 'numfmt_format_currency' => 2, + 'numfmt_get_attribute' => 2, + 'numfmt_get_error_code' => 2, + 'numfmt_get_error_message' => 2, + 'numfmt_get_locale' => 2, + 'numfmt_get_pattern' => 2, + 'numfmt_get_symbol' => 2, + 'numfmt_get_text_attribute' => 2, + 'numfmt_parse' => 2, + 'numfmt_parse_currency' => 2, + 'numfmt_set_attribute' => 2, + 'numfmt_set_pattern' => 2, + 'numfmt_set_symbol' => 2, + 'numfmt_set_text_attribute' => 2, + 'ob_clean' => 2, + 'ob_deflatehandler' => 2, + 'ob_end_clean' => 2, + 'ob_end_flush' => 2, + 'ob_etaghandler' => 2, + 'ob_flush' => 2, + 'ob_get_clean' => 2, + 'ob_get_contents' => 2, + 'ob_get_flush' => 2, + 'ob_get_length' => 2, + 'ob_get_level' => 2, + 'ob_get_status' => 2, + 'ob_gzhandler' => 2, + 'ob_iconv_handler' => 2, + 'ob_implicit_flush' => 2, + 'ob_inflatehandler' => 2, + 'ob_list_handlers' => 2, + 'ob_start' => 2, + 'ob_tidyhandler' => 2, + 'ocibindbyname' => 2, + 'ocicolumnisnull' => 2, + 'ocicolumnname' => 2, + 'ocicolumnsize' => 2, + 'ocicolumntype' => 2, + 'ocicommit' => 2, + 'ocidefinebyname' => 2, + 'ocierror' => 2, + 'ociexecute' => 2, + 'ocifetch' => 2, + 'ocifetchinto' => 2, + 'ocifetchstatement' => 2, + 'ocifreecursor' => 2, + 'ocifreestatement' => 2, + 'ociinternaldebug' => 2, + 'ocilogoff' => 2, + 'ocilogon' => 2, + 'ocinewcursor' => 2, + 'ocinewdescriptor' => 2, + 'ocinlogon' => 2, + 'ocinumcols' => 2, + 'ociparse' => 2, + 'ociplogon' => 2, + 'ociresult' => 2, + 'ocirollback' => 2, + 'ocirowcount' => 2, + 'ociserverversion' => 2, + 'ocistatementtype' => 2, + 'octdec' => 2, + 'odbc_autocommit' => 2, + 'odbc_binmode' => 2, + 'odbc_close' => 2, + 'odbc_close_all' => 2, + 'odbc_columnprivileges' => 2, + 'odbc_columns' => 2, + 'odbc_commit' => 2, + 'odbc_connect' => 2, + 'odbc_cursor' => 2, + 'odbc_data_source' => 2, + 'odbc_do' => 2, + 'odbc_error' => 2, + 'odbc_errormsg' => 2, + 'odbc_exec' => 2, + 'odbc_execute' => 2, + 'odbc_fetch_array' => 2, + 'odbc_fetch_into' => 2, + 'odbc_fetch_object' => 2, + 'odbc_fetch_row' => 2, + 'odbc_field_len' => 2, + 'odbc_field_name' => 2, + 'odbc_field_num' => 2, + 'odbc_field_precision' => 2, + 'odbc_field_scale' => 2, + 'odbc_field_type' => 2, + 'odbc_foreignkeys' => 2, + 'odbc_free_result' => 2, + 'odbc_gettypeinfo' => 2, + 'odbc_longreadlen' => 2, + 'odbc_next_result' => 2, + 'odbc_num_fields' => 2, + 'odbc_num_rows' => 2, + 'odbc_pconnect' => 2, + 'odbc_prepare' => 2, + 'odbc_primarykeys' => 2, + 'odbc_procedurecolumns' => 2, + 'odbc_procedures' => 2, + 'odbc_result' => 2, + 'odbc_result_all' => 2, + 'odbc_rollback' => 2, + 'odbc_setoption' => 2, + 'odbc_specialcolumns' => 2, + 'odbc_statistics' => 2, + 'odbc_tableprivileges' => 2, + 'odbc_tables' => 2, + 'opendir' => 2, + 'openlog' => 2, + 'openssl_cipher_iv_length' => 2, + 'openssl_csr_export' => 2, + 'openssl_csr_export_to_file' => 2, + 'openssl_csr_get_public_key' => 2, + 'openssl_csr_get_subject' => 2, + 'openssl_csr_new' => 2, + 'openssl_csr_sign' => 2, + 'openssl_decrypt' => 2, + 'openssl_dh_compute_key' => 2, + 'openssl_digest' => 2, + 'openssl_encrypt' => 2, + 'openssl_error_string' => 2, + 'openssl_free_key' => 2, + 'openssl_get_cipher_methods' => 2, + 'openssl_get_md_methods' => 2, + 'openssl_get_privatekey' => 2, + 'openssl_get_publickey' => 2, + 'openssl_open' => 2, + 'openssl_pkcs12_export' => 2, + 'openssl_pkcs12_export_to_file' => 2, + 'openssl_pkcs12_read' => 2, + 'openssl_pkcs7_decrypt' => 2, + 'openssl_pkcs7_encrypt' => 2, + 'openssl_pkcs7_sign' => 2, + 'openssl_pkcs7_verify' => 2, + 'openssl_pkey_export' => 2, + 'openssl_pkey_export_to_file' => 2, + 'openssl_pkey_free' => 2, + 'openssl_pkey_get_details' => 2, + 'openssl_pkey_get_private' => 2, + 'openssl_pkey_get_public' => 2, + 'openssl_pkey_new' => 2, + 'openssl_private_decrypt' => 2, + 'openssl_private_encrypt' => 2, + 'openssl_public_decrypt' => 2, + 'openssl_public_encrypt' => 2, + 'openssl_random_pseudo_bytes' => 2, + 'openssl_seal' => 2, + 'openssl_sign' => 2, + 'openssl_verify' => 2, + 'openssl_x509_check_private_key' => 2, + 'openssl_x509_checkpurpose' => 2, + 'openssl_x509_export' => 2, + 'openssl_x509_export_to_file' => 2, + 'openssl_x509_free' => 2, + 'openssl_x509_parse' => 2, + 'openssl_x509_read' => 2, + 'ora_bind' => 2, + 'ora_close' => 2, + 'ora_columnname' => 2, + 'ora_columntype' => 2, + 'ora_commit' => 2, + 'ora_commitoff' => 2, + 'ora_commiton' => 2, + 'ora_error' => 2, + 'ora_errorcode' => 2, + 'ora_exec' => 2, + 'ora_fetch' => 2, + 'ora_getcolumn' => 2, + 'ora_logoff' => 2, + 'ora_logon' => 2, + 'ora_open' => 2, + 'ora_parse' => 2, + 'ora_rollback' => 2, + 'ord' => 2, + 'output_add_rewrite_var' => 2, + 'output_reset_rewrite_vars' => 2, + 'outputdebugstring' => 2, + 'overload' => 2, + 'pack' => 2, + 'parse_ini_file' => 2, + 'parse_ini_string' => 2, + 'parse_str' => 2, + 'parse_url' => 2, + 'parsekit_compile_file' => 2, + 'parsekit_compile_string' => 2, + 'parsekit_func_arginfo' => 2, + 'parsekit_opcode_flags' => 2, + 'parsekit_opcode_name' => 2, + 'passthru' => 2, + 'pathinfo' => 2, + 'pattern' => 2, + 'pclose' => 2, + 'pdf_add_annotation' => 2, + 'pdf_add_bookmark' => 2, + 'pdf_add_launchlink' => 2, + 'pdf_add_locallink' => 2, + 'pdf_add_nameddest' => 2, + 'pdf_add_note' => 2, + 'pdf_add_outline' => 2, + 'pdf_add_pdflink' => 2, + 'pdf_add_thumbnail' => 2, + 'pdf_add_weblink' => 2, + 'pdf_arc' => 2, + 'pdf_arcn' => 2, + 'pdf_attach_file' => 2, + 'pdf_begin_font' => 2, + 'pdf_begin_glyph' => 2, + 'pdf_begin_page' => 2, + 'pdf_begin_pattern' => 2, + 'pdf_begin_template' => 2, + 'pdf_circle' => 2, + 'pdf_clip' => 2, + 'pdf_close' => 2, + 'pdf_close_image' => 2, + 'pdf_close_pdi' => 2, + 'pdf_close_pdi_page' => 2, + 'pdf_closepath' => 2, + 'pdf_closepath_fill_stroke' => 2, + 'pdf_closepath_stroke' => 2, + 'pdf_concat' => 2, + 'pdf_continue_text' => 2, + 'pdf_create_gstate' => 2, + 'pdf_create_pvf' => 2, + 'pdf_curveto' => 2, + 'pdf_delete' => 2, + 'pdf_delete_pvf' => 2, + 'pdf_encoding_set_char' => 2, + 'pdf_end_font' => 2, + 'pdf_end_glyph' => 2, + 'pdf_end_page' => 2, + 'pdf_end_pattern' => 2, + 'pdf_end_template' => 2, + 'pdf_endpath' => 2, + 'pdf_execute_image' => 2, + 'pdf_fill' => 2, + 'pdf_fill_imageblock' => 2, + 'pdf_fill_pdfblock' => 2, + 'pdf_fill_stroke' => 2, + 'pdf_fill_textblock' => 2, + 'pdf_findfont' => 2, + 'pdf_fit_image' => 2, + 'pdf_fit_pdi_page' => 2, + 'pdf_fit_textline' => 2, + 'pdf_get_apiname' => 2, + 'pdf_get_buffer' => 2, + 'pdf_get_errmsg' => 2, + 'pdf_get_errnum' => 2, + 'pdf_get_info' => 2, + 'pdf_get_parameter' => 2, + 'pdf_get_pdi_parameter' => 2, + 'pdf_get_pdi_value' => 2, + 'pdf_get_value' => 2, + 'pdf_initgraphics' => 2, + 'pdf_lineto' => 2, + 'pdf_load_font' => 2, + 'pdf_load_iccprofile' => 2, + 'pdf_load_image' => 2, + 'pdf_makespotcolor' => 2, + 'pdf_moveto' => 2, + 'pdf_new' => 2, + 'pdf_open' => 2, + 'pdf_open_ccitt' => 2, + 'pdf_open_file' => 2, + 'pdf_open_gif' => 2, + 'pdf_open_image' => 2, + 'pdf_open_image_file' => 2, + 'pdf_open_jpeg' => 2, + 'pdf_open_memory_image' => 2, + 'pdf_open_pdi' => 2, + 'pdf_open_pdi_page' => 2, + 'pdf_place_image' => 2, + 'pdf_place_pdi_page' => 2, + 'pdf_process_pdi' => 2, + 'pdf_put_image' => 2, + 'pdf_rect' => 2, + 'pdf_restore' => 2, + 'pdf_rotate' => 2, + 'pdf_save' => 2, + 'pdf_scale' => 2, + 'pdf_set_border_color' => 2, + 'pdf_set_border_dash' => 2, + 'pdf_set_border_style' => 2, + 'pdf_set_char_spacing' => 2, + 'pdf_set_duration' => 2, + 'pdf_set_font' => 2, + 'pdf_set_gstate' => 2, + 'pdf_set_horiz_scaling' => 2, + 'pdf_set_info' => 2, + 'pdf_set_info_author' => 2, + 'pdf_set_info_creator' => 2, + 'pdf_set_info_keywords' => 2, + 'pdf_set_info_subject' => 2, + 'pdf_set_info_title' => 2, + 'pdf_set_leading' => 2, + 'pdf_set_parameter' => 2, + 'pdf_set_text_matrix' => 2, + 'pdf_set_text_pos' => 2, + 'pdf_set_text_rendering' => 2, + 'pdf_set_text_rise' => 2, + 'pdf_set_transition' => 2, + 'pdf_set_value' => 2, + 'pdf_set_word_spacing' => 2, + 'pdf_setcolor' => 2, + 'pdf_setdash' => 2, + 'pdf_setdashpattern' => 2, + 'pdf_setflat' => 2, + 'pdf_setfont' => 2, + 'pdf_setgray' => 2, + 'pdf_setgray_fill' => 2, + 'pdf_setgray_stroke' => 2, + 'pdf_setlinecap' => 2, + 'pdf_setlinejoin' => 2, + 'pdf_setlinewidth' => 2, + 'pdf_setmatrix' => 2, + 'pdf_setmiterlimit' => 2, + 'pdf_setpolydash' => 2, + 'pdf_setrgbcolor' => 2, + 'pdf_setrgbcolor_fill' => 2, + 'pdf_setrgbcolor_stroke' => 2, + 'pdf_shading' => 2, + 'pdf_shading_pattern' => 2, + 'pdf_shfill' => 2, + 'pdf_show' => 2, + 'pdf_show_boxed' => 2, + 'pdf_show_xy' => 2, + 'pdf_skew' => 2, + 'pdf_stringwidth' => 2, + 'pdf_stroke' => 2, + 'pdf_translate' => 2, + 'pdo_drivers' => 2, + 'pfsockopen' => 2, + 'pg_affected_rows' => 2, + 'pg_cancel_query' => 2, + 'pg_client_encoding' => 2, + 'pg_clientencoding' => 2, + 'pg_close' => 2, + 'pg_cmdtuples' => 2, + 'pg_connect' => 2, + 'pg_connection_busy' => 2, + 'pg_connection_reset' => 2, + 'pg_connection_status' => 2, + 'pg_convert' => 2, + 'pg_copy_from' => 2, + 'pg_copy_to' => 2, + 'pg_dbname' => 2, + 'pg_delete' => 2, + 'pg_end_copy' => 2, + 'pg_errormessage' => 2, + 'pg_escape_bytea' => 2, + 'pg_escape_string' => 2, + 'pg_exec' => 2, + 'pg_execute' => 2, + 'pg_fetch_all' => 2, + 'pg_fetch_all_columns' => 2, + 'pg_fetch_array' => 2, + 'pg_fetch_assoc' => 2, + 'pg_fetch_object' => 2, + 'pg_fetch_result' => 2, + 'pg_fetch_row' => 2, + 'pg_field_is_null' => 2, + 'pg_field_name' => 2, + 'pg_field_num' => 2, + 'pg_field_prtlen' => 2, + 'pg_field_size' => 2, + 'pg_field_table' => 2, + 'pg_field_type' => 2, + 'pg_field_type_oid' => 2, + 'pg_fieldisnull' => 2, + 'pg_fieldname' => 2, + 'pg_fieldnum' => 2, + 'pg_fieldprtlen' => 2, + 'pg_fieldsize' => 2, + 'pg_fieldtype' => 2, + 'pg_free_result' => 2, + 'pg_freeresult' => 2, + 'pg_get_notify' => 2, + 'pg_get_pid' => 2, + 'pg_get_result' => 2, + 'pg_getlastoid' => 2, + 'pg_host' => 2, + 'pg_insert' => 2, + 'pg_last_error' => 2, + 'pg_last_notice' => 2, + 'pg_last_oid' => 2, + 'pg_lo_close' => 2, + 'pg_lo_create' => 2, + 'pg_lo_export' => 2, + 'pg_lo_import' => 2, + 'pg_lo_open' => 2, + 'pg_lo_read' => 2, + 'pg_lo_read_all' => 2, + 'pg_lo_seek' => 2, + 'pg_lo_tell' => 2, + 'pg_lo_unlink' => 2, + 'pg_lo_write' => 2, + 'pg_loclose' => 2, + 'pg_locreate' => 2, + 'pg_loexport' => 2, + 'pg_loimport' => 2, + 'pg_loopen' => 2, + 'pg_loread' => 2, + 'pg_loreadall' => 2, + 'pg_lounlink' => 2, + 'pg_lowrite' => 2, + 'pg_meta_data' => 2, + 'pg_num_fields' => 2, + 'pg_num_rows' => 2, + 'pg_numfields' => 2, + 'pg_numrows' => 2, + 'pg_options' => 2, + 'pg_parameter_status' => 2, + 'pg_pconnect' => 2, + 'pg_ping' => 2, + 'pg_port' => 2, + 'pg_prepare' => 2, + 'pg_put_line' => 2, + 'pg_query' => 2, + 'pg_query_params' => 2, + 'pg_result' => 2, + 'pg_result_error' => 2, + 'pg_result_error_field' => 2, + 'pg_result_seek' => 2, + 'pg_result_status' => 2, + 'pg_select' => 2, + 'pg_send_execute' => 2, + 'pg_send_prepare' => 2, + 'pg_send_query' => 2, + 'pg_send_query_params' => 2, + 'pg_set_client_encoding' => 2, + 'pg_set_error_verbosity' => 2, + 'pg_setclientencoding' => 2, + 'pg_trace' => 2, + 'pg_transaction_status' => 2, + 'pg_tty' => 2, + 'pg_unescape_bytea' => 2, + 'pg_untrace' => 2, + 'pg_update' => 2, + 'pg_version' => 2, + 'php_egg_logo_guid' => 2, + 'php_ini_loaded_file' => 2, + 'php_ini_scanned_files' => 2, + 'php_logo_guid' => 2, + 'php_real_logo_guid' => 2, + 'php_sapi_name' => 2, + 'php_strip_whitespace' => 2, + 'php_uname' => 2, + 'phpcredits' => 2, + 'phpdoc_xml_from_string' => 2, + 'phpinfo' => 2, + 'phpversion' => 2, + 'pi' => 2, + 'png2wbmp' => 2, + 'pop3_close' => 2, + 'pop3_delete_message' => 2, + 'pop3_get_account_size' => 2, + 'pop3_get_message' => 2, + 'pop3_get_message_count' => 2, + 'pop3_get_message_header' => 2, + 'pop3_get_message_ids' => 2, + 'pop3_get_message_size' => 2, + 'pop3_get_message_sizes' => 2, + 'pop3_open' => 2, + 'pop3_undelete' => 2, + 'popen' => 2, + 'pos' => 2, + 'posix_ctermid' => 2, + 'posix_errno' => 2, + 'posix_get_last_error' => 2, + 'posix_getcwd' => 2, + 'posix_getegid' => 2, + 'posix_geteuid' => 2, + 'posix_getgid' => 2, + 'posix_getgrgid' => 2, + 'posix_getgrnam' => 2, + 'posix_getgroups' => 2, + 'posix_getlogin' => 2, + 'posix_getpgid' => 2, + 'posix_getpgrp' => 2, + 'posix_getpid' => 2, + 'posix_getppid' => 2, + 'posix_getpwnam' => 2, + 'posix_getpwuid' => 2, + 'posix_getrlimit' => 2, + 'posix_getsid' => 2, + 'posix_getuid' => 2, + 'posix_isatty' => 2, + 'posix_kill' => 2, + 'posix_mkfifo' => 2, + 'posix_setegid' => 2, + 'posix_seteuid' => 2, + 'posix_setgid' => 2, + 'posix_setpgid' => 2, + 'posix_setsid' => 2, + 'posix_setuid' => 2, + 'posix_strerror' => 2, + 'posix_times' => 2, + 'posix_ttyname' => 2, + 'posix_uname' => 2, + 'pow' => 2, + 'preg_filter' => 2, + 'preg_grep' => 2, + 'preg_last_error' => 2, + 'preg_match' => 2, + 'preg_match_all' => 2, + 'preg_quote' => 2, + 'preg_replace' => 2, + 'preg_replace_callback' => 2, + 'preg_split' => 2, + 'prev' => 2, + 'print_r' => 2, + 'printf' => 2, + 'proc_close' => 2, + 'proc_get_status' => 2, + 'proc_open' => 2, + 'proc_terminate' => 2, + 'property_exists' => 2, + 'putenv' => 2, + 'quoted_printable_decode' => 2, + 'quoted_printable_encode' => 2, + 'quotemeta' => 2, + 'rad2deg' => 2, + 'radius_acct_open' => 2, + 'radius_add_server' => 2, + 'radius_auth_open' => 2, + 'radius_close' => 2, + 'radius_config' => 2, + 'radius_create_request' => 2, + 'radius_cvt_addr' => 2, + 'radius_cvt_int' => 2, + 'radius_cvt_string' => 2, + 'radius_demangle' => 2, + 'radius_demangle_mppe_key' => 2, + 'radius_get_attr' => 2, + 'radius_get_vendor_attr' => 2, + 'radius_put_addr' => 2, + 'radius_put_attr' => 2, + 'radius_put_int' => 2, + 'radius_put_string' => 2, + 'radius_put_vendor_addr' => 2, + 'radius_put_vendor_attr' => 2, + 'radius_put_vendor_int' => 2, + 'radius_put_vendor_string' => 2, + 'radius_request_authenticator' => 2, + 'radius_send_request' => 2, + 'radius_server_secret' => 2, + 'radius_strerror' => 2, + 'rand' => 2, + 'range' => 2, + 'rawurldecode' => 2, + 'rawurlencode' => 2, + 'read_exif_data' => 2, + 'readdir' => 2, + 'readfile' => 2, + 'readgzfile' => 2, + 'readlink' => 2, + 'realpath' => 2, + 'realpath_cache_get' => 2, + 'realpath_cache_size' => 2, + 'recode_file' => 2, + 'recode_string' => 2, + 'reg_close_key' => 2, + 'reg_create_key' => 2, + 'reg_enum_key' => 2, + 'reg_enum_value' => 2, + 'reg_get_value' => 2, + 'reg_open_key' => 2, + 'reg_set_value' => 2, + 'register_shutdown_function' => 2, + 'register_tick_function' => 2, + 'rename' => 2, + 'res_close' => 2, + 'res_get' => 2, + 'res_list' => 2, + 'res_list_type' => 2, + 'res_open' => 2, + 'res_set' => 2, + 'reset' => 2, + 'resourcebundle_count' => 2, + 'resourcebundle_create' => 2, + 'resourcebundle_get' => 2, + 'resourcebundle_get_error_code' => 2, + 'resourcebundle_get_error_message' => 2, + 'resourcebundle_locales' => 2, + 'restore_error_handler' => 2, + 'restore_exception_handler' => 2, + 'restore_include_path' => 2, + 'rewind' => 2, + 'rewinddir' => 2, + 'rmdir' => 2, + 'round' => 2, + 'rsort' => 2, + 'rtrim' => 2, + 'runkit_class_adopt' => 2, + 'runkit_class_emancipate' => 2, + 'runkit_constant_add' => 2, + 'runkit_constant_redefine' => 2, + 'runkit_constant_remove' => 2, + 'runkit_default_property_add' => 2, + 'runkit_function_add' => 2, + 'runkit_function_copy' => 2, + 'runkit_function_redefine' => 2, + 'runkit_function_remove' => 2, + 'runkit_function_rename' => 2, + 'runkit_import' => 2, + 'runkit_lint' => 2, + 'runkit_lint_file' => 2, + 'runkit_method_add' => 2, + 'runkit_method_copy' => 2, + 'runkit_method_redefine' => 2, + 'runkit_method_remove' => 2, + 'runkit_method_rename' => 2, + 'runkit_object_id' => 2, + 'runkit_return_value_used' => 2, + 'runkit_sandbox_output_handler' => 2, + 'runkit_superglobals' => 2, + 'runkit_zval_inspect' => 2, + 'scandir' => 2, + 'sem_acquire' => 2, + 'sem_get' => 2, + 'sem_release' => 2, + 'sem_remove' => 2, + 'serialize' => 2, + 'session_cache_expire' => 2, + 'session_cache_limiter' => 2, + 'session_commit' => 2, + 'session_decode' => 2, + 'session_destroy' => 2, + 'session_encode' => 2, + 'session_get_cookie_params' => 2, + 'session_id' => 2, + 'session_is_registered' => 2, + 'session_module_name' => 2, + 'session_name' => 2, + 'session_regenerate_id' => 2, + 'session_register' => 2, + 'session_save_path' => 2, + 'session_set_cookie_params' => 2, + 'session_set_save_handler' => 2, + 'session_start' => 2, + 'session_unregister' => 2, + 'session_unset' => 2, + 'session_write_close' => 2, + 'set_content' => 2, + 'set_error_handler' => 2, + 'set_exception_handler' => 2, + 'set_file_buffer' => 2, + 'set_include_path' => 2, + 'set_magic_quotes_runtime' => 2, + 'set_socket_blocking' => 2, + 'set_time_limit' => 2, + 'setcookie' => 2, + 'setlocale' => 2, + 'setrawcookie' => 2, + 'settype' => 2, + 'sha1' => 2, + 'sha1_file' => 2, + 'shell_exec' => 2, + 'shm_attach' => 2, + 'shm_detach' => 2, + 'shm_get_var' => 2, + 'shm_put_var' => 2, + 'shm_remove' => 2, + 'shm_remove_var' => 2, + 'shmop_close' => 2, + 'shmop_delete' => 2, + 'shmop_open' => 2, + 'shmop_read' => 2, + 'shmop_size' => 2, + 'shmop_write' => 2, + 'show_source' => 2, + 'shuffle' => 2, + 'similar_text' => 2, + 'simplexml_import_dom' => 2, + 'simplexml_load_file' => 2, + 'simplexml_load_string' => 2, + 'sin' => 2, + 'sinh' => 2, + 'sizeof' => 2, + 'sleep' => 2, + 'smtp_close' => 2, + 'smtp_cmd_data' => 2, + 'smtp_cmd_mail' => 2, + 'smtp_cmd_rcpt' => 2, + 'smtp_connect' => 2, + 'snmp2_get' => 2, + 'snmp2_getnext' => 2, + 'snmp2_real_walk' => 2, + 'snmp2_set' => 2, + 'snmp2_walk' => 2, + 'snmp3_get' => 2, + 'snmp3_getnext' => 2, + 'snmp3_real_walk' => 2, + 'snmp3_set' => 2, + 'snmp3_walk' => 2, + 'snmp_get_quick_print' => 2, + 'snmp_get_valueretrieval' => 2, + 'snmp_read_mib' => 2, + 'snmp_set_quick_print' => 2, + 'snmp_set_valueretrieval' => 2, + 'snmpget' => 2, + 'snmpgetnext' => 2, + 'snmprealwalk' => 2, + 'snmpset' => 2, + 'snmpwalk' => 2, + 'snmpwalkoid' => 2, + 'socket_accept' => 2, + 'socket_bind' => 2, + 'socket_clear_error' => 2, + 'socket_close' => 2, + 'socket_connect' => 2, + 'socket_create' => 2, + 'socket_create_listen' => 2, + 'socket_create_pair' => 2, + 'socket_get_option' => 2, + 'socket_get_status' => 2, + 'socket_getopt' => 2, + 'socket_getpeername' => 2, + 'socket_getsockname' => 2, + 'socket_iovec_add' => 2, + 'socket_iovec_alloc' => 2, + 'socket_iovec_delete' => 2, + 'socket_iovec_fetch' => 2, + 'socket_iovec_free' => 2, + 'socket_iovec_set' => 2, + 'socket_last_error' => 2, + 'socket_listen' => 2, + 'socket_read' => 2, + 'socket_readv' => 2, + 'socket_recv' => 2, + 'socket_recvfrom' => 2, + 'socket_recvmsg' => 2, + 'socket_select' => 2, + 'socket_send' => 2, + 'socket_sendmsg' => 2, + 'socket_sendto' => 2, + 'socket_set_block' => 2, + 'socket_set_blocking' => 2, + 'socket_set_nonblock' => 2, + 'socket_set_option' => 2, + 'socket_set_timeout' => 2, + 'socket_setopt' => 2, + 'socket_shutdown' => 2, + 'socket_strerror' => 2, + 'socket_write' => 2, + 'socket_writev' => 2, + 'solid_close' => 2, + 'solid_connect' => 2, + 'solid_exec' => 2, + 'solid_fetchrow' => 2, + 'solid_fieldname' => 2, + 'solid_fieldnum' => 2, + 'solid_freeresult' => 2, + 'solid_numfields' => 2, + 'solid_numrows' => 2, + 'solid_result' => 2, + 'sort' => 2, + 'soundex' => 2, + 'spl_autoload' => 2, + 'spl_autoload_call' => 2, + 'spl_autoload_extensions' => 2, + 'spl_autoload_functions' => 2, + 'spl_autoload_register' => 2, + 'spl_autoload_unregister' => 2, + 'spl_classes' => 2, + 'spl_object_hash' => 2, + 'split' => 2, + 'spliti' => 2, + 'sprintf' => 2, + 'sql_regcase' => 2, + 'sqlite_array_query' => 2, + 'sqlite_busy_timeout' => 2, + 'sqlite_changes' => 2, + 'sqlite_close' => 2, + 'sqlite_column' => 2, + 'sqlite_create_aggregate' => 2, + 'sqlite_create_function' => 2, + 'sqlite_current' => 2, + 'sqlite_error_string' => 2, + 'sqlite_escape_string' => 2, + 'sqlite_exec' => 2, + 'sqlite_factory' => 2, + 'sqlite_fetch_all' => 2, + 'sqlite_fetch_array' => 2, + 'sqlite_fetch_column_types' => 2, + 'sqlite_fetch_object' => 2, + 'sqlite_fetch_single' => 2, + 'sqlite_fetch_string' => 2, + 'sqlite_field_name' => 2, + 'sqlite_has_more' => 2, + 'sqlite_has_prev' => 2, + 'sqlite_last_error' => 2, + 'sqlite_last_insert_rowid' => 2, + 'sqlite_libencoding' => 2, + 'sqlite_libversion' => 2, + 'sqlite_next' => 2, + 'sqlite_num_fields' => 2, + 'sqlite_num_rows' => 2, + 'sqlite_open' => 2, + 'sqlite_popen' => 2, + 'sqlite_prev' => 2, + 'sqlite_query' => 2, + 'sqlite_rewind' => 2, + 'sqlite_seek' => 2, + 'sqlite_single_query' => 2, + 'sqlite_udf_decode_binary' => 2, + 'sqlite_udf_encode_binary' => 2, + 'sqlite_unbuffered_query' => 2, + 'sqlite_valid' => 2, + 'sqrt' => 2, + 'srand' => 2, + 'sscanf' => 2, + 'ssh2_auth_hostbased_file' => 2, + 'ssh2_auth_none' => 2, + 'ssh2_auth_password' => 2, + 'ssh2_auth_pubkey_file' => 2, + 'ssh2_connect' => 2, + 'ssh2_exec' => 2, + 'ssh2_fetch_stream' => 2, + 'ssh2_fingerprint' => 2, + 'ssh2_forward_accept' => 2, + 'ssh2_forward_listen' => 2, + 'ssh2_methods_negotiated' => 2, + 'ssh2_poll' => 2, + 'ssh2_publickey_add' => 2, + 'ssh2_publickey_init' => 2, + 'ssh2_publickey_list' => 2, + 'ssh2_publickey_remove' => 2, + 'ssh2_scp_recv' => 2, + 'ssh2_scp_send' => 2, + 'ssh2_sftp' => 2, + 'ssh2_sftp_lstat' => 2, + 'ssh2_sftp_mkdir' => 2, + 'ssh2_sftp_readlink' => 2, + 'ssh2_sftp_realpath' => 2, + 'ssh2_sftp_rename' => 2, + 'ssh2_sftp_rmdir' => 2, + 'ssh2_sftp_stat' => 2, + 'ssh2_sftp_symlink' => 2, + 'ssh2_sftp_unlink' => 2, + 'ssh2_shell' => 2, + 'ssh2_tunnel' => 2, + 'stat' => 2, + 'stats_absolute_deviation' => 2, + 'stats_cdf_beta' => 2, + 'stats_cdf_binomial' => 2, + 'stats_cdf_cauchy' => 2, + 'stats_cdf_chisquare' => 2, + 'stats_cdf_exponential' => 2, + 'stats_cdf_f' => 2, + 'stats_cdf_gamma' => 2, + 'stats_cdf_laplace' => 2, + 'stats_cdf_logistic' => 2, + 'stats_cdf_negative_binomial' => 2, + 'stats_cdf_noncentral_chisquare' => 2, + 'stats_cdf_noncentral_f' => 2, + 'stats_cdf_noncentral_t' => 2, + 'stats_cdf_normal' => 2, + 'stats_cdf_poisson' => 2, + 'stats_cdf_t' => 2, + 'stats_cdf_uniform' => 2, + 'stats_cdf_weibull' => 2, + 'stats_covariance' => 2, + 'stats_dens_beta' => 2, + 'stats_dens_cauchy' => 2, + 'stats_dens_chisquare' => 2, + 'stats_dens_exponential' => 2, + 'stats_dens_f' => 2, + 'stats_dens_gamma' => 2, + 'stats_dens_laplace' => 2, + 'stats_dens_logistic' => 2, + 'stats_dens_normal' => 2, + 'stats_dens_pmf_binomial' => 2, + 'stats_dens_pmf_hypergeometric' => 2, + 'stats_dens_pmf_negative_binomial' => 2, + 'stats_dens_pmf_poisson' => 2, + 'stats_dens_t' => 2, + 'stats_dens_uniform' => 2, + 'stats_dens_weibull' => 2, + 'stats_harmonic_mean' => 2, + 'stats_kurtosis' => 2, + 'stats_rand_gen_beta' => 2, + 'stats_rand_gen_chisquare' => 2, + 'stats_rand_gen_exponential' => 2, + 'stats_rand_gen_f' => 2, + 'stats_rand_gen_funiform' => 2, + 'stats_rand_gen_gamma' => 2, + 'stats_rand_gen_ipoisson' => 2, + 'stats_rand_gen_iuniform' => 2, + 'stats_rand_gen_noncenral_f' => 2, + 'stats_rand_gen_noncentral_chisquare' => 2, + 'stats_rand_gen_noncentral_t' => 2, + 'stats_rand_gen_normal' => 2, + 'stats_rand_gen_t' => 2, + 'stats_rand_getsd' => 2, + 'stats_rand_ibinomial' => 2, + 'stats_rand_ibinomial_negative' => 2, + 'stats_rand_ignlgi' => 2, + 'stats_rand_phrase_to_seeds' => 2, + 'stats_rand_ranf' => 2, + 'stats_rand_setall' => 2, + 'stats_skew' => 2, + 'stats_standard_deviation' => 2, + 'stats_stat_binomial_coef' => 2, + 'stats_stat_correlation' => 2, + 'stats_stat_factorial' => 2, + 'stats_stat_independent_t' => 2, + 'stats_stat_innerproduct' => 2, + 'stats_stat_paired_t' => 2, + 'stats_stat_percentile' => 2, + 'stats_stat_powersum' => 2, + 'stats_variance' => 2, + 'str_getcsv' => 2, + 'str_ireplace' => 2, + 'str_pad' => 2, + 'str_repeat' => 2, + 'str_replace' => 2, + 'str_rot13' => 2, + 'str_shuffle' => 2, + 'str_split' => 2, + 'str_word_count' => 2, + 'strcasecmp' => 2, + 'strchr' => 2, + 'strcmp' => 2, + 'strcoll' => 2, + 'strcspn' => 2, + 'stream_bucket_append' => 2, + 'stream_bucket_make_writeable' => 2, + 'stream_bucket_new' => 2, + 'stream_bucket_prepend' => 2, + 'stream_context_create' => 2, + 'stream_context_get_default' => 2, + 'stream_context_get_options' => 2, + 'stream_context_get_params' => 2, + 'stream_context_set_default' => 2, + 'stream_context_set_option' => 2, + 'stream_context_set_params' => 2, + 'stream_copy_to_stream' => 2, + 'stream_encoding' => 2, + 'stream_filter_append' => 2, + 'stream_filter_prepend' => 2, + 'stream_filter_register' => 2, + 'stream_filter_remove' => 2, + 'stream_get_contents' => 2, + 'stream_get_filters' => 2, + 'stream_get_line' => 2, + 'stream_get_meta_data' => 2, + 'stream_get_transports' => 2, + 'stream_get_wrappers' => 2, + 'stream_is_local' => 2, + 'stream_notification_callback' => 2, + 'stream_register_wrapper' => 2, + 'stream_resolve_include_path' => 2, + 'stream_select' => 2, + 'stream_set_blocking' => 2, + 'stream_set_chunk_size' => 2, + 'stream_set_read_buffer' => 2, + 'stream_set_timeout' => 2, + 'stream_set_write_buffer' => 2, + 'stream_socket_accept' => 2, + 'stream_socket_client' => 2, + 'stream_socket_enable_crypto' => 2, + 'stream_socket_get_name' => 2, + 'stream_socket_pair' => 2, + 'stream_socket_recvfrom' => 2, + 'stream_socket_sendto' => 2, + 'stream_socket_server' => 2, + 'stream_socket_shutdown' => 2, + 'stream_supports_lock' => 2, + 'stream_wrapper_register' => 2, + 'stream_wrapper_restore' => 2, + 'stream_wrapper_unregister' => 2, + 'strftime' => 2, + 'strip_tags' => 2, + 'stripcslashes' => 2, + 'stripos' => 2, + 'stripslashes' => 2, + 'stristr' => 2, + 'strlen' => 2, + 'strnatcasecmp' => 2, + 'strnatcmp' => 2, + 'strncasecmp' => 2, + 'strncmp' => 2, + 'strpbrk' => 2, + 'strpos' => 2, + 'strrchr' => 2, + 'strrev' => 2, + 'strripos' => 2, + 'strrpos' => 2, + 'strspn' => 2, + 'strstr' => 2, + 'strtok' => 2, + 'strtolower' => 2, + 'strtotime' => 2, + 'strtoupper' => 2, + 'strtr' => 2, + 'strval' => 2, + 'substr' => 2, + 'substr_compare' => 2, + 'substr_count' => 2, + 'substr_replac' => 2, + 'substr_replace' => 2, + 'svn_add' => 2, + 'svn_auth_get_parameter' => 2, + 'svn_auth_set_parameter' => 2, + 'svn_cat' => 2, + 'svn_checkout' => 2, + 'svn_cleanup' => 2, + 'svn_client_version' => 2, + 'svn_commit' => 2, + 'svn_diff' => 2, + 'svn_export' => 2, + 'svn_fs_abort_txn' => 2, + 'svn_fs_apply_text' => 2, + 'svn_fs_begin_txn2' => 2, + 'svn_fs_change_node_prop' => 2, + 'svn_fs_check_path' => 2, + 'svn_fs_contents_changed' => 2, + 'svn_fs_copy' => 2, + 'svn_fs_delete' => 2, + 'svn_fs_dir_entries' => 2, + 'svn_fs_file_contents' => 2, + 'svn_fs_file_length' => 2, + 'svn_fs_is_dir' => 2, + 'svn_fs_is_file' => 2, + 'svn_fs_make_dir' => 2, + 'svn_fs_make_file' => 2, + 'svn_fs_node_created_rev' => 2, + 'svn_fs_node_prop' => 2, + 'svn_fs_props_changed' => 2, + 'svn_fs_revision_prop' => 2, + 'svn_fs_revision_root' => 2, + 'svn_fs_txn_root' => 2, + 'svn_fs_youngest_rev' => 2, + 'svn_import' => 2, + 'svn_info' => 2, + 'svn_log' => 2, + 'svn_ls' => 2, + 'svn_repos_create' => 2, + 'svn_repos_fs' => 2, + 'svn_repos_fs_begin_txn_for_commit' => 2, + 'svn_repos_fs_commit_txn' => 2, + 'svn_repos_hotcopy' => 2, + 'svn_repos_open' => 2, + 'svn_repos_recover' => 2, + 'svn_status' => 2, + 'svn_update' => 2, + 'sybase_affected_rows' => 2, + 'sybase_close' => 2, + 'sybase_connect' => 2, + 'sybase_data_seek' => 2, + 'sybase_fetch_array' => 2, + 'sybase_fetch_field' => 2, + 'sybase_fetch_object' => 2, + 'sybase_fetch_row' => 2, + 'sybase_field_seek' => 2, + 'sybase_free_result' => 2, + 'sybase_num_fields' => 2, + 'sybase_num_rows' => 2, + 'sybase_pconnect' => 2, + 'sybase_query' => 2, + 'sybase_result' => 2, + 'sybase_select_db' => 2, + 'symlink' => 2, + 'syntax' => 2, + 'sys_get_temp_dir' => 2, + 'syslog' => 2, + 'system' => 2, + 'tan' => 2, + 'tanh' => 2, + 'tempnam' => 2, + 'textdomain' => 2, + 'thread_get' => 2, + 'thread_include' => 2, + 'thread_lock' => 2, + 'thread_lock_try' => 2, + 'thread_mutex_destroy' => 2, + 'thread_mutex_init' => 2, + 'thread_set' => 2, + 'thread_start' => 2, + 'thread_unlock' => 2, + 'tidy_access_count' => 2, + 'tidy_clean_repair' => 2, + 'tidy_config_count' => 2, + 'tidy_diagnose' => 2, + 'tidy_error_count' => 2, + 'tidy_get_body' => 2, + 'tidy_get_config' => 2, + 'tidy_get_error_buffer' => 2, + 'tidy_get_head' => 2, + 'tidy_get_html' => 2, + 'tidy_get_html_ver' => 2, + 'tidy_get_output' => 2, + 'tidy_get_release' => 2, + 'tidy_get_root' => 2, + 'tidy_get_status' => 2, + 'tidy_getopt' => 2, + 'tidy_is_xhtml' => 2, + 'tidy_is_xml' => 2, + 'tidy_parse_file' => 2, + 'tidy_parse_string' => 2, + 'tidy_repair_file' => 2, + 'tidy_repair_string' => 2, + 'tidy_warning_count' => 2, + 'time' => 2, + 'time_nanosleep' => 2, + 'time_sleep_until' => 2, + 'timezone_abbreviations_list' => 2, + 'timezone_identifiers_list' => 2, + 'timezone_location_get' => 2, + 'timezone_name_from_abbr' => 2, + 'timezone_name_get' => 2, + 'timezone_offset_get' => 2, + 'timezone_open' => 2, + 'timezone_transitions_get' => 2, + 'timezone_version_get' => 2, + 'tmpfile' => 2, + 'token_get_all' => 2, + 'token_name' => 2, + 'touch' => 2, + 'trait_exists' => 2, + 'transliterate' => 2, + 'transliterate_filters_get' => 2, + 'trigger_error' => 2, + 'trim' => 2, + 'uasort' => 2, + 'ucfirst' => 2, + 'ucwords' => 2, + 'uksort' => 2, + 'umask' => 2, + 'uniqid' => 2, + 'unixtojd' => 2, + 'unlink' => 2, + 'unpack' => 2, + 'unregister_tick_function' => 2, + 'unserialize' => 2, + 'urldecode' => 2, + 'urlencode' => 2, + 'use_soap_error_handler' => 2, + 'user_error' => 2, + 'usleep' => 2, + 'usort' => 2, + 'utf8_decode' => 2, + 'utf8_encode' => 2, + 'var_dump' => 2, + 'var_export' => 2, + 'variant_abs' => 2, + 'variant_add' => 2, + 'variant_and' => 2, + 'variant_cast' => 2, + 'variant_cat' => 2, + 'variant_cmp' => 2, + 'variant_date_from_timestamp' => 2, + 'variant_date_to_timestamp' => 2, + 'variant_div' => 2, + 'variant_eqv' => 2, + 'variant_fix' => 2, + 'variant_get_type' => 2, + 'variant_idiv' => 2, + 'variant_imp' => 2, + 'variant_int' => 2, + 'variant_mod' => 2, + 'variant_mul' => 2, + 'variant_neg' => 2, + 'variant_not' => 2, + 'variant_or' => 2, + 'variant_pow' => 2, + 'variant_round' => 2, + 'variant_set' => 2, + 'variant_set_type' => 2, + 'variant_sub' => 2, + 'variant_xor' => 2, + 'version_compare' => 2, + 'vfprintf' => 2, + 'virtual' => 2, + 'vm_addalias' => 2, + 'vm_adduser' => 2, + 'vm_delalias' => 2, + 'vm_deluser' => 2, + 'vm_passwd' => 2, + 'vprintf' => 2, + 'vsprintf' => 2, + 'wddx_add_vars' => 2, + 'wddx_deserialize' => 2, + 'wddx_packet_end' => 2, + 'wddx_packet_start' => 2, + 'wddx_serialize_value' => 2, + 'wddx_serialize_vars' => 2, + 'win32_create_service' => 2, + 'win32_delete_service' => 2, + 'win32_get_last_control_message' => 2, + 'win32_ps_list_procs' => 2, + 'win32_ps_stat_mem' => 2, + 'win32_ps_stat_proc' => 2, + 'win32_query_service_status' => 2, + 'win32_scheduler_delete_task' => 2, + 'win32_scheduler_enum_tasks' => 2, + 'win32_scheduler_get_task_info' => 2, + 'win32_scheduler_run' => 2, + 'win32_scheduler_set_task_info' => 2, + 'win32_set_service_status' => 2, + 'win32_start_service' => 2, + 'win32_start_service_ctrl_dispatcher' => 2, + 'win32_stop_service' => 2, + 'win_beep' => 2, + 'win_browse_file' => 2, + 'win_browse_folder' => 2, + 'win_create_link' => 2, + 'win_message_box' => 2, + 'win_play_wav' => 2, + 'win_shell_execute' => 2, + 'wordwrap' => 2, + 'xml_error_string' => 2, + 'xml_get_current_byte_index' => 2, + 'xml_get_current_column_number' => 2, + 'xml_get_current_line_number' => 2, + 'xml_get_error_code' => 2, + 'xml_parse' => 2, + 'xml_parse_into_struct' => 2, + 'xml_parser_create' => 2, + 'xml_parser_create_ns' => 2, + 'xml_parser_free' => 2, + 'xml_parser_get_option' => 2, + 'xml_parser_set_option' => 2, + 'xml_set_character_data_handler' => 2, + 'xml_set_default_handler' => 2, + 'xml_set_element_handler' => 2, + 'xml_set_end_namespace_decl_handler' => 2, + 'xml_set_external_entity_ref_handler' => 2, + 'xml_set_notation_decl_handler' => 2, + 'xml_set_object' => 2, + 'xml_set_processing_instruction_handler' => 2, + 'xml_set_start_namespace_decl_handler' => 2, + 'xml_set_unparsed_entity_decl_handler' => 2, + 'xmldoc' => 2, + 'xmldocfile' => 2, + 'xmlrpc_decode' => 2, + 'xmlrpc_decode_request' => 2, + 'xmlrpc_encode' => 2, + 'xmlrpc_encode_request' => 2, + 'xmlrpc_get_type' => 2, + 'xmlrpc_is_fault' => 2, + 'xmlrpc_parse_method_descriptions' => 2, + 'xmlrpc_server_add_introspection_data' => 2, + 'xmlrpc_server_call_method' => 2, + 'xmlrpc_server_create' => 2, + 'xmlrpc_server_destroy' => 2, + 'xmlrpc_server_register_introspection_callback' => 2, + 'xmlrpc_server_register_method' => 2, + 'xmlrpc_set_type' => 2, + 'xmltree' => 2, + 'xmlwriter_end_attribute' => 2, + 'xmlwriter_end_cdata' => 2, + 'xmlwriter_end_comment' => 2, + 'xmlwriter_end_document' => 2, + 'xmlwriter_end_dtd' => 2, + 'xmlwriter_end_dtd_attlist' => 2, + 'xmlwriter_end_dtd_element' => 2, + 'xmlwriter_end_dtd_entity' => 2, + 'xmlwriter_end_element' => 2, + 'xmlwriter_end_pi' => 2, + 'xmlwriter_flush' => 2, + 'xmlwriter_full_end_element' => 2, + 'xmlwriter_open_memory' => 2, + 'xmlwriter_open_uri' => 2, + 'xmlwriter_output_memory' => 2, + 'xmlwriter_set_indent' => 2, + 'xmlwriter_set_indent_string' => 2, + 'xmlwriter_start_attribute' => 2, + 'xmlwriter_start_attribute_ns' => 2, + 'xmlwriter_start_cdata' => 2, + 'xmlwriter_start_comment' => 2, + 'xmlwriter_start_document' => 2, + 'xmlwriter_start_dtd' => 2, + 'xmlwriter_start_dtd_attlist' => 2, + 'xmlwriter_start_dtd_element' => 2, + 'xmlwriter_start_dtd_entity' => 2, + 'xmlwriter_start_element' => 2, + 'xmlwriter_start_element_ns' => 2, + 'xmlwriter_start_pi' => 2, + 'xmlwriter_text' => 2, + 'xmlwriter_write_attribute' => 2, + 'xmlwriter_write_attribute_ns' => 2, + 'xmlwriter_write_cdata' => 2, + 'xmlwriter_write_comment' => 2, + 'xmlwriter_write_dtd' => 2, + 'xmlwriter_write_dtd_attlist' => 2, + 'xmlwriter_write_dtd_element' => 2, + 'xmlwriter_write_dtd_entity' => 2, + 'xmlwriter_write_element' => 2, + 'xmlwriter_write_element_ns' => 2, + 'xmlwriter_write_pi' => 2, + 'xmlwriter_write_raw' => 2, + 'xpath_eval' => 2, + 'xpath_eval_expression' => 2, + 'xpath_new_context' => 2, + 'xpath_register_ns' => 2, + 'xpath_register_ns_auto' => 2, + 'xptr_eval' => 2, + 'xptr_new_context' => 2, + 'yp_all' => 2, + 'yp_cat' => 2, + 'yp_err_string' => 2, + 'yp_errno' => 2, + 'yp_first' => 2, + 'yp_get_default_domain' => 2, + 'yp_master' => 2, + 'yp_match' => 2, + 'yp_next' => 2, + 'yp_order' => 2, + 'zend_current_obfuscation_level' => 2, + 'zend_get_cfg_var' => 2, + 'zend_get_id' => 2, + 'zend_loader_current_file' => 2, + 'zend_loader_enabled' => 2, + 'zend_loader_file_encoded' => 2, + 'zend_loader_file_licensed' => 2, + 'zend_loader_install_license' => 2, + 'zend_loader_version' => 2, + 'zend_logo_guid' => 2, + 'zend_match_hostmasks' => 2, + 'zend_obfuscate_class_name' => 2, + 'zend_obfuscate_function_name' => 2, + 'zend_optimizer_version' => 2, + 'zend_runtime_obfuscate' => 2, + 'zend_version' => 2, + 'zip_close' => 2, + 'zip_entry_close' => 2, + 'zip_entry_compressedsize' => 2, + 'zip_entry_compressionmethod' => 2, + 'zip_entry_filesize' => 2, + 'zip_entry_name' => 2, + 'zip_entry_open' => 2, + 'zip_entry_read' => 2, + 'zip_open' => 2, + 'zip_read' => 2, + 'zlib_decode' => 2, + 'zlib_encode' => 2, + 'zlib_get_coding_type' => 2 + ), + Generator::CASE_INSENSITIVE + ); + } +} diff --git a/apigen/libs/FSHL/FSHL/Lexer/Python.php b/apigen/libs/FSHL/FSHL/Lexer/Python.php new file mode 100644 index 00000000000..2945f5f2703 --- /dev/null +++ b/apigen/libs/FSHL/FSHL/Lexer/Python.php @@ -0,0 +1,502 @@ + array( + array( + 'ALPHA' => array('KEYWORD', Generator::BACK), + '_' => array('KEYWORD', Generator::BACK), + '\'\'\'' => array('DOCSTRING1', Generator::NEXT), + '"""' => array('DOCSTRING2', Generator::NEXT), + '\'' => array('QUOTE_SINGLE', Generator::NEXT), + '"' => array('QUOTE_DOUBLE', Generator::NEXT), + '#' => array('COMMENT_LINE', Generator::NEXT), + 'NUM' => array('NUMBER', Generator::NEXT), + 'DOTNUM' => array('NUMBER', Generator::NEXT), + 'LINE' => array(Generator::STATE_SELF, Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT) + ), + Generator::STATE_FLAG_NONE, + null, + null + ), + 'KEYWORD' => array( + array( + '!ALNUM_' => array(Generator::STATE_RETURN, Generator::BACK) + ), + Generator::STATE_FLAG_KEYWORD | Generator::STATE_FLAG_RECURSION, + null, + null + ), + 'DOCSTRING1' => array( + array( + '\'\'\'' => array(Generator::STATE_RETURN, Generator::CURRENT), + '\\\\' => array(Generator::STATE_SELF, Generator::NEXT), + '\\\'\'\'' => array(Generator::STATE_SELF, Generator::NEXT), + 'LINE' => array(Generator::STATE_SELF, Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT) + ), + Generator::STATE_FLAG_RECURSION, + 'py-docstring', + null + ), + 'DOCSTRING2' => array( + array( + '"""' => array(Generator::STATE_RETURN, Generator::CURRENT), + '\\\\' => array(Generator::STATE_SELF, Generator::NEXT), + '\\"""' => array(Generator::STATE_SELF, Generator::NEXT), + 'LINE' => array(Generator::STATE_SELF, Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT) + ), + Generator::STATE_FLAG_RECURSION, + 'py-docstring', + null + ), + 'QUOTE_SINGLE' => array( + array( + '\'' => array(Generator::STATE_RETURN, Generator::CURRENT), + '\\\\' => array(Generator::STATE_SELF, Generator::NEXT), + '\\\'' => array(Generator::STATE_SELF, Generator::NEXT), + 'LINE' => array(Generator::STATE_SELF, Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT) + ), + Generator::STATE_FLAG_RECURSION, + 'py-quote', + null + ), + 'QUOTE_DOUBLE' => array( + array( + '"' => array(Generator::STATE_RETURN, Generator::CURRENT), + '\\\\' => array(Generator::STATE_SELF, Generator::NEXT), + '\\"' => array(Generator::STATE_SELF, Generator::NEXT), + 'LINE' => array(Generator::STATE_SELF, Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT) + ), + Generator::STATE_FLAG_RECURSION, + 'py-quote', + null + ), + 'COMMENT_LINE' => array( + array( + 'LINE' => array(Generator::STATE_RETURN, Generator::BACK), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT) + ), + Generator::STATE_FLAG_RECURSION, + 'py-comment', + null + ), + 'NUMBER' => array( + array( + 'DOTNUM' => array('FRACTION', Generator::NEXT), + 'l' => array(Generator::STATE_RETURN, Generator::CURRENT), + 'L' => array(Generator::STATE_RETURN, Generator::CURRENT), + 'j' => array(Generator::STATE_RETURN, Generator::CURRENT), + 'J' => array(Generator::STATE_RETURN, Generator::CURRENT), + 'e-' => array('EXPONENT', Generator::NEXT), + 'e+' => array('EXPONENT', Generator::NEXT), + 'e' => array('EXPONENT', Generator::NEXT), + 'x' => array('HEXA', Generator::NEXT), + 'X' => array('HEXA', Generator::NEXT), + 'ALL' => array(Generator::STATE_RETURN, Generator::BACK) + ), + Generator::STATE_FLAG_RECURSION, + 'py-num', + null + ), + 'FRACTION' => array( + array( + 'j' => array(Generator::STATE_RETURN, Generator::CURRENT), + 'J' => array(Generator::STATE_RETURN, Generator::CURRENT), + 'e-' => array('EXPONENT', Generator::NEXT), + 'e+' => array('EXPONENT', Generator::NEXT), + 'e' => array('EXPONENT', Generator::NEXT), + 'ALL' => array(Generator::STATE_RETURN, Generator::BACK) + ), + Generator::STATE_FLAG_NONE, + 'py-num', + null + ), + 'EXPONENT' => array( + array( + 'j' => array(Generator::STATE_RETURN, Generator::CURRENT), + 'J' => array(Generator::STATE_RETURN, Generator::CURRENT), + '!NUM' => array(Generator::STATE_RETURN, Generator::BACK) + ), + Generator::STATE_FLAG_NONE, + 'py-num', + null + ), + 'HEXA' => array( + array( + 'L' => array(Generator::STATE_RETURN, Generator::CURRENT), + 'l' => array(Generator::STATE_RETURN, Generator::CURRENT), + '!HEXNUM' => array(Generator::STATE_RETURN, Generator::BACK) + ), + Generator::STATE_FLAG_RECURSION, + 'py-num', + null + ) + ); + } + + /** + * Returns special delimiters. + * + * @return array + */ + public function getDelimiters() + { + return array(); + } + + /** + * Returns keywords. + * + * @return array + */ + public function getKeywords() + { + return array( + 'py-keyword', + array( + 'and' => 1, + 'as' => 1, + 'assert' => 1, + 'break' => 1, + 'class' => 1, + 'continue' => 1, + 'def' => 1, + 'del' => 1, + 'elif' => 1, + 'else' => 1, + 'except' => 1, + 'exec' => 1, + 'finally' => 1, + 'for' => 1, + 'from' => 1, + 'global' => 1, + 'if' => 1, + 'import' => 1, + 'in' => 1, + 'is' => 1, + 'lambda' => 1, + 'not' => 1, + 'or' => 1, + 'pass' => 1, + 'print' => 1, + 'raise' => 1, + 'return' => 1, + 'try' => 1, + 'while' => 1, + 'with' => 1, + 'yield' => 1, + + 'abs' => 2, + 'all' => 2, + 'any' => 2, + 'apply' => 2, + 'basestring' => 2, + 'bool' => 2, + 'buffer' => 2, + 'callable' => 2, + 'chr' => 2, + 'classmethod' => 2, + 'cmp' => 2, + 'coerce' => 2, + 'compile' => 2, + 'complex' => 2, + 'delattr' => 2, + 'dict' => 2, + 'dir' => 2, + 'divmod' => 2, + 'enumerate' => 2, + 'eval' => 2, + 'execfile' => 2, + 'file' => 2, + 'filter' => 2, + 'float' => 2, + 'frozenset' => 2, + 'getattr' => 2, + 'globals' => 2, + 'hasattr' => 2, + 'hash' => 2, + 'hex' => 2, + 'id' => 2, + 'input' => 2, + 'int' => 2, + 'intern' => 2, + 'isinstance' => 2, + 'issubclass' => 2, + 'iter' => 2, + 'len' => 2, + 'list' => 2, + 'locals' => 2, + 'long' => 2, + 'map' => 2, + 'max' => 2, + 'min' => 2, + 'object' => 2, + 'oct' => 2, + 'open' => 2, + 'ord' => 2, + 'pow' => 2, + 'property' => 2, + 'range' => 2, + 'raw_input' => 2, + 'reduce' => 2, + 'reload' => 2, + 'repr' => 2, + 'reversed' => 2, + 'round' => 2, + 'set' => 2, + 'setattr' => 2, + 'slice' => 2, + 'sorted' => 2, + 'staticmethod' => 2, + 'str' => 2, + 'sum' => 2, + 'super' => 2, + 'tuple' => 2, + 'type' => 2, + 'unichr' => 2, + 'unicode' => 2, + 'vars' => 2, + 'xrange' => 2, + 'zip' => 2, + + 'ArithmeticError' => 3, + 'AssertionError' => 3, + 'AttributeError' => 3, + 'BaseException' => 3, + 'DeprecationWarning' => 3, + 'EOFError' => 3, + 'Ellipsis' => 3, + 'EnvironmentError' => 3, + 'Exception' => 3, + 'FloatingPointError' => 3, + 'FutureWarning' => 3, + 'GeneratorExit' => 3, + 'IOError' => 3, + 'ImportError' => 3, + 'ImportWarning' => 3, + 'IndentationError' => 3, + 'IndexError' => 3, + 'KeyError' => 3, + 'KeyboardInterrupt' => 3, + 'LookupError' => 3, + 'MemoryError' => 3, + 'NameError' => 3, + 'NotImplemented' => 3, + 'NotImplementedError' => 3, + 'OSError' => 3, + 'OverflowError' => 3, + 'OverflowWarning' => 3, + 'PendingDeprecationWarning' => 3, + 'ReferenceError' => 3, + 'RuntimeError' => 3, + 'RuntimeWarning' => 3, + 'StandardError' => 3, + 'StopIteration' => 3, + 'SyntaxError' => 3, + 'SyntaxWarning' => 3, + 'SystemError' => 3, + 'SystemExit' => 3, + 'TabError' => 3, + 'TypeError' => 3, + 'UnboundLocalError' => 3, + 'UnicodeDecodeError' => 3, + 'UnicodeEncodeError' => 3, + 'UnicodeError' => 3, + 'UnicodeTranslateError' => 3, + 'UnicodeWarning' => 3, + 'UserWarning' => 3, + 'ValueError' => 3, + 'Warning' => 3, + 'WindowsError' => 3, + 'ZeroDivisionError' => 3, + + 'BufferType' => 3, + 'BuiltinFunctionType' => 3, + 'BuiltinMethodType' => 3, + 'ClassType' => 3, + 'CodeType' => 3, + 'ComplexType' => 3, + 'DictProxyType' => 3, + 'DictType' => 3, + 'DictionaryType' => 3, + 'EllipsisType' => 3, + 'FileType' => 3, + 'FloatType' => 3, + 'FrameType' => 3, + 'FunctionType' => 3, + 'GeneratorType' => 3, + 'InstanceType' => 3, + 'IntType' => 3, + 'LambdaType' => 3, + 'ListType' => 3, + 'LongType' => 3, + 'MethodType' => 3, + 'ModuleType' => 3, + 'NoneType' => 3, + 'ObjectType' => 3, + 'SliceType' => 3, + 'StringType' => 3, + 'StringTypes' => 3, + 'TracebackType' => 3, + 'TupleType' => 3, + 'TypeType' => 3, + 'UnboundMethodType' => 3, + 'UnicodeType' => 3, + 'XRangeType' => 3, + + 'False' => 3, + 'None' => 3, + 'True' => 3, + + '__abs__' => 3, + '__add__' => 3, + '__all__' => 3, + '__author__' => 3, + '__bases__' => 3, + '__builtins__' => 3, + '__call__' => 3, + '__class__' => 3, + '__cmp__' => 3, + '__coerce__' => 3, + '__contains__' => 3, + '__debug__' => 3, + '__del__' => 3, + '__delattr__' => 3, + '__delitem__' => 3, + '__delslice__' => 3, + '__dict__' => 3, + '__div__' => 3, + '__divmod__' => 3, + '__doc__' => 3, + '__eq__' => 3, + '__file__' => 3, + '__float__' => 3, + '__floordiv__' => 3, + '__future__' => 3, + '__ge__' => 3, + '__getattr__' => 3, + '__getattribute__' => 3, + '__getitem__' => 3, + '__getslice__' => 3, + '__gt__' => 3, + '__hash__' => 3, + '__hex__' => 3, + '__iadd__' => 3, + '__import__' => 3, + '__imul__' => 3, + '__init__' => 3, + '__int__' => 3, + '__invert__' => 3, + '__iter__' => 3, + '__le__' => 3, + '__len__' => 3, + '__long__' => 3, + '__lshift__' => 3, + '__lt__' => 3, + '__members__' => 3, + '__metaclass__' => 3, + '__mod__' => 3, + '__mro__' => 3, + '__mul__' => 3, + '__name__' => 3, + '__ne__' => 3, + '__neg__' => 3, + '__new__' => 3, + '__nonzero__' => 3, + '__oct__' => 3, + '__or__' => 3, + '__path__' => 3, + '__pos__' => 3, + '__pow__' => 3, + '__radd__' => 3, + '__rdiv__' => 3, + '__rdivmod__' => 3, + '__reduce__' => 3, + '__repr__' => 3, + '__rfloordiv__' => 3, + '__rlshift__' => 3, + '__rmod__' => 3, + '__rmul__' => 3, + '__ror__' => 3, + '__rpow__' => 3, + '__rrshift__' => 3, + '__rsub__' => 3, + '__rtruediv__' => 3, + '__rxor__' => 3, + '__setattr__' => 3, + '__setitem__' => 3, + '__setslice__' => 3, + '__self__' => 3, + '__slots__' => 3, + '__str__' => 3, + '__sub__' => 3, + '__truediv__' => 3, + '__version__' => 3, + '__xor__' => 3 + ), + Generator::CASE_SENSITIVE + ); + } +} diff --git a/apigen/libs/FSHL/FSHL/Lexer/Sql.php b/apigen/libs/FSHL/FSHL/Lexer/Sql.php new file mode 100644 index 00000000000..28f211e44c1 --- /dev/null +++ b/apigen/libs/FSHL/FSHL/Lexer/Sql.php @@ -0,0 +1,557 @@ + array( + array( + 'ALPHA' => array('FUNCTION', Generator::BACK), + 'NUM' => array('NUMBER', Generator::NEXT), + 'DOTNUM' => array('NUMBER', Generator::NEXT), + '/*' => array('COMMENT_BLOCK', Generator::NEXT) , + '//' => array('COMMENT_LINE', Generator::NEXT), + '#' => array('COMMENT_LINE', Generator::NEXT), + '--' => array('COMMENT_LINE', Generator::NEXT), + '"' => array('QUOTE_DOUBLE', Generator::NEXT), + '\'' => array('QUOTE_SINGLE', Generator::NEXT), + '`' => array('QUOTE_BACK_APOSTROPHE', Generator::NEXT), + 'LINE' => array(Generator::STATE_SELF, Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT) + ), + Generator::STATE_FLAG_KEYWORD, + null, + null + ), + 'FUNCTION' => array( + array( + '!ALNUM_' => array(Generator::STATE_RETURN, Generator::BACK) + ), + Generator::STATE_FLAG_KEYWORD | Generator::STATE_FLAG_RECURSION, + null, + null + ), + 'COMMENT_BLOCK' => array( + array( + 'LINE' => array(Generator::STATE_SELF, Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT), + '*/' => array(Generator::STATE_RETURN, Generator::CURRENT), + ), + Generator::STATE_FLAG_RECURSION, + 'sql-comment', + null + ), + 'COMMENT_LINE' => array( + array( + 'LINE' => array(Generator::STATE_RETURN, Generator::BACK), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT) + ), + Generator::STATE_FLAG_RECURSION, + 'sql-comment', + null + ), + 'QUOTE_DOUBLE' => array( + array( + '"' => array(Generator::STATE_RETURN, Generator::CURRENT), + '\\"' => array(Generator::STATE_SELF, Generator::NEXT), + 'LINE' => array(Generator::STATE_SELF, Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT) + ), + Generator::STATE_FLAG_RECURSION, + 'sql-value', + null + ), + 'QUOTE_SINGLE' => array( + array( + '\'' => array(Generator::STATE_RETURN, Generator::CURRENT), + '\\\'' => array(Generator::STATE_SELF, Generator::NEXT), + 'LINE' => array(Generator::STATE_SELF, Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT) + ), + Generator::STATE_FLAG_RECURSION, + 'sql-value', + null + ), + 'QUOTE_BACK_APOSTROPHE' => array( + array( + '`' => array(Generator::STATE_RETURN, Generator::CURRENT), + '\\`' => array(Generator::STATE_SELF, Generator::NEXT), + 'LINE' => array(Generator::STATE_SELF, Generator::NEXT), + 'TAB' => array(Generator::STATE_SELF, Generator::NEXT) + ), + Generator::STATE_FLAG_RECURSION, + 'sql-value', + null + ), + 'NUMBER' => array( + array( + 'x' => array('HEXA', Generator::NEXT), + 'DOTNUM' => array(Generator::STATE_SELF, Generator::NEXT), + 'ALL' => array(Generator::STATE_RETURN, Generator::BACK) + ), + Generator::STATE_FLAG_RECURSION, + 'sql-num', + null + ), + 'HEXA' => array( + array( + '!HEXNUM' => array(Generator::STATE_RETURN, Generator::BACK) + ), + Generator::STATE_FLAG_NONE, + 'sql-num', + null + ), + 'OPTION' => array( + array( + 'BLOB' => array(Generator::STATE_SELF, Generator::NEXT), + 'TEXT' => array(Generator::STATE_SELF, Generator::CURRENT), + 'INTEGER' => array(Generator::STATE_SELF, Generator::NEXT), + 'CHAR' => array(Generator::STATE_SELF, Generator::NEXT), + 'TEXT' => array(Generator::STATE_SELF, Generator::NEXT), + 'DATE' => array(Generator::STATE_SELF, Generator::NEXT) + ), + Generator::STATE_FLAG_RECURSION, + 'sql-option', + null + ) + ); + } + + /** + * Returns special delimiters. + * + * @return array + */ + public function getDelimiters() + { + return array(); + } + + /** + * Returns keywords. + * + * @return array + */ + public function getKeywords() + { + return array( + 'sql-keyword', + array( + 'a' => 1, + 'abs' => 2, + 'acos' => 2, + 'add' => 1, + 'add_months' => 1, + 'after' => 1, + 'all' => 1, + 'alter' => 1, + 'an' => 1, + 'and' => 1, + 'any' => 1, + 'array' => 1, + 'as' => 1, + 'asc' => 1, + 'ascii' => 2, + 'asin' => 2, + 'atan' => 2, + 'atan2' => 2, + 'avg' => 2, + 'before' => 1, + 'begin' => 1, + 'between' => 1, + 'bigint' => 3, + 'binary' => 1, + 'bind' => 1, + 'binding' => 1, + 'bit' => 1, + 'blob' => 3, + 'boolean' => 3, + 'by' => 1, + 'call' => 1, + 'cascade' => 1, + 'case' => 1, + 'cast' => 1, + 'ceiling' => 2, + 'char' => 3, + 'char_length' => 2, + 'character' => 2, + 'character_length' => 2, + 'chartorowid' => 1, + 'check' => 1, + 'chr' => 1, + 'cleanup' => 1, + 'close' => 1, + 'clustered' => 1, + 'coalesce' => 1, + 'colgroup' => 1, + 'collate' => 1, + 'commit' => 1, + 'complex' => 1, + 'compress' => 1, + 'concat' => 2, + 'connect' => 1, + 'constraint' => 1, + 'contains' => 1, + 'continue' => 1, + 'convert' => 1, + 'cos' => 2, + 'count' => 2, + 'create' => 1, + 'cross' => 1, + 'curdate' => 2, + 'current' => 1, + 'cursor' => 1, + 'curtime' => 2, + 'cvar' => 1, + 'database' => 1, + 'datapages' => 1, + 'date' => 2, + 'dayname' => 2, + 'dayofmonth' => 2, + 'dayofweek' => 2, + 'dayofyear' => 2, + 'db_name' => 1, + 'dba' => 1, + 'dec' => 3, + 'decimal' => 3, + 'declaration' => 1, + 'declare' => 1, + 'decode' => 2, + 'default' => 1, + 'definition' => 1, + 'degrees' => 1, + 'delete' => 1, + 'desc' => 1, + 'describe' => 1, + 'descriptor' => 1, + 'dhtype' => 1, + 'difference' => 1, + 'distinct' => 1, + 'double' => 3, + 'drop' => 1, + 'each' => 1, + 'else' => 1, + 'end' => 1, + 'escape' => 1, + 'exclusive' => 1, + 'exec' => 1, + 'execute' => 1, + 'exists' => 1, + 'exit' => 1, + 'exp' => 2, + 'explicit' => 1, + 'extent' => 1, + 'fetch' => 1, + 'field file' => 1, + 'float' => 3, + 'floor' => 2, + 'for' => 1, + 'foreign' => 1, + 'found' => 1, + 'from' => 1, + 'full' => 1, + 'go' => 1, + 'goto' => 1, + 'grant' => 1, + 'greatest' => 2, + 'group' => 1, + 'hash' => 1, + 'having' => 1, + 'hour' => 1, + 'identified' => 1, + 'ifnull' => 2, + 'immediate' => 1, + 'in' => 1, + 'index' => 1, + 'indexpages' => 1, + 'indicator' => 1, + 'initcap' => 1, + 'inner' => 1, + 'inout' => 1, + 'input' => 1, + 'insert' => 1, + 'instr' => 1, + 'int' => 3, + 'integer' => 3, + 'interface' => 1, + 'intersect' => 1, + 'into' => 1, + 'is' => 1, + 'isnull' => 2, + 'java_object' => 3, + 'join' => 1, + 'key' => 1, + 'last_day' => 2, + 'lcase' => 2, + 'least' => 2, + 'left' => 2, + 'length' => 2, + 'like' => 1, + 'link' => 1, + 'list' => 1, + 'locate' => 1, + 'lock' => 1, + 'log' => 2, + 'log10' => 2, + 'long' => 1, + 'longblob' => 3, + 'longtext' => 3, + 'longvarbinary' => 3, + 'longvarchar' => 3, + 'lower' => 1, + 'lpad' => 1, + 'ltrim' => 2, + 'lvarbinary' => 1, + 'lvarchar' => 1, + 'main' => 1, + 'max' => 2, + 'mediumint' => 3, + 'metadata_only' => 1, + 'min' => 2, + 'minus' => 2, + 'minute' => 2, + 'mod' => 2, + 'mode' => 1, + 'modify' => 1, + 'money' => 1, + 'month' => 2, + 'monthname' => 2, + 'months_between' => 2, + 'name' => 1, + 'national' => 1, + 'natural' => 1, + 'nchar' => 1, + 'newrow' => 1, + 'next_day' => 1, + 'nocompress' => 1, + 'not' => 1, + 'now' => 1, + 'nowait' => 1, + 'null' => 1, + 'nullif' => 1, + 'nullvalue' => 1, + 'number' => 1, + 'numeric' => 1, + 'nvl' => 1, + 'object_id' => 1, + 'odbc_convert' => 1, + 'odbcinfo' => 1, + 'of' => 1, + 'oldrow' => 1, + 'on' => 1, + 'open' => 1, + 'option' => 1, + 'or' => 1, + 'order' => 1, + 'out' => 1, + 'outer' => 1, + 'output' => 1, + 'pctfree' => 1, + 'pi' => 1, + 'power' => 1, + 'precision' => 1, + 'prefix' => 1, + 'prepare' => 1, + 'primary' => 1, + 'privileges' => 1, + 'procedure' => 1, + 'public' => 1, + 'quarter' => 2, + 'radians' => 2, + 'rand' => 2, + 'range' => 2, + 'raw' => 1, + 'real' => 3, + 'record' => 1, + 'references' => 1, + 'referencing' => 1, + 'rename' => 1, + 'repeat' => 2, + 'replace' => 1, + 'resource' => 1, + 'restrict' => 1, + 'result' => 1, + 'return' => 2, + 'revoke' => 2, + 'right' => 2, + 'rollback' => 1, + 'row' => 2, + 'rowid' => 2, + 'rowidtochar' => 2, + 'rownum' => 2, + 'rpad' => 2, + 'rtrim' => 2, + 'searched_case' => 1, + 'second' => 1, + 'section' => 1, + 'select' => 1, + 'service' => 1, + 'set' => 1, + 'share' => 1, + 'short' => 1, + 'sign' => 1, + 'simple_case' => 1, + 'sin' => 2, + 'size' => 2, + 'smallint' => 3, + 'some' => 1, + 'soundex' => 1, + 'space' => 1, + 'sql' => 1, + 'sql_bigint' => 3, + 'sql_binary' => 3, + 'sql_bit' => 3, + 'sql_char' => 3, + 'sql_date' => 3, + 'sql_decimal' => 3, + 'sql_double' => 3, + 'sql_float' => 1, + 'sql_integer' => 3, + 'sql_longvarbinary' => 3, + 'sql_longvarchar' => 3, + 'sql_numeric' => 3, + 'sql_real' => 3, + 'sql_smallint' => 3, + 'sql_time' => 3, + 'sql_timestamp' => 1, + 'sql_tinyint' => 3, + 'sql_tsi_day' => 3, + 'sql_tsi_frac_second' => 3, + 'sql_tsi_hour' => 3, + 'sql_tsi_minute' => 3, + 'sql_tsi_month' => 3, + 'sql_tsi_quarter' => 3, + 'sql_tsi_second' => 3, + 'sql_tsi_week' => 3, + 'sql_tsi_year' => 3, + 'sql_varbinary' => 3, + 'sql_varchar' => 3, + 'sqlerror' => 1, + 'sqlwarning' => 1, + 'sqrt' => 1, + 'start' => 1, + 'statement' => 1, + 'statistics' => 1, + 'stop' => 1, + 'storage_attributes' => 1, + 'storage_manager' => 1, + 'store_in_progress' => 1, + 'string' => 3, + 'substr' => 2, + 'substring' => 2, + 'suffix' => 2, + 'sum' => 2, + 'suser_name' => 2, + 'synonym' => 2, + 'sysdate' => 2, + 'systime' => 2, + 'systimestamp' => 2, + 'table' => 1, + 'tan' => 2, + 'text' => 3, + 'then' => 1, + 'time' => 2, + 'timeout' => 2, + 'timestamp' => 3, + 'timestampadd' => 2, + 'timestampdiff' => 2, + 'tinyint' => 3, + 'to' => 2, + 'to_char' => 2, + 'to_date' => 2, + 'to_number' => 2, + 'to_time' => 2, + 'to_timestamp' => 2, + 'top' => 1, + 'tpe' => 1, + 'tran' => 1, + 'transaction' => 1, + 'translate' => 1, + 'trigger' => 1, + 'type' => 1, + 'ucase' => 1, + 'uid' => 1, + 'union' => 1, + 'unique' => 1, + 'unsigned' => 1, + 'update' => 1, + 'upper' => 1, + 'user' => 1, + 'user_id' => 1, + 'user_name' => 1, + 'using' => 1, + 'uuid' => 1, + 'values' => 1, + 'varbinary' => 1, + 'varchar' => 3, + 'variables' => 1, + 'varying' => 1, + 'version' => 1, + 'view' => 1, + 'week' => 2, + 'when' => 1, + 'whenever' => 1, + 'where' => 1, + 'with' => 1, + 'work' => 1, + 'year' => 1 + ), + Generator::CASE_INSENSITIVE + ); + } +} diff --git a/apigen/libs/FSHL/FSHL/Lexer/Texy.php b/apigen/libs/FSHL/FSHL/Lexer/Texy.php new file mode 100644 index 00000000000..bea063e99d3 --- /dev/null +++ b/apigen/libs/FSHL/FSHL/Lexer/Texy.php @@ -0,0 +1,297 @@ + array( + array( + '/---' => array('BLOCK_IN', Generator::NEXT), + '\---' => array('BLOCK_OUT', Generator::NEXT), + 'LINE' => array('LINE', Generator::NEXT) + ), + Generator::STATE_FLAG_NONE, + null, + null + ), + 'LINE' => array( + array( + 'LINE' => array('LINE_DOUBLE', Generator::NEXT), + '!SPACE' => array('LINE_SINGLE', Generator::BACK) + ), + Generator::STATE_FLAG_NONE, + null, + null + ), + 'LINE_SINGLE' => array( + array( + '##' => array('HEADER_IN', Generator::NEXT), + '**' => array('HEADER_IN', Generator::NEXT), + '==' => array('HEADER_IN', Generator::NEXT), + '--' => array('HEADER_IN', Generator::NEXT), + 'ALL' => array('LINE_BODY', Generator::BACK) + ), + Generator::STATE_FLAG_NONE, + null, + null + ), + 'LINE_DOUBLE' => array( + array( + 'LINE' => array(Generator::STATE_SELF, Generator::NEXT), + '##' => array('HEADER_IN', Generator::NEXT), + '==' => array('HEADER_IN', Generator::NEXT), + '--' => array('HORIZONTAL_LINE', Generator::NEXT), + '- -' => array('HORIZONTAL_LINE', Generator::NEXT), + '**' => array('HORIZONTAL_LINE', Generator::NEXT), + '* *' => array('HORIZONTAL_LINE', Generator::NEXT), + 'ALL' => array('LINE_BODY', Generator::BACK) + ), + 'texy-err', + null, + null + ), + 'HEADER_IN' => array( + array( + '=' => array('HEADER_IN', Generator::NEXT), + '#' => array('HEADER_IN', Generator::NEXT), + '-' => array('HEADER_IN', Generator::NEXT), + '*' => array('HEADER_IN', Generator::NEXT), + 'LINE' => array('LINE_DOUBLE', Generator::NEXT), + 'ALL' => array('HEADER_BODY', Generator::BACK) + ), + Generator::STATE_FLAG_NONE, + 'texy-hlead', + null + ), + 'HEADER_BODY' => array( + array( + '=' => array('HEADER_OUT', Generator::NEXT), + '#' => array('HEADER_OUT', Generator::NEXT), + '-' => array('HEADER_OUT', Generator::NEXT), + '*' => array('HEADER_OUT', Generator::NEXT), + 'LINE' => array('LINE_DOUBLE', Generator::NEXT) + ), + Generator::STATE_FLAG_NONE, + 'texy-hbody', + null + ), + 'HEADER_OUT' => array( + array( + 'LINE' => array('LINE_DOUBLE', Generator::NEXT) + ), + Generator::STATE_FLAG_NONE, + 'texy-hlead', + null + ), + 'HORIZONTAL_LINE' => array( + array( + 'LINE' => array('LINE_BODY', Generator::BACK) + ), + Generator::STATE_FLAG_NONE, + 'texy-hr', + null + ), + 'BLOCK_IN' => array( + array( + 'html' => array('BLOCK_HTML', Generator::NEXT), + 'code' => array('BLOCK_CODE', Generator::NEXT), + 'div' => array('BLOCK_DUMMY', Generator::NEXT), + 'text' => array('BLOCK_TEXT', Generator::NEXT), + 'ALL' => array('LINE_BODY', Generator::BACK) + ), + Generator::STATE_FLAG_NONE, + 'texy-hr', + null + ), + 'BLOCK_OUT' => array( + array( + 'ALL' => array('LINE_BODY', Generator::BACK) + ), + Generator::STATE_FLAG_NONE, + 'texy-hr', + null + ), + 'BLOCK_DUMMY' => array( + array( + 'ALL' => array('LINE_BODY', Generator::BACK) + ), + Generator::STATE_FLAG_NONE, + 'texy-hr', + null + ), + 'BLOCK_TEXT' => array( + array( + 'LINE' => array('BLOCK_TEXT_BODY', Generator::BACK) + ), + Generator::STATE_FLAG_NONE, + 'texy-hr', + null + ), + 'BLOCK_TEXT_BODY' => array( + array( + 'LINE' => array('BLOCK_TEXT_BODY_LINE', Generator::NEXT) + ), + Generator::STATE_FLAG_NONE, + 'texy-text', + null + ), + 'BLOCK_TEXT_BODY_LINE' => array( + array( + '\---' => array('BLOCK_TEXT_BODY_OUT', Generator::NEXT), + 'ALL' => array('BLOCK_TEXT_BODY', Generator::BACK) + ), + Generator::STATE_FLAG_NONE, + 'texy-text', + null + ), + 'BLOCK_TEXT_BODY_OUT' => array( + array( + 'ALL' => array('LINE_BODY', Generator::BACK) + ), + Generator::STATE_FLAG_NONE, + 'texy-hr', + null + ), + 'BLOCK_HTML' => array( + array( + 'LINE' => array('BLOCK_HTML_BODY', Generator::BACK) + ), + Generator::STATE_FLAG_NONE, + 'texy-hr', + null + ), + 'BLOCK_HTML_BODY' => array( + array( + 'LINE' => array('BLOCK_HTML_BODY_LINE', Generator::NEXT) + ), + Generator::STATE_FLAG_NONE, + 'texy-html', + null + ), + 'BLOCK_HTML_BODY_LINE' => array( + array( + '\---' => array('BLOCK_HTML_BODY_OUT', Generator::NEXT), + 'ALL' => array('BLOCK_HTML_BODY', Generator::BACK) + ), + Generator::STATE_FLAG_NONE, + 'texy-html', + null + ), + 'BLOCK_HTML_BODY_OUT' => array( + array( + 'ALL' => array('LINE_BODY', Generator::BACK) + ), + Generator::STATE_FLAG_NONE, + 'texy-hr', + null + ), + 'BLOCK_CODE' => array( + array( + 'LINE' => array('BLOCK_CODE_BODY', Generator::BACK) + ), + Generator::STATE_FLAG_NONE, + 'texy-hr', + null + ), + 'BLOCK_CODE_BODY' => array( + array( + 'LINE' => array('BLOCK_CODE_BODY_LINE', Generator::NEXT) + ), + Generator::STATE_FLAG_NONE, + 'texy-code', + null + ), + 'BLOCK_CODE_BODY_LINE' => array( + array( + '\---' => array('BLOCK_CODE_BODY_OUT', Generator::NEXT), + 'ALL' => array('BLOCK_CODE_BODY', Generator::BACK) + ), + Generator::STATE_FLAG_NONE, + 'texy-code', + null + ), + 'BLOCK_CODE_BODY_OUT' => array( + array( + 'ALL' => array('LINE_BODY', Generator::BACK) + ), + Generator::STATE_FLAG_NONE, + 'texy-hr', + null + ) + ); + } + + /** + * Returns special delimiters. + * + * @return array + */ + public function getDelimiters() + { + return array(); + } + + /** + * Returns keywords. + * + * @return array + */ + public function getKeywords() + { + return array(); + } +} diff --git a/apigen/libs/FSHL/FSHL/Output.php b/apigen/libs/FSHL/FSHL/Output.php new file mode 100644 index 00000000000..8f5def42f42 --- /dev/null +++ b/apigen/libs/FSHL/FSHL/Output.php @@ -0,0 +1,48 @@ +lastClass !== $class) { + if (null !== $this->lastClass) { + $output .= ''; + } + if (null !== $class) { + $output .= ''; + } + + $this->lastClass = $class; + } + + return $output . htmlspecialchars($part, ENT_COMPAT, 'UTF-8'); + } + + /** + * Outputs a keyword. + * + * @param string $part + * @param string $class + * @return string + */ + public function keyword($part, $class) + { + $output = ''; + + if ($this->lastClass !== $class) { + if (null !== $this->lastClass) { + $output .= ''; + } + if (null !== $class) { + $output .= ''; + } + + $this->lastClass = $class; + } + + return $output . htmlspecialchars($part, ENT_COMPAT, 'UTF-8'); + } +} \ No newline at end of file diff --git a/apigen/libs/FSHL/FSHL/Output/HtmlManual.php b/apigen/libs/FSHL/FSHL/Output/HtmlManual.php new file mode 100644 index 00000000000..dadecd1a660 --- /dev/null +++ b/apigen/libs/FSHL/FSHL/Output/HtmlManual.php @@ -0,0 +1,123 @@ + 'http://php.net/manual/en/langref.php', + 'php-keyword2' => 'http://php.net/%s', + + 'sql-keyword1' => 'http://search.oracle.com/search/search?group=MySQL&q=%s', + 'sql-keyword2' => 'http://search.oracle.com/search/search?group=MySQL&q=%s', + 'sql-keyword3' => 'http://search.oracle.com/search/search?group=MySQL&q=%s', + ); + + /** + * Outputs a template part. + * + * @param string $part + * @param string $class + * @return string + */ + public function template($part, $class) + { + $output = ''; + + if ($this->lastClass !== $class) { + if (null !== $this->lastClass) { + $output .= ''; + } + + $output .= $this->closeTag; + $this->closeTag = ''; + + if (null !== $class) { + $output .= ''; + } + + $this->lastClass = $class; + } + + return $output . htmlspecialchars($part, ENT_COMPAT, 'UTF-8'); + } + + /** + * Outputs a keyword. + * + * @param string $part + * @param string $class + * @return string + */ + public function keyword($part, $class) + { + $output = ''; + + if ($this->lastClass !== $class) { + if (null !== $this->lastClass) { + $output .= ''; + } + + $output .= $this->closeTag; + $this->closeTag = ''; + + if (null !== $class) { + if (isset($this->manualUrl[$class])) { + $output .= ''; + $this->closeTag = ''; + } + + $output .= ''; + } + + $this->lastClass = $class; + } + + return $output . htmlspecialchars($part, ENT_COMPAT, 'UTF-8'); + } +} \ No newline at end of file diff --git a/apigen/libs/FSHL/LICENSE b/apigen/libs/FSHL/LICENSE new file mode 100644 index 00000000000..ed03923cfe5 --- /dev/null +++ b/apigen/libs/FSHL/LICENSE @@ -0,0 +1,19 @@ +License +======= + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + + +GNU General Public License +-------------------------- + +GPL license is very very long, so instead of including it here we offer +you URL with full text: http://www.gnu.org/licenses/gpl-2.0.html diff --git a/apigen/libs/Nette/Nette/Application/Application.php b/apigen/libs/Nette/Nette/Application/Application.php new file mode 100644 index 00000000000..5ad4cacab48 --- /dev/null +++ b/apigen/libs/Nette/Nette/Application/Application.php @@ -0,0 +1,262 @@ +httpRequest = $httpRequest; + $this->httpResponse = $httpResponse; + $this->presenterFactory = $presenterFactory; + $this->router = $router; + } + + + + /** + * Dispatch a HTTP request to a front controller. + * @return void + */ + public function run() + { + $request = NULL; + $repeatedError = FALSE; + do { + try { + if (count($this->requests) > self::$maxLoop) { + throw new ApplicationException('Too many loops detected in application life cycle.'); + } + + if (!$request) { + $this->onStartup($this); + + $request = $this->router->match($this->httpRequest); + if (!$request instanceof Request) { + $request = NULL; + throw new BadRequestException('No route for HTTP request.'); + } + + if (strcasecmp($request->getPresenterName(), $this->errorPresenter) === 0) { + throw new BadRequestException('Invalid request. Presenter is not achievable.'); + } + } + + $this->requests[] = $request; + $this->onRequest($this, $request); + + // Instantiate presenter + $presenterName = $request->getPresenterName(); + try { + $this->presenter = $this->presenterFactory->createPresenter($presenterName); + } catch (InvalidPresenterException $e) { + throw new BadRequestException($e->getMessage(), 404, $e); + } + + $this->presenterFactory->getPresenterClass($presenterName); + $request->setPresenterName($presenterName); + $request->freeze(); + + // Execute presenter + $response = $this->presenter->run($request); + if ($response) { + $this->onResponse($this, $response); + } + + // Send response + if ($response instanceof Responses\ForwardResponse) { + $request = $response->getRequest(); + continue; + + } elseif ($response instanceof IResponse) { + $response->send($this->httpRequest, $this->httpResponse); + } + break; + + } catch (\Exception $e) { + // fault barrier + $this->onError($this, $e); + + if (!$this->catchExceptions) { + $this->onShutdown($this, $e); + throw $e; + } + + if ($repeatedError) { + $e = new ApplicationException('An error occurred while executing error-presenter', 0, $e); + } + + if (!$this->httpResponse->isSent()) { + $this->httpResponse->setCode($e instanceof BadRequestException ? $e->getCode() : 500); + } + + if (!$repeatedError && $this->errorPresenter) { + $repeatedError = TRUE; + if ($this->presenter instanceof UI\Presenter) { + try { + $this->presenter->forward(":$this->errorPresenter:", array('exception' => $e)); + } catch (AbortException $foo) { + $request = $this->presenter->getLastCreatedRequest(); + } + } else { + $request = new Request( + $this->errorPresenter, + Request::FORWARD, + array('exception' => $e) + ); + } + // continue + + } else { // default error handler + if ($e instanceof BadRequestException) { + $code = $e->getCode(); + } else { + $code = 500; + Nette\Diagnostics\Debugger::log($e, Nette\Diagnostics\Debugger::ERROR); + } + require __DIR__ . '/templates/error.phtml'; + break; + } + } + } while (1); + + $this->onShutdown($this, isset($e) ? $e : NULL); + } + + + + /** + * Returns all processed requests. + * @return Request[] + */ + final public function getRequests() + { + return $this->requests; + } + + + + /** + * Returns current presenter. + * @return IPresenter + */ + final public function getPresenter() + { + return $this->presenter; + } + + + + /********************* services ****************d*g**/ + + + + /** + * Returns router. + * @return IRouter + */ + public function getRouter() + { + return $this->router; + } + + + + /** + * Returns presenter factory. + * @return IPresenterFactory + */ + public function getPresenterFactory() + { + return $this->presenterFactory; + } + + + + /********************* request serialization ****************d*g**/ + + + + /** @deprecated */ + function storeRequest($expiration = '+ 10 minutes') + { + return $this->presenter->storeRequest($expiration); + } + + /** @deprecated */ + function restoreRequest($key) + { + return $this->presenter->restoreRequest($key); + } + +} diff --git a/apigen/libs/Nette/Nette/Application/Diagnostics/RoutingPanel.php b/apigen/libs/Nette/Nette/Application/Diagnostics/RoutingPanel.php new file mode 100644 index 00000000000..147abf1aaf7 --- /dev/null +++ b/apigen/libs/Nette/Nette/Application/Diagnostics/RoutingPanel.php @@ -0,0 +1,125 @@ +addPanel(function($e) use ($application) { + return $e ? NULL : array( + 'tab' => 'Nette Application', + 'panel' => '

Requests

' . Nette\Diagnostics\Helpers::clickableDump($application->getRequests()) + . '

Presenter

' . Nette\Diagnostics\Helpers::clickableDump($application->getPresenter()) + ); + }); + } + + + + public function __construct(Nette\Application\IRouter $router, Nette\Http\IRequest $httpRequest) + { + $this->router = $router; + $this->httpRequest = $httpRequest; + } + + + + /** + * Renders tab. + * @return string + */ + public function getTab() + { + $this->analyse($this->router); + ob_start(); + require __DIR__ . '/templates/RoutingPanel.tab.phtml'; + return ob_get_clean(); + } + + + + /** + * Renders panel. + * @return string + */ + public function getPanel() + { + ob_start(); + require __DIR__ . '/templates/RoutingPanel.panel.phtml'; + return ob_get_clean(); + } + + + + /** + * Analyses simple route. + * @param Nette\Application\IRouter + * @return void + */ + private function analyse($router, $module = '') + { + if ($router instanceof Routers\RouteList) { + foreach ($router as $subRouter) { + $this->analyse($subRouter, $module . $router->getModule()); + } + return; + } + + $matched = 'no'; + $request = $router->match($this->httpRequest); + if ($request) { + $request->setPresenterName($module . $request->getPresenterName()); + $matched = 'may'; + if (empty($this->request)) { + $this->request = $request; + $matched = 'yes'; + } + } + + $this->routers[] = array( + 'matched' => $matched, + 'class' => get_class($router), + 'defaults' => $router instanceof Routers\Route || $router instanceof Routers\SimpleRouter ? $router->getDefaults() : array(), + 'mask' => $router instanceof Routers\Route ? $router->getMask() : NULL, + 'request' => $request, + 'module' => rtrim($module, ':') + ); + } + +} diff --git a/apigen/libs/Nette/Nette/Application/Diagnostics/templates/RoutingPanel.panel.phtml b/apigen/libs/Nette/Nette/Application/Diagnostics/templates/RoutingPanel.panel.phtml new file mode 100644 index 00000000000..0ecf172f05a --- /dev/null +++ b/apigen/libs/Nette/Nette/Application/Diagnostics/templates/RoutingPanel.panel.phtml @@ -0,0 +1,119 @@ + + + +
+

+request)): ?> + no route + + request->getPresenterName() . ':' . (isset($this->request->parameters[Presenter::ACTION_KEY]) ? $this->request->parameters[Presenter::ACTION_KEY] : Presenter::DEFAULT_ACTION) . (isset($this->request->parameters[Presenter::SIGNAL_KEY]) ? " {$this->request->parameters[Presenter::SIGNAL_KEY]}!" : '')) ?> + +

+ +request)): ?> + request->getParameters() ?> + +

No parameters.

+ + + + + + + + + + + + $value): ?> + + + + + + +
ParameterValue
+ + + +

Routers

+ +routers)): ?> +

No routers defined.

+ + +
+ + + + + + + + + + + + + + routers as $router): ?> + + + + + + + + + + + + + + + +
Matched?ClassMaskDefaultsModuleRequest
+ $value): ?> +
+ +
+ getParameters(); ?> + getPresenterName() . ':' . (isset($params[Presenter::ACTION_KEY]) ? $params[Presenter::ACTION_KEY] : Presenter::DEFAULT_ACTION)) ?>
+ + $value): ?> +
+ +
+
+ +
diff --git a/apigen/libs/Nette/Nette/Application/Diagnostics/templates/RoutingPanel.tab.phtml b/apigen/libs/Nette/Nette/Application/Diagnostics/templates/RoutingPanel.tab.phtml new file mode 100644 index 00000000000..9edf58215f3 --- /dev/null +++ b/apigen/libs/Nette/Nette/Application/Diagnostics/templates/RoutingPanel.tab.phtml @@ -0,0 +1,10 @@ + +request)): ?>no routerequest->getPresenterName() . ':' . (isset($this->request->parameters[Presenter::ACTION_KEY]) ? $this->request->parameters[Presenter::ACTION_KEY] : Presenter::DEFAULT_ACTION) . (isset($this->request->parameters[Presenter::SIGNAL_KEY]) ? " {$this->request->parameters[Presenter::SIGNAL_KEY]}!" : '')); endif ?> diff --git a/apigen/libs/Nette/Nette/Application/IPresenter.php b/apigen/libs/Nette/Nette/Application/IPresenter.php new file mode 100644 index 00000000000..2ed245861d1 --- /dev/null +++ b/apigen/libs/Nette/Nette/Application/IPresenter.php @@ -0,0 +1,32 @@ + + */ +interface IPresenterFactory +{ + + /** + * @param string presenter name + * @return string class name + * @throws InvalidPresenterException + */ + function getPresenterClass(& $name); + + /** + * Create new presenter instance. + * @param string presenter name + * @return IPresenter + */ + function createPresenter($name); + +} diff --git a/apigen/libs/Nette/Nette/Application/IResponse.php b/apigen/libs/Nette/Nette/Application/IResponse.php new file mode 100644 index 00000000000..63d9810b6dc --- /dev/null +++ b/apigen/libs/Nette/Nette/Application/IResponse.php @@ -0,0 +1,32 @@ +context = $context; + } + + + + /** + * Gets the context. + * @return \SystemContainer|Nette\DI\Container + */ + final public function getContext() + { + return $this->context; + } + + + + /** + * @param Nette\Application\Request + * @return Nette\Application\IResponse + */ + public function run(Application\Request $request) + { + $this->request = $request; + + $httpRequest = $this->context->getByType('Nette\Http\IRequest'); + if (!$httpRequest->isAjax() && ($request->isMethod('get') || $request->isMethod('head'))) { + $refUrl = clone $httpRequest->getUrl(); + $url = $this->context->router->constructUrl($request, $refUrl->setPath($refUrl->getScriptPath())); + if ($url !== NULL && !$httpRequest->getUrl()->isEqual($url)) { + return new Responses\RedirectResponse($url, Http\IResponse::S301_MOVED_PERMANENTLY); + } + } + + $params = $request->getParameters(); + if (!isset($params['callback'])) { + return; + } + $params['presenter'] = $this; + $callback = new Nette\Callback($params['callback']); + $response = $callback->invokeArgs(Application\UI\PresenterComponentReflection::combineArgs($callback->toReflection(), $params)); + + if (is_string($response)) { + $response = array($response, array()); + } + if (is_array($response)) { + if ($response[0] instanceof \SplFileInfo) { + $response = $this->createTemplate('Nette\Templating\FileTemplate') + ->setParameters($response[1])->setFile($response[0]); + } else { + $response = $this->createTemplate('Nette\Templating\Template') + ->setParameters($response[1])->setSource($response[0]); + } + } + if ($response instanceof Nette\Templating\ITemplate) { + return new Responses\TextResponse($response); + } else { + return $response; + } + } + + + + /** + * Template factory. + * @param string + * @param callable + * @return Nette\Templating\ITemplate + */ + public function createTemplate($class = NULL, $latteFactory = NULL) + { + $template = $class ? new $class : new Nette\Templating\FileTemplate; + + $template->setParameters($this->request->getParameters()); + $template->presenter = $this; + $template->context = $context = $this->context; + $url = $context->getByType('Nette\Http\IRequest')->getUrl(); + $template->baseUrl = rtrim($url->getBaseUrl(), '/'); + $template->basePath = rtrim($url->getBasePath(), '/'); + + $template->registerHelperLoader('Nette\Templating\Helpers::loader'); + $template->setCacheStorage($context->nette->templateCacheStorage); + $template->onPrepareFilters[] = function($template) use ($latteFactory, $context) { + $template->registerFilter($latteFactory ? $latteFactory() : new Nette\Latte\Engine); + }; + return $template; + } + + + + /** + * Redirects to another URL. + * @param string + * @param int HTTP code + * @return void + */ + public function redirectUrl($url, $code = Http\IResponse::S302_FOUND) + { + return new Responses\RedirectResponse($url, $code); + } + + + + /** + * Throws HTTP error. + * @param string + * @param int HTTP error code + * @return void + * @throws Nette\Application\BadRequestException + */ + public function error($message = NULL, $code = Http\IResponse::S404_NOT_FOUND) + { + throw new Application\BadRequestException($message, $code); + } + + + + /** + * @return Nette\Application\IRequest + */ + public function getRequest() + { + return $this->request; + } + +} diff --git a/apigen/libs/Nette/Nette/Application/PresenterFactory.php b/apigen/libs/Nette/Nette/Application/PresenterFactory.php new file mode 100644 index 00000000000..bc0cbfe12ed --- /dev/null +++ b/apigen/libs/Nette/Nette/Application/PresenterFactory.php @@ -0,0 +1,171 @@ +baseDir = $baseDir; + $this->container = $container; + } + + + + /** + * Create new presenter instance. + * @param string presenter name + * @return IPresenter + */ + public function createPresenter($name) + { + $presenter = $this->container->createInstance($this->getPresenterClass($name)); + if (method_exists($presenter, 'setContext')) { + $this->container->callMethod(array($presenter, 'setContext')); + } + foreach (array_reverse(get_class_methods($presenter)) as $method) { + if (substr($method, 0, 6) === 'inject') { + $this->container->callMethod(array($presenter, $method)); + } + } + + if ($presenter instanceof UI\Presenter && $presenter->invalidLinkMode === NULL) { + $presenter->invalidLinkMode = $this->container->parameters['debugMode'] ? UI\Presenter::INVALID_LINK_WARNING : UI\Presenter::INVALID_LINK_SILENT; + } + return $presenter; + } + + + + /** + * @param string presenter name + * @return string class name + * @throws InvalidPresenterException + */ + public function getPresenterClass(& $name) + { + if (isset($this->cache[$name])) { + list($class, $name) = $this->cache[$name]; + return $class; + } + + if (!is_string($name) || !Nette\Utils\Strings::match($name, "#^[a-zA-Z\x7f-\xff][a-zA-Z0-9\x7f-\xff:]*$#")) { + throw new InvalidPresenterException("Presenter name must be alphanumeric string, '$name' is invalid."); + } + + $class = $this->formatPresenterClass($name); + + if (!class_exists($class)) { + // internal autoloading + $file = $this->formatPresenterFile($name); + if (is_file($file) && is_readable($file)) { + Nette\Utils\LimitedScope::load($file, TRUE); + } + + if (!class_exists($class)) { + throw new InvalidPresenterException("Cannot load presenter '$name', class '$class' was not found in '$file'."); + } + } + + $reflection = new Nette\Reflection\ClassType($class); + $class = $reflection->getName(); + + if (!$reflection->implementsInterface('Nette\Application\IPresenter')) { + throw new InvalidPresenterException("Cannot load presenter '$name', class '$class' is not Nette\\Application\\IPresenter implementor."); + } + + if ($reflection->isAbstract()) { + throw new InvalidPresenterException("Cannot load presenter '$name', class '$class' is abstract."); + } + + // canonicalize presenter name + $realName = $this->unformatPresenterClass($class); + if ($name !== $realName) { + if ($this->caseSensitive) { + throw new InvalidPresenterException("Cannot load presenter '$name', case mismatch. Real name is '$realName'."); + } else { + $this->cache[$name] = array($class, $realName); + $name = $realName; + } + } else { + $this->cache[$name] = array($class, $realName); + } + + return $class; + } + + + + /** + * Formats presenter class name from its name. + * @param string + * @return string + */ + public function formatPresenterClass($presenter) + { + /*5.2*return strtr($presenter, ':', '_') . 'Presenter';*/ + return str_replace(':', 'Module\\', $presenter) . 'Presenter'; + } + + + + /** + * Formats presenter name from class name. + * @param string + * @return string + */ + public function unformatPresenterClass($class) + { + /*5.2*return strtr(substr($class, 0, -9), '_', ':');*/ + return str_replace('Module\\', ':', substr($class, 0, -9)); + } + + + + /** + * Formats presenter class file name. + * @param string + * @return string + */ + public function formatPresenterFile($presenter) + { + $path = '/' . str_replace(':', 'Module/', $presenter); + return $this->baseDir . substr_replace($path, '/presenters', strrpos($path, '/'), 0) . 'Presenter.php'; + } + +} diff --git a/apigen/libs/Nette/Nette/Application/Request.php b/apigen/libs/Nette/Nette/Application/Request.php new file mode 100644 index 00000000000..b4b6c4a5b03 --- /dev/null +++ b/apigen/libs/Nette/Nette/Application/Request.php @@ -0,0 +1,270 @@ +name = $name; + $this->method = $method; + $this->params = $params; + $this->post = $post; + $this->files = $files; + $this->flags = $flags; + } + + + + /** + * Sets the presenter name. + * @param string + * @return Request provides a fluent interface + */ + public function setPresenterName($name) + { + $this->updating(); + $this->name = $name; + return $this; + } + + + + /** + * Retrieve the presenter name. + * @return string + */ + public function getPresenterName() + { + return $this->name; + } + + + + /** + * Sets variables provided to the presenter. + * @param array + * @return Request provides a fluent interface + */ + public function setParameters(array $params) + { + $this->updating(); + $this->params = $params; + return $this; + } + + + + /** + * Returns all variables provided to the presenter (usually via URL). + * @return array + */ + public function getParameters() + { + return $this->params; + } + + + + /** @deprecated */ + function setParams(array $params) + { + trigger_error(__METHOD__ . '() is deprecated; use setParameters() instead.', E_USER_WARNING); + return $this->setParameters($params); + } + + + + /** @deprecated */ + function getParams() + { + trigger_error(__METHOD__ . '() is deprecated; use getParameters() instead.', E_USER_WARNING); + return $this->getParameters(); + } + + + + /** + * Sets variables provided to the presenter via POST. + * @param array + * @return Request provides a fluent interface + */ + public function setPost(array $params) + { + $this->updating(); + $this->post = $params; + return $this; + } + + + + /** + * Returns all variables provided to the presenter via POST. + * @return array + */ + public function getPost() + { + return $this->post; + } + + + + /** + * Sets all uploaded files. + * @param array + * @return Request provides a fluent interface + */ + public function setFiles(array $files) + { + $this->updating(); + $this->files = $files; + return $this; + } + + + + /** + * Returns all uploaded files. + * @return array + */ + public function getFiles() + { + return $this->files; + } + + + + /** + * Sets the method. + * @param string + * @return Request provides a fluent interface + */ + public function setMethod($method) + { + $this->method = $method; + return $this; + } + + + + /** + * Returns the method. + * @return string + */ + public function getMethod() + { + return $this->method; + } + + + + /** + * Checks if the method is the given one. + * @param string + * @return bool + */ + public function isMethod($method) + { + return strcasecmp($this->method, $method) === 0; + } + + + + /** + * Checks if the method is POST. + * @return bool + */ + public function isPost() + { + return strcasecmp($this->method, 'post') === 0; + } + + + + /** + * Sets the flag. + * @param string + * @param bool + * @return Request provides a fluent interface + */ + public function setFlag($flag, $value = TRUE) + { + $this->updating(); + $this->flags[$flag] = (bool) $value; + return $this; + } + + + + /** + * Checks the flag. + * @param string + * @return bool + */ + public function hasFlag($flag) + { + return !empty($this->flags[$flag]); + } + +} diff --git a/apigen/libs/Nette/Nette/Application/Responses/FileResponse.php b/apigen/libs/Nette/Nette/Application/Responses/FileResponse.php new file mode 100644 index 00000000000..298a2b69462 --- /dev/null +++ b/apigen/libs/Nette/Nette/Application/Responses/FileResponse.php @@ -0,0 +1,139 @@ +file = $file; + $this->name = $name ? $name : basename($file); + $this->contentType = $contentType ? $contentType : 'application/octet-stream'; + } + + + + /** + * Returns the path to a downloaded file. + * @return string + */ + final public function getFile() + { + return $this->file; + } + + + + /** + * Returns the file name. + * @return string + */ + final public function getName() + { + return $this->name; + } + + + + /** + * Returns the MIME content type of a downloaded file. + * @return string + */ + final public function getContentType() + { + return $this->contentType; + } + + + + /** + * Sends response to output. + * @return void + */ + public function send(Nette\Http\IRequest $httpRequest, Nette\Http\IResponse $httpResponse) + { + $httpResponse->setContentType($this->contentType); + $httpResponse->setHeader('Content-Disposition', 'attachment; filename="' . $this->name . '"'); + + $filesize = $length = filesize($this->file); + $handle = fopen($this->file, 'r'); + + if ($this->resuming) { + $httpResponse->setHeader('Accept-Ranges', 'bytes'); + if (preg_match('#^bytes=(\d*)-(\d*)$#', $httpRequest->getHeader('Range'), $matches)) { + list(, $start, $end) = $matches; + if ($start === '') { + $start = max(0, $filesize - $end); + $end = $filesize - 1; + + } elseif ($end === '' || $end > $filesize - 1) { + $end = $filesize - 1; + } + if ($end <= $start) { + $httpResponse->setCode(416); // requested range not satisfiable + return; + } + + $httpResponse->setCode(206); + $httpResponse->setHeader('Content-Range', 'bytes ' . $start . '-' . $end . '/' . $filesize); + $length = $end - $start + 1; + fseek($handle, $start); + + } else { + $httpResponse->setHeader('Content-Range', 'bytes 0-' . ($filesize - 1) . '/' . $filesize); + } + } + + $httpResponse->setHeader('Content-Length', $length); + while (!feof($handle) && $length > 0) { + echo $s = fread($handle, min(4e6, $length)); + $length -= strlen($s); + } + fclose($handle); + } + +} diff --git a/apigen/libs/Nette/Nette/Application/Responses/ForwardResponse.php b/apigen/libs/Nette/Nette/Application/Responses/ForwardResponse.php new file mode 100644 index 00000000000..edfa1d80e1c --- /dev/null +++ b/apigen/libs/Nette/Nette/Application/Responses/ForwardResponse.php @@ -0,0 +1,60 @@ +request = $request; + } + + + + /** + * @return Nette\Application\Request + */ + final public function getRequest() + { + return $this->request; + } + + + + /** + * Sends response to output. + * @return void + */ + public function send(Nette\Http\IRequest $httpRequest, Nette\Http\IResponse $httpResponse) + { + } + +} diff --git a/apigen/libs/Nette/Nette/Application/Responses/JsonResponse.php b/apigen/libs/Nette/Nette/Application/Responses/JsonResponse.php new file mode 100644 index 00000000000..1002de9e705 --- /dev/null +++ b/apigen/libs/Nette/Nette/Application/Responses/JsonResponse.php @@ -0,0 +1,83 @@ +payload = $payload; + $this->contentType = $contentType ? $contentType : 'application/json'; + } + + + + /** + * @return array|\stdClass + */ + final public function getPayload() + { + return $this->payload; + } + + + + /** + * Returns the MIME content type of a downloaded file. + * @return string + */ + final public function getContentType() + { + return $this->contentType; + } + + + + /** + * Sends response to output. + * @return void + */ + public function send(Nette\Http\IRequest $httpRequest, Nette\Http\IResponse $httpResponse) + { + $httpResponse->setContentType($this->contentType); + $httpResponse->setExpiration(FALSE); + echo Nette\Utils\Json::encode($this->payload); + } + +} diff --git a/apigen/libs/Nette/Nette/Application/Responses/RedirectResponse.php b/apigen/libs/Nette/Nette/Application/Responses/RedirectResponse.php new file mode 100644 index 00000000000..92d7ce9064a --- /dev/null +++ b/apigen/libs/Nette/Nette/Application/Responses/RedirectResponse.php @@ -0,0 +1,78 @@ +url = (string) $url; + $this->code = (int) $code; + } + + + + /** + * @return string + */ + final public function getUrl() + { + return $this->url; + } + + + + /** + * @return int + */ + final public function getCode() + { + return $this->code; + } + + + + /** + * Sends response to output. + * @return void + */ + public function send(Http\IRequest $httpRequest, Http\IResponse $httpResponse) + { + $httpResponse->redirect($this->url, $this->code); + } + +} diff --git a/apigen/libs/Nette/Nette/Application/Responses/TextResponse.php b/apigen/libs/Nette/Nette/Application/Responses/TextResponse.php new file mode 100644 index 00000000000..dbd3138fff8 --- /dev/null +++ b/apigen/libs/Nette/Nette/Application/Responses/TextResponse.php @@ -0,0 +1,66 @@ +source = $source; + } + + + + /** + * @return mixed + */ + final public function getSource() + { + return $this->source; + } + + + + /** + * Sends response to output. + * @return void + */ + public function send(Nette\Http\IRequest $httpRequest, Nette\Http\IResponse $httpResponse) + { + if ($this->source instanceof Nette\Templating\ITemplate) { + $this->source->render(); + + } else { + echo $this->source; + } + } + +} diff --git a/apigen/libs/Nette/Nette/Application/Routers/CliRouter.php b/apigen/libs/Nette/Nette/Application/Routers/CliRouter.php new file mode 100644 index 00000000000..5c842edf77d --- /dev/null +++ b/apigen/libs/Nette/Nette/Application/Routers/CliRouter.php @@ -0,0 +1,129 @@ +defaults = $defaults; + } + + + + /** + * Maps command line arguments to a Request object. + * @param Nette\Http\IRequest + * @return Nette\Application\Request|NULL + */ + public function match(Nette\Http\IRequest $httpRequest) + { + if (empty($_SERVER['argv']) || !is_array($_SERVER['argv'])) { + return NULL; + } + + $names = array(self::PRESENTER_KEY); + $params = $this->defaults; + $args = $_SERVER['argv']; + array_shift($args); + $args[] = '--'; + + foreach ($args as $arg) { + $opt = preg_replace('#/|-+#A', '', $arg); + if ($opt === $arg) { + if (isset($flag) || $flag = array_shift($names)) { + $params[$flag] = $arg; + } else { + $params[] = $arg; + } + $flag = NULL; + continue; + } + + if (isset($flag)) { + $params[$flag] = TRUE; + $flag = NULL; + } + + if ($opt !== '') { + $pair = explode('=', $opt, 2); + if (isset($pair[1])) { + $params[$pair[0]] = $pair[1]; + } else { + $flag = $pair[0]; + } + } + } + + if (!isset($params[self::PRESENTER_KEY])) { + throw new Nette\InvalidStateException('Missing presenter & action in route definition.'); + } + $presenter = $params[self::PRESENTER_KEY]; + if ($a = strrpos($presenter, ':')) { + $params[self::PRESENTER_KEY] = substr($presenter, $a + 1); + $presenter = substr($presenter, 0, $a); + } + + return new Application\Request( + $presenter, + 'CLI', + $params + ); + } + + + + /** + * This router is only unidirectional. + * @param Nette\Application\Request + * @param Nette\Http\Url + * @return NULL + */ + public function constructUrl(Application\Request $appRequest, Nette\Http\Url $refUrl) + { + return NULL; + } + + + + /** + * Returns default values. + * @return array + */ + public function getDefaults() + { + return $this->defaults; + } + +} diff --git a/apigen/libs/Nette/Nette/Application/Routers/Route.php b/apigen/libs/Nette/Nette/Application/Routers/Route.php new file mode 100644 index 00000000000..1c5c5816459 --- /dev/null +++ b/apigen/libs/Nette/Nette/Application/Routers/Route.php @@ -0,0 +1,825 @@ + array( // default style for path parameters + self::PATTERN => '[^/]+', + self::FILTER_IN => 'rawurldecode', + self::FILTER_OUT => array(__CLASS__, 'param2path'), + ), + '?#' => array( // default style for query parameters + ), + 'module' => array( + self::PATTERN => '[a-z][a-z0-9.-]*', + self::FILTER_IN => array(__CLASS__, 'path2presenter'), + self::FILTER_OUT => array(__CLASS__, 'presenter2path'), + ), + 'presenter' => array( + self::PATTERN => '[a-z][a-z0-9.-]*', + self::FILTER_IN => array(__CLASS__, 'path2presenter'), + self::FILTER_OUT => array(__CLASS__, 'presenter2path'), + ), + 'action' => array( + self::PATTERN => '[a-z][a-z0-9-]*', + self::FILTER_IN => array(__CLASS__, 'path2action'), + self::FILTER_OUT => array(__CLASS__, 'action2path'), + ), + '?module' => array( + ), + '?presenter' => array( + ), + '?action' => array( + ), + ); + + /** @var string */ + private $mask; + + /** @var array */ + private $sequence; + + /** @var string regular expression pattern */ + private $re; + + /** @var array of [value & fixity, filterIn, filterOut] */ + private $metadata = array(); + + /** @var array */ + private $xlat; + + /** @var int HOST, PATH, RELATIVE */ + private $type; + + /** @var int */ + private $flags; + + + + /** + * @param string URL mask, e.g. '//' + * @param array|string default values or metadata + * @param int flags + */ + public function __construct($mask, $metadata = array(), $flags = 0) + { + if (is_string($metadata)) { + $a = strrpos($metadata, ':'); + if (!$a) { + throw new Nette\InvalidArgumentException("Second argument must be array or string in format Presenter:action, '$metadata' given."); + } + $metadata = array( + self::PRESENTER_KEY => substr($metadata, 0, $a), + 'action' => $a === strlen($metadata) - 1 ? NULL : substr($metadata, $a + 1), + ); + } elseif ($metadata instanceof \Closure || $metadata instanceof Nette\Callback) { + $metadata = array( + self::PRESENTER_KEY => 'Nette:Micro', + 'callback' => $metadata, + ); + } + + $this->flags = $flags | static::$defaultFlags; + $this->setMask($mask, $metadata); + } + + + + /** + * Maps HTTP request to a Request object. + * @param Nette\Http\IRequest + * @return Nette\Application\Request|NULL + */ + public function match(Nette\Http\IRequest $httpRequest) + { + // combine with precedence: mask (params in URL-path), fixity, query, (post,) defaults + + // 1) URL MASK + $url = $httpRequest->getUrl(); + + if ($this->type === self::HOST) { + $path = '//' . $url->getHost() . $url->getPath(); + + } elseif ($this->type === self::RELATIVE) { + $basePath = $url->getBasePath(); + if (strncmp($url->getPath(), $basePath, strlen($basePath)) !== 0) { + return NULL; + } + $path = (string) substr($url->getPath(), strlen($basePath)); + + } else { + $path = $url->getPath(); + } + + if ($path !== '') { + $path = rtrim($path, '/') . '/'; + } + + if (!$matches = Strings::match($path, $this->re)) { + // stop, not matched + return NULL; + } + + // deletes numeric keys, restore '-' chars + $params = array(); + foreach ($matches as $k => $v) { + if (is_string($k) && $v !== '') { + $params[str_replace('___', '-', $k)] = $v; // trick + } + } + + + // 2) CONSTANT FIXITY + foreach ($this->metadata as $name => $meta) { + if (isset($params[$name])) { + //$params[$name] = $this->flags & self::CASE_SENSITIVE === 0 ? strtolower($params[$name]) : */$params[$name]; // strtolower damages UTF-8 + + } elseif (isset($meta['fixity']) && $meta['fixity'] !== self::OPTIONAL) { + $params[$name] = NULL; // cannot be overwriten in 3) and detected by isset() in 4) + } + } + + + // 3) QUERY + if ($this->xlat) { + $params += self::renameKeys($httpRequest->getQuery(), array_flip($this->xlat)); + } else { + $params += $httpRequest->getQuery(); + } + + + // 4) APPLY FILTERS & FIXITY + foreach ($this->metadata as $name => $meta) { + if (isset($params[$name])) { + if (!is_scalar($params[$name])) { + + } elseif (isset($meta[self::FILTER_TABLE][$params[$name]])) { // applies filterTable only to scalar parameters + $params[$name] = $meta[self::FILTER_TABLE][$params[$name]]; + + } elseif (isset($meta[self::FILTER_TABLE]) && !empty($meta[self::FILTER_STRICT])) { + return NULL; // rejected by filterTable + + } elseif (isset($meta[self::FILTER_IN])) { // applies filterIn only to scalar parameters + $params[$name] = call_user_func($meta[self::FILTER_IN], (string) $params[$name]); + if ($params[$name] === NULL && !isset($meta['fixity'])) { + return NULL; // rejected by filter + } + } + + } elseif (isset($meta['fixity'])) { + $params[$name] = $meta[self::VALUE]; + } + } + + + // 5) BUILD Request + if (!isset($params[self::PRESENTER_KEY])) { + throw new Nette\InvalidStateException('Missing presenter in route definition.'); + } + if (isset($this->metadata[self::MODULE_KEY])) { + if (!isset($params[self::MODULE_KEY])) { + throw new Nette\InvalidStateException('Missing module in route definition.'); + } + $presenter = $params[self::MODULE_KEY] . ':' . $params[self::PRESENTER_KEY]; + unset($params[self::MODULE_KEY], $params[self::PRESENTER_KEY]); + + } else { + $presenter = $params[self::PRESENTER_KEY]; + unset($params[self::PRESENTER_KEY]); + } + + return new Application\Request( + $presenter, + $httpRequest->getMethod(), + $params, + $httpRequest->getPost(), + $httpRequest->getFiles(), + array(Application\Request::SECURED => $httpRequest->isSecured()) + ); + } + + + + /** + * Constructs absolute URL from Request object. + * @param Nette\Application\Request + * @param Nette\Http\Url + * @return string|NULL + */ + public function constructUrl(Application\Request $appRequest, Nette\Http\Url $refUrl) + { + if ($this->flags & self::ONE_WAY) { + return NULL; + } + + $params = $appRequest->getParameters(); + $metadata = $this->metadata; + + $presenter = $appRequest->getPresenterName(); + $params[self::PRESENTER_KEY] = $presenter; + + if (isset($metadata[self::MODULE_KEY])) { // try split into module and [submodule:]presenter parts + $module = $metadata[self::MODULE_KEY]; + if (isset($module['fixity']) && strncasecmp($presenter, $module[self::VALUE] . ':', strlen($module[self::VALUE]) + 1) === 0) { + $a = strlen($module[self::VALUE]); + } else { + $a = strrpos($presenter, ':'); + } + if ($a === FALSE) { + $params[self::MODULE_KEY] = ''; + } else { + $params[self::MODULE_KEY] = substr($presenter, 0, $a); + $params[self::PRESENTER_KEY] = substr($presenter, $a + 1); + } + } + + foreach ($metadata as $name => $meta) { + if (!isset($params[$name])) { + continue; // retains NULL values + } + + if (isset($meta['fixity'])) { + if ($params[$name] === FALSE) { + $params[$name] = '0'; + } + if (is_scalar($params[$name]) ? strcasecmp($params[$name], $meta[self::VALUE]) === 0 + : $params[$name] === $meta[self::VALUE] + ) { // remove default values; NULL values are retain + unset($params[$name]); + continue; + + } elseif ($meta['fixity'] === self::CONSTANT) { + return NULL; // missing or wrong parameter '$name' + } + } + + if (!is_scalar($params[$name])) { + + } elseif (isset($meta['filterTable2'][$params[$name]])) { + $params[$name] = $meta['filterTable2'][$params[$name]]; + + } elseif (isset($meta['filterTable2']) && !empty($meta[self::FILTER_STRICT])) { + return NULL; + + } elseif (isset($meta[self::FILTER_OUT])) { + $params[$name] = call_user_func($meta[self::FILTER_OUT], $params[$name]); + } + + if (isset($meta[self::PATTERN]) && !preg_match($meta[self::PATTERN], rawurldecode($params[$name]))) { + return NULL; // pattern not match + } + } + + // compositing path + $sequence = $this->sequence; + $brackets = array(); + $required = NULL; // NULL for auto-optional + $url = ''; + $i = count($sequence) - 1; + do { + $url = $sequence[$i] . $url; + if ($i === 0) { + break; + } + $i--; + + $name = $sequence[$i]; $i--; // parameter name + + if ($name === ']') { // opening optional part + $brackets[] = $url; + + } elseif ($name[0] === '[') { // closing optional part + $tmp = array_pop($brackets); + if ($required < count($brackets) + 1) { // is this level optional? + if ($name !== '[!') { // and not "required"-optional + $url = $tmp; + } + } else { + $required = count($brackets); + } + + } elseif ($name[0] === '?') { // "foo" parameter + continue; + + } elseif (isset($params[$name]) && $params[$name] != '') { // intentionally == + $required = count($brackets); // make this level required + $url = $params[$name] . $url; + unset($params[$name]); + + } elseif (isset($metadata[$name]['fixity'])) { // has default value? + if ($required === NULL && !$brackets) { // auto-optional + $url = ''; + } else { + $url = $metadata[$name]['defOut'] . $url; + } + + } else { + return NULL; // missing parameter '$name' + } + } while (TRUE); + + + // build query string + if ($this->xlat) { + $params = self::renameKeys($params, $this->xlat); + } + + $sep = ini_get('arg_separator.input'); + $query = http_build_query($params, '', $sep ? $sep[0] : '&'); + if ($query != '') { // intentionally == + $url .= '?' . $query; + } + + // absolutize path + if ($this->type === self::RELATIVE) { + $url = '//' . $refUrl->getAuthority() . $refUrl->getBasePath() . $url; + + } elseif ($this->type === self::PATH) { + $url = '//' . $refUrl->getAuthority() . $url; + } + + if (strpos($url, '//', 2) !== FALSE) { + return NULL; // TODO: implement counterpart in match() ? + } + + $url = ($this->flags & self::SECURED ? 'https:' : 'http:') . $url; + + return $url; + } + + + + /** + * Parse mask and array of default values; initializes object. + * @param string + * @param array + * @return void + */ + private function setMask($mask, array $metadata) + { + $this->mask = $mask; + + // detect '//host/path' vs. '/abs. path' vs. 'relative path' + if (substr($mask, 0, 2) === '//') { + $this->type = self::HOST; + + } elseif (substr($mask, 0, 1) === '/') { + $this->type = self::PATH; + + } else { + $this->type = self::RELATIVE; + } + + foreach ($metadata as $name => $meta) { + if (!is_array($meta)) { + $metadata[$name] = array(self::VALUE => $meta, 'fixity' => self::CONSTANT); + + } elseif (array_key_exists(self::VALUE, $meta)) { + $metadata[$name]['fixity'] = self::CONSTANT; + } + } + + // PARSE MASK + // or [ or ] or ?... + $parts = Strings::split($mask, '/<([^>#= ]+)(=[^># ]*)? *([^>#]*)(#?[^>\[\]]*)>|(\[!?|\]|\s*\?.*)/'); + + $this->xlat = array(); + $i = count($parts) - 1; + + // PARSE QUERY PART OF MASK + if (isset($parts[$i - 1]) && substr(ltrim($parts[$i - 1]), 0, 1) === '?') { + // name= + $matches = Strings::matchAll($parts[$i - 1], '/(?:([a-zA-Z0-9_.-]+)=)?<([^># ]+) *([^>#]*)(#?[^>]*)>/'); + + foreach ($matches as $match) { + list(, $param, $name, $pattern, $class) = $match; // $pattern is not used + + if ($class !== '') { + if (!isset(static::$styles[$class])) { + throw new Nette\InvalidStateException("Parameter '$name' has '$class' flag, but Route::\$styles['$class'] is not set."); + } + $meta = static::$styles[$class]; + + } elseif (isset(static::$styles['?' . $name])) { + $meta = static::$styles['?' . $name]; + + } else { + $meta = static::$styles['?#']; + } + + if (isset($metadata[$name])) { + $meta = $metadata[$name] + $meta; + } + + if (array_key_exists(self::VALUE, $meta)) { + $meta['fixity'] = self::OPTIONAL; + } + + unset($meta['pattern']); + $meta['filterTable2'] = empty($meta[self::FILTER_TABLE]) ? NULL : array_flip($meta[self::FILTER_TABLE]); + + $metadata[$name] = $meta; + if ($param !== '') { + $this->xlat[$name] = $param; + } + } + $i -= 6; + } + + // PARSE PATH PART OF MASK + $brackets = 0; // optional level + $re = ''; + $sequence = array(); + $autoOptional = TRUE; + do { + array_unshift($sequence, $parts[$i]); + $re = preg_quote($parts[$i], '#') . $re; + if ($i === 0) { + break; + } + $i--; + + $part = $parts[$i]; // [ or ] + if ($part === '[' || $part === ']' || $part === '[!') { + $brackets += $part[0] === '[' ? -1 : 1; + if ($brackets < 0) { + throw new Nette\InvalidArgumentException("Unexpected '$part' in mask '$mask'."); + } + array_unshift($sequence, $part); + $re = ($part[0] === '[' ? '(?:' : ')?') . $re; + $i -= 5; + continue; + } + + $class = $parts[$i]; $i--; // validation class + $pattern = trim($parts[$i]); $i--; // validation condition (as regexp) + $default = $parts[$i]; $i--; // default value + $name = $parts[$i]; $i--; // parameter name + array_unshift($sequence, $name); + + if ($name[0] === '?') { // "foo" parameter + $re = '(?:' . preg_quote(substr($name, 1), '#') . '|' . $pattern . ')' . $re; + $sequence[1] = substr($name, 1) . $sequence[1]; + continue; + } + + // check name (limitation by regexp) + if (preg_match('#[^a-z0-9_-]#i', $name)) { + throw new Nette\InvalidArgumentException("Parameter name must be alphanumeric string due to limitations of PCRE, '$name' given."); + } + + // pattern, condition & metadata + if ($class !== '') { + if (!isset(static::$styles[$class])) { + throw new Nette\InvalidStateException("Parameter '$name' has '$class' flag, but Route::\$styles['$class'] is not set."); + } + $meta = static::$styles[$class]; + + } elseif (isset(static::$styles[$name])) { + $meta = static::$styles[$name]; + + } else { + $meta = static::$styles['#']; + } + + if (isset($metadata[$name])) { + $meta = $metadata[$name] + $meta; + } + + if ($pattern == '' && isset($meta[self::PATTERN])) { + $pattern = $meta[self::PATTERN]; + } + + if ($default !== '') { + $meta[self::VALUE] = (string) substr($default, 1); + $meta['fixity'] = self::PATH_OPTIONAL; + } + + $meta['filterTable2'] = empty($meta[self::FILTER_TABLE]) ? NULL : array_flip($meta[self::FILTER_TABLE]); + if (array_key_exists(self::VALUE, $meta)) { + if (isset($meta['filterTable2'][$meta[self::VALUE]])) { + $meta['defOut'] = $meta['filterTable2'][$meta[self::VALUE]]; + + } elseif (isset($meta[self::FILTER_OUT])) { + $meta['defOut'] = call_user_func($meta[self::FILTER_OUT], $meta[self::VALUE]); + + } else { + $meta['defOut'] = $meta[self::VALUE]; + } + } + $meta[self::PATTERN] = "#(?:$pattern)$#A" . ($this->flags & self::CASE_SENSITIVE ? '' : 'iu'); + + // include in expression + $re = '(?P<' . str_replace('-', '___', $name) . '>(?U)' . $pattern . ')' . $re; // str_replace is dirty trick to enable '-' in parameter name + if ($brackets) { // is in brackets? + if (!isset($meta[self::VALUE])) { + $meta[self::VALUE] = $meta['defOut'] = NULL; + } + $meta['fixity'] = self::PATH_OPTIONAL; + + } elseif (!$autoOptional) { + unset($meta['fixity']); + + } elseif (isset($meta['fixity'])) { // auto-optional + $re = '(?:' . $re . ')?'; + $meta['fixity'] = self::PATH_OPTIONAL; + + } else { + $autoOptional = FALSE; + } + + $metadata[$name] = $meta; + } while (TRUE); + + if ($brackets) { + throw new Nette\InvalidArgumentException("Missing closing ']' in mask '$mask'."); + } + + $this->re = '#' . $re . '/?$#A' . ($this->flags & self::CASE_SENSITIVE ? '' : 'iu'); + $this->metadata = $metadata; + $this->sequence = $sequence; + } + + + + /** + * Returns mask. + * @return string + */ + public function getMask() + { + return $this->mask; + } + + + + /** + * Returns default values. + * @return array + */ + public function getDefaults() + { + $defaults = array(); + foreach ($this->metadata as $name => $meta) { + if (isset($meta['fixity'])) { + $defaults[$name] = $meta[self::VALUE]; + } + } + return $defaults; + } + + + + /** + * Returns flags. + * @return int + */ + public function getFlags() + { + return $this->flags; + } + + + + /********************* Utilities ****************d*g**/ + + + + /** + * Proprietary cache aim. + * @return string|FALSE + */ + public function getTargetPresenter() + { + if ($this->flags & self::ONE_WAY) { + return FALSE; + } + + $m = $this->metadata; + $module = ''; + + if (isset($m[self::MODULE_KEY])) { + if (isset($m[self::MODULE_KEY]['fixity']) && $m[self::MODULE_KEY]['fixity'] === self::CONSTANT) { + $module = $m[self::MODULE_KEY][self::VALUE] . ':'; + } else { + return NULL; + } + } + + if (isset($m[self::PRESENTER_KEY]['fixity']) && $m[self::PRESENTER_KEY]['fixity'] === self::CONSTANT) { + return $module . $m[self::PRESENTER_KEY][self::VALUE]; + } + return NULL; + } + + + + /** + * Rename keys in array. + * @param array + * @param array + * @return array + */ + private static function renameKeys($arr, $xlat) + { + if (empty($xlat)) { + return $arr; + } + + $res = array(); + $occupied = array_flip($xlat); + foreach ($arr as $k => $v) { + if (isset($xlat[$k])) { + $res[$xlat[$k]] = $v; + + } elseif (!isset($occupied[$k])) { + $res[$k] = $v; + } + } + return $res; + } + + + + /********************* Inflectors ****************d*g**/ + + + + /** + * camelCaseAction name -> dash-separated. + * @param string + * @return string + */ + private static function action2path($s) + { + $s = preg_replace('#(.)(?=[A-Z])#', '$1-', $s); + $s = strtolower($s); + $s = rawurlencode($s); + return $s; + } + + + + /** + * dash-separated -> camelCaseAction name. + * @param string + * @return string + */ + private static function path2action($s) + { + $s = strtolower($s); + $s = preg_replace('#-(?=[a-z])#', ' ', $s); + $s = substr(ucwords('x' . $s), 1); + //$s = lcfirst(ucwords($s)); + $s = str_replace(' ', '', $s); + return $s; + } + + + + /** + * PascalCase:Presenter name -> dash-and-dot-separated. + * @param string + * @return string + */ + private static function presenter2path($s) + { + $s = strtr($s, ':', '.'); + $s = preg_replace('#([^.])(?=[A-Z])#', '$1-', $s); + $s = strtolower($s); + $s = rawurlencode($s); + return $s; + } + + + + /** + * dash-and-dot-separated -> PascalCase:Presenter name. + * @param string + * @return string + */ + private static function path2presenter($s) + { + $s = strtolower($s); + $s = preg_replace('#([.-])(?=[a-z])#', '$1 ', $s); + $s = ucwords($s); + $s = str_replace('. ', ':', $s); + $s = str_replace('- ', '', $s); + return $s; + } + + + + /** + * Url encode. + * @param string + * @return string + */ + private static function param2path($s) + { + return str_replace('%2F', '/', rawurlencode($s)); + } + + + + /********************* Route::$styles manipulator ****************d*g**/ + + + + /** + * Creates new style. + * @param string style name (#style, urlParameter, ?queryParameter) + * @param string optional parent style name + * @return void + */ + public static function addStyle($style, $parent = '#') + { + if (isset(static::$styles[$style])) { + throw new Nette\InvalidArgumentException("Style '$style' already exists."); + } + + if ($parent !== NULL) { + if (!isset(static::$styles[$parent])) { + throw new Nette\InvalidArgumentException("Parent style '$parent' doesn't exist."); + } + static::$styles[$style] = static::$styles[$parent]; + + } else { + static::$styles[$style] = array(); + } + } + + + + /** + * Changes style property value. + * @param string style name (#style, urlParameter, ?queryParameter) + * @param string property name (Route::PATTERN, Route::FILTER_IN, Route::FILTER_OUT, Route::FILTER_TABLE) + * @param mixed property value + * @return void + */ + public static function setStyleProperty($style, $key, $value) + { + if (!isset(static::$styles[$style])) { + throw new Nette\InvalidArgumentException("Style '$style' doesn't exist."); + } + static::$styles[$style][$key] = $value; + } + +} diff --git a/apigen/libs/Nette/Nette/Application/Routers/RouteList.php b/apigen/libs/Nette/Nette/Application/Routers/RouteList.php new file mode 100644 index 00000000000..05dffb5d112 --- /dev/null +++ b/apigen/libs/Nette/Nette/Application/Routers/RouteList.php @@ -0,0 +1,146 @@ +module = $module ? $module . ':' : ''; + } + + + + /** + * Maps HTTP request to a Request object. + * @param Nette\Http\IRequest + * @return Nette\Application\Request|NULL + */ + public function match(Nette\Http\IRequest $httpRequest) + { + foreach ($this as $route) { + $appRequest = $route->match($httpRequest); + if ($appRequest !== NULL) { + $appRequest->setPresenterName($this->module . $appRequest->getPresenterName()); + return $appRequest; + } + } + return NULL; + } + + + + /** + * Constructs absolute URL from Request object. + * @param Nette\Application\Request + * @param Nette\Http\Url + * @return string|NULL + */ + public function constructUrl(Nette\Application\Request $appRequest, Nette\Http\Url $refUrl) + { + if ($this->cachedRoutes === NULL) { + $routes = array(); + $routes['*'] = array(); + + foreach ($this as $route) { + $presenter = $route instanceof Route ? $route->getTargetPresenter() : NULL; + + if ($presenter === FALSE) { + continue; + } + + if (is_string($presenter)) { + $presenter = strtolower($presenter); + if (!isset($routes[$presenter])) { + $routes[$presenter] = $routes['*']; + } + $routes[$presenter][] = $route; + + } else { + foreach ($routes as $id => $foo) { + $routes[$id][] = $route; + } + } + } + + $this->cachedRoutes = $routes; + } + + if ($this->module) { + if (strncasecmp($tmp = $appRequest->getPresenterName(), $this->module, strlen($this->module)) === 0) { + $appRequest = clone $appRequest; + $appRequest->setPresenterName(substr($tmp, strlen($this->module))); + } else { + return NULL; + } + } + + $presenter = strtolower($appRequest->getPresenterName()); + if (!isset($this->cachedRoutes[$presenter])) { + $presenter = '*'; + } + + foreach ($this->cachedRoutes[$presenter] as $route) { + $url = $route->constructUrl($appRequest, $refUrl); + if ($url !== NULL) { + return $url; + } + } + + return NULL; + } + + + + /** + * Adds the router. + * @param mixed + * @param Nette\Application\IRouter + * @return void + */ + public function offsetSet($index, $route) + { + if (!$route instanceof Nette\Application\IRouter) { + throw new Nette\InvalidArgumentException("Argument must be IRouter descendant."); + } + parent::offsetSet($index, $route); + } + + + + /** + * @return string + */ + public function getModule() + { + return $this->module; + } + +} diff --git a/apigen/libs/Nette/Nette/Application/Routers/SimpleRouter.php b/apigen/libs/Nette/Nette/Application/Routers/SimpleRouter.php new file mode 100644 index 00000000000..acd1e7171ec --- /dev/null +++ b/apigen/libs/Nette/Nette/Application/Routers/SimpleRouter.php @@ -0,0 +1,163 @@ + substr($defaults, 0, $a), + 'action' => $a === strlen($defaults) - 1 ? Application\UI\Presenter::DEFAULT_ACTION : substr($defaults, $a + 1), + ); + } + + if (isset($defaults[self::MODULE_KEY])) { + $this->module = $defaults[self::MODULE_KEY] . ':'; + unset($defaults[self::MODULE_KEY]); + } + + $this->defaults = $defaults; + $this->flags = $flags; + } + + + + /** + * Maps HTTP request to a Request object. + * @param Nette\Http\IRequest + * @return Nette\Application\Request|NULL + */ + public function match(Nette\Http\IRequest $httpRequest) + { + if ($httpRequest->getUrl()->getPathInfo() !== '') { + return NULL; + } + // combine with precedence: get, (post,) defaults + $params = $httpRequest->getQuery(); + $params += $this->defaults; + + if (!isset($params[self::PRESENTER_KEY])) { + throw new Nette\InvalidStateException('Missing presenter.'); + } + + $presenter = $this->module . $params[self::PRESENTER_KEY]; + unset($params[self::PRESENTER_KEY]); + + return new Application\Request( + $presenter, + $httpRequest->getMethod(), + $params, + $httpRequest->getPost(), + $httpRequest->getFiles(), + array(Application\Request::SECURED => $httpRequest->isSecured()) + ); + } + + + + /** + * Constructs absolute URL from Request object. + * @param Nette\Application\Request + * @param Nette\Http\Url + * @return string|NULL + */ + public function constructUrl(Application\Request $appRequest, Nette\Http\Url $refUrl) + { + if ($this->flags & self::ONE_WAY) { + return NULL; + } + $params = $appRequest->getParameters(); + + // presenter name + $presenter = $appRequest->getPresenterName(); + if (strncasecmp($presenter, $this->module, strlen($this->module)) === 0) { + $params[self::PRESENTER_KEY] = substr($presenter, strlen($this->module)); + } else { + return NULL; + } + + // remove default values; NULL values are retain + foreach ($this->defaults as $key => $value) { + if (isset($params[$key]) && $params[$key] == $value) { // intentionally == + unset($params[$key]); + } + } + + $url = ($this->flags & self::SECURED ? 'https://' : 'http://') . $refUrl->getAuthority() . $refUrl->getPath(); + $sep = ini_get('arg_separator.input'); + $query = http_build_query($params, '', $sep ? $sep[0] : '&'); + if ($query != '') { // intentionally == + $url .= '?' . $query; + } + return $url; + } + + + + /** + * Returns default values. + * @return array + */ + public function getDefaults() + { + return $this->defaults; + } + + + + /** + * Returns flags. + * @return int + */ + public function getFlags() + { + return $this->flags; + } + +} diff --git a/apigen/libs/Nette/Nette/Application/UI/BadSignalException.php b/apigen/libs/Nette/Nette/Application/UI/BadSignalException.php new file mode 100644 index 00000000000..4401bb5c5a4 --- /dev/null +++ b/apigen/libs/Nette/Nette/Application/UI/BadSignalException.php @@ -0,0 +1,28 @@ +template === NULL) { + $value = $this->createTemplate(); + if (!$value instanceof Nette\Templating\ITemplate && $value !== NULL) { + $class2 = get_class($value); $class = get_class($this); + throw new Nette\UnexpectedValueException("Object returned by $class::createTemplate() must be instance of Nette\\Templating\\ITemplate, '$class2' given."); + } + $this->template = $value; + } + return $this->template; + } + + + + /** + * @param string|NULL + * @return Nette\Templating\ITemplate + */ + protected function createTemplate($class = NULL) + { + $template = $class ? new $class : new Nette\Templating\FileTemplate; + $presenter = $this->getPresenter(FALSE); + $template->onPrepareFilters[] = $this->templatePrepareFilters; + $template->registerHelperLoader('Nette\Templating\Helpers::loader'); + + // default parameters + $template->control = $template->_control = $this; + $template->presenter = $template->_presenter = $presenter; + if ($presenter instanceof Presenter) { + $template->setCacheStorage($presenter->getContext()->nette->templateCacheStorage); + $template->user = $presenter->getUser(); + $template->netteHttpResponse = $presenter->getHttpResponse(); + $template->netteCacheStorage = $presenter->getContext()->getByType('Nette\Caching\IStorage'); + $template->baseUri = $template->baseUrl = rtrim($presenter->getHttpRequest()->getUrl()->getBaseUrl(), '/'); + $template->basePath = preg_replace('#https?://[^/]+#A', '', $template->baseUrl); + + // flash message + if ($presenter->hasFlashSession()) { + $id = $this->getParameterId('flash'); + $template->flashes = $presenter->getFlashSession()->$id; + } + } + if (!isset($template->flashes) || !is_array($template->flashes)) { + $template->flashes = array(); + } + + return $template; + } + + + + /** + * Descendant can override this method to customize template compile-time filters. + * @param Nette\Templating\Template + * @return void + */ + public function templatePrepareFilters($template) + { + $template->registerFilter($this->getPresenter()->getContext()->nette->createLatte()); + } + + + + /** + * Returns widget component specified by name. + * @param string + * @return Nette\ComponentModel\IComponent + */ + public function getWidget($name) + { + trigger_error(__METHOD__ . '() is deprecated, use getComponent() instead.', E_USER_WARNING); + return $this->getComponent($name); + } + + + + /** + * Saves the message to template, that can be displayed after redirect. + * @param string + * @param string + * @return \stdClass + */ + public function flashMessage($message, $type = 'info') + { + $id = $this->getParameterId('flash'); + $messages = $this->getPresenter()->getFlashSession()->$id; + $messages[] = $flash = (object) array( + 'message' => $message, + 'type' => $type, + ); + $this->getTemplate()->flashes = $messages; + $this->getPresenter()->getFlashSession()->$id = $messages; + return $flash; + } + + + + /********************* rendering ****************d*g**/ + + + + /** + * Forces control or its snippet to repaint. + * @param string + * @return void + */ + public function invalidateControl($snippet = NULL) + { + $this->invalidSnippets[$snippet] = TRUE; + } + + + + /** + * Allows control or its snippet to not repaint. + * @param string + * @return void + */ + public function validateControl($snippet = NULL) + { + if ($snippet === NULL) { + $this->invalidSnippets = array(); + + } else { + unset($this->invalidSnippets[$snippet]); + } + } + + + + /** + * Is required to repaint the control or its snippet? + * @param string snippet name + * @return bool + */ + public function isControlInvalid($snippet = NULL) + { + if ($snippet === NULL) { + if (count($this->invalidSnippets) > 0) { + return TRUE; + + } else { + $queue = array($this); + do { + foreach (array_shift($queue)->getComponents() as $component) { + if ($component instanceof IRenderable) { + if ($component->isControlInvalid()) { + // $this->invalidSnippets['__child'] = TRUE; // as cache + return TRUE; + } + + } elseif ($component instanceof Nette\ComponentModel\IContainer) { + $queue[] = $component; + } + } + } while ($queue); + + return FALSE; + } + + } else { + return isset($this->invalidSnippets[NULL]) || isset($this->invalidSnippets[$snippet]); + } + } + + + + /** + * Returns snippet HTML ID. + * @param string snippet name + * @return string + */ + public function getSnippetId($name = NULL) + { + // HTML 4 ID & NAME: [A-Za-z][A-Za-z0-9:_.-]* + return 'snippet-' . $this->getUniqueId() . '-' . $name; + } + +} diff --git a/apigen/libs/Nette/Nette/Application/UI/Form.php b/apigen/libs/Nette/Nette/Application/UI/Form.php new file mode 100644 index 00000000000..6db389a116b --- /dev/null +++ b/apigen/libs/Nette/Nette/Application/UI/Form.php @@ -0,0 +1,147 @@ +monitor('Nette\Application\UI\Presenter'); + if ($parent !== NULL) { + $parent->addComponent($this, $name); + } + } + + + + /** + * Returns the presenter where this component belongs to. + * @param bool throw exception if presenter doesn't exist? + * @return Presenter|NULL + */ + public function getPresenter($need = TRUE) + { + return $this->lookup('Nette\Application\UI\Presenter', $need); + } + + + + /** + * This method will be called when the component (or component's parent) + * becomes attached to a monitored object. Do not call this method yourself. + * @param Nette\ComponentModel\IComponent + * @return void + */ + protected function attached($presenter) + { + if ($presenter instanceof Presenter) { + $name = $this->lookupPath('Nette\Application\UI\Presenter'); + + if (!isset($this->getElementPrototype()->id)) { + $this->getElementPrototype()->id = 'frm-' . $name; + } + + $this->setAction(new Link( + $presenter, + $name . self::NAME_SEPARATOR . 'submit!', + array() + )); + + // fill-in the form with HTTP data + if ($this->isSubmitted()) { + foreach ($this->getControls() as $control) { + if (!$control->isDisabled()) { + $control->loadHttpData(); + } + } + } + } + parent::attached($presenter); + } + + + + /** + * Tells if the form is anchored. + * @return bool + */ + public function isAnchored() + { + return (bool) $this->getPresenter(FALSE); + } + + + + /** + * Internal: receives submitted HTTP data. + * @return array + */ + protected function receiveHttpData() + { + $presenter = $this->getPresenter(); + if (!$presenter->isSignalReceiver($this, 'submit')) { + return; + } + + $isPost = $this->getMethod() === self::POST; + $request = $presenter->getRequest(); + if ($request->isMethod('forward') || $request->isMethod('post') !== $isPost) { + return; + } + + if ($isPost) { + return Nette\Utils\Arrays::mergeTree($request->getPost(), $request->getFiles()); + } else { + return $request->getParameters(); + } + } + + + + /********************* interface ISignalReceiver ****************d*g**/ + + + + /** + * This method is called by presenter. + * @param string + * @return void + */ + public function signalReceived($signal) + { + if ($signal === 'submit') { + if (!$this->getPresenter()->getRequest()->hasFlag(Nette\Application\Request::RESTORED)) { + $this->fireEvents(); + } + } else { + $class = get_class($this); + throw new BadSignalException("Missing handler for signal '$signal' in $class."); + } + } + +} diff --git a/apigen/libs/Nette/Nette/Application/UI/IRenderable.php b/apigen/libs/Nette/Nette/Application/UI/IRenderable.php new file mode 100644 index 00000000000..1a96448aebe --- /dev/null +++ b/apigen/libs/Nette/Nette/Application/UI/IRenderable.php @@ -0,0 +1,38 @@ +previous = $previous; + parent::__construct($message, $code); + } else { + parent::__construct($message, $code, $previous); + } + } + */ +} diff --git a/apigen/libs/Nette/Nette/Application/UI/Link.php b/apigen/libs/Nette/Nette/Application/UI/Link.php new file mode 100644 index 00000000000..4da459759ab --- /dev/null +++ b/apigen/libs/Nette/Nette/Application/UI/Link.php @@ -0,0 +1,117 @@ +component = $component; + $this->destination = $destination; + $this->params = $params; + } + + + + /** + * Returns link destination. + * @return string + */ + public function getDestination() + { + return $this->destination; + } + + + + /** + * Changes link parameter. + * @param string + * @param mixed + * @return Link provides a fluent interface + */ + public function setParameter($key, $value) + { + $this->params[$key] = $value; + return $this; + } + + + + /** + * Returns link parameter. + * @param string + * @return mixed + */ + public function getParameter($key) + { + return isset($this->params[$key]) ? $this->params[$key] : NULL; + } + + + + /** + * Returns link parameters. + * @return array + */ + public function getParameters() + { + return $this->params; + } + + + + /** + * Converts link to URL. + * @return string + */ + public function __toString() + { + try { + return $this->component->link($this->destination, $this->params); + + } catch (\Exception $e) { + Nette\Diagnostics\Debugger::toStringException($e); + } + } + +} diff --git a/apigen/libs/Nette/Nette/Application/UI/Multiplier.php b/apigen/libs/Nette/Nette/Application/UI/Multiplier.php new file mode 100644 index 00000000000..f9d8bd323b3 --- /dev/null +++ b/apigen/libs/Nette/Nette/Application/UI/Multiplier.php @@ -0,0 +1,42 @@ +factory = new Nette\Callback($factory); + } + + + + protected function createComponent($name) + { + return $this->factory->invoke($name, $this); + } + +} diff --git a/apigen/libs/Nette/Nette/Application/UI/Presenter.php b/apigen/libs/Nette/Nette/Application/UI/Presenter.php new file mode 100644 index 00000000000..04ebc4da9c7 --- /dev/null +++ b/apigen/libs/Nette/Nette/Application/UI/Presenter.php @@ -0,0 +1,1446 @@ +context = $context; + if ($context && $this->invalidLinkMode === NULL) { + $this->invalidLinkMode = $context->parameters['productionMode'] ? self::INVALID_LINK_SILENT : self::INVALID_LINK_WARNING; + } + } + + + + /** + * @return Nette\Application\Request + */ + final public function getRequest() + { + return $this->request; + } + + + + /** + * Returns self. + * @return Presenter + */ + final public function getPresenter($need = TRUE) + { + return $this; + } + + + + /** + * Returns a name that uniquely identifies component. + * @return string + */ + final public function getUniqueId() + { + return ''; + } + + + + /********************* interface IPresenter ****************d*g**/ + + + + /** + * @param Nette\Application\Request + * @return Nette\Application\IResponse + */ + public function run(Application\Request $request) + { + try { + // STARTUP + $this->request = $request; + $this->payload = (object) NULL; + $this->setParent($this->getParent(), $request->getPresenterName()); + + $this->initGlobalParameters(); + $this->checkRequirements($this->getReflection()); + $this->startup(); + if (!$this->startupCheck) { + $class = $this->getReflection()->getMethod('startup')->getDeclaringClass()->getName(); + throw new Nette\InvalidStateException("Method $class::startup() or its descendant doesn't call parent::startup()."); + } + // calls $this->action() + $this->tryCall($this->formatActionMethod($this->getAction()), $this->params); + + if ($this->autoCanonicalize) { + $this->canonicalize(); + } + if ($this->getHttpRequest()->isMethod('head')) { + $this->terminate(); + } + + // SIGNAL HANDLING + // calls $this->handle() + $this->processSignal(); + + // RENDERING VIEW + $this->beforeRender(); + // calls $this->render() + $this->tryCall($this->formatRenderMethod($this->getView()), $this->params); + $this->afterRender(); + + // save component tree persistent state + $this->saveGlobalState(); + if ($this->isAjax()) { + $this->payload->state = $this->getGlobalState(); + } + + // finish template rendering + $this->sendTemplate(); + + } catch (Application\AbortException $e) { + // continue with shutting down + if ($this->isAjax()) try { + $hasPayload = (array) $this->payload; unset($hasPayload['state']); + if ($this->response instanceof Responses\TextResponse && $this->isControlInvalid()) { // snippets - TODO + $this->snippetMode = TRUE; + $this->response->send($this->getHttpRequest(), $this->getHttpResponse()); + $this->sendPayload(); + + } elseif (!$this->response && $hasPayload) { // back compatibility for use terminate() instead of sendPayload() + $this->sendPayload(); + } + } catch (Application\AbortException $e) { } + + if ($this->hasFlashSession()) { + $this->getFlashSession()->setExpiration($this->response instanceof Responses\RedirectResponse ? '+ 30 seconds': '+ 3 seconds'); + } + + // SHUTDOWN + $this->onShutdown($this, $this->response); + $this->shutdown($this->response); + + return $this->response; + } + } + + + + /** + * @return void + */ + protected function startup() + { + $this->startupCheck = TRUE; + } + + + + /** + * Common render method. + * @return void + */ + protected function beforeRender() + { + } + + + + /** + * Common render method. + * @return void + */ + protected function afterRender() + { + } + + + + /** + * @param Nette\Application\IResponse optional catched exception + * @return void + */ + protected function shutdown($response) + { + } + + + + /** + * Checks authorization. + * @return void + */ + public function checkRequirements($element) + { + $user = (array) $element->getAnnotation('User'); + if (in_array('loggedIn', $user) && !$this->getUser()->isLoggedIn()) { + throw new Application\ForbiddenRequestException; + } + } + + + + /********************* signal handling ****************d*g**/ + + + + /** + * @return void + * @throws BadSignalException + */ + public function processSignal() + { + if ($this->signal === NULL) { + return; + } + + try { + $component = $this->signalReceiver === '' ? $this : $this->getComponent($this->signalReceiver, FALSE); + } catch (Nette\InvalidArgumentException $e) {} + + if (isset($e) || $component === NULL) { + throw new BadSignalException("The signal receiver component '$this->signalReceiver' is not found."); + + } elseif (!$component instanceof ISignalReceiver) { + throw new BadSignalException("The signal receiver component '$this->signalReceiver' is not ISignalReceiver implementor."); + } + + $component->signalReceived($this->signal); + $this->signal = NULL; + } + + + + /** + * Returns pair signal receiver and name. + * @return array|NULL + */ + final public function getSignal() + { + return $this->signal === NULL ? NULL : array($this->signalReceiver, $this->signal); + } + + + + /** + * Checks if the signal receiver is the given one. + * @param mixed component or its id + * @param string signal name (optional) + * @return bool + */ + final public function isSignalReceiver($component, $signal = NULL) + { + if ($component instanceof Nette\ComponentModel\Component) { + $component = $component === $this ? '' : $component->lookupPath(__CLASS__, TRUE); + } + + if ($this->signal === NULL) { + return FALSE; + + } elseif ($signal === TRUE) { + return $component === '' + || strncmp($this->signalReceiver . '-', $component . '-', strlen($component) + 1) === 0; + + } elseif ($signal === NULL) { + return $this->signalReceiver === $component; + + } else { + return $this->signalReceiver === $component && strcasecmp($signal, $this->signal) === 0; + } + } + + + + /********************* rendering ****************d*g**/ + + + + /** + * Returns current action name. + * @return string + */ + final public function getAction($fullyQualified = FALSE) + { + return $fullyQualified ? ':' . $this->getName() . ':' . $this->action : $this->action; + } + + + + /** + * Changes current action. Only alphanumeric characters are allowed. + * @param string + * @return void + */ + public function changeAction($action) + { + if (is_string($action) && Nette\Utils\Strings::match($action, '#^[a-zA-Z0-9][a-zA-Z0-9_\x7f-\xff]*$#')) { + $this->action = $action; + $this->view = $action; + + } else { + $this->error('Action name is not alphanumeric string.'); + } + } + + + + /** + * Returns current view. + * @return string + */ + final public function getView() + { + return $this->view; + } + + + + /** + * Changes current view. Any name is allowed. + * @param string + * @return Presenter provides a fluent interface + */ + public function setView($view) + { + $this->view = (string) $view; + return $this; + } + + + + /** + * Returns current layout name. + * @return string|FALSE + */ + final public function getLayout() + { + return $this->layout; + } + + + + /** + * Changes or disables layout. + * @param string|FALSE + * @return Presenter provides a fluent interface + */ + public function setLayout($layout) + { + $this->layout = $layout === FALSE ? FALSE : (string) $layout; + return $this; + } + + + + /** + * @return void + * @throws Nette\Application\BadRequestException if no template found + * @throws Nette\Application\AbortException + */ + public function sendTemplate() + { + $template = $this->getTemplate(); + if (!$template) { + return; + } + + if ($template instanceof Nette\Templating\IFileTemplate && !$template->getFile()) { // content template + $files = $this->formatTemplateFiles(); + foreach ($files as $file) { + if (is_file($file)) { + $template->setFile($file); + break; + } + } + + if (!$template->getFile()) { + $file = preg_replace('#^.*([/\\\\].{1,70})$#U', "\xE2\x80\xA6\$1", reset($files)); + $file = strtr($file, '/', DIRECTORY_SEPARATOR); + $this->error("Page not found. Missing template '$file'."); + } + } + + $this->sendResponse(new Responses\TextResponse($template)); + } + + + + /** + * Finds layout template file name. + * @return string + */ + public function findLayoutTemplateFile() + { + if ($this->layout === FALSE) { + return; + } + $files = $this->formatLayoutTemplateFiles(); + foreach ($files as $file) { + if (is_file($file)) { + return $file; + } + } + + if ($this->layout) { + $file = preg_replace('#^.*([/\\\\].{1,70})$#U', "\xE2\x80\xA6\$1", reset($files)); + $file = strtr($file, '/', DIRECTORY_SEPARATOR); + throw new Nette\FileNotFoundException("Layout not found. Missing template '$file'."); + } + } + + + + /** + * Formats layout template file names. + * @return array + */ + public function formatLayoutTemplateFiles() + { + $name = $this->getName(); + $presenter = substr($name, strrpos(':' . $name, ':')); + $layout = $this->layout ? $this->layout : 'layout'; + $dir = dirname($this->getReflection()->getFileName()); + $dir = is_dir("$dir/templates") ? $dir : dirname($dir); + $list = array( + "$dir/templates/$presenter/@$layout.latte", + "$dir/templates/$presenter.@$layout.latte", + "$dir/templates/$presenter/@$layout.phtml", + "$dir/templates/$presenter.@$layout.phtml", + ); + do { + $list[] = "$dir/templates/@$layout.latte"; + $list[] = "$dir/templates/@$layout.phtml"; + $dir = dirname($dir); + } while ($dir && ($name = substr($name, 0, strrpos($name, ':')))); + return $list; + } + + + + /** + * Formats view template file names. + * @return array + */ + public function formatTemplateFiles() + { + $name = $this->getName(); + $presenter = substr($name, strrpos(':' . $name, ':')); + $dir = dirname($this->getReflection()->getFileName()); + $dir = is_dir("$dir/templates") ? $dir : dirname($dir); + return array( + "$dir/templates/$presenter/$this->view.latte", + "$dir/templates/$presenter.$this->view.latte", + "$dir/templates/$presenter/$this->view.phtml", + "$dir/templates/$presenter.$this->view.phtml", + ); + } + + + + /** + * Formats action method name. + * @param string + * @return string + */ + protected static function formatActionMethod($action) + { + return 'action' . $action; + } + + + + /** + * Formats render view method name. + * @param string + * @return string + */ + protected static function formatRenderMethod($view) + { + return 'render' . $view; + } + + + + /********************* partial AJAX rendering ****************d*g**/ + + + + /** + * @return \stdClass + */ + public function getPayload() + { + return $this->payload; + } + + + + /** + * Is AJAX request? + * @return bool + */ + public function isAjax() + { + if ($this->ajaxMode === NULL) { + $this->ajaxMode = $this->getHttpRequest()->isAjax(); + } + return $this->ajaxMode; + } + + + + /** + * Sends AJAX payload to the output. + * @return void + * @throws Nette\Application\AbortException + */ + public function sendPayload() + { + $this->sendResponse(new Responses\JsonResponse($this->payload)); + } + + + + /********************* navigation & flow ****************d*g**/ + + + + /** + * Sends response and terminates presenter. + * @param Nette\Application\IResponse + * @return void + * @throws Nette\Application\AbortException + */ + public function sendResponse(Application\IResponse $response) + { + $this->response = $response; + $this->terminate(); + } + + + + /** + * Correctly terminates presenter. + * @return void + * @throws Nette\Application\AbortException + */ + public function terminate() + { + if (func_num_args() !== 0) { + trigger_error(__METHOD__ . ' is not intended to send a Application\Response; use sendResponse() instead.', E_USER_WARNING); + $this->sendResponse(func_get_arg(0)); + } + throw new Application\AbortException(); + } + + + + /** + * Forward to another presenter or action. + * @param string|Request + * @param array|mixed + * @return void + * @throws Nette\Application\AbortException + */ + public function forward($destination, $args = array()) + { + if ($destination instanceof Application\Request) { + $this->sendResponse(new Responses\ForwardResponse($destination)); + + } elseif (!is_array($args)) { + $args = func_get_args(); + array_shift($args); + } + + $this->createRequest($this, $destination, $args, 'forward'); + $this->sendResponse(new Responses\ForwardResponse($this->lastCreatedRequest)); + } + + + + /** + * Redirect to another URL and ends presenter execution. + * @param string + * @param int HTTP error code + * @return void + * @throws Nette\Application\AbortException + */ + public function redirectUrl($url, $code = NULL) + { + if ($this->isAjax()) { + $this->payload->redirect = (string) $url; + $this->sendPayload(); + + } elseif (!$code) { + $code = $this->getHttpRequest()->isMethod('post') + ? Http\IResponse::S303_POST_GET + : Http\IResponse::S302_FOUND; + } + $this->sendResponse(new Responses\RedirectResponse($url, $code)); + } + + /** @deprecated */ + function redirectUri($url, $code = NULL) + { + trigger_error(__METHOD__ . '() is deprecated; use ' . __CLASS__ . '::redirectUrl() instead.', E_USER_WARNING); + $this->redirectUrl($url, $code); + } + + + + /** + * Throws HTTP error. + * @param string + * @param int HTTP error code + * @return void + * @throws Nette\Application\BadRequestException + */ + public function error($message = NULL, $code = Http\IResponse::S404_NOT_FOUND) + { + throw new Application\BadRequestException($message, $code); + } + + + + /** + * Link to myself. + * @return string + */ + public function backlink() + { + return $this->getAction(TRUE); + } + + + + /** + * Returns the last created Request. + * @return Nette\Application\Request + */ + public function getLastCreatedRequest() + { + return $this->lastCreatedRequest; + } + + + + /** + * Returns the last created Request flag. + * @param string + * @return bool + */ + public function getLastCreatedRequestFlag($flag) + { + return !empty($this->lastCreatedRequestFlag[$flag]); + } + + + + /** + * Conditional redirect to canonicalized URI. + * @return void + * @throws Nette\Application\AbortException + */ + public function canonicalize() + { + if (!$this->isAjax() && ($this->request->isMethod('get') || $this->request->isMethod('head'))) { + try { + $url = $this->createRequest($this, $this->action, $this->getGlobalState() + $this->request->getParameters(), 'redirectX'); + } catch (InvalidLinkException $e) {} + if (isset($url) && !$this->getHttpRequest()->getUrl()->isEqual($url)) { + $this->sendResponse(new Responses\RedirectResponse($url, Http\IResponse::S301_MOVED_PERMANENTLY)); + } + } + } + + + + /** + * Attempts to cache the sent entity by its last modification date. + * @param string|int|DateTime last modified time + * @param string strong entity tag validator + * @param mixed optional expiration time + * @return void + * @throws Nette\Application\AbortException + * @deprecated + */ + public function lastModified($lastModified, $etag = NULL, $expire = NULL) + { + if ($expire !== NULL) { + $this->getHttpResponse()->setExpiration($expire); + } + + if (!$this->getHttpContext()->isModified($lastModified, $etag)) { + $this->terminate(); + } + } + + + + /** + * Request/URL factory. + * @param PresenterComponent base + * @param string destination in format "[[module:]presenter:]action" or "signal!" or "this" + * @param array array of arguments + * @param string forward|redirect|link + * @return string URL + * @throws InvalidLinkException + * @internal + */ + final protected function createRequest($component, $destination, array $args, $mode) + { + // note: createRequest supposes that saveState(), run() & tryCall() behaviour is final + + // cached services for better performance + static $presenterFactory, $router, $refUrl; + if ($presenterFactory === NULL) { + $presenterFactory = $this->getApplication()->getPresenterFactory(); + $router = $this->getApplication()->getRouter(); + $refUrl = new Http\Url($this->getHttpRequest()->getUrl()); + $refUrl->setPath($this->getHttpRequest()->getUrl()->getScriptPath()); + } + + $this->lastCreatedRequest = $this->lastCreatedRequestFlag = NULL; + + // PARSE DESTINATION + // 1) fragment + $a = strpos($destination, '#'); + if ($a === FALSE) { + $fragment = ''; + } else { + $fragment = substr($destination, $a); + $destination = substr($destination, 0, $a); + } + + // 2) ?query syntax + $a = strpos($destination, '?'); + if ($a !== FALSE) { + parse_str(substr($destination, $a + 1), $args); // requires disabled magic quotes + $destination = substr($destination, 0, $a); + } + + // 3) URL scheme + $a = strpos($destination, '//'); + if ($a === FALSE) { + $scheme = FALSE; + } else { + $scheme = substr($destination, 0, $a); + $destination = substr($destination, $a + 2); + } + + // 4) signal or empty + if (!$component instanceof Presenter || substr($destination, -1) === '!') { + $signal = rtrim($destination, '!'); + $a = strrpos($signal, ':'); + if ($a !== FALSE) { + $component = $component->getComponent(strtr(substr($signal, 0, $a), ':', '-')); + $signal = (string) substr($signal, $a + 1); + } + if ($signal == NULL) { // intentionally == + throw new InvalidLinkException("Signal must be non-empty string."); + } + $destination = 'this'; + } + + if ($destination == NULL) { // intentionally == + throw new InvalidLinkException("Destination must be non-empty string."); + } + + // 5) presenter: action + $current = FALSE; + $a = strrpos($destination, ':'); + if ($a === FALSE) { + $action = $destination === 'this' ? $this->action : $destination; + $presenter = $this->getName(); + $presenterClass = get_class($this); + + } else { + $action = (string) substr($destination, $a + 1); + if ($destination[0] === ':') { // absolute + if ($a < 2) { + throw new InvalidLinkException("Missing presenter name in '$destination'."); + } + $presenter = substr($destination, 1, $a - 1); + + } else { // relative + $presenter = $this->getName(); + $b = strrpos($presenter, ':'); + if ($b === FALSE) { // no module + $presenter = substr($destination, 0, $a); + } else { // with module + $presenter = substr($presenter, 0, $b + 1) . substr($destination, 0, $a); + } + } + try { + $presenterClass = $presenterFactory->getPresenterClass($presenter); + } catch (Application\InvalidPresenterException $e) { + throw new InvalidLinkException($e->getMessage(), NULL, $e); + } + } + + // PROCESS SIGNAL ARGUMENTS + if (isset($signal)) { // $component must be IStatePersistent + $reflection = new PresenterComponentReflection(get_class($component)); + if ($signal === 'this') { // means "no signal" + $signal = ''; + if (array_key_exists(0, $args)) { + throw new InvalidLinkException("Unable to pass parameters to 'this!' signal."); + } + + } elseif (strpos($signal, self::NAME_SEPARATOR) === FALSE) { // TODO: AppForm exception + // counterpart of signalReceived() & tryCall() + $method = $component->formatSignalMethod($signal); + if (!$reflection->hasCallableMethod($method)) { + throw new InvalidLinkException("Unknown signal '$signal', missing handler {$reflection->name}::$method()"); + } + if ($args) { // convert indexed parameters to named + self::argsToParams(get_class($component), $method, $args); + } + } + + // counterpart of IStatePersistent + if ($args && array_intersect_key($args, $reflection->getPersistentParams())) { + $component->saveState($args); + } + + if ($args && $component !== $this) { + $prefix = $component->getUniqueId() . self::NAME_SEPARATOR; + foreach ($args as $key => $val) { + unset($args[$key]); + $args[$prefix . $key] = $val; + } + } + } + + // PROCESS ARGUMENTS + if (is_subclass_of($presenterClass, __CLASS__)) { + if ($action === '') { + $action = self::DEFAULT_ACTION; + } + + $current = ($action === '*' || strcasecmp($action, $this->action) === 0) && $presenterClass === get_class($this); // TODO + + $reflection = new PresenterComponentReflection($presenterClass); + if ($args || $destination === 'this') { + // counterpart of run() & tryCall() + /**/$method = $presenterClass::formatActionMethod($action);/**/ + /*5.2* $method = call_user_func(array($presenterClass, 'formatActionMethod'), $action);*/ + if (!$reflection->hasCallableMethod($method)) { + /**/$method = $presenterClass::formatRenderMethod($action);/**/ + /*5.2* $method = call_user_func(array($presenterClass, 'formatRenderMethod'), $action);*/ + if (!$reflection->hasCallableMethod($method)) { + $method = NULL; + } + } + + // convert indexed parameters to named + if ($method === NULL) { + if (array_key_exists(0, $args)) { + throw new InvalidLinkException("Unable to pass parameters to action '$presenter:$action', missing corresponding method."); + } + + } elseif ($destination === 'this') { + self::argsToParams($presenterClass, $method, $args, $this->params); + + } else { + self::argsToParams($presenterClass, $method, $args); + } + } + + // counterpart of IStatePersistent + if ($args && array_intersect_key($args, $reflection->getPersistentParams())) { + $this->saveState($args, $reflection); + } + + if ($mode === 'redirect') { + $this->saveGlobalState(); + } + + $globalState = $this->getGlobalState($destination === 'this' ? NULL : $presenterClass); + if ($current && $args) { + $tmp = $globalState + $this->params; + foreach ($args as $key => $val) { + if (http_build_query(array($val)) !== (isset($tmp[$key]) ? http_build_query(array($tmp[$key])) : '')) { + $current = FALSE; + break; + } + } + } + $args += $globalState; + } + + // ADD ACTION & SIGNAL & FLASH + $args[self::ACTION_KEY] = $action; + if (!empty($signal)) { + $args[self::SIGNAL_KEY] = $component->getParameterId($signal); + $current = $current && $args[self::SIGNAL_KEY] === $this->getParameter(self::SIGNAL_KEY); + } + if (($mode === 'redirect' || $mode === 'forward') && $this->hasFlashSession()) { + $args[self::FLASH_KEY] = $this->getParameter(self::FLASH_KEY); + } + + $this->lastCreatedRequest = new Application\Request( + $presenter, + Application\Request::FORWARD, + $args, + array(), + array() + ); + $this->lastCreatedRequestFlag = array('current' => $current); + + if ($mode === 'forward') { + return; + } + + // CONSTRUCT URL + $url = $router->constructUrl($this->lastCreatedRequest, $refUrl); + if ($url === NULL) { + unset($args[self::ACTION_KEY]); + $params = urldecode(http_build_query($args, NULL, ', ')); + throw new InvalidLinkException("No route for $presenter:$action($params)"); + } + + // make URL relative if possible + if ($mode === 'link' && $scheme === FALSE && !$this->absoluteUrls) { + $hostUrl = $refUrl->getHostUrl(); + if (strncmp($url, $hostUrl, strlen($hostUrl)) === 0) { + $url = substr($url, strlen($hostUrl)); + } + } + + return $url . $fragment; + } + + + + /** + * Converts list of arguments to named parameters. + * @param string class name + * @param string method name + * @param array arguments + * @param array supplemental arguments + * @return void + * @throws InvalidLinkException + */ + private static function argsToParams($class, $method, & $args, $supplemental = array()) + { + $i = 0; + $rm = new \ReflectionMethod($class, $method); + foreach ($rm->getParameters() as $param) { + $name = $param->getName(); + if (array_key_exists($i, $args)) { + $args[$name] = $args[$i]; + unset($args[$i]); + $i++; + + } elseif (array_key_exists($name, $args)) { + // continue with process + + } elseif (array_key_exists($name, $supplemental)) { + $args[$name] = $supplemental[$name]; + + } else { + continue; + } + + if ($args[$name] === NULL) { + continue; + } + + $def = $param->isDefaultValueAvailable() ? $param->getDefaultValue() : NULL; + $type = $param->isArray() ? 'array' : gettype($def); + if (!PresenterComponentReflection::convertType($args[$name], $type)) { + throw new InvalidLinkException("Invalid value for parameter '$name' in method $class::$method(), expected " . ($type === 'NULL' ? 'scalar' : $type) . "."); + } + + if ($args[$name] === $def || ($def === NULL && is_scalar($args[$name]) && (string) $args[$name] === '')) { + $args[$name] = NULL; // value transmit is unnecessary + } + } + + if (array_key_exists($i, $args)) { + $method = $rm->getName(); + throw new InvalidLinkException("Passed more parameters than method $class::$method() expects."); + } + } + + + + /** + * Invalid link handler. Descendant can override this method to change default behaviour. + * @param InvalidLinkException + * @return string + * @throws InvalidLinkException + */ + protected function handleInvalidLink($e) + { + if ($this->invalidLinkMode === self::INVALID_LINK_SILENT) { + return '#'; + + } elseif ($this->invalidLinkMode === self::INVALID_LINK_WARNING) { + return 'error: ' . $e->getMessage(); + + } else { // self::INVALID_LINK_EXCEPTION + throw $e; + } + } + + + + /********************* request serialization ****************d*g**/ + + + + /** + * Stores current request to session. + * @param mixed optional expiration time + * @return string key + */ + public function storeRequest($expiration = '+ 10 minutes') + { + $session = $this->getSession('Nette.Application/requests'); + do { + $key = Nette\Utils\Strings::random(5); + } while (isset($session[$key])); + + $session[$key] = array($this->getUser()->getId(), $this->request); + $session->setExpiration($expiration, $key); + return $key; + } + + + + /** + * Restores current request to session. + * @param string key + * @return void + */ + public function restoreRequest($key) + { + $session = $this->getSession('Nette.Application/requests'); + if (!isset($session[$key]) || ($session[$key][0] !== NULL && $session[$key][0] !== $this->getUser()->getId())) { + return; + } + $request = clone $session[$key][1]; + unset($session[$key]); + $request->setFlag(Application\Request::RESTORED, TRUE); + $params = $request->getParameters(); + $params[self::FLASH_KEY] = $this->getParameter(self::FLASH_KEY); + $request->setParameters($params); + $this->sendResponse(new Responses\ForwardResponse($request)); + } + + + + /********************* interface IStatePersistent ****************d*g**/ + + + + /** + * Returns array of persistent components. + * This default implementation detects components by class-level annotation @persistent(cmp1, cmp2). + * @return array + */ + public static function getPersistentComponents() + { + /*5.2*$arg = func_get_arg(0);*/ + return (array) Reflection\ClassType::from(/*5.2*$arg*//**/get_called_class()/**/) + ->getAnnotation('persistent'); + } + + + + /** + * Saves state information for all subcomponents to $this->globalState. + * @return array + */ + private function getGlobalState($forClass = NULL) + { + $sinces = & $this->globalStateSinces; + + if ($this->globalState === NULL) { + $state = array(); + foreach ($this->globalParams as $id => $params) { + $prefix = $id . self::NAME_SEPARATOR; + foreach ($params as $key => $val) { + $state[$prefix . $key] = $val; + } + } + $this->saveState($state, $forClass ? new PresenterComponentReflection($forClass) : NULL); + + if ($sinces === NULL) { + $sinces = array(); + foreach ($this->getReflection()->getPersistentParams() as $name => $meta) { + $sinces[$name] = $meta['since']; + } + } + + $components = $this->getReflection()->getPersistentComponents(); + $iterator = $this->getComponents(TRUE, 'Nette\Application\UI\IStatePersistent'); + + foreach ($iterator as $name => $component) { + if ($iterator->getDepth() === 0) { + // counts with Nette\Application\RecursiveIteratorIterator::SELF_FIRST + $since = isset($components[$name]['since']) ? $components[$name]['since'] : FALSE; // FALSE = nonpersistent + } + $prefix = $component->getUniqueId() . self::NAME_SEPARATOR; + $params = array(); + $component->saveState($params); + foreach ($params as $key => $val) { + $state[$prefix . $key] = $val; + $sinces[$prefix . $key] = $since; + } + } + + } else { + $state = $this->globalState; + } + + if ($forClass !== NULL) { + $since = NULL; + foreach ($state as $key => $foo) { + if (!isset($sinces[$key])) { + $x = strpos($key, self::NAME_SEPARATOR); + $x = $x === FALSE ? $key : substr($key, 0, $x); + $sinces[$key] = isset($sinces[$x]) ? $sinces[$x] : FALSE; + } + if ($since !== $sinces[$key]) { + $since = $sinces[$key]; + $ok = $since && (is_subclass_of($forClass, $since) || $forClass === $since); + } + if (!$ok) { + unset($state[$key]); + } + } + } + + return $state; + } + + + + /** + * Permanently saves state information for all subcomponents to $this->globalState. + * @return void + */ + protected function saveGlobalState() + { + // load lazy components + foreach ($this->globalParams as $id => $foo) { + $this->getComponent($id, FALSE); + } + + $this->globalParams = array(); + $this->globalState = $this->getGlobalState(); + } + + + + /** + * Initializes $this->globalParams, $this->signal & $this->signalReceiver, $this->action, $this->view. Called by run(). + * @return void + * @throws Nette\Application\BadRequestException if action name is not valid + */ + private function initGlobalParameters() + { + // init $this->globalParams + $this->globalParams = array(); + $selfParams = array(); + + $params = $this->request->getParameters(); + if ($this->isAjax()) { + $params += $this->request->getPost(); + } + + foreach ($params as $key => $value) { + if (!preg_match('#^((?:[a-z0-9_]+-)*)((?!\d+$)[a-z0-9_]+)$#i', $key, $matches)) { + $this->error("'Invalid parameter name '$key'"); + } + if (!$matches[1]) { + $selfParams[$key] = $value; + } else { + $this->globalParams[substr($matches[1], 0, -1)][$matches[2]] = $value; + } + } + + // init & validate $this->action & $this->view + $this->changeAction(isset($selfParams[self::ACTION_KEY]) ? $selfParams[self::ACTION_KEY] : self::DEFAULT_ACTION); + + // init $this->signalReceiver and key 'signal' in appropriate params array + $this->signalReceiver = $this->getUniqueId(); + if (isset($selfParams[self::SIGNAL_KEY])) { + $param = $selfParams[self::SIGNAL_KEY]; + if (!is_string($param)) { + $this->error('Signal name is not string.'); + } + $pos = strrpos($param, '-'); + if ($pos) { + $this->signalReceiver = substr($param, 0, $pos); + $this->signal = substr($param, $pos + 1); + } else { + $this->signalReceiver = $this->getUniqueId(); + $this->signal = $param; + } + if ($this->signal == NULL) { // intentionally == + $this->signal = NULL; + } + } + + $this->loadState($selfParams); + } + + + + /** + * Pops parameters for specified component. + * @param string component id + * @return array + */ + final public function popGlobalParameters($id) + { + if (isset($this->globalParams[$id])) { + $res = $this->globalParams[$id]; + unset($this->globalParams[$id]); + return $res; + + } else { + return array(); + } + } + + + + /********************* flash session ****************d*g**/ + + + + /** + * Checks if a flash session namespace exists. + * @return bool + */ + public function hasFlashSession() + { + return !empty($this->params[self::FLASH_KEY]) + && $this->getSession()->hasSection('Nette.Application.Flash/' . $this->params[self::FLASH_KEY]); + } + + + + /** + * Returns session namespace provided to pass temporary data between redirects. + * @return Nette\Http\SessionSection + */ + public function getFlashSession() + { + if (empty($this->params[self::FLASH_KEY])) { + $this->params[self::FLASH_KEY] = Nette\Utils\Strings::random(4); + } + return $this->getSession('Nette.Application.Flash/' . $this->params[self::FLASH_KEY]); + } + + + + /********************* services ****************d*g**/ + + + + /** + * @return void + */ + final public function injectPrimary(Nette\DI\Container $context) + { + $this->context = $context; + } + + + + /** + * Gets the context. + * @return \SystemContainer|Nette\DI\Container + */ + final public function getContext() + { + return $this->context; + } + + + + /** + * @deprecated + */ + final public function getService($name) + { + return $this->context->getService($name); + } + + + + /** + * @return Nette\Http\Request + */ + protected function getHttpRequest() + { + return $this->context->getByType('Nette\Http\IRequest'); + } + + + + /** + * @return Nette\Http\Response + */ + protected function getHttpResponse() + { + return $this->context->getByType('Nette\Http\IResponse'); + } + + + + /** + * @return Nette\Http\Context + */ + protected function getHttpContext() + { + return $this->context->getByType('Nette\Http\Context'); + } + + + + /** + * @return Nette\Application\Application + */ + public function getApplication() + { + return $this->context->getByType('Nette\Application\Application'); + } + + + + /** + * @return Nette\Http\Session + */ + public function getSession($namespace = NULL) + { + $handler = $this->context->getByType('Nette\Http\Session'); + return $namespace === NULL ? $handler : $handler->getSection($namespace); + } + + + + /** + * @return Nette\Security\User + */ + public function getUser() + { + return $this->context->getByType('Nette\Security\User'); + } + +} diff --git a/apigen/libs/Nette/Nette/Application/UI/PresenterComponent.php b/apigen/libs/Nette/Nette/Application/UI/PresenterComponent.php new file mode 100644 index 00000000000..1cd6f3cc57b --- /dev/null +++ b/apigen/libs/Nette/Nette/Application/UI/PresenterComponent.php @@ -0,0 +1,450 @@ +monitor('Nette\Application\UI\Presenter'); + parent::__construct($parent, $name); + } + + + + /** + * Returns the presenter where this component belongs to. + * @param bool throw exception if presenter doesn't exist? + * @return Presenter|NULL + */ + public function getPresenter($need = TRUE) + { + return $this->lookup('Nette\Application\UI\Presenter', $need); + } + + + + /** + * Returns a fully-qualified name that uniquely identifies the component + * within the presenter hierarchy. + * @return string + */ + public function getUniqueId() + { + return $this->lookupPath('Nette\Application\UI\Presenter', TRUE); + } + + + + /** + * This method will be called when the component (or component's parent) + * becomes attached to a monitored object. Do not call this method yourself. + * @param Nette\ComponentModel\IComponent + * @return void + */ + protected function attached($presenter) + { + if ($presenter instanceof Presenter) { + $this->loadState($presenter->popGlobalParameters($this->getUniqueId())); + } + } + + + + /** + * Calls public method if exists. + * @param string + * @param array + * @return bool does method exist? + */ + protected function tryCall($method, array $params) + { + $rc = $this->getReflection(); + if ($rc->hasMethod($method)) { + $rm = $rc->getMethod($method); + if ($rm->isPublic() && !$rm->isAbstract() && !$rm->isStatic()) { + $this->checkRequirements($rm); + $rm->invokeArgs($this, $rc->combineArgs($rm, $params)); + return TRUE; + } + } + return FALSE; + } + + + + /** + * Checks for requirements such as authorization. + * @return void + */ + public function checkRequirements($element) + { + } + + + + /** + * Access to reflection. + * @return PresenterComponentReflection + */ + public /**/static/**/ function getReflection() + { + return new PresenterComponentReflection(/*5.2*$this*//**/get_called_class()/**/); + } + + + + /********************* interface IStatePersistent ****************d*g**/ + + + + /** + * Loads state informations. + * @param array + * @return void + */ + public function loadState(array $params) + { + $reflection = $this->getReflection(); + foreach ($reflection->getPersistentParams() as $name => $meta) { + if (isset($params[$name])) { // NULLs are ignored + $type = gettype($meta['def'] === NULL ? $params[$name] : $meta['def']); // compatible with 2.0.x + if (!$reflection->convertType($params[$name], $type)) { + throw new Nette\Application\BadRequestException("Invalid value for persistent parameter '$name' in '{$this->getName()}', expected " . ($type === 'NULL' ? 'scalar' : $type) . "."); + } + $this->$name = & $params[$name]; + } else { + $params[$name] = & $this->$name; + } + } + $this->params = $params; + } + + + + /** + * Saves state informations for next request. + * @param array + * @param PresenterComponentReflection (internal, used by Presenter) + * @return void + */ + public function saveState(array & $params, $reflection = NULL) + { + $reflection = $reflection === NULL ? $this->getReflection() : $reflection; + foreach ($reflection->getPersistentParams() as $name => $meta) { + + if (isset($params[$name])) { + // injected value + + } elseif (array_key_exists($name, $params)) { // NULLs are skipped + continue; + + } elseif (!isset($meta['since']) || $this instanceof $meta['since']) { + $params[$name] = $this->$name; // object property value + + } else { + continue; // ignored parameter + } + + $type = gettype($meta['def'] === NULL ? $params[$name] : $meta['def']); // compatible with 2.0.x + if (!PresenterComponentReflection::convertType($params[$name], $type)) { + throw new InvalidLinkException("Invalid value for persistent parameter '$name' in '{$this->getName()}', expected " . ($type === 'NULL' ? 'scalar' : $type) . "."); + } + + if ($params[$name] === $meta['def'] || ($meta['def'] === NULL && is_scalar($params[$name]) && (string) $params[$name] === '')) { + $params[$name] = NULL; // value transmit is unnecessary + } + } + } + + + + /** + * Returns component param. + * If no key is passed, returns the entire array. + * @param string key + * @param mixed default value + * @return mixed + */ + final public function getParameter($name = NULL, $default = NULL) + { + if (func_num_args() === 0) { + return $this->params; + + } elseif (isset($this->params[$name])) { + return $this->params[$name]; + + } else { + return $default; + } + } + + + + /** + * Returns a fully-qualified name that uniquely identifies the parameter. + * @param string + * @return string + */ + final public function getParameterId($name) + { + $uid = $this->getUniqueId(); + return $uid === '' ? $name : $uid . self::NAME_SEPARATOR . $name; + } + + + + /** @deprecated */ + function getParam($name = NULL, $default = NULL) + { + //trigger_error(__METHOD__ . '() is deprecated; use getParameter() instead.', E_USER_WARNING); + return func_num_args() ? $this->getParameter($name, $default) : $this->getParameter(); + } + + + + /** @deprecated */ + function getParamId($name) + { + trigger_error(__METHOD__ . '() is deprecated; use getParameterId() instead.', E_USER_WARNING); + return $this->getParameterId($name); + } + + + + /** + * Returns array of classes persistent parameters. They have public visibility and are non-static. + * This default implementation detects persistent parameters by annotation @persistent. + * @return array + */ + public static function getPersistentParams() + { + /*5.2*$arg = func_get_arg(0);*/ + $rc = new Nette\Reflection\ClassType(/*5.2*$arg*//**/get_called_class()/**/); + $params = array(); + foreach ($rc->getProperties(\ReflectionProperty::IS_PUBLIC) as $rp) { + if (!$rp->isStatic() && $rp->hasAnnotation('persistent')) { + $params[] = $rp->getName(); + } + } + return $params; + } + + + + /********************* interface ISignalReceiver ****************d*g**/ + + + + /** + * Calls signal handler method. + * @param string + * @return void + * @throws BadSignalException if there is not handler method + */ + public function signalReceived($signal) + { + if (!$this->tryCall($this->formatSignalMethod($signal), $this->params)) { + $class = get_class($this); + throw new BadSignalException("There is no handler for signal '$signal' in class $class."); + } + } + + + + /** + * Formats signal handler method name -> case sensitivity doesn't matter. + * @param string + * @return string + */ + public function formatSignalMethod($signal) + { + return $signal == NULL ? NULL : 'handle' . $signal; // intentionally == + } + + + + /********************* navigation ****************d*g**/ + + + + /** + * Generates URL to presenter, action or signal. + * @param string destination in format "[[module:]presenter:]action" or "signal!" or "this" + * @param array|mixed + * @return string + * @throws InvalidLinkException + */ + public function link($destination, $args = array()) + { + if (!is_array($args)) { + $args = func_get_args(); + array_shift($args); + } + + try { + return $this->getPresenter()->createRequest($this, $destination, $args, 'link'); + + } catch (InvalidLinkException $e) { + return $this->getPresenter()->handleInvalidLink($e); + } + } + + + + /** + * Returns destination as Link object. + * @param string destination in format "[[module:]presenter:]view" or "signal!" + * @param array|mixed + * @return Link + */ + public function lazyLink($destination, $args = array()) + { + if (!is_array($args)) { + $args = func_get_args(); + array_shift($args); + } + + return new Link($this, $destination, $args); + } + + + + /** + * Determines whether it links to the current page. + * @param string destination in format "[[module:]presenter:]action" or "signal!" or "this" + * @param array|mixed + * @return bool + * @throws InvalidLinkException + */ + public function isLinkCurrent($destination = NULL, $args = array()) + { + if ($destination !== NULL) { + if (!is_array($args)) { + $args = func_get_args(); + array_shift($args); + } + $this->link($destination, $args); + } + return $this->getPresenter()->getLastCreatedRequestFlag('current'); + } + + + + /** + * Redirect to another presenter, action or signal. + * @param int [optional] HTTP error code + * @param string destination in format "[[module:]presenter:]view" or "signal!" + * @param array|mixed + * @return void + * @throws Nette\Application\AbortException + */ + public function redirect($code, $destination = NULL, $args = array()) + { + if (!is_numeric($code)) { // first parameter is optional + $args = $destination; + $destination = $code; + $code = NULL; + } + + if (!is_array($args)) { + $args = func_get_args(); + if (is_numeric(array_shift($args))) { + array_shift($args); + } + } + + $presenter = $this->getPresenter(); + $presenter->redirectUrl($presenter->createRequest($this, $destination, $args, 'redirect'), $code); + } + + + + /********************* interface \ArrayAccess ****************d*g**/ + + + + /** + * Adds the component to the container. + * @param string component name + * @param Nette\ComponentModel\IComponent + * @return void + */ + final public function offsetSet($name, $component) + { + $this->addComponent($component, $name); + } + + + + /** + * Returns component specified by name. Throws exception if component doesn't exist. + * @param string component name + * @return Nette\ComponentModel\IComponent + * @throws Nette\InvalidArgumentException + */ + final public function offsetGet($name) + { + return $this->getComponent($name, TRUE); + } + + + + /** + * Does component specified by name exists? + * @param string component name + * @return bool + */ + final public function offsetExists($name) + { + return $this->getComponent($name, FALSE) !== NULL; + } + + + + /** + * Removes component from the container. + * @param string component name + * @return void + */ + final public function offsetUnset($name) + { + $component = $this->getComponent($name, FALSE); + if ($component !== NULL) { + $this->removeComponent($component); + } + } + +} diff --git a/apigen/libs/Nette/Nette/Application/UI/PresenterComponentReflection.php b/apigen/libs/Nette/Nette/Application/UI/PresenterComponentReflection.php new file mode 100644 index 00000000000..ec087914224 --- /dev/null +++ b/apigen/libs/Nette/Nette/Application/UI/PresenterComponentReflection.php @@ -0,0 +1,174 @@ +getName() : $class; // TODO + $params = & self::$ppCache[$class]; + if ($params !== NULL) { + return $params; + } + $params = array(); + if (is_subclass_of($class, 'Nette\Application\UI\PresenterComponent')) { + $defaults = get_class_vars($class); + foreach (/**/$class::getPersistentParams()/**//*5.2*call_user_func(array($class, 'getPersistentParams'), $class)*/ as $name => $meta) { + if (is_string($meta)) { + $name = $meta; + } + $params[$name] = array( + 'def' => $defaults[$name], + 'since' => $class, + ); + } + foreach ($this->getPersistentParams(get_parent_class($class)) as $name => $param) { + if (isset($params[$name])) { + $params[$name]['since'] = $param['since']; + continue; + } + + $params[$name] = $param; + } + } + return $params; + } + + + + /** + * @param string|NULL + * @return array of persistent components. + */ + public function getPersistentComponents($class = NULL) + { + $class = $class === NULL ? $this->getName() : $class; + $components = & self::$pcCache[$class]; + if ($components !== NULL) { + return $components; + } + $components = array(); + if (is_subclass_of($class, 'Nette\Application\UI\Presenter')) { + foreach (/**/$class::getPersistentComponents()/**//*5.2*call_user_func(array($class, 'getPersistentComponents'), $class)*/ as $name => $meta) { + if (is_string($meta)) { + $name = $meta; + } + $components[$name] = array('since' => $class); + } + $components = $this->getPersistentComponents(get_parent_class($class)) + $components; + } + return $components; + } + + + + /** + * Is a method callable? It means class is instantiable and method has + * public visibility, is non-static and non-abstract. + * @param string method name + * @return bool + */ + public function hasCallableMethod($method) + { + $class = $this->getName(); + $cache = & self::$mcCache[strtolower($class . ':' . $method)]; + if ($cache === NULL) try { + $cache = FALSE; + $rm = Nette\Reflection\Method::from($class, $method); + $cache = $this->isInstantiable() && $rm->isPublic() && !$rm->isAbstract() && !$rm->isStatic(); + } catch (\ReflectionException $e) { + } + return $cache; + } + + + + /** + * @return array + */ + public static function combineArgs(\ReflectionFunctionAbstract $method, $args) + { + $res = array(); + $i = 0; + foreach ($method->getParameters() as $param) { + $name = $param->getName(); + if (isset($args[$name])) { // NULLs are ignored + $res[$i++] = $args[$name]; + $type = $param->isArray() ? 'array' : ($param->isDefaultValueAvailable() ? gettype($param->getDefaultValue()) : 'NULL'); + if (!self::convertType($res[$i-1], $type)) { + $mName = $method instanceof \ReflectionMethod ? $method->getDeclaringClass()->getName() . '::' . $method->getName() : $method->getName(); + throw new BadRequestException("Invalid value for parameter '$name' in method $mName(), expected " . ($type === 'NULL' ? 'scalar' : $type) . "."); + } + } else { + $res[$i++] = $param->isDefaultValueAvailable() ? $param->getDefaultValue() : ($param->isArray() ? array() : NULL); + } + } + return $res; + } + + + + /** + * Non data-loss type conversion. + * @param mixed + * @param string + * @return bool + */ + public static function convertType(& $val, $type) + { + if ($val === NULL || is_object($val)) { + // ignore + } elseif ($type === 'array') { + if (!is_array($val)) { + return FALSE; + } + } elseif (!is_scalar($val)) { + return FALSE; + + } elseif ($type !== 'NULL') { + $old = $val = ($val === FALSE ? '0' : (string) $val); + settype($val, $type); + if ($old !== ($val === FALSE ? '0' : (string) $val)) { + return FALSE; // data-loss occurs + } + } + return TRUE; + } + +} diff --git a/apigen/libs/Nette/Nette/Application/exceptions.php b/apigen/libs/Nette/Nette/Application/exceptions.php new file mode 100644 index 00000000000..d3d17606fff --- /dev/null +++ b/apigen/libs/Nette/Nette/Application/exceptions.php @@ -0,0 +1,92 @@ +previous = $previous; + parent::__construct($message, $code); + } else { + parent::__construct($message, $code, $previous); + } + } + */ +} + + + +/** + * The exception that is thrown when a presenter cannot be loaded. + */ +class InvalidPresenterException extends \Exception +{ +} + + + +/** + * Bad HTTP / presenter request exception. + */ +class BadRequestException extends \Exception +{ + /** @var int */ + protected $defaultCode = 404; + + + public function __construct($message = '', $code = 0, \Exception $previous = NULL) + { + if ($code < 200 || $code > 504) { + $code = $this->defaultCode; + } + + /*5.2*if (PHP_VERSION_ID < 50300) { + $this->previous = $previous; + parent::__construct($message, $code); + } else*/ { + parent::__construct($message, $code, $previous); + } + } + +} + + + +/** + * Forbidden request exception - access denied. + */ +class ForbiddenRequestException extends BadRequestException +{ + /** @var int */ + protected $defaultCode = 403; + +} diff --git a/apigen/libs/Nette/Nette/Application/templates/error.phtml b/apigen/libs/Nette/Nette/Application/templates/error.phtml new file mode 100644 index 00000000000..62eb652b93c --- /dev/null +++ b/apigen/libs/Nette/Nette/Application/templates/error.phtml @@ -0,0 +1,37 @@ + array('Oops...', 'Your browser sent a request that this server could not understand or process.'), + 403 => array('Access Denied', 'You do not have permission to view this page. Please try contact the web site administrator if you believe you should be able to view this page.'), + 404 => array('Page Not Found', 'The page you requested could not be found. It is possible that the address is incorrect, or that the page no longer exists. Please use a search engine to find what you are looking for.'), + 405 => array('Method Not Allowed', 'The requested method is not allowed for the URL.'), + 410 => array('Page Not Found', 'The page you requested has been taken off the site. We apologize for the inconvenience.'), + 500 => array('Server Error', 'We\'re sorry! The server encountered an internal error and was unable to complete your request. Please try again later.'), +); +$message = isset($messages[$code]) ? $messages[$code] : $messages[0]; + +?> + + + + + +<?php echo $message[0] ?> + +

+ +

+ +

error

diff --git a/apigen/libs/Nette/Nette/Caching/Cache.php b/apigen/libs/Nette/Nette/Caching/Cache.php new file mode 100644 index 00000000000..d746acb0016 --- /dev/null +++ b/apigen/libs/Nette/Nette/Caching/Cache.php @@ -0,0 +1,428 @@ +storage = $storage; + $this->namespace = $namespace . self::NAMESPACE_SEPARATOR; + } + + + + /** + * Returns cache storage. + * @return IStorage + */ + public function getStorage() + { + return $this->storage; + } + + + + /** + * Returns cache namespace. + * @return string + */ + public function getNamespace() + { + return (string) substr($this->namespace, 0, -1); + } + + + + /** + * Returns new nested cache object. + * @param string + * @return Cache + */ + public function derive($namespace) + { + $derived = new static($this->storage, $this->namespace . $namespace); + return $derived; + } + + + + /** + * Reads the specified item from the cache or generate it. + * @param mixed key + * @param callable + * @return mixed|NULL + */ + public function load($key, $fallback = NULL) + { + $data = $this->storage->read($this->generateKey($key)); + if ($data === NULL && $fallback) { + return $this->save($key, new Nette\Callback($fallback)); + } + return $data; + } + + + + /** + * Writes item into the cache. + * Dependencies are: + * - Cache::PRIORITY => (int) priority + * - Cache::EXPIRATION => (timestamp) expiration + * - Cache::SLIDING => (bool) use sliding expiration? + * - Cache::TAGS => (array) tags + * - Cache::FILES => (array|string) file names + * - Cache::ITEMS => (array|string) cache items + * - Cache::CONSTS => (array|string) cache items + * + * @param mixed key + * @param mixed value + * @param array dependencies + * @return mixed value itself + * @throws Nette\InvalidArgumentException + */ + public function save($key, $data, array $dp = NULL) + { + $this->release(); + $key = $this->generateKey($key); + + if ($data instanceof Nette\Callback || $data instanceof \Closure) { + $this->storage->lock($key); + $data = Nette\Callback::create($data)->invokeArgs(array(&$dp)); + } + + if ($data === NULL) { + $this->storage->remove($key); + } else { + $this->storage->write($key, $data, $this->completeDependencies($dp, $data)); + return $data; + } + } + + + + private function completeDependencies($dp, $data) + { + if (is_object($data)) { + $dp[self::CALLBACKS][] = array(array(__CLASS__, 'checkSerializationVersion'), get_class($data), + Nette\Reflection\ClassType::from($data)->getAnnotation('serializationVersion')); + } + + // convert expire into relative amount of seconds + if (isset($dp[Cache::EXPIRATION])) { + $dp[Cache::EXPIRATION] = Nette\DateTime::from($dp[Cache::EXPIRATION])->format('U') - time(); + } + + // convert FILES into CALLBACKS + if (isset($dp[self::FILES])) { + //clearstatcache(); + foreach (array_unique((array) $dp[self::FILES]) as $item) { + $dp[self::CALLBACKS][] = array(array(__CLASS__, 'checkFile'), $item, @filemtime($item)); // @ - stat may fail + } + unset($dp[self::FILES]); + } + + // add namespaces to items + if (isset($dp[self::ITEMS])) { + $dp[self::ITEMS] = array_unique((array) $dp[self::ITEMS]); + foreach ($dp[self::ITEMS] as $k => $item) { + $dp[self::ITEMS][$k] = $this->generateKey($item); + } + } + + // convert CONSTS into CALLBACKS + if (isset($dp[self::CONSTS])) { + foreach (array_unique((array) $dp[self::CONSTS]) as $item) { + $dp[self::CALLBACKS][] = array(array(__CLASS__, 'checkConst'), $item, constant($item)); + } + unset($dp[self::CONSTS]); + } + + if (!is_array($dp)) { + $dp = array(); + } + return $dp; + } + + + + /** + * Removes item from the cache. + * @param mixed key + * @return void + */ + public function remove($key) + { + $this->save($key, NULL); + } + + + + /** + * Removes items from the cache by conditions. + * Conditions are: + * - Cache::PRIORITY => (int) priority + * - Cache::TAGS => (array) tags + * - Cache::ALL => TRUE + * + * @param array + * @return void + */ + public function clean(array $conds = NULL) + { + $this->release(); + $this->storage->clean((array) $conds); + } + + + + /** + * Caches results of function/method calls. + * @param mixed + * @return mixed + */ + public function call($function) + { + $key = func_get_args(); + return $this->load($key, function() use ($function, $key) { + array_shift($key); + return Nette\Callback::create($function)->invokeArgs($key); + }); + } + + + + /** + * Caches results of function/method calls. + * @param mixed + * @param array dependencies + * @return Closure + */ + public function wrap($function, array $dp = NULL) + { + $cache = $this; + return function() use ($cache, $function, $dp) { + $key = array($function, func_get_args()); + $data = $cache->load($key); + if ($data === NULL) { + $data = $cache->save($key, Nette\Callback::create($function)->invokeArgs($key[1]), $dp); + } + return $data; + }; + } + + + + /** + * Starts the output cache. + * @param mixed key + * @return OutputHelper|NULL + */ + public function start($key) + { + $data = $this->load($key); + if ($data === NULL) { + return new OutputHelper($this, $key); + } + echo $data; + } + + + + /** + * Generates internal cache key. + * + * @param string + * @return string + */ + protected function generateKey($key) + { + return $this->namespace . md5(is_scalar($key) ? $key : serialize($key)); + } + + + + /********************* interface ArrayAccess ****************d*g**/ + + + + /** + * Inserts (replaces) item into the cache (\ArrayAccess implementation). + * @param mixed key + * @param mixed + * @return void + * @throws Nette\InvalidArgumentException + */ + public function offsetSet($key, $data) + { + $this->save($key, $data); + } + + + + /** + * Retrieves the specified item from the cache or NULL if the key is not found (\ArrayAccess implementation). + * @param mixed key + * @return mixed|NULL + * @throws Nette\InvalidArgumentException + */ + public function offsetGet($key) + { + $key = is_scalar($key) ? (string) $key : serialize($key); + if ($this->key !== $key) { + $this->key = $key; + $this->data = $this->load($key); + } + return $this->data; + } + + + + /** + * Exists item in cache? (\ArrayAccess implementation). + * @param mixed key + * @return bool + * @throws Nette\InvalidArgumentException + */ + public function offsetExists($key) + { + $this->release(); + return $this->offsetGet($key) !== NULL; + } + + + + /** + * Removes the specified item from the cache. + * @param mixed key + * @return void + * @throws Nette\InvalidArgumentException + */ + public function offsetUnset($key) + { + $this->save($key, NULL); + } + + + + /** + * Discards the internal cache used by ArrayAccess. + * @return void + */ + public function release() + { + $this->key = $this->data = NULL; + } + + + + /********************* dependency checkers ****************d*g**/ + + + + /** + * Checks CALLBACKS dependencies. + * @param array + * @return bool + */ + public static function checkCallbacks($callbacks) + { + foreach ($callbacks as $callback) { + $func = array_shift($callback); + if (!call_user_func_array($func, $callback)) { + return FALSE; + } + } + return TRUE; + } + + + + /** + * Checks CONSTS dependency. + * @param string + * @param mixed + * @return bool + */ + private static function checkConst($const, $value) + { + return defined($const) && constant($const) === $value; + } + + + + /** + * Checks FILES dependency. + * @param string + * @param int + * @return bool + */ + private static function checkFile($file, $time) + { + return @filemtime($file) == $time; // @ - stat may fail + } + + + + /** + * Checks object @serializationVersion label. + * @param string + * @param mixed + * @return bool + */ + private static function checkSerializationVersion($class, $value) + { + return Nette\Reflection\ClassType::from($class)->getAnnotation('serializationVersion') === $value; + } + +} diff --git a/apigen/libs/Nette/Nette/Caching/IStorage.php b/apigen/libs/Nette/Nette/Caching/IStorage.php new file mode 100644 index 00000000000..cf67751af3c --- /dev/null +++ b/apigen/libs/Nette/Nette/Caching/IStorage.php @@ -0,0 +1,63 @@ +cache = $cache; + $this->key = $key; + ob_start(); + } + + + + /** + * Stops and saves the cache. + * @param array dependencies + * @return void + */ + public function end(array $dp = NULL) + { + if ($this->cache === NULL) { + throw new Nette\InvalidStateException('Output cache has already been saved.'); + } + $this->cache->save($this->key, ob_get_flush(), (array) $dp + (array) $this->dependencies); + $this->cache = NULL; + } + +} diff --git a/apigen/libs/Nette/Nette/Caching/Storages/DevNullStorage.php b/apigen/libs/Nette/Nette/Caching/Storages/DevNullStorage.php new file mode 100644 index 00000000000..1d6dfd1a80d --- /dev/null +++ b/apigen/libs/Nette/Nette/Caching/Storages/DevNullStorage.php @@ -0,0 +1,81 @@ + 0, + self::PRIORITY => 1, + self::ENTRIES => 2, + self::DATA => 3, + ); + + + + /** + * @param string Directory location with journal file + */ + public function __construct($dir) + { + $this->file = $dir . '/' . self::FILE; + + // Create jorunal file when not exists + if (!file_exists($this->file)) { + $init = @fopen($this->file, 'xb'); // intentionally @ + if (!$init) { + clearstatcache(); + if (!file_exists($this->file)) { + throw new Nette\InvalidStateException("Cannot create journal file $this->file."); + } + } else { + $writen = fwrite($init, pack('N2', self::FILE_MAGIC, $this->lastNode)); + fclose($init); + if ($writen !== self::INT32_SIZE * 2) { + throw new Nette\InvalidStateException("Cannot write journal header."); + } + } + } + + $this->handle = fopen($this->file, 'r+b'); + + if (!$this->handle) { + throw new Nette\InvalidStateException("Cannot open journal file '$this->file'."); + } + + if (!flock($this->handle, LOCK_SH)) { + throw new Nette\InvalidStateException('Cannot acquire shared lock on journal.'); + } + + $header = stream_get_contents($this->handle, 2 * self::INT32_SIZE, 0); + + flock($this->handle, LOCK_UN); + + list(, $fileMagic, $this->lastNode) = unpack('N2', $header); + + if ($fileMagic !== self::FILE_MAGIC) { + fclose($this->handle); + $this->handle = false; + throw new Nette\InvalidStateException("Malformed journal file '$this->file'."); + } + } + + + + /** + * @return void + */ + public function __destruct() + { + if ($this->handle) { + $this->headerCommit(); + flock($this->handle, LOCK_UN); // Since PHP 5.3.3 is manual unlock necesary + fclose($this->handle); + $this->handle = false; + } + } + + + + /** + * Writes entry information into the journal. + * @param string + * @param array + * @return void + */ + public function write($key, array $dependencies) + { + $this->lock(); + + $priority = !isset($dependencies[Cache::PRIORITY]) ? FALSE : (int) $dependencies[Cache::PRIORITY]; + $tags = empty($dependencies[Cache::TAGS]) ? FALSE : (array) $dependencies[Cache::TAGS]; + + $exists = FALSE; + $keyHash = crc32($key); + list($entriesNodeId, $entriesNode) = $this->findIndexNode(self::ENTRIES, $keyHash); + + if (isset($entriesNode[$keyHash])) { + $entries = $this->mergeIndexData($entriesNode[$keyHash]); + foreach ($entries as $link => $foo) { + $dataNode = $this->getNode($link >> self::BITROT); + if ($dataNode[$link][self::KEY] === $key) { + if ($dataNode[$link][self::TAGS] == $tags && $dataNode[$link][self::PRIORITY] === $priority) { // intentionally ==, the order of tags does not matter + if ($dataNode[$link][self::DELETED]) { + $dataNode[$link][self::DELETED] = FALSE; + $this->saveNode($link >> self::BITROT, $dataNode); + } + $exists = TRUE; + } else { // Alredy exists, but with other tags or priority + $toDelete = array(); + foreach ($dataNode[$link][self::TAGS] as $tag) { + $toDelete[self::TAGS][$tag][$link] = TRUE; + } + if ($dataNode[$link][self::PRIORITY] !== FALSE) { + $toDelete[self::PRIORITY][$dataNode[$link][self::PRIORITY]][$link] = TRUE; + } + $toDelete[self::ENTRIES][$keyHash][$link] = TRUE; + $this->cleanFromIndex($toDelete); + $entriesNode = $this->getNode($entriesNodeId); // Node was changed, get again + unset($dataNode[$link]); + $this->saveNode($link >> self::BITROT, $dataNode); + } + break; + } + } + } + + if ($exists === FALSE) { + // Magical constants + $requiredSize = strlen($key) + 75; + if ($tags) { + foreach ($tags as $tag) { + $requiredSize += strlen($tag) + 13; + } + } + $requiredSize += $priority ? 10 : 1; + + $freeDataNode = $this->findFreeDataNode($requiredSize); + $data = $this->getNode($freeDataNode); + + if ($data === FALSE) { + $data = array( + self::INFO => array( + self::LAST_INDEX => ($freeDataNode << self::BITROT), + self::TYPE => self::DATA, + ) + ); + } + + $dataNodeKey = ++$data[self::INFO][self::LAST_INDEX]; + $data[$dataNodeKey] = array( + self::KEY => $key, + self::TAGS => $tags ? $tags : array(), + self::PRIORITY => $priority, + self::DELETED => FALSE, + ); + + $this->saveNode($freeDataNode, $data); + + // Save to entries tree, ... + $entriesNode[$keyHash][$dataNodeKey] = 1; + $this->saveNode($entriesNodeId, $entriesNode); + + // ...tags tree... + if ($tags) { + foreach ($tags as $tag) { + list($nodeId, $node) = $this->findIndexNode(self::TAGS, $tag); + $node[$tag][$dataNodeKey] = 1; + $this->saveNode($nodeId, $node); + } + } + + // ...and priority tree. + if ($priority) { + list($nodeId, $node) = $this->findIndexNode(self::PRIORITY, $priority); + $node[$priority][$dataNodeKey] = 1; + $this->saveNode($nodeId, $node); + } + } + + $this->commit(); + $this->unlock(); + } + + + + /** + * Cleans entries from journal. + * @param array + * @return array of removed items or NULL when performing a full cleanup + */ + public function clean(array $conditions) + { + $this->lock(); + + if (!empty($conditions[Cache::ALL])) { + $this->nodeCache = $this->nodeChanged = $this->dataNodeFreeSpace = array(); + $this->deleteAll(); + $this->unlock(); + return; + } + + $toDelete = array( + self::TAGS => array(), + self::PRIORITY => array(), + self::ENTRIES => array() + ); + + $entries = array(); + + if (!empty($conditions[Cache::TAGS])) { + $entries = $this->cleanTags((array) $conditions[Cache::TAGS], $toDelete); + } + + if (isset($conditions[Cache::PRIORITY])) { + $this->arrayAppend($entries, $this->cleanPriority((int) $conditions[Cache::PRIORITY], $toDelete)); + } + + $this->deletedLinks = array(); + $this->cleanFromIndex($toDelete); + + $this->commit(); + $this->unlock(); + + return $entries; + } + + + + /** + * Cleans entries from journal by tags. + * @return array of removed items + */ + private function cleanTags(array $tags, array &$toDelete) + { + $entries = array(); + + foreach ($tags as $tag) { + list($nodeId, $node) = $this->findIndexNode(self::TAGS, $tag); + + if (isset($node[$tag])) { + $ent = $this->cleanLinks($this->mergeIndexData($node[$tag]), $toDelete); + $this->arrayAppend($entries, $ent); + } + } + + return $entries; + } + + + + /** + * Cleans entries from journal by priority. + * @param integer + * @param array + * @return array of removed items + */ + private function cleanPriority($priority, array &$toDelete) + { + list($nodeId, $node) = $this->findIndexNode(self::PRIORITY, $priority); + + ksort($node); + + $allData = array(); + + foreach ($node as $prior => $data) { + if ($prior === self::INFO) { + continue; + } elseif ($prior > $priority) { + break; + } + + $this->arrayAppendKeys($allData, $this->mergeIndexData($data)); + } + + $nodeInfo = $node[self::INFO]; + while ($nodeInfo[self::PREV_NODE] !== -1) { + $nodeId = $nodeInfo[self::PREV_NODE]; + $node = $this->getNode($nodeId); + + if ($node === FALSE) { + if (self::$debug) { + throw new Nette\InvalidStateException("Cannot load node number $nodeId."); + } + break; + } + + $nodeInfo = $node[self::INFO]; + unset($node[self::INFO]); + + foreach ($node as $prior => $data) { + $this->arrayAppendKeys($allData, $this->mergeIndexData($data)); + } + } + + return $this->cleanLinks($allData, $toDelete); + } + + + + /** + * Cleans links from $data. + * @param array + * @param array + * @return array of removed items + */ + private function cleanLinks(array $data, array &$toDelete) + { + $return = array(); + + $data = array_keys($data); + sort($data); + $max = count($data); + $data[] = 0; + $i = 0; + + while ($i < $max) { + $searchLink = $data[$i]; + + if (isset($this->deletedLinks[$searchLink])) { + ++$i; + continue; + } + + $nodeId = $searchLink >> self::BITROT; + $node = $this->getNode($nodeId); + + if ($node === FALSE) { + if (self::$debug) { + throw new Nette\InvalidStateException('Cannot load node number ' . ($nodeId) . '.'); + } + ++$i; + continue; + } + + do { + $link = $data[$i]; + + if (!isset($node[$link])) { + if (self::$debug) { + throw new Nette\InvalidStateException("Link with ID $searchLink is not in node ". ($nodeId) . '.'); + } + continue; + } elseif (isset($this->deletedLinks[$link])) { + continue; + } + + $nodeLink = &$node[$link]; + if (!$nodeLink[self::DELETED]) { + $nodeLink[self::DELETED] = TRUE; + $return[] = $nodeLink[self::KEY]; + } else { + foreach ($nodeLink[self::TAGS] as $tag) { + $toDelete[self::TAGS][$tag][$link] = TRUE; + } + if ($nodeLink[self::PRIORITY] !== FALSE) { + $toDelete[self::PRIORITY][$nodeLink[self::PRIORITY]][$link] = TRUE; + } + $toDelete[self::ENTRIES][crc32($nodeLink[self::KEY])][$link] = TRUE; + unset($node[$link]); + $this->deletedLinks[$link] = TRUE; + } + } while (($data[++$i] >> self::BITROT) === $nodeId); + + $this->saveNode($nodeId, $node); + } + + return $return; + } + + + + /** + * Remove links to deleted keys from index. + * @param array + */ + private function cleanFromIndex(array $toDeleteFromIndex) + { + foreach ($toDeleteFromIndex as $type => $toDelete) { + ksort($toDelete); + + while (!empty($toDelete)) { + reset($toDelete); + $searchKey = key($toDelete); + list($masterNodeId, $masterNode) = $this->findIndexNode($type, $searchKey); + + if (!isset($masterNode[$searchKey])) { + if (self::$debug) { + throw new Nette\InvalidStateException('Bad index.'); + } + unset($toDelete[$searchKey]); + continue; + } + + foreach ($toDelete as $key => $links) { + if (isset($masterNode[$key])) { + foreach ($links as $link => $foo) { + if (isset($masterNode[$key][$link])) { + unset($masterNode[$key][$link], $links[$link]); + } + } + + if (!empty($links) && isset($masterNode[$key][self::INDEX_DATA])) { + $this->cleanIndexData($masterNode[$key][self::INDEX_DATA], $links, $masterNode[$key]); + } + + if (empty($masterNode[$key])) { + unset($masterNode[$key]); + } + unset($toDelete[$key]); + } else { + break; + } + } + $this->saveNode($masterNodeId, $masterNode); + } + } + } + + + + /** + * Merge data with index data in other nodes. + * @param array + * @return array of merged items + */ + private function mergeIndexData(array $data) + { + while (isset($data[self::INDEX_DATA])) { + $id = $data[self::INDEX_DATA]; + unset($data[self::INDEX_DATA]); + $childNode = $this->getNode($id); + + if ($childNode === FALSE) { + if (self::$debug) { + throw new Nette\InvalidStateException("Cannot load node number $id."); + } + break; + } + + $this->arrayAppendKeys($data, $childNode[self::INDEX_DATA]); + } + + return $data; + } + + + + /** + * Cleans links from other nodes. + * @param int + * @param array + * @param array + * @return void + */ + private function cleanIndexData($nextNodeId, array $links, &$masterNodeLink) + { + $prev = -1; + + while ($nextNodeId && !empty($links)) { + $nodeId = $nextNodeId; + $node = $this->getNode($nodeId); + + if ($node === FALSE) { + if (self::$debug) { + throw new Nette\InvalidStateException("Cannot load node number $nodeId."); + } + break; + } + + foreach ($links as $link => $foo) { + if (isset($node[self::INDEX_DATA][$link])) { + unset($node[self::INDEX_DATA][$link], $links[$link]); + } + } + + if (isset($node[self::INDEX_DATA][self::INDEX_DATA])) { + $nextNodeId = $node[self::INDEX_DATA][self::INDEX_DATA]; + } else { + $nextNodeId = FALSE; + } + + if (empty($node[self::INDEX_DATA]) || (count($node[self::INDEX_DATA]) === 1 && $nextNodeId)) { + if ($prev === -1) { + if ($nextNodeId === FALSE) { + unset($masterNodeLink[self::INDEX_DATA]); + } else { + $masterNodeLink[self::INDEX_DATA] = $nextNodeId; + } + } else { + $prevNode = $this->getNode($prev); + if ($prevNode === FALSE) { + if (self::$debug) { + throw new Nette\InvalidStateException("Cannot load node number $prev."); + } + } else { + if ($nextNodeId === FALSE) { + unset($prevNode[self::INDEX_DATA][self::INDEX_DATA]); + if (empty($prevNode[self::INDEX_DATA])) { + unset($prevNode[self::INDEX_DATA]); + } + } else { + $prevNode[self::INDEX_DATA][self::INDEX_DATA] = $nextNodeId; + } + + $this->saveNode($prev, $prevNode); + } + } + unset($node[self::INDEX_DATA]); + } else { + $prev = $nodeId; + } + + $this->saveNode($nodeId, $node); + } + } + + + + /** + * Get node from journal. + * @param integer + * @return array + */ + private function getNode($id) + { + // Load from cache + if (isset($this->nodeCache[$id])) { + return $this->nodeCache[$id]; + } + + $binary = stream_get_contents($this->handle, self::NODE_SIZE, self::HEADER_SIZE + self::NODE_SIZE * $id); + + if (empty($binary)) { + // empty node, no Exception + return FALSE; + } + + list(, $magic, $lenght) = unpack('N2', $binary); + if ($magic !== self::INDEX_MAGIC && $magic !== self::DATA_MAGIC) { + if (!empty($magic)) { + if (self::$debug) { + throw new Nette\InvalidStateException("Node $id has malformed header."); + } + $this->deleteNode($id); + } + return FALSE; + } + + $data = substr($binary, 2 * self::INT32_SIZE, $lenght - 2 * self::INT32_SIZE); + + $node = @unserialize($data); // intentionally @ + if ($node === FALSE) { + $this->deleteNode($id); + if (self::$debug) { + throw new Nette\InvalidStateException("Cannot deserialize node number $id."); + } + return FALSE; + } + + // Save to cache and return + return $this->nodeCache[$id] = $node; + } + + + + /** + * Save node to cache. + * @param integer + * @param array + * @return void + */ + private function saveNode($id, array $node) + { + if (count($node) === 1) { // Nod contains only INFO + $nodeInfo = $node[self::INFO]; + if ($nodeInfo[self::TYPE] !== self::DATA) { + + if ($nodeInfo[self::END] !== -1) { + $this->nodeCache[$id] = $node; + $this->nodeChanged[$id] = TRUE; + return; + } + + if ($nodeInfo[self::MAX] === -1) { + $max = PHP_INT_MAX; + } else { + $max = $nodeInfo[self::MAX]; + } + + list(, , $parentId) = $this->findIndexNode($nodeInfo[self::TYPE], $max, $id); + if ($parentId !== -1 && $parentId !== $id) { + $parentNode = $this->getNode($parentId); + if ($parentNode === FALSE) { + if (self::$debug) { + throw new Nette\InvalidStateException("Cannot load node number $parentId."); + } + } else { + if ($parentNode[self::INFO][self::END] === $id) { + if (count($parentNode) === 1) { + $parentNode[self::INFO][self::END] = -1; + } else { + end($parentNode); + $lastKey = key($parentNode); + $parentNode[self::INFO][self::END] = $parentNode[$lastKey]; + unset($parentNode[$lastKey]); + } + } else { + unset($parentNode[$nodeInfo[self::MAX]]); + } + + $this->saveNode($parentId, $parentNode); + } + } + + if ($nodeInfo[self::TYPE] === self::PRIORITY) { // only priority tree has link to prevNode + if ($nodeInfo[self::MAX] === -1) { + if ($nodeInfo[self::PREV_NODE] !== -1) { + $prevNode = $this->getNode($nodeInfo[self::PREV_NODE]); + if ($prevNode === FALSE) { + if (self::$debug) { + throw new Nette\InvalidStateException('Cannot load node number ' . $nodeInfo[self::PREV_NODE] . '.'); + } + } else { + $prevNode[self::INFO][self::MAX] = -1; + $this->saveNode($nodeInfo[self::PREV_NODE], $prevNode); + } + } + } else { + list($nextId, $nextNode) = $this->findIndexNode($nodeInfo[self::TYPE], $nodeInfo[self::MAX] + 1, NULL, $id); + if ($nextId !== -1 && $nextId !== $id) { + $nextNode[self::INFO][self::PREV_NODE] = $nodeInfo[self::PREV_NODE]; + $this->saveNode($nextId, $nextNode); + } + } + } + } + $this->nodeCache[$id] = FALSE; + } else { + $this->nodeCache[$id] = $node; + } + $this->nodeChanged[$id] = TRUE; + } + + + + /** + * Commit all changed nodes from cache to journal file. + * @return void + */ + private function commit() + { + do { + foreach ($this->nodeChanged as $id => $foo) { + if ($this->prepareNode($id, $this->nodeCache[$id])) { + unset($this->nodeChanged[$id]); + } + } + } while (!empty($this->nodeChanged)); + + foreach ($this->toCommit as $node => $str) { + $this->commitNode($node, $str); + } + $this->toCommit = array(); + } + + + + /** + * Prepare node to journal file structure. + * @param integer + * @param array|bool + * @return bool Sucessfully commited + */ + private function prepareNode($id, $node) + { + if ($node === FALSE) { + if ($id < $this->lastNode) { + $this->lastNode = $id; + } + unset($this->nodeCache[$id]); + unset($this->dataNodeFreeSpace[$id]); + $this->deleteNode($id); + return TRUE; + } + + $data = serialize($node); + $dataSize = strlen($data) + 2 * self::INT32_SIZE; + + $isData = $node[self::INFO][self::TYPE] === self::DATA; + if ($dataSize > self::NODE_SIZE) { + if ($isData) { + throw new Nette\InvalidStateException('Saving node is bigger than maximum node size.'); + } else { + $this->bisectNode($id, $node); + return FALSE; + } + } + + $this->toCommit[$id] = pack('N2', $isData ? self::DATA_MAGIC : self::INDEX_MAGIC, $dataSize) . $data; + + if ($this->lastNode < $id) { + $this->lastNode = $id; + } + if ($isData) { + $this->dataNodeFreeSpace[$id] = self::NODE_SIZE - $dataSize; + } + + return TRUE; + } + + + + /** + * Commit node string to journal file. + * @param integer + * @param string + * @return void + */ + private function commitNode($id, $str) + { + fseek($this->handle, self::HEADER_SIZE + self::NODE_SIZE * $id); + $writen = fwrite($this->handle, $str); + if ($writen === FALSE) { + throw new Nette\InvalidStateException("Cannot write node number $id to journal."); + } + } + + + + /** + * Find right node in B+tree. . + * @param string Tree type (TAGS, PRIORITY or ENTRIES) + * @param int Searched item + * @return array Node + */ + private function findIndexNode($type, $search, $childId = NULL, $prevId = NULL) + { + $nodeId = self::$startNode[$type]; + + $parentId = -1; + while (TRUE) { + $node = $this->getNode($nodeId); + + if ($node === FALSE) { + return array( + $nodeId, + array( + self::INFO => array( + self::TYPE => $type, + self::IS_LEAF => TRUE, + self::PREV_NODE => -1, + self::END => -1, + self::MAX => -1, + ) + ), + $parentId, + ); // Init empty node + } + + if ($node[self::INFO][self::IS_LEAF] || $nodeId === $childId || $node[self::INFO][self::PREV_NODE] === $prevId) { + return array($nodeId, $node, $parentId); + } + + $parentId = $nodeId; + + if (isset($node[$search])) { + $nodeId = $node[$search]; + } else { + foreach ($node as $key => $childNode) { + if ($key > $search and $key !== self::INFO) { + $nodeId = $childNode; + continue 2; + } + } + + $nodeId = $node[self::INFO][self::END]; + } + } + } + + + + /** + * Find complete free node. + * @param integer + * @return array|integer Node ID + */ + private function findFreeNode($count = 1) + { + $id = $this->lastNode; + $nodesId = array(); + + do { + if (isset($this->nodeCache[$id])) { + ++$id; + continue; + } + + $offset = self::HEADER_SIZE + self::NODE_SIZE * $id; + + $binary = stream_get_contents($this->handle, self::INT32_SIZE, $offset); + + if (empty($binary)) { + $nodesId[] = $id; + } else { + list(, $magic) = unpack('N', $binary); + if ($magic !== self::INDEX_MAGIC && $magic !== self::DATA_MAGIC) { + $nodesId[] = $id; + } + } + + ++$id; + } while (count($nodesId) !== $count); + + if ($count === 1) { + return $nodesId[0]; + } else { + return $nodesId; + } + } + + + + /** + * Find free data node that has $size bytes of free space. + * @param integer size in bytes + * @return integer Node ID + */ + private function findFreeDataNode($size) + { + foreach ($this->dataNodeFreeSpace as $id => $freeSpace) { + if ($freeSpace > $size) { + return $id; + } + } + + $id = self::$startNode[self::DATA]; + while (TRUE) { + if (isset($this->dataNodeFreeSpace[$id]) || isset($this->nodeCache[$id])) { + ++$id; + continue; + } + + $offset = self::HEADER_SIZE + self::NODE_SIZE * $id; + $binary = stream_get_contents($this->handle, 2 * self::INT32_SIZE, $offset); + + if (empty($binary)) { + $this->dataNodeFreeSpace[$id] = self::NODE_SIZE; + return $id; + } + + list(, $magic, $nodeSize) = unpack('N2', $binary); + if (empty($magic)) { + $this->dataNodeFreeSpace[$id] = self::NODE_SIZE; + return $id; + } elseif ($magic === self::DATA_MAGIC) { + $freeSpace = self::NODE_SIZE - $nodeSize; + $this->dataNodeFreeSpace[$id] = $freeSpace; + + if ($freeSpace > $size) { + return $id; + } + } + + ++$id; + } + } + + + + /** + * Bisect node or when has only one key, move part to data node. + * @param integer Node ID + * @param array Node + * @return void + */ + private function bisectNode($id, array $node) + { + $nodeInfo = $node[self::INFO]; + unset($node[self::INFO]); + + if (count($node) === 1) { + $key = key($node); + + $dataId = $this->findFreeDataNode(self::NODE_SIZE); + $this->saveNode($dataId, array( + self::INDEX_DATA => $node[$key], + self::INFO => array( + self::TYPE => self::DATA, + self::LAST_INDEX => ($dataId << self::BITROT), + ))); + + unset($node[$key]); + $node[$key][self::INDEX_DATA] = $dataId; + $node[self::INFO] = $nodeInfo; + + $this->saveNode($id, $node); + return; + } + + ksort($node); + $halfCount = ceil(count($node) / 2); + + list($first, $second) = array_chunk($node, $halfCount, TRUE); + + end($first); + $halfKey = key($first); + + if ($id <= 2) { // Root + list($firstId, $secondId) = $this->findFreeNode(2); + + $first[self::INFO] = array( + self::TYPE => $nodeInfo[self::TYPE], + self::IS_LEAF => $nodeInfo[self::IS_LEAF], + self::PREV_NODE => -1, + self::END => -1, + self::MAX => $halfKey, + ); + $this->saveNode($firstId, $first); + + $second[self::INFO] = array( + self::TYPE => $nodeInfo[self::TYPE], + self::IS_LEAF => $nodeInfo[self::IS_LEAF], + self::PREV_NODE => $firstId, + self::END => $nodeInfo[self::END], + self::MAX => -1, + ); + $this->saveNode($secondId, $second); + + $parentNode = array( + self::INFO => array( + self::TYPE => $nodeInfo[self::TYPE], + self::IS_LEAF => FALSE, + self::PREV_NODE => -1, + self::END => $secondId, + self::MAX => -1, + ), + $halfKey => $firstId, + ); + $this->saveNode($id, $parentNode); + } else { + $firstId = $this->findFreeNode(); + + $first[self::INFO] = array( + self::TYPE => $nodeInfo[self::TYPE], + self::IS_LEAF => $nodeInfo[self::IS_LEAF], + self::PREV_NODE => $nodeInfo[self::PREV_NODE], + self::END => -1, + self::MAX => $halfKey, + ); + $this->saveNode($firstId, $first); + + $second[self::INFO] = array( + self::TYPE => $nodeInfo[self::TYPE], + self::IS_LEAF => $nodeInfo[self::IS_LEAF], + self::PREV_NODE => $firstId, + self::END => $nodeInfo[self::END], + self::MAX => $nodeInfo[self::MAX], + ); + $this->saveNode($id, $second); + + list(,, $parent) = $this->findIndexNode($nodeInfo[self::TYPE], $halfKey); + $parentNode = $this->getNode($parent); + if ($parentNode === FALSE) { + if (self::$debug) { + throw new Nette\InvalidStateException("Cannot load node number $parent."); + } + } else { + $parentNode[$halfKey] = $firstId; + ksort($parentNode); // Parent index must be always sorted. + $this->saveNode($parent, $parentNode); + } + } + } + + + + /** + * Commit header to journal file. + * @return void + */ + private function headerCommit() + { + fseek($this->handle, self::INT32_SIZE); + @fwrite($this->handle, pack('N', $this->lastNode)); // intentionally @, save is not necceseary + } + + + + /** + * Remove node from journal file. + * @param integer + * @return void + */ + private function deleteNode($id) + { + fseek($this->handle, 0, SEEK_END); + $end = ftell($this->handle); + + if ($end <= (self::HEADER_SIZE + self::NODE_SIZE * ($id + 1))) { + $packedNull = pack('N', 0); + + do { + $binary = stream_get_contents($this->handle, self::INT32_SIZE, (self::HEADER_SIZE + self::NODE_SIZE * --$id)); + } while (empty($binary) || $binary === $packedNull); + + if (!ftruncate($this->handle, self::HEADER_SIZE + self::NODE_SIZE * ($id + 1))) { + throw new Nette\InvalidStateException('Cannot truncate journal file.'); + } + } else { + fseek($this->handle, self::HEADER_SIZE + self::NODE_SIZE * $id); + $writen = fwrite($this->handle, pack('N', 0)); + if ($writen !== self::INT32_SIZE) { + throw new Nette\InvalidStateException("Cannot delete node number $id from journal."); + } + } + } + + + + /** + * Complete delete all nodes from file. + * @return void + */ + private function deleteAll() + { + if (!ftruncate($this->handle, self::HEADER_SIZE)) { + throw new Nette\InvalidStateException('Cannot truncate journal file.'); + } + } + + + + /** + * Lock file for writing and reading and delete node cache when file has changed. + * @return void + */ + private function lock() + { + if (!$this->handle) { + throw new Nette\InvalidStateException('File journal file is not opened'); + } + + if (!flock($this->handle, LOCK_EX)) { + throw new Nette\InvalidStateException('Cannot acquire exclusive lock on journal.'); + } + + if ($this->lastModTime !== NULL) { + clearstatcache(); + if ($this->lastModTime < @filemtime($this->file)) { // intentionally @ + $this->nodeCache = $this->dataNodeFreeSpace = array(); + } + } + } + + + + /** + * Unlock file and save last modified time. + * @return void + */ + private function unlock() + { + if ($this->handle) { + fflush($this->handle); + flock($this->handle, LOCK_UN); + clearstatcache(); + $this->lastModTime = @filemtime($this->file); // intentionally @ + } + } + + + + /** + * Append $append to $array. + * This function is much faster then $array = array_merge($array, $append) + * @param array + * @param array + * @return void + */ + private function arrayAppend(array &$array, array $append) + { + foreach ($append as $value) { + $array[] = $value; + } + } + + + + /** + * Append $append to $array with preserve keys. + * This function is much faster then $array = $array + $append + * @param array + * @param array + * @return void + */ + private function arrayAppendKeys(array &$array, array $append) + { + foreach ($append as $key => $value) { + $array[$key] = $value; + } + } + +} diff --git a/apigen/libs/Nette/Nette/Caching/Storages/FileStorage.php b/apigen/libs/Nette/Nette/Caching/Storages/FileStorage.php new file mode 100644 index 00000000000..915c6a0cdf0 --- /dev/null +++ b/apigen/libs/Nette/Nette/Caching/Storages/FileStorage.php @@ -0,0 +1,429 @@ + timestamp) + META_CALLBACKS = 'callbacks'; // array of callbacks (function, args) + + /** additional cache structure */ + const FILE = 'file', + HANDLE = 'handle'; + + + /** @var float probability that the clean() routine is started */ + public static $gcProbability = 0.001; + + /** @var bool */ + public static $useDirectories = TRUE; + + /** @var string */ + private $dir; + + /** @var bool */ + private $useDirs; + + /** @var IJournal */ + private $journal; + + /** @var array */ + private $locks; + + + + public function __construct($dir, IJournal $journal = NULL) + { + $this->dir = realpath($dir); + if ($this->dir === FALSE) { + throw new Nette\DirectoryNotFoundException("Directory '$dir' not found."); + } + + $this->useDirs = (bool) static::$useDirectories; + $this->journal = $journal; + + if (mt_rand() / mt_getrandmax() < static::$gcProbability) { + $this->clean(array()); + } + } + + + + /** + * Read from cache. + * @param string key + * @return mixed|NULL + */ + public function read($key) + { + $meta = $this->readMetaAndLock($this->getCacheFile($key), LOCK_SH); + if ($meta && $this->verify($meta)) { + return $this->readData($meta); // calls fclose() + + } else { + return NULL; + } + } + + + + /** + * Verifies dependencies. + * @param array + * @return bool + */ + private function verify($meta) + { + do { + if (!empty($meta[self::META_DELTA])) { + // meta[file] was added by readMetaAndLock() + if (filemtime($meta[self::FILE]) + $meta[self::META_DELTA] < time()) { + break; + } + touch($meta[self::FILE]); + + } elseif (!empty($meta[self::META_EXPIRE]) && $meta[self::META_EXPIRE] < time()) { + break; + } + + if (!empty($meta[self::META_CALLBACKS]) && !Cache::checkCallbacks($meta[self::META_CALLBACKS])) { + break; + } + + if (!empty($meta[self::META_ITEMS])) { + foreach ($meta[self::META_ITEMS] as $depFile => $time) { + $m = $this->readMetaAndLock($depFile, LOCK_SH); + if ($m[self::META_TIME] !== $time || ($m && !$this->verify($m))) { + break 2; + } + } + } + + return TRUE; + } while (FALSE); + + $this->delete($meta[self::FILE], $meta[self::HANDLE]); // meta[handle] & meta[file] was added by readMetaAndLock() + return FALSE; + } + + + + /** + * Prevents item reading and writing. Lock is released by write() or remove(). + * @param string key + * @return void + */ + public function lock($key) + { + $cacheFile = $this->getCacheFile($key); + if ($this->useDirs && !is_dir($dir = dirname($cacheFile))) { + @mkdir($dir, 0777); // @ - directory may already exist + } + $handle = @fopen($cacheFile, 'r+b'); // @ - file may not exist + if (!$handle) { + $handle = fopen($cacheFile, 'wb'); + if (!$handle) { + return; + } + } + + $this->locks[$key] = $handle; + flock($handle, LOCK_EX); + } + + + + /** + * Writes item into the cache. + * @param string key + * @param mixed data + * @param array dependencies + * @return void + */ + public function write($key, $data, array $dp) + { + $meta = array( + self::META_TIME => microtime(), + ); + + if (isset($dp[Cache::EXPIRATION])) { + if (empty($dp[Cache::SLIDING])) { + $meta[self::META_EXPIRE] = $dp[Cache::EXPIRATION] + time(); // absolute time + } else { + $meta[self::META_DELTA] = (int) $dp[Cache::EXPIRATION]; // sliding time + } + } + + if (isset($dp[Cache::ITEMS])) { + foreach ((array) $dp[Cache::ITEMS] as $item) { + $depFile = $this->getCacheFile($item); + $m = $this->readMetaAndLock($depFile, LOCK_SH); + $meta[self::META_ITEMS][$depFile] = $m[self::META_TIME]; // may be NULL + unset($m); + } + } + + if (isset($dp[Cache::CALLBACKS])) { + $meta[self::META_CALLBACKS] = $dp[Cache::CALLBACKS]; + } + + if (!isset($this->locks[$key])) { + $this->lock($key); + if (!isset($this->locks[$key])) { + return; + } + } + $handle = $this->locks[$key]; + unset($this->locks[$key]); + + $cacheFile = $this->getCacheFile($key); + + if (isset($dp[Cache::TAGS]) || isset($dp[Cache::PRIORITY])) { + if (!$this->journal) { + throw new Nette\InvalidStateException('CacheJournal has not been provided.'); + } + $this->journal->write($cacheFile, $dp); + } + + ftruncate($handle, 0); + + if (!is_string($data)) { + $data = serialize($data); + $meta[self::META_SERIALIZED] = TRUE; + } + + $head = serialize($meta) . '?>'; + $head = 'delete($cacheFile, $handle); + } + + + + /** + * Removes item from the cache. + * @param string key + * @return void + */ + public function remove($key) + { + unset($this->locks[$key]); + $this->delete($this->getCacheFile($key)); + } + + + + /** + * Removes items from the cache by conditions & garbage collector. + * @param array conditions + * @return void + */ + public function clean(array $conds) + { + $all = !empty($conds[Cache::ALL]); + $collector = empty($conds); + + // cleaning using file iterator + if ($all || $collector) { + $now = time(); + foreach (Nette\Utils\Finder::find('_*')->from($this->dir)->childFirst() as $entry) { + $path = (string) $entry; + if ($entry->isDir()) { // collector: remove empty dirs + @rmdir($path); // @ - removing dirs is not necessary + continue; + } + if ($all) { + $this->delete($path); + + } else { // collector + $meta = $this->readMetaAndLock($path, LOCK_SH); + if (!$meta) { + continue; + } + + if ((!empty($meta[self::META_DELTA]) && filemtime($meta[self::FILE]) + $meta[self::META_DELTA] < $now) + || (!empty($meta[self::META_EXPIRE]) && $meta[self::META_EXPIRE] < $now) + ) { + $this->delete($path, $meta[self::HANDLE]); + continue; + } + + flock($meta[self::HANDLE], LOCK_UN); + fclose($meta[self::HANDLE]); + } + } + + if ($this->journal) { + $this->journal->clean($conds); + } + return; + } + + // cleaning using journal + if ($this->journal) { + foreach ($this->journal->clean($conds) as $file) { + $this->delete($file); + } + } + } + + + + /** + * Reads cache data from disk. + * @param string file path + * @param int lock mode + * @return array|NULL + */ + protected function readMetaAndLock($file, $lock) + { + $handle = @fopen($file, 'r+b'); // @ - file may not exist + if (!$handle) { + return NULL; + } + + flock($handle, $lock); + + $head = stream_get_contents($handle, self::META_HEADER_LEN); + if ($head && strlen($head) === self::META_HEADER_LEN) { + $size = (int) substr($head, -6); + $meta = stream_get_contents($handle, $size, self::META_HEADER_LEN); + $meta = @unserialize($meta); // intentionally @ + if (is_array($meta)) { + fseek($handle, $size + self::META_HEADER_LEN); // needed by PHP < 5.2.6 + $meta[self::FILE] = $file; + $meta[self::HANDLE] = $handle; + return $meta; + } + } + + flock($handle, LOCK_UN); + fclose($handle); + return NULL; + } + + + + /** + * Reads cache data from disk and closes cache file handle. + * @param array + * @return mixed + */ + protected function readData($meta) + { + $data = stream_get_contents($meta[self::HANDLE]); + flock($meta[self::HANDLE], LOCK_UN); + fclose($meta[self::HANDLE]); + + if (empty($meta[self::META_SERIALIZED])) { + return $data; + } else { + return @unserialize($data); // intentionally @ + } + } + + + + /** + * Returns file name. + * @param string + * @return string + */ + protected function getCacheFile($key) + { + $file = urlencode($key); + if ($this->useDirs && $a = strrpos($file, '%00')) { // %00 = urlencode(Nette\Caching\Cache::NAMESPACE_SEPARATOR) + $file = substr_replace($file, '/_', $a, 3); + } + return $this->dir . '/_' . $file; + } + + + + /** + * Deletes and closes file. + * @param string + * @param resource + * @return void + */ + private static function delete($file, $handle = NULL) + { + if (@unlink($file)) { // @ - file may not already exist + if ($handle) { + flock($handle, LOCK_UN); + fclose($handle); + } + return; + } + + if (!$handle) { + $handle = @fopen($file, 'r+'); // @ - file may not exist + } + if ($handle) { + flock($handle, LOCK_EX); + ftruncate($handle, 0); + flock($handle, LOCK_UN); + fclose($handle); + @unlink($file); // @ - file may not already exist + } + } + +} diff --git a/apigen/libs/Nette/Nette/Caching/Storages/IJournal.php b/apigen/libs/Nette/Nette/Caching/Storages/IJournal.php new file mode 100644 index 00000000000..e5d5e9dadec --- /dev/null +++ b/apigen/libs/Nette/Nette/Caching/Storages/IJournal.php @@ -0,0 +1,42 @@ +prefix = $prefix; + $this->journal = $journal; + $this->memcache = new \Memcache; + if ($host) { + $this->addServer($host, $port); + } + } + + + + public function addServer($host = 'localhost', $port = 11211, $timeout = 1) + { + Nette\Diagnostics\Debugger::tryError(); + $this->memcache->addServer($host, $port, TRUE, 1, $timeout); + if (Nette\Diagnostics\Debugger::catchError($e)) { + throw new Nette\InvalidStateException('Memcache::addServer(): ' . $e->getMessage(), 0, $e); + } + } + + + + /** + * @return \Memcache + */ + public function getConnection() + { + return $this->memcache; + } + + + + /** + * Read from cache. + * @param string key + * @return mixed|NULL + */ + public function read($key) + { + $key = $this->prefix . $key; + $meta = $this->memcache->get($key); + if (!$meta) { + return NULL; + } + + // meta structure: + // array( + // data => stored data + // delta => relative (sliding) expiration + // callbacks => array of callbacks (function, args) + // ) + + // verify dependencies + if (!empty($meta[self::META_CALLBACKS]) && !Cache::checkCallbacks($meta[self::META_CALLBACKS])) { + $this->memcache->delete($key, 0); + return NULL; + } + + if (!empty($meta[self::META_DELTA])) { + $this->memcache->replace($key, $meta, 0, $meta[self::META_DELTA] + time()); + } + + return $meta[self::META_DATA]; + } + + + + /** + * Prevents item reading and writing. Lock is released by write() or remove(). + * @param string key + * @return void + */ + public function lock($key) + { + } + + + + /** + * Writes item into the cache. + * @param string key + * @param mixed data + * @param array dependencies + * @return void + */ + public function write($key, $data, array $dp) + { + if (isset($dp[Cache::ITEMS])) { + throw new Nette\NotSupportedException('Dependent items are not supported by MemcachedStorage.'); + } + + $key = $this->prefix . $key; + $meta = array( + self::META_DATA => $data, + ); + + $expire = 0; + if (isset($dp[Cache::EXPIRATION])) { + $expire = (int) $dp[Cache::EXPIRATION]; + if (!empty($dp[Cache::SLIDING])) { + $meta[self::META_DELTA] = $expire; // sliding time + } + } + + if (isset($dp[Cache::CALLBACKS])) { + $meta[self::META_CALLBACKS] = $dp[Cache::CALLBACKS]; + } + + if (isset($dp[Cache::TAGS]) || isset($dp[Cache::PRIORITY])) { + if (!$this->journal) { + throw new Nette\InvalidStateException('CacheJournal has not been provided.'); + } + $this->journal->write($key, $dp); + } + + $this->memcache->set($key, $meta, 0, $expire); + } + + + + /** + * Removes item from the cache. + * @param string key + * @return void + */ + public function remove($key) + { + $this->memcache->delete($this->prefix . $key, 0); + } + + + + /** + * Removes items from the cache by conditions & garbage collector. + * @param array conditions + * @return void + */ + public function clean(array $conds) + { + if (!empty($conds[Cache::ALL])) { + $this->memcache->flush(); + + } elseif ($this->journal) { + foreach ($this->journal->clean($conds) as $entry) { + $this->memcache->delete($entry, 0); + } + } + } + +} diff --git a/apigen/libs/Nette/Nette/Caching/Storages/MemoryStorage.php b/apigen/libs/Nette/Nette/Caching/Storages/MemoryStorage.php new file mode 100644 index 00000000000..34099e95aff --- /dev/null +++ b/apigen/libs/Nette/Nette/Caching/Storages/MemoryStorage.php @@ -0,0 +1,91 @@ +data[$key]) ? $this->data[$key] : NULL; + } + + + + /** + * Prevents item reading and writing. Lock is released by write() or remove(). + * @param string key + * @return void + */ + public function lock($key) + { + } + + + + /** + * Writes item into the cache. + * @param string key + * @param mixed data + * @param array dependencies + * @return void + */ + public function write($key, $data, array $dp) + { + $this->data[$key] = $data; + } + + + + /** + * Removes item from the cache. + * @param string key + * @return void + */ + public function remove($key) + { + unset($this->data[$key]); + } + + + + /** + * Removes items from the cache by conditions & garbage collector. + * @param array conditions + * @return void + */ + public function clean(array $conds) + { + if (!empty($conds[Nette\Caching\Cache::ALL])) { + $this->data = array(); + } + } + +} diff --git a/apigen/libs/Nette/Nette/Caching/Storages/PhpFileStorage.php b/apigen/libs/Nette/Nette/Caching/Storages/PhpFileStorage.php new file mode 100644 index 00000000000..2a5e4515fcd --- /dev/null +++ b/apigen/libs/Nette/Nette/Caching/Storages/PhpFileStorage.php @@ -0,0 +1,59 @@ + $meta[self::FILE], + 'handle' => $meta[self::HANDLE], + ); + } + + + + /** + * Returns file name. + * @param string + * @return string + */ + protected function getCacheFile($key) + { + return parent::getCacheFile(substr_replace( + $key, + trim(strtr($this->hint, '\\/@', '.._'), '.') . '-', + strpos($key, Nette\Caching\Cache::NAMESPACE_SEPARATOR) + 1, + 0 + )) . '.php'; + } + +} diff --git a/apigen/libs/Nette/Nette/ComponentModel/Component.php b/apigen/libs/Nette/Nette/ComponentModel/Component.php new file mode 100644 index 00000000000..3f6fdd184cc --- /dev/null +++ b/apigen/libs/Nette/Nette/ComponentModel/Component.php @@ -0,0 +1,352 @@ + [obj, depth, path, is_monitored?]] */ + private $monitors = array(); + + + + /** + */ + public function __construct(IContainer $parent = NULL, $name = NULL) + { + if ($parent !== NULL) { + $parent->addComponent($this, $name); + + } elseif (is_string($name)) { + $this->name = $name; + } + } + + + + /** + * Lookup hierarchy for component specified by class or interface name. + * @param string class/interface type + * @param bool throw exception if component doesn't exist? + * @return IComponent + */ + public function lookup($type, $need = TRUE) + { + if (!isset($this->monitors[$type])) { // not monitored or not processed yet + $obj = $this->parent; + $path = self::NAME_SEPARATOR . $this->name; + $depth = 1; + while ($obj !== NULL) { + if ($obj instanceof $type) { + break; + } + $path = self::NAME_SEPARATOR . $obj->getName() . $path; + $depth++; + $obj = $obj->getParent(); // IComponent::getParent() + if ($obj === $this) { + $obj = NULL; // prevent cycling + } + } + + if ($obj) { + $this->monitors[$type] = array($obj, $depth, substr($path, 1), FALSE); + + } else { + $this->monitors[$type] = array(NULL, NULL, NULL, FALSE); // not found + } + } + + if ($need && $this->monitors[$type][0] === NULL) { + throw new Nette\InvalidStateException("Component '$this->name' is not attached to '$type'."); + } + + return $this->monitors[$type][0]; + } + + + + /** + * Lookup for component specified by class or interface name. Returns backtrace path. + * A path is the concatenation of component names separated by self::NAME_SEPARATOR. + * @param string class/interface type + * @param bool throw exception if component doesn't exist? + * @return string + */ + public function lookupPath($type, $need = TRUE) + { + $this->lookup($type, $need); + return $this->monitors[$type][2]; + } + + + + /** + * Starts monitoring. + * @param string class/interface type + * @return void + */ + public function monitor($type) + { + if (empty($this->monitors[$type][3])) { + if ($obj = $this->lookup($type, FALSE)) { + $this->attached($obj); + } + $this->monitors[$type][3] = TRUE; // mark as monitored + } + } + + + + /** + * Stops monitoring. + * @param string class/interface type + * @return void + */ + public function unmonitor($type) + { + unset($this->monitors[$type]); + } + + + + /** + * This method will be called when the component (or component's parent) + * becomes attached to a monitored object. Do not call this method yourself. + * @param IComponent + * @return void + */ + protected function attached($obj) + { + } + + + + /** + * This method will be called before the component (or component's parent) + * becomes detached from a monitored object. Do not call this method yourself. + * @param IComponent + * @return void + */ + protected function detached($obj) + { + } + + + + /********************* interface IComponent ****************d*g**/ + + + + /** + * @return string + */ + final public function getName() + { + return $this->name; + } + + + + /** + * Returns the container if any. + * @return IContainer|NULL + */ + final public function getParent() + { + return $this->parent; + } + + + + /** + * Sets the parent of this component. This method is managed by containers and should + * not be called by applications + * @param IContainer New parent or null if this component is being removed from a parent + * @param string + * @return Component provides a fluent interface + * @throws Nette\InvalidStateException + * @internal + */ + public function setParent(IContainer $parent = NULL, $name = NULL) + { + if ($parent === NULL && $this->parent === NULL && $name !== NULL) { + $this->name = $name; // just rename + return $this; + + } elseif ($parent === $this->parent && $name === NULL) { + return $this; // nothing to do + } + + // A component cannot be given a parent if it already has a parent. + if ($this->parent !== NULL && $parent !== NULL) { + throw new Nette\InvalidStateException("Component '$this->name' already has a parent."); + } + + // remove from parent? + if ($parent === NULL) { + $this->refreshMonitors(0); + $this->parent = NULL; + + } else { // add to parent + $this->validateParent($parent); + $this->parent = $parent; + if ($name !== NULL) { + $this->name = $name; + } + + $tmp = array(); + $this->refreshMonitors(0, $tmp); + } + return $this; + } + + + + /** + * Is called by a component when it is about to be set new parent. Descendant can + * override this method to disallow a parent change by throwing an Nette\InvalidStateException + * @param IContainer + * @return void + * @throws Nette\InvalidStateException + */ + protected function validateParent(IContainer $parent) + { + } + + + + /** + * Refreshes monitors. + * @param int + * @param array|NULL (array = attaching, NULL = detaching) + * @param array + * @return void + */ + private function refreshMonitors($depth, & $missing = NULL, & $listeners = array()) + { + if ($this instanceof IContainer) { + foreach ($this->getComponents() as $component) { + if ($component instanceof Component) { + $component->refreshMonitors($depth + 1, $missing, $listeners); + } + } + } + + if ($missing === NULL) { // detaching + foreach ($this->monitors as $type => $rec) { + if (isset($rec[1]) && $rec[1] > $depth) { + if ($rec[3]) { // monitored + $this->monitors[$type] = array(NULL, NULL, NULL, TRUE); + $listeners[] = array($this, $rec[0]); + } else { // not monitored, just randomly cached + unset($this->monitors[$type]); + } + } + } + + } else { // attaching + foreach ($this->monitors as $type => $rec) { + if (isset($rec[0])) { // is in cache yet + continue; + + } elseif (!$rec[3]) { // not monitored, just randomly cached + unset($this->monitors[$type]); + + } elseif (isset($missing[$type])) { // known from previous lookup + $this->monitors[$type] = array(NULL, NULL, NULL, TRUE); + + } else { + $this->monitors[$type] = NULL; // forces re-lookup + if ($obj = $this->lookup($type, FALSE)) { + $listeners[] = array($this, $obj); + } else { + $missing[$type] = TRUE; + } + $this->monitors[$type][3] = TRUE; // mark as monitored + } + } + } + + if ($depth === 0) { // call listeners + $method = $missing === NULL ? 'detached' : 'attached'; + foreach ($listeners as $item) { + $item[0]->$method($item[1]); + } + } + } + + + + /********************* cloneable, serializable ****************d*g**/ + + + + /** + * Object cloning. + */ + public function __clone() + { + if ($this->parent === NULL) { + return; + + } elseif ($this->parent instanceof Container) { + $this->parent = $this->parent->_isCloning(); + if ($this->parent === NULL) { // not cloning + $this->refreshMonitors(0); + } + + } else { + $this->parent = NULL; + $this->refreshMonitors(0); + } + } + + + + /** + * Prevents serialization. + */ + final public function __sleep() + { + throw new Nette\NotImplementedException('Object serialization is not supported by class ' . get_class($this)); + } + + + + /** + * Prevents unserialization. + */ + final public function __wakeup() + { + throw new Nette\NotImplementedException('Object unserialization is not supported by class ' . get_class($this)); + } + +} diff --git a/apigen/libs/Nette/Nette/ComponentModel/Container.php b/apigen/libs/Nette/Nette/ComponentModel/Container.php new file mode 100644 index 00000000000..343b396c711 --- /dev/null +++ b/apigen/libs/Nette/Nette/ComponentModel/Container.php @@ -0,0 +1,258 @@ +getName(); + } + + if (is_int($name)) { + $name = (string) $name; + + } elseif (!is_string($name)) { + throw new Nette\InvalidArgumentException("Component name must be integer or string, " . gettype($name) . " given."); + + } elseif (!preg_match('#^[a-zA-Z0-9_]+$#', $name)) { + throw new Nette\InvalidArgumentException("Component name must be non-empty alphanumeric string, '$name' given."); + } + + if (isset($this->components[$name])) { + throw new Nette\InvalidStateException("Component with name '$name' already exists."); + } + + // check circular reference + $obj = $this; + do { + if ($obj === $component) { + throw new Nette\InvalidStateException("Circular reference detected while adding component '$name'."); + } + $obj = $obj->getParent(); + } while ($obj !== NULL); + + // user checking + $this->validateChildComponent($component); + + try { + if (isset($this->components[$insertBefore])) { + $tmp = array(); + foreach ($this->components as $k => $v) { + if ($k === $insertBefore) { + $tmp[$name] = $component; + } + $tmp[$k] = $v; + } + $this->components = $tmp; + } else { + $this->components[$name] = $component; + } + $component->setParent($this, $name); + + } catch (\Exception $e) { + unset($this->components[$name]); // undo + throw $e; + } + return $this; + } + + + + /** + * Removes a component from the IContainer. + * @param IComponent + * @return void + */ + public function removeComponent(IComponent $component) + { + $name = $component->getName(); + if (!isset($this->components[$name]) || $this->components[$name] !== $component) { + throw new Nette\InvalidArgumentException("Component named '$name' is not located in this container."); + } + + unset($this->components[$name]); + $component->setParent(NULL); + } + + + + /** + * Returns component specified by name or path. + * @param string + * @param bool throw exception if component doesn't exist? + * @return IComponent|NULL + */ + final public function getComponent($name, $need = TRUE) + { + if (is_int($name)) { + $name = (string) $name; + + } elseif (!is_string($name)) { + throw new Nette\InvalidArgumentException("Component name must be integer or string, " . gettype($name) . " given."); + + } else { + $a = strpos($name, self::NAME_SEPARATOR); + if ($a !== FALSE) { + $ext = (string) substr($name, $a + 1); + $name = substr($name, 0, $a); + } + + if ($name === '') { + throw new Nette\InvalidArgumentException("Component or subcomponent name must not be empty string."); + } + } + + if (!isset($this->components[$name])) { + $component = $this->createComponent($name); + if ($component instanceof IComponent && $component->getParent() === NULL) { + $this->addComponent($component, $name); + } + } + + if (isset($this->components[$name])) { + if (!isset($ext)) { + return $this->components[$name]; + + } elseif ($this->components[$name] instanceof IContainer) { + return $this->components[$name]->getComponent($ext, $need); + + } elseif ($need) { + throw new Nette\InvalidArgumentException("Component with name '$name' is not container and cannot have '$ext' component."); + } + + } elseif ($need) { + throw new Nette\InvalidArgumentException("Component with name '$name' does not exist."); + } + } + + + + /** + * Component factory. Delegates the creation of components to a createComponent method. + * @param string component name + * @return IComponent the created component (optionally) + */ + protected function createComponent($name) + { + $ucname = ucfirst($name); + $method = 'createComponent' . $ucname; + if ($ucname !== $name && method_exists($this, $method) && $this->getReflection()->getMethod($method)->getName() === $method) { + $component = $this->$method($name); + if (!$component instanceof IComponent && !isset($this->components[$name])) { + $class = get_class($this); + throw new Nette\UnexpectedValueException("Method $class::$method() did not return or create the desired component."); + } + return $component; + } + } + + + + /** + * Iterates over a components. + * @param bool recursive? + * @param string class types filter + * @return \ArrayIterator + */ + final public function getComponents($deep = FALSE, $filterType = NULL) + { + $iterator = new RecursiveComponentIterator($this->components); + if ($deep) { + $deep = $deep > 0 ? \RecursiveIteratorIterator::SELF_FIRST : \RecursiveIteratorIterator::CHILD_FIRST; + $iterator = new \RecursiveIteratorIterator($iterator, $deep); + } + if ($filterType) { + $iterator = new Nette\Iterators\InstanceFilter($iterator, $filterType); + } + return $iterator; + } + + + + /** + * Descendant can override this method to disallow insert a child by throwing an Nette\InvalidStateException. + * @param IComponent + * @return void + * @throws Nette\InvalidStateException + */ + protected function validateChildComponent(IComponent $child) + { + } + + + + /********************* cloneable, serializable ****************d*g**/ + + + + /** + * Object cloning. + */ + public function __clone() + { + if ($this->components) { + $oldMyself = reset($this->components)->getParent(); + $oldMyself->cloning = $this; + foreach ($this->components as $name => $component) { + $this->components[$name] = clone $component; + } + $oldMyself->cloning = NULL; + } + parent::__clone(); + } + + + + /** + * Is container cloning now? + * @return NULL|IComponent + * @internal + */ + public function _isCloning() + { + return $this->cloning; + } + +} diff --git a/apigen/libs/Nette/Nette/ComponentModel/IComponent.php b/apigen/libs/Nette/Nette/ComponentModel/IComponent.php new file mode 100644 index 00000000000..68f5ed4388e --- /dev/null +++ b/apigen/libs/Nette/Nette/ComponentModel/IComponent.php @@ -0,0 +1,47 @@ +current() instanceof IContainer; + } + + + + /** + * The sub-iterator for the current element. + * @return \RecursiveIterator + */ + public function getChildren() + { + return $this->current()->getComponents(); + } + + + + /** + * Returns the count of elements. + * @return int + */ + public function count() + { + return iterator_count($this); + } + +} diff --git a/apigen/libs/Nette/Nette/Config/Adapters/IniAdapter.php b/apigen/libs/Nette/Nette/Config/Adapters/IniAdapter.php new file mode 100644 index 00000000000..d8a820baca7 --- /dev/null +++ b/apigen/libs/Nette/Nette/Config/Adapters/IniAdapter.php @@ -0,0 +1,151 @@ +getMessage(), 0, $e); + } + + $data = array(); + foreach ($ini as $secName => $secData) { + if (is_array($secData)) { // is section? + if (substr($secName, -1) === self::RAW_SECTION) { + $secName = substr($secName, 0, -1); + } else { // process key nesting separator (key1.key2.key3) + $tmp = array(); + foreach ($secData as $key => $val) { + $cursor = & $tmp; + $key = str_replace(self::ESCAPED_KEY_SEPARATOR, "\xFF", $key); + foreach (explode(self::KEY_SEPARATOR, $key) as $part) { + $part = str_replace("\xFF", self::KEY_SEPARATOR, $part); + if (!isset($cursor[$part]) || is_array($cursor[$part])) { + $cursor = & $cursor[$part]; + } else { + throw new Nette\InvalidStateException("Invalid key '$key' in section [$secName] in file '$file'."); + } + } + $cursor = $val; + } + $secData = $tmp; + } + + $parts = explode(self::INHERITING_SEPARATOR, $secName); + if (count($parts) > 1) { + $secName = trim($parts[0]); + $secData[Helpers::EXTENDS_KEY] = trim($parts[1]); + } + } + + $cursor = & $data; // nesting separator in section name + foreach (explode(self::KEY_SEPARATOR, $secName) as $part) { + if (!isset($cursor[$part]) || is_array($cursor[$part])) { + $cursor = & $cursor[$part]; + } else { + throw new Nette\InvalidStateException("Invalid section [$secName] in file '$file'."); + } + } + + if (is_array($secData) && is_array($cursor)) { + $secData = Helpers::merge($secData, $cursor); + } + + $cursor = $secData; + } + + return $data; + } + + + + /** + * Generates configuration in INI format. + * @param array + * @return string + */ + public function dump(array $data) + { + $output = array(); + foreach ($data as $name => $secData) { + if (!is_array($secData)) { + $output = array(); + self::build($data, $output, ''); + break; + } + if ($parent = Helpers::takeParent($secData)) { + $output[] = "[$name " . self::INHERITING_SEPARATOR . " $parent]"; + } else { + $output[] = "[$name]"; + } + self::build($secData, $output, ''); + $output[] = ''; + } + return "; generated by Nette\n\n" . implode(PHP_EOL, $output); + } + + + + /** + * Recursive builds INI list. + * @return void + */ + private static function build($input, & $output, $prefix) + { + foreach ($input as $key => $val) { + $key = str_replace(self::KEY_SEPARATOR, self::ESCAPED_KEY_SEPARATOR, $key); + if (is_array($val)) { + self::build($val, $output, $prefix . $key . self::KEY_SEPARATOR); + + } elseif (is_bool($val)) { + $output[] = "$prefix$key = " . ($val ? 'true' : 'false'); + + } elseif (is_numeric($val)) { + $output[] = "$prefix$key = $val"; + + } elseif (is_string($val)) { + $output[] = "$prefix$key = \"$val\""; + + } else { + throw new Nette\InvalidArgumentException("The '$prefix$key' item must be scalar or array, " . gettype($val) ." given."); + } + } + } + +} diff --git a/apigen/libs/Nette/Nette/Config/Adapters/NeonAdapter.php b/apigen/libs/Nette/Nette/Config/Adapters/NeonAdapter.php new file mode 100644 index 00000000000..df23d1b1a37 --- /dev/null +++ b/apigen/libs/Nette/Nette/Config/Adapters/NeonAdapter.php @@ -0,0 +1,93 @@ +process((array) Neon::decode(file_get_contents($file))); + } + + + + private function process(array $arr) + { + $res = array(); + foreach ($arr as $key => $val) { + if (substr($key, -1) === self::PREVENT_MERGING) { + if (!is_array($val) && $val !== NULL) { + throw new Nette\InvalidStateException("Replacing operator is available only for arrays, item '$key' is not array."); + } + $key = substr($key, 0, -1); + $val[Helpers::EXTENDS_KEY] = Helpers::OVERWRITE; + + } elseif (preg_match('#^(\S+)\s+' . self::INHERITING_SEPARATOR . '\s+(\S+)$#', $key, $matches)) { + if (!is_array($val) && $val !== NULL) { + throw new Nette\InvalidStateException("Inheritance operator is available only for arrays, item '$key' is not array."); + } + list(, $key, $val[Helpers::EXTENDS_KEY]) = $matches; + if (isset($res[$key])) { + throw new Nette\InvalidStateException("Duplicated key '$key'."); + } + } + + if (is_array($val)) { + $val = $this->process($val); + } elseif ($val instanceof Nette\Utils\NeonEntity) { + $val = (object) array('value' => $val->value, 'attributes' => $this->process($val->attributes)); + } + $res[$key] = $val; + } + return $res; + } + + + + /** + * Generates configuration in NEON format. + * @param array + * @return string + */ + public function dump(array $data) + { + $tmp = array(); + foreach ($data as $name => $secData) { + if ($parent = Helpers::takeParent($secData)) { + $name .= ' ' . self::INHERITING_SEPARATOR . ' ' . $parent; + } + $tmp[$name] = $secData; + } + return "# generated by Nette\n\n" . Neon::encode($tmp, Neon::BLOCK); + } + +} diff --git a/apigen/libs/Nette/Nette/Config/Adapters/PhpAdapter.php b/apigen/libs/Nette/Nette/Config/Adapters/PhpAdapter.php new file mode 100644 index 00000000000..a6c5cc8cf9c --- /dev/null +++ b/apigen/libs/Nette/Nette/Config/Adapters/PhpAdapter.php @@ -0,0 +1,48 @@ + 1, 'factories' => 1, 'parameters' => 1); + + + + /** + * Add custom configurator extension. + * @return Compiler provides a fluent interface + */ + public function addExtension($name, CompilerExtension $extension) + { + if (isset(self::$reserved[$name])) { + throw new Nette\InvalidArgumentException("Name '$name' is reserved."); + } + $this->extensions[$name] = $extension->setCompiler($this, $name); + return $this; + } + + + + /** + * @return array + */ + public function getExtensions() + { + return $this->extensions; + } + + + + /** + * @return Nette\DI\ContainerBuilder + */ + public function getContainerBuilder() + { + return $this->container; + } + + + + /** + * Returns configuration without expanded parameters. + * @return array + */ + public function getConfig() + { + return $this->config; + } + + + + /** + * @return string + */ + public function compile(array $config, $className, $parentName) + { + $this->config = $config; + $this->container = new Nette\DI\ContainerBuilder; + $this->processParameters(); + $this->processExtensions(); + $this->processServices(); + return $this->generateCode($className, $parentName); + } + + + + public function processParameters() + { + if (isset($this->config['parameters'])) { + $this->container->parameters = $this->config['parameters']; + } + } + + + + public function processExtensions() + { + for ($i = 0; $slice = array_slice($this->extensions, $i, 1); $i++) { + reset($slice)->loadConfiguration(); + } + + if ($extra = array_diff_key($this->config, self::$reserved, $this->extensions)) { + $extra = implode("', '", array_keys($extra)); + throw new Nette\InvalidStateException("Found sections '$extra' in configuration, but corresponding extensions are missing."); + } + } + + + + public function processServices() + { + $this->parseServices($this->container, $this->config); + + foreach ($this->extensions as $name => $extension) { + $this->container->addDefinition($name) + ->setClass('Nette\DI\NestedAccessor', array('@container', $name)) + ->setAutowired(FALSE); + + if (isset($this->config[$name])) { + $this->parseServices($this->container, $this->config[$name], $name); + } + } + + foreach ($this->container->getDefinitions() as $name => $def) { + $factory = $name . 'Factory'; + if (!$def->shared && !$def->internal && !$this->container->hasDefinition($factory)) { + $this->container->addDefinition($factory) + ->setClass('Nette\Callback', array('@container', Nette\DI\Container::getMethodName($name, FALSE))) + ->setAutowired(FALSE) + ->tags = $def->tags; + } + } + } + + + + public function generateCode($className, $parentName) + { + foreach ($this->extensions as $extension) { + $extension->beforeCompile(); + $this->container->addDependency(Nette\Reflection\ClassType::from($extension)->getFileName()); + } + + $classes[] = $class = $this->container->generateClass($parentName); + $class->setName($className) + ->addMethod('initialize'); + + foreach ($this->extensions as $extension) { + $extension->afterCompile($class); + } + + $defs = $this->container->getDefinitions(); + ksort($defs); + $list = array_keys($defs); + foreach (array_reverse($defs, TRUE) as $name => $def) { + if ($def->class === 'Nette\DI\NestedAccessor' && ($found = preg_grep('#^'.$name.'\.#i', $list))) { + $list = array_diff($list, $found); + $def->class = $className . '_' . preg_replace('#\W+#', '_', $name); + $class->documents = preg_replace("#\S+(?= \\$$name$)#", $def->class, $class->documents); + $classes[] = $accessor = new Nette\Utils\PhpGenerator\ClassType($def->class); + foreach ($found as $item) { + if ($defs[$item]->internal) { + continue; + } + $short = substr($item, strlen($name) + 1); + $accessor->addDocument($defs[$item]->shared + ? "@property {$defs[$item]->class} \$$short" + : "@method {$defs[$item]->class} create" . ucfirst("$short()")); + } + } + } + + return implode("\n\n\n", $classes); + } + + + + /********************* tools ****************d*g**/ + + + + /** + * Parses section 'services' from configuration file. + * @return void + */ + public static function parseServices(Nette\DI\ContainerBuilder $container, array $config, $namespace = NULL) + { + $services = isset($config['services']) ? $config['services'] : array(); + $factories = isset($config['factories']) ? $config['factories'] : array(); + if ($tmp = array_intersect_key($services, $factories)) { + $tmp = implode("', '", array_keys($tmp)); + throw new Nette\DI\ServiceCreationException("It is not allowed to use services and factories with the same names: '$tmp'."); + } + + $all = $services + $factories; + uasort($all, function($a, $b) { + return strcmp(Helpers::isInheriting($a), Helpers::isInheriting($b)); + }); + + foreach ($all as $name => $def) { + $shared = array_key_exists($name, $services); + $name = ($namespace ? $namespace . '.' : '') . $name; + + if (($parent = Helpers::takeParent($def)) && $parent !== $name) { + $container->removeDefinition($name); + $definition = $container->addDefinition($name); + if ($parent !== Helpers::OVERWRITE) { + foreach ($container->getDefinition($parent) as $k => $v) { + $definition->$k = unserialize(serialize($v)); // deep clone + } + } + } elseif ($container->hasDefinition($name)) { + $definition = $container->getDefinition($name); + if ($definition->shared !== $shared) { + throw new Nette\DI\ServiceCreationException("It is not allowed to use service and factory with the same name '$name'."); + } + } else { + $definition = $container->addDefinition($name); + } + try { + static::parseService($definition, $def, $shared); + } catch (\Exception $e) { + throw new Nette\DI\ServiceCreationException("Service '$name': " . $e->getMessage(), NULL, $e); + } + } + } + + + + /** + * Parses single service from configuration file. + * @return void + */ + public static function parseService(Nette\DI\ServiceDefinition $definition, $config, $shared = TRUE) + { + if ($config === NULL) { + return; + } elseif (!is_array($config)) { + $config = array('class' => NULL, 'factory' => $config); + } + + $known = $shared + ? array('class', 'factory', 'arguments', 'setup', 'autowired', 'run', 'tags') + : array('class', 'factory', 'arguments', 'setup', 'autowired', 'tags', 'internal', 'parameters'); + + if ($error = array_diff(array_keys($config), $known)) { + throw new Nette\InvalidStateException("Unknown key '" . implode("', '", $error) . "' in definition of service."); + } + + $arguments = array(); + if (array_key_exists('arguments', $config)) { + Validators::assertField($config, 'arguments', 'array'); + $arguments = self::filterArguments($config['arguments']); + $definition->setArguments($arguments); + } + + if (array_key_exists('class', $config) || array_key_exists('factory', $config)) { + $definition->class = NULL; + $definition->factory = NULL; + } + + if (array_key_exists('class', $config)) { + Validators::assertField($config, 'class', 'string|stdClass|null'); + if ($config['class'] instanceof \stdClass) { + $definition->setClass($config['class']->value, self::filterArguments($config['class']->attributes)); + } else { + $definition->setClass($config['class'], $arguments); + } + } + + if (array_key_exists('factory', $config)) { + Validators::assertField($config, 'factory', 'callable|stdClass|null'); + if ($config['factory'] instanceof \stdClass) { + $definition->setFactory($config['factory']->value, self::filterArguments($config['factory']->attributes)); + } else { + $definition->setFactory($config['factory'], $arguments); + } + } + + if (isset($config['setup'])) { + if (Helpers::takeParent($config['setup'])) { + $definition->setup = array(); + } + Validators::assertField($config, 'setup', 'list'); + foreach ($config['setup'] as $id => $setup) { + Validators::assert($setup, 'callable|stdClass', "setup item #$id"); + if ($setup instanceof \stdClass) { + Validators::assert($setup->value, 'callable', "setup item #$id"); + $definition->addSetup($setup->value, self::filterArguments($setup->attributes)); + } else { + $definition->addSetup($setup); + } + } + } + + $definition->setShared($shared); + if (isset($config['parameters'])) { + Validators::assertField($config, 'parameters', 'array'); + $definition->setParameters($config['parameters']); + } + + if (isset($config['autowired'])) { + Validators::assertField($config, 'autowired', 'bool'); + $definition->setAutowired($config['autowired']); + } + + if (isset($config['internal'])) { + Validators::assertField($config, 'internal', 'bool'); + $definition->setInternal($config['internal']); + } + + if (isset($config['run'])) { + $config['tags']['run'] = (bool) $config['run']; + } + + if (isset($config['tags'])) { + Validators::assertField($config, 'tags', 'array'); + if (Helpers::takeParent($config['tags'])) { + $definition->tags = array(); + } + foreach ($config['tags'] as $tag => $attrs) { + if (is_int($tag) && is_string($attrs)) { + $definition->addTag($attrs); + } else { + $definition->addTag($tag, $attrs); + } + } + } + } + + + + /** + * Removes ... and replaces entities with Nette\DI\Statement. + * @return array + */ + public static function filterArguments(array $args) + { + foreach ($args as $k => $v) { + if ($v === '...') { + unset($args[$k]); + } elseif ($v instanceof \stdClass && isset($v->value, $v->attributes)) { + $args[$k] = new Nette\DI\Statement($v->value, self::filterArguments($v->attributes)); + } + } + return $args; + } + +} diff --git a/apigen/libs/Nette/Nette/Config/CompilerExtension.php b/apigen/libs/Nette/Nette/Config/CompilerExtension.php new file mode 100644 index 00000000000..5c66e8e4402 --- /dev/null +++ b/apigen/libs/Nette/Nette/Config/CompilerExtension.php @@ -0,0 +1,130 @@ +compiler = $compiler; + $this->name = $name; + return $this; + } + + + + /** + * Returns extension configuration. + * @param array default values. + * @param bool perform %parameters% expansion? + * @return array + */ + public function getConfig(array $defaults = NULL, $expand = TRUE) + { + $config = $this->compiler->getConfig(); + $config = isset($config[$this->name]) ? $config[$this->name] : array(); + unset($config['services'], $config['factories']); + $config = Helpers::merge($config, $defaults); + return $expand ? $this->compiler->getContainerBuilder()->expand($config) : $config; + } + + + + /** + * @return Nette\DI\ContainerBuilder + */ + public function getContainerBuilder() + { + return $this->compiler->getContainerBuilder(); + } + + + + /** + * Reads configuration from file. + * @param string file name + * @return array + */ + public function loadFromFile($file) + { + $loader = new Loader; + $res = $loader->load($file); + $container = $this->compiler->getContainerBuilder(); + foreach ($loader->getDependencies() as $file) { + $container->addDependency($file); + } + return $res; + } + + + + /** + * Prepend extension name to identifier or service name. + * @param string + * @return string + */ + public function prefix($id) + { + return substr_replace($id, $this->name . '.', substr($id, 0, 1) === '@' ? 1 : 0, 0); + } + + + + /** + * Processes configuration data. Intended to be overridden by descendant. + * @return void + */ + public function loadConfiguration() + { + } + + + + /** + * Adjusts DI container before is compiled to PHP class. Intended to be overridden by descendant. + * @return void + */ + public function beforeCompile() + { + } + + + + /** + * Adjusts DI container compiled to PHP class. Intended to be overridden by descendant. + * @return void + */ + public function afterCompile(Nette\Utils\PhpGenerator\ClassType $class) + { + } + +} diff --git a/apigen/libs/Nette/Nette/Config/Configurator.php b/apigen/libs/Nette/Nette/Config/Configurator.php new file mode 100644 index 00000000000..bf7272827ee --- /dev/null +++ b/apigen/libs/Nette/Nette/Config/Configurator.php @@ -0,0 +1,343 @@ +parameters = $this->getDefaultParameters(); + } + + + + /** + * Set parameter %debugMode%. + * @param bool|string|array + * @return Configurator provides a fluent interface + */ + public function setDebugMode($value = TRUE) + { + $this->parameters['debugMode'] = is_bool($value) ? $value : self::detectDebugMode($value); + $this->parameters['productionMode'] = !$this->parameters['debugMode']; // compatibility + return $this; + } + + + + /** + * @return bool + */ + public function isDebugMode() + { + return !$this->parameters['productionMode']; + } + + + + /** + * Sets path to temporary directory. + * @return Configurator provides a fluent interface + */ + public function setTempDirectory($path) + { + $this->parameters['tempDir'] = $path; + if (($cacheDir = $this->getCacheDirectory()) && !is_dir($cacheDir)) { + mkdir($cacheDir, 0777); + } + return $this; + } + + + + /** + * Adds new parameters. The %params% will be expanded. + * @return Configurator provides a fluent interface + */ + public function addParameters(array $params) + { + $this->parameters = Helpers::merge($params, $this->parameters); + return $this; + } + + + + /** + * @return array + */ + protected function getDefaultParameters() + { + $trace = /*5.2*PHP_VERSION_ID < 50205 ? debug_backtrace() : */debug_backtrace(FALSE); + $debugMode = static::detectDebugMode(); + return array( + 'appDir' => isset($trace[1]['file']) ? dirname($trace[1]['file']) : NULL, + 'wwwDir' => isset($_SERVER['SCRIPT_FILENAME']) ? dirname($_SERVER['SCRIPT_FILENAME']) : NULL, + 'debugMode' => $debugMode, + 'productionMode' => !$debugMode, + 'environment' => $debugMode ? self::DEVELOPMENT : self::PRODUCTION, + 'consoleMode' => PHP_SAPI === 'cli', + 'container' => array( + 'class' => 'SystemContainer', + 'parent' => 'Nette\DI\Container', + ) + ); + } + + + + /** + * @param string error log directory + * @param string administrator email + * @return void + */ + public function enableDebugger($logDirectory = NULL, $email = NULL) + { + Nette\Diagnostics\Debugger::$strictMode = TRUE; + Nette\Diagnostics\Debugger::enable($this->parameters['productionMode'], $logDirectory, $email); + } + + + + /** + * @return Nette\Loaders\RobotLoader + */ + public function createRobotLoader() + { + if (!($cacheDir = $this->getCacheDirectory())) { + throw new Nette\InvalidStateException("Set path to temporary directory using setTempDirectory()."); + } + $loader = new Nette\Loaders\RobotLoader; + $loader->setCacheStorage(new Nette\Caching\Storages\FileStorage($cacheDir)); + $loader->autoRebuild = !$this->parameters['productionMode']; + return $loader; + } + + + + /** + * Adds configuration file. + * @return Configurator provides a fluent interface + */ + public function addConfig($file, $section = self::AUTO) + { + $this->files[] = array($file, $section === self::AUTO ? $this->parameters['environment'] : $section); + return $this; + } + + + + /** @deprecated */ + public function loadConfig($file, $section = NULL) + { + trigger_error(__METHOD__ . '() is deprecated; use addConfig(file, [section])->createContainer() instead.', E_USER_WARNING); + return $this->addConfig($file, $section)->createContainer(); + } + + + + /** + * Returns system DI container. + * @return \SystemContainer + */ + public function createContainer() + { + if ($cacheDir = $this->getCacheDirectory()) { + $cache = new Cache(new Nette\Caching\Storages\PhpFileStorage($cacheDir), 'Nette.Configurator'); + $cacheKey = array($this->parameters, $this->files); + $cached = $cache->load($cacheKey); + if (!$cached) { + $code = $this->buildContainer($dependencies); + $cache->save($cacheKey, $code, array( + Cache::FILES => $dependencies, + )); + $cached = $cache->load($cacheKey); + } + Nette\Utils\LimitedScope::load($cached['file'], TRUE); + + } elseif ($this->files) { + throw new Nette\InvalidStateException("Set path to temporary directory using setTempDirectory()."); + + } else { + Nette\Utils\LimitedScope::evaluate($this->buildContainer()); // back compatibility with Environment + } + + $container = new $this->parameters['container']['class']; + $container->initialize(); + Nette\Environment::setContext($container); // back compatibility + return $container; + } + + + + /** + * Build system container class. + * @return string + */ + protected function buildContainer(& $dependencies = NULL) + { + $loader = $this->createLoader(); + $config = array(); + $code = "files as $tmp) { + list($file, $section) = $tmp; + $config = Helpers::merge($loader->load($file, $section), $config); + $code .= "// source: $file $section\n"; + } + $code .= "\n"; + + $this->checkCompatibility($config); + + if (!isset($config['parameters'])) { + $config['parameters'] = array(); + } + $config['parameters'] = Helpers::merge($config['parameters'], $this->parameters); + + $compiler = $this->createCompiler(); + $this->onCompile($this, $compiler); + + $code .= $compiler->compile( + $config, + $this->parameters['container']['class'], + $config['parameters']['container']['parent'] + ); + $dependencies = array_merge($loader->getDependencies(), $this->isDebugMode() ? $compiler->getContainerBuilder()->getDependencies() : array()); + return $code; + } + + + + protected function checkCompatibility(array $config) + { + foreach (array('service' => 'services', 'variable' => 'parameters', 'variables' => 'parameters', 'mode' => 'parameters', 'const' => 'constants') as $old => $new) { + if (isset($config[$old])) { + throw new Nette\DeprecatedException("Section '$old' in configuration file is deprecated; use '$new' instead."); + } + } + if (isset($config['services'])) { + foreach ($config['services'] as $key => $def) { + foreach (array('option' => 'arguments', 'methods' => 'setup') as $old => $new) { + if (is_array($def) && isset($def[$old])) { + throw new Nette\DeprecatedException("Section '$old' in service definition is deprecated; refactor it into '$new'."); + } + } + } + } + } + + + + /** + * @return Compiler + */ + protected function createCompiler() + { + $compiler = new Compiler; + $compiler->addExtension('php', new Extensions\PhpExtension) + ->addExtension('constants', new Extensions\ConstantsExtension) + ->addExtension('nette', new Extensions\NetteExtension); + return $compiler; + } + + + + /** + * @return Loader + */ + protected function createLoader() + { + return new Loader; + } + + + + protected function getCacheDirectory() + { + return empty($this->parameters['tempDir']) ? NULL : $this->parameters['tempDir'] . '/cache'; + } + + + + /********************* tools ****************d*g**/ + + + + /** + * Detects debug mode by IP address. + * @param string|array IP addresses or computer names whitelist detection + * @return bool + */ + public static function detectDebugMode($list = NULL) + { + $list = is_string($list) ? preg_split('#[,\s]+#', $list) : (array) $list; + if (!isset($_SERVER['HTTP_X_FORWARDED_FOR'])) { + $list[] = '127.0.0.1'; + $list[] = '::1'; + } + return in_array(isset($_SERVER['REMOTE_ADDR']) ? $_SERVER['REMOTE_ADDR'] : php_uname('n'), $list, TRUE); + } + + + + + /** @deprecated */ + public function setProductionMode($value = TRUE) + { + return $this->setDebugMode(is_bool($value) ? !$value : $value); + } + + + + /** @deprecated */ + public function isProductionMode() + { + return !$this->isDebugMode(); + } + + + + /** @deprecated */ + public static function detectProductionMode($list = NULL) + { + return !static::detectDebugMode($list); + } + +} diff --git a/apigen/libs/Nette/Nette/Config/Extensions/ConstantsExtension.php b/apigen/libs/Nette/Nette/Config/Extensions/ConstantsExtension.php new file mode 100644 index 00000000000..fe954d0b75c --- /dev/null +++ b/apigen/libs/Nette/Nette/Config/Extensions/ConstantsExtension.php @@ -0,0 +1,34 @@ +getConfig() as $name => $value) { + $class->methods['initialize']->addBody('define(?, ?);', array($name, $value)); + } + } + +} diff --git a/apigen/libs/Nette/Nette/Config/Extensions/NetteExtension.php b/apigen/libs/Nette/Nette/Config/Extensions/NetteExtension.php new file mode 100644 index 00000000000..d26a5fc9d96 --- /dev/null +++ b/apigen/libs/Nette/Nette/Config/Extensions/NetteExtension.php @@ -0,0 +1,371 @@ + TRUE, + 'session' => array( + 'iAmUsingBadHost' => NULL, + 'autoStart' => 'smart', // true|false|smart + 'expiration' => NULL, + ), + 'application' => array( + 'debugger' => TRUE, + 'errorPresenter' => NULL, + 'catchExceptions' => '%productionMode%', + ), + 'routing' => array( + 'debugger' => TRUE, + 'routes' => array(), // of [mask => action] + ), + 'security' => array( + 'debugger' => TRUE, + 'frames' => 'SAMEORIGIN', // X-Frame-Options + 'users' => array(), // of [user => password] + 'roles' => array(), // of [role => parents] + 'resources' => array(), // of [resource => parents] + ), + 'mailer' => array( + 'smtp' => FALSE, + ), + 'database' => array(), // of [name => dsn, user, password, debugger, explain, autowired, reflection] + 'forms' => array( + 'messages' => array(), + ), + 'container' => array( + 'debugger' => FALSE, + ), + 'debugger' => array( + 'email' => NULL, + 'editor' => NULL, + 'browser' => NULL, + 'strictMode' => NULL, + 'bar' => array(), // of class name + 'blueScreen' => array(), // of callback + ), + ); + + public $databaseDefaults = array( + 'dsn' => NULL, + 'user' => NULL, + 'password' => NULL, + 'options' => NULL, + 'debugger' => TRUE, + 'explain' => TRUE, + 'reflection' => 'Nette\Database\Reflection\DiscoveredReflection', + ); + + + + public function loadConfiguration() + { + $container = $this->getContainerBuilder(); + $config = $this->getConfig($this->defaults); + + + // cache + $container->addDefinition($this->prefix('cacheJournal')) + ->setClass('Nette\Caching\Storages\FileJournal', array('%tempDir%')); + + $container->addDefinition('cacheStorage') // no namespace for back compatibility + ->setClass('Nette\Caching\Storages\FileStorage', array('%tempDir%/cache')); + + $container->addDefinition($this->prefix('templateCacheStorage')) + ->setClass('Nette\Caching\Storages\PhpFileStorage', array('%tempDir%/cache')) + ->setAutowired(FALSE); + + $container->addDefinition($this->prefix('cache')) + ->setClass('Nette\Caching\Cache', array(1 => '%namespace%')) + ->setParameters(array('namespace' => NULL)); + + + // http + $container->addDefinition($this->prefix('httpRequestFactory')) + ->setClass('Nette\Http\RequestFactory') + ->addSetup('setEncoding', array('UTF-8')) + ->setInternal(TRUE); + + $container->addDefinition('httpRequest') // no namespace for back compatibility + ->setClass('Nette\Http\Request') + ->setFactory('@Nette\Http\RequestFactory::createHttpRequest'); + + $container->addDefinition('httpResponse') // no namespace for back compatibility + ->setClass('Nette\Http\Response'); + + $container->addDefinition($this->prefix('httpContext')) + ->setClass('Nette\Http\Context'); + + + // session + $session = $container->addDefinition('session') // no namespace for back compatibility + ->setClass('Nette\Http\Session'); + + if (isset($config['session']['expiration'])) { + $session->addSetup('setExpiration', array($config['session']['expiration'])); + } + if (isset($config['session']['iAmUsingBadHost'])) { + $session->addSetup('Nette\Framework::$iAmUsingBadHost = ?;', array((bool) $config['session']['iAmUsingBadHost'])); + } + unset($config['session']['expiration'], $config['session']['autoStart'], $config['session']['iAmUsingBadHost']); + if (!empty($config['session'])) { + $session->addSetup('setOptions', array($config['session'])); + } + + + // security + $container->addDefinition($this->prefix('userStorage')) + ->setClass('Nette\Http\UserStorage'); + + $user = $container->addDefinition('user') // no namespace for back compatibility + ->setClass('Nette\Security\User'); + + if (!$container->parameters['productionMode'] && $config['security']['debugger']) { + $user->addSetup('Nette\Diagnostics\Debugger::$bar->addPanel(?)', array( + new Nette\DI\Statement('Nette\Security\Diagnostics\UserPanel') + )); + } + + if ($config['security']['users']) { + $container->addDefinition($this->prefix('authenticator')) + ->setClass('Nette\Security\SimpleAuthenticator', array($config['security']['users'])); + } + + if ($config['security']['roles'] || $config['security']['resources']) { + $authorizator = $container->addDefinition($this->prefix('authorizator')) + ->setClass('Nette\Security\Permission'); + foreach ($config['security']['roles'] as $role => $parents) { + $authorizator->addSetup('addRole', array($role, $parents)); + } + foreach ($config['security']['resources'] as $resource => $parents) { + $authorizator->addSetup('addResource', array($resource, $parents)); + } + } + + + // application + $application = $container->addDefinition('application') // no namespace for back compatibility + ->setClass('Nette\Application\Application') + ->addSetup('$catchExceptions', $config['application']['catchExceptions']) + ->addSetup('$errorPresenter', $config['application']['errorPresenter']); + + if ($config['application']['debugger']) { + $application->addSetup('Nette\Application\Diagnostics\RoutingPanel::initializePanel'); + } + + $container->addDefinition($this->prefix('presenterFactory')) + ->setClass('Nette\Application\PresenterFactory', array( + isset($container->parameters['appDir']) ? $container->parameters['appDir'] : NULL + )); + + + // routing + $router = $container->addDefinition('router') // no namespace for back compatibility + ->setClass('Nette\Application\Routers\RouteList'); + + foreach ($config['routing']['routes'] as $mask => $action) { + $router->addSetup('$service[] = new Nette\Application\Routers\Route(?, ?);', array($mask, $action)); + } + + if (!$container->parameters['productionMode'] && $config['routing']['debugger']) { + $application->addSetup('Nette\Diagnostics\Debugger::$bar->addPanel(?)', array( + new Nette\DI\Statement('Nette\Application\Diagnostics\RoutingPanel') + )); + } + + + // mailer + if (empty($config['mailer']['smtp'])) { + $container->addDefinition($this->prefix('mailer')) + ->setClass('Nette\Mail\SendmailMailer'); + } else { + $container->addDefinition($this->prefix('mailer')) + ->setClass('Nette\Mail\SmtpMailer', array($config['mailer'])); + } + + $container->addDefinition($this->prefix('mail')) + ->setClass('Nette\Mail\Message') + ->addSetup('setMailer') + ->setShared(FALSE); + + + // forms + $container->addDefinition($this->prefix('basicForm')) + ->setClass('Nette\Forms\Form') + ->setShared(FALSE); + + + // templating + $latte = $container->addDefinition($this->prefix('latte')) + ->setClass('Nette\Latte\Engine') + ->setShared(FALSE); + + if (empty($config['xhtml'])) { + $latte->addSetup('$service->getCompiler()->defaultContentType = ?', Nette\Latte\Compiler::CONTENT_HTML); + } + + $container->addDefinition($this->prefix('template')) + ->setClass('Nette\Templating\FileTemplate') + ->addSetup('registerFilter', array($latte)) + ->addSetup('registerHelperLoader', array('Nette\Templating\Helpers::loader')) + ->setShared(FALSE); + + + // database + $container->addDefinition($this->prefix('database')) + ->setClass('Nette\DI\NestedAccessor', array('@container', $this->prefix('database'))); + + if (isset($config['database']['dsn'])) { + $config['database'] = array('default' => $config['database']); + } + + $autowired = TRUE; + foreach ((array) $config['database'] as $name => $info) { + if (!is_array($info)) { + continue; + } + $info += $this->databaseDefaults + array('autowired' => $autowired); + $autowired = FALSE; + + foreach ((array) $info['options'] as $key => $value) { + unset($info['options'][$key]); + $info['options'][constant($key)] = $value; + } + + $connection = $container->addDefinition($this->prefix("database.$name")) + ->setClass('Nette\Database\Connection', array($info['dsn'], $info['user'], $info['password'], $info['options'])) + ->setAutowired($info['autowired']) + ->addSetup('setCacheStorage') + ->addSetup('Nette\Diagnostics\Debugger::$blueScreen->addPanel(?)', array( + 'Nette\Database\Diagnostics\ConnectionPanel::renderException' + )); + + if ($info['reflection']) { + $connection->addSetup('setDatabaseReflection', is_string($info['reflection']) + ? array(new Nette\DI\Statement(preg_match('#^[a-z]+$#', $info['reflection']) ? 'Nette\Database\Reflection\\' . ucfirst($info['reflection']) . 'Reflection' : $info['reflection'])) + : Nette\Config\Compiler::filterArguments(array($info['reflection'])) + ); + } + + if (!$container->parameters['productionMode'] && $info['debugger']) { + $panel = $container->addDefinition($this->prefix("database.{$name}ConnectionPanel")) + ->setClass('Nette\Database\Diagnostics\ConnectionPanel') + ->setAutowired(FALSE) + ->addSetup('$explain', !empty($info['explain'])) + ->addSetup('Nette\Diagnostics\Debugger::$bar->addPanel(?)', array('@self')); + + $connection->addSetup('$service->onQuery[] = ?', array(array($panel, 'logQuery'))); + } + } + } + + + + public function afterCompile(Nette\Utils\PhpGenerator\ClassType $class) + { + $initialize = $class->methods['initialize']; + $container = $this->getContainerBuilder(); + $config = $this->getConfig($this->defaults); + + // debugger + foreach (array('email', 'editor', 'browser', 'strictMode', 'maxLen', 'maxDepth') as $key) { + if (isset($config['debugger'][$key])) { + $initialize->addBody('Nette\Diagnostics\Debugger::$? = ?;', array($key, $config['debugger'][$key])); + } + } + + if (!$container->parameters['productionMode']) { + if ($config['container']['debugger']) { + $config['debugger']['bar'][] = 'Nette\DI\Diagnostics\ContainerPanel'; + } + + foreach ((array) $config['debugger']['bar'] as $item) { + $initialize->addBody($container->formatPhp( + 'Nette\Diagnostics\Debugger::$bar->addPanel(?);', + Nette\Config\Compiler::filterArguments(array(is_string($item) ? new Nette\DI\Statement($item) : $item)) + )); + } + + foreach ((array) $config['debugger']['blueScreen'] as $item) { + $initialize->addBody($container->formatPhp( + 'Nette\Diagnostics\Debugger::$blueScreen->addPanel(?);', + Nette\Config\Compiler::filterArguments(array($item)) + )); + } + } + + if (!empty($container->parameters['tempDir'])) { + $initialize->addBody($this->checkTempDir($container->expand('%tempDir%/cache'))); + } + + foreach ((array) $config['forms']['messages'] as $name => $text) { + $initialize->addBody('Nette\Forms\Rules::$defaultMessages[Nette\Forms\Form::?] = ?;', array($name, $text)); + } + + if ($config['session']['autoStart'] === 'smart') { + $initialize->addBody('$this->session->exists() && $this->session->start();'); + } elseif ($config['session']['autoStart']) { + $initialize->addBody('$this->session->start();'); + } + + if (empty($config['xhtml'])) { + $initialize->addBody('Nette\Utils\Html::$xhtml = ?;', array((bool) $config['xhtml'])); + } + + if (isset($config['security']['frames']) && $config['security']['frames'] !== TRUE) { + $frames = $config['security']['frames']; + if ($frames === FALSE) { + $frames = 'DENY'; + } elseif (preg_match('#^https?:#', $frames)) { + $frames = "ALLOW-FROM $frames"; + } + $initialize->addBody('header(?);', array("X-Frame-Options: $frames")); + } + + foreach ($container->findByTag('run') as $name => $on) { + if ($on) { + $initialize->addBody('$this->getService(?);', array($name)); + } + } + } + + + + private function checkTempDir($dir) + { + // checks whether directory is writable + $uniq = uniqid('_', TRUE); + if (!@mkdir("$dir/$uniq", 0777)) { // @ - is escalated to exception + throw new Nette\InvalidStateException("Unable to write to directory '$dir'. Make this directory writable."); + } + + // tests subdirectory mode + $useDirs = @file_put_contents("$dir/$uniq/_", '') !== FALSE; // @ - error is expected + @unlink("$dir/$uniq/_"); + @rmdir("$dir/$uniq"); // @ - directory may not already exist + + return 'Nette\Caching\Storages\FileStorage::$useDirectories = ' . ($useDirs ? 'TRUE' : 'FALSE') . ";\n"; + } + +} diff --git a/apigen/libs/Nette/Nette/Config/Extensions/PhpExtension.php b/apigen/libs/Nette/Nette/Config/Extensions/PhpExtension.php new file mode 100644 index 00000000000..12580b928be --- /dev/null +++ b/apigen/libs/Nette/Nette/Config/Extensions/PhpExtension.php @@ -0,0 +1,55 @@ +methods['initialize']; + foreach ($this->getConfig() as $name => $value) { + if (!is_scalar($value)) { + throw new Nette\InvalidStateException("Configuration value for directive '$name' is not scalar."); + + } elseif ($name === 'include_path') { + $initialize->addBody('set_include_path(?);', array(str_replace(';', PATH_SEPARATOR, $value))); + + } elseif ($name === 'ignore_user_abort') { + $initialize->addBody('ignore_user_abort(?);', array($value)); + + } elseif ($name === 'max_execution_time') { + $initialize->addBody('set_time_limit(?);', array($value)); + + } elseif ($name === 'date.timezone') { + $initialize->addBody('date_default_timezone_set(?);', array($value)); + + } elseif (function_exists('ini_set')) { + $initialize->addBody('ini_set(?, ?);', array($name, $value)); + + } elseif (ini_get($name) != $value) { // intentionally == + throw new Nette\NotSupportedException('Required function ini_set() is disabled.'); + } + } + } + +} diff --git a/apigen/libs/Nette/Nette/Config/Helpers.php b/apigen/libs/Nette/Nette/Config/Helpers.php new file mode 100644 index 00000000000..27440594058 --- /dev/null +++ b/apigen/libs/Nette/Nette/Config/Helpers.php @@ -0,0 +1,95 @@ + $val) { + if (is_int($key)) { + $right[] = $val; + } else { + if (is_array($val) && isset($val[self::EXTENDS_KEY])) { + if ($val[self::EXTENDS_KEY] === self::OVERWRITE) { + unset($val[self::EXTENDS_KEY]); + } + } elseif (isset($right[$key])) { + $val = static::merge($val, $right[$key]); + } + $right[$key] = $val; + } + } + return $right; + + } elseif ($left === NULL && is_array($right)) { + return $right; + + } else { + return $left; + } + } + + + + /** + * Finds out and removes information about the parent. + * @return mixed + */ + public static function takeParent(& $data) + { + if (is_array($data) && isset($data[self::EXTENDS_KEY])) { + $parent = $data[self::EXTENDS_KEY]; + unset($data[self::EXTENDS_KEY]); + return $parent; + } + } + + + + /** + * @return bool + */ + public static function isOverwriting(& $data) + { + return is_array($data) && isset($data[self::EXTENDS_KEY]) && $data[self::EXTENDS_KEY] === self::OVERWRITE; + } + + + + /** + * @return bool + */ + public static function isInheriting(& $data) + { + return is_array($data) && isset($data[self::EXTENDS_KEY]) && $data[self::EXTENDS_KEY] !== self::OVERWRITE; + } + +} diff --git a/apigen/libs/Nette/Nette/Config/IAdapter.php b/apigen/libs/Nette/Nette/Config/IAdapter.php new file mode 100644 index 00000000000..0242ca590b7 --- /dev/null +++ b/apigen/libs/Nette/Nette/Config/IAdapter.php @@ -0,0 +1,40 @@ + 'Nette\Config\Adapters\PhpAdapter', + 'ini' => 'Nette\Config\Adapters\IniAdapter', + 'neon' => 'Nette\Config\Adapters\NeonAdapter', + ); + + private $dependencies = array(); + + + + /** + * Reads configuration from file. + * @param string file name + * @param string optional section to load + * @return array + */ + public function load($file, $section = NULL) + { + if (!is_file($file) || !is_readable($file)) { + throw new Nette\FileNotFoundException("File '$file' is missing or is not readable."); + } + $this->dependencies[] = $file = realpath($file); + $data = $this->getAdapter($file)->load($file); + + if ($section) { + if (isset($data[self::INCLUDES_KEY])) { + throw new Nette\InvalidStateException("Section 'includes' must be placed under some top section in file '$file'."); + } + $data = $this->getSection($data, $section, $file); + } + + // include child files + $merged = array(); + if (isset($data[self::INCLUDES_KEY])) { + Validators::assert($data[self::INCLUDES_KEY], 'list', "section 'includes' in file '$file'"); + foreach ($data[self::INCLUDES_KEY] as $include) { + $merged = Helpers::merge($this->load(dirname($file) . '/' . $include), $merged); + } + } + unset($data[self::INCLUDES_KEY]); + + return Helpers::merge($data, $merged); + } + + + + /** + * Save configuration to file. + * @param array + * @param string file + * @return void + */ + public function save($data, $file) + { + if (file_put_contents($file, $this->getAdapter($file)->dump($data)) === FALSE) { + throw new Nette\IOException("Cannot write file '$file'."); + } + } + + + + /** + * Returns configuration files. + * @return array + */ + public function getDependencies() + { + return array_unique($this->dependencies); + } + + + + /** + * Registers adapter for given file extension. + * @param string file extension + * @param string|Nette\Config\IAdapter + * @return Loader provides a fluent interface + */ + public function addAdapter($extension, $adapter) + { + $this->adapters[strtolower($extension)] = $adapter; + return $this; + } + + + + /** @return IAdapter */ + private function getAdapter($file) + { + $extension = strtolower(pathinfo($file, PATHINFO_EXTENSION)); + if (!isset($this->adapters[$extension])) { + throw new Nette\InvalidArgumentException("Unknown file extension '$file'."); + } + return is_object($this->adapters[$extension]) ? $this->adapters[$extension] : new $this->adapters[$extension]; + } + + + + private function getSection(array $data, $key, $file) + { + Validators::assertField($data, $key, 'array|null', "section '%' in file '$file'"); + $item = $data[$key]; + if ($parent = Helpers::takeParent($item)) { + $item = Helpers::merge($item, $this->getSection($data, $parent, $file)); + } + return $item; + } + +} diff --git a/apigen/libs/Nette/Nette/DI/Container.php b/apigen/libs/Nette/Nette/DI/Container.php new file mode 100644 index 00000000000..553e49073f7 --- /dev/null +++ b/apigen/libs/Nette/Nette/DI/Container.php @@ -0,0 +1,371 @@ +parameters = $params + $this->parameters; + $this->params = &$this->parameters; + } + + + + /** + * @return array + */ + public function getParameters() + { + return $this->parameters; + } + + + + /** + * Adds the service or service factory to the container. + * @param string + * @param mixed object, class name or callable + * @param array service meta information + * @return Container provides a fluent interface + */ + public function addService($name, $service, array $meta = NULL) + { + $this->updating(); + if (!is_string($name) || $name === '') { + throw new Nette\InvalidArgumentException("Service name must be a non-empty string, " . gettype($name) . " given."); + } + + if (isset($this->registry[$name])) { + throw new Nette\InvalidStateException("Service '$name' has already been registered."); + } + + if (is_object($service) && !$service instanceof \Closure && !$service instanceof Nette\Callback) { + $this->registry[$name] = $service; + $this->meta[$name] = $meta; + return $this; + + } elseif (!is_string($service) || strpos($service, ':') !== FALSE/*5.2* || $service[0] === "\0"*/) { // callable + $service = new Nette\Callback($service); + } + + $this->factories[$name] = array($service); + $this->registry[$name] = & $this->factories[$name][1]; // forces cloning using reference + $this->meta[$name] = $meta; + return $this; + } + + + + /** + * Removes the service from the container. + * @param string + * @return void + */ + public function removeService($name) + { + $this->updating(); + unset($this->registry[$name], $this->factories[$name], $this->meta[$name]); + } + + + + /** + * Gets the service object by name. + * @param string + * @return object + */ + public function getService($name) + { + if (isset($this->registry[$name])) { + return $this->registry[$name]; + + } elseif (isset($this->creating[$name])) { + throw new Nette\InvalidStateException("Circular reference detected for services: " + . implode(', ', array_keys($this->creating)) . "."); + } + + if (isset($this->factories[$name])) { + list($factory) = $this->factories[$name]; + if (is_string($factory)) { + if (!class_exists($factory)) { + throw new Nette\InvalidStateException("Cannot instantiate service, class '$factory' not found."); + } + try { + $this->creating[$name] = TRUE; + $service = new $factory; + } catch (\Exception $e) {} + + } elseif (!$factory->isCallable()) { + throw new Nette\InvalidStateException("Unable to create service '$name', factory '$factory' is not callable."); + + } else { + $this->creating[$name] = TRUE; + try { + $service = $factory/*5.2*->invoke*/($this); + } catch (\Exception $e) {} + } + + } elseif (method_exists($this, $factory = Container::getMethodName($name)) && $this->getReflection()->getMethod($factory)->getName() === $factory) { + $this->creating[$name] = TRUE; + try { + $service = $this->$factory(); + } catch (\Exception $e) {} + + } else { + throw new MissingServiceException("Service '$name' not found."); + } + + unset($this->creating[$name]); + + if (isset($e)) { + throw $e; + + } elseif (!is_object($service)) { + throw new Nette\UnexpectedValueException("Unable to create service '$name', value returned by factory '$factory' is not object."); + } + + return $this->registry[$name] = $service; + } + + + + /** + * Does the service exist? + * @param string service name + * @return bool + */ + public function hasService($name) + { + return isset($this->registry[$name]) + || isset($this->factories[$name]) + || method_exists($this, $method = Container::getMethodName($name)) && $this->getReflection()->getMethod($method)->getName() === $method; + } + + + + /** + * Is the service created? + * @param string service name + * @return bool + */ + public function isCreated($name) + { + if (!$this->hasService($name)) { + throw new MissingServiceException("Service '$name' not found."); + } + return isset($this->registry[$name]); + } + + + + /** + * Resolves service by type. + * @param string class or interface + * @param bool throw exception if service doesn't exist? + * @return object service or NULL + * @throws MissingServiceException + */ + public function getByType($class, $need = TRUE) + { + $lower = ltrim(strtolower($class), '\\'); + if (!isset($this->classes[$lower])) { + if ($need) { + throw new MissingServiceException("Service of type $class not found."); + } + } elseif ($this->classes[$lower] === FALSE) { + throw new MissingServiceException("Multiple services of type $class found."); + } else { + return $this->getService($this->classes[$lower]); + } + } + + + + /** + * Gets the service names of the specified tag. + * @param string + * @return array of [service name => tag attributes] + */ + public function findByTag($tag) + { + $found = array(); + foreach ($this->meta as $name => $meta) { + if (isset($meta[self::TAGS][$tag])) { + $found[$name] = $meta[self::TAGS][$tag]; + } + } + return $found; + } + + + + /********************* autowiring ****************d*g**/ + + + + /** + * Creates new instance using autowiring. + * @param string class + * @param array arguments + * @return object + * @throws Nette\InvalidArgumentException + */ + public function createInstance($class, array $args = array()) + { + $rc = Nette\Reflection\ClassType::from($class); + if (!$rc->isInstantiable()) { + throw new ServiceCreationException("Class $class is not instantiable."); + + } elseif ($constructor = $rc->getConstructor()) { + return $rc->newInstanceArgs(Helpers::autowireArguments($constructor, $args, $this)); + + } elseif ($args) { + throw new ServiceCreationException("Unable to pass arguments, class $class has no constructor."); + } + return new $class; + } + + + + /** + * Calls method using autowiring. + * @param mixed class, object, function, callable + * @param array arguments + * @return mixed + */ + public function callMethod($function, array $args = array()) + { + $callback = new Nette\Callback($function); + return $callback->invokeArgs(Helpers::autowireArguments($callback->toReflection(), $args, $this)); + } + + + + /********************* shortcuts ****************d*g**/ + + + + /** + * Expands %placeholders%. + * @param mixed + * @return mixed + */ + public function expand($s) + { + return Helpers::expand($s, $this->parameters); + } + + + + /** + * Gets the service object, shortcut for getService(). + * @param string + * @return object + */ + public function &__get($name) + { + if (!isset($this->registry[$name])) { + $this->getService($name); + } + return $this->registry[$name]; + } + + + + /** + * Adds the service object. + * @param string + * @param object + * @return void + */ + public function __set($name, $service) + { + $this->updating(); + if (!is_string($name) || $name === '') { + throw new Nette\InvalidArgumentException("Service name must be a non-empty string, " . gettype($name) . " given."); + + } elseif (isset($this->registry[$name])) { + throw new Nette\InvalidStateException("Service '$name' has already been registered."); + + } elseif (!is_object($service)) { + throw new Nette\InvalidArgumentException("Service must be a object, " . gettype($service) . " given."); + } + $this->registry[$name] = $service; + } + + + + /** + * Does the service exist? + * @param string + * @return bool + */ + public function __isset($name) + { + return $this->hasService($name); + } + + + + /** + * Removes the service, shortcut for removeService(). + * @return void + */ + public function __unset($name) + { + $this->removeService($name); + } + + + + public static function getMethodName($name, $isService = TRUE) + { + $uname = ucfirst($name); + return ($isService ? 'createService' : 'create') . ($name === $uname ? '__' : '') . str_replace('.', '__', $uname); + } + +} diff --git a/apigen/libs/Nette/Nette/DI/ContainerBuilder.php b/apigen/libs/Nette/Nette/DI/ContainerBuilder.php new file mode 100644 index 00000000000..1ea9f65a46a --- /dev/null +++ b/apigen/libs/Nette/Nette/DI/ContainerBuilder.php @@ -0,0 +1,585 @@ +definitions[$name])) { + throw new Nette\InvalidStateException("Service '$name' has already been added."); + } + return $this->definitions[$name] = new ServiceDefinition; + } + + + + /** + * Removes the specified service definition. + * @param string + * @return void + */ + public function removeDefinition($name) + { + unset($this->definitions[$name]); + } + + + + /** + * Gets the service definition. + * @param string + * @return ServiceDefinition + */ + public function getDefinition($name) + { + if (!isset($this->definitions[$name])) { + throw new MissingServiceException("Service '$name' not found."); + } + return $this->definitions[$name]; + } + + + + /** + * Gets all service definitions. + * @return array + */ + public function getDefinitions() + { + return $this->definitions; + } + + + + /** + * Does the service definition exist? + * @param string + * @return bool + */ + public function hasDefinition($name) + { + return isset($this->definitions[$name]); + } + + + + /********************* class resolving ****************d*g**/ + + + + /** + * Resolves service name by type. + * @param string class or interface + * @return string service name or NULL + * @throws ServiceCreationException + */ + public function getByType($class) + { + $lower = ltrim(strtolower($class), '\\'); + if (!isset($this->classes[$lower])) { + return; + + } elseif (count($this->classes[$lower]) === 1) { + return $this->classes[$lower][0]; + + } else { + throw new ServiceCreationException("Multiple services of type $class found: " . implode(', ', $this->classes[$lower])); + } + } + + + + /** + * Gets the service objects of the specified tag. + * @param string + * @return array of [service name => tag attributes] + */ + public function findByTag($tag) + { + $found = array(); + foreach ($this->definitions as $name => $def) { + if (isset($def->tags[$tag]) && $def->shared) { + $found[$name] = $def->tags[$tag]; + } + } + return $found; + } + + + + /** + * Creates a list of arguments using autowiring. + * @return array + */ + public function autowireArguments($class, $method, array $arguments) + { + $rc = Nette\Reflection\ClassType::from($class); + if (!$rc->hasMethod($method)) { + if (!Nette\Utils\Validators::isList($arguments)) { + throw new ServiceCreationException("Unable to pass specified arguments to $class::$method()."); + } + return $arguments; + } + + $rm = $rc->getMethod($method); + if ($rm->isAbstract() || !$rm->isPublic()) { + throw new ServiceCreationException("$rm is not callable."); + } + $this->addDependency($rm->getFileName()); + return Helpers::autowireArguments($rm, $arguments, $this); + } + + + + /** + * Generates $dependencies, $classes and expands and normalize class names. + * @return array + */ + public function prepareClassList() + { + // complete class-factory pairs; expand classes + foreach ($this->definitions as $name => $def) { + if ($def->class === self::CREATED_SERVICE || ($def->factory && $def->factory->entity === self::CREATED_SERVICE)) { + $def->class = $name; + $def->internal = TRUE; + if ($def->factory && $def->factory->entity === self::CREATED_SERVICE) { + $def->factory->entity = $def->class; + } + unset($this->definitions[$name]); + $this->definitions['_anonymous_' . str_replace('\\', '_', strtolower(trim($name, '\\')))] = $def; + } + + if ($def->class) { + $def->class = $this->expand($def->class); + if (!$def->factory) { + $def->factory = new Statement($def->class); + } + } elseif (!$def->factory) { + throw new ServiceCreationException("Class and factory are missing in service '$name' definition."); + } + } + + // complete classes + $this->classes = FALSE; + foreach ($this->definitions as $name => $def) { + $this->resolveClass($name); + } + + // build auto-wiring list + $this->classes = array(); + foreach ($this->definitions as $name => $def) { + if (!$def->class) { + continue; + } + if (!class_exists($def->class) && !interface_exists($def->class)) { + throw new Nette\InvalidStateException("Class $def->class has not been found."); + } + $def->class = Nette\Reflection\ClassType::from($def->class)->getName(); + if ($def->autowired) { + foreach (class_parents($def->class) + class_implements($def->class) + array($def->class) as $parent) { + $this->classes[strtolower($parent)][] = $name; + } + } + } + + foreach ($this->classes as $class => $foo) { + $this->addDependency(Nette\Reflection\ClassType::from($class)->getFileName()); + } + } + + + + private function resolveClass($name, $recursive = array()) + { + if (isset($recursive[$name])) { + throw new Nette\InvalidArgumentException('Circular reference detected for services: ' . implode(', ', array_keys($recursive)) . '.'); + } + $recursive[$name] = TRUE; + + $def = $this->definitions[$name]; + $factory = $this->normalizeEntity($this->expand($def->factory->entity)); + + if ($def->class) { + return $def->class; + + } elseif (is_array($factory)) { // method calling + if ($service = $this->getServiceName($factory[0])) { + if (Strings::contains($service, '\\')) { // @\Class + throw new ServiceCreationException("Unable resolve class name for service '$name'."); + } + $factory[0] = $this->resolveClass($service, $recursive); + if (!$factory[0]) { + return; + } + } + $factory = new Nette\Callback($factory); + if (!$factory->isCallable()) { + throw new Nette\InvalidStateException("Factory '$factory' is not callable."); + } + try { + $reflection = $factory->toReflection(); + $def->class = preg_replace('#[|\s].*#', '', $reflection->getAnnotation('return')); + if ($def->class && !class_exists($def->class) && $def->class[0] !== '\\' && $reflection instanceof \ReflectionMethod) { + /**/$def->class = $reflection->getDeclaringClass()->getNamespaceName() . '\\' . $def->class;/**/ + } + } catch (\ReflectionException $e) { + } + + } elseif ($service = $this->getServiceName($factory)) { // alias or factory + if (Strings::contains($service, '\\')) { // @\Class + /*5.2* $service = ltrim($service, '\\');*/ + $def->autowired = FALSE; + return $def->class = $service; + } + if ($this->definitions[$service]->shared) { + $def->autowired = FALSE; + } + return $def->class = $this->resolveClass($service, $recursive); + + } else { + return $def->class = $factory; // class name + } + } + + + + /** + * Adds a file to the list of dependencies. + * @return ContainerBuilder provides a fluent interface + */ + public function addDependency($file) + { + $this->dependencies[$file] = TRUE; + return $this; + } + + + + /** + * Returns the list of dependent files. + * @return array + */ + public function getDependencies() + { + unset($this->dependencies[FALSE]); + return array_keys($this->dependencies); + } + + + + /********************* code generator ****************d*g**/ + + + + /** + * Generates PHP class. + * @return Nette\Utils\PhpGenerator\ClassType + */ + public function generateClass($parentClass = 'Nette\DI\Container') + { + unset($this->definitions[self::THIS_CONTAINER]); + $this->addDefinition(self::THIS_CONTAINER)->setClass($parentClass); + + $this->prepareClassList(); + + $class = new Nette\Utils\PhpGenerator\ClassType('Container'); + $class->addExtend($parentClass); + $class->addMethod('__construct') + ->addBody('parent::__construct(?);', array($this->expand($this->parameters))); + + $classes = $class->addProperty('classes', array()); + foreach ($this->classes as $name => $foo) { + try { + $classes->value[$name] = $this->getByType($name); + } catch (ServiceCreationException $e) { + $classes->value[$name] = new PhpLiteral('FALSE, //' . strstr($e->getMessage(), ':')); + } + } + + $definitions = $this->definitions; + ksort($definitions); + + $meta = $class->addProperty('meta', array()); + foreach ($definitions as $name => $def) { + if ($def->shared) { + foreach ($this->expand($def->tags) as $tag => $value) { + $meta->value[$name][Container::TAGS][$tag] = $value; + } + } + } + + foreach ($definitions as $name => $def) { + try { + $type = $def->class ?: 'object'; + $methodName = Container::getMethodName($name, $def->shared); + if (!PhpHelpers::isIdentifier($methodName)) { + throw new ServiceCreationException('Name contains invalid characters.'); + } + if ($def->shared && !$def->internal && PhpHelpers::isIdentifier($name)) { + $class->addDocument("@property $type \$$name"); + } + $method = $class->addMethod($methodName) + ->addDocument("@return $type") + ->setVisibility($def->shared || $def->internal ? 'protected' : 'public') + ->setBody($name === self::THIS_CONTAINER ? 'return $this;' : $this->generateService($name)); + + foreach ($this->expand($def->parameters) as $k => $v) { + $tmp = explode(' ', is_int($k) ? $v : $k); + $param = is_int($k) ? $method->addParameter(end($tmp)) : $method->addParameter(end($tmp), $v); + if (isset($tmp[1])) { + $param->setTypeHint($tmp[0]); + } + } + } catch (\Exception $e) { + throw new ServiceCreationException("Service '$name': " . $e->getMessage(), NULL, $e); + } + } + + return $class; + } + + + + /** + * Generates body of service method. + * @return string + */ + private function generateService($name) + { + $def = $this->definitions[$name]; + $parameters = $this->parameters; + foreach ($this->expand($def->parameters) as $k => $v) { + $v = explode(' ', is_int($k) ? $v : $k); + $parameters[end($v)] = new PhpLiteral('$' . end($v)); + } + + $code = '$service = ' . $this->formatStatement(Helpers::expand($def->factory, $parameters, TRUE)) . ";\n"; + + $entity = $this->normalizeEntity($def->factory->entity); + if ($def->class && $def->class !== $entity && !$this->getServiceName($entity)) { + $code .= PhpHelpers::formatArgs("if (!\$service instanceof $def->class) {\n" + . "\tthrow new Nette\\UnexpectedValueException(?);\n}\n", + array("Unable to create service '$name', value returned by factory is not $def->class type.") + ); + } + + foreach ((array) $def->setup as $setup) { + $setup = Helpers::expand($setup, $parameters, TRUE); + if (is_string($setup->entity) && strpbrk($setup->entity, ':@?') === FALSE) { // auto-prepend @self + $setup->entity = array("@$name", $setup->entity); + } + $code .= $this->formatStatement($setup, $name) . ";\n"; + } + + return $code .= 'return $service;'; + } + + + + /** + * Formats PHP code for class instantiating, function calling or property setting in PHP. + * @return string + * @internal + */ + public function formatStatement(Statement $statement, $self = NULL) + { + $entity = $this->normalizeEntity($statement->entity); + $arguments = $statement->arguments; + + if (is_string($entity) && Strings::contains($entity, '?')) { // PHP literal + return $this->formatPhp($entity, $arguments, $self); + + } elseif ($service = $this->getServiceName($entity)) { // factory calling or service retrieving + if ($this->definitions[$service]->shared) { + if ($arguments) { + throw new ServiceCreationException("Unable to call service '$entity'."); + } + return $this->formatPhp('$this->getService(?)', array($service)); + } + $params = array(); + foreach ($this->definitions[$service]->parameters as $k => $v) { + $params[] = preg_replace('#\w+$#', '\$$0', (is_int($k) ? $v : $k)) . (is_int($k) ? '' : ' = ' . PhpHelpers::dump($v)); + } + $rm = new Nette\Reflection\GlobalFunction(create_function(implode(', ', $params), '')); + $arguments = Helpers::autowireArguments($rm, $arguments, $this); + return $this->formatPhp('$this->?(?*)', array(Container::getMethodName($service, FALSE), $arguments), $self); + + } elseif ($entity === 'not') { // operator + return $this->formatPhp('!?', array($arguments[0])); + + } elseif (is_string($entity)) { // class name + if ($constructor = Nette\Reflection\ClassType::from($entity)->getConstructor()) { + $this->addDependency($constructor->getFileName()); + $arguments = Helpers::autowireArguments($constructor, $arguments, $this); + } elseif ($arguments) { + throw new ServiceCreationException("Unable to pass arguments, class $entity has no constructor."); + } + return $this->formatPhp("new $entity" . ($arguments ? '(?*)' : ''), array($arguments), $self); + + } elseif (!Validators::isList($entity) || count($entity) !== 2) { + throw new Nette\InvalidStateException("Expected class, method or property, " . PhpHelpers::dump($entity) . " given."); + + } elseif ($entity[0] === '') { // globalFunc + return $this->formatPhp("$entity[1](?*)", array($arguments), $self); + + } elseif (Strings::contains($entity[1], '$')) { // property setter + Validators::assert($arguments, 'list:1', "setup arguments for '" . Nette\Callback::create($entity) . "'"); + if ($this->getServiceName($entity[0], $self)) { + return $this->formatPhp('?->? = ?', array($entity[0], substr($entity[1], 1), $arguments[0]), $self); + } else { + return $this->formatPhp($entity[0] . '::$? = ?', array(substr($entity[1], 1), $arguments[0]), $self); + } + + } elseif ($service = $this->getServiceName($entity[0], $self)) { // service method + if ($this->definitions[$service]->class) { + $arguments = $this->autowireArguments($this->definitions[$service]->class, $entity[1], $arguments); + } + return $this->formatPhp('?->?(?*)', array($entity[0], $entity[1], $arguments), $self); + + } else { // static method + $arguments = $this->autowireArguments($entity[0], $entity[1], $arguments); + return $this->formatPhp("$entity[0]::$entity[1](?*)", array($arguments), $self); + } + } + + + + /** + * Formats PHP statement. + * @return string + */ + public function formatPhp($statement, $args, $self = NULL) + { + $that = $this; + array_walk_recursive($args, function(&$val) use ($self, $that) { + list($val) = $that->normalizeEntity(array($val)); + + if ($val instanceof Statement) { + $val = new PhpLiteral($that->formatStatement($val, $self)); + + } elseif ($val === '@' . ContainerBuilder::THIS_CONTAINER) { + $val = new PhpLiteral('$this'); + + } elseif ($service = $that->getServiceName($val, $self)) { + $val = $service === $self ? '$service' : $that->formatStatement(new Statement($val)); + $val = new PhpLiteral($val); + } + }); + return PhpHelpers::formatArgs($statement, $args); + } + + + + /** + * Expands %placeholders% in strings (recursive). + * @param mixed + * @return mixed + */ + public function expand($value) + { + return Helpers::expand($value, $this->parameters, TRUE); + } + + + + /** @internal */ + public function normalizeEntity($entity) + { + if (is_string($entity) && Strings::contains($entity, '::') && !Strings::contains($entity, '?')) { // Class::method -> [Class, method] + $entity = explode('::', $entity); + } + + if (is_array($entity) && $entity[0] instanceof ServiceDefinition) { // [ServiceDefinition, ...] -> [@serviceName, ...] + $tmp = array_keys($this->definitions, $entity[0], TRUE); + $entity[0] = "@$tmp[0]"; + + } elseif ($entity instanceof ServiceDefinition) { // ServiceDefinition -> @serviceName + $tmp = array_keys($this->definitions, $entity, TRUE); + $entity = "@$tmp[0]"; + + } elseif (is_array($entity) && $entity[0] === $this) { // [$this, ...] -> [@container, ...] + $entity[0] = '@' . ContainerBuilder::THIS_CONTAINER; + } + return $entity; // Class, @service, [Class, member], [@service, member], [, globalFunc] + } + + + + /** + * Converts @service or @\Class -> service name and checks its existence. + * @param mixed + * @return string of FALSE, if argument is not service name + */ + public function getServiceName($arg, $self = NULL) + { + if (!is_string($arg) || !preg_match('#^@[\w\\\\.].+$#', $arg)) { + return FALSE; + } + $service = substr($arg, 1); + if ($service === self::CREATED_SERVICE) { + $service = $self; + } + if (Strings::contains($service, '\\')) { + if ($this->classes === FALSE) { // may be disabled by prepareClassList + return $service; + } + $res = $this->getByType($service); + if (!$res) { + throw new ServiceCreationException("Reference to missing service of type $service."); + } + return $res; + } + if (!isset($this->definitions[$service])) { + throw new ServiceCreationException("Reference to missing service '$service'."); + } + return $service; + } + +} diff --git a/apigen/libs/Nette/Nette/DI/Diagnostics/ContainerPanel.php b/apigen/libs/Nette/Nette/DI/Diagnostics/ContainerPanel.php new file mode 100644 index 00000000000..8366d44c3f5 --- /dev/null +++ b/apigen/libs/Nette/Nette/DI/Diagnostics/ContainerPanel.php @@ -0,0 +1,93 @@ +container = $container; + } + + + + /** + * Renders tab. + * @return string + */ + public function getTab() + { + ob_start(); + require __DIR__ . '/templates/ContainerPanel.tab.phtml'; + return ob_get_clean(); + } + + + + /** + * Renders panel. + * @return string + */ + public function getPanel() + { + $services = $this->getContainerProperty('factories'); + $factories = array(); + foreach (Nette\Reflection\ClassType::from($this->container)->getMethods() as $method) { + if (preg_match('#^create(Service)?(.+)$#', $method->getName(), $m)) { + $name = str_replace('__', '.', strtolower(substr($m[2], 0, 1)) . substr($m[2], 1)); + if ($m[1]) { + $services[$name] = $method->getAnnotation('return'); + } elseif ($method->isPublic()) { + $a = strrpos(".$name", '.'); + $factories[substr($name, 0, $a) . 'create' . ucfirst(substr($name, $a))] = $method->getAnnotation('return'); + } + } + } + ksort($services); + ksort($factories); + $container = $this->container; + $registry = $this->getContainerProperty('registry'); + + ob_start(); + require __DIR__ . '/templates/ContainerPanel.panel.phtml'; + return ob_get_clean(); + } + + + + private function getContainerProperty($name) + { + $prop = Nette\Reflection\ClassType::from('Nette\DI\Container')->getProperty($name); + $prop->setAccessible(TRUE); + return $prop->getValue($this->container); + } + +} diff --git a/apigen/libs/Nette/Nette/DI/Diagnostics/templates/ContainerPanel.panel.phtml b/apigen/libs/Nette/Nette/DI/Diagnostics/templates/ContainerPanel.panel.phtml new file mode 100644 index 00000000000..c2dd2b93219 --- /dev/null +++ b/apigen/libs/Nette/Nette/DI/Diagnostics/templates/ContainerPanel.panel.phtml @@ -0,0 +1,99 @@ + + + +
+

container) ?>

+ +
+

Parameters

+ +
+ container->parameters); ?> +
+ +

Services

+ + + + + + + + + + + + $class): ?> + classes, $name); ?> + + + + + + + + +
NameAutowiredServiceMeta
', $name)) ?>" class=""> + + + + + + + + meta[$name])) { echo Helpers::clickableDump($container->meta[$name], TRUE); } ?>
+ +

Factories

+ + + + + + + + + + $class): ?> + + + + + + +
MethodReturns
', $name)) ?>()
+
+
diff --git a/apigen/libs/Nette/Nette/DI/Diagnostics/templates/ContainerPanel.tab.phtml b/apigen/libs/Nette/Nette/DI/Diagnostics/templates/ContainerPanel.tab.phtml new file mode 100644 index 00000000000..fc4e3806947 --- /dev/null +++ b/apigen/libs/Nette/Nette/DI/Diagnostics/templates/ContainerPanel.tab.phtml @@ -0,0 +1,9 @@ + +  diff --git a/apigen/libs/Nette/Nette/DI/Helpers.php b/apigen/libs/Nette/Nette/DI/Helpers.php new file mode 100644 index 00000000000..b53af78c5e7 --- /dev/null +++ b/apigen/libs/Nette/Nette/DI/Helpers.php @@ -0,0 +1,160 @@ + $val) { + $res[$key] = self::expand($val, $params, $recursive); + } + return $res; + + } elseif ($var instanceof Statement) { + return new Statement(self::expand($var->entity, $params, $recursive), self::expand($var->arguments, $params, $recursive)); + + } elseif (!is_string($var)) { + return $var; + } + + $parts = preg_split('#%([\w.-]*)%#i', $var, -1, PREG_SPLIT_DELIM_CAPTURE); + $res = ''; + foreach ($parts as $n => $part) { + if ($n % 2 === 0) { + $res .= $part; + + } elseif ($part === '') { + $res .= '%'; + + } elseif (isset($recursive[$part])) { + throw new Nette\InvalidArgumentException('Circular reference detected for variables: ' . implode(', ', array_keys($recursive)) . '.'); + + } else { + $val = Nette\Utils\Arrays::get($params, explode('.', $part)); + if ($recursive) { + $val = self::expand($val, $params, (is_array($recursive) ? $recursive : array()) + array($part => 1)); + } + if (strlen($part) + 2 === strlen($var)) { + return $val; + } + if (!is_scalar($val)) { + throw new Nette\InvalidArgumentException("Unable to concatenate non-scalar parameter '$part' into '$var'."); + } + $res .= $val; + } + } + return $res; + } + + + + /** + * Expand counterpart. + * @param mixed + * @return mixed + */ + public static function escape($value) + { + if (is_array($value)) { + array_walk_recursive($value, function(&$val) { + $val = is_string($val) ? str_replace('%', '%%', $val) : $val; + }); + } elseif (is_string($value)) { + $value = str_replace('%', '%%', $value); + } + return $value; + } + + + + /** + * Generates list of arguments using autowiring. + * @param Nette\Reflection\GlobalFunction|Nette\Reflection\Method + * @return array + */ + public static function autowireArguments(\ReflectionFunctionAbstract $method, array $arguments, $container) + { + $optCount = 0; + $num = -1; + $res = array(); + + foreach ($method->getParameters() as $num => $parameter) { + if (array_key_exists($num, $arguments)) { + $res[$num] = $arguments[$num]; + unset($arguments[$num]); + $optCount = 0; + + } elseif (array_key_exists($parameter->getName(), $arguments)) { + $res[$num] = $arguments[$parameter->getName()]; + unset($arguments[$parameter->getName()]); + $optCount = 0; + + } elseif ($class = $parameter->getClassName()) { // has object type hint + $res[$num] = $container->getByType($class, FALSE); + if ($res[$num] === NULL) { + if ($parameter->allowsNull()) { + $optCount++; + } else { + throw new ServiceCreationException("No service of type {$class} found. Make sure the type hint in $method is written correctly and service of this type is registered."); + } + } else { + if ($container instanceof ContainerBuilder) { + $res[$num] = '@' . $res[$num]; + } + $optCount = 0; + } + + } elseif ($parameter->isOptional()) { + // PDO::__construct has optional parameter without default value (and isArray() and allowsNull() returns FALSE) + $res[$num] = $parameter->isDefaultValueAvailable() ? $parameter->getDefaultValue() : NULL; + $optCount++; + + } else { + throw new ServiceCreationException("Parameter $parameter has no type hint, so its value must be specified."); + } + } + + // extra parameters + while (array_key_exists(++$num, $arguments)) { + $res[$num] = $arguments[$num]; + unset($arguments[$num]); + $optCount = 0; + } + if ($arguments) { + throw new ServiceCreationException("Unable to pass specified arguments to $method."); + } + + return $optCount ? array_slice($res, 0, -$optCount) : $res; + } + +} diff --git a/apigen/libs/Nette/Nette/DI/IContainer.php b/apigen/libs/Nette/Nette/DI/IContainer.php new file mode 100644 index 00000000000..ddb39d71b73 --- /dev/null +++ b/apigen/libs/Nette/Nette/DI/IContainer.php @@ -0,0 +1,52 @@ +container = $container; + $this->namespace = $namespace . '.'; + $this->parameters = & $container->parameters[$namespace]; + } + + + + /** + * @return object + */ + public function __call($name, $args) + { + if (substr($name, 0, 6) === 'create') { + return call_user_func_array(array( + $this->container, + Container::getMethodName($this->namespace . substr($name, 6), FALSE) + ), $args); + } + throw new Nette\NotSupportedException; + } + + + + /** + * @return object + */ + public function &__get($name) + { + $service = $this->container->getService($this->namespace . $name); + return $service; + } + + + + /** + * @return void + */ + public function __set($name, $service) + { + throw new Nette\NotSupportedException; + } + + + + /** + * @return bool + */ + public function __isset($name) + { + return $this->container->hasService($this->namespace . $name); + } + + + + /** + * @return void + */ + public function __unset($name) + { + throw new Nette\NotSupportedException; + } + +} diff --git a/apigen/libs/Nette/Nette/DI/ServiceDefinition.php b/apigen/libs/Nette/Nette/DI/ServiceDefinition.php new file mode 100644 index 00000000000..eede295b0db --- /dev/null +++ b/apigen/libs/Nette/Nette/DI/ServiceDefinition.php @@ -0,0 +1,134 @@ +class = $class; + if ($args) { + $this->setFactory($class, $args); + } + return $this; + } + + + + public function setFactory($factory, array $args = array()) + { + $this->factory = new Statement($factory, $args); + return $this; + } + + + + public function setArguments(array $args = array()) + { + if ($this->factory) { + $this->factory->arguments = $args; + } else { + $this->setClass($this->class, $args); + } + return $this; + } + + + + public function addSetup($target, $args = NULL) + { + if (!is_array($args)) { + $args = func_get_args(); + array_shift($args); + } + $this->setup[] = new Statement($target, $args); + return $this; + } + + + + public function setParameters(array $params) + { + $this->shared = $this->autowired = FALSE; + $this->parameters = $params; + return $this; + } + + + + public function addTag($tag, $attrs = TRUE) + { + $this->tags[$tag] = $attrs; + return $this; + } + + + + public function setAutowired($on) + { + $this->autowired = $on; + return $this; + } + + + + public function setShared($on) + { + $this->shared = (bool) $on; + $this->autowired = $this->shared ? $this->autowired : FALSE; + return $this; + } + + + + public function setInternal($on) + { + $this->internal = (bool) $on; + return $this; + } + +} diff --git a/apigen/libs/Nette/Nette/DI/Statement.php b/apigen/libs/Nette/Nette/DI/Statement.php new file mode 100644 index 00000000000..c114f9eb6e9 --- /dev/null +++ b/apigen/libs/Nette/Nette/DI/Statement.php @@ -0,0 +1,39 @@ +entity = $entity; + $this->arguments = $arguments; + } + +} diff --git a/apigen/libs/Nette/Nette/DI/exceptions.php b/apigen/libs/Nette/Nette/DI/exceptions.php new file mode 100644 index 00000000000..bc19f91a1db --- /dev/null +++ b/apigen/libs/Nette/Nette/DI/exceptions.php @@ -0,0 +1,32 @@ +dsn = $dsn, $username, $password, $options); + $this->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); + $this->setAttribute(PDO::ATTR_STATEMENT_CLASS, array('Nette\Database\Statement', array($this))); + + $driverClass = $driverClass ?: 'Nette\Database\Drivers\\' . ucfirst(str_replace('sql', 'Sql', $this->getAttribute(PDO::ATTR_DRIVER_NAME))) . 'Driver'; + $this->driver = new $driverClass($this, (array) $options); + $this->preprocessor = new SqlPreprocessor($this); + } + + + + public function getDsn() + { + return $this->dsn; + } + + + + /** @return ISupplementalDriver */ + public function getSupplementalDriver() + { + return $this->driver; + } + + + + /** + * Sets database reflection + * @param IReflection database reflection object + * @return Connection provides a fluent interface + */ + public function setDatabaseReflection(IReflection $databaseReflection) + { + $databaseReflection->setConnection($this); + $this->databaseReflection = $databaseReflection; + return $this; + } + + + + /** @return IReflection */ + public function getDatabaseReflection() + { + if (!$this->databaseReflection) { + $this->setDatabaseReflection(new Reflection\ConventionalReflection); + } + return $this->databaseReflection; + } + + + + /** + * Sets cache storage engine + * @param Nette\Caching\IStorage $storage + * @return Connection provides a fluent interface + */ + public function setCacheStorage(Nette\Caching\IStorage $storage = NULL) + { + $this->cache = $storage ? new Nette\Caching\Cache($storage, 'Nette.Database.' . md5($this->dsn)) : NULL; + return $this; + } + + + + public function getCache() + { + return $this->cache; + } + + + + /** + * Generates and executes SQL query. + * @param string statement + * @param mixed [parameters, ...] + * @return Statement + */ + public function query($statement) + { + $args = func_get_args(); + return $this->queryArgs(array_shift($args), $args); + } + + + + /** + * Generates and executes SQL query. + * @param string statement + * @param mixed [parameters, ...] + * @return int number of affected rows + */ + public function exec($statement) + { + $args = func_get_args(); + return $this->queryArgs(array_shift($args), $args)->rowCount(); + } + + + + /** + * @param string statement + * @param array + * @return Statement + */ + public function queryArgs($statement, $params) + { + foreach ($params as $value) { + if (is_array($value) || is_object($value)) { + $need = TRUE; break; + } + } + if (isset($need) && $this->preprocessor !== NULL) { + list($statement, $params) = $this->preprocessor->process($statement, $params); + } + + return $this->prepare($statement)->execute($params); + } + + + + /********************* shortcuts ****************d*g**/ + + + + /** + * Shortcut for query()->fetch() + * @param string statement + * @param mixed [parameters, ...] + * @return Row + */ + public function fetch($args) + { + $args = func_get_args(); + return $this->queryArgs(array_shift($args), $args)->fetch(); + } + + + + /** + * Shortcut for query()->fetchColumn() + * @param string statement + * @param mixed [parameters, ...] + * @return mixed + */ + public function fetchColumn($args) + { + $args = func_get_args(); + return $this->queryArgs(array_shift($args), $args)->fetchColumn(); + } + + + + /** + * Shortcut for query()->fetchPairs() + * @param string statement + * @param mixed [parameters, ...] + * @return array + */ + public function fetchPairs($args) + { + $args = func_get_args(); + return $this->queryArgs(array_shift($args), $args)->fetchPairs(); + } + + + + /** + * Shortcut for query()->fetchAll() + * @param string statement + * @param mixed [parameters, ...] + * @return array + */ + public function fetchAll($args) + { + $args = func_get_args(); + return $this->queryArgs(array_shift($args), $args)->fetchAll(); + } + + + + /********************* selector ****************d*g**/ + + + + /** + * Creates selector for table. + * @param string + * @return Nette\Database\Table\Selection + */ + public function table($table) + { + return new Table\Selection($table, $this); + } + + + + /********************* Nette\Object behaviour ****************d*g**/ + + + + /** + * @return Nette\Reflection\ClassType + */ + public /**/static/**/ function getReflection() + { + return new Nette\Reflection\ClassType(/*5.2*$this*//**/get_called_class()/**/); + } + + + + public function __call($name, $args) + { + return ObjectMixin::call($this, $name, $args); + } + + + + public function &__get($name) + { + return ObjectMixin::get($this, $name); + } + + + + public function __set($name, $value) + { + return ObjectMixin::set($this, $name, $value); + } + + + + public function __isset($name) + { + return ObjectMixin::has($this, $name); + } + + + + public function __unset($name) + { + ObjectMixin::remove($this, $name); + } + +} diff --git a/apigen/libs/Nette/Nette/Database/Diagnostics/ConnectionPanel.php b/apigen/libs/Nette/Nette/Database/Diagnostics/ConnectionPanel.php new file mode 100644 index 00000000000..7741cb4faff --- /dev/null +++ b/apigen/libs/Nette/Nette/Database/Diagnostics/ConnectionPanel.php @@ -0,0 +1,152 @@ +disabled) { + return; + } + $source = NULL; + foreach (/*5.2*PHP_VERSION_ID < 50205 ? debug_backtrace() : */debug_backtrace(FALSE) as $row) { + if (isset($row['file']) && is_file($row['file']) && strpos($row['file'], NETTE_DIR . DIRECTORY_SEPARATOR) !== 0) { + if (isset($row['function']) && strpos($row['function'], 'call_user_func') === 0) continue; + if (isset($row['class']) && is_subclass_of($row['class'], '\\Nette\\Database\\Connection')) continue; + $source = array($row['file'], (int) $row['line']); + break; + } + } + $this->totalTime += $result->getTime(); + $this->queries[] = array($result->queryString, $params, $result->getTime(), $result->rowCount(), $result->getConnection(), $source); + } + + + + public static function renderException($e) + { + if ($e instanceof \PDOException && isset($e->queryString)) { + return array( + 'tab' => 'SQL', + 'panel' => Helpers::dumpSql($e->queryString), + ); + } + } + + + + public function getTab() + { + return '' + . '' + . count($this->queries) . ' queries' + . ($this->totalTime ? ' / ' . sprintf('%0.1f', $this->totalTime * 1000) . 'ms' : '') + . ''; + } + + + + public function getPanel() + { + $this->disabled = TRUE; + $s = ''; + $h = 'htmlSpecialChars'; + foreach ($this->queries as $i => $query) { + list($sql, $params, $time, $rows, $connection, $source) = $query; + + $explain = NULL; // EXPLAIN is called here to work SELECT FOUND_ROWS() + if ($this->explain && preg_match('#\s*\(?\s*SELECT\s#iA', $sql)) { + try { + $cmd = is_string($this->explain) ? $this->explain : 'EXPLAIN'; + $explain = $connection->queryArgs("$cmd $sql", $params)->fetchAll(); + } catch (\PDOException $e) {} + } + + $s .= '' . sprintf('%0.3f', $time * 1000); + if ($explain) { + static $counter; + $counter++; + $s .= "
explain ►"; + } + + $s .= '' . Helpers::dumpSql(self::$maxLength ? Nette\Utils\Strings::truncate($sql, self::$maxLength) : $sql); + if ($explain) { + $s .= ""; + foreach ($explain[0] as $col => $foo) { + $s .= ""; + } + $s .= ""; + foreach ($explain as $row) { + $s .= ""; + foreach ($row as $col) { + $s .= ""; + } + $s .= ""; + } + $s .= "
{$h($col)}
{$h($col)}
"; + } + if ($source) { + $s .= Nette\Diagnostics\Helpers::editorLink($source[0], $source[1])->class('nette-DbConnectionPanel-source'); + } + + $s .= ''; + foreach ($params as $param) { + $s .= Debugger::dump($param, TRUE); + } + + $s .= '' . $rows . ''; + } + + return empty($this->queries) ? '' : + ' +

Queries: ' . count($this->queries) . ($this->totalTime ? ', time: ' . sprintf('%0.3f', $this->totalTime * 1000) . ' ms' : '') . '

+
+ + ' . $s . ' +
Time msSQL StatementParamsRows
+
'; + } + +} diff --git a/apigen/libs/Nette/Nette/Database/Drivers/MsSqlDriver.php b/apigen/libs/Nette/Nette/Database/Drivers/MsSqlDriver.php new file mode 100644 index 00000000000..f7a87bbeecf --- /dev/null +++ b/apigen/libs/Nette/Nette/Database/Drivers/MsSqlDriver.php @@ -0,0 +1,152 @@ +connection = $connection; + } + + + + /********************* SQL ****************d*g**/ + + + + /** + * Delimites identifier for use in a SQL statement. + */ + public function delimite($name) + { + // @see http://msdn.microsoft.com/en-us/library/ms176027.aspx + return '[' . str_replace(array('[', ']'), array('[[', ']]'), $name) . ']'; + } + + + + /** + * Formats date-time for use in a SQL statement. + */ + public function formatDateTime(\DateTime $value) + { + return $value->format("'Y-m-d H:i:s'"); + } + + + + /** + * Encodes string for use in a LIKE statement. + */ + public function formatLike($value, $pos) + { + $value = strtr($value, array("'" => "''", '%' => '[%]', '_' => '[_]', '[' => '[[]')); + return ($pos <= 0 ? "'%" : "'") . $value . ($pos >= 0 ? "%'" : "'"); + } + + + + /** + * Injects LIMIT/OFFSET to the SQL query. + */ + public function applyLimit(&$sql, $limit, $offset) + { + // offset support is missing + if ($limit >= 0) { + $sql = 'SELECT TOP ' . (int) $limit . ' * FROM (' . $sql . ') t'; + } + + if ($offset) { + throw new Nette\NotImplementedException('Offset is not implemented.'); + } + } + + + + /** + * Normalizes result row. + */ + public function normalizeRow($row, $statement) + { + return $row; + } + + + + /********************* reflection ****************d*g**/ + + + + /** + * Returns list of tables. + */ + public function getTables() + { + throw new NotImplementedException; + } + + + + /** + * Returns metadata for all columns in a table. + */ + public function getColumns($table) + { + throw new NotImplementedException; + } + + + + /** + * Returns metadata for all indexes in a table. + */ + public function getIndexes($table) + { + throw new NotImplementedException; + } + + + + /** + * Returns metadata for all foreign keys in a table. + */ + public function getForeignKeys($table) + { + throw new NotImplementedException; + } + + + + /** + * @return bool + */ + public function isSupported($item) + { + return $item === self::META; + } + +} diff --git a/apigen/libs/Nette/Nette/Database/Drivers/MySqlDriver.php b/apigen/libs/Nette/Nette/Database/Drivers/MySqlDriver.php new file mode 100644 index 00000000000..4b604e2129a --- /dev/null +++ b/apigen/libs/Nette/Nette/Database/Drivers/MySqlDriver.php @@ -0,0 +1,223 @@ + character encoding to set (default is utf8) + * - sqlmode => see http://dev.mysql.com/doc/refman/5.0/en/server-sql-mode.html + */ + public function __construct(Nette\Database\Connection $connection, array $options) + { + $this->connection = $connection; + $charset = isset($options['charset']) ? $options['charset'] : 'utf8'; + if ($charset) { + $connection->exec("SET NAMES '$charset'"); + } + if (isset($options['sqlmode'])) { + $connection->exec("SET sql_mode='$options[sqlmode]'"); + } + $connection->exec("SET time_zone='" . date('P') . "'"); + } + + + + /********************* SQL ****************d*g**/ + + + + /** + * Delimites identifier for use in a SQL statement. + */ + public function delimite($name) + { + // @see http://dev.mysql.com/doc/refman/5.0/en/identifiers.html + return '`' . str_replace('`', '``', $name) . '`'; + } + + + + /** + * Formats date-time for use in a SQL statement. + */ + public function formatDateTime(\DateTime $value) + { + return $value->format("'Y-m-d H:i:s'"); + } + + + + /** + * Encodes string for use in a LIKE statement. + */ + public function formatLike($value, $pos) + { + $value = addcslashes(str_replace('\\', '\\\\', $value), "\x00\n\r\\'%_"); + return ($pos <= 0 ? "'%" : "'") . $value . ($pos >= 0 ? "%'" : "'"); + } + + + + /** + * Injects LIMIT/OFFSET to the SQL query. + */ + public function applyLimit(&$sql, $limit, $offset) + { + if ($limit >= 0 || $offset > 0) { + // see http://dev.mysql.com/doc/refman/5.0/en/select.html + $sql .= ' LIMIT ' . ($limit < 0 ? '18446744073709551615' : (int) $limit) + . ($offset > 0 ? ' OFFSET ' . (int) $offset : ''); + } + } + + + + /** + * Normalizes result row. + */ + public function normalizeRow($row, $statement) + { + return $row; + } + + + + /********************* reflection ****************d*g**/ + + + + /** + * Returns list of tables. + */ + public function getTables() + { + /*$this->connection->query(" + SELECT TABLE_NAME as name, TABLE_TYPE = 'VIEW' as view + FROM INFORMATION_SCHEMA.TABLES + WHERE TABLE_SCHEMA = DATABASE() + ");*/ + $tables = array(); + foreach ($this->connection->query('SHOW FULL TABLES') as $row) { + $tables[] = array( + 'name' => $row[0], + 'view' => isset($row[1]) && $row[1] === 'VIEW', + ); + } + return $tables; + } + + + + /** + * Returns metadata for all columns in a table. + */ + public function getColumns($table) + { + /*$this->connection->query(" + SELECT * + FROM INFORMATION_SCHEMA.COLUMNS + WHERE TABLE_NAME = {$this->connection->quote($table)} AND TABLE_SCHEMA = DATABASE() + ");*/ + $columns = array(); + foreach ($this->connection->query('SHOW FULL COLUMNS FROM ' . $this->delimite($table)) as $row) { + $type = explode('(', $row['Type']); + $columns[] = array( + 'name' => $row['Field'], + 'table' => $table, + 'nativetype' => strtoupper($type[0]), + 'size' => isset($type[1]) ? (int) $type[1] : NULL, + 'unsigned' => (bool) strstr($row['Type'], 'unsigned'), + 'nullable' => $row['Null'] === 'YES', + 'default' => $row['Default'], + 'autoincrement' => $row['Extra'] === 'auto_increment', + 'primary' => $row['Key'] === 'PRI', + 'vendor' => (array) $row, + ); + } + return $columns; + } + + + + /** + * Returns metadata for all indexes in a table. + */ + public function getIndexes($table) + { + /*$this->connection->query(" + SELECT * + FROM INFORMATION_SCHEMA.KEY_COLUMN_USAGE + WHERE TABLE_NAME = {$this->connection->quote($table)} AND TABLE_SCHEMA = DATABASE() + AND REFERENCED_COLUMN_NAME IS NULL + ");*/ + $indexes = array(); + foreach ($this->connection->query('SHOW INDEX FROM ' . $this->delimite($table)) as $row) { + $indexes[$row['Key_name']]['name'] = $row['Key_name']; + $indexes[$row['Key_name']]['unique'] = !$row['Non_unique']; + $indexes[$row['Key_name']]['primary'] = $row['Key_name'] === 'PRIMARY'; + $indexes[$row['Key_name']]['columns'][$row['Seq_in_index'] - 1] = $row['Column_name']; + } + return array_values($indexes); + } + + + + /** + * Returns metadata for all foreign keys in a table. + */ + public function getForeignKeys($table) + { + $keys = array(); + $query = 'SELECT CONSTRAINT_NAME, COLUMN_NAME, REFERENCED_TABLE_NAME, REFERENCED_COLUMN_NAME FROM information_schema.KEY_COLUMN_USAGE ' + . 'WHERE TABLE_SCHEMA = DATABASE() AND REFERENCED_TABLE_NAME IS NOT NULL AND TABLE_NAME = ' . $this->connection->quote($table); + + foreach ($this->connection->query($query) as $id => $row) { + $keys[$id]['name'] = $row['CONSTRAINT_NAME']; // foreign key name + $keys[$id]['local'] = $row['COLUMN_NAME']; // local columns + $keys[$id]['table'] = $row['REFERENCED_TABLE_NAME']; // referenced table + $keys[$id]['foreign'] = $row['REFERENCED_COLUMN_NAME']; // referenced columns + } + + return array_values($keys); + } + + + + /** + * @return bool + */ + public function isSupported($item) + { + return $item === self::META; + } + +} diff --git a/apigen/libs/Nette/Nette/Database/Drivers/OciDriver.php b/apigen/libs/Nette/Nette/Database/Drivers/OciDriver.php new file mode 100644 index 00000000000..f5a403eee6c --- /dev/null +++ b/apigen/libs/Nette/Nette/Database/Drivers/OciDriver.php @@ -0,0 +1,165 @@ +connection = $connection; + $this->fmtDateTime = isset($options['formatDateTime']) ? $options['formatDateTime'] : 'U'; + } + + + + /********************* SQL ****************d*g**/ + + + + /** + * Delimites identifier for use in a SQL statement. + */ + public function delimite($name) + { + // @see http://download.oracle.com/docs/cd/B10500_01/server.920/a96540/sql_elements9a.htm + return '"' . str_replace('"', '""', $name) . '"'; + } + + + + /** + * Formats date-time for use in a SQL statement. + */ + public function formatDateTime(\DateTime $value) + { + return $value->format($this->fmtDateTime); + } + + + + /** + * Encodes string for use in a LIKE statement. + */ + public function formatLike($value, $pos) + { + throw new Nette\NotImplementedException; + } + + + + /** + * Injects LIMIT/OFFSET to the SQL query. + */ + public function applyLimit(&$sql, $limit, $offset) + { + if ($offset > 0) { + // see http://www.oracle.com/technology/oramag/oracle/06-sep/o56asktom.html + $sql = 'SELECT * FROM (SELECT t.*, ROWNUM AS "__rnum" FROM (' . $sql . ') t ' + . ($limit >= 0 ? 'WHERE ROWNUM <= ' . ((int) $offset + (int) $limit) : '') + . ') WHERE "__rnum" > '. (int) $offset; + + } elseif ($limit >= 0) { + $sql = 'SELECT * FROM (' . $sql . ') WHERE ROWNUM <= ' . (int) $limit; + } + } + + + + /** + * Normalizes result row. + */ + public function normalizeRow($row, $statement) + { + return $row; + } + + + + /********************* reflection ****************d*g**/ + + + + /** + * Returns list of tables. + */ + public function getTables() + { + $tables = array(); + foreach ($this->connection->query('SELECT * FROM cat') as $row) { + if ($row[1] === 'TABLE' || $row[1] === 'VIEW') { + $tables[] = array( + 'name' => $row[0], + 'view' => $row[1] === 'VIEW', + ); + } + } + return $tables; + } + + + + /** + * Returns metadata for all columns in a table. + */ + public function getColumns($table) + { + throw new NotImplementedException; + } + + + + /** + * Returns metadata for all indexes in a table. + */ + public function getIndexes($table) + { + throw new NotImplementedException; + } + + + + /** + * Returns metadata for all foreign keys in a table. + */ + public function getForeignKeys($table) + { + throw new NotImplementedException; + } + + + + /** + * @return bool + */ + public function isSupported($item) + { + return $item === self::META; + } + +} diff --git a/apigen/libs/Nette/Nette/Database/Drivers/OdbcDriver.php b/apigen/libs/Nette/Nette/Database/Drivers/OdbcDriver.php new file mode 100644 index 00000000000..6c151194729 --- /dev/null +++ b/apigen/libs/Nette/Nette/Database/Drivers/OdbcDriver.php @@ -0,0 +1,151 @@ +connection = $connection; + } + + + + /********************* SQL ****************d*g**/ + + + + /** + * Delimites identifier for use in a SQL statement. + */ + public function delimite($name) + { + return '[' . str_replace(array('[', ']'), array('[[', ']]'), $name) . ']'; + } + + + + /** + * Formats date-time for use in a SQL statement. + */ + public function formatDateTime(\DateTime $value) + { + return $value->format("#m/d/Y H:i:s#"); + } + + + + /** + * Encodes string for use in a LIKE statement. + */ + public function formatLike($value, $pos) + { + $value = strtr($value, array("'" => "''", '%' => '[%]', '_' => '[_]', '[' => '[[]')); + return ($pos <= 0 ? "'%" : "'") . $value . ($pos >= 0 ? "%'" : "'"); + } + + + + /** + * Injects LIMIT/OFFSET to the SQL query. + */ + public function applyLimit(&$sql, $limit, $offset) + { + // offset support is missing + if ($limit >= 0) { + $sql = 'SELECT TOP ' . (int) $limit . ' * FROM (' . $sql . ')'; + } + + if ($offset) { + throw new Nette\InvalidArgumentException('Offset is not implemented in driver odbc.'); + } + } + + + + /** + * Normalizes result row. + */ + public function normalizeRow($row, $statement) + { + return $row; + } + + + + /********************* reflection ****************d*g**/ + + + + /** + * Returns list of tables. + */ + public function getTables() + { + throw new NotImplementedException; + } + + + + /** + * Returns metadata for all columns in a table. + */ + public function getColumns($table) + { + throw new NotImplementedException; + } + + + + /** + * Returns metadata for all indexes in a table. + */ + public function getIndexes($table) + { + throw new NotImplementedException; + } + + + + /** + * Returns metadata for all foreign keys in a table. + */ + public function getForeignKeys($table) + { + throw new NotImplementedException; + } + + + + /** + * @return bool + */ + public function isSupported($item) + { + return $item === self::META; + } + +} diff --git a/apigen/libs/Nette/Nette/Database/Drivers/PgSqlDriver.php b/apigen/libs/Nette/Nette/Database/Drivers/PgSqlDriver.php new file mode 100644 index 00000000000..b9f86440424 --- /dev/null +++ b/apigen/libs/Nette/Nette/Database/Drivers/PgSqlDriver.php @@ -0,0 +1,227 @@ +connection = $connection; + } + + + + /********************* SQL ****************d*g**/ + + + + /** + * Delimites identifier for use in a SQL statement. + */ + public function delimite($name) + { + // @see http://www.postgresql.org/docs/8.2/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS + return '"' . str_replace('"', '""', $name) . '"'; + } + + + + /** + * Formats date-time for use in a SQL statement. + */ + public function formatDateTime(\DateTime $value) + { + return $value->format("'Y-m-d H:i:s'"); + } + + + + /** + * Encodes string for use in a LIKE statement. + */ + public function formatLike($value, $pos) + { + $value = strtr($value, array("'" => "''", '\\' => '\\\\', '%' => '\\\\%', '_' => '\\\\_')); + return ($pos <= 0 ? "'%" : "'") . $value . ($pos >= 0 ? "%'" : "'"); + } + + + + /** + * Injects LIMIT/OFFSET to the SQL query. + */ + public function applyLimit(&$sql, $limit, $offset) + { + if ($limit >= 0) + $sql .= ' LIMIT ' . (int) $limit; + + if ($offset > 0) + $sql .= ' OFFSET ' . (int) $offset; + } + + + + /** + * Normalizes result row. + */ + public function normalizeRow($row, $statement) + { + return $row; + } + + + + /********************* reflection ****************d*g**/ + + + + /** + * Returns list of tables. + */ + public function getTables() + { + $tables = array(); + foreach ($this->connection->query(" + SELECT + table_name AS name, + table_type = 'VIEW' AS view + FROM + information_schema.tables + WHERE + table_schema = current_schema() + ") as $row) { + $tables[] = (array) $row; + } + + return $tables; + } + + + + /** + * Returns metadata for all columns in a table. + */ + public function getColumns($table) + { + $columns = array(); + foreach ($this->connection->query(" + SELECT + c.column_name AS name, + c.table_name AS table, + upper(c.udt_name) AS nativetype, + greatest(c.character_maximum_length, c.numeric_precision) AS size, + FALSE AS unsigned, + c.is_nullable = 'YES' AS nullable, + c.column_default AS default, + coalesce(tc.constraint_type = 'PRIMARY KEY', FALSE) AND strpos(c.column_default, 'nextval') = 1 AS autoincrement, + coalesce(tc.constraint_type = 'PRIMARY KEY', FALSE) AS primary + FROM + information_schema.columns AS c + LEFT JOIN information_schema.constraint_column_usage AS ccu USING(table_catalog, table_schema, table_name, column_name) + LEFT JOIN information_schema.table_constraints AS tc USING(constraint_catalog, constraint_schema, constraint_name) + WHERE + c.table_name = {$this->connection->quote($table)} + AND + c.table_schema = current_schema() + AND + (tc.constraint_type IS NULL OR tc.constraint_type = 'PRIMARY KEY') + ORDER BY + c.ordinal_position + ") as $row) { + $row['vendor'] = array(); + $columns[] = (array) $row; + } + + return $columns; + } + + + + /** + * Returns metadata for all indexes in a table. + */ + public function getIndexes($table) + { + /* There is no information about all indexes in information_schema, so pg catalog must be used */ + $indexes = array(); + foreach ($this->connection->query(" + SELECT + c2.relname AS name, + indisunique AS unique, + indisprimary AS primary, + attname AS column + FROM + pg_class AS c1 + JOIN pg_namespace ON c1.relnamespace = pg_namespace.oid + JOIN pg_index ON c1.oid = indrelid + JOIN pg_class AS c2 ON indexrelid = c2.oid + LEFT JOIN pg_attribute ON c1.oid = attrelid AND attnum = ANY(indkey) + WHERE + nspname = current_schema() + AND + c1.relkind = 'r' + AND + c1.relname = {$this->connection->quote($table)} + ") as $row) { + $indexes[$row['name']]['name'] = $row['name']; + $indexes[$row['name']]['unique'] = $row['unique']; + $indexes[$row['name']]['primary'] = $row['primary']; + $indexes[$row['name']]['columns'][] = $row['column']; + } + + return array_values($indexes); + } + + + + /** + * Returns metadata for all foreign keys in a table. + */ + public function getForeignKeys($table) + { + return $this->connection->query(" + SELECT tc.table_name AS name, kcu.column_name AS local, ccu.table_name AS table, ccu.column_name AS foreign + FROM information_schema.table_constraints AS tc + JOIN information_schema.key_column_usage AS kcu ON tc.constraint_name = kcu.constraint_name AND tc.constraint_schema = kcu.constraint_schema + JOIN information_schema.constraint_column_usage AS ccu ON ccu.constraint_name = tc.constraint_name AND ccu.constraint_schema = tc.constraint_schema + WHERE + constraint_type = 'FOREIGN KEY' AND + tc.table_name = {$this->connection->quote($table)} AND + tc.constraint_schema = current_schema() + ")->fetchAll(); + } + + + + /** + * @return bool + */ + public function isSupported($item) + { + return $item === self::META; + } + +} diff --git a/apigen/libs/Nette/Nette/Database/Drivers/Sqlite2Driver.php b/apigen/libs/Nette/Nette/Database/Drivers/Sqlite2Driver.php new file mode 100644 index 00000000000..2db3d72e4fe --- /dev/null +++ b/apigen/libs/Nette/Nette/Database/Drivers/Sqlite2Driver.php @@ -0,0 +1,68 @@ + $value) { + unset($row[$key]); + if ($key[0] === '[' || $key[0] === '"') { + $key = substr($key, 1, -1); + } + $row[$key] = $value; + } + return $row; + } + + + + /** + * Returns metadata for all foreign keys in a table. + */ + public function getForeignKeys($table) + { + throw new NotSupportedException; // @see http://www.sqlite.org/foreignkeys.html + } + +} diff --git a/apigen/libs/Nette/Nette/Database/Drivers/SqliteDriver.php b/apigen/libs/Nette/Nette/Database/Drivers/SqliteDriver.php new file mode 100644 index 00000000000..cf80bfa258b --- /dev/null +++ b/apigen/libs/Nette/Nette/Database/Drivers/SqliteDriver.php @@ -0,0 +1,232 @@ +connection = $connection; + $this->fmtDateTime = isset($options['formatDateTime']) ? $options['formatDateTime'] : 'U'; + //$connection->exec('PRAGMA foreign_keys = ON'); + } + + + + /********************* SQL ****************d*g**/ + + + + /** + * Delimites identifier for use in a SQL statement. + */ + public function delimite($name) + { + return '[' . strtr($name, '[]', ' ') . ']'; + } + + + + /** + * Formats date-time for use in a SQL statement. + */ + public function formatDateTime(\DateTime $value) + { + return $value->format($this->fmtDateTime); + } + + + + /** + * Encodes string for use in a LIKE statement. + */ + public function formatLike($value, $pos) + { + $value = addcslashes(substr($this->connection->quote($value), 1, -1), '%_\\'); + return ($pos <= 0 ? "'%" : "'") . $value . ($pos >= 0 ? "%'" : "'") . " ESCAPE '\\'"; + } + + + + /** + * Injects LIMIT/OFFSET to the SQL query. + */ + public function applyLimit(&$sql, $limit, $offset) + { + if ($limit >= 0 || $offset > 0) { + $sql .= ' LIMIT ' . $limit . ($offset > 0 ? ' OFFSET ' . (int) $offset : ''); + } + } + + + + /** + * Normalizes result row. + */ + public function normalizeRow($row, $statement) + { + return $row; + } + + + + /********************* reflection ****************d*g**/ + + + + /** + * Returns list of tables. + */ + public function getTables() + { + return $this->connection->query(" + SELECT name, type = 'view' as view FROM sqlite_master WHERE type IN ('table', 'view') + UNION ALL + SELECT name, type = 'view' as view FROM sqlite_temp_master WHERE type IN ('table', 'view') + ORDER BY name + ")->fetchAll(); + } + + + + /** + * Returns metadata for all columns in a table. + */ + public function getColumns($table) + { + $meta = $this->connection->query(" + SELECT sql FROM sqlite_master WHERE type = 'table' AND name = {$this->connection->quote($table)} + UNION ALL + SELECT sql FROM sqlite_temp_master WHERE type = 'table' AND name = {$this->connection->quote($table)} + ")->fetch(); + + $columns = array(); + foreach ($this->connection->query("PRAGMA table_info({$this->delimite($table)})") as $row) { + $column = $row['name']; + $pattern = "/(\"$column\"|\[$column\]|$column)\s+[^,]+\s+PRIMARY\s+KEY\s+AUTOINCREMENT/Ui"; + $type = explode('(', $row['type']); + $columns[] = array( + 'name' => $column, + 'table' => $table, + 'fullname' => "$table.$column", + 'nativetype' => strtoupper($type[0]), + 'size' => isset($type[1]) ? (int) $type[1] : NULL, + 'nullable' => $row['notnull'] == '0', + 'default' => $row['dflt_value'], + 'autoincrement' => (bool) preg_match($pattern, $meta['sql']), + 'primary' => $row['pk'] == '1', + 'vendor' => (array) $row, + ); + } + return $columns; + } + + + + /** + * Returns metadata for all indexes in a table. + */ + public function getIndexes($table) + { + $indexes = array(); + foreach ($this->connection->query("PRAGMA index_list({$this->delimite($table)})") as $row) { + $indexes[$row['name']]['name'] = $row['name']; + $indexes[$row['name']]['unique'] = (bool) $row['unique']; + } + + foreach ($indexes as $index => $values) { + $res = $this->connection->query("PRAGMA index_info({$this->delimite($index)})"); + while ($row = $res->fetch(TRUE)) { + $indexes[$index]['columns'][$row['seqno']] = $row['name']; + } + } + + $columns = $this->getColumns($table); + foreach ($indexes as $index => $values) { + $column = $indexes[$index]['columns'][0]; + $primary = FALSE; + foreach ($columns as $info) { + if ($column == $info['name']) { + $primary = $info['primary']; + break; + } + } + $indexes[$index]['primary'] = (bool) $primary; + } + if (!$indexes) { // @see http://www.sqlite.org/lang_createtable.html#rowid + foreach ($columns as $column) { + if ($column['vendor']['pk']) { + $indexes[] = array( + 'name' => 'ROWID', + 'unique' => TRUE, + 'primary' => TRUE, + 'columns' => array($column['name']), + ); + break; + } + } + } + + return array_values($indexes); + } + + + + /** + * Returns metadata for all foreign keys in a table. + */ + public function getForeignKeys($table) + { + $keys = array(); + foreach ($this->connection->query("PRAGMA foreign_key_list({$this->delimite($table)})") as $row) { + $keys[$row['id']]['name'] = $row['id']; // foreign key name + $keys[$row['id']]['local'][$row['seq']] = $row['from']; // local columns + $keys[$row['id']]['table'] = $row['table']; // referenced table + $keys[$row['id']]['foreign'][$row['seq']] = $row['to']; // referenced columns + $keys[$row['id']]['onDelete'] = $row['on_delete']; + $keys[$row['id']]['onUpdate'] = $row['on_update']; + + if ($keys[$row['id']]['foreign'][0] == NULL) { + $keys[$row['id']]['foreign'] = NULL; + } + } + return array_values($keys); + } + + + + /** + * @return bool + */ + public function isSupported($item) + { + return FALSE; + } + +} diff --git a/apigen/libs/Nette/Nette/Database/Helpers.php b/apigen/libs/Nette/Nette/Database/Helpers.php new file mode 100644 index 00000000000..646447e4920 --- /dev/null +++ b/apigen/libs/Nette/Nette/Database/Helpers.php @@ -0,0 +1,173 @@ + IReflection::FIELD_TEXT, // PostgreSQL arrays + 'BYTEA|BLOB|BIN' => IReflection::FIELD_BINARY, + 'TEXT|CHAR' => IReflection::FIELD_TEXT, + 'YEAR|BYTE|COUNTER|SERIAL|INT|LONG' => IReflection::FIELD_INTEGER, + 'CURRENCY|REAL|MONEY|FLOAT|DOUBLE|DECIMAL|NUMERIC|NUMBER' => IReflection::FIELD_FLOAT, + '^TIME$' => IReflection::FIELD_TIME, + 'TIME' => IReflection::FIELD_DATETIME, // DATETIME, TIMESTAMP + 'DATE' => IReflection::FIELD_DATE, + 'BOOL|BIT' => IReflection::FIELD_BOOL, + ); + + + + /** + * Displays complete result set as HTML table for debug purposes. + * @return void + */ + public static function dumpResult(Statement $statement) + { + echo "\n\n\n"; + if (!$statement->columnCount()) { + echo "\t\n\t\t\n\t\t\n\t\n
" . htmlSpecialChars($statement->queryString) . "
Affected rows:", $statement->rowCount(), "
\n"; + return; + } + $i = 0; + foreach ($statement as $row) { + if ($i === 0) { + echo "\n\t\n\t\t#row\n"; + foreach ($row as $col => $foo) { + echo "\t\t" . htmlSpecialChars($col) . "\n"; + } + echo "\t\n\n\n"; + } + echo "\t\n\t\t", $i, "\n"; + foreach ($row as $col) { + //if (is_object($col)) $col = $col->__toString(); + echo "\t\t", htmlSpecialChars($col), "\n"; + } + echo "\t\n"; + $i++; + } + + if ($i === 0) { + echo "\t\n\t\tempty result set\n\t\n\n"; + } else { + echo "\n\n"; + } + } + + + + /** + * Returns syntax highlighted SQL command. + * @param string + * @return string + */ + public static function dumpSql($sql) + { + static $keywords1 = 'SELECT|(?:ON\s+DUPLICATE\s+KEY)?UPDATE|INSERT(?:\s+INTO)?|REPLACE(?:\s+INTO)?|DELETE|CALL|UNION|FROM|WHERE|HAVING|GROUP\s+BY|ORDER\s+BY|LIMIT|OFFSET|SET|VALUES|LEFT\s+JOIN|INNER\s+JOIN|TRUNCATE'; + static $keywords2 = 'ALL|DISTINCT|DISTINCTROW|IGNORE|AS|USING|ON|AND|OR|IN|IS|NOT|NULL|LIKE|RLIKE|REGEXP|TRUE|FALSE'; + + // insert new lines + $sql = " $sql "; + $sql = preg_replace("#(?<=[\\s,(])($keywords1)(?=[\\s,)])#i", "\n\$1", $sql); + + // reduce spaces + $sql = preg_replace('#[ \t]{2,}#', " ", $sql); + + $sql = wordwrap($sql, 100); + $sql = preg_replace("#([ \t]*\r?\n){2,}#", "\n", $sql); + + // syntax highlight + $sql = htmlSpecialChars($sql); + $sql = preg_replace_callback("#(/\\*.+?\\*/)|(\\*\\*.+?\\*\\*)|(?<=[\\s,(])($keywords1)(?=[\\s,)])|(?<=[\\s,(=])($keywords2)(?=[\\s,)=])#is", function($matches) { + if (!empty($matches[1])) // comment + return '' . $matches[1] . ''; + + if (!empty($matches[2])) // error + return '' . $matches[2] . ''; + + if (!empty($matches[3])) // most important keywords + return '' . $matches[3] . ''; + + if (!empty($matches[4])) // other keywords + return '' . $matches[4] . ''; + }, $sql); + + return '
' . trim($sql) . "
\n"; + } + + + + /** + * Heuristic type detection. + * @param string + * @return string + * @internal + */ + public static function detectType($type) + { + static $cache; + if (!isset($cache[$type])) { + $cache[$type] = 'string'; + foreach (self::$typePatterns as $s => $val) { + if (preg_match("#$s#i", $type)) { + return $cache[$type] = $val; + } + } + } + return $cache[$type]; + } + + + + /** + * Import SQL dump from file - extreme fast. + * @return int count of commands + */ + public static function loadFromFile(Connection $connection, $file) + { + @set_time_limit(0); // intentionally @ + + $handle = @fopen($file, 'r'); // intentionally @ + if (!$handle) { + throw new Nette\FileNotFoundException("Cannot open file '$file'."); + } + + $count = 0; + $sql = ''; + while (!feof($handle)) { + $s = fgets($handle); + $sql .= $s; + if (substr(rtrim($s), -1) === ';') { + $connection->exec($sql); // native query without logging + $sql = ''; + $count++; + } + } + if (trim($sql) !== '') { + $connection->exec($sql); + $count++; + } + fclose($handle); + return $count; + } + +} diff --git a/apigen/libs/Nette/Nette/Database/IReflection.php b/apigen/libs/Nette/Nette/Database/IReflection.php new file mode 100644 index 00000000000..1735b478083 --- /dev/null +++ b/apigen/libs/Nette/Nette/Database/IReflection.php @@ -0,0 +1,69 @@ +, %2$s for table name + * @param string %1$s stands for key used after ->, %2$s for table name + */ + public function __construct($primary = 'id', $foreign = '%s_id', $table = '%s') + { + $this->primary = $primary; + $this->foreign = $foreign; + $this->table = $table; + } + + + + public function getPrimary($table) + { + return sprintf($this->primary, $this->getColumnFromTable($table)); + } + + + + public function getHasManyReference($table, $key) + { + $table = $this->getColumnFromTable($table); + return array( + sprintf($this->table, $key, $table), + sprintf($this->foreign, $table, $key), + ); + } + + + + public function getBelongsToReference($table, $key) + { + $table = $this->getColumnFromTable($table); + return array( + sprintf($this->table, $key, $table), + sprintf($this->foreign, $key, $table), + ); + } + + + + public function setConnection(Nette\Database\Connection $connection) + {} + + + + protected function getColumnFromTable($name) + { + if ($this->table !== '%s' && preg_match('(^' . str_replace('%s', '(.*)', preg_quote($this->table)) . '$)', $name, $match)) { + return $match[1]; + } + + return $name; + } + +} diff --git a/apigen/libs/Nette/Nette/Database/Reflection/DiscoveredReflection.php b/apigen/libs/Nette/Nette/Database/Reflection/DiscoveredReflection.php new file mode 100644 index 00000000000..aaabbd72be0 --- /dev/null +++ b/apigen/libs/Nette/Nette/Database/Reflection/DiscoveredReflection.php @@ -0,0 +1,194 @@ +cacheStorage = $storage; + } + + + + public function setConnection(Nette\Database\Connection $connection) + { + $this->connection = $connection; + if ($this->cacheStorage) { + $this->cache = new Nette\Caching\Cache($this->cacheStorage, 'Nette.Database.' . md5($connection->getDsn())); + $this->structure = $this->cache->load('structure') ?: $this->structure; + } + } + + + + public function __destruct() + { + if ($this->cache) { + $this->cache->save('structure', $this->structure); + } + } + + + + public function getPrimary($table) + { + $primary = & $this->structure['primary'][strtolower($table)]; + if (isset($primary)) { + return empty($primary) ? NULL : $primary; + } + + $columns = $this->connection->getSupplementalDriver()->getColumns($table); + $primaryCount = 0; + foreach ($columns as $column) { + if ($column['primary']) { + $primary = $column['name']; + $primaryCount++; + } + } + + if ($primaryCount !== 1) { + $primary = ''; + return NULL; + } + + return $primary; + } + + + + public function getHasManyReference($table, $key, $refresh = TRUE) + { + $table = strtolower($table); + $reference = & $this->structure['hasMany']; + if (!empty($reference[$table])) { + $candidates = array(); + $subStringCandidatesCount = 0; + foreach ($reference[$table] as $targetPair) { + list($targetColumn, $targetTable) = $targetPair; + if (stripos($targetTable, $key) !== FALSE) { + $candidates[] = array($targetTable, $targetColumn); + if (stripos($targetColumn, $table) !== FALSE) { + $subStringCandidatesCount++; + $candidate = array($targetTable, $targetColumn); + if ($targetTable === $key) { + $candidates = array($candidate); + break; + } + } + } + } + + if (count($candidates) === 1) { + return $candidates[0]; + } elseif ($subStringCandidatesCount === 1) { + return $candidate; + } elseif (!empty($candidates)) { + throw new \PDOException('Ambiguous joining column in related call.'); + } + } + + if (!$refresh) { + throw new \PDOException("No reference found for \${$table}->related({$key})."); + } + + $this->reloadAllForeignKeys(); + return $this->getHasManyReference($table, $key, FALSE); + } + + + + public function getBelongsToReference($table, $key, $refresh = TRUE) + { + $table = strtolower($table); + $reference = & $this->structure['belongsTo']; + if (!empty($reference[$table])) { + foreach ($reference[$table] as $column => $targetTable) { + if (stripos($column, $key) !== FALSE) { + return array( + $targetTable, + $column, + ); + } + } + } + + if (!$refresh) { + throw new \PDOException("No reference found for \${$table}->{$key}."); + } + + $this->reloadForeignKeys($table); + return $this->getBelongsToReference($table, $key, FALSE); + } + + + + protected function reloadAllForeignKeys() + { + foreach ($this->connection->getSupplementalDriver()->getTables() as $table) { + if ($table['view'] == FALSE) { + $this->reloadForeignKeys($table['name']); + } + } + + foreach (array_keys($this->structure['hasMany']) as $table) { + uksort($this->structure['hasMany'][$table], function($a, $b) { + return strlen($a) - strlen($b); + }); + } + } + + + + protected function reloadForeignKeys($table) + { + foreach ($this->connection->getSupplementalDriver()->getForeignKeys($table) as $row) { + $this->structure['belongsTo'][$table][$row['local']] = $row['table']; + $this->structure['hasMany'][strtolower($row['table'])][$row['local'] . $table] = array($row['local'], $table); + } + + if (isset($this->structure['belongsTo'][$table])) { + uksort($this->structure['belongsTo'][$table], function($a, $b) { + return strlen($a) - strlen($b); + }); + } + } + +} diff --git a/apigen/libs/Nette/Nette/Database/Row.php b/apigen/libs/Nette/Nette/Database/Row.php new file mode 100644 index 00000000000..aa39e4cacdd --- /dev/null +++ b/apigen/libs/Nette/Nette/Database/Row.php @@ -0,0 +1,47 @@ +normalizeRow($this); + } + + + + /** + * Returns a item. + * @param mixed key or index + * @return mixed + */ + public function offsetGet($key) + { + if (is_int($key)) { + $arr = array_values((array) $this); + return $arr[$key]; + } + return $this->$key; + } + +} diff --git a/apigen/libs/Nette/Nette/Database/SqlLiteral.php b/apigen/libs/Nette/Nette/Database/SqlLiteral.php new file mode 100644 index 00000000000..14144f716c7 --- /dev/null +++ b/apigen/libs/Nette/Nette/Database/SqlLiteral.php @@ -0,0 +1,44 @@ +value = (string) $value; + } + + + + /** + * @return string + */ + public function __toString() + { + return $this->value; + } + +} diff --git a/apigen/libs/Nette/Nette/Database/SqlPreprocessor.php b/apigen/libs/Nette/Nette/Database/SqlPreprocessor.php new file mode 100644 index 00000000000..6e6451d9733 --- /dev/null +++ b/apigen/libs/Nette/Nette/Database/SqlPreprocessor.php @@ -0,0 +1,163 @@ +connection = $connection; + $this->driver = $connection->getSupplementalDriver(); + } + + + + /** + * @param string + * @param array + * @return array of [sql, params] + */ + public function process($sql, $params) + { + $this->params = $params; + $this->counter = 0; + $this->remaining = array(); + $this->arrayMode = 'assoc'; + + $sql = Nette\Utils\Strings::replace($sql, '~\'.*?\'|".*?"|\?|\b(?:INSERT|REPLACE|UPDATE)\b~si', array($this, 'callback')); + + while ($this->counter < count($params)) { + $sql .= ' ' . $this->formatValue($params[$this->counter++]); + } + + return array($sql, $this->remaining); + } + + + + /** @internal */ + public function callback($m) + { + $m = $m[0]; + if ($m[0] === "'" || $m[0] === '"') { // string + return $m; + + } elseif ($m === '?') { // placeholder + return $this->formatValue($this->params[$this->counter++]); + + } else { // INSERT, REPLACE, UPDATE + $this->arrayMode = strtoupper($m) === 'UPDATE' ? 'assoc' : 'values'; + return $m; + } + } + + + + private function formatValue($value) + { + if (is_string($value)) { + if (strlen($value) > 20) { + $this->remaining[] = $value; + return '?'; + + } else { + return $this->connection->quote($value); + } + + } elseif (is_int($value)) { + return (string) $value; + + } elseif (is_float($value)) { + return rtrim(rtrim(number_format($value, 10, '.', ''), '0'), '.'); + + } elseif (is_bool($value)) { + $this->remaining[] = $value; + return '?'; + + } elseif ($value === NULL) { + return 'NULL'; + + } elseif ($value instanceof Table\ActiveRow) { + return $value->getPrimary(); + + } elseif (is_array($value) || $value instanceof \Traversable) { + $vx = $kx = array(); + + if (isset($value[0])) { // non-associative; value, value, value + foreach ($value as $v) { + $vx[] = $this->formatValue($v); + } + return implode(', ', $vx); + + } elseif ($this->arrayMode === 'values') { // (key, key, ...) VALUES (value, value, ...) + $this->arrayMode = 'multi'; + foreach ($value as $k => $v) { + $kx[] = $this->driver->delimite($k); + $vx[] = $this->formatValue($v); + } + return '(' . implode(', ', $kx) . ') VALUES (' . implode(', ', $vx) . ')'; + + } elseif ($this->arrayMode === 'assoc') { // key=value, key=value, ... + foreach ($value as $k => $v) { + $vx[] = $this->driver->delimite($k) . '=' . $this->formatValue($v); + } + return implode(', ', $vx); + + } elseif ($this->arrayMode === 'multi') { // multiple insert (value, value, ...), ... + foreach ($value as $k => $v) { + $vx[] = $this->formatValue($v); + } + return '(' . implode(', ', $vx) . ')'; + } + + } elseif ($value instanceof \DateTime) { + return $this->driver->formatDateTime($value); + + } elseif ($value instanceof SqlLiteral) { + return $value->__toString(); + + } else { + $this->remaining[] = $value; + return '?'; + } + } + +} diff --git a/apigen/libs/Nette/Nette/Database/Statement.php b/apigen/libs/Nette/Nette/Database/Statement.php new file mode 100644 index 00000000000..4ad5ae46c35 --- /dev/null +++ b/apigen/libs/Nette/Nette/Database/Statement.php @@ -0,0 +1,221 @@ +connection = $connection; + $this->setFetchMode(PDO::FETCH_CLASS, 'Nette\Database\Row', array($this)); + } + + + + /** + * @return Connection + */ + public function getConnection() + { + return $this->connection; + } + + + + /** + * Executes statement. + * @param array + * @return Statement provides a fluent interface + */ + public function execute($params = array()) + { + static $types = array('boolean' => PDO::PARAM_BOOL, 'integer' => PDO::PARAM_INT, + 'resource' => PDO::PARAM_LOB, 'NULL' => PDO::PARAM_NULL); + + foreach ($params as $key => $value) { + $type = gettype($value); + $this->bindValue(is_int($key) ? $key + 1 : $key, $value, isset($types[$type]) ? $types[$type] : PDO::PARAM_STR); + } + + $time = microtime(TRUE); + try { + parent::execute(); + } catch (\PDOException $e) { + $e->queryString = $this->queryString; + throw $e; + } + $this->time = microtime(TRUE) - $time; + $this->connection->__call('onQuery', array($this, $params)); // $this->connection->onQuery() in PHP 5.3 + + return $this; + } + + + + /** + * Fetches into an array where the 1st column is a key and all subsequent columns are values. + * @return array + */ + public function fetchPairs() + { + return $this->fetchAll(PDO::FETCH_KEY_PAIR); // since PHP 5.2.3 + } + + + + /** + * Normalizes result row. + * @param array + * @return array + */ + public function normalizeRow($row) + { + foreach ($this->detectColumnTypes() as $key => $type) { + $value = $row[$key]; + if ($value === NULL || $value === FALSE || $type === IReflection::FIELD_TEXT) { + + } elseif ($type === IReflection::FIELD_INTEGER) { + $row[$key] = is_float($tmp = $value * 1) ? $value : $tmp; + + } elseif ($type === IReflection::FIELD_FLOAT) { + $row[$key] = (string) ($tmp = (float) $value) === $value ? $tmp : $value; + + } elseif ($type === IReflection::FIELD_BOOL) { + $row[$key] = ((bool) $value) && $value !== 'f' && $value !== 'F'; + + } elseif ($type === IReflection::FIELD_DATETIME || $type === IReflection::FIELD_DATE || $type === IReflection::FIELD_TIME) { + $row[$key] = new Nette\DateTime($value); + + } + } + + return $this->connection->getSupplementalDriver()->normalizeRow($row, $this); + } + + + + private function detectColumnTypes() + { + if ($this->types === NULL) { + $this->types = array(); + if ($this->connection->getSupplementalDriver()->isSupported(ISupplementalDriver::META)) { // workaround for PHP bugs #53782, #54695 + $col = 0; + while ($meta = $this->getColumnMeta($col++)) { + if (isset($meta['native_type'])) { + $this->types[$meta['name']] = Helpers::detectType($meta['native_type']); + } + } + } + } + return $this->types; + } + + + + /** + * @return float + */ + public function getTime() + { + return $this->time; + } + + + + /********************* misc tools ****************d*g**/ + + + + /** + * Displays complete result set as HTML table for debug purposes. + * @return void + */ + public function dump() + { + Helpers::dumpResult($this); + } + + + + /********************* Nette\Object behaviour ****************d*g**/ + + + + /** + * @return Nette\Reflection\ClassType + */ + public /**/static/**/ function getReflection() + { + return new Nette\Reflection\ClassType(/*5.2*$this*//**/get_called_class()/**/); + } + + + + public function __call($name, $args) + { + return ObjectMixin::call($this, $name, $args); + } + + + + public function &__get($name) + { + return ObjectMixin::get($this, $name); + } + + + + public function __set($name, $value) + { + return ObjectMixin::set($this, $name, $value); + } + + + + public function __isset($name) + { + return ObjectMixin::has($this, $name); + } + + + + public function __unset($name) + { + ObjectMixin::remove($this, $name); + } + +} diff --git a/apigen/libs/Nette/Nette/Database/Table/ActiveRow.php b/apigen/libs/Nette/Nette/Database/Table/ActiveRow.php new file mode 100644 index 00000000000..1e565cc75c4 --- /dev/null +++ b/apigen/libs/Nette/Nette/Database/Table/ActiveRow.php @@ -0,0 +1,316 @@ +data = $data; + $this->table = $table; + } + + + + /** + * @internal + * @ignore + */ + public function setTable(Selection $table) + { + $this->table = $table; + } + + + + /** + * @internal + * @ignore + */ + public function getTable() + { + return $this->table; + } + + + + public function __toString() + { + try { + return (string) $this->getPrimary(); + } catch (\Exception $e) { + Nette\Diagnostics\Debugger::toStringException($e); + } + } + + + + /** + * @return array + */ + public function toArray() + { + $this->access(NULL); + return $this->data; + } + + + + /** + * Returns primary key value. + * @return mixed + */ + public function getPrimary() + { + if (!isset($this->data[$this->table->getPrimary()])) { + throw new Nette\NotSupportedException("Table {$this->table->getName()} does not have any primary key."); + } + return $this[$this->table->getPrimary()]; + } + + + + /** + * Returns referenced row. + * @param string + * @param string + * @return ActiveRow or NULL if the row does not exist + */ + public function ref($key, $throughColumn = NULL) + { + if (!$throughColumn) { + list($key, $throughColumn) = $this->table->getConnection()->getDatabaseReflection()->getBelongsToReference($this->table->getName(), $key); + } + + return $this->getReference($key, $throughColumn); + } + + + + /** + * Returns referencing rows. + * @param string + * @param string + * @return GroupedSelection + */ + public function related($key, $throughColumn = NULL) + { + if (strpos($key, '.') !== FALSE) { + list($key, $throughColumn) = explode('.', $key); + } elseif (!$throughColumn) { + list($key, $throughColumn) = $this->table->getConnection()->getDatabaseReflection()->getHasManyReference($this->table->getName(), $key); + } + + return $this->table->getReferencingTable($key, $throughColumn, $this[$this->table->getPrimary()]); + } + + + + /** + * Updates row. + * @param array or NULL for all modified values + * @return int number of affected rows or FALSE in case of an error + */ + public function update($data = NULL) + { + if ($data === NULL) { + $data = $this->modified; + } + return $this->table->getConnection()->table($this->table->getName()) + ->where($this->table->getPrimary(), $this[$this->table->getPrimary()]) + ->update($data); + } + + + + /** + * Deletes row. + * @return int number of affected rows or FALSE in case of an error + */ + public function delete() + { + return $this->table->getConnection()->table($this->table->getName()) + ->where($this->table->getPrimary(), $this[$this->table->getPrimary()]) + ->delete(); + } + + + + /********************* interface IteratorAggregate ****************d*g**/ + + + + public function getIterator() + { + $this->access(NULL); + return new \ArrayIterator($this->data); + } + + + + /********************* interface ArrayAccess & magic accessors ****************d*g**/ + + + + /** + * Stores value in column. + * @param string column name + * @param string value + * @return void + */ + public function offsetSet($key, $value) + { + $this->__set($key, $value); + } + + + + /** + * Returns value of column. + * @param string column name + * @return string + */ + public function offsetGet($key) + { + return $this->__get($key); + } + + + + /** + * Tests if column exists. + * @param string column name + * @return bool + */ + public function offsetExists($key) + { + return $this->__isset($key); + } + + + + /** + * Removes column from data. + * @param string column name + * @return void + */ + public function offsetUnset($key) + { + $this->__unset($key); + } + + + + public function __set($key, $value) + { + $this->data[$key] = $value; + $this->modified[$key] = $value; + } + + + + public function &__get($key) + { + $this->access($key); + if (array_key_exists($key, $this->data)) { + return $this->data[$key]; + } + + list($table, $column) = $this->table->getConnection()->getDatabaseReflection()->getBelongsToReference($this->table->getName(), $key); + $referenced = $this->getReference($table, $column); + if ($referenced !== FALSE) { + $this->access($key, FALSE); + return $referenced; + } + + $this->access($key, NULL); + throw new Nette\MemberAccessException("Cannot read an undeclared column \"$key\"."); + } + + + + public function __isset($key) + { + $this->access($key); + if (array_key_exists($key, $this->data)) { + return isset($this->data[$key]); + } + $this->access($key, NULL); + return FALSE; + } + + + + public function __unset($key) + { + unset($this->data[$key]); + unset($this->modified[$key]); + } + + + + /** + * @internal + */ + public function access($key, $cache = TRUE) + { + if ($this->table->getConnection()->getCache() && !isset($this->modified[$key]) && $this->table->access($key, $cache)) { + $id = (isset($this->data[$this->table->getPrimary()]) ? $this->data[$this->table->getPrimary()] : $this->data); + $this->data = $this->table[$id]->data; + } + } + + + + protected function getReference($table, $column) + { + if (array_key_exists($column, $this->data)) { + $this->access($column); + + $value = $this->data[$column]; + $value = $value instanceof ActiveRow ? $value->getPrimary() : $value; + + $referenced = $this->table->getReferencedTable($table, $column, !empty($this->modified[$column])); + $referenced = isset($referenced[$value]) ? $referenced[$value] : NULL; // referenced row may not exist + + if (!empty($this->modified[$column])) { // cause saving changed column and prevent regenerating referenced table for $column + $this->modified[$column] = 0; // 0 fails on empty, pass on isset + } + + return $referenced; + } + + return FALSE; + } + +} diff --git a/apigen/libs/Nette/Nette/Database/Table/GroupedSelection.php b/apigen/libs/Nette/Nette/Database/Table/GroupedSelection.php new file mode 100644 index 00000000000..7d92eff048c --- /dev/null +++ b/apigen/libs/Nette/Nette/Database/Table/GroupedSelection.php @@ -0,0 +1,257 @@ +connection); + $this->refTable = $refTable; + $this->column = $column; + } + + + + /** + * Sets active group + * @internal + * @param int primary key of grouped rows + * @return GroupedSelection + */ + public function setActive($active) + { + $this->active = $active; + return $this; + } + + + + /** @deprecated */ + public function through($column) + { + trigger_error(__METHOD__ . '() is deprecated; use ' . __CLASS__ . '::related("' . $this->name . '", "' . $column . '") instead.', E_USER_WARNING); + $this->column = $column; + $this->delimitedColumn = $this->refTable->connection->getSupplementalDriver()->delimite($this->column); + return $this; + } + + + + public function select($columns) + { + if (!$this->sqlBuilder->getSelect()) { + $this->sqlBuilder->addSelect("$this->name.$this->column"); + } + + return parent::select($columns); + } + + + + public function order($columns) + { + if (!$this->sqlBuilder->getOrder()) { + // improve index utilization + $this->sqlBuilder->addOrder("$this->name.$this->column" . (preg_match('~\\bDESC$~i', $columns) ? ' DESC' : '')); + } + + return parent::order($columns); + } + + + + /********************* aggregations ****************d*g**/ + + + + public function aggregation($function) + { + $aggregation = & $this->getRefTable($refPath)->aggregation[$refPath . $function . $this->sqlBuilder->buildSelectQuery() . json_encode($this->sqlBuilder->getParameters())]; + + if ($aggregation === NULL) { + $aggregation = array(); + + $selection = $this->createSelectionInstance(); + $selection->getSqlBuilder()->importConditions($this->getSqlBuilder()); + $selection->select($function); + $selection->select("$this->name.$this->column"); + $selection->group("$this->name.$this->column"); + + foreach ($selection as $row) { + $aggregation[$row[$this->column]] = $row; + } + } + + if (isset($aggregation[$this->active])) { + foreach ($aggregation[$this->active] as $val) { + return $val; + } + } + } + + + + public function count($column = NULL) + { + $return = parent::count($column); + return isset($return) ? $return : 0; + } + + + + /********************* internal ****************d*g**/ + + + + protected function execute() + { + if ($this->rows !== NULL) { + return; + } + + $hash = md5($this->sqlBuilder->buildSelectQuery() . json_encode($this->sqlBuilder->getParameters())); + + $referencing = & $this->getRefTable($refPath)->referencing[$refPath . $hash]; + $this->rows = & $referencing['rows']; + $this->referenced = & $referencing['refs']; + $this->accessed = & $referencing['accessed']; + $refData = & $referencing['data']; + + if ($refData === NULL) { + $limit = $this->sqlBuilder->getLimit(); + $rows = count($this->refTable->rows); + if ($limit && $rows > 1) { + $this->sqlBuilder->setLimit(NULL, NULL); + } + parent::execute(); + $this->sqlBuilder->setLimit($limit, NULL); + $refData = array(); + $offset = array(); + foreach ($this->rows as $key => $row) { + $ref = & $refData[$row[$this->column]]; + $skip = & $offset[$row[$this->column]]; + if ($limit === NULL || $rows <= 1 || (count($ref) < $limit && $skip >= $this->sqlBuilder->getOffset())) { + $ref[$key] = $row; + } else { + unset($this->rows[$key]); + } + $skip++; + unset($ref, $skip); + } + } + + $this->data = & $refData[$this->active]; + if ($this->data === NULL) { + $this->data = array(); + } else { + foreach ($this->data as $row) { + $row->setTable($this); // injects correct parent GroupedSelection + } + reset($this->data); + } + } + + + + protected function getRefTable(& $refPath) + { + $refObj = $this->refTable; + $refPath = $this->name . '.'; + while ($refObj instanceof GroupedSelection) { + $refPath .= $refObj->name . '.'; + $refObj = $refObj->refTable; + } + + return $refObj; + } + + + + /********************* manipulation ****************d*g**/ + + + + public function insert($data) + { + if ($data instanceof \Traversable && !$data instanceof Selection) { + $data = iterator_to_array($data); + } + + if (Nette\Utils\Validators::isList($data)) { + foreach (array_keys($data) as $key) { + $data[$key][$this->column] = $this->active; + } + } else { + $data[$this->column] = $this->active; + } + + return parent::insert($data); + } + + + + public function update($data) + { + $builder = $this->sqlBuilder; + + $this->sqlBuilder = new SqlBuilder($this); + $this->where($this->column, $this->active); + $return = parent::update($data); + + $this->sqlBuilder = $builder; + return $return; + } + + + + public function delete() + { + $builder = $this->sqlBuilder; + + $this->sqlBuilder = new SqlBuilder($this); + $this->where($this->column, $this->active); + $return = parent::delete(); + + $this->sqlBuilder = $builder; + return $return; + } + +} diff --git a/apigen/libs/Nette/Nette/Database/Table/Selection.php b/apigen/libs/Nette/Nette/Database/Table/Selection.php new file mode 100644 index 00000000000..efc21d9ab96 --- /dev/null +++ b/apigen/libs/Nette/Nette/Database/Table/Selection.php @@ -0,0 +1,787 @@ + ActiveRow] format */ + protected $rows; + + /** @var ActiveRow[] modifiable data in [primary key => ActiveRow] format */ + protected $data; + + /** @var Selection[] */ + protected $referenced = array(); + + /** @var array of [sqlQuery-hash => grouped data]; used by GroupedSelection */ + protected $referencing = array(); + + /** @var GroupedSelection[] cached array of GroupedSelection prototypes */ + protected $referencingPrototype = array(); + + /** @var array of [conditions => [key => ActiveRow]]; used by GroupedSelection */ + protected $aggregation = array(); + + /** @var array of touched columns */ + protected $accessed; + + /** @var array of earlier touched columns */ + protected $prevAccessed; + + /** @var bool should instance observe accessed columns caching */ + protected $observeCache = FALSE; + + /** @var bool recheck referencing keys */ + protected $checkReferenced = FALSE; + + /** @var array of primary key values */ + protected $keys = array(); + + + + /** + * Creates filtered table representation. + * @param string database table name + * @param Nette\Database\Connection + */ + public function __construct($table, Nette\Database\Connection $connection) + { + $this->name = $table; + $this->connection = $connection; + $this->primary = $connection->getDatabaseReflection()->getPrimary($table); + $this->sqlBuilder = new SqlBuilder($this); + } + + + + public function __destruct() + { + $this->saveCacheState(); + } + + + + public function __clone() + { + $this->sqlBuilder = clone $this->sqlBuilder; + $this->sqlBuilder->setSelection($this); + } + + + + /** + * @return Nette\Database\Connection + */ + public function getConnection() + { + return $this->connection; + } + + + + /** + * @return string + */ + public function getName() + { + return $this->name; + } + + + + /** + * @return string + */ + public function getPrimary() + { + return $this->primary; + } + + + + /** + * @return string + */ + public function getSql() + { + return $this->sqlBuilder->buildSelectQuery(); + } + + + + /** + * Loads cache of previous accessed columns and returns it + * @internal + * @return array|false + */ + public function getPreviousAccessed() + { + $cache = $this->connection->getCache(); + if ($this->rows === NULL && $cache && !is_string($this->prevAccessed)) { + $this->accessed = $this->prevAccessed = $cache->load(array(__CLASS__, $this->name, $this->sqlBuilder->getConditions())); + } + + return $this->prevAccessed; + } + + + + /** + * @internal + * @return SqlBuilder + */ + public function getSqlBuilder() + { + return $this->sqlBuilder; + } + + + + /********************* quick access ****************d*g**/ + + + + /** + * Returns row specified by primary key. + * @param mixed primary key + * @return ActiveRow or FALSE if there is no such row + */ + public function get($key) + { + $clone = clone $this; + $clone->where($this->primary, $key); + return $clone->fetch(); + } + + + + /** + * Returns next row of result. + * @return ActiveRow or FALSE if there is no row + */ + public function fetch() + { + $this->execute(); + $return = current($this->data); + next($this->data); + return $return; + } + + + + /** + * Returns all rows as associative array. + * @param string + * @param string column name used for an array value or NULL for the whole row + * @return array + */ + public function fetchPairs($key, $value = NULL) + { + $return = array(); + foreach ($this as $row) { + $return[is_object($row[$key]) ? (string) $row[$key] : $row[$key]] = ($value ? $row[$value] : $row); + } + return $return; + } + + + + /********************* sql selectors ****************d*g**/ + + + + /** + * Adds select clause, more calls appends to the end. + * @param string for example "column, MD5(column) AS column_md5" + * @return Selection provides a fluent interface + */ + public function select($columns) + { + $this->emptyResultSet(); + $this->sqlBuilder->addSelect($columns); + return $this; + } + + + + /** + * Selects by primary key. + * @param mixed + * @return Selection provides a fluent interface + */ + public function find($key) + { + return $this->where($this->primary, $key); + } + + + + /** + * Adds where condition, more calls appends with AND. + * @param string condition possibly containing ? + * @param mixed + * @param mixed ... + * @return Selection provides a fluent interface + */ + public function where($condition, $parameters = array()) + { + if (is_array($condition)) { // where(array('column1' => 1, 'column2 > ?' => 2)) + foreach ($condition as $key => $val) { + if (is_int($key)) { + $this->where($val); // where('full condition') + } else { + $this->where($key, $val); // where('column', 1) + } + } + return $this; + } + + $args = func_get_args(); + if (call_user_func_array(array($this->sqlBuilder, 'addWhere'), $args)) { + $this->emptyResultSet(); + } + + return $this; + } + + + + /** + * Adds order clause, more calls appends to the end. + * @param string for example 'column1, column2 DESC' + * @return Selection provides a fluent interface + */ + public function order($columns) + { + $this->emptyResultSet(); + $this->sqlBuilder->addOrder($columns); + return $this; + } + + + + /** + * Sets limit clause, more calls rewrite old values. + * @param int + * @param int + * @return Selection provides a fluent interface + */ + public function limit($limit, $offset = NULL) + { + $this->emptyResultSet(); + $this->sqlBuilder->setLimit($limit, $offset); + return $this; + } + + + + /** + * Sets offset using page number, more calls rewrite old values. + * @param int + * @param int + * @return Selection provides a fluent interface + */ + public function page($page, $itemsPerPage) + { + return $this->limit($itemsPerPage, ($page - 1) * $itemsPerPage); + } + + + + /** + * Sets group clause, more calls rewrite old values. + * @param string + * @param string + * @return Selection provides a fluent interface + */ + public function group($columns, $having = NULL) + { + $this->emptyResultSet(); + $this->sqlBuilder->setGroup($columns, $having); + return $this; + } + + + + /********************* aggregations ****************d*g**/ + + + + /** + * Executes aggregation function. + * @param string select call in "FUNCTION(column)" format + * @return string + */ + public function aggregation($function) + { + $selection = $this->createSelectionInstance(); + $selection->getSqlBuilder()->importConditions($this->getSqlBuilder()); + $selection->select($function); + foreach ($selection->fetch() as $val) { + return $val; + } + } + + + + /** + * Counts number of rows. + * @param string if it is not provided returns count of result rows, otherwise runs new sql counting query + * @return int + */ + public function count($column = NULL) + { + if (!$column) { + $this->execute(); + return count($this->data); + } + return $this->aggregation("COUNT($column)"); + } + + + + /** + * Returns minimum value from a column. + * @param string + * @return int + */ + public function min($column) + { + return $this->aggregation("MIN($column)"); + } + + + + /** + * Returns maximum value from a column. + * @param string + * @return int + */ + public function max($column) + { + return $this->aggregation("MAX($column)"); + } + + + + /** + * Returns sum of values in a column. + * @param string + * @return int + */ + public function sum($column) + { + return $this->aggregation("SUM($column)"); + } + + + + /********************* internal ****************d*g**/ + + + + protected function execute() + { + if ($this->rows !== NULL) { + return; + } + + $this->observeCache = TRUE; + + try { + $result = $this->query($this->sqlBuilder->buildSelectQuery()); + + } catch (\PDOException $exception) { + if (!$this->sqlBuilder->getSelect() && $this->prevAccessed) { + $this->prevAccessed = ''; + $this->accessed = array(); + $result = $this->query($this->sqlBuilder->buildSelectQuery()); + } else { + throw $exception; + } + } + + $this->rows = array(); + $result->setFetchMode(PDO::FETCH_ASSOC); + foreach ($result as $key => $row) { + $row = $result->normalizeRow($row); + $this->rows[isset($row[$this->primary]) ? $row[$this->primary] : $key] = $this->createRow($row); + } + $this->data = $this->rows; + + if (isset($row[$this->primary]) && !is_string($this->accessed)) { + $this->accessed[$this->primary] = TRUE; + } + } + + + + protected function createRow(array $row) + { + return new ActiveRow($row, $this); + } + + + + protected function createSelectionInstance($table = NULL) + { + return new Selection($table ?: $this->name, $this->connection); + } + + + + protected function createGroupedSelectionInstance($table, $column) + { + return new GroupedSelection($this, $table, $column); + } + + + + protected function query($query) + { + return $this->connection->queryArgs($query, $this->sqlBuilder->getParameters()); + } + + + + protected function emptyResultSet() + { + if ($this->rows === NULL) { + return; + } + + $this->rows = NULL; + $this->saveCacheState(); + } + + + + protected function saveCacheState() + { + if ($this->observeCache && ($cache = $this->connection->getCache()) && !$this->sqlBuilder->getSelect() && $this->accessed != $this->prevAccessed) { + $cache->save(array(__CLASS__, $this->name, $this->sqlBuilder->getConditions()), $this->accessed); + } + } + + + + /** + * Returns Selection parent for caching + * @return Selection + */ + protected function getRefTable(& $refPath) + { + return $this; + } + + + + /** + * @internal + * @param string column name + * @param bool|NULL TRUE - cache, FALSE - don't cache, NULL - remove + * @return bool + */ + public function access($key, $cache = TRUE) + { + if ($cache === NULL) { + if (is_array($this->accessed)) { + $this->accessed[$key] = FALSE; + } + return FALSE; + } + + if ($key === NULL) { + $this->accessed = ''; + + } elseif (!is_string($this->accessed)) { + $this->accessed[$key] = $cache; + } + + if ($cache && !$this->sqlBuilder->getSelect() && $this->prevAccessed && ($key === NULL || !isset($this->prevAccessed[$key]))) { + $this->prevAccessed = ''; + $this->emptyResultSet(); + return TRUE; + } + + return FALSE; + } + + + + /********************* manipulation ****************d*g**/ + + + + /** + * Inserts row in a table. + * @param mixed array($column => $value)|Traversable for single row insert or Selection|string for INSERT ... SELECT + * @return ActiveRow or FALSE in case of an error or number of affected rows for INSERT ... SELECT + */ + public function insert($data) + { + if ($data instanceof Selection) { + $data = $data->getSql(); + + } elseif ($data instanceof \Traversable) { + $data = iterator_to_array($data); + } + + $return = $this->connection->query($this->sqlBuilder->buildInsertQuery(), $data); + $this->checkReferenced = TRUE; + + if (!is_array($data)) { + return $return->rowCount(); + } + + if (!isset($data[$this->primary]) && ($id = $this->connection->lastInsertId())) { + $data[$this->primary] = $id; + return $this->rows[$id] = $this->createRow($data); + + } else { + return $this->createRow($data); + + } + } + + + + /** + * Updates all rows in result set. + * Joins in UPDATE are supported only in MySQL + * @param array|\Traversable ($column => $value) + * @return int number of affected rows or FALSE in case of an error + */ + public function update($data) + { + if ($data instanceof \Traversable) { + $data = iterator_to_array($data); + + } elseif (!is_array($data)) { + throw new Nette\InvalidArgumentException; + } + + if (!$data) { + return 0; + } + + return $this->connection->queryArgs( + $this->sqlBuilder->buildUpdateQuery(), + array_merge(array($data), $this->sqlBuilder->getParameters()) + )->rowCount(); + } + + + + /** + * Deletes all rows in result set. + * @return int number of affected rows or FALSE in case of an error + */ + public function delete() + { + return $this->query($this->sqlBuilder->buildDeleteQuery())->rowCount(); + } + + + + /********************* references ****************d*g**/ + + + + /** + * Returns referenced row. + * @param string + * @param string + * @param bool checks if rows contains the same primary value relations + * @return Selection or array() if the row does not exist + */ + public function getReferencedTable($table, $column, $checkReferenced = FALSE) + { + $referenced = & $this->getRefTable($refPath)->referenced[$refPath . "$table.$column"]; + if ($referenced === NULL || $checkReferenced || $this->checkReferenced) { + $this->execute(); + $this->checkReferenced = FALSE; + $keys = array(); + foreach ($this->rows as $row) { + if ($row[$column] === NULL) + continue; + + $key = $row[$column] instanceof ActiveRow ? $row[$column]->getPrimary() : $row[$column]; + $keys[$key] = TRUE; + } + + if ($referenced !== NULL && array_keys($keys) === array_keys($referenced->rows)) { + return $referenced; + } + + if ($keys) { + $referenced = $this->createSelectionInstance($table); + $referenced->where($referenced->primary, array_keys($keys)); + } else { + $referenced = array(); + } + } + + return $referenced; + } + + + + /** + * Returns referencing rows. + * @param string + * @param string + * @param int primary key + * @return GroupedSelection + */ + public function getReferencingTable($table, $column, $active = NULL) + { + $prototype = & $this->getRefTable($refPath)->referencingPrototype[$refPath . "$table.$column"]; + if (!$prototype) { + $prototype = $this->createGroupedSelectionInstance($table, $column); + $prototype->where("$table.$column", array_keys((array) $this->rows)); + } + + $clone = clone $prototype; + $clone->setActive($active); + return $clone; + } + + + + /********************* interface Iterator ****************d*g**/ + + + + public function rewind() + { + $this->execute(); + $this->keys = array_keys($this->data); + reset($this->keys); + } + + + + /** @return ActiveRow */ + public function current() + { + return $this->data[current($this->keys)]; + } + + + + /** + * @return string row ID + */ + public function key() + { + return current($this->keys); + } + + + + public function next() + { + next($this->keys); + } + + + + public function valid() + { + return current($this->keys) !== FALSE; + } + + + + /********************* interface ArrayAccess ****************d*g**/ + + + + /** + * Mimic row. + * @param string row ID + * @param ActiveRow + * @return NULL + */ + public function offsetSet($key, $value) + { + $this->execute(); + $this->data[$key] = $value; + } + + + + /** + * Returns specified row. + * @param string row ID + * @return ActiveRow or NULL if there is no such row + */ + public function offsetGet($key) + { + $this->execute(); + return $this->data[$key]; + } + + + + /** + * Tests if row exists. + * @param string row ID + * @return bool + */ + public function offsetExists($key) + { + $this->execute(); + return isset($this->data[$key]); + } + + + + /** + * Removes row from result set. + * @param string row ID + * @return NULL + */ + public function offsetUnset($key) + { + $this->execute(); + unset($this->data[$key]); + } + +} diff --git a/apigen/libs/Nette/Nette/Database/Table/SqlBuilder.php b/apigen/libs/Nette/Nette/Database/Table/SqlBuilder.php new file mode 100644 index 00000000000..c652420f966 --- /dev/null +++ b/apigen/libs/Nette/Nette/Database/Table/SqlBuilder.php @@ -0,0 +1,383 @@ +selection = $selection; + $this->connection = $selection->getConnection(); + $this->delimitedTable = $this->connection->getSupplementalDriver()->delimite($selection->getName()); + } + + + + public function setSelection(Selection $selection) + { + $this->selection = $selection; + } + + + + public function buildInsertQuery() + { + return "INSERT INTO {$this->delimitedTable}"; + } + + + + public function buildUpdateQuery() + { + return "UPDATE{$this->buildTopClause()} {$this->delimitedTable} SET ?" . $this->buildConditions(); + } + + + + public function buildDeleteQuery() + { + return "DELETE{$this->buildTopClause()} FROM {$this->delimitedTable}" . $this->buildConditions(); + } + + + + public function importConditions(SqlBuilder $builder) + { + $this->where = $builder->where; + $this->parameters = $builder->parameters; + $this->conditions = $builder->conditions; + } + + + + /********************* SQL selectors ****************d*g**/ + + + + public function addSelect($columns) + { + $this->select[] = $columns; + } + + + + public function getSelect() + { + return $this->select; + } + + + + public function addWhere($condition, $parameters = array()) + { + $args = func_get_args(); + $hash = md5(json_encode($args)); + if (isset($this->conditions[$hash])) { + return FALSE; + } + + $this->conditions[$hash] = $condition; + $condition = $this->removeExtraTables($condition); + $condition = $this->tryDelimite($condition); + + if (count($args) !== 2 || strpbrk($condition, '?:')) { // where('column < ? OR column > ?', array(1, 2)) + if (count($args) !== 2 || !is_array($parameters)) { // where('column < ? OR column > ?', 1, 2) + $parameters = $args; + array_shift($parameters); + } + + $this->parameters = array_merge($this->parameters, $parameters); + + } elseif ($parameters === NULL) { // where('column', NULL) + $condition .= ' IS NULL'; + + } elseif ($parameters instanceof Selection) { // where('column', $db->$table()) + $clone = clone $parameters; + if (!$clone->getSqlBuilder()->select) { + $clone->select($clone->primary); + } + + if ($this->connection->getAttribute(PDO::ATTR_DRIVER_NAME) !== 'mysql') { + $condition .= ' IN (' . $clone->getSql() . ')'; + } else { + $in = array(); + foreach ($clone as $row) { + $this->parameters[] = array_values(iterator_to_array($row)); + $in[] = (count($row) === 1 ? '?' : '(?)'); + } + $condition .= ' IN (' . ($in ? implode(', ', $in) : 'NULL') . ')'; + } + + } elseif (!is_array($parameters)) { // where('column', 'x') + $condition .= ' = ?'; + $this->parameters[] = $parameters; + + } else { // where('column', array(1, 2)) + if ($parameters) { + $condition .= " IN (?)"; + $this->parameters[] = $parameters; + } else { + $condition .= " IN (NULL)"; + } + } + + $this->where[] = $condition; + return TRUE; + } + + + + public function getConditions() + { + return array_values($this->conditions); + } + + + + public function addOrder($columns) + { + $this->order[] = $columns; + } + + + + public function getOrder() + { + return $this->order; + } + + + + public function setLimit($limit, $offset) + { + $this->limit = $limit; + $this->offset = $offset; + } + + + + public function getLimit() + { + return $this->limit; + } + + + + public function getOffset() + { + return $this->offset; + } + + + + public function setGroup($columns, $having) + { + $this->group = $columns; + $this->having = $having; + } + + + + public function getGroup() + { + return $this->group; + } + + + + public function getHaving() + { + return $this->having; + } + + + + /********************* SQL building ****************d*g**/ + + + + /** + * Returns SQL query. + * @return string + */ + public function buildSelectQuery() + { + $join = $this->buildJoins(implode(',', $this->conditions), TRUE); + $join += $this->buildJoins(implode(',', $this->select) . ",{$this->group},{$this->having}," . implode(',', $this->order)); + + $prefix = $join ? "{$this->delimitedTable}." : ''; + if ($this->select) { + $cols = $this->tryDelimite($this->removeExtraTables(implode(', ', $this->select))); + + } elseif ($prevAccessed = $this->selection->getPreviousAccessed()) { + $cols = array_map(array($this->connection->getSupplementalDriver(), 'delimite'), array_keys(array_filter($prevAccessed))); + $cols = $prefix . implode(', ' . $prefix, $cols); + + } else { + $cols = $prefix . '*'; + } + + return "SELECT{$this->buildTopClause()} {$cols} FROM {$this->delimitedTable}" . implode($join) . $this->buildConditions(); + } + + + + public function getParameters() + { + return $this->parameters; + } + + + + protected function buildJoins($val, $inner = FALSE) + { + $driver = $this->selection->getConnection()->getSupplementalDriver(); + $reflection = $this->selection->getConnection()->getDatabaseReflection(); + $joins = array(); + preg_match_all('~\\b([a-z][\\w.:]*[.:])([a-z]\\w*|\*)(\\s+IS\\b|\\s*<=>)?~i', $val, $matches); + foreach ($matches[1] as $names) { + $parent = $this->selection->getName(); + if ($names !== "$parent.") { // case-sensitive + preg_match_all('~\\b([a-z][\\w]*|\*)([.:])~i', $names, $matches, PREG_SET_ORDER); + foreach ($matches as $match) { + list(, $name, $delimiter) = $match; + + if ($delimiter === ':') { + list($table, $primary) = $reflection->getHasManyReference($parent, $name); + $column = $reflection->getPrimary($parent); + } else { + list($table, $column) = $reflection->getBelongsToReference($parent, $name); + $primary = $reflection->getPrimary($table); + } + + $joins[$name] = ' ' + . (!isset($joins[$name]) && $inner && !isset($match[3]) ? 'INNER' : 'LEFT') + . ' JOIN ' . $driver->delimite($table) . ($table !== $name ? ' AS ' . $driver->delimite($name) : '') + . ' ON ' . $driver->delimite($parent) . '.' . $driver->delimite($column) + . ' = ' . $driver->delimite($name) . '.' . $driver->delimite($primary); + + $parent = $name; + } + } + } + return $joins; + } + + + + protected function buildConditions() + { + $return = ''; + $driver = $this->connection->getAttribute(PDO::ATTR_DRIVER_NAME); + $where = $this->where; + if ($this->limit !== NULL && $driver === 'oci') { + $where[] = ($this->offset ? "rownum > $this->offset AND " : '') . 'rownum <= ' . ($this->limit + $this->offset); + } + if ($where) { + $return .= ' WHERE (' . implode(') AND (', $where) . ')'; + } + if ($this->group) { + $return .= ' GROUP BY '. $this->tryDelimite($this->removeExtraTables($this->group)); + } + if ($this->having) { + $return .= ' HAVING '. $this->tryDelimite($this->removeExtraTables($this->having)); + } + if ($this->order) { + $return .= ' ORDER BY ' . $this->tryDelimite($this->removeExtraTables(implode(', ', $this->order))); + } + if ($this->limit !== NULL && $driver !== 'oci' && $driver !== 'dblib') { + $return .= " LIMIT $this->limit"; + if ($this->offset !== NULL) { + $return .= " OFFSET $this->offset"; + } + } + return $return; + } + + + + protected function buildTopClause() + { + if ($this->limit !== NULL && $this->connection->getAttribute(PDO::ATTR_DRIVER_NAME) === 'dblib') { + return " TOP ($this->limit)"; //! offset is not supported + } + return ''; + } + + + + protected function tryDelimite($s) + { + $driver = $this->connection->getSupplementalDriver(); + return preg_replace_callback('#(?<=[^\w`"\[]|^)[a-z_][a-z0-9_]*(?=[^\w`"(\]]|$)#i', function($m) use ($driver) { + return strtoupper($m[0]) === $m[0] ? $m[0] : $driver->delimite($m[0]); + }, $s); + } + + + + protected function removeExtraTables($expression) + { + return preg_replace('~(?:\\b[a-z_][a-z0-9_.:]*[.:])?([a-z_][a-z0-9_]*)[.:]([a-z_*])~i', '\\1.\\2', $expression); // rewrite tab1.tab2.col + } + +} diff --git a/apigen/libs/Nette/Nette/Diagnostics/Bar.php b/apigen/libs/Nette/Nette/Diagnostics/Bar.php new file mode 100644 index 00000000000..cfe2d680fbe --- /dev/null +++ b/apigen/libs/Nette/Nette/Diagnostics/Bar.php @@ -0,0 +1,79 @@ +panels[$id])); + } + $this->panels[$id] = $panel; + return $this; + } + + + + /** + * Renders debug bar. + * @return void + */ + public function render() + { + $obLevel = ob_get_level(); + $panels = array(); + foreach ($this->panels as $id => $panel) { + try { + $panels[] = array( + 'id' => preg_replace('#[^a-z0-9]+#i', '-', $id), + 'tab' => $tab = (string) $panel->getTab(), + 'panel' => $tab ? (string) $panel->getPanel() : NULL, + ); + } catch (\Exception $e) { + $panels[] = array( + 'id' => "error-" . preg_replace('#[^a-z0-9]+#i', '-', $id), + 'tab' => "Error in $id", + 'panel' => '

Error: ' . $id . '

' . nl2br(htmlSpecialChars($e)) . '
', + ); + while (ob_get_level() > $obLevel) { // restore ob-level if broken + ob_end_clean(); + } + } + } + require __DIR__ . '/templates/bar.phtml'; + } + +} diff --git a/apigen/libs/Nette/Nette/Diagnostics/BlueScreen.php b/apigen/libs/Nette/Nette/Diagnostics/BlueScreen.php new file mode 100644 index 00000000000..f9ce51ecbf9 --- /dev/null +++ b/apigen/libs/Nette/Nette/Diagnostics/BlueScreen.php @@ -0,0 +1,139 @@ +panels, TRUE)) { + $this->panels[] = $panel; + } + return $this; + } + + + + /** + * Renders blue screen. + * @param \Exception + * @return void + */ + public function render(\Exception $exception) + { + $panels = $this->panels; + require __DIR__ . '/templates/bluescreen.phtml'; + } + + + + /** + * Returns syntax highlighted source code. + * @param string + * @param int + * @param int + * @return string + */ + public static function highlightFile($file, $line, $lines = 15, $vars = array()) + { + $source = @file_get_contents($file); // intentionally @ + if ($source) { + return static::highlightPhp($source, $line, $lines, $vars); + } + } + + + + /** + * Returns syntax highlighted source code. + * @param string + * @param int + * @param int + * @return string + */ + public static function highlightPhp($source, $line, $lines = 15, $vars = array()) + { + if (function_exists('ini_set')) { + ini_set('highlight.comment', '#998; font-style: italic'); + ini_set('highlight.default', '#000'); + ini_set('highlight.html', '#06B'); + ini_set('highlight.keyword', '#D24; font-weight: bold'); + ini_set('highlight.string', '#080'); + } + + $source = str_replace(array("\r\n", "\r"), "\n", $source); + $source = explode("\n", highlight_string($source, TRUE)); + $spans = 1; + $out = $source[0]; // + $source = explode('
', $source[1]); + array_unshift($source, NULL); + + $start = $i = max(1, $line - floor($lines * 2/3)); + while (--$i >= 1) { // find last highlighted block + if (preg_match('#.*(]*>)#', $source[$i], $m)) { + if ($m[1] !== '
') { + $spans++; $out .= $m[1]; + } + break; + } + } + + $source = array_slice($source, $start, $lines, TRUE); + end($source); + $numWidth = strlen((string) key($source)); + + foreach ($source as $n => $s) { + $spans += substr_count($s, ']+>#', $s, $tags); + if ($n == $line) { + $out .= sprintf( + "%{$numWidth}s: %s\n%s", + $n, + strip_tags($s), + implode('', $tags[0]) + ); + } else { + $out .= sprintf("%{$numWidth}s: %s\n", $n, $s); + } + } + $out .= str_repeat('
', $spans) . ''; + + $out = preg_replace_callback('#">\$(\w+)( )?#', function($m) use ($vars) { + return isset($vars[$m[1]]) + ? '" title="' . str_replace('"', '"', strip_tags(Helpers::htmlDump($vars[$m[1]]))) . $m[0] + : $m[0]; + }, $out); + + return "
$out
"; + } + +} diff --git a/apigen/libs/Nette/Nette/Diagnostics/Debugger.php b/apigen/libs/Nette/Nette/Diagnostics/Debugger.php new file mode 100644 index 00000000000..f564f263b49 --- /dev/null +++ b/apigen/libs/Nette/Nette/Diagnostics/Debugger.php @@ -0,0 +1,694 @@ + '1;33', + 'null' => '1;33', + 'int' => '1;36', + 'float' => '1;36', + 'string' => '1;32', + 'array' => '1;31', + 'key' => '1;37', + 'object' => '1;31', + 'visibility' => '1;30', + 'resource' => '1;37', + ); + + /********************* errors and exceptions reporting ****************d*g**/ + + /** server modes {@link Debugger::enable()} */ + const DEVELOPMENT = FALSE, + PRODUCTION = TRUE, + DETECT = NULL; + + /** @var BlueScreen */ + public static $blueScreen; + + /** @var bool|int determines whether any error will cause immediate death; if integer that it's matched against error severity */ + public static $strictMode = FALSE; // $immediateDeath + + /** @var bool disables the @ (shut-up) operator so that notices and warnings are no longer hidden */ + public static $scream = FALSE; + + /** @var array of callables specifies the functions that are automatically called after fatal error */ + public static $onFatalError = array(); + + /** @var bool {@link Debugger::enable()} */ + private static $enabled = FALSE; + + /** @var mixed {@link Debugger::tryError()} FALSE means catching is disabled */ + private static $lastError = FALSE; + + /********************* logging ****************d*g**/ + + /** @var Logger */ + public static $logger; + + /** @var FireLogger */ + public static $fireLogger; + + /** @var string name of the directory where errors should be logged; FALSE means that logging is disabled */ + public static $logDirectory; + + /** @var string email to sent error notifications */ + public static $email; + + /** @deprecated */ + public static $mailer; + + /** @deprecated */ + public static $emailSnooze; + + /********************* debug bar ****************d*g**/ + + /** @var Bar */ + public static $bar; + + /** @var DefaultBarPanel */ + private static $errorPanel; + + /** @var DefaultBarPanel */ + private static $dumpPanel; + + /********************* Firebug extension ****************d*g**/ + + /** {@link Debugger::log()} and {@link Debugger::fireLog()} */ + const DEBUG = 'debug', + INFO = 'info', + WARNING = 'warning', + ERROR = 'error', + CRITICAL = 'critical'; + + + + /** + * Static class - cannot be instantiated. + */ + final public function __construct() + { + throw new Nette\StaticClassException; + } + + + + /** + * Static class constructor. + * @internal + */ + public static function _init() + { + self::$time = isset($_SERVER['REQUEST_TIME_FLOAT']) ? $_SERVER['REQUEST_TIME_FLOAT'] : microtime(TRUE); + self::$consoleMode = PHP_SAPI === 'cli'; + self::$productionMode = self::DETECT; + if (self::$consoleMode) { + self::$source = empty($_SERVER['argv']) ? 'cli' : 'cli: ' . implode(' ', $_SERVER['argv']); + } else { + self::$ajaxDetected = isset($_SERVER['HTTP_X_REQUESTED_WITH']) && $_SERVER['HTTP_X_REQUESTED_WITH'] === 'XMLHttpRequest'; + if (isset($_SERVER['REQUEST_URI'])) { + self::$source = (isset($_SERVER['HTTPS']) && strcasecmp($_SERVER['HTTPS'], 'off') ? 'https://' : 'http://') + . (isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : (isset($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : '')) + . $_SERVER['REQUEST_URI']; + } + } + + self::$logger = new Logger; + self::$logDirectory = & self::$logger->directory; + self::$email = & self::$logger->email; + self::$mailer = & self::$logger->mailer; + self::$emailSnooze = & Logger::$emailSnooze; + + self::$fireLogger = new FireLogger; + + self::$blueScreen = new BlueScreen; + self::$blueScreen->addPanel(function($e) { + if ($e instanceof Nette\Templating\FilterException) { + return array( + 'tab' => 'Template', + 'panel' => '

File: ' . Helpers::editorLink($e->sourceFile, $e->sourceLine) + . '  Line: ' . ($e->sourceLine ? $e->sourceLine : 'n/a') . '

' + . ($e->sourceLine ? BlueScreen::highlightFile($e->sourceFile, $e->sourceLine) : '') + ); + } elseif ($e instanceof Nette\Utils\NeonException && preg_match('#line (\d+)#', $e->getMessage(), $m)) { + if ($item = Helpers::findTrace($e->getTrace(), 'Nette\Config\Adapters\NeonAdapter::load')) { + return array( + 'tab' => 'NEON', + 'panel' => '

File: ' . Helpers::editorLink($item['args'][0], $m[1]) . '  Line: ' . $m[1] . '

' + . BlueScreen::highlightFile($item['args'][0], $m[1]) + ); + } elseif ($item = Helpers::findTrace($e->getTrace(), 'Nette\Utils\Neon::decode')) { + return array( + 'tab' => 'NEON', + 'panel' => BlueScreen::highlightPhp($item['args'][0], $m[1]) + ); + } + } + }); + + self::$bar = new Bar; + self::$bar->addPanel(new DefaultBarPanel('time')); + self::$bar->addPanel(new DefaultBarPanel('memory')); + self::$bar->addPanel(self::$errorPanel = new DefaultBarPanel('errors')); // filled by _errorHandler() + self::$bar->addPanel(self::$dumpPanel = new DefaultBarPanel('dumps')); // filled by barDump() + } + + + + /********************* errors and exceptions reporting ****************d*g**/ + + + + /** + * Enables displaying or logging errors and exceptions. + * @param mixed production, development mode, autodetection or IP address(es) whitelist. + * @param string error log directory; enables logging in production mode, FALSE means that logging is disabled + * @param string administrator email; enables email sending in production mode + * @return void + */ + public static function enable($mode = NULL, $logDirectory = NULL, $email = NULL) + { + error_reporting(E_ALL | E_STRICT); + + // production/development mode detection + if (is_bool($mode)) { + self::$productionMode = $mode; + + } elseif ($mode !== self::DETECT || self::$productionMode === NULL) { // IP addresses or computer names whitelist detection + $list = is_string($mode) ? preg_split('#[,\s]+#', $mode) : (array) $mode; + if (!isset($_SERVER['HTTP_X_FORWARDED_FOR'])) { + $list[] = '127.0.0.1'; + $list[] = '::1'; + } + self::$productionMode = !in_array(isset($_SERVER['REMOTE_ADDR']) ? $_SERVER['REMOTE_ADDR'] : php_uname('n'), $list, TRUE); + } + + // logging configuration + if (is_string($logDirectory)) { + self::$logDirectory = realpath($logDirectory); + if (self::$logDirectory === FALSE) { + throw new Nette\DirectoryNotFoundException("Directory '$logDirectory' is not found."); + } + } elseif ($logDirectory === FALSE) { + self::$logDirectory = FALSE; + + } elseif (self::$logDirectory === NULL) { + self::$logDirectory = defined('APP_DIR') ? APP_DIR . '/../log' : getcwd() . '/log'; + } + if (self::$logDirectory) { + ini_set('error_log', self::$logDirectory . '/php_error.log'); + } + + // php configuration + if (function_exists('ini_set')) { + ini_set('display_errors', !self::$productionMode); // or 'stderr' + ini_set('html_errors', FALSE); + ini_set('log_errors', FALSE); + + } elseif (ini_get('display_errors') != !self::$productionMode && ini_get('display_errors') !== (self::$productionMode ? 'stderr' : 'stdout')) { // intentionally == + throw new Nette\NotSupportedException('Function ini_set() must be enabled.'); + } + + if ($email) { + if (!is_string($email)) { + throw new Nette\InvalidArgumentException('Email address must be a string.'); + } + self::$email = $email; + } + + if (!defined('E_DEPRECATED')) { + define('E_DEPRECATED', 8192); + } + + if (!defined('E_USER_DEPRECATED')) { + define('E_USER_DEPRECATED', 16384); + } + + if (!self::$enabled) { + register_shutdown_function(array(__CLASS__, '_shutdownHandler')); + set_exception_handler(array(__CLASS__, '_exceptionHandler')); + set_error_handler(array(__CLASS__, '_errorHandler')); + self::$enabled = TRUE; + } + } + + + + /** + * Is Debug enabled? + * @return bool + */ + public static function isEnabled() + { + return self::$enabled; + } + + + + /** + * Logs message or exception to file (if not disabled) and sends email notification (if enabled). + * @param string|Exception + * @param int one of constant Debugger::INFO, WARNING, ERROR (sends email), CRITICAL (sends email) + * @return string logged error filename + */ + public static function log($message, $priority = self::INFO) + { + if (self::$logDirectory === FALSE) { + return; + + } elseif (!self::$logDirectory) { + throw new Nette\InvalidStateException('Logging directory is not specified in Nette\Diagnostics\Debugger::$logDirectory.'); + } + + if ($message instanceof \Exception) { + $exception = $message; + $message = ($message instanceof Nette\FatalErrorException + ? 'Fatal error: ' . $exception->getMessage() + : get_class($exception) . ": " . $exception->getMessage()) + . " in " . $exception->getFile() . ":" . $exception->getLine(); + + $hash = md5($exception /*5.2*. (method_exists($exception, 'getPrevious') ? $exception->getPrevious() : (isset($exception->previous) ? $exception->previous : ''))*/); + $exceptionFilename = "exception-" . @date('Y-m-d-H-i-s') . "-$hash.html"; + foreach (new \DirectoryIterator(self::$logDirectory) as $entry) { + if (strpos($entry, $hash)) { + $exceptionFilename = $entry; + $saved = TRUE; + break; + } + } + } + + self::$logger->log(array( + @date('[Y-m-d H-i-s]'), + trim($message), + self::$source ? ' @ ' . self::$source : NULL, + !empty($exceptionFilename) ? ' @@ ' . $exceptionFilename : NULL + ), $priority); + + if (!empty($exceptionFilename)) { + $exceptionFilename = self::$logDirectory . '/' . $exceptionFilename; + if (empty($saved) && $logHandle = @fopen($exceptionFilename, 'w')) { + ob_start(); // double buffer prevents sending HTTP headers in some PHP + ob_start(function($buffer) use ($logHandle) { fwrite($logHandle, $buffer); }, 4096); + self::$blueScreen->render($exception); + ob_end_flush(); + ob_end_clean(); + fclose($logHandle); + } + return strtr($exceptionFilename, '\\/', DIRECTORY_SEPARATOR . DIRECTORY_SEPARATOR); + } + } + + + + /** + * Shutdown handler to catch fatal errors and execute of the planned activities. + * @return void + * @internal + */ + public static function _shutdownHandler() + { + if (!self::$enabled) { + return; + } + + // fatal error handler + static $types = array( + E_ERROR => 1, + E_CORE_ERROR => 1, + E_COMPILE_ERROR => 1, + E_PARSE => 1, + ); + $error = error_get_last(); + if (isset($types[$error['type']])) { + self::_exceptionHandler(new Nette\FatalErrorException($error['message'], 0, $error['type'], $error['file'], $error['line'], NULL)); + } + + // debug bar (require HTML & development mode) + if (self::$bar && !self::$productionMode && self::isHtmlMode()) { + self::$bar->render(); + } + } + + + + /** + * Handler to catch uncaught exception. + * @param \Exception + * @return void + * @internal + */ + public static function _exceptionHandler(\Exception $exception) + { + if (!headers_sent()) { // for PHP < 5.2.4 + $protocol = isset($_SERVER['SERVER_PROTOCOL']) ? $_SERVER['SERVER_PROTOCOL'] : 'HTTP/1.1'; + header($protocol . ' 500', TRUE, 500); + } + + try { + if (self::$productionMode) { + try { + self::log($exception, self::ERROR); + } catch (\Exception $e) { + echo 'FATAL ERROR: unable to log error'; + } + + if (self::$consoleMode) { + echo "ERROR: the server encountered an internal error and was unable to complete your request.\n"; + + } elseif (self::isHtmlMode()) { + require __DIR__ . '/templates/error.phtml'; + } + + } else { + if (self::$consoleMode) { // dump to console + echo "$exception\n"; + if ($file = self::log($exception)) { + echo "(stored in $file)\n"; + if (self::$browser) { + exec(self::$browser . ' ' . escapeshellarg($file)); + } + } + + } elseif (self::isHtmlMode()) { // dump to browser + self::$blueScreen->render($exception); + if (self::$bar) { + self::$bar->render(); + } + + } elseif (!self::fireLog($exception, self::ERROR)) { // AJAX or non-HTML mode + $file = self::log($exception); + if (!headers_sent()) { + header("X-Nette-Error-Log: $file"); + } + } + } + + foreach (self::$onFatalError as $handler) { + call_user_func($handler, $exception); + } + + } catch (\Exception $e) { + if (self::$productionMode) { + echo self::isHtmlMode() ? 'FATAL ERROR' : 'FATAL ERROR'; + } else { + echo "FATAL ERROR: thrown ", get_class($e), ': ', $e->getMessage(), + "\nwhile processing ", get_class($exception), ': ', $exception->getMessage(), "\n"; + } + } + + self::$enabled = FALSE; // un-register shutdown function + exit(255); + } + + + + /** + * Handler to catch warnings and notices. + * @param int level of the error raised + * @param string error message + * @param string file that the error was raised in + * @param int line number the error was raised at + * @param array an array of variables that existed in the scope the error was triggered in + * @return bool FALSE to call normal error handler, NULL otherwise + * @throws Nette\FatalErrorException + * @internal + */ + public static function _errorHandler($severity, $message, $file, $line, $context) + { + if (self::$scream) { + error_reporting(E_ALL | E_STRICT); + } + + if (self::$lastError !== FALSE && ($severity & error_reporting()) === $severity) { // tryError mode + self::$lastError = new \ErrorException($message, 0, $severity, $file, $line); + return NULL; + } + + if ($severity === E_RECOVERABLE_ERROR || $severity === E_USER_ERROR) { + throw new Nette\FatalErrorException($message, 0, $severity, $file, $line, $context); + + } elseif (($severity & error_reporting()) !== $severity) { + return FALSE; // calls normal error handler to fill-in error_get_last() + + } elseif (!self::$productionMode && (is_bool(self::$strictMode) ? self::$strictMode : ((self::$strictMode & $severity) === $severity))) { + self::_exceptionHandler(new Nette\FatalErrorException($message, 0, $severity, $file, $line, $context)); + } + + static $types = array( + E_WARNING => 'Warning', + E_COMPILE_WARNING => 'Warning', // currently unable to handle + E_USER_WARNING => 'Warning', + E_NOTICE => 'Notice', + E_USER_NOTICE => 'Notice', + E_STRICT => 'Strict standards', + E_DEPRECATED => 'Deprecated', + E_USER_DEPRECATED => 'Deprecated', + ); + + $message = 'PHP ' . (isset($types[$severity]) ? $types[$severity] : 'Unknown error') . ": $message"; + $count = & self::$errorPanel->data["$message|$file|$line"]; + + if ($count++) { // repeated error + return NULL; + + } elseif (self::$productionMode) { + self::log("$message in $file:$line", self::ERROR); + return NULL; + + } else { + $ok = self::fireLog(new \ErrorException($message, 0, $severity, $file, $line), self::WARNING); + return !self::isHtmlMode() || (!self::$bar && !$ok) ? FALSE : NULL; + } + + return FALSE; // call normal error handler + } + + + + /** + * Handles exception thrown in __toString(). + * @param \Exception + * @return void + */ + public static function toStringException(\Exception $exception) + { + if (self::$enabled) { + self::_exceptionHandler($exception); + } else { + trigger_error($exception->getMessage(), E_USER_ERROR); + } + } + + + + /** + * Starts catching potential errors/warnings. + * @return void + */ + public static function tryError() + { + if (!self::$enabled && self::$lastError === FALSE) { + set_error_handler(array(__CLASS__, '_errorHandler')); + } + self::$lastError = NULL; + } + + + + /** + * Returns catched error/warning message. + * @param \ErrorException catched error + * @return bool + */ + public static function catchError(& $error) + { + if (!self::$enabled && self::$lastError !== FALSE) { + restore_error_handler(); + } + $error = self::$lastError; + self::$lastError = FALSE; + return (bool) $error; + } + + + + /********************* useful tools ****************d*g**/ + + + + /** + * Dumps information about a variable in readable format. + * @param mixed variable to dump + * @param bool return output instead of printing it? (bypasses $productionMode) + * @return mixed variable itself or dump + */ + public static function dump($var, $return = FALSE) + { + if (!$return && self::$productionMode) { + return $var; + } + + $output = "
" . Helpers::htmlDump($var) . "
\n"; + + if (!$return) { + $trace = /*5.2*PHP_VERSION_ID < 50205 ? debug_backtrace() : */debug_backtrace(FALSE); + $i = Helpers::findTrace($trace, 'dump') ? 1 : 0; + if (isset($trace[$i]['file'], $trace[$i]['line']) && is_file($trace[$i]['file'])) { + $lines = file($trace[$i]['file']); + preg_match('#dump\((.*)\)#', $lines[$trace[$i]['line'] - 1], $m); + $output = substr_replace( + $output, + ' title="' . htmlspecialchars((isset($m[0]) ? "$m[0] \n" : '') . "in file {$trace[$i]['file']} on line {$trace[$i]['line']}") . '"', + 4, 0); + + if (self::$showLocation) { + $output = substr_replace( + $output, + ' in ' . Helpers::editorLink($trace[$i]['file'], $trace[$i]['line']) . ":{$trace[$i]['line']}", + -8, 0); + } + } + } + + if (self::$consoleMode) { + if (self::$consoleColors && substr(getenv('TERM'), 0, 5) === 'xterm') { + $output = preg_replace_callback('#|#', function($m) { + return "\033[" . (isset($m[1], Debugger::$consoleColors[$m[1]]) ? Debugger::$consoleColors[$m[1]] : '0') . "m"; + }, $output); + } + $output = htmlspecialchars_decode(strip_tags($output), ENT_QUOTES); + } + + if ($return) { + return $output; + + } else { + echo $output; + return $var; + } + } + + + + /** + * Starts/stops stopwatch. + * @param string name + * @return float elapsed seconds + */ + public static function timer($name = NULL) + { + static $time = array(); + $now = microtime(TRUE); + $delta = isset($time[$name]) ? $now - $time[$name] : 0; + $time[$name] = $now; + return $delta; + } + + + + /** + * Dumps information about a variable in Nette Debug Bar. + * @param mixed variable to dump + * @param string optional title + * @return mixed variable itself + */ + public static function barDump($var, $title = NULL) + { + if (!self::$productionMode) { + $dump = array(); + foreach ((is_array($var) ? $var : array('' => $var)) as $key => $val) { + $dump[$key] = Helpers::clickableDump($val); + } + self::$dumpPanel->data[] = array('title' => $title, 'dump' => $dump); + } + return $var; + } + + + + /** + * Sends message to FireLogger console. + * @param mixed message to log + * @return bool was successful? + */ + public static function fireLog($message) + { + if (!self::$productionMode) { + return self::$fireLogger->log($message); + } + } + + + + private static function isHtmlMode() + { + return !self::$ajaxDetected && !self::$consoleMode + && !preg_match('#^Content-Type: (?!text/html)#im', implode("\n", headers_list())); + } + + + + /** @deprecated */ + public static function addPanel(IBarPanel $panel, $id = NULL) + { + return self::$bar->addPanel($panel, $id); + } + +} diff --git a/apigen/libs/Nette/Nette/Diagnostics/DefaultBarPanel.php b/apigen/libs/Nette/Nette/Diagnostics/DefaultBarPanel.php new file mode 100644 index 00000000000..c969a79c7a5 --- /dev/null +++ b/apigen/libs/Nette/Nette/Diagnostics/DefaultBarPanel.php @@ -0,0 +1,76 @@ +id = $id; + } + + + + /** + * Renders HTML code for custom tab. + * @return string + */ + public function getTab() + { + ob_start(); + $data = $this->data; + if ($this->id === 'time') { + require __DIR__ . '/templates/bar.time.tab.phtml'; + } elseif ($this->id === 'memory') { + require __DIR__ . '/templates/bar.memory.tab.phtml'; + } elseif ($this->id === 'dumps' && $this->data) { + require __DIR__ . '/templates/bar.dumps.tab.phtml'; + } elseif ($this->id === 'errors' && $this->data) { + require __DIR__ . '/templates/bar.errors.tab.phtml'; + } + return ob_get_clean(); + } + + + + /** + * Renders HTML code for custom panel. + * @return string + */ + public function getPanel() + { + ob_start(); + $data = $this->data; + if ($this->id === 'dumps') { + require __DIR__ . '/templates/bar.dumps.panel.phtml'; + } elseif ($this->id === 'errors') { + require __DIR__ . '/templates/bar.errors.panel.phtml'; + } + return ob_get_clean(); + } + +} diff --git a/apigen/libs/Nette/Nette/Diagnostics/FireLogger.php b/apigen/libs/Nette/Nette/Diagnostics/FireLogger.php new file mode 100644 index 00000000000..a8e9b3de534 --- /dev/null +++ b/apigen/libs/Nette/Nette/Diagnostics/FireLogger.php @@ -0,0 +1,188 @@ + array()); + + + + /** + * Sends message to FireLogger console. + * @param mixed + * @return bool was successful? + */ + public static function log($message, $priority = self::DEBUG) + { + if (!isset($_SERVER['HTTP_X_FIRELOGGER']) || headers_sent()) { + return FALSE; + } + + $item = array( + 'name' => 'PHP', + 'level' => $priority, + 'order' => count(self::$payload['logs']), + 'time' => str_pad(number_format((microtime(TRUE) - Debugger::$time) * 1000, 1, '.', ' '), 8, '0', STR_PAD_LEFT) . ' ms', + 'template' => '', + 'message' => '', + 'style' => 'background:#767ab6', + ); + + $args = func_get_args(); + if (isset($args[0]) && is_string($args[0])) { + $item['template'] = array_shift($args); + } + + if (isset($args[0]) && $args[0] instanceof \Exception) { + $e = array_shift($args); + $trace = $e->getTrace(); + if (isset($trace[0]['class']) && $trace[0]['class'] === 'Nette\Diagnostics\Debugger' + && ($trace[0]['function'] === '_shutdownHandler' || $trace[0]['function'] === '_errorHandler') + ) { + unset($trace[0]); + } + + $file = str_replace(dirname(dirname(dirname($e->getFile()))), "\xE2\x80\xA6", $e->getFile()); + $item['template'] = ($e instanceof \ErrorException ? '' : get_class($e) . ': ') + . $e->getMessage() . ($e->getCode() ? ' #' . $e->getCode() : '') . ' in ' . $file . ':' . $e->getLine(); + $item['pathname'] = $e->getFile(); + $item['lineno'] = $e->getLine(); + + } else { + $trace = debug_backtrace(); + if (isset($trace[1]['class']) && $trace[1]['class'] === 'Nette\Diagnostics\Debugger' + && ($trace[1]['function'] === 'fireLog') + ) { + unset($trace[0]); + } + + foreach ($trace as $frame) { + if (isset($frame['file']) && is_file($frame['file'])) { + $item['pathname'] = $frame['file']; + $item['lineno'] = $frame['line']; + break; + } + } + } + + $item['exc_info'] = array('', '', array()); + $item['exc_frames'] = array(); + + foreach ($trace as $frame) { + $frame += array('file' => NULL, 'line' => NULL, 'class' => NULL, 'type' => NULL, 'function' => NULL, 'object' => NULL, 'args' => NULL); + $item['exc_info'][2][] = array($frame['file'], $frame['line'], "$frame[class]$frame[type]$frame[function]", $frame['object']); + $item['exc_frames'][] = $frame['args']; + } + + if (isset($args[0]) && in_array($args[0], array(self::DEBUG, self::INFO, self::WARNING, self::ERROR, self::CRITICAL), TRUE)) { + $item['level'] = array_shift($args); + } + + $item['args'] = $args; + + self::$payload['logs'][] = self::jsonDump($item, -1); + foreach (str_split(base64_encode(@json_encode(self::$payload)), 4990) as $k => $v) { // intentionally @ + header("FireLogger-de11e-$k:$v"); + } + return TRUE; + } + + + + /** + * Dump implementation for JSON. + * @param mixed variable to dump + * @param int current recursion level + * @return string + */ + private static function jsonDump(&$var, $level = 0) + { + if (is_bool($var) || is_null($var) || is_int($var) || is_float($var)) { + return $var; + + } elseif (is_string($var)) { + if (Debugger::$maxLen && strlen($var) > Debugger::$maxLen) { + $var = substr($var, 0, Debugger::$maxLen) . " \xE2\x80\xA6 "; + } + return Nette\Utils\Strings::fixEncoding($var); + + } elseif (is_array($var)) { + static $marker; + if ($marker === NULL) { + $marker = uniqid("\x00", TRUE); + } + if (isset($var[$marker])) { + return "\xE2\x80\xA6RECURSION\xE2\x80\xA6"; + + } elseif ($level < Debugger::$maxDepth || !Debugger::$maxDepth) { + $var[$marker] = TRUE; + $res = array(); + foreach ($var as $k => &$v) { + if ($k !== $marker) { + $res[self::jsonDump($k)] = self::jsonDump($v, $level + 1); + } + } + unset($var[$marker]); + return $res; + + } else { + return " \xE2\x80\xA6 "; + } + + } elseif (is_object($var)) { + $arr = (array) $var; + static $list = array(); + if (in_array($var, $list, TRUE)) { + return "\xE2\x80\xA6RECURSION\xE2\x80\xA6"; + + } elseif ($level < Debugger::$maxDepth || !Debugger::$maxDepth) { + $list[] = $var; + $res = array("\x00" => '(object) ' . get_class($var)); + foreach ($arr as $k => &$v) { + if ($k[0] === "\x00") { + $k = substr($k, strrpos($k, "\x00") + 1); + } + $res[self::jsonDump($k)] = self::jsonDump($v, $level + 1); + } + array_pop($list); + return $res; + + } else { + return " \xE2\x80\xA6 "; + } + + } elseif (is_resource($var)) { + return "resource " . get_resource_type($var); + + } else { + return "unknown type"; + } + } + +} diff --git a/apigen/libs/Nette/Nette/Diagnostics/Helpers.php b/apigen/libs/Nette/Nette/Diagnostics/Helpers.php new file mode 100644 index 00000000000..6361256b885 --- /dev/null +++ b/apigen/libs/Nette/Nette/Diagnostics/Helpers.php @@ -0,0 +1,233 @@ +href(strtr(Debugger::$editor, array('%file' => rawurlencode($file), '%line' => $line))) + ->title("$file:$line") + ->setHtml(htmlSpecialChars(rtrim($dir, DIRECTORY_SEPARATOR)) . DIRECTORY_SEPARATOR . '' . htmlSpecialChars(basename($file)) . ''); + } else { + return Nette\Utils\Html::el('span')->setText($file); + } + } + + + + /** + * Internal dump() implementation. + * @param mixed variable to dump + * @param int current recursion level + * @return string + */ + public static function htmlDump(&$var, $level = 0) + { + static $tableUtf, $tableBin, $reBinary = '#[^\x09\x0A\x0D\x20-\x7E\xA0-\x{10FFFF}]#u'; + if ($tableUtf === NULL) { + foreach (range("\x00", "\xFF") as $ch) { + if (ord($ch) < 32 && strpos("\r\n\t", $ch) === FALSE) { + $tableUtf[$ch] = $tableBin[$ch] = '\\x' . str_pad(dechex(ord($ch)), 2, '0', STR_PAD_LEFT); + } elseif (ord($ch) < 127) { + $tableUtf[$ch] = $tableBin[$ch] = $ch; + } else { + $tableUtf[$ch] = $ch; $tableBin[$ch] = '\\x' . dechex(ord($ch)); + } + } + $tableBin["\\"] = '\\\\'; + $tableBin["\r"] = '\\r'; + $tableBin["\n"] = '\\n'; + $tableBin["\t"] = '\\t'; + $tableUtf['\\x'] = $tableBin['\\x'] = '\\\\x'; + } + + if (is_bool($var)) { + return '' . ($var ? 'TRUE' : 'FALSE') . "\n"; + + } elseif ($var === NULL) { + return "NULL\n"; + + } elseif (is_int($var)) { + return "$var\n"; + + } elseif (is_float($var)) { + $var = var_export($var, TRUE); + if (strpos($var, '.') === FALSE) { + $var .= '.0'; + } + return "$var\n"; + + } elseif (is_string($var)) { + if (Debugger::$maxLen && strlen($var) > Debugger::$maxLen) { + $s = htmlSpecialChars(substr($var, 0, Debugger::$maxLen), ENT_NOQUOTES, 'ISO-8859-1') . ' ... '; + } else { + $s = htmlSpecialChars($var, ENT_NOQUOTES, 'ISO-8859-1'); + } + $s = strtr($s, preg_match($reBinary, $s) || preg_last_error() ? $tableBin : $tableUtf); + $len = strlen($var); + return "\"$s\"" . ($len > 1 ? " ($len)" : "") . "\n"; + + } elseif (is_array($var)) { + $s = 'array(' . count($var) . ") "; + $space = str_repeat($space1 = ' ', $level); + $brackets = range(0, count($var) - 1) === array_keys($var) ? "[]" : "{}"; + + static $marker; + if ($marker === NULL) { + $marker = uniqid("\x00", TRUE); + } + if (empty($var)) { + + } elseif (isset($var[$marker])) { + $brackets = $var[$marker]; + $s .= "$brackets[0] *RECURSION* $brackets[1]"; + + } elseif ($level < Debugger::$maxDepth || !Debugger::$maxDepth) { + $s .= "$brackets[0]\n"; + $var[$marker] = $brackets; + foreach ($var as $k => &$v) { + if ($k === $marker) { + continue; + } + $k = strtr($k, preg_match($reBinary, $k) || preg_last_error() ? $tableBin : $tableUtf); + $k = htmlSpecialChars(preg_match('#^\w+$#', $k) ? $k : "\"$k\""); + $s .= "$space$space1$k => " . self::htmlDump($v, $level + 1); + } + unset($var[$marker]); + $s .= "$space$brackets[1]"; + + } else { + $s .= "$brackets[0] ... $brackets[1]"; + } + return $s . "\n"; + + } elseif (is_object($var)) { + if ($var instanceof \Closure) { + $rc = new \ReflectionFunction($var); + $arr = array(); + foreach ($rc->getParameters() as $param) { + $arr[] = '$' . $param->getName(); + } + $arr = array('file' => $rc->getFileName(), 'line' => $rc->getStartLine(), 'parameters' => implode(', ', $arr)); + } else { + $arr = (array) $var; + } + $s = '' . get_class($var) . "(" . count($arr) . ") "; + $space = str_repeat($space1 = ' ', $level); + + static $list = array(); + if (empty($arr)) { + + } elseif (in_array($var, $list, TRUE)) { + $s .= "{ *RECURSION* }"; + + } elseif ($level < Debugger::$maxDepth || !Debugger::$maxDepth || $var instanceof \Closure) { + $s .= "{\n"; + $list[] = $var; + foreach ($arr as $k => &$v) { + $m = ''; + if ($k[0] === "\x00") { + $m = ' ' . ($k[1] === '*' ? 'protected' : 'private') . ''; + $k = substr($k, strrpos($k, "\x00") + 1); + } + $k = strtr($k, preg_match($reBinary, $k) || preg_last_error() ? $tableBin : $tableUtf); + $k = htmlSpecialChars(preg_match('#^\w+$#', $k) ? $k : "\"$k\""); + $s .= "$space$space1$k$m => " . self::htmlDump($v, $level + 1); + } + array_pop($list); + $s .= "$space}"; + + } else { + $s .= "{ ... }"; + } + return $s . "\n"; + + } elseif (is_resource($var)) { + $type = get_resource_type($var); + $s = '' . htmlSpecialChars($type) . " resource "; + + static $info = array('stream' => 'stream_get_meta_data', 'curl' => 'curl_getinfo'); + if (isset($info[$type])) { + $space = str_repeat($space1 = ' ', $level); + $s .= "{\n"; + foreach (call_user_func($info[$type], $var) as $k => $v) { + $s .= $space . $space1 . '' . htmlSpecialChars($k) . " => " . self::htmlDump($v, $level + 1); + } + $s .= "$space}"; + } + return $s . "\n"; + + } else { + return "unknown type\n"; + } + } + + + + /** + * Dumps variable. + * @param string + * @return string + */ + public static function clickableDump($dump, $collapsed = FALSE) + { + return '
' . preg_replace_callback(
+			'#^( *)((?>[^(\r\n]{1,200}))\((\d+)\) #m',
+			function ($m) use ($collapsed) {
+				return "$m[1]'
+					: ' ');
+			},
+			self::htmlDump($dump)
+		) . '
'; + } + + + + public static function findTrace(array $trace, $method, & $index = NULL) + { + $m = explode('::', $method); + foreach ($trace as $i => $item) { + if (isset($item['function']) && $item['function'] === end($m) + && isset($item['class']) === isset($m[1]) + && (!isset($item['class']) || $item['class'] === $m[0] || is_subclass_of($item['class'], $m[0]))) + { + $index = $i; + return $item; + } + } + } + +} diff --git a/apigen/libs/Nette/Nette/Diagnostics/IBarPanel.php b/apigen/libs/Nette/Nette/Diagnostics/IBarPanel.php new file mode 100644 index 00000000000..97262b59dbe --- /dev/null +++ b/apigen/libs/Nette/Nette/Diagnostics/IBarPanel.php @@ -0,0 +1,38 @@ +directory)) { + throw new Nette\DirectoryNotFoundException("Directory '$this->directory' is not found or is not directory."); + } + + if (is_array($message)) { + $message = implode(' ', $message); + } + $res = error_log(trim($message) . PHP_EOL, 3, $this->directory . '/' . strtolower($priority) . '.log'); + + if (($priority === self::ERROR || $priority === self::CRITICAL) && $this->email && $this->mailer + && @filemtime($this->directory . '/email-sent') + self::$emailSnooze < time() // @ - file may not exist + && @file_put_contents($this->directory . '/email-sent', 'sent') // @ - file may not be writable + ) { + Nette\Callback::create($this->mailer)->invoke($message, $this->email); + } + return $res; + } + + + + /** + * Default mailer. + * @param string + * @param string + * @return void + */ + public static function defaultMailer($message, $email) + { + $host = php_uname('n'); + foreach (array('HTTP_HOST','SERVER_NAME', 'HOSTNAME') as $item) { + if (isset($_SERVER[$item])) { + $host = $_SERVER[$item]; break; + } + } + + $parts = str_replace( + array("\r\n", "\n"), + array("\n", PHP_EOL), + array( + 'headers' => implode("\n", array( + "From: noreply@$host", + 'X-Mailer: Nette Framework', + 'Content-Type: text/plain; charset=UTF-8', + 'Content-Transfer-Encoding: 8bit', + )) . "\n", + 'subject' => "PHP: An error occurred on the server $host", + 'body' => "[" . @date('Y-m-d H:i:s') . "] $message", // @ - timezone may not be set + ) + ); + + mail($email, $parts['subject'], $parts['body'], $parts['headers']); + } + +} diff --git a/apigen/libs/Nette/Nette/Diagnostics/shortcuts.php b/apigen/libs/Nette/Nette/Diagnostics/shortcuts.php new file mode 100644 index 00000000000..b18d20e17a0 --- /dev/null +++ b/apigen/libs/Nette/Nette/Diagnostics/shortcuts.php @@ -0,0 +1,25 @@ + + + + +

Dumped variables

+ +
+ + +

+ + + + + $dump): ?> + + + + + +
+ +
diff --git a/apigen/libs/Nette/Nette/Diagnostics/templates/bar.dumps.tab.phtml b/apigen/libs/Nette/Nette/Diagnostics/templates/bar.dumps.tab.phtml new file mode 100644 index 00000000000..72c5bcb98d8 --- /dev/null +++ b/apigen/libs/Nette/Nette/Diagnostics/templates/bar.dumps.tab.phtml @@ -0,0 +1,14 @@ + +variables diff --git a/apigen/libs/Nette/Nette/Diagnostics/templates/bar.errors.panel.phtml b/apigen/libs/Nette/Nette/Diagnostics/templates/bar.errors.panel.phtml new file mode 100644 index 00000000000..9dbc60465d0 --- /dev/null +++ b/apigen/libs/Nette/Nette/Diagnostics/templates/bar.errors.panel.phtml @@ -0,0 +1,26 @@ + +

Errors

+ +
+ + + $count): list($message, $file, $line) = explode('|', $item) ?> + + + + + +
+
diff --git a/apigen/libs/Nette/Nette/Diagnostics/templates/bar.errors.tab.phtml b/apigen/libs/Nette/Nette/Diagnostics/templates/bar.errors.tab.phtml new file mode 100644 index 00000000000..4eb5b15f77b --- /dev/null +++ b/apigen/libs/Nette/Nette/Diagnostics/templates/bar.errors.tab.phtml @@ -0,0 +1,15 @@ + + errors diff --git a/apigen/libs/Nette/Nette/Diagnostics/templates/bar.memory.tab.phtml b/apigen/libs/Nette/Nette/Diagnostics/templates/bar.memory.tab.phtml new file mode 100644 index 00000000000..b434cc42a47 --- /dev/null +++ b/apigen/libs/Nette/Nette/Diagnostics/templates/bar.memory.tab.phtml @@ -0,0 +1,15 @@ + + MB diff --git a/apigen/libs/Nette/Nette/Diagnostics/templates/bar.phtml b/apigen/libs/Nette/Nette/Diagnostics/templates/bar.phtml new file mode 100644 index 00000000000..4e1000a0dea --- /dev/null +++ b/apigen/libs/Nette/Nette/Diagnostics/templates/bar.phtml @@ -0,0 +1,616 @@ + + + + + + + + +  + + + + + + + + + + $panel): if (!$panel['panel']) continue; ?> +
+
+ +
+ ¤ + × +
+
+
+ + +
+
+
    + + +
  • ', trim($panel['tab']), ''; endif ?>
  • + +
  • ×
  • +
+
+
+ + + +
+ + + + diff --git a/apigen/libs/Nette/Nette/Diagnostics/templates/bar.time.tab.phtml b/apigen/libs/Nette/Nette/Diagnostics/templates/bar.time.tab.phtml new file mode 100644 index 00000000000..4bcd33b0d51 --- /dev/null +++ b/apigen/libs/Nette/Nette/Diagnostics/templates/bar.time.tab.phtml @@ -0,0 +1,15 @@ + + ms diff --git a/apigen/libs/Nette/Nette/Diagnostics/templates/bluescreen.phtml b/apigen/libs/Nette/Nette/Diagnostics/templates/bluescreen.phtml new file mode 100644 index 00000000000..2e9cc9ea136 --- /dev/null +++ b/apigen/libs/Nette/Nette/Diagnostics/templates/bluescreen.phtml @@ -0,0 +1,644 @@ + 'Fatal Error', + E_USER_ERROR => 'User Error', + E_RECOVERABLE_ERROR => 'Recoverable Error', + E_CORE_ERROR => 'Core Error', + E_COMPILE_ERROR => 'Compile Error', + E_PARSE => 'Parse Error', + E_WARNING => 'Warning', + E_CORE_WARNING => 'Core Warning', + E_COMPILE_WARNING => 'Compile Warning', + E_USER_WARNING => 'User Warning', + E_NOTICE => 'Notice', + E_USER_NOTICE => 'User Notice', + E_STRICT => 'Strict', + E_DEPRECATED => 'Deprecated', + E_USER_DEPRECATED => 'User Deprecated', +); + +$title = ($exception instanceof Nette\FatalErrorException && isset($errorTypes[$exception->getSeverity()])) ? $errorTypes[$exception->getSeverity()] : get_class($exception); + +$expandPath = NETTE_DIR . DIRECTORY_SEPARATOR; // . 'Utils' . DIRECTORY_SEPARATOR . 'Object'; +$counter = 0; + +?>
+ + + + + + + <?php echo htmlspecialchars($title) ?> + + + + + + + +
+
+
+

getCode() ? ' #' . $exception->getCode() : '') ?>

+ +

getMessage()) ?> getMessage())) ?>" id="netteBsSearch">search►

+
+ + + + + + + +
+

Caused by 2) ? '►' : '▼' ?>

+ +
+
+

getCode() ? ' #' . $ex->getCode() : '')) ?>

+ +

getMessage()) ?>

+
+ + + + + + + +
+

+ +
+ +
+ + + + + getTrace(); $expanded = NULL ?> + getFile(), $expandPath) === 0) { + foreach ($stack as $key => $row) { + if (isset($row['file']) && strpos($row['file'], $expandPath) !== 0) { $expanded = $key; break; } + } + } ?> + +
+

Source file

+ +
+

File: getFile(), $ex->getLine()) ?>   Line: getLine() ?>

+ getFile())): ?>getFile(), $ex->getLine(), 15, isset($ex->context) ? $ex->context : NULL) ?> +
+ + + + + +
+

Call stack

+ +
+
    + $row): ?> +
  1. + + + + + inner-code + + + ">source   + + + + + (">arguments ) +

    + + +
    "> + + getParameters(); + } catch (\Exception $e) { + $params = array(); + } + foreach ($row['args'] as $k => $v) { + echo '\n"; + } + ?> +
    ', htmlspecialchars(isset($params[$k]) ? '$' . $params[$k]->name : "#$k"), ''; + echo Helpers::clickableDump($v); + echo "
    +
    + + + + +
    id="netteBsSrc">
    + + +
  2. + +
+
+ + + + + context) && is_array($ex->context)):?> +
+

Variables

+ +
+
+ + context as $k => $v) { + echo '\n"; + } + ?> +
$', htmlspecialchars($k), '', Helpers::clickableDump($v), "
+
+
+ + + getPrevious()) || (isset($ex->previous) && $ex = $ex->previous)); ?> +
' ?> + + + + + + + +
+

+ +
+ +
+ + + + +
+

Environment

+ +
+

$_SERVER

+
+ + $v) echo '\n"; + ?> +
', htmlspecialchars($k), '', Helpers::clickableDump($v), "
+
+ + +

$_SESSION

+
+ +

empty

+ + + $v) echo '\n"; + ?> +
', htmlspecialchars($k), '', $k === '__NF' ? 'Nette Session' : Helpers::clickableDump($v), "
+ +
+ + + +

Nette Session

+
+ + $v) echo '\n"; + ?> +
', htmlspecialchars($k), '', Helpers::clickableDump($v), "
+
+ + + + +

Constants

+
+ + $v) { + echo ''; + echo '\n"; + } + ?> +
', htmlspecialchars($k), '', Helpers::clickableDump($v), "
+
+ + + +

Included files ()

+
+ + \n"; + } + ?> +
', htmlspecialchars($v), "
+
+ + +

Configuration options

+
+ |.+$#s', '', ob_get_clean()) ?> +
+
+ + + +
+

HTTP request

+ +
+ +

Headers

+
+ + $v) echo '\n"; + ?> +
', htmlspecialchars($k), '', htmlspecialchars($v), "
+
+ + + + +

$

+ +

empty

+ +
+ + $v) echo '\n"; + ?> +
', htmlspecialchars($k), '', Helpers::clickableDump($v), "
+
+ + +
+ + + +
+

HTTP response

+ +
+

Headers

+ +
';
+			?>
+ +

no headers

+ +
+ + + + +
+

+ +
+ +
+ + + + +
    +
  • Report generated at
  • + +
  • + +
  • + +
  • PHP
  • +
  • +
  • (revision )
  • +
+
+
+ + + + diff --git a/apigen/libs/Nette/Nette/Diagnostics/templates/error.phtml b/apigen/libs/Nette/Nette/Diagnostics/templates/error.phtml new file mode 100644 index 00000000000..9b0f1d9daef --- /dev/null +++ b/apigen/libs/Nette/Nette/Diagnostics/templates/error.phtml @@ -0,0 +1,26 @@ + + + + + + +Server Error + +

Server Error

+ +

We're sorry! The server encountered an internal error and was unable to complete your request. Please try again later.

+ +

error 500

diff --git a/apigen/libs/Nette/Nette/Diagnostics/templates/netteQ.js b/apigen/libs/Nette/Nette/Diagnostics/templates/netteQ.js new file mode 100644 index 00000000000..68cf3a45622 --- /dev/null +++ b/apigen/libs/Nette/Nette/Diagnostics/templates/netteQ.js @@ -0,0 +1,332 @@ +/** + * NetteQ + * + * This file is part of the Nette Framework. + * Copyright (c) 2004, 2012 David Grudl (http://davidgrudl.com) + */ + +var Nette = Nette || {}; + +(function(){ + +// simple class builder +Nette.Class = function(def) { + var cl = def.constructor || function(){}, nm, __hasProp = Object.prototype.hasOwnProperty; + delete def.constructor; + + if (def.Extends) { + var foo = function() { this.constructor = cl; }; + foo.prototype = def.Extends.prototype; + cl.prototype = new foo(); + delete def.Extends; + } + + if (def.Static) { + for (nm in def.Static) { if (__hasProp.call(def.Static, nm)) cl[nm] = def.Static[nm]; } + delete def.Static; + } + + for (nm in def) { if (__hasProp.call(def, nm)) cl.prototype[nm] = def[nm]; } + return cl; +}; + + +// supported cross-browser selectors: #id | div | div.class | .class +Nette.Q = Nette.Class({ + + Static: { + factory: function(selector) { + return new Nette.Q(selector); + }, + + implement: function(methods) { + var nm, fn = Nette.Q.implement, prot = Nette.Q.prototype, __hasProp = Object.prototype.hasOwnProperty; + for (nm in methods) { + if (!__hasProp.call(methods, nm)) { + continue; + } + fn[nm] = methods[nm]; + prot[nm] = (function(nm){ + return function() { return this.each(fn[nm], arguments); }; + }(nm)); + } + } + }, + + constructor: function(selector) { + if (typeof selector === "string") { + selector = this._find(document, selector); + + } else if (!selector || selector.nodeType || selector.length === undefined || selector === window) { + selector = [selector]; + } + + for (var i = 0, len = selector.length; i < len; i++) { + if (selector[i]) { this[this.length++] = selector[i]; } + } + }, + + length: 0, + + find: function(selector) { + return new Nette.Q(this._find(this[0], selector)); + }, + + _find: function(context, selector) { + if (!context || !selector) { + return []; + + } else if (document.querySelectorAll) { + return context.querySelectorAll(selector); + + } else if (selector.charAt(0) === '#') { // #id + return [document.getElementById(selector.substring(1))]; + + } else { // div | div.class | .class + selector = selector.split('.'); + var elms = context.getElementsByTagName(selector[0] || '*'); + + if (selector[1]) { + var list = [], pattern = new RegExp('(^|\\s)' + selector[1] + '(\\s|$)'); + for (var i = 0, len = elms.length; i < len; i++) { + if (pattern.test(elms[i].className)) { list.push(elms[i]); } + } + return list; + } else { + return elms; + } + } + }, + + dom: function() { + return this[0]; + }, + + each: function(callback, args) { + for (var i = 0, res; i < this.length; i++) { + if ((res = callback.apply(this[i], args || [])) !== undefined) { return res; } + } + return this; + } +}); + + +var $ = Nette.Q.factory, fn = Nette.Q.implement; + +fn({ + // cross-browser event attach + bind: function(event, handler) { + if (document.addEventListener && (event === 'mouseenter' || event === 'mouseleave')) { // simulate mouseenter & mouseleave using mouseover & mouseout + var old = handler; + event = event === 'mouseenter' ? 'mouseover' : 'mouseout'; + handler = function(e) { + for (var target = e.relatedTarget; target; target = target.parentNode) { + if (target === this) { return; } // target must not be inside this + } + old.call(this, e); + }; + } + + var data = fn.data.call(this), + events = data.events = data.events || {}; // use own handler queue + + if (!events[event]) { + var el = this, // fixes 'this' in iE + handlers = events[event] = [], + generic = fn.bind.genericHandler = function(e) { // dont worry, 'e' is passed in IE + if (!e.target) { + e.target = e.srcElement; + } + if (!e.preventDefault) { + e.preventDefault = function() { e.returnValue = false; }; + } + if (!e.stopPropagation) { + e.stopPropagation = function() { e.cancelBubble = true; }; + } + e.stopImmediatePropagation = function() { this.stopPropagation(); i = handlers.length; }; + for (var i = 0; i < handlers.length; i++) { + handlers[i].call(el, e); + } + }; + + if (document.addEventListener) { // non-IE + this.addEventListener(event, generic, false); + } else if (document.attachEvent) { // IE < 9 + this.attachEvent('on' + event, generic); + } + } + + events[event].push(handler); + }, + + // adds class to element + addClass: function(className) { + this.className = this.className.replace(/^|\s+|$/g, ' ').replace(' '+className+' ', ' ') + ' ' + className; + }, + + // removes class from element + removeClass: function(className) { + this.className = this.className.replace(/^|\s+|$/g, ' ').replace(' '+className+' ', ' '); + }, + + // tests whether element has given class + hasClass: function(className) { + return this.className.replace(/^|\s+|$/g, ' ').indexOf(' '+className+' ') > -1; + }, + + show: function() { + var dsp = fn.show.display = fn.show.display || {}, tag = this.tagName; + if (!dsp[tag]) { + var el = document.body.appendChild(document.createElement(tag)); + dsp[tag] = fn.css.call(el, 'display'); + } + this.style.display = dsp[tag]; + }, + + hide: function() { + this.style.display = 'none'; + }, + + css: function(property) { + return this.currentStyle ? this.currentStyle[property] + : (window.getComputedStyle ? document.defaultView.getComputedStyle(this, null).getPropertyValue(property) : undefined); + }, + + data: function() { + return this.nette ? this.nette : this.nette = {}; + }, + + val: function() { + var i; + if (!this.nodeName) { // radio + for (i = 0, len = this.length; i < len; i++) { + if (this[i].checked) { return this[i].value; } + } + return null; + } + + if (this.nodeName.toLowerCase() === 'select') { + var index = this.selectedIndex, options = this.options; + + if (index < 0) { + return null; + + } else if (this.type === 'select-one') { + return options[index].value; + } + + for (i = 0, values = [], len = options.length; i < len; i++) { + if (options[i].selected) { values.push(options[i].value); } + } + return values; + } + + if (this.type === 'checkbox') { + return this.checked; + } + + return this.value.replace(/^\s+|\s+$/g, ''); + }, + + _trav: function(el, selector, fce) { + selector = selector.split('.'); + while (el && !(el.nodeType === 1 && + (!selector[0] || el.tagName.toLowerCase() === selector[0]) && + (!selector[1] || fn.hasClass.call(el, selector[1])))) { + el = el[fce]; + } + return $(el); + }, + + closest: function(selector) { + return fn._trav(this, selector, 'parentNode'); + }, + + prev: function(selector) { + return fn._trav(this.previousSibling, selector, 'previousSibling'); + }, + + next: function(selector) { + return fn._trav(this.nextSibling, selector, 'nextSibling'); + }, + + // returns total offset for element + offset: function(coords) { + var el = this, ofs = coords ? {left: -coords.left || 0, top: -coords.top || 0} : fn.position.call(el); + while (el = el.offsetParent) { ofs.left += el.offsetLeft; ofs.top += el.offsetTop; } + + if (coords) { + fn.position.call(this, {left: -ofs.left, top: -ofs.top}); + } else { + return ofs; + } + }, + + // returns current position or move to new position + position: function(coords) { + if (coords) { + if (this.nette && this.nette.onmove) { + this.nette.onmove.call(this, coords); + } + this.style.left = (coords.left || 0) + 'px'; + this.style.top = (coords.top || 0) + 'px'; + } else { + return {left: this.offsetLeft, top: this.offsetTop, width: this.offsetWidth, height: this.offsetHeight}; + } + }, + + // makes element draggable + draggable: function(options) { + var $el = $(this), dE = document.documentElement, started; + options = options || {}; + + $(options.handle || this).bind('mousedown', function(e) { + e.preventDefault(); + e.stopPropagation(); + + if (fn.draggable.binded) { // missed mouseup out of window? + return dE.onmouseup(e); + } + + var deltaX = $el[0].offsetLeft - e.clientX, deltaY = $el[0].offsetTop - e.clientY; + fn.draggable.binded = true; + started = false; + + dE.onmousemove = function(e) { + e = e || event; + if (!started) { + if (options.draggedClass) { + $el.addClass(options.draggedClass); + } + if (options.start) { + options.start(e, $el); + } + started = true; + } + $el.position({left: e.clientX + deltaX, top: e.clientY + deltaY}); + return false; + }; + + dE.onmouseup = function(e) { + if (started) { + if (options.draggedClass) { + $el.removeClass(options.draggedClass); + } + if (options.stop) { + options.stop(e || event, $el); + } + } + fn.draggable.binded = dE.onmousemove = dE.onmouseup = null; + return false; + }; + + }).bind('click', function(e) { + if (started) { + e.stopImmediatePropagation(); + preventClick = false; + } + }); + } +}); + +})(); diff --git a/apigen/libs/Nette/Nette/Forms/Container.php b/apigen/libs/Nette/Nette/Forms/Container.php new file mode 100644 index 00000000000..3ce3bbf3275 --- /dev/null +++ b/apigen/libs/Nette/Nette/Forms/Container.php @@ -0,0 +1,493 @@ +getForm(FALSE); + if (!$form || !$form->isAnchored() || !$form->isSubmitted()) { + $this->setValues($values, $erase); + } + return $this; + } + + + + /** + * Fill-in with values. + * @param array|Traversable values used to fill the form + * @param bool erase other controls? + * @return Container provides a fluent interface + */ + public function setValues($values, $erase = FALSE) + { + if ($values instanceof \Traversable) { + $values = iterator_to_array($values); + + } elseif (!is_array($values)) { + throw new Nette\InvalidArgumentException("First parameter must be an array, " . gettype($values) ." given."); + } + + foreach ($this->getComponents() as $name => $control) { + if ($control instanceof IControl) { + if (array_key_exists($name, $values)) { + $control->setValue($values[$name]); + + } elseif ($erase) { + $control->setValue(NULL); + } + + } elseif ($control instanceof Container) { + if (array_key_exists($name, $values)) { + $control->setValues($values[$name], $erase); + + } elseif ($erase) { + $control->setValues(array(), $erase); + } + } + } + return $this; + } + + + + /** + * Returns the values submitted by the form. + * @param bool return values as an array? + * @return Nette\ArrayHash|array + */ + public function getValues($asArray = FALSE) + { + $values = $asArray ? array() : new Nette\ArrayHash; + foreach ($this->getComponents() as $name => $control) { + if ($control instanceof IControl && !$control->isDisabled() && !$control instanceof ISubmitterControl) { + $values[$name] = $control->getValue(); + + } elseif ($control instanceof Container) { + $values[$name] = $control->getValues($asArray); + } + } + return $values; + } + + + + /********************* validation ****************d*g**/ + + + + /** + * Is form valid? + * @return bool + */ + public function isValid() + { + if ($this->valid === NULL) { + $this->validate(); + } + return $this->valid; + } + + + + /** + * Performs the server side validation. + * @return void + */ + public function validate() + { + $this->valid = TRUE; + $this->onValidate($this); + foreach ($this->getControls() as $control) { + if (!$control->getRules()->validate()) { + $this->valid = FALSE; + } + } + } + + + + /********************* form building ****************d*g**/ + + + + /** + * @param ControlGroup + * @return Container provides a fluent interface + */ + public function setCurrentGroup(ControlGroup $group = NULL) + { + $this->currentGroup = $group; + return $this; + } + + + + /** + * Returns current group. + * @return ControlGroup + */ + public function getCurrentGroup() + { + return $this->currentGroup; + } + + + + /** + * Adds the specified component to the IContainer. + * @param IComponent + * @param string + * @param string + * @return Container provides a fluent interface + * @throws Nette\InvalidStateException + */ + public function addComponent(Nette\ComponentModel\IComponent $component, $name, $insertBefore = NULL) + { + parent::addComponent($component, $name, $insertBefore); + if ($this->currentGroup !== NULL && $component instanceof IControl) { + $this->currentGroup->add($component); + } + return $this; + } + + + + /** + * Iterates over all form controls. + * @return \ArrayIterator + */ + public function getControls() + { + return $this->getComponents(TRUE, 'Nette\Forms\IControl'); + } + + + + /** + * Returns form. + * @param bool throw exception if form doesn't exist? + * @return Form + */ + public function getForm($need = TRUE) + { + return $this->lookup('Nette\Forms\Form', $need); + } + + + + /********************* control factories ****************d*g**/ + + + + /** + * Adds single-line text input control to the form. + * @param string control name + * @param string label + * @param int width of the control + * @param int maximum number of characters the user may enter + * @return Nette\Forms\Controls\TextInput + */ + public function addText($name, $label = NULL, $cols = NULL, $maxLength = NULL) + { + return $this[$name] = new Controls\TextInput($label, $cols, $maxLength); + } + + + + /** + * Adds single-line text input control used for sensitive input such as passwords. + * @param string control name + * @param string label + * @param int width of the control + * @param int maximum number of characters the user may enter + * @return Nette\Forms\Controls\TextInput + */ + public function addPassword($name, $label = NULL, $cols = NULL, $maxLength = NULL) + { + $control = new Controls\TextInput($label, $cols, $maxLength); + $control->setType('password'); + return $this[$name] = $control; + } + + + + /** + * Adds multi-line text input control to the form. + * @param string control name + * @param string label + * @param int width of the control + * @param int height of the control in text lines + * @return Nette\Forms\Controls\TextArea + */ + public function addTextArea($name, $label = NULL, $cols = 40, $rows = 10) + { + return $this[$name] = new Controls\TextArea($label, $cols, $rows); + } + + + + /** + * Adds control that allows the user to upload files. + * @param string control name + * @param string label + * @return Nette\Forms\Controls\UploadControl + */ + public function addUpload($name, $label = NULL) + { + return $this[$name] = new Controls\UploadControl($label); + } + + + + /** + * Adds hidden form control used to store a non-displayed value. + * @param string control name + * @param mixed default value + * @return Nette\Forms\Controls\HiddenField + */ + public function addHidden($name, $default = NULL) + { + $control = new Controls\HiddenField; + $control->setDefaultValue($default); + return $this[$name] = $control; + } + + + + /** + * Adds check box control to the form. + * @param string control name + * @param string caption + * @return Nette\Forms\Controls\Checkbox + */ + public function addCheckbox($name, $caption = NULL) + { + return $this[$name] = new Controls\Checkbox($caption); + } + + + + /** + * Adds set of radio button controls to the form. + * @param string control name + * @param string label + * @param array options from which to choose + * @return Nette\Forms\Controls\RadioList + */ + public function addRadioList($name, $label = NULL, array $items = NULL) + { + return $this[$name] = new Controls\RadioList($label, $items); + } + + + + /** + * Adds select box control that allows single item selection. + * @param string control name + * @param string label + * @param array items from which to choose + * @param int number of rows that should be visible + * @return Nette\Forms\Controls\SelectBox + */ + public function addSelect($name, $label = NULL, array $items = NULL, $size = NULL) + { + return $this[$name] = new Controls\SelectBox($label, $items, $size); + } + + + + /** + * Adds select box control that allows multiple item selection. + * @param string control name + * @param string label + * @param array options from which to choose + * @param int number of rows that should be visible + * @return Nette\Forms\Controls\MultiSelectBox + */ + public function addMultiSelect($name, $label = NULL, array $items = NULL, $size = NULL) + { + return $this[$name] = new Controls\MultiSelectBox($label, $items, $size); + } + + + + /** + * Adds button used to submit form. + * @param string control name + * @param string caption + * @return Nette\Forms\Controls\SubmitButton + */ + public function addSubmit($name, $caption = NULL) + { + return $this[$name] = new Controls\SubmitButton($caption); + } + + + + /** + * Adds push buttons with no default behavior. + * @param string control name + * @param string caption + * @return Nette\Forms\Controls\Button + */ + public function addButton($name, $caption) + { + return $this[$name] = new Controls\Button($caption); + } + + + + /** + * Adds graphical button used to submit form. + * @param string control name + * @param string URI of the image + * @param string alternate text for the image + * @return Nette\Forms\Controls\ImageButton + */ + public function addImage($name, $src = NULL, $alt = NULL) + { + return $this[$name] = new Controls\ImageButton($src, $alt); + } + + + + /** + * Adds naming container to the form. + * @param string name + * @return Container + */ + public function addContainer($name) + { + $control = new Container; + $control->currentGroup = $this->currentGroup; + return $this[$name] = $control; + } + + + + /********************* interface \ArrayAccess ****************d*g**/ + + + + /** + * Adds the component to the container. + * @param string component name + * @param Nette\ComponentModel\IComponent + * @return void + */ + final public function offsetSet($name, $component) + { + $this->addComponent($component, $name); + } + + + + /** + * Returns component specified by name. Throws exception if component doesn't exist. + * @param string component name + * @return Nette\ComponentModel\IComponent + * @throws Nette\InvalidArgumentException + */ + final public function offsetGet($name) + { + return $this->getComponent($name, TRUE); + } + + + + /** + * Does component specified by name exists? + * @param string component name + * @return bool + */ + final public function offsetExists($name) + { + return $this->getComponent($name, FALSE) !== NULL; + } + + + + /** + * Removes component from the container. + * @param string component name + * @return void + */ + final public function offsetUnset($name) + { + $component = $this->getComponent($name, FALSE); + if ($component !== NULL) { + $this->removeComponent($component); + } + } + + + + /** + * Prevents cloning. + */ + final public function __clone() + { + throw new Nette\NotImplementedException('Form cloning is not supported yet.'); + } + + + + /********************* deprecated ****************d*g**/ + + /** @deprecated */ + function addFile($name, $label = NULL) + { + trigger_error(__METHOD__ . '() is deprecated; use addUpload() instead.', E_USER_WARNING); + return $this->addUpload($name, $label); + } + +} diff --git a/apigen/libs/Nette/Nette/Forms/ControlGroup.php b/apigen/libs/Nette/Nette/Forms/ControlGroup.php new file mode 100644 index 00000000000..730d846e47d --- /dev/null +++ b/apigen/libs/Nette/Nette/Forms/ControlGroup.php @@ -0,0 +1,124 @@ +controls = new \SplObjectStorage; + } + + + + /** + * @return ControlGroup provides a fluent interface + */ + public function add() + { + foreach (func_get_args() as $num => $item) { + if ($item instanceof IControl) { + $this->controls->attach($item); + + } elseif ($item instanceof \Traversable || is_array($item)) { + foreach ($item as $control) { + $this->controls->attach($control); + } + + } else { + throw new Nette\InvalidArgumentException("Only IFormControl items are allowed, the #$num parameter is invalid."); + } + } + return $this; + } + + + + /** + * @return array IFormControl + */ + public function getControls() + { + return iterator_to_array($this->controls); + } + + + + /** + * Sets user-specific option. + * Options recognized by DefaultFormRenderer + * - 'label' - textual or Html object label + * - 'visual' - indicates visual group + * - 'container' - container as Html object + * - 'description' - textual or Html object description + * - 'embedNext' - describes how render next group + * + * @param string key + * @param mixed value + * @return ControlGroup provides a fluent interface + */ + public function setOption($key, $value) + { + if ($value === NULL) { + unset($this->options[$key]); + + } else { + $this->options[$key] = $value; + } + return $this; + } + + + + /** + * Returns user-specific option. + * @param string key + * @param mixed default value + * @return mixed + */ + final public function getOption($key, $default = NULL) + { + return isset($this->options[$key]) ? $this->options[$key] : $default; + } + + + + /** + * Returns user-specific options. + * @return array + */ + final public function getOptions() + { + return $this->options; + } + +} diff --git a/apigen/libs/Nette/Nette/Forms/Controls/BaseControl.php b/apigen/libs/Nette/Nette/Forms/Controls/BaseControl.php new file mode 100644 index 00000000000..665668abf94 --- /dev/null +++ b/apigen/libs/Nette/Nette/Forms/Controls/BaseControl.php @@ -0,0 +1,666 @@ +monitor('Nette\Forms\Form'); + parent::__construct(); + $this->control = Html::el('input'); + $this->label = Html::el('label'); + $this->caption = $caption; + $this->rules = new Nette\Forms\Rules($this); + } + + + + /** + * This method will be called when the component becomes attached to Form. + * @param Nette\Forms\IComponent + * @return void + */ + protected function attached($form) + { + if (!$this->disabled && $form instanceof Form && $form->isAnchored() && $form->isSubmitted()) { + $this->htmlName = NULL; + $this->loadHttpData(); + } + } + + + + /** + * Returns form. + * @param bool throw exception if form doesn't exist? + * @return Nette\Forms\Form + */ + public function getForm($need = TRUE) + { + return $this->lookup('Nette\Forms\Form', $need); + } + + + + /** + * Returns HTML name of control. + * @return string + */ + public function getHtmlName() + { + if ($this->htmlName === NULL) { + $name = str_replace(self::NAME_SEPARATOR, '][', $this->lookupPath('Nette\Forms\Form'), $count); + if ($count) { + $name = substr_replace($name, '', strpos($name, ']'), 1) . ']'; + } + if (is_numeric($name) || in_array($name, array('attributes','children','elements','focus','length','reset','style','submit','onsubmit'))) { + $name .= '_'; + } + $this->htmlName = $name; + } + return $this->htmlName; + } + + + + /** + * Changes control's HTML id. + * @param string new ID, or FALSE or NULL + * @return BaseControl provides a fluent interface + */ + public function setHtmlId($id) + { + $this->htmlId = $id; + return $this; + } + + + + /** + * Returns control's HTML id. + * @return string + */ + public function getHtmlId() + { + if ($this->htmlId === FALSE) { + return NULL; + + } elseif ($this->htmlId === NULL) { + $this->htmlId = sprintf(self::$idMask, $this->getForm()->getName(), $this->lookupPath('Nette\Forms\Form')); + } + return $this->htmlId; + } + + + + /** + * Changes control's HTML attribute. + * @param string name + * @param mixed value + * @return BaseControl provides a fluent interface + */ + public function setAttribute($name, $value = TRUE) + { + $this->control->$name = $value; + return $this; + } + + + + /** + * Sets user-specific option. + * Options recognized by DefaultFormRenderer + * - 'description' - textual or Html object description + * + * @param string key + * @param mixed value + * @return BaseControl provides a fluent interface + */ + public function setOption($key, $value) + { + if ($value === NULL) { + unset($this->options[$key]); + + } else { + $this->options[$key] = $value; + } + return $this; + } + + + + /** + * Returns user-specific option. + * @param string key + * @param mixed default value + * @return mixed + */ + final public function getOption($key, $default = NULL) + { + return isset($this->options[$key]) ? $this->options[$key] : $default; + } + + + + /** + * Returns user-specific options. + * @return array + */ + final public function getOptions() + { + return $this->options; + } + + + + /********************* translator ****************d*g**/ + + + + /** + * Sets translate adapter. + * @param Nette\Localization\ITranslator + * @return BaseControl provides a fluent interface + */ + public function setTranslator(Nette\Localization\ITranslator $translator = NULL) + { + $this->translator = $translator; + return $this; + } + + + + /** + * Returns translate adapter. + * @return Nette\Localization\ITranslator|NULL + */ + final public function getTranslator() + { + if ($this->translator === TRUE) { + return $this->getForm(FALSE) ? $this->getForm()->getTranslator() : NULL; + } + return $this->translator; + } + + + + /** + * Returns translated string. + * @param string + * @param int plural count + * @return string + */ + public function translate($s, $count = NULL) + { + $translator = $this->getTranslator(); + return $translator === NULL || $s == NULL ? $s : $translator->translate($s, $count); // intentionally == + } + + + + /********************* interface IFormControl ****************d*g**/ + + + + /** + * Sets control's value. + * @param mixed + * @return BaseControl provides a fluent interface + */ + public function setValue($value) + { + $this->value = $value; + return $this; + } + + + + /** + * Returns control's value. + * @return mixed + */ + public function getValue() + { + return $this->value; + } + + + + /** + * Is control filled? + * @return bool + */ + public function isFilled() + { + return (string) $this->getValue() !== ''; // NULL, FALSE, '' ==> FALSE + } + + + + /** + * Sets control's default value. + * @param mixed + * @return BaseControl provides a fluent interface + */ + public function setDefaultValue($value) + { + $form = $this->getForm(FALSE); + if (!$form || !$form->isAnchored() || !$form->isSubmitted()) { + $this->setValue($value); + } + return $this; + } + + + + /** + * Loads HTTP data. + * @return void + */ + public function loadHttpData() + { + $path = explode('[', strtr(str_replace(array('[]', ']'), '', $this->getHtmlName()), '.', '_')); + $this->setValue(Nette\Utils\Arrays::get($this->getForm()->getHttpData(), $path, NULL)); + } + + + + /** + * Disables or enables control. + * @param bool + * @return BaseControl provides a fluent interface + */ + public function setDisabled($value = TRUE) + { + $this->disabled = (bool) $value; + return $this; + } + + + + /** + * Is control disabled? + * @return bool + */ + public function isDisabled() + { + return $this->disabled; + } + + + + /********************* rendering ****************d*g**/ + + + + /** + * Generates control's HTML element. + * @return Nette\Utils\Html + */ + public function getControl() + { + $this->setOption('rendered', TRUE); + + $control = clone $this->control; + $control->name = $this->getHtmlName(); + $control->disabled = $this->disabled; + $control->id = $this->getHtmlId(); + $control->required = $this->isRequired(); + + $rules = self::exportRules($this->rules); + $rules = substr(PHP_VERSION_ID >= 50400 ? json_encode($rules, JSON_UNESCAPED_UNICODE) : json_encode($rules), 1, -1); + $rules = preg_replace('#"([a-z0-9_]+)":#i', '$1:', $rules); + $rules = preg_replace('#(?data('nette-rules', $rules ? $rules : NULL); + + return $control; + } + + + + /** + * Generates label's HTML element. + * @param string + * @return Nette\Utils\Html + */ + public function getLabel($caption = NULL) + { + $label = clone $this->label; + $label->for = $this->getHtmlId(); + if ($caption !== NULL) { + $label->setText($this->translate($caption)); + + } elseif ($this->caption instanceof Html) { + $label->add($this->caption); + + } else { + $label->setText($this->translate($this->caption)); + } + return $label; + } + + + + /** + * Returns control's HTML element template. + * @return Nette\Utils\Html + */ + final public function getControlPrototype() + { + return $this->control; + } + + + + /** + * Returns label's HTML element template. + * @return Nette\Utils\Html + */ + final public function getLabelPrototype() + { + return $this->label; + } + + + + /********************* rules ****************d*g**/ + + + + /** + * Adds a validation rule. + * @param mixed rule type + * @param string message to display for invalid data + * @param mixed optional rule arguments + * @return BaseControl provides a fluent interface + */ + public function addRule($operation, $message = NULL, $arg = NULL) + { + $this->rules->addRule($operation, $message, $arg); + return $this; + } + + + + /** + * Adds a validation condition a returns new branch. + * @param mixed condition type + * @param mixed optional condition arguments + * @return Nette\Forms\Rules new branch + */ + public function addCondition($operation, $value = NULL) + { + return $this->rules->addCondition($operation, $value); + } + + + + /** + * Adds a validation condition based on another control a returns new branch. + * @param Nette\Forms\IControl form control + * @param mixed condition type + * @param mixed optional condition arguments + * @return Nette\Forms\Rules new branch + */ + public function addConditionOn(IControl $control, $operation, $value = NULL) + { + return $this->rules->addConditionOn($control, $operation, $value); + } + + + + /** + * @return Nette\Forms\Rules + */ + final public function getRules() + { + return $this->rules; + } + + + + /** + * Makes control mandatory. + * @param string error message + * @return BaseControl provides a fluent interface + */ + final public function setRequired($message = NULL) + { + return $this->addRule(Form::FILLED, $message); + } + + + + /** + * Is control mandatory? + * @return bool + */ + final public function isRequired() + { + foreach ($this->rules as $rule) { + if ($rule->type === Rule::VALIDATOR && !$rule->isNegative && $rule->operation === Form::FILLED) { + return TRUE; + } + } + return FALSE; + } + + + + /** + * @return array + */ + protected static function exportRules($rules) + { + $payload = array(); + foreach ($rules as $rule) { + if (!is_string($op = $rule->operation)) { + $op = new Nette\Callback($op); + if (!$op->isStatic()) { + continue; + } + } + if ($rule->type === Rule::VALIDATOR) { + $item = array('op' => ($rule->isNegative ? '~' : '') . $op, 'msg' => $rules->formatMessage($rule, FALSE)); + + } elseif ($rule->type === Rule::CONDITION) { + $item = array( + 'op' => ($rule->isNegative ? '~' : '') . $op, + 'rules' => self::exportRules($rule->subRules), + 'control' => $rule->control->getHtmlName() + ); + if ($rule->subRules->getToggles()) { + $item['toggle'] = $rule->subRules->getToggles(); + } + } + + if (is_array($rule->arg)) { + foreach ($rule->arg as $key => $value) { + $item['arg'][$key] = $value instanceof IControl ? (object) array('control' => $value->getHtmlName()) : $value; + } + } elseif ($rule->arg !== NULL) { + $item['arg'] = $rule->arg instanceof IControl ? (object) array('control' => $rule->arg->getHtmlName()) : $rule->arg; + } + + $payload[] = $item; + } + return $payload; + } + + + + /********************* validation ****************d*g**/ + + + + /** + * Equal validator: are control's value and second parameter equal? + * @param Nette\Forms\IControl + * @param mixed + * @return bool + */ + public static function validateEqual(IControl $control, $arg) + { + $value = $control->getValue(); + foreach ((is_array($value) ? $value : array($value)) as $val) { + foreach ((is_array($arg) ? $arg : array($arg)) as $item) { + if ((string) $val === (string) ($item instanceof IControl ? $item->value : $item)) { + return TRUE; + } + } + } + return FALSE; + } + + + + /** + * Filled validator: is control filled? + * @param Nette\Forms\IControl + * @return bool + */ + public static function validateFilled(IControl $control) + { + return $control->isFilled(); + } + + + + /** + * Valid validator: is control valid? + * @param Nette\Forms\IControl + * @return bool + */ + public static function validateValid(IControl $control) + { + return $control->rules->validate(TRUE); + } + + + + /** + * Adds error message to the list. + * @param string error message + * @return void + */ + public function addError($message) + { + if (!in_array($message, $this->errors, TRUE)) { + $this->errors[] = $message; + } + $this->getForm()->addError($message); + } + + + + /** + * Returns errors corresponding to control. + * @return array + */ + public function getErrors() + { + return $this->errors; + } + + + + /** + * @return bool + */ + public function hasErrors() + { + return (bool) $this->errors; + } + + + + /** + * @return void + */ + public function cleanErrors() + { + $this->errors = array(); + } + +} diff --git a/apigen/libs/Nette/Nette/Forms/Controls/Button.php b/apigen/libs/Nette/Nette/Forms/Controls/Button.php new file mode 100644 index 00000000000..aed3b48f8d8 --- /dev/null +++ b/apigen/libs/Nette/Nette/Forms/Controls/Button.php @@ -0,0 +1,60 @@ +control->type = 'button'; + } + + + + /** + * Bypasses label generation. + * @return void + */ + public function getLabel($caption = NULL) + { + return NULL; + } + + + + /** + * Generates control's HTML element. + * @param string + * @return Nette\Utils\Html + */ + public function getControl($caption = NULL) + { + $control = parent::getControl(); + $control->value = $this->translate($caption === NULL ? $this->caption : $caption); + return $control; + } + +} diff --git a/apigen/libs/Nette/Nette/Forms/Controls/Checkbox.php b/apigen/libs/Nette/Nette/Forms/Controls/Checkbox.php new file mode 100644 index 00000000000..049bffde112 --- /dev/null +++ b/apigen/libs/Nette/Nette/Forms/Controls/Checkbox.php @@ -0,0 +1,60 @@ +control->type = 'checkbox'; + $this->value = FALSE; + } + + + + /** + * Sets control's value. + * @param bool + * @return Checkbox provides a fluent interface + */ + public function setValue($value) + { + $this->value = is_scalar($value) ? (bool) $value : FALSE; + return $this; + } + + + + /** + * Generates control's HTML element. + * @return Nette\Utils\Html + */ + public function getControl() + { + return parent::getControl()->checked($this->value); + } + +} diff --git a/apigen/libs/Nette/Nette/Forms/Controls/HiddenField.php b/apigen/libs/Nette/Nette/Forms/Controls/HiddenField.php new file mode 100644 index 00000000000..8ba7f932cb1 --- /dev/null +++ b/apigen/libs/Nette/Nette/Forms/Controls/HiddenField.php @@ -0,0 +1,75 @@ +control->type = 'hidden'; + $this->value = (string) $forcedValue; + $this->forcedValue = $forcedValue; + } + + + + /** + * Bypasses label generation. + * @return void + */ + public function getLabel($caption = NULL) + { + return NULL; + } + + + + /** + * Sets control's value. + * @param string + * @return HiddenField provides a fluent interface + */ + public function setValue($value) + { + $this->value = is_scalar($value) ? (string) $value : ''; + return $this; + } + + + + /** + * Generates control's HTML element. + * @return Nette\Utils\Html + */ + public function getControl() + { + return parent::getControl() + ->value($this->forcedValue === NULL ? $this->value : $this->forcedValue) + ->data('nette-rules', NULL); + } + +} diff --git a/apigen/libs/Nette/Nette/Forms/Controls/ImageButton.php b/apigen/libs/Nette/Nette/Forms/Controls/ImageButton.php new file mode 100644 index 00000000000..2f93ee9ae61 --- /dev/null +++ b/apigen/libs/Nette/Nette/Forms/Controls/ImageButton.php @@ -0,0 +1,63 @@ +control->type = 'image'; + $this->control->src = $src; + $this->control->alt = $alt; + } + + + + /** + * Returns HTML name of control. + * @return string + */ + public function getHtmlName() + { + $name = parent::getHtmlName(); + return strpos($name, '[') === FALSE ? $name : $name . '[]'; + } + + + + /** + * Loads HTTP data. + * @return void + */ + public function loadHttpData() + { + $path = $this->getHtmlName(); // img_x or img['x'] + $path = explode('[', strtr(str_replace(']', '', strpos($path, '[') === FALSE ? $path . '.x' : substr($path, 0, -2)), '.', '_')); + $this->setValue(Nette\Utils\Arrays::get($this->getForm()->getHttpData(), $path, NULL)); + } + +} diff --git a/apigen/libs/Nette/Nette/Forms/Controls/MultiSelectBox.php b/apigen/libs/Nette/Nette/Forms/Controls/MultiSelectBox.php new file mode 100644 index 00000000000..9c39de9887e --- /dev/null +++ b/apigen/libs/Nette/Nette/Forms/Controls/MultiSelectBox.php @@ -0,0 +1,110 @@ +getRawValue(), array_keys($this->allowed)); + } + + + + /** + * Returns selected keys (not checked). + * @return array + */ + public function getRawValue() + { + if (is_scalar($this->value)) { + return array($this->value); + + } else { + $res = array(); + foreach ((array) $this->value as $val) { + if (is_scalar($val)) { + $res[] = $val; + } + } + return $res; + } + } + + + + /** + * Returns selected values. + * @return array + */ + public function getSelectedItem() + { + return $this->areKeysUsed() + ? array_intersect_key($this->allowed, array_flip($this->getValue())) + : $this->getValue(); + } + + + + /** + * Returns HTML name of control. + * @return string + */ + public function getHtmlName() + { + return parent::getHtmlName() . '[]'; + } + + + + /** + * Generates control's HTML element. + * @return Nette\Utils\Html + */ + public function getControl() + { + return parent::getControl()->multiple(TRUE); + } + + + + /** + * Count/length validator. + * @param MultiSelectBox + * @param array min and max length pair + * @return bool + */ + public static function validateLength(MultiSelectBox $control, $range) + { + if (!is_array($range)) { + $range = array($range, $range); + } + $count = count($control->getSelectedItem()); + return ($range[0] === NULL || $count >= $range[0]) && ($range[1] === NULL || $count <= $range[1]); + } + +} diff --git a/apigen/libs/Nette/Nette/Forms/Controls/RadioList.php b/apigen/libs/Nette/Nette/Forms/Controls/RadioList.php new file mode 100644 index 00000000000..4fb2fffe619 --- /dev/null +++ b/apigen/libs/Nette/Nette/Forms/Controls/RadioList.php @@ -0,0 +1,190 @@ +control->type = 'radio'; + $this->container = Html::el(); + $this->separator = Html::el('br'); + if ($items !== NULL) { + $this->setItems($items); + } + } + + + + /** + * Returns selected radio value. + * @param bool + * @return mixed + */ + public function getValue($raw = FALSE) + { + return is_scalar($this->value) && ($raw || isset($this->items[$this->value])) ? $this->value : NULL; + } + + + + /** + * Has been any radio button selected? + * @return bool + */ + public function isFilled() + { + return $this->getValue() !== NULL; + } + + + + /** + * Sets options from which to choose. + * @param array + * @return RadioList provides a fluent interface + */ + public function setItems(array $items) + { + $this->items = $items; + return $this; + } + + + + /** + * Returns options from which to choose. + * @return array + */ + final public function getItems() + { + return $this->items; + } + + + + /** + * Returns separator HTML element template. + * @return Nette\Utils\Html + */ + final public function getSeparatorPrototype() + { + return $this->separator; + } + + + + /** + * Returns container HTML element template. + * @return Nette\Utils\Html + */ + final public function getContainerPrototype() + { + return $this->container; + } + + + + /** + * Generates control's HTML element. + * @param mixed + * @return Nette\Utils\Html + */ + public function getControl($key = NULL) + { + if ($key === NULL) { + $container = clone $this->container; + $separator = (string) $this->separator; + + } elseif (!isset($this->items[$key])) { + return NULL; + } + + $control = parent::getControl(); + $id = $control->id; + $counter = -1; + $value = $this->value === NULL ? NULL : (string) $this->getValue(); + $label = Html::el('label'); + + foreach ($this->items as $k => $val) { + $counter++; + if ($key !== NULL && (string) $key !== (string) $k) { + continue; + } + + $control->id = $label->for = $id . '-' . $counter; + $control->checked = (string) $k === $value; + $control->value = $k; + + if ($val instanceof Html) { + $label->setHtml($val); + } else { + $label->setText($this->translate((string) $val)); + } + + if ($key !== NULL) { + return Html::el()->add($control)->add($label); + } + + $container->add((string) $control . (string) $label . $separator); + $control->data('nette-rules', NULL); + // TODO: separator after last item? + } + + return $container; + } + + + + /** + * Generates label's HTML element. + * @param string + * @return void + */ + public function getLabel($caption = NULL) + { + $label = parent::getLabel($caption); + $label->for = NULL; + return $label; + } + +} diff --git a/apigen/libs/Nette/Nette/Forms/Controls/SelectBox.php b/apigen/libs/Nette/Nette/Forms/Controls/SelectBox.php new file mode 100644 index 00000000000..25634caf8df --- /dev/null +++ b/apigen/libs/Nette/Nette/Forms/Controls/SelectBox.php @@ -0,0 +1,242 @@ +control->setName('select'); + $this->control->size = $size > 1 ? (int) $size : NULL; + if ($items !== NULL) { + $this->setItems($items); + } + } + + + + /** + * Returns selected item key. + * @return mixed + */ + public function getValue() + { + return is_scalar($this->value) && isset($this->allowed[$this->value]) ? $this->value : NULL; + } + + + + /** + * Returns selected item key (not checked). + * @return mixed + */ + public function getRawValue() + { + return is_scalar($this->value) ? $this->value : NULL; + } + + + + /** + * Has been any item selected? + * @return bool + */ + public function isFilled() + { + $value = $this->getValue(); + return is_array($value) ? count($value) > 0 : $value !== NULL; + } + + + + /** + * Sets first prompt item in select box. + * @param string + * @return SelectBox provides a fluent interface + */ + public function setPrompt($prompt) + { + if ($prompt === TRUE) { // back compatibility + $prompt = reset($this->items); + unset($this->allowed[key($this->items)], $this->items[key($this->items)]); + } + $this->prompt = $prompt; + return $this; + } + + + + /** @deprecated */ + function skipFirst($v = NULL) + { + trigger_error(__METHOD__ . '() is deprecated; use setPrompt() instead.', E_USER_WARNING); + return $this->setPrompt($v); + } + + + + /** + * Returns first prompt item? + * @return mixed + */ + final public function getPrompt() + { + return $this->prompt; + } + + + + /** + * Are the keys used? + * @return bool + */ + final public function areKeysUsed() + { + return $this->useKeys; + } + + + + /** + * Sets items from which to choose. + * @param array + * @param bool + * @return SelectBox provides a fluent interface + */ + public function setItems(array $items, $useKeys = TRUE) + { + $allowed = array(); + foreach ($items as $k => $v) { + foreach ((is_array($v) ? $v : array($k => $v)) as $key => $value) { + if (!$useKeys) { + if (!is_scalar($value)) { + throw new Nette\InvalidArgumentException("All items must be scalar."); + } + $key = $value; + } + + if (isset($allowed[$key])) { + throw new Nette\InvalidArgumentException("Items contain duplication for key '$key'."); + } + + $allowed[$key] = $value; + } + } + + $this->items = $items; + $this->allowed = $allowed; + $this->useKeys = (bool) $useKeys; + return $this; + } + + + + /** + * Returns items from which to choose. + * @return array + */ + final public function getItems() + { + return $this->items; + } + + + + /** + * Returns selected value. + * @return string + */ + public function getSelectedItem() + { + $value = $this->getValue(); + return ($this->useKeys && $value !== NULL) ? $this->allowed[$value] : $value; + } + + + + /** + * Generates control's HTML element. + * @return Nette\Utils\Html + */ + public function getControl() + { + $selected = $this->getValue(); + $selected = is_array($selected) ? array_flip($selected) : array($selected => TRUE); + $control = parent::getControl(); + $option = Nette\Utils\Html::el('option'); + + if ($this->prompt !== FALSE) { + $control->add($this->prompt instanceof Nette\Utils\Html + ? $this->prompt->value('') + : (string) $option->value('')->setText($this->translate((string) $this->prompt)) + ); + } + + foreach ($this->items as $key => $value) { + if (!is_array($value)) { + $value = array($key => $value); + $dest = $control; + } else { + $dest = $control->create('optgroup')->label($this->translate($key)); + } + + foreach ($value as $key2 => $value2) { + if ($value2 instanceof Nette\Utils\Html) { + $dest->add((string) $value2->selected(isset($selected[$key2]))); + + } else { + $key2 = $this->useKeys ? $key2 : $value2; + $value2 = $this->translate((string) $value2); + $dest->add((string) $option->value($key2) + ->selected(isset($selected[$key2])) + ->setText($value2)); + } + } + } + return $control; + } + +} diff --git a/apigen/libs/Nette/Nette/Forms/Controls/SubmitButton.php b/apigen/libs/Nette/Nette/Forms/Controls/SubmitButton.php new file mode 100644 index 00000000000..8b36d17694c --- /dev/null +++ b/apigen/libs/Nette/Nette/Forms/Controls/SubmitButton.php @@ -0,0 +1,123 @@ +control->type = 'submit'; + } + + + + /** + * Sets 'pressed' indicator. + * @param bool + * @return SubmitButton provides a fluent interface + */ + public function setValue($value) + { + if ($this->value = $value !== NULL) { + $this->getForm()->setSubmittedBy($this); + } + return $this; + } + + + + /** + * Tells if the form was submitted by this button. + * @return bool + */ + public function isSubmittedBy() + { + return $this->getForm()->isSubmitted() === $this; + } + + + + /** + * Sets the validation scope. Clicking the button validates only the controls within the specified scope. + * @param mixed + * @return SubmitButton provides a fluent interface + */ + public function setValidationScope($scope) + { + // TODO: implement groups + $this->validationScope = (bool) $scope; + $this->control->formnovalidate = !$this->validationScope; + return $this; + } + + + + /** + * Gets the validation scope. + * @return mixed + */ + final public function getValidationScope() + { + return $this->validationScope; + } + + + + /** + * Fires click event. + * @return void + */ + public function click() + { + $this->onClick($this); + } + + + + /** + * Submitted validator: has been button pressed? + * @param Nette\Forms\ISubmitterControl + * @return bool + */ + public static function validateSubmitted(Nette\Forms\ISubmitterControl $control) + { + return $control->isSubmittedBy(); + } + +} diff --git a/apigen/libs/Nette/Nette/Forms/Controls/TextArea.php b/apigen/libs/Nette/Nette/Forms/Controls/TextArea.php new file mode 100644 index 00000000000..b0c68b1850d --- /dev/null +++ b/apigen/libs/Nette/Nette/Forms/Controls/TextArea.php @@ -0,0 +1,53 @@ +control->setName('textarea'); + $this->control->cols = $cols; + $this->control->rows = $rows; + $this->value = ''; + } + + + + /** + * Generates control's HTML element. + * @return Nette\Utils\Html + */ + public function getControl() + { + $control = parent::getControl(); + $control->setText($this->getValue() === '' ? $this->translate($this->emptyValue) : $this->value); + return $control; + } + +} diff --git a/apigen/libs/Nette/Nette/Forms/Controls/TextBase.php b/apigen/libs/Nette/Nette/Forms/Controls/TextBase.php new file mode 100644 index 00000000000..0bfee49515d --- /dev/null +++ b/apigen/libs/Nette/Nette/Forms/Controls/TextBase.php @@ -0,0 +1,265 @@ +value = is_array($value) ? '' : (string) $value; + return $this; + } + + + + /** + * Returns control's value. + * @return string + */ + public function getValue() + { + $value = $this->value; + foreach ($this->filters as $filter) { + $value = (string) $filter/*5.2*->invoke*/($value); + } + return $value === $this->translate($this->emptyValue) ? '' : $value; + } + + + + /** + * Sets the special value which is treated as empty string. + * @param string + * @return TextBase provides a fluent interface + */ + public function setEmptyValue($value) + { + $this->emptyValue = (string) $value; + return $this; + } + + + + /** + * Returns the special value which is treated as empty string. + * @return string + */ + final public function getEmptyValue() + { + return $this->emptyValue; + } + + + + /** + * Appends input string filter callback. + * @param callable + * @return TextBase provides a fluent interface + */ + public function addFilter($filter) + { + $this->filters[] = new Nette\Callback($filter); + return $this; + } + + + + public function getControl() + { + $control = parent::getControl(); + foreach ($this->getRules() as $rule) { + if ($rule->type === Nette\Forms\Rule::VALIDATOR && !$rule->isNegative + && ($rule->operation === Form::LENGTH || $rule->operation === Form::MAX_LENGTH) + ) { + $control->maxlength = is_array($rule->arg) ? $rule->arg[1] : $rule->arg; + } + } + if ($this->emptyValue !== '') { + $control->data('nette-empty-value', $this->translate($this->emptyValue)); + } + return $control; + } + + + + public function addRule($operation, $message = NULL, $arg = NULL) + { + if ($operation === Form::FLOAT) { + $this->addFilter(array(__CLASS__, 'filterFloat')); + } + return parent::addRule($operation, $message, $arg); + } + + + + /** + * Min-length validator: has control's value minimal length? + * @param TextBase + * @param int length + * @return bool + */ + public static function validateMinLength(TextBase $control, $length) + { + return Strings::length($control->getValue()) >= $length; + } + + + + /** + * Max-length validator: is control's value length in limit? + * @param TextBase + * @param int length + * @return bool + */ + public static function validateMaxLength(TextBase $control, $length) + { + return Strings::length($control->getValue()) <= $length; + } + + + + /** + * Length validator: is control's value length in range? + * @param TextBase + * @param array min and max length pair + * @return bool + */ + public static function validateLength(TextBase $control, $range) + { + if (!is_array($range)) { + $range = array($range, $range); + } + return Validators::isInRange(Strings::length($control->getValue()), $range); + } + + + + /** + * Email validator: is control's value valid email address? + * @param TextBase + * @return bool + */ + public static function validateEmail(TextBase $control) + { + return Validators::isEmail($control->getValue()); + } + + + + /** + * URL validator: is control's value valid URL? + * @param TextBase + * @return bool + */ + public static function validateUrl(TextBase $control) + { + return Validators::isUrl($control->getValue()) || Validators::isUrl('http://' . $control->getValue()); + } + + + + /** @deprecated */ + public static function validateRegexp(TextBase $control, $regexp) + { + return (bool) Strings::match($control->getValue(), $regexp); + } + + + + /** + * Regular expression validator: matches control's value regular expression? + * @param TextBase + * @param string + * @return bool + */ + public static function validatePattern(TextBase $control, $pattern) + { + return (bool) Strings::match($control->getValue(), "\x01^($pattern)$\x01u"); + } + + + + /** + * Integer validator: is a control's value decimal number? + * @param TextBase + * @return bool + */ + public static function validateInteger(TextBase $control) + { + return Validators::isNumericInt($control->getValue()); + } + + + + /** + * Float validator: is a control's value float number? + * @param TextBase + * @return bool + */ + public static function validateFloat(TextBase $control) + { + return Validators::isNumeric(static::filterFloat($control->getValue())); + } + + + + /** + * Rangle validator: is a control's value number in specified range? + * @param TextBase + * @param array min and max value pair + * @return bool + */ + public static function validateRange(TextBase $control, $range) + { + return Validators::isInRange($control->getValue(), $range); + } + + + + /** + * Float string cleanup. + * @param string + * @return string + */ + public static function filterFloat($s) + { + return str_replace(array(' ', ','), array('', '.'), $s); + } + +} diff --git a/apigen/libs/Nette/Nette/Forms/Controls/TextInput.php b/apigen/libs/Nette/Nette/Forms/Controls/TextInput.php new file mode 100644 index 00000000000..46b672eb376 --- /dev/null +++ b/apigen/libs/Nette/Nette/Forms/Controls/TextInput.php @@ -0,0 +1,104 @@ +control->type = 'text'; + $this->control->size = $cols; + $this->control->maxlength = $maxLength; + $this->addFilter($this->sanitize); + $this->value = ''; + } + + + + /** + * Filter: removes unnecessary whitespace and shortens value to control's max length. + * @return string + */ + public function sanitize($value) + { + if ($this->control->maxlength && Nette\Utils\Strings::length($value) > $this->control->maxlength) { + $value = Nette\Utils\Strings::substring($value, 0, $this->control->maxlength); + } + return Nette\Utils\Strings::trim(strtr($value, "\r\n", ' ')); + } + + + + /** + * Changes control's type attribute. + * @param string + * @return BaseControl provides a fluent interface + */ + public function setType($type) + { + $this->control->type = $type; + return $this; + } + + + + /** @deprecated */ + public function setPasswordMode($mode = TRUE) + { + $this->control->type = $mode ? 'password' : 'text'; + return $this; + } + + + + /** + * Generates control's HTML element. + * @return Nette\Utils\Html + */ + public function getControl() + { + $control = parent::getControl(); + foreach ($this->getRules() as $rule) { + if ($rule->isNegative || $rule->type !== Nette\Forms\Rule::VALIDATOR) { + + } elseif ($rule->operation === Nette\Forms\Form::RANGE && $control->type !== 'text') { + list($control->min, $control->max) = $rule->arg; + + } elseif ($rule->operation === Nette\Forms\Form::PATTERN) { + $control->pattern = $rule->arg; + } + } + if ($control->type !== 'password') { + $control->value = $this->getValue() === '' ? $this->translate($this->emptyValue) : $this->value; + } + return $control; + } + +} diff --git a/apigen/libs/Nette/Nette/Forms/Controls/UploadControl.php b/apigen/libs/Nette/Nette/Forms/Controls/UploadControl.php new file mode 100644 index 00000000000..165a55327c7 --- /dev/null +++ b/apigen/libs/Nette/Nette/Forms/Controls/UploadControl.php @@ -0,0 +1,138 @@ +control->type = 'file'; + } + + + + /** + * This method will be called when the component (or component's parent) + * becomes attached to a monitored object. Do not call this method yourself. + * @param Nette\Forms\IComponent + * @return void + */ + protected function attached($form) + { + if ($form instanceof Nette\Forms\Form) { + if ($form->getMethod() !== Nette\Forms\Form::POST) { + throw new Nette\InvalidStateException('File upload requires method POST.'); + } + $form->getElementPrototype()->enctype = 'multipart/form-data'; + } + parent::attached($form); + } + + + + /** + * Sets control's value. + * @param array|Nette\Http\FileUpload + * @return Nette\Http\FileUpload provides a fluent interface + */ + public function setValue($value) + { + if (is_array($value)) { + $this->value = new Http\FileUpload($value); + + } elseif ($value instanceof Http\FileUpload) { + $this->value = $value; + + } else { + $this->value = new Http\FileUpload(NULL); + } + return $this; + } + + + + /** + * Has been any file uploaded? + * @return bool + */ + public function isFilled() + { + return $this->value instanceof Http\FileUpload && $this->value->isOK(); + } + + + + /** + * FileSize validator: is file size in limit? + * @param UploadControl + * @param int file size limit + * @return bool + */ + public static function validateFileSize(UploadControl $control, $limit) + { + $file = $control->getValue(); + return $file instanceof Http\FileUpload && $file->getSize() <= $limit; + } + + + + /** + * MimeType validator: has file specified mime type? + * @param UploadControl + * @param array|string mime type + * @return bool + */ + public static function validateMimeType(UploadControl $control, $mimeType) + { + $file = $control->getValue(); + if ($file instanceof Http\FileUpload) { + $type = strtolower($file->getContentType()); + $mimeTypes = is_array($mimeType) ? $mimeType : explode(',', $mimeType); + if (in_array($type, $mimeTypes, TRUE)) { + return TRUE; + } + if (in_array(preg_replace('#/.*#', '/*', $type), $mimeTypes, TRUE)) { + return TRUE; + } + } + return FALSE; + } + + + + /** + * Image validator: is file image? + * @param UploadControl + * @return bool + */ + public static function validateImage(UploadControl $control) + { + $file = $control->getValue(); + return $file instanceof Http\FileUpload && $file->isImage(); + } + +} diff --git a/apigen/libs/Nette/Nette/Forms/Form.php b/apigen/libs/Nette/Nette/Forms/Form.php new file mode 100644 index 00000000000..47f0c1832b0 --- /dev/null +++ b/apigen/libs/Nette/Nette/Forms/Form.php @@ -0,0 +1,644 @@ + element */ + private $element; + + /** @var IFormRenderer */ + private $renderer; + + /** @var Nette\Localization\ITranslator */ + private $translator; + + /** @var ControlGroup[] */ + private $groups = array(); + + /** @var array */ + private $errors = array(); + + + + /** + * Form constructor. + * @param string + */ + public function __construct($name = NULL) + { + $this->element = Nette\Utils\Html::el('form'); + $this->element->action = ''; // RFC 1808 -> empty uri means 'this' + $this->element->method = self::POST; + $this->element->id = $name === NULL ? NULL : 'frm-' . $name; + + $this->monitor(__CLASS__); + if ($name !== NULL) { + $tracker = new Controls\HiddenField($name); + $tracker->unmonitor(__CLASS__); + $this[self::TRACKER_ID] = $tracker; + } + parent::__construct(NULL, $name); + } + + + + /** + * This method will be called when the component (or component's parent) + * becomes attached to a monitored object. Do not call this method yourself. + * @param IComponent + * @return void + */ + protected function attached($obj) + { + if ($obj instanceof self) { + throw new Nette\InvalidStateException('Nested forms are forbidden.'); + } + } + + + + /** + * Returns self. + * @return Form + */ + final public function getForm($need = TRUE) + { + return $this; + } + + + + /** + * Sets form's action. + * @param mixed URI + * @return Form provides a fluent interface + */ + public function setAction($url) + { + $this->element->action = $url; + return $this; + } + + + + /** + * Returns form's action. + * @return mixed URI + */ + public function getAction() + { + return $this->element->action; + } + + + + /** + * Sets form's method. + * @param string get | post + * @return Form provides a fluent interface + */ + public function setMethod($method) + { + if ($this->httpData !== NULL) { + throw new Nette\InvalidStateException(__METHOD__ . '() must be called until the form is empty.'); + } + $this->element->method = strtolower($method); + return $this; + } + + + + /** + * Returns form's method. + * @return string get | post + */ + public function getMethod() + { + return $this->element->method; + } + + + + /** + * Cross-Site Request Forgery (CSRF) form protection. + * @param string + * @param int + * @return void + */ + public function addProtection($message = NULL, $timeout = NULL) + { + $session = $this->getSession()->getSection('Nette.Forms.Form/CSRF'); + $key = "key$timeout"; + if (isset($session->$key)) { + $token = $session->$key; + } else { + $session->$key = $token = Nette\Utils\Strings::random(); + } + $session->setExpiration($timeout, $key); + $this[self::PROTECTOR_ID] = new Controls\HiddenField($token); + $this[self::PROTECTOR_ID]->addRule(self::PROTECTION, $message, $token); + } + + + + /** + * Adds fieldset group to the form. + * @param string caption + * @param bool set this group as current + * @return ControlGroup + */ + public function addGroup($caption = NULL, $setAsCurrent = TRUE) + { + $group = new ControlGroup; + $group->setOption('label', $caption); + $group->setOption('visual', TRUE); + + if ($setAsCurrent) { + $this->setCurrentGroup($group); + } + + if (isset($this->groups[$caption])) { + return $this->groups[] = $group; + } else { + return $this->groups[$caption] = $group; + } + } + + + + /** + * Removes fieldset group from form. + * @param string|FormGroup + * @return void + */ + public function removeGroup($name) + { + if (is_string($name) && isset($this->groups[$name])) { + $group = $this->groups[$name]; + + } elseif ($name instanceof ControlGroup && in_array($name, $this->groups, TRUE)) { + $group = $name; + $name = array_search($group, $this->groups, TRUE); + + } else { + throw new Nette\InvalidArgumentException("Group not found in form '$this->name'"); + } + + foreach ($group->getControls() as $control) { + $this->removeComponent($control); + } + + unset($this->groups[$name]); + } + + + + /** + * Returns all defined groups. + * @return FormGroup[] + */ + public function getGroups() + { + return $this->groups; + } + + + + /** + * Returns the specified group. + * @param string name + * @return ControlGroup + */ + public function getGroup($name) + { + return isset($this->groups[$name]) ? $this->groups[$name] : NULL; + } + + + + /********************* translator ****************d*g**/ + + + + /** + * Sets translate adapter. + * @param Nette\Localization\ITranslator + * @return Form provides a fluent interface + */ + public function setTranslator(Nette\Localization\ITranslator $translator = NULL) + { + $this->translator = $translator; + return $this; + } + + + + /** + * Returns translate adapter. + * @return Nette\Localization\ITranslator|NULL + */ + final public function getTranslator() + { + return $this->translator; + } + + + + /********************* submission ****************d*g**/ + + + + /** + * Tells if the form is anchored. + * @return bool + */ + public function isAnchored() + { + return TRUE; + } + + + + /** + * Tells if the form was submitted. + * @return ISubmitterControl|FALSE submittor control + */ + final public function isSubmitted() + { + if ($this->submittedBy === NULL && count($this->getControls())) { + $this->getHttpData(); + $this->submittedBy = $this->httpData !== NULL; + } + return $this->submittedBy; + } + + + + /** + * Tells if the form was submitted and successfully validated. + * @return bool + */ + final public function isSuccess() + { + return $this->isSubmitted() && $this->isValid(); + } + + + + /** + * Sets the submittor control. + * @param ISubmitterControl + * @return Form provides a fluent interface + */ + public function setSubmittedBy(ISubmitterControl $by = NULL) + { + $this->submittedBy = $by === NULL ? FALSE : $by; + return $this; + } + + + + /** + * Returns submitted HTTP data. + * @return array + */ + final public function getHttpData() + { + if ($this->httpData === NULL) { + if (!$this->isAnchored()) { + throw new Nette\InvalidStateException('Form is not anchored and therefore can not determine whether it was submitted.'); + } + $this->httpData = $this->receiveHttpData(); + } + return $this->httpData; + } + + + + /** + * Fires submit/click events. + * @return void + */ + public function fireEvents() + { + if (!$this->isSubmitted()) { + return; + + } elseif ($this->submittedBy instanceof ISubmitterControl) { + if (!$this->submittedBy->getValidationScope() || $this->isValid()) { + $this->submittedBy->click(); + $valid = TRUE; + } else { + $this->submittedBy->onInvalidClick($this->submittedBy); + } + } + + if (isset($valid) || $this->isValid()) { + $this->onSuccess($this); + } else { + $this->onError($this); + if ($this->onInvalidSubmit) { + trigger_error(__CLASS__ . '->onInvalidSubmit is deprecated; use onError instead.', E_USER_WARNING); + $this->onInvalidSubmit($this); + } + } + + if ($this->onSuccess) { // back compatibility + $this->onSubmit($this); + } elseif ($this->onSubmit) { + trigger_error(__CLASS__ . '->onSubmit changed its behavior; use onSuccess instead.', E_USER_WARNING); + if (isset($valid) || $this->isValid()) { + $this->onSubmit($this); + } + } + } + + + + /** + * Internal: receives submitted HTTP data. + * @return array + */ + protected function receiveHttpData() + { + $httpRequest = $this->getHttpRequest(); + if (strcasecmp($this->getMethod(), $httpRequest->getMethod())) { + return; + } + + if ($httpRequest->isMethod('post')) { + $data = Nette\Utils\Arrays::mergeTree($httpRequest->getPost(), $httpRequest->getFiles()); + } else { + $data = $httpRequest->getQuery(); + } + + if ($tracker = $this->getComponent(self::TRACKER_ID, FALSE)) { + if (!isset($data[self::TRACKER_ID]) || $data[self::TRACKER_ID] !== $tracker->getValue()) { + return; + } + } + + return $data; + } + + + + /********************* data exchange ****************d*g**/ + + + + /** + * Returns the values submitted by the form. + * @return Nette\ArrayHash|array + */ + public function getValues($asArray = FALSE) + { + $values = parent::getValues($asArray); + unset($values[self::TRACKER_ID], $values[self::PROTECTOR_ID]); + return $values; + } + + + + /********************* validation ****************d*g**/ + + + + /** + * Adds error message to the list. + * @param string error message + * @return void + */ + public function addError($message) + { + $this->valid = FALSE; + if ($message !== NULL && !in_array($message, $this->errors, TRUE)) { + $this->errors[] = $message; + } + } + + + + /** + * Returns validation errors. + * @return array + */ + public function getErrors() + { + return $this->errors; + } + + + + /** + * @return bool + */ + public function hasErrors() + { + return (bool) $this->getErrors(); + } + + + + /** + * @return void + */ + public function cleanErrors() + { + $this->errors = array(); + $this->valid = NULL; + } + + + + /********************* rendering ****************d*g**/ + + + + /** + * Returns form's HTML element template. + * @return Nette\Utils\Html + */ + public function getElementPrototype() + { + return $this->element; + } + + + + /** + * Sets form renderer. + * @param IFormRenderer + * @return Form provides a fluent interface + */ + public function setRenderer(IFormRenderer $renderer) + { + $this->renderer = $renderer; + return $this; + } + + + + /** + * Returns form renderer. + * @return IFormRenderer + */ + final public function getRenderer() + { + if ($this->renderer === NULL) { + $this->renderer = new Rendering\DefaultFormRenderer; + } + return $this->renderer; + } + + + + /** + * Renders form. + * @return void + */ + public function render() + { + $args = func_get_args(); + array_unshift($args, $this); + echo call_user_func_array(array($this->getRenderer(), 'render'), $args); + } + + + + /** + * Renders form to string. + * @return bool can throw exceptions? (hidden parameter) + * @return string + */ + public function __toString() + { + try { + return $this->getRenderer()->render($this); + + } catch (\Exception $e) { + if (func_get_args() && func_get_arg(0)) { + throw $e; + } else { + Nette\Diagnostics\Debugger::toStringException($e); + } + } + } + + + + /********************* backend ****************d*g**/ + + + + /** + * @return Nette\Http\IRequest + */ + protected function getHttpRequest() + { + return Nette\Environment::getHttpRequest(); + } + + + + /** + * @return Nette\Http\Session + */ + protected function getSession() + { + return Nette\Environment::getSession(); + } + +} diff --git a/apigen/libs/Nette/Nette/Forms/IControl.php b/apigen/libs/Nette/Nette/Forms/IControl.php new file mode 100644 index 00000000000..d6845f923f1 --- /dev/null +++ b/apigen/libs/Nette/Nette/Forms/IControl.php @@ -0,0 +1,70 @@ + array( + 'container' => NULL, + 'errors' => TRUE, + ), + + 'error' => array( + 'container' => 'ul class=error', + 'item' => 'li', + ), + + 'group' => array( + 'container' => 'fieldset', + 'label' => 'legend', + 'description' => 'p', + ), + + 'controls' => array( + 'container' => 'table', + ), + + 'pair' => array( + 'container' => 'tr', + '.required' => 'required', + '.optional' => NULL, + '.odd' => NULL, + ), + + 'control' => array( + 'container' => 'td', + '.odd' => NULL, + + 'errors' => FALSE, + 'description' => 'small', + 'requiredsuffix' => '', + + '.required' => 'required', + '.text' => 'text', + '.password' => 'text', + '.file' => 'text', + '.submit' => 'button', + '.image' => 'imagebutton', + '.button' => 'button', + ), + + 'label' => array( + 'container' => 'th', + 'suffix' => NULL, + 'requiredsuffix' => '', + ), + + 'hidden' => array( + 'container' => 'div', + ), + ); + + /** @var Nette\Forms\Form */ + protected $form; + + /** @var int */ + protected $counter; + + + + /** + * Provides complete form rendering. + * @param Nette\Forms\Form + * @param string 'begin', 'errors', 'body', 'end' or empty to render all + * @return string + */ + public function render(Nette\Forms\Form $form, $mode = NULL) + { + if ($this->form !== $form) { + $this->form = $form; + $this->init(); + } + + $s = ''; + if (!$mode || $mode === 'begin') { + $s .= $this->renderBegin(); + } + if ((!$mode && $this->getValue('form errors')) || $mode === 'errors') { + $s .= $this->renderErrors(); + } + if (!$mode || $mode === 'body') { + $s .= $this->renderBody(); + } + if (!$mode || $mode === 'end') { + $s .= $this->renderEnd(); + } + return $s; + } + + + + /** @deprecated */ + public function setClientScript() + { + trigger_error(__METHOD__ . '() is deprecated; use unobstructive JavaScript instead.', E_USER_WARNING); + return $this; + } + + + + /** + * Initializes form. + * @return void + */ + protected function init() + { + // TODO: only for back compatiblity - remove? + $wrapper = & $this->wrappers['control']; + foreach ($this->form->getControls() as $control) { + if ($control->isRequired() && isset($wrapper['.required'])) { + $control->getLabelPrototype()->class($wrapper['.required'], TRUE); + } + + $el = $control->getControlPrototype(); + if ($el->getName() === 'input' && isset($wrapper['.' . $el->type])) { + $el->class($wrapper['.' . $el->type], TRUE); + } + } + } + + + + /** + * Renders form begin. + * @return string + */ + public function renderBegin() + { + $this->counter = 0; + + foreach ($this->form->getControls() as $control) { + $control->setOption('rendered', FALSE); + } + + if (strcasecmp($this->form->getMethod(), 'get') === 0) { + $el = clone $this->form->getElementPrototype(); + $url = explode('?', (string) $el->action, 2); + $el->action = $url[0]; + $s = ''; + if (isset($url[1])) { + foreach (preg_split('#[;&]#', $url[1]) as $param) { + $parts = explode('=', $param, 2); + $name = urldecode($parts[0]); + if (!isset($this->form[$name])) { + $s .= Html::el('input', array('type' => 'hidden', 'name' => $name, 'value' => urldecode($parts[1]))); + } + } + $s = "\n\t" . $this->getWrapper('hidden container')->setHtml($s); + } + return $el->startTag() . $s; + + + } else { + return $this->form->getElementPrototype()->startTag(); + } + } + + + + /** + * Renders form end. + * @return string + */ + public function renderEnd() + { + $s = ''; + foreach ($this->form->getControls() as $control) { + if ($control instanceof Nette\Forms\Controls\HiddenField && !$control->getOption('rendered')) { + $s .= (string) $control->getControl(); + } + } + if (iterator_count($this->form->getComponents(TRUE, 'Nette\Forms\Controls\TextInput')) < 2) { + $s .= ''; + } + if ($s) { + $s = $this->getWrapper('hidden container')->setHtml($s) . "\n"; + } + + return $s . $this->form->getElementPrototype()->endTag() . "\n"; + } + + + + /** + * Renders validation errors (per form or per control). + * @param Nette\Forms\IControl + * @return string + */ + public function renderErrors(Nette\Forms\IControl $control = NULL) + { + $errors = $control === NULL ? $this->form->getErrors() : $control->getErrors(); + if (count($errors)) { + $ul = $this->getWrapper('error container'); + $li = $this->getWrapper('error item'); + + foreach ($errors as $error) { + $item = clone $li; + if ($error instanceof Html) { + $item->add($error); + } else { + $item->setText($error); + } + $ul->add($item); + } + return "\n" . $ul->render(0); + } + } + + + + /** + * Renders form body. + * @return string + */ + public function renderBody() + { + $s = $remains = ''; + + $defaultContainer = $this->getWrapper('group container'); + $translator = $this->form->getTranslator(); + + foreach ($this->form->getGroups() as $group) { + if (!$group->getControls() || !$group->getOption('visual')) { + continue; + } + + $container = $group->getOption('container', $defaultContainer); + $container = $container instanceof Html ? clone $container : Html::el($container); + + $s .= "\n" . $container->startTag(); + + $text = $group->getOption('label'); + if ($text instanceof Html) { + $s .= $text; + + } elseif (is_string($text)) { + if ($translator !== NULL) { + $text = $translator->translate($text); + } + $s .= "\n" . $this->getWrapper('group label')->setText($text) . "\n"; + } + + $text = $group->getOption('description'); + if ($text instanceof Html) { + $s .= $text; + + } elseif (is_string($text)) { + if ($translator !== NULL) { + $text = $translator->translate($text); + } + $s .= $this->getWrapper('group description')->setText($text) . "\n"; + } + + $s .= $this->renderControls($group); + + $remains = $container->endTag() . "\n" . $remains; + if (!$group->getOption('embedNext')) { + $s .= $remains; + $remains = ''; + } + } + + $s .= $remains . $this->renderControls($this->form); + + $container = $this->getWrapper('form container'); + $container->setHtml($s); + return $container->render(0); + } + + + + /** + * Renders group of controls. + * @param Nette\Forms\Container|FormGroup + * @return string + */ + public function renderControls($parent) + { + if (!($parent instanceof Nette\Forms\Container || $parent instanceof Nette\Forms\ControlGroup)) { + throw new Nette\InvalidArgumentException("Argument must be FormContainer or FormGroup instance."); + } + + $container = $this->getWrapper('controls container'); + + $buttons = NULL; + foreach ($parent->getControls() as $control) { + if ($control->getOption('rendered') || $control instanceof Nette\Forms\Controls\HiddenField || $control->getForm(FALSE) !== $this->form) { + // skip + + } elseif ($control instanceof Nette\Forms\Controls\Button) { + $buttons[] = $control; + + } else { + if ($buttons) { + $container->add($this->renderPairMulti($buttons)); + $buttons = NULL; + } + $container->add($this->renderPair($control)); + } + } + + if ($buttons) { + $container->add($this->renderPairMulti($buttons)); + } + + $s = ''; + if (count($container)) { + $s .= "\n" . $container . "\n"; + } + + return $s; + } + + + + /** + * Renders single visual row. + * @param Nette\Forms\IControl + * @return string + */ + public function renderPair(Nette\Forms\IControl $control) + { + $pair = $this->getWrapper('pair container'); + $pair->add($this->renderLabel($control)); + $pair->add($this->renderControl($control)); + $pair->class($this->getValue($control->isRequired() ? 'pair .required' : 'pair .optional'), TRUE); + $pair->class($control->getOption('class'), TRUE); + if (++$this->counter % 2) { + $pair->class($this->getValue('pair .odd'), TRUE); + } + $pair->id = $control->getOption('id'); + return $pair->render(0); + } + + + + /** + * Renders single visual row of multiple controls. + * @param IFormControl[] + * @return string + */ + public function renderPairMulti(array $controls) + { + $s = array(); + foreach ($controls as $control) { + if (!$control instanceof Nette\Forms\IControl) { + throw new Nette\InvalidArgumentException("Argument must be array of IFormControl instances."); + } + $s[] = (string) $control->getControl(); + } + $pair = $this->getWrapper('pair container'); + $pair->add($this->renderLabel($control)); + $pair->add($this->getWrapper('control container')->setHtml(implode(" ", $s))); + return $pair->render(0); + } + + + + /** + * Renders 'label' part of visual row of controls. + * @param Nette\Forms\IControl + * @return string + */ + public function renderLabel(Nette\Forms\IControl $control) + { + $head = $this->getWrapper('label container'); + + if ($control instanceof Nette\Forms\Controls\Checkbox || $control instanceof Nette\Forms\Controls\Button) { + return $head->setHtml(($head->getName() === 'td' || $head->getName() === 'th') ? ' ' : ''); + + } else { + $label = $control->getLabel(); + $suffix = $this->getValue('label suffix') . ($control->isRequired() ? $this->getValue('label requiredsuffix') : ''); + if ($label instanceof Html) { + $label->setHtml($label->getHtml() . $suffix); + $suffix = ''; + } + return $head->setHtml((string) $label . $suffix); + } + } + + + + /** + * Renders 'control' part of visual row of controls. + * @param Nette\Forms\IControl + * @return string + */ + public function renderControl(Nette\Forms\IControl $control) + { + $body = $this->getWrapper('control container'); + if ($this->counter % 2) { + $body->class($this->getValue('control .odd'), TRUE); + } + + $description = $control->getOption('description'); + if ($description instanceof Html) { + $description = ' ' . $control->getOption('description'); + + } elseif (is_string($description)) { + $description = ' ' . $this->getWrapper('control description')->setText($control->translate($description)); + + } else { + $description = ''; + } + + if ($control->isRequired()) { + $description = $this->getValue('control requiredsuffix') . $description; + } + + if ($this->getValue('control errors')) { + $description .= $this->renderErrors($control); + } + + if ($control instanceof Nette\Forms\Controls\Checkbox || $control instanceof Nette\Forms\Controls\Button) { + return $body->setHtml((string) $control->getControl() . (string) $control->getLabel() . $description); + + } else { + return $body->setHtml((string) $control->getControl() . $description); + } + } + + + + /** + * @param string + * @return Nette\Utils\Html + */ + protected function getWrapper($name) + { + $data = $this->getValue($name); + return $data instanceof Html ? clone $data : Html::el($data); + } + + + + /** + * @param string + * @return string + */ + protected function getValue($name) + { + $name = explode(' ', $name); + $data = & $this->wrappers[$name[0]][$name[1]]; + return $data; + } + +} diff --git a/apigen/libs/Nette/Nette/Forms/Rule.php b/apigen/libs/Nette/Nette/Forms/Rule.php new file mode 100644 index 00000000000..60ee09e8e1a --- /dev/null +++ b/apigen/libs/Nette/Nette/Forms/Rule.php @@ -0,0 +1,55 @@ + 'Security token did not match. Possible CSRF attack.', + Form::EQUAL => 'Please enter %s.', + Form::FILLED => 'Please complete mandatory field.', + Form::MIN_LENGTH => 'Please enter a value of at least %d characters.', + Form::MAX_LENGTH => 'Please enter a value no longer than %d characters.', + Form::LENGTH => 'Please enter a value between %d and %d characters long.', + Form::EMAIL => 'Please enter a valid email address.', + Form::URL => 'Please enter a valid URL.', + Form::INTEGER => 'Please enter a numeric value.', + Form::FLOAT => 'Please enter a numeric value.', + Form::RANGE => 'Please enter a value between %d and %d.', + Form::MAX_FILE_SIZE => 'The size of the uploaded file can be up to %d bytes.', + Form::IMAGE => 'The uploaded file must be image in format JPEG, GIF or PNG.', + ); + + /** @var Rule[] */ + private $rules = array(); + + /** @var Rules */ + private $parent; + + /** @var array */ + private $toggles = array(); + + /** @var IControl */ + private $control; + + + + public function __construct(IControl $control) + { + $this->control = $control; + } + + + + /** + * Adds a validation rule for the current control. + * @param mixed rule type + * @param string message to display for invalid data + * @param mixed optional rule arguments + * @return Rules provides a fluent interface + */ + public function addRule($operation, $message = NULL, $arg = NULL) + { + $rule = new Rule; + $rule->control = $this->control; + $rule->operation = $operation; + $this->adjustOperation($rule); + $rule->arg = $arg; + $rule->type = Rule::VALIDATOR; + if ($message === NULL && is_string($rule->operation) && isset(static::$defaultMessages[$rule->operation])) { + $rule->message = static::$defaultMessages[$rule->operation]; + } else { + $rule->message = $message; + } + $this->rules[] = $rule; + return $this; + } + + + + /** + * Adds a validation condition a returns new branch. + * @param mixed condition type + * @param mixed optional condition arguments + * @return Rules new branch + */ + public function addCondition($operation, $arg = NULL) + { + return $this->addConditionOn($this->control, $operation, $arg); + } + + + + /** + * Adds a validation condition on specified control a returns new branch. + * @param IControl form control + * @param mixed condition type + * @param mixed optional condition arguments + * @return Rules new branch + */ + public function addConditionOn(IControl $control, $operation, $arg = NULL) + { + $rule = new Rule; + $rule->control = $control; + $rule->operation = $operation; + $this->adjustOperation($rule); + $rule->arg = $arg; + $rule->type = Rule::CONDITION; + $rule->subRules = new static($this->control); + $rule->subRules->parent = $this; + + $this->rules[] = $rule; + return $rule->subRules; + } + + + + /** + * Adds a else statement. + * @return Rules else branch + */ + public function elseCondition() + { + $rule = clone end($this->parent->rules); + $rule->isNegative = !$rule->isNegative; + $rule->subRules = new static($this->parent->control); + $rule->subRules->parent = $this->parent; + $this->parent->rules[] = $rule; + return $rule->subRules; + } + + + + /** + * Ends current validation condition. + * @return Rules parent branch + */ + public function endCondition() + { + return $this->parent; + } + + + + /** + * Toggles HTML elememnt visibility. + * @param string element id + * @param bool hide element? + * @return Rules provides a fluent interface + */ + public function toggle($id, $hide = TRUE) + { + $this->toggles[$id] = $hide; + return $this; + } + + + + /** + * Validates against ruleset. + * @param bool stop before first error? + * @return bool is valid? + */ + public function validate($onlyCheck = FALSE) + { + foreach ($this->rules as $rule) { + if ($rule->control->isDisabled()) { + continue; + } + + $success = ($rule->isNegative xor $this->getCallback($rule)->invoke($rule->control, $rule->arg)); + + if ($rule->type === Rule::CONDITION && $success) { + if (!$rule->subRules->validate($onlyCheck)) { + return FALSE; + } + + } elseif ($rule->type === Rule::VALIDATOR && !$success) { + if (!$onlyCheck) { + $rule->control->addError(static::formatMessage($rule, TRUE)); + } + return FALSE; + } + } + return TRUE; + } + + + + /** + * Iterates over ruleset. + * @return \ArrayIterator + */ + final public function getIterator() + { + return new \ArrayIterator($this->rules); + } + + + + /** + * @return array + */ + final public function getToggles() + { + return $this->toggles; + } + + + + /** + * Process 'operation' string. + * @param Rule + * @return void + */ + private function adjustOperation($rule) + { + if (is_string($rule->operation) && ord($rule->operation[0]) > 127) { + $rule->isNegative = TRUE; + $rule->operation = ~$rule->operation; + } + + if (!$this->getCallback($rule)->isCallable()) { + $operation = is_scalar($rule->operation) ? " '$rule->operation'" : ''; + throw new Nette\InvalidArgumentException("Unknown operation$operation for control '{$rule->control->name}'."); + } + } + + + + private function getCallback($rule) + { + $op = $rule->operation; + if (is_string($op) && strncmp($op, ':', 1) === 0) { + return new Nette\Callback(get_class($rule->control), self::VALIDATE_PREFIX . ltrim($op, ':')); + } else { + return new Nette\Callback($op); + } + } + + + + public static function formatMessage($rule, $withValue) + { + $message = $rule->message; + if ($message instanceof Nette\Utils\Html) { + return $message; + } + if (!isset($message)) { // report missing message by notice + $message = static::$defaultMessages[$rule->operation]; + } + if ($translator = $rule->control->getForm()->getTranslator()) { + $message = $translator->translate($message, is_int($rule->arg) ? $rule->arg : NULL); + } + $message = vsprintf(preg_replace('#%(name|label|value)#', '%$0', $message), (array) $rule->arg); + $message = str_replace('%name', $rule->control->getName(), $message); + $message = str_replace('%label', $rule->control->translate($rule->control->caption), $message); + if ($withValue && strpos($message, '%value') !== FALSE) { + $message = str_replace('%value', $rule->control->getValue(), $message); + } + return $message; + } + +} diff --git a/apigen/libs/Nette/Nette/Http/Context.php b/apigen/libs/Nette/Nette/Http/Context.php new file mode 100644 index 00000000000..1ea71bce697 --- /dev/null +++ b/apigen/libs/Nette/Nette/Http/Context.php @@ -0,0 +1,114 @@ +request = $request; + $this->response = $response; + } + + + + /** + * Attempts to cache the sent entity by its last modification date. + * @param string|int|DateTime last modified time + * @param string strong entity tag validator + * @return bool + */ + public function isModified($lastModified = NULL, $etag = NULL) + { + if ($lastModified) { + $this->response->setHeader('Last-Modified', $this->response->date($lastModified)); + } + if ($etag) { + $this->response->setHeader('ETag', '"' . addslashes($etag) . '"'); + } + + $ifNoneMatch = $this->request->getHeader('If-None-Match'); + if ($ifNoneMatch === '*') { + $match = TRUE; // match, check if-modified-since + + } elseif ($ifNoneMatch !== NULL) { + $etag = $this->response->getHeader('ETag'); + + if ($etag == NULL || strpos(' ' . strtr($ifNoneMatch, ",\t", ' '), ' ' . $etag) === FALSE) { + return TRUE; + + } else { + $match = TRUE; // match, check if-modified-since + } + } + + $ifModifiedSince = $this->request->getHeader('If-Modified-Since'); + if ($ifModifiedSince !== NULL) { + $lastModified = $this->response->getHeader('Last-Modified'); + if ($lastModified != NULL && strtotime($lastModified) <= strtotime($ifModifiedSince)) { + $match = TRUE; + + } else { + return TRUE; + } + } + + if (empty($match)) { + return TRUE; + } + + $this->response->setCode(IResponse::S304_NOT_MODIFIED); + return FALSE; + } + + + + /** + * @return IRequest + */ + public function getRequest() + { + return $this->request; + } + + + + /** + * @return IResponse + */ + public function getResponse() + { + return $this->response; + } + +} diff --git a/apigen/libs/Nette/Nette/Http/FileUpload.php b/apigen/libs/Nette/Nette/Http/FileUpload.php new file mode 100644 index 00000000000..480511fe206 --- /dev/null +++ b/apigen/libs/Nette/Nette/Http/FileUpload.php @@ -0,0 +1,222 @@ +error = UPLOAD_ERR_NO_FILE; + return; // or throw exception? + } + } + $this->name = $value['name']; + $this->size = $value['size']; + $this->tmpName = $value['tmp_name']; + $this->error = $value['error']; + } + + + + /** + * Returns the file name. + * @return string + */ + public function getName() + { + return $this->name; + } + + + + /** + * Returns the sanitized file name. + * @return string + */ + public function getSanitizedName() + { + return trim(Nette\Utils\Strings::webalize($this->name, '.', FALSE), '.-'); + } + + + + /** + * Returns the MIME content type of an uploaded file. + * @return string + */ + public function getContentType() + { + if ($this->isOk() && $this->type === NULL) { + $this->type = Nette\Utils\MimeTypeDetector::fromFile($this->tmpName); + } + return $this->type; + } + + + + /** + * Returns the size of an uploaded file. + * @return int + */ + public function getSize() + { + return $this->size; + } + + + + /** + * Returns the path to an uploaded file. + * @return string + */ + public function getTemporaryFile() + { + return $this->tmpName; + } + + + + /** + * Returns the path to an uploaded file. + * @return string + */ + public function __toString() + { + return $this->tmpName; + } + + + + /** + * Returns the error code. {@link http://php.net/manual/en/features.file-upload.errors.php} + * @return int + */ + public function getError() + { + return $this->error; + } + + + + /** + * Is there any error? + * @return bool + */ + public function isOk() + { + return $this->error === UPLOAD_ERR_OK; + } + + + + /** + * Move uploaded file to new location. + * @param string + * @return FileUpload provides a fluent interface + */ + public function move($dest) + { + @mkdir(dirname($dest), 0777, TRUE); // @ - dir may already exist + /*5.2*if (substr(PHP_OS, 0, 3) === 'WIN') { @unlink($dest); }*/ + if (!call_user_func(is_uploaded_file($this->tmpName) ? 'move_uploaded_file' : 'rename', $this->tmpName, $dest)) { + throw new Nette\InvalidStateException("Unable to move uploaded file '$this->tmpName' to '$dest'."); + } + chmod($dest, 0666); + $this->tmpName = $dest; + return $this; + } + + + + /** + * Is uploaded file GIF, PNG or JPEG? + * @return bool + */ + public function isImage() + { + return in_array($this->getContentType(), array('image/gif', 'image/png', 'image/jpeg'), TRUE); + } + + + + /** + * Returns the image. + * @return Nette\Image + */ + public function toImage() + { + return Nette\Image::fromFile($this->tmpName); + } + + + + /** + * Returns the dimensions of an uploaded image as array. + * @return array + */ + public function getImageSize() + { + return $this->isOk() ? @getimagesize($this->tmpName) : NULL; // @ - files smaller than 12 bytes causes read error + } + + + + /** + * Get file contents. + * @return string + */ + public function getContents() + { + // future implementation can try to work around safe_mode and open_basedir limitations + return $this->isOk() ? file_get_contents($this->tmpName) : NULL; + } + +} diff --git a/apigen/libs/Nette/Nette/Http/IRequest.php b/apigen/libs/Nette/Nette/Http/IRequest.php new file mode 100644 index 00000000000..0ccb12316a3 --- /dev/null +++ b/apigen/libs/Nette/Nette/Http/IRequest.php @@ -0,0 +1,140 @@ +url = $url; + $this->url->freeze(); + if ($query === NULL) { + parse_str($url->query, $this->query); + } else { + $this->query = (array) $query; + } + $this->post = (array) $post; + $this->files = (array) $files; + $this->cookies = (array) $cookies; + $this->headers = (array) $headers; + $this->method = $method; + $this->remoteAddress = $remoteAddress; + $this->remoteHost = $remoteHost; + } + + + + /** + * Returns URL object. + * @return UrlScript + */ + final public function getUrl() + { + return $this->url; + } + + + + /** @deprecated */ + function getUri() + { + trigger_error(__METHOD__ . '() is deprecated; use ' . __CLASS__ . '::getUrl() instead.', E_USER_WARNING); + return $this->getUrl(); + } + + + + /********************* query, post, files & cookies ****************d*g**/ + + + + /** + * Returns variable provided to the script via URL query ($_GET). + * If no key is passed, returns the entire array. + * @param string key + * @param mixed default value + * @return mixed + */ + final public function getQuery($key = NULL, $default = NULL) + { + if (func_num_args() === 0) { + return $this->query; + + } elseif (isset($this->query[$key])) { + return $this->query[$key]; + + } else { + return $default; + } + } + + + + /** + * Returns variable provided to the script via POST method ($_POST). + * If no key is passed, returns the entire array. + * @param string key + * @param mixed default value + * @return mixed + */ + final public function getPost($key = NULL, $default = NULL) + { + if (func_num_args() === 0) { + return $this->post; + + } elseif (isset($this->post[$key])) { + return $this->post[$key]; + + } else { + return $default; + } + } + + + + /** + * Returns uploaded file. + * @param string key (or more keys) + * @return FileUpload + */ + final public function getFile($key) + { + $args = func_get_args(); + return Nette\Utils\Arrays::get($this->files, $args, NULL); + } + + + + /** + * Returns uploaded files. + * @return array + */ + final public function getFiles() + { + return $this->files; + } + + + + /** + * Returns variable provided to the script via HTTP cookies. + * @param string key + * @param mixed default value + * @return mixed + */ + final public function getCookie($key, $default = NULL) + { + if (func_num_args() === 0) { + return $this->cookies; + + } elseif (isset($this->cookies[$key])) { + return $this->cookies[$key]; + + } else { + return $default; + } + } + + + + /** + * Returns variables provided to the script via HTTP cookies. + * @return array + */ + final public function getCookies() + { + return $this->cookies; + } + + + + /********************* method & headers ****************d*g**/ + + + + /** + * Returns HTTP request method (GET, POST, HEAD, PUT, ...). The method is case-sensitive. + * @return string + */ + public function getMethod() + { + return $this->method; + } + + + + /** + * Checks if the request method is the given one. + * @param string + * @return bool + */ + public function isMethod($method) + { + return strcasecmp($this->method, $method) === 0; + } + + + + /** + * Checks if the request method is POST. + * @return bool + */ + public function isPost() + { + return $this->isMethod('POST'); + } + + + + /** + * Return the value of the HTTP header. Pass the header name as the + * plain, HTTP-specified header name (e.g. 'Accept-Encoding'). + * @param string + * @param mixed + * @return mixed + */ + final public function getHeader($header, $default = NULL) + { + $header = strtolower($header); + if (isset($this->headers[$header])) { + return $this->headers[$header]; + } else { + return $default; + } + } + + + + /** + * Returns all HTTP headers. + * @return array + */ + public function getHeaders() + { + return $this->headers; + } + + + + /** + * Returns referrer. + * @return Url|NULL + */ + final public function getReferer() + { + return isset($this->headers['referer']) ? new Url($this->headers['referer']) : NULL; + } + + + + /** + * Is the request is sent via secure channel (https). + * @return bool + */ + public function isSecured() + { + return $this->url->scheme === 'https'; + } + + + + /** + * Is AJAX request? + * @return bool + */ + public function isAjax() + { + return $this->getHeader('X-Requested-With') === 'XMLHttpRequest'; + } + + + + /** + * Returns the IP address of the remote client. + * @return string + */ + public function getRemoteAddress() + { + return $this->remoteAddress; + } + + + + /** + * Returns the host of the remote client. + * @return string + */ + public function getRemoteHost() + { + if (!$this->remoteHost) { + $this->remoteHost = $this->remoteAddress ? getHostByAddr($this->remoteAddress) : NULL; + } + return $this->remoteHost; + } + + + + /** + * Parse Accept-Language header and returns prefered language. + * @param array Supported languages + * @return string + */ + public function detectLanguage(array $langs) + { + $header = $this->getHeader('Accept-Language'); + if (!$header) { + return NULL; + } + + $s = strtolower($header); // case insensitive + $s = strtr($s, '_', '-'); // cs_CZ means cs-CZ + rsort($langs); // first more specific + preg_match_all('#(' . implode('|', $langs) . ')(?:-[^\s,;=]+)?\s*(?:;\s*q=([0-9.]+))?#', $s, $matches); + + if (!$matches[0]) { + return NULL; + } + + $max = 0; + $lang = NULL; + foreach ($matches[1] as $key => $value) { + $q = $matches[2][$key] === '' ? 1.0 : (float) $matches[2][$key]; + if ($q > $max) { + $max = $q; $lang = $value; + } + } + + return $lang; + } + +} diff --git a/apigen/libs/Nette/Nette/Http/RequestFactory.php b/apigen/libs/Nette/Nette/Http/RequestFactory.php new file mode 100644 index 00000000000..96d10a88976 --- /dev/null +++ b/apigen/libs/Nette/Nette/Http/RequestFactory.php @@ -0,0 +1,252 @@ + array('#/{2,}#' => '/'), // '%20' => '' + 'url' => array(), // '#[.,)]$#' => '' + ); + + /** @var string */ + private $encoding; + + + + /** + * @param string + * @return RequestFactory provides a fluent interface + */ + public function setEncoding($encoding) + { + $this->encoding = $encoding; + return $this; + } + + + + /** + * Creates current HttpRequest object. + * @return Request + */ + public function createHttpRequest() + { + // DETECTS URI, base path and script path of the request. + $url = new UrlScript; + $url->scheme = !empty($_SERVER['HTTPS']) && strcasecmp($_SERVER['HTTPS'], 'off') ? 'https' : 'http'; + $url->user = isset($_SERVER['PHP_AUTH_USER']) ? $_SERVER['PHP_AUTH_USER'] : ''; + $url->password = isset($_SERVER['PHP_AUTH_PW']) ? $_SERVER['PHP_AUTH_PW'] : ''; + + // host & port + if (isset($_SERVER['HTTP_HOST'])) { + $pair = explode(':', $_SERVER['HTTP_HOST']); + + } elseif (isset($_SERVER['SERVER_NAME'])) { + $pair = explode(':', $_SERVER['SERVER_NAME']); + + } else { + $pair = array(''); + } + + $url->host = preg_match('#^[-._a-z0-9]+$#', $pair[0]) ? $pair[0] : ''; + + if (isset($pair[1])) { + $url->port = (int) $pair[1]; + + } elseif (isset($_SERVER['SERVER_PORT'])) { + $url->port = (int) $_SERVER['SERVER_PORT']; + } + + // path & query + if (isset($_SERVER['REQUEST_URI'])) { // Apache, IIS 6.0 + $requestUrl = $_SERVER['REQUEST_URI']; + + } elseif (isset($_SERVER['ORIG_PATH_INFO'])) { // IIS 5.0 (PHP as CGI ?) + $requestUrl = $_SERVER['ORIG_PATH_INFO']; + if (isset($_SERVER['QUERY_STRING']) && $_SERVER['QUERY_STRING'] != '') { + $requestUrl .= '?' . $_SERVER['QUERY_STRING']; + } + } else { + $requestUrl = ''; + } + + $requestUrl = Strings::replace($requestUrl, $this->urlFilters['url']); + $tmp = explode('?', $requestUrl, 2); + $url->path = Strings::replace($tmp[0], $this->urlFilters['path']); + $url->query = isset($tmp[1]) ? $tmp[1] : ''; + + // normalized url + $url->canonicalize(); + $url->path = Strings::fixEncoding($url->path); + + // detect script path + if (isset($_SERVER['SCRIPT_NAME'])) { + $script = $_SERVER['SCRIPT_NAME']; + } elseif (isset($_SERVER['DOCUMENT_ROOT'], $_SERVER['SCRIPT_FILENAME']) + && strncmp($_SERVER['DOCUMENT_ROOT'], $_SERVER['SCRIPT_FILENAME'], strlen($_SERVER['DOCUMENT_ROOT'])) === 0 + ) { + $script = '/' . ltrim(strtr(substr($_SERVER['SCRIPT_FILENAME'], strlen($_SERVER['DOCUMENT_ROOT'])), '\\', '/'), '/'); + } else { + $script = '/'; + } + + $path = strtolower($url->path) . '/'; + $script = strtolower($script) . '/'; + $max = min(strlen($path), strlen($script)); + for ($i = 0; $i < $max; $i++) { + if ($path[$i] !== $script[$i]) { + break; + } elseif ($path[$i] === '/') { + $url->scriptPath = substr($url->path, 0, $i + 1); + } + } + + // GET, POST, COOKIE + $useFilter = (!in_array(ini_get('filter.default'), array('', 'unsafe_raw')) || ini_get('filter.default_flags')); + + parse_str($url->query, $query); + if (!$query) { + $query = $useFilter ? filter_input_array(INPUT_GET, FILTER_UNSAFE_RAW) : (empty($_GET) ? array() : $_GET); + } + $post = $useFilter ? filter_input_array(INPUT_POST, FILTER_UNSAFE_RAW) : (empty($_POST) ? array() : $_POST); + $cookies = $useFilter ? filter_input_array(INPUT_COOKIE, FILTER_UNSAFE_RAW) : (empty($_COOKIE) ? array() : $_COOKIE); + + $gpc = (bool) get_magic_quotes_gpc(); + $old = error_reporting(error_reporting() ^ E_NOTICE); + + // remove fucking quotes and check (and optionally convert) encoding + if ($gpc || $this->encoding) { + $utf = strcasecmp($this->encoding, 'UTF-8') === 0; + $list = array(& $query, & $post, & $cookies); + while (list($key, $val) = each($list)) { + foreach ($val as $k => $v) { + unset($list[$key][$k]); + + if ($gpc) { + $k = stripslashes($k); + } + + if ($this->encoding && is_string($k) && (preg_match(self::NONCHARS, $k) || preg_last_error())) { + // invalid key -> ignore + + } elseif (is_array($v)) { + $list[$key][$k] = $v; + $list[] = & $list[$key][$k]; + + } else { + if ($gpc && !$useFilter) { + $v = stripSlashes($v); + } + if ($this->encoding) { + if ($utf) { + $v = Strings::fixEncoding($v); + + } else { + if (!Strings::checkEncoding($v)) { + $v = iconv($this->encoding, 'UTF-8//IGNORE', $v); + } + $v = html_entity_decode($v, ENT_QUOTES, 'UTF-8'); + } + $v = preg_replace(self::NONCHARS, '', $v); + } + $list[$key][$k] = $v; + } + } + } + unset($list, $key, $val, $k, $v); + } + + + // FILES and create FileUpload objects + $files = array(); + $list = array(); + if (!empty($_FILES)) { + foreach ($_FILES as $k => $v) { + if ($this->encoding && is_string($k) && (preg_match(self::NONCHARS, $k) || preg_last_error())) { + continue; + } + $v['@'] = & $files[$k]; + $list[] = $v; + } + } + + while (list(, $v) = each($list)) { + if (!isset($v['name'])) { + continue; + + } elseif (!is_array($v['name'])) { + if ($gpc) { + $v['name'] = stripSlashes($v['name']); + } + if ($this->encoding) { + $v['name'] = preg_replace(self::NONCHARS, '', Strings::fixEncoding($v['name'])); + } + $v['@'] = new FileUpload($v); + continue; + } + + foreach ($v['name'] as $k => $foo) { + if ($this->encoding && is_string($k) && (preg_match(self::NONCHARS, $k) || preg_last_error())) { + continue; + } + $list[] = array( + 'name' => $v['name'][$k], + 'type' => $v['type'][$k], + 'size' => $v['size'][$k], + 'tmp_name' => $v['tmp_name'][$k], + 'error' => $v['error'][$k], + '@' => & $v['@'][$k], + ); + } + } + + error_reporting($old); + + + // HEADERS + if (function_exists('apache_request_headers')) { + $headers = array_change_key_case(apache_request_headers(), CASE_LOWER); + } else { + $headers = array(); + foreach ($_SERVER as $k => $v) { + if (strncmp($k, 'HTTP_', 5) == 0) { + $k = substr($k, 5); + } elseif (strncmp($k, 'CONTENT_', 8)) { + continue; + } + $headers[ strtr(strtolower($k), '_', '-') ] = $v; + } + } + + return new Request($url, $query, $post, $files, $cookies, $headers, + isset($_SERVER['REQUEST_METHOD']) ? $_SERVER['REQUEST_METHOD'] : NULL, + isset($_SERVER['REMOTE_ADDR']) ? $_SERVER['REMOTE_ADDR'] : NULL, + isset($_SERVER['REMOTE_HOST']) ? $_SERVER['REMOTE_HOST'] : NULL + ); + } + +} diff --git a/apigen/libs/Nette/Nette/Http/Response.php b/apigen/libs/Nette/Nette/Http/Response.php new file mode 100644 index 00000000000..0a63d2a67f9 --- /dev/null +++ b/apigen/libs/Nette/Nette/Http/Response.php @@ -0,0 +1,339 @@ +1, 201=>1, 202=>1, 203=>1, 204=>1, 205=>1, 206=>1, + 300=>1, 301=>1, 302=>1, 303=>1, 304=>1, 307=>1, + 400=>1, 401=>1, 403=>1, 404=>1, 405=>1, 406=>1, 408=>1, 410=>1, 412=>1, 415=>1, 416=>1, + 500=>1, 501=>1, 503=>1, 505=>1 + ); + + if (!isset($allowed[$code])) { + throw new Nette\InvalidArgumentException("Bad HTTP response '$code'."); + + } elseif (headers_sent($file, $line)) { + throw new Nette\InvalidStateException("Cannot set HTTP code after HTTP headers have been sent" . ($file ? " (output started at $file:$line)." : ".")); + + } else { + $this->code = $code; + $protocol = isset($_SERVER['SERVER_PROTOCOL']) ? $_SERVER['SERVER_PROTOCOL'] : 'HTTP/1.1'; + header($protocol . ' ' . $code, TRUE, $code); + } + return $this; + } + + + + /** + * Returns HTTP response code. + * @return int + */ + public function getCode() + { + return $this->code; + } + + + + /** + * Sends a HTTP header and replaces a previous one. + * @param string header name + * @param string header value + * @return Response provides a fluent interface + * @throws Nette\InvalidStateException if HTTP headers have been sent + */ + public function setHeader($name, $value) + { + if (headers_sent($file, $line)) { + throw new Nette\InvalidStateException("Cannot send header after HTTP headers have been sent" . ($file ? " (output started at $file:$line)." : ".")); + } + + if ($value === NULL && function_exists('header_remove')) { + header_remove($name); + } else { + header($name . ': ' . $value, TRUE, $this->code); + } + return $this; + } + + + + /** + * Adds HTTP header. + * @param string header name + * @param string header value + * @return Response provides a fluent interface + * @throws Nette\InvalidStateException if HTTP headers have been sent + */ + public function addHeader($name, $value) + { + if (headers_sent($file, $line)) { + throw new Nette\InvalidStateException("Cannot send header after HTTP headers have been sent" . ($file ? " (output started at $file:$line)." : ".")); + } + + header($name . ': ' . $value, FALSE, $this->code); + return $this; + } + + + + /** + * Sends a Content-type HTTP header. + * @param string mime-type + * @param string charset + * @return Response provides a fluent interface + * @throws Nette\InvalidStateException if HTTP headers have been sent + */ + public function setContentType($type, $charset = NULL) + { + $this->setHeader('Content-Type', $type . ($charset ? '; charset=' . $charset : '')); + return $this; + } + + + + /** + * Redirects to a new URL. Note: call exit() after it. + * @param string URL + * @param int HTTP code + * @return void + * @throws Nette\InvalidStateException if HTTP headers have been sent + */ + public function redirect($url, $code = self::S302_FOUND) + { + if (isset($_SERVER['SERVER_SOFTWARE']) && preg_match('#^Microsoft-IIS/[1-5]#', $_SERVER['SERVER_SOFTWARE']) + && $this->getHeader('Set-Cookie') !== NULL + ) { + $this->setHeader('Refresh', "0;url=$url"); + return; + } + + $this->setCode($code); + $this->setHeader('Location', $url); + echo "

Redirect

\n\n

Please click here to continue.

"; + } + + + + /** + * Sets the number of seconds before a page cached on a browser expires. + * @param string|int|DateTime time, value 0 means "until the browser is closed" + * @return Response provides a fluent interface + * @throws Nette\InvalidStateException if HTTP headers have been sent + */ + public function setExpiration($time) + { + if (!$time) { // no cache + $this->setHeader('Cache-Control', 's-maxage=0, max-age=0, must-revalidate'); + $this->setHeader('Expires', 'Mon, 23 Jan 1978 10:00:00 GMT'); + return $this; + } + + $time = Nette\DateTime::from($time); + $this->setHeader('Cache-Control', 'max-age=' . ($time->format('U') - time())); + $this->setHeader('Expires', self::date($time)); + return $this; + } + + + + /** + * Checks if headers have been sent. + * @return bool + */ + public function isSent() + { + return headers_sent(); + } + + + + /** + * Return the value of the HTTP header. + * @param string + * @param mixed + * @return mixed + */ + public function getHeader($header, $default = NULL) + { + $header .= ':'; + $len = strlen($header); + foreach (headers_list() as $item) { + if (strncasecmp($item, $header, $len) === 0) { + return ltrim(substr($item, $len)); + } + } + return $default; + } + + + + /** + * Returns a list of headers to sent. + * @return array + */ + public function getHeaders() + { + $headers = array(); + foreach (headers_list() as $header) { + $a = strpos($header, ':'); + $headers[substr($header, 0, $a)] = (string) substr($header, $a + 2); + } + return $headers; + } + + + + /** + * Returns HTTP valid date format. + * @param string|int|DateTime + * @return string + */ + public static function date($time = NULL) + { + $time = Nette\DateTime::from($time); + $time->setTimezone(new \DateTimeZone('GMT')); + return $time->format('D, d M Y H:i:s \G\M\T'); + } + + + + /** + * @return void + */ + public function __destruct() + { + if (self::$fixIE && isset($_SERVER['HTTP_USER_AGENT']) && strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE ') !== FALSE + && in_array($this->code, array(400, 403, 404, 405, 406, 408, 409, 410, 500, 501, 505), TRUE) + && $this->getHeader('Content-Type', 'text/html') === 'text/html' + ) { + echo Nette\Utils\Strings::random(2e3, " \t\r\n"); // sends invisible garbage for IE + self::$fixIE = FALSE; + } + } + + + + /** + * Sends a cookie. + * @param string name of the cookie + * @param string value + * @param string|int|DateTime expiration time, value 0 means "until the browser is closed" + * @param string + * @param string + * @param bool + * @param bool + * @return Response provides a fluent interface + * @throws Nette\InvalidStateException if HTTP headers have been sent + */ + public function setCookie($name, $value, $time, $path = NULL, $domain = NULL, $secure = NULL, $httpOnly = NULL) + { + if (headers_sent($file, $line)) { + throw new Nette\InvalidStateException("Cannot set cookie after HTTP headers have been sent" . ($file ? " (output started at $file:$line)." : ".")); + } + + setcookie( + $name, + $value, + $time ? Nette\DateTime::from($time)->format('U') : 0, + $path === NULL ? $this->cookiePath : (string) $path, + $domain === NULL ? $this->cookieDomain : (string) $domain, + $secure === NULL ? $this->cookieSecure : (bool) $secure, + $httpOnly === NULL ? $this->cookieHttpOnly : (bool) $httpOnly + ); + + if (ini_get('suhosin.cookie.encrypt')) { + return $this; + } + + $flatten = array(); + foreach (headers_list() as $header) { + if (preg_match('#^Set-Cookie: .+?=#', $header, $m)) { + $flatten[$m[0]] = $header; + if (PHP_VERSION_ID < 50300) { // multiple deleting due PHP bug #61605 + header('Set-Cookie:'); + } else { + header_remove('Set-Cookie'); + } + } + } + foreach (array_values($flatten) as $key => $header) { + header($header, $key === 0); + } + + return $this; + } + + + + /** + * Deletes a cookie. + * @param string name of the cookie. + * @param string + * @param string + * @param bool + * @return void + * @throws Nette\InvalidStateException if HTTP headers have been sent + */ + public function deleteCookie($name, $path = NULL, $domain = NULL, $secure = NULL) + { + $this->setCookie($name, FALSE, 0, $path, $domain, $secure); + } + +} diff --git a/apigen/libs/Nette/Nette/Http/Session.php b/apigen/libs/Nette/Nette/Http/Session.php new file mode 100644 index 00000000000..c7d17b3bcef --- /dev/null +++ b/apigen/libs/Nette/Nette/Http/Session.php @@ -0,0 +1,591 @@ + '', // must be disabled because PHP implementation is invalid + 'use_cookies' => 1, // must be enabled to prevent Session Hijacking and Fixation + 'use_only_cookies' => 1, // must be enabled to prevent Session Fixation + 'use_trans_sid' => 0, // must be disabled to prevent Session Hijacking and Fixation + + // cookies + 'cookie_lifetime' => 0, // until the browser is closed + 'cookie_path' => '/', // cookie is available within the entire domain + 'cookie_domain' => '', // cookie is available on current subdomain only + 'cookie_secure' => FALSE, // cookie is available on HTTP & HTTPS + 'cookie_httponly' => TRUE,// must be enabled to prevent Session Hijacking + + // other + 'gc_maxlifetime' => self::DEFAULT_FILE_LIFETIME,// 3 hours + 'cache_limiter' => NULL, // (default "nocache", special value "\0") + 'cache_expire' => NULL, // (default "180") + 'hash_function' => NULL, // (default "0", means MD5) + 'hash_bits_per_character' => NULL, // (default "4") + ); + + /** @var IRequest */ + private $request; + + /** @var IResponse */ + private $response; + + + + public function __construct(IRequest $request, IResponse $response) + { + $this->request = $request; + $this->response = $response; + } + + + + /** + * Starts and initializes session data. + * @throws Nette\InvalidStateException + * @return void + */ + public function start() + { + if (self::$started) { + return; + } + + $this->configure($this->options); + + Nette\Diagnostics\Debugger::tryError(); + session_start(); + if (Nette\Diagnostics\Debugger::catchError($e) && !session_id()) { + @session_write_close(); // this is needed + throw new Nette\InvalidStateException('session_start(): ' . $e->getMessage(), 0, $e); + } + + self::$started = TRUE; + + /* structure: + __NF: Counter, BrowserKey, Data, Meta, Time + DATA: section->variable = data + META: section->variable = Timestamp, Browser, Version + */ + + unset($_SESSION['__NT'], $_SESSION['__NS'], $_SESSION['__NM']); // old unused structures + + // initialize structures + $nf = & $_SESSION['__NF']; + if (empty($nf)) { // new session + $nf = array('C' => 0); + } else { + $nf['C']++; + } + + // session regenerate every 30 minutes + $nfTime = & $nf['Time']; + $time = time(); + if ($time - $nfTime > self::REGENERATE_INTERVAL) { + $this->regenerated = $this->regenerated || isset($nfTime); + $nfTime = $time; + } + + // browser closing detection + $browserKey = $this->request->getCookie('nette-browser'); + if (!$browserKey) { + $browserKey = Nette\Utils\Strings::random(); + } + $browserClosed = !isset($nf['B']) || $nf['B'] !== $browserKey; + $nf['B'] = $browserKey; + + // resend cookie + $this->sendCookie(); + + // process meta metadata + if (isset($nf['META'])) { + $now = time(); + // expire section variables + foreach ($nf['META'] as $section => $metadata) { + if (is_array($metadata)) { + foreach ($metadata as $variable => $value) { + if ((!empty($value['B']) && $browserClosed) || (!empty($value['T']) && $now > $value['T']) // whenBrowserIsClosed || Time + || (isset($nf['DATA'][$section][$variable]) && is_object($nf['DATA'][$section][$variable]) && (isset($value['V']) ? $value['V'] : NULL) // Version + != Nette\Reflection\ClassType::from($nf['DATA'][$section][$variable])->getAnnotation('serializationVersion')) // intentionally != + ) { + if ($variable === '') { // expire whole section + unset($nf['META'][$section], $nf['DATA'][$section]); + continue 2; + } + unset($nf['META'][$section][$variable], $nf['DATA'][$section][$variable]); + } + } + } + } + } + + if ($this->regenerated) { + $this->regenerated = FALSE; + $this->regenerateId(); + } + + register_shutdown_function(array($this, 'clean')); + } + + + + /** + * Has been session started? + * @return bool + */ + public function isStarted() + { + return (bool) self::$started; + } + + + + /** + * Ends the current session and store session data. + * @return void + */ + public function close() + { + if (self::$started) { + $this->clean(); + session_write_close(); + self::$started = FALSE; + } + } + + + + /** + * Destroys all data registered to a session. + * @return void + */ + public function destroy() + { + if (!self::$started) { + throw new Nette\InvalidStateException('Session is not started.'); + } + + session_destroy(); + $_SESSION = NULL; + self::$started = FALSE; + if (!$this->response->isSent()) { + $params = session_get_cookie_params(); + $this->response->deleteCookie(session_name(), $params['path'], $params['domain'], $params['secure']); + } + } + + + + /** + * Does session exists for the current request? + * @return bool + */ + public function exists() + { + return self::$started || $this->request->getCookie($this->getName()) !== NULL; + } + + + + /** + * Regenerates the session ID. + * @throws Nette\InvalidStateException + * @return void + */ + public function regenerateId() + { + if (self::$started && !$this->regenerated) { + if (headers_sent($file, $line)) { + throw new Nette\InvalidStateException("Cannot regenerate session ID after HTTP headers have been sent" . ($file ? " (output started at $file:$line)." : ".")); + } + session_regenerate_id(TRUE); + session_write_close(); + $backup = $_SESSION; + session_start(); + $_SESSION = $backup; + } + $this->regenerated = TRUE; + } + + + + /** + * Returns the current session ID. Don't make dependencies, can be changed for each request. + * @return string + */ + public function getId() + { + return session_id(); + } + + + + /** + * Sets the session name to a specified one. + * @param string + * @return Session provides a fluent interface + */ + public function setName($name) + { + if (!is_string($name) || !preg_match('#[^0-9.][^.]*$#A', $name)) { + throw new Nette\InvalidArgumentException('Session name must be a string and cannot contain dot.'); + } + + session_name($name); + return $this->setOptions(array( + 'name' => $name, + )); + } + + + + /** + * Gets the session name. + * @return string + */ + public function getName() + { + return isset($this->options['name']) ? $this->options['name'] : session_name(); + } + + + + /********************* sections management ****************d*g**/ + + + + /** + * Returns specified session section. + * @param string + * @param string + * @return SessionSection + * @throws Nette\InvalidArgumentException + */ + public function getSection($section, $class = 'Nette\Http\SessionSection') + { + return new $class($this, $section); + } + + + + /** @deprecated */ + function getNamespace($section) + { + trigger_error(__METHOD__ . '() is deprecated; use getSection() instead.', E_USER_WARNING); + return $this->getSection($section); + } + + + + /** + * Checks if a session section exist and is not empty. + * @param string + * @return bool + */ + public function hasSection($section) + { + if ($this->exists() && !self::$started) { + $this->start(); + } + + return !empty($_SESSION['__NF']['DATA'][$section]); + } + + + + /** + * Iteration over all sections. + * @return \ArrayIterator + */ + public function getIterator() + { + if ($this->exists() && !self::$started) { + $this->start(); + } + + if (isset($_SESSION['__NF']['DATA'])) { + return new \ArrayIterator(array_keys($_SESSION['__NF']['DATA'])); + + } else { + return new \ArrayIterator; + } + } + + + + /** + * Cleans and minimizes meta structures. + * @return void + */ + public function clean() + { + if (!self::$started || empty($_SESSION)) { + return; + } + + $nf = & $_SESSION['__NF']; + if (isset($nf['META']) && is_array($nf['META'])) { + foreach ($nf['META'] as $name => $foo) { + if (empty($nf['META'][$name])) { + unset($nf['META'][$name]); + } + } + } + + if (empty($nf['META'])) { + unset($nf['META']); + } + + if (empty($nf['DATA'])) { + unset($nf['DATA']); + } + + if (empty($_SESSION)) { + //$this->destroy(); only when shutting down + } + } + + + + /********************* configuration ****************d*g**/ + + + + /** + * Sets session options. + * @param array + * @return Session provides a fluent interface + * @throws Nette\NotSupportedException + * @throws Nette\InvalidStateException + */ + public function setOptions(array $options) + { + if (self::$started) { + $this->configure($options); + } + $this->options = $options + $this->options; + if (!empty($options['auto_start'])) { + $this->start(); + } + return $this; + } + + + + /** + * Returns all session options. + * @return array + */ + public function getOptions() + { + return $this->options; + } + + + + /** + * Configurates session environment. + * @param array + * @return void + */ + private function configure(array $config) + { + $special = array('cache_expire' => 1, 'cache_limiter' => 1, 'save_path' => 1, 'name' => 1); + + foreach ($config as $key => $value) { + if (!strncmp($key, 'session.', 8)) { // back compatibility + $key = substr($key, 8); + } + $key = strtolower(preg_replace('#(.)(?=[A-Z])#', '$1_', $key)); + + if ($value === NULL || ini_get("session.$key") == $value) { // intentionally == + continue; + + } elseif (strncmp($key, 'cookie_', 7) === 0) { + if (!isset($cookie)) { + $cookie = session_get_cookie_params(); + } + $cookie[substr($key, 7)] = $value; + + } else { + if (defined('SID')) { + throw new Nette\InvalidStateException("Unable to set 'session.$key' to value '$value' when session has been started" . ($this->started ? "." : " by session.auto_start or session_start().")); + } + if (isset($special[$key])) { + $key = "session_$key"; + $key($value); + + } elseif (function_exists('ini_set')) { + ini_set("session.$key", $value); + + } elseif (!Nette\Framework::$iAmUsingBadHost) { + throw new Nette\NotSupportedException('Required function ini_set() is disabled.'); + } + } + } + + if (isset($cookie)) { + session_set_cookie_params( + $cookie['lifetime'], $cookie['path'], $cookie['domain'], + $cookie['secure'], $cookie['httponly'] + ); + if (self::$started) { + $this->sendCookie(); + } + } + } + + + + /** + * Sets the amount of time allowed between requests before the session will be terminated. + * @param string|int|DateTime time, value 0 means "until the browser is closed" + * @return Session provides a fluent interface + */ + public function setExpiration($time) + { + if (empty($time)) { + return $this->setOptions(array( + 'gc_maxlifetime' => self::DEFAULT_FILE_LIFETIME, + 'cookie_lifetime' => 0, + )); + + } else { + $time = Nette\DateTime::from($time)->format('U') - time(); + return $this->setOptions(array( + 'gc_maxlifetime' => $time, + 'cookie_lifetime' => $time, + )); + } + } + + + + /** + * Sets the session cookie parameters. + * @param string path + * @param string domain + * @param bool secure + * @return Session provides a fluent interface + */ + public function setCookieParameters($path, $domain = NULL, $secure = NULL) + { + return $this->setOptions(array( + 'cookie_path' => $path, + 'cookie_domain' => $domain, + 'cookie_secure' => $secure + )); + } + + + + /** + * Returns the session cookie parameters. + * @return array containing items: lifetime, path, domain, secure, httponly + */ + public function getCookieParameters() + { + return session_get_cookie_params(); + } + + + + /** @deprecated */ + function setCookieParams($path, $domain = NULL, $secure = NULL) + { + trigger_error(__METHOD__ . '() is deprecated; use setCookieParameters() instead.', E_USER_WARNING); + return $this->setCookieParameters($path, $domain, $secure); + } + + + + /** + * Sets path of the directory used to save session data. + * @return Session provides a fluent interface + */ + public function setSavePath($path) + { + return $this->setOptions(array( + 'save_path' => $path, + )); + } + + + + /** + * Sets user session storage. + * @return Session provides a fluent interface + */ + public function setStorage(ISessionStorage $storage) + { + if (self::$started) { + throw new Nette\InvalidStateException("Unable to set storage when session has been started."); + } + session_set_save_handler( + array($storage, 'open'), array($storage, 'close'), array($storage, 'read'), + array($storage, 'write'), array($storage, 'remove'), array($storage, 'clean') + ); + } + + + + /** + * Sends the session cookies. + * @return void + */ + private function sendCookie() + { + $cookie = $this->getCookieParameters(); + $this->response->setCookie( + session_name(), session_id(), + $cookie['lifetime'] ? $cookie['lifetime'] + time() : 0, + $cookie['path'], $cookie['domain'], $cookie['secure'], $cookie['httponly'] + + )->setCookie( + 'nette-browser', $_SESSION['__NF']['B'], + Response::BROWSER, $cookie['path'], $cookie['domain'] + ); + } + +} diff --git a/apigen/libs/Nette/Nette/Http/SessionSection.php b/apigen/libs/Nette/Nette/Http/SessionSection.php new file mode 100644 index 00000000000..5fa0e4738de --- /dev/null +++ b/apigen/libs/Nette/Nette/Http/SessionSection.php @@ -0,0 +1,273 @@ +session = $session; + $this->name = $name; + } + + + + /** + * Do not call directly. Use Session::getNamespace(). + */ + private function start() + { + if ($this->meta === FALSE) { + $this->session->start(); + $this->data = & $_SESSION['__NF']['DATA'][$this->name]; + $this->meta = & $_SESSION['__NF']['META'][$this->name]; + } + } + + + + /** + * Returns an iterator over all section variables. + * @return \ArrayIterator + */ + public function getIterator() + { + $this->start(); + if (isset($this->data)) { + return new \ArrayIterator($this->data); + } else { + return new \ArrayIterator; + } + } + + + + /** + * Sets a variable in this session section. + * @param string name + * @param mixed value + * @return void + */ + public function __set($name, $value) + { + $this->start(); + $this->data[$name] = $value; + if (is_object($value)) { + $this->meta[$name]['V'] = Nette\Reflection\ClassType::from($value)->getAnnotation('serializationVersion'); + } + } + + + + /** + * Gets a variable from this session section. + * @param string name + * @return mixed + */ + public function &__get($name) + { + $this->start(); + if ($this->warnOnUndefined && !array_key_exists($name, $this->data)) { + trigger_error("The variable '$name' does not exist in session section", E_USER_NOTICE); + } + + return $this->data[$name]; + } + + + + /** + * Determines whether a variable in this session section is set. + * @param string name + * @return bool + */ + public function __isset($name) + { + if ($this->session->exists()) { + $this->start(); + } + return isset($this->data[$name]); + } + + + + /** + * Unsets a variable in this session section. + * @param string name + * @return void + */ + public function __unset($name) + { + $this->start(); + unset($this->data[$name], $this->meta[$name]); + } + + + + /** + * Sets a variable in this session section. + * @param string name + * @param mixed value + * @return void + */ + public function offsetSet($name, $value) + { + $this->__set($name, $value); + } + + + + /** + * Gets a variable from this session section. + * @param string name + * @return mixed + */ + public function offsetGet($name) + { + return $this->__get($name); + } + + + + /** + * Determines whether a variable in this session section is set. + * @param string name + * @return bool + */ + public function offsetExists($name) + { + return $this->__isset($name); + } + + + + /** + * Unsets a variable in this session section. + * @param string name + * @return void + */ + public function offsetUnset($name) + { + $this->__unset($name); + } + + + + /** + * Sets the expiration of the section or specific variables. + * @param string|int|DateTime time, value 0 means "until the browser is closed" + * @param mixed optional list of variables / single variable to expire + * @return SessionSection provides a fluent interface + */ + public function setExpiration($time, $variables = NULL) + { + $this->start(); + if (empty($time)) { + $time = NULL; + $whenBrowserIsClosed = TRUE; + } else { + $time = Nette\DateTime::from($time)->format('U'); + $max = ini_get('session.gc_maxlifetime'); + if ($time - time() > $max + 3) { // bulgarian constant + trigger_error("The expiration time is greater than the session expiration $max seconds", E_USER_NOTICE); + } + $whenBrowserIsClosed = FALSE; + } + + if ($variables === NULL) { // to entire section + $this->meta['']['T'] = $time; + $this->meta['']['B'] = $whenBrowserIsClosed; + + } elseif (is_array($variables)) { // to variables + foreach ($variables as $variable) { + $this->meta[$variable]['T'] = $time; + $this->meta[$variable]['B'] = $whenBrowserIsClosed; + } + + } else { // to variable + $this->meta[$variables]['T'] = $time; + $this->meta[$variables]['B'] = $whenBrowserIsClosed; + } + return $this; + } + + + + /** + * Removes the expiration from the section or specific variables. + * @param mixed optional list of variables / single variable to expire + * @return void + */ + public function removeExpiration($variables = NULL) + { + $this->start(); + if ($variables === NULL) { + // from entire section + unset($this->meta['']['T'], $this->meta['']['B']); + + } elseif (is_array($variables)) { + // from variables + foreach ($variables as $variable) { + unset($this->meta[$variable]['T'], $this->meta[$variable]['B']); + } + } else { + unset($this->meta[$variables]['T'], $this->meta[$variable]['B']); + } + } + + + + /** + * Cancels the current session section. + * @return void + */ + public function remove() + { + $this->start(); + $this->data = NULL; + $this->meta = NULL; + } + +} diff --git a/apigen/libs/Nette/Nette/Http/Url.php b/apigen/libs/Nette/Nette/Http/Url.php new file mode 100644 index 00000000000..381fcd37d1c --- /dev/null +++ b/apigen/libs/Nette/Nette/Http/Url.php @@ -0,0 +1,526 @@ + + * scheme user password host port basePath relativeUrl + * | | | | | | | + * /--\ /--\ /------\ /-------\ /--\/--\/----------------------------\ + * http://john:x0y17575@nette.org:8042/en/manual.php?name=param#fragment <-- absoluteUrl + * \__________________________/\____________/^\________/^\______/ + * | | | | + * authority path query fragment + * + * + * - authority: [user[:password]@]host[:port] + * - hostUrl: http://user:password@nette.org:8042 + * - basePath: /en/ (everything before relative URI not including the script name) + * - baseUrl: http://user:password@nette.org:8042/en/ + * - relativeUrl: manual.php + * + * @author David Grudl + * + * @property string $scheme + * @property string $user + * @property string $password + * @property string $host + * @property string $port + * @property string $path + * @property string $query + * @property string $fragment + * @property-read string $absoluteUrl + * @property-read string $authority + * @property-read string $hostUrl + * @property-read string $basePath + * @property-read string $baseUrl + * @property-read string $relativeUrl + */ +class Url extends Nette\FreezableObject +{ + /** @var array */ + public static $defaultPorts = array( + 'http' => 80, + 'https' => 443, + 'ftp' => 21, + 'news' => 119, + 'nntp' => 119, + ); + + /** @var string */ + private $scheme = ''; + + /** @var string */ + private $user = ''; + + /** @var string */ + private $pass = ''; + + /** @var string */ + private $host = ''; + + /** @var int */ + private $port = NULL; + + /** @var string */ + private $path = ''; + + /** @var string */ + private $query = ''; + + /** @var string */ + private $fragment = ''; + + + + /** + * @param string URL + * @throws Nette\InvalidArgumentException + */ + public function __construct($url = NULL) + { + if (is_string($url)) { + $parts = @parse_url($url); // @ - is escalated to exception + if ($parts === FALSE) { + throw new Nette\InvalidArgumentException("Malformed or unsupported URI '$url'."); + } + + foreach ($parts as $key => $val) { + $this->$key = $val; + } + + if (!$this->port && isset(self::$defaultPorts[$this->scheme])) { + $this->port = self::$defaultPorts[$this->scheme]; + } + + if ($this->path === '' && ($this->scheme === 'http' || $this->scheme === 'https')) { + $this->path = '/'; + } + + } elseif ($url instanceof self) { + foreach ($this as $key => $val) { + $this->$key = $url->$key; + } + } + } + + + + /** + * Sets the scheme part of URI. + * @param string + * @return Url provides a fluent interface + */ + public function setScheme($value) + { + $this->updating(); + $this->scheme = (string) $value; + return $this; + } + + + + /** + * Returns the scheme part of URI. + * @return string + */ + public function getScheme() + { + return $this->scheme; + } + + + + /** + * Sets the user name part of URI. + * @param string + * @return Url provides a fluent interface + */ + public function setUser($value) + { + $this->updating(); + $this->user = (string) $value; + return $this; + } + + + + /** + * Returns the user name part of URI. + * @return string + */ + public function getUser() + { + return $this->user; + } + + + + /** + * Sets the password part of URI. + * @param string + * @return Url provides a fluent interface + */ + public function setPassword($value) + { + $this->updating(); + $this->pass = (string) $value; + return $this; + } + + + + /** + * Returns the password part of URI. + * @return string + */ + public function getPassword() + { + return $this->pass; + } + + + + /** + * Sets the host part of URI. + * @param string + * @return Url provides a fluent interface + */ + public function setHost($value) + { + $this->updating(); + $this->host = (string) $value; + return $this; + } + + + + /** + * Returns the host part of URI. + * @return string + */ + public function getHost() + { + return $this->host; + } + + + + /** + * Sets the port part of URI. + * @param string + * @return Url provides a fluent interface + */ + public function setPort($value) + { + $this->updating(); + $this->port = (int) $value; + return $this; + } + + + + /** + * Returns the port part of URI. + * @return string + */ + public function getPort() + { + return $this->port; + } + + + + /** + * Sets the path part of URI. + * @param string + * @return Url provides a fluent interface + */ + public function setPath($value) + { + $this->updating(); + $this->path = (string) $value; + return $this; + } + + + + /** + * Returns the path part of URI. + * @return string + */ + public function getPath() + { + return $this->path; + } + + + + /** + * Sets the query part of URI. + * @param string|array + * @return Url provides a fluent interface + */ + public function setQuery($value) + { + $this->updating(); + $this->query = (string) (is_array($value) ? http_build_query($value, '', '&') : $value); + return $this; + } + + + + /** + * Appends the query part of URI. + * @param string|array + * @return void + */ + public function appendQuery($value) + { + $this->updating(); + $value = (string) (is_array($value) ? http_build_query($value, '', '&') : $value); + $this->query .= ($this->query === '' || $value === '') ? $value : '&' . $value; + } + + + + /** + * Returns the query part of URI. + * @return string + */ + public function getQuery() + { + return $this->query; + } + + + + /** + * Sets the fragment part of URI. + * @param string + * @return Url provides a fluent interface + */ + public function setFragment($value) + { + $this->updating(); + $this->fragment = (string) $value; + return $this; + } + + + + /** + * Returns the fragment part of URI. + * @return string + */ + public function getFragment() + { + return $this->fragment; + } + + + + /** + * Returns the entire URI including query string and fragment. + * @return string + */ + public function getAbsoluteUrl() + { + return $this->scheme . '://' . $this->getAuthority() . $this->path + . ($this->query === '' ? '' : '?' . $this->query) + . ($this->fragment === '' ? '' : '#' . $this->fragment); + } + + + + /** + * Returns the [user[:pass]@]host[:port] part of URI. + * @return string + */ + public function getAuthority() + { + $authority = $this->host; + if ($this->port && isset(self::$defaultPorts[$this->scheme]) && $this->port !== self::$defaultPorts[$this->scheme]) { + $authority .= ':' . $this->port; + } + + if ($this->user !== '' && $this->scheme !== 'http' && $this->scheme !== 'https') { + $authority = $this->user . ($this->pass === '' ? '' : ':' . $this->pass) . '@' . $authority; + } + + return $authority; + } + + + + /** + * Returns the scheme and authority part of URI. + * @return string + */ + public function getHostUrl() + { + return $this->scheme . '://' . $this->getAuthority(); + } + + + + /** + * Returns the base-path. + * @return string + */ + public function getBasePath() + { + $pos = strrpos($this->path, '/'); + return $pos === FALSE ? '' : substr($this->path, 0, $pos + 1); + } + + + + /** + * Returns the base-URI. + * @return string + */ + public function getBaseUrl() + { + return $this->scheme . '://' . $this->getAuthority() . $this->getBasePath(); + } + + + + /** + * Returns the relative-URI. + * @return string + */ + public function getRelativeUrl() + { + return (string) substr($this->getAbsoluteUrl(), strlen($this->getBaseUrl())); + } + + + + /** + * URI comparsion (this object must be in canonical form). + * @param string + * @return bool + */ + public function isEqual($url) + { + // compare host + path + $part = self::unescape(strtok($url, '?#'), '%/'); + if (strncmp($part, '//', 2) === 0) { // absolute URI without scheme + if ($part !== '//' . $this->getAuthority() . $this->path) { + return FALSE; + } + + } elseif (strncmp($part, '/', 1) === 0) { // absolute path + if ($part !== $this->path) { + return FALSE; + } + + } else { + if ($part !== $this->scheme . '://' . $this->getAuthority() . $this->path) { + return FALSE; + } + } + + // compare query strings + $part = preg_split('#[&;]#', self::unescape(strtr((string) strtok('?#'), '+', ' '), '%&;=+')); + sort($part); + $query = preg_split('#[&;]#', $this->query); + sort($query); + return $part === $query; + } + + + + /** + * Transform to canonical form. + * @return void + */ + public function canonicalize() + { + $this->updating(); + $this->path = $this->path === '' ? '/' : self::unescape($this->path, '%/'); + $this->host = strtolower(rawurldecode($this->host)); + $this->query = self::unescape(strtr($this->query, '+', ' '), '%&;=+'); + } + + + + /** + * @return string + */ + public function __toString() + { + return $this->getAbsoluteUrl(); + } + + + + /** + * Similar to rawurldecode, but preserve reserved chars encoded. + * @param string to decode + * @param string reserved characters + * @return string + */ + public static function unescape($s, $reserved = '%;/?:@&=+$,') + { + // reserved (@see RFC 2396) = ";" | "/" | "?" | ":" | "@" | "&" | "=" | "+" | "$" | "," + // within a path segment, the characters "/", ";", "=", "?" are reserved + // within a query component, the characters ";", "/", "?", ":", "@", "&", "=", "+", ",", "$" are reserved. + preg_match_all('#(?<=%)[a-f0-9][a-f0-9]#i', $s, $matches, PREG_OFFSET_CAPTURE | PREG_SET_ORDER); + foreach (array_reverse($matches) as $match) { + $ch = chr(hexdec($match[0][0])); + if (strpos($reserved, $ch) === FALSE) { + $s = substr_replace($s, $ch, $match[0][1] - 1, 3); + } + } + return $s; + } + + + + /** @deprecated */ + function getRelativeUri() + { + trigger_error(__METHOD__ . '() is deprecated; use ' . __CLASS__ . '::getRelativeUrl() instead.', E_USER_WARNING); + return $this->getRelativeUrl(); + } + + /** @deprecated */ + function getAbsoluteUri() + { + trigger_error(__METHOD__ . '() is deprecated; use ' . __CLASS__ . '::getAbsoluteUrl() instead.', E_USER_WARNING); + return $this->getAbsoluteUrl(); + } + + /** @deprecated */ + function getHostUri() + { + trigger_error(__METHOD__ . '() is deprecated; use ' . __CLASS__ . '::getHostUrl() instead.', E_USER_WARNING); + return $this->getHostUrl(); + } + + /** @deprecated */ + function getBaseUri() + { + trigger_error(__METHOD__ . '() is deprecated; use ' . __CLASS__ . '::getBaseUrl() instead.', E_USER_WARNING); + return $this->getBaseUrl(); + } + +} diff --git a/apigen/libs/Nette/Nette/Http/UrlScript.php b/apigen/libs/Nette/Nette/Http/UrlScript.php new file mode 100644 index 00000000000..2aa641c7634 --- /dev/null +++ b/apigen/libs/Nette/Nette/Http/UrlScript.php @@ -0,0 +1,89 @@ + + * http://nette.org/admin/script.php/pathinfo/?name=param#fragment + * \_______________/\________/ + * | | + * scriptPath pathInfo + * + * + * - scriptPath: /admin/script.php (or simply /admin/ when script is directory index) + * - pathInfo: /pathinfo/ (additional path information) + * + * @author David Grudl + * + * @property string $scriptPath + * @property-read string $pathInfo + */ +class UrlScript extends Url +{ + /** @var string */ + private $scriptPath = '/'; + + + + /** + * Sets the script-path part of URI. + * @param string + * @return UrlScript provides a fluent interface + */ + public function setScriptPath($value) + { + $this->updating(); + $this->scriptPath = (string) $value; + return $this; + } + + + + /** + * Returns the script-path part of URI. + * @return string + */ + public function getScriptPath() + { + return $this->scriptPath; + } + + + + /** + * Returns the base-path. + * @return string + */ + public function getBasePath() + { + $pos = strrpos($this->scriptPath, '/'); + return $pos === FALSE ? '' : substr($this->path, 0, $pos + 1); + } + + + + /** + * Returns the additional path information. + * @return string + */ + public function getPathInfo() + { + return (string) substr($this->path, strlen($this->scriptPath)); + } + +} diff --git a/apigen/libs/Nette/Nette/Http/UserStorage.php b/apigen/libs/Nette/Nette/Http/UserStorage.php new file mode 100644 index 00000000000..13c93bf2651 --- /dev/null +++ b/apigen/libs/Nette/Nette/Http/UserStorage.php @@ -0,0 +1,221 @@ +sessionHandler = $sessionHandler; + } + + + + /** + * Sets the authenticated status of this user. + * @param bool + * @return UserStorage Provides a fluent interface + */ + public function setAuthenticated($state) + { + $section = $this->getSessionSection(TRUE); + $section->authenticated = (bool) $state; + + // Session Fixation defence + $this->sessionHandler->regenerateId(); + + if ($state) { + $section->reason = NULL; + $section->authTime = time(); // informative value + + } else { + $section->reason = self::MANUAL; + $section->authTime = NULL; + } + return $this; + } + + + + /** + * Is this user authenticated? + * @return bool + */ + public function isAuthenticated() + { + $session = $this->getSessionSection(FALSE); + return $session && $session->authenticated; + } + + + + /** + * Sets the user identity. + * @param IIdentity + * @return UserStorage Provides a fluent interface + */ + public function setIdentity(IIdentity $identity = NULL) + { + $this->getSessionSection(TRUE)->identity = $identity; + return $this; + } + + + + /** + * Returns current user identity, if any. + * @return Nette\Security\IIdentity|NULL + */ + public function getIdentity() + { + $session = $this->getSessionSection(FALSE); + return $session ? $session->identity : NULL; + } + + + + /** + * Changes namespace; allows more users to share a session. + * @param string + * @return UserStorage Provides a fluent interface + */ + public function setNamespace($namespace) + { + if ($this->namespace !== $namespace) { + $this->namespace = (string) $namespace; + $this->sessionSection = NULL; + } + return $this; + } + + + + /** + * Returns current namespace. + * @return string + */ + public function getNamespace() + { + return $this->namespace; + } + + + + /** + * Enables log out after inactivity. + * @param string|int|DateTime Number of seconds or timestamp + * @param int Log out when the browser is closed | Clear the identity from persistent storage? + * @return UserStorage Provides a fluent interface + */ + public function setExpiration($time, $flags = 0) + { + $section = $this->getSessionSection(TRUE); + if ($time) { + $time = Nette\DateTime::from($time)->format('U'); + $section->expireTime = $time; + $section->expireDelta = $time - time(); + + } else { + unset($section->expireTime, $section->expireDelta); + } + + $section->expireIdentity = (bool) ($flags & self::CLEAR_IDENTITY); + $section->expireBrowser = (bool) ($flags & self::BROWSER_CLOSED); + $section->browserCheck = TRUE; + $section->setExpiration(0, 'browserCheck'); + $section->setExpiration($time, 'foo'); // time check + return $this; + } + + + + /** + * Why was user logged out? + * @return int + */ + public function getLogoutReason() + { + $session = $this->getSessionSection(FALSE); + return $session ? $session->reason : NULL; + } + + + + /** + * Returns and initializes $this->sessionSection. + * @return SessionSection + */ + protected function getSessionSection($need) + { + if ($this->sessionSection !== NULL) { + return $this->sessionSection; + } + + if (!$need && !$this->sessionHandler->exists()) { + return NULL; + } + + $this->sessionSection = $section = $this->sessionHandler->getSection('Nette.Http.UserStorage/' . $this->namespace); + + if (!$section->identity instanceof IIdentity || !is_bool($section->authenticated)) { + $section->remove(); + } + + if ($section->authenticated && $section->expireBrowser && !$section->browserCheck) { // check if browser was closed? + $section->reason = self::BROWSER_CLOSED; + $section->authenticated = FALSE; + if ($section->expireIdentity) { + unset($section->identity); + } + } + + if ($section->authenticated && $section->expireDelta > 0) { // check time expiration + if ($section->expireTime < time()) { + $section->reason = self::INACTIVITY; + $section->authenticated = FALSE; + if ($section->expireIdentity) { + unset($section->identity); + } + } + $section->expireTime = time() + $section->expireDelta; // sliding expiration + } + + if (!$section->authenticated) { + unset($section->expireTime, $section->expireDelta, $section->expireIdentity, + $section->expireBrowser, $section->browserCheck, $section->authTime); + } + + return $this->sessionSection; + } + +} diff --git a/apigen/libs/Nette/Nette/Iterators/CachingIterator.php b/apigen/libs/Nette/Nette/Iterators/CachingIterator.php new file mode 100644 index 00000000000..d97c8114186 --- /dev/null +++ b/apigen/libs/Nette/Nette/Iterators/CachingIterator.php @@ -0,0 +1,266 @@ +getIterator(); + + } elseif (!$iterator instanceof \Iterator) { + $iterator = new \IteratorIterator($iterator); + } + + } else { + throw new Nette\InvalidArgumentException("Invalid argument passed to foreach resp. " . __CLASS__ . "; array or Traversable expected, " . (is_object($iterator) ? get_class($iterator) : gettype($iterator)) ." given."); + } + + parent::__construct($iterator, 0); + } + + + + /** + * Is the current element the first one? + * @param int grid width + * @return bool + */ + public function isFirst($width = NULL) + { + return $this->counter === 1 || ($width && $this->counter !== 0 && (($this->counter - 1) % $width) === 0); + } + + + + /** + * Is the current element the last one? + * @param int grid width + * @return bool + */ + public function isLast($width = NULL) + { + return !$this->hasNext() || ($width && ($this->counter % $width) === 0); + } + + + + /** + * Is the iterator empty? + * @return bool + */ + public function isEmpty() + { + return $this->counter === 0; + } + + + + /** + * Is the counter odd? + * @return bool + */ + public function isOdd() + { + return $this->counter % 2 === 1; + } + + + + /** + * Is the counter even? + * @return bool + */ + public function isEven() + { + return $this->counter % 2 === 0; + } + + + + /** + * Returns the counter. + * @return int + */ + public function getCounter() + { + return $this->counter; + } + + + + /** + * Returns the count of elements. + * @return int + */ + public function count() + { + $inner = $this->getInnerIterator(); + if ($inner instanceof \Countable) { + return $inner->count(); + + } else { + throw new Nette\NotSupportedException('Iterator is not countable.'); + } + } + + + + /** + * Forwards to the next element. + * @return void + */ + public function next() + { + parent::next(); + if (parent::valid()) { + $this->counter++; + } + } + + + + /** + * Rewinds the Iterator. + * @return void + */ + public function rewind() + { + parent::rewind(); + $this->counter = parent::valid() ? 1 : 0; + } + + + + /** + * Returns the next key. + * @return mixed + */ + public function getNextKey() + { + return $this->getInnerIterator()->key(); + } + + + + /** + * Returns the next element. + * @return mixed + */ + public function getNextValue() + { + return $this->getInnerIterator()->current(); + } + + + + /********************* Nette\Object behaviour ****************d*g**/ + + + + /** + * Call to undefined method. + * @param string method name + * @param array arguments + * @return mixed + * @throws Nette\MemberAccessException + */ + public function __call($name, $args) + { + return Nette\ObjectMixin::call($this, $name, $args); + } + + + + /** + * Returns property value. Do not call directly. + * @param string property name + * @return mixed property value + * @throws Nette\MemberAccessException if the property is not defined. + */ + public function &__get($name) + { + return Nette\ObjectMixin::get($this, $name); + } + + + + /** + * Sets value of a property. Do not call directly. + * @param string property name + * @param mixed property value + * @return void + * @throws Nette\MemberAccessException if the property is not defined or is read-only + */ + public function __set($name, $value) + { + return Nette\ObjectMixin::set($this, $name, $value); + } + + + + /** + * Is property defined? + * @param string property name + * @return bool + */ + public function __isset($name) + { + return Nette\ObjectMixin::has($this, $name); + } + + + + /** + * Access to undeclared property. + * @param string property name + * @return void + * @throws Nette\MemberAccessException + */ + public function __unset($name) + { + Nette\ObjectMixin::remove($this, $name); + } + + +} diff --git a/apigen/libs/Nette/Nette/Iterators/Filter.php b/apigen/libs/Nette/Nette/Iterators/Filter.php new file mode 100644 index 00000000000..9470fa64c54 --- /dev/null +++ b/apigen/libs/Nette/Nette/Iterators/Filter.php @@ -0,0 +1,47 @@ +callback = new Nette\Callback($callback); + } + + + + public function accept() + { + return $this->callback->invoke($this); + } + +} diff --git a/apigen/libs/Nette/Nette/Iterators/InstanceFilter.php b/apigen/libs/Nette/Nette/Iterators/InstanceFilter.php new file mode 100644 index 00000000000..dbbc376db0c --- /dev/null +++ b/apigen/libs/Nette/Nette/Iterators/InstanceFilter.php @@ -0,0 +1,62 @@ +type = $type; + parent::__construct($iterator); + } + + + + /** + * Expose the current element of the inner iterator? + * @return bool + */ + public function accept() + { + return $this->current() instanceof $this->type; + } + + + + /** + * Returns the count of elements. + * @return int + */ + public function count() + { + return iterator_count($this); + } + +} diff --git a/apigen/libs/Nette/Nette/Iterators/Mapper.php b/apigen/libs/Nette/Nette/Iterators/Mapper.php new file mode 100644 index 00000000000..5a891b57275 --- /dev/null +++ b/apigen/libs/Nette/Nette/Iterators/Mapper.php @@ -0,0 +1,47 @@ +callback = new Nette\Callback($callback); + } + + + + public function current() + { + return $this->callback->invoke(parent::current(), parent::key()); + } + +} diff --git a/apigen/libs/Nette/Nette/Iterators/RecursiveFilter.php b/apigen/libs/Nette/Nette/Iterators/RecursiveFilter.php new file mode 100644 index 00000000000..6b43908f62d --- /dev/null +++ b/apigen/libs/Nette/Nette/Iterators/RecursiveFilter.php @@ -0,0 +1,66 @@ +callback = $callback === NULL ? NULL : new Nette\Callback($callback); + $this->childrenCallback = $childrenCallback === NULL ? NULL : new Nette\Callback($childrenCallback); + } + + + + public function accept() + { + return $this->callback === NULL || $this->callback->invoke($this); + } + + + + public function hasChildren() + { + return $this->getInnerIterator()->hasChildren() + && ($this->childrenCallback === NULL || $this->childrenCallback->invoke($this)); + } + + + + public function getChildren() + { + return new static($this->getInnerIterator()->getChildren(), $this->callback, $this->childrenCallback); + } + +} diff --git a/apigen/libs/Nette/Nette/Iterators/Recursor.php b/apigen/libs/Nette/Nette/Iterators/Recursor.php new file mode 100644 index 00000000000..a300eaea972 --- /dev/null +++ b/apigen/libs/Nette/Nette/Iterators/Recursor.php @@ -0,0 +1,60 @@ +current(); + return ($obj instanceof \IteratorAggregate && $obj->getIterator() instanceof \RecursiveIterator) + || $obj instanceof \RecursiveIterator; + } + + + + /** + * The sub-iterator for the current element. + * @return \RecursiveIterator + */ + public function getChildren() + { + $obj = $this->current(); + return $obj instanceof \IteratorAggregate ? $obj->getIterator() : $obj; + } + + + + /** + * Returns the count of elements. + * @return int + */ + public function count() + { + return iterator_count($this); + } + +} diff --git a/apigen/libs/Nette/Nette/Latte/Compiler.php b/apigen/libs/Nette/Nette/Latte/Compiler.php new file mode 100644 index 00000000000..2d72152df8d --- /dev/null +++ b/apigen/libs/Nette/Nette/Latte/Compiler.php @@ -0,0 +1,530 @@ + IMacro[]] */ + private $macros; + + /** @var \SplObjectStorage */ + private $macroHandlers; + + /** @var HtmlNode[] */ + private $htmlNodes = array(); + + /** @var MacroNode[] */ + private $macroNodes = array(); + + /** @var string[] */ + private $attrCodes = array(); + + /** @var string */ + private $contentType; + + /** @var array [context, subcontext] */ + private $context; + + /** @var string */ + private $templateId; + + /** Context-aware escaping content types */ + const CONTENT_HTML = 'html', + CONTENT_XHTML = 'xhtml', + CONTENT_XML = 'xml', + CONTENT_JS = 'js', + CONTENT_CSS = 'css', + CONTENT_ICAL = 'ical', + CONTENT_TEXT = 'text'; + + /** @internal Context-aware escaping HTML contexts */ + const CONTEXT_COMMENT = 'comment', + CONTEXT_SINGLE_QUOTED = "'", + CONTEXT_DOUBLE_QUOTED = '"'; + + + public function __construct() + { + $this->macroHandlers = new \SplObjectStorage; + } + + + + /** + * Adds new macro. + * @param string + * @return Compiler provides a fluent interface + */ + public function addMacro($name, IMacro $macro) + { + $this->macros[$name][] = $macro; + $this->macroHandlers->attach($macro); + return $this; + } + + + + /** + * Compiles tokens to PHP code. + * @param Token[] + * @return string + */ + public function compile(array $tokens) + { + $this->templateId = Strings::random(); + $this->tokens = $tokens; + $output = ''; + $this->output = & $output; + $this->htmlNodes = $this->macroNodes = array(); + $this->setContentType($this->defaultContentType); + + foreach ($this->macroHandlers as $handler) { + $handler->initialize($this); + } + + try { + foreach ($tokens as $this->position => $token) { + if ($token->type === Token::TEXT) { + $this->output .= $token->text; + + } elseif ($token->type === Token::MACRO_TAG) { + $isRightmost = !isset($tokens[$this->position + 1]) + || substr($tokens[$this->position + 1]->text, 0, 1) === "\n"; + $this->writeMacro($token->name, $token->value, $token->modifiers, $isRightmost); + + } elseif ($token->type === Token::HTML_TAG_BEGIN) { + $this->processHtmlTagBegin($token); + + } elseif ($token->type === Token::HTML_TAG_END) { + $this->processHtmlTagEnd($token); + + } elseif ($token->type === Token::HTML_ATTRIBUTE) { + $this->processHtmlAttribute($token); + + } elseif ($token->type === Token::COMMENT) { + $this->processComment($token); + } + } + } catch (CompileException $e) { + $e->sourceLine = $token->line; + throw $e; + } + + + foreach ($this->htmlNodes as $htmlNode) { + if (!empty($htmlNode->macroAttrs)) { + throw new CompileException("Missing end tag name> for macro-attribute " . Parser::N_PREFIX + . implode(' and ' . Parser::N_PREFIX, array_keys($htmlNode->macroAttrs)) . ".", 0, $token->line); + } + } + + $prologs = $epilogs = ''; + foreach ($this->macroHandlers as $handler) { + $res = $handler->finalize(); + $handlerName = get_class($handler); + $prologs .= empty($res[0]) ? '' : ""; + $epilogs = (empty($res[1]) ? '' : "") . $epilogs; + } + $output = ($prologs ? $prologs . "\n" : '') . $output . $epilogs; + + if ($this->macroNodes) { + throw new CompileException("There are unclosed macros.", 0, $token->line); + } + + $output = $this->expandTokens($output); + return $output; + } + + + + /** + * @return Compiler provides a fluent interface + */ + public function setContentType($type) + { + $this->contentType = $type; + $this->context = NULL; + return $this; + } + + + + /** + * @return string + */ + public function getContentType() + { + return $this->contentType; + } + + + + /** + * @return Compiler provides a fluent interface + */ + public function setContext($context, $sub = NULL) + { + $this->context = array($context, $sub); + return $this; + } + + + + /** + * @return array [context, subcontext] + */ + public function getContext() + { + return $this->context; + } + + + + /** + * @return string + */ + public function getTemplateId() + { + return $this->templateId; + } + + + + /** + * Returns current line number. + * @return int + */ + public function getLine() + { + return $this->tokens ? $this->tokens[$this->position]->line : NULL; + } + + + + public function expandTokens($s) + { + return strtr($s, $this->attrCodes); + } + + + + private function processHtmlTagBegin(Token $token) + { + if ($token->closing) { + do { + $htmlNode = array_pop($this->htmlNodes); + if (!$htmlNode) { + $htmlNode = new HtmlNode($token->name); + } + if (strcasecmp($htmlNode->name, $token->name) === 0) { + break; + } + if ($htmlNode->macroAttrs) { + throw new CompileException("Unexpected name>.", 0, $token->line); + } + } while (TRUE); + $this->htmlNodes[] = $htmlNode; + $htmlNode->closing = TRUE; + $htmlNode->offset = strlen($this->output); + $this->setContext(NULL); + + } elseif ($token->text === '') { + $this->output .= $token->text; + $this->setContext(NULL); + return; + } + + $htmlNode = end($this->htmlNodes); + $isEmpty = !$htmlNode->closing && (Strings::contains($token->text, '/') || $htmlNode->isEmpty); + + if ($isEmpty && in_array($this->contentType, array(self::CONTENT_HTML, self::CONTENT_XHTML))) { // auto-correct + $token->text = preg_replace('#^.*>#', $this->contentType === self::CONTENT_XHTML ? ' />' : '>', $token->text); + } + + if (empty($htmlNode->macroAttrs)) { + $this->output .= $token->text; + } else { + $code = substr($this->output, $htmlNode->offset) . $token->text; + $this->output = substr($this->output, 0, $htmlNode->offset); + $this->writeAttrsMacro($code, $htmlNode); + if ($isEmpty) { + $htmlNode->closing = TRUE; + $this->writeAttrsMacro('', $htmlNode); + } + } + + if ($isEmpty) { + $htmlNode->closing = TRUE; + } + + if (!$htmlNode->closing && (strcasecmp($htmlNode->name, 'script') === 0 || strcasecmp($htmlNode->name, 'style') === 0)) { + $this->setContext(strcasecmp($htmlNode->name, 'style') ? self::CONTENT_JS : self::CONTENT_CSS); + } else { + $this->setContext(NULL); + if ($htmlNode->closing) { + array_pop($this->htmlNodes); + } + } + } + + + + private function processHtmlAttribute(Token $token) + { + $htmlNode = end($this->htmlNodes); + if (Strings::startsWith($token->name, Parser::N_PREFIX)) { + $name = substr($token->name, strlen(Parser::N_PREFIX)); + if (isset($htmlNode->macroAttrs[$name])) { + throw new CompileException("Found multiple macro-attributes $token->name.", 0, $token->line); + } + $htmlNode->macroAttrs[$name] = $token->value; + + } else { + $htmlNode->attrs[$token->name] = TRUE; + $this->output .= $token->text; + if ($token->value) { // quoted + $context = NULL; + if (strncasecmp($token->name, 'on', 2) === 0) { + $context = self::CONTENT_JS; + } elseif ($token->name === 'style') { + $context = self::CONTENT_CSS; + } + $this->setContext($token->value, $context); + } + } + } + + + + private function processComment(Token $token) + { + $isLeftmost = trim(substr($this->output, strrpos("\n$this->output", "\n"))) === ''; + if (!$isLeftmost) { + $this->output .= substr($token->text, strlen(rtrim($token->text, "\n"))); + } + } + + + + /********************* macros ****************d*g**/ + + + + /** + * Generates code for {macro ...} to the output. + * @param string + * @param string + * @param string + * @param bool + * @return MacroNode + */ + public function writeMacro($name, $args = NULL, $modifiers = NULL, $isRightmost = FALSE, HtmlNode $htmlNode = NULL, $prefix = NULL) + { + if ($name[0] === '/') { // closing + $node = end($this->macroNodes); + + if (!$node || ("/$node->name" !== $name && '/' !== $name) || $modifiers + || ($args && $node->args && !Strings::startsWith("$node->args ", "$args ")) + ) { + $name .= $args ? ' ' : ''; + throw new CompileException("Unexpected macro {{$name}{$args}{$modifiers}}" + . ($node ? ", expecting {/$node->name}" . ($args && $node->args ? " or eventually {/$node->name $node->args}" : '') : '')); + } + + array_pop($this->macroNodes); + if (!$node->args) { + $node->setArgs($args); + } + + $isLeftmost = $node->content ? trim(substr($this->output, strrpos("\n$this->output", "\n"))) === '' : FALSE; + + $node->closing = TRUE; + $node->macro->nodeClosed($node); + + $this->output = & $node->saved[0]; + $this->writeCode($node->openingCode, $this->output, $node->saved[1]); + $this->writeCode($node->closingCode, $node->content, $isRightmost, $isLeftmost); + $this->output .= $node->content; + + } else { // opening + $node = $this->expandMacro($name, $args, $modifiers, $htmlNode, $prefix); + if ($node->isEmpty) { + $this->writeCode($node->openingCode, $this->output, $isRightmost); + + } else { + $this->macroNodes[] = $node; + $node->saved = array(& $this->output, $isRightmost); + $this->output = & $node->content; + } + } + return $node; + } + + + + private function writeCode($code, & $output, $isRightmost, $isLeftmost = NULL) + { + if ($isRightmost) { + $leftOfs = strrpos("\n$output", "\n"); + $isLeftmost = $isLeftmost === NULL ? trim(substr($output, $leftOfs)) === '' : $isLeftmost; + if ($isLeftmost && substr($code, 0, 11) !== ' remove indentation + } elseif (substr($code, -2) === '?>') { + $code .= "\n"; // double newline to avoid newline eating by PHP + } + } + $output .= $code; + } + + + + /** + * Generates code for macro to the output. + * @param string + * @return void + */ + public function writeAttrsMacro($code, HtmlNode $htmlNode) + { + $attrs = $htmlNode->macroAttrs; + $left = $right = array(); + $attrCode = ''; + + foreach ($this->macros as $name => $foo) { + $attrName = MacroNode::PREFIX_INNER . "-$name"; + if (isset($attrs[$attrName])) { + if ($htmlNode->closing) { + $left[] = array("/$name", '', MacroNode::PREFIX_INNER); + } else { + array_unshift($right, array($name, $attrs[$attrName], MacroNode::PREFIX_INNER)); + } + unset($attrs[$attrName]); + } + } + + foreach (array_reverse($this->macros) as $name => $foo) { + $attrName = MacroNode::PREFIX_TAG . "-$name"; + if (isset($attrs[$attrName])) { + $left[] = array($name, $attrs[$attrName], MacroNode::PREFIX_TAG); + array_unshift($right, array("/$name", '', MacroNode::PREFIX_TAG)); + unset($attrs[$attrName]); + } + } + + foreach ($this->macros as $name => $foo) { + if (isset($attrs[$name])) { + if ($htmlNode->closing) { + $right[] = array("/$name", '', NULL); + } else { + array_unshift($left, array($name, $attrs[$name], NULL)); + } + unset($attrs[$name]); + } + } + + if ($attrs) { + throw new CompileException("Unknown macro-attribute " . Parser::N_PREFIX + . implode(' and ' . Parser::N_PREFIX, array_keys($attrs))); + } + + if (!$htmlNode->closing) { + $htmlNode->attrCode = & $this->attrCodes[$uniq = ' n:' . Nette\Utils\Strings::random()]; + $code = substr_replace($code, $uniq, strrpos($code, '/>') ?: strrpos($code, '>'), 0); + } + + foreach ($left as $item) { + $node = $this->writeMacro($item[0], $item[1], NULL, NULL, $htmlNode, $item[2]); + if ($node->closing || $node->isEmpty) { + $htmlNode->attrCode .= $node->attrCode; + if ($node->isEmpty) { + unset($htmlNode->macroAttrs[$node->name]); + } + } + } + + $this->output .= $code; + + foreach ($right as $item) { + $node = $this->writeMacro($item[0], $item[1], NULL, NULL, $htmlNode); + if ($node->closing) { + $htmlNode->attrCode .= $node->attrCode; + } + } + + if ($right && substr($this->output, -2) === '?>') { + $this->output .= "\n"; + } + } + + + + /** + * Expands macro and returns node & code. + * @param string + * @param string + * @param string + * @return MacroNode + */ + public function expandMacro($name, $args, $modifiers = NULL, HtmlNode $htmlNode = NULL, $prefix = NULL) + { + if (empty($this->macros[$name])) { + $cdata = $this->htmlNodes && in_array(strtolower(end($this->htmlNodes)->name), array('script', 'style')); + throw new CompileException("Unknown macro {{$name}}" . ($cdata ? " (in JavaScript or CSS, try to put a space after bracket.)" : '')); + } + foreach (array_reverse($this->macros[$name]) as $macro) { + $node = new MacroNode($macro, $name, $args, $modifiers, $this->macroNodes ? end($this->macroNodes) : NULL, $htmlNode, $prefix); + if ($macro->nodeOpened($node) !== FALSE) { + return $node; + } + } + throw new CompileException("Unhandled macro {{$name}}"); + } + +} diff --git a/apigen/libs/Nette/Nette/Latte/Engine.php b/apigen/libs/Nette/Nette/Latte/Engine.php new file mode 100644 index 00000000000..468c9cdfc27 --- /dev/null +++ b/apigen/libs/Nette/Nette/Latte/Engine.php @@ -0,0 +1,77 @@ +parser = new Parser; + $this->compiler = new Compiler; + $this->compiler->defaultContentType = Compiler::CONTENT_XHTML; + + Macros\CoreMacros::install($this->compiler); + $this->compiler->addMacro('cache', new Macros\CacheMacro($this->compiler)); + Macros\UIMacros::install($this->compiler); + Macros\FormMacros::install($this->compiler); + } + + + + /** + * Invokes filter. + * @param string + * @return string + */ + public function __invoke($s) + { + return $this->compiler->compile($this->parser->parse($s)); + } + + + + /** + * @return Parser + */ + public function getParser() + { + return $this->parser; + } + + + + /** + * @return Compiler + */ + public function getCompiler() + { + return $this->compiler; + } + +} diff --git a/apigen/libs/Nette/Nette/Latte/HtmlNode.php b/apigen/libs/Nette/Nette/Latte/HtmlNode.php new file mode 100644 index 00000000000..b4e5858e4a5 --- /dev/null +++ b/apigen/libs/Nette/Nette/Latte/HtmlNode.php @@ -0,0 +1,53 @@ +name = $name; + } + +} diff --git a/apigen/libs/Nette/Nette/Latte/IMacro.php b/apigen/libs/Nette/Nette/Latte/IMacro.php new file mode 100644 index 00000000000..55917b70a31 --- /dev/null +++ b/apigen/libs/Nette/Nette/Latte/IMacro.php @@ -0,0 +1,50 @@ +macro = $macro; + $this->name = (string) $name; + $this->modifiers = (string) $modifiers; + $this->parentNode = $parentNode; + $this->htmlNode = $htmlNode; + $this->prefix = $prefix; + $this->tokenizer = new MacroTokenizer($this->args); + $this->data = new \stdClass; + $this->setArgs($args); + } + + + + public function setArgs($args) + { + $this->args = (string) $args; + $this->tokenizer->tokenize($this->args); + } + +} diff --git a/apigen/libs/Nette/Nette/Latte/MacroTokenizer.php b/apigen/libs/Nette/Nette/Latte/MacroTokenizer.php new file mode 100644 index 00000000000..d1fb7bf88e9 --- /dev/null +++ b/apigen/libs/Nette/Nette/Latte/MacroTokenizer.php @@ -0,0 +1,69 @@ + '\s+', + self::T_COMMENT => '(?s)/\*.*?\*/', + self::T_STRING => Parser::RE_STRING, + self::T_KEYWORD => '(?:true|false|null|and|or|xor|clone|new|instanceof|return|continue|break|[A-Z_][A-Z0-9_]{2,})(?![\w\pL_])', // keyword or const + self::T_CAST => '\((?:expand|string|array|int|integer|float|bool|boolean|object)\)', // type casting + self::T_VARIABLE => '\$[\w\pL_]+', + self::T_NUMBER => '[+-]?[0-9]+(?:\.[0-9]+)?(?:e[0-9]+)?', + self::T_SYMBOL => '[\w\pL_]+(?:-[\w\pL_]+)*', + self::T_CHAR => '::|=>|[^"\']', // =>, any char except quotes + ), 'u'); + $this->ignored = array(self::T_COMMENT, self::T_WHITESPACE); + $this->tokenize($input); + } + + + + /** + * Reads single token (optionally delimited by comma) from string. + * @param string + * @return string + */ + public function fetchWord() + { + $word = $this->fetchUntil(self::T_WHITESPACE, ','); + $this->fetch(','); + $this->fetchAll(self::T_WHITESPACE, self::T_COMMENT); + return $word; + } + +} diff --git a/apigen/libs/Nette/Nette/Latte/Macros/CacheMacro.php b/apigen/libs/Nette/Nette/Latte/Macros/CacheMacro.php new file mode 100644 index 00000000000..9da7142be1d --- /dev/null +++ b/apigen/libs/Nette/Nette/Latte/Macros/CacheMacro.php @@ -0,0 +1,132 @@ +used = FALSE; + } + + + + /** + * Finishes template parsing. + * @return array(prolog, epilog) + */ + public function finalize() + { + if ($this->used) { + return array('Nette\Latte\Macros\CacheMacro::initRuntime($template, $_g);'); + } + } + + + + /** + * New node is found. + * @return bool + */ + public function nodeOpened(Latte\MacroNode $node) + { + $this->used = TRUE; + $node->isEmpty = FALSE; + $node->openingCode = Latte\PhpWriter::using($node) + ->write('caches, %node.array?)) { ?>', + Nette\Utils\Strings::random() + ); + } + + + + /** + * Node is closed. + * @return void + */ + public function nodeClosed(Latte\MacroNode $node) + { + $node->closingCode = 'tmp = array_pop($_g->caches); if (!$_l->tmp instanceof stdClass) $_l->tmp->end(); } ?>'; + } + + + + /********************* run-time helpers ****************d*g**/ + + + + /** + * @return void + */ + public static function initRuntime(Nette\Templating\FileTemplate $template, \stdClass $global) + { + if (!empty($global->caches)) { + end($global->caches)->dependencies[Nette\Caching\Cache::FILES][] = $template->getFile(); + } + } + + + + /** + * Starts the output cache. Returns Nette\Caching\OutputHelper object if buffering was started. + * @param Nette\Caching\IStorage + * @param string + * @param Nette\Caching\OutputHelper[] + * @param array + * @return Nette\Caching\OutputHelper + */ + public static function createCache(Nette\Caching\IStorage $cacheStorage, $key, & $parents, array $args = NULL) + { + if ($args) { + if (array_key_exists('if', $args) && !$args['if']) { + return $parents[] = (object) NULL; + } + $key = array_merge(array($key), array_intersect_key($args, range(0, count($args)))); + } + if ($parents) { + end($parents)->dependencies[Nette\Caching\Cache::ITEMS][] = $key; + } + + $cache = new Nette\Caching\Cache($cacheStorage, 'Nette.Templating.Cache'); + if ($helper = $cache->start($key)) { + if (isset($args['expire'])) { + $args['expiration'] = $args['expire']; // back compatibility + } + $helper->dependencies = array( + Nette\Caching\Cache::TAGS => isset($args['tags']) ? $args['tags'] : NULL, + Nette\Caching\Cache::EXPIRATION => isset($args['expiration']) ? $args['expiration'] : '+ 7 days', + ); + $parents[] = $helper; + } + return $helper; + } + +} diff --git a/apigen/libs/Nette/Nette/Latte/Macros/CoreMacros.php b/apigen/libs/Nette/Nette/Latte/Macros/CoreMacros.php new file mode 100644 index 00000000000..35ce3fc1639 --- /dev/null +++ b/apigen/libs/Nette/Nette/Latte/Macros/CoreMacros.php @@ -0,0 +1,415 @@ + value} set template parameter + * - {default var => value} set default template parameter + * - {dump $var} + * - {debugbreak} + * - {l} {r} to display { } + * + * @author David Grudl + */ +class CoreMacros extends MacroSet +{ + + + public static function install(Latte\Compiler $compiler) + { + $me = new static($compiler); + + $me->addMacro('if', array($me, 'macroIf'), array($me, 'macroEndIf')); + $me->addMacro('elseif', 'elseif (%node.args):'); + $me->addMacro('else', array($me, 'macroElse')); + $me->addMacro('ifset', 'if (isset(%node.args)):', 'endif'); + $me->addMacro('elseifset', 'elseif (isset(%node.args)):'); + + $me->addMacro('foreach', '', array($me, 'macroEndForeach')); + $me->addMacro('for', 'for (%node.args):', 'endfor'); + $me->addMacro('while', 'while (%node.args):', 'endwhile'); + $me->addMacro('continueIf', 'if (%node.args) continue'); + $me->addMacro('breakIf', 'if (%node.args) break'); + $me->addMacro('first', 'if ($iterator->isFirst(%node.args)):', 'endif'); + $me->addMacro('last', 'if ($iterator->isLast(%node.args)):', 'endif'); + $me->addMacro('sep', 'if (!$iterator->isLast(%node.args)):', 'endif'); + + $me->addMacro('var', array($me, 'macroVar')); + $me->addMacro('assign', array($me, 'macroVar')); // deprecated + $me->addMacro('default', array($me, 'macroVar')); + $me->addMacro('dump', array($me, 'macroDump')); + $me->addMacro('debugbreak', array($me, 'macroDebugbreak')); + $me->addMacro('l', '?>{addMacro('r', '?>}addMacro('_', array($me, 'macroTranslate'), array($me, 'macroTranslate')); + $me->addMacro('=', array($me, 'macroExpr')); + $me->addMacro('?', array($me, 'macroExpr')); + + $me->addMacro('capture', array($me, 'macroCapture'), array($me, 'macroCaptureEnd')); + $me->addMacro('include', array($me, 'macroInclude')); + $me->addMacro('use', array($me, 'macroUse')); + + $me->addMacro('class', NULL, NULL, array($me, 'macroClass')); + $me->addMacro('attr', array($me, 'macroOldAttr'), '', array($me, 'macroAttr')); + $me->addMacro('href', NULL); // TODO: placeholder + } + + + + /** + * Finishes template parsing. + * @return array(prolog, epilog) + */ + public function finalize() + { + return array('list($_l, $_g) = Nette\Latte\Macros\CoreMacros::initRuntime($template, ' + . var_export($this->getCompiler()->getTemplateId(), TRUE) . ')'); + } + + + + /********************* macros ****************d*g**/ + + + + /** + * {if ...} + */ + public function macroIf(MacroNode $node, PhpWriter $writer) + { + if ($node->data->capture = ($node->args === '')) { + return 'ob_start()'; + } + if ($node->prefix === $node::PREFIX_TAG) { + return $writer->write($node->htmlNode->closing ? 'if (array_pop($_l->ifs)):' : 'if ($_l->ifs[] = (%node.args)):'); + } + return $writer->write('if (%node.args):'); + } + + + + /** + * {/if ...} + */ + public function macroEndIf(MacroNode $node, PhpWriter $writer) + { + if ($node->data->capture) { + if ($node->args === '') { + throw new CompileException('Missing condition in {if} macro.'); + } + return $writer->write('if (%node.args) ' + . (isset($node->data->else) ? '{ ob_end_clean(); ob_end_flush(); }' : 'ob_end_flush();') + . ' else ' + . (isset($node->data->else) ? '{ $_else = ob_get_contents(); ob_end_clean(); ob_end_clean(); echo $_else; }' : 'ob_end_clean();') + ); + } + return 'endif'; + } + + + + /** + * {else} + */ + public function macroElse(MacroNode $node, PhpWriter $writer) + { + $ifNode = $node->parentNode; + if ($ifNode && $ifNode->name === 'if' && $ifNode->data->capture) { + if (isset($ifNode->data->else)) { + throw new CompileException("Macro {if} supports only one {else}."); + } + $ifNode->data->else = TRUE; + return 'ob_start()'; + } + return 'else:'; + } + + + + /** + * {_$var |modifiers} + */ + public function macroTranslate(MacroNode $node, PhpWriter $writer) + { + if ($node->closing) { + return $writer->write('echo %modify($template->translate(ob_get_clean()))'); + + } elseif ($node->isEmpty = ($node->args !== '')) { + return $writer->write('echo %modify($template->translate(%node.args))'); + + } else { + return 'ob_start()'; + } + } + + + + /** + * {include "file" [,] [params]} + */ + public function macroInclude(MacroNode $node, PhpWriter $writer) + { + $code = $writer->write('Nette\Latte\Macros\CoreMacros::includeTemplate(%node.word, %node.array? + $template->getParameters(), $_l->templates[%var])', + $this->getCompiler()->getTemplateId()); + + if ($node->modifiers) { + return $writer->write('echo %modify(%raw->__toString(TRUE))', $code); + } else { + return $code . '->render()'; + } + } + + + + /** + * {use class MacroSet} + */ + public function macroUse(MacroNode $node, PhpWriter $writer) + { + Nette\Callback::create($node->tokenizer->fetchWord(), 'install') + ->invoke($this->getCompiler()) + ->initialize(); + } + + + + /** + * {capture $variable} + */ + public function macroCapture(MacroNode $node, PhpWriter $writer) + { + $variable = $node->tokenizer->fetchWord(); + if (substr($variable, 0, 1) !== '$') { + throw new CompileException("Invalid capture block variable '$variable'"); + } + $node->data->variable = $variable; + return 'ob_start()'; + } + + + + /** + * {/capture} + */ + public function macroCaptureEnd(MacroNode $node, PhpWriter $writer) + { + return $node->data->variable . $writer->write(" = %modify(ob_get_clean())"); + } + + + + /** + * {foreach ...} + */ + public function macroEndForeach(MacroNode $node, PhpWriter $writer) + { + if (preg_match('#\W(\$iterator|include|require|get_defined_vars)\W#', $this->getCompiler()->expandTokens($node->content))) { + $node->openingCode = 'its[] = new Nette\Iterators\CachingIterator(' + . preg_replace('#(.*)\s+as\s+#i', '$1) as ', $writer->formatArgs(), 1) . '): ?>'; + $node->closingCode = 'its); $iterator = end($_l->its) ?>'; + } else { + $node->openingCode = 'formatArgs() . '): ?>'; + $node->closingCode = ''; + } + } + + + + /** + * n:class="..." + */ + public function macroClass(MacroNode $node, PhpWriter $writer) + { + return $writer->write('if ($_l->tmp = array_filter(%node.array)) echo \' class="\' . %escape(implode(" ", array_unique($_l->tmp))) . \'"\''); + } + + + + /** + * n:attr="..." + */ + public function macroAttr(MacroNode $node, PhpWriter $writer) + { + return $writer->write('echo Nette\Utils\Html::el(NULL, %node.array)->attributes()'); + } + + + + /** + * {attr ...} + * @deprecated + */ + public function macroOldAttr(MacroNode $node) + { + return Nette\Utils\Strings::replace($node->args . ' ', '#\)\s+#', ')->'); + } + + + + /** + * {dump ...} + */ + public function macroDump(MacroNode $node, PhpWriter $writer) + { + $args = $writer->formatArgs(); + return 'Nette\Diagnostics\Debugger::barDump(' . ($node->args ? "array(" . $writer->write('%var', $args) . " => $args)" : 'get_defined_vars()') + . ', "Template " . str_replace(dirname(dirname($template->getFile())), "\xE2\x80\xA6", $template->getFile()))'; + } + + + + /** + * {debugbreak ...} + */ + public function macroDebugbreak(MacroNode $node, PhpWriter $writer) + { + return $writer->write(($node->args == NULL ? '' : 'if (!(%node.args)); else') + . 'if (function_exists("debugbreak")) debugbreak(); elseif (function_exists("xdebug_break")) xdebug_break()'); + } + + + + /** + * {var ...} + * {default ...} + */ + public function macroVar(MacroNode $node, PhpWriter $writer) + { + $out = ''; + $var = TRUE; + $tokenizer = $writer->preprocess(); + while ($token = $tokenizer->fetchToken()) { + if ($var && ($token['type'] === Latte\MacroTokenizer::T_SYMBOL || $token['type'] === Latte\MacroTokenizer::T_VARIABLE)) { + if ($node->name === 'default') { + $out .= "'" . ltrim($token['value'], "$") . "'"; + } else { + $out .= '$' . ltrim($token['value'], "$"); + } + $var = NULL; + + } elseif (($token['value'] === '=' || $token['value'] === '=>') && $token['depth'] === 0) { + $out .= $node->name === 'default' ? '=>' : '='; + $var = FALSE; + + } elseif ($token['value'] === ',' && $token['depth'] === 0) { + $out .= $node->name === 'default' ? ',' : ';'; + $var = TRUE; + + } elseif ($var === NULL && $node->name === 'default' && $token['type'] !== Latte\MacroTokenizer::T_WHITESPACE) { + throw new CompileException("Unexpected '$token[value]' in {default $node->args}"); + + } else { + $out .= $writer->canQuote($tokenizer) ? "'$token[value]'" : $token['value']; + } + } + return $node->name === 'default' ? "extract(array($out), EXTR_SKIP)" : $out; + } + + + + /** + * {= ...} + * {? ...} + */ + public function macroExpr(MacroNode $node, PhpWriter $writer) + { + return $writer->write(($node->name === '?' ? '' : 'echo ') . '%modify(%node.args)'); + } + + + + /********************* run-time helpers ****************d*g**/ + + + + /** + * Includes subtemplate. + * @param mixed included file name or template + * @param array parameters + * @param Nette\Templating\ITemplate current template + * @return Nette\Templating\Template + */ + public static function includeTemplate($destination, array $params, Nette\Templating\ITemplate $template) + { + if ($destination instanceof Nette\Templating\ITemplate) { + $tpl = $destination; + + } elseif ($destination == NULL) { // intentionally == + throw new Nette\InvalidArgumentException("Template file name was not specified."); + + } elseif ($template instanceof Nette\Templating\IFileTemplate) { + if (substr($destination, 0, 1) !== '/' && substr($destination, 1, 1) !== ':') { + $destination = dirname($template->getFile()) . '/' . $destination; + } + $tpl = clone $template; + $tpl->setFile($destination); + + } else { + throw new Nette\NotSupportedException('Macro {include "filename"} is supported only with Nette\Templating\IFileTemplate.'); + } + + $tpl->setParameters($params); // interface? + return $tpl; + } + + + + /** + * Initializes local & global storage in template. + * @param + * @param string + * @return \stdClass + */ + public static function initRuntime(Nette\Templating\ITemplate $template, $templateId) + { + // local storage + if (isset($template->_l)) { + $local = $template->_l; + unset($template->_l); + } else { + $local = (object) NULL; + } + $local->templates[$templateId] = $template; + + // global storage + if (!isset($template->_g)) { + $template->_g = (object) NULL; + } + + return array($local, $template->_g); + } + +} diff --git a/apigen/libs/Nette/Nette/Latte/Macros/FormMacros.php b/apigen/libs/Nette/Nette/Latte/Macros/FormMacros.php new file mode 100644 index 00000000000..c2d26c4c2bf --- /dev/null +++ b/apigen/libs/Nette/Nette/Latte/Macros/FormMacros.php @@ -0,0 +1,137 @@ +addMacro('form', + 'Nette\Latte\Macros\FormMacros::renderFormBegin($form = $_form = (is_object(%node.word) ? %node.word : $_control[%node.word]), %node.array)', + 'Nette\Latte\Macros\FormMacros::renderFormEnd($_form)'); + $me->addMacro('label', array($me, 'macroLabel'), '?>addMacro('input', 'echo $_form[%node.word]->getControl()->addAttributes(%node.array)', NULL, array($me, 'macroAttrInput')); + $me->addMacro('formContainer', '$_formStack[] = $_form; $formContainer = $_form = $_form[%node.word]', '$_form = array_pop($_formStack)'); + } + + + + /********************* macros ****************d*g**/ + + + /** + * {label ...} and optionally {/label} + */ + public function macroLabel(MacroNode $node, PhpWriter $writer) + { + $cmd = 'if ($_label = $_form[%node.word]->getLabel()) echo $_label->addAttributes(%node.array)'; + if ($node->isEmpty = (substr($node->args, -1) === '/')) { + $node->setArgs(substr($node->args, 0, -1)); + return $writer->write($cmd); + } else { + return $writer->write($cmd . '->startTag()'); + } + } + + + + /** + * n:input + */ + public function macroAttrInput(MacroNode $node, PhpWriter $writer) + { + if ($node->htmlNode->attrs) { + $reset = array_fill_keys(array_keys($node->htmlNode->attrs), NULL); + return $writer->write('echo $_form[%node.word]->getControl()->addAttributes(%var)->attributes()', $reset); + } + return $writer->write('echo $_form[%node.word]->getControl()->attributes()'); + } + + + + /********************* run-time writers ****************d*g**/ + + + + /** + * Renders form begin. + * @return void + */ + public static function renderFormBegin(Form $form, array $attrs) + { + $el = $form->getElementPrototype(); + $el->action = (string) $el->action; + $el = clone $el; + if (strcasecmp($form->getMethod(), 'get') === 0) { + list($el->action) = explode('?', $el->action, 2); + } + echo $el->addAttributes($attrs)->startTag(); + } + + + + /** + * Renders form end. + * @return string + */ + public static function renderFormEnd(Form $form) + { + $s = ''; + if (strcasecmp($form->getMethod(), 'get') === 0) { + $url = explode('?', $form->getElementPrototype()->action, 2); + if (isset($url[1])) { + foreach (preg_split('#[;&]#', $url[1]) as $param) { + $parts = explode('=', $param, 2); + $name = urldecode($parts[0]); + if (!isset($form[$name])) { + $s .= Nette\Utils\Html::el('input', array('type' => 'hidden', 'name' => $name, 'value' => urldecode($parts[1]))); + } + } + } + } + + foreach ($form->getComponents(TRUE, 'Nette\Forms\Controls\HiddenField') as $control) { + if (!$control->getOption('rendered')) { + $s .= $control->getControl(); + } + } + + if (iterator_count($form->getComponents(TRUE, 'Nette\Forms\Controls\TextInput')) < 2) { + $s .= ''; + } + + echo ($s ? "
$s
\n" : '') . $form->getElementPrototype()->endTag() . "\n"; + } + +} diff --git a/apigen/libs/Nette/Nette/Latte/Macros/MacroSet.php b/apigen/libs/Nette/Nette/Latte/Macros/MacroSet.php new file mode 100644 index 00000000000..7b1d089f589 --- /dev/null +++ b/apigen/libs/Nette/Nette/Latte/Macros/MacroSet.php @@ -0,0 +1,143 @@ +compiler = $compiler; + } + + + + public function addMacro($name, $begin, $end = NULL, $attr = NULL) + { + $this->macros[$name] = array($begin, $end, $attr); + $this->compiler->addMacro($name, $this); + return $this; + } + + + + public static function install(Latte\Compiler $compiler) + { + return new static($compiler); + } + + + + /** + * Initializes before template parsing. + * @return void + */ + public function initialize() + { + } + + + + /** + * Finishes template parsing. + * @return array(prolog, epilog) + */ + public function finalize() + { + } + + + + /** + * New node is found. + * @return bool + */ + public function nodeOpened(MacroNode $node) + { + if ($this->macros[$node->name][2] && $node->htmlNode) { + $node->isEmpty = TRUE; + $this->compiler->setContext(Latte\Compiler::CONTEXT_DOUBLE_QUOTED); + $res = $this->compile($node, $this->macros[$node->name][2]); + $this->compiler->setContext(NULL); + if (!$node->attrCode) { + $node->attrCode = ""; + } + } else { + $node->isEmpty = !isset($this->macros[$node->name][1]); + $res = $this->compile($node, $this->macros[$node->name][0]); + if (!$node->openingCode) { + $node->openingCode = ""; + } + } + return $res !== FALSE; + } + + + + /** + * Node is closed. + * @return void + */ + public function nodeClosed(MacroNode $node) + { + $res = $this->compile($node, $this->macros[$node->name][1]); + if (!$node->closingCode) { + $node->closingCode = ""; + } + } + + + + /** + * Generates code. + * @return string + */ + private function compile(MacroNode $node, $def) + { + $node->tokenizer->reset(); + $writer = Latte\PhpWriter::using($node, $this->compiler); + if (is_string($def)/*5.2* && substr($def, 0, 1) !== "\0"*/) { + return $writer->write($def); + } else { + return Nette\Callback::create($def)->invoke($node, $writer); + } + } + + + + /** + * @return Latte\Compiler + */ + public function getCompiler() + { + return $this->compiler; + } + +} diff --git a/apigen/libs/Nette/Nette/Latte/Macros/UIMacros.php b/apigen/libs/Nette/Nette/Latte/Macros/UIMacros.php new file mode 100644 index 00000000000..b20ae4c5401 --- /dev/null +++ b/apigen/libs/Nette/Nette/Latte/Macros/UIMacros.php @@ -0,0 +1,520 @@ +addMacro('include', array($me, 'macroInclude')); + $me->addMacro('includeblock', array($me, 'macroIncludeBlock')); + $me->addMacro('extends', array($me, 'macroExtends')); + $me->addMacro('layout', array($me, 'macroExtends')); + $me->addMacro('block', array($me, 'macroBlock'), array($me, 'macroBlockEnd')); + $me->addMacro('define', array($me, 'macroBlock'), array($me, 'macroBlockEnd')); + $me->addMacro('snippet', array($me, 'macroBlock'), array($me, 'macroBlockEnd')); + $me->addMacro('ifset', array($me, 'macroIfset'), 'endif'); + + $me->addMacro('widget', array($me, 'macroControl')); // deprecated - use control + $me->addMacro('control', array($me, 'macroControl')); + + $me->addMacro('href', NULL, NULL, function(MacroNode $node, PhpWriter $writer) use ($me) { + return ' ?> href="macroLink($node, $writer) . ' ?>"addMacro('plink', array($me, 'macroLink')); + $me->addMacro('link', array($me, 'macroLink')); + $me->addMacro('ifCurrent', array($me, 'macroIfCurrent'), 'endif'); // deprecated; use n:class="$presenter->linkCurrent ? ..." + + $me->addMacro('contentType', array($me, 'macroContentType')); + $me->addMacro('status', array($me, 'macroStatus')); + } + + + + /** + * Initializes before template parsing. + * @return void + */ + public function initialize() + { + $this->namedBlocks = array(); + $this->extends = NULL; + } + + + + /** + * Finishes template parsing. + * @return array(prolog, epilog) + */ + public function finalize() + { + // try close last block + try { + $this->getCompiler()->writeMacro('/block'); + } catch (CompileException $e) { + } + + $epilog = $prolog = array(); + + if ($this->namedBlocks) { + foreach ($this->namedBlocks as $name => $code) { + $func = '_lb' . substr(md5($this->getCompiler()->getTemplateId() . $name), 0, 10) . '_' . preg_replace('#[^a-z0-9_]#i', '_', $name); + $snippet = $name[0] === '_'; + $prolog[] = "//\n// block $name\n//\n" + . "if (!function_exists(\$_l->blocks[" . var_export($name, TRUE) . "][] = '$func')) { " + . "function $func(\$_l, \$_args) { " + . (PHP_VERSION_ID > 50208 ? 'extract($_args)' : 'foreach ($_args as $__k => $__v) $$__k = $__v') // PHP bug #46873 + . ($snippet ? '; $_control->validateControl(' . var_export(substr($name, 1), TRUE) . ')' : '') + . "\n?>$codenamedBlocks || $this->extends) { + $prolog[] = "// template extending and snippets support"; + + $prolog[] = '$_l->extends = ' + . ($this->extends ? $this->extends : 'empty($template->_extended) && isset($_control) && $_control instanceof Nette\Application\UI\Presenter ? $_control->findLayoutTemplateFile() : NULL') + . '; $template->_extended = $_extended = TRUE;'; + + $prolog[] = ' +if ($_l->extends) { + ' . ($this->namedBlocks ? 'ob_start();' : 'return Nette\Latte\Macros\CoreMacros::includeTemplate($_l->extends, get_defined_vars(), $template)->render();') . ' + +} elseif (!empty($_control->snippetMode)) { + return Nette\Latte\Macros\UIMacros::renderSnippets($_control, $_l, get_defined_vars()); +}'; + } else { + $prolog[] = ' +// snippets support +if (!empty($_control->snippetMode)) { + return Nette\Latte\Macros\UIMacros::renderSnippets($_control, $_l, get_defined_vars()); +}'; + } + + return array(implode("\n\n", $prolog), implode("\n", $epilog)); + } + + + + /********************* macros ****************d*g**/ + + + + /** + * {include #block} + */ + public function macroInclude(MacroNode $node, PhpWriter $writer) + { + $destination = $node->tokenizer->fetchWord(); // destination [,] [params] + if (substr($destination, 0, 1) !== '#') { + return FALSE; + } + + $destination = ltrim($destination, '#'); + $parent = $destination === 'parent'; + if ($destination === 'parent' || $destination === 'this') { + for ($item = $node->parentNode; $item && $item->name !== 'block' && !isset($item->data->name); $item = $item->parentNode); + if (!$item) { + throw new CompileException("Cannot include $destination block outside of any block."); + } + $destination = $item->data->name; + } + + $name = Strings::contains($destination, '$') ? $destination : var_export($destination, TRUE); + if (isset($this->namedBlocks[$destination]) && !$parent) { + $cmd = "call_user_func(reset(\$_l->blocks[$name]), \$_l, %node.array? + get_defined_vars())"; + } else { + $cmd = 'Nette\Latte\Macros\UIMacros::callBlock' . ($parent ? 'Parent' : '') . "(\$_l, $name, %node.array? + " . ($parent ? 'get_defined_vars' : '$template->getParameters') . '())'; + } + + if ($node->modifiers) { + return $writer->write("ob_start(); $cmd; echo %modify(ob_get_clean())"); + } else { + return $writer->write($cmd); + } + } + + + + /** + * {includeblock "file"} + */ + public function macroIncludeBlock(MacroNode $node, PhpWriter $writer) + { + return $writer->write('Nette\Latte\Macros\CoreMacros::includeTemplate(%node.word, %node.array? + get_defined_vars(), $_l->templates[%var])->render()', + $this->getCompiler()->getTemplateId()); + } + + + + /** + * {extends auto | none | $var | "file"} + */ + public function macroExtends(MacroNode $node, PhpWriter $writer) + { + if (!$node->args) { + throw new CompileException("Missing destination in {extends}"); + } + if (!empty($node->parentNode)) { + throw new CompileException("{extends} must be placed outside any macro."); + } + if ($this->extends !== NULL) { + throw new CompileException("Multiple {extends} declarations are not allowed."); + } + if ($node->args === 'none') { + $this->extends = 'FALSE'; + } elseif ($node->args === 'auto') { + $this->extends = '$_presenter->findLayoutTemplateFile()'; + } else { + $this->extends = $writer->write('%node.word%node.args'); + } + return; + } + + + + /** + * {block [[#]name]} + * {snippet [name [,]] [tag]} + * {define [#]name} + */ + public function macroBlock(MacroNode $node, PhpWriter $writer) + { + $name = $node->tokenizer->fetchWord(); + + if ($node->name === 'block' && $name === FALSE) { // anonymous block + return $node->modifiers === '' ? '' : 'ob_start()'; + } + + $node->data->name = $name = ltrim($name, '#'); + if ($name == NULL) { + if ($node->name !== 'snippet') { + throw new CompileException("Missing block name."); + } + + } elseif (Strings::contains($name, '$')) { // dynamic block/snippet + if ($node->name === 'snippet') { + for ($parent = $node->parentNode; $parent && $parent->name !== 'snippet'; $parent = $parent->parentNode); + if (!$parent) { + throw new CompileException("Dynamic snippets are allowed only inside static snippet."); + } + $parent->data->dynamic = TRUE; + $node->data->leave = TRUE; + $node->closingCode = ""; + + if ($node->htmlNode) { + $node->attrCode = $writer->write("getSnippetId({$writer->formatWord($name)})) . '\"' ?>"); + return $writer->write('ob_start()'); + } + $tag = trim($node->tokenizer->fetchWord(), '<>'); + $tag = $tag ? $tag : 'div'; + $node->closingCode .= "\n"; + return $writer->write("?>\n<$tag id=\"getSnippetId({$writer->formatWord($name)}) ?>\">data->leave = TRUE; + $fname = $writer->formatWord($name); + $node->closingCode = "name === 'define' ? '' : "call_user_func(reset(\$_l->blocks[$fname]), \$_l, get_defined_vars())") . " ?>"; + $func = '_lb' . substr(md5($this->getCompiler()->getTemplateId() . $name), 0, 10) . '_' . preg_replace('#[^a-z0-9_]#i', '_', $name); + return "\n\n//\n// block $name\n//\n" + . "if (!function_exists(\$_l->blocks[$fname]['{$this->getCompiler()->getTemplateId()}'] = '$func')) { " + . "function $func(\$_l, \$_args) { " + . (PHP_VERSION_ID > 50208 ? 'extract($_args)' : 'foreach ($_args as $__k => $__v) $$__k = $__v'); // PHP bug #46873 + } + } + + // static block/snippet + if ($node->name === 'snippet') { + $node->data->name = $name = '_' . $name; + } + + if (isset($this->namedBlocks[$name])) { + throw new CompileException("Cannot redeclare static block '$name'"); + } + + $prolog = $this->namedBlocks ? '' : "if (\$_l->extends) { ob_end_clean(); return Nette\\Latte\\Macros\\CoreMacros::includeTemplate(\$_l->extends, get_defined_vars(), \$template)->render(); }\n"; + $top = empty($node->parentNode); + $this->namedBlocks[$name] = TRUE; + + $include = 'call_user_func(reset($_l->blocks[%var]), $_l, ' . ($node->name === 'snippet' ? '$template->getParameters()' : 'get_defined_vars()') . ')'; + if ($node->modifiers) { + $include = "ob_start(); $include; echo %modify(ob_get_clean())"; + } + + if ($node->name === 'snippet') { + if ($node->htmlNode) { + $node->attrCode = $writer->write('getSnippetId(%var) . \'"\' ?>', (string) substr($name, 1)); + return $writer->write($prolog . $include, $name); + } + $tag = trim($node->tokenizer->fetchWord(), '<>'); + $tag = $tag ? $tag : 'div'; + return $writer->write("$prolog ?>\n<$tag id=\"getSnippetId(%var) ?>\">\nname === 'define') { + return $prolog; + + } else { + return $writer->write($prolog . $include, $name); + } + } + + + + /** + * {/block} + * {/snippet} + * {/define} + */ + public function macroBlockEnd(MacroNode $node, PhpWriter $writer) + { + if (isset($node->data->name)) { // block, snippet, define + if ($node->name === 'snippet' && $node->htmlNode && !$node->prefix // n:snippet -> n:inner-snippet + && preg_match("#^.*? n:\w+>\n?#s", $node->content, $m1) && preg_match("#[ \t]*<[^<]+$#sD", $node->content, $m2)) + { + $node->openingCode = $m1[0] . $node->openingCode; + $node->content = substr($node->content, strlen($m1[0]), -strlen($m2[0])); + $node->closingCode .= $m2[0]; + } + + if (empty($node->data->leave)) { + if (!empty($node->data->dynamic)) { + $node->content .= ''; + } + $this->namedBlocks[$node->data->name] = $tmp = rtrim(ltrim($node->content, "\n"), " \t"); + $node->content = substr_replace($node->content, $node->openingCode . "\n", strspn($node->content, "\n"), strlen($tmp)); + $node->openingCode = ""; + } + + } elseif ($node->modifiers) { // anonymous block with modifier + return $writer->write('echo %modify(ob_get_clean())'); + } + } + + + + /** + * {ifset #block} + */ + public function macroIfset(MacroNode $node, PhpWriter $writer) + { + if (!Strings::contains($node->args, '#')) { + return FALSE; + } + $list = array(); + while (($name = $node->tokenizer->fetchWord()) !== FALSE) { + $list[] = $name[0] === '#' ? '$_l->blocks["' . substr($name, 1) . '"]' : $name; + } + return 'if (isset(' . implode(', ', $list) . ')):'; + } + + + + /** + * {control name[:method] [params]} + */ + public function macroControl(MacroNode $node, PhpWriter $writer) + { + $pair = $node->tokenizer->fetchWord(); + if ($pair === FALSE) { + throw new CompileException("Missing control name in {control}"); + } + $pair = explode(':', $pair, 2); + $name = $writer->formatWord($pair[0]); + $method = isset($pair[1]) ? ucfirst($pair[1]) : ''; + $method = Strings::match($method, '#^\w*$#') ? "render$method" : "{\"render$method\"}"; + $param = $writer->formatArray(); + if (!Strings::contains($node->args, '=>')) { + $param = substr($param, 6, -1); // removes array() + } + return ($name[0] === '$' ? "if (is_object($name)) \$_ctrl = $name; else " : '') + . '$_ctrl = $_control->getComponent(' . $name . '); ' + . 'if ($_ctrl instanceof Nette\Application\UI\IRenderable) $_ctrl->validateControl(); ' + . "\$_ctrl->$method($param)"; + } + + + + /** + * {link destination [,] [params]} + * {plink destination [,] [params]} + * n:href="destination [,] [params]" + */ + public function macroLink(MacroNode $node, PhpWriter $writer) + { + return $writer->write('echo %escape(%modify(' . ($node->name === 'plink' ? '$_presenter' : '$_control') . '->link(%node.word, %node.array?)))'); + } + + + + /** + * {ifCurrent destination [,] [params]} + */ + public function macroIfCurrent(MacroNode $node, PhpWriter $writer) + { + return $writer->write(($node->args ? 'try { $_presenter->link(%node.word, %node.array?); } catch (Nette\Application\UI\InvalidLinkException $e) {}' : '') + . '; if ($_presenter->getLastCreatedRequestFlag("current")):'); + } + + + + /** + * {contentType ...} + */ + public function macroContentType(MacroNode $node, PhpWriter $writer) + { + if (Strings::contains($node->args, 'xhtml')) { + $this->getCompiler()->setContentType(Latte\Compiler::CONTENT_XHTML); + + } elseif (Strings::contains($node->args, 'html')) { + $this->getCompiler()->setContentType(Latte\Compiler::CONTENT_HTML); + + } elseif (Strings::contains($node->args, 'xml')) { + $this->getCompiler()->setContentType(Latte\Compiler::CONTENT_XML); + + } elseif (Strings::contains($node->args, 'javascript')) { + $this->getCompiler()->setContentType(Latte\Compiler::CONTENT_JS); + + } elseif (Strings::contains($node->args, 'css')) { + $this->getCompiler()->setContentType(Latte\Compiler::CONTENT_CSS); + + } elseif (Strings::contains($node->args, 'calendar')) { + $this->getCompiler()->setContentType(Latte\Compiler::CONTENT_ICAL); + + } else { + $this->getCompiler()->setContentType(Latte\Compiler::CONTENT_TEXT); + } + + // temporary solution + if (Strings::contains($node->args, '/')) { + return $writer->write('$netteHttpResponse->setHeader("Content-Type", %var)', $node->args); + } + } + + + + /** + * {status ...} + */ + public function macroStatus(MacroNode $node, PhpWriter $writer) + { + return $writer->write((substr($node->args, -1) === '?' ? 'if (!$netteHttpResponse->isSent()) ' : '') . + '$netteHttpResponse->setCode(%var)', (int) $node->args + ); + } + + + + /********************* run-time writers ****************d*g**/ + + + + /** + * Calls block. + * @return void + */ + public static function callBlock(\stdClass $context, $name, array $params) + { + if (empty($context->blocks[$name])) { + throw new Nette\InvalidStateException("Cannot include undefined block '$name'."); + } + $block = reset($context->blocks[$name]); + $block($context, $params); + } + + + + /** + * Calls parent block. + * @return void + */ + public static function callBlockParent(\stdClass $context, $name, array $params) + { + if (empty($context->blocks[$name]) || ($block = next($context->blocks[$name])) === FALSE) { + throw new Nette\InvalidStateException("Cannot include undefined parent block '$name'."); + } + $block($context, $params); + } + + + + public static function renderSnippets(Nette\Application\UI\Control $control, \stdClass $local, array $params) + { + $control->snippetMode = FALSE; + $payload = $control->getPresenter()->getPayload(); + if (isset($local->blocks)) { + foreach ($local->blocks as $name => $function) { + if ($name[0] !== '_' || !$control->isControlInvalid(substr($name, 1))) { + continue; + } + ob_start(); + $function = reset($function); + $snippets = $function($local, $params); + $payload->snippets[$id = $control->getSnippetId(substr($name, 1))] = ob_get_clean(); + if ($snippets) { + $payload->snippets += $snippets; + unset($payload->snippets[$id]); + } + } + } + $control->snippetMode = TRUE; + if ($control instanceof Nette\Application\UI\IRenderable) { + $queue = array($control); + do { + foreach (array_shift($queue)->getComponents() as $child) { + if ($child instanceof Nette\Application\UI\IRenderable) { + if ($child->isControlInvalid()) { + $child->snippetMode = TRUE; + $child->render(); + $child->snippetMode = FALSE; + } + } elseif ($child instanceof Nette\ComponentModel\IContainer) { + $queue[] = $child; + } + } + } while ($queue); + } + } + +} diff --git a/apigen/libs/Nette/Nette/Latte/Parser.php b/apigen/libs/Nette/Nette/Latte/Parser.php new file mode 100644 index 00000000000..df2f8b5824a --- /dev/null +++ b/apigen/libs/Nette/Nette/Latte/Parser.php @@ -0,0 +1,405 @@ + array('\\{(?![\\s\'"{}])', '\\}'), // {...} + 'double' => array('\\{\\{(?![\\s\'"{}])', '\\}\\}'), // {{...}} + 'asp' => array('<%\s*', '\s*%>'), /* <%...%> */ + 'python' => array('\\{[{%]\s*', '\s*[%}]\\}'), // {% ... %} | {{ ... }} + 'off' => array('[^\x00-\xFF]', ''), + ); + + /** @var string */ + private $macroRe; + + /** @var string source template */ + private $input; + + /** @var Token[] */ + private $output; + + /** @var int position on source template */ + private $offset; + + /** @var array */ + private $context; + + /** @var string */ + private $lastHtmlTag; + + /** @var string used by filter() */ + private $syntaxEndTag; + + /** @var bool */ + private $xmlMode; + + /** @internal states */ + const CONTEXT_TEXT = 'text', + CONTEXT_CDATA = 'cdata', + CONTEXT_TAG = 'tag', + CONTEXT_ATTRIBUTE = 'attribute', + CONTEXT_NONE = 'none', + CONTEXT_COMMENT = 'comment'; + + + + /** + * Process all {macros} and . + * @param string + * @return array + */ + public function parse($input) + { + if (substr($input, 0, 3) === "\xEF\xBB\xBF") { // BOM + $input = substr($input, 3); + } + if (!Strings::checkEncoding($input)) { + throw new Nette\InvalidArgumentException('Template is not valid UTF-8 stream.'); + } + $input = str_replace("\r\n", "\n", $input); + $this->input = $input; + $this->output = array(); + $this->offset = 0; + + $this->setSyntax($this->defaultSyntax); + $this->setContext(self::CONTEXT_TEXT); + $this->lastHtmlTag = $this->syntaxEndTag = NULL; + + while ($this->offset < strlen($input)) { + $matches = $this->{"context".$this->context[0]}(); + + if (!$matches) { // EOF + break; + + } elseif (!empty($matches['comment'])) { // {* *} + $this->addToken(Token::COMMENT, $matches[0]); + + } elseif (!empty($matches['macro'])) { // {macro} + $token = $this->addToken(Token::MACRO_TAG, $matches[0]); + list($token->name, $token->value, $token->modifiers) = $this->parseMacroTag($matches['macro']); + } + + $this->filter(); + } + + if ($this->offset < strlen($input)) { + $this->addToken(Token::TEXT, substr($this->input, $this->offset)); + } + return $this->output; + } + + + + /** + * Handles CONTEXT_TEXT. + */ + private function contextText() + { + $matches = $this->match('~ + (?:(?<=\n|^)[ \t]*)?<(?P/?)(?P[a-z0-9:]+)| ## begin of HTML tag !--)| ## begin of HTML comment $levels['#'] + $top = 0 + 1 = 1 -->

...

+ '*' => 1, + '=' => 2, + '-' => 3, + ); + + /** @var array used ID's */ + private $usedID; + + + + public function __construct($texy) + { + $this->texy = $texy; + + $texy->addHandler('heading', array($this, 'solve')); + $texy->addHandler('beforeParse', array($this, 'beforeParse')); + $texy->addHandler('afterParse', array($this, 'afterParse')); + + $texy->registerBlockPattern( + array($this, 'patternUnderline'), + '#^(\S.*)'.TEXY_MODIFIER_H.'?\n' + . '(\#{3,}|\*{3,}|={3,}|-{3,})$#mU', + 'heading/underlined' + ); + + $texy->registerBlockPattern( + array($this, 'patternSurround'), + '#^(\#{2,}+|={2,}+)(.+)'.TEXY_MODIFIER_H.'?()$#mU', + 'heading/surrounded' + ); + } + + + + public function beforeParse() + { + $this->title = NULL; + $this->usedID = array(); + $this->TOC = array(); + } + + + + /** + * @param Texy + * @param TexyHtml + * @param bool + * @return void + */ + public function afterParse($texy, $DOM, $isSingleLine) + { + if ($isSingleLine) return; + + if ($this->balancing === self::DYNAMIC) { + $top = $this->top; + $map = array(); + $min = 100; + foreach ($this->TOC as $item) + { + $level = $item['level']; + if ($item['type'] === 'surrounded') { + $min = min($level, $min); + $top = $this->top - $min; + + } elseif ($item['type'] === 'underlined') { + $map[$level] = $level; + } + } + + asort($map); + $map = array_flip(array_values($map)); + } + + foreach ($this->TOC as $key => $item) + { + if ($this->balancing === self::DYNAMIC) { + if ($item['type'] === 'surrounded') { + $level = $item['level'] + $top; + + } elseif ($item['type'] === 'underlined') { + $level = $map[$item['level']] + $this->top; + + } else { + $level = $item['level']; + } + + $item['el']->setName('h' . min(6, max(1, $level))); + $this->TOC[$key]['level'] = $level; + } + + if ($this->generateID && empty($item['el']->attrs['id'])) { + $title = trim($item['el']->toText($this->texy)); + if ($title !== '') { + $this->TOC[$key]['title'] = $title; + $id = $this->idPrefix . Texy::webalize($title); + $counter = ''; + if (isset($this->usedID[$id . $counter])) { + $counter = 2; + while (isset($this->usedID[$id . '-' . $counter])) $counter++; + $id .= '-' . $counter; + } + $this->usedID[$id] = TRUE; + $item['el']->attrs['id'] = $id; + } + } + } + + // document title + if ($this->title === NULL && count($this->TOC)) { + $item = reset($this->TOC); + $this->title = isset($item['title']) ? $item['title'] : trim($item['el']->toText($this->texy)); + } + } + + + + /** + * Callback for underlined heading. + * + * Heading .(title)[class]{style}> + * ------------------------------- + * + * @param TexyBlockParser + * @param array regexp matches + * @param string pattern name + * @return TexyHtml|string|FALSE + */ + public function patternUnderline($parser, $matches) + { + list(, $mContent, $mMod, $mLine) = $matches; + // $matches: + // [1] => ... + // [2] => .(title)[class]{style}<> + // [3] => ... + + $mod = new TexyModifier($mMod); + $level = $this->levels[$mLine[0]]; + return $this->texy->invokeAroundHandlers('heading', $parser, array($level, $mContent, $mod, FALSE)); + } + + + + /** + * Callback for surrounded heading. + * + * ### Heading .(title)[class]{style}> + * + * @param TexyBlockParser + * @param array regexp matches + * @param string pattern name + * @return TexyHtml|string|FALSE + */ + public function patternSurround($parser, $matches) + { + list(, $mLine, $mContent, $mMod) = $matches; + // [1] => ### + // [2] => ... + // [3] => .(title)[class]{style}<> + + $mod = new TexyModifier($mMod); + $level = min(7, max(2, strlen($mLine))); + $level = $this->moreMeansHigher ? 7 - $level : $level - 2; + $mContent = rtrim($mContent, $mLine[0] . ' '); + return $this->texy->invokeAroundHandlers('heading', $parser, array($level, $mContent, $mod, TRUE)); + } + + + + /** + * Finish invocation. + * + * @param TexyHandlerInvocation handler invocation + * @param int 0..5 + * @param string + * @param TexyModifier + * @param bool + * @return TexyHtml + */ + public function solve($invocation, $level, $content, $mod, $isSurrounded) + { + // as fixed balancing, for block/texysource & correct decorating + $el = TexyHtml::el('h' . min(6, max(1, $level + $this->top))); + $mod->decorate($this->texy, $el); + + $el->parseLine($this->texy, trim($content)); + + $this->TOC[] = array( + 'el' => $el, + 'level' => $level, + 'type' => $isSurrounded ? 'surrounded' : 'underlined', + ); + + return $el; + } + +} diff --git a/apigen/libs/Texy/texy/modules/TexyHorizLineModule.php b/apigen/libs/Texy/texy/modules/TexyHorizLineModule.php new file mode 100644 index 00000000000..f39522221e2 --- /dev/null +++ b/apigen/libs/Texy/texy/modules/TexyHorizLineModule.php @@ -0,0 +1,86 @@ + NULL, + '*' => NULL, + ); + + + + public function __construct($texy) + { + $this->texy = $texy; + + $texy->addHandler('horizline', array($this, 'solve')); + + $texy->registerBlockPattern( + array($this, 'pattern'), + '#^(\*{3,}|-{3,})\ *'.TEXY_MODIFIER.'?()$#mU', + 'horizline' + ); + } + + + + /** + * Callback for: -------. + * + * @param TexyBlockParser + * @param array regexp matches + * @param string pattern name + * @return TexyHtml + */ + public function pattern($parser, $matches) + { + list(, $mType, $mMod) = $matches; + // [1] => --- + // [2] => .(title)[class]{style}<> + + $mod = new TexyModifier($mMod); + return $this->texy->invokeAroundHandlers('horizline', $parser, array($mType, $mod)); + } + + + + /** + * Finish invocation. + * + * @param TexyHandlerInvocation handler invocation + * @param string + * @param TexyModifier + * @return TexyHtml + */ + public function solve($invocation, $type, $modifier) + { + $el = TexyHtml::el('hr'); + $modifier->decorate($invocation->texy, $el); + + $class = $this->classes[ $type[0] ]; + if ($class && !isset($modifier->classes[$class])) { + $el->attrs['class'][] = $class; + } + + return $el; + } + +} diff --git a/apigen/libs/Texy/texy/modules/TexyHtmlModule.php b/apigen/libs/Texy/texy/modules/TexyHtmlModule.php new file mode 100644 index 00000000000..052cb8269dd --- /dev/null +++ b/apigen/libs/Texy/texy/modules/TexyHtmlModule.php @@ -0,0 +1,281 @@ +texy = $texy; + + $texy->addHandler('htmlComment', array($this, 'solveComment')); + $texy->addHandler('htmlTag', array($this, 'solveTag')); + + $texy->registerLinePattern( + array($this, 'patternTag'), + '#<(/?)([a-z][a-z0-9_:-]*)((?:\s+[a-z0-9:-]+|=\s*"[^"'.TEXY_MARK.']*"|=\s*\'[^\''.TEXY_MARK.']*\'|=[^\s>'.TEXY_MARK.']+)*)\s*(/?)>#isu', + 'html/tag' + ); + + $texy->registerLinePattern( + array($this, 'patternComment'), + '##is', + 'html/comment' + ); + } + + + + /** + * Callback for: . + * + * @param TexyLineParser + * @param array regexp matches + * @param string pattern name + * @return TexyHtml|string|FALSE + */ + public function patternComment($parser, $matches) + { + list(, $mComment) = $matches; + return $this->texy->invokeAroundHandlers('htmlComment', $parser, array($mComment)); + } + + + + /** + * Callback for: . + * + * @param TexyLineParser + * @param array regexp matches + * @param string pattern name + * @return TexyHtml|string|FALSE + */ + public function patternTag($parser, $matches) + { + list(, $mEnd, $mTag, $mAttr, $mEmpty) = $matches; + // [1] => / + // [2] => tag + // [3] => attributes + // [4] => / + + $tx = $this->texy; + + $isStart = $mEnd !== '/'; + $isEmpty = $mEmpty === '/'; + if (!$isEmpty && substr($mAttr, -1) === '/') { // uvizlo v $mAttr? + $mAttr = substr($mAttr, 0, -1); + $isEmpty = TRUE; + } + + // error - can't close empty element + if ($isEmpty && !$isStart) + return FALSE; + + + // error - end element with atttrs + $mAttr = trim(strtr($mAttr, "\n", ' ')); + if ($mAttr && !$isStart) + return FALSE; + + + $el = TexyHtml::el($mTag); + + if ($isStart) { + // parse attributes + $matches2 = NULL; + preg_match_all( + '#([a-z0-9:-]+)\s*(?:=\s*(\'[^\']*\'|"[^"]*"|[^\'"\s]+))?()#isu', + $mAttr, + $matches2, + PREG_SET_ORDER + ); + + foreach ($matches2 as $m) { + $key = strtolower($m[1]); + $value = $m[2]; + if ($value == NULL) $el->attrs[$key] = TRUE; + elseif ($value{0} === '\'' || $value{0} === '"') $el->attrs[$key] = Texy::unescapeHtml(substr($value, 1, -1)); + else $el->attrs[$key] = Texy::unescapeHtml($value); + } + } + + $res = $tx->invokeAroundHandlers('htmlTag', $parser, array($el, $isStart, $isEmpty)); + + if ($res instanceof TexyHtml) { + return $tx->protect($isStart ? $res->startTag() : $res->endTag(), $res->getContentType()); + } + + return $res; + } + + + + /** + * Finish invocation. + * + * @param TexyHandlerInvocation handler invocation + * @param TexyHtml element + * @param bool is start tag? + * @param bool is empty? + * @return TexyHtml|string|FALSE + */ + public function solveTag($invocation, TexyHtml $el, $isStart, $forceEmpty = NULL) + { + $tx = $this->texy; + + // tag & attibutes + $allowedTags = $tx->allowedTags; // speed-up + if (!$allowedTags) + return FALSE; // all tags are disabled + + // convert case + $name = $el->getName(); + $lower = strtolower($name); + if (isset($tx->dtd[$lower]) || $name === strtoupper($name)) { + // complete UPPER convert to lower + $name = $lower; + $el->setName($name); + } + + if (is_array($allowedTags)) { + if (!isset($allowedTags[$name])) return FALSE; + $allowedAttrs = $allowedTags[$name]; // allowed attrs + + } else { + // allowedTags === Texy::ALL + if ($forceEmpty) $el->setName($name, TRUE); + $allowedAttrs = Texy::ALL; // all attrs are allowed + } + + // end tag? we are finished + if (!$isStart) { + return $el; + } + + $elAttrs = & $el->attrs; + + // process attributes + if (!$allowedAttrs) { + $elAttrs = array(); + + } elseif (is_array($allowedAttrs)) { + + // skip disabled + $allowedAttrs = array_flip($allowedAttrs); + foreach ($elAttrs as $key => $foo) + if (!isset($allowedAttrs[$key])) unset($elAttrs[$key]); + } + + // apply allowedClasses + $tmp = $tx->_classes; // speed-up + if (isset($elAttrs['class'])) { + if (is_array($tmp)) { + $elAttrs['class'] = explode(' ', $elAttrs['class']); + foreach ($elAttrs['class'] as $key => $value) + if (!isset($tmp[$value])) unset($elAttrs['class'][$key]); // id & class are case-sensitive + + } elseif ($tmp !== Texy::ALL) { + $elAttrs['class'] = NULL; + } + } + + // apply allowedClasses for ID + if (isset($elAttrs['id'])) { + if (is_array($tmp)) { + if (!isset($tmp['#' . $elAttrs['id']])) $elAttrs['id'] = NULL; + } elseif ($tmp !== Texy::ALL) { + $elAttrs['id'] = NULL; + } + } + + // apply allowedStyles + if (isset($elAttrs['style'])) { + $tmp = $tx->_styles; // speed-up + if (is_array($tmp)) { + $styles = explode(';', $elAttrs['style']); + $elAttrs['style'] = NULL; + foreach ($styles as $value) { + $pair = explode(':', $value, 2); + $prop = trim($pair[0]); + if (isset($pair[1]) && isset($tmp[strtolower($prop)])) // CSS is case-insensitive + $elAttrs['style'][$prop] = $pair[1]; + } + } elseif ($tmp !== Texy::ALL) { + $elAttrs['style'] = NULL; + } + } + + if ($name === 'img') { + if (!isset($elAttrs['src'])) return FALSE; + + if (!$tx->checkURL($elAttrs['src'], Texy::FILTER_IMAGE)) return FALSE; + + $tx->summary['images'][] = $elAttrs['src']; + + } elseif ($name === 'a') { + if (!isset($elAttrs['href']) && !isset($elAttrs['name']) && !isset($elAttrs['id'])) return FALSE; + if (isset($elAttrs['href'])) { + if ($tx->linkModule->forceNoFollow && strpos($elAttrs['href'], '//') !== FALSE) { + if (isset($elAttrs['rel'])) $elAttrs['rel'] = (array) $elAttrs['rel']; + $elAttrs['rel'][] = 'nofollow'; + } + + if (!$tx->checkURL($elAttrs['href'], Texy::FILTER_ANCHOR)) return FALSE; + + $tx->summary['links'][] = $elAttrs['href']; + } + + } elseif (preg_match('#^h[1-6]#i', $name)) { + $tx->headingModule->TOC[] = array( + 'el' => $el, + 'level' => (int) substr($name, 1), + 'type' => 'html', + ); + } + + $el->validateAttrs($tx->dtd); + + return $el; + } + + + + /** + * Finish invocation. + * + * @param TexyHandlerInvocation handler invocation + * @param string + * @return string + */ + public function solveComment($invocation, $content) + { + if (!$this->passComment) return ''; + + // sanitize comment + $content = preg_replace('#-{2,}#', '-', $content); + $content = trim($content, '-'); + + return $this->texy->protect('', Texy::CONTENT_MARKUP); + } + +} diff --git a/apigen/libs/Texy/texy/modules/TexyHtmlOutputModule.php b/apigen/libs/Texy/texy/modules/TexyHtmlOutputModule.php new file mode 100644 index 00000000000..92ff55b77fd --- /dev/null +++ b/apigen/libs/Texy/texy/modules/TexyHtmlOutputModule.php @@ -0,0 +1,311 @@ +texy = $texy; + $texy->addHandler('postProcess', array($this, 'postProcess')); + } + + + + /** + * Converts ... ... . + * into ... ... + */ + public function postProcess($texy, & $s) + { + $this->space = $this->baseIndent; + $this->tagStack = array(); + $this->tagUsed = array(); + $this->xml = $texy->getOutputMode() & Texy::XML; + + // special "base content" + $this->baseDTD = $texy->dtd['div'][1] + $texy->dtd['html'][1] /*+ $texy->dtd['head'][1]*/ + $texy->dtd['body'][1] + array('html'=>1); + + // wellform and reformat + $s = preg_replace_callback( + '#(.*)<(?:(!--.*--)|(/?)([a-z][a-z0-9._:-]*)(|[ \n].*)\s*(/?))>()#Uis', + array($this, 'cb'), + $s . '' + ); + + // empty out stack + foreach ($this->tagStack as $item) $s .= $item['close']; + + // right trim + $s = preg_replace("#[\t ]+(\n|\r|$)#", '$1', $s); // right trim + + // join double \r to single \n + $s = str_replace("\r\r", "\n", $s); + $s = strtr($s, "\r", "\n"); + + // greedy chars + $s = preg_replace("#\\x07 *#", '', $s); + // back-tabs + $s = preg_replace("#\\t? *\\x08#", '', $s); + + // line wrap + if ($this->lineWrap > 0) { + $s = preg_replace_callback( + '#^(\t*)(.*)$#m', + array($this, 'wrap'), + $s + ); + } + + // remove HTML 4.01 optional end tags + if (!$this->xml && $this->removeOptional) { + $s = preg_replace('#\\s*#u', '', $s); + } + } + + + + /** + * Callback function: | | .... + * @return string + */ + private function cb($matches) + { + // html tag + list(, $mText, $mComment, $mEnd, $mTag, $mAttr, $mEmpty) = $matches; + // [1] => text + // [1] => !-- comment -- + // [2] => / + // [3] => TAG + // [4] => ... (attributes) + // [5] => / (empty) + + $s = ''; + + // phase #1 - stuff between tags + if ($mText !== '') { + $item = reset($this->tagStack); + // text not allowed? + if ($item && !isset($item['dtdContent']['%DATA'])) { } + + // inside pre & textarea preserve spaces + elseif (!empty($this->tagUsed['pre']) || !empty($this->tagUsed['textarea']) || !empty($this->tagUsed['script'])) + $s = Texy::freezeSpaces($mText); + + // otherwise shrink multiple spaces + else $s = preg_replace('#[ \n]+#', ' ', $mText); + } + + + // phase #2 - HTML comment + if ($mComment) return $s . '<' . Texy::freezeSpaces($mComment) . '>'; + + + // phase #3 - HTML tag + $mEmpty = $mEmpty || isset(TexyHtml::$emptyElements[$mTag]); + if ($mEmpty && $mEnd) return $s; // bad tag; /end/ + + + if ($mEnd) { // end tag + + // has start tag? + if (empty($this->tagUsed[$mTag])) return $s; + + // autoclose tags + $tmp = array(); + $back = TRUE; + foreach ($this->tagStack as $i => $item) + { + $tag = $item['tag']; + $s .= $item['close']; + $this->space -= $item['indent']; + $this->tagUsed[$tag]--; + $back = $back && isset(TexyHtml::$inlineElements[$tag]); + unset($this->tagStack[$i]); + if ($tag === $mTag) break; + array_unshift($tmp, $item); + } + + if (!$back || !$tmp) return $s; + + // allowed-check (nejspis neni ani potreba) + $item = reset($this->tagStack); + if ($item) $dtdContent = $item['dtdContent']; + else $dtdContent = $this->baseDTD; + if (!isset($dtdContent[$tmp[0]['tag']])) return $s; + + // autoopen tags + foreach ($tmp as $item) + { + $s .= $item['open']; + $this->space += $item['indent']; + $this->tagUsed[$item['tag']]++; + array_unshift($this->tagStack, $item); + } + + + } else { // start tag + + $dtdContent = $this->baseDTD; + + if (!isset($this->texy->dtd[$mTag])) { + // unknown (non-html) tag + $allowed = TRUE; + $item = reset($this->tagStack); + if ($item) $dtdContent = $item['dtdContent']; + + + } else { + // optional end tag closing + foreach ($this->tagStack as $i => $item) + { + // is tag allowed here? + $dtdContent = $item['dtdContent']; + if (isset($dtdContent[$mTag])) break; + + $tag = $item['tag']; + + // auto-close hidden, optional and inline tags + if ($item['close'] && (!isset(TexyHtml::$optionalEnds[$tag]) && !isset(TexyHtml::$inlineElements[$tag]))) break; + + // close it + $s .= $item['close']; + $this->space -= $item['indent']; + $this->tagUsed[$tag]--; + unset($this->tagStack[$i]); + $dtdContent = $this->baseDTD; + } + + // is tag allowed in this content? + $allowed = isset($dtdContent[$mTag]); + + // check deep element prohibitions + if ($allowed && isset(TexyHtml::$prohibits[$mTag])) { + foreach (TexyHtml::$prohibits[$mTag] as $pTag) + if (!empty($this->tagUsed[$pTag])) { $allowed = FALSE; break; } + } + } + + // empty elements se neukladaji do zasobniku + if ($mEmpty) { + if (!$allowed) return $s; + + if ($this->xml) $mAttr .= " /"; + + $indent = $this->indent && empty($this->tagUsed['pre']) && empty($this->tagUsed['textarea']); + + if ($indent && $mTag === 'br') + // formatting exception + return rtrim($s) . '<' . $mTag . $mAttr . ">\n" . str_repeat("\t", max(0, $this->space - 1)) . "\x07"; + + if ($indent && !isset(TexyHtml::$inlineElements[$mTag])) { + $space = "\r" . str_repeat("\t", $this->space); + return $s . $space . '<' . $mTag . $mAttr . '>' . $space; + } + + return $s . '<' . $mTag . $mAttr . '>'; + } + + $open = NULL; + $close = NULL; + $indent = 0; + + /* + if (!isset(TexyHtml::$inlineElements[$mTag])) { + // block tags always decorate with \n + $s .= "\n"; + $close = "\n"; + } + */ + + if ($allowed) { + $open = '<' . $mTag . $mAttr . '>'; + + // receive new content (ins & del are special cases) + if (!empty($this->texy->dtd[$mTag][1])) $dtdContent = $this->texy->dtd[$mTag][1]; + + // format output + if ($this->indent && !isset(TexyHtml::$inlineElements[$mTag])) { + $close = "\x08" . '' . "\n" . str_repeat("\t", $this->space); + $s .= "\n" . str_repeat("\t", $this->space++) . $open . "\x07"; + $indent = 1; + } else { + $close = ''; + $s .= $open; + } + + // TODO: problematic formatting of select / options, object / params + } + + + // open tag, put to stack, increase counter + $item = array( + 'tag' => $mTag, + 'open' => $open, + 'close' => $close, + 'dtdContent' => $dtdContent, + 'indent' => $indent, + ); + array_unshift($this->tagStack, $item); + $tmp = &$this->tagUsed[$mTag]; $tmp++; + } + + return $s; + } + + + + /** + * Callback function: wrap lines. + * @return string + */ + private function wrap($m) + { + list(, $space, $s) = $m; + return $space . wordwrap($s, $this->lineWrap, "\n" . $space); + } + +} diff --git a/apigen/libs/Texy/texy/modules/TexyImageModule.php b/apigen/libs/Texy/texy/modules/TexyImageModule.php new file mode 100644 index 00000000000..ffd7acbc75e --- /dev/null +++ b/apigen/libs/Texy/texy/modules/TexyImageModule.php @@ -0,0 +1,372 @@ +texy = $texy; + + $texy->allowed['image/definition'] = TRUE; + $texy->addHandler('image', array($this, 'solve')); + $texy->addHandler('beforeParse', array($this, 'beforeParse')); + + // [*image*]:LINK + $texy->registerLinePattern( + array($this, 'patternImage'), + '#'.TEXY_IMAGE.TEXY_LINK_N.'??()#Uu', + 'image' + ); + } + + + + /** + * Text pre-processing. + * @param Texy + * @param string + * @return void + */ + public function beforeParse($texy, & $text) + { + if (!empty($texy->allowed['image/definition'])) { + // [*image*]: urls .(title)[class]{style} + $text = preg_replace_callback( + '#^\[\*([^\n]+)\*\]:\ +(.+)\ *'.TEXY_MODIFIER.'?\s*()$#mUu', + array($this, 'patternReferenceDef'), + $text + ); + } + } + + + + /** + * Callback for: [*image*]: urls .(title)[class]{style}. + * + * @param array regexp matches + * @return string + */ + private function patternReferenceDef($matches) + { + list(, $mRef, $mURLs, $mMod) = $matches; + // [1] => [* (reference) *] + // [2] => urls + // [3] => .(title)[class]{style}<> + + $image = $this->factoryImage($mURLs, $mMod, FALSE); + $this->addReference($mRef, $image); + return ''; + } + + + + /** + * Callback for [* small.jpg 80x13 | small-over.jpg | big.jpg .(alternative text)[class]{style}>]:LINK. + * + * @param TexyLineParser + * @param array regexp matches + * @param string pattern name + * @return TexyHtml|string|FALSE + */ + public function patternImage($parser, $matches) + { + list(, $mURLs, $mMod, $mAlign, $mLink) = $matches; + // [1] => URLs + // [2] => .(title)[class]{style}<> + // [3] => * < > + // [4] => url | [ref] | [*image*] + + $tx = $this->texy; + + $image = $this->factoryImage($mURLs, $mMod.$mAlign); + + if ($mLink) { + if ($mLink === ':') { + $link = new TexyLink($image->linkedURL === NULL ? $image->URL : $image->linkedURL); + $link->raw = ':'; + $link->type = TexyLink::IMAGE; + } else { + $link = $tx->linkModule->factoryLink($mLink, NULL, NULL); + } + } else $link = NULL; + + return $tx->invokeAroundHandlers('image', $parser, array($image, $link)); + } + + + + /** + * Adds new named reference to image. + * + * @param string reference name + * @param TexyImage + * @return void + */ + public function addReference($name, TexyImage $image) + { + $image->name = TexyUtf::strtolower($name); + $this->references[$image->name] = $image; + } + + + + /** + * Returns named reference. + * + * @param string reference name + * @return TexyImage reference descriptor (or FALSE) + */ + public function getReference($name) + { + $name = TexyUtf::strtolower($name); + if (isset($this->references[$name])) + return clone $this->references[$name]; + + return FALSE; + } + + + + /** + * Parses image's syntax. + * @param string input: small.jpg 80x13 | small-over.jpg | linked.jpg + * @param string + * @param bool + * @return TexyImage + */ + public function factoryImage($content, $mod, $tryRef = TRUE) + { + $image = $tryRef ? $this->getReference(trim($content)) : FALSE; + + if (!$image) { + $tx = $this->texy; + $content = explode('|', $content); + $image = new TexyImage; + + // dimensions + $matches = NULL; + if (preg_match('#^(.*) (\d+|\?) *(X|x) *(\d+|\?) *()$#U', $content[0], $matches)) { + $image->URL = trim($matches[1]); + $image->asMax = $matches[3] === 'X'; + $image->width = $matches[2] === '?' ? NULL : (int) $matches[2]; + $image->height = $matches[4] === '?' ? NULL : (int) $matches[4]; + } else { + $image->URL = trim($content[0]); + } + + if (!$tx->checkURL($image->URL, Texy::FILTER_IMAGE)) $image->URL = NULL; + + // onmouseover image + if (isset($content[1])) { + $tmp = trim($content[1]); + if ($tmp !== '' && $tx->checkURL($tmp, Texy::FILTER_IMAGE)) $image->overURL = $tmp; + } + + // linked image + if (isset($content[2])) { + $tmp = trim($content[2]); + if ($tmp !== '' && $tx->checkURL($tmp, Texy::FILTER_ANCHOR)) $image->linkedURL = $tmp; + } + } + + $image->modifier->setProperties($mod); + return $image; + } + + + + /** + * Finish invocation. + * + * @param TexyHandlerInvocation handler invocation + * @param TexyImage + * @param TexyLink + * @return TexyHtml|FALSE + */ + public function solve($invocation, TexyImage $image, $link) + { + if ($image->URL == NULL) return FALSE; + + $tx = $this->texy; + + $mod = $image->modifier; + $alt = $mod->title; + $mod->title = NULL; + $hAlign = $mod->hAlign; + $mod->hAlign = NULL; + + $el = TexyHtml::el('img'); + $el->attrs['src'] = NULL; // trick - move to front + $mod->decorate($tx, $el); + $el->attrs['src'] = Texy::prependRoot($image->URL, $this->root); + if (!isset($el->attrs['alt'])) { + if ($alt !== NULL) $el->attrs['alt'] = $tx->typographyModule->postLine($alt); + else $el->attrs['alt'] = $this->defaultAlt; + } + + if ($hAlign) { + $var = $hAlign . 'Class'; // leftClass, rightClass + if (!empty($this->$var)) { + $el->attrs['class'][] = $this->$var; + + } elseif (empty($tx->alignClasses[$hAlign])) { + $el->attrs['style']['float'] = $hAlign; + + } else { + $el->attrs['class'][] = $tx->alignClasses[$hAlign]; + } + } + + if (!is_int($image->width) || !is_int($image->height) || $image->asMax) { + // autodetect fileRoot + if ($this->fileRoot === NULL && isset($_SERVER['SCRIPT_FILENAME'])) { + $this->fileRoot = dirname($_SERVER['SCRIPT_FILENAME']) . '/' . $this->root; + } + + // detect dimensions + // absolute URL & security check for double dot + if (Texy::isRelative($image->URL) && strpos($image->URL, '..') === FALSE) { + $file = rtrim($this->fileRoot, '/\\') . '/' . $image->URL; + if (@is_file($file)) { // intentionally @ + $size = @getImageSize($file); // intentionally @ + if (is_array($size)) { + if ($image->asMax) { + $ratio = 1; + if (is_int($image->width)) $ratio = min($ratio, $image->width / $size[0]); + if (is_int($image->height)) $ratio = min($ratio, $image->height / $size[1]); + $image->width = round($ratio * $size[0]); + $image->height = round($ratio * $size[1]); + + } elseif (is_int($image->width)) { + $ratio = round($size[1] / $size[0] * $image->width); + $image->height = round($size[1] / $size[0] * $image->width); + + } elseif (is_int($image->height)) { + $image->width = round($size[0] / $size[1] * $image->height); + + } else { + $image->width = $size[0]; + $image->height = $size[1]; + } + } + } + } + } + + $el->attrs['width'] = $image->width; + $el->attrs['height'] = $image->height; + + // onmouseover actions generate + if ($image->overURL !== NULL) { + $overSrc = Texy::prependRoot($image->overURL, $this->root); + $el->attrs['onmouseover'] = 'this.src=\'' . addSlashes($overSrc) . '\''; + $el->attrs['onmouseout'] = 'this.src=\'' . addSlashes($el->attrs['src']) . '\''; + $el->attrs['onload'] = str_replace('%i', addSlashes($overSrc), $this->onLoad); + $tx->summary['preload'][] = $overSrc; + } + + $tx->summary['images'][] = $el->attrs['src']; + + if ($link) return $tx->linkModule->solve(NULL, $link, $el); + + return $el; + } + +} + + + + + + + +/** + * @package Texy + */ +final class TexyImage extends TexyObject +{ + /** @var string base image URL */ + public $URL; + + /** @var string on-mouse-over image URL */ + public $overURL; + + /** @var string anchored image URL */ + public $linkedURL; + + /** @var int optional image width */ + public $width; + + /** @var int optional image height */ + public $height; + + /** @var bool image width and height are maximal */ + public $asMax; + + /** @var TexyModifier */ + public $modifier; + + /** @var string reference name (if is stored as reference) */ + public $name; + + + + public function __construct() + { + $this->modifier = new TexyModifier; + } + + + + public function __clone() + { + if ($this->modifier) { + $this->modifier = clone $this->modifier; + } + } + +} diff --git a/apigen/libs/Texy/texy/modules/TexyLinkModule.php b/apigen/libs/Texy/texy/modules/TexyLinkModule.php new file mode 100644 index 00000000000..16352282d8d --- /dev/null +++ b/apigen/libs/Texy/texy/modules/TexyLinkModule.php @@ -0,0 +1,493 @@ +texy = $texy; + + $texy->allowed['link/definition'] = TRUE; + $texy->addHandler('newReference', array($this, 'solveNewReference')); + $texy->addHandler('linkReference', array($this, 'solve')); + $texy->addHandler('linkEmail', array($this, 'solveUrlEmail')); + $texy->addHandler('linkURL', array($this, 'solveUrlEmail')); + $texy->addHandler('beforeParse', array($this, 'beforeParse')); + + // [reference] + $texy->registerLinePattern( + array($this, 'patternReference'), + '#(\[[^\[\]\*\n'.TEXY_MARK.']+\])#U', + 'link/reference' + ); + + // direct url and email + $texy->registerLinePattern( + array($this, 'patternUrlEmail'), + '#(?<=^|[\s([<:\x17])(?:https?://|www\.|ftp://)[0-9.'.TEXY_CHAR.'-][/\d'.TEXY_CHAR.'+\.~%&?@=_:;\#,\x{ad}-]+[/\d'.TEXY_CHAR.'+~%?@=_\#]#u', + 'link/url', + '#(?:https?://|www\.|ftp://)#u' + ); + + $texy->registerLinePattern( + array($this, 'patternUrlEmail'), + '#(?<=^|[\s([<:\x17])'.TEXY_EMAIL.'#u', + 'link/email', + '#'.TEXY_EMAIL.'#u' + ); + } + + + + /** + * Text pre-processing. + * @param Texy + * @param string + * @return void + */ + public function beforeParse($texy, & $text) + { + self::$livelock = array(); + + // [la trine]: http://www.latrine.cz/ text odkazu .(title)[class]{style} + if (!empty($texy->allowed['link/definition'])) { + $text = preg_replace_callback( + '#^\[([^\[\]\#\?\*\n]+)\]: +(\S+)(\ .+)?'.TEXY_MODIFIER.'?\s*()$#mUu', + array($this, 'patternReferenceDef'), + $text + ); + } + } + + + + /** + * Callback for: [la trine]: http://www.latrine.cz/ text odkazu .(title)[class]{style}. + * + * @param array regexp matches + * @return string + */ + private function patternReferenceDef($matches) + { + list(, $mRef, $mLink, $mLabel, $mMod) = $matches; + // [1] => [ (reference) ] + // [2] => link + // [3] => ... + // [4] => .(title)[class]{style} + + $link = new TexyLink($mLink); + $link->label = trim($mLabel); + $link->modifier->setProperties($mMod); + $this->checkLink($link); + $this->addReference($mRef, $link); + return ''; + } + + + + /** + * Callback for: [ref]. + * + * @param TexyLineParser + * @param array regexp matches + * @param string pattern name + * @return TexyHtml|string|FALSE + */ + public function patternReference($parser, $matches) + { + list(, $mRef) = $matches; + // [1] => [ref] + + $tx = $this->texy; + $name = substr($mRef, 1, -1); + $link = $this->getReference($name); + + if (!$link) { + return $tx->invokeAroundHandlers('newReference', $parser, array($name)); + } + + $link->type = TexyLink::BRACKET; + + if ($link->label != '') { // NULL or '' + // prevent circular references + if (isset(self::$livelock[$link->name])) { + $content = $link->label; + } else { + self::$livelock[$link->name] = TRUE; + $el = TexyHtml::el(); + $lineParser = new TexyLineParser($tx, $el); + $lineParser->parse($link->label); + $content = $el->toString($tx); + unset(self::$livelock[$link->name]); + } + } else { + $content = $this->textualUrl($link); + $content = $this->texy->protect($content, Texy::CONTENT_TEXTUAL); + } + + return $tx->invokeAroundHandlers('linkReference', $parser, array($link, $content)); + } + + + + /** + * Callback for: http://davidgrudl.com david@grudl.com. + * + * @param TexyLineParser + * @param array regexp matches + * @param string pattern name + * @return TexyHtml|string|FALSE + */ + public function patternUrlEmail($parser, $matches, $name) + { + list($mURL) = $matches; + // [0] => URL + + $link = new TexyLink($mURL); + $this->checkLink($link); + + return $this->texy->invokeAroundHandlers( + $name === 'link/email' ? 'linkEmail' : 'linkURL', + $parser, + array($link) + ); + } + + + + /** + * Adds new named reference. + * + * @param string reference name + * @param TexyLink + * @return void + */ + public function addReference($name, TexyLink $link) + { + $link->name = TexyUtf::strtolower($name); + $this->references[$link->name] = $link; + } + + + + /** + * Returns named reference. + * + * @param string reference name + * @return TexyLink reference descriptor (or FALSE) + */ + public function getReference($name) + { + $name = TexyUtf::strtolower($name); + if (isset($this->references[$name])) { + return clone $this->references[$name]; + + } else { + $pos = strpos($name, '?'); + if ($pos === FALSE) $pos = strpos($name, '#'); + if ($pos !== FALSE) { // try to extract ?... #... part + $name2 = substr($name, 0, $pos); + if (isset($this->references[$name2])) { + $link = clone $this->references[$name2]; + $link->URL .= substr($name, $pos); + return $link; + } + } + } + + return FALSE; + } + + + + /** + * @param string + * @param string + * @param string + * @return TexyLink + */ + public function factoryLink($dest, $mMod, $label) + { + $tx = $this->texy; + $type = TexyLink::COMMON; + + // [ref] + if (strlen($dest)>1 && $dest{0} === '[' && $dest{1} !== '*') { + $type = TexyLink::BRACKET; + $dest = substr($dest, 1, -1); + $link = $this->getReference($dest); + + // [* image *] + } elseif (strlen($dest)>1 && $dest{0} === '[' && $dest{1} === '*') { + $type = TexyLink::IMAGE; + $dest = trim(substr($dest, 2, -2)); + $image = $tx->imageModule->getReference($dest); + if ($image) { + $link = new TexyLink($image->linkedURL === NULL ? $image->URL : $image->linkedURL); + $link->modifier = $image->modifier; + } + } + + if (empty($link)) { + $link = new TexyLink(trim($dest)); + $this->checkLink($link); + } + + if (strpos($link->URL, '%s') !== FALSE) { + $link->URL = str_replace('%s', urlencode($tx->stringToText($label)), $link->URL); + } + $link->modifier->setProperties($mMod); + $link->type = $type; + return $link; + } + + + + /** + * Finish invocation. + * + * @param TexyHandlerInvocation handler invocation + * @param TexyLink + * @param TexyHtml|string + * @return TexyHtml|string + */ + public function solve($invocation, $link, $content = NULL) + { + if ($link->URL == NULL) return $content; + + $tx = $this->texy; + + $el = TexyHtml::el('a'); + + if (empty($link->modifier)) { + $nofollow = $popup = FALSE; + } else { + $nofollow = isset($link->modifier->classes['nofollow']); + $popup = isset($link->modifier->classes['popup']); + unset($link->modifier->classes['nofollow'], $link->modifier->classes['popup']); + $el->attrs['href'] = NULL; // trick - move to front + $link->modifier->decorate($tx, $el); + } + + if ($link->type === TexyLink::IMAGE) { + // image + $el->attrs['href'] = Texy::prependRoot($link->URL, $tx->imageModule->linkedRoot); + $el->attrs['onclick'] = $this->imageOnClick; + + } else { + $el->attrs['href'] = Texy::prependRoot($link->URL, $this->root); + + // rel="nofollow" + if ($nofollow || ($this->forceNoFollow && strpos($el->attrs['href'], '//') !== FALSE)) + $el->attrs['rel'] = 'nofollow'; + } + + // popup on click + if ($popup) $el->attrs['onclick'] = $this->popupOnClick; + + if ($content !== NULL) $el->add($content); + + $tx->summary['links'][] = $el->attrs['href']; + + return $el; + } + + + + /** + * Finish invocation. + * + * @param TexyHandlerInvocation handler invocation + * @param TexyLink + * @return TexyHtml|string + */ + public function solveUrlEmail($invocation, $link) + { + $content = $this->textualUrl($link); + $content = $this->texy->protect($content, Texy::CONTENT_TEXTUAL); + return $this->solve(NULL, $link, $content); + } + + + + /** + * Finish invocation. + * + * @param TexyHandlerInvocation handler invocation + * @param string + * @return FALSE + */ + public function solveNewReference($invocation, $name) + { + // no change + return FALSE; + } + + + + /** + * Checks and corrects $URL. + * @param TexyLink + * @return void + */ + private function checkLink($link) + { + // remove soft hyphens; if not removed by Texy::process() + $link->URL = str_replace("\xC2\xAD", '', $link->URL); + + if (strncasecmp($link->URL, 'www.', 4) === 0) { + // special supported case + $link->URL = 'http://' . $link->URL; + + } elseif (preg_match('#'.TEXY_EMAIL.'$#Au', $link->URL)) { + // email + $link->URL = 'mailto:' . $link->URL; + + } elseif (!$this->texy->checkURL($link->URL, Texy::FILTER_ANCHOR)) { + $link->URL = NULL; + + } else { + $link->URL = str_replace('&', '&', $link->URL); // replace unwanted & + } + } + + + + /** + * Returns textual representation of URL. + * @param TexyLink + * @return string + */ + private function textualUrl($link) + { + if ($this->texy->obfuscateEmail && preg_match('#^'.TEXY_EMAIL.'$#u', $link->raw)) { // email + return str_replace('@', "@", $link->raw); + } + + if ($this->shorten && preg_match('#^(https?://|ftp://|www\.|/)#i', $link->raw)) { + + $raw = strncasecmp($link->raw, 'www.', 4) === 0 ? 'none://' . $link->raw : $link->raw; + + // parse_url() in PHP damages UTF-8 - use regular expression + if (!preg_match('~^(?:(?P[a-z]+):)?(?://(?P[^/?#]+))?(?P(?:/|^)(?!/)[^?#]*)?(?:\?(?P[^#]*))?(?:#(?P.*))?()$~', $raw, $parts)) { + return $link->raw; + } + + $res = ''; + if ($parts['scheme'] !== '' && $parts['scheme'] !== 'none') + $res .= $parts['scheme'] . '://'; + + if ($parts['host'] !== '') + $res .= $parts['host']; + + if ($parts['path'] !== '') + $res .= (iconv_strlen($parts['path'], 'UTF-8') > 16 ? ("/\xe2\x80\xa6" . iconv_substr($parts['path'], -12, 12, 'UTF-8')) : $parts['path']); + + if ($parts['query'] !== '') { + $res .= iconv_strlen($parts['query'], 'UTF-8') > 4 ? "?\xe2\x80\xa6" : ('?' . $parts['query']); + } elseif ($parts['fragment'] !== '') { + $res .= iconv_strlen($parts['fragment'], 'UTF-8') > 4 ? "#\xe2\x80\xa6" : ('#' . $parts['fragment']); + } + return $res; + } + + return $link->raw; + } + +} + + + + + + + + + +/** + * @package Texy + */ +final class TexyLink extends TexyObject +{ + /** @see $type */ + const + COMMON = 1, + BRACKET = 2, + IMAGE = 3; + + /** @var string URL in resolved form */ + public $URL; + + /** @var string URL as written in text */ + public $raw; + + /** @var TexyModifier */ + public $modifier; + + /** @var int how was link created? */ + public $type = TexyLink::COMMON; + + /** @var string optional label, used by references */ + public $label; + + /** @var string reference name (if is stored as reference) */ + public $name; + + + + public function __construct($URL) + { + $this->URL = $URL; + $this->raw = $URL; + $this->modifier = new TexyModifier; + } + + + + public function __clone() + { + if ($this->modifier) { + $this->modifier = clone $this->modifier; + } + } + +} diff --git a/apigen/libs/Texy/texy/modules/TexyListModule.php b/apigen/libs/Texy/texy/modules/TexyListModule.php new file mode 100644 index 00000000000..11ff52e25ba --- /dev/null +++ b/apigen/libs/Texy/texy/modules/TexyListModule.php @@ -0,0 +1,255 @@ + array('\*\ ', 0, ''), + '-' => array('[\x{2013}-](?![>-])',0, ''), + '+' => array('\+\ ', 0, ''), + '1.' => array('1\.\ ',/* not \d !*/ 1, '', '\d{1,3}\.\ '), + '1)' => array('\d{1,3}\)\ ', 1, ''), + 'I.' => array('I\.\ ', 1, 'upper-roman', '[IVX]{1,4}\.\ '), + 'I)' => array('[IVX]+\)\ ', 1, 'upper-roman'), // before A) ! + 'a)' => array('[a-z]\)\ ', 1, 'lower-alpha'), + 'A)' => array('[A-Z]\)\ ', 1, 'upper-alpha'), + ); + + + + public function __construct($texy) + { + $this->texy = $texy; + + $texy->addHandler('beforeParse', array($this, 'beforeParse')); + $texy->allowed['list'] = TRUE; + $texy->allowed['list/definition'] = TRUE; + } + + + + public function beforeParse() + { + $RE = $REul = array(); + foreach ($this->bullets as $desc) { + $RE[] = $desc[0]; + if (!$desc[1]) $REul[] = $desc[0]; + } + + $this->texy->registerBlockPattern( + array($this, 'patternList'), + '#^(?:'.TEXY_MODIFIER_H.'\n)?' // .{color: red} + . '('.implode('|', $RE).')\ *\S.*$#mUu', // item (unmatched) + 'list' + ); + + $this->texy->registerBlockPattern( + array($this, 'patternDefList'), + '#^(?:'.TEXY_MODIFIER_H.'\n)?' // .{color:red} + . '(\S.*)\:\ *'.TEXY_MODIFIER_H.'?\n' // Term: + . '(\ ++)('.implode('|', $REul).')\ *\S.*$#mUu', // - description + 'list/definition' + ); + } + + + + /** + * Callback for:. + * + * 1) .... .(title)[class]{style}> + * 2) .... + * + ... + * + ... + * 3) .... + * + * @param TexyBlockParser + * @param array regexp matches + * @param string pattern name + * @return TexyHtml|FALSE + */ + public function patternList($parser, $matches) + { + list(, $mMod, $mBullet) = $matches; + // [1] => .(title)[class]{style}<> + // [2] => bullet * + - 1) a) A) IV) + + $tx = $this->texy; + + $el = TexyHtml::el(); + + $bullet = $min = NULL; + foreach ($this->bullets as $type => $desc) + if (preg_match('#'.$desc[0].'#Au', $mBullet)) { + $bullet = isset($desc[3]) ? $desc[3] : $desc[0]; + $min = isset($desc[3]) ? 2 : 1; + $el->setName($desc[1] ? 'ol' : 'ul'); + $el->attrs['style']['list-style-type'] = $desc[2]; + if ($desc[1]) { // ol + if ($type[0] === '1' && (int) $mBullet > 1) + $el->attrs['start'] = (int) $mBullet; + elseif ($type[0] === 'a' && $mBullet[0] > 'a') + $el->attrs['start'] = ord($mBullet[0]) - 96; + elseif ($type[0] === 'A' && $mBullet[0] > 'A') + $el->attrs['start'] = ord($mBullet[0]) - 64; + } + break; + } + + $mod = new TexyModifier($mMod); + $mod->decorate($tx, $el); + + $parser->moveBackward(1); + + while ($elItem = $this->patternItem($parser, $bullet, FALSE, 'li')) { + $el->add($elItem); + } + + if ($el->count() < $min) return FALSE; + + // event listener + $tx->invokeHandlers('afterList', array($parser, $el, $mod)); + + return $el; + } + + + + /** + * Callback for:. + * + * Term: .(title)[class]{style}> + * - description 1 + * - description 2 + * - description 3 + * + * @param TexyBlockParser + * @param array regexp matches + * @param string pattern name + * @return TexyHtml + */ + public function patternDefList($parser, $matches) + { + list(, $mMod, , , , $mBullet) = $matches; + // [1] => .(title)[class]{style}<> + // [2] => ... + // [3] => .(title)[class]{style}<> + // [4] => space + // [5] => - * + + + $tx = $this->texy; + + $bullet = NULL; + foreach ($this->bullets as $desc) + if (preg_match('#'.$desc[0].'#Au', $mBullet)) { + $bullet = isset($desc[3]) ? $desc[3] : $desc[0]; + break; + } + + $el = TexyHtml::el('dl'); + $mod = new TexyModifier($mMod); + $mod->decorate($tx, $el); + $parser->moveBackward(2); + + $patternTerm = '#^\n?(\S.*)\:\ *'.TEXY_MODIFIER_H.'?()$#mUA'; + + while (TRUE) { + if ($elItem = $this->patternItem($parser, $bullet, TRUE, 'dd')) { + $el->add($elItem); + continue; + } + + if ($parser->next($patternTerm, $matches)) { + list(, $mContent, $mMod) = $matches; + // [1] => ... + // [2] => .(title)[class]{style}<> + + $elItem = TexyHtml::el('dt'); + $modItem = new TexyModifier($mMod); + $modItem->decorate($tx, $elItem); + + $elItem->parseLine($tx, $mContent); + $el->add($elItem); + continue; + } + + break; + } + + // event listener + $tx->invokeHandlers('afterDefinitionList', array($parser, $el, $mod)); + + return $el; + } + + + + /** + * Callback for single list item. + * + * @param TexyBlockParser + * @param string bullet type + * @param string left space + * @param string html tag + * @return TexyHtml|FALSE + */ + public function patternItem($parser, $bullet, $indented, $tag) + { + $tx = $this->texy; + $spacesBase = $indented ? ('\ {1,}') : ''; + $patternItem = "#^\n?($spacesBase)$bullet\\ *(\\S.*)?".TEXY_MODIFIER_H."?()$#mAUu"; + + // first line with bullet + $matches = NULL; + if (!$parser->next($patternItem, $matches)) return FALSE; + + list(, $mIndent, $mContent, $mMod) = $matches; + // [1] => indent + // [2] => ... + // [3] => .(title)[class]{style}<> + + $elItem = TexyHtml::el($tag); + $mod = new TexyModifier($mMod); + $mod->decorate($tx, $elItem); + + // next lines + $spaces = ''; + $content = ' ' . $mContent; // trick + while ($parser->next('#^(\n*)'.$mIndent.'(\ {1,'.$spaces.'})(.*)()$#Am', $matches)) { + list(, $mBlank, $mSpaces, $mContent) = $matches; + // [1] => blank line? + // [2] => spaces + // [3] => ... + + if ($spaces === '') $spaces = strlen($mSpaces); + $content .= "\n" . $mBlank . $mContent; + } + + // parse content + $elItem->parseBlock($tx, $content, TRUE); + + if (isset($elItem[0]) && $elItem[0] instanceof TexyHtml) { + $elItem[0]->setName(NULL); + } + + return $elItem; + } + +} diff --git a/apigen/libs/Texy/texy/modules/TexyLongWordsModule.php b/apigen/libs/Texy/texy/modules/TexyLongWordsModule.php new file mode 100644 index 00000000000..16c1336009c --- /dev/null +++ b/apigen/libs/Texy/texy/modules/TexyLongWordsModule.php @@ -0,0 +1,201 @@ +texy = $texy; + + $this->consonants = array_flip($this->consonants); + $this->vowels = array_flip($this->vowels); + $this->before_r = array_flip($this->before_r); + $this->before_l = array_flip($this->before_l); + $this->before_h = array_flip($this->before_h); + $this->doubleVowels = array_flip($this->doubleVowels); + + $texy->registerPostLine(array($this, 'postLine'), 'longwords'); + } + + + + public function postLine($text) + { + return preg_replace_callback( + '#[^\ \n\t\x14\x15\x16\x{2013}\x{2014}\x{ad}-]{'.$this->wordLimit.',}#u', + array($this, 'pattern'), + $text + ); + } + + + + /** + * Callback for long words. + * (c) David Grudl + * @param array + * @return string + */ + private function pattern($matches) + { + list($mWord) = $matches; + // [0] => lllloooonnnnggggwwwoorrdddd + + $chars = array(); + preg_match_all( + '#['.TEXY_MARK.']+|.#u', + $mWord, + $chars + ); + + $chars = $chars[0]; + if (count($chars) < $this->wordLimit) return $mWord; + + $consonants = $this->consonants; + $vowels = $this->vowels; + $before_r = $this->before_r; + $before_l = $this->before_l; + $before_h = $this->before_h; + $doubleVowels = $this->doubleVowels; + + $s = array(); + $trans = array(); + + $s[] = ''; + $trans[] = -1; + foreach ($chars as $key => $char) { + if (ord($char{0}) < 32) continue; + $s[] = $char; + $trans[] = $key; + } + $s[] = ''; + $len = count($s) - 2; + + $positions = array(); + $a = 0; $last = 1; + + while (++$a < $len) { + $hyphen = self::DONT; // Do not hyphenate + do { + if ($s[$a] === "\xC2\xA0") { $a++; continue 2; } // here and after never + + if ($s[$a] === '.') { $hyphen = self::HERE; break; } + + if (isset($consonants[$s[$a]])) { // consonants + + if (isset($vowels[$s[$a+1]])) { + if (isset($vowels[$s[$a-1]])) $hyphen = self::HERE; + break; + } + + if (($s[$a] === 's') && ($s[$a-1] === 'n') && isset($consonants[$s[$a+1]])) { $hyphen = self::AFTER; break; } + + if (isset($consonants[$s[$a+1]]) && isset($vowels[$s[$a-1]])) { + if ($s[$a+1] === 'r') { + $hyphen = isset($before_r[$s[$a]]) ? self::HERE : self::AFTER; + break; + } + + if ($s[$a+1] === 'l') { + $hyphen = isset($before_l[$s[$a]]) ? self::HERE : self::AFTER; + break; + } + + if ($s[$a+1] === 'h') { // CH + $hyphen = isset($before_h[$s[$a]]) ? self::DONT : self::AFTER; + break; + } + + $hyphen = self::AFTER; + break; + } + + break; + } // end of consonants + + if (($s[$a] === 'u') && isset($doubleVowels[$s[$a-1]])) { $hyphen = self::AFTER; break; } + if (isset($vowels[$s[$a]]) && isset($vowels[$s[$a-1]])) { $hyphen = self::HERE; break; } + + } while(0); + + if ($hyphen === self::DONT && ($a - $last > $this->wordLimit*0.6)) $positions[] = $last = $a-1; // Hyphenate here + if ($hyphen === self::HERE) $positions[] = $last = $a-1; // Hyphenate here + if ($hyphen === self::AFTER) { $positions[] = $last = $a; $a++; } // Hyphenate after + + } // while + + + $a = end($positions); + if (($a === $len-1) && isset($consonants[$s[$len]])) + array_pop($positions); + + + $syllables = array(); + $last = 0; + foreach ($positions as $pos) { + if ($pos - $last > $this->wordLimit*0.6) { + $syllables[] = implode('', array_splice($chars, 0, $trans[$pos] - $trans[$last])); + $last = $pos; + } + } + $syllables[] = implode('', $chars); + + //$s = implode("\xC2\xAD", $syllables); // insert shy + //$s = str_replace(array("\xC2\xAD\xC2\xA0", "\xC2\xA0\xC2\xAD"), array(' ', ' '), $s); // shy+nbsp = normal space + + return implode("\xC2\xAD", $syllables);; + } + +} diff --git a/apigen/libs/Texy/texy/modules/TexyParagraphModule.php b/apigen/libs/Texy/texy/modules/TexyParagraphModule.php new file mode 100644 index 00000000000..5d8644b30a2 --- /dev/null +++ b/apigen/libs/Texy/texy/modules/TexyParagraphModule.php @@ -0,0 +1,136 @@ +texy = $texy; + $texy->addHandler('paragraph', array($this, 'solve')); + } + + + + /** + * @param TexyBlockParser + * @param string text + * @param array + * @param TexyHtml + * @return vois + */ + public function process($parser, $content, $el) + { + $tx = $this->texy; + + if ($parser->isIndented()) { + $parts = preg_split('#(\n(?! )|\n{2,})#', $content, -1, PREG_SPLIT_NO_EMPTY); + } else { + $parts = preg_split('#(\n{2,})#', $content, -1, PREG_SPLIT_NO_EMPTY); + } + + foreach ($parts as $s) + { + $s = trim($s); + if ($s === '') continue; + + // try to find modifier + $mx = $mod = NULL; + if (preg_match('#\A(.*)(?<=\A|\S)'.TEXY_MODIFIER_H.'(\n.*)?()\z#sUm', $s, $mx)) { + list(, $mC1, $mMod, $mC2) = $mx; + $s = trim($mC1 . $mC2); + if ($s === '') continue; + $mod = new TexyModifier; + $mod->setProperties($mMod); + } + + $res = $tx->invokeAroundHandlers('paragraph', $parser, array($s, $mod)); + if ($res) $el->insert(NULL, $res); + } + } + + + + /** + * Finish invocation. + * + * @param TexyHandlerInvocation handler invocation + * @param string + * @param TexyModifier|NULL + * @return TexyHtml|FALSE + */ + public function solve($invocation, $content, $mod) + { + $tx = $this->texy; + + // find hard linebreaks + if ($tx->mergeLines) { + // .... + // ... => \r means break line + $content = preg_replace('#\n +(?=\S)#', "\r", $content); + } else { + $content = preg_replace('#\n#', "\r", $content); + } + + $el = TexyHtml::el('p'); + $el->parseLine($tx, $content); + $content = $el->getText(); // string + + // check content type + // block contains block tag + if (strpos($content, Texy::CONTENT_BLOCK) !== FALSE) { + $el->setName(NULL); // ignores modifier! + + // block contains text (protected) + } elseif (strpos($content, Texy::CONTENT_TEXTUAL) !== FALSE) { + // leave element p + + // block contains text + } elseif (preg_match('#[^\s'.TEXY_MARK.']#u', $content)) { + // leave element p + + // block contains only replaced element + } elseif (strpos($content, Texy::CONTENT_REPLACED) !== FALSE) { + $el->setName($tx->nontextParagraph); + + // block contains only markup tags or spaces or nothing + } else { + // if {ignoreEmptyStuff} return FALSE; + if (!$mod) $el->setName(NULL); + } + + if ($el->getName()) { + // apply modifier + if ($mod) $mod->decorate($tx, $el); + + // add
+ if (strpos($content, "\r") !== FALSE) { + $key = $tx->protect('
', Texy::CONTENT_REPLACED); + $content = str_replace("\r", $key, $content); + }; + } + + $content = strtr($content, "\r\n", ' '); + $el->setText($content); + + return $el; + } + +} diff --git a/apigen/libs/Texy/texy/modules/TexyPhraseModule.php b/apigen/libs/Texy/texy/modules/TexyPhraseModule.php new file mode 100644 index 00000000000..24a1a5dc8b5 --- /dev/null +++ b/apigen/libs/Texy/texy/modules/TexyPhraseModule.php @@ -0,0 +1,334 @@ + 'strong', // or 'b' + 'phrase/em' => 'em', // or 'i' + 'phrase/em-alt' => 'em', + 'phrase/em-alt2' => 'em', + 'phrase/ins' => 'ins', + 'phrase/del' => 'del', + 'phrase/sup' => 'sup', + 'phrase/sup-alt' => 'sup', + 'phrase/sub' => 'sub', + 'phrase/sub-alt' => 'sub', + 'phrase/span' => 'a', + 'phrase/span-alt' => 'a', + 'phrase/cite' => 'cite', + 'phrase/acronym' => 'acronym', + 'phrase/acronym-alt' => 'acronym', + 'phrase/code' => 'code', + 'phrase/quote' => 'q', + 'phrase/quicklink' => 'a', + ); + + + /** @var bool are links allowed? */ + public $linksAllowed = TRUE; + + + + public function __construct($texy) + { + $this->texy = $texy; + + $texy->addHandler('phrase', array($this, 'solve')); + +/* + // UNIVERSAL + $texy->registerLinePattern( + array($this, 'patternPhrase'), + '#((?>([*+/^_"~`-])+?))(?!\s)(.*(?!\\2).)'.TEXY_MODIFIER.'?(?registerLinePattern( + array($this, 'patternPhrase'), + '#(?registerLinePattern( + array($this, 'patternPhrase'), + '#(?registerLinePattern( + array($this, 'patternPhrase'), + '#(?registerLinePattern( + array($this, 'patternPhrase'), + '#(?registerLinePattern( + array($this, 'patternPhrase'), + '#(?()"\''.TEXY_MARK.'-])\*(?![\s*])(.+)'.TEXY_MODIFIER.'?(?()"?!\'-])'.TEXY_LINK.'??()#Uus', + 'phrase/em-alt2' + ); + + // ++inserted++ + $texy->registerLinePattern( + array($this, 'patternPhrase'), + '#(?registerLinePattern( + array($this, 'patternPhrase'), + '#(?-])([^\r\n]+)'.TEXY_MODIFIER.'?(?-])()#Uu', + 'phrase/del' + ); + + // ^^superscript^^ + $texy->registerLinePattern( + array($this, 'patternPhrase'), + '#(?registerLinePattern( + array($this, 'patternSupSub'), + '#(?<=[a-z0-9])\^([n0-9+-]{1,4}?)(?![a-z0-9])#Uui', + 'phrase/sup-alt' + ); + + // __subscript__ + $texy->registerLinePattern( + array($this, 'patternPhrase'), + '#(?registerLinePattern( + array($this, 'patternSupSub'), + '#(?<=[a-z])\_([n0-9]{1,3})(?![a-z0-9])#Uui', + 'phrase/sub-alt' + ); + + // "span" + $texy->registerLinePattern( + array($this, 'patternPhrase'), + '#(?registerLinePattern( + array($this, 'patternPhrase'), + '#(?registerLinePattern( + array($this, 'patternPhrase'), + '#(?>quote<< + $texy->registerLinePattern( + array($this, 'patternPhrase'), + '#(?)\>\>(?![\s>])([^\r\n]+)'.TEXY_MODIFIER.'?(?registerLinePattern( + array($this, 'patternPhrase'), + '#(?registerLinePattern( + array($this, 'patternPhrase'), + '#(?registerLinePattern( + array($this, 'patternNoTexy'), + '#(?registerLinePattern( + array($this, 'patternPhrase'), + '#\`(\S[^'.TEXY_MARK.'\r\n]*)'.TEXY_MODIFIER.'?(?registerLinePattern( + array($this, 'patternPhrase'), + '#(['.TEXY_CHAR.'0-9@\#$%&.,_-]+)()(?=:\[)'.TEXY_LINK.'()#Uu', + 'phrase/quicklink' + ); + + + $texy->allowed['phrase/ins'] = FALSE; + $texy->allowed['phrase/del'] = FALSE; + $texy->allowed['phrase/sup'] = FALSE; + $texy->allowed['phrase/sub'] = FALSE; + $texy->allowed['phrase/cite'] = FALSE; + } + + + + /** + * Callback for: **.... .(title)[class]{style}**:LINK. + * + * @param TexyLineParser + * @param array regexp matches + * @param string pattern name + * @return TexyHtml|string|FALSE + */ + public function patternPhrase($parser, $matches, $phrase) + { + list(, $mContent, $mMod, $mLink) = $matches; + // [1] => ** + // [2] => ... + // [3] => .(title)[class]{style} + // [4] => LINK + + $tx = $this->texy; + $mod = new TexyModifier($mMod); + $link = NULL; + + $parser->again = $phrase !== 'phrase/code' && $phrase !== 'phrase/quicklink'; + + if ($phrase === 'phrase/span' || $phrase === 'phrase/span-alt') { + if ($mLink == NULL) { + if (!$mMod) return FALSE; // means "..." + } else { + $link = $tx->linkModule->factoryLink($mLink, $mMod, $mContent); + } + + } elseif ($phrase === 'phrase/acronym' || $phrase === 'phrase/acronym-alt') { + $mod->title = trim(Texy::unescapeHtml($mLink)); + + } elseif ($phrase === 'phrase/quote') { + $mod->cite = $tx->blockQuoteModule->citeLink($mLink); + + } elseif ($mLink != NULL) { + $link = $tx->linkModule->factoryLink($mLink, NULL, $mContent); + } + + return $tx->invokeAroundHandlers('phrase', $parser, array($phrase, $mContent, $mod, $link)); + } + + + + /** + * Callback for: any^2 any_2. + * + * @param TexyLineParser + * @param array regexp matches + * @param string pattern name + * @return TexyHtml|string|FALSE + */ + public function patternSupSub($parser, $matches, $phrase) + { + list(, $mContent) = $matches; + $mod = new TexyModifier(); + $link = NULL; + $mContent = str_replace('-', "\xE2\x88\x92", $mContent); // − + return $this->texy->invokeAroundHandlers('phrase', $parser, array($phrase, $mContent, $mod, $link)); + } + + + + /** + * @param TexyLineParser + * @param array regexp matches + * @param string pattern name + * @return string + */ + public function patternNoTexy($parser, $matches) + { + list(, $mContent) = $matches; + return $this->texy->protect(Texy::escapeHtml($mContent), Texy::CONTENT_TEXTUAL); + } + + + + /** + * Finish invocation. + * + * @param TexyHandlerInvocation handler invocation + * @param string + * @param string + * @param TexyModifier + * @param TexyLink + * @return TexyHtml + */ + public function solve($invocation, $phrase, $content, $mod, $link) + { + $tx = $this->texy; + + $tag = isset($this->tags[$phrase]) ? $this->tags[$phrase] : NULL; + + if ($tag === 'a') + $tag = $link && $this->linksAllowed ? NULL : 'span'; + + if ($phrase === 'phrase/code') + $content = $tx->protect(Texy::escapeHtml($content), Texy::CONTENT_TEXTUAL); + + if ($phrase === 'phrase/strong+em') { + $el = TexyHtml::el($this->tags['phrase/strong']); + $el->create($this->tags['phrase/em'], $content); + $mod->decorate($tx, $el); + + } elseif ($tag) { + $el = TexyHtml::el($tag)->setText($content); + $mod->decorate($tx, $el); + + if ($tag === 'q') $el->attrs['cite'] = $mod->cite; + } else { + $el = $content; // trick + } + + if ($link && $this->linksAllowed) return $tx->linkModule->solve(NULL, $link, $el); + + return $el; + } + +} diff --git a/apigen/libs/Texy/texy/modules/TexyScriptModule.php b/apigen/libs/Texy/texy/modules/TexyScriptModule.php new file mode 100644 index 00000000000..8b1efa630dc --- /dev/null +++ b/apigen/libs/Texy/texy/modules/TexyScriptModule.php @@ -0,0 +1,119 @@ +texy = $texy; + + $texy->addHandler('script', array($this, 'solve')); + + $texy->registerLinePattern( + array($this, 'pattern'), + '#\{\{([^'.TEXY_MARK.']+)\}\}()#U', + 'script' + ); + } + + + + /** + * Callback for: {{...}}. + * + * @param TexyLineParser + * @param array regexp matches + * @param string pattern name + * @return TexyHtml|string|FALSE + */ + public function pattern($parser, $matches) + { + list(, $mContent) = $matches; + // [1] => ... + + $cmd = trim($mContent); + if ($cmd === '') return FALSE; + + $args = $raw = NULL; + // function(arg, arg, ...) or function: arg, arg + if (preg_match('#^([a-z_][a-z0-9_-]*)\s*(?:\(([^()]*)\)|:(.*))$#iu', $cmd, $matches)) { + $cmd = $matches[1]; + $raw = isset($matches[3]) ? trim($matches[3]) : trim($matches[2]); + if ($raw === '') + $args = array(); + else + $args = preg_split('#\s*' . preg_quote($this->separator, '#') . '\s*#u', $raw); + } + + // Texy 1.x way + if ($this->handler) { + if (is_callable(array($this->handler, $cmd))) { + array_unshift($args, $parser); + return call_user_func_array(array($this->handler, $cmd), $args); + } + + if (is_callable($this->handler)) + return call_user_func_array($this->handler, array($parser, $cmd, $args, $raw)); + } + + // Texy 2 way + return $this->texy->invokeAroundHandlers('script', $parser, array($cmd, $args, $raw)); + } + + + + /** + * Finish invocation. + * + * @param TexyHandlerInvocation handler invocation + * @param string command + * @param array arguments + * @param string arguments in raw format + * @return TexyHtml|string|FALSE + */ + public function solve($invocation, $cmd, $args, $raw) + { + if ($cmd === 'texy') { + if (!$args) return FALSE; + + switch ($args[0]) { + case 'nofollow': + $this->texy->linkModule->forceNoFollow = TRUE; + break; + } + return ''; + + } else { + return FALSE; + } + } + +} diff --git a/apigen/libs/Texy/texy/modules/TexyTableModule.php b/apigen/libs/Texy/texy/modules/TexyTableModule.php new file mode 100644 index 00000000000..7279b9912e9 --- /dev/null +++ b/apigen/libs/Texy/texy/modules/TexyTableModule.php @@ -0,0 +1,309 @@ +texy = $texy; + + $texy->registerBlockPattern( + array($this, 'patternTable'), + '#^(?:'.TEXY_MODIFIER_HV.'\n)?' // .{color: red} + . '\|.*()$#mU', // | .... + 'table' + ); + } + + + + /** + * Callback for:. + * + * .(title)[class]{style}> + * |------------------ + * | xxx | xxx | xxx | .(..){..}[..] + * |------------------ + * | aa | bb | cc | + * + * @param TexyBlockParser + * @param array regexp matches + * @param string pattern name + * @return TexyHtml|string|FALSE + */ + public function patternTable($parser, $matches) + { + if ($this->disableTables) return FALSE; + list(, $mMod) = $matches; + // [1] => .(title)[class]{style}<>_ + + $tx = $this->texy; + + $el = TexyHtml::el('table'); + $mod = new TexyModifier($mMod); + $mod->decorate($tx, $el); + + $parser->moveBackward(); + + if ($parser->next('#^\|(\#|\=){2,}(?![|\#=+])(.+)\\1*\|? *'.TEXY_MODIFIER_H.'?()$#Um', $matches)) { + list(, , $mContent, $mMod) = $matches; + // [1] => # / = + // [2] => .... + // [3] => .(title)[class]{style}<> + + $caption = $el->create('caption'); + $mod = new TexyModifier($mMod); + $mod->decorate($tx, $caption); + $caption->parseLine($tx, $mContent); + } + + $isHead = FALSE; + $colModifier = array(); + $prevRow = array(); // rowSpan building helper + $rowCounter = 0; + $colCounter = 0; + $elPart = NULL; + $lineMode = FALSE; // rows must be separated by lines + + while (TRUE) { + if ($parser->next('#^\|([=-])[+|=-]{2,}$#Um', $matches)) { // line + if ($lineMode) { + if ($matches[1] === '=') $isHead = !$isHead; + } else { + $isHead = !$isHead; + $lineMode = $matches[1] === '='; + } + $prevRow = array(); + continue; + } + + if ($parser->next('#^\|(.*)(?:|\|\ *'.TEXY_MODIFIER_HV.'?)()$#U', $matches)) { + // smarter head detection + if ($rowCounter === 0 && !$isHead && $parser->next('#^\|[=-][+|=-]{2,}$#Um', $foo)) { + $isHead = TRUE; + $parser->moveBackward(); + } + + if ($elPart === NULL) { + $elPart = $el->create($isHead ? 'thead' : 'tbody'); + + } elseif (!$isHead && $elPart->getName() === 'thead') { + $this->finishPart($elPart); + $elPart = $el->create('tbody'); + } + + + // PARSE ROW + list(, $mContent, $mMod) = $matches; + // [1] => .... + // [2] => .(title)[class]{style}<>_ + + $elRow = TexyHtml::el('tr'); + $mod = new TexyModifier($mMod); + $mod->decorate($tx, $elRow); + + $rowClass = $rowCounter % 2 === 0 ? $this->oddClass : $this->evenClass; + if ($rowClass && !isset($mod->classes[$this->oddClass]) && !isset($mod->classes[$this->evenClass])) { + $elRow->attrs['class'][] = $rowClass; + } + + $col = 0; + $elCell = NULL; + + // special escape sequence \| + $mContent = str_replace('\\|', "\x13", $mContent); + $mContent = preg_replace('#(\[[^\]]*)\|#', "$1\x13", $mContent); // HACK: support for [..|..] + + foreach (explode('|', $mContent) as $cell) { + $cell = strtr($cell, "\x13", '|'); + // rowSpan + if (isset($prevRow[$col]) && ($lineMode || preg_match('#\^\ *$|\*??(.*)\ +\^$#AU', $cell, $matches))) { + $prevRow[$col]->rowSpan++; + if (!$lineMode) { + $cell = isset($matches[1]) ? $matches[1] : ''; + } + $prevRow[$col]->text .= "\n" . $cell; + $col += $prevRow[$col]->colSpan; + $elCell = NULL; + continue; + } + + // colSpan + if ($cell === '' && $elCell) { + $elCell->colSpan++; + unset($prevRow[$col]); + $col++; + continue; + } + + // common cell + if (!preg_match('#(\*??)\ *'.TEXY_MODIFIER_HV.'??(.*)'.TEXY_MODIFIER_HV.'?\ *()$#AU', $cell, $matches)) continue; + list(, $mHead, $mModCol, $mContent, $mMod) = $matches; + // [1] => * ^ + // [2] => .(title)[class]{style}<>_ + // [3] => .... + // [4] => .(title)[class]{style}<>_ + + if ($mModCol) { + $colModifier[$col] = new TexyModifier($mModCol); + } + + if (isset($colModifier[$col])) + $mod = clone $colModifier[$col]; + else + $mod = new TexyModifier; + + $mod->setProperties($mMod); + + $elCell = new TexyTableCellElement; + $elCell->setName($isHead || ($mHead === '*') ? 'th' : 'td'); + $mod->decorate($tx, $elCell); + $elCell->text = $mContent; + + $elRow->add($elCell); + $prevRow[$col] = $elCell; + $col++; + } + + + // even up with empty cells + while ($col < $colCounter) { + if (isset($prevRow[$col]) && $lineMode) { + $prevRow[$col]->rowSpan++; + $prevRow[$col]->text .= "\n"; + + } else { + $elCell = new TexyTableCellElement; + $elCell->setName($isHead ? 'th' : 'td'); + if (isset($colModifier[$col])) { + $colModifier[$col]->decorate($tx, $elCell); + } + $elRow->add($elCell); + $prevRow[$col] = $elCell; + } + $col++; + } + $colCounter = $col; + + + if ($elRow->count()) { + $elPart->add($elRow); + $rowCounter++; + } else { + // redundant row + foreach ($prevRow as $elCell) $elCell->rowSpan--; + } + + continue; + } + + break; + } + + if ($elPart === NULL) { + // invalid table + return FALSE; + } + + if ($elPart->getName() === 'thead') { + // thead is optional, tbody is required + $elPart->setName('tbody'); + } + + $this->finishPart($elPart); + + + // event listener + $tx->invokeHandlers('afterTable', array($parser, $el, $mod)); + + return $el; + } + + + + /** + * Parse text in all cells. + * @param TexyHtml + * @return void + */ + private function finishPart($elPart) + { + $tx = $this->texy; + + foreach ($elPart->getChildren() as $elRow) + { + foreach ($elRow->getChildren() as $elCell) + { + if ($elCell->colSpan > 1) { + $elCell->attrs['colspan'] = $elCell->colSpan; + } + + if ($elCell->rowSpan > 1) { + $elCell->attrs['rowspan'] = $elCell->rowSpan; + } + + $text = rtrim($elCell->text); + if (strpos($text, "\n") !== FALSE) { + // multiline parse as block + // HACK: disable tables + $this->disableTables = TRUE; + $elCell->parseBlock($tx, Texy::outdent($text)); + $this->disableTables = FALSE; + } else { + $elCell->parseLine($tx, ltrim($text)); + } + + if ($elCell->getText() === '') { + $elCell->setText("\xC2\xA0"); //   + } + } + } + } + +} + + + + +/** + * Table cell TD / TH. + * @package Texy + */ +class TexyTableCellElement extends TexyHtml +{ + /** @var int */ + public $colSpan = 1; + + /** @var int */ + public $rowSpan = 1; + + /** @var string */ + public $text; + +} diff --git a/apigen/libs/Texy/texy/modules/TexyTypographyModule.php b/apigen/libs/Texy/texy/modules/TexyTypographyModule.php new file mode 100644 index 00000000000..e4ad662fa85 --- /dev/null +++ b/apigen/libs/Texy/texy/modules/TexyTypographyModule.php @@ -0,0 +1,139 @@ + array( + 'singleQuotes' => array("\xe2\x80\x9a", "\xe2\x80\x98"), // U+201A, U+2018 + 'doubleQuotes' => array("\xe2\x80\x9e", "\xe2\x80\x9c"), // U+201E, U+201C + ), + + 'en' => array( + 'singleQuotes' => array("\xe2\x80\x98", "\xe2\x80\x99"), // U+2018, U+2019 + 'doubleQuotes' => array("\xe2\x80\x9c", "\xe2\x80\x9d"), // U+201C, U+201D + ), + + 'fr' => array( + 'singleQuotes' => array("\xe2\x80\xb9", "\xe2\x80\xba"), // U+2039, U+203A + 'doubleQuotes' => array("\xc2\xab", "\xc2\xbb"), // U+00AB, U+00BB + ), + + 'de' => array( + 'singleQuotes' => array("\xe2\x80\x9a", "\xe2\x80\x98"), // U+201A, U+2018 + 'doubleQuotes' => array("\xe2\x80\x9e", "\xe2\x80\x9c"), // U+201E, U+201C + ), + + 'pl' => array( + 'singleQuotes' => array("\xe2\x80\x9a", "\xe2\x80\x99"), // U+201A, U+2019 + 'doubleQuotes' => array("\xe2\x80\x9e", "\xe2\x80\x9d"), // U+201E, U+201D + ), + ); + + /** @var string */ + public $locale = 'cs'; + + /** @var array */ + private $pattern, $replace; + + + + public function __construct($texy) + { + $this->texy = $texy; + $texy->registerPostLine(array($this, 'postLine'), 'typography'); + $texy->addHandler('beforeParse', array($this, 'beforeParse')); + } + + + + /** + * Text pre-processing. + * @param Texy + * @param string + * @return void + */ + public function beforeParse($texy, & $text) + { + // CONTENT_MARKUP mark: \x17-\x1F + // CONTENT_REPLACED mark: \x16 + // CONTENT_TEXTUAL mark: \x17 + // CONTENT_BLOCK: not used in postLine + + if (isset(self::$locales[$this->locale])) + $locale = self::$locales[$this->locale]; + else // fall back + $locale = self::$locales['en']; + + $pairs = array( + '#(? "\xe2\x80\xa6", // ellipsis ... + '#(?<=[\d ]|^)-(?=[\d ]|$)#' => "\xe2\x80\x93", // en dash 123-123 + '#(?<=[^!*+,/:;<=>@\\\\_|-])--(?=[^!*+,/:;<=>@\\\\_|-])#' => "\xe2\x80\x93", // en dash alphanum--alphanum + '#,-#' => ",\xe2\x80\x93", // en dash ,- + '#(? "\$1\xc2\xa0\$2\xc2\xa0\$3", // date 23. 1. 1978 + '#(? "\$1\xc2\xa0\$2", // date 23. 1. + '# --- #' => "\xc2\xa0\xe2\x80\x94 ", // em dash --- + '# ([\x{2013}\x{2014}])#u' => "\xc2\xa0\$1", //   behind dash (dash stays at line end) + '# <-{1,2}> #' => " \xe2\x86\x94 ", // left right arrow <--> + '#-{1,}> #' => " \xe2\x86\x92 ", // right arrow --> + '# <-{1,}#' => " \xe2\x86\x90 ", // left arrow <-- + '#={1,}> #' => " \xe2\x87\x92 ", // right arrow ==> + '#\\+-#' => "\xc2\xb1", // +- + '#(\d+)( ?)x\\2(?=\d)#' => "\$1\xc3\x97", // dimension sign 123 x 123... + '#(?<=\d)x(?= |,|.|$)#m' => "\xc3\x97", // dimension sign 123x + '#(\S ?)\(TM\)#i' => "\$1\xe2\x84\xa2", // trademark (TM) + '#(\S ?)\(R\)#i' => "\$1\xc2\xae", // registered (R) + '#\(C\)( ?\S)#i' => "\xc2\xa9\$1", // copyright (C) + '#\(EUR\)#' => "\xe2\x82\xac", // Euro (EUR) + '#(\d) (?=\d{3})#' => "\$1\xc2\xa0", // (phone) number 1 123 123 123... + + '#(?<=[^\s\x17])\s+([\x17-\x1F]+)(?=\s)#u'=> "\$1", // remove intermarkup space phase 1 + '#(?<=\s)([\x17-\x1F]+)\s+#u' => "\$1", // remove intermarkup space phase 2 + + '#(?<=.{50})\s+(?=[\x17-\x1F]*\S{1,6}[\x17-\x1F]*$)#us' => "\xc2\xa0", // space before last short word + + // nbsp space between number (optionally followed by dot) and word, symbol, punctation, currency symbol + '#(?<=^| |\.|,|-|\+|\x16|\(|\d\x{A0})([\x17-\x1F]*\d+\.?[\x17-\x1F]*)\s+(?=[\x17-\x1F]*[%'.TEXY_CHAR.'\x{b0}-\x{be}\x{2020}-\x{214f}])#mu' + => "\$1\xc2\xa0", + + // space between preposition and word + '#(?<=^|[^0-9'.TEXY_CHAR.'])([\x17-\x1F]*[ksvzouiKSVZOUIA][\x17-\x1F]*)\s+(?=[\x17-\x1F]*[0-9'.TEXY_CHAR.'])#mus' + => "\$1\xc2\xa0", + + '#(? $locale['doubleQuotes'][0].'$1'.$locale['doubleQuotes'][1], // double "" + '#(? $locale['singleQuotes'][0].'$1'.$locale['singleQuotes'][1], // single '' + ); + + $this->pattern = array_keys($pairs); + $this->replace = array_values($pairs); + } + + + + public function postLine($text, $preserveSpaces = FALSE) + { + if (!$preserveSpaces) { + $text = preg_replace('# {2,}#', ' ', $text); + } + return preg_replace($this->pattern, $this->replace, $text); + } + +} \ No newline at end of file diff --git a/apigen/libs/Texy/texy/netterobots.txt b/apigen/libs/Texy/texy/netterobots.txt new file mode 100644 index 00000000000..45b983866bc --- /dev/null +++ b/apigen/libs/Texy/texy/netterobots.txt @@ -0,0 +1 @@ +Disallow: /modules diff --git a/apigen/libs/Texy/texy/texy.php b/apigen/libs/Texy/texy/texy.php new file mode 100644 index 00000000000..58ff07e01bb --- /dev/null +++ b/apigen/libs/Texy/texy/texy.php @@ -0,0 +1,965 @@ + + * $texy = new Texy(); + * $html = $texy->process($text); + *
+ * + * @copyright Copyright (c) 2004, 2010 David Grudl + * @package Texy + */ +class Texy extends TexyObject +{ + // configuration directives + const ALL = TRUE; + const NONE = FALSE; + + // Texy version + const VERSION = TEXY_VERSION; + const REVISION = '$WCREV$ released on $WCDATE$'; + + // types of protection marks + const CONTENT_MARKUP = "\x17"; + const CONTENT_REPLACED = "\x16"; + const CONTENT_TEXTUAL = "\x15"; + const CONTENT_BLOCK = "\x14"; + + // url filters + const FILTER_ANCHOR = 'anchor'; + const FILTER_IMAGE = 'image'; + + // HTML minor-modes + const XML = 2; + + // HTML modes + const HTML4_TRANSITIONAL = 0; + const HTML4_STRICT = 1; + const HTML5 = 4; + const XHTML1_TRANSITIONAL = 2; // Texy::HTML4_TRANSITIONAL | Texy::XML; + const XHTML1_STRICT = 3; // Texy::HTML4_STRICT | Texy::XML; + const XHTML5 = 6; // Texy::HTML5 | Texy::XML; + + /** @var string input & output text encoding */ + public $encoding = 'utf-8'; + + /** @var array Texy! syntax configuration */ + public $allowed = array(); + + /** @var TRUE|FALSE|array Allowed HTML tags */ + public $allowedTags; + + /** @var TRUE|FALSE|array Allowed classes */ + public $allowedClasses = Texy::ALL; // all classes and id are allowed + + /** @var TRUE|FALSE|array Allowed inline CSS style */ + public $allowedStyles = Texy::ALL; // all inline styles are allowed + + /** @var int TAB width (for converting tabs to spaces) */ + public $tabWidth = 8; + + /** @var boolean Do obfuscate e-mail addresses? */ + public $obfuscateEmail = TRUE; + + /** @var array regexps to check URL schemes */ + public $urlSchemeFilters = NULL; // disable URL scheme filter + + /** @var bool Paragraph merging mode */ + public $mergeLines = TRUE; + + /** @var array Parsing summary */ + public $summary = array( + 'images' => array(), + 'links' => array(), + 'preload' => array(), + ); + + /** @var string Generated stylesheet */ + public $styleSheet = ''; + + /** @var array CSS classes for align modifiers */ + public $alignClasses = array( + 'left' => NULL, + 'right' => NULL, + 'center' => NULL, + 'justify' => NULL, + 'top' => NULL, + 'middle' => NULL, + 'bottom' => NULL, + ); + + /** @var bool remove soft hyphens (SHY)? */ + public $removeSoftHyphens = TRUE; + + /** @var mixed */ + public static $advertisingNotice = 'once'; + + /** @var string */ + public $nontextParagraph = 'div'; + + /** @var TexyScriptModule */ + public $scriptModule; + + /** @var TexyParagraphModule */ + public $paragraphModule; + + /** @var TexyHtmlModule */ + public $htmlModule; + + /** @var TexyImageModule */ + public $imageModule; + + /** @var TexyLinkModule */ + public $linkModule; + + /** @var TexyPhraseModule */ + public $phraseModule; + + /** @var TexyEmoticonModule */ + public $emoticonModule; + + /** @var TexyBlockModule */ + public $blockModule; + + /** @var TexyHeadingModule */ + public $headingModule; + + /** @var TexyHorizLineModule */ + public $horizLineModule; + + /** @var TexyBlockQuoteModule */ + public $blockQuoteModule; + + /** @var TexyListModule */ + public $listModule; + + /** @var TexyTableModule */ + public $tableModule; + + /** @var TexyFigureModule */ + public $figureModule; + + /** @var TexyTypographyModule */ + public $typographyModule; + + /** @var TexyLongWordsModule */ + public $longWordsModule; + + /** @var TexyHtmlOutputModule */ + public $htmlOutputModule; + + + /** + * Registered regexps and associated handlers for inline parsing. + * @var array of ('handler' => callback + * 'pattern' => regular expression) + */ + private $linePatterns = array(); + private $_linePatterns; + + /** + * Registered regexps and associated handlers for block parsing. + * @var array of ('handler' => callback + * 'pattern' => regular expression) + */ + private $blockPatterns = array(); + private $_blockPatterns; + + /** @var array */ + private $postHandlers = array(); + + /** @var TexyHtml DOM structure for parsed text */ + private $DOM; + + /** @var array Texy protect markup table */ + private $marks = array(); + + /** @var array for internal usage */ + public $_classes, $_styles; + + /** @var bool */ + private $processing; + + /** @var array of events and registered handlers */ + private $handlers = array(); + + /** + * DTD descriptor. + * $dtd[element][0] - allowed attributes (as array keys) + * $dtd[element][1] - allowed content for an element (content model) (as array keys) + * - array of allowed elements (as keys) + * - FALSE - empty element + * - 0 - special case for ins & del + * @var array + */ + public $dtd; + + /** @var array */ + private static $dtdCache; + + /** @var int HTML mode */ + private $mode; + + + /** DEPRECATED */ + public static $strictDTD; + public $cleaner; + public $xhtml; + + + + public function __construct() + { + // load all modules + $this->loadModules(); + + // DEPRECATED + if (self::$strictDTD !== NULL) { + $this->setOutputMode(self::$strictDTD ? self::XHTML1_STRICT : self::XHTML1_TRANSITIONAL); + } else { + $this->setOutputMode(self::XHTML1_TRANSITIONAL); + } + + // DEPRECATED + $this->cleaner = & $this->htmlOutputModule; + + // examples of link references ;-) + $link = new TexyLink('http://texy.info/'); + $link->modifier->title = 'The best text -> HTML converter and formatter'; + $link->label = 'Texy!'; + $this->linkModule->addReference('texy', $link); + + $link = new TexyLink('http://www.google.com/search?q=%s'); + $this->linkModule->addReference('google', $link); + + $link = new TexyLink('http://en.wikipedia.org/wiki/Special:Search?search=%s'); + $this->linkModule->addReference('wikipedia', $link); + } + + + + /** + * Set HTML/XHTML output mode (overwrites self::$allowedTags) + * @param int + * @return void + */ + public function setOutputMode($mode) + { + if (!in_array($mode, array(self::HTML4_TRANSITIONAL, self::HTML4_STRICT, + self::HTML5, self::XHTML1_TRANSITIONAL, self::XHTML1_STRICT, self::XHTML5), TRUE)) { + throw new InvalidArgumentException("Invalid mode."); + } + + if (!isset(self::$dtdCache[$mode])) { + require dirname(__FILE__) . '/libs/DTD.php'; + self::$dtdCache[$mode] = $dtd; + } + + $this->mode = $mode; + $this->dtd = self::$dtdCache[$mode]; + TexyHtml::$xhtml = (bool) ($mode & self::XML); // TODO: remove? + + // accept all valid HTML tags and attributes by default + $this->allowedTags = array(); + foreach ($this->dtd as $tag => $dtd) { + $this->allowedTags[$tag] = self::ALL; + } + } + + + + /** + * Get HTML/XHTML output mode + * @return int + */ + public function getOutputMode() + { + return $this->mode; + } + + + + /** + * Create array of all used modules ($this->modules). + * This array can be changed by overriding this method (by subclasses) + */ + protected function loadModules() + { + // line parsing + $this->scriptModule = new TexyScriptModule($this); + $this->htmlModule = new TexyHtmlModule($this); + $this->imageModule = new TexyImageModule($this); + $this->phraseModule = new TexyPhraseModule($this); + $this->linkModule = new TexyLinkModule($this); + $this->emoticonModule = new TexyEmoticonModule($this); + + // block parsing + $this->paragraphModule = new TexyParagraphModule($this); + $this->blockModule = new TexyBlockModule($this); + $this->figureModule = new TexyFigureModule($this); + $this->horizLineModule = new TexyHorizLineModule($this); + $this->blockQuoteModule = new TexyBlockQuoteModule($this); + $this->tableModule = new TexyTableModule($this); + $this->headingModule = new TexyHeadingModule($this); + $this->listModule = new TexyListModule($this); + + // post process + $this->typographyModule = new TexyTypographyModule($this); + $this->longWordsModule = new TexyLongWordsModule($this); + $this->htmlOutputModule = new TexyHtmlOutputModule($this); + } + + + + final public function registerLinePattern($handler, $pattern, $name, $againTest = NULL) + { + if (!is_callable($handler)) { + $able = is_callable($handler, TRUE, $textual); + throw new InvalidArgumentException("Handler '$textual' is not " . ($able ? 'callable.' : 'valid PHP callback.')); + } + + if (!isset($this->allowed[$name])) $this->allowed[$name] = TRUE; + + $this->linePatterns[$name] = array( + 'handler' => $handler, + 'pattern' => $pattern, + 'again' => $againTest, + ); + } + + + + final public function registerBlockPattern($handler, $pattern, $name) + { + if (!is_callable($handler)) { + $able = is_callable($handler, TRUE, $textual); + throw new InvalidArgumentException("Handler '$textual' is not " . ($able ? 'callable.' : 'valid PHP callback.')); + } + + // if (!preg_match('#(.)\^.*\$\\1[a-z]*#is', $pattern)) die("Texy: Not a block pattern $name"); + if (!isset($this->allowed[$name])) $this->allowed[$name] = TRUE; + + $this->blockPatterns[$name] = array( + 'handler' => $handler, + 'pattern' => $pattern . 'm', // force multiline + ); + } + + + + final public function registerPostLine($handler, $name) + { + if (!is_callable($handler)) { + $able = is_callable($handler, TRUE, $textual); + throw new InvalidArgumentException("Handler '$textual' is not " . ($able ? 'callable.' : 'valid PHP callback.')); + } + + if (!isset($this->allowed[$name])) $this->allowed[$name] = TRUE; + + $this->postHandlers[$name] = $handler; + } + + + + /** + * Converts document in Texy! to (X)HTML code. + * + * @param string input text + * @param bool is single line? + * @return string output HTML code + */ + public function process($text, $singleLine = FALSE) + { + if ($this->processing) { + throw new InvalidStateException('Processing is in progress yet.'); + } + + // initialization + $this->marks = array(); + $this->processing = TRUE; + + // speed-up + if (is_array($this->allowedClasses)) $this->_classes = array_flip($this->allowedClasses); + else $this->_classes = $this->allowedClasses; + + if (is_array($this->allowedStyles)) $this->_styles = array_flip($this->allowedStyles); + else $this->_styles = $this->allowedStyles; + + // convert to UTF-8 (and check source encoding) + $text = TexyUtf::toUtf($text, $this->encoding); + + if ($this->removeSoftHyphens) { + $text = str_replace("\xC2\xAD", '', $text); + } + + // standardize line endings and spaces + $text = self::normalize($text); + + // replace tabs with spaces + $this->tabWidth = max(1, (int) $this->tabWidth); + while (strpos($text, "\t") !== FALSE) { + $text = preg_replace_callback('#^(.*)\t#mU', array($this, 'tabCb'), $text); + } + + // user before handler + $this->invokeHandlers('beforeParse', array($this, & $text, $singleLine)); + + // select patterns + $this->_linePatterns = $this->linePatterns; + $this->_blockPatterns = $this->blockPatterns; + foreach ($this->_linePatterns as $name => $foo) { + if (empty($this->allowed[$name])) unset($this->_linePatterns[$name]); + } + foreach ($this->_blockPatterns as $name => $foo) { + if (empty($this->allowed[$name])) unset($this->_blockPatterns[$name]); + } + + // parse Texy! document into internal DOM structure + $this->DOM = TexyHtml::el(); + if ($singleLine) { + $this->DOM->parseLine($this, $text); + } else { + $this->DOM->parseBlock($this, $text); + } + + // user after handler + $this->invokeHandlers('afterParse', array($this, $this->DOM, $singleLine)); + + // converts internal DOM structure to final HTML code + $html = $this->DOM->toHtml($this); + + // this notice should remain + if (self::$advertisingNotice) { + $html .= "\n"; + if (self::$advertisingNotice === 'once') { + self::$advertisingNotice = FALSE; + } + } + + $this->processing = FALSE; + + return TexyUtf::utf2html($html, $this->encoding); + } + + + + /** + * Converts single line in Texy! to (X)HTML code. + * + * @param string input text + * @return string output HTML code + */ + public function processLine($text) + { + return $this->process($text, TRUE); + } + + + + /** + * Makes only typographic corrections. + * @param string input text (in encoding defined by Texy::$encoding) + * @return string output text (in UTF-8) + */ + public function processTypo($text) + { + // convert to UTF-8 (and check source encoding) + $text = TexyUtf::toUtf($text, $this->encoding); + + // standardize line endings and spaces + $text = self::normalize($text); + + $this->typographyModule->beforeParse($this, $text); + $text = $this->typographyModule->postLine($text, TRUE); + + if (!empty($this->allowed['longwords'])) { + $text = $this->longWordsModule->postLine($text); + } + + return TexyUtf::utf2html($text, $this->encoding); + } + + + + /** + * Converts DOM structure to pure text. + * @return string + */ + public function toText() + { + if (!$this->DOM) { + throw new InvalidStateException('Call $texy->process() first.'); + } + + return TexyUtf::utfTo($this->DOM->toText($this), $this->encoding); + } + + + + /** + * Converts internal string representation to final HTML code in UTF-8. + * @return string + */ + final public function stringToHtml($s) + { + // decode HTML entities to UTF-8 + $s = self::unescapeHtml($s); + + // line-postprocessing + $blocks = explode(self::CONTENT_BLOCK, $s); + foreach ($this->postHandlers as $name => $handler) { + if (empty($this->allowed[$name])) continue; + foreach ($blocks as $n => $s) { + if ($n % 2 === 0 && $s !== '') { + $blocks[$n] = call_user_func($handler, $s); + } + } + } + $s = implode(self::CONTENT_BLOCK, $blocks); + + // encode < > & + $s = self::escapeHtml($s); + + // replace protected marks + $s = $this->unProtect($s); + + // wellform and reformat HTML + $this->invokeHandlers('postProcess', array($this, & $s)); + + // unfreeze spaces + $s = self::unfreezeSpaces($s); + + return $s; + } + + + + /** + * Converts internal string representation to final HTML code in UTF-8. + * @return string + */ + final public function stringToText($s) + { + $save = $this->htmlOutputModule->lineWrap; + $this->htmlOutputModule->lineWrap = FALSE; + $s = $this->stringToHtml( $s ); + $this->htmlOutputModule->lineWrap = $save; + + // remove tags + $s = preg_replace('#<(script|style)(.*)#Uis', '', $s); + $s = strip_tags($s); + $s = preg_replace('#\n\s*\n\s*\n[\n\s]*\n#', "\n\n", $s); + + // entities -> chars + $s = self::unescapeHtml($s); + + // convert nbsp to normal space and remove shy + $s = strtr($s, array( + "\xC2\xAD" => '', // shy + "\xC2\xA0" => ' ', // nbsp + )); + + return $s; + } + + + + /** + * Add new event handler. + * + * @param string event name + * @param callback + * @return void + */ + final public function addHandler($event, $callback) + { + if (!is_callable($callback)) { + $able = is_callable($callback, TRUE, $textual); + throw new InvalidArgumentException("Handler '$textual' is not " . ($able ? 'callable.' : 'valid PHP callback.')); + } + + $this->handlers[$event][] = $callback; + } + + + + /** + * Invoke registered around-handlers. + * + * @param string event name + * @param TexyParser actual parser object + * @param array arguments passed into handler + * @return mixed + */ + final public function invokeAroundHandlers($event, $parser, $args) + { + if (!isset($this->handlers[$event])) return FALSE; + + $invocation = new TexyHandlerInvocation($this->handlers[$event], $parser, $args); + $res = $invocation->proceed(); + $invocation->free(); + return $res; + } + + + + /** + * Invoke registered after-handlers. + * + * @param string event name + * @param array arguments passed into handler + * @return void + */ + final public function invokeHandlers($event, $args) + { + if (!isset($this->handlers[$event])) return; + + foreach ($this->handlers[$event] as $handler) { + call_user_func_array($handler, $args); + } + } + + + + /** + * Translate all white spaces (\t \n \r space) to meta-spaces \x01-\x04. + * which are ignored by TexyHtmlOutputModule routine + * @param string + * @return string + */ + final public static function freezeSpaces($s) + { + return strtr($s, " \t\r\n", "\x01\x02\x03\x04"); + } + + + + /** + * Reverts meta-spaces back to normal spaces. + * @param string + * @return string + */ + final public static function unfreezeSpaces($s) + { + return strtr($s, "\x01\x02\x03\x04", " \t\r\n"); + } + + + + /** + * Removes special controls characters and normalizes line endings and spaces. + * @param string + * @return string + */ + final public static function normalize($s) + { + // standardize line endings to unix-like + $s = str_replace("\r\n", "\n", $s); // DOS + $s = strtr($s, "\r", "\n"); // Mac + + // remove special chars; leave \t + \n + $s = preg_replace('#[\x00-\x08\x0B-\x1F]+#', '', $s); + + // right trim + $s = preg_replace("#[\t ]+$#m", '', $s); + + // trailing spaces + $s = trim($s, "\n"); + + return $s; + } + + + + /** + * Converts to web safe characters [a-z0-9-] text. + * @param string + * @param string + * @return string + */ + final public static function webalize($s, $charlist = NULL) + { + $s = TexyUtf::utf2ascii($s); + $s = strtolower($s); + $s = preg_replace('#[^a-z0-9'.preg_quote($charlist, '#').']+#', '-', $s); + $s = trim($s, '-'); + return $s; + } + + + + /** + * Texy! version of htmlSpecialChars (much faster than htmlSpecialChars!). + * note: " is not encoded! + * @param string + * @return string + */ + final public static function escapeHtml($s) + { + return str_replace(array('&', '<', '>'), array('&', '<', '>'), $s); + } + + + + /** + * Texy! version of html_entity_decode (always UTF-8, much faster than original!). + * @param string + * @return string + */ + final public static function unescapeHtml($s) + { + if (strpos($s, '&') === FALSE) return $s; + return html_entity_decode($s, ENT_QUOTES, 'UTF-8'); + } + + + + /** + * Outdents text block. + * @param string + * @return string + */ + final public static function outdent($s) + { + $s = trim($s, "\n"); + $spaces = strspn($s, ' '); + if ($spaces) return preg_replace("#^ {1,$spaces}#m", '', $s); + return $s; + } + + + + /** + * Generate unique mark - useful for freezing (folding) some substrings. + * @param string any string to froze + * @param int Texy::CONTENT_* constant + * @return string internal mark + */ + final public function protect($child, $contentType) + { + if ($child==='') return ''; + + $key = $contentType + . strtr(base_convert(count($this->marks), 10, 8), '01234567', "\x18\x19\x1A\x1B\x1C\x1D\x1E\x1F") + . $contentType; + + $this->marks[$key] = $child; + + return $key; + } + + + + final public function unProtect($html) + { + return strtr($html, $this->marks); + } + + + + /** + * Filters bad URLs. + * @param string user URL + * @param string type: a-anchor, i-image, c-cite + * @return bool + */ + final public function checkURL($URL, $type) + { + // absolute URL with scheme? check scheme! + if (!empty($this->urlSchemeFilters[$type]) + && preg_match('#'.TEXY_URLSCHEME.'#A', $URL) + && !preg_match($this->urlSchemeFilters[$type], $URL)) + return FALSE; + + return TRUE; + } + + + + /** + * Is given URL relative? + * @param string URL + * @return bool + */ + final public static function isRelative($URL) + { + // check for scheme, or absolute path, or absolute URL + return !preg_match('#'.TEXY_URLSCHEME.'|[\#/?]#A', $URL); + } + + + + /** + * Prepends root to URL, if possible. + * @param string URL + * @param string root + * @return string + */ + final public static function prependRoot($URL, $root) + { + if ($root == NULL || !self::isRelative($URL)) return $URL; + return rtrim($root, '/\\') . '/' . $URL; + } + + + + final public function getLinePatterns() + { + return $this->_linePatterns; + } + + + + final public function getBlockPatterns() + { + return $this->_blockPatterns; + } + + + + final public function getDOM() + { + return $this->DOM; + } + + + + private function tabCb($m) + { + return $m[1] . str_repeat(' ', $this->tabWidth - strlen($m[1]) % $this->tabWidth); + } + + + + /** + * PHP garbage collector helper. + */ + final public function free() + { + if (version_compare(PHP_VERSION , '5.3', '<')) { + foreach (array_keys(get_object_vars($this)) as $key) { + $this->$key = NULL; + } + } + } + + + + final public function __clone() + { + throw new NotSupportedException('Clone is not supported.'); + } + +} diff --git a/apigen/libs/TokenReflection/LICENSE b/apigen/libs/TokenReflection/LICENSE new file mode 100644 index 00000000000..f9030f8e0a5 --- /dev/null +++ b/apigen/libs/TokenReflection/LICENSE @@ -0,0 +1,28 @@ +PHP Token Reflection +Copyright (c) 2011-2012, Ondřej Nešpor, Jaroslav Hanslík. +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * The names of authors and contributors may not be used to endorse or + promote products derived from this software without specific prior + written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/apigen/libs/TokenReflection/TokenReflection/Broker.php b/apigen/libs/TokenReflection/TokenReflection/Broker.php new file mode 100644 index 00000000000..0276e3fadde --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/Broker.php @@ -0,0 +1,542 @@ +cache = array( + self::CACHE_NAMESPACE => array(), + self::CACHE_CLASS => array(), + self::CACHE_CONSTANT => array(), + self::CACHE_FUNCTION => array() + ); + + $this->options = $options; + + $this->backend = $backend + ->setBroker($this) + ->setStoringTokenStreams((bool) ($options & self::OPTION_SAVE_TOKEN_STREAM)); + } + + /** + * Returns broker/parser options. + * + * @return integer + */ + public function getOptions() + { + return $this->options; + } + + /** + * Returns if a particular option setting is set. + * + * @param integer $option Option setting + * @return boolean + */ + public function isOptionSet($option) + { + return (bool) ($this->options & $option); + } + + /** + * Parses a string with the PHP source code using the given file name and returns the appropriate reflection object. + * + * @param string $source PHP source code + * @param string $fileName Used file name + * @param boolean $returnReflectionFile Returns the appropriate \TokenReflection\ReflectionFile instance(s) + * @return boolean|\TokenReflection\ReflectionFile + */ + public function processString($source, $fileName, $returnReflectionFile = false) + { + if ($this->backend->isFileProcessed($fileName)) { + $tokens = $this->backend->getFileTokens($fileName); + } else { + $tokens = new Stream\StringStream($source, $fileName); + } + + $reflectionFile = new ReflectionFile($tokens, $this); + if (!$this->backend->isFileProcessed($fileName)) { + $this->backend->addFile($tokens, $reflectionFile); + + // Clear the cache - leave only tokenized reflections + foreach ($this->cache as $type => $cached) { + if (!empty($cached)) { + $this->cache[$type] = array_filter($cached, function(IReflection $reflection) { + return $reflection->isTokenized(); + }); + } + } + } + + return $returnReflectionFile ? $reflectionFile : true; + } + + /** + * Parses a file and returns the appropriate reflection object. + * + * @param string $fileName Filename + * @param boolean $returnReflectionFile Returns the appropriate \TokenReflection\ReflectionFile instance(s) + * @return boolean|\TokenReflection\ReflectionFile + * @throws \TokenReflection\Exception\BrokerException If the file could not be processed. + */ + public function processFile($fileName, $returnReflectionFile = false) + { + try { + if ($this->backend->isFileProcessed($fileName)) { + $tokens = $this->backend->getFileTokens($fileName); + } else { + $tokens = new Stream\FileStream($fileName); + } + + $reflectionFile = new ReflectionFile($tokens, $this); + if (!$this->backend->isFileProcessed($fileName)) { + $this->backend->addFile($tokens, $reflectionFile); + + // Clear the cache - leave only tokenized reflections + foreach ($this->cache as $type => $cached) { + if (!empty($cached)) { + $this->cache[$type] = array_filter($cached, function(IReflection $reflection) { + return $reflection->isTokenized(); + }); + } + } + } + + return $returnReflectionFile ? $reflectionFile : true; + } catch (Exception\ParseException $e) { + throw $e; + } catch (Exception\StreamException $e) { + throw new Exception\BrokerException($this, 'Could not process the file.', 0, $e); + } + } + + /** + * Processes a PHAR archive. + * + * @param string $fileName Archive filename. + * @param boolean $returnReflectionFile Returns the appropriate \TokenReflection\ReflectionFile instance(s) + * @return boolean|array of \TokenReflection\ReflectionFile + * @throws \TokenReflection\Exception\BrokerException If the PHAR PHP extension is not loaded. + * @throws \TokenReflection\Exception\BrokerException If the given archive could not be read. + * @throws \TokenReflection\Exception\BrokerException If the given archive could not be processed. + */ + public function processPhar($fileName, $returnReflectionFile = false) + { + if (!is_file($fileName)) { + throw new Exception\BrokerException($this, 'File does not exist.', Exception\BrokerException::DOES_NOT_EXIST); + } + + if (!extension_loaded('Phar')) { + throw new Exception\BrokerException($this, 'The PHAR PHP extension is not loaded.', Exception\BrokerException::PHP_EXT_MISSING); + } + + try { + $result = array(); + foreach (new RecursiveIteratorIterator(new \Phar($fileName)) as $entry) { + if ($entry->isFile()) { + $result[$entry->getPathName()] = $this->processFile($entry->getPathName(), $returnReflectionFile); + } + } + + return $returnReflectionFile ? $result : true; + } catch (Exception\ParseException $e) { + throw $e; + } catch (Exception\StreamException $e) { + throw new Exception\BrokerException($this, 'Could not process the archive.', 0, $e); + } + } + + /** + * Processes recursively a directory and returns an array of file reflection objects. + * + * @param string $path Directora path + * @param string|array $filters Filename filters + * @param boolean $returnReflectionFile Returns the appropriate \TokenReflection\ReflectionFile instance(s) + * @return boolean|array of \TokenReflection\ReflectionFile + * @throws \TokenReflection\Exception\BrokerException If the given directory does not exist. + * @throws \TokenReflection\Exception\BrokerException If the given directory could not be processed. + */ + public function processDirectory($path, $filters = array(), $returnReflectionFile = false) + { + $realPath = realpath($path); + if (!is_dir($realPath)) { + throw new Exception\BrokerException($this, 'File does not exist.', Exception\BrokerException::DOES_NOT_EXIST); + } + + try { + $result = array(); + foreach (new RecursiveIteratorIterator(new RecursiveDirectoryIterator($realPath)) as $entry) { + if ($entry->isFile()) { + $process = empty($filters); + if (!$process) { + foreach ((array) $filters as $filter) { + $whitelisting = '!' !== $filter{0}; + if (fnmatch($whitelisting ? $filter : substr($filter, 1), $entry->getPathName(), FNM_NOESCAPE)) { + $process = $whitelisting; + } + } + } + + if ($process) { + $result[$entry->getPathName()] = $this->processFile($entry->getPathName(), $returnReflectionFile); + } + } + } + + return $returnReflectionFile ? $result : true; + } catch (Exception\ParseException $e) { + throw $e; + } catch (Exception\StreamException $e) { + throw new Exception\BrokerException($this, 'Could not process the directory.', 0, $e); + } + } + + /** + * Process a file, directory or a PHAR archive. + * + * @param string $path Path + * @param boolean $returnReflectionFile Returns the appropriate \TokenReflection\ReflectionFile instance(s) + * @return boolean|array|\TokenReflection\ReflectionFile + * @throws \TokenReflection\Exception\BrokerException If the target does not exist. + */ + public function process($path, $returnReflectionFile = false) + { + if (is_dir($path)) { + return $this->processDirectory($path, array(), $returnReflectionFile); + } elseif (is_file($path)) { + if (preg_match('~\\.phar(?:$|\\.)~i', $path)) { + return $this->processPhar($path, $returnReflectionFile); + } + + return $this->processFile($path, $returnReflectionFile); + } else { + throw new Exception\BrokerException($this, 'The given directory/file does not exist.', Exception\BrokerException::DOES_NOT_EXIST); + } + } + + /** + * Returns if the broker contains a namespace of the given name. + * + * @param string $namespaceName Namespace name + * @return boolean + */ + public function hasNamespace($namespaceName) + { + return isset($this->cache[self::CACHE_NAMESPACE][$namespaceName]) || $this->backend->hasNamespace($namespaceName); + } + + /** + * Returns a reflection object of the given namespace. + * + * @param string $namespaceName Namespace name + * @return \TokenReflection\ReflectionNamespace|null + */ + public function getNamespace($namespaceName) + { + $namespaceName = ltrim($namespaceName, '\\'); + + if (isset($this->cache[self::CACHE_NAMESPACE][$namespaceName])) { + return $this->cache[self::CACHE_NAMESPACE][$namespaceName]; + } + + $namespace = $this->backend->getNamespace($namespaceName); + if (null !== $namespace) { + $this->cache[self::CACHE_NAMESPACE][$namespaceName] = $namespace; + } + + return $namespace; + } + + /** + * Returns if the broker contains a class of the given name. + * + * @param string $className Class name + * @return boolean + */ + public function hasClass($className) + { + return isset($this->cache[self::CACHE_CLASS][$className]) || $this->backend->hasClass($className); + } + + /** + * Returns a reflection object of the given class (FQN expected). + * + * @param string $className CLass bame + * @return \TokenReflection\ReflectionClass|null + */ + public function getClass($className) + { + $className = ltrim($className, '\\'); + + if (isset($this->cache[self::CACHE_CLASS][$className])) { + return $this->cache[self::CACHE_CLASS][$className]; + } + + $this->cache[self::CACHE_CLASS][$className] = $this->backend->getClass($className); + return $this->cache[self::CACHE_CLASS][$className]; + } + + /** + * Returns all classes from all namespaces. + * + * @param integer $types Returned class types (multiple values may be OR-ed) + * @return array + */ + public function getClasses($types = Broker\Backend::TOKENIZED_CLASSES) + { + return $this->backend->getClasses($types); + } + + /** + * Returns if the broker contains a constant of the given name. + * + * @param string $constantName Constant name + * @return boolean + */ + public function hasConstant($constantName) + { + return isset($this->cache[self::CACHE_CONSTANT][$constantName]) || $this->backend->hasConstant($constantName); + } + + /** + * Returns a reflection object of a constant (FQN expected). + * + * @param string $constantName Constant name + * @return \TokenReflection\ReflectionConstant|null + */ + public function getConstant($constantName) + { + $constantName = ltrim($constantName, '\\'); + + if (isset($this->cache[self::CACHE_CONSTANT][$constantName])) { + return $this->cache[self::CACHE_CONSTANT][$constantName]; + } + + if ($constant = $this->backend->getConstant($constantName)) { + $this->cache[self::CACHE_CONSTANT][$constantName] = $constant; + } + + return $constant; + } + + /** + * Returns all constants from all namespaces. + * + * @return array + */ + public function getConstants() + { + return $this->backend->getConstants(); + } + + /** + * Returns if the broker contains a function of the given name. + * + * @param string $functionName Function name + * @return boolean + */ + public function hasFunction($functionName) + { + return isset($this->cache[self::CACHE_FUNCTION][$functionName]) || $this->backend->hasFunction($functionName); + } + + /** + * Returns a reflection object of a function (FQN expected). + * + * @param string $functionName Function name + * @return \TokenReflection\ReflectionFunction|null + */ + public function getFunction($functionName) + { + $functionName = ltrim($functionName, '\\'); + + if (isset($this->cache[self::CACHE_FUNCTION][$functionName])) { + return $this->cache[self::CACHE_FUNCTION][$functionName]; + } + + if ($function = $this->backend->getFunction($functionName)) { + $this->cache[self::CACHE_FUNCTION][$functionName] = $function; + } + + return $function; + } + + /** + * Returns all functions from all namespaces. + * + * @return array + */ + public function getFunctions() + { + return $this->backend->getFunctions(); + } + + /** + * Returns if the broker contains a file reflection of the given name. + * + * @param string $fileName File name + * @return boolean + */ + public function hasFile($fileName) + { + return $this->backend->hasFile($fileName); + } + + /** + * Returns a reflection object of a file. + * + * @param string $fileName File name + * @return \TokenReflection\ReflectionFile|null + */ + public function getFile($fileName) + { + return $this->backend->getFile($fileName); + } + + /** + * Returns all processed files reflections. + * + * @return array + */ + public function getFiles() + { + return $this->backend->getFiles(); + } + + /** + * Returns an array of tokens from a processed file. + * + * @param string $fileName File name + * @return \TokenReflection\Stream\StreamBase|null + */ + public function getFileTokens($fileName) + { + return $this->backend->getFileTokens($fileName); + } + + /** + * Returns a real system path. + * + * @param string $path Source path + * @return string|boolean + */ + public static function getRealPath($path) + { + if (0 === strpos($path, 'phar://')) { + return is_file($path) || is_dir($path) ? $path : false; + } else { + return realpath($path); + } + } +} diff --git a/apigen/libs/TokenReflection/TokenReflection/Broker/Backend.php b/apigen/libs/TokenReflection/TokenReflection/Broker/Backend.php new file mode 100644 index 00000000000..2c36a306d69 --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/Broker/Backend.php @@ -0,0 +1,212 @@ +files[$fileName]); + } + + /** + * Returns a file reflection. + * + * @param string $fileName File name + * @return \TokenReflection\ReflectionFile + * @throws \TokenReflection\Exception\BrokerException If the requested file has not been processed + */ + public function getFile($fileName) + { + if (!isset($this->files[$fileName])) { + throw new Exception\BrokerException($this->getBroker(), sprintf('File "%s" has not been processed.', $fileName), Exception\BrokerException::DOES_NOT_EXIST); + } + + return $this->files[$fileName]; + } + + /** + * Returns file reflections. + * + * @return array + */ + public function getFiles() + { + return $this->files; + } + + /** + * Returns if there was such namespace processed (FQN expected). + * + * @param string $namespaceName Namespace name + * @return boolean + */ + public function hasNamespace($namespaceName) + { + return isset($this->namespaces[ltrim($namespaceName, '\\')]); + } + + /** + * Returns a reflection object of the given namespace. + * + * @param string $namespaceName Namespace name + * @return \TokenReflection\IReflectionNamespace + * @throws \TokenReflection\Exception\BrokerException If the requested namespace does not exist. + */ + public function getNamespace($namespaceName) + { + if (!isset($this->namespaces[TokenReflection\ReflectionNamespace::NO_NAMESPACE_NAME])) { + $this->namespaces[TokenReflection\ReflectionNamespace::NO_NAMESPACE_NAME] = new TokenReflection\ReflectionNamespace(TokenReflection\ReflectionNamespace::NO_NAMESPACE_NAME, $this->broker); + } + + $namespaceName = ltrim($namespaceName, '\\'); + if (!isset($this->namespaces[$namespaceName])) { + throw new Exception\BrokerException($this->getBroker(), sprintf('Namespace %s does not exist.', $namespaceName), Exception\BrokerException::DOES_NOT_EXIST); + } + + return $this->namespaces[$namespaceName]; + } + + /** + * Returns all present namespaces. + * + * @return array + */ + public function getNamespaces() + { + return $this->namespaces; + } + + /** + * Returns if there was such class processed (FQN expected). + * + * @param string $className Class name + * @return boolean + */ + public function hasClass($className) + { + $className = ltrim($className, '\\'); + if ($pos = strrpos($className, '\\')) { + $namespace = substr($className, 0, $pos); + + if (!isset($this->namespaces[$namespace])) { + return false; + } + + $namespace = $this->getNamespace($namespace); + $className = substr($className, $pos + 1); + } else { + $namespace = $this->getNamespace(TokenReflection\ReflectionNamespace::NO_NAMESPACE_NAME); + } + + return $namespace->hasClass($className); + } + + /** + * Returns a reflection object of the given class (FQN expected). + * + * @param string $className CLass bame + * @return \TokenReflection\IReflectionClass + */ + public function getClass($className) + { + if (empty($this->declaredClasses)) { + $this->declaredClasses = array_flip(array_merge(get_declared_classes(), get_declared_interfaces())); + } + + $className = ltrim($className, '\\'); + try { + $ns = $this->getNamespace( + ($boundary = strrpos($className, '\\')) + // Class within a namespace + ? substr($className, 0, $boundary) + // Class without a namespace + : TokenReflection\ReflectionNamespace::NO_NAMESPACE_NAME + ); + + return $ns->getClass($className); + } catch (Exception\BaseException $e) { + if (isset($this->declaredClasses[$className])) { + $reflection = new Php\ReflectionClass($className, $this->broker); + if ($reflection->isInternal()) { + return $reflection; + } + } + + return new Dummy\ReflectionClass($className, $this->broker); + } + } + + /** + * Returns all classes from all namespaces. + * + * @param integer $type Returned class types (multiple values may be OR-ed) + * @return array + */ + public function getClasses($type = self::TOKENIZED_CLASSES) + { + if (null === $this->allClasses) { + $this->allClasses = $this->parseClassLists(); + } + + $result = array(); + foreach ($this->allClasses as $classType => $classes) { + if ($type & $classType) { + $result = array_merge($result, $classes); + } + } + return $result; + } + + /** + * Returns if there was such constant processed (FQN expected). + * + * @param string $constantName Constant name + * @return boolean + */ + public function hasConstant($constantName) + { + $constantName = ltrim($constantName, '\\'); + + if ($pos = strpos($constantName, '::')) { + $className = substr($constantName, 0, $pos); + $constantName = substr($constantName, $pos + 2); + + if (!$this->hasClass($className)) { + return false; + } + + $parent = $this->getClass($className); + } else { + if ($pos = strrpos($constantName, '\\')) { + $namespace = substr($constantName, 0, $pos); + if (!$this->hasNamespace($namespace)) { + return false; + } + + $parent = $this->getNamespace($namespace); + $constantName = substr($constantName, $pos + 1); + } else { + $parent = $this->getNamespace(TokenReflection\ReflectionNamespace::NO_NAMESPACE_NAME); + } + } + + return $parent->hasConstant($constantName); + } + + /** + * Returns a reflection object of a constant (FQN expected). + * + * @param string $constantName Constant name + * @return \TokenReflection\IReflectionConstant + * @throws \TokenReflection\Exception\RuntimeException If the requested constant does not exist. + */ + public function getConstant($constantName) + { + static $declared = array(); + if (empty($declared)) { + $declared = get_defined_constants(); + } + + if ($boundary = strpos($constantName, '::')) { + // Class constant + $className = substr($constantName, 0, $boundary); + $constantName = substr($constantName, $boundary + 2); + + return $this->getClass($className)->getConstantReflection($constantName); + } + + try { + $constantName = ltrim($constantName, '\\'); + if ($boundary = strrpos($constantName, '\\')) { + $ns = $this->getNamespace(substr($constantName, 0, $boundary)); + $constantName = substr($constantName, $boundary + 1); + } else { + $ns = $this->getNamespace(TokenReflection\ReflectionNamespace::NO_NAMESPACE_NAME); + } + + return $ns->getConstant($constantName); + } catch (Exception\BaseException $e) { + if (isset($declared[$constantName])) { + $reflection = new Php\ReflectionConstant($constantName, $declared[$constantName], $this->broker); + if ($reflection->isInternal()) { + return $reflection; + } + } + + throw new Exception\BrokerException($this->getBroker(), sprintf('Constant %s does not exist.', $constantName), Exception\BrokerException::DOES_NOT_EXIST); + } + } + + /** + * Returns all constants from all namespaces. + * + * @return array + */ + public function getConstants() + { + if (null === $this->allConstants) { + $this->allConstants = array(); + foreach ($this->namespaces as $namespace) { + foreach ($namespace->getConstants() as $constant) { + $this->allConstants[$constant->getName()] = $constant; + } + } + } + + return $this->allConstants; + } + + /** + * Returns if there was such function processed (FQN expected). + * + * @param string $functionName Function name + * @return boolean + */ + public function hasFunction($functionName) + { + $functionName = ltrim($functionName, '\\'); + if ($pos = strrpos($functionName, '\\')) { + $namespace = substr($functionName, 0, $pos); + if (!isset($this->namespaces[$namespace])) { + return false; + } + + $namespace = $this->getNamespace($namespace); + $functionName = substr($functionName, $pos + 1); + } else { + $namespace = $this->getNamespace(TokenReflection\ReflectionNamespace::NO_NAMESPACE_NAME); + } + + return $namespace->hasFunction($functionName); + } + + /** + * Returns a reflection object of a function (FQN expected). + * + * @param string $functionName Function name + * @return \TokenReflection\IReflectionFunction + * @throws \TokenReflection\Exception\RuntimeException If the requested function does not exist. + */ + public function getFunction($functionName) + { + static $declared = array(); + if (empty($declared)) { + $functions = get_defined_functions(); + $declared = array_flip($functions['internal']); + } + + $functionName = ltrim($functionName, '\\'); + try { + $ns = $this->getNamespace( + ($boundary = strrpos($functionName, '\\')) + // Function within a namespace + ? substr($functionName, 0, $boundary) + // Function wihout a namespace + : TokenReflection\ReflectionNamespace::NO_NAMESPACE_NAME + ); + + return $ns->getFunction($functionName); + } catch (Exception\BaseException $e) { + if (isset($declared[$functionName])) { + return new Php\ReflectionFunction($functionName, $this->broker); + } + + throw new Exception\BrokerException($this->getBroker(), sprintf('Function %s does not exist.', $functionName), Exception\BrokerException::DOES_NOT_EXIST); + } + } + + /** + * Returns all functions from all namespaces. + * + * @return array + */ + public function getFunctions() + { + if (null === $this->allFunctions) { + $this->allFunctions = array(); + foreach ($this->namespaces as $namespace) { + foreach ($namespace->getFunctions() as $function) { + $this->allFunctions[$function->getName()] = $function; + } + } + } + + return $this->allFunctions; + } + + /** + * Returns if the given file was already processed. + * + * @param string $fileName File name + * @return boolean + */ + public function isFileProcessed($fileName) + { + return isset($this->tokenStreams[Broker::getRealPath($fileName)]); + } + + /** + * Returns an array of tokens for a particular file. + * + * @param string $fileName File name + * @return \TokenReflection\Stream\StreamBase + * @throws \TokenReflection\Exception\BrokerException If the requested file was not processed. + */ + public function getFileTokens($fileName) + { + $realName = Broker::getRealPath($fileName); + if (!isset($this->tokenStreams[$realName])) { + throw new Exception\BrokerException($this->getBroker(), sprintf('File "%s" was not processed yet.', $fileName), Exception\BrokerException::DOES_NOT_EXIST); + } + + return true === $this->tokenStreams[$realName] ? new FileStream($realName) : $this->tokenStreams[$realName]; + } + + /** + * Adds a file to the backend storage. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token stream + * @param \TokenReflection\ReflectionFile $file File reflection object + * @return \TokenReflection\Broker\Backend\Memory + */ + public function addFile(TokenReflection\Stream\StreamBase $tokenStream, TokenReflection\ReflectionFile $file) + { + $this->tokenStreams[$file->getName()] = $this->storingTokenStreams ? $tokenStream : true; + $this->files[$file->getName()] = $file; + + $errors = array(); + + foreach ($file->getNamespaces() as $fileNamespace) { + try { + $namespaceName = $fileNamespace->getName(); + if (!isset($this->namespaces[$namespaceName])) { + $this->namespaces[$namespaceName] = new TokenReflection\ReflectionNamespace($namespaceName, $file->getBroker()); + } + + $this->namespaces[$namespaceName]->addFileNamespace($fileNamespace); + } catch (Exception\FileProcessingException $e) { + $errors = array_merge($errors, $e->getReasons()); + } catch (\Exception $e) { + echo $e->getTraceAsString(); + die($e->getMessage()); + } + } + + // Reset all-*-cache + $this->allClasses = null; + $this->allFunctions = null; + $this->allConstants = null; + + if (!empty($errors)) { + throw new Exception\FileProcessingException($errors, $file); + } + + return $this; + } + + /** + * Sets the reflection broker instance. + * + * @param \TokenReflection\Broker $broker Reflection broker + * @return \TokenReflection\Broker\Backend\Memory + */ + public function setBroker(Broker $broker) + { + $this->broker = $broker; + return $this; + } + + /** + * Returns the reflection broker instance. + * + * @return \TokenReflection\Broker $broker Reflection broker + */ + public function getBroker() + { + return $this->broker; + } + + /** + * Sets if token streams are stored in the backend. + * + * @param boolean $store + * @return \TokenReflection\Broker\Backend + */ + public function setStoringTokenStreams($store) + { + $this->storingTokenStreams = (bool) $store; + return $this; + } + + /** + * Returns if token streams are stored in the backend. + * + * @return boolean + */ + public function getStoringTokenStreams() + { + return $this->storingTokenStreams; + } + + /** + * Prepares and returns used class lists. + * + * @return array + */ + protected function parseClassLists() + { + // Initialize the all-classes-cache + $allClasses = array( + self::TOKENIZED_CLASSES => array(), + self::INTERNAL_CLASSES => array(), + self::NONEXISTENT_CLASSES => array() + ); + + foreach ($this->namespaces as $namespace) { + foreach ($namespace->getClasses() as $class) { + $allClasses[self::TOKENIZED_CLASSES][$class->getName()] = $class; + } + } + + foreach ($allClasses[self::TOKENIZED_CLASSES] as $className => $class) { + foreach (array_merge($class->getParentClasses(), $class->getInterfaces()) as $parent) { + if ($parent->isInternal()) { + $allClasses[self::INTERNAL_CLASSES][$parent->getName()] = $parent; + } elseif (!$parent->isTokenized()) { + $allClasses[self::NONEXISTENT_CLASSES][$parent->getName()] = $parent; + } + } + } + + return $allClasses; + } +} diff --git a/apigen/libs/TokenReflection/TokenReflection/Dummy/ReflectionClass.php b/apigen/libs/TokenReflection/TokenReflection/Dummy/ReflectionClass.php new file mode 100644 index 00000000000..d8322a7e85b --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/Dummy/ReflectionClass.php @@ -0,0 +1,1091 @@ +name = ltrim($className, '\\'); + $this->broker = $broker; + } + + /** + * Returns the name (FQN). + * + * @return string + */ + public function getName() + { + return $this->name; + } + + /** + * Returns an element pretty (docblock compatible) name. + * + * @return string + */ + public function getPrettyName() + { + return $this->name; + } + + /** + * Returns the unqualified name (UQN). + * + * @return string + */ + public function getShortName() + { + $pos = strrpos($this->name, '\\'); + return false === $pos ? $this->name : substr($this->name, $pos + 1); + } + + /** + * Returns the namespace name. + * + * @return string + */ + public function getNamespaceName() + { + $pos = strrpos($this->name, '\\'); + return false === $pos ? '' : substr($this->name, 0, $pos); + } + + /** + * Returns if the class is defined within a namespace. + * + * @return boolean + */ + public function inNamespace() + { + return false !== strrpos($this->name, '\\'); + } + + /** + * Returns imported namespaces and aliases from the declaring namespace. + * + * @return array + */ + public function getNamespaceAliases() + { + return array(); + } + + /** + * Returns the PHP extension reflection. + * + * @return null + */ + public function getExtension() + { + return null; + } + + /** + * Returns the PHP extension name. + * + * @return boolean + */ + public function getExtensionName() + { + return false; + } + + /** + * Returns the file name the reflection object is defined in. + * + * @return null + */ + public function getFileName() + { + return null; + } + + /** + * Returns a file reflection. + * + * @return \TokenReflection\ReflectionFile + * @throws \TokenReflection\Exception\RuntimeException If the file is not stored inside the broker + */ + public function getFileReflection() + { + throw new Exception\BrokerException($this->getBroker(), sprintf('Class was not parsed from a file', $this->getName()), Exception\BrokerException::UNSUPPORTED); + } + + /** + * Returns the definition start line number in the file. + * + * @return null + */ + public function getStartLine() + { + return null; + } + + /** + * Returns the definition end line number in the file. + * + * @return null + */ + public function getEndLine() + { + return null; + } + + /** + * Returns the appropriate docblock definition. + * + * @return boolean + */ + public function getDocComment() + { + return false; + } + + /** + * Checks if there is a particular annotation. + * + * @param string $name Annotation name + * @return boolean + */ + public function hasAnnotation($name) + { + return false; + } + + /** + * Returns a particular annotation value. + * + * @param string $name Annotation name + * @return null + */ + public function getAnnotation($name) + { + return null; + } + + /** + * Returns parsed docblock. + * + * @return array + */ + public function getAnnotations() + { + return array(); + } + + /** + * Returns modifiers. + * + * @return integer + */ + public function getModifiers() + { + return 0; + } + + /** + * Returns if the class is abstract. + * + * @return boolean + */ + public function isAbstract() + { + return false; + } + + /** + * Returns if the class is final. + * + * @return boolean + */ + public function isFinal() + { + return false; + } + + /** + * Returns if the class is an interface. + * + * @return boolean + */ + public function isInterface() + { + return false; + } + + /** + * Returns if the class is an exception or its descendant. + * + * @return boolean + */ + public function isException() + { + return false; + } + + /** + * Returns if it is possible to create an instance of this class. + * + * @return boolean + */ + public function isInstantiable() + { + return false; + } + + /** + * Returns traits used by this class. + * + * @return array + */ + public function getTraits() + { + return array(); + } + + /** + * Returns traits used by this class and not its parents. + * + * @return array + */ + public function getOwnTraits() + { + return array(); + } + + /** + * Returns names of used traits. + * + * @return array + */ + public function getTraitNames() + { + return array(); + } + + /** + * Returns traits used by this class and not its parents. + * + * @return array + */ + public function getOwnTraitNames() + { + return array(); + } + + /** + * Returns method aliases from traits. + * + * @return array + */ + public function getTraitAliases() + { + return array(); + } + + /** + * Returns if the class is a trait. + * + * @return boolean + */ + public function isTrait() + { + return false; + } + + /** + * Returns if the class uses a particular trait. + * + * @param \ReflectionClass|\TokenReflection\IReflectionClass|string $trait Trait reflection or name + * @return boolean + */ + public function usesTrait($trait) + { + return false; + } + + /** + * Returns if objects of this class are cloneable. + * + * Introduced in PHP 5.4. + * + * @return boolean + * @see http://svn.php.net/viewvc/php/php-src/trunk/ext/reflection/php_reflection.c?revision=307971&view=markup#l4059 + */ + public function isCloneable() + { + return false; + } + + /** + * Returns if the class is iterateable. + * + * Returns true if the class implements the Traversable interface. + * + * @return boolean + */ + public function isIterateable() + { + return false; + } + + /** + * Returns if the reflection object is internal. + * + * @return boolean + */ + public function isInternal() + { + return false; + } + + /** + * Returns if the reflection object is user defined. + * + * @return boolean + */ + public function isUserDefined() + { + return false; + } + + /** + * Returns if the current reflection comes from a tokenized source. + * + * @return boolean + */ + public function isTokenized() + { + return false; + } + + /** + * Returns if the current class is a subclass of the given class. + * + * @param string|object $class Class name or reflection object + * @return boolean + */ + public function isSubclassOf($class) + { + return false; + } + + /** + * Returns the parent class reflection. + * + * @return null + */ + public function getParentClass() + { + return false; + } + + /** + * Returns the parent classes reflections. + * + * @return array + */ + public function getParentClasses() + { + return array(); + } + + /** + * Returns the parent classes names. + * + * @return array + */ + public function getParentClassNameList() + { + return array(); + } + + /** + * Returns the parent class reflection. + * + * @return null + */ + public function getParentClassName() + { + return null; + } + + /** + * Returns if the class implements the given interface. + * + * @param string|object $interface Interface name or reflection object + * @return boolean + * @throws \TokenReflection\Exception\RuntimeException If the provided parameter is not an interface. + */ + public function implementsInterface($interface) + { + if (is_object($interface)) { + if (!$interface instanceof IReflectionClass) { + throw new Exception\RuntimeException(sprintf('Parameter must be a string or an instance of class reflection, "%s" provided.', get_class($interface)), Exception\RuntimeException::INVALID_ARGUMENT, $this); + } + + $interfaceName = $interface->getName(); + + if (!$interface->isInterface()) { + throw new Exception\RuntimeException(sprintf('"%s" is not an interface.', $interfaceName), Exception\RuntimeException::INVALID_ARGUMENT, $this); + } + } + + // Only validation, always returns false + return false; + } + + /** + * Returns interface reflections. + * + * @return array + */ + public function getInterfaces() + { + return array(); + } + + /** + * Returns interface names. + * + * @return array + */ + public function getInterfaceNames() + { + return array(); + } + + /** + * Returns interfaces implemented by this class, not its parents. + * + * @return array + */ + public function getOwnInterfaces() + { + return array(); + } + + /** + * Returns names of interfaces implemented by this class, not its parents. + * + * @return array + */ + public function getOwnInterfaceNames() + { + return array(); + } + + /** + * Returns the class constructor reflection. + * + * @return null + */ + public function getConstructor() + { + return null; + } + + /** + * Returns the class desctructor reflection. + * + * @return null + */ + public function getDestructor() + { + return null; + } + + /** + * Returns if the class implements the given method. + * + * @param string $name Method name + * @return boolean + */ + public function hasMethod($name) + { + return false; + } + + /** + * Returns a method reflection. + * + * @param string $name Method name + * @throws \TokenReflection\Exception\RuntimeException If the requested method does not exist. + */ + public function getMethod($name) + { + throw new Exception\RuntimeException(sprintf('There is no method "%s".', $name), Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + /** + * Returns method reflections. + * + * @param integer $filter Methods filter + * @return array + */ + public function getMethods($filter = null) + { + return array(); + } + + /** + * Returns if the class implements (and not its parents) the given method. + * + * @param string $name Method name + * @return boolean + */ + public function hasOwnMethod($name) + { + return false; + } + + /** + * Returns methods declared by this class, not its parents. + * + * @param integer $filter Methods filter + * @return array + */ + public function getOwnMethods($filter = null) + { + return array(); + } + + /** + * Returns if the class imports the given method from traits. + * + * @param string $name Method name + * @return boolean + */ + public function hasTraitMethod($name) + { + return false; + } + + /** + * Returns method reflections imported from traits. + * + * @param integer $filter Methods filter + * @return array + */ + public function getTraitMethods($filter = null) + { + return array(); + } + + /** + * Returns if the class defines the given constant. + * + * @param string $name Constant name. + * @return boolean + */ + public function hasConstant($name) + { + return false; + } + + /** + * Returns a constant value. + * + * @param string $name Constant name + * @throws \TokenReflection\Exception\RuntimeException If the requested constant does not exist. + */ + public function getConstant($name) + { + throw new Exception\RuntimeException(sprintf('There is no constant "%s".', $name), Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + /** + * Returns a constant reflection. + * + * @param string $name Constant name + * @throws \TokenReflection\Exception\RuntimeException If the requested constant does not exist. + */ + public function getConstantReflection($name) + { + throw new Exception\RuntimeException(sprintf('There is no constant "%s".', $name), Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + /** + * Returns an array of constant values. + * + * @return array + */ + public function getConstants() + { + return array(); + } + + /** + * Returns an array of constant reflections. + * + * @return array + */ + public function getConstantReflections() + { + return array(); + } + + /** + * Returns if the class (and not its parents) defines the given constant. + * + * @param string $name Constant name. + * @return boolean + */ + public function hasOwnConstant($name) + { + return false; + } + + /** + * Returns constants declared by this class, not its parents. + * + * @return array + */ + public function getOwnConstants() + { + return array(); + } + + /** + * Returns an array of constant reflections defined by this class not its parents. + * + * @return array + */ + public function getOwnConstantReflections() + { + return array(); + } + + /** + * Returns default properties. + * + * @return array + */ + public function getDefaultProperties() + { + return array(); + } + + /** + * Returns if the class implements the given property. + * + * @param string $name Property name + * @return boolean + */ + public function hasProperty($name) + { + return false; + } + + /** + * Returns class properties. + * + * @param integer $filter Property types + * @return array + */ + public function getProperties($filter = null) + { + return array(); + } + + /** + * Return a property reflections. + * + * @param string $name Property name + * @throws \TokenReflection\Exception\RuntimeException If the requested property does not exist. + */ + public function getProperty($name) + { + throw new Exception\RuntimeException(sprintf('There is no property "%s".', $name), Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + /** + * Returns if the class (and not its parents) implements the given property. + * + * @param string $name Property name + * @return boolean + */ + public function hasOwnProperty($name) + { + return false; + } + + /** + * Returns properties declared by this class, not its parents. + * + * @param integer $filter Properties filter + * @return array + */ + public function getOwnProperties($filter = null) + { + return array(); + } + + /** + * Returns if the class imports the given property from traits. + * + * @param string $name Property name + * @return boolean + */ + public function hasTraitProperty($name) + { + return false; + } + + /** + * Returns property reflections imported from traits. + * + * @param integer $filter Properties filter + * @return array + */ + public function getTraitProperties($filter = null) + { + return array(); + } + + /** + * Returns static properties reflections. + * + * @return array + */ + public function getStaticProperties() + { + return array(); + } + + /** + * Returns a value of a static property. + * + * @param string $name Property name + * @param mixed $default Default value + * @throws \TokenReflection\Exception\RuntimeException If the requested static property does not exist. + */ + public function getStaticPropertyValue($name, $default = null) + { + throw new Exception\RuntimeException(sprintf('There is no static property "%s".', $name), Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + /** + * Returns reflections of direct subclasses. + * + * @return array + */ + public function getDirectSubclasses() + { + return array(); + } + + /** + * Returns names of direct subclasses. + * + * @return array + */ + public function getDirectSubclassNames() + { + return array(); + } + + /** + * Returns reflections of indirect subclasses. + * + * @return array + */ + public function getIndirectSubclasses() + { + return array(); + } + + /** + * Returns names of indirect subclasses. + * + * @return array + */ + public function getIndirectSubclassNames() + { + return array(); + } + + /** + * Returns reflections of classes directly implementing this interface. + * + * @return array + */ + public function getDirectImplementers() + { + return array(); + } + + /** + * Returns names of classes directly implementing this interface. + * + * @return array + */ + public function getDirectImplementerNames() + { + return array(); + } + + /** + * Returns reflections of classes indirectly implementing this interface. + * + * @return array + */ + public function getIndirectImplementers() + { + return array(); + } + + /** + * Returns names of classes indirectly implementing this interface. + * + * @return array + */ + public function getIndirectImplementerNames() + { + return array(); + } + + /** + * Returns if the given object is an instance of this class. + * + * @param object $object Instance + * @return boolean + * @throws \TokenReflection\Exception\RuntimeException If the provided argument is not an object. + */ + public function isInstance($object) + { + if (!is_object($object)) { + throw new Exception\RuntimeException(sprintf('Parameter must be a class instance, "%s" provided.', gettype($object)), Exception\RuntimeException::INVALID_ARGUMENT, $this); + } + + return $this->name === get_class($object) || is_subclass_of($object, $this->name); + } + + /** + * Creates a new class instance without using a constructor. + * + * @return object + * @throws \TokenReflection\Exception\RuntimeException If the class inherits from an internal class. + */ + public function newInstanceWithoutConstructor() + { + if (!class_exists($this->name, true)) { + throw new Exception\RuntimeException('Could not create an instance; class does not exist.', Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + $reflection = new \TokenReflection\Php\ReflectionClass($this->name, $this->getBroker()); + return $reflection->newInstanceWithoutConstructor(); + } + + /** + * Creates a new instance using variable number of parameters. + * + * Use any number of constructor parameters as function parameters. + * + * @param mixed $args + * @return object + */ + public function newInstance($args) + { + return $this->newInstanceArgs(func_get_args()); + } + + /** + * Creates a new instance using an array of parameters. + * + * @param array $args Array of constructor parameters + * @return object + * @throws \TokenReflection\Exception\RuntimeException If the required class does not exist. + */ + public function newInstanceArgs(array $args = array()) + { + if (!class_exists($this->name, true)) { + throw new Exception\RuntimeException('Could not create an instance of class; class does not exist.', Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + $reflection = new InternalReflectionClass($this->name); + return $reflection->newInstanceArgs($args); + } + + /** + * Sets a static property value. + * + * @param string $name Property name + * @param mixed $value Property value + * @throws \TokenReflection\Exception\RuntimeException If the requested static property does not exist. + */ + public function setStaticPropertyValue($name, $value) + { + throw new Exception\RuntimeException(sprintf('There is no static property "%s".', $name), Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + /** + * Returns the string representation of the reflection object. + * + * @return string + */ + public function __toString() + { + return sprintf( + "Class|Interface [ class|interface %s ] {\n %s%s%s%s%s\n}\n", + $this->getName(), + "\n\n - Constants [0] {\n }", + "\n\n - Static properties [0] {\n }", + "\n\n - Static methods [0] {\n }", + "\n\n - Properties [0] {\n }", + "\n\n - Methods [0] {\n }" + ); + } + + /** + * Exports a reflected object. + * + * @param \TokenReflection\Broker $broker Broker instance + * @param string|object $className Class name or class instance + * @param boolean $return Return the export instead of outputting it + * @return string|null + * @throws \TokenReflection\Exception\RuntimeException If requested parameter doesn't exist. + */ + public static function export(Broker $broker, $className, $return = false) + { + TokenReflection\ReflectionClass::export($broker, $className, $return); + } + + /** + * Outputs the reflection subject source code. + * + * @return string + */ + public function getSource() + { + return ''; + } + + /** + * Returns the start position in the file token stream. + * + * @return integer + */ + public function getStartPosition() + { + return -1; + } + + /** + * Returns the end position in the file token stream. + * + * @return integer + */ + public function getEndPosition() + { + return -1; + } + + /** + * Returns if the class definition is complete. + * + * Dummy classes never have the definition complete. + * + * @return boolean + */ + public function isComplete() + { + return false; + } + + /** + * Returns if the class definition is valid. + * + * Dummy classes are always valid. + * + * @return boolean + */ + public function isValid() + { + return true; + } + + /** + * Returns if the reflection subject is deprecated. + * + * @return boolean + */ + public function isDeprecated() + { + return false; + } + + /** + * Returns the reflection broker used by this reflection object. + * + * @return \TokenReflection\Broker + */ + public function getBroker() + { + return $this->broker; + } + + /** + * Magic __get method. + * + * @param string $key Variable name + * @return mixed + */ + final public function __get($key) + { + return ReflectionBase::get($this, $key); + } + + /** + * Magic __isset method. + * + * @param string $key Variable name + * @return boolean + */ + final public function __isset($key) + { + return ReflectionBase::exists($this, $key); + } +} diff --git a/apigen/libs/TokenReflection/TokenReflection/Exception/BaseException.php b/apigen/libs/TokenReflection/TokenReflection/Exception/BaseException.php new file mode 100644 index 00000000000..aaebfe118f0 --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/Exception/BaseException.php @@ -0,0 +1,102 @@ +getDetail(); + + return sprintf( + "exception '%s'%s in %s on line %d\n%s\nStack trace:\n%s", + get_class($this), + $this->getMessage() ? " with message '" . $this->getMessage() . "'" : '', + $this->getFile(), + $this->getLine(), + empty($detail) ? '' : $detail . "\n", + $this->getTraceAsString() + ); + } + + /** + * Returns the exception details as string. + * + * @return string + */ + final public function __toString() + { + $output = ''; + + if ($ex = $this->getPrevious()) { + $output .= (string) $ex . "\n\nNext "; + } + + return $output . $this->getOutput() . "\n"; + } +} diff --git a/apigen/libs/TokenReflection/TokenReflection/Exception/BrokerException.php b/apigen/libs/TokenReflection/TokenReflection/Exception/BrokerException.php new file mode 100644 index 00000000000..eb7e21d0c6a --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/Exception/BrokerException.php @@ -0,0 +1,66 @@ +broker = $broker; + } + + /** + * Returns the current Broker. + * + * @return \TokenReflection\Broker + */ + public function getBroker() + { + return $this->broker; + } + + /** + * Returns an exception description detail. + * + * @return string + */ + public function getDetail() + { + return ''; + } +} diff --git a/apigen/libs/TokenReflection/TokenReflection/Exception/FileProcessingException.php b/apigen/libs/TokenReflection/TokenReflection/Exception/FileProcessingException.php new file mode 100644 index 00000000000..48da374153d --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/Exception/FileProcessingException.php @@ -0,0 +1,80 @@ +getName()), + 0, + $sender + ); + + $this->reasons = $reasons; + } + + /** + * Returns a list of reasons why the file could not be processed. + * + * @return array + */ + public function getReasons() + { + return $this->reasons; + } + + /** + * Returns an exception description detail. + * + * @return string + */ + public function getDetail() + { + if (!empty($this->reasons)) { + $reasons = array_map(function(BaseException $reason) { + if ($reason instanceof ParseException) { + return $reason->getDetail(); + } else { + return $reason->getMessage(); + } + }, $this->reasons); + + return "There were following reasons for this exception:\n" . implode("\n", $reasons); + } + + return ''; + } +} diff --git a/apigen/libs/TokenReflection/TokenReflection/Exception/ParseException.php b/apigen/libs/TokenReflection/TokenReflection/Exception/ParseException.php new file mode 100644 index 00000000000..c9161c6fdb3 --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/Exception/ParseException.php @@ -0,0 +1,264 @@ +sender = $sender; + + $token = $tokenStream->current(); + $position = $tokenStream->key(); + + if (!empty($token) && !empty($position)) { + $this->token = $token; + $this->tokenName = $tokenStream->getTokenName(); + + $line = $this->token[2]; + $min = $max = $position; + } else { + $min = $max = $tokenStream->count() - 1; + $line = $tokenStream[$min][2]; + } + + $this->exceptionLine = $line; + + static $skip = array(T_WHITESPACE => true, T_COMMENT => true, T_DOC_COMMENT => true); + + $significant = array(); + while (isset($tokenStream[$min - 1])) { + if (!isset($significant[$tokenStream[$min][2]])) { + if (self::SOURCE_LINES_AROUND <= array_sum($significant)) { + break; + } + + $significant[$tokenStream[$min][2]] = !isset($skip[$tokenStream[$min][0]]); + } else { + $significant[$tokenStream[$min][2]] |= !isset($skip[$tokenStream[$min][0]]); + } + + $min--; + } + + $significant = array(); + while (isset($tokenStream[$max + 1])) { + if (!isset($significant[$tokenStream[$max][2]])) { + if (self::SOURCE_LINES_AROUND <= array_sum($significant)) { + break; + } + + $significant[$tokenStream[$max][2]] = !isset($skip[$tokenStream[$max][0]]); + } else { + $significant[$tokenStream[$max][2]] |= !isset($skip[$tokenStream[$max][0]]); + } + + $max++; + } + + $this->scopeBoundaries = array($min, $max); + } + + /** + * Returns the token where the problem was detected or NULL if the token stream was empty or an end was reached. + * + * @return array|null + */ + public function getToken() + { + return $this->token; + } + + /** + * Returns the name of the token where the problem was detected or NULL if the token stream was empty or an end was reached. + * + * @return string|null + */ + public function getTokenName() + { + return $this->tokenName; + } + + /** + * Returns the line where the exception was thrown. + * + * @return integer + */ + public function getExceptionLine() + { + return $this->exceptionLine; + } + + /** + * Returns the file line with the token or null. + * + * @return integer|null + */ + public function getTokenLine() + { + return null === $this->token ? null : $this->token[2]; + } + + /** + * Returns the source code part around the token. + * + * @param boolean $lineNumbers Returns the source code part with line numbers + * @return string|null + */ + public function getSourcePart($lineNumbers = false) + { + if (empty($this->scopeBoundaries)) { + return null; + } + + list($lo, $hi) = $this->scopeBoundaries; + $stream = $this->getStream(); + + $code = $stream->getSourcePart($lo, $hi); + + if ($lineNumbers) { + $lines = explode("\n", $code); + + $startLine = $stream[$lo][2]; + $width = strlen($startLine + count($lines) - 1); + $errorLine = $this->token[2]; + $actualLine = $startLine; + + $code = implode( + "\n", + array_map(function($line) use (&$actualLine, $width, $errorLine) { + return ($actualLine === $errorLine ? '*' : ' ') . str_pad($actualLine++, $width, ' ', STR_PAD_LEFT) . ': ' . $line; + }, $lines) + ); + } + + return $code; + } + + /** + * Returns the reflection element that caused the exception to be raised. + * + * @return \TokenReflection\IReflection + */ + public function getSender() + { + return $this->sender; + } + + /** + * Returns an exception description detail. + * + * @return string + */ + public function getDetail() + { + if (0 === $this->getStream()->count()) { + return parent::getDetail() . 'The token stream was empty.'; + } elseif (empty($this->token)) { + return parent::getDetail() . 'The token stream was read out of its bounds.'; + } else { + return parent::getDetail() . + sprintf( + "\nThe cause of the exception was the %s token (line %s) in following part of %s source code:\n\n%s", + $this->tokenName, + $this->token[2], + $this->sender && $this->sender->getName() ? $this->sender->getPrettyName() : 'the', + $this->getSourcePart(true) + ); + } + } +} diff --git a/apigen/libs/TokenReflection/TokenReflection/Exception/RuntimeException.php b/apigen/libs/TokenReflection/TokenReflection/Exception/RuntimeException.php new file mode 100644 index 00000000000..98577794d1f --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/Exception/RuntimeException.php @@ -0,0 +1,72 @@ +sender = $sender; + } + + /** + * Returns the reflection element that caused the exception to be raised. + * + * @return \TokenReflection\IReflection + */ + public function getSender() + { + return $this->sender; + } + + /** + * Returns an exception description detail. + * + * @return string + */ + public function getDetail() + { + return null === $this->sender ? '' : sprintf('Thrown when working with "%s".', $this->sender->getPrettyName()); + } +} diff --git a/apigen/libs/TokenReflection/TokenReflection/Exception/StreamException.php b/apigen/libs/TokenReflection/TokenReflection/Exception/StreamException.php new file mode 100644 index 00000000000..5aa7519ea39 --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/Exception/StreamException.php @@ -0,0 +1,96 @@ +stream = $stream; + } + + /** + * Returns the reflection element that caused the exception to be raised. + * + * @return \TokenReflection\Stream\StreamBase + */ + public function getStream() + { + return $this->stream; + } + + /** + * Returns the processed file name. + * + * @return string + */ + public function getFileName() + { + return $this->stream->getFileName(); + } + + /** + * Returns an exception description detail. + * + * @return string + */ + public function getDetail() + { + return sprintf('Thrown when working with file "%s" token stream.', $this->getFileName()); + } +} diff --git a/apigen/libs/TokenReflection/TokenReflection/IReflection.php b/apigen/libs/TokenReflection/TokenReflection/IReflection.php new file mode 100644 index 00000000000..911dd633ab0 --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/IReflection.php @@ -0,0 +1,80 @@ + 5.3.0, you can uncomment it. + * + * @return mixed + */ + // public function invoke(); + + /** + * Calls the function. + * + * @param array $args Function parameter values + * @return mixed + */ + public function invokeArgs(array $args); + + /** + * Returns the function/method as closure. + * + * @return \Closure + */ + public function getClosure(); + + /** + * Returns if the function definition is valid. + * + * That means that the source code is valid and the function name is unique within parsed files. + * + * @return boolean + */ + public function isValid(); + + /** + * Returns imported namespaces and aliases from the declaring namespace. + * + * @return array + */ + public function getNamespaceAliases(); +} diff --git a/apigen/libs/TokenReflection/TokenReflection/IReflectionFunctionBase.php b/apigen/libs/TokenReflection/TokenReflection/IReflectionFunctionBase.php new file mode 100644 index 00000000000..9076590cd81 --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/IReflectionFunctionBase.php @@ -0,0 +1,135 @@ +name = ltrim($className, '\\'); + $this->fileName = $fileName; + $this->broker = $broker; + } + + /** + * Returns the name (FQN). + * + * @return string + */ + public function getName() + { + return $this->name; + } + + /** + * Returns an element pretty (docblock compatible) name. + * + * @return string + */ + public function getPrettyName() + { + return $this->name; + } + + /** + * Returns the unqualified name (UQN). + * + * @return string + */ + public function getShortName() + { + $pos = strrpos($this->name, '\\'); + return false === $pos ? $this->name : substr($this->name, $pos + 1); + } + + /** + * Returns the namespace name. + * + * @return string + */ + public function getNamespaceName() + { + $pos = strrpos($this->name, '\\'); + return false === $pos ? '' : substr($this->name, 0, $pos); + } + + /** + * Returns if the class is defined within a namespace. + * + * @return boolean + */ + public function inNamespace() + { + return false !== strrpos($this->name, '\\'); + } + + /** + * Returns imported namespaces and aliases from the declaring namespace. + * + * @return array + */ + public function getNamespaceAliases() + { + return array(); + } + + /** + * Returns the PHP extension reflection. + * + * @return null + */ + public function getExtension() + { + return null; + } + + /** + * Returns the PHP extension name. + * + * @return boolean + */ + public function getExtensionName() + { + return false; + } + + /** + * Returns the file name the reflection object is defined in. + * + * @return null + */ + public function getFileName() + { + return $this->fileName; + } + + /** + * Returns a file reflection. + * + * @return \TokenReflection\ReflectionFile + * @throws \TokenReflection\Exception\RuntimeException If the file is not stored inside the broker + */ + public function getFileReflection() + { + throw new Exception\BrokerException($this->getBroker(), sprintf('Class was not parsed from a file', $this->getName()), Exception\BrokerException::UNSUPPORTED); + } + + /** + * Returns the definition start line number in the file. + * + * @return null + */ + public function getStartLine() + { + return null; + } + + /** + * Returns the definition end line number in the file. + * + * @return null + */ + public function getEndLine() + { + return null; + } + + /** + * Returns the appropriate docblock definition. + * + * @return boolean + */ + public function getDocComment() + { + return false; + } + + /** + * Checks if there is a particular annotation. + * + * @param string $name Annotation name + * @return boolean + */ + public function hasAnnotation($name) + { + return false; + } + + /** + * Returns a particular annotation value. + * + * @param string $name Annotation name + * @return null + */ + public function getAnnotation($name) + { + return null; + } + + /** + * Returns parsed docblock. + * + * @return array + */ + public function getAnnotations() + { + return array(); + } + + /** + * Returns modifiers. + * + * @return integer + */ + public function getModifiers() + { + return 0; + } + + /** + * Returns if the class is abstract. + * + * @return boolean + */ + public function isAbstract() + { + return false; + } + + /** + * Returns if the class is final. + * + * @return boolean + */ + public function isFinal() + { + return false; + } + + /** + * Returns if the class is an interface. + * + * @return boolean + */ + public function isInterface() + { + return false; + } + + /** + * Returns if the class is an exception or its descendant. + * + * @return boolean + */ + public function isException() + { + return false; + } + + /** + * Returns if it is possible to create an instance of this class. + * + * @return boolean + */ + public function isInstantiable() + { + return false; + } + + /** + * Returns traits used by this class. + * + * @return array + */ + public function getTraits() + { + return array(); + } + + /** + * Returns traits used by this class and not its parents. + * + * @return array + */ + public function getOwnTraits() + { + return array(); + } + + /** + * Returns names of used traits. + * + * @return array + */ + public function getTraitNames() + { + return array(); + } + + /** + * Returns traits used by this class and not its parents. + * + * @return array + */ + public function getOwnTraitNames() + { + return array(); + } + + /** + * Returns method aliases from traits. + * + * @return array + */ + public function getTraitAliases() + { + return array(); + } + + /** + * Returns if the class is a trait. + * + * @return boolean + */ + public function isTrait() + { + return false; + } + + /** + * Returns if the class uses a particular trait. + * + * @param \ReflectionClass|\TokenReflection\IReflectionClass|string $trait Trait reflection or name + * @return boolean + */ + public function usesTrait($trait) + { + return false; + } + + /** + * Returns if objects of this class are cloneable. + * + * Introduced in PHP 5.4. + * + * @return boolean + * @see http://svn.php.net/viewvc/php/php-src/trunk/ext/reflection/php_reflection.c?revision=307971&view=markup#l4059 + */ + public function isCloneable() + { + return false; + } + + /** + * Returns if the class is iterateable. + * + * Returns true if the class implements the Traversable interface. + * + * @return boolean + */ + public function isIterateable() + { + return false; + } + + /** + * Returns if the reflection object is internal. + * + * @return boolean + */ + public function isInternal() + { + return false; + } + + /** + * Returns if the reflection object is user defined. + * + * @return boolean + */ + public function isUserDefined() + { + return true; + } + + /** + * Returns if the current reflection comes from a tokenized source. + * + * @return boolean + */ + public function isTokenized() + { + return true; + } + + /** + * Returns if the current class is a subclass of the given class. + * + * @param string|object $class Class name or reflection object + * @return boolean + */ + public function isSubclassOf($class) + { + return false; + } + + /** + * Returns the parent class reflection. + * + * @return null + */ + public function getParentClass() + { + return false; + } + + /** + * Returns the parent classes reflections. + * + * @return array + */ + public function getParentClasses() + { + return array(); + } + + /** + * Returns the parent classes names. + * + * @return array + */ + public function getParentClassNameList() + { + return array(); + } + + /** + * Returns the parent class reflection. + * + * @return null + */ + public function getParentClassName() + { + return null; + } + + /** + * Returns if the class implements the given interface. + * + * @param string|object $interface Interface name or reflection object + * @return boolean + * @throws \TokenReflection\Exception\RuntimeException If the provided parameter is not an interface. + */ + public function implementsInterface($interface) + { + if (is_object($interface)) { + if (!$interface instanceof IReflectionClass) { + throw new Exception\RuntimeException(sprintf('Parameter must be a string or an instance of class reflection, "%s" provided.', get_class($interface)), Exception\RuntimeException::INVALID_ARGUMENT, $this); + } + + $interfaceName = $interface->getName(); + + if (!$interface->isInterface()) { + throw new Exception\RuntimeException(sprintf('"%s" is not an interface.', $interfaceName), Exception\RuntimeException::INVALID_ARGUMENT, $this); + } + } + + // Only validation, always returns false + return false; + } + + /** + * Returns interface reflections. + * + * @return array + */ + public function getInterfaces() + { + return array(); + } + + /** + * Returns interface names. + * + * @return array + */ + public function getInterfaceNames() + { + return array(); + } + + /** + * Returns interfaces implemented by this class, not its parents. + * + * @return array + */ + public function getOwnInterfaces() + { + return array(); + } + + /** + * Returns names of interfaces implemented by this class, not its parents. + * + * @return array + */ + public function getOwnInterfaceNames() + { + return array(); + } + + /** + * Returns the class constructor reflection. + * + * @return null + */ + public function getConstructor() + { + return null; + } + + /** + * Returns the class desctructor reflection. + * + * @return null + */ + public function getDestructor() + { + return null; + } + + /** + * Returns if the class implements the given method. + * + * @param string $name Method name + * @return boolean + */ + public function hasMethod($name) + { + return false; + } + + /** + * Returns a method reflection. + * + * @param string $name Method name + * @throws \TokenReflection\Exception\RuntimeException If the requested method does not exist. + */ + public function getMethod($name) + { + throw new Exception\RuntimeException(sprintf('There is no method "%s".', $name), Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + /** + * Returns method reflections. + * + * @param integer $filter Methods filter + * @return array + */ + public function getMethods($filter = null) + { + return array(); + } + + /** + * Returns if the class implements (and not its parents) the given method. + * + * @param string $name Method name + * @return boolean + */ + public function hasOwnMethod($name) + { + return false; + } + + /** + * Returns methods declared by this class, not its parents. + * + * @param integer $filter Methods filter + * @return array + */ + public function getOwnMethods($filter = null) + { + return array(); + } + + /** + * Returns if the class imports the given method from traits. + * + * @param string $name Method name + * @return boolean + */ + public function hasTraitMethod($name) + { + return false; + } + + /** + * Returns method reflections imported from traits. + * + * @param integer $filter Methods filter + * @return array + */ + public function getTraitMethods($filter = null) + { + return array(); + } + + /** + * Returns if the class defines the given constant. + * + * @param string $name Constant name. + * @return boolean + */ + public function hasConstant($name) + { + return false; + } + + /** + * Returns a constant value. + * + * @param string $name Constant name + * @throws \TokenReflection\Exception\RuntimeException If the requested constant does not exist. + */ + public function getConstant($name) + { + throw new Exception\RuntimeException(sprintf('There is no constant "%s".', $name), Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + /** + * Returns a constant reflection. + * + * @param string $name Constant name + * @throws \TokenReflection\Exception\RuntimeException If the requested constant does not exist. + */ + public function getConstantReflection($name) + { + throw new Exception\RuntimeException(sprintf('There is no constant "%s".', $name), Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + /** + * Returns an array of constant values. + * + * @return array + */ + public function getConstants() + { + return array(); + } + + /** + * Returns an array of constant reflections. + * + * @return array + */ + public function getConstantReflections() + { + return array(); + } + + /** + * Returns if the class (and not its parents) defines the given constant. + * + * @param string $name Constant name. + * @return boolean + */ + public function hasOwnConstant($name) + { + return false; + } + + /** + * Returns constants declared by this class, not its parents. + * + * @return array + */ + public function getOwnConstants() + { + return array(); + } + + /** + * Returns an array of constant reflections defined by this class not its parents. + * + * @return array + */ + public function getOwnConstantReflections() + { + return array(); + } + + /** + * Returns default properties. + * + * @return array + */ + public function getDefaultProperties() + { + return array(); + } + + /** + * Returns if the class implements the given property. + * + * @param string $name Property name + * @return boolean + */ + public function hasProperty($name) + { + return false; + } + + /** + * Returns class properties. + * + * @param integer $filter Property types + * @return array + */ + public function getProperties($filter = null) + { + return array(); + } + + /** + * Return a property reflections. + * + * @param string $name Property name + * @throws \TokenReflection\Exception\RuntimeException If the requested property does not exist. + */ + public function getProperty($name) + { + throw new Exception\RuntimeException(sprintf('There is no property "%s".', $name), Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + /** + * Returns if the class (and not its parents) implements the given property. + * + * @param string $name Property name + * @return boolean + */ + public function hasOwnProperty($name) + { + return false; + } + + /** + * Returns properties declared by this class, not its parents. + * + * @param integer $filter Properties filter + * @return array + */ + public function getOwnProperties($filter = null) + { + return array(); + } + + /** + * Returns if the class imports the given property from traits. + * + * @param string $name Property name + * @return boolean + */ + public function hasTraitProperty($name) + { + return false; + } + + /** + * Returns property reflections imported from traits. + * + * @param integer $filter Properties filter + * @return array + */ + public function getTraitProperties($filter = null) + { + return array(); + } + + /** + * Returns static properties reflections. + * + * @return array + */ + public function getStaticProperties() + { + return array(); + } + + /** + * Returns a value of a static property. + * + * @param string $name Property name + * @param mixed $default Default value + * @throws \TokenReflection\Exception\RuntimeException If the requested static property does not exist. + */ + public function getStaticPropertyValue($name, $default = null) + { + throw new Exception\RuntimeException(sprintf('There is no static property "%s".', $name), Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + /** + * Returns reflections of direct subclasses. + * + * @return array + */ + public function getDirectSubclasses() + { + return array(); + } + + /** + * Returns names of direct subclasses. + * + * @return array + */ + public function getDirectSubclassNames() + { + return array(); + } + + /** + * Returns reflections of indirect subclasses. + * + * @return array + */ + public function getIndirectSubclasses() + { + return array(); + } + + /** + * Returns names of indirect subclasses. + * + * @return array + */ + public function getIndirectSubclassNames() + { + return array(); + } + + /** + * Returns reflections of classes directly implementing this interface. + * + * @return array + */ + public function getDirectImplementers() + { + return array(); + } + + /** + * Returns names of classes directly implementing this interface. + * + * @return array + */ + public function getDirectImplementerNames() + { + return array(); + } + + /** + * Returns reflections of classes indirectly implementing this interface. + * + * @return array + */ + public function getIndirectImplementers() + { + return array(); + } + + /** + * Returns names of classes indirectly implementing this interface. + * + * @return array + */ + public function getIndirectImplementerNames() + { + return array(); + } + + /** + * Returns if the given object is an instance of this class. + * + * @param object $object Instance + * @return boolean + * @throws \TokenReflection\Exception\RuntimeException If the provided argument is not an object. + */ + public function isInstance($object) + { + if (!is_object($object)) { + throw new Exception\RuntimeException(sprintf('Parameter must be a class instance, "%s" provided.', gettype($object)), Exception\RuntimeException::INVALID_ARGUMENT, $this); + } + + return $this->name === get_class($object) || is_subclass_of($object, $this->name); + } + + /** + * Creates a new class instance without using a constructor. + * + * @return object + * @throws \TokenReflection\Exception\RuntimeException If the class inherits from an internal class. + */ + public function newInstanceWithoutConstructor() + { + if (!class_exists($this->name, true)) { + throw new Exception\RuntimeException('Could not create an instance; class does not exist.', Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + $reflection = new \TokenReflection\Php\ReflectionClass($this->name, $this->getBroker()); + return $reflection->newInstanceWithoutConstructor(); + } + + /** + * Creates a new instance using variable number of parameters. + * + * Use any number of constructor parameters as function parameters. + * + * @param mixed $args + * @return object + */ + public function newInstance($args) + { + return $this->newInstanceArgs(func_get_args()); + } + + /** + * Creates a new instance using an array of parameters. + * + * @param array $args Array of constructor parameters + * @return object + * @throws \TokenReflection\Exception\RuntimeException If the required class does not exist. + */ + public function newInstanceArgs(array $args = array()) + { + if (!class_exists($this->name, true)) { + throw new Exception\RuntimeException('Could not create an instance of class; class does not exist.', Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + $reflection = new InternalReflectionClass($this->name); + return $reflection->newInstanceArgs($args); + } + + /** + * Sets a static property value. + * + * @param string $name Property name + * @param mixed $value Property value + * @throws \TokenReflection\Exception\RuntimeException If the requested static property does not exist. + */ + public function setStaticPropertyValue($name, $value) + { + throw new Exception\RuntimeException(sprintf('There is no static property "%s".', $name), Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + /** + * Returns the string representation of the reflection object. + * + * @return string + */ + public function __toString() + { + return sprintf( + "Class|Interface [ class|interface %s ] {\n %s%s%s%s%s\n}\n", + $this->getName(), + "\n\n - Constants [0] {\n }", + "\n\n - Static properties [0] {\n }", + "\n\n - Static methods [0] {\n }", + "\n\n - Properties [0] {\n }", + "\n\n - Methods [0] {\n }" + ); + } + + /** + * Exports a reflected object. + * + * @param \TokenReflection\Broker $broker Broker instance + * @param string|object $className Class name or class instance + * @param boolean $return Return the export instead of outputting it + * @return string|null + * @throws \TokenReflection\Exception\RuntimeException If requested parameter doesn't exist. + */ + public static function export(Broker $broker, $className, $return = false) + { + TokenReflection\ReflectionClass::export($broker, $className, $return); + } + + /** + * Outputs the reflection subject source code. + * + * @return string + */ + public function getSource() + { + return ''; + } + + /** + * Returns the start position in the file token stream. + * + * @return integer + */ + public function getStartPosition() + { + return -1; + } + + /** + * Returns the end position in the file token stream. + * + * @return integer + */ + public function getEndPosition() + { + return -1; + } + + /** + * Returns if the class definition is complete. + * + * Invalid classes are always complete. + * + * @return boolean + */ + public function isComplete() + { + return true; + } + + /** + * Returns if the class definition is valid. + * + * @return boolean + */ + public function isValid() + { + return false; + } + + /** + * Returns if the reflection subject is deprecated. + * + * @return boolean + */ + public function isDeprecated() + { + return false; + } + + /** + * Returns the reflection broker used by this reflection object. + * + * @return \TokenReflection\Broker + */ + public function getBroker() + { + return $this->broker; + } + + /** + * Magic __get method. + * + * @param string $key Variable name + * @return mixed + */ + final public function __get($key) + { + return ReflectionBase::get($this, $key); + } + + /** + * Magic __isset method. + * + * @param string $key Variable name + * @return boolean + */ + final public function __isset($key) + { + return ReflectionBase::exists($this, $key); + } +} diff --git a/apigen/libs/TokenReflection/TokenReflection/Invalid/ReflectionConstant.php b/apigen/libs/TokenReflection/TokenReflection/Invalid/ReflectionConstant.php new file mode 100644 index 00000000000..6fb75bb2028 --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/Invalid/ReflectionConstant.php @@ -0,0 +1,403 @@ +name = $name; + $this->broker = $broker; + $this->fileName = $fileName; + } + + /** + * Returns the name. + * + * @return string + */ + public function getName() + { + return $this->name; + } + + /** + * Returns the unqualified name (UQN). + * + * @return string + */ + public function getShortName() + { + $pos = strrpos($this->name, '\\'); + return false === $pos ? $this->name : substr($this->name, $pos + 1); + } + + /** + * Returns the declaring class reflection. + * + * @return null + */ + public function getDeclaringClass() + { + return null; + } + + /** + * Returns the declaring class name. + * + * @return null + */ + public function getDeclaringClassName() + { + return null; + } + + /** + * Returns the namespace name. + * + * @return string + */ + public function getNamespaceName() + { + $pos = strrpos($this->name, '\\'); + return false === $pos ? '' : substr($this->name, 0, $pos); + } + + /** + * Returns if the function/method is defined within a namespace. + * + * @return boolean + */ + public function inNamespace() + { + return false !== strpos($this->name, '\\'); + } + + /** + * Returns the PHP extension reflection. + * + * @return null + */ + public function getExtension() + { + return null; + } + + /** + * Returns the PHP extension name. + * + * @return boolean + */ + public function getExtensionName() + { + return false; + } + + /** + * Returns the appropriate source code part. + * + * @return string + */ + public function getSource() + { + return ''; + } + + /** + * Returns the start position in the file token stream. + * + * @return integer + */ + public function getStartPosition() + { + return -1; + } + + /** + * Returns the end position in the file token stream. + * + * @return integer + */ + public function getEndPosition() + { + return -1; + } + + /** + * Returns the file name the reflection object is defined in. + * + * @return null + */ + public function getFileName() + { + return $this->fileName; + } + + /** + * Returns a file reflection. + * + * @return \TokenReflection\ReflectionFile + * @throws \TokenReflection\Exception\RuntimeException If the file is not stored inside the broker + */ + public function getFileReflection() + { + throw new Exception\BrokerException($this->getBroker(), sprintf('Constant %s was not parsed from a file', $this->getPrettyName()), Exception\BrokerException::UNSUPPORTED); + } + + /** + * Returns the definition start line number in the file. + * + * @return null + */ + public function getStartLine() + { + return null; + } + + /** + * Returns the definition end line number in the file. + * + * @return null + */ + public function getEndLine() + { + return null; + } + + /** + * Returns the appropriate docblock definition. + * + * @return boolean + */ + public function getDocComment() + { + return false; + } + + /** + * Checks if there is a particular annotation. + * + * @param string $name Annotation name + * @return boolean + */ + public function hasAnnotation($name) + { + return false; + } + + /** + * Returns a particular annotation value. + * + * @param string $name Annotation name + * @return null + */ + public function getAnnotation($name) + { + return null; + } + + /** + * Returns parsed docblock. + * + * @return array + */ + public function getAnnotations() + { + return array(); + } + + /** + * Returns the constant value. + * + * @return mixed + */ + public function getValue() + { + return null; + } + + /** + * Returns the part of the source code defining the constant value. + * + * @return string + */ + public function getValueDefinition() + { + return null; + } + + /** + * Returns the originaly provided value definition. + * + * @return string + */ + public function getOriginalValueDefinition() + { + return null; + } + + /** + * Returns if the constant is internal. + * + * @return boolean + */ + public function isInternal() + { + return false; + } + + /** + * Returns if the constant is user defined. + * + * @return boolean + */ + public function isUserDefined() + { + return true; + } + + /** + * Returns if the current reflection comes from a tokenized source. + * + * @return boolean + */ + public function isTokenized() + { + return true; + } + + /** + * Returns if the reflection subject is deprecated. + * + * @return boolean + */ + public function isDeprecated() + { + return false; + } + + /** + * Returns an element pretty (docblock compatible) name. + * + * @return string + */ + public function getPrettyName() + { + return $this->name; + } + + /** + * Returns the string representation of the reflection object. + * + * @return string + */ + public function __toString() + { + return sprintf( + "Constant [ %s %s ] { %s }\n", + gettype(null), + $this->getName(), + null + ); + } + + /** + * Returns the reflection broker used by this reflection object. + * + * @return \TokenReflection\Broker + */ + public function getBroker() + { + return $this->broker; + } + + /** + * Returns imported namespaces and aliases from the declaring namespace. + * + * @return array + */ + public function getNamespaceAliases() + { + return array(); + } + + /** + * Returns if the constant definition is valid. + * + * @return boolean + */ + public function isValid() + { + return false; + } + + /** + * Magic __get method. + * + * @param string $key Variable name + * @return mixed + */ + final public function __get($key) + { + return ReflectionBase::get($this, $key); + } + + /** + * Magic __isset method. + * + * @param string $key Variable name + * @return boolean + */ + final public function __isset($key) + { + return ReflectionBase::exists($this, $key); + } +} diff --git a/apigen/libs/TokenReflection/TokenReflection/Invalid/ReflectionElement.php b/apigen/libs/TokenReflection/TokenReflection/Invalid/ReflectionElement.php new file mode 100644 index 00000000000..344d62be16f --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/Invalid/ReflectionElement.php @@ -0,0 +1,53 @@ +reasons[] = $reason; + + return $this; + } + + /** + * Returns a list of reasons why this element's reflection is invalid. + * + * @return array + */ + public function getReasons() + { + return $this->reasons; + } + + /** + * Returns if there are any known reasons why this element's reflection is invalid. + * + * @return boolean + */ + public function hasReasons() + { + return !empty($this->reasons); + } +} diff --git a/apigen/libs/TokenReflection/TokenReflection/Invalid/ReflectionFunction.php b/apigen/libs/TokenReflection/TokenReflection/Invalid/ReflectionFunction.php new file mode 100644 index 00000000000..475914b06ed --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/Invalid/ReflectionFunction.php @@ -0,0 +1,490 @@ +name = ltrim($name, '\\'); + $this->broker = $broker; + $this->fileName = $fileName; + } + + /** + * Returns the name (FQN). + * + * @return string + */ + public function getName() + { + return $this->name; + } + + /** + * Returns the unqualified name (UQN). + * + * @return string + */ + public function getShortName() + { + $pos = strrpos($this->name, '\\'); + return false === $pos ? $this->name : substr($this->name, $pos + 1); + } + + /** + * Returns the namespace name. + * + * @return string + */ + public function getNamespaceName() + { + $pos = strrpos($this->name, '\\'); + return false === $pos ? '' : substr($this->name, 0, $pos); + } + + /** + * Returns if the class is defined within a namespace. + * + * @return boolean + */ + public function inNamespace() + { + return false !== strrpos($this->name, '\\'); + } + + /** + * Returns if the reflection object is internal. + * + * @return boolean + */ + public function isInternal() + { + return false; + } + + /** + * Returns if the reflection object is user defined. + * + * @return boolean + */ + public function isUserDefined() + { + return true; + } + + /** + * Returns if the current reflection comes from a tokenized source. + * + * @return boolean + */ + public function isTokenized() + { + return true; + } + + /** + * Returns the reflection broker used by this reflection object. + * + * @return \TokenReflection\Broker + */ + public function getBroker() + { + return $this->broker; + } + + /** + * Returns an element pretty (docblock compatible) name. + * + * @return string + */ + public function getPrettyName() + { + return $this->name . '()'; + } + + /** + * Returns the PHP extension reflection. + * + * @return \TokenReflection\IReflectionExtension|null + */ + public function getExtension() + { + return null; + } + + /** + * Returns the PHP extension name. + * + * @return false + */ + public function getExtensionName() + { + return false; + } + + /** + * Returns the file name the reflection object is defined in. + * + * @return null + */ + public function getFileName() + { + return $this->fileName; + } + + /** + * Returns a file reflection. + * + * @return \TokenReflection\ReflectionFile + * @throws \TokenReflection\Exception\RuntimeException If the file is not stored inside the broker + */ + public function getFileReflection() + { + throw new Exception\BrokerException($this->getBroker(), sprintf('Function was not parsed from a file', $this->getPrettyName()), Exception\BrokerException::UNSUPPORTED); + } + + /** + * Returns the appropriate source code part. + * + * @return string + */ + public function getSource() + { + return ''; + } + + /** + * Returns the start position in the file token stream. + * + * @return integer + */ + public function getStartPosition() + { + return -1; + } + + /** + * Returns the end position in the file token stream. + * + * @return integer + */ + public function getEndPosition() + { + return -1; + } + + /** + * Returns the definition start line number in the file. + * + * @return integer + */ + public function getStartLine() + { + return null; + } + + /** + * Returns the definition end line number in the file. + * + * @return integer + */ + public function getEndLine() + { + return null; + } + + /** + * Returns the appropriate docblock definition. + * + * @return boolean + */ + public function getDocComment() + { + return false; + } + + /** + * Checks if there is a particular annotation. + * + * @param string $name Annotation name + * @return boolean + */ + public function hasAnnotation($name) + { + return false; + } + + /** + * Returns a particular annotation value. + * + * @param string $name Annotation name + * @return string|array|null + */ + public function getAnnotation($name) + { + return null; + } + + /** + * Returns all annotations. + * + * @return array + */ + public function getAnnotations() + { + return array(); + } + + /** + * Returns if the function/method is a closure. + * + * @return boolean + */ + public function isClosure() + { + return false; + } + + /** + * Returns if the function/method is deprecated. + * + * @return boolean + */ + public function isDeprecated() + { + return false; + } + + /** + * Returns if the function/method returns its value as reference. + * + * @return boolean + */ + public function returnsReference() + { + return false; + } + + /** + * Returns a function/method parameter. + * + * @param integer|string $parameter Parameter name or position + */ + public function getParameter($parameter) + { + if (is_numeric($parameter)) { + throw new Exception\RuntimeException(sprintf('There is no parameter at position "%d".', $parameter), Exception\RuntimeException::DOES_NOT_EXIST, $this); + } else { + throw new Exception\RuntimeException(sprintf('There is no parameter "%s".', $parameter), Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + } + + /** + * Returns function/method parameters. + * + * @return array + */ + public function getParameters(){ + return array(); + } + + /** + * Returns the number of parameters. + * + * @return integer + */ + public function getNumberOfParameters() + { + return 0; + } + + /** + * Returns the number of required parameters. + * + * @return integer + */ + public function getNumberOfRequiredParameters() + { + return 0; + } + + /** + * Returns static variables. + * + * @return array + */ + public function getStaticVariables() + { + return array(); + } + + /** + * Returns if the method is is disabled via the disable_functions directive. + * + * @return boolean + */ + public function isDisabled() + { + return false; + } + + /** + * Calls the function. + * + * @return mixed + */ + public function invoke() + { + return $this->invokeArgs(array()); + } + + /** + * Calls the function. + * + * @param array $args Function parameter values + * @return mixed + */ + public function invokeArgs(array $args) + { + throw new Exception\RuntimeException('Cannot invoke invalid functions', Exception\RuntimeException::UNSUPPORTED, $this); + } + + /** + * Returns imported namespaces and aliases from the declaring namespace. + * + * @return array + */ + public function getNamespaceAliases() + { + return array(); + } + + /** + * Returns the function/method as closure. + * + * @return \Closure + */ + public function getClosure() + { + throw new Exception\RuntimeException('Cannot invoke invalid functions', Exception\RuntimeException::UNSUPPORTED, $this); + } + + /** + * Returns the closure scope class. + * + * @return null + */ + public function getClosureScopeClass() + { + return null; + } + + /** + * Returns this pointer bound to closure. + * + * @return null + */ + public function getClosureThis() + { + return null; + } + + /** + * Returns if the function definition is valid. + * + * @return boolean + */ + public function isValid() + { + return false; + } + + /** + * Returns the string representation of the reflection object. + * + * @return string + */ + public function __toString() + { + return sprintf( + "%sFunction [ function %s%s ] {\n @@ %s %d - %d\n}\n", + $this->getDocComment() ? $this->getDocComment() . "\n" : '', + $this->returnsReference() ? '&' : '', + $this->getName(), + $this->getFileName(), + $this->getStartLine(), + $this->getEndLine() + ); + } + + /** + * Magic __get method. + * + * @param string $key Variable name + * @return mixed + */ + final public function __get($key) + { + return ReflectionBase::get($this, $key); + } + + /** + * Magic __isset method. + * + * @param string $key Variable name + * @return boolean + */ + final public function __isset($key) + { + return ReflectionBase::exists($this, $key); + } +} diff --git a/apigen/libs/TokenReflection/TokenReflection/Php/IReflection.php b/apigen/libs/TokenReflection/TokenReflection/Php/IReflection.php new file mode 100644 index 00000000000..ce8353ed3b4 --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/Php/IReflection.php @@ -0,0 +1,36 @@ +broker = $broker; + } + + /** + * Returns the PHP extension reflection. + * + * @return \TokenReflection\Php\ReflectionExtension + */ + public function getExtension() + { + return ReflectionExtension::create(parent::getExtension(), $this->broker); + } + + /** + * Checks if there is a particular annotation. + * + * @param string $name Annotation name + * @return boolean + */ + public function hasAnnotation($name) + { + return false; + } + + /** + * Returns a particular annotation value. + * + * @param string $name Annotation name + * @return null + */ + public function getAnnotation($name) + { + return null; + } + + /** + * Returns parsed docblock. + * + * @return array + */ + public function getAnnotations() + { + return array(); + } + + /** + * Returns if the class is an exception or its descendant. + * + * @return boolean + */ + public function isException() + { + return 'Exception' === $this->getName() || $this->isSubclassOf('Exception'); + } + + /** + * Returns if objects of this class are cloneable. + * + * Introduced in PHP 5.4. + * + * @return boolean + * @see http://svn.php.net/viewvc/php/php-src/trunk/ext/reflection/php_reflection.c?revision=307971&view=markup#l4059 + */ + public function isCloneable() + { + if ($this->isInterface() || $this->isAbstract()) { + return false; + } + + $methods = $this->getMethods(); + return isset($methods['__clone']) ? $methods['__clone']->isPublic() : true; + } + + /** + * Returns if the current reflection comes from a tokenized source. + * + * @return boolean + */ + public function isTokenized() + { + return false; + } + + /** + * Returns if the reflection subject is deprecated. + * + * @return boolean + */ + public function isDeprecated() + { + return false; + } + + /** + * Returns if the current class is a subclass of the given class. + * + * @param string|object $class Class name or reflection object + * @return boolean + * @throws \TokenReflection\Exception\RuntimeException If an invalid parameter was provided. + */ + public function isSubclassOf($class) + { + if (is_object($class)) { + if (!$class instanceof InternalReflectionClass && !$class instanceof IReflectionClass) { + throw new Exception\RuntimeException('Parameter must be a string or an instance of class reflection.', Exception\RuntimeException::INVALID_ARGUMENT, $this); + } + + $class = $class->getName(); + } + + return in_array($class, $this->getParentClassNameList()); + } + + /** + * Returns parent class reflection. + * + * @return \TokenReflection\Php\ReflectionClass + */ + public function getParentClass() + { + $parent = parent::getParentClass(); + return $parent ? self::create($parent, $this->broker) : null; + } + + /** + * Returns the parent class name. + * + * @return string + */ + public function getParentClassName() + { + $parent = $this->getParentClass(); + return $parent ? $parent->getName() : null; + } + + /** + * Returns the parent classes reflections. + * + * @return array + */ + public function getParentClasses() + { + $broker = $this->broker; + return array_map(function($className) use ($broker) { + return $broker->getClass($className); + }, $this->getParentClassNameList()); + } + + /** + * Returns the parent classes names. + * + * @return array + */ + public function getParentClassNameList() + { + return class_parents($this->getName()); + } + + /** + * Returns if the class implements the given interface. + * + * @param string|object $interface Interface name or reflection object + * @return boolean + * @throws \TokenReflection\Exception\RuntimeException If the provided parameter is not an interface. + */ + public function implementsInterface($interface) + { + if (is_object($interface)) { + if (!$interface instanceof InternalReflectionClass && !$interface instanceof IReflectionClass) { + throw new Exception\RuntimeException('Parameter must be a string or an instance of class reflection.', Exception\RuntimeException::INVALID_ARGUMENT, $this); + } + + $interfaceName = $interface->getName(); + + if (!$interface->isInterface()) { + throw new Exception\RuntimeException(sprintf('"%s" is not an interface.', $interfaceName), Exception\RuntimeException::INVALID_ARGUMENT, $this); + } + } else { + $reflection = $this->getBroker()->getClass($interface); + if (!$reflection->isInterface()) { + throw new Exception\RuntimeException(sprintf('"%s" is not an interface.', $interface), Exception\RuntimeException::INVALID_ARGUMENT, $this); + } + + $interfaceName = $interface; + } + + $interfaces = $this->getInterfaces(); + return isset($interfaces[$interfaceName]); + } + + /** + * Returns an array of interface reflections. + * + * @return array + */ + public function getInterfaces() + { + if (null === $this->interfaces) { + $broker = $this->broker; + $interfaceNames = $this->getInterfaceNames(); + + if (empty($interfaceNames)) { + $this->interfaces = array(); + } else { + $this->interfaces = array_combine($interfaceNames, array_map(function($interfaceName) use ($broker) { + return $broker->getClass($interfaceName); + }, $interfaceNames)); + } + } + + return $this->interfaces; + } + + /** + * Returns interfaces implemented by this class, not its parents. + * + * @return array + */ + public function getOwnInterfaces() + { + $parent = $this->getParentClass(); + return $parent ? array_diff_key($this->getInterfaces(), $parent->getInterfaces()) : $this->getInterfaces(); + } + + /** + * Returns names of interfaces implemented by this class, not its parents. + * + * @return array + */ + public function getOwnInterfaceNames() + { + return array_keys($this->getOwnInterfaces()); + } + + /** + * Returns class constructor reflection. + * + * @return \TokenReflection\Php\ReflectionClass|null + */ + public function getConstructor() + { + return ReflectionMethod::create(parent::getConstructor(), $this->broker); + } + + /** + * Returns class desctructor reflection. + * + * @return \TokenReflection\Php\ReflectionClass|null + */ + public function getDestructor() + { + foreach ($this->getMethods() as $method) { + if ($method->isDestructor()) { + return $method; + } + } + + return null; + } + + /** + * Returns a particular method reflection. + * + * @param string $name Method name + * @return \TokenReflection\Php\ReflectionMethod + * @throws \TokenReflection\Exception\RuntimeException If the requested method does not exist. + */ + public function getMethod($name) + { + foreach ($this->getMethods() as $method) { + if ($method->getName() === $name) { + return $method; + } + } + + throw new Exception\RuntimeException(sprintf('Method %s does not exist.', $name), Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + /** + * Returns class methods. + * + * @param integer $filter Methods filter + * @return array + */ + public function getMethods($filter = null) + { + if (null === $this->methods) { + $broker = $this->broker; + $this->methods = array_map(function(InternalReflectionMethod $method) use ($broker) { + return ReflectionMethod::create($method, $broker); + }, parent::getMethods()); + } + + if (null === $filter) { + return $this->methods; + } + + return array_filter($this->methods, function(ReflectionMethod $method) use ($filter) { + return (bool) ($method->getModifiers() & $filter); + }); + } + + /** + * Returns if the class implements (and not its parents) the given method. + * + * @param string $name Method name + * @return boolean + */ + public function hasOwnMethod($name) + { + foreach ($this->getOwnMethods() as $method) { + if ($name === $method->getName()) { + return true; + } + } + + return false; + } + + /** + * Returns methods declared by this class, not its parents. + * + * @param integer $filter + * @return array + */ + public function getOwnMethods($filter = null) + { + $me = $this->getName(); + return array_filter($this->getMethods($filter), function(ReflectionMethod $method) use ($me) { + return $method->getDeclaringClass()->getName() === $me; + }); + } + + /** + * Returns if the class imports the given method from traits. + * + * @param string $name Method name + * @return boolean + * @todo Impossible with the current status of reflection + */ + public function hasTraitMethod($name) + { + return false; + } + + /** + * Returns method reflections imported from traits. + * + * @param integer $filter Methods filter + * @return array + * @todo Impossible with the current status of reflection + */ + public function getTraitMethods($filter = null) + { + return array(); + } + + /** + * Returns a constant reflection. + * + * @param string $name Constant name + * @return \TokenReflection\ReflectionConstant + * @throws \TokenReflection\Exception\RuntimeException If the requested constant does not exist. + */ + public function getConstantReflection($name) + { + if ($this->hasConstant($name)) { + return new ReflectionConstant($name, $this->getConstant($name), $this->broker, $this); + } + + throw new Exception\RuntimeException(sprintf('Constant "%s" does not exist.', $name), Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + /** + * Returns an array of constant reflections. + * + * @return array + */ + public function getConstantReflections() + { + if (null === $this->constants) { + $this->constants = array(); + foreach ($this->getConstants() as $name => $value) { + $this->constants[$name] = $this->getConstantReflection($name); + } + } + + return array_values($this->constants); + } + + /** + * Returns if the class (and not its parents) defines the given constant. + * + * @param string $name Constant name. + * @return boolean + */ + public function hasOwnConstant($name) + { + $constants = $this->getOwnConstants(); + return isset($constants[$name]); + } + + /** + * Returns constants declared by this class, not its parents. + * + * @return array + */ + public function getOwnConstants() + { + return array_diff_assoc($this->getConstants(), $this->getParentClass() ? $this->getParentClass()->getConstants() : array()); + } + + /** + * Returns an array of constant reflections defined by this class and not its parents. + * + * @return array + */ + public function getOwnConstantReflections() + { + $constants = array(); + foreach ($this->getOwnConstants() as $name => $value) { + $constants[] = $this->getConstantReflection($name); + } + return $constants; + } + + /** + * Returns a particular property reflection. + * + * @param string $name Property name + * @return \TokenReflection\Php\ReflectionProperty + * @throws \TokenReflection\Exception\RuntimeException If the requested property does not exist. + */ + public function getProperty($name) + { + foreach ($this->getProperties() as $property) { + if ($name === $property->getName()) { + return $property; + } + } + + throw new Exception\RuntimeException(sprintf('Property %s does not exist.', $name), Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + /** + * Returns class properties. + * + * @param integer $filter Properties filter + * @return array + */ + public function getProperties($filter = null) + { + if (null === $this->properties) { + $broker = $this->broker; + $this->properties = array_map(function(InternalReflectionProperty $property) use ($broker) { + return ReflectionProperty::create($property, $broker); + }, parent::getProperties()); + } + + if (null === $filter) { + return $this->properties; + } + + return array_filter($this->properties, function(ReflectionProperty $property) use ($filter) { + return (bool) ($property->getModifiers() & $filter); + }); + } + + /** + * Returns if the class has (and not its parents) the given property. + * + * @param string $name Property name + * @return boolean + */ + public function hasOwnProperty($name) + { + foreach ($this->getOwnProperties() as $property) { + if ($name === $property->getName()) { + return true; + } + } + + return false; + } + + /** + * Returns properties declared by this class, not its parents. + * + * @param integer $filter + * @return array + */ + public function getOwnProperties($filter = null) + { + $me = $this->getName(); + return array_filter($this->getProperties($filter), function(ReflectionProperty $property) use ($me) { + return $property->getDeclaringClass()->getName() === $me; + }); + } + + /** + * Returns if the class imports the given property from traits. + * + * @param string $name Property name + * @return boolean + * @todo Impossible with the current status of reflection + */ + public function hasTraitProperty($name) + { + return false; + } + + /** + * Returns property reflections imported from traits. + * + * @param integer $filter Properties filter + * @return array + * @todo Impossible with the current status of reflection + */ + public function getTraitProperties($filter = null) + { + return array(); + } + + /** + * Returns static properties reflections. + * + * @return array + */ + public function getStaticProperties() + { + return $this->getProperties(InternalReflectionProperty::IS_STATIC); + } + + /** + * Returns reflections of direct subclasses. + * + * @return array + */ + public function getDirectSubclasses() + { + $that = $this->name; + return array_filter($this->getBroker()->getClasses(Broker\Backend::INTERNAL_CLASSES | Broker\Backend::TOKENIZED_CLASSES), function(IReflectionClass $class) use ($that) { + if (!$class->isSubclassOf($that)) { + return false; + } + + return null === $class->getParentClassName() || !$class->getParentClass()->isSubClassOf($that); + }); + } + + /** + * Returns names of direct subclasses. + * + * @return array + */ + public function getDirectSubclassNames() + { + return array_keys($this->getDirectSubclasses()); + } + + /** + * Returns reflections of indirect subclasses. + * + * @return array + */ + public function getIndirectSubclasses() + { + $that = $this->name; + return array_filter($this->getBroker()->getClasses(Broker\Backend::INTERNAL_CLASSES | Broker\Backend::TOKENIZED_CLASSES), function(IReflectionClass $class) use ($that) { + if (!$class->isSubclassOf($that)) { + return false; + } + + return null !== $class->getParentClassName() && $class->getParentClass()->isSubClassOf($that); + }); + } + + /** + * Returns names of indirect subclasses. + * + * @return array + */ + public function getIndirectSubclassNames() + { + return array_keys($this->getIndirectSubclasses()); + } + + /** + * Returns reflections of classes directly implementing this interface. + * + * @return array + */ + public function getDirectImplementers() + { + if (!$this->isInterface()) { + return array(); + } + + $that = $this->name; + return array_filter($this->getBroker()->getClasses(Broker\Backend::INTERNAL_CLASSES | Broker\Backend::TOKENIZED_CLASSES), function(IReflectionClass $class) use ($that) { + if (!$class->implementsInterface($that)) { + return false; + } + + return null === $class->getParentClassName() || !$class->getParentClass()->implementsInterface($that); + }); + } + + /** + * Returns names of classes directly implementing this interface. + * + * @return array + */ + public function getDirectImplementerNames() + { + return array_keys($this->getDirectImplementers()); + } + + /** + * Returns reflections of classes indirectly implementing this interface. + * + * @return array + */ + public function getIndirectImplementers() + { + if (!$this->isInterface()) { + return array(); + } + + $that = $this->name; + return array_filter($this->getBroker()->getClasses(Broker\Backend::INTERNAL_CLASSES | Broker\Backend::TOKENIZED_CLASSES), function(IReflectionClass $class) use ($that) { + if (!$class->implementsInterface($that)) { + return false; + } + + return null !== $class->getParentClassName() && $class->getParentClass()->implementsInterface($that); + }); + } + + /** + * Returns names of classes indirectly implementing this interface. + * + * @return array + */ + public function getIndirectImplementerNames() + { + return array_keys($this->getIndirectImplementers()); + } + + /** + * Returns if the class definition is complete. + * + * Internal classes always have the definition complete. + * + * @return boolean + */ + public function isComplete() + { + return true; + } + + /** + * Returns if the class definition is valid. + * + * Internal classes are always valid. + * + * @return boolean + */ + public function isValid() + { + return true; + } + + /** + * Returns imported namespaces and aliases from the declaring namespace. + * + * @return array + */ + public function getNamespaceAliases() + { + return array(); + } + + /** + * Returns the reflection broker used by this reflection object. + * + * @return \TokenReflection\Broker + */ + public function getBroker() + { + return $this->broker; + } + + /** + * Magic __get method. + * + * @param string $key Variable name + * @return mixed + */ + final public function __get($key) + { + return TokenReflection\ReflectionElement::get($this, $key); + } + + /** + * Magic __isset method. + * + * @param string $key Variable name + * @return boolean + */ + final public function __isset($key) + { + return TokenReflection\ReflectionElement::exists($this, $key); + } + + /** + * Returns traits used by this class. + * + * @return array + */ + public function getTraits() + { + return NATIVE_TRAITS ? parent::getTraits() : array(); + } + + /** + * Returns traits used by this class and not its parents. + * + * @return array + */ + public function getOwnTraits() + { + if (!NATIVE_TRAITS) { + return array(); + } + + $parent = $this->getParentClass(); + return $parent ? array_diff_key($this->getTraits(), $parent->getTraits()) : $this->getTraits(); + } + + /** + * Returns names of used traits. + * + * @return array + */ + public function getTraitNames() + { + return NATIVE_TRAITS ? parent::getTraitNames() : array(); + } + + /** + * Returns traits used by this class and not its parents. + * + * @return array + */ + public function getOwnTraitNames() + { + return array_keys($this->getOwnTraits()); + } + + /** + * Returns method aliases from traits. + * + * @return array + */ + public function getTraitAliases() + { + return NATIVE_TRAITS ? parent::getTraitAliases() : array(); + } + + /** + * Returns if the class is a trait. + * + * @return boolean + */ + public function isTrait() + { + return NATIVE_TRAITS && parent::isTrait(); + } + + /** + * Returns if the class uses a particular trait. + * + * @param \ReflectionClass|\TokenReflection\IReflectionClass|string $trait Trait reflection or name + * @return boolean + * @throws \TokenReflection\Exception\RuntimeException If an invalid parameter was provided. + */ + public function usesTrait($trait) + { + if (is_object($trait)) { + if (!$trait instanceof InternalReflectionClass && !$trait instanceof TokenReflection\IReflectionClass) { + throw new Exception\RuntimeException('Parameter must be a string or an instance of trait reflection.', Exception\RuntimeException::INVALID_ARGUMENT, $this); + } + + $traitName = $trait->getName(); + + if (!$trait->isTrait()) { + throw new Exception\RuntimeException(sprintf('"%s" is not a trait.', $traitName), Exception\RuntimeException::INVALID_ARGUMENT, $this); + } + } else { + $reflection = $this->getBroker()->getClass($trait); + if (!$reflection->isTrait()) { + throw new Exception\RuntimeException(sprintf('"%s" is not a trait.', $trait), Exception\RuntimeException::INVALID_ARGUMENT, $this); + } + + $traitName = $trait; + } + + return in_array($traitName, $this->getTraitNames()); + } + + /** + * Creates a new class instance without using a constructor. + * + * @return object + * @throws \TokenReflection\Exception\RuntimeException If the class inherits from an internal class. + */ + public function newInstanceWithoutConstructor() + { + if ($this->isInternal()) { + throw new Exception\RuntimeException('Could not create an instance; only user defined classes can be instantiated.', Exception\RuntimeException::UNSUPPORTED, $this); + } + + foreach ($this->getParentClasses() as $parent) { + if ($parent->isInternal()) { + throw new Exception\RuntimeException('Could not create an instance; only user defined classes can be instantiated.', Exception\RuntimeException::UNSUPPORTED, $this); + } + } + + if (PHP_VERSION_ID >= 50400) { + return parent::newInstanceWithoutConstructor(); + } + + return unserialize(sprintf('O:%d:"%s":0:{}', strlen($this->getName()), $this->getName())); + } + + /** + * Returns an element pretty (docblock compatible) name. + * + * @return string + */ + public function getPrettyName() + { + return $this->getName(); + } + + /** + * Creates a reflection instance. + * + * @param \ReflectionClass $internalReflection Internal reflection instance + * @param \TokenReflection\Broker $broker Reflection broker instance + * @return \TokenReflection\Php\ReflectionClass + * @throws \TokenReflection\Exception\RuntimeException If an invalid internal reflection object was provided. + */ + public static function create(Reflector $internalReflection, Broker $broker) + { + if (!$internalReflection instanceof InternalReflectionClass) { + throw new Exception\RuntimeException('Invalid reflection instance provided, ReflectionClass expected.', Exception\RuntimeException::INVALID_ARGUMENT); + } + + return $broker->getClass($internalReflection->getName()); + } +} diff --git a/apigen/libs/TokenReflection/TokenReflection/Php/ReflectionConstant.php b/apigen/libs/TokenReflection/TokenReflection/Php/ReflectionConstant.php new file mode 100644 index 00000000000..e0de08fa562 --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/Php/ReflectionConstant.php @@ -0,0 +1,486 @@ +name = $name; + $this->value = $value; + $this->broker = $broker; + + if (null !== $parent) { + $realParent = null; + + if (array_key_exists($name, $parent->getOwnConstants())) { + $realParent = $parent; + } + + if (null === $realParent) { + foreach ($parent->getParentClasses() as $grandParent) { + if (array_key_exists($name, $grandParent->getOwnConstants())) { + $realParent = $grandParent; + break; + } + } + } + + if (null === $realParent) { + foreach ($parent->getInterfaces() as $interface) { + if (array_key_exists($name, $interface->getOwnConstants())) { + $realParent = $interface; + break; + } + } + } + + if (null === $realParent) { + throw new Exception\RuntimeException('Could not determine constant real parent class.', Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + $this->declaringClassName = $realParent->getName(); + $this->userDefined = $realParent->isUserDefined(); + } else { + if (!array_key_exists($name, get_defined_constants(false))) { + $this->userDefined = true; + } else { + $declared = get_defined_constants(true); + $this->userDefined = array_key_exists($name, $declared['user']); + } + } + } + + /** + * Returns the name. + * + * @return string + */ + public function getName() + { + return $this->name; + } + + /** + * Returns the unqualified name (UQN). + * + * @return string + */ + public function getShortName() + { + $name = $this->getName(); + if (null !== $this->namespaceName && $this->namespaceName !== ReflectionNamespace::NO_NAMESPACE_NAME) { + $name = substr($name, strlen($this->namespaceName) + 1); + } + + return $name; + } + + /** + * Returns the declaring class reflection. + * + * @return \TokenReflection\IReflectionClass|null + */ + public function getDeclaringClass() + { + if (null === $this->declaringClassName) { + return null; + } + + return $this->getBroker()->getClass($this->declaringClassName); + } + + /** + * Returns the declaring class name. + * + * @return string|null + */ + public function getDeclaringClassName() + { + return $this->declaringClassName; + } + + /** + * Returns the namespace name. + * + * @return string + */ + public function getNamespaceName() + { + return $this->namespaceName === TokenReflection\ReflectionNamespace::NO_NAMESPACE_NAME ? '' : $this->namespaceName; + } + + /** + * Returns if the function/method is defined within a namespace. + * + * @return boolean + */ + public function inNamespace() + { + return '' !== $this->getNamespaceName(); + } + + /** + * Returns the PHP extension reflection. + * + * @return null + */ + public function getExtension() + { + // @todo + return null; + } + + /** + * Returns the PHP extension name. + * + * @return boolean + */ + public function getExtensionName() + { + return false; + } + + /** + * Returns the file name the reflection object is defined in. + * + * @return null + */ + public function getFileName() + { + return null; + } + + /** + * Returns the definition start line number in the file. + * + * @return null + */ + public function getStartLine() + { + return null; + } + + /** + * Returns the definition end line number in the file. + * + * @return null + */ + public function getEndLine() + { + return null; + } + + /** + * Returns the appropriate docblock definition. + * + * @return boolean + */ + public function getDocComment() + { + return false; + } + + /** + * Checks if there is a particular annotation. + * + * @param string $name Annotation name + * @return boolean + */ + public function hasAnnotation($name) + { + return false; + } + + /** + * Returns a particular annotation value. + * + * @param string $name Annotation name + * @return null + */ + public function getAnnotation($name) + { + return null; + } + + /** + * Returns parsed docblock. + * + * @return array + */ + public function getAnnotations() + { + return array(); + } + + /** + * Returns the constant value. + * + * @return mixed + */ + public function getValue() + { + return $this->value; + } + + /** + * Returns the part of the source code defining the constant value. + * + * @return string + */ + public function getValueDefinition() + { + return var_export($this->value, true); + } + + /** + * Returns the originaly provided value definition. + * + * @return string + */ + public function getOriginalValueDefinition() + { + return token_get_all($this->getValueDefinition()); + } + + /** + * Returns if the constant is internal. + * + * @return boolean + */ + public function isInternal() + { + return !$this->userDefined; + } + + /** + * Returns if the constant is user defined. + * + * @return boolean + */ + public function isUserDefined() + { + return $this->userDefined; + } + + /** + * Returns if the current reflection comes from a tokenized source. + * + * @return boolean + */ + public function isTokenized() + { + return false; + } + + /** + * Returns if the reflection subject is deprecated. + * + * @return boolean + */ + public function isDeprecated() + { + return false; + } + + /** + * Returns an element pretty (docblock compatible) name. + * + * @return string + */ + public function getPrettyName() + { + return null === $this->declaringClassName ? $this->name : sprintf('%s::%s', $this->declaringClassName, $this->name); + } + + /** + * Returns the string representation of the reflection object. + * + * @return string + */ + public function __toString() + { + return sprintf( + "Constant [ %s %s ] { %s }\n", + gettype($this->getValue()), + $this->getName(), + $this->getValue() + ); + } + + /** + * Exports a reflected object. + * + * @param \TokenReflection\Broker $broker Broker instance + * @param string|object|null $class Class name, class instance or null + * @param string $constant Constant name + * @param boolean $return Return the export instead of outputting it + * @return string|null + * @throws \TokenReflection\Exception\RuntimeException If requested parameter doesn't exist. + */ + public static function export(Broker $broker, $class, $constant, $return = false) + { + $className = is_object($class) ? get_class($class) : $class; + $constantName = $constant; + + if (null === $className) { + try { + $constant = $broker->getConstant($constantName); + } catch (Exception\BrokerException $e) { + throw new Exception\RuntimeException(sprintf('Constant %s does not exist.', $constantName), Exception\RuntimeException::DOES_NOT_EXIST); + } + } else { + $class = $broker->getClass($className); + if ($class instanceof Invalid\ReflectionClass) { + throw new Exception\RuntimeException('Class is invalid.', Exception\RuntimeException::UNSUPPORTED); + } elseif ($class instanceof Dummy\ReflectionClass) { + throw new Exception\RuntimeException(sprintf('Class %s does not exist.', $className), Exception\RuntimeException::DOES_NOT_EXIST); + } + $constant = $class->getConstantReflection($constantName); + } + + if ($return) { + return $constant->__toString(); + } + + echo $constant->__toString(); + } + + /** + * Returns the reflection broker used by this reflection object. + * + * @return \TokenReflection\Broker + */ + public function getBroker() + { + return $this->broker; + } + + /** + * Returns imported namespaces and aliases from the declaring namespace. + * + * @return array + */ + public function getNamespaceAliases() + { + return array(); + } + + /** + * Returns if the constant definition is valid. + * + * Internal constants are always valid. + * + * @return boolean + */ + public function isValid() + { + return true; + } + + /** + * Magic __get method. + * + * @param string $key Variable name + * @return mixed + */ + final public function __get($key) + { + return TokenReflection\ReflectionElement::get($this, $key); + } + + /** + * Magic __isset method. + * + * @param string $key Variable name + * @return boolean + */ + final public function __isset($key) + { + return TokenReflection\ReflectionElement::exists($this, $key); + } + + /** + * Creates a reflection instance. + * + * Not supported for constants since there is no internal constant reflection. + * + * @param \ReflectionClass $internalReflection Internal reflection instance + * @param \TokenReflection\Broker $broker Reflection broker instance + * @return null + */ + public static function create(Reflector $internalReflection, Broker $broker) + { + return null; + } +} diff --git a/apigen/libs/TokenReflection/TokenReflection/Php/ReflectionExtension.php b/apigen/libs/TokenReflection/TokenReflection/Php/ReflectionExtension.php new file mode 100644 index 00000000000..20bbe7b96f9 --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/Php/ReflectionExtension.php @@ -0,0 +1,282 @@ +broker = $broker; + } + + /** + * Returns if the constant is internal. + * + * @return boolean + */ + public function isInternal() + { + return true; + } + + /** + * Returns if the constant is user defined. + * + * @return boolean + */ + public function isUserDefined() + { + return false; + } + + /** + * Returns if the current reflection comes from a tokenized source. + * + * @return boolean + */ + public function isTokenized() + { + return false; + } + + /** + * Returns if the reflection subject is deprecated. + * + * @return boolean + */ + public function isDeprecated() + { + return false; + } + + /** + * Returns a class reflection. + * + * @param string $name Class name + * @return \TokenReflection\IReflectionClass|null + */ + public function getClass($name) + { + $classes = $this->getClasses(); + return isset($classes[$name]) ? $classes[$name] : null; + } + + /** + * Returns classes defined by this extension. + * + * @return array + */ + public function getClasses() + { + if (null === $this->classes) { + $broker = $this->broker; + $this->classes = array_map(function($className) use ($broker) { + return $broker->getClass($className); + }, $this->getClassNames()); + } + + return $this->classes; + } + + /** + * Returns a constant value. + * + * @param string $name Constant name + * @return mixed|false + */ + public function getConstant($name) + { + $constants = $this->getConstants(); + return isset($constants[$name]) ? $constants[$name] : false; + } + + /** + * Returns a constant reflection. + * + * @param string $name Constant name + * @return \TokenReflection\IReflectionConstant + */ + public function getConstantReflection($name) + { + $constants = $this->getConstantReflections(); + return isset($constants[$name]) ? $constants[$name] : null; + } + + /** + * Returns reflections of defined constants. + * + * @return array + */ + public function getConstantReflections() + { + if (null === $this->constants) { + $broker = $this->broker; + $this->constants = array_map(function($constantName) use ($broker) { + return $broker->getConstant($constantName); + }, array_keys($this->getConstants())); + } + + return $this->constants; + } + + /** + * Returns a function reflection. + * + * @param string $name Function name + * @return \TokenReflection\IReflectionFunction + */ + public function getFunction($name) + { + $functions = $this->getFunctions(); + return isset($functions[$name]) ? $functions[$name] : null; + } + + /** + * Returns functions defined by this extension. + * + * @return array + */ + public function getFunctions() + { + if (null === $this->functions) { + $broker = $this->broker; + $this->classes = array_map(function($functionName) use ($broker) { + return $broker->getFunction($functionName); + }, array_keys(parent::getFunctions())); + } + + return $this->functions; + } + + /** + * Returns names of functions defined by this extension. + * + * @return array + */ + public function getFunctionNames() + { + return array_keys($this->getFunctions()); + } + + /** + * Returns an element pretty (docblock compatible) name. + * + * @return string + */ + public function getPrettyName() + { + return $this->getName(); + } + + /** + * Returns the reflection broker used by this reflection object. + * + * @return \TokenReflection\Broker + */ + public function getBroker() + { + return $this->broker; + } + + /** + * Magic __get method. + * + * @param string $key Variable name + * @return mixed + */ + final public function __get($key) + { + return TokenReflection\ReflectionElement::get($this, $key); + } + + /** + * Magic __isset method. + * + * @param string $key Variable name + * @return boolean + */ + final public function __isset($key) + { + return TokenReflection\ReflectionElement::exists($this, $key); + } + + /** + * Creates a reflection instance. + * + * @param \ReflectionClass $internalReflection Internal reflection instance + * @param \TokenReflection\Broker $broker Reflection broker instance + * @return \TokenReflection\Php\ReflectionExtension + * @throws \TokenReflection\Exception\RuntimeException If an invalid internal reflection object was provided. + */ + public static function create(Reflector $internalReflection, Broker $broker) + { + static $cache = array(); + + if (!$internalReflection instanceof InternalReflectionExtension) { + throw new Exception\RuntimeException('Invalid reflection instance provided, ReflectionExtension expected.', Exception\RuntimeException::INVALID_ARGUMENT); + } + + if (!isset($cache[$internalReflection->getName()])) { + $cache[$internalReflection->getName()] = new self($internalReflection->getName(), $broker); + } + + return $cache[$internalReflection->getName()]; + } +} diff --git a/apigen/libs/TokenReflection/TokenReflection/Php/ReflectionFunction.php b/apigen/libs/TokenReflection/TokenReflection/Php/ReflectionFunction.php new file mode 100644 index 00000000000..63e47373496 --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/Php/ReflectionFunction.php @@ -0,0 +1,271 @@ +broker = $broker; + } + + /** + * Returns the PHP extension reflection. + * + * @return \TokenReflection\IReflectionExtension + */ + public function getExtension() + { + return ReflectionExtension::create(parent::getExtension(), $this->broker); + } + + /** + * Checks if there is a particular annotation. + * + * @param string $name Annotation name + * @return boolean + */ + public function hasAnnotation($name) + { + return false; + } + + /** + * Returns a particular annotation value. + * + * @param string $name Annotation name + * @return null + */ + public function getAnnotation($name) + { + return null; + } + + /** + * Returns parsed docblock. + * + * @return array + */ + public function getAnnotations() + { + return array(); + } + + /** + * Returns if the current reflection comes from a tokenized source. + * + * @return boolean + */ + public function isTokenized() + { + return false; + } + + /** + * Returns a particular parameter. + * + * @param integer|string $parameter Parameter name or position + * @return \TokenReflection\Php\ReflectionParameter + * @throws \TokenReflection\Exception\RuntimeException If there is no parameter of the given name. + * @throws \TokenReflection\Exception\RuntimeException If there is no parameter at the given position. + */ + public function getParameter($parameter) + { + $parameters = $this->getParameters(); + + if (is_numeric($parameter)) { + if (!isset($parameters[$parameter])) { + throw new Exception\RuntimeException(sprintf('There is no parameter at position "%d".', $parameter), Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + return $parameters[$parameter]; + } else { + foreach ($parameters as $reflection) { + if ($reflection->getName() === $parameter) { + return $reflection; + } + } + + throw new Exception\RuntimeException(sprintf('There is no parameter "%s".', $parameter), Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + } + + /** + * Returns function parameters. + * + * @return array + */ + public function getParameters() + { + if (null === $this->parameters) { + $broker = $this->broker; + $parent = $this; + $this->parameters = array_map(function(InternalReflectionParameter $parameter) use ($broker, $parent) { + return ReflectionParameter::create($parameter, $broker, $parent); + }, parent::getParameters()); + } + + return $this->parameters; + } + + /** + * Returns the reflection broker used by this reflection object. + * + * @return \TokenReflection\Broker + */ + public function getBroker() + { + return $this->broker; + } + + /** + * Returns imported namespaces and aliases from the declaring namespace. + * + * @return array + */ + public function getNamespaceAliases() + { + return array(); + } + + /** + * Magic __get method. + * + * @param string $key Variable name + * @return mixed + */ + final public function __get($key) + { + return TokenReflection\ReflectionElement::get($this, $key); + } + + /** + * Magic __isset method. + * + * @param string $key Variable name + * @return boolean + */ + final public function __isset($key) + { + return TokenReflection\ReflectionElement::exists($this, $key); + } + + /** + * Returns the function/method as closure. + * + * @return \Closure + */ + public function getClosure() + { + if (PHP_VERSION >= 50400) { + return parent::getClosure(); + } else { + $that = $this; + return function() use ($that) { + return $that->invokeArgs(func_get_args()); + }; + } + } + + /** + * Returns the closure scope class. + * + * @return string|null + */ + public function getClosureScopeClass() + { + return PHP_VERSION >= 50400 ? parent::getClosureScopeClass() : null; + } + + /** + * Returns this pointer bound to closure. + * + * @return null + */ + public function getClosureThis() + { + return PHP_VERSION >= 50400 ? parent::getClosureThis() : null; + } + + /** + * Returns if the function definition is valid. + * + * Internal functions are always valid. + * + * @return boolean + */ + public function isValid() + { + return true; + } + + /** + * Returns an element pretty (docblock compatible) name. + * + * @return string + */ + public function getPrettyName() + { + return $this->getName() . '()'; + } + + /** + * Creates a reflection instance. + * + * @param \ReflectionClass $internalReflection Internal reflection instance + * @param \TokenReflection\Broker $broker Reflection broker instance + * @return \TokenReflection\Php\ReflectionFunction + * @throws \TokenReflection\Exception\RuntimeException If an invalid internal reflection object was provided. + */ + public static function create(Reflector $internalReflection, Broker $broker) + { + if (!$internalReflection instanceof InternalReflectionFunction) { + throw new Exception\RuntimeException('Invalid reflection instance provided, ReflectionFunction expected.', Exception\RuntimeException::INVALID_ARGUMENT); + } + + return $broker->getFunction($internalReflection->getName()); + } +} \ No newline at end of file diff --git a/apigen/libs/TokenReflection/TokenReflection/Php/ReflectionMethod.php b/apigen/libs/TokenReflection/TokenReflection/Php/ReflectionMethod.php new file mode 100644 index 00000000000..7a0c90ff71e --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/Php/ReflectionMethod.php @@ -0,0 +1,385 @@ +broker = $broker; + } + + /** + * Returns the declaring class reflection. + * + * @return \TokenReflection\IReflectionClass + */ + public function getDeclaringClass() + { + return ReflectionClass::create(parent::getDeclaringClass(), $this->broker); + } + + /** + * Returns the declaring class name. + * + * @return string + */ + public function getDeclaringClassName() + { + return $this->getDeclaringClass()->getName(); + } + + /** + * Returns imported namespaces and aliases from the declaring namespace. + * + * @return array + */ + public function getNamespaceAliases() + { + return $this->getDeclaringClass()->getNamespaceAliases(); + } + + /** + * Checks if there is a particular annotation. + * + * @param string $name Annotation name + * @return boolean + */ + public function hasAnnotation($name) + { + return false; + } + + /** + * Returns a particular annotation value. + * + * @param string $name Annotation name + * @return null + */ + public function getAnnotation($name) + { + return null; + } + + /** + * Returns parsed docblock. + * + * @return array + */ + public function getAnnotations() + { + return array(); + } + + /** + * Returns if the current reflection comes from a tokenized source. + * + * @return boolean + */ + public function isTokenized() + { + return false; + } + + /** + * Returns the method prototype. + * + * @return \TokenReflection\Php\ReflectionMethod + */ + public function getPrototype() + { + return self::create(parent::getPrototype(), $this->broker); + } + + /** + * Returns a particular parameter. + * + * @param integer|string $parameter Parameter name or position + * @return \TokenReflection\Php\ReflectionParameter + * @throws \TokenReflection\Exception\RuntimeException If there is no parameter of the given name. + * @throws \TokenReflection\Exception\RuntimeException If there is no parameter at the given position. + */ + public function getParameter($parameter) + { + $parameters = $this->getParameters(); + + if (is_numeric($parameter)) { + if (!isset($parameters[$parameter])) { + throw new Exception\RuntimeException(sprintf('There is no parameter at position "%d".', $parameter), Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + return $parameters[$parameter]; + } else { + foreach ($parameters as $reflection) { + if ($reflection->getName() === $parameter) { + return $reflection; + } + } + + throw new Exception\RuntimeException(sprintf('There is no parameter "%s".', $parameter), Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + } + + /** + * Returns function parameters. + * + * @return array + */ + public function getParameters() + { + if (null === $this->parameters) { + $broker = $this->broker; + $parent = $this; + $this->parameters = array_map(function(InternalReflectionParameter $parameter) use ($broker, $parent) { + return ReflectionParameter::create($parameter, $broker, $parent); + }, parent::getParameters()); + } + + return $this->parameters; + } + + /** + * Returns if the method is set accessible. + * + * @return boolean + */ + public function isAccessible() + { + return $this->accessible; + } + + /** + * Sets a method to be accessible or not. + * + * Introduced in PHP 5.3.2. Throws an exception if run on an older version. + * + * @param boolean $accessible + * @throws \TokenReflection\Exception\RuntimeException If run on PHP version < 5.3.2. + */ + public function setAccessible($accessible) + { + if (PHP_VERSION_ID < 50302) { + throw new Exception\RuntimeException(sprintf('Method setAccessible was introduced the internal reflection in PHP 5.3.2, you are using %s.', PHP_VERSION), Exception\RuntimeException::UNSUPPORTED, $this); + } + + $this->accessible = $accessible; + + parent::setAccessible($accessible); + } + + /** + * Shortcut for isPublic(), ... methods that allows or-ed modifiers. + * + * @param integer $filter Filter + * @return boolean + */ + public function is($filter = null) + { + return null === $filter || ($this->getModifiers() & $filter); + } + + /** + * Returns the reflection broker used by this reflection object. + * + * @return \TokenReflection\Broker + */ + public function getBroker() + { + return $this->broker; + } + + /** + * Magic __get method. + * + * @param string $key Variable name + * @return mixed + */ + final public function __get($key) + { + return TokenReflection\ReflectionElement::get($this, $key); + } + + /** + * Magic __isset method. + * + * @param string $key Variable name + * @return boolean + */ + final public function __isset($key) + { + return TokenReflection\ReflectionElement::exists($this, $key); + } + + /** + * Returns the function/method as closure. + * + * @param object $object Object + * @return \Closure + */ + public function getClosure($object) + { + if (PHP_VERSION >= 50400) { + return parent::getClosure(); + } else { + $that = $this; + return function() use ($object, $that) { + return $that->invokeArgs($object, func_get_args()); + }; + } + } + + /** + * Returns the closure scope class. + * + * @return string|null + */ + public function getClosureScopeClass() + { + return PHP_VERSION >= 50400 ? parent::getClosureScopeClass() : null; + } + + /** + * Returns this pointer bound to closure. + * + * @return null + */ + public function getClosureThis() + { + return PHP_VERSION >= 50400 ? parent::getClosureThis() : null; + } + + /** + * Returns the original name when importing from a trait. + * + * @return string + */ + public function getOriginalName() + { + return null; + } + + /** + * Returns the original method when importing from a trait. + * + * @return null + */ + public function getOriginal() + { + return null; + } + + /** + * Returns the original modifiers value when importing from a trait. + * + * @return null + */ + public function getOriginalModifiers() + { + return null; + } + + /** + * Returns the defining trait. + * + * @return \TokenReflection\IReflectionClass|null + */ + public function getDeclaringTrait() + { + return null; + } + + /** + * Returns the declaring trait name. + * + * @return string|null + */ + public function getDeclaringTraitName() + { + return null; + } + + /** + * Returns an element pretty (docblock compatible) name. + * + * @return string + */ + public function getPrettyName() + { + return sprintf('%s::%s()', $this->getDeclaringClassName(), $this->getName()); + } + + /** + * Creates a reflection instance. + * + * @param \ReflectionClass $internalReflection Internal reflection instance + * @param \TokenReflection\Broker $broker Reflection broker instance + * @return \TokenReflection\Php\IReflection + * @throws \TokenReflection\Exception\RuntimeException If an invalid internal reflection object was provided. + */ + public static function create(Reflector $internalReflection, Broker $broker) + { + static $cache = array(); + + if (!$internalReflection instanceof InternalReflectionMethod) { + throw new Exception\RuntimeException('Invalid reflection instance provided, ReflectionMethod expected.', Exception\RuntimeException::INVALID_ARGUMENT); + } + + $key = $internalReflection->getDeclaringClass()->getName() . '::' . $internalReflection->getName(); + if (!isset($cache[$key])) { + $cache[$key] = new self($internalReflection->getDeclaringClass()->getName(), $internalReflection->getName(), $broker); + } + + return $cache[$key]; + } +} diff --git a/apigen/libs/TokenReflection/TokenReflection/Php/ReflectionParameter.php b/apigen/libs/TokenReflection/TokenReflection/Php/ReflectionParameter.php new file mode 100644 index 00000000000..35cd7bba614 --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/Php/ReflectionParameter.php @@ -0,0 +1,368 @@ +broker = $broker; + $this->userDefined = $parent->isUserDefined(); + } + + /** + * Returns the declaring class reflection. + * + * @return \TokenReflection\IReflectionClass + */ + public function getDeclaringClass() + { + $class = parent::getDeclaringClass(); + return $class ? ReflectionClass::create($class, $this->broker) : null; + } + + /** + * Returns the declaring class name. + * + * @return string|null + */ + public function getDeclaringClassName() + { + $class = parent::getDeclaringClass(); + return $class ? $class->getName() : null; + } + + /** + * Returns imported namespaces and aliases from the declaring namespace. + * + * @return array + */ + public function getNamespaceAliases() + { + return $this->getDeclaringFunction()->getNamespaceAliases(); + } + + /** + * Returns the file name the reflection object is defined in. + * + * @return string + */ + public function getFileName() + { + return $this->getDeclaringFunction()->getFileName(); + } + + /** + * Returns the PHP extension reflection. + * + * @return \TokenReflection\Php\ReflectionExtension + */ + public function getExtension() + { + return $this->getDeclaringFunction()->getExtension(); + } + + /** + * Returns the PHP extension name. + * + * @return string|boolean + */ + public function getExtensionName() + { + $extension = $this->getExtension(); + return $extension ? $extension->getName() : false; + } + + /** + * Checks if there is a particular annotation. + * + * @param string $name Annotation name + * @return boolean + */ + public function hasAnnotation($name) + { + return false; + } + + /** + * Returns a particular annotation value. + * + * @param string $name Annotation name + * @return null + */ + public function getAnnotation($name) + { + return null; + } + + /** + * Returns parsed docblock. + * + * @return array + */ + public function getAnnotations() + { + return array(); + } + + /** + * Returns the declaring function reflection. + * + * @return \TokenReflection\Php\ReflectionFunction|\TokenReflection\Php\ReflectionMethod + */ + public function getDeclaringFunction() + { + $class = $this->getDeclaringClass(); + $function = parent::getDeclaringFunction(); + + return $class ? $class->getMethod($function->getName()) : ReflectionFunction::create($function, $this->broker); + } + + /** + * Returns the declaring function name. + * + * @return string|null + */ + public function getDeclaringFunctionName() + { + $function = parent::getDeclaringFunction(); + return $function ? $function->getName() : $function; + } + + /** + * Returns the definition start line number in the file. + * + * @return null + */ + public function getStartLine() + { + return null; + } + + /** + * Returns the definition end line number in the file. + * + * @return null + */ + public function getEndLine() + { + return null; + } + + /** + * Returns the appropriate docblock definition. + * + * @return boolean + */ + public function getDocComment() + { + return false; + } + + /** + * Returns the part of the source code defining the paramter default value. + * + * @return string|null + */ + public function getDefaultValueDefinition() + { + $value = $this->getDefaultValue(); + return null === $value ? null : var_export($value, true); + } + + /** + * Returns if the parameter expects a callback. + * + * @return boolean + */ + public function isCallable() + { + return PHP_VERSION >= 50400 && parent::isCallable(); + } + + /** + * Returns the original type hint as defined in the source code. + * + * @return string|null + */ + public function getOriginalTypeHint() + { + return !$this->isArray() && !$this->isCallable() ? $this->getClass() : null; + } + + /** + * Returns the required class name of the value. + * + * @return string|null + */ + public function getClassName() + { + return $this->getClass() ? $this->getClass()->getName() : null; + } + + /** + * Returns if the parameter is internal. + * + * @return boolean + */ + public function isInternal() + { + return !$this->userDefined; + } + + /** + * Returns if the parameter is user defined. + * + * @return boolean + */ + public function isUserDefined() + { + return $this->userDefined; + } + + /** + * Returns if the current reflection comes from a tokenized source. + * + * @return boolean + */ + public function isTokenized() + { + return false; + } + + /** + * Returns if the reflection subject is deprecated. + * + * @return boolean + */ + public function isDeprecated() + { + return false; + } + + /** + * Returns the reflection broker used by this reflection object. + * + * @return \TokenReflection\Broker + */ + public function getBroker() + { + return $this->broker; + } + + /** + * Returns if the paramter value can be passed by value. + * + * @return boolean + */ + public function canBePassedByValue() + { + return method_exists($this, 'canBePassedByValue') ? parent::canBePassedByValue() : !$this->isPassedByReference(); + } + + /** + * Returns an element pretty (docblock compatible) name. + * + * @return string + */ + public function getPrettyName() + { + return str_replace('()', '($' . $this->getName() . ')', $this->getDeclaringFunction()->getPrettyName()); + } + + /** + * Magic __get method. + * + * @param string $key Variable name + * @return mixed + */ + final public function __get($key) + { + return TokenReflection\ReflectionElement::get($this, $key); + } + + /** + * Magic __isset method. + * + * @param string $key Variable name + * @return boolean + */ + final public function __isset($key) + { + return TokenReflection\ReflectionElement::exists($this, $key); + } + + /** + * Creates a reflection instance. + * + * @param \ReflectionClass $internalReflection Internal reflection instance + * @param \TokenReflection\Broker $broker Reflection broker instance + * @return \TokenReflection\Php\ReflectionParameter + * @throws \TokenReflection\Exception\RuntimeException If an invalid internal reflection object was provided. + */ + public static function create(Reflector $internalReflection, Broker $broker) + { + static $cache = array(); + + if (!$internalReflection instanceof InternalReflectionParameter) { + throw new Exception\RuntimeException('Invalid reflection instance provided, ReflectionParameter expected.', Exception\RuntimeException::INVALID_ARGUMENT); + } + + $class = $internalReflection->getDeclaringClass(); + $function = $internalReflection->getDeclaringFunction(); + + $key = $class ? $class->getName() . '::' : ''; + $key .= $function->getName() . '(' . $internalReflection->getName() . ')'; + + if (!isset($cache[$key])) { + $cache[$key] = new self($class ? array($class->getName(), $function->getName()) : $function->getName(), $internalReflection->getName(), $broker, $function); + } + + return $cache[$key]; + } +} diff --git a/apigen/libs/TokenReflection/TokenReflection/Php/ReflectionProperty.php b/apigen/libs/TokenReflection/TokenReflection/Php/ReflectionProperty.php new file mode 100644 index 00000000000..fc0c192da06 --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/Php/ReflectionProperty.php @@ -0,0 +1,348 @@ +broker = $broker; + } + + /** + * Returns the declaring class reflection. + * + * @return \TokenReflection\IReflectionClass + */ + public function getDeclaringClass() + { + return ReflectionClass::create(parent::getDeclaringClass(), $this->broker); + } + + /** + * Returns the declaring class name. + * + * @return string + */ + public function getDeclaringClassName() + { + return $this->getDeclaringClass()->getName(); + } + + /** + * Returns the definition start line number in the file. + * + * @return null + */ + public function getStartLine() + { + return null; + } + + /** + * Returns the definition end line number in the file. + * + * @return null + */ + public function getEndLine() + { + return null; + } + + /** + * Returns the appropriate docblock definition. + * + * @return boolean + */ + public function getDocComment() + { + return false; + } + + /** + * Checks if there is a particular annotation. + * + * @param string $name Annotation name + * @return boolean + */ + public function hasAnnotation($name) + { + return false; + } + + /** + * Returns a particular annotation value. + * + * @param string $name Annotation name + * @return null + */ + public function getAnnotation($name) + { + return null; + } + + /** + * Returns parsed docblock. + * + * @return array + */ + public function getAnnotations() + { + return array(); + } + + /** + * Returns the property default value. + * + * @return mixed + */ + public function getDefaultValue() + { + $values = $this->getDeclaringClass()->getDefaultProperties(); + return $values[$this->getName()]; + } + + /** + * Returns the part of the source code defining the property default value. + * + * @return string + */ + public function getDefaultValueDefinition() + { + $value = $this->getDefaultValue(); + return null === $value ? null : var_export($value, true); + } + + /** + * Returns if the property is internal. + * + * @return boolean + */ + public function isInternal() + { + return $this->getDeclaringClass()->isInternal(); + } + + /** + * Returns if the property is user defined. + * + * @return boolean + */ + public function isUserDefined() + { + return $this->getDeclaringClass()->isUserDefined(); + } + + /** + * Returns if the current reflection comes from a tokenized source. + * + * @return boolean + */ + public function isTokenized() + { + return false; + } + + /** + * Returns if the reflection subject is deprecated. + * + * @return boolean + */ + public function isDeprecated() + { + return false; + } + + /** + * Returns the reflection broker used by this reflection object. + * + * @return \TokenReflection\Broker + */ + public function getBroker() + { + return $this->broker; + } + + /** + * Returns imported namespaces and aliases from the declaring namespace. + * + * @return array + */ + public function getNamespaceAliases() + { + return array(); + } + + /** + * Returns the defining trait. + * + * @return \TokenReflection\IReflectionClass|null + */ + public function getDeclaringTrait() + { + return null; + } + + /** + * Returns the declaring trait name. + * + * @return string|null + */ + public function getDeclaringTraitName() + { + return null; + } + + /** + * Returns if the property is set accessible. + * + * @return boolean + */ + public function isAccessible() + { + return $this->accessible; + } + + /** + * Sets a property to be accessible or not. + * + * @param boolean $accessible If the property should be accessible. + */ + public function setAccessible($accessible) + { + $this->accessible = (bool) $accessible; + + parent::setAccessible($accessible); + } + + /** + * Returns the PHP extension reflection. + * + * @return \TokenReflection\Php\ReflectionExtension + */ + public function getExtension() + { + return $this->getDeclaringClass()->getExtension(); + } + + /** + * Returns the PHP extension name. + * + * @return string|boolean + */ + public function getExtensionName() + { + $extension = $this->getExtension(); + return $extension ? $extension->getName() : false; + } + + /** + * Returns the file name the reflection object is defined in. + * + * @return string + */ + public function getFileName() + { + return $this->getDeclaringClass()->getFileName(); + } + + /** + * Returns an element pretty (docblock compatible) name. + * + * @return string + */ + public function getPrettyName() + { + return sprintf('%s::$%s', $this->getDeclaringClassName(), $this->getName()); + } + + /** + * Magic __get method. + * + * @param string $key Variable name + * @return mixed + */ + final public function __get($key) + { + return TokenReflection\ReflectionElement::get($this, $key); + } + + /** + * Magic __isset method. + * + * @param string $key Variable name + * @return boolean + */ + final public function __isset($key) + { + return TokenReflection\ReflectionElement::exists($this, $key); + } + + /** + * Creates a reflection instance. + * + * @param \ReflectionClass $internalReflection Internal reflection instance + * @param \TokenReflection\Broker $broker Reflection broker instance + * @return \TokenReflection\Php\ReflectionProperty + * @throws \TokenReflection\Exception\RuntimeException If an invalid internal reflection object was provided. + */ + public static function create(Reflector $internalReflection, Broker $broker) + { + static $cache = array(); + + if (!$internalReflection instanceof InternalReflectionProperty) { + throw new Exception\RuntimeException('Invalid reflection instance provided, ReflectionProperty expected.', Exception\RuntimeException::INVALID_ARGUMENT); + } + + $key = $internalReflection->getDeclaringClass()->getName() . '::' . $internalReflection->getName(); + if (!isset($cache[$key])) { + $cache[$key] = new self($internalReflection->getDeclaringClass()->getName(), $internalReflection->getName(), $broker); + } + + return $cache[$key]; + } +} diff --git a/apigen/libs/TokenReflection/TokenReflection/ReflectionAnnotation.php b/apigen/libs/TokenReflection/TokenReflection/ReflectionAnnotation.php new file mode 100644 index 00000000000..6cd8def2fdc --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/ReflectionAnnotation.php @@ -0,0 +1,484 @@ +reflection = $reflection; + $this->docComment = $docComment ?: false; + } + + /** + * Returns the docblock. + * + * @return string|boolean + */ + public function getDocComment() + { + return $this->docComment; + } + + /** + * Returns if the current docblock contains the requrested annotation. + * + * @param string $annotation Annotation name + * @return boolean + */ + public function hasAnnotation($annotation) + { + if (null === $this->annotations) { + $this->parse(); + } + + return isset($this->annotations[$annotation]); + } + + /** + * Returns a particular annotation value. + * + * @param string $annotation Annotation name + * @return string|array|null + */ + public function getAnnotation($annotation) + { + if (null === $this->annotations) { + $this->parse(); + } + + return isset($this->annotations[$annotation]) ? $this->annotations[$annotation] : null; + } + + /** + * Returns all parsed annotations. + * + * @return array + */ + public function getAnnotations() + { + if (null === $this->annotations) { + $this->parse(); + } + + return $this->annotations; + } + + /** + * Sets Docblock templates. + * + * @param array $templates Docblock templates + * @return \TokenReflection\ReflectionAnnotation + * @throws \TokenReflection\Exception\RuntimeException If an invalid annotation template was provided. + */ + public function setTemplates(array $templates) + { + foreach ($templates as $template) { + if (!$template instanceof ReflectionAnnotation) { + throw new Exception\RuntimeException( + sprintf( + 'All templates have to be instances of \\TokenReflection\\ReflectionAnnotation; %s given.', + is_object($template) ? get_class($template) : gettype($template) + ), + Exception\RuntimeException::INVALID_ARGUMENT, + $this->reflection + ); + } + } + + $this->templates = $templates; + + return $this; + } + + /** + * Parses reflection object documentation. + */ + private function parse() + { + $this->annotations = array(); + + if (false !== $this->docComment) { + // Parse docblock + $name = self::SHORT_DESCRIPTION; + $docblock = trim( + preg_replace( + array( + '~^' . preg_quote(ReflectionElement::DOCBLOCK_TEMPLATE_START, '~') . '~', + '~^' . preg_quote(ReflectionElement::DOCBLOCK_TEMPLATE_END, '~') . '$~', + '~^/\\*\\*~', + '~\\*/$~' + ), + '', + $this->docComment + ) + ); + foreach (explode("\n", $docblock) as $line) { + $line = preg_replace('~^\\*\\s?~', '', trim($line)); + + // End of short description + if ('' === $line && self::SHORT_DESCRIPTION === $name) { + $name = self::LONG_DESCRIPTION; + continue; + } + + // @annotation + if (preg_match('~^\\s*@([\\S]+)\\s*(.*)~', $line, $matches)) { + $name = $matches[1]; + $this->annotations[$name][] = $matches[2]; + continue; + } + + // Continuation + if (self::SHORT_DESCRIPTION === $name || self::LONG_DESCRIPTION === $name) { + if (!isset($this->annotations[$name])) { + $this->annotations[$name] = $line; + } else { + $this->annotations[$name] .= "\n" . $line; + } + } else { + $this->annotations[$name][count($this->annotations[$name]) - 1] .= "\n" . $line; + } + } + + array_walk_recursive($this->annotations, function(&$value) { + // {@*} is a placeholder for */ (phpDocumentor compatibility) + $value = str_replace('{@*}', '*/', $value); + $value = trim($value); + }); + } + + if ($this->reflection instanceof ReflectionElement) { + // Merge docblock templates + $this->mergeTemplates(); + + // Copy annotations if the @copydoc tag is present. + if (!empty($this->annotations['copydoc'])) { + $this->copyAnnotation(); + } + + // Process docblock inheritance for supported reflections + if ($this->reflection instanceof ReflectionClass || $this->reflection instanceof ReflectionMethod || $this->reflection instanceof ReflectionProperty) { + $this->inheritAnnotations(); + } + } + } + + /** + * Copies annotations if the @copydoc tag is present. + * + * @throws \TokenReflection\Exception\RuntimeException When stuck in an infinite loop when resolving the @copydoc tag. + */ + private function copyAnnotation() + { + self::$copydocStack[] = $this->reflection; + $broker = $this->reflection->getBroker(); + + $parentNames = $this->annotations['copydoc']; + unset($this->annotations['copydoc']); + + foreach ($parentNames as $parentName) { + try { + if ($this->reflection instanceof ReflectionClass) { + $parent = $broker->getClass($parentName); + if ($parent instanceof Dummy\ReflectionClass) { + // The class to copy from is not usable + return; + } + } elseif ($this->reflection instanceof ReflectionFunction) { + $parent = $broker->getFunction(rtrim($parentName, '()')); + } elseif ($this->reflection instanceof ReflectionConstant && null === $this->reflection->getDeclaringClassName()) { + $parent = $broker->getConstant($parentName); + } elseif ($this->reflection instanceof ReflectionMethod || $this->reflection instanceof ReflectionProperty || $this->reflection instanceof ReflectionConstant) { + if (false !== strpos($parentName, '::')) { + list($className, $parentName) = explode('::', $parentName, 2); + $class = $broker->getClass($className); + } else { + $class = $this->reflection->getDeclaringClass(); + } + + if ($class instanceof Dummy\ReflectionClass) { + // The source element class is not usable + return; + } + + if ($this->reflection instanceof ReflectionMethod) { + $parent = $class->getMethod(rtrim($parentName, '()')); + } elseif ($this->reflection instanceof ReflectionConstant) { + $parent = $class->getConstantReflection($parentName); + } else { + $parent = $class->getProperty(ltrim($parentName, '$')); + } + } + + if (!empty($parent)) { + // Don't get into an infinite recursion loop + if (in_array($parent, self::$copydocStack, true)) { + throw new Exception\RuntimeException('Infinite loop detected when copying annotations using the @copydoc tag.', Exception\RuntimeException::INVALID_ARGUMENT, $this->reflection); + } + + self::$copydocStack[] = $parent; + + // We can get into an infinite loop here (e.g. when two methods @copydoc from each other) + foreach ($parent->getAnnotations() as $name => $value) { + // Add annotations that are not already present + if (empty($this->annotations[$name])) { + $this->annotations[$name] = $value; + } + } + + array_pop(self::$copydocStack); + } + } catch (Exception\BaseException $e) { + // Ignoring links to non existent elements, ... + } + } + + array_pop(self::$copydocStack); + } + + /** + * Merges templates with the current docblock. + */ + private function mergeTemplates() + { + foreach ($this->templates as $index => $template) { + if (0 === $index && $template->getDocComment() === $this->docComment) { + continue; + } + + foreach ($template->getAnnotations() as $name => $value) { + if ($name === self::LONG_DESCRIPTION) { + // Long description + if (isset($this->annotations[self::LONG_DESCRIPTION])) { + $this->annotations[self::LONG_DESCRIPTION] = $value . "\n" . $this->annotations[self::LONG_DESCRIPTION]; + } else { + $this->annotations[self::LONG_DESCRIPTION] = $value; + } + } elseif ($name !== self::SHORT_DESCRIPTION) { + // Tags; short description is not inherited + if (isset($this->annotations[$name])) { + $this->annotations[$name] = array_merge($this->annotations[$name], $value); + } else { + $this->annotations[$name] = $value; + } + } + } + } + } + + /** + * Inherits annotations from parent classes/methods/properties if needed. + * + * @throws \TokenReflection\Exception\RuntimeException If unsupported reflection was used. + */ + private function inheritAnnotations() + { + if ($this->reflection instanceof ReflectionClass) { + $declaringClass = $this->reflection; + } elseif ($this->reflection instanceof ReflectionMethod || $this->reflection instanceof ReflectionProperty) { + $declaringClass = $this->reflection->getDeclaringClass(); + } + + $parents = array_filter(array_merge(array($declaringClass->getParentClass()), $declaringClass->getOwnInterfaces()), function($class) { + return $class instanceof ReflectionClass; + }); + + // In case of properties and methods, look for a property/method of the same name and return + // and array of such members. + $parentDefinitions = array(); + if ($this->reflection instanceof ReflectionProperty) { + $name = $this->reflection->getName(); + foreach ($parents as $parent) { + if ($parent->hasProperty($name)) { + $parentDefinitions[] = $parent->getProperty($name); + } + } + + $parents = $parentDefinitions; + } elseif ($this->reflection instanceof ReflectionMethod) { + $name = $this->reflection->getName(); + foreach ($parents as $parent) { + if ($parent->hasMethod($name)) { + $parentDefinitions[] = $parent->getMethod($name); + } + } + + $parents = $parentDefinitions; + } + + if (false === $this->docComment) { + // Inherit the entire docblock + foreach ($parents as $parent) { + $annotations = $parent->getAnnotations(); + if (!empty($annotations)) { + $this->annotations = $annotations; + break; + } + } + } else { + if (isset($this->annotations[self::LONG_DESCRIPTION]) && false !== stripos($this->annotations[self::LONG_DESCRIPTION], '{@inheritdoc}')) { + // Inherit long description + foreach ($parents as $parent) { + if ($parent->hasAnnotation(self::LONG_DESCRIPTION)) { + $this->annotations[self::LONG_DESCRIPTION] = str_ireplace( + '{@inheritdoc}', + $parent->getAnnotation(self::LONG_DESCRIPTION), + $this->annotations[self::LONG_DESCRIPTION] + ); + break; + } + } + + $this->annotations[self::LONG_DESCRIPTION] = str_ireplace('{@inheritdoc}', '', $this->annotations[self::LONG_DESCRIPTION]); + } + if (isset($this->annotations[self::SHORT_DESCRIPTION]) && false !== stripos($this->annotations[self::SHORT_DESCRIPTION], '{@inheritdoc}')) { + // Inherit short description + foreach ($parents as $parent) { + if ($parent->hasAnnotation(self::SHORT_DESCRIPTION)) { + $this->annotations[self::SHORT_DESCRIPTION] = str_ireplace( + '{@inheritdoc}', + $parent->getAnnotation(self::SHORT_DESCRIPTION), + $this->annotations[self::SHORT_DESCRIPTION] + ); + break; + } + } + + $this->annotations[self::SHORT_DESCRIPTION] = str_ireplace('{@inheritdoc}', '', $this->annotations[self::SHORT_DESCRIPTION]); + } + } + + // In case of properties check if we need and can inherit the data type + if ($this->reflection instanceof ReflectionProperty && empty($this->annotations['var'])) { + foreach ($parents as $parent) { + if ($parent->hasAnnotation('var')) { + $this->annotations['var'] = $parent->getAnnotation('var'); + break; + } + } + } + + if ($this->reflection instanceof ReflectionMethod) { + if (0 !== $this->reflection->getNumberOfParameters() && (empty($this->annotations['param']) || count($this->annotations['param']) < $this->reflection->getNumberOfParameters())) { + // In case of methods check if we need and can inherit parameter descriptions + $params = isset($this->annotations['param']) ? $this->annotations['param'] : array(); + $complete = false; + foreach ($parents as $parent) { + if ($parent->hasAnnotation('param')) { + $parentParams = array_slice($parent->getAnnotation('param'), count($params)); + + while (!empty($parentParams) && !$complete) { + array_push($params, array_shift($parentParams)); + + if (count($params) === $this->reflection->getNumberOfParameters()) { + $complete = true; + } + } + } + + if ($complete) { + break; + } + } + + if (!empty($params)) { + $this->annotations['param'] = $params; + } + } + + // And check if we need and can inherit the return and throws value + foreach (array('return', 'throws') as $paramName) { + if (!isset($this->annotations[$paramName])) { + foreach ($parents as $parent) { + if ($parent->hasAnnotation($paramName)) { + $this->annotations[$paramName] = $parent->getAnnotation($paramName); + break; + } + } + } + } + } + } +} diff --git a/apigen/libs/TokenReflection/TokenReflection/ReflectionBase.php b/apigen/libs/TokenReflection/TokenReflection/ReflectionBase.php new file mode 100644 index 00000000000..c7b15b0a399 --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/ReflectionBase.php @@ -0,0 +1,273 @@ +broker = $broker; + + $this->parseStream($tokenStream, $parent); + } + + /** + * Parses the token substream. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @param \TokenReflection\IReflection $parent Parent reflection object + */ + abstract protected function parseStream(Stream $tokenStream, IReflection $parent = null); + + /** + * Returns the name (FQN). + * + * @return string + */ + public function getName() + { + return $this->name; + } + + /** + * Returns the appropriate docblock definition. + * + * @return string|boolean + */ + public function getDocComment() + { + return $this->docComment->getDocComment(); + } + + /** + * Checks if there is a particular annotation. + * + * @param string $name Annotation name + * @return boolean + */ + final public function hasAnnotation($name) + { + return $this->docComment->hasAnnotation($name); + } + + /** + * Returns a particular annotation value. + * + * @param string $name Annotation name + * @return string|array|null + */ + final public function getAnnotation($name) + { + return $this->docComment->getAnnotation($name); + } + + /** + * Returns all annotations. + * + * @return array + */ + final public function getAnnotations() + { + return $this->docComment->getAnnotations(); + } + + /** + * Returns the reflection broker used by this reflection object. + * + * @return \TokenReflection\Broker + */ + public function getBroker() + { + return $this->broker; + } + + /** + * Returns if the reflection object is internal. + * + * Always returns false - everything is user defined. + * + * @return boolean + */ + public function isInternal() + { + return false; + } + + /** + * Returns if the reflection object is user defined. + * + * Always returns true - everything is user defined. + * + * @return boolean + */ + public function isUserDefined() + { + return true; + } + + /** + * Returns if the current reflection comes from a tokenized source. + * + * @return boolean + */ + public function isTokenized() + { + return true; + } + + /** + * Returns if the reflection subject is deprecated. + * + * @return boolean + */ + public function isDeprecated() + { + return $this->hasAnnotation('deprecated'); + } + + /** + * Returns the appropriate source code part. + * + * @return string + */ + abstract public function getSource(); + + /** + * Returns an element pretty (docblock compatible) name. + * + * @return string + */ + public function getPrettyName() + { + return $this->name; + } + + /** + * Magic __get method. + * + * @param string $key Variable name + * @return mixed + */ + final public function __get($key) + { + return self::get($this, $key); + } + + /** + * Magic __isset method. + * + * @param string $key Variable name + * @return boolean + */ + final public function __isset($key) + { + return self::exists($this, $key); + } + + /** + * Magic __get method helper. + * + * @param \TokenReflection\IReflection $object Reflection object + * @param string $key Variable name + * @return mixed + * @throws \TokenReflection\Exception\RuntimeException If the requested parameter does not exist. + */ + final public static function get(IReflection $object, $key) + { + if (!empty($key)) { + $className = get_class($object); + if (!isset(self::$methodCache[$className])) { + self::$methodCache[$className] = array_flip(get_class_methods($className)); + } + + $methods = self::$methodCache[$className]; + $key2 = ucfirst($key); + if (isset($methods['get' . $key2])) { + return $object->{'get' . $key2}(); + } elseif (isset($methods['is' . $key2])) { + return $object->{'is' . $key2}(); + } + } + + throw new Exception\RuntimeException(sprintf('Cannot read property "%s".', $key), Exception\RuntimeException::DOES_NOT_EXIST); + } + + /** + * Magic __isset method helper. + * + * @param \TokenReflection\IReflection $object Reflection object + * @param string $key Variable name + * @return boolean + */ + final public static function exists(IReflection $object, $key) + { + try { + self::get($object, $key); + return true; + } catch (RuntimeException $e) { + return false; + } + } +} diff --git a/apigen/libs/TokenReflection/TokenReflection/ReflectionClass.php b/apigen/libs/TokenReflection/TokenReflection/ReflectionClass.php new file mode 100644 index 00000000000..088ebca0b0b --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/ReflectionClass.php @@ -0,0 +1,1986 @@ +::] => array( + * array(, [])|null + * [, ...] + * ) + * + * @var array + */ + private $traitImports = array(); + + /** + * Stores if the class definition is complete. + * + * @var array + */ + private $methods = array(); + + /** + * Constant reflections. + * + * @var array + */ + private $constants = array(); + + /** + * Properties reflections. + * + * @var array + */ + private $properties = array(); + + /** + * Stores if the class definition is complete. + * + * @var boolean + */ + private $definitionComplete = false; + + /** + * Imported namespace/class aliases. + * + * @var array + */ + private $aliases = array(); + + /** + * Returns the unqualified name (UQN). + * + * @return string + */ + public function getShortName() + { + $name = $this->getName(); + if ($this->namespaceName !== ReflectionNamespace::NO_NAMESPACE_NAME) { + $name = substr($name, strlen($this->namespaceName) + 1); + } + + return $name; + } + + /** + * Returns the namespace name. + * + * @return string + */ + public function getNamespaceName() + { + return $this->namespaceName === ReflectionNamespace::NO_NAMESPACE_NAME ? '' : $this->namespaceName; + } + + /** + * Returns if the class is defined within a namespace. + * + * @return boolean + */ + public function inNamespace() + { + return null !== $this->namespaceName && ReflectionNamespace::NO_NAMESPACE_NAME !== $this->namespaceName; + } + + /** + * Returns modifiers. + * + * @return array + */ + public function getModifiers() + { + if (false === $this->modifiersComplete) { + if (($this->modifiers & InternalReflectionClass::IS_EXPLICIT_ABSTRACT) && !($this->modifiers & InternalReflectionClass::IS_IMPLICIT_ABSTRACT)) { + foreach ($this->getMethods() as $reflectionMethod) { + if ($reflectionMethod->isAbstract()) { + $this->modifiers |= InternalReflectionClass::IS_IMPLICIT_ABSTRACT; + } + } + + if (!empty($this->interfaces)) { + $this->modifiers |= InternalReflectionClass::IS_IMPLICIT_ABSTRACT; + } + } + + if (!empty($this->interfaces)) { + $this->modifiers |= self::IMPLEMENTS_INTERFACES; + } + + if ($this->isInterface() && !empty($this->methods)) { + $this->modifiers |= InternalReflectionClass::IS_IMPLICIT_ABSTRACT; + } + + if (!empty($this->traits)) { + $this->modifiers |= self::IMPLEMENTS_TRAITS; + } + + $this->modifiersComplete = null === $this->parentClassName || $this->getParentClass()->isComplete(); + + if ($this->modifiersComplete) { + foreach ($this->getInterfaces() as $interface) { + if (!$interface->isComplete()) { + $this->modifiersComplete = false; + break; + } + } + } + if ($this->modifiersComplete) { + foreach ($this->getTraits() as $trait) { + if (!$trait->isComplete()) { + $this->modifiersComplete = false; + break; + } + } + } + } + + return $this->modifiers; + } + + /** + * Returns if the class is abstract. + * + * @return boolean + */ + public function isAbstract() + { + if ($this->modifiers & InternalReflectionClass::IS_EXPLICIT_ABSTRACT) { + return true; + } elseif ($this->isInterface() && !empty($this->methods)) { + return true; + } + + return false; + } + + /** + * Returns if the class is final. + * + * @return boolean + */ + public function isFinal() + { + return (bool) ($this->modifiers & InternalReflectionClass::IS_FINAL); + } + + /** + * Returns if the class is an interface. + * + * @return boolean + */ + public function isInterface() + { + return (bool) ($this->modifiers & self::IS_INTERFACE); + } + + /** + * Returns if the class is an exception or its descendant. + * + * @return boolean + */ + public function isException() + { + return 'Exception' === $this->name || $this->isSubclassOf('Exception'); + } + + /** + * Returns if it is possible to create an instance of this class. + * + * @return boolean + */ + public function isInstantiable() + { + if ($this->isInterface() || $this->isAbstract()) { + return false; + } + + if (null === ($constructor = $this->getConstructor())) { + return true; + } + + return $constructor->isPublic(); + } + + /** + * Returns if objects of this class are cloneable. + * + * Introduced in PHP 5.4. + * + * @return boolean + * @see http://svn.php.net/viewvc/php/php-src/trunk/ext/reflection/php_reflection.c?revision=307971&view=markup#l4059 + */ + public function isCloneable() + { + if ($this->isInterface() || $this->isAbstract()) { + return false; + } + + if ($this->hasMethod('__clone')) { + return $this->getMethod('__clone')->isPublic(); + } + + return true; + } + + /** + * Returns if the class is iterateable. + * + * Returns true if the class implements the Traversable interface. + * + * @return boolean + * @todo traits + */ + public function isIterateable() + { + return $this->implementsInterface('Traversable'); + } + + /** + * Returns if the current class is a subclass of the given class. + * + * @param string|object $class Class name or reflection object + * @return boolean + * @throws \TokenReflection\Exception\RuntimeException If the provided parameter is not a reflection class instance. + */ + public function isSubclassOf($class) + { + if (is_object($class)) { + if ($class instanceof InternalReflectionClass || $class instanceof IReflectionClass) { + $class = $class->getName(); + } else { + $class = get_class($class); + } + } + + if ($class === $this->parentClassName) { + return true; + } + + $parent = $this->getParentClass(); + return false === $parent ? false : $parent->isSubclassOf($class); + } + + /** + * Returns the parent class reflection. + * + * @return \TokenReflection\ReflectionClass|boolean + */ + public function getParentClass() + { + $className = $this->getParentClassName(); + if (null === $className) { + return false; + } + + return $this->getBroker()->getClass($className); + } + + /** + * Returns the parent class name. + * + * @return string|null + */ + public function getParentClassName() + { + return $this->parentClassName; + } + + /** + * Returns the parent classes reflections. + * + * @return array + */ + public function getParentClasses() + { + $parent = $this->getParentClass(); + if (false === $parent) { + return array(); + } + + return array_merge(array($parent->getName() => $parent), $parent->getParentClasses()); + } + + /** + * Returns the parent classes names. + * + * @return array + */ + public function getParentClassNameList() + { + $parent = $this->getParentClass(); + if (false === $parent) { + return array(); + } + + return array_merge(array($parent->getName()), $parent->getParentClassNameList()); + } + + /** + * Returns if the class implements the given interface. + * + * @param string|object $interface Interface name or reflection object + * @return boolean + * @throws \TokenReflection\Exception\RuntimeException If the provided parameter is not an interface. + */ + public function implementsInterface($interface) + { + if (is_object($interface)) { + if (!$interface instanceof InternalReflectionClass && !$interface instanceof IReflectionClass) { + throw new Exception\RuntimeException(sprintf('Parameter must be a string or an instance of class reflection, "%s" provided.', get_class($interface)), Exception\RuntimeException::INVALID_ARGUMENT, $this); + } + + if (!$interface->isInterface()) { + throw new Exception\RuntimeException(sprintf('"%s" is not an interface.', $interfaceName), Exception\RuntimeException::INVALID_ARGUMENT, $this); + } + + $interfaceName = $interface->getName(); + } else { + $interfaceName = $interface; + } + + return in_array($interfaceName, $this->getInterfaceNames()); + } + + /** + * Returns interface reflections. + * + * @return array + */ + public function getInterfaces() + { + $interfaceNames = $this->getInterfaceNames(); + if (empty($interfaceNames)) { + return array(); + } + + $broker = $this->getBroker(); + return array_combine($interfaceNames, array_map(function($interfaceName) use ($broker) { + return $broker->getClass($interfaceName); + }, $interfaceNames)); + } + + /** + * Returns interface names. + * + * @return array + */ + public function getInterfaceNames() + { + $parentClass = $this->getParentClass(); + + $names = false !== $parentClass ? array_reverse(array_flip($parentClass->getInterfaceNames())) : array(); + foreach ($this->interfaces as $interfaceName) { + $names[$interfaceName] = true; + foreach (array_reverse($this->getBroker()->getClass($interfaceName)->getInterfaceNames()) as $parentInterfaceName) { + $names[$parentInterfaceName] = true; + } + } + + return array_keys($names); + } + + /** + * Returns reflections of interfaces implemented by this class, not its parents. + * + * @return array + */ + public function getOwnInterfaces() + { + $interfaceNames = $this->getOwnInterfaceNames(); + if (empty($interfaceNames)) { + return array(); + } + + $broker = $this->getBroker(); + return array_combine($interfaceNames, array_map(function($interfaceName) use ($broker) { + return $broker->getClass($interfaceName); + }, $interfaceNames)); + } + + /** + * Returns names of interfaces implemented by this class, not its parents. + * + * @return array + */ + public function getOwnInterfaceNames() + { + return $this->interfaces; + } + + /** + * Returns the class constructor reflection. + * + * @return \TokenReflection\ReflectionMethod|null + */ + public function getConstructor() + { + foreach ($this->getMethods() as $method) { + if ($method->isConstructor()) { + return $method; + } + } + + return null; + } + + /** + * Returns the class destructor reflection. + * + * @return \TokenReflection\ReflectionMethod|null + */ + public function getDestructor() + { + foreach ($this->getMethods() as $method) { + if ($method->isDestructor()) { + return $method; + } + } + + return null; + } + + /** + * Returns if the class implements the given method. + * + * @param string $name Method name + * @return boolean + */ + public function hasMethod($name) + { + foreach ($this->getMethods() as $method) { + if ($name === $method->getName()) { + return true; + } + } + + return false; + } + + /** + * Returns a method reflection. + * + * @param string $name Method name + * @return \TokenReflection\ReflectionMethod + * @throws \TokenReflection\Exception\RuntimeException If the requested method does not exist. + */ + public function getMethod($name) + { + if (isset($this->methods[$name])) { + return $this->methods[$name]; + } + + foreach ($this->getMethods() as $method) { + if ($name === $method->getName()) { + return $method; + } + } + + throw new Exception\RuntimeException(sprintf('There is no method "%s".', $name), Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + /** + * Returns method reflections. + * + * @param integer $filter Methods filter + * @return array + */ + public function getMethods($filter = null) + { + $methods = $this->methods; + + foreach ($this->getTraitMethods() as $traitMethod) { + if (!isset($methods[$traitMethod->getName()])) { + $methods[$traitMethod->getName()] = $traitMethod; + } + } + + if (null !== $this->parentClassName) { + foreach ($this->getParentClass()->getMethods(null) as $parentMethod) { + if (!isset($methods[$parentMethod->getName()])) { + $methods[$parentMethod->getName()] = $parentMethod; + } + } + } + foreach ($this->getOwnInterfaces() as $interface) { + foreach ($interface->getMethods(null) as $parentMethod) { + if (!isset($methods[$parentMethod->getName()])) { + $methods[$parentMethod->getName()] = $parentMethod; + } + } + } + + if (null !== $filter) { + $methods = array_filter($methods, function(IReflectionMethod $method) use ($filter) { + return $method->is($filter); + }); + } + + return array_values($methods); + } + + /** + * Returns if the class implements (and not its parents) the given method. + * + * @param string $name Method name + * @return boolean + */ + public function hasOwnMethod($name) + { + return isset($this->methods[$name]); + } + + /** + * Returns reflections of methods declared by this class, not its parents. + * + * @param integer $filter Methods filter + * @return array + */ + public function getOwnMethods($filter = null) + { + $methods = $this->methods; + + if (null !== $filter) { + $methods = array_filter($methods, function(ReflectionMethod $method) use ($filter) { + return $method->is($filter); + }); + } + + return array_values($methods); + } + + /** + * Returns if the class imports the given method from traits. + * + * @param string $name Method name + * @return boolean + */ + public function hasTraitMethod($name) + { + if (isset($this->methods[$name])) { + return false; + } + + foreach ($this->getOwnTraits() as $trait) { + if ($trait->hasMethod($name)) { + return true; + } + } + + return false; + } + + /** + * Returns reflections of method imported from traits. + * + * @param integer $filter Methods filter + * @return array + * @throws \TokenReflection\Exception\RuntimeException If trait method was already imported. + */ + public function getTraitMethods($filter = null) + { + $methods = array(); + + foreach ($this->getOwnTraits() as $trait) { + $traitName = $trait->getName(); + foreach ($trait->getMethods(null) as $traitMethod) { + $methodName = $traitMethod->getName(); + + $imports = array(); + if (isset($this->traitImports[$traitName . '::' . $methodName])) { + $imports = $this->traitImports[$traitName . '::' . $methodName]; + } + if (isset($this->traitImports[$methodName])) { + $imports = empty($imports) ? $this->traitImports[$methodName] : array_merge($imports, $this->traitImports[$methodName]); + } + + foreach ($imports as $import) { + if (null !== $import) { + list($newName, $accessLevel) = $import; + + if ('' === $newName) { + $newName = $methodName; + $imports[] = null; + } + + if (!isset($this->methods[$newName])) { + if (isset($methods[$newName])) { + throw new Exception\RuntimeException(sprintf('Trait method "%s" was already imported.', $newName), Exception\RuntimeException::ALREADY_EXISTS, $this); + } + + $methods[$newName] = $traitMethod->alias($this, $newName, $accessLevel); + } + } + } + + if (!in_array(null, $imports)) { + if (!isset($this->methods[$methodName])) { + if (isset($methods[$methodName])) { + throw new Exception\RuntimeException(sprintf('Trait method "%s" was already imported.', $methodName), Exception\RuntimeException::ALREADY_EXISTS, $this); + } + + $methods[$methodName] = $traitMethod->alias($this); + } + } + } + } + + if (null !== $filter) { + $methods = array_filter($methods, function(IReflectionMethod $method) use ($filter) { + return (bool) ($method->getModifiers() & $filter); + }); + } + + return array_values($methods); + } + + /** + * Returns if the class defines the given constant. + * + * @param string $name Constant name. + * @return boolean + */ + public function hasConstant($name) + { + if (isset($this->constants[$name])) { + return true; + } + + foreach ($this->getConstantReflections() as $constant) { + if ($name === $constant->getName()) { + return true; + } + } + + return false; + } + + /** + * Returns a constant value. + * + * @param string $name Constant name + * @return mixed|false + */ + public function getConstant($name) + { + try { + return $this->getConstantReflection($name)->getValue(); + } catch (Exception\BaseException $e) { + return false; + } + } + + /** + * Returns a constant reflection. + * + * @param string $name Constant name + * @return \TokenReflection\ReflectionConstant + * @throws \TokenReflection\Exception\RuntimeException If the requested constant does not exist. + */ + public function getConstantReflection($name) + { + if (isset($this->constants[$name])) { + return $this->constants[$name]; + } + + foreach ($this->getConstantReflections() as $constant) { + if ($name === $constant->getName()) { + return $constant; + } + } + + throw new Exception\RuntimeException(sprintf('There is no constant "%s".', $name), Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + /** + * Returns constant values. + * + * @return array + */ + public function getConstants() + { + $constants = array(); + foreach ($this->getConstantReflections() as $constant) { + $constants[$constant->getName()] = $constant->getValue(); + } + return $constants; + } + + /** + * Returns constant reflections. + * + * @return array + */ + public function getConstantReflections() + { + if (null === $this->parentClassName && empty($this->interfaces)) { + return array_values($this->constants); + } else { + $reflections = array_values($this->constants); + + if (null !== $this->parentClassName) { + $reflections = array_merge($reflections, $this->getParentClass()->getConstantReflections()); + } + foreach ($this->getOwnInterfaces() as $interface) { + $reflections = array_merge($reflections, $interface->getConstantReflections()); + } + + return $reflections; + } + } + + /** + * Returns if the class (and not its parents) defines the given constant. + * + * @param string $name Constant name. + * @return boolean + */ + public function hasOwnConstant($name) + { + return isset($this->constants[$name]); + } + + /** + * Returns constants declared by this class, not by its parents. + * + * @return array + */ + public function getOwnConstants() + { + return array_map(function(ReflectionConstant $constant) { + return $constant->getValue(); + }, $this->constants); + } + + /** + * Returns reflections of constants declared by this class, not by its parents. + * + * @return array + */ + public function getOwnConstantReflections() + { + return array_values($this->constants); + } + + /** + * Returns if the class defines the given property. + * + * @param string $name Property name + * @return boolean + */ + public function hasProperty($name) + { + foreach ($this->getProperties() as $property) { + if ($name === $property->getName()) { + return true; + } + } + + return false; + } + + /** + * Return a property reflection. + * + * @param string $name Property name + * @return \TokenReflection\ReflectionProperty + * @throws \TokenReflection\Exception\RuntimeException If the requested property does not exist. + */ + public function getProperty($name) + { + if (isset($this->properties[$name])) { + return $this->properties[$name]; + } + + foreach ($this->getProperties() as $property) { + if ($name === $property->getName()) { + return $property; + } + } + + throw new Exception\RuntimeException(sprintf('There is no property "%s".', $name, $this->name), Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + /** + * Returns property reflections. + * + * @param integer $filter Properties filter + * @return array + */ + public function getProperties($filter = null) + { + $properties = $this->properties; + + foreach ($this->getTraitProperties(null) as $traitProperty) { + if (!isset($properties[$traitProperty->getName()])) { + $properties[$traitProperty->getName()] = $traitProperty->alias($this); + } + } + + if (null !== $this->parentClassName) { + foreach ($this->getParentClass()->getProperties(null) as $parentProperty) { + if (!isset($properties[$parentProperty->getName()])) { + $properties[$parentProperty->getName()] = $parentProperty; + } + } + } + + if (null !== $filter) { + $properties = array_filter($properties, function(IReflectionProperty $property) use ($filter) { + return (bool) ($property->getModifiers() & $filter); + }); + } + + return array_values($properties); + } + + /** + * Returns if the class (and not its parents) defines the given property. + * + * @param string $name Property name + * @return boolean + */ + public function hasOwnProperty($name) + { + return isset($this->properties[$name]); + } + + /** + * Returns reflections of properties declared by this class, not its parents. + * + * @param integer $filter Properties filter + * @return array + */ + public function getOwnProperties($filter = null) + { + $properties = $this->properties; + + if (null !== $filter) { + $properties = array_filter($properties, function(ReflectionProperty $property) use ($filter) { + return (bool) ($property->getModifiers() & $filter); + }); + } + + return array_values($properties); + } + + /** + * Returns if the class imports the given property from traits. + * + * @param string $name Property name + * @return boolean + */ + public function hasTraitProperty($name) + { + if (isset($this->properties[$name])) { + return false; + } + + foreach ($this->getOwnTraits() as $trait) { + if ($trait->hasProperty($name)) { + return true; + } + } + + return false; + } + + /** + * Returns reflections of properties imported from traits. + * + * @param integer $filter Properties filter + * @return array + */ + public function getTraitProperties($filter = null) + { + $properties = array(); + + foreach ($this->getOwnTraits() as $trait) { + foreach ($trait->getProperties(null) as $traitProperty) { + if (!isset($this->properties[$traitProperty->getName()]) && !isset($properties[$traitProperty->getName()])) { + $properties[$traitProperty->getName()] = $traitProperty->alias($this); + } + } + } + + if (null !== $filter) { + $properties = array_filter($properties, function(IReflectionProperty $property) use ($filter) { + return (bool) ($property->getModifiers() & $filter); + }); + } + + return array_values($properties); + } + + /** + * Returns default properties. + * + * @return array + */ + public function getDefaultProperties() + { + static $accessLevels = array(InternalReflectionProperty::IS_PUBLIC, InternalReflectionProperty::IS_PROTECTED, InternalReflectionProperty::IS_PRIVATE); + + $defaults = array(); + $properties = $this->getProperties(); + foreach (array(true, false) as $static) { + foreach ($properties as $property) { + foreach ($accessLevels as $level) { + if ($property->isStatic() === $static && ($property->getModifiers() & $level)) { + $defaults[$property->getName()] = $property->getDefaultValue(); + } + } + } + } + + return $defaults; + } + + /** + * Returns static properties reflections. + * + * @return array + */ + public function getStaticProperties() + { + $defaults = array(); + foreach ($this->getProperties(InternalReflectionProperty::IS_STATIC) as $property) { + if ($property instanceof ReflectionProperty) { + $defaults[$property->getName()] = $property->getDefaultValue(); + } + } + + return $defaults; + } + + /** + * Returns a value of a static property. + * + * @param string $name Property name + * @param mixed $default Default value + * @return mixed + * @throws \TokenReflection\Exception\RuntimeException If the requested static property does not exist. + * @throws \TokenReflection\Exception\RuntimeException If the requested static property is not accessible. + */ + public function getStaticPropertyValue($name, $default = null) + { + if ($this->hasProperty($name) && ($property = $this->getProperty($name)) && $property->isStatic()) { + if (!$property->isPublic() && !$property->isAccessible()) { + throw new Exception\RuntimeException(sprintf('Static property "%s" is not accessible.', $name), Exception\RuntimeException::NOT_ACCESSBILE, $this); + } + + return $property->getDefaultValue(); + } + + throw new Exception\RuntimeException(sprintf('There is no static property "%s".', $name), Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + /** + * Returns traits used by this class. + * + * @return array + */ + public function getTraits() + { + $traitNames = $this->getTraitNames(); + if (empty($traitNames)) { + return array(); + } + + $broker = $this->getBroker(); + return array_combine($traitNames, array_map(function($traitName) use ($broker) { + return $broker->getClass($traitName); + }, $traitNames)); + } + + /** + * Returns traits used by this class and not its parents. + * + * @return array + */ + public function getOwnTraits() + { + $ownTraitNames = $this->getOwnTraitNames(); + if (empty($ownTraitNames)) { + return array(); + } + + $broker = $this->getBroker(); + return array_combine($ownTraitNames, array_map(function($traitName) use ($broker) { + return $broker->getClass($traitName); + }, $ownTraitNames)); + } + + /** + * Returns names of used traits. + * + * @return array + */ + public function getTraitNames() + { + $parentClass = $this->getParentClass(); + + $names = $parentClass ? $parentClass->getTraitNames() : array(); + foreach ($this->traits as $traitName) { + $names[] = $traitName; + } + + return array_unique($names); + } + + /** + * Returns names of traits used by this class an not its parents. + * + * @return array + */ + public function getOwnTraitNames() + { + return $this->traits; + } + + /** + * Returns method aliases from traits. + * + * @return array + */ + public function getTraitAliases() + { + return $this->traitAliases; + } + + /** + * Returns if the class is a trait. + * + * @return boolean + */ + public function isTrait() + { + return self::IS_TRAIT === $this->type; + } + + /** + * Returns if the class definition is valid. + * + * @return boolean + */ + public function isValid() + { + if (null !== $this->parentClassName && !$this->getParentClass()->isValid()) { + return false; + } + + foreach ($this->getInterfaces() as $interface) { + if (!$interface->isValid()) { + return false; + } + } + + foreach ($this->getTraits() as $trait) { + if (!$trait->isValid()) { + return false; + } + } + + return true; + } + + /** + * Returns if the class uses a particular trait. + * + * @param \ReflectionClass|\TokenReflection\IReflectionClass|string $trait Trait reflection or name + * @return boolean + * @throws \TokenReflection\Exception\RuntimeException If an invalid parameter was provided. + */ + public function usesTrait($trait) + { + if (is_object($trait)) { + if (!$trait instanceof InternalReflectionClass && !$trait instanceof IReflectionClass) { + throw new Exception\RuntimeException(sprintf('Parameter must be a string or an instance of trait reflection, "%s" provided.', get_class($trait)), Exception\RuntimeException::INVALID_ARGUMENT, $this); + } + + $traitName = $trait->getName(); + + if (!$trait->isTrait()) { + throw new Exception\RuntimeException(sprintf('"%s" is not a trait.', $traitName), Exception\RuntimeException::INVALID_ARGUMENT, $this); + } + } else { + $reflection = $this->getBroker()->getClass($trait); + if (!$reflection->isTrait()) { + throw new Exception\RuntimeException(sprintf('"%s" is not a trait.', $trait), Exception\RuntimeException::INVALID_ARGUMENT, $this); + } + + $traitName = $trait; + } + + return in_array($traitName, $this->getTraitNames()); + } + + /** + * Returns reflections of direct subclasses. + * + * @return array + */ + public function getDirectSubclasses() + { + $that = $this->name; + return array_filter($this->getBroker()->getClasses(), function(ReflectionClass $class) use ($that) { + if (!$class->isSubclassOf($that)) { + return false; + } + + return null === $class->getParentClassName() || !$class->getParentClass()->isSubClassOf($that); + }); + } + + /** + * Returns names of direct subclasses. + * + * @return array + */ + public function getDirectSubclassNames() + { + return array_keys($this->getDirectSubclasses()); + } + + /** + * Returns reflections of indirect subclasses. + * + * @return array + */ + public function getIndirectSubclasses() + { + $that = $this->name; + return array_filter($this->getBroker()->getClasses(), function(ReflectionClass $class) use ($that) { + if (!$class->isSubclassOf($that)) { + return false; + } + + return null !== $class->getParentClassName() && $class->getParentClass()->isSubClassOf($that); + }); + } + + /** + * Returns names of indirect subclasses. + * + * @return array + */ + public function getIndirectSubclassNames() + { + return array_keys($this->getIndirectSubclasses()); + } + + /** + * Returns reflections of classes directly implementing this interface. + * + * @return array + */ + public function getDirectImplementers() + { + if (!$this->isInterface()) { + return array(); + } + + $that = $this->name; + return array_filter($this->getBroker()->getClasses(), function(ReflectionClass $class) use ($that) { + if ($class->isInterface() || !$class->implementsInterface($that)) { + return false; + } + + return null === $class->getParentClassName() || !$class->getParentClass()->implementsInterface($that); + }); + } + + /** + * Returns names of classes directly implementing this interface. + * + * @return array + */ + public function getDirectImplementerNames() + { + return array_keys($this->getDirectImplementers()); + } + + /** + * Returns reflections of classes indirectly implementing this interface. + * + * @return array + */ + public function getIndirectImplementers() + { + if (!$this->isInterface()) { + return array(); + } + + $that = $this->name; + return array_filter($this->getBroker()->getClasses(), function(ReflectionClass $class) use ($that) { + if ($class->isInterface() || !$class->implementsInterface($that)) { + return false; + } + + return null !== $class->getParentClassName() && $class->getParentClass()->implementsInterface($that); + }); + } + + /** + * Returns names of classes indirectly implementing this interface. + * + * @return array + */ + public function getIndirectImplementerNames() + { + return array_keys($this->getIndirectImplementers()); + } + + /** + * Returns if the given object is an instance of this class. + * + * @param object $object Instance + * @return boolean + * @throws \TokenReflection\Exception\RuntimeException If the provided argument is not an object. + */ + public function isInstance($object) + { + if (!is_object($object)) { + throw new Exception\RuntimeException(sprintf('Parameter must be an object, "%s" provided.', gettype($object)), Exception\RuntimeException::INVALID_ARGUMENT, $this); + } + + return $this->name === get_class($object) || is_subclass_of($object, $this->getName()); + } + + /** + * Creates a new class instance without using a constructor. + * + * @return object + * @throws \TokenReflection\Exception\RuntimeException If the class inherits from an internal class. + */ + public function newInstanceWithoutConstructor() + { + if (!class_exists($this->name, true)) { + throw new Exception\RuntimeException('Could not create an instance; class does not exist.', Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + $reflection = new \TokenReflection\Php\ReflectionClass($this->getName(), $this->getBroker()); + return $reflection->newInstanceWithoutConstructor(); + } + + /** + * Creates a new instance using variable number of parameters. + * + * Use any number of constructor parameters as function parameters. + * + * @param mixed $args + * @return object + */ + public function newInstance($args) + { + return $this->newInstanceArgs(func_get_args()); + } + + /** + * Creates a new instance using an array of parameters. + * + * @param array $args Array of constructor parameters + * @return object + * @throws \TokenReflection\Exception\RuntimeException If the required class does not exist. + */ + public function newInstanceArgs(array $args = array()) + { + if (!class_exists($this->name, true)) { + throw new Exception\RuntimeException('Could not create an instance; class does not exist.', Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + $reflection = new InternalReflectionClass($this->name); + return $reflection->newInstanceArgs($args); + } + + /** + * Sets a static property value. + * + * @param string $name Property name + * @param mixed $value Property value + * @throws \TokenReflection\Exception\RuntimeException If the requested static property does not exist. + * @throws \TokenReflection\Exception\RuntimeException If the requested static property is not accessible. + */ + public function setStaticPropertyValue($name, $value) + { + if ($this->hasProperty($name) && ($property = $this->getProperty($name)) && $property->isStatic()) { + if (!$property->isPublic() && !$property->isAccessible()) { + throw new Exception\RuntimeException(sprintf('Static property "%s" is not accessible.', $name), Exception\RuntimeException::NOT_ACCESSBILE, $this); + } + + $property->setDefaultValue($value); + return; + } + + throw new Exception\RuntimeException(sprintf('There is no static property "%s".', $name), Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + /** + * Returns the string representation of the reflection object. + * + * @return string + */ + public function __toString() + { + $implements = ''; + $interfaceNames = $this->getInterfaceNames(); + if (count($interfaceNames) > 0) { + $implements = sprintf( + ' %s %s', + $this->isInterface() ? 'extends' : 'implements', + implode(', ', $interfaceNames) + ); + } + + $buffer = ''; + $count = 0; + foreach ($this->getConstantReflections() as $constant) { + $buffer .= ' ' . $constant->__toString(); + $count++; + } + $constants = sprintf("\n\n - Constants [%d] {\n%s }", $count, $buffer); + + $sBuffer = ''; + $sCount = 0; + $buffer = ''; + $count = 0; + foreach ($this->getProperties() as $property) { + $string = ' ' . preg_replace('~\n(?!$)~', "\n ", $property->__toString()); + if ($property->isStatic()) { + $sBuffer .= $string; + $sCount++; + } else { + $buffer .= $string; + $count++; + } + } + $staticProperties = sprintf("\n\n - Static properties [%d] {\n%s }", $sCount, $sBuffer); + $properties = sprintf("\n\n - Properties [%d] {\n%s }", $count, $buffer); + + $sBuffer = ''; + $sCount = 0; + $buffer = ''; + $count = 0; + foreach ($this->getMethods() as $method) { + // Skip private methods of parent classes + if ($method->getDeclaringClassName() !== $this->getName() && $method->isPrivate()) { + continue; + } + // Indent + $string = "\n "; + + $string .= preg_replace('~\n(?!$|\n|\s*\*)~', "\n ", $method->__toString()); + // Add inherits + if ($method->getDeclaringClassName() !== $this->getName()) { + $string = preg_replace( + array('~Method [ <[\w:]+~', '~, overwrites[^,]+~'), + array('\0, inherits ' . $method->getDeclaringClassName(), ''), + $string + ); + } + if ($method->isStatic()) { + $sBuffer .= $string; + $sCount++; + } else { + $buffer .= $string; + $count++; + } + } + $staticMethods = sprintf("\n\n - Static methods [%d] {\n%s }", $sCount, ltrim($sBuffer, "\n")); + $methods = sprintf("\n\n - Methods [%d] {\n%s }", $count, ltrim($buffer, "\n")); + + return sprintf( + "%s%s [ %s %s%s%s %s%s%s ] {\n @@ %s %d-%d%s%s%s%s%s\n}\n", + $this->getDocComment() ? $this->getDocComment() . "\n" : '', + $this->isInterface() ? 'Interface' : 'Class', + $this->isIterateable() ? ' ' : '', + $this->isAbstract() && !$this->isInterface() ? 'abstract ' : '', + $this->isFinal() ? 'final ' : '', + $this->isInterface() ? 'interface' : 'class', + $this->getName(), + null !== $this->getParentClassName() ? ' extends ' . $this->getParentClassName() : '', + $implements, + $this->getFileName(), + $this->getStartLine(), + $this->getEndLine(), + $constants, + $staticProperties, + $staticMethods, + $properties, + $methods + ); + } + + /** + * Exports a reflected object. + * + * @param \TokenReflection\Broker $broker Broker instance + * @param string|object $className Class name or class instance + * @param boolean $return Return the export instead of outputting it + * @return string|null + * @throws \TokenReflection\Exception\RuntimeException If requested parameter doesn't exist. + */ + public static function export(Broker $broker, $className, $return = false) + { + if (is_object($className)) { + $className = get_class($className); + } + + $class = $broker->getClass($className); + if ($class instanceof Invalid\ReflectionClass) { + throw new Exception\RuntimeException('Class is invalid.', Exception\RuntimeException::UNSUPPORTED); + } elseif ($class instanceof Dummy\ReflectionClass) { + throw new Exception\RuntimeException('Class does not exist.', Exception\RuntimeException::DOES_NOT_EXIST); + } + + if ($return) { + return $class->__toString(); + } + + echo $class->__toString(); + } + + /** + * Returns if the class definition is complete. + * + * @return boolean + */ + public function isComplete() + { + if (!$this->definitionComplete) { + if (null !== $this->parentClassName && !$this->getParentClass()->isComplete()) { + return false; + } + + foreach ($this->getOwnInterfaces() as $interface) { + if (!$interface->isComplete()) { + return false; + } + } + + $this->definitionComplete = true; + } + + return $this->definitionComplete; + } + + /** + * Returns imported namespaces and aliases from the declaring namespace. + * + * @return array + */ + public function getNamespaceAliases() + { + return $this->aliases; + } + + /** + * Processes the parent reflection object. + * + * @param \TokenReflection\IReflection $parent Parent reflection object + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @return \TokenReflection\ReflectionClass + * @throws \TokenReflection\ParseException On invalid parent reflection provided + */ + protected function processParent(IReflection $parent, Stream $tokenStream) + { + if (!$parent instanceof ReflectionFileNamespace) { + throw new Exception\ParseException($this, $tokenStream, sprintf('Invalid parent reflection provided: "%s".', get_class($parent)), Exception\ParseException::INVALID_PARENT); + } + + $this->namespaceName = $parent->getName(); + $this->aliases = $parent->getNamespaceAliases(); + return parent::processParent($parent, $tokenStream); + } + + /** + * Parses reflected element metadata from the token stream. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @param \TokenReflection\IReflection $parent Parent reflection object + * @return \TokenReflection\ReflectionClass + */ + protected function parse(Stream $tokenStream, IReflection $parent) + { + return $this + ->parseModifiers($tokenStream) + ->parseName($tokenStream) + ->parseParent($tokenStream, $parent) + ->parseInterfaces($tokenStream, $parent); + } + + /** + * Parses class modifiers (abstract, final) and class type (class, interface). + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @return \TokenReflection\ReflectionClass + */ + private function parseModifiers(Stream $tokenStream) + { + while (true) { + switch ($tokenStream->getType()) { + case null: + break 2; + case T_ABSTRACT: + $this->modifiers = InternalReflectionClass::IS_EXPLICIT_ABSTRACT; + break; + case T_FINAL: + $this->modifiers = InternalReflectionClass::IS_FINAL; + break; + case T_INTERFACE: + $this->modifiers = self::IS_INTERFACE; + $this->type = self::IS_INTERFACE; + $tokenStream->skipWhitespaces(true); + break 2; + case T_TRAIT: + $this->modifiers = self::IS_TRAIT; + $this->type = self::IS_TRAIT; + $tokenStream->skipWhitespaces(true); + break 2; + case T_CLASS: + $tokenStream->skipWhitespaces(true); + break 2; + default: + break; + } + + $tokenStream->skipWhitespaces(true); + } + + return $this; + } + + /** + * Parses the class/interface name. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @return \TokenReflection\ReflectionClass + * @throws \TokenReflection\Exception\ParseException If the class name could not be determined. + */ + protected function parseName(Stream $tokenStream) + { + if (!$tokenStream->is(T_STRING)) { + throw new Exception\ParseException($this, $tokenStream, 'Unexpected token found.', Exception\ParseException::UNEXPECTED_TOKEN); + } + + if ($this->namespaceName === ReflectionNamespace::NO_NAMESPACE_NAME) { + $this->name = $tokenStream->getTokenValue(); + } else { + $this->name = $this->namespaceName . '\\' . $tokenStream->getTokenValue(); + } + + $tokenStream->skipWhitespaces(true); + + return $this; + } + + /** + * Parses the parent class. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @param \TokenReflection\IReflection $parent Parent reflection object + * @return \TokenReflection\ReflectionClass + */ + private function parseParent(Stream $tokenStream, ReflectionElement $parent = null) + { + if (!$tokenStream->is(T_EXTENDS)) { + return $this; + } + + while (true) { + $tokenStream->skipWhitespaces(true); + + $parentClassName = ''; + while (true) { + switch ($tokenStream->getType()) { + case T_STRING: + case T_NS_SEPARATOR: + $parentClassName .= $tokenStream->getTokenValue(); + break; + default: + break 2; + } + + $tokenStream->skipWhitespaces(true); + } + + $parentClassName = Resolver::resolveClassFQN($parentClassName, $this->aliases, $this->namespaceName); + + if ($this->isInterface()) { + $this->interfaces[] = $parentClassName; + + if (',' === $tokenStream->getTokenValue()) { + continue; + } + } else { + $this->parentClassName = $parentClassName; + } + + break; + } + + return $this; + } + + /** + * Parses implemented interfaces. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @param \TokenReflection\IReflection $parent Parent reflection object + * @return \TokenReflection\ReflectionClass + * @throws \TokenReflection\Exception\ParseException On error while parsing interfaces. + */ + private function parseInterfaces(Stream $tokenStream, ReflectionElement $parent = null) + { + if (!$tokenStream->is(T_IMPLEMENTS)) { + return $this; + } + + if ($this->isInterface()) { + throw new Exception\ParseException($this, $tokenStream, 'Interfaces cannot implement interfaces.', Exception\ParseException::LOGICAL_ERROR); + } + + while (true) { + $interfaceName = ''; + + $tokenStream->skipWhitespaces(true); + while (true) { + switch ($tokenStream->getType()) { + case T_STRING: + case T_NS_SEPARATOR: + $interfaceName .= $tokenStream->getTokenValue(); + break; + default: + break 2; + } + + $tokenStream->skipWhitespaces(true); + } + + $this->interfaces[] = Resolver::resolveClassFQN($interfaceName, $this->aliases, $this->namespaceName); + + $type = $tokenStream->getType(); + if ('{' === $type) { + break; + } elseif (',' !== $type) { + throw new Exception\ParseException($this, $tokenStream, 'Unexpected token found, expected "{" or ";".', Exception\ParseException::UNEXPECTED_TOKEN); + } + } + + return $this; + } + + /** + * Parses child reflection objects from the token stream. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @param \TokenReflection\IReflection $parent Parent reflection object + * @return \TokenReflection\ReflectionClass + * @throws \TokenReflection\Exception\ParseException If a parse error was detected. + */ + protected function parseChildren(Stream $tokenStream, IReflection $parent) + { + while (true) { + switch ($type = $tokenStream->getType()) { + case null: + break 2; + case T_COMMENT: + case T_DOC_COMMENT: + $docblock = $tokenStream->getTokenValue(); + if (preg_match('~^' . preg_quote(self::DOCBLOCK_TEMPLATE_START, '~') . '~', $docblock)) { + array_unshift($this->docblockTemplates, new ReflectionAnnotation($this, $docblock)); + } elseif (self::DOCBLOCK_TEMPLATE_END === $docblock) { + array_shift($this->docblockTemplates); + } + $tokenStream->next(); + break; + case '}': + break 2; + case T_PUBLIC: + case T_PRIVATE: + case T_PROTECTED: + case T_STATIC: + case T_VAR: + case T_VARIABLE: + static $searching = array(T_VARIABLE => true, T_FUNCTION => true); + + if (T_VAR !== $tokenStream->getType()) { + $position = $tokenStream->key(); + while (null !== ($type = $tokenStream->getType($position)) && !isset($searching[$type])) { + $position++; + } + } + + if (T_VARIABLE === $type || T_VAR === $type) { + $property = new ReflectionProperty($tokenStream, $this->getBroker(), $this); + $this->properties[$property->getName()] = $property; + $tokenStream->next(); + break; + } + // Break missing on purpose + case T_FINAL: + case T_ABSTRACT: + case T_FUNCTION: + $method = new ReflectionMethod($tokenStream, $this->getBroker(), $this); + $this->methods[$method->getName()] = $method; + $tokenStream->next(); + break; + case T_CONST: + $tokenStream->skipWhitespaces(true); + while ($tokenStream->is(T_STRING)) { + $constant = new ReflectionConstant($tokenStream, $this->getBroker(), $this); + $this->constants[$constant->getName()] = $constant; + if ($tokenStream->is(',')) { + $tokenStream->skipWhitespaces(true); + } else { + $tokenStream->next(); + } + } + break; + case T_USE: + $tokenStream->skipWhitespaces(true); + + while (true) { + $traitName = ''; + $type = $tokenStream->getType(); + while (T_STRING === $type || T_NS_SEPARATOR === $type) { + $traitName .= $tokenStream->getTokenValue(); + $type = $tokenStream->skipWhitespaces(true)->getType(); + } + + if ('' === trim($traitName, '\\')) { + throw new Exception\ParseException($this, $tokenStream, 'An empty trait name found.', Exception\ParseException::LOGICAL_ERROR); + } + + $this->traits[] = Resolver::resolveClassFQN($traitName, $this->aliases, $this->namespaceName); + + if (';' === $type) { + // End of "use" + $tokenStream->skipWhitespaces(); + break; + } elseif (',' === $type) { + // Next trait name follows + $tokenStream->skipWhitespaces(); + continue; + } elseif ('{' !== $type) { + // Unexpected token + throw new Exception\ParseException($this, $tokenStream, 'Unexpected token found: "%s".', Exception\ParseException::UNEXPECTED_TOKEN); + } + + // Aliases definition + $type = $tokenStream->skipWhitespaces(true)->getType(); + while (true) { + if ('}' === $type) { + $tokenStream->skipWhitespaces(); + break 2; + } + + $leftSide = ''; + $rightSide = array('', null); + $alias = true; + + while (T_STRING === $type || T_NS_SEPARATOR === $type || T_DOUBLE_COLON === $type) { + $leftSide .= $tokenStream->getTokenValue(); + $type = $tokenStream->skipWhitespaces(true)->getType(); + } + + if (T_INSTEADOF === $type) { + $alias = false; + } elseif (T_AS !== $type) { + throw new Exception\ParseException($this, $tokenStream, 'Unexpected token found.', Exception\ParseException::UNEXPECTED_TOKEN); + } + + $type = $tokenStream->skipWhitespaces(true)->getType(); + + if (T_PUBLIC === $type || T_PROTECTED === $type || T_PRIVATE === $type) { + if (!$alias) { + throw new Exception\ParseException($this, $tokenStream, 'Unexpected token found.', Exception\ParseException::UNEXPECTED_TOKEN); + } + + switch ($type) { + case T_PUBLIC: + $type = InternalReflectionMethod::IS_PUBLIC; + break; + case T_PROTECTED: + $type = InternalReflectionMethod::IS_PROTECTED; + break; + case T_PRIVATE: + $type = InternalReflectionMethod::IS_PRIVATE; + break; + default: + break; + } + + $rightSide[1] = $type; + $type = $tokenStream->skipWhitespaces(true)->getType(); + } + + while (T_STRING === $type || (T_NS_SEPARATOR === $type && !$alias)) { + $rightSide[0] .= $tokenStream->getTokenValue(); + $type = $tokenStream->skipWhitespaces(true)->getType(); + } + + if (empty($leftSide)) { + throw new Exception\ParseException($this, $tokenStream, 'An empty method name was found.', Exception\ParseException::LOGICAL_ERROR); + } + + if ($alias) { + // Alias + if ($pos = strpos($leftSide, '::')) { + $methodName = substr($leftSide, $pos + 2); + $className = Resolver::resolveClassFQN(substr($leftSide, 0, $pos), $this->aliases, $this->namespaceName); + $leftSide = $className . '::' . $methodName; + + $this->traitAliases[$rightSide[0]] = $leftSide; + } else { + $this->traitAliases[$rightSide[0]] = '(null)::' . $leftSide; + } + + $this->traitImports[$leftSide][] = $rightSide; + } else { + // Insteadof + if ($pos = strpos($leftSide, '::')) { + $methodName = substr($leftSide, $pos + 2); + } else { + throw new Exception\ParseException($this, $tokenStream, 'A T_DOUBLE_COLON has to be present when using T_INSTEADOF.', Exception\ParseException::UNEXPECTED_TOKEN); + } + + $this->traitImports[Resolver::resolveClassFQN($rightSide[0], $this->aliases, $this->namespaceName) . '::' . $methodName][] = null; + } + + if (',' === $type) { + $tokenStream->skipWhitespaces(true); + continue; + } elseif (';' !== $type) { + throw new Exception\ParseException($this, $tokenStream, 'Unexpected token found.', Exception\ParseException::UNEXPECTED_TOKEN); + } + + $type = $tokenStream->skipWhitespaces()->getType(); + } + } + + break; + default: + $tokenStream->next(); + break; + } + } + + return $this; + } +} diff --git a/apigen/libs/TokenReflection/TokenReflection/ReflectionConstant.php b/apigen/libs/TokenReflection/TokenReflection/ReflectionConstant.php new file mode 100644 index 00000000000..dbd06ad24e9 --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/ReflectionConstant.php @@ -0,0 +1,392 @@ +getName(); + if (null !== $this->namespaceName && $this->namespaceName !== ReflectionNamespace::NO_NAMESPACE_NAME) { + $name = substr($name, strlen($this->namespaceName) + 1); + } + + return $name; + } + + /** + * Returns the name of the declaring class. + * + * @return string|null + */ + public function getDeclaringClassName() + { + return $this->declaringClassName; + } + + /** + * Returns a reflection of the declaring class. + * + * @return \TokenReflection\ReflectionClass|null + */ + public function getDeclaringClass() + { + if (null === $this->declaringClassName) { + return null; + } + + return $this->getBroker()->getClass($this->declaringClassName); + } + + /** + * Returns the namespace name. + * + * @return string + */ + public function getNamespaceName() + { + return null === $this->namespaceName || $this->namespaceName === ReflectionNamespace::NO_NAMESPACE_NAME ? '' : $this->namespaceName; + } + + /** + * Returns if the class is defined within a namespace. + * + * @return boolean + */ + public function inNamespace() + { + return '' !== $this->getNamespaceName(); + } + + /** + * Returns the constant value. + * + * @return mixed + */ + public function getValue() + { + if (is_array($this->valueDefinition)) { + $this->value = Resolver::getValueDefinition($this->valueDefinition, $this); + $this->valueDefinition = Resolver::getSourceCode($this->valueDefinition); + } + + return $this->value; + } + + /** + * Returns the constant value definition. + * + * @return string + */ + public function getValueDefinition() + { + return is_array($this->valueDefinition) ? Resolver::getSourceCode($this->valueDefinition) : $this->valueDefinition; + } + + /** + * Returns the originaly provided value definition. + * + * @return string + */ + public function getOriginalValueDefinition() + { + return $this->valueDefinition; + } + + /** + * Returns the string representation of the reflection object. + * + * @return string + */ + public function __toString() + { + return sprintf( + "Constant [ %s %s ] { %s }\n", + strtolower(gettype($this->getValue())), + $this->getName(), + $this->getValue() + ); + } + + /** + * Exports a reflected object. + * + * @param \TokenReflection\Broker $broker Broker instance + * @param string|object|null $class Class name, class instance or null + * @param string $constant Constant name + * @param boolean $return Return the export instead of outputting it + * @return string|null + * @throws \TokenReflection\Exception\RuntimeException If requested parameter doesn't exist. + */ + public static function export(Broker $broker, $class, $constant, $return = false) + { + $className = is_object($class) ? get_class($class) : $class; + $constantName = $constant; + + if (null === $className) { + $constant = $broker->getConstant($constantName); + if (null === $constant) { + throw new Exception\RuntimeException('Constant does not exist.', Exception\RuntimeException::DOES_NOT_EXIST); + } + } else { + $class = $broker->getClass($className); + if ($class instanceof Invalid\ReflectionClass) { + throw new Exception\RuntimeException('Class is invalid.', Exception\RuntimeException::UNSUPPORTED); + } elseif ($class instanceof Dummy\ReflectionClass) { + throw new Exception\RuntimeException('Class does not exist.', Exception\RuntimeException::DOES_NOT_EXIST, $class); + } + $constant = $class->getConstantReflection($constantName); + } + + if ($return) { + return $constant->__toString(); + } + + echo $constant->__toString(); + } + + /** + * Returns imported namespaces and aliases from the declaring namespace. + * + * @return array + */ + public function getNamespaceAliases() + { + return null === $this->declaringClassName ? $this->aliases : $this->getDeclaringClass()->getNamespaceAliases(); + } + + /** + * Returns an element pretty (docblock compatible) name. + * + * @return string + */ + public function getPrettyName() + { + return null === $this->declaringClassName ? parent::getPrettyName() : sprintf('%s::%s', $this->declaringClassName, $this->name); + } + + /** + * Returns if the constant definition is valid. + * + * @return boolean + */ + public function isValid() + { + return true; + } + + /** + * Processes the parent reflection object. + * + * @param \TokenReflection\IReflection $parent Parent reflection object + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @return \TokenReflection\ReflectionElement + * @throws \TokenReflection\Exception\ParseException If an invalid parent reflection object was provided. + */ + protected function processParent(IReflection $parent, Stream $tokenStream) + { + if ($parent instanceof ReflectionFileNamespace) { + $this->namespaceName = $parent->getName(); + $this->aliases = $parent->getNamespaceAliases(); + } elseif ($parent instanceof ReflectionClass) { + $this->declaringClassName = $parent->getName(); + } else { + throw new Exception\ParseException($this, $tokenStream, sprintf('Invalid parent reflection provided: "%s".', get_class($parent)), Exception\ParseException::INVALID_PARENT); + } + + return parent::processParent($parent, $tokenStream); + } + + /** + * Find the appropriate docblock. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @param \TokenReflection\IReflection $parent Parent reflection + * @return \TokenReflection\ReflectionConstant + */ + protected function parseDocComment(Stream $tokenStream, IReflection $parent) + { + $position = $tokenStream->key() - 1; + while ($position > 0 && !$tokenStream->is(T_CONST, $position)) { + $position--; + } + + $actual = $tokenStream->key(); + + parent::parseDocComment($tokenStream->seek($position), $parent); + + $tokenStream->seek($actual); + + return $this; + } + + /** + * Parses reflected element metadata from the token stream. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @param \TokenReflection\IReflection $parent Parent reflection object + * @return \TokenReflection\ReflectionConstant + */ + protected function parse(Stream $tokenStream, IReflection $parent) + { + if ($tokenStream->is(T_CONST)) { + $tokenStream->skipWhitespaces(true); + } + + if (false === $this->docComment->getDocComment()) { + parent::parseDocComment($tokenStream, $parent); + } + + return $this + ->parseName($tokenStream) + ->parseValue($tokenStream, $parent); + } + + /** + * Parses the constant name. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @return \TokenReflection\ReflectionConstant + * @throws \TokenReflection\Exception\ParseReflection If the constant name could not be determined. + */ + protected function parseName(Stream $tokenStream) + { + if (!$tokenStream->is(T_STRING)) { + throw new Exception\ParseException($this, $tokenStream, 'The constant name could not be determined.', Exception\ParseException::LOGICAL_ERROR); + } + + if (null === $this->namespaceName || $this->namespaceName === ReflectionNamespace::NO_NAMESPACE_NAME) { + $this->name = $tokenStream->getTokenValue(); + } else { + $this->name = $this->namespaceName . '\\' . $tokenStream->getTokenValue(); + } + + $tokenStream->skipWhitespaces(true); + + return $this; + } + + /** + * Parses the constant value. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @param \TokenReflection\IReflection $parent Parent reflection object + * @return \TokenReflection\ReflectionConstant + * @throws \TokenReflection\Exception\ParseException If the constant value could not be determined. + */ + private function parseValue(Stream $tokenStream, IReflection $parent) + { + if (!$tokenStream->is('=')) { + throw new Exception\ParseException($this, $tokenStream, 'Could not find the definition start.', Exception\ParseException::UNEXPECTED_TOKEN); + } + + $tokenStream->skipWhitespaces(true); + + static $acceptedTokens = array( + '-' => true, + '+' => true, + T_STRING => true, + T_NS_SEPARATOR => true, + T_CONSTANT_ENCAPSED_STRING => true, + T_DNUMBER => true, + T_LNUMBER => true, + T_DOUBLE_COLON => true, + T_CLASS_C => true, + T_DIR => true, + T_FILE => true, + T_FUNC_C => true, + T_LINE => true, + T_METHOD_C => true, + T_NS_C => true, + T_TRAIT_C => true + ); + + while (null !== ($type = $tokenStream->getType())) { + if (T_START_HEREDOC === $type) { + $this->valueDefinition[] = $tokenStream->current(); + while (null !== $type && T_END_HEREDOC !== $type) { + $tokenStream->next(); + $this->valueDefinition[] = $tokenStream->current(); + $type = $tokenStream->getType(); + }; + $tokenStream->next(); + } elseif (isset($acceptedTokens[$type])) { + $this->valueDefinition[] = $tokenStream->current(); + $tokenStream->next(); + } elseif ($tokenStream->isWhitespace(true)) { + $tokenStream->skipWhitespaces(true); + } else { + break; + } + } + + if (empty($this->valueDefinition)) { + throw new Exception\ParseException($this, $tokenStream, 'Value definition is empty.', Exception\ParseException::LOGICAL_ERROR); + } + + $value = $tokenStream->getTokenValue(); + if (null === $type || (',' !== $value && ';' !== $value)) { + throw new Exception\ParseException($this, $tokenStream, 'Invalid value definition.', Exception\ParseException::LOGICAL_ERROR); + } + + return $this; + } +} diff --git a/apigen/libs/TokenReflection/TokenReflection/ReflectionElement.php b/apigen/libs/TokenReflection/TokenReflection/ReflectionElement.php new file mode 100644 index 00000000000..b0fb331eb23 --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/ReflectionElement.php @@ -0,0 +1,352 @@ +count()) { + throw new Exception\ParseException($this, $tokenStream, 'Reflection token stream must not be empty.', Exception\ParseException::INVALID_ARGUMENT); + } + + parent::__construct($tokenStream, $broker, $parent); + } + + /** + * Parses the token substream. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @param \TokenReflection\IReflection $parent Parent reflection object + */ + final protected function parseStream(Stream $tokenStream, IReflection $parent = null) + { + $this->fileName = $tokenStream->getFileName(); + + $this + ->processParent($parent, $tokenStream) + ->parseStartLine($tokenStream) + ->parseDocComment($tokenStream, $parent) + ->parse($tokenStream, $parent) + ->parseChildren($tokenStream, $parent) + ->parseEndLine($tokenStream); + } + + /** + * Returns the file name the reflection object is defined in. + * + * @return string + */ + public function getFileName() + { + return $this->fileName; + } + + /** + * Returns a file reflection. + * + * @return \TokenReflection\ReflectionFile + * @throws \TokenReflection\Exception\RuntimeException If the file is not stored inside the broker + */ + public function getFileReflection() + { + return $this->getBroker()->getFile($this->fileName); + } + + /** + * Returns the definition start line number in the file. + * + * @return integer + */ + public function getStartLine() + { + return $this->startLine; + } + + /** + * Returns the definition end line number in the file. + * + * @return integer + */ + public function getEndLine() + { + return $this->endLine; + } + + /** + * Returns the PHP extension reflection. + * + * Alwyas returns null - everything is user defined. + * + * @return null + */ + public function getExtension() + { + return null; + } + + /** + * Returns the PHP extension name. + * + * Alwyas returns false - everything is user defined. + * + * @return boolean + */ + public function getExtensionName() + { + return false; + } + + /** + * Returns the appropriate source code part. + * + * @return string + */ + public function getSource() + { + return $this->broker->getFileTokens($this->getFileName())->getSourcePart($this->startPosition, $this->endPosition); + } + + /** + * Returns the start position in the file token stream. + * + * @return integer + */ + public function getStartPosition() + { + return $this->startPosition; + } + + /** + * Returns the end position in the file token stream. + * + * @return integer + */ + public function getEndPosition() + { + return $this->endPosition; + } + + /** + * Returns the stack of docblock templates. + * + * @return array + */ + protected function getDocblockTemplates() + { + return $this->docblockTemplates; + } + + /** + * Processes the parent reflection object. + * + * @param \TokenReflection\Reflection $parent Parent reflection object + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @return \TokenReflection\ReflectionElement + */ + protected function processParent(IReflection $parent, Stream $tokenStream) + { + // To be defined in child classes + return $this; + } + + /** + * Find the appropriate docblock. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @param \TokenReflection\IReflection $parent Parent reflection + * @return \TokenReflection\ReflectionElement + */ + protected function parseDocComment(Stream $tokenStream, IReflection $parent) + { + if ($this instanceof ReflectionParameter) { + $this->docComment = new ReflectionAnnotation($this); + return $this; + } + + $position = $tokenStream->key(); + + if ($tokenStream->is(T_DOC_COMMENT, $position - 1)) { + $value = $tokenStream->getTokenValue($position - 1); + if (self::DOCBLOCK_TEMPLATE_END !== $value) { + $this->docComment = new ReflectionAnnotation($this, $value); + $this->startPosition--; + } + } elseif ($tokenStream->is(T_DOC_COMMENT, $position - 2)) { + $value = $tokenStream->getTokenValue($position - 2); + if (self::DOCBLOCK_TEMPLATE_END !== $value) { + $this->docComment = new ReflectionAnnotation($this, $value); + $this->startPosition -= 2; + } + } elseif ($tokenStream->is(T_COMMENT, $position - 1) && preg_match('~^' . preg_quote(self::DOCBLOCK_TEMPLATE_START, '~') . '~', $tokenStream->getTokenValue($position - 1))) { + $this->docComment = new ReflectionAnnotation($this, $tokenStream->getTokenValue($position - 1)); + $this->startPosition--; + } elseif ($tokenStream->is(T_COMMENT, $position - 2) && preg_match('~^' . preg_quote(self::DOCBLOCK_TEMPLATE_START, '~') . '~', $tokenStream->getTokenValue($position - 2))) { + $this->docComment = new ReflectionAnnotation($this, $tokenStream->getTokenValue($position - 2)); + $this->startPosition -= 2; + } + + if (null === $this->docComment) { + $this->docComment = new ReflectionAnnotation($this); + } + + if ($parent instanceof ReflectionElement) { + $this->docComment->setTemplates($parent->getDocblockTemplates()); + } + + return $this; + } + + /** + * Saves the start line number. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token susbtream + * @return \TokenReflection\ReflectionElement + */ + private final function parseStartLine(Stream $tokenStream) + { + $token = $tokenStream->current(); + $this->startLine = $token[2]; + + $this->startPosition = $tokenStream->key(); + + return $this; + } + + /** + * Saves the end line number. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token susbtream + * @return \TokenReflection\ReflectionElement + */ + private final function parseEndLine(Stream $tokenStream) + { + $token = $tokenStream->current(); + $this->endLine = $token[2]; + + $this->endPosition = $tokenStream->key(); + + return $this; + } + + /** + * Parses reflected element metadata from the token stream. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @param \TokenReflection\IReflection $parent Parent reflection object + * @return \TokenReflection\ReflectionElement + */ + abstract protected function parse(Stream $tokenStream, IReflection $parent); + + /** + * Parses the reflection object name. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @return \TokenReflection\ReflectionElement + */ + abstract protected function parseName(Stream $tokenStream); + + /** + * Parses child reflection objects from the token stream. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @param \TokenReflection\Reflection $parent Parent reflection object + * @return \TokenReflection\ReflectionElement + */ + protected function parseChildren(Stream $tokenStream, IReflection $parent) + { + // To be defined in child classes + return $this; + } +} diff --git a/apigen/libs/TokenReflection/TokenReflection/ReflectionFile.php b/apigen/libs/TokenReflection/TokenReflection/ReflectionFile.php new file mode 100644 index 00000000000..863b3587299 --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/ReflectionFile.php @@ -0,0 +1,144 @@ +namespaces; + } + + /** + * Returns the string representation of the reflection object. + * + * @throws \TokenReflection\Exception\RuntimeException If the method is called, because it's unsupported. + */ + public function __toString() + { + throw new Exception\RuntimeException('Casting to string is not supported.', Exception\RuntimeException::UNSUPPORTED, $this); + } + + /** + * Exports a reflected object. + * + * @param \TokenReflection\Broker $broker Broker instance + * @param string $argument Reflection object name + * @param boolean $return Return the export instead of outputting it + * @throws \TokenReflection\Exception\RuntimeException If the method is called, because it's unsupported. + */ + public static function export(Broker $broker, $argument, $return = false) + { + throw new Exception\RuntimeException('Export is not supported.', Exception\RuntimeException::UNSUPPORTED); + } + + /** + * Outputs the file source code. + * + * @return string + */ + public function getSource() + { + return (string) $this->broker->getFileTokens($this->getName()); + } + + /** + * Parses the token substream and prepares namespace reflections from the file. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @param \TokenReflection\IReflection $parent Parent reflection object + * @return \TokenReflection\ReflectionFile + */ + protected function parseStream(Stream $tokenStream, IReflection $parent = null) + { + $this->name = $tokenStream->getFileName(); + + if (1 >= $tokenStream->count()) { + // No PHP content + $this->docComment = new ReflectionAnnotation($this, null); + return $this; + } + + $docCommentPosition = null; + + if (!$tokenStream->is(T_OPEN_TAG)) { + $this->namespaces[] = new ReflectionFileNamespace($tokenStream, $this->broker, $this); + } else { + $tokenStream->skipWhitespaces(); + + while (null !== ($type = $tokenStream->getType())) { + switch ($type) { + case T_DOC_COMMENT: + if (null === $docCommentPosition) { + $docCommentPosition = $tokenStream->key(); + } + case T_WHITESPACE: + case T_COMMENT: + break; + case T_DECLARE: + // Intentionally twice call of skipWhitespaces() + $tokenStream + ->skipWhitespaces() + ->findMatchingBracket() + ->skipWhitespaces() + ->skipWhitespaces(); + break; + case T_NAMESPACE: + $docCommentPosition = $docCommentPosition ?: -1; + break 2; + default: + $docCommentPosition = $docCommentPosition ?: -1; + $this->namespaces[] = new ReflectionFileNamespace($tokenStream, $this->broker, $this); + break 2; + } + + $tokenStream->skipWhitespaces(); + } + + while (null !== ($type = $tokenStream->getType())) { + if (T_NAMESPACE === $type) { + $this->namespaces[] = new ReflectionFileNamespace($tokenStream, $this->broker, $this); + } else { + $tokenStream->skipWhitespaces(); + } + } + } + + if (null !== $docCommentPosition && !empty($this->namespaces) && $docCommentPosition === $this->namespaces[0]->getStartPosition()) { + $docCommentPosition = null; + } + $this->docComment = new ReflectionAnnotation($this, null !== $docCommentPosition ? $tokenStream->getTokenValue($docCommentPosition) : null); + + return $this; + } +} diff --git a/apigen/libs/TokenReflection/TokenReflection/ReflectionFileNamespace.php b/apigen/libs/TokenReflection/TokenReflection/ReflectionFileNamespace.php new file mode 100644 index 00000000000..6304256e457 --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/ReflectionFileNamespace.php @@ -0,0 +1,412 @@ +classes; + } + + /** + * Returns constant reflections. + * + * @return array + */ + public function getConstants() + { + return $this->constants; + } + + /** + * Returns function reflections. + * + * @return array + */ + public function getFunctions() + { + return $this->functions; + } + + /** + * Returns all imported namespaces and aliases. + * + * @return array + */ + public function getNamespaceAliases() + { + return $this->aliases; + } + + /** + * Processes the parent reflection object. + * + * @param \TokenReflection\IReflection $parent Parent reflection object + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @return \TokenReflection\ReflectionElement + * @throws \TokenReflection\Exception\ParseException If an invalid parent reflection object was provided. + */ + protected function processParent(IReflection $parent, Stream $tokenStream) + { + if (!$parent instanceof ReflectionFile) { + throw new Exception\ParseException($this, $tokenStream, 'The parent object has to be an instance of TokenReflection\ReflectionFile.', Exception\ParseException::INVALID_PARENT); + } + + return parent::processParent($parent, $tokenStream); + } + + /** + * Parses reflected element metadata from the token stream. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @param \TokenReflection\IReflection $parent Parent reflection object + * @return \TokenReflection\ReflectionFileNamespace + */ + protected function parse(Stream $tokenStream, IReflection $parent) + { + return $this->parseName($tokenStream); + } + + /** + * Find the appropriate docblock. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @param \TokenReflection\IReflection $parent Parent reflection + * @return \TokenReflection\ReflectionElement + */ + protected function parseDocComment(Stream $tokenStream, IReflection $parent) + { + if (!$tokenStream->is(T_NAMESPACE)) { + $this->docComment = new ReflectionAnnotation($this); + return $this; + } else { + return parent::parseDocComment($tokenStream, $parent); + } + } + + /** + * Parses the namespace name. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @return \TokenReflection\ReflectionFileNamespace + * @throws \TokenReflection\Exception\ParseException If the namespace name could not be determined. + */ + protected function parseName(Stream $tokenStream) + { + if (!$tokenStream->is(T_NAMESPACE)) { + $this->name = ReflectionNamespace::NO_NAMESPACE_NAME; + return $this; + } + + $tokenStream->skipWhitespaces(); + + $name = ''; + // Iterate over the token stream + while (true) { + switch ($tokenStream->getType()) { + // If the current token is a T_STRING, it is a part of the namespace name + case T_STRING: + case T_NS_SEPARATOR: + $name .= $tokenStream->getTokenValue(); + break; + default: + // Stop iterating when other token than string or ns separator found + break 2; + } + + $tokenStream->skipWhitespaces(true); + } + + $name = ltrim($name, '\\'); + + if (empty($name)) { + $this->name = ReflectionNamespace::NO_NAMESPACE_NAME; + } else { + $this->name = $name; + } + + if (!$tokenStream->is(';') && !$tokenStream->is('{')) { + throw new Exception\ParseException($this, $tokenStream, 'Invalid namespace name end, expecting ";" or "{".', Exception\ParseException::UNEXPECTED_TOKEN); + } + + $tokenStream->skipWhitespaces(); + + return $this; + } + + /** + * Parses child reflection objects from the token stream. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @param \TokenReflection\IReflection $parent Parent reflection object + * @return \TokenReflection\ReflectionFileNamespace + * @throws \TokenReflection\Exception\ParseException If child elements could not be parsed. + */ + protected function parseChildren(Stream $tokenStream, IReflection $parent) + { + static $skipped = array(T_WHITESPACE => true, T_COMMENT => true, T_DOC_COMMENT => true); + $depth = 0; + + $firstChild = null; + + while (true) { + switch ($tokenStream->getType()) { + case T_USE: + while (true) { + $namespaceName = ''; + $alias = null; + + $tokenStream->skipWhitespaces(true); + + while (true) { + switch ($tokenStream->getType()) { + case T_STRING: + case T_NS_SEPARATOR: + $namespaceName .= $tokenStream->getTokenValue(); + break; + default: + break 2; + } + $tokenStream->skipWhitespaces(true); + } + $namespaceName = ltrim($namespaceName, '\\'); + + if (empty($namespaceName)) { + throw new Exception\ParseException($this, $tokenStream, 'Imported namespace name could not be determined.', Exception\ParseException::LOGICAL_ERROR); + } elseif ('\\' === substr($namespaceName, -1)) { + throw new Exception\ParseException($this, $tokenStream, sprintf('Invalid namespace name "%s".', $namespaceName), Exception\ParseException::LOGICAL_ERROR); + } + + if ($tokenStream->is(T_AS)) { + // Alias defined + $tokenStream->skipWhitespaces(true); + + if (!$tokenStream->is(T_STRING)) { + throw new Exception\ParseException($this, $tokenStream, sprintf('The imported namespace "%s" seems aliased but the alias name could not be determined.', $namespaceName), Exception\ParseException::LOGICAL_ERROR); + } + + $alias = $tokenStream->getTokenValue(); + + $tokenStream->skipWhitespaces(true); + } else { + // No explicit alias + if (false !== ($pos = strrpos($namespaceName, '\\'))) { + $alias = substr($namespaceName, $pos + 1); + } else { + $alias = $namespaceName; + } + } + + if (isset($this->aliases[$alias])) { + throw new Exception\ParseException($this, $tokenStream, sprintf('Namespace alias "%s" already defined.', $alias), Exception\ParseException::LOGICAL_ERROR); + } + + $this->aliases[$alias] = $namespaceName; + + $type = $tokenStream->getType(); + if (';' === $type) { + $tokenStream->skipWhitespaces(); + break 2; + } elseif (',' === $type) { + // Next namespace in the current "use" definition + continue; + } + + throw new Exception\ParseException($this, $tokenStream, 'Unexpected token found.', Exception\ParseException::UNEXPECTED_TOKEN); + } + + case T_COMMENT: + case T_DOC_COMMENT: + $docblock = $tokenStream->getTokenValue(); + if (preg_match('~^' . preg_quote(self::DOCBLOCK_TEMPLATE_START, '~') . '~', $docblock)) { + array_unshift($this->docblockTemplates, new ReflectionAnnotation($this, $docblock)); + } elseif (self::DOCBLOCK_TEMPLATE_END === $docblock) { + array_shift($this->docblockTemplates); + } + $tokenStream->next(); + break; + case '{': + $tokenStream->next(); + $depth++; + break; + case '}': + if (0 === $depth--) { + break 2; + } + + $tokenStream->next(); + break; + case null: + case T_NAMESPACE: + break 2; + case T_ABSTRACT: + case T_FINAL: + case T_CLASS: + case T_TRAIT: + case T_INTERFACE: + $class = new ReflectionClass($tokenStream, $this->getBroker(), $this); + $firstChild = $firstChild ?: $class; + + $className = $class->getName(); + if (isset($this->classes[$className])) { + if (!$this->classes[$className] instanceof Invalid\ReflectionClass) { + $this->classes[$className] = new Invalid\ReflectionClass($className, $this->classes[$className]->getFileName(), $this->getBroker()); + } + + if (!$this->classes[$className]->hasReasons()) { + $this->classes[$className]->addReason(new Exception\ParseException( + $this, + $tokenStream, + sprintf('Class %s is defined multiple times in the file.', $className), + Exception\ParseException::ALREADY_EXISTS + )); + } + } else { + $this->classes[$className] = $class; + } + $tokenStream->next(); + break; + case T_CONST: + $tokenStream->skipWhitespaces(true); + do { + $constant = new ReflectionConstant($tokenStream, $this->getBroker(), $this); + $firstChild = $firstChild ?: $constant; + + $constantName = $constant->getName(); + if (isset($this->constants[$constantName])) { + if (!$this->constants[$constantName] instanceof Invalid\ReflectionConstant) { + $this->constants[$constantName] = new Invalid\ReflectionConstant($constantName, $this->constants[$constantName]->getFileName(), $this->getBroker()); + } + + if (!$this->constants[$constantName]->hasReasons()) { + $this->constants[$constantName]->addReason(new Exception\ParseException( + $this, + $tokenStream, + sprintf('Constant %s is defined multiple times in the file.', $constantName), + Exception\ParseException::ALREADY_EXISTS + )); + } + } else { + $this->constants[$constantName] = $constant; + } + if ($tokenStream->is(',')) { + $tokenStream->skipWhitespaces(true); + } else { + $tokenStream->next(); + } + } while ($tokenStream->is(T_STRING)); + break; + case T_FUNCTION: + $position = $tokenStream->key() + 1; + while (isset($skipped[$type = $tokenStream->getType($position)])) { + $position++; + } + if ('(' === $type) { + // Skipping anonymous functions + + $tokenStream + ->seek($position) + ->findMatchingBracket() + ->skipWhiteSpaces(true); + + if ($tokenStream->is(T_USE)) { + $tokenStream + ->skipWhitespaces(true) + ->findMatchingBracket() + ->skipWhitespaces(true); + } + + $tokenStream + ->findMatchingBracket() + ->next(); + + continue; + } + + $function = new ReflectionFunction($tokenStream, $this->getBroker(), $this); + $firstChild = $firstChild ?: $function; + + $functionName = $function->getName(); + if (isset($this->functions[$functionName])) { + if (!$this->functions[$functionName] instanceof Invalid\ReflectionFunction) { + $this->functions[$functionName] = new Invalid\ReflectionFunction($functionName, $this->functions[$functionName]->getFileName(), $this->getBroker()); + } + + if (!$this->functions[$functionName]->hasReasons()) { + $this->functions[$functionName]->addReason(new Exception\ParseException( + $this, + $tokenStream, + sprintf('Function %s is defined multiple times in the file.', $functionName), + Exception\ParseException::ALREADY_EXISTS + )); + } + } else { + $this->functions[$functionName] = $function; + } + $tokenStream->next(); + break; + default: + $tokenStream->next(); + break; + } + } + + if ($firstChild) { + $this->startPosition = min($this->startPosition, $firstChild->getStartPosition()); + } + + return $this; + } +} diff --git a/apigen/libs/TokenReflection/TokenReflection/ReflectionFunction.php b/apigen/libs/TokenReflection/TokenReflection/ReflectionFunction.php new file mode 100644 index 00000000000..7ef59af1760 --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/ReflectionFunction.php @@ -0,0 +1,204 @@ +hasAnnotation('disabled'); + } + + /** + * Returns the string representation of the reflection object. + * + * @return string + */ + public function __toString() + { + $parameters = ''; + if ($this->getNumberOfParameters() > 0) { + $buffer = ''; + foreach ($this->getParameters() as $parameter) { + $buffer .= "\n " . $parameter->__toString(); + } + $parameters = sprintf( + "\n\n - Parameters [%d] {%s\n }", + $this->getNumberOfParameters(), + $buffer + ); + } + return sprintf( + "%sFunction [ function %s%s ] {\n @@ %s %d - %d%s\n}\n", + $this->getDocComment() ? $this->getDocComment() . "\n" : '', + $this->returnsReference() ? '&' : '', + $this->getName(), + $this->getFileName(), + $this->getStartLine(), + $this->getEndLine(), + $parameters + ); + } + + /** + * Exports a reflected object. + * + * @param \TokenReflection\Broker $broker Broker instance + * @param string $function Function name + * @param boolean $return Return the export instead of outputting it + * @return string|null + * @throws \TokenReflection\Exception\RuntimeException If requested parameter doesn't exist. + */ + public static function export(Broker $broker, $function, $return = false) + { + $functionName = $function; + + $function = $broker->getFunction($functionName); + if (null === $function) { + throw new Exception\RuntimeException(sprintf('Function %s() does not exist.', $functionName), Exception\RuntimeException::DOES_NOT_EXIST); + } + + if ($return) { + return $function->__toString(); + } + + echo $function->__toString(); + } + + /** + * Calls the function. + * + * @return mixed + */ + public function invoke() + { + return $this->invokeArgs(func_get_args()); + } + + /** + * Calls the function. + * + * @param array $args Function parameter values + * @return mixed + * @throws \TokenReflection\Exception\RuntimeException If the required function does not exist. + */ + public function invokeArgs(array $args = array()) + { + if (!function_exists($this->getName())) { + throw new Exception\RuntimeException('Could not invoke function; function is not defined.', Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + return call_user_func_array($this->getName(), $args); + } + + /** + * Returns imported namespaces and aliases from the declaring namespace. + * + * @return array + */ + public function getNamespaceAliases() + { + return $this->aliases; + } + + /** + * Returns the function/method as closure. + * + * @return \Closure + */ + public function getClosure() + { + if (!function_exists($this->getName())) { + throw new Exception\RuntimeException('Could not invoke function; function is not defined.', Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + $that = $this; + return function() use ($that) { + return $that->invokeArgs(func_get_args()); + }; + } + + /** + * Returns the closure scope class. + * + * @return null + */ + public function getClosureScopeClass() + { + return null; + } + + /** + * Returns if the function definition is valid. + * + * @return boolean + */ + public function isValid() + { + return true; + } + + /** + * Processes the parent reflection object. + * + * @param \TokenReflection\IReflection $parent Parent reflection object + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @return \TokenReflection\ReflectionElement + * @throws \TokenReflection\Exception\ParseException If an invalid parent reflection object was provided. + */ + protected function processParent(IReflection $parent, Stream $tokenStream) + { + if (!$parent instanceof ReflectionFileNamespace) { + throw new Exception\ParseException($this, $tokenStream, 'The parent object has to be an instance of TokenReflection\ReflectionFileNamespace.', Exception\ParseException::INVALID_PARENT); + } + + $this->namespaceName = $parent->getName(); + $this->aliases = $parent->getNamespaceAliases(); + return parent::processParent($parent, $tokenStream); + } + + /** + * Parses reflected element metadata from the token stream. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @param \TokenReflection\IReflection $parent Parent reflection object + * @return \TokenReflection\ReflectionFunction + */ + protected function parse(Stream $tokenStream, IReflection $parent) + { + return $this + ->parseReturnsReference($tokenStream) + ->parseName($tokenStream); + } +} diff --git a/apigen/libs/TokenReflection/TokenReflection/ReflectionFunctionBase.php b/apigen/libs/TokenReflection/TokenReflection/ReflectionFunctionBase.php new file mode 100644 index 00000000000..786ab1e9ca3 --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/ReflectionFunctionBase.php @@ -0,0 +1,440 @@ +namespaceName && ReflectionNamespace::NO_NAMESPACE_NAME !== $this->namespaceName) { + return $this->namespaceName . '\\' . $this->name; + } + + return $this->name; + } + + /** + * Returns the unqualified name (UQN). + * + * @return string + */ + public function getShortName() + { + return $this->name; + } + + /** + * Returns the namespace name. + * + * @return string + */ + public function getNamespaceName() + { + return null === $this->namespaceName || $this->namespaceName === ReflectionNamespace::NO_NAMESPACE_NAME ? '' : $this->namespaceName; + } + + /** + * Returns if the function/method is defined within a namespace. + * + * @return boolean + */ + public function inNamespace() + { + return '' !== $this->getNamespaceName(); + } + + /** + * Returns if the function/method is a closure. + * + * @return boolean + */ + public function isClosure() + { + return false; + } + + /** + * Returns this pointer bound to closure. + * + * @return null + */ + public function getClosureThis() + { + return null; + } + + /** + * Returns the closure scope class. + * + * @return string|null + */ + public function getClosureScopeClass() + { + return null; + } + + /** + * Returns if the function/method returns its value as reference. + * + * @return boolean + */ + public function returnsReference() + { + return $this->returnsReference; + } + + /** + * Returns a particular function/method parameter. + * + * @param integer|string $parameter Parameter name or position + * @return \TokenReflection\ReflectionParameter + * @throws \TokenReflection\Exception\RuntimeException If there is no parameter of the given name. + * @throws \TokenReflection\Exception\RuntimeException If there is no parameter at the given position. + */ + public function getParameter($parameter) + { + if (is_numeric($parameter)) { + if (!isset($this->parameters[$parameter])) { + throw new Exception\RuntimeException(sprintf('There is no parameter at position "%d".', $parameter), Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + return $this->parameters[$parameter]; + } else { + foreach ($this->parameters as $reflection) { + if ($reflection->getName() === $parameter) { + return $reflection; + } + } + + throw new Exception\RuntimeException(sprintf('There is no parameter "%s".', $parameter), Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + } + + /** + * Returns parameters. + * + * @return array + */ + public function getParameters() + { + return $this->parameters; + } + + /** + * Returns the number of parameters. + * + * @return integer + */ + public function getNumberOfParameters() + { + return count($this->parameters); + } + + /** + * Returns the number of required parameters. + * + * @return integer + */ + public function getNumberOfRequiredParameters() + { + $count = 0; + array_walk($this->parameters, function(ReflectionParameter $parameter) use (&$count) { + if (!$parameter->isOptional()) { + $count++; + } + }); + return $count; + } + + /** + * Returns static variables. + * + * @return array + */ + public function getStaticVariables() + { + if (empty($this->staticVariables) && !empty($this->staticVariablesDefinition)) { + foreach ($this->staticVariablesDefinition as $variableName => $variableDefinition) { + $this->staticVariables[$variableName] = Resolver::getValueDefinition($variableDefinition, $this); + } + } + + return $this->staticVariables; + } + + /** + * Returns an element pretty (docblock compatible) name. + * + * @return string + */ + public function getPrettyName() + { + return $this->name . '()'; + } + + /** + * Creates aliases to parameters. + * + * @throws \TokenReflection\Exception\RuntimeException When called on a ReflectionFunction instance. + */ + protected final function aliasParameters() + { + if (!$this instanceof ReflectionMethod) { + throw new Exception\RuntimeException('Only method parameters can be aliased.', Exception\RuntimeException::UNSUPPORTED, $this); + } + + foreach ($this->parameters as $index => $parameter) { + $this->parameters[$index] = $parameter->alias($this); + } + } + + /** + * Parses if the function/method returns its value as reference. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @return \TokenReflection\ReflectionFunctionBase + * @throws \TokenReflection\Exception\ParseException If could not be determined if the function\method returns its value by reference. + */ + final protected function parseReturnsReference(Stream $tokenStream) + { + if (!$tokenStream->is(T_FUNCTION)) { + throw new Exception\ParseException($this, $tokenStream, 'Could not find the function keyword.', Exception\ParseException::UNEXPECTED_TOKEN); + } + + $tokenStream->skipWhitespaces(true); + + $type = $tokenStream->getType(); + + if ('&' === $type) { + $this->returnsReference = true; + $tokenStream->skipWhitespaces(true); + } elseif (T_STRING !== $type) { + throw new Exception\ParseException($this, $tokenStream, 'Unexpected token found.', Exception\ParseException::UNEXPECTED_TOKEN); + } + + return $this; + } + + /** + * Parses the function/method name. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @return \TokenReflection\ReflectionMethod + * @throws \TokenReflection\Exception\ParseException If the class name could not be determined. + */ + final protected function parseName(Stream $tokenStream) + { + $this->name = $tokenStream->getTokenValue(); + + $tokenStream->skipWhitespaces(true); + + return $this; + } + + /** + * Parses child reflection objects from the token stream. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @param \TokenReflection\IReflection $parent Parent reflection object + * @return \TokenReflection\ReflectionElement + */ + final protected function parseChildren(Stream $tokenStream, IReflection $parent) + { + return $this + ->parseParameters($tokenStream) + ->parseStaticVariables($tokenStream); + } + + /** + * Parses function/method parameters. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @return \TokenReflection\ReflectionFunctionBase + * @throws \TokenReflection\Exception\ParseException If parameters could not be parsed. + */ + final protected function parseParameters(Stream $tokenStream) + { + if (!$tokenStream->is('(')) { + throw new Exception\ParseException($this, $tokenStream, 'Could find the start token.', Exception\ParseException::UNEXPECTED_TOKEN); + } + + static $accepted = array(T_NS_SEPARATOR => true, T_STRING => true, T_ARRAY => true, T_CALLABLE => true, T_VARIABLE => true, '&' => true); + + $tokenStream->skipWhitespaces(true); + + while (null !== ($type = $tokenStream->getType()) && ')' !== $type) { + if (isset($accepted[$type])) { + $parameter = new ReflectionParameter($tokenStream, $this->getBroker(), $this); + $this->parameters[] = $parameter; + } + + if ($tokenStream->is(')')) { + break; + } + + $tokenStream->skipWhitespaces(true); + } + + $tokenStream->skipWhitespaces(); + + return $this; + } + + /** + * Parses static variables. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @return \TokenReflection\ReflectionFunctionBase + * @throws \TokenReflection\Exception\ParseException If static variables could not be parsed. + */ + final protected function parseStaticVariables(Stream $tokenStream) + { + $type = $tokenStream->getType(); + if ('{' === $type) { + if ($this->getBroker()->isOptionSet(Broker::OPTION_PARSE_FUNCTION_BODY)) { + $tokenStream->skipWhitespaces(true); + + while ('}' !== ($type = $tokenStream->getType())) { + switch ($type) { + case T_STATIC: + $type = $tokenStream->skipWhitespaces(true)->getType(); + if (T_VARIABLE !== $type) { + // Late static binding + break; + } + + while (T_VARIABLE === $type) { + $variableName = $tokenStream->getTokenValue(); + $variableDefinition = array(); + + $type = $tokenStream->skipWhitespaces(true)->getType(); + if ('=' === $type) { + $type = $tokenStream->skipWhitespaces(true)->getType(); + $level = 0; + while ($tokenStream->valid()) { + switch ($type) { + case '(': + case '[': + case '{': + case T_CURLY_OPEN: + case T_DOLLAR_OPEN_CURLY_BRACES: + $level++; + break; + case ')': + case ']': + case '}': + $level--; + break; + case ';': + case ',': + if (0 === $level) { + break 2; + } + default: + break; + } + + $variableDefinition[] = $tokenStream->current(); + $type = $tokenStream->skipWhitespaces(true)->getType(); + } + + if (!$tokenStream->valid()) { + throw new Exception\ParseException($this, $tokenStream, 'Invalid end of token stream.', Exception\ParseException::READ_BEYOND_EOS); + } + } + + $this->staticVariablesDefinition[substr($variableName, 1)] = $variableDefinition; + + if (',' === $type) { + $type = $tokenStream->skipWhitespaces(true)->getType(); + } else { + break; + } + } + + break; + case T_FUNCTION: + // Anonymous function -> skip to its end + if (!$tokenStream->find('{')) { + throw new Exception\ParseException($this, $tokenStream, 'Could not find beginning of the anonymous function.', Exception\ParseException::UNEXPECTED_TOKEN); + } + // Break missing intentionally + case '{': + case '[': + case '(': + case T_CURLY_OPEN: + case T_DOLLAR_OPEN_CURLY_BRACES: + $tokenStream->findMatchingBracket()->skipWhitespaces(true); + break; + default: + $tokenStream->skipWhitespaces(); + break; + } + } + } else { + $tokenStream->findMatchingBracket(); + } + } elseif (';' !== $type) { + throw new Exception\ParseException($this, $tokenStream, 'Unexpected token found.', Exception\ParseException::UNEXPECTED_TOKEN); + } + + return $this; + } +} diff --git a/apigen/libs/TokenReflection/TokenReflection/ReflectionMethod.php b/apigen/libs/TokenReflection/TokenReflection/ReflectionMethod.php new file mode 100644 index 00000000000..eb705426c69 --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/ReflectionMethod.php @@ -0,0 +1,775 @@ +declaringClassName ? null : $this->getBroker()->getClass($this->declaringClassName); + } + + /** + * Returns the declaring class name. + * + * @return string|null + */ + public function getDeclaringClassName() + { + return $this->declaringClassName; + } + + /** + * Returns method modifiers. + * + * @return integer + */ + public function getModifiers() + { + if (!$this->modifiersComplete && !($this->modifiers & (self::ACCESS_LEVEL_CHANGED | self::IS_IMPLEMENTED_ABSTRACT))) { + $declaringClass = $this->getDeclaringClass(); + $parentClass = $declaringClass->getParentClass(); + if (false !== $parentClass && $parentClass->hasMethod($this->name)) { + $parentClassMethod = $parentClass->getMethod($this->name); + + // Access level changed + if (($this->isPublic() || $this->isProtected()) && $parentClassMethod->is(self::ACCESS_LEVEL_CHANGED | InternalReflectionMethod::IS_PRIVATE)) { + $this->modifiers |= self::ACCESS_LEVEL_CHANGED; + } + + // Implemented abstract + if ($parentClassMethod->isAbstract() && !$this->isAbstract()) { + $this->modifiers |= self::IS_IMPLEMENTED_ABSTRACT; + } + } else { + // Check if it is an implementation of an interface method + foreach ($declaringClass->getInterfaces() as $interface) { + if ($interface->hasOwnMethod($this->name)) { + $this->modifiers |= self::IS_IMPLEMENTED_ABSTRACT; + break; + } + } + } + + // Set if modifiers definition is complete + $this->modifiersComplete = $this->isComplete() || (($this->modifiers & self::IS_IMPLEMENTED_ABSTRACT) && ($this->modifiers & self::ACCESS_LEVEL_CHANGED)); + } + + return $this->modifiers; + } + + /** + * Returns if the method is abstract. + * + * @return boolean + */ + public function isAbstract() + { + return (bool) ($this->modifiers & InternalReflectionMethod::IS_ABSTRACT); + } + + /** + * Returns if the method is final. + * + * @return boolean + */ + public function isFinal() + { + return (bool) ($this->modifiers & InternalReflectionMethod::IS_FINAL); + } + + /** + * Returns if the method is private. + * + * @return boolean + */ + public function isPrivate() + { + return (bool) ($this->modifiers & InternalReflectionMethod::IS_PRIVATE); + } + + /** + * Returns if the method is protected. + * + * @return boolean + */ + public function isProtected() + { + return (bool) ($this->modifiers & InternalReflectionMethod::IS_PROTECTED); + } + + /** + * Returns if the method is public. + * + * @return boolean + */ + public function isPublic() + { + return (bool) ($this->modifiers & InternalReflectionMethod::IS_PUBLIC); + } + + /** + * Returns if the method is static. + * + * @return boolean + */ + public function isStatic() + { + return (bool) ($this->modifiers & InternalReflectionMethod::IS_STATIC); + } + + /** + * Shortcut for isPublic(), ... methods that allows or-ed modifiers. + * + * The {@see getModifiers()} method is called only when really necessary making this + * a more efficient way of doing + * + * if ($method->getModifiers() & $filter) { + * ... + * } + * + * + * @param integer $filter Filter + * @return boolean + */ + public function is($filter = null) + { + // See self::ACCESS_LEVEL_CHANGED | self::IS_IMPLEMENTED_ABSTRACT + static $computedModifiers = 0x808; + + if (null === $filter || ($this->modifiers & $filter)) { + return true; + } elseif (($filter & $computedModifiers) && !$this->modifiersComplete) { + return (bool) ($this->getModifiers() & $filter); + } + + return false; + } + + /** + * Returns if the method is a constructor. + * + * @return boolean + */ + public function isConstructor() + { + return (bool) ($this->modifiers & self::IS_CONSTRUCTOR); + } + + /** + * Returns if the method is a destructor. + * + * @return boolean + */ + public function isDestructor() + { + return (bool) ($this->modifiers & self::IS_DESTRUCTOR); + } + + /** + * Returns the method prototype. + * + * @return \TokenReflection\ReflectionMethod + * @throws \TokenReflection\Exception\RuntimeException If the method has no prototype. + */ + public function getPrototype() + { + if (null === $this->prototype) { + $prototype = null; + + $declaring = $this->getDeclaringClass(); + if (($parent = $declaring->getParentClass()) && $parent->hasMethod($this->name)) { + $method = $parent->getMethod($this->name); + + if (!$method->isPrivate()) { + try { + $prototype = $method->getPrototype(); + } catch (Exception\RuntimeException $e) { + $prototype = $method; + } + } + } + + if (null === $prototype) { + foreach ($declaring->getOwnInterfaces() as $interface) { + if ($interface->hasMethod($this->name)) { + $prototype = $interface->getMethod($this->name); + break; + } + } + } + + $this->prototype = $prototype ?: ($this->isComplete() ? false : null); + } + + if (empty($this->prototype)) { + throw new Exception\RuntimeException('Method has no prototype.', Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + return $this->prototype; + } + + /** + * Returns an element pretty (docblock compatible) name. + * + * @return string + */ + public function getPrettyName() + { + return sprintf('%s::%s', $this->declaringClassName ?: $this->declaringTraitName, parent::getPrettyName()); + } + + /** + * Returns the string representation of the reflection object. + * + * @return string + */ + public function __toString() + { + $internal = ''; + $overwrite = ''; + $prototype = ''; + + $declaringClassParent = $this->getDeclaringClass()->getParentClass(); + try { + $prototype = ', prototype ' . $this->getPrototype()->getDeclaringClassName(); + } catch (Exception\RuntimeException $e) { + if ($declaringClassParent && $declaringClassParent->isInternal()) { + $internal = 'internal:' . $parentClass->getExtensionName(); + } + } + + if ($declaringClassParent && $declaringClassParent->hasMethod($this->name)) { + $parentMethod = $declaringClassParent->getMethod($this->name); + $overwrite = ', overwrites ' . $parentMethod->getDeclaringClassName(); + } + + if ($this->isConstructor()) { + $cdtor = ', ctor'; + } elseif ($this->isDestructor()) { + $cdtor = ', dtor'; + } else { + $cdtor = ''; + } + + $parameters = ''; + if ($this->getNumberOfParameters() > 0) { + $buffer = ''; + foreach ($this->getParameters() as $parameter) { + $buffer .= "\n " . $parameter->__toString(); + } + $parameters = sprintf( + "\n\n - Parameters [%d] {%s\n }", + $this->getNumberOfParameters(), + $buffer + ); + } + // @todo support inherits + return sprintf( + "%sMethod [ <%s%s%s%s> %s%s%s%s%s%s method %s%s ] {\n @@ %s %d - %d%s\n}\n", + $this->getDocComment() ? $this->getDocComment() . "\n" : '', + !empty($internal) ? $internal : 'user', + $overwrite, + $prototype, + $cdtor, + $this->isAbstract() ? 'abstract ' : '', + $this->isFinal() ? 'final ' : '', + $this->isStatic() ? 'static ' : '', + $this->isPublic() ? 'public' : '', + $this->isPrivate() ? 'private' : '', + $this->isProtected() ? 'protected' : '', + $this->returnsReference() ? '&' : '', + $this->getName(), + $this->getFileName(), + $this->getStartLine(), + $this->getEndLine(), + $parameters + ); + } + + /** + * Exports a reflected object. + * + * @param \TokenReflection\Broker $broker Broker instance + * @param string|object $class Class name or class instance + * @param string $method Method name + * @param boolean $return Return the export instead of outputting it + * @return string|null + * @throws \TokenReflection\Exception\RuntimeException If requested parameter doesn't exist. + */ + public static function export(Broker $broker, $class, $method, $return = false) + { + $className = is_object($class) ? get_class($class) : $class; + $methodName = $method; + + $class = $broker->getClass($className); + if ($class instanceof Invalid\ReflectionClass) { + throw new Exception\RuntimeException('Class is invalid.', Exception\RuntimeException::UNSUPPORTED); + } elseif ($class instanceof Dummy\ReflectionClass) { + throw new Exception\RuntimeException(sprintf('Class %s does not exist.', $className), Exception\RuntimeException::DOES_NOT_EXIST); + } + $method = $class->getMethod($methodName); + + if ($return) { + return $method->__toString(); + } + + echo $method->__toString(); + } + + /** + * Calls the method on an given instance. + * + * @param object $object Class instance + * @param mixed $args + * @return mixed + */ + public function invoke($object, $args) + { + $params = func_get_args(); + return $this->invokeArgs(array_shift($params), $params); + } + + /** + * Calls the method on an given object. + * + * @param object $object Class instance + * @param array $args Method parameter values + * @return mixed + * @throws \TokenReflection\Exception\RuntimeException If it is not possible to invoke the method. + */ + public function invokeArgs($object, array $args = array()) + { + $declaringClass = $this->getDeclaringClass(); + if (!$declaringClass->isInstance($object)) { + throw new Exception\RuntimeException(sprintf('Expected instance of or subclass of "%s".', $this->declaringClassName), Exception\RuntimeException::INVALID_ARGUMENT, $this); + } + + if ($this->isPublic()) { + return call_user_func_array(array($object, $this->getName()), $args); + } elseif ($this->isAccessible()) { + $refClass = new InternalReflectionClass($object); + $refMethod = $refClass->getMethod($this->name); + + $refMethod->setAccessible(true); + $value = $refMethod->invokeArgs($object, $args); + $refMethod->setAccessible(false); + + return $value; + } + + throw new Exception\RuntimeException('Only public methods can be invoked.', Exception\RuntimeException::NOT_ACCESSBILE, $this); + } + + /** + * Returns if the property is set accessible. + * + * @return boolean + */ + public function isAccessible() + { + return $this->accessible; + } + + /** + * Sets a method to be accessible or not. + * + * @param boolean $accessible + */ + public function setAccessible($accessible) + { + $this->accessible = (bool) $accessible; + } + + /** + * Returns if the definition is complete. + * + * Technically returns if the declaring class definition is complete. + * + * @return boolean + */ + private function isComplete() + { + return $this->getDeclaringClass()->isComplete(); + } + + /** + * Returns imported namespaces and aliases from the declaring namespace. + * + * @return array + */ + public function getNamespaceAliases() + { + return $this->getDeclaringClass()->getNamespaceAliases(); + } + + /** + * Returns the function/method as closure. + * + * @param object $object Object + * @return \Closure + */ + public function getClosure($object) + { + $declaringClass = $this->getDeclaringClass(); + if (!$declaringClass->isInstance($object)) { + throw new Exception\RuntimeException(sprintf('Expected instance of or subclass of "%s".', $this->declaringClassName), Exception\RuntimeException::INVALID_ARGUMENT, $this); + } + + $that = $this; + return function() use ($object, $that) { + return $that->invokeArgs($object, func_get_args()); + }; + } + + /** + * Creates a method alias of the given name and access level for the given class. + * + * @param \TokenReflection\ReflectionClass $parent New parent class + * @param string $name New method name + * @param integer $accessLevel New access level + * @return \TokenReflection\ReflectionMethod + * @throws \TokenReflection\Exception\RuntimeException If an invalid method access level was found. + */ + public function alias(ReflectionClass $parent, $name = null, $accessLevel = null) + { + static $possibleLevels = array(InternalReflectionMethod::IS_PUBLIC => true, InternalReflectionMethod::IS_PROTECTED => true, InternalReflectionMethod::IS_PRIVATE => true); + + $method = clone $this; + + $method->declaringClassName = $parent->getName(); + if (null !== $name) { + $method->originalName = $this->name; + $method->name = $name; + } + if (null !== $accessLevel) { + if (!isset($possibleLevels[$accessLevel])) { + throw new Exception\RuntimeException(sprintf('Invalid method access level: "%s".', $accessLevel), Exception\RuntimeException::INVALID_ARGUMENT, $this); + } + + $method->modifiers &= ~(InternalReflectionMethod::IS_PUBLIC | InternalReflectionMethod::IS_PROTECTED | InternalReflectionMethod::IS_PRIVATE); + $method->modifiers |= $accessLevel; + + $method->originalModifiers = $this->getModifiers(); + } + + foreach ($this->parameters as $parameterName => $parameter) { + $method->parameters[$parameterName] = $parameter->alias($method); + } + + return $method; + } + + /** + * Returns the original name when importing from a trait. + * + * @return string|null + */ + public function getOriginalName() + { + return $this->originalName; + } + + /** + * Returns the original method when importing from a trait. + * + * @return \TokenReflection\IReflectionMethod|null + */ + public function getOriginal() + { + return $this->original; + } + + /** + * Returns the original modifiers value when importing from a trait. + * + * @return integer|null + */ + public function getOriginalModifiers() + { + return $this->originalModifiers; + } + + /** + * Returns the defining trait. + * + * @return \TokenReflection\IReflectionClass|null + */ + public function getDeclaringTrait() + { + return null === $this->declaringTraitName ? null : $this->getBroker()->getClass($this->declaringTraitName); + } + + /** + * Returns the declaring trait name. + * + * @return string|null + */ + public function getDeclaringTraitName() + { + return $this->declaringTraitName; + } + + /** + * Processes the parent reflection object. + * + * @param \TokenReflection\IReflection $parent Parent reflection object + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @return \TokenReflection\ReflectionElement + * @throws \TokenReflection\Exception\ParseException If an invalid parent reflection object was provided. + */ + protected function processParent(IReflection $parent, Stream $tokenStream) + { + if (!$parent instanceof ReflectionClass) { + throw new Exception\ParseException($this, $tokenStream, 'The parent object has to be an instance of TokenReflection\ReflectionClass.', Exception\ParseException::INVALID_PARENT); + } + + $this->declaringClassName = $parent->getName(); + if ($parent->isTrait()) { + $this->declaringTraitName = $parent->getName(); + } + return parent::processParent($parent, $tokenStream); + } + + /** + * Parses reflected element metadata from the token stream. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @param \TokenReflection\IReflection $parent Parent reflection object + * @return \TokenReflection\ReflectionMethod + * @throws \TokenReflection\Exception\Parse If the class could not be parsed. + */ + protected function parse(Stream $tokenStream, IReflection $parent) + { + return $this + ->parseBaseModifiers($tokenStream) + ->parseReturnsReference($tokenStream) + ->parseName($tokenStream) + ->parseInternalModifiers($parent); + } + + /** + * Parses base method modifiers (abstract, final, public, ...). + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @return \TokenReflection\ReflectionMethod + */ + private function parseBaseModifiers(Stream $tokenStream) + { + while (true) { + switch ($tokenStream->getType()) { + case T_ABSTRACT: + $this->modifiers |= InternalReflectionMethod::IS_ABSTRACT; + break; + case T_FINAL: + $this->modifiers |= InternalReflectionMethod::IS_FINAL; + break; + case T_PUBLIC: + $this->modifiers |= InternalReflectionMethod::IS_PUBLIC; + break; + case T_PRIVATE: + $this->modifiers |= InternalReflectionMethod::IS_PRIVATE; + break; + case T_PROTECTED: + $this->modifiers |= InternalReflectionMethod::IS_PROTECTED; + break; + case T_STATIC: + $this->modifiers |= InternalReflectionMethod::IS_STATIC; + break; + case T_FUNCTION: + case null: + break 2; + default: + break; + } + + $tokenStream->skipWhitespaces(); + } + + if (!($this->modifiers & (InternalReflectionMethod::IS_PRIVATE | InternalReflectionMethod::IS_PROTECTED))) { + $this->modifiers |= InternalReflectionMethod::IS_PUBLIC; + } + + return $this; + } + + /** + * Parses internal PHP method modifiers (abstract, final, public, ...). + * + * @param \TokenReflection\ReflectionClass $class Parent class + * @return \TokenReflection\ReflectionMethod + */ + private function parseInternalModifiers(ReflectionClass $class) + { + $name = strtolower($this->name); + // In PHP 5.3.3+ the ctor can be named only __construct in namespaced classes + if ('__construct' === $name || ((!$class->inNamespace() || PHP_VERSION_ID < 50303) && strtolower($class->getShortName()) === $name)) { + $this->modifiers |= self::IS_CONSTRUCTOR; + } elseif ('__destruct' === $name) { + $this->modifiers |= self::IS_DESTRUCTOR; + } elseif ('__clone' === $name) { + $this->modifiers |= self::IS_CLONE; + } + + if ($class->isInterface()) { + $this->modifiers |= InternalReflectionMethod::IS_ABSTRACT; + } else { + // Can be called statically, see http://svn.php.net/viewvc/php/php-src/branches/PHP_5_3/Zend/zend_API.c?revision=309853&view=markup#l1795 + static $notAllowed = array('__clone' => true, '__tostring' => true, '__get' => true, '__set' => true, '__isset' => true, '__unset' => true); + if (!$this->isStatic() && !$this->isConstructor() && !$this->isDestructor() && !isset($notAllowed[$name])) { + $this->modifiers |= self::IS_ALLOWED_STATIC; + } + } + + return $this; + } +} diff --git a/apigen/libs/TokenReflection/TokenReflection/ReflectionNamespace.php b/apigen/libs/TokenReflection/TokenReflection/ReflectionNamespace.php new file mode 100644 index 00000000000..527ca0e51e7 --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/ReflectionNamespace.php @@ -0,0 +1,558 @@ +name = $name; + $this->broker = $broker; + } + + /** + * Returns the name. + * + * @return string + */ + public function getName() + { + return $this->name; + } + + /** + * Returns if the namespace is internal. + * + * Always false. + * + * @return boolean + */ + public function isInternal() + { + return false; + } + + /** + * Returns if the namespace is user defined. + * + * Always true. + * + * @return boolean + */ + public function isUserDefined() + { + return true; + } + + /** + * Returns if the current reflection comes from a tokenized source. + * + * @return boolean + */ + public function isTokenized() + { + return true; + } + + /** + * Returns if the namespace contains a class of the given name. + * + * @param string $className Class name + * @return boolean + */ + public function hasClass($className) + { + $className = ltrim($className, '\\'); + if (false === strpos($className, '\\') && self::NO_NAMESPACE_NAME !== $this->getName()) { + $className = $this->getName() . '\\' . $className; + } + + return isset($this->classes[$className]); + } + + /** + * Return a class reflection. + * + * @param string $className Class name + * @return \TokenReflection\ReflectionClass + * @throws \TokenReflection\Exception\RuntimeException If the requested class reflection does not exist. + */ + public function getClass($className) + { + $className = ltrim($className, '\\'); + if (false === strpos($className, '\\') && self::NO_NAMESPACE_NAME !== $this->getName()) { + $className = $this->getName() . '\\' . $className; + } + + if (!isset($this->classes[$className])) { + throw new Exception\RuntimeException(sprintf('Class "%s" does not exist.', $className), Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + return $this->classes[$className]; + } + + /** + * Returns class reflections. + * + * @return array + */ + public function getClasses() + { + return $this->classes; + } + + /** + * Returns class names (FQN). + * + * @return array + */ + public function getClassNames() + { + return array_keys($this->classes); + } + + /** + * Returns class unqualified names (UQN). + * + * @return array + */ + public function getClassShortNames() + { + return array_map(function(IReflectionClass $class) { + return $class->getShortName(); + }, $this->classes); + } + + /** + * Returns if the namespace contains a constant of the given name. + * + * @param string $constantName Constant name + * @return boolean + */ + public function hasConstant($constantName) + { + $constantName = ltrim($constantName, '\\'); + if (false === strpos($constantName, '\\') && self::NO_NAMESPACE_NAME !== $this->getName()) { + $constantName = $this->getName() . '\\' . $constantName; + } + + return isset($this->constants[$constantName]); + } + + /** + * Returns a constant reflection. + * + * @param string $constantName Constant name + * @return \TokenReflection\ReflectionConstant + * @throws \TokenReflection\Exception\RuntimeException If the required constant does not exist. + */ + public function getConstant($constantName) + { + $constantName = ltrim($constantName, '\\'); + if (false === strpos($constantName, '\\') && self::NO_NAMESPACE_NAME !== $this->getName()) { + $constantName = $this->getName() . '\\' . $constantName; + } + + if (!isset($this->constants[$constantName])) { + throw new Exception\RuntimeException(sprintf('Constant "%s" does not exist.', $constantName), Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + return $this->constants[$constantName]; + } + + /** + * Returns constant reflections. + * + * @return array + */ + public function getConstants() + { + return $this->constants; + } + + /** + * Returns constant names (FQN). + * + * @return array + */ + public function getConstantNames() + { + return array_keys($this->constants); + } + + /** + * Returns constant unqualified names (UQN). + * + * @return array + */ + public function getConstantShortNames() + { + return array_map(function(IReflectionConstant $constant) { + return $constant->getShortName(); + }, $this->constants); + } + + /** + * Returns if the namespace contains a function of the given name. + * + * @param string $functionName Function name + * @return boolean + */ + public function hasFunction($functionName) + { + $functionName = ltrim($functionName, '\\'); + if (false === strpos($functionName, '\\') && self::NO_NAMESPACE_NAME !== $this->getName()) { + $functionName = $this->getName() . '\\' . $functionName; + } + + return isset($this->functions[$functionName]); + } + + /** + * Returns a function reflection. + * + * @param string $functionName Function name + * @return \TokenReflection\ReflectionFunction + * @throws \TokenReflection\Exception\RuntimeException If the required function does not exist. + */ + public function getFunction($functionName) + { + $functionName = ltrim($functionName, '\\'); + if (false === strpos($functionName, '\\') && self::NO_NAMESPACE_NAME !== $this->getName()) { + $functionName = $this->getName() . '\\' . $functionName; + } + + if (!isset($this->functions[$functionName])) { + throw new Exception\RuntimeException(sprintf('Function "%s" does not exist.', $functionName), Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + return $this->functions[$functionName]; + } + + /** + * Returns function reflections. + * + * @return array + */ + public function getFunctions() + { + return $this->functions; + } + + /** + * Returns function names (FQN). + * + * @return array + */ + public function getFunctionNames() + { + return array_keys($this->functions); + } + + /** + * Returns function unqualified names (UQN). + * + * @return array + */ + public function getFunctionShortNames() + { + return array_map(function(IReflectionFunction $function) { + return $function->getShortName(); + }, $this->functions); + } + + /** + * Returns an element pretty (docblock compatible) name. + * + * @return string + */ + public function getPrettyName() + { + return $this->name; + } + + /** + * Returns the string representation of the reflection object. + * + * @return string + */ + public function __toString() + { + $buffer = ''; + $count = 0; + foreach ($this->getClasses() as $class) { + $string = "\n " . trim(str_replace("\n", "\n ", $class->__toString()), ' '); + $string = str_replace(" \n - Parameters", "\n - Parameters", $string); + + $buffer .= $string; + $count++; + } + $classes = sprintf("\n\n - Classes [%d] {\n%s }", $count, ltrim($buffer, "\n")); + + $buffer = ''; + $count = 0; + foreach ($this->getConstants() as $constant) { + $buffer .= ' ' . $constant->__toString(); + $count++; + } + $constants = sprintf("\n\n - Constants [%d] {\n%s }", $count, $buffer); + + $buffer = ''; + $count = 0; + foreach ($this->getFunctions() as $function) { + $string = "\n " . trim(str_replace("\n", "\n ", $function->__toString()), ' '); + $string = str_replace(" \n - Parameters", "\n - Parameters", $string); + + $buffer .= $string; + $count++; + } + $functions = sprintf("\n\n - Functions [%d] {\n%s }", $count, ltrim($buffer, "\n")); + + return sprintf( + "Namespace [ namespace %s ] { %s%s%s\n}\n", + $this->getName(), + $classes, + $constants, + $functions + ); + } + + /** + * Exports a reflected object. + * + * @param \TokenReflection\Broker $broker Broker instance + * @param string $namespace Namespace name + * @param boolean $return Return the export instead of outputting it + * @return string|null + * @throws \TokenReflection\Exception\RuntimeException If requested parameter doesn't exist. + */ + public static function export(Broker $broker, $namespace, $return = false) + { + $namespaceName = $namespace; + + $namespace = $broker->getNamespace($namespaceName); + if (null === $namespace) { + throw new Exception\RuntimeException(sprintf('Namespace %s does not exist.', $namespaceName), Exception\RuntimeException::DOES_NOT_EXIST); + } + + if ($return) { + return $namespace->__toString(); + } + + echo $namespace->__toString(); + } + + /** + * Adds a namespace part from a file. + * + * @param \TokenReflection\ReflectionFileNamespace $namespace Namespace part + * @return \TokenReflection\ReflectionNamespace + * @throws \TokenReflection\Exception\FileProcessingException If one of classes, functions or constants form the namespace are already defined + */ + public function addFileNamespace(ReflectionFileNamespace $namespace) + { + $errors = array(); + + foreach ($namespace->getClasses() as $className => $reflection) { + if ($reflection instanceof Invalid\ReflectionClass) { + $errors = array_merge($errors, $reflection->getReasons()); + } + + if (isset($this->classes[$className])) { + if (!$this->classes[$className] instanceof Invalid\ReflectionClass) { + $this->classes[$className] = new Invalid\ReflectionClass($className, $this->classes[$className]->getFileName(), $this->getBroker()); + } + + $error = new Exception\RuntimeException( + sprintf('Class %s was redeclared (previously declared in file %s).', $className, $this->classes[$className]->getFileName()), + Exception\RuntimeException::ALREADY_EXISTS, + $reflection + ); + $errors[] = $error; + $this->classes[$className]->addReason($error); + + if ($reflection instanceof Invalid\ReflectionClass) { + foreach ($reflection->getReasons() as $reason) { + $this->classes[$className]->addReason($reason); + } + } + } else { + $this->classes[$className] = $reflection; + } + } + + foreach ($namespace->getFunctions() as $functionName => $reflection) { + if ($reflection instanceof Invalid\ReflectionFunction) { + $errors = array_merge($errors, $reflection->getReasons()); + } + + if (isset($this->functions[$functionName])) { + if (!$this->functions[$functionName] instanceof Invalid\ReflectionFunction) { + $this->functions[$functionName] = new Invalid\ReflectionFunction($functionName, $this->functions[$functionName]->getFileName(), $this->getBroker()); + } + + $error = new Exception\RuntimeException( + sprintf('Function %s was redeclared (previousy declared in file %s).', $functionName, $this->functions[$functionName]->getFileName()), + Exception\RuntimeException::ALREADY_EXISTS, + $reflection + ); + $errors[] = $error; + $this->functions[$functionName]->addReason($error); + + if ($reflection instanceof Invalid\ReflectionFunction) { + foreach ($reflection->getReasons() as $reason) { + $this->functions[$functionName]->addReason($reason); + } + } + } else { + $this->functions[$functionName] = $reflection; + } + } + + foreach ($namespace->getConstants() as $constantName => $reflection) { + if ($reflection instanceof Invalid\ReflectionConstant) { + $errors = array_merge($errors, $reflection->getReasons()); + } + + if (isset($this->constants[$constantName])) { + if (!$this->constants[$constantName] instanceof Invalid\ReflectionConstant) { + $this->constants[$constantName] = new Invalid\ReflectionConstant($constantName, $this->constants[$constantName]->getFileName(), $this->getBroker()); + } + + $error = new Exception\RuntimeException( + sprintf('Constant %s was redeclared (previuosly declared in file %s).', $constantName, $this->constants[$constantName]->getFileName()), + Exception\RuntimeException::ALREADY_EXISTS, + $reflection + ); + $errors[] = $error; + $this->constants[$constantName]->addReason($error); + + if ($reflection instanceof Invalid\ReflectionConstant) { + foreach ($reflection->getReasons() as $reason) { + $this->constants[$constantName]->addReason($reason); + } + } + } else { + $this->constants[$constantName] = $reflection; + } + } + + if (!empty($errors)) { + throw new Exception\FileProcessingException($errors, null); + } + + return $this; + } + + /** + * Returns the appropriate source code part. + * + * Impossible for namespaces. + * + * @throws \TokenReflection\Exception\RuntimeException If the method is called, because it's unsupported. + */ + public function getSource() + { + throw new Exception\RuntimeException('Cannot export source code of a namespace.', Exception\RuntimeException::UNSUPPORTED, $this); + } + + /** + * Returns the reflection broker used by this reflection object. + * + * @return \TokenReflection\Broker|null + */ + public function getBroker() + { + return $this->broker; + } + + /** + * Magic __get method. + * + * @param string $key Variable name + * @return mixed + */ + final public function __get($key) + { + return ReflectionElement::get($this, $key); + } + + /** + * Magic __isset method. + * + * @param string $key Variable name + * @return boolean + */ + final public function __isset($key) + { + return ReflectionElement::exists($this, $key); + } +} \ No newline at end of file diff --git a/apigen/libs/TokenReflection/TokenReflection/ReflectionParameter.php b/apigen/libs/TokenReflection/TokenReflection/ReflectionParameter.php new file mode 100644 index 00000000000..d09945856c9 --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/ReflectionParameter.php @@ -0,0 +1,639 @@ +declaringClassName ? null : $this->getBroker()->getClass($this->declaringClassName); + } + + /** + * Returns the declaring class name. + * + * @return string|null + */ + public function getDeclaringClassName() + { + return $this->declaringClassName; + } + + /** + * Returns the declaring function. + * + * @return \TokenReflection\ReflectionFunctionBase + */ + public function getDeclaringFunction() + { + if (null !== $this->declaringClassName) { + // Method parameter + $class = $this->getBroker()->getClass($this->declaringClassName); + if (null !== $class) { + return $class->getMethod($this->declaringFunctionName); + } + } else { + // Function parameter + return $this->getBroker()->getFunction($this->declaringFunctionName); + } + } + + /** + * Returns the declaring function name. + * + * @return string + */ + public function getDeclaringFunctionName() + { + return $this->declaringFunctionName; + } + + /** + * Returns the default value. + * + * @return mixed + * @throws \TokenReflection\Exception\RuntimeException If the property is not optional. + * @throws \TokenReflection\Exception\RuntimeException If the property has no default value. + */ + public function getDefaultValue() + { + if (!$this->isOptional()) { + throw new Exception\RuntimeException('Property is not optional.', Exception\RuntimeException::UNSUPPORTED, $this); + } + + if (is_array($this->defaultValueDefinition)) { + if (0 === count($this->defaultValueDefinition)) { + throw new Exception\RuntimeException('Property has no default value.', Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + $this->defaultValue = Resolver::getValueDefinition($this->defaultValueDefinition, $this); + $this->defaultValueDefinition = Resolver::getSourceCode($this->defaultValueDefinition); + } + + return $this->defaultValue; + } + + /** + * Returns the part of the source code defining the parameter default value. + * + * @return string + */ + public function getDefaultValueDefinition() + { + return is_array($this->defaultValueDefinition) ? Resolver::getSourceCode($this->defaultValueDefinition) : $this->defaultValueDefinition; + } + + /** + * Retutns if a default value for the parameter is available. + * + * @return boolean + */ + public function isDefaultValueAvailable() + { + return null !== $this->getDefaultValueDefinition(); + } + + /** + * Returns the position within all parameters. + * + * @return integer + */ + public function getPosition() + { + return $this->position; + } + + /** + * Returns if the parameter expects an array. + * + * @return boolean + */ + public function isArray() + { + return $this->typeHint === self::ARRAY_TYPE_HINT; + } + + /** + * Returns if the parameter expects a callback. + * + * @return boolean + */ + public function isCallable() + { + return $this->typeHint === self::CALLABLE_TYPE_HINT; + } + + /** + * Returns the original type hint as defined in the source code. + * + * @return string|null + */ + public function getOriginalTypeHint() + { + return !$this->isArray() && !$this->isCallable() ? ltrim($this->originalTypeHint, '\\') : null; + } + + /** + * Returns reflection of the required class of the value. + * + * @return \TokenReflection\IReflectionClass|null + */ + public function getClass() + { + $name = $this->getClassName(); + if (null === $name) { + return null; + } + + return $this->getBroker()->getClass($name); + } + + /** + * Returns the required class name of the value. + * + * @return string|null + * @throws \TokenReflection\Exception\RuntimeException If the type hint class FQN could not be determined. + */ + public function getClassName() + { + if ($this->isArray() || $this->isCallable()) { + return null; + } + + if (null === $this->typeHint && null !== $this->originalTypeHint) { + if (null !== $this->declaringClassName) { + $parent = $this->getDeclaringClass(); + if (null === $parent) { + throw new Exception\RuntimeException('Could not load class reflection.', Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + } else { + $parent = $this->getDeclaringFunction(); + if (null === $parent || !$parent->isTokenized()) { + throw new Exception\RuntimeException('Could not load function reflection.', Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + } + + $lTypeHint = strtolower($this->originalTypeHint); + if ('parent' === $lTypeHint || 'self' === $lTypeHint) { + if (null === $this->declaringClassName) { + throw new Exception\RuntimeException('Parameter type hint cannot be "self" nor "parent" when not a method.', Exception\RuntimeException::UNSUPPORTED, $this); + } + + if ('parent' === $lTypeHint) { + if ($parent->isInterface() || null === $parent->getParentClassName()) { + throw new Exception\RuntimeException('Class has no parent.', Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + $this->typeHint = $parent->getParentClassName(); + } else { + $this->typeHint = $this->declaringClassName; + } + } else { + $this->typeHint = ltrim(Resolver::resolveClassFQN($this->originalTypeHint, $parent->getNamespaceAliases(), $parent->getNamespaceName()), '\\'); + } + } + + return $this->typeHint; + } + + /** + * Returns if the the parameter allows NULL. + * + * @return boolean + */ + public function allowsNull() + { + if ($this->isArray() || $this->isCallable()) { + return 'null' === strtolower($this->getDefaultValueDefinition()); + } + + return null === $this->originalTypeHint || !empty($this->defaultValueDefinition); + } + + /** + * Returns if the parameter is optional. + * + * @return boolean + * @throws \TokenReflection\Exception\RuntimeException If it is not possible to determine if the parameter is optional. + */ + public function isOptional() + { + if (null === $this->isOptional) { + $function = $this->getDeclaringFunction(); + if (null === $function) { + throw new Exception\RuntimeException('Could not get the declaring function reflection.', Exception\RuntimeException::DOES_NOT_EXIST, $this); + } + + $this->isOptional = true; + foreach (array_slice($function->getParameters(), $this->position) as $reflectionParameter) { + if (!$reflectionParameter->isDefaultValueAvailable()) { + $this->isOptional = false; + break; + } + } + } + + return $this->isOptional; + } + + /** + * Returns if the parameter value is passed by reference. + * + * @return boolean + */ + public function isPassedByReference() + { + return $this->passedByReference; + } + + /** + * Returns if the paramter value can be passed by value. + * + * @return boolean + */ + public function canBePassedByValue() + { + return !$this->isPassedByReference(); + } + + /** + * Returns an element pretty (docblock compatible) name. + * + * @return string + */ + public function getPrettyName() + { + return str_replace('()', '($' . $this->name . ')', $this->getDeclaringFunction()->getPrettyName()); + } + + /** + * Returns the string representation of the reflection object. + * + * @return string + */ + public function __toString() + { + if ($this->getClass()) { + $hint = $this->getClassName(); + } elseif ($this->isArray()) { + $hint = self::ARRAY_TYPE_HINT; + } elseif ($this->isCallable()) { + $hint = self::CALLABLE_TYPE_HINT; + } else { + $hint = ''; + } + + if (!empty($hint) && $this->allowsNull()) { + $hint .= ' or NULL'; + } + + if ($this->isDefaultValueAvailable()) { + $default = ' = '; + if (null === $this->getDefaultValue()) { + $default .= 'NULL'; + } elseif (is_array($this->getDefaultValue())) { + $default .= 'Array'; + } elseif (is_bool($this->getDefaultValue())) { + $default .= $this->getDefaultValue() ? 'true' : 'false'; + } elseif (is_string($this->getDefaultValue())) { + $default .= sprintf("'%s'", str_replace("'", "\\'", $this->getDefaultValue())); + } else { + $default .= $this->getDefaultValue(); + } + } else { + $default = ''; + } + + return sprintf( + 'Parameter #%d [ <%s> %s%s$%s%s ]', + $this->getPosition(), + $this->isOptional() ? 'optional' : 'required', + $hint ? $hint . ' ' : '', + $this->isPassedByReference() ? '&' : '', + $this->getName(), + $default + ); + } + + /** + * Exports a reflected object. + * + * @param \TokenReflection\Broker $broker Broker instance + * @param string $function Function name + * @param string $parameter Parameter name + * @param boolean $return Return the export instead of outputting it + * @return string|null + * @throws \TokenReflection\Exception\RuntimeException If requested parameter doesn't exist. + */ + public static function export(Broker $broker, $function, $parameter, $return = false) + { + $functionName = $function; + $parameterName = $parameter; + + $function = $broker->getFunction($functionName); + if (null === $function) { + throw new Exception\RuntimeException(sprintf('Function %s() does not exist.', $functionName), Exception\RuntimeException::DOES_NOT_EXIST); + } + $parameter = $function->getParameter($parameterName); + + if ($return) { + return $parameter->__toString(); + } + + echo $parameter->__toString(); + } + + /** + * Returns imported namespaces and aliases from the declaring namespace. + * + * @return array + */ + public function getNamespaceAliases() + { + return $this->getDeclaringFunction()->getNamespaceAliases(); + } + + /** + * Creates a parameter alias for the given method. + * + * @param \TokenReflection\ReflectionMethod $parent New parent method + * @return \TokenReflection\ReflectionParameter + */ + public function alias(ReflectionMethod $parent) + { + $parameter = clone $this; + + $parameter->declaringClassName = $parent->getDeclaringClassName(); + $parameter->declaringFunctionName = $parent->getName(); + + return $parameter; + } + + /** + * Processes the parent reflection object. + * + * @param \TokenReflection\IReflection $parent Parent reflection object + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @return \TokenReflection\ReflectionElement + * @throws \TokenReflection\Exception\ParseException If an invalid parent reflection object was provided. + */ + protected function processParent(IReflection $parent, Stream $tokenStream) + { + if (!$parent instanceof ReflectionFunctionBase) { + throw new Exception\ParseException($this, $tokenStream, 'The parent object has to be an instance of TokenReflection\ReflectionFunctionBase.', Exception\ParseException::INVALID_PARENT); + } + + // Declaring function name + $this->declaringFunctionName = $parent->getName(); + + // Position + $this->position = count($parent->getParameters()); + + // Declaring class name + if ($parent instanceof ReflectionMethod) { + $this->declaringClassName = $parent->getDeclaringClassName(); + } + + return parent::processParent($parent, $tokenStream); + } + + /** + * Parses reflected element metadata from the token stream. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @param \TokenReflection\IReflection $parent Parent reflection object + * @return \TokenReflection\ReflectionParameter + */ + protected function parse(Stream $tokenStream, IReflection $parent) + { + return $this + ->parseTypeHint($tokenStream) + ->parsePassedByReference($tokenStream) + ->parseName($tokenStream) + ->parseDefaultValue($tokenStream); + } + + /** + * Parses the type hint. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @return \TokenReflection\ReflectionParameter + * @throws \TokenReflection\Exception\ParseException If the type hint class name could not be determined. + */ + private function parseTypeHint(Stream $tokenStream) + { + $type = $tokenStream->getType(); + + if (T_ARRAY === $type) { + $this->typeHint = self::ARRAY_TYPE_HINT; + $this->originalTypeHint = self::ARRAY_TYPE_HINT; + $tokenStream->skipWhitespaces(true); + } elseif (T_CALLABLE === $type) { + $this->typeHint = self::CALLABLE_TYPE_HINT; + $this->originalTypeHint = self::CALLABLE_TYPE_HINT; + $tokenStream->skipWhitespaces(true); + } elseif (T_STRING === $type || T_NS_SEPARATOR === $type) { + $className = ''; + do { + $className .= $tokenStream->getTokenValue(); + + $tokenStream->skipWhitespaces(true); + $type = $tokenStream->getType(); + } while (T_STRING === $type || T_NS_SEPARATOR === $type); + + if ('' === ltrim($className, '\\')) { + throw new Exception\ParseException($this, $tokenStream, sprintf('Invalid class name definition: "%s".', $className), Exception\ParseException::LOGICAL_ERROR); + } + + $this->originalTypeHint = $className; + } + + return $this; + } + + /** + * Parses if parameter value is passed by reference. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @return \TokenReflection\ReflectionParameter + */ + private function parsePassedByReference(Stream $tokenStream) + { + if ($tokenStream->is('&')) { + $this->passedByReference = true; + $tokenStream->skipWhitespaces(true); + } + + return $this; + } + + /** + * Parses the constant name. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @return \TokenReflection\ReflectionParameter + * @throws \TokenReflection\Exception\ParseException If the parameter name could not be determined. + */ + protected function parseName(Stream $tokenStream) + { + if (!$tokenStream->is(T_VARIABLE)) { + throw new Exception\ParseException($this, $tokenStream, 'The parameter name could not be determined.', Exception\ParseException::UNEXPECTED_TOKEN); + } + + $this->name = substr($tokenStream->getTokenValue(), 1); + + $tokenStream->skipWhitespaces(true); + + return $this; + } + + /** + * Parses the parameter default value. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @return \TokenReflection\ReflectionParameter + * @throws \TokenReflection\Exception\ParseException If the default value could not be determined. + */ + private function parseDefaultValue(Stream $tokenStream) + { + if ($tokenStream->is('=')) { + $tokenStream->skipWhitespaces(true); + + $level = 0; + while (null !== ($type = $tokenStream->getType())) { + switch ($type) { + case ')': + if (0 === $level) { + break 2; + } + case '}': + case ']': + $level--; + break; + case '(': + case '{': + case '[': + $level++; + break; + case ',': + if (0 === $level) { + break 2; + } + break; + default: + break; + } + + $this->defaultValueDefinition[] = $tokenStream->current(); + $tokenStream->next(); + } + + if (')' !== $type && ',' !== $type) { + throw new Exception\ParseException($this, $tokenStream, 'The property default value is not terminated properly. Expected "," or ")".', Exception\ParseException::UNEXPECTED_TOKEN); + } + } + + return $this; + } +} diff --git a/apigen/libs/TokenReflection/TokenReflection/ReflectionProperty.php b/apigen/libs/TokenReflection/TokenReflection/ReflectionProperty.php new file mode 100644 index 00000000000..f85a8cb11c4 --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/ReflectionProperty.php @@ -0,0 +1,572 @@ +getBroker()->getClass($this->declaringClassName); + } + + /** + * Returns the name of the declaring class. + * + * @return string + */ + public function getDeclaringClassName() + { + return $this->declaringClassName; + } + + /** + * Returns the property default value. + * + * @return mixed + */ + public function getDefaultValue() + { + if (is_array($this->defaultValueDefinition)) { + $this->defaultValue = Resolver::getValueDefinition($this->defaultValueDefinition, $this); + $this->defaultValueDefinition = Resolver::getSourceCode($this->defaultValueDefinition); + } + + return $this->defaultValue; + } + + /** + * Returns the part of the source code defining the property default value. + * + * @return string + */ + public function getDefaultValueDefinition() + { + return is_array($this->defaultValueDefinition) ? Resolver::getSourceCode($this->defaultValueDefinition) : $this->defaultValueDefinition; + } + + /** + * Returns the property value for a particular class instance. + * + * @param object $object + * @return mixed + * @throws \TokenReflection\Exception\RuntimeException If it is not possible to return the property value. + */ + public function getValue($object) + { + $declaringClass = $this->getDeclaringClass(); + if (!$declaringClass->isInstance($object)) { + throw new Exception\RuntimeException('The given class is not an instance or subclass of the current class.', Exception\RuntimeException::INVALID_ARGUMENT, $this); + } + + if ($this->isPublic()) { + return $object->{$this->name}; + } elseif ($this->isAccessible()) { + $refClass = new InternalReflectionClass($object); + $refProperty = $refClass->getProperty($this->name); + + $refProperty->setAccessible(true); + $value = $refProperty->getValue($object); + $refProperty->setAccessible(false); + + return $value; + } + + throw new Exception\RuntimeException('Only public and accessible properties can return their values.', Exception\RuntimeException::NOT_ACCESSBILE, $this); + } + + /** + * Returns if the property was created at compile time. + * + * All properties in the source code are. + * + * @return boolean + */ + public function isDefault() + { + return true; + } + + /** + * Returns property modifiers. + * + * @return integer + */ + public function getModifiers() + { + if (false === $this->modifiersComplete) { + $declaringClass = $this->getDeclaringClass(); + $declaringClassParent = $declaringClass->getParentClass(); + + if ($declaringClassParent && $declaringClassParent->hasProperty($this->name)) { + $property = $declaringClassParent->getProperty($this->name); + if (($this->isPublic() && !$property->isPublic()) || ($this->isProtected() && $property->isPrivate())) { + $this->modifiers |= self::ACCESS_LEVEL_CHANGED; + } + } + + $this->modifiersComplete = ($this->modifiers & self::ACCESS_LEVEL_CHANGED) || $declaringClass->isComplete(); + } + + return $this->modifiers; + } + + /** + * Returns if the property is private. + * + * @return boolean + */ + public function isPrivate() + { + return (bool) ($this->modifiers & InternalReflectionProperty::IS_PRIVATE); + } + + /** + * Returns if the property is protected. + * + * @return boolean + */ + public function isProtected() + { + return (bool) ($this->modifiers & InternalReflectionProperty::IS_PROTECTED); + } + + /** + * Returns if the property is public. + * + * @return boolean + */ + public function isPublic() + { + return (bool) ($this->modifiers & InternalReflectionProperty::IS_PUBLIC); + } + + /** + * Returns if the poperty is static. + * + * @return boolean + */ + public function isStatic() + { + return (bool) ($this->modifiers & InternalReflectionProperty::IS_STATIC); + } + + /** + * Returns the string representation of the reflection object. + * + * @return string + */ + public function __toString() + { + return sprintf( + "Property [ %s%s%s%s%s\$%s ]\n", + $this->isStatic() ? '' : ' ', + $this->isPublic() ? 'public ' : '', + $this->isPrivate() ? 'private ' : '', + $this->isProtected() ? 'protected ' : '', + $this->isStatic() ? 'static ' : '', + $this->getName() + ); + } + + /** + * Exports a reflected object. + * + * @param \TokenReflection\Broker $broker Broker instance + * @param string|object $class Class name or class instance + * @param string $property Property name + * @param boolean $return Return the export instead of outputting it + * @return string|null + * @throws \TokenReflection\Exception\RuntimeException If requested parameter doesn't exist. + */ + public static function export(Broker $broker, $class, $property, $return = false) + { + $className = is_object($class) ? get_class($class) : $class; + $propertyName = $property; + + $class = $broker->getClass($className); + if ($class instanceof Invalid\ReflectionClass) { + throw new Exception\RuntimeException('Class is invalid.', Exception\RuntimeException::UNSUPPORTED); + } elseif ($class instanceof Dummy\ReflectionClass) { + throw new Exception\RuntimeException(sprintf('Class %s does not exist.', $className), Exception\RuntimeException::DOES_NOT_EXIST); + } + $property = $class->getProperty($propertyName); + + if ($return) { + return $property->__toString(); + } + + echo $property->__toString(); + } + + /** + * Returns if the property is set accessible. + * + * @return boolean + */ + public function isAccessible() + { + return $this->accessible; + } + + /** + * Sets a property to be accessible or not. + * + * @param boolean $accessible If the property should be accessible. + */ + public function setAccessible($accessible) + { + $this->accessible = (bool) $accessible; + } + + /** + * Sets the property default value. + * + * @param mixed $value + */ + public function setDefaultValue($value) + { + $this->defaultValue = $value; + $this->defaultValueDefinition = var_export($value, true); + } + + /** + * Sets value of a property for a particular class instance. + * + * @param object $object Class instance + * @param mixed $value Poperty value + * @throws \TokenReflection\Exception\RuntimeException If it is not possible to set the property value. + */ + public function setValue($object, $value) + { + $declaringClass = $this->getDeclaringClass(); + if (!$declaringClass->isInstance($object)) { + throw new Exception\RuntimeException('Instance of or subclass expected.', Exception\RuntimeException::INVALID_ARGUMENT, $this); + } + + if ($this->isPublic()) { + $object->{$this->name} = $value; + } elseif ($this->isAccessible()) { + $refClass = new InternalReflectionClass($object); + $refProperty = $refClass->getProperty($this->name); + + $refProperty->setAccessible(true); + $refProperty->setValue($object, $value); + $refProperty->setAccessible(false); + + if ($this->isStatic()) { + $this->setDefaultValue($value); + } + } else { + throw new Exception\RuntimeException('Only public and accessible properties can be set.', Exception\RuntimeException::NOT_ACCESSBILE, $this); + } + } + + /** + * Returns imported namespaces and aliases from the declaring namespace. + * + * @return array + */ + public function getNamespaceAliases() + { + return $this->getDeclaringClass()->getNamespaceAliases(); + } + + /** + * Creates a property alias for the given class. + * + * @param \TokenReflection\ReflectionClass $parent New parent class + * @return \TokenReflection\ReflectionProperty + */ + public function alias(ReflectionClass $parent) + { + $property = clone $this; + $property->declaringClassName = $parent->getName(); + return $property; + } + + /** + * Returns the defining trait. + * + * @return \TokenReflection\IReflectionClass|null + */ + public function getDeclaringTrait() + { + return null === $this->declaringTraitName ? null : $this->getBroker()->getClass($this->declaringTraitName); + } + + /** + * Returns the declaring trait name. + * + * @return string|null + */ + public function getDeclaringTraitName() + { + return $this->declaringTraitName; + } + + /** + * Returns an element pretty (docblock compatible) name. + * + * @return string + */ + public function getPrettyName() + { + return sprintf('%s::$%s', $this->declaringClassName ?: $this->declaringTraitName, $this->name); + } + + /** + * Processes the parent reflection object. + * + * @param \TokenReflection\IReflection $parent Parent reflection object + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @return \TokenReflection\ReflectionElement + * @throws \TokenReflection\Exception\Parse If an invalid parent reflection object was provided. + */ + protected function processParent(IReflection $parent, Stream $tokenStream) + { + if (!$parent instanceof ReflectionClass) { + throw new Exception\ParseException($this, $tokenStream, 'The parent object has to be an instance of TokenReflection\ReflectionClass.', Exception\ParseException::INVALID_PARENT); + } + + $this->declaringClassName = $parent->getName(); + if ($parent->isTrait()) { + $this->declaringTraitName = $parent->getName(); + } + return parent::processParent($parent, $tokenStream); + } + + /** + * Parses reflected element metadata from the token stream. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @param \TokenReflection\IReflection $parent Parent reflection object + * @return \TokenReflection\ReflectionProperty + */ + protected function parse(Stream $tokenStream, IReflection $parent) + { + $this->parseModifiers($tokenStream, $parent); + + if (false === $this->docComment->getDocComment()) { + $this->parseDocComment($tokenStream, $parent); + } + + return $this->parseName($tokenStream) + ->parseDefaultValue($tokenStream); + } + + /** + * Parses class modifiers (abstract, final) and class type (class, interface). + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @param \TokenReflection\ReflectionClass $class Defining class + * @return \TokenReflection\ReflectionClass + * @throws \TokenReflection\Exception\ParseException If the modifiers value cannot be determined. + */ + private function parseModifiers(Stream $tokenStream, ReflectionClass $class) + { + while (true) { + switch ($tokenStream->getType()) { + case T_PUBLIC: + case T_VAR: + $this->modifiers |= InternalReflectionProperty::IS_PUBLIC; + break; + case T_PROTECTED: + $this->modifiers |= InternalReflectionProperty::IS_PROTECTED; + break; + case T_PRIVATE: + $this->modifiers |= InternalReflectionProperty::IS_PRIVATE; + break; + case T_STATIC: + $this->modifiers |= InternalReflectionProperty::IS_STATIC; + break; + default: + break 2; + } + + $tokenStream->skipWhitespaces(true); + } + + if (InternalReflectionProperty::IS_STATIC === $this->modifiers) { + $this->modifiers |= InternalReflectionProperty::IS_PUBLIC; + } elseif (0 === $this->modifiers) { + $parentProperties = $class->getOwnProperties(); + if (empty($parentProperties)) { + throw new Exception\ParseException($this, $tokenStream, 'No access level defined and no previous defining class property present.', Exception\ParseException::LOGICAL_ERROR); + } + + $sibling = array_pop($parentProperties); + if ($sibling->isPublic()) { + $this->modifiers = InternalReflectionProperty::IS_PUBLIC; + } elseif ($sibling->isPrivate()) { + $this->modifiers = InternalReflectionProperty::IS_PRIVATE; + } elseif ($sibling->isProtected()) { + $this->modifiers = InternalReflectionProperty::IS_PROTECTED; + } else { + throw new Exception\ParseException($this, $tokenStream, sprintf('Property sibling "%s" has no access level defined.', $sibling->getName()), Exception\Parse::PARSE_ELEMENT_ERROR); + } + + if ($sibling->isStatic()) { + $this->modifiers |= InternalReflectionProperty::IS_STATIC; + } + } + + return $this; + } + + /** + * Parses the property name. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @return \TokenReflection\ReflectionProperty + * @throws \TokenReflection\Exception\ParseException If the property name could not be determined. + */ + protected function parseName(Stream $tokenStream) + { + if (!$tokenStream->is(T_VARIABLE)) { + throw new Exception\ParseException($this, $tokenStream, 'The property name could not be determined.', Exception\ParseException::LOGICAL_ERROR); + } + + $this->name = substr($tokenStream->getTokenValue(), 1); + + $tokenStream->skipWhitespaces(true); + + return $this; + } + + /** + * Parses the propety default value. + * + * @param \TokenReflection\Stream\StreamBase $tokenStream Token substream + * @return \TokenReflection\ReflectionProperty + * @throws \TokenReflection\Exception\ParseException If the property default value could not be determined. + */ + private function parseDefaultValue(Stream $tokenStream) + { + $type = $tokenStream->getType(); + + if (';' === $type || ',' === $type) { + // No default value + return $this; + } + + if ('=' === $type) { + $tokenStream->skipWhitespaces(true); + } + + $level = 0; + while (null !== ($type = $tokenStream->getType())) { + switch ($type) { + case ',': + if (0 !== $level) { + break; + } + case ';': + break 2; + case ')': + case ']': + case '}': + $level--; + break; + case '(': + case '{': + case '[': + $level++; + break; + default: + break; + } + + $this->defaultValueDefinition[] = $tokenStream->current(); + $tokenStream->next(); + } + + if (',' !== $type && ';' !== $type) { + throw new Exception\ParseException($this, $tokenStream, 'The property default value is not terminated properly. Expected "," or ";".', Exception\ParseException::UNEXPECTED_TOKEN); + } + + return $this; + } +} diff --git a/apigen/libs/TokenReflection/TokenReflection/Resolver.php b/apigen/libs/TokenReflection/TokenReflection/Resolver.php new file mode 100644 index 00000000000..4d97f183df5 --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/Resolver.php @@ -0,0 +1,288 @@ +getNamespaceName(); + } elseif ($reflection instanceof ReflectionParameter) { + $namespace = $reflection->getDeclaringFunction()->getNamespaceName(); + } elseif ($reflection instanceof ReflectionProperty || $reflection instanceof ReflectionMethod) { + $namespace = $reflection->getDeclaringClass()->getNamespaceName(); + } else { + throw new Exception\RuntimeException('Invalid reflection object given.', Exception\RuntimeException::INVALID_ARGUMENT, $reflection); + } + + // Process __LINE__ constants; replace with the line number of the corresponding token + foreach ($tokens as $index => $token) { + if (T_LINE === $token[0]) { + $tokens[$index] = array( + T_LNUMBER, + $token[2], + $token[2] + ); + } + } + + $source = self::getSourceCode($tokens); + + $constants = self::findConstants($tokens, $reflection); + if (!empty($constants)) { + foreach (array_reverse($constants, true) as $offset => $constant) { + $value = ''; + + try { + switch ($constant) { + case '__LINE__': + throw new Exception\RuntimeException('__LINE__ constant cannot be resolved this way.', Exception\RuntimeException::UNSUPPORTED, $reflection); + case '__FILE__': + $value = $reflection->getFileName(); + break; + case '__DIR__': + $value = dirname($reflection->getFileName()); + break; + case '__FUNCTION__': + if ($reflection instanceof IReflectionParameter) { + $value = $reflection->getDeclaringFunctionName(); + } elseif ($reflection instanceof IReflectionFunctionBase) { + $value = $reflection->getName(); + } + break; + case '__CLASS__': + if ($reflection instanceof IReflectionConstant || $reflection instanceof IReflectionParameter || $reflection instanceof IReflectionProperty || $reflection instanceof IReflectionMethod) { + $value = $reflection->getDeclaringClassName() ?: ''; + } + break; + case '__TRAIT__': + if ($reflection instanceof IReflectionMethod || $reflection instanceof IReflectionProperty) { + $value = $reflection->getDeclaringTraitName() ?: ''; + } elseif ($reflection instanceof IReflectionParameter) { + $method = $reflection->getDeclaringFunction(); + if ($method instanceof IReflectionMethod) { + $value = $method->getDeclaringTraitName() ?: ''; + } + } + break; + case '__METHOD__': + if ($reflection instanceof IReflectionParameter) { + if (null !== $reflection->getDeclaringClassName()) { + $value = $reflection->getDeclaringClassName() . '::' . $reflection->getDeclaringFunctionName(); + } else { + $value = $reflection->getDeclaringFunctionName(); + } + } elseif ($reflection instanceof IReflectionConstant || $reflection instanceof IReflectionProperty) { + $value = $reflection->getDeclaringClassName() ?: ''; + } elseif ($reflection instanceof IReflectionMethod) { + $value = $reflection->getDeclaringClassName() . '::' . $reflection->getName(); + } elseif ($reflection instanceof IReflectionFunction) { + $value = $reflection->getName(); + } + break; + case '__NAMESPACE__': + if (($reflection instanceof IReflectionConstant && null !== $reflection->getDeclaringClassName()) || $reflection instanceof IReflectionProperty) { + $value = $reflection->getDeclaringClass()->getNamespaceName(); + } elseif ($reflection instanceof IReflectionParameter) { + if (null !== $reflection->getDeclaringClassName()) { + $value = $reflection->getDeclaringClass()->getNamespaceName(); + } else { + $value = $reflection->getDeclaringFunction()->getNamespaceName(); + } + } elseif ($reflection instanceof IReflectionMethod) { + $value = $reflection->getDeclaringClass()->getNamespaceName(); + } else { + $value = $reflection->getNamespaceName(); + } + break; + default: + if (0 === stripos($constant, 'self::') || 0 === stripos($constant, 'parent::')) { + // Handle self:: and parent:: definitions + + if ($reflection instanceof ReflectionConstant) { + throw new Exception\RuntimeException('Constants cannot use self:: and parent:: references.', Exception\RuntimeException::UNSUPPORTED, $reflection); + } elseif ($reflection instanceof ReflectionParameter && null === $reflection->getDeclaringClassName()) { + throw new Exception\RuntimeException('Function parameters cannot use self:: and parent:: references.', Exception\RuntimeException::UNSUPPORTED, $reflection); + } + + if (0 === stripos($constant, 'self::')) { + $className = $reflection->getDeclaringClassName(); + } else { + $declaringClass = $reflection->getDeclaringClass(); + $className = $declaringClass->getParentClassName() ?: self::CONSTANT_NOT_FOUND; + } + + $constantName = $className . substr($constant, strpos($constant, '::')); + } else { + $constantName = self::resolveClassFQN($constant, $reflection->getNamespaceAliases(), $namespace); + if ($cnt = strspn($constant, '\\')) { + $constantName = str_repeat('\\', $cnt) . $constantName; + } + } + + $reflection = $reflection->getBroker()->getConstant($constantName); + $value = $reflection->getValue(); + } + } catch (Exception\RuntimeException $e) { + $value = self::CONSTANT_NOT_FOUND; + } + + $source = substr_replace($source, var_export($value, true), $offset, strlen($constant)); + } + } + + return self::evaluate(sprintf("return %s;\n", $source)); + } + + /** + * Returns a part of the source code defined by given tokens. + * + * @param array $tokens Tokens array + * @return array + */ + final public static function getSourceCode(array $tokens) + { + if (empty($tokens)) { + return null; + } + + $source = ''; + foreach ($tokens as $token) { + $source .= $token[1]; + } + return $source; + } + + /** + * Finds constant names in the token definition. + * + * @param array $tokens Tokenized source code + * @param \TokenReflection\ReflectionElement $reflection Caller reflection + * @return array + */ + final public static function findConstants(array $tokens, ReflectionElement $reflection) + { + static $accepted = array( + T_DOUBLE_COLON => true, + T_STRING => true, + T_NS_SEPARATOR => true, + T_CLASS_C => true, + T_DIR => true, + T_FILE => true, + T_LINE => true, + T_FUNC_C => true, + T_METHOD_C => true, + T_NS_C => true, + T_TRAIT_C => true + ); + static $dontResolve = array('true' => true, 'false' => true, 'null' => true); + + // Adding a dummy token to the end + $tokens[] = array(null); + + $constants = array(); + $constant = ''; + $offset = 0; + foreach ($tokens as $token) { + if (isset($accepted[$token[0]])) { + $constant .= $token[1]; + } elseif ('' !== $constant) { + if (!isset($dontResolve[strtolower($constant)])) { + $constants[$offset - strlen($constant)] = $constant; + } + $constant = ''; + } + + if (null !== $token[0]) { + $offset += strlen($token[1]); + } + } + return $constants; + } + + /** + * Evaluates a source code. + * + * @param string $source Source code + * @return mixed + */ + final private static function evaluate($source) { + return eval($source); + } +} diff --git a/apigen/libs/TokenReflection/TokenReflection/Stream/FileStream.php b/apigen/libs/TokenReflection/TokenReflection/Stream/FileStream.php new file mode 100644 index 00000000000..44e367562d2 --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/Stream/FileStream.php @@ -0,0 +1,50 @@ +fileName = Broker::getRealPath($fileName); + + if (false === $this->fileName) { + throw new Exception\StreamException($this, 'File does not exist.', Exception\StreamException::DOES_NOT_EXIST); + } + + $contents = @file_get_contents($this->fileName); + if (false === $contents) { + throw new Exception\StreamException($this, 'File is not readable.', Exception\StreamException::NOT_READABLE); + } + + $this->processSource($contents); + } +} \ No newline at end of file diff --git a/apigen/libs/TokenReflection/TokenReflection/Stream/StreamBase.php b/apigen/libs/TokenReflection/TokenReflection/Stream/StreamBase.php new file mode 100644 index 00000000000..85bdcee2ba1 --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/Stream/StreamBase.php @@ -0,0 +1,487 @@ + true, T_WHITESPACE => true, T_DOC_COMMENT => true, T_INLINE_HTML => true, T_ENCAPSED_AND_WHITESPACE => true, T_CONSTANT_ENCAPSED_STRING => true); + + foreach ($stream as $position => $token) { + if (is_array($token)) { + if (!NATIVE_TRAITS && T_STRING === $token[0]) { + $lValue = strtolower($token[1]); + if ('trait' === $lValue) { + $token[0] = T_TRAIT; + } elseif ('insteadof' === $lValue) { + $token[0] = T_INSTEADOF; + } elseif ('__TRAIT__' === $token[1]) { + $token[0] = T_TRAIT_C; + } elseif ('callable' === $lValue) { + $token[0] = T_CALLABLE; + } + } + + $this->tokens[] = $token; + } else { + $previous = $this->tokens[$position - 1]; + $line = $previous[2]; + if (isset($checkLines[$previous[0]])) { + $line += substr_count($previous[1], "\n"); + } + + $this->tokens[] = array($token, $token, $line); + } + } + + $this->count = count($this->tokens); + } + + /** + * Returns the file name this is a part of. + * + * @return string + */ + public function getFileName() + { + return $this->fileName; + } + + /** + * Returns the original source code. + * + * @return string + */ + public function getSource() + { + return $this->getSourcePart(); + } + + /** + * Returns a part of the source code. + * + * @param mixed $start Start offset + * @param mixed $end End offset + * @return string + */ + public function getSourcePart($start = null, $end = null) + { + $start = (int) $start; + $end = null === $end ? ($this->count - 1) : (int) $end; + + $source = ''; + for ($i = $start; $i <= $end; $i++) { + $source .= $this->tokens[$i][1]; + } + return $source; + } + + /** + * Finds the position of the token of the given type. + * + * @param integer|string $type Token type + * @return \TokenReflection\Stream|boolean + */ + public function find($type) + { + $actual = $this->position; + while (isset($this->tokens[$this->position])) { + if ($type === $this->tokens[$this->position][0]) { + return $this; + } + + $this->position++; + } + + $this->position = $actual; + return false; + } + + /** + * Returns the position of the token with the matching bracket. + * + * @return \TokenReflection\Stream + * @throws \TokenReflection\Exception\RuntimeException If out of the token stream. + * @throws \TokenReflection\Exception\RuntimeException If there is no bracket at the current position. + * @throws \TokenReflection\Exception\RuntimeException If the matching bracket could not be found. + */ + public function findMatchingBracket() + { + static $brackets = array( + '(' => ')', + '{' => '}', + '[' => ']', + T_CURLY_OPEN => '}', + T_DOLLAR_OPEN_CURLY_BRACES => '}' + ); + + if (!$this->valid()) { + throw new Exception\StreamException($this, 'Out of token stream.', Exception\StreamException::READ_BEYOND_EOS); + } + + $position = $this->position; + + $bracket = $this->tokens[$this->position][0]; + + if (!isset($brackets[$bracket])) { + throw new Exception\StreamException($this, sprintf('There is no usable bracket at position "%d".', $position), Exception\StreamException::DOES_NOT_EXIST); + } + + $searching = $brackets[$bracket]; + + $level = 0; + while (isset($this->tokens[$this->position])) { + $type = $this->tokens[$this->position][0]; + if ($searching === $type) { + $level--; + } elseif ($bracket === $type || ($searching === '}' && ('{' === $type || T_CURLY_OPEN === $type || T_DOLLAR_OPEN_CURLY_BRACES === $type))) { + $level++; + } + + if (0 === $level) { + return $this; + } + + $this->position++; + } + + throw new Exception\StreamException($this, sprintf('Could not find the end bracket "%s" of the bracket at position "%d".', $searching, $position), Exception\StreamException::DOES_NOT_EXIST); + } + + /** + * Skips whitespaces and comments next to the current position. + * + * @param boolean $skipDocBlocks Skip docblocks as well + * @return \TokenReflection\Stream\StreamBase + */ + public function skipWhitespaces($skipDocBlocks = false) + { + static $skipped = array(T_WHITESPACE => true, T_COMMENT => true, T_DOC_COMMENT => true); + + do { + $this->position++; + } while (isset($this->tokens[$this->position]) && isset($skipped[$this->tokens[$this->position][0]]) && ($skipDocBlocks || $this->tokens[$this->position][0] !== T_DOC_COMMENT)); + + return $this; + } + + /** + * Returns if the token stream is at a whitespace position. + * + * @param boolean $docBlock Consider docblocks as whitespaces + * @return boolean + */ + public function isWhitespace($docBlock = false) + { + static $skipped = array(T_WHITESPACE => true, T_COMMENT => true, T_DOC_COMMENT => false); + + if (!$this->valid()) { + return false; + } + + return $docBlock ? isset($skipped[$this->getType()]) : !empty($skipped[$this->getType()]); + } + + /** + * Checks if there is a token of the given type at the given position. + * + * @param integer|string $type Token type + * @param integer $position Position; if none given, consider the current iteration position + * @return boolean + */ + public function is($type, $position = -1) + { + return $type === $this->getType($position); + } + + /** + * Returns the type of a token. + * + * @param integer $position Token position; if none given, consider the current iteration position + * @return string|integer|null + */ + public function getType($position = -1) + { + if (-1 === $position) { + $position = $this->position; + } + + return isset($this->tokens[$position]) ? $this->tokens[$position][0] : null; + } + + /** + * Returns the current token value. + * + * @param integer $position Token position; if none given, consider the current iteration position + * @return stirng + */ + public function getTokenValue($position = -1) + { + if (-1 === $position) { + $position = $this->position; + } + + return isset($this->tokens[$position]) ? $this->tokens[$position][1] : null; + } + + /** + * Returns the token type name. + * + * @param integer $position Token position; if none given, consider the current iteration position + * @return string|null + */ + public function getTokenName($position = -1) + { + $type = $this->getType($position); + if (is_string($type)) { + return $type; + } elseif (T_TRAIT === $type) { + return 'T_TRAIT'; + } elseif (T_INSTEADOF === $type) { + return 'T_INSTEADOF'; + } elseif (T_CALLABLE === $type) { + return 'T_CALLABLE'; + } + + return token_name($type); + } + + /** + * Stream serialization. + * + * @return string + */ + public function serialize() + { + return serialize(array($this->fileName, $this->tokens)); + } + + /** + * Restores the stream from the serialized state. + * + * @param string $serialized Serialized form + * @throws \TokenReflection\Exception\StreamException On deserialization error. + */ + public function unserialize($serialized) + { + $data = @unserialize($serialized); + if (false === $data) { + throw new Exception\StreamException($this, 'Could not deserialize the serialized data.', Exception\StreamException::SERIALIZATION_ERROR); + } + if (2 !== count($data) || !is_string($data[0]) || !is_array($data[1])) { + throw new Exception\StreamException($this, 'Invalid serialization data.', Exception\StreamException::SERIALIZATION_ERROR); + } + + $this->fileName = $data[0]; + $this->tokens = $data[1]; + $this->count = count($this->tokens); + $this->position = 0; + } + + /** + * Checks of there is a token with the given index. + * + * @param integer $offset Token index + * @return boolean + */ + public function offsetExists($offset) + { + return isset($this->tokens[$offset]); + } + + /** + * Removes a token. + * + * Unsupported. + * + * @param integer $offset Position + * @throws \TokenReflection\Exception\StreamException Unsupported. + */ + public function offsetUnset($offset) + { + throw new Exception\StreamException($this, 'Removing of tokens from the stream is not supported.', Exception\StreamException::UNSUPPORTED); + } + + /** + * Returns a token at the given index. + * + * @param integer $offset Token index + * @return mixed + */ + public function offsetGet($offset) + { + return isset($this->tokens[$offset]) ? $this->tokens[$offset] : null; + } + + /** + * Sets a value of a particular token. + * + * Unsupported + * + * @param integer $offset Position + * @param mixed $value Value + * @throws \TokenReflection\Exception\StreamException Unsupported. + */ + public function offsetSet($offset, $value) + { + throw new Exception\StreamException($this, 'Setting token values is not supported.', Exception\StreamException::UNSUPPORTED); + } + + /** + * Returns the current internal pointer value. + * + * @return integer + */ + public function key() + { + return $this->position; + } + + /** + * Advances the internal pointer. + * + * @return \TokenReflection\Stream + */ + public function next() + { + $this->position++; + return $this; + } + + /** + * Sets the internal pointer to zero. + * + * @return \TokenReflection\Stream + */ + public function rewind() + { + $this->position = 0; + return $this; + } + + /** + * Returns the current token. + * + * @return array|null + */ + public function current() + { + return isset($this->tokens[$this->position]) ? $this->tokens[$this->position] : null; + } + + /** + * Checks if there is a token on the current position. + * + * @return boolean + */ + public function valid() + { + return isset($this->tokens[$this->position]); + } + + /** + * Returns the number of tokens in the stream. + * + * @return integer + */ + public function count() + { + return $this->count; + } + + /** + * Sets the internal pointer to the given value. + * + * @param integer $position New position + * @return \TokenReflection\Stream + */ + public function seek($position) + { + $this->position = (int) $position; + return $this; + } + + /** + * Returns the stream source code. + * + * @return string + */ + public function __toString() + { + return $this->getSource(); + } +} diff --git a/apigen/libs/TokenReflection/TokenReflection/Stream/StringStream.php b/apigen/libs/TokenReflection/TokenReflection/Stream/StringStream.php new file mode 100644 index 00000000000..16f7c2b18fe --- /dev/null +++ b/apigen/libs/TokenReflection/TokenReflection/Stream/StringStream.php @@ -0,0 +1,38 @@ +fileName = $fileName; + $this->processSource($source); + } +} \ No newline at end of file diff --git a/apigen/templates/woodocs/404.latte b/apigen/templates/woodocs/404.latte new file mode 100644 index 00000000000..9b838179ee7 --- /dev/null +++ b/apigen/templates/woodocs/404.latte @@ -0,0 +1,23 @@ +{* +ApiGen 2.8.0 - API documentation generator for PHP 5.3+ + +Copyright (c) 2010-2011 David Grudl (http://davidgrudl.com) +Copyright (c) 2011-2012 Jaroslav Hanslík (https://github.com/kukulich) +Copyright (c) 2011-2012 Ondřej Nešpor (https://github.com/Andrewsville) + +For the full copyright and license information, please view +the file LICENSE.md that was distributed with this source code. +*} +{layout '@layout.latte'} +{var $robots = false} + +{block #title}Page not found{/block} + +{block #content} +
+

{include #title}

+

The requested page could not be found.

+

You have probably clicked on a link that is outdated and points to a page that does not exist any more or you have made an typing error in the address.

+

To continue please try to find requested page in the menu,{if $config->tree} take a look at the tree view of the whole project{/if} or use search field on the top.

+
+{/block} \ No newline at end of file diff --git a/apigen/templates/woodocs/@elementlist.latte b/apigen/templates/woodocs/@elementlist.latte new file mode 100644 index 00000000000..18a70f8bbd3 --- /dev/null +++ b/apigen/templates/woodocs/@elementlist.latte @@ -0,0 +1,59 @@ +{* +ApiGen 2.8.0 - API documentation generator for PHP 5.3+ + +Copyright (c) 2010-2011 David Grudl (http://davidgrudl.com) +Copyright (c) 2011-2012 Jaroslav Hanslík (https://github.com/kukulich) +Copyright (c) 2011-2012 Ondřej Nešpor (https://github.com/Andrewsville) +Copyright (c) 2012 Olivier Laviale (https://github.com/olvlvl) + +For the full copyright and license information, please view +the file LICENSE.md that was distributed with this source code. +*} +{define #elements} + + {if $namespace}{$element->shortName}{else}{$element->name}{/if} + {!$element|shortDescription} + +{/define} + +{if $classes} +

Classes summary

+ +{include #elements, elements => $classes} +
+{/if} + +{if $interfaces} +

Interfaces summary

+ +{include #elements, elements => $interfaces} +
+{/if} + +{if $traits} +

Traits summary

+ +{include #elements, elements => $traits} +
+{/if} + +{if $exceptions} +

Exceptions summary

+ +{include #elements, elements => $exceptions} +
+{/if} + +{if $constants} +

Constants summary

+ +{include #elements, elements => $constants} +
+{/if} + +{if $functions} +

Functions summary

+ +{include #elements, elements => $functions} +
+{/if} diff --git a/apigen/templates/woodocs/@layout.latte b/apigen/templates/woodocs/@layout.latte new file mode 100644 index 00000000000..f89cbefefe4 --- /dev/null +++ b/apigen/templates/woodocs/@layout.latte @@ -0,0 +1,186 @@ +{* +ApiGen 2.8.0 - API documentation generator for PHP 5.3+ + +Copyright (c) 2010-2011 David Grudl (http://davidgrudl.com) +Copyright (c) 2011-2012 Jaroslav Hanslík (https://github.com/kukulich) +Copyright (c) 2011-2012 Ondřej Nešpor (https://github.com/Andrewsville) +Copyright (c) 2012 Olivier Laviale (https://github.com/olvlvl) + +For the full copyright and license information, please view +the file LICENSE.md that was distributed with this source code. +*} +{default $robots = true} +{default $active = ''} + + + + + + + + {include #title}{if 'overview' !== $active && $config->title} | {$config->title}{/if} + + {var combinedJs = 'resources/combined.js'} + + {var elementListJs = 'elementlist.js'} + + {var bootstrapCss = 'resources/bootstrap.min.css'} + + {var styleCss = 'resources/style.css'} + + + + + + + + + +
+ +
+ +
+ + + + diff --git a/apigen/templates/woodocs/class.latte b/apigen/templates/woodocs/class.latte new file mode 100644 index 00000000000..ed90df10ccd --- /dev/null +++ b/apigen/templates/woodocs/class.latte @@ -0,0 +1,431 @@ +{* +ApiGen 2.8.0 - API documentation generator for PHP 5.3+ + +Copyright (c) 2010-2011 David Grudl (http://davidgrudl.com) +Copyright (c) 2011-2012 Jaroslav Hanslík (https://github.com/kukulich) +Copyright (c) 2011-2012 Ondřej Nešpor (https://github.com/Andrewsville) +Copyright (c) 2012 Olivier Laviale (https://github.com/olvlvl) + +For the full copyright and license information, please view +the file LICENSE.md that was distributed with this source code. +*} +{layout '@layout.latte'} +{var $active = 'class'} + +{block #title}{if $class->deprecated}Deprecated {/if}{if $class->interface}Interface{elseif $class->trait}Trait{else}Class{/if} {$class->name}{/block} + +{block #content} +
+

{if $class->interface}Interface{elseif $class->trait}Trait{else}Class{/if} {$class->shortName}

+ + {if $class->valid} + +
+ {!$class|longDescription} +
+ +
+
+ Extended by + {if $item->documented} + {last}{/last}{$item->name}{last}{/last} + {else}{$item->name}{/if} + {var $itemOwnInterfaces = $item->ownInterfaces} + {if $itemOwnInterfaces} implements {foreach $itemOwnInterfaces as $interface} + {$interface->name}{sep}, {/sep} + {/foreach}{/if} + {var $itemOwnTraits = $item->ownTraits} + {if $itemOwnTraits} uses {foreach $itemOwnTraits as $trait} + {$trait->name}{sep}, {/sep} + {/foreach}{/if} +
+
+ + {define #children} +

+ {foreach $children as $child} + {$child->name}{sep}, {/sep} + {/foreach} +

+ {/define} + +
+

Direct known subclasses

+ {include #children, children => $directSubClasses} +
+ +
+

Indirect known subclasses

+ {include #children, children => $indirectSubClasses} +
+ +
+

Direct known implementers

+ {include #children, children => $directImplementers} +
+ +
+

Indirect known implementers

+ {include #children, children => $indirectImplementers} +
+ +
+

Direct Known Users

+ {include #children, children => $directUsers} +
+ +
+

Indirect Known Users

+ {include #children, children => $indirectUsers} +
+ +
+ {if !$class->interface && !$class->trait && ($class->abstract || $class->final)}{if $class->abstract}Abstract{else}Final{/if}
{/if} + {if $class->internal}PHP Extension: {$class->extension->name|firstUpper}
{/if} + {if $class->inNamespace()}Namespace: {!$class->namespaceName|namespaceLinks}
{/if} + {if $class->inPackage()}Package: {!$class->packageName|packageLinks}
{/if} + + {foreach $template->annotationSort($template->annotationFilter($class->annotations)) as $annotation => $values} + {foreach $values as $value} + {$annotation|annotationBeautify}{if $value}:{/if} + {!$value|annotation:$annotation:$class}
+ {/foreach} + {/foreach} + {if $class->internal}Documented at php.net{else}Located at {$class->fileName|relativePath}{/if}
+
+ + {var $ownMethods = $class->ownMethods} + {var $inheritedMethods = $class->inheritedMethods} + {var $usedMethods = $class->usedMethods} + {var $ownMagicMethods = $class->ownMagicMethods} + {var $inheritedMagicMethods = $class->inheritedMagicMethods} + {var $usedMagicMethods = $class->usedMagicMethods} + + {if $ownMethods || $inheritedMethods || $usedMethods || $ownMagicMethods || $usedMagicMethods} + {define #method} + + {var $annotations = $method->annotations} + + + {if !$class->interface && $method->abstract}abstract{elseif $method->final}final{/if} {if $method->protected}protected{elseif $method->private}private{else}public{/if} {if $method->static}static{/if} + {ifset $annotations['return']}{!$annotations['return'][0]|typeLinks:$method}{/ifset} + {if $method->returnsReference()}&{/if} + + + +
+ # + {block|strip} + {if $class->internal} + {$method->name}( + {else} + {$method->name}( + {/if} + {foreach $method->parameters as $parameter} + {!$parameter->typeHint|typeLinks:$method} + {if $parameter->passedByReference}& {/if}${$parameter->name}{if $parameter->defaultValueAvailable} = {!$parameter->defaultValueDefinition|highlightPHP:$class}{elseif $parameter->unlimited},…{/if}{sep}, {/sep} + {/foreach} + ){/block} + + {if $config->template['options']['elementDetailsCollapsed']} +
+ {!$method|shortDescription:true} +
+ {/if} + +
+ {!$method|longDescription} + + {if !$class->deprecated && $method->deprecated} +

Deprecated

+ {ifset $annotations['deprecated']} +
+ {foreach $annotations['deprecated'] as $description} + {if $description} + {!$description|annotation:'deprecated':$method}
+ {/if} + {/foreach} +
+ {/ifset} + {/if} + + {if $method->parameters && isset($annotations['param'])} +

Parameters

+
+ {foreach $method->parameters as $parameter} +
${$parameter->name}{if $parameter->unlimited},…{/if}
+
{ifset $annotations['param'][$parameter->position]}{!$annotations['param'][$parameter->position]|annotation:'param':$method}{/ifset}
+ {/foreach} +
+ {/if} + + {if isset($annotations['return']) && 'void' !== $annotations['return'][0]} +

Returns

+
+ {foreach $annotations['return'] as $description} + {!$description|annotation:'return':$method}
+ {/foreach} +
+ {/if} + + {ifset $annotations['throws']} +

Throws

+
+ {foreach $annotations['throws'] as $description} + {!$description|annotation:'throws':$method}
+ {/foreach} +
+ {/ifset} + + {foreach $template->annotationSort($template->annotationFilter($annotations, array('deprecated', 'param', 'return', 'throws'))) as $annotation => $descriptions} +

{$annotation|annotationBeautify}

+
+ {foreach $descriptions as $description} + {if $description} + {!$description|annotation:$annotation:$method}
+ {/if} + {/foreach} +
+ {/foreach} + + {var $overriddenMethod = $method->overriddenMethod} + {if $overriddenMethod} +

Overrides

+ + {/if} + + {var $implementedMethod = $method->implementedMethod} + {if $implementedMethod} +

Implementation of

+ + {/if} +
+
+ + {/define} + +

Methods summary

+ + {foreach $ownMethods as $method} + {include #method, method => $method} + {/foreach} +
+ + {foreach $inheritedMethods as $parentName => $methods} +

Methods inherited from {$parentName}

+

+ {foreach $methods as $method} + {$method->name}(){sep}, {/sep} + {/foreach} +

+ {/foreach} + + {foreach $usedMethods as $traitName => $methods} +

Methods used from {$traitName}

+

+ {foreach $methods as $data} + {$data['method']->name}(){if $data['aliases']}(as {foreach $data['aliases'] as $alias}{$alias->name}(){sep}, {/sep}{/foreach}){/if}{sep}, {/sep} + {/foreach} +

+ {/foreach} + +

Magic methods summary

+ + {foreach $ownMagicMethods as $method} + {include #method, method => $method} + {/foreach} +
+ + {foreach $inheritedMagicMethods as $parentName => $methods} +

Magic methods inherited from {$parentName}

+

+ {foreach $methods as $method} + {$method->name}(){sep}, {/sep} + {/foreach} +

+ {/foreach} + + {foreach $usedMagicMethods as $traitName => $methods} +

Magic methods used from {$traitName}

+

+ {foreach $methods as $data} + {$data['method']->name}(){if $data['aliases']}(as {foreach $data['aliases'] as $alias}{$alias->name}(){sep}, {/sep}{/foreach}){/if}{sep}, {/sep} + {/foreach} +

+ {/foreach} + {/if} + + + {var $ownConstants = $class->ownConstants} + {var $inheritedConstants = $class->inheritedConstants} + + {if $ownConstants || $inheritedConstants} +

Constants summary

+ + + {var $annotations = $constant->annotations} + + + + + + +
{!$constant->typeHint|typeLinks:$constant} + {if $class->internal} + {$constant->name} + {else} + {$constant->name} + {/if} + {!$constant->valueDefinition|highlightValue:$class}
+ # + + {if $config->template['options']['elementDetailsCollapsed']} +
+ {!$constant|shortDescription:true} +
+ {/if} + +
+ {!$constant|longDescription} + + {foreach $template->annotationSort($template->annotationFilter($annotations, array('var'))) as $annotation => $descriptions} +

{$annotation|annotationBeautify}

+
+ {foreach $descriptions as $description} + {if $description} + {!$description|annotation:$annotation:$constant}
+ {/if} + {/foreach} +
+ {/foreach} +
+
+ + {foreach $inheritedConstants as $parentName => $constants} +

Constants inherited from {$parentName}

+

+ {foreach $constants as $constant} + {$constant->name}{sep}, {/sep} + {/foreach} +

+ {/foreach} + {/if} + + {var $ownProperties = $class->ownProperties} + {var $inheritedProperties = $class->inheritedProperties} + {var $usedProperties = $class->usedProperties} + {var $ownMagicProperties = $class->ownMagicProperties} + {var $inheritedMagicProperties = $class->inheritedMagicProperties} + {var $usedMagicProperties = $class->usedMagicProperties} + + {if $ownProperties || $inheritedProperties || $usedProperties || $ownMagicProperties || $inheritedMagicProperties || $usedMagicProperties} + {define #property} + + + {if $property->protected}protected{elseif $property->private}private{else}public{/if} {if $property->static}static{/if} {if $property->readOnly}read-only{elseif $property->writeOnly}write-only{/if} + {!$property->typeHint|typeLinks:$property} + + + + {if $class->internal} + ${$property->name} + {else} + ${$property->name} + {/if} + + {!$property->defaultValueDefinition|highlightValue:$class} +
+ # + + {if $config->template['options']['elementDetailsCollapsed']} +
+ {!$property|shortDescription:true} +
+ {/if} + +
+ {!$property|longDescription} + + {foreach $template->annotationSort($template->annotationFilter($property->annotations, array('var'))) as $annotation => $descriptions} +

{$annotation|annotationBeautify}

+
+ {foreach $descriptions as $description} + {if $description} + {!$description|annotation:$annotation:$property}
+ {/if} + {/foreach} +
+ {/foreach} +
+
+ + {/define} + +

Properties summary

+ + {foreach $ownProperties as $property} + {include #property, property => $property} + {/foreach} +
+ + {foreach $inheritedProperties as $parentName => $properties} +

Properties inherited from {$parentName}

+

+ {foreach $properties as $property} + ${$property->name}{sep}, {/sep} + {/foreach} +

+ {/foreach} + + {foreach $usedProperties as $traitName => $properties} +

Properties used from {$traitName}

+

+ {foreach $properties as $property} + ${$property->name}{sep}, {/sep} + {/foreach} +

+ {/foreach} + + {if $ownMagicProperties} +

Magic properties

+ + {foreach $ownMagicProperties as $property} + {include #property, property => $property} + {/foreach} +
+ {/if} + + {foreach $inheritedMagicProperties as $parentName => $properties} +

Magic properties inherited from {$parentName}

+

+ {foreach $properties as $property} + ${$property->name}{sep}, {/sep} + {/foreach} +

+ {/foreach} + + {foreach $usedMagicProperties as $traitName => $properties} +

Magic properties used from {$traitName}

+

+ {foreach $properties as $property} + ${$property->name}{sep}, {/sep} + {/foreach} +

+ {/foreach} + {/if} + + {else} +
+

+ Documentation of this class could not be generated. +

+

+ Class was originally declared in {$class->fileName|relativePath} and is invalid because of: +

+
    +
  • Class was redeclared in {$reason->getSender()->getFileName()|relativePath}.
  • +
+
+ {/if} +
+{/block} diff --git a/apigen/templates/woodocs/combined.js.latte b/apigen/templates/woodocs/combined.js.latte new file mode 100644 index 00000000000..ad9fa3fb21d --- /dev/null +++ b/apigen/templates/woodocs/combined.js.latte @@ -0,0 +1,22 @@ +{* +ApiGen 2.8.0 - API documentation generator for PHP 5.3+ + +Copyright (c) 2010-2011 David Grudl (http://davidgrudl.com) +Copyright (c) 2011-2012 Jaroslav Hanslík (https://github.com/kukulich) +Copyright (c) 2011-2012 Ondřej Nešpor (https://github.com/Andrewsville) +Copyright (c) 2012 Olivier Laviale (https://github.com/olvlvl) + +For the full copyright and license information, please view +the file LICENSE.md that was distributed with this source code. +*} +{contentType javascript} + +var ApiGen = ApiGen || {}; +ApiGen.config = {$config->template}; + +{var $scripts = ['jquery.min.js', 'jquery.cookie.js', 'jquery.sprintf.js', 'jquery.autocomplete.js', 'jquery.sortElements.js', 'main.js']} +{var $dir = dirname($template->getFile())} + +{foreach $scripts as $script} +{!file_get_contents("$dir/js/$script")} +{/foreach} diff --git a/apigen/templates/woodocs/config.neon b/apigen/templates/woodocs/config.neon new file mode 100644 index 00000000000..6ddc2f6951a --- /dev/null +++ b/apigen/templates/woodocs/config.neon @@ -0,0 +1,56 @@ +require: + min: 2.8.0 + +resources: + resources: resources + +templates: + common: + overview.latte: index.html + combined.js.latte: resources/combined.js + elementlist.js.latte: elementlist.js + 404.latte: 404.html + + main: + package: + filename: package-%s.html + template: package.latte + namespace: + filename: namespace-%s.html + template: namespace.latte + class: + filename: class-%s.html + template: class.latte + constant: + filename: constant-%s.html + template: constant.latte + function: + filename: function-%s.html + template: function.latte + source: + filename: source-%s.html + template: source.latte + tree: + filename: tree.html + template: tree.latte + deprecated: + filename: deprecated.html + template: deprecated.latte + todo: + filename: todo.html + template: todo.latte + + optional: + sitemap: + filename: sitemap.xml + template: sitemap.xml.latte + opensearch: + filename: opensearch.xml + template: opensearch.xml.latte + robots: + filename: robots.txt + template: robots.txt.latte + +options: + elementDetailsCollapsed: Yes + elementsOrder: natural # alphabetical diff --git a/apigen/templates/woodocs/constant.latte b/apigen/templates/woodocs/constant.latte new file mode 100644 index 00000000000..43ad423962f --- /dev/null +++ b/apigen/templates/woodocs/constant.latte @@ -0,0 +1,67 @@ +{* +ApiGen 2.8.0 - API documentation generator for PHP 5.3+ + +Copyright (c) 2010-2011 David Grudl (http://davidgrudl.com) +Copyright (c) 2011-2012 Jaroslav Hanslík (https://github.com/kukulich) +Copyright (c) 2011-2012 Ondřej Nešpor (https://github.com/Andrewsville) +Copyright (c) 2012 Olivier Laviale (https://github.com/olvlvl) + +For the full copyright and license information, please view +the file LICENSE.md that was distributed with this source code. +*} +{layout '@layout.latte'} +{var $active = 'constant'} + +{block #title}{if $constant->deprecated}Deprecated {/if}Constant {$constant->name}{/block} + +{block #content} +
+

Constant {$constant->shortName}

+ + {if $constant->valid} + +
+ {!$constant|longDescription} +
+ +
+ {if $constant->inNamespace()}Namespace: {!$constant->namespaceName|namespaceLinks}
{/if} + {if $constant->inPackage()}Package: {!$constant->packageName|packageLinks}
{/if} + {foreach $template->annotationSort($template->annotationFilter($constant->annotations, array('var'))) as $annotation => $values} + {foreach $values as $value} + {$annotation|annotationBeautify}{if $value}:{/if} + {!$value|annotation:$annotation:$constant}
+ {/foreach} + {/foreach} + Located at {$constant->fileName|relativePath}
+
+ + {var $annotations = $constant->annotations} + +

Value summary

+ + + + + + +
{!$constant->typeHint|typeLinks:$constant}{block|strip} + {var $element = $template->resolveElement($constant->valueDefinition, $constant)} + {if $element}{$constant->valueDefinition}{else}{!$constant->valueDefinition|highlightValue:$constant}{/if} + {/block}{ifset $annotations['var']}{!$annotations['var'][0]|description:$constant}{/ifset}
+ + {else} +
+

+ Documentation of this constant could not be generated. +

+

+ Constant was originally declared in {$constant->fileName|relativePath} and is invalid because of: +

+
    +
  • Constant was redeclared in {$reason->getSender()->getFileName()|relativePath}.
  • +
+
+ {/if} +
+{/block} diff --git a/apigen/templates/woodocs/deprecated.latte b/apigen/templates/woodocs/deprecated.latte new file mode 100644 index 00000000000..427afc7c5b6 --- /dev/null +++ b/apigen/templates/woodocs/deprecated.latte @@ -0,0 +1,137 @@ +{* +ApiGen 2.8.0 - API documentation generator for PHP 5.3+ + +Copyright (c) 2010-2011 David Grudl (http://davidgrudl.com) +Copyright (c) 2011-2012 Jaroslav Hanslík (https://github.com/kukulich) +Copyright (c) 2011-2012 Ondřej Nešpor (https://github.com/Andrewsville) +Copyright (c) 2012 Olivier Laviale (https://github.com/olvlvl) + +For the full copyright and license information, please view +the file LICENSE.md that was distributed with this source code. +*} +{layout '@layout.latte'} +{var $active = 'deprecated'} + +{block #title}Deprecated{/block} + +{block #content} +
+

{include #title}

+ + {define #classes} + + {$class->name} + + {foreach $class->annotations['deprecated'] as $description} + {if $description} + {!$description|annotation:'deprecated':$class}
+ {/if} + {/foreach} + + + {/define} + + {if $deprecatedClasses} +

Classes summary

+ + {include #classes, items => $deprecatedClasses} +
+ {/if} + + {if $deprecatedInterfaces} +

Interfaces summary

+ + {include #classes, items => $deprecatedInterfaces} +
+ {/if} + + {if $deprecatedTraits} +

Traits summary

+ + {include #classes, items => $deprecatedTraits} +
+ {/if} + + {if $deprecatedExceptions} +

Exceptions summary

+ + {include #classes, items => $deprecatedExceptions} +
+ {/if} + + {if $deprecatedMethods} +

Methods summary

+ + + + + + +
{$method->declaringClassName}{$method->name}() + {if $method->hasAnnotation('deprecated')} + {foreach $method->annotations['deprecated'] as $description} + {if $description} + {!$description|annotation:'deprecated':$method}
+ {/if} + {/foreach} + {/if} +
+ {/if} + + {if $deprecatedConstants} +

Constants summary

+ + + {if $constant->declaringClassName} + + + {else} + + + {/if} + + +
{$constant->declaringClassName}{$constant->name}{$constant->namespaceName}{$constant->shortName} + {foreach $constant->annotations['deprecated'] as $description} + {if $description} + {!$description|annotation:'deprecated':$constant}
+ {/if} + {/foreach} +
+ {/if} + + {if $deprecatedProperties} +

Properties summary

+ + + + + + +
{$property->declaringClassName}${$property->name} + {foreach $property->annotations['deprecated'] as $description} + {if $description} + {!$description|annotation:'deprecated':$property}
+ {/if} + {/foreach} +
+ {/if} + + {if $deprecatedFunctions} +

Functions summary

+ + + + + + +
{$function->namespaceName}{$function->shortName} + {foreach $function->annotations['deprecated'] as $description} + {if $description} + {!$description|annotation:'deprecated':$function}
+ {/if} + {/foreach} +
+ {/if} +
+{/block} diff --git a/apigen/templates/woodocs/elementlist.js.latte b/apigen/templates/woodocs/elementlist.js.latte new file mode 100644 index 00000000000..176b164dfd4 --- /dev/null +++ b/apigen/templates/woodocs/elementlist.js.latte @@ -0,0 +1,15 @@ +{* +ApiGen 2.8.0 - API documentation generator for PHP 5.3+ + +Copyright (c) 2010-2011 David Grudl (http://davidgrudl.com) +Copyright (c) 2011-2012 Jaroslav Hanslík (https://github.com/kukulich) +Copyright (c) 2011-2012 Ondřej Nešpor (https://github.com/Andrewsville) +Copyright (c) 2012 Olivier Laviale (https://github.com/olvlvl) + +For the full copyright and license information, please view +the file LICENSE.md that was distributed with this source code. +*} +{contentType javascript} + +var ApiGen = ApiGen || {}; +ApiGen.elements = {$elements}; diff --git a/apigen/templates/woodocs/function.latte b/apigen/templates/woodocs/function.latte new file mode 100644 index 00000000000..fba90ca4eb1 --- /dev/null +++ b/apigen/templates/woodocs/function.latte @@ -0,0 +1,98 @@ +{* +ApiGen 2.8.0 - API documentation generator for PHP 5.3+ + +Copyright (c) 2010-2011 David Grudl (http://davidgrudl.com) +Copyright (c) 2011-2012 Jaroslav Hanslík (https://github.com/kukulich) +Copyright (c) 2011-2012 Ondřej Nešpor (https://github.com/Andrewsville) +Copyright (c) 2012 Olivier Laviale (https://github.com/olvlvl) + +For the full copyright and license information, please view +the file LICENSE.md that was distributed with this source code. +*} +{layout '@layout.latte'} +{var $active = 'function'} + +{block #title}{if $function->deprecated}Deprecated {/if}Function {$function->name}{/block} + +{block #content} +
+

Function {$function->shortName}

+ + {if $function->valid} + +
+ {!$function|longDescription} +
+ +
+ {if $function->inNamespace()}Namespace: {!$function->namespaceName|namespaceLinks}
{/if} + {if $function->inPackage()}Package: {!$function->packageName|packageLinks}
{/if} + {foreach $template->annotationSort($template->annotationFilter($function->annotations, array('param', 'return', 'throws'))) as $annotation => $values} + {foreach $values as $value} + {$annotation|annotationBeautify}{if $value}:{/if} + {!$value|annotation:$annotation:$function}
+ {/foreach} + {/foreach} + Located at {$function->fileName|relativePath}
+
+ + {var $annotations = $function->annotations} + + {if $function->numberOfParameters} +

Parameters summary

+ + + + + + +
{!$parameter->typeHint|typeLinks:$function}{block|strip} + {if $parameter->passedByReference}& {/if}${$parameter->name}{if $parameter->defaultValueAvailable} = {!$parameter->defaultValueDefinition|highlightPHP:$function}{elseif $parameter->unlimited},…{/if} + {/block} + {ifset $annotations['param'][$parameter->position]}{!$annotations['param'][$parameter->position]|description:$parameter}{/ifset} +
+ {/if} + + {if isset($annotations['return']) && 'void' !== $annotations['return'][0]} +

Return value summary

+ + + + + +
+ {!$annotations['return'][0]|typeLinks:$function} + + {!$annotations['return'][0]|description:$function} +
+ {/if} + + {if isset($annotations['throws'])} +

Thrown exceptions summary

+ + + + + +
+ {!$throws|typeLinks:$function} + + {!$throws|description:$function} +
+ {/if} + + {else} +
+

+ Documentation of this function could not be generated. +

+

+ Function was originally declared in {$function->fileName|relativePath} and is invalid because of: +

+
    +
  • Function was redeclared in {$reason->getSender()->getFileName()|relativePath}.
  • +
+
+ {/if} +
+{/block} diff --git a/apigen/templates/woodocs/js/jquery.autocomplete.js b/apigen/templates/woodocs/js/jquery.autocomplete.js new file mode 100644 index 00000000000..b8bec34df5a --- /dev/null +++ b/apigen/templates/woodocs/js/jquery.autocomplete.js @@ -0,0 +1,799 @@ +/*! + * jQuery Autocomplete plugin 1.1 + * + * Copyright (c) 2009 Jörn Zaefferer + * + * Dual licensed under the MIT and GPL licenses: + * http://www.opensource.org/licenses/mit-license.php + * http://www.gnu.org/licenses/gpl.html + * + * Revision: $Id: jquery.autocomplete.js 15 2009-08-22 10:30:27Z joern.zaefferer $ + */ + +;(function($) { + +$.fn.extend({ + autocomplete: function(urlOrData, options) { + var isUrl = typeof urlOrData == "string"; + options = $.extend({}, $.Autocompleter.defaults, { + url: isUrl ? urlOrData : null, + data: isUrl ? null : urlOrData, + delay: isUrl ? $.Autocompleter.defaults.delay : 10, + max: options && !options.scroll ? 10 : 150 + }, options); + + // if highlight is set to false, replace it with a do-nothing function + options.highlight = options.highlight || function(value) { return value; }; + + // if the formatMatch option is not specified, then use formatItem for backwards compatibility + options.formatMatch = options.formatMatch || options.formatItem; + + options.show = options.show || function(list) {}; + + return this.each(function() { + new $.Autocompleter(this, options); + }); + }, + result: function(handler) { + return this.bind("result", handler); + }, + search: function(handler) { + return this.trigger("search", [handler]); + }, + flushCache: function() { + return this.trigger("flushCache"); + }, + setOptions: function(options){ + return this.trigger("setOptions", [options]); + }, + unautocomplete: function() { + return this.trigger("unautocomplete"); + } +}); + +$.Autocompleter = function(input, options) { + + var KEY = { + UP: 38, + DOWN: 40, + DEL: 46, + TAB: 9, + RETURN: 13, + ESC: 27, + COMMA: 188, + PAGEUP: 33, + PAGEDOWN: 34, + BACKSPACE: 8 + }; + + // Create $ object for input element + var $input = $(input).attr("autocomplete", "off").addClass(options.inputClass); + + var timeout; + var previousValue = ""; + var cache = $.Autocompleter.Cache(options); + var hasFocus = 0; + var lastKeyPressCode; + var config = { + mouseDownOnSelect: false + }; + var select = $.Autocompleter.Select(options, input, selectCurrent, config); + + // only opera doesn't trigger keydown multiple times while pressed, others don't work with keypress at all + $input.bind(($.browser.opera ? "keypress" : "keydown") + ".autocomplete", function(event) { + // a keypress means the input has focus + // avoids issue where input had focus before the autocomplete was applied + hasFocus = 1; + // track last key pressed + lastKeyPressCode = event.keyCode; + switch(event.keyCode) { + + case KEY.UP: + event.preventDefault(); + if ( select.visible() ) { + select.prev(); + } else { + onChange(0, true); + } + break; + + case KEY.DOWN: + event.preventDefault(); + if ( select.visible() ) { + select.next(); + } else { + onChange(0, true); + } + break; + + case KEY.PAGEUP: + event.preventDefault(); + if ( select.visible() ) { + select.pageUp(); + } else { + onChange(0, true); + } + break; + + case KEY.PAGEDOWN: + event.preventDefault(); + if ( select.visible() ) { + select.pageDown(); + } else { + onChange(0, true); + } + break; + + // matches also semicolon + case options.multiple && $.trim(options.multipleSeparator) == "," && KEY.COMMA: + case KEY.TAB: + case KEY.RETURN: + if( selectCurrent() ) { + //event.preventDefault(); + //return false; + } + break; + + case KEY.ESC: + select.hide(); + break; + + default: + clearTimeout(timeout); + timeout = setTimeout(onChange, options.delay); + break; + } + }).focus(function(){ + // track whether the field has focus, we shouldn't process any + // results if the field no longer has focus + hasFocus++; + }).blur(function() { + hasFocus = 0; + if (!config.mouseDownOnSelect) { + hideResults(); + } + }).click(function() { + // show select when clicking in a focused field + if ( hasFocus++ > 1 && !select.visible() ) { + onChange(0, true); + } + }).bind("search", function() { + // TODO why not just specifying both arguments? + var fn = (arguments.length > 1) ? arguments[1] : null; + function findValueCallback(q, data) { + var result; + if( data && data.length ) { + for (var i=0; i < data.length; i++) { + if( data[i].result.toLowerCase() == q.toLowerCase() ) { + result = data[i]; + break; + } + } + } + if( typeof fn == "function" ) fn(result); + else $input.trigger("result", result && [result.data, result.value]); + } + $.each(trimWords($input.val()), function(i, value) { + request(value, findValueCallback, findValueCallback); + }); + }).bind("flushCache", function() { + cache.flush(); + }).bind("setOptions", function() { + $.extend(options, arguments[1]); + // if we've updated the data, repopulate + if ( "data" in arguments[1] ) + cache.populate(); + }).bind("unautocomplete", function() { + select.unbind(); + $input.unbind(); + $(input.form).unbind(".autocomplete"); + }); + + + function selectCurrent() { + var selected = select.selected(); + if( !selected ) + return false; + + var v = selected.result; + previousValue = v; + + if ( options.multiple ) { + var words = trimWords($input.val()); + if ( words.length > 1 ) { + var seperator = options.multipleSeparator.length; + var cursorAt = $(input).selection().start; + var wordAt, progress = 0; + $.each(words, function(i, word) { + progress += word.length; + if (cursorAt <= progress) { + wordAt = i; + return false; + } + progress += seperator; + }); + words[wordAt] = v; + // TODO this should set the cursor to the right position, but it gets overriden somewhere + //$.Autocompleter.Selection(input, progress + seperator, progress + seperator); + v = words.join( options.multipleSeparator ); + } + v += options.multipleSeparator; + } + + $input.val(v); + hideResultsNow(); + $input.trigger("result", [selected.data, selected.value]); + return true; + } + + function onChange(crap, skipPrevCheck) { + if( lastKeyPressCode == KEY.DEL ) { + select.hide(); + return; + } + + var currentValue = $input.val(); + + if ( !skipPrevCheck && currentValue == previousValue ) + return; + + previousValue = currentValue; + + currentValue = lastWord(currentValue); + if ( currentValue.length >= options.minChars) { + $input.addClass(options.loadingClass); + if (!options.matchCase) + currentValue = currentValue.toLowerCase(); + request(currentValue, receiveData, hideResultsNow); + } else { + stopLoading(); + select.hide(); + } + }; + + function trimWords(value) { + if (!value) + return [""]; + if (!options.multiple) + return [$.trim(value)]; + return $.map(value.split(options.multipleSeparator), function(word) { + return $.trim(value).length ? $.trim(word) : null; + }); + } + + function lastWord(value) { + if ( !options.multiple ) + return value; + var words = trimWords(value); + if (words.length == 1) + return words[0]; + var cursorAt = $(input).selection().start; + if (cursorAt == value.length) { + words = trimWords(value) + } else { + words = trimWords(value.replace(value.substring(cursorAt), "")); + } + return words[words.length - 1]; + } + + // fills in the input box w/the first match (assumed to be the best match) + // q: the term entered + // sValue: the first matching result + function autoFill(q, sValue){ + // autofill in the complete box w/the first match as long as the user hasn't entered in more data + // if the last user key pressed was backspace, don't autofill + if( options.autoFill && (lastWord($input.val()).toLowerCase() == q.toLowerCase()) && lastKeyPressCode != KEY.BACKSPACE ) { + // fill in the value (keep the case the user has typed) + $input.val($input.val() + sValue.substring(lastWord(previousValue).length)); + // select the portion of the value not typed by the user (so the next character will erase) + $(input).selection(previousValue.length, previousValue.length + sValue.length); + } + }; + + function hideResults() { + clearTimeout(timeout); + timeout = setTimeout(hideResultsNow, 200); + }; + + function hideResultsNow() { + var wasVisible = select.visible(); + select.hide(); + clearTimeout(timeout); + stopLoading(); + if (options.mustMatch) { + // call search and run callback + $input.search( + function (result){ + // if no value found, clear the input box + if( !result ) { + if (options.multiple) { + var words = trimWords($input.val()).slice(0, -1); + $input.val( words.join(options.multipleSeparator) + (words.length ? options.multipleSeparator : "") ); + } + else { + $input.val( "" ); + $input.trigger("result", null); + } + } + } + ); + } + }; + + function receiveData(q, data) { + if ( data && data.length && hasFocus ) { + stopLoading(); + select.display(data, q); + autoFill(q, data[0].value); + select.show(); + } else { + hideResultsNow(); + } + }; + + function request(term, success, failure) { + if (!options.matchCase) + term = term.toLowerCase(); + var data = cache.load(term); + // recieve the cached data + if (data && data.length) { + success(term, data); + // if an AJAX url has been supplied, try loading the data now + } else if( (typeof options.url == "string") && (options.url.length > 0) ){ + + var extraParams = { + timestamp: +new Date() + }; + $.each(options.extraParams, function(key, param) { + extraParams[key] = typeof param == "function" ? param() : param; + }); + + $.ajax({ + // try to leverage ajaxQueue plugin to abort previous requests + mode: "abort", + // limit abortion to this input + port: "autocomplete" + input.name, + dataType: options.dataType, + url: options.url, + data: $.extend({ + q: lastWord(term), + limit: options.max + }, extraParams), + success: function(data) { + var parsed = options.parse && options.parse(data) || parse(data); + cache.add(term, parsed); + success(term, parsed); + } + }); + } else { + // if we have a failure, we need to empty the list -- this prevents the the [TAB] key from selecting the last successful match + select.emptyList(); + failure(term); + } + }; + + function parse(data) { + var parsed = []; + var rows = data.split("\n"); + for (var i=0; i < rows.length; i++) { + var row = $.trim(rows[i]); + if (row) { + row = row.split("|"); + parsed[parsed.length] = { + data: row, + value: row[0], + result: options.formatResult && options.formatResult(row, row[0]) || row[0] + }; + } + } + return parsed; + }; + + function stopLoading() { + $input.removeClass(options.loadingClass); + }; + +}; + +$.Autocompleter.defaults = { + inputClass: "ac_input", + resultsClass: "ac_results", + loadingClass: "ac_loading", + minChars: 1, + delay: 400, + matchCase: false, + matchSubset: true, + matchContains: false, + cacheLength: 10, + max: 100, + mustMatch: false, + extraParams: {}, + selectFirst: true, + formatItem: function(row) { return row[0]; }, + formatMatch: null, + autoFill: false, + width: 0, + multiple: false, + multipleSeparator: ", ", + highlight: function(value, term) { + return value.replace(new RegExp("(?![^&;]+;)(?!<[^<>]*)(" + term.replace(/([\^\$\(\)\[\]\{\}\*\.\+\?\|\\])/gi, "\\$1") + ")(?![^<>]*>)(?![^&;]+;)", "gi"), "$1"); + }, + scroll: true, + scrollHeight: 180 +}; + +$.Autocompleter.Cache = function(options) { + + var data = {}; + var length = 0; + + function matchSubset(s, sub) { + if (!options.matchCase) + s = s.toLowerCase(); + var i = s.indexOf(sub); + if (options.matchContains == "word"){ + i = s.toLowerCase().search("\\b" + sub.toLowerCase()); + } + if (i == -1) return false; + return i == 0 || options.matchContains; + }; + + function add(q, value) { + if (length > options.cacheLength){ + flush(); + } + if (!data[q]){ + length++; + } + data[q] = value; + } + + function populate(){ + if( !options.data ) return false; + // track the matches + var stMatchSets = {}, + nullData = 0; + + // no url was specified, we need to adjust the cache length to make sure it fits the local data store + if( !options.url ) options.cacheLength = 1; + + // track all options for minChars = 0 + stMatchSets[""] = []; + + // loop through the array and create a lookup structure + for ( var i = 0, ol = options.data.length; i < ol; i++ ) { + var rawValue = options.data[i]; + // if rawValue is a string, make an array otherwise just reference the array + rawValue = (typeof rawValue == "string") ? [rawValue] : rawValue; + + var value = options.formatMatch(rawValue, i+1, options.data.length); + if ( value === false ) + continue; + + var firstChar = value.charAt(0).toLowerCase(); + // if no lookup array for this character exists, look it up now + if( !stMatchSets[firstChar] ) + stMatchSets[firstChar] = []; + + // if the match is a string + var row = { + value: value, + data: rawValue, + result: options.formatResult && options.formatResult(rawValue) || value + }; + + // push the current match into the set list + stMatchSets[firstChar].push(row); + + // keep track of minChars zero items + if ( nullData++ < options.max ) { + stMatchSets[""].push(row); + } + }; + + // add the data items to the cache + $.each(stMatchSets, function(i, value) { + // increase the cache size + options.cacheLength++; + // add to the cache + add(i, value); + }); + } + + // populate any existing data + setTimeout(populate, 25); + + function flush(){ + data = {}; + length = 0; + } + + return { + flush: flush, + add: add, + populate: populate, + load: function(q) { + if (!options.cacheLength || !length) + return null; + /* + * if dealing w/local data and matchContains than we must make sure + * to loop through all the data collections looking for matches + */ + if( !options.url && options.matchContains ){ + // track all matches + var csub = []; + // loop through all the data grids for matches + for( var k in data ){ + // don't search through the stMatchSets[""] (minChars: 0) cache + // this prevents duplicates + if( k.length > 0 ){ + var c = data[k]; + $.each(c, function(i, x) { + // if we've got a match, add it to the array + if (matchSubset(x.value, q)) { + csub.push(x); + } + }); + } + } + return csub; + } else + // if the exact item exists, use it + if (data[q]){ + return data[q]; + } else + if (options.matchSubset) { + for (var i = q.length - 1; i >= options.minChars; i--) { + var c = data[q.substr(0, i)]; + if (c) { + var csub = []; + $.each(c, function(i, x) { + if (matchSubset(x.value, q)) { + csub[csub.length] = x; + } + }); + return csub; + } + } + } + return null; + } + }; +}; + +$.Autocompleter.Select = function (options, input, select, config) { + var CLASSES = { + ACTIVE: "ac_over" + }; + + var listItems, + active = -1, + data, + term = "", + needsInit = true, + element, + list; + + // Create results + function init() { + if (!needsInit) + return; + element = $("
") + .hide() + .addClass(options.resultsClass) + .css("position", "absolute") + .appendTo(document.body); + + list = $("
    ").appendTo(element).mouseover( function(event) { + if(target(event).nodeName && target(event).nodeName.toUpperCase() == 'LI') { + active = $("li", list).removeClass(CLASSES.ACTIVE).index(target(event)); + $(target(event)).addClass(CLASSES.ACTIVE); + } + }).click(function(event) { + $(target(event)).addClass(CLASSES.ACTIVE); + select(); + // TODO provide option to avoid setting focus again after selection? useful for cleanup-on-focus + input.focus(); + return false; + }).mousedown(function() { + config.mouseDownOnSelect = true; + }).mouseup(function() { + config.mouseDownOnSelect = false; + }); + + if( options.width > 0 ) + element.css("width", options.width); + + needsInit = false; + } + + function target(event) { + var element = event.target; + while(element && element.tagName != "LI") + element = element.parentNode; + // more fun with IE, sometimes event.target is empty, just ignore it then + if(!element) + return []; + return element; + } + + function moveSelect(step) { + listItems.slice(active, active + 1).removeClass(CLASSES.ACTIVE); + movePosition(step); + var activeItem = listItems.slice(active, active + 1).addClass(CLASSES.ACTIVE); + if(options.scroll) { + var offset = 0; + listItems.slice(0, active).each(function() { + offset += this.offsetHeight; + }); + if((offset + activeItem[0].offsetHeight - list.scrollTop()) > list[0].clientHeight) { + list.scrollTop(offset + activeItem[0].offsetHeight - list.innerHeight()); + } else if(offset < list.scrollTop()) { + list.scrollTop(offset); + } + } + }; + + function movePosition(step) { + active += step; + if (active < 0) { + active = listItems.size() - 1; + } else if (active >= listItems.size()) { + active = 0; + } + } + + function limitNumberOfItems(available) { + return options.max && options.max < available + ? options.max + : available; + } + + function fillList() { + list.empty(); + var max = limitNumberOfItems(data.length); + for (var i=0; i < max; i++) { + if (!data[i]) + continue; + var formatted = options.formatItem(data[i].data, i+1, max, data[i].value, term); + if ( formatted === false ) + continue; + var li = $("
  • ").html( options.highlight(formatted, term) ).addClass(i%2 == 0 ? "ac_even" : "ac_odd").appendTo(list)[0]; + $.data(li, "ac_data", data[i]); + } + listItems = list.find("li"); + if ( options.selectFirst ) { + listItems.slice(0, 1).addClass(CLASSES.ACTIVE); + active = 0; + } + // apply bgiframe if available + if ( $.fn.bgiframe ) + list.bgiframe(); + } + + return { + display: function(d, q) { + init(); + data = d; + term = q; + fillList(); + }, + next: function() { + moveSelect(1); + }, + prev: function() { + moveSelect(-1); + }, + pageUp: function() { + if (active != 0 && active - 8 < 0) { + moveSelect( -active ); + } else { + moveSelect(-8); + } + }, + pageDown: function() { + if (active != listItems.size() - 1 && active + 8 > listItems.size()) { + moveSelect( listItems.size() - 1 - active ); + } else { + moveSelect(8); + } + }, + hide: function() { + element && element.hide(); + listItems && listItems.removeClass(CLASSES.ACTIVE); + active = -1; + }, + visible : function() { + return element && element.is(":visible"); + }, + current: function() { + return this.visible() && (listItems.filter("." + CLASSES.ACTIVE)[0] || options.selectFirst && listItems[0]); + }, + show: function() { + var offset = $(input).offset(); + element.css({ + width: typeof options.width == "string" || options.width > 0 ? options.width : $(input).innerWidth(), + top: offset.top + input.offsetHeight, + left: offset.left + }).show(); + options.show(element); + if(options.scroll) { + list.scrollTop(0); + list.css({ + maxHeight: options.scrollHeight, + overflow: 'auto' + }); + + if($.browser.msie && typeof document.body.style.maxHeight === "undefined") { + var listHeight = 0; + listItems.each(function() { + listHeight += this.offsetHeight; + }); + var scrollbarsVisible = listHeight > options.scrollHeight; + list.css('height', scrollbarsVisible ? options.scrollHeight : listHeight ); + if (!scrollbarsVisible) { + // IE doesn't recalculate width when scrollbar disappears + listItems.width( list.width() - parseInt(listItems.css("padding-left")) - parseInt(listItems.css("padding-right")) ); + } + } + + } + }, + selected: function() { + var selected = listItems && listItems.filter("." + CLASSES.ACTIVE).removeClass(CLASSES.ACTIVE); + return selected && selected.length && $.data(selected[0], "ac_data"); + }, + emptyList: function (){ + list && list.empty(); + }, + unbind: function() { + element && element.remove(); + } + }; +}; + +$.fn.selection = function(start, end) { + if (start !== undefined) { + return this.each(function() { + if( this.createTextRange ){ + var selRange = this.createTextRange(); + if (end === undefined || start == end) { + selRange.move("character", start); + selRange.select(); + } else { + selRange.collapse(true); + selRange.moveStart("character", start); + selRange.moveEnd("character", end); + selRange.select(); + } + } else if( this.setSelectionRange ){ + this.setSelectionRange(start, end); + } else if( this.selectionStart ){ + this.selectionStart = start; + this.selectionEnd = end; + } + }); + } + var field = this[0]; + if ( field.createTextRange ) { + var range = document.selection.createRange(), + orig = field.value, + teststring = "<->", + textLength = range.text.length; + range.text = teststring; + var caretAt = field.value.indexOf(teststring); + field.value = orig; + this.selection(caretAt, caretAt + textLength); + return { + start: caretAt, + end: caretAt + textLength + } + } else if( field.selectionStart !== undefined ){ + return { + start: field.selectionStart, + end: field.selectionEnd + } + } +}; + +})(jQuery); \ No newline at end of file diff --git a/apigen/templates/woodocs/js/jquery.cookie.js b/apigen/templates/woodocs/js/jquery.cookie.js new file mode 100644 index 00000000000..6df1faca25f --- /dev/null +++ b/apigen/templates/woodocs/js/jquery.cookie.js @@ -0,0 +1,96 @@ +/** + * Cookie plugin + * + * Copyright (c) 2006 Klaus Hartl (stilbuero.de) + * Dual licensed under the MIT and GPL licenses: + * http://www.opensource.org/licenses/mit-license.php + * http://www.gnu.org/licenses/gpl.html + * + */ + +/** + * Create a cookie with the given name and value and other optional parameters. + * + * @example $.cookie('the_cookie', 'the_value'); + * @desc Set the value of a cookie. + * @example $.cookie('the_cookie', 'the_value', { expires: 7, path: '/', domain: 'jquery.com', secure: true }); + * @desc Create a cookie with all available options. + * @example $.cookie('the_cookie', 'the_value'); + * @desc Create a session cookie. + * @example $.cookie('the_cookie', null); + * @desc Delete a cookie by passing null as value. Keep in mind that you have to use the same path and domain + * used when the cookie was set. + * + * @param String name The name of the cookie. + * @param String value The value of the cookie. + * @param Object options An object literal containing key/value pairs to provide optional cookie attributes. + * @option Number|Date expires Either an integer specifying the expiration date from now on in days or a Date object. + * If a negative value is specified (e.g. a date in the past), the cookie will be deleted. + * If set to null or omitted, the cookie will be a session cookie and will not be retained + * when the the browser exits. + * @option String path The value of the path atribute of the cookie (default: path of page that created the cookie). + * @option String domain The value of the domain attribute of the cookie (default: domain of page that created the cookie). + * @option Boolean secure If true, the secure attribute of the cookie will be set and the cookie transmission will + * require a secure protocol (like HTTPS). + * @type undefined + * + * @name $.cookie + * @cat Plugins/Cookie + * @author Klaus Hartl/klaus.hartl@stilbuero.de + */ + +/** + * Get the value of a cookie with the given name. + * + * @example $.cookie('the_cookie'); + * @desc Get the value of a cookie. + * + * @param String name The name of the cookie. + * @return The value of the cookie. + * @type String + * + * @name $.cookie + * @cat Plugins/Cookie + * @author Klaus Hartl/klaus.hartl@stilbuero.de + */ +jQuery.cookie = function(name, value, options) { + if (typeof value != 'undefined') { // name and value given, set cookie + options = options || {}; + if (value === null) { + value = ''; + options.expires = -1; + } + var expires = ''; + if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) { + var date; + if (typeof options.expires == 'number') { + date = new Date(); + date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000)); + } else { + date = options.expires; + } + expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE + } + // CAUTION: Needed to parenthesize options.path and options.domain + // in the following expressions, otherwise they evaluate to undefined + // in the packed version for some reason... + var path = options.path ? '; path=' + (options.path) : ''; + var domain = options.domain ? '; domain=' + (options.domain) : ''; + var secure = options.secure ? '; secure' : ''; + document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join(''); + } else { // only name given, get cookie + var cookieValue = null; + if (document.cookie && document.cookie != '') { + var cookies = document.cookie.split(';'); + for (var i = 0; i < cookies.length; i++) { + var cookie = jQuery.trim(cookies[i]); + // Does this cookie string begin with the name we want? + if (cookie.substring(0, name.length + 1) == (name + '=')) { + cookieValue = decodeURIComponent(cookie.substring(name.length + 1)); + break; + } + } + } + return cookieValue; + } +}; \ No newline at end of file diff --git a/apigen/templates/woodocs/js/jquery.min.js b/apigen/templates/woodocs/js/jquery.min.js new file mode 100644 index 00000000000..3ca5e0f5dee --- /dev/null +++ b/apigen/templates/woodocs/js/jquery.min.js @@ -0,0 +1,4 @@ +/*! jQuery v1.7 jquery.com | jquery.org/license */ +(function(a,b){function cA(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cx(a){if(!cm[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){cn||(cn=c.createElement("iframe"),cn.frameBorder=cn.width=cn.height=0),b.appendChild(cn);if(!co||!cn.createElement)co=(cn.contentWindow||cn.contentDocument).document,co.write((c.compatMode==="CSS1Compat"?"":"")+""),co.close();d=co.createElement(a),co.body.appendChild(d),e=f.css(d,"display"),b.removeChild(cn)}cm[a]=e}return cm[a]}function cw(a,b){var c={};f.each(cs.concat.apply([],cs.slice(0,b)),function(){c[this]=a});return c}function cv(){ct=b}function cu(){setTimeout(cv,0);return ct=f.now()}function cl(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ck(){try{return new a.XMLHttpRequest}catch(b){}}function ce(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g0){c!=="border"&&f.each(e,function(){c||(d-=parseFloat(f.css(a,"padding"+this))||0),c==="margin"?d+=parseFloat(f.css(a,c+this))||0:d-=parseFloat(f.css(a,"border"+this+"Width"))||0});return d+"px"}d=bB(a,b,b);if(d<0||d==null)d=a.style[b]||0;d=parseFloat(d)||0,c&&f.each(e,function(){d+=parseFloat(f.css(a,"padding"+this))||0,c!=="padding"&&(d+=parseFloat(f.css(a,"border"+this+"Width"))||0),c==="margin"&&(d+=parseFloat(f.css(a,c+this))||0)});return d+"px"}function br(a,b){b.src?f.ajax({url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(bi,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)}function bq(a){var b=(a.nodeName||"").toLowerCase();b==="input"?bp(a):b!=="script"&&typeof a.getElementsByTagName!="undefined"&&f.grep(a.getElementsByTagName("input"),bp)}function bp(a){if(a.type==="checkbox"||a.type==="radio")a.defaultChecked=a.checked}function bo(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bn(a,b){var c;if(b.nodeType===1){b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase();if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(f.expando)}}function bm(a,b){if(b.nodeType===1&&!!f.hasData(a)){var c,d,e,g=f._data(a),h=f._data(b,g),i=g.events;if(i){delete h.handle,h.events={};for(c in i)for(d=0,e=i[c].length;d=0===c})}function V(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function N(){return!0}function M(){return!1}function n(a,b,c){var d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&&setTimeout(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function m(a){for(var b in a){if(b==="data"&&f.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function l(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?parseFloat(d):j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else d=b}return d}function h(a){var b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/\d/,n=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,o=/^[\],:{}\s]*$/,p=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,q=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,r=/(?:^|:|,)(?:\s*\[)+/g,s=/(webkit)[ \/]([\w.]+)/,t=/(opera)(?:.*version)?[ \/]([\w.]+)/,u=/(msie) ([\w.]+)/,v=/(mozilla)(?:.*? rv:([\w.]+))?/,w=/-([a-z]|[0-9])/ig,x=/^-ms-/,y=function(a,b){return(b+"").toUpperCase()},z=d.userAgent,A,B,C,D=Object.prototype.toString,E=Object.prototype.hasOwnProperty,F=Array.prototype.push,G=Array.prototype.slice,H=String.prototype.trim,I=Array.prototype.indexOf,J={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=n.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.7",length:0,size:function(){return this.length},toArray:function(){return G.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?F.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),B.add(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(G.apply(this,arguments),"slice",G.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:F,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j0)return;B.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").unbind("ready")}},bindReady:function(){if(!B){B=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",C,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",C),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&K()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNumeric:function(a){return a!=null&&m.test(a)&&!isNaN(a)},type:function(a){return a==null?String(a):J[D.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!E.call(a,"constructor")&&!E.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||E.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw a},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(o.test(b.replace(p,"@").replace(q,"]").replace(r,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(x,"ms-").replace(w,y)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i1?i.call(arguments,0):b,j.notifyWith(k,e)}}function l(a){return function(c){b[a]=arguments.length>1?i.call(arguments,0):c,--g||j.resolveWith(j,b)}}var b=i.call(arguments,0),c=0,d=b.length,e=Array(d),g=d,h=d,j=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred(),k=j.promise();if(d>1){for(;c
    a",d=a.getElementsByTagName("*"),e=a.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=a.getElementsByTagName("input")[0],k={leadingWhitespace:a.firstChild.nodeType===3,tbody:!a.getElementsByTagName("tbody").length,htmlSerialize:!!a.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,unknownElems:!!a.getElementsByTagName("nav").length,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:a.className!=="t",enctype:!!c.createElement("form").enctype,submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,k.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,k.optDisabled=!h.disabled;try{delete a.test}catch(v){k.deleteExpando=!1}!a.addEventListener&&a.attachEvent&&a.fireEvent&&(a.attachEvent("onclick",function(){k.noCloneEvent=!1}),a.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),k.radioValue=i.value==="t",i.setAttribute("checked","checked"),a.appendChild(i),l=c.createDocumentFragment(),l.appendChild(a.lastChild),k.checkClone=l.cloneNode(!0).cloneNode(!0).lastChild.checked,a.innerHTML="",a.style.width=a.style.paddingLeft="1px",m=c.getElementsByTagName("body")[0],o=c.createElement(m?"div":"body"),p={visibility:"hidden",width:0,height:0,border:0,margin:0,background:"none"},m&&f.extend(p,{position:"absolute",left:"-999px",top:"-999px"});for(t in p)o.style[t]=p[t];o.appendChild(a),n=m||b,n.insertBefore(o,n.firstChild),k.appendChecked=i.checked,k.boxModel=a.offsetWidth===2,"zoom"in a.style&&(a.style.display="inline",a.style.zoom=1,k.inlineBlockNeedsLayout=a.offsetWidth===2,a.style.display="",a.innerHTML="
    ",k.shrinkWrapBlocks=a.offsetWidth!==2),a.innerHTML="
    t
    ",q=a.getElementsByTagName("td"),u=q[0].offsetHeight===0,q[0].style.display="",q[1].style.display="none",k.reliableHiddenOffsets=u&&q[0].offsetHeight===0,a.innerHTML="",c.defaultView&&c.defaultView.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",a.appendChild(j),k.reliableMarginRight=(parseInt((c.defaultView.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0);if(a.attachEvent)for(t in{submit:1,change:1,focusin:1})s="on"+t,u=s in a,u||(a.setAttribute(s,"return;"),u=typeof a[s]=="function"),k[t+"Bubbles"]=u;f(function(){var a,b,d,e,g,h,i=1,j="position:absolute;top:0;left:0;width:1px;height:1px;margin:0;",l="visibility:hidden;border:0;",n="style='"+j+"border:5px solid #000;padding:0;'",p="
    "+""+"
    ";m=c.getElementsByTagName("body")[0];!m||(a=c.createElement("div"),a.style.cssText=l+"width:0;height:0;position:static;top:0;margin-top:"+i+"px",m.insertBefore(a,m.firstChild),o=c.createElement("div"),o.style.cssText=j+l,o.innerHTML=p,a.appendChild(o),b=o.firstChild,d=b.firstChild,g=b.nextSibling.firstChild.firstChild,h={doesNotAddBorder:d.offsetTop!==5,doesAddBorderForTableAndCells:g.offsetTop===5},d.style.position="fixed",d.style.top="20px",h.fixedPosition=d.offsetTop===20||d.offsetTop===15,d.style.position=d.style.top="",b.style.overflow="hidden",b.style.position="relative",h.subtractsBorderForOverflowNotVisible=d.offsetTop===-5,h.doesNotIncludeMarginInBodyOffset=m.offsetTop!==i,m.removeChild(a),o=a=null,f.extend(k,h))}),o.innerHTML="",n.removeChild(o),o=l=g=h=m=j=a=i=null;return k}(),f.boxModel=f.support.boxModel;var j=/^(?:\{.*\}|\[.*\])$/,k=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!m(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i,j=f.expando,k=typeof c=="string",l=a.nodeType,m=l?f.cache:a,n=l?a[f.expando]:a[f.expando]&&f.expando,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[f.expando]=n=++f.uuid:n=f.expando),m[n]||(m[n]={},l||(m[n].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?m[n]=f.extend(m[n],c):m[n].data=f.extend(m[n].data,c);g=h=m[n],e||(h.data||(h.data={}),h=h.data),d!==b&&(h[f.camelCase(c)]=d);if(o&&!h[c])return g.events;k?(i=h[c],i==null&&(i=h[f.camelCase(c)])):i=h;return i}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e,g,h=f.expando,i=a.nodeType,j=i?f.cache:a,k=i?a[f.expando]:f.expando;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)?b=b:b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" "));for(e=0,g=b.length;e-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];if(!arguments.length){if(g){c=f.valHooks[g.nodeName.toLowerCase()]||f.valHooks[g.type];if(c&&"get"in c&&(d=c.get(g,"value"))!==b)return d;d=g.value;return typeof d=="string"?d.replace(q,""):d==null?"":d}return b}e=f.isFunction(a);return this.each(function(d){var g=f(this),h;if(this.nodeType===1){e?h=a.call(this,d,g.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,g=a.selectedIndex,h=[],i=a.options,j=a.type==="select-one";if(g<0)return null;c=j?g:0,d=j?g+1:i.length;for(;c=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,d,e){var g,h,i,j=a.nodeType;if(!a||j===3||j===8||j===2)return b;if(e&&c in f.attrFn)return f(a)[c](d);if(!("getAttribute"in a))return f.prop(a,c,d);i=j!==1||!f.isXMLDoc(a),i&&(c=c.toLowerCase(),h=f.attrHooks[c]||(u.test(c)?x:w));if(d!==b){if(d===null){f.removeAttr(a,c);return b}if(h&&"set"in h&&i&&(g=h.set(a,d,c))!==b)return g;a.setAttribute(c,""+d);return d}if(h&&"get"in h&&i&&(g=h.get(a,c))!==null)return g;g=a.getAttribute(c);return g===null?b:g},removeAttr:function(a,b){var c,d,e,g,h=0;if(a.nodeType===1){d=(b||"").split(p),g=d.length;for(;h=0}})});var z=/\.(.*)$/,A=/^(?:textarea|input|select)$/i,B=/\./g,C=/ /g,D=/[^\w\s.|`]/g,E=/^([^\.]*)?(?:\.(.+))?$/,F=/\bhover(\.\S+)?/,G=/^key/,H=/^(?:mouse|contextmenu)|click/,I=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,J=function(a){var b=I.exec(a);b&& +(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},K=function(a,b){return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||a.id===b[2])&&(!b[3]||b[3].test(a.className))},L=function(a){return f.event.special.hover?a:a.replace(F,"mouseenter$1 mouseleave$1")};f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3||a.nodeType===8||!c||!d||!(h=f._data(a)))){d.handler&&(p=d,d=p.handler),d.guid||(d.guid=f.guid++),j=h.events,j||(h.events=j={}),i=h.handle,i||(h.handle=i=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.dispatch.apply(i.elem,arguments):b},i.elem=a),c=L(c).split(" ");for(k=0;k=0&&(h=h.slice(0,-1),k=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if((!e||f.event.customEvent[h])&&!f.event.global[h])return;c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.isTrigger=!0,c.exclusive=k,c.namespace=i.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)"):null,o=h.indexOf(":")<0?"on"+h:"",(g||!e)&&c.preventDefault();if(!e){j=f.cache;for(l in j)j[l].events&&j[l].events[h]&&f.event.trigger(c,d,j[l].handle.elem,!0);return}c.result=b,c.target||(c.target=e),d=d!=null?f.makeArray(d):[],d.unshift(c),p=f.event.special[h]||{};if(p.trigger&&p.trigger.apply(e,d)===!1)return;r=[[e,p.bindType||h]];if(!g&&!p.noBubble&&!f.isWindow(e)){s=p.delegateType||h,n=null;for(m=e.parentNode;m;m=m.parentNode)r.push([m,s]),n=m;n&&n===e.ownerDocument&&r.push([n.defaultView||n.parentWindow||a,s])}for(l=0;l=0:t===b&&(t=o[s]=r.quick?K(m,r.quick):f(m).is(s)),t&&q.push(r);q.length&&j.push({elem:m,matches:q})}d.length>e&&j.push({elem:this,matches:d.slice(e)});for(k=0;k0?this.bind(b,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),G.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),H.test(b)&&(f.event.fixHooks[b]=f.event.mouseHooks)}),function(){function x(a,b,c,e,f,g){for(var h=0,i=e.length;h0){k=j;break}}j=j[a]}e[h]=k}}}function w(a,b,c,e,f,g){for(var h=0,i=e.length;h+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d="sizcache"+(Math.random()+"").replace(".",""),e=0,g=Object.prototype.toString,h=!1,i=!0,j=/\\/g,k=/\r\n/g,l=/\W/;[0,0].sort(function(){i=!1;return 0});var m=function(b,d,e,f){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return e;var i,j,k,l,n,q,r,t,u=!0,v=m.isXML(d),w=[],x=b;do{a.exec(""),i=a.exec(x);if(i){x=i[3],w.push(i[1]);if(i[2]){l=i[3];break}}}while(i);if(w.length>1&&p.exec(b))if(w.length===2&&o.relative[w[0]])j=y(w[0]+w[1],d,f);else{j=o.relative[w[0]]?[d]:m(w.shift(),d);while(w.length)b=w.shift(),o.relative[b]&&(b+=w.shift()),j=y(b,j,f)}else{!f&&w.length>1&&d.nodeType===9&&!v&&o.match.ID.test(w[0])&&!o.match.ID.test(w[w.length-1])&&(n=m.find(w.shift(),d,v),d=n.expr?m.filter(n.expr,n.set)[0]:n.set[0]);if(d){n=f?{expr:w.pop(),set:s(f)}:m.find(w.pop(),w.length===1&&(w[0]==="~"||w[0]==="+")&&d.parentNode?d.parentNode:d,v),j=n.expr?m.filter(n.expr,n.set):n.set,w.length>0?k=s(j):u=!1;while(w.length)q=w.pop(),r=q,o.relative[q]?r=w.pop():q="",r==null&&(r=d),o.relative[q](k,r,v)}else k=w=[]}k||(k=j),k||m.error(q||b);if(g.call(k)==="[object Array]")if(!u)e.push.apply(e,k);else if(d&&d.nodeType===1)for(t=0;k[t]!=null;t++)k[t]&&(k[t]===!0||k[t].nodeType===1&&m.contains(d,k[t]))&&e.push(j[t]);else for(t=0;k[t]!=null;t++)k[t]&&k[t].nodeType===1&&e.push(j[t]);else s(k,e);l&&(m(l,h,e,f),m.uniqueSort(e));return e};m.uniqueSort=function(a){if(u){h=i,a.sort(u);if(h)for(var b=1;b0},m.find=function(a,b,c){var d,e,f,g,h,i;if(!a)return[];for(e=0,f=o.order.length;e":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!l.test(b)){b=b.toLowerCase();for(;e=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(j,"")},TAG:function(a,b){return a[1].replace(j,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||m.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&m.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(j,"");!f&&o.attrMap[g]&&(a[1]=o.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(j,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=m(b[3],null,null,c);else{var g=m.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(o.match.POS.test(b[0])||o.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!m(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return bc[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=o.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||n([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||!!a.nodeName&&a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=m.attr?m.attr(a,c):o.attrHandle[c]?o.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":!f&&m.attr?d!=null:f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=o.setFilters[e];if(f)return f(a,c,b,d)}}},p=o.match.POS,q=function(a,b){return"\\"+(b-0+1)};for(var r in o.match)o.match[r]=new RegExp(o.match[r].source+/(?![^\[]*\])(?![^\(]*\))/.source),o.leftMatch[r]=new RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[r].source.replace(/\\(\d+)/g,q));var s=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(t){s=function(a,b){var c=0,d=b||[];if(g.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var e=a.length;c",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(o.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},o.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(o.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(o.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=m,b=c.createElement("div"),d="__sizzle__";b.innerHTML="

    ";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){m=function(b,e,f,g){e=e||c;if(!g&&!m.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return s(e.getElementsByTagName(b),f);if(h[2]&&o.find.CLASS&&e.getElementsByClassName)return s(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return s([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return s([],f);if(i.id===h[3])return s([i],f)}try{return s(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var k=e,l=e.getAttribute("id"),n=l||d,p=e.parentNode,q=/^\s*[+~]/.test(b);l?n=n.replace(/'/g,"\\$&"):e.setAttribute("id",n),q&&p&&(e=e.parentNode);try{if(!q||p)return s(e.querySelectorAll("[id='"+n+"'] "+b),f)}catch(r){}finally{l||k.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)m[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}m.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!m.isXML(a))try{if(e||!o.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return m(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="
    ";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;o.order.splice(1,0,"CLASS"),o.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?m.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?m.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:m.contains=function(){return!1},m.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var y=function(a,b,c){var d,e=[],f="",g=b.nodeType?[b]:b;while(d=o.match.PSEUDO.exec(a))f+=d[0],a=a.replace(o.match.PSEUDO,"");a=o.relative[a]?a+"*":a;for(var h=0,i=g.length;h0)for(h=g;h=0:f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h=1;while(g&&g.ownerDocument&&g!==b){for(d=0;d-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(V(c[0])||V(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c),g=S.call(arguments);O.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!U[a]?f.unique(e):e,(this.length>1||Q.test(d))&&P.test(a)&&(e=e.reverse());return this.pushStack(e,a,g.join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var Y="abbr article aside audio canvas datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",Z=/ jQuery\d+="(?:\d+|null)"/g,$=/^\s+/,_=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,ba=/<([\w:]+)/,bb=/",""],legend:[1,"
    ","
    "],thead:[1,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],col:[2,"","
    "],area:[1,"",""],_default:[0,"",""]},bk=X(c);bj.optgroup=bj.option,bj.tbody=bj.tfoot=bj.colgroup=bj.caption=bj.thead,bj.th=bj.td,f.support.htmlSerialize||(bj._default=[1,"div
    ","
    "]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){f(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after" +,arguments);a.push.apply(a,f(arguments[0]).toArray());return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(Z,""):null;if(typeof a=="string"&&!bd.test(a)&&(f.support.leadingWhitespace||!$.test(a))&&!bj[(ba.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(_,"<$1>");try{for(var c=0,d=this.length;c1&&l0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d=a.cloneNode(!0),e,g,h;if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bn(a,d),e=bo(a),g=bo(d);for(h=0;e[h];++h)g[h]&&bn(e[h],g[h])}if(b){bm(a,d);if(c){e=bo(a),g=bo(d);for(h=0;e[h];++h)bm(e[h],g[h])}}e=g=null;return d},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!bc.test(k))k=b.createTextNode(k);else{k=k.replace(_,"<$1>");var l=(ba.exec(k)||["",""])[1].toLowerCase(),m=bj[l]||bj._default,n=m[0],o=b.createElement("div");b===c?bk.appendChild(o):X(b).appendChild(o),o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=bb.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]===""&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&$.test(k)&&o.insertBefore(b.createTextNode($.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return bt.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNumeric(b)?"alpha(opacity="+b*100+")":"",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bs,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bs.test(g)?g.replace(bs,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bB(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bC=function(a,c){var d,e,g;c=c.replace(bu,"-$1").toLowerCase();if(!(e=a.ownerDocument.defaultView))return b;if(g=e.getComputedStyle(a,null))d=g.getPropertyValue(c),d===""&&!f.contains(a.ownerDocument.documentElement,a)&&(d=f.style(a,c));return d}),c.documentElement.currentStyle&&(bD=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f===null&&g&&(e=g[b])&&(f=e),!bv.test(f)&&bw.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f||0,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),bB=bC||bD,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style&&a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bF=/%20/g,bG=/\[\]$/,bH=/\r?\n/g,bI=/#.*$/,bJ=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bK=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bL=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bM=/^(?:GET|HEAD)$/,bN=/^\/\//,bO=/\?/,bP=/)<[^<]*)*<\/script>/gi,bQ=/^(?:select|textarea)/i,bR=/\s+/,bS=/([?&])_=[^&]*/,bT=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bU=f.fn.load,bV={},bW={},bX,bY,bZ=["*/"]+["*"];try{bX=e.href}catch(b$){bX=c.createElement("a"),bX.href="",bX=bX.href}bY=bT.exec(bX.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bU)return bU.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("
    ").append(c.replace(bP,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bQ.test(this.nodeName)||bK.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bH,"\r\n")}}):{name:b.name,value:c.replace(bH,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.bind(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?cb(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),cb(a,b);return a},ajaxSettings:{url:bX,isLocal:bL.test(bY[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bZ},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:b_(bV),ajaxTransport:b_(bW),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?cd(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=ce(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.fireWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f.Callbacks("once memory"),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bJ.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.add,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bI,"").replace(bN,bY[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bR),d.crossDomain==null&&(r=bT.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bY[1]&&r[2]==bY[2]&&(r[3]||(r[1]==="http:"?80:443))==(bY[3]||(bY[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),ca(bV,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bM.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bO.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bS,"$1_="+x);d.url=y+(y===d.url?(bO.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bZ+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=ca(bW,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){s<2?w(-1,z):f.error(z)}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)cc(g,a[g],c,e);return d.join("&").replace(bF,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cf=f.now(),cg=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cf++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(cg.test(b.url)||e&&cg.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(cg,l),b.url===j&&(e&&(k=k.replace(cg,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var ch=a.ActiveXObject?function(){for(var a in cj)cj[a](0,1)}:!1,ci=0,cj;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ck()||cl()}:ck,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,ch&&delete cj[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++ci,ch&&(cj||(cj={},f(a).unload(ch)),cj[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var cm={},cn,co,cp=/^(?:toggle|show|hide)$/,cq=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cr,cs=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],ct;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cw("show",3),a,b,c);for(var g=0,h=this.length;g=i.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),i.animatedProperties[this.prop]=!0;for(b in i.animatedProperties)i.animatedProperties[b]!==!0&&(g=!1);if(g){i.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){h.style["overflow"+b]=i.overflow[a]}),i.hide&&f(h).hide();if(i.hide||i.show)for(b in i.animatedProperties)f.style(h,b,i.orig[b]),f.removeData(h,"fxshow"+b,!0),f.removeData(h,"toggle"+b,!0);d=i.complete,d&&(i.complete=!1,d.call(h))}return!1}i.duration==Infinity?this.now=e:(c=e-this.startTime,this.state=c/i.duration,this.pos=f.easing[i.animatedProperties[this.prop]](this.state,c,0,1,i.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){var a,b=f.timers,c=0;for(;c-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cz.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cz.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cA(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cA(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a?a.style?parseFloat(f.css(a,d,"padding")):this[d]():null},f.fn["outer"+c]=function(a){var b=this[0];return b?b.style?parseFloat(f.css(b,d,a?"margin":"border")):this[d]():null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c],h=e.document.body;return e.document.compatMode==="CSS1Compat"&&g||h&&h["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var i=f.css(e,d),j=parseFloat(i);return f.isNumeric(j)?j:i}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f})(window); \ No newline at end of file diff --git a/apigen/templates/woodocs/js/jquery.sortElements.js b/apigen/templates/woodocs/js/jquery.sortElements.js new file mode 100644 index 00000000000..61f60de8bef --- /dev/null +++ b/apigen/templates/woodocs/js/jquery.sortElements.js @@ -0,0 +1,69 @@ +/** + * jQuery.fn.sortElements + * -------------- + * @author James Padolsey (http://james.padolsey.com) + * @version 0.11 + * @updated 18-MAR-2010 + * -------------- + * @param Function comparator: + * Exactly the same behaviour as [1,2,3].sort(comparator) + * + * @param Function getSortable + * A function that should return the element that is + * to be sorted. The comparator will run on the + * current collection, but you may want the actual + * resulting sort to occur on a parent or another + * associated element. + * + * E.g. $('td').sortElements(comparator, function(){ + * return this.parentNode; + * }) + * + * The
    ) will be sorted instead + * of the ",""],legend:[1,"
    ","
    "],thead:[1,"
    's parent (
    itself. + */ +jQuery.fn.sortElements = (function(){ + + var sort = [].sort; + + return function(comparator, getSortable) { + + getSortable = getSortable || function(){return this;}; + + var placements = this.map(function(){ + + var sortElement = getSortable.call(this), + parentNode = sortElement.parentNode, + + // Since the element itself will change position, we have + // to have some way of storing it's original position in + // the DOM. The easiest way is to have a 'flag' node: + nextSibling = parentNode.insertBefore( + document.createTextNode(''), + sortElement.nextSibling + ); + + return function() { + + if (parentNode === this) { + throw new Error( + "You can't sort elements if any one is a descendant of another." + ); + } + + // Insert before flag: + parentNode.insertBefore(this, nextSibling); + // Remove flag: + parentNode.removeChild(nextSibling); + + }; + + }); + + return sort.call(this, comparator).each(function(i){ + placements[i].call(getSortable.call(this)); + }); + + }; + +})(); \ No newline at end of file diff --git a/apigen/templates/woodocs/js/jquery.sprintf.js b/apigen/templates/woodocs/js/jquery.sprintf.js new file mode 100644 index 00000000000..2eed7fdd9c2 --- /dev/null +++ b/apigen/templates/woodocs/js/jquery.sprintf.js @@ -0,0 +1,8 @@ +/*! + * sprintf and vsprintf for jQuery + * somewhat based on http://jan.moesen.nu/code/javascript/sprintf-and-printf-in-javascript/ + * Copyright (c) 2008 Sabin Iacob (m0n5t3r) + * @license http://www.gnu.org/licenses/gpl.html + * @project jquery.sprintf + */ +(function(d){var a={b:function(e){return parseInt(e,10).toString(2)},c:function(e){return String.fromCharCode(parseInt(e,10))},d:function(e){return parseInt(e,10)},u:function(e){return Math.abs(e)},f:function(f,e){e=parseInt(e,10);f=parseFloat(f);if(isNaN(e&&f)){return NaN}return e&&f.toFixed(e)||f},o:function(e){return parseInt(e,10).toString(8)},s:function(e){return e},x:function(e){return(""+parseInt(e,10).toString(16)).toLowerCase()},X:function(e){return(""+parseInt(e,10).toString(16)).toUpperCase()}};var c=/%(?:(\d+)?(?:\.(\d+))?|\(([^)]+)\))([%bcdufosxX])/g;var b=function(f){if(f.length==1&&typeof f[0]=="object"){f=f[0];return function(i,h,k,j,g,m,l){return a[g](f[j])}}else{var e=0;return function(i,h,k,j,g,m,l){if(g=="%"){return"%"}return a[g](f[e++],k)}}};d.extend({sprintf:function(f){var e=Array.apply(null,arguments).slice(1);return f.replace(c,b(e))},vsprintf:function(f,e){return f.replace(c,b(e))}})})(jQuery); diff --git a/apigen/templates/woodocs/js/main.js b/apigen/templates/woodocs/js/main.js new file mode 100644 index 00000000000..3854e1896f0 --- /dev/null +++ b/apigen/templates/woodocs/js/main.js @@ -0,0 +1,292 @@ +/*! + * ApiGen 2.8.0 - API documentation generator for PHP 5.3+ + * + * Copyright (c) 2010-2011 David Grudl (http://davidgrudl.com) + * Copyright (c) 2011-2012 Jaroslav Hanslík (https://github.com/kukulich) + * Copyright (c) 2011-2012 Ondřej Nešpor (https://github.com/Andrewsville) + * Copyright (c) 2012 Olivier Laviale (https://github.com/olvlvl) + * + * For the full copyright and license information, please view + * the file LICENSE.md that was distributed with this source code. + */ + +$(function() { + var $document = $(document); + var $navigation = $('#navigation'); + var navigationHeight = $('#navigation').height(); + var $left = $('#left'); + var $right = $('#right'); + var $rightInner = $('#rightInner'); + var $splitter = $('#splitter'); + var $groups = $('#groups'); + var $content = $('#content'); + + // Menu + + // Hide deep packages and namespaces + $('ul span', $groups).click(function(event) { + event.preventDefault(); + event.stopPropagation(); + $(this) + .toggleClass('collapsed') + .parent() + .next('ul') + .toggleClass('collapsed'); + }).click(); + + $active = $('ul li.active', $groups); + if ($active.length > 0) { + // Open active + $('> a > span', $active).click(); + } else { + $main = $('> ul > li.main', $groups); + if ($main.length > 0) { + // Open first level of the main project + $('> a > span', $main).click(); + } else { + // Open first level of all + $('> ul > li > a > span', $groups).click(); + } + } + + // Content + + // Search autocompletion + var autocompleteFound = false; + var autocompleteFiles = {'c': 'class', 'co': 'constant', 'f': 'function', 'm': 'class', 'mm': 'class', 'p': 'class', 'mp': 'class', 'cc': 'class'}; + var $search = $('#search input[name=q]'); + $search + .autocomplete(ApiGen.elements, { + matchContains: true, + scrollHeight: 200, + max: 20, + formatItem: function(data) { + return data[1].replace(/^(.+\\)(.+)$/, '$1$2'); + }, + formatMatch: function(data) { + return data[1]; + }, + formatResult: function(data) { + return data[1]; + }, + show: function($list) { + var $items = $('li span', $list); + var maxWidth = Math.max.apply(null, $items.map(function() { + return $(this).width(); + })); + // 10px padding + $list.width(Math.max(maxWidth + 10, $search.innerWidth())); + } + }).result(function(event, data) { + autocompleteFound = true; + var location = window.location.href.split('/'); + location.pop(); + var parts = data[1].split(/::|$/); + var file = $.sprintf(ApiGen.config.templates.main[autocompleteFiles[data[0]]].filename, parts[0].replace(/\(\)/, '').replace(/[^\w]/g, '.')); + if (parts[1]) { + file += '#' + ('mm' === data[0] || 'mp' === data[0] ? 'm' : '') + parts[1].replace(/([\w]+)\(\)/, '_$1'); + } + location.push(file); + window.location = location.join('/'); + + // Workaround for Opera bug + $(this).closest('form').attr('action', location.join('/')); + }).closest('form') + .submit(function() { + var query = $search.val(); + if ('' === query) { + return false; + } + + var label = $('#search input[name=more]').val(); + if (!autocompleteFound && label && -1 === query.indexOf('more:')) { + $search.val(query + ' more:' + label); + } + + return !autocompleteFound && '' !== $('#search input[name=cx]').val(); + }); + + // Save natural order + $('table.summary tr[data-order]', $content).each(function(index) { + do { + index = '0' + index; + } while (index.length < 3); + $(this).attr('data-order-natural', index); + }); + + // Switch between natural and alphabetical order + var $caption = $('table.summary', $content) + .filter(':has(tr[data-order])') + .prev('h2'); + $caption + .click(function() { + var $this = $(this); + var order = $this.data('order') || 'natural'; + order = 'natural' === order ? 'alphabetical' : 'natural'; + $this.data('order', order); + $.cookie('order', order, {expires: 365}); + var attr = 'alphabetical' === order ? 'data-order' : 'data-order-natural'; + $this + .next('table') + .find('tr').sortElements(function(a, b) { + return $(a).attr(attr) > $(b).attr(attr) ? 1 : -1; + }); + return false; + }) + .addClass('switchable') + .attr('title', 'Switch between natural and alphabetical order'); + if ((null === $.cookie('order') && 'alphabetical' === ApiGen.config.options.elementsOrder) || 'alphabetical' === $.cookie('order')) { + $caption.click(); + } + + // Open details + if (ApiGen.config.options.elementDetailsCollapsed) { + $('tr', $content).filter(':has(.detailed)') + .click(function() { + var $this = $(this); + $('.short', $this).hide(); + $('.detailed', $this).show(); + }); + } + + // Splitter + var splitterWidth = $splitter.width(); + function setSplitterPosition(position) + { + $left.width(position); + $right.css('margin-left', position + splitterWidth); + $splitter.css('left', position); + } + function setNavigationPosition() + { + var height = $(window).height() - navigationHeight; + $left.height(height); + $splitter.height(height); + $right.height(height); + } + function setContentWidth() + { + var width = $rightInner.width(); + $rightInner + .toggleClass('medium', width <= 960) + .toggleClass('small', width <= 650); + } + $splitter.mousedown(function() { + $splitter.addClass('active'); + + $document.mousemove(function(event) { + if (event.pageX >= 230 && $document.width() - event.pageX >= 600 + splitterWidth) { + setSplitterPosition(event.pageX); + setContentWidth(); + } + }); + + $() + .add($splitter) + .add($document) + .mouseup(function() { + $splitter + .removeClass('active') + .unbind('mouseup'); + $document + .unbind('mousemove') + .unbind('mouseup'); + + $.cookie('splitter', parseInt($splitter.css('left')), {expires: 365}); + }); + + return false; + }); + var splitterPosition = $.cookie('splitter'); + if (null !== splitterPosition) { + setSplitterPosition(parseInt(splitterPosition)); + } + setNavigationPosition(); + setContentWidth(); + $(window) + .resize(setNavigationPosition) + .resize(setContentWidth); + + // Select selected lines + var matches = window.location.hash.substr(1).match(/^\d+(?:-\d+)?(?:,\d+(?:-\d+)?)*$/); + if (null !== matches) { + var lists = matches[0].split(','); + for (var i = 0; i < lists.length; i++) { + var lines = lists[i].split('-'); + lines[1] = lines[1] || lines[0]; + for (var j = lines[0]; j <= lines[1]; j++) { + $('#' + j).addClass('selected'); + } + } + + var $firstLine = $('#' + parseInt(matches[0])); + if ($firstLine.length > 0) { + $right.scrollTop($firstLine.offset().top); + } + } + + // Save selected lines + var lastLine; + $('a.l').click(function(event) { + event.preventDefault(); + + var $selectedLine = $(this).parent(); + var selectedLine = parseInt($selectedLine.attr('id')); + + if (event.shiftKey) { + if (lastLine) { + for (var i = Math.min(selectedLine, lastLine); i <= Math.max(selectedLine, lastLine); i++) { + $('#' + i).addClass('selected'); + } + } else { + $selectedLine.addClass('selected'); + } + } else if (event.ctrlKey) { + $selectedLine.toggleClass('selected'); + } else { + var $selected = $('.l.selected') + .not($selectedLine) + .removeClass('selected'); + if ($selected.length > 0) { + $selectedLine.addClass('selected'); + } else { + $selectedLine.toggleClass('selected'); + } + } + + lastLine = $selectedLine.hasClass('selected') ? selectedLine : null; + + // Update hash + var lines = $('.l.selected') + .map(function() { + return parseInt($(this).attr('id')); + }) + .get() + .sort(function(a, b) { + return a - b; + }); + + var hash = []; + var list = []; + for (var j = 0; j < lines.length; j++) { + if (0 === j && j + 1 === lines.length) { + hash.push(lines[j]); + } else if (0 === j) { + list[0] = lines[j]; + } else if (lines[j - 1] + 1 !== lines[j] && j + 1 === lines.length) { + hash.push(list.join('-')); + hash.push(lines[j]); + } else if (lines[j - 1] + 1 !== lines[j]) { + hash.push(list.join('-')); + list = [lines[j]]; + } else if (j + 1 === lines.length) { + list[1] = lines[j]; + hash.push(list.join('-')); + } else { + list[1] = lines[j]; + } + } + + window.location.hash = hash.join(','); + }); +}); diff --git a/apigen/templates/woodocs/namespace.latte b/apigen/templates/woodocs/namespace.latte new file mode 100644 index 00000000000..67b745560cc --- /dev/null +++ b/apigen/templates/woodocs/namespace.latte @@ -0,0 +1,32 @@ +{* +ApiGen 2.8.0 - API documentation generator for PHP 5.3+ + +Copyright (c) 2010-2011 David Grudl (http://davidgrudl.com) +Copyright (c) 2011-2012 Jaroslav Hanslík (https://github.com/kukulich) +Copyright (c) 2011-2012 Ondřej Nešpor (https://github.com/Andrewsville) +Copyright (c) 2012 Olivier Laviale (https://github.com/olvlvl) + +For the full copyright and license information, please view +the file LICENSE.md that was distributed with this source code. +*} +{layout '@layout.latte'} +{var $active = 'namespace'} + +{block #title}{if $namespace != 'None'}Namespace {$namespace}{else}No namespace{/if}{/block} + +{block #content} +
    +

    {if $namespace != 'None'}Namespace {!$namespace|namespaceLinks:false}{else}No namespace{/if}

    + + {if $subnamespaces} +

    Namespaces summary

    + + + + +
    {$namespace}
    + {/if} + + {include '@elementlist.latte'} +
    +{/block} diff --git a/apigen/templates/woodocs/opensearch.xml.latte b/apigen/templates/woodocs/opensearch.xml.latte new file mode 100644 index 00000000000..ae5dfb9d0bb --- /dev/null +++ b/apigen/templates/woodocs/opensearch.xml.latte @@ -0,0 +1,21 @@ +{* +ApiGen 2.8.0 - API documentation generator for PHP 5.3+ + +Copyright (c) 2010-2011 David Grudl (http://davidgrudl.com) +Copyright (c) 2011-2012 Jaroslav Hanslík (https://github.com/kukulich) +Copyright (c) 2011-2012 Ondřej Nešpor (https://github.com/Andrewsville) +Copyright (c) 2012 Olivier Laviale (https://github.com/olvlvl) + +For the full copyright and license information, please view +the file LICENSE.md that was distributed with this source code. +*} + + +{$config->title} +{$config->title} Documentation + +{$config->baseUrl}/favicon.ico +open +UTF-8 +UTF-8 + diff --git a/apigen/templates/woodocs/overview.latte b/apigen/templates/woodocs/overview.latte new file mode 100644 index 00000000000..9e65c747856 --- /dev/null +++ b/apigen/templates/woodocs/overview.latte @@ -0,0 +1,57 @@ +{* +ApiGen 2.8.0 - API documentation generator for PHP 5.3+ + +Copyright (c) 2010-2011 David Grudl (http://davidgrudl.com) +Copyright (c) 2011-2012 Jaroslav Hanslík (https://github.com/kukulich) +Copyright (c) 2011-2012 Ondřej Nešpor (https://github.com/Andrewsville) +Copyright (c) 2012 Olivier Laviale (https://github.com/olvlvl) + +For the full copyright and license information, please view +the file LICENSE.md that was distributed with this source code. +*} +{layout '@layout.latte'} +{var $active = 'overview'} + +{block #title}{$config->title ?: 'Overview'}{/block} + +{block #content} +
    +

    {include #title}

    + + {var $group = false} + + {if $namespaces} + {if} +

    Namespaces summary

    + + {foreach $namespaces as $namespace} + {continueIf $config->main && 0 !== strpos($namespace, $config->main)} + + {var $group = true} + + + {/foreach} +
    {$namespace}
    + {/if $iterations} + {/if} + + {if $packages} + {if} +

    Packages summary

    + + {foreach $packages as $package} + {continueIf $config->main && 0 !== strpos($package, $config->main)} + + {var $group = true} + + + {/foreach} +
    {$package}
    + {/if $iterations} + {/if} + + {if !$group} + {include '@elementlist.latte'} + {/if} +
    +{/block} \ No newline at end of file diff --git a/apigen/templates/woodocs/package.latte b/apigen/templates/woodocs/package.latte new file mode 100644 index 00000000000..f0f31c78782 --- /dev/null +++ b/apigen/templates/woodocs/package.latte @@ -0,0 +1,32 @@ +{* +ApiGen 2.8.0 - API documentation generator for PHP 5.3+ + +Copyright (c) 2010-2011 David Grudl (http://davidgrudl.com) +Copyright (c) 2011-2012 Jaroslav Hanslík (https://github.com/kukulich) +Copyright (c) 2011-2012 Ondřej Nešpor (https://github.com/Andrewsville) +Copyright (c) 2012 Olivier Laviale (https://github.com/olvlvl) + +For the full copyright and license information, please view +the file LICENSE.md that was distributed with this source code. +*} +{layout '@layout.latte'} +{var $active = 'package'} + +{block #title}{if $package != 'None'}Package {$package}{else}No package{/if}{/block} + +{block #content} +
    +

    {if $package != 'None'}Package {!$package|packageLinks:false}{else}No package{/if}

    + + {if $subpackages} +

    Packages summary

    + + + + +
    {$package}
    + {/if} + + {include '@elementlist.latte'} +
    +{/block} diff --git a/apigen/templates/woodocs/resources/bootstrap.min.css b/apigen/templates/woodocs/resources/bootstrap.min.css new file mode 100644 index 00000000000..c98662bc54e --- /dev/null +++ b/apigen/templates/woodocs/resources/bootstrap.min.css @@ -0,0 +1,632 @@ +article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block;} +audio,canvas,video{display:inline-block;*display:inline;*zoom:1;} +audio:not([controls]){display:none;} +html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;} +a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} +a:hover,a:active{outline:0;} +sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline;} +sup{top:-0.5em;} +sub{bottom:-0.25em;} +img{max-width:100%;height:auto;border:0;-ms-interpolation-mode:bicubic;} +button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle;} +button,input{*overflow:visible;line-height:normal;} +button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0;} +button,input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button;} +input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;} +input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none;} +textarea{overflow:auto;vertical-align:top;} +.clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";} +.clearfix:after{clear:both;} +body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:18px;color:#333333;background-color:#ffffff;} +a{color:#985c81;text-decoration:none;} +a:hover{color:#784966;text-decoration:underline;} +.row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";} +.row:after{clear:both;} +[class*="span"]{float:left;margin-left:20px;} +.span1{width:60px;} +.span2{width:140px;} +.span3{width:220px;} +.span4{width:300px;} +.span5{width:380px;} +.span6{width:460px;} +.span7{width:540px;} +.span8{width:620px;} +.span9{width:700px;} +.span10{width:780px;} +.span11{width:860px;} +.span12,.container{width:940px;} +.offset1{margin-left:100px;} +.offset2{margin-left:180px;} +.offset3{margin-left:260px;} +.offset4{margin-left:340px;} +.offset5{margin-left:420px;} +.offset6{margin-left:500px;} +.offset7{margin-left:580px;} +.offset8{margin-left:660px;} +.offset9{margin-left:740px;} +.offset10{margin-left:820px;} +.offset11{margin-left:900px;} +.row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";} +.row-fluid:after{clear:both;} +.row-fluid>[class*="span"]{float:left;margin-left:2.127659574%;} +.row-fluid>[class*="span"]:first-child{margin-left:0;} +.row-fluid>.span1{width:6.382978723%;} +.row-fluid>.span2{width:14.89361702%;} +.row-fluid>.span3{width:23.404255317%;} +.row-fluid>.span4{width:31.914893614%;} +.row-fluid>.span5{width:40.425531911%;} +.row-fluid>.span6{width:48.93617020799999%;} +.row-fluid>.span7{width:57.446808505%;} +.row-fluid>.span8{width:65.95744680199999%;} +.row-fluid>.span9{width:74.468085099%;} +.row-fluid>.span10{width:82.97872339599999%;} +.row-fluid>.span11{width:91.489361693%;} +.row-fluid>.span12{width:99.99999998999999%;} +.container{width:940px;margin-left:auto;margin-right:auto;*zoom:1;}.container:before,.container:after{display:table;content:"";} +.container:after{clear:both;} +.container-fluid{padding-left:20px;padding-right:20px;*zoom:1;}.container-fluid:before,.container-fluid:after{display:table;content:"";} +.container-fluid:after{clear:both;} +p{margin:0 0 9px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:18px;}p small{font-size:11px;color:#999999;} +.lead{margin-bottom:18px;font-size:20px;font-weight:200;line-height:27px;} +h1,h2,h3,h4,h5,h6{margin:0;font-weight:bold;color:#333333;text-rendering:optimizelegibility;}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;color:#999999;} +h1{font-size:30px;line-height:36px;}h1 small{font-size:18px;} +h2{font-size:24px;line-height:36px;}h2 small{font-size:18px;} +h3{line-height:27px;font-size:18px;}h3 small{font-size:14px;} +h4,h5,h6{line-height:18px;} +h4{font-size:14px;}h4 small{font-size:12px;} +h5{font-size:12px;} +h6{font-size:11px;color:#999999;text-transform:uppercase;} +.page-header{padding-bottom:17px;margin:18px 0;border-bottom:1px solid #eeeeee;} +.page-header h1{line-height:1;} +ul,ol{padding:0;margin:0 0 9px 25px;} +ul ul,ul ol,ol ol,ol ul{margin-bottom:0;} +ul{list-style:disc;} +ol{list-style:decimal;} +li{line-height:18px;} +ul.unstyled,ol.unstyled{margin-left:0;list-style:none;} +dl{margin-bottom:18px;} +dt,dd{line-height:18px;} +dt{font-weight:bold;} +dd{margin-left:9px;} +hr{margin:18px 0;border:0;border-top:1px solid #eeeeee;border-bottom:1px solid #ffffff;} +strong{font-weight:bold;} +em{font-style:italic;} +.muted{color:#999999;} +abbr{font-size:90%;text-transform:uppercase;border-bottom:1px dotted #ddd;cursor:help;} +blockquote{padding:0 0 0 15px;margin:0 0 18px;border-left:5px solid #eeeeee;}blockquote p{margin-bottom:0;font-size:16px;font-weight:300;line-height:22.5px;} +blockquote small{display:block;line-height:18px;color:#999999;}blockquote small:before{content:'\2014 \00A0';} +blockquote.pull-right{float:right;padding-left:0;padding-right:15px;border-left:0;border-right:5px solid #eeeeee;}blockquote.pull-right p,blockquote.pull-right small{text-align:right;} +q:before,q:after,blockquote:before,blockquote:after{content:"";} +address{display:block;margin-bottom:18px;line-height:18px;font-style:normal;} +small{font-size:100%;} +cite{font-style:normal;} +code,pre{padding:0 3px 2px;font-family:Menlo,Monaco,"Courier New",monospace;font-size:12px;color:#333333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +code{padding:3px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8;} +pre{display:block;padding:8.5px;margin:0 0 9px;font-size:12px;line-height:18px;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;white-space:pre;white-space:pre-wrap;word-break:break-all;word-wrap:break-word;}pre.prettyprint{margin-bottom:18px;} +pre code{padding:0;color:inherit;background-color:transparent;border:0;} +.pre-scrollable{max-height:340px;overflow-y:scroll;} +form{margin:0 0 18px;} +fieldset{padding:0;margin:0;border:0;} +legend{display:block;width:100%;padding:0;margin-bottom:27px;font-size:19.5px;line-height:36px;color:#333333;border:0;border-bottom:1px solid #eee;}legend small{font-size:13.5px;color:#999999;} +label,input,button,select,textarea{font-size:13px;font-weight:normal;line-height:18px;} +input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;} +label{display:block;margin-bottom:5px;color:#333333;} +input,textarea,select,.uneditable-input{display:inline-block;width:210px;height:18px;padding:4px;margin-bottom:9px;font-size:13px;line-height:18px;color:#555555;border:1px solid #ccc;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +.uneditable-textarea{width:auto;height:auto;} +label input,label textarea,label select{display:block;} +input[type="image"],input[type="checkbox"],input[type="radio"]{width:auto;height:auto;padding:0;margin:3px 0;*margin-top:0;line-height:normal;cursor:pointer;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;border:0 \9;} +input[type="image"]{border:0;} +input[type="file"]{width:auto;padding:initial;line-height:initial;border:initial;background-color:#ffffff;background-color:initial;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} +input[type="button"],input[type="reset"],input[type="submit"]{width:auto;height:auto;} +select,input[type="file"]{height:28px;*margin-top:4px;line-height:28px;} +input[type="file"]{line-height:18px \9;} +select{width:220px;background-color:#ffffff;} +select[multiple],select[size]{height:auto;} +input[type="image"]{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} +textarea{height:auto;} +input[type="hidden"]{display:none;} +.radio,.checkbox{padding-left:18px;} +.radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-18px;} +.controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px;} +.radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle;} +.radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px;} +input,textarea{-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-webkit-transition:border linear 0.2s,box-shadow linear 0.2s;-moz-transition:border linear 0.2s,box-shadow linear 0.2s;-ms-transition:border linear 0.2s,box-shadow linear 0.2s;-o-transition:border linear 0.2s,box-shadow linear 0.2s;transition:border linear 0.2s,box-shadow linear 0.2s;} +input:focus,textarea:focus{border-color:rgba(82, 168, 236, 0.8);-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(82, 168, 236, 0.6);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(82, 168, 236, 0.6);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(82, 168, 236, 0.6);outline:0;outline:thin dotted \9;} +input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus,select:focus{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} +.input-mini{width:60px;} +.input-small{width:90px;} +.input-medium{width:150px;} +.input-large{width:210px;} +.input-xlarge{width:270px;} +.input-xxlarge{width:530px;} +input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{float:none;margin-left:0;} +input.span1,textarea.span1,.uneditable-input.span1{width:50px;} +input.span2,textarea.span2,.uneditable-input.span2{width:130px;} +input.span3,textarea.span3,.uneditable-input.span3{width:210px;} +input.span4,textarea.span4,.uneditable-input.span4{width:290px;} +input.span5,textarea.span5,.uneditable-input.span5{width:370px;} +input.span6,textarea.span6,.uneditable-input.span6{width:450px;} +input.span7,textarea.span7,.uneditable-input.span7{width:530px;} +input.span8,textarea.span8,.uneditable-input.span8{width:610px;} +input.span9,textarea.span9,.uneditable-input.span9{width:690px;} +input.span10,textarea.span10,.uneditable-input.span10{width:770px;} +input.span11,textarea.span11,.uneditable-input.span11{width:850px;} +input.span12,textarea.span12,.uneditable-input.span12{width:930px;} +input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{background-color:#f5f5f5;border-color:#ddd;cursor:not-allowed;} +.control-group.warning>label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853;} +.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853;border-color:#c09853;}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:0 0 6px #dbc59e;-moz-box-shadow:0 0 6px #dbc59e;box-shadow:0 0 6px #dbc59e;} +.control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853;} +.control-group.error>label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48;} +.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48;border-color:#b94a48;}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:0 0 6px #d59392;-moz-box-shadow:0 0 6px #d59392;box-shadow:0 0 6px #d59392;} +.control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48;} +.control-group.success>label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847;} +.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847;border-color:#468847;}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:0 0 6px #7aba7b;-moz-box-shadow:0 0 6px #7aba7b;box-shadow:0 0 6px #7aba7b;} +.control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847;} +input:focus:required:invalid,textarea:focus:required:invalid,select:focus:required:invalid{color:#b94a48;border-color:#ee5f5b;}input:focus:required:invalid:focus,textarea:focus:required:invalid:focus,select:focus:required:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7;} +.form-actions{padding:17px 20px 18px;margin-top:18px;margin-bottom:18px;background-color:#f5f5f5;border-top:1px solid #ddd;} +.uneditable-input{display:block;background-color:#ffffff;border-color:#eee;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);cursor:not-allowed;} +:-moz-placeholder{color:#999999;} +::-webkit-input-placeholder{color:#999999;} +.help-block{display:block;margin-top:5px;margin-bottom:0;color:#999999;} +.help-inline{display:inline-block;*display:inline;*zoom:1;margin-bottom:9px;vertical-align:middle;padding-left:5px;} +.input-prepend,.input-append{margin-bottom:5px;*zoom:1;}.input-prepend:before,.input-append:before,.input-prepend:after,.input-append:after{display:table;content:"";} +.input-prepend:after,.input-append:after{clear:both;} +.input-prepend input,.input-append input,.input-prepend .uneditable-input,.input-append .uneditable-input{-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;}.input-prepend input:focus,.input-append input:focus,.input-prepend .uneditable-input:focus,.input-append .uneditable-input:focus{position:relative;z-index:2;} +.input-prepend .uneditable-input,.input-append .uneditable-input{border-left-color:#ccc;} +.input-prepend .add-on,.input-append .add-on{float:left;display:block;width:auto;min-width:16px;height:18px;margin-right:-1px;padding:4px 5px;font-weight:normal;line-height:18px;color:#999999;text-align:center;text-shadow:0 1px 0 #ffffff;background-color:#f5f5f5;border:1px solid #ccc;-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;} +.input-prepend .active,.input-append .active{background-color:#a9dba9;border-color:#46a546;} +.input-prepend .add-on{*margin-top:1px;} +.input-append input,.input-append .uneditable-input{float:left;-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;} +.input-append .uneditable-input{border-left-color:#eee;border-right-color:#ccc;} +.input-append .add-on{margin-right:0;margin-left:-1px;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;} +.input-append input:first-child{*margin-left:-160px;}.input-append input:first-child+.add-on{*margin-left:-21px;} +.search-query{padding-left:14px;padding-right:14px;margin-bottom:0;-webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px;} +.form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input{display:inline-block;margin-bottom:0;} +.form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none;} +.form-search label,.form-inline label,.form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{display:inline-block;} +.form-search .input-append .add-on,.form-inline .input-prepend .add-on,.form-search .input-append .add-on,.form-inline .input-prepend .add-on{vertical-align:middle;} +.form-search .radio,.form-inline .radio,.form-search .checkbox,.form-inline .checkbox{margin-bottom:0;vertical-align:middle;} +.control-group{margin-bottom:9px;} +legend+.control-group{margin-top:18px;-webkit-margin-top-collapse:separate;} +.form-horizontal .control-group{margin-bottom:18px;*zoom:1;}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";} +.form-horizontal .control-group:after{clear:both;} +.form-horizontal .control-label{float:left;width:140px;padding-top:5px;text-align:right;} +.form-horizontal .controls{margin-left:160px;} +.form-horizontal .form-actions{padding-left:160px;} +table{max-width:100%;border-collapse:collapse;border-spacing:0;} +.table{width:100%;margin-bottom:18px;}.table th,.table td{padding:8px;line-height:18px;text-align:left;vertical-align:top;border-top:1px solid #ddd;} +.table th{font-weight:bold;} +.table thead th{vertical-align:bottom;} +.table thead:first-child tr th,.table thead:first-child tr td{border-top:0;} +.table tbody+tbody{border-top:2px solid #ddd;} +.table-condensed th,.table-condensed td{padding:4px 5px;} +.table-bordered{border:1px solid #ddd;border-collapse:separate;*border-collapse:collapsed;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.table-bordered th+th,.table-bordered td+td,.table-bordered th+td,.table-bordered td+th{border-left:1px solid #ddd;} +.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0;} +.table-bordered thead:first-child tr:first-child th:first-child,.table-bordered tbody:first-child tr:first-child td:first-child{-webkit-border-radius:4px 0 0 0;-moz-border-radius:4px 0 0 0;border-radius:4px 0 0 0;} +.table-bordered thead:first-child tr:first-child th:last-child,.table-bordered tbody:first-child tr:first-child td:last-child{-webkit-border-radius:0 4px 0 0;-moz-border-radius:0 4px 0 0;border-radius:0 4px 0 0;} +.table-bordered thead:last-child tr:last-child th:first-child,.table-bordered tbody:last-child tr:last-child td:first-child{-webkit-border-radius:0 0 0 4px;-moz-border-radius:0 0 0 4px;border-radius:0 0 0 4px;} +.table-bordered thead:last-child tr:last-child th:last-child,.table-bordered tbody:last-child tr:last-child td:last-child{-webkit-border-radius:0 0 4px 0;-moz-border-radius:0 0 4px 0;border-radius:0 0 4px 0;} +.table-striped tbody tr:nth-child(odd) td,.table-striped tbody tr:nth-child(odd) th{background-color:#f9f9f9;} +.table tbody tr:hover td,.table tbody tr:hover th{background-color:#f5f5f5;} +table .span1{float:none;width:44px;margin-left:0;} +table .span2{float:none;width:124px;margin-left:0;} +table .span3{float:none;width:204px;margin-left:0;} +table .span4{float:none;width:284px;margin-left:0;} +table .span5{float:none;width:364px;margin-left:0;} +table .span6{float:none;width:444px;margin-left:0;} +table .span7{float:none;width:524px;margin-left:0;} +table .span8{float:none;width:604px;margin-left:0;} +table .span9{float:none;width:684px;margin-left:0;} +table .span10{float:none;width:764px;margin-left:0;} +table .span11{float:none;width:844px;margin-left:0;} +table .span12{float:none;width:924px;margin-left:0;} +[class^="icon-"],[class*=" icon-"]{display:inline-block;width:14px;height:14px;line-height:14px;vertical-align:text-top;background-image:url("../img/glyphicons-halflings.png");background-position:14px 14px;background-repeat:no-repeat;*margin-right:.3em;}[class^="icon-"]:last-child,[class*=" icon-"]:last-child{*margin-left:0;} +.icon-white{background-image:url("../img/glyphicons-halflings-white.png");} +.icon-glass{background-position:0 0;} +.icon-music{background-position:-24px 0;} +.icon-search{background-position:-48px 0;} +.icon-envelope{background-position:-72px 0;} +.icon-heart{background-position:-96px 0;} +.icon-star{background-position:-120px 0;} +.icon-star-empty{background-position:-144px 0;} +.icon-user{background-position:-168px 0;} +.icon-film{background-position:-192px 0;} +.icon-th-large{background-position:-216px 0;} +.icon-th{background-position:-240px 0;} +.icon-th-list{background-position:-264px 0;} +.icon-ok{background-position:-288px 0;} +.icon-remove{background-position:-312px 0;} +.icon-zoom-in{background-position:-336px 0;} +.icon-zoom-out{background-position:-360px 0;} +.icon-off{background-position:-384px 0;} +.icon-signal{background-position:-408px 0;} +.icon-cog{background-position:-432px 0;} +.icon-trash{background-position:-456px 0;} +.icon-home{background-position:0 -24px;} +.icon-file{background-position:-24px -24px;} +.icon-time{background-position:-48px -24px;} +.icon-road{background-position:-72px -24px;} +.icon-download-alt{background-position:-96px -24px;} +.icon-download{background-position:-120px -24px;} +.icon-upload{background-position:-144px -24px;} +.icon-inbox{background-position:-168px -24px;} +.icon-play-circle{background-position:-192px -24px;} +.icon-repeat{background-position:-216px -24px;} +.icon-refresh{background-position:-240px -24px;} +.icon-list-alt{background-position:-264px -24px;} +.icon-lock{background-position:-287px -24px;} +.icon-flag{background-position:-312px -24px;} +.icon-headphones{background-position:-336px -24px;} +.icon-volume-off{background-position:-360px -24px;} +.icon-volume-down{background-position:-384px -24px;} +.icon-volume-up{background-position:-408px -24px;} +.icon-qrcode{background-position:-432px -24px;} +.icon-barcode{background-position:-456px -24px;} +.icon-tag{background-position:0 -48px;} +.icon-tags{background-position:-25px -48px;} +.icon-book{background-position:-48px -48px;} +.icon-bookmark{background-position:-72px -48px;} +.icon-print{background-position:-96px -48px;} +.icon-camera{background-position:-120px -48px;} +.icon-font{background-position:-144px -48px;} +.icon-bold{background-position:-167px -48px;} +.icon-italic{background-position:-192px -48px;} +.icon-text-height{background-position:-216px -48px;} +.icon-text-width{background-position:-240px -48px;} +.icon-align-left{background-position:-264px -48px;} +.icon-align-center{background-position:-288px -48px;} +.icon-align-right{background-position:-312px -48px;} +.icon-align-justify{background-position:-336px -48px;} +.icon-list{background-position:-360px -48px;} +.icon-indent-left{background-position:-384px -48px;} +.icon-indent-right{background-position:-408px -48px;} +.icon-facetime-video{background-position:-432px -48px;} +.icon-picture{background-position:-456px -48px;} +.icon-pencil{background-position:0 -72px;} +.icon-map-marker{background-position:-24px -72px;} +.icon-adjust{background-position:-48px -72px;} +.icon-tint{background-position:-72px -72px;} +.icon-edit{background-position:-96px -72px;} +.icon-share{background-position:-120px -72px;} +.icon-check{background-position:-144px -72px;} +.icon-move{background-position:-168px -72px;} +.icon-step-backward{background-position:-192px -72px;} +.icon-fast-backward{background-position:-216px -72px;} +.icon-backward{background-position:-240px -72px;} +.icon-play{background-position:-264px -72px;} +.icon-pause{background-position:-288px -72px;} +.icon-stop{background-position:-312px -72px;} +.icon-forward{background-position:-336px -72px;} +.icon-fast-forward{background-position:-360px -72px;} +.icon-step-forward{background-position:-384px -72px;} +.icon-eject{background-position:-408px -72px;} +.icon-chevron-left{background-position:-432px -72px;} +.icon-chevron-right{background-position:-456px -72px;} +.icon-plus-sign{background-position:0 -96px;} +.icon-minus-sign{background-position:-24px -96px;} +.icon-remove-sign{background-position:-48px -96px;} +.icon-ok-sign{background-position:-72px -96px;} +.icon-question-sign{background-position:-96px -96px;} +.icon-info-sign{background-position:-120px -96px;} +.icon-screenshot{background-position:-144px -96px;} +.icon-remove-circle{background-position:-168px -96px;} +.icon-ok-circle{background-position:-192px -96px;} +.icon-ban-circle{background-position:-216px -96px;} +.icon-arrow-left{background-position:-240px -96px;} +.icon-arrow-right{background-position:-264px -96px;} +.icon-arrow-up{background-position:-289px -96px;} +.icon-arrow-down{background-position:-312px -96px;} +.icon-share-alt{background-position:-336px -96px;} +.icon-resize-full{background-position:-360px -96px;} +.icon-resize-small{background-position:-384px -96px;} +.icon-plus{background-position:-408px -96px;} +.icon-minus{background-position:-433px -96px;} +.icon-asterisk{background-position:-456px -96px;} +.icon-exclamation-sign{background-position:0 -120px;} +.icon-gift{background-position:-24px -120px;} +.icon-leaf{background-position:-48px -120px;} +.icon-fire{background-position:-72px -120px;} +.icon-eye-open{background-position:-96px -120px;} +.icon-eye-close{background-position:-120px -120px;} +.icon-warning-sign{background-position:-144px -120px;} +.icon-plane{background-position:-168px -120px;} +.icon-calendar{background-position:-192px -120px;} +.icon-random{background-position:-216px -120px;} +.icon-comment{background-position:-240px -120px;} +.icon-magnet{background-position:-264px -120px;} +.icon-chevron-up{background-position:-288px -120px;} +.icon-chevron-down{background-position:-313px -119px;} +.icon-retweet{background-position:-336px -120px;} +.icon-shopping-cart{background-position:-360px -120px;} +.icon-folder-close{background-position:-384px -120px;} +.icon-folder-open{background-position:-408px -120px;} +.icon-resize-vertical{background-position:-432px -119px;} +.icon-resize-horizontal{background-position:-456px -118px;} +.dropdown{position:relative;} +.dropdown-toggle{*margin-bottom:-3px;} +.dropdown-toggle:active,.open .dropdown-toggle{outline:0;} +.caret{display:inline-block;width:0;height:0;text-indent:-99999px;*text-indent:0;vertical-align:top;border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid #000000;opacity:0.3;filter:alpha(opacity=30);content:"\2193";} +.dropdown .caret{margin-top:8px;margin-left:2px;} +.dropdown:hover .caret,.open.dropdown .caret{opacity:1;filter:alpha(opacity=100);} +.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;float:left;display:none;min-width:160px;_width:160px;padding:4px 0;margin:0;list-style:none;background-color:#ffffff;border-color:#ccc;border-color:rgba(0, 0, 0, 0.2);border-style:solid;border-width:1px;-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;*border-right-width:2px;*border-bottom-width:2px;}.dropdown-menu.bottom-up{top:auto;bottom:100%;margin-bottom:2px;} +.dropdown-menu .divider{height:1px;margin:5px 1px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;*width:100%;*margin:-5px 0 5px;} +.dropdown-menu a{display:block;padding:3px 15px;clear:both;font-weight:normal;line-height:18px;color:#555555;white-space:nowrap;} +.dropdown-menu li>a:hover,.dropdown-menu .active>a,.dropdown-menu .active>a:hover{color:#ffffff;text-decoration:none;background-color:#0088cc;} +.dropdown.open{*z-index:1000;}.dropdown.open .dropdown-toggle{color:#ffffff;background:#ccc;background:rgba(0, 0, 0, 0.3);} +.dropdown.open .dropdown-menu{display:block;} +.typeahead{margin-top:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #eee;border:1px solid rgba(0, 0, 0, 0.05);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);}.well blockquote{border-color:#ddd;border-color:rgba(0, 0, 0, 0.15);} +.fade{-webkit-transition:opacity 0.15s linear;-moz-transition:opacity 0.15s linear;-ms-transition:opacity 0.15s linear;-o-transition:opacity 0.15s linear;transition:opacity 0.15s linear;opacity:0;}.fade.in{opacity:1;} +.collapse{-webkit-transition:height 0.35s ease;-moz-transition:height 0.35s ease;-ms-transition:height 0.35s ease;-o-transition:height 0.35s ease;transition:height 0.35s ease;position:relative;overflow:hidden;height:0;}.collapse.in{height:auto;} +.close{float:right;font-size:20px;font-weight:bold;line-height:18px;color:#000000;text-shadow:0 1px 0 #ffffff;opacity:0.2;filter:alpha(opacity=20);}.close:hover{color:#000000;text-decoration:none;opacity:0.4;filter:alpha(opacity=40);cursor:pointer;} +.btn{display:inline-block;padding:4px 10px 4px;margin-bottom:0;font-size:13px;line-height:18px;color:#333333;text-align:center;text-shadow:0 1px 1px rgba(255, 255, 255, 0.75);vertical-align:middle;background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #ffffff, #e6e6e6);background-image:-ms-linear-gradient(top, #ffffff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #ffffff, #e6e6e6);background-image:-o-linear-gradient(top, #ffffff, #e6e6e6);background-image:linear-gradient(top, #ffffff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border:1px solid #ccc;border-bottom-color:#bbb;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);cursor:pointer;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);*margin-left:.3em;}.btn:hover,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{background-color:#e6e6e6;} +.btn:active,.btn.active{background-color:#cccccc \9;} +.btn:first-child{*margin-left:0;} +.btn:hover{color:#333333;text-decoration:none;background-color:#e6e6e6;background-position:0 -15px;-webkit-transition:background-position 0.1s linear;-moz-transition:background-position 0.1s linear;-ms-transition:background-position 0.1s linear;-o-transition:background-position 0.1s linear;transition:background-position 0.1s linear;} +.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} +.btn.active,.btn:active{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);background-color:#e6e6e6;background-color:#d9d9d9 \9;outline:0;} +.btn.disabled,.btn[disabled]{cursor:default;background-image:none;background-color:#e6e6e6;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} +.btn-large{padding:9px 14px;font-size:15px;line-height:normal;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} +.btn-large [class^="icon-"]{margin-top:1px;} +.btn-small{padding:5px 9px;font-size:11px;line-height:16px;} +.btn-small [class^="icon-"]{margin-top:-1px;} +.btn-mini{padding:2px 6px;font-size:11px;line-height:14px;} +.btn-primary,.btn-primary:hover,.btn-warning,.btn-warning:hover,.btn-danger,.btn-danger:hover,.btn-success,.btn-success:hover,.btn-info,.btn-info:hover,.btn-inverse,.btn-inverse:hover{text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);color:#ffffff;} +.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-dark.active{color:rgba(255, 255, 255, 0.75);} +.btn-primary{background-color:#006dcc;background-image:-moz-linear-gradient(top, #0088cc, #0044cc);background-image:-ms-linear-gradient(top, #0088cc, #0044cc);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));background-image:-webkit-linear-gradient(top, #0088cc, #0044cc);background-image:-o-linear-gradient(top, #0088cc, #0044cc);background-image:linear-gradient(top, #0088cc, #0044cc);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);border-color:#0044cc #0044cc #002a80;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-primary:hover,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{background-color:#0044cc;} +.btn-primary:active,.btn-primary.active{background-color:#003399 \9;} +.btn-warning{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-ms-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(top, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-warning:hover,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{background-color:#f89406;} +.btn-warning:active,.btn-warning.active{background-color:#c67605 \9;} +.btn-danger{background-color:#da4f49;background-image:-moz-linear-gradient(top, #ee5f5b, #bd362f);background-image:-ms-linear-gradient(top, #ee5f5b, #bd362f);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));background-image:-webkit-linear-gradient(top, #ee5f5b, #bd362f);background-image:-o-linear-gradient(top, #ee5f5b, #bd362f);background-image:linear-gradient(top, #ee5f5b, #bd362f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-danger:hover,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{background-color:#bd362f;} +.btn-danger:active,.btn-danger.active{background-color:#942a25 \9;} +.btn-success{background-color:#5bb75b;background-image:-moz-linear-gradient(top, #62c462, #51a351);background-image:-ms-linear-gradient(top, #62c462, #51a351);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));background-image:-webkit-linear-gradient(top, #62c462, #51a351);background-image:-o-linear-gradient(top, #62c462, #51a351);background-image:linear-gradient(top, #62c462, #51a351);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-success:hover,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{background-color:#51a351;} +.btn-success:active,.btn-success.active{background-color:#408140 \9;} +.btn-info{background-color:#49afcd;background-image:-moz-linear-gradient(top, #5bc0de, #2f96b4);background-image:-ms-linear-gradient(top, #5bc0de, #2f96b4);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));background-image:-webkit-linear-gradient(top, #5bc0de, #2f96b4);background-image:-o-linear-gradient(top, #5bc0de, #2f96b4);background-image:linear-gradient(top, #5bc0de, #2f96b4);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-info:hover,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{background-color:#2f96b4;} +.btn-info:active,.btn-info.active{background-color:#24748c \9;} +.btn-inverse{background-color:#393939;background-image:-moz-linear-gradient(top, #454545, #262626);background-image:-ms-linear-gradient(top, #454545, #262626);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#454545), to(#262626));background-image:-webkit-linear-gradient(top, #454545, #262626);background-image:-o-linear-gradient(top, #454545, #262626);background-image:linear-gradient(top, #454545, #262626);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#454545', endColorstr='#262626', GradientType=0);border-color:#262626 #262626 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-inverse:hover,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{background-color:#262626;} +.btn-inverse:active,.btn-inverse.active{background-color:#0c0c0c \9;} +button.btn,input[type="submit"].btn{*padding-top:2px;*padding-bottom:2px;}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0;} +button.btn.large,input[type="submit"].btn.large{*padding-top:7px;*padding-bottom:7px;} +button.btn.small,input[type="submit"].btn.small{*padding-top:3px;*padding-bottom:3px;} +.btn-group{position:relative;*zoom:1;*margin-left:.3em;}.btn-group:before,.btn-group:after{display:table;content:"";} +.btn-group:after{clear:both;} +.btn-group:first-child{*margin-left:0;} +.btn-group+.btn-group{margin-left:5px;} +.btn-toolbar{margin-top:9px;margin-bottom:9px;}.btn-toolbar .btn-group{display:inline-block;*display:inline;*zoom:1;} +.btn-group .btn{position:relative;float:left;margin-left:-1px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.btn-group .btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} +.btn-group .btn:last-child,.btn-group .dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} +.btn-group .btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;} +.btn-group .btn.large:last-child,.btn-group .large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;} +.btn-group .btn:hover,.btn-group .btn:focus,.btn-group .btn:active,.btn-group .btn.active{z-index:2;} +.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0;} +.btn-group .dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255, 255, 255, 0.125),inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 1px 0 0 rgba(255, 255, 255, 0.125),inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 1px 0 0 rgba(255, 255, 255, 0.125),inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);*padding-top:5px;*padding-bottom:5px;} +.btn-group.open{*z-index:1000;}.btn-group.open .dropdown-menu{display:block;margin-top:1px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} +.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 1px 6px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 6px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 6px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);} +.btn .caret{margin-top:7px;margin-left:0;} +.btn:hover .caret,.open.btn-group .caret{opacity:1;filter:alpha(opacity=100);} +.btn-primary .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#ffffff;opacity:0.75;filter:alpha(opacity=75);} +.btn-small .caret{margin-top:4px;} +.alert{padding:8px 35px 8px 14px;margin-bottom:18px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);background-color:#fcf8e3;border:1px solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.alert,.alert-heading{color:#c09853;} +.alert .close{position:relative;top:-2px;right:-21px;line-height:18px;} +.alert-success{background-color:#dff0d8;border-color:#d6e9c6;} +.alert-success,.alert-success .alert-heading{color:#468847;} +.alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;} +.alert-danger,.alert-error,.alert-danger .alert-heading,.alert-error .alert-heading{color:#b94a48;} +.alert-info{background-color:#d9edf7;border-color:#bce8f1;} +.alert-info,.alert-info .alert-heading{color:#3a87ad;} +.alert-block{padding-top:14px;padding-bottom:14px;} +.alert-block>p,.alert-block>ul{margin-bottom:0;} +.alert-block p+p{margin-top:5px;} +.nav{margin-left:0;margin-bottom:18px;list-style:none;} +.nav>li>a{display:block;} +.nav>li>a:hover{text-decoration:none;background-color:#eeeeee;} +.nav .nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:18px;color:#999999;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);text-transform:uppercase;} +.nav li+.nav-header{margin-top:9px;} +.nav-list{padding-left:14px;padding-right:14px;margin-bottom:0;} +.nav-list>li>a,.nav-list .nav-header{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);} +.nav-list>li>a{padding:3px 15px;} +.nav-list .active>a,.nav-list .active>a:hover{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.2);background-color:#0088cc;} +.nav-list [class^="icon-"]{margin-right:2px;} +.nav-tabs,.nav-pills{*zoom:1;}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";} +.nav-tabs:after,.nav-pills:after{clear:both;} +.nav-tabs>li,.nav-pills>li{float:left;} +.nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px;} +.nav-tabs{border-bottom:1px solid #ddd;} +.nav-tabs>li{margin-bottom:-1px;} +.nav-tabs>li>a{padding-top:9px;padding-bottom:9px;border:1px solid transparent;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;}.nav-tabs>li>a:hover{border-color:#eeeeee #eeeeee #dddddd;} +.nav-tabs>.active>a,.nav-tabs>.active>a:hover{color:#555555;background-color:#ffffff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default;} +.nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} +.nav-pills .active>a,.nav-pills .active>a:hover{color:#ffffff;background-color:#0088cc;} +.nav-stacked>li{float:none;} +.nav-stacked>li>a{margin-right:0;} +.nav-tabs.nav-stacked{border-bottom:0;} +.nav-tabs.nav-stacked>li>a{border:1px solid #ddd;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.nav-tabs.nav-stacked>li:first-child>a{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;} +.nav-tabs.nav-stacked>li:last-child>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;} +.nav-tabs.nav-stacked>li>a:hover{border-color:#ddd;z-index:2;} +.nav-pills.nav-stacked>li>a{margin-bottom:3px;} +.nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px;} +.nav-tabs .dropdown-menu,.nav-pills .dropdown-menu{margin-top:1px;border-width:1px;} +.nav-pills .dropdown-menu{-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.nav-tabs .dropdown-toggle .caret,.nav-pills .dropdown-toggle .caret{border-top-color:#0088cc;margin-top:6px;} +.nav-tabs .dropdown-toggle:hover .caret,.nav-pills .dropdown-toggle:hover .caret{border-top-color:#005580;} +.nav-tabs .active .dropdown-toggle .caret,.nav-pills .active .dropdown-toggle .caret{border-top-color:#333333;} +.nav>.dropdown.active>a:hover{color:#000000;cursor:pointer;} +.nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>.open.active>a:hover{color:#ffffff;background-color:#999999;border-color:#999999;} +.nav .open .caret,.nav .open.active .caret,.nav .open a:hover .caret{border-top-color:#ffffff;opacity:1;filter:alpha(opacity=100);} +.tabs-stacked .open>a:hover{border-color:#999999;} +.tabbable{*zoom:1;}.tabbable:before,.tabbable:after{display:table;content:"";} +.tabbable:after{clear:both;} +.tab-content{overflow:hidden;} +.tabs-below .nav-tabs,.tabs-right .nav-tabs,.tabs-left .nav-tabs{border-bottom:0;} +.tab-content>.tab-pane,.pill-content>.pill-pane{display:none;} +.tab-content>.active,.pill-content>.active{display:block;} +.tabs-below .nav-tabs{border-top:1px solid #ddd;} +.tabs-below .nav-tabs>li{margin-top:-1px;margin-bottom:0;} +.tabs-below .nav-tabs>li>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;}.tabs-below .nav-tabs>li>a:hover{border-bottom-color:transparent;border-top-color:#ddd;} +.tabs-below .nav-tabs .active>a,.tabs-below .nav-tabs .active>a:hover{border-color:transparent #ddd #ddd #ddd;} +.tabs-left .nav-tabs>li,.tabs-right .nav-tabs>li{float:none;} +.tabs-left .nav-tabs>li>a,.tabs-right .nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px;} +.tabs-left .nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd;} +.tabs-left .nav-tabs>li>a{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} +.tabs-left .nav-tabs>li>a:hover{border-color:#eeeeee #dddddd #eeeeee #eeeeee;} +.tabs-left .nav-tabs .active>a,.tabs-left .nav-tabs .active>a:hover{border-color:#ddd transparent #ddd #ddd;*border-right-color:#ffffff;} +.tabs-right .nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd;} +.tabs-right .nav-tabs>li>a{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} +.tabs-right .nav-tabs>li>a:hover{border-color:#eeeeee #eeeeee #eeeeee #dddddd;} +.tabs-right .nav-tabs .active>a,.tabs-right .nav-tabs .active>a:hover{border-color:#ddd #ddd #ddd transparent;*border-left-color:#ffffff;} +.navbar{overflow:visible;margin-bottom:18px;} +.navbar-inner{padding-left:20px;padding-right:20px;background-color:#2c2c2c;background-image:-moz-linear-gradient(top, #333333, #222222);background-image:-ms-linear-gradient(top, #333333, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));background-image:-webkit-linear-gradient(top, #333333, #222222);background-image:-o-linear-gradient(top, #333333, #222222);background-image:linear-gradient(top, #333333, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);box-shadow:0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);} +.btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;background-color:#2c2c2c;background-image:-moz-linear-gradient(top, #333333, #222222);background-image:-ms-linear-gradient(top, #333333, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));background-image:-webkit-linear-gradient(top, #333333, #222222);background-image:-o-linear-gradient(top, #333333, #222222);background-image:linear-gradient(top, #333333, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);border-color:#222222 #222222 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.075);-moz-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.075);box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.075);}.btn-navbar:hover,.btn-navbar:active,.btn-navbar.active,.btn-navbar.disabled,.btn-navbar[disabled]{background-color:#222222;} +.btn-navbar:active,.btn-navbar.active{background-color:#080808 \9;} +.btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);-moz-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);} +.btn-navbar .icon-bar+.icon-bar{margin-top:3px;} +.nav-collapse.collapse{height:auto;} +.navbar .brand:hover{text-decoration:none;} +.navbar .brand{float:left;display:block;padding:8px 20px 12px;margin-left:-20px;font-size:20px;font-weight:200;line-height:1;color:#ffffff;} +.navbar .navbar-text{margin-bottom:0;line-height:40px;color:#999999;}.navbar .navbar-text a:hover{color:#ffffff;background-color:transparent;} +.navbar .btn,.navbar .btn-group{margin-top:5px;} +.navbar .btn-group .btn{margin-top:0;} +.navbar-form{margin-bottom:0;*zoom:1;}.navbar-form:before,.navbar-form:after{display:table;content:"";} +.navbar-form:after{clear:both;} +.navbar-form input,.navbar-form select{display:inline-block;margin-top:5px;margin-bottom:0;} +.navbar-form .radio,.navbar-form .checkbox{margin-top:5px;} +.navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px;} +.navbar-form .input-append,.navbar-form .input-prepend{margin-top:6px;white-space:nowrap;}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0;} +.navbar-search{position:relative;float:left;margin-top:6px;margin-bottom:0;}.navbar-search .search-query{padding:4px 9px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;color:#ffffff;color:rgba(255, 255, 255, 0.75);background:#666;background:rgba(255, 255, 255, 0.3);border:1px solid #111;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1),0 1px 0px rgba(255, 255, 255, 0.15);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1),0 1px 0px rgba(255, 255, 255, 0.15);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1),0 1px 0px rgba(255, 255, 255, 0.15);-webkit-transition:none;-moz-transition:none;-ms-transition:none;-o-transition:none;transition:none;}.navbar-search .search-query :-moz-placeholder{color:#eeeeee;} +.navbar-search .search-query::-webkit-input-placeholder{color:#eeeeee;} +.navbar-search .search-query:hover{color:#ffffff;background-color:#999999;background-color:rgba(255, 255, 255, 0.5);} +.navbar-search .search-query:focus,.navbar-search .search-query.focused{padding:5px 10px;color:#333333;text-shadow:0 1px 0 #ffffff;background-color:#ffffff;border:0;-webkit-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);-moz-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);box-shadow:0 0 3px rgba(0, 0, 0, 0.15);outline:0;} +.navbar-fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030;} +.navbar-fixed-top .navbar-inner{padding-left:0;padding-right:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0;} +.navbar .nav.pull-right{float:right;} +.navbar .nav>li{display:block;float:left;} +.navbar .nav>li>a{float:none;padding:10px 10px 11px;line-height:19px;color:#999999;text-decoration:none;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);} +.navbar .nav>li>a:hover{background-color:transparent;color:#ffffff;text-decoration:none;} +.navbar .nav .active>a,.navbar .nav .active>a:hover{color:#ffffff;text-decoration:none;background-color:#222222;} +.navbar .divider-vertical{height:40px;width:1px;margin:0 9px;overflow:hidden;background-color:#222222;border-right:1px solid #333333;} +.navbar .nav.pull-right{margin-left:10px;margin-right:0;} +.navbar .dropdown-menu{margin-top:1px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.navbar .dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0, 0, 0, 0.2);position:absolute;top:-7px;left:9px;} +.navbar .dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #ffffff;position:absolute;top:-6px;left:10px;} +.navbar .nav .dropdown-toggle .caret,.navbar .nav .open.dropdown .caret{border-top-color:#ffffff;} +.navbar .nav .active .caret{opacity:1;filter:alpha(opacity=100);} +.navbar .nav .open>.dropdown-toggle,.navbar .nav .active>.dropdown-toggle,.navbar .nav .open.active>.dropdown-toggle{background-color:transparent;} +.navbar .nav .active>.dropdown-toggle:hover{color:#ffffff;} +.navbar .nav.pull-right .dropdown-menu{left:auto;right:0;}.navbar .nav.pull-right .dropdown-menu:before{left:auto;right:12px;} +.navbar .nav.pull-right .dropdown-menu:after{left:auto;right:13px;} +.breadcrumb{padding:7px 14px;margin:0 0 18px;background-color:#fbfbfb;background-image:-moz-linear-gradient(top, #ffffff, #f5f5f5);background-image:-ms-linear-gradient(top, #ffffff, #f5f5f5);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f5f5f5));background-image:-webkit-linear-gradient(top, #ffffff, #f5f5f5);background-image:-o-linear-gradient(top, #ffffff, #f5f5f5);background-image:linear-gradient(top, #ffffff, #f5f5f5);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);border:1px solid #ddd;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:inset 0 1px 0 #ffffff;-moz-box-shadow:inset 0 1px 0 #ffffff;box-shadow:inset 0 1px 0 #ffffff;}.breadcrumb li{display:inline-block;text-shadow:0 1px 0 #ffffff;} +.breadcrumb .divider{padding:0 5px;color:#999999;} +.breadcrumb .active a{color:#333333;} +.pagination{height:36px;margin:18px 0;} +.pagination ul{display:inline-block;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);} +.pagination li{display:inline;} +.pagination a{float:left;padding:0 14px;line-height:34px;text-decoration:none;border:1px solid #ddd;border-left-width:0;} +.pagination a:hover,.pagination .active a{background-color:#f5f5f5;} +.pagination .active a{color:#999999;cursor:default;} +.pagination .disabled a,.pagination .disabled a:hover{color:#999999;background-color:transparent;cursor:default;} +.pagination li:first-child a{border-left-width:1px;-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;} +.pagination li:last-child a{-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;} +.pagination-centered{text-align:center;} +.pagination-right{text-align:right;} +.pager{margin-left:0;margin-bottom:18px;list-style:none;text-align:center;*zoom:1;}.pager:before,.pager:after{display:table;content:"";} +.pager:after{clear:both;} +.pager li{display:inline;} +.pager a{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} +.pager a:hover{text-decoration:none;background-color:#f5f5f5;} +.pager .next a{float:right;} +.pager .previous a{float:left;} +.modal-open .dropdown-menu{z-index:2050;} +.modal-open .dropdown.open{*z-index:2050;} +.modal-open .popover{z-index:2060;} +.modal-open .tooltip{z-index:2070;} +.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000000;}.modal-backdrop.fade{opacity:0;} +.modal-backdrop,.modal-backdrop.fade.in{opacity:0.8;filter:alpha(opacity=80);} +.modal{position:fixed;top:50%;left:50%;z-index:1050;max-height:500px;overflow:auto;width:560px;margin:-250px 0 0 -280px;background-color:#ffffff;border:1px solid #999;border:1px solid rgba(0, 0, 0, 0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;}.modal.fade{-webkit-transition:opacity .3s linear, top .3s ease-out;-moz-transition:opacity .3s linear, top .3s ease-out;-ms-transition:opacity .3s linear, top .3s ease-out;-o-transition:opacity .3s linear, top .3s ease-out;transition:opacity .3s linear, top .3s ease-out;top:-25%;} +.modal.fade.in{top:50%;} +.modal-header{padding:9px 15px;border-bottom:1px solid #eee;}.modal-header .close{margin-top:2px;} +.modal-body{padding:15px;} +.modal-body .modal-form{margin-bottom:0;} +.modal-footer{padding:14px 15px 15px;margin-bottom:0;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #ffffff;-moz-box-shadow:inset 0 1px 0 #ffffff;box-shadow:inset 0 1px 0 #ffffff;*zoom:1;}.modal-footer:before,.modal-footer:after{display:table;content:"";} +.modal-footer:after{clear:both;} +.modal-footer .btn{float:right;margin-left:5px;margin-bottom:0;} +.tooltip{position:absolute;z-index:1020;display:block;visibility:visible;padding:5px;font-size:11px;opacity:0;filter:alpha(opacity=0);}.tooltip.in{opacity:0.8;filter:alpha(opacity=80);} +.tooltip.top{margin-top:-2px;} +.tooltip.right{margin-left:2px;} +.tooltip.bottom{margin-top:2px;} +.tooltip.left{margin-left:-2px;} +.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #000000;} +.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid #000000;} +.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:5px solid #000000;} +.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-right:5px solid #000000;} +.tooltip-inner{max-width:200px;padding:3px 8px;color:#ffffff;text-align:center;text-decoration:none;background-color:#000000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.tooltip-arrow{position:absolute;width:0;height:0;} +.popover{position:absolute;top:0;left:0;z-index:1010;display:none;padding:5px;}.popover.top{margin-top:-5px;} +.popover.right{margin-left:5px;} +.popover.bottom{margin-top:5px;} +.popover.left{margin-left:-5px;} +.popover.top .arrow{bottom:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #000000;} +.popover.right .arrow{top:50%;left:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-right:5px solid #000000;} +.popover.bottom .arrow{top:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:5px solid #000000;} +.popover.left .arrow{top:50%;right:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid #000000;} +.popover .arrow{position:absolute;width:0;height:0;} +.popover-inner{padding:3px;width:280px;overflow:hidden;background:#000000;background:rgba(0, 0, 0, 0.8);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);} +.popover-title{padding:9px 15px;line-height:1;background-color:#f5f5f5;border-bottom:1px solid #eee;-webkit-border-radius:3px 3px 0 0;-moz-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;} +.popover-content{padding:14px;background-color:#ffffff;-webkit-border-radius:0 0 3px 3px;-moz-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px;-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;}.popover-content p,.popover-content ul,.popover-content ol{margin-bottom:0;} +.thumbnails{margin-left:-20px;list-style:none;*zoom:1;}.thumbnails:before,.thumbnails:after{display:table;content:"";} +.thumbnails:after{clear:both;} +.thumbnails>li{float:left;margin:0 0 18px 20px;} +.thumbnail{display:block;padding:4px;line-height:1;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:0 1px 1px rgba(0, 0, 0, 0.075);} +a.thumbnail:hover{border-color:#0088cc;-webkit-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);-moz-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);} +.thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto;} +.thumbnail .caption{padding:9px;} +.label{padding:2px 4px 3px;font-size:11.049999999999999px;font-weight:bold;color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#999999;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +.label:hover{color:#ffffff;text-decoration:none;} +.label-important{background-color:#b94a48;} +.label-important:hover{background-color:#953b39;} +.label-warning{background-color:#f89406;} +.label-warning:hover{background-color:#c67605;} +.label-success{background-color:#468847;} +.label-success:hover{background-color:#356635;} +.label-info{background-color:#3a87ad;} +.label-info:hover{background-color:#2d6987;} +@-webkit-keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}@-moz-keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}@keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}.progress{overflow:hidden;height:18px;margin-bottom:18px;background-color:#f7f7f7;background-image:-moz-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-ms-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));background-image:-webkit-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-o-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:linear-gradient(top, #f5f5f5, #f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.progress .bar{width:0%;height:18px;color:#ffffff;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top, #149bdf, #0480be);background-image:-ms-linear-gradient(top, #149bdf, #0480be);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));background-image:-webkit-linear-gradient(top, #149bdf, #0480be);background-image:-o-linear-gradient(top, #149bdf, #0480be);background-image:linear-gradient(top, #149bdf, #0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#149bdf', endColorstr='#0480be', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width 0.6s ease;-moz-transition:width 0.6s ease;-ms-transition:width 0.6s ease;-o-transition:width 0.6s ease;transition:width 0.6s ease;} +.progress-striped .bar{background-color:#62c462;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px;} +.progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite;} +.progress-danger .bar{background-color:#dd514c;background-image:-moz-linear-gradient(top, #ee5f5b, #c43c35);background-image:-ms-linear-gradient(top, #ee5f5b, #c43c35);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));background-image:-webkit-linear-gradient(top, #ee5f5b, #c43c35);background-image:-o-linear-gradient(top, #ee5f5b, #c43c35);background-image:linear-gradient(top, #ee5f5b, #c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);} +.progress-danger.progress-striped .bar{background-color:#ee5f5b;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} +.progress-success .bar{background-color:#5eb95e;background-image:-moz-linear-gradient(top, #62c462, #57a957);background-image:-ms-linear-gradient(top, #62c462, #57a957);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));background-image:-webkit-linear-gradient(top, #62c462, #57a957);background-image:-o-linear-gradient(top, #62c462, #57a957);background-image:linear-gradient(top, #62c462, #57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);} +.progress-success.progress-striped .bar{background-color:#62c462;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} +.progress-info .bar{background-color:#4bb1cf;background-image:-moz-linear-gradient(top, #5bc0de, #339bb9);background-image:-ms-linear-gradient(top, #5bc0de, #339bb9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));background-image:-webkit-linear-gradient(top, #5bc0de, #339bb9);background-image:-o-linear-gradient(top, #5bc0de, #339bb9);background-image:linear-gradient(top, #5bc0de, #339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);} +.progress-info.progress-striped .bar{background-color:#5bc0de;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} +.accordion{margin-bottom:18px;} +.accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.accordion-heading{border-bottom:0;} +.accordion-heading .accordion-toggle{display:block;padding:8px 15px;} +.accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5;} +.carousel{position:relative;margin-bottom:18px;line-height:1;} +.carousel-inner{overflow:hidden;width:100%;position:relative;} +.carousel .item{display:none;position:relative;-webkit-transition:0.6s ease-in-out left;-moz-transition:0.6s ease-in-out left;-ms-transition:0.6s ease-in-out left;-o-transition:0.6s ease-in-out left;transition:0.6s ease-in-out left;} +.carousel .item>img{display:block;line-height:1;} +.carousel .active,.carousel .next,.carousel .prev{display:block;} +.carousel .active{left:0;} +.carousel .next,.carousel .prev{position:absolute;top:0;width:100%;} +.carousel .next{left:100%;} +.carousel .prev{left:-100%;} +.carousel .next.left,.carousel .prev.right{left:0;} +.carousel .active.left{left:-100%;} +.carousel .active.right{left:100%;} +.carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#ffffff;text-align:center;background:#222222;border:3px solid #ffffff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:0.5;filter:alpha(opacity=50);}.carousel-control.right{left:auto;right:15px;} +.carousel-control:hover{color:#ffffff;text-decoration:none;opacity:0.9;filter:alpha(opacity=90);} +.carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:10px 15px 5px;background:#333333;background:rgba(0, 0, 0, 0.75);} +.carousel-caption h4,.carousel-caption p{color:#ffffff;} +.hero-unit{padding:60px;margin-bottom:30px;background-color:#f5f5f5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;letter-spacing:-1px;} +.hero-unit p{font-size:18px;font-weight:200;line-height:27px;} +.pull-right{float:right;} +.pull-left{float:left;} +.hide{display:none;} +.show{display:block;} +.invisible{visibility:hidden;} diff --git a/apigen/templates/woodocs/resources/code-line.png b/apigen/templates/woodocs/resources/code-line.png new file mode 100644 index 00000000000..42f00b66f6a Binary files /dev/null and b/apigen/templates/woodocs/resources/code-line.png differ diff --git a/apigen/templates/woodocs/resources/collapsed.png b/apigen/templates/woodocs/resources/collapsed.png new file mode 100644 index 00000000000..8c6c9d7603a Binary files /dev/null and b/apigen/templates/woodocs/resources/collapsed.png differ diff --git a/apigen/templates/woodocs/resources/combined.js b/apigen/templates/woodocs/resources/combined.js new file mode 100644 index 00000000000..b40031373a9 --- /dev/null +++ b/apigen/templates/woodocs/resources/combined.js @@ -0,0 +1,1275 @@ + +var ApiGen = ApiGen || {}; +ApiGen.config = {"require":{"min":"2.8.0"},"resources":{"resources":"resources"},"templates":{"common":{"overview.latte":"index.html","combined.js.latte":"resources\/combined.js","elementlist.js.latte":"elementlist.js","404.latte":"404.html"},"optional":{"sitemap":{"filename":"sitemap.xml","template":"sitemap.xml.latte"},"opensearch":{"filename":"opensearch.xml","template":"opensearch.xml.latte"},"robots":{"filename":"robots.txt","template":"robots.txt.latte"}},"main":{"package":{"filename":"package-%s.html","template":"package.latte"},"namespace":{"filename":"namespace-%s.html","template":"namespace.latte"},"class":{"filename":"class-%s.html","template":"class.latte"},"constant":{"filename":"constant-%s.html","template":"constant.latte"},"function":{"filename":"function-%s.html","template":"function.latte"},"source":{"filename":"source-%s.html","template":"source.latte"},"tree":{"filename":"tree.html","template":"tree.latte"},"deprecated":{"filename":"deprecated.html","template":"deprecated.latte"},"todo":{"filename":"todo.html","template":"todo.latte"}}},"options":{"elementDetailsCollapsed":true,"elementsOrder":"natural"},"config":"\/usr\/local\/share\/pear\/templates\/woo\/config.neon"}; + + +/*! jQuery v1.7 jquery.com | jquery.org/license */ +(function(a,b){function cA(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cx(a){if(!cm[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){cn||(cn=c.createElement("iframe"),cn.frameBorder=cn.width=cn.height=0),b.appendChild(cn);if(!co||!cn.createElement)co=(cn.contentWindow||cn.contentDocument).document,co.write((c.compatMode==="CSS1Compat"?"":"")+""),co.close();d=co.createElement(a),co.body.appendChild(d),e=f.css(d,"display"),b.removeChild(cn)}cm[a]=e}return cm[a]}function cw(a,b){var c={};f.each(cs.concat.apply([],cs.slice(0,b)),function(){c[this]=a});return c}function cv(){ct=b}function cu(){setTimeout(cv,0);return ct=f.now()}function cl(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ck(){try{return new a.XMLHttpRequest}catch(b){}}function ce(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g0){c!=="border"&&f.each(e,function(){c||(d-=parseFloat(f.css(a,"padding"+this))||0),c==="margin"?d+=parseFloat(f.css(a,c+this))||0:d-=parseFloat(f.css(a,"border"+this+"Width"))||0});return d+"px"}d=bB(a,b,b);if(d<0||d==null)d=a.style[b]||0;d=parseFloat(d)||0,c&&f.each(e,function(){d+=parseFloat(f.css(a,"padding"+this))||0,c!=="padding"&&(d+=parseFloat(f.css(a,"border"+this+"Width"))||0),c==="margin"&&(d+=parseFloat(f.css(a,c+this))||0)});return d+"px"}function br(a,b){b.src?f.ajax({url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(bi,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)}function bq(a){var b=(a.nodeName||"").toLowerCase();b==="input"?bp(a):b!=="script"&&typeof a.getElementsByTagName!="undefined"&&f.grep(a.getElementsByTagName("input"),bp)}function bp(a){if(a.type==="checkbox"||a.type==="radio")a.defaultChecked=a.checked}function bo(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bn(a,b){var c;if(b.nodeType===1){b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase();if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(f.expando)}}function bm(a,b){if(b.nodeType===1&&!!f.hasData(a)){var c,d,e,g=f._data(a),h=f._data(b,g),i=g.events;if(i){delete h.handle,h.events={};for(c in i)for(d=0,e=i[c].length;d=0===c})}function V(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function N(){return!0}function M(){return!1}function n(a,b,c){var d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&&setTimeout(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function m(a){for(var b in a){if(b==="data"&&f.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function l(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?parseFloat(d):j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else d=b}return d}function h(a){var b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/\d/,n=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,o=/^[\],:{}\s]*$/,p=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,q=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,r=/(?:^|:|,)(?:\s*\[)+/g,s=/(webkit)[ \/]([\w.]+)/,t=/(opera)(?:.*version)?[ \/]([\w.]+)/,u=/(msie) ([\w.]+)/,v=/(mozilla)(?:.*? rv:([\w.]+))?/,w=/-([a-z]|[0-9])/ig,x=/^-ms-/,y=function(a,b){return(b+"").toUpperCase()},z=d.userAgent,A,B,C,D=Object.prototype.toString,E=Object.prototype.hasOwnProperty,F=Array.prototype.push,G=Array.prototype.slice,H=String.prototype.trim,I=Array.prototype.indexOf,J={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=n.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.7",length:0,size:function(){return this.length},toArray:function(){return G.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?F.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),B.add(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(G.apply(this,arguments),"slice",G.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:F,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j0)return;B.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").unbind("ready")}},bindReady:function(){if(!B){B=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",C,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",C),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&K()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNumeric:function(a){return a!=null&&m.test(a)&&!isNaN(a)},type:function(a){return a==null?String(a):J[D.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!E.call(a,"constructor")&&!E.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||E.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw a},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(o.test(b.replace(p,"@").replace(q,"]").replace(r,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(x,"ms-").replace(w,y)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i1?i.call(arguments,0):b,j.notifyWith(k,e)}}function l(a){return function(c){b[a]=arguments.length>1?i.call(arguments,0):c,--g||j.resolveWith(j,b)}}var b=i.call(arguments,0),c=0,d=b.length,e=Array(d),g=d,h=d,j=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred(),k=j.promise();if(d>1){for(;c
    a",d=a.getElementsByTagName("*"),e=a.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=a.getElementsByTagName("input")[0],k={leadingWhitespace:a.firstChild.nodeType===3,tbody:!a.getElementsByTagName("tbody").length,htmlSerialize:!!a.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,unknownElems:!!a.getElementsByTagName("nav").length,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:a.className!=="t",enctype:!!c.createElement("form").enctype,submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,k.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,k.optDisabled=!h.disabled;try{delete a.test}catch(v){k.deleteExpando=!1}!a.addEventListener&&a.attachEvent&&a.fireEvent&&(a.attachEvent("onclick",function(){k.noCloneEvent=!1}),a.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),k.radioValue=i.value==="t",i.setAttribute("checked","checked"),a.appendChild(i),l=c.createDocumentFragment(),l.appendChild(a.lastChild),k.checkClone=l.cloneNode(!0).cloneNode(!0).lastChild.checked,a.innerHTML="",a.style.width=a.style.paddingLeft="1px",m=c.getElementsByTagName("body")[0],o=c.createElement(m?"div":"body"),p={visibility:"hidden",width:0,height:0,border:0,margin:0,background:"none"},m&&f.extend(p,{position:"absolute",left:"-999px",top:"-999px"});for(t in p)o.style[t]=p[t];o.appendChild(a),n=m||b,n.insertBefore(o,n.firstChild),k.appendChecked=i.checked,k.boxModel=a.offsetWidth===2,"zoom"in a.style&&(a.style.display="inline",a.style.zoom=1,k.inlineBlockNeedsLayout=a.offsetWidth===2,a.style.display="",a.innerHTML="
    ",k.shrinkWrapBlocks=a.offsetWidth!==2),a.innerHTML="
    t
    ",q=a.getElementsByTagName("td"),u=q[0].offsetHeight===0,q[0].style.display="",q[1].style.display="none",k.reliableHiddenOffsets=u&&q[0].offsetHeight===0,a.innerHTML="",c.defaultView&&c.defaultView.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",a.appendChild(j),k.reliableMarginRight=(parseInt((c.defaultView.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0);if(a.attachEvent)for(t in{submit:1,change:1,focusin:1})s="on"+t,u=s in a,u||(a.setAttribute(s,"return;"),u=typeof a[s]=="function"),k[t+"Bubbles"]=u;f(function(){var a,b,d,e,g,h,i=1,j="position:absolute;top:0;left:0;width:1px;height:1px;margin:0;",l="visibility:hidden;border:0;",n="style='"+j+"border:5px solid #000;padding:0;'",p="
    "+""+"
    ";m=c.getElementsByTagName("body")[0];!m||(a=c.createElement("div"),a.style.cssText=l+"width:0;height:0;position:static;top:0;margin-top:"+i+"px",m.insertBefore(a,m.firstChild),o=c.createElement("div"),o.style.cssText=j+l,o.innerHTML=p,a.appendChild(o),b=o.firstChild,d=b.firstChild,g=b.nextSibling.firstChild.firstChild,h={doesNotAddBorder:d.offsetTop!==5,doesAddBorderForTableAndCells:g.offsetTop===5},d.style.position="fixed",d.style.top="20px",h.fixedPosition=d.offsetTop===20||d.offsetTop===15,d.style.position=d.style.top="",b.style.overflow="hidden",b.style.position="relative",h.subtractsBorderForOverflowNotVisible=d.offsetTop===-5,h.doesNotIncludeMarginInBodyOffset=m.offsetTop!==i,m.removeChild(a),o=a=null,f.extend(k,h))}),o.innerHTML="",n.removeChild(o),o=l=g=h=m=j=a=i=null;return k}(),f.boxModel=f.support.boxModel;var j=/^(?:\{.*\}|\[.*\])$/,k=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!m(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i,j=f.expando,k=typeof c=="string",l=a.nodeType,m=l?f.cache:a,n=l?a[f.expando]:a[f.expando]&&f.expando,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[f.expando]=n=++f.uuid:n=f.expando),m[n]||(m[n]={},l||(m[n].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?m[n]=f.extend(m[n],c):m[n].data=f.extend(m[n].data,c);g=h=m[n],e||(h.data||(h.data={}),h=h.data),d!==b&&(h[f.camelCase(c)]=d);if(o&&!h[c])return g.events;k?(i=h[c],i==null&&(i=h[f.camelCase(c)])):i=h;return i}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e,g,h=f.expando,i=a.nodeType,j=i?f.cache:a,k=i?a[f.expando]:f.expando;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)?b=b:b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" "));for(e=0,g=b.length;e-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];if(!arguments.length){if(g){c=f.valHooks[g.nodeName.toLowerCase()]||f.valHooks[g.type];if(c&&"get"in c&&(d=c.get(g,"value"))!==b)return d;d=g.value;return typeof d=="string"?d.replace(q,""):d==null?"":d}return b}e=f.isFunction(a);return this.each(function(d){var g=f(this),h;if(this.nodeType===1){e?h=a.call(this,d,g.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,g=a.selectedIndex,h=[],i=a.options,j=a.type==="select-one";if(g<0)return null;c=j?g:0,d=j?g+1:i.length;for(;c=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,d,e){var g,h,i,j=a.nodeType;if(!a||j===3||j===8||j===2)return b;if(e&&c in f.attrFn)return f(a)[c](d);if(!("getAttribute"in a))return f.prop(a,c,d);i=j!==1||!f.isXMLDoc(a),i&&(c=c.toLowerCase(),h=f.attrHooks[c]||(u.test(c)?x:w));if(d!==b){if(d===null){f.removeAttr(a,c);return b}if(h&&"set"in h&&i&&(g=h.set(a,d,c))!==b)return g;a.setAttribute(c,""+d);return d}if(h&&"get"in h&&i&&(g=h.get(a,c))!==null)return g;g=a.getAttribute(c);return g===null?b:g},removeAttr:function(a,b){var c,d,e,g,h=0;if(a.nodeType===1){d=(b||"").split(p),g=d.length;for(;h=0}})});var z=/\.(.*)$/,A=/^(?:textarea|input|select)$/i,B=/\./g,C=/ /g,D=/[^\w\s.|`]/g,E=/^([^\.]*)?(?:\.(.+))?$/,F=/\bhover(\.\S+)?/,G=/^key/,H=/^(?:mouse|contextmenu)|click/,I=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,J=function(a){var b=I.exec(a);b&& +(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},K=function(a,b){return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||a.id===b[2])&&(!b[3]||b[3].test(a.className))},L=function(a){return f.event.special.hover?a:a.replace(F,"mouseenter$1 mouseleave$1")};f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3||a.nodeType===8||!c||!d||!(h=f._data(a)))){d.handler&&(p=d,d=p.handler),d.guid||(d.guid=f.guid++),j=h.events,j||(h.events=j={}),i=h.handle,i||(h.handle=i=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.dispatch.apply(i.elem,arguments):b},i.elem=a),c=L(c).split(" ");for(k=0;k=0&&(h=h.slice(0,-1),k=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if((!e||f.event.customEvent[h])&&!f.event.global[h])return;c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.isTrigger=!0,c.exclusive=k,c.namespace=i.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)"):null,o=h.indexOf(":")<0?"on"+h:"",(g||!e)&&c.preventDefault();if(!e){j=f.cache;for(l in j)j[l].events&&j[l].events[h]&&f.event.trigger(c,d,j[l].handle.elem,!0);return}c.result=b,c.target||(c.target=e),d=d!=null?f.makeArray(d):[],d.unshift(c),p=f.event.special[h]||{};if(p.trigger&&p.trigger.apply(e,d)===!1)return;r=[[e,p.bindType||h]];if(!g&&!p.noBubble&&!f.isWindow(e)){s=p.delegateType||h,n=null;for(m=e.parentNode;m;m=m.parentNode)r.push([m,s]),n=m;n&&n===e.ownerDocument&&r.push([n.defaultView||n.parentWindow||a,s])}for(l=0;l=0:t===b&&(t=o[s]=r.quick?K(m,r.quick):f(m).is(s)),t&&q.push(r);q.length&&j.push({elem:m,matches:q})}d.length>e&&j.push({elem:this,matches:d.slice(e)});for(k=0;k0?this.bind(b,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),G.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),H.test(b)&&(f.event.fixHooks[b]=f.event.mouseHooks)}),function(){function x(a,b,c,e,f,g){for(var h=0,i=e.length;h0){k=j;break}}j=j[a]}e[h]=k}}}function w(a,b,c,e,f,g){for(var h=0,i=e.length;h+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d="sizcache"+(Math.random()+"").replace(".",""),e=0,g=Object.prototype.toString,h=!1,i=!0,j=/\\/g,k=/\r\n/g,l=/\W/;[0,0].sort(function(){i=!1;return 0});var m=function(b,d,e,f){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return e;var i,j,k,l,n,q,r,t,u=!0,v=m.isXML(d),w=[],x=b;do{a.exec(""),i=a.exec(x);if(i){x=i[3],w.push(i[1]);if(i[2]){l=i[3];break}}}while(i);if(w.length>1&&p.exec(b))if(w.length===2&&o.relative[w[0]])j=y(w[0]+w[1],d,f);else{j=o.relative[w[0]]?[d]:m(w.shift(),d);while(w.length)b=w.shift(),o.relative[b]&&(b+=w.shift()),j=y(b,j,f)}else{!f&&w.length>1&&d.nodeType===9&&!v&&o.match.ID.test(w[0])&&!o.match.ID.test(w[w.length-1])&&(n=m.find(w.shift(),d,v),d=n.expr?m.filter(n.expr,n.set)[0]:n.set[0]);if(d){n=f?{expr:w.pop(),set:s(f)}:m.find(w.pop(),w.length===1&&(w[0]==="~"||w[0]==="+")&&d.parentNode?d.parentNode:d,v),j=n.expr?m.filter(n.expr,n.set):n.set,w.length>0?k=s(j):u=!1;while(w.length)q=w.pop(),r=q,o.relative[q]?r=w.pop():q="",r==null&&(r=d),o.relative[q](k,r,v)}else k=w=[]}k||(k=j),k||m.error(q||b);if(g.call(k)==="[object Array]")if(!u)e.push.apply(e,k);else if(d&&d.nodeType===1)for(t=0;k[t]!=null;t++)k[t]&&(k[t]===!0||k[t].nodeType===1&&m.contains(d,k[t]))&&e.push(j[t]);else for(t=0;k[t]!=null;t++)k[t]&&k[t].nodeType===1&&e.push(j[t]);else s(k,e);l&&(m(l,h,e,f),m.uniqueSort(e));return e};m.uniqueSort=function(a){if(u){h=i,a.sort(u);if(h)for(var b=1;b0},m.find=function(a,b,c){var d,e,f,g,h,i;if(!a)return[];for(e=0,f=o.order.length;e":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!l.test(b)){b=b.toLowerCase();for(;e=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(j,"")},TAG:function(a,b){return a[1].replace(j,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||m.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&m.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(j,"");!f&&o.attrMap[g]&&(a[1]=o.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(j,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=m(b[3],null,null,c);else{var g=m.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(o.match.POS.test(b[0])||o.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!m(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return bc[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=o.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||n([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||!!a.nodeName&&a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=m.attr?m.attr(a,c):o.attrHandle[c]?o.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":!f&&m.attr?d!=null:f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=o.setFilters[e];if(f)return f(a,c,b,d)}}},p=o.match.POS,q=function(a,b){return"\\"+(b-0+1)};for(var r in o.match)o.match[r]=new RegExp(o.match[r].source+/(?![^\[]*\])(?![^\(]*\))/.source),o.leftMatch[r]=new RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[r].source.replace(/\\(\d+)/g,q));var s=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(t){s=function(a,b){var c=0,d=b||[];if(g.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var e=a.length;c",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(o.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},o.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(o.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(o.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=m,b=c.createElement("div"),d="__sizzle__";b.innerHTML="

    ";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){m=function(b,e,f,g){e=e||c;if(!g&&!m.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return s(e.getElementsByTagName(b),f);if(h[2]&&o.find.CLASS&&e.getElementsByClassName)return s(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return s([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return s([],f);if(i.id===h[3])return s([i],f)}try{return s(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var k=e,l=e.getAttribute("id"),n=l||d,p=e.parentNode,q=/^\s*[+~]/.test(b);l?n=n.replace(/'/g,"\\$&"):e.setAttribute("id",n),q&&p&&(e=e.parentNode);try{if(!q||p)return s(e.querySelectorAll("[id='"+n+"'] "+b),f)}catch(r){}finally{l||k.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)m[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}m.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!m.isXML(a))try{if(e||!o.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return m(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="
    ";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;o.order.splice(1,0,"CLASS"),o.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?m.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?m.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:m.contains=function(){return!1},m.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var y=function(a,b,c){var d,e=[],f="",g=b.nodeType?[b]:b;while(d=o.match.PSEUDO.exec(a))f+=d[0],a=a.replace(o.match.PSEUDO,"");a=o.relative[a]?a+"*":a;for(var h=0,i=g.length;h0)for(h=g;h=0:f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h=1;while(g&&g.ownerDocument&&g!==b){for(d=0;d-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(V(c[0])||V(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c),g=S.call(arguments);O.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!U[a]?f.unique(e):e,(this.length>1||Q.test(d))&&P.test(a)&&(e=e.reverse());return this.pushStack(e,a,g.join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var Y="abbr article aside audio canvas datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",Z=/ jQuery\d+="(?:\d+|null)"/g,$=/^\s+/,_=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,ba=/<([\w:]+)/,bb=/
    ","
    "],tr:[2,"","
    "],td:[3,"","
    "],col:[2,"","
    "],area:[1,"",""],_default:[0,"",""]},bk=X(c);bj.optgroup=bj.option,bj.tbody=bj.tfoot=bj.colgroup=bj.caption=bj.thead,bj.th=bj.td,f.support.htmlSerialize||(bj._default=[1,"div
    ","
    "]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){f(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after" +,arguments);a.push.apply(a,f(arguments[0]).toArray());return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(Z,""):null;if(typeof a=="string"&&!bd.test(a)&&(f.support.leadingWhitespace||!$.test(a))&&!bj[(ba.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(_,"<$1>");try{for(var c=0,d=this.length;c1&&l0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d=a.cloneNode(!0),e,g,h;if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bn(a,d),e=bo(a),g=bo(d);for(h=0;e[h];++h)g[h]&&bn(e[h],g[h])}if(b){bm(a,d);if(c){e=bo(a),g=bo(d);for(h=0;e[h];++h)bm(e[h],g[h])}}e=g=null;return d},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!bc.test(k))k=b.createTextNode(k);else{k=k.replace(_,"<$1>");var l=(ba.exec(k)||["",""])[1].toLowerCase(),m=bj[l]||bj._default,n=m[0],o=b.createElement("div");b===c?bk.appendChild(o):X(b).appendChild(o),o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=bb.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]===""&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&$.test(k)&&o.insertBefore(b.createTextNode($.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return bt.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNumeric(b)?"alpha(opacity="+b*100+")":"",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bs,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bs.test(g)?g.replace(bs,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bB(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bC=function(a,c){var d,e,g;c=c.replace(bu,"-$1").toLowerCase();if(!(e=a.ownerDocument.defaultView))return b;if(g=e.getComputedStyle(a,null))d=g.getPropertyValue(c),d===""&&!f.contains(a.ownerDocument.documentElement,a)&&(d=f.style(a,c));return d}),c.documentElement.currentStyle&&(bD=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f===null&&g&&(e=g[b])&&(f=e),!bv.test(f)&&bw.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f||0,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),bB=bC||bD,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style&&a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bF=/%20/g,bG=/\[\]$/,bH=/\r?\n/g,bI=/#.*$/,bJ=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bK=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bL=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bM=/^(?:GET|HEAD)$/,bN=/^\/\//,bO=/\?/,bP=/)<[^<]*)*<\/script>/gi,bQ=/^(?:select|textarea)/i,bR=/\s+/,bS=/([?&])_=[^&]*/,bT=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bU=f.fn.load,bV={},bW={},bX,bY,bZ=["*/"]+["*"];try{bX=e.href}catch(b$){bX=c.createElement("a"),bX.href="",bX=bX.href}bY=bT.exec(bX.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bU)return bU.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("
    ").append(c.replace(bP,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bQ.test(this.nodeName)||bK.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bH,"\r\n")}}):{name:b.name,value:c.replace(bH,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.bind(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?cb(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),cb(a,b);return a},ajaxSettings:{url:bX,isLocal:bL.test(bY[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bZ},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:b_(bV),ajaxTransport:b_(bW),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?cd(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=ce(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.fireWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f.Callbacks("once memory"),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bJ.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.add,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bI,"").replace(bN,bY[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bR),d.crossDomain==null&&(r=bT.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bY[1]&&r[2]==bY[2]&&(r[3]||(r[1]==="http:"?80:443))==(bY[3]||(bY[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),ca(bV,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bM.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bO.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bS,"$1_="+x);d.url=y+(y===d.url?(bO.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bZ+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=ca(bW,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){s<2?w(-1,z):f.error(z)}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)cc(g,a[g],c,e);return d.join("&").replace(bF,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cf=f.now(),cg=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cf++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(cg.test(b.url)||e&&cg.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(cg,l),b.url===j&&(e&&(k=k.replace(cg,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var ch=a.ActiveXObject?function(){for(var a in cj)cj[a](0,1)}:!1,ci=0,cj;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ck()||cl()}:ck,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,ch&&delete cj[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++ci,ch&&(cj||(cj={},f(a).unload(ch)),cj[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var cm={},cn,co,cp=/^(?:toggle|show|hide)$/,cq=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cr,cs=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],ct;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cw("show",3),a,b,c);for(var g=0,h=this.length;g=i.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),i.animatedProperties[this.prop]=!0;for(b in i.animatedProperties)i.animatedProperties[b]!==!0&&(g=!1);if(g){i.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){h.style["overflow"+b]=i.overflow[a]}),i.hide&&f(h).hide();if(i.hide||i.show)for(b in i.animatedProperties)f.style(h,b,i.orig[b]),f.removeData(h,"fxshow"+b,!0),f.removeData(h,"toggle"+b,!0);d=i.complete,d&&(i.complete=!1,d.call(h))}return!1}i.duration==Infinity?this.now=e:(c=e-this.startTime,this.state=c/i.duration,this.pos=f.easing[i.animatedProperties[this.prop]](this.state,c,0,1,i.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){var a,b=f.timers,c=0;for(;c-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cz.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cz.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cA(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cA(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a?a.style?parseFloat(f.css(a,d,"padding")):this[d]():null},f.fn["outer"+c]=function(a){var b=this[0];return b?b.style?parseFloat(f.css(b,d,a?"margin":"border")):this[d]():null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c],h=e.document.body;return e.document.compatMode==="CSS1Compat"&&g||h&&h["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var i=f.css(e,d),j=parseFloat(i);return f.isNumeric(j)?j:i}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f})(window); +/** + * Cookie plugin + * + * Copyright (c) 2006 Klaus Hartl (stilbuero.de) + * Dual licensed under the MIT and GPL licenses: + * http://www.opensource.org/licenses/mit-license.php + * http://www.gnu.org/licenses/gpl.html + * + */ + +/** + * Create a cookie with the given name and value and other optional parameters. + * + * @example $.cookie('the_cookie', 'the_value'); + * @desc Set the value of a cookie. + * @example $.cookie('the_cookie', 'the_value', { expires: 7, path: '/', domain: 'jquery.com', secure: true }); + * @desc Create a cookie with all available options. + * @example $.cookie('the_cookie', 'the_value'); + * @desc Create a session cookie. + * @example $.cookie('the_cookie', null); + * @desc Delete a cookie by passing null as value. Keep in mind that you have to use the same path and domain + * used when the cookie was set. + * + * @param String name The name of the cookie. + * @param String value The value of the cookie. + * @param Object options An object literal containing key/value pairs to provide optional cookie attributes. + * @option Number|Date expires Either an integer specifying the expiration date from now on in days or a Date object. + * If a negative value is specified (e.g. a date in the past), the cookie will be deleted. + * If set to null or omitted, the cookie will be a session cookie and will not be retained + * when the the browser exits. + * @option String path The value of the path atribute of the cookie (default: path of page that created the cookie). + * @option String domain The value of the domain attribute of the cookie (default: domain of page that created the cookie). + * @option Boolean secure If true, the secure attribute of the cookie will be set and the cookie transmission will + * require a secure protocol (like HTTPS). + * @type undefined + * + * @name $.cookie + * @cat Plugins/Cookie + * @author Klaus Hartl/klaus.hartl@stilbuero.de + */ + +/** + * Get the value of a cookie with the given name. + * + * @example $.cookie('the_cookie'); + * @desc Get the value of a cookie. + * + * @param String name The name of the cookie. + * @return The value of the cookie. + * @type String + * + * @name $.cookie + * @cat Plugins/Cookie + * @author Klaus Hartl/klaus.hartl@stilbuero.de + */ +jQuery.cookie = function(name, value, options) { + if (typeof value != 'undefined') { // name and value given, set cookie + options = options || {}; + if (value === null) { + value = ''; + options.expires = -1; + } + var expires = ''; + if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) { + var date; + if (typeof options.expires == 'number') { + date = new Date(); + date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000)); + } else { + date = options.expires; + } + expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE + } + // CAUTION: Needed to parenthesize options.path and options.domain + // in the following expressions, otherwise they evaluate to undefined + // in the packed version for some reason... + var path = options.path ? '; path=' + (options.path) : ''; + var domain = options.domain ? '; domain=' + (options.domain) : ''; + var secure = options.secure ? '; secure' : ''; + document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join(''); + } else { // only name given, get cookie + var cookieValue = null; + if (document.cookie && document.cookie != '') { + var cookies = document.cookie.split(';'); + for (var i = 0; i < cookies.length; i++) { + var cookie = jQuery.trim(cookies[i]); + // Does this cookie string begin with the name we want? + if (cookie.substring(0, name.length + 1) == (name + '=')) { + cookieValue = decodeURIComponent(cookie.substring(name.length + 1)); + break; + } + } + } + return cookieValue; + } +}; +/*! + * sprintf and vsprintf for jQuery + * somewhat based on http://jan.moesen.nu/code/javascript/sprintf-and-printf-in-javascript/ + * Copyright (c) 2008 Sabin Iacob (m0n5t3r) + * @license http://www.gnu.org/licenses/gpl.html + * @project jquery.sprintf + */ +(function(d){var a={b:function(e){return parseInt(e,10).toString(2)},c:function(e){return String.fromCharCode(parseInt(e,10))},d:function(e){return parseInt(e,10)},u:function(e){return Math.abs(e)},f:function(f,e){e=parseInt(e,10);f=parseFloat(f);if(isNaN(e&&f)){return NaN}return e&&f.toFixed(e)||f},o:function(e){return parseInt(e,10).toString(8)},s:function(e){return e},x:function(e){return(""+parseInt(e,10).toString(16)).toLowerCase()},X:function(e){return(""+parseInt(e,10).toString(16)).toUpperCase()}};var c=/%(?:(\d+)?(?:\.(\d+))?|\(([^)]+)\))([%bcdufosxX])/g;var b=function(f){if(f.length==1&&typeof f[0]=="object"){f=f[0];return function(i,h,k,j,g,m,l){return a[g](f[j])}}else{var e=0;return function(i,h,k,j,g,m,l){if(g=="%"){return"%"}return a[g](f[e++],k)}}};d.extend({sprintf:function(f){var e=Array.apply(null,arguments).slice(1);return f.replace(c,b(e))},vsprintf:function(f,e){return f.replace(c,b(e))}})})(jQuery); + +/*! + * jQuery Autocomplete plugin 1.1 + * + * Copyright (c) 2009 Jörn Zaefferer + * + * Dual licensed under the MIT and GPL licenses: + * http://www.opensource.org/licenses/mit-license.php + * http://www.gnu.org/licenses/gpl.html + * + * Revision: $Id: jquery.autocomplete.js 15 2009-08-22 10:30:27Z joern.zaefferer $ + */ + +;(function($) { + +$.fn.extend({ + autocomplete: function(urlOrData, options) { + var isUrl = typeof urlOrData == "string"; + options = $.extend({}, $.Autocompleter.defaults, { + url: isUrl ? urlOrData : null, + data: isUrl ? null : urlOrData, + delay: isUrl ? $.Autocompleter.defaults.delay : 10, + max: options && !options.scroll ? 10 : 150 + }, options); + + // if highlight is set to false, replace it with a do-nothing function + options.highlight = options.highlight || function(value) { return value; }; + + // if the formatMatch option is not specified, then use formatItem for backwards compatibility + options.formatMatch = options.formatMatch || options.formatItem; + + options.show = options.show || function(list) {}; + + return this.each(function() { + new $.Autocompleter(this, options); + }); + }, + result: function(handler) { + return this.bind("result", handler); + }, + search: function(handler) { + return this.trigger("search", [handler]); + }, + flushCache: function() { + return this.trigger("flushCache"); + }, + setOptions: function(options){ + return this.trigger("setOptions", [options]); + }, + unautocomplete: function() { + return this.trigger("unautocomplete"); + } +}); + +$.Autocompleter = function(input, options) { + + var KEY = { + UP: 38, + DOWN: 40, + DEL: 46, + TAB: 9, + RETURN: 13, + ESC: 27, + COMMA: 188, + PAGEUP: 33, + PAGEDOWN: 34, + BACKSPACE: 8 + }; + + // Create $ object for input element + var $input = $(input).attr("autocomplete", "off").addClass(options.inputClass); + + var timeout; + var previousValue = ""; + var cache = $.Autocompleter.Cache(options); + var hasFocus = 0; + var lastKeyPressCode; + var config = { + mouseDownOnSelect: false + }; + var select = $.Autocompleter.Select(options, input, selectCurrent, config); + + // only opera doesn't trigger keydown multiple times while pressed, others don't work with keypress at all + $input.bind(($.browser.opera ? "keypress" : "keydown") + ".autocomplete", function(event) { + // a keypress means the input has focus + // avoids issue where input had focus before the autocomplete was applied + hasFocus = 1; + // track last key pressed + lastKeyPressCode = event.keyCode; + switch(event.keyCode) { + + case KEY.UP: + event.preventDefault(); + if ( select.visible() ) { + select.prev(); + } else { + onChange(0, true); + } + break; + + case KEY.DOWN: + event.preventDefault(); + if ( select.visible() ) { + select.next(); + } else { + onChange(0, true); + } + break; + + case KEY.PAGEUP: + event.preventDefault(); + if ( select.visible() ) { + select.pageUp(); + } else { + onChange(0, true); + } + break; + + case KEY.PAGEDOWN: + event.preventDefault(); + if ( select.visible() ) { + select.pageDown(); + } else { + onChange(0, true); + } + break; + + // matches also semicolon + case options.multiple && $.trim(options.multipleSeparator) == "," && KEY.COMMA: + case KEY.TAB: + case KEY.RETURN: + if( selectCurrent() ) { + //event.preventDefault(); + //return false; + } + break; + + case KEY.ESC: + select.hide(); + break; + + default: + clearTimeout(timeout); + timeout = setTimeout(onChange, options.delay); + break; + } + }).focus(function(){ + // track whether the field has focus, we shouldn't process any + // results if the field no longer has focus + hasFocus++; + }).blur(function() { + hasFocus = 0; + if (!config.mouseDownOnSelect) { + hideResults(); + } + }).click(function() { + // show select when clicking in a focused field + if ( hasFocus++ > 1 && !select.visible() ) { + onChange(0, true); + } + }).bind("search", function() { + // TODO why not just specifying both arguments? + var fn = (arguments.length > 1) ? arguments[1] : null; + function findValueCallback(q, data) { + var result; + if( data && data.length ) { + for (var i=0; i < data.length; i++) { + if( data[i].result.toLowerCase() == q.toLowerCase() ) { + result = data[i]; + break; + } + } + } + if( typeof fn == "function" ) fn(result); + else $input.trigger("result", result && [result.data, result.value]); + } + $.each(trimWords($input.val()), function(i, value) { + request(value, findValueCallback, findValueCallback); + }); + }).bind("flushCache", function() { + cache.flush(); + }).bind("setOptions", function() { + $.extend(options, arguments[1]); + // if we've updated the data, repopulate + if ( "data" in arguments[1] ) + cache.populate(); + }).bind("unautocomplete", function() { + select.unbind(); + $input.unbind(); + $(input.form).unbind(".autocomplete"); + }); + + + function selectCurrent() { + var selected = select.selected(); + if( !selected ) + return false; + + var v = selected.result; + previousValue = v; + + if ( options.multiple ) { + var words = trimWords($input.val()); + if ( words.length > 1 ) { + var seperator = options.multipleSeparator.length; + var cursorAt = $(input).selection().start; + var wordAt, progress = 0; + $.each(words, function(i, word) { + progress += word.length; + if (cursorAt <= progress) { + wordAt = i; + return false; + } + progress += seperator; + }); + words[wordAt] = v; + // TODO this should set the cursor to the right position, but it gets overriden somewhere + //$.Autocompleter.Selection(input, progress + seperator, progress + seperator); + v = words.join( options.multipleSeparator ); + } + v += options.multipleSeparator; + } + + $input.val(v); + hideResultsNow(); + $input.trigger("result", [selected.data, selected.value]); + return true; + } + + function onChange(crap, skipPrevCheck) { + if( lastKeyPressCode == KEY.DEL ) { + select.hide(); + return; + } + + var currentValue = $input.val(); + + if ( !skipPrevCheck && currentValue == previousValue ) + return; + + previousValue = currentValue; + + currentValue = lastWord(currentValue); + if ( currentValue.length >= options.minChars) { + $input.addClass(options.loadingClass); + if (!options.matchCase) + currentValue = currentValue.toLowerCase(); + request(currentValue, receiveData, hideResultsNow); + } else { + stopLoading(); + select.hide(); + } + }; + + function trimWords(value) { + if (!value) + return [""]; + if (!options.multiple) + return [$.trim(value)]; + return $.map(value.split(options.multipleSeparator), function(word) { + return $.trim(value).length ? $.trim(word) : null; + }); + } + + function lastWord(value) { + if ( !options.multiple ) + return value; + var words = trimWords(value); + if (words.length == 1) + return words[0]; + var cursorAt = $(input).selection().start; + if (cursorAt == value.length) { + words = trimWords(value) + } else { + words = trimWords(value.replace(value.substring(cursorAt), "")); + } + return words[words.length - 1]; + } + + // fills in the input box w/the first match (assumed to be the best match) + // q: the term entered + // sValue: the first matching result + function autoFill(q, sValue){ + // autofill in the complete box w/the first match as long as the user hasn't entered in more data + // if the last user key pressed was backspace, don't autofill + if( options.autoFill && (lastWord($input.val()).toLowerCase() == q.toLowerCase()) && lastKeyPressCode != KEY.BACKSPACE ) { + // fill in the value (keep the case the user has typed) + $input.val($input.val() + sValue.substring(lastWord(previousValue).length)); + // select the portion of the value not typed by the user (so the next character will erase) + $(input).selection(previousValue.length, previousValue.length + sValue.length); + } + }; + + function hideResults() { + clearTimeout(timeout); + timeout = setTimeout(hideResultsNow, 200); + }; + + function hideResultsNow() { + var wasVisible = select.visible(); + select.hide(); + clearTimeout(timeout); + stopLoading(); + if (options.mustMatch) { + // call search and run callback + $input.search( + function (result){ + // if no value found, clear the input box + if( !result ) { + if (options.multiple) { + var words = trimWords($input.val()).slice(0, -1); + $input.val( words.join(options.multipleSeparator) + (words.length ? options.multipleSeparator : "") ); + } + else { + $input.val( "" ); + $input.trigger("result", null); + } + } + } + ); + } + }; + + function receiveData(q, data) { + if ( data && data.length && hasFocus ) { + stopLoading(); + select.display(data, q); + autoFill(q, data[0].value); + select.show(); + } else { + hideResultsNow(); + } + }; + + function request(term, success, failure) { + if (!options.matchCase) + term = term.toLowerCase(); + var data = cache.load(term); + // recieve the cached data + if (data && data.length) { + success(term, data); + // if an AJAX url has been supplied, try loading the data now + } else if( (typeof options.url == "string") && (options.url.length > 0) ){ + + var extraParams = { + timestamp: +new Date() + }; + $.each(options.extraParams, function(key, param) { + extraParams[key] = typeof param == "function" ? param() : param; + }); + + $.ajax({ + // try to leverage ajaxQueue plugin to abort previous requests + mode: "abort", + // limit abortion to this input + port: "autocomplete" + input.name, + dataType: options.dataType, + url: options.url, + data: $.extend({ + q: lastWord(term), + limit: options.max + }, extraParams), + success: function(data) { + var parsed = options.parse && options.parse(data) || parse(data); + cache.add(term, parsed); + success(term, parsed); + } + }); + } else { + // if we have a failure, we need to empty the list -- this prevents the the [TAB] key from selecting the last successful match + select.emptyList(); + failure(term); + } + }; + + function parse(data) { + var parsed = []; + var rows = data.split("\n"); + for (var i=0; i < rows.length; i++) { + var row = $.trim(rows[i]); + if (row) { + row = row.split("|"); + parsed[parsed.length] = { + data: row, + value: row[0], + result: options.formatResult && options.formatResult(row, row[0]) || row[0] + }; + } + } + return parsed; + }; + + function stopLoading() { + $input.removeClass(options.loadingClass); + }; + +}; + +$.Autocompleter.defaults = { + inputClass: "ac_input", + resultsClass: "ac_results", + loadingClass: "ac_loading", + minChars: 1, + delay: 400, + matchCase: false, + matchSubset: true, + matchContains: false, + cacheLength: 10, + max: 100, + mustMatch: false, + extraParams: {}, + selectFirst: true, + formatItem: function(row) { return row[0]; }, + formatMatch: null, + autoFill: false, + width: 0, + multiple: false, + multipleSeparator: ", ", + highlight: function(value, term) { + return value.replace(new RegExp("(?![^&;]+;)(?!<[^<>]*)(" + term.replace(/([\^\$\(\)\[\]\{\}\*\.\+\?\|\\])/gi, "\\$1") + ")(?![^<>]*>)(?![^&;]+;)", "gi"), "$1"); + }, + scroll: true, + scrollHeight: 180 +}; + +$.Autocompleter.Cache = function(options) { + + var data = {}; + var length = 0; + + function matchSubset(s, sub) { + if (!options.matchCase) + s = s.toLowerCase(); + var i = s.indexOf(sub); + if (options.matchContains == "word"){ + i = s.toLowerCase().search("\\b" + sub.toLowerCase()); + } + if (i == -1) return false; + return i == 0 || options.matchContains; + }; + + function add(q, value) { + if (length > options.cacheLength){ + flush(); + } + if (!data[q]){ + length++; + } + data[q] = value; + } + + function populate(){ + if( !options.data ) return false; + // track the matches + var stMatchSets = {}, + nullData = 0; + + // no url was specified, we need to adjust the cache length to make sure it fits the local data store + if( !options.url ) options.cacheLength = 1; + + // track all options for minChars = 0 + stMatchSets[""] = []; + + // loop through the array and create a lookup structure + for ( var i = 0, ol = options.data.length; i < ol; i++ ) { + var rawValue = options.data[i]; + // if rawValue is a string, make an array otherwise just reference the array + rawValue = (typeof rawValue == "string") ? [rawValue] : rawValue; + + var value = options.formatMatch(rawValue, i+1, options.data.length); + if ( value === false ) + continue; + + var firstChar = value.charAt(0).toLowerCase(); + // if no lookup array for this character exists, look it up now + if( !stMatchSets[firstChar] ) + stMatchSets[firstChar] = []; + + // if the match is a string + var row = { + value: value, + data: rawValue, + result: options.formatResult && options.formatResult(rawValue) || value + }; + + // push the current match into the set list + stMatchSets[firstChar].push(row); + + // keep track of minChars zero items + if ( nullData++ < options.max ) { + stMatchSets[""].push(row); + } + }; + + // add the data items to the cache + $.each(stMatchSets, function(i, value) { + // increase the cache size + options.cacheLength++; + // add to the cache + add(i, value); + }); + } + + // populate any existing data + setTimeout(populate, 25); + + function flush(){ + data = {}; + length = 0; + } + + return { + flush: flush, + add: add, + populate: populate, + load: function(q) { + if (!options.cacheLength || !length) + return null; + /* + * if dealing w/local data and matchContains than we must make sure + * to loop through all the data collections looking for matches + */ + if( !options.url && options.matchContains ){ + // track all matches + var csub = []; + // loop through all the data grids for matches + for( var k in data ){ + // don't search through the stMatchSets[""] (minChars: 0) cache + // this prevents duplicates + if( k.length > 0 ){ + var c = data[k]; + $.each(c, function(i, x) { + // if we've got a match, add it to the array + if (matchSubset(x.value, q)) { + csub.push(x); + } + }); + } + } + return csub; + } else + // if the exact item exists, use it + if (data[q]){ + return data[q]; + } else + if (options.matchSubset) { + for (var i = q.length - 1; i >= options.minChars; i--) { + var c = data[q.substr(0, i)]; + if (c) { + var csub = []; + $.each(c, function(i, x) { + if (matchSubset(x.value, q)) { + csub[csub.length] = x; + } + }); + return csub; + } + } + } + return null; + } + }; +}; + +$.Autocompleter.Select = function (options, input, select, config) { + var CLASSES = { + ACTIVE: "ac_over" + }; + + var listItems, + active = -1, + data, + term = "", + needsInit = true, + element, + list; + + // Create results + function init() { + if (!needsInit) + return; + element = $("
    ") + .hide() + .addClass(options.resultsClass) + .css("position", "absolute") + .appendTo(document.body); + + list = $("
      ").appendTo(element).mouseover( function(event) { + if(target(event).nodeName && target(event).nodeName.toUpperCase() == 'LI') { + active = $("li", list).removeClass(CLASSES.ACTIVE).index(target(event)); + $(target(event)).addClass(CLASSES.ACTIVE); + } + }).click(function(event) { + $(target(event)).addClass(CLASSES.ACTIVE); + select(); + // TODO provide option to avoid setting focus again after selection? useful for cleanup-on-focus + input.focus(); + return false; + }).mousedown(function() { + config.mouseDownOnSelect = true; + }).mouseup(function() { + config.mouseDownOnSelect = false; + }); + + if( options.width > 0 ) + element.css("width", options.width); + + needsInit = false; + } + + function target(event) { + var element = event.target; + while(element && element.tagName != "LI") + element = element.parentNode; + // more fun with IE, sometimes event.target is empty, just ignore it then + if(!element) + return []; + return element; + } + + function moveSelect(step) { + listItems.slice(active, active + 1).removeClass(CLASSES.ACTIVE); + movePosition(step); + var activeItem = listItems.slice(active, active + 1).addClass(CLASSES.ACTIVE); + if(options.scroll) { + var offset = 0; + listItems.slice(0, active).each(function() { + offset += this.offsetHeight; + }); + if((offset + activeItem[0].offsetHeight - list.scrollTop()) > list[0].clientHeight) { + list.scrollTop(offset + activeItem[0].offsetHeight - list.innerHeight()); + } else if(offset < list.scrollTop()) { + list.scrollTop(offset); + } + } + }; + + function movePosition(step) { + active += step; + if (active < 0) { + active = listItems.size() - 1; + } else if (active >= listItems.size()) { + active = 0; + } + } + + function limitNumberOfItems(available) { + return options.max && options.max < available + ? options.max + : available; + } + + function fillList() { + list.empty(); + var max = limitNumberOfItems(data.length); + for (var i=0; i < max; i++) { + if (!data[i]) + continue; + var formatted = options.formatItem(data[i].data, i+1, max, data[i].value, term); + if ( formatted === false ) + continue; + var li = $("
    • ").html( options.highlight(formatted, term) ).addClass(i%2 == 0 ? "ac_even" : "ac_odd").appendTo(list)[0]; + $.data(li, "ac_data", data[i]); + } + listItems = list.find("li"); + if ( options.selectFirst ) { + listItems.slice(0, 1).addClass(CLASSES.ACTIVE); + active = 0; + } + // apply bgiframe if available + if ( $.fn.bgiframe ) + list.bgiframe(); + } + + return { + display: function(d, q) { + init(); + data = d; + term = q; + fillList(); + }, + next: function() { + moveSelect(1); + }, + prev: function() { + moveSelect(-1); + }, + pageUp: function() { + if (active != 0 && active - 8 < 0) { + moveSelect( -active ); + } else { + moveSelect(-8); + } + }, + pageDown: function() { + if (active != listItems.size() - 1 && active + 8 > listItems.size()) { + moveSelect( listItems.size() - 1 - active ); + } else { + moveSelect(8); + } + }, + hide: function() { + element && element.hide(); + listItems && listItems.removeClass(CLASSES.ACTIVE); + active = -1; + }, + visible : function() { + return element && element.is(":visible"); + }, + current: function() { + return this.visible() && (listItems.filter("." + CLASSES.ACTIVE)[0] || options.selectFirst && listItems[0]); + }, + show: function() { + var offset = $(input).offset(); + element.css({ + width: typeof options.width == "string" || options.width > 0 ? options.width : $(input).innerWidth(), + top: offset.top + input.offsetHeight, + left: offset.left + }).show(); + options.show(element); + if(options.scroll) { + list.scrollTop(0); + list.css({ + maxHeight: options.scrollHeight, + overflow: 'auto' + }); + + if($.browser.msie && typeof document.body.style.maxHeight === "undefined") { + var listHeight = 0; + listItems.each(function() { + listHeight += this.offsetHeight; + }); + var scrollbarsVisible = listHeight > options.scrollHeight; + list.css('height', scrollbarsVisible ? options.scrollHeight : listHeight ); + if (!scrollbarsVisible) { + // IE doesn't recalculate width when scrollbar disappears + listItems.width( list.width() - parseInt(listItems.css("padding-left")) - parseInt(listItems.css("padding-right")) ); + } + } + + } + }, + selected: function() { + var selected = listItems && listItems.filter("." + CLASSES.ACTIVE).removeClass(CLASSES.ACTIVE); + return selected && selected.length && $.data(selected[0], "ac_data"); + }, + emptyList: function (){ + list && list.empty(); + }, + unbind: function() { + element && element.remove(); + } + }; +}; + +$.fn.selection = function(start, end) { + if (start !== undefined) { + return this.each(function() { + if( this.createTextRange ){ + var selRange = this.createTextRange(); + if (end === undefined || start == end) { + selRange.move("character", start); + selRange.select(); + } else { + selRange.collapse(true); + selRange.moveStart("character", start); + selRange.moveEnd("character", end); + selRange.select(); + } + } else if( this.setSelectionRange ){ + this.setSelectionRange(start, end); + } else if( this.selectionStart ){ + this.selectionStart = start; + this.selectionEnd = end; + } + }); + } + var field = this[0]; + if ( field.createTextRange ) { + var range = document.selection.createRange(), + orig = field.value, + teststring = "<->", + textLength = range.text.length; + range.text = teststring; + var caretAt = field.value.indexOf(teststring); + field.value = orig; + this.selection(caretAt, caretAt + textLength); + return { + start: caretAt, + end: caretAt + textLength + } + } else if( field.selectionStart !== undefined ){ + return { + start: field.selectionStart, + end: field.selectionEnd + } + } +}; + +})(jQuery); +/** + * jQuery.fn.sortElements + * -------------- + * @author James Padolsey (http://james.padolsey.com) + * @version 0.11 + * @updated 18-MAR-2010 + * -------------- + * @param Function comparator: + * Exactly the same behaviour as [1,2,3].sort(comparator) + * + * @param Function getSortable + * A function that should return the element that is + * to be sorted. The comparator will run on the + * current collection, but you may want the actual + * resulting sort to occur on a parent or another + * associated element. + * + * E.g. $('td').sortElements(comparator, function(){ + * return this.parentNode; + * }) + * + * The
    ) will be sorted instead + * of the + + {foreach $class->annotations['todo'] as $description} + {sep}{/sep} + {/foreach} + + {/foreach} + {/define} + + {if $todoClasses} +

    Classes summary

    +
    's parent (
    itself. + */ +jQuery.fn.sortElements = (function(){ + + var sort = [].sort; + + return function(comparator, getSortable) { + + getSortable = getSortable || function(){return this;}; + + var placements = this.map(function(){ + + var sortElement = getSortable.call(this), + parentNode = sortElement.parentNode, + + // Since the element itself will change position, we have + // to have some way of storing it's original position in + // the DOM. The easiest way is to have a 'flag' node: + nextSibling = parentNode.insertBefore( + document.createTextNode(''), + sortElement.nextSibling + ); + + return function() { + + if (parentNode === this) { + throw new Error( + "You can't sort elements if any one is a descendant of another." + ); + } + + // Insert before flag: + parentNode.insertBefore(this, nextSibling); + // Remove flag: + parentNode.removeChild(nextSibling); + + }; + + }); + + return sort.call(this, comparator).each(function(i){ + placements[i].call(getSortable.call(this)); + }); + + }; + +})(); +/*! + * ApiGen 2.8.0 - API documentation generator for PHP 5.3+ + * + * Copyright (c) 2010-2011 David Grudl (http://davidgrudl.com) + * Copyright (c) 2011-2012 Jaroslav Hanslík (https://github.com/kukulich) + * Copyright (c) 2011-2012 Ondřej Nešpor (https://github.com/Andrewsville) + * Copyright (c) 2012 Olivier Laviale (https://github.com/olvlvl) + * + * For the full copyright and license information, please view + * the file LICENSE.md that was distributed with this source code. + */ + +$(function() { + var $document = $(document); + var $navigation = $('#navigation'); + var navigationHeight = $('#navigation').height(); + var $left = $('#left'); + var $right = $('#right'); + var $rightInner = $('#rightInner'); + var $splitter = $('#splitter'); + var $groups = $('#groups'); + var $content = $('#content'); + + // Menu + + // Hide deep packages and namespaces + $('ul span', $groups).click(function(event) { + event.preventDefault(); + event.stopPropagation(); + $(this) + .toggleClass('collapsed') + .parent() + .next('ul') + .toggleClass('collapsed'); + }).click(); + + $active = $('ul li.active', $groups); + if ($active.length > 0) { + // Open active + $('> a > span', $active).click(); + } else { + $main = $('> ul > li.main', $groups); + if ($main.length > 0) { + // Open first level of the main project + $('> a > span', $main).click(); + } else { + // Open first level of all + $('> ul > li > a > span', $groups).click(); + } + } + + // Content + + // Search autocompletion + var autocompleteFound = false; + var autocompleteFiles = {'c': 'class', 'co': 'constant', 'f': 'function', 'm': 'class', 'mm': 'class', 'p': 'class', 'mp': 'class', 'cc': 'class'}; + var $search = $('#search input[name=q]'); + $search + .autocomplete(ApiGen.elements, { + matchContains: true, + scrollHeight: 200, + max: 20, + formatItem: function(data) { + return data[1].replace(/^(.+\\)(.+)$/, '$1$2'); + }, + formatMatch: function(data) { + return data[1]; + }, + formatResult: function(data) { + return data[1]; + }, + show: function($list) { + var $items = $('li span', $list); + var maxWidth = Math.max.apply(null, $items.map(function() { + return $(this).width(); + })); + // 10px padding + $list.width(Math.max(maxWidth + 10, $search.innerWidth())); + } + }).result(function(event, data) { + autocompleteFound = true; + var location = window.location.href.split('/'); + location.pop(); + var parts = data[1].split(/::|$/); + var file = $.sprintf(ApiGen.config.templates.main[autocompleteFiles[data[0]]].filename, parts[0].replace(/[^\w]/g, '.')); + if (parts[1]) { + file += '#' + ('mm' === data[0] || 'mp' === data[0] ? 'm' : '') + parts[1].replace(/([\w]+)\(\)/, '_$1'); + } + location.push(file); + window.location = location.join('/'); + + // Workaround for Opera bug + $(this).closest('form').attr('action', location.join('/')); + }).closest('form') + .submit(function() { + var query = $search.val(); + if ('' === query) { + return false; + } + + var label = $('#search input[name=more]').val(); + if (!autocompleteFound && label && -1 === query.indexOf('more:')) { + $search.val(query + ' more:' + label); + } + + return !autocompleteFound && '' !== $('#search input[name=cx]').val(); + }); + + // Save natural order + $('table.summary tr[data-order]', $content).each(function(index) { + do { + index = '0' + index; + } while (index.length < 3); + $(this).attr('data-order-natural', index); + }); + + // Switch between natural and alphabetical order + var $caption = $('table.summary', $content) + .filter(':has(tr[data-order])') + .prev('h2'); + $caption + .click(function() { + var $this = $(this); + var order = $this.data('order') || 'natural'; + order = 'natural' === order ? 'alphabetical' : 'natural'; + $this.data('order', order); + $.cookie('order', order, {expires: 365}); + var attr = 'alphabetical' === order ? 'data-order' : 'data-order-natural'; + $this + .next('table') + .find('tr').sortElements(function(a, b) { + return $(a).attr(attr) > $(b).attr(attr) ? 1 : -1; + }); + return false; + }) + .addClass('switchable') + .attr('title', 'Switch between natural and alphabetical order'); + if ((null === $.cookie('order') && 'alphabetical' === ApiGen.config.options.elementsOrder) || 'alphabetical' === $.cookie('order')) { + $caption.click(); + } + + // Open details + if (ApiGen.config.options.elementDetailsCollapsed) { + $('tr', $content).filter(':has(.detailed)') + .click(function() { + var $this = $(this); + $('.short', $this).hide(); + $('.detailed', $this).show(); + }); + } + + // Splitter + var splitterWidth = $splitter.width(); + function setSplitterPosition(position) + { + $left.width(position); + $right.css('margin-left', position + splitterWidth); + $splitter.css('left', position); + } + function setNavigationPosition() + { + var height = $(window).height() - navigationHeight; + $left.height(height); + $splitter.height(height); + $right.height(height); + } + function setContentWidth() + { + var width = $rightInner.width(); + $rightInner + .toggleClass('medium', width <= 960) + .toggleClass('small', width <= 650); + } + $splitter.mousedown(function() { + $splitter.addClass('active'); + + $document.mousemove(function(event) { + if (event.pageX >= 230 && $document.width() - event.pageX >= 600 + splitterWidth) { + setSplitterPosition(event.pageX); + setContentWidth(); + } + }); + + $() + .add($splitter) + .add($document) + .mouseup(function() { + $splitter + .removeClass('active') + .unbind('mouseup'); + $document + .unbind('mousemove') + .unbind('mouseup'); + + $.cookie('splitter', parseInt($splitter.css('left')), {expires: 365}); + }); + + return false; + }); + var splitterPosition = $.cookie('splitter'); + if (null !== splitterPosition) { + setSplitterPosition(parseInt(splitterPosition)); + } + setNavigationPosition(); + setContentWidth(); + $(window) + .resize(setNavigationPosition) + .resize(setContentWidth); + + // Select selected lines + var matches = window.location.hash.substr(1).match(/^\d+(?:-\d+)?(?:,\d+(?:-\d+)?)*$/); + if (null !== matches) { + var lists = matches[0].split(','); + for (var i = 0; i < lists.length; i++) { + var lines = lists[i].split('-'); + lines[1] = lines[1] || lines[0]; + for (var j = lines[0]; j <= lines[1]; j++) { + $('#' + j).addClass('selected'); + } + } + + var $firstLine = $('#' + parseInt(matches[0])); + if ($firstLine.length > 0) { + $right.scrollTop($firstLine.offset().top); + } + } + + // Save selected lines + var lastLine; + $('a.l').click(function(event) { + event.preventDefault(); + + var $selectedLine = $(this).parent(); + var selectedLine = parseInt($selectedLine.attr('id')); + + if (event.shiftKey) { + if (lastLine) { + for (var i = Math.min(selectedLine, lastLine); i <= Math.max(selectedLine, lastLine); i++) { + $('#' + i).addClass('selected'); + } + } else { + $selectedLine.addClass('selected'); + } + } else if (event.ctrlKey) { + $selectedLine.toggleClass('selected'); + } else { + var $selected = $('.l.selected') + .not($selectedLine) + .removeClass('selected'); + if ($selected.length > 0) { + $selectedLine.addClass('selected'); + } else { + $selectedLine.toggleClass('selected'); + } + } + + lastLine = $selectedLine.hasClass('selected') ? selectedLine : null; + + // Update hash + var lines = $('.l.selected') + .map(function() { + return parseInt($(this).attr('id')); + }) + .get() + .sort(function(a, b) { + return a - b; + }); + + var hash = []; + var list = []; + for (var j = 0; j < lines.length; j++) { + if (0 === j && j + 1 === lines.length) { + hash.push(lines[j]); + } else if (0 === j) { + list[0] = lines[j]; + } else if (lines[j - 1] + 1 !== lines[j] && j + 1 === lines.length) { + hash.push(list.join('-')); + hash.push(lines[j]); + } else if (lines[j - 1] + 1 !== lines[j]) { + hash.push(list.join('-')); + list = [lines[j]]; + } else if (j + 1 === lines.length) { + list[1] = lines[j]; + hash.push(list.join('-')); + } else { + list[1] = lines[j]; + } + } + + window.location.hash = hash.join(','); + }); +}); + diff --git a/apigen/templates/woodocs/resources/inherit.png b/apigen/templates/woodocs/resources/inherit.png new file mode 100644 index 00000000000..957079b84e4 Binary files /dev/null and b/apigen/templates/woodocs/resources/inherit.png differ diff --git a/apigen/templates/woodocs/resources/resize.png b/apigen/templates/woodocs/resources/resize.png new file mode 100644 index 00000000000..fb98a7a3c83 Binary files /dev/null and b/apigen/templates/woodocs/resources/resize.png differ diff --git a/apigen/templates/woodocs/resources/sort.png b/apigen/templates/woodocs/resources/sort.png new file mode 100644 index 00000000000..0d0fea14dbd Binary files /dev/null and b/apigen/templates/woodocs/resources/sort.png differ diff --git a/apigen/templates/woodocs/resources/style.css b/apigen/templates/woodocs/resources/style.css new file mode 100644 index 00000000000..2aecb5cbb97 --- /dev/null +++ b/apigen/templates/woodocs/resources/style.css @@ -0,0 +1,488 @@ +/*! + * ApiGen 2.7.0 - API documentation generator for PHP 5.3+ + * + * Copyright (c) 2010-2011 David Grudl (http://davidgrudl.com) + * Copyright (c) 2011-2012 Jaroslav Hanslík (https://github.com/kukulich) + * Copyright (c) 2011-2012 Ondřej Nešpor (https://github.com/Andrewsville) + * Copyright (c) 2012 Olivier Laviale (https://github.com/olvlvl) + * + * For the full copyright and license information, please view + * the file LICENSE.md that was distributed with this source code. + */ + +body { + padding: 40px 0 0 0; +} + +h1 { + font-size: 2em; + margin: 0.67em 0; +} + +h2 { + font-size: 1.5em; + margin: 0.83em 0; +} + +h3 { + font-size: 1.17em; + margin: 1em 0 0.2em 0; +} + +h4 { + font-size: 100%; + margin: 0; + padding: 0; +} + +ul, ol { + margin-bottom: 0; +} + +a, a:hover { + text-decoration: none; +} + +var { + font-weight: bold; + font-style: normal; + color: #c09853; +} + +code { + color: #000000; + white-space: nowrap; +} + +code:empty { + display: none; +} + +code code { + border: none; + padding: 0; +} + +code a b { + color: #000000; +} + +pre code { + white-space: pre; +} + +.deprecated { + text-decoration: line-through; +} + +.invalid { + color: #dd1144; +} + +.hidden { + display: none; +} + +/* Left side */ +#left { + overflow: auto; + width: 270px; + height: 100%; + position: fixed; +} + +/* Menu */ +#menu { + padding: 10px; +} + +#menu h3 { + border-bottom: 1px solid #cccccc; + margin-left: -10px; + margin-right: -10px; + padding: 0 10px; +} + +#menu ul { + list-style: none; + padding: 0; + margin: 0; +} + +#menu ul ul { + padding-left: 10px; +} + +#menu li { + white-space: nowrap; + position: relative; +} + +#menu a { + display: block; + padding: 3px; + border-radius: 3px; +} + +#menu a:hover { + background-color: #a4698e; + color: #ffffff !important; +} + +#menu .active > a { + font-weight: bold; + color: #000000; +} + +#menu .active > a.invalid { + color: #dd1144; +} + +#menu #groups span { + position: absolute; + top: 6px; + right: 3px; + cursor: pointer; + display: block; + width: 12px; + height: 12px; + background: url('collapsed.png') transparent 0 0 no-repeat; +} + +#menu #groups span:hover { + background-position: -12px 0; +} + +#menu #groups span.collapsed { + background-position: 0 -12px; +} + +#menu #groups span.collapsed:hover { + background-position: -12px -12px; +} + +#menu #groups ul.collapsed { + display: none; +} + +/* Search */ +#menu .form-search { + margin-top: 0; +} + +#menu .search-query { + height: auto; + width: 100%; + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; +} + +/* Autocomplete */ +.ac_results { + border-radius: 4px; + margin-top: 2px; + background-clip: padding-box; + background-color: #ffffff; + border-color: rgba(0, 0, 0, 0.2); + border-style: solid; + border-width: 1px; + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + overflow: hidden; + z-index: 99999; +} + +.ac_results ul { + width: 100%; + list-style-position: outside; + list-style: none; + padding: 0; + margin: 0; +} + +.ac_results li { + margin: 0; + padding: 2px 5px; + cursor: default; + display: block; + overflow: hidden; + white-space: nowrap; +} + +.ac_results li strong { + color: #000000; +} + +.ac_over { + background-color: #a4698e; + color: #ffffff; +} + +.ac_results li.ac_over strong { + color: #ffffff; +} + + +/* Right side */ +#right { + overflow: auto; + margin-left: 275px; + height: 100%; + position: fixed; + left: 0; + right: 0; +} + +#rightInner { + max-width: 1000px; + min-width: 350px; +} + +/* Navigation */ +.navbar-fixed-top .container { + width: auto; + padding: 0 1em; +} + +.navbar .nav > li > span { + display: block; + color: #999999; + line-height: 19px; + padding: 10px 10px 11px; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); +} + +.navbar .nav > li.active > span { + background-color: #222222; + color: #ffffff; +} + +/* Content */ +#content { + clear: both; + padding: 5px 15px; +} + +#content > .description { + margin: 1.2em 0; +} + +#content .alert-info { + margin-top: 18px; +} + +dl.tree { + margin: 1.2em 0; + padding: 10px; +} + +dl.tree dd { + margin: 0; + padding: 0; + line-height: 18px; +} + +.elementList { + line-height: 24px; +} + +h2.switchable { + background: transparent url('sort.png') no-repeat center right; + cursor: pointer; +} + +.summary td:first-child { + text-align: right; +} + +#packages.summary td:first-child, #namespaces.summary td:first-child, .inherited.summary td:first-child, .used.summary td:first-child { + text-align: left; +} + +.summary tr:hover td { + background: #f6f6f4; +} + +.summary .description p { + margin: 0; +} + +.class #methods.summary .description p:first-child, .summary .description.detailed h4:first-child { + margin-top: 8px; +} + +.summary .description p + p, .summary .description ul, .summary .description pre, .summary .description.detailed h4 { + margin-top: 4px; +} + +.summary dl { + margin: 0; +} + +.summary dd { + margin: 0 0 0 25px; +} + +.summary dt, dd { + line-height: 24px; +} + +.name, .attributes { + white-space: nowrap; +} + +.value { + white-space: pre-wrap; +} + +td.name, td.attributes { + width: 1%; +} + +.class #methods .name { + width: auto; + white-space: normal; +} + +.class #methods .name > div > code { + white-space: pre-wrap; +} + +.class #methods .name > div > code span, .function .value > code { + white-space: nowrap; +} + +.class #methods td.name > div, .class td.description > div { + position: relative; + padding-right: 1em; +} + +.attributes code, .name code, dd code { + color: #468847; +} + +.anchor { + position: absolute; + top: 0; + right: 0; + line-height: 1; + font-size: 85%; + margin: 0; + color: #a4698e !important; +} + +.list { + margin: 0 0 5px 25px; + line-height: 24px; +} + +/* Splitter */ +#splitter { + position: fixed; + height: 100%; + width: 5px; + left: 270px; + background: #a4698e url('resize.png') left center no-repeat; + cursor: e-resize; +} + +#splitter.active { + opacity: .5; +} + +/* Footer */ +#footer { + border-top: 1px solid #e5e5e5; + clear: both; + color: #808080; + text-align: right; + padding: 2em 1em; + margin: 3em 0 40px 0; +} + +/* Tree */ +div.tree ul { + list-style: none; + background: url('tree-vertical.png') left repeat-y; + padding: 0; + margin-left: 20px; +} + +div.tree li { + margin: 0; + padding: 0; +} + +div.tree div { + padding-left: 30px; +} + +div.tree div.notlast { + background: url('tree-hasnext.png') left 10px no-repeat; +} + +div.tree div.last { + background: url('tree-last.png') left -240px no-repeat; +} + +div.tree li.last { + background: url('tree-cleaner.png') left center repeat-y; +} + +div.tree span.padding { + padding-left: 15px; +} + +/* Source code */ +#source { + margin: 1em 0 1em 1em; + padding: 0; +} + +.php-keyword1 { + color: #468847; + font-weight: bold; +} + +.php-keyword2 { + font-weight: bold; +} + +.php-var { + color: #c09853; + font-weight: bold; +} + +.php-num { + color: #006dcc; +} + +.php-quote { + color: #006dcc; +} + +.php-comment { + color: #929292; +} + +.xlang { + color: #468847; + font-weight: bold; +} + +.l { + background: #fbfbfc; + margin-right: 8px; + padding: 2px 2px 2px 8px; + color: #c0c0c0; +} + +.l:target { + background: #a4698e url('code-line.png') right center no-repeat; + color: #ffffff; +} + +/* Small screens */ +#rightInner.medium .name, #rightInner.medium .attributes { + white-space: normal; +} diff --git a/apigen/templates/woodocs/resources/tree-cleaner.png b/apigen/templates/woodocs/resources/tree-cleaner.png new file mode 100644 index 00000000000..2eb9085be54 Binary files /dev/null and b/apigen/templates/woodocs/resources/tree-cleaner.png differ diff --git a/apigen/templates/woodocs/resources/tree-hasnext.png b/apigen/templates/woodocs/resources/tree-hasnext.png new file mode 100644 index 00000000000..91d6b79ab4c Binary files /dev/null and b/apigen/templates/woodocs/resources/tree-hasnext.png differ diff --git a/apigen/templates/woodocs/resources/tree-last.png b/apigen/templates/woodocs/resources/tree-last.png new file mode 100644 index 00000000000..7f319f8f950 Binary files /dev/null and b/apigen/templates/woodocs/resources/tree-last.png differ diff --git a/apigen/templates/woodocs/resources/tree-vertical.png b/apigen/templates/woodocs/resources/tree-vertical.png new file mode 100644 index 00000000000..384908b28e9 Binary files /dev/null and b/apigen/templates/woodocs/resources/tree-vertical.png differ diff --git a/apigen/templates/woodocs/robots.txt.latte b/apigen/templates/woodocs/robots.txt.latte new file mode 100644 index 00000000000..f895cd3a9f3 --- /dev/null +++ b/apigen/templates/woodocs/robots.txt.latte @@ -0,0 +1,14 @@ +{* +ApiGen 2.8.0 - API documentation generator for PHP 5.3+ + +Copyright (c) 2010-2011 David Grudl (http://davidgrudl.com) +Copyright (c) 2011-2012 Jaroslav Hanslík (https://github.com/kukulich) +Copyright (c) 2011-2012 Ondřej Nešpor (https://github.com/Andrewsville) +Copyright (c) 2012 Olivier Laviale (https://github.com/olvlvl) + +For the full copyright and license information, please view +the file LICENSE.md that was distributed with this source code. +*} +User-agent: * +Disallow: +Sitemap: {$config->baseUrl}/sitemap.xml diff --git a/apigen/templates/woodocs/sitemap.xml.latte b/apigen/templates/woodocs/sitemap.xml.latte new file mode 100644 index 00000000000..7a9027626ea --- /dev/null +++ b/apigen/templates/woodocs/sitemap.xml.latte @@ -0,0 +1,36 @@ +{* +ApiGen 2.8.0 - API documentation generator for PHP 5.3+ + +Copyright (c) 2010-2011 David Grudl (http://davidgrudl.com) +Copyright (c) 2011-2012 Jaroslav Hanslík (https://github.com/kukulich) +Copyright (c) 2011-2012 Ondřej Nešpor (https://github.com/Andrewsville) +Copyright (c) 2012 Olivier Laviale (https://github.com/olvlvl) + +For the full copyright and license information, please view +the file LICENSE.md that was distributed with this source code. +*} + + + + {$config->baseUrl}/index.html + + + {$config->baseUrl}/{$namespace|namespaceUrl} + + + {$config->baseUrl}/{$package|packageUrl} + + +{define #elements} + + {$config->baseUrl}/{$element|elementUrl} + +{/define} + +{include #elements, elements => $classes} +{include #elements, elements => $interfaces} +{include #elements, elements => $traits} +{include #elements, elements => $exceptions} +{include #elements, elements => $constants} +{include #elements, elements => $functions} + diff --git a/apigen/templates/woodocs/source.latte b/apigen/templates/woodocs/source.latte new file mode 100644 index 00000000000..c803e3c48d1 --- /dev/null +++ b/apigen/templates/woodocs/source.latte @@ -0,0 +1,19 @@ +{* +ApiGen 2.8.0 - API documentation generator for PHP 5.3+ + +Copyright (c) 2010-2011 David Grudl (http://davidgrudl.com) +Copyright (c) 2011-2012 Jaroslav Hanslík (https://github.com/kukulich) +Copyright (c) 2011-2012 Ondřej Nešpor (https://github.com/Andrewsville) +Copyright (c) 2012 Olivier Laviale (https://github.com/olvlvl) + +For the full copyright and license information, please view +the file LICENSE.md that was distributed with this source code. +*} +{layout '@layout.latte'} +{var $robots = false} + +{block #title}File {$fileName}{/block} + +{block #content} +
    {!$source|sourceAnchors|replaceRE:'~(\s*)(\d+):(\s*)([^\\n]*\\n)?~','$1$2$3$4'}
    +{/block} \ No newline at end of file diff --git a/apigen/templates/woodocs/todo.latte b/apigen/templates/woodocs/todo.latte new file mode 100644 index 00000000000..96ac9b1bbf2 --- /dev/null +++ b/apigen/templates/woodocs/todo.latte @@ -0,0 +1,129 @@ +{* +ApiGen 2.8.0 - API documentation generator for PHP 5.3+ + +Copyright (c) 2010-2011 David Grudl (http://davidgrudl.com) +Copyright (c) 2011-2012 Jaroslav Hanslík (https://github.com/kukulich) +Copyright (c) 2011-2012 Ondřej Nešpor (https://github.com/Andrewsville) +Copyright (c) 2012 Olivier Laviale (https://github.com/olvlvl) + +For the full copyright and license information, please view +the file LICENSE.md that was distributed with this source code. +*} +{layout '@layout.latte'} +{var $active = 'todo'} + +{block #title}Todo{/block} + +{block #content} +
    +

    {include #title}

    + + {define #classes} + {foreach $items as $class} +
    {$class->name}{!$description|annotation:'todo':$class}
    + {include #classes, items => $todoClasses} +
    + {/if} + + {if $todoInterfaces} +

    Interfaces summary

    + + {include #classes, items => $todoInterfaces} +
    + {/if} + + {if $todoTraits} +

    Traits summary

    + + {include #classes, items => $todoTraits} +
    + {/if} + + {if $todoExceptions} +

    Exceptions summary

    + + {include #classes, items => $todoExceptions} +
    + {/if} + + {if $todoMethods} +

    Methods summary

    + + {foreach $todoMethods as $method} + + {var $count = count($method->annotations['todo'])} + + + {foreach $method->annotations['todo'] as $description} + {sep}{/sep} + {/foreach} + + {/foreach} +
    {$method->declaringClassName}{$method->name}(){!$description|annotation:'todo':$method}
    + {/if} + + {if $todoConstants} +

    Constants summary

    + + {foreach $todoConstants as $constant} + + {var $count = count($constant->annotations['todo'])} + {if $constant->declaringClassName} + + + {else} + + + {/if} + {foreach $constant->annotations['todo'] as $description} + {sep}{/sep} + {/foreach} + + {/foreach} +
    {$constant->declaringClassName}{$constant->name}{$constant->namespaceName}{$constant->shortName}{!$description|annotation:'todo':$constant}
    + {/if} + + {if $todoProperties} +

    Properties summary

    + + {foreach $todoProperties as $property} + + {var $count = count($property->annotations['todo'])} + + + {foreach $property->annotations['todo'] as $description} + {sep}{/sep} + {/foreach} + + {/foreach} +
    {$property->declaringClassName}${$property->name}{!$description|annotation:'todo':$property}
    + {/if} + + {if $todoFunctions} +

    Functions summary

    + + {foreach $todoFunctions as $function} + + {var $count = count($function->annotations['todo'])} + + + {foreach $function->annotations['todo'] as $description} + {sep}{/sep} + {/foreach} + + {/foreach} +
    {$function->namespaceName}{$function->shortName}{!$description|annotation:'todo':$function}
    + {/if} +
+{/block} \ No newline at end of file diff --git a/apigen/templates/woodocs/tree.latte b/apigen/templates/woodocs/tree.latte new file mode 100644 index 00000000000..adbfda8c2ad --- /dev/null +++ b/apigen/templates/woodocs/tree.latte @@ -0,0 +1,73 @@ +{* +ApiGen 2.8.0 - API documentation generator for PHP 5.3+ + +Copyright (c) 2010-2011 David Grudl (http://davidgrudl.com) +Copyright (c) 2011-2012 Jaroslav Hanslík (https://github.com/kukulich) +Copyright (c) 2011-2012 Ondřej Nešpor (https://github.com/Andrewsville) +Copyright (c) 2012 Olivier Laviale (https://github.com/olvlvl) + +For the full copyright and license information, please view +the file LICENSE.md that was distributed with this source code. +*} +{layout '@layout.latte'} +{var $active = 'tree'} + +{block #title}Tree{/block} + +{define #tree} +
+
    + {var $level = -1} + {? foreach ($tree as $reflectionName => $reflection): } + {if $level === $tree->getDepth()} + + {elseif $level > $tree->getDepth()} + {!'
'|repeat:$level - $tree->getDepth()} + {elseif -1 !== $level} +
    + {/if} + +
  • {$reflectionName} + {var $interfaces = $reflection->ownInterfaces} + {if $interfaces} implements {foreach $interfaces as $interface} + {$interface->name}{sep}, {/sep} + {/foreach}{/if} + {var $traits = $reflection->ownTraits} + {if $traits}{if $interfaces}
    {/if} uses {foreach $traits as $trait} + {$trait->name}{sep}, {/sep} + {/foreach}{/if} +
    + + {var $level = $tree->getDepth()} + {? endforeach; } +
  • + {!'
'|repeat:$level} + +
+{/define} + +{block #content} +
+

{include #title}

+ + {if $classTree->valid()} +

Classes

+ {include #tree, tree => $classTree} + {/if} + + {if $interfaceTree->valid()} +

Interfaces

+ {include #tree, tree => $interfaceTree} + {/if} + + {if $traitTree->valid()} +

Traits

+ {include #tree, tree => $traitTree} + {/if} + + {if $exceptionTree->valid()} +

Exceptions

+ {include #tree, tree => $exceptionTree} + {/if} +
+{/block} diff --git a/assets/css/activation.css b/assets/css/activation.css index 4f5bdb84c02..6f22ddd78df 100644 --- a/assets/css/activation.css +++ b/assets/css/activation.css @@ -1 +1 @@ -.woocommerce-message{position:relative;border-left-color:#cc99c2!important;overflow:hidden}.woocommerce-message .twitter-share-button{vertical-align:middle;margin-left:3px}p.woocommerce-actions a.button-primary,.woocommerce-message a.button-primary{background:#cc99c2;border-color:#b366a4;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 rgba(0,0,0,.15);color:#fff;text-decoration:none}p.woocommerce-actions a.button-primary:hover,.woocommerce-message a.button-primary:hover{background:#bb77ae;border-color:#aa559a;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 rgba(0,0,0,.15)}p.woocommerce-actions a.button-primary:active,.woocommerce-message a.button-primary:active{background:#aa559a;border-color:#aa559a}p.woocommerce-actions a.skip,.woocommerce-message a.skip,p.woocommerce-actions a.docs,.woocommerce-message a.docs{opacity:.7}p.woocommerce-actions .twitter-share-button,.woocommerce-message .twitter-share-button{vertical-align:middle;margin-left:3px}p.woocommerce-actions{margin-bottom:2em}.woocommerce-about-text{margin-bottom:1em!important} \ No newline at end of file +.woocommerce-message{position:relative;border-left-color:#cc99c2!important;overflow:hidden}.woocommerce-message a.button-primary,p.woocommerce-actions a.button-primary{background:#cc99c2;border-color:#b366a4;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 rgba(0,0,0,.15);color:#fff;text-decoration:none!important}.woocommerce-message a.button-primary:hover,p.woocommerce-actions a.button-primary:hover{background:#bb77ae;border-color:#aa559a;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 rgba(0,0,0,.15)}.woocommerce-message a.button-primary:active,p.woocommerce-actions a.button-primary:active{background:#aa559a;border-color:#aa559a}.woocommerce-message a.docs,.woocommerce-message a.skip,p.woocommerce-actions a.docs,p.woocommerce-actions a.skip{opacity:.7}.woocommerce-message .twitter-share-button,p.woocommerce-actions .twitter-share-button{margin-top:-3px;margin-left:3px;vertical-align:middle}.woocommerce-about-text,p.woocommerce-actions{margin-bottom:1em!important} \ No newline at end of file diff --git a/assets/css/activation.less b/assets/css/activation.less index b123eb6a7f9..78ecf6b5c9f 100644 --- a/assets/css/activation.less +++ b/assets/css/activation.less @@ -3,8 +3,9 @@ border-left-color: #cc99c2 !important; overflow: hidden; .twitter-share-button { + margin-top: -3px; + margin-left: 3px; vertical-align: middle; - margin-left:3px; } } p.woocommerce-actions, .woocommerce-message { @@ -14,7 +15,7 @@ p.woocommerce-actions, .woocommerce-message { -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 rgba(0,0,0,.15); box-shadow: inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 rgba(0,0,0,.15); color: #fff; - text-decoration: none; + text-decoration:none !important; &:hover { background: #bb77ae; border-color: #aa559a; @@ -30,13 +31,14 @@ p.woocommerce-actions, .woocommerce-message { opacity: 0.7; } .twitter-share-button { + margin-top: -3px; + margin-left: 3px; vertical-align: middle; - margin-left:3px; } } p.woocommerce-actions { - margin-bottom: 2em; + margin-bottom: 1em !important; } .woocommerce-about-text { margin-bottom: 1em !important; -} \ No newline at end of file +} diff --git a/assets/css/admin.css b/assets/css/admin.css index bccb1bcb177..ee8225a4880 100644 --- a/assets/css/admin.css +++ b/assets/css/admin.css @@ -1 +1 @@ -.clear{clear:both}.nobr{white-space:nowrap}@font-face{font-family:WooCommerce;src:url(../fonts/WooCommerce.eot);src:url(../fonts/WooCommerce.eot?#iefix) format('embedded-opentype'),url(../fonts/WooCommerce.woff) format('woff'),url(../fonts/WooCommerce.ttf) format('truetype'),url(../fonts/WooCommerce.svg#WooCommerce) format('svg');font-weight:400;font-style:normal}.wc_addons_wrap .products{overflow:hidden}.wc_addons_wrap .products li{float:left;margin:0 1em 1em 0!important;padding:0;vertical-align:top;width:300px}.wc_addons_wrap .products li a{text-decoration:none;color:inherit;border:1px solid #ddd;display:block;min-height:220px;overflow:hidden;background:#f5f5f5;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),inset 0 -1px 0 rgba(0,0,0,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),inset 0 -1px 0 rgba(0,0,0,.1)}.wc_addons_wrap .products li a img{max-width:258px;max-height:24px;padding:17px 20px;display:block;margin:0;background:#fff;border-right:260px solid #fff}.wc_addons_wrap .products li a img.extension-thumb+h3{display:none}.wc_addons_wrap .products li a .price{display:none}.wc_addons_wrap .products li a h3{margin:0!important;padding:20px!important;background:#fff}.wc_addons_wrap .products li a p{padding:20px!important;margin:0!important;border-top:1px solid #f1f1f1}.wc_addons_wrap .products li a:hover,.wc_addons_wrap .products li a:focus{background-color:#fff}.woocommerce-message{position:relative;border-left-color:#cc99c2!important;overflow:hidden}.woocommerce-message a.button-primary{background:#cc99c2;border-color:#b366a4;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 rgba(0,0,0,.15);color:#fff;text-decoration:none}.woocommerce-message a.button-primary:hover{background:#bb77ae;border-color:#aa559a;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 rgba(0,0,0,.15)}.woocommerce-message a.button-primary:active{background:#aa559a;border-color:#aa559a}.woocommerce-message a.skip,.woocommerce-message a.docs{opacity:.5}.woocommerce-message .twitter-share-button{vertical-align:middle}#variable_product_options #message{margin:10px}#wc_get_started{position:relative;margin:1em 0 2em;padding:15px 15px 15px 90px;border:1px solid #d9d9d9;background:#f5f5f5 url(../images/gear.png) no-repeat 15px 15px;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;box-shadow:inset 1px 1px 0 #fff,inset -1px -1px 0 #fff;-moz-box-shadow:inset 1px 1px 0 #fff,inset -1px -1px 0 #fff;-webkit-box-shadow:inset 1px 1px 0 #fff,inset -1px -1px 0 #fff}#wc_get_started span{display:block;text-shadow:1px 1px 0 #fff;font-size:14px;line-height:22px;color:#595959}#wc_get_started span.main{margin-top:2px;font-weight:700;font-size:16px}#wc_get_started .main-button{position:absolute;right:20px;top:27px}#wc_get_started p{margin:1em 0 .5em}#wc_get_started.mijireh{background:#5bc0de url(../images/mijireh-logo.png) no-repeat 15px 18px;border:1px solid #339bb9;padding:15px 15px 15px 152px;box-shadow:inset 1px 1px 0 rgba(255,255,255,.5),inset -1px -1px 0 rgba(255,255,255,.5);-moz-box-shadow:inset 1px 1px 0 rgba(255,255,255,.5),inset -1px -1px 0 rgba(255,255,255,.5);-webkit-box-shadow:inset 1px 1px 0 rgba(255,255,255,.5),inset -1px -1px 0 rgba(255,255,255,.5)}#wc_get_started.mijireh span{color:#fff;text-shadow:0 1px 0 #4a94ac}#wc_get_started.mijireh span a{color:#fff}#wc_get_started.mijireh a.button{border-color:#fff;box-shadow:inset 1px 1px 0 rgba(255,255,255,.1),inset -1px -1px 0 rgba(255,255,255,.1),0 1px 3px #206d8b;-moz-box-shadow:inset 1px 1px 0 rgba(255,255,255,.1),inset -1px -1px 0 rgba(255,255,255,.1),0 1px 3px #206d8b;-webkit-box-shadow:inset 1px 1px 0 rgba(255,255,255,.1),inset -1px -1px 0 rgba(255,255,255,.1),0 1px 3px #206d8b}#wc_get_started.mijireh a.button-primary{background:#2b7e9f;border-color:#266e8b}#icon-woocommerce,.woocommerce_icon,.icon32-posts-product,.icon32-posts-shop_order,.icon32-posts-shop_coupon,.icon32-posts-product_variation{background-image:url(../images/icons/woocommerce-icons.png)!important;background-position:-11px -5px;background-size:auto!important}.icon32-posts-product{background-position:-69px -5px!important}.icon32-posts-shop_order{background-position:-127px -5px!important}.icon32-attributes{background-position:-185px -5px!important}.icon32-woocommerce-settings{background-position:-359px -5px!important}.icon32-posts-shop_coupon{background-position:-475px -5px!important}.icon32-posts-product_variation{background-position:-533px -5px!important}.icon32-woocommerce-reports{background-position:-591px -5px!important}.icon32-woocommerce-status{background-position:-417px -5px!important}.icon32-woocommerce-delivery{background-position:-649px -5px!important}.icon32-woocommerce-compose{background-position:-708px -5px!important}.icon32-woocommerce-telephone{background-position:-766px -5px!important}.icon32-woocommerce-users{background-position:-824px -5px!important}.icon32-woocommerce-nav{background-position:-882px -5px!important}.icon32-woocommerce-email{background-position:-940px -5px!important}.icon32-woocommerce-importer{background-position:-11px -50px!important}.wrap.woocommerce div.updated,.wrap.woocommerce div.error{margin-top:10px}mark.amount{background:transparent none;color:inherit}.postbox input:invalid,.woocommerce input:invalid{border:1px solid #cc010b;background:#ffebe8}table.wc_status_table tr:nth-child(2n) th,table.wc_status_table tr:nth-child(2n) td{background:#fcfcfc}table.wc_status_table th{font-weight:700}table.wc_status_table td:first-child{width:20%}table.wc_status_table td{padding:6px 9px;font-size:1.1em}table.wc_status_table td mark{background:transparent none}table.wc_status_table td mark.yes{color:#7ad03a}table.wc_status_table td mark.no{color:#999}table.wc_status_table td mark.error{color:#a00}table.wc_status_table td ul{margin:0}#debug-report{display:none;margin:10px 0;padding:0;position:relative}#debug-report textarea{font-family:monospace;width:100%;margin:0;height:300px;padding:20px;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;resize:none;font-size:12px;line-height:20px;outline:0}.inline-edit-product.quick-edit-row .inline-edit-col-center,.inline-edit-product.quick-edit-row .inline-edit-col-right{float:right!important}#woocommerce-fields.inline-edit-col{clear:left}#woocommerce-fields.inline-edit-col label.featured,#woocommerce-fields.inline-edit-col label.manage_stock{margin-left:10px}#woocommerce-fields.inline-edit-col .dimensions div{display:block;margin:.2em 0}#woocommerce-fields.inline-edit-col .dimensions div span.title{display:block;float:left;width:5em}#woocommerce-fields.inline-edit-col .dimensions div span.input-text-wrap{display:block;margin-left:5em}#woocommerce-fields.inline-edit-col .text{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:99%;float:left;margin:1px 1% 1px 1px}#woocommerce-fields.inline-edit-col .length,#woocommerce-fields.inline-edit-col .width,#woocommerce-fields.inline-edit-col .height{width:32.33%}#woocommerce-fields.inline-edit-col .height{margin-right:0}#woocommerce-fields-bulk.inline-edit-col label{clear:left}#woocommerce-fields-bulk.inline-edit-col .inline-edit-group label,#woocommerce-fields-bulk.inline-edit-col .inline-edit-group div.alignright{clear:none;width:49%;margin:.2em 0}#woocommerce-fields-bulk.inline-edit-col .regular_price,#woocommerce-fields-bulk.inline-edit-col .sale_price,#woocommerce-fields-bulk.inline-edit-col .weight,#woocommerce-fields-bulk.inline-edit-col .stock{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%}#woocommerce-fields-bulk.inline-edit-col .length,#woocommerce-fields-bulk.inline-edit-col .width,#woocommerce-fields-bulk.inline-edit-col .height{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:32%}.column-coupon_code{line-height:2.25em}ul.wc_coupon_list,.column-coupon_code{margin:0;overflow:hidden;zoom:1;clear:both}ul.wc_coupon_list .code,.column-coupon_code .code{margin-right:6px}ul.wc_coupon_list li.code,.column-coupon_code li.code{margin:0 6px 12px 0!important}ul.wc_coupon_list .code:before,.column-coupon_code .code:before,ul.wc_coupon_list .code a:before,.column-coupon_code .code a:before,ul.wc_coupon_list .code span:before,.column-coupon_code .code span:before,ul.wc_coupon_list .code:after,.column-coupon_code .code:after,ul.wc_coupon_list .code a:after,.column-coupon_code .code a:after,ul.wc_coupon_list .code span:after,.column-coupon_code .code span:after{content:"";display:block;position:absolute;width:8px;height:4px;background:#f7f7f7;-webkit-border-radius:2px;-moz-border-radius:2px;-o-border-radius:2px;border-radius:2px;-moz-box-shadow:0 2px 0 0 rgba(255,255,255,.3),inset 0 2px 0 0 rgba(0,0,0,.1);-webkit-box-shadow:0 2px 0 0 rgba(255,255,255,.3),inset 0 2px 0 0 rgba(0,0,0,.1);box-shadow:0 2px 0 0 rgba(255,255,255,.3),inset 0 2px 0 0 rgba(0,0,0,.1)}ul.wc_coupon_list .code,.column-coupon_code .code{overflow:hidden;vertical-align:middle;margin:0 8px 0 0;background:#ececec;color:#21759A;text-shadow:0 1px 0 #ddd;padding:2px;position:relative;float:left;line-height:1em;-moz-box-shadow:0 2px 0 0 #ddd;-webkit-box-shadow:0 2px 0 0 #ddd;box-shadow:0 2px 0 0 #ddd;font-weight:700}ul.wc_coupon_list .code:before,.column-coupon_code .code:before{bottom:5px;left:0;margin:0 0 0 -4px}ul.wc_coupon_list .code:after,.column-coupon_code .code:after{top:5px;left:0;margin:0 0 0 -4px}ul.wc_coupon_list .code a,.column-coupon_code .code a,ul.wc_coupon_list .code span,.column-coupon_code .code span{float:left;padding:0 4px;color:#21759A}ul.wc_coupon_list .code a:before,.column-coupon_code .code a:before,ul.wc_coupon_list .code span:before,.column-coupon_code .code span:before{bottom:5px;right:0;margin:0 -4px 0 0}ul.wc_coupon_list .code a:after,.column-coupon_code .code a:after,ul.wc_coupon_list .code span:after,.column-coupon_code .code span:after{content:"";top:5px;right:0;margin:0 -4px 0 0}ul.wc_coupon_list .code a span,.column-coupon_code .code a span,ul.wc_coupon_list .code span span,.column-coupon_code .code span span{border:1px dashed #ccc;padding:.5em 6px;-webkit-border-radius:2px;-moz-border-radius:2px;-o-border-radius:2px;border-radius:2px}ul.wc_coupon_list .code a span:before,.column-coupon_code .code a span:before,ul.wc_coupon_list .code span span:before,.column-coupon_code .code span span:before{top:50%;left:0;margin:-2px 0 0 -4px}ul.wc_coupon_list .code a span:after,.column-coupon_code .code a span:after,ul.wc_coupon_list .code span span:after,.column-coupon_code .code span span:after{top:50%;right:0;margin:-2px -4px 0 0}ul.wc_coupon_list .code:hover,.column-coupon_code .code:hover{background:#975e83;color:#fff;text-shadow:0 1px 0 #5a324b}ul.wc_coupon_list .code:hover a,.column-coupon_code .code:hover a,ul.wc_coupon_list .code:hover span,.column-coupon_code .code:hover span{color:#fff}ul.wc_coupon_list .code:hover a span,.column-coupon_code .code:hover a span,ul.wc_coupon_list .code:hover span span,.column-coupon_code .code:hover span span{border:1px dashed #bb82a7}ul.wc_coupon_list_block{margin:0;padding-bottom:2px}ul.wc_coupon_list_block li{border-top:1px solid #fff;border-bottom:1px solid #ccc;line-height:2.5em;margin:0;padding:.5em 0}ul.wc_coupon_list_block li:first-child{border-top:0;padding-top:0}ul.wc_coupon_list_block li:last-child{border-bottom:0;padding-bottom:0}.button.wc-reload{display:block;text-indent:-9999px;position:relative;height:1em;width:1em;padding:0;-webkit-border-radius:100%;border-radius:100%;height:24px;width:24px!important;display:inline-block}.button.wc-reload:after{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e031";line-height:22px}.tablenav .actions{overflow:visible}.alignleft.actions .chosen-container-single{display:inline-block;vertical-align:middle}#woocommerce-order-data h3.hndle,#woocommerce-order-data .handlediv{display:none}#woocommerce-order-data .inside{display:block!important}#order_data{padding:23px 24px 12px}#order_data h2{margin:0;font-family:HelveticaNeue-Light,"Helvetica Neue Light","Helvetica Neue",sans-serif;font-size:21px;font-weight:400;line-height:1.2;text-shadow:1px 1px 1px #fff;padding:0}#order_data h4{color:#333;margin:1.33em 0 0}#order_data p{color:#777}#order_data p.order_number{margin:0;font-family:HelveticaNeue-Light,"Helvetica Neue Light","Helvetica Neue",sans-serif;font-weight:400;line-height:1.6em;font-size:16px}#order_data .order_data_column_container{clear:both}#order_data .order_data_column{width:32%;padding:0 2% 0 0;float:left}#order_data .order_data_column:last-child{padding-right:0}#order_data .order_data_column p{padding:0!important}#order_data .order_data_column .address strong{display:block}#order_data .order_data_column .form-field{float:left;width:48%;padding:0;margin:9px 0 0}#order_data .order_data_column .form-field label{display:block;padding:0 0 3px}#order_data .order_data_column .form-field input,#order_data .order_data_column .form-field textarea{width:100%}#order_data .order_data_column .form-field select{width:100%}#order_data .order_data_column .form-field #order_status_chosen .chosen-search{display:none}#order_data .order_data_column .form-field .chosen-container{width:100%!important}#order_data .order_data_column .form-field .date-picker-field{width:50%}#order_data .order_data_column .form-field .hour,#order_data .order_data_column .form-field .minute{width:2.5em}#order_data .order_data_column .form-field small{display:block;margin:5px 0 0;color:#999}#order_data .order_data_column .form-field.last{float:right}#order_data .order_data_column .form-field-wide{width:100%;clear:both}#order_data .order_data_column .form-field-wide input,#order_data .order_data_column .form-field-wide textarea{width:100%}#order_data .order_data_column .form-field-wide select{width:100%}#order_data .order_data_column p.none_set{color:#999}#order_data .order_data_column ._billing_first_name_field,#order_data .order_data_column ._billing_address_1_field,#order_data .order_data_column ._billing_city_field,#order_data .order_data_column ._billing_country_field,#order_data .order_data_column ._billing_email_field,#order_data .order_data_column ._shipping_first_name_field,#order_data .order_data_column ._shipping_address_1_field,#order_data .order_data_column ._shipping_city_field,#order_data .order_data_column ._shipping_country_field{float:left}#order_data .order_data_column ._billing_last_name_field,#order_data .order_data_column ._billing_address_2_field,#order_data .order_data_column ._billing_postcode_field,#order_data .order_data_column ._billing_state_field,#order_data .order_data_column ._billing_phone_field,#order_data .order_data_column ._shipping_last_name_field,#order_data .order_data_column ._shipping_address_2_field,#order_data .order_data_column ._shipping_postcode_field,#order_data .order_data_column ._shipping_state_field{float:right}#order_data .order_data_column ._billing_company_field,#order_data .order_data_column ._shipping_company_field{clear:both;width:100%}#order_data .order_data_column ._billing_email_field{clear:left}#order_data .order_data_column div.edit_address{display:none;overflow:hidden;zoom:1;padding-right:1px}#order_data a.edit_address{opacity:.4}#order_data a.edit_address:hover,#order_data a.edit_address:focus{opacity:1}.order_actions{margin:0;overflow:hidden;zoom:1}.order_actions li{border-top:1px solid #fff;border-bottom:1px solid #ddd;padding:6px 0;margin:0;line-height:1.6em;float:left;width:50%;text-align:center}.order_actions li a{float:none;text-align:center;text-decoration:underline}.order_actions li.wide{width:auto;float:none;clear:both;padding:6px;text-align:left;overflow:hidden}.order_actions li #delete-action{line-height:25px;vertical-align:middle;text-align:left;float:left}.order_actions li .save_order{float:right}.order_actions li#actions{overflow:hidden}.order_actions li#actions .button{width:24px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:right}.order_actions li#actions select{width:225px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left}#woocommerce-order-items .inside{margin:0;padding:0;background:#fefefe}#woocommerce-order-items .bulk_actions{float:left;padding-left:12px;vertical-align:top}#woocommerce-order-items .add_items{float:right;padding-right:12px;vertical-align:top}#woocommerce-order-items .add_items .add_item_id,#woocommerce-order-items .add_items .chosen-container{margin-right:9px;vertical-align:top;float:left}#woocommerce-order-items .add_items .add_item_id .search-field input,#woocommerce-order-items .add_items .chosen-container .search-field input{min-width:100px}#woocommerce-order-items .add_items button{margin:2px 0 0}#woocommerce-order-items .add_meta{margin-left:0!important}#woocommerce-order-items h3 small{color:#999}#woocommerce-order-items a.edit_order_item{opacity:.4}#woocommerce-order-items a.edit_order_item:hover,#woocommerce-order-items a.edit_order_item:focus{opacity:1}#woocommerce-order-downloads .buttons{float:left;padding:0;margin:0;vertical-align:top}#woocommerce-order-downloads .buttons .add_item_id,#woocommerce-order-downloads .buttons .chosen-container{width:400px!important;margin-right:9px;vertical-align:top;float:left}#woocommerce-order-downloads .buttons button{margin:2px 0 0}#woocommerce-order-downloads h3 small{color:#999}#poststuff #woocommerce-order-actions .inside{margin:0;padding:0}#poststuff #woocommerce-order-actions .inside ul.order_actions li{padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#poststuff #woocommerce-order-actions .inside ul.order_actions li:last-child{border-bottom:0}#poststuff #woocommerce-order-totals .inside{margin:0;padding:0}#poststuff #woocommerce-order-totals h4{margin:0!important}#poststuff #woocommerce-order-totals h4 a.add_tax_row,#poststuff #woocommerce-order-totals h4 a.add_total_row{display:inline-block;padding-bottom:10px}#poststuff #woocommerce-order-totals h4 .inline_total{float:right;color:#999}#poststuff #woocommerce-order-totals .totals_group{border-top:1px solid #fff;border-bottom:1px solid #DDD;padding:10px 12px 0}#poststuff #woocommerce-order-totals .totals_group:first-child{border-top:0}#poststuff #woocommerce-order-totals .totals_group input,#poststuff #woocommerce-order-totals .totals_group select{width:100%;vertical-align:top;margin:0;font-weight:400;line-height:1em}#poststuff #woocommerce-order-totals .totals_group select{height:30px!important}#poststuff #woocommerce-order-totals .totals_group input{padding:4px 6px}#poststuff #woocommerce-order-totals .totals_group ::-webkit-input-placeholder{line-height:1.4em}#poststuff #woocommerce-order-totals .totals_group ::-moz-placeholder{line-height:1.4em}#poststuff #woocommerce-order-totals .totals_group :-ms-input-placeholder{line-height:1.4em}#poststuff #woocommerce-order-totals .totals_group input:-moz-placeholder{line-height:1.4em}#poststuff #woocommerce-order-totals .totals_group #_order_total,#poststuff #woocommerce-order-totals .totals_group #_order_discount{margin:6px 0 10px}#poststuff #woocommerce-order-totals .buttons{border-top:1px solid #fff;padding:1em 10px;margin:0;text-align:right}#poststuff #woocommerce-order-totals .buttons .calc_line_taxes{float:left}#poststuff #woocommerce-order-totals ul.totals{margin:6px 0 0;float:left}#poststuff #woocommerce-order-totals ul.totals li{float:left;clear:both;width:100%;font-size:1.2em;font-weight:700;line-height:1.2em;margin:0;padding:0 0 10px}#poststuff #woocommerce-order-totals ul.totals li label{font-weight:400;display:block;font-size:.8em;color:#333}#poststuff #woocommerce-order-totals ul.totals li.left{float:left;width:49%;clear:left}#poststuff #woocommerce-order-totals ul.totals li.left input{width:100%}#poststuff #woocommerce-order-totals ul.totals li.right{float:right;width:49%;clear:none}#poststuff #woocommerce-order-totals ul.totals li.right input{width:100%}#poststuff #woocommerce-order-totals ul.totals li.wide{float:left;width:100%;clear:left}#poststuff #woocommerce-order-totals ul.totals li.wide input{width:100%}#poststuff #woocommerce-order-totals ul.totals .calculated{border-color:#ae8ca2;border-style:dotted}#poststuff #woocommerce-order-totals .total_rows{margin:6px 0 0}#poststuff #woocommerce-order-totals .total_rows .total_row:first-child{border-top:1px solid #dfdfdf}#poststuff #woocommerce-order-totals .total_rows .total_row:last-child{margin-bottom:9px}#poststuff #woocommerce-order-totals .total_row{margin:0 -12px;border-bottom:1px solid #DFDFDF;background:#fff;padding:12px 12px 3px;background:#f8f8f8;position:relative}#poststuff #woocommerce-order-totals .total_row p{margin:0 0 9px}#poststuff #woocommerce-order-totals .total_row label{color:#999;display:block;margin:0 0 3px}#poststuff #woocommerce-order-totals .total_row p.first{float:left;width:49%;clear:left}#poststuff #woocommerce-order-totals .total_row p.first input,#poststuff #woocommerce-order-totals .total_row p.first select{width:100%}#poststuff #woocommerce-order-totals .total_row p.last{float:right;width:49%;clear:none}#poststuff #woocommerce-order-totals .total_row p.last input,#poststuff #woocommerce-order-totals .total_row p.last select{width:100%}#poststuff #woocommerce-order-totals .total_row p.wide{clear:both}#poststuff #woocommerce-order-totals .total_row p.wide input,#poststuff #woocommerce-order-totals .total_row p.wide select{width:100%}#poststuff #woocommerce-order-totals .total_row a.delete_tax_row,#poststuff #woocommerce-order-totals .total_row a.delete_total_row{display:block;text-indent:-9999px;position:relative;height:1em;width:1em;display:none;position:absolute;top:-.5em;right:-.5em;font-size:1.4em}#poststuff #woocommerce-order-totals .total_row a.delete_tax_row:before,#poststuff #woocommerce-order-totals .total_row a.delete_total_row:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e013";color:#fff;background-color:#000;-webkit-border-radius:100%;border-radius:100%;box-shadow:0 1px 2px rgba(0,0,0,.2)}#poststuff #woocommerce-order-totals .total_row a.delete_tax_row:hover:before,#poststuff #woocommerce-order-totals .total_row a.delete_total_row:hover:before{background-color:#a00}#poststuff #woocommerce-order-totals .total_row:hover a.delete_tax_row,#poststuff #woocommerce-order-totals .total_row:focus a.delete_tax_row,#poststuff #woocommerce-order-totals .total_row:hover a.delete_total_row,#poststuff #woocommerce-order-totals .total_row:focus a.delete_total_row{display:block}#poststuff #woocommerce-order-notes .inside{margin:0;padding:0}#poststuff #woocommerce-order-notes .inside ul.order_notes li{padding:0 10px}.woocommerce_order_items_wrapper{margin:0;overflow:auto}.woocommerce_order_items_wrapper table.woocommerce_order_items{width:100%;background:#fff}.woocommerce_order_items_wrapper table.woocommerce_order_items thead th{background:#f5f5f5;padding:8px;font-size:11px;text-align:left}.woocommerce_order_items_wrapper table.woocommerce_order_items tbody th,.woocommerce_order_items_wrapper table.woocommerce_order_items td{padding:8px;text-align:left;line-height:26px;vertical-align:top;border-bottom:1px dotted #ececec}.woocommerce_order_items_wrapper table.woocommerce_order_items tbody th textarea,.woocommerce_order_items_wrapper table.woocommerce_order_items td textarea{width:100%}.woocommerce_order_items_wrapper table.woocommerce_order_items tbody th select,.woocommerce_order_items_wrapper table.woocommerce_order_items td select{width:50%}.woocommerce_order_items_wrapper table.woocommerce_order_items tbody th input,.woocommerce_order_items_wrapper table.woocommerce_order_items td input,.woocommerce_order_items_wrapper table.woocommerce_order_items tbody th textarea,.woocommerce_order_items_wrapper table.woocommerce_order_items td textarea{font-size:14px;padding:4px;color:#555}.woocommerce_order_items_wrapper table.woocommerce_order_items td.check-column{padding:8px;width:1%}.woocommerce_order_items_wrapper table.woocommerce_order_items .item{min-width:200px}.woocommerce_order_items_wrapper table.woocommerce_order_items .center,.woocommerce_order_items_wrapper table.woocommerce_order_items .variation-id{text-align:center}.woocommerce_order_items_wrapper table.woocommerce_order_items .cost,.woocommerce_order_items_wrapper table.woocommerce_order_items .tax,.woocommerce_order_items_wrapper table.woocommerce_order_items .quantity,.woocommerce_order_items_wrapper table.woocommerce_order_items .line_cost,.woocommerce_order_items_wrapper table.woocommerce_order_items .line_tax,.woocommerce_order_items_wrapper table.woocommerce_order_items .tax_class{text-align:right}.woocommerce_order_items_wrapper table.woocommerce_order_items .cost label,.woocommerce_order_items_wrapper table.woocommerce_order_items .tax label,.woocommerce_order_items_wrapper table.woocommerce_order_items .quantity label,.woocommerce_order_items_wrapper table.woocommerce_order_items .line_cost label,.woocommerce_order_items_wrapper table.woocommerce_order_items .line_tax label,.woocommerce_order_items_wrapper table.woocommerce_order_items .tax_class label{white-space:nowrap;color:#999;font-size:.833em}.woocommerce_order_items_wrapper table.woocommerce_order_items .cost label input,.woocommerce_order_items_wrapper table.woocommerce_order_items .tax label input,.woocommerce_order_items_wrapper table.woocommerce_order_items .quantity label input,.woocommerce_order_items_wrapper table.woocommerce_order_items .line_cost label input,.woocommerce_order_items_wrapper table.woocommerce_order_items .line_tax label input,.woocommerce_order_items_wrapper table.woocommerce_order_items .tax_class label input{display:inline}.woocommerce_order_items_wrapper table.woocommerce_order_items .cost input,.woocommerce_order_items_wrapper table.woocommerce_order_items .tax input,.woocommerce_order_items_wrapper table.woocommerce_order_items .quantity input,.woocommerce_order_items_wrapper table.woocommerce_order_items .line_cost input,.woocommerce_order_items_wrapper table.woocommerce_order_items .line_tax input,.woocommerce_order_items_wrapper table.woocommerce_order_items .tax_class input{width:70px;vertical-align:middle;text-align:right}.woocommerce_order_items_wrapper table.woocommerce_order_items .cost select,.woocommerce_order_items_wrapper table.woocommerce_order_items .tax select,.woocommerce_order_items_wrapper table.woocommerce_order_items .quantity select,.woocommerce_order_items_wrapper table.woocommerce_order_items .line_cost select,.woocommerce_order_items_wrapper table.woocommerce_order_items .line_tax select,.woocommerce_order_items_wrapper table.woocommerce_order_items .tax_class select{width:85px;height:26px;vertical-align:middle;font-size:1em}.woocommerce_order_items_wrapper table.woocommerce_order_items .quantity{text-align:center}.woocommerce_order_items_wrapper table.woocommerce_order_items .quantity input{text-align:center;width:50px}.woocommerce_order_items_wrapper table.woocommerce_order_items span.subtotal{opacity:.5}.woocommerce_order_items_wrapper table.woocommerce_order_items td.tax_class,.woocommerce_order_items_wrapper table.woocommerce_order_items th.tax_class{text-align:left}.woocommerce_order_items_wrapper table.woocommerce_order_items .calculated{border-color:#ae8ca2;border-style:dotted}.woocommerce_order_items_wrapper table.woocommerce_order_items table.meta{width:100%}.woocommerce_order_items_wrapper table.woocommerce_order_items table.meta,.woocommerce_order_items_wrapper table.woocommerce_order_items table.display_meta{margin:.5em 0 0}.woocommerce_order_items_wrapper table.woocommerce_order_items table.meta tr th,.woocommerce_order_items_wrapper table.woocommerce_order_items table.display_meta tr th{border:0;padding:0 4px .5em 0;line-height:1.5em;width:20%}.woocommerce_order_items_wrapper table.woocommerce_order_items table.meta tr td,.woocommerce_order_items_wrapper table.woocommerce_order_items table.display_meta tr td{padding:0 4px .5em 0;border:0;line-height:1.5em}.woocommerce_order_items_wrapper table.woocommerce_order_items table.meta tr td input,.woocommerce_order_items_wrapper table.woocommerce_order_items table.display_meta tr td input{width:100%;margin:0;position:relative;border-bottom:0;box-shadow:none}.woocommerce_order_items_wrapper table.woocommerce_order_items table.meta tr td textarea,.woocommerce_order_items_wrapper table.woocommerce_order_items table.display_meta tr td textarea{width:100%;height:4em;margin:0;box-shadow:none}.woocommerce_order_items_wrapper table.woocommerce_order_items table.meta tr td input:focus+textarea,.woocommerce_order_items_wrapper table.woocommerce_order_items table.display_meta tr td input:focus+textarea{border-top-color:#999}.woocommerce_order_items_wrapper table.woocommerce_order_items table.meta tr td p,.woocommerce_order_items_wrapper table.woocommerce_order_items table.display_meta tr td p{margin:0 0 .5em;line-height:1.5em}.woocommerce_order_items_wrapper table.woocommerce_order_items table.meta tr td p:last-child,.woocommerce_order_items_wrapper table.woocommerce_order_items table.display_meta tr td p:last-child{margin:0}.woocommerce_order_items_wrapper table.woocommerce_order_items .thumb{text-align:left;width:27px}.woocommerce_order_items_wrapper table.woocommerce_order_items .thumb a{display:block}.woocommerce_order_items_wrapper table.woocommerce_order_items .thumb img{padding:1px;margin:0;border:1px solid #dfdfdf;vertical-align:middle;width:21px;height:21px}.woocommerce_order_items_wrapper table.woocommerce_order_items tr.fee .thumb{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAARklEQVQYGWP8//8/AzGACV3Rnj17/oMwujiGQnQFMD7RChlBbsRmFcwkEO3i4sJImonIumGmg0xBFifaRKIVgj2DbAUuNgCfThpracSKqwAAAABJRU5ErkJggg==) no-repeat center}#woocommerce_customers p.search-box{margin:6px 0 4px;float:left}#woocommerce_customers .tablenav{float:right;clear:none}.widefat.customers td{vertical-align:middle;padding:4px 7px}.widefat .column-order_title{width:15%}.widefat .column-order_title time{display:block;color:#999;margin:3px 0}.widefat .column-orders,.widefat .column-paying,.widefat .column-spent{text-align:center;width:8%}.widefat .column-last_order{width:11%}.widefat .column-order_actions,.widefat .column-user_actions,.widefat .column-wc_actions{width:110px}.widefat .column-order_actions a.button,.widefat .column-user_actions a.button,.widefat .column-wc_actions a.button{float:left;margin:0 4px 2px 0;cursor:pointer;padding:3px 4px;height:auto}.widefat .column-order_actions a.button img,.widefat .column-user_actions a.button img,.widefat .column-wc_actions a.button img{display:block;width:12px;height:auto}.widefat small.meta{display:block;color:#999;font-size:inherit;margin:3px 0}.widefat .column-order_total,.widefat .column-order_date{width:9%}.widefat .column-order_status{width:45px;text-align:center}.widefat .column-order_status mark{display:block;text-indent:-9999px;position:relative;height:1em;width:1em;background:0;font-size:1.4em;margin:0 auto}.widefat .column-order_status mark.pending:after,.widefat .column-order_status mark.completed:after,.widefat .column-order_status mark.on-hold:after,.widefat .column-order_status mark.failed:after,.widefat .column-order_status mark.cancelled:after,.widefat .column-order_status mark.processing:after,.widefat .column-order_status mark.refunded:after{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e001"}.widefat .column-order_status mark.pending:after{content:"\e012";color:#ffba00}.widefat .column-order_status mark.completed:after{content:"\e015";color:#2ea2cc}.widefat .column-order_status mark.on-hold:after{content:"\e033";color:#999}.widefat .column-order_status mark.failed:after{content:"\e016";color:#d0c21f}.widefat .column-order_status mark.cancelled:after{content:"\e013";color:#a00}.widefat .column-order_status mark.processing:after{content:"\e011";color:#73a724}.widefat .column-order_status mark.refunded:after{content:"\e014";color:#999}.widefat td.column-order_status{padding-top:9px}.column-customer_message .note-on{display:block;text-indent:-9999px;position:relative;height:1em;width:1em;margin:0 auto;color:#999}.column-customer_message .note-on:after{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e026";line-height:16px}.column-order_notes .note-on{display:block;text-indent:-9999px;position:relative;height:1em;width:1em;margin:0 auto;color:#999}.column-order_notes .note-on:after{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e027";line-height:16px}.order_actions .processing,.order_actions .complete,.order_actions .view{display:block;text-indent:-9999px;position:relative;height:1em;width:1em;padding:0!important;height:2em!important;width:2em}.order_actions .processing:after,.order_actions .complete:after,.order_actions .view:after{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e001";line-height:1.85}.order_actions .processing:after{content:"\e00f"}.order_actions .complete:after{content:"\e017"}.order_actions .view:after{content:"\e010"}.user_actions .edit,.user_actions .link,.user_actions .view{display:block;text-indent:-9999px;position:relative;height:1em;width:1em;padding:0!important;height:2em!important;width:2em}.user_actions .edit:after,.user_actions .link:after,.user_actions .view:after{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e001";line-height:1.85}.user_actions .edit:after{content:"\e603"}.user_actions .link:after{content:"\e00d"}.user_actions .view:after{content:"\e010"}.attributes-table td,.attributes-table th{width:15%;vertical-align:top}.attributes-table .attribute-terms{width:32%}.attributes-table .attribute-actions{width:2em}.attributes-table .attribute-actions .configure-terms{display:block;text-indent:-9999px;position:relative;height:1em;width:1em;padding:0!important;height:2em!important;width:2em}.attributes-table .attribute-actions .configure-terms:after{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e01c";line-height:1.85}ul.order_notes{padding:2px 0 0}ul.order_notes li .note_content{padding:10px;background:#efefef;position:relative}ul.order_notes li .note_content p{margin:0;padding:0;word-wrap:break-word}ul.order_notes li p.meta{padding:10px;color:#999;margin:0;font-size:11px}ul.order_notes li p.meta .exact-date{border-bottom:1px dotted #999}ul.order_notes li a.delete_note{color:#a00}ul.order_notes li .note_content:after{content:"";display:block;position:absolute;bottom:-10px;left:20px;width:0;height:0;border-width:10px 10px 0 0;border-style:solid;border-color:#efefef transparent}ul.order_notes li.customer-note .note_content{background:#d7cad2}ul.order_notes li.customer-note .note_content:after{border-color:#d7cad2 transparent}.add_note{border-top:1px solid #ddd;padding:10px 10px 0}.add_note h4{margin-top:5px!important}.add_note #add_order_note{width:100%;height:50px}table.wp-list-table .column-thumb{width:52px;text-align:center;white-space:nowrap}table.wp-list-table .column-name{width:22%}table.wp-list-table .column-product_cat,table.wp-list-table .column-product_tag{width:11%!important}table.wp-list-table .column-featured,table.wp-list-table .column-product_type{width:46px;text-align:left!important}table.wp-list-table .column-customer_message,table.wp-list-table .column-order_notes{width:46px;text-align:center}table.wp-list-table .column-customer_message img,table.wp-list-table .column-order_notes img{margin:0 auto;padding-top:0!important}table.wp-list-table .manage-column.column-featured img,table.wp-list-table .manage-column.column-product_type img{padding-left:2px}table.wp-list-table img{margin:1px 2px}table.wp-list-table .row-actions{color:#999}table.wp-list-table td.column-thumb img{margin:0;vertical-align:middle;width:auto;height:auto;max-width:40px;max-height:40px}table.wp-list-table span.na{color:#999}table.wp-list-table .column-is_in_stock{text-align:left!important}table.wp-list-table span.wc-image,table.wp-list-table span.wc-featured,table.wp-list-table span.wc-type{display:block;text-indent:-9999px;position:relative;height:1em;width:1em;margin:0 auto}table.wp-list-table span.wc-image:before,table.wp-list-table span.wc-featured:before,table.wp-list-table span.wc-type:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e00c"}table.wp-list-table span.wc-featured{margin:0;cursor:pointer}table.wp-list-table span.wc-featured:before{content:"\e020"}table.wp-list-table span.wc-featured.not-featured:before{content:"\e021"}table.wp-list-table td.column-featured span.wc-featured{font-size:1.2em}table.wp-list-table span.wc-type{margin:0}table.wp-list-table span.wc-type:before{content:"\e01d"}table.wp-list-table span.product-type{display:block;text-indent:-9999px;position:relative;height:1em;width:1em;font-size:1.2em}table.wp-list-table span.product-type:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e006"}table.wp-list-table span.product-type.grouped:before{content:"\e002"}table.wp-list-table span.product-type.external:before{content:"\e034"}table.wp-list-table span.product-type.variable:before{content:"\e003"}table.wp-list-table span.product-type.downloadable:before{content:"\e001"}table.wp-list-table span.product-type.virtual:before{content:"\e000"}table.wp-list-table mark.instock{font-weight:700;color:#7ad03a;background:transparent none;line-height:1}table.wp-list-table mark.outofstock{font-weight:700;color:#a44;background:transparent none;line-height:1}table.wp-list-table .order-notes_head,table.wp-list-table .notes_head,table.wp-list-table .status_head{display:block;text-indent:-9999px;position:relative;height:1em;width:1em;margin:0 auto}table.wp-list-table .order-notes_head:after,table.wp-list-table .notes_head:after,table.wp-list-table .status_head:after{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e001"}table.wp-list-table .order-notes_head:after{content:"\e028"}table.wp-list-table .notes_head:after{content:"\e026"}table.wp-list-table .status_head:after{content:"\e011"}table.wp-list-table .column-order_items{width:12%}table.wp-list-table .column-order_items table.order_items{width:100%;margin:3px 0 0;padding:0;display:none}table.wp-list-table .column-order_items table.order_items td{border:0;margin:0;padding:0 0 3px}table.wp-list-table .column-order_items table.order_items td.qty{color:#999;padding-right:6px;text-align:left}ul.woocommerce_stats{overflow:hidden;zoom:1}ul.woocommerce_stats li{width:22%;padding:0 1.4%;float:left;font-size:.8em;border-left:1px solid #fff;border-right:1px solid #ececec;text-align:center}ul.woocommerce_stats li:first-child{border-left:0}ul.woocommerce_stats li:last-child{border-right:0}ul.woocommerce_stats strong{font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif;font-size:4em;line-height:1.2em;font-weight:400;text-align:center;display:block}#woocommerce_dashboard_right_now p.sub,#woocommerce_dashboard_right_now .table,#woocommerce_dashboard_right_now .versions{margin:-12px}#woocommerce_dashboard_right_now .inside{font-size:12px;margin-bottom:0;padding-top:20px}#woocommerce_dashboard_right_now p.sub{padding:5px 0 15px;color:#8f8f8f;font-size:14px;position:absolute;top:-17px;left:15px}#woocommerce_dashboard_right_now .table{margin:0;padding:0;position:relative}#woocommerce_dashboard_right_now .table_shop_content{float:left;border-top:#ececec 1px solid;width:45%}#woocommerce_dashboard_right_now .table_orders{float:right;border-top:#ececec 1px solid;width:45%}#woocommerce_dashboard_right_now table td{padding:3px 0;white-space:nowrap}#woocommerce_dashboard_right_now table tr.first td{border-top:0}#woocommerce_dashboard_right_now td.b{padding-right:6px;text-align:right;font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif;font-size:14px;width:1%}#woocommerce_dashboard_right_now td.b a{font-size:18px}#woocommerce_dashboard_right_now td.b a:hover{color:#a00}#woocommerce_dashboard_right_now .t{font-size:12px;padding-right:12px;padding-top:6px;color:#777}#woocommerce_dashboard_right_now .t a{white-space:nowrap}#woocommerce_dashboard_right_now .on-hold a{color:#a00}#woocommerce_dashboard_right_now .pending a{color:#e66f00}#woocommerce_dashboard_right_now .completed a{color:#7ad03a}#woocommerce_dashboard_right_now .versions{padding:6px 10px 12px;clear:both}#woocommerce_dashboard_right_now .versions .b{font-weight:700}#woocommerce_dashboard_right_now a.button{float:right;clear:right;position:relative;top:-5px}ul.recent-orders li,ul.stock_list li{overflow:hidden;zoom:1;border-bottom:#ECECEC 1px solid;padding:0 0 8px;margin:0 0 8px}ul.recent-orders li .order-status,ul.stock_list li .order-status{float:right}ul.recent-orders li small,ul.stock_list li small{color:#999}ul.recent-orders li .order-cost,ul.stock_list li .order-cost,ul.recent-orders li .order-customer,ul.stock_list li .order-customer{margin-left:8px}ul.recent-orders li .completed,ul.stock_list li .completed{color:#7ad03a}ul.recent-orders li .on-hold,ul.stock_list li .on-hold{color:#a00}ul.recent-orders li .processing,ul.stock_list li .processing{color:#2ea2cc}ul.recent-orders li .pending,ul.stock_list li .pending{color:#E66F00}ul.recent-orders li .refunded,ul.stock_list li .refunded,ul.recent-orders li .cancelled,ul.stock_list li .cancelled{color:#999}ul.recent-orders.stock_list small,ul.stock_list.stock_list small{float:right}ul.recent-orders.stock_list a,ul.stock_list.stock_list a{text-decoration:none}mark.notice{background:#fff;color:#a00;margin:0 0 0 10px}a.export_rates,a.import_rates{float:right;margin-left:9px;margin-top:-2px;margin-bottom:0}table.wc_tax_rates,table.wc_input_table{width:100%}table.wc_tax_rates span.tips,table.wc_input_table span.tips{color:#2ea2cc}table.wc_tax_rates td,table.wc_input_table td{padding:0;border-right:1px solid #DFDFDF;border-bottom:1px solid #DFDFDF;border-top:0;background:#fff}table.wc_tax_rates td input[type=text],table.wc_input_table td input[type=text],table.wc_tax_rates td input[type=number],table.wc_input_table td input[type=number]{width:100%;padding:5px 7px;margin:0;border:0;background:transparent none}table.wc_tax_rates td.compound,table.wc_input_table td.compound,table.wc_tax_rates td.apply_to_shipping,table.wc_input_table td.apply_to_shipping{padding:5px 7px;vertical-align:middle}table.wc_tax_rates td.compound input,table.wc_input_table td.compound input,table.wc_tax_rates td.apply_to_shipping input,table.wc_input_table td.apply_to_shipping input{width:auto;padding:0}table.wc_tax_rates td:last-child,table.wc_input_table td:last-child{border-right:0}table.wc_tax_rates tr.current td,table.wc_input_table tr.current td{background-color:#fefbcc}table.wc_tax_rates .item_cost,table.wc_input_table .item_cost,table.wc_tax_rates .cost,table.wc_input_table .cost{text-align:right}table.wc_tax_rates .item_cost input,table.wc_input_table .item_cost input,table.wc_tax_rates .cost input,table.wc_input_table .cost input{text-align:right}table.wc_tax_rates th.sort,table.wc_input_table th.sort{width:17px;padding:0}table.wc_tax_rates td.sort,table.wc_input_table td.sort{padding:0 4px;cursor:move;background:#f9f9f9;text-align:center;vertical-align:middle}table.wc_tax_rates td.sort:before,table.wc_input_table td.sort:before{content:"\e032";font-family:WooCommerce;text-align:center;line-height:1;color:#999;display:block;width:17px;float:left;height:100%}table.wc_tax_rates td.sort:hover:before,table.wc_input_table td.sort:hover:before{color:#333}table.wc_tax_rates .button,table.wc_input_table .button{float:left;margin-right:5px}table.wc_tax_rates .export,table.wc_input_table .export,table.wc_tax_rates .import,table.wc_input_table .import{float:right;margin-right:0;margin-left:5px}table.wc_tax_rates span.tips,table.wc_input_table span.tips{padding:0 3px}table.wc_tax_rates .pagination,table.wc_input_table .pagination{float:right}table.wc_tax_rates .pagination .button,table.wc_input_table .pagination .button{margin-left:5px;margin-right:0}table.wc_tax_rates .pagination .current,table.wc_input_table .pagination .current{background:#bbb;text-shadow:none}table.wc_tax_rates tfoot th,table.wc_input_table tfoot th{padding-left:20px;padding-right:20px}table.wc_tax_rates tr:last-child td,table.wc_input_table tr:last-child td{border-bottom:0}table.wc_gateways,table.wc_shipping{position:relative}table.wc_gateways td,table.wc_shipping td{vertical-align:middle;cursor:move;padding:7px}table.wc_gateways th,table.wc_shipping th{padding:9px 7px!important;vertical-align:middle}table.wc_gateways td.name,table.wc_shipping td.name{font-weight:700}table.wc_gateways .settings,table.wc_shipping .settings{text-align:right}table.wc_gateways .radio,table.wc_shipping .radio,table.wc_gateways .default,table.wc_shipping .default,table.wc_gateways .status,table.wc_shipping .status{text-align:center}table.wc_gateways .radio .tips,table.wc_shipping .radio .tips,table.wc_gateways .default .tips,table.wc_shipping .default .tips,table.wc_gateways .status .tips,table.wc_shipping .status .tips{margin:0 auto}table.wc_gateways .radio input,table.wc_shipping .radio input,table.wc_gateways .default input,table.wc_shipping .default input,table.wc_gateways .status input,table.wc_shipping .status input{margin:0}img.help_tip{vertical-align:middle;margin:0 0 0 9px}.postbox img.help_tip{margin-top:-4px}.status-enabled,.status-disabled{font-size:1.4em;display:block;text-indent:-9999px;position:relative;height:1em;width:1em}.status-enabled:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e015";color:#ad74a2}.woocommerce #template div{margin:0}.woocommerce #template div p .button{float:right;margin-left:10px;margin-top:-4px}.woocommerce #template div .editor textarea{margin-bottom:8px}.woocommerce textarea[disabled=disabled]{background:#DFDFDF!important}.woocommerce table.form-table{margin:0}.woocommerce table.form-table .forminp-radio ul{margin:0}.woocommerce table.form-table .forminp-radio ul li{line-height:1.4em}.woocommerce table.form-table textarea.input-text{height:100%;min-width:150px;display:block}.woocommerce table.form-table input.regular-input{width:25em}.woocommerce table.form-table textarea.wide-input{width:100%}.woocommerce table.form-table img.help_tip{padding:0;margin:-4px 0 0 5px;vertical-align:middle;cursor:help;line-height:1}.woocommerce table.form-table span.help_tip{cursor:help;color:#2ea2cc}.woocommerce table.form-table th{position:relative;padding-right:24px}.woocommerce table.form-table .chosen-container{vertical-align:top;margin-bottom:3px}.woocommerce table.form-table table.widefat th{padding-right:inherit}.woocommerce table.form-table th img.help_tip{margin:0 -24px 0 0;float:right}.woocommerce table.form-table fieldset{margin-top:4px}.woocommerce table.form-table fieldset img.help_tip{margin:-3px 0 0 5px}.woocommerce table.form-table fieldset p.description{margin-bottom:8px}.woocommerce table.form-table fieldset:first-child{margin-top:0}.woocommerce table.form-table .color_box{border:1px solid #ccc;box-shadow:1px 1px 3px rgba(0,0,0,.2);-webkit-box-shadow:1px 1px 3px rgba(0,0,0,.2);-moz-box-shadow:1px 1px 3px rgba(0,0,0,.2);-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;padding:4px 6px;float:left;width:90px;margin:0 10px 0 0}.woocommerce table.form-table .color_box strong{text-align:left;display:block;padding:0 0 2px;font-size:.92em}.woocommerce table.form-table .color_box strong img{float:right;margin:1px 0 0}.woocommerce table.form-table .color_box input.colorpick{width:100%;margin:0;font-family:monospace;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.woocommerce table.form-table .color_box .iris-picker{margin:15px 0 0 -7px}.woocommerce table.form-table .color_box_clear{display:block;clear:both;padding-bottom:10px}.woocommerce table.form-table .iris-picker{z-index:100;position:absolute;display:none;border:1px solid #ccc;box-shadow:1px 1px 3px rgba(0,0,0,.2);-webkit-box-shadow:1px 1px 3px rgba(0,0,0,.2);-moz-box-shadow:1px 1px 3px rgba(0,0,0,.2);-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.woocommerce table.form-table .iris-picker .ui-slider{border:0!important;background:none transparent!important;margin:0!important;width:auto!important;height:auto!important}.woocommerce table.form-table .iris-picker .ui-slider .ui-slider-handle{margin-bottom:0!important}.woocommerce table.form-table .image_width_settings{vertical-align:middle}.woocommerce table.form-table .image_width_settings label{margin-left:10px}.woocommerce #tabs-wrap table a.remove{margin-left:4px}.woocommerce #tabs-wrap table p{margin:0 0 4px!important;overflow:hidden;zoom:1}.woocommerce #tabs-wrap table p a.add{float:left}#wp-excerpt-editor-container{background:#fff}#product_variation-parent #parent_id{width:100%}#postimagediv img{border:1px solid #d5d5d5;max-width:100%}#woocommerce-product-images .inside{margin:0;padding:0}#woocommerce-product-images .inside .add_product_images{padding:0 12px 12px}#woocommerce-product-images .inside #product_images_container{padding:0 0 0 9px}#woocommerce-product-images .inside #product_images_container ul{*zoom:1;margin:0;padding:0}#woocommerce-product-images .inside #product_images_container ul:before,#woocommerce-product-images .inside #product_images_container ul:after{content:" ";display:table}#woocommerce-product-images .inside #product_images_container ul:after{clear:both}#woocommerce-product-images .inside #product_images_container ul li.image,#woocommerce-product-images .inside #product_images_container ul li.add,#woocommerce-product-images .inside #product_images_container ul li.wc-metabox-sortable-placeholder{width:80px;height:80px;float:left;cursor:move;border:1px solid #d5d5d5;margin:9px 9px 0 0;background:#f7f7f7;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;position:relative;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#woocommerce-product-images .inside #product_images_container ul li.image img,#woocommerce-product-images .inside #product_images_container ul li.add img,#woocommerce-product-images .inside #product_images_container ul li.wc-metabox-sortable-placeholder img{width:100%;height:auto;display:block}#woocommerce-product-images .inside #product_images_container ul li.wc-metabox-sortable-placeholder{border:3px dashed #ddd;position:relative}#woocommerce-product-images .inside #product_images_container ul li.wc-metabox-sortable-placeholder:after{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e00c";font-size:2.618em;line-height:72px;color:#ddd}#woocommerce-product-images .inside #product_images_container ul ul.actions{position:absolute;top:-8px;right:-8px;padding:2px;display:none}#woocommerce-product-images .inside #product_images_container ul ul.actions li{float:right;margin:0 0 0 2px}#woocommerce-product-images .inside #product_images_container ul ul.actions li a{width:1em;height:1em;margin:0;height:0;display:block;overflow:hidden}#woocommerce-product-images .inside #product_images_container ul ul.actions li a.tips{cursor:pointer}#woocommerce-product-images .inside #product_images_container ul ul.actions li a.view{display:block;text-indent:-9999px;position:relative;height:1em;width:1em;font-size:1.4em}#woocommerce-product-images .inside #product_images_container ul ul.actions li a.view:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e00c";background-color:#000;color:#fff}#woocommerce-product-images .inside #product_images_container ul ul.actions li a.delete{display:block;text-indent:-9999px;position:relative;height:1em;width:1em;font-size:1.4em}#woocommerce-product-images .inside #product_images_container ul ul.actions li a.delete:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e013";color:#fff;background-color:#000;-webkit-border-radius:100%;border-radius:100%;box-shadow:0 1px 2px rgba(0,0,0,.2)}#woocommerce-product-images .inside #product_images_container ul ul.actions li a.delete:hover:before{background-color:#a00}#woocommerce-product-images .inside #product_images_container ul li:hover ul.actions{display:block}#woocommerce-product-data h3.hndle{padding:10px}#woocommerce-product-data h3.hndle span{display:block;vertical-align:middle;line-height:24px}#woocommerce-product-data h3.hndle span span{display:inline;line-height:inherit;vertical-align:baseline}#woocommerce-product-data h3.hndle select{margin:0}#woocommerce-product-data h3.hndle label{padding-right:1em;font-size:12px;vertical-align:baseline}#woocommerce-product-data h3.hndle label:first-child{margin-right:1em;border-right:1px solid #dfdfdf}#woocommerce-product-data h3.hndle input,#woocommerce-product-data h3.hndle select{margin:-3px 0 0 .5em;vertical-align:middle}#woocommerce-product-data>.handlediv{margin-top:4px}#woocommerce-product-data .wrap{margin:0}#woocommerce-coupon-description{padding:3px 8px;font-size:1.7em;line-height:1.42em;height:auto;width:100%;outline:0;margin:10px 0;display:block}#woocommerce-coupon-description::-webkit-input-placeholder{line-height:1.42em;color:#bbb}#woocommerce-coupon-description::-moz-placeholder{line-height:1.42em;color:#bbb}#woocommerce-coupon-description:-ms-input-placeholder{line-height:1.42em;color:#bbb}#woocommerce-coupon-description:-moz-placeholder{line-height:1.42em;color:#bbb}#woocommerce-product-data .panel-wrap,#woocommerce-coupon-data .panel-wrap{background:#fff;padding-left:153px}#woocommerce-product-data .woocommerce_options_panel,#woocommerce-coupon-data .woocommerce_options_panel,#woocommerce-product-data .wc-metaboxes-wrapper,#woocommerce-coupon-data .wc-metaboxes-wrapper{float:right;width:100%}#woocommerce-product-data .woocommerce_options_panel p,#woocommerce-coupon-data .woocommerce_options_panel p,#woocommerce-product-data .wc-metaboxes-wrapper p,#woocommerce-coupon-data .wc-metaboxes-wrapper p,#woocommerce-product-data .woocommerce_options_panel .wc-metaboxes,#woocommerce-coupon-data .woocommerce_options_panel .wc-metaboxes,#woocommerce-product-data .wc-metaboxes-wrapper .wc-metaboxes,#woocommerce-coupon-data .wc-metaboxes-wrapper .wc-metaboxes,#woocommerce-product-data .woocommerce_options_panel p.toolbar,#woocommerce-coupon-data .woocommerce_options_panel p.toolbar,#woocommerce-product-data .wc-metaboxes-wrapper p.toolbar,#woocommerce-coupon-data .wc-metaboxes-wrapper p.toolbar,#woocommerce-product-data .woocommerce_options_panel fieldset.form-field,#woocommerce-coupon-data .woocommerce_options_panel fieldset.form-field,#woocommerce-product-data .wc-metaboxes-wrapper fieldset.form-field,#woocommerce-coupon-data .wc-metaboxes-wrapper fieldset.form-field{padding-left:12px!important;padding-right:20px!important}#woocommerce-product-data .woocommerce_options_panel .wc-radios,#woocommerce-coupon-data .woocommerce_options_panel .wc-radios,#woocommerce-product-data .wc-metaboxes-wrapper .wc-radios,#woocommerce-coupon-data .wc-metaboxes-wrapper .wc-radios{display:block;float:left;margin:0}#woocommerce-product-data .woocommerce_options_panel .wc-radios li,#woocommerce-coupon-data .woocommerce_options_panel .wc-radios li,#woocommerce-product-data .wc-metaboxes-wrapper .wc-radios li,#woocommerce-coupon-data .wc-metaboxes-wrapper .wc-radios li{display:block;padding:0 0 10px}#woocommerce-product-data .woocommerce_options_panel .wc-radios li input,#woocommerce-coupon-data .woocommerce_options_panel .wc-radios li input,#woocommerce-product-data .wc-metaboxes-wrapper .wc-radios li input,#woocommerce-coupon-data .wc-metaboxes-wrapper .wc-radios li input{width:auto}#woocommerce-product-data .wc-tabs-back,#woocommerce-coupon-data .wc-tabs-back{position:absolute;top:0;left:0;bottom:0;background:#f5f5f5;width:145px;border-right:1px solid #DFDFDF}#woocommerce-product-data ul.wc-tabs,#woocommerce-coupon-data ul.wc-tabs,.woocommerce ul.wc-tabs{background:#f5f5f5;line-height:1em;float:left;width:145px;margin:0;position:relative;padding:0 0 10px;margin-left:-153px}#woocommerce-product-data ul.wc-tabs li,#woocommerce-coupon-data ul.wc-tabs li,.woocommerce ul.wc-tabs li{display:block;padding:0;margin:0}#woocommerce-product-data ul.wc-tabs li a,#woocommerce-coupon-data ul.wc-tabs li a,.woocommerce ul.wc-tabs li a{padding:10px;line-height:18px!important;margin:0;display:block;background:#f5f5f5;text-decoration:none;border-bottom:1px solid #f5f5f5;border-top:1px solid #eaeaea}#woocommerce-product-data ul.wc-tabs li a:before,#woocommerce-coupon-data ul.wc-tabs li a:before,.woocommerce ul.wc-tabs li a:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:7px;content:"\e028"}#woocommerce-product-data ul.wc-tabs li:first-child a,#woocommerce-coupon-data ul.wc-tabs li:first-child a,.woocommerce ul.wc-tabs li:first-child a{border-top:0!important}#woocommerce-product-data ul.wc-tabs li.general_options a:before,#woocommerce-coupon-data ul.wc-tabs li.general_options a:before,.woocommerce ul.wc-tabs li.general_options a:before{content:"\e006"}#woocommerce-product-data ul.wc-tabs li.inventory_options a:before,#woocommerce-coupon-data ul.wc-tabs li.inventory_options a:before,.woocommerce ul.wc-tabs li.inventory_options a:before{content:"\e02c"}#woocommerce-product-data ul.wc-tabs li.shipping_options a:before,#woocommerce-coupon-data ul.wc-tabs li.shipping_options a:before,.woocommerce ul.wc-tabs li.shipping_options a:before{content:"\e01a"}#woocommerce-product-data ul.wc-tabs li.linked_product_options a:before,#woocommerce-coupon-data ul.wc-tabs li.linked_product_options a:before,.woocommerce ul.wc-tabs li.linked_product_options a:before{content:"\e00d"}#woocommerce-product-data ul.wc-tabs li.attribute_options a:before,#woocommerce-coupon-data ul.wc-tabs li.attribute_options a:before,.woocommerce ul.wc-tabs li.attribute_options a:before{content:"\e02b"}#woocommerce-product-data ul.wc-tabs li.advanced_options a:before,#woocommerce-coupon-data ul.wc-tabs li.advanced_options a:before,.woocommerce ul.wc-tabs li.advanced_options a:before{content:"\e01c"}#woocommerce-product-data ul.wc-tabs li.variation_options a:before,#woocommerce-coupon-data ul.wc-tabs li.variation_options a:before,.woocommerce ul.wc-tabs li.variation_options a:before{content:"\e003"}#woocommerce-product-data ul.wc-tabs li.usage_restriction_options a:before,#woocommerce-coupon-data ul.wc-tabs li.usage_restriction_options a:before,.woocommerce ul.wc-tabs li.usage_restriction_options a:before{content:"\e602"}#woocommerce-product-data ul.wc-tabs li.usage_limit_options a:before,#woocommerce-coupon-data ul.wc-tabs li.usage_limit_options a:before,.woocommerce ul.wc-tabs li.usage_limit_options a:before{content:"\e601"}#woocommerce-product-data ul.wc-tabs li.general_coupon_data a:before,#woocommerce-coupon-data ul.wc-tabs li.general_coupon_data a:before,.woocommerce ul.wc-tabs li.general_coupon_data a:before{content:"\e600"}#woocommerce-product-data ul.wc-tabs li.active a,#woocommerce-coupon-data ul.wc-tabs li.active a,.woocommerce ul.wc-tabs li.active a{border-color:#DFDFDF;position:relative;background-color:#fff;color:#555;margin:0 -1px 0 0}@media only screen and (max-width:900px){#woocommerce-product-data .panel-wrap,#woocommerce-coupon-data .panel-wrap{padding-left:35px}#woocommerce-product-data .wc-tabs-back,#woocommerce-coupon-data .wc-tabs-back{position:absolute;top:0;left:0;bottom:0;width:28px;border-right:1px solid #DFDFDF}#woocommerce-product-data ul.product_data_tabs,.woocommerce ul.wc-tabs{width:28px;margin-left:-35px}#woocommerce-product-data ul.product_data_tabs li a,.woocommerce ul.wc-tabs li a{overflow:hidden;white-space:nowrap}}#woocommerce-product-data .inside,#woocommerce-product-type-options .inside,#woocommerce-order-data .inside,#woocommerce-order-downloads .inside,#woocommerce-coupon-data .inside{padding:0;margin:0}.woocommerce_options_panel,.panel{padding:9px;color:#555}.woocommerce_page_settings .woocommerce_options_panel,.panel{padding:0}#woocommerce-product-type-options .panel,#woocommerce-product-specs .inside{padding:9px;margin:0}.woocommerce_options_panel p,#woocommerce-product-type-options .panel p,.woocommerce_options_panel fieldset.form-field{margin:0 0 9px;font-size:12px;padding:5px 9px;line-height:24px}.woocommerce_options_panel p:after,#woocommerce-product-type-options .panel p:after,.woocommerce_options_panel fieldset.form-field:after{content:".";display:block;height:0;clear:both;visibility:hidden}.woocommerce_options_panel .checkbox,table.woocommerce_variable_attributes .checkbox{width:auto;vertical-align:middle;margin:7px 0}.woocommerce_variations .downloadable_files table,.woocommerce_options_panel .downloadable_files table{width:100%;padding:0!important}.woocommerce_variations .downloadable_files table th,.woocommerce_options_panel .downloadable_files table th{padding:7px 0 7px 7px}.woocommerce_variations .downloadable_files table td,.woocommerce_options_panel .downloadable_files table td{vertical-align:middle!important;padding:4px 0 4px 7px;position:relative}.woocommerce_variations .downloadable_files table td:last-child,.woocommerce_options_panel .downloadable_files table td:last-child{padding-right:7px}.woocommerce_variations .downloadable_files table td input.input_text,.woocommerce_options_panel .downloadable_files table td input.input_text{width:100%;float:none;margin:1px 0}.woocommerce_variations .downloadable_files table td .upload_file_button,.woocommerce_options_panel .downloadable_files table td .upload_file_button{float:right;width:auto;cursor:pointer}.woocommerce_variations .downloadable_files table td .delete,.woocommerce_options_panel .downloadable_files table td .delete{display:block;text-indent:-9999px;position:relative;height:1em;width:1em}.woocommerce_variations .downloadable_files table td .delete:before,.woocommerce_options_panel .downloadable_files table td .delete:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e001";content:"\e013";color:#999}.woocommerce_variations .downloadable_files table td .delete:hover:before,.woocommerce_options_panel .downloadable_files table td .delete:hover:before{color:#a00}.woocommerce_variations .downloadable_files table th.sort,.woocommerce_options_panel .downloadable_files table th.sort{width:17px;padding:0}.woocommerce_variations .downloadable_files table td.sort,.woocommerce_options_panel .downloadable_files table td.sort{padding:0 0 0 1.5em;cursor:move;position:relative;background:#f9f9f9}.woocommerce_variations .downloadable_files table td.sort:before,.woocommerce_options_panel .downloadable_files table td.sort:before{content:"";position:absolute;top:1em;left:.5em;width:1em;height:.125em;border-top:.375em double #999;border-bottom:.125em solid #999}.woocommerce_options_panel .downloadable_files{padding:0 9px 0 162px;position:relative;margin:9px 0}.woocommerce_options_panel .downloadable_files label{position:absolute;left:0;margin:0 0 0 12px;line-height:24px}.woocommerce_options_panel p{margin:9px 0}.woocommerce_options_panel label,.woocommerce_options_panel legend{float:left;width:150px;padding:0}.woocommerce_options_panel label .req,.woocommerce_options_panel legend .req{font-weight:700;font-style:normal;color:#a00}.woocommerce_options_panel .description{padding:0;margin:0 0 0 7px}.woocommerce_options_panel .description-block{margin-left:0;display:block}.woocommerce_options_panel textarea,.woocommerce_options_panel input,.woocommerce_options_panel select{margin:0}.woocommerce_options_panel textarea{vertical-align:top;height:3.5em;line-height:1.5em}.woocommerce_options_panel input[type=text]{width:50%;float:left}.woocommerce_options_panel input.button{width:auto;margin-left:8px}.woocommerce_options_panel select{float:left}.woocommerce_options_panel .short{width:25%}.woocommerce_options_panel .sized{width:auto!important;margin-right:6px}.woocommerce_options_panel .options_group{border-top:1px solid #fff;border-bottom:1px solid #DFDFDF}.woocommerce_options_panel .options_group:first-child{border-top:0}.woocommerce_options_panel .options_group:last-child{border-bottom:0}.woocommerce_options_panel .options_group fieldset{margin:9px 0;font-size:12px;padding:5px 9px;line-height:24px}.woocommerce_options_panel .options_group fieldset label{width:auto;float:none}.woocommerce_options_panel .options_group fieldset ul{float:left;width:50%;margin:0;padding:0}.woocommerce_options_panel .options_group fieldset ul li{margin:0;width:auto}.woocommerce_options_panel .options_group fieldset ul li input{width:auto;float:none;margin-right:4px}.woocommerce_options_panel .dimensions_field .wrap input{margin-right:.2%;width:8.2%}.woocommerce_options_panel .dimensions_field .wrap .last{margin-right:0}#woocommerce-product-data input.dp-applied{float:left}#grouped_product_options,#virtual_product_options,#simple_product_options{padding:12px;font-style:italic;color:#666}.wc-metaboxes-wrapper .toolbar{margin:0!important;border-top:1px solid #fff;border-bottom:1px solid #DFDFDF;padding:9px 12px!important}.wc-metaboxes-wrapper .toolbar:first-child{border-top:0}.wc-metaboxes-wrapper .toolbar:last-child{border-bottom:0}.wc-metaboxes-wrapper p.toolbar{overflow:hidden;zoom:1}.wc-metaboxes-wrapper select.attribute_taxonomy,.wc-metaboxes-wrapper button.add_attribute,.wc-metaboxes-wrapper button.add_variable_attribute,.wc-metaboxes-wrapper .fr{float:right;margin:0 0 0 6px}.wc-metaboxes-wrapper .wc-metaboxes{border-bottom:1px solid #DFDFDF;padding:0 12px}.wc-metaboxes-wrapper .wc-metabox-sortable-placeholder{border-color:#bbb;background-color:#f5f5f5;margin-bottom:9px;border-width:1px;border-style:dashed}.wc-metaboxes-wrapper .wc-metabox{background:#fff;border:1px solid #dfdfdf;margin:9px 0!important;-moz-border-radius-topleft:3px;-moz-border-radius-topright:3px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px}.wc-metaboxes-wrapper .wc-metabox .handlediv:before{line-height:.5!important}.wc-metaboxes-wrapper .wc-metabox.closed{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.wc-metaboxes-wrapper .wc-metabox.closed .handlediv:before{content:"\f140"!important}.wc-metaboxes-wrapper .wc-metabox.closed h3{border:0}.wc-metaboxes-wrapper .wc-metabox h3{margin:0!important;padding:6px!important;font-size:1em!important;overflow:hidden;zoom:1;cursor:move}.wc-metaboxes-wrapper .wc-metabox h3 button{float:right}.wc-metaboxes-wrapper .wc-metabox h3 strong{font-weight:400;line-height:24px}.wc-metaboxes-wrapper .wc-metabox h3 select{font-family:sans-serif}.wc-metaboxes-wrapper .wc-metabox h3 .handlediv{background-position:6px 5px!important;display:none;height:24px}.wc-metaboxes-wrapper .wc-metabox h3.fixed{cursor:pointer!important}.wc-metaboxes-wrapper .wc-metabox h3:hover .handlediv{display:block}.wc-metaboxes-wrapper .wc-metabox table{width:100%;position:relative;background:#fff;padding:3px}.wc-metaboxes-wrapper .wc-metabox table td{text-align:left;padding:6px;vertical-align:top;border:0}.wc-metaboxes-wrapper .wc-metabox table td label{text-align:left;display:block;line-height:21px}.wc-metaboxes-wrapper .wc-metabox table td input{float:left;min-width:200px}.wc-metaboxes-wrapper .wc-metabox table td input,.wc-metaboxes-wrapper .wc-metabox table td textarea{width:100%;margin:0;display:block;font-size:14px;padding:4px;color:#555}.wc-metaboxes-wrapper .wc-metabox table td select,.wc-metaboxes-wrapper .wc-metabox table td .chosen-container{width:100%!important}.wc-metaboxes-wrapper .wc-metabox table td input.short{width:200px}.wc-metaboxes-wrapper .wc-metabox table td input.checkbox{width:16px;min-width:inherit;vertical-align:text-bottom;display:inline-block;float:none}.wc-metaboxes-wrapper .wc-metabox table td.attribute_name{width:200px}.wc-metaboxes-wrapper .wc-metabox table .plus,.wc-metaboxes-wrapper .wc-metabox table .minus{margin-top:6px}.wc-metaboxes-wrapper .wc-metabox table .fl{float:left}.wc-metaboxes-wrapper .wc-metabox table .fr{float:right}.wc-metaboxes-wrapper .expand_all,.wc-metaboxes-wrapper .close_all{float:right;margin-left:14px;line-height:22px;text-decoration:none}.wc-metaboxes-wrapper .expand_all:before,.wc-metaboxes-wrapper .close_all:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:7px;content:"\e036";font-size:.8em;color:#999}.wc-metaboxes-wrapper .expand_all:before{content:"\e035"}#variable_product_options .woocommerce_variation table{background:#fafafa;border-top:1px solid #eee;padding:6px}#variable_product_options .woocommerce_variation table td input{min-width:inherit!important}#variable_product_options .woocommerce_variation table td.dimensions_field input{width:32%;margin-right:2%}#variable_product_options .woocommerce_variation table td.dimensions_field .last{margin-right:0}#variable_product_options .woocommerce_variation table td.options{width:150px}#variable_product_options .woocommerce_variation table td.options label{margin-bottom:6px}#variable_product_options .woocommerce_variation table td.data{padding:0 0 0 12px}#variable_product_options .woocommerce_variation table td.data table.data_table{width:100%;padding:0 12px 6px;background:#fff;border:1px solid #dfdfdf;-moz-border-radius:3px;-webkit-border-radius:3px;-khtml-border-radius:3px;border-radius:3px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#variable_product_options .woocommerce_variation table td.data table.data_table td{width:50%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#variable_product_options .woocommerce_variation table td.data table.data_table:before{content:"";display:block;position:absolute;top:33px;left:0;margin:0 0 0 -1px;border:7px solid #dfdfdf;border-color:transparent transparent transparent #dfdfdf}#variable_product_options .woocommerce_variation table td.data table.data_table:after{content:"";display:block;position:absolute;top:34px;left:0;margin:0 0 0 -1px;border:6px solid #fafafa;border-color:transparent transparent transparent #fafafa}#variable_product_options .woocommerce_variation table td.upload_image{white-space:nowrap;width:75px}#variable_product_options .woocommerce_variation table td.upload_image img{float:none;width:73px;border:1px solid #dfdfdf}#variable_product_options .woocommerce_variation table td.upload_image .button{margin:0;padding:4px 10px;width:auto;float:none;vertical-align:middle}#variable_product_options .woocommerce_variation table td.upload_image .upload_image_button{display:block;position:relative}#variable_product_options .woocommerce_variation table td.upload_image .upload_image_button .overlay{display:none;width:75px;height:75px;position:absolute;top:0;left:0;margin:0;padding:0;opacity:.5;background:#eee url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAXklEQVQYGW2OUQrAMAhDFy8+dnKnwiuh2I+aJulDZebDkfSie1b28Q7EXWrfvSm60RQnkQUC8ja7owpmL6d4GdDZ0cNNHyIhZEj4QYCxze6orsluAh8AnR0xKPR07weXJi8JGd3qqwAAAABJRU5ErkJggg==) no-repeat center center}#variable_product_options .woocommerce_variation table td.upload_image .upload_image_button:hover .overlay{display:block}#variable_product_options .woocommerce_variation table td.upload_image .upload_image_button.remove .overlay{background:#eee url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAWElEQVQYGY2OUQ6AMAxCZdm9jSev65K3YKNm+6EFBlVEHDxJJ3Pi0C72xlBNyTs3jU7wEUTTIB51GCp2CL8HLpHEdaOLb/N2dfuq9NT0zOo/M9q6EaImsd/uViMLVuD4KAAAAABJRU5ErkJggg==) no-repeat center center}#variable_product_options .woocommerce_variation table .cancel_sale_schedule,#variable_product_options .woocommerce_variation table .sale_schedule{float:right}#variable_product_options .woocommerce_variation table tr.sale_price_dates_fields td{padding-right:24px;position:relative}#variable_product_options .woocommerce_variation table tr.sale_price_dates_fields td img{position:absolute;right:0;bottom:0;padding:5px 0;margin:0 0 6px}.tips{cursor:help;text-decoration:none}img.tips{padding:5px 0 0}#tiptip_holder{display:none;position:absolute;top:0;left:0;z-index:99999}#tiptip_holder.tip_top{padding-bottom:5px}#tiptip_holder.tip_top #tiptip_arrow_inner{margin-top:-7px;margin-left:-6px;border-top-color:#464646}#tiptip_holder.tip_bottom{padding-top:5px}#tiptip_holder.tip_bottom #tiptip_arrow_inner{margin-top:-5px;margin-left:-6px;border-bottom-color:#464646}#tiptip_holder.tip_right{padding-left:5px}#tiptip_holder.tip_right #tiptip_arrow_inner{margin-top:-6px;margin-left:-5px;border-right-color:#464646}#tiptip_holder.tip_left{padding-right:5px}#tiptip_holder.tip_left #tiptip_arrow_inner{margin-top:-6px;margin-left:-7px;border-left-color:#464646}#tiptip_content,.chart-tooltip,.wc_error_tip{font-size:11px;color:#fff;padding:.5em;background:#464646;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:1px 1px 3px rgba(0,0,0,.1);-moz-box-shadow:1px 1px 3px rgba(0,0,0,.1);box-shadow:1px 1px 3px rgba(0,0,0,.1);text-align:center}#tiptip_content code,.chart-tooltip code,.wc_error_tip code{background:#888;padding:1px}#tiptip_arrow,#tiptip_arrow_inner{position:absolute;border-color:transparent;border-style:solid;border-width:6px;height:0;width:0}.wc_error_tip{background:#d82223;max-width:20em;white-space:normal;position:absolute;margin:1.5em 1px 0 -1em;z-index:9999999}.wc_error_tip:after{content:"";display:block;border:8px solid #d82223;border-right-color:transparent;border-left-color:transparent;border-top-color:transparent;position:absolute;top:-3px;left:50%;margin:-1em 0 0 -3px}img.ui-datepicker-trigger{vertical-align:middle;margin-top:-1px;cursor:pointer}.woocommerce_options_panel img.ui-datepicker-trigger,.wc-metabox-content img.ui-datepicker-trigger{float:left;margin-right:8px;margin-top:4px;margin-left:4px}#ui-datepicker-div{display:none}.woocommerce-reports-wrap.woocommerce-reports-wrap,.woocommerce-reports-wide.woocommerce-reports-wrap{margin-left:300px;padding-top:18px}.woocommerce-reports-wrap.halved,.woocommerce-reports-wide.halved{margin:0;overflow:hidden;zoom:1}.woocommerce-reports-wrap .widefat td,.woocommerce-reports-wide .widefat td{vertical-align:top;padding:7px}.woocommerce-reports-wrap .widefat td .description,.woocommerce-reports-wide .widefat td .description{margin:4px 0 0}.woocommerce-reports-wrap .postbox:after,.woocommerce-reports-wide .postbox:after{content:".";display:block;height:0;clear:both;visibility:hidden}.woocommerce-reports-wrap .postbox h3,.woocommerce-reports-wide .postbox h3{cursor:default!important}.woocommerce-reports-wrap .postbox .inside,.woocommerce-reports-wide .postbox .inside{padding:10px;margin:0!important}.woocommerce-reports-wrap .postbox h3.stats_range,.woocommerce-reports-wide .postbox h3.stats_range{padding:0!important;border-bottom-color:#dfdfdf}.woocommerce-reports-wrap .postbox h3.stats_range .export_csv,.woocommerce-reports-wide .postbox h3.stats_range .export_csv{float:right;line-height:26px;border-left:1px solid #dfdfdf;padding:10px;display:block;text-decoration:none}.woocommerce-reports-wrap .postbox h3.stats_range .export_csv:before,.woocommerce-reports-wide .postbox h3.stats_range .export_csv:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:7px;content:"\e00a";margin-right:4px}.woocommerce-reports-wrap .postbox h3.stats_range ul,.woocommerce-reports-wide .postbox h3.stats_range ul{list-style:none outside;margin:0;padding:0;zoom:1;background:#f5f5f5}.woocommerce-reports-wrap .postbox h3.stats_range ul:before,.woocommerce-reports-wide .postbox h3.stats_range ul:before,.woocommerce-reports-wrap .postbox h3.stats_range ul:after,.woocommerce-reports-wide .postbox h3.stats_range ul:after{content:" ";display:table}.woocommerce-reports-wrap .postbox h3.stats_range ul:after,.woocommerce-reports-wide .postbox h3.stats_range ul:after{clear:both}.woocommerce-reports-wrap .postbox h3.stats_range ul li,.woocommerce-reports-wide .postbox h3.stats_range ul li{float:left;margin:0;padding:0;line-height:26px}.woocommerce-reports-wrap .postbox h3.stats_range ul li a,.woocommerce-reports-wide .postbox h3.stats_range ul li a{border-right:1px solid #dfdfdf;padding:10px;display:block;text-decoration:none}.woocommerce-reports-wrap .postbox h3.stats_range ul li.active,.woocommerce-reports-wide .postbox h3.stats_range ul li.active{background:#fff;-webkit-box-shadow:0 4px 0 0 #fff;box-shadow:0 4px 0 0 #fff}.woocommerce-reports-wrap .postbox h3.stats_range ul li.active a,.woocommerce-reports-wide .postbox h3.stats_range ul li.active a{color:#777}.woocommerce-reports-wrap .postbox h3.stats_range ul li.custom,.woocommerce-reports-wide .postbox h3.stats_range ul li.custom{padding:9px 10px;vertical-align:middle}.woocommerce-reports-wrap .postbox h3.stats_range ul li.custom form,.woocommerce-reports-wide .postbox h3.stats_range ul li.custom form,.woocommerce-reports-wrap .postbox h3.stats_range ul li.custom div,.woocommerce-reports-wide .postbox h3.stats_range ul li.custom div{display:inline;margin:0}.woocommerce-reports-wrap .postbox h3.stats_range ul li.custom form input.range_datepicker,.woocommerce-reports-wide .postbox h3.stats_range ul li.custom form input.range_datepicker,.woocommerce-reports-wrap .postbox h3.stats_range ul li.custom div input.range_datepicker,.woocommerce-reports-wide .postbox h3.stats_range ul li.custom div input.range_datepicker{padding:0;margin:0 10px 0 0;background:transparent;border:0;color:#777;text-align:center;-webkit-box-shadow:none;box-shadow:none}.woocommerce-reports-wrap .postbox .chart-with-sidebar,.woocommerce-reports-wide .postbox .chart-with-sidebar{padding:12px 12px 12px 249px;margin:0!important}.woocommerce-reports-wrap .postbox .chart-with-sidebar .chart-sidebar,.woocommerce-reports-wide .postbox .chart-with-sidebar .chart-sidebar{width:225px;margin-left:-237px;float:left}.woocommerce-reports-wrap .postbox .chart-widgets,.woocommerce-reports-wide .postbox .chart-widgets{margin:0;padding:0}.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget,.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget{margin:0 0 1em;background:#fafafa;border:1px solid #dfdfdf}.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget:after,.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget:after{content:".";display:block;height:0;clear:both;visibility:hidden}.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget h4,.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget h4{background:#fff;border:1px solid #dfdfdf;border-left-width:0;border-right-width:0;padding:10px;margin:0;color:#2ea2cc;border-top-width:0;background-image:-webkit-gradient(linear,left bottom,left top,from(#ececec),to(#f9f9f9));background-image:-webkit-linear-gradient(bottom,#ececec,#f9f9f9);background-image:-moz-linear-gradient(bottom,#ececec,#f9f9f9);background-image:-o-linear-gradient(bottom,#ececec,#f9f9f9);background-image:linear-gradient(to top,#ececec,#f9f9f9)}.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget h4.section_title:hover,.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget h4.section_title:hover{color:#a00}.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget .section_title,.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget .section_title{cursor:pointer}.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget .section_title span,.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget .section_title span{display:block}.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget .section_title span:after,.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget .section_title span:after{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-left:7px;content:"\e035";float:right;font-size:.9em;line-height:1.618}.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget .section_title.open,.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget .section_title.open{color:#333}.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget .section_title.open span:after,.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget .section_title.open span:after{display:none}.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget .section,.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget .section{border-bottom:1px solid #dfdfdf}.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget .section .chosen-container,.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget .section .chosen-container{width:100%!important}.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget .section:last-of-type,.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget .section:last-of-type{border-radius:0 0 3px 3px}.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget table,.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget table{width:100%}.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget table td,.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget table td{padding:7px 10px;vertical-align:top;border-top:1px solid #e5e5e5;line-height:1.4em}.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget table tr:first-child td,.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget table tr:first-child td{border-top:0}.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget table td.count,.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget table td.count{background:#f5f5f5}.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget table td.name,.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget table td.name{padding-right:0}.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget table td.sparkline,.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget table td.sparkline{vertical-align:middle}.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget table .wc_sparkline,.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget table .wc_sparkline{width:32px;height:1em;display:block;float:right}.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget table tr.active td,.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget table tr.active td{background:#f5f5f5}.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget form,.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget form,.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget p,.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget p{margin:0;padding:10px}.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget form .submit,.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget form .submit,.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget p .submit,.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget p .submit{margin-top:10px}.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget #product_ids,.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget #product_ids{width:100%}.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget .select_all,.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget .select_all,.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget .select_none,.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget .select_none{float:right;color:#999;margin-left:4px;margin-top:10px}.woocommerce-reports-wrap .postbox .chart-legend,.woocommerce-reports-wide .postbox .chart-legend{list-style:none outside;margin:0 0 1em;padding:0;border:1px solid #dfdfdf;border-right-width:0;border-bottom-width:0;background:#fff}.woocommerce-reports-wrap .postbox .chart-legend li,.woocommerce-reports-wide .postbox .chart-legend li{border-right:5px solid #aaa;color:#aaa;padding:1em 1.5em;display:block;margin:0;-webkit-transition:all ease .5s;box-shadow:inset 0 -1px 0 0 #dfdfdf}.woocommerce-reports-wrap .postbox .chart-legend li strong,.woocommerce-reports-wide .postbox .chart-legend li strong{font-size:2.618em;line-height:1.2em;color:#464646;font-weight:400;display:block;font-family:HelveticaNeue-Light,"Helvetica Neue Light","Helvetica Neue",sans-serif}.woocommerce-reports-wrap .postbox .chart-legend li:hover,.woocommerce-reports-wide .postbox .chart-legend li:hover{box-shadow:inset 0 -1px 0 0 #dfdfdf,inset 300px 0 0 rgba(156,93,144,.1);border-right:5px solid #9c5d90!important;padding-left:2em;color:#9c5d90}.woocommerce-reports-wrap .postbox .pie-chart-legend,.woocommerce-reports-wide .postbox .pie-chart-legend{margin:12px 0 0;overflow:hidden}.woocommerce-reports-wrap .postbox .pie-chart-legend li,.woocommerce-reports-wide .postbox .pie-chart-legend li{float:left;margin:0;padding:6px 0 0;border-top:4px solid #999;text-align:center;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:50%}.woocommerce-reports-wrap .postbox .stat,.woocommerce-reports-wide .postbox .stat{font-size:1.5em!important;font-weight:700;text-align:center}.woocommerce-reports-wrap .postbox .chart-placeholder,.woocommerce-reports-wide .postbox .chart-placeholder{width:100%;height:650px;overflow:hidden;position:relative}.woocommerce-reports-wrap .postbox .chart-prompt,.woocommerce-reports-wide .postbox .chart-prompt{line-height:650px;margin:0;color:#999;font-size:1.2em;font-style:italic;text-align:center}.woocommerce-reports-wrap .postbox .chart-container,.woocommerce-reports-wide .postbox .chart-container{background:#fff;padding:12px;position:relative;border:1px solid #dfdfdf;border-radius:3px}.woocommerce-reports-wrap .postbox .main .chart-legend,.woocommerce-reports-wide .postbox .main .chart-legend{margin-top:12px}.woocommerce-reports-wrap .postbox .main .chart-legend li,.woocommerce-reports-wide .postbox .main .chart-legend li{border-right:0;margin:0 8px 0 0;float:left;border-top:4px solid #aaa}.woocommerce-reports-wrap .woocommerce-reports-main,.woocommerce-reports-wide .woocommerce-reports-main{float:left;min-width:100%}.woocommerce-reports-wrap .woocommerce-reports-main table td,.woocommerce-reports-wide .woocommerce-reports-main table td{padding:9px}.woocommerce-reports-wrap .woocommerce-reports-sidebar,.woocommerce-reports-wide .woocommerce-reports-sidebar{display:inline;width:281px;margin-left:-300px;clear:both;float:left}.woocommerce-reports-wrap .woocommerce-reports-left,.woocommerce-reports-wide .woocommerce-reports-left{width:49.5%;float:left}.woocommerce-reports-wrap .woocommerce-reports-right,.woocommerce-reports-wide .woocommerce-reports-right{width:49.5%;float:right}.woocommerce-wide-reports-wrap{padding-bottom:11px}.woocommerce-wide-reports-wrap .widefat .export-data{float:right}.woocommerce-wide-reports-wrap .widefat th,.woocommerce-wide-reports-wrap .widefat td{vertical-align:middle;padding:7px}form.report_filters p{vertical-align:middle}form.report_filters label,form.report_filters input,form.report_filters div{vertical-align:middle}.chart-tooltip{position:absolute;display:none;line-height:1}table.bar_chart{width:100%}table.bar_chart thead th{text-align:left;color:#ccc;padding:6px 0}table.bar_chart tbody th{padding:6px 0;width:25%;text-align:left!important;font-weight:400!important;border-bottom:1px solid #fee}table.bar_chart tbody td{text-align:right;line-height:24px;padding:6px 6px 6px 0;border-bottom:1px solid #fee}table.bar_chart tbody td span{color:#8a4b75;display:block}table.bar_chart tbody td span.alt{color:#47a03e;margin-top:6px}table.bar_chart tbody td.bars{position:relative;text-align:left;padding:6px 6px 6px 0;border-bottom:1px solid #fee}table.bar_chart tbody td.bars span,table.bar_chart tbody td.bars a{text-decoration:none;clear:both;background:#8a4b75;float:left;display:block;line-height:24px;height:24px;-moz-border-radius:3px;-webkit-border-radius:3px;-o-border-radius:3px;-khtml-border-radius:3px;border-radius:3px}table.bar_chart tbody td.bars span.alt{clear:both;background:#47a03e}table.bar_chart tbody td.bars span.alt span{margin:0;color:#c5dec2!important;text-shadow:0 1px 0 #47a03e;background:transparent}.chosen-container-single .chosen-single{height:26px;line-height:26px;margin-top:1px}.chosen-container-single .chosen-single div b{background:url(../images/chosen-sprite.png) no-repeat 0 4px!important}.chosen-container-active .chosen-single-with-drop div b{background-position:-18px 2px!important}.chosen-container-single .chosen-search input{line-height:13px;width:100%!important;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.chosen-container .chosen-drop{width:100%!important;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.chosen-container-multi .chosen-choices .search-field input{height:21px!important}.woocommerce_options_panel .chosen-container-multi{width:50%!important;float:left}.woocommerce_options_panel .chosen-container-multi .search-field{min-width:50%}.woocommerce_options_panel .chosen-container-multi .search-field input{min-width:100%}@media only screen and (max-width:1280px){#order_data .order_data_column{width:48%}#order_data .order_data_column:first-child{width:100%}.woocommerce_options_panel .description{display:block;clear:both;margin-left:150px}}@media only screen and (max-width:900px){#woocommerce-product-data ul.product_data_tabs,#woocommerce-product-data .wc-tabs-back{width:40px}#woocommerce-product-data .woocommerce_options_panel,#woocommerce-coupon-data .woocommerce_options_panel,#woocommerce-product-data .wc-metaboxes-wrapper,#woocommerce-coupon-data .wc-metaboxes-wrapper{width:98%}#woocommerce-product-data ul.product_data_tabs li a{position:relative;text-indent:-999px;padding:10px}#woocommerce-product-data ul.product_data_tabs li a:before{position:absolute;top:0;right:0;bottom:0;left:0;text-indent:0;text-align:center;line-height:40px;width:40px;height:40px}}@media only screen and (max-width:782px){#wp-excerpt-media-buttons a{font-size:16px;line-height:37px;height:39px;padding:0 20px 0 15px}#wp-excerpt-editor-tools{padding-top:20px;padding-right:15px;overflow:hidden;margin-bottom:-1px}#woocommerce-product-data .checkbox{width:25px}}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){#icon-woocommerce,.woocommerce_icon,.icon32-posts-product,.icon32-posts-shop_order,.icon32-posts-shop_coupon,.icon32-posts-product_variation{background-image:url(../images/icons/woocommerce-icons-x2.png)!important;background-size:986px 91px!important}}.woocommerce-checkout .form-row .chosen-container{width:100%!important}.woocommerce-checkout .form-row .chosen-container-single .chosen-single{height:28px;line-height:29px}.woocommerce-checkout .form-row .chosen-container-single .chosen-single div b{background:url(../images/chosen-sprite.png) no-repeat 0 3px!important}.woocommerce-checkout .form-row .chosen-container-active .chosen-single-with-drop div b{background-position:-18px 4px!important}.woocommerce-checkout .form-row .chosen-container-single .chosen-search input{line-height:13px;width:100%!important;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.woocommerce-checkout .form-row .chosen-container .chosen-drop{width:100%!important;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-resolution:144dpi){.woocommerce-checkout .form-row .chosen-container-single .chosen-single div b{background-image:url(../images/chosen-sprite@2x.png)!important;background-position:0 5px!important;background-repeat:no-repeat!important;background-size:52px 37px!important}.woocommerce-checkout .form-row .chosen-container-active .chosen-single-with-drop div b{background-position:-18px 5px!important}}.chosen-container{position:relative;display:inline-block;vertical-align:middle;font-size:13px;zoom:1;*display:inline;-webkit-user-select:none;-moz-user-select:none;user-select:none}.chosen-container .chosen-drop{position:absolute;top:100%;left:-9999px;z-index:1010;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;border:1px solid #aaa;border-top:0;background:#fff;box-shadow:0 4px 5px rgba(0,0,0,.15)}.chosen-container.chosen-with-drop .chosen-drop{left:0}.chosen-container a{cursor:pointer}.chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0 0 0 8px;height:26px;border:1px solid #aaa;border-radius:5px;background-color:#fff;background:-webkit-gradient(linear,50% 0,50% 100%,color-stop(20%,#fff),color-stop(50%,#f6f6f6),color-stop(52%,#eee),color-stop(100%,#f4f4f4));background:-webkit-linear-gradient(top,#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);background:-moz-linear-gradient(top,#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);background:-o-linear-gradient(top,#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);background:linear-gradient(top,#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);background-clip:padding-box;box-shadow:0 0 3px #fff inset,0 1px 1px rgba(0,0,0,.1);color:#444;text-decoration:none;white-space:nowrap;line-height:26px}.chosen-container-single .chosen-default{color:#999}.chosen-container-single .chosen-single span{display:block;overflow:hidden;margin-right:26px;text-overflow:ellipsis;white-space:nowrap}.chosen-container-single .chosen-single-with-deselect span{margin-right:38px}.chosen-container-single .chosen-single abbr{position:absolute;top:6px;right:26px;display:block;width:12px;height:12px;background:url(../images/chosen-sprite.png) -42px 1px no-repeat;font-size:1px}.chosen-container-single .chosen-single abbr:hover{background-position:-42px -10px}.chosen-container-single.chosen-disabled .chosen-single abbr:hover{background-position:-42px -10px}.chosen-container-single .chosen-single div{position:absolute;top:0;right:0;display:block;width:18px;height:100%}.chosen-container-single .chosen-single div b{display:block;width:100%;height:100%;background:url(../images/chosen-sprite.png) no-repeat 0 2px}.chosen-container-single .chosen-search{position:relative;z-index:1010;margin:0;padding:3px 4px;white-space:nowrap}.chosen-container-single .chosen-search input[type=text]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:1px 0;padding:4px 20px 4px 5px;width:100%;height:auto;outline:0;border:1px solid #aaa;background:#fff url(../images/chosen-sprite.png) no-repeat 100% -20px;background:url(../images/chosen-sprite.png) no-repeat 100% -20px,-webkit-gradient(linear,50% 0,50% 100%,color-stop(1%,#eee),color-stop(15%,#fff));background:url(../images/chosen-sprite.png) no-repeat 100% -20px,-webkit-linear-gradient(#eee 1%,#fff 15%);background:url(../images/chosen-sprite.png) no-repeat 100% -20px,-moz-linear-gradient(#eee 1%,#fff 15%);background:url(../images/chosen-sprite.png) no-repeat 100% -20px,-o-linear-gradient(#eee 1%,#fff 15%);background:url(../images/chosen-sprite.png) no-repeat 100% -20px,linear-gradient(#eee 1%,#fff 15%);font-size:1em;font-family:sans-serif;line-height:normal;border-radius:0}.chosen-container-single .chosen-drop{margin-top:-1px;border-radius:0 0 4px 4px;background-clip:padding-box}.chosen-container-single.chosen-container-single-nosearch .chosen-search{position:absolute;left:-9999px}.chosen-container .chosen-results{position:relative;overflow-x:hidden;overflow-y:auto;margin:0 4px 4px 0;padding:0 0 0 4px;max-height:240px;-webkit-overflow-scrolling:touch}.chosen-container .chosen-results li{display:none;margin:0;padding:5px 6px;list-style:none;line-height:15px}.chosen-container .chosen-results li.active-result{display:list-item;cursor:pointer}.chosen-container .chosen-results li.disabled-result{display:list-item;color:#ccc;cursor:default}.chosen-container .chosen-results li.highlighted{background-color:#3875d7;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(20%,#3875d7),color-stop(90%,#2a62bc));background-image:-webkit-linear-gradient(#3875d7 20%,#2a62bc 90%);background-image:-moz-linear-gradient(#3875d7 20%,#2a62bc 90%);background-image:-o-linear-gradient(#3875d7 20%,#2a62bc 90%);background-image:linear-gradient(#3875d7 20%,#2a62bc 90%);color:#fff}.chosen-container .chosen-results li.no-results{display:list-item;background:#f4f4f4}.chosen-container .chosen-results li.group-result{display:list-item;font-weight:700;cursor:default}.chosen-container .chosen-results li.group-option{padding-left:15px}.chosen-container .chosen-results li em{font-style:normal;text-decoration:underline}.chosen-container-multi .chosen-choices{position:relative;overflow:hidden;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:0;padding:0;width:100%;height:auto!important;height:1%;border:1px solid #aaa;background-color:#fff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(1%,#eee),color-stop(15%,#fff));background-image:-webkit-linear-gradient(#eee 1%,#fff 15%);background-image:-moz-linear-gradient(#eee 1%,#fff 15%);background-image:-o-linear-gradient(#eee 1%,#fff 15%);background-image:linear-gradient(#eee 1%,#fff 15%);cursor:text}.chosen-container-multi .chosen-choices li{float:left;list-style:none}.chosen-container-multi .chosen-choices li.search-field{margin:0;padding:0;white-space:nowrap}.chosen-container-multi .chosen-choices li.search-field input[type=text]{margin:1px 0;padding:5px;height:15px;outline:0;border:0!important;background:transparent!important;box-shadow:none;color:#666;font-size:100%;font-family:sans-serif;line-height:normal;border-radius:0}.chosen-container-multi .chosen-choices li.search-field .default{color:#999}.chosen-container-multi .chosen-choices li.search-choice{position:relative;margin:3px 0 3px 5px;padding:3px 20px 3px 5px;border:1px solid #aaa;border-radius:3px;background-color:#e4e4e4;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),color-stop(100%,#eee));background-image:-webkit-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-moz-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-o-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-clip:padding-box;box-shadow:0 0 2px #fff inset,0 1px 0 rgba(0,0,0,.05);color:#333;line-height:13px;cursor:default}.chosen-container-multi .chosen-choices li.search-choice .search-choice-close{position:absolute;top:4px;right:3px;display:block;width:12px;height:12px;background:url(../images/chosen-sprite.png) -42px 1px no-repeat;font-size:1px}.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover{background-position:-42px -10px}.chosen-container-multi .chosen-choices li.search-choice-disabled{padding-right:5px;border:1px solid #ccc;background-color:#e4e4e4;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),color-stop(100%,#eee));background-image:-webkit-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-moz-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-o-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);color:#666}.chosen-container-multi .chosen-choices li.search-choice-focus{background:#d4d4d4}.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close{background-position:-42px -10px}.chosen-container-multi .chosen-results{margin:0;padding:0}.chosen-container-multi .chosen-drop .result-selected{display:list-item;color:#ccc;cursor:default}.chosen-container-active .chosen-single{border:1px solid #5897fb;box-shadow:0 0 5px rgba(0,0,0,.3)}.chosen-container-active.chosen-with-drop .chosen-single{border:1px solid #aaa;-moz-border-radius-bottomright:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(20%,#eee),color-stop(80%,#fff));background-image:-webkit-linear-gradient(#eee 20%,#fff 80%);background-image:-moz-linear-gradient(#eee 20%,#fff 80%);background-image:-o-linear-gradient(#eee 20%,#fff 80%);background-image:linear-gradient(#eee 20%,#fff 80%);box-shadow:0 1px 0 #fff inset}.chosen-container-active.chosen-with-drop .chosen-single div{border-left:0;background:transparent}.chosen-container-active.chosen-with-drop .chosen-single div b{background-position:-18px 2px}.chosen-container-active .chosen-choices{border:1px solid #5897fb;box-shadow:0 0 5px rgba(0,0,0,.3)}.chosen-container-active .chosen-choices li.search-field input[type=text]{color:#111!important}.chosen-disabled{opacity:.5!important;cursor:default}.chosen-disabled .chosen-single{cursor:default}.chosen-disabled .chosen-choices .search-choice .search-choice-close{cursor:default}.chosen-rtl{text-align:right}.chosen-rtl .chosen-single{overflow:visible;padding:0 8px 0 0}.chosen-rtl .chosen-single span{margin-right:0;margin-left:26px;direction:rtl}.chosen-rtl .chosen-single-with-deselect span{margin-left:38px}.chosen-rtl .chosen-single div{right:auto;left:3px}.chosen-rtl .chosen-single abbr{right:auto;left:26px}.chosen-rtl .chosen-choices li{float:right}.chosen-rtl .chosen-choices li.search-field input[type=text]{direction:rtl}.chosen-rtl .chosen-choices li.search-choice{margin:3px 5px 3px 0;padding:3px 5px 3px 19px}.chosen-rtl .chosen-choices li.search-choice .search-choice-close{right:auto;left:4px}.chosen-rtl.chosen-container-single-nosearch .chosen-search,.chosen-rtl .chosen-drop{left:9999px}.chosen-rtl.chosen-container-single .chosen-results{margin:0 0 4px 4px;padding:0 4px 0 0}.chosen-rtl .chosen-results li.group-option{padding-right:15px;padding-left:0}.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div{border-right:0}.chosen-rtl .chosen-search input[type=text]{padding:4px 5px 4px 20px;background:#fff url(../images/chosen-sprite.png) no-repeat -30px -20px;background:url(../images/chosen-sprite.png) no-repeat -30px -20px,-webkit-gradient(linear,50% 0,50% 100%,color-stop(1%,#eee),color-stop(15%,#fff));background:url(../images/chosen-sprite.png) no-repeat -30px -20px,-webkit-linear-gradient(#eee 1%,#fff 15%);background:url(../images/chosen-sprite.png) no-repeat -30px -20px,-moz-linear-gradient(#eee 1%,#fff 15%);background:url(../images/chosen-sprite.png) no-repeat -30px -20px,-o-linear-gradient(#eee 1%,#fff 15%);background:url(../images/chosen-sprite.png) no-repeat -30px -20px,linear-gradient(#eee 1%,#fff 15%);direction:rtl}.chosen-rtl.chosen-container-single .chosen-single div b{background-position:6px 2px}.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b{background-position:-12px 2px}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-resolution:144dpi){.chosen-rtl .chosen-search input[type=text],.chosen-container-single .chosen-single abbr,.chosen-container-single .chosen-single div b,.chosen-container-single .chosen-search input[type=text],.chosen-container-multi .chosen-choices .search-choice .search-choice-close,.chosen-container .chosen-results-scroll-down span,.chosen-container .chosen-results-scroll-up span{background-image:url(../images/chosen-sprite@2x.png)!important;background-size:52px 37px!important;background-repeat:no-repeat!important}}.chosen-container-single .chosen-single abbr{top:8px} \ No newline at end of file +.clear{clear:both}.nobr{white-space:nowrap}@font-face{font-family:WooCommerce;src:url(../fonts/WooCommerce.eot);src:url(../fonts/WooCommerce.eot?#iefix) format('embedded-opentype'),url(../fonts/WooCommerce.woff) format('woff'),url(../fonts/WooCommerce.ttf) format('truetype'),url(../fonts/WooCommerce.svg#WooCommerce) format('svg');font-weight:400;font-style:normal}.wc_addons_wrap .products{overflow:hidden}.wc_addons_wrap .products li{float:left;margin:0 1em 1em 0!important;padding:0;vertical-align:top;width:300px}.wc_addons_wrap .products li a{text-decoration:none;color:inherit;border:1px solid #ddd;display:block;min-height:220px;overflow:hidden;background:#f5f5f5;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),inset 0 -1px 0 rgba(0,0,0,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),inset 0 -1px 0 rgba(0,0,0,.1)}.wc_addons_wrap .products li a img{max-width:258px;max-height:24px;padding:17px 20px;display:block;margin:0;background:#fff;border-right:260px solid #fff}.wc_addons_wrap .products li a .price,.wc_addons_wrap .products li a img.extension-thumb+h3{display:none}.wc_addons_wrap .products li a h3{margin:0!important;padding:20px!important;background:#fff}.wc_addons_wrap .products li a p{padding:20px!important;margin:0!important;border-top:1px solid #f1f1f1}.wc_addons_wrap .products li a:focus,.wc_addons_wrap .products li a:hover{background-color:#fff}.woocommerce-message{position:relative;border-left-color:#cc99c2!important;overflow:hidden}.woocommerce-message a.button-primary,.woocommerce-message button.button-primary{background:#cc99c2;border-color:#b366a4;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 rgba(0,0,0,.15);color:#fff;text-decoration:none!important}.woocommerce-message a.button-primary:hover,.woocommerce-message button.button-primary:hover{background:#bb77ae;border-color:#aa559a;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 rgba(0,0,0,.15)}.woocommerce-message a.button-primary:active,.woocommerce-message button.button-primary:active{background:#aa559a;border-color:#aa559a}.woocommerce-message a.docs,.woocommerce-message a.skip{opacity:.5}.woocommerce-message .twitter-share-button{margin-top:-3px;margin-left:3px;vertical-align:middle}#variable_product_options #message{margin:10px}.wrap.woocommerce div.error,.wrap.woocommerce div.updated{margin-top:10px}mark.amount{background:0 0;color:inherit}.postbox input:invalid,.woocommerce input:invalid{border:1px solid #cc010b;background:#ffebe8}.simplify-commerce-banner{overflow:hidden}.simplify-commerce-banner img{float:right;padding:15px 0;margin-left:1em;width:200px}table.wc_status_table tr:nth-child(2n) td,table.wc_status_table tr:nth-child(2n) th{background:#fcfcfc}table.wc_status_table th{font-weight:700}table.wc_status_table td:first-child{width:20%}table.wc_status_table td{padding:6px 9px;font-size:1.1em}table.wc_status_table td mark{background:0 0}table.wc_status_table td mark.yes{color:#7ad03a}table.wc_status_table td mark.no{color:#999}table.wc_status_table td mark.error{color:#a00}table.wc_status_table td ul{margin:0}#debug-report{display:none;margin:10px 0;padding:0;position:relative}#debug-report textarea{font-family:monospace;width:100%;margin:0;height:300px;padding:20px;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;resize:none;font-size:12px;line-height:20px;outline:0}#log-viewer-select{padding:10px 0 8px;line-height:180%}#log-viewer textarea{width:100%;resize:vertical}.inline-edit-product.quick-edit-row .inline-edit-col-center,.inline-edit-product.quick-edit-row .inline-edit-col-right{float:right!important}#woocommerce-fields.inline-edit-col{clear:left}#woocommerce-fields.inline-edit-col label.featured,#woocommerce-fields.inline-edit-col label.manage_stock{margin-left:10px}#woocommerce-fields.inline-edit-col .dimensions div{display:block;margin:.2em 0}#woocommerce-fields.inline-edit-col .dimensions div span.title{display:block;float:left;width:5em}#woocommerce-fields.inline-edit-col .dimensions div span.input-text-wrap{display:block;margin-left:5em}#woocommerce-fields.inline-edit-col .text{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:99%;float:left;margin:1px 1% 1px 1px}#woocommerce-fields.inline-edit-col .height,#woocommerce-fields.inline-edit-col .length,#woocommerce-fields.inline-edit-col .width{width:32.33%}#woocommerce-fields.inline-edit-col .height{margin-right:0}#woocommerce-fields-bulk.inline-edit-col label{clear:left}#woocommerce-fields-bulk.inline-edit-col .inline-edit-group div.alignright,#woocommerce-fields-bulk.inline-edit-col .inline-edit-group label{clear:none;width:49%;margin:.2em 0}#woocommerce-fields-bulk.inline-edit-col .regular_price,#woocommerce-fields-bulk.inline-edit-col .sale_price,#woocommerce-fields-bulk.inline-edit-col .stock,#woocommerce-fields-bulk.inline-edit-col .weight{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%}#woocommerce-fields-bulk.inline-edit-col .height,#woocommerce-fields-bulk.inline-edit-col .length,#woocommerce-fields-bulk.inline-edit-col .width{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:32%}.column-coupon_code{line-height:2.25em}.column-coupon_code,ul.wc_coupon_list{margin:0;overflow:hidden;zoom:1;clear:both}.column-coupon_code li.code,ul.wc_coupon_list li.code{margin:0 6px 12px 0!important}.column-coupon_code .code a:after,.column-coupon_code .code a:before,.column-coupon_code .code span:after,.column-coupon_code .code span:before,.column-coupon_code .code:after,.column-coupon_code .code:before,ul.wc_coupon_list .code a:after,ul.wc_coupon_list .code a:before,ul.wc_coupon_list .code span:after,ul.wc_coupon_list .code span:before,ul.wc_coupon_list .code:after,ul.wc_coupon_list .code:before{content:"";display:block;position:absolute;width:8px;height:4px;background:#f7f7f7;-webkit-border-radius:2px;-moz-border-radius:2px;-o-border-radius:2px;border-radius:2px;-moz-box-shadow:0 2px 0 0 rgba(255,255,255,.3),inset 0 2px 0 0 rgba(0,0,0,.1);-webkit-box-shadow:0 2px 0 0 rgba(255,255,255,.3),inset 0 2px 0 0 rgba(0,0,0,.1);box-shadow:0 2px 0 0 rgba(255,255,255,.3),inset 0 2px 0 0 rgba(0,0,0,.1)}.column-coupon_code .code,ul.wc_coupon_list .code{overflow:hidden;vertical-align:middle;margin:0 8px 0 0;background:#ececec;color:#21759A;text-shadow:0 1px 0 #ddd;padding:2px;position:relative;float:left;line-height:1em;-moz-box-shadow:0 2px 0 0 #ddd;-webkit-box-shadow:0 2px 0 0 #ddd;box-shadow:0 2px 0 0 #ddd;font-weight:700}.column-coupon_code .code:before,ul.wc_coupon_list .code:before{bottom:5px;left:0;margin:0 0 0 -4px}.column-coupon_code .code:after,ul.wc_coupon_list .code:after{top:5px;left:0;margin:0 0 0 -4px}.column-coupon_code .code a,.column-coupon_code .code span,ul.wc_coupon_list .code a,ul.wc_coupon_list .code span{float:left;padding:0 4px;color:#21759A}.column-coupon_code .code a:before,.column-coupon_code .code span:before,ul.wc_coupon_list .code a:before,ul.wc_coupon_list .code span:before{bottom:5px;right:0;margin:0 -4px 0 0}.column-coupon_code .code a:after,.column-coupon_code .code span:after,ul.wc_coupon_list .code a:after,ul.wc_coupon_list .code span:after{content:"";top:5px;right:0;margin:0 -4px 0 0}.column-coupon_code .code a span,.column-coupon_code .code span span,ul.wc_coupon_list .code a span,ul.wc_coupon_list .code span span{border:1px dashed #ccc;padding:.5em 6px;-webkit-border-radius:2px;-moz-border-radius:2px;-o-border-radius:2px;border-radius:2px}.column-coupon_code .code a span:before,.column-coupon_code .code span span:before,ul.wc_coupon_list .code a span:before,ul.wc_coupon_list .code span span:before{top:50%;left:0;margin:-2px 0 0 -4px}.column-coupon_code .code a span:after,.column-coupon_code .code span span:after,ul.wc_coupon_list .code a span:after,ul.wc_coupon_list .code span span:after{top:50%;right:0;margin:-2px -4px 0 0}.column-coupon_code .code:hover,ul.wc_coupon_list .code:hover{background:#975e83;color:#fff;text-shadow:0 1px 0 #5a324b}.column-coupon_code .code:hover a,.column-coupon_code .code:hover span,ul.wc_coupon_list .code:hover a,ul.wc_coupon_list .code:hover span{color:#fff}.column-coupon_code .code:hover a span,.column-coupon_code .code:hover span span,ul.wc_coupon_list .code:hover a span,ul.wc_coupon_list .code:hover span span{border:1px dashed #bb82a7}ul.wc_coupon_list_block{margin:0;padding-bottom:2px}ul.wc_coupon_list_block li{border-top:1px solid #fff;border-bottom:1px solid #ccc;line-height:2.5em;margin:0;padding:.5em 0}ul.wc_coupon_list_block li:first-child{border-top:0;padding-top:0}ul.wc_coupon_list_block li:last-child{border-bottom:0;padding-bottom:0}.button.wc-reload{text-indent:-9999px;position:relative;padding:0;-webkit-border-radius:100%;border-radius:100%;height:24px;width:24px!important;display:inline-block}.button.wc-reload:after{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e031";line-height:22px}.tablenav .actions{overflow:visible}.alignleft.actions .chosen-container-single{display:inline-block;vertical-align:middle}#woocommerce-order-data .handlediv,#woocommerce-order-data h3.hndle{display:none}#woocommerce-order-data .inside{display:block!important}#order_data{padding:23px 24px 12px}#order_data h2{margin:0;font-family:HelveticaNeue-Light,"Helvetica Neue Light","Helvetica Neue",sans-serif;font-size:21px;font-weight:400;line-height:1.2;text-shadow:1px 1px 1px #fff;padding:0}#order_data h4{color:#333;margin:1.33em 0 0}#order_data p{color:#777}#order_data p.order_number{margin:0;font-family:HelveticaNeue-Light,"Helvetica Neue Light","Helvetica Neue",sans-serif;font-weight:400;line-height:1.6em;font-size:16px}#order_data .order_data_column_container{clear:both}#order_data .order_data_column{width:32%;padding:0 2% 0 0;float:left}#order_data .order_data_column:last-child{padding-right:0}#order_data .order_data_column p{padding:0!important}#order_data .order_data_column .address strong{display:block}#order_data .order_data_column .form-field{float:left;width:48%;padding:0;margin:9px 0 0}#order_data .order_data_column .form-field label{display:block;padding:0 0 3px}#order_data .order_data_column .form-field input,#order_data .order_data_column .form-field select,#order_data .order_data_column .form-field textarea{width:100%}#order_data .order_data_column .form-field #order_status_chosen .chosen-search{display:none}#order_data .order_data_column .form-field .chosen-container{width:100%!important}#order_data .order_data_column .form-field .date-picker-field{width:50%}#order_data .order_data_column .form-field .hour,#order_data .order_data_column .form-field .minute{width:2.5em}#order_data .order_data_column .form-field small{display:block;margin:5px 0 0;color:#999}#order_data .order_data_column .form-field.last{float:right}#order_data .order_data_column .form-field-wide{width:100%;clear:both}#order_data .order_data_column .form-field-wide input,#order_data .order_data_column .form-field-wide select,#order_data .order_data_column .form-field-wide textarea{width:100%}#order_data .order_data_column p.none_set{color:#999}#order_data .order_data_column ._billing_address_1_field,#order_data .order_data_column ._billing_city_field,#order_data .order_data_column ._billing_country_field,#order_data .order_data_column ._billing_email_field,#order_data .order_data_column ._billing_first_name_field,#order_data .order_data_column ._shipping_address_1_field,#order_data .order_data_column ._shipping_city_field,#order_data .order_data_column ._shipping_country_field,#order_data .order_data_column ._shipping_first_name_field{float:left}#order_data .order_data_column ._billing_address_2_field,#order_data .order_data_column ._billing_last_name_field,#order_data .order_data_column ._billing_phone_field,#order_data .order_data_column ._billing_postcode_field,#order_data .order_data_column ._billing_state_field,#order_data .order_data_column ._shipping_address_2_field,#order_data .order_data_column ._shipping_last_name_field,#order_data .order_data_column ._shipping_postcode_field,#order_data .order_data_column ._shipping_state_field{float:right}#order_data .order_data_column ._billing_company_field,#order_data .order_data_column ._shipping_company_field,#order_data .order_data_column ._transaction_id_field{clear:both;width:100%}#order_data .order_data_column ._billing_email_field{clear:left}#order_data .order_data_column div.edit_address{display:none;overflow:hidden;zoom:1;padding-right:1px}#order_data a.edit_address{opacity:.4}#order_data a.edit_address:focus,#order_data a.edit_address:hover{opacity:1}.order_actions{margin:0;overflow:hidden;zoom:1}.order_actions li{border-top:1px solid #fff;border-bottom:1px solid #ddd;padding:6px 0;margin:0;line-height:1.6em;float:left;width:50%;text-align:center}.order_actions li a{float:none;text-align:center;text-decoration:underline}.order_actions li.wide{width:auto;float:none;clear:both;padding:6px;text-align:left;overflow:hidden}.order_actions li #delete-action{line-height:25px;vertical-align:middle;text-align:left;float:left}.order_actions li .save_order{float:right}.order_actions li#actions{overflow:hidden}.order_actions li#actions .button{width:24px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:right}.order_actions li#actions select{width:225px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left}#woocommerce-order-items .inside{margin:0;padding:0;background:#fefefe}#woocommerce-order-items .wc-order-data-row{border-bottom:1px solid #DFDFDF;padding:12px;background:#f8f8f8;line-height:2em;text-align:right}#woocommerce-order-items .wc-order-data-row:after,#woocommerce-order-items .wc-order-data-row:before{content:" ";display:table}#woocommerce-order-items .wc-order-data-row:after{clear:both}#woocommerce-order-items .wc-order-data-row p{margin:0;line-height:2em}#woocommerce-order-items .wc-order-bulk-actions{background:#fefefe;vertical-align:top;border-top:0}#woocommerce-order-items .wc-order-bulk-actions select{vertical-align:top}#woocommerce-order-items .wc-order-bulk-actions p.bulk-actions{float:left}#woocommerce-order-items .wc-order-add-item{background:#fff;vertical-align:top;border-top:none}#woocommerce-order-items .wc-order-add-item .add_item_id,#woocommerce-order-items .wc-order-add-item .chosen-container{vertical-align:top}#woocommerce-order-items .wc-order-add-item .add_item_id .search-field input,#woocommerce-order-items .wc-order-add-item .chosen-container .search-field input{min-width:100px}#woocommerce-order-items .wc-order-add-item .chosen-container{width:400px!important;text-align:left}#woocommerce-order-items .wc-order-add-item .calculate-action,#woocommerce-order-items .wc-order-add-item .cancel-action,#woocommerce-order-items .wc-order-add-item .save-action{float:left;margin-right:2px}#woocommerce-order-items .wc-used-coupons{float:left;width:50%}#woocommerce-order-items .wc-order-totals{float:right;width:50%;margin:0;padding:0}#woocommerce-order-items .wc-order-totals .amount{font-weight:700}#woocommerce-order-items .wc-order-totals .label{vertical-align:top}#woocommerce-order-items .wc-order-totals .total{font-size:1em!important;width:10em;margin:0 0 0 .5em;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#woocommerce-order-items .wc-order-totals .total input[type=text]{width:96%;float:right}#woocommerce-order-items .wc-order-totals .refunded-total{color:#a00}#woocommerce-order-items .refund-actions{margin-top:5px;padding-top:12px;border-top:1px solid #DFDFDF}#woocommerce-order-items .refund-actions .button{float:right;margin-left:4px}#woocommerce-order-items .refund-actions .cancel-action{float:left;margin-left:0}#woocommerce-order-items .add_meta{margin-left:0!important}#woocommerce-order-items h3 small{color:#999}#woocommerce-order-items .amount{white-space:nowrap}#woocommerce-order-items .add-items .description{margin-right:10px}.woocommerce_order_items_wrapper{margin:0;overflow:auto}.woocommerce_order_items_wrapper table.woocommerce_order_items{width:100%;background:#fff}.woocommerce_order_items_wrapper table.woocommerce_order_items thead th{background:#f8f8f8;padding:8px;font-size:11px;text-align:left}.woocommerce_order_items_wrapper table.woocommerce_order_items thead th:last-child{padding-right:12px}.woocommerce_order_items_wrapper table.woocommerce_order_items thead th:first-child{padding-left:12px}.woocommerce_order_items_wrapper table.woocommerce_order_items tbody th,.woocommerce_order_items_wrapper table.woocommerce_order_items td{padding:8px;text-align:left;line-height:26px;vertical-align:top;border-bottom:1px dotted #ececec}.woocommerce_order_items_wrapper table.woocommerce_order_items tbody th textarea,.woocommerce_order_items_wrapper table.woocommerce_order_items td textarea{width:100%}.woocommerce_order_items_wrapper table.woocommerce_order_items tbody th select,.woocommerce_order_items_wrapper table.woocommerce_order_items td select{width:50%}.woocommerce_order_items_wrapper table.woocommerce_order_items tbody th input,.woocommerce_order_items_wrapper table.woocommerce_order_items tbody th textarea,.woocommerce_order_items_wrapper table.woocommerce_order_items td input,.woocommerce_order_items_wrapper table.woocommerce_order_items td textarea{font-size:14px;padding:4px;color:#555}.woocommerce_order_items_wrapper table.woocommerce_order_items tbody th:last-child,.woocommerce_order_items_wrapper table.woocommerce_order_items td:last-child{padding-right:12px}.woocommerce_order_items_wrapper table.woocommerce_order_items tbody th:first-child,.woocommerce_order_items_wrapper table.woocommerce_order_items td:first-child{padding-left:12px}.woocommerce_order_items_wrapper table.woocommerce_order_items tbody tr:last-child td{border-bottom:1px solid #dfdfdf}.woocommerce_order_items_wrapper table.woocommerce_order_items tbody tr:first-child td{border-top:8px solid #f8f8f8}.woocommerce_order_items_wrapper table.woocommerce_order_items tbody#order_line_items tr:first-child td{border-top:none}.woocommerce_order_items_wrapper table.woocommerce_order_items td.check-column{padding:8px 8px 8px 12px;width:1%}.woocommerce_order_items_wrapper table.woocommerce_order_items .item{min-width:200px}.woocommerce_order_items_wrapper table.woocommerce_order_items .center,.woocommerce_order_items_wrapper table.woocommerce_order_items .variation-id{text-align:center}.woocommerce_order_items_wrapper table.woocommerce_order_items .cost,.woocommerce_order_items_wrapper table.woocommerce_order_items .line_cost,.woocommerce_order_items_wrapper table.woocommerce_order_items .line_tax,.woocommerce_order_items_wrapper table.woocommerce_order_items .quantity,.woocommerce_order_items_wrapper table.woocommerce_order_items .tax,.woocommerce_order_items_wrapper table.woocommerce_order_items .tax_class{text-align:right}.woocommerce_order_items_wrapper table.woocommerce_order_items .cost label,.woocommerce_order_items_wrapper table.woocommerce_order_items .line_cost label,.woocommerce_order_items_wrapper table.woocommerce_order_items .line_tax label,.woocommerce_order_items_wrapper table.woocommerce_order_items .quantity label,.woocommerce_order_items_wrapper table.woocommerce_order_items .tax label,.woocommerce_order_items_wrapper table.woocommerce_order_items .tax_class label{white-space:nowrap;color:#999;font-size:.833em}.woocommerce_order_items_wrapper table.woocommerce_order_items .cost label input,.woocommerce_order_items_wrapper table.woocommerce_order_items .line_cost label input,.woocommerce_order_items_wrapper table.woocommerce_order_items .line_tax label input,.woocommerce_order_items_wrapper table.woocommerce_order_items .quantity label input,.woocommerce_order_items_wrapper table.woocommerce_order_items .tax label input,.woocommerce_order_items_wrapper table.woocommerce_order_items .tax_class label input{display:inline}.woocommerce_order_items_wrapper table.woocommerce_order_items .cost input,.woocommerce_order_items_wrapper table.woocommerce_order_items .line_cost input,.woocommerce_order_items_wrapper table.woocommerce_order_items .line_tax input,.woocommerce_order_items_wrapper table.woocommerce_order_items .quantity input,.woocommerce_order_items_wrapper table.woocommerce_order_items .tax input,.woocommerce_order_items_wrapper table.woocommerce_order_items .tax_class input{width:70px;vertical-align:middle;text-align:right}.woocommerce_order_items_wrapper table.woocommerce_order_items .cost select,.woocommerce_order_items_wrapper table.woocommerce_order_items .line_cost select,.woocommerce_order_items_wrapper table.woocommerce_order_items .line_tax select,.woocommerce_order_items_wrapper table.woocommerce_order_items .quantity select,.woocommerce_order_items_wrapper table.woocommerce_order_items .tax select,.woocommerce_order_items_wrapper table.woocommerce_order_items .tax_class select{width:85px;height:26px;vertical-align:middle;font-size:1em}.woocommerce_order_items_wrapper table.woocommerce_order_items .cost .split-input,.woocommerce_order_items_wrapper table.woocommerce_order_items .line_cost .split-input,.woocommerce_order_items_wrapper table.woocommerce_order_items .line_tax .split-input,.woocommerce_order_items_wrapper table.woocommerce_order_items .quantity .split-input,.woocommerce_order_items_wrapper table.woocommerce_order_items .tax .split-input,.woocommerce_order_items_wrapper table.woocommerce_order_items .tax_class .split-input{display:block;background:#fff;border:1px solid #ddd;box-shadow:inset 0 1px 2px rgba(0,0,0,.07);margin:1px;width:70px}.woocommerce_order_items_wrapper table.woocommerce_order_items .cost .split-input input,.woocommerce_order_items_wrapper table.woocommerce_order_items .line_cost .split-input input,.woocommerce_order_items_wrapper table.woocommerce_order_items .line_tax .split-input input,.woocommerce_order_items_wrapper table.woocommerce_order_items .quantity .split-input input,.woocommerce_order_items_wrapper table.woocommerce_order_items .tax .split-input input,.woocommerce_order_items_wrapper table.woocommerce_order_items .tax_class .split-input input{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border:0;box-shadow:none;margin:0;color:#555;background:0 0}.woocommerce_order_items_wrapper table.woocommerce_order_items .cost .split-input input:last-child,.woocommerce_order_items_wrapper table.woocommerce_order_items .line_cost .split-input input:last-child,.woocommerce_order_items_wrapper table.woocommerce_order_items .line_tax .split-input input:last-child,.woocommerce_order_items_wrapper table.woocommerce_order_items .quantity .split-input input:last-child,.woocommerce_order_items_wrapper table.woocommerce_order_items .tax .split-input input:last-child,.woocommerce_order_items_wrapper table.woocommerce_order_items .tax_class .split-input input:last-child{color:#bbb;border-top:1px dashed #ddd}.woocommerce_order_items_wrapper table.woocommerce_order_items .quantity{text-align:center}.woocommerce_order_items_wrapper table.woocommerce_order_items .quantity input{text-align:center;width:50px}.woocommerce_order_items_wrapper table.woocommerce_order_items span.subtotal{opacity:.5}.woocommerce_order_items_wrapper table.woocommerce_order_items td.tax_class,.woocommerce_order_items_wrapper table.woocommerce_order_items th.tax_class{text-align:left}.woocommerce_order_items_wrapper table.woocommerce_order_items .calculated{border-color:#ae8ca2;border-style:dotted}.woocommerce_order_items_wrapper table.woocommerce_order_items table.meta{width:100%}.woocommerce_order_items_wrapper table.woocommerce_order_items table.display_meta,.woocommerce_order_items_wrapper table.woocommerce_order_items table.meta{margin:.5em 0 0}.woocommerce_order_items_wrapper table.woocommerce_order_items table.display_meta tr th,.woocommerce_order_items_wrapper table.woocommerce_order_items table.meta tr th{border:0;padding:0 4px .5em 0;line-height:1.5em;width:20%}.woocommerce_order_items_wrapper table.woocommerce_order_items table.display_meta tr td,.woocommerce_order_items_wrapper table.woocommerce_order_items table.meta tr td{padding:0 4px .5em 0;border:0;line-height:1.5em}.woocommerce_order_items_wrapper table.woocommerce_order_items table.display_meta tr td input,.woocommerce_order_items_wrapper table.woocommerce_order_items table.meta tr td input{width:100%;margin:0;position:relative;border-bottom:0;box-shadow:none}.woocommerce_order_items_wrapper table.woocommerce_order_items table.display_meta tr td textarea,.woocommerce_order_items_wrapper table.woocommerce_order_items table.meta tr td textarea{width:100%;height:4em;margin:0;box-shadow:none}.woocommerce_order_items_wrapper table.woocommerce_order_items table.display_meta tr td input:focus+textarea,.woocommerce_order_items_wrapper table.woocommerce_order_items table.meta tr td input:focus+textarea{border-top-color:#999}.woocommerce_order_items_wrapper table.woocommerce_order_items table.display_meta tr td p,.woocommerce_order_items_wrapper table.woocommerce_order_items table.meta tr td p{margin:0 0 .5em;line-height:1.5em}.woocommerce_order_items_wrapper table.woocommerce_order_items table.display_meta tr td p:last-child,.woocommerce_order_items_wrapper table.woocommerce_order_items table.meta tr td p:last-child{margin:0}.woocommerce_order_items_wrapper table.woocommerce_order_items .thumb{text-align:left;width:27px}.woocommerce_order_items_wrapper table.woocommerce_order_items .thumb a{display:block}.woocommerce_order_items_wrapper table.woocommerce_order_items .thumb img{padding:1px;margin:0;border:1px solid #dfdfdf;vertical-align:middle;width:21px;height:21px}.woocommerce_order_items_wrapper table.woocommerce_order_items .refund_by{border-bottom:1px dotted #999}.woocommerce_order_items_wrapper table.woocommerce_order_items tr.fee .thumb div{display:block;text-indent:-9999px;position:relative;height:1em;width:1em;font-size:14px;margin:6px}.woocommerce_order_items_wrapper table.woocommerce_order_items tr.fee .thumb div:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e007";color:#bbb}.woocommerce_order_items_wrapper table.woocommerce_order_items tr.refund .thumb div{display:block;text-indent:-9999px;position:relative;height:1em;width:1em;font-size:14px;margin:6px}.woocommerce_order_items_wrapper table.woocommerce_order_items tr.refund .thumb div:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e014";color:#bbb}.woocommerce_order_items_wrapper table.woocommerce_order_items tr.shipping .thumb div{display:block;text-indent:-9999px;position:relative;height:1em;width:1em;font-size:14px;margin:6px}.woocommerce_order_items_wrapper table.woocommerce_order_items tr.shipping .thumb div:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e01a";color:#bbb}.woocommerce_order_items_wrapper table.woocommerce_order_items th.line_tax{white-space:nowrap}.woocommerce_order_items_wrapper table.woocommerce_order_items td.line_tax,.woocommerce_order_items_wrapper table.woocommerce_order_items th.line_tax{padding:8px 16px 8px 8px}.woocommerce_order_items_wrapper table.woocommerce_order_items td.line_tax .delete-order-tax,.woocommerce_order_items_wrapper table.woocommerce_order_items th.line_tax .delete-order-tax{display:block;text-indent:-9999px;position:relative;height:1em;width:1em;font-size:12px;visibility:hidden;float:right;margin:2px -16px 0 0}.woocommerce_order_items_wrapper table.woocommerce_order_items td.line_tax .delete-order-tax:before,.woocommerce_order_items_wrapper table.woocommerce_order_items th.line_tax .delete-order-tax:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e013";color:#fff;background-color:#000;-webkit-border-radius:100%;border-radius:100%;border:1px solid #000;box-shadow:0 1px 2px rgba(0,0,0,.2)}.woocommerce_order_items_wrapper table.woocommerce_order_items td.line_tax .delete-order-tax:hover:before,.woocommerce_order_items_wrapper table.woocommerce_order_items th.line_tax .delete-order-tax:hover:before{border-color:#a00;background-color:#a00}.woocommerce_order_items_wrapper table.woocommerce_order_items td.line_tax:hover .delete-order-tax,.woocommerce_order_items_wrapper table.woocommerce_order_items th.line_tax:hover .delete-order-tax{visibility:visible}.woocommerce_order_items_wrapper table.woocommerce_order_items small.refunded{display:block;color:#a00;white-space:nowrap}.wc-order-items-editable .edit-order-item{text-indent:-9999px;position:relative;height:1em;width:1em;display:inline-block;margin:0 .5em 0 0}.wc-order-items-editable .edit-order-item:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e001";content:"\e603";color:#999}.wc-order-items-editable .edit-order-item:hover:before{color:#555}.wc-order-items-editable .delete-order-item,.wc-order-items-editable .delete_refund{text-indent:-9999px;position:relative;height:1em;width:1em;display:inline-block;margin:0}.wc-order-items-editable .delete-order-item:before,.wc-order-items-editable .delete_refund:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e001";content:"\e013";color:#999}.wc-order-items-editable .delete-order-item:hover:before,.wc-order-items-editable .delete_refund:hover:before{color:#a00}.wc-order-items-editable .wc-order-edit-line-item-actions{width:2.5em;text-align:right}.wc-order-items-editable .wc-order-totals .wc-order-edit-line-item-actions{width:1.5em}.wc-order-items-editable .wc-order-totals .edit-order-item{margin:0}#woocommerce-order-downloads .buttons{float:left;padding:0;margin:0;vertical-align:top}#woocommerce-order-downloads .buttons .add_item_id,#woocommerce-order-downloads .buttons .chosen-container{width:400px!important;margin-right:9px;vertical-align:top;float:left}#woocommerce-order-downloads .buttons button{margin:2px 0 0}#woocommerce-order-downloads h3 small{color:#999}#poststuff #woocommerce-order-actions .inside{margin:0;padding:0}#poststuff #woocommerce-order-actions .inside ul.order_actions li{padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#poststuff #woocommerce-order-actions .inside ul.order_actions li:last-child{border-bottom:0}#poststuff #woocommerce-order-notes .inside{margin:0;padding:0}#poststuff #woocommerce-order-notes .inside ul.order_notes li{padding:0 10px}#woocommerce_customers p.search-box{margin:6px 0 4px;float:left}#woocommerce_customers .tablenav{float:right;clear:none}.widefat.customers td{vertical-align:middle;padding:4px 7px}.widefat .column-order_title{width:15%}.widefat .column-order_title time{display:block;color:#999;margin:3px 0}.widefat .column-orders,.widefat .column-paying,.widefat .column-spent{text-align:center;width:8%}.widefat .column-last_order{width:11%}.widefat .column-order_actions,.widefat .column-user_actions,.widefat .column-wc_actions{width:110px}.widefat .column-order_actions a.button,.widefat .column-user_actions a.button,.widefat .column-wc_actions a.button{float:left;margin:0 4px 2px 0;cursor:pointer;padding:3px 4px;height:auto}.widefat .column-order_actions a.button img,.widefat .column-user_actions a.button img,.widefat .column-wc_actions a.button img{display:block;width:12px;height:auto}.widefat small.meta{display:block;color:#999;font-size:inherit;margin:3px 0}.widefat .column-order_date,.widefat .column-order_total{width:9%}.widefat .column-order_status{width:45px;text-align:center}.widefat .column-order_status mark{display:block;text-indent:-9999px;position:relative;height:1em;width:1em;background:0 0;font-size:1.4em;margin:0 auto}.widefat .column-order_status mark.cancelled:after,.widefat .column-order_status mark.completed:after,.widefat .column-order_status mark.failed:after,.widefat .column-order_status mark.on-hold:after,.widefat .column-order_status mark.pending:after,.widefat .column-order_status mark.processing:after,.widefat .column-order_status mark.refunded:after{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center}.widefat .column-order_status mark.pending:after{content:"\e012";color:#ffba00}.widefat .column-order_status mark.completed:after{content:"\e015";color:#2ea2cc}.widefat .column-order_status mark.on-hold:after{content:"\e033";color:#999}.widefat .column-order_status mark.failed:after{content:"\e016";color:#d0c21f}.widefat .column-order_status mark.cancelled:after{content:"\e013";color:#a00}.widefat .column-order_status mark.processing:after{content:"\e011";color:#73a724}.widefat .column-order_status mark.refunded:after{content:"\e014";color:#999}.widefat td.column-order_status{padding-top:9px}.column-customer_message .note-on{display:block;text-indent:-9999px;position:relative;height:1em;width:1em;margin:0 auto;color:#999}.column-customer_message .note-on:after{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e026";line-height:16px}.column-order_notes .note-on{display:block;text-indent:-9999px;position:relative;height:1em;width:1em;margin:0 auto;color:#999}.column-order_notes .note-on:after{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e027";line-height:16px}.order_actions .complete,.order_actions .processing,.order_actions .view{display:block;text-indent:-9999px;position:relative;padding:0!important;height:2em!important;width:2em}.order_actions .complete:after,.order_actions .processing:after,.order_actions .view:after{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;line-height:1.85}.order_actions .processing:after{content:"\e00f"}.order_actions .complete:after{content:"\e017"}.order_actions .view:after{content:"\e010"}.user_actions .edit,.user_actions .link,.user_actions .view{display:block;text-indent:-9999px;position:relative;padding:0!important;height:2em!important;width:2em}.user_actions .edit:after,.user_actions .link:after,.user_actions .view:after{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;line-height:1.85}.user_actions .edit:after{content:"\e603"}.user_actions .link:after{content:"\e00d"}.user_actions .view:after{content:"\e010"}.attributes-table td,.attributes-table th{width:15%;vertical-align:top}.attributes-table .attribute-terms{width:32%}.attributes-table .attribute-actions{width:2em}.attributes-table .attribute-actions .configure-terms{display:block;text-indent:-9999px;position:relative;padding:0!important;height:2em!important;width:2em}.attributes-table .attribute-actions .configure-terms:after{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e01c";line-height:1.85}ul.order_notes{padding:2px 0 0}ul.order_notes li .note_content{padding:10px;background:#efefef;position:relative}ul.order_notes li .note_content p{margin:0;padding:0;word-wrap:break-word}ul.order_notes li p.meta{padding:10px;color:#999;margin:0;font-size:11px}ul.order_notes li p.meta .exact-date{border-bottom:1px dotted #999}ul.order_notes li a.delete_note{color:#a00}ul.order_notes li .note_content:after{content:"";display:block;position:absolute;bottom:-10px;left:20px;width:0;height:0;border-width:10px 10px 0 0;border-style:solid;border-color:#efefef transparent}ul.order_notes li.customer-note .note_content{background:#d7cad2}ul.order_notes li.customer-note .note_content:after{border-color:#d7cad2 transparent}.add_note{border-top:1px solid #ddd;padding:10px 10px 0}.add_note h4{margin-top:5px!important}.add_note #add_order_note{width:100%;height:50px}table.wp-list-table .column-thumb{width:52px;text-align:center;white-space:nowrap}table.wp-list-table .column-name{width:22%}table.wp-list-table .column-product_cat,table.wp-list-table .column-product_tag{width:11%!important}table.wp-list-table .column-featured,table.wp-list-table .column-product_type{width:48px;text-align:left!important}table.wp-list-table .column-customer_message,table.wp-list-table .column-order_notes{width:48px;text-align:center}table.wp-list-table .column-customer_message img,table.wp-list-table .column-order_notes img{margin:0 auto;padding-top:0!important}table.wp-list-table .manage-column.column-featured img,table.wp-list-table .manage-column.column-product_type img{padding-left:2px}table.wp-list-table .column-price .woocommerce-price-suffix{display:none}table.wp-list-table img{margin:1px 2px}table.wp-list-table .row-actions{color:#999}table.wp-list-table td.column-thumb img{margin:0;vertical-align:middle;width:auto;height:auto;max-width:40px;max-height:40px}table.wp-list-table span.na{color:#999}table.wp-list-table .column-is_in_stock{text-align:left!important}table.wp-list-table span.wc-featured,table.wp-list-table span.wc-image,table.wp-list-table span.wc-type{display:block;text-indent:-9999px;position:relative;height:1em;width:1em;margin:0 auto}table.wp-list-table span.wc-featured:before,table.wp-list-table span.wc-image:before,table.wp-list-table span.wc-type:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e00c"}table.wp-list-table span.wc-featured{margin:0;cursor:pointer}table.wp-list-table span.wc-featured:before{content:"\e020"}table.wp-list-table span.wc-featured.not-featured:before{content:"\e021"}table.wp-list-table td.column-featured span.wc-featured{font-size:1.2em}table.wp-list-table span.wc-type{margin:0}table.wp-list-table span.wc-type:before{content:"\e01d"}table.wp-list-table span.product-type{display:block;text-indent:-9999px;position:relative;height:1em;width:1em;font-size:1.2em}table.wp-list-table span.product-type:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e006"}table.wp-list-table span.product-type.grouped:before{content:"\e002"}table.wp-list-table span.product-type.external:before{content:"\e034"}table.wp-list-table span.product-type.variable:before{content:"\e003"}table.wp-list-table span.product-type.downloadable:before{content:"\e001"}table.wp-list-table span.product-type.virtual:before{content:"\e000"}table.wp-list-table mark.instock{font-weight:700;color:#7ad03a;background:0 0;line-height:1}table.wp-list-table mark.outofstock{font-weight:700;color:#a44;background:0 0;line-height:1}table.wp-list-table .notes_head,table.wp-list-table .order-notes_head,table.wp-list-table .status_head{display:block;text-indent:-9999px;position:relative;height:1em;width:1em;margin:0 auto}table.wp-list-table .notes_head:after,table.wp-list-table .order-notes_head:after,table.wp-list-table .status_head:after{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center}table.wp-list-table .order-notes_head:after{content:"\e028"}table.wp-list-table .notes_head:after{content:"\e026"}table.wp-list-table .status_head:after{content:"\e011"}table.wp-list-table .column-order_items{width:12%}table.wp-list-table .column-order_items table.order_items{width:100%;margin:3px 0 0;padding:0;display:none}table.wp-list-table .column-order_items table.order_items td{border:0;margin:0;padding:0 0 3px}table.wp-list-table .column-order_items table.order_items td.qty{color:#999;padding-right:6px;text-align:left}mark.notice{background:#fff;color:#a00;margin:0 0 0 10px}a.export_rates,a.import_rates{float:right;margin-left:9px;margin-top:-2px;margin-bottom:0}table.wc_input_table,table.wc_tax_rates{width:100%}table.wc_input_table span.tips,table.wc_tax_rates span.tips{color:#2ea2cc}table.wc_input_table td,table.wc_tax_rates td{padding:0;border-right:1px solid #DFDFDF;border-bottom:1px solid #DFDFDF;border-top:0;background:#fff}table.wc_input_table td input[type=number],table.wc_input_table td input[type=text],table.wc_tax_rates td input[type=number],table.wc_tax_rates td input[type=text]{width:100%;padding:5px 7px;margin:0;border:0;background:0 0}table.wc_input_table td.apply_to_shipping,table.wc_input_table td.compound,table.wc_tax_rates td.apply_to_shipping,table.wc_tax_rates td.compound{padding:5px 7px;vertical-align:middle}table.wc_input_table td.apply_to_shipping input,table.wc_input_table td.compound input,table.wc_tax_rates td.apply_to_shipping input,table.wc_tax_rates td.compound input{width:auto;padding:0}table.wc_input_table td:last-child,table.wc_tax_rates td:last-child{border-right:0}table.wc_input_table tr.current td,table.wc_tax_rates tr.current td{background-color:#fefbcc}table.wc_input_table .cost,table.wc_input_table .cost input,table.wc_input_table .item_cost,table.wc_input_table .item_cost input,table.wc_tax_rates .cost,table.wc_tax_rates .cost input,table.wc_tax_rates .item_cost,table.wc_tax_rates .item_cost input{text-align:right}table.wc_input_table th.sort,table.wc_tax_rates th.sort{width:17px;padding:0}table.wc_input_table td.sort,table.wc_tax_rates td.sort{padding:0 4px;cursor:move;background:#f9f9f9;text-align:center;vertical-align:middle}table.wc_input_table td.sort:before,table.wc_tax_rates td.sort:before{content:"\e032";font-family:WooCommerce;text-align:center;line-height:1;color:#999;display:block;width:17px;float:left;height:100%}table.wc_input_table td.sort:hover:before,table.wc_tax_rates td.sort:hover:before{color:#333}table.wc_input_table .button,table.wc_tax_rates .button{float:left;margin-right:5px}table.wc_input_table .export,table.wc_input_table .import,table.wc_tax_rates .export,table.wc_tax_rates .import{float:right;margin-right:0;margin-left:5px}table.wc_input_table span.tips,table.wc_tax_rates span.tips{padding:0 3px}table.wc_input_table .pagination,table.wc_tax_rates .pagination{float:right}table.wc_input_table .pagination .button,table.wc_tax_rates .pagination .button{margin-left:5px;margin-right:0}table.wc_input_table .pagination .current,table.wc_tax_rates .pagination .current{background:#bbb;text-shadow:none}table.wc_input_table tfoot th,table.wc_tax_rates tfoot th{padding-left:20px;padding-right:20px}table.wc_input_table tr:last-child td,table.wc_tax_rates tr:last-child td{border-bottom:0}table.wc_gateways,table.wc_shipping{position:relative}table.wc_gateways td,table.wc_shipping td{vertical-align:middle;cursor:move;padding:7px}table.wc_gateways th,table.wc_shipping th{padding:9px 7px!important;vertical-align:middle}table.wc_gateways td.name,table.wc_shipping td.name{font-weight:700}table.wc_gateways .settings,table.wc_shipping .settings{text-align:right}table.wc_gateways .default,table.wc_gateways .radio,table.wc_gateways .status,table.wc_shipping .default,table.wc_shipping .radio,table.wc_shipping .status{text-align:center}table.wc_gateways .default .tips,table.wc_gateways .radio .tips,table.wc_gateways .status .tips,table.wc_shipping .default .tips,table.wc_shipping .radio .tips,table.wc_shipping .status .tips{margin:0 auto}table.wc_gateways .default input,table.wc_gateways .radio input,table.wc_gateways .status input,table.wc_shipping .default input,table.wc_shipping .radio input,table.wc_shipping .status input{margin:0}img.help_tip{vertical-align:middle;margin:0 0 0 9px}.postbox img.help_tip{margin-top:-4px}.status-disabled,.status-enabled{font-size:1.4em;display:block;text-indent:-9999px;position:relative;height:1em;width:1em}.status-enabled:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e015";color:#ad74a2}.woocommerce #template div{margin:0}.woocommerce #template div p .button{float:right;margin-left:10px;margin-top:-4px}.woocommerce #template div .editor textarea{margin-bottom:8px}.woocommerce textarea[disabled=disabled]{background:#DFDFDF!important}.woocommerce table.form-table,.woocommerce table.form-table .forminp-radio ul{margin:0}.woocommerce table.form-table .forminp-radio ul li{line-height:1.4em}.woocommerce table.form-table textarea.input-text{height:100%;min-width:150px;display:block}.woocommerce table.form-table input.regular-input{width:25em}.woocommerce table.form-table textarea.wide-input{width:100%}.woocommerce table.form-table img.help_tip{padding:0;margin:-4px 0 0 5px;vertical-align:middle;cursor:help;line-height:1}.woocommerce table.form-table span.help_tip{cursor:help;color:#2ea2cc}.woocommerce table.form-table th{position:relative;padding-right:24px}.woocommerce table.form-table .chosen-container{vertical-align:top;margin-bottom:3px}.woocommerce table.form-table table.widefat th{padding-right:inherit}.woocommerce table.form-table th img.help_tip{margin:0 -24px 0 0;float:right}.woocommerce table.form-table fieldset{margin-top:4px}.woocommerce table.form-table fieldset img.help_tip{margin:-3px 0 0 5px}.woocommerce table.form-table fieldset p.description{margin-bottom:8px}.woocommerce table.form-table fieldset:first-child{margin-top:0}.woocommerce table.form-table .color_box{border:1px solid #ccc;box-shadow:1px 1px 3px rgba(0,0,0,.2);-webkit-box-shadow:1px 1px 3px rgba(0,0,0,.2);-moz-box-shadow:1px 1px 3px rgba(0,0,0,.2);-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;padding:4px 6px;float:left;width:90px;margin:0 10px 0 0}.woocommerce table.form-table .color_box strong{text-align:left;display:block;padding:0 0 2px;font-size:.92em}.woocommerce table.form-table .color_box strong img{float:right;margin:1px 0 0}.woocommerce table.form-table .color_box input.colorpick{width:100%;margin:0;font-family:monospace;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.woocommerce table.form-table .color_box .iris-picker{margin:15px 0 0 -7px}.woocommerce table.form-table .color_box_clear{display:block;clear:both;padding-bottom:10px}.woocommerce table.form-table .iris-picker{z-index:100;position:absolute;display:none;border:1px solid #ccc;box-shadow:1px 1px 3px rgba(0,0,0,.2);-webkit-box-shadow:1px 1px 3px rgba(0,0,0,.2);-moz-box-shadow:1px 1px 3px rgba(0,0,0,.2);-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.woocommerce table.form-table .iris-picker .ui-slider{border:0!important;background:none!important;margin:0!important;width:auto!important;height:auto!important}.woocommerce table.form-table .iris-picker .ui-slider .ui-slider-handle{margin-bottom:0!important}.woocommerce table.form-table .image_width_settings{vertical-align:middle}.woocommerce table.form-table .image_width_settings label{margin-left:10px}.woocommerce #tabs-wrap table a.remove{margin-left:4px}.woocommerce #tabs-wrap table p{margin:0 0 4px!important;overflow:hidden;zoom:1}.woocommerce #tabs-wrap table p a.add{float:left}#wp-excerpt-editor-container{background:#fff}#product_variation-parent #parent_id{width:100%}#postimagediv img{border:1px solid #d5d5d5;max-width:100%}#woocommerce-product-images .inside{margin:0;padding:0}#woocommerce-product-images .inside .add_product_images{padding:0 12px 12px}#woocommerce-product-images .inside #product_images_container{padding:0 0 0 9px}#woocommerce-product-images .inside #product_images_container ul{margin:0;padding:0}#woocommerce-product-images .inside #product_images_container ul:after,#woocommerce-product-images .inside #product_images_container ul:before{content:" ";display:table}#woocommerce-product-images .inside #product_images_container ul:after{clear:both}#woocommerce-product-images .inside #product_images_container ul li.add,#woocommerce-product-images .inside #product_images_container ul li.image,#woocommerce-product-images .inside #product_images_container ul li.wc-metabox-sortable-placeholder{width:80px;float:left;cursor:move;border:1px solid #d5d5d5;margin:9px 9px 0 0;background:#f7f7f7;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;position:relative;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#woocommerce-product-images .inside #product_images_container ul li.add img,#woocommerce-product-images .inside #product_images_container ul li.image img,#woocommerce-product-images .inside #product_images_container ul li.wc-metabox-sortable-placeholder img{width:100%;height:auto;display:block}#woocommerce-product-images .inside #product_images_container ul li.wc-metabox-sortable-placeholder{border:3px dashed #ddd;position:relative}#woocommerce-product-images .inside #product_images_container ul li.wc-metabox-sortable-placeholder:after{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e00c";font-size:2.618em;line-height:72px;color:#ddd}#woocommerce-product-images .inside #product_images_container ul ul.actions{position:absolute;top:-8px;right:-8px;padding:2px;display:none}#woocommerce-product-images .inside #product_images_container ul ul.actions li{float:right;margin:0 0 0 2px}#woocommerce-product-images .inside #product_images_container ul ul.actions li a{width:1em;margin:0;height:0;display:block;overflow:hidden}#woocommerce-product-images .inside #product_images_container ul ul.actions li a.tips{cursor:pointer}#woocommerce-product-images .inside #product_images_container ul ul.actions li a.view{display:block;text-indent:-9999px;position:relative;height:1em;width:1em;font-size:1.4em}#woocommerce-product-images .inside #product_images_container ul ul.actions li a.view:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e00c";background-color:#000;color:#fff}#woocommerce-product-images .inside #product_images_container ul ul.actions li a.delete{display:block;text-indent:-9999px;position:relative;height:1em;width:1em;font-size:1.4em}#woocommerce-product-images .inside #product_images_container ul ul.actions li a.delete:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e013";color:#fff;background-color:#000;-webkit-border-radius:100%;border-radius:100%;box-shadow:0 1px 2px rgba(0,0,0,.2)}#woocommerce-product-images .inside #product_images_container ul ul.actions li a.delete:hover:before{background-color:#a00}#woocommerce-product-images .inside #product_images_container ul li:hover ul.actions{display:block}#woocommerce-product-data h3.hndle{padding:10px}#woocommerce-product-data h3.hndle span{display:block;vertical-align:middle;line-height:24px}#woocommerce-product-data h3.hndle span span{display:inline;line-height:inherit;vertical-align:baseline}#woocommerce-product-data h3.hndle label{padding-right:1em;font-size:12px;vertical-align:baseline}#woocommerce-product-data h3.hndle label:first-child{margin-right:1em;border-right:1px solid #dfdfdf}#woocommerce-product-data h3.hndle input,#woocommerce-product-data h3.hndle select{margin:-3px 0 0 .5em;vertical-align:middle}#woocommerce-product-data>.handlediv{margin-top:4px}#woocommerce-product-data .wrap{margin:0}#woocommerce-coupon-description{padding:3px 8px;font-size:1.7em;line-height:1.42em;height:auto;width:100%;outline:0;margin:10px 0;display:block}#woocommerce-coupon-description::-webkit-input-placeholder{line-height:1.42em;color:#bbb}#woocommerce-coupon-description::-moz-placeholder{line-height:1.42em;color:#bbb}#woocommerce-coupon-description:-ms-input-placeholder{line-height:1.42em;color:#bbb}#woocommerce-coupon-description:-moz-placeholder{line-height:1.42em;color:#bbb}#woocommerce-coupon-data .panel-wrap,#woocommerce-product-data .panel-wrap{background:#fff;padding-left:153px}#woocommerce-coupon-data .wc-metaboxes-wrapper,#woocommerce-coupon-data .woocommerce_options_panel,#woocommerce-product-data .wc-metaboxes-wrapper,#woocommerce-product-data .woocommerce_options_panel{float:right;width:100%}#woocommerce-coupon-data .wc-metaboxes-wrapper .wc-metaboxes,#woocommerce-coupon-data .wc-metaboxes-wrapper p.toolbar,#woocommerce-coupon-data .woocommerce_options_panel .wc-metaboxes,#woocommerce-coupon-data .woocommerce_options_panel p.toolbar,#woocommerce-product-data .wc-metaboxes-wrapper .wc-metaboxes,#woocommerce-product-data .wc-metaboxes-wrapper p.toolbar,#woocommerce-product-data .woocommerce_options_panel .wc-metaboxes,#woocommerce-product-data .woocommerce_options_panel p.toolbar{padding-left:12px!important;padding-right:20px!important}#woocommerce-coupon-data .wc-metaboxes-wrapper .wc-radios,#woocommerce-coupon-data .woocommerce_options_panel .wc-radios,#woocommerce-product-data .wc-metaboxes-wrapper .wc-radios,#woocommerce-product-data .woocommerce_options_panel .wc-radios{display:block;float:left;margin:0}#woocommerce-coupon-data .wc-metaboxes-wrapper .wc-radios li,#woocommerce-coupon-data .woocommerce_options_panel .wc-radios li,#woocommerce-product-data .wc-metaboxes-wrapper .wc-radios li,#woocommerce-product-data .woocommerce_options_panel .wc-radios li{display:block;padding:0 0 10px}#woocommerce-coupon-data .wc-metaboxes-wrapper .wc-radios li input,#woocommerce-coupon-data .woocommerce_options_panel .wc-radios li input,#woocommerce-product-data .wc-metaboxes-wrapper .wc-radios li input,#woocommerce-product-data .woocommerce_options_panel .wc-radios li input{width:auto}#woocommerce-coupon-data .wc-tabs-back,#woocommerce-product-data .wc-tabs-back{position:absolute;top:0;left:0;bottom:0;background:#f5f5f5;width:145px;border-right:1px solid #DFDFDF}#woocommerce-coupon-data ul.wc-tabs,#woocommerce-product-data ul.wc-tabs,.woocommerce ul.wc-tabs{background:#f5f5f5;line-height:1em;float:left;width:145px;margin:0 0 0 -153px;position:relative;padding:0 0 10px}#woocommerce-coupon-data ul.wc-tabs li,#woocommerce-product-data ul.wc-tabs li,.woocommerce ul.wc-tabs li{display:block;padding:0;margin:0}#woocommerce-coupon-data ul.wc-tabs li a,#woocommerce-product-data ul.wc-tabs li a,.woocommerce ul.wc-tabs li a{padding:10px;line-height:18px!important;margin:0;display:block;background:#f5f5f5;text-decoration:none;border-bottom:1px solid #f5f5f5;border-top:1px solid #eaeaea}#woocommerce-coupon-data ul.wc-tabs li a:before,#woocommerce-product-data ul.wc-tabs li a:before,.woocommerce ul.wc-tabs li a:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:7px;content:"\e028"}#woocommerce-coupon-data ul.wc-tabs li:first-child a,#woocommerce-product-data ul.wc-tabs li:first-child a,.woocommerce ul.wc-tabs li:first-child a{border-top:0!important}#woocommerce-coupon-data ul.wc-tabs li.general_options a:before,#woocommerce-product-data ul.wc-tabs li.general_options a:before,.woocommerce ul.wc-tabs li.general_options a:before{content:"\e006"}#woocommerce-coupon-data ul.wc-tabs li.inventory_options a:before,#woocommerce-product-data ul.wc-tabs li.inventory_options a:before,.woocommerce ul.wc-tabs li.inventory_options a:before{content:"\e02c"}#woocommerce-coupon-data ul.wc-tabs li.shipping_options a:before,#woocommerce-product-data ul.wc-tabs li.shipping_options a:before,.woocommerce ul.wc-tabs li.shipping_options a:before{content:"\e01a"}#woocommerce-coupon-data ul.wc-tabs li.linked_product_options a:before,#woocommerce-product-data ul.wc-tabs li.linked_product_options a:before,.woocommerce ul.wc-tabs li.linked_product_options a:before{content:"\e00d"}#woocommerce-coupon-data ul.wc-tabs li.attribute_options a:before,#woocommerce-product-data ul.wc-tabs li.attribute_options a:before,.woocommerce ul.wc-tabs li.attribute_options a:before{content:"\e02b"}#woocommerce-coupon-data ul.wc-tabs li.advanced_options a:before,#woocommerce-product-data ul.wc-tabs li.advanced_options a:before,.woocommerce ul.wc-tabs li.advanced_options a:before{content:"\e01c"}#woocommerce-coupon-data ul.wc-tabs li.variation_options a:before,#woocommerce-product-data ul.wc-tabs li.variation_options a:before,.woocommerce ul.wc-tabs li.variation_options a:before{content:"\e003"}#woocommerce-coupon-data ul.wc-tabs li.usage_restriction_options a:before,#woocommerce-product-data ul.wc-tabs li.usage_restriction_options a:before,.woocommerce ul.wc-tabs li.usage_restriction_options a:before{content:"\e602"}#woocommerce-coupon-data ul.wc-tabs li.usage_limit_options a:before,#woocommerce-product-data ul.wc-tabs li.usage_limit_options a:before,.woocommerce ul.wc-tabs li.usage_limit_options a:before{content:"\e601"}#woocommerce-coupon-data ul.wc-tabs li.general_coupon_data a:before,#woocommerce-product-data ul.wc-tabs li.general_coupon_data a:before,.woocommerce ul.wc-tabs li.general_coupon_data a:before{content:"\e600"}#woocommerce-coupon-data ul.wc-tabs li.active a,#woocommerce-product-data ul.wc-tabs li.active a,.woocommerce ul.wc-tabs li.active a{border-color:#DFDFDF;position:relative;background-color:#fff;color:#555;margin:0 -1px 0 0}.woocommerce_page_wc-settings .shippingrows th.check-column{padding-top:20px}.woocommerce_page_wc-settings .shippingrows tfoot th{padding-left:10px}.woocommerce_page_wc-settings .shippingrows .add.button:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:7px;content:"\e007"}.woocommerce_page_wc-settings h4.wc-settings-sub-title{font-size:1.2em}@media only screen and (max-width:900px){#woocommerce-coupon-data .panel-wrap,#woocommerce-product-data .panel-wrap{padding-left:35px}#woocommerce-coupon-data .wc-tabs-back,#woocommerce-product-data .wc-tabs-back{position:absolute;top:0;left:0;bottom:0;width:28px;border-right:1px solid #DFDFDF}#woocommerce-product-data ul.product_data_tabs,.woocommerce ul.wc-tabs{width:28px;margin-left:-35px}#woocommerce-product-data ul.product_data_tabs li a,.woocommerce ul.wc-tabs li a{overflow:hidden;white-space:nowrap}}#woocommerce-coupon-data .inside,#woocommerce-order-data .inside,#woocommerce-order-downloads .inside,#woocommerce-product-data .inside,#woocommerce-product-type-options .inside{padding:0;margin:0}.panel,.woocommerce_options_panel{padding:9px;color:#555}.panel,.woocommerce_page_settings .woocommerce_options_panel{padding:0}#woocommerce-product-specs .inside,#woocommerce-product-type-options .panel{padding:9px;margin:0}#woocommerce-product-type-options .panel p,.woocommerce_options_panel fieldset.form-field,.woocommerce_options_panel p{margin:0 0 9px;font-size:12px;padding:5px 9px;line-height:24px}#woocommerce-product-type-options .panel p:after,.woocommerce_options_panel fieldset.form-field:after,.woocommerce_options_panel p:after{content:".";display:block;height:0;clear:both;visibility:hidden}.woocommerce_options_panel .checkbox,table.woocommerce_variable_attributes .checkbox{width:auto;vertical-align:middle;margin:7px 0}.woocommerce_options_panel .downloadable_files table,.woocommerce_variations .downloadable_files table{width:100%;padding:0!important}.woocommerce_options_panel .downloadable_files table th,.woocommerce_variations .downloadable_files table th{padding:7px 0 7px 7px}.woocommerce_options_panel .downloadable_files table td,.woocommerce_variations .downloadable_files table td{vertical-align:middle!important;padding:4px 0 4px 7px;position:relative}.woocommerce_options_panel .downloadable_files table td:last-child,.woocommerce_variations .downloadable_files table td:last-child{padding-right:7px}.woocommerce_options_panel .downloadable_files table td input.input_text,.woocommerce_variations .downloadable_files table td input.input_text{width:100%;float:none;margin:1px 0}.woocommerce_options_panel .downloadable_files table td .upload_file_button,.woocommerce_variations .downloadable_files table td .upload_file_button{float:right;width:auto;cursor:pointer}.woocommerce_options_panel .downloadable_files table td .delete,.woocommerce_variations .downloadable_files table td .delete{display:block;text-indent:-9999px;position:relative;height:1em;width:1em}.woocommerce_options_panel .downloadable_files table td .delete:before,.woocommerce_variations .downloadable_files table td .delete:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e001";content:"\e013";color:#999}.woocommerce_options_panel .downloadable_files table td .delete:hover:before,.woocommerce_variations .downloadable_files table td .delete:hover:before{color:#a00}.woocommerce_options_panel .downloadable_files table th.sort,.woocommerce_variations .downloadable_files table th.sort{width:17px;padding:0}.woocommerce_options_panel .downloadable_files table td.sort,.woocommerce_variations .downloadable_files table td.sort{padding:0 8px;cursor:move;background:#f9f9f9;text-align:center;vertical-align:middle}.woocommerce_options_panel .downloadable_files table td.sort:before,.woocommerce_variations .downloadable_files table td.sort:before{content:"\e032";font-family:WooCommerce;text-align:center;line-height:1;color:#999;display:block;width:17px;float:left;height:100%}.woocommerce_options_panel .downloadable_files table td.sort:hover:before,.woocommerce_variations .downloadable_files table td.sort:hover:before{color:#333}.woocommerce_options_panel .downloadable_files{padding:0 9px 0 162px;position:relative;margin:9px 0}.woocommerce_options_panel .downloadable_files label{position:absolute;left:0;margin:0 0 0 12px;line-height:24px}.woocommerce_options_panel p{margin:9px 0}.woocommerce_options_panel fieldset.form-field,.woocommerce_options_panel p.form-field{padding:5px 20px 5px 162px!important}.woocommerce_options_panel label,.woocommerce_options_panel legend{float:left;width:150px;padding:0;margin:0 0 0 -150px}.woocommerce_options_panel label .req,.woocommerce_options_panel legend .req{font-weight:700;font-style:normal;color:#a00}.woocommerce_options_panel .description{padding:0;margin:0 0 0 7px}.woocommerce_options_panel .description-block{margin-left:0;display:block}.woocommerce_options_panel input,.woocommerce_options_panel select,.woocommerce_options_panel textarea{margin:0}.woocommerce_options_panel textarea{vertical-align:top;height:3.5em;line-height:1.5em}.woocommerce_options_panel input[type=email],.woocommerce_options_panel input[type=number],.woocommerce_options_panel input[type=text]{width:50%;float:left}.woocommerce_options_panel input.button{width:auto;margin-left:8px}.woocommerce_options_panel select{float:left}.woocommerce_options_panel .short,.woocommerce_options_panel input[type=email].short,.woocommerce_options_panel input[type=number].short,.woocommerce_options_panel input[type=text].short{width:25%}.woocommerce_options_panel .sized{width:auto!important;margin-right:6px}.woocommerce_options_panel .options_group{border-top:1px solid #fff;border-bottom:1px solid #DFDFDF}.woocommerce_options_panel .options_group:first-child{border-top:0}.woocommerce_options_panel .options_group:last-child{border-bottom:0}.woocommerce_options_panel .options_group fieldset{margin:9px 0;font-size:12px;padding:5px 9px;line-height:24px}.woocommerce_options_panel .options_group fieldset label{width:auto;float:none}.woocommerce_options_panel .options_group fieldset ul{float:left;width:50%;margin:0;padding:0}.woocommerce_options_panel .options_group fieldset ul li{margin:0;width:auto}.woocommerce_options_panel .options_group fieldset ul li input{width:auto;float:none;margin-right:4px}.woocommerce_options_panel .options_group fieldset ul.wc-radios label{margin-left:0}.woocommerce_options_panel .dimensions_field .wrap input{margin-right:.2%;width:8.2%}.woocommerce_options_panel .dimensions_field .wrap .last{margin-right:0}#woocommerce-product-data input.dp-applied{float:left}#grouped_product_options,#simple_product_options,#virtual_product_options{padding:12px;font-style:italic;color:#666}.wc-metaboxes-wrapper .toolbar{margin:0!important;border-top:1px solid #fff;border-bottom:1px solid #DFDFDF;padding:9px 12px!important}.wc-metaboxes-wrapper .toolbar:first-child{border-top:0}.wc-metaboxes-wrapper .toolbar:last-child{border-bottom:0}.wc-metaboxes-wrapper .toolbar .add_variation,.wc-metaboxes-wrapper .toolbar .link_all_variations{float:right;margin-left:5px}.wc-metaboxes-wrapper p.toolbar{overflow:hidden;zoom:1}.wc-metaboxes-wrapper .fr,.wc-metaboxes-wrapper button.add_attribute,.wc-metaboxes-wrapper button.add_variable_attribute,.wc-metaboxes-wrapper select.attribute_taxonomy{float:right;margin:0 0 0 6px}.wc-metaboxes-wrapper .wc-metaboxes{border-bottom:1px solid #DFDFDF;padding:0 12px}.wc-metaboxes-wrapper .wc-metabox-sortable-placeholder{border-color:#bbb;background-color:#f5f5f5;margin-bottom:9px;border-width:1px;border-style:dashed}.wc-metaboxes-wrapper .wc-metabox{background:#fff;border:1px solid #dfdfdf;margin:9px 0!important;-moz-border-radius-topleft:3px;-moz-border-radius-topright:3px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px}.wc-metaboxes-wrapper .wc-metabox .handlediv:before{line-height:.5!important}.wc-metaboxes-wrapper .wc-metabox.closed{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.wc-metaboxes-wrapper .wc-metabox.closed .handlediv:before{content:"\f140"!important}.wc-metaboxes-wrapper .wc-metabox.closed h3{border:0}.wc-metaboxes-wrapper .wc-metabox h3{margin:0!important;padding:6px!important;font-size:1em!important;overflow:hidden;zoom:1;cursor:move}.wc-metaboxes-wrapper .wc-metabox h3 button{float:right}.wc-metaboxes-wrapper .wc-metabox h3 strong{font-weight:400;line-height:24px}.wc-metaboxes-wrapper .wc-metabox h3 select{font-family:sans-serif}.wc-metaboxes-wrapper .wc-metabox h3 .handlediv{background-position:6px 5px!important;display:none;height:24px}.wc-metaboxes-wrapper .wc-metabox h3.fixed{cursor:pointer!important}.wc-metaboxes-wrapper .wc-metabox h3:hover .handlediv{display:block}.wc-metaboxes-wrapper .wc-metabox table{width:100%;position:relative;background:#fff;padding:3px}.wc-metaboxes-wrapper .wc-metabox table td{text-align:left;padding:6px;vertical-align:top;border:0}.wc-metaboxes-wrapper .wc-metabox table td label{text-align:left;display:block;line-height:21px}.wc-metaboxes-wrapper .wc-metabox table td input{float:left;min-width:200px}.wc-metaboxes-wrapper .wc-metabox table td input,.wc-metaboxes-wrapper .wc-metabox table td textarea{width:100%;margin:0;display:block;font-size:14px;padding:4px;color:#555}.wc-metaboxes-wrapper .wc-metabox table td .chosen-container,.wc-metaboxes-wrapper .wc-metabox table td select{width:100%!important}.wc-metaboxes-wrapper .wc-metabox table td input.short{width:200px}.wc-metaboxes-wrapper .wc-metabox table td input.checkbox{width:16px;min-width:inherit;vertical-align:text-bottom;display:inline-block;float:none}.wc-metaboxes-wrapper .wc-metabox table td.attribute_name{width:200px}.wc-metaboxes-wrapper .wc-metabox table .minus,.wc-metaboxes-wrapper .wc-metabox table .plus{margin-top:6px}.wc-metaboxes-wrapper .wc-metabox table .fl{float:left}.wc-metaboxes-wrapper .wc-metabox table .fr{float:right}.wc-metaboxes-wrapper .close_all,.wc-metaboxes-wrapper .expand_all{float:right;margin-left:14px;line-height:22px;text-decoration:none}.wc-metaboxes-wrapper .close_all:before,.wc-metaboxes-wrapper .expand_all:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:7px;content:"\e036";font-size:.8em;color:#999}.wc-metaboxes-wrapper .expand_all:before{content:"\e035"}#variable_product_options .woocommerce_variation table{background:#fafafa;border-top:1px solid #eee;padding:6px}#variable_product_options .woocommerce_variation table td input{min-width:inherit!important}#variable_product_options .woocommerce_variation table td.dimensions_field input{width:32%;margin-right:2%}#variable_product_options .woocommerce_variation table td.dimensions_field .last{margin-right:0}#variable_product_options .woocommerce_variation table td.options{width:150px}#variable_product_options .woocommerce_variation table td.options label{margin-bottom:6px}#variable_product_options .woocommerce_variation table td.data{padding:0 0 0 12px}#variable_product_options .woocommerce_variation table td.data table.data_table{width:100%;padding:0 12px 6px;background:#fff;border:1px solid #dfdfdf;-moz-border-radius:3px;-webkit-border-radius:3px;-khtml-border-radius:3px;border-radius:3px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#variable_product_options .woocommerce_variation table td.data table.data_table td{width:50%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#variable_product_options .woocommerce_variation table td.data table.data_table:before{content:"";display:block;position:absolute;top:33px;left:0;margin:0 0 0 -1px;border:7px solid #dfdfdf;border-color:transparent transparent transparent #dfdfdf}#variable_product_options .woocommerce_variation table td.data table.data_table:after{content:"";display:block;position:absolute;top:34px;left:0;margin:0 0 0 -1px;border:6px solid #fafafa;border-color:transparent transparent transparent #fafafa}#variable_product_options .woocommerce_variation table td.upload_image{white-space:nowrap;width:75px}#variable_product_options .woocommerce_variation table td.upload_image img{float:none;width:73px;border:1px solid #dfdfdf}#variable_product_options .woocommerce_variation table td.upload_image .button{margin:0;padding:4px 10px;width:auto;float:none;vertical-align:middle}#variable_product_options .woocommerce_variation table td.upload_image .upload_image_button{display:block;position:relative}#variable_product_options .woocommerce_variation table td.upload_image .upload_image_button .overlay{display:none;width:75px;height:75px;position:absolute;top:0;left:0;margin:0;padding:0;opacity:.5;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAXklEQVQYGW2OUQrAMAhDFy8+dnKnwiuh2I+aJulDZebDkfSie1b28Q7EXWrfvSm60RQnkQUC8ja7owpmL6d4GdDZ0cNNHyIhZEj4QYCxze6orsluAh8AnR0xKPR07weXJi8JGd3qqwAAAABJRU5ErkJggg==) center center no-repeat #eee}#variable_product_options .woocommerce_variation table td.upload_image .upload_image_button:hover .overlay{display:block}#variable_product_options .woocommerce_variation table td.upload_image .upload_image_button.remove .overlay{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAWElEQVQYGY2OUQ6AMAxCZdm9jSev65K3YKNm+6EFBlVEHDxJJ3Pi0C72xlBNyTs3jU7wEUTTIB51GCp2CL8HLpHEdaOLb/N2dfuq9NT0zOo/M9q6EaImsd/uViMLVuD4KAAAAABJRU5ErkJggg==) center center no-repeat #eee}#variable_product_options .woocommerce_variation table .cancel_sale_schedule,#variable_product_options .woocommerce_variation table .sale_schedule{float:right}#variable_product_options .woocommerce_variation table tr.sale_price_dates_fields td{padding-right:24px;position:relative}#variable_product_options .woocommerce_variation table tr.sale_price_dates_fields td img{position:absolute;right:0;bottom:0;padding:5px 0;margin:0 0 6px}.tips{cursor:help;text-decoration:none}img.tips{padding:5px 0 0}#tiptip_holder{display:none;position:absolute;top:0;left:0;z-index:99999}#tiptip_holder.tip_top{padding-bottom:5px}#tiptip_holder.tip_top #tiptip_arrow_inner{margin-top:-7px;margin-left:-6px;border-top-color:#464646}#tiptip_holder.tip_bottom{padding-top:5px}#tiptip_holder.tip_bottom #tiptip_arrow_inner{margin-top:-5px;margin-left:-6px;border-bottom-color:#464646}#tiptip_holder.tip_right{padding-left:5px}#tiptip_holder.tip_right #tiptip_arrow_inner{margin-top:-6px;margin-left:-5px;border-right-color:#464646}#tiptip_holder.tip_left{padding-right:5px}#tiptip_holder.tip_left #tiptip_arrow_inner{margin-top:-6px;margin-left:-7px;border-left-color:#464646}#tiptip_content,.chart-tooltip,.wc_error_tip{font-size:11px;color:#fff;padding:.5em;background:#464646;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:1px 1px 3px rgba(0,0,0,.1);-moz-box-shadow:1px 1px 3px rgba(0,0,0,.1);box-shadow:1px 1px 3px rgba(0,0,0,.1);text-align:center;max-width:150px}#tiptip_content code,.chart-tooltip code,.wc_error_tip code{background:#888;padding:1px}#tiptip_arrow,#tiptip_arrow_inner{position:absolute;border-color:transparent;border-style:solid;border-width:6px;height:0;width:0}.wc_error_tip{background:#d82223;max-width:20em;white-space:normal;position:absolute;margin:1.5em 1px 0 -1em;z-index:9999999}.wc_error_tip:after{content:"";display:block;border:8px solid #d82223;border-right-color:transparent;border-left-color:transparent;border-top-color:transparent;position:absolute;top:-3px;left:50%;margin:-1em 0 0 -3px}img.ui-datepicker-trigger{vertical-align:middle;margin-top:-1px;cursor:pointer}.wc-metabox-content img.ui-datepicker-trigger,.woocommerce_options_panel img.ui-datepicker-trigger{float:left;margin-right:8px;margin-top:4px;margin-left:4px}#ui-datepicker-div{display:none}.woocommerce-reports-wide.woocommerce-reports-wrap,.woocommerce-reports-wrap.woocommerce-reports-wrap{margin-left:300px;padding-top:18px}.woocommerce-reports-wide.halved,.woocommerce-reports-wrap.halved{margin:0;overflow:hidden;zoom:1}.woocommerce-reports-wide .widefat td,.woocommerce-reports-wrap .widefat td{vertical-align:top;padding:7px}.woocommerce-reports-wide .widefat td .description,.woocommerce-reports-wrap .widefat td .description{margin:4px 0 0}.woocommerce-reports-wide .postbox:after,.woocommerce-reports-wrap .postbox:after{content:".";display:block;height:0;clear:both;visibility:hidden}.woocommerce-reports-wide .postbox h3,.woocommerce-reports-wrap .postbox h3{cursor:default!important}.woocommerce-reports-wide .postbox .inside,.woocommerce-reports-wrap .postbox .inside{padding:10px;margin:0!important}.woocommerce-reports-wide .postbox h3.stats_range,.woocommerce-reports-wrap .postbox h3.stats_range{padding:0!important;border-bottom-color:#dfdfdf}.woocommerce-reports-wide .postbox h3.stats_range .export_csv,.woocommerce-reports-wrap .postbox h3.stats_range .export_csv{float:right;line-height:26px;border-left:1px solid #dfdfdf;padding:10px;display:block;text-decoration:none}.woocommerce-reports-wide .postbox h3.stats_range .export_csv:before,.woocommerce-reports-wrap .postbox h3.stats_range .export_csv:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;content:"\e00a";margin-right:4px}.woocommerce-reports-wide .postbox h3.stats_range ul,.woocommerce-reports-wrap .postbox h3.stats_range ul{list-style:none;margin:0;padding:0;zoom:1;background:#f5f5f5}.woocommerce-reports-wide .postbox h3.stats_range ul:after,.woocommerce-reports-wide .postbox h3.stats_range ul:before,.woocommerce-reports-wrap .postbox h3.stats_range ul:after,.woocommerce-reports-wrap .postbox h3.stats_range ul:before{content:" ";display:table}.woocommerce-reports-wide .postbox h3.stats_range ul:after,.woocommerce-reports-wrap .postbox h3.stats_range ul:after{clear:both}.woocommerce-reports-wide .postbox h3.stats_range ul li,.woocommerce-reports-wrap .postbox h3.stats_range ul li{float:left;margin:0;padding:0;line-height:26px}.woocommerce-reports-wide .postbox h3.stats_range ul li a,.woocommerce-reports-wrap .postbox h3.stats_range ul li a{border-right:1px solid #dfdfdf;padding:10px;display:block;text-decoration:none}.woocommerce-reports-wide .postbox h3.stats_range ul li.active,.woocommerce-reports-wrap .postbox h3.stats_range ul li.active{background:#fff;-webkit-box-shadow:0 4px 0 0 #fff;box-shadow:0 4px 0 0 #fff}.woocommerce-reports-wide .postbox h3.stats_range ul li.active a,.woocommerce-reports-wrap .postbox h3.stats_range ul li.active a{color:#777}.woocommerce-reports-wide .postbox h3.stats_range ul li.custom,.woocommerce-reports-wrap .postbox h3.stats_range ul li.custom{padding:9px 10px;vertical-align:middle}.woocommerce-reports-wide .postbox h3.stats_range ul li.custom div,.woocommerce-reports-wide .postbox h3.stats_range ul li.custom form,.woocommerce-reports-wrap .postbox h3.stats_range ul li.custom div,.woocommerce-reports-wrap .postbox h3.stats_range ul li.custom form{display:inline;margin:0}.woocommerce-reports-wide .postbox h3.stats_range ul li.custom div input.range_datepicker,.woocommerce-reports-wide .postbox h3.stats_range ul li.custom form input.range_datepicker,.woocommerce-reports-wrap .postbox h3.stats_range ul li.custom div input.range_datepicker,.woocommerce-reports-wrap .postbox h3.stats_range ul li.custom form input.range_datepicker{padding:0;margin:0 10px 0 0;background:0 0;border:0;color:#777;text-align:center;-webkit-box-shadow:none;box-shadow:none}.woocommerce-reports-wide .postbox .chart-with-sidebar,.woocommerce-reports-wrap .postbox .chart-with-sidebar{padding:12px 12px 12px 249px;margin:0!important}.woocommerce-reports-wide .postbox .chart-with-sidebar .chart-sidebar,.woocommerce-reports-wrap .postbox .chart-with-sidebar .chart-sidebar{width:225px;margin-left:-237px;float:left}.woocommerce-reports-wide .postbox .chart-widgets,.woocommerce-reports-wrap .postbox .chart-widgets{margin:0;padding:0}.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget,.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget{margin:0 0 1em;background:#fafafa;border:1px solid #dfdfdf}.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget:after,.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget:after{content:".";display:block;height:0;clear:both;visibility:hidden}.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget h4,.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget h4{background:#fff;border:1px solid #dfdfdf;border-left-width:0;border-right-width:0;padding:10px;margin:0;color:#2ea2cc;border-top-width:0;background:-webkit-gradient(linear,left bottom,left top,from(#ececec),to(#f9f9f9)) #fff;background:-webkit-linear-gradient(bottom,#ececec,#f9f9f9) #fff;background:-moz-linear-gradient(bottom,#ececec,#f9f9f9) #fff;background:-o-linear-gradient(bottom,#ececec,#f9f9f9) #fff;background:linear-gradient(to top,#ececec,#f9f9f9) #fff}.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget h4.section_title:hover,.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget h4.section_title:hover{color:#a00}.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget .section_title,.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget .section_title{cursor:pointer}.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget .section_title span,.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget .section_title span{display:block}.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget .section_title span:after,.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget .section_title span:after{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;margin-left:7px;content:"\e035";float:right;font-size:.9em;line-height:1.618}.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget .section_title.open,.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget .section_title.open{color:#333}.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget .section_title.open span:after,.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget .section_title.open span:after{display:none}.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget .section,.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget .section{border-bottom:1px solid #dfdfdf}.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget .section .chosen-container,.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget .section .chosen-container{width:100%!important}.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget .section:last-of-type,.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget .section:last-of-type{border-radius:0 0 3px 3px}.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget table,.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget table{width:100%}.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget table td,.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget table td{padding:7px 10px;vertical-align:top;border-top:1px solid #e5e5e5;line-height:1.4em}.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget table tr:first-child td,.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget table tr:first-child td{border-top:0}.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget table td.count,.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget table td.count{background:#f5f5f5}.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget table td.name,.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget table td.name{padding-right:0}.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget table td.sparkline,.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget table td.sparkline{vertical-align:middle}.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget table .wc_sparkline,.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget table .wc_sparkline{width:32px;height:1em;display:block;float:right}.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget table tr.active td,.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget table tr.active td{background:#f5f5f5}.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget form,.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget p,.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget form,.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget p{margin:0;padding:10px}.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget form .submit,.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget p .submit,.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget form .submit,.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget p .submit{margin-top:10px}.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget #product_ids,.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget #product_ids{width:100%}.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget .select_all,.woocommerce-reports-wide .postbox .chart-widgets li.chart-widget .select_none,.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget .select_all,.woocommerce-reports-wrap .postbox .chart-widgets li.chart-widget .select_none{float:right;color:#999;margin-left:4px;margin-top:10px}.woocommerce-reports-wide .postbox .chart-legend,.woocommerce-reports-wrap .postbox .chart-legend{list-style:none;margin:0 0 1em;padding:0;border:1px solid #dfdfdf;border-right-width:0;border-bottom-width:0;background:#fff}.woocommerce-reports-wide .postbox .chart-legend li,.woocommerce-reports-wrap .postbox .chart-legend li{border-right:5px solid #aaa;color:#aaa;padding:1em;display:block;margin:0;-webkit-transition:all ease .5s;box-shadow:inset 0 -1px 0 0 #dfdfdf}.woocommerce-reports-wide .postbox .chart-legend li strong,.woocommerce-reports-wrap .postbox .chart-legend li strong{font-size:1.618em;line-height:1.2em;color:#464646;font-weight:400;display:block;font-family:HelveticaNeue-Light,"Helvetica Neue Light","Helvetica Neue",sans-serif}.woocommerce-reports-wide .postbox .chart-legend li:hover,.woocommerce-reports-wrap .postbox .chart-legend li:hover{box-shadow:inset 0 -1px 0 0 #dfdfdf,inset 300px 0 0 rgba(156,93,144,.1);border-right:5px solid #9c5d90!important;padding-left:1.5em;color:#9c5d90}.woocommerce-reports-wide .postbox .pie-chart-legend,.woocommerce-reports-wrap .postbox .pie-chart-legend{margin:12px 0 0;overflow:hidden}.woocommerce-reports-wide .postbox .pie-chart-legend li,.woocommerce-reports-wrap .postbox .pie-chart-legend li{float:left;margin:0;padding:6px 0 0;border-top:4px solid #999;text-align:center;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:50%}.woocommerce-reports-wide .postbox .stat,.woocommerce-reports-wrap .postbox .stat{font-size:1.5em!important;font-weight:700;text-align:center}.woocommerce-reports-wide .postbox .chart-placeholder,.woocommerce-reports-wrap .postbox .chart-placeholder{width:100%;height:650px;overflow:hidden;position:relative}.woocommerce-reports-wide .postbox .chart-prompt,.woocommerce-reports-wrap .postbox .chart-prompt{line-height:650px;margin:0;color:#999;font-size:1.2em;font-style:italic;text-align:center}.woocommerce-reports-wide .postbox .chart-container,.woocommerce-reports-wrap .postbox .chart-container{background:#fff;padding:12px;position:relative;border:1px solid #dfdfdf;border-radius:3px}.woocommerce-reports-wide .postbox .main .chart-legend,.woocommerce-reports-wrap .postbox .main .chart-legend{margin-top:12px}.woocommerce-reports-wide .postbox .main .chart-legend li,.woocommerce-reports-wrap .postbox .main .chart-legend li{border-right:0;margin:0 8px 0 0;float:left;border-top:4px solid #aaa}.woocommerce-reports-wide .woocommerce-reports-main,.woocommerce-reports-wrap .woocommerce-reports-main{float:left;min-width:100%}.woocommerce-reports-wide .woocommerce-reports-main table td,.woocommerce-reports-wrap .woocommerce-reports-main table td{padding:9px}.woocommerce-reports-wide .woocommerce-reports-sidebar,.woocommerce-reports-wrap .woocommerce-reports-sidebar{display:inline;width:281px;margin-left:-300px;clear:both;float:left}.woocommerce-reports-wide .woocommerce-reports-left,.woocommerce-reports-wrap .woocommerce-reports-left{width:49.5%;float:left}.woocommerce-reports-wide .woocommerce-reports-right,.woocommerce-reports-wrap .woocommerce-reports-right{width:49.5%;float:right}.woocommerce-reports-wide .column-wc_actions a.edit,.woocommerce-reports-wide .column-wc_actions a.view,.woocommerce-reports-wrap .column-wc_actions a.edit,.woocommerce-reports-wrap .column-wc_actions a.view{display:block;text-indent:-9999px;position:relative;padding:0!important;height:2em!important;width:2em}.woocommerce-reports-wide .column-wc_actions a.edit:after,.woocommerce-reports-wide .column-wc_actions a.view:after,.woocommerce-reports-wrap .column-wc_actions a.edit:after,.woocommerce-reports-wrap .column-wc_actions a.view:after{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;line-height:1.85}.woocommerce-reports-wide .column-wc_actions a.edit:after,.woocommerce-reports-wrap .column-wc_actions a.edit:after{content:"\e01c"}.woocommerce-reports-wide .column-wc_actions a.view:after,.woocommerce-reports-wrap .column-wc_actions a.view:after{content:"\e010"}.woocommerce-wide-reports-wrap{padding-bottom:11px}.woocommerce-wide-reports-wrap .widefat .export-data{float:right}.woocommerce-wide-reports-wrap .widefat td,.woocommerce-wide-reports-wrap .widefat th{vertical-align:middle;padding:7px}form.report_filters div,form.report_filters input,form.report_filters label,form.report_filters p{vertical-align:middle}.chart-tooltip{position:absolute;display:none;line-height:1}table.bar_chart{width:100%}table.bar_chart thead th{text-align:left;color:#ccc;padding:6px 0}table.bar_chart tbody th{padding:6px 0;width:25%;text-align:left!important;font-weight:400!important;border-bottom:1px solid #fee}table.bar_chart tbody td{text-align:right;line-height:24px;padding:6px 6px 6px 0;border-bottom:1px solid #fee}table.bar_chart tbody td span{color:#8a4b75;display:block}table.bar_chart tbody td span.alt{color:#47a03e;margin-top:6px}table.bar_chart tbody td.bars{position:relative;text-align:left;padding:6px 6px 6px 0;border-bottom:1px solid #fee}table.bar_chart tbody td.bars a,table.bar_chart tbody td.bars span{text-decoration:none;clear:both;background:#8a4b75;float:left;display:block;line-height:24px;height:24px;-moz-border-radius:3px;-webkit-border-radius:3px;-o-border-radius:3px;-khtml-border-radius:3px;border-radius:3px}table.bar_chart tbody td.bars span.alt{clear:both;background:#47a03e}table.bar_chart tbody td.bars span.alt span{margin:0;color:#c5dec2!important;text-shadow:0 1px 0 #47a03e;background:0 0}.chosen-container-single .chosen-single{margin-top:1px}.chosen-container-single .chosen-single div b{background:url(../images/chosen-sprite.png) 0 4px no-repeat!important}.chosen-container-active .chosen-single-with-drop div b{background-position:-18px 2px!important}.chosen-container-single .chosen-search input{line-height:13px;width:100%!important;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.chosen-container .chosen-drop{width:100%!important}.chosen-container-multi .chosen-choices .search-field input{height:21px!important}.woocommerce_options_panel .chosen-container-multi{width:50%!important;float:left}.woocommerce_options_panel .chosen-container-multi .search-field{min-width:50%}.woocommerce_options_panel .chosen-container-multi .search-field input{min-width:100%}@media only screen and (max-width:1280px){#order_data .order_data_column{width:48%}#order_data .order_data_column:first-child{width:100%}.woocommerce_options_panel .description{display:block;clear:both;margin-left:0}}@media only screen and (max-width:900px){#woocommerce-product-data .wc-tabs-back,#woocommerce-product-data ul.product_data_tabs{width:40px}#woocommerce-coupon-data .wc-metaboxes-wrapper,#woocommerce-coupon-data .woocommerce_options_panel,#woocommerce-product-data .wc-metaboxes-wrapper,#woocommerce-product-data .woocommerce_options_panel{width:98%}#woocommerce-product-data ul.product_data_tabs li a{position:relative;text-indent:-999px;padding:10px}#woocommerce-product-data ul.product_data_tabs li a:before{position:absolute;top:0;right:0;bottom:0;left:0;text-indent:0;text-align:center;line-height:40px;width:40px;height:40px}}@media only screen and (max-width:782px){#wp-excerpt-media-buttons a{font-size:16px;line-height:37px;height:39px;padding:0 20px 0 15px}#wp-excerpt-editor-tools{padding-top:20px;padding-right:15px;overflow:hidden;margin-bottom:-1px}#woocommerce-product-data .checkbox{width:25px}}.woocommerce-checkout .form-row .chosen-container{width:100%!important}.woocommerce-checkout .form-row .chosen-container-single .chosen-single{height:28px;line-height:29px}.woocommerce-checkout .form-row .chosen-container-single .chosen-single div b{background:url(../images/chosen-sprite.png) 0 3px no-repeat!important}.woocommerce-checkout .form-row .chosen-container-active .chosen-single-with-drop div b{background-position:-18px 4px!important}.woocommerce-checkout .form-row .chosen-container-single .chosen-search input{line-height:13px;width:100%!important;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.woocommerce-checkout .form-row .chosen-container .chosen-drop{width:100%!important;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-resolution:144dpi){.woocommerce-checkout .form-row .chosen-container-single .chosen-single div b{background-image:url(../images/chosen-sprite@2x.png)!important;background-position:0 5px!important;background-repeat:no-repeat!important;background-size:52px 37px!important}.woocommerce-checkout .form-row .chosen-container-active .chosen-single-with-drop div b{background-position:-18px 5px!important}}.chosen-container{position:relative;display:inline-block;vertical-align:middle;font-size:13px;zoom:1;-webkit-user-select:none;-moz-user-select:none;user-select:none}.chosen-container .chosen-drop{position:absolute;top:100%;left:-9999px;z-index:1010;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border:1px solid #aaa;border-top:0;background:#fff;box-shadow:0 4px 5px rgba(0,0,0,.15)}.chosen-container.chosen-with-drop .chosen-drop{left:0}.chosen-container a{cursor:pointer}.chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0 0 0 8px;height:26px;border:1px solid #aaa;border-radius:5px;background:-webkit-gradient(linear,50% 0,50% 100%,color-stop(20%,#fff),color-stop(50%,#f6f6f6),color-stop(52%,#eee),color-stop(100%,#f4f4f4));background:-webkit-linear-gradient(top,#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);background:-moz-linear-gradient(top,#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);background:-o-linear-gradient(top,#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);background:linear-gradient(top,#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);background-clip:padding-box;box-shadow:0 0 3px #fff inset,0 1px 1px rgba(0,0,0,.1);color:#444;text-decoration:none;white-space:nowrap;line-height:26px}.chosen-container-single .chosen-default{color:#999}.chosen-container-single .chosen-single span{display:block;overflow:hidden;margin-right:26px;text-overflow:ellipsis;white-space:nowrap}.chosen-container-single .chosen-single-with-deselect span{margin-right:38px}.chosen-container-single .chosen-single abbr{position:absolute;right:26px;display:block;width:12px;height:12px;background:url(../images/chosen-sprite.png) -42px 1px no-repeat;font-size:1px}.chosen-container-single .chosen-single abbr:hover,.chosen-container-single.chosen-disabled .chosen-single abbr:hover{background-position:-42px -10px}.chosen-container-single .chosen-single div{position:absolute;top:0;right:0;display:block;width:18px;height:100%}.chosen-container-single .chosen-single div b{display:block;width:100%;height:100%}.chosen-container-single .chosen-search{position:relative;z-index:1010;margin:0;padding:3px 4px;white-space:nowrap}.chosen-container-single .chosen-search input[type=text]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:1px 0;padding:4px 20px 4px 5px;width:100%;height:auto;outline:0;border:1px solid #aaa;background:url(../images/chosen-sprite.png) 100% -20px no-repeat #fff;background:url(../images/chosen-sprite.png) 100% -20px no-repeat,linear-gradient(#eee 1%,#fff 15%);font-size:1em;font-family:sans-serif;line-height:normal;border-radius:0}.chosen-container-single .chosen-drop{margin-top:-1px;border-radius:0 0 4px 4px;background-clip:padding-box}.chosen-container-single.chosen-container-single-nosearch .chosen-search{position:absolute;left:-9999px}.chosen-container .chosen-results{position:relative;overflow-x:hidden;overflow-y:auto;margin:0 4px 4px 0;padding:0 0 0 4px;max-height:240px;-webkit-overflow-scrolling:touch}.chosen-container .chosen-results li{display:none;margin:0;padding:5px 6px;list-style:none;line-height:15px}.chosen-container .chosen-results li.active-result{display:list-item;cursor:pointer}.chosen-container .chosen-results li.disabled-result{display:list-item;color:#ccc;cursor:default}.chosen-container .chosen-results li.highlighted{background-color:#3875d7;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(20%,#3875d7),color-stop(90%,#2a62bc));background-image:-webkit-linear-gradient(#3875d7 20%,#2a62bc 90%);background-image:-moz-linear-gradient(#3875d7 20%,#2a62bc 90%);background-image:-o-linear-gradient(#3875d7 20%,#2a62bc 90%);background-image:linear-gradient(#3875d7 20%,#2a62bc 90%);color:#fff}.chosen-container .chosen-results li.no-results{display:list-item;background:#f4f4f4}.chosen-container .chosen-results li.group-result{display:list-item;font-weight:700;cursor:default}.chosen-container .chosen-results li.group-option{padding-left:15px}.chosen-container .chosen-results li em{font-style:normal;text-decoration:underline}.chosen-container-multi .chosen-choices{position:relative;overflow:hidden;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:0;padding:0;width:100%;height:auto!important;height:1%;border:1px solid #aaa;background-color:#fff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(1%,#eee),color-stop(15%,#fff));background-image:-webkit-linear-gradient(#eee 1%,#fff 15%);background-image:-moz-linear-gradient(#eee 1%,#fff 15%);background-image:-o-linear-gradient(#eee 1%,#fff 15%);background-image:linear-gradient(#eee 1%,#fff 15%);cursor:text}.chosen-container-multi .chosen-choices li{float:left;list-style:none}.chosen-container-multi .chosen-choices li.search-field{margin:0;padding:0;white-space:nowrap}.chosen-container-multi .chosen-choices li.search-field input[type=text]{margin:1px 0;padding:5px;height:15px;outline:0;border:0!important;background:0 0!important;box-shadow:none;color:#666;font-size:100%;font-family:sans-serif;line-height:normal;border-radius:0}.chosen-container-multi .chosen-choices li.search-field .default{color:#999}.chosen-container-multi .chosen-choices li.search-choice{position:relative;margin:3px 0 3px 5px;padding:3px 20px 3px 5px;border:1px solid #aaa;border-radius:3px;background-color:#e4e4e4;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),color-stop(100%,#eee));background-image:-webkit-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-moz-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-o-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-clip:padding-box;box-shadow:0 0 2px #fff inset,0 1px 0 rgba(0,0,0,.05);color:#333;line-height:13px;cursor:default}.chosen-container-multi .chosen-choices li.search-choice .search-choice-close{position:absolute;top:4px;right:3px;display:block;width:12px;height:12px;background:url(../images/chosen-sprite.png) -42px 1px no-repeat;font-size:1px}.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover{background-position:-42px -10px}.chosen-container-multi .chosen-choices li.search-choice-disabled{padding-right:5px;border:1px solid #ccc;background-color:#e4e4e4;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),color-stop(100%,#eee));background-image:-webkit-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-moz-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-o-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);color:#666}.chosen-container-multi .chosen-choices li.search-choice-focus{background:#d4d4d4}.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close{background-position:-42px -10px}.chosen-container-multi .chosen-results{margin:0;padding:0}.chosen-container-multi .chosen-drop .result-selected{display:list-item;color:#ccc;cursor:default}.chosen-container-active .chosen-single{border:1px solid #5897fb;box-shadow:0 0 5px rgba(0,0,0,.3)}.chosen-container-active.chosen-with-drop .chosen-single{border:1px solid #aaa;-moz-border-radius-bottomright:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(20%,#eee),color-stop(80%,#fff));background-image:-webkit-linear-gradient(#eee 20%,#fff 80%);background-image:-moz-linear-gradient(#eee 20%,#fff 80%);background-image:-o-linear-gradient(#eee 20%,#fff 80%);background-image:linear-gradient(#eee 20%,#fff 80%);box-shadow:0 1px 0 #fff inset}.chosen-container-active.chosen-with-drop .chosen-single div{border-left:none;background:0 0}.chosen-container-active.chosen-with-drop .chosen-single div b{background-position:-18px 2px}.chosen-container-active .chosen-choices{border:1px solid #5897fb;box-shadow:0 0 5px rgba(0,0,0,.3)}.chosen-container-active .chosen-choices li.search-field input[type=text]{color:#111!important}.chosen-disabled{opacity:.5!important;cursor:default}.chosen-disabled .chosen-choices .search-choice .search-choice-close,.chosen-disabled .chosen-single{cursor:default}.chosen-rtl{text-align:right}.chosen-rtl .chosen-single{overflow:visible;padding:0 8px 0 0}.chosen-rtl .chosen-single span{margin-right:0;margin-left:26px;direction:rtl}.chosen-rtl .chosen-single-with-deselect span{margin-left:38px}.chosen-rtl .chosen-single div{right:auto;left:3px}.chosen-rtl .chosen-single abbr{right:auto;left:26px}.chosen-rtl .chosen-choices li{float:right}.chosen-rtl .chosen-choices li.search-field input[type=text]{direction:rtl}.chosen-rtl .chosen-choices li.search-choice{margin:3px 5px 3px 0;padding:3px 5px 3px 19px}.chosen-rtl .chosen-choices li.search-choice .search-choice-close{right:auto;left:4px}.chosen-rtl .chosen-drop,.chosen-rtl.chosen-container-single-nosearch .chosen-search{left:9999px}.chosen-rtl.chosen-container-single .chosen-results{margin:0 0 4px 4px;padding:0 4px 0 0}.chosen-rtl .chosen-results li.group-option{padding-right:15px;padding-left:0}.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div{border-right:none}.chosen-rtl .chosen-search input[type=text]{padding:4px 5px 4px 20px;background:url(../images/chosen-sprite.png) -30px -20px no-repeat #fff;background:url(../images/chosen-sprite.png) -30px -20px no-repeat,linear-gradient(#eee 1%,#fff 15%);direction:rtl}.chosen-rtl.chosen-container-single .chosen-single div b{background-position:6px 2px}.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b{background-position:-12px 2px}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-resolution:144dpi){.chosen-container .chosen-results-scroll-down span,.chosen-container .chosen-results-scroll-up span,.chosen-container-multi .chosen-choices .search-choice .search-choice-close,.chosen-container-single .chosen-search input[type=text],.chosen-container-single .chosen-single abbr,.chosen-container-single .chosen-single div b,.chosen-rtl .chosen-search input[type=text]{background-image:url(../images/chosen-sprite@2x.png)!important;background-size:52px 37px!important;background-repeat:no-repeat!important}}.chosen-container-single .chosen-single abbr{top:8px}.wc-backbone-modal{position:fixed;top:0;left:0;width:100%;height:100%;z-index:160000}.wc-backbone-modal *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.wc-backbone-modal .wc-backbone-modal-content{position:absolute;top:50%;left:50%;width:500px;background:#fff;margin:-150px 0 0 -250px}.wc-backbone-modal-backdrop{position:fixed;top:0;left:0;right:0;bottom:0;min-height:360px;background:#000;opacity:.7;z-index:159900}.wc-backbone-modal-main{padding-bottom:50px}.wc-backbone-modal-main article,.wc-backbone-modal-main header{display:block;position:relative;padding:4px 16px}.wc-backbone-modal-main header{border-bottom:1px solid #ddd}.wc-backbone-modal-main article{padding:10px 16px}.wc-backbone-modal-main article .pagination{padding:10px 0 0;text-align:center}.wc-backbone-modal-main h1{font-size:22px;font-weight:200;line-height:45px;margin:0}.wc-backbone-modal-main footer{position:absolute;left:0;right:0;bottom:0;height:30px;z-index:100;padding:10px 0;border:0 solid #dfdfdf;border-width:1px 0 0;box-shadow:0 -4px 4px -4px rgba(0,0,0,.1)}.wc-backbone-modal-main footer .inner{padding:0 10px;text-align:right} \ No newline at end of file diff --git a/assets/css/admin.less b/assets/css/admin.less index 9a4ad6511b8..29338f6dc66 100644 --- a/assets/css/admin.less +++ b/assets/css/admin.less @@ -1,6 +1,6 @@ /* =Mixins -------------------------------------------------------------- */ -@import "mixins"; +@import "mixins.less"; /* =Custom Font @@ -82,13 +82,14 @@ position: relative; border-left-color: #cc99c2 !important; overflow: hidden; - a.button-primary { + a.button-primary, + button.button-primary { background: #cc99c2; border-color: #b366a4; -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 rgba(0,0,0,.15); box-shadow: inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 rgba(0,0,0,.15); color: #fff; - text-decoration: none; + text-decoration:none !important; &:hover { background: #bb77ae; border-color: #aa559a; @@ -104,6 +105,8 @@ opacity: 0.5; } .twitter-share-button { + margin-top: -3px; + margin-left: 3px; vertical-align: middle; } } @@ -111,70 +114,6 @@ margin: 10px; } -#wc_get_started { position: relative; margin: 1em 0 2em; padding: 15px 15px 15px 90px; border: 1px solid #d9d9d9; background: #f5f5f5 url(../images/gear.png) no-repeat 15px 15px; border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; box-shadow: inset 1px 1px 0 #fff, inset -1px -1px 0 #fff; -moz-box-shadow: inset 1px 1px 0 #fff, inset -1px -1px 0 #fff; -webkit-box-shadow: inset 1px 1px 0 #fff, inset -1px -1px 0 #fff; } -#wc_get_started span { display: block; text-shadow: 1px 1px 0 #fff; font-size: 14px; line-height: 22px; color: #595959; } -#wc_get_started span.main { margin-top: 2px; font-weight: bold; font-size: 16px; } -#wc_get_started .main-button { position: absolute; right: 20px; top: 27px; } -#wc_get_started p { margin: 1em 0 .5em; } - -#wc_get_started.mijireh { background: #5bc0de url(../images/mijireh-logo.png) no-repeat 15px 18px; border: 1px solid #339bb9; padding: 15px 15px 15px 152px; box-shadow: inset 1px 1px 0 rgba( 255, 255, 255, 0.5 ), inset -1px -1px 0 rgba( 255, 255, 255, 0.5 ); -moz-box-shadow: inset 1px 1px 0 rgba( 255, 255, 255, 0.5 ), inset -1px -1px 0 rgba( 255, 255, 255, 0.5 ); -webkit-box-shadow: inset 1px 1px 0 rgba( 255, 255, 255, 0.5 ), inset -1px -1px 0 rgba( 255, 255, 255, 0.5 ); } -#wc_get_started.mijireh span { color: #fff; text-shadow: 0 1px 0 #4a94ac; } -#wc_get_started.mijireh span a { color: #fff; } -#wc_get_started.mijireh a.button { border-color: #fff; box-shadow: inset 1px 1px 0 rgba( 255, 255, 255, 0.1 ), inset -1px -1px 0 rgba( 255, 255, 255, 0.1 ), 0 1px 3px #206d8b; -moz-box-shadow: inset 1px 1px 0 rgba( 255, 255, 255, 0.1 ), inset -1px -1px 0 rgba( 255, 255, 255, 0.1 ), 0 1px 3px #206d8b; -webkit-box-shadow: inset 1px 1px 0 rgba( 255, 255, 255, 0.1 ), inset -1px -1px 0 rgba( 255, 255, 255, 0.1 ), 0 1px 3px #206d8b; } -#wc_get_started.mijireh a.button-primary { background: #2b7e9f; border-color: #266e8b; } - - -#icon-woocommerce, .woocommerce_icon, .icon32-posts-product, .icon32-posts-shop_order, .icon32-posts-shop_coupon, .icon32-posts-product_variation { - background-image: url(../images/icons/woocommerce-icons.png) !important; - background-position: -11px -5px; - background-size: auto !important; -} -.icon32-posts-product { - background-position: -69px -5px !important; -} -.icon32-posts-shop_order { - background-position: -127px -5px !important; -} -.icon32-attributes { - background-position: -185px -5px !important; -} -.icon32-woocommerce-settings { - background-position: -359px -5px !important; -} -.icon32-posts-shop_coupon { - background-position: -475px -5px !important; -} -.icon32-posts-product_variation { - background-position: -533px -5px !important; -} -.icon32-woocommerce-reports { - background-position: -591px -5px !important; -} -.icon32-woocommerce-status { - background-position: -417px -5px !important; -} -.icon32-woocommerce-delivery { - background-position: -649px -5px !important; -} -.icon32-woocommerce-compose { - background-position: -708px -5px !important; -} -.icon32-woocommerce-telephone { - background-position: -766px -5px !important; -} -.icon32-woocommerce-users { - background-position: -824px -5px !important; -} -.icon32-woocommerce-nav { - background-position: -882px -5px !important; -} -.icon32-woocommerce-email { - background-position: -940px -5px !important; -} -.icon32-woocommerce-importer { - background-position: -11px -50px !important; -} - .wrap.woocommerce div.updated, .wrap.woocommerce div.error { margin-top: 10px; } @@ -188,6 +127,15 @@ mark.amount { background: #ffebe8; } } +.simplify-commerce-banner { + overflow: hidden; + img { + float: right; + padding: 15px 0; + margin-left: 1em; + width: 200px; + } +} /* Status page */ table.wc_status_table { @@ -245,6 +193,16 @@ table.wc_status_table { outline: 0; } } +#log-viewer-select { + padding: 10px 0 8px; + line-height: 180%; +} +#log-viewer { + textarea { + width: 100%; + resize: vertical; + } +} /* Bulk/Quick edit */ .inline-edit-product.quick-edit-row { @@ -572,7 +530,7 @@ ul.wc_coupon_list_block { ._shipping_last_name_field, ._shipping_address_2_field, ._shipping_postcode_field, ._shipping_state_field { float: right; } - ._billing_company_field, ._shipping_company_field { + ._billing_company_field, ._shipping_company_field, ._transaction_id_field { clear: both; width: 100%; } @@ -653,258 +611,109 @@ ul.wc_coupon_list_block { padding: 0; background: #fefefe; } - .bulk_actions { - float:left; - padding-left: 12px; - vertical-align: top; + .wc-order-data-row { + border-bottom:1px solid #DFDFDF; + background: #fff; + padding: 12px; + background:#f8f8f8; + .clearfix; + line-height: 2em; + text-align: right; + p { + margin: 0; + line-height: 2em; + } } - .add_items { - float:right; - padding-right: 12px; + .wc-order-bulk-actions { + background: #fefefe; vertical-align: top; - .add_item_id, .chosen-container { - margin-right: 9px; + border-top: 0; + select { + vertical-align: top; + } + p.bulk-actions { + float: left; + } + } + .wc-order-add-item { + background: #fff; + vertical-align: top; + border-top: none; + .add_item_id, .chosen-container { vertical-align: top; - float:left; .search-field input { min-width: 100px; } } - button { - margin: 2px 0 0 0; + .chosen-container { + width: 400px !important; + text-align: left; + } + .cancel-action, + .save-action, + .calculate-action { + float: left; + margin-right: 2px; + } + } + .wc-used-coupons { + float: left; + width: 50%; + } + .wc-order-totals { + float: right; + width: 50%; + margin: 0; + padding: 0; + .amount { + font-weight: bold; + } + .label { + vertical-align: top; + } + .total { + font-size: 1em !important; + width: 10em; + margin: 0 0 0 .5em; + -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */ + -moz-box-sizing: border-box; /* Firefox, other Gecko */ + box-sizing: border-box; /* Opera/IE 8+ */ + + input[type="text"] { + width: 96%; + float: right; + } + } + .refunded-total { + color: @red; + } + } + .refund-actions { + margin-top: 5px; + padding-top: 12px; + border-top: 1px solid #DFDFDF; + + .button { + float: right; + margin-left: 4px; + } + .cancel-action { + float: left; + margin-left: 0; } } .add_meta { - margin-left:0 !important; + margin-left: 0 !important; } h3 small { color: #999; } - a.edit_order_item { - opacity: 0.4; - &:hover, &:focus { - opacity: 1; - } + .amount { + white-space: nowrap; } -} -#woocommerce-order-downloads { - .buttons { - float:left; - padding: 0; - margin: 0; - vertical-align: top; - .add_item_id, .chosen-container { - width: 400px !important; - margin-right: 9px; - vertical-align: top; - float:left; - } - button { - margin: 2px 0 0 0; - } - } - h3 small { - color: #999; - } -} -#poststuff #woocommerce-order-actions { - .inside { - margin:0; - padding:0; - ul.order_actions { - li { - padding:6px 10px; - -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */ - -moz-box-sizing: border-box; /* Firefox, other Gecko */ - box-sizing: border-box; /* Opera/IE 8+ */ - &:last-child { - border-bottom:0; - } - } - } - } -} -#poststuff #woocommerce-order-totals { - .inside { - margin:0; - padding:0; - } - h4 { - margin:0 !important; - a.add_tax_row, a.add_total_row { - display: inline-block; - padding-bottom: 10px; - } - .inline_total { - float: right; - color: #999; - } - } - .totals_group { - border-top: 1px solid white; - border-bottom: 1px solid #DDD; - padding: 10px 12px 0 12px; - &:first-child { - border-top:0; - } - input, select { - width: 100%; - vertical-align: top; - margin: 0; - font-weight: normal; - line-height: 1em; - } - select { - height: 30px !important; - } - input { - padding: 4px 6px; - } - ::-webkit-input-placeholder { line-height: 1.4em; } - ::-moz-placeholder { line-height: 1.4em; } /* firefox 19+ */ - :-ms-input-placeholder { line-height: 1.4em; } /* ie */ - input:-moz-placeholder { line-height: 1.4em; } - #_order_total, #_order_discount { - margin: 6px 0 10px; - } - } - .buttons { - border-top: 1px solid white; - padding: 1em 10px 1em 10px; - margin: 0; - text-align: right; - .calc_line_taxes { - float: left; - } - } - ul.totals { - margin: 6px 0 0; - float: left; - li { - float: left; - clear: both; - width: 100%; - font-size: 1.2em; - font-weight: bold; - line-height: 1.2em; - margin: 0; - padding: 0 0 10px; - label { - font-weight: normal; - display: block; - font-size: 0.8em; - color: #333; - } - } - li.left { - float: left; - width: 49%; - clear: left; - input { - width: 100%; - } - } - li.right { - float: right; - width: 49%; - clear: none; - input { - width: 100%; - } - } - li.wide { - float: left; - width: 100%; - clear: left; - input { - width: 100%; - } - } - .calculated { - border-color: #ae8ca2; - border-style: dotted; - } - } - .total_rows { - margin: 6px 0 0; - .total_row:first-child { - border-top:1px solid #dfdfdf; - } - .total_row:last-child { - margin-bottom:9px; - } - } - .total_row { - margin:0 -12px; - border-bottom:1px solid #DFDFDF; - background: #fff; - padding: 12px 12px 3px 12px; - background:#f8f8f8; - position: relative; - p { - margin:0 0 9px; - } - label { - color:#999; - display: block; - margin: 0 0 3px; - } - p.first { - float: left; - width: 49%; - clear: left; - input, select { - width: 100%; - } - } - p.last { - float: right; - width: 49%; - clear: none; - input, select { - width: 100%; - } - } - p.wide { - clear: both; - input, select { - width: 100%; - } - } - a.delete_tax_row, a.delete_total_row { - .ir; - display:none; - position: absolute; - top:-.5em; - right:-.5em; - font-size:1.4em; - &:before { - .icon( "\e013" ); - color:white; - background-color: #000; - -webkit-border-radius:100%; - border-radius:100%; - box-shadow:0 1px 2px rgba(0,0,0,0.2); - } - &:hover:before { - background-color: @red; - } - } - &:hover, &:focus { - a.delete_tax_row, a.delete_total_row { - display: block; - } - } - } -} -#poststuff #woocommerce-order-notes { - .inside { - margin:0; - padding:0; - ul.order_notes { - li { - padding:0 10px; - } + .add-items { + .description { + margin-right: 10px; } } } @@ -915,10 +724,16 @@ ul.wc_coupon_list_block { width: 100%; background: #fff; thead th { - background: #f5f5f5; + background: #f8f8f8; padding: 8px; font-size: 11px; text-align: left; + &:last-child { + padding-right: 12px; + } + &:first-child { + padding-left: 12px; + } } tbody th, td { padding: 8px; @@ -937,9 +752,24 @@ ul.wc_coupon_list_block { padding: 4px; color: #555; } + &:last-child { + padding-right: 12px; + } + &:first-child { + padding-left: 12px; + } + } + tbody tr:last-child td { + border-bottom:1px solid #dfdfdf; + } + tbody tr:first-child td { + border-top: 8px solid #f8f8f8; + } + tbody#order_line_items tr:first-child td { + border-top: none; } td.check-column { - padding: 8px; + padding: 8px 8px 8px 12px; width: 1%; } .item { @@ -969,6 +799,29 @@ ul.wc_coupon_list_block { vertical-align:middle; font-size: 1em; } + .split-input { + display: block; + background: #fff; + border: 1px solid #ddd; + box-shadow: inset 0 1px 2px rgba(0,0,0,.07); + margin: 1px; + width: 70px; + input { + width: 100%; + -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */ + -moz-box-sizing: border-box; /* Firefox, other Gecko */ + box-sizing: border-box; /* Opera/IE 8+ */ + border: 0; + box-shadow: none; + margin: 0; + color: #555; + background: transparent; + } + input:last-child { + color: #bbb; + border-top: 1px dashed #ddd; + } + } } .quantity { text-align: center; @@ -1044,9 +897,171 @@ ul.wc_coupon_list_block { height: 21px; } } + + .refund_by { + border-bottom: 1px dotted #999; + } + tr.fee { - .thumb { - background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAARklEQVQYGWP8//8/AzGACV3Rnj17/oMwujiGQnQFMD7RChlBbsRmFcwkEO3i4sJImonIumGmg0xBFifaRKIVgj2DbAUuNgCfThpracSKqwAAAABJRU5ErkJggg==) no-repeat center; + .thumb div { + .ir(); + font-size: 14px; + margin: 6px; + &:before { + .icon( "\e007" ); + color: #bbbbbb; + } + } + } + tr.refund { + .thumb div { + .ir(); + font-size: 14px; + margin: 6px; + &:before { + .icon( "\e014" ); + color: #bbbbbb; + } + } + } + tr.shipping { + .thumb div { + .ir(); + font-size: 14px; + margin: 6px; + &:before { + .icon( "\e01a" ); + color: #bbbbbb; + } + } + } + th.line_tax { + white-space: nowrap; + } + th.line_tax, td.line_tax { + padding: 8px 16px 8px 8px; + .delete-order-tax { + .ir; + font-size: 12px; + visibility: hidden; + float: right; + margin: 2px -16px 0 0; + &:before { + .icon( "\e013" ); + color:white; + background-color: #000; + -webkit-border-radius:100%; + border-radius:100%; + border: 1px solid #000; + box-shadow:0 1px 2px rgba(0,0,0,0.2); + } + &:hover:before { + border-color: @red; + background-color: @red; + } + } + &:hover { + .delete-order-tax { + visibility: visible; + } + } + } + small.refunded { + display: block; + color: @red; + white-space: nowrap; + } + } +} + +.wc-order-items-editable { + .edit-order-item { + .ir; + display: inline-block; + margin: 0 .5em 0 0; + &:before { + .icon; + content: "\e603"; + color: #999; + } + &:hover { + &:before { + color: #555; + } + } + } + .delete-order-item, + .delete_refund { + .ir; + display: inline-block; + margin: 0; + &:before { + .icon; + content: "\e013"; + color: #999; + } + &:hover { + &:before { + color: @red; + } + } + } + .wc-order-edit-line-item-actions { + width: 2.5em; + text-align: right; + } + .wc-order-totals .wc-order-edit-line-item-actions { + width: 1.5em; + } + .wc-order-totals .edit-order-item { + margin: 0; + } +} + +#woocommerce-order-downloads { + .buttons { + float:left; + padding: 0; + margin: 0; + vertical-align: top; + .add_item_id, .chosen-container { + width: 400px !important; + margin-right: 9px; + vertical-align: top; + float:left; + } + button { + margin: 2px 0 0 0; + } + } + h3 small { + color: #999; + } +} +#poststuff #woocommerce-order-actions { + .inside { + margin:0; + padding:0; + ul.order_actions { + li { + padding:6px 10px; + -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */ + -moz-box-sizing: border-box; /* Firefox, other Gecko */ + box-sizing: border-box; /* Opera/IE 8+ */ + &:last-child { + border-bottom:0; + } + } + } + } +} +#poststuff #woocommerce-order-notes { + .inside { + margin:0; + padding:0; + ul.order_notes { + li { + padding:0 10px; } } } @@ -1318,11 +1333,11 @@ table.wp-list-table { width: 11% !important; } .column-featured, .column-product_type { - width: 46px; + width: 48px; text-align: left !important; } .column-customer_message, .column-order_notes { - width: 46px; + width: 48px; text-align: center; img { margin: 0 auto; @@ -1332,6 +1347,11 @@ table.wp-list-table { .manage-column.column-featured img, .manage-column.column-product_type img { padding-left: 2px; } + .column-price { + .woocommerce-price-suffix { + display: none; + } + } img { margin: 1px 2px; } @@ -1454,162 +1474,6 @@ table.wp-list-table { } } -/* Dashboard */ -ul.woocommerce_stats { - overflow: hidden; - zoom: 1; - li { - width: 22%; - padding: 0 1.4%; - float: left; - font-size: 0.8em; - border-left: 1px solid #fff; - border-right: 1px solid #ececec; - text-align: center; - } - li:first-child { - border-left: 0; - } - li:last-child { - border-right: 0; - } - strong { - font-family: Georgia,"Times New Roman","Bitstream Charter",Times,serif; - font-size: 4em; - line-height: 1.2em; - font-weight: normal; - text-align: center; - display:block; - } -} - -#woocommerce_dashboard_right_now p.sub, -#woocommerce_dashboard_right_now .table, -#woocommerce_dashboard_right_now .versions { - margin: -12px; -} -#woocommerce_dashboard_right_now .inside { - font-size: 12px; - margin-bottom: 0; - padding-top: 20px; -} -#woocommerce_dashboard_right_now p.sub { - padding: 5px 0 15px; - color: #8f8f8f; - font-size: 14px; - position: absolute; - top: -17px; - left: 15px; -} -#woocommerce_dashboard_right_now .table { - margin: 0; - padding: 0; - position: relative; -} -#woocommerce_dashboard_right_now .table_shop_content { - float: left; - border-top: #ececec 1px solid; - width: 45%; -} -#woocommerce_dashboard_right_now .table_orders { - float: right; - border-top: #ececec 1px solid; - width: 45%; -} -#woocommerce_dashboard_right_now table td { - padding: 3px 0; - white-space: nowrap; -} -#woocommerce_dashboard_right_now table tr.first td { - border-top: none; -} -#woocommerce_dashboard_right_now td.b { - padding-right: 6px; - text-align: right; - font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif; - font-size: 14px; - width: 1%; -} -#woocommerce_dashboard_right_now td.b a { - font-size: 18px; -} -#woocommerce_dashboard_right_now td.b a:hover { - color: @red; -} -#woocommerce_dashboard_right_now .t { - font-size: 12px; - padding-right: 12px; - padding-top: 6px; - color: #777; -} -#woocommerce_dashboard_right_now .t a { - white-space: nowrap; -} -#woocommerce_dashboard_right_now .on-hold a { - color: @red; -} -#woocommerce_dashboard_right_now .pending a { - color: #e66f00; -} -#woocommerce_dashboard_right_now .completed a { - color: @green; -} -#woocommerce_dashboard_right_now .versions { - padding: 6px 10px 12px; - clear: both; -} -#woocommerce_dashboard_right_now .versions .b { - font-weight: bold; -} -#woocommerce_dashboard_right_now a.button { - float: right; - clear: right; - position: relative; - top: -5px; -} - -ul.recent-orders, ul.stock_list { - li { - overflow: hidden; - zoom: 1; - border-bottom: #ECECEC 1px solid; - padding: 0 0 8px; - margin: 0 0 8px; - .order-status { - float: right; - } - small { - color: #999; - } - .order-cost, .order-customer { - margin-left: 8px; - } - .completed { - color: @green; - } - .on-hold { - color: @red; - } - .processing { - color: @blue; - } - .pending { - color: #E66F00; - } - .refunded, .cancelled { - color: #999; - } - } - &.stock_list { - small { - float: right; - } - a { - text-decoration: none; - } - } -} - /* Settings */ mark.notice { background: #fff; @@ -1959,7 +1823,6 @@ img.help_tip { padding: 0; li.image, li.add, li.wc-metabox-sortable-placeholder { width: 80px; - height: 80px; float: left; cursor: move; border: 1px solid #d5d5d5; @@ -2104,7 +1967,7 @@ img.help_tip { float: right; width: 100%; - p, .wc-metaboxes, p.toolbar, fieldset.form-field { + .wc-metaboxes, p.toolbar { padding-left: 12px !important; padding-right: 20px !important; } @@ -2236,6 +2099,30 @@ img.help_tip { } } +/** + * Shipping + */ +.woocommerce_page_wc-settings { + .shippingrows { + th.check-column { + padding-top: 20px; + } + + tfoot { + th { + padding-left: 10px; + } + } + + .add.button:before { + .iconbefore( "\e007" ); + } + } + h4.wc-settings-sub-title { + font-size: 1.2em; + } +} + @media only screen and (max-width: 900px) { #woocommerce-product-data, #woocommerce-coupon-data { @@ -2345,19 +2232,26 @@ img.help_tip { padding: 0; } td.sort { - padding: 0 0 0 1.5em; + padding: 0 8px; cursor: move; - position: relative; background: #f9f9f9; + text-align: center; + vertical-align: middle; &:before { - content: ""; - position: absolute; - top: 1em; - left: 0.5em; - width: 1em; - height: 0.125em; - border-top: 0.375em double #999; - border-bottom: 0.125em solid #999; + content: "\e032"; + font-family: 'WooCommerce'; + text-align: center; + line-height: 1; + color: #999; + display: block; + width: 17px; + float: left; + height: 100%; + } + &:hover { + &:before { + color: #333; + } } } } @@ -2378,10 +2272,14 @@ img.help_tip { p { margin: 9px 0 9px; } + p.form-field, fieldset.form-field { + padding: 5px 20px 5px 162px !important; /** Padding for aligning labels left - 12px + 150 label width **/ + } label, legend { float: left; width: 150px; padding: 0; + margin: 0 0 0 -150px; .req { font-weight: bold; @@ -2405,7 +2303,9 @@ img.help_tip { height: 3.5em; line-height: 1.5em; } - input[type="text"] { + input[type="text"], + input[type="email"], + input[type="number"] { width: 50%; float: left; } @@ -2416,6 +2316,9 @@ img.help_tip { select { float: left; } + input[type="text"].short, + input[type="email"].short, + input[type="number"].short, .short { width: 25%; } @@ -2457,6 +2360,11 @@ img.help_tip { } } } + ul.wc-radios { + label { + margin-left: 0; + } + } } .dimensions_field { .wrap { @@ -2492,6 +2400,10 @@ img.help_tip { &:last-child { border-bottom:0; } + .link_all_variations, .add_variation { + float: right; + margin-left: 5px; + } } p.toolbar { overflow: hidden; @@ -2837,6 +2749,7 @@ img.tips { -moz-box-shadow: 1px 1px 3px rgba(0,0,0,0.10); box-shadow: 1px 1px 3px rgba(0,0,0,0.10); text-align: center; + max-width: 150px; code { background: #888; padding: 1px; @@ -3107,14 +3020,14 @@ img.ui-datepicker-trigger { vertical-align: middle; margin-top: -1px; cursor: po li { border-right: 5px solid #aaa; color: #aaa; - padding: 1em 1.5em; + padding: 1em; display: block; margin: 0; -webkit-transition:all ease .5s; box-shadow: inset 0 -1px 0 0 #dfdfdf; strong { - font-size: 2.618em; + font-size: 1.618em; line-height: 1.2em; color: #464646; font-weight: normal; @@ -3126,7 +3039,7 @@ img.ui-datepicker-trigger { vertical-align: middle; margin-top: -1px; cursor: po inset 0 -1px 0 0 #dfdfdf, inset 300px 0 0 fade(#9c5d90,10%); border-right: 5px solid #9c5d90 !important; - padding-left:2em; + padding-left:1.5em; color: #9c5d90; } } @@ -3206,6 +3119,31 @@ img.ui-datepicker-trigger { vertical-align: middle; margin-top: -1px; cursor: po width: 49.5%; float: right; } + .column-wc_actions { + a.edit, + a.view { + .ir; + padding:0 !important; + height: 2em !important; + width:2em; + &:after { + .icon; + line-height: 1.85; + } + } + + a.edit { + &:after { + content: "\e01c"; + } + } + + a.view { + &:after { + content: "\e010"; + } + } + } } .woocommerce-wide-reports-wrap { @@ -3304,8 +3242,8 @@ table.bar_chart { ----------------------------------*/ .chosen-container-single .chosen-single { height: 26px; - line-height: 26px; - margin-top:1px; + line-height: 26px; + margin-top:1px; } .chosen-container-single .chosen-single div b { background: url('../images/chosen-sprite.png') no-repeat 0 4px !important; @@ -3353,7 +3291,7 @@ table.bar_chart { .woocommerce_options_panel .description { display: block; clear: both; - margin-left: 150px; + margin-left: 0; } } @@ -3406,23 +3344,98 @@ table.bar_chart { } #woocommerce-product-data .checkbox { - width: 25px; + width: 25px; } } -// HiDPI optimisation -@media -(-webkit-min-device-pixel-ratio: 2), -(min-resolution: 192dpi) { - #icon-woocommerce, .woocommerce_icon, .icon32-posts-product, .icon32-posts-shop_order, .icon32-posts-shop_coupon, .icon32-posts-product_variation { - background-image: url(../images/icons/woocommerce-icons-x2.png) !important; - background-size: 986px 91px !important; - } -} @import 'chosen.less'; .chosen-container-single .chosen-single { - abbr { - top: 8px; - } + abbr { + top: 8px; + } +} + +/* Backbone modal dialog +----------------------------------*/ +.wc-backbone-modal { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: 160000; + + * { + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box; + } + + .wc-backbone-modal-content { + position: absolute; + top: 50%; + left: 50%; + width: 500px; + background: #fff; + margin: -150px 0 0 -250px; + } +} + +.wc-backbone-modal-backdrop { + position: fixed; + top: 0; + left: 0; + right: 0; + bottom: 0; + min-height: 360px; + background: #000; + opacity: .7; + z-index: 159900; +} + +.wc-backbone-modal-main { + padding-bottom: 50px; + + header, + article { + display: block; + position: relative; + padding: 4px 16px; + } + header { + border-bottom: 1px solid #ddd; + } + article { + padding: 10px 16px; + + .pagination { + padding: 10px 0 0; + text-align: center; + } + } + h1 { + font-size: 22px; + font-weight: 200; + line-height: 45px; + margin: 0; + } + + footer { + position: absolute; + left: 0; + right: 0; + bottom: 0; + height: 30px; + z-index: 100; + padding: 10px 0px; + border: 0 solid #dfdfdf; + border-width: 1px 0 0 0; + box-shadow: 0 -4px 4px -4px rgba(0,0,0,0.1); + } + + footer .inner { + padding: 0 10px; + text-align: right; + } } diff --git a/assets/css/chosen.css b/assets/css/chosen.css index 90f50afa959..0211f361afd 100644 --- a/assets/css/chosen.css +++ b/assets/css/chosen.css @@ -1 +1 @@ -.woocommerce-checkout .form-row .chosen-container{width:100%!important}.woocommerce-checkout .form-row .chosen-container-single .chosen-single{height:28px;line-height:29px}.woocommerce-checkout .form-row .chosen-container-single .chosen-single div b{background:url(../images/chosen-sprite.png) no-repeat 0 3px!important}.woocommerce-checkout .form-row .chosen-container-active .chosen-single-with-drop div b{background-position:-18px 4px!important}.woocommerce-checkout .form-row .chosen-container-single .chosen-search input{line-height:13px;width:100%!important;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.woocommerce-checkout .form-row .chosen-container .chosen-drop{width:100%!important;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-resolution:144dpi){.woocommerce-checkout .form-row .chosen-container-single .chosen-single div b{background-image:url(../images/chosen-sprite@2x.png)!important;background-position:0 5px!important;background-repeat:no-repeat!important;background-size:52px 37px!important}.woocommerce-checkout .form-row .chosen-container-active .chosen-single-with-drop div b{background-position:-18px 5px!important}}.chosen-container{position:relative;display:inline-block;vertical-align:middle;font-size:13px;zoom:1;*display:inline;-webkit-user-select:none;-moz-user-select:none;user-select:none}.chosen-container .chosen-drop{position:absolute;top:100%;left:-9999px;z-index:1010;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;border:1px solid #aaa;border-top:0;background:#fff;box-shadow:0 4px 5px rgba(0,0,0,.15)}.chosen-container.chosen-with-drop .chosen-drop{left:0}.chosen-container a{cursor:pointer}.chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0 0 0 8px;height:26px;border:1px solid #aaa;border-radius:5px;background-color:#fff;background:-webkit-gradient(linear,50% 0,50% 100%,color-stop(20%,#fff),color-stop(50%,#f6f6f6),color-stop(52%,#eee),color-stop(100%,#f4f4f4));background:-webkit-linear-gradient(top,#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);background:-moz-linear-gradient(top,#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);background:-o-linear-gradient(top,#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);background:linear-gradient(top,#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);background-clip:padding-box;box-shadow:0 0 3px #fff inset,0 1px 1px rgba(0,0,0,.1);color:#444;text-decoration:none;white-space:nowrap;line-height:26px}.chosen-container-single .chosen-default{color:#999}.chosen-container-single .chosen-single span{display:block;overflow:hidden;margin-right:26px;text-overflow:ellipsis;white-space:nowrap}.chosen-container-single .chosen-single-with-deselect span{margin-right:38px}.chosen-container-single .chosen-single abbr{position:absolute;top:6px;right:26px;display:block;width:12px;height:12px;background:url(../images/chosen-sprite.png) -42px 1px no-repeat;font-size:1px}.chosen-container-single .chosen-single abbr:hover{background-position:-42px -10px}.chosen-container-single.chosen-disabled .chosen-single abbr:hover{background-position:-42px -10px}.chosen-container-single .chosen-single div{position:absolute;top:0;right:0;display:block;width:18px;height:100%}.chosen-container-single .chosen-single div b{display:block;width:100%;height:100%;background:url(../images/chosen-sprite.png) no-repeat 0 2px}.chosen-container-single .chosen-search{position:relative;z-index:1010;margin:0;padding:3px 4px;white-space:nowrap}.chosen-container-single .chosen-search input[type=text]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:1px 0;padding:4px 20px 4px 5px;width:100%;height:auto;outline:0;border:1px solid #aaa;background:#fff url(../images/chosen-sprite.png) no-repeat 100% -20px;background:url(../images/chosen-sprite.png) no-repeat 100% -20px,-webkit-gradient(linear,50% 0,50% 100%,color-stop(1%,#eee),color-stop(15%,#fff));background:url(../images/chosen-sprite.png) no-repeat 100% -20px,-webkit-linear-gradient(#eee 1%,#fff 15%);background:url(../images/chosen-sprite.png) no-repeat 100% -20px,-moz-linear-gradient(#eee 1%,#fff 15%);background:url(../images/chosen-sprite.png) no-repeat 100% -20px,-o-linear-gradient(#eee 1%,#fff 15%);background:url(../images/chosen-sprite.png) no-repeat 100% -20px,linear-gradient(#eee 1%,#fff 15%);font-size:1em;font-family:sans-serif;line-height:normal;border-radius:0}.chosen-container-single .chosen-drop{margin-top:-1px;border-radius:0 0 4px 4px;background-clip:padding-box}.chosen-container-single.chosen-container-single-nosearch .chosen-search{position:absolute;left:-9999px}.chosen-container .chosen-results{position:relative;overflow-x:hidden;overflow-y:auto;margin:0 4px 4px 0;padding:0 0 0 4px;max-height:240px;-webkit-overflow-scrolling:touch}.chosen-container .chosen-results li{display:none;margin:0;padding:5px 6px;list-style:none;line-height:15px}.chosen-container .chosen-results li.active-result{display:list-item;cursor:pointer}.chosen-container .chosen-results li.disabled-result{display:list-item;color:#ccc;cursor:default}.chosen-container .chosen-results li.highlighted{background-color:#3875d7;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(20%,#3875d7),color-stop(90%,#2a62bc));background-image:-webkit-linear-gradient(#3875d7 20%,#2a62bc 90%);background-image:-moz-linear-gradient(#3875d7 20%,#2a62bc 90%);background-image:-o-linear-gradient(#3875d7 20%,#2a62bc 90%);background-image:linear-gradient(#3875d7 20%,#2a62bc 90%);color:#fff}.chosen-container .chosen-results li.no-results{display:list-item;background:#f4f4f4}.chosen-container .chosen-results li.group-result{display:list-item;font-weight:700;cursor:default}.chosen-container .chosen-results li.group-option{padding-left:15px}.chosen-container .chosen-results li em{font-style:normal;text-decoration:underline}.chosen-container-multi .chosen-choices{position:relative;overflow:hidden;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:0;padding:0;width:100%;height:auto!important;height:1%;border:1px solid #aaa;background-color:#fff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(1%,#eee),color-stop(15%,#fff));background-image:-webkit-linear-gradient(#eee 1%,#fff 15%);background-image:-moz-linear-gradient(#eee 1%,#fff 15%);background-image:-o-linear-gradient(#eee 1%,#fff 15%);background-image:linear-gradient(#eee 1%,#fff 15%);cursor:text}.chosen-container-multi .chosen-choices li{float:left;list-style:none}.chosen-container-multi .chosen-choices li.search-field{margin:0;padding:0;white-space:nowrap}.chosen-container-multi .chosen-choices li.search-field input[type=text]{margin:1px 0;padding:5px;height:15px;outline:0;border:0!important;background:transparent!important;box-shadow:none;color:#666;font-size:100%;font-family:sans-serif;line-height:normal;border-radius:0}.chosen-container-multi .chosen-choices li.search-field .default{color:#999}.chosen-container-multi .chosen-choices li.search-choice{position:relative;margin:3px 0 3px 5px;padding:3px 20px 3px 5px;border:1px solid #aaa;border-radius:3px;background-color:#e4e4e4;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),color-stop(100%,#eee));background-image:-webkit-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-moz-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-o-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-clip:padding-box;box-shadow:0 0 2px #fff inset,0 1px 0 rgba(0,0,0,.05);color:#333;line-height:13px;cursor:default}.chosen-container-multi .chosen-choices li.search-choice .search-choice-close{position:absolute;top:4px;right:3px;display:block;width:12px;height:12px;background:url(../images/chosen-sprite.png) -42px 1px no-repeat;font-size:1px}.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover{background-position:-42px -10px}.chosen-container-multi .chosen-choices li.search-choice-disabled{padding-right:5px;border:1px solid #ccc;background-color:#e4e4e4;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),color-stop(100%,#eee));background-image:-webkit-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-moz-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-o-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);color:#666}.chosen-container-multi .chosen-choices li.search-choice-focus{background:#d4d4d4}.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close{background-position:-42px -10px}.chosen-container-multi .chosen-results{margin:0;padding:0}.chosen-container-multi .chosen-drop .result-selected{display:list-item;color:#ccc;cursor:default}.chosen-container-active .chosen-single{border:1px solid #5897fb;box-shadow:0 0 5px rgba(0,0,0,.3)}.chosen-container-active.chosen-with-drop .chosen-single{border:1px solid #aaa;-moz-border-radius-bottomright:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(20%,#eee),color-stop(80%,#fff));background-image:-webkit-linear-gradient(#eee 20%,#fff 80%);background-image:-moz-linear-gradient(#eee 20%,#fff 80%);background-image:-o-linear-gradient(#eee 20%,#fff 80%);background-image:linear-gradient(#eee 20%,#fff 80%);box-shadow:0 1px 0 #fff inset}.chosen-container-active.chosen-with-drop .chosen-single div{border-left:0;background:transparent}.chosen-container-active.chosen-with-drop .chosen-single div b{background-position:-18px 2px}.chosen-container-active .chosen-choices{border:1px solid #5897fb;box-shadow:0 0 5px rgba(0,0,0,.3)}.chosen-container-active .chosen-choices li.search-field input[type=text]{color:#111!important}.chosen-disabled{opacity:.5!important;cursor:default}.chosen-disabled .chosen-single{cursor:default}.chosen-disabled .chosen-choices .search-choice .search-choice-close{cursor:default}.chosen-rtl{text-align:right}.chosen-rtl .chosen-single{overflow:visible;padding:0 8px 0 0}.chosen-rtl .chosen-single span{margin-right:0;margin-left:26px;direction:rtl}.chosen-rtl .chosen-single-with-deselect span{margin-left:38px}.chosen-rtl .chosen-single div{right:auto;left:3px}.chosen-rtl .chosen-single abbr{right:auto;left:26px}.chosen-rtl .chosen-choices li{float:right}.chosen-rtl .chosen-choices li.search-field input[type=text]{direction:rtl}.chosen-rtl .chosen-choices li.search-choice{margin:3px 5px 3px 0;padding:3px 5px 3px 19px}.chosen-rtl .chosen-choices li.search-choice .search-choice-close{right:auto;left:4px}.chosen-rtl.chosen-container-single-nosearch .chosen-search,.chosen-rtl .chosen-drop{left:9999px}.chosen-rtl.chosen-container-single .chosen-results{margin:0 0 4px 4px;padding:0 4px 0 0}.chosen-rtl .chosen-results li.group-option{padding-right:15px;padding-left:0}.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div{border-right:0}.chosen-rtl .chosen-search input[type=text]{padding:4px 5px 4px 20px;background:#fff url(../images/chosen-sprite.png) no-repeat -30px -20px;background:url(../images/chosen-sprite.png) no-repeat -30px -20px,-webkit-gradient(linear,50% 0,50% 100%,color-stop(1%,#eee),color-stop(15%,#fff));background:url(../images/chosen-sprite.png) no-repeat -30px -20px,-webkit-linear-gradient(#eee 1%,#fff 15%);background:url(../images/chosen-sprite.png) no-repeat -30px -20px,-moz-linear-gradient(#eee 1%,#fff 15%);background:url(../images/chosen-sprite.png) no-repeat -30px -20px,-o-linear-gradient(#eee 1%,#fff 15%);background:url(../images/chosen-sprite.png) no-repeat -30px -20px,linear-gradient(#eee 1%,#fff 15%);direction:rtl}.chosen-rtl.chosen-container-single .chosen-single div b{background-position:6px 2px}.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b{background-position:-12px 2px}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-resolution:144dpi){.chosen-rtl .chosen-search input[type=text],.chosen-container-single .chosen-single abbr,.chosen-container-single .chosen-single div b,.chosen-container-single .chosen-search input[type=text],.chosen-container-multi .chosen-choices .search-choice .search-choice-close,.chosen-container .chosen-results-scroll-down span,.chosen-container .chosen-results-scroll-up span{background-image:url(../images/chosen-sprite@2x.png)!important;background-size:52px 37px!important;background-repeat:no-repeat!important}} \ No newline at end of file +.woocommerce-checkout .form-row .chosen-container{width:100%!important}.woocommerce-checkout .form-row .chosen-container-single .chosen-single{height:28px;line-height:29px}.woocommerce-checkout .form-row .chosen-container-single .chosen-single div b{background:url(../images/chosen-sprite.png) 0 3px no-repeat!important}.woocommerce-checkout .form-row .chosen-container-active .chosen-single-with-drop div b{background-position:-18px 4px!important}.woocommerce-checkout .form-row .chosen-container-single .chosen-search input{line-height:13px;width:100%!important;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.woocommerce-checkout .form-row .chosen-container .chosen-drop{width:100%!important;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-resolution:144dpi){.woocommerce-checkout .form-row .chosen-container-single .chosen-single div b{background-image:url(../images/chosen-sprite@2x.png)!important;background-position:0 5px!important;background-repeat:no-repeat!important;background-size:52px 37px!important}.woocommerce-checkout .form-row .chosen-container-active .chosen-single-with-drop div b{background-position:-18px 5px!important}}.chosen-container{position:relative;display:inline-block;vertical-align:middle;font-size:13px;zoom:1;-webkit-user-select:none;-moz-user-select:none;user-select:none}.chosen-container .chosen-drop{position:absolute;top:100%;left:-9999px;z-index:1010;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;border:1px solid #aaa;border-top:0;background:#fff;box-shadow:0 4px 5px rgba(0,0,0,.15)}.chosen-container.chosen-with-drop .chosen-drop{left:0}.chosen-container a{cursor:pointer}.chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0 0 0 8px;height:26px;border:1px solid #aaa;border-radius:5px;background:-webkit-gradient(linear,50% 0,50% 100%,color-stop(20%,#fff),color-stop(50%,#f6f6f6),color-stop(52%,#eee),color-stop(100%,#f4f4f4));background:-webkit-linear-gradient(top,#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);background:-moz-linear-gradient(top,#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);background:-o-linear-gradient(top,#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);background:linear-gradient(top,#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);background-clip:padding-box;box-shadow:0 0 3px #fff inset,0 1px 1px rgba(0,0,0,.1);color:#444;text-decoration:none;white-space:nowrap;line-height:26px}.chosen-container-single .chosen-default{color:#999}.chosen-container-single .chosen-single span{display:block;overflow:hidden;margin-right:26px;text-overflow:ellipsis;white-space:nowrap}.chosen-container-single .chosen-single-with-deselect span{margin-right:38px}.chosen-container-single .chosen-single abbr{position:absolute;top:6px;right:26px;display:block;width:12px;height:12px;background:url(../images/chosen-sprite.png) -42px 1px no-repeat;font-size:1px}.chosen-container-single .chosen-single abbr:hover,.chosen-container-single.chosen-disabled .chosen-single abbr:hover{background-position:-42px -10px}.chosen-container-single .chosen-single div{position:absolute;top:0;right:0;display:block;width:18px;height:100%}.chosen-container-single .chosen-single div b{display:block;width:100%;height:100%;background:url(../images/chosen-sprite.png) 0 2px no-repeat}.chosen-container-single .chosen-search{position:relative;z-index:1010;margin:0;padding:3px 4px;white-space:nowrap}.chosen-container-single .chosen-search input[type=text]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:1px 0;padding:4px 20px 4px 5px;width:100%;height:auto;outline:0;border:1px solid #aaa;background:url(../images/chosen-sprite.png) 100% -20px no-repeat #fff;background:url(../images/chosen-sprite.png) 100% -20px no-repeat,linear-gradient(#eee 1%,#fff 15%);font-size:1em;font-family:sans-serif;line-height:normal;border-radius:0}.chosen-container-single .chosen-drop{margin-top:-1px;border-radius:0 0 4px 4px;background-clip:padding-box}.chosen-container-single.chosen-container-single-nosearch .chosen-search{position:absolute;left:-9999px}.chosen-container .chosen-results{position:relative;overflow-x:hidden;overflow-y:auto;margin:0 4px 4px 0;padding:0 0 0 4px;max-height:240px;-webkit-overflow-scrolling:touch}.chosen-container .chosen-results li{display:none;margin:0;padding:5px 6px;list-style:none;line-height:15px}.chosen-container .chosen-results li.active-result{display:list-item;cursor:pointer}.chosen-container .chosen-results li.disabled-result{display:list-item;color:#ccc;cursor:default}.chosen-container .chosen-results li.highlighted{background-color:#3875d7;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(20%,#3875d7),color-stop(90%,#2a62bc));background-image:-webkit-linear-gradient(#3875d7 20%,#2a62bc 90%);background-image:-moz-linear-gradient(#3875d7 20%,#2a62bc 90%);background-image:-o-linear-gradient(#3875d7 20%,#2a62bc 90%);background-image:linear-gradient(#3875d7 20%,#2a62bc 90%);color:#fff}.chosen-container .chosen-results li.no-results{display:list-item;background:#f4f4f4}.chosen-container .chosen-results li.group-result{display:list-item;font-weight:700;cursor:default}.chosen-container .chosen-results li.group-option{padding-left:15px}.chosen-container .chosen-results li em{font-style:normal;text-decoration:underline}.chosen-container-multi .chosen-choices{position:relative;overflow:hidden;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:0;padding:0;width:100%;height:auto!important;height:1%;border:1px solid #aaa;background-color:#fff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(1%,#eee),color-stop(15%,#fff));background-image:-webkit-linear-gradient(#eee 1%,#fff 15%);background-image:-moz-linear-gradient(#eee 1%,#fff 15%);background-image:-o-linear-gradient(#eee 1%,#fff 15%);background-image:linear-gradient(#eee 1%,#fff 15%);cursor:text}.chosen-container-multi .chosen-choices li{float:left;list-style:none}.chosen-container-multi .chosen-choices li.search-field{margin:0;padding:0;white-space:nowrap}.chosen-container-multi .chosen-choices li.search-field input[type=text]{margin:1px 0;padding:5px;height:15px;outline:0;border:0!important;background:0 0!important;box-shadow:none;color:#666;font-size:100%;font-family:sans-serif;line-height:normal;border-radius:0}.chosen-container-multi .chosen-choices li.search-field .default{color:#999}.chosen-container-multi .chosen-choices li.search-choice{position:relative;margin:3px 0 3px 5px;padding:3px 20px 3px 5px;border:1px solid #aaa;border-radius:3px;background-color:#e4e4e4;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),color-stop(100%,#eee));background-image:-webkit-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-moz-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-o-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-clip:padding-box;box-shadow:0 0 2px #fff inset,0 1px 0 rgba(0,0,0,.05);color:#333;line-height:13px;cursor:default}.chosen-container-multi .chosen-choices li.search-choice .search-choice-close{position:absolute;top:4px;right:3px;display:block;width:12px;height:12px;background:url(../images/chosen-sprite.png) -42px 1px no-repeat;font-size:1px}.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover{background-position:-42px -10px}.chosen-container-multi .chosen-choices li.search-choice-disabled{padding-right:5px;border:1px solid #ccc;background-color:#e4e4e4;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),color-stop(100%,#eee));background-image:-webkit-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-moz-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-o-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);color:#666}.chosen-container-multi .chosen-choices li.search-choice-focus{background:#d4d4d4}.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close{background-position:-42px -10px}.chosen-container-multi .chosen-results{margin:0;padding:0}.chosen-container-multi .chosen-drop .result-selected{display:list-item;color:#ccc;cursor:default}.chosen-container-active .chosen-single{border:1px solid #5897fb;box-shadow:0 0 5px rgba(0,0,0,.3)}.chosen-container-active.chosen-with-drop .chosen-single{border:1px solid #aaa;-moz-border-radius-bottomright:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(20%,#eee),color-stop(80%,#fff));background-image:-webkit-linear-gradient(#eee 20%,#fff 80%);background-image:-moz-linear-gradient(#eee 20%,#fff 80%);background-image:-o-linear-gradient(#eee 20%,#fff 80%);background-image:linear-gradient(#eee 20%,#fff 80%);box-shadow:0 1px 0 #fff inset}.chosen-container-active.chosen-with-drop .chosen-single div{border-left:none;background:0 0}.chosen-container-active.chosen-with-drop .chosen-single div b{background-position:-18px 2px}.chosen-container-active .chosen-choices{border:1px solid #5897fb;box-shadow:0 0 5px rgba(0,0,0,.3)}.chosen-container-active .chosen-choices li.search-field input[type=text]{color:#111!important}.chosen-disabled{opacity:.5!important;cursor:default}.chosen-disabled .chosen-choices .search-choice .search-choice-close,.chosen-disabled .chosen-single{cursor:default}.chosen-rtl{text-align:right}.chosen-rtl .chosen-single{overflow:visible;padding:0 8px 0 0}.chosen-rtl .chosen-single span{margin-right:0;margin-left:26px;direction:rtl}.chosen-rtl .chosen-single-with-deselect span{margin-left:38px}.chosen-rtl .chosen-single div{right:auto;left:3px}.chosen-rtl .chosen-single abbr{right:auto;left:26px}.chosen-rtl .chosen-choices li{float:right}.chosen-rtl .chosen-choices li.search-field input[type=text]{direction:rtl}.chosen-rtl .chosen-choices li.search-choice{margin:3px 5px 3px 0;padding:3px 5px 3px 19px}.chosen-rtl .chosen-choices li.search-choice .search-choice-close{right:auto;left:4px}.chosen-rtl .chosen-drop,.chosen-rtl.chosen-container-single-nosearch .chosen-search{left:9999px}.chosen-rtl.chosen-container-single .chosen-results{margin:0 0 4px 4px;padding:0 4px 0 0}.chosen-rtl .chosen-results li.group-option{padding-right:15px;padding-left:0}.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div{border-right:none}.chosen-rtl .chosen-search input[type=text]{padding:4px 5px 4px 20px;background:url(../images/chosen-sprite.png) -30px -20px no-repeat #fff;background:url(../images/chosen-sprite.png) -30px -20px no-repeat,linear-gradient(#eee 1%,#fff 15%);direction:rtl}.chosen-rtl.chosen-container-single .chosen-single div b{background-position:6px 2px}.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b{background-position:-12px 2px}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-resolution:144dpi){.chosen-container .chosen-results-scroll-down span,.chosen-container .chosen-results-scroll-up span,.chosen-container-multi .chosen-choices .search-choice .search-choice-close,.chosen-container-single .chosen-search input[type=text],.chosen-container-single .chosen-single abbr,.chosen-container-single .chosen-single div b,.chosen-rtl .chosen-search input[type=text]{background-image:url(../images/chosen-sprite@2x.png)!important;background-size:52px 37px!important;background-repeat:no-repeat!important}} \ No newline at end of file diff --git a/assets/css/dashboard.css b/assets/css/dashboard.css index 5942774bbca..1147b63fd7d 100644 --- a/assets/css/dashboard.css +++ b/assets/css/dashboard.css @@ -1 +1 @@ -.clear{clear:both}.nobr{white-space:nowrap}@font-face{font-family:WooCommerce;src:url(../fonts/WooCommerce.eot);src:url(../fonts/WooCommerce.eot?#iefix) format('embedded-opentype'),url(../fonts/WooCommerce.woff) format('woff'),url(../fonts/WooCommerce.ttf) format('truetype'),url(../fonts/WooCommerce.svg#WooCommerce) format('svg');font-weight:400;font-style:normal}#woocommerce_dashboard_status .inside{padding:0;margin:0}#woocommerce_dashboard_status .wc_status_list{overflow:hidden;margin:0}#woocommerce_dashboard_status .wc_status_list li{width:50%;float:left;padding:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:0;border-top:1px solid #ececec;color:#aaa}#woocommerce_dashboard_status .wc_status_list li a{display:block;color:#aaa;padding:9px 12px;-webkit-transition:all ease .5s;position:relative;font-size:12px}#woocommerce_dashboard_status .wc_status_list li a .wc_sparkline{width:4em;height:2em;display:block;float:right;position:absolute;right:0;top:50%;margin-right:12px;margin-top:-1.25em}#woocommerce_dashboard_status .wc_status_list li a strong{font-size:18px;line-height:1.2em;font-weight:400;display:block;color:#21759b}#woocommerce_dashboard_status .wc_status_list li a:hover{color:#2ea2cc}#woocommerce_dashboard_status .wc_status_list li a:hover:before,#woocommerce_dashboard_status .wc_status_list li a:hover strong{color:#2ea2cc!important}#woocommerce_dashboard_status .wc_status_list li a:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e001";font-size:2em;position:relative;width:auto;line-height:1.2em;color:#464646;float:left;margin-right:12px;margin-bottom:12px}#woocommerce_dashboard_status .wc_status_list li:first-child{border-top:0}#woocommerce_dashboard_status .wc_status_list li.sales-this-month{width:100%}#woocommerce_dashboard_status .wc_status_list li.sales-this-month a:before{content:"\e01f"}#woocommerce_dashboard_status .wc_status_list li.best-seller-this-month{width:100%}#woocommerce_dashboard_status .wc_status_list li.best-seller-this-month a:before{content:"\e006"}#woocommerce_dashboard_status .wc_status_list li.processing-orders{border-right:1px solid #ececec}#woocommerce_dashboard_status .wc_status_list li.processing-orders a:before{content:"\e011";color:#7ad03a}#woocommerce_dashboard_status .wc_status_list li.on-hold-orders a:before{content:"\e033";color:#999}#woocommerce_dashboard_status .wc_status_list li.low-in-stock{border-right:1px solid #ececec}#woocommerce_dashboard_status .wc_status_list li.low-in-stock a:before{content:"\e02c";color:#ffba00}#woocommerce_dashboard_status .wc_status_list li.out-of-stock a:before{content:"\e02c";color:#a00}#woocommerce_dashboard_recent_reviews li{line-height:1.5em;margin-bottom:12px}#woocommerce_dashboard_recent_reviews h4.meta{line-height:1.4;margin:-.2em 0 0 0;font-weight:400;color:#999}#woocommerce_dashboard_recent_reviews blockquote{padding:0;margin:0}#woocommerce_dashboard_recent_reviews .avatar{float:left;margin:0 10px 5px 0}#woocommerce_dashboard_recent_reviews .star-rating{float:right;overflow:hidden;position:relative;height:1.5em;line-height:1.5;margin-left:.5em;width:5.4em;font-family:WooCommerce!important}#woocommerce_dashboard_recent_reviews .star-rating:before{content:"\e021\e021\e021\e021\e021";color:#b3b3b3;float:left;top:0;left:0;position:absolute;letter-spacing:.1em;letter-spacing:0\9}#woocommerce_dashboard_recent_reviews .star-rating span{overflow:hidden;float:left;top:0;left:0;position:absolute;padding-top:1.5em}#woocommerce_dashboard_recent_reviews .star-rating span:before{content:"\e020\e020\e020\e020\e020";top:0;position:absolute;left:0;letter-spacing:.1em;letter-spacing:0\9;color:#9c5d90}#dash-right-now li.product-count a:before{font-family:WooCommerce;content:"\e01d"} \ No newline at end of file +.clear{clear:both}.nobr{white-space:nowrap}@font-face{font-family:WooCommerce;src:url(../fonts/WooCommerce.eot);src:url(../fonts/WooCommerce.eot?#iefix) format('embedded-opentype'),url(../fonts/WooCommerce.woff) format('woff'),url(../fonts/WooCommerce.ttf) format('truetype'),url(../fonts/WooCommerce.svg#WooCommerce) format('svg');font-weight:400;font-style:normal}ul.woocommerce_stats{overflow:hidden;zoom:1}ul.woocommerce_stats li{width:25%;padding:0 1em;float:left;font-size:.8em;border-left:1px solid #fff;border-right:1px solid #ececec;text-align:center;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}ul.woocommerce_stats li:first-child{border-left:0}ul.woocommerce_stats li:last-child{border-right:0}ul.woocommerce_stats strong{font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif;font-size:4em;line-height:1.2em;font-weight:400;text-align:center;display:block}#woocommerce_dashboard_status .inside{padding:0;margin:0}#woocommerce_dashboard_status .wc_status_list{overflow:hidden;margin:0}#woocommerce_dashboard_status .wc_status_list li{width:50%;float:left;padding:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:0;border-top:1px solid #ececec;color:#aaa}#woocommerce_dashboard_status .wc_status_list li a{display:block;color:#aaa;padding:9px 12px;-webkit-transition:all ease .5s;position:relative;font-size:12px}#woocommerce_dashboard_status .wc_status_list li a .wc_sparkline{width:4em;height:2em;display:block;float:right;position:absolute;right:0;top:50%;margin-right:12px;margin-top:-1.25em}#woocommerce_dashboard_status .wc_status_list li a strong{font-size:18px;line-height:1.2em;font-weight:400;display:block;color:#21759b}#woocommerce_dashboard_status .wc_status_list li a:hover{color:#2ea2cc}#woocommerce_dashboard_status .wc_status_list li a:hover strong,#woocommerce_dashboard_status .wc_status_list li a:hover:before{color:#2ea2cc!important}#woocommerce_dashboard_status .wc_status_list li a:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;margin:0 12px 12px 0;text-indent:0;top:0;left:0;height:100%;text-align:center;content:"\e001";font-size:2em;position:relative;width:auto;line-height:1.2em;color:#464646;float:left}#woocommerce_dashboard_status .wc_status_list li:first-child{border-top:0}#woocommerce_dashboard_status .wc_status_list li.sales-this-month{width:100%}#woocommerce_dashboard_status .wc_status_list li.sales-this-month a:before{content:"\e01f"}#woocommerce_dashboard_status .wc_status_list li.best-seller-this-month{width:100%}#woocommerce_dashboard_status .wc_status_list li.best-seller-this-month a:before{content:"\e006"}#woocommerce_dashboard_status .wc_status_list li.processing-orders{border-right:1px solid #ececec}#woocommerce_dashboard_status .wc_status_list li.processing-orders a:before{content:"\e011";color:#7ad03a}#woocommerce_dashboard_status .wc_status_list li.on-hold-orders a:before{content:"\e033";color:#999}#woocommerce_dashboard_status .wc_status_list li.low-in-stock{border-right:1px solid #ececec}#woocommerce_dashboard_status .wc_status_list li.low-in-stock a:before{content:"\e02c";color:#ffba00}#woocommerce_dashboard_status .wc_status_list li.out-of-stock a:before{content:"\e02c";color:#a00}#woocommerce_dashboard_recent_reviews li{line-height:1.5em;margin-bottom:12px}#woocommerce_dashboard_recent_reviews h4.meta{line-height:1.4;margin:-.2em 0 0;font-weight:400;color:#999}#woocommerce_dashboard_recent_reviews blockquote{padding:0;margin:0}#woocommerce_dashboard_recent_reviews .avatar{float:left;margin:0 10px 5px 0}#woocommerce_dashboard_recent_reviews .star-rating{float:right;overflow:hidden;position:relative;height:1.5em;line-height:1.5;margin-left:.5em;width:5.4em;font-family:WooCommerce!important}#woocommerce_dashboard_recent_reviews .star-rating:before{content:"\e021\e021\e021\e021\e021";color:#b3b3b3;float:left;top:0;left:0;position:absolute;letter-spacing:.1em}#woocommerce_dashboard_recent_reviews .star-rating span{overflow:hidden;float:left;top:0;left:0;position:absolute;padding-top:1.5em}#woocommerce_dashboard_recent_reviews .star-rating span:before{content:"\e020\e020\e020\e020\e020";top:0;position:absolute;left:0;letter-spacing:.1em;color:#9c5d90}#dash-right-now li.product-count a:before{font-family:WooCommerce;content:"\e01d"} \ No newline at end of file diff --git a/assets/css/dashboard.less b/assets/css/dashboard.less index 055313f1910..0486fcada78 100644 --- a/assets/css/dashboard.less +++ b/assets/css/dashboard.less @@ -11,6 +11,38 @@ font-style: normal; } +ul.woocommerce_stats { + overflow: hidden; + zoom: 1; + li { + width: 25%; + padding: 0 1em; + text-align: center; + float: left; + font-size: 0.8em; + border-left: 1px solid #fff; + border-right: 1px solid #ececec; + text-align: center; + -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */ + -moz-box-sizing: border-box; /* Firefox, other Gecko */ + box-sizing: border-box; /* Opera/IE 8+ */ + } + li:first-child { + border-left: 0; + } + li:last-child { + border-right: 0; + } + strong { + font-family: Georgia,"Times New Roman","Bitstream Charter",Times,serif; + font-size: 4em; + line-height: 1.2em; + font-weight: normal; + text-align: center; + display:block; + } +} + #woocommerce_dashboard_status { .inside { padding: 0; diff --git a/assets/css/menu.css b/assets/css/menu.css index 17e83fc95f9..a6092f5f68c 100644 --- a/assets/css/menu.css +++ b/assets/css/menu.css @@ -1 +1 @@ -.clear{clear:both}.nobr{white-space:nowrap}@font-face{font-family:WooCommerce;src:url(../fonts/WooCommerce.eot);src:url(../fonts/WooCommerce.eot?#iefix) format('embedded-opentype'),url(../fonts/WooCommerce.woff) format('woff'),url(../fonts/WooCommerce.ttf) format('truetype'),url(../fonts/WooCommerce.svg#WooCommerce) format('svg');font-weight:400;font-style:normal}#adminmenu #toplevel_page_woocommerce .menu-icon-generic div.wp-menu-image:before{font-family:WooCommerce!important;content:"\e03d";font-size:1.3em!important}#adminmenu #menu-posts-product .menu-icon-post div.wp-menu-image:before{font-family:WooCommerce!important;content:"\e01d";font-size:1.3em!important}#adminmenu #menu-posts-product div.wp-menu-image,#adminmenu #menu-posts-shop_order div.wp-menu-image,#adminmenu #menu-posts-shop_coupon div.wp-menu-image,#adminmenu #toplevel_page_woocommerce div.wp-menu-image{background-image:url(../images/icons/menu_icons.png);background-size:auto}#adminmenu #menu-posts-product div.wp-menu-image{background-position:-32px -32px}#adminmenu #menu-posts-product.wp-menu-open div.wp-menu-image,#adminmenu #menu-posts-product:hover div.wp-menu-image{background-position:-32px 0}#adminmenu #menu-posts-product img{display:none}#adminmenu #menu-posts-shop_order div.wp-menu-image{background-position:-64px -32px}#adminmenu #menu-posts-shop_order.wp-menu-open div.wp-menu-image,#adminmenu #menu-posts-shop_order:hover div.wp-menu-image{background-position:-64px 0}#adminmenu #menu-posts-shop_order img{display:none}#adminmenu #menu-posts-shop_coupon div.wp-menu-image{background-position:-96px -32px}#adminmenu #menu-posts-shop_coupon.wp-menu-open div.wp-menu-image,#adminmenu #menu-posts-shop_coupon:hover div.wp-menu-image{background-position:-96px 0}#adminmenu #menu-posts-shop_coupon img{display:none}#adminmenu #toplevel_page_woocommerce div.wp-menu-image{background-position:0 -32px}#adminmenu #toplevel_page_woocommerce.wp-menu-open div.wp-menu-image,#adminmenu #toplevel_page_woocommerce:hover div.wp-menu-image{background-position:0 0}#adminmenu #toplevel_page_woocommerce img{display:none}span.mce_woocommerce_shortcodes_button{background-image:url(../images/icons/wc_icon.png)!important;background-repeat:no-repeat!important;background-position:center!important}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){#adminmenu #menu-posts-product div.wp-menu-image,#adminmenu #menu-posts-shop_order div.wp-menu-image,#adminmenu #menu-posts-shop_coupon div.wp-menu-image,#adminmenu #toplevel_page_woocommerce div.wp-menu-image{background-image:url(../images/icons/menu_icons-x2.png);background-size:200px 64px}span.mce_woocommerce_shortcodes_button{background-image:url(../images/icons/wc_icon@2x.png)!important;background-size:18px 18px!important}}span.mce_woocommerce_shortcodes_button{background-image:none!important;display:block;text-indent:-9999px;position:relative;height:1em;width:1em}span.mce_woocommerce_shortcodes_button:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e01d";font-size:.9em;line-height:1.2} \ No newline at end of file +.clear{clear:both}.nobr{white-space:nowrap}@font-face{font-family:WooCommerce;src:url(../fonts/WooCommerce.eot);src:url(../fonts/WooCommerce.eot?#iefix) format('embedded-opentype'),url(../fonts/WooCommerce.woff) format('woff'),url(../fonts/WooCommerce.ttf) format('truetype'),url(../fonts/WooCommerce.svg#WooCommerce) format('svg');font-weight:400;font-style:normal}#adminmenu #toplevel_page_woocommerce .menu-icon-generic div.wp-menu-image:before{font-family:WooCommerce!important;content:"\e03d";font-size:1.3em!important}#adminmenu #menu-posts-product .menu-icon-post div.wp-menu-image:before{font-family:WooCommerce!important;content:"\e01d";font-size:1.3em!important}span.mce_woocommerce_shortcodes_button{background-image:none!important;display:block;text-indent:-9999px;position:relative;height:1em;width:1em}span.mce_woocommerce_shortcodes_button:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\e01d";font-size:.9em;line-height:1.2}.wc_plugin_upgrade_notice{font-weight:400;color:#fff;background:#d54d21;padding:1em;margin:9px 0}.wc_plugin_upgrade_notice a{color:#fff;text-decoration:underline}.wc_plugin_upgrade_notice:before{content:"\f348";display:inline-block;font:400 18px/1 dashicons;speak:none;margin:0 8px 0 -2px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;vertical-align:top} \ No newline at end of file diff --git a/assets/css/menu.less b/assets/css/menu.less index 0af0b1d2bd4..e8dfcd56640 100644 --- a/assets/css/menu.less +++ b/assets/css/menu.less @@ -1,6 +1,6 @@ /* =Mixins -------------------------------------------------------------- */ -@import "mixins"; +@import "mixins.less"; /* Icon Font */ @font-face { @@ -26,80 +26,6 @@ font-size: 1.3em !important; } -/* Menu */ -#adminmenu { - #menu-posts-product div.wp-menu-image, #menu-posts-shop_order div.wp-menu-image, #menu-posts-shop_coupon div.wp-menu-image, #toplevel_page_woocommerce div.wp-menu-image { - background-image: url(../images/icons/menu_icons.png); - background-size: auto; - } - - #menu-posts-product { - div.wp-menu-image { - background-position: -32px -32px; - } - &.wp-menu-open div.wp-menu-image, &:hover div.wp-menu-image { - background-position: -32px 0px; - } - img { - display: none; - } - } - #menu-posts-shop_order { - div.wp-menu-image { - background-position: -64px -32px; - } - &.wp-menu-open div.wp-menu-image, &:hover div.wp-menu-image { - background-position: -64px 0px; - } - img { - display: none; - } - } - #menu-posts-shop_coupon { - div.wp-menu-image { - background-position: -96px -32px; - } - &.wp-menu-open div.wp-menu-image, &:hover div.wp-menu-image { - background-position: -96px 0px; - } - img { - display: none; - } - } - #toplevel_page_woocommerce { - div.wp-menu-image { - background-position: 0px -32px; - } - &.wp-menu-open div.wp-menu-image, &:hover div.wp-menu-image { - background-position: 0px 0px; - } - img { - display: none; - } - } -} - -/* Editor button */ -span.mce_woocommerce_shortcodes_button { - background-image: url(../images/icons/wc_icon.png) !important; - background-repeat: no-repeat !important; - background-position: center !important; -} - -@media -(-webkit-min-device-pixel-ratio: 2), -(min-resolution: 192dpi) { - #adminmenu { - #menu-posts-product div.wp-menu-image, #menu-posts-shop_order div.wp-menu-image, #menu-posts-shop_coupon div.wp-menu-image, #toplevel_page_woocommerce div.wp-menu-image { - background-image: url(../images/icons/menu_icons-x2.png); - background-size: 200px 64px; - } - } - span.mce_woocommerce_shortcodes_button { - background-image: url(../images/icons/wc_icon@2x.png) !important; - background-size: 18px 18px !important; - } -} span.mce_woocommerce_shortcodes_button { background-image: none !important; .ir; @@ -108,4 +34,26 @@ span.mce_woocommerce_shortcodes_button { font-size:.9em; line-height: 1.2; } +} + +.wc_plugin_upgrade_notice { + font-weight: normal; + color: #fff; + background: #d54d21; + padding: 1em; + margin: 9px 0; + a { + color: #fff; + text-decoration: underline; + } + &:before { + content: "\f348"; + display: inline-block; + font: 400 18px/1 dashicons; + speak: none; + margin: 0 8px 0 -2px; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + vertical-align: top; + } } \ No newline at end of file diff --git a/assets/css/mixins.less b/assets/css/mixins.less index d605b876815..1f78dbeddf9 100644 --- a/assets/css/mixins.less +++ b/assets/css/mixins.less @@ -1,8 +1,8 @@ -@woocommerce: #ad74a2; -@green: #7ad03a; -@red: #a00; -@orange: #ffba00; -@blue: #2ea2cc; +@woocommerce: #ad74a2; +@green: #7ad03a; +@red: #a00; +@orange: #ffba00; +@blue: #2ea2cc; .clearfix() { *zoom:1; @@ -75,11 +75,11 @@ } .scale(@ratio:1.5){ - -webkit-transform:scale(@ratio); - -moz-transform:scale(@ratio); - -ms-transform:scale(@ratio); - -o-transform:scale(@ratio); - transform:scale(@ratio); + -webkit-transform:scale(@ratio); + -moz-transform:scale(@ratio); + -ms-transform:scale(@ratio); + -o-transform:scale(@ratio); + transform:scale(@ratio); } .borderbox () { @@ -100,7 +100,7 @@ .menu() { .clearfix; li { - display:inline; + display: inline-block; } } .mediaright() { @@ -163,4 +163,4 @@ -webkit-font-smoothing: antialiased; margin-left:7px; content: @glyph; -} \ No newline at end of file +} diff --git a/assets/css/prettyPhoto.css b/assets/css/prettyPhoto.css index 3a2784da61f..e4a618a8d9c 100644 --- a/assets/css/prettyPhoto.css +++ b/assets/css/prettyPhoto.css @@ -1 +1 @@ -.clear{clear:both}.nobr{white-space:nowrap}@font-face{font-family:WooCommerce;src:url(../fonts/WooCommerce.eot);src:url(../fonts/WooCommerce.eot?#iefix) format('embedded-opentype'),url(../fonts/WooCommerce.woff) format('woff'),url(../fonts/WooCommerce.ttf) format('truetype'),url(../fonts/WooCommerce.svg#WooCommerce) format('svg');font-weight:400;font-style:normal}div.pp_woocommerce .pp_content_container{background:#fff;-webkit-border-radius:3px;border-radius:3px;box-shadow:0 1px 30px 0 rgba(0,0,0,.25);-webkit-box-shadow:0 1px 30px 0 rgba(0,0,0,.25);padding:20px 0;*zoom:1}div.pp_woocommerce .pp_content_container:before,div.pp_woocommerce .pp_content_container:after{content:" ";display:table}div.pp_woocommerce .pp_content_container:after{clear:both}div.pp_woocommerce .pp_loaderIcon{background:url(../images/ajax-loader.gif) center no-repeat}div.pp_woocommerce div.ppt{color:#000}div.pp_woocommerce .pp_gallery ul li a{border:1px solid rgba(0,0,0,.5);background:#fff;box-shadow:0 1px 2px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 2px 0 rgba(0,0,0,.2);-webkit-border-radius:2px;border-radius:2px;display:block}div.pp_woocommerce .pp_gallery ul li a:hover{border-color:#000}div.pp_woocommerce .pp_gallery ul li.selected a{border-color:#000}div.pp_woocommerce .pp_previous:before,div.pp_woocommerce .pp_next:before{-webkit-border-radius:100%;border-radius:100%;height:1em;width:1em;text-shadow:0 1px 2px rgba(0,0,0,.5);background-color:#444;color:#fff!important;font-size:16px!important;line-height:1em;-webkit-transition:all ease-in-out .2s;-moz-transition:all ease-in-out .2s;-o-transition:all ease-in-out .2s;transition:all ease-in-out .2s;font-family:WooCommerce;content:"\e00b";text-indent:0;display:none;position:absolute;top:50%;margin-top:-10px;text-align:center}div.pp_woocommerce .pp_previous:before:hover,div.pp_woocommerce .pp_next:before:hover{background-color:#000}div.pp_woocommerce .pp_previous:hover:before,div.pp_woocommerce .pp_next:hover:before{display:block}div.pp_woocommerce .pp_previous:before{left:1em}div.pp_woocommerce .pp_next:before{right:1em;font-family:WooCommerce;content:"\e008"}div.pp_woocommerce .pp_details{margin:0;padding-top:1em}div.pp_woocommerce .pp_nav,div.pp_woocommerce .pp_description{font-size:14px}div.pp_woocommerce .pp_nav,div.pp_woocommerce .pp_nav p,div.pp_woocommerce .pp_play,div.pp_woocommerce .pp_nav .pp_pause,div.pp_woocommerce .pp_arrow_previous,div.pp_woocommerce .pp_arrow_next{margin:0}div.pp_woocommerce .pp_nav{margin-right:1em;position:relative}div.pp_woocommerce .pp_close{-webkit-border-radius:100%;border-radius:100%;height:1em;width:1em;text-shadow:0 1px 2px rgba(0,0,0,.5);background-color:#444;color:#fff!important;font-size:16px!important;line-height:1em;-webkit-transition:all ease-in-out .2s;-moz-transition:all ease-in-out .2s;-o-transition:all ease-in-out .2s;transition:all ease-in-out .2s;top:-.5em;right:-.5em;font-size:1.618em!important}div.pp_woocommerce .pp_close:hover{background-color:#000}div.pp_woocommerce .pp_close:before{font-family:WooCommerce;content:"\e013";display:block;position:absolute;top:0;left:0;right:0;bottom:0;text-align:center;text-indent:0}div.pp_woocommerce .pp_arrow_previous,div.pp_woocommerce .pp_arrow_next{-webkit-border-radius:100%;border-radius:100%;height:1em;width:1em;text-shadow:0 1px 2px rgba(0,0,0,.5);background-color:#444;color:#fff!important;font-size:16px!important;line-height:1em;-webkit-transition:all ease-in-out .2s;-moz-transition:all ease-in-out .2s;-o-transition:all ease-in-out .2s;transition:all ease-in-out .2s;position:relative;margin-top:-1px}div.pp_woocommerce .pp_arrow_previous:hover,div.pp_woocommerce .pp_arrow_next:hover{background-color:#000}div.pp_woocommerce .pp_arrow_previous:before,div.pp_woocommerce .pp_arrow_next:before{font-family:WooCommerce;content:"\e00b";display:block;position:absolute;top:0;left:0;right:0;bottom:0;text-align:center;text-indent:0}div.pp_woocommerce .pp_arrow_previous{margin-right:.5em}div.pp_woocommerce .pp_arrow_next{margin-left:.5em}div.pp_woocommerce .pp_arrow_next:before{content:"\e008"}div.pp_woocommerce a.pp_expand,div.pp_woocommerce a.pp_contract{-webkit-border-radius:100%;border-radius:100%;height:1em;width:1em;text-shadow:0 1px 2px rgba(0,0,0,.5);background-color:#444;color:#fff!important;font-size:16px!important;line-height:1em;-webkit-transition:all ease-in-out .2s;-moz-transition:all ease-in-out .2s;-o-transition:all ease-in-out .2s;transition:all ease-in-out .2s;right:auto;left:-.5em;top:-.5em;font-size:1.618em!important}div.pp_woocommerce a.pp_expand:hover,div.pp_woocommerce a.pp_contract:hover{background-color:#000}div.pp_woocommerce a.pp_expand:before,div.pp_woocommerce a.pp_contract:before{font-family:WooCommerce;content:"\e005";display:block;position:absolute;top:0;left:0;right:0;bottom:0;text-align:center;text-indent:0}div.pp_woocommerce a.pp_contract:before{content:"\e004"}div.pp_woocommerce #respond{margin:0;width:100%;background:0;border:0;padding:0}div.pp_woocommerce #respond .form-submit{margin-top:0;float:none}div.pp_woocommerce .pp_inline{padding:0!important}@media only screen and (max-width:768px){div.pp_woocommerce{left:5%!important;right:5%!important;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:90%!important}div.pp_woocommerce .pp_gallery,div.pp_woocommerce .pp_previous,div.pp_woocommerce .pp_next,div.pp_woocommerce .pp_expand,div.pp_woocommerce .pp_contract{display:none!important}div.pp_woocommerce .pp_arrow_previous,div.pp_woocommerce .pp_arrow_next,div.pp_woocommerce .pp_close{height:44px;width:44px;font-size:44px;line-height:44px}div.pp_woocommerce .pp_arrow_previous:before,div.pp_woocommerce .pp_arrow_next:before,div.pp_woocommerce .pp_close:before{font-size:44px}div.pp_woocommerce .pp_description{display:none!important}div.pp_woocommerce .pp_details{width:100%!important}.pp_content{width:100%!important}.pp_content img{width:100%!important;height:auto!important}.currentTextHolder{line-height:3}}div.pp_pic_holder a:focus{outline:0}div.pp_overlay{background:#000;display:none;left:0;position:absolute;top:0;width:100%;z-index:9999}div.pp_pic_holder{display:none;position:absolute;width:100px;z-index:10000}.pp_top{height:20px;position:relative}* html .pp_top{padding:0 20px}.pp_top .pp_left{height:20px;left:0;position:absolute;width:20px}.pp_top .pp_middle{height:20px;left:20px;position:absolute;right:20px}* html .pp_top .pp_middle{left:0;position:static}.pp_top .pp_right{height:20px;left:auto;position:absolute;right:0;top:0;width:20px}.pp_content{height:40px;min-width:40px}* html .pp_content{width:40px}.pp_fade{display:none}.pp_content_container{position:relative;text-align:left;width:100%}.pp_content_container .pp_left{padding-left:20px}.pp_content_container .pp_right{padding-right:20px}.pp_content_container .pp_details{float:left;margin:10px 0 2px}.pp_description{display:none;margin:0}.pp_social{float:left;margin:0}.pp_social .facebook{float:left;margin-left:5px;width:55px;overflow:hidden}.pp_social .twitter{float:left}.pp_nav{clear:right;float:left;margin:3px 10px 0 0}.pp_nav p{float:left;margin:2px 4px;white-space:nowrap}.pp_nav .pp_play,.pp_nav .pp_pause{float:left;margin-right:4px;text-indent:-10000px}a.pp_arrow_previous,a.pp_arrow_next{display:block;float:left;height:15px;margin-top:3px;text-indent:-100000px;width:14px}.pp_hoverContainer{position:absolute;top:0;width:100%;z-index:2000}.pp_gallery{display:none;left:50%;margin-top:-50px;position:absolute;z-index:10000}.pp_gallery div{float:left;overflow:hidden;position:relative}.pp_gallery ul{float:left;height:35px;margin:0 0 0 5px;padding:0;position:relative;white-space:nowrap}.pp_gallery ul a{border:1px #000 solid;border:1px rgba(0,0,0,.5) solid;display:block;float:left;height:33px;overflow:hidden}.pp_gallery ul a:hover,.pp_gallery li.selected a{border-color:#fff}.pp_gallery ul a img{border:0}.pp_gallery li{display:block;float:left;margin:0 5px 0 0;padding:0}.pp_gallery li.default a{display:block;height:33px;width:50px}.pp_gallery li.default a img{display:none}.pp_gallery .pp_arrow_previous,.pp_gallery .pp_arrow_next{margin-top:7px!important}a.pp_next{display:block;float:right;height:100%;text-indent:-10000px;width:49%}a.pp_previous{display:block;float:left;height:100%;text-indent:-10000px;width:49%}a.pp_expand,a.pp_contract{cursor:pointer;display:none;height:20px;position:absolute;right:30px;text-indent:-10000px;top:10px;width:20px;z-index:20000}a.pp_close{position:absolute;right:0;top:0;display:block;text-indent:-10000px}.pp_bottom{height:20px;position:relative}* html .pp_bottom{padding:0 20px}.pp_bottom .pp_left{height:20px;left:0;position:absolute;width:20px}.pp_bottom .pp_middle{height:20px;left:20px;position:absolute;right:20px}* html .pp_bottom .pp_middle{left:0;position:static}.pp_bottom .pp_right{height:20px;left:auto;position:absolute;right:0;top:0;width:20px}.pp_loaderIcon{display:block;height:24px;left:50%;margin:-12px 0 0 -12px;position:absolute;top:50%;width:24px}#pp_full_res .pp_inline{text-align:left}div.ppt{color:#fff!important;font-weight:700;display:none;font-size:17px;margin:0 0 5px 15px;z-index:9999} \ No newline at end of file +.clear{clear:both}.nobr{white-space:nowrap}@font-face{font-family:WooCommerce;src:url(../fonts/WooCommerce.eot);src:url(../fonts/WooCommerce.eot?#iefix) format('embedded-opentype'),url(../fonts/WooCommerce.woff) format('woff'),url(../fonts/WooCommerce.ttf) format('truetype'),url(../fonts/WooCommerce.svg#WooCommerce) format('svg');font-weight:400;font-style:normal}div.pp_woocommerce .pp_content_container{background:#fff;-webkit-border-radius:3px;border-radius:3px;box-shadow:0 1px 30px 0 rgba(0,0,0,.25);-webkit-box-shadow:0 1px 30px 0 rgba(0,0,0,.25);padding:20px 0}div.pp_woocommerce .pp_content_container:after,div.pp_woocommerce .pp_content_container:before{content:" ";display:table}div.pp_woocommerce .pp_content_container:after{clear:both}div.pp_woocommerce .pp_loaderIcon{background:url(../images/ajax-loader.gif) center no-repeat}div.pp_woocommerce div.ppt{color:#000}div.pp_woocommerce .pp_gallery ul li a{border:1px solid rgba(0,0,0,.5);background:#fff;box-shadow:0 1px 2px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 2px 0 rgba(0,0,0,.2);-webkit-border-radius:2px;border-radius:2px;display:block}div.pp_woocommerce .pp_gallery ul li a:hover,div.pp_woocommerce .pp_gallery ul li.selected a{border-color:#000}div.pp_woocommerce .pp_next:before,div.pp_woocommerce .pp_previous:before{-webkit-border-radius:100%;border-radius:100%;height:1em;width:1em;text-shadow:0 1px 2px rgba(0,0,0,.5);background-color:#444;color:#fff!important;font-size:16px!important;line-height:1em;-webkit-transition:all ease-in-out .2s;-moz-transition:all ease-in-out .2s;-o-transition:all ease-in-out .2s;transition:all ease-in-out .2s;font-family:WooCommerce;content:"\e00b";text-indent:0;display:none;position:absolute;top:50%;margin-top:-10px;text-align:center}div.pp_woocommerce .pp_next:before:hover,div.pp_woocommerce .pp_previous:before:hover{background-color:#000}div.pp_woocommerce .pp_next:hover:before,div.pp_woocommerce .pp_previous:hover:before{display:block}div.pp_woocommerce .pp_previous:before{left:1em}div.pp_woocommerce .pp_next:before{right:1em;font-family:WooCommerce;content:"\e008"}div.pp_woocommerce .pp_details{margin:0;padding-top:1em}div.pp_woocommerce .pp_description,div.pp_woocommerce .pp_nav{font-size:14px}div.pp_woocommerce .pp_arrow_next,div.pp_woocommerce .pp_arrow_previous,div.pp_woocommerce .pp_nav,div.pp_woocommerce .pp_nav .pp_pause,div.pp_woocommerce .pp_nav p,div.pp_woocommerce .pp_play{margin:0}div.pp_woocommerce .pp_nav{margin-right:1em;position:relative}div.pp_woocommerce .pp_close{-webkit-border-radius:100%;border-radius:100%;height:1em;width:1em;text-shadow:0 1px 2px rgba(0,0,0,.5);background-color:#444;color:#fff!important;line-height:1em;-webkit-transition:all ease-in-out .2s;-moz-transition:all ease-in-out .2s;-o-transition:all ease-in-out .2s;transition:all ease-in-out .2s;top:-.5em;right:-.5em;font-size:1.618em!important}div.pp_woocommerce .pp_close:hover{background-color:#000}div.pp_woocommerce .pp_close:before{font-family:WooCommerce;content:"\e013";display:block;position:absolute;top:0;left:0;right:0;bottom:0;text-align:center;text-indent:0}div.pp_woocommerce .pp_arrow_next,div.pp_woocommerce .pp_arrow_previous{-webkit-border-radius:100%;border-radius:100%;height:1em;width:1em;text-shadow:0 1px 2px rgba(0,0,0,.5);background-color:#444;color:#fff!important;font-size:16px!important;line-height:1em;-webkit-transition:all ease-in-out .2s;-moz-transition:all ease-in-out .2s;-o-transition:all ease-in-out .2s;transition:all ease-in-out .2s;position:relative;margin-top:-1px}div.pp_woocommerce .pp_arrow_next:hover,div.pp_woocommerce .pp_arrow_previous:hover{background-color:#000}div.pp_woocommerce .pp_arrow_next:before,div.pp_woocommerce .pp_arrow_previous:before{font-family:WooCommerce;content:"\e00b";display:block;position:absolute;top:0;left:0;right:0;bottom:0;text-align:center;text-indent:0}div.pp_woocommerce .pp_arrow_previous{margin-right:.5em}div.pp_woocommerce .pp_arrow_next{margin-left:.5em}div.pp_woocommerce .pp_arrow_next:before{content:"\e008"}div.pp_woocommerce a.pp_contract,div.pp_woocommerce a.pp_expand{-webkit-border-radius:100%;border-radius:100%;height:1em;width:1em;text-shadow:0 1px 2px rgba(0,0,0,.5);background-color:#444;color:#fff!important;line-height:1em;-webkit-transition:all ease-in-out .2s;-moz-transition:all ease-in-out .2s;-o-transition:all ease-in-out .2s;transition:all ease-in-out .2s;right:auto;left:-.5em;top:-.5em;font-size:1.618em!important}div.pp_woocommerce a.pp_contract:hover,div.pp_woocommerce a.pp_expand:hover{background-color:#000}div.pp_woocommerce a.pp_contract:before,div.pp_woocommerce a.pp_expand:before{font-family:WooCommerce;content:"\e005";display:block;position:absolute;top:0;left:0;right:0;bottom:0;text-align:center;text-indent:0}div.pp_woocommerce a.pp_contract:before{content:"\e004"}div.pp_woocommerce #respond{margin:0;width:100%;background:0 0;border:none;padding:0}div.pp_woocommerce #respond .form-submit{margin-top:0;float:none}div.pp_woocommerce .pp_inline{padding:0!important}@media only screen and (max-width:768px){div.pp_woocommerce{left:5%!important;right:5%!important;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:90%!important}div.pp_woocommerce .pp_contract,div.pp_woocommerce .pp_expand,div.pp_woocommerce .pp_gallery,div.pp_woocommerce .pp_next,div.pp_woocommerce .pp_previous{display:none!important}div.pp_woocommerce .pp_arrow_next,div.pp_woocommerce .pp_arrow_previous,div.pp_woocommerce .pp_close{height:44px;width:44px;font-size:44px;line-height:44px}div.pp_woocommerce .pp_arrow_next:before,div.pp_woocommerce .pp_arrow_previous:before,div.pp_woocommerce .pp_close:before{font-size:44px}div.pp_woocommerce .pp_description{display:none!important}.pp_content,div.pp_woocommerce .pp_details{width:100%!important}.pp_content img{width:100%!important;height:auto!important}.currentTextHolder{line-height:3}}div.pp_pic_holder a:focus{outline:0}div.pp_overlay{background:#000;display:none;left:0;position:absolute;top:0;width:100%;z-index:9999}div.pp_pic_holder{display:none;position:absolute;width:100px;z-index:10000}.pp_top{height:20px;position:relative}* html .pp_top{padding:0 20px}.pp_top .pp_left{height:20px;left:0;position:absolute;width:20px}.pp_top .pp_middle{height:20px;left:20px;position:absolute;right:20px}* html .pp_top .pp_middle{left:0;position:static}.pp_top .pp_right{height:20px;left:auto;position:absolute;right:0;top:0;width:20px}.pp_content{height:40px;min-width:40px}* html .pp_content{width:40px}.pp_fade{display:none}.pp_content_container{position:relative;text-align:left;width:100%}.pp_content_container .pp_left{padding-left:20px}.pp_content_container .pp_right{padding-right:20px}.pp_content_container .pp_details{float:left;margin:10px 0 2px}.pp_description{display:none;margin:0}.pp_social{float:left;margin:0}.pp_social .facebook{float:left;margin-left:5px;width:55px;overflow:hidden}.pp_social .twitter{float:left}.pp_nav{clear:right;float:left;margin:3px 10px 0 0}.pp_nav p{float:left;margin:2px 4px;white-space:nowrap}.pp_nav .pp_pause,.pp_nav .pp_play{float:left;margin-right:4px;text-indent:-10000px}a.pp_arrow_next,a.pp_arrow_previous{display:block;float:left;height:15px;margin-top:3px;text-indent:-100000px;width:14px}.pp_hoverContainer{position:absolute;top:0;width:100%;z-index:2000}.pp_gallery{display:none;left:50%;margin-top:-50px;position:absolute;z-index:10000}.pp_gallery div{float:left;overflow:hidden;position:relative}.pp_gallery ul{float:left;height:35px;margin:0 0 0 5px;padding:0;position:relative;white-space:nowrap}.pp_gallery ul a{border:1px solid #000;border:1px solid rgba(0,0,0,.5);display:block;float:left;height:33px;overflow:hidden}.pp_gallery li.selected a,.pp_gallery ul a:hover{border-color:#fff}.pp_gallery ul a img{border:0}.pp_gallery li{display:block;float:left;margin:0 5px 0 0;padding:0}.pp_gallery li.default a{display:block;height:33px;width:50px}.pp_gallery li.default a img{display:none}.pp_gallery .pp_arrow_next,.pp_gallery .pp_arrow_previous{margin-top:7px!important}a.pp_next{display:block;float:right;height:100%;text-indent:-10000px;width:49%}a.pp_previous{display:block;float:left;height:100%;text-indent:-10000px;width:49%}a.pp_contract,a.pp_expand{cursor:pointer;display:none;height:20px;position:absolute;right:30px;text-indent:-10000px;top:10px;width:20px;z-index:20000}a.pp_close{position:absolute;right:0;top:0;display:block;text-indent:-10000px}.pp_bottom{height:20px;position:relative}* html .pp_bottom{padding:0 20px}.pp_bottom .pp_left{height:20px;left:0;position:absolute;width:20px}.pp_bottom .pp_middle{height:20px;left:20px;position:absolute;right:20px}* html .pp_bottom .pp_middle{left:0;position:static}.pp_bottom .pp_right{height:20px;left:auto;position:absolute;right:0;top:0;width:20px}.pp_loaderIcon{display:block;height:24px;left:50%;margin:-12px 0 0 -12px;position:absolute;top:50%;width:24px}#pp_full_res .pp_inline{text-align:left}div.ppt{color:#fff!important;font-weight:700;display:none;font-size:17px;margin:0 0 5px 15px;z-index:9999} \ No newline at end of file diff --git a/assets/css/woocommerce-base.less b/assets/css/woocommerce-base.less index ea8e5c628a4..407613c06b4 100644 --- a/assets/css/woocommerce-base.less +++ b/assets/css/woocommerce-base.less @@ -1,11 +1,11 @@ -@primary: #ad74a2; /* Primary colour for buttons (alt) */ -@primarytext: desaturate(lighten(@primary,50%),18%); /* Text on primary colour bg */ +@primary: #ad74a2; /* Primary colour for buttons (alt) */ +@primarytext: desaturate(lighten(@primary,50%),18%); /* Text on primary colour bg */ -@secondary: desaturate(lighten(@primary,40%),18%); /* Secondary buttons */ -@secondarytext: desaturate(darken(@secondary,60%),18%); /* Text on secondary colour bg */ +@secondary: desaturate(lighten(@primary,40%),18%); /* Secondary buttons */ +@secondarytext: desaturate(darken(@secondary,60%),18%); /* Text on secondary colour bg */ -@highlight: spin( @primary, 150 ); /* Prices, In stock labels, sales flash */ -@highlightext: desaturate(lighten(@highlight,50%),18%); /* Text on highlight colour bg */ +@highlight: spin( @primary, 150 ); /* Prices, In stock labels, sales flash */ +@highlightext: desaturate(lighten(@highlight,50%),18%); /* Text on highlight colour bg */ -@contentbg: #fff; /* Content BG - Tabs (active state) */ -@subtext: #777; /* small, breadcrumbs etc */ \ No newline at end of file +@contentbg: #fff; /* Content BG - Tabs (active state) */ +@subtext: #777; /* small, breadcrumbs etc */ diff --git a/assets/css/woocommerce-layout.css b/assets/css/woocommerce-layout.css index 690589bbd46..5554f479656 100644 --- a/assets/css/woocommerce-layout.css +++ b/assets/css/woocommerce-layout.css @@ -1 +1 @@ -.clear{clear:both}.nobr{white-space:nowrap}.woocommerce,.woocommerce-page{}.woocommerce .col2-set,.woocommerce-page .col2-set{*zoom:1;width:100%}.woocommerce .col2-set:before,.woocommerce-page .col2-set:before,.woocommerce .col2-set:after,.woocommerce-page .col2-set:after{content:" ";display:table}.woocommerce .col2-set:after,.woocommerce-page .col2-set:after{clear:both}.woocommerce .col2-set .col-1,.woocommerce-page .col2-set .col-1{float:left;width:48%}.woocommerce .col2-set .col-2,.woocommerce-page .col2-set .col-2{float:right;width:48%}.woocommerce img,.woocommerce-page img{height:auto;max-width:100%}.woocommerce div.product,.woocommerce-page div.product,.woocommerce #content div.product,.woocommerce-page #content div.product{}.woocommerce div.product div.images,.woocommerce-page div.product div.images,.woocommerce #content div.product div.images,.woocommerce-page #content div.product div.images{float:left;width:48%}.woocommerce div.product div.thumbnails,.woocommerce-page div.product div.thumbnails,.woocommerce #content div.product div.thumbnails,.woocommerce-page #content div.product div.thumbnails{*zoom:1}.woocommerce div.product div.thumbnails:before,.woocommerce-page div.product div.thumbnails:before,.woocommerce #content div.product div.thumbnails:before,.woocommerce-page #content div.product div.thumbnails:before,.woocommerce div.product div.thumbnails:after,.woocommerce-page div.product div.thumbnails:after,.woocommerce #content div.product div.thumbnails:after,.woocommerce-page #content div.product div.thumbnails:after{content:" ";display:table}.woocommerce div.product div.thumbnails:after,.woocommerce-page div.product div.thumbnails:after,.woocommerce #content div.product div.thumbnails:after,.woocommerce-page #content div.product div.thumbnails:after{clear:both}.woocommerce div.product div.thumbnails a,.woocommerce-page div.product div.thumbnails a,.woocommerce #content div.product div.thumbnails a,.woocommerce-page #content div.product div.thumbnails a{float:left;width:30.75%;margin-right:3.8%}.woocommerce div.product div.thumbnails a.last,.woocommerce-page div.product div.thumbnails a.last,.woocommerce #content div.product div.thumbnails a.last,.woocommerce-page #content div.product div.thumbnails a.last{margin-right:0}.woocommerce div.product div.thumbnails a.first,.woocommerce-page div.product div.thumbnails a.first,.woocommerce #content div.product div.thumbnails a.first,.woocommerce-page #content div.product div.thumbnails a.first{clear:both}.woocommerce div.product div.summary,.woocommerce-page div.product div.summary,.woocommerce #content div.product div.summary,.woocommerce-page #content div.product div.summary{float:right;width:48%}.woocommerce div.product .woocommerce-tabs,.woocommerce-page div.product .woocommerce-tabs,.woocommerce #content div.product .woocommerce-tabs,.woocommerce-page #content div.product .woocommerce-tabs{clear:both}.woocommerce div.product .woocommerce-tabs ul.tabs,.woocommerce-page div.product .woocommerce-tabs ul.tabs,.woocommerce #content div.product .woocommerce-tabs ul.tabs,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs{*zoom:1}.woocommerce div.product .woocommerce-tabs ul.tabs:before,.woocommerce-page div.product .woocommerce-tabs ul.tabs:before,.woocommerce #content div.product .woocommerce-tabs ul.tabs:before,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs:before,.woocommerce div.product .woocommerce-tabs ul.tabs:after,.woocommerce-page div.product .woocommerce-tabs ul.tabs:after,.woocommerce #content div.product .woocommerce-tabs ul.tabs:after,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs:after{content:" ";display:table}.woocommerce div.product .woocommerce-tabs ul.tabs:after,.woocommerce-page div.product .woocommerce-tabs ul.tabs:after,.woocommerce #content div.product .woocommerce-tabs ul.tabs:after,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs:after{clear:both}.woocommerce div.product .woocommerce-tabs ul.tabs li,.woocommerce-page div.product .woocommerce-tabs ul.tabs li,.woocommerce #content div.product .woocommerce-tabs ul.tabs li,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li{display:inline}.woocommerce div.product #reviews .comment,.woocommerce-page div.product #reviews .comment,.woocommerce #content div.product #reviews .comment,.woocommerce-page #content div.product #reviews .comment{*zoom:1}.woocommerce div.product #reviews .comment:before,.woocommerce-page div.product #reviews .comment:before,.woocommerce #content div.product #reviews .comment:before,.woocommerce-page #content div.product #reviews .comment:before,.woocommerce div.product #reviews .comment:after,.woocommerce-page div.product #reviews .comment:after,.woocommerce #content div.product #reviews .comment:after,.woocommerce-page #content div.product #reviews .comment:after{content:" ";display:table}.woocommerce div.product #reviews .comment:after,.woocommerce-page div.product #reviews .comment:after,.woocommerce #content div.product #reviews .comment:after,.woocommerce-page #content div.product #reviews .comment:after{clear:both}.woocommerce div.product #reviews .comment img,.woocommerce-page div.product #reviews .comment img,.woocommerce #content div.product #reviews .comment img,.woocommerce-page #content div.product #reviews .comment img{float:right;height:auto}.woocommerce #quantity,.woocommerce-page #quantity,.woocommerce #content .quantity,.woocommerce-page #content .quantity{}.woocommerce #quantity input::-webkit-outer-spin-button,.woocommerce-page #quantity input::-webkit-outer-spin-button,.woocommerce #content .quantity input::-webkit-outer-spin-button,.woocommerce-page #content .quantity input::-webkit-outer-spin-button,.woocommerce #quantity input::-webkit-inner-spin-button,.woocommerce-page #quantity input::-webkit-inner-spin-button,.woocommerce #content .quantity input::-webkit-inner-spin-button,.woocommerce-page #content .quantity input::-webkit-inner-spin-button{display:none}.woocommerce .related,.woocommerce-page .related,.woocommerce .upsells.products,.woocommerce-page .upsells.products{*zoom:1}.woocommerce .related:before,.woocommerce-page .related:before,.woocommerce .upsells.products:before,.woocommerce-page .upsells.products:before,.woocommerce .related:after,.woocommerce-page .related:after,.woocommerce .upsells.products:after,.woocommerce-page .upsells.products:after{content:" ";display:table}.woocommerce .related:after,.woocommerce-page .related:after,.woocommerce .upsells.products:after,.woocommerce-page .upsells.products:after{clear:both}.woocommerce .related ul.products,.woocommerce-page .related ul.products,.woocommerce .upsells.products ul.products,.woocommerce-page .upsells.products ul.products,.woocommerce .related ul,.woocommerce-page .related ul,.woocommerce .upsells.products ul,.woocommerce-page .upsells.products ul{float:none}.woocommerce .related ul.products li.product,.woocommerce-page .related ul.products li.product,.woocommerce .upsells.products ul.products li.product,.woocommerce-page .upsells.products ul.products li.product,.woocommerce .related ul li.product,.woocommerce-page .related ul li.product,.woocommerce .upsells.products ul li.product,.woocommerce-page .upsells.products ul li.product{width:48%}.woocommerce .related ul.products li.product img,.woocommerce-page .related ul.products li.product img,.woocommerce .upsells.products ul.products li.product img,.woocommerce-page .upsells.products ul.products li.product img,.woocommerce .related ul li.product img,.woocommerce-page .related ul li.product img,.woocommerce .upsells.products ul li.product img,.woocommerce-page .upsells.products ul li.product img{width:100%;height:auto}.woocommerce ul.products,.woocommerce-page ul.products{clear:both;*zoom:1}.woocommerce ul.products:before,.woocommerce-page ul.products:before,.woocommerce ul.products:after,.woocommerce-page ul.products:after{content:" ";display:table}.woocommerce ul.products:after,.woocommerce-page ul.products:after{clear:both}.woocommerce ul.products li.product,.woocommerce-page ul.products li.product{float:left;margin:0 3.8% 2.992em 0;padding:0;position:relative;width:22.05%;margin-left:0}.woocommerce ul.products li.first,.woocommerce-page ul.products li.first{clear:both}.woocommerce ul.products li.last,.woocommerce-page ul.products li.last{margin-right:0}.woocommerce.columns-1 ul.products li.product,.woocommerce-page.columns-1 ul.products li.product{width:100%;margin-right:0}.woocommerce.columns-2 ul.products li.product,.woocommerce-page.columns-2 ul.products li.product{width:48%}.woocommerce.columns-3 ul.products li.product,.woocommerce-page.columns-3 ul.products li.product{width:30.75%}.woocommerce.columns-5 ul.products li.product,.woocommerce-page.columns-5 ul.products li.product{width:16.95%}.woocommerce.columns-6 ul.products li.product,.woocommerce-page.columns-6 ul.products li.product{width:13.5%}.woocommerce .woocommerce-result-count,.woocommerce-page .woocommerce-result-count{float:left}.woocommerce .woocommerce-ordering,.woocommerce-page .woocommerce-ordering{float:right}.woocommerce .woocommerce-pagination ul.page-numbers,.woocommerce-page .woocommerce-pagination ul.page-numbers{*zoom:1}.woocommerce .woocommerce-pagination ul.page-numbers:before,.woocommerce-page .woocommerce-pagination ul.page-numbers:before,.woocommerce .woocommerce-pagination ul.page-numbers:after,.woocommerce-page .woocommerce-pagination ul.page-numbers:after{content:" ";display:table}.woocommerce .woocommerce-pagination ul.page-numbers:after,.woocommerce-page .woocommerce-pagination ul.page-numbers:after{clear:both}.woocommerce .woocommerce-pagination ul.page-numbers li,.woocommerce-page .woocommerce-pagination ul.page-numbers li{display:inline}.woocommerce table.cart img,.woocommerce-page table.cart img,.woocommerce #content table.cart img,.woocommerce-page #content table.cart img{height:auto}.woocommerce table.cart td.actions,.woocommerce-page table.cart td.actions,.woocommerce #content table.cart td.actions,.woocommerce-page #content table.cart td.actions{text-align:right}.woocommerce table.cart td.actions .input-text,.woocommerce-page table.cart td.actions .input-text,.woocommerce #content table.cart td.actions .input-text,.woocommerce-page #content table.cart td.actions .input-text{width:80px}.woocommerce table.cart td.actions .coupon,.woocommerce-page table.cart td.actions .coupon,.woocommerce #content table.cart td.actions .coupon,.woocommerce-page #content table.cart td.actions .coupon{float:left}.woocommerce table.cart td.actions .coupon label,.woocommerce-page table.cart td.actions .coupon label,.woocommerce #content table.cart td.actions .coupon label,.woocommerce-page #content table.cart td.actions .coupon label{display:none}.woocommerce .cart-collaterals,.woocommerce-page .cart-collaterals{*zoom:1;width:100%}.woocommerce .cart-collaterals:before,.woocommerce-page .cart-collaterals:before,.woocommerce .cart-collaterals:after,.woocommerce-page .cart-collaterals:after{content:" ";display:table}.woocommerce .cart-collaterals:after,.woocommerce-page .cart-collaterals:after{clear:both}.woocommerce .cart-collaterals .related,.woocommerce-page .cart-collaterals .related{width:30.75%;float:left}.woocommerce .cart-collaterals .cross-sells,.woocommerce-page .cart-collaterals .cross-sells{width:48%;float:left}.woocommerce .cart-collaterals .cross-sells ul.products,.woocommerce-page .cart-collaterals .cross-sells ul.products{float:none}.woocommerce .cart-collaterals .cross-sells ul.products li,.woocommerce-page .cart-collaterals .cross-sells ul.products li{width:48%}.woocommerce .cart-collaterals .shipping_calculator,.woocommerce-page .cart-collaterals .shipping_calculator{width:48%;*zoom:1;clear:right;float:right}.woocommerce .cart-collaterals .shipping_calculator:before,.woocommerce-page .cart-collaterals .shipping_calculator:before,.woocommerce .cart-collaterals .shipping_calculator:after,.woocommerce-page .cart-collaterals .shipping_calculator:after{content:" ";display:table}.woocommerce .cart-collaterals .shipping_calculator:after,.woocommerce-page .cart-collaterals .shipping_calculator:after{clear:both}.woocommerce .cart-collaterals .shipping_calculator .col2-set .col-1,.woocommerce-page .cart-collaterals .shipping_calculator .col2-set .col-1,.woocommerce .cart-collaterals .shipping_calculator .col2-set .col-2,.woocommerce-page .cart-collaterals .shipping_calculator .col2-set .col-2{width:47%}.woocommerce .cart-collaterals .cart_totals,.woocommerce-page .cart-collaterals .cart_totals{float:right;width:48%;text-align:right}.woocommerce ul.cart_list li,.woocommerce-page ul.cart_list li,.woocommerce ul.product_list_widget li,.woocommerce-page ul.product_list_widget li{*zoom:1}.woocommerce ul.cart_list li:before,.woocommerce-page ul.cart_list li:before,.woocommerce ul.product_list_widget li:before,.woocommerce-page ul.product_list_widget li:before,.woocommerce ul.cart_list li:after,.woocommerce-page ul.cart_list li:after,.woocommerce ul.product_list_widget li:after,.woocommerce-page ul.product_list_widget li:after{content:" ";display:table}.woocommerce ul.cart_list li:after,.woocommerce-page ul.cart_list li:after,.woocommerce ul.product_list_widget li:after,.woocommerce-page ul.product_list_widget li:after{clear:both}.woocommerce ul.cart_list li img,.woocommerce-page ul.cart_list li img,.woocommerce ul.product_list_widget li img,.woocommerce-page ul.product_list_widget li img{float:right;height:auto}.woocommerce form .form-row,.woocommerce-page form .form-row{*zoom:1}.woocommerce form .form-row:before,.woocommerce-page form .form-row:before,.woocommerce form .form-row:after,.woocommerce-page form .form-row:after{content:" ";display:table}.woocommerce form .form-row:after,.woocommerce-page form .form-row:after{clear:both}.woocommerce form .form-row label,.woocommerce-page form .form-row label{display:block}.woocommerce form .form-row label.checkbox,.woocommerce-page form .form-row label.checkbox{display:inline}.woocommerce form .form-row select,.woocommerce-page form .form-row select{width:100%}.woocommerce form .form-row .input-text,.woocommerce-page form .form-row .input-text{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%}.woocommerce form .form-row-first,.woocommerce-page form .form-row-first,.woocommerce form .form-row-last,.woocommerce-page form .form-row-last{float:left;width:47%;overflow:visible}.woocommerce form .form-row-last,.woocommerce-page form .form-row-last{float:right}.woocommerce form .form-row-wide,.woocommerce-page form .form-row-wide{clear:both}.woocommerce #payment .form-row select,.woocommerce-page #payment .form-row select{width:auto}.woocommerce #payment .terms,.woocommerce-page #payment .terms{text-align:right;padding:0 1em}.woocommerce #payment #place_order,.woocommerce-page #payment #place_order{float:right}.twentyfourteen .tfwc{padding:12px 10px 0;max-width:474px;margin:0 auto}.twentyfourteen .tfwc .entry-summary{padding:0!important;margin:0 0 1.618em!important}@media screen and (min-width:673px){.twentyfourteen .tfwc{padding-right:30px;padding-left:30px}}@media screen and (min-width:1040px){.twentyfourteen .tfwc{padding-right:15px;padding-left:15px}}@media screen and (min-width:1110px){.twentyfourteen .tfwc{padding-right:30px;padding-left:30px}}@media screen and (min-width:1218px){.twentyfourteen .tfwc{margin-right:54px}.full-width .twentyfourteen .tfwc{margin-right:auto}} \ No newline at end of file +.clear{clear:both}.nobr{white-space:nowrap}.woocommerce .col2-set,.woocommerce-page .col2-set{width:100%}.woocommerce .col2-set:after,.woocommerce .col2-set:before,.woocommerce-page .col2-set:after,.woocommerce-page .col2-set:before{content:" ";display:table}.woocommerce .col2-set:after,.woocommerce-page .col2-set:after{clear:both}.woocommerce .col2-set .col-1,.woocommerce-page .col2-set .col-1{float:left;width:48%}.woocommerce .col2-set .col-2,.woocommerce-page .col2-set .col-2{float:right;width:48%}.woocommerce img,.woocommerce-page img{height:auto;max-width:100%}.woocommerce #content div.product div.images,.woocommerce div.product div.images,.woocommerce-page #content div.product div.images,.woocommerce-page div.product div.images{float:left;width:48%}.woocommerce #content div.product div.thumbnails:after,.woocommerce #content div.product div.thumbnails:before,.woocommerce div.product div.thumbnails:after,.woocommerce div.product div.thumbnails:before,.woocommerce-page #content div.product div.thumbnails:after,.woocommerce-page #content div.product div.thumbnails:before,.woocommerce-page div.product div.thumbnails:after,.woocommerce-page div.product div.thumbnails:before{content:" ";display:table}.woocommerce #content div.product div.thumbnails:after,.woocommerce div.product div.thumbnails:after,.woocommerce-page #content div.product div.thumbnails:after,.woocommerce-page div.product div.thumbnails:after{clear:both}.woocommerce #content div.product div.thumbnails a,.woocommerce div.product div.thumbnails a,.woocommerce-page #content div.product div.thumbnails a,.woocommerce-page div.product div.thumbnails a{float:left;width:30.75%;margin-right:3.8%}.woocommerce #content div.product div.thumbnails a.last,.woocommerce div.product div.thumbnails a.last,.woocommerce-page #content div.product div.thumbnails a.last,.woocommerce-page div.product div.thumbnails a.last{margin-right:0}.woocommerce #content div.product div.thumbnails a.first,.woocommerce div.product div.thumbnails a.first,.woocommerce-page #content div.product div.thumbnails a.first,.woocommerce-page div.product div.thumbnails a.first{clear:both}.woocommerce #content div.product div.summary,.woocommerce div.product div.summary,.woocommerce-page #content div.product div.summary,.woocommerce-page div.product div.summary{float:right;width:48%}.woocommerce #content div.product .woocommerce-tabs,.woocommerce div.product .woocommerce-tabs,.woocommerce-page #content div.product .woocommerce-tabs,.woocommerce-page div.product .woocommerce-tabs{clear:both}.woocommerce #content div.product .woocommerce-tabs ul.tabs:after,.woocommerce #content div.product .woocommerce-tabs ul.tabs:before,.woocommerce div.product .woocommerce-tabs ul.tabs:after,.woocommerce div.product .woocommerce-tabs ul.tabs:before,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs:after,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs:before,.woocommerce-page div.product .woocommerce-tabs ul.tabs:after,.woocommerce-page div.product .woocommerce-tabs ul.tabs:before{content:" ";display:table}.woocommerce #content div.product .woocommerce-tabs ul.tabs:after,.woocommerce div.product .woocommerce-tabs ul.tabs:after,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs:after,.woocommerce-page div.product .woocommerce-tabs ul.tabs:after{clear:both}.woocommerce #content div.product .woocommerce-tabs ul.tabs li,.woocommerce div.product .woocommerce-tabs ul.tabs li,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li,.woocommerce-page div.product .woocommerce-tabs ul.tabs li{display:inline-block}.woocommerce #content div.product #reviews .comment:after,.woocommerce #content div.product #reviews .comment:before,.woocommerce div.product #reviews .comment:after,.woocommerce div.product #reviews .comment:before,.woocommerce-page #content div.product #reviews .comment:after,.woocommerce-page #content div.product #reviews .comment:before,.woocommerce-page div.product #reviews .comment:after,.woocommerce-page div.product #reviews .comment:before{content:" ";display:table}.woocommerce #content div.product #reviews .comment:after,.woocommerce div.product #reviews .comment:after,.woocommerce-page #content div.product #reviews .comment:after,.woocommerce-page div.product #reviews .comment:after{clear:both}.woocommerce #content div.product #reviews .comment img,.woocommerce div.product #reviews .comment img,.woocommerce-page #content div.product #reviews .comment img,.woocommerce-page div.product #reviews .comment img{float:right;height:auto}.woocommerce #content .quantity input::-webkit-inner-spin-button,.woocommerce #content .quantity input::-webkit-outer-spin-button,.woocommerce #quantity input::-webkit-inner-spin-button,.woocommerce #quantity input::-webkit-outer-spin-button,.woocommerce-page #content .quantity input::-webkit-inner-spin-button,.woocommerce-page #content .quantity input::-webkit-outer-spin-button,.woocommerce-page #quantity input::-webkit-inner-spin-button,.woocommerce-page #quantity input::-webkit-outer-spin-button{display:none}.woocommerce .related:after,.woocommerce .related:before,.woocommerce .upsells.products:after,.woocommerce .upsells.products:before,.woocommerce-page .related:after,.woocommerce-page .related:before,.woocommerce-page .upsells.products:after,.woocommerce-page .upsells.products:before{content:" ";display:table}.woocommerce .related:after,.woocommerce .upsells.products:after,.woocommerce-page .related:after,.woocommerce-page .upsells.products:after{clear:both}.woocommerce .related ul,.woocommerce .related ul.products,.woocommerce .upsells.products ul,.woocommerce .upsells.products ul.products,.woocommerce-page .related ul,.woocommerce-page .related ul.products,.woocommerce-page .upsells.products ul,.woocommerce-page .upsells.products ul.products{float:none}.woocommerce .related ul li.product,.woocommerce .related ul.products li.product,.woocommerce .upsells.products ul li.product,.woocommerce .upsells.products ul.products li.product,.woocommerce-page .related ul li.product,.woocommerce-page .related ul.products li.product,.woocommerce-page .upsells.products ul li.product,.woocommerce-page .upsells.products ul.products li.product{width:48%}.woocommerce .related ul li.product img,.woocommerce .related ul.products li.product img,.woocommerce .upsells.products ul li.product img,.woocommerce .upsells.products ul.products li.product img,.woocommerce-page .related ul li.product img,.woocommerce-page .related ul.products li.product img,.woocommerce-page .upsells.products ul li.product img,.woocommerce-page .upsells.products ul.products li.product img{width:100%;height:auto}.woocommerce ul.products,.woocommerce-page ul.products{clear:both}.woocommerce ul.products:after,.woocommerce ul.products:before,.woocommerce-page ul.products:after,.woocommerce-page ul.products:before{content:" ";display:table}.woocommerce ul.products:after,.woocommerce-page ul.products:after{clear:both}.woocommerce ul.products li.product,.woocommerce-page ul.products li.product{float:left;margin:0 3.8% 2.992em 0;padding:0;position:relative;width:22.05%}.woocommerce ul.products li.first,.woocommerce-page ul.products li.first{clear:both}.woocommerce ul.products li.last,.woocommerce-page ul.products li.last{margin-right:0}.woocommerce-page.columns-1 ul.products li.product,.woocommerce.columns-1 ul.products li.product{width:100%;margin-right:0}.woocommerce-page.columns-2 ul.products li.product,.woocommerce.columns-2 ul.products li.product{width:48%}.woocommerce-page.columns-3 ul.products li.product,.woocommerce.columns-3 ul.products li.product{width:30.75%}.woocommerce-page.columns-5 ul.products li.product,.woocommerce.columns-5 ul.products li.product{width:16.95%}.woocommerce-page.columns-6 ul.products li.product,.woocommerce.columns-6 ul.products li.product{width:13.5%}.woocommerce .woocommerce-result-count,.woocommerce-page .woocommerce-result-count{float:left}.woocommerce .woocommerce-ordering,.woocommerce-page .woocommerce-ordering{float:right}.woocommerce .woocommerce-pagination ul.page-numbers:after,.woocommerce .woocommerce-pagination ul.page-numbers:before,.woocommerce-page .woocommerce-pagination ul.page-numbers:after,.woocommerce-page .woocommerce-pagination ul.page-numbers:before{content:" ";display:table}.woocommerce .woocommerce-pagination ul.page-numbers:after,.woocommerce-page .woocommerce-pagination ul.page-numbers:after{clear:both}.woocommerce .woocommerce-pagination ul.page-numbers li,.woocommerce-page .woocommerce-pagination ul.page-numbers li{display:inline-block}.woocommerce #content table.cart img,.woocommerce table.cart img,.woocommerce-page #content table.cart img,.woocommerce-page table.cart img{height:auto}.woocommerce #content table.cart td.actions,.woocommerce table.cart td.actions,.woocommerce-page #content table.cart td.actions,.woocommerce-page table.cart td.actions{text-align:right}.woocommerce #content table.cart td.actions .input-text,.woocommerce table.cart td.actions .input-text,.woocommerce-page #content table.cart td.actions .input-text,.woocommerce-page table.cart td.actions .input-text{width:80px}.woocommerce #content table.cart td.actions .coupon,.woocommerce table.cart td.actions .coupon,.woocommerce-page #content table.cart td.actions .coupon,.woocommerce-page table.cart td.actions .coupon{float:left}.woocommerce #content table.cart td.actions .coupon label,.woocommerce table.cart td.actions .coupon label,.woocommerce-page #content table.cart td.actions .coupon label,.woocommerce-page table.cart td.actions .coupon label{display:none}.woocommerce .cart-collaterals,.woocommerce-page .cart-collaterals{width:100%}.woocommerce .cart-collaterals:after,.woocommerce .cart-collaterals:before,.woocommerce-page .cart-collaterals:after,.woocommerce-page .cart-collaterals:before{content:" ";display:table}.woocommerce .cart-collaterals:after,.woocommerce-page .cart-collaterals:after{clear:both}.woocommerce .cart-collaterals .related,.woocommerce-page .cart-collaterals .related{width:30.75%;float:left}.woocommerce .cart-collaterals .cross-sells,.woocommerce-page .cart-collaterals .cross-sells{width:48%;float:left}.woocommerce .cart-collaterals .cross-sells ul.products,.woocommerce-page .cart-collaterals .cross-sells ul.products{float:none}.woocommerce .cart-collaterals .cross-sells ul.products li,.woocommerce-page .cart-collaterals .cross-sells ul.products li{width:48%}.woocommerce .cart-collaterals .shipping_calculator,.woocommerce-page .cart-collaterals .shipping_calculator{width:48%;clear:right;float:right}.woocommerce .cart-collaterals .shipping_calculator:after,.woocommerce .cart-collaterals .shipping_calculator:before,.woocommerce-page .cart-collaterals .shipping_calculator:after,.woocommerce-page .cart-collaterals .shipping_calculator:before{content:" ";display:table}.woocommerce .cart-collaterals .shipping_calculator:after,.woocommerce-page .cart-collaterals .shipping_calculator:after{clear:both}.woocommerce .cart-collaterals .shipping_calculator .col2-set .col-1,.woocommerce .cart-collaterals .shipping_calculator .col2-set .col-2,.woocommerce-page .cart-collaterals .shipping_calculator .col2-set .col-1,.woocommerce-page .cart-collaterals .shipping_calculator .col2-set .col-2{width:47%}.woocommerce .cart-collaterals .cart_totals,.woocommerce-page .cart-collaterals .cart_totals{float:right;width:48%;text-align:right}.woocommerce ul.cart_list li:after,.woocommerce ul.cart_list li:before,.woocommerce ul.product_list_widget li:after,.woocommerce ul.product_list_widget li:before,.woocommerce-page ul.cart_list li:after,.woocommerce-page ul.cart_list li:before,.woocommerce-page ul.product_list_widget li:after,.woocommerce-page ul.product_list_widget li:before{content:" ";display:table}.woocommerce ul.cart_list li:after,.woocommerce ul.product_list_widget li:after,.woocommerce-page ul.cart_list li:after,.woocommerce-page ul.product_list_widget li:after{clear:both}.woocommerce ul.cart_list li img,.woocommerce ul.product_list_widget li img,.woocommerce-page ul.cart_list li img,.woocommerce-page ul.product_list_widget li img{float:right;height:auto}.woocommerce form .form-row:after,.woocommerce form .form-row:before,.woocommerce-page form .form-row:after,.woocommerce-page form .form-row:before{content:" ";display:table}.woocommerce form .form-row:after,.woocommerce-page form .form-row:after{clear:both}.woocommerce form .form-row label,.woocommerce-page form .form-row label{display:block}.woocommerce form .form-row label.checkbox,.woocommerce-page form .form-row label.checkbox{display:inline}.woocommerce form .form-row select,.woocommerce-page form .form-row select{width:100%}.woocommerce form .form-row .input-text,.woocommerce-page form .form-row .input-text{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%}.woocommerce form .form-row-first,.woocommerce form .form-row-last,.woocommerce-page form .form-row-first,.woocommerce-page form .form-row-last{float:left;width:47%;overflow:visible}.woocommerce form .form-row-last,.woocommerce-page form .form-row-last{float:right}.woocommerce form .form-row-wide,.woocommerce-page form .form-row-wide{clear:both}.woocommerce #payment .form-row select,.woocommerce-page #payment .form-row select{width:auto}.woocommerce #payment .terms,.woocommerce-page #payment .terms{text-align:right;padding:0 1em}.woocommerce #payment #place_order,.woocommerce-page #payment #place_order{float:right}.twentyfourteen .tfwc{padding:12px 10px 0;max-width:474px;margin:0 auto}.twentyfourteen .tfwc .product .entry-summary{padding:0!important;margin:0 0 1.618em!important}.twentyfourteen .tfwc div.product.hentry.has-post-thumbnail{margin-top:0}.twentyfourteen .tfwc .product .images img{margin-bottom:1em}@media screen and (min-width:673px){.twentyfourteen .tfwc{padding-right:30px;padding-left:30px}}@media screen and (min-width:1040px){.twentyfourteen .tfwc{padding-right:15px;padding-left:15px}}@media screen and (min-width:1110px){.twentyfourteen .tfwc{padding-right:30px;padding-left:30px}}@media screen and (min-width:1218px){.twentyfourteen .tfwc{margin-right:54px}.full-width .twentyfourteen .tfwc{margin-right:auto}} \ No newline at end of file diff --git a/assets/css/woocommerce-layout.less b/assets/css/woocommerce-layout.less index 97e4a146550..36556505282 100644 --- a/assets/css/woocommerce-layout.less +++ b/assets/css/woocommerce-layout.less @@ -1,5 +1,5 @@ -@import "mixins"; -@import "woocommerce-base"; /* Contains base colours like @primary */ +@import "mixins.less"; +@import "woocommerce-base.less"; /* Contains base colours like @primary */ .woocommerce, .woocommerce-page { @@ -284,10 +284,20 @@ padding: 12px 10px 0; max-width: 474px; margin:0 auto; - .entry-summary { + .product .entry-summary { padding:0 !important; margin: 0 0 1.618em !important; } + div.product.hentry.has-post-thumbnail { + margin-top:0; + } + .product { + .images { + img { + margin-bottom:1em; + } + } + } } } @@ -331,4 +341,4 @@ } } } -} \ No newline at end of file +} diff --git a/assets/css/woocommerce-smallscreen.css b/assets/css/woocommerce-smallscreen.css index 006742bc57e..e1f87dfbfab 100644 --- a/assets/css/woocommerce-smallscreen.css +++ b/assets/css/woocommerce-smallscreen.css @@ -1 +1 @@ -.clear{clear:both}.nobr{white-space:nowrap}.woocommerce,.woocommerce-page{}.woocommerce .col2-set .col-1,.woocommerce-page .col2-set .col-1,.woocommerce .col2-set .col-2,.woocommerce-page .col2-set .col-2{float:none;width:100%}.woocommerce ul.products li.product,.woocommerce-page ul.products li.product{width:48%;float:left;clear:both;margin:0 0 2.992em}.woocommerce ul.products li.product:nth-child(2n),.woocommerce-page ul.products li.product:nth-child(2n){float:right;clear:none!important}.woocommerce div.product div.images,.woocommerce-page div.product div.images,.woocommerce #content div.product div.images,.woocommerce-page #content div.product div.images,.woocommerce div.product div.summary,.woocommerce-page div.product div.summary,.woocommerce #content div.product div.summary,.woocommerce-page #content div.product div.summary{float:none;width:100%}.woocommerce table.cart .product-thumbnail,.woocommerce-page table.cart .product-thumbnail,.woocommerce #content table.cart .product-thumbnail,.woocommerce-page #content table.cart .product-thumbnail{display:none}.woocommerce table.cart td.actions,.woocommerce-page table.cart td.actions,.woocommerce #content table.cart td.actions,.woocommerce-page #content table.cart td.actions{text-align:left}.woocommerce table.cart td.actions .coupon,.woocommerce-page table.cart td.actions .coupon,.woocommerce #content table.cart td.actions .coupon,.woocommerce-page #content table.cart td.actions .coupon{float:none;*zoom:1;padding-bottom:.5em}.woocommerce table.cart td.actions .coupon:before,.woocommerce-page table.cart td.actions .coupon:before,.woocommerce #content table.cart td.actions .coupon:before,.woocommerce-page #content table.cart td.actions .coupon:before,.woocommerce table.cart td.actions .coupon:after,.woocommerce-page table.cart td.actions .coupon:after,.woocommerce #content table.cart td.actions .coupon:after,.woocommerce-page #content table.cart td.actions .coupon:after{content:" ";display:table}.woocommerce table.cart td.actions .coupon:after,.woocommerce-page table.cart td.actions .coupon:after,.woocommerce #content table.cart td.actions .coupon:after,.woocommerce-page #content table.cart td.actions .coupon:after{clear:both}.woocommerce table.cart td.actions input,.woocommerce-page table.cart td.actions input,.woocommerce #content table.cart td.actions input,.woocommerce-page #content table.cart td.actions input,.woocommerce table.cart td.actions .button,.woocommerce-page table.cart td.actions .button,.woocommerce #content table.cart td.actions .button,.woocommerce-page #content table.cart td.actions .button,.woocommerce table.cart td.actions .input-text,.woocommerce-page table.cart td.actions .input-text,.woocommerce #content table.cart td.actions .input-text,.woocommerce-page #content table.cart td.actions .input-text{width:48%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.woocommerce table.cart td.actions .input-text+.button,.woocommerce-page table.cart td.actions .input-text+.button,.woocommerce #content table.cart td.actions .input-text+.button,.woocommerce-page #content table.cart td.actions .input-text+.button,.woocommerce table.cart td.actions .button.alt,.woocommerce-page table.cart td.actions .button.alt,.woocommerce #content table.cart td.actions .button.alt,.woocommerce-page #content table.cart td.actions .button.alt{float:right}.woocommerce .cart-collaterals .cart_totals,.woocommerce-page .cart-collaterals .cart_totals,.woocommerce .cart-collaterals .shipping_calculator,.woocommerce-page .cart-collaterals .shipping_calculator,.woocommerce .cart-collaterals .cross-sells,.woocommerce-page .cart-collaterals .cross-sells{width:100%;float:none;text-align:left}.woocommerce #payment .terms,.woocommerce-page #payment .terms{text-align:left;padding:0}.woocommerce #payment #place_order,.woocommerce-page #payment #place_order{float:none;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin-bottom:1em} \ No newline at end of file +.clear{clear:both}.nobr{white-space:nowrap}.woocommerce .col2-set .col-1,.woocommerce .col2-set .col-2,.woocommerce-page .col2-set .col-1,.woocommerce-page .col2-set .col-2{float:none;width:100%}.woocommerce ul.products li.product,.woocommerce-page ul.products li.product{width:48%;float:left;clear:both;margin:0 0 2.992em}.woocommerce ul.products li.product:nth-child(2n),.woocommerce-page ul.products li.product:nth-child(2n){float:right;clear:none!important}.woocommerce #content div.product div.images,.woocommerce #content div.product div.summary,.woocommerce div.product div.images,.woocommerce div.product div.summary,.woocommerce-page #content div.product div.images,.woocommerce-page #content div.product div.summary,.woocommerce-page div.product div.images,.woocommerce-page div.product div.summary{float:none;width:100%}.woocommerce #content table.cart .product-thumbnail,.woocommerce table.cart .product-thumbnail,.woocommerce-page #content table.cart .product-thumbnail,.woocommerce-page table.cart .product-thumbnail{display:none}.woocommerce #content table.cart td.actions,.woocommerce table.cart td.actions,.woocommerce-page #content table.cart td.actions,.woocommerce-page table.cart td.actions{text-align:left}.woocommerce #content table.cart td.actions .coupon,.woocommerce table.cart td.actions .coupon,.woocommerce-page #content table.cart td.actions .coupon,.woocommerce-page table.cart td.actions .coupon{float:none;padding-bottom:.5em}.woocommerce #content table.cart td.actions .coupon:after,.woocommerce #content table.cart td.actions .coupon:before,.woocommerce table.cart td.actions .coupon:after,.woocommerce table.cart td.actions .coupon:before,.woocommerce-page #content table.cart td.actions .coupon:after,.woocommerce-page #content table.cart td.actions .coupon:before,.woocommerce-page table.cart td.actions .coupon:after,.woocommerce-page table.cart td.actions .coupon:before{content:" ";display:table}.woocommerce #content table.cart td.actions .coupon:after,.woocommerce table.cart td.actions .coupon:after,.woocommerce-page #content table.cart td.actions .coupon:after,.woocommerce-page table.cart td.actions .coupon:after{clear:both}.woocommerce #content table.cart td.actions .button,.woocommerce #content table.cart td.actions .input-text,.woocommerce #content table.cart td.actions input,.woocommerce table.cart td.actions .button,.woocommerce table.cart td.actions .input-text,.woocommerce table.cart td.actions input,.woocommerce-page #content table.cart td.actions .button,.woocommerce-page #content table.cart td.actions .input-text,.woocommerce-page #content table.cart td.actions input,.woocommerce-page table.cart td.actions .button,.woocommerce-page table.cart td.actions .input-text,.woocommerce-page table.cart td.actions input{width:48%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.woocommerce #content table.cart td.actions .button.alt,.woocommerce #content table.cart td.actions .input-text+.button,.woocommerce table.cart td.actions .button.alt,.woocommerce table.cart td.actions .input-text+.button,.woocommerce-page #content table.cart td.actions .button.alt,.woocommerce-page #content table.cart td.actions .input-text+.button,.woocommerce-page table.cart td.actions .button.alt,.woocommerce-page table.cart td.actions .input-text+.button{float:right}.woocommerce .cart-collaterals .cart_totals,.woocommerce .cart-collaterals .cross-sells,.woocommerce .cart-collaterals .shipping_calculator,.woocommerce-page .cart-collaterals .cart_totals,.woocommerce-page .cart-collaterals .cross-sells,.woocommerce-page .cart-collaterals .shipping_calculator{width:100%;float:none;text-align:left}.woocommerce-page.woocommerce-checkout form.login .form-row,.woocommerce.woocommerce-checkout form.login .form-row{width:100%;float:none}.woocommerce #payment .terms,.woocommerce-page #payment .terms{text-align:left;padding:0}.woocommerce #payment #place_order,.woocommerce-page #payment #place_order{float:none;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin-bottom:1em}.woocommerce .lost_reset_password .form-row-first,.woocommerce .lost_reset_password .form-row-last,.woocommerce-page .lost_reset_password .form-row-first,.woocommerce-page .lost_reset_password .form-row-last{width:100%;float:none;margin-right:0}.single-product .twentythirteen .panel{padding-left:20px!important;padding-right:20px!important} \ No newline at end of file diff --git a/assets/css/woocommerce-smallscreen.less b/assets/css/woocommerce-smallscreen.less index f4ffd6ba898..3d3757e6306 100644 --- a/assets/css/woocommerce-smallscreen.less +++ b/assets/css/woocommerce-smallscreen.less @@ -2,7 +2,7 @@ * This stylesheet optimises the default WooCommerce layout when viewed on smaller screens. */ -@import "mixins"; +@import "mixins.less"; .woocommerce, .woocommerce-page { @@ -76,6 +76,15 @@ /** * Checkout */ + &.woocommerce-checkout { + form.login { + .form-row { + width: 100%; + float: none; + } + } + } + #payment { .terms { text-align: left; @@ -88,4 +97,27 @@ margin-bottom:1em; } } -} \ No newline at end of file + + /** + * Account + */ + .lost_reset_password { + .form-row-first, + .form-row-last { + width: 100%; + float: none; + margin-right: 0; + } + } +} + +/* =Twenty Thirteen Specific styles +-------------------------------------------------------------- */ +.single-product { + .twentythirteen { + .panel { + padding-left: 20px !important; + padding-right: 20px !important; + } + } +} diff --git a/assets/css/woocommerce.css b/assets/css/woocommerce.css index e2c57c8ec08..0b3079e6c21 100644 --- a/assets/css/woocommerce.css +++ b/assets/css/woocommerce.css @@ -1 +1 @@ -.clear{clear:both}.nobr{white-space:nowrap}@font-face{font-family:star;src:url(../fonts/star.eot);src:url(../fonts/star.eot?#iefix) format('embedded-opentype'),url(../fonts/star.woff) format('woff'),url(../fonts/star.ttf) format('truetype'),url(../fonts/star.svg#star) format('svg');font-weight:400;font-style:normal}@font-face{font-family:WooCommerce;src:url(../fonts/WooCommerce.eot);src:url(../fonts/WooCommerce.eot?#iefix) format('embedded-opentype'),url(../fonts/WooCommerce.woff) format('woff'),url(../fonts/WooCommerce.ttf) format('truetype'),url(../fonts/WooCommerce.svg#WooCommerce) format('svg');font-weight:400;font-style:normal}p.demo_store{position:fixed;top:0;left:0;right:0;margin:0;width:100%;font-size:1em;padding:.5em 0;text-align:center;background:#ad74a2;background:-webkit-gradient(linear,left top,left bottom,from(#ad74a2),to(#96588a));background:-webkit-linear-gradient(#ad74a2,#96588a);background:-moz-linear-gradient(center top,#ad74a2 0,#96588a 100%);background:-moz-gradient(center top,#ad74a2 0,#96588a 100%);border:1px solid #96588a;color:#fff;z-index:99998;box-shadow:inset 0 0 0 3px rgba(255,255,255,.2);-webkit-box-shadow:inset 0 0 0 3px rgba(255,255,255,.2)}.admin-bar p.demo_store{top:28px}.wc-forward:after,.wc-forward a:after{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-left:7px;content:"\e029";font-size:.75em}.wc-backward:before,.wc-backward a:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:7px;content:"\e02f";font-size:.75em}.woocommerce,.woocommerce-page{}.woocommerce .woocommerce-message,.woocommerce-page .woocommerce-message,.woocommerce .woocommerce-error,.woocommerce-page .woocommerce-error,.woocommerce .woocommerce-info,.woocommerce-page .woocommerce-info{padding:1em 1em 1em 3.5em!important;margin:0 0 2em!important;position:relative;-webkit-border-radius:4px;border-radius:4px;background:#fcfbfc;background:-webkit-gradient(linear,left top,left bottom,from(#fcfbfc),to(#f7f6f7));background:-webkit-linear-gradient(#fcfbfc,#f7f6f7);background:-moz-linear-gradient(center top,#fcfbfc 0,#f7f6f7 100%);background:-moz-gradient(center top,#fcfbfc 0,#f7f6f7 100%);color:#5e5e5e;text-shadow:0 1px 0 #fff;list-style:none outside!important;*zoom:1;width:auto;-webkit-box-shadow:inset 0 -2px 6px rgba(0,0,0,.05),inset 0 -2px 30px rgba(0,0,0,.015),inset 0 1px 0 #fff,0 1px 2px rgba(0,0,0,.3);box-shadow:inset 0 -2px 6px rgba(0,0,0,.05),inset 0 -2px 30px rgba(0,0,0,.015),inset 0 1px 0 #fff,0 1px 2px rgba(0,0,0,.3)}.woocommerce .woocommerce-message:before,.woocommerce-page .woocommerce-message:before,.woocommerce .woocommerce-error:before,.woocommerce-page .woocommerce-error:before,.woocommerce .woocommerce-info:before,.woocommerce-page .woocommerce-info:before,.woocommerce .woocommerce-message:after,.woocommerce-page .woocommerce-message:after,.woocommerce .woocommerce-error:after,.woocommerce-page .woocommerce-error:after,.woocommerce .woocommerce-info:after,.woocommerce-page .woocommerce-info:after{content:" ";display:table}.woocommerce .woocommerce-message:after,.woocommerce-page .woocommerce-message:after,.woocommerce .woocommerce-error:after,.woocommerce-page .woocommerce-error:after,.woocommerce .woocommerce-info:after,.woocommerce-page .woocommerce-info:after{clear:both}.woocommerce .woocommerce-message:before,.woocommerce-page .woocommerce-message:before,.woocommerce .woocommerce-error:before,.woocommerce-page .woocommerce-error:before,.woocommerce .woocommerce-info:before,.woocommerce-page .woocommerce-info:before{content:"";height:1.5em;width:1.5em;display:block;position:absolute;top:0;left:1em;font-family:sans-serif;font-size:1em;line-height:1.5;text-align:center;color:#fff;text-shadow:0 1px 0 rgba(0,0,0,.2);padding-top:1em;-webkit-border-bottom-left-radius:4px;-webkit-border-bottom-right-radius:4px;border-bottom-left-radius:4px;border-bottom-right-radius:4px;box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.1);-webkit-box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.1)}.woocommerce .woocommerce-message .button,.woocommerce-page .woocommerce-message .button,.woocommerce .woocommerce-error .button,.woocommerce-page .woocommerce-error .button,.woocommerce .woocommerce-info .button,.woocommerce-page .woocommerce-info .button{float:right}.woocommerce .woocommerce-message li,.woocommerce-page .woocommerce-message li,.woocommerce .woocommerce-error li,.woocommerce-page .woocommerce-error li,.woocommerce .woocommerce-info li,.woocommerce-page .woocommerce-info li{list-style:none outside!important;padding-left:0!important;margin-left:0!important}.woocommerce .woocommerce-message,.woocommerce-page .woocommerce-message{border-top:3px solid #8fae1b}.woocommerce .woocommerce-message:before,.woocommerce-page .woocommerce-message:before{background-color:#8fae1b;content:"\2713"}.woocommerce .woocommerce-info,.woocommerce-page .woocommerce-info{border-top:3px solid #1e85be}.woocommerce .woocommerce-info:before,.woocommerce-page .woocommerce-info:before{background-color:#1e85be;content:"i";font-family:Times,Georgia,serif;font-style:italic}.woocommerce .woocommerce-error,.woocommerce-page .woocommerce-error{border-top:3px solid #b81c23}.woocommerce .woocommerce-error:before,.woocommerce-page .woocommerce-error:before{background-color:#b81c23;content:"\00d7";font-weight:700}.woocommerce small.note,.woocommerce-page small.note{display:block;color:#777;font-size:11px;line-height:21px;margin-top:10px}.woocommerce .woocommerce-breadcrumb,.woocommerce-page .woocommerce-breadcrumb{*zoom:1;margin:0 0 1em;padding:0;font-size:.92em;color:#777}.woocommerce .woocommerce-breadcrumb:before,.woocommerce-page .woocommerce-breadcrumb:before,.woocommerce .woocommerce-breadcrumb:after,.woocommerce-page .woocommerce-breadcrumb:after{content:" ";display:table}.woocommerce .woocommerce-breadcrumb:after,.woocommerce-page .woocommerce-breadcrumb:after{clear:both}.woocommerce .woocommerce-breadcrumb a,.woocommerce-page .woocommerce-breadcrumb a{color:#777}.woocommerce div.product,.woocommerce-page div.product,.woocommerce #content div.product,.woocommerce-page #content div.product{margin-bottom:0;position:relative}.woocommerce div.product .product_title,.woocommerce-page div.product .product_title,.woocommerce #content div.product .product_title,.woocommerce-page #content div.product .product_title{clear:none;margin-top:0;padding:0}.woocommerce div.product span.price,.woocommerce-page div.product span.price,.woocommerce #content div.product span.price,.woocommerce-page #content div.product span.price,.woocommerce div.product p.price,.woocommerce-page div.product p.price,.woocommerce #content div.product p.price,.woocommerce-page #content div.product p.price{color:#85ad74;font-size:1.25em}.woocommerce div.product span.price ins,.woocommerce-page div.product span.price ins,.woocommerce #content div.product span.price ins,.woocommerce-page #content div.product span.price ins,.woocommerce div.product p.price ins,.woocommerce-page div.product p.price ins,.woocommerce #content div.product p.price ins,.woocommerce-page #content div.product p.price ins{background:inherit}.woocommerce div.product span.price del,.woocommerce-page div.product span.price del,.woocommerce #content div.product span.price del,.woocommerce-page #content div.product span.price del,.woocommerce div.product p.price del,.woocommerce-page div.product p.price del,.woocommerce #content div.product p.price del,.woocommerce-page #content div.product p.price del{font-size:.67em;color:rgba(145,145,145,.5)}.woocommerce div.product p.stock,.woocommerce-page div.product p.stock,.woocommerce #content div.product p.stock,.woocommerce-page #content div.product p.stock{font-size:.92em}.woocommerce div.product .stock,.woocommerce-page div.product .stock,.woocommerce #content div.product .stock,.woocommerce-page #content div.product .stock{color:#85ad74}.woocommerce div.product .out-of-stock,.woocommerce-page div.product .out-of-stock,.woocommerce #content div.product .out-of-stock,.woocommerce-page #content div.product .out-of-stock{color:red}.woocommerce div.product div.images,.woocommerce-page div.product div.images,.woocommerce #content div.product div.images,.woocommerce-page #content div.product div.images{margin-bottom:2em}.woocommerce div.product div.images img,.woocommerce-page div.product div.images img,.woocommerce #content div.product div.images img,.woocommerce-page #content div.product div.images img{display:block;width:100%;height:auto;box-shadow:0 1px 2px 0 rgba(0,0,0,.3);-webkit-box-shadow:0 1px 2px 0 rgba(0,0,0,.3);-webkit-transition:all ease-in-out .2s;-moz-transition:all ease-in-out .2s;-o-transition:all ease-in-out .2s;transition:all ease-in-out .2s}.woocommerce div.product div.images div.thumbnails,.woocommerce-page div.product div.images div.thumbnails,.woocommerce #content div.product div.images div.thumbnails,.woocommerce-page #content div.product div.images div.thumbnails{padding-top:1em}.woocommerce div.product div.summary,.woocommerce-page div.product div.summary,.woocommerce #content div.product div.summary,.woocommerce-page #content div.product div.summary{margin-bottom:2em}.woocommerce div.product div.social,.woocommerce-page div.product div.social,.woocommerce #content div.product div.social,.woocommerce-page #content div.product div.social{text-align:right;margin:0 0 1em}.woocommerce div.product div.social span,.woocommerce-page div.product div.social span,.woocommerce #content div.product div.social span,.woocommerce-page #content div.product div.social span{margin:0 0 0 2px}.woocommerce div.product div.social span span,.woocommerce-page div.product div.social span span,.woocommerce #content div.product div.social span span,.woocommerce-page #content div.product div.social span span{margin:0}.woocommerce div.product div.social span .stButton .chicklets,.woocommerce-page div.product div.social span .stButton .chicklets,.woocommerce #content div.product div.social span .stButton .chicklets,.woocommerce-page #content div.product div.social span .stButton .chicklets{padding-left:16px;width:0}.woocommerce div.product div.social iframe,.woocommerce-page div.product div.social iframe,.woocommerce #content div.product div.social iframe,.woocommerce-page #content div.product div.social iframe{float:left;margin-top:3px}.woocommerce div.product .woocommerce-tabs ul.tabs,.woocommerce-page div.product .woocommerce-tabs ul.tabs,.woocommerce #content div.product .woocommerce-tabs ul.tabs,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs{list-style:none;padding:0 0 0 1em;margin:0 0 1.618em;overflow:hidden;position:relative}.woocommerce div.product .woocommerce-tabs ul.tabs li,.woocommerce-page div.product .woocommerce-tabs ul.tabs li,.woocommerce #content div.product .woocommerce-tabs ul.tabs li,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li{border:1px solid #e0dadf;background:#f7f6f7;background:-webkit-gradient(linear,left top,left bottom,from(#f7f6f7),to(#e0dadf));background:-webkit-linear-gradient(#f7f6f7,#e0dadf);background:-moz-linear-gradient(center top,#f7f6f7 0,#e0dadf 100%);background:-moz-gradient(center top,#f7f6f7 0,#e0dadf 100%);display:inline-block;position:relative;z-index:0;-webkit-border-top-left-radius:4px;-webkit-border-top-right-radius:4px;border-top-left-radius:4px;border-top-right-radius:4px;box-shadow:0 3px 3px rgba(0,0,0,.2),inset 0 1px 0 rgba(255,255,255,.6);margin:0 -5px;padding:0 1em}.woocommerce div.product .woocommerce-tabs ul.tabs li a,.woocommerce-page div.product .woocommerce-tabs ul.tabs li a,.woocommerce #content div.product .woocommerce-tabs ul.tabs li a,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li a{display:inline-block;padding:.5em 0;font-weight:700;color:#5e5e5e;text-shadow:0 1px 0 rgba(255,255,255,.8);text-decoration:none}.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover,.woocommerce-page div.product .woocommerce-tabs ul.tabs li a:hover,.woocommerce #content div.product .woocommerce-tabs ul.tabs li a:hover,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li a:hover{text-decoration:none;color:#777}.woocommerce div.product .woocommerce-tabs ul.tabs li.active,.woocommerce-page div.product .woocommerce-tabs ul.tabs li.active,.woocommerce #content div.product .woocommerce-tabs ul.tabs li.active,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li.active{background:#fff;z-index:2;border-bottom-color:#fff}.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,.woocommerce-page div.product .woocommerce-tabs ul.tabs li.active a,.woocommerce #content div.product .woocommerce-tabs ul.tabs li.active a,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li.active a{color:inherit;text-shadow:inherit}.woocommerce div.product .woocommerce-tabs ul.tabs li.active:before,.woocommerce-page div.product .woocommerce-tabs ul.tabs li.active:before,.woocommerce #content div.product .woocommerce-tabs ul.tabs li.active:before,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li.active:before{box-shadow:2px 2px 0 #fff}.woocommerce div.product .woocommerce-tabs ul.tabs li.active:after,.woocommerce-page div.product .woocommerce-tabs ul.tabs li.active:after,.woocommerce #content div.product .woocommerce-tabs ul.tabs li.active:after,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li.active:after{box-shadow:-2px 2px 0 #fff}.woocommerce div.product .woocommerce-tabs ul.tabs li:before,.woocommerce-page div.product .woocommerce-tabs ul.tabs li:before,.woocommerce #content div.product .woocommerce-tabs ul.tabs li:before,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li:before,.woocommerce div.product .woocommerce-tabs ul.tabs li:after,.woocommerce-page div.product .woocommerce-tabs ul.tabs li:after,.woocommerce #content div.product .woocommerce-tabs ul.tabs li:after,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li:after{border:1px solid #e0dadf;position:absolute;bottom:-1px;width:5px;height:5px;content:" "}.woocommerce div.product .woocommerce-tabs ul.tabs li:before,.woocommerce-page div.product .woocommerce-tabs ul.tabs li:before,.woocommerce #content div.product .woocommerce-tabs ul.tabs li:before,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li:before{left:-6px;-webkit-border-bottom-right-radius:4px;-moz-border-bottom-right-radius:4px;border-bottom-right-radius:4px;border-width:0 1px 1px 0;box-shadow:2px 2px 0 #e0dadf}.woocommerce div.product .woocommerce-tabs ul.tabs li:after,.woocommerce-page div.product .woocommerce-tabs ul.tabs li:after,.woocommerce #content div.product .woocommerce-tabs ul.tabs li:after,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li:after{right:-6px;-webkit-border-bottom-left-radius:4px;-moz-border-bottom-left-radius:4px;border-bottom-left-radius:4px;border-width:0 0 1px 1px;box-shadow:-2px 2px 0 #e0dadf}.woocommerce div.product .woocommerce-tabs ul.tabs:before,.woocommerce-page div.product .woocommerce-tabs ul.tabs:before,.woocommerce #content div.product .woocommerce-tabs ul.tabs:before,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs:before{position:absolute;content:" ";width:100%;bottom:0;left:0;border-bottom:1px solid #e0dadf;z-index:1}.woocommerce div.product .woocommerce-tabs .panel,.woocommerce-page div.product .woocommerce-tabs .panel,.woocommerce #content div.product .woocommerce-tabs .panel,.woocommerce-page #content div.product .woocommerce-tabs .panel{margin:0 0 2em;padding:0}.woocommerce div.product p.cart,.woocommerce-page div.product p.cart,.woocommerce #content div.product p.cart,.woocommerce-page #content div.product p.cart{margin-bottom:2em;*zoom:1}.woocommerce div.product p.cart:before,.woocommerce-page div.product p.cart:before,.woocommerce #content div.product p.cart:before,.woocommerce-page #content div.product p.cart:before,.woocommerce div.product p.cart:after,.woocommerce-page div.product p.cart:after,.woocommerce #content div.product p.cart:after,.woocommerce-page #content div.product p.cart:after{content:" ";display:table}.woocommerce div.product p.cart:after,.woocommerce-page div.product p.cart:after,.woocommerce #content div.product p.cart:after,.woocommerce-page #content div.product p.cart:after{clear:both}.woocommerce div.product form.cart,.woocommerce-page div.product form.cart,.woocommerce #content div.product form.cart,.woocommerce-page #content div.product form.cart{margin-bottom:2em;*zoom:1}.woocommerce div.product form.cart:before,.woocommerce-page div.product form.cart:before,.woocommerce #content div.product form.cart:before,.woocommerce-page #content div.product form.cart:before,.woocommerce div.product form.cart:after,.woocommerce-page div.product form.cart:after,.woocommerce #content div.product form.cart:after,.woocommerce-page #content div.product form.cart:after{content:" ";display:table}.woocommerce div.product form.cart:after,.woocommerce-page div.product form.cart:after,.woocommerce #content div.product form.cart:after,.woocommerce-page #content div.product form.cart:after{clear:both}.woocommerce div.product form.cart div.quantity,.woocommerce-page div.product form.cart div.quantity,.woocommerce #content div.product form.cart div.quantity,.woocommerce-page #content div.product form.cart div.quantity{float:left;margin:0 4px 0 0}.woocommerce div.product form.cart table,.woocommerce-page div.product form.cart table,.woocommerce #content div.product form.cart table,.woocommerce-page #content div.product form.cart table{border-width:0 0 1px}.woocommerce div.product form.cart table td,.woocommerce-page div.product form.cart table td,.woocommerce #content div.product form.cart table td,.woocommerce-page #content div.product form.cart table td{padding-left:0}.woocommerce div.product form.cart table div.quantity,.woocommerce-page div.product form.cart table div.quantity,.woocommerce #content div.product form.cart table div.quantity,.woocommerce-page #content div.product form.cart table div.quantity{float:none;margin:0}.woocommerce div.product form.cart table small.stock,.woocommerce-page div.product form.cart table small.stock,.woocommerce #content div.product form.cart table small.stock,.woocommerce-page #content div.product form.cart table small.stock{display:block;float:none}.woocommerce div.product form.cart .variations,.woocommerce-page div.product form.cart .variations,.woocommerce #content div.product form.cart .variations,.woocommerce-page #content div.product form.cart .variations{margin-bottom:1em}.woocommerce div.product form.cart .variations label,.woocommerce-page div.product form.cart .variations label,.woocommerce #content div.product form.cart .variations label,.woocommerce-page #content div.product form.cart .variations label{font-weight:700}.woocommerce div.product form.cart .variations select,.woocommerce-page div.product form.cart .variations select,.woocommerce #content div.product form.cart .variations select,.woocommerce-page #content div.product form.cart .variations select{width:100%;float:left}.woocommerce div.product form.cart .variations td.label,.woocommerce-page div.product form.cart .variations td.label,.woocommerce #content div.product form.cart .variations td.label,.woocommerce-page #content div.product form.cart .variations td.label{padding-right:1em}.woocommerce div.product form.cart .variations td,.woocommerce-page div.product form.cart .variations td,.woocommerce #content div.product form.cart .variations td,.woocommerce-page #content div.product form.cart .variations td{vertical-align:top}.woocommerce div.product form.cart .button,.woocommerce-page div.product form.cart .button,.woocommerce #content div.product form.cart .button,.woocommerce-page #content div.product form.cart .button{vertical-align:middle;float:left}.woocommerce div.product form.cart .group_table td.label,.woocommerce-page div.product form.cart .group_table td.label,.woocommerce #content div.product form.cart .group_table td.label,.woocommerce-page #content div.product form.cart .group_table td.label{padding-right:1em;padding-left:1em}.woocommerce div.product form.cart .group_table td,.woocommerce-page div.product form.cart .group_table td,.woocommerce #content div.product form.cart .group_table td,.woocommerce-page #content div.product form.cart .group_table td{vertical-align:top;padding-bottom:.5em}.woocommerce span.onsale,.woocommerce-page span.onsale{min-height:32px;min-width:32px;padding:4px;font-size:12px;font-weight:700;position:absolute;text-align:center;line-height:32px;top:6px;left:6px;margin:0;-webkit-border-radius:20px;border-radius:20px;background:#a2c094;background:-webkit-gradient(linear,left top,left bottom,from(#a2c094),to(#85ad74));background:-webkit-linear-gradient(#a2c094,#85ad74);background:-moz-linear-gradient(center top,#a2c094 0,#85ad74 100%);background:-moz-gradient(center top,#a2c094 0,#85ad74 100%);text-shadow:0 -1px 0 #85ad74;color:#fff;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.3),inset 0 -1px 0 rgba(0,0,0,.2),0 1px 2px rgba(0,0,0,.2);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.3),inset 0 -1px 0 rgba(0,0,0,.2),0 1px 2px rgba(0,0,0,.2);box-shadow:inset 0 1px 0 rgba(255,255,255,.3),inset 0 -1px 0 rgba(0,0,0,.2),0 1px 2px rgba(0,0,0,.2)}.woocommerce .products ul,.woocommerce-page .products ul,.woocommerce ul.products,.woocommerce-page ul.products{margin:0 0 1em;padding:0;list-style:none outside;clear:both;*zoom:1}.woocommerce .products ul:before,.woocommerce-page .products ul:before,.woocommerce ul.products:before,.woocommerce-page ul.products:before,.woocommerce .products ul:after,.woocommerce-page .products ul:after,.woocommerce ul.products:after,.woocommerce-page ul.products:after{content:" ";display:table}.woocommerce .products ul:after,.woocommerce-page .products ul:after,.woocommerce ul.products:after,.woocommerce-page ul.products:after{clear:both}.woocommerce .products ul li,.woocommerce-page .products ul li,.woocommerce ul.products li,.woocommerce-page ul.products li{list-style:none outside}.woocommerce ul.products li.product .onsale,.woocommerce-page ul.products li.product .onsale{top:0;right:0;left:auto;margin:-6px -6px 0 0}.woocommerce ul.products li.product h3,.woocommerce-page ul.products li.product h3{padding:.5em 0;margin:0;font-size:1em}.woocommerce ul.products li.product a,.woocommerce-page ul.products li.product a{text-decoration:none}.woocommerce ul.products li.product a img,.woocommerce-page ul.products li.product a img{width:100%;height:auto;display:block;margin:0 0 8px;box-shadow:0 1px 2px 0 rgba(0,0,0,.3);-webkit-box-shadow:0 1px 2px 0 rgba(0,0,0,.3);-webkit-transition:all ease-in-out .2s;-moz-transition:all ease-in-out .2s;-o-transition:all ease-in-out .2s;transition:all ease-in-out .2s}.woocommerce ul.products li.product a:hover img,.woocommerce-page ul.products li.product a:hover img{box-shadow:0 1px 3px 0 rgba(0,0,0,.4);-webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,.4)}.woocommerce ul.products li.product strong,.woocommerce-page ul.products li.product strong{display:block}.woocommerce ul.products li.product .price,.woocommerce-page ul.products li.product .price{color:#85ad74;display:block;font-weight:400;margin-bottom:.5em}.woocommerce ul.products li.product .price del,.woocommerce-page ul.products li.product .price del{font-size:.67em;color:rgba(145,145,145,.5);margin:-2px 0 0 0}.woocommerce ul.products li.product .price ins,.woocommerce-page ul.products li.product .price ins{background:0}.woocommerce ul.products li.product .price .from,.woocommerce-page ul.products li.product .price .from{font-size:.67em;margin:-2px 0 0 0;text-transform:uppercase;color:rgba(145,145,145,.5)}.woocommerce .woocommerce-result-count,.woocommerce-page .woocommerce-result-count{margin:0 0 1em}.woocommerce .woocommerce-ordering,.woocommerce-page .woocommerce-ordering{margin:0 0 1em}.woocommerce .woocommerce-ordering select,.woocommerce-page .woocommerce-ordering select{vertical-align:top}.woocommerce nav.woocommerce-pagination,.woocommerce-page nav.woocommerce-pagination,.woocommerce #content nav.woocommerce-pagination,.woocommerce-page #content nav.woocommerce-pagination{text-align:center}.woocommerce nav.woocommerce-pagination ul,.woocommerce-page nav.woocommerce-pagination ul,.woocommerce #content nav.woocommerce-pagination ul,.woocommerce-page #content nav.woocommerce-pagination ul{display:inline-block;white-space:nowrap;padding:0;clear:both;border:1px solid #e0dadf;border-right:0;margin:1px}.woocommerce nav.woocommerce-pagination ul li,.woocommerce-page nav.woocommerce-pagination ul li,.woocommerce #content nav.woocommerce-pagination ul li,.woocommerce-page #content nav.woocommerce-pagination ul li{border-right:1px solid #e0dadf;padding:0;margin:0;float:left;display:inline;overflow:hidden}.woocommerce nav.woocommerce-pagination ul li a,.woocommerce-page nav.woocommerce-pagination ul li a,.woocommerce #content nav.woocommerce-pagination ul li a,.woocommerce-page #content nav.woocommerce-pagination ul li a,.woocommerce nav.woocommerce-pagination ul li span,.woocommerce-page nav.woocommerce-pagination ul li span,.woocommerce #content nav.woocommerce-pagination ul li span,.woocommerce-page #content nav.woocommerce-pagination ul li span{margin:0;text-decoration:none;padding:0;line-height:1em;font-size:1em;font-weight:400;padding:.5em;min-width:1em;display:block}.woocommerce nav.woocommerce-pagination ul li span.current,.woocommerce-page nav.woocommerce-pagination ul li span.current,.woocommerce #content nav.woocommerce-pagination ul li span.current,.woocommerce-page #content nav.woocommerce-pagination ul li span.current,.woocommerce nav.woocommerce-pagination ul li a:hover,.woocommerce-page nav.woocommerce-pagination ul li a:hover,.woocommerce #content nav.woocommerce-pagination ul li a:hover,.woocommerce-page #content nav.woocommerce-pagination ul li a:hover,.woocommerce nav.woocommerce-pagination ul li a:focus,.woocommerce-page nav.woocommerce-pagination ul li a:focus,.woocommerce #content nav.woocommerce-pagination ul li a:focus,.woocommerce-page #content nav.woocommerce-pagination ul li a:focus{background:#f7f6f7;color:#998896}.woocommerce a.button,.woocommerce-page a.button,.woocommerce button.button,.woocommerce-page button.button,.woocommerce input.button,.woocommerce-page input.button,.woocommerce #respond input#submit,.woocommerce-page #respond input#submit,.woocommerce #content input.button,.woocommerce-page #content input.button{font-size:100%;margin:0;line-height:1em;cursor:pointer;position:relative;font-family:inherit;overflow:visible;padding:6px 10px;text-decoration:none;font-weight:700;-webkit-border-radius:2px;border-radius:2px;left:auto;text-shadow:0 1px 0 #fff;color:#5e5e5e;text-shadow:0 1px 0 rgba(255,255,255,.8);border:1px solid #c8bfc6;background:#f7f6f7;background:-webkit-gradient(linear,left top,left bottom,from(#f7f6f7),to(#e0dadf));background:-webkit-linear-gradient(#f7f6f7,#e0dadf);background:-moz-linear-gradient(center top,#f7f6f7 0,#e0dadf 100%);background:-moz-gradient(center top,#f7f6f7 0,#e0dadf 100%);white-space:nowrap;display:inline-block;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.075),inset 0 1px 0 rgba(255,255,255,.3),0 1px 2px rgba(0,0,0,.1);-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,.075),inset 0 1px 0 rgba(255,255,255,.3),0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 -1px 0 rgba(0,0,0,.075),inset 0 1px 0 rgba(255,255,255,.3),0 1px 2px rgba(0,0,0,.1)}.woocommerce a.button.loading,.woocommerce-page a.button.loading,.woocommerce button.button.loading,.woocommerce-page button.button.loading,.woocommerce input.button.loading,.woocommerce-page input.button.loading,.woocommerce #respond input#submit.loading,.woocommerce-page #respond input#submit.loading,.woocommerce #content input.button.loading,.woocommerce-page #content input.button.loading{color:#777;border:1px solid #f7f6f7}.woocommerce a.button.loading:before,.woocommerce-page a.button.loading:before,.woocommerce button.button.loading:before,.woocommerce-page button.button.loading:before,.woocommerce input.button.loading:before,.woocommerce-page input.button.loading:before,.woocommerce #respond input#submit.loading:before,.woocommerce-page #respond input#submit.loading:before,.woocommerce #content input.button.loading:before,.woocommerce-page #content input.button.loading:before{content:"";position:absolute;top:0;right:0;left:0;bottom:0;background:url(../images/ajax-loader.gif) center no-repeat rgba(255,255,255,.65)}.woocommerce a.button.added:before,.woocommerce-page a.button.added:before,.woocommerce button.button.added:before,.woocommerce-page button.button.added:before,.woocommerce input.button.added:before,.woocommerce-page input.button.added:before,.woocommerce #respond input#submit.added:before,.woocommerce-page #respond input#submit.added:before,.woocommerce #content input.button.added:before,.woocommerce-page #content input.button.added:before{position:absolute;height:16px;width:16px;top:.35em;right:-26px;text-indent:0;font-family:WooCommerce;content:"\e017"}.woocommerce a.button:hover,.woocommerce-page a.button:hover,.woocommerce button.button:hover,.woocommerce-page button.button:hover,.woocommerce input.button:hover,.woocommerce-page input.button:hover,.woocommerce #respond input#submit:hover,.woocommerce-page #respond input#submit:hover,.woocommerce #content input.button:hover,.woocommerce-page #content input.button:hover{background:#f7f6f7;background:-webkit-gradient(linear,left top,left bottom,from(#f7f6f7),to(#d4cdd2));background:-webkit-linear-gradient(#f7f6f7,#d4cdd2);background:-moz-linear-gradient(center top,#f7f6f7 0,#d4cdd2 100%);background:-moz-gradient(center top,#f7f6f7 0,#d4cdd2 100%);text-decoration:none}.woocommerce a.button:active,.woocommerce-page a.button:active,.woocommerce button.button:active,.woocommerce-page button.button:active,.woocommerce input.button:active,.woocommerce-page input.button:active,.woocommerce #respond input#submit:active,.woocommerce-page #respond input#submit:active,.woocommerce #content input.button:active,.woocommerce-page #content input.button:active{top:1px}.woocommerce a.button.alt,.woocommerce-page a.button.alt,.woocommerce button.button.alt,.woocommerce-page button.button.alt,.woocommerce input.button.alt,.woocommerce-page input.button.alt,.woocommerce #respond input#submit.alt,.woocommerce-page #respond input#submit.alt,.woocommerce #content input.button.alt,.woocommerce-page #content input.button.alt{background:#ad74a2;background:-webkit-gradient(linear,left top,left bottom,from(#ad74a2),to(#96588a));background:-webkit-linear-gradient(#ad74a2,#96588a);background:-moz-linear-gradient(center top,#ad74a2 0,#96588a 100%);background:-moz-gradient(center top,#ad74a2 0,#96588a 100%);border-color:#76456c;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.6)}.woocommerce a.button.alt:hover,.woocommerce-page a.button.alt:hover,.woocommerce button.button.alt:hover,.woocommerce-page button.button.alt:hover,.woocommerce input.button.alt:hover,.woocommerce-page input.button.alt:hover,.woocommerce #respond input#submit.alt:hover,.woocommerce-page #respond input#submit.alt:hover,.woocommerce #content input.button.alt:hover,.woocommerce-page #content input.button.alt:hover{background:#ad74a2;background:-webkit-gradient(linear,left top,left bottom,from(#ad74a2),to(#864f7b));background:-webkit-linear-gradient(#ad74a2,#864f7b);background:-moz-linear-gradient(center top,#ad74a2 0,#864f7b 100%);background:-moz-gradient(center top,#ad74a2 0,#864f7b 100%);color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.6)}.woocommerce a.button:disabled,.woocommerce-page a.button:disabled,.woocommerce button.button:disabled,.woocommerce-page button.button:disabled,.woocommerce input.button:disabled,.woocommerce-page input.button:disabled,.woocommerce #respond input#submit:disabled,.woocommerce-page #respond input#submit:disabled,.woocommerce #content input.button:disabled,.woocommerce-page #content input.button:disabled,.woocommerce a.button.disabled,.woocommerce-page a.button.disabled,.woocommerce button.button.disabled,.woocommerce-page button.button.disabled,.woocommerce input.button.disabled,.woocommerce-page input.button.disabled,.woocommerce #respond input#submit.disabled,.woocommerce-page #respond input#submit.disabled,.woocommerce #content input.button.disabled,.woocommerce-page #content input.button.disabled{color:#aaa;border:1px solid #e0dadf;background:#f7f6f7;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;cursor:not-allowed}.woocommerce a.button:disabled:active,.woocommerce-page a.button:disabled:active,.woocommerce button.button:disabled:active,.woocommerce-page button.button:disabled:active,.woocommerce input.button:disabled:active,.woocommerce-page input.button:disabled:active,.woocommerce #respond input#submit:disabled:active,.woocommerce-page #respond input#submit:disabled:active,.woocommerce #content input.button:disabled:active,.woocommerce-page #content input.button:disabled:active,.woocommerce a.button.disabled:active,.woocommerce-page a.button.disabled:active,.woocommerce button.button.disabled:active,.woocommerce-page button.button.disabled:active,.woocommerce input.button.disabled:active,.woocommerce-page input.button.disabled:active,.woocommerce #respond input#submit.disabled:active,.woocommerce-page #respond input#submit.disabled:active,.woocommerce #content input.button.disabled:active,.woocommerce-page #content input.button.disabled:active{top:0}.woocommerce .cart .button,.woocommerce-page .cart .button,.woocommerce .cart input.button,.woocommerce-page .cart input.button{float:none}.woocommerce a.added_to_cart,.woocommerce-page a.added_to_cart{padding-top:.5em;white-space:nowrap;display:inline-block}.woocommerce .quantity,.woocommerce-page .quantity,.woocommerce #content .quantity,.woocommerce-page #content .quantity{width:60px;position:relative;margin:0 auto;overflow:hidden;zoom:1}.woocommerce .quantity input.qty,.woocommerce-page .quantity input.qty,.woocommerce #content .quantity input.qty,.woocommerce-page #content .quantity input.qty{width:40px;height:28px;float:left;padding:0;text-align:center;border:1px solid #c8bfc6;border-right:0;-webkit-border-top-right-radius:0;-webkit-border-bottom-right-radius:0;border-top-right-radius:0;border-bottom-right-radius:0;box-shadow:inset 0 0 2px 0 #f7f6f7;-webkit-box-shadow:inset 0 0 2px 0 #f7f6f7;font-weight:700;-webkit-border-top-left-radius:2px;-webkit-border-bottom-left-radius:2px;border-top-left-radius:2px;border-bottom-left-radius:2px}.woocommerce .quantity noindex:-o-prefocus,.woocommerce-page .quantity noindex:-o-prefocus,.woocommerce #content .quantity noindex:-o-prefocus,.woocommerce-page #content .quantity noindex:-o-prefocus,.woocommerce .quantity input[type=number],.woocommerce-page .quantity input[type=number],.woocommerce #content .quantity input[type=number],.woocommerce-page #content .quantity input[type=number]{padding-right:1.2em}.woocommerce .quantity .plus,.woocommerce-page .quantity .plus,.woocommerce #content .quantity .plus,.woocommerce-page #content .quantity .plus,.woocommerce .quantity .minus,.woocommerce-page .quantity .minus,.woocommerce #content .quantity .minus,.woocommerce-page #content .quantity .minus{display:block;padding:0;margin:0;position:absolute;text-align:center;vertical-align:text-top;width:20px;height:15px;overflow:visible;text-decoration:none;font-weight:700;cursor:pointer;line-height:13px;font-size:12px;-webkit-border-radius:2px;border-radius:2px;color:#5e5e5e;text-shadow:0 1px 0 rgba(255,255,255,.8);border:1px solid #c8bfc6;background:#f7f6f7;background:-webkit-gradient(linear,left top,left bottom,from(#f7f6f7),to(#e0dadf));background:-webkit-linear-gradient(#f7f6f7,#e0dadf);background:-moz-linear-gradient(center top,#f7f6f7 0,#e0dadf 100%);background:-moz-gradient(center top,#f7f6f7 0,#e0dadf 100%);-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.075),inset 0 1px 0 rgba(255,255,255,.3),0 1px 2px rgba(0,0,0,.1);-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,.075),inset 0 1px 0 rgba(255,255,255,.3),0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 -1px 0 rgba(0,0,0,.075),inset 0 1px 0 rgba(255,255,255,.3),0 1px 2px rgba(0,0,0,.1)}.woocommerce .quantity .plus:hover,.woocommerce-page .quantity .plus:hover,.woocommerce #content .quantity .plus:hover,.woocommerce-page #content .quantity .plus:hover,.woocommerce .quantity .minus:hover,.woocommerce-page .quantity .minus:hover,.woocommerce #content .quantity .minus:hover,.woocommerce-page #content .quantity .minus:hover{background:#f7f6f7;background:-webkit-gradient(linear,left top,left bottom,from(#f7f6f7),to(#d4cdd2));background:-webkit-linear-gradient(#f7f6f7,#d4cdd2);background:-moz-linear-gradient(center top,#f7f6f7 0,#d4cdd2 100%);background:-moz-gradient(center top,#f7f6f7 0,#d4cdd2 100%)}.woocommerce .quantity .plus,.woocommerce-page .quantity .plus,.woocommerce #content .quantity .plus,.woocommerce-page #content .quantity .plus{top:0;right:0;border-bottom:0;-webkit-border-bottom-left-radius:0;-webkit-border-bottom-right-radius:0;border-bottom-left-radius:0;border-bottom-right-radius:0}.woocommerce .quantity .minus,.woocommerce-page .quantity .minus,.woocommerce #content .quantity .minus,.woocommerce-page #content .quantity .minus{bottom:0;right:0;-webkit-border-top-left-radius:0;-webkit-border-top-right-radius:0;border-top-left-radius:0;border-top-right-radius:0}.woocommerce #reviews h2 small,.woocommerce-page #reviews h2 small{float:right;color:#777;font-size:15px;line-height:21px;margin:10px 0 0}.woocommerce #reviews h2 small a,.woocommerce-page #reviews h2 small a{text-decoration:none;color:#777}.woocommerce #reviews h3,.woocommerce-page #reviews h3{margin:0}.woocommerce #reviews #respond,.woocommerce-page #reviews #respond{margin:0;border:0;padding:0}.woocommerce #reviews #comment,.woocommerce-page #reviews #comment{height:75px}.woocommerce #reviews #comments .add_review,.woocommerce-page #reviews #comments .add_review{*zoom:1}.woocommerce #reviews #comments .add_review:before,.woocommerce-page #reviews #comments .add_review:before,.woocommerce #reviews #comments .add_review:after,.woocommerce-page #reviews #comments .add_review:after{content:" ";display:table}.woocommerce #reviews #comments .add_review:after,.woocommerce-page #reviews #comments .add_review:after{clear:both}.woocommerce #reviews #comments h2,.woocommerce-page #reviews #comments h2{clear:none}.woocommerce #reviews #comments ol.commentlist,.woocommerce-page #reviews #comments ol.commentlist{*zoom:1;margin:0;width:100%;background:0;list-style:none}.woocommerce #reviews #comments ol.commentlist:before,.woocommerce-page #reviews #comments ol.commentlist:before,.woocommerce #reviews #comments ol.commentlist:after,.woocommerce-page #reviews #comments ol.commentlist:after{content:" ";display:table}.woocommerce #reviews #comments ol.commentlist:after,.woocommerce-page #reviews #comments ol.commentlist:after{clear:both}.woocommerce #reviews #comments ol.commentlist li,.woocommerce-page #reviews #comments ol.commentlist li{padding:0;margin:0 0 20px;position:relative;background:0;border:0}.woocommerce #reviews #comments ol.commentlist li .meta,.woocommerce-page #reviews #comments ol.commentlist li .meta{color:#777;font-size:.75em}.woocommerce #reviews #comments ol.commentlist li img.avatar,.woocommerce-page #reviews #comments ol.commentlist li img.avatar{float:left;position:absolute;top:0;left:0;padding:3px;width:32px;height:auto;background:#f7f6f7;border:1px solid #f0eef0;margin:0;line-height:1}.woocommerce #reviews #comments ol.commentlist li .comment-text,.woocommerce-page #reviews #comments ol.commentlist li .comment-text{margin:0 0 0 50px;border:1px solid #f0eef0;-webkit-border-radius:4px;border-radius:4px;padding:1em 1em 0;*zoom:1}.woocommerce #reviews #comments ol.commentlist li .comment-text:before,.woocommerce-page #reviews #comments ol.commentlist li .comment-text:before,.woocommerce #reviews #comments ol.commentlist li .comment-text:after,.woocommerce-page #reviews #comments ol.commentlist li .comment-text:after{content:" ";display:table}.woocommerce #reviews #comments ol.commentlist li .comment-text:after,.woocommerce-page #reviews #comments ol.commentlist li .comment-text:after{clear:both}.woocommerce #reviews #comments ol.commentlist li .comment-text p,.woocommerce-page #reviews #comments ol.commentlist li .comment-text p{margin:0 0 1em}.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta,.woocommerce-page #reviews #comments ol.commentlist li .comment-text p.meta{font-size:.83em}.woocommerce #reviews #comments ol.commentlist ul.children,.woocommerce-page #reviews #comments ol.commentlist ul.children{list-style:none outside;margin:20px 0 0 50px}.woocommerce #reviews #comments ol.commentlist ul.children .star-rating,.woocommerce-page #reviews #comments ol.commentlist ul.children .star-rating{display:none}.woocommerce #reviews #comments ol.commentlist #respond,.woocommerce-page #reviews #comments ol.commentlist #respond{border:1px solid #f0eef0;-webkit-border-radius:4px;border-radius:4px;padding:1em 1em 0;margin:20px 0 0 50px}.woocommerce #reviews #comments .commentlist>li:before,.woocommerce-page #reviews #comments .commentlist>li:before{content:""}.woocommerce .star-rating,.woocommerce-page .star-rating{float:right;overflow:hidden;position:relative;height:1em;line-height:1em;font-size:1em;width:5.4em;font-family:star}.woocommerce .star-rating:before,.woocommerce-page .star-rating:before{content:"\73\73\73\73\73";color:#e0dadf;float:left;top:0;left:0;position:absolute}.woocommerce .star-rating span,.woocommerce-page .star-rating span{overflow:hidden;float:left;top:0;left:0;position:absolute;padding-top:1.5em}.woocommerce .star-rating span:before,.woocommerce-page .star-rating span:before{content:"\53\53\53\53\53";top:0;position:absolute;left:0}.woocommerce .woocommerce-product-rating,.woocommerce-page .woocommerce-product-rating{line-height:2em;display:block}.woocommerce .woocommerce-product-rating .star-rating,.woocommerce-page .woocommerce-product-rating .star-rating{margin:.5em 4px 0 0;float:left}.woocommerce .products .star-rating,.woocommerce-page .products .star-rating{display:block;margin:0 0 .5em;float:none}.woocommerce .hreview-aggregate .star-rating,.woocommerce-page .hreview-aggregate .star-rating{margin:10px 0 0}.woocommerce #review_form #respond,.woocommerce-page #review_form #respond{*zoom:1;position:static;margin:0;width:auto;padding:0;background:transparent none;border:0}.woocommerce #review_form #respond:before,.woocommerce-page #review_form #respond:before,.woocommerce #review_form #respond:after,.woocommerce-page #review_form #respond:after{content:" ";display:table}.woocommerce #review_form #respond:after,.woocommerce-page #review_form #respond:after{clear:both}.woocommerce #review_form #respond p,.woocommerce-page #review_form #respond p{margin:0 0 10px}.woocommerce #review_form #respond .form-submit input,.woocommerce-page #review_form #respond .form-submit input{left:auto}.woocommerce #review_form #respond textarea,.woocommerce-page #review_form #respond textarea{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%}.woocommerce p.stars,.woocommerce-page p.stars{*zoom:1}.woocommerce p.stars:before,.woocommerce-page p.stars:before,.woocommerce p.stars:after,.woocommerce-page p.stars:after{content:" ";display:table}.woocommerce p.stars:after,.woocommerce-page p.stars:after{clear:both}.woocommerce p.stars span,.woocommerce-page p.stars span{width:80px;height:16px;position:relative;float:left;background:url(../images/star.png) repeat-x left 0}.woocommerce p.stars span a,.woocommerce-page p.stars span a{float:left;position:absolute;left:0;top:0;width:16px;height:0;padding-top:16px;overflow:hidden}.woocommerce p.stars span a:hover,.woocommerce-page p.stars span a:hover,.woocommerce p.stars span a:focus,.woocommerce-page p.stars span a:focus{background:url(../images/star.png) repeat-x left -16px}.woocommerce p.stars span a.active,.woocommerce-page p.stars span a.active{background:url(../images/star.png) repeat-x left -32px}.woocommerce p.stars span a.star-1,.woocommerce-page p.stars span a.star-1{width:16px;z-index:10}.woocommerce p.stars span a.star-2,.woocommerce-page p.stars span a.star-2{width:32px;z-index:9}.woocommerce p.stars span a.star-3,.woocommerce-page p.stars span a.star-3{width:48px;z-index:8}.woocommerce p.stars span a.star-4,.woocommerce-page p.stars span a.star-4{width:64px;z-index:7}.woocommerce p.stars span a.star-5,.woocommerce-page p.stars span a.star-5{width:80px;z-index:6}.woocommerce table.shop_attributes,.woocommerce-page table.shop_attributes{border:0;border-top:1px dotted rgba(0,0,0,.1);margin-bottom:1.618em;width:100%}.woocommerce table.shop_attributes th,.woocommerce-page table.shop_attributes th{width:150px;font-weight:700;padding:8px;border-top:0;border-bottom:1px dotted rgba(0,0,0,.1);margin:0;line-height:1.5em}.woocommerce table.shop_attributes td,.woocommerce-page table.shop_attributes td{font-style:italic;padding:0;border-top:0;border-bottom:1px dotted rgba(0,0,0,.1);margin:0;line-height:1.5em}.woocommerce table.shop_attributes td p,.woocommerce-page table.shop_attributes td p{margin:0;padding:8px 0}.woocommerce table.shop_attributes .alt td,.woocommerce-page table.shop_attributes .alt td,.woocommerce table.shop_attributes .alt th,.woocommerce-page table.shop_attributes .alt th{background:rgba(0,0,0,.025)}.woocommerce table.shop_table,.woocommerce-page table.shop_table{border:1px solid rgba(0,0,0,.1);margin:0 -1px 24px 0;text-align:left;width:100%;border-collapse:separate;-webkit-border-radius:5px;border-radius:5px}.woocommerce table.shop_table th,.woocommerce-page table.shop_table th{font-weight:700;line-height:18px;padding:9px 12px}.woocommerce table.shop_table td,.woocommerce-page table.shop_table td{border-top:1px solid rgba(0,0,0,.1);padding:6px 12px;vertical-align:middle}.woocommerce table.shop_table td small,.woocommerce-page table.shop_table td small{font-weight:400}.woocommerce table.shop_table tfoot td,.woocommerce-page table.shop_table tfoot td,.woocommerce table.shop_table tfoot th,.woocommerce-page table.shop_table tfoot th{font-weight:700;border-top:1px solid rgba(0,0,0,.1)}.woocommerce table.my_account_orders,.woocommerce-page table.my_account_orders{font-size:.85em}.woocommerce table.my_account_orders th,.woocommerce-page table.my_account_orders th,.woocommerce table.my_account_orders td,.woocommerce-page table.my_account_orders td{padding:4px 8px;vertical-align:middle}.woocommerce table.my_account_orders .button,.woocommerce-page table.my_account_orders .button{white-space:nowrap}.woocommerce table.my_account_orders .order-actions,.woocommerce-page table.my_account_orders .order-actions{text-align:right}.woocommerce table.my_account_orders .order-actions .button,.woocommerce-page table.my_account_orders .order-actions .button{margin:.125em 0 .125em .25em}.woocommerce td.product-name dl.variation,.woocommerce-page td.product-name dl.variation{margin:.25em 0;*zoom:1}.woocommerce td.product-name dl.variation:before,.woocommerce-page td.product-name dl.variation:before,.woocommerce td.product-name dl.variation:after,.woocommerce-page td.product-name dl.variation:after{content:" ";display:table}.woocommerce td.product-name dl.variation:after,.woocommerce-page td.product-name dl.variation:after{clear:both}.woocommerce td.product-name dl.variation dt,.woocommerce-page td.product-name dl.variation dt,.woocommerce td.product-name dl.variation dd,.woocommerce-page td.product-name dl.variation dd{display:inline-block;float:left;margin-bottom:1em}.woocommerce td.product-name dl.variation dt,.woocommerce-page td.product-name dl.variation dt{font-weight:700;padding:0 0 .25em;margin:0 4px 0 0;clear:left}.woocommerce td.product-name dl.variation dd,.woocommerce-page td.product-name dl.variation dd{padding:0 0 .25em}.woocommerce td.product-name dl.variation dd p:last-child,.woocommerce-page td.product-name dl.variation dd p:last-child{margin-bottom:0}.woocommerce td.product-name p.backorder_notification,.woocommerce-page td.product-name p.backorder_notification{font-size:.83em}.woocommerce td.product-quantity,.woocommerce-page td.product-quantity{min-width:80px}.woocommerce table.cart .product-thumbnail,.woocommerce-page table.cart .product-thumbnail,.woocommerce #content table.cart .product-thumbnail,.woocommerce-page #content table.cart .product-thumbnail{min-width:32px}.woocommerce table.cart img,.woocommerce-page table.cart img,.woocommerce #content table.cart img,.woocommerce-page #content table.cart img{width:32px}.woocommerce table.cart th,.woocommerce-page table.cart th,.woocommerce #content table.cart th,.woocommerce-page #content table.cart th,.woocommerce table.cart td,.woocommerce-page table.cart td,.woocommerce #content table.cart td,.woocommerce-page #content table.cart td{vertical-align:middle}.woocommerce table.cart a.remove,.woocommerce-page table.cart a.remove,.woocommerce #content table.cart a.remove,.woocommerce-page #content table.cart a.remove{display:block;font-size:1.5em;height:1em;width:1em;text-align:center;line-height:1;-webkit-border-radius:100%;border-radius:100%;color:red;text-decoration:none;font-weight:700}.woocommerce table.cart a.remove:hover,.woocommerce-page table.cart a.remove:hover,.woocommerce #content table.cart a.remove:hover,.woocommerce-page #content table.cart a.remove:hover{background-color:red;color:#fff}.woocommerce table.cart td.actions .coupon .input-text,.woocommerce-page table.cart td.actions .coupon .input-text,.woocommerce #content table.cart td.actions .coupon .input-text,.woocommerce-page #content table.cart td.actions .coupon .input-text{float:left;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;box-shadow:inset 0 1px 4px 0 rgba(0,0,0,.1);-webkit-box-shadow:inset 0 1px 4px 0 rgba(0,0,0,.1);border:1px solid #e0dadf;padding:6px 6px 5px;margin:0 4px 0 0;outline:0;line-height:1em}.woocommerce table.cart input,.woocommerce-page table.cart input,.woocommerce #content table.cart input,.woocommerce-page #content table.cart input{margin:0;vertical-align:middle;line-height:1em}.woocommerce ul.cart_list,.woocommerce-page ul.cart_list,.woocommerce ul.product_list_widget,.woocommerce-page ul.product_list_widget{list-style:none outside;padding:0;margin:0}.woocommerce ul.cart_list li,.woocommerce-page ul.cart_list li,.woocommerce ul.product_list_widget li,.woocommerce-page ul.product_list_widget li{padding:4px 0;margin:0;*zoom:1;list-style:none}.woocommerce ul.cart_list li:before,.woocommerce-page ul.cart_list li:before,.woocommerce ul.product_list_widget li:before,.woocommerce-page ul.product_list_widget li:before,.woocommerce ul.cart_list li:after,.woocommerce-page ul.cart_list li:after,.woocommerce ul.product_list_widget li:after,.woocommerce-page ul.product_list_widget li:after{content:" ";display:table}.woocommerce ul.cart_list li:after,.woocommerce-page ul.cart_list li:after,.woocommerce ul.product_list_widget li:after,.woocommerce-page ul.product_list_widget li:after{clear:both}.woocommerce ul.cart_list li a,.woocommerce-page ul.cart_list li a,.woocommerce ul.product_list_widget li a,.woocommerce-page ul.product_list_widget li a{display:block;font-weight:700}.woocommerce ul.cart_list li img,.woocommerce-page ul.cart_list li img,.woocommerce ul.product_list_widget li img,.woocommerce-page ul.product_list_widget li img{float:right;margin-left:4px;width:32px;height:auto;box-shadow:0 1px 2px 0 rgba(0,0,0,.3);-webkit-box-shadow:0 1px 2px 0 rgba(0,0,0,.3)}.woocommerce ul.cart_list li dl,.woocommerce-page ul.cart_list li dl,.woocommerce ul.product_list_widget li dl,.woocommerce-page ul.product_list_widget li dl{margin:0;padding-left:1em;border-left:2px solid rgba(0,0,0,.1);*zoom:1}.woocommerce ul.cart_list li dl:before,.woocommerce-page ul.cart_list li dl:before,.woocommerce ul.product_list_widget li dl:before,.woocommerce-page ul.product_list_widget li dl:before,.woocommerce ul.cart_list li dl:after,.woocommerce-page ul.cart_list li dl:after,.woocommerce ul.product_list_widget li dl:after,.woocommerce-page ul.product_list_widget li dl:after{content:" ";display:table}.woocommerce ul.cart_list li dl:after,.woocommerce-page ul.cart_list li dl:after,.woocommerce ul.product_list_widget li dl:after,.woocommerce-page ul.product_list_widget li dl:after{clear:both}.woocommerce ul.cart_list li dl dt,.woocommerce-page ul.cart_list li dl dt,.woocommerce ul.product_list_widget li dl dt,.woocommerce-page ul.product_list_widget li dl dt,.woocommerce ul.cart_list li dl dd,.woocommerce-page ul.cart_list li dl dd,.woocommerce ul.product_list_widget li dl dd,.woocommerce-page ul.product_list_widget li dl dd{display:inline-block;float:left;margin-botom:1em}.woocommerce ul.cart_list li dl dt,.woocommerce-page ul.cart_list li dl dt,.woocommerce ul.product_list_widget li dl dt,.woocommerce-page ul.product_list_widget li dl dt{font-weight:700;padding:0 0 .25em;margin:0 4px 0 0;clear:left}.woocommerce ul.cart_list li dl dd,.woocommerce-page ul.cart_list li dl dd,.woocommerce ul.product_list_widget li dl dd,.woocommerce-page ul.product_list_widget li dl dd{padding:0 0 .25em}.woocommerce ul.cart_list li dl dd p:last-child,.woocommerce-page ul.cart_list li dl dd p:last-child,.woocommerce ul.product_list_widget li dl dd p:last-child,.woocommerce-page ul.product_list_widget li dl dd p:last-child{margin-bottom:0}.woocommerce ul.cart_list li .star-rating,.woocommerce-page ul.cart_list li .star-rating,.woocommerce ul.product_list_widget li .star-rating,.woocommerce-page ul.product_list_widget li .star-rating{float:none}.woocommerce.widget_shopping_cart .total,.woocommerce-page.widget_shopping_cart .total,.woocommerce .widget_shopping_cart .total,.woocommerce-page .widget_shopping_cart .total{border-top:3px double #f7f6f7;padding:4px 0 0}.woocommerce.widget_shopping_cart .total strong,.woocommerce-page.widget_shopping_cart .total strong,.woocommerce .widget_shopping_cart .total strong,.woocommerce-page .widget_shopping_cart .total strong{min-width:40px;display:inline-block}.woocommerce.widget_shopping_cart .buttons,.woocommerce-page.widget_shopping_cart .buttons,.woocommerce .widget_shopping_cart .buttons,.woocommerce-page .widget_shopping_cart .buttons{*zoom:1}.woocommerce.widget_shopping_cart .buttons:before,.woocommerce-page.widget_shopping_cart .buttons:before,.woocommerce .widget_shopping_cart .buttons:before,.woocommerce-page .widget_shopping_cart .buttons:before,.woocommerce.widget_shopping_cart .buttons:after,.woocommerce-page.widget_shopping_cart .buttons:after,.woocommerce .widget_shopping_cart .buttons:after,.woocommerce-page .widget_shopping_cart .buttons:after{content:" ";display:table}.woocommerce.widget_shopping_cart .buttons:after,.woocommerce-page.widget_shopping_cart .buttons:after,.woocommerce .widget_shopping_cart .buttons:after,.woocommerce-page .widget_shopping_cart .buttons:after{clear:both}.woocommerce .cart-collaterals .shipping_calculator .button,.woocommerce-page .cart-collaterals .shipping_calculator .button{width:100%;float:none;display:block}.woocommerce .cart-collaterals .cart_totals p,.woocommerce-page .cart-collaterals .cart_totals p{margin:0}.woocommerce .cart-collaterals .cart_totals p small,.woocommerce-page .cart-collaterals .cart_totals p small{color:#777;font-size:.83em}.woocommerce .cart-collaterals .cart_totals table,.woocommerce-page .cart-collaterals .cart_totals table{border-collapse:separate;-webkit-border-radius:5px;border-radius:5px;margin:0 0 6px;padding:0}.woocommerce .cart-collaterals .cart_totals table tr:first-child th,.woocommerce-page .cart-collaterals .cart_totals table tr:first-child th,.woocommerce .cart-collaterals .cart_totals table tr:first-child td,.woocommerce-page .cart-collaterals .cart_totals table tr:first-child td{border-top:0}.woocommerce .cart-collaterals .cart_totals table th,.woocommerce-page .cart-collaterals .cart_totals table th{padding:6px 12px 0 0;width:25%}.woocommerce .cart-collaterals .cart_totals table td,.woocommerce-page .cart-collaterals .cart_totals table td{padding:6px 0}.woocommerce .cart-collaterals .cart_totals table td,.woocommerce-page .cart-collaterals .cart_totals table td,.woocommerce .cart-collaterals .cart_totals table th,.woocommerce-page .cart-collaterals .cart_totals table th{vertical-align:top}.woocommerce .cart-collaterals .cart_totals table small,.woocommerce-page .cart-collaterals .cart_totals table small{display:block;color:#777}.woocommerce .cart-collaterals .cart_totals table select,.woocommerce-page .cart-collaterals .cart_totals table select{width:100%}.woocommerce .cart-collaterals .cart_totals .discount td,.woocommerce-page .cart-collaterals .cart_totals .discount td{color:#85ad74}.woocommerce .cart-collaterals .cart_totals tr td,.woocommerce-page .cart-collaterals .cart_totals tr td,.woocommerce .cart-collaterals .cart_totals tr th,.woocommerce-page .cart-collaterals .cart_totals tr th{border-top:1px solid #f7f6f7}.woocommerce .cart-collaterals .cart_totals a.button.alt,.woocommerce-page .cart-collaterals .cart_totals a.button.alt{width:193px;display:block;font-size:.92em}.woocommerce form .form-row,.woocommerce-page form .form-row{padding:3px;margin:0 0 6px}.woocommerce form .form-row [placeholder]:focus::-webkit-input-placeholder,.woocommerce-page form .form-row [placeholder]:focus::-webkit-input-placeholder{-webkit-transition:opacity .5s .5s ease;-moz-transition:opacity .5s .5s ease;transition:opacity .5s .5s ease;opacity:0}.woocommerce form .form-row label,.woocommerce-page form .form-row label{line-height:2em}.woocommerce form .form-row label.hidden,.woocommerce-page form .form-row label.hidden{visibility:hidden}.woocommerce form .form-row label.inline,.woocommerce-page form .form-row label.inline{display:inline}.woocommerce form .form-row select,.woocommerce-page form .form-row select{cursor:pointer;margin:0}.woocommerce form .form-row .required,.woocommerce-page form .form-row .required{color:red;font-weight:700;border:0}.woocommerce form .form-row .input-checkbox,.woocommerce-page form .form-row .input-checkbox{display:inline;margin:-2px 8px 0 0;text-align:center;vertical-align:middle}.woocommerce form .form-row input.input-text,.woocommerce-page form .form-row input.input-text,.woocommerce form .form-row textarea,.woocommerce-page form .form-row textarea{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;margin:0;outline:0;line-height:1em}.woocommerce form .form-row textarea,.woocommerce-page form .form-row textarea{height:4em;line-height:1.5em;display:block;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.woocommerce form .form-row.validate-required.woocommerce-invalid .chosen-single,.woocommerce-page form .form-row.validate-required.woocommerce-invalid .chosen-single,.woocommerce form .form-row.validate-required.woocommerce-invalid .chosen-drop,.woocommerce-page form .form-row.validate-required.woocommerce-invalid .chosen-drop,.woocommerce form .form-row.validate-required.woocommerce-invalid input.input-text,.woocommerce-page form .form-row.validate-required.woocommerce-invalid input.input-text,.woocommerce form .form-row.validate-required.woocommerce-invalid select,.woocommerce-page form .form-row.validate-required.woocommerce-invalid select{border-color:#fb7f88}.woocommerce form .form-row ::-webkit-input-placeholder,.woocommerce-page form .form-row ::-webkit-input-placeholder{line-height:normal}.woocommerce form .form-row :-moz-placeholder,.woocommerce-page form .form-row :-moz-placeholder{line-height:normal}.woocommerce form .form-row :-ms-input-placeholder,.woocommerce-page form .form-row :-ms-input-placeholder{line-height:normal}.woocommerce form.login,.woocommerce-page form.login,.woocommerce form.checkout_coupon,.woocommerce-page form.checkout_coupon,.woocommerce form.register,.woocommerce-page form.register{border:1px solid #e0dadf;padding:20px;margin:2em 0;text-align:left;-webkit-border-radius:5px;border-radius:5px}.woocommerce ul#shipping_method,.woocommerce-page ul#shipping_method{list-style:none outside;margin:0;padding:0}.woocommerce ul#shipping_method li,.woocommerce-page ul#shipping_method li{margin:0;padding:.25em 0 .25em 22px;text-indent:-22px;list-style:none outside}.woocommerce ul#shipping_method .amount,.woocommerce-page ul#shipping_method .amount{font-weight:700}.woocommerce p.woocommerce-shipping-contents,.woocommerce-page p.woocommerce-shipping-contents{margin:0}.woocommerce .checkout .col-2 h3,.woocommerce-page .checkout .col-2 h3{float:left;clear:none}.woocommerce .checkout .col-2 .notes,.woocommerce-page .checkout .col-2 .notes{clear:left}.woocommerce .checkout .col-2 .form-row-first,.woocommerce-page .checkout .col-2 .form-row-first{clear:left}.woocommerce .checkout .create-account small,.woocommerce-page .checkout .create-account small{font-size:11px;color:#777;line-height:13px;font-weight:400}.woocommerce .checkout div.shipping-address,.woocommerce-page .checkout div.shipping-address{padding:0;clear:left;width:100%}.woocommerce .checkout .shipping_address,.woocommerce-page .checkout .shipping_address{clear:both}.woocommerce #payment,.woocommerce-page #payment{background:#f7f6f7;-webkit-border-radius:5px;border-radius:5px}.woocommerce #payment ul.payment_methods,.woocommerce-page #payment ul.payment_methods{*zoom:1;text-align:left;padding:1em;border-bottom:1px solid #e0dadf;margin:0;list-style:none outside}.woocommerce #payment ul.payment_methods:before,.woocommerce-page #payment ul.payment_methods:before,.woocommerce #payment ul.payment_methods:after,.woocommerce-page #payment ul.payment_methods:after{content:" ";display:table}.woocommerce #payment ul.payment_methods:after,.woocommerce-page #payment ul.payment_methods:after{clear:both}.woocommerce #payment ul.payment_methods li,.woocommerce-page #payment ul.payment_methods li{line-height:2em;text-align:left;margin:0;font-weight:400}.woocommerce #payment ul.payment_methods li input,.woocommerce-page #payment ul.payment_methods li input{margin:0 1em 0 0}.woocommerce #payment ul.payment_methods li img,.woocommerce-page #payment ul.payment_methods li img{vertical-align:middle;margin:-2px 0 0 .5em;position:relative}.woocommerce #payment div.form-row,.woocommerce-page #payment div.form-row{padding:1em;border-top:1px solid #fff}.woocommerce #payment div.payment_box,.woocommerce-page #payment div.payment_box{position:relative;width:96%;padding:1em 2%;margin:1em 0;font-size:.92em;-webkit-border-radius:2px;border-radius:2px;line-height:1.5em;background:#ebe8eb;background:-webkit-gradient(linear,left top,left bottom,from(#ebe8eb),to(#e0dadf));background:-webkit-linear-gradient(#ebe8eb,#e0dadf);background:-moz-linear-gradient(center top,#ebe8eb 0,#e0dadf 100%);background:-moz-gradient(center top,#ebe8eb 0,#e0dadf 100%);box-shadow:0 1px 2px 0 rgba(0,0,0,.25);-webkit-box-shadow:0 1px 2px 0 rgba(0,0,0,.25);color:#5e5e5e;text-shadow:0 1px 0 rgba(255,255,255,.8)}.woocommerce #payment div.payment_box input.input-text,.woocommerce-page #payment div.payment_box input.input-text,.woocommerce #payment div.payment_box textarea,.woocommerce-page #payment div.payment_box textarea{border-color:#d4cdd2;border-top-color:#c8bfc6;box-shadow:0 1px 0 0 rgba(255,255,255,.4);-webkit-box-shadow:0 1px 0 0 rgba(255,255,255,.4)}.woocommerce #payment div.payment_box ::-webkit-input-placeholder,.woocommerce-page #payment div.payment_box ::-webkit-input-placeholder{color:#c8bfc6}.woocommerce #payment div.payment_box :-moz-placeholder,.woocommerce-page #payment div.payment_box :-moz-placeholder{color:#c8bfc6}.woocommerce #payment div.payment_box :-ms-input-placeholder,.woocommerce-page #payment div.payment_box :-ms-input-placeholder{color:#c8bfc6}.woocommerce #payment div.payment_box .wc-credit-card-form-card-number,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number,.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry,.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc{font-size:1.5em;padding:8px;background-repeat:no-repeat;background-position:right}.woocommerce #payment div.payment_box .wc-credit-card-form-card-number.visa,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number.visa,.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry.visa,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry.visa,.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc.visa,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc.visa{background-image:url(../images/icons/credit-cards/visa.png)}.woocommerce #payment div.payment_box .wc-credit-card-form-card-number.mastercard,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number.mastercard,.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard{background-image:url(../images/icons/credit-cards/mastercard.png)}.woocommerce #payment div.payment_box .wc-credit-card-form-card-number.laser,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number.laser,.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry.laser,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry.laser,.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc.laser,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc.laser{background-image:url(../images/icons/credit-cards/laser.png)}.woocommerce #payment div.payment_box .wc-credit-card-form-card-number.dinersclub,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number.dinersclub,.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub{background-image:url(../images/icons/credit-cards/diners.png)}.woocommerce #payment div.payment_box .wc-credit-card-form-card-number.maestro,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number.maestro,.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc.maestro{background-image:url(../images/icons/credit-cards/maestro.png)}.woocommerce #payment div.payment_box .wc-credit-card-form-card-number.jcb,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number.jcb,.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc.jcb{background-image:url(../images/icons/credit-cards/jcb.png)}.woocommerce #payment div.payment_box .wc-credit-card-form-card-number.amex,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number.amex,.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry.amex,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry.amex,.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc.amex,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc.amex{background-image:url(../images/icons/credit-cards/amex.png)}.woocommerce #payment div.payment_box .wc-credit-card-form-card-number.discover,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number.discover,.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry.discover,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry.discover,.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc.discover,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc.discover{background-image:url(../images/icons/credit-cards/discover.png)}.woocommerce #payment div.payment_box span.help,.woocommerce-page #payment div.payment_box span.help{font-size:11px;color:#777;line-height:13px;font-weight:400}.woocommerce #payment div.payment_box .form-row,.woocommerce-page #payment div.payment_box .form-row{margin:0 0 1em}.woocommerce #payment div.payment_box p:last-child,.woocommerce-page #payment div.payment_box p:last-child{margin-bottom:0}.woocommerce #payment div.payment_box:after,.woocommerce-page #payment div.payment_box:after{content:"";display:block;border:8px solid #ebe8eb;border-right-color:transparent;border-left-color:transparent;border-top-color:transparent;position:absolute;top:-3px;left:0;margin:-1em 0 0 2em}.woocommerce .order_details,.woocommerce-page .order_details{*zoom:1;margin:0 0 1.5em;list-style:none}.woocommerce .order_details:before,.woocommerce-page .order_details:before,.woocommerce .order_details:after,.woocommerce-page .order_details:after{content:" ";display:table}.woocommerce .order_details:after,.woocommerce-page .order_details:after{clear:both}.woocommerce .order_details li,.woocommerce-page .order_details li{float:left;margin-right:2em;text-transform:uppercase;font-size:.715em;line-height:1em;border-right:1px dashed #e0dadf;padding-right:2em}.woocommerce .order_details li strong,.woocommerce-page .order_details li strong{display:block;font-size:1.4em;text-transform:none;line-height:1.5em}.woocommerce .order_details li:last-of-type,.woocommerce-page .order_details li:last-of-type{border:0}.woocommerce .addresses .title,.woocommerce-page .addresses .title{*zoom:1}.woocommerce .addresses .title:before,.woocommerce-page .addresses .title:before,.woocommerce .addresses .title:after,.woocommerce-page .addresses .title:after{content:" ";display:table}.woocommerce .addresses .title:after,.woocommerce-page .addresses .title:after{clear:both}.woocommerce .addresses .title h3,.woocommerce-page .addresses .title h3{float:left}.woocommerce .addresses .title .edit,.woocommerce-page .addresses .title .edit{float:right}.woocommerce ol.commentlist.notes li.note p.meta,.woocommerce-page ol.commentlist.notes li.note p.meta{font-weight:700;margin-bottom:0}.woocommerce ol.commentlist.notes li.note .description p:last-child,.woocommerce-page ol.commentlist.notes li.note .description p:last-child{margin-bottom:0}.woocommerce ul.digital-downloads,.woocommerce-page ul.digital-downloads{margin-left:0;padding-left:0}.woocommerce ul.digital-downloads li,.woocommerce-page ul.digital-downloads li{list-style:none;margin-left:0;padding-left:0}.woocommerce ul.digital-downloads li:before,.woocommerce-page ul.digital-downloads li:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:7px;content:"\e00a"}.woocommerce ul.digital-downloads li .count,.woocommerce-page ul.digital-downloads li .count{float:right}.woocommerce .widget_layered_nav ul,.woocommerce-page .widget_layered_nav ul{margin:0;padding:0;border:0;list-style:none outside}.woocommerce .widget_layered_nav ul li,.woocommerce-page .widget_layered_nav ul li{*zoom:1;padding:0 0 1px;list-style:none}.woocommerce .widget_layered_nav ul li:before,.woocommerce-page .widget_layered_nav ul li:before,.woocommerce .widget_layered_nav ul li:after,.woocommerce-page .widget_layered_nav ul li:after{content:" ";display:table}.woocommerce .widget_layered_nav ul li:after,.woocommerce-page .widget_layered_nav ul li:after{clear:both}.woocommerce .widget_layered_nav ul li a,.woocommerce-page .widget_layered_nav ul li a,.woocommerce .widget_layered_nav ul li span,.woocommerce-page .widget_layered_nav ul li span{padding:1px 0;float:left}.woocommerce .widget_layered_nav ul li.chosen a,.woocommerce-page .widget_layered_nav ul li.chosen a{padding:0 6px;text-decoration:none;border:1px solid #ad74a2;background:#ad74a2;box-shadow:inset 0 1px 1px rgba(255,255,255,.5) #888;-webkit-box-shadow:inset 0 1px 1px rgba(255,255,255,.5) #888;color:#fff;-webkit-border-radius:3px;border-radius:3px}.woocommerce .widget_layered_nav ul li.chosen a:before,.woocommerce-page .widget_layered_nav ul li.chosen a:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:7px;content:"\e013"}.woocommerce .widget_layered_nav ul small.count,.woocommerce-page .widget_layered_nav ul small.count{float:right;margin-left:6px;font-size:1em;padding:1px 0;color:#777}.woocommerce .widget_layered_nav_filters ul,.woocommerce-page .widget_layered_nav_filters ul{margin:0;padding:0;border:0;list-style:none outside;overflow:hidden;zoom:1}.woocommerce .widget_layered_nav_filters ul li,.woocommerce-page .widget_layered_nav_filters ul li{float:left;padding:0 1px 1px 0;list-style:none}.woocommerce .widget_layered_nav_filters ul li a,.woocommerce-page .widget_layered_nav_filters ul li a{padding:0 6px;text-decoration:none;border:1px solid #ad74a2;background:#ad74a2;box-shadow:inset 0 1px 1px rgba(255,255,255,.5) #888;-webkit-box-shadow:inset 0 1px 1px rgba(255,255,255,.5) #888;color:#fff;-webkit-border-radius:3px;border-radius:3px;float:left}.woocommerce .widget_layered_nav_filters ul li a:before,.woocommerce-page .widget_layered_nav_filters ul li a:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:7px;content:"\e013"}.woocommerce .widget_price_filter .price_slider,.woocommerce-page .widget_price_filter .price_slider{margin-bottom:1em}.woocommerce .widget_price_filter .price_slider_amount,.woocommerce-page .widget_price_filter .price_slider_amount{text-align:right;line-height:2.4em;font-size:.8751em}.woocommerce .widget_price_filter .price_slider_amount .button,.woocommerce-page .widget_price_filter .price_slider_amount .button{font-size:1.15em}.woocommerce .widget_price_filter .price_slider_amount .button,.woocommerce-page .widget_price_filter .price_slider_amount .button{float:left}.woocommerce .widget_price_filter .ui-slider,.woocommerce-page .widget_price_filter .ui-slider{position:relative;text-align:left}.woocommerce .widget_price_filter .ui-slider .ui-slider-handle,.woocommerce-page .widget_price_filter .ui-slider .ui-slider-handle{position:absolute;z-index:2;width:.9em;height:.9em;-webkit-border-radius:1em;border-radius:1em;border:1px solid #150d14;cursor:pointer;background:#ad74a2;background:-webkit-gradient(linear,left top,left bottom,from(#ad74a2),to(#96588a));background:-webkit-linear-gradient(#ad74a2,#96588a);background:-moz-linear-gradient(center top,#ad74a2 0,#96588a 100%);background:-moz-gradient(center top,#ad74a2 0,#96588a 100%);outline:0;top:-.3em;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.65);-moz-box-shadow:0 1px 2px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.65);box-shadow:0 1px 2px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.65)}.woocommerce .widget_price_filter .ui-slider .ui-slider-handle:last-child,.woocommerce-page .widget_price_filter .ui-slider .ui-slider-handle:last-child{margin-left:-1em}.woocommerce .widget_price_filter .ui-slider .ui-slider-range,.woocommerce-page .widget_price_filter .ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background:#ad74a2 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAADCAYAAABS3WWCAAAAFUlEQVQIHWP4//9/PRMDA8NzEPEMADLLBU76a5idAAAAAElFTkSuQmCC) top repeat-x;box-shadow:inset 0 0 0 1px rgba(0,0,0,.5);-webkit-box-shadow:inset 0 0 0 1px rgba(0,0,0,.5);-webkit-border-radius:1em;border-radius:1em}.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content,.woocommerce-page .widget_price_filter .price_slider_wrapper .ui-widget-content{-webkit-border-radius:1em;border-radius:1em;background:#1e1e1e;background:-webkit-gradient(linear,left top,left bottom,from(#1e1e1e),to(#6a6a6a));background:-webkit-linear-gradient(#1e1e1e,#6a6a6a);background:-moz-linear-gradient(center top,#1e1e1e 0,#6a6a6a 100%);background:-moz-gradient(center top,#1e1e1e 0,#6a6a6a 100%)}.woocommerce .widget_price_filter .ui-slider-horizontal,.woocommerce-page .widget_price_filter .ui-slider-horizontal{height:.5em}.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range,.woocommerce-page .widget_price_filter .ui-slider-horizontal .ui-slider-range{top:0;height:100%}.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range-min,.woocommerce-page .widget_price_filter .ui-slider-horizontal .ui-slider-range-min{left:-1px}.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range-max,.woocommerce-page .widget_price_filter .ui-slider-horizontal .ui-slider-range-max{right:-1px}.twentythirteen .entry-summary{padding:0}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){.woocommerce a.button.loading:before,.woocommerce-page a.button.loading:before,.woocommerce button.button.loading:before,.woocommerce-page button.button.loading:before,.woocommerce input.button.loading:before,.woocommerce-page input.button.loading:before,.woocommerce #respond input#submit.loading:before,.woocommerce-page #respond input#submit.loading:before,.woocommerce #content input.button.loading:before,.woocommerce-page #content input.button.loading:before{background-image:url(../images/ajax-loader@2x.gif);background-size:16px 16px}.woocommerce p.stars span,.woocommerce-page p.stars span{background-image:url(../images/star@2x.png);background-size:16px 48px}.woocommerce p.stars span a:hover,.woocommerce-page p.stars span a:hover,.woocommerce p.stars span a:focus,.woocommerce-page p.stars span a:focus{background-image:url(../images/star@2x.png);background-size:16px 48px}.woocommerce p.stars span a.active,.woocommerce-page p.stars span a.active{background-image:url(../images/star@2x.png);background-size:16px 48px}} \ No newline at end of file +.clear{clear:both}.nobr{white-space:nowrap}@font-face{font-family:star;src:url(../fonts/star.eot);src:url(../fonts/star.eot?#iefix) format('embedded-opentype'),url(../fonts/star.woff) format('woff'),url(../fonts/star.ttf) format('truetype'),url(../fonts/star.svg#star) format('svg');font-weight:400;font-style:normal}@font-face{font-family:WooCommerce;src:url(../fonts/WooCommerce.eot);src:url(../fonts/WooCommerce.eot?#iefix) format('embedded-opentype'),url(../fonts/WooCommerce.woff) format('woff'),url(../fonts/WooCommerce.ttf) format('truetype'),url(../fonts/WooCommerce.svg#WooCommerce) format('svg');font-weight:400;font-style:normal}p.demo_store{position:fixed;top:0;left:0;right:0;margin:0;width:100%;font-size:1em;padding:.5em 0;text-align:center;background:#ad74a2;background:-webkit-gradient(linear,left top,left bottom,from(#ad74a2),to(#96588a));background:-webkit-linear-gradient(#ad74a2,#96588a);background:-moz-linear-gradient(center top,#ad74a2 0,#96588a 100%);background:-moz-gradient(center top,#ad74a2 0,#96588a 100%);border:1px solid #96588a;color:#fff;z-index:99998;box-shadow:inset 0 0 0 3px rgba(255,255,255,.2);-webkit-box-shadow:inset 0 0 0 3px rgba(255,255,255,.2)}.admin-bar p.demo_store{top:28px}.wc-forward a:after,.wc-forward:after{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-left:7px;content:"\e029";font-size:.75em}.wc-backward a:before,.wc-backward:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:7px;content:"\e02f";font-size:.75em}.woocommerce .woocommerce-error,.woocommerce .woocommerce-info,.woocommerce .woocommerce-message,.woocommerce-page .woocommerce-error,.woocommerce-page .woocommerce-info,.woocommerce-page .woocommerce-message{padding:1em 1em 1em 3.5em!important;margin:0 0 2em!important;position:relative;-webkit-border-radius:4px;border-radius:4px;background:#fcfbfc;background:-webkit-gradient(linear,left top,left bottom,from(#fcfbfc),to(#f7f6f7));background:-webkit-linear-gradient(#fcfbfc,#f7f6f7);background:-moz-linear-gradient(center top,#fcfbfc 0,#f7f6f7 100%);background:-moz-gradient(center top,#fcfbfc 0,#f7f6f7 100%);color:#5e5e5e;text-shadow:0 1px 0 #fff;list-style:none!important;width:auto;-webkit-box-shadow:inset 0 -2px 6px rgba(0,0,0,.05),inset 0 -2px 30px rgba(0,0,0,.015),inset 0 1px 0 #fff,0 1px 2px rgba(0,0,0,.3);box-shadow:inset 0 -2px 6px rgba(0,0,0,.05),inset 0 -2px 30px rgba(0,0,0,.015),inset 0 1px 0 #fff,0 1px 2px rgba(0,0,0,.3)}.woocommerce .woocommerce-error:after,.woocommerce .woocommerce-error:before,.woocommerce .woocommerce-info:after,.woocommerce .woocommerce-info:before,.woocommerce .woocommerce-message:after,.woocommerce .woocommerce-message:before,.woocommerce-page .woocommerce-error:after,.woocommerce-page .woocommerce-error:before,.woocommerce-page .woocommerce-info:after,.woocommerce-page .woocommerce-info:before,.woocommerce-page .woocommerce-message:after,.woocommerce-page .woocommerce-message:before{content:" ";display:table}.woocommerce .woocommerce-error:after,.woocommerce .woocommerce-info:after,.woocommerce .woocommerce-message:after,.woocommerce-page .woocommerce-error:after,.woocommerce-page .woocommerce-info:after,.woocommerce-page .woocommerce-message:after{clear:both}.woocommerce .woocommerce-error:before,.woocommerce .woocommerce-info:before,.woocommerce .woocommerce-message:before,.woocommerce-page .woocommerce-error:before,.woocommerce-page .woocommerce-info:before,.woocommerce-page .woocommerce-message:before{content:"";height:1.5em;width:1.5em;display:block;position:absolute;top:0;left:1em;font-family:sans-serif;font-size:1em;line-height:1.5;text-align:center;color:#fff;text-shadow:0 1px 0 rgba(0,0,0,.2);padding-top:1em;-webkit-border-bottom-left-radius:4px;-webkit-border-bottom-right-radius:4px;border-bottom-left-radius:4px;border-bottom-right-radius:4px;box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.1);-webkit-box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.1)}.woocommerce .woocommerce-error .button,.woocommerce .woocommerce-info .button,.woocommerce .woocommerce-message .button,.woocommerce-page .woocommerce-error .button,.woocommerce-page .woocommerce-info .button,.woocommerce-page .woocommerce-message .button{float:right}.woocommerce .woocommerce-error li,.woocommerce .woocommerce-info li,.woocommerce .woocommerce-message li,.woocommerce-page .woocommerce-error li,.woocommerce-page .woocommerce-info li,.woocommerce-page .woocommerce-message li{list-style:none!important;padding-left:0!important;margin-left:0!important}.woocommerce .woocommerce-message,.woocommerce-page .woocommerce-message{border-top:3px solid #8fae1b}.woocommerce .woocommerce-message:before,.woocommerce-page .woocommerce-message:before{background-color:#8fae1b;content:"\2713"}.woocommerce .woocommerce-info,.woocommerce-page .woocommerce-info{border-top:3px solid #1e85be}.woocommerce .woocommerce-info:before,.woocommerce-page .woocommerce-info:before{background-color:#1e85be;content:"i";font-family:Times,Georgia,serif;font-style:italic}.woocommerce .woocommerce-error,.woocommerce-page .woocommerce-error{border-top:3px solid #b81c23}.woocommerce .woocommerce-error:before,.woocommerce-page .woocommerce-error:before{background-color:#b81c23;content:"\00d7";font-weight:700}.woocommerce small.note,.woocommerce-page small.note{display:block;color:#777;font-size:11px;line-height:21px;margin-top:10px}.woocommerce .woocommerce-breadcrumb,.woocommerce-page .woocommerce-breadcrumb{margin:0 0 1em;padding:0;font-size:.92em;color:#777}.woocommerce .woocommerce-breadcrumb:after,.woocommerce .woocommerce-breadcrumb:before,.woocommerce-page .woocommerce-breadcrumb:after,.woocommerce-page .woocommerce-breadcrumb:before{content:" ";display:table}.woocommerce .woocommerce-breadcrumb:after,.woocommerce-page .woocommerce-breadcrumb:after{clear:both}.woocommerce .woocommerce-breadcrumb a,.woocommerce-page .woocommerce-breadcrumb a{color:#777}.woocommerce #content div.product,.woocommerce div.product,.woocommerce-page #content div.product,.woocommerce-page div.product{margin-bottom:0;position:relative}.woocommerce #content div.product .product_title,.woocommerce div.product .product_title,.woocommerce-page #content div.product .product_title,.woocommerce-page div.product .product_title{clear:none;margin-top:0;padding:0}.woocommerce #content div.product p.price,.woocommerce #content div.product span.price,.woocommerce div.product p.price,.woocommerce div.product span.price,.woocommerce-page #content div.product p.price,.woocommerce-page #content div.product span.price,.woocommerce-page div.product p.price,.woocommerce-page div.product span.price{color:#85ad74;font-size:1.25em}.woocommerce #content div.product p.price ins,.woocommerce #content div.product span.price ins,.woocommerce div.product p.price ins,.woocommerce div.product span.price ins,.woocommerce-page #content div.product p.price ins,.woocommerce-page #content div.product span.price ins,.woocommerce-page div.product p.price ins,.woocommerce-page div.product span.price ins{background:inherit}.woocommerce #content div.product p.price del,.woocommerce #content div.product span.price del,.woocommerce div.product p.price del,.woocommerce div.product span.price del,.woocommerce-page #content div.product p.price del,.woocommerce-page #content div.product span.price del,.woocommerce-page div.product p.price del,.woocommerce-page div.product span.price del{font-size:.67em;color:rgba(145,145,145,.5)}.woocommerce #content div.product p.stock,.woocommerce div.product p.stock,.woocommerce-page #content div.product p.stock,.woocommerce-page div.product p.stock{font-size:.92em}.woocommerce #content div.product .stock,.woocommerce div.product .stock,.woocommerce-page #content div.product .stock,.woocommerce-page div.product .stock{color:#85ad74}.woocommerce #content div.product .out-of-stock,.woocommerce div.product .out-of-stock,.woocommerce-page #content div.product .out-of-stock,.woocommerce-page div.product .out-of-stock{color:red}.woocommerce #content div.product div.images,.woocommerce div.product div.images,.woocommerce-page #content div.product div.images,.woocommerce-page div.product div.images{margin-bottom:2em}.woocommerce #content div.product div.images img,.woocommerce div.product div.images img,.woocommerce-page #content div.product div.images img,.woocommerce-page div.product div.images img{display:block;width:100%;height:auto;box-shadow:0 1px 2px 0 rgba(0,0,0,.3);-webkit-box-shadow:0 1px 2px 0 rgba(0,0,0,.3);-webkit-transition:all ease-in-out .2s;-moz-transition:all ease-in-out .2s;-o-transition:all ease-in-out .2s;transition:all ease-in-out .2s}.woocommerce #content div.product div.images div.thumbnails,.woocommerce div.product div.images div.thumbnails,.woocommerce-page #content div.product div.images div.thumbnails,.woocommerce-page div.product div.images div.thumbnails{padding-top:1em}.woocommerce #content div.product div.summary,.woocommerce div.product div.summary,.woocommerce-page #content div.product div.summary,.woocommerce-page div.product div.summary{margin-bottom:2em}.woocommerce #content div.product div.social,.woocommerce div.product div.social,.woocommerce-page #content div.product div.social,.woocommerce-page div.product div.social{text-align:right;margin:0 0 1em}.woocommerce #content div.product div.social span,.woocommerce div.product div.social span,.woocommerce-page #content div.product div.social span,.woocommerce-page div.product div.social span{margin:0 0 0 2px}.woocommerce #content div.product div.social span span,.woocommerce div.product div.social span span,.woocommerce-page #content div.product div.social span span,.woocommerce-page div.product div.social span span{margin:0}.woocommerce #content div.product div.social span .stButton .chicklets,.woocommerce div.product div.social span .stButton .chicklets,.woocommerce-page #content div.product div.social span .stButton .chicklets,.woocommerce-page div.product div.social span .stButton .chicklets{padding-left:16px;width:0}.woocommerce #content div.product div.social iframe,.woocommerce div.product div.social iframe,.woocommerce-page #content div.product div.social iframe,.woocommerce-page div.product div.social iframe{float:left;margin-top:3px}.woocommerce #content div.product .woocommerce-tabs ul.tabs,.woocommerce div.product .woocommerce-tabs ul.tabs,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs,.woocommerce-page div.product .woocommerce-tabs ul.tabs{list-style:none;padding:0 0 0 1em;margin:0 0 1.618em;overflow:hidden;position:relative}.woocommerce #content div.product .woocommerce-tabs ul.tabs li,.woocommerce div.product .woocommerce-tabs ul.tabs li,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li,.woocommerce-page div.product .woocommerce-tabs ul.tabs li{border:1px solid #e0dadf;background:#f7f6f7;background:-webkit-gradient(linear,left top,left bottom,from(#f7f6f7),to(#e0dadf));background:-webkit-linear-gradient(#f7f6f7,#e0dadf);background:-moz-linear-gradient(center top,#f7f6f7 0,#e0dadf 100%);background:-moz-gradient(center top,#f7f6f7 0,#e0dadf 100%);display:inline-block;position:relative;z-index:0;-webkit-border-top-left-radius:4px;-webkit-border-top-right-radius:4px;border-top-left-radius:4px;border-top-right-radius:4px;box-shadow:0 3px 3px rgba(0,0,0,.2),inset 0 1px 0 rgba(255,255,255,.6);margin:0 -5px;padding:0 1em}.woocommerce #content div.product .woocommerce-tabs ul.tabs li a,.woocommerce div.product .woocommerce-tabs ul.tabs li a,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li a,.woocommerce-page div.product .woocommerce-tabs ul.tabs li a{display:inline-block;padding:.5em 0;font-weight:700;color:#5e5e5e;text-shadow:0 1px 0 rgba(255,255,255,.8);text-decoration:none}.woocommerce #content div.product .woocommerce-tabs ul.tabs li a:hover,.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li a:hover,.woocommerce-page div.product .woocommerce-tabs ul.tabs li a:hover{text-decoration:none;color:#777}.woocommerce #content div.product .woocommerce-tabs ul.tabs li.active,.woocommerce div.product .woocommerce-tabs ul.tabs li.active,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li.active,.woocommerce-page div.product .woocommerce-tabs ul.tabs li.active{background:#fff;z-index:2;border-bottom-color:#fff}.woocommerce #content div.product .woocommerce-tabs ul.tabs li.active a,.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li.active a,.woocommerce-page div.product .woocommerce-tabs ul.tabs li.active a{color:inherit;text-shadow:inherit}.woocommerce #content div.product .woocommerce-tabs ul.tabs li.active:before,.woocommerce div.product .woocommerce-tabs ul.tabs li.active:before,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li.active:before,.woocommerce-page div.product .woocommerce-tabs ul.tabs li.active:before{box-shadow:2px 2px 0 #fff}.woocommerce #content div.product .woocommerce-tabs ul.tabs li.active:after,.woocommerce div.product .woocommerce-tabs ul.tabs li.active:after,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li.active:after,.woocommerce-page div.product .woocommerce-tabs ul.tabs li.active:after{box-shadow:-2px 2px 0 #fff}.woocommerce #content div.product .woocommerce-tabs ul.tabs li:after,.woocommerce #content div.product .woocommerce-tabs ul.tabs li:before,.woocommerce div.product .woocommerce-tabs ul.tabs li:after,.woocommerce div.product .woocommerce-tabs ul.tabs li:before,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li:after,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li:before,.woocommerce-page div.product .woocommerce-tabs ul.tabs li:after,.woocommerce-page div.product .woocommerce-tabs ul.tabs li:before{border:1px solid #e0dadf;position:absolute;bottom:-1px;width:5px;height:5px;content:" "}.woocommerce #content div.product .woocommerce-tabs ul.tabs li:before,.woocommerce div.product .woocommerce-tabs ul.tabs li:before,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li:before,.woocommerce-page div.product .woocommerce-tabs ul.tabs li:before{left:-6px;-webkit-border-bottom-right-radius:4px;-moz-border-bottom-right-radius:4px;border-bottom-right-radius:4px;border-width:0 1px 1px 0;box-shadow:2px 2px 0 #e0dadf}.woocommerce #content div.product .woocommerce-tabs ul.tabs li:after,.woocommerce div.product .woocommerce-tabs ul.tabs li:after,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li:after,.woocommerce-page div.product .woocommerce-tabs ul.tabs li:after{right:-6px;-webkit-border-bottom-left-radius:4px;-moz-border-bottom-left-radius:4px;border-bottom-left-radius:4px;border-width:0 0 1px 1px;box-shadow:-2px 2px 0 #e0dadf}.woocommerce #content div.product .woocommerce-tabs ul.tabs:before,.woocommerce div.product .woocommerce-tabs ul.tabs:before,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs:before,.woocommerce-page div.product .woocommerce-tabs ul.tabs:before{position:absolute;content:" ";width:100%;bottom:0;left:0;border-bottom:1px solid #e0dadf;z-index:1}.woocommerce #content div.product .woocommerce-tabs .panel,.woocommerce div.product .woocommerce-tabs .panel,.woocommerce-page #content div.product .woocommerce-tabs .panel,.woocommerce-page div.product .woocommerce-tabs .panel{margin:0 0 2em;padding:0}.woocommerce #content div.product p.cart,.woocommerce div.product p.cart,.woocommerce-page #content div.product p.cart,.woocommerce-page div.product p.cart{margin-bottom:2em}.woocommerce #content div.product p.cart:after,.woocommerce #content div.product p.cart:before,.woocommerce div.product p.cart:after,.woocommerce div.product p.cart:before,.woocommerce-page #content div.product p.cart:after,.woocommerce-page #content div.product p.cart:before,.woocommerce-page div.product p.cart:after,.woocommerce-page div.product p.cart:before{content:" ";display:table}.woocommerce #content div.product p.cart:after,.woocommerce div.product p.cart:after,.woocommerce-page #content div.product p.cart:after,.woocommerce-page div.product p.cart:after{clear:both}.woocommerce #content div.product form.cart,.woocommerce div.product form.cart,.woocommerce-page #content div.product form.cart,.woocommerce-page div.product form.cart{margin-bottom:2em}.woocommerce #content div.product form.cart:after,.woocommerce #content div.product form.cart:before,.woocommerce div.product form.cart:after,.woocommerce div.product form.cart:before,.woocommerce-page #content div.product form.cart:after,.woocommerce-page #content div.product form.cart:before,.woocommerce-page div.product form.cart:after,.woocommerce-page div.product form.cart:before{content:" ";display:table}.woocommerce #content div.product form.cart:after,.woocommerce div.product form.cart:after,.woocommerce-page #content div.product form.cart:after,.woocommerce-page div.product form.cart:after{clear:both}.woocommerce #content div.product form.cart div.quantity,.woocommerce div.product form.cart div.quantity,.woocommerce-page #content div.product form.cart div.quantity,.woocommerce-page div.product form.cart div.quantity{float:left;margin:0 4px 0 0}.woocommerce #content div.product form.cart table,.woocommerce div.product form.cart table,.woocommerce-page #content div.product form.cart table,.woocommerce-page div.product form.cart table{border-width:0 0 1px}.woocommerce #content div.product form.cart table td,.woocommerce div.product form.cart table td,.woocommerce-page #content div.product form.cart table td,.woocommerce-page div.product form.cart table td{padding-left:0}.woocommerce #content div.product form.cart table div.quantity,.woocommerce div.product form.cart table div.quantity,.woocommerce-page #content div.product form.cart table div.quantity,.woocommerce-page div.product form.cart table div.quantity{float:none;margin:0}.woocommerce #content div.product form.cart table small.stock,.woocommerce div.product form.cart table small.stock,.woocommerce-page #content div.product form.cart table small.stock,.woocommerce-page div.product form.cart table small.stock{display:block;float:none}.woocommerce #content div.product form.cart .variations,.woocommerce div.product form.cart .variations,.woocommerce-page #content div.product form.cart .variations,.woocommerce-page div.product form.cart .variations{margin-bottom:1em}.woocommerce #content div.product form.cart .variations label,.woocommerce div.product form.cart .variations label,.woocommerce-page #content div.product form.cart .variations label,.woocommerce-page div.product form.cart .variations label{font-weight:700}.woocommerce #content div.product form.cart .variations select,.woocommerce div.product form.cart .variations select,.woocommerce-page #content div.product form.cart .variations select,.woocommerce-page div.product form.cart .variations select{width:100%;float:left}.woocommerce #content div.product form.cart .variations td.label,.woocommerce div.product form.cart .variations td.label,.woocommerce-page #content div.product form.cart .variations td.label,.woocommerce-page div.product form.cart .variations td.label{padding-right:1em}.woocommerce #content div.product form.cart .variations td,.woocommerce div.product form.cart .variations td,.woocommerce-page #content div.product form.cart .variations td,.woocommerce-page div.product form.cart .variations td{vertical-align:top}.woocommerce #content div.product form.cart .button,.woocommerce div.product form.cart .button,.woocommerce-page #content div.product form.cart .button,.woocommerce-page div.product form.cart .button{vertical-align:middle;float:left}.woocommerce #content div.product form.cart .group_table td.label,.woocommerce div.product form.cart .group_table td.label,.woocommerce-page #content div.product form.cart .group_table td.label,.woocommerce-page div.product form.cart .group_table td.label{padding-right:1em;padding-left:1em}.woocommerce #content div.product form.cart .group_table td,.woocommerce div.product form.cart .group_table td,.woocommerce-page #content div.product form.cart .group_table td,.woocommerce-page div.product form.cart .group_table td{vertical-align:top;padding-bottom:.5em}.woocommerce span.onsale,.woocommerce-page span.onsale{min-height:32px;min-width:32px;padding:4px;font-size:12px;font-weight:700;position:absolute;text-align:center;line-height:32px;top:6px;left:6px;margin:0;-webkit-border-radius:20px;border-radius:20px;background:#a2c094;background:-webkit-gradient(linear,left top,left bottom,from(#a2c094),to(#85ad74));background:-webkit-linear-gradient(#a2c094,#85ad74);background:-moz-linear-gradient(center top,#a2c094 0,#85ad74 100%);background:-moz-gradient(center top,#a2c094 0,#85ad74 100%);text-shadow:0 -1px 0 #85ad74;color:#fff;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.3),inset 0 -1px 0 rgba(0,0,0,.2),0 1px 2px rgba(0,0,0,.2);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.3),inset 0 -1px 0 rgba(0,0,0,.2),0 1px 2px rgba(0,0,0,.2);box-shadow:inset 0 1px 0 rgba(255,255,255,.3),inset 0 -1px 0 rgba(0,0,0,.2),0 1px 2px rgba(0,0,0,.2)}.woocommerce .products ul,.woocommerce ul.products,.woocommerce-page .products ul,.woocommerce-page ul.products{margin:0 0 1em;padding:0;list-style:none;clear:both}.woocommerce .products ul:after,.woocommerce .products ul:before,.woocommerce ul.products:after,.woocommerce ul.products:before,.woocommerce-page .products ul:after,.woocommerce-page .products ul:before,.woocommerce-page ul.products:after,.woocommerce-page ul.products:before{content:" ";display:table}.woocommerce .products ul:after,.woocommerce ul.products:after,.woocommerce-page .products ul:after,.woocommerce-page ul.products:after{clear:both}.woocommerce .products ul li,.woocommerce ul.products li,.woocommerce-page .products ul li,.woocommerce-page ul.products li{list-style:none}.woocommerce ul.products li.product .onsale,.woocommerce-page ul.products li.product .onsale{top:0;right:0;left:auto;margin:-6px -6px 0 0}.woocommerce ul.products li.product h3,.woocommerce-page ul.products li.product h3{padding:.5em 0;margin:0;font-size:1em}.woocommerce ul.products li.product a,.woocommerce-page ul.products li.product a{text-decoration:none}.woocommerce ul.products li.product a img,.woocommerce-page ul.products li.product a img{width:100%;height:auto;display:block;margin:0 0 8px;box-shadow:0 1px 2px 0 rgba(0,0,0,.3);-webkit-box-shadow:0 1px 2px 0 rgba(0,0,0,.3);-webkit-transition:all ease-in-out .2s;-moz-transition:all ease-in-out .2s;-o-transition:all ease-in-out .2s;transition:all ease-in-out .2s}.woocommerce ul.products li.product a:hover img,.woocommerce-page ul.products li.product a:hover img{box-shadow:0 1px 3px 0 rgba(0,0,0,.4);-webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,.4)}.woocommerce ul.products li.product strong,.woocommerce-page ul.products li.product strong{display:block}.woocommerce ul.products li.product .price,.woocommerce-page ul.products li.product .price{color:#85ad74;display:block;font-weight:400;margin-bottom:.5em}.woocommerce ul.products li.product .price del,.woocommerce-page ul.products li.product .price del{font-size:.67em;color:rgba(145,145,145,.5);margin:-2px 0 0}.woocommerce ul.products li.product .price ins,.woocommerce-page ul.products li.product .price ins{background:0 0}.woocommerce ul.products li.product .price .from,.woocommerce-page ul.products li.product .price .from{font-size:.67em;margin:-2px 0 0;text-transform:uppercase;color:rgba(145,145,145,.5)}.woocommerce .woocommerce-ordering,.woocommerce .woocommerce-result-count,.woocommerce-page .woocommerce-ordering,.woocommerce-page .woocommerce-result-count{margin:0 0 1em}.woocommerce .woocommerce-ordering select,.woocommerce-page .woocommerce-ordering select{vertical-align:top}.woocommerce #content nav.woocommerce-pagination,.woocommerce nav.woocommerce-pagination,.woocommerce-page #content nav.woocommerce-pagination,.woocommerce-page nav.woocommerce-pagination{text-align:center}.woocommerce #content nav.woocommerce-pagination ul,.woocommerce nav.woocommerce-pagination ul,.woocommerce-page #content nav.woocommerce-pagination ul,.woocommerce-page nav.woocommerce-pagination ul{display:inline-block;white-space:nowrap;padding:0;clear:both;border:1px solid #e0dadf;border-right:0;margin:1px}.woocommerce #content nav.woocommerce-pagination ul li,.woocommerce nav.woocommerce-pagination ul li,.woocommerce-page #content nav.woocommerce-pagination ul li,.woocommerce-page nav.woocommerce-pagination ul li{border-right:1px solid #e0dadf;padding:0;margin:0;float:left;display:inline;overflow:hidden}.woocommerce #content nav.woocommerce-pagination ul li a,.woocommerce #content nav.woocommerce-pagination ul li span,.woocommerce nav.woocommerce-pagination ul li a,.woocommerce nav.woocommerce-pagination ul li span,.woocommerce-page #content nav.woocommerce-pagination ul li a,.woocommerce-page #content nav.woocommerce-pagination ul li span,.woocommerce-page nav.woocommerce-pagination ul li a,.woocommerce-page nav.woocommerce-pagination ul li span{margin:0;text-decoration:none;line-height:1em;font-size:1em;font-weight:400;padding:.5em;min-width:1em;display:block}.woocommerce #content nav.woocommerce-pagination ul li a:focus,.woocommerce #content nav.woocommerce-pagination ul li a:hover,.woocommerce #content nav.woocommerce-pagination ul li span.current,.woocommerce nav.woocommerce-pagination ul li a:focus,.woocommerce nav.woocommerce-pagination ul li a:hover,.woocommerce nav.woocommerce-pagination ul li span.current,.woocommerce-page #content nav.woocommerce-pagination ul li a:focus,.woocommerce-page #content nav.woocommerce-pagination ul li a:hover,.woocommerce-page #content nav.woocommerce-pagination ul li span.current,.woocommerce-page nav.woocommerce-pagination ul li a:focus,.woocommerce-page nav.woocommerce-pagination ul li a:hover,.woocommerce-page nav.woocommerce-pagination ul li span.current{background:#f7f6f7;color:#998896}.woocommerce #content input.button,.woocommerce #respond input#submit,.woocommerce a.button,.woocommerce button.button,.woocommerce input.button,.woocommerce-page #content input.button,.woocommerce-page #respond input#submit,.woocommerce-page a.button,.woocommerce-page button.button,.woocommerce-page input.button{font-size:100%;margin:0;line-height:1em;cursor:pointer;position:relative;font-family:inherit;overflow:visible;padding:6px 10px;text-decoration:none;font-weight:700;-webkit-border-radius:2px;border-radius:2px;left:auto;color:#5e5e5e;text-shadow:0 1px 0 rgba(255,255,255,.8);border:1px solid #c8bfc6;background:#f7f6f7;background:-webkit-gradient(linear,left top,left bottom,from(#f7f6f7),to(#e0dadf));background:-webkit-linear-gradient(#f7f6f7,#e0dadf);background:-moz-linear-gradient(center top,#f7f6f7 0,#e0dadf 100%);background:-moz-gradient(center top,#f7f6f7 0,#e0dadf 100%);white-space:nowrap;display:inline-block;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.075),inset 0 1px 0 rgba(255,255,255,.3),0 1px 2px rgba(0,0,0,.1);-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,.075),inset 0 1px 0 rgba(255,255,255,.3),0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 -1px 0 rgba(0,0,0,.075),inset 0 1px 0 rgba(255,255,255,.3),0 1px 2px rgba(0,0,0,.1)}.woocommerce #content input.button.loading,.woocommerce #respond input#submit.loading,.woocommerce a.button.loading,.woocommerce button.button.loading,.woocommerce input.button.loading,.woocommerce-page #content input.button.loading,.woocommerce-page #respond input#submit.loading,.woocommerce-page a.button.loading,.woocommerce-page button.button.loading,.woocommerce-page input.button.loading{color:#777;border:1px solid #f7f6f7}.woocommerce #content input.button.loading:before,.woocommerce #respond input#submit.loading:before,.woocommerce a.button.loading:before,.woocommerce button.button.loading:before,.woocommerce input.button.loading:before,.woocommerce-page #content input.button.loading:before,.woocommerce-page #respond input#submit.loading:before,.woocommerce-page a.button.loading:before,.woocommerce-page button.button.loading:before,.woocommerce-page input.button.loading:before{content:"";position:absolute;top:0;right:0;left:0;bottom:0;background:url(../images/ajax-loader.gif) center no-repeat rgba(255,255,255,.65)}.woocommerce #content input.button.added:before,.woocommerce #respond input#submit.added:before,.woocommerce a.button.added:before,.woocommerce button.button.added:before,.woocommerce input.button.added:before,.woocommerce-page #content input.button.added:before,.woocommerce-page #respond input#submit.added:before,.woocommerce-page a.button.added:before,.woocommerce-page button.button.added:before,.woocommerce-page input.button.added:before{position:absolute;height:16px;width:16px;top:.35em;right:-26px;text-indent:0;font-family:WooCommerce;content:"\e017"}.woocommerce #content input.button:hover,.woocommerce #respond input#submit:hover,.woocommerce a.button:hover,.woocommerce button.button:hover,.woocommerce input.button:hover,.woocommerce-page #content input.button:hover,.woocommerce-page #respond input#submit:hover,.woocommerce-page a.button:hover,.woocommerce-page button.button:hover,.woocommerce-page input.button:hover{background:#f7f6f7;background:-webkit-gradient(linear,left top,left bottom,from(#f7f6f7),to(#d4cdd2));background:-webkit-linear-gradient(#f7f6f7,#d4cdd2);background:-moz-linear-gradient(center top,#f7f6f7 0,#d4cdd2 100%);background:-moz-gradient(center top,#f7f6f7 0,#d4cdd2 100%);text-decoration:none}.woocommerce #content input.button:active,.woocommerce #respond input#submit:active,.woocommerce a.button:active,.woocommerce button.button:active,.woocommerce input.button:active,.woocommerce-page #content input.button:active,.woocommerce-page #respond input#submit:active,.woocommerce-page a.button:active,.woocommerce-page button.button:active,.woocommerce-page input.button:active{top:1px}.woocommerce #content input.button.alt,.woocommerce #respond input#submit.alt,.woocommerce a.button.alt,.woocommerce button.button.alt,.woocommerce input.button.alt,.woocommerce-page #content input.button.alt,.woocommerce-page #respond input#submit.alt,.woocommerce-page a.button.alt,.woocommerce-page button.button.alt,.woocommerce-page input.button.alt{background:#ad74a2;background:-webkit-gradient(linear,left top,left bottom,from(#ad74a2),to(#96588a));background:-webkit-linear-gradient(#ad74a2,#96588a);background:-moz-linear-gradient(center top,#ad74a2 0,#96588a 100%);background:-moz-gradient(center top,#ad74a2 0,#96588a 100%);border-color:#76456c;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.6)}.woocommerce #content input.button.alt:hover,.woocommerce #respond input#submit.alt:hover,.woocommerce a.button.alt:hover,.woocommerce button.button.alt:hover,.woocommerce input.button.alt:hover,.woocommerce-page #content input.button.alt:hover,.woocommerce-page #respond input#submit.alt:hover,.woocommerce-page a.button.alt:hover,.woocommerce-page button.button.alt:hover,.woocommerce-page input.button.alt:hover{background:#ad74a2;background:-webkit-gradient(linear,left top,left bottom,from(#ad74a2),to(#864f7b));background:-webkit-linear-gradient(#ad74a2,#864f7b);background:-moz-linear-gradient(center top,#ad74a2 0,#864f7b 100%);background:-moz-gradient(center top,#ad74a2 0,#864f7b 100%);color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.6)}.woocommerce #content input.button.disabled,.woocommerce #content input.button:disabled,.woocommerce #respond input#submit.disabled,.woocommerce #respond input#submit:disabled,.woocommerce a.button.disabled,.woocommerce a.button:disabled,.woocommerce button.button.disabled,.woocommerce button.button:disabled,.woocommerce input.button.disabled,.woocommerce input.button:disabled,.woocommerce-page #content input.button.disabled,.woocommerce-page #content input.button:disabled,.woocommerce-page #respond input#submit.disabled,.woocommerce-page #respond input#submit:disabled,.woocommerce-page a.button.disabled,.woocommerce-page a.button:disabled,.woocommerce-page button.button.disabled,.woocommerce-page button.button:disabled,.woocommerce-page input.button.disabled,.woocommerce-page input.button:disabled{color:#aaa;border:1px solid #e0dadf;background:#f7f6f7;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;cursor:not-allowed}.woocommerce #content input.button.disabled:active,.woocommerce #content input.button:disabled:active,.woocommerce #respond input#submit.disabled:active,.woocommerce #respond input#submit:disabled:active,.woocommerce a.button.disabled:active,.woocommerce a.button:disabled:active,.woocommerce button.button.disabled:active,.woocommerce button.button:disabled:active,.woocommerce input.button.disabled:active,.woocommerce input.button:disabled:active,.woocommerce-page #content input.button.disabled:active,.woocommerce-page #content input.button:disabled:active,.woocommerce-page #respond input#submit.disabled:active,.woocommerce-page #respond input#submit:disabled:active,.woocommerce-page a.button.disabled:active,.woocommerce-page a.button:disabled:active,.woocommerce-page button.button.disabled:active,.woocommerce-page button.button:disabled:active,.woocommerce-page input.button.disabled:active,.woocommerce-page input.button:disabled:active{top:0}.woocommerce .cart .button,.woocommerce .cart input.button,.woocommerce-page .cart .button,.woocommerce-page .cart input.button{float:none}.woocommerce a.added_to_cart,.woocommerce-page a.added_to_cart{padding-top:.5em;white-space:nowrap;display:inline-block}.woocommerce #content .quantity,.woocommerce .quantity,.woocommerce-page #content .quantity,.woocommerce-page .quantity{width:60px;position:relative;margin:0 auto;overflow:hidden;zoom:1}.woocommerce #content .quantity input.qty,.woocommerce .quantity input.qty,.woocommerce-page #content .quantity input.qty,.woocommerce-page .quantity input.qty{width:40px;height:28px;float:left;padding:0;margin:0;text-align:center;border:1px solid #c8bfc6;border-right:0;-webkit-border-radius:2px 0 0 2px;border-radius:2px 0 0 2px;box-shadow:inset 0 0 2px 0 #f7f6f7;-webkit-box-shadow:inset 0 0 2px 0 #f7f6f7;font-weight:700;-moz-appearance:textfield}.woocommerce #content .quantity input[type=number],.woocommerce #content .quantity noindex:-o-prefocus,.woocommerce .quantity input[type=number],.woocommerce .quantity noindex:-o-prefocus,.woocommerce-page #content .quantity input[type=number],.woocommerce-page #content .quantity noindex:-o-prefocus,.woocommerce-page .quantity input[type=number],.woocommerce-page .quantity noindex:-o-prefocus{padding-right:1.2em}.woocommerce #content .quantity .minus,.woocommerce #content .quantity .plus,.woocommerce .quantity .minus,.woocommerce .quantity .plus,.woocommerce-page #content .quantity .minus,.woocommerce-page #content .quantity .plus,.woocommerce-page .quantity .minus,.woocommerce-page .quantity .plus{display:block;padding:0;margin:0;position:absolute;text-align:center;vertical-align:text-top;width:20px;height:15px;overflow:visible;text-decoration:none;font-weight:700;cursor:pointer;line-height:13px;font-size:12px;-webkit-border-radius:2px;border-radius:2px;color:#5e5e5e;text-shadow:0 1px 0 rgba(255,255,255,.8);border:1px solid #c8bfc6;background:#f7f6f7;background:-webkit-gradient(linear,left top,left bottom,from(#f7f6f7),to(#e0dadf));background:-webkit-linear-gradient(#f7f6f7,#e0dadf);background:-moz-linear-gradient(center top,#f7f6f7 0,#e0dadf 100%);background:-moz-gradient(center top,#f7f6f7 0,#e0dadf 100%);-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.075),inset 0 1px 0 rgba(255,255,255,.3),0 1px 2px rgba(0,0,0,.1);-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,.075),inset 0 1px 0 rgba(255,255,255,.3),0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 -1px 0 rgba(0,0,0,.075),inset 0 1px 0 rgba(255,255,255,.3),0 1px 2px rgba(0,0,0,.1)}.woocommerce #content .quantity .minus:hover,.woocommerce #content .quantity .plus:hover,.woocommerce .quantity .minus:hover,.woocommerce .quantity .plus:hover,.woocommerce-page #content .quantity .minus:hover,.woocommerce-page #content .quantity .plus:hover,.woocommerce-page .quantity .minus:hover,.woocommerce-page .quantity .plus:hover{background:#f7f6f7;background:-webkit-gradient(linear,left top,left bottom,from(#f7f6f7),to(#d4cdd2));background:-webkit-linear-gradient(#f7f6f7,#d4cdd2);background:-moz-linear-gradient(center top,#f7f6f7 0,#d4cdd2 100%);background:-moz-gradient(center top,#f7f6f7 0,#d4cdd2 100%)}.woocommerce #content .quantity .plus,.woocommerce .quantity .plus,.woocommerce-page #content .quantity .plus,.woocommerce-page .quantity .plus{top:0;right:0;border-bottom:0;-webkit-border-bottom-left-radius:0;-webkit-border-bottom-right-radius:0;border-bottom-left-radius:0;border-bottom-right-radius:0}.woocommerce #content .quantity .minus,.woocommerce .quantity .minus,.woocommerce-page #content .quantity .minus,.woocommerce-page .quantity .minus{bottom:0;right:0;-webkit-border-top-left-radius:0;-webkit-border-top-right-radius:0;border-top-left-radius:0;border-top-right-radius:0}.woocommerce #reviews h2 small,.woocommerce-page #reviews h2 small{float:right;color:#777;font-size:15px;line-height:21px;margin:10px 0 0}.woocommerce #reviews h2 small a,.woocommerce-page #reviews h2 small a{text-decoration:none;color:#777}.woocommerce #reviews h3,.woocommerce-page #reviews h3{margin:0}.woocommerce #reviews #respond,.woocommerce-page #reviews #respond{margin:0;border:0;padding:0}.woocommerce #reviews #comment,.woocommerce-page #reviews #comment{height:75px}.woocommerce #reviews #comments .add_review:after,.woocommerce #reviews #comments .add_review:before,.woocommerce-page #reviews #comments .add_review:after,.woocommerce-page #reviews #comments .add_review:before{content:" ";display:table}.woocommerce #reviews #comments .add_review:after,.woocommerce-page #reviews #comments .add_review:after{clear:both}.woocommerce #reviews #comments h2,.woocommerce-page #reviews #comments h2{clear:none}.woocommerce #reviews #comments ol.commentlist,.woocommerce-page #reviews #comments ol.commentlist{margin:0;width:100%;background:0 0;list-style:none}.woocommerce #reviews #comments ol.commentlist:after,.woocommerce #reviews #comments ol.commentlist:before,.woocommerce-page #reviews #comments ol.commentlist:after,.woocommerce-page #reviews #comments ol.commentlist:before{content:" ";display:table}.woocommerce #reviews #comments ol.commentlist:after,.woocommerce-page #reviews #comments ol.commentlist:after{clear:both}.woocommerce #reviews #comments ol.commentlist li,.woocommerce-page #reviews #comments ol.commentlist li{padding:0;margin:0 0 20px;position:relative;background:0;border:0}.woocommerce #reviews #comments ol.commentlist li .meta,.woocommerce-page #reviews #comments ol.commentlist li .meta{color:#777;font-size:.75em}.woocommerce #reviews #comments ol.commentlist li img.avatar,.woocommerce-page #reviews #comments ol.commentlist li img.avatar{float:left;position:absolute;top:0;left:0;padding:3px;width:32px;height:auto;background:#f7f6f7;border:1px solid #f0eef0;margin:0;line-height:1}.woocommerce #reviews #comments ol.commentlist li .comment-text,.woocommerce-page #reviews #comments ol.commentlist li .comment-text{margin:0 0 0 50px;border:1px solid #f0eef0;-webkit-border-radius:4px;border-radius:4px;padding:1em 1em 0}.woocommerce #reviews #comments ol.commentlist li .comment-text:after,.woocommerce #reviews #comments ol.commentlist li .comment-text:before,.woocommerce-page #reviews #comments ol.commentlist li .comment-text:after,.woocommerce-page #reviews #comments ol.commentlist li .comment-text:before{content:" ";display:table}.woocommerce #reviews #comments ol.commentlist li .comment-text:after,.woocommerce-page #reviews #comments ol.commentlist li .comment-text:after{clear:both}.woocommerce #reviews #comments ol.commentlist li .comment-text p,.woocommerce-page #reviews #comments ol.commentlist li .comment-text p{margin:0 0 1em}.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta,.woocommerce-page #reviews #comments ol.commentlist li .comment-text p.meta{font-size:.83em}.woocommerce #reviews #comments ol.commentlist ul.children,.woocommerce-page #reviews #comments ol.commentlist ul.children{list-style:none;margin:20px 0 0 50px}.woocommerce #reviews #comments ol.commentlist ul.children .star-rating,.woocommerce-page #reviews #comments ol.commentlist ul.children .star-rating{display:none}.woocommerce #reviews #comments ol.commentlist #respond,.woocommerce-page #reviews #comments ol.commentlist #respond{border:1px solid #f0eef0;-webkit-border-radius:4px;border-radius:4px;padding:1em 1em 0;margin:20px 0 0 50px}.woocommerce #reviews #comments .commentlist>li:before,.woocommerce-page #reviews #comments .commentlist>li:before{content:""}.woocommerce .star-rating,.woocommerce-page .star-rating{float:right;overflow:hidden;position:relative;height:1em;line-height:1em;font-size:1em;width:5.4em;font-family:star}.woocommerce .star-rating:before,.woocommerce-page .star-rating:before{content:"\73\73\73\73\73";color:#e0dadf;float:left;top:0;left:0;position:absolute}.woocommerce .star-rating span,.woocommerce-page .star-rating span{overflow:hidden;float:left;top:0;left:0;position:absolute;padding-top:1.5em}.woocommerce .star-rating span:before,.woocommerce-page .star-rating span:before{content:"\53\53\53\53\53";top:0;position:absolute;left:0}.woocommerce .woocommerce-product-rating,.woocommerce-page .woocommerce-product-rating{line-height:2em;display:block}.woocommerce .woocommerce-product-rating .star-rating,.woocommerce-page .woocommerce-product-rating .star-rating{margin:.5em 4px 0 0;float:left}.woocommerce .products .star-rating,.woocommerce-page .products .star-rating{display:block;margin:0 0 .5em;float:none}.woocommerce .hreview-aggregate .star-rating,.woocommerce-page .hreview-aggregate .star-rating{margin:10px 0 0}.woocommerce #review_form #respond,.woocommerce-page #review_form #respond{position:static;margin:0;width:auto;padding:0;background:0 0;border:0}.woocommerce #review_form #respond:after,.woocommerce #review_form #respond:before,.woocommerce-page #review_form #respond:after,.woocommerce-page #review_form #respond:before{content:" ";display:table}.woocommerce #review_form #respond:after,.woocommerce-page #review_form #respond:after{clear:both}.woocommerce #review_form #respond p,.woocommerce-page #review_form #respond p{margin:0 0 10px}.woocommerce #review_form #respond .form-submit input,.woocommerce-page #review_form #respond .form-submit input{left:auto}.woocommerce #review_form #respond textarea,.woocommerce-page #review_form #respond textarea{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%}.woocommerce p.stars,.woocommerce-page p.stars{position:relative;font-size:1em}.woocommerce p.stars a,.woocommerce-page p.stars a{display:inline-block;font-weight:700;margin-right:1em;text-indent:-9999px;position:relative}.woocommerce p.stars a:last-child,.woocommerce-page p.stars a:last-child{border-right:0}.woocommerce p.stars a.star-1,.woocommerce p.stars a.star-2,.woocommerce p.stars a.star-3,.woocommerce p.stars a.star-4,.woocommerce p.stars a.star-5,.woocommerce-page p.stars a.star-1,.woocommerce-page p.stars a.star-2,.woocommerce-page p.stars a.star-3,.woocommerce-page p.stars a.star-4,.woocommerce-page p.stars a.star-5{border-right:1px solid #ccc}.woocommerce p.stars a.star-1:after,.woocommerce p.stars a.star-2:after,.woocommerce p.stars a.star-3:after,.woocommerce p.stars a.star-4:after,.woocommerce p.stars a.star-5:after,.woocommerce-page p.stars a.star-1:after,.woocommerce-page p.stars a.star-2:after,.woocommerce-page p.stars a.star-3:after,.woocommerce-page p.stars a.star-4:after,.woocommerce-page p.stars a.star-5:after{font-family:WooCommerce;text-indent:0;position:absolute;top:0;left:0}.woocommerce p.stars a.star-1,.woocommerce-page p.stars a.star-1{width:2em}.woocommerce p.stars a.star-1:after,.woocommerce-page p.stars a.star-1:after{content:"\e021"}.woocommerce p.stars a.star-1.active:after,.woocommerce p.stars a.star-1:hover:after,.woocommerce-page p.stars a.star-1.active:after,.woocommerce-page p.stars a.star-1:hover:after{content:"\e020"}.woocommerce p.stars a.star-2,.woocommerce-page p.stars a.star-2{width:3em}.woocommerce p.stars a.star-2:after,.woocommerce-page p.stars a.star-2:after{content:"\e021\e021"}.woocommerce p.stars a.star-2.active:after,.woocommerce p.stars a.star-2:hover:after,.woocommerce-page p.stars a.star-2.active:after,.woocommerce-page p.stars a.star-2:hover:after{content:"\e020\e020"}.woocommerce p.stars a.star-3,.woocommerce-page p.stars a.star-3{width:4em}.woocommerce p.stars a.star-3:after,.woocommerce-page p.stars a.star-3:after{content:"\e021\e021\e021"}.woocommerce p.stars a.star-3.active:after,.woocommerce p.stars a.star-3:hover:after,.woocommerce-page p.stars a.star-3.active:after,.woocommerce-page p.stars a.star-3:hover:after{content:"\e020\e020\e020"}.woocommerce p.stars a.star-4,.woocommerce-page p.stars a.star-4{width:5em}.woocommerce p.stars a.star-4:after,.woocommerce-page p.stars a.star-4:after{content:"\e021\e021\e021\e021"}.woocommerce p.stars a.star-4.active:after,.woocommerce p.stars a.star-4:hover:after,.woocommerce-page p.stars a.star-4.active:after,.woocommerce-page p.stars a.star-4:hover:after{content:"\e020\e020\e020\e020"}.woocommerce p.stars a.star-5,.woocommerce-page p.stars a.star-5{width:6em;border:0}.woocommerce p.stars a.star-5:after,.woocommerce-page p.stars a.star-5:after{content:"\e021\e021\e021\e021\e021"}.woocommerce p.stars a.star-5.active:after,.woocommerce p.stars a.star-5:hover:after,.woocommerce-page p.stars a.star-5.active:after,.woocommerce-page p.stars a.star-5:hover:after{content:"\e020\e020\e020\e020\e020"}.woocommerce table.shop_attributes,.woocommerce-page table.shop_attributes{border:0;border-top:1px dotted rgba(0,0,0,.1);margin-bottom:1.618em;width:100%}.woocommerce table.shop_attributes th,.woocommerce-page table.shop_attributes th{width:150px;font-weight:700;padding:8px;border-top:0;border-bottom:1px dotted rgba(0,0,0,.1);margin:0;line-height:1.5em}.woocommerce table.shop_attributes td,.woocommerce-page table.shop_attributes td{font-style:italic;padding:0;border-top:0;border-bottom:1px dotted rgba(0,0,0,.1);margin:0;line-height:1.5em}.woocommerce table.shop_attributes td p,.woocommerce-page table.shop_attributes td p{margin:0;padding:8px 0}.woocommerce table.shop_attributes .alt td,.woocommerce table.shop_attributes .alt th,.woocommerce-page table.shop_attributes .alt td,.woocommerce-page table.shop_attributes .alt th{background:rgba(0,0,0,.025)}.woocommerce table.shop_table,.woocommerce-page table.shop_table{border:1px solid rgba(0,0,0,.1);margin:0 -1px 24px 0;text-align:left;width:100%;border-collapse:separate;-webkit-border-radius:5px;border-radius:5px}.woocommerce table.shop_table th,.woocommerce-page table.shop_table th{font-weight:700;line-height:18px;padding:9px 12px}.woocommerce table.shop_table td,.woocommerce-page table.shop_table td{border-top:1px solid rgba(0,0,0,.1);padding:6px 12px;vertical-align:middle}.woocommerce table.shop_table td small,.woocommerce-page table.shop_table td small{font-weight:400}.woocommerce table.shop_table tfoot td,.woocommerce table.shop_table tfoot th,.woocommerce-page table.shop_table tfoot td,.woocommerce-page table.shop_table tfoot th{font-weight:700;border-top:1px solid rgba(0,0,0,.1)}.woocommerce table.my_account_orders,.woocommerce-page table.my_account_orders{font-size:.85em}.woocommerce table.my_account_orders td,.woocommerce table.my_account_orders th,.woocommerce-page table.my_account_orders td,.woocommerce-page table.my_account_orders th{padding:4px 8px;vertical-align:middle}.woocommerce table.my_account_orders .button,.woocommerce-page table.my_account_orders .button{white-space:nowrap}.woocommerce table.my_account_orders .order-actions,.woocommerce-page table.my_account_orders .order-actions{text-align:right}.woocommerce table.my_account_orders .order-actions .button,.woocommerce-page table.my_account_orders .order-actions .button{margin:.125em 0 .125em .25em}.woocommerce td.product-name dl.variation,.woocommerce-page td.product-name dl.variation{margin:.25em 0}.woocommerce td.product-name dl.variation:after,.woocommerce td.product-name dl.variation:before,.woocommerce-page td.product-name dl.variation:after,.woocommerce-page td.product-name dl.variation:before{content:" ";display:table}.woocommerce td.product-name dl.variation:after,.woocommerce-page td.product-name dl.variation:after{clear:both}.woocommerce td.product-name dl.variation dd,.woocommerce td.product-name dl.variation dt,.woocommerce-page td.product-name dl.variation dd,.woocommerce-page td.product-name dl.variation dt{display:inline-block;float:left;margin-bottom:1em}.woocommerce td.product-name dl.variation dt,.woocommerce-page td.product-name dl.variation dt{font-weight:700;padding:0 0 .25em;margin:0 4px 0 0;clear:left}.woocommerce td.product-name dl.variation dd,.woocommerce-page td.product-name dl.variation dd{padding:0 0 .25em}.woocommerce td.product-name dl.variation dd p:last-child,.woocommerce-page td.product-name dl.variation dd p:last-child{margin-bottom:0}.woocommerce td.product-name p.backorder_notification,.woocommerce-page td.product-name p.backorder_notification{font-size:.83em}.woocommerce td.product-quantity,.woocommerce-page td.product-quantity{min-width:80px}.woocommerce #content table.cart .product-thumbnail,.woocommerce table.cart .product-thumbnail,.woocommerce-page #content table.cart .product-thumbnail,.woocommerce-page table.cart .product-thumbnail{min-width:32px}.woocommerce #content table.cart img,.woocommerce table.cart img,.woocommerce-page #content table.cart img,.woocommerce-page table.cart img{width:32px}.woocommerce #content table.cart td,.woocommerce #content table.cart th,.woocommerce table.cart td,.woocommerce table.cart th,.woocommerce-page #content table.cart td,.woocommerce-page #content table.cart th,.woocommerce-page table.cart td,.woocommerce-page table.cart th{vertical-align:middle}.woocommerce #content table.cart a.remove,.woocommerce table.cart a.remove,.woocommerce-page #content table.cart a.remove,.woocommerce-page table.cart a.remove{display:block;font-size:1.5em;height:1em;width:1em;text-align:center;line-height:1;-webkit-border-radius:100%;border-radius:100%;color:red;text-decoration:none;font-weight:700}.woocommerce #content table.cart a.remove:hover,.woocommerce table.cart a.remove:hover,.woocommerce-page #content table.cart a.remove:hover,.woocommerce-page table.cart a.remove:hover{background-color:red;color:#fff}.woocommerce #content table.cart td.actions .coupon .input-text,.woocommerce table.cart td.actions .coupon .input-text,.woocommerce-page #content table.cart td.actions .coupon .input-text,.woocommerce-page table.cart td.actions .coupon .input-text{float:left;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;box-shadow:inset 0 1px 4px 0 rgba(0,0,0,.1);-webkit-box-shadow:inset 0 1px 4px 0 rgba(0,0,0,.1);border:1px solid #e0dadf;padding:6px 6px 5px;margin:0 4px 0 0;outline:0;line-height:1em}.woocommerce #content table.cart input,.woocommerce table.cart input,.woocommerce-page #content table.cart input,.woocommerce-page table.cart input{margin:0;vertical-align:middle;line-height:1em}.woocommerce ul.cart_list,.woocommerce ul.product_list_widget,.woocommerce-page ul.cart_list,.woocommerce-page ul.product_list_widget{list-style:none;padding:0;margin:0}.woocommerce ul.cart_list li,.woocommerce ul.product_list_widget li,.woocommerce-page ul.cart_list li,.woocommerce-page ul.product_list_widget li{padding:4px 0;margin:0;list-style:none}.woocommerce ul.cart_list li:after,.woocommerce ul.cart_list li:before,.woocommerce ul.product_list_widget li:after,.woocommerce ul.product_list_widget li:before,.woocommerce-page ul.cart_list li:after,.woocommerce-page ul.cart_list li:before,.woocommerce-page ul.product_list_widget li:after,.woocommerce-page ul.product_list_widget li:before{content:" ";display:table}.woocommerce ul.cart_list li:after,.woocommerce ul.product_list_widget li:after,.woocommerce-page ul.cart_list li:after,.woocommerce-page ul.product_list_widget li:after{clear:both}.woocommerce ul.cart_list li a,.woocommerce ul.product_list_widget li a,.woocommerce-page ul.cart_list li a,.woocommerce-page ul.product_list_widget li a{display:block;font-weight:700}.woocommerce ul.cart_list li img,.woocommerce ul.product_list_widget li img,.woocommerce-page ul.cart_list li img,.woocommerce-page ul.product_list_widget li img{float:right;margin-left:4px;width:32px;height:auto;box-shadow:0 1px 2px 0 rgba(0,0,0,.3);-webkit-box-shadow:0 1px 2px 0 rgba(0,0,0,.3)}.woocommerce ul.cart_list li dl,.woocommerce ul.product_list_widget li dl,.woocommerce-page ul.cart_list li dl,.woocommerce-page ul.product_list_widget li dl{margin:0;padding-left:1em;border-left:2px solid rgba(0,0,0,.1)}.woocommerce ul.cart_list li dl:after,.woocommerce ul.cart_list li dl:before,.woocommerce ul.product_list_widget li dl:after,.woocommerce ul.product_list_widget li dl:before,.woocommerce-page ul.cart_list li dl:after,.woocommerce-page ul.cart_list li dl:before,.woocommerce-page ul.product_list_widget li dl:after,.woocommerce-page ul.product_list_widget li dl:before{content:" ";display:table}.woocommerce ul.cart_list li dl:after,.woocommerce ul.product_list_widget li dl:after,.woocommerce-page ul.cart_list li dl:after,.woocommerce-page ul.product_list_widget li dl:after{clear:both}.woocommerce ul.cart_list li dl dd,.woocommerce ul.cart_list li dl dt,.woocommerce ul.product_list_widget li dl dd,.woocommerce ul.product_list_widget li dl dt,.woocommerce-page ul.cart_list li dl dd,.woocommerce-page ul.cart_list li dl dt,.woocommerce-page ul.product_list_widget li dl dd,.woocommerce-page ul.product_list_widget li dl dt{display:inline-block;float:left;margin-bottom:1em}.woocommerce ul.cart_list li dl dt,.woocommerce ul.product_list_widget li dl dt,.woocommerce-page ul.cart_list li dl dt,.woocommerce-page ul.product_list_widget li dl dt{font-weight:700;padding:0 0 .25em;margin:0 4px 0 0;clear:left}.woocommerce ul.cart_list li dl dd,.woocommerce ul.product_list_widget li dl dd,.woocommerce-page ul.cart_list li dl dd,.woocommerce-page ul.product_list_widget li dl dd{padding:0 0 .25em}.woocommerce ul.cart_list li dl dd p:last-child,.woocommerce ul.product_list_widget li dl dd p:last-child,.woocommerce-page ul.cart_list li dl dd p:last-child,.woocommerce-page ul.product_list_widget li dl dd p:last-child{margin-bottom:0}.woocommerce ul.cart_list li .star-rating,.woocommerce ul.product_list_widget li .star-rating,.woocommerce-page ul.cart_list li .star-rating,.woocommerce-page ul.product_list_widget li .star-rating{float:none}.woocommerce .widget_shopping_cart .total,.woocommerce-page .widget_shopping_cart .total,.woocommerce-page.widget_shopping_cart .total,.woocommerce.widget_shopping_cart .total{border-top:3px double #f7f6f7;padding:4px 0 0}.woocommerce .widget_shopping_cart .total strong,.woocommerce-page .widget_shopping_cart .total strong,.woocommerce-page.widget_shopping_cart .total strong,.woocommerce.widget_shopping_cart .total strong{min-width:40px;display:inline-block}.woocommerce .widget_shopping_cart .buttons:after,.woocommerce .widget_shopping_cart .buttons:before,.woocommerce-page .widget_shopping_cart .buttons:after,.woocommerce-page .widget_shopping_cart .buttons:before,.woocommerce-page.widget_shopping_cart .buttons:after,.woocommerce-page.widget_shopping_cart .buttons:before,.woocommerce.widget_shopping_cart .buttons:after,.woocommerce.widget_shopping_cart .buttons:before{content:" ";display:table}.woocommerce .widget_shopping_cart .buttons:after,.woocommerce-page .widget_shopping_cart .buttons:after,.woocommerce-page.widget_shopping_cart .buttons:after,.woocommerce.widget_shopping_cart .buttons:after{clear:both}.woocommerce .cart-collaterals .shipping_calculator .button,.woocommerce-page .cart-collaterals .shipping_calculator .button{width:100%;float:none;display:block}.woocommerce .cart-collaterals .shipping_calculator .shipping-calculator-button:after,.woocommerce-page .cart-collaterals .shipping_calculator .shipping-calculator-button:after{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-left:7px;content:"\e02e"}.woocommerce .cart-collaterals .cart_totals p,.woocommerce-page .cart-collaterals .cart_totals p{margin:0}.woocommerce .cart-collaterals .cart_totals p small,.woocommerce-page .cart-collaterals .cart_totals p small{color:#777;font-size:.83em}.woocommerce .cart-collaterals .cart_totals table,.woocommerce-page .cart-collaterals .cart_totals table{border-collapse:separate;-webkit-border-radius:5px;border-radius:5px;margin:0 0 6px;padding:0}.woocommerce .cart-collaterals .cart_totals table tr:first-child td,.woocommerce .cart-collaterals .cart_totals table tr:first-child th,.woocommerce-page .cart-collaterals .cart_totals table tr:first-child td,.woocommerce-page .cart-collaterals .cart_totals table tr:first-child th{border-top:0}.woocommerce .cart-collaterals .cart_totals table th,.woocommerce-page .cart-collaterals .cart_totals table th{padding:6px 12px 0 0;width:25%}.woocommerce .cart-collaterals .cart_totals table td,.woocommerce-page .cart-collaterals .cart_totals table td{padding:6px 0}.woocommerce .cart-collaterals .cart_totals table td,.woocommerce .cart-collaterals .cart_totals table th,.woocommerce-page .cart-collaterals .cart_totals table td,.woocommerce-page .cart-collaterals .cart_totals table th{vertical-align:top}.woocommerce .cart-collaterals .cart_totals table small,.woocommerce-page .cart-collaterals .cart_totals table small{display:block;color:#777}.woocommerce .cart-collaterals .cart_totals table select,.woocommerce-page .cart-collaterals .cart_totals table select{width:100%}.woocommerce .cart-collaterals .cart_totals .discount td,.woocommerce-page .cart-collaterals .cart_totals .discount td{color:#85ad74}.woocommerce .cart-collaterals .cart_totals tr td,.woocommerce .cart-collaterals .cart_totals tr th,.woocommerce-page .cart-collaterals .cart_totals tr td,.woocommerce-page .cart-collaterals .cart_totals tr th{border-top:1px solid #f7f6f7}.woocommerce .cart-collaterals .cart_totals a.button.alt,.woocommerce-page .cart-collaterals .cart_totals a.button.alt{display:inline-block}.woocommerce .cart-collaterals .cross-sells ul.products li.product,.woocommerce-page .cart-collaterals .cross-sells ul.products li.product{margin-top:0}.woocommerce form .form-row,.woocommerce-page form .form-row{padding:3px;margin:0 0 6px}.woocommerce form .form-row [placeholder]:focus::-webkit-input-placeholder,.woocommerce-page form .form-row [placeholder]:focus::-webkit-input-placeholder{-webkit-transition:opacity .5s .5s ease;-moz-transition:opacity .5s .5s ease;transition:opacity .5s .5s ease;opacity:0}.woocommerce form .form-row label,.woocommerce-page form .form-row label{line-height:2em}.woocommerce form .form-row label.hidden,.woocommerce-page form .form-row label.hidden{visibility:hidden}.woocommerce form .form-row label.inline,.woocommerce-page form .form-row label.inline{display:inline}.woocommerce form .form-row select,.woocommerce-page form .form-row select{cursor:pointer;margin:0}.woocommerce form .form-row .required,.woocommerce-page form .form-row .required{color:red;font-weight:700;border:0}.woocommerce form .form-row .input-checkbox,.woocommerce-page form .form-row .input-checkbox{display:inline;margin:-2px 8px 0 0;text-align:center;vertical-align:middle}.woocommerce form .form-row input.input-text,.woocommerce form .form-row textarea,.woocommerce-page form .form-row input.input-text,.woocommerce-page form .form-row textarea{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;margin:0;outline:0;line-height:1em}.woocommerce form .form-row textarea,.woocommerce-page form .form-row textarea{height:4em;line-height:1.5em;display:block;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.woocommerce form .form-row.validate-required.woocommerce-invalid .chosen-drop,.woocommerce form .form-row.validate-required.woocommerce-invalid .chosen-single,.woocommerce form .form-row.validate-required.woocommerce-invalid input.input-text,.woocommerce form .form-row.validate-required.woocommerce-invalid select,.woocommerce-page form .form-row.validate-required.woocommerce-invalid .chosen-drop,.woocommerce-page form .form-row.validate-required.woocommerce-invalid .chosen-single,.woocommerce-page form .form-row.validate-required.woocommerce-invalid input.input-text,.woocommerce-page form .form-row.validate-required.woocommerce-invalid select{border-color:#fb7f88}.woocommerce form .form-row ::-webkit-input-placeholder,.woocommerce-page form .form-row ::-webkit-input-placeholder{line-height:normal}.woocommerce form .form-row :-moz-placeholder,.woocommerce-page form .form-row :-moz-placeholder{line-height:normal}.woocommerce form .form-row :-ms-input-placeholder,.woocommerce-page form .form-row :-ms-input-placeholder{line-height:normal}.woocommerce form.checkout_coupon,.woocommerce form.login,.woocommerce form.register,.woocommerce-page form.checkout_coupon,.woocommerce-page form.login,.woocommerce-page form.register{border:1px solid #e0dadf;padding:20px;margin:2em 0;text-align:left;-webkit-border-radius:5px;border-radius:5px}.woocommerce ul#shipping_method,.woocommerce-page ul#shipping_method{list-style:none;margin:0;padding:0}.woocommerce ul#shipping_method li,.woocommerce-page ul#shipping_method li{margin:0;padding:.25em 0 .25em 22px;text-indent:-22px;list-style:none}.woocommerce ul#shipping_method .amount,.woocommerce-page ul#shipping_method .amount{font-weight:700}.woocommerce p.woocommerce-shipping-contents,.woocommerce-page p.woocommerce-shipping-contents{margin:0}.woocommerce .checkout .col-2 h3#ship-to-different-address,.woocommerce-page .checkout .col-2 h3#ship-to-different-address{float:left;clear:none}.woocommerce .checkout .col-2 .form-row-first,.woocommerce .checkout .col-2 .notes,.woocommerce-page .checkout .col-2 .form-row-first,.woocommerce-page .checkout .col-2 .notes{clear:left}.woocommerce .checkout .create-account small,.woocommerce-page .checkout .create-account small{font-size:11px;color:#777;line-height:13px;font-weight:400}.woocommerce .checkout div.shipping-address,.woocommerce-page .checkout div.shipping-address{padding:0;clear:left;width:100%}.woocommerce .checkout .shipping_address,.woocommerce-page .checkout .shipping_address{clear:both}.woocommerce #payment,.woocommerce-page #payment{background:#f7f6f7;-webkit-border-radius:5px;border-radius:5px}.woocommerce #payment ul.payment_methods,.woocommerce-page #payment ul.payment_methods{text-align:left;padding:1em;border-bottom:1px solid #e0dadf;margin:0;list-style:none}.woocommerce #payment ul.payment_methods:after,.woocommerce #payment ul.payment_methods:before,.woocommerce-page #payment ul.payment_methods:after,.woocommerce-page #payment ul.payment_methods:before{content:" ";display:table}.woocommerce #payment ul.payment_methods:after,.woocommerce-page #payment ul.payment_methods:after{clear:both}.woocommerce #payment ul.payment_methods li,.woocommerce-page #payment ul.payment_methods li{line-height:2em;text-align:left;margin:0;font-weight:400}.woocommerce #payment ul.payment_methods li input,.woocommerce-page #payment ul.payment_methods li input{margin:0 1em 0 0}.woocommerce #payment ul.payment_methods li img,.woocommerce-page #payment ul.payment_methods li img{vertical-align:middle;margin:-2px 0 0 .5em;padding:0;position:relative;box-shadow:none}.woocommerce #payment ul.payment_methods li img+img,.woocommerce-page #payment ul.payment_methods li img+img{margin-left:2px}.woocommerce #payment div.form-row,.woocommerce-page #payment div.form-row{padding:1em;border-top:1px solid #fff}.woocommerce #payment div.payment_box,.woocommerce-page #payment div.payment_box{position:relative;width:96%;padding:1em 2%;margin:1em 0;font-size:.92em;-webkit-border-radius:2px;border-radius:2px;line-height:1.5em;background:#ebe8eb;background:-webkit-gradient(linear,left top,left bottom,from(#ebe8eb),to(#e0dadf));background:-webkit-linear-gradient(#ebe8eb,#e0dadf);background:-moz-linear-gradient(center top,#ebe8eb 0,#e0dadf 100%);background:-moz-gradient(center top,#ebe8eb 0,#e0dadf 100%);box-shadow:0 1px 2px 0 rgba(0,0,0,.25);-webkit-box-shadow:0 1px 2px 0 rgba(0,0,0,.25);color:#5e5e5e;text-shadow:0 1px 0 rgba(255,255,255,.8)}.woocommerce #payment div.payment_box input.input-text,.woocommerce #payment div.payment_box textarea,.woocommerce-page #payment div.payment_box input.input-text,.woocommerce-page #payment div.payment_box textarea{border-color:#c8bfc6 #d4cdd2 #d4cdd2;box-shadow:0 1px 0 0 rgba(255,255,255,.4);-webkit-box-shadow:0 1px 0 0 rgba(255,255,255,.4)}.woocommerce #payment div.payment_box ::-webkit-input-placeholder,.woocommerce-page #payment div.payment_box ::-webkit-input-placeholder{color:#c8bfc6}.woocommerce #payment div.payment_box :-moz-placeholder,.woocommerce-page #payment div.payment_box :-moz-placeholder{color:#c8bfc6}.woocommerce #payment div.payment_box :-ms-input-placeholder,.woocommerce-page #payment div.payment_box :-ms-input-placeholder{color:#c8bfc6}.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc,.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry,.woocommerce #payment div.payment_box .wc-credit-card-form-card-number,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number{font-size:1.5em;padding:8px;background-repeat:no-repeat;background-position:right}.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc.visa,.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry.visa,.woocommerce #payment div.payment_box .wc-credit-card-form-card-number.visa,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc.visa,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry.visa,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number.visa{background-image:url(../images/icons/credit-cards/visa.png)}.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,.woocommerce #payment div.payment_box .wc-credit-card-form-card-number.mastercard,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number.mastercard{background-image:url(../images/icons/credit-cards/mastercard.png)}.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc.laser,.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry.laser,.woocommerce #payment div.payment_box .wc-credit-card-form-card-number.laser,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc.laser,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry.laser,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number.laser{background-image:url(../images/icons/credit-cards/laser.png)}.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,.woocommerce #payment div.payment_box .wc-credit-card-form-card-number.dinersclub,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number.dinersclub{background-image:url(../images/icons/credit-cards/diners.png)}.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,.woocommerce #payment div.payment_box .wc-credit-card-form-card-number.maestro,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number.maestro{background-image:url(../images/icons/credit-cards/maestro.png)}.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,.woocommerce #payment div.payment_box .wc-credit-card-form-card-number.jcb,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number.jcb{background-image:url(../images/icons/credit-cards/jcb.png)}.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc.amex,.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry.amex,.woocommerce #payment div.payment_box .wc-credit-card-form-card-number.amex,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc.amex,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry.amex,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number.amex{background-image:url(../images/icons/credit-cards/amex.png)}.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc.discover,.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry.discover,.woocommerce #payment div.payment_box .wc-credit-card-form-card-number.discover,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc.discover,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry.discover,.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number.discover{background-image:url(../images/icons/credit-cards/discover.png)}.woocommerce #payment div.payment_box span.help,.woocommerce-page #payment div.payment_box span.help{font-size:11px;color:#777;line-height:13px;font-weight:400}.woocommerce #payment div.payment_box .form-row,.woocommerce-page #payment div.payment_box .form-row{margin:0 0 1em}.woocommerce #payment div.payment_box p:last-child,.woocommerce-page #payment div.payment_box p:last-child{margin-bottom:0}.woocommerce #payment div.payment_box:after,.woocommerce-page #payment div.payment_box:after{content:"";display:block;border:8px solid #ebe8eb;border-right-color:transparent;border-left-color:transparent;border-top-color:transparent;position:absolute;top:-3px;left:0;margin:-1em 0 0 2em}.woocommerce .order_details,.woocommerce-page .order_details{margin:0 0 1.5em;list-style:none}.woocommerce .order_details:after,.woocommerce .order_details:before,.woocommerce-page .order_details:after,.woocommerce-page .order_details:before{content:" ";display:table}.woocommerce .order_details:after,.woocommerce-page .order_details:after{clear:both}.woocommerce .order_details li,.woocommerce-page .order_details li{float:left;margin-right:2em;text-transform:uppercase;font-size:.715em;line-height:1em;border-right:1px dashed #e0dadf;padding-right:2em}.woocommerce .order_details li strong,.woocommerce-page .order_details li strong{display:block;font-size:1.4em;text-transform:none;line-height:1.5em}.woocommerce .order_details li:last-of-type,.woocommerce-page .order_details li:last-of-type{border:none}.woocommerce .addresses .title:after,.woocommerce .addresses .title:before,.woocommerce-page .addresses .title:after,.woocommerce-page .addresses .title:before{content:" ";display:table}.woocommerce .addresses .title:after,.woocommerce-page .addresses .title:after{clear:both}.woocommerce .addresses .title h3,.woocommerce-page .addresses .title h3{float:left}.woocommerce .addresses .title .edit,.woocommerce-page .addresses .title .edit{float:right}.woocommerce ol.commentlist.notes li.note p.meta,.woocommerce-page ol.commentlist.notes li.note p.meta{font-weight:700;margin-bottom:0}.woocommerce ol.commentlist.notes li.note .description p:last-child,.woocommerce-page ol.commentlist.notes li.note .description p:last-child{margin-bottom:0}.woocommerce ul.digital-downloads,.woocommerce-page ul.digital-downloads{margin-left:0;padding-left:0}.woocommerce ul.digital-downloads li,.woocommerce-page ul.digital-downloads li{list-style:none;margin-left:0;padding-left:0}.woocommerce ul.digital-downloads li:before,.woocommerce-page ul.digital-downloads li:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:7px;content:"\e00a"}.woocommerce ul.digital-downloads li .count,.woocommerce-page ul.digital-downloads li .count{float:right}.woocommerce .widget_layered_nav ul,.woocommerce-page .widget_layered_nav ul{margin:0;padding:0;border:0;list-style:none}.woocommerce .widget_layered_nav ul li,.woocommerce-page .widget_layered_nav ul li{padding:0 0 1px;list-style:none}.woocommerce .widget_layered_nav ul li:after,.woocommerce .widget_layered_nav ul li:before,.woocommerce-page .widget_layered_nav ul li:after,.woocommerce-page .widget_layered_nav ul li:before{content:" ";display:table}.woocommerce .widget_layered_nav ul li:after,.woocommerce-page .widget_layered_nav ul li:after{clear:both}.woocommerce .widget_layered_nav ul li a,.woocommerce .widget_layered_nav ul li span,.woocommerce-page .widget_layered_nav ul li a,.woocommerce-page .widget_layered_nav ul li span{padding:1px 0;float:left}.woocommerce .widget_layered_nav ul li.chosen a,.woocommerce-page .widget_layered_nav ul li.chosen a{padding:0 6px;text-decoration:none;border:1px solid #ad74a2;background:#ad74a2;box-shadow:inset 0 1px 1px rgba(255,255,255,.5) #888;-webkit-box-shadow:inset 0 1px 1px rgba(255,255,255,.5) #888;color:#fff;-webkit-border-radius:3px;border-radius:3px}.woocommerce .widget_layered_nav ul li.chosen a:before,.woocommerce-page .widget_layered_nav ul li.chosen a:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:7px;content:"\e013"}.woocommerce .widget_layered_nav ul small.count,.woocommerce-page .widget_layered_nav ul small.count{float:right;margin-left:6px;font-size:1em;padding:1px 0;color:#777}.woocommerce .widget_layered_nav_filters ul,.woocommerce-page .widget_layered_nav_filters ul{margin:0;padding:0;border:0;list-style:none;overflow:hidden;zoom:1}.woocommerce .widget_layered_nav_filters ul li,.woocommerce-page .widget_layered_nav_filters ul li{float:left;padding:0 1px 1px 0;list-style:none}.woocommerce .widget_layered_nav_filters ul li a,.woocommerce-page .widget_layered_nav_filters ul li a{padding:0 6px;text-decoration:none;border:1px solid #ad74a2;background:#ad74a2;box-shadow:inset 0 1px 1px rgba(255,255,255,.5) #888;-webkit-box-shadow:inset 0 1px 1px rgba(255,255,255,.5) #888;color:#fff;-webkit-border-radius:3px;border-radius:3px;float:left}.woocommerce .widget_layered_nav_filters ul li a:before,.woocommerce-page .widget_layered_nav_filters ul li a:before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:7px;content:"\e013"}.woocommerce .widget_price_filter .price_slider,.woocommerce-page .widget_price_filter .price_slider{margin-bottom:1em}.woocommerce .widget_price_filter .price_slider_amount,.woocommerce-page .widget_price_filter .price_slider_amount{text-align:right;line-height:2.4em;font-size:.8751em}.woocommerce .widget_price_filter .price_slider_amount .button,.woocommerce-page .widget_price_filter .price_slider_amount .button{font-size:1.15em;float:left}.woocommerce .widget_price_filter .ui-slider,.woocommerce-page .widget_price_filter .ui-slider{position:relative;text-align:left}.woocommerce .widget_price_filter .ui-slider .ui-slider-handle,.woocommerce-page .widget_price_filter .ui-slider .ui-slider-handle{position:absolute;z-index:2;width:.9em;height:.9em;-webkit-border-radius:1em;border-radius:1em;border:1px solid #150d14;cursor:pointer;background:#ad74a2;background:-webkit-gradient(linear,left top,left bottom,from(#ad74a2),to(#96588a));background:-webkit-linear-gradient(#ad74a2,#96588a);background:-moz-linear-gradient(center top,#ad74a2 0,#96588a 100%);background:-moz-gradient(center top,#ad74a2 0,#96588a 100%);outline:0;top:-.3em;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.65);-moz-box-shadow:0 1px 2px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.65);box-shadow:0 1px 2px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.65)}.woocommerce .widget_price_filter .ui-slider .ui-slider-handle:last-child,.woocommerce-page .widget_price_filter .ui-slider .ui-slider-handle:last-child{margin-left:-1em}.woocommerce .widget_price_filter .ui-slider .ui-slider-range,.woocommerce-page .widget_price_filter .ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAADCAYAAABS3WWCAAAAFUlEQVQIHWP4//9/PRMDA8NzEPEMADLLBU76a5idAAAAAElFTkSuQmCC) top repeat-x #ad74a2;box-shadow:inset 0 0 0 1px rgba(0,0,0,.5);-webkit-box-shadow:inset 0 0 0 1px rgba(0,0,0,.5);-webkit-border-radius:1em;border-radius:1em}.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content,.woocommerce-page .widget_price_filter .price_slider_wrapper .ui-widget-content{-webkit-border-radius:1em;border-radius:1em;background:#1e1e1e;background:-webkit-gradient(linear,left top,left bottom,from(#1e1e1e),to(#6a6a6a));background:-webkit-linear-gradient(#1e1e1e,#6a6a6a);background:-moz-linear-gradient(center top,#1e1e1e 0,#6a6a6a 100%);background:-moz-gradient(center top,#1e1e1e 0,#6a6a6a 100%)}.woocommerce .widget_price_filter .ui-slider-horizontal,.woocommerce-page .widget_price_filter .ui-slider-horizontal{height:.5em}.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range,.woocommerce-page .widget_price_filter .ui-slider-horizontal .ui-slider-range{top:0;height:100%}.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range-min,.woocommerce-page .widget_price_filter .ui-slider-horizontal .ui-slider-range-min{left:-1px}.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range-max,.woocommerce-page .widget_price_filter .ui-slider-horizontal .ui-slider-range-max{right:-1px}.single-product .twentythirteen #reply-title,.single-product .twentythirteen #respond #commentform,.single-product .twentythirteen .entry-summary{padding:0}.single-product .twentythirteen p.stars{clear:both}.twentythirteen .woocommerce-breadcrumb{padding-top:40px}.twentyfourteen ul.products li.product{margin-top:0!important}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){.woocommerce #content input.button.loading:before,.woocommerce #respond input#submit.loading:before,.woocommerce a.button.loading:before,.woocommerce button.button.loading:before,.woocommerce input.button.loading:before,.woocommerce-page #content input.button.loading:before,.woocommerce-page #respond input#submit.loading:before,.woocommerce-page a.button.loading:before,.woocommerce-page button.button.loading:before,.woocommerce-page input.button.loading:before{background-image:url(../images/ajax-loader@2x.gif);background-size:16px 16px}} \ No newline at end of file diff --git a/assets/css/woocommerce.less b/assets/css/woocommerce.less index 0e0c362fe62..f1dae6ead81 100644 --- a/assets/css/woocommerce.less +++ b/assets/css/woocommerce.less @@ -1,10 +1,10 @@ -@import "mixins"; -@import "woocommerce-base"; /* Contains base colours like @primary */ +@import "mixins.less"; +@import "woocommerce-base.less"; /* Contains base colours like @primary */ /* Colours */ -@tertiary: @primary; /* Price slider bar / layered nav UI */ -@tertiarytext: @primarytext; /* Text on tertiary colour bg */ -@quaternary: desaturate( darken( @tertiary, 45%), 40% ); /* Price slider bg */ +@tertiary: @primary; /* Price slider bar / layered nav UI */ +@tertiarytext: @primarytext; /* Text on tertiary colour bg */ +@quaternary: desaturate( darken( @tertiary, 45%), 40% ); /* Price slider bg */ /* =Custom Font -------------------------------------------------------------- */ @@ -676,6 +676,7 @@ p.demo_store { height: 28px; float:left; padding: 0; + margin: 0; text-align: center; border: 1px solid darken( @secondary, 20 ); border-right: 0; @@ -683,6 +684,7 @@ p.demo_store { .inset_box_shadow( 0, 0, 2px, 0, @secondary ); font-weight:bold; .border_radius_left(2px); + -moz-appearance: textfield; /* Hide buttons for Firefox 29 and later */ } /* Hide buttons for opera */ @@ -927,34 +929,103 @@ p.demo_store { } p.stars { - .clearfix(); - span { - width: 80px; - height: 16px; + position: relative; + font-size: 1em; + + a { + display: inline-block; + font-weight: 700; + margin-right: 1em; + text-indent: -9999px; position: relative; - float:left; - background: url(../images/star.png) repeat-x left 0; - a { - float:left; - position:absolute; - left: 0; - top: 0; - width: 16px; - height: 0; - padding-top: 16px; - overflow:hidden; + + &:last-child { + border-right:0; } - a:hover, a:focus { - background: url(../images/star.png) repeat-x left -16px; + + &.star-1, + &.star-2, + &.star-3, + &.star-4, + &.star-5 { + border-right:1px solid #ccc; + + &:after { + font-family: "WooCommerce"; + text-indent: 0; + position: absolute; + top: 0; + left: 0; + //padding-right: 1em; + } + } - a.active { - background: url(../images/star.png) repeat-x left -32px; + + &.star-1 { + width: 2em; + + &:after { + content: "\e021"; + } + + &:hover:after, + &.active:after { + content: "\e020" + } + } + + &.star-2 { + width: 3em; + + &:after { + content: "\e021\e021"; + } + + &:hover:after, + &.active:after { + content: "\e020\e020" + } + } + + &.star-3 { + width: 4em; + + &:after { + content: "\e021\e021\e021"; + } + + &:hover:after, + &.active:after { + content: "\e020\e020\e020" + } + } + + &.star-4 { + width: 5em; + + &:after { + content: "\e021\e021\e021\e021"; + } + + &:hover:after, + &.active:after { + content: "\e020\e020\e020\e020" + } + } + + &.star-5 { + width: 6em; + border: 0; + + &:after { + content: "\e021\e021\e021\e021\e021"; + } + + &:hover:after, + &.active:after { + content: "\e020\e020\e020\e020\e020" + } } - a.star-1 { width: 16px; z-index: 10; } - a.star-2 { width: 32px; z-index: 9; } - a.star-3 { width: 48px; z-index: 8; } - a.star-4 { width: 64px; z-index: 7; } - a.star-5 { width: 80px; z-index: 6; } } } @@ -1154,7 +1225,7 @@ p.demo_store { dt, dd { display: inline-block; float: left; - margin-botom:1em; + margin-bottom:1em; } dt { font-weight:bold; @@ -1200,6 +1271,11 @@ p.demo_store { float:none; display:block; } + .shipping-calculator-button { + &:after { + .iconafter( "\e02e" ); + } + } } .cart_totals { p { @@ -1244,9 +1320,14 @@ p.demo_store { border-top: 1px solid @secondary; } a.button.alt { - width: 193px; - display:block; - font-size: 0.92em; + display: inline-block; + } + } + .cross-sells { + ul.products { + li.product { + margin-top: 0; + } } } } @@ -1352,7 +1433,7 @@ p.demo_store { .checkout { .col-2 { - h3 { + h3#ship-to-different-address { float:left; clear:none; } @@ -1404,7 +1485,12 @@ p.demo_store { img { vertical-align: middle; margin: -2px 0 0 .5em; + padding: 0; position: relative; + box-shadow: none; + } + img + img { + margin-left: 2px; } } } @@ -1727,9 +1813,33 @@ p.demo_store { /* =Twenty Thirteen Specific styles -------------------------------------------------------------- */ +.single-product { + .twentythirteen { + .entry-summary, + #reply-title, + #respond #commentform { + padding: 0; + } + + p.stars { + clear: both; + } + } +} + .twentythirteen { - .entry-summary { - padding:0; + .woocommerce-breadcrumb { + padding-top: 40px; + } +} + +/* =Twenty Fourteen Specific styles +-------------------------------------------------------------- */ +.twentyfourteen { + ul.products { + li.product { + margin-top: 0 !important; + } } } @@ -1745,19 +1855,5 @@ p.demo_store { } } } - p.stars { - span { - background-image: url(../images/star@2x.png); - background-size: 16px 48px; - a:hover, a:focus { - background-image: url(../images/star@2x.png); - background-size: 16px 48px; - } - a.active { - background-image: url(../images/star@2x.png); - background-size: 16px 48px; - } - } - } } -} \ No newline at end of file +} diff --git a/assets/fonts/WooCommerce.eot b/assets/fonts/WooCommerce.eot old mode 100755 new mode 100644 diff --git a/assets/fonts/WooCommerce.svg b/assets/fonts/WooCommerce.svg old mode 100755 new mode 100644 diff --git a/assets/fonts/WooCommerce.ttf b/assets/fonts/WooCommerce.ttf old mode 100755 new mode 100644 diff --git a/assets/fonts/WooCommerce.woff b/assets/fonts/WooCommerce.woff old mode 100755 new mode 100644 diff --git a/assets/images/chosen-sprite@2x.png b/assets/images/chosen-sprite@2x.png index ffe4d7d1121..bd61d9638f0 100644 Binary files a/assets/images/chosen-sprite@2x.png and b/assets/images/chosen-sprite@2x.png differ diff --git a/assets/images/gear.png b/assets/images/gear.png deleted file mode 100644 index b36f09a5356..00000000000 Binary files a/assets/images/gear.png and /dev/null differ diff --git a/assets/images/icons/credit-cards/diners.png b/assets/images/icons/credit-cards/diners.png index b354adc2b24..294073d9fd9 100644 Binary files a/assets/images/icons/credit-cards/diners.png and b/assets/images/icons/credit-cards/diners.png differ diff --git a/assets/images/icons/credit-cards/discover.png b/assets/images/icons/credit-cards/discover.png index e70a388250d..a0f4ab39ccf 100644 Binary files a/assets/images/icons/credit-cards/discover.png and b/assets/images/icons/credit-cards/discover.png differ diff --git a/assets/images/icons/credit-cards/jcb.png b/assets/images/icons/credit-cards/jcb.png index b940294be8d..30f31a311a9 100644 Binary files a/assets/images/icons/credit-cards/jcb.png and b/assets/images/icons/credit-cards/jcb.png differ diff --git a/assets/images/icons/credit-cards/maestro.png b/assets/images/icons/credit-cards/maestro.png index f0748f034bc..509d99b8724 100644 Binary files a/assets/images/icons/credit-cards/maestro.png and b/assets/images/icons/credit-cards/maestro.png differ diff --git a/assets/images/icons/credit-cards/mastercard.png b/assets/images/icons/credit-cards/mastercard.png index 252f8595886..8a6e716e322 100644 Binary files a/assets/images/icons/credit-cards/mastercard.png and b/assets/images/icons/credit-cards/mastercard.png differ diff --git a/assets/images/icons/credit-cards/visa.png b/assets/images/icons/credit-cards/visa.png index d72b66a9b6a..43cbfcbf7a4 100644 Binary files a/assets/images/icons/credit-cards/visa.png and b/assets/images/icons/credit-cards/visa.png differ diff --git a/assets/images/icons/edit.png b/assets/images/icons/edit.png index 651f0fdf76e..8167b2bfcbe 100644 Binary files a/assets/images/icons/edit.png and b/assets/images/icons/edit.png differ diff --git a/assets/images/icons/menu_icons-x2.png b/assets/images/icons/menu_icons-x2.png deleted file mode 100644 index 964ea7ffc88..00000000000 Binary files a/assets/images/icons/menu_icons-x2.png and /dev/null differ diff --git a/assets/images/icons/menu_icons.png b/assets/images/icons/menu_icons.png deleted file mode 100644 index c2a6dba1a27..00000000000 Binary files a/assets/images/icons/menu_icons.png and /dev/null differ diff --git a/assets/images/icons/wc_icon.png b/assets/images/icons/wc_icon.png deleted file mode 100644 index 2874d4d64f5..00000000000 Binary files a/assets/images/icons/wc_icon.png and /dev/null differ diff --git a/assets/images/icons/wc_icon@2x.png b/assets/images/icons/wc_icon@2x.png deleted file mode 100644 index e5ca3560cd1..00000000000 Binary files a/assets/images/icons/wc_icon@2x.png and /dev/null differ diff --git a/assets/images/icons/woocommerce-icons-x2.png b/assets/images/icons/woocommerce-icons-x2.png deleted file mode 100644 index 5633fb9a380..00000000000 Binary files a/assets/images/icons/woocommerce-icons-x2.png and /dev/null differ diff --git a/assets/images/icons/woocommerce-icons.png b/assets/images/icons/woocommerce-icons.png deleted file mode 100644 index 4bf100cbf14..00000000000 Binary files a/assets/images/icons/woocommerce-icons.png and /dev/null differ diff --git a/assets/images/image_watermark.png b/assets/images/image_watermark.png deleted file mode 100644 index 8eba3058f85..00000000000 Binary files a/assets/images/image_watermark.png and /dev/null differ diff --git a/assets/images/mijireh-logo.png b/assets/images/mijireh-logo.png deleted file mode 100644 index 5a2cb8f06f7..00000000000 Binary files a/assets/images/mijireh-logo.png and /dev/null differ diff --git a/assets/images/star.png b/assets/images/star.png deleted file mode 100644 index f6a2eefd2fd..00000000000 Binary files a/assets/images/star.png and /dev/null differ diff --git a/assets/images/star@2x.png b/assets/images/star@2x.png deleted file mode 100644 index 7a91a0e9e69..00000000000 Binary files a/assets/images/star@2x.png and /dev/null differ diff --git a/assets/images/welcome/badge-sucuri.png b/assets/images/welcome/badge-sucuri.png deleted file mode 100644 index c582d57e1e6..00000000000 Binary files a/assets/images/welcome/badge-sucuri.png and /dev/null differ diff --git a/assets/images/welcome/downloads.png b/assets/images/welcome/downloads.png deleted file mode 100644 index 2eeb59e4fd1..00000000000 Binary files a/assets/images/welcome/downloads.png and /dev/null differ diff --git a/assets/images/welcome/orders.png b/assets/images/welcome/orders.png deleted file mode 100644 index d4a42cd3fb3..00000000000 Binary files a/assets/images/welcome/orders.png and /dev/null differ diff --git a/assets/images/welcome/pagination.png b/assets/images/welcome/pagination.png deleted file mode 100644 index e40d1102bcb..00000000000 Binary files a/assets/images/welcome/pagination.png and /dev/null differ diff --git a/assets/images/welcome/product.png b/assets/images/welcome/product.png deleted file mode 100644 index a334c1977c2..00000000000 Binary files a/assets/images/welcome/product.png and /dev/null differ diff --git a/assets/images/welcome/rating.png b/assets/images/welcome/rating.png deleted file mode 100644 index f0e888556fd..00000000000 Binary files a/assets/images/welcome/rating.png and /dev/null differ diff --git a/assets/images/welcome/sorting.png b/assets/images/welcome/sorting.png deleted file mode 100644 index 5617a2a6c75..00000000000 Binary files a/assets/images/welcome/sorting.png and /dev/null differ diff --git a/assets/images/welcome/taxes.png b/assets/images/welcome/taxes.png deleted file mode 100644 index 6566e376c88..00000000000 Binary files a/assets/images/welcome/taxes.png and /dev/null differ diff --git a/assets/images/welcome/wc-welcome.png b/assets/images/welcome/wc-welcome.png deleted file mode 100644 index 8d9d12b28d5..00000000000 Binary files a/assets/images/welcome/wc-welcome.png and /dev/null differ diff --git a/assets/images/welcome/wc-welcome@2x.png b/assets/images/welcome/wc-welcome@2x.png deleted file mode 100644 index 267a3a9a60d..00000000000 Binary files a/assets/images/welcome/wc-welcome@2x.png and /dev/null differ diff --git a/assets/js/admin/accounting.min.js b/assets/js/admin/accounting.min.js index b59b9987c69..29535c31ff6 100644 --- a/assets/js/admin/accounting.min.js +++ b/assets/js/admin/accounting.min.js @@ -7,4 +7,5 @@ * * Full details and documentation: * http://josscrowcroft.github.com/accounting.js/ - */(function(e,t){function o(e){return!!(e===""||e&&e.charCodeAt&&e.substr)}function u(e){return i?i(e):s.call(e)==="[object Array]"}function a(e){return e&&s.call(e)==="[object Object]"}function f(e,t){var n;e=e||{};t=t||{};for(n in t)t.hasOwnProperty(n)&&e[n]==null&&(e[n]=t[n]);return e}function l(e,t,n){var i=[],s,o;if(!e)return i;if(r&&e.map===r)return e.map(t,n);for(s=0,o=e.length;s3?m.length%3:0;return h+(g?m.substr(0,g)+s.thousand:"")+m.substr(g).replace(/(\d{3})(?=\d)/g,"$1"+s.thousand)+(o?s.decimal+d(Math.abs(e),o).split(".")[1]:"")},m=n.formatMoney=function(e,t,r,i,s,o){if(u(e))return l(e,function(e){return m(e,t,r,i,s,o)});e=p(e);var d=f(a(t)?t:{symbol:t,precision:r,thousand:i,decimal:s,format:o},n.settings.currency),g=h(d.format),y=e>0?g.pos:e<0?g.neg:g.zero;return y.replace("%s",d.symbol).replace("%v",v(Math.abs(e),c(d.precision),d.thousand,d.decimal))};n.formatColumn=function(e,t,r,i,s,d){if(!e)return[];var m=f(a(t)?t:{symbol:t,precision:r,thousand:i,decimal:s,format:d},n.settings.currency),g=h(m.format),y=g.pos.indexOf("%s")0?g.pos:e<0?g.neg:g.zero,i=r.replace("%s",m.symbol).replace("%v",v(Math.abs(e),c(m.precision),m.thousand,m.decimal));i.length>b&&(b=i.length);return i});return l(w,function(e,t){return o(e)&&e.lengthd;d++)f[d]=b.call(c,a[d],d,a);return f}function h(a,b){return a=Math.round(Math.abs(a)),isNaN(a)?b:a}function i(a){var b=j.settings.currency.format;return"function"==typeof a&&(a=a()),c(a)&&a.match("%v")?{pos:a,neg:a.replace("-","").replace("%v","-%v"),zero:a}:a&&a.pos&&a.pos.match("%v")?a:c(b)?j.settings.currency.format={pos:b,neg:b.replace("%v","-%v"),zero:b}:b}var j={};j.version="0.3.2",j.settings={currency:{symbol:"$",format:"%s%v",decimal:".",thousand:",",precision:2,grouping:3},number:{precision:0,grouping:3,thousand:",",decimal:"."}};var k=Array.prototype.map,l=Array.isArray,m=Object.prototype.toString,n=j.unformat=j.parse=function(a,b){if(d(a))return g(a,function(a){return n(a,b)});if(a=a||0,"number"==typeof a)return a;b=b||j.settings.number.decimal;var c=new RegExp("[^0-9-"+b+"]",["g"]),e=parseFloat((""+a).replace(/\((.*)\)/,"-$1").replace(c,"").replace(b,"."));return isNaN(e)?0:e},o=j.toFixed=function(a,b){b=h(b,j.settings.number.precision);var c=Math.pow(10,b);return(Math.round(j.unformat(a)*c)/c).toFixed(b)},p=j.formatNumber=function(a,b,c,i){if(d(a))return g(a,function(a){return p(a,b,c,i)});a=n(a);var k=f(e(b)?b:{precision:b,thousand:c,decimal:i},j.settings.number),l=h(k.precision),m=0>a?"-":"",q=parseInt(o(Math.abs(a||0),l),10)+"",r=q.length>3?q.length%3:0;return m+(r?q.substr(0,r)+k.thousand:"")+q.substr(r).replace(/(\d{3})(?=\d)/g,"$1"+k.thousand)+(l?k.decimal+o(Math.abs(a),l).split(".")[1]:"")},q=j.formatMoney=function(a,b,c,k,l,m){if(d(a))return g(a,function(a){return q(a,b,c,k,l,m)});a=n(a);var o=f(e(b)?b:{symbol:b,precision:c,thousand:k,decimal:l,format:m},j.settings.currency),r=i(o.format),s=a>0?r.pos:0>a?r.neg:r.zero;return s.replace("%s",o.symbol).replace("%v",p(Math.abs(a),h(o.precision),o.thousand,o.decimal))};j.formatColumn=function(a,b,k,l,m,o){if(!a)return[];var q=f(e(b)?b:{symbol:b,precision:k,thousand:l,decimal:m,format:o},j.settings.currency),r=i(q.format),s=r.pos.indexOf("%s")0?r.pos:0>a?r.neg:r.zero,c=b.replace("%s",q.symbol).replace("%v",p(Math.abs(a),h(q.precision),q.thousand,q.decimal));return c.length>t&&(t=c.length),c});return g(u,function(a){return c(a)&&a.length=1?"rgb("+[s.r,s.g,s.b].join(",")+")":"rgba("+[s.r,s.g,s.b,s.a].join(",")+")"};s.normalize=function(){function e(e,t,n){return tn?n:t}s.r=e(0,parseInt(s.r),255);s.g=e(0,parseInt(s.g),255);s.b=e(0,parseInt(s.b),255);s.a=e(0,s.a,1);return s};s.clone=function(){return e.color.make(s.r,s.b,s.g,s.a)};return s.normalize()};e.color.extract=function(t,n){var r;do{r=t.css(n).toLowerCase();if(r!=""&&r!="transparent")break;t=t.parent()}while(!e.nodeName(t.get(0),"body"));r=="rgba(0, 0, 0, 0)"&&(r="transparent");return e.color.parse(r)};e.color.parse=function(n){var r,i=e.color.make;if(r=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(n))return i(parseInt(r[1],10),parseInt(r[2],10),parseInt(r[3],10));if(r=/rgba\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(n))return i(parseInt(r[1],10),parseInt(r[2],10),parseInt(r[3],10),parseFloat(r[4]));if(r=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(n))return i(parseFloat(r[1])*2.55,parseFloat(r[2])*2.55,parseFloat(r[3])*2.55);if(r=/rgba\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(n))return i(parseFloat(r[1])*2.55,parseFloat(r[2])*2.55,parseFloat(r[3])*2.55,parseFloat(r[4]));if(r=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(n))return i(parseInt(r[1],16),parseInt(r[2],16),parseInt(r[3],16));if(r=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(n))return i(parseInt(r[1]+r[1],16),parseInt(r[2]+r[2],16),parseInt(r[3]+r[3],16));var s=e.trim(n).toLowerCase();if(s=="transparent")return i(255,255,255,0);r=t[s]||[0,0,0];return i(r[0],r[1],r[2])};var t={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0]}})(jQuery);(function(e){function n(t,n){var r=n.children("."+t)[0];if(r==null){r=document.createElement("canvas");r.className=t;e(r).css({direction:"ltr",position:"absolute",left:0,top:0}).appendTo(n);if(!r.getContext){if(!window.G_vmlCanvasManager)throw new Error("Canvas is not available. If you're using IE with a fall-back such as Excanvas, then there's either a mistake in your conditional include, or the page has no DOCTYPE and is rendering in Quirks Mode.");r=window.G_vmlCanvasManager.initElement(r)}}this.element=r;var i=this.context=r.getContext("2d"),s=window.devicePixelRatio||1,o=i.webkitBackingStorePixelRatio||i.mozBackingStorePixelRatio||i.msBackingStorePixelRatio||i.oBackingStorePixelRatio||i.backingStorePixelRatio||1;this.pixelRatio=s/o;this.resize(n.width(),n.height());this.textContainer=null;this.text={};this._textCache={}}function r(t,r,s,o){function E(e,t){t=[w].concat(t);for(var n=0;nn&&(n=i)}}t<=n&&(t=n+1);var s,o=[],f=a.colors,l=f.length,c=0;for(r=0;r=0?c<.5?c=-c-.2:c=0:c=-c);o[r]=s.scale("rgb",1+c)}var h=0,p;for(r=0;re.datamax&&n!=r&&(e.datamax=n)}var t=Number.POSITIVE_INFINITY,n=Number.NEGATIVE_INFINITY,r=Number.MAX_VALUE,i,s,o,a,f,l,c,h,p,d,v,m,g,y,w,S;e.each(k(),function(e,r){r.datamin=t;r.datamax=n;r.used=!1});for(i=0;i0&&c[o-h]!=null&&c[o-h]!=c[o]&&c[o-h+1]!=c[o+1]){for(a=0;aO&&(O=m)}if(g.y){mM&&(M=m)}}}if(l.bars.show){var _;switch(l.bars.align){case"left":_=0;break;case"right":_=-l.bars.barWidth;break;case"center":_=-l.bars.barWidth/2;break;default:throw new Error("Invalid bar alignment: "+l.bars.align)}if(l.bars.horizontal){A+=_;M+=_+l.bars.barWidth}else{L+=_;O+=_+l.bars.barWidth}}x(l.xaxis,L,O);x(l.yaxis,A,M)}e.each(k(),function(e,r){r.datamin==t&&(r.datamin=null);r.datamax==n&&(r.datamax=null)})}function D(){t.css("padding",0).children(":not(.flot-base,.flot-overlay)").remove();t.css("position")=="static"&&t.css("position","relative");f=new n("flot-base",t);l=new n("flot-overlay",t);h=f.context;p=l.context;c=e(l.element).unbind();var r=t.data("plot");if(r){r.shutdown();l.clear()}t.data("plot",w)}function P(){if(a.grid.hoverable){c.mousemove(at);c.bind("mouseleave",ft)}a.grid.clickable&&c.click(lt);E(b.bindEvents,[c])}function H(){ot&&clearTimeout(ot);c.unbind("mousemove",at);c.unbind("mouseleave",ft);c.unbind("click",lt);E(b.shutdown,[c])}function B(e){function t(e){return e}var n,r,i=e.options.transform||t,s=e.options.inverseTransform;if(e.direction=="x"){n=e.scale=g/Math.abs(i(e.max)-i(e.min));r=Math.min(i(e.max),i(e.min))}else{n=e.scale=y/Math.abs(i(e.max)-i(e.min));n=-n;r=Math.max(i(e.max),i(e.min))}i==t?e.p2c=function(e){return(e-r)*n}:e.p2c=function(e){return(i(e)-r)*n};s?e.c2p=function(e){return s(r+e/n)}:e.c2p=function(e){return r+e/n}}function j(e){var t=e.options,n=e.ticks||[],r=t.labelWidth||0,i=t.labelHeight||0,s=r||e.direction=="x"?Math.floor(f.width/(n.length||1)):null;legacyStyles=e.direction+"Axis "+e.direction+e.n+"Axis",layer="flot-"+e.direction+"-axis flot-"+e.direction+e.n+"-axis "+legacyStyles,font=t.font||"flot-tick-label tickLabel";for(var o=0;o=0;--t)F(o[t]);q();e.each(o,function(e,t){I(t)})}g=f.width-m.left-m.right;y=f.height-m.bottom-m.top;e.each(n,function(e,t){B(t)});r&&G();it()}function U(e){var t=e.options,n=+(t.min!=null?t.min:e.datamin),r=+(t.max!=null?t.max:e.datamax),i=r-n;if(i==0){var s=r==0?1:.01;t.min==null&&(n-=s);if(t.max==null||t.min!=null)r+=s}else{var o=t.autoscaleMargin;if(o!=null){if(t.min==null){n-=i*o;n<0&&e.datamin!=null&&e.datamin>=0&&(n=0)}if(t.max==null){r+=i*o;r>0&&e.datamax!=null&&e.datamax<=0&&(r=0)}}}e.min=n;e.max=r}function z(t){var n=t.options,r;typeof n.ticks=="number"&&n.ticks>0?r=n.ticks:r=.3*Math.sqrt(t.direction=="x"?f.width:f.height);var s=(t.max-t.min)/r,o=-Math.floor(Math.log(s)/Math.LN10),u=n.tickDecimals;u!=null&&o>u&&(o=u);var a=Math.pow(10,-o),l=s/a,c;if(l<1.5)c=1;else if(l<3){c=2;if(l>2.25&&(u==null||o+1<=u)){c=2.5;++o}}else l<7.5?c=5:c=10;c*=a;n.minTickSize!=null&&c0){n.min==null&&(t.min=Math.min(t.min,p[0]));n.max==null&&p.length>1&&(t.max=Math.max(t.max,p[p.length-1]))}t.tickGenerator=function(e){var t=[],n,r;for(r=0;r1&&/\..*0$/.test((g[1]-g[0]).toFixed(m))||(t.tickDecimals=m)}}}}function W(t){var n=t.options.ticks,r=[];n==null||typeof n=="number"&&n>0?r=t.tickGenerator(t):n&&(e.isFunction(n)?r=n(t):r=n);var i,s;t.ticks=[];for(i=0;i1&&(o=u[1])}else s=+u;o==null&&(o=t.tickFormatter(s,t));isNaN(s)||t.ticks.push({v:s,label:o})}}function X(e,t){if(e.options.autoscaleMargin&&t.length>0){e.options.min==null&&(e.min=Math.min(e.min,t[0].v));e.options.max==null&&t.length>1&&(e.max=Math.max(e.max,t[t.length-1].v))}}function V(){f.clear();E(b.drawBackground,[h]);var e=a.grid;e.show&&e.backgroundColor&&K();e.show&&!e.aboveData&&Q();for(var t=0;ti){var a=r;r=i;i=a}return{from:r,to:i,axis:n}}function K(){h.save();h.translate(m.left,m.top);h.fillStyle=bt(a.grid.backgroundColor,y,0,"rgba(255, 255, 255, 0)");h.fillRect(0,0,g,y);h.restore()}function Q(){var t,n,r,i;h.save();h.translate(m.left,m.top);var s=a.grid.markings;if(s){if(e.isFunction(s)){n=w.getAxes();n.xmin=n.xaxis.min;n.xmax=n.xaxis.max;n.ymin=n.yaxis.min;n.ymax=n.yaxis.max;s=s(n)}for(t=0;tu.axis.max||f.tof.axis.max)continue;u.from=Math.max(u.from,u.axis.min);u.to=Math.min(u.to,u.axis.max);f.from=Math.max(f.from,f.axis.min);f.to=Math.min(f.to,f.axis.max);if(u.from==u.to&&f.from==f.to)continue;u.from=u.axis.p2c(u.from);u.to=u.axis.p2c(u.to);f.from=f.axis.p2c(f.from);f.to=f.axis.p2c(f.to);if(u.from==u.to||f.from==f.to){h.beginPath();h.strokeStyle=o.color||a.grid.markingsColor;h.lineWidth=o.lineWidth||a.grid.markingsLineWidth;h.moveTo(u.from,f.from);h.lineTo(u.to,f.to);h.stroke()}else{h.fillStyle=o.color||a.grid.markingsColor;h.fillRect(u.from,f.to,u.to-u.from,f.from-f.to)}}}n=k();r=a.grid.borderWidth;for(var l=0;lc.max||d=="full"&&(typeof r=="object"&&r[c.position]>0||r>0)&&(x==c.min||x==c.max))continue;if(c.direction=="x"){v=c.p2c(x);S=d=="full"?-y:d;c.position=="top"&&(S=-S)}else{b=c.p2c(x);E=d=="full"?-g:d;c.position=="left"&&(E=-E)}h.lineWidth==1&&(c.direction=="x"?v=Math.floor(v)+.5:b=Math.floor(b)+.5);h.moveTo(v,b);h.lineTo(v+E,b+S)}h.stroke()}if(r){i=a.grid.borderColor;if(typeof r=="object"||typeof i=="object"){typeof r!="object"&&(r={top:r,right:r,bottom:r,left:r});typeof i!="object"&&(i={top:i,right:i,bottom:i,left:i});if(r.top>0){h.strokeStyle=i.top;h.lineWidth=r.top;h.beginPath();h.moveTo(0-r.left,0-r.top/2);h.lineTo(g,0-r.top/2);h.stroke()}if(r.right>0){h.strokeStyle=i.right;h.lineWidth=r.right;h.beginPath();h.moveTo(g+r.right/2,0-r.top);h.lineTo(g+r.right/2,y);h.stroke()}if(r.bottom>0){h.strokeStyle=i.bottom;h.lineWidth=r.bottom;h.beginPath();h.moveTo(g+r.right,y+r.bottom/2);h.lineTo(0,y+r.bottom/2);h.stroke()}if(r.left>0){h.strokeStyle=i.left;h.lineWidth=r.left;h.beginPath();h.moveTo(0-r.left/2,y+r.bottom);h.lineTo(0-r.left/2,0);h.stroke()}}else{h.lineWidth=r;h.strokeStyle=a.grid.borderColor;h.strokeRect(-r/2,-r/2,g+r,y+r)}}h.restore()}function G(){e.each(k(),function(e,t){if(!t.show||t.ticks.length==0)return;var n=t.box,r=t.direction+"Axis "+t.direction+t.n+"Axis",i="flot-"+t.direction+"-axis flot-"+t.direction+t.n+"-axis "+r,s=t.options.font||"flot-tick-label tickLabel",o,u,a,l,c;f.removeText(i);for(var h=0;ht.max)continue;if(t.direction=="x"){l="center";u=m.left+t.p2c(o.v);if(t.position=="bottom")a=n.top+n.padding;else{a=n.top+n.height-n.padding;c="bottom"}}else{c="middle";a=m.top+t.p2c(o.v);if(t.position=="left"){u=n.left+n.width-n.padding;l="right"}else u=n.left+n.padding}f.addText(i,u,a,o.label,s,null,null,l,c)}})}function Y(e){e.lines.show&&Z(e);e.bars.show&&nt(e);e.points.show&&et(e)}function Z(e){function t(e,t,n,r,i){var s=e.points,o=e.pointsize,u=null,a=null;h.beginPath();for(var f=o;f=d&&c>i.max){if(d>i.max)continue;l=(i.max-c)/(d-c)*(p-l)+l;c=i.max}else if(d>=c&&d>i.max){if(c>i.max)continue;p=(i.max-c)/(d-c)*(p-l)+l;d=i.max}if(l<=p&&l=p&&l>r.max){if(p>r.max)continue;c=(r.max-l)/(p-l)*(d-c)+c;l=r.max}else if(p>=l&&p>r.max){if(l>r.max)continue;d=(r.max-l)/(p-l)*(d-c)+c;p=r.max}(l!=u||c!=a)&&h.moveTo(r.p2c(l)+t,i.p2c(c)+n);u=p;a=d;h.lineTo(r.p2c(p)+t,i.p2c(d)+n)}h.stroke()}function n(e,t,n){var r=e.points,i=e.pointsize,s=Math.min(Math.max(0,n.min),n.max),o=0,u,a=!1,f=1,l=0,c=0;for(;;){if(i>0&&o>r.length+i)break;o+=i;var p=r[o-i],d=r[o-i+f],v=r[o],m=r[o+f];if(a){if(i>0&&p!=null&&v==null){c=o;i=-i;f=2;continue}if(i<0&&o==l+i){h.fill();a=!1;i=-i;f=1;o=l=c+i;continue}}if(p==null||v==null)continue;if(p<=v&&p=v&&p>t.max){if(v>t.max)continue;d=(t.max-p)/(v-p)*(m-d)+d;p=t.max}else if(v>=p&&v>t.max){if(p>t.max)continue;m=(t.max-p)/(v-p)*(m-d)+d;v=t.max}if(!a){h.beginPath();h.moveTo(t.p2c(p),n.p2c(s));a=!0}if(d>=n.max&&m>=n.max){h.lineTo(t.p2c(p),n.p2c(n.max));h.lineTo(t.p2c(v),n.p2c(n.max));continue}if(d<=n.min&&m<=n.min){h.lineTo(t.p2c(p),n.p2c(n.min));h.lineTo(t.p2c(v),n.p2c(n.min));continue}var g=p,y=v;if(d<=m&&d=n.min){p=(n.min-d)/(m-d)*(v-p)+p;d=n.min}else if(m<=d&&m=n.min){v=(n.min-d)/(m-d)*(v-p)+p;m=n.min}if(d>=m&&d>n.max&&m<=n.max){p=(n.max-d)/(m-d)*(v-p)+p;d=n.max}else if(m>=d&&m>n.max&&d<=n.max){v=(n.max-d)/(m-d)*(v-p)+p;m=n.max}p!=g&&h.lineTo(t.p2c(g),n.p2c(d));h.lineTo(t.p2c(p),n.p2c(d));h.lineTo(t.p2c(v),n.p2c(m));if(v!=y){h.lineTo(t.p2c(v),n.p2c(m));h.lineTo(t.p2c(y),n.p2c(m))}}}h.save();h.translate(m.left,m.top);h.lineJoin="round";var r=e.lines.lineWidth,i=e.shadowSize;if(r>0&&i>0){h.lineWidth=i;h.strokeStyle="rgba(0,0,0,0.1)";var s=Math.PI/18;t(e.datapoints,Math.sin(s)*(r/2+i/2),Math.cos(s)*(r/2+i/2),e.xaxis,e.yaxis);h.lineWidth=i/2;t(e.datapoints,Math.sin(s)*(r/2+i/4),Math.cos(s)*(r/2+i/4),e.xaxis,e.yaxis)}h.lineWidth=r;h.strokeStyle=e.color;var o=rt(e.lines,e.color,0,y);if(o){h.fillStyle=o;n(e.datapoints,e.xaxis,e.yaxis)}r>0&&t(e.datapoints,0,0,e.xaxis,e.yaxis);h.restore()}function et(e){function t(e,t,n,r,i,s,o,u){var a=e.points,f=e.pointsize;for(var l=0;ls.max||po.max)continue;h.beginPath();c=s.p2c(c);p=o.p2c(p)+r;u=="circle"?h.arc(c,p,t,0,i?Math.PI:Math.PI*2,!1):u(h,c,p,t,i);h.closePath();if(n){h.fillStyle=n;h.fill()}h.stroke()}}h.save();h.translate(m.left,m.top);var n=e.points.lineWidth,r=e.shadowSize,i=e.points.radius,s=e.points.symbol;n==0&&(n=1e-4);if(n>0&&r>0){var o=r/2;h.lineWidth=o;h.strokeStyle="rgba(0,0,0,0.1)";t(e.datapoints,i,null,o+o/2,!0,e.xaxis,e.yaxis,s);h.strokeStyle="rgba(0,0,0,0.2)";t(e.datapoints,i,null,o/2,!0,e.xaxis,e.yaxis,s)}h.lineWidth=n;h.strokeStyle=e.color;t(e.datapoints,i,rt(e.points,e.color),0,!1,e.xaxis,e.yaxis,s);h.restore()}function tt(e,t,n,r,i,s,o,u,a,f,l,c){var h,p,d,v,m,g,y,b,w;if(l){b=g=y=!0;m=!1;h=n;p=e;v=t+r;d=t+i;if(pu.max||va.max)return;if(hu.max){p=u.max;g=!1}if(da.max){v=a.max;y=!1}h=u.p2c(h);d=a.p2c(d);p=u.p2c(p);v=a.p2c(v);if(o){f.beginPath();f.moveTo(h,d);f.lineTo(h,v);f.lineTo(p,v);f.lineTo(p,d);f.fillStyle=o(d,v);f.fill()}if(c>0&&(m||g||y||b)){f.beginPath();f.moveTo(h,d+s);m?f.lineTo(h,v+s):f.moveTo(h,v+s);y?f.lineTo(p,v+s):f.moveTo(p,v+s);g?f.lineTo(p,d+s):f.moveTo(p,d+s);b?f.lineTo(h,d+s):f.moveTo(h,d+s);f.stroke()}}function nt(e){function t(t,n,r,i,s,o,u){var a=t.points,f=t.pointsize;for(var l=0;l");n.push("");i=!0}n.push('
'+''+h.label+"")}i&&n.push("");if(n.length==0)return;var p=''+n.join("")+"
";if(a.legend.container!=null)e(a.legend.container).html(p);else{var d="",v=a.legend.position,g=a.legend.margin;g[0]==null&&(g=[g,g]);v.charAt(0)=="n"?d+="top:"+(g[1]+m.top)+"px;":v.charAt(0)=="s"&&(d+="bottom:"+(g[1]+m.bottom)+"px;");v.charAt(1)=="e"?d+="right:"+(g[0]+m.right)+"px;":v.charAt(1)=="w"&&(d+="left:"+(g[0]+m.left)+"px;");var y=e('
'+p.replace('style="','style="position:absolute;'+d+";")+"
").appendTo(t);if(a.legend.backgroundOpacity!=0){var b=a.legend.backgroundColor;if(b==null){b=a.grid.backgroundColor;b&&typeof b=="string"?b=e.color.parse(b):b=e.color.extract(y,"background-color");b.a=1;b=b.toString()}var w=y.children();e('
').prependTo(y).css("opacity",a.legend.backgroundOpacity)}}}function ut(e,t,n){var r=a.grid.mouseActiveRadius,i=r*r+1,s=null,o=!1,f,l,c;for(f=u.length-1;f>=0;--f){if(!n(u[f]))continue;var h=u[f],p=h.xaxis,d=h.yaxis,v=h.datapoints.points,m=p.c2p(e),g=d.c2p(t),y=r/p.scale,b=r/d.scale;c=h.datapoints.pointsize;p.options.inverseTransform&&(y=Number.MAX_VALUE);d.options.inverseTransform&&(b=Number.MAX_VALUE);if(h.lines.show||h.points.show)for(l=0;ly||w-m<-y||E-g>b||E-g<-b)continue;var S=Math.abs(p.p2c(w)-e),x=Math.abs(d.p2c(E)-t),T=S*S+x*x;if(T=Math.min(k,w)&&g>=E+N&&g<=E+C:m>=w+N&&m<=w+C&&g>=Math.min(k,E)&&g<=Math.max(k,E))s=[f,l/c]}}}if(s){f=s[0];l=s[1];c=u[f].datapoints.pointsize;return{datapoint:u[f].datapoints.points.slice(l*c,(l+1)*c),dataIndex:l,series:u[f],seriesIndex:f}}return null}function at(e){a.grid.hoverable&&ct("plothover",e,function(e){return e["hoverable"]!=0})}function ft(e){a.grid.hoverable&&ct("plothover",e,function(e){return!1})}function lt(e){ct("plotclick",e,function(e){return e["clickable"]!=0})}function ct(e,n,r){var i=c.offset(),s=n.pageX-i.left-m.left,o=n.pageY-i.top-m.top,u=L({left:s,top:o});u.pageX=n.pageX;u.pageY=n.pageY;var f=ut(s,o,r);if(f){f.pageX=parseInt(f.series.xaxis.p2c(f.datapoint[0])+i.left+m.left,10);f.pageY=parseInt(f.series.yaxis.p2c(f.datapoint[1])+i.top+m.top,10)}if(a.grid.autoHighlight){for(var l=0;ls.max||io.max)return;var a=t.points.radius+t.points.lineWidth/2;p.lineWidth=a;p.strokeStyle=u;var f=1.5*a;r=s.p2c(r);i=o.p2c(i);p.beginPath();t.points.symbol=="circle"?p.arc(r,i,f,0,2*Math.PI,!1):t.points.symbol(p,r,i,f,!1);p.closePath();p.stroke()}function yt(t,n){var r=typeof t.highlightColor=="string"?t.highlightColor:e.color.parse(t.color).scale("a",.5).toString(),i=r,s=t.bars.align=="left"?0:-t.bars.barWidth/2;p.lineWidth=t.bars.lineWidth;p.strokeStyle=r;tt(n[0],n[1],n[2]||0,s,s+t.bars.barWidth,0,function(){return i},t.xaxis,t.yaxis,p,t.bars.horizontal,t.bars.lineWidth)}function bt(t,n,r,i){if(typeof t=="string")return t;var s=h.createLinearGradient(0,r,0,n);for(var o=0,u=t.colors.length;o
").css({position:"absolute",top:0,left:0,bottom:0,right:0,"font-size":"smaller",color:"#545454"}).insertAfter(this.element));n=this.text[t]=e("
").addClass(t).css({position:"absolute",top:0,left:0,bottom:0,right:0}).appendTo(this.textContainer)}return n};n.prototype.getTextInfo=function(t,n,r,i,s){var o,u,a,f;n=""+n;typeof r=="object"?o=r.style+" "+r.variant+" "+r.weight+" "+r.size+"px/"+r.lineHeight+"px "+r.family:o=r;u=this._textCache[t];u==null&&(u=this._textCache[t]={});a=u[o];a==null&&(a=u[o]={});f=a[n];if(f==null){var l=e("
").html(n).css({position:"absolute","max-width":s,top:-9999}).appendTo(this.getTextLayer(t));typeof r=="object"?l.css({font:o,color:r.color}):typeof r=="string"&&l.addClass(r);f=a[n]={width:l.outerWidth(!0),height:l.outerHeight(!0),element:l,positions:[]};l.detach()}return f};n.prototype.addText=function(e,t,n,r,i,s,o,u,a){var f=this.getTextInfo(e,r,i,s,o),l=f.positions;u=="center"?t-=f.width/2:u=="right"&&(t-=f.width);a=="middle"?n-=f.height/2:a=="bottom"&&(n-=f.height);for(var c=0,h;h=l[c];c++)if(h.x==t&&h.y==n){h.active=!0;return}h={active:!0,rendered:!1,element:l.length?f.element.clone():f.element,x:t,y:n};l.push(h);h.element.css({top:Math.round(n),left:Math.round(t),"text-align":u})};n.prototype.removeText=function(e,n,r,i,s,o){if(i==null){var u=this._textCache[e];if(u!=null)for(var a in u)if(t.call(u,a)){var f=u[a];for(var l in f)if(t.call(f,l)){var c=f[l].positions;for(var h=0,p;p=c[h];h++)p.active=!1}}}else{var c=this.getTextInfo(e,i,s,o).positions;for(var h=0,p;p=c[h];h++)p.x==n&&p.y==r&&(p.active=!1)}};e.plot=function(t,n,i){var s=new r(e(t),n,i,e.plot.plugins);return s};e.plot.version="0.8.1";e.plot.plugins=[];e.fn.plot=function(t,n){return this.each(function(){e.plot(this,t,n)})}})(jQuery); \ No newline at end of file +!function(a){a.color={},a.color.make=function(b,c,d,e){var f={};return f.r=b||0,f.g=c||0,f.b=d||0,f.a=null!=e?e:1,f.add=function(a,b){for(var c=0;c=1?"rgb("+[f.r,f.g,f.b].join(",")+")":"rgba("+[f.r,f.g,f.b,f.a].join(",")+")"},f.normalize=function(){function a(a,b,c){return a>b?a:b>c?c:b}return f.r=a(0,parseInt(f.r),255),f.g=a(0,parseInt(f.g),255),f.b=a(0,parseInt(f.b),255),f.a=a(0,f.a,1),f},f.clone=function(){return a.color.make(f.r,f.b,f.g,f.a)},f.normalize()},a.color.extract=function(b,c){var d;do{if(d=b.css(c).toLowerCase(),""!=d&&"transparent"!=d)break;b=b.parent()}while(!a.nodeName(b.get(0),"body"));return"rgba(0, 0, 0, 0)"==d&&(d="transparent"),a.color.parse(d)},a.color.parse=function(c){var d,e=a.color.make;if(d=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(c))return e(parseInt(d[1],10),parseInt(d[2],10),parseInt(d[3],10));if(d=/rgba\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(c))return e(parseInt(d[1],10),parseInt(d[2],10),parseInt(d[3],10),parseFloat(d[4]));if(d=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(c))return e(2.55*parseFloat(d[1]),2.55*parseFloat(d[2]),2.55*parseFloat(d[3]));if(d=/rgba\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(c))return e(2.55*parseFloat(d[1]),2.55*parseFloat(d[2]),2.55*parseFloat(d[3]),parseFloat(d[4]));if(d=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(c))return e(parseInt(d[1],16),parseInt(d[2],16),parseInt(d[3],16));if(d=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(c))return e(parseInt(d[1]+d[1],16),parseInt(d[2]+d[2],16),parseInt(d[3]+d[3],16));var f=a.trim(c).toLowerCase();return"transparent"==f?e(255,255,255,0):(d=b[f]||[0,0,0],e(d[0],d[1],d[2]))};var b={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0]}}(jQuery),function(a){function b(b,c){var d=c.children("."+b)[0];if(null==d&&(d=document.createElement("canvas"),d.className=b,a(d).css({direction:"ltr",position:"absolute",left:0,top:0}).appendTo(c),!d.getContext)){if(!window.G_vmlCanvasManager)throw new Error("Canvas is not available. If you're using IE with a fall-back such as Excanvas, then there's either a mistake in your conditional include, or the page has no DOCTYPE and is rendering in Quirks Mode.");d=window.G_vmlCanvasManager.initElement(d)}this.element=d;var e=this.context=d.getContext("2d"),f=window.devicePixelRatio||1,g=e.webkitBackingStorePixelRatio||e.mozBackingStorePixelRatio||e.msBackingStorePixelRatio||e.oBackingStorePixelRatio||e.backingStorePixelRatio||1;this.pixelRatio=f/g,this.resize(c.width(),c.height()),this.textContainer=null,this.text={},this._textCache={}}function c(c,e,f,g){function h(a,b){b=[qb].concat(b);for(var c=0;cd;++d)e=eb.xaxes[d],e&&!e.tickColor&&(e.tickColor=e.color),e=a.extend(!0,{},eb.xaxis,e),eb.xaxes[d]=e,e.font&&(e.font=a.extend({},g,e.font),e.font.color||(e.font.color=e.color));for(f=eb.yaxes.length||1,d=0;f>d;++d)e=eb.yaxes[d],e&&!e.tickColor&&(e.tickColor=e.color),e=a.extend(!0,{},eb.yaxis,e),eb.yaxes[d]=e,e.font&&(e.font=a.extend({},g,e.font),e.font.color||(e.font.color=e.color));for(eb.xaxis.noTicks&&null==eb.xaxis.ticks&&(eb.xaxis.ticks=eb.xaxis.noTicks),eb.yaxis.noTicks&&null==eb.yaxis.ticks&&(eb.yaxis.ticks=eb.yaxis.noTicks),eb.x2axis&&(eb.xaxes[1]=a.extend(!0,{},eb.xaxis,eb.x2axis),eb.xaxes[1].position="top"),eb.y2axis&&(eb.yaxes[1]=a.extend(!0,{},eb.yaxis,eb.y2axis),eb.yaxes[1].position="right"),eb.grid.coloredAreas&&(eb.grid.markings=eb.grid.coloredAreas),eb.grid.coloredAreasColor&&(eb.grid.markingsColor=eb.grid.coloredAreasColor),eb.lines&&a.extend(!0,eb.series.lines,eb.lines),eb.points&&a.extend(!0,eb.series.points,eb.points),eb.bars&&a.extend(!0,eb.series.bars,eb.bars),null!=eb.shadowSize&&(eb.series.shadowSize=eb.shadowSize),null!=eb.highlightColor&&(eb.series.highlightColor=eb.highlightColor),d=0;dd&&(d=e))}d>=c&&(c=d+1);var f,g=[],h=eb.colors,i=h.length,j=0;for(b=0;c>b;b++)f=a.color.parse(h[b%i]||"#666"),b%i==0&&b&&(j=j>=0?.5>j?-j-.2:0:-j),g[b]=f.scale("rgb",1+j);var k,l=0;for(b=0;ba.datamax&&c!=s&&(a.datamax=c)}var c,d,e,f,g,i,j,k,l,m,o,p,q=Number.POSITIVE_INFINITY,r=Number.NEGATIVE_INFINITY,s=Number.MAX_VALUE;for(a.each(n(),function(a,b){b.datamin=q,b.datamax=r,b.used=!1}),c=0;cf;++f)k=m[f],l=p[f],l&&(l.number&&null!=k&&(k=+k,isNaN(k)?k=null:1/0==k?k=s:k==-1/0&&(k=-s)),null==k&&(l.required&&(v=!0),null!=l.defaultValue&&(k=l.defaultValue))),i[e+f]=k;if(v)for(f=0;j>f;++f)k=i[e+f],null!=k&&(l=p[f],l.autoscale&&(l.x&&b(g.xaxis,k,k),l.y&&b(g.yaxis,k,k))),i[e+f]=null;else if(u&&e>0&&null!=i[e-j]&&i[e-j]!=i[e]&&i[e-j+1]!=i[e+1]){for(f=0;j>f;++f)i[e+j+f]=i[e+f];i[e+1]=i[e-j+1],e+=j}}}}for(c=0;cf;++f)k=i[d+f],l=p[f],l&&l.autoscale!==!1&&k!=s&&k!=-s&&(l.x&&(w>k&&(w=k),k>y&&(y=k)),l.y&&(x>k&&(x=k),k>z&&(z=k)));if(g.bars.show){var A;switch(g.bars.align){case"left":A=0;break;case"right":A=-g.bars.barWidth;break;case"center":A=-g.bars.barWidth/2;break;default:throw new Error("Invalid bar alignment: "+g.bars.align)}g.bars.horizontal?(x+=A,z+=A+g.bars.barWidth):(w+=A,y+=A+g.bars.barWidth)}b(g.xaxis,w,y),b(g.yaxis,x,z)}a.each(n(),function(a,b){b.datamin==q&&(b.datamin=null),b.datamax==r&&(b.datamax=null)})}function t(){c.css("padding",0).children(":not(.flot-base,.flot-overlay)").remove(),"static"==c.css("position")&&c.css("position","relative"),fb=new b("flot-base",c),gb=new b("flot-overlay",c),ib=fb.context,jb=gb.context,hb=a(gb.element).unbind();var d=c.data("plot");d&&(d.shutdown(),gb.clear()),c.data("plot",qb)}function u(){eb.grid.hoverable&&(hb.mousemove(T),hb.bind("mouseleave",U)),eb.grid.clickable&&hb.click(V),h(pb.bindEvents,[hb])}function v(){sb&&clearTimeout(sb),hb.unbind("mousemove",T),hb.unbind("mouseleave",U),hb.unbind("click",V),h(pb.shutdown,[hb])}function w(a){function b(a){return a}var c,d,e=a.options.transform||b,f=a.options.inverseTransform;"x"==a.direction?(c=a.scale=nb/Math.abs(e(a.max)-e(a.min)),d=Math.min(e(a.max),e(a.min))):(c=a.scale=ob/Math.abs(e(a.max)-e(a.min)),c=-c,d=Math.max(e(a.max),e(a.min))),a.p2c=e==b?function(a){return(a-d)*c}:function(a){return(e(a)-d)*c},a.c2p=f?function(a){return f(d+a/c)}:function(a){return d+a/c}}function x(a){var b=a.options,c=a.ticks||[],d=b.labelWidth||0,e=b.labelHeight||0,f=d||"x"==a.direction?Math.floor(fb.width/(c.length||1)):null;legacyStyles=a.direction+"Axis "+a.direction+a.n+"Axis",layer="flot-"+a.direction+"-axis flot-"+a.direction+a.n+"-axis "+legacyStyles,font=b.font||"flot-tick-label tickLabel";for(var g=0;g=0;--b)y(g[b]);A(),a.each(g,function(a,b){z(b)})}nb=fb.width-mb.left-mb.right,ob=fb.height-mb.bottom-mb.top,a.each(c,function(a,b){w(b)}),d&&K(),R()}function C(a){var b=a.options,c=+(null!=b.min?b.min:a.datamin),d=+(null!=b.max?b.max:a.datamax),e=d-c;if(0==e){var f=0==d?1:.01;null==b.min&&(c-=f),(null==b.max||null!=b.min)&&(d+=f)}else{var g=b.autoscaleMargin;null!=g&&(null==b.min&&(c-=e*g,0>c&&null!=a.datamin&&a.datamin>=0&&(c=0)),null==b.max&&(d+=e*g,d>0&&null!=a.datamax&&a.datamax<=0&&(d=0)))}a.min=c,a.max=d}function D(b){var c,e=b.options;c="number"==typeof e.ticks&&e.ticks>0?e.ticks:.3*Math.sqrt("x"==b.direction?fb.width:fb.height);var f=(b.max-b.min)/c,g=-Math.floor(Math.log(f)/Math.LN10),h=e.tickDecimals;null!=h&&g>h&&(g=h);var i,j=Math.pow(10,-g),k=f/j;if(1.5>k?i=1:3>k?(i=2,k>2.25&&(null==h||h>=g+1)&&(i=2.5,++g)):i=7.5>k?5:10,i*=j,null!=e.minTickSize&&i0&&(null==e.min&&(b.min=Math.min(b.min,m[0])),null==e.max&&m.length>1&&(b.max=Math.max(b.max,m[m.length-1]))),b.tickGenerator=function(a){var b,c,d=[];for(c=0;c1&&/\..*0$/.test((o[1]-o[0]).toFixed(n))||(b.tickDecimals=n)}}}}function E(b){var c=b.options.ticks,d=[];null==c||"number"==typeof c&&c>0?d=b.tickGenerator(b):c&&(d=a.isFunction(c)?c(b):c);var e,f;for(b.ticks=[],e=0;e1&&(g=h[1])):f=+h,null==g&&(g=b.tickFormatter(f,b)),isNaN(f)||b.ticks.push({v:f,label:g})}}function F(a,b){a.options.autoscaleMargin&&b.length>0&&(null==a.options.min&&(a.min=Math.min(a.min,b[0].v)),null==a.options.max&&b.length>1&&(a.max=Math.max(a.max,b[b.length-1].v)))}function G(){fb.clear(),h(pb.drawBackground,[ib]);var a=eb.grid;a.show&&a.backgroundColor&&I(),a.show&&!a.aboveData&&J();for(var b=0;be){var i=d;d=e,e=i}return{from:d,to:e,axis:c}}function I(){ib.save(),ib.translate(mb.left,mb.top),ib.fillStyle=cb(eb.grid.backgroundColor,ob,0,"rgba(255, 255, 255, 0)"),ib.fillRect(0,0,nb,ob),ib.restore()}function J(){var b,c,d,e;ib.save(),ib.translate(mb.left,mb.top);var f=eb.grid.markings;if(f)for(a.isFunction(f)&&(c=qb.getAxes(),c.xmin=c.xaxis.min,c.xmax=c.xaxis.max,c.ymin=c.yaxis.min,c.ymax=c.yaxis.max,f=f(c)),b=0;bh.axis.max||i.toi.axis.max||(h.from=Math.max(h.from,h.axis.min),h.to=Math.min(h.to,h.axis.max),i.from=Math.max(i.from,i.axis.min),i.to=Math.min(i.to,i.axis.max),(h.from!=h.to||i.from!=i.to)&&(h.from=h.axis.p2c(h.from),h.to=h.axis.p2c(h.to),i.from=i.axis.p2c(i.from),i.to=i.axis.p2c(i.to),h.from==h.to||i.from==i.to?(ib.beginPath(),ib.strokeStyle=g.color||eb.grid.markingsColor,ib.lineWidth=g.lineWidth||eb.grid.markingsLineWidth,ib.moveTo(h.from,i.from),ib.lineTo(h.to,i.to),ib.stroke()):(ib.fillStyle=g.color||eb.grid.markingsColor,ib.fillRect(h.from,i.to,h.to-h.from,i.from-i.to))))}c=n(),d=eb.grid.borderWidth;for(var j=0;jp.max||"full"==r&&("object"==typeof d&&d[p.position]>0||d>0)&&(s==p.min||s==p.max)||("x"==p.direction?(k=p.p2c(s),o="full"==r?-ob:r,"top"==p.position&&(o=-o)):(l=p.p2c(s),m="full"==r?-nb:r,"left"==p.position&&(m=-m)),1==ib.lineWidth&&("x"==p.direction?k=Math.floor(k)+.5:l=Math.floor(l)+.5),ib.moveTo(k,l),ib.lineTo(k+m,l+o))}ib.stroke()}}d&&(e=eb.grid.borderColor,"object"==typeof d||"object"==typeof e?("object"!=typeof d&&(d={top:d,right:d,bottom:d,left:d}),"object"!=typeof e&&(e={top:e,right:e,bottom:e,left:e}),d.top>0&&(ib.strokeStyle=e.top,ib.lineWidth=d.top,ib.beginPath(),ib.moveTo(0-d.left,0-d.top/2),ib.lineTo(nb,0-d.top/2),ib.stroke()),d.right>0&&(ib.strokeStyle=e.right,ib.lineWidth=d.right,ib.beginPath(),ib.moveTo(nb+d.right/2,0-d.top),ib.lineTo(nb+d.right/2,ob),ib.stroke()),d.bottom>0&&(ib.strokeStyle=e.bottom,ib.lineWidth=d.bottom,ib.beginPath(),ib.moveTo(nb+d.right,ob+d.bottom/2),ib.lineTo(0,ob+d.bottom/2),ib.stroke()),d.left>0&&(ib.strokeStyle=e.left,ib.lineWidth=d.left,ib.beginPath(),ib.moveTo(0-d.left/2,ob+d.bottom),ib.lineTo(0-d.left/2,0),ib.stroke())):(ib.lineWidth=d,ib.strokeStyle=eb.grid.borderColor,ib.strokeRect(-d/2,-d/2,nb+d,ob+d))),ib.restore()}function K(){a.each(n(),function(a,b){if(b.show&&0!=b.ticks.length){var c,d,e,f,g,h=b.box,i=b.direction+"Axis "+b.direction+b.n+"Axis",j="flot-"+b.direction+"-axis flot-"+b.direction+b.n+"-axis "+i,k=b.options.font||"flot-tick-label tickLabel";fb.removeText(j);for(var l=0;lb.max||("x"==b.direction?(f="center",d=mb.left+b.p2c(c.v),"bottom"==b.position?e=h.top+h.padding:(e=h.top+h.height-h.padding,g="bottom")):(g="middle",e=mb.top+b.p2c(c.v),"left"==b.position?(d=h.left+h.width-h.padding,f="right"):d=h.left+h.padding),fb.addText(j,d,e,c.label,k,null,null,f,g))}})}function L(a){a.lines.show&&M(a),a.bars.show&&P(a),a.points.show&&N(a)}function M(a){function b(a,b,c,d,e){var f=a.points,g=a.pointsize,h=null,i=null;ib.beginPath();for(var j=g;j=l&&l=n&&n=n&&l>e.max){if(n>e.max)continue;k=(e.max-l)/(n-l)*(m-k)+k,l=e.max}else if(n>=l&&n>e.max){if(l>e.max)continue;m=(e.max-l)/(n-l)*(m-k)+k,n=e.max}if(m>=k&&k=m&&m=m&&k>d.max){if(m>d.max)continue;l=(d.max-k)/(m-k)*(n-l)+l,k=d.max}else if(m>=k&&m>d.max){if(k>d.max)continue;n=(d.max-k)/(m-k)*(n-l)+l,m=d.max}(k!=h||l!=i)&&ib.moveTo(d.p2c(k)+b,e.p2c(l)+c),h=m,i=n,ib.lineTo(d.p2c(m)+b,e.p2c(n)+c)}}ib.stroke()}function c(a,b,c){for(var d=a.points,e=a.pointsize,f=Math.min(Math.max(0,c.min),c.max),g=0,h=!1,i=1,j=0,k=0;;){if(e>0&&g>d.length+e)break;g+=e;var l=d[g-e],m=d[g-e+i],n=d[g],o=d[g+i];if(h){if(e>0&&null!=l&&null==n){k=g,e=-e,i=2;continue}if(0>e&&g==j+e){ib.fill(),h=!1,e=-e,i=1,g=j=k+e;continue}}if(null!=l&&null!=n){if(n>=l&&l=n&&n=n&&l>b.max){if(n>b.max)continue;m=(b.max-l)/(n-l)*(o-m)+m,l=b.max}else if(n>=l&&n>b.max){if(l>b.max)continue;o=(b.max-l)/(n-l)*(o-m)+m,n=b.max}if(h||(ib.beginPath(),ib.moveTo(b.p2c(l),c.p2c(f)),h=!0),m>=c.max&&o>=c.max)ib.lineTo(b.p2c(l),c.p2c(c.max)),ib.lineTo(b.p2c(n),c.p2c(c.max));else if(m<=c.min&&o<=c.min)ib.lineTo(b.p2c(l),c.p2c(c.min)),ib.lineTo(b.p2c(n),c.p2c(c.min));else{var p=l,q=n;o>=m&&m=c.min?(l=(c.min-m)/(o-m)*(n-l)+l,m=c.min):m>=o&&o=c.min&&(n=(c.min-m)/(o-m)*(n-l)+l,o=c.min),m>=o&&m>c.max&&o<=c.max?(l=(c.max-m)/(o-m)*(n-l)+l,m=c.max):o>=m&&o>c.max&&m<=c.max&&(n=(c.max-m)/(o-m)*(n-l)+l,o=c.max),l!=p&&ib.lineTo(b.p2c(p),c.p2c(m)),ib.lineTo(b.p2c(l),c.p2c(m)),ib.lineTo(b.p2c(n),c.p2c(o)),n!=q&&(ib.lineTo(b.p2c(n),c.p2c(o)),ib.lineTo(b.p2c(q),c.p2c(o)))}}}}ib.save(),ib.translate(mb.left,mb.top),ib.lineJoin="round";var d=a.lines.lineWidth,e=a.shadowSize;if(d>0&&e>0){ib.lineWidth=e,ib.strokeStyle="rgba(0,0,0,0.1)";var f=Math.PI/18;b(a.datapoints,Math.sin(f)*(d/2+e/2),Math.cos(f)*(d/2+e/2),a.xaxis,a.yaxis),ib.lineWidth=e/2,b(a.datapoints,Math.sin(f)*(d/2+e/4),Math.cos(f)*(d/2+e/4),a.xaxis,a.yaxis)}ib.lineWidth=d,ib.strokeStyle=a.color;var g=Q(a.lines,a.color,0,ob);g&&(ib.fillStyle=g,c(a.datapoints,a.xaxis,a.yaxis)),d>0&&b(a.datapoints,0,0,a.xaxis,a.yaxis),ib.restore()}function N(a){function b(a,b,c,d,e,f,g,h){for(var i=a.points,j=a.pointsize,k=0;kf.max||mg.max||(ib.beginPath(),l=f.p2c(l),m=g.p2c(m)+d,"circle"==h?ib.arc(l,m,b,0,e?Math.PI:2*Math.PI,!1):h(ib,l,m,b,e),ib.closePath(),c&&(ib.fillStyle=c,ib.fill()),ib.stroke())}}ib.save(),ib.translate(mb.left,mb.top);var c=a.points.lineWidth,d=a.shadowSize,e=a.points.radius,f=a.points.symbol;if(0==c&&(c=1e-4),c>0&&d>0){var g=d/2;ib.lineWidth=g,ib.strokeStyle="rgba(0,0,0,0.1)",b(a.datapoints,e,null,g+g/2,!0,a.xaxis,a.yaxis,f),ib.strokeStyle="rgba(0,0,0,0.2)",b(a.datapoints,e,null,g/2,!0,a.xaxis,a.yaxis,f)}ib.lineWidth=c,ib.strokeStyle=a.color,b(a.datapoints,e,Q(a.points,a.color),0,!1,a.xaxis,a.yaxis,f),ib.restore()}function O(a,b,c,d,e,f,g,h,i,j,k,l){var m,n,o,p,q,r,s,t,u;k?(t=r=s=!0,q=!1,m=c,n=a,p=b+d,o=b+e,m>n&&(u=n,n=m,m=u,q=!0,r=!1)):(q=r=s=!0,t=!1,m=a+d,n=a+e,o=c,p=b,o>p&&(u=p,p=o,o=u,t=!0,s=!1)),nh.max||pi.max||(mh.max&&(n=h.max,r=!1),oi.max&&(p=i.max,s=!1),m=h.p2c(m),o=i.p2c(o),n=h.p2c(n),p=i.p2c(p),g&&(j.beginPath(),j.moveTo(m,o),j.lineTo(m,p),j.lineTo(n,p),j.lineTo(n,o),j.fillStyle=g(o,p),j.fill()),l>0&&(q||r||s||t)&&(j.beginPath(),j.moveTo(m,o+f),q?j.lineTo(m,p+f):j.moveTo(m,p+f),s?j.lineTo(n,p+f):j.moveTo(n,p+f),r?j.lineTo(n,o+f):j.moveTo(n,o+f),t?j.lineTo(m,o+f):j.moveTo(m,o+f),j.stroke()))}function P(a){function b(b,c,d,e,f,g,h){for(var i=b.points,j=b.pointsize,k=0;k"),e.push(""),g=!0),e.push('
'+k.label+"")}if(g&&e.push(""),0!=e.length){var l=''+e.join("")+"
";if(null!=eb.legend.container)a(eb.legend.container).html(l);else{var m="",n=eb.legend.position,o=eb.legend.margin;null==o[0]&&(o=[o,o]),"n"==n.charAt(0)?m+="top:"+(o[1]+mb.top)+"px;":"s"==n.charAt(0)&&(m+="bottom:"+(o[1]+mb.bottom)+"px;"),"e"==n.charAt(1)?m+="right:"+(o[0]+mb.right)+"px;":"w"==n.charAt(1)&&(m+="left:"+(o[0]+mb.left)+"px;");var p=a('
'+l.replace('style="','style="position:absolute;'+m+";")+"
").appendTo(c);if(0!=eb.legend.backgroundOpacity){var q=eb.legend.backgroundColor;null==q&&(q=eb.grid.backgroundColor,q=q&&"string"==typeof q?a.color.parse(q):a.color.extract(p,"background-color"),q.a=1,q=q.toString());var r=p.children();a('
').prependTo(p).css("opacity",eb.legend.backgroundOpacity)}}}}}function S(a,b,c){var d,e,f,g=eb.grid.mouseActiveRadius,h=g*g+1,i=null;for(d=db.length-1;d>=0;--d)if(c(db[d])){var j=db[d],k=j.xaxis,l=j.yaxis,m=j.datapoints.points,n=k.c2p(a),o=l.c2p(b),p=g/k.scale,q=g/l.scale;if(f=j.datapoints.pointsize,k.options.inverseTransform&&(p=Number.MAX_VALUE),l.options.inverseTransform&&(q=Number.MAX_VALUE),j.lines.show||j.points.show)for(e=0;ep||-p>r-n||s-o>q||-q>s-o)){var t=Math.abs(k.p2c(r)-a),u=Math.abs(l.p2c(s)-b),v=t*t+u*u;h>v&&(h=v,i=[d,e/f])}}if(j.bars.show&&!i){var w="left"==j.bars.align?0:-j.bars.barWidth/2,x=w+j.bars.barWidth;for(e=0;e=Math.min(y,r)&&o>=s+w&&s+x>=o:n>=r+w&&r+x>=n&&o>=Math.min(y,s)&&o<=Math.max(y,s))&&(i=[d,e/f])}}}return i?(d=i[0],e=i[1],f=db[d].datapoints.pointsize,{datapoint:db[d].datapoints.points.slice(e*f,(e+1)*f),dataIndex:e,series:db[d],seriesIndex:d}):null}function T(a){eb.grid.hoverable&&W("plothover",a,function(a){return 0!=a.hoverable})}function U(a){eb.grid.hoverable&&W("plothover",a,function(){return!1})}function V(a){W("plotclick",a,function(a){return 0!=a.clickable})}function W(a,b,d){var e=hb.offset(),f=b.pageX-e.left-mb.left,g=b.pageY-e.top-mb.top,h=o({left:f,top:g});h.pageX=b.pageX,h.pageY=b.pageY;var i=S(f,g,d);if(i&&(i.pageX=parseInt(i.series.xaxis.p2c(i.datapoint[0])+e.left+mb.left,10),i.pageY=parseInt(i.series.yaxis.p2c(i.datapoint[1])+e.top+mb.top,10)),eb.grid.autoHighlight){for(var j=0;jf.max||eg.max)){var i=b.points.radius+b.points.lineWidth/2;jb.lineWidth=i,jb.strokeStyle=h;var j=1.5*i;d=f.p2c(d),e=g.p2c(e),jb.beginPath(),"circle"==b.points.symbol?jb.arc(d,e,j,0,2*Math.PI,!1):b.points.symbol(jb,d,e,j,!1),jb.closePath(),jb.stroke()}}function bb(b,c){var d="string"==typeof b.highlightColor?b.highlightColor:a.color.parse(b.color).scale("a",.5).toString(),e=d,f="left"==b.bars.align?0:-b.bars.barWidth/2;jb.lineWidth=b.bars.lineWidth,jb.strokeStyle=d,O(c[0],c[1],c[2]||0,f,f+b.bars.barWidth,0,function(){return e},b.xaxis,b.yaxis,jb,b.bars.horizontal,b.bars.lineWidth)}function cb(b,c,d,e){if("string"==typeof b)return b;for(var f=ib.createLinearGradient(0,d,0,c),g=0,h=b.colors.length;h>g;++g){var i=b.colors[g];if("string"!=typeof i){var j=a.color.parse(e);null!=i.brightness&&(j=j.scale("rgb",i.brightness)),null!=i.opacity&&(j.a*=i.opacity),i=j.toString()}f.addColorStop(g/(h-1),i)}return f}var db=[],eb={colors:["#edc240","#afd8f8","#cb4b4b","#4da74d","#9440ed"],legend:{show:!0,noColumns:1,labelFormatter:null,labelBoxBorderColor:"#ccc",container:null,position:"ne",margin:5,backgroundColor:null,backgroundOpacity:.85,sorted:null},xaxis:{show:null,position:"bottom",mode:null,font:null,color:null,tickColor:null,transform:null,inverseTransform:null,min:null,max:null,autoscaleMargin:null,ticks:null,tickFormatter:null,labelWidth:null,labelHeight:null,reserveSpace:null,tickLength:null,alignTicksWithAxis:null,tickDecimals:null,tickSize:null,minTickSize:null},yaxis:{autoscaleMargin:.02,position:"left"},xaxes:[],yaxes:[],series:{points:{show:!1,radius:3,lineWidth:2,fill:!0,fillColor:"#ffffff",symbol:"circle"},lines:{lineWidth:2,fill:!1,fillColor:null,steps:!1},bars:{show:!1,lineWidth:2,barWidth:1,fill:!0,fillColor:null,align:"left",horizontal:!1,zero:!0},shadowSize:3,highlightColor:null},grid:{show:!0,aboveData:!1,color:"#545454",backgroundColor:null,borderColor:null,tickColor:null,margin:0,labelMargin:5,axisMargin:8,borderWidth:2,minBorderMargin:null,markings:null,markingsColor:"#f4f4f4",markingsLineWidth:2,clickable:!1,hoverable:!1,autoHighlight:!0,mouseActiveRadius:10},interaction:{redrawOverlayInterval:1e3/60},hooks:{}},fb=null,gb=null,hb=null,ib=null,jb=null,kb=[],lb=[],mb={left:0,right:0,top:0,bottom:0},nb=0,ob=0,pb={processOptions:[],processRawData:[],processDatapoints:[],processOffset:[],drawBackground:[],drawSeries:[],draw:[],bindEvents:[],drawOverlay:[],shutdown:[]},qb=this; +qb.setData=k,qb.setupGrid=B,qb.draw=G,qb.getPlaceholder=function(){return c},qb.getCanvas=function(){return fb.element},qb.getPlotOffset=function(){return mb},qb.width=function(){return nb},qb.height=function(){return ob},qb.offset=function(){var a=hb.offset();return a.left+=mb.left,a.top+=mb.top,a},qb.getData=function(){return db},qb.getAxes=function(){var b={};return a.each(kb.concat(lb),function(a,c){c&&(b[c.direction+(1!=c.n?c.n:"")+"axis"]=c)}),b},qb.getXAxes=function(){return kb},qb.getYAxes=function(){return lb},qb.c2p=o,qb.p2c=p,qb.getOptions=function(){return eb},qb.highlight=Z,qb.unhighlight=$,qb.triggerRedrawOverlay=X,qb.pointOffset=function(a){return{left:parseInt(kb[m(a,"x")-1].p2c(+a.x)+mb.left,10),top:parseInt(lb[m(a,"y")-1].p2c(+a.y)+mb.top,10)}},qb.shutdown=v,qb.resize=function(){var a=c.width(),b=c.height();fb.resize(a,b),gb.resize(a,b)},qb.hooks=pb,i(qb),j(f),t(),k(e),B(),G(),u();var rb=[],sb=null}function d(a,b){return b*Math.floor(a/b)}var e=Object.prototype.hasOwnProperty;b.prototype.resize=function(a,b){if(0>=a||0>=b)throw new Error("Invalid dimensions for plot, width = "+a+", height = "+b);var c=this.element,d=this.context,e=this.pixelRatio;this.width!=a&&(c.width=a*e,c.style.width=a+"px",this.width=a),this.height!=b&&(c.height=b*e,c.style.height=b+"px",this.height=b),d.restore(),d.save(),d.scale(e,e)},b.prototype.clear=function(){this.context.clearRect(0,0,this.width,this.height)},b.prototype.render=function(){var a=this._textCache;for(var b in a)if(e.call(a,b)){var c=this.getTextLayer(b),d=a[b];c.hide();for(var f in d)if(e.call(d,f)){var g=d[f];for(var h in g)if(e.call(g,h)){for(var i,j=g[h].positions,k=0;i=j[k];k++)i.active?i.rendered||(c.append(i.element),i.rendered=!0):(j.splice(k--,1),i.rendered&&i.element.detach());0==j.length&&delete g[h]}}c.show()}},b.prototype.getTextLayer=function(b){var c=this.text[b];return null==c&&(null==this.textContainer&&(this.textContainer=a("
").css({position:"absolute",top:0,left:0,bottom:0,right:0,"font-size":"smaller",color:"#545454"}).insertAfter(this.element)),c=this.text[b]=a("
").addClass(b).css({position:"absolute",top:0,left:0,bottom:0,right:0}).appendTo(this.textContainer)),c},b.prototype.getTextInfo=function(b,c,d,e,f){var g,h,i,j;if(c=""+c,g="object"==typeof d?d.style+" "+d.variant+" "+d.weight+" "+d.size+"px/"+d.lineHeight+"px "+d.family:d,h=this._textCache[b],null==h&&(h=this._textCache[b]={}),i=h[g],null==i&&(i=h[g]={}),j=i[c],null==j){var k=a("
").html(c).css({position:"absolute","max-width":f,top:-9999}).appendTo(this.getTextLayer(b));"object"==typeof d?k.css({font:g,color:d.color}):"string"==typeof d&&k.addClass(d),j=i[c]={width:k.outerWidth(!0),height:k.outerHeight(!0),element:k,positions:[]},k.detach()}return j},b.prototype.addText=function(a,b,c,d,e,f,g,h,i){var j=this.getTextInfo(a,d,e,f,g),k=j.positions;"center"==h?b-=j.width/2:"right"==h&&(b-=j.width),"middle"==i?c-=j.height/2:"bottom"==i&&(c-=j.height);for(var l,m=0;l=k[m];m++)if(l.x==b&&l.y==c)return void(l.active=!0);l={active:!0,rendered:!1,element:k.length?j.element.clone():j.element,x:b,y:c},k.push(l),l.element.css({top:Math.round(c),left:Math.round(b),"text-align":h})},b.prototype.removeText=function(a,b,c,d,f,g){if(null==d){var h=this._textCache[a];if(null!=h)for(var i in h)if(e.call(h,i)){var j=h[i];for(var k in j)if(e.call(j,k))for(var l,m=j[k].positions,n=0;l=m[n];n++)l.active=!1}}else for(var l,m=this.getTextInfo(a,d,f,g).positions,n=0;l=m[n];n++)l.x==b&&l.y==c&&(l.active=!1)},a.plot=function(b,d,e){var f=new c(a(b),d,e,a.plot.plugins);return f},a.plot.version="0.8.1",a.plot.plugins=[],a.fn.plot=function(b,c){return this.each(function(){a.plot(this,b,c)})}}(jQuery); \ No newline at end of file diff --git a/assets/js/admin/jquery.flot.pie.min.js b/assets/js/admin/jquery.flot.pie.min.js index 44906561315..c28cd219e11 100644 --- a/assets/js/admin/jquery.flot.pie.min.js +++ b/assets/js/admin/jquery.flot.pie.min.js @@ -1,56 +1 @@ -/* Flot plugin for rendering pie charts. - -Copyright (c) 2007-2013 IOLA and Ole Laursen. -Licensed under the MIT license. - -The plugin assumes that each series has a single data value, and that each -value is a positive integer or zero. Negative numbers don't make sense for a -pie chart, and have unpredictable results. The values do NOT need to be -passed in as percentages; the plugin will calculate the total and per-slice -percentages internally. - -* Created by Brian Medendorp - -* Updated with contributions from btburnett3, Anthony Aragues and Xavi Ivars - -The plugin supports these options: - - series: { - pie: { - show: true/false - radius: 0-1 for percentage of fullsize, or a specified pixel length, or 'auto' - innerRadius: 0-1 for percentage of fullsize or a specified pixel length, for creating a donut effect - startAngle: 0-2 factor of PI used for starting angle (in radians) i.e 3/2 starts at the top, 0 and 2 have the same result - tilt: 0-1 for percentage to tilt the pie, where 1 is no tilt, and 0 is completely flat (nothing will show) - offset: { - top: integer value to move the pie up or down - left: integer value to move the pie left or right, or 'auto' - }, - stroke: { - color: any hexidecimal color value (other formats may or may not work, so best to stick with something like '#FFF') - width: integer pixel width of the stroke - }, - label: { - show: true/false, or 'auto' - formatter: a user-defined function that modifies the text/style of the label text - radius: 0-1 for percentage of fullsize, or a specified pixel length - background: { - color: any hexidecimal color value (other formats may or may not work, so best to stick with something like '#000') - opacity: 0-1 - }, - threshold: 0-1 for the percentage value at which to hide labels (if they're too small) - }, - combine: { - threshold: 0-1 for the percentage value at which to combine slices (if they're too small) - color: any hexidecimal color value (other formats may or may not work, so best to stick with something like '#CCC'), if null, the plugin will automatically use the color of the first slice to be combined - label: any text value of what the combined slice should be labeled - } - highlight: { - opacity: 0-1 - } - } - } - -More detail and specific examples can be found in the included HTML file. - -*/(function(e){function r(r){function p(t,n,r){if(!l){l=!0;s=t.getCanvas();o=e(s).parent();i=t.getOptions();t.setData(d(t.getData()))}}function d(t){var n=0,r=0,s=0,o=i.series.pie.combine.color,u=[];for(var a=0;ai.series.pie.combine.threshold)&&u.push({data:[[1,f]],color:t[a].color,label:t[a].label,angle:f*Math.PI*2/n,percent:f/(n/100)})}s>1&&u.push({data:[[1,r]],color:o,label:i.series.pie.combine.label,angle:r*Math.PI*2/n,percent:r/(n/100)});return u}function v(r,s){function y(){c.clearRect(0,0,h,p);o.children().filter(".pieLabel, .pieLabelBackground").remove()}function b(){var e=i.series.pie.shadow.left,t=i.series.pie.shadow.top,n=10,r=i.series.pie.shadow.alpha,s=i.series.pie.radius>1?i.series.pie.radius:u*i.series.pie.radius;if(s>=h/2-e||s*i.series.pie.tilt>=p/2-t||s<=n)return;c.save();c.translate(e,t);c.globalAlpha=r;c.fillStyle="#000";c.translate(a,f);c.scale(1,i.series.pie.tilt);for(var o=1;o<=n;o++){c.beginPath();c.arc(0,0,s,0,Math.PI*2,!1);c.fill();s-=o}c.restore()}function w(){function l(e,t,i){if(e<=0||isNaN(e))return;if(i)c.fillStyle=t;else{c.strokeStyle=t;c.lineJoin="round"}c.beginPath();Math.abs(e-Math.PI*2)>1e-9&&c.moveTo(0,0);c.arc(0,0,n,r,r+e/2,!1);c.arc(0,0,n,r+e/2,r+e,!1);c.closePath();r+=e;i?c.fill():c.stroke()}function d(){function l(t,n,s){if(t.data[0][1]==0)return!0;var u=i.legend.labelFormatter,l,c=i.series.pie.label.formatter;u?l=u(t.label,t):l=t.label;c&&(l=c(l,t));var d=(n+t.angle+n)/2,v=a+Math.round(Math.cos(d)*r),m=f+Math.round(Math.sin(d)*r)*i.series.pie.tilt,g=""+l+"";o.append(g);var y=o.children("#pieLabel"+s),b=m-y.height()/2,w=v-y.width()/2;y.css("top",b);y.css("left",w);if(0-b>0||0-w>0||p-(b+y.height())<0||h-(w+y.width())<0)return!1;if(i.series.pie.label.background.opacity!=0){var E=i.series.pie.label.background.color;E==null&&(E=t.color);var S="top:"+b+"px;left:"+w+"px;";e("
").css("opacity",i.series.pie.label.background.opacity).insertBefore(y)}return!0}var n=t,r=i.series.pie.label.radius>1?i.series.pie.label.radius:u*i.series.pie.label.radius;for(var s=0;s=i.series.pie.label.threshold*100&&!l(v[s],n,s))return!1;n+=v[s].angle}return!0}var t=Math.PI*i.series.pie.startAngle,n=i.series.pie.radius>1?i.series.pie.radius:u*i.series.pie.radius;c.save();c.translate(a,f);c.scale(1,i.series.pie.tilt);c.save();var r=t;for(var s=0;s0){c.save();c.lineWidth=i.series.pie.stroke.width;r=t;for(var s=0;sh-u&&(a=h-u);var v=r.getData(),g=0;do{g>0&&(u*=n);g+=1;y();i.series.pie.tilt<=.8&&b()}while(!w()&&g=t){y();o.prepend("
Could not draw pie with labels contained inside canvas
")}if(r.setSeries&&r.insertLegend){r.setSeries(v);r.insertLegend()}}function m(e){if(i.series.pie.innerRadius>0){e.save();var t=i.series.pie.innerRadius>1?i.series.pie.innerRadius:u*i.series.pie.innerRadius;e.globalCompositeOperation="destination-out";e.beginPath();e.fillStyle=i.series.pie.stroke.color;e.arc(0,0,t,0,Math.PI*2,!1);e.fill();e.closePath();e.restore();e.save();e.beginPath();e.strokeStyle=i.series.pie.stroke.color;e.arc(0,0,t,0,Math.PI*2,!1);e.stroke();e.closePath();e.restore()}}function g(e,t){for(var n=!1,r=-1,i=e.length,s=i-1;++r1?i.series.pie.radius:u*i.series.pie.radius,o,l;for(var h=0;h1e-9&&t.moveTo(0,0);t.arc(0,0,r,e.startAngle,e.startAngle+e.angle/2,!1);t.arc(0,0,r,e.startAngle+e.angle/2,e.startAngle+e.angle,!1);t.closePath();t.fill()}var n=e.getOptions(),r=n.series.pie.radius>1?n.series.pie.radius:u*n.series.pie.radius;t.save();t.translate(a,f);t.scale(1,n.series.pie.tilt);for(var i=0;i1?t.series.pie.tilt=1:t.series.pie.tilt<0&&(t.series.pie.tilt=0)}});r.hooks.bindEvents.push(function(e,t){var n=e.getOptions();if(n.series.pie.show){n.grid.hoverable&&t.unbind("mousemove").mousemove(b);n.grid.clickable&&t.unbind("click").click(w)}});r.hooks.processDatapoints.push(function(e,t,n,r){var i=e.getOptions();i.series.pie.show&&p(e,t,n,r)});r.hooks.drawOverlay.push(function(e,t){var n=e.getOptions();n.series.pie.show&&N(e,t)});r.hooks.draw.push(function(e,t){var n=e.getOptions();n.series.pie.show&&v(e,t)})}var t=10,n=.95,i={series:{pie:{show:!1,radius:"auto",innerRadius:0,startAngle:1.5,tilt:1,shadow:{left:5,top:15,alpha:.02},offset:{top:0,left:"auto"},stroke:{color:"#fff",width:1},label:{show:"auto",formatter:function(e,t){return"
"+e+"
"+Math.round(t.percent)+"%
"},radius:1,background:{color:null,opacity:0},threshold:0},combine:{threshold:-1,color:null,label:"Other"},highlight:{opacity:.5}}}};e.plot.plugins.push({init:r,options:i,name:"pie",version:"1.1"})})(jQuery); \ No newline at end of file +!function(a){function b(b){function f(b){x||(x=!0,s=b.getCanvas(),t=a(s).parent(),e=b.getOptions(),b.setData(g(b.getData())))}function g(b){for(var c=0,d=0,f=0,g=e.series.pie.combine.color,h=[],i=0;if||j/c>e.series.pie.combine.threshold)&&h.push({data:[[1,j]],color:b[i].color,label:b[i].label,angle:j*Math.PI*2/c,percent:j/(c/100)})}return f>1&&h.push({data:[[1,d]],color:g,label:e.series.pie.combine.label,angle:d*Math.PI*2/c,percent:d/(c/100)}),h}function h(b,f){function g(){y.clearRect(0,0,k,l),t.children().filter(".pieLabel, .pieLabelBackground").remove()}function h(){var a=e.series.pie.shadow.left,b=e.series.pie.shadow.top,c=10,d=e.series.pie.shadow.alpha,f=e.series.pie.radius>1?e.series.pie.radius:u*e.series.pie.radius;if(!(f>=k/2-a||f*e.series.pie.tilt>=l/2-b||c>=f)){y.save(),y.translate(a,b),y.globalAlpha=d,y.fillStyle="#000",y.translate(v,w),y.scale(1,e.series.pie.tilt);for(var g=1;c>=g;g++)y.beginPath(),y.arc(0,0,f,0,2*Math.PI,!1),y.fill(),f-=g;y.restore()}}function j(){function b(a,b,c){0>=a||isNaN(a)||(c?y.fillStyle=b:(y.strokeStyle=b,y.lineJoin="round"),y.beginPath(),Math.abs(a-2*Math.PI)>1e-9&&y.moveTo(0,0),y.arc(0,0,f,g,g+a/2,!1),y.arc(0,0,f,g+a/2,g+a,!1),y.closePath(),g+=a,c?y.fill():y.stroke())}function c(){function b(b,c,d){if(0==b.data[0][1])return!0;var g,h=e.legend.labelFormatter,i=e.series.pie.label.formatter;g=h?h(b.label,b):b.label,i&&(g=i(g,b));var j=(c+b.angle+c)/2,m=v+Math.round(Math.cos(j)*f),n=w+Math.round(Math.sin(j)*f)*e.series.pie.tilt,o=""+g+"";t.append(o);var p=t.children("#pieLabel"+d),q=n-p.height()/2,r=m-p.width()/2;if(p.css("top",q),p.css("left",r),0-q>0||0-r>0||l-(q+p.height())<0||k-(r+p.width())<0)return!1;if(0!=e.series.pie.label.background.opacity){var s=e.series.pie.label.background.color;null==s&&(s=b.color);var u="top:"+q+"px;left:"+r+"px;";a("
").css("opacity",e.series.pie.label.background.opacity).insertBefore(p)}return!0}for(var c=d,f=e.series.pie.label.radius>1?e.series.pie.label.radius:u*e.series.pie.label.radius,g=0;g=100*e.series.pie.label.threshold&&!b(n[g],c,g))return!1;c+=n[g].angle}return!0}var d=Math.PI*e.series.pie.startAngle,f=e.series.pie.radius>1?e.series.pie.radius:u*e.series.pie.radius;y.save(),y.translate(v,w),y.scale(1,e.series.pie.tilt),y.save();for(var g=d,h=0;h0){y.save(),y.lineWidth=e.series.pie.stroke.width,g=d;for(var h=0;hv?v=u:v>k-u&&(v=k-u);var n=b.getData(),o=0;do o>0&&(u*=d),o+=1,g(),e.series.pie.tilt<=.8&&h();while(!j()&&c>o);o>=c&&(g(),t.prepend("
Could not draw pie with labels contained inside canvas
")),b.setSeries&&b.insertLegend&&(b.setSeries(n),b.insertLegend())}}function i(a){if(e.series.pie.innerRadius>0){a.save();var b=e.series.pie.innerRadius>1?e.series.pie.innerRadius:u*e.series.pie.innerRadius;a.globalCompositeOperation="destination-out",a.beginPath(),a.fillStyle=e.series.pie.stroke.color,a.arc(0,0,b,0,2*Math.PI,!1),a.fill(),a.closePath(),a.restore(),a.save(),a.beginPath(),a.strokeStyle=e.series.pie.stroke.color,a.arc(0,0,b,0,2*Math.PI,!1),a.stroke(),a.closePath(),a.restore()}}function j(a,b){for(var c=!1,d=-1,e=a.length,f=e-1;++d1?g.series.pie.radius:u*g.series.pie.radius,i=0;i1e-9&&b.moveTo(0,0),b.arc(0,0,e,a.startAngle,a.startAngle+a.angle/2,!1),b.arc(0,0,e,a.startAngle+a.angle/2,a.startAngle+a.angle,!1),b.closePath(),b.fill())}var d=a.getOptions(),e=d.series.pie.radius>1?d.series.pie.radius:u*d.series.pie.radius;b.save(),b.translate(v,w),b.scale(1,d.series.pie.tilt);for(var f=0;f1?b.series.pie.tilt=1:b.series.pie.tilt<0&&(b.series.pie.tilt=0))}),b.hooks.bindEvents.push(function(a,b){var c=a.getOptions();c.series.pie.show&&(c.grid.hoverable&&b.unbind("mousemove").mousemove(l),c.grid.clickable&&b.unbind("click").click(m))}),b.hooks.processDatapoints.push(function(a,b,c,d){var e=a.getOptions();e.series.pie.show&&f(a,b,c,d)}),b.hooks.drawOverlay.push(function(a,b){var c=a.getOptions();c.series.pie.show&&r(a,b)}),b.hooks.draw.push(function(a,b){var c=a.getOptions();c.series.pie.show&&h(a,b)})}var c=10,d=.95,e={series:{pie:{show:!1,radius:"auto",innerRadius:0,startAngle:1.5,tilt:1,shadow:{left:5,top:15,alpha:.02},offset:{top:0,left:"auto"},stroke:{color:"#fff",width:1},label:{show:"auto",formatter:function(a,b){return"
"+a+"
"+Math.round(b.percent)+"%
"},radius:1,background:{color:null,opacity:0},threshold:0},combine:{threshold:-1,color:null,label:"Other"},highlight:{opacity:.5}}}};a.plot.plugins.push({init:b,options:e,name:"pie",version:"1.1"})}(jQuery); \ No newline at end of file diff --git a/assets/js/admin/jquery.flot.resize.js b/assets/js/admin/jquery.flot.resize.js old mode 100755 new mode 100644 diff --git a/assets/js/admin/jquery.flot.resize.min.js b/assets/js/admin/jquery.flot.resize.min.js old mode 100755 new mode 100644 index 17bbfa2db40..524a2c2fd7e --- a/assets/js/admin/jquery.flot.resize.min.js +++ b/assets/js/admin/jquery.flot.resize.min.js @@ -1,19 +1 @@ -/* Flot plugin for automatically redrawing plots as the placeholder resizes. - -Copyright (c) 2007-2013 IOLA and Ole Laursen. -Licensed under the MIT license. - -It works by listening for changes on the placeholder div (through the jQuery -resize event plugin) - if the size changes, it will redraw the plot. - -There are no options. If you need to disable the plugin for some plots, you -can just fix the size of their placeholders. - -*//* Inline dependency: - * jQuery resize event - v1.1 - 3/14/2010 - * http://benalman.com/projects/jquery-resize-plugin/ - * - * Copyright (c) 2010 "Cowboy" Ben Alman - * Dual licensed under the MIT and GPL licenses. - * http://benalman.com/about/license/ - */(function(e,t,n){function c(){s=t[o](function(){r.each(function(){var t=e(this),n=t.width(),r=t.height(),i=e.data(this,a);(n!==i.w||r!==i.h)&&t.trigger(u,[i.w=n,i.h=r])});c()},i[f])}var r=e([]),i=e.resize=e.extend(e.resize,{}),s,o="setTimeout",u="resize",a=u+"-special-event",f="delay",l="throttleWindow";i[f]=250;i[l]=!0;e.event.special[u]={setup:function(){if(!i[l]&&this[o])return!1;var t=e(this);r=r.add(t);e.data(this,a,{w:t.width(),h:t.height()});r.length===1&&c()},teardown:function(){if(!i[l]&&this[o])return!1;var t=e(this);r=r.not(t);t.removeData(a);r.length||clearTimeout(s)},add:function(t){function s(t,i,s){var o=e(this),u=e.data(this,a);u.w=i!==n?i:o.width();u.h=s!==n?s:o.height();r.apply(this,arguments)}if(!i[l]&&this[o])return!1;var r;if(e.isFunction(t)){r=t;return s}r=t.handler;t.handler=s}}})(jQuery,this);(function(e){function n(e){function t(){var t=e.getPlaceholder();if(t.width()==0||t.height()==0)return;e.resize();e.setupGrid();e.draw()}function n(e,n){e.getPlaceholder().resize(t)}function r(e,n){e.getPlaceholder().unbind("resize",t)}e.hooks.bindEvents.push(n);e.hooks.shutdown.push(r)}var t={};e.plot.plugins.push({init:n,options:t,name:"resize",version:"1.0"})})(jQuery); \ No newline at end of file +!function(a,b,c){function d(){e=b[h](function(){f.each(function(){var b=a(this),c=b.width(),d=b.height(),e=a.data(this,j);(c!==e.w||d!==e.h)&&b.trigger(i,[e.w=c,e.h=d])}),d()},g[k])}var e,f=a([]),g=a.resize=a.extend(a.resize,{}),h="setTimeout",i="resize",j=i+"-special-event",k="delay",l="throttleWindow";g[k]=250,g[l]=!0,a.event.special[i]={setup:function(){if(!g[l]&&this[h])return!1;var b=a(this);f=f.add(b),a.data(this,j,{w:b.width(),h:b.height()}),1===f.length&&d()},teardown:function(){if(!g[l]&&this[h])return!1;var b=a(this);f=f.not(b),b.removeData(j),f.length||clearTimeout(e)},add:function(b){function d(b,d,f){var g=a(this),h=a.data(this,j);h.w=d!==c?d:g.width(),h.h=f!==c?f:g.height(),e.apply(this,arguments)}if(!g[l]&&this[h])return!1;var e;return a.isFunction(b)?(e=b,d):(e=b.handler,void(b.handler=d))}}}(jQuery,this),function(a){function b(a){function b(){var b=a.getPlaceholder();0!=b.width()&&0!=b.height()&&(a.resize(),a.setupGrid(),a.draw())}function c(a){a.getPlaceholder().resize(b)}function d(a){a.getPlaceholder().unbind("resize",b)}a.hooks.bindEvents.push(c),a.hooks.shutdown.push(d)}var c={};a.plot.plugins.push({init:b,options:c,name:"resize",version:"1.0"})}(jQuery); \ No newline at end of file diff --git a/assets/js/admin/jquery.flot.stack.min.js b/assets/js/admin/jquery.flot.stack.min.js index a0a744e2680..e8be501186d 100644 --- a/assets/js/admin/jquery.flot.stack.min.js +++ b/assets/js/admin/jquery.flot.stack.min.js @@ -1,36 +1 @@ -/* Flot plugin for stacking data sets rather than overlyaing them. - -Copyright (c) 2007-2013 IOLA and Ole Laursen. -Licensed under the MIT license. - -The plugin assumes the data is sorted on x (or y if stacking horizontally). -For line charts, it is assumed that if a line has an undefined gap (from a -null point), then the line above it should have the same gap - insert zeros -instead of "null" if you want another behaviour. This also holds for the start -and end of the chart. Note that stacking a mix of positive and negative values -in most instances doesn't make sense (so it looks weird). - -Two or more series are stacked when their "stack" attribute is set to the same -key (which can be any number or string or just "true"). To specify the default -stack, you can set the stack option like this: - - series: { - stack: null/false, true, or a key (number/string) - } - -You can also specify it for a single series, like this: - - $.plot( $("#placeholder"), [{ - data: [ ... ], - stack: true - }]) - -The stacking order is determined by the order of the data series in the array -(later series end up on top of the previous). - -Internally, the plugin modifies the datapoints in each series, adding an -offset to the y value. For line series, extra data points are inserted through -interpolation. If there's a second y value, it's also adjusted (e.g for bar -charts or filled areas). - -*/(function(e){function n(e){function t(e,t){var n=null;for(var r=0;r2&&(g?r.format[2].x:r.format[2].y),b=m&&n.lines.steps,w=!0,E=g?1:0,S=g?0:1,x=0,T=0,N,C;for(;;){if(x>=o.length)break;N=f.length;if(o[x]==null){for(C=0;C=a.length){if(!m)for(C=0;Cp){if(m&&x>0&&o[x-s]!=null){h=c+(o[x-s+S]-c)*(p-l)/(o[x-s+E]-l);f.push(p);f.push(h+d);for(C=2;C0&&a[T-u]!=null&&(v=d+(a[T-u+S]-d)*(l-p)/(a[T-u+E]-p));f[N+S]+=v;x+=s}w=!1;N!=f.length&&y&&(f[N+2]+=v)}if(b&&N!=f.length&&N>0&&f[N]!=null&&f[N]!=f[N-s]&&f[N+1]!=f[N-s+1]){for(C=0;C2&&(t?d.format[2].x:d.format[2].y),v=s&&c.lines.steps,w=!0,x=t?1:0,y=t?0:1,z=0,A=0;;){if(z>=o.length)break;if(l=r.length,null==o[z]){for(m=0;n>m;++m)r.push(o[z+m]);z+=n}else if(A>=q.length){if(!s)for(m=0;n>m;++m)r.push(o[z+m]);z+=n}else if(null==q[A]){for(m=0;n>m;++m)r.push(null);w=!0,A+=p}else{if(f=o[z+x],g=o[z+y],i=q[A+x],j=q[A+y],k=0,f==i){for(m=0;n>m;++m)r.push(o[z+m]);r[l+y]+=j,k=j,z+=n,A+=p}else if(f>i){if(s&&z>0&&null!=o[z-n]){for(h=g+(o[z-n+y]-g)*(i-f)/(o[z-n+x]-f),r.push(i),r.push(h+j),m=2;n>m;++m)r.push(o[z+m]);k=j}A+=p}else{if(w&&s){z+=n;continue}for(m=0;n>m;++m)r.push(o[z+m]);s&&A>0&&null!=q[A-p]&&(k=j+(q[A-p+y]-j)*(f-i)/(q[A-p+x]-i)),r[l+y]+=k,z+=n}w=!1,l!=r.length&&u&&(r[l+2]+=k)}if(v&&l!=r.length&&l>0&&null!=r[l]&&r[l]!=r[l-n]&&r[l+1]!=r[l-n+1]){for(m=0;n>m;++m)r[l+n+m]=r[l+m];r[l+1]=r[l-n+1]}}d.points=r}}}a.hooks.processDatapoints.push(c)}var c={series:{stack:null}};a.plot.plugins.push({init:b,options:c,name:"stack",version:"1.2"})}(jQuery); \ No newline at end of file diff --git a/assets/js/admin/jquery.flot.time.js b/assets/js/admin/jquery.flot.time.js old mode 100755 new mode 100644 diff --git a/assets/js/admin/jquery.flot.time.min.js b/assets/js/admin/jquery.flot.time.min.js old mode 100755 new mode 100644 index cebbf5252a2..6c6b3cb1525 --- a/assets/js/admin/jquery.flot.time.min.js +++ b/assets/js/admin/jquery.flot.time.min.js @@ -1,9 +1 @@ -/* Pretty handling of time axes. - -Copyright (c) 2007-2013 IOLA and Ole Laursen. -Licensed under the MIT license. - -Set axis.mode to "time" to enable. See the section "Time series data" in -API.txt for details. - -*/(function(e){function n(e,t){return t*Math.floor(e/t)}function r(e,t,n,r){if(typeof e.strftime=="function")return e.strftime(t);var i=function(e,t){e=""+e;t=""+(t==null?"0":t);return e.length==1?t+e:e},s=[],o=!1,u=e.getHours(),a=u<12;n==null&&(n=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]);r==null&&(r=["Sun","Mon","Tue","Wed","Thu","Fri","Sat"]);var f;u>12?f=u-12:u==0?f=12:f=u;for(var l=0;l=u)break;var h=l[c][0],p=l[c][1];if(p=="year"){if(i.minTickSize!=null&&i.minTickSize[1]=="year")h=Math.floor(i.minTickSize[0]);else{var d=Math.pow(10,Math.floor(Math.log(e.delta/o.year)/Math.LN10)),v=e.delta/o.year/d;v<1.5?h=1:v<3?h=2:v<7.5?h=5:h=10;h*=d}h<1&&(h=1)}e.tickSize=i.tickSize||[h,p];var m=e.tickSize[0];p=e.tickSize[1];var g=m*o[p];p=="second"?r.setSeconds(n(r.getSeconds(),m)):p=="minute"?r.setMinutes(n(r.getMinutes(),m)):p=="hour"?r.setHours(n(r.getHours(),m)):p=="month"?r.setMonth(n(r.getMonth(),m)):p=="quarter"?r.setMonth(3*n(r.getMonth()/3,m)):p=="year"&&r.setFullYear(n(r.getFullYear(),m));r.setMilliseconds(0);g>=o.minute&&r.setSeconds(0);g>=o.hour&&r.setMinutes(0);g>=o.day&&r.setHours(0);g>=o.day*4&&r.setDate(1);g>=o.month*2&&r.setMonth(n(r.getMonth(),3));g>=o.quarter*2&&r.setMonth(n(r.getMonth(),6));g>=o.year&&r.setMonth(0);var y=0,b=Number.NaN,w;do{w=b;b=r.getTime();t.push(b);if(p=="month"||p=="quarter")if(m<1){r.setDate(1);var E=r.getTime();r.setMonth(r.getMonth()+(p=="quarter"?3:1));var S=r.getTime();r.setTime(b+y*o.hour+(S-E)*m);y=r.getHours();r.setHours(0)}else r.setMonth(r.getMonth()+m*(p=="quarter"?3:1));else p=="year"?r.setFullYear(r.getFullYear()+m):r.setTime(b+g)}while(bh;null==c&&(c=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]),null==d&&(d=["Sun","Mon","Tue","Wed","Thu","Fri","Sat"]);var j;j=h>12?h-12:0==h?12:h;for(var k=0;k=g);++l);var m=i[l][0],n=i[l][1];if("year"==n){if(null!=f.minTickSize&&"year"==f.minTickSize[1])m=Math.floor(f.minTickSize[0]);else{var o=Math.pow(10,Math.floor(Math.log(a.delta/h.year)/Math.LN10)),p=a.delta/h.year/o;m=1.5>p?1:3>p?2:7.5>p?5:10,m*=o}1>m&&(m=1)}a.tickSize=f.tickSize||[m,n];var q=a.tickSize[0];n=a.tickSize[1];var r=q*h[n];"second"==n?d.setSeconds(b(d.getSeconds(),q)):"minute"==n?d.setMinutes(b(d.getMinutes(),q)):"hour"==n?d.setHours(b(d.getHours(),q)):"month"==n?d.setMonth(b(d.getMonth(),q)):"quarter"==n?d.setMonth(3*b(d.getMonth()/3,q)):"year"==n&&d.setFullYear(b(d.getFullYear(),q)),d.setMilliseconds(0),r>=h.minute&&d.setSeconds(0),r>=h.hour&&d.setMinutes(0),r>=h.day&&d.setHours(0),r>=4*h.day&&d.setDate(1),r>=2*h.month&&d.setMonth(b(d.getMonth(),3)),r>=2*h.quarter&&d.setMonth(b(d.getMonth(),6)),r>=h.year&&d.setMonth(0);var s,t=0,u=Number.NaN;do if(s=u,u=d.getTime(),c.push(u),"month"==n||"quarter"==n)if(1>q){d.setDate(1);var v=d.getTime();d.setMonth(d.getMonth()+("quarter"==n?3:1));var w=d.getTime();d.setTime(u+t*h.hour+(w-v)*q),t=d.getHours(),d.setHours(0)}else d.setMonth(d.getMonth()+q*("quarter"==n?3:1));else"year"==n?d.setFullYear(d.getFullYear()+q):d.setTime(u+r);while(u 0 ) { + $( el ).block({ + message: null, + overlayCSS: { + background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', + opacity: 0.6 + } + }); + + var data = { + action: 'woocommerce_revoke_access_to_download', + product_id: product, + download_id: file, + order_id: woocommerce_admin_meta_boxes.post_id, + security: woocommerce_admin_meta_boxes.revoke_access_nonce, + }; + + $.post( woocommerce_admin_meta_boxes.ajax_url, data, function ( response ) { + // Success + $( el ).fadeOut( '300', function () { + $( el ).remove(); + }); + }); + + } else { + $( el ).fadeOut( '300', function () { + $( el ).remove(); + }); + } + } + return false; + }); + + $( 'button.load_customer_billing' ).on( 'click', function() { + if ( window.confirm( woocommerce_admin_meta_boxes.load_billing ) ) { + + // Get user ID to load data for + var user_id = $( '#customer_user' ).val(); + + if ( ! user_id ) { + window.alert( woocommerce_admin_meta_boxes.no_customer_selected ); + return false; + } + + var data = { + user_id: user_id, + type_to_load: 'billing', + action: 'woocommerce_get_customer_details', + security: woocommerce_admin_meta_boxes.get_customer_details_nonce + }; + + $( this ).closest( '.edit_address' ).block({ + message: null, + overlayCSS: { + background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', + opacity: 0.6 + } + }); + + $.ajax({ + url: woocommerce_admin_meta_boxes.ajax_url, + data: data, + type: 'POST', + success: function( response ) { + var info = response; + + if ( info ) { + $( 'input#_billing_first_name' ).val( info.billing_first_name ); + $( 'input#_billing_last_name' ).val( info.billing_last_name ); + $( 'input#_billing_company' ).val( info.billing_company ); + $( 'input#_billing_address_1' ).val( info.billing_address_1 ); + $( 'input#_billing_address_2' ).val( info.billing_address_2 ); + $( 'input#_billing_city' ).val( info.billing_city ); + $( 'input#_billing_postcode' ).val( info.billing_postcode ); + $( '#_billing_country' ).val( info.billing_country ); + $( 'input#_billing_state' ).val( info.billing_state ); + $( 'input#_billing_email' ).val( info.billing_email ); + $( 'input#_billing_phone' ).val( info.billing_phone ); + } + + $( '.edit_address' ).unblock(); + } + }); + } + return false; + }); + + $( 'button.load_customer_shipping' ).on( 'click', function() { + if ( window.confirm( woocommerce_admin_meta_boxes.load_shipping ) ) { + + // Get user ID to load data for + var user_id = $( '#customer_user' ).val(); + + if ( ! user_id ) { + window.alert( woocommerce_admin_meta_boxes.no_customer_selected ); + return false; + } + + var data = { + user_id: user_id, + type_to_load: 'shipping', + action: 'woocommerce_get_customer_details', + security: woocommerce_admin_meta_boxes.get_customer_details_nonce + }; + + $( this ).closest( '.edit_address' ).block({ + message: null, + overlayCSS: { + background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', + opacity: 0.6 + } + }); + + $.ajax({ + url: woocommerce_admin_meta_boxes.ajax_url, + data: data, + type: 'POST', + success: function( response ) { + var info = response; + + if ( info ) { + $( 'input#_shipping_first_name' ).val( info.shipping_first_name ); + $( 'input#_shipping_last_name' ).val( info.shipping_last_name ); + $( 'input#_shipping_company' ).val( info.shipping_company ); + $( 'input#_shipping_address_1' ).val( info.shipping_address_1 ); + $( 'input#_shipping_address_2' ).val( info.shipping_address_2 ); + $( 'input#_shipping_city' ).val( info.shipping_city ); + $( 'input#_shipping_postcode' ).val( info.shipping_postcode ); + $( '#_shipping_country' ).val( info.shipping_country ); + $( 'input#_shipping_state' ).val( info.shipping_state ); + } + + $( '.edit_address' ).unblock(); + } + }); + } + return false; + }); + + $( 'button.billing-same-as-shipping' ).on( 'click', function() { + if ( window.confirm( woocommerce_admin_meta_boxes.copy_billing ) ) { + $( 'input#_shipping_first_name' ).val( $( 'input#_billing_first_name' ).val() ); + $( 'input#_shipping_last_name' ).val( $( 'input#_billing_last_name' ).val() ); + $( 'input#_shipping_company' ).val( $( 'input#_billing_company' ).val() ); + $( 'input#_shipping_address_1' ).val( $( 'input#_billing_address_1' ).val() ); + $( 'input#_shipping_address_2' ).val( $( 'input#_billing_address_2' ).val() ); + $( 'input#_shipping_city' ).val( $( 'input#_billing_city' ).val() ); + $( 'input#_shipping_postcode' ).val( $( 'input#_billing_postcode' ).val() ); + $( '#_shipping_country' ).val( $( '#_billing_country' ).val() ); + $( 'input#_shipping_state' ).val( $( 'input#_billing_state' ).val() ); + } + return false; + }); + + $( '.totals_group' ).on( 'click', 'a.add_total_row', function() { + $( this ).closest( '.totals_group' ).find( '.total_rows' ).append( $( this ).data( 'row' ) ); + return false; + }); + + $( '.total_rows' ).on( 'click', 'a.delete_total_row', function() { + var $row = $( this ).closest( '.total_row' ); + var row_id = $row.attr( 'data-order_item_id' ); + + if ( row_id ) { + $row.append( '' ).hide(); + } else { + $row.remove(); + } + + return false; + }); + + // Order notes + $( '#woocommerce-order-notes' ) + .on( 'click', 'a.add_note', function() { + if ( ! $( 'textarea#add_order_note' ).val() ) { + return; + } + + $( '#woocommerce-order-notes' ).block({ + message: null, + overlayCSS: { + background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', + opacity: 0.6 + } + }); + + var data = { + action: 'woocommerce_add_order_note', + post_id: woocommerce_admin_meta_boxes.post_id, + note: $( 'textarea#add_order_note' ).val(), + note_type: $( 'select#order_note_type' ).val(), + security: woocommerce_admin_meta_boxes.add_order_note_nonce, + }; + + $.post( woocommerce_admin_meta_boxes.ajax_url, data, function( response ) { + $( 'ul.order_notes' ).prepend( response ); + $( '#woocommerce-order-notes' ).unblock(); + $( '#add_order_note' ).val( '' ); + }); + + return false; + + }) + .on( 'click', 'a.delete_note', function() { + var note = $( this ).closest( 'li.note' ); + + $( note ).block({ + message: null, + overlayCSS: { + background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', + opacity: 0.6 + } + }); + + var data = { + action: 'woocommerce_delete_order_note', + note_id: $( note ).attr( 'rel' ), + security: woocommerce_admin_meta_boxes.delete_order_note_nonce, + }; + + $.post( woocommerce_admin_meta_boxes.ajax_url, data, function( response ) { + $( note ).remove(); + }); + + return false; + }); +}); diff --git a/assets/js/admin/meta-boxes-order.min.js b/assets/js/admin/meta-boxes-order.min.js new file mode 100644 index 00000000000..327fdbf63d5 --- /dev/null +++ b/assets/js/admin/meta-boxes-order.min.js @@ -0,0 +1 @@ +jQuery(function(a){function b(){a("#woocommerce-order-items").block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}})}function c(){a("#woocommerce-order-items").unblock()}function d(){a("#tiptip_holder").removeAttr("style"),a("#tiptip_arrow").removeAttr("style"),a(".tips").tipTip({attribute:"data-tip",fadeIn:50,fadeOut:50,delay:200})}function e(){var e={order_id:woocommerce_admin_meta_boxes.post_id,action:"woocommerce_load_order_items",security:woocommerce_admin_meta_boxes.order_item_nonce};b(),a.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:e,type:"POST",success:function(b){a("#woocommerce-order-items .inside").empty(),a("#woocommerce-order-items .inside").append(b),d(),c()}})}a("#woocommerce-order-actions input, #woocommerce-order-actions a").click(function(){window.onbeforeunload=""}),a("a.edit_address").click(function(b){b.preventDefault(),a(this).hide(),a(this).closest(".order_data_column").find("div.address").hide(),a(this).closest(".order_data_column").find("div.edit_address").show()}),a("body").on("click","a.edit-order-item",function(){return a(this).closest("tr").find(".view").hide(),a(this).closest("tr").find(".edit").show(),a(this).hide(),a("button.add-line-item").click(),a("button.cancel-action").attr("data-reload",!0),!1}).on("click",".woocommerce_order_items a.delete-order-item",function(){var d=window.confirm(woocommerce_admin_meta_boxes.remove_item_notice);if(d){var e=a(this).closest("tr.item, tr.fee, tr.shipping"),f=e.attr("data-order_item_id");b();var g={order_item_ids:f,action:"woocommerce_remove_order_item",security:woocommerce_admin_meta_boxes.order_item_nonce};a.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:g,type:"POST",success:function(){e.remove(),c()}})}return!1}).on("click","#order_refunds .delete_refund",function(){if(window.confirm(woocommerce_admin_meta_boxes.i18n_delete_refund)){var c=a(this).closest("tr.refund"),d=c.attr("data-order_refund_id");b();var f={action:"woocommerce_delete_refund",refund_id:d,security:woocommerce_admin_meta_boxes.order_item_nonce};a.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:f,type:"POST",success:function(){e()}})}return!1}).on("change",".woocommerce_order_items input.quantity",function(){var b=a(this).closest("tr.item"),c=a(this).val(),d=a(this).attr("data-qty"),e=a("input.line_total",b),f=a("input.line_subtotal",b),g=accounting.unformat(e.attr("data-total"),woocommerce_admin.mon_decimal_point)/d;e.val(parseFloat(accounting.formatNumber(g*c,woocommerce_admin_meta_boxes.rounding_precision,"")).toString().replace(".",woocommerce_admin.mon_decimal_point));var h=accounting.unformat(f.attr("data-subtotal"),woocommerce_admin.mon_decimal_point)/d;f.val(parseFloat(accounting.formatNumber(h*c,woocommerce_admin_meta_boxes.rounding_precision,"")).toString().replace(".",woocommerce_admin.mon_decimal_point)),a("td.line_tax",b).each(function(){var b=a("input.line_tax",a(this)),e=accounting.unformat(b.attr("data-total_tax"),woocommerce_admin.mon_decimal_point)/d;e>0&&b.val(parseFloat(accounting.formatNumber(e*c,woocommerce_admin_meta_boxes.rounding_precision,"")).toString().replace(".",woocommerce_admin.mon_decimal_point));var f=a("input.line_subtotal_tax",a(this)),g=accounting.unformat(f.attr("data-subtotal_tax"),woocommerce_admin.mon_decimal_point)/d;g>0&&f.val(parseFloat(accounting.formatNumber(g*c,woocommerce_admin_meta_boxes.rounding_precision,"")).toString().replace(".",woocommerce_admin.mon_decimal_point))}),a(this).trigger("quantity_changed")}).on("change",".woocommerce_order_items input.refund_order_item_qty",function(){var b=a(this).closest("tr.item"),c=b.find("input.quantity").val(),d=a(this).val(),e=a("input.line_total",b),f=a("input.refund_line_total",b),g=accounting.unformat(e.attr("data-total"),woocommerce_admin.mon_decimal_point)/c;f.val(parseFloat(accounting.formatNumber(g*d,woocommerce_admin_meta_boxes.rounding_precision,"")).toString().replace(".",woocommerce_admin.mon_decimal_point)),a("td.line_tax",b).each(function(){var b=a("input.line_tax",a(this)),e=a("input.refund_line_tax",a(this)),f=accounting.unformat(b.attr("data-total_tax"),woocommerce_admin.mon_decimal_point)/c;f>0&&e.val(parseFloat(accounting.formatNumber(f*d,woocommerce_admin_meta_boxes.rounding_precision,"")).toString().replace(".",woocommerce_admin.mon_decimal_point))}),a(this).trigger("refund_quantity_changed")}).on("change",".woocommerce_order_items .refund input",function(){var b=0,c=a(".woocommerce_order_items").find("tr.item, tr.fee, tr.shipping");c.each(function(){var c=a(this),d=c.find(".refund input:not(.refund_order_item_qty)");d.each(function(c,d){b+=parseFloat(accounting.unformat(a(d).val()||0,woocommerce_admin.mon_decimal_point))})}),a("#refund_amount").val(accounting.formatNumber(b,woocommerce_admin_meta_boxes.currency_format_num_decimals,"",woocommerce_admin.mon_decimal_point)).change()}).on("click",".woocommerce_order_items button.add_order_item_meta",function(){var d=a(this),e=d.closest("tr.item"),f={order_item_id:e.attr("data-order_item_id"),action:"woocommerce_add_order_item_meta",security:woocommerce_admin_meta_boxes.order_item_nonce};return b(),a.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:f,type:"POST",success:function(a){e.find("tbody.meta_items").append(a),c()}}),!1}).on("click",".woocommerce_order_items button.remove_order_item_meta",function(){if(window.confirm(woocommerce_admin_meta_boxes.remove_item_meta)){var d=a(this).closest("tr"),e={meta_id:d.attr("data-meta_id"),action:"woocommerce_remove_order_item_meta",security:woocommerce_admin_meta_boxes.order_item_nonce};b(),a.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:e,type:"POST",success:function(){d.hide(),c()}})}return!1}).on("keyup",".woocommerce_order_items .split-input input:eq(0)",function(){var b=a(this).next();(""===b.val()||b.is(".match-total"))&&b.val(a(this).val()).addClass("match-total")}).on("keyup",".woocommerce_order_items .split-input input:eq(0)",function(){a(this).removeClass("match-total")}),a("#woocommerce-order-items").on("click","button.add-line-item",function(){return a("div.wc-order-add-item").slideDown(),a("div.wc-order-bulk-actions").slideUp(),!1}).on("click","button.refund-items",function(){return a("div.wc-order-refund-items").slideDown(),a("div.wc-order-bulk-actions").slideUp(),a("div.wc-order-totals-items").slideUp(),a("#woocommerce-order-items div.refund").show(),a(".wc-order-edit-line-item .wc-order-edit-line-item-actions").hide(),!1}).on("click",".cancel-action",function(){return a(this).closest("div.wc-order-data-row").slideUp(),a("div.wc-order-bulk-actions").slideDown(),a("div.wc-order-totals-items").slideDown(),a("#woocommerce-order-items div.refund").hide(),a(".wc-order-edit-line-item .wc-order-edit-line-item-actions").show(),"true"===a(this).attr("data-reload")&&e(),!1}).on("click","button.add-order-item",function(){return a(this).WCBackboneModal({template:"#wc-modal-add-products"}),!1}).on("click","button.add-order-fee",function(){b();var d={action:"woocommerce_add_order_fee",order_id:woocommerce_admin_meta_boxes.post_id,security:woocommerce_admin_meta_boxes.order_item_nonce};return a.post(woocommerce_admin_meta_boxes.ajax_url,d,function(b){a("table.woocommerce_order_items tbody#order_fee_line_items").append(b),c()}),!1}).on("click","button.add-order-shipping",function(){b();var d={action:"woocommerce_add_order_shipping",order_id:woocommerce_admin_meta_boxes.post_id,security:woocommerce_admin_meta_boxes.order_item_nonce};return a.post(woocommerce_admin_meta_boxes.ajax_url,d,function(b){a("table.woocommerce_order_items tbody#order_shipping_line_items").append(b),c()}),!1}).on("click","button.add-order-tax",function(){return a(this).WCBackboneModal({template:"#wc-modal-add-tax"}),!1}).on("click","input.check-column",function(){a(this).is(":checked")?a("#woocommerce-order-items").find(".check-column input").attr("checked","checked"):a("#woocommerce-order-items").find(".check-column input").removeAttr("checked")}).on("click",".do_bulk_action",function(){var d=a(this).closest(".bulk-actions").find("select").val(),e=a("#woocommerce-order-items").find(".check-column input:checked"),f=[];if(a(e).each(function(){var b=a(this).closest("tr");b.attr("data-order_item_id")&&f.push(b.attr("data-order_item_id"))}),0===f.length)return void window.alert(woocommerce_admin_meta_boxes.i18n_select_items);if("delete"===d){if(window.confirm(woocommerce_admin_meta_boxes.remove_item_notice)){b();var g={order_item_ids:f,action:"woocommerce_remove_order_item",security:woocommerce_admin_meta_boxes.order_item_nonce};a.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:g,type:"POST",success:function(){a(e).each(function(){a(this).closest("tr").remove()}),c()}})}}else if("reduce_stock"===d){b();var h={};a(e).each(function(){var b=a(this).closest("tr.item, tr.fee"),c=b.find("input.quantity");h[b.attr("data-order_item_id")]=c.val()});var g={order_id:woocommerce_admin_meta_boxes.post_id,order_item_ids:f,order_item_qty:h,action:"woocommerce_reduce_order_item_stock",security:woocommerce_admin_meta_boxes.order_item_nonce};a.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:g,type:"POST",success:function(a){window.alert(a),c()}})}else if("increase_stock"===d){b();var h={};a(e).each(function(){var b=a(this).closest("tr.item, tr.fee"),c=b.find("input.quantity");h[b.attr("data-order_item_id")]=c.val()});var g={order_id:woocommerce_admin_meta_boxes.post_id,order_item_ids:f,order_item_qty:h,action:"woocommerce_increase_order_item_stock",security:woocommerce_admin_meta_boxes.order_item_nonce};a.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:g,type:"POST",success:function(a){window.alert(a),c()}})}return!1}).on("click","button.calculate-action",function(){if(window.confirm(woocommerce_admin_meta_boxes.calc_totals)){b();var c=0,d=0,e=0,f=a("#_order_discount").val()||"0";f=accounting.unformat(f.replace(",",".")),a(".woocommerce_order_items tr.shipping input.line_total").each(function(){var b=a(this).val()||"0";b=accounting.unformat(b,woocommerce_admin.mon_decimal_point),e+=parseFloat(b)}),a(".woocommerce_order_items input.line_tax").each(function(){var b=a(this).val()||"0";b=accounting.unformat(b,woocommerce_admin.mon_decimal_point),d+=parseFloat(b)}),a(".woocommerce_order_items tr.item, .woocommerce_order_items tr.fee").each(function(){var b=a(this).find("input.line_total").val()||"0";c+=accounting.unformat(b.replace(",","."))}),"yes"===woocommerce_admin_meta_boxes.round_at_subtotal&&(d=parseFloat(accounting.toFixed(d,woocommerce_admin_meta_boxes.rounding_precision))),a("#_order_total").val(accounting.formatNumber(c+d+e-f,woocommerce_admin_meta_boxes.currency_format_num_decimals,"",woocommerce_admin.mon_decimal_point)).change(),a("button.save-action").click()}return!1}).on("click","button.save-action",function(){var e={order_id:woocommerce_admin_meta_boxes.post_id,items:a("table.woocommerce_order_items :input[name], .wc-order-totals-items :input[name]").serialize(),action:"woocommerce_save_order_items",security:woocommerce_admin_meta_boxes.order_item_nonce};return b(),a.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:e,type:"POST",success:function(b){a("#woocommerce-order-items .inside").empty(),a("#woocommerce-order-items .inside").append(b),d(),c()}}),a(this).trigger("items_saved"),!1}).on("click","a.delete-order-tax",function(){if(window.confirm(woocommerce_admin_meta_boxes.i18n_delete_tax)){b();var e={action:"woocommerce_remove_order_tax",rate_id:a(this).attr("data-rate_id"),order_id:woocommerce_admin_meta_boxes.post_id,security:woocommerce_admin_meta_boxes.order_item_nonce};a.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:e,type:"POST",success:function(b){a("#woocommerce-order-items .inside").empty(),a("#woocommerce-order-items .inside").append(b),d(),c()}})}return!1}).on("click","button.calculate-tax-action",function(){if(window.confirm(woocommerce_admin_meta_boxes.calc_line_taxes)){b();var e=a("#_shipping_country").val(),f=a("#_billing_country").val(),g=woocommerce_admin_meta_boxes.base_country,h="",i="",j="";e?(g=e,h=a("#_shipping_state").val(),i=a("#_shipping_postcode").val(),j=a("#_shipping_city").val()):f&&(g=f,h=a("#_billing_state").val(),i=a("#_billing_postcode").val(),j=a("#_billing_city").val());var k={action:"woocommerce_calc_line_taxes",order_id:woocommerce_admin_meta_boxes.post_id,items:a("table.woocommerce_order_items :input[name], .wc-order-totals-items :input[name]").serialize(),country:g,state:h,postcode:i,city:j,security:woocommerce_admin_meta_boxes.calc_totals_nonce};a.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:k,type:"POST",success:function(b){a("#woocommerce-order-items .inside").empty(),a("#woocommerce-order-items .inside").append(b),d(),c()}})}return!1}),a("body").on("change",".wc-order-refund-items #refund_amount",function(){var b=accounting.unformat(a(this).val(),woocommerce_admin.mon_decimal_point);a("button .wc-order-refund-amount .amount").text(accounting.formatMoney(b,{symbol:woocommerce_admin_meta_boxes.currency_format_symbol,decimal:woocommerce_admin_meta_boxes.currency_format_decimal_sep,thousand:woocommerce_admin_meta_boxes.currency_format_thousand_sep,precision:woocommerce_admin_meta_boxes.currency_format_num_decimals,format:woocommerce_admin_meta_boxes.currency_format}))}).on("click",".wc-order-refund-items button.do-api-refund, .wc-order-refund-items button.do-manual-refund",function(){if(b(),window.confirm(woocommerce_admin_meta_boxes.i18n_do_refund)){var d=a("input#refund_amount").val(),f=a("input#refund_reason").val(),g={},h={},i={};a(".refund input.refund_order_item_qty").each(function(b,c){a(c).closest("tr").data("order_item_id")&&c.value&&(g[a(c).closest("tr").data("order_item_id")]=c.value)}),a(".refund input.refund_line_total").each(function(b,c){a(c).closest("tr").data("order_item_id")&&(h[a(c).closest("tr").data("order_item_id")]=accounting.unformat(c.value,woocommerce_admin.mon_decimal_point))}),a(".refund input.refund_line_tax").each(function(b,c){if(a(c).closest("tr").data("order_item_id")){var d=a(c).data("tax_id");i[a(c).closest("tr").data("order_item_id")]||(i[a(c).closest("tr").data("order_item_id")]={}),i[a(c).closest("tr").data("order_item_id")][d]=accounting.unformat(c.value,woocommerce_admin.mon_decimal_point)}});var j={action:"woocommerce_refund_line_items",order_id:woocommerce_admin_meta_boxes.post_id,refund_amount:d,refund_reason:f,line_item_qtys:JSON.stringify(g,null,""),line_item_totals:JSON.stringify(h,null,""),line_item_tax_totals:JSON.stringify(i,null,""),api_refund:a(this).is(".do-api-refund"),restock_refunded_items:a("#restock_refunded_items:checked").size()?"true":"false",security:woocommerce_admin_meta_boxes.order_item_nonce};a.post(woocommerce_admin_meta_boxes.ajax_url,j,function(a){a===!0?e():a.error?(window.alert(a.error),c()):console.log(a)})}else c()}),a("body").on("wc_backbone_modal_response",function(e,f){if("#wc-modal-add-products"===f){var g=a("select#add_item_id").val();if(g){var h=g.length;b(),a.each(g,function(b,e){var f={action:"woocommerce_add_order_item",item_to_add:e,order_id:woocommerce_admin_meta_boxes.post_id,security:woocommerce_admin_meta_boxes.order_item_nonce};a.post(woocommerce_admin_meta_boxes.ajax_url,f,function(b){a("table.woocommerce_order_items tbody#order_line_items").append(b),--h||(a("select#add_item_id, #add_item_id_chosen .chosen-choices").css("border-color","").val(""),d(),a("select#add_item_id").trigger("chosen:updated"),c())})})}else a("select#add_item_id, #add_item_id_chosen .chosen-choices").css("border-color","red")}}),a("body").on("wc_backbone_modal_response",function(e,f){if("#wc-modal-add-tax"===f){var g=a("#manual_tax_rate_id").val(),h=a("input[name=add_order_tax]:checked").val();if(g&&(h=g),!h)return!1;var i=a(".order-tax-id").map(function(){return a(this).val()}).get();if(-1===a.inArray(h,i)){b();var j={action:"woocommerce_add_order_tax",rate_id:h,order_id:woocommerce_admin_meta_boxes.post_id,security:woocommerce_admin_meta_boxes.order_item_nonce};a.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:j,type:"POST",success:function(b){a("#woocommerce-order-items .inside").empty(),a("#woocommerce-order-items .inside").append(b),d(),c()}})}else window.alert(woocommerce_admin_meta_boxes.i18n_tax_rate_already_exists)}}),a("span.inline_total").closest(".totals_group").find("input").change(),a(".order_download_permissions").on("click","button.grant_access",function(){var b=a("select#grant_access_id").val();if(b){a(".order_download_permissions").block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});var c={action:"woocommerce_grant_access_to_download",product_ids:b,loop:a(".order_download_permissions .wc-metabox").size(),order_id:woocommerce_admin_meta_boxes.post_id,security:woocommerce_admin_meta_boxes.grant_access_nonce};return a.post(woocommerce_admin_meta_boxes.ajax_url,c,function(b){b?a(".order_download_permissions .wc-metaboxes").append(b):window.alert(woocommerce_admin_meta_boxes.i18n_download_permission_fail),a(".date-picker").datepicker({dateFormat:"yy-mm-dd",numberOfMonths:1,showButtonPanel:!0,showOn:"button",buttonImage:woocommerce_admin_meta_boxes.calendar_image,buttonImageOnly:!0}),a("#grant_access_id").val("").trigger("chosen:updated"),a(".order_download_permissions").unblock()}),!1}}).on("click","button.revoke_access",function(){if(window.confirm(woocommerce_admin_meta_boxes.i18n_permission_revoke)){var b=a(this).parent().parent(),c=a(this).attr("rel").split(",")[0],d=a(this).attr("rel").split(",")[1];if(c>0){a(b).block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});var e={action:"woocommerce_revoke_access_to_download",product_id:c,download_id:d,order_id:woocommerce_admin_meta_boxes.post_id,security:woocommerce_admin_meta_boxes.revoke_access_nonce};a.post(woocommerce_admin_meta_boxes.ajax_url,e,function(){a(b).fadeOut("300",function(){a(b).remove()})})}else a(b).fadeOut("300",function(){a(b).remove()})}return!1}),a("button.load_customer_billing").on("click",function(){if(window.confirm(woocommerce_admin_meta_boxes.load_billing)){var b=a("#customer_user").val();if(!b)return window.alert(woocommerce_admin_meta_boxes.no_customer_selected),!1;var c={user_id:b,type_to_load:"billing",action:"woocommerce_get_customer_details",security:woocommerce_admin_meta_boxes.get_customer_details_nonce};a(this).closest(".edit_address").block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}}),a.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:c,type:"POST",success:function(b){var c=b;c&&(a("input#_billing_first_name").val(c.billing_first_name),a("input#_billing_last_name").val(c.billing_last_name),a("input#_billing_company").val(c.billing_company),a("input#_billing_address_1").val(c.billing_address_1),a("input#_billing_address_2").val(c.billing_address_2),a("input#_billing_city").val(c.billing_city),a("input#_billing_postcode").val(c.billing_postcode),a("#_billing_country").val(c.billing_country),a("input#_billing_state").val(c.billing_state),a("input#_billing_email").val(c.billing_email),a("input#_billing_phone").val(c.billing_phone)),a(".edit_address").unblock()}})}return!1}),a("button.load_customer_shipping").on("click",function(){if(window.confirm(woocommerce_admin_meta_boxes.load_shipping)){var b=a("#customer_user").val();if(!b)return window.alert(woocommerce_admin_meta_boxes.no_customer_selected),!1;var c={user_id:b,type_to_load:"shipping",action:"woocommerce_get_customer_details",security:woocommerce_admin_meta_boxes.get_customer_details_nonce};a(this).closest(".edit_address").block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}}),a.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:c,type:"POST",success:function(b){var c=b;c&&(a("input#_shipping_first_name").val(c.shipping_first_name),a("input#_shipping_last_name").val(c.shipping_last_name),a("input#_shipping_company").val(c.shipping_company),a("input#_shipping_address_1").val(c.shipping_address_1),a("input#_shipping_address_2").val(c.shipping_address_2),a("input#_shipping_city").val(c.shipping_city),a("input#_shipping_postcode").val(c.shipping_postcode),a("#_shipping_country").val(c.shipping_country),a("input#_shipping_state").val(c.shipping_state)),a(".edit_address").unblock()}})}return!1}),a("button.billing-same-as-shipping").on("click",function(){return window.confirm(woocommerce_admin_meta_boxes.copy_billing)&&(a("input#_shipping_first_name").val(a("input#_billing_first_name").val()),a("input#_shipping_last_name").val(a("input#_billing_last_name").val()),a("input#_shipping_company").val(a("input#_billing_company").val()),a("input#_shipping_address_1").val(a("input#_billing_address_1").val()),a("input#_shipping_address_2").val(a("input#_billing_address_2").val()),a("input#_shipping_city").val(a("input#_billing_city").val()),a("input#_shipping_postcode").val(a("input#_billing_postcode").val()),a("#_shipping_country").val(a("#_billing_country").val()),a("input#_shipping_state").val(a("input#_billing_state").val())),!1}),a(".totals_group").on("click","a.add_total_row",function(){return a(this).closest(".totals_group").find(".total_rows").append(a(this).data("row")),!1}),a(".total_rows").on("click","a.delete_total_row",function(){var b=a(this).closest(".total_row"),c=b.attr("data-order_item_id");return c?b.append('').hide():b.remove(),!1}),a("#woocommerce-order-notes").on("click","a.add_note",function(){if(a("textarea#add_order_note").val()){a("#woocommerce-order-notes").block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});var b={action:"woocommerce_add_order_note",post_id:woocommerce_admin_meta_boxes.post_id,note:a("textarea#add_order_note").val(),note_type:a("select#order_note_type").val(),security:woocommerce_admin_meta_boxes.add_order_note_nonce};return a.post(woocommerce_admin_meta_boxes.ajax_url,b,function(b){a("ul.order_notes").prepend(b),a("#woocommerce-order-notes").unblock(),a("#add_order_note").val("")}),!1}}).on("click","a.delete_note",function(){var b=a(this).closest("li.note");a(b).block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});var c={action:"woocommerce_delete_order_note",note_id:a(b).attr("rel"),security:woocommerce_admin_meta_boxes.delete_order_note_nonce};return a.post(woocommerce_admin_meta_boxes.ajax_url,c,function(){a(b).remove()}),!1})}); \ No newline at end of file diff --git a/assets/js/admin/meta-boxes-product-variation.js b/assets/js/admin/meta-boxes-product-variation.js new file mode 100644 index 00000000000..c4ae2c69512 --- /dev/null +++ b/assets/js/admin/meta-boxes-product-variation.js @@ -0,0 +1,410 @@ +/* global wp, woocommerce_admin_meta_boxes_variations, woocommerce_admin, woocommerce_admin_meta_boxes, accounting */ +jQuery( function ( $ ) { + + var variation_sortable_options = { + items: '.woocommerce_variation', + cursor: 'move', + axis: 'y', + handle: 'h3', + scrollSensitivity: 40, + forcePlaceholderSize: true, + helper: 'clone', + opacity: 0.65, + placeholder: 'wc-metabox-sortable-placeholder', + start: function( event, ui ) { + ui.item.css( 'background-color', '#f6f6f6' ); + }, + stop: function ( event, ui ) { + ui.item.removeAttr( 'style' ); + variation_row_indexes(); + } + }; + + // Add a variation + $( '#variable_product_options' ).on( 'click', 'button.add_variation', function () { + + $('.woocommerce_variations').block({ + message: null, + overlayCSS: { + background: '#fff url(' + woocommerce_admin_meta_boxes_variations.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', + opacity: 0.6 + } + }); + + var loop = $('.woocommerce_variation').size(); + + var data = { + action: 'woocommerce_add_variation', + post_id: woocommerce_admin_meta_boxes_variations.post_id, + loop: loop, + security: woocommerce_admin_meta_boxes_variations.add_variation_nonce + }; + + $.post( woocommerce_admin_meta_boxes_variations.ajax_url, data, function ( response ) { + + $( '.woocommerce_variations' ).append( response ); + + $( '.tips' ).tipTip({ + 'attribute': 'data-tip', + 'fadeIn': 50, + 'fadeOut': 50 + }); + + $( 'input.variable_is_downloadable, input.variable_is_virtual, input.variable_manage_stock' ).change(); + + if ( ! $( 'input#_manage_stock' ).attr( 'checked' ) ) { + $( '.hide_if_parent_manage_stock_is_disabled' ).hide(); + } + + $( '.woocommerce_variations' ).unblock(); + $( '#variable_product_options' ).trigger( 'woocommerce_variations_added' ); + }); + + return false; + + }); + + $( 'input#_manage_stock' ).on( 'change', function () { + var fields = $( '.hide_if_parent_manage_stock_is_disabled' ); + + if ( $( this ).attr( 'checked' ) ) { + fields.show(); + $( 'input.variable_manage_stock' ).change(); + } else { + fields.hide(); + } + }).change(); + + $( '#variable_product_options').on( 'click', 'button.link_all_variations', function () { + + var answer = window.confirm( woocommerce_admin_meta_boxes_variations.i18n_link_all_variations ); + + if ( answer ) { + + $( '#variable_product_options' ).block({ + message: null, + overlayCSS: { + background: '#fff url(' + woocommerce_admin_meta_boxes_variations.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', + opacity: 0.6 + } + }); + + var data = { + action: 'woocommerce_link_all_variations', + post_id: woocommerce_admin_meta_boxes_variations.post_id, + security: woocommerce_admin_meta_boxes_variations.link_variation_nonce + }; + + $.post( woocommerce_admin_meta_boxes_variations.ajax_url, data, function ( response ) { + + var count = parseInt( response, 10 ); + + if ( 1 === count ) { + window.alert( count + ' ' + woocommerce_admin_meta_boxes_variations.i18n_variation_added ); + } else if ( 0 === count || count > 1 ) { + window.alert( count + ' ' + woocommerce_admin_meta_boxes_variations.i18n_variations_added ); + } else { + window.alert( woocommerce_admin_meta_boxes_variations.i18n_no_variations_added ); + } + + if ( count > 0 ) { + var this_page = window.location.toString(); + + this_page = this_page.replace( 'post-new.php?', 'post.php?post=' + woocommerce_admin_meta_boxes_variations.post_id + '&action=edit&' ); + + $( '#variable_product_options' ).load( this_page + ' #variable_product_options_inner', function () { + $( '#variable_product_options' ).unblock(); + $( '#variable_product_options' ).trigger( 'woocommerce_variations_added' ); + + $( '.tips' ).tipTip({ + 'attribute': 'data-tip', + 'fadeIn': 50, + 'fadeOut': 50 + }); + } ); + } else { + $( '#variable_product_options' ).unblock(); + } + }); + } + return false; + }); + + $( '#variable_product_options' ).on( 'click', 'button.remove_variation', function ( e ) { + e.preventDefault(); + var answer = window.confirm( woocommerce_admin_meta_boxes_variations.i18n_remove_variation ); + if ( answer ) { + + var el = $( this ).parent().parent(); + + var variation = $( this ).attr( 'rel' ); + + if ( variation > 0 ) { + + $( el ).block({ + message: null, + overlayCSS: { + background: '#fff url(' + woocommerce_admin_meta_boxes_variations.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', + opacity: 0.6 + } + }); + + var data = { + action: 'woocommerce_remove_variation', + variation_id: variation, + security: woocommerce_admin_meta_boxes_variations.delete_variation_nonce + }; + + $.post( woocommerce_admin_meta_boxes_variations.ajax_url, data, function ( response ) { + // Success + $( el ).fadeOut( '300', function () { + $( el ).remove(); + }); + }); + + } else { + $( el ).fadeOut( '300', function () { + $( el ).remove(); + }); + } + + } + return false; + }); + + $( '.wc-metaboxes-wrapper' ).on( 'click', 'a.bulk_edit', function ( event ) { + var bulk_edit = $( 'select#field_to_edit' ).val(), + checkbox, + answer, + value; + + switch ( bulk_edit ) { + case 'toggle_enabled' : + checkbox = $( 'input[name^="variable_enabled"]' ); + checkbox.attr('checked', ! checkbox.attr( 'checked' ) ); + break; + case 'toggle_downloadable' : + checkbox = $( 'input[name^="variable_is_downloadable"]' ); + checkbox.attr( 'checked', ! checkbox.attr( 'checked' ) ); + $('input.variable_is_downloadable').change(); + break; + case 'toggle_virtual' : + checkbox = $('input[name^="variable_is_virtual"]'); + checkbox.attr( 'checked', ! checkbox.attr( 'checked' ) ); + $( 'input.variable_is_virtual' ).change(); + break; + case 'toggle_manage_stock' : + checkbox = $('input[name^="variable_manage_stock"]'); + checkbox.attr( 'checked', ! checkbox.attr( 'checked' ) ); + $( 'input.variable_manage_stock' ).change(); + break; + case 'delete_all' : + answer = window.confirm( woocommerce_admin_meta_boxes_variations.i18n_delete_all_variations ); + + if ( answer ) { + + answer = window.confirm( woocommerce_admin_meta_boxes_variations.i18n_last_warning ); + + if ( answer ) { + + var variation_ids = []; + + $( '.woocommerce_variations .woocommerce_variation' ).block({ + message: null, + overlayCSS: { + background: '#fff url(' + woocommerce_admin_meta_boxes_variations.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', + opacity: 0.6 + } + }); + + $( '.woocommerce_variations .woocommerce_variation .remove_variation' ).each( function () { + + var variation = $( this ).attr( 'rel' ); + if ( variation > 0 ) { + variation_ids.push( variation ); + } + }); + + var data = { + action: 'woocommerce_remove_variations', + variation_ids: variation_ids, + security: woocommerce_admin_meta_boxes_variations.delete_variations_nonce + }; + + $.post( woocommerce_admin_meta_boxes_variations.ajax_url, data, function( response ) { + $( '.woocommerce_variations .woocommerce_variation' ).fadeOut( '300', function () { + $( '.woocommerce_variations .woocommerce_variation' ).remove(); + }); + }); + } + } + break; + case 'variable_regular_price_increase': + case 'variable_regular_price_decrease': + case 'variable_sale_price_increase': + case 'variable_sale_price_decrease': + var edit_field; + if ( bulk_edit.lastIndexOf( 'variable_regular_price', 0 ) === 0 ) { + edit_field = 'variable_regular_price'; + } else { + edit_field = 'variable_sale_price'; + } + + value = window.prompt( woocommerce_admin_meta_boxes_variations.i18n_enter_a_value_fixed_or_percent ).toString(); + + $( ':input[name^="' + edit_field + '"]' ).each( function() { + var current_value = accounting.unformat( $( this ).val(), woocommerce_admin.mon_decimal_point ), + new_value, + mod_value; + + if ( value.indexOf( '%' ) >= 0 ) { + mod_value = ( current_value / 100 ) * accounting.unformat( value.replace( /\%/, '' ), woocommerce_admin.mon_decimal_point ); + } else { + mod_value = accounting.unformat( value, woocommerce_admin.mon_decimal_point ); + } + + if ( bulk_edit.indexOf( 'increase' ) !== -1 ) { + new_value = current_value + mod_value; + } else { + new_value = current_value - mod_value; + } + + $( this ).val( accounting.formatNumber( + new_value, + woocommerce_admin_meta_boxes.currency_format_num_decimals, + woocommerce_admin_meta_boxes.currency_format_thousand_sep, + woocommerce_admin_meta_boxes.currency_format_decimal_sep + ) ).change(); + }); + break; + case 'variable_regular_price' : + case 'variable_sale_price' : + case 'variable_stock' : + case 'variable_weight' : + case 'variable_length' : + case 'variable_width' : + case 'variable_height' : + case 'variable_download_limit' : + case 'variable_download_expiry' : + value = window.prompt( woocommerce_admin_meta_boxes_variations.i18n_enter_a_value ); + + $( ':input[name^="' + bulk_edit + '"]').not('[name*="dates"]').val( value ).change(); + break; + default: + $( 'select#field_to_edit' ).trigger( bulk_edit ); + break; + + } + }); + + $( '#variable_product_options' ).on( 'change', 'input.variable_is_downloadable', function () { + $( this ).closest( '.woocommerce_variation' ).find( '.show_if_variation_downloadable' ).hide(); + + if ( $( this ).is( ':checked' ) ) { + $( this ).closest( '.woocommerce_variation' ).find( '.show_if_variation_downloadable' ).show(); + } + }); + + $( '#variable_product_options' ).on( 'change', 'input.variable_is_virtual', function () { + $( this ).closest( '.woocommerce_variation' ).find( '.hide_if_variation_virtual' ).show(); + + if ( $( this ).is( ':checked' ) ) { + $( this ).closest( '.woocommerce_variation' ).find( '.hide_if_variation_virtual' ).hide(); + } + }); + + $( '#variable_product_options' ).on( 'change', 'input.variable_manage_stock', function () { + $( this ).closest( '.woocommerce_variation' ).find( '.show_if_variation_manage_stock' ).hide(); + + if ( $( this ).is( ':checked' ) ) { + $( this ).closest( '.woocommerce_variation' ).find( '.show_if_variation_manage_stock' ).show(); + } + }); + + $( 'input.variable_is_downloadable, input.variable_is_virtual, input.variable_manage_stock' ).change(); + + // Ordering + $( '#variable_product_options' ).on( 'woocommerce_variations_added', function () { + $( '.woocommerce_variations' ).sortable( variation_sortable_options ); + } ); + + $( '.woocommerce_variations' ).sortable( variation_sortable_options ); + + function variation_row_indexes() { + $( '.woocommerce_variations .woocommerce_variation' ).each( function ( index, el ) { + $( '.variation_menu_order', el ).val( parseInt( $( el ).index( '.woocommerce_variations .woocommerce_variation' ), 10 ) ); + }); + } + + // Uploader + var variable_image_frame; + var setting_variation_image_id; + var setting_variation_image; + var wp_media_post_id = wp.media.model.settings.post.id; + + $( '#variable_product_options' ).on( 'click', '.upload_image_button', function ( event ) { + + var $button = $( this ); + var post_id = $button.attr( 'rel' ); + var $parent = $button.closest( '.upload_image' ); + setting_variation_image = $parent; + setting_variation_image_id = post_id; + + event.preventDefault(); + + if ( $button.is( '.remove' ) ) { + + setting_variation_image.find( '.upload_image_id' ).val( '' ); + setting_variation_image.find( 'img' ).eq( 0 ).attr( 'src', woocommerce_admin_meta_boxes_variations.woocommerce_placeholder_img_src ); + setting_variation_image.find( '.upload_image_button' ).removeClass( 'remove' ); + + } else { + + // If the media frame already exists, reopen it. + if ( variable_image_frame ) { + variable_image_frame.uploader.uploader.param( 'post_id', setting_variation_image_id ); + variable_image_frame.open(); + return; + } else { + wp.media.model.settings.post.id = setting_variation_image_id; + } + + // Create the media frame. + variable_image_frame = wp.media.frames.variable_image = wp.media({ + // Set the title of the modal. + title: woocommerce_admin_meta_boxes_variations.i18n_choose_image, + button: { + text: woocommerce_admin_meta_boxes_variations.i18n_set_image + }, + states : [ + new wp.media.controller.Library({ + title: woocommerce_admin_meta_boxes_variations.i18n_choose_image, + filterable : 'all' + }) + ] + }); + + // When an image is selected, run a callback. + variable_image_frame.on( 'select', function () { + + var attachment = variable_image_frame.state().get( 'selection' ).first().toJSON(), + url = attachment.sizes.thumbnail ? attachment.sizes.thumbnail.url : attachment.url; + + setting_variation_image.find( '.upload_image_id' ).val( attachment.id ); + setting_variation_image.find( '.upload_image_button' ).addClass( 'remove' ); + setting_variation_image.find( 'img' ).eq( 0 ).attr( 'src', url ); + + wp.media.model.settings.post.id = wp_media_post_id; + }); + + // Finally, open the modal. + variable_image_frame.open(); + } + }); + + // Restore ID + $( 'a.add_media' ).on(' click', function () { + wp.media.model.settings.post.id = wp_media_post_id; + }); + +}); diff --git a/assets/js/admin/meta-boxes-product-variation.min.js b/assets/js/admin/meta-boxes-product-variation.min.js new file mode 100644 index 00000000000..3698fe83f35 --- /dev/null +++ b/assets/js/admin/meta-boxes-product-variation.min.js @@ -0,0 +1 @@ +jQuery(function(a){function b(){a(".woocommerce_variations .woocommerce_variation").each(function(b,c){a(".variation_menu_order",c).val(parseInt(a(c).index(".woocommerce_variations .woocommerce_variation"),10))})}var c={items:".woocommerce_variation",cursor:"move",axis:"y",handle:"h3",scrollSensitivity:40,forcePlaceholderSize:!0,helper:"clone",opacity:.65,placeholder:"wc-metabox-sortable-placeholder",start:function(a,b){b.item.css("background-color","#f6f6f6")},stop:function(a,c){c.item.removeAttr("style"),b()}};a("#variable_product_options").on("click","button.add_variation",function(){a(".woocommerce_variations").block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes_variations.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});var b=a(".woocommerce_variation").size(),c={action:"woocommerce_add_variation",post_id:woocommerce_admin_meta_boxes_variations.post_id,loop:b,security:woocommerce_admin_meta_boxes_variations.add_variation_nonce};return a.post(woocommerce_admin_meta_boxes_variations.ajax_url,c,function(b){a(".woocommerce_variations").append(b),a(".tips").tipTip({attribute:"data-tip",fadeIn:50,fadeOut:50}),a("input.variable_is_downloadable, input.variable_is_virtual, input.variable_manage_stock").change(),a("input#_manage_stock").attr("checked")||a(".hide_if_parent_manage_stock_is_disabled").hide(),a(".woocommerce_variations").unblock(),a("#variable_product_options").trigger("woocommerce_variations_added")}),!1}),a("input#_manage_stock").on("change",function(){var b=a(".hide_if_parent_manage_stock_is_disabled");a(this).attr("checked")?(b.show(),a("input.variable_manage_stock").change()):b.hide()}).change(),a("#variable_product_options").on("click","button.link_all_variations",function(){var b=window.confirm(woocommerce_admin_meta_boxes_variations.i18n_link_all_variations);if(b){a("#variable_product_options").block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes_variations.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});var c={action:"woocommerce_link_all_variations",post_id:woocommerce_admin_meta_boxes_variations.post_id,security:woocommerce_admin_meta_boxes_variations.link_variation_nonce};a.post(woocommerce_admin_meta_boxes_variations.ajax_url,c,function(b){var c=parseInt(b,10);if(window.alert(1===c?c+" "+woocommerce_admin_meta_boxes_variations.i18n_variation_added:0===c||c>1?c+" "+woocommerce_admin_meta_boxes_variations.i18n_variations_added:woocommerce_admin_meta_boxes_variations.i18n_no_variations_added),c>0){var d=window.location.toString();d=d.replace("post-new.php?","post.php?post="+woocommerce_admin_meta_boxes_variations.post_id+"&action=edit&"),a("#variable_product_options").load(d+" #variable_product_options_inner",function(){a("#variable_product_options").unblock(),a("#variable_product_options").trigger("woocommerce_variations_added"),a(".tips").tipTip({attribute:"data-tip",fadeIn:50,fadeOut:50})})}else a("#variable_product_options").unblock()})}return!1}),a("#variable_product_options").on("click","button.remove_variation",function(b){b.preventDefault();var c=window.confirm(woocommerce_admin_meta_boxes_variations.i18n_remove_variation);if(c){var d=a(this).parent().parent(),e=a(this).attr("rel");if(e>0){a(d).block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes_variations.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});var f={action:"woocommerce_remove_variation",variation_id:e,security:woocommerce_admin_meta_boxes_variations.delete_variation_nonce};a.post(woocommerce_admin_meta_boxes_variations.ajax_url,f,function(){a(d).fadeOut("300",function(){a(d).remove()})})}else a(d).fadeOut("300",function(){a(d).remove()})}return!1}),a(".wc-metaboxes-wrapper").on("click","a.bulk_edit",function(){var b,c,d,e=a("select#field_to_edit").val();switch(e){case"toggle_enabled":b=a('input[name^="variable_enabled"]'),b.attr("checked",!b.attr("checked"));break;case"toggle_downloadable":b=a('input[name^="variable_is_downloadable"]'),b.attr("checked",!b.attr("checked")),a("input.variable_is_downloadable").change();break;case"toggle_virtual":b=a('input[name^="variable_is_virtual"]'),b.attr("checked",!b.attr("checked")),a("input.variable_is_virtual").change();break;case"toggle_manage_stock":b=a('input[name^="variable_manage_stock"]'),b.attr("checked",!b.attr("checked")),a("input.variable_manage_stock").change();break;case"delete_all":if(c=window.confirm(woocommerce_admin_meta_boxes_variations.i18n_delete_all_variations),c&&(c=window.confirm(woocommerce_admin_meta_boxes_variations.i18n_last_warning))){var f=[];a(".woocommerce_variations .woocommerce_variation").block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes_variations.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}}),a(".woocommerce_variations .woocommerce_variation .remove_variation").each(function(){var b=a(this).attr("rel");b>0&&f.push(b)});var g={action:"woocommerce_remove_variations",variation_ids:f,security:woocommerce_admin_meta_boxes_variations.delete_variations_nonce};a.post(woocommerce_admin_meta_boxes_variations.ajax_url,g,function(){a(".woocommerce_variations .woocommerce_variation").fadeOut("300",function(){a(".woocommerce_variations .woocommerce_variation").remove()})})}break;case"variable_regular_price_increase":case"variable_regular_price_decrease":case"variable_sale_price_increase":case"variable_sale_price_decrease":var h;h=0===e.lastIndexOf("variable_regular_price",0)?"variable_regular_price":"variable_sale_price",d=window.prompt(woocommerce_admin_meta_boxes_variations.i18n_enter_a_value_fixed_or_percent).toString(),a(':input[name^="'+h+'"]').each(function(){var b,c,f=accounting.unformat(a(this).val(),woocommerce_admin.mon_decimal_point);c=d.indexOf("%")>=0?f/100*accounting.unformat(d.replace(/\%/,""),woocommerce_admin.mon_decimal_point):accounting.unformat(d,woocommerce_admin.mon_decimal_point),b=-1!==e.indexOf("increase")?f+c:f-c,a(this).val(accounting.formatNumber(b,woocommerce_admin_meta_boxes.currency_format_num_decimals,woocommerce_admin_meta_boxes.currency_format_thousand_sep,woocommerce_admin_meta_boxes.currency_format_decimal_sep)).change()});break;case"variable_regular_price":case"variable_sale_price":case"variable_stock":case"variable_weight":case"variable_length":case"variable_width":case"variable_height":case"variable_download_limit":case"variable_download_expiry":d=window.prompt(woocommerce_admin_meta_boxes_variations.i18n_enter_a_value),a(':input[name^="'+e+'"]').not('[name*="dates"]').val(d).change();break;default:a("select#field_to_edit").trigger(e)}}),a("#variable_product_options").on("change","input.variable_is_downloadable",function(){a(this).closest(".woocommerce_variation").find(".show_if_variation_downloadable").hide(),a(this).is(":checked")&&a(this).closest(".woocommerce_variation").find(".show_if_variation_downloadable").show()}),a("#variable_product_options").on("change","input.variable_is_virtual",function(){a(this).closest(".woocommerce_variation").find(".hide_if_variation_virtual").show(),a(this).is(":checked")&&a(this).closest(".woocommerce_variation").find(".hide_if_variation_virtual").hide()}),a("#variable_product_options").on("change","input.variable_manage_stock",function(){a(this).closest(".woocommerce_variation").find(".show_if_variation_manage_stock").hide(),a(this).is(":checked")&&a(this).closest(".woocommerce_variation").find(".show_if_variation_manage_stock").show()}),a("input.variable_is_downloadable, input.variable_is_virtual, input.variable_manage_stock").change(),a("#variable_product_options").on("woocommerce_variations_added",function(){a(".woocommerce_variations").sortable(c)}),a(".woocommerce_variations").sortable(c);var d,e,f,g=wp.media.model.settings.post.id;a("#variable_product_options").on("click",".upload_image_button",function(b){var c=a(this),h=c.attr("rel"),i=c.closest(".upload_image");if(f=i,e=h,b.preventDefault(),c.is(".remove"))f.find(".upload_image_id").val(""),f.find("img").eq(0).attr("src",woocommerce_admin_meta_boxes_variations.woocommerce_placeholder_img_src),f.find(".upload_image_button").removeClass("remove");else{if(d)return d.uploader.uploader.param("post_id",e),void d.open();wp.media.model.settings.post.id=e,d=wp.media.frames.variable_image=wp.media({title:woocommerce_admin_meta_boxes_variations.i18n_choose_image,button:{text:woocommerce_admin_meta_boxes_variations.i18n_set_image},states:[new wp.media.controller.Library({title:woocommerce_admin_meta_boxes_variations.i18n_choose_image,filterable:"all"})]}),d.on("select",function(){var a=d.state().get("selection").first().toJSON(),b=a.sizes.thumbnail?a.sizes.thumbnail.url:a.url;f.find(".upload_image_id").val(a.id),f.find(".upload_image_button").addClass("remove"),f.find("img").eq(0).attr("src",b),wp.media.model.settings.post.id=g}),d.open()}}),a("a.add_media").on(" click",function(){wp.media.model.settings.post.id=g})}); \ No newline at end of file diff --git a/assets/js/admin/meta-boxes-product.js b/assets/js/admin/meta-boxes-product.js new file mode 100644 index 00000000000..d2746aad4e1 --- /dev/null +++ b/assets/js/admin/meta-boxes-product.js @@ -0,0 +1,652 @@ +/*global woocommerce_admin_meta_boxes */ +jQuery( function( $ ){ + + // Scroll to first checked category - https://github.com/scribu/wp-category-checklist-tree/blob/d1c3c1f449e1144542efa17dde84a9f52ade1739/category-checklist-tree.php + $(function(){ + $('[id$="-all"] > ul.categorychecklist').each(function() { + var $list = $(this); + var $firstChecked = $list.find(':checked').first(); + + if ( !$firstChecked.length ) + return; + + var pos_first = $list.find('input').position().top; + var pos_checked = $firstChecked.position().top; + + $list.closest('.tabs-panel').scrollTop(pos_checked - pos_first + 5); + }); + }); + + // Prevent enter submitting post form + $("#upsell_product_data").bind("keypress", function(e) { + if (e.keyCode == 13) return false; + }); + + // Type box + $('.type_box').appendTo( '#woocommerce-product-data h3.hndle span' ); + + $(function(){ + // Prevent inputs in meta box headings opening/closing contents + $('#woocommerce-product-data h3.hndle').unbind('click.postboxes'); + + jQuery('#woocommerce-product-data').on('click', 'h3.hndle', function(event){ + + // If the user clicks on some form input inside the h3 the box should not be toggled + if ( $(event.target).filter('input, option, label, select').length ) + return; + + $('#woocommerce-product-data').toggleClass('closed'); + }); + }); + + // Catalog Visibility + $('#catalog-visibility .edit-catalog-visibility').click(function () { + if ($('#catalog-visibility-select').is(":hidden")) { + $('#catalog-visibility-select').slideDown('fast'); + $(this).hide(); + } + return false; + }); + $('#catalog-visibility .save-post-visibility').click(function () { + $('#catalog-visibility-select').slideUp('fast'); + $('#catalog-visibility .edit-catalog-visibility').show(); + + var value = $('input[name=_visibility]:checked').val(); + var label = $('input[name=_visibility]:checked').attr('data-label'); + + if ( $('input[name=_featured]').is(':checked') ) { + label = label + ', ' + woocommerce_admin_meta_boxes.featured_label + $('input[name=_featured]').attr('checked', 'checked'); + } + + $('#catalog-visibility-display').text( label ); + return false; + }); + $('#catalog-visibility .cancel-post-visibility').click(function () { + $('#catalog-visibility-select').slideUp('fast'); + $('#catalog-visibility .edit-catalog-visibility').show(); + + var current_visibility = $('#current_visibility').val(); + var current_featured = $('#current_featured').val(); + + $('input[name=_visibility]').removeAttr('checked'); + $('input[name=_visibility][value=' + current_visibility + ']').attr('checked', 'checked'); + + var label = $('input[name=_visibility]:checked').attr('data-label'); + + if ( current_featured == 'yes' ) { + label = label + ', ' + woocommerce_admin_meta_boxes.featured_label + $('input[name=_featured]').attr('checked', 'checked'); + } else { + $('input[name=_featured]').removeAttr('checked'); + } + + $('#catalog-visibility-display').text( label ); + return false; + }); + + // PRODUCT TYPE SPECIFIC OPTIONS + $( 'select#product-type' ).change( function () { + + // Get value + var select_val = $( this ).val(); + + if ( 'variable' === select_val ) { + $( 'input#_manage_stock' ).change(); + $( 'input#_downloadable' ).prop( 'checked', false ); + $( 'input#_virtual' ).removeAttr( 'checked' ); + } else if ( 'grouped' === select_val ) { + $( 'input#_downloadable' ).prop( 'checked', false ); + $( 'input#_virtual' ).removeAttr( 'checked' ); + } else if ( 'external' === select_val ) { + $( 'input#_downloadable' ).prop( 'checked', false ); + $( 'input#_virtual' ).removeAttr( 'checked' ); + } + + show_and_hide_panels(); + + $( 'ul.wc-tabs li:visible' ).eq(0).find( 'a' ).click(); + + $( 'body' ).trigger( 'woocommerce-product-type-change', select_val, $( this ) ); + + }).change(); + + $( 'body' ).on( 'woocommerce-product-type-change', function( e, select_val ) { + if ( 'variable' !== select_val && 0 < $( '#variable_product_options input[name^=variable_sku]' ).length && $( 'body' ).triggerHandler( 'woocommerce-display-product-type-alert', select_val ) !== false ) { + window.alert( woocommerce_admin_meta_boxes.i18n_product_type_alert ); + } + }); + + $('input#_downloadable, input#_virtual').change(function(){ + show_and_hide_panels(); + }); + + function show_and_hide_panels() { + var product_type = $('select#product-type').val(); + var is_virtual = $('input#_virtual:checked').size(); + var is_downloadable = $('input#_downloadable:checked').size(); + + // Hide/Show all with rules + var hide_classes = '.hide_if_downloadable, .hide_if_virtual'; + var show_classes = '.show_if_downloadable, .show_if_virtual, .show_if_external'; + + $.each( woocommerce_admin_meta_boxes.product_types, function( index, value ) { + hide_classes = hide_classes + ', .hide_if_' + value; + show_classes = show_classes + ', .show_if_' + value; + } ); + + $( hide_classes ).show(); + $( show_classes ).hide(); + + // Shows rules + if ( is_downloadable ) { + $('.show_if_downloadable').show(); + } + if ( is_virtual ) { + $('.show_if_virtual').show(); + } + + $('.show_if_' + product_type).show(); + + // Hide rules + if ( is_downloadable ) { + $('.hide_if_downloadable').hide(); + } + if ( is_virtual ) { + $('.hide_if_virtual').hide(); + } + + $('.hide_if_' + product_type).hide(); + + $('input#_manage_stock').change(); + } + + + // Sale price schedule + $('.sale_price_dates_fields').each(function() { + + var $these_sale_dates = $(this); + var sale_schedule_set = false; + var $wrap = $these_sale_dates.closest( 'div, table' ); + + $these_sale_dates.find('input').each(function(){ + if ( $(this).val() != '' ) + sale_schedule_set = true; + }); + + if ( sale_schedule_set ) { + + $wrap.find('.sale_schedule').hide(); + $wrap.find('.sale_price_dates_fields').show(); + + } else { + + $wrap.find('.sale_schedule').show(); + $wrap.find('.sale_price_dates_fields').hide(); + + } + + }); + + $('#woocommerce-product-data').on( 'click', '.sale_schedule', function() { + var $wrap = $(this).closest( 'div, table' ); + + $(this).hide(); + $wrap.find('.cancel_sale_schedule').show(); + $wrap.find('.sale_price_dates_fields').show(); + + return false; + }); + $('#woocommerce-product-data').on( 'click', '.cancel_sale_schedule', function() { + var $wrap = $(this).closest( 'div, table' ); + + $(this).hide(); + $wrap.find('.sale_schedule').show(); + $wrap.find('.sale_price_dates_fields').hide(); + $wrap.find('.sale_price_dates_fields').find('input').val(''); + + return false; + }); + + // File inputs + $('#woocommerce-product-data').on('click','.downloadable_files a.insert',function(){ + $(this).closest('.downloadable_files').find('tbody').append( $(this).data( 'row' ) ); + return false; + }); + $('#woocommerce-product-data').on('click','.downloadable_files a.delete',function(){ + $(this).closest('tr').remove(); + return false; + }); + + + // STOCK OPTIONS + $('input#_manage_stock').change(function(){ + if ( $(this).is(':checked') ) { + $('div.stock_fields').show(); + } else { + $('div.stock_fields').hide(); + } + }).change(); + + + // DATE PICKER FIELDS + var dates = $( ".sale_price_dates_fields input" ).datepicker({ + defaultDate: "", + dateFormat: "yy-mm-dd", + numberOfMonths: 1, + showButtonPanel: true, + showOn: "button", + buttonImage: woocommerce_admin_meta_boxes.calendar_image, + buttonImageOnly: true, + onSelect: function( selectedDate ) { + var option = $(this).is('#_sale_price_dates_from, .sale_price_dates_from') ? "minDate" : "maxDate"; + + var instance = $( this ).data( "datepicker" ), + date = $.datepicker.parseDate( + instance.settings.dateFormat || + $.datepicker._defaults.dateFormat, + selectedDate, instance.settings ); + dates.not( this ).datepicker( "option", option, date ); + } + }); + + // ATTRIBUTE TABLES + + // Multiselect attributes + $(".product_attributes select.multiselect").chosen(); + + // Initial order + var woocommerce_attribute_items = $('.product_attributes').find('.woocommerce_attribute').get(); + + woocommerce_attribute_items.sort(function(a, b) { + var compA = parseInt($(a).attr('rel')); + var compB = parseInt($(b).attr('rel')); + return (compA < compB) ? -1 : (compA > compB) ? 1 : 0; + }) + $(woocommerce_attribute_items).each( function(idx, itm) { $('.product_attributes').append(itm); } ); + + function attribute_row_indexes() { + $('.product_attributes .woocommerce_attribute').each(function(index, el){ + $('.attribute_position', el).val( parseInt( $(el).index('.product_attributes .woocommerce_attribute') ) ); + }); + }; + + // Add rows + $('button.add_attribute').on('click', function(){ + + var size = $('.product_attributes .woocommerce_attribute').size(); + + var attribute_type = $('select.attribute_taxonomy').val(); + + if (!attribute_type) { + + var product_type = $('select#product-type').val(); + if (product_type!='variable') enable_variation = 'style="display:none;"'; else enable_variation = ''; + + // Add custom attribute row + $('.product_attributes').append('
\ +

\ + \ +
\ + \ +

\ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ +
\ + \ + \ + \ + \ + \ + \ + \ +
\ + \ +
\ +
\ + \ +
\ +
\ +
'); + + } else { + + // Reveal taxonomy row + var thisrow = $('.product_attributes .woocommerce_attribute.' + attribute_type); + $('.product_attributes').append( $(thisrow) ); + $(thisrow).show().find('.woocommerce_attribute_data').show(); + attribute_row_indexes(); + + } + + $('select.attribute_taxonomy').val(''); + }); + + $('.product_attributes').on('blur', 'input.attribute_name', function(){ + $(this).closest('.woocommerce_attribute').find('strong.attribute_name').text( $(this).val() ); + }); + + $('.product_attributes').on('click', 'button.select_all_attributes', function(){ + $(this).closest('td').find('select option').attr("selected","selected"); + $(this).closest('td').find('select').trigger("chosen:updated"); + return false; + }); + + $('.product_attributes').on('click', 'button.select_no_attributes', function(){ + $(this).closest('td').find('select option').removeAttr("selected"); + $(this).closest('td').find('select').trigger("chosen:updated"); + return false; + }); + + $('.product_attributes').on('click', 'button.remove_row', function() { + var answer = confirm(woocommerce_admin_meta_boxes.remove_attribute); + if (answer){ + var $parent = $(this).parent().parent(); + + if ($parent.is('.taxonomy')) { + $parent.find('select, input[type=text]').val(''); + $parent.hide(); + } else { + $parent.find('select, input[type=text]').val(''); + $parent.hide(); + attribute_row_indexes(); + } + } + return false; + }); + + // Attribute ordering + $('.product_attributes').sortable({ + items:'.woocommerce_attribute', + cursor:'move', + axis:'y', + handle: 'h3', + scrollSensitivity:40, + forcePlaceholderSize: true, + helper: 'clone', + opacity: 0.65, + placeholder: 'wc-metabox-sortable-placeholder', + start:function(event,ui){ + ui.item.css('background-color','#f6f6f6'); + }, + stop:function(event,ui){ + ui.item.removeAttr('style'); + attribute_row_indexes(); + } + }); + + // Add a new attribute (via ajax) + $('.product_attributes').on('click', 'button.add_new_attribute', function() { + + $('.product_attributes').block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', opacity: 0.6 } }); + + var attribute = $(this).attr('data-attribute'); + var $wrapper = $(this).closest('.woocommerce_attribute_data'); + var new_attribute_name = prompt( woocommerce_admin_meta_boxes.new_attribute_prompt ); + + if ( new_attribute_name ) { + + var data = { + action: 'woocommerce_add_new_attribute', + taxonomy: attribute, + term: new_attribute_name, + security: woocommerce_admin_meta_boxes.add_attribute_nonce + }; + + $.post( woocommerce_admin_meta_boxes.ajax_url, data, function( response ) { + + if ( response.error ) { + // Error + alert( response.error ); + } else if ( response.slug ) { + // Success + $wrapper.find('select.attribute_values').append(''); + $wrapper.find('select.attribute_values').trigger("chosen:updated"); + } + + $('.product_attributes').unblock(); + + }); + + } else { + $('.product_attributes').unblock(); + } + + return false; + + }); + + // Save attributes and update variations + $('.save_attributes').on('click', function(){ + + $('.product_attributes').block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', opacity: 0.6 } }); + + var data = { + post_id: woocommerce_admin_meta_boxes.post_id, + data: $('.product_attributes').find('input, select, textarea').serialize(), + action: 'woocommerce_save_attributes', + security: woocommerce_admin_meta_boxes.save_attributes_nonce + }; + + $.post( woocommerce_admin_meta_boxes.ajax_url, data, function( response ) { + + var this_page = window.location.toString(); + + this_page = this_page.replace( 'post-new.php?', 'post.php?post=' + woocommerce_admin_meta_boxes.post_id + '&action=edit&' ); + + // Load variations panel + $('#variable_product_options').block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', opacity: 0.6 } }); + $('#variable_product_options').load( this_page + ' #variable_product_options_inner', function() { + $('#variable_product_options').unblock(); + } ); + + $('.product_attributes').unblock(); + + }); + + }); + + // Uploading files + var downloadable_file_frame; + var file_path_field; + + jQuery(document).on( 'click', '.upload_file_button', function( event ){ + + var $el = $(this); + + file_path_field = $el.closest('tr').find('td.file_url input'); + + event.preventDefault(); + + // If the media frame already exists, reopen it. + if ( downloadable_file_frame ) { + downloadable_file_frame.open(); + return; + } + + var downloadable_file_states = [ + // Main states. + new wp.media.controller.Library({ + library: wp.media.query(), + multiple: true, + title: $el.data('choose'), + priority: 20, + filterable: 'uploaded', + }) + ]; + + // Create the media frame. + downloadable_file_frame = wp.media.frames.downloadable_file = wp.media({ + // Set the title of the modal. + title: $el.data('choose'), + library: { + type: '' + }, + button: { + text: $el.data('update'), + }, + multiple: true, + states: downloadable_file_states, + }); + + // When an image is selected, run a callback. + downloadable_file_frame.on( 'select', function() { + + var file_path = ''; + var selection = downloadable_file_frame.state().get('selection'); + + selection.map( function( attachment ) { + + attachment = attachment.toJSON(); + + if ( attachment.url ) + file_path = attachment.url + + } ); + + file_path_field.val( file_path ); + }); + + // Set post to 0 and set our custom type + downloadable_file_frame.on( 'ready', function() { + downloadable_file_frame.uploader.options.uploader.params = { + type: 'downloadable_product' + }; + }); + + // Finally, open the modal. + downloadable_file_frame.open(); + }); + + // Download ordering + jQuery('.downloadable_files tbody').sortable({ + items:'tr', + cursor:'move', + axis:'y', + handle: 'td.sort', + scrollSensitivity:40, + forcePlaceholderSize: true, + helper: 'clone', + opacity: 0.65, + }); + + // Product gallery file uploads + var product_gallery_frame; + var $image_gallery_ids = $('#product_image_gallery'); + var $product_images = $('#product_images_container ul.product_images'); + + jQuery('.add_product_images').on( 'click', 'a', function( event ) { + var $el = $(this); + var attachment_ids = $image_gallery_ids.val(); + + event.preventDefault(); + + // If the media frame already exists, reopen it. + if ( product_gallery_frame ) { + product_gallery_frame.open(); + return; + } + + // Create the media frame. + product_gallery_frame = wp.media.frames.product_gallery = wp.media({ + // Set the title of the modal. + title: $el.data('choose'), + button: { + text: $el.data('update'), + }, + states : [ + new wp.media.controller.Library({ + title: $el.data('choose'), + filterable : 'all', + multiple: true, + }) + ] + }); + + // When an image is selected, run a callback. + product_gallery_frame.on( 'select', function() { + + var selection = product_gallery_frame.state().get('selection'); + + selection.map( function( attachment ) { + + attachment = attachment.toJSON(); + + if ( attachment.id ) { + attachment_ids = attachment_ids ? attachment_ids + "," + attachment.id : attachment.id; + + $product_images.append('\ +
  • \ + \ + \ +
  • '); + } + + }); + + $image_gallery_ids.val( attachment_ids ); + }); + + // Finally, open the modal. + product_gallery_frame.open(); + }); + + // Image ordering + $product_images.sortable({ + items: 'li.image', + cursor: 'move', + scrollSensitivity:40, + forcePlaceholderSize: true, + forceHelperSize: false, + helper: 'clone', + opacity: 0.65, + placeholder: 'wc-metabox-sortable-placeholder', + start:function(event,ui){ + ui.item.css('background-color','#f6f6f6'); + }, + stop:function(event,ui){ + ui.item.removeAttr('style'); + }, + update: function(event, ui) { + var attachment_ids = ''; + + $('#product_images_container ul li.image').css('cursor','default').each(function() { + var attachment_id = jQuery(this).attr( 'data-attachment_id' ); + attachment_ids = attachment_ids + attachment_id + ','; + }); + + $image_gallery_ids.val( attachment_ids ); + } + }); + + // Remove images + $('#product_images_container').on( 'click', 'a.delete', function() { + $(this).closest('li.image').remove(); + + var attachment_ids = ''; + + $('#product_images_container ul li.image').css('cursor','default').each(function() { + var attachment_id = jQuery(this).attr( 'data-attachment_id' ); + attachment_ids = attachment_ids + attachment_id + ','; + }); + + $image_gallery_ids.val( attachment_ids ); + + runTipTip(); + + return false; + }); +}); diff --git a/assets/js/admin/meta-boxes-product.min.js b/assets/js/admin/meta-boxes-product.min.js new file mode 100644 index 00000000000..202430c0bd9 --- /dev/null +++ b/assets/js/admin/meta-boxes-product.min.js @@ -0,0 +1 @@ +jQuery(function(a){function b(){var b=a("select#product-type").val(),c=a("input#_virtual:checked").size(),d=a("input#_downloadable:checked").size(),e=".hide_if_downloadable, .hide_if_virtual",f=".show_if_downloadable, .show_if_virtual, .show_if_external";a.each(woocommerce_admin_meta_boxes.product_types,function(a,b){e=e+", .hide_if_"+b,f=f+", .show_if_"+b}),a(e).show(),a(f).hide(),d&&a(".show_if_downloadable").show(),c&&a(".show_if_virtual").show(),a(".show_if_"+b).show(),d&&a(".hide_if_downloadable").hide(),c&&a(".hide_if_virtual").hide(),a(".hide_if_"+b).hide(),a("input#_manage_stock").change()}function c(){a(".product_attributes .woocommerce_attribute").each(function(b,c){a(".attribute_position",c).val(parseInt(a(c).index(".product_attributes .woocommerce_attribute")))})}a(function(){a('[id$="-all"] > ul.categorychecklist').each(function(){var b=a(this),c=b.find(":checked").first();if(c.length){var d=b.find("input").position().top,e=c.position().top;b.closest(".tabs-panel").scrollTop(e-d+5)}})}),a("#upsell_product_data").bind("keypress",function(a){return 13==a.keyCode?!1:void 0}),a(".type_box").appendTo("#woocommerce-product-data h3.hndle span"),a(function(){a("#woocommerce-product-data h3.hndle").unbind("click.postboxes"),jQuery("#woocommerce-product-data").on("click","h3.hndle",function(b){a(b.target).filter("input, option, label, select").length||a("#woocommerce-product-data").toggleClass("closed")})}),a("#catalog-visibility .edit-catalog-visibility").click(function(){return a("#catalog-visibility-select").is(":hidden")&&(a("#catalog-visibility-select").slideDown("fast"),a(this).hide()),!1}),a("#catalog-visibility .save-post-visibility").click(function(){a("#catalog-visibility-select").slideUp("fast"),a("#catalog-visibility .edit-catalog-visibility").show();var b=(a("input[name=_visibility]:checked").val(),a("input[name=_visibility]:checked").attr("data-label"));return a("input[name=_featured]").is(":checked")&&(b=b+", "+woocommerce_admin_meta_boxes.featured_label,a("input[name=_featured]").attr("checked","checked")),a("#catalog-visibility-display").text(b),!1}),a("#catalog-visibility .cancel-post-visibility").click(function(){a("#catalog-visibility-select").slideUp("fast"),a("#catalog-visibility .edit-catalog-visibility").show();var b=a("#current_visibility").val(),c=a("#current_featured").val();a("input[name=_visibility]").removeAttr("checked"),a("input[name=_visibility][value="+b+"]").attr("checked","checked");var d=a("input[name=_visibility]:checked").attr("data-label");return"yes"==c?(d=d+", "+woocommerce_admin_meta_boxes.featured_label,a("input[name=_featured]").attr("checked","checked")):a("input[name=_featured]").removeAttr("checked"),a("#catalog-visibility-display").text(d),!1}),a("select#product-type").change(function(){var c=a(this).val();"variable"===c?(a("input#_manage_stock").change(),a("input#_downloadable").prop("checked",!1),a("input#_virtual").removeAttr("checked")):"grouped"===c?(a("input#_downloadable").prop("checked",!1),a("input#_virtual").removeAttr("checked")):"external"===c&&(a("input#_downloadable").prop("checked",!1),a("input#_virtual").removeAttr("checked")),b(),a("ul.wc-tabs li:visible").eq(0).find("a").click(),a("body").trigger("woocommerce-product-type-change",c,a(this))}).change(),a("body").on("woocommerce-product-type-change",function(b,c){"variable"!==c&&0d?-1:d>e?1:0}),a(e).each(function(b,c){a(".product_attributes").append(c)}),a("button.add_attribute").on("click",function(){var b=a(".product_attributes .woocommerce_attribute").size(),d=a("select.attribute_taxonomy").val();if(d){var e=a(".product_attributes .woocommerce_attribute."+d);a(".product_attributes").append(a(e)),a(e).show().find(".woocommerce_attribute_data").show(),c()}else{var f=a("select#product-type").val();enable_variation="variable"!=f?'style="display:none;"':"",a(".product_attributes").append('

    ")}a("select.attribute_taxonomy").val("")}),a(".product_attributes").on("blur","input.attribute_name",function(){a(this).closest(".woocommerce_attribute").find("strong.attribute_name").text(a(this).val())}),a(".product_attributes").on("click","button.select_all_attributes",function(){return a(this).closest("td").find("select option").attr("selected","selected"),a(this).closest("td").find("select").trigger("chosen:updated"),!1}),a(".product_attributes").on("click","button.select_no_attributes",function(){return a(this).closest("td").find("select option").removeAttr("selected"),a(this).closest("td").find("select").trigger("chosen:updated"),!1}),a(".product_attributes").on("click","button.remove_row",function(){var b=confirm(woocommerce_admin_meta_boxes.remove_attribute);if(b){var d=a(this).parent().parent();d.is(".taxonomy")?(d.find("select, input[type=text]").val(""),d.hide()):(d.find("select, input[type=text]").val(""),d.hide(),c())}return!1}),a(".product_attributes").sortable({items:".woocommerce_attribute",cursor:"move",axis:"y",handle:"h3",scrollSensitivity:40,forcePlaceholderSize:!0,helper:"clone",opacity:.65,placeholder:"wc-metabox-sortable-placeholder",start:function(a,b){b.item.css("background-color","#f6f6f6")},stop:function(a,b){b.item.removeAttr("style"),c()}}),a(".product_attributes").on("click","button.add_new_attribute",function(){a(".product_attributes").block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});var b=a(this).attr("data-attribute"),c=a(this).closest(".woocommerce_attribute_data"),d=prompt(woocommerce_admin_meta_boxes.new_attribute_prompt);if(d){var e={action:"woocommerce_add_new_attribute",taxonomy:b,term:d,security:woocommerce_admin_meta_boxes.add_attribute_nonce};a.post(woocommerce_admin_meta_boxes.ajax_url,e,function(b){b.error?alert(b.error):b.slug&&(c.find("select.attribute_values").append('"),c.find("select.attribute_values").trigger("chosen:updated")),a(".product_attributes").unblock()})}else a(".product_attributes").unblock();return!1}),a(".save_attributes").on("click",function(){a(".product_attributes").block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});var b={post_id:woocommerce_admin_meta_boxes.post_id,data:a(".product_attributes").find("input, select, textarea").serialize(),action:"woocommerce_save_attributes",security:woocommerce_admin_meta_boxes.save_attributes_nonce};a.post(woocommerce_admin_meta_boxes.ajax_url,b,function(){var b=window.location.toString();b=b.replace("post-new.php?","post.php?post="+woocommerce_admin_meta_boxes.post_id+"&action=edit&"),a("#variable_product_options").block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}}),a("#variable_product_options").load(b+" #variable_product_options_inner",function(){a("#variable_product_options").unblock()}),a(".product_attributes").unblock()})});var f,g;jQuery(document).on("click",".upload_file_button",function(b){var c=a(this);if(g=c.closest("tr").find("td.file_url input"),b.preventDefault(),f)return void f.open();var d=[new wp.media.controller.Library({library:wp.media.query(),multiple:!0,title:c.data("choose"),priority:20,filterable:"uploaded"})];f=wp.media.frames.downloadable_file=wp.media({title:c.data("choose"),library:{type:""},button:{text:c.data("update")},multiple:!0,states:d}),f.on("select",function(){var a="",b=f.state().get("selection");b.map(function(b){b=b.toJSON(),b.url&&(a=b.url)}),g.val(a)}),f.on("ready",function(){f.uploader.options.uploader.params={type:"downloadable_product"}}),f.open()}),jQuery(".downloadable_files tbody").sortable({items:"tr",cursor:"move",axis:"y",handle:"td.sort",scrollSensitivity:40,forcePlaceholderSize:!0,helper:"clone",opacity:.65});var h,i=a("#product_image_gallery"),j=a("#product_images_container ul.product_images");jQuery(".add_product_images").on("click","a",function(b){var c=a(this),d=i.val();return b.preventDefault(),h?void h.open():(h=wp.media.frames.product_gallery=wp.media({title:c.data("choose"),button:{text:c.data("update")},states:[new wp.media.controller.Library({title:c.data("choose"),filterable:"all",multiple:!0})]}),h.on("select",function(){var a=h.state().get("selection");a.map(function(a){a=a.toJSON(),a.id&&(d=d?d+","+a.id:a.id,j.append('
  • "))}),i.val(d)}),void h.open())}),j.sortable({items:"li.image",cursor:"move",scrollSensitivity:40,forcePlaceholderSize:!0,forceHelperSize:!1,helper:"clone",opacity:.65,placeholder:"wc-metabox-sortable-placeholder",start:function(a,b){b.item.css("background-color","#f6f6f6")},stop:function(a,b){b.item.removeAttr("style")},update:function(){var b="";a("#product_images_container ul li.image").css("cursor","default").each(function(){var a=jQuery(this).attr("data-attachment_id");b=b+a+","}),i.val(b)}}),a("#product_images_container").on("click","a.delete",function(){a(this).closest("li.image").remove();var b="";return a("#product_images_container ul li.image").css("cursor","default").each(function(){var a=jQuery(this).attr("data-attachment_id");b=b+a+","}),i.val(b),runTipTip(),!1})}); \ No newline at end of file diff --git a/assets/js/admin/meta-boxes-variations.js b/assets/js/admin/meta-boxes-variations.js deleted file mode 100644 index ed5a2245214..00000000000 --- a/assets/js/admin/meta-boxes-variations.js +++ /dev/null @@ -1,340 +0,0 @@ -jQuery( function($){ - - var variation_sortable_options = { - items:'.woocommerce_variation', - cursor:'move', - axis:'y', - handle: 'h3', - scrollSensitivity:40, - forcePlaceholderSize: true, - helper: 'clone', - opacity: 0.65, - placeholder: 'wc-metabox-sortable-placeholder', - start:function(event,ui){ - ui.item.css('background-color','#f6f6f6'); - }, - stop:function(event,ui){ - ui.item.removeAttr('style'); - variation_row_indexes(); - } - }; - - // Add a variation - jQuery('#variable_product_options').on('click', 'button.add_variation', function(){ - - jQuery('.woocommerce_variations').block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_admin_meta_boxes_variations.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', opacity: 0.6 } }); - - var loop = jQuery('.woocommerce_variation').size(); - - var data = { - action: 'woocommerce_add_variation', - post_id: woocommerce_admin_meta_boxes_variations.post_id, - loop: loop, - security: woocommerce_admin_meta_boxes_variations.add_variation_nonce - }; - - jQuery.post( woocommerce_admin_meta_boxes_variations.ajax_url, data, function(response) { - - jQuery('.woocommerce_variations').append( response ); - - jQuery(".tips").tipTip({ - 'attribute' : 'data-tip', - 'fadeIn' : 50, - 'fadeOut' : 50 - }); - - jQuery('input.variable_is_downloadable, input.variable_is_virtual').change(); - - jQuery('.woocommerce_variations').unblock(); - jQuery('#variable_product_options').trigger('woocommerce_variations_added'); - }); - - return false; - - }); - - jQuery('#variable_product_options').on('click', 'button.link_all_variations', function() { - - var answer = confirm( woocommerce_admin_meta_boxes_variations.i18n_link_all_variations ); - - if (answer) { - - jQuery('#variable_product_options').block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_admin_meta_boxes_variations.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', opacity: 0.6 } }); - - var data = { - action: 'woocommerce_link_all_variations', - post_id: woocommerce_admin_meta_boxes_variations.post_id, - security: woocommerce_admin_meta_boxes_variations.link_variation_nonce - }; - - jQuery.post( woocommerce_admin_meta_boxes_variations.ajax_url, data, function(response) { - - var count = parseInt( response ); - - if (count==1) { - alert( count + ' ' + woocommerce_admin_meta_boxes_variations.i18n_variation_added ); - } else if (count==0 || count>1) { - alert( count + ' ' + woocommerce_admin_meta_boxes_variations.i18n_variations_added ); - } else { - alert( woocommerce_admin_meta_boxes_variations.i18n_no_variations_added ); - } - - if (count>0) { - var this_page = window.location.toString(); - - this_page = this_page.replace( 'post-new.php?', 'post.php?post=' + woocommerce_admin_meta_boxes_variations.post_id + '&action=edit&' ); - - $('#variable_product_options').load( this_page + ' #variable_product_options_inner', function() { - $('#variable_product_options').unblock(); - jQuery('#variable_product_options').trigger('woocommerce_variations_added'); - - jQuery(".tips").tipTip({ - 'attribute' : 'data-tip', - 'fadeIn' : 50, - 'fadeOut' : 50 - }); - } ); - } else { - $('#variable_product_options').unblock(); - } - }); - } - return false; - }); - - jQuery('#variable_product_options').on('click', 'button.remove_variation', function(e){ - e.preventDefault(); - var answer = confirm( woocommerce_admin_meta_boxes_variations.i18n_remove_variation ); - if (answer){ - - var el = jQuery(this).parent().parent(); - - var variation = jQuery(this).attr('rel'); - - if (variation>0) { - - jQuery(el).block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_admin_meta_boxes_variations.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', opacity: 0.6 } }); - - var data = { - action: 'woocommerce_remove_variation', - variation_id: variation, - security: woocommerce_admin_meta_boxes_variations.delete_variation_nonce - }; - - jQuery.post(woocommerce_admin_meta_boxes_variations.ajax_url, data, function(response) { - // Success - jQuery(el).fadeOut('300', function(){ - jQuery(el).remove(); - }); - }); - - } else { - jQuery(el).fadeOut('300', function(){ - jQuery(el).remove(); - }); - } - - } - return false; - }); - - jQuery('.wc-metaboxes-wrapper').on('click', 'a.bulk_edit', function(event){ - var bulk_edit = jQuery('select#field_to_edit').val(); - - switch( bulk_edit ) { - case 'toggle_enabled': - var checkbox = jQuery('input[name^="variable_enabled"]'); - checkbox.attr('checked', !checkbox.attr('checked')); - break; - case 'toggle_downloadable': - var checkbox = jQuery('input[name^="variable_is_downloadable"]'); - checkbox.attr('checked', !checkbox.attr('checked')); - jQuery('input.variable_is_downloadable').change(); - break; - case 'toggle_virtual': - var checkbox = jQuery('input[name^="variable_is_virtual"]'); - checkbox.attr('checked', !checkbox.attr('checked')); - jQuery('input.variable_is_virtual').change(); - break; - case 'delete_all': - var answer = confirm( woocommerce_admin_meta_boxes_variations.i18n_delete_all_variations ); - - if (answer){ - - var answer = confirm( woocommerce_admin_meta_boxes_variations.i18n_last_warning ); - - if (answer) { - - var variation_ids = []; - - jQuery('.woocommerce_variations .woocommerce_variation').block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_admin_meta_boxes_variations.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', opacity: 0.6 } }); - - jQuery('.woocommerce_variations .woocommerce_variation .remove_variation').each(function(){ - - var variation = jQuery(this).attr('rel'); - if (variation>0) { - variation_ids.push(variation); - } - }); - - var data = { - action: 'woocommerce_remove_variations', - variation_ids: variation_ids, - security: woocommerce_admin_meta_boxes_variations.delete_variations_nonce - }; - - jQuery.post(woocommerce_admin_meta_boxes_variations.ajax_url, data, function(response) { - jQuery('.woocommerce_variations .woocommerce_variation').fadeOut('300', function(){ - jQuery('.woocommerce_variations .woocommerce_variation').remove(); - }); - }); - } - } - break; - case 'variable_regular_price_increase': - case 'variable_regular_price_decrease': - case 'variable_sale_price_increase': - case 'variable_sale_price_decrease': - if ( bulk_edit.lastIndexOf( 'variable_regular_price', 0 ) === 0 ) - var edit_field = 'variable_regular_price'; - else - var edit_field = 'variable_sale_price'; - - var value = prompt( woocommerce_admin_meta_boxes_variations.i18n_enter_a_value_fixed_or_percent ); - - jQuery( ':input[name^="' + edit_field + '["]').each(function() { - var current_value = Number( jQuery(this).val() ); - - if ( value.indexOf("%") >= 0 ) - value = Number( ( Number( current_value ) / 100 ) * Number( value.replace(/\%/, "" ) ) ); - else - value = Number( value ); - - if ( bulk_edit.indexOf( "increase" ) != -1 ) - var new_value = current_value + value; - else - var new_value = current_value - value; - - jQuery(this).val( new_value ).change(); - }); - break; - case 'variable_regular_price' : - case 'variable_sale_price' : - case 'variable_stock' : - case 'variable_weight' : - case 'variable_length' : - case 'variable_width' : - case 'variable_height' : - case 'variable_download_limit' : - case 'variable_download_expiry' : - var value = prompt( woocommerce_admin_meta_boxes_variations.i18n_enter_a_value ); - - jQuery( ':input[name^="' + bulk_edit + '["]').val( value ).change(); - break; - default: - jQuery('select#field_to_edit').trigger(bulk_edit); - break; - - } - }); - - jQuery('#variable_product_options').on('change', 'input.variable_is_downloadable', function(){ - - jQuery(this).closest('.woocommerce_variation').find('.show_if_variation_downloadable').hide(); - - if (jQuery(this).is(':checked')) { - jQuery(this).closest('.woocommerce_variation').find('.show_if_variation_downloadable').show(); - } - - }); - - jQuery('#variable_product_options').on('change', 'input.variable_is_virtual', function(){ - - jQuery(this).closest('.woocommerce_variation').find('.hide_if_variation_virtual').show(); - - if (jQuery(this).is(':checked')) { - jQuery(this).closest('.woocommerce_variation').find('.hide_if_variation_virtual').hide(); - } - - }); - - jQuery('input.variable_is_downloadable, input.variable_is_virtual').change(); - - // Ordering - $('#variable_product_options').on( 'woocommerce_variations_added', function() { - $('.woocommerce_variations').sortable( variation_sortable_options ); - } ); - - $('.woocommerce_variations').sortable( variation_sortable_options ); - - function variation_row_indexes() { - $('.woocommerce_variations .woocommerce_variation').each(function(index, el){ - $('.variation_menu_order', el).val( parseInt( $(el).index('.woocommerce_variations .woocommerce_variation') ) ); - }); - }; - - // Uploader - var variable_image_frame; - var setting_variation_image_id; - var setting_variation_image; - var wp_media_post_id = wp.media.model.settings.post.id; - - jQuery('#variable_product_options').on('click', '.upload_image_button', function( event ) { - - var $button = jQuery( this ); - var post_id = $button.attr('rel'); - var $parent = $button.closest('.upload_image'); - setting_variation_image = $parent; - setting_variation_image_id = post_id; - - event.preventDefault(); - - if ( $button.is('.remove') ) { - - setting_variation_image.find( '.upload_image_id' ).val( '' ); - setting_variation_image.find( 'img' ).attr( 'src', woocommerce_admin_meta_boxes_variations.woocommerce_placeholder_img_src ); - setting_variation_image.find( '.upload_image_button' ).removeClass( 'remove' ); - - } else { - - // If the media frame already exists, reopen it. - if ( variable_image_frame ) { - variable_image_frame.uploader.uploader.param( 'post_id', setting_variation_image_id ); - variable_image_frame.open(); - return; - } else { - wp.media.model.settings.post.id = setting_variation_image_id; - } - - // Create the media frame. - variable_image_frame = wp.media.frames.variable_image = wp.media({ - // Set the title of the modal. - title: woocommerce_admin_meta_boxes_variations.i18n_choose_image, - button: { - text: woocommerce_admin_meta_boxes_variations.i18n_set_image - } - }); - - // When an image is selected, run a callback. - variable_image_frame.on( 'select', function() { - - attachment = variable_image_frame.state().get('selection').first().toJSON(); - - setting_variation_image.find( '.upload_image_id' ).val( attachment.id ); - setting_variation_image.find( '.upload_image_button' ).addClass( 'remove' ); - setting_variation_image.find( 'img' ).attr( 'src', attachment.url ); - - wp.media.model.settings.post.id = wp_media_post_id; - }); - - // Finally, open the modal. - variable_image_frame.open(); - } - }); - - // Restore ID - jQuery('a.add_media').on('click', function() { - wp.media.model.settings.post.id = wp_media_post_id; - } ); - -}); \ No newline at end of file diff --git a/assets/js/admin/meta-boxes-variations.min.js b/assets/js/admin/meta-boxes-variations.min.js deleted file mode 100644 index eb074260172..00000000000 --- a/assets/js/admin/meta-boxes-variations.min.js +++ /dev/null @@ -1 +0,0 @@ -jQuery(function(e){function n(){e(".woocommerce_variations .woocommerce_variation").each(function(t,n){e(".variation_menu_order",n).val(parseInt(e(n).index(".woocommerce_variations .woocommerce_variation")))})}var t={items:".woocommerce_variation",cursor:"move",axis:"y",handle:"h3",scrollSensitivity:40,forcePlaceholderSize:!0,helper:"clone",opacity:.65,placeholder:"wc-metabox-sortable-placeholder",start:function(e,t){t.item.css("background-color","#f6f6f6")},stop:function(e,t){t.item.removeAttr("style");n()}};jQuery("#variable_product_options").on("click","button.add_variation",function(){jQuery(".woocommerce_variations").block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes_variations.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});var e=jQuery(".woocommerce_variation").size(),t={action:"woocommerce_add_variation",post_id:woocommerce_admin_meta_boxes_variations.post_id,loop:e,security:woocommerce_admin_meta_boxes_variations.add_variation_nonce};jQuery.post(woocommerce_admin_meta_boxes_variations.ajax_url,t,function(e){jQuery(".woocommerce_variations").append(e);jQuery(".tips").tipTip({attribute:"data-tip",fadeIn:50,fadeOut:50});jQuery("input.variable_is_downloadable, input.variable_is_virtual").change();jQuery(".woocommerce_variations").unblock();jQuery("#variable_product_options").trigger("woocommerce_variations_added")});return!1});jQuery("#variable_product_options").on("click","button.link_all_variations",function(){var t=confirm(woocommerce_admin_meta_boxes_variations.i18n_link_all_variations);if(t){jQuery("#variable_product_options").block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes_variations.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});var n={action:"woocommerce_link_all_variations",post_id:woocommerce_admin_meta_boxes_variations.post_id,security:woocommerce_admin_meta_boxes_variations.link_variation_nonce};jQuery.post(woocommerce_admin_meta_boxes_variations.ajax_url,n,function(t){var n=parseInt(t);n==1?alert(n+" "+woocommerce_admin_meta_boxes_variations.i18n_variation_added):n==0||n>1?alert(n+" "+woocommerce_admin_meta_boxes_variations.i18n_variations_added):alert(woocommerce_admin_meta_boxes_variations.i18n_no_variations_added);if(n>0){var r=window.location.toString();r=r.replace("post-new.php?","post.php?post="+woocommerce_admin_meta_boxes_variations.post_id+"&action=edit&");e("#variable_product_options").load(r+" #variable_product_options_inner",function(){e("#variable_product_options").unblock();jQuery("#variable_product_options").trigger("woocommerce_variations_added");jQuery(".tips").tipTip({attribute:"data-tip",fadeIn:50,fadeOut:50})})}else e("#variable_product_options").unblock()})}return!1});jQuery("#variable_product_options").on("click","button.remove_variation",function(e){e.preventDefault();var t=confirm(woocommerce_admin_meta_boxes_variations.i18n_remove_variation);if(t){var n=jQuery(this).parent().parent(),r=jQuery(this).attr("rel");if(r>0){jQuery(n).block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes_variations.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});var i={action:"woocommerce_remove_variation",variation_id:r,security:woocommerce_admin_meta_boxes_variations.delete_variation_nonce};jQuery.post(woocommerce_admin_meta_boxes_variations.ajax_url,i,function(e){jQuery(n).fadeOut("300",function(){jQuery(n).remove()})})}else jQuery(n).fadeOut("300",function(){jQuery(n).remove()})}return!1});jQuery(".wc-metaboxes-wrapper").on("click","a.bulk_edit",function(e){var t=jQuery("select#field_to_edit").val();switch(t){case"toggle_enabled":var n=jQuery('input[name^="variable_enabled"]');n.attr("checked",!n.attr("checked"));break;case"toggle_downloadable":var n=jQuery('input[name^="variable_is_downloadable"]');n.attr("checked",!n.attr("checked"));jQuery("input.variable_is_downloadable").change();break;case"toggle_virtual":var n=jQuery('input[name^="variable_is_virtual"]');n.attr("checked",!n.attr("checked"));jQuery("input.variable_is_virtual").change();break;case"delete_all":var r=confirm(woocommerce_admin_meta_boxes_variations.i18n_delete_all_variations);if(r){var r=confirm(woocommerce_admin_meta_boxes_variations.i18n_last_warning);if(r){var i=[];jQuery(".woocommerce_variations .woocommerce_variation").block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes_variations.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});jQuery(".woocommerce_variations .woocommerce_variation .remove_variation").each(function(){var e=jQuery(this).attr("rel");e>0&&i.push(e)});var s={action:"woocommerce_remove_variations",variation_ids:i,security:woocommerce_admin_meta_boxes_variations.delete_variations_nonce};jQuery.post(woocommerce_admin_meta_boxes_variations.ajax_url,s,function(e){jQuery(".woocommerce_variations .woocommerce_variation").fadeOut("300",function(){jQuery(".woocommerce_variations .woocommerce_variation").remove()})})}}break;case"variable_regular_price_increase":case"variable_regular_price_decrease":case"variable_sale_price_increase":case"variable_sale_price_decrease":if(t.lastIndexOf("variable_regular_price",0)===0)var o="variable_regular_price";else var o="variable_sale_price";var u=prompt(woocommerce_admin_meta_boxes_variations.i18n_enter_a_value_fixed_or_percent);jQuery(':input[name^="'+o+'["]').each(function(){var e=Number(jQuery(this).val());u.indexOf("%")>=0?u=Number(Number(e)/100*Number(u.replace(/\%/,""))):u=Number(u);if(t.indexOf("increase")!=-1)var n=e+u;else var n=e-u;jQuery(this).val(n).change()});break;case"variable_regular_price":case"variable_sale_price":case"variable_stock":case"variable_weight":case"variable_length":case"variable_width":case"variable_height":case"variable_download_limit":case"variable_download_expiry":var u=prompt(woocommerce_admin_meta_boxes_variations.i18n_enter_a_value);jQuery(':input[name^="'+t+'["]').val(u).change();break;default:jQuery("select#field_to_edit").trigger(t)}});jQuery("#variable_product_options").on("change","input.variable_is_downloadable",function(){jQuery(this).closest(".woocommerce_variation").find(".show_if_variation_downloadable").hide();jQuery(this).is(":checked")&&jQuery(this).closest(".woocommerce_variation").find(".show_if_variation_downloadable").show()});jQuery("#variable_product_options").on("change","input.variable_is_virtual",function(){jQuery(this).closest(".woocommerce_variation").find(".hide_if_variation_virtual").show();jQuery(this).is(":checked")&&jQuery(this).closest(".woocommerce_variation").find(".hide_if_variation_virtual").hide()});jQuery("input.variable_is_downloadable, input.variable_is_virtual").change();e("#variable_product_options").on("woocommerce_variations_added",function(){e(".woocommerce_variations").sortable(t)});e(".woocommerce_variations").sortable(t);var r,i,s,o=wp.media.model.settings.post.id;jQuery("#variable_product_options").on("click",".upload_image_button",function(e){var t=jQuery(this),n=t.attr("rel"),u=t.closest(".upload_image");s=u;i=n;e.preventDefault();if(t.is(".remove")){s.find(".upload_image_id").val("");s.find("img").attr("src",woocommerce_admin_meta_boxes_variations.woocommerce_placeholder_img_src);s.find(".upload_image_button").removeClass("remove")}else{if(r){r.uploader.uploader.param("post_id",i);r.open();return}wp.media.model.settings.post.id=i;r=wp.media.frames.variable_image=wp.media({title:woocommerce_admin_meta_boxes_variations.i18n_choose_image,button:{text:woocommerce_admin_meta_boxes_variations.i18n_set_image}});r.on("select",function(){attachment=r.state().get("selection").first().toJSON();s.find(".upload_image_id").val(attachment.id);s.find(".upload_image_button").addClass("remove");s.find("img").attr("src",attachment.url);wp.media.model.settings.post.id=o});r.open()}});jQuery("a.add_media").on("click",function(){wp.media.model.settings.post.id=o})}); \ No newline at end of file diff --git a/assets/js/admin/meta-boxes.js b/assets/js/admin/meta-boxes.js index 1792966a911..8724d6d593f 100644 --- a/assets/js/admin/meta-boxes.js +++ b/assets/js/admin/meta-boxes.js @@ -1,66 +1,30 @@ -jQuery( function($){ +/*global woocommerce_admin_meta_boxes */ +jQuery( function ( $ ) { + + // run tip tip + function runTipTip() { + // remove any lingering tooltips + $( '#tiptip_holder' ).removeAttr( 'style' ); + $( '#tiptip_arrow' ).removeAttr( 'style' ); + $( '.tips' ).tipTip({ + 'attribute': 'data-tip', + 'fadeIn': 50, + 'fadeOut': 50, + 'delay': 200 + }); + } + + runTipTip(); // Allow tabbing $('#titlediv #title').keyup(function( event ) { var code = event.keyCode || event.which; - if ( code == '9' && $('#woocommerce-coupon-description').size() > 0 ) { - event.stopPropagation(); - $('#woocommerce-coupon-description').focus(); - return false; - } - }); - - // Coupon type options - $('select#discount_type').change(function(){ - - // Get value - var select_val = $(this).val(); - - if ( select_val == 'fixed_product' || select_val == 'percent_product' ) { - $('.limit_usage_to_x_items_field').show(); - } else { - $('.limit_usage_to_x_items_field').hide(); + if ( code == '9' && $('#woocommerce-coupon-description').size() > 0 ) { + event.stopPropagation(); + $('#woocommerce-coupon-description').focus(); + return false; } - - }).change(); - - // Scroll to first checked category - https://github.com/scribu/wp-category-checklist-tree/blob/d1c3c1f449e1144542efa17dde84a9f52ade1739/category-checklist-tree.php - $(function(){ - $('[id$="-all"] > ul.categorychecklist').each(function() { - var $list = $(this); - var $firstChecked = $list.find(':checked').first(); - - if ( !$firstChecked.length ) - return; - - var pos_first = $list.find('input').position().top; - var pos_checked = $firstChecked.position().top; - - $list.closest('.tabs-panel').scrollTop(pos_checked - pos_first + 5); - }); - }); - - // Prevent enter submitting post form - $("#upsell_product_data").bind("keypress", function(e) { - if (e.keyCode == 13) return false; - }); - - // Type box - $('.type_box').appendTo( '#woocommerce-product-data h3.hndle span' ); - - $(function(){ - // Prevent inputs in meta box headings opening/closing contents - $('#woocommerce-product-data h3.hndle').unbind('click.postboxes'); - - jQuery('#woocommerce-product-data').on('click', 'h3.hndle', function(event){ - - // If the user clicks on some form input inside the h3 the box should not be toggled - if ( $(event.target).filter('input, option, label, select').length ) - return; - - $('#woocommerce-product-data').toggleClass('closed'); - }); }); $(function(){ @@ -69,71 +33,6 @@ jQuery( function($){ }); }); - // Order emails - $('#order-emails a.show-order-emails').click(function () { - if ($('#order-emails-select').is(":hidden")) { - $('#order-emails-select').slideDown('fast'); - $(this).hide(); - } - return false; - }); - - $('#order-emails a.hide-order-emails').click(function () { - $('input[name="order_email[]"]').each( function() { $(this).attr('checked', false) } ); - - if ($('#order-emails-select').is(":visible")) { - $('#order-emails-select').slideUp('fast'); - $('#order-emails a.show-order-emails').show(); - } - return false; - }); - - // Catalog Visibility - $('#catalog-visibility .edit-catalog-visibility').click(function () { - if ($('#catalog-visibility-select').is(":hidden")) { - $('#catalog-visibility-select').slideDown('fast'); - $(this).hide(); - } - return false; - }); - $('#catalog-visibility .save-post-visibility').click(function () { - $('#catalog-visibility-select').slideUp('fast'); - $('#catalog-visibility .edit-catalog-visibility').show(); - - var value = $('input[name=_visibility]:checked').val(); - var label = $('input[name=_visibility]:checked').attr('data-label'); - - if ( $('input[name=_featured]').is(':checked') ) { - label = label + ', ' + woocommerce_admin_meta_boxes.featured_label - $('input[name=_featured]').attr('checked', 'checked'); - } - - $('#catalog-visibility-display').text( label ); - return false; - }); - $('#catalog-visibility .cancel-post-visibility').click(function () { - $('#catalog-visibility-select').slideUp('fast'); - $('#catalog-visibility .edit-catalog-visibility').show(); - - var current_visibility = $('#current_visibility').val(); - var current_featured = $('#current_featured').val(); - - $('input[name=_visibility]').removeAttr('checked'); - $('input[name=_visibility][value=' + current_visibility + ']').attr('checked', 'checked'); - - var label = $('input[name=_visibility]:checked').attr('data-label'); - - if ( current_featured == 'yes' ) { - label = label + ', ' + woocommerce_admin_meta_boxes.featured_label - $('input[name=_featured]').attr('checked', 'checked'); - } else { - $('input[name=_featured]').removeAttr('checked'); - } - - $('#catalog-visibility-display').text( label ); - return false; - }); - // TABS $('ul.wc-tabs').show(); $('div.panel-wrap').each(function(){ @@ -147,6 +46,7 @@ jQuery( function($){ $( $(this).attr('href') ).show(); return false; }); + $('ul.wc-tabs li:visible').eq(0).find('a').click(); // Chosen selects jQuery("select.chosen_select").chosen(); @@ -157,1003 +57,79 @@ jQuery( function($){ // Ajax Chosen Product Selectors jQuery("select.ajax_chosen_select_products").ajaxChosen({ - method: 'GET', - url: woocommerce_admin_meta_boxes.ajax_url, - dataType: 'json', - afterTypeDelay: 100, - data: { - action: 'woocommerce_json_search_products', + method: 'GET', + url: woocommerce_admin_meta_boxes.ajax_url, + dataType: 'json', + afterTypeDelay: 100, + data: { + action: 'woocommerce_json_search_products', security: woocommerce_admin_meta_boxes.search_products_nonce - } + } }, function (data) { - var terms = {}; - $.each(data, function (i, val) { - terms[i] = val; - }); + $.each(data, function (i, val) { + terms[i] = val; + }); - return terms; + return terms; }); - jQuery("select.ajax_chosen_select_products_and_variations").ajaxChosen({ - method: 'GET', - url: woocommerce_admin_meta_boxes.ajax_url, - dataType: 'json', - afterTypeDelay: 100, - data: { - action: 'woocommerce_json_search_products_and_variations', - security: woocommerce_admin_meta_boxes.search_products_nonce - } - }, function (data) { + /** + * Load Chosen for select products and variations + * + * @return {void} + */ + function loadSelectProductAndVariation() { + $( 'select.ajax_chosen_select_products_and_variations' ).ajaxChosen({ + method: 'GET', + url: woocommerce_admin_meta_boxes.ajax_url, + dataType: 'json', + afterTypeDelay: 100, + data: { + action: 'woocommerce_json_search_products_and_variations', + security: woocommerce_admin_meta_boxes.search_products_nonce + } + }, + function ( data ) { + var terms = {}; - var terms = {}; + $.each(data, function ( i, val ) { + terms[i] = val; + }); - $.each(data, function (i, val) { - terms[i] = val; - }); + return terms; + }); + } - return terms; + // Run on document load + loadSelectProductAndVariation(); + + // Load chosen inside WC Backbone Modal + $( 'body' ).on( 'wc_backbone_modal_loaded', function ( e, target ) { + if ( '#wc-modal-add-products' === target ) { + loadSelectProductAndVariation(); + } }); jQuery("select.ajax_chosen_select_downloadable_products_and_variations").ajaxChosen({ - method: 'GET', - url: woocommerce_admin_meta_boxes.ajax_url, - dataType: 'json', - afterTypeDelay: 100, - data: { - action: 'woocommerce_json_search_downloadable_products_and_variations', + method: 'GET', + url: woocommerce_admin_meta_boxes.ajax_url, + dataType: 'json', + afterTypeDelay: 100, + data: { + action: 'woocommerce_json_search_downloadable_products_and_variations', security: woocommerce_admin_meta_boxes.search_products_nonce - } + } }, function (data) { var terms = {}; - $.each(data, function (i, val) { - terms[i] = val; - }); - - return terms; - }); - - // ORDERS - jQuery('#woocommerce-order-actions input, #woocommerce-order-actions a').click(function(){ - window.onbeforeunload = ''; - }); - - $('a.edit_address').click(function(event){ - $(this).hide(); - $(this).closest('.order_data_column').find('div.address').hide(); - $(this).closest('.order_data_column').find('div.edit_address').show(); - event.preventDefault(); - }); - - $('#order_items_list').on( 'init_row', 'tr.item', function() { - var $row = $(this); - var $qty = $row.find('input.quantity'); - var qty = $qty.val(); - - var line_subtotal = $row.find('input.line_subtotal').val(); - var line_total = $row.find('input.line_total').val(); - var line_tax = $row.find('input.line_tax').val(); - var line_subtotal_tax = $row.find('input.line_subtotal_tax').val(); - - if ( qty ) { - unit_subtotal = parseFloat( accounting.toFixed( ( line_subtotal / qty ), woocommerce_admin_meta_boxes.rounding_precision ) ); - unit_subtotal_tax = parseFloat( accounting.toFixed( ( line_subtotal_tax / qty ), woocommerce_admin_meta_boxes.rounding_precision ) ); - unit_total = parseFloat( accounting.toFixed( ( line_total / qty ), woocommerce_admin_meta_boxes.rounding_precision ) ); - unit_total_tax = parseFloat( accounting.toFixed( ( line_tax / qty ), woocommerce_admin_meta_boxes.rounding_precision ) ); - } else { - unit_subtotal = unit_subtotal_tax = unit_total = unit_total_tax = 0; - } - - $qty.attr( 'data-o_qty', qty ); - $row.attr( 'data-unit_subtotal', unit_subtotal ); - $row.attr( 'data-unit_subtotal_tax', unit_subtotal_tax ); - $row.attr( 'data-unit_total', unit_total ); - $row.attr( 'data-unit_total_tax', unit_total_tax ); - }); - - // When the page is loaded, store the unit costs - $('#order_items_list tr.item').each( function() { - $(this).trigger('init_row'); - $(this).find('.edit').hide(); - } ); - - $('#order_items_list').on( 'click', 'a.edit_order_item', function() { - $(this).closest('tr').find('.view').hide(); - $(this).closest('tr').find('.edit').show(); - $(this).hide(); - return false; - } ); - - // When the qty is changed, increase or decrease costs - $('#order_items_list').on( 'change', 'input.quantity', function() { - var $row = $(this).closest('tr.item'); - var qty = $(this).val(); - - var unit_subtotal = $row.attr('data-unit_subtotal'); - var unit_subtotal_tax = $row.attr('data-unit_subtotal_tax'); - var unit_total = $row.attr('data-unit_total'); - var unit_total_tax = $row.attr('data-unit_total_tax'); - var o_qty = $(this).attr('data-o_qty'); - - var subtotal = parseFloat( accounting.formatNumber( unit_subtotal * qty, woocommerce_admin_meta_boxes.rounding_precision, '' ) ); - var tax = parseFloat( accounting.formatNumber( unit_subtotal_tax * qty, woocommerce_admin_meta_boxes.rounding_precision, '' ) ); - var total = parseFloat( accounting.formatNumber( unit_total * qty, woocommerce_admin_meta_boxes.rounding_precision, '' ) ); - var total_tax = parseFloat( accounting.formatNumber( unit_total_tax * qty, woocommerce_admin_meta_boxes.rounding_precision, '' ) ); - - $row.find('input.line_subtotal').val( subtotal ); - $row.find('input.line_total').val( total ); - $row.find('input.line_subtotal_tax').val( tax ); - $row.find('input.line_tax').val( total_tax ); - - $(this).trigger('quantity_changed'); - }); - - // When subtotal is changed, update the unit costs - $('#order_items_list').on( 'change', 'input.line_subtotal', function() { - var $row = $(this).closest('tr.item'); - var $qty = $row.find('input.quantity'); - var qty = $qty.val(); - var value = ( qty ) ? accounting.toFixed( ( $(this).val() / qty ), woocommerce_admin_meta_boxes.rounding_precision ) : 0; - - $row.attr( 'data-unit_subtotal', value ); - }); - - // When total is changed, update the unit costs + discount amount - $('#order_items_list').on( 'change', 'input.line_total', function() { - var $row = $(this).closest('tr.item'); - var $qty = $row.find('input.quantity'); - var qty = $qty.val(); - var value = ( qty ) ? accounting.toFixed( ( $(this).val() / qty ), woocommerce_admin_meta_boxes.rounding_precision ) : 0; - - $row.attr( 'data-unit_total', value ); - }); - - // When total is changed, update the unit costs + discount amount - $('#order_items_list').on( 'change', 'input.line_subtotal_tax', function() { - var $row = $(this).closest('tr.item'); - var $qty = $row.find('input.quantity'); - var qty = $qty.val(); - var value = ( qty ) ? accounting.toFixed( ( $(this).val() / qty ), woocommerce_admin_meta_boxes.rounding_precision ) : 0; - - $row.attr( 'data-unit_subtotal_tax', value ); - }); - - // When total is changed, update the unit costs + discount amount - $('#order_items_list').on( 'change', 'input.line_tax', function() { - var $row = $(this).closest('tr.item'); - var $qty = $row.find('input.quantity'); - var qty = $qty.val(); - var value = ( qty ) ? accounting.toFixed( ( $(this).val() / qty ), woocommerce_admin_meta_boxes.rounding_precision ) : 0; - - $row.attr( 'data-unit_total_tax', value ); - }); - - // Display a total for taxes - $('#woocommerce-order-totals').on( 'change input', '.order_taxes_amount, .order_taxes_shipping_amount, .shipping_cost, #_order_discount', function() { - - var $this = $(this); - var fields = $this.closest('.totals_group').find('input[type=number], .wc_input_price'); - var total = 0; - - fields.each(function(){ - if ( $(this).val() ) - total = total + accounting.unformat( $(this).val(), woocommerce_admin.mon_decimal_point ); + $.each(data, function (i, val) { + terms[i] = val; }); - if ( $this.is('.order_taxes_amount') || $this.is('.order_taxes_shipping_amount') ) { - total = round( total, woocommerce_admin_meta_boxes.currency_format_num_decimals, woocommerce_admin_meta_boxes.tax_rounding_mode ); - } - - var formatted_total = accounting.formatMoney( total, { - symbol : woocommerce_admin_meta_boxes.currency_format_symbol, - decimal : woocommerce_admin_meta_boxes.currency_format_decimal_sep, - thousand : woocommerce_admin_meta_boxes.currency_format_thousand_sep, - precision : woocommerce_admin_meta_boxes.currency_format_num_decimals, - format : woocommerce_admin_meta_boxes.currency_format - } ); - - $this.closest('.totals_group').find('span.inline_total').text( formatted_total ); - } ); - - $('span.inline_total').closest('.totals_group').find('input').change(); - - // Calculate totals - $('button.calc_line_taxes').click(function(){ - // Block write panel - $('.woocommerce_order_items_wrapper').block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', opacity: 0.6 } }); - - var answer = confirm(woocommerce_admin_meta_boxes.calc_line_taxes); - - if (answer) { - - var $items = $('#order_items_list').find('tr.item, tr.fee'); - - var shipping_country = $('#_shipping_country').val(); - var billing_country = $('#_billing_country').val(); - - if (shipping_country) { - var country = shipping_country; - var state = $('#_shipping_state').val(); - var postcode = $('#_shipping_postcode').val(); - var city = $('#_shipping_city').val(); - } else if(billing_country) { - var country = billing_country; - var state = $('#_billing_state').val(); - var postcode = $('#_billing_postcode').val(); - var city = $('#_billing_city').val(); - } else { - var country = woocommerce_admin_meta_boxes.base_country; - var state = ''; - var postcode = ''; - var city = ''; - } - - // Get items and values - var calculate_items = {}; - - $items.each( function() { - - var $row = $(this); - - var item_id = $row.find('input.order_item_id').val(); - var line_subtotal = $row.find('input.line_subtotal').val(); - var line_total = $row.find('input.line_total').val(); - var tax_class = $row.find('select.tax_class').val(); - - calculate_items[ item_id ] = {}; - calculate_items[ item_id ].line_subtotal = line_subtotal; - calculate_items[ item_id ].line_total = line_total; - calculate_items[ item_id ].tax_class = tax_class; - } ); - - order_shipping = 0; - - $('#shipping_rows').find('input[type=number], .wc_input_price').each(function(){ - cost = $(this).val() || '0'; - cost = accounting.unformat( cost, woocommerce_admin.mon_decimal_point ); - order_shipping = order_shipping + parseFloat( cost ); - }); - - var data = { - action: 'woocommerce_calc_line_taxes', - order_id: woocommerce_admin_meta_boxes.post_id, - items: calculate_items, - shipping: order_shipping, - country: country, - state: state, - postcode: postcode, - city: city, - security: woocommerce_admin_meta_boxes.calc_totals_nonce - }; - - $.post( woocommerce_admin_meta_boxes.ajax_url, data, function( response ) { - - if ( response ) { - $items.each( function() { - var $row = $(this); - var item_id = $row.find('input.order_item_id').val(); - $row.find('.edit_order_item').click(); - - if ( response['item_taxes'][ item_id ] ) { - $row.find('input.line_tax').val( response['item_taxes'][ item_id ]['line_tax'] ).change(); - $row.find('input.line_subtotal_tax').val( response['item_taxes'][ item_id ]['line_subtotal_tax'] ).change(); - } - - if ( response['tax_row_html'] ) - $('#tax_rows').empty().append( response['tax_row_html'] ); - } ); - - $('#tax_rows').find('input').change(); - } - - $('.woocommerce_order_items_wrapper').unblock(); - }); - - } else { - $('.woocommerce_order_items_wrapper').unblock(); - } - return false; - }); - - - $('button.calc_totals').click( function(){ - // Block write panel - $('#woocommerce-order-totals').block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', opacity: 0.6 } }); - - var answer = confirm(woocommerce_admin_meta_boxes.calc_totals); - - if (answer) { - - // Get row totals - var line_totals = 0; - var tax = 0; - var shipping = 0; - var order_discount = $('#_order_discount').val() || '0'; - - order_discount = accounting.unformat( order_discount.replace(',', '.') ); - - $('#shipping_rows').find('input[type=number], .wc_input_price').each(function(){ - cost = $(this).val() || '0'; - cost = accounting.unformat( cost, woocommerce_admin.mon_decimal_point ); - shipping = shipping + parseFloat( cost ); - }); - - $('#tax_rows').find('input[type=number], .wc_input_price').each(function(){ - cost = $(this).val() || '0'; - cost = accounting.unformat( cost, woocommerce_admin.mon_decimal_point ); - tax = tax + parseFloat( cost ); - }); - - $('#order_items_list tr.item, #order_items_list tr.fee').each(function(){ - line_total = $(this).find('input.line_total').val() || '0'; - line_totals = line_totals + accounting.unformat( line_total.replace(',', '.') ); - }); - - // Tax - if ( woocommerce_admin_meta_boxes.round_at_subtotal == 'yes' ) - tax = parseFloat( accounting.toFixed( tax, woocommerce_admin_meta_boxes.rounding_precision ) ); - - // Set Total - $('#_order_total').val( accounting.formatNumber( line_totals + tax + shipping - order_discount, woocommerce_admin_meta_boxes.currency_format_num_decimals, '', woocommerce_admin.mon_decimal_point ) ).change(); - } - - $('#woocommerce-order-totals').unblock(); - - return false; - }); - - // Add a line item - $('#woocommerce-order-items button.add_order_item').click(function(){ - - var add_item_ids = $('select#add_item_id').val(); - - if ( add_item_ids ) { - - count = add_item_ids.length; - - $('table.woocommerce_order_items').block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', opacity: 0.6 } }); - - $.each( add_item_ids, function( index, value ) { - - var data = { - action: 'woocommerce_add_order_item', - item_to_add: value, - order_id: woocommerce_admin_meta_boxes.post_id, - security: woocommerce_admin_meta_boxes.order_item_nonce - }; - - $.post( woocommerce_admin_meta_boxes.ajax_url, data, function( response ) { - - $('table.woocommerce_order_items tbody#order_items_list').append( response ); - - if (!--count) { - $('select#add_item_id, #add_item_id_chosen .chosen-choices').css('border-color', '').val(''); - jQuery(".tips").tipTip({ - 'attribute' : 'data-tip', - 'fadeIn' : 50, - 'fadeOut' : 50, - 'delay' : 200 - }); - $('select#add_item_id').trigger("chosen:updated"); - $('table.woocommerce_order_items').unblock(); - } - - $('#order_items_list tr.new_row').trigger('init_row').removeClass('new_row'); - }); - - }); - - } else { - $('select#add_item_id, #add_item_id_chosen .chosen-choices').css('border-color', 'red'); - } - return false; - }); - - // Add a fee - $('#woocommerce-order-items button.add_order_fee').click(function(){ - - $('table.woocommerce_order_items').block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', opacity: 0.6 } }); - - var data = { - action: 'woocommerce_add_order_fee', - order_id: woocommerce_admin_meta_boxes.post_id, - security: woocommerce_admin_meta_boxes.order_item_nonce - }; - - $.post( woocommerce_admin_meta_boxes.ajax_url, data, function( response ) { - $('table.woocommerce_order_items tbody#order_items_list').append( response ); - $('table.woocommerce_order_items').unblock(); - }); - return false; - }); - - // Add some meta to a line item - $('#order_items_list').on('click', 'button.add_order_item_meta', function(){ - - var $button = $(this); - var $item = $button.closest('tr.item'); - - var data = { - order_item_id: $item.attr( 'data-order_item_id' ), - action: 'woocommerce_add_order_item_meta', - security: woocommerce_admin_meta_boxes.order_item_nonce - }; - - $('table.woocommerce_order_items').block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', opacity: 0.6 } }); - - $.ajax( { - url: woocommerce_admin_meta_boxes.ajax_url, - data: data, - type: 'POST', - success: function( response ) { - $item.find('tbody.meta_items').append( response ); - $('table.woocommerce_order_items').unblock(); - } - } ); - - return false; - }); - - $('#order_items_list').on('click', 'button.remove_order_item_meta', function(){ - var answer = confirm( woocommerce_admin_meta_boxes.remove_item_meta ) - if ( answer ) { - var $row = $(this).closest('tr'); - - var data = { - meta_id: $row.attr( 'data-meta_id' ), - action: 'woocommerce_remove_order_item_meta', - security: woocommerce_admin_meta_boxes.order_item_nonce - }; - - $('table.woocommerce_order_items').block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', opacity: 0.6 } }); - - $.ajax( { - url: woocommerce_admin_meta_boxes.ajax_url, - data: data, - type: 'POST', - success: function( response ) { - $row.hide(); - $('table.woocommerce_order_items').unblock(); - } - } ); - } - return false; - }); - - // Bulk actions for line items - $('#woocommerce-order-items').on( 'click', 'input.check-column', function() { - if ( $(this).is(':checked') ) - $('#woocommerce-order-items').find('.check-column input').attr('checked', 'checked'); - else - $('#woocommerce-order-items').find('.check-column input').removeAttr('checked'); - } ); - - $('#woocommerce-order-items').on( 'click', '.do_bulk_action', function() { - - var action = $(this).closest('.bulk_actions').find('select').val(); - var selected_rows = $('#woocommerce-order-items').find('.check-column input:checked'); - var item_ids = []; - - $(selected_rows).each( function() { - - var $item = $(this).closest('tr.item, tr.fee'); - - item_ids.push( $item.attr( 'data-order_item_id' ) ); - - } ); - - if ( item_ids.length == 0 ) { - alert( woocommerce_admin_meta_boxes.i18n_select_items ); - return; - } - - if ( action == 'delete' ) { - - var answer = confirm( woocommerce_admin_meta_boxes.remove_item_notice ); - - if ( answer ) { - - $('table.woocommerce_order_items').block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', opacity: 0.6 } }); - - var data = { - order_item_ids: item_ids, - action: 'woocommerce_remove_order_item', - security: woocommerce_admin_meta_boxes.order_item_nonce - }; - - $.ajax( { - url: woocommerce_admin_meta_boxes.ajax_url, - data: data, - type: 'POST', - success: function( response ) { - $(selected_rows).each( function() { - $(this).closest('tr.item, tr.fee').remove(); - } ); - $('table.woocommerce_order_items').unblock(); - } - } ); - - } - - } else if ( action == 'reduce_stock' ) { - - $('table.woocommerce_order_items').block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', opacity: 0.6 } }); - - var quantities = {}; - - $(selected_rows).each( function() { - - var $item = $(this).closest('tr.item, tr.fee'); - var $qty = $item.find('input.quantity'); - - quantities[ $item.attr( 'data-order_item_id' ) ] = $qty.val(); - } ); - - var data = { - order_id: woocommerce_admin_meta_boxes.post_id, - order_item_ids: item_ids, - order_item_qty: quantities, - action: 'woocommerce_reduce_order_item_stock', - security: woocommerce_admin_meta_boxes.order_item_nonce - }; - - $.ajax( { - url: woocommerce_admin_meta_boxes.ajax_url, - data: data, - type: 'POST', - success: function( response ) { - alert( response ); - $('table.woocommerce_order_items').unblock(); - } - } ); - - } else if ( action == 'increase_stock' ) { - - $('table.woocommerce_order_items').block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', opacity: 0.6 } }); - - var quantities = {}; - - $(selected_rows).each( function() { - - var $item = $(this).closest('tr.item, tr.fee'); - var $qty = $item.find('input.quantity'); - - quantities[ $item.attr( 'data-order_item_id' ) ] = $qty.val(); - } ); - - var data = { - order_id: woocommerce_admin_meta_boxes.post_id, - order_item_ids: item_ids, - order_item_qty: quantities, - action: 'woocommerce_increase_order_item_stock', - security: woocommerce_admin_meta_boxes.order_item_nonce - }; - - $.ajax( { - url: woocommerce_admin_meta_boxes.ajax_url, - data: data, - type: 'POST', - success: function( response ) { - alert( response ); - $('table.woocommerce_order_items').unblock(); - } - } ); - } - - return false; - } ); - - // Download permissions - $('.order_download_permissions').on('click', 'button.grant_access', function(){ - var products = $('select#grant_access_id').val(); - if (!products) return; - - $('.order_download_permissions').block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', opacity: 0.6 } }); - - var data = { - action: 'woocommerce_grant_access_to_download', - product_ids: products, - loop: $('.order_download_permissions .wc-metabox').size(), - order_id: woocommerce_admin_meta_boxes.post_id, - security: woocommerce_admin_meta_boxes.grant_access_nonce, - }; - - $.post( woocommerce_admin_meta_boxes.ajax_url, data, function( response ) { - - if ( response ) { - $('.order_download_permissions .wc-metaboxes').append( response ); - } else { - alert( woocommerce_admin_meta_boxes.i18n_download_permission_fail ); - } - - $( ".date-picker" ).datepicker({ - dateFormat: "yy-mm-dd", - numberOfMonths: 1, - showButtonPanel: true, - showOn: "button", - buttonImage: woocommerce_admin_meta_boxes.calendar_image, - buttonImageOnly: true - }); - $('#grant_access_id').val('').trigger('chosen:updated'); - $('.order_download_permissions').unblock(); - - }); - - return false; - }); - - $('.order_download_permissions').on('click', 'button.revoke_access', function(e){ - e.preventDefault(); - var answer = confirm( woocommerce_admin_meta_boxes.i18n_permission_revoke ); - if ( answer ) { - var el = $(this).parent().parent(); - var product = $(this).attr('rel').split(",")[0]; - var file = $(this).attr('rel').split(",")[1]; - - if ( product > 0 ) { - $(el).block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', opacity: 0.6 } }); - - var data = { - action: 'woocommerce_revoke_access_to_download', - product_id: product, - download_id: file, - order_id: woocommerce_admin_meta_boxes.post_id, - security: woocommerce_admin_meta_boxes.revoke_access_nonce, - }; - - $.post( woocommerce_admin_meta_boxes.ajax_url, data, function(response) { - // Success - $(el).fadeOut('300', function(){ - $(el).remove(); - }); - }); - - } else { - $(el).fadeOut('300', function(){ - $(el).remove(); - }); - } - } - return false; - }); - - - $('button.load_customer_billing').click(function(){ - - var answer = confirm(woocommerce_admin_meta_boxes.load_billing); - if (answer){ - - // Get user ID to load data for - var user_id = $('#customer_user').val(); - - if (!user_id) { - alert(woocommerce_admin_meta_boxes.no_customer_selected); - return false; - } - - var data = { - user_id: user_id, - type_to_load: 'billing', - action: 'woocommerce_get_customer_details', - security: woocommerce_admin_meta_boxes.get_customer_details_nonce - }; - - $(this).closest('.edit_address').block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', opacity: 0.6 } }); - - $.ajax({ - url: woocommerce_admin_meta_boxes.ajax_url, - data: data, - type: 'POST', - success: function( response ) { - var info = response; - - if (info) { - $('input#_billing_first_name').val( info.billing_first_name ); - $('input#_billing_last_name').val( info.billing_last_name ); - $('input#_billing_company').val( info.billing_company ); - $('input#_billing_address_1').val( info.billing_address_1 ); - $('input#_billing_address_2').val( info.billing_address_2 ); - $('input#_billing_city').val( info.billing_city ); - $('input#_billing_postcode').val( info.billing_postcode ); - $('#_billing_country').val( info.billing_country ); - $('input#_billing_state').val( info.billing_state ); - $('input#_billing_email').val( info.billing_email ); - $('input#_billing_phone').val( info.billing_phone ); - } - - $('.edit_address').unblock(); - } - }); - } - return false; - }); - - $('button.load_customer_shipping').click(function(){ - - var answer = confirm(woocommerce_admin_meta_boxes.load_shipping); - if (answer){ - - // Get user ID to load data for - var user_id = $('#customer_user').val(); - - if (!user_id) { - alert(woocommerce_admin_meta_boxes.no_customer_selected); - return false; - } - - var data = { - user_id: user_id, - type_to_load: 'shipping', - action: 'woocommerce_get_customer_details', - security: woocommerce_admin_meta_boxes.get_customer_details_nonce - }; - - $(this).closest('.edit_address').block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', opacity: 0.6 } }); - - $.ajax({ - url: woocommerce_admin_meta_boxes.ajax_url, - data: data, - type: 'POST', - success: function( response ) { - var info = response; - - if (info) { - $('input#_shipping_first_name').val( info.shipping_first_name ); - $('input#_shipping_last_name').val( info.shipping_last_name ); - $('input#_shipping_company').val( info.shipping_company ); - $('input#_shipping_address_1').val( info.shipping_address_1 ); - $('input#_shipping_address_2').val( info.shipping_address_2 ); - $('input#_shipping_city').val( info.shipping_city ); - $('input#_shipping_postcode').val( info.shipping_postcode ); - $('#_shipping_country').val( info.shipping_country ); - $('input#_shipping_state').val( info.shipping_state ); - } - - $('.edit_address').unblock(); - } - }); - } - return false; - }); - - $('button.billing-same-as-shipping').click(function(){ - var answer = confirm(woocommerce_admin_meta_boxes.copy_billing); - if (answer){ - $('input#_shipping_first_name').val( $('input#_billing_first_name').val() ); - $('input#_shipping_last_name').val( $('input#_billing_last_name').val() ); - $('input#_shipping_company').val( $('input#_billing_company').val() ); - $('input#_shipping_address_1').val( $('input#_billing_address_1').val() ); - $('input#_shipping_address_2').val( $('input#_billing_address_2').val() ); - $('input#_shipping_city').val( $('input#_billing_city').val() ); - $('input#_shipping_postcode').val( $('input#_billing_postcode').val() ); - $('#_shipping_country').val( $('#_billing_country').val() ); - $('input#_shipping_state').val( $('input#_billing_state').val() ); - } - return false; - }); - - $('.totals_group').on('click','a.add_total_row',function(){ - $(this).closest('.totals_group').find('.total_rows').append( $(this).data( 'row' ) ); - return false; - }); - - $('.total_rows').on('click','a.delete_total_row',function(){ - $row = $(this).closest('.total_row'); - - var row_id = $row.attr( 'data-order_item_id' ); - - if ( row_id ) { - $row.append('').hide(); - } else { - $row.remove(); - } - - return false; - }); - - // Order notes - $('#woocommerce-order-notes').on( 'click', 'a.add_note', function() { - if ( ! $('textarea#add_order_note').val() ) return; - - $('#woocommerce-order-notes').block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', opacity: 0.6 } }); - var data = { - action: 'woocommerce_add_order_note', - post_id: woocommerce_admin_meta_boxes.post_id, - note: $('textarea#add_order_note').val(), - note_type: $('select#order_note_type').val(), - security: woocommerce_admin_meta_boxes.add_order_note_nonce, - }; - - $.post( woocommerce_admin_meta_boxes.ajax_url, data, function(response) { - $('ul.order_notes').prepend( response ); - $('#woocommerce-order-notes').unblock(); - $('#add_order_note').val(''); - }); - - return false; - - }); - - $('#woocommerce-order-notes').on( 'click', 'a.delete_note', function() { - var note = $(this).closest('li.note'); - $(note).block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', opacity: 0.6 } }); - - var data = { - action: 'woocommerce_delete_order_note', - note_id: $(note).attr('rel'), - security: woocommerce_admin_meta_boxes.delete_order_note_nonce, - }; - - $.post( woocommerce_admin_meta_boxes.ajax_url, data, function(response) { - $(note).remove(); - }); - - return false; - }); - - // PRODUCT TYPE SPECIFIC OPTIONS - $('select#product-type').change(function(){ - - // Get value - var select_val = $(this).val(); - - if (select_val=='variable') { - $('input#_manage_stock').change(); - $('input#_downloadable').prop('checked', false); - $('input#_virtual').removeAttr('checked'); - } - - else if (select_val=='grouped') { - $('input#_downloadable').prop('checked', false); - $('input#_virtual').removeAttr('checked'); - } - - else if (select_val=='external') { - $('input#_downloadable').prop('checked', false); - $('input#_virtual').removeAttr('checked'); - } - - show_and_hide_panels(); - - $('ul.wc-tabs li:visible').eq(0).find('a').click(); - - $('body').trigger('woocommerce-product-type-change', select_val, $(this) ); - - }).change(); - - $('ul.wc-tabs li:visible').eq(0).find('a').click(); - - $('input#_downloadable, input#_virtual').change(function(){ - show_and_hide_panels(); - }); - - function show_and_hide_panels() { - var product_type = $('select#product-type').val(); - var is_virtual = $('input#_virtual:checked').size(); - var is_downloadable = $('input#_downloadable:checked').size(); - - // Hide/Show all with rules - var hide_classes = '.hide_if_downloadable, .hide_if_virtual'; - var show_classes = '.show_if_downloadable, .show_if_virtual, .show_if_external'; - - $.each( woocommerce_admin_meta_boxes.product_types, function( index, value ) { - hide_classes = hide_classes + ', .hide_if_' + value; - show_classes = show_classes + ', .show_if_' + value; - } ); - - $( hide_classes ).show(); - $( show_classes ).hide(); - - // Shows rules - if ( is_downloadable ) { - $('.show_if_downloadable').show(); - } - if ( is_virtual ) { - $('.show_if_virtual').show(); - } - - $('.show_if_' + product_type).show(); - - // Hide rules - if ( is_downloadable ) { - $('.hide_if_downloadable').hide(); - } - if ( is_virtual ) { - $('.hide_if_virtual').hide(); - } - - $('.hide_if_' + product_type).hide(); - - $('input#_manage_stock').change(); - } - - - // Sale price schedule - $('.sale_price_dates_fields').each(function() { - - var $these_sale_dates = $(this); - var sale_schedule_set = false; - var $wrap = $these_sale_dates.closest( 'div, table' ); - - $these_sale_dates.find('input').each(function(){ - if ( $(this).val() != '' ) - sale_schedule_set = true; - }); - - if ( sale_schedule_set ) { - - $wrap.find('.sale_schedule').hide(); - $wrap.find('.sale_price_dates_fields').show(); - - } else { - - $wrap.find('.sale_schedule').show(); - $wrap.find('.sale_price_dates_fields').hide(); - - } - - }); - - $('#woocommerce-product-data').on( 'click', '.sale_schedule', function() { - var $wrap = $(this).closest( 'div, table' ); - - $(this).hide(); - $wrap.find('.cancel_sale_schedule').show(); - $wrap.find('.sale_price_dates_fields').show(); - - return false; - }); - $('#woocommerce-product-data').on( 'click', '.cancel_sale_schedule', function() { - var $wrap = $(this).closest( 'div, table' ); - - $(this).hide(); - $wrap.find('.sale_schedule').show(); - $wrap.find('.sale_price_dates_fields').hide(); - $wrap.find('.sale_price_dates_fields').find('input').val(''); - - return false; - }); - - // File inputs - $('.downloadable_files').on('click','a.insert',function(){ - $(this).closest('.downloadable_files').find('tbody').append( $(this).data( 'row' ) ); - return false; - }); - $('.downloadable_files').on('click','a.delete',function(){ - $(this).closest('tr').remove(); - return false; - }); - - - // STOCK OPTIONS - $('input#_manage_stock').change(function(){ - if ($(this).is(':checked')) $('div.stock_fields').show(); - else $('div.stock_fields').hide(); - }).change(); - - - // DATE PICKER FIELDS - var dates = $( ".sale_price_dates_fields input" ).datepicker({ - defaultDate: "", - dateFormat: "yy-mm-dd", - numberOfMonths: 1, - showButtonPanel: true, - showOn: "button", - buttonImage: woocommerce_admin_meta_boxes.calendar_image, - buttonImageOnly: true, - onSelect: function( selectedDate ) { - var option = $(this).is('#_sale_price_dates_from, .sale_price_dates_from') ? "minDate" : "maxDate"; - - var instance = $( this ).data( "datepicker" ), - date = $.datepicker.parseDate( - instance.settings.dateFormat || - $.datepicker._defaults.dateFormat, - selectedDate, instance.settings ); - dates.not( this ).datepicker( "option", option, date ); - } + return terms; }); $( ".date-picker" ).datepicker({ @@ -1171,417 +147,23 @@ jQuery( function($){ showButtonPanel: true, }); - // META BOXES + // META BOXES - Open/close + jQuery('.wc-metaboxes-wrapper').on('click', '.wc-metabox h3', function(event){ + // If the user clicks on some form input inside the h3, like a select list (for variations), the box should not be toggled + if ($(event.target).filter(':input, option').length) return; - // Open/close - jQuery('.wc-metaboxes-wrapper').on('click', '.wc-metabox h3', function(event){ - // If the user clicks on some form input inside the h3, like a select list (for variations), the box should not be toggled - if ($(event.target).filter(':input, option').length) return; - - jQuery(this).next('.wc-metabox-content').toggle(); - }) - .on('click', '.expand_all', function(event){ - jQuery(this).closest('.wc-metaboxes-wrapper').find('.wc-metabox > table').show(); - return false; - }) - .on('click', '.close_all', function(event){ - jQuery(this).closest('.wc-metaboxes-wrapper').find('.wc-metabox > table').hide(); - return false; - }); - - jQuery('.wc-metabox.closed').each(function(){ - jQuery(this).find('.wc-metabox-content').hide(); - }); - - // ATTRIBUTE TABLES - - // Multiselect attributes - $(".product_attributes select.multiselect").chosen(); - - // Initial order - var woocommerce_attribute_items = $('.product_attributes').find('.woocommerce_attribute').get(); - - woocommerce_attribute_items.sort(function(a, b) { - var compA = parseInt($(a).attr('rel')); - var compB = parseInt($(b).attr('rel')); - return (compA < compB) ? -1 : (compA > compB) ? 1 : 0; - }) - $(woocommerce_attribute_items).each( function(idx, itm) { $('.product_attributes').append(itm); } ); - - function attribute_row_indexes() { - $('.product_attributes .woocommerce_attribute').each(function(index, el){ - $('.attribute_position', el).val( parseInt( $(el).index('.product_attributes .woocommerce_attribute') ) ); - }); - }; - - // Add rows - $('button.add_attribute').on('click', function(){ - - var size = $('.product_attributes .woocommerce_attribute').size(); - - var attribute_type = $('select.attribute_taxonomy').val(); - - if (!attribute_type) { - - var product_type = $('select#product-type').val(); - if (product_type!='variable') enable_variation = 'style="display:none;"'; else enable_variation = ''; - - // Add custom attribute row - $('.product_attributes').append('
    \ -

    \ - \ -
    \ - \ -

    \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ -
    \ - \ - \ - \ - \ - \ - \ - \ -
    \ - \ -
    \ -
    \ - \ -
    \ -
    \ -
    '); - - } else { - - // Reveal taxonomy row - var thisrow = $('.product_attributes .woocommerce_attribute.' + attribute_type); - $('.product_attributes').append( $(thisrow) ); - $(thisrow).show().find('.woocommerce_attribute_data').show(); - attribute_row_indexes(); - - } - - $('select.attribute_taxonomy').val(''); - }); - - $('.product_attributes').on('blur', 'input.attribute_name', function(){ - $(this).closest('.woocommerce_attribute').find('strong.attribute_name').text( $(this).val() ); - }); - - $('.product_attributes').on('click', 'button.select_all_attributes', function(){ - $(this).closest('td').find('select option').attr("selected","selected"); - $(this).closest('td').find('select').trigger("chosen:updated"); - return false; - }); - - $('.product_attributes').on('click', 'button.select_no_attributes', function(){ - $(this).closest('td').find('select option').removeAttr("selected"); - $(this).closest('td').find('select').trigger("chosen:updated"); - return false; - }); - - $('.product_attributes').on('click', 'button.remove_row', function() { - var answer = confirm(woocommerce_admin_meta_boxes.remove_attribute); - if (answer){ - var $parent = $(this).parent().parent(); - - if ($parent.is('.taxonomy')) { - $parent.find('select, input[type=text]').val(''); - $parent.hide(); - } else { - $parent.find('select, input[type=text]').val(''); - $parent.hide(); - attribute_row_indexes(); - } - } - return false; - }); - - // Attribute ordering - $('.product_attributes').sortable({ - items:'.woocommerce_attribute', - cursor:'move', - axis:'y', - handle: 'h3', - scrollSensitivity:40, - forcePlaceholderSize: true, - helper: 'clone', - opacity: 0.65, - placeholder: 'wc-metabox-sortable-placeholder', - start:function(event,ui){ - ui.item.css('background-color','#f6f6f6'); - }, - stop:function(event,ui){ - ui.item.removeAttr('style'); - attribute_row_indexes(); - } - }); - - // Add a new attribute (via ajax) - $('.product_attributes').on('click', 'button.add_new_attribute', function() { - - $('.product_attributes').block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', opacity: 0.6 } }); - - var attribute = $(this).attr('data-attribute'); - var $wrapper = $(this).closest('.woocommerce_attribute_data'); - var new_attribute_name = prompt( woocommerce_admin_meta_boxes.new_attribute_prompt ); - - if ( new_attribute_name ) { - - var data = { - action: 'woocommerce_add_new_attribute', - taxonomy: attribute, - term: new_attribute_name, - security: woocommerce_admin_meta_boxes.add_attribute_nonce - }; - - $.post( woocommerce_admin_meta_boxes.ajax_url, data, function( response ) { - - if ( response.error ) { - // Error - alert( response.error ); - } else if ( response.slug ) { - // Success - $wrapper.find('select.attribute_values').append(''); - $wrapper.find('select.attribute_values').trigger("chosen:updated"); - } - - $('.product_attributes').unblock(); - - }); - - } else { - $('.product_attributes').unblock(); - } - - return false; - - }); - - // Save attributes and update variations - $('.save_attributes').on('click', function(){ - - $('.product_attributes').block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', opacity: 0.6 } }); - - var data = { - post_id: woocommerce_admin_meta_boxes.post_id, - data: $('.product_attributes').find('input, select, textarea').serialize(), - action: 'woocommerce_save_attributes', - security: woocommerce_admin_meta_boxes.save_attributes_nonce - }; - - $.post( woocommerce_admin_meta_boxes.ajax_url, data, function( response ) { - - var this_page = window.location.toString(); - - this_page = this_page.replace( 'post-new.php?', 'post.php?post=' + woocommerce_admin_meta_boxes.post_id + '&action=edit&' ); - - // Load variations panel - $('#variable_product_options').block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', opacity: 0.6 } }); - $('#variable_product_options').load( this_page + ' #variable_product_options_inner', function() { - $('#variable_product_options').unblock(); - } ); - - $('.product_attributes').unblock(); - - }); - - }); - - // Uploading files - var downloadable_file_frame; - var file_path_field; - - jQuery(document).on( 'click', '.upload_file_button', function( event ){ - - var $el = $(this); - - file_path_field = $el.closest('tr').find('td.file_url input'); - - event.preventDefault(); - - // If the media frame already exists, reopen it. - if ( downloadable_file_frame ) { - downloadable_file_frame.open(); - return; - } - - var downloadable_file_states = [ - // Main states. - new wp.media.controller.Library({ - library: wp.media.query(), - multiple: true, - title: $el.data('choose'), - priority: 20, - filterable: 'uploaded', - }) - ]; - - // Create the media frame. - downloadable_file_frame = wp.media.frames.downloadable_file = wp.media({ - // Set the title of the modal. - title: $el.data('choose'), - library: { - type: '' - }, - button: { - text: $el.data('update'), - }, - multiple: true, - states: downloadable_file_states, - }); - - // When an image is selected, run a callback. - downloadable_file_frame.on( 'select', function() { - - var file_path = ''; - var selection = downloadable_file_frame.state().get('selection'); - - selection.map( function( attachment ) { - - attachment = attachment.toJSON(); - - if ( attachment.url ) - file_path = attachment.url - - } ); - - file_path_field.val( file_path ); - }); - - // Set post to 0 and set our custom type - downloadable_file_frame.on( 'ready', function() { - downloadable_file_frame.uploader.options.uploader.params = { - type: 'downloadable_product' - }; - }); - - // Finally, open the modal. - downloadable_file_frame.open(); + jQuery(this).next('.wc-metabox-content').toggle(); + }) + .on('click', '.expand_all', function(event){ + jQuery(this).closest('.wc-metaboxes-wrapper').find('.wc-metabox > table').show(); + return false; + }) + .on('click', '.close_all', function(event){ + jQuery(this).closest('.wc-metaboxes-wrapper').find('.wc-metabox > table').hide(); + return false; + }); + jQuery('.wc-metabox.closed').each(function(){ + jQuery(this).find('.wc-metabox-content').hide(); }); - // Download ordering - jQuery('.downloadable_files tbody').sortable({ - items:'tr', - cursor:'move', - axis:'y', - handle: 'td.sort', - scrollSensitivity:40, - forcePlaceholderSize: true, - helper: 'clone', - opacity: 0.65, - }); - - // Product gallery file uploads - var product_gallery_frame; - var $image_gallery_ids = $('#product_image_gallery'); - var $product_images = $('#product_images_container ul.product_images'); - - jQuery('.add_product_images').on( 'click', 'a', function( event ) { - var $el = $(this); - var attachment_ids = $image_gallery_ids.val(); - - event.preventDefault(); - - // If the media frame already exists, reopen it. - if ( product_gallery_frame ) { - product_gallery_frame.open(); - return; - } - - // Create the media frame. - product_gallery_frame = wp.media.frames.downloadable_file = wp.media({ - // Set the title of the modal. - title: $el.data('choose'), - button: { - text: $el.data('update'), - }, - multiple: true - }); - - // When an image is selected, run a callback. - product_gallery_frame.on( 'select', function() { - - var selection = product_gallery_frame.state().get('selection'); - - selection.map( function( attachment ) { - - attachment = attachment.toJSON(); - - if ( attachment.id ) { - attachment_ids = attachment_ids ? attachment_ids + "," + attachment.id : attachment.id; - - $product_images.append('\ -
  • \ - \ - \ -
  • '); - } - - }); - - $image_gallery_ids.val( attachment_ids ); - }); - - // Finally, open the modal. - product_gallery_frame.open(); - }); - - // Image ordering - $product_images.sortable({ - items: 'li.image', - cursor: 'move', - scrollSensitivity:40, - forcePlaceholderSize: true, - forceHelperSize: false, - helper: 'clone', - opacity: 0.65, - placeholder: 'wc-metabox-sortable-placeholder', - start:function(event,ui){ - ui.item.css('background-color','#f6f6f6'); - }, - stop:function(event,ui){ - ui.item.removeAttr('style'); - }, - update: function(event, ui) { - var attachment_ids = ''; - - $('#product_images_container ul li.image').css('cursor','default').each(function() { - var attachment_id = jQuery(this).attr( 'data-attachment_id' ); - attachment_ids = attachment_ids + attachment_id + ','; - }); - - $image_gallery_ids.val( attachment_ids ); - } - }); - - // Remove images - $('#product_images_container').on( 'click', 'a.delete', function() { - $(this).closest('li.image').remove(); - - var attachment_ids = ''; - - $('#product_images_container ul li.image').css('cursor','default').each(function() { - var attachment_id = jQuery(this).attr( 'data-attachment_id' ); - attachment_ids = attachment_ids + attachment_id + ','; - }); - - $image_gallery_ids.val( attachment_ids ); - - return false; - }); -}); \ No newline at end of file +}); diff --git a/assets/js/admin/meta-boxes.min.js b/assets/js/admin/meta-boxes.min.js index e2811d838c3..3ec3b6c191b 100644 --- a/assets/js/admin/meta-boxes.min.js +++ b/assets/js/admin/meta-boxes.min.js @@ -1,2 +1 @@ -jQuery(function(e){function t(){var t=e("select#product-type").val(),n=e("input#_virtual:checked").size(),r=e("input#_downloadable:checked").size(),i=".hide_if_downloadable, .hide_if_virtual",s=".show_if_downloadable, .show_if_virtual, .show_if_external";e.each(woocommerce_admin_meta_boxes.product_types,function(e,t){i=i+", .hide_if_"+t;s=s+", .show_if_"+t});e(i).show();e(s).hide();r&&e(".show_if_downloadable").show();n&&e(".show_if_virtual").show();e(".show_if_"+t).show();r&&e(".hide_if_downloadable").hide();n&&e(".hide_if_virtual").hide();e(".hide_if_"+t).hide();e("input#_manage_stock").change()}function i(){e(".product_attributes .woocommerce_attribute").each(function(t,n){e(".attribute_position",n).val(parseInt(e(n).index(".product_attributes .woocommerce_attribute")))})}e("#titlediv #title").keyup(function(t){var n=t.keyCode||t.which;if(n=="9"&&e("#woocommerce-coupon-description").size()>0){t.stopPropagation();e("#woocommerce-coupon-description").focus();return!1}});e("select#discount_type").change(function(){var t=e(this).val();t=="fixed_product"||t=="percent_product"?e(".limit_usage_to_x_items_field").show():e(".limit_usage_to_x_items_field").hide()}).change();e(function(){e('[id$="-all"] > ul.categorychecklist').each(function(){var t=e(this),n=t.find(":checked").first();if(!n.length)return;var r=t.find("input").position().top,i=n.position().top;t.closest(".tabs-panel").scrollTop(i-r+5)})});e("#upsell_product_data").bind("keypress",function(e){if(e.keyCode==13)return!1});e(".type_box").appendTo("#woocommerce-product-data h3.hndle span");e(function(){e("#woocommerce-product-data h3.hndle").unbind("click.postboxes");jQuery("#woocommerce-product-data").on("click","h3.hndle",function(t){if(e(t.target).filter("input, option, label, select").length)return;e("#woocommerce-product-data").toggleClass("closed")})});e(function(){jQuery(".wc-metabox > h3").click(function(t){e(this).parent(".wc-metabox").toggleClass("closed").toggleClass("open")})});e("#order-emails a.show-order-emails").click(function(){if(e("#order-emails-select").is(":hidden")){e("#order-emails-select").slideDown("fast");e(this).hide()}return!1});e("#order-emails a.hide-order-emails").click(function(){e('input[name="order_email[]"]').each(function(){e(this).attr("checked",!1)});if(e("#order-emails-select").is(":visible")){e("#order-emails-select").slideUp("fast");e("#order-emails a.show-order-emails").show()}return!1});e("#catalog-visibility .edit-catalog-visibility").click(function(){if(e("#catalog-visibility-select").is(":hidden")){e("#catalog-visibility-select").slideDown("fast");e(this).hide()}return!1});e("#catalog-visibility .save-post-visibility").click(function(){e("#catalog-visibility-select").slideUp("fast");e("#catalog-visibility .edit-catalog-visibility").show();var t=e("input[name=_visibility]:checked").val(),n=e("input[name=_visibility]:checked").attr("data-label");if(e("input[name=_featured]").is(":checked")){n=n+", "+woocommerce_admin_meta_boxes.featured_label;e("input[name=_featured]").attr("checked","checked")}e("#catalog-visibility-display").text(n);return!1});e("#catalog-visibility .cancel-post-visibility").click(function(){e("#catalog-visibility-select").slideUp("fast");e("#catalog-visibility .edit-catalog-visibility").show();var t=e("#current_visibility").val(),n=e("#current_featured").val();e("input[name=_visibility]").removeAttr("checked");e("input[name=_visibility][value="+t+"]").attr("checked","checked");var r=e("input[name=_visibility]:checked").attr("data-label");if(n=="yes"){r=r+", "+woocommerce_admin_meta_boxes.featured_label;e("input[name=_featured]").attr("checked","checked")}else e("input[name=_featured]").removeAttr("checked");e("#catalog-visibility-display").text(r);return!1});e("ul.wc-tabs").show();e("div.panel-wrap").each(function(){e(this).find("div.panel:not(:first)").hide()});e("ul.wc-tabs a").click(function(){var t=e(this).closest("div.panel-wrap");e("ul.wc-tabs li",t).removeClass("active");e(this).parent().addClass("active");e("div.panel",t).hide();e(e(this).attr("href")).show();return!1});jQuery("select.chosen_select").chosen();jQuery("select.chosen_select_nostd").chosen({allow_single_deselect:"true"});jQuery("select.ajax_chosen_select_products").ajaxChosen({method:"GET",url:woocommerce_admin_meta_boxes.ajax_url,dataType:"json",afterTypeDelay:100,data:{action:"woocommerce_json_search_products",security:woocommerce_admin_meta_boxes.search_products_nonce}},function(t){var n={};e.each(t,function(e,t){n[e]=t});return n});jQuery("select.ajax_chosen_select_products_and_variations").ajaxChosen({method:"GET",url:woocommerce_admin_meta_boxes.ajax_url,dataType:"json",afterTypeDelay:100,data:{action:"woocommerce_json_search_products_and_variations",security:woocommerce_admin_meta_boxes.search_products_nonce}},function(t){var n={};e.each(t,function(e,t){n[e]=t});return n});jQuery("select.ajax_chosen_select_downloadable_products_and_variations").ajaxChosen({method:"GET",url:woocommerce_admin_meta_boxes.ajax_url,dataType:"json",afterTypeDelay:100,data:{action:"woocommerce_json_search_downloadable_products_and_variations",security:woocommerce_admin_meta_boxes.search_products_nonce}},function(t){var n={};e.each(t,function(e,t){n[e]=t});return n});jQuery("#woocommerce-order-actions input, #woocommerce-order-actions a").click(function(){window.onbeforeunload=""});e("a.edit_address").click(function(t){e(this).hide();e(this).closest(".order_data_column").find("div.address").hide();e(this).closest(".order_data_column").find("div.edit_address").show();t.preventDefault()});e("#order_items_list").on("init_row","tr.item",function(){var t=e(this),n=t.find("input.quantity"),r=n.val(),i=t.find("input.line_subtotal").val(),s=t.find("input.line_total").val(),o=t.find("input.line_tax").val(),u=t.find("input.line_subtotal_tax").val();if(r){unit_subtotal=parseFloat(accounting.toFixed(i/r,woocommerce_admin_meta_boxes.rounding_precision));unit_subtotal_tax=parseFloat(accounting.toFixed(u/r,woocommerce_admin_meta_boxes.rounding_precision));unit_total=parseFloat(accounting.toFixed(s/r,woocommerce_admin_meta_boxes.rounding_precision));unit_total_tax=parseFloat(accounting.toFixed(o/r,woocommerce_admin_meta_boxes.rounding_precision))}else unit_subtotal=unit_subtotal_tax=unit_total=unit_total_tax=0;n.attr("data-o_qty",r);t.attr("data-unit_subtotal",unit_subtotal);t.attr("data-unit_subtotal_tax",unit_subtotal_tax);t.attr("data-unit_total",unit_total);t.attr("data-unit_total_tax",unit_total_tax)});e("#order_items_list tr.item").each(function(){e(this).trigger("init_row");e(this).find(".edit").hide()});e("#order_items_list").on("click","a.edit_order_item",function(){e(this).closest("tr").find(".view").hide();e(this).closest("tr").find(".edit").show();e(this).hide();return!1});e("#order_items_list").on("change","input.quantity",function(){var t=e(this).closest("tr.item"),n=e(this).val(),r=t.attr("data-unit_subtotal"),i=t.attr("data-unit_subtotal_tax"),s=t.attr("data-unit_total"),o=t.attr("data-unit_total_tax"),u=e(this).attr("data-o_qty"),a=parseFloat(accounting.formatNumber(r*n,woocommerce_admin_meta_boxes.rounding_precision,"")),f=parseFloat(accounting.formatNumber(i*n,woocommerce_admin_meta_boxes.rounding_precision,"")),l=parseFloat(accounting.formatNumber(s*n,woocommerce_admin_meta_boxes.rounding_precision,"")),c=parseFloat(accounting.formatNumber(o*n,woocommerce_admin_meta_boxes.rounding_precision,""));t.find("input.line_subtotal").val(a);t.find("input.line_total").val(l);t.find("input.line_subtotal_tax").val(f);t.find("input.line_tax").val(c);e(this).trigger("quantity_changed")});e("#order_items_list").on("change","input.line_subtotal",function(){var t=e(this).closest("tr.item"),n=t.find("input.quantity"),r=n.val(),i=r?accounting.toFixed(e(this).val()/r,woocommerce_admin_meta_boxes.rounding_precision):0;t.attr("data-unit_subtotal",i)});e("#order_items_list").on("change","input.line_total",function(){var t=e(this).closest("tr.item"),n=t.find("input.quantity"),r=n.val(),i=r?accounting.toFixed(e(this).val()/r,woocommerce_admin_meta_boxes.rounding_precision):0;t.attr("data-unit_total",i)});e("#order_items_list").on("change","input.line_subtotal_tax",function(){var t=e(this).closest("tr.item"),n=t.find("input.quantity"),r=n.val(),i=r?accounting.toFixed(e(this).val()/r,woocommerce_admin_meta_boxes.rounding_precision):0;t.attr("data-unit_subtotal_tax",i)});e("#order_items_list").on("change","input.line_tax",function(){var t=e(this).closest("tr.item"),n=t.find("input.quantity"),r=n.val(),i=r?accounting.toFixed(e(this).val()/r,woocommerce_admin_meta_boxes.rounding_precision):0;t.attr("data-unit_total_tax",i)});e("#woocommerce-order-totals").on("change input",".order_taxes_amount, .order_taxes_shipping_amount, .shipping_cost, #_order_discount",function(){var t=e(this),n=t.closest(".totals_group").find("input[type=number], .wc_input_price"),r=0;n.each(function(){e(this).val()&&(r+=accounting.unformat(e(this).val(),woocommerce_admin.mon_decimal_point))});if(t.is(".order_taxes_amount")||t.is(".order_taxes_shipping_amount"))r=round(r,woocommerce_admin_meta_boxes.currency_format_num_decimals,woocommerce_admin_meta_boxes.tax_rounding_mode);var i=accounting.formatMoney(r,{symbol:woocommerce_admin_meta_boxes.currency_format_symbol,decimal:woocommerce_admin_meta_boxes.currency_format_decimal_sep,thousand:woocommerce_admin_meta_boxes.currency_format_thousand_sep,precision:woocommerce_admin_meta_boxes.currency_format_num_decimals,format:woocommerce_admin_meta_boxes.currency_format});t.closest(".totals_group").find("span.inline_total").text(i)});e("span.inline_total").closest(".totals_group").find("input").change();e("button.calc_line_taxes").click(function(){e(".woocommerce_order_items_wrapper").block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});var t=confirm(woocommerce_admin_meta_boxes.calc_line_taxes);if(t){var n=e("#order_items_list").find("tr.item, tr.fee"),r=e("#_shipping_country").val(),i=e("#_billing_country").val();if(r)var s=r,o=e("#_shipping_state").val(),u=e("#_shipping_postcode").val(),a=e("#_shipping_city").val();else if(i)var s=i,o=e("#_billing_state").val(),u=e("#_billing_postcode").val(),a=e("#_billing_city").val();else var s=woocommerce_admin_meta_boxes.base_country,o="",u="",a="";var f={};n.each(function(){var t=e(this),n=t.find("input.order_item_id").val(),r=t.find("input.line_subtotal").val(),i=t.find("input.line_total").val(),s=t.find("select.tax_class").val();f[n]={};f[n].line_subtotal=r;f[n].line_total=i;f[n].tax_class=s});order_shipping=0;e("#shipping_rows").find("input[type=number], .wc_input_price").each(function(){cost=e(this).val()||"0";cost=accounting.unformat(cost,woocommerce_admin.mon_decimal_point);order_shipping+=parseFloat(cost)});var l={action:"woocommerce_calc_line_taxes",order_id:woocommerce_admin_meta_boxes.post_id,items:f,shipping:order_shipping,country:s,state:o,postcode:u,city:a,security:woocommerce_admin_meta_boxes.calc_totals_nonce};e.post(woocommerce_admin_meta_boxes.ajax_url,l,function(t){if(t){n.each(function(){var n=e(this),r=n.find("input.order_item_id").val();n.find(".edit_order_item").click();if(t.item_taxes[r]){n.find("input.line_tax").val(t.item_taxes[r].line_tax).change();n.find("input.line_subtotal_tax").val(t.item_taxes[r].line_subtotal_tax).change()}t.tax_row_html&&e("#tax_rows").empty().append(t.tax_row_html)});e("#tax_rows").find("input").change()}e(".woocommerce_order_items_wrapper").unblock()})}else e(".woocommerce_order_items_wrapper").unblock();return!1});e("button.calc_totals").click(function(){e("#woocommerce-order-totals").block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});var t=confirm(woocommerce_admin_meta_boxes.calc_totals);if(t){var n=0,r=0,i=0,s=e("#_order_discount").val()||"0";s=accounting.unformat(s.replace(",","."));e("#shipping_rows").find("input[type=number], .wc_input_price").each(function(){cost=e(this).val()||"0";cost=accounting.unformat(cost,woocommerce_admin.mon_decimal_point);i+=parseFloat(cost)});e("#tax_rows").find("input[type=number], .wc_input_price").each(function(){cost=e(this).val()||"0";cost=accounting.unformat(cost,woocommerce_admin.mon_decimal_point);r+=parseFloat(cost)});e("#order_items_list tr.item, #order_items_list tr.fee").each(function(){line_total=e(this).find("input.line_total").val()||"0";n+=accounting.unformat(line_total.replace(",","."))});woocommerce_admin_meta_boxes.round_at_subtotal=="yes"&&(r=parseFloat(accounting.toFixed(r,woocommerce_admin_meta_boxes.rounding_precision)));e("#_order_total").val(accounting.formatNumber(n+r+i-s,woocommerce_admin_meta_boxes.currency_format_num_decimals,"",woocommerce_admin.mon_decimal_point)).change()}e("#woocommerce-order-totals").unblock();return!1});e("#woocommerce-order-items button.add_order_item").click(function(){var t=e("select#add_item_id").val();if(t){count=t.length;e("table.woocommerce_order_items").block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});e.each(t,function(t,n){var r={action:"woocommerce_add_order_item",item_to_add:n,order_id:woocommerce_admin_meta_boxes.post_id,security:woocommerce_admin_meta_boxes.order_item_nonce};e.post(woocommerce_admin_meta_boxes.ajax_url,r,function(t){e("table.woocommerce_order_items tbody#order_items_list").append(t);if(!--count){e("select#add_item_id, #add_item_id_chosen .chosen-choices").css("border-color","").val("");jQuery(".tips").tipTip({attribute:"data-tip",fadeIn:50,fadeOut:50,delay:200});e("select#add_item_id").trigger("chosen:updated");e("table.woocommerce_order_items").unblock()}e("#order_items_list tr.new_row").trigger("init_row").removeClass("new_row")})})}else e("select#add_item_id, #add_item_id_chosen .chosen-choices").css("border-color","red");return!1});e("#woocommerce-order-items button.add_order_fee").click(function(){e("table.woocommerce_order_items").block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});var t={action:"woocommerce_add_order_fee",order_id:woocommerce_admin_meta_boxes.post_id,security:woocommerce_admin_meta_boxes.order_item_nonce};e.post(woocommerce_admin_meta_boxes.ajax_url,t,function(t){e("table.woocommerce_order_items tbody#order_items_list").append(t);e("table.woocommerce_order_items").unblock()});return!1});e("#order_items_list").on("click","button.add_order_item_meta",function(){var t=e(this),n=t.closest("tr.item"),r={order_item_id:n.attr("data-order_item_id"),action:"woocommerce_add_order_item_meta",security:woocommerce_admin_meta_boxes.order_item_nonce};e("table.woocommerce_order_items").block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});e.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:r,type:"POST",success:function(t){n.find("tbody.meta_items").append(t);e("table.woocommerce_order_items").unblock()}});return!1});e("#order_items_list").on("click","button.remove_order_item_meta",function(){var t=confirm(woocommerce_admin_meta_boxes.remove_item_meta);if(t){var n=e(this).closest("tr"),r={meta_id:n.attr("data-meta_id"),action:"woocommerce_remove_order_item_meta",security:woocommerce_admin_meta_boxes.order_item_nonce};e("table.woocommerce_order_items").block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});e.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:r,type:"POST",success:function(t){n.hide();e("table.woocommerce_order_items").unblock()}})}return!1});e("#woocommerce-order-items").on("click","input.check-column",function(){e(this).is(":checked")?e("#woocommerce-order-items").find(".check-column input").attr("checked","checked"):e("#woocommerce-order-items").find(".check-column input").removeAttr("checked")});e("#woocommerce-order-items").on("click",".do_bulk_action",function(){var t=e(this).closest(".bulk_actions").find("select").val(),n=e("#woocommerce-order-items").find(".check-column input:checked"),r=[];e(n).each(function(){var t=e(this).closest("tr.item, tr.fee");r.push(t.attr("data-order_item_id"))});if(r.length==0){alert(woocommerce_admin_meta_boxes.i18n_select_items);return}if(t=="delete"){var i=confirm(woocommerce_admin_meta_boxes.remove_item_notice);if(i){e("table.woocommerce_order_items").block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});var s={order_item_ids:r,action:"woocommerce_remove_order_item",security:woocommerce_admin_meta_boxes.order_item_nonce};e.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:s,type:"POST",success:function(t){e(n).each(function(){e(this).closest("tr.item, tr.fee").remove()});e("table.woocommerce_order_items").unblock()}})}}else if(t=="reduce_stock"){e("table.woocommerce_order_items").block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});var o={};e(n).each(function(){var t=e(this).closest("tr.item, tr.fee"),n=t.find("input.quantity");o[t.attr("data-order_item_id")]=n.val()});var s={order_id:woocommerce_admin_meta_boxes.post_id,order_item_ids:r,order_item_qty:o,action:"woocommerce_reduce_order_item_stock",security:woocommerce_admin_meta_boxes.order_item_nonce};e.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:s,type:"POST",success:function(t){alert(t);e("table.woocommerce_order_items").unblock()}})}else if(t=="increase_stock"){e("table.woocommerce_order_items").block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});var o={};e(n).each(function(){var t=e(this).closest("tr.item, tr.fee"),n=t.find("input.quantity");o[t.attr("data-order_item_id")]=n.val()});var s={order_id:woocommerce_admin_meta_boxes.post_id,order_item_ids:r,order_item_qty:o,action:"woocommerce_increase_order_item_stock",security:woocommerce_admin_meta_boxes.order_item_nonce};e.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:s,type:"POST",success:function(t){alert(t);e("table.woocommerce_order_items").unblock()}})}return!1});e(".order_download_permissions").on("click","button.grant_access",function(){var t=e("select#grant_access_id").val();if(!t)return;e(".order_download_permissions").block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});var n={action:"woocommerce_grant_access_to_download",product_ids:t,loop:e(".order_download_permissions .wc-metabox").size(),order_id:woocommerce_admin_meta_boxes.post_id,security:woocommerce_admin_meta_boxes.grant_access_nonce};e.post(woocommerce_admin_meta_boxes.ajax_url,n,function(t){t?e(".order_download_permissions .wc-metaboxes").append(t):alert(woocommerce_admin_meta_boxes.i18n_download_permission_fail);e(".date-picker").datepicker({dateFormat:"yy-mm-dd",numberOfMonths:1,showButtonPanel:!0,showOn:"button",buttonImage:woocommerce_admin_meta_boxes.calendar_image,buttonImageOnly:!0});e("#grant_access_id").val("").trigger("chosen:updated");e(".order_download_permissions").unblock()});return!1});e(".order_download_permissions").on("click","button.revoke_access",function(t){t.preventDefault();var n=confirm(woocommerce_admin_meta_boxes.i18n_permission_revoke);if(n){var r=e(this).parent().parent(),i=e(this).attr("rel").split(",")[0],s=e(this).attr("rel").split(",")[1];if(i>0){e(r).block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});var o={action:"woocommerce_revoke_access_to_download",product_id:i,download_id:s,order_id:woocommerce_admin_meta_boxes.post_id,security:woocommerce_admin_meta_boxes.revoke_access_nonce};e.post(woocommerce_admin_meta_boxes.ajax_url,o,function(t){e(r).fadeOut("300",function(){e(r).remove()})})}else e(r).fadeOut("300",function(){e(r).remove()})}return!1});e("button.load_customer_billing").click(function(){var t=confirm(woocommerce_admin_meta_boxes.load_billing);if(t){var n=e("#customer_user").val();if(!n){alert(woocommerce_admin_meta_boxes.no_customer_selected);return!1}var r={user_id:n,type_to_load:"billing",action:"woocommerce_get_customer_details",security:woocommerce_admin_meta_boxes.get_customer_details_nonce};e(this).closest(".edit_address").block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});e.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:r,type:"POST",success:function(t){var n=t;if(n){e("input#_billing_first_name").val(n.billing_first_name);e("input#_billing_last_name").val(n.billing_last_name);e("input#_billing_company").val(n.billing_company);e("input#_billing_address_1").val(n.billing_address_1);e("input#_billing_address_2").val(n.billing_address_2);e("input#_billing_city").val(n.billing_city);e("input#_billing_postcode").val(n.billing_postcode);e("#_billing_country").val(n.billing_country);e("input#_billing_state").val(n.billing_state);e("input#_billing_email").val(n.billing_email);e("input#_billing_phone").val(n.billing_phone)}e(".edit_address").unblock()}})}return!1});e("button.load_customer_shipping").click(function(){var t=confirm(woocommerce_admin_meta_boxes.load_shipping);if(t){var n=e("#customer_user").val();if(!n){alert(woocommerce_admin_meta_boxes.no_customer_selected);return!1}var r={user_id:n,type_to_load:"shipping",action:"woocommerce_get_customer_details",security:woocommerce_admin_meta_boxes.get_customer_details_nonce};e(this).closest(".edit_address").block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});e.ajax({url:woocommerce_admin_meta_boxes.ajax_url,data:r,type:"POST",success:function(t){var n=t;if(n){e("input#_shipping_first_name").val(n.shipping_first_name);e("input#_shipping_last_name").val(n.shipping_last_name);e("input#_shipping_company").val(n.shipping_company);e("input#_shipping_address_1").val(n.shipping_address_1);e("input#_shipping_address_2").val(n.shipping_address_2);e("input#_shipping_city").val(n.shipping_city);e("input#_shipping_postcode").val(n.shipping_postcode);e("#_shipping_country").val(n.shipping_country);e("input#_shipping_state").val(n.shipping_state)}e(".edit_address").unblock()}})}return!1});e("button.billing-same-as-shipping").click(function(){var t=confirm(woocommerce_admin_meta_boxes.copy_billing);if(t){e("input#_shipping_first_name").val(e("input#_billing_first_name").val());e("input#_shipping_last_name").val(e("input#_billing_last_name").val());e("input#_shipping_company").val(e("input#_billing_company").val());e("input#_shipping_address_1").val(e("input#_billing_address_1").val());e("input#_shipping_address_2").val(e("input#_billing_address_2").val());e("input#_shipping_city").val(e("input#_billing_city").val());e("input#_shipping_postcode").val(e("input#_billing_postcode").val());e("#_shipping_country").val(e("#_billing_country").val());e("input#_shipping_state").val(e("input#_billing_state").val())}return!1});e(".totals_group").on("click","a.add_total_row",function(){e(this).closest(".totals_group").find(".total_rows").append(e(this).data("row"));return!1});e(".total_rows").on("click","a.delete_total_row",function(){$row=e(this).closest(".total_row");var t=$row.attr("data-order_item_id");t?$row.append('').hide():$row.remove();return!1});e("#woocommerce-order-notes").on("click","a.add_note",function(){if(!e("textarea#add_order_note").val())return;e("#woocommerce-order-notes").block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});var t={action:"woocommerce_add_order_note",post_id:woocommerce_admin_meta_boxes.post_id,note:e("textarea#add_order_note").val(),note_type:e("select#order_note_type").val(),security:woocommerce_admin_meta_boxes.add_order_note_nonce};e.post(woocommerce_admin_meta_boxes.ajax_url,t,function(t){e("ul.order_notes").prepend(t);e("#woocommerce-order-notes").unblock();e("#add_order_note").val("")});return!1});e("#woocommerce-order-notes").on("click","a.delete_note",function(){var t=e(this).closest("li.note");e(t).block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});var n={action:"woocommerce_delete_order_note",note_id:e(t).attr("rel"),security:woocommerce_admin_meta_boxes.delete_order_note_nonce};e.post(woocommerce_admin_meta_boxes.ajax_url,n,function(n){e(t).remove()});return!1});e("select#product-type").change(function(){var n=e(this).val();if(n=="variable"){e("input#_manage_stock").change();e("input#_downloadable").prop("checked",!1);e("input#_virtual").removeAttr("checked")}else if(n=="grouped"){e("input#_downloadable").prop("checked",!1);e("input#_virtual").removeAttr("checked")}else if(n=="external"){e("input#_downloadable").prop("checked",!1);e("input#_virtual").removeAttr("checked")}t();e("ul.wc-tabs li:visible").eq(0).find("a").click();e("body").trigger("woocommerce-product-type-change",n,e(this))}).change();e("ul.wc-tabs li:visible").eq(0).find("a").click();e("input#_downloadable, input#_virtual").change(function(){t()});e(".sale_price_dates_fields").each(function(){var t=e(this),n=!1,r=t.closest("div, table");t.find("input").each(function(){e(this).val()!=""&&(n=!0)});if(n){r.find(".sale_schedule").hide();r.find(".sale_price_dates_fields").show()}else{r.find(".sale_schedule").show();r.find(".sale_price_dates_fields").hide()}});e("#woocommerce-product-data").on("click",".sale_schedule",function(){var t=e(this).closest("div, table");e(this).hide();t.find(".cancel_sale_schedule").show();t.find(".sale_price_dates_fields").show();return!1});e("#woocommerce-product-data").on("click",".cancel_sale_schedule",function(){var t=e(this).closest("div, table");e(this).hide();t.find(".sale_schedule").show();t.find(".sale_price_dates_fields").hide();t.find(".sale_price_dates_fields").find("input").val("");return!1});e(".downloadable_files").on("click","a.insert",function(){e(this).closest(".downloadable_files").find("tbody").append(e(this).data("row"));return!1});e(".downloadable_files").on("click","a.delete",function(){e(this).closest("tr").remove();return!1});e("input#_manage_stock").change(function(){e(this).is(":checked")?e("div.stock_fields").show():e("div.stock_fields").hide()}).change();var n=e(".sale_price_dates_fields input").datepicker({defaultDate:"",dateFormat:"yy-mm-dd",numberOfMonths:1,showButtonPanel:!0,showOn:"button",buttonImage:woocommerce_admin_meta_boxes.calendar_image,buttonImageOnly:!0,onSelect:function(t){var r=e(this).is("#_sale_price_dates_from, .sale_price_dates_from")?"minDate":"maxDate",i=e(this).data("datepicker"),s=e.datepicker.parseDate(i.settings.dateFormat||e.datepicker._defaults.dateFormat,t,i.settings);n.not(this).datepicker("option",r,s)}});e(".date-picker").datepicker({dateFormat:"yy-mm-dd",numberOfMonths:1,showButtonPanel:!0,showOn:"button",buttonImage:woocommerce_admin_meta_boxes.calendar_image,buttonImageOnly:!0});e(".date-picker-field").datepicker({dateFormat:"yy-mm-dd",numberOfMonths:1,showButtonPanel:!0});jQuery(".wc-metaboxes-wrapper").on("click",".wc-metabox h3",function(t){if(e(t.target).filter(":input, option").length)return;jQuery(this).next(".wc-metabox-content").toggle()}).on("click",".expand_all",function(e){jQuery(this).closest(".wc-metaboxes-wrapper").find(".wc-metabox > table").show();return!1}).on("click",".close_all",function(e){jQuery(this).closest(".wc-metaboxes-wrapper").find(".wc-metabox > table").hide();return!1});jQuery(".wc-metabox.closed").each(function(){jQuery(this).find(".wc-metabox-content").hide()});e(".product_attributes select.multiselect").chosen();var r=e(".product_attributes").find(".woocommerce_attribute").get();r.sort(function(t,n){var r=parseInt(e(t).attr("rel")),i=parseInt(e(n).attr("rel"));return ri?1:0});e(r).each(function(t,n){e(".product_attributes").append(n)});e("button.add_attribute").on("click",function(){var t=e(".product_attributes .woocommerce_attribute").size(),n=e("select.attribute_taxonomy").val();if(!n){var r=e("select#product-type").val();r!="variable"?enable_variation='style="display:none;"':enable_variation="";e(".product_attributes").append('

    ")}else{var s=e(".product_attributes .woocommerce_attribute."+n);e(".product_attributes").append(e(s));e(s).show().find(".woocommerce_attribute_data").show();i()}e("select.attribute_taxonomy").val("")});e(".product_attributes").on("blur","input.attribute_name",function(){e(this).closest(".woocommerce_attribute").find("strong.attribute_name").text(e(this).val())});e(".product_attributes").on("click","button.select_all_attributes",function(){e(this).closest("td").find("select option").attr("selected","selected");e(this).closest("td").find("select").trigger("chosen:updated");return!1});e(".product_attributes").on("click","button.select_no_attributes",function(){e(this).closest("td").find("select option").removeAttr("selected");e(this).closest("td").find("select").trigger("chosen:updated");return!1});e(".product_attributes").on("click","button.remove_row",function(){var t=confirm(woocommerce_admin_meta_boxes.remove_attribute);if(t){var n=e(this).parent().parent();if(n.is(".taxonomy")){n.find("select, input[type=text]").val("");n.hide()}else{n.find("select, input[type=text]").val("");n.hide();i()}}return!1});e(".product_attributes").sortable({items:".woocommerce_attribute",cursor:"move",axis:"y",handle:"h3",scrollSensitivity:40,forcePlaceholderSize:!0,helper:"clone",opacity:.65,placeholder:"wc-metabox-sortable-placeholder",start:function(e,t){t.item.css("background-color","#f6f6f6")},stop:function(e,t){t.item.removeAttr("style");i()}});e(".product_attributes").on("click","button.add_new_attribute",function(){e(".product_attributes").block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});var t=e(this).attr("data-attribute"),n=e(this).closest(".woocommerce_attribute_data"),r=prompt(woocommerce_admin_meta_boxes.new_attribute_prompt);if(r){var i={action:"woocommerce_add_new_attribute",taxonomy:t,term:r,security:woocommerce_admin_meta_boxes.add_attribute_nonce};e.post(woocommerce_admin_meta_boxes.ajax_url,i,function(t){if(t.error)alert(t.error -);else if(t.slug){n.find("select.attribute_values").append('");n.find("select.attribute_values").trigger("chosen:updated")}e(".product_attributes").unblock()})}else e(".product_attributes").unblock();return!1});e(".save_attributes").on("click",function(){e(".product_attributes").block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});var t={post_id:woocommerce_admin_meta_boxes.post_id,data:e(".product_attributes").find("input, select, textarea").serialize(),action:"woocommerce_save_attributes",security:woocommerce_admin_meta_boxes.save_attributes_nonce};e.post(woocommerce_admin_meta_boxes.ajax_url,t,function(t){var n=window.location.toString();n=n.replace("post-new.php?","post.php?post="+woocommerce_admin_meta_boxes.post_id+"&action=edit&");e("#variable_product_options").block({message:null,overlayCSS:{background:"#fff url("+woocommerce_admin_meta_boxes.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});e("#variable_product_options").load(n+" #variable_product_options_inner",function(){e("#variable_product_options").unblock()});e(".product_attributes").unblock()})});var s,o;jQuery(document).on("click",".upload_file_button",function(t){var n=e(this);o=n.closest("tr").find("td.file_url input");t.preventDefault();if(s){s.open();return}var r=[new wp.media.controller.Library({library:wp.media.query(),multiple:!0,title:n.data("choose"),priority:20,filterable:"uploaded"})];s=wp.media.frames.downloadable_file=wp.media({title:n.data("choose"),library:{type:""},button:{text:n.data("update")},multiple:!0,states:r});s.on("select",function(){var e="",t=s.state().get("selection");t.map(function(t){t=t.toJSON();t.url&&(e=t.url)});o.val(e)});s.on("ready",function(){s.uploader.options.uploader.params={type:"downloadable_product"}});s.open()});jQuery(".downloadable_files tbody").sortable({items:"tr",cursor:"move",axis:"y",handle:"td.sort",scrollSensitivity:40,forcePlaceholderSize:!0,helper:"clone",opacity:.65});var u,a=e("#product_image_gallery"),f=e("#product_images_container ul.product_images");jQuery(".add_product_images").on("click","a",function(t){var n=e(this),r=a.val();t.preventDefault();if(u){u.open();return}u=wp.media.frames.downloadable_file=wp.media({title:n.data("choose"),button:{text:n.data("update")},multiple:!0});u.on("select",function(){var e=u.state().get("selection");e.map(function(e){e=e.toJSON();if(e.id){r=r?r+","+e.id:e.id;f.append('
  • ")}});a.val(r)});u.open()});f.sortable({items:"li.image",cursor:"move",scrollSensitivity:40,forcePlaceholderSize:!0,forceHelperSize:!1,helper:"clone",opacity:.65,placeholder:"wc-metabox-sortable-placeholder",start:function(e,t){t.item.css("background-color","#f6f6f6")},stop:function(e,t){t.item.removeAttr("style")},update:function(t,n){var r="";e("#product_images_container ul li.image").css("cursor","default").each(function(){var e=jQuery(this).attr("data-attachment_id");r=r+e+","});a.val(r)}});e("#product_images_container").on("click","a.delete",function(){e(this).closest("li.image").remove();var t="";e("#product_images_container ul li.image").css("cursor","default").each(function(){var e=jQuery(this).attr("data-attachment_id");t=t+e+","});a.val(t);return!1})}); \ No newline at end of file +jQuery(function(a){function b(){a("#tiptip_holder").removeAttr("style"),a("#tiptip_arrow").removeAttr("style"),a(".tips").tipTip({attribute:"data-tip",fadeIn:50,fadeOut:50,delay:200})}function c(){a("select.ajax_chosen_select_products_and_variations").ajaxChosen({method:"GET",url:woocommerce_admin_meta_boxes.ajax_url,dataType:"json",afterTypeDelay:100,data:{action:"woocommerce_json_search_products_and_variations",security:woocommerce_admin_meta_boxes.search_products_nonce}},function(b){var c={};return a.each(b,function(a,b){c[a]=b}),c})}b(),a("#titlediv #title").keyup(function(b){var c=b.keyCode||b.which;return"9"==c&&a("#woocommerce-coupon-description").size()>0?(b.stopPropagation(),a("#woocommerce-coupon-description").focus(),!1):void 0}),a(function(){jQuery(".wc-metabox > h3").click(function(){a(this).parent(".wc-metabox").toggleClass("closed").toggleClass("open")})}),a("ul.wc-tabs").show(),a("div.panel-wrap").each(function(){a(this).find("div.panel:not(:first)").hide()}),a("ul.wc-tabs a").click(function(){var b=a(this).closest("div.panel-wrap");return a("ul.wc-tabs li",b).removeClass("active"),a(this).parent().addClass("active"),a("div.panel",b).hide(),a(a(this).attr("href")).show(),!1}),a("ul.wc-tabs li:visible").eq(0).find("a").click(),jQuery("select.chosen_select").chosen(),jQuery("select.chosen_select_nostd").chosen({allow_single_deselect:"true"}),jQuery("select.ajax_chosen_select_products").ajaxChosen({method:"GET",url:woocommerce_admin_meta_boxes.ajax_url,dataType:"json",afterTypeDelay:100,data:{action:"woocommerce_json_search_products",security:woocommerce_admin_meta_boxes.search_products_nonce}},function(b){var c={};return a.each(b,function(a,b){c[a]=b}),c}),c(),a("body").on("wc_backbone_modal_loaded",function(a,b){"#wc-modal-add-products"===b&&c()}),jQuery("select.ajax_chosen_select_downloadable_products_and_variations").ajaxChosen({method:"GET",url:woocommerce_admin_meta_boxes.ajax_url,dataType:"json",afterTypeDelay:100,data:{action:"woocommerce_json_search_downloadable_products_and_variations",security:woocommerce_admin_meta_boxes.search_products_nonce}},function(b){var c={};return a.each(b,function(a,b){c[a]=b}),c}),a(".date-picker").datepicker({dateFormat:"yy-mm-dd",numberOfMonths:1,showButtonPanel:!0,showOn:"button",buttonImage:woocommerce_admin_meta_boxes.calendar_image,buttonImageOnly:!0}),a(".date-picker-field").datepicker({dateFormat:"yy-mm-dd",numberOfMonths:1,showButtonPanel:!0}),jQuery(".wc-metaboxes-wrapper").on("click",".wc-metabox h3",function(b){a(b.target).filter(":input, option").length||jQuery(this).next(".wc-metabox-content").toggle()}).on("click",".expand_all",function(){return jQuery(this).closest(".wc-metaboxes-wrapper").find(".wc-metabox > table").show(),!1}).on("click",".close_all",function(){return jQuery(this).closest(".wc-metaboxes-wrapper").find(".wc-metabox > table").hide(),!1}),jQuery(".wc-metabox.closed").each(function(){jQuery(this).find(".wc-metabox-content").hide()})}); \ No newline at end of file diff --git a/assets/js/admin/order-backbone-modal.js b/assets/js/admin/order-backbone-modal.js new file mode 100644 index 00000000000..1b7e00ff222 --- /dev/null +++ b/assets/js/admin/order-backbone-modal.js @@ -0,0 +1,124 @@ +/*global jQuery, Backbone, _ */ +( function ( $, Backbone, _ ) { + 'use strict'; + + /** + * WooCommerce Backbone Modal plugin + * + * @param {object} options + */ + $.fn.WCBackboneModal = function( options ) { + return this.each( function () { + ( new $.WCBackboneModal( $( this ), options ) ); + }); + }; + + /** + * Initialize the Backbone Modal + * + * @param {object} element [description] + * @param {object} options [description] + */ + $.WCBackboneModal = function( element, options ) { + // Set settings + var settings = $.extend( {}, $.WCBackboneModal.defaultOptions, options ); + + if ( settings.template ) { + new $.WCBackboneModal.View({ + target: settings.template + }); + } + }; + + /** + * Set default options + * + * @type {object} + */ + $.WCBackboneModal.defaultOptions = { + template: '', + }; + + /** + * Create the Backbone Modal + * + * @return {null} + */ + $.WCBackboneModal.View = Backbone.View.extend({ + tagName: 'div', + id: 'wc-backbone-modal-dialog', + _target: undefined, + events: { + 'click #btn-cancel': 'closeButton', + 'click #btn-ok': 'addButton', + }, + initialize: function ( data ) { + this._target = data.target; + _.bindAll( this, 'render' ); + this.render(); + }, + render: function () { + this.$el.attr( 'tabindex' , '0' ).append( $( this._target ).html() ); + + $( 'body' ).css({ + 'overflow': 'hidden' + }).append( this.$el ); + + var $content = $( '.wc-backbone-modal-content' ).find( 'article' ); + var content_h = $content.height(); + var max_h = $( window ).height() - 200; + + if ( max_h > 400 ) { + max_h = 400; + } + + if ( content_h > max_h ) { + $content.css({ + 'overflow': 'auto', + height: max_h + 'px' + }); + } else { + $content.css({ + 'overflow': 'visible', + height: content_h + }); + } + + $( '.wc-backbone-modal-content' ).css({ + 'margin-top': '-' + ( $( '.wc-backbone-modal-content' ).height() / 2 ) + 'px' + }); + + $( 'body' ).trigger( 'wc_backbone_modal_loaded', this._target ); + }, + closeButton: function ( e ) { + e.preventDefault(); + this.undelegateEvents(); + $( document ).off( 'focusin' ); + $( 'body' ).css({ + 'overflow': 'auto' + }); + this.remove(); + $( 'body' ).trigger( 'wc_backbone_modal_removed', this._target ); + }, + addButton: function ( e ) { + $( 'body' ).trigger( 'wc_backbone_modal_response', this._target, this.getFormData() ); + this.closeButton( e ); + }, + getFormData: function () { + var data = {}; + + $.each( $( 'form', this.$el ).serializeArray(), function( index, item ) { + if ( data.hasOwnProperty( item.name ) ) { + data[ item.name ] = $.makeArray( data[ item.name ] ); + data[ item.name ].push( item.value ); + } + else { + data[ item.name ] = item.value; + } + }); + + return data; + } + }); + +}( jQuery, Backbone, _ )); diff --git a/assets/js/admin/order-backbone-modal.min.js b/assets/js/admin/order-backbone-modal.min.js new file mode 100644 index 00000000000..e8c563ddd69 --- /dev/null +++ b/assets/js/admin/order-backbone-modal.min.js @@ -0,0 +1 @@ +!function(a,b,c){"use strict";a.fn.WCBackboneModal=function(b){return this.each(function(){new a.WCBackboneModal(a(this),b)})},a.WCBackboneModal=function(b,c){var d=a.extend({},a.WCBackboneModal.defaultOptions,c);d.template&&new a.WCBackboneModal.View({target:d.template})},a.WCBackboneModal.defaultOptions={template:""},a.WCBackboneModal.View=b.View.extend({tagName:"div",id:"wc-backbone-modal-dialog",_target:void 0,events:{"click #btn-cancel":"closeButton","click #btn-ok":"addButton"},initialize:function(a){this._target=a.target,c.bindAll(this,"render"),this.render()},render:function(){this.$el.attr("tabindex","0").append(a(this._target).html()),a("body").css({overflow:"hidden"}).append(this.$el);var b=a(".wc-backbone-modal-content").find("article"),c=b.height(),d=a(window).height()-200;d>400&&(d=400),b.css(c>d?{overflow:"auto",height:d+"px"}:{overflow:"visible",height:c}),a(".wc-backbone-modal-content").css({"margin-top":"-"+a(".wc-backbone-modal-content").height()/2+"px"}),a("body").trigger("wc_backbone_modal_loaded",this._target)},closeButton:function(b){b.preventDefault(),this.undelegateEvents(),a(document).off("focusin"),a("body").css({overflow:"auto"}),this.remove(),a("body").trigger("wc_backbone_modal_removed",this._target)},addButton:function(b){a("body").trigger("wc_backbone_modal_response",this._target,this.getFormData()),this.closeButton(b)},getFormData:function(){var b={};return a.each(a("form",this.$el).serializeArray(),function(c,d){b.hasOwnProperty(d.name)?(b[d.name]=a.makeArray(b[d.name]),b[d.name].push(d.value)):b[d.name]=d.value}),b}})}(jQuery,Backbone,_); \ No newline at end of file diff --git a/assets/js/admin/product-ordering.js b/assets/js/admin/product-ordering.js index f8142026601..91d6a9373e3 100644 --- a/assets/js/admin/product-ordering.js +++ b/assets/js/admin/product-ordering.js @@ -3,53 +3,70 @@ * * Modified - products have no children (non hierarchical) */ -jQuery('table.widefat tbody th, table.widefat tbody td').css('cursor','move'); +( function( $ ){ +$( document ).ready(function(){ + $('table.widefat tbody th, table.widefat tbody td').css('cursor','move'); -jQuery("table.widefat tbody").sortable({ - items: 'tr:not(.inline-edit-row)', - cursor: 'move', - axis: 'y', - containment: 'table.widefat', - scrollSensitivity: 40, - helper: function(e, ui) { - ui.children().each(function() { jQuery(this).width(jQuery(this).width()); }); - return ui; - }, - start: function(event, ui) { - if ( ! ui.item.hasClass('alternate') ) ui.item.css( 'background-color', '#ffffff' ); - ui.item.children('td,th').css('border-bottom-width','0'); - ui.item.css( 'outline', '1px solid #dfdfdf' ); - }, - stop: function(event, ui) { - ui.item.removeAttr('style'); - ui.item.children('td,th').css('border-bottom-width','1px'); - }, - update: function(event, ui) { - jQuery('table.widefat tbody th, table.widefat tbody td').css('cursor','default'); - jQuery("table.widefat tbody").sortable('disable'); + $("table.widefat tbody").sortable({ + items: 'tr:not(.inline-edit-row)', + cursor: 'move', + axis: 'y', + containment: 'table.widefat', + scrollSensitivity: 40, + helper: function(event, ui) { + ui.each(function() { $(this).width($(this).width()); }); + return ui; + }, + start: function(event, ui) { + ui.placeholder.children().each(function(){ + var $original = ui.item.children().eq( ui.placeholder.children().index(this) ), + $this = $( this ); - var postid = ui.item.find('.check-column input').val(); // this post id - var postparent = ui.item.find('.post_parent').html(); // post parent + $.each( $original[0].attributes, function( k, attr ){ + $this.attr( attr.name, attr.value ); + } ); + }); + if ( ! ui.item.hasClass('alternate') ) { + ui.item.css( 'background-color', '#ffffff' ); + } + ui.item.children('td,th').css('border-bottom-width','0'); + ui.item.css( 'outline', '1px solid #dfdfdf' ); + }, + stop: function(event, ui) { + ui.item.removeAttr('style'); + ui.item.children('td,th').css('border-bottom-width','1px'); + }, + update: function(event, ui) { + $('table.widefat tbody th, table.widefat tbody td').css('cursor','default'); + $("table.widefat tbody").sortable('disable'); - var prevpostid = ui.item.prev().find('.check-column input').val(); - var nextpostid = ui.item.next().find('.check-column input').val(); + var postid = ui.item.find('.check-column input').val(); // this post id + var postparent = ui.item.find('.post_parent').html(); // post parent - // show spinner - ui.item.find('.check-column input').hide().after('processing'); + var prevpostid = ui.item.prev().find('.check-column input').val(); + var nextpostid = ui.item.next().find('.check-column input').val(); - // go do the sorting stuff via ajax - jQuery.post( ajaxurl, { action: 'woocommerce_product_ordering', id: postid, previd: prevpostid, nextid: nextpostid }, function(response){ - jQuery.each(response, function(key,value) { jQuery('#inline_'+key+' .menu_order').html(value); }); - ui.item.find('.check-column input').show().siblings('img').remove(); - jQuery('table.widefat tbody th, table.widefat tbody td').css('cursor','move'); - jQuery("table.widefat tbody").sortable('enable'); - }); + // show spinner + ui.item.find('.check-column input').hide().after('processing'); - // fix cell colors - jQuery( 'table.widefat tbody tr' ).each(function(){ - var i = jQuery('table.widefat tbody tr').index(this); - if ( i%2 == 0 ) jQuery(this).addClass('alternate'); - else jQuery(this).removeClass('alternate'); - }); - } -}); \ No newline at end of file + // go do the sorting stuff via ajax + $.post( ajaxurl, { action: 'woocommerce_product_ordering', id: postid, previd: prevpostid, nextid: nextpostid }, function(response){ + $.each(response, function(key,value) { $('#inline_'+key+' .menu_order').html(value); }); + ui.item.find('.check-column input').show().siblings('img').remove(); + $('table.widefat tbody th, table.widefat tbody td').css('cursor','move'); + $("table.widefat tbody").sortable('enable'); + }); + + // fix cell colors + $( 'table.widefat tbody tr' ).each(function(){ + var i = $('table.widefat tbody tr').index(this); + if ( i%2 === 0 ){ + $(this).addClass('alternate'); + } else { + $(this).removeClass('alternate'); + } + }); + } + }); +}); +}( jQuery ) ); diff --git a/assets/js/admin/product-ordering.min.js b/assets/js/admin/product-ordering.min.js index ce7d693d4aa..bed02d22121 100644 --- a/assets/js/admin/product-ordering.min.js +++ b/assets/js/admin/product-ordering.min.js @@ -1,5 +1 @@ -/** - * Based on Simple Page Ordering by 10up (http://wordpress.org/extend/plugins/simple-page-ordering/) - * - * Modified - products have no children (non hierarchical) - */jQuery("table.widefat tbody th, table.widefat tbody td").css("cursor","move");jQuery("table.widefat tbody").sortable({items:"tr:not(.inline-edit-row)",cursor:"move",axis:"y",containment:"table.widefat",scrollSensitivity:40,helper:function(e,t){t.children().each(function(){jQuery(this).width(jQuery(this).width())});return t},start:function(e,t){t.item.hasClass("alternate")||t.item.css("background-color","#ffffff");t.item.children("td,th").css("border-bottom-width","0");t.item.css("outline","1px solid #dfdfdf")},stop:function(e,t){t.item.removeAttr("style");t.item.children("td,th").css("border-bottom-width","1px")},update:function(e,t){jQuery("table.widefat tbody th, table.widefat tbody td").css("cursor","default");jQuery("table.widefat tbody").sortable("disable");var n=t.item.find(".check-column input").val(),r=t.item.find(".post_parent").html(),i=t.item.prev().find(".check-column input").val(),s=t.item.next().find(".check-column input").val();t.item.find(".check-column input").hide().after('processing');jQuery.post(ajaxurl,{action:"woocommerce_product_ordering",id:n,previd:i,nextid:s},function(e){jQuery.each(e,function(e,t){jQuery("#inline_"+e+" .menu_order").html(t)});t.item.find(".check-column input").show().siblings("img").remove();jQuery("table.widefat tbody th, table.widefat tbody td").css("cursor","move");jQuery("table.widefat tbody").sortable("enable")});jQuery("table.widefat tbody tr").each(function(){var e=jQuery("table.widefat tbody tr").index(this);e%2==0?jQuery(this).addClass("alternate"):jQuery(this).removeClass("alternate")})}}); \ No newline at end of file +!function(a){a(document).ready(function(){a("table.widefat tbody th, table.widefat tbody td").css("cursor","move"),a("table.widefat tbody").sortable({items:"tr:not(.inline-edit-row)",cursor:"move",axis:"y",containment:"table.widefat",scrollSensitivity:40,helper:function(b,c){return c.each(function(){a(this).width(a(this).width())}),c},start:function(b,c){c.placeholder.children().each(function(){var b=c.item.children().eq(c.placeholder.children().index(this)),d=a(this);a.each(b[0].attributes,function(a,b){d.attr(b.name,b.value)})}),c.item.hasClass("alternate")||c.item.css("background-color","#ffffff"),c.item.children("td,th").css("border-bottom-width","0"),c.item.css("outline","1px solid #dfdfdf")},stop:function(a,b){b.item.removeAttr("style"),b.item.children("td,th").css("border-bottom-width","1px")},update:function(b,c){a("table.widefat tbody th, table.widefat tbody td").css("cursor","default"),a("table.widefat tbody").sortable("disable");var d=c.item.find(".check-column input").val(),e=(c.item.find(".post_parent").html(),c.item.prev().find(".check-column input").val()),f=c.item.next().find(".check-column input").val();c.item.find(".check-column input").hide().after('processing'),a.post(ajaxurl,{action:"woocommerce_product_ordering",id:d,previd:e,nextid:f},function(b){a.each(b,function(b,c){a("#inline_"+b+" .menu_order").html(c)}),c.item.find(".check-column input").show().siblings("img").remove(),a("table.widefat tbody th, table.widefat tbody td").css("cursor","move"),a("table.widefat tbody").sortable("enable")}),a("table.widefat tbody tr").each(function(){var b=a("table.widefat tbody tr").index(this);b%2===0?a(this).addClass("alternate"):a(this).removeClass("alternate")})}})})}(jQuery); \ No newline at end of file diff --git a/assets/js/admin/quick-edit.js b/assets/js/admin/quick-edit.js index bbcbaa410e9..ad79c0df7f0 100644 --- a/assets/js/admin/quick-edit.js +++ b/assets/js/admin/quick-edit.js @@ -1,4 +1,4 @@ -jQuery(document).ready(function(){ +jQuery(function(){ jQuery('#the-list').on('click', '.editinline', function(){ inlineEditPost.revert(); @@ -113,4 +113,4 @@ jQuery(document).ready(function(){ jQuery(this).closest('li').siblings().find('input:checked').removeAttr('checked'); }); -}); \ No newline at end of file +}); diff --git a/assets/js/admin/quick-edit.min.js b/assets/js/admin/quick-edit.min.js index 7b2195ca43d..a3019700aed 100644 --- a/assets/js/admin/quick-edit.min.js +++ b/assets/js/admin/quick-edit.min.js @@ -1 +1 @@ -jQuery(document).ready(function(){jQuery("#the-list").on("click",".editinline",function(){inlineEditPost.revert();var e=jQuery(this).closest("tr").attr("id");e=e.replace("post-","");var t=jQuery("#woocommerce_inline_"+e),n=t.find(".sku").text(),r=t.find(".regular_price").text(),i=t.find(".sale_price").text(),s=t.find(".weight").text(),o=t.find(".length").text(),u=t.find(".width").text(),a=t.find(".height").text(),f=t.find(".visibility").text(),l=t.find(".stock_status").text(),c=t.find(".stock").text(),h=t.find(".featured").text(),p=t.find(".manage_stock").text(),d=t.find(".menu_order").text(),v=t.find(".tax_status").text(),m=t.find(".tax_class").text(),g=t.find(".backorders").text();jQuery('input[name="_sku"]',".inline-edit-row").val(n);jQuery('input[name="_regular_price"]',".inline-edit-row").val(r);jQuery('input[name="_sale_price"]',".inline-edit-row").val(i);jQuery('input[name="_weight"]',".inline-edit-row").val(s);jQuery('input[name="_length"]',".inline-edit-row").val(o);jQuery('input[name="_width"]',".inline-edit-row").val(u);jQuery('input[name="_height"]',".inline-edit-row").val(a);jQuery('input[name="_stock"]',".inline-edit-row").val(c);jQuery('input[name="menu_order"]',".inline-edit-row").val(d);jQuery('select[name="_tax_status"] option[value="'+v+'"]',".inline-edit-row").attr("selected","selected");jQuery('select[name="_tax_class"] option[value="'+m+'"]',".inline-edit-row").attr("selected","selected");jQuery('select[name="_visibility"] option, select[name="_stock_status"] option, select[name="_backorders"] option').removeAttr("selected");jQuery('select[name="_visibility"] option[value="'+f+'"]',".inline-edit-row").attr("selected","selected");jQuery('select[name="_stock_status"] option[value="'+l+'"]',".inline-edit-row").attr("selected","selected");jQuery('select[name="_backorders"] option[value="'+g+'"]',".inline-edit-row").attr("selected","selected");h=="yes"?jQuery('input[name="_featured"]',".inline-edit-row").attr("checked","checked"):jQuery('input[name="_featured"]',".inline-edit-row").removeAttr("checked");if(p=="yes"){jQuery(".stock_qty_field",".inline-edit-row").show().removeAttr("style");jQuery('input[name="_manage_stock"]',".inline-edit-row").attr("checked","checked")}else{jQuery(".stock_qty_field",".inline-edit-row").hide();jQuery('input[name="_manage_stock"]',".inline-edit-row").removeAttr("checked")}var y=t.find(".product_type").text(),b=t.find(".product_is_virtual").text();y=="simple"||y=="external"?jQuery(".price_fields",".inline-edit-row").show().removeAttr("style"):jQuery(".price_fields",".inline-edit-row").hide();b=="yes"?jQuery(".dimension_fields",".inline-edit-row").hide():jQuery(".dimension_fields",".inline-edit-row").show().removeAttr("style");y=="grouped"?jQuery(".stock_fields",".inline-edit-row").hide():jQuery(".stock_fields",".inline-edit-row").show().removeAttr("style")});jQuery("#the-list").on("change",'.inline-edit-row input[name="_manage_stock"]',function(){jQuery(this).is(":checked")?jQuery(".stock_qty_field",".inline-edit-row").show().removeAttr("style"):jQuery(".stock_qty_field",".inline-edit-row").hide()});jQuery("#wpbody").on("click","#doaction, #doaction2",function(){jQuery("input.text",".inline-edit-row").val("");jQuery("#woocommerce-fields select").prop("selectedIndex",0);jQuery("#woocommerce-fields-bulk .inline-edit-group .alignright").hide()});jQuery("#wpbody").on("change","#woocommerce-fields-bulk .inline-edit-group .change_to",function(){jQuery(this).val()>0?jQuery(this).closest("div").find(".alignright").show():jQuery(this).closest("div").find(".alignright").hide()});jQuery(".product_shipping_class-checklist input").change(function(){jQuery(this).closest("li").siblings().find("input:checked").removeAttr("checked")})}); \ No newline at end of file +jQuery(function(){jQuery("#the-list").on("click",".editinline",function(){inlineEditPost.revert();var a=jQuery(this).closest("tr").attr("id");a=a.replace("post-","");var b=jQuery("#woocommerce_inline_"+a),c=b.find(".sku").text(),d=b.find(".regular_price").text(),e=b.find(".sale_price").text(),f=b.find(".weight").text(),g=b.find(".length").text(),h=b.find(".width").text(),i=b.find(".height").text(),j=b.find(".visibility").text(),k=b.find(".stock_status").text(),l=b.find(".stock").text(),m=b.find(".featured").text(),n=b.find(".manage_stock").text(),o=b.find(".menu_order").text(),p=b.find(".tax_status").text(),q=b.find(".tax_class").text(),r=b.find(".backorders").text();jQuery('input[name="_sku"]',".inline-edit-row").val(c),jQuery('input[name="_regular_price"]',".inline-edit-row").val(d),jQuery('input[name="_sale_price"]',".inline-edit-row").val(e),jQuery('input[name="_weight"]',".inline-edit-row").val(f),jQuery('input[name="_length"]',".inline-edit-row").val(g),jQuery('input[name="_width"]',".inline-edit-row").val(h),jQuery('input[name="_height"]',".inline-edit-row").val(i),jQuery('input[name="_stock"]',".inline-edit-row").val(l),jQuery('input[name="menu_order"]',".inline-edit-row").val(o),jQuery('select[name="_tax_status"] option[value="'+p+'"]',".inline-edit-row").attr("selected","selected"),jQuery('select[name="_tax_class"] option[value="'+q+'"]',".inline-edit-row").attr("selected","selected"),jQuery('select[name="_visibility"] option, select[name="_stock_status"] option, select[name="_backorders"] option').removeAttr("selected"),jQuery('select[name="_visibility"] option[value="'+j+'"]',".inline-edit-row").attr("selected","selected"),jQuery('select[name="_stock_status"] option[value="'+k+'"]',".inline-edit-row").attr("selected","selected"),jQuery('select[name="_backorders"] option[value="'+r+'"]',".inline-edit-row").attr("selected","selected"),"yes"==m?jQuery('input[name="_featured"]',".inline-edit-row").attr("checked","checked"):jQuery('input[name="_featured"]',".inline-edit-row").removeAttr("checked"),"yes"==n?(jQuery(".stock_qty_field",".inline-edit-row").show().removeAttr("style"),jQuery('input[name="_manage_stock"]',".inline-edit-row").attr("checked","checked")):(jQuery(".stock_qty_field",".inline-edit-row").hide(),jQuery('input[name="_manage_stock"]',".inline-edit-row").removeAttr("checked"));var s=b.find(".product_type").text(),t=b.find(".product_is_virtual").text();"simple"==s||"external"==s?jQuery(".price_fields",".inline-edit-row").show().removeAttr("style"):jQuery(".price_fields",".inline-edit-row").hide(),"yes"==t?jQuery(".dimension_fields",".inline-edit-row").hide():jQuery(".dimension_fields",".inline-edit-row").show().removeAttr("style"),"grouped"==s?jQuery(".stock_fields",".inline-edit-row").hide():jQuery(".stock_fields",".inline-edit-row").show().removeAttr("style")}),jQuery("#the-list").on("change",'.inline-edit-row input[name="_manage_stock"]',function(){jQuery(this).is(":checked")?jQuery(".stock_qty_field",".inline-edit-row").show().removeAttr("style"):jQuery(".stock_qty_field",".inline-edit-row").hide()}),jQuery("#wpbody").on("click","#doaction, #doaction2",function(){jQuery("input.text",".inline-edit-row").val(""),jQuery("#woocommerce-fields select").prop("selectedIndex",0),jQuery("#woocommerce-fields-bulk .inline-edit-group .alignright").hide()}),jQuery("#wpbody").on("change","#woocommerce-fields-bulk .inline-edit-group .change_to",function(){jQuery(this).val()>0?jQuery(this).closest("div").find(".alignright").show():jQuery(this).closest("div").find(".alignright").hide()}),jQuery(".product_shipping_class-checklist input").change(function(){jQuery(this).closest("li").siblings().find("input:checked").removeAttr("checked")})}); \ No newline at end of file diff --git a/assets/js/admin/reports.js b/assets/js/admin/reports.js index 191de071e3a..d2073a2a793 100644 --- a/assets/js/admin/reports.js +++ b/assets/js/admin/reports.js @@ -1,4 +1,4 @@ -jQuery(document).ready(function($) { +jQuery(function($) { function showTooltip(x, y, contents) { jQuery('
    ' + contents + '
    ').css( { @@ -97,6 +97,8 @@ jQuery(document).ready(function($) { }); var dates = jQuery( ".range_datepicker" ).datepicker({ + changeMonth: true, + changeYear: true, defaultDate: "", dateFormat: "yy-mm-dd", numberOfMonths: 1, @@ -115,6 +117,12 @@ jQuery(document).ready(function($) { } }); + var a = document.createElement('a'); + + if ( typeof a.download == "undefined" ) { + $('.export_csv').hide(); + } + // Export $('.export_csv').click(function(){ var exclude_series = $(this).data( 'exclude_series' ) || ''; @@ -221,4 +229,4 @@ jQuery(document).ready(function($) { $(this).attr( 'href', encodeURI( csv_data ) ); return true; }); -}); \ No newline at end of file +}); diff --git a/assets/js/admin/reports.min.js b/assets/js/admin/reports.min.js index 1554731f6d7..ebd87c2ebca 100644 --- a/assets/js/admin/reports.min.js +++ b/assets/js/admin/reports.min.js @@ -1 +1 @@ -jQuery(document).ready(function(e){function t(e,t,n){jQuery('
    '+n+"
    ").css({top:t-16,left:e+20}).appendTo("body").fadeIn(200)}var n=null,r=null;jQuery(".chart-placeholder").bind("plothover",function(e,i,s){if(s){if(n!=s.dataIndex||r!=s.seriesIndex){n=s.dataIndex;r=s.seriesIndex;jQuery(".chart-tooltip").remove();if(s.series.points.show||s.series.enable_tooltip){var o=s.series.data[s.dataIndex][1];tooltip_content="";s.series.prepend_label&&(tooltip_content=tooltip_content+s.series.label+": ");s.series.prepend_tooltip&&(tooltip_content+=s.series.prepend_tooltip);tooltip_content+=o;s.series.append_tooltip&&(tooltip_content+=s.series.append_tooltip);s.series.pie.show?t(i.pageX,i.pageY,tooltip_content):t(s.pageX,s.pageY,tooltip_content)}}}else{jQuery(".chart-tooltip").remove();n=null}});e(".wc_sparkline.bars").each(function(){var t=e(this).data("sparkline"),n={grid:{show:!1}},r=[{data:t,color:e(this).data("color"),bars:{fillColor:e(this).data("color"),fill:!0,show:!0,lineWidth:1,barWidth:e(this).data("barwidth"),align:"center"},shadowSize:0}],i=e.plot(e(this),r,n)});e(".wc_sparkline.lines").each(function(){var t=e(this).data("sparkline"),n={grid:{show:!1}},r=[{data:t,color:e(this).data("color"),lines:{fill:!1,show:!0,lineWidth:1,align:"center"},shadowSize:0}],i=e.plot(e(this),r,n)});var i=jQuery(".range_datepicker").datepicker({defaultDate:"",dateFormat:"yy-mm-dd",numberOfMonths:1,maxDate:"+0D",showButtonPanel:!0,showOn:"focus",buttonImageOnly:!0,onSelect:function(e){var t=jQuery(this).is(".from")?"minDate":"maxDate",n=jQuery(this).data("datepicker"),r=jQuery.datepicker.parseDate(n.settings.dateFormat||jQuery.datepicker._defaults.dateFormat,e,n.settings);i.not(this).datepicker("option",t,r)}});e(".export_csv").click(function(){var t=e(this).data("exclude_series")||"";t=t.toString();t=t.split(",");var n=e(this).data("xaxes"),r=e(this).data("groupby"),i=e(this).data("export"),s="data:application/csv;charset=utf-8,";if(i=="table"){e(this).closest("div").find("thead tr,tbody tr").each(function(){e(this).find("th,td").each(function(){value=e(this).text();value=value.replace("[?]","");s+='"'+value+'"'+","});s=s.substring(0,s.length-1);s+="\n"});e(this).closest("div").find("tfoot tr").each(function(){e(this).find("th,td").each(function(){value=e(this).text();value=value.replace("[?]","");s+='"'+value+'"'+",";if(e(this).attr("colspan")>0)for(h=1;h'+c+"").css({top:b-16,left:a+20}).appendTo("body").fadeIn(200)}var c=null,d=null;jQuery(".chart-placeholder").bind("plothover",function(a,e,f){if(f){if((c!=f.dataIndex||d!=f.seriesIndex)&&(c=f.dataIndex,d=f.seriesIndex,jQuery(".chart-tooltip").remove(),f.series.points.show||f.series.enable_tooltip)){var g=f.series.data[f.dataIndex][1];tooltip_content="",f.series.prepend_label&&(tooltip_content=tooltip_content+f.series.label+": "),f.series.prepend_tooltip&&(tooltip_content+=f.series.prepend_tooltip),tooltip_content+=g,f.series.append_tooltip&&(tooltip_content+=f.series.append_tooltip),f.series.pie.show?b(e.pageX,e.pageY,tooltip_content):b(f.pageX,f.pageY,tooltip_content)}}else jQuery(".chart-tooltip").remove(),c=null}),a(".wc_sparkline.bars").each(function(){{var b=a(this).data("sparkline"),c={grid:{show:!1}},d=[{data:b,color:a(this).data("color"),bars:{fillColor:a(this).data("color"),fill:!0,show:!0,lineWidth:1,barWidth:a(this).data("barwidth"),align:"center"},shadowSize:0}];a.plot(a(this),d,c)}}),a(".wc_sparkline.lines").each(function(){{var b=a(this).data("sparkline"),c={grid:{show:!1}},d=[{data:b,color:a(this).data("color"),lines:{fill:!1,show:!0,lineWidth:1,align:"center"},shadowSize:0}];a.plot(a(this),d,c)}});var e=jQuery(".range_datepicker").datepicker({changeMonth:!0,changeYear:!0,defaultDate:"",dateFormat:"yy-mm-dd",numberOfMonths:1,maxDate:"+0D",showButtonPanel:!0,showOn:"focus",buttonImageOnly:!0,onSelect:function(a){var b=jQuery(this).is(".from")?"minDate":"maxDate",c=jQuery(this).data("datepicker"),d=jQuery.datepicker.parseDate(c.settings.dateFormat||jQuery.datepicker._defaults.dateFormat,a,c.settings);e.not(this).datepicker("option",b,d)}}),f=document.createElement("a");"undefined"==typeof f.download&&a(".export_csv").hide(),a(".export_csv").click(function(){var b=a(this).data("exclude_series")||"";b=b.toString(),b=b.split(",");var c=a(this).data("xaxes"),d=a(this).data("groupby"),e=a(this).data("export"),f="data:application/csv;charset=utf-8,";if("table"==e)a(this).closest("div").find("thead tr,tbody tr").each(function(){a(this).find("th,td").each(function(){value=a(this).text(),value=value.replace("[?]",""),f+='"'+value+'",'}),f=f.substring(0,f.length-1),f+="\n"}),a(this).closest("div").find("tfoot tr").each(function(){a(this).find("th,td").each(function(){if(value=a(this).text(),value=value.replace("[?]",""),f+='"'+value+'",',a(this).attr("colspan")>0)for(m=1;m0|-(e<0);s=e%1===.5*o;i=Math.floor(e);if(s)switch(n){case"2":case"PHP_ROUND_HALF_DOWN":e=i+(o<0);break;case"3":case"PHP_ROUND_HALF_EVEN":e=i+i%2*o;break;case"4":case"PHP_ROUND_HALF_ODD":e=i+!(i%2);break;default:e=i+(o>0)}return(s?e:Math.round(e))/r}; \ No newline at end of file +function round(a,b,c){var d,e,f,g;if(b|=0,d=Math.pow(10,b),a*=d,g=a>0|-(0>a),f=a%1===.5*g,e=Math.floor(a),f)switch(c){case"2":case"PHP_ROUND_HALF_DOWN":a=e+(0>g);break;case"3":case"PHP_ROUND_HALF_EVEN":a=e+e%2*g;break;case"4":case"PHP_ROUND_HALF_ODD":a=e+!(e%2);break;default:a=e+(g>0)}return(f?a:Math.round(a))/d} \ No newline at end of file diff --git a/assets/js/admin/settings.js b/assets/js/admin/settings.js index 81d4eff00ea..ebeab7d5779 100644 --- a/assets/js/admin/settings.js +++ b/assets/js/admin/settings.js @@ -90,13 +90,13 @@ jQuery(window).load(function(){ }); // Select all/none - jQuery('.select_all').live('click', function() { + jQuery( '.woocommerce' ).on( 'click', '.select_all', function() { jQuery(this).closest( 'td' ).find( 'select option' ).attr( "selected", "selected" ); jQuery(this).closest( 'td' ).find('select').trigger( 'chosen:updated' ); return false; }); - jQuery('.select_none').live('click', function() { + jQuery( '.woocommerce' ).on( 'click', '.select_none', function() { jQuery(this).closest( 'td' ).find( 'select option' ).removeAttr( "selected" ); jQuery(this).closest( 'td' ).find('select').trigger( 'chosen:updated' ); return false; diff --git a/assets/js/admin/settings.min.js b/assets/js/admin/settings.min.js index 3dcdba0914f..81484c0c591 100644 --- a/assets/js/admin/settings.min.js +++ b/assets/js/admin/settings.min.js @@ -1 +1 @@ -jQuery(window).load(function(){jQuery("select#woocommerce_allowed_countries, select#woocommerce_ship_to_countries").change(function(){jQuery(this).val()=="specific"?jQuery(this).parent().parent().next("tr").show():jQuery(this).parent().parent().next("tr").hide()}).change();jQuery(".colorpick").iris({change:function(e,t){jQuery(this).css({backgroundColor:t.color.toString()})},hide:!0,border:!0}).each(function(){jQuery(this).css({backgroundColor:jQuery(this).val()})}).click(function(){jQuery(".iris-picker").hide();jQuery(this).closest(".color_box, td").find(".iris-picker").show()});jQuery("body").click(function(){jQuery(".iris-picker").hide()});jQuery(".color_box, .colorpick").click(function(e){e.stopPropagation()});jQuery(function(){var e=!1;jQuery("input, textarea, select, checkbox").change(function(){e=!0});jQuery(".woo-nav-tab-wrapper a").click(function(){e?window.onbeforeunload=function(){return woocommerce_settings_params.i18n_nav_warning}:window.onbeforeunload=""});jQuery(".submit input").click(function(){window.onbeforeunload=""})});jQuery("table.wc_gateways tbody, table.wc_shipping tbody").sortable({items:"tr",cursor:"move",axis:"y",handle:"td",scrollSensitivity:40,helper:function(e,t){t.children().each(function(){jQuery(this).width(jQuery(this).width())});t.css("left","0");return t},start:function(e,t){t.item.css("background-color","#f6f6f6")},stop:function(e,t){t.item.removeAttr("style")}});jQuery("select.chosen_select").chosen({width:"350px",disable_search_threshold:5});jQuery("select.chosen_select_nostd").chosen({allow_single_deselect:"true",width:"350px",disable_search_threshold:5});jQuery(".select_all").live("click",function(){jQuery(this).closest("td").find("select option").attr("selected","selected");jQuery(this).closest("td").find("select").trigger("chosen:updated");return!1});jQuery(".select_none").live("click",function(){jQuery(this).closest("td").find("select option").removeAttr("selected");jQuery(this).closest("td").find("select").trigger("chosen:updated");return!1})}); \ No newline at end of file +jQuery(window).load(function(){jQuery("select#woocommerce_allowed_countries, select#woocommerce_ship_to_countries").change(function(){"specific"==jQuery(this).val()?jQuery(this).parent().parent().next("tr").show():jQuery(this).parent().parent().next("tr").hide()}).change(),jQuery(".colorpick").iris({change:function(a,b){jQuery(this).css({backgroundColor:b.color.toString()})},hide:!0,border:!0}).each(function(){jQuery(this).css({backgroundColor:jQuery(this).val()})}).click(function(){jQuery(".iris-picker").hide(),jQuery(this).closest(".color_box, td").find(".iris-picker").show()}),jQuery("body").click(function(){jQuery(".iris-picker").hide()}),jQuery(".color_box, .colorpick").click(function(a){a.stopPropagation()}),jQuery(function(){var a=!1;jQuery("input, textarea, select, checkbox").change(function(){a=!0}),jQuery(".woo-nav-tab-wrapper a").click(function(){window.onbeforeunload=a?function(){return woocommerce_settings_params.i18n_nav_warning}:""}),jQuery(".submit input").click(function(){window.onbeforeunload=""})}),jQuery("table.wc_gateways tbody, table.wc_shipping tbody").sortable({items:"tr",cursor:"move",axis:"y",handle:"td",scrollSensitivity:40,helper:function(a,b){return b.children().each(function(){jQuery(this).width(jQuery(this).width())}),b.css("left","0"),b},start:function(a,b){b.item.css("background-color","#f6f6f6")},stop:function(a,b){b.item.removeAttr("style")}}),jQuery("select.chosen_select").chosen({width:"350px",disable_search_threshold:5}),jQuery("select.chosen_select_nostd").chosen({allow_single_deselect:"true",width:"350px",disable_search_threshold:5}),jQuery(".woocommerce").on("click",".select_all",function(){return jQuery(this).closest("td").find("select option").attr("selected","selected"),jQuery(this).closest("td").find("select").trigger("chosen:updated"),!1}),jQuery(".woocommerce").on("click",".select_none",function(){return jQuery(this).closest("td").find("select option").removeAttr("selected"),jQuery(this).closest("td").find("select").trigger("chosen:updated"),!1})}); \ No newline at end of file diff --git a/assets/js/admin/term-ordering.js b/assets/js/admin/term-ordering.js index e1c7b77751a..3bed28791ce 100644 --- a/assets/js/admin/term-ordering.js +++ b/assets/js/admin/term-ordering.js @@ -1,8 +1,8 @@ /* Modifided script from the simple-page-ordering plugin */ -jQuery(document).ready(function($) { +jQuery(function($) { $('table.widefat.wp-list-table tbody th, table.widefat tbody td').css('cursor','move'); - + $("table.widefat.wp-list-table").sortable({ items: 'tbody tr:not(.inline-edit-row)', cursor: 'move', @@ -17,47 +17,47 @@ jQuery(document).ready(function($) { ui.item.children('td,th').css('border-bottom-width','0'); ui.item.css( 'outline', '1px solid #aaa' ); }, - stop: function(event, ui) { + stop: function(event, ui) { ui.item.removeAttr('style'); - ui.item.children('td,th').css('border-bottom-width','1px'); + ui.item.children('td,th').css('border-bottom-width','1px'); }, - update: function(event, ui) { + update: function(event, ui) { var termid = ui.item.find('.check-column input').val(); // this post id var termparent = ui.item.find('.parent').html(); // post parent - + var prevtermid = ui.item.prev().find('.check-column input').val(); var nexttermid = ui.item.next().find('.check-column input').val(); - + // can only sort in same tree var prevtermparent = undefined; if ( prevtermid != undefined ) { var prevtermparent = ui.item.prev().find('.parent').html(); if ( prevtermparent != termparent) prevtermid = undefined; } - + var nexttermparent = undefined; if ( nexttermid != undefined ) { nexttermparent = ui.item.next().find('.parent').html(); if ( nexttermparent != termparent) nexttermid = undefined; - } - - // if previous and next not at same tree level, or next not at same tree level and the previous is the parent of the next, or just moved item beneath its own children + } + + // if previous and next not at same tree level, or next not at same tree level and the previous is the parent of the next, or just moved item beneath its own children if ( ( prevtermid == undefined && nexttermid == undefined ) || ( nexttermid == undefined && nexttermparent == prevtermid ) || ( nexttermid != undefined && prevtermparent == termid ) ) { $("table.widefat.wp-list-table").sortable('cancel'); return; } - + // show spinner ui.item.find('.check-column input').hide().after('processing'); - + // go do the sorting stuff via ajax - $.post( ajaxurl, { action: 'woocommerce_term_ordering', id: termid, nextid: nexttermid, thetaxonomy: woocommerce_term_ordering_params.taxonomy }, function(response){ + $.post( ajaxurl, { action: 'woocommerce_term_ordering', id: termid, nextid: nexttermid, thetaxonomy: woocommerce_term_ordering_params.taxonomy }, function(response){ if ( response == 'children' ) window.location.reload(); else { ui.item.find('.check-column input').show().siblings('img').remove(); } }); - + // fix cell colors $( 'table.widefat tbody tr' ).each(function(){ var i = jQuery('table.widefat tbody tr').index(this); diff --git a/assets/js/admin/term-ordering.min.js b/assets/js/admin/term-ordering.min.js index a4548e076e4..42c0fb0ac5e 100644 --- a/assets/js/admin/term-ordering.min.js +++ b/assets/js/admin/term-ordering.min.js @@ -1 +1 @@ -/* Modifided script from the simple-page-ordering plugin */jQuery(document).ready(function(e){e("table.widefat.wp-list-table tbody th, table.widefat tbody td").css("cursor","move");e("table.widefat.wp-list-table").sortable({items:"tbody tr:not(.inline-edit-row)",cursor:"move",axis:"y",forcePlaceholderSize:!0,helper:"clone",opacity:.65,placeholder:"product-cat-placeholder",scrollSensitivity:40,start:function(e,t){t.item.hasClass("alternate")||t.item.css("background-color","#ffffff");t.item.children("td,th").css("border-bottom-width","0");t.item.css("outline","1px solid #aaa")},stop:function(e,t){t.item.removeAttr("style");t.item.children("td,th").css("border-bottom-width","1px")},update:function(t,n){var r=n.item.find(".check-column input").val(),i=n.item.find(".parent").html(),s=n.item.prev().find(".check-column input").val(),o=n.item.next().find(".check-column input").val(),u=undefined;if(s!=undefined){var u=n.item.prev().find(".parent").html();u!=i&&(s=undefined)}var a=undefined;if(o!=undefined){a=n.item.next().find(".parent").html();a!=i&&(o=undefined)}if(s==undefined&&o==undefined||o==undefined&&a==s||o!=undefined&&u==r){e("table.widefat.wp-list-table").sortable("cancel");return}n.item.find(".check-column input").hide().after('processing');e.post(ajaxurl,{action:"woocommerce_term_ordering",id:r,nextid:o,thetaxonomy:woocommerce_term_ordering_params.taxonomy},function(e){e=="children"?window.location.reload():n.item.find(".check-column input").show().siblings("img").remove()});e("table.widefat tbody tr").each(function(){var e=jQuery("table.widefat tbody tr").index(this);e%2==0?jQuery(this).addClass("alternate"):jQuery(this).removeClass("alternate")})}})}); \ No newline at end of file +jQuery(function(a){a("table.widefat.wp-list-table tbody th, table.widefat tbody td").css("cursor","move"),a("table.widefat.wp-list-table").sortable({items:"tbody tr:not(.inline-edit-row)",cursor:"move",axis:"y",forcePlaceholderSize:!0,helper:"clone",opacity:.65,placeholder:"product-cat-placeholder",scrollSensitivity:40,start:function(a,b){b.item.hasClass("alternate")||b.item.css("background-color","#ffffff"),b.item.children("td,th").css("border-bottom-width","0"),b.item.css("outline","1px solid #aaa")},stop:function(a,b){b.item.removeAttr("style"),b.item.children("td,th").css("border-bottom-width","1px")},update:function(b,c){var d=c.item.find(".check-column input").val(),e=c.item.find(".parent").html(),f=c.item.prev().find(".check-column input").val(),g=c.item.next().find(".check-column input").val(),h=void 0;if(void 0!=f){var h=c.item.prev().find(".parent").html();h!=e&&(f=void 0)}var i=void 0;return void 0!=g&&(i=c.item.next().find(".parent").html(),i!=e&&(g=void 0)),void 0==f&&void 0==g||void 0==g&&i==f||void 0!=g&&h==d?void a("table.widefat.wp-list-table").sortable("cancel"):(c.item.find(".check-column input").hide().after('processing'),a.post(ajaxurl,{action:"woocommerce_term_ordering",id:d,nextid:g,thetaxonomy:woocommerce_term_ordering_params.taxonomy},function(a){"children"==a?window.location.reload():c.item.find(".check-column input").show().siblings("img").remove()}),void a("table.widefat tbody tr").each(function(){var a=jQuery("table.widefat tbody tr").index(this);a%2==0?jQuery(this).addClass("alternate"):jQuery(this).removeClass("alternate")}))}})}); \ No newline at end of file diff --git a/assets/js/admin/woocommerce_admin.js b/assets/js/admin/woocommerce_admin.js index 3a1e7a32dc3..ffff9a96e16 100644 --- a/assets/js/admin/woocommerce_admin.js +++ b/assets/js/admin/woocommerce_admin.js @@ -1,69 +1,116 @@ +/* global woocommerce_admin */ + /** * WooCommerce Admin JS */ -jQuery(function(){ +jQuery( function ( $ ) { // Price input validation - jQuery(".wc_input_decimal[type=text], .wc_input_price[type=text]") - .bind( 'blur', function() { - jQuery('.wc_error_tip').fadeOut('100', function(){ jQuery(this).remove(); } ); - return this; - }); + $('body').on( 'blur', '.wc_input_decimal[type=text], .wc_input_price[type=text], .wc_input_country_iso[type=text]', function() { + $('.wc_error_tip').fadeOut('100', function(){ $(this).remove(); } ); + return this; + }); - jQuery(".wc_input_price[type=text]") - .bind( 'keyup change', function() { - var value = jQuery(this).val(); - var regex = new RegExp( "[^0-9\%.\\" + woocommerce_admin.mon_decimal_point + "]+", "gi" ); - var newvalue = value.replace( regex, '' ); + $('body').on('keyup change', '.wc_input_price[type=text]', function(){ + var value = $(this).val(); + var regex = new RegExp( "[^\-0-9\%.\\" + woocommerce_admin.mon_decimal_point + "]+", "gi" ); + var newvalue = value.replace( regex, '' ); - if ( value !== newvalue ) { - jQuery(this).val( newvalue ); - if ( jQuery(this).parent().find('.wc_error_tip').size() == 0 ) { - var offset = jQuery(this).position(); - jQuery(this).after( '
    ' + woocommerce_admin.i18n_mon_decimal_error + '
    ' ); - jQuery('.wc_error_tip') - .css('left', offset.left + jQuery(this).width() - ( jQuery(this).width() / 2 ) - ( jQuery('.wc_error_tip').width() / 2 ) ) - .css('top', offset.top + jQuery(this).height() ) - .fadeIn('100'); - } - } - return this; - }); + if ( value !== newvalue ) { + $(this).val( newvalue ); + if ( $(this).parent().find('.wc_error_tip').size() == 0 ) { + var offset = $(this).position(); + $(this).after( '
    ' + woocommerce_admin.i18n_mon_decimal_error + '
    ' ); + $('.wc_error_tip') + .css('left', offset.left + $(this).width() - ( $(this).width() / 2 ) - ( $('.wc_error_tip').width() / 2 ) ) + .css('top', offset.top + $(this).height() ) + .fadeIn('100'); + } + } + return this; + }); - jQuery(".wc_input_decimal[type=text]") - .bind( 'keyup change', function() { - var value = jQuery(this).val(); - var regex = new RegExp( "[^0-9\%.\\" + woocommerce_admin.decimal_point + "]+", "gi" ); - var newvalue = value.replace( regex, '' ); + $('body').on('keyup change', '.wc_input_decimal[type=text]', function(){ + var value = $(this).val(); + var regex = new RegExp( "[^\-0-9\%.\\" + woocommerce_admin.decimal_point + "]+", "gi" ); + var newvalue = value.replace( regex, '' ); - if ( value !== newvalue ) { - jQuery(this).val( newvalue ); - if ( jQuery(this).parent().find('.wc_error_tip').size() == 0 ) { - var offset = jQuery(this).position(); - jQuery(this).after( '
    ' + woocommerce_admin.i18n_decimal_error + '
    ' ); - jQuery('.wc_error_tip') - .css('left', offset.left + jQuery(this).width() - ( jQuery(this).width() / 2 ) - ( jQuery('.wc_error_tip').width() / 2 ) ) - .css('top', offset.top + jQuery(this).height() ) - .fadeIn('100'); - } - } - return this; - }); + if ( value !== newvalue ) { + $(this).val( newvalue ); + if ( $(this).parent().find('.wc_error_tip').size() === 0 ) { + var offset = $(this).position(); + $(this).after( '
    ' + woocommerce_admin.i18n_decimal_error + '
    ' ); + $('.wc_error_tip') + .css('left', offset.left + $(this).width() - ( $(this).width() / 2 ) - ( $('.wc_error_tip').width() / 2 ) ) + .css('top', offset.top + $(this).height() ) + .fadeIn('100'); + } + } + return this; + }); - jQuery("body").click(function(){ - jQuery('.wc_error_tip').fadeOut('100', function(){ jQuery(this).remove(); } ); + $('body').on('keyup change', '#_sale_price.wc_input_price[type=text], .wc_input_price[name^=variable_sale_price]', function(){ + var sale_price_field = $(this); + var sale_price = parseInt( sale_price_field.val() ); + + if( sale_price_field.attr('name').indexOf('variable') !== -1 ) { + var regular_price = parseInt(sale_price_field.parents('.variable_pricing').find('.wc_input_price[name^=variable_regular_price]').val()); + } else { + var regular_price = parseInt($('#_regular_price').val()); + } + + if( sale_price >= regular_price ) { + $(this).val( regular_price ); + if ( $(this).parent().find('.wc_error_tip').size() === 0 ) { + var offset = $(this).position(); + $(this).after( '
    ' + woocommerce_admin.i18_sale_less_than_regular_error + '
    ' ); + $('.wc_error_tip') + .css('left', offset.left + $(this).width() - ( $(this).width() / 2 ) - ( $('.wc_error_tip').width() / 2 ) ) + .css('top', offset.top + $(this).height() ) + .fadeIn('100'); + } + } + return this; + }); + + $('body').on('keyup change', '.wc_input_country_iso[type=text]', function(){ + var value = $(this).val(); + var regex = new RegExp( '^([A-Z])?([A-Z])$' ); + + if ( ! regex.test( value ) ) { + $(this).val( '' ); + if ( $(this).parent().find('.wc_error_tip').size() === 0 ) { + var offset = $(this).position(); + $(this).after( '
    ' + woocommerce_admin.i18n_country_iso_error + '
    ' ); + $('.wc_error_tip') + .css('left', offset.left + $(this).width() - ( $(this).width() / 2 ) - ( $('.wc_error_tip').width() / 2 ) ) + .css('top', offset.top + $(this).height() ) + .fadeIn('100'); + } + } + return this; + }); + + $("body").click(function(){ + $('.wc_error_tip').fadeOut('100', function(){ $(this).remove(); } ); }); // Tooltips - jQuery(".tips, .help_tip").tipTip({ - 'attribute' : 'data-tip', - 'fadeIn' : 50, - 'fadeOut' : 50, - 'delay' : 200 - }); + var tiptip_args = { + 'attribute' : 'data-tip', + 'fadeIn' : 50, + 'fadeOut' : 50, + 'delay' : 200 + }; + $(".tips, .help_tip").tipTip( tiptip_args ); + + // Add tiptip to parent element for widefat tables + $(".parent-tips").each(function(){ + $(this).closest( 'a, th' ).attr( 'data-tip', $(this).data( 'tip' ) ).tipTip( tiptip_args ).css( 'cursor', 'help' ); + }); // wc_input_table tables - jQuery('.wc_input_table.sortable tbody').sortable({ + $('.wc_input_table.sortable tbody').sortable({ items:'tr', cursor:'move', axis:'y', @@ -80,13 +127,13 @@ jQuery(function(){ } }); - jQuery('.wc_input_table .remove_rows').click(function() { - var $tbody = jQuery(this).closest('.wc_input_table').find('tbody'); + $('.wc_input_table .remove_rows').click(function() { + var $tbody = $(this).closest('.wc_input_table').find('tbody'); if ( $tbody.find('tr.current').size() > 0 ) { $current = $tbody.find('tr.current'); $current.each(function(){ - jQuery(this).remove(); + $(this).remove(); }); } return false; @@ -96,103 +143,106 @@ jQuery(function(){ var shifted = false; var hasFocus = false; - jQuery(document).bind('keyup keydown', function(e){ shifted = e.shiftKey; controlled = e.ctrlKey || e.metaKey } ); + $(document).bind('keyup keydown', function(e){ shifted = e.shiftKey; controlled = e.ctrlKey || e.metaKey } ); - jQuery('.wc_input_table').on( 'focus click', 'input', function( e ) { + $('.wc_input_table').on( 'focus click', 'input', function( e ) { - $this_table = jQuery(this).closest('table'); - $this_row = jQuery(this).closest('tr'); + $this_table = $(this).closest('table'); + $this_row = $(this).closest('tr'); - if ( ( e.type == 'focus' && hasFocus != $this_row.index() ) || ( e.type == 'click' && jQuery(this).is(':focus') ) ) { + if ( ( e.type == 'focus' && hasFocus != $this_row.index() ) || ( e.type == 'click' && $(this).is(':focus') ) ) { hasFocus = $this_row.index(); if ( ! shifted && ! controlled ) { - jQuery('tr', $this_table).removeClass('current').removeClass('last_selected'); + $('tr', $this_table).removeClass('current').removeClass('last_selected'); $this_row.addClass('current').addClass('last_selected'); } else if ( shifted ) { - jQuery('tr', $this_table).removeClass('current'); + $('tr', $this_table).removeClass('current'); $this_row.addClass('selected_now').addClass('current'); - if ( jQuery('tr.last_selected', $this_table).size() > 0 ) { - if ( $this_row.index() > jQuery('tr.last_selected, $this_table').index() ) { - jQuery('tr', $this_table).slice( jQuery('tr.last_selected', $this_table).index(), $this_row.index() ).addClass('current'); + if ( $('tr.last_selected', $this_table).size() > 0 ) { + if ( $this_row.index() > $('tr.last_selected, $this_table').index() ) { + $('tr', $this_table).slice( $('tr.last_selected', $this_table).index(), $this_row.index() ).addClass('current'); } else { - jQuery('tr', $this_table).slice( $this_row.index(), jQuery('tr.last_selected', $this_table).index() + 1 ).addClass('current'); + $('tr', $this_table).slice( $this_row.index(), $('tr.last_selected', $this_table).index() + 1 ).addClass('current'); } } - jQuery('tr', $this_table).removeClass('last_selected'); + $('tr', $this_table).removeClass('last_selected'); $this_row.addClass('last_selected'); } else { - jQuery('tr', $this_table).removeClass('last_selected'); - if ( controlled && jQuery(this).closest('tr').is('.current') ) { + $('tr', $this_table).removeClass('last_selected'); + if ( controlled && $(this).closest('tr').is('.current') ) { $this_row.removeClass('current'); } else { $this_row.addClass('current').addClass('last_selected'); } } - jQuery('tr', $this_table).removeClass('selected_now'); + $('tr', $this_table).removeClass('selected_now'); } }).on( 'blur', 'input', function( e ) { hasFocus = false; }); + // Additional cost tables + $( '.woocommerce_page_wc-settings .shippingrows tbody tr:even' ).addClass( 'alternate' ); + // Availability inputs - jQuery('select.availability').change(function(){ - if ( jQuery(this).val() == "all" ) { - jQuery(this).closest('tr').next('tr').hide(); + $('select.availability').change(function(){ + if ( $(this).val() == "all" ) { + $(this).closest('tr').next('tr').hide(); } else { - jQuery(this).closest('tr').next('tr').show(); + $(this).closest('tr').next('tr').show(); } }).change(); // Show order items on orders page - jQuery('body').on( 'click', '.show_order_items', function() { - jQuery(this).closest('td').find('table').toggle(); + $('body').on( 'click', '.show_order_items', function() { + $(this).closest('td').find('table').toggle(); return false; }); // Hidden options - jQuery('.hide_options_if_checked').each(function(){ + $('.hide_options_if_checked').each(function(){ - jQuery(this).find('input:eq(0)').change(function() { + $(this).find('input:eq(0)').change(function() { - if (jQuery(this).is(':checked')) { - jQuery(this).closest('fieldset, tr').nextUntil( '.hide_options_if_checked, .show_options_if_checked', '.hidden_option').hide(); + if ($(this).is(':checked')) { + $(this).closest('fieldset, tr').nextUntil( '.hide_options_if_checked, .show_options_if_checked', '.hidden_option').hide(); } else { - jQuery(this).closest('fieldset, tr').nextUntil( '.hide_options_if_checked, .show_options_if_checked', '.hidden_option').show(); + $(this).closest('fieldset, tr').nextUntil( '.hide_options_if_checked, .show_options_if_checked', '.hidden_option').show(); } }).change(); }); - jQuery('.show_options_if_checked').each(function(){ + $('.show_options_if_checked').each(function(){ - jQuery(this).find('input:eq(0)').change(function() { + $(this).find('input:eq(0)').change(function() { - if (jQuery(this).is(':checked')) { - jQuery(this).closest('fieldset, tr').nextUntil( '.hide_options_if_checked, .show_options_if_checked', '.hidden_option').show(); + if ($(this).is(':checked')) { + $(this).closest('fieldset, tr').nextUntil( '.hide_options_if_checked, .show_options_if_checked', '.hidden_option').show(); } else { - jQuery(this).closest('fieldset, tr').nextUntil( '.hide_options_if_checked, .show_options_if_checked', '.hidden_option').hide(); + $(this).closest('fieldset, tr').nextUntil( '.hide_options_if_checked, .show_options_if_checked', '.hidden_option').hide(); } }).change(); }); - jQuery('input#woocommerce_demo_store').change(function() { - if (jQuery(this).is(':checked')) { - jQuery('#woocommerce_demo_store_notice').closest('tr').show(); + $('input#woocommerce_demo_store').change(function() { + if ($(this).is(':checked')) { + $('#woocommerce_demo_store_notice').closest('tr').show(); } else { - jQuery('#woocommerce_demo_store_notice').closest('tr').hide(); + $('#woocommerce_demo_store_notice').closest('tr').hide(); } }).change(); // Attribute term table - jQuery( 'table.attributes-table tbody tr:nth-child(odd)' ).addClass( 'alternate' ); + $( 'table.attributes-table tbody tr:nth-child(odd)' ).addClass( 'alternate' ); -}); \ No newline at end of file +}); diff --git a/assets/js/admin/woocommerce_admin.min.js b/assets/js/admin/woocommerce_admin.min.js index 285b1aa8c3d..4dc841e11a5 100644 --- a/assets/js/admin/woocommerce_admin.min.js +++ b/assets/js/admin/woocommerce_admin.min.js @@ -1,3 +1 @@ -/** - * WooCommerce Admin JS - */jQuery(function(){jQuery(".wc_input_decimal[type=text], .wc_input_price[type=text]").bind("blur",function(){jQuery(".wc_error_tip").fadeOut("100",function(){jQuery(this).remove()});return this});jQuery(".wc_input_price[type=text]").bind("keyup change",function(){var e=jQuery(this).val(),t=new RegExp("[^0-9%.\\"+woocommerce_admin.mon_decimal_point+"]+","gi"),n=e.replace(t,"");if(e!==n){jQuery(this).val(n);if(jQuery(this).parent().find(".wc_error_tip").size()==0){var r=jQuery(this).position();jQuery(this).after('
    '+woocommerce_admin.i18n_mon_decimal_error+"
    ");jQuery(".wc_error_tip").css("left",r.left+jQuery(this).width()-jQuery(this).width()/2-jQuery(".wc_error_tip").width()/2).css("top",r.top+jQuery(this).height()).fadeIn("100")}}return this});jQuery(".wc_input_decimal[type=text]").bind("keyup change",function(){var e=jQuery(this).val(),t=new RegExp("[^0-9%.\\"+woocommerce_admin.decimal_point+"]+","gi"),n=e.replace(t,"");if(e!==n){jQuery(this).val(n);if(jQuery(this).parent().find(".wc_error_tip").size()==0){var r=jQuery(this).position();jQuery(this).after('
    '+woocommerce_admin.i18n_decimal_error+"
    ");jQuery(".wc_error_tip").css("left",r.left+jQuery(this).width()-jQuery(this).width()/2-jQuery(".wc_error_tip").width()/2).css("top",r.top+jQuery(this).height()).fadeIn("100")}}return this});jQuery("body").click(function(){jQuery(".wc_error_tip").fadeOut("100",function(){jQuery(this).remove()})});jQuery(".tips, .help_tip").tipTip({attribute:"data-tip",fadeIn:50,fadeOut:50,delay:200});jQuery(".wc_input_table.sortable tbody").sortable({items:"tr",cursor:"move",axis:"y",scrollSensitivity:40,forcePlaceholderSize:!0,helper:"clone",opacity:.65,placeholder:"wc-metabox-sortable-placeholder",start:function(e,t){t.item.css("background-color","#f6f6f6")},stop:function(e,t){t.item.removeAttr("style")}});jQuery(".wc_input_table .remove_rows").click(function(){var e=jQuery(this).closest(".wc_input_table").find("tbody");if(e.find("tr.current").size()>0){$current=e.find("tr.current");$current.each(function(){jQuery(this).remove()})}return!1});var e=!1,t=!1,n=!1;jQuery(document).bind("keyup keydown",function(n){t=n.shiftKey;e=n.ctrlKey||n.metaKey});jQuery(".wc_input_table").on("focus click","input",function(r){$this_table=jQuery(this).closest("table");$this_row=jQuery(this).closest("tr");if(r.type=="focus"&&n!=$this_row.index()||r.type=="click"&&jQuery(this).is(":focus")){n=$this_row.index();if(!t&&!e){jQuery("tr",$this_table).removeClass("current").removeClass("last_selected");$this_row.addClass("current").addClass("last_selected")}else if(t){jQuery("tr",$this_table).removeClass("current");$this_row.addClass("selected_now").addClass("current");jQuery("tr.last_selected",$this_table).size()>0&&($this_row.index()>jQuery("tr.last_selected, $this_table").index()?jQuery("tr",$this_table).slice(jQuery("tr.last_selected",$this_table).index(),$this_row.index()).addClass("current"):jQuery("tr",$this_table).slice($this_row.index(),jQuery("tr.last_selected",$this_table).index()+1).addClass("current"));jQuery("tr",$this_table).removeClass("last_selected");$this_row.addClass("last_selected")}else{jQuery("tr",$this_table).removeClass("last_selected");e&&jQuery(this).closest("tr").is(".current")?$this_row.removeClass("current"):$this_row.addClass("current").addClass("last_selected")}jQuery("tr",$this_table).removeClass("selected_now")}}).on("blur","input",function(e){n=!1});jQuery("select.availability").change(function(){jQuery(this).val()=="all"?jQuery(this).closest("tr").next("tr").hide():jQuery(this).closest("tr").next("tr").show()}).change();jQuery("body").on("click",".show_order_items",function(){jQuery(this).closest("td").find("table").toggle();return!1});jQuery(".hide_options_if_checked").each(function(){jQuery(this).find("input:eq(0)").change(function(){jQuery(this).is(":checked")?jQuery(this).closest("fieldset, tr").nextUntil(".hide_options_if_checked, .show_options_if_checked",".hidden_option").hide():jQuery(this).closest("fieldset, tr").nextUntil(".hide_options_if_checked, .show_options_if_checked",".hidden_option").show()}).change()});jQuery(".show_options_if_checked").each(function(){jQuery(this).find("input:eq(0)").change(function(){jQuery(this).is(":checked")?jQuery(this).closest("fieldset, tr").nextUntil(".hide_options_if_checked, .show_options_if_checked",".hidden_option").show():jQuery(this).closest("fieldset, tr").nextUntil(".hide_options_if_checked, .show_options_if_checked",".hidden_option").hide()}).change()});jQuery("input#woocommerce_demo_store").change(function(){jQuery(this).is(":checked")?jQuery("#woocommerce_demo_store_notice").closest("tr").show():jQuery("#woocommerce_demo_store_notice").closest("tr").hide()}).change();jQuery("table.attributes-table tbody tr:nth-child(odd)").addClass("alternate")}); \ No newline at end of file +jQuery(function(a){a("body").on("blur",".wc_input_decimal[type=text], .wc_input_price[type=text], .wc_input_country_iso[type=text]",function(){return a(".wc_error_tip").fadeOut("100",function(){a(this).remove()}),this}),a("body").on("keyup change",".wc_input_price[type=text]",function(){var b=a(this).val(),c=new RegExp("[^-0-9%.\\"+woocommerce_admin.mon_decimal_point+"]+","gi"),d=b.replace(c,"");if(b!==d&&(a(this).val(d),0==a(this).parent().find(".wc_error_tip").size())){var e=a(this).position();a(this).after('
    '+woocommerce_admin.i18n_mon_decimal_error+"
    "),a(".wc_error_tip").css("left",e.left+a(this).width()-a(this).width()/2-a(".wc_error_tip").width()/2).css("top",e.top+a(this).height()).fadeIn("100")}return this}),a("body").on("keyup change",".wc_input_decimal[type=text]",function(){var b=a(this).val(),c=new RegExp("[^-0-9%.\\"+woocommerce_admin.decimal_point+"]+","gi"),d=b.replace(c,"");if(b!==d&&(a(this).val(d),0===a(this).parent().find(".wc_error_tip").size())){var e=a(this).position();a(this).after('
    '+woocommerce_admin.i18n_decimal_error+"
    "),a(".wc_error_tip").css("left",e.left+a(this).width()-a(this).width()/2-a(".wc_error_tip").width()/2).css("top",e.top+a(this).height()).fadeIn("100")}return this}),a("body").on("keyup change","#_sale_price.wc_input_price[type=text], .wc_input_price[name^=variable_sale_price]",function(){var b=a(this),c=parseInt(b.val());if(-1!==b.attr("name").indexOf("variable"))var d=parseInt(b.parents(".variable_pricing").find(".wc_input_price[name^=variable_regular_price]").val());else var d=parseInt(a("#_regular_price").val());if(c>=d&&(a(this).val(d),0===a(this).parent().find(".wc_error_tip").size())){var e=a(this).position();a(this).after('
    '+woocommerce_admin.i18_sale_less_than_regular_error+"
    "),a(".wc_error_tip").css("left",e.left+a(this).width()-a(this).width()/2-a(".wc_error_tip").width()/2).css("top",e.top+a(this).height()).fadeIn("100")}return this}),a("body").on("keyup change",".wc_input_country_iso[type=text]",function(){var b=a(this).val(),c=new RegExp("^([A-Z])?([A-Z])$");if(!c.test(b)&&(a(this).val(""),0===a(this).parent().find(".wc_error_tip").size())){var d=a(this).position();a(this).after('
    '+woocommerce_admin.i18n_country_iso_error+"
    "),a(".wc_error_tip").css("left",d.left+a(this).width()-a(this).width()/2-a(".wc_error_tip").width()/2).css("top",d.top+a(this).height()).fadeIn("100")}return this}),a("body").click(function(){a(".wc_error_tip").fadeOut("100",function(){a(this).remove()})});var b={attribute:"data-tip",fadeIn:50,fadeOut:50,delay:200};a(".tips, .help_tip").tipTip(b),a(".parent-tips").each(function(){a(this).closest("a, th").attr("data-tip",a(this).data("tip")).tipTip(b).css("cursor","help")}),a(".wc_input_table.sortable tbody").sortable({items:"tr",cursor:"move",axis:"y",scrollSensitivity:40,forcePlaceholderSize:!0,helper:"clone",opacity:.65,placeholder:"wc-metabox-sortable-placeholder",start:function(a,b){b.item.css("background-color","#f6f6f6")},stop:function(a,b){b.item.removeAttr("style")}}),a(".wc_input_table .remove_rows").click(function(){var b=a(this).closest(".wc_input_table").find("tbody");return b.find("tr.current").size()>0&&($current=b.find("tr.current"),$current.each(function(){a(this).remove()})),!1});var c=!1,d=!1,e=!1;a(document).bind("keyup keydown",function(a){d=a.shiftKey,c=a.ctrlKey||a.metaKey}),a(".wc_input_table").on("focus click","input",function(b){$this_table=a(this).closest("table"),$this_row=a(this).closest("tr"),("focus"==b.type&&e!=$this_row.index()||"click"==b.type&&a(this).is(":focus"))&&(e=$this_row.index(),d||c?d?(a("tr",$this_table).removeClass("current"),$this_row.addClass("selected_now").addClass("current"),a("tr.last_selected",$this_table).size()>0&&($this_row.index()>a("tr.last_selected, $this_table").index()?a("tr",$this_table).slice(a("tr.last_selected",$this_table).index(),$this_row.index()).addClass("current"):a("tr",$this_table).slice($this_row.index(),a("tr.last_selected",$this_table).index()+1).addClass("current")),a("tr",$this_table).removeClass("last_selected"),$this_row.addClass("last_selected")):(a("tr",$this_table).removeClass("last_selected"),c&&a(this).closest("tr").is(".current")?$this_row.removeClass("current"):$this_row.addClass("current").addClass("last_selected")):(a("tr",$this_table).removeClass("current").removeClass("last_selected"),$this_row.addClass("current").addClass("last_selected")),a("tr",$this_table).removeClass("selected_now"))}).on("blur","input",function(){e=!1}),a(".woocommerce_page_wc-settings .shippingrows tbody tr:even").addClass("alternate"),a("select.availability").change(function(){"all"==a(this).val()?a(this).closest("tr").next("tr").hide():a(this).closest("tr").next("tr").show()}).change(),a("body").on("click",".show_order_items",function(){return a(this).closest("td").find("table").toggle(),!1}),a(".hide_options_if_checked").each(function(){a(this).find("input:eq(0)").change(function(){a(this).is(":checked")?a(this).closest("fieldset, tr").nextUntil(".hide_options_if_checked, .show_options_if_checked",".hidden_option").hide():a(this).closest("fieldset, tr").nextUntil(".hide_options_if_checked, .show_options_if_checked",".hidden_option").show()}).change()}),a(".show_options_if_checked").each(function(){a(this).find("input:eq(0)").change(function(){a(this).is(":checked")?a(this).closest("fieldset, tr").nextUntil(".hide_options_if_checked, .show_options_if_checked",".hidden_option").show():a(this).closest("fieldset, tr").nextUntil(".hide_options_if_checked, .show_options_if_checked",".hidden_option").hide()}).change()}),a("input#woocommerce_demo_store").change(function(){a(this).is(":checked")?a("#woocommerce_demo_store_notice").closest("tr").show():a("#woocommerce_demo_store_notice").closest("tr").hide()}).change(),a("table.attributes-table tbody tr:nth-child(odd)").addClass("alternate")}); \ No newline at end of file diff --git a/assets/js/chosen/ajax-chosen.jquery.js b/assets/js/chosen/ajax-chosen.jquery.js old mode 100755 new mode 100644 diff --git a/assets/js/chosen/chosen-rtl.js b/assets/js/chosen/chosen-rtl.js index d27f8e3459b..d76d6aab456 100644 --- a/assets/js/chosen/chosen-rtl.js +++ b/assets/js/chosen/chosen-rtl.js @@ -1,6 +1,6 @@ -jQuery(document).ready(function($) { +jQuery(function($) { // Fix Chosen for RTL - $('.chosen_select, .chosen_select_nostd, .product_attributes select.multiselect, select.country_select, select.state_select, select#dropdown_shop_coupon_type, select[name=m], select#dropdown_shop_order_status').addClass('chosen-rtl'); + $('.chosen_select, .chosen_select_nostd, .product_attributes select.multiselect, select.country_select, select.state_select, select#dropdown_shop_coupon_type, select[name=m]').addClass('chosen-rtl'); -}); \ No newline at end of file +}); diff --git a/assets/js/chosen/chosen-rtl.min.js b/assets/js/chosen/chosen-rtl.min.js index be78be572f5..d3783aba8a4 100644 --- a/assets/js/chosen/chosen-rtl.min.js +++ b/assets/js/chosen/chosen-rtl.min.js @@ -1 +1 @@ -jQuery(document).ready(function(e){e(".chosen_select, .chosen_select_nostd, .product_attributes select.multiselect, select.country_select, select.state_select, select#dropdown_shop_coupon_type, select[name=m], select#dropdown_shop_order_status").addClass("chosen-rtl")}); \ No newline at end of file +jQuery(function(e){e(".chosen_select, .chosen_select_nostd, .product_attributes select.multiselect, select.country_select, select.state_select, select#dropdown_shop_coupon_type, select[name=m]").addClass("chosen-rtl")}); diff --git a/assets/js/chosen/chosen.jquery.js b/assets/js/chosen/chosen.jquery.js old mode 100755 new mode 100644 diff --git a/assets/js/chosen/chosen.jquery.min.js b/assets/js/chosen/chosen.jquery.min.js old mode 100755 new mode 100644 diff --git a/assets/js/frontend/add-payment-method.js b/assets/js/frontend/add-payment-method.js index 655415e4d11..3fc9a8e3712 100644 --- a/assets/js/frontend/add-payment-method.js +++ b/assets/js/frontend/add-payment-method.js @@ -1,31 +1,34 @@ -jQuery(document).ready(function($){ +jQuery( function( $ ) { // woocommerce_params is required to continue, ensure the object exists - if (typeof woocommerce_params === "undefined") + if ( typeof woocommerce_params === 'undefined' ) return false; - $('#add_payment_method') + $( '#add_payment_method' ) /* Payment option selection */ .on( 'click init_add_payment_method', '.payment_methods input.input-radio', function() { - if ( $('.payment_methods input.input-radio').length > 1 ) { - $('div.payment_box').filter(':visible').slideUp(250); - if ($(this).is(':checked')) { - $('div.payment_box.' + $(this).attr('ID')).slideDown(250); + if ( $( '.payment_methods input.input-radio' ).length > 1 ) { + var target_payment_box = $( 'div.payment_box.' + $( this ).attr( 'ID' ) ); + if ( $( this ).is( ':checked' ) && ! target_payment_box.is( ':visible' ) ) { + $( 'div.payment_box' ).filter( ':visible' ).slideUp( 250 ); + if ( $( this ).is( ':checked' ) ) { + $( 'div.payment_box.' + $( this ).attr( 'ID' ) ).slideDown( 250 ); + } } } else { - $('div.payment_box').show(); + $( 'div.payment_box' ).show(); } }) // Trigger initial click - .find('input[name=payment_method]:checked').click(); + .find( 'input[name=payment_method]:checked' ).click(); - $('#add_payment_method').submit(function(){ - $('#add_payment_method').block({message: null, overlayCSS: {background: '#fff url(' + woocommerce_params.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', backgroundSize: '16px 16px', opacity: 0.6}}); + $( '#add_payment_method' ).submit( function() { + $( '#add_payment_method' ).block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_params.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', backgroundSize: '16px 16px', opacity: 0.6 } }); }); - $('body').trigger('init_add_payment_method'); + $( 'body' ).trigger( 'init_add_payment_method' ); }); diff --git a/assets/js/frontend/add-payment-method.min.js b/assets/js/frontend/add-payment-method.min.js index 9459d478a40..d539d0f7b47 100644 --- a/assets/js/frontend/add-payment-method.min.js +++ b/assets/js/frontend/add-payment-method.min.js @@ -1 +1 @@ -jQuery(document).ready(function(e){if(typeof woocommerce_params=="undefined")return!1;e("#add_payment_method").on("click init_add_payment_method",".payment_methods input.input-radio",function(){if(e(".payment_methods input.input-radio").length>1){e("div.payment_box").filter(":visible").slideUp(250);e(this).is(":checked")&&e("div.payment_box."+e(this).attr("ID")).slideDown(250)}else e("div.payment_box").show()}).find("input[name=payment_method]:checked").click();e("#add_payment_method").submit(function(){e("#add_payment_method").block({message:null,overlayCSS:{background:"#fff url("+woocommerce_params.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",backgroundSize:"16px 16px",opacity:.6}})});e("body").trigger("init_add_payment_method")}); \ No newline at end of file +jQuery(function(a){return"undefined"==typeof woocommerce_params?!1:(a("#add_payment_method").on("click init_add_payment_method",".payment_methods input.input-radio",function(){if(a(".payment_methods input.input-radio").length>1){var b=a("div.payment_box."+a(this).attr("ID"));a(this).is(":checked")&&!b.is(":visible")&&(a("div.payment_box").filter(":visible").slideUp(250),a(this).is(":checked")&&a("div.payment_box."+a(this).attr("ID")).slideDown(250))}else a("div.payment_box").show()}).find("input[name=payment_method]:checked").click(),a("#add_payment_method").submit(function(){a("#add_payment_method").block({message:null,overlayCSS:{background:"#fff url("+woocommerce_params.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",backgroundSize:"16px 16px",opacity:.6}})}),void a("body").trigger("init_add_payment_method"))}); \ No newline at end of file diff --git a/assets/js/frontend/add-to-cart-variation.js b/assets/js/frontend/add-to-cart-variation.js index b8885fda8fb..e790494d3cd 100644 --- a/assets/js/frontend/add-to-cart-variation.js +++ b/assets/js/frontend/add-to-cart-variation.js @@ -3,425 +3,427 @@ */ ;(function ( $, window, document, undefined ) { - $.fn.wc_variation_form = function () { + $.fn.wc_variation_form = function () { - $.fn.wc_variation_form.find_matching_variations = function( product_variations, settings ) { - var matching = []; + $.fn.wc_variation_form.find_matching_variations = function( product_variations, settings ) { + var matching = []; - for (var i = 0; i < product_variations.length; i++) { - var variation = product_variations[i]; - var variation_id = variation.variation_id; + for ( var i = 0; i < product_variations.length; i++ ) { + var variation = product_variations[i]; + var variation_id = variation.variation_id; if ( $.fn.wc_variation_form.variations_match( variation.attributes, settings ) ) { - matching.push(variation); - } - } - return matching; - } + matching.push( variation ); + } + } - $.fn.wc_variation_form.variations_match = function( attrs1, attrs2 ) { - var match = true; - for ( attr_name in attrs1 ) { - var val1 = attrs1[ attr_name ]; - var val2 = attrs2[ attr_name ]; - if ( val1 !== undefined && val2 !== undefined && val1.length != 0 && val2.length != 0 && val1 != val2 ) { - match = false; - } - } - return match; - } + return matching; + }; - // Unbind any existing events - this.unbind( 'check_variations update_variation_values found_variation' ); - this.find('.reset_variations').unbind( 'click' ); - this.find('.variations select').unbind( 'change focusin' ); + $.fn.wc_variation_form.variations_match = function( attrs1, attrs2 ) { + var match = true; - // Bind events - $form = this + for ( var attr_name in attrs1 ) { + if ( attrs1.hasOwnProperty( attr_name ) ) { + var val1 = attrs1[ attr_name ]; + var val2 = attrs2[ attr_name ]; - // On clicking the reset variation button - .on( 'click', '.reset_variations', function( event ) { + if ( val1 !== undefined && val2 !== undefined && val1.length !== 0 && val2.length !== 0 && val1 !== val2 ) { + match = false; + } + } + } - $(this).closest('.variations_form').find('.variations select').val('').change(); + return match; + }; - var $sku = $(this).closest('.product').find('.sku'); - var $weight = $(this).closest('.product').find('.product_weight'); - var $dimensions = $(this).closest('.product').find('.product_dimensions'); + // Unbind any existing events + this.unbind( 'check_variations update_variation_values found_variation' ); + this.find( '.reset_variations' ).unbind( 'click' ); + this.find( '.variations select' ).unbind( 'change focusin' ); - if ( $sku.attr( 'data-o_sku' ) ) - $sku.text( $sku.attr( 'data-o_sku' ) ); + // Bind events + $form = this - if ( $weight.attr( 'data-o_weight' ) ) - $weight.text( $weight.attr( 'data-o_weight' ) ); + // On clicking the reset variation button + .on( 'click', '.reset_variations', function( event ) { - if ( $dimensions.attr( 'data-o_dimensions' ) ) - $dimensions.text( $dimensions.attr( 'data-o_dimensions' ) ); + $( this ).closest( '.variations_form' ).find( '.variations select' ).val( '' ).change(); - return false; - } ) + var $sku = $( this ).closest( '.product' ).find( '.sku' ), + $weight = $( this ).closest( '.product' ).find( '.product_weight' ), + $dimensions = $( this ).closest( '.product' ).find( '.product_dimensions' ); - // Upon changing an option - .on( 'change', '.variations select', function( event ) { + if ( $sku.attr( 'data-o_sku' ) ) + $sku.text( $sku.attr( 'data-o_sku' ) ); - $variation_form = $(this).closest('.variations_form'); - $variation_form.find('input[name=variation_id]').val('').change(); + if ( $weight.attr( 'data-o_weight' ) ) + $weight.text( $weight.attr( 'data-o_weight' ) ); - $variation_form - .trigger( 'woocommerce_variation_select_change' ) - .trigger( 'check_variations', [ '', false ] ); + if ( $dimensions.attr( 'data-o_dimensions' ) ) + $dimensions.text( $dimensions.attr( 'data-o_dimensions' ) ); - $(this).blur(); + return false; + } ) - if( $().uniform && $.isFunction( $.uniform.update ) ) { - $.uniform.update(); + // Upon changing an option + .on( 'change', '.variations select', function( event ) { + + $variation_form = $( this ).closest( '.variations_form' ); + $variation_form.find( 'input[name=variation_id]' ).val( '' ).change(); + + $variation_form + .trigger( 'woocommerce_variation_select_change' ) + .trigger( 'check_variations', [ '', false ] ); + + $( this ).blur(); + + if( $().uniform && $.isFunction( $.uniform.update ) ) { + $.uniform.update(); + } + + } ) + + // Upon gaining focus + .on( 'focusin touchstart', '.variations select', function( event ) { + + $variation_form = $( this ).closest( '.variations_form' ); + + $variation_form + .trigger( 'woocommerce_variation_select_focusin' ) + .trigger( 'check_variations', [ $( this ).attr( 'name' ), true ] ); + + } ) + + // Check variations + .on( 'check_variations', function( event, exclude, focus ) { + var all_set = true, + any_set = false, + showing_variation = false, + current_settings = {}, + $variation_form = $( this ), + $reset_variations = $variation_form.find( '.reset_variations' ); + + $variation_form.find( '.variations select' ).each( function() { + + if ( $( this ).val().length === 0 ) { + all_set = false; + } else { + any_set = true; } - } ) + if ( exclude && $( this ).attr( 'name' ) === exclude ) { - // Upon gaining focus - .on( 'focusin touchstart', '.variations select', function( event ) { + all_set = false; + current_settings[$( this ).attr( 'name' )] = ''; - $variation_form = $(this).closest('.variations_form'); + } else { - $variation_form - .trigger( 'woocommerce_variation_select_focusin' ) - .trigger( 'check_variations', [ $(this).attr('name'), true ] ); - - } ) - - // Check variations - .on( 'check_variations', function( event, exclude, focus ) { - var all_set = true; - var any_set = false; - var showing_variation = false; - var current_settings = {}; - var $variation_form = $(this); - var $reset_variations = $variation_form.find('.reset_variations'); - - $variation_form.find('.variations select').each( function() { - - if ( $(this).val().length == 0 ) { - all_set = false; - } else { - any_set = true; - } - - if ( exclude && $(this).attr('name') == exclude ) { - - all_set = false; - current_settings[$(this).attr('name')] = ''; - - } else { - - // Encode entities - value = $(this).val(); - - // Add to settings array - current_settings[ $(this).attr('name') ] = value; - } - - }); - - var product_id = parseInt( $variation_form.data( 'product_id' ) ); - var all_variations = $variation_form.data( 'product_variations' ) - - // Fallback to window property if not set - backwards compat - if ( ! all_variations ) - all_variations = window[ "product_variations" ][ product_id ]; - if ( ! all_variations ) - all_variations = window[ "product_variations" ]; - if ( ! all_variations ) - all_variations = window[ "product_variations_" + product_id ]; - - var matching_variations = $.fn.wc_variation_form.find_matching_variations( all_variations, current_settings ); - - if ( all_set ) { - - var variation = matching_variations.shift(); - - if ( variation ) { - - // Found - set ID - $variation_form - .find('input[name=variation_id]') - .val( variation.variation_id ) - .change(); - - $variation_form.trigger( 'found_variation', [ variation ] ); - - } else { - - // Nothing found - reset fields - $variation_form.find('.variations select').val(''); - - if ( ! focus ) - $variation_form.trigger( 'reset_image' ); - - alert( wc_add_to_cart_variation_params.i18n_no_matching_variations_text ); - - } - - } else { - - $variation_form.trigger( 'update_variation_values', [ matching_variations ] ); - - if ( ! focus ) - $variation_form.trigger( 'reset_image' ); - - if ( ! exclude ) { - $variation_form.find('.single_variation_wrap').slideUp('200'); - } - - } - - if ( any_set ) { - - if ( $reset_variations.css('visibility') == 'hidden' ) - $reset_variations.css('visibility','visible').hide().fadeIn(); - - } else { - - $reset_variations.css('visibility','hidden'); + // Encode entities + value = $( this ).val(); + // Add to settings array + current_settings[ $( this ).attr( 'name' ) ] = value; } - } ) - - // Reset product image - .on( 'reset_image', function( event ) { - - var $product = $(this).closest( '.product' ); - var $product_img = $product.find( 'div.images img:eq(0)' ); - var $product_link = $product.find( 'div.images a.zoom:eq(0)' ); - var o_src = $product_img.attr('data-o_src'); - var o_title = $product_img.attr('data-o_title'); - var o_alt = $product_img.attr('data-o_alt'); - var o_href = $product_link.attr('data-o_href'); - - if ( o_src != undefined ) { - $product_img - .attr( 'src', o_src ); - } - if ( o_href != undefined ) { - $product_link - .attr( 'href', o_href ); - } - if ( o_title != undefined ) { - $product_img - .attr( 'title', o_title ); - $product_link - .attr( 'title', o_title ); - } - if ( o_alt != undefined ) { - $product_img - .attr( 'alt', o_alt ); - } - } ) - - // Disable option fields that are unavaiable for current set of attributes - .on( 'update_variation_values', function( event, variations ) { - - $variation_form = $(this).closest('.variations_form'); - - // Loop through selects and disable/enable options based on selections - $variation_form.find('.variations select').each(function( index, el ) { - - current_attr_select = $(el); - - // Reset options - if ( ! current_attr_select.data( 'attribute_options' ) ) - current_attr_select.data( 'attribute_options', current_attr_select.find('option:gt(0)').get() ) - - current_attr_select.find('option:gt(0)').remove(); - current_attr_select.append( current_attr_select.data( 'attribute_options' ) ); - current_attr_select.find('option:gt(0)').removeClass('active'); - - // Get name - var current_attr_name = current_attr_select.attr('name'); - - // Loop through variations - for ( num in variations ) { - - if ( typeof( variations[ num ] ) != "undefined" ) { - - var attributes = variations[ num ].attributes; - - for ( attr_name in attributes ) { - - var attr_val = attributes[ attr_name ]; - - if ( attr_name == current_attr_name ) { - - if ( attr_val ) { - - // Decode entities - attr_val = $("
    ").html( attr_val ).text(); - - // Add slashes - attr_val = attr_val.replace(/'/g, "\\'"); - attr_val = attr_val.replace(/"/g, "\\\""); - - // Compare the meerkat - current_attr_select.find('option[value="' + attr_val + '"]').addClass('active'); - - } else { - - current_attr_select.find('option:gt(0)').addClass('active'); - - } - - } - - } - - } - - } - - // Detach inactive - current_attr_select.find('option:gt(0):not(.active)').remove(); - - }); - - // Custom event for when variations have been updated - $variation_form.trigger('woocommerce_update_variation_values'); - - } ) - - // Show single variation details (price, stock, image) - .on( 'found_variation', function( event, variation ) { - var $variation_form = $(this); - - var $product = $(this).closest( '.product' ); - var $product_img = $product.find( 'div.images img:eq(0)' ); - var $product_link = $product.find( 'div.images a.zoom:eq(0)' ); - - var o_src = $product_img.attr('data-o_src'); - var o_title = $product_img.attr('data-o_title'); - var o_alt = $product_img.attr('data-o_alt'); - var o_href = $product_link.attr('data-o_href'); - - var variation_image = variation.image_src; - var variation_link = variation.image_link; - var variation_title = variation.image_title; - var variation_alt = variation.image_alt; - - $variation_form.find('.variations_button').show(); - $variation_form.find('.single_variation').html( variation.price_html + variation.availability_html ); - - if ( o_src == undefined ) { - o_src = ( ! $product_img.attr('src') ) ? '' : $product_img.attr('src'); - $product_img.attr('data-o_src', o_src ); - } - - if ( o_href == undefined ) { - o_href = ( ! $product_link.attr('href') ) ? '' : $product_link.attr('href'); - $product_link.attr('data-o_href', o_href ); - } - - if ( o_title == undefined ) { - o_title = ( ! $product_img.attr('title') ) ? '' : $product_img.attr('title'); - $product_img.attr('data-o_title', o_title ); - } - - if ( o_alt == undefined ) { - o_alt = ( ! $product_img.attr('alt') ) ? '' : $product_img.attr('alt'); - $product_img.attr('data-o_alt', o_alt ); - } - - if ( variation_image && variation_image.length > 1 ) { - $product_img - .attr( 'src', variation_image ) - .attr( 'alt', variation_alt ) - .attr( 'title', variation_title ); - $product_link - .attr( 'href', variation_link ) - .attr( 'title', variation_title ); - } else { - $product_img - .attr( 'src', o_src ) - .attr( 'alt', o_alt ) - .attr( 'title', o_title ); - $product_link - .attr( 'href', o_href ) - .attr( 'title', o_title ); - } - - var $single_variation_wrap = $variation_form.find('.single_variation_wrap'); - - var $sku = $product.find('.product_meta').find('.sku'); - var $weight = $product.find('.product_weight'); - var $dimensions = $product.find('.product_dimensions'); - - if ( ! $sku.attr( 'data-o_sku' ) ) - $sku.attr( 'data-o_sku', $sku.text() ); - - if ( ! $weight.attr( 'data-o_weight' ) ) - $weight.attr( 'data-o_weight', $weight.text() ); - - if ( ! $dimensions.attr( 'data-o_dimensions' ) ) - $dimensions.attr( 'data-o_dimensions', $dimensions.text() ); - - if ( variation.sku ) { - $sku.text( variation.sku ); - } else { - $sku.text( $sku.attr( 'data-o_sku' ) ); - } - - if ( variation.weight ) { - $weight.text( variation.weight ); - } else { - $weight.text( $weight.attr( 'data-o_weight' ) ); - } - - if ( variation.dimensions ) { - $dimensions.text( variation.dimensions ); - } else { - $dimensions.text( $dimensions.attr( 'data-o_dimensions' ) ); - } - - $single_variation_wrap.find('.quantity').show(); - - if ( ! variation.is_in_stock && ! variation.backorders_allowed ) { - $variation_form.find('.variations_button').hide(); - } - - if ( ! variation.variation_is_visible ) { - $variation_form.find('.variations_button').hide(); - $variation_form.find('.single_variation').html( '

    ' + wc_add_to_cart_variation_params.i18n_unavailable_text + '

    ' ); - } - - if ( variation.min_qty ) - $single_variation_wrap.find('input[name=quantity]').attr( 'min', variation.min_qty ).val( variation.min_qty ); - else - $single_variation_wrap.find('input[name=quantity]').removeAttr('min'); - - if ( variation.max_qty ) - $single_variation_wrap.find('input[name=quantity]').attr('max', variation.max_qty); - else - $single_variation_wrap.find('input[name=quantity]').removeAttr('max'); - - if ( variation.is_sold_individually == 'yes' ) { - $single_variation_wrap.find('input[name=quantity]').val('1'); - $single_variation_wrap.find('.quantity').hide(); - } - - $single_variation_wrap.slideDown('200').trigger( 'show_variation', [ variation ] ); - }); - $form.trigger('wc_variation_form'); - return $form; - }; + var product_id = parseInt( $variation_form.data( 'product_id' ) ), + all_variations = $variation_form.data( 'product_variations' ); - $(function() { + // Fallback to window property if not set - backwards compat + if ( ! all_variations ) + all_variations = window.product_variations.product_id; + if ( ! all_variations ) + all_variations = window.product_variations; + if ( ! all_variations ) + all_variations = window['product_variations_' + product_id ]; + + var matching_variations = $.fn.wc_variation_form.find_matching_variations( all_variations, current_settings ); + + if ( all_set ) { + + var variation = matching_variations.shift(); + + if ( variation ) { + + // Found - set ID + $variation_form + .find( 'input[name=variation_id]' ) + .val( variation.variation_id ) + .change(); + + $variation_form.trigger( 'found_variation', [ variation ] ); + + } else { + + // Nothing found - reset fields + $variation_form.find( '.variations select' ).val( '' ); + + if ( ! focus ) + $variation_form.trigger( 'reset_image' ); + + alert( wc_add_to_cart_variation_params.i18n_no_matching_variations_text ); + + } + + } else { + + $variation_form.trigger( 'update_variation_values', [ matching_variations ] ); + + if ( ! focus ) + $variation_form.trigger( 'reset_image' ); + + if ( ! exclude ) { + $variation_form.find( '.single_variation_wrap' ).slideUp( 200 ); + } + + } + + if ( any_set ) { + + if ( $reset_variations.css( 'visibility' ) === 'hidden' ) + $reset_variations.css( 'visibility', 'visible' ).hide().fadeIn(); + + } else { + + $reset_variations.css( 'visibility', 'hidden' ); + + } + + } ) + + // Reset product image + .on( 'reset_image', function( event ) { + + var $product = $(this).closest( '.product' ), + $product_img = $product.find( 'div.images img:eq(0)' ), + $product_link = $product.find( 'div.images a.zoom:eq(0)' ), + o_src = $product_img.attr( 'data-o_src' ), + o_title = $product_img.attr( 'data-o_title' ), + o_alt = $product_img.attr( 'data-o_alt' ), + o_href = $product_link.attr( 'data-o_href' ); + + if ( o_src !== undefined ) { + $product_img + .attr( 'src', o_src ); + } + + if ( o_href !== undefined ) { + $product_link + .attr( 'href', o_href ); + } + + if ( o_title !== undefined ) { + $product_img + .attr( 'title', o_title ); + $product_link + .attr( 'title', o_title ); + } + + if ( o_alt !== undefined ) { + $product_img + .attr( 'alt', o_alt ); + } + } ) + + // Disable option fields that are unavaiable for current set of attributes + .on( 'update_variation_values', function( event, variations ) { + + $variation_form = $( this ).closest( '.variations_form' ); + + // Loop through selects and disable/enable options based on selections + $variation_form.find( '.variations select' ).each( function( index, el ) { + + current_attr_select = $( el ); + + // Reset options + if ( ! current_attr_select.data( 'attribute_options' ) ) + current_attr_select.data( 'attribute_options', current_attr_select.find( 'option:gt(0)' ).get() ); + + current_attr_select.find( 'option:gt(0)' ).remove(); + current_attr_select.append( current_attr_select.data( 'attribute_options' ) ); + current_attr_select.find( 'option:gt(0)' ).removeClass( 'active' ); + + // Get name + var current_attr_name = current_attr_select.attr( 'name' ); + + // Loop through variations + for ( var num in variations ) { + + if ( typeof( variations[ num ] ) != 'undefined' ) { + + var attributes = variations[ num ].attributes; + + for ( var attr_name in attributes ) { + if ( attributes.hasOwnProperty( attr_name ) ) { + var attr_val = attributes[ attr_name ]; + + if ( attr_name == current_attr_name ) { + + if ( attr_val ) { + + // Decode entities + attr_val = $( '
    ' ).html( attr_val ).text(); + + // Add slashes + attr_val = attr_val.replace( /'/g, "\\'" ); + attr_val = attr_val.replace( /"/g, "\\\"" ); + + // Compare the meerkat + current_attr_select.find( 'option[value="' + attr_val + '"]' ).addClass( 'active' ); + + } else { + + current_attr_select.find( 'option:gt(0)' ).addClass( 'active' ); + + } + } + } + } + } + } + + // Detach inactive + current_attr_select.find( 'option:gt(0):not(.active)' ).remove(); + + }); + + // Custom event for when variations have been updated + $variation_form.trigger( 'woocommerce_update_variation_values' ); + + } ) + + // Show single variation details (price, stock, image) + .on( 'found_variation', function( event, variation ) { + var $variation_form = $( this ), + $product = $( this ).closest( '.product' ), + $product_img = $product.find( 'div.images img:eq(0)' ), + $product_link = $product.find( 'div.images a.zoom:eq(0)' ), + o_src = $product_img.attr( 'data-o_src' ), + o_title = $product_img.attr( 'data-o_title' ), + o_alt = $product_img.attr( 'data-o_alt' ), + o_href = $product_link.attr( 'data-o_href' ), + variation_image = variation.image_src, + variation_link = variation.image_link, + variation_title = variation.image_title, + variation_alt = variation.image_alt; + + $variation_form.find( '.variations_button' ).show(); + $variation_form.find( '.single_variation' ).html( variation.price_html + variation.availability_html ); + + if ( o_src === undefined ) { + o_src = ( ! $product_img.attr( 'src' ) ) ? '' : $product_img.attr( 'src' ); + $product_img.attr( 'data-o_src', o_src ); + } + + if ( o_href === undefined ) { + o_href = ( ! $product_link.attr( 'href' ) ) ? '' : $product_link.attr( 'href' ); + $product_link.attr( 'data-o_href', o_href ); + } + + if ( o_title === undefined ) { + o_title = ( ! $product_img.attr( 'title' ) ) ? '' : $product_img.attr( 'title' ); + $product_img.attr( 'data-o_title', o_title ); + } + + if ( o_alt === undefined ) { + o_alt = ( ! $product_img.attr( 'alt' ) ) ? '' : $product_img.attr( 'alt' ); + $product_img.attr( 'data-o_alt', o_alt ); + } + + if ( variation_image && variation_image.length > 1 ) { + $product_img + .attr( 'src', variation_image ) + .attr( 'alt', variation_alt ) + .attr( 'title', variation_title ); + $product_link + .attr( 'href', variation_link ) + .attr( 'title', variation_title ); + } else { + $product_img + .attr( 'src', o_src ) + .attr( 'alt', o_alt ) + .attr( 'title', o_title ); + $product_link + .attr( 'href', o_href ) + .attr( 'title', o_title ); + } + + var $single_variation_wrap = $variation_form.find( '.single_variation_wrap' ), + $sku = $product.find( '.product_meta' ).find( '.sku' ), + $weight = $product.find( '.product_weight' ), + $dimensions = $product.find( '.product_dimensions' ); + + if ( ! $sku.attr( 'data-o_sku' ) ) + $sku.attr( 'data-o_sku', $sku.text() ); + + if ( ! $weight.attr( 'data-o_weight' ) ) + $weight.attr( 'data-o_weight', $weight.text() ); + + if ( ! $dimensions.attr( 'data-o_dimensions' ) ) + $dimensions.attr( 'data-o_dimensions', $dimensions.text() ); + + if ( variation.sku ) { + $sku.text( variation.sku ); + } else { + $sku.text( $sku.attr( 'data-o_sku' ) ); + } + + if ( variation.weight ) { + $weight.text( variation.weight ); + } else { + $weight.text( $weight.attr( 'data-o_weight' ) ); + } + + if ( variation.dimensions ) { + $dimensions.text( variation.dimensions ); + } else { + $dimensions.text( $dimensions.attr( 'data-o_dimensions' ) ); + } + + $single_variation_wrap.find( '.quantity' ).show(); + + if ( ! variation.is_purchasable || ! variation.is_in_stock || ! variation.variation_is_visible ) { + $variation_form.find( '.variations_button' ).hide(); + } + + if ( ! variation.variation_is_visible ) { + $variation_form.find( '.single_variation' ).html( '

    ' + wc_add_to_cart_variation_params.i18n_unavailable_text + '

    ' ); + } + + if ( variation.min_qty ) + $single_variation_wrap.find( 'input[name=quantity]' ).attr( 'min', variation.min_qty ).val( variation.min_qty ); + else + $single_variation_wrap.find( 'input[name=quantity]' ).removeAttr( 'min' ); + + if ( variation.max_qty ) + $single_variation_wrap.find( 'input[name=quantity]' ).attr( 'max', variation.max_qty ); + else + $single_variation_wrap.find( 'input[name=quantity]' ).removeAttr( 'max' ); + + if ( variation.is_sold_individually === 'yes' ) { + $single_variation_wrap.find( 'input[name=quantity]' ).val( '1' ); + $single_variation_wrap.find( '.quantity' ).hide(); + } + + $single_variation_wrap.slideDown( 200 ).trigger( 'show_variation', [ variation ] ); + + }); + + $form.trigger( 'wc_variation_form' ); + + return $form; + }; + + $( function() { // wc_add_to_cart_variation_params is required to continue, ensure the object exists - if (typeof wc_add_to_cart_variation_params === "undefined") + if ( typeof wc_add_to_cart_variation_params === 'undefined' ) return false; - $('.variations_form').wc_variation_form(); - $('.variations_form .variations select').change(); - }); + $( '.variations_form' ).wc_variation_form(); + $( '.variations_form .variations select' ).change(); + }); })( jQuery, window, document ); diff --git a/assets/js/frontend/add-to-cart-variation.min.js b/assets/js/frontend/add-to-cart-variation.min.js index f1e139c222f..c60a1863a9f 100644 --- a/assets/js/frontend/add-to-cart-variation.min.js +++ b/assets/js/frontend/add-to-cart-variation.min.js @@ -1,3 +1,4 @@ /*! * Variations Plugin - */(function(e,t,n,r){e.fn.wc_variation_form=function(){e.fn.wc_variation_form.find_matching_variations=function(t,n){var r=[];for(var i=0;i").html(o).text();o=o.replace(/'/g,"\\'");o=o.replace(/"/g,'\\"');current_attr_select.find('option[value="'+o+'"]').addClass("active")}else current_attr_select.find("option:gt(0)").addClass("active")}}current_attr_select.find("option:gt(0):not(.active)").remove()});$variation_form.trigger("woocommerce_update_variation_values")}).on("found_variation",function(t,n){var i=e(this),s=e(this).closest(".product"),o=s.find("div.images img:eq(0)"),u=s.find("div.images a.zoom:eq(0)"),a=o.attr("data-o_src"),f=o.attr("data-o_title"),l=o.attr("data-o_alt"),c=u.attr("data-o_href"),h=n.image_src,p=n.image_link,d=n.image_title,v=n.image_alt;i.find(".variations_button").show();i.find(".single_variation").html(n.price_html+n.availability_html);if(a==r){a=o.attr("src")?o.attr("src"):"";o.attr("data-o_src",a)}if(c==r){c=u.attr("href")?u.attr("href"):"";u.attr("data-o_href",c)}if(f==r){f=o.attr("title")?o.attr("title"):"";o.attr("data-o_title",f)}if(l==r){l=o.attr("alt")?o.attr("alt"):"";o.attr("data-o_alt",l)}if(h&&h.length>1){o.attr("src",h).attr("alt",v).attr("title",d);u.attr("href",p).attr("title",d)}else{o.attr("src",a).attr("alt",l).attr("title",f);u.attr("href",c).attr("title",f)}var m=i.find(".single_variation_wrap"),g=s.find(".product_meta").find(".sku"),y=s.find(".product_weight"),b=s.find(".product_dimensions");g.attr("data-o_sku")||g.attr("data-o_sku",g.text());y.attr("data-o_weight")||y.attr("data-o_weight",y.text());b.attr("data-o_dimensions")||b.attr("data-o_dimensions",b.text());n.sku?g.text(n.sku):g.text(g.attr("data-o_sku"));n.weight?y.text(n.weight):y.text(y.attr("data-o_weight"));n.dimensions?b.text(n.dimensions):b.text(b.attr("data-o_dimensions"));m.find(".quantity").show();!n.is_in_stock&&!n.backorders_allowed&&i.find(".variations_button").hide();if(!n.variation_is_visible){i.find(".variations_button").hide();i.find(".single_variation").html("

    "+wc_add_to_cart_variation_params.i18n_unavailable_text+"

    ")}n.min_qty?m.find("input[name=quantity]").attr("min",n.min_qty).val(n.min_qty):m.find("input[name=quantity]").removeAttr("min");n.max_qty?m.find("input[name=quantity]").attr("max",n.max_qty):m.find("input[name=quantity]").removeAttr("max");if(n.is_sold_individually=="yes"){m.find("input[name=quantity]").val("1");m.find(".quantity").hide()}m.slideDown("200").trigger("show_variation",[n])});$form.trigger("wc_variation_form");return $form};e(function(){if(typeof wc_add_to_cart_variation_params=="undefined")return!1;e(".variations_form").wc_variation_form();e(".variations_form .variations select").change()})})(jQuery,window,document); \ No newline at end of file + */ +!function(a,b,c,d){a.fn.wc_variation_form=function(){return a.fn.wc_variation_form.find_matching_variations=function(b,c){for(var d=[],e=0;e").html(i).text(),i=i.replace(/'/g,"\\'"),i=i.replace(/"/g,'\\"'),current_attr_select.find('option[value="'+i+'"]').addClass("active")):current_attr_select.find("option:gt(0)").addClass("active"))}}current_attr_select.find("option:gt(0):not(.active)").remove()}),$variation_form.trigger("woocommerce_update_variation_values")}).on("found_variation",function(b,c){var e=a(this),f=a(this).closest(".product"),g=f.find("div.images img:eq(0)"),h=f.find("div.images a.zoom:eq(0)"),i=g.attr("data-o_src"),j=g.attr("data-o_title"),k=g.attr("data-o_alt"),l=h.attr("data-o_href"),m=c.image_src,n=c.image_link,o=c.image_title,p=c.image_alt;e.find(".variations_button").show(),e.find(".single_variation").html(c.price_html+c.availability_html),i===d&&(i=g.attr("src")?g.attr("src"):"",g.attr("data-o_src",i)),l===d&&(l=h.attr("href")?h.attr("href"):"",h.attr("data-o_href",l)),j===d&&(j=g.attr("title")?g.attr("title"):"",g.attr("data-o_title",j)),k===d&&(k=g.attr("alt")?g.attr("alt"):"",g.attr("data-o_alt",k)),m&&m.length>1?(g.attr("src",m).attr("alt",p).attr("title",o),h.attr("href",n).attr("title",o)):(g.attr("src",i).attr("alt",k).attr("title",j),h.attr("href",l).attr("title",j));var q=e.find(".single_variation_wrap"),r=f.find(".product_meta").find(".sku"),s=f.find(".product_weight"),t=f.find(".product_dimensions");r.attr("data-o_sku")||r.attr("data-o_sku",r.text()),s.attr("data-o_weight")||s.attr("data-o_weight",s.text()),t.attr("data-o_dimensions")||t.attr("data-o_dimensions",t.text()),r.text(c.sku?c.sku:r.attr("data-o_sku")),s.text(c.weight?c.weight:s.attr("data-o_weight")),t.text(c.dimensions?c.dimensions:t.attr("data-o_dimensions")),q.find(".quantity").show(),c.is_purchasable&&c.is_in_stock&&c.variation_is_visible||e.find(".variations_button").hide(),c.variation_is_visible||e.find(".single_variation").html("

    "+wc_add_to_cart_variation_params.i18n_unavailable_text+"

    "),c.min_qty?q.find("input[name=quantity]").attr("min",c.min_qty).val(c.min_qty):q.find("input[name=quantity]").removeAttr("min"),c.max_qty?q.find("input[name=quantity]").attr("max",c.max_qty):q.find("input[name=quantity]").removeAttr("max"),"yes"===c.is_sold_individually&&(q.find("input[name=quantity]").val("1"),q.find(".quantity").hide()),q.slideDown(200).trigger("show_variation",[c])}),$form.trigger("wc_variation_form"),$form},a(function(){return"undefined"==typeof wc_add_to_cart_variation_params?!1:(a(".variations_form").wc_variation_form(),void a(".variations_form .variations select").change())})}(jQuery,window,document); \ No newline at end of file diff --git a/assets/js/frontend/add-to-cart.js b/assets/js/frontend/add-to-cart.js index 2e43088dfab..e1d086d4fa2 100644 --- a/assets/js/frontend/add-to-cart.js +++ b/assets/js/frontend/add-to-cart.js @@ -1,31 +1,31 @@ -jQuery(document).ready(function($) { +jQuery( function( $ ) { // wc_add_to_cart_params is required to continue, ensure the object exists - if (typeof wc_add_to_cart_params === "undefined") + if ( typeof wc_add_to_cart_params === 'undefined' ) return false; // Ajax add to cart - $(document).on( 'click', '.add_to_cart_button', function() { + $( document ).on( 'click', '.add_to_cart_button', function() { // AJAX add to cart request - var $thisbutton = $(this); + var $thisbutton = $( this ); - if ( $thisbutton.is('.product_type_simple') ) { + if ( $thisbutton.is( '.product_type_simple' ) ) { - if (!$thisbutton.attr('data-product_id')) + if ( ! $thisbutton.attr( 'data-product_id' ) ) return true; - $thisbutton.removeClass('added'); - $thisbutton.addClass('loading'); + $thisbutton.removeClass( 'added' ); + $thisbutton.addClass( 'loading' ); var data = { - action: 'woocommerce_add_to_cart', - product_id: $thisbutton.attr('data-product_id'), - quantity: $thisbutton.attr('data-quantity') + action: 'woocommerce_add_to_cart', + product_id: $thisbutton.attr( 'data-product_id' ), + quantity: $thisbutton.attr( 'data-quantity' ) }; // Trigger event - $('body').trigger( 'adding_to_cart', [ $thisbutton, data ] ); + $( 'body' ).trigger( 'adding_to_cart', [ $thisbutton, data ] ); // Ajax action $.post( wc_add_to_cart_params.ajax_url, data, function( response ) { @@ -43,61 +43,63 @@ jQuery(document).ready(function($) { } // Redirect to cart option - if ( wc_add_to_cart_params.cart_redirect_after_add == 'yes' ) { + if ( wc_add_to_cart_params.cart_redirect_after_add === 'yes' ) { window.location = wc_add_to_cart_params.cart_url; return; } else { - $thisbutton.removeClass('loading'); + $thisbutton.removeClass( 'loading' ); fragments = response.fragments; cart_hash = response.cart_hash; // Block fragments class if ( fragments ) { - $.each(fragments, function(key, value) { - $(key).addClass('updating'); + $.each( fragments, function( key, value ) { + $( key ).addClass( 'updating' ); }); } // Block widgets and fragments - $('.shop_table.cart, .updating, .cart_totals').fadeTo('400', '0.6').block({message: null, overlayCSS: {background: 'transparent url(' + wc_add_to_cart_params.ajax_loader_url + ') no-repeat center', backgroundSize: '16px 16px', opacity: 0.6 } } ); + $( '.shop_table.cart, .updating, .cart_totals' ).fadeTo( '400', '0.6' ).block({ message: null, overlayCSS: { background: 'transparent url(' + wc_add_to_cart_params.ajax_loader_url + ') no-repeat center', backgroundSize: '16px 16px', opacity: 0.6 } } ); // Changes button classes - $thisbutton.addClass('added'); + $thisbutton.addClass( 'added' ); // View cart text - if ( ! wc_add_to_cart_params.is_cart && $thisbutton.parent().find('.added_to_cart').size() == 0 ) - $thisbutton.after( ' ' + wc_add_to_cart_params.i18n_view_cart + '' ); + if ( ! wc_add_to_cart_params.is_cart && $thisbutton.parent().find( '.added_to_cart' ).size() === 0 ) { + $thisbutton.after( ' ' + wc_add_to_cart_params.i18n_view_cart + '' ); + } // Replace fragments if ( fragments ) { - $.each(fragments, function(key, value) { - $(key).replaceWith(value); + $.each( fragments, function( key, value ) { + $( key ).replaceWith( value ); }); } // Unblock - $('.widget_shopping_cart, .updating').stop(true).css('opacity', '1').unblock(); + $( '.widget_shopping_cart, .updating' ).stop( true ).css( 'opacity', '1' ).unblock(); // Cart page elements - $('.shop_table.cart').load( this_page + ' .shop_table.cart:eq(0) > *', function() { + $( '.shop_table.cart' ).load( this_page + ' .shop_table.cart:eq(0) > *', function() { - $("div.quantity:not(.buttons_added), td.quantity:not(.buttons_added)").addClass('buttons_added').append('').prepend(''); + $( 'div.quantity:not(.buttons_added), td.quantity:not(.buttons_added)' ).addClass( 'buttons_added' ).append( '' ).prepend( '' ); - $('.shop_table.cart').stop(true).css('opacity', '1').unblock(); + $( '.shop_table.cart' ).stop( true ).css( 'opacity', '1' ).unblock(); - $('body').trigger('cart_page_refreshed'); + $( 'body' ).trigger( 'cart_page_refreshed' ); }); - $('.cart_totals').load( this_page + ' .cart_totals:eq(0) > *', function() { - $('.cart_totals').stop(true).css('opacity', '1').unblock(); + $( '.cart_totals' ).load( this_page + ' .cart_totals:eq(0) > *', function() { + $( '.cart_totals' ).stop( true ).css( 'opacity', '1' ).unblock(); }); // Trigger event so themes can refresh other areas - $('body').trigger( 'added_to_cart', [ fragments, cart_hash ] ); + $( 'body' ).trigger( 'added_to_cart', [ fragments, cart_hash ] ); } }); diff --git a/assets/js/frontend/add-to-cart.min.js b/assets/js/frontend/add-to-cart.min.js index f8a29a2369d..796d0f3153f 100644 --- a/assets/js/frontend/add-to-cart.min.js +++ b/assets/js/frontend/add-to-cart.min.js @@ -1 +1 @@ -jQuery(document).ready(function(e){if(typeof wc_add_to_cart_params=="undefined")return!1;e(document).on("click",".add_to_cart_button",function(){var t=e(this);if(t.is(".product_type_simple")){if(!t.attr("data-product_id"))return!0;t.removeClass("added");t.addClass("loading");var n={action:"woocommerce_add_to_cart",product_id:t.attr("data-product_id"),quantity:t.attr("data-quantity")};e("body").trigger("adding_to_cart",[t,n]);e.post(wc_add_to_cart_params.ajax_url,n,function(n){if(!n)return;var r=window.location.toString();r=r.replace("add-to-cart","added-to-cart");if(n.error&&n.product_url){window.location=n.product_url;return}if(wc_add_to_cart_params.cart_redirect_after_add=="yes"){window.location=wc_add_to_cart_params.cart_url;return}t.removeClass("loading");fragments=n.fragments;cart_hash=n.cart_hash;fragments&&e.each(fragments,function(t,n){e(t).addClass("updating")});e(".shop_table.cart, .updating, .cart_totals").fadeTo("400","0.6").block({message:null,overlayCSS:{background:"transparent url("+wc_add_to_cart_params.ajax_loader_url+") no-repeat center",backgroundSize:"16px 16px",opacity:.6}});t.addClass("added");!wc_add_to_cart_params.is_cart&&t.parent().find(".added_to_cart").size()==0&&t.after(' '+wc_add_to_cart_params.i18n_view_cart+"");fragments&&e.each(fragments,function(t,n){e(t).replaceWith(n)});e(".widget_shopping_cart, .updating").stop(!0).css("opacity","1").unblock();e(".shop_table.cart").load(r+" .shop_table.cart:eq(0) > *",function(){e("div.quantity:not(.buttons_added), td.quantity:not(.buttons_added)").addClass("buttons_added").append('').prepend('');e(".shop_table.cart").stop(!0).css("opacity","1").unblock();e("body").trigger("cart_page_refreshed")});e(".cart_totals").load(r+" .cart_totals:eq(0) > *",function(){e(".cart_totals").stop(!0).css("opacity","1").unblock()});e("body").trigger("added_to_cart",[fragments,cart_hash])});return!1}return!0})}); \ No newline at end of file +jQuery(function(a){return"undefined"==typeof wc_add_to_cart_params?!1:void a(document).on("click",".add_to_cart_button",function(){var b=a(this);if(b.is(".product_type_simple")){if(!b.attr("data-product_id"))return!0;b.removeClass("added"),b.addClass("loading");var c={action:"woocommerce_add_to_cart",product_id:b.attr("data-product_id"),quantity:b.attr("data-quantity")};return a("body").trigger("adding_to_cart",[b,c]),a.post(wc_add_to_cart_params.ajax_url,c,function(c){if(c){var d=window.location.toString();return d=d.replace("add-to-cart","added-to-cart"),c.error&&c.product_url?void(window.location=c.product_url):"yes"===wc_add_to_cart_params.cart_redirect_after_add?void(window.location=wc_add_to_cart_params.cart_url):(b.removeClass("loading"),fragments=c.fragments,cart_hash=c.cart_hash,fragments&&a.each(fragments,function(b){a(b).addClass("updating")}),a(".shop_table.cart, .updating, .cart_totals").fadeTo("400","0.6").block({message:null,overlayCSS:{background:"transparent url("+wc_add_to_cart_params.ajax_loader_url+") no-repeat center",backgroundSize:"16px 16px",opacity:.6}}),b.addClass("added"),wc_add_to_cart_params.is_cart||0!==b.parent().find(".added_to_cart").size()||b.after(' '+wc_add_to_cart_params.i18n_view_cart+""),fragments&&a.each(fragments,function(b,c){a(b).replaceWith(c)}),a(".widget_shopping_cart, .updating").stop(!0).css("opacity","1").unblock(),a(".shop_table.cart").load(d+" .shop_table.cart:eq(0) > *",function(){a("div.quantity:not(.buttons_added), td.quantity:not(.buttons_added)").addClass("buttons_added").append('').prepend(''),a(".shop_table.cart").stop(!0).css("opacity","1").unblock(),a("body").trigger("cart_page_refreshed")}),a(".cart_totals").load(d+" .cart_totals:eq(0) > *",function(){a(".cart_totals").stop(!0).css("opacity","1").unblock()}),a("body").trigger("added_to_cart",[fragments,cart_hash]),void 0)}}),!1}return!0})}); \ No newline at end of file diff --git a/assets/js/frontend/address-i18n.js b/assets/js/frontend/address-i18n.js new file mode 100644 index 00000000000..1945daf8ed9 --- /dev/null +++ b/assets/js/frontend/address-i18n.js @@ -0,0 +1,101 @@ +jQuery( function( $ ) { + + // wc_address_i18n_params is required to continue, ensure the object exists + if (typeof wc_address_i18n_params === "undefined") { + return false; + } + + var locale_json = wc_address_i18n_params.locale.replace( /"/g, '"' ), + locale = $.parseJSON( locale_json ), + required = ' *'; + + $( 'body' ) + + // Handle locale + .bind( 'country_to_state_changing', function( event, country, wrapper ) { + + var thisform = wrapper, + thislocale; + + if ( typeof locale[ country ] !== 'undefined' ) { + thislocale = locale[ country ]; + } else { + thislocale = locale['default']; + } + + // Handle locale fields + var locale_fields = $.parseJSON( wc_address_i18n_params.locale_fields ); + + $.each( locale_fields, function( key, value ) { + + var field = thisform.find( value ); + + if ( thislocale[ key ] ) { + + if ( thislocale[ key ].label ) { + field.find( 'label' ).html( thislocale[ key ].label ); + } + + if ( thislocale[ key ].placeholder ) { + field.find( 'input' ).attr( 'placeholder', thislocale[ key ].placeholder ); + } + + field.find( 'label abbr' ).remove(); + + if ( typeof thislocale[ key ].required === 'undefined' && locale['default'][ key ].required === true ) { + field.find( 'label' ).append( required ); + } else if ( thislocale[ key ].required === true ) { + field.find( 'label' ).append( required ); + } + + if ( key !== 'state' ) { + if ( thislocale[ key ].hidden === true ) { + field.hide().find( 'input' ).val( '' ); + } else { + field.show(); + } + } + + } else if ( locale['default'][ key ] ) { + if ( locale['default'][ key ].required === true ) { + if ( field.find( 'label abbr' ).size() === 0 ) field.find( 'label' ).append( required ); + } + + if ( key !== 'state' ) { + if ( typeof locale['default'][ key ].hidden === 'undefined' || locale['default'][ key ].hidden === false ) { + field.show(); + } else if ( locale['default'][ key ].hidden === true ) { + field.hide().find( 'input' ).val( '' ); + } + } + } + + }); + + var $postcodefield = thisform.find( '#billing_postcode_field, #shipping_postcode_field' ), + $cityfield = thisform.find( '#billing_city_field, #shipping_city_field' ), + $statefield = thisform.find( '#billing_state_field, #shipping_state_field' ); + + if ( ! $postcodefield.attr( 'data-o_class' ) ) { + $postcodefield.attr( 'data-o_class', $postcodefield.attr( 'class' ) ); + $cityfield.attr( 'data-o_class', $cityfield.attr( 'class' ) ); + $statefield.attr( 'data-o_class', $statefield.attr( 'class' ) ); + } + + // Re-order postcode/city + if ( thislocale.postcode_before_city ) { + + $postcodefield.add( $cityfield ).add( $statefield ).removeClass( 'form-row-first form-row-last' ).addClass( 'form-row-wide' ); + $postcodefield.insertBefore( $cityfield ); + + } else { + // Default + $postcodefield.attr( 'class', $postcodefield.attr( 'data-o_class' ) ); + $cityfield.attr( 'class', $cityfield.attr( 'data-o_class' ) ); + $statefield.attr( 'class', $statefield.attr( 'data-o_class' ) ); + $postcodefield.insertAfter( $statefield ); + } + + }); + +}); diff --git a/assets/js/frontend/address-i18n.min.js b/assets/js/frontend/address-i18n.min.js new file mode 100644 index 00000000000..611b7546c4c --- /dev/null +++ b/assets/js/frontend/address-i18n.min.js @@ -0,0 +1 @@ +jQuery(function(a){if("undefined"==typeof wc_address_i18n_params)return!1;var b=wc_address_i18n_params.locale.replace(/"/g,'"'),c=a.parseJSON(b),d=' *';a("body").bind("country_to_state_changing",function(b,e,f){var g,h=f;g="undefined"!=typeof c[e]?c[e]:c["default"];var i=a.parseJSON(wc_address_i18n_params.locale_fields);a.each(i,function(a,b){var e=h.find(b);g[a]?(g[a].label&&e.find("label").html(g[a].label),g[a].placeholder&&e.find("input").attr("placeholder",g[a].placeholder),e.find("label abbr").remove(),"undefined"==typeof g[a].required&&c["default"][a].required===!0?e.find("label").append(d):g[a].required===!0&&e.find("label").append(d),"state"!==a&&(g[a].hidden===!0?e.hide().find("input").val(""):e.show())):c["default"][a]&&(c["default"][a].required===!0&&0===e.find("label abbr").size()&&e.find("label").append(d),"state"!==a&&("undefined"==typeof c["default"][a].hidden||c["default"][a].hidden===!1?e.show():c["default"][a].hidden===!0&&e.hide().find("input").val("")))});var j=h.find("#billing_postcode_field, #shipping_postcode_field"),k=h.find("#billing_city_field, #shipping_city_field"),l=h.find("#billing_state_field, #shipping_state_field");j.attr("data-o_class")||(j.attr("data-o_class",j.attr("class")),k.attr("data-o_class",k.attr("class")),l.attr("data-o_class",l.attr("class"))),g.postcode_before_city?(j.add(k).add(l).removeClass("form-row-first form-row-last").addClass("form-row-wide"),j.insertBefore(k)):(j.attr("class",j.attr("data-o_class")),k.attr("class",k.attr("data-o_class")),l.attr("class",l.attr("data-o_class")),j.insertAfter(l))})}); \ No newline at end of file diff --git a/assets/js/frontend/cart-fragments.js b/assets/js/frontend/cart-fragments.js index 5f034c32ea4..d2f6cd5a619 100644 --- a/assets/js/frontend/cart-fragments.js +++ b/assets/js/frontend/cart-fragments.js @@ -1,11 +1,16 @@ -jQuery(document).ready(function($) { +jQuery( function( $ ) { // wc_cart_fragments_params is required to continue, ensure the object exists - if (typeof wc_cart_fragments_params === "undefined") + if ( typeof wc_cart_fragments_params === 'undefined' ) { return false; + } /** Cart Handling */ - $supports_html5_storage = ( 'sessionStorage' in window && window['sessionStorage'] !== null ); + try { + $supports_html5_storage = ( 'sessionStorage' in window && window.sessionStorage !== null ); + } catch( err ) { + $supports_html5_storage = false; + } $fragment_refresh = { url: wc_cart_fragments_params.ajax_url, @@ -15,50 +20,52 @@ jQuery(document).ready(function($) { if ( data && data.fragments ) { $.each( data.fragments, function( key, value ) { - $(key).replaceWith(value); + $( key ).replaceWith( value ); }); if ( $supports_html5_storage ) { sessionStorage.setItem( wc_cart_fragments_params.fragment_name, JSON.stringify( data.fragments ) ); - sessionStorage.setItem( "wc_cart_hash", data.cart_hash ); + sessionStorage.setItem( 'wc_cart_hash', data.cart_hash ); } - $('body').trigger( 'wc_fragments_refreshed' ); + $( 'body' ).trigger( 'wc_fragments_refreshed' ); } } }; if ( $supports_html5_storage ) { - $('body').bind( 'added_to_cart', function( event, fragments, cart_hash ) { + $( 'body' ).bind( 'added_to_cart', function( event, fragments, cart_hash ) { sessionStorage.setItem( wc_cart_fragments_params.fragment_name, JSON.stringify( fragments ) ); - sessionStorage.setItem( "wc_cart_hash", cart_hash ); + sessionStorage.setItem( 'wc_cart_hash', cart_hash ); }); try { - var wc_fragments = $.parseJSON( sessionStorage.getItem( wc_cart_fragments_params.fragment_name ) ); - var cart_hash = sessionStorage.getItem( "wc_cart_hash" ); - var cookie_hash = $.cookie( "woocommerce_cart_hash" ); + var wc_fragments = $.parseJSON( sessionStorage.getItem( wc_cart_fragments_params.fragment_name ) ), + cart_hash = sessionStorage.getItem( 'wc_cart_hash' ), + cookie_hash = $.cookie( 'woocommerce_cart_hash' ); - if ( cart_hash == null || cart_hash == undefined || cart_hash == '' ) + if ( cart_hash === null || cart_hash === undefined || cart_hash === '' ) { cart_hash = ''; + } - if ( cookie_hash == null || cookie_hash == undefined || cookie_hash == '' ) + if ( cookie_hash === null || cookie_hash === undefined || cookie_hash === '' ) { cookie_hash = ''; + } if ( wc_fragments && wc_fragments['div.widget_shopping_cart_content'] && cart_hash == cookie_hash ) { $.each( wc_fragments, function( key, value ) { - $(key).replaceWith(value); + $( key ).replaceWith(value); }); - $('body').trigger( 'wc_fragments_loaded' ); + $( 'body' ).trigger( 'wc_fragments_loaded' ); } else { - throw "No fragment"; + throw 'No fragment'; } - } catch(err) { + } catch( err ) { $.ajax( $fragment_refresh ); } @@ -67,13 +74,14 @@ jQuery(document).ready(function($) { } /* Cart hiding */ - if ( $.cookie( "woocommerce_items_in_cart" ) > 0 ) - $('.hide_cart_widget_if_empty').closest('.widget_shopping_cart').show(); - else - $('.hide_cart_widget_if_empty').closest('.widget_shopping_cart').hide(); + if ( $.cookie( 'woocommerce_items_in_cart' ) > 0 ) { + $( '.hide_cart_widget_if_empty' ).closest( '.widget_shopping_cart' ).show(); + } else { + $( '.hide_cart_widget_if_empty' ).closest( '.widget_shopping_cart' ).hide(); + } - $('body').bind( 'adding_to_cart', function() { - $('.hide_cart_widget_if_empty').closest('.widget_shopping_cart').show(); + $( 'body' ).bind( 'adding_to_cart', function() { + $( '.hide_cart_widget_if_empty' ).closest( '.widget_shopping_cart' ).show(); } ); }); diff --git a/assets/js/frontend/cart-fragments.min.js b/assets/js/frontend/cart-fragments.min.js index 4771597649c..cab4e45a215 100644 --- a/assets/js/frontend/cart-fragments.min.js +++ b/assets/js/frontend/cart-fragments.min.js @@ -1 +1 @@ -jQuery(document).ready(function(e){if(typeof wc_cart_fragments_params=="undefined")return!1;$supports_html5_storage="sessionStorage"in window&&window.sessionStorage!==null;$fragment_refresh={url:wc_cart_fragments_params.ajax_url,type:"POST",data:{action:"woocommerce_get_refreshed_fragments"},success:function(t){if(t&&t.fragments){e.each(t.fragments,function(t,n){e(t).replaceWith(n)});if($supports_html5_storage){sessionStorage.setItem(wc_cart_fragments_params.fragment_name,JSON.stringify(t.fragments));sessionStorage.setItem("wc_cart_hash",t.cart_hash)}e("body").trigger("wc_fragments_refreshed")}}};if($supports_html5_storage){e("body").bind("added_to_cart",function(e,t,n){sessionStorage.setItem(wc_cart_fragments_params.fragment_name,JSON.stringify(t));sessionStorage.setItem("wc_cart_hash",n)});try{var t=e.parseJSON(sessionStorage.getItem(wc_cart_fragments_params.fragment_name)),n=sessionStorage.getItem("wc_cart_hash"),r=e.cookie("woocommerce_cart_hash");if(n==null||n==undefined||n=="")n="";if(r==null||r==undefined||r=="")r="";if(!t||!t["div.widget_shopping_cart_content"]||n!=r)throw"No fragment";e.each(t,function(t,n){e(t).replaceWith(n)});e("body").trigger("wc_fragments_loaded")}catch(i){e.ajax($fragment_refresh)}}else e.ajax($fragment_refresh);e.cookie("woocommerce_items_in_cart")>0?e(".hide_cart_widget_if_empty").closest(".widget_shopping_cart").show():e(".hide_cart_widget_if_empty").closest(".widget_shopping_cart").hide();e("body").bind("adding_to_cart",function(){e(".hide_cart_widget_if_empty").closest(".widget_shopping_cart").show()})}); \ No newline at end of file +jQuery(function(a){if("undefined"==typeof wc_cart_fragments_params)return!1;try{$supports_html5_storage="sessionStorage"in window&&null!==window.sessionStorage}catch(b){$supports_html5_storage=!1}if($fragment_refresh={url:wc_cart_fragments_params.ajax_url,type:"POST",data:{action:"woocommerce_get_refreshed_fragments"},success:function(b){b&&b.fragments&&(a.each(b.fragments,function(b,c){a(b).replaceWith(c)}),$supports_html5_storage&&(sessionStorage.setItem(wc_cart_fragments_params.fragment_name,JSON.stringify(b.fragments)),sessionStorage.setItem("wc_cart_hash",b.cart_hash)),a("body").trigger("wc_fragments_refreshed"))}},$supports_html5_storage){a("body").bind("added_to_cart",function(a,b,c){sessionStorage.setItem(wc_cart_fragments_params.fragment_name,JSON.stringify(b)),sessionStorage.setItem("wc_cart_hash",c)});try{var c=a.parseJSON(sessionStorage.getItem(wc_cart_fragments_params.fragment_name)),d=sessionStorage.getItem("wc_cart_hash"),e=a.cookie("woocommerce_cart_hash");if((null===d||void 0===d||""===d)&&(d=""),(null===e||void 0===e||""===e)&&(e=""),!c||!c["div.widget_shopping_cart_content"]||d!=e)throw"No fragment";a.each(c,function(b,c){a(b).replaceWith(c)}),a("body").trigger("wc_fragments_loaded")}catch(b){a.ajax($fragment_refresh)}}else a.ajax($fragment_refresh);a.cookie("woocommerce_items_in_cart")>0?a(".hide_cart_widget_if_empty").closest(".widget_shopping_cart").show():a(".hide_cart_widget_if_empty").closest(".widget_shopping_cart").hide(),a("body").bind("adding_to_cart",function(){a(".hide_cart_widget_if_empty").closest(".widget_shopping_cart").show()})}); \ No newline at end of file diff --git a/assets/js/frontend/cart.js b/assets/js/frontend/cart.js index 79dbc732235..55a9362fa43 100644 --- a/assets/js/frontend/cart.js +++ b/assets/js/frontend/cart.js @@ -1,37 +1,39 @@ -jQuery(document).ready(function($) { +jQuery( function( $ ) { // wc_cart_params is required to continue, ensure the object exists - if (typeof wc_cart_params === "undefined") + if ( typeof wc_cart_params === 'undefined' ) { return false; + } // Shipping calculator - $(document).on( 'click', '.shipping-calculator-button', function() { - $('.shipping-calculator-form').slideToggle('slow'); + $( document ).on( 'click', '.shipping-calculator-button', function() { + $( '.shipping-calculator-form' ).slideToggle( 'slow' ); + return false; - }).on( 'change', 'select#shipping_method, input[name^=shipping_method]', function() { + }).on( 'change', 'select.shipping_method, input[name^=shipping_method]', function() { var shipping_methods = []; - $('select[name^=shipping_method], input[name^=shipping_method][type=radio]:checked, input[name^=shipping_method][type=hidden]').each( function( index, input ) { - shipping_methods[ $(this).data( 'index' ) ] = $(this).val(); + $( 'select.shipping_method, input[name^=shipping_method][type=radio]:checked, input[name^=shipping_method][type=hidden]' ).each( function( index, input ) { + shipping_methods[ $( this ).data( 'index' ) ] = $( this ).val(); } ); - $('div.cart_totals').block({message: null, overlayCSS: {background: '#fff url(' + wc_cart_params.ajax_loader_url + ') no-repeat center', backgroundSize: '16px 16px', opacity: 0.6}}); + $( 'div.cart_totals' ).block({ message: null, overlayCSS: { background: '#fff url(' + wc_cart_params.ajax_loader_url + ') no-repeat center', backgroundSize: '16px 16px', opacity: 0.6 } }); var data = { - action: 'woocommerce_update_shipping_method', - security: wc_cart_params.update_shipping_method_nonce, - shipping_method: shipping_methods + action: 'woocommerce_update_shipping_method', + security: wc_cart_params.update_shipping_method_nonce, + shipping_method: shipping_methods }; - $.post( wc_cart_params.ajax_url, data, function(response) { + $.post( wc_cart_params.ajax_url, data, function( response ) { - $('div.cart_totals').replaceWith( response ); - $('body').trigger('updated_shipping_method'); + $( 'div.cart_totals' ).replaceWith( response ); + $( 'body' ).trigger( 'updated_shipping_method' ); }); - }) + }); - $('.shipping-calculator-form').hide(); + $( '.shipping-calculator-form' ).hide(); }); diff --git a/assets/js/frontend/cart.min.js b/assets/js/frontend/cart.min.js index 67c8fe9f5ad..3def318579e 100644 --- a/assets/js/frontend/cart.min.js +++ b/assets/js/frontend/cart.min.js @@ -1 +1 @@ -jQuery(document).ready(function(e){if(typeof wc_cart_params=="undefined")return!1;e(document).on("click",".shipping-calculator-button",function(){e(".shipping-calculator-form").slideToggle("slow");return!1}).on("change","select#shipping_method, input[name^=shipping_method]",function(){var t=[];e("select[name^=shipping_method], input[name^=shipping_method][type=radio]:checked, input[name^=shipping_method][type=hidden]").each(function(n,r){t[e(this).data("index")]=e(this).val()});e("div.cart_totals").block({message:null,overlayCSS:{background:"#fff url("+wc_cart_params.ajax_loader_url+") no-repeat center",backgroundSize:"16px 16px",opacity:.6}});var n={action:"woocommerce_update_shipping_method",security:wc_cart_params.update_shipping_method_nonce,shipping_method:t};e.post(wc_cart_params.ajax_url,n,function(t){e("div.cart_totals").replaceWith(t);e("body").trigger("updated_shipping_method")})});e(".shipping-calculator-form").hide()}); \ No newline at end of file +jQuery(function(a){return"undefined"==typeof wc_cart_params?!1:(a(document).on("click",".shipping-calculator-button",function(){return a(".shipping-calculator-form").slideToggle("slow"),!1}).on("change","select.shipping_method, input[name^=shipping_method]",function(){var b=[];a("select.shipping_method, input[name^=shipping_method][type=radio]:checked, input[name^=shipping_method][type=hidden]").each(function(){b[a(this).data("index")]=a(this).val()}),a("div.cart_totals").block({message:null,overlayCSS:{background:"#fff url("+wc_cart_params.ajax_loader_url+") no-repeat center",backgroundSize:"16px 16px",opacity:.6}});var c={action:"woocommerce_update_shipping_method",security:wc_cart_params.update_shipping_method_nonce,shipping_method:b};a.post(wc_cart_params.ajax_url,c,function(b){a("div.cart_totals").replaceWith(b),a("body").trigger("updated_shipping_method")})}),void a(".shipping-calculator-form").hide())}); \ No newline at end of file diff --git a/assets/js/frontend/checkout.js b/assets/js/frontend/checkout.js index ec18975eac6..1973943e4a9 100644 --- a/assets/js/frontend/checkout.js +++ b/assets/js/frontend/checkout.js @@ -1,78 +1,86 @@ -jQuery(document).ready(function($) { +jQuery( function( $ ) { + + $.blockUI.defaults.overlayCSS.cursor = 'default'; // wc_checkout_params is required to continue, ensure the object exists - if (typeof wc_checkout_params === "undefined") + if ( typeof wc_checkout_params === 'undefined' ) return false; - var updateTimer; - var dirtyInput = false; - var xhr; + var updateTimer, + dirtyInput = false, + xhr; function update_checkout() { - if (xhr) xhr.abort(); + if ( xhr ) xhr.abort(); var shipping_methods = []; - $('select#shipping_method, input[name^=shipping_method][type=radio]:checked, input[name^=shipping_method][type=hidden]').each( function( index, input ) { - shipping_methods[ $(this).data( 'index' ) ] = $(this).val(); + $( 'select.shipping_method, input[name^=shipping_method][type=radio]:checked, input[name^=shipping_method][type=hidden]' ).each( function( index, input ) { + shipping_methods[ $( this ).data( 'index' ) ] = $( this ).val(); } ); - var payment_method = $('#order_review input[name=payment_method]:checked').val(); - var country = $('#billing_country').val(); - var state = $('#billing_state').val(); - var postcode = $('input#billing_postcode').val(); - var city = $('input#billing_city').val(); - var address = $('input#billing_address_1').val(); - var address_2 = $('input#billing_address_2').val(); + var payment_method = $( '#order_review input[name=payment_method]:checked' ).val(), + country = $( '#billing_country' ).val(), + state = $( '#billing_state' ).val(), + postcode = $( 'input#billing_postcode' ).val(), + city = $( '#billing_city' ).val(), + address = $( 'input#billing_address_1' ).val(), + address_2 = $( 'input#billing_address_2' ).val(), + s_country, + s_state, + s_postcode, + s_city, + s_address, + s_address_2; - if ( $('#ship-to-different-address input').is(':checked') || $('#ship-to-different-address input').size() == 0 ) { - var s_country = $('#shipping_country').val(); - var s_state = $('#shipping_state').val(); - var s_postcode = $('input#shipping_postcode').val(); - var s_city = $('input#shipping_city').val(); - var s_address = $('input#shipping_address_1').val(); - var s_address_2 = $('input#shipping_address_2').val(); + if ( $( '#ship-to-different-address input' ).is( ':checked' ) ) { + s_country = $( '#shipping_country' ).val(); + s_state = $( '#shipping_state' ).val(); + s_postcode = $( 'input#shipping_postcode' ).val(); + s_city = $( '#shipping_city' ).val(); + s_address = $( 'input#shipping_address_1' ).val(); + s_address_2 = $( 'input#shipping_address_2' ).val(); } else { - var s_country = country; - var s_state = state; - var s_postcode = postcode; - var s_city = city; - var s_address = address; - var s_address_2 = address_2; + s_country = country; + s_state = state; + s_postcode = postcode; + s_city = city; + s_address = address; + s_address_2 = address_2; } - $('#order_methods, #order_review').block({message: null, overlayCSS: {background: '#fff url(' + wc_checkout_params.ajax_loader_url + ') no-repeat center', backgroundSize: '16px 16px', opacity: 0.6}}); + $( '#order_methods, #order_review' ).block({ message: null, overlayCSS: { background: '#fff url(' + wc_checkout_params.ajax_loader_url + ') no-repeat center', backgroundSize: '16px 16px', opacity: 0.6 } }); var data = { - action: 'woocommerce_update_order_review', - security: wc_checkout_params.update_order_review_nonce, - shipping_method: shipping_methods, - payment_method: payment_method, - country: country, - state: state, - postcode: postcode, - city: city, - address: address, - address_2: address_2, - s_country: s_country, - s_state: s_state, - s_postcode: s_postcode, - s_city: s_city, - s_address: s_address, - s_address_2: s_address_2, - post_data: $('form.checkout').serialize() + action: 'woocommerce_update_order_review', + security: wc_checkout_params.update_order_review_nonce, + shipping_method: shipping_methods, + payment_method: payment_method, + country: country, + state: state, + postcode: postcode, + city: city, + address: address, + address_2: address_2, + s_country: s_country, + s_state: s_state, + s_postcode: s_postcode, + s_city: s_city, + s_address: s_address, + s_address_2: s_address_2, + post_data: $( 'form.checkout' ).serialize() }; xhr = $.ajax({ - type: 'POST', - url: wc_checkout_params.ajax_url, - data: data, - success: function( response ) { + type: 'POST', + url: wc_checkout_params.ajax_url, + data: data, + success: function( response ) { if ( response ) { - var order_output = $(response); - $('#order_review').html(order_output.html()); - $('body').trigger('updated_checkout'); + $( '#order_review' ).html( $.trim( response ) ); + $( '#order_review' ).find( 'input[name=payment_method]:checked' ).trigger('click'); + $( 'body' ).trigger('updated_checkout' ); } } }); @@ -80,104 +88,113 @@ jQuery(document).ready(function($) { } // Event for updating the checkout - $('body').bind('update_checkout', function() { - clearTimeout(updateTimer); + $( 'body' ).bind( 'update_checkout', function() { + clearTimeout( updateTimer ); update_checkout(); }); - $('p.password, form.login, .checkout_coupon, div.shipping_address').hide(); + $( '.checkout_coupon, div.shipping_address' ).hide(); - $('input.show_password').change(function(){ - $('p.password').slideToggle(); - }); + $( 'a.showlogin' ).click( function() { + $( 'form.login' ).slideToggle(); - $('a.showlogin').click(function(){ - $('form.login').slideToggle(); return false; }); - $('a.showcoupon').click(function(){ - $('.checkout_coupon').slideToggle(400, function() { - $('#coupon_code').focus(); + $( 'a.showcoupon' ).click( function() { + $( '.checkout_coupon' ).slideToggle( 400, function() { + $( '#coupon_code' ).focus(); }); + return false; }); - $('#ship-to-different-address input').change(function(){ - $('div.shipping_address').hide(); - if ($(this).is(':checked')) { - $('div.shipping_address').slideDown(); + $( '#ship-to-different-address input' ).change( function() { + $( 'div.shipping_address' ).hide(); + if ( $( this ).is( ':checked' ) ) { + $( 'div.shipping_address' ).slideDown(); } }).change(); - if ( wc_checkout_params.option_guest_checkout == 'yes' ) { + if ( wc_checkout_params.option_guest_checkout === 'yes' ) { - $('div.create-account').hide(); + $( 'div.create-account' ).hide(); - $('input#createaccount').change(function(){ - $('div.create-account').hide(); - if ($(this).is(':checked')) { - $('div.create-account').slideDown(); + $( 'input#createaccount' ).change( function() { + $( 'div.create-account' ).hide(); + + if ( $( this ).is( ':checked' ) ) { + $( 'div.create-account' ).slideDown(); } }).change(); } + $( '#order_review' ) + + /* Payment option selection */ + + .on( 'click', '.payment_methods input.input-radio', function() { + if ( $( '.payment_methods input.input-radio' ).length > 1 ) { + var target_payment_box = $( 'div.payment_box.' + $( this ).attr( 'ID' ) ); + + if ( $( this ).is( ':checked' ) && ! target_payment_box.is( ':visible' ) ) { + $( 'div.payment_box' ).filter( ':visible' ).slideUp( 250 ); + + if ( $( this ).is( ':checked' ) ) { + $( 'div.payment_box.' + $( this ).attr( 'ID' ) ).slideDown( 250 ); + } + } + } else { + $( 'div.payment_box' ).show(); + } + + if ( $( this ).data( 'order_button_text' ) ) { + $( '#place_order' ).val( $( this ).data( 'order_button_text' ) ); + } else { + $( '#place_order' ).val( $( '#place_order' ).data( 'value' ) ); + } + }) + + // Trigger initial click + .find( 'input[name=payment_method]:checked' ).click(); + // Used for input change events below function input_changed() { var update_totals = true; - if ( $(dirtyInput).size() ) { + if ( $( dirtyInput ).size() ) { - $required_siblings = $(dirtyInput).closest('.form-row').siblings('.address-field.validate-required'); + $required_inputs = $( dirtyInput ).closest( 'div' ).find( '.address-field.validate-required' ); - if ( $required_siblings.size() ) { - $required_siblings.each(function(){ - if ( $(this).find('input.input-text').val() == '' || $(this).find('input.input-text').val() == 'undefined' ) { + if ( $required_inputs.size() ) { + $required_inputs.each( function() { + if ( $( this ).find( 'input.input-text' ).val() === '' ) { update_totals = false; } - }); + }); } } if ( update_totals ) { dirtyInput = false; - $('body').trigger('update_checkout'); + $( 'body' ).trigger( 'update_checkout' ); } } - $('#order_review') - - /* Payment option selection */ - - .on( 'click', '.payment_methods input.input-radio', function() { - if ( $('.payment_methods input.input-radio').length > 1 ) { - $('div.payment_box').filter(':visible').slideUp(250); - if ($(this).is(':checked')) { - $('div.payment_box.' + $(this).attr('ID')).slideDown(250); - } - } else { - $('div.payment_box').show(); - } - }) - - // Trigger initial click - .find('input[name=payment_method]:checked').click(); - - $('form.checkout') + $( 'form.checkout' ) /* Update totals/taxes/shipping */ - // Inputs/selects which update totals instantly - .on( 'input change', 'select#shipping_method, input[name^=shipping_method], #ship-to-different-address input, .update_totals_on_change select', function(){ + .on( 'input change', 'select.shipping_method, input[name^=shipping_method], #ship-to-different-address input, .update_totals_on_change select, .update_totals_on_change input[type=radio]', function() { clearTimeout( updateTimer ); dirtyInput = false; - $('body').trigger('update_checkout'); + $( 'body' ).trigger( 'update_checkout' ); }) // Address-fields which refresh totals when all required fields are filled - .on( 'input change', '.address-field input.input-text, .update_totals_on_change input.input-text', function() { + .on( 'change', '.address-field input.input-text, .update_totals_on_change input.input-text', function() { if ( dirtyInput ) { input_changed(); } @@ -188,10 +205,13 @@ jQuery(document).ready(function($) { input_changed(); }) - .on( 'keydown', '.address-field input.input-text, .update_totals_on_change input.input-text', function( e ){ - var code = e.keyCode || e.which; - if ( code == '9' ) - return; + .on( 'input keydown', '.address-field input.input-text, .update_totals_on_change input.input-text', function( e ){ + var code = e.keyCode || e.which || 0; + + if ( code === 9 ) { + return true; + } + dirtyInput = this; clearTimeout( updateTimer ); updateTimer = setTimeout( input_changed, '1000' ); @@ -200,12 +220,12 @@ jQuery(document).ready(function($) { /* Inline validation */ .on( 'blur input change', '.input-text, select', function() { - var $this = $(this); - var $parent = $this.closest('.form-row'); - var validated = true; + var $this = $( this ), + $parent = $this.closest( '.form-row' ), + validated = true; if ( $parent.is( '.validate-required' ) ) { - if ( $this.val() == '' ) { + if ( $this.val() === '' ) { $parent.removeClass( 'woocommerce-validated' ).addClass( 'woocommerce-invalid woocommerce-invalid-required-field' ); validated = false; } @@ -234,82 +254,86 @@ jQuery(document).ready(function($) { .submit( function() { clearTimeout( updateTimer ); - var $form = $(this); + var $form = $( this ); - if ( $form.is('.processing') ) + if ( $form.is( '.processing' ) ) { return false; + } // Trigger a handler to let gateways manipulate the checkout if needed - if ( $form.triggerHandler('checkout_place_order') !== false && $form.triggerHandler('checkout_place_order_' + $('#order_review input[name=payment_method]:checked').val() ) !== false ) { + if ( $form.triggerHandler( 'checkout_place_order' ) !== false && $form.triggerHandler( 'checkout_place_order_' + $( '#order_review input[name=payment_method]:checked' ).val() ) !== false ) { - $form.addClass('processing'); + $form.addClass( 'processing' ); var form_data = $form.data(); - if ( form_data["blockUI.isBlocked"] != 1 ) - $form.block({message: null, overlayCSS: {background: '#fff url(' + wc_checkout_params.ajax_loader_url + ') no-repeat center', backgroundSize: '16px 16px', opacity: 0.6}}); + if ( form_data["blockUI.isBlocked"] != 1 ) { + $form.block({ message: null, overlayCSS: { background: '#fff url(' + wc_checkout_params.ajax_loader_url + ') no-repeat center', backgroundSize: '16px 16px', opacity: 0.6 } }); + } $.ajax({ - type: 'POST', - url: wc_checkout_params.checkout_url, - data: $form.serialize(), - success: function( code ) { + type: 'POST', + url: wc_checkout_params.checkout_url, + data: $form.serialize(), + success: function( code ) { var result = ''; try { // Get the valid JSON only from the returned string - if ( code.indexOf("") >= 0 ) - code = code.split("")[1]; // Strip off before after WC_START + if ( code.indexOf( '' ) >= 0 ) + code = code.split( '' )[1]; // Strip off before after WC_START - if ( code.indexOf("") >= 0 ) - code = code.split("")[0]; // Strip off anything after WC_END + if ( code.indexOf( '' ) >= 0 ) + code = code.split( '' )[0]; // Strip off anything after WC_END // Parse result = $.parseJSON( code ); - if ( result.result == 'success' ) { - window.location = decodeURI(result.redirect); - } else if ( result.result == 'failure' ) { - throw "Result failure"; + if ( result.result === 'success' ) { + window.location = decodeURI( result.redirect ); + } else if ( result.result === 'failure' ) { + throw 'Result failure'; } else { - throw "Invalid response"; + throw 'Invalid response'; } } + catch( err ) { - if ( result.reload == 'true' ) { + if ( result.reload === 'true' ) { window.location.reload(); return; } // Remove old errors - $('.woocommerce-error, .woocommerce-message').remove(); + $( '.woocommerce-error, .woocommerce-message' ).remove(); // Add new errors - if ( result.messages ) + if ( result.messages ) { $form.prepend( result.messages ); - else + } else { $form.prepend( code ); + } - // Cancel processing - $form.removeClass('processing').unblock(); + // Cancel processing + $form.removeClass( 'processing' ).unblock(); // Lose focus for all fields $form.find( '.input-text, select' ).blur(); // Scroll to top - $('html, body').animate({ - scrollTop: ($('form.checkout').offset().top - 100) - }, 1000); + $( 'html, body' ).animate({ + scrollTop: ( $( 'form.checkout' ).offset().top - 100 ) + }, 1000 ); // Trigger update in case we need a fresh nonce - if ( result.refresh == 'true' ) - $('body').trigger('update_checkout'); + if ( result.refresh === 'true' ) + $( 'body' ).trigger( 'update_checkout' ); - $('body').trigger('checkout_error'); + $( 'body' ).trigger( 'checkout_error' ); } }, - dataType: "html" + dataType: 'html' }); } @@ -318,140 +342,51 @@ jQuery(document).ready(function($) { }); /* AJAX Coupon Form Submission */ - $('form.checkout_coupon').submit( function() { - var $form = $(this); + $( 'form.checkout_coupon' ).submit( function() { + var $form = $( this ); - if ( $form.is('.processing') ) return false; + if ( $form.is( '.processing' ) ) return false; - $form.addClass('processing').block({message: null, overlayCSS: {background: '#fff url(' + wc_checkout_params.ajax_loader_url + ') no-repeat center', backgroundSize: '16px 16px', opacity: 0.6}}); + $form.addClass( 'processing' ).block({ message: null, overlayCSS: {background: '#fff url(' + wc_checkout_params.ajax_loader_url + ') no-repeat center', backgroundSize: '16px 16px', opacity: 0.6 } }); var data = { - action: 'woocommerce_apply_coupon', - security: wc_checkout_params.apply_coupon_nonce, - coupon_code: $form.find('input[name=coupon_code]').val() + action: 'woocommerce_apply_coupon', + security: wc_checkout_params.apply_coupon_nonce, + coupon_code: $form.find( 'input[name=coupon_code]' ).val() }; $.ajax({ - type: 'POST', - url: wc_checkout_params.ajax_url, - data: data, - success: function( code ) { - $('.woocommerce-error, .woocommerce-message').remove(); - $form.removeClass('processing').unblock(); + type: 'POST', + url: wc_checkout_params.ajax_url, + data: data, + success: function( code ) { + $( '.woocommerce-error, .woocommerce-message' ).remove(); + $form.removeClass( 'processing' ).unblock(); if ( code ) { $form.before( code ); $form.slideUp(); - $('body').trigger('update_checkout'); + $( 'body' ).trigger( 'update_checkout' ); } }, - dataType: "html" + dataType: 'html' }); + return false; }); - /* Localisation */ - var locale_json = wc_checkout_params.locale.replace(/"/g, '"'); - var locale = $.parseJSON( locale_json ); - var required = ' *'; - - $('body') - - // Handle locale - .bind('country_to_state_changing', function( event, country, wrapper ){ - - var thisform = wrapper; - - if ( typeof locale[country] != 'undefined' ) { - var thislocale = locale[country]; - } else { - var thislocale = locale['default']; - } - - // Handle locale fields - var locale_fields = $.parseJSON( wc_checkout_params.locale_fields ); - - $.each( locale_fields, function( key, value ) { - - var field = thisform.find( value ); - - if ( thislocale[key] ) { - - if ( thislocale[key]['label'] ) { - field.find('label').html( thislocale[key]['label'] ); - } - - if ( thislocale[key]['placeholder'] ) { - field.find('input').attr( 'placeholder', thislocale[key]['placeholder'] ); - } - - field.find('label abbr').remove(); - - if ( typeof thislocale[key]['required'] == 'undefined' && locale['default'][key]['required'] == true ) { - field.find('label').append( required ); - } else if ( thislocale[key]['required'] == true ) { - field.find('label').append( required ); - } - - if ( key !== 'state' ) { - if ( thislocale[key]['hidden'] == true ) { - field.hide().find('input').val(''); - } else { - field.show(); - } - } - - } else if ( locale['default'][key] ) { - if ( locale['default'][key]['required'] == true ) { - if (field.find('label abbr').size()==0) field.find('label').append( required ); - } - if ( key !== 'state' ) { - if ( typeof locale['default'][key]['hidden'] == 'undefined' || locale['default'][key]['hidden'] == false ) { - field.show(); - } else if ( locale['default'][key]['hidden'] == true ) { - field.hide().find('input').val(''); - } - } - } - - }); - - var $postcodefield = thisform.find('#billing_postcode_field, #shipping_postcode_field'); - var $cityfield = thisform.find('#billing_city_field, #shipping_city_field'); - var $statefield = thisform.find('#billing_state_field, #shipping_state_field'); - - if ( ! $postcodefield.attr('data-o_class') ) { - $postcodefield.attr('data-o_class', $postcodefield.attr('class')); - $cityfield.attr('data-o_class', $cityfield.attr('class')); - $statefield.attr('data-o_class', $statefield.attr('class')); - } - - // Re-order postcode/city - if ( thislocale['postcode_before_city'] ) { - - $postcodefield.add( $cityfield ).add( $statefield ).removeClass('form-row-first form-row-last').addClass('form-row-wide'); - $postcodefield.insertBefore( $cityfield ); - - } else { - // Default - $postcodefield.attr('class', $postcodefield.attr('data-o_class')); - $cityfield.attr('class', $cityfield.attr('data-o_class')); - $statefield.attr('class', $statefield.attr('data-o_class')); - $postcodefield.insertAfter( $statefield ); - } - - }) + $( 'body' ) // Init trigger - .bind('init_checkout', function() { - $('#billing_country, #shipping_country, .country_to_state').change(); - $('body').trigger('update_checkout'); + .bind( 'init_checkout', function() { + $( '#billing_country, #shipping_country, .country_to_state' ).change(); + $( 'body' ).trigger( 'update_checkout' ); }); // Update on page load - if ( wc_checkout_params.is_checkout == 1 ) { - $('body').trigger('init_checkout'); + if ( wc_checkout_params.is_checkout === '1' ) { + $( 'body' ).trigger( 'init_checkout' ); } }); diff --git a/assets/js/frontend/checkout.min.js b/assets/js/frontend/checkout.min.js index d1ba1882c7e..4ffdf6ca8b8 100644 --- a/assets/js/frontend/checkout.min.js +++ b/assets/js/frontend/checkout.min.js @@ -1 +1 @@ -jQuery(document).ready(function(e){function i(){r&&r.abort();var t=[];e("select#shipping_method, input[name^=shipping_method][type=radio]:checked, input[name^=shipping_method][type=hidden]").each(function(n,r){t[e(this).data("index")]=e(this).val()});var n=e("#order_review input[name=payment_method]:checked").val(),i=e("#billing_country").val(),s=e("#billing_state").val(),o=e("input#billing_postcode").val(),u=e("input#billing_city").val(),a=e("input#billing_address_1").val(),f=e("input#billing_address_2").val();if(e("#ship-to-different-address input").is(":checked")||e("#ship-to-different-address input").size()==0)var l=e("#shipping_country").val(),c=e("#shipping_state").val(),h=e("input#shipping_postcode").val(),p=e("input#shipping_city").val(),d=e("input#shipping_address_1").val(),v=e("input#shipping_address_2").val();else var l=i,c=s,h=o,p=u,d=a,v=f;e("#order_methods, #order_review").block({message:null,overlayCSS:{background:"#fff url("+wc_checkout_params.ajax_loader_url+") no-repeat center",backgroundSize:"16px 16px",opacity:.6}});var m={action:"woocommerce_update_order_review",security:wc_checkout_params.update_order_review_nonce,shipping_method:t,payment_method:n,country:i,state:s,postcode:o,city:u,address:a,address_2:f,s_country:l,s_state:c,s_postcode:h,s_city:p,s_address:d,s_address_2:v,post_data:e("form.checkout").serialize()};r=e.ajax({type:"POST",url:wc_checkout_params.ajax_url,data:m,success:function(t){if(t){var n=e(t);e("#order_review").html(n.html());e("body").trigger("updated_checkout")}}})}function s(){var t=!0;if(e(n).size()){$required_siblings=e(n).closest(".form-row").siblings(".address-field.validate-required");$required_siblings.size()&&$required_siblings.each(function(){if(e(this).find("input.input-text").val()==""||e(this).find("input.input-text").val()=="undefined")t=!1})}if(t){n=!1;e("body").trigger("update_checkout")}}if(typeof wc_checkout_params=="undefined")return!1;var t,n=!1,r;e("body").bind("update_checkout",function(){clearTimeout(t);i()});e("p.password, form.login, .checkout_coupon, div.shipping_address").hide();e("input.show_password").change(function(){e("p.password").slideToggle()});e("a.showlogin").click(function(){e("form.login").slideToggle();return!1});e("a.showcoupon").click(function(){e(".checkout_coupon").slideToggle(400,function(){e("#coupon_code").focus()});return!1});e("#ship-to-different-address input").change(function(){e("div.shipping_address").hide();e(this).is(":checked")&&e("div.shipping_address").slideDown()}).change();if(wc_checkout_params.option_guest_checkout=="yes"){e("div.create-account").hide();e("input#createaccount").change(function(){e("div.create-account").hide();e(this).is(":checked")&&e("div.create-account").slideDown()}).change()}e("#order_review").on("click",".payment_methods input.input-radio",function(){if(e(".payment_methods input.input-radio").length>1){e("div.payment_box").filter(":visible").slideUp(250);e(this).is(":checked")&&e("div.payment_box."+e(this).attr("ID")).slideDown(250)}else e("div.payment_box").show()}).find("input[name=payment_method]:checked").click();e("form.checkout").on("input change","select#shipping_method, input[name^=shipping_method], #ship-to-different-address input, .update_totals_on_change select",function(){clearTimeout(t);n=!1;e("body").trigger("update_checkout")}).on("input change",".address-field input.input-text, .update_totals_on_change input.input-text",function(){n&&s()}).on("input change",".address-field select",function(){n=this;s()}).on("keydown",".address-field input.input-text, .update_totals_on_change input.input-text",function(e){var r=e.keyCode||e.which;if(r=="9")return;n=this;clearTimeout(t);t=setTimeout(s,"1000")}).on("blur input change",".input-text, select",function(){var t=e(this),n=t.closest(".form-row"),r=!0;if(n.is(".validate-required")&&t.val()==""){n.removeClass("woocommerce-validated").addClass("woocommerce-invalid woocommerce-invalid-required-field");r=!1}if(n.is(".validate-email")&&t.val()){var i=new RegExp(/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i);if(!i.test(t.val())){n.removeClass("woocommerce-validated").addClass("woocommerce-invalid woocommerce-invalid-email");r=!1}}r&&n.removeClass("woocommerce-invalid woocommerce-invalid-required-field").addClass("woocommerce-validated")}).submit(function(){clearTimeout(t);var n=e(this);if(n.is(".processing"))return!1;if(n.triggerHandler("checkout_place_order")!==!1&&n.triggerHandler("checkout_place_order_"+e("#order_review input[name=payment_method]:checked").val())!==!1){n.addClass("processing");var r=n.data();r["blockUI.isBlocked"]!=1&&n.block({message:null,overlayCSS:{background:"#fff url("+wc_checkout_params.ajax_loader_url+") no-repeat center",backgroundSize:"16px 16px",opacity:.6}});e.ajax({type:"POST",url:wc_checkout_params.checkout_url,data:n.serialize(),success:function(t){var r="";try{t.indexOf("")>=0&&(t=t.split("")[1]);t.indexOf("")>=0&&(t=t.split("")[0]);r=e.parseJSON(t);if(r.result!="success")throw r.result=="failure"?"Result failure":"Invalid response";window.location=decodeURI(r.redirect)}catch(i){if(r.reload=="true"){window.location.reload();return}e(".woocommerce-error, .woocommerce-message").remove();r.messages?n.prepend(r.messages):n.prepend(t);n.removeClass("processing").unblock();n.find(".input-text, select").blur();e("html, body").animate({scrollTop:e("form.checkout").offset().top-100},1e3);r.refresh=="true"&&e("body").trigger("update_checkout");e("body").trigger("checkout_error")}},dataType:"html"})}return!1});e("form.checkout_coupon").submit(function(){var t=e(this);if(t.is(".processing"))return!1;t.addClass("processing").block({message:null,overlayCSS:{background:"#fff url("+wc_checkout_params.ajax_loader_url+") no-repeat center",backgroundSize:"16px 16px",opacity:.6}});var n={action:"woocommerce_apply_coupon",security:wc_checkout_params.apply_coupon_nonce,coupon_code:t.find("input[name=coupon_code]").val()};e.ajax({type:"POST",url:wc_checkout_params.ajax_url,data:n,success:function(n){e(".woocommerce-error, .woocommerce-message").remove();t.removeClass("processing").unblock();if(n){t.before(n);t.slideUp();e("body").trigger("update_checkout")}},dataType:"html"});return!1});var o=wc_checkout_params.locale.replace(/"/g,'"'),u=e.parseJSON(o),a=' *';e("body").bind("country_to_state_changing",function(t,n,r){var i=r;if(typeof u[n]!="undefined")var s=u[n];else var s=u["default"];var o=e.parseJSON(wc_checkout_params.locale_fields);e.each(o,function(e,t){var n=i.find(t);if(s[e]){s[e].label&&n.find("label").html(s[e].label);s[e].placeholder&&n.find("input").attr("placeholder",s[e].placeholder);n.find("label abbr").remove();typeof s[e]["required"]=="undefined"&&u["default"][e]["required"]==1?n.find("label").append(a):s[e]["required"]==1&&n.find("label").append(a);e!=="state"&&(s[e]["hidden"]==1?n.hide().find("input").val(""):n.show())}else if(u["default"][e]){u["default"][e]["required"]==1&&n.find("label abbr").size()==0&&n.find("label").append(a);e!=="state"&&(typeof u["default"][e]["hidden"]=="undefined"||u["default"][e]["hidden"]==0?n.show():u["default"][e]["hidden"]==1&&n.hide().find("input").val(""))}});var f=i.find("#billing_postcode_field, #shipping_postcode_field"),l=i.find("#billing_city_field, #shipping_city_field"),c=i.find("#billing_state_field, #shipping_state_field");if(!f.attr("data-o_class")){f.attr("data-o_class",f.attr("class"));l.attr("data-o_class",l.attr("class"));c.attr("data-o_class",c.attr("class"))}if(s.postcode_before_city){f.add(l).add(c).removeClass("form-row-first form-row-last").addClass("form-row-wide");f.insertBefore(l)}else{f.attr("class",f.attr("data-o_class"));l.attr("class",l.attr("data-o_class"));c.attr("class",c.attr("data-o_class"));f.insertAfter(c)}}).bind("init_checkout",function(){e("#billing_country, #shipping_country, .country_to_state").change();e("body").trigger("update_checkout")});wc_checkout_params.is_checkout==1&&e("body").trigger("init_checkout")}); \ No newline at end of file +jQuery(function(a){function b(){e&&e.abort();var b=[];a("select.shipping_method, input[name^=shipping_method][type=radio]:checked, input[name^=shipping_method][type=hidden]").each(function(){b[a(this).data("index")]=a(this).val()});var c,d,f,g,h,i,j=a("#order_review input[name=payment_method]:checked").val(),k=a("#billing_country").val(),l=a("#billing_state").val(),m=a("input#billing_postcode").val(),n=a("#billing_city").val(),o=a("input#billing_address_1").val(),p=a("input#billing_address_2").val();a("#ship-to-different-address input").is(":checked")?(c=a("#shipping_country").val(),d=a("#shipping_state").val(),f=a("input#shipping_postcode").val(),g=a("#shipping_city").val(),h=a("input#shipping_address_1").val(),i=a("input#shipping_address_2").val()):(c=k,d=l,f=m,g=n,h=o,i=p),a("#order_methods, #order_review").block({message:null,overlayCSS:{background:"#fff url("+wc_checkout_params.ajax_loader_url+") no-repeat center",backgroundSize:"16px 16px",opacity:.6}});var q={action:"woocommerce_update_order_review",security:wc_checkout_params.update_order_review_nonce,shipping_method:b,payment_method:j,country:k,state:l,postcode:m,city:n,address:o,address_2:p,s_country:c,s_state:d,s_postcode:f,s_city:g,s_address:h,s_address_2:i,post_data:a("form.checkout").serialize()};e=a.ajax({type:"POST",url:wc_checkout_params.ajax_url,data:q,success:function(b){b&&(a("#order_review").html(a.trim(b)),a("#order_review").find("input[name=payment_method]:checked").trigger("click"),a("body").trigger("updated_checkout"))}})}function c(){var b=!0;a(f).size()&&($required_inputs=a(f).closest("div").find(".address-field.validate-required"),$required_inputs.size()&&$required_inputs.each(function(){""===a(this).find("input.input-text").val()&&(b=!1)})),b&&(f=!1,a("body").trigger("update_checkout"))}if(a.blockUI.defaults.overlayCSS.cursor="default","undefined"==typeof wc_checkout_params)return!1;var d,e,f=!1;a("body").bind("update_checkout",function(){clearTimeout(d),b()}),a(".checkout_coupon, div.shipping_address").hide(),a("a.showlogin").click(function(){return a("form.login").slideToggle(),!1}),a("a.showcoupon").click(function(){return a(".checkout_coupon").slideToggle(400,function(){a("#coupon_code").focus()}),!1}),a("#ship-to-different-address input").change(function(){a("div.shipping_address").hide(),a(this).is(":checked")&&a("div.shipping_address").slideDown()}).change(),"yes"===wc_checkout_params.option_guest_checkout&&(a("div.create-account").hide(),a("input#createaccount").change(function(){a("div.create-account").hide(),a(this).is(":checked")&&a("div.create-account").slideDown()}).change()),a("#order_review").on("click",".payment_methods input.input-radio",function(){if(a(".payment_methods input.input-radio").length>1){var b=a("div.payment_box."+a(this).attr("ID"));a(this).is(":checked")&&!b.is(":visible")&&(a("div.payment_box").filter(":visible").slideUp(250),a(this).is(":checked")&&a("div.payment_box."+a(this).attr("ID")).slideDown(250))}else a("div.payment_box").show();a("#place_order").val(a(this).data("order_button_text")?a(this).data("order_button_text"):a("#place_order").data("value"))}).find("input[name=payment_method]:checked").click(),a("form.checkout").on("input change","select.shipping_method, input[name^=shipping_method], #ship-to-different-address input, .update_totals_on_change select, .update_totals_on_change input[type=radio]",function(){clearTimeout(d),f=!1,a("body").trigger("update_checkout")}).on("change",".address-field input.input-text, .update_totals_on_change input.input-text",function(){f&&c()}).on("input change",".address-field select",function(){f=this,c()}).on("input keydown",".address-field input.input-text, .update_totals_on_change input.input-text",function(a){var b=a.keyCode||a.which||0;return 9===b?!0:(f=this,clearTimeout(d),void(d=setTimeout(c,"1000")))}).on("blur input change",".input-text, select",function(){var b=a(this),c=b.closest(".form-row"),d=!0;if(c.is(".validate-required")&&""===b.val()&&(c.removeClass("woocommerce-validated").addClass("woocommerce-invalid woocommerce-invalid-required-field"),d=!1),c.is(".validate-email")&&b.val()){var e=new RegExp(/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i);e.test(b.val())||(c.removeClass("woocommerce-validated").addClass("woocommerce-invalid woocommerce-invalid-email"),d=!1)}d&&c.removeClass("woocommerce-invalid woocommerce-invalid-required-field").addClass("woocommerce-validated")}).submit(function(){clearTimeout(d);var b=a(this);if(b.is(".processing"))return!1;if(b.triggerHandler("checkout_place_order")!==!1&&b.triggerHandler("checkout_place_order_"+a("#order_review input[name=payment_method]:checked").val())!==!1){b.addClass("processing");var c=b.data();1!=c["blockUI.isBlocked"]&&b.block({message:null,overlayCSS:{background:"#fff url("+wc_checkout_params.ajax_loader_url+") no-repeat center",backgroundSize:"16px 16px",opacity:.6}}),a.ajax({type:"POST",url:wc_checkout_params.checkout_url,data:b.serialize(),success:function(c){var d="";try{if(c.indexOf("")>=0&&(c=c.split("")[1]),c.indexOf("")>=0&&(c=c.split("")[0]),d=a.parseJSON(c),"success"!==d.result)throw"failure"===d.result?"Result failure":"Invalid response";window.location=decodeURI(d.redirect)}catch(e){if("true"===d.reload)return void window.location.reload();a(".woocommerce-error, .woocommerce-message").remove(),b.prepend(d.messages?d.messages:c),b.removeClass("processing").unblock(),b.find(".input-text, select").blur(),a("html, body").animate({scrollTop:a("form.checkout").offset().top-100},1e3),"true"===d.refresh&&a("body").trigger("update_checkout"),a("body").trigger("checkout_error")}},dataType:"html"})}return!1}),a("form.checkout_coupon").submit(function(){var b=a(this);if(b.is(".processing"))return!1;b.addClass("processing").block({message:null,overlayCSS:{background:"#fff url("+wc_checkout_params.ajax_loader_url+") no-repeat center",backgroundSize:"16px 16px",opacity:.6}});var c={action:"woocommerce_apply_coupon",security:wc_checkout_params.apply_coupon_nonce,coupon_code:b.find("input[name=coupon_code]").val()};return a.ajax({type:"POST",url:wc_checkout_params.ajax_url,data:c,success:function(c){a(".woocommerce-error, .woocommerce-message").remove(),b.removeClass("processing").unblock(),c&&(b.before(c),b.slideUp(),a("body").trigger("update_checkout"))},dataType:"html"}),!1}),a("body").bind("init_checkout",function(){a("#billing_country, #shipping_country, .country_to_state").change(),a("body").trigger("update_checkout")}),"1"===wc_checkout_params.is_checkout&&a("body").trigger("init_checkout")}); \ No newline at end of file diff --git a/assets/js/frontend/chosen-frontend.js b/assets/js/frontend/chosen-frontend.js index 2bf6610192d..b91734e5f19 100644 --- a/assets/js/frontend/chosen-frontend.js +++ b/assets/js/frontend/chosen-frontend.js @@ -1,10 +1,10 @@ -jQuery(document).ready(function($) { +jQuery( function( $ ) { // Frontend Chosen selects - $("select.country_select, select.state_select").chosen( { search_contains: true } ); + $( 'select.country_select, select.state_select' ).chosen( { search_contains: true } ); - $('body').bind('country_to_state_changed', function(){ - $("select.state_select").chosen().trigger("chosen:updated"); + $( 'body' ).bind( 'country_to_state_changed', function() { + $( 'select.state_select' ).chosen().trigger( 'chosen:updated' ); }); -}); \ No newline at end of file +}); diff --git a/assets/js/frontend/chosen-frontend.min.js b/assets/js/frontend/chosen-frontend.min.js index c1d7b275825..736c7121539 100644 --- a/assets/js/frontend/chosen-frontend.min.js +++ b/assets/js/frontend/chosen-frontend.min.js @@ -1 +1 @@ -jQuery(document).ready(function(e){e("select.country_select, select.state_select").chosen({search_contains:!0});e("body").bind("country_to_state_changed",function(){e("select.state_select").chosen().trigger("chosen:updated")})}); \ No newline at end of file +jQuery(function(a){a("select.country_select, select.state_select").chosen({search_contains:!0}),a("body").bind("country_to_state_changed",function(){a("select.state_select").chosen().trigger("chosen:updated")})}); \ No newline at end of file diff --git a/assets/js/frontend/country-select.js b/assets/js/frontend/country-select.js index 12a48d3378c..dcc09764f46 100644 --- a/assets/js/frontend/country-select.js +++ b/assets/js/frontend/country-select.js @@ -1,73 +1,78 @@ -jQuery(document).ready(function($) { +jQuery( function( $ ) { // wc_country_select_params is required to continue, ensure the object exists - if (typeof wc_country_select_params === "undefined") + if ( typeof wc_country_select_params === 'undefined' ) { return false; + } /* State/Country select boxes */ - var states_json = wc_country_select_params.countries.replace(/"/g, '"'); - var states = $.parseJSON( states_json ); + var states_json = wc_country_select_params.countries.replace( /"/g, '"' ), + states = $.parseJSON( states_json ); - $('select.country_to_state, input.country_to_state').change(function(){ + $( 'select.country_to_state, input.country_to_state' ).change( function() { - var country = $(this).val(); + var country = $( this ).val(), + $statebox = $( this ).closest( 'div' ).find( '#billing_state, #shipping_state, #calc_shipping_state' ), + $parent = $statebox.parent(), + input_name = $statebox.attr( 'name' ), + input_id = $statebox.attr( 'id' ), + value = $statebox.val(), + placeholder = $statebox.attr( 'placeholder' ); - var $statebox = $(this).closest('div').find('#billing_state, #shipping_state, #calc_shipping_state'); - var $parent = $statebox.parent(); + if ( states[ country ] ) { + if ( states[ country ].length === 0 ) { - var input_name = $statebox.attr('name'); - var input_id = $statebox.attr('id'); - var value = $statebox.val(); - var placeholder = $statebox.attr('placeholder'); + $statebox.parent().hide().find( '.chosen-container' ).remove(); + $statebox.replaceWith( '' ); - if (states[country]) { - if (states[country].length == 0) { - - $statebox.parent().hide().find('.chosen-container').remove(); - $statebox.replaceWith(''); - - $('body').trigger('country_to_state_changed', [country, $(this).closest('div')]); + $( 'body' ).trigger( 'country_to_state_changed', [country, $( this ).closest( 'div' )] ); } else { - var options = ''; - var state = states[country]; - for(var index in state) { - options = options + ''; + var options = '', + state = states[ country ]; + + for( var index in state ) { + if ( state.hasOwnProperty( index ) ) { + options = options + ''; + } } + $statebox.parent().show(); - if ($statebox.is('input')) { + + if ( $statebox.is( 'input' ) ) { // Change for select - $statebox.replaceWith(''); - $statebox = $(this).closest('div').find('#billing_state, #shipping_state, #calc_shipping_state'); + $statebox.replaceWith( '' ); + $statebox = $( this ).closest( 'div' ).find( '#billing_state, #shipping_state, #calc_shipping_state' ); } - $statebox.html( '' + options); - $statebox.val(value); + $statebox.html( '' + options ); - $('body').trigger('country_to_state_changed', [country, $(this).closest('div')]); + $statebox.val( value ); + + $( 'body' ).trigger( 'country_to_state_changed', [country, $( this ).closest( 'div' )] ); } } else { - if ($statebox.is('select')) { + if ( $statebox.is( 'select' ) ) { - $parent.show().find('.chosen-container').remove(); - $statebox.replaceWith(''); + $parent.show().find( '.chosen-container' ).remove(); + $statebox.replaceWith( '' ); - $('body').trigger('country_to_state_changed', [country, $(this).closest('div')]); + $( 'body' ).trigger( 'country_to_state_changed', [country, $( this ).closest( 'div' )] ); - } else if ($statebox.is('.hidden')) { + } else if ( $statebox.is( '.hidden' ) ) { - $parent.show().find('.chosen-container').remove(); - $statebox.replaceWith(''); + $parent.show().find( '.chosen-container' ).remove(); + $statebox.replaceWith( '' ); - $('body').trigger('country_to_state_changed', [country, $(this).closest('div')]); + $( 'body' ).trigger( 'country_to_state_changed', [country, $( this ).closest( 'div' )] ); } } - $('body').trigger('country_to_state_changing', [country, $(this).closest('div')]); + $( 'body' ).trigger( 'country_to_state_changing', [country, $( this ).closest( 'div' )] ); - }); + }).change(); }); diff --git a/assets/js/frontend/country-select.min.js b/assets/js/frontend/country-select.min.js index 0a9768fe36a..4fc30d8253d 100644 --- a/assets/js/frontend/country-select.min.js +++ b/assets/js/frontend/country-select.min.js @@ -1 +1 @@ -jQuery(document).ready(function(e){if(typeof wc_country_select_params=="undefined")return!1;var t=wc_country_select_params.countries.replace(/"/g,'"'),n=e.parseJSON(t);e("select.country_to_state, input.country_to_state").change(function(){var t=e(this).val(),r=e(this).closest("div").find("#billing_state, #shipping_state, #calc_shipping_state"),i=r.parent(),s=r.attr("name"),o=r.attr("id"),u=r.val(),a=r.attr("placeholder");if(n[t])if(n[t].length==0){r.parent().hide().find(".chosen-container").remove();r.replaceWith('');e("body").trigger("country_to_state_changed",[t,e(this).closest("div")])}else{var f="",l=n[t];for(var c in l)f=f+'";r.parent().show();if(r.is("input")){r.replaceWith('');r=e(this).closest("div").find("#billing_state, #shipping_state, #calc_shipping_state")}r.html('"+f);r.val(u);e("body").trigger("country_to_state_changed",[t,e(this).closest("div")])}else if(r.is("select")){i.show().find(".chosen-container").remove();r.replaceWith('');e("body").trigger("country_to_state_changed",[t,e(this).closest("div")])}else if(r.is(".hidden")){i.show().find(".chosen-container").remove();r.replaceWith('');e("body").trigger("country_to_state_changed",[t,e(this).closest("div")])}e("body").trigger("country_to_state_changing",[t,e(this).closest("div")])})}); \ No newline at end of file +jQuery(function(a){if("undefined"==typeof wc_country_select_params)return!1;var b=wc_country_select_params.countries.replace(/"/g,'"'),c=a.parseJSON(b);a("select.country_to_state, input.country_to_state").change(function(){var b=a(this).val(),d=a(this).closest("div").find("#billing_state, #shipping_state, #calc_shipping_state"),e=d.parent(),f=d.attr("name"),g=d.attr("id"),h=d.val(),i=d.attr("placeholder");if(c[b])if(0===c[b].length)d.parent().hide().find(".chosen-container").remove(),d.replaceWith(''),a("body").trigger("country_to_state_changed",[b,a(this).closest("div")]);else{var j="",k=c[b];for(var l in k)k.hasOwnProperty(l)&&(j=j+'");d.parent().show(),d.is("input")&&(d.replaceWith(''),d=a(this).closest("div").find("#billing_state, #shipping_state, #calc_shipping_state")),d.html('"+j),d.val(h),a("body").trigger("country_to_state_changed",[b,a(this).closest("div")])}else d.is("select")?(e.show().find(".chosen-container").remove(),d.replaceWith(''),a("body").trigger("country_to_state_changed",[b,a(this).closest("div")])):d.is(".hidden")&&(e.show().find(".chosen-container").remove(),d.replaceWith(''),a("body").trigger("country_to_state_changed",[b,a(this).closest("div")]));a("body").trigger("country_to_state_changing",[b,a(this).closest("div")])}).change()}); \ No newline at end of file diff --git a/assets/js/frontend/credit-card-form.js b/assets/js/frontend/credit-card-form.js index 1f8f04843ea..4fc1eb42866 100644 --- a/assets/js/frontend/credit-card-form.js +++ b/assets/js/frontend/credit-card-form.js @@ -1,12 +1,12 @@ -jQuery( function() { - jQuery('.wc-credit-card-form-card-number').payment('formatCardNumber'); - jQuery('.wc-credit-card-form-card-expiry').payment('formatCardExpiry'); - jQuery('.wc-credit-card-form-card-cvc').payment('formatCardCVC'); +jQuery( function( $ ) { + $( '.wc-credit-card-form-card-number' ).payment( 'formatCardNumber' ); + $( '.wc-credit-card-form-card-expiry' ).payment( 'formatCardExpiry' ); + $( '.wc-credit-card-form-card-cvc' ).payment( 'formatCardCVC' ); - jQuery('body') - .on('updated_checkout', function() { - jQuery('.wc-credit-card-form-card-number').payment('formatCardNumber'); - jQuery('.wc-credit-card-form-card-expiry').payment('formatCardExpiry'); - jQuery('.wc-credit-card-form-card-cvc').payment('formatCardCVC'); + $( 'body' ) + .on( 'updated_checkout', function() { + $( '.wc-credit-card-form-card-number' ).payment( 'formatCardNumber' ); + $( '.wc-credit-card-form-card-expiry' ).payment( 'formatCardExpiry' ); + $( '.wc-credit-card-form-card-cvc' ).payment( 'formatCardCVC' ); }); } ); \ No newline at end of file diff --git a/assets/js/frontend/credit-card-form.min.js b/assets/js/frontend/credit-card-form.min.js index 1c3f8a19961..aa64c896717 100644 --- a/assets/js/frontend/credit-card-form.min.js +++ b/assets/js/frontend/credit-card-form.min.js @@ -1 +1 @@ -jQuery(function(){jQuery(".wc-credit-card-form-card-number").payment("formatCardNumber");jQuery(".wc-credit-card-form-card-expiry").payment("formatCardExpiry");jQuery(".wc-credit-card-form-card-cvc").payment("formatCardCVC");jQuery("body").on("updated_checkout",function(){jQuery(".wc-credit-card-form-card-number").payment("formatCardNumber");jQuery(".wc-credit-card-form-card-expiry").payment("formatCardExpiry");jQuery(".wc-credit-card-form-card-cvc").payment("formatCardCVC")})}); \ No newline at end of file +jQuery(function(a){a(".wc-credit-card-form-card-number").payment("formatCardNumber"),a(".wc-credit-card-form-card-expiry").payment("formatCardExpiry"),a(".wc-credit-card-form-card-cvc").payment("formatCardCVC"),a("body").on("updated_checkout",function(){a(".wc-credit-card-form-card-number").payment("formatCardNumber"),a(".wc-credit-card-form-card-expiry").payment("formatCardExpiry"),a(".wc-credit-card-form-card-cvc").payment("formatCardCVC")})}); \ No newline at end of file diff --git a/assets/js/frontend/price-slider.js b/assets/js/frontend/price-slider.js index a0534e7e2f7..1ff7a82f681 100644 --- a/assets/js/frontend/price-slider.js +++ b/assets/js/frontend/price-slider.js @@ -1,72 +1,73 @@ -jQuery(document).ready(function($) { +jQuery( function( $ ) { // woocommerce_price_slider_params is required to continue, ensure the object exists - if (typeof woocommerce_price_slider_params === "undefined") + if ( typeof woocommerce_price_slider_params === 'undefined' ) { return false; + } // Get markup ready for slider - $('input#min_price, input#max_price').hide(); - $('.price_slider, .price_label').show(); + $( 'input#min_price, input#max_price' ).hide(); + $( '.price_slider, .price_label' ).show(); // Price slider uses jquery ui - var min_price = $('.price_slider_amount #min_price').data('min'); - var max_price = $('.price_slider_amount #max_price').data('max'); + var min_price = $( '.price_slider_amount #min_price' ).data( 'min' ), + max_price = $( '.price_slider_amount #max_price' ).data( 'max' ); - current_min_price = parseInt(min_price); - current_max_price = parseInt(max_price); + current_min_price = parseInt( min_price, 10 ); + current_max_price = parseInt( max_price, 10 ); - if (woocommerce_price_slider_params.min_price) current_min_price = parseInt(woocommerce_price_slider_params.min_price); - if (woocommerce_price_slider_params.max_price) current_max_price = parseInt(woocommerce_price_slider_params.max_price); + if ( woocommerce_price_slider_params.min_price ) current_min_price = parseInt( woocommerce_price_slider_params.min_price, 10 ); + if ( woocommerce_price_slider_params.max_price ) current_max_price = parseInt( woocommerce_price_slider_params.max_price, 10 ); - $('body').bind('price_slider_create price_slider_slide', function( event, min, max ) { - if (woocommerce_price_slider_params.currency_pos == "left") { + $( 'body' ).bind( 'price_slider_create price_slider_slide', function( event, min, max ) { + if ( woocommerce_price_slider_params.currency_pos === 'left' ) { - $( ".price_slider_amount span.from" ).html( woocommerce_price_slider_params.currency_symbol + min ); - $( ".price_slider_amount span.to" ).html( woocommerce_price_slider_params.currency_symbol + max ); + $( '.price_slider_amount span.from' ).html( woocommerce_price_slider_params.currency_symbol + min ); + $( '.price_slider_amount span.to' ).html( woocommerce_price_slider_params.currency_symbol + max ); - } else if (woocommerce_price_slider_params.currency_pos == "left_space") { + } else if ( woocommerce_price_slider_params.currency_pos === 'left_space' ) { - $( ".price_slider_amount span.from" ).html( woocommerce_price_slider_params.currency_symbol + " " + min ); - $( ".price_slider_amount span.to" ).html( woocommerce_price_slider_params.currency_symbol + " " + max ); + $( '.price_slider_amount span.from' ).html( woocommerce_price_slider_params.currency_symbol + " " + min ); + $( '.price_slider_amount span.to' ).html( woocommerce_price_slider_params.currency_symbol + " " + max ); - } else if (woocommerce_price_slider_params.currency_pos == "right") { + } else if ( woocommerce_price_slider_params.currency_pos === 'right' ) { - $( ".price_slider_amount span.from" ).html( min + woocommerce_price_slider_params.currency_symbol ); - $( ".price_slider_amount span.to" ).html( max + woocommerce_price_slider_params.currency_symbol ); + $( '.price_slider_amount span.from' ).html( min + woocommerce_price_slider_params.currency_symbol ); + $( '.price_slider_amount span.to' ).html( max + woocommerce_price_slider_params.currency_symbol ); - } else if (woocommerce_price_slider_params.currency_pos == "right_space") { + } else if ( woocommerce_price_slider_params.currency_pos === 'right_space' ) { - $( ".price_slider_amount span.from" ).html( min + " " + woocommerce_price_slider_params.currency_symbol ); - $( ".price_slider_amount span.to" ).html( max + " " + woocommerce_price_slider_params.currency_symbol ); + $( '.price_slider_amount span.from' ).html( min + " " + woocommerce_price_slider_params.currency_symbol ); + $( '.price_slider_amount span.to' ).html( max + " " + woocommerce_price_slider_params.currency_symbol ); } - $('body').trigger('price_slider_updated', min, max ); + $( 'body' ).trigger( 'price_slider_updated', min, max ); }); - $('.price_slider').slider({ + $( '.price_slider' ).slider({ range: true, animate: true, min: min_price, max: max_price, - values: [current_min_price,current_max_price], + values: [ current_min_price, current_max_price ], create : function( event, ui ) { - $( ".price_slider_amount #min_price" ).val(current_min_price); - $( ".price_slider_amount #max_price" ).val(current_max_price); + $( '.price_slider_amount #min_price' ).val( current_min_price ); + $( '.price_slider_amount #max_price' ).val( current_max_price ); - $('body').trigger('price_slider_create', [current_min_price, current_max_price]); + $( 'body' ).trigger( 'price_slider_create', [ current_min_price, current_max_price ] ); }, slide: function( event, ui ) { - $( "input#min_price" ).val(ui.values[ 0 ]); - $( "input#max_price" ).val(ui.values[ 1 ]); + $( 'input#min_price' ).val( ui.values[0] ); + $( 'input#max_price' ).val( ui.values[1] ); - $('body').trigger('price_slider_slide', [ui.values[ 0 ], ui.values[ 1 ]] ); + $( 'body' ).trigger( 'price_slider_slide', [ ui.values[0], ui.values[1] ] ); }, change: function( event, ui ) { - $('body').trigger('price_slider_change', [ui.values[ 0 ], ui.values[ 1 ]] ); + $( 'body' ).trigger( 'price_slider_change', [ ui.values[0], ui.values[1] ] ); }, }); diff --git a/assets/js/frontend/price-slider.min.js b/assets/js/frontend/price-slider.min.js index 62f57e2597e..a54449df744 100644 --- a/assets/js/frontend/price-slider.min.js +++ b/assets/js/frontend/price-slider.min.js @@ -1 +1 @@ -jQuery(document).ready(function(e){if(typeof woocommerce_price_slider_params=="undefined")return!1;e("input#min_price, input#max_price").hide();e(".price_slider, .price_label").show();var t=e(".price_slider_amount #min_price").data("min"),n=e(".price_slider_amount #max_price").data("max");current_min_price=parseInt(t);current_max_price=parseInt(n);woocommerce_price_slider_params.min_price&&(current_min_price=parseInt(woocommerce_price_slider_params.min_price));woocommerce_price_slider_params.max_price&&(current_max_price=parseInt(woocommerce_price_slider_params.max_price));e("body").bind("price_slider_create price_slider_slide",function(t,n,r){if(woocommerce_price_slider_params.currency_pos=="left"){e(".price_slider_amount span.from").html(woocommerce_price_slider_params.currency_symbol+n);e(".price_slider_amount span.to").html(woocommerce_price_slider_params.currency_symbol+r)}else if(woocommerce_price_slider_params.currency_pos=="left_space"){e(".price_slider_amount span.from").html(woocommerce_price_slider_params.currency_symbol+" "+n);e(".price_slider_amount span.to").html(woocommerce_price_slider_params.currency_symbol+" "+r)}else if(woocommerce_price_slider_params.currency_pos=="right"){e(".price_slider_amount span.from").html(n+woocommerce_price_slider_params.currency_symbol);e(".price_slider_amount span.to").html(r+woocommerce_price_slider_params.currency_symbol)}else if(woocommerce_price_slider_params.currency_pos=="right_space"){e(".price_slider_amount span.from").html(n+" "+woocommerce_price_slider_params.currency_symbol);e(".price_slider_amount span.to").html(r+" "+woocommerce_price_slider_params.currency_symbol)}e("body").trigger("price_slider_updated",n,r)});e(".price_slider").slider({range:!0,animate:!0,min:t,max:n,values:[current_min_price,current_max_price],create:function(t,n){e(".price_slider_amount #min_price").val(current_min_price);e(".price_slider_amount #max_price").val(current_max_price);e("body").trigger("price_slider_create",[current_min_price,current_max_price])},slide:function(t,n){e("input#min_price").val(n.values[0]);e("input#max_price").val(n.values[1]);e("body").trigger("price_slider_slide",[n.values[0],n.values[1]])},change:function(t,n){e("body").trigger("price_slider_change",[n.values[0],n.values[1]])}})}); \ No newline at end of file +jQuery(function(a){if("undefined"==typeof woocommerce_price_slider_params)return!1;a("input#min_price, input#max_price").hide(),a(".price_slider, .price_label").show();var b=a(".price_slider_amount #min_price").data("min"),c=a(".price_slider_amount #max_price").data("max");current_min_price=parseInt(b,10),current_max_price=parseInt(c,10),woocommerce_price_slider_params.min_price&&(current_min_price=parseInt(woocommerce_price_slider_params.min_price,10)),woocommerce_price_slider_params.max_price&&(current_max_price=parseInt(woocommerce_price_slider_params.max_price,10)),a("body").bind("price_slider_create price_slider_slide",function(b,c,d){"left"===woocommerce_price_slider_params.currency_pos?(a(".price_slider_amount span.from").html(woocommerce_price_slider_params.currency_symbol+c),a(".price_slider_amount span.to").html(woocommerce_price_slider_params.currency_symbol+d)):"left_space"===woocommerce_price_slider_params.currency_pos?(a(".price_slider_amount span.from").html(woocommerce_price_slider_params.currency_symbol+" "+c),a(".price_slider_amount span.to").html(woocommerce_price_slider_params.currency_symbol+" "+d)):"right"===woocommerce_price_slider_params.currency_pos?(a(".price_slider_amount span.from").html(c+woocommerce_price_slider_params.currency_symbol),a(".price_slider_amount span.to").html(d+woocommerce_price_slider_params.currency_symbol)):"right_space"===woocommerce_price_slider_params.currency_pos&&(a(".price_slider_amount span.from").html(c+" "+woocommerce_price_slider_params.currency_symbol),a(".price_slider_amount span.to").html(d+" "+woocommerce_price_slider_params.currency_symbol)),a("body").trigger("price_slider_updated",c,d)}),a(".price_slider").slider({range:!0,animate:!0,min:b,max:c,values:[current_min_price,current_max_price],create:function(){a(".price_slider_amount #min_price").val(current_min_price),a(".price_slider_amount #max_price").val(current_max_price),a("body").trigger("price_slider_create",[current_min_price,current_max_price])},slide:function(b,c){a("input#min_price").val(c.values[0]),a("input#max_price").val(c.values[1]),a("body").trigger("price_slider_slide",[c.values[0],c.values[1]])},change:function(b,c){a("body").trigger("price_slider_change",[c.values[0],c.values[1]])}})}); \ No newline at end of file diff --git a/assets/js/frontend/single-product.js b/assets/js/frontend/single-product.js index 2738d6bed71..cf002d40fed 100644 --- a/assets/js/frontend/single-product.js +++ b/assets/js/frontend/single-product.js @@ -1,66 +1,74 @@ -jQuery(document).ready(function($) { +jQuery( function( $ ) { // wc_single_product_params is required to continue, ensure the object exists - if (typeof wc_single_product_params === "undefined") + if ( typeof wc_single_product_params === 'undefined' ) { return false; + } // Tabs - $('.woocommerce-tabs .panel').hide(); + $( '.woocommerce-tabs .panel' ).hide(); - $('.woocommerce-tabs ul.tabs li a').click(function(){ + $( '.woocommerce-tabs ul.tabs li a' ).click( function() { - var $tab = $(this); - var $tabs_wrapper = $tab.closest('.woocommerce-tabs'); + var $tab = $( this ), + $tabs_wrapper = $tab.closest( '.woocommerce-tabs' ); - $('ul.tabs li', $tabs_wrapper).removeClass('active'); - $('div.panel', $tabs_wrapper).hide(); - $('div' + $tab.attr('href'), $tabs_wrapper).show(); - $tab.parent().addClass('active'); + $( 'ul.tabs li', $tabs_wrapper ).removeClass( 'active' ); + $( 'div.panel', $tabs_wrapper ).hide(); + $( 'div' + $tab.attr( 'href' ), $tabs_wrapper).show(); + $tab.parent().addClass( 'active' ); return false; }); - $('.woocommerce-tabs').each(function() { - var hash = window.location.hash; - if (hash.toLowerCase().indexOf("comment-") >= 0) { - $('ul.tabs li.reviews_tab a', $(this)).click(); + $( '.woocommerce-tabs' ).each( function() { + var hash = window.location.hash, + url = window.location.href, + tabs = $( this ); + + if ( hash.toLowerCase().indexOf( "comment-" ) >= 0 ) { + $('ul.tabs li.reviews_tab a', tabs ).click(); + + } else if ( url.indexOf( "comment-page-" ) > 0 || url.indexOf( "cpage=" ) > 0 ) { + $( 'ul.tabs li.reviews_tab a', $( this ) ).click(); + } else { - $('ul.tabs li:first a', $(this)).click(); + $( 'ul.tabs li:first a', tabs ).click(); } }); - $('a.woocommerce-review-link').click(function() { - $('.reviews_tab a').click(); + $( 'a.woocommerce-review-link' ).click( function() { + $( '.reviews_tab a' ).click(); return true; }); // Star ratings for comments - $('#rating').hide().before('

    12345

    '); + $( '#rating' ).hide().before( '

    12345

    ' ); - $('body') - .on( 'click', '#respond p.stars a', function(){ - var $star = $(this); - var $rating = $(this).closest('#respond').find('#rating'); + $( 'body' ) + .on( 'click', '#respond p.stars a', function() { + var $star = $( this ), + $rating = $( this ).closest( '#respond' ).find( '#rating' ); $rating.val( $star.text() ); - $star.siblings('a').removeClass('active'); - $star.addClass('active'); + $star.siblings( 'a' ).removeClass( 'active' ); + $star.addClass( 'active' ); return false; }) - .on( 'click', '#respond #submit', function(){ - var $rating = $(this).closest('#respond').find('#rating'); - var rating = $rating.val(); + .on( 'click', '#respond #submit', function() { + var $rating = $( this ).closest( '#respond' ).find( '#rating' ), + rating = $rating.val(); + + if ( $rating.size() > 0 && ! rating && wc_single_product_params.review_rating_required === 'yes' ) { + alert( wc_single_product_params.i18n_required_rating_text ); - if ( $rating.size() > 0 && ! rating && wc_single_product_params.review_rating_required == 'yes' ) { - alert(wc_single_product_params.i18n_required_rating_text); return false; } }); // prevent double form submission - $('form.cart').submit(function(){ - $(this).find(':submit').attr( 'disabled','disabled' ); + $( 'form.cart' ).submit( function() { + $( this ).find( ':submit' ).attr( 'disabled','disabled' ); }); - }); diff --git a/assets/js/frontend/single-product.min.js b/assets/js/frontend/single-product.min.js index ec318904057..84943d380ea 100644 --- a/assets/js/frontend/single-product.min.js +++ b/assets/js/frontend/single-product.min.js @@ -1 +1 @@ -jQuery(document).ready(function(e){if(typeof wc_single_product_params=="undefined")return!1;e(".woocommerce-tabs .panel").hide();e(".woocommerce-tabs ul.tabs li a").click(function(){var t=e(this),n=t.closest(".woocommerce-tabs");e("ul.tabs li",n).removeClass("active");e("div.panel",n).hide();e("div"+t.attr("href"),n).show();t.parent().addClass("active");return!1});e(".woocommerce-tabs").each(function(){var t=window.location.hash;t.toLowerCase().indexOf("comment-")>=0?e("ul.tabs li.reviews_tab a",e(this)).click():e("ul.tabs li:first a",e(this)).click()});e("a.woocommerce-review-link").click(function(){e(".reviews_tab a").click();return!0});e("#rating").hide().before('

    12345

    ');e("body").on("click","#respond p.stars a",function(){var t=e(this),n=e(this).closest("#respond").find("#rating");n.val(t.text());t.siblings("a").removeClass("active");t.addClass("active");return!1}).on("click","#respond #submit",function(){var t=e(this).closest("#respond").find("#rating"),n=t.val();if(t.size()>0&&!n&&wc_single_product_params.review_rating_required=="yes"){alert(wc_single_product_params.i18n_required_rating_text);return!1}});e("form.cart").submit(function(){e(this).find(":submit").attr("disabled","disabled")})}); \ No newline at end of file +jQuery(function(a){return"undefined"==typeof wc_single_product_params?!1:(a(".woocommerce-tabs .panel").hide(),a(".woocommerce-tabs ul.tabs li a").click(function(){var b=a(this),c=b.closest(".woocommerce-tabs");return a("ul.tabs li",c).removeClass("active"),a("div.panel",c).hide(),a("div"+b.attr("href"),c).show(),b.parent().addClass("active"),!1}),a(".woocommerce-tabs").each(function(){var b=window.location.hash,c=window.location.href,d=a(this);b.toLowerCase().indexOf("comment-")>=0?a("ul.tabs li.reviews_tab a",d).click():c.indexOf("comment-page-")>0||c.indexOf("cpage=")>0?a("ul.tabs li.reviews_tab a",a(this)).click():a("ul.tabs li:first a",d).click()}),a("a.woocommerce-review-link").click(function(){return a(".reviews_tab a").click(),!0}),a("#rating").hide().before('

    12345

    '),a("body").on("click","#respond p.stars a",function(){var b=a(this),c=a(this).closest("#respond").find("#rating");return c.val(b.text()),b.siblings("a").removeClass("active"),b.addClass("active"),!1}).on("click","#respond #submit",function(){var b=a(this).closest("#respond").find("#rating"),c=b.val();return b.size()>0&&!c&&"yes"===wc_single_product_params.review_rating_required?(alert(wc_single_product_params.i18n_required_rating_text),!1):void 0}),void a("form.cart").submit(function(){a(this).find(":submit").attr("disabled","disabled")}))}); \ No newline at end of file diff --git a/assets/js/frontend/woocommerce.js b/assets/js/frontend/woocommerce.js index a3806fe4d4d..77f0c4d3f31 100644 --- a/assets/js/frontend/woocommerce.js +++ b/assets/js/frontend/woocommerce.js @@ -1,57 +1,57 @@ -jQuery(document).ready(function($) { +jQuery( function( $ ) { // Orderby - $('.woocommerce-ordering').on( 'change', 'select.orderby', function() { - $(this).closest('form').submit(); + $( '.woocommerce-ordering' ).on( 'change', 'select.orderby', function() { + $( this ).closest( 'form' ).submit(); }); // Quantity buttons - $("div.quantity:not(.buttons_added), td.quantity:not(.buttons_added)").addClass('buttons_added').append('').prepend(''); + $( 'div.quantity:not(.buttons_added), td.quantity:not(.buttons_added)' ).addClass( 'buttons_added' ).append( '' ).prepend( '' ); // Target quantity inputs on product pages - $("input.qty:not(.product-quantity input.qty)").each(function(){ - var min = parseFloat( $(this).attr('min') ); + $( 'input.qty:not(.product-quantity input.qty)' ).each( function() { + var min = parseFloat( $( this ).attr( 'min' ) ); - if ( min && min > 0 && parseFloat( $(this).val() ) < min ) { - $(this).val( min ); + if ( min && min > 0 && parseFloat( $( this ).val() ) < min ) { + $( this ).val( min ); } }); - $(document).on( 'click', '.plus, .minus', function() { + $( document ).on( 'click', '.plus, .minus', function() { // Get values - var $qty = $(this).closest('.quantity').find(".qty"); - var currentVal = parseFloat( $qty.val() ); - var max = parseFloat( $qty.attr('max') ); - var min = parseFloat( $qty.attr('min') ); - var step = $qty.attr('step'); + var $qty = $( this ).closest( '.quantity' ).find( '.qty' ), + currentVal = parseFloat( $qty.val() ), + max = parseFloat( $qty.attr( 'max' ) ), + min = parseFloat( $qty.attr( 'min' ) ), + step = $qty.attr( 'step' ); - // Format values - if ( ! currentVal || currentVal == "" || currentVal == "NaN" ) currentVal = 0; - if ( max == "" || max == "NaN" ) max = ''; - if ( min == "" || min == "NaN" ) min = 0; - if ( step == 'any' || step == "" || step == undefined || parseFloat( step ) == "NaN" ) step = 1; + // Format values + if ( ! currentVal || currentVal === '' || currentVal === 'NaN' ) currentVal = 0; + if ( max === '' || max === 'NaN' ) max = ''; + if ( min === '' || min === 'NaN' ) min = 0; + if ( step === 'any' || step === '' || step === undefined || parseFloat( step ) === 'NaN' ) step = 1; - // Change the value - if ( $(this).is('.plus') ) { + // Change the value + if ( $( this ).is( '.plus' ) ) { - if ( max && ( max == currentVal || currentVal > max ) ) { - $qty.val( max ); - } else { - $qty.val( currentVal + parseFloat( step ) ); - } + if ( max && ( max == currentVal || currentVal > max ) ) { + $qty.val( max ); + } else { + $qty.val( currentVal + parseFloat( step ) ); + } - } else { + } else { - if ( min && ( min==currentVal || currentVal < min ) ) { - $qty.val( min ); - } else if ( currentVal > 0 ) { - $qty.val( currentVal - parseFloat( step ) ); - } + if ( min && ( min == currentVal || currentVal < min ) ) { + $qty.val( min ); + } else if ( currentVal > 0 ) { + $qty.val( currentVal - parseFloat( step ) ); + } - } + } - // Trigger change event - $qty.trigger('change'); + // Trigger change event + $qty.trigger( 'change' ); }); -}); \ No newline at end of file +}); diff --git a/assets/js/frontend/woocommerce.min.js b/assets/js/frontend/woocommerce.min.js index ed4a7faf79b..a086d9b4614 100644 --- a/assets/js/frontend/woocommerce.min.js +++ b/assets/js/frontend/woocommerce.min.js @@ -1 +1 @@ -jQuery(document).ready(function(e){e(".woocommerce-ordering").on("change","select.orderby",function(){e(this).closest("form").submit()});e("div.quantity:not(.buttons_added), td.quantity:not(.buttons_added)").addClass("buttons_added").append('').prepend('');e("input.qty:not(.product-quantity input.qty)").each(function(){var t=parseFloat(e(this).attr("min"));t&&t>0&&parseFloat(e(this).val())r)?t.val(r):t.val(n+parseFloat(s)):i&&(i==n||n0&&t.val(n-parseFloat(s));t.trigger("change")})}); \ No newline at end of file +jQuery(function(a){a(".woocommerce-ordering").on("change","select.orderby",function(){a(this).closest("form").submit()}),a("div.quantity:not(.buttons_added), td.quantity:not(.buttons_added)").addClass("buttons_added").append('').prepend(''),a("input.qty:not(.product-quantity input.qty)").each(function(){var b=parseFloat(a(this).attr("min"));b&&b>0&&parseFloat(a(this).val())d)?d:c+parseFloat(f)):e&&(e==c||e>c)?b.val(e):c>0&&b.val(c-parseFloat(f)),b.trigger("change")})}); \ No newline at end of file diff --git a/assets/js/jquery-payment/jquery.payment.js b/assets/js/jquery-payment/jquery.payment.js old mode 100755 new mode 100644 diff --git a/assets/js/prettyPhoto/jquery.prettyPhoto.init.js b/assets/js/prettyPhoto/jquery.prettyPhoto.init.js index 9c5693ccb54..7fb180e2f15 100644 --- a/assets/js/prettyPhoto/jquery.prettyPhoto.init.js +++ b/assets/js/prettyPhoto/jquery.prettyPhoto.init.js @@ -1,5 +1,5 @@ (function($) { -$(document).ready(function() { +$(function() { // Lightbox $("a.zoom").prettyPhoto({ @@ -20,4 +20,4 @@ $(document).ready(function() { }); }); -})(jQuery); \ No newline at end of file +})(jQuery); diff --git a/assets/js/prettyPhoto/jquery.prettyPhoto.init.min.js b/assets/js/prettyPhoto/jquery.prettyPhoto.init.min.js index 3b1544cc6bc..9584a8b7457 100644 --- a/assets/js/prettyPhoto/jquery.prettyPhoto.init.min.js +++ b/assets/js/prettyPhoto/jquery.prettyPhoto.init.min.js @@ -1 +1 @@ -(function(e){e(document).ready(function(){e("a.zoom").prettyPhoto({hook:"data-rel",social_tools:!1,theme:"pp_woocommerce",horizontal_padding:20,opacity:.8,deeplinking:!1});e("a[data-rel^='prettyPhoto']").prettyPhoto({hook:"data-rel",social_tools:!1,theme:"pp_woocommerce",horizontal_padding:20,opacity:.8,deeplinking:!1})})})(jQuery); \ No newline at end of file +(function(e){e(function(){e("a.zoom").prettyPhoto({hook:"data-rel",social_tools:!1,theme:"pp_woocommerce",horizontal_padding:20,opacity:.8,deeplinking:!1});e("a[data-rel^='prettyPhoto']").prettyPhoto({hook:"data-rel",social_tools:!1,theme:"pp_woocommerce",horizontal_padding:20,opacity:.8,deeplinking:!1})})})(jQuery); diff --git a/assets/js/prettyPhoto/jquery.prettyPhoto.js b/assets/js/prettyPhoto/jquery.prettyPhoto.js index daf8651a8d9..0a71d25cb32 100644 --- a/assets/js/prettyPhoto/jquery.prettyPhoto.js +++ b/assets/js/prettyPhoto/jquery.prettyPhoto.js @@ -30,7 +30,7 @@ deeplinking: true, /* Allow prettyPhoto to update the url to enable deeplinking. */ overlay_gallery: true, /* If set to true, a gallery will overlay the fullscreen image on mouse over */ overlay_gallery_max: 30, /* Maximum number of pictures in the overlay gallery */ - keyboard_shortcuts: false, /* Set to false if you open forms inside prettyPhoto */ + keyboard_shortcuts: true, /* Set to false if you open forms inside prettyPhoto */ changepicturecallback: function(){}, /* Called everytime an item is shown/changed */ callback: function(){}, /* Called when prettyPhoto is closed */ ie6_fallback: true, @@ -908,4 +908,4 @@ })(jQuery); -var pp_alreadyInitialized = false; // Used for the deep linking to make sure not to call the same function several times. +var pp_alreadyInitialized = false; // Used for the deep linking to make sure not to call the same function several times. \ No newline at end of file diff --git a/assets/js/prettyPhoto/jquery.prettyPhoto.min.js b/assets/js/prettyPhoto/jquery.prettyPhoto.min.js index 0de48e8be12..3f13c3090f4 100644 --- a/assets/js/prettyPhoto/jquery.prettyPhoto.min.js +++ b/assets/js/prettyPhoto/jquery.prettyPhoto.min.js @@ -3,4 +3,4 @@ Use: Lightbox clone for jQuery Author: Stephane Caron (http://www.no-margin-for-errors.com) Version: 3.1.5 -------------------------------------------------------------------------- */(function(e){function t(){var e=location.href;hashtag=e.indexOf("#prettyPhoto")!==-1?decodeURI(e.substring(e.indexOf("#prettyPhoto")+1,e.length)):!1;return hashtag}function n(){if(typeof theRel=="undefined")return;location.hash=theRel+"/"+rel_index+"/"}function r(){location.href.indexOf("#prettyPhoto")!==-1&&(location.hash="prettyPhoto")}function i(e,t){e=e.replace(/[\[]/,"\\[").replace(/[\]]/,"\\]");var n="[\\?&]"+e+"=([^&#]*)",r=new RegExp(n),i=r.exec(t);return i==null?"":i[1]}e.prettyPhoto={version:"3.1.5"};e.fn.prettyPhoto=function(s){function g(){e(".pp_loaderIcon").hide();projectedTop=scroll_pos.scrollTop+(d/2-a.containerHeight/2);projectedTop<0&&(projectedTop=0);$ppt.fadeTo(settings.animation_speed,1);$pp_pic_holder.find(".pp_content").animate({height:a.contentHeight,width:a.contentWidth},settings.animation_speed);$pp_pic_holder.animate({top:projectedTop,left:v/2-a.containerWidth/2<0?0:v/2-a.containerWidth/2,width:a.containerWidth},settings.animation_speed,function(){$pp_pic_holder.find(".pp_hoverContainer,#fullResImage").height(a.height).width(a.width);$pp_pic_holder.find(".pp_fade").fadeIn(settings.animation_speed);isSet&&S(pp_images[set_position])=="image"?$pp_pic_holder.find(".pp_hoverContainer").show():$pp_pic_holder.find(".pp_hoverContainer").hide();settings.allow_expand&&(a.resized?e("a.pp_expand,a.pp_contract").show():e("a.pp_expand").hide());settings.autoplay_slideshow&&!m&&!f&&e.prettyPhoto.startSlideshow();settings.changepicturecallback();f=!0});C();s.ajaxcallback()}function y(t){$pp_pic_holder.find("#pp_full_res object,#pp_full_res embed").css("visibility","hidden");$pp_pic_holder.find(".pp_fade").fadeOut(settings.animation_speed,function(){e(".pp_loaderIcon").show();t()})}function b(t){t>1?e(".pp_nav").show():e(".pp_nav").hide()}function w(e,t){resized=!1;E(e,t);imageWidth=e,imageHeight=t;if((p>v||h>d)&&doresize&&settings.allow_resize&&!u){resized=!0,fitting=!1;while(!fitting){if(p>v){imageWidth=v-200;imageHeight=t/e*imageWidth}else if(h>d){imageHeight=d-200;imageWidth=e/t*imageHeight}else fitting=!0;h=imageHeight,p=imageWidth}(p>v||h>d)&&w(p,h);E(imageWidth,imageHeight)}return{width:Math.floor(imageWidth),height:Math.floor(imageHeight),containerHeight:Math.floor(h),containerWidth:Math.floor(p)+settings.horizontal_padding*2,contentHeight:Math.floor(l),contentWidth:Math.floor(c),resized:resized}}function E(t,n){t=parseFloat(t);n=parseFloat(n);$pp_details=$pp_pic_holder.find(".pp_details");$pp_details.width(t);detailsHeight=parseFloat($pp_details.css("marginTop"))+parseFloat($pp_details.css("marginBottom"));$pp_details=$pp_details.clone().addClass(settings.theme).width(t).appendTo(e("body")).css({position:"absolute",top:-1e4});detailsHeight+=$pp_details.height();detailsHeight=detailsHeight<=34?36:detailsHeight;$pp_details.remove();$pp_title=$pp_pic_holder.find(".ppt");$pp_title.width(t);titleHeight=parseFloat($pp_title.css("marginTop"))+parseFloat($pp_title.css("marginBottom"));$pp_title=$pp_title.clone().appendTo(e("body")).css({position:"absolute",top:-1e4});titleHeight+=$pp_title.height();$pp_title.remove();l=n+detailsHeight;c=t;h=l+titleHeight+$pp_pic_holder.find(".pp_top").height()+$pp_pic_holder.find(".pp_bottom").height();p=t}function S(e){return e.match(/youtube\.com\/watch/i)||e.match(/youtu\.be/i)?"youtube":e.match(/vimeo\.com/i)?"vimeo":e.match(/\b.mov\b/i)?"quicktime":e.match(/\b.swf\b/i)?"flash":e.match(/\biframe=true\b/i)?"iframe":e.match(/\bajax=true\b/i)?"ajax":e.match(/\bcustom=true\b/i)?"custom":e.substr(0,1)=="#"?"inline":"image"}function x(){if(doresize&&typeof $pp_pic_holder!="undefined"){scroll_pos=T();contentHeight=$pp_pic_holder.height(),contentwidth=$pp_pic_holder.width();projectedTop=d/2+scroll_pos.scrollTop-contentHeight/2;projectedTop<0&&(projectedTop=0);if(contentHeight>d)return;$pp_pic_holder.css({top:projectedTop,left:v/2+scroll_pos.scrollLeft-contentwidth/2})}}function T(){if(self.pageYOffset)return{scrollTop:self.pageYOffset,scrollLeft:self.pageXOffset};if(document.documentElement&&document.documentElement.scrollTop)return{scrollTop:document.documentElement.scrollTop,scrollLeft:document.documentElement.scrollLeft};if(document.body)return{scrollTop:document.body.scrollTop,scrollLeft:document.body.scrollLeft}}function N(){d=e(window).height(),v=e(window).width();typeof $pp_overlay!="undefined"&&$pp_overlay.height(e(document).height()).width(v)}function C(){if(isSet&&settings.overlay_gallery&&S(pp_images[set_position])=="image"){itemWidth=57;navWidth=settings.theme=="facebook"||settings.theme=="pp_default"?50:30;itemsPerPage=Math.floor((a.containerWidth-100-navWidth)/itemWidth);itemsPerPage=itemsPerPage"}toInject=settings.gallery_markup.replace(/{gallery}/g,toInject);$pp_pic_holder.find("#pp_full_res").after(toInject);$pp_gallery=e(".pp_pic_holder .pp_gallery"),$pp_gallery_li=$pp_gallery.find("li");$pp_gallery.find(".pp_arrow_next").click(function(){e.prettyPhoto.changeGalleryPage("next");e.prettyPhoto.stopSlideshow();return!1});$pp_gallery.find(".pp_arrow_previous").click(function(){e.prettyPhoto.changeGalleryPage("previous");e.prettyPhoto.stopSlideshow();return!1});$pp_pic_holder.find(".pp_content").hover(function(){$pp_pic_holder.find(".pp_gallery:not(.disabled)").fadeIn()},function(){$pp_pic_holder.find(".pp_gallery:not(.disabled)").fadeOut()});itemWidth=57;$pp_gallery_li.each(function(t){e(this).find("a").click(function(){e.prettyPhoto.changePage(t);e.prettyPhoto.stopSlideshow();return!1})})}if(settings.slideshow){$pp_pic_holder.find(".pp_nav").prepend('Play');$pp_pic_holder.find(".pp_nav .pp_play").click(function(){e.prettyPhoto.startSlideshow();return!1})}$pp_pic_holder.attr("class","pp_pic_holder "+settings.theme);$pp_overlay.css({opacity:0,height:e(document).height(),width:e(window).width()}).bind("click",function(){settings.modal||e.prettyPhoto.close()});e("a.pp_close").bind("click",function(){e.prettyPhoto.close();return!1});settings.allow_expand&&e("a.pp_expand").bind("click",function(t){if(e(this).hasClass("pp_expand")){e(this).removeClass("pp_expand").addClass("pp_contract");doresize=!1}else{e(this).removeClass("pp_contract").addClass("pp_expand");doresize=!0}y(function(){e.prettyPhoto.open()});return!1});$pp_pic_holder.find(".pp_previous, .pp_nav .pp_arrow_previous").bind("click",function(){e.prettyPhoto.changePage("previous");e.prettyPhoto.stopSlideshow();return!1});$pp_pic_holder.find(".pp_next, .pp_nav .pp_arrow_next").bind("click",function(){e.prettyPhoto.changePage("next");e.prettyPhoto.stopSlideshow();return!1});x()}s=jQuery.extend({hook:"rel",animation_speed:"fast",ajaxcallback:function(){},slideshow:5e3,autoplay_slideshow:!1,opacity:.8,show_title:!0,allow_resize:!0,allow_expand:!0,default_width:500,default_height:344,counter_separator_label:"/",theme:"pp_default",horizontal_padding:20,hideflash:!1,wmode:"opaque",autoplay:!0,modal:!1,deeplinking:!0,overlay_gallery:!0,overlay_gallery_max:30,keyboard_shortcuts:!1,changepicturecallback:function(){},callback:function(){},ie6_fallback:!0,markup:'
     
    ',gallery_markup:'',image_markup:'',flash_markup:'',quicktime_markup:'',iframe_markup:'',inline_markup:'
    {content}
    ',custom_markup:"",social_tools:''},s);var o=this,u=!1,a,f,l,c,h,p,d=e(window).height(),v=e(window).width(),m;doresize=!0,scroll_pos=T();e(window).unbind("resize.prettyphoto").bind("resize.prettyphoto",function(){x();N()});s.keyboard_shortcuts&&e(document).unbind("keydown.prettyphoto").bind("keydown.prettyphoto",function(t){if(typeof $pp_pic_holder!="undefined"&&$pp_pic_holder.is(":visible"))switch(t.keyCode){case 37:e.prettyPhoto.changePage("previous");t.preventDefault();break;case 39:e.prettyPhoto.changePage("next");t.preventDefault();break;case 27:settings.modal||e.prettyPhoto.close();t.preventDefault()}});e.prettyPhoto.initialize=function(){settings=s;settings.theme=="pp_default"&&(settings.horizontal_padding=16);theRel=e(this).attr(settings.hook);galleryRegExp=/\[(?:.*)\]/;isSet=galleryRegExp.exec(theRel)?!0:!1;pp_images=isSet?jQuery.map(o,function(t,n){if(e(t).attr(settings.hook).indexOf(theRel)!=-1)return e(t).attr("href")}):e.makeArray(e(this).attr("href"));pp_titles=isSet?jQuery.map(o,function(t,n){if(e(t).attr(settings.hook).indexOf(theRel)!=-1)return e(t).find("img").attr("alt")?e(t).find("img").attr("alt"):""}):e.makeArray(e(this).find("img").attr("alt"));pp_descriptions=isSet?jQuery.map(o,function(t,n){if(e(t).attr(settings.hook).indexOf(theRel)!=-1)return e(t).attr("title")?e(t).attr("title"):""}):e.makeArray(e(this).attr("title"));pp_images.length>settings.overlay_gallery_max&&(settings.overlay_gallery=!1);set_position=jQuery.inArray(e(this).attr("href"),pp_images);rel_index=isSet?set_position:e("a["+settings.hook+"^='"+theRel+"']").index(e(this));k(this);settings.allow_resize&&e(window).bind("scroll.prettyphoto",function(){x()});e.prettyPhoto.open();return!1};e.prettyPhoto.open=function(t){if(typeof settings=="undefined"){settings=s;pp_images=e.makeArray(arguments[0]);pp_titles=arguments[1]?e.makeArray(arguments[1]):e.makeArray("");pp_descriptions=arguments[2]?e.makeArray(arguments[2]):e.makeArray("");isSet=pp_images.length>1?!0:!1;set_position=arguments[3]?arguments[3]:0;k(t.target)}settings.hideflash&&e("object,embed,iframe[src*=youtube],iframe[src*=vimeo]").css("visibility","hidden");b(e(pp_images).size());e(".pp_loaderIcon").show();settings.deeplinking&&n();if(settings.social_tools){facebook_like_link=settings.social_tools.replace("{location_href}",encodeURIComponent(location.href));$pp_pic_holder.find(".pp_social").html(facebook_like_link)}$ppt.is(":hidden")&&$ppt.css("opacity",0).show();$pp_overlay.show().fadeTo(settings.animation_speed,settings.opacity);$pp_pic_holder.find(".currentTextHolder").text(set_position+1+settings.counter_separator_label+e(pp_images).size());typeof pp_descriptions[set_position]!="undefined"&&pp_descriptions[set_position]!=""?$pp_pic_holder.find(".pp_description").show().html(unescape(pp_descriptions[set_position])):$pp_pic_holder.find(".pp_description").hide();movie_width=parseFloat(i("width",pp_images[set_position]))?i("width",pp_images[set_position]):settings.default_width.toString();movie_height=parseFloat(i("height",pp_images[set_position]))?i("height",pp_images[set_position]):settings.default_height.toString();u=!1;if(movie_height.indexOf("%")!=-1){movie_height=parseFloat(e(window).height()*parseFloat(movie_height)/100-150);u=!0}if(movie_width.indexOf("%")!=-1){movie_width=parseFloat(e(window).width()*parseFloat(movie_width)/100-150);u=!0}$pp_pic_holder.fadeIn(function(){settings.show_title&&pp_titles[set_position]!=""&&typeof pp_titles[set_position]!="undefined"?$ppt.html(unescape(pp_titles[set_position])):$ppt.html(" ");imgPreloader="";skipInjection=!1;switch(S(pp_images[set_position])){case"image":imgPreloader=new Image;nextImage=new Image;isSet&&set_position0&&(movie_id=movie_id.substr(0,movie_id.indexOf("?")));movie_id.indexOf("&")>0&&(movie_id=movie_id.substr(0,movie_id.indexOf("&")))}movie="http://www.youtube.com/embed/"+movie_id;i("rel",pp_images[set_position])?movie+="?rel="+i("rel",pp_images[set_position]):movie+="?rel=1";settings.autoplay&&(movie+="&autoplay=1");toInject=settings.iframe_markup.replace(/{width}/g,a.width).replace(/{height}/g,a.height).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,movie);break;case"vimeo":a=w(movie_width,movie_height);movie_id=pp_images[set_position];var t=/http(s?):\/\/(www\.)?vimeo.com\/(\d+)/,n=movie_id.match(t);movie="http://player.vimeo.com/video/"+n[3]+"?title=0&byline=0&portrait=0";settings.autoplay&&(movie+="&autoplay=1;");vimeo_width=a.width+"/embed/?moog_width="+a.width;toInject=settings.iframe_markup.replace(/{width}/g,vimeo_width).replace(/{height}/g,a.height).replace(/{path}/g,movie);break;case"quicktime":a=w(movie_width,movie_height);a.height+=15;a.contentHeight+=15;a.containerHeight+=15;toInject=settings.quicktime_markup.replace(/{width}/g,a.width).replace(/{height}/g,a.height).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,pp_images[set_position]).replace(/{autoplay}/g,settings.autoplay);break;case"flash":a=w(movie_width,movie_height);flash_vars=pp_images[set_position];flash_vars=flash_vars.substring(pp_images[set_position].indexOf("flashvars")+10,pp_images[set_position].length);filename=pp_images[set_position];filename=filename.substring(0,filename.indexOf("?"));toInject=settings.flash_markup.replace(/{width}/g,a.width).replace(/{height}/g,a.height).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,filename+"?"+flash_vars);break;case"iframe":a=w(movie_width,movie_height);frame_url=pp_images[set_position];frame_url=frame_url.substr(0,frame_url.indexOf("iframe")-1);toInject=settings.iframe_markup.replace(/{width}/g,a.width).replace(/{height}/g,a.height).replace(/{path}/g,frame_url);break;case"ajax":doresize=!1;a=w(movie_width,movie_height);doresize=!0;skipInjection=!0;e.get(pp_images[set_position],function(e){toInject=settings.inline_markup.replace(/{content}/g,e);$pp_pic_holder.find("#pp_full_res")[0].innerHTML=toInject;g()});break;case"custom":a=w(movie_width,movie_height);toInject=settings.custom_markup;break;case"inline":myClone=e(pp_images[set_position]).clone().append('
    ').css({width:settings.default_width}).wrapInner('
    ').appendTo(e("body")).show();doresize=!1;a=w(e(myClone).width(),e(myClone).height());doresize=!0;e(myClone).remove();toInject=settings.inline_markup.replace(/{content}/g,e(pp_images[set_position]).html())}if(!imgPreloader&&!skipInjection){$pp_pic_holder.find("#pp_full_res")[0].innerHTML=toInject;g()}});return!1};e.prettyPhoto.changePage=function(t){currentGalleryPage=0;if(t=="previous"){set_position--;set_position<0&&(set_position=e(pp_images).size()-1)}else if(t=="next"){set_position++;set_position>e(pp_images).size()-1&&(set_position=0)}else set_position=t;rel_index=set_position;doresize||(doresize=!0);settings.allow_expand&&e(".pp_contract").removeClass("pp_contract").addClass("pp_expand");y(function(){e.prettyPhoto.open()})};e.prettyPhoto.changeGalleryPage=function(e){if(e=="next"){currentGalleryPage++;currentGalleryPage>totalPage&&(currentGalleryPage=0)}else if(e=="previous"){currentGalleryPage--;currentGalleryPage<0&&(currentGalleryPage=totalPage)}else currentGalleryPage=e;slide_speed=e=="next"||e=="previous"?settings.animation_speed:0;slide_to=currentGalleryPage*itemsPerPage*itemWidth;$pp_gallery.find("ul").animate({left:-slide_to},slide_speed)};e.prettyPhoto.startSlideshow=function(){if(typeof m=="undefined"){$pp_pic_holder.find(".pp_play").unbind("click").removeClass("pp_play").addClass("pp_pause").click(function(){e.prettyPhoto.stopSlideshow();return!1});m=setInterval(e.prettyPhoto.startSlideshow,settings.slideshow)}else e.prettyPhoto.changePage("next")};e.prettyPhoto.stopSlideshow=function(){$pp_pic_holder.find(".pp_pause").unbind("click").removeClass("pp_pause").addClass("pp_play").click(function(){e.prettyPhoto.startSlideshow();return!1});clearInterval(m);m=undefined};e.prettyPhoto.close=function(){if($pp_overlay.is(":animated"))return;e.prettyPhoto.stopSlideshow();$pp_pic_holder.stop().find("object,embed").css("visibility","hidden");e("div.pp_pic_holder,div.ppt,.pp_fade").fadeOut(settings.animation_speed,function(){e(this).remove()});$pp_overlay.fadeOut(settings.animation_speed,function(){settings.hideflash&&e("object,embed,iframe[src*=youtube],iframe[src*=vimeo]").css("visibility","visible");e(this).remove();e(window).unbind("scroll.prettyphoto");r();settings.callback();doresize=!0;f=!1;delete settings})};if(!pp_alreadyInitialized&&t()){pp_alreadyInitialized=!0;hashIndex=t();hashRel=hashIndex;hashIndex=hashIndex.substring(hashIndex.indexOf("/")+1,hashIndex.length-1);hashRel=hashRel.substring(0,hashRel.indexOf("/"));setTimeout(function(){e("a["+s.hook+"^='"+hashRel+"']:eq("+hashIndex+")").trigger("click")},50)}return this.unbind("click.prettyphoto").bind("click.prettyphoto",e.prettyPhoto.initialize)}})(jQuery);var pp_alreadyInitialized=!1; \ No newline at end of file +------------------------------------------------------------------------- */(function(e){function t(){var e=location.href;hashtag=e.indexOf("#prettyPhoto")!==-1?decodeURI(e.substring(e.indexOf("#prettyPhoto")+1,e.length)):!1;return hashtag}function n(){if(typeof theRel=="undefined")return;location.hash=theRel+"/"+rel_index+"/"}function r(){location.href.indexOf("#prettyPhoto")!==-1&&(location.hash="prettyPhoto")}function i(e,t){e=e.replace(/[\[]/,"\\[").replace(/[\]]/,"\\]");var n="[\\?&]"+e+"=([^&#]*)",r=new RegExp(n),i=r.exec(t);return i==null?"":i[1]}e.prettyPhoto={version:"3.1.5"};e.fn.prettyPhoto=function(s){function g(){e(".pp_loaderIcon").hide();projectedTop=scroll_pos.scrollTop+(d/2-a.containerHeight/2);projectedTop<0&&(projectedTop=0);$ppt.fadeTo(settings.animation_speed,1);$pp_pic_holder.find(".pp_content").animate({height:a.contentHeight,width:a.contentWidth},settings.animation_speed);$pp_pic_holder.animate({top:projectedTop,left:v/2-a.containerWidth/2<0?0:v/2-a.containerWidth/2,width:a.containerWidth},settings.animation_speed,function(){$pp_pic_holder.find(".pp_hoverContainer,#fullResImage").height(a.height).width(a.width);$pp_pic_holder.find(".pp_fade").fadeIn(settings.animation_speed);isSet&&S(pp_images[set_position])=="image"?$pp_pic_holder.find(".pp_hoverContainer").show():$pp_pic_holder.find(".pp_hoverContainer").hide();settings.allow_expand&&(a.resized?e("a.pp_expand,a.pp_contract").show():e("a.pp_expand").hide());settings.autoplay_slideshow&&!m&&!f&&e.prettyPhoto.startSlideshow();settings.changepicturecallback();f=!0});C();s.ajaxcallback()}function y(t){$pp_pic_holder.find("#pp_full_res object,#pp_full_res embed").css("visibility","hidden");$pp_pic_holder.find(".pp_fade").fadeOut(settings.animation_speed,function(){e(".pp_loaderIcon").show();t()})}function b(t){t>1?e(".pp_nav").show():e(".pp_nav").hide()}function w(e,t){resized=!1;E(e,t);imageWidth=e,imageHeight=t;if((p>v||h>d)&&doresize&&settings.allow_resize&&!u){resized=!0,fitting=!1;while(!fitting){if(p>v){imageWidth=v-200;imageHeight=t/e*imageWidth}else if(h>d){imageHeight=d-200;imageWidth=e/t*imageHeight}else fitting=!0;h=imageHeight,p=imageWidth}(p>v||h>d)&&w(p,h);E(imageWidth,imageHeight)}return{width:Math.floor(imageWidth),height:Math.floor(imageHeight),containerHeight:Math.floor(h),containerWidth:Math.floor(p)+settings.horizontal_padding*2,contentHeight:Math.floor(l),contentWidth:Math.floor(c),resized:resized}}function E(t,n){t=parseFloat(t);n=parseFloat(n);$pp_details=$pp_pic_holder.find(".pp_details");$pp_details.width(t);detailsHeight=parseFloat($pp_details.css("marginTop"))+parseFloat($pp_details.css("marginBottom"));$pp_details=$pp_details.clone().addClass(settings.theme).width(t).appendTo(e("body")).css({position:"absolute",top:-1e4});detailsHeight+=$pp_details.height();detailsHeight=detailsHeight<=34?36:detailsHeight;$pp_details.remove();$pp_title=$pp_pic_holder.find(".ppt");$pp_title.width(t);titleHeight=parseFloat($pp_title.css("marginTop"))+parseFloat($pp_title.css("marginBottom"));$pp_title=$pp_title.clone().appendTo(e("body")).css({position:"absolute",top:-1e4});titleHeight+=$pp_title.height();$pp_title.remove();l=n+detailsHeight;c=t;h=l+titleHeight+$pp_pic_holder.find(".pp_top").height()+$pp_pic_holder.find(".pp_bottom").height();p=t}function S(e){return e.match(/youtube\.com\/watch/i)||e.match(/youtu\.be/i)?"youtube":e.match(/vimeo\.com/i)?"vimeo":e.match(/\b.mov\b/i)?"quicktime":e.match(/\b.swf\b/i)?"flash":e.match(/\biframe=true\b/i)?"iframe":e.match(/\bajax=true\b/i)?"ajax":e.match(/\bcustom=true\b/i)?"custom":e.substr(0,1)=="#"?"inline":"image"}function x(){if(doresize&&typeof $pp_pic_holder!="undefined"){scroll_pos=T();contentHeight=$pp_pic_holder.height(),contentwidth=$pp_pic_holder.width();projectedTop=d/2+scroll_pos.scrollTop-contentHeight/2;projectedTop<0&&(projectedTop=0);if(contentHeight>d)return;$pp_pic_holder.css({top:projectedTop,left:v/2+scroll_pos.scrollLeft-contentwidth/2})}}function T(){if(self.pageYOffset)return{scrollTop:self.pageYOffset,scrollLeft:self.pageXOffset};if(document.documentElement&&document.documentElement.scrollTop)return{scrollTop:document.documentElement.scrollTop,scrollLeft:document.documentElement.scrollLeft};if(document.body)return{scrollTop:document.body.scrollTop,scrollLeft:document.body.scrollLeft}}function N(){d=e(window).height(),v=e(window).width();typeof $pp_overlay!="undefined"&&$pp_overlay.height(e(document).height()).width(v)}function C(){if(isSet&&settings.overlay_gallery&&S(pp_images[set_position])=="image"){itemWidth=57;navWidth=settings.theme=="facebook"||settings.theme=="pp_default"?50:30;itemsPerPage=Math.floor((a.containerWidth-100-navWidth)/itemWidth);itemsPerPage=itemsPerPage"}toInject=settings.gallery_markup.replace(/{gallery}/g,toInject);$pp_pic_holder.find("#pp_full_res").after(toInject);$pp_gallery=e(".pp_pic_holder .pp_gallery"),$pp_gallery_li=$pp_gallery.find("li");$pp_gallery.find(".pp_arrow_next").click(function(){e.prettyPhoto.changeGalleryPage("next");e.prettyPhoto.stopSlideshow();return!1});$pp_gallery.find(".pp_arrow_previous").click(function(){e.prettyPhoto.changeGalleryPage("previous");e.prettyPhoto.stopSlideshow();return!1});$pp_pic_holder.find(".pp_content").hover(function(){$pp_pic_holder.find(".pp_gallery:not(.disabled)").fadeIn()},function(){$pp_pic_holder.find(".pp_gallery:not(.disabled)").fadeOut()});itemWidth=57;$pp_gallery_li.each(function(t){e(this).find("a").click(function(){e.prettyPhoto.changePage(t);e.prettyPhoto.stopSlideshow();return!1})})}if(settings.slideshow){$pp_pic_holder.find(".pp_nav").prepend('Play');$pp_pic_holder.find(".pp_nav .pp_play").click(function(){e.prettyPhoto.startSlideshow();return!1})}$pp_pic_holder.attr("class","pp_pic_holder "+settings.theme);$pp_overlay.css({opacity:0,height:e(document).height(),width:e(window).width()}).bind("click",function(){settings.modal||e.prettyPhoto.close()});e("a.pp_close").bind("click",function(){e.prettyPhoto.close();return!1});settings.allow_expand&&e("a.pp_expand").bind("click",function(t){if(e(this).hasClass("pp_expand")){e(this).removeClass("pp_expand").addClass("pp_contract");doresize=!1}else{e(this).removeClass("pp_contract").addClass("pp_expand");doresize=!0}y(function(){e.prettyPhoto.open()});return!1});$pp_pic_holder.find(".pp_previous, .pp_nav .pp_arrow_previous").bind("click",function(){e.prettyPhoto.changePage("previous");e.prettyPhoto.stopSlideshow();return!1});$pp_pic_holder.find(".pp_next, .pp_nav .pp_arrow_next").bind("click",function(){e.prettyPhoto.changePage("next");e.prettyPhoto.stopSlideshow();return!1});x()}s=jQuery.extend({hook:"rel",animation_speed:"fast",ajaxcallback:function(){},slideshow:5e3,autoplay_slideshow:!1,opacity:.8,show_title:!0,allow_resize:!0,allow_expand:!0,default_width:500,default_height:344,counter_separator_label:"/",theme:"pp_default",horizontal_padding:20,hideflash:!1,wmode:"opaque",autoplay:!0,modal:!1,deeplinking:!0,overlay_gallery:!0,overlay_gallery_max:30,keyboard_shortcuts:!0,changepicturecallback:function(){},callback:function(){},ie6_fallback:!0,markup:'
     
    ',gallery_markup:'',image_markup:'',flash_markup:'',quicktime_markup:'',iframe_markup:'',inline_markup:'
    {content}
    ',custom_markup:"",social_tools:''},s);var o=this,u=!1,a,f,l,c,h,p,d=e(window).height(),v=e(window).width(),m;doresize=!0,scroll_pos=T();e(window).unbind("resize.prettyphoto").bind("resize.prettyphoto",function(){x();N()});s.keyboard_shortcuts&&e(document).unbind("keydown.prettyphoto").bind("keydown.prettyphoto",function(t){if(typeof $pp_pic_holder!="undefined"&&$pp_pic_holder.is(":visible"))switch(t.keyCode){case 37:e.prettyPhoto.changePage("previous");t.preventDefault();break;case 39:e.prettyPhoto.changePage("next");t.preventDefault();break;case 27:settings.modal||e.prettyPhoto.close();t.preventDefault()}});e.prettyPhoto.initialize=function(){settings=s;settings.theme=="pp_default"&&(settings.horizontal_padding=16);theRel=e(this).attr(settings.hook);galleryRegExp=/\[(?:.*)\]/;isSet=galleryRegExp.exec(theRel)?!0:!1;pp_images=isSet?jQuery.map(o,function(t,n){if(e(t).attr(settings.hook).indexOf(theRel)!=-1)return e(t).attr("href")}):e.makeArray(e(this).attr("href"));pp_titles=isSet?jQuery.map(o,function(t,n){if(e(t).attr(settings.hook).indexOf(theRel)!=-1)return e(t).find("img").attr("alt")?e(t).find("img").attr("alt"):""}):e.makeArray(e(this).find("img").attr("alt"));pp_descriptions=isSet?jQuery.map(o,function(t,n){if(e(t).attr(settings.hook).indexOf(theRel)!=-1)return e(t).attr("title")?e(t).attr("title"):""}):e.makeArray(e(this).attr("title"));pp_images.length>settings.overlay_gallery_max&&(settings.overlay_gallery=!1);set_position=jQuery.inArray(e(this).attr("href"),pp_images);rel_index=isSet?set_position:e("a["+settings.hook+"^='"+theRel+"']").index(e(this));k(this);settings.allow_resize&&e(window).bind("scroll.prettyphoto",function(){x()});e.prettyPhoto.open();return!1};e.prettyPhoto.open=function(t){if(typeof settings=="undefined"){settings=s;pp_images=e.makeArray(arguments[0]);pp_titles=arguments[1]?e.makeArray(arguments[1]):e.makeArray("");pp_descriptions=arguments[2]?e.makeArray(arguments[2]):e.makeArray("");isSet=pp_images.length>1?!0:!1;set_position=arguments[3]?arguments[3]:0;k(t.target)}settings.hideflash&&e("object,embed,iframe[src*=youtube],iframe[src*=vimeo]").css("visibility","hidden");b(e(pp_images).size());e(".pp_loaderIcon").show();settings.deeplinking&&n();if(settings.social_tools){facebook_like_link=settings.social_tools.replace("{location_href}",encodeURIComponent(location.href));$pp_pic_holder.find(".pp_social").html(facebook_like_link)}$ppt.is(":hidden")&&$ppt.css("opacity",0).show();$pp_overlay.show().fadeTo(settings.animation_speed,settings.opacity);$pp_pic_holder.find(".currentTextHolder").text(set_position+1+settings.counter_separator_label+e(pp_images).size());typeof pp_descriptions[set_position]!="undefined"&&pp_descriptions[set_position]!=""?$pp_pic_holder.find(".pp_description").show().html(unescape(pp_descriptions[set_position])):$pp_pic_holder.find(".pp_description").hide();movie_width=parseFloat(i("width",pp_images[set_position]))?i("width",pp_images[set_position]):settings.default_width.toString();movie_height=parseFloat(i("height",pp_images[set_position]))?i("height",pp_images[set_position]):settings.default_height.toString();u=!1;if(movie_height.indexOf("%")!=-1){movie_height=parseFloat(e(window).height()*parseFloat(movie_height)/100-150);u=!0}if(movie_width.indexOf("%")!=-1){movie_width=parseFloat(e(window).width()*parseFloat(movie_width)/100-150);u=!0}$pp_pic_holder.fadeIn(function(){settings.show_title&&pp_titles[set_position]!=""&&typeof pp_titles[set_position]!="undefined"?$ppt.html(unescape(pp_titles[set_position])):$ppt.html(" ");imgPreloader="";skipInjection=!1;switch(S(pp_images[set_position])){case"image":imgPreloader=new Image;nextImage=new Image;isSet&&set_position0&&(movie_id=movie_id.substr(0,movie_id.indexOf("?")));movie_id.indexOf("&")>0&&(movie_id=movie_id.substr(0,movie_id.indexOf("&")))}movie="http://www.youtube.com/embed/"+movie_id;i("rel",pp_images[set_position])?movie+="?rel="+i("rel",pp_images[set_position]):movie+="?rel=1";settings.autoplay&&(movie+="&autoplay=1");toInject=settings.iframe_markup.replace(/{width}/g,a.width).replace(/{height}/g,a.height).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,movie);break;case"vimeo":a=w(movie_width,movie_height);movie_id=pp_images[set_position];var t=/http(s?):\/\/(www\.)?vimeo.com\/(\d+)/,n=movie_id.match(t);movie="http://player.vimeo.com/video/"+n[3]+"?title=0&byline=0&portrait=0";settings.autoplay&&(movie+="&autoplay=1;");vimeo_width=a.width+"/embed/?moog_width="+a.width;toInject=settings.iframe_markup.replace(/{width}/g,vimeo_width).replace(/{height}/g,a.height).replace(/{path}/g,movie);break;case"quicktime":a=w(movie_width,movie_height);a.height+=15;a.contentHeight+=15;a.containerHeight+=15;toInject=settings.quicktime_markup.replace(/{width}/g,a.width).replace(/{height}/g,a.height).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,pp_images[set_position]).replace(/{autoplay}/g,settings.autoplay);break;case"flash":a=w(movie_width,movie_height);flash_vars=pp_images[set_position];flash_vars=flash_vars.substring(pp_images[set_position].indexOf("flashvars")+10,pp_images[set_position].length);filename=pp_images[set_position];filename=filename.substring(0,filename.indexOf("?"));toInject=settings.flash_markup.replace(/{width}/g,a.width).replace(/{height}/g,a.height).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,filename+"?"+flash_vars);break;case"iframe":a=w(movie_width,movie_height);frame_url=pp_images[set_position];frame_url=frame_url.substr(0,frame_url.indexOf("iframe")-1);toInject=settings.iframe_markup.replace(/{width}/g,a.width).replace(/{height}/g,a.height).replace(/{path}/g,frame_url);break;case"ajax":doresize=!1;a=w(movie_width,movie_height);doresize=!0;skipInjection=!0;e.get(pp_images[set_position],function(e){toInject=settings.inline_markup.replace(/{content}/g,e);$pp_pic_holder.find("#pp_full_res")[0].innerHTML=toInject;g()});break;case"custom":a=w(movie_width,movie_height);toInject=settings.custom_markup;break;case"inline":myClone=e(pp_images[set_position]).clone().append('
    ').css({width:settings.default_width}).wrapInner('
    ').appendTo(e("body")).show();doresize=!1;a=w(e(myClone).width(),e(myClone).height());doresize=!0;e(myClone).remove();toInject=settings.inline_markup.replace(/{content}/g,e(pp_images[set_position]).html())}if(!imgPreloader&&!skipInjection){$pp_pic_holder.find("#pp_full_res")[0].innerHTML=toInject;g()}});return!1};e.prettyPhoto.changePage=function(t){currentGalleryPage=0;if(t=="previous"){set_position--;set_position<0&&(set_position=e(pp_images).size()-1)}else if(t=="next"){set_position++;set_position>e(pp_images).size()-1&&(set_position=0)}else set_position=t;rel_index=set_position;doresize||(doresize=!0);settings.allow_expand&&e(".pp_contract").removeClass("pp_contract").addClass("pp_expand");y(function(){e.prettyPhoto.open()})};e.prettyPhoto.changeGalleryPage=function(e){if(e=="next"){currentGalleryPage++;currentGalleryPage>totalPage&&(currentGalleryPage=0)}else if(e=="previous"){currentGalleryPage--;currentGalleryPage<0&&(currentGalleryPage=totalPage)}else currentGalleryPage=e;slide_speed=e=="next"||e=="previous"?settings.animation_speed:0;slide_to=currentGalleryPage*itemsPerPage*itemWidth;$pp_gallery.find("ul").animate({left:-slide_to},slide_speed)};e.prettyPhoto.startSlideshow=function(){if(typeof m=="undefined"){$pp_pic_holder.find(".pp_play").unbind("click").removeClass("pp_play").addClass("pp_pause").click(function(){e.prettyPhoto.stopSlideshow();return!1});m=setInterval(e.prettyPhoto.startSlideshow,settings.slideshow)}else e.prettyPhoto.changePage("next")};e.prettyPhoto.stopSlideshow=function(){$pp_pic_holder.find(".pp_pause").unbind("click").removeClass("pp_pause").addClass("pp_play").click(function(){e.prettyPhoto.startSlideshow();return!1});clearInterval(m);m=undefined};e.prettyPhoto.close=function(){if($pp_overlay.is(":animated"))return;e.prettyPhoto.stopSlideshow();$pp_pic_holder.stop().find("object,embed").css("visibility","hidden");e("div.pp_pic_holder,div.ppt,.pp_fade").fadeOut(settings.animation_speed,function(){e(this).remove()});$pp_overlay.fadeOut(settings.animation_speed,function(){settings.hideflash&&e("object,embed,iframe[src*=youtube],iframe[src*=vimeo]").css("visibility","visible");e(this).remove();e(window).unbind("scroll.prettyphoto");r();settings.callback();doresize=!0;f=!1;delete settings})};if(!pp_alreadyInitialized&&t()){pp_alreadyInitialized=!0;hashIndex=t();hashRel=hashIndex;hashIndex=hashIndex.substring(hashIndex.indexOf("/")+1,hashIndex.length-1);hashRel=hashRel.substring(0,hashRel.indexOf("/"));setTimeout(function(){e("a["+s.hook+"^='"+hashRel+"']:eq("+hashIndex+")").trigger("click")},50)}return this.unbind("click.prettyphoto").bind("click.prettyphoto",e.prettyPhoto.initialize)}})(jQuery);var pp_alreadyInitialized=!1; \ No newline at end of file diff --git a/assets/js/zeroclipboard/ZeroClipboard.swf b/assets/js/zeroclipboard/ZeroClipboard.swf new file mode 100644 index 00000000000..33294b501f4 Binary files /dev/null and b/assets/js/zeroclipboard/ZeroClipboard.swf differ diff --git a/assets/js/zeroclipboard/jquery.zeroclipboard.js b/assets/js/zeroclipboard/jquery.zeroclipboard.js new file mode 100644 index 00000000000..a8f1a1e7f21 --- /dev/null +++ b/assets/js/zeroclipboard/jquery.zeroclipboard.js @@ -0,0 +1,1881 @@ +/*! + * jquery.zeroclipboard + * Bind to the `beforecopy`, `copy`, `aftercopy`, and `copy-error` events, custom DOM-like events for clipboard injection generated using jQuery's Special Events API and ZeroClipboard's Core module. + * Copyright (c) 2014 + * Licensed MIT + * https://github.com/zeroclipboard/jquery.zeroclipboard + * v0.2.0 + */ +(function($, window, undefined) { + "use strict"; + var require, module, exports; + var zcExistsAlready = !!window.ZeroClipboard; + /*! + * ZeroClipboard + * The ZeroClipboard library provides an easy way to copy text to the clipboard using an invisible Adobe Flash movie and a JavaScript interface. + * Copyright (c) 2014 Jon Rohan, James M. Greene + * Licensed MIT + * http://zeroclipboard.org/ + * v2.1.2 + */ + (function(window, undefined) { + /** + * Store references to critically important global functions that may be + * overridden on certain web pages. + */ + var _window = window, _document = _window.document, _navigator = _window.navigator, _setTimeout = _window.setTimeout, _encodeURIComponent = _window.encodeURIComponent, _ActiveXObject = _window.ActiveXObject, _parseInt = _window.Number.parseInt || _window.parseInt, _parseFloat = _window.Number.parseFloat || _window.parseFloat, _isNaN = _window.Number.isNaN || _window.isNaN, _round = _window.Math.round, _now = _window.Date.now, _keys = _window.Object.keys, _defineProperty = _window.Object.defineProperty, _hasOwn = _window.Object.prototype.hasOwnProperty, _slice = _window.Array.prototype.slice; + /** + * Convert an `arguments` object into an Array. + * + * @returns The arguments as an Array + * @private + */ + var _args = function(argumentsObj) { + return _slice.call(argumentsObj, 0); + }; + /** + * Shallow-copy the owned, enumerable properties of one object over to another, similar to jQuery's `$.extend`. + * + * @returns The target object, augmented + * @private + */ + var _extend = function() { + var i, len, arg, prop, src, copy, args = _args(arguments), target = args[0] || {}; + for (i = 1, len = args.length; i < len; i++) { + if ((arg = args[i]) != null) { + for (prop in arg) { + if (_hasOwn.call(arg, prop)) { + src = target[prop]; + copy = arg[prop]; + if (target !== copy && copy !== undefined) { + target[prop] = copy; + } + } + } + } + } + return target; + }; + /** + * Return a deep copy of the source object or array. + * + * @returns Object or Array + * @private + */ + var _deepCopy = function(source) { + var copy, i, len, prop; + if (typeof source !== "object" || source == null) { + copy = source; + } else if (typeof source.length === "number") { + copy = []; + for (i = 0, len = source.length; i < len; i++) { + if (_hasOwn.call(source, i)) { + copy[i] = _deepCopy(source[i]); + } + } + } else { + copy = {}; + for (prop in source) { + if (_hasOwn.call(source, prop)) { + copy[prop] = _deepCopy(source[prop]); + } + } + } + return copy; + }; + /** + * Makes a shallow copy of `obj` (like `_extend`) but filters its properties based on a list of `keys` to keep. + * The inverse of `_omit`, mostly. The big difference is that these properties do NOT need to be enumerable to + * be kept. + * + * @returns A new filtered object. + * @private + */ + var _pick = function(obj, keys) { + var newObj = {}; + for (var i = 0, len = keys.length; i < len; i++) { + if (keys[i] in obj) { + newObj[keys[i]] = obj[keys[i]]; + } + } + return newObj; + }; + /** + * Makes a shallow copy of `obj` (like `_extend`) but filters its properties based on a list of `keys` to omit. + * The inverse of `_pick`. + * + * @returns A new filtered object. + * @private + */ + var _omit = function(obj, keys) { + var newObj = {}; + for (var prop in obj) { + if (keys.indexOf(prop) === -1) { + newObj[prop] = obj[prop]; + } + } + return newObj; + }; + /** + * Remove all owned, enumerable properties from an object. + * + * @returns The original object without its owned, enumerable properties. + * @private + */ + var _deleteOwnProperties = function(obj) { + if (obj) { + for (var prop in obj) { + if (_hasOwn.call(obj, prop)) { + delete obj[prop]; + } + } + } + return obj; + }; + /** + * Determine if an element is contained within another element. + * + * @returns Boolean + * @private + */ + var _containedBy = function(el, ancestorEl) { + if (el && el.nodeType === 1 && el.ownerDocument && ancestorEl && (ancestorEl.nodeType === 1 && ancestorEl.ownerDocument && ancestorEl.ownerDocument === el.ownerDocument || ancestorEl.nodeType === 9 && !ancestorEl.ownerDocument && ancestorEl === el.ownerDocument)) { + do { + if (el === ancestorEl) { + return true; + } + el = el.parentNode; + } while (el); + } + return false; + }; + /** + * Keep track of the state of the Flash object. + * @private + */ + var _flashState = { + bridge: null, + version: "0.0.0", + pluginType: "unknown", + disabled: null, + outdated: null, + unavailable: null, + deactivated: null, + overdue: null, + ready: null + }; + /** + * The minimum Flash Player version required to use ZeroClipboard completely. + * @readonly + * @private + */ + var _minimumFlashVersion = "11.0.0"; + /** + * Keep track of all event listener registrations. + * @private + */ + var _handlers = {}; + /** + * Keep track of the currently activated element. + * @private + */ + var _currentElement; + /** + * Keep track of data for the pending clipboard transaction. + * @private + */ + var _clipData = {}; + /** + * Keep track of data formats for the pending clipboard transaction. + * @private + */ + var _clipDataFormatMap = null; + /** + * The `message` store for events + * @private + */ + var _eventMessages = { + ready: "Flash communication is established", + error: { + "flash-disabled": "Flash is disabled or not installed", + "flash-outdated": "Flash is too outdated to support ZeroClipboard", + "flash-unavailable": "Flash is unable to communicate bidirectionally with JavaScript", + "flash-deactivated": "Flash is too outdated for your browser and/or is configured as click-to-activate", + "flash-overdue": "Flash communication was established but NOT within the acceptable time limit" + } + }; + /** + * The presumed location of the "ZeroClipboard.swf" file, based on the location + * of the executing JavaScript file (e.g. "ZeroClipboard.js", etc.). + * @private + */ + var _swfPath = function() { + var i, jsDir, tmpJsPath, jsPath, swfPath = "ZeroClipboard.swf"; + if (!(_document.currentScript && (jsPath = _document.currentScript.src))) { + var scripts = _document.getElementsByTagName("script"); + if ("readyState" in scripts[0]) { + for (i = scripts.length; i--; ) { + if (scripts[i].readyState === "interactive" && (jsPath = scripts[i].src)) { + break; + } + } + } else if (_document.readyState === "loading") { + jsPath = scripts[scripts.length - 1].src; + } else { + for (i = scripts.length; i--; ) { + tmpJsPath = scripts[i].src; + if (!tmpJsPath) { + jsDir = null; + break; + } + tmpJsPath = tmpJsPath.split("#")[0].split("?")[0]; + tmpJsPath = tmpJsPath.slice(0, tmpJsPath.lastIndexOf("/") + 1); + if (jsDir == null) { + jsDir = tmpJsPath; + } else if (jsDir !== tmpJsPath) { + jsDir = null; + break; + } + } + if (jsDir !== null) { + jsPath = jsDir; + } + } + } + if (jsPath) { + jsPath = jsPath.split("#")[0].split("?")[0]; + swfPath = jsPath.slice(0, jsPath.lastIndexOf("/") + 1) + swfPath; + } + return swfPath; + }(); + /** + * ZeroClipboard configuration defaults for the Core module. + * @private + */ + var _globalConfig = { + swfPath: _swfPath, + trustedDomains: window.location.host ? [ window.location.host ] : [], + cacheBust: true, + forceEnhancedClipboard: false, + flashLoadTimeout: 3e4, + autoActivate: true, + bubbleEvents: true, + containerId: "global-zeroclipboard-html-bridge", + containerClass: "global-zeroclipboard-container", + swfObjectId: "global-zeroclipboard-flash-bridge", + hoverClass: "zeroclipboard-is-hover", + activeClass: "zeroclipboard-is-active", + forceHandCursor: false, + title: null, + zIndex: 999999999 + }; + /** + * The underlying implementation of `ZeroClipboard.config`. + * @private + */ + var _config = function(options) { + if (typeof options === "object" && options !== null) { + for (var prop in options) { + if (_hasOwn.call(options, prop)) { + if (/^(?:forceHandCursor|title|zIndex|bubbleEvents)$/.test(prop)) { + _globalConfig[prop] = options[prop]; + } else if (_flashState.bridge == null) { + if (prop === "containerId" || prop === "swfObjectId") { + if (_isValidHtml4Id(options[prop])) { + _globalConfig[prop] = options[prop]; + } else { + throw new Error("The specified `" + prop + "` value is not valid as an HTML4 Element ID"); + } + } else { + _globalConfig[prop] = options[prop]; + } + } + } + } + } + if (typeof options === "string" && options) { + if (_hasOwn.call(_globalConfig, options)) { + return _globalConfig[options]; + } + return; + } + return _deepCopy(_globalConfig); + }; + /** + * The underlying implementation of `ZeroClipboard.state`. + * @private + */ + var _state = function() { + return { + browser: _pick(_navigator, [ "userAgent", "platform", "appName" ]), + flash: _omit(_flashState, [ "bridge" ]), + zeroclipboard: { + version: ZeroClipboard.version, + config: ZeroClipboard.config() + } + }; + }; + /** + * The underlying implementation of `ZeroClipboard.isFlashUnusable`. + * @private + */ + var _isFlashUnusable = function() { + return !!(_flashState.disabled || _flashState.outdated || _flashState.unavailable || _flashState.deactivated); + }; + /** + * The underlying implementation of `ZeroClipboard.on`. + * @private + */ + var _on = function(eventType, listener) { + var i, len, events, added = {}; + if (typeof eventType === "string" && eventType) { + events = eventType.toLowerCase().split(/\s+/); + } else if (typeof eventType === "object" && eventType && typeof listener === "undefined") { + for (i in eventType) { + if (_hasOwn.call(eventType, i) && typeof i === "string" && i && typeof eventType[i] === "function") { + ZeroClipboard.on(i, eventType[i]); + } + } + } + if (events && events.length) { + for (i = 0, len = events.length; i < len; i++) { + eventType = events[i].replace(/^on/, ""); + added[eventType] = true; + if (!_handlers[eventType]) { + _handlers[eventType] = []; + } + _handlers[eventType].push(listener); + } + if (added.ready && _flashState.ready) { + ZeroClipboard.emit({ + type: "ready" + }); + } + if (added.error) { + var errorTypes = [ "disabled", "outdated", "unavailable", "deactivated", "overdue" ]; + for (i = 0, len = errorTypes.length; i < len; i++) { + if (_flashState[errorTypes[i]] === true) { + ZeroClipboard.emit({ + type: "error", + name: "flash-" + errorTypes[i] + }); + break; + } + } + } + } + return ZeroClipboard; + }; + /** + * The underlying implementation of `ZeroClipboard.off`. + * @private + */ + var _off = function(eventType, listener) { + var i, len, foundIndex, events, perEventHandlers; + if (arguments.length === 0) { + events = _keys(_handlers); + } else if (typeof eventType === "string" && eventType) { + events = eventType.split(/\s+/); + } else if (typeof eventType === "object" && eventType && typeof listener === "undefined") { + for (i in eventType) { + if (_hasOwn.call(eventType, i) && typeof i === "string" && i && typeof eventType[i] === "function") { + ZeroClipboard.off(i, eventType[i]); + } + } + } + if (events && events.length) { + for (i = 0, len = events.length; i < len; i++) { + eventType = events[i].toLowerCase().replace(/^on/, ""); + perEventHandlers = _handlers[eventType]; + if (perEventHandlers && perEventHandlers.length) { + if (listener) { + foundIndex = perEventHandlers.indexOf(listener); + while (foundIndex !== -1) { + perEventHandlers.splice(foundIndex, 1); + foundIndex = perEventHandlers.indexOf(listener, foundIndex); + } + } else { + perEventHandlers.length = 0; + } + } + } + } + return ZeroClipboard; + }; + /** + * The underlying implementation of `ZeroClipboard.handlers`. + * @private + */ + var _listeners = function(eventType) { + var copy; + if (typeof eventType === "string" && eventType) { + copy = _deepCopy(_handlers[eventType]) || null; + } else { + copy = _deepCopy(_handlers); + } + return copy; + }; + /** + * The underlying implementation of `ZeroClipboard.emit`. + * @private + */ + var _emit = function(event) { + var eventCopy, returnVal, tmp; + event = _createEvent(event); + if (!event) { + return; + } + if (_preprocessEvent(event)) { + return; + } + if (event.type === "ready" && _flashState.overdue === true) { + return ZeroClipboard.emit({ + type: "error", + name: "flash-overdue" + }); + } + eventCopy = _extend({}, event); + _dispatchCallbacks.call(this, eventCopy); + if (event.type === "copy") { + tmp = _mapClipDataToFlash(_clipData); + returnVal = tmp.data; + _clipDataFormatMap = tmp.formatMap; + } + return returnVal; + }; + /** + * The underlying implementation of `ZeroClipboard.create`. + * @private + */ + var _create = function() { + if (typeof _flashState.ready !== "boolean") { + _flashState.ready = false; + } + if (!ZeroClipboard.isFlashUnusable() && _flashState.bridge === null) { + var maxWait = _globalConfig.flashLoadTimeout; + if (typeof maxWait === "number" && maxWait >= 0) { + _setTimeout(function() { + if (typeof _flashState.deactivated !== "boolean") { + _flashState.deactivated = true; + } + if (_flashState.deactivated === true) { + ZeroClipboard.emit({ + type: "error", + name: "flash-deactivated" + }); + } + }, maxWait); + } + _flashState.overdue = false; + _embedSwf(); + } + }; + /** + * The underlying implementation of `ZeroClipboard.destroy`. + * @private + */ + var _destroy = function() { + ZeroClipboard.clearData(); + ZeroClipboard.blur(); + ZeroClipboard.emit("destroy"); + _unembedSwf(); + ZeroClipboard.off(); + }; + /** + * The underlying implementation of `ZeroClipboard.setData`. + * @private + */ + var _setData = function(format, data) { + var dataObj; + if (typeof format === "object" && format && typeof data === "undefined") { + dataObj = format; + ZeroClipboard.clearData(); + } else if (typeof format === "string" && format) { + dataObj = {}; + dataObj[format] = data; + } else { + return; + } + for (var dataFormat in dataObj) { + if (typeof dataFormat === "string" && dataFormat && _hasOwn.call(dataObj, dataFormat) && typeof dataObj[dataFormat] === "string" && dataObj[dataFormat]) { + _clipData[dataFormat] = dataObj[dataFormat]; + } + } + }; + /** + * The underlying implementation of `ZeroClipboard.clearData`. + * @private + */ + var _clearData = function(format) { + if (typeof format === "undefined") { + _deleteOwnProperties(_clipData); + _clipDataFormatMap = null; + } else if (typeof format === "string" && _hasOwn.call(_clipData, format)) { + delete _clipData[format]; + } + }; + /** + * The underlying implementation of `ZeroClipboard.getData`. + * @private + */ + var _getData = function(format) { + if (typeof format === "undefined") { + return _deepCopy(_clipData); + } else if (typeof format === "string" && _hasOwn.call(_clipData, format)) { + return _clipData[format]; + } + }; + /** + * The underlying implementation of `ZeroClipboard.focus`/`ZeroClipboard.activate`. + * @private + */ + var _focus = function(element) { + if (!(element && element.nodeType === 1)) { + return; + } + if (_currentElement) { + _removeClass(_currentElement, _globalConfig.activeClass); + if (_currentElement !== element) { + _removeClass(_currentElement, _globalConfig.hoverClass); + } + } + _currentElement = element; + _addClass(element, _globalConfig.hoverClass); + var newTitle = element.getAttribute("title") || _globalConfig.title; + if (typeof newTitle === "string" && newTitle) { + var htmlBridge = _getHtmlBridge(_flashState.bridge); + if (htmlBridge) { + htmlBridge.setAttribute("title", newTitle); + } + } + var useHandCursor = _globalConfig.forceHandCursor === true || _getStyle(element, "cursor") === "pointer"; + _setHandCursor(useHandCursor); + _reposition(); + }; + /** + * The underlying implementation of `ZeroClipboard.blur`/`ZeroClipboard.deactivate`. + * @private + */ + var _blur = function() { + var htmlBridge = _getHtmlBridge(_flashState.bridge); + if (htmlBridge) { + htmlBridge.removeAttribute("title"); + htmlBridge.style.left = "0px"; + htmlBridge.style.top = "-9999px"; + htmlBridge.style.width = "1px"; + htmlBridge.style.top = "1px"; + } + if (_currentElement) { + _removeClass(_currentElement, _globalConfig.hoverClass); + _removeClass(_currentElement, _globalConfig.activeClass); + _currentElement = null; + } + }; + /** + * The underlying implementation of `ZeroClipboard.activeElement`. + * @private + */ + var _activeElement = function() { + return _currentElement || null; + }; + /** + * Check if a value is a valid HTML4 `ID` or `Name` token. + * @private + */ + var _isValidHtml4Id = function(id) { + return typeof id === "string" && id && /^[A-Za-z][A-Za-z0-9_:\-\.]*$/.test(id); + }; + /** + * Create or update an `event` object, based on the `eventType`. + * @private + */ + var _createEvent = function(event) { + var eventType; + if (typeof event === "string" && event) { + eventType = event; + event = {}; + } else if (typeof event === "object" && event && typeof event.type === "string" && event.type) { + eventType = event.type; + } + if (!eventType) { + return; + } + _extend(event, { + type: eventType.toLowerCase(), + target: event.target || _currentElement || null, + relatedTarget: event.relatedTarget || null, + currentTarget: _flashState && _flashState.bridge || null, + timeStamp: event.timeStamp || _now() || null + }); + var msg = _eventMessages[event.type]; + if (event.type === "error" && event.name && msg) { + msg = msg[event.name]; + } + if (msg) { + event.message = msg; + } + if (event.type === "ready") { + _extend(event, { + target: null, + version: _flashState.version + }); + } + if (event.type === "error") { + if (/^flash-(disabled|outdated|unavailable|deactivated|overdue)$/.test(event.name)) { + _extend(event, { + target: null, + minimumVersion: _minimumFlashVersion + }); + } + if (/^flash-(outdated|unavailable|deactivated|overdue)$/.test(event.name)) { + _extend(event, { + version: _flashState.version + }); + } + } + if (event.type === "copy") { + event.clipboardData = { + setData: ZeroClipboard.setData, + clearData: ZeroClipboard.clearData + }; + } + if (event.type === "aftercopy") { + event = _mapClipResultsFromFlash(event, _clipDataFormatMap); + } + if (event.target && !event.relatedTarget) { + event.relatedTarget = _getRelatedTarget(event.target); + } + event = _addMouseData(event); + return event; + }; + /** + * Get a relatedTarget from the target's `data-clipboard-target` attribute + * @private + */ + var _getRelatedTarget = function(targetEl) { + var relatedTargetId = targetEl && targetEl.getAttribute && targetEl.getAttribute("data-clipboard-target"); + return relatedTargetId ? _document.getElementById(relatedTargetId) : null; + }; + /** + * Add element and position data to `MouseEvent` instances + * @private + */ + var _addMouseData = function(event) { + if (event && /^_(?:click|mouse(?:over|out|down|up|move))$/.test(event.type)) { + var srcElement = event.target; + var fromElement = event.type === "_mouseover" && event.relatedTarget ? event.relatedTarget : undefined; + var toElement = event.type === "_mouseout" && event.relatedTarget ? event.relatedTarget : undefined; + var pos = _getDOMObjectPosition(srcElement); + var screenLeft = _window.screenLeft || _window.screenX || 0; + var screenTop = _window.screenTop || _window.screenY || 0; + var scrollLeft = _document.body.scrollLeft + _document.documentElement.scrollLeft; + var scrollTop = _document.body.scrollTop + _document.documentElement.scrollTop; + var pageX = pos.left + (typeof event._stageX === "number" ? event._stageX : 0); + var pageY = pos.top + (typeof event._stageY === "number" ? event._stageY : 0); + var clientX = pageX - scrollLeft; + var clientY = pageY - scrollTop; + var screenX = screenLeft + clientX; + var screenY = screenTop + clientY; + var moveX = typeof event.movementX === "number" ? event.movementX : 0; + var moveY = typeof event.movementY === "number" ? event.movementY : 0; + delete event._stageX; + delete event._stageY; + _extend(event, { + srcElement: srcElement, + fromElement: fromElement, + toElement: toElement, + screenX: screenX, + screenY: screenY, + pageX: pageX, + pageY: pageY, + clientX: clientX, + clientY: clientY, + x: clientX, + y: clientY, + movementX: moveX, + movementY: moveY, + offsetX: 0, + offsetY: 0, + layerX: 0, + layerY: 0 + }); + } + return event; + }; + /** + * Determine if an event's registered handlers should be execute synchronously or asynchronously. + * + * @returns {boolean} + * @private + */ + var _shouldPerformAsync = function(event) { + var eventType = event && typeof event.type === "string" && event.type || ""; + return !/^(?:(?:before)?copy|destroy)$/.test(eventType); + }; + /** + * Control if a callback should be executed asynchronously or not. + * + * @returns `undefined` + * @private + */ + var _dispatchCallback = function(func, context, args, async) { + if (async) { + _setTimeout(function() { + func.apply(context, args); + }, 0); + } else { + func.apply(context, args); + } + }; + /** + * Handle the actual dispatching of events to client instances. + * + * @returns `undefined` + * @private + */ + var _dispatchCallbacks = function(event) { + if (!(typeof event === "object" && event && event.type)) { + return; + } + var async = _shouldPerformAsync(event); + var wildcardTypeHandlers = _handlers["*"] || []; + var specificTypeHandlers = _handlers[event.type] || []; + var handlers = wildcardTypeHandlers.concat(specificTypeHandlers); + if (handlers && handlers.length) { + var i, len, func, context, eventCopy, originalContext = this; + for (i = 0, len = handlers.length; i < len; i++) { + func = handlers[i]; + context = originalContext; + if (typeof func === "string" && typeof _window[func] === "function") { + func = _window[func]; + } + if (typeof func === "object" && func && typeof func.handleEvent === "function") { + context = func; + func = func.handleEvent; + } + if (typeof func === "function") { + eventCopy = _extend({}, event); + _dispatchCallback(func, context, [ eventCopy ], async); + } + } + } + return this; + }; + /** + * Preprocess any special behaviors, reactions, or state changes after receiving this event. + * Executes only once per event emitted, NOT once per client. + * @private + */ + var _preprocessEvent = function(event) { + var element = event.target || _currentElement || null; + var sourceIsSwf = event._source === "swf"; + delete event._source; + var flashErrorNames = [ "flash-disabled", "flash-outdated", "flash-unavailable", "flash-deactivated", "flash-overdue" ]; + switch (event.type) { + case "error": + if (flashErrorNames.indexOf(event.name) !== -1) { + _extend(_flashState, { + disabled: event.name === "flash-disabled", + outdated: event.name === "flash-outdated", + unavailable: event.name === "flash-unavailable", + deactivated: event.name === "flash-deactivated", + overdue: event.name === "flash-overdue", + ready: false + }); + } + break; + + case "ready": + var wasDeactivated = _flashState.deactivated === true; + _extend(_flashState, { + disabled: false, + outdated: false, + unavailable: false, + deactivated: false, + overdue: wasDeactivated, + ready: !wasDeactivated + }); + break; + + case "copy": + var textContent, htmlContent, targetEl = event.relatedTarget; + if (!(_clipData["text/html"] || _clipData["text/plain"]) && targetEl && (htmlContent = targetEl.value || targetEl.outerHTML || targetEl.innerHTML) && (textContent = targetEl.value || targetEl.textContent || targetEl.innerText)) { + event.clipboardData.clearData(); + event.clipboardData.setData("text/plain", textContent); + if (htmlContent !== textContent) { + event.clipboardData.setData("text/html", htmlContent); + } + } else if (!_clipData["text/plain"] && event.target && (textContent = event.target.getAttribute("data-clipboard-text"))) { + event.clipboardData.clearData(); + event.clipboardData.setData("text/plain", textContent); + } + break; + + case "aftercopy": + ZeroClipboard.clearData(); + if (element && element !== _safeActiveElement() && element.focus) { + element.focus(); + } + break; + + case "_mouseover": + ZeroClipboard.focus(element); + if (_globalConfig.bubbleEvents === true && sourceIsSwf) { + if (element && element !== event.relatedTarget && !_containedBy(event.relatedTarget, element)) { + _fireMouseEvent(_extend({}, event, { + type: "mouseenter", + bubbles: false, + cancelable: false + })); + } + _fireMouseEvent(_extend({}, event, { + type: "mouseover" + })); + } + break; + + case "_mouseout": + ZeroClipboard.blur(); + if (_globalConfig.bubbleEvents === true && sourceIsSwf) { + if (element && element !== event.relatedTarget && !_containedBy(event.relatedTarget, element)) { + _fireMouseEvent(_extend({}, event, { + type: "mouseleave", + bubbles: false, + cancelable: false + })); + } + _fireMouseEvent(_extend({}, event, { + type: "mouseout" + })); + } + break; + + case "_mousedown": + _addClass(element, _globalConfig.activeClass); + if (_globalConfig.bubbleEvents === true && sourceIsSwf) { + _fireMouseEvent(_extend({}, event, { + type: event.type.slice(1) + })); + } + break; + + case "_mouseup": + _removeClass(element, _globalConfig.activeClass); + if (_globalConfig.bubbleEvents === true && sourceIsSwf) { + _fireMouseEvent(_extend({}, event, { + type: event.type.slice(1) + })); + } + break; + + case "_click": + case "_mousemove": + if (_globalConfig.bubbleEvents === true && sourceIsSwf) { + _fireMouseEvent(_extend({}, event, { + type: event.type.slice(1) + })); + } + break; + } + if (/^_(?:click|mouse(?:over|out|down|up|move))$/.test(event.type)) { + return true; + } + }; + /** + * Dispatch a synthetic MouseEvent. + * + * @returns `undefined` + * @private + */ + var _fireMouseEvent = function(event) { + if (!(event && typeof event.type === "string" && event)) { + return; + } + var e, target = event.target || null, doc = target && target.ownerDocument || _document, defaults = { + view: doc.defaultView || _window, + canBubble: true, + cancelable: true, + detail: event.type === "click" ? 1 : 0, + button: typeof event.which === "number" ? event.which - 1 : typeof event.button === "number" ? event.button : doc.createEvent ? 0 : 1 + }, args = _extend(defaults, event); + if (!target) { + return; + } + if (doc.createEvent && target.dispatchEvent) { + args = [ args.type, args.canBubble, args.cancelable, args.view, args.detail, args.screenX, args.screenY, args.clientX, args.clientY, args.ctrlKey, args.altKey, args.shiftKey, args.metaKey, args.button, args.relatedTarget ]; + e = doc.createEvent("MouseEvents"); + if (e.initMouseEvent) { + e.initMouseEvent.apply(e, args); + e._source = "js"; + target.dispatchEvent(e); + } + } + }; + /** + * Create the HTML bridge element to embed the Flash object into. + * @private + */ + var _createHtmlBridge = function() { + var container = _document.createElement("div"); + container.id = _globalConfig.containerId; + container.className = _globalConfig.containerClass; + container.style.position = "absolute"; + container.style.left = "0px"; + container.style.top = "-9999px"; + container.style.width = "1px"; + container.style.height = "1px"; + container.style.zIndex = "" + _getSafeZIndex(_globalConfig.zIndex); + return container; + }; + /** + * Get the HTML element container that wraps the Flash bridge object/element. + * @private + */ + var _getHtmlBridge = function(flashBridge) { + var htmlBridge = flashBridge && flashBridge.parentNode; + while (htmlBridge && htmlBridge.nodeName === "OBJECT" && htmlBridge.parentNode) { + htmlBridge = htmlBridge.parentNode; + } + return htmlBridge || null; + }; + /** + * Create the SWF object. + * + * @returns The SWF object reference. + * @private + */ + var _embedSwf = function() { + var len, flashBridge = _flashState.bridge, container = _getHtmlBridge(flashBridge); + if (!flashBridge) { + var allowScriptAccess = _determineScriptAccess(_window.location.host, _globalConfig); + var allowNetworking = allowScriptAccess === "never" ? "none" : "all"; + var flashvars = _vars(_globalConfig); + var swfUrl = _globalConfig.swfPath + _cacheBust(_globalConfig.swfPath, _globalConfig); + container = _createHtmlBridge(); + var divToBeReplaced = _document.createElement("div"); + container.appendChild(divToBeReplaced); + _document.body.appendChild(container); + var tmpDiv = _document.createElement("div"); + var oldIE = _flashState.pluginType === "activex"; + tmpDiv.innerHTML = '" + (oldIE ? '' : "") + '' + '' + '' + '' + '' + ""; + flashBridge = tmpDiv.firstChild; + tmpDiv = null; + flashBridge.ZeroClipboard = ZeroClipboard; + container.replaceChild(flashBridge, divToBeReplaced); + } + if (!flashBridge) { + flashBridge = _document[_globalConfig.swfObjectId]; + if (flashBridge && (len = flashBridge.length)) { + flashBridge = flashBridge[len - 1]; + } + if (!flashBridge && container) { + flashBridge = container.firstChild; + } + } + _flashState.bridge = flashBridge || null; + return flashBridge; + }; + /** + * Destroy the SWF object. + * @private + */ + var _unembedSwf = function() { + var flashBridge = _flashState.bridge; + if (flashBridge) { + var htmlBridge = _getHtmlBridge(flashBridge); + if (htmlBridge) { + if (_flashState.pluginType === "activex" && "readyState" in flashBridge) { + flashBridge.style.display = "none"; + (function removeSwfFromIE() { + if (flashBridge.readyState === 4) { + for (var prop in flashBridge) { + if (typeof flashBridge[prop] === "function") { + flashBridge[prop] = null; + } + } + if (flashBridge.parentNode) { + flashBridge.parentNode.removeChild(flashBridge); + } + if (htmlBridge.parentNode) { + htmlBridge.parentNode.removeChild(htmlBridge); + } + } else { + _setTimeout(removeSwfFromIE, 10); + } + })(); + } else { + if (flashBridge.parentNode) { + flashBridge.parentNode.removeChild(flashBridge); + } + if (htmlBridge.parentNode) { + htmlBridge.parentNode.removeChild(htmlBridge); + } + } + } + _flashState.ready = null; + _flashState.bridge = null; + _flashState.deactivated = null; + } + }; + /** + * Map the data format names of the "clipData" to Flash-friendly names. + * + * @returns A new transformed object. + * @private + */ + var _mapClipDataToFlash = function(clipData) { + var newClipData = {}, formatMap = {}; + if (!(typeof clipData === "object" && clipData)) { + return; + } + for (var dataFormat in clipData) { + if (dataFormat && _hasOwn.call(clipData, dataFormat) && typeof clipData[dataFormat] === "string" && clipData[dataFormat]) { + switch (dataFormat.toLowerCase()) { + case "text/plain": + case "text": + case "air:text": + case "flash:text": + newClipData.text = clipData[dataFormat]; + formatMap.text = dataFormat; + break; + + case "text/html": + case "html": + case "air:html": + case "flash:html": + newClipData.html = clipData[dataFormat]; + formatMap.html = dataFormat; + break; + + case "application/rtf": + case "text/rtf": + case "rtf": + case "richtext": + case "air:rtf": + case "flash:rtf": + newClipData.rtf = clipData[dataFormat]; + formatMap.rtf = dataFormat; + break; + + default: + break; + } + } + } + return { + data: newClipData, + formatMap: formatMap + }; + }; + /** + * Map the data format names from Flash-friendly names back to their original "clipData" names (via a format mapping). + * + * @returns A new transformed object. + * @private + */ + var _mapClipResultsFromFlash = function(clipResults, formatMap) { + if (!(typeof clipResults === "object" && clipResults && typeof formatMap === "object" && formatMap)) { + return clipResults; + } + var newResults = {}; + for (var prop in clipResults) { + if (_hasOwn.call(clipResults, prop)) { + if (prop !== "success" && prop !== "data") { + newResults[prop] = clipResults[prop]; + continue; + } + newResults[prop] = {}; + var tmpHash = clipResults[prop]; + for (var dataFormat in tmpHash) { + if (dataFormat && _hasOwn.call(tmpHash, dataFormat) && _hasOwn.call(formatMap, dataFormat)) { + newResults[prop][formatMap[dataFormat]] = tmpHash[dataFormat]; + } + } + } + } + return newResults; + }; + /** + * Will look at a path, and will create a "?noCache={time}" or "&noCache={time}" + * query param string to return. Does NOT append that string to the original path. + * This is useful because ExternalInterface often breaks when a Flash SWF is cached. + * + * @returns The `noCache` query param with necessary "?"/"&" prefix. + * @private + */ + var _cacheBust = function(path, options) { + var cacheBust = options == null || options && options.cacheBust === true; + if (cacheBust) { + return (path.indexOf("?") === -1 ? "?" : "&") + "noCache=" + _now(); + } else { + return ""; + } + }; + /** + * Creates a query string for the FlashVars param. + * Does NOT include the cache-busting query param. + * + * @returns FlashVars query string + * @private + */ + var _vars = function(options) { + var i, len, domain, domains, str = "", trustedOriginsExpanded = []; + if (options.trustedDomains) { + if (typeof options.trustedDomains === "string") { + domains = [ options.trustedDomains ]; + } else if (typeof options.trustedDomains === "object" && "length" in options.trustedDomains) { + domains = options.trustedDomains; + } + } + if (domains && domains.length) { + for (i = 0, len = domains.length; i < len; i++) { + if (_hasOwn.call(domains, i) && domains[i] && typeof domains[i] === "string") { + domain = _extractDomain(domains[i]); + if (!domain) { + continue; + } + if (domain === "*") { + trustedOriginsExpanded.length = 0; + trustedOriginsExpanded.push(domain); + break; + } + trustedOriginsExpanded.push.apply(trustedOriginsExpanded, [ domain, "//" + domain, _window.location.protocol + "//" + domain ]); + } + } + } + if (trustedOriginsExpanded.length) { + str += "trustedOrigins=" + _encodeURIComponent(trustedOriginsExpanded.join(",")); + } + if (options.forceEnhancedClipboard === true) { + str += (str ? "&" : "") + "forceEnhancedClipboard=true"; + } + if (typeof options.swfObjectId === "string" && options.swfObjectId) { + str += (str ? "&" : "") + "swfObjectId=" + _encodeURIComponent(options.swfObjectId); + } + return str; + }; + /** + * Extract the domain (e.g. "github.com") from an origin (e.g. "https://github.com") or + * URL (e.g. "https://github.com/zeroclipboard/zeroclipboard/"). + * + * @returns the domain + * @private + */ + var _extractDomain = function(originOrUrl) { + if (originOrUrl == null || originOrUrl === "") { + return null; + } + originOrUrl = originOrUrl.replace(/^\s+|\s+$/g, ""); + if (originOrUrl === "") { + return null; + } + var protocolIndex = originOrUrl.indexOf("//"); + originOrUrl = protocolIndex === -1 ? originOrUrl : originOrUrl.slice(protocolIndex + 2); + var pathIndex = originOrUrl.indexOf("/"); + originOrUrl = pathIndex === -1 ? originOrUrl : protocolIndex === -1 || pathIndex === 0 ? null : originOrUrl.slice(0, pathIndex); + if (originOrUrl && originOrUrl.slice(-4).toLowerCase() === ".swf") { + return null; + } + return originOrUrl || null; + }; + /** + * Set `allowScriptAccess` based on `trustedDomains` and `window.location.host` vs. `swfPath`. + * + * @returns The appropriate script access level. + * @private + */ + var _determineScriptAccess = function() { + var _extractAllDomains = function(origins) { + var i, len, tmp, resultsArray = []; + if (typeof origins === "string") { + origins = [ origins ]; + } + if (!(typeof origins === "object" && origins && typeof origins.length === "number")) { + return resultsArray; + } + for (i = 0, len = origins.length; i < len; i++) { + if (_hasOwn.call(origins, i) && (tmp = _extractDomain(origins[i]))) { + if (tmp === "*") { + resultsArray.length = 0; + resultsArray.push("*"); + break; + } + if (resultsArray.indexOf(tmp) === -1) { + resultsArray.push(tmp); + } + } + } + return resultsArray; + }; + return function(currentDomain, configOptions) { + var swfDomain = _extractDomain(configOptions.swfPath); + if (swfDomain === null) { + swfDomain = currentDomain; + } + var trustedDomains = _extractAllDomains(configOptions.trustedDomains); + var len = trustedDomains.length; + if (len > 0) { + if (len === 1 && trustedDomains[0] === "*") { + return "always"; + } + if (trustedDomains.indexOf(currentDomain) !== -1) { + if (len === 1 && currentDomain === swfDomain) { + return "sameDomain"; + } + return "always"; + } + } + return "never"; + }; + }(); + /** + * Get the currently active/focused DOM element. + * + * @returns the currently active/focused element, or `null` + * @private + */ + var _safeActiveElement = function() { + try { + return _document.activeElement; + } catch (err) { + return null; + } + }; + /** + * Add a class to an element, if it doesn't already have it. + * + * @returns The element, with its new class added. + * @private + */ + var _addClass = function(element, value) { + if (!element || element.nodeType !== 1) { + return element; + } + if (element.classList) { + if (!element.classList.contains(value)) { + element.classList.add(value); + } + return element; + } + if (value && typeof value === "string") { + var classNames = (value || "").split(/\s+/); + if (element.nodeType === 1) { + if (!element.className) { + element.className = value; + } else { + var className = " " + element.className + " ", setClass = element.className; + for (var c = 0, cl = classNames.length; c < cl; c++) { + if (className.indexOf(" " + classNames[c] + " ") < 0) { + setClass += " " + classNames[c]; + } + } + element.className = setClass.replace(/^\s+|\s+$/g, ""); + } + } + } + return element; + }; + /** + * Remove a class from an element, if it has it. + * + * @returns The element, with its class removed. + * @private + */ + var _removeClass = function(element, value) { + if (!element || element.nodeType !== 1) { + return element; + } + if (element.classList) { + if (element.classList.contains(value)) { + element.classList.remove(value); + } + return element; + } + if (typeof value === "string" && value) { + var classNames = value.split(/\s+/); + if (element.nodeType === 1 && element.className) { + var className = (" " + element.className + " ").replace(/[\n\t]/g, " "); + for (var c = 0, cl = classNames.length; c < cl; c++) { + className = className.replace(" " + classNames[c] + " ", " "); + } + element.className = className.replace(/^\s+|\s+$/g, ""); + } + } + return element; + }; + /** + * Attempt to interpret the element's CSS styling. If `prop` is `"cursor"`, + * then we assume that it should be a hand ("pointer") cursor if the element + * is an anchor element ("a" tag). + * + * @returns The computed style property. + * @private + */ + var _getStyle = function(el, prop) { + var value = _window.getComputedStyle(el, null).getPropertyValue(prop); + if (prop === "cursor") { + if (!value || value === "auto") { + if (el.nodeName === "A") { + return "pointer"; + } + } + } + return value; + }; + /** + * Get the zoom factor of the browser. Always returns `1.0`, except at + * non-default zoom levels in IE<8 and some older versions of WebKit. + * + * @returns Floating unit percentage of the zoom factor (e.g. 150% = `1.5`). + * @private + */ + var _getZoomFactor = function() { + var rect, physicalWidth, logicalWidth, zoomFactor = 1; + if (typeof _document.body.getBoundingClientRect === "function") { + rect = _document.body.getBoundingClientRect(); + physicalWidth = rect.right - rect.left; + logicalWidth = _document.body.offsetWidth; + zoomFactor = _round(physicalWidth / logicalWidth * 100) / 100; + } + return zoomFactor; + }; + /** + * Get the DOM positioning info of an element. + * + * @returns Object containing the element's position, width, and height. + * @private + */ + var _getDOMObjectPosition = function(obj) { + var info = { + left: 0, + top: 0, + width: 0, + height: 0 + }; + if (obj.getBoundingClientRect) { + var rect = obj.getBoundingClientRect(); + var pageXOffset, pageYOffset, zoomFactor; + if ("pageXOffset" in _window && "pageYOffset" in _window) { + pageXOffset = _window.pageXOffset; + pageYOffset = _window.pageYOffset; + } else { + zoomFactor = _getZoomFactor(); + pageXOffset = _round(_document.documentElement.scrollLeft / zoomFactor); + pageYOffset = _round(_document.documentElement.scrollTop / zoomFactor); + } + var leftBorderWidth = _document.documentElement.clientLeft || 0; + var topBorderWidth = _document.documentElement.clientTop || 0; + info.left = rect.left + pageXOffset - leftBorderWidth; + info.top = rect.top + pageYOffset - topBorderWidth; + info.width = "width" in rect ? rect.width : rect.right - rect.left; + info.height = "height" in rect ? rect.height : rect.bottom - rect.top; + } + return info; + }; + /** + * Reposition the Flash object to cover the currently activated element. + * + * @returns `undefined` + * @private + */ + var _reposition = function() { + var htmlBridge; + if (_currentElement && (htmlBridge = _getHtmlBridge(_flashState.bridge))) { + var pos = _getDOMObjectPosition(_currentElement); + _extend(htmlBridge.style, { + width: pos.width + "px", + height: pos.height + "px", + top: pos.top + "px", + left: pos.left + "px", + zIndex: "" + _getSafeZIndex(_globalConfig.zIndex) + }); + } + }; + /** + * Sends a signal to the Flash object to display the hand cursor if `true`. + * + * @returns `undefined` + * @private + */ + var _setHandCursor = function(enabled) { + if (_flashState.ready === true) { + if (_flashState.bridge && typeof _flashState.bridge.setHandCursor === "function") { + _flashState.bridge.setHandCursor(enabled); + } else { + _flashState.ready = false; + } + } + }; + /** + * Get a safe value for `zIndex` + * + * @returns an integer, or "auto" + * @private + */ + var _getSafeZIndex = function(val) { + if (/^(?:auto|inherit)$/.test(val)) { + return val; + } + var zIndex; + if (typeof val === "number" && !_isNaN(val)) { + zIndex = val; + } else if (typeof val === "string") { + zIndex = _getSafeZIndex(_parseInt(val, 10)); + } + return typeof zIndex === "number" ? zIndex : "auto"; + }; + /** + * Detect the Flash Player status, version, and plugin type. + * + * @see {@link https://code.google.com/p/doctype-mirror/wiki/ArticleDetectFlash#The_code} + * @see {@link http://stackoverflow.com/questions/12866060/detecting-pepper-ppapi-flash-with-javascript} + * + * @returns `undefined` + * @private + */ + var _detectFlashSupport = function(ActiveXObject) { + var plugin, ax, mimeType, hasFlash = false, isActiveX = false, isPPAPI = false, flashVersion = ""; + /** + * Derived from Apple's suggested sniffer. + * @param {String} desc e.g. "Shockwave Flash 7.0 r61" + * @returns {String} "7.0.61" + * @private + */ + function parseFlashVersion(desc) { + var matches = desc.match(/[\d]+/g); + matches.length = 3; + return matches.join("."); + } + function isPepperFlash(flashPlayerFileName) { + return !!flashPlayerFileName && (flashPlayerFileName = flashPlayerFileName.toLowerCase()) && (/^(pepflashplayer\.dll|libpepflashplayer\.so|pepperflashplayer\.plugin)$/.test(flashPlayerFileName) || flashPlayerFileName.slice(-13) === "chrome.plugin"); + } + function inspectPlugin(plugin) { + if (plugin) { + hasFlash = true; + if (plugin.version) { + flashVersion = parseFlashVersion(plugin.version); + } + if (!flashVersion && plugin.description) { + flashVersion = parseFlashVersion(plugin.description); + } + if (plugin.filename) { + isPPAPI = isPepperFlash(plugin.filename); + } + } + } + if (_navigator.plugins && _navigator.plugins.length) { + plugin = _navigator.plugins["Shockwave Flash"]; + inspectPlugin(plugin); + if (_navigator.plugins["Shockwave Flash 2.0"]) { + hasFlash = true; + flashVersion = "2.0.0.11"; + } + } else if (_navigator.mimeTypes && _navigator.mimeTypes.length) { + mimeType = _navigator.mimeTypes["application/x-shockwave-flash"]; + plugin = mimeType && mimeType.enabledPlugin; + inspectPlugin(plugin); + } else if (typeof ActiveXObject !== "undefined") { + isActiveX = true; + try { + ax = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7"); + hasFlash = true; + flashVersion = parseFlashVersion(ax.GetVariable("$version")); + } catch (e1) { + try { + ax = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6"); + hasFlash = true; + flashVersion = "6.0.21"; + } catch (e2) { + try { + ax = new ActiveXObject("ShockwaveFlash.ShockwaveFlash"); + hasFlash = true; + flashVersion = parseFlashVersion(ax.GetVariable("$version")); + } catch (e3) { + isActiveX = false; + } + } + } + } + _flashState.disabled = hasFlash !== true; + _flashState.outdated = flashVersion && _parseFloat(flashVersion) < _parseFloat(_minimumFlashVersion); + _flashState.version = flashVersion || "0.0.0"; + _flashState.pluginType = isPPAPI ? "pepper" : isActiveX ? "activex" : hasFlash ? "netscape" : "unknown"; + }; + /** + * Invoke the Flash detection algorithms immediately upon inclusion so we're not waiting later. + */ + _detectFlashSupport(_ActiveXObject); + /** + * A shell constructor for `ZeroClipboard` client instances. + * + * @constructor + */ + var ZeroClipboard = function() { + if (!(this instanceof ZeroClipboard)) { + return new ZeroClipboard(); + } + if (typeof ZeroClipboard._createClient === "function") { + ZeroClipboard._createClient.apply(this, _args(arguments)); + } + }; + /** + * The ZeroClipboard library's version number. + * + * @static + * @readonly + * @property {string} + */ + _defineProperty(ZeroClipboard, "version", { + value: "2.1.2", + writable: false, + configurable: true, + enumerable: true + }); + /** + * Update or get a copy of the ZeroClipboard global configuration. + * Returns a copy of the current/updated configuration. + * + * @returns Object + * @static + */ + ZeroClipboard.config = function() { + return _config.apply(this, _args(arguments)); + }; + /** + * Diagnostic method that describes the state of the browser, Flash Player, and ZeroClipboard. + * + * @returns Object + * @static + */ + ZeroClipboard.state = function() { + return _state.apply(this, _args(arguments)); + }; + /** + * Check if Flash is unusable for any reason: disabled, outdated, deactivated, etc. + * + * @returns Boolean + * @static + */ + ZeroClipboard.isFlashUnusable = function() { + return _isFlashUnusable.apply(this, _args(arguments)); + }; + /** + * Register an event listener. + * + * @returns `ZeroClipboard` + * @static + */ + ZeroClipboard.on = function() { + return _on.apply(this, _args(arguments)); + }; + /** + * Unregister an event listener. + * If no `listener` function/object is provided, it will unregister all listeners for the provided `eventType`. + * If no `eventType` is provided, it will unregister all listeners for every event type. + * + * @returns `ZeroClipboard` + * @static + */ + ZeroClipboard.off = function() { + return _off.apply(this, _args(arguments)); + }; + /** + * Retrieve event listeners for an `eventType`. + * If no `eventType` is provided, it will retrieve all listeners for every event type. + * + * @returns array of listeners for the `eventType`; if no `eventType`, then a map/hash object of listeners for all event types; or `null` + */ + ZeroClipboard.handlers = function() { + return _listeners.apply(this, _args(arguments)); + }; + /** + * Event emission receiver from the Flash object, forwarding to any registered JavaScript event listeners. + * + * @returns For the "copy" event, returns the Flash-friendly "clipData" object; otherwise `undefined`. + * @static + */ + ZeroClipboard.emit = function() { + return _emit.apply(this, _args(arguments)); + }; + /** + * Create and embed the Flash object. + * + * @returns The Flash object + * @static + */ + ZeroClipboard.create = function() { + return _create.apply(this, _args(arguments)); + }; + /** + * Self-destruct and clean up everything, including the embedded Flash object. + * + * @returns `undefined` + * @static + */ + ZeroClipboard.destroy = function() { + return _destroy.apply(this, _args(arguments)); + }; + /** + * Set the pending data for clipboard injection. + * + * @returns `undefined` + * @static + */ + ZeroClipboard.setData = function() { + return _setData.apply(this, _args(arguments)); + }; + /** + * Clear the pending data for clipboard injection. + * If no `format` is provided, all pending data formats will be cleared. + * + * @returns `undefined` + * @static + */ + ZeroClipboard.clearData = function() { + return _clearData.apply(this, _args(arguments)); + }; + /** + * Get a copy of the pending data for clipboard injection. + * If no `format` is provided, a copy of ALL pending data formats will be returned. + * + * @returns `String` or `Object` + * @static + */ + ZeroClipboard.getData = function() { + return _getData.apply(this, _args(arguments)); + }; + /** + * Sets the current HTML object that the Flash object should overlay. This will put the global + * Flash object on top of the current element; depending on the setup, this may also set the + * pending clipboard text data as well as the Flash object's wrapping element's title attribute + * based on the underlying HTML element and ZeroClipboard configuration. + * + * @returns `undefined` + * @static + */ + ZeroClipboard.focus = ZeroClipboard.activate = function() { + return _focus.apply(this, _args(arguments)); + }; + /** + * Un-overlays the Flash object. This will put the global Flash object off-screen; depending on + * the setup, this may also unset the Flash object's wrapping element's title attribute based on + * the underlying HTML element and ZeroClipboard configuration. + * + * @returns `undefined` + * @static + */ + ZeroClipboard.blur = ZeroClipboard.deactivate = function() { + return _blur.apply(this, _args(arguments)); + }; + /** + * Returns the currently focused/"activated" HTML element that the Flash object is wrapping. + * + * @returns `HTMLElement` or `null` + * @static + */ + ZeroClipboard.activeElement = function() { + return _activeElement.apply(this, _args(arguments)); + }; + if (typeof define === "function" && define.amd) { + define(function() { + return ZeroClipboard; + }); + } else if (typeof module === "object" && module && typeof module.exports === "object" && module.exports) { + module.exports = ZeroClipboard; + } else { + window.ZeroClipboard = ZeroClipboard; + } + })(function() { + return this || window; + }()); + (function($, window, undefined) { + var mouseEnterBindingCount = 0, customEventNamespace = ".zeroclipboard", ZeroClipboard = window.ZeroClipboard, _trustedDomains = ZeroClipboard.config("trustedDomains"); + function getSelectionData() { + var range, selectedText = "", selectedData = {}, sel = window.getSelection(), tmp = document.createElement("div"); + for (var i = 0, len = sel.rangeCount; i < len; i++) { + range = sel.getRangeAt(i); + selectedText += range.toString(); + tmp.appendChild(range.cloneContents()); + } + selectedData["text/plain"] = selectedText; + if (selectedText.replace(/\s/g, "")) { + selectedData["text/html"] = tmp.innerHTML; + } + return selectedData; + } + function convertHtmlToRtf(html) { + if (!(typeof html === "string" && html)) { + return null; + } + var tmpRichText, hasHyperlinks, richText = html; + richText = richText.replace(/<(?:hr)(?:\s+[^>]*)?\s*[\/]?>/gi, "{\\pard \\brdrb \\brdrs \\brdrw10 \\brsp20 \\par}\n{\\pard\\par}\n"); + richText = richText.replace(/<(?:br)(?:\s+[^>]*)?\s*[\/]?>/gi, "{\\pard\\par}\n"); + richText = richText.replace(/<(?:p|div|section|article)(?:\s+[^>]*)?\s*[\/]>/gi, "{\\pard\\par}\n"); + richText = richText.replace(/<(?:[^>]+)\/>/g, ""); + richText = richText.replace(/]*)?(?:\s+href=(["'])(?:javascript:void\(0?\);?|#|return false;?|void\(0?\);?|)\1)(?:\s+[^>]*)?>/gi, "{{{\n"); + tmpRichText = richText; + richText = richText.replace(/]*)?(?:\s+href=(["'])(.+)\1)(?:\s+[^>]*)?>/gi, '{\\field{\\*\\fldinst{HYPERLINK\n "$2"\n}}{\\fldrslt{\\ul\\cf1\n'); + hasHyperlinks = richText !== tmpRichText; + richText = richText.replace(/]*)?>/gi, "{{{\n"); + richText = richText.replace(/<\/a(?:\s+[^>]*)?>/gi, "\n}}}"); + richText = richText.replace(/<(?:b|strong)(?:\s+[^>]*)?>/gi, "{\\b\n"); + richText = richText.replace(/<(?:i|em)(?:\s+[^>]*)?>/gi, "{\\i\n"); + richText = richText.replace(/<(?:u|ins)(?:\s+[^>]*)?>/gi, "{\\ul\n"); + richText = richText.replace(/<(?:strike|del)(?:\s+[^>]*)?>/gi, "{\\strike\n"); + richText = richText.replace(/]*)?>/gi, "{\\super\n"); + richText = richText.replace(/]*)?>/gi, "{\\sub\n"); + richText = richText.replace(/<(?:p|div|section|article)(?:\s+[^>]*)?>/gi, "{\\pard\n"); + richText = richText.replace(/<\/(?:p|div|section|article)(?:\s+[^>]*)?>/gi, "\n\\par}\n"); + richText = richText.replace(/<\/(?:b|strong|i|em|u|ins|strike|del|sup|sub)(?:\s+[^>]*)?>/gi, "\n}"); + richText = richText.replace(/<(?:[^>]+)>/g, ""); + richText = "{\\rtf1\\ansi\n" + (hasHyperlinks ? "{\\colortbl\n;\n\\red0\\green0\\blue255;\n}\n" : "") + richText + "\n}"; + return richText; + } + function zcEventHandler(e) { + var $event = $.Event(e.type, $.extend(e, { + _source: "swf" + })); + $(e.target).trigger($event); + if ($event.type === "copy") { + if ($.event.special.copy.options.requirePreventDefault === true && !$event.isDefaultPrevented()) { + e.clipboardData.clearData(); + var selectionData = getSelectionData(); + if (selectionData["text/plain"] || selectionData["text/html"]) { + e.clipboardData.setData(selectionData); + } + } + var _clipData = ZeroClipboard.getData(); + if ($.event.special.copy.options.autoConvertHtmlToRtf === true && _clipData["text/html"] && !_clipData["application/rtf"]) { + var richText = convertHtmlToRtf(_clipData["text/html"]); + e.clipboardData.setData("application/rtf", richText); + } + } + } + function zcErrorHandler(e) { + var $event = $.Event("copy-error", $.extend(e, { + type: "copy-error", + _source: "swf" + })); + $(e.target).trigger($event); + } + function setup() { + $.event.props.push("clipboardData"); + ZeroClipboard.config($.extend(true, { + autoActivate: false + }, copyEventDef.options)); + ZeroClipboard.on("beforecopy copy aftercopy", zcEventHandler); + ZeroClipboard.on("error", zcErrorHandler); + ZeroClipboard.create(); + } + function teardown() { + ZeroClipboard.destroy(); + var indy = $.event.props.indexOf("clipboardData"); + if (indy !== -1) { + $.event.props.splice(indy, 1); + } + } + function mouseEnterHandler($event) { + mouseSuppressor($event); + if ($event.target && $event.target !== ZeroClipboard.activeElement() && $event.target !== $("#" + ZeroClipboard.config("containerId"))[0] && $event.target !== $("#" + ZeroClipboard.config("swfObjectId"))[0]) { + ZeroClipboard.focus($event.target); + } + } + function mouseLeaveHandler($event) { + mouseSuppressor($event); + if ($event.relatedTarget && $event.relatedTarget !== ZeroClipboard.activeElement() && $event.relatedTarget !== $("#" + ZeroClipboard.config("containerId"))[0] && $event.relatedTarget !== $("#" + ZeroClipboard.config("swfObjectId"))[0]) { + ZeroClipboard.blur(); + } + } + function mouseSuppressor($event) { + if (!ZeroClipboard.isFlashUnusable() && $event.originalEvent._source !== "js") { + $event.stopImmediatePropagation(); + $event.preventDefault(); + } + } + var copyEventDef = { + add: function(handleObj) { + if (0 === mouseEnterBindingCount++) { + setup(); + } + var namespaces = customEventNamespace + (handleObj.namespace ? "." + handleObj.namespace : ""), selector = handleObj.selector, zcDataKey = "zc|{" + selector + "}|{" + namespaces + "}|count", $this = $(this); + if (typeof $this.data(zcDataKey) !== "number") { + $this.data(zcDataKey, 0); + } + if ($this.data(zcDataKey) === 0) { + $this.on("mouseenter" + namespaces, selector, mouseEnterHandler); + $this.on("mouseleave" + namespaces, selector, mouseLeaveHandler); + $this.on("mouseover" + namespaces, selector, mouseSuppressor); + $this.on("mouseout" + namespaces, selector, mouseSuppressor); + $this.on("mousemove" + namespaces, selector, mouseSuppressor); + $this.on("mousedown" + namespaces, selector, mouseSuppressor); + $this.on("mouseup" + namespaces, selector, mouseSuppressor); + $this.on("click" + namespaces, selector, mouseSuppressor); + } + $this.data(zcDataKey, $this.data(zcDataKey) + 1); + }, + remove: function(handleObj) { + var namespaces = customEventNamespace + (handleObj.namespace ? "." + handleObj.namespace : ""), selector = handleObj.selector, zcDataKey = "zc|{" + selector + "}|{" + namespaces + "}|count", $this = $(this); + $this.data(zcDataKey, $this.data(zcDataKey) - 1); + if ($this.data(zcDataKey) === 0) { + $this.off("click" + namespaces, selector, mouseSuppressor); + $this.off("mouseup" + namespaces, selector, mouseSuppressor); + $this.off("mousedown" + namespaces, selector, mouseSuppressor); + $this.off("mousemove" + namespaces, selector, mouseSuppressor); + $this.off("mouseout" + namespaces, selector, mouseSuppressor); + $this.off("mouseover" + namespaces, selector, mouseSuppressor); + $this.off("mouseleave" + namespaces, selector, mouseLeaveHandler); + $this.off("mouseenter" + namespaces, selector, mouseEnterHandler); + $this.removeData(zcDataKey); + } + if (0 === --mouseEnterBindingCount) { + teardown(); + } + }, + trigger: function($event) { + if ($event.type === "copy") { + var $this = $(this); + var sourceIsSwf = $event._source === "swf"; + delete $event._source; + if (!sourceIsSwf) { + $this.trigger($.extend(true, {}, $event, { + type: "beforecopy" + })); + $this.one("copy", function() { + var successData = {}, _clipData = ZeroClipboard.getData(); + $.each(_clipData, function(key) { + successData[key] = false; + }); + var $e = $.extend(true, {}, $event, { + type: "aftercopy", + data: $.extend(true, {}, _clipData), + success: successData + }); + $this.trigger($e); + }); + } + } + }, + _default: function() { + return true; + }, + options: { + requirePreventDefault: true, + autoConvertHtmlToRtf: true, + trustedDomains: _trustedDomains, + hoverClass: "hover", + activeClass: "active" + } + }; + $.event.special.beforecopy = copyEventDef; + $.event.special.copy = copyEventDef; + $.event.special.aftercopy = copyEventDef; + $.event.special["copy-error"] = copyEventDef; + })(jQuery, function() { + return this || window; + }()); + if (!zcExistsAlready) { + delete window.ZeroClipboard; + } +})(jQuery, function() { + return this || window; +}()); \ No newline at end of file diff --git a/assets/js/zeroclipboard/jquery.zeroclipboard.min.js b/assets/js/zeroclipboard/jquery.zeroclipboard.min.js new file mode 100644 index 00000000000..49f60eeea9f --- /dev/null +++ b/assets/js/zeroclipboard/jquery.zeroclipboard.min.js @@ -0,0 +1,17 @@ +/*! + * jquery.zeroclipboard + * Bind to the `beforecopy`, `copy`, `aftercopy`, and `copy-error` events, custom DOM-like events for clipboard injection generated using jQuery's Special Events API and ZeroClipboard's Core module. + * Copyright (c) 2014 + * Licensed MIT + * https://github.com/zeroclipboard/jquery.zeroclipboard + * v0.2.0 + */ +!function(a,b){"use strict";var c,d=!!b.ZeroClipboard;/*! + * ZeroClipboard + * The ZeroClipboard library provides an easy way to copy text to the clipboard using an invisible Adobe Flash movie and a JavaScript interface. + * Copyright (c) 2014 Jon Rohan, James M. Greene + * Licensed MIT + * http://zeroclipboard.org/ + * v2.1.2 + */ +!function(a,b){var d,e=a,f=e.document,g=e.navigator,h=e.setTimeout,i=e.encodeURIComponent,j=e.ActiveXObject,k=e.Number.parseInt||e.parseInt,l=e.Number.parseFloat||e.parseFloat,m=e.Number.isNaN||e.isNaN,n=e.Math.round,o=e.Date.now,p=e.Object.keys,q=e.Object.defineProperty,r=e.Object.prototype.hasOwnProperty,s=e.Array.prototype.slice,t=function(a){return s.call(a,0)},u=function(){var a,c,d,e,f,g,h=t(arguments),i=h[0]||{};for(a=1,c=h.length;c>a;a++)if(null!=(d=h[a]))for(e in d)r.call(d,e)&&(f=i[e],g=d[e],i!==g&&g!==b&&(i[e]=g));return i},v=function(a){var b,c,d,e;if("object"!=typeof a||null==a)b=a;else if("number"==typeof a.length)for(b=[],c=0,d=a.length;d>c;c++)r.call(a,c)&&(b[c]=v(a[c]));else{b={};for(e in a)r.call(a,e)&&(b[e]=v(a[e]))}return b},w=function(a,b){for(var c={},d=0,e=b.length;e>d;d++)b[d]in a&&(c[b[d]]=a[b[d]]);return c},x=function(a,b){var c={};for(var d in a)-1===b.indexOf(d)&&(c[d]=a[d]);return c},y=function(a){if(a)for(var b in a)r.call(a,b)&&delete a[b];return a},z=function(a,b){if(a&&1===a.nodeType&&a.ownerDocument&&b&&(1===b.nodeType&&b.ownerDocument&&b.ownerDocument===a.ownerDocument||9===b.nodeType&&!b.ownerDocument&&b===a.ownerDocument))do{if(a===b)return!0;a=a.parentNode}while(a);return!1},A={bridge:null,version:"0.0.0",pluginType:"unknown",disabled:null,outdated:null,unavailable:null,deactivated:null,overdue:null,ready:null},B="11.0.0",C={},D={},E=null,F={ready:"Flash communication is established",error:{"flash-disabled":"Flash is disabled or not installed","flash-outdated":"Flash is too outdated to support ZeroClipboard","flash-unavailable":"Flash is unable to communicate bidirectionally with JavaScript","flash-deactivated":"Flash is too outdated for your browser and/or is configured as click-to-activate","flash-overdue":"Flash communication was established but NOT within the acceptable time limit"}},G=function(){var a,b,c,d,e="ZeroClipboard.swf";if(!f.currentScript||!(d=f.currentScript.src)){var g=f.getElementsByTagName("script");if("readyState"in g[0])for(a=g.length;a--&&("interactive"!==g[a].readyState||!(d=g[a].src)););else if("loading"===f.readyState)d=g[g.length-1].src;else{for(a=g.length;a--;){if(c=g[a].src,!c){b=null;break}if(c=c.split("#")[0].split("?")[0],c=c.slice(0,c.lastIndexOf("/")+1),null==b)b=c;else if(b!==c){b=null;break}}null!==b&&(d=b)}}return d&&(d=d.split("#")[0].split("?")[0],e=d.slice(0,d.lastIndexOf("/")+1)+e),e}(),H={swfPath:G,trustedDomains:a.location.host?[a.location.host]:[],cacheBust:!0,forceEnhancedClipboard:!1,flashLoadTimeout:3e4,autoActivate:!0,bubbleEvents:!0,containerId:"global-zeroclipboard-html-bridge",containerClass:"global-zeroclipboard-container",swfObjectId:"global-zeroclipboard-flash-bridge",hoverClass:"zeroclipboard-is-hover",activeClass:"zeroclipboard-is-active",forceHandCursor:!1,title:null,zIndex:999999999},I=function(a){if("object"==typeof a&&null!==a)for(var b in a)if(r.call(a,b))if(/^(?:forceHandCursor|title|zIndex|bubbleEvents)$/.test(b))H[b]=a[b];else if(null==A.bridge)if("containerId"===b||"swfObjectId"===b){if(!X(a[b]))throw new Error("The specified `"+b+"` value is not valid as an HTML4 Element ID");H[b]=a[b]}else H[b]=a[b];{if("string"!=typeof a||!a)return v(H);if(r.call(H,a))return H[a]}},J=function(){return{browser:w(g,["userAgent","platform","appName"]),flash:x(A,["bridge"]),zeroclipboard:{version:yb.version,config:yb.config()}}},K=function(){return!!(A.disabled||A.outdated||A.unavailable||A.deactivated)},L=function(a,b){var c,d,e,f={};if("string"==typeof a&&a)e=a.toLowerCase().split(/\s+/);else if("object"==typeof a&&a&&"undefined"==typeof b)for(c in a)r.call(a,c)&&"string"==typeof c&&c&&"function"==typeof a[c]&&yb.on(c,a[c]);if(e&&e.length){for(c=0,d=e.length;d>c;c++)a=e[c].replace(/^on/,""),f[a]=!0,C[a]||(C[a]=[]),C[a].push(b);if(f.ready&&A.ready&&yb.emit({type:"ready"}),f.error){var g=["disabled","outdated","unavailable","deactivated","overdue"];for(c=0,d=g.length;d>c;c++)if(A[g[c]]===!0){yb.emit({type:"error",name:"flash-"+g[c]});break}}}return yb},M=function(a,b){var c,d,e,f,g;if(0===arguments.length)f=p(C);else if("string"==typeof a&&a)f=a.split(/\s+/);else if("object"==typeof a&&a&&"undefined"==typeof b)for(c in a)r.call(a,c)&&"string"==typeof c&&c&&"function"==typeof a[c]&&yb.off(c,a[c]);if(f&&f.length)for(c=0,d=f.length;d>c;c++)if(a=f[c].toLowerCase().replace(/^on/,""),g=C[a],g&&g.length)if(b)for(e=g.indexOf(b);-1!==e;)g.splice(e,1),e=g.indexOf(b,e);else g.length=0;return yb},N=function(a){var b;return b="string"==typeof a&&a?v(C[a])||null:v(C)},O=function(a){var b,c,d;return a=Y(a),a&&!cb(a)?"ready"===a.type&&A.overdue===!0?yb.emit({type:"error",name:"flash-overdue"}):(b=u({},a),bb.call(this,b),"copy"===a.type&&(d=ib(D),c=d.data,E=d.formatMap),c):void 0},P=function(){if("boolean"!=typeof A.ready&&(A.ready=!1),!yb.isFlashUnusable()&&null===A.bridge){var a=H.flashLoadTimeout;"number"==typeof a&&a>=0&&h(function(){"boolean"!=typeof A.deactivated&&(A.deactivated=!0),A.deactivated===!0&&yb.emit({type:"error",name:"flash-deactivated"})},a),A.overdue=!1,gb()}},Q=function(){yb.clearData(),yb.blur(),yb.emit("destroy"),hb(),yb.off()},R=function(a,b){var c;if("object"==typeof a&&a&&"undefined"==typeof b)c=a,yb.clearData();else{if("string"!=typeof a||!a)return;c={},c[a]=b}for(var d in c)"string"==typeof d&&d&&r.call(c,d)&&"string"==typeof c[d]&&c[d]&&(D[d]=c[d])},S=function(a){"undefined"==typeof a?(y(D),E=null):"string"==typeof a&&r.call(D,a)&&delete D[a]},T=function(a){return"undefined"==typeof a?v(D):"string"==typeof a&&r.call(D,a)?D[a]:void 0},U=function(a){if(a&&1===a.nodeType){d&&(qb(d,H.activeClass),d!==a&&qb(d,H.hoverClass)),d=a,pb(a,H.hoverClass);var b=a.getAttribute("title")||H.title;if("string"==typeof b&&b){var c=fb(A.bridge);c&&c.setAttribute("title",b)}var e=H.forceHandCursor===!0||"pointer"===rb(a,"cursor");vb(e),ub()}},V=function(){var a=fb(A.bridge);a&&(a.removeAttribute("title"),a.style.left="0px",a.style.top="-9999px",a.style.width="1px",a.style.top="1px"),d&&(qb(d,H.hoverClass),qb(d,H.activeClass),d=null)},W=function(){return d||null},X=function(a){return"string"==typeof a&&a&&/^[A-Za-z][A-Za-z0-9_:\-\.]*$/.test(a)},Y=function(a){var b;if("string"==typeof a&&a?(b=a,a={}):"object"==typeof a&&a&&"string"==typeof a.type&&a.type&&(b=a.type),b){u(a,{type:b.toLowerCase(),target:a.target||d||null,relatedTarget:a.relatedTarget||null,currentTarget:A&&A.bridge||null,timeStamp:a.timeStamp||o()||null});var c=F[a.type];return"error"===a.type&&a.name&&c&&(c=c[a.name]),c&&(a.message=c),"ready"===a.type&&u(a,{target:null,version:A.version}),"error"===a.type&&(/^flash-(disabled|outdated|unavailable|deactivated|overdue)$/.test(a.name)&&u(a,{target:null,minimumVersion:B}),/^flash-(outdated|unavailable|deactivated|overdue)$/.test(a.name)&&u(a,{version:A.version})),"copy"===a.type&&(a.clipboardData={setData:yb.setData,clearData:yb.clearData}),"aftercopy"===a.type&&(a=jb(a,E)),a.target&&!a.relatedTarget&&(a.relatedTarget=Z(a.target)),a=$(a)}},Z=function(a){var b=a&&a.getAttribute&&a.getAttribute("data-clipboard-target");return b?f.getElementById(b):null},$=function(a){if(a&&/^_(?:click|mouse(?:over|out|down|up|move))$/.test(a.type)){var c=a.target,d="_mouseover"===a.type&&a.relatedTarget?a.relatedTarget:b,g="_mouseout"===a.type&&a.relatedTarget?a.relatedTarget:b,h=tb(c),i=e.screenLeft||e.screenX||0,j=e.screenTop||e.screenY||0,k=f.body.scrollLeft+f.documentElement.scrollLeft,l=f.body.scrollTop+f.documentElement.scrollTop,m=h.left+("number"==typeof a._stageX?a._stageX:0),n=h.top+("number"==typeof a._stageY?a._stageY:0),o=m-k,p=n-l,q=i+o,r=j+p,s="number"==typeof a.movementX?a.movementX:0,t="number"==typeof a.movementY?a.movementY:0;delete a._stageX,delete a._stageY,u(a,{srcElement:c,fromElement:d,toElement:g,screenX:q,screenY:r,pageX:m,pageY:n,clientX:o,clientY:p,x:o,y:p,movementX:s,movementY:t,offsetX:0,offsetY:0,layerX:0,layerY:0})}return a},_=function(a){var b=a&&"string"==typeof a.type&&a.type||"";return!/^(?:(?:before)?copy|destroy)$/.test(b)},ab=function(a,b,c,d){d?h(function(){a.apply(b,c)},0):a.apply(b,c)},bb=function(a){if("object"==typeof a&&a&&a.type){var b=_(a),c=C["*"]||[],d=C[a.type]||[],f=c.concat(d);if(f&&f.length){var g,h,i,j,k,l=this;for(g=0,h=f.length;h>g;g++)i=f[g],j=l,"string"==typeof i&&"function"==typeof e[i]&&(i=e[i]),"object"==typeof i&&i&&"function"==typeof i.handleEvent&&(j=i,i=i.handleEvent),"function"==typeof i&&(k=u({},a),ab(i,j,[k],b))}return this}},cb=function(a){var b=a.target||d||null,c="swf"===a._source;delete a._source;var e=["flash-disabled","flash-outdated","flash-unavailable","flash-deactivated","flash-overdue"];switch(a.type){case"error":-1!==e.indexOf(a.name)&&u(A,{disabled:"flash-disabled"===a.name,outdated:"flash-outdated"===a.name,unavailable:"flash-unavailable"===a.name,deactivated:"flash-deactivated"===a.name,overdue:"flash-overdue"===a.name,ready:!1});break;case"ready":var f=A.deactivated===!0;u(A,{disabled:!1,outdated:!1,unavailable:!1,deactivated:!1,overdue:f,ready:!f});break;case"copy":var g,h,i=a.relatedTarget;!D["text/html"]&&!D["text/plain"]&&i&&(h=i.value||i.outerHTML||i.innerHTML)&&(g=i.value||i.textContent||i.innerText)?(a.clipboardData.clearData(),a.clipboardData.setData("text/plain",g),h!==g&&a.clipboardData.setData("text/html",h)):!D["text/plain"]&&a.target&&(g=a.target.getAttribute("data-clipboard-text"))&&(a.clipboardData.clearData(),a.clipboardData.setData("text/plain",g));break;case"aftercopy":yb.clearData(),b&&b!==ob()&&b.focus&&b.focus();break;case"_mouseover":yb.focus(b),H.bubbleEvents===!0&&c&&(b&&b!==a.relatedTarget&&!z(a.relatedTarget,b)&&db(u({},a,{type:"mouseenter",bubbles:!1,cancelable:!1})),db(u({},a,{type:"mouseover"})));break;case"_mouseout":yb.blur(),H.bubbleEvents===!0&&c&&(b&&b!==a.relatedTarget&&!z(a.relatedTarget,b)&&db(u({},a,{type:"mouseleave",bubbles:!1,cancelable:!1})),db(u({},a,{type:"mouseout"})));break;case"_mousedown":pb(b,H.activeClass),H.bubbleEvents===!0&&c&&db(u({},a,{type:a.type.slice(1)}));break;case"_mouseup":qb(b,H.activeClass),H.bubbleEvents===!0&&c&&db(u({},a,{type:a.type.slice(1)}));break;case"_click":case"_mousemove":H.bubbleEvents===!0&&c&&db(u({},a,{type:a.type.slice(1)}))}return/^_(?:click|mouse(?:over|out|down|up|move))$/.test(a.type)?!0:void 0},db=function(a){if(a&&"string"==typeof a.type&&a){var b,c=a.target||null,d=c&&c.ownerDocument||f,g={view:d.defaultView||e,canBubble:!0,cancelable:!0,detail:"click"===a.type?1:0,button:"number"==typeof a.which?a.which-1:"number"==typeof a.button?a.button:d.createEvent?0:1},h=u(g,a);c&&d.createEvent&&c.dispatchEvent&&(h=[h.type,h.canBubble,h.cancelable,h.view,h.detail,h.screenX,h.screenY,h.clientX,h.clientY,h.ctrlKey,h.altKey,h.shiftKey,h.metaKey,h.button,h.relatedTarget],b=d.createEvent("MouseEvents"),b.initMouseEvent&&(b.initMouseEvent.apply(b,h),b._source="js",c.dispatchEvent(b)))}},eb=function(){var a=f.createElement("div");return a.id=H.containerId,a.className=H.containerClass,a.style.position="absolute",a.style.left="0px",a.style.top="-9999px",a.style.width="1px",a.style.height="1px",a.style.zIndex=""+wb(H.zIndex),a},fb=function(a){for(var b=a&&a.parentNode;b&&"OBJECT"===b.nodeName&&b.parentNode;)b=b.parentNode;return b||null},gb=function(){var a,b=A.bridge,c=fb(b);if(!b){var d=nb(e.location.host,H),g="never"===d?"none":"all",h=lb(H),i=H.swfPath+kb(H.swfPath,H);c=eb();var j=f.createElement("div");c.appendChild(j),f.body.appendChild(c);var k=f.createElement("div"),l="activex"===A.pluginType;k.innerHTML='"+(l?'':"")+'',b=k.firstChild,k=null,b.ZeroClipboard=yb,c.replaceChild(b,j)}return b||(b=f[H.swfObjectId],b&&(a=b.length)&&(b=b[a-1]),!b&&c&&(b=c.firstChild)),A.bridge=b||null,b},hb=function(){var a=A.bridge;if(a){var b=fb(a);b&&("activex"===A.pluginType&&"readyState"in a?(a.style.display="none",function c(){if(4===a.readyState){for(var d in a)"function"==typeof a[d]&&(a[d]=null);a.parentNode&&a.parentNode.removeChild(a),b.parentNode&&b.parentNode.removeChild(b)}else h(c,10)}()):(a.parentNode&&a.parentNode.removeChild(a),b.parentNode&&b.parentNode.removeChild(b))),A.ready=null,A.bridge=null,A.deactivated=null}},ib=function(a){var b={},c={};if("object"==typeof a&&a){for(var d in a)if(d&&r.call(a,d)&&"string"==typeof a[d]&&a[d])switch(d.toLowerCase()){case"text/plain":case"text":case"air:text":case"flash:text":b.text=a[d],c.text=d;break;case"text/html":case"html":case"air:html":case"flash:html":b.html=a[d],c.html=d;break;case"application/rtf":case"text/rtf":case"rtf":case"richtext":case"air:rtf":case"flash:rtf":b.rtf=a[d],c.rtf=d}return{data:b,formatMap:c}}},jb=function(a,b){if("object"!=typeof a||!a||"object"!=typeof b||!b)return a;var c={};for(var d in a)if(r.call(a,d)){if("success"!==d&&"data"!==d){c[d]=a[d];continue}c[d]={};var e=a[d];for(var f in e)f&&r.call(e,f)&&r.call(b,f)&&(c[d][b[f]]=e[f])}return c},kb=function(a,b){var c=null==b||b&&b.cacheBust===!0;return c?(-1===a.indexOf("?")?"?":"&")+"noCache="+o():""},lb=function(a){var b,c,d,f,g="",h=[];if(a.trustedDomains&&("string"==typeof a.trustedDomains?f=[a.trustedDomains]:"object"==typeof a.trustedDomains&&"length"in a.trustedDomains&&(f=a.trustedDomains)),f&&f.length)for(b=0,c=f.length;c>b;b++)if(r.call(f,b)&&f[b]&&"string"==typeof f[b]){if(d=mb(f[b]),!d)continue;if("*"===d){h.length=0,h.push(d);break}h.push.apply(h,[d,"//"+d,e.location.protocol+"//"+d])}return h.length&&(g+="trustedOrigins="+i(h.join(","))),a.forceEnhancedClipboard===!0&&(g+=(g?"&":"")+"forceEnhancedClipboard=true"),"string"==typeof a.swfObjectId&&a.swfObjectId&&(g+=(g?"&":"")+"swfObjectId="+i(a.swfObjectId)),g},mb=function(a){if(null==a||""===a)return null;if(a=a.replace(/^\s+|\s+$/g,""),""===a)return null;var b=a.indexOf("//");a=-1===b?a:a.slice(b+2);var c=a.indexOf("/");return a=-1===c?a:-1===b||0===c?null:a.slice(0,c),a&&".swf"===a.slice(-4).toLowerCase()?null:a||null},nb=function(){var a=function(a){var b,c,d,e=[];if("string"==typeof a&&(a=[a]),"object"!=typeof a||!a||"number"!=typeof a.length)return e;for(b=0,c=a.length;c>b;b++)if(r.call(a,b)&&(d=mb(a[b]))){if("*"===d){e.length=0,e.push("*");break}-1===e.indexOf(d)&&e.push(d)}return e};return function(b,c){var d=mb(c.swfPath);null===d&&(d=b);var e=a(c.trustedDomains),f=e.length;if(f>0){if(1===f&&"*"===e[0])return"always";if(-1!==e.indexOf(b))return 1===f&&b===d?"sameDomain":"always"}return"never"}}(),ob=function(){try{return f.activeElement}catch(a){return null}},pb=function(a,b){if(!a||1!==a.nodeType)return a;if(a.classList)return a.classList.contains(b)||a.classList.add(b),a;if(b&&"string"==typeof b){var c=(b||"").split(/\s+/);if(1===a.nodeType)if(a.className){for(var d=" "+a.className+" ",e=a.className,f=0,g=c.length;g>f;f++)d.indexOf(" "+c[f]+" ")<0&&(e+=" "+c[f]);a.className=e.replace(/^\s+|\s+$/g,"")}else a.className=b}return a},qb=function(a,b){if(!a||1!==a.nodeType)return a;if(a.classList)return a.classList.contains(b)&&a.classList.remove(b),a;if("string"==typeof b&&b){var c=b.split(/\s+/);if(1===a.nodeType&&a.className){for(var d=(" "+a.className+" ").replace(/[\n\t]/g," "),e=0,f=c.length;f>e;e++)d=d.replace(" "+c[e]+" "," ");a.className=d.replace(/^\s+|\s+$/g,"")}}return a},rb=function(a,b){var c=e.getComputedStyle(a,null).getPropertyValue(b);return"cursor"!==b||c&&"auto"!==c||"A"!==a.nodeName?c:"pointer"},sb=function(){var a,b,c,d=1;return"function"==typeof f.body.getBoundingClientRect&&(a=f.body.getBoundingClientRect(),b=a.right-a.left,c=f.body.offsetWidth,d=n(b/c*100)/100),d},tb=function(a){var b={left:0,top:0,width:0,height:0};if(a.getBoundingClientRect){var c,d,g,h=a.getBoundingClientRect();"pageXOffset"in e&&"pageYOffset"in e?(c=e.pageXOffset,d=e.pageYOffset):(g=sb(),c=n(f.documentElement.scrollLeft/g),d=n(f.documentElement.scrollTop/g));var i=f.documentElement.clientLeft||0,j=f.documentElement.clientTop||0;b.left=h.left+c-i,b.top=h.top+d-j,b.width="width"in h?h.width:h.right-h.left,b.height="height"in h?h.height:h.bottom-h.top}return b},ub=function(){var a;if(d&&(a=fb(A.bridge))){var b=tb(d);u(a.style,{width:b.width+"px",height:b.height+"px",top:b.top+"px",left:b.left+"px",zIndex:""+wb(H.zIndex)})}},vb=function(a){A.ready===!0&&(A.bridge&&"function"==typeof A.bridge.setHandCursor?A.bridge.setHandCursor(a):A.ready=!1)},wb=function(a){if(/^(?:auto|inherit)$/.test(a))return a;var b;return"number"!=typeof a||m(a)?"string"==typeof a&&(b=wb(k(a,10))):b=a,"number"==typeof b?b:"auto"},xb=function(a){function b(a){var b=a.match(/[\d]+/g);return b.length=3,b.join(".")}function c(a){return!!a&&(a=a.toLowerCase())&&(/^(pepflashplayer\.dll|libpepflashplayer\.so|pepperflashplayer\.plugin)$/.test(a)||"chrome.plugin"===a.slice(-13))}function d(a){a&&(i=!0,a.version&&(m=b(a.version)),!m&&a.description&&(m=b(a.description)),a.filename&&(k=c(a.filename)))}var e,f,h,i=!1,j=!1,k=!1,m="";if(g.plugins&&g.plugins.length)e=g.plugins["Shockwave Flash"],d(e),g.plugins["Shockwave Flash 2.0"]&&(i=!0,m="2.0.0.11");else if(g.mimeTypes&&g.mimeTypes.length)h=g.mimeTypes["application/x-shockwave-flash"],e=h&&h.enabledPlugin,d(e);else if("undefined"!=typeof a){j=!0;try{f=new a("ShockwaveFlash.ShockwaveFlash.7"),i=!0,m=b(f.GetVariable("$version"))}catch(n){try{f=new a("ShockwaveFlash.ShockwaveFlash.6"),i=!0,m="6.0.21"}catch(o){try{f=new a("ShockwaveFlash.ShockwaveFlash"),i=!0,m=b(f.GetVariable("$version"))}catch(p){j=!1}}}}A.disabled=i!==!0,A.outdated=m&&l(m)g;g++)a=e.getRangeAt(g),c+=a.toString(),f.appendChild(a.cloneContents());return d["text/plain"]=c,c.replace(/\s/g,"")&&(d["text/html"]=f.innerHTML),d}function d(a){if("string"!=typeof a||!a)return null;var b,c,d=a;return d=d.replace(/<(?:hr)(?:\s+[^>]*)?\s*[\/]?>/gi,"{\\pard \\brdrb \\brdrs \\brdrw10 \\brsp20 \\par}\n{\\pard\\par}\n"),d=d.replace(/<(?:br)(?:\s+[^>]*)?\s*[\/]?>/gi,"{\\pard\\par}\n"),d=d.replace(/<(?:p|div|section|article)(?:\s+[^>]*)?\s*[\/]>/gi,"{\\pard\\par}\n"),d=d.replace(/<(?:[^>]+)\/>/g,""),d=d.replace(/]*)?(?:\s+href=(["'])(?:javascript:void\(0?\);?|#|return false;?|void\(0?\);?|)\1)(?:\s+[^>]*)?>/gi,"{{{\n"),b=d,d=d.replace(/]*)?(?:\s+href=(["'])(.+)\1)(?:\s+[^>]*)?>/gi,'{\\field{\\*\\fldinst{HYPERLINK\n "$2"\n}}{\\fldrslt{\\ul\\cf1\n'),c=d!==b,d=d.replace(/]*)?>/gi,"{{{\n"),d=d.replace(/<\/a(?:\s+[^>]*)?>/gi,"\n}}}"),d=d.replace(/<(?:b|strong)(?:\s+[^>]*)?>/gi,"{\\b\n"),d=d.replace(/<(?:i|em)(?:\s+[^>]*)?>/gi,"{\\i\n"),d=d.replace(/<(?:u|ins)(?:\s+[^>]*)?>/gi,"{\\ul\n"),d=d.replace(/<(?:strike|del)(?:\s+[^>]*)?>/gi,"{\\strike\n"),d=d.replace(/]*)?>/gi,"{\\super\n"),d=d.replace(/]*)?>/gi,"{\\sub\n"),d=d.replace(/<(?:p|div|section|article)(?:\s+[^>]*)?>/gi,"{\\pard\n"),d=d.replace(/<\/(?:p|div|section|article)(?:\s+[^>]*)?>/gi,"\n\\par}\n"),d=d.replace(/<\/(?:b|strong|i|em|u|ins|strike|del|sup|sub)(?:\s+[^>]*)?>/gi,"\n}"),d=d.replace(/<(?:[^>]+)>/g,""),d="{\\rtf1\\ansi\n"+(c?"{\\colortbl\n;\n\\red0\\green0\\blue255;\n}\n":"")+d+"\n}"}function e(b){var e=a.Event(b.type,a.extend(b,{_source:"swf"}));if(a(b.target).trigger(e),"copy"===e.type){if(a.event.special.copy.options.requirePreventDefault===!0&&!e.isDefaultPrevented()){b.clipboardData.clearData();var f=c();(f["text/plain"]||f["text/html"])&&b.clipboardData.setData(f)}var g=n.getData();if(a.event.special.copy.options.autoConvertHtmlToRtf===!0&&g["text/html"]&&!g["application/rtf"]){var h=d(g["text/html"]);b.clipboardData.setData("application/rtf",h)}}}function f(b){var c=a.Event("copy-error",a.extend(b,{type:"copy-error",_source:"swf"}));a(b.target).trigger(c)}function g(){a.event.props.push("clipboardData"),n.config(a.extend(!0,{autoActivate:!1},p.options)),n.on("beforecopy copy aftercopy",e),n.on("error",f),n.create()}function h(){n.destroy();var b=a.event.props.indexOf("clipboardData");-1!==b&&a.event.props.splice(b,1)}function i(b){k(b),b.target&&b.target!==n.activeElement()&&b.target!==a("#"+n.config("containerId"))[0]&&b.target!==a("#"+n.config("swfObjectId"))[0]&&n.focus(b.target)}function j(b){k(b),b.relatedTarget&&b.relatedTarget!==n.activeElement()&&b.relatedTarget!==a("#"+n.config("containerId"))[0]&&b.relatedTarget!==a("#"+n.config("swfObjectId"))[0]&&n.blur()}function k(a){n.isFlashUnusable()||"js"===a.originalEvent._source||(a.stopImmediatePropagation(),a.preventDefault())}var l=0,m=".zeroclipboard",n=b.ZeroClipboard,o=n.config("trustedDomains"),p={add:function(b){0===l++&&g();var c=m+(b.namespace?"."+b.namespace:""),d=b.selector,e="zc|{"+d+"}|{"+c+"}|count",f=a(this);"number"!=typeof f.data(e)&&f.data(e,0),0===f.data(e)&&(f.on("mouseenter"+c,d,i),f.on("mouseleave"+c,d,j),f.on("mouseover"+c,d,k),f.on("mouseout"+c,d,k),f.on("mousemove"+c,d,k),f.on("mousedown"+c,d,k),f.on("mouseup"+c,d,k),f.on("click"+c,d,k)),f.data(e,f.data(e)+1)},remove:function(b){var c=m+(b.namespace?"."+b.namespace:""),d=b.selector,e="zc|{"+d+"}|{"+c+"}|count",f=a(this);f.data(e,f.data(e)-1),0===f.data(e)&&(f.off("click"+c,d,k),f.off("mouseup"+c,d,k),f.off("mousedown"+c,d,k),f.off("mousemove"+c,d,k),f.off("mouseout"+c,d,k),f.off("mouseover"+c,d,k),f.off("mouseleave"+c,d,j),f.off("mouseenter"+c,d,i),f.removeData(e)),0===--l&&h()},trigger:function(b){if("copy"===b.type){var c=a(this),d="swf"===b._source;delete b._source,d||(c.trigger(a.extend(!0,{},b,{type:"beforecopy"})),c.one("copy",function(){var d={},e=n.getData();a.each(e,function(a){d[a]=!1});var f=a.extend(!0,{},b,{type:"aftercopy",data:a.extend(!0,{},e),success:d});c.trigger(f)}))}},_default:function(){return!0},options:{requirePreventDefault:!0,autoConvertHtmlToRtf:!0,trustedDomains:o,hoverClass:"hover",activeClass:"active"}};a.event.special.beforecopy=p,a.event.special.copy=p,a.event.special.aftercopy=p,a.event.special["copy-error"]=p}(jQuery,function(){return this||b}()),d||delete b.ZeroClipboard}(jQuery,function(){return this||window}()); \ No newline at end of file diff --git a/dummy-data/dummy-data.xml b/dummy-data/dummy-data.xml index 73c569db330..6f01eb8090b 100644 --- a/dummy-data/dummy-data.xml +++ b/dummy-data/dummy-data.xml @@ -37,16 +37,9 @@ 17pa_colorblack 19pa_colorblue - 12shop_order_statuscancelled - 10shop_order_statuscompleted 5product_typeexternal - 7shop_order_statusfailed 16pa_colorgreen 3product_typegrouped - 8shop_order_statuson-hold - 6shop_order_statuspending - 9shop_order_statusprocessing - 11shop_order_statusrefunded 2product_typesimple 4product_typevariable 14product_catclothing diff --git a/i18n/countries.php b/i18n/countries.php new file mode 100644 index 00000000000..a5312d5aba5 --- /dev/null +++ b/i18n/countries.php @@ -0,0 +1,260 @@ + __( 'Afghanistan', 'woocommerce' ), + 'AX' => __( 'Åland Islands', 'woocommerce' ), + 'AL' => __( 'Albania', 'woocommerce' ), + 'DZ' => __( 'Algeria', 'woocommerce' ), + 'AD' => __( 'Andorra', 'woocommerce' ), + 'AO' => __( 'Angola', 'woocommerce' ), + 'AI' => __( 'Anguilla', 'woocommerce' ), + 'AQ' => __( 'Antarctica', 'woocommerce' ), + 'AG' => __( 'Antigua and Barbuda', 'woocommerce' ), + 'AR' => __( 'Argentina', 'woocommerce' ), + 'AM' => __( 'Armenia', 'woocommerce' ), + 'AW' => __( 'Aruba', 'woocommerce' ), + 'AU' => __( 'Australia', 'woocommerce' ), + 'AT' => __( 'Austria', 'woocommerce' ), + 'AZ' => __( 'Azerbaijan', 'woocommerce' ), + 'BS' => __( 'Bahamas', 'woocommerce' ), + 'BH' => __( 'Bahrain', 'woocommerce' ), + 'BD' => __( 'Bangladesh', 'woocommerce' ), + 'BB' => __( 'Barbados', 'woocommerce' ), + 'BY' => __( 'Belarus', 'woocommerce' ), + 'BE' => __( 'Belgium', 'woocommerce' ), + 'PW' => __( 'Belau', 'woocommerce' ), + 'BZ' => __( 'Belize', 'woocommerce' ), + 'BJ' => __( 'Benin', 'woocommerce' ), + 'BM' => __( 'Bermuda', 'woocommerce' ), + 'BT' => __( 'Bhutan', 'woocommerce' ), + 'BO' => __( 'Bolivia', 'woocommerce' ), + 'BQ' => __( 'Bonaire, Saint Eustatius and Saba', 'woocommerce' ), + 'BA' => __( 'Bosnia and Herzegovina', 'woocommerce' ), + 'BW' => __( 'Botswana', 'woocommerce' ), + 'BV' => __( 'Bouvet Island', 'woocommerce' ), + 'BR' => __( 'Brazil', 'woocommerce' ), + 'IO' => __( 'British Indian Ocean Territory', 'woocommerce' ), + 'VG' => __( 'British Virgin Islands', 'woocommerce' ), + 'BN' => __( 'Brunei', 'woocommerce' ), + 'BG' => __( 'Bulgaria', 'woocommerce' ), + 'BF' => __( 'Burkina Faso', 'woocommerce' ), + 'BI' => __( 'Burundi', 'woocommerce' ), + 'KH' => __( 'Cambodia', 'woocommerce' ), + 'CM' => __( 'Cameroon', 'woocommerce' ), + 'CA' => __( 'Canada', 'woocommerce' ), + 'CV' => __( 'Cape Verde', 'woocommerce' ), + 'KY' => __( 'Cayman Islands', 'woocommerce' ), + 'CF' => __( 'Central African Republic', 'woocommerce' ), + 'TD' => __( 'Chad', 'woocommerce' ), + 'CL' => __( 'Chile', 'woocommerce' ), + 'CN' => __( 'China', 'woocommerce' ), + 'CX' => __( 'Christmas Island', 'woocommerce' ), + 'CC' => __( 'Cocos (Keeling) Islands', 'woocommerce' ), + 'CO' => __( 'Colombia', 'woocommerce' ), + 'KM' => __( 'Comoros', 'woocommerce' ), + 'CG' => __( 'Congo (Brazzaville)', 'woocommerce' ), + 'CD' => __( 'Congo (Kinshasa)', 'woocommerce' ), + 'CK' => __( 'Cook Islands', 'woocommerce' ), + 'CR' => __( 'Costa Rica', 'woocommerce' ), + 'HR' => __( 'Croatia', 'woocommerce' ), + 'CU' => __( 'Cuba', 'woocommerce' ), + 'CW' => __( 'CuraÇao', 'woocommerce' ), + 'CY' => __( 'Cyprus', 'woocommerce' ), + 'CZ' => __( 'Czech Republic', 'woocommerce' ), + 'DK' => __( 'Denmark', 'woocommerce' ), + 'DJ' => __( 'Djibouti', 'woocommerce' ), + 'DM' => __( 'Dominica', 'woocommerce' ), + 'DO' => __( 'Dominican Republic', 'woocommerce' ), + 'EC' => __( 'Ecuador', 'woocommerce' ), + 'EG' => __( 'Egypt', 'woocommerce' ), + 'SV' => __( 'El Salvador', 'woocommerce' ), + 'GQ' => __( 'Equatorial Guinea', 'woocommerce' ), + 'ER' => __( 'Eritrea', 'woocommerce' ), + 'EE' => __( 'Estonia', 'woocommerce' ), + 'ET' => __( 'Ethiopia', 'woocommerce' ), + 'FK' => __( 'Falkland Islands', 'woocommerce' ), + 'FO' => __( 'Faroe Islands', 'woocommerce' ), + 'FJ' => __( 'Fiji', 'woocommerce' ), + 'FI' => __( 'Finland', 'woocommerce' ), + 'FR' => __( 'France', 'woocommerce' ), + 'GF' => __( 'French Guiana', 'woocommerce' ), + 'PF' => __( 'French Polynesia', 'woocommerce' ), + 'TF' => __( 'French Southern Territories', 'woocommerce' ), + 'GA' => __( 'Gabon', 'woocommerce' ), + 'GM' => __( 'Gambia', 'woocommerce' ), + 'GE' => __( 'Georgia', 'woocommerce' ), + 'DE' => __( 'Germany', 'woocommerce' ), + 'GH' => __( 'Ghana', 'woocommerce' ), + 'GI' => __( 'Gibraltar', 'woocommerce' ), + 'GR' => __( 'Greece', 'woocommerce' ), + 'GL' => __( 'Greenland', 'woocommerce' ), + 'GD' => __( 'Grenada', 'woocommerce' ), + 'GP' => __( 'Guadeloupe', 'woocommerce' ), + 'GT' => __( 'Guatemala', 'woocommerce' ), + 'GG' => __( 'Guernsey', 'woocommerce' ), + 'GN' => __( 'Guinea', 'woocommerce' ), + 'GW' => __( 'Guinea-Bissau', 'woocommerce' ), + 'GY' => __( 'Guyana', 'woocommerce' ), + 'HT' => __( 'Haiti', 'woocommerce' ), + 'HM' => __( 'Heard Island and McDonald Islands', 'woocommerce' ), + 'HN' => __( 'Honduras', 'woocommerce' ), + 'HK' => __( 'Hong Kong', 'woocommerce' ), + 'HU' => __( 'Hungary', 'woocommerce' ), + 'IS' => __( 'Iceland', 'woocommerce' ), + 'IN' => __( 'India', 'woocommerce' ), + 'ID' => __( 'Indonesia', 'woocommerce' ), + 'IR' => __( 'Iran', 'woocommerce' ), + 'IQ' => __( 'Iraq', 'woocommerce' ), + 'IE' => __( 'Republic of Ireland', 'woocommerce' ), + 'IM' => __( 'Isle of Man', 'woocommerce' ), + 'IL' => __( 'Israel', 'woocommerce' ), + 'IT' => __( 'Italy', 'woocommerce' ), + 'CI' => __( 'Ivory Coast', 'woocommerce' ), + 'JM' => __( 'Jamaica', 'woocommerce' ), + 'JP' => __( 'Japan', 'woocommerce' ), + 'JE' => __( 'Jersey', 'woocommerce' ), + 'JO' => __( 'Jordan', 'woocommerce' ), + 'KZ' => __( 'Kazakhstan', 'woocommerce' ), + 'KE' => __( 'Kenya', 'woocommerce' ), + 'KI' => __( 'Kiribati', 'woocommerce' ), + 'KW' => __( 'Kuwait', 'woocommerce' ), + 'KG' => __( 'Kyrgyzstan', 'woocommerce' ), + 'LA' => __( 'Laos', 'woocommerce' ), + 'LV' => __( 'Latvia', 'woocommerce' ), + 'LB' => __( 'Lebanon', 'woocommerce' ), + 'LS' => __( 'Lesotho', 'woocommerce' ), + 'LR' => __( 'Liberia', 'woocommerce' ), + 'LY' => __( 'Libya', 'woocommerce' ), + 'LI' => __( 'Liechtenstein', 'woocommerce' ), + 'LT' => __( 'Lithuania', 'woocommerce' ), + 'LU' => __( 'Luxembourg', 'woocommerce' ), + 'MO' => __( 'Macao S.A.R., China', 'woocommerce' ), + 'MK' => __( 'Macedonia', 'woocommerce' ), + 'MG' => __( 'Madagascar', 'woocommerce' ), + 'MW' => __( 'Malawi', 'woocommerce' ), + 'MY' => __( 'Malaysia', 'woocommerce' ), + 'MV' => __( 'Maldives', 'woocommerce' ), + 'ML' => __( 'Mali', 'woocommerce' ), + 'MT' => __( 'Malta', 'woocommerce' ), + 'MH' => __( 'Marshall Islands', 'woocommerce' ), + 'MQ' => __( 'Martinique', 'woocommerce' ), + 'MR' => __( 'Mauritania', 'woocommerce' ), + 'MU' => __( 'Mauritius', 'woocommerce' ), + 'YT' => __( 'Mayotte', 'woocommerce' ), + 'MX' => __( 'Mexico', 'woocommerce' ), + 'FM' => __( 'Micronesia', 'woocommerce' ), + 'MD' => __( 'Moldova', 'woocommerce' ), + 'MC' => __( 'Monaco', 'woocommerce' ), + 'MN' => __( 'Mongolia', 'woocommerce' ), + 'ME' => __( 'Montenegro', 'woocommerce' ), + 'MS' => __( 'Montserrat', 'woocommerce' ), + 'MA' => __( 'Morocco', 'woocommerce' ), + 'MZ' => __( 'Mozambique', 'woocommerce' ), + 'MM' => __( 'Myanmar', 'woocommerce' ), + 'NA' => __( 'Namibia', 'woocommerce' ), + 'NR' => __( 'Nauru', 'woocommerce' ), + 'NP' => __( 'Nepal', 'woocommerce' ), + 'NL' => __( 'Netherlands', 'woocommerce' ), + 'AN' => __( 'Netherlands Antilles', 'woocommerce' ), + 'NC' => __( 'New Caledonia', 'woocommerce' ), + 'NZ' => __( 'New Zealand', 'woocommerce' ), + 'NI' => __( 'Nicaragua', 'woocommerce' ), + 'NE' => __( 'Niger', 'woocommerce' ), + 'NG' => __( 'Nigeria', 'woocommerce' ), + 'NU' => __( 'Niue', 'woocommerce' ), + 'NF' => __( 'Norfolk Island', 'woocommerce' ), + 'KP' => __( 'North Korea', 'woocommerce' ), + 'NO' => __( 'Norway', 'woocommerce' ), + 'OM' => __( 'Oman', 'woocommerce' ), + 'PK' => __( 'Pakistan', 'woocommerce' ), + 'PS' => __( 'Palestinian Territory', 'woocommerce' ), + 'PA' => __( 'Panama', 'woocommerce' ), + 'PG' => __( 'Papua New Guinea', 'woocommerce' ), + 'PY' => __( 'Paraguay', 'woocommerce' ), + 'PE' => __( 'Peru', 'woocommerce' ), + 'PH' => __( 'Philippines', 'woocommerce' ), + 'PN' => __( 'Pitcairn', 'woocommerce' ), + 'PL' => __( 'Poland', 'woocommerce' ), + 'PT' => __( 'Portugal', 'woocommerce' ), + 'QA' => __( 'Qatar', 'woocommerce' ), + 'RE' => __( 'Reunion', 'woocommerce' ), + 'RO' => __( 'Romania', 'woocommerce' ), + 'RU' => __( 'Russia', 'woocommerce' ), + 'RW' => __( 'Rwanda', 'woocommerce' ), + 'BL' => __( 'Saint Barthélemy', 'woocommerce' ), + 'SH' => __( 'Saint Helena', 'woocommerce' ), + 'KN' => __( 'Saint Kitts and Nevis', 'woocommerce' ), + 'LC' => __( 'Saint Lucia', 'woocommerce' ), + 'MF' => __( 'Saint Martin (French part)', 'woocommerce' ), + 'SX' => __( 'Saint Martin (Dutch part)', 'woocommerce' ), + 'PM' => __( 'Saint Pierre and Miquelon', 'woocommerce' ), + 'VC' => __( 'Saint Vincent and the Grenadines', 'woocommerce' ), + 'SM' => __( 'San Marino', 'woocommerce' ), + 'ST' => __( 'São Tomé and Príncipe', 'woocommerce' ), + 'SA' => __( 'Saudi Arabia', 'woocommerce' ), + 'SN' => __( 'Senegal', 'woocommerce' ), + 'RS' => __( 'Serbia', 'woocommerce' ), + 'SC' => __( 'Seychelles', 'woocommerce' ), + 'SL' => __( 'Sierra Leone', 'woocommerce' ), + 'SG' => __( 'Singapore', 'woocommerce' ), + 'SK' => __( 'Slovakia', 'woocommerce' ), + 'SI' => __( 'Slovenia', 'woocommerce' ), + 'SB' => __( 'Solomon Islands', 'woocommerce' ), + 'SO' => __( 'Somalia', 'woocommerce' ), + 'ZA' => __( 'South Africa', 'woocommerce' ), + 'GS' => __( 'South Georgia/Sandwich Islands', 'woocommerce' ), + 'KR' => __( 'South Korea', 'woocommerce' ), + 'SS' => __( 'South Sudan', 'woocommerce' ), + 'ES' => __( 'Spain', 'woocommerce' ), + 'LK' => __( 'Sri Lanka', 'woocommerce' ), + 'SD' => __( 'Sudan', 'woocommerce' ), + 'SR' => __( 'Suriname', 'woocommerce' ), + 'SJ' => __( 'Svalbard and Jan Mayen', 'woocommerce' ), + 'SZ' => __( 'Swaziland', 'woocommerce' ), + 'SE' => __( 'Sweden', 'woocommerce' ), + 'CH' => __( 'Switzerland', 'woocommerce' ), + 'SY' => __( 'Syria', 'woocommerce' ), + 'TW' => __( 'Taiwan', 'woocommerce' ), + 'TJ' => __( 'Tajikistan', 'woocommerce' ), + 'TZ' => __( 'Tanzania', 'woocommerce' ), + 'TH' => __( 'Thailand', 'woocommerce' ), + 'TL' => __( 'Timor-Leste', 'woocommerce' ), + 'TG' => __( 'Togo', 'woocommerce' ), + 'TK' => __( 'Tokelau', 'woocommerce' ), + 'TO' => __( 'Tonga', 'woocommerce' ), + 'TT' => __( 'Trinidad and Tobago', 'woocommerce' ), + 'TN' => __( 'Tunisia', 'woocommerce' ), + 'TR' => __( 'Turkey', 'woocommerce' ), + 'TM' => __( 'Turkmenistan', 'woocommerce' ), + 'TC' => __( 'Turks and Caicos Islands', 'woocommerce' ), + 'TV' => __( 'Tuvalu', 'woocommerce' ), + 'UG' => __( 'Uganda', 'woocommerce' ), + 'UA' => __( 'Ukraine', 'woocommerce' ), + 'AE' => __( 'United Arab Emirates', 'woocommerce' ), + 'GB' => __( 'United Kingdom (UK)', 'woocommerce' ), + 'US' => __( 'United States (US)', 'woocommerce' ), + 'UY' => __( 'Uruguay', 'woocommerce' ), + 'UZ' => __( 'Uzbekistan', 'woocommerce' ), + 'VU' => __( 'Vanuatu', 'woocommerce' ), + 'VA' => __( 'Vatican', 'woocommerce' ), + 'VE' => __( 'Venezuela', 'woocommerce' ), + 'VN' => __( 'Vietnam', 'woocommerce' ), + 'WF' => __( 'Wallis and Futuna', 'woocommerce' ), + 'EH' => __( 'Western Sahara', 'woocommerce' ), + 'WS' => __( 'Western Samoa', 'woocommerce' ), + 'YE' => __( 'Yemen', 'woocommerce' ), + 'ZM' => __( 'Zambia', 'woocommerce' ), + 'ZW' => __( 'Zimbabwe', 'woocommerce' ) +); diff --git a/i18n/languages/woocommerce-admin-ar.po b/i18n/languages/woocommerce-admin-ar.po deleted file mode 100644 index aa6a3b1102c..00000000000 --- a/i18n/languages/woocommerce-admin-ar.po +++ /dev/null @@ -1,5015 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce 2.0.0 Admin\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-05-10 11:38:26+00:00\n" -"PO-Revision-Date: 2013-06-09 08:23+0300\n" -"Last-Translator: Ali Mohammed Al-barrak \n" -"Language-Team: \n" -"Language: ar_SA\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" -"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" -"X-Poedit-Basepath: ../\n" -"X-Textdomain-Support: yes\n" -"X-Generator: Poedit 1.4.6\n" -"X-Poedit-SearchPath-0: .\n" - -#: admin/importers/importers-init.php:13 -msgid "WooCommerce Tax Rates (CSV)" -msgstr "ضرائب WooCommerce (CSV)‎" - -#: admin/importers/importers-init.php:13 -msgid "Import tax rates to your store via a csv file." -msgstr "استورد قيم الضرائبإلى متجرك عبر ملف CSV." - -#: admin/importers/tax-rates-importer.php:103 -#: admin/importers/tax-rates-importer.php:186 -#: admin/importers/tax-rates-importer.php:226 -#: admin/importers/tax-rates-importer.php:241 -msgid "Sorry, there has been an error." -msgstr "نأسف، يبدو أن هناك مشكلة." - -#: admin/importers/tax-rates-importer.php:104 -msgid "The file does not exist, please try again." -msgstr "الملف غير موجود، رجاءً حاول مجدد." - -#: admin/importers/tax-rates-importer.php:187 -msgid "The CSV is invalid." -msgstr "ملف CSV غير صالح." - -#: admin/importers/tax-rates-importer.php:198 -msgid "Import complete - imported %s tax rates and skipped %s." -msgstr "أكتمل الاستيراد - استورد %s من العمولات وترك %s منها." - -#: admin/importers/tax-rates-importer.php:208 -msgid "All done!" -msgstr "اكتمل!" - -#: admin/importers/tax-rates-importer.php:208 -msgid "View Tax Rates" -msgstr "عرض الضرائب" - -#: admin/importers/tax-rates-importer.php:259 -msgid "Import Tax Rates" -msgstr "استيراد الضراب" - -#: admin/importers/tax-rates-importer.php:282 -msgid "Hi there! Upload a CSV file containing tax rates to import the contents into your shop. Choose a .csv file to upload, then click \"Upload file and import\"." -msgstr "مرحبا بك! ارفع ملف CSV يحوي الضرائب لاستيراد محتوياته إلى سوقك. اختر ملف ‎.csv المراد رفعه، ثم اضغط \"رفع الملف واستيراده\"." - -#: admin/importers/tax-rates-importer.php:284 -msgid "Tax rates need to be defined with columns in a specific order (10 columns). Click here to download a sample." -msgstr "الضرائب يجب أن تكون بأعمدة محددة ومرتبة (10 columns). أضغط هنا لتحميل مثال." - -#: admin/importers/tax-rates-importer.php:292 -msgid "Before you can upload your import file, you will need to fix the following error:" -msgstr "قبل البدء برفع الملف، يجب إصلاح الأعطال التالية:" - -#: admin/importers/tax-rates-importer.php:301 -msgid "Choose a file from your computer:" -msgstr "أختر ملف من جهازك:" - -#: admin/importers/tax-rates-importer.php:307 -msgid "Maximum size: %s" -msgstr "الحجم الأقصى: %s" - -#: admin/importers/tax-rates-importer.php:312 -msgid "OR enter path to file:" -msgstr "أو أدخل مسار الملف" - -#: admin/importers/tax-rates-importer.php:319 -msgid "Delimiter" -msgstr "الفاصل" - -#: admin/importers/tax-rates-importer.php:325 -msgid "Upload file and import" -msgstr "رفع الملف واستيراده" - -#: admin/includes/duplicate_product.php:23 -msgid "No product to duplicate has been supplied!" -msgstr "لم يختر منتج لمضاعفته!" - -#: admin/includes/duplicate_product.php:43 -msgid "Product creation failed, could not find original product:" -msgstr "فشلت إضافة المنتج، لا بوجد منتج أصلي:" - -#: admin/includes/duplicate_product.php:90 -msgid "(Copy)" -msgstr "(نسخة)" - -#: admin/includes/notice-install.php:6 -msgid "Welcome to WooCommerce – You're almost ready to start selling :)" -msgstr "مرحبا إلى WooCommerce – يجب أن تكون مستعد للبيع :)" - -#: admin/includes/notice-install.php:7 -msgid "Install WooCommerce Pages" -msgstr "إعداد صفحات WooCommerce" - -#: admin/includes/notice-install.php:7 -msgid "Skip setup" -msgstr "تخطي الاعداد" - -#: admin/includes/notice-theme-support.php:6 -msgid "Your theme does not declare WooCommerce support – if you encounter layout issues please read our integration guide or choose a WooCommerce theme :)" -msgstr "قالبك الحالي لا يدعم WooCommerce – إذا واجهت مشاكل في التصميم رجاءً أقرأ دليل التكامل أو ثبت أحد قوالب WooCommerce :)" - -#: admin/includes/notice-theme-support.php:7 -msgid "Theme Integration Guide" -msgstr "دليل تكامل القوالب" - -#: admin/includes/notice-theme-support.php:7 -msgid "Hide this notice" -msgstr "أخف هذا الإشعار" - -#: admin/includes/notice-update.php:6 -msgid "Data Update Required – We just need to update your install to the latest version" -msgstr "يجب تحديث البيانات – نحن فقط نريدك أن تثبت آخر إصدار" - -#: admin/includes/notice-update.php:7 -msgid "Run the updater" -msgstr "شغل المحدث" - -#: admin/includes/notice-update.php:12 -msgid "It is strongly recommended that you backup your database before proceeding. Are you sure you wish to run the updater now?" -msgstr "يوصى بشدة أن تأخذ نسخة احتياطية من قاعدة بياناتك قبل المتابعة، هل تريد التحديث الآن؟" - -#: admin/includes/updates/woocommerce-update-2.0.php:49 -#: admin/woocommerce-admin-init.php:885 -msgctxt "slug" -msgid "product-category" -msgstr "product-category" - -#: admin/includes/updates/woocommerce-update-2.0.php:50 -#: admin/woocommerce-admin-init.php:898 -msgctxt "slug" -msgid "product-tag" -msgstr "product-tag" - -#: admin/includes/updates/woocommerce-update-2.0.php:58 -msgctxt "slug" -msgid "product" -msgstr "product" - -#: admin/includes/updates/woocommerce-update-2.0.php:179 -#: admin/woocommerce-admin-install.php:207 -msgctxt "page_slug" -msgid "lost-password" -msgstr "lost-password" - -#: admin/includes/updates/woocommerce-update-2.0.php:179 -#: admin/woocommerce-admin-install.php:207 -#: admin/woocommerce-admin-status.php:335 -msgid "Lost Password" -msgstr "استرجاع كلمة المرور" - -#: admin/includes/welcome.php:48 -msgid "Welcome to WooCommerce" -msgstr "مرحب إلى WooCommerce" - -#: admin/includes/welcome.php:135 -msgid "Welcome to WooCommerce %s" -msgstr "مرحبا إلى WooCommerce %s" - -#: admin/includes/welcome.php:140 -msgid "Thanks, all done!" -msgstr "شكراً، أكتملت العملية!" - -#: admin/includes/welcome.php:142 -msgid "Thank you for updating to the latest version!" -msgstr "شكراً لتحديثك إلى آخر إصدار!" - -#: admin/includes/welcome.php:144 -msgid "Thanks for installing!" -msgstr "شكراً للتثبيت!" - -#: admin/includes/welcome.php:146 -msgid "%s WooCommerce %s is more powerful, stable, and secure than ever before. We hope you enjoy it." -msgstr "%s WooCommerce %s أكثر قوة، استقرار، وأمان من أي وقت مضى. نأمل أن يعجبك ذلك." - -#: admin/includes/welcome.php:150 -msgid "Version %s" -msgstr "%s" - -#: admin/includes/welcome.php:153 -#: admin/woocommerce-admin-content.php:41 -#: admin/woocommerce-admin-init.php:88 -#: admin/woocommerce-admin-status.php:278 -msgid "Settings" -msgstr "الإعدادات" - -#: admin/includes/welcome.php:154 -msgid "Docs" -msgstr "التوثيق" - -#: admin/includes/welcome.php:161 -msgid "What's New" -msgstr "مالجديد" - -#: admin/includes/welcome.php:163 -msgid "Credits" -msgstr "شكر وتقدير" - -#: admin/includes/welcome.php:186 -msgid "Security in mind" -msgstr "الأمان مهم لنا" - -#: admin/includes/welcome.php:190 -msgid "Sucuri Safe Plugin" -msgstr "إضافة آمنة ومحمية" - -#: admin/includes/welcome.php:191 -msgid "You will be happy to learn that WooCommerce has been audited and certified by the Sucuri Security team. Whilst there is not much to be seen visually to understand the amount of work that went into this audit, rest assured that your website is powered by one of the most powerful and stable eCommerce plugins available." -msgstr "سوف نكون سعيد لمعرفة أن WooCommerce قد تم تدقيقها واعتمادها من قبل فريق الأمن Sucuri. في حين ليس هناك الكثير من الذين يمكنهم العمل والتدقيق للوصول مستوى الحماية المطلوب، أطمئن أن موقعك مدعوم بواحدة من أقوى و إضافات التسوق الإلكتروني المتوفرة." - -#: admin/includes/welcome.php:194 -msgid "A Smoother Admin Experience" -msgstr "سلاسة في الإدارة" - -#: admin/includes/welcome.php:200 -msgid "New Product Panel" -msgstr "لوحة \"المنتج\" جديدة" - -#: admin/includes/welcome.php:201 -msgid "We have revised the product data panel making it cleaner, more streamlined, and more logical. Adding products is a breeze!" -msgstr "قمنا بمراجعة لوحة بيانات المنتج مما يجعلها أخف وأكثر بساطة، وأكثر منطقية. إضافة منتجات سهل!" - -#: admin/includes/welcome.php:206 -msgid "Nicer Order Screens" -msgstr "صفحة طلبات أجمل" - -#: admin/includes/welcome.php:207 -msgid "Order pages have had a cleanup, with a more easily scannable interface. We particularly like the new status icons!" -msgstr "صفحة صفحة الطلبات صارت أجمل، مع واجهة تحكم أسهل، خاصة رموز حالة الطلب الجديدة." - -#: admin/includes/welcome.php:212 -msgid "Multi-Download Support" -msgstr "دعم تعدد المرفقات" - -#: admin/includes/welcome.php:213 -msgid "Products can have multiple downloadable files - purchasers will get access to all the files added." -msgstr "المنتجات ممكن أن تملك أكثر من مرفق (لبيعه) - وسيحصل المشترون على جميع المرفقات." - -#: admin/includes/welcome.php:218 -msgid "Less Taxing Taxes" -msgstr "الضرائب أقل تكلفة" - -#: admin/includes/welcome.php:224 -msgid "New Tax Input Panel" -msgstr "لوحة \" إضافة ضرائب\" جديدة" - -#: admin/includes/welcome.php:225 -msgid "The tax input pages have been streamlined to make inputting taxes simpler - adding multiple taxes for a single jurisdiction is now much easier using the priority system. There is also CSV import/export support." -msgstr "صفحة إضافة الضرائب صارت أبسط لتسهيل إدخال الضرائب - إضافة الضرائب المتعددة لمنطقة واحد صار أسهل بكثير بفضل نظام الأولوية. وهناك أيضا دعم استيراد وتصدير بصيغة CSV." - -#: admin/includes/welcome.php:229 -msgid "Improved Tax Options" -msgstr "تحسين خيارات الضرائب" - -#: admin/includes/welcome.php:230 -msgid "As requested by some users, we now support taxing the billing address instead of shipping (optional), and we allow you to choose which tax class applies to shipping." -msgstr "كما طلب بعض المستخدمين، نحن ندعم الآن فرض ضرائب على عنوان الزبون بدلا من الشحن (اختياري)، كما نسمح لك أن تختار الفئة الضريبة التي تنطبق على الشحن." - -#: admin/includes/welcome.php:235 -msgid "Product Listing Improvements Customers Will Love" -msgstr "تنظيم المنتجات أسهل كما يحب الزبائن" - -#: admin/includes/welcome.php:241 -msgid "New Sorting Options" -msgstr "خيارات ترتيب جديدة" - -#: admin/includes/welcome.php:242 -msgid "Customers can now sort products by popularity and ratings." -msgstr "يمكن للعملاء الآن ترتيب المنتجات حسب الشهرة ودرجات التقييم." - -#: admin/includes/welcome.php:247 -msgid "Better Pagination and Result Counts" -msgstr "تعدد صفحات وعدد نتائج أفضل" - -#: admin/includes/welcome.php:248 -msgid "Numbered pagination has been added to core, and we show the number of results found above the listings." -msgstr "أضيف نظام الصفحات، كما أن عدد النتائج يعرض في رأس القائمة." - -#: admin/includes/welcome.php:253 -msgid "Inline Star Rating Display" -msgstr "عرض تقيم بالنجوم" - -#: admin/includes/welcome.php:254 -msgid "We have added star ratings to the catalog which are pulled from reviews." -msgstr "أضفنا تقييم بالنجوم عند إرسال مراجعة للمنتج." - -#: admin/includes/welcome.php:262 -msgid "Under the Hood" -msgstr "من وراء الكواليس" - -#: admin/includes/welcome.php:266 -msgid "New product classes" -msgstr "فئات منتجات جديدة" - -#: admin/includes/welcome.php:267 -msgid "The product classes have been rewritten and are now factory based. Much more extendable, and easier to query products using the new get_product() function." -msgstr "فئات المتجات تم إعادة كتابتها. أفضل من التوريث، سهولة في الاستعلامات باستخدام الدالة الجديدة get_product()‎." - -#: admin/includes/welcome.php:271 -msgid "Capability overhaul" -msgstr "إصلاح الكفاءة" - -#: admin/includes/welcome.php:272 -msgid "More granular capabilities for admin/shop manager roles covering products, orders and coupons." -msgstr "كفاءة أكثر في لإدارة المنتجات، والطلبات، والقسائم" - -#: admin/includes/welcome.php:276 -msgid "API Improvements" -msgstr "تحسين API" - -#: admin/includes/welcome.php:277 -msgid "WC-API now has real endpoints, and we've optimised the gateways API significantly by only loading gateways when needed." -msgstr "WC-API الآن متكامل، وقد صارت الطلبات أسرع بسبب تحميل البيانات التي ستستخدم فقط." - -#: admin/includes/welcome.php:283 -msgid "Cache-friendly cart widgets" -msgstr "مربع العربة الجانبي أسرع" - -#: admin/includes/welcome.php:284 -msgid "Cart widgets and other \"fragments\" are now pulled in via AJAX - this works wonders with static page caching." -msgstr "مربع العربة الجانبي وباقي \"الأجزاء\" الآن تعدل محتواها عبر AJAX - وهذا أسرع مع التخزين المؤقت للصفحات." - -#: admin/includes/welcome.php:288 -msgid "Session handling" -msgstr "التعامل مع الجلسات" - -#: admin/includes/welcome.php:289 -msgid "PHP SESSIONS have been a problem for many users in the past, so we've developed our own handler using cookies and options to make these more reliable." -msgstr "جلسات PHP كانت تسبب مشاكل لبعض المستخدمين في الماضي، لهذا طورنا نظام خاص عبر الكعكات والخيارات التي تجعل الجلسة أكثر أمانا." - -#: admin/includes/welcome.php:293 -msgid "Retina Ready" -msgstr "تحسين الرسومات" - -#: admin/includes/welcome.php:294 -msgid "All graphics within WC have been optimised for HiDPI displays." -msgstr "جميع الرسومات عدلت لتناسب الشاشات عالية الدقة." - -#: admin/includes/welcome.php:301 -msgid "Better stock handling" -msgstr "تعمال أفضل مع الطلبات" - -#: admin/includes/welcome.php:302 -msgid "We have added an option to hold stock for unpaid orders (defaults to 60mins). When this time limit is reached, and the order is not paid for, stock is released and the order is cancelled." -msgstr "أضفنا خيار للتعامل مع الطلبات الغير مدفوعة (أفتراضيا 60دقيقة) بعدها إذا لم يُدفَع الطلب، سيعاد المنتج ويلغى الطلب." - -#: admin/includes/welcome.php:306 -msgid "Improved Line-item storage" -msgstr "تجسين تخزين العناصر" - -#: admin/includes/welcome.php:307 -msgid "We have changed how order items get stored making them easier (and faster) to access for reporting. Order items are no longer serialised within an order - they are stored within their own table." -msgstr "غيرنا طريقة تخزين عناصر الطلب وجعلناها أسهل (وأسرع) في انشاء تقارير. المنتجات لم تعد تخزن في حقل واحد - صار لها جدول خاص بها." - -#: admin/includes/welcome.php:311 -msgid "Autoload" -msgstr "التحمل التلقائي" - -#: admin/includes/welcome.php:312 -msgid "We have setup autoloading for classes - this has dramatically reduced memory usage in 2.0." -msgstr "عدلنا التحميل التلقائي للكلاسات - - وهذا قد قلل بشكل كبير استخدام الذاكرة في الإصدار 2.0." - -#: admin/includes/welcome.php:319 -msgid "Go to WooCommerce Settings" -msgstr "أذهب لإعدادات WooCommerce" - -#: admin/includes/welcome.php:337 -msgid "WooCommerce is developed and maintained by a worldwide team of passionate individuals and backed by an awesome developer community. Want to see your name? Contribute to WooCommerce." -msgstr "تم تطوير وصيانة WooCommerce بواسطة فريق عمل متطوعين من جميع أنحاء العالم ويدعمها مجتمع مطورين هائل. هل تريد أن ترى اسمك؟ ساهم في WooCommerce(en)." - -#: admin/includes/welcome.php:363 -msgid "View %s" -msgstr "شاهد %s" - -#: admin/post-types/product.php:31 -msgid "Make a duplicate from this product" -msgstr "أنسخة من هذا المنتج" - -#: admin/post-types/product.php:32 -msgid "Duplicate" -msgstr "مضاعفة" - -#: admin/post-types/product.php:61 -msgid "Copy to a new draft" -msgstr "مضاعفة" - -#: admin/post-types/product.php:86 -#: admin/woocommerce-admin-taxonomies.php:297 -msgid "Image" -msgstr "الصورة" - -#: admin/post-types/product.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:376 -#: admin/post-types/writepanels/writepanel-product_data.php:470 -#: admin/woocommerce-admin-attributes.php:233 -#: admin/woocommerce-admin-attributes.php:269 -#: admin/woocommerce-admin-attributes.php:307 -#: admin/woocommerce-admin-attributes.php:330 -#: admin/woocommerce-admin-attributes.php:374 -#: admin/woocommerce-admin-attributes.php:399 -#: admin/woocommerce-admin-init.php:437 -msgid "Name" -msgstr "الاسم" - -#: admin/post-types/product.php:91 -#: admin/post-types/product.php:557 -#: admin/post-types/writepanels/variation-admin-html.php:52 -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#: admin/woocommerce-admin-reports.php:2099 -#: admin/woocommerce-admin-reports.php:2135 -msgid "SKU" -msgstr "الرمز التعريفي" - -#: admin/post-types/product.php:94 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:83 -#: admin/woocommerce-admin-content.php:63 -#: admin/woocommerce-admin-reports.php:90 -msgid "Stock" -msgstr "المخزون" - -#: admin/post-types/product.php:96 -#: admin/post-types/product.php:568 -#: admin/post-types/product.php:789 -#: admin/woocommerce-admin-functions.php:202 -msgid "Price" -msgstr "السعر" - -#: admin/post-types/product.php:98 -msgid "Categories" -msgstr "التصنيف" - -#: admin/post-types/product.php:99 -msgid "Tags" -msgstr "الوسوم" - -#: admin/post-types/product.php:100 -#: admin/post-types/product.php:632 -#: admin/post-types/product.php:906 -#: admin/post-types/writepanels/writepanel-product_data.php:1058 -#: admin/woocommerce-admin-init.php:450 -msgid "Featured" -msgstr "مميز؟" - -#: admin/post-types/product.php:101 -#: admin/woocommerce-admin-attributes.php:251 -#: admin/woocommerce-admin-attributes.php:309 -#: admin/woocommerce-admin-attributes.php:386 -msgid "Type" -msgstr "النوع" - -#: admin/post-types/product.php:102 -#: admin/post-types/shop_order.php:50 -msgid "Date" -msgstr "التاريخ" - -#: admin/post-types/product.php:151 -msgid "Edit this item" -msgstr "تحرير هذا العنصر" - -#: admin/post-types/product.php:151 -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#: admin/post-types/writepanels/writepanel-order_data.php:387 -#: admin/post-types/writepanels/writepanel-product_data.php:1061 -#: admin/woocommerce-admin-attributes.php:323 -msgid "Edit" -msgstr "تحرير" - -#: admin/post-types/product.php:152 -msgid "Edit this item inline" -msgstr "تحرير سريع بدون مغادرة الصفحة" - -#: admin/post-types/product.php:152 -msgid "Quick Edit" -msgstr "تحرير سريع" - -#: admin/post-types/product.php:156 -#: admin/post-types/shop_coupon.php:65 -msgid "Restore this item from the Trash" -msgstr "استعادة هذا العنصر من سلة المهملات" - -#: admin/post-types/product.php:156 -#: admin/post-types/shop_coupon.php:65 -msgid "Restore" -msgstr "استعادة" - -#: admin/post-types/product.php:158 -#: admin/post-types/shop_coupon.php:67 -msgid "Move this item to the Trash" -msgstr "نقل إلى سلة المهملات" - -#: admin/post-types/product.php:158 -#: admin/post-types/shop_coupon.php:67 -msgid "Trash" -msgstr "سلة المهملات" - -#: admin/post-types/product.php:160 -#: admin/post-types/shop_coupon.php:69 -msgid "Delete this item permanently" -msgstr "حذف هذا العنصر بشكل دائم" - -#: admin/post-types/product.php:160 -#: admin/post-types/shop_coupon.php:69 -#: admin/post-types/writepanels/writepanel-order_data.php:463 -msgid "Delete Permanently" -msgstr "حذف بشكل دائم" - -#: admin/post-types/product.php:165 -msgid "Preview “%s”" -msgstr "معاينة “%s”" - -#: admin/post-types/product.php:165 -msgid "Preview" -msgstr "معاينة" - -#: admin/post-types/product.php:167 -msgid "View “%s”" -msgstr "عرض “%s”" - -#: admin/post-types/product.php:167 -#: admin/post-types/shop_order.php:171 -msgid "View" -msgstr "عرض" - -#: admin/post-types/product.php:214 -msgid "Grouped" -msgstr "مجموعة" - -#: admin/post-types/product.php:216 -msgid "External/Affiliate" -msgstr "خارجي ذو صلة" - -#: admin/post-types/product.php:220 -#: admin/post-types/product.php:407 -#: admin/post-types/writepanels/variation-admin-html.php:174 -#: admin/post-types/writepanels/writepanel-product_data.php:52 -msgid "Virtual" -msgstr "خدمة" - -#: admin/post-types/product.php:222 -#: admin/post-types/product.php:403 -#: admin/post-types/writepanels/variation-admin-html.php:172 -#: admin/post-types/writepanels/writepanel-product_data.php:58 -msgid "Downloadable" -msgstr "به مرفقات" - -#: admin/post-types/product.php:224 -msgid "Simple" -msgstr "عادي" - -#: admin/post-types/product.php:228 -#: admin/post-types/product.php:387 -msgid "Variable" -msgstr "متغير" - -#: admin/post-types/product.php:251 -msgid "Toggle featured" -msgstr "تغيير التميز" - -#: admin/post-types/product.php:253 -msgid "yes" -msgstr "نعم" - -#: admin/post-types/product.php:255 -msgid "no" -msgstr "لا" - -#: admin/post-types/product.php:262 -#: admin/post-types/product.php:641 -#: admin/post-types/product.php:930 -#: admin/post-types/writepanels/writepanel-product_data.php:231 -msgid "In stock" -msgstr "متوفر" - -#: admin/post-types/product.php:264 -#: admin/post-types/product.php:642 -#: admin/post-types/product.php:931 -#: admin/post-types/writepanels/writepanel-product_data.php:232 -#: admin/woocommerce-admin-reports.php:2119 -msgid "Out of stock" -msgstr "نفد" - -#: admin/post-types/product.php:373 -msgid "Show all product types" -msgstr "عرض كل أنواع المنتجات" - -#: admin/post-types/product.php:381 -#: admin/post-types/writepanels/writepanel-product_data.php:39 -msgid "Grouped product" -msgstr "مجموعة" - -#: admin/post-types/product.php:383 -#: admin/post-types/writepanels/writepanel-product_data.php:40 -msgid "External/Affiliate product" -msgstr "منتجات خارجية" - -#: admin/post-types/product.php:385 -#: admin/post-types/writepanels/writepanel-product_data.php:38 -msgid "Simple product" -msgstr "المنتجات العادية" - -#: admin/post-types/product.php:399 -msgid "Show all sub-types" -msgstr "عرض كل الأنواع الفرعية" - -#: admin/post-types/product.php:520 -msgid "[%s with SKU of %s]" -msgstr "[%s رمزه التعريفي هو %s]" - -#: admin/post-types/product.php:526 -msgid "[%s with ID of %d]" -msgstr "[%s معرفه هو %d]" - -#: admin/post-types/product.php:552 -#: admin/post-types/product.php:783 -#: admin/post-types/writepanels/writepanels-init.php:46 -#: admin/settings/settings-init.php:508 -msgid "Product Data" -msgstr "معلومات المنتج" - -#: admin/post-types/product.php:570 -msgid "Regular price" -msgstr "السعر الأصلي" - -#: admin/post-types/product.php:575 -#: admin/post-types/product.php:813 -msgid "Sale" -msgstr "سعر العرض" - -#: admin/post-types/product.php:577 -msgid "Sale price" -msgstr "سعر العرض" - -#: admin/post-types/product.php:588 -#: admin/post-types/product.php:839 -#: admin/post-types/writepanels/variation-admin-html.php:96 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:273 -msgid "Weight" -msgstr "الوزن" - -#: admin/post-types/product.php:599 -#: admin/post-types/product.php:863 -msgid "L/W/H" -msgstr "طول\\عرض\\ارتفاع" - -#: admin/post-types/product.php:601 -#: admin/post-types/product.php:879 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:85 -#: admin/post-types/writepanels/writepanel-product_data.php:286 -msgid "Length" -msgstr "الطول" - -#: admin/post-types/product.php:602 -#: admin/post-types/product.php:880 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:86 -#: admin/post-types/writepanels/writepanel-product_data.php:287 -#: admin/woocommerce-admin-settings.php:797 -msgid "Width" -msgstr "العرض" - -#: admin/post-types/product.php:603 -#: admin/post-types/product.php:881 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:87 -#: admin/post-types/writepanels/writepanel-product_data.php:288 -#: admin/woocommerce-admin-settings.php:799 -msgid "Height" -msgstr "الارتفاع" - -#: admin/post-types/product.php:613 -#: admin/post-types/product.php:887 -msgid "Visibility" -msgstr "عرض في" - -#: admin/post-types/product.php:618 -#: admin/post-types/product.php:893 -msgid "Catalog & search" -msgstr "القائمة و البحث" - -#: admin/post-types/product.php:619 -#: admin/post-types/product.php:894 -#: admin/post-types/writepanels/writepanel-product_data.php:1047 -#: admin/woocommerce-admin-content.php:46 -#: admin/woocommerce-admin-settings.php:183 -msgid "Catalog" -msgstr "قائمة المنتجات" - -#: admin/post-types/product.php:620 -#: admin/post-types/product.php:895 -#: admin/post-types/writepanels/writepanel-product_data.php:1048 -msgid "Search" -msgstr "البحث" - -#: admin/post-types/product.php:621 -#: admin/post-types/product.php:896 -#: admin/post-types/writepanels/writepanel-product_data.php:1049 -msgid "Hidden" -msgstr "مخفي" - -#: admin/post-types/product.php:636 -#: admin/post-types/product.php:924 -msgid "In stock?" -msgstr "متوفر؟" - -#: admin/post-types/product.php:657 -#: admin/post-types/product.php:942 -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Manage stock?" -msgstr "تحديد الكمية؟" - -#: admin/post-types/product.php:661 -#: admin/post-types/product.php:961 -#: admin/post-types/product.php:977 -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "Stock Qty" -msgstr "الكمية" - -#: admin/post-types/product.php:794 -#: admin/post-types/product.php:818 -#: admin/post-types/product.php:844 -#: admin/post-types/product.php:868 -#: admin/post-types/product.php:892 -#: admin/post-types/product.php:911 -#: admin/post-types/product.php:929 -#: admin/post-types/product.php:947 -#: admin/post-types/product.php:966 -msgid "— No Change —" -msgstr "— كما هو —" - -#: admin/post-types/product.php:795 -#: admin/post-types/product.php:819 -#: admin/post-types/product.php:845 -#: admin/post-types/product.php:869 -#: admin/post-types/product.php:967 -msgid "Change to:" -msgstr "تغيير إلى:" - -#: admin/post-types/product.php:796 -#: admin/post-types/product.php:820 -msgid "Increase by (fixed amount or %):" -msgstr "زيادة بمقدار (عدد عشري أو %):" - -#: admin/post-types/product.php:797 -#: admin/post-types/product.php:821 -msgid "Decrease by (fixed amount or %):" -msgstr "انقاص بمقدار (عدد عشري أو %):" - -#: admin/post-types/product.php:807 -#: admin/post-types/product.php:832 -msgid "Enter price" -msgstr "ادخل سعر" - -#: admin/post-types/product.php:822 -msgid "Decrease regular price by (fixed amount or %):" -msgstr "انقص السعر الأصلي بمقدار (عدد عشري أو %):" - -#: admin/post-types/product.php:912 -#: admin/post-types/product.php:948 -#: admin/post-types/shop_order.php:190 -#: admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:286 -msgid "Yes" -msgstr "نعم" - -#: admin/post-types/product.php:913 -#: admin/post-types/product.php:949 -#: admin/post-types/shop_order.php:192 -#: admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:286 -msgid "No" -msgstr "لا" - -#: admin/post-types/product.php:1183 -msgid "Sort Products" -msgstr "ترتيب المنتجات" - -#: admin/post-types/product.php:1222 -msgid "Insert into product" -msgstr "أدراج في المنتج" - -#: admin/post-types/product.php:1223 -msgid "Uploaded to this product" -msgstr "تحديث المنتج" - -#: admin/post-types/shop_coupon.php:25 -msgid "Code" -msgstr "الرمز" - -#: admin/post-types/shop_coupon.php:26 -msgid "Coupon type" -msgstr "نوع القسيمة" - -#: admin/post-types/shop_coupon.php:27 -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Coupon amount" -msgstr "قيمة القسيمة" - -#: admin/post-types/shop_coupon.php:28 -msgid "Description" -msgstr "الوصف" - -#: admin/post-types/shop_coupon.php:29 -msgid "Product IDs" -msgstr "معرفات المنتجات" - -#: admin/post-types/shop_coupon.php:30 -msgid "Usage / Limit" -msgstr "استخدام \\ العدد" - -#: admin/post-types/shop_coupon.php:31 -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "Expiry date" -msgstr "تاريخ الانتهاء" - -#: admin/post-types/shop_coupon.php:56 -msgid "Edit coupon" -msgstr "تحرير القسيمة" - -#: admin/post-types/shop_coupon.php:114 -msgid "%s / %s" -msgstr "%s \\ %s" - -#: admin/post-types/shop_coupon.php:116 -msgid "%s / ∞" -msgstr "%s \\ ∞" - -#: admin/post-types/shop_coupon.php:149 -msgid "Show all types" -msgstr "عرض كل الأنواع" - -#: admin/post-types/shop_order.php:43 -#: admin/settings/settings-payment-gateways.php:29 -#: admin/settings/settings-shipping-methods.php:31 -msgid "Status" -msgstr "الحالة" - -#: admin/post-types/shop_order.php:44 -msgid "Order" -msgstr "الطلب" - -#: admin/post-types/shop_order.php:45 -msgid "Billing" -msgstr "الزبون" - -#: admin/post-types/shop_order.php:46 -#: admin/post-types/writepanels/writepanel-order_data.php:539 -#: admin/post-types/writepanels/writepanel-product_data.php:81 -#: admin/settings/settings-tax-rates.php:52 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-content.php:49 -#: admin/woocommerce-admin-settings.php:187 -msgid "Shipping" -msgstr "الشحن" - -#: admin/post-types/shop_order.php:47 -msgid "Order Total" -msgstr "مجموع الطلب" - -#: admin/post-types/shop_order.php:48 -#: admin/post-types/writepanels/writepanels-init.php:71 -msgid "Order Notes" -msgstr "ملاحظات الطلب" - -#: admin/post-types/shop_order.php:49 -msgid "Customer Notes" -msgstr "ملاحظات الزبون" - -#: admin/post-types/shop_order.php:51 -#: admin/post-types/writepanels/writepanel-order_data.php:386 -#: admin/post-types/writepanels/writepanel-order_data.php:433 -msgid "Actions" -msgstr "الاجراءات" - -#: admin/post-types/shop_order.php:95 -#: admin/post-types/writepanels/writepanel-order_data.php:93 -msgid "Guest" -msgstr "زائر" - -#: admin/post-types/shop_order.php:98 -msgid "Order %s" -msgstr "الطلب %s" - -#: admin/post-types/shop_order.php:98 -msgid "made by" -msgstr "بواسطة" - -#: admin/post-types/shop_order.php:101 -msgid "Email:" -msgstr "البريد الإلكتروني:" - -#: admin/post-types/shop_order.php:104 -msgid "Tel:" -msgstr "الهاتف:" - -#: admin/post-types/shop_order.php:114 -#: admin/post-types/shop_order.php:123 -msgid "Via" -msgstr "عبر" - -#: admin/post-types/shop_order.php:131 -msgid "Unpublished" -msgstr "غير منشور" - -#: admin/post-types/shop_order.php:133 -msgid "Y/m/d g:i:s A" -msgstr "Y/m/d g:i:s A" - -#: admin/post-types/shop_order.php:139 -msgid "%s ago" -msgstr "منذ %s" - -#: admin/post-types/shop_order.php:141 -msgid "Y/m/d" -msgstr "Y/m/d" - -#: admin/post-types/shop_order.php:158 -#: admin/woocommerce-admin-dashboard.php:176 -msgid "Processing" -msgstr "جار العمل عليه" - -#: admin/post-types/shop_order.php:165 -msgid "Complete" -msgstr "مكتمل" - -#: admin/post-types/shop_order.php:282 -msgid "Show all statuses" -msgstr "مشاهدة جميع الحالات" - -#: admin/post-types/shop_order.php:301 -#: admin/post-types/shop_order.php:326 -msgid "Show all customers" -msgstr "شاهد جميع الزبائن" - -#: admin/post-types/writepanels/order-download-permission-html.php:6 -msgid "Revoke Access" -msgstr "إزالة" - -#: admin/post-types/writepanels/order-download-permission-html.php:7 -#: admin/post-types/writepanels/variation-admin-html.php:7 -#: admin/post-types/writepanels/writepanel-product_data.php:369 -#: admin/post-types/writepanels/writepanel-product_data.php:463 -#: admin/woocommerce-admin-init.php:439 -msgid "Click to toggle" -msgstr "أضغط للتبديل" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -msgid "File %d: %s" -msgstr "الملف %d: %s" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "لم يحمل" -msgstr[1] "حمل مرة واحدة" -msgstr[2] "حمل مرتين" -msgstr[3] "حمل %s مرات" -msgstr[4] "حمل %s مرةً" -msgstr[5] "حمل %s مرة" - -#: admin/post-types/writepanels/order-download-permission-html.php:16 -msgid "Downloads Remaining" -msgstr "حد التحميلات" - -#: admin/post-types/writepanels/order-download-permission-html.php:19 -#: admin/post-types/writepanels/variation-admin-html.php:149 -#: admin/post-types/writepanels/variation-admin-html.php:157 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Unlimited" -msgstr "غير محدود (∞)" - -#: admin/post-types/writepanels/order-download-permission-html.php:22 -msgid "Access Expires" -msgstr "jhvo hgYkjihx" - -#: admin/post-types/writepanels/order-download-permission-html.php:23 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Never" -msgstr "لا ينتهي" - -#: admin/post-types/writepanels/order-fee-html.php:10 -msgid "Fee Name" -msgstr "اسم الرسوم" - -#: admin/post-types/writepanels/order-fee-html.php:17 -#: admin/post-types/writepanels/order-item-html.php:89 -msgid "Tax class" -msgstr "فئة الضريبة" - -#: admin/post-types/writepanels/order-fee-html.php:19 -#: admin/post-types/writepanels/order-tax-html.php:8 -#: admin/post-types/writepanels/writepanel-order_data.php:561 -#: admin/post-types/writepanels/writepanel-order_data.php:666 -#: admin/woocommerce-admin-reports.php:1658 -#: admin/woocommerce-admin-reports.php:2671 -#: admin/woocommerce-admin-reports.php:2680 -#: admin/woocommerce-admin-users.php:90 -#: admin/woocommerce-admin-users.php:112 -msgid "N/A" -msgstr "ليس قيمة" - -#: admin/post-types/writepanels/order-fee-html.php:20 -#: admin/post-types/writepanels/writepanel-product_data.php:179 -msgid "Taxable" -msgstr "خاضع للضريبة" - -#: admin/post-types/writepanels/order-fee-html.php:25 -#: admin/post-types/writepanels/order-item-html.php:96 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:54 -#: admin/post-types/writepanels/writepanel-product_data.php:186 -#: admin/settings/settings-init.php:972 -#: admin/settings/settings-tax-rates.php:29 -#: admin/woocommerce-admin-settings.php:228 -msgid "Standard" -msgstr "قياسي" - -#: admin/post-types/writepanels/order-fee-html.php:43 -#: admin/post-types/writepanels/order-item-html.php:115 -#: admin/woocommerce-admin-reports.php:1562 -#: admin/woocommerce-admin-reports.php:1615 -#: admin/woocommerce-admin-reports.php:2386 -#: admin/woocommerce-admin-reports.php:2555 -#: admin/woocommerce-admin-reports.php:2633 -msgid "Total" -msgstr "المجموع" - -#: admin/post-types/writepanels/order-item-html.php:10 -msgid "Product ID:" -msgstr "معرف المنتج" - -#: admin/post-types/writepanels/order-item-html.php:13 -msgid "Variation ID:" -msgstr "معرف النوع" - -#: admin/post-types/writepanels/order-item-html.php:16 -msgid "Product SKU:" -msgstr "الرمز التعريفي" - -#: admin/post-types/writepanels/order-item-html.php:44 -msgid "Add meta" -msgstr "إضافة معلومات" - -#: admin/post-types/writepanels/order-item-html.php:117 -msgid "Subtotal" -msgstr "المجموع الأصلي" - -#: admin/post-types/writepanels/order-tax-html.php:6 -msgid "Tax Rate:" -msgstr "الضرائب:" - -#: admin/post-types/writepanels/order-tax-html.php:16 -#: admin/post-types/writepanels/writepanel-order_data.php:630 -msgid "Sales Tax:" -msgstr "ضرائب البيع:" - -#: admin/post-types/writepanels/order-tax-html.php:20 -#: admin/post-types/writepanels/writepanel-order_data.php:638 -msgid "Shipping Tax:" -msgstr "ضرائب الشحن:" - -#: admin/post-types/writepanels/variation-admin-html.php:6 -#: admin/post-types/writepanels/writepanel-product_data.php:368 -#: admin/post-types/writepanels/writepanel-product_data.php:462 -#: admin/woocommerce-admin-init.php:438 -msgid "Remove" -msgstr "إزالة" - -#: admin/post-types/writepanels/variation-admin-html.php:20 -msgid "Any" -msgstr "أي" - -#: admin/post-types/writepanels/variation-admin-html.php:52 -msgid "Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "أدخل رمز تعريف لهذا النوع أو أتركه فارغ لاستخدام رمز المنتج" - -#: admin/post-types/writepanels/variation-admin-html.php:63 -msgid "Stock Qty:" -msgstr "الكمية:" - -#: admin/post-types/writepanels/variation-admin-html.php:63 -msgid "Enter a quantity to enable stock management at variation level, or leave blank to use the parent product's options." -msgstr "أدخل الكمية لتمكين تحديد كميات النوع، أو دعها فارغة لاستعمال اعدادات المنتج الأصلي." - -#: admin/post-types/writepanels/variation-admin-html.php:72 -msgid "Regular Price:" -msgstr "السعر الأصلي:" - -#: admin/post-types/writepanels/variation-admin-html.php:73 -msgid "Variation price (required)" -msgstr "سعر النوع (مطلوب)" - -#: admin/post-types/writepanels/variation-admin-html.php:76 -msgid "Sale Price:" -msgstr "سعر العرض:" - -#: admin/post-types/writepanels/variation-admin-html.php:76 -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Schedule" -msgstr "جدولة عرض" - -#: admin/post-types/writepanels/variation-admin-html.php:76 -msgid "Cancel schedule" -msgstr "إلغاء الجدولة" - -#: admin/post-types/writepanels/variation-admin-html.php:83 -msgid "Sale start date:" -msgstr "وقت بدأ العرض:" - -#: admin/post-types/writepanels/variation-admin-html.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:136 -msgctxt "placeholder" -msgid "From…" -msgstr "من…" - -#: admin/post-types/writepanels/variation-admin-html.php:87 -msgid "Sale end date:" -msgstr "وقت نهاية العرض:" - -#: admin/post-types/writepanels/variation-admin-html.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:137 -msgctxt "placeholder" -msgid "To…" -msgstr "إلى…" - -#: admin/post-types/writepanels/variation-admin-html.php:96 -msgid "Enter a weight for this variation or leave blank to use the parent product weight." -msgstr "أدخل وزن النوع أو دعه فارغ لاستخدام إعدادات المنتج الأصلي" - -#: admin/post-types/writepanels/variation-admin-html.php:104 -msgid "Dimensions (L×W×H)" -msgstr "الأبعاد (ط×ع×ار)" - -#: admin/post-types/writepanels/variation-admin-html.php:115 -msgid "Shipping class:" -msgstr "فئة الشحن:" - -#: admin/post-types/writepanels/variation-admin-html.php:119 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:53 -msgid "Same as parent" -msgstr "مثل المنتج الأصلي" - -#: admin/post-types/writepanels/variation-admin-html.php:130 -msgid "Tax class:" -msgstr "فئة الضريبة:" - -#: admin/post-types/writepanels/variation-admin-html.php:141 -msgid "File paths:" -msgstr "مسارات الملفات:" - -#: admin/post-types/writepanels/variation-admin-html.php:141 -msgid "Enter one or more File Paths, one per line, to make this variation a downloadable product, or leave blank." -msgstr "أدخل واحد أو أكثر من المسارات، واحد لكل سطر، لتجعل النوع به مرفقات أو أتركه فارغ." - -#: admin/post-types/writepanels/variation-admin-html.php:142 -#: admin/post-types/writepanels/writepanel-product_data.php:153 -msgid "File paths/URLs, one per line" -msgstr "مسارات الملفات\\الروابط، واحد لكل سطر" - -#: admin/post-types/writepanels/variation-admin-html.php:143 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Choose a file" -msgstr "أختر ملف" - -#: admin/post-types/writepanels/variation-admin-html.php:143 -msgid "Upload" -msgstr "رفع" - -#: admin/post-types/writepanels/variation-admin-html.php:143 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Insert file URL" -msgstr "أدرج الرابط" - -#: admin/post-types/writepanels/variation-admin-html.php:148 -msgid "Download Limit:" -msgstr "حد التحميلات" - -#: admin/post-types/writepanels/variation-admin-html.php:148 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Leave blank for unlimited re-downloads." -msgstr "أتركه فارغ لعدد غير محدود من التحميلات." - -#: admin/post-types/writepanels/variation-admin-html.php:156 -msgid "Download Expiry:" -msgstr "وقت نهاية التحميل" - -#: admin/post-types/writepanels/variation-admin-html.php:156 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Enter the number of days before a download link expires, or leave blank." -msgstr "أكتب عدد الأيام قبل تعطيل رابط التحميل، أو أتركه فارغ" - -#: admin/post-types/writepanels/variation-admin-html.php:170 -msgid "Enabled" -msgstr "استخدام" - -#: admin/post-types/writepanels/variation-admin-html.php:172 -msgid "Enable this option if access is given to a downloadable file upon purchase of a product" -msgstr "مكن هذا الخيار لتتمكن من أرفاق ملفات للنوع" - -#: admin/post-types/writepanels/variation-admin-html.php:174 -msgid "Enable this option if a product is not shipped or there is no shipping cost" -msgstr "مكن هذا الخيار للخدمات، ما يميز الخدمات أنها لا تشحن" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Coupon description" -msgstr "وصف القسيمة" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Optionally enter a description for this coupon for your reference." -msgstr "يمكنك إضافة وصف للقسيمة لتتذكرها، لأن الاسم في الأعلى هو رمز القسيمة." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:42 -msgid "Discount type" -msgstr "نوع الخصم" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Value of the coupon." -msgstr "قيمة القسيمة" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "Enable free shipping" -msgstr "مكن الشحن المجاني" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "Check this box if the coupon grants free shipping. The free shipping method must be enabled with the \"must use coupon\" setting checked." -msgstr "مكن هذا الخيار إذا كانت القسيمة تضمن شحن مجاني. يجب تفعيل خيار الشحن المجاني وأختيار متطلب به قسيمة." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "Individual use" -msgstr "الاستخدام الفردي" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "Check this box if the coupon cannot be used in conjunction with other coupons." -msgstr "فعل هذا الخيار إذا كانت القسيمة لا يمكن استخدامه مع قسيمة أخرى." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "Apply before tax" -msgstr "أحسب قبل الضريبة" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "Check this box if the coupon should be applied before calculating cart tax." -msgstr "فعل هذا الخيار إذا كانت القسيمة تحسب قبل الضريبة." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "Exclude sale items" -msgstr "منع مع العروض" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "Check this box if the coupon should not apply to items on sale. Per-item coupons will only work if the item is not on sale. Per-cart coupons will only work if there are no sale items in the cart." -msgstr "فعل هذا الخيار لمنع تفعيل القسيمة إذا وجد عرض على المنتج. في قسائم المنتجات تمنع القسيمة إذا كان المنتج عليه عرض. وفي قسائم العربات تمنع القسيمة إذا وجد منتج عليه عرض." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "Minimum amount" -msgstr "أقل تكلفة" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "No minimum" -msgstr "بلا قيمة صغرى" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "هذا الخيار لتعيين أقل قيمة تعمل القسيمة عليها." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:74 -#: admin/woocommerce-admin-taxonomies.php:28 -#: admin/woocommerce-admin-taxonomies.php:122 -msgid "Products" -msgstr "المنتجات" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:75 -#: admin/post-types/writepanels/writepanel-order_data.php:400 -#: admin/post-types/writepanels/writepanel-product_data.php:523 -#: admin/post-types/writepanels/writepanel-product_data.php:540 -#: admin/woocommerce-admin-reports.php:1245 -msgid "Search for a product…" -msgstr "أبحث عن منتج…" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:89 -msgid "Products which need to be in the cart to use this coupon or, for \"Product Discounts\", which products are discounted." -msgstr "المنتجات التي يجب تواجدها في السلة لتعمل القسيمة، أو المنتجات التي عليها خصم في حال كانت قسيمة منتجات." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:94 -msgid "Exclude products" -msgstr "المنتجات المستبعدة" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:95 -msgid "Search for a product…" -msgstr "أبحث عن منتج..." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:109 -msgid "Products which must not be in the cart to use this coupon or, for \"Product Discounts\", which products are not discounted." -msgstr "المنتجات الذي لا يجب أن توجد في العربة ليعمل الخصم، أو المنتجات التي لا تخصم بقسيمة المنتجات." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:116 -msgid "Product categories" -msgstr "تصنيفات المنتجات" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:117 -msgid "Any category" -msgstr "أي تصنيف" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:125 -msgid "A product must be in this category for the coupon to remain valid or, for \"Product Discounts\", products in these categories will be discounted." -msgstr "المنتجات في العربة يجب أن تكون من هذه التصنيفات، أو قسيمة المنتجات تخصم جميع منتجات هذه التصنيفات." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:130 -msgid "Exclude categories" -msgstr "التصنيفات المستبعدة" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:131 -msgid "No categories" -msgstr "لا تصنيفات" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:139 -msgid "Product must not be in this category for the coupon to remain valid or, for \"Product Discounts\", products in these categories will not be discounted." -msgstr "المنتجات في العربة يجب أن تكون من هذه التصنيفات، أو قسيمة المنتجات تخصم من منتجات هذه التصنيفات." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "Email restrictions" -msgstr "عناوين البريد للمالكين" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "No restrictions" -msgstr "جميع العناوين" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "List of emails to check against the customer's billing email when an order is placed." -msgstr "قائمة عناوين البريد الإلكتروني لمالكي القسائم، (التأكد يتم في مرحلة المحاسبة)" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "Usage limit" -msgstr "مرات الاستخدام" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "استخدام غير محدود (∞)" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "How many times this coupon can be used before it is void." -msgstr "كم مرة يمكن أن تستخدم القسيمة قبل تعطيلها." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgctxt "placeholder" -msgid "Never expire" -msgstr "لا تنتهي" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "The date this coupon will expire, YYYY-MM-DD." -msgstr "بعد هذا التاريخ تعطل القسيمة، أكتب بالصيغة YYYY-MM-DD." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:195 -msgid "Coupon code already exists - customers will use the latest coupon with this code." -msgstr "رمز القسيمة موجود بالفعل - سيفعل هذا الرمز أحدث قسيمة موجودة له." - -#: admin/post-types/writepanels/writepanel-order_data.php:59 -msgid "Order Details" -msgstr "معلومات الطلب" - -#: admin/post-types/writepanels/writepanel-order_data.php:62 -msgid "Order number" -msgstr "الطلب رقم:" - -#: admin/post-types/writepanels/writepanel-order_data.php:67 -msgid "Customer IP:" -msgstr "IP الخاص بالزبون" - -#: admin/post-types/writepanels/writepanel-order_data.php:74 -msgid "General Details" -msgstr "معلومات عامة" - -#: admin/post-types/writepanels/writepanel-order_data.php:76 -msgid "Order status:" -msgstr "حالة الطلب:" - -#: admin/post-types/writepanels/writepanel-order_data.php:86 -msgid "Order Date:" -msgstr "تاريخ الطلب:" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -msgid "h" -msgstr "س" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#: admin/settings/settings-init.php:567 -msgid "m" -msgstr "د" - -#: admin/post-types/writepanels/writepanel-order_data.php:91 -msgid "Customer:" -msgstr "الزبون:" - -#: admin/post-types/writepanels/writepanel-order_data.php:131 -msgid "Customer Note:" -msgstr "ملاحظات الزبون:" - -#: admin/post-types/writepanels/writepanel-order_data.php:132 -msgid "Customer's notes about the order" -msgstr "ملاحظات الزبون على الطلب" - -#: admin/post-types/writepanels/writepanel-order_data.php:140 -msgid "Billing Details" -msgstr "بيانات المشتري" - -#: admin/post-types/writepanels/writepanel-order_data.php:144 -#: admin/post-types/writepanels/writepanel-order_data.php:234 -msgid "First Name" -msgstr "الاسم الأول" - -#: admin/post-types/writepanels/writepanel-order_data.php:148 -#: admin/post-types/writepanels/writepanel-order_data.php:238 -msgid "Last Name" -msgstr "العائلة" - -#: admin/post-types/writepanels/writepanel-order_data.php:152 -#: admin/post-types/writepanels/writepanel-order_data.php:242 -#: admin/woocommerce-admin-users.php:155 -#: admin/woocommerce-admin-users.php:204 -msgid "Company" -msgstr "الشركة" - -#: admin/post-types/writepanels/writepanel-order_data.php:156 -#: admin/post-types/writepanels/writepanel-order_data.php:246 -#: admin/woocommerce-admin-users.php:159 -#: admin/woocommerce-admin-users.php:208 -msgid "Address 1" -msgstr "العنوان 1" - -#: admin/post-types/writepanels/writepanel-order_data.php:160 -#: admin/post-types/writepanels/writepanel-order_data.php:250 -#: admin/woocommerce-admin-users.php:163 -#: admin/woocommerce-admin-users.php:212 -msgid "Address 2" -msgstr "العنوان 2" - -#: admin/post-types/writepanels/writepanel-order_data.php:164 -#: admin/post-types/writepanels/writepanel-order_data.php:254 -#: admin/settings/settings-tax-rates.php:42 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-users.php:167 -#: admin/woocommerce-admin-users.php:216 -msgid "City" -msgstr "المدينة" - -#: admin/post-types/writepanels/writepanel-order_data.php:168 -#: admin/post-types/writepanels/writepanel-order_data.php:258 -#: admin/woocommerce-admin-users.php:171 -#: admin/woocommerce-admin-users.php:220 -msgid "Postcode" -msgstr "الرمز البريدي" - -#: admin/post-types/writepanels/writepanel-order_data.php:172 -#: admin/post-types/writepanels/writepanel-order_data.php:262 -#: admin/woocommerce-admin-users.php:179 -#: admin/woocommerce-admin-users.php:228 -msgid "Country" -msgstr "الدولة" - -#: admin/post-types/writepanels/writepanel-order_data.php:175 -#: admin/post-types/writepanels/writepanel-order_data.php:265 -msgid "Select a country…" -msgstr "أختر دولة…" - -#: admin/post-types/writepanels/writepanel-order_data.php:178 -#: admin/post-types/writepanels/writepanel-order_data.php:268 -#: admin/woocommerce-admin-users.php:175 -#: admin/woocommerce-admin-users.php:224 -msgid "State/County" -msgstr "الولاية\\المحافظة" - -#: admin/post-types/writepanels/writepanel-order_data.php:182 -#: admin/woocommerce-admin-users.php:187 -msgid "Email" -msgstr "البريد الإلكتروني" - -#: admin/post-types/writepanels/writepanel-order_data.php:185 -msgid "Phone" -msgstr "الهاتف" - -#: admin/post-types/writepanels/writepanel-order_data.php:193 -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#: admin/post-types/writepanels/writepanel-order_data.php:277 -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "Address" -msgstr "العنوان" - -#: admin/post-types/writepanels/writepanel-order_data.php:195 -msgid "No billing address set." -msgstr "لم تحدد بيانات الزبون." - -#: admin/post-types/writepanels/writepanel-order_data.php:208 -msgid "Load billing address" -msgstr "النسخ من بيانات الزبون" - -#: admin/post-types/writepanels/writepanel-order_data.php:230 -msgid "Shipping Details" -msgstr "بيانات الشحن" - -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "No shipping address set." -msgstr "لم تحدد بيانات الشحن." - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Load shipping address" -msgstr "النسخ من بيانات الزبون" - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Copy from billing" -msgstr "النسخ من بيانات المشتري" - -#: admin/post-types/writepanels/writepanel-order_data.php:339 -msgid "Item" -msgstr "العنصر" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#: admin/post-types/writepanels/writepanel-product_data.php:191 -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Class" -msgstr "فئة الضرائب" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -msgid "Tax class for the line item" -msgstr "فئة الضرائب لهذا العنص" - -#: admin/post-types/writepanels/writepanel-order_data.php:347 -msgid "Qty" -msgstr "الكمية" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -msgid "Totals" -msgstr "المجموع" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -msgid "Line subtotals are before pre-tax discounts, totals are after." -msgstr "المجموع الأصلي هو السعر قبل الخصومات (وقبل حساب الضرائب)، والمجموع فهو بعد الخصومات." - -#: admin/post-types/writepanels/writepanel-order_data.php:352 -#: admin/settings/settings-tax-rates.php:387 -#: admin/settings/settings-tax-rates.php:475 -#: admin/woocommerce-admin-content.php:48 -#: admin/woocommerce-admin-settings.php:186 -msgid "Tax" -msgstr "الضريبة" - -#: admin/post-types/writepanels/writepanel-order_data.php:388 -msgid "Delete Lines" -msgstr "حذف العنصر" - -#: admin/post-types/writepanels/writepanel-order_data.php:390 -msgid "Stock Actions" -msgstr "إجرائات المخزن" - -#: admin/post-types/writepanels/writepanel-order_data.php:391 -msgid "Reduce Line Stock" -msgstr "تقليل الكمية" - -#: admin/post-types/writepanels/writepanel-order_data.php:392 -msgid "Increase Line Stock" -msgstr "زيادة الكمية" - -#: admin/post-types/writepanels/writepanel-order_data.php:396 -#: admin/post-types/writepanels/writepanel-order_data.php:456 -msgid "Apply" -msgstr "تطبيق" - -#: admin/post-types/writepanels/writepanel-order_data.php:402 -msgid "Add item(s)" -msgstr "إضافة عنصر\\عناصر" - -#: admin/post-types/writepanels/writepanel-order_data.php:403 -msgid "Add fee" -msgstr "إضافة رسوم" - -#: admin/post-types/writepanels/writepanel-order_data.php:434 -msgid "Resend order emails" -msgstr "إرسال الطلب بالبريد الإلكتروني" - -#: admin/post-types/writepanels/writepanel-order_data.php:465 -msgid "Move to Trash" -msgstr "نقل لسلة المهملات" - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save Order" -msgstr "حفظ الطلب" - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save/update the order" -msgstr "حفظ\\تحديث الطلب" - -#: admin/post-types/writepanels/writepanel-order_data.php:498 -msgid "Discounts" -msgstr "الخصومات" - -#: admin/post-types/writepanels/writepanel-order_data.php:502 -msgid "Cart Discount:" -msgstr "خصومات العربة" - -#: admin/post-types/writepanels/writepanel-order_data.php:502 -msgid "Discounts before tax - calculated by comparing subtotals to totals." -msgstr "الخصومات قبل الضرائب - تحسب بمقارنة السعر الأصلي مع السعر." - -#: admin/post-types/writepanels/writepanel-order_data.php:510 -msgid "Order Discount:" -msgstr "خصومات الطلب:" - -#: admin/post-types/writepanels/writepanel-order_data.php:510 -msgid "Discounts after tax - user defined." -msgstr "الخصومات بعد حساب الضريبة - يحددها المستخدم." - -#: admin/post-types/writepanels/writepanel-order_data.php:543 -msgid "Label:" -msgstr "التسمية:" - -#: admin/post-types/writepanels/writepanel-order_data.php:544 -msgid "The shipping title the customer sees" -msgstr "عنوان الشحن الذي يراه الزبائن" - -#: admin/post-types/writepanels/writepanel-order_data.php:551 -msgid "Cost:" -msgstr "التكلفة:" - -#: admin/post-types/writepanels/writepanel-order_data.php:552 -msgid "(ex. tax)" -msgstr "(كمقابل)" - -#: admin/post-types/writepanels/writepanel-order_data.php:559 -msgid "Method:" -msgstr "الطريقة:" - -#: admin/post-types/writepanels/writepanel-order_data.php:581 -#: admin/post-types/writepanels/writepanel-order_data.php:583 -#: admin/post-types/writepanels/writepanel-order_data.php:682 -#: admin/post-types/writepanels/writepanel-order_data.php:684 -msgid "Other" -msgstr "أخرى" - -#: admin/post-types/writepanels/writepanel-order_data.php:597 -msgid "Tax Rows" -msgstr "ضرائب إضافية" - -#: admin/post-types/writepanels/writepanel-order_data.php:622 -msgid "+ Add tax row" -msgstr "+ إضافة ضريبة" - -#: admin/post-types/writepanels/writepanel-order_data.php:622 -msgid "These rows contain taxes for this order. This allows you to display multiple or compound taxes rather than a single total." -msgstr "هذه الضرائب تكون خاصة بهذا الطلب. وهي تسمح لك بتطبيق ضريبة على مكان معين أو تطبيق ضرائب متعددة." - -#: admin/post-types/writepanels/writepanel-order_data.php:626 -msgid "Tax Totals" -msgstr "مجموع الضرائب" - -#: admin/post-types/writepanels/writepanel-order_data.php:630 -msgid "Total tax for line items + fees." -msgstr "مجموع الضرائب للعناصر والعمولات." - -#: admin/post-types/writepanels/writepanel-order_data.php:652 -#: admin/post-types/writepanels/writepanels-init.php:70 -msgid "Order Totals" -msgstr "تكاليف الطلب" - -#: admin/post-types/writepanels/writepanel-order_data.php:656 -msgid "Order Total:" -msgstr "سعر الطلب" - -#: admin/post-types/writepanels/writepanel-order_data.php:664 -msgid "Payment Method:" -msgstr "طريقة الدفع:" - -#: admin/post-types/writepanels/writepanel-order_data.php:695 -msgid "Calc taxes" -msgstr "حساب الضرائب" - -#: admin/post-types/writepanels/writepanel-order_data.php:697 -msgid "Calc totals" -msgstr "مساب السعر" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:57 -msgid "Choose a downloadable product…" -msgstr "أختر منتج به مرفق…" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:87 -msgid "Grant Access" -msgstr "السماح بالتحميل" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:125 -msgid "Could not grant access - the user may already have permission for this file or billing email is not set. Ensure the billing email is set, and the order has been saved." -msgstr "لا يمكن السماح - أما أن المستخدم يمكنه التحميل بالفعل أو أن البريد الإلكتروني لم يحدد، تأكد من البريد ثم أحفظ الطلب." - -#: admin/post-types/writepanels/writepanel-order_downloads.php:148 -msgid "Are you sure you want to revoke access to this download?" -msgstr "هل تريد منع تحميل هذا الملف بالفعل؟" - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -msgid "added %s ago" -msgstr "أضيف منذ %s" - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -msgid "Delete note" -msgstr "حذف الملاحظة" - -#: admin/post-types/writepanels/writepanel-order_notes.php:50 -msgid "There are no notes for this order yet." -msgstr "لا يوجد ملاحظات لهذا الطلب بعد." - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "Add note" -msgstr "إضافة ملاحظة" - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "Add a note for your reference, or add a customer note (the user will be notified)." -msgstr "تستخدم الملاحظات الخاصة لتذكيرك، أو ملاحظات الزبون لتنبيهه." - -#: admin/post-types/writepanels/writepanel-order_notes.php:62 -msgid "Customer note" -msgstr "ملاحظة زبون" - -#: admin/post-types/writepanels/writepanel-order_notes.php:63 -msgid "Private note" -msgstr "ملاحظة خاصة" - -#: admin/post-types/writepanels/writepanel-order_notes.php:65 -#: admin/post-types/writepanels/writepanel-product_data.php:501 -msgid "Add" -msgstr "إضافة" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations for variable products are defined here." -msgstr "أنواع المنتج المتغير تحدد هنا." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations" -msgstr "الأنواع" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:65 -msgid "Before adding variations, add and save some attributes on the Attributes tab." -msgstr "قبل إضافة الأنواع، أضف بعض الصفات من لسان الصفات." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:67 -msgid "Learn more" -msgstr "معرفة المزيد" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Close all" -msgstr "أغلق الكل" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Expand all" -msgstr "أفتح الكل" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:75 -msgid "Bulk edit:" -msgstr "تعديل الكل:" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:77 -msgid "Toggle "Enabled"" -msgstr "عكس "الاستخدام"" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:78 -msgid "Toggle "Downloadable"" -msgstr "عكس "به مرفق"" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:79 -msgid "Toggle "Virtual"" -msgstr "عكس "خدمة"" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:80 -msgid "Delete all variations" -msgstr "حذف جميع الأنواع" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:81 -msgid "Prices" -msgstr "الأسعار" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:82 -msgid "Sale prices" -msgstr "العروض" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:88 -msgid "File Path" -msgstr "مسار المرفق" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:89 -msgid "Download limit" -msgstr "حدود التحميل" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:90 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Download Expiry" -msgstr "تاريخ نهاية التحميل" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:93 -msgid "Go" -msgstr "نفِّذ" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:193 -msgid "Add Variation" -msgstr "إضافة نوع" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:195 -msgid "Link all variations" -msgstr "إضافة جميع تركيبات الأنواع الممكنة" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:197 -msgid "Default selections:" -msgstr "النوع الإفتراضي" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:210 -msgid "No default" -msgstr "بلا أفتراضيات" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:299 -msgid "Are you sure you want to link all variations? This will create a new variation for each and every possible combination of variation attributes (max 50 per run)." -msgstr "هل أنت متأكد من رغبتك في إضافة الجميع التركيبات الممكنة؟ هذا سينشأ نوع لكل تركيبات لصفات المنتج (أقصى حد 50 لكل مرة)." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:316 -msgid "variation added" -msgstr "التركيب أضيف" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:318 -msgid "variations added" -msgstr "التركيبات أضيفت" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:320 -msgid "No variations added" -msgstr "لا تركيبات لإضافتها" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:343 -msgid "Are you sure you want to remove this variation?" -msgstr "هل أنت متأكد من رغبتك في إزالة هذا النوع؟" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:399 -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "هل أنت متأكد من رغبتك في إزالة جميع النوع؟ هذا لا يمكن التراجع عنه" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:402 -msgid "Last warning, are you sure?" -msgstr "آخر سؤال، هل أنت متأكد؟" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:439 -msgid "Enter a value" -msgstr "أدخل قيمة" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:517 -#: admin/woocommerce-admin-taxonomies.php:62 -#: admin/woocommerce-admin-taxonomies.php:154 -msgid "Choose an image" -msgstr "أختر صورة" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:519 -msgid "Set variation image" -msgstr "تحديد كصورة المنتج" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:563 -msgid "Variable product" -msgstr "منتج متغير" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:629 -msgid "Variation #%s of %s" -msgstr "النوع #%s من %s" - -#: admin/post-types/writepanels/writepanel-product_data.php:43 -msgid "Product Type" -msgstr "نوع المنتج" - -#: admin/post-types/writepanels/writepanel-product_data.php:53 -msgid "Virtual products are intangible and aren't shipped." -msgstr "الخدمات هي منتجات غير ملموسة ولا تشحن." - -#: admin/post-types/writepanels/writepanel-product_data.php:59 -msgid "Downloadable products give access to a file upon purchase." -msgstr "المنتجات التي بها مرفقات تمكنك من بيع الملفات." - -#: admin/post-types/writepanels/writepanel-product_data.php:77 -#: admin/woocommerce-admin-content.php:44 -#: admin/woocommerce-admin-settings.php:182 -msgid "General" -msgstr "عام" - -#: admin/post-types/writepanels/writepanel-product_data.php:79 -#: admin/woocommerce-admin-content.php:47 -#: admin/woocommerce-admin-settings.php:185 -msgid "Inventory" -msgstr "المخزون" - -#: admin/post-types/writepanels/writepanel-product_data.php:83 -msgid "Linked Products" -msgstr "المنتجات ذات صلة" - -#: admin/post-types/writepanels/writepanel-product_data.php:85 -#: admin/woocommerce-admin-attributes.php:299 -#: admin/woocommerce-admin-init.php:66 -msgid "Attributes" -msgstr "الصفات" - -#: admin/post-types/writepanels/writepanel-product_data.php:87 -msgid "Advanced" -msgstr "المزيد" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "Stock Keeping Unit" -msgstr "الرمز التعريفي" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "SKU refers to a Stock-keeping unit, a unique identifier for each distinct product and service that can be purchased." -msgstr "رزم الرمز التعريفي، هو رمز لا يتكرر لأي منتج أو خدمة يمكن بيعها." - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Product URL" -msgstr "رابط المنتج" - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Enter the external URL to the product." -msgstr "إضافة رابط مكان بيع المنتج" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "Button text" -msgstr "نص الزر" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgctxt "placeholder" -msgid "Buy product" -msgstr "شراء المنتج" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "This text will be shown on the button linking to the external product." -msgstr "هذا النص سيرى على الزر الذي يقود لمكان بيع المنتج" - -#: admin/post-types/writepanels/writepanel-product_data.php:119 -msgid "Regular Price" -msgstr "السعر الأصلي" - -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Sale Price" -msgstr "سعر العرض" - -#: admin/post-types/writepanels/writepanel-product_data.php:135 -msgid "Sale Price Dates" -msgstr "زمن العرض" - -#: admin/post-types/writepanels/writepanel-product_data.php:138 -#: admin/post-types/writepanels/writepanel-product_data.php:1082 -msgid "Cancel" -msgstr "إلغاء" - -#: admin/post-types/writepanels/writepanel-product_data.php:152 -msgid "File paths (one per line)" -msgstr "مسارات الروابط (واحد لك سطر)" - -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Download Limit" -msgstr "حد التجميل" - -#: admin/post-types/writepanels/writepanel-product_data.php:178 -msgid "Tax Status" -msgstr "حالة الضريبة" - -#: admin/post-types/writepanels/writepanel-product_data.php:180 -msgid "Shipping only" -msgstr "للشحن فقط" - -#: admin/post-types/writepanels/writepanel-product_data.php:181 -msgid "None" -msgstr "بدون" - -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Enable stock management at product level" -msgstr "تمكين إدارة الكمية وإنقاص الكمية عند الشراء" - -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "Stock quantity. If this is a variable product this value will be used to control stock for all variations, unless you define stock at variation level." -msgstr "الكمية. إذا كان منتج متغير ستكون هذه كمية عامة بجميع اﻷنواع التي لا تحدد كميتها" - -#: admin/post-types/writepanels/writepanel-product_data.php:230 -msgid "Stock status" -msgstr "حالة المخزون" - -#: admin/post-types/writepanels/writepanel-product_data.php:233 -msgid "Controls whether or not the product is listed as \"in stock\" or \"out of stock\" on the frontend." -msgstr "التحكم في عرض المنتجات على أنها \"متوفرة\" أو \"نفدت\"." - -#: admin/post-types/writepanels/writepanel-product_data.php:240 -msgid "Allow Backorders?" -msgstr "كمية سالبة؟" - -#: admin/post-types/writepanels/writepanel-product_data.php:241 -msgid "Do not allow" -msgstr "لا" - -#: admin/post-types/writepanels/writepanel-product_data.php:242 -msgid "Allow, but notify customer" -msgstr "نعم، مع تنبيه الزبون" - -#: admin/post-types/writepanels/writepanel-product_data.php:243 -msgid "Allow" -msgstr "نعم" - -#: admin/post-types/writepanels/writepanel-product_data.php:244 -msgid "If managing stock, this controls whether or not backorders are allowed for this product and variations. If enabled, stock quantity can go below 0." -msgstr "إذا كان مفعل، ممكن أن تقل الكمية عن الصفر" - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "Sold Individually" -msgstr "بيع واحد فقط" - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "Enable this to only allow one of this item to be bought in a single order" -msgstr "بتمكين هذا الخيار لا يمكن بيع أكثر من واحد من هذا المنتج في كل طلب" - -#: admin/post-types/writepanels/writepanel-product_data.php:273 -msgid "Weight in decimal form" -msgstr "الوزن بالأرقام" - -#: admin/post-types/writepanels/writepanel-product_data.php:284 -msgid "Dimensions" -msgstr "الأبعاد" - -#: admin/post-types/writepanels/writepanel-product_data.php:290 -msgid "LxWxH in decimal form" -msgstr "الطول والعرض والارتفاع بالأرقام" - -#: admin/post-types/writepanels/writepanel-product_data.php:311 -msgid "No shipping class" -msgstr "بدون فئة شحن" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "Shipping class" -msgstr "فئة الشحن" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "Shipping classes are used by certain shipping methods to group similar products." -msgstr "تستخدم فئات الشحن لتحديد طرق شحن مجموعة متشابهة من المنتجات." - -#: admin/post-types/writepanels/writepanel-product_data.php:384 -#: admin/post-types/writepanels/writepanel-product_data.php:476 -#: admin/woocommerce-admin-init.php:440 -msgid "Value(s)" -msgstr "القيمة\\القيم" - -#: admin/post-types/writepanels/writepanel-product_data.php:386 -msgid "Select terms" -msgstr "تحديد قيمة" - -#: admin/post-types/writepanels/writepanel-product_data.php:398 -msgid "Select all" -msgstr "تحديد الكل" - -#: admin/post-types/writepanels/writepanel-product_data.php:398 -msgid "Select none" -msgstr "مسح الكل" - -#: admin/post-types/writepanels/writepanel-product_data.php:400 -msgid "Add new" -msgstr "إضافة المزيد" - -#: admin/post-types/writepanels/writepanel-product_data.php:413 -msgid "Pipe (|) separate terms" -msgstr "العمود (|) يفصل القيم" - -#: admin/post-types/writepanels/writepanel-product_data.php:427 -#: admin/post-types/writepanels/writepanel-product_data.php:482 -#: admin/woocommerce-admin-init.php:442 -msgid "Visible on the product page" -msgstr "عرض في صفحة المنتج" - -#: admin/post-types/writepanels/writepanel-product_data.php:440 -#: admin/post-types/writepanels/writepanel-product_data.php:488 -#: admin/woocommerce-admin-init.php:443 -msgid "Used for variations" -msgstr "تستخدم في الأنواع" - -#: admin/post-types/writepanels/writepanel-product_data.php:477 -#: admin/woocommerce-admin-init.php:441 -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "أدخل بعض القيم، العمود (|) يفصل القيم" - -#: admin/post-types/writepanels/writepanel-product_data.php:503 -msgid "Custom product attribute" -msgstr "صفة خاصة بالمنتج" - -#: admin/post-types/writepanels/writepanel-product_data.php:515 -msgid "Save attributes" -msgstr "حفظ الصفات" - -#: admin/post-types/writepanels/writepanel-product_data.php:522 -msgid "Up-Sells" -msgstr "منتجات أفضل" - -#: admin/post-types/writepanels/writepanel-product_data.php:537 -msgid "Up-sells are products which you recommend instead of the currently viewed product, for example, products that are more profitable or better quality or more expensive." -msgstr "هذه المنتجات التي ينصح بشرائها نيابة عن هذا المنتج كونها أحدث أو أكثر كفاءة." - -#: admin/post-types/writepanels/writepanel-product_data.php:539 -msgid "Cross-Sells" -msgstr "المنتجات المكملة" - -#: admin/post-types/writepanels/writepanel-product_data.php:554 -msgid "Cross-sells are products which you promote in the cart, based on the current product." -msgstr "هذه المنتجات ينصح بها مع هذه المنتج كونهم مجموعة واحدة مثلا." - -#: admin/post-types/writepanels/writepanel-product_data.php:564 -msgid "Choose a grouped product…" -msgstr "أختر مجموعة" - -#: admin/post-types/writepanels/writepanel-product_data.php:590 -msgid "Grouping" -msgstr "المجموعة" - -#: admin/post-types/writepanels/writepanel-product_data.php:590 -msgid "Set this option to make this product part of a grouped product." -msgstr "يستخدم هذا الخيار لجعل المنتج جزء من مجموعة منتجات" - -#: admin/post-types/writepanels/writepanel-product_data.php:610 -msgid "Purchase Note" -msgstr "ملاحظات البيع" - -#: admin/post-types/writepanels/writepanel-product_data.php:610 -msgid "Enter an optional note to send the customer after purchase." -msgstr "أدخل أي ملاحظة لترسل للزبون وقت الشراء." - -#: admin/post-types/writepanels/writepanel-product_data.php:617 -msgid "Menu order" -msgstr "ترتيب المنتج" - -#: admin/post-types/writepanels/writepanel-product_data.php:617 -msgid "Custom ordering position." -msgstr "الترتيب المخصص للعناصر (في العربة)" - -#: admin/post-types/writepanels/writepanel-product_data.php:625 -msgid "Enable reviews" -msgstr "تمكين مراجعات الزوار" - -#: admin/post-types/writepanels/writepanel-product_data.php:714 -msgid "Product SKU must be unique." -msgstr "رمز تعريف" - -#: admin/post-types/writepanels/writepanel-product_data.php:1046 -msgid "Catalog/search" -msgstr "القائمة\\البحث" - -#: admin/post-types/writepanels/writepanel-product_data.php:1053 -msgid "Catalog visibility:" -msgstr "عرض المنتج في:" - -#: admin/post-types/writepanels/writepanel-product_data.php:1069 -msgid "Define the loops this product should be visible in. The product will still be accessible directly." -msgstr "تحديد الأماكن التي يعرض المنتج فيها، الرابط المباشر يعمل ولا يتأثر بهذا الخيار." - -#: admin/post-types/writepanels/writepanel-product_data.php:1075 -msgid "Enable this option to feature this product." -msgstr "فعل هذا الخيار للمنتجات المميزة." - -#: admin/post-types/writepanels/writepanel-product_data.php:1077 -msgid "Featured Product" -msgstr "منتج مميز." - -#: admin/post-types/writepanels/writepanel-product_data.php:1081 -msgid "OK" -msgstr "موافق" - -#: admin/post-types/writepanels/writepanel-product_images.php:43 -#: admin/post-types/writepanels/writepanel-product_images.php:103 -msgid "Delete image" -msgstr "حذف الصورة" - -#: admin/post-types/writepanels/writepanel-product_images.php:43 -#: admin/post-types/writepanels/writepanel-product_images.php:103 -#: admin/woocommerce-admin-attributes.php:323 -msgid "Delete" -msgstr "حذف" - -#: admin/post-types/writepanels/writepanel-product_images.php:54 -msgid "Add product gallery images" -msgstr "إضافة صور لمعرض المنتج" - -#: admin/post-types/writepanels/writepanel-product_images.php:80 -msgid "Add Images to Product Gallery" -msgstr "إضافة صور لمعرض المنتج" - -#: admin/post-types/writepanels/writepanel-product_images.php:82 -msgid "Add to gallery" -msgstr "إضافة للمعرض" - -#: admin/post-types/writepanels/writepanels-init.php:47 -msgid "Product Gallery" -msgstr "معرض المنتج" - -#: admin/post-types/writepanels/writepanels-init.php:55 -msgid "Product Short Description" -msgstr "الوصف القصير للمنتج" - -#: admin/post-types/writepanels/writepanels-init.php:64 -msgid "Reviews" -msgstr "المراجعات" - -#: admin/post-types/writepanels/writepanels-init.php:68 -msgid "Order Data" -msgstr "تاريخ الطلب" - -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "Order Items" -msgstr "عناصر الطلب" - -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "Note: if you edit quantities or remove items from the order you will need to manually update stock levels." -msgstr "ملاحظة: إذا حذفت عناصر من الطلب أو غير الكميات يجب أن تعدل الكيات التي في المخزن يدويا." - -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "Downloadable Product Permissions" -msgstr "صلاحيات تحميل المرفقات" - -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "Note: Permissions for order items will automatically be granted when the order status changes to processing/completed." -msgstr "ملاحظة: الصلاحيات تعطى تلقائيا عند تغير حالة الطلب إلى \"جار العمل عليه\\مكتمل\"." - -#: admin/post-types/writepanels/writepanels-init.php:73 -msgid "Order Actions" -msgstr "إجراءات الطلب" - -#: admin/post-types/writepanels/writepanels-init.php:81 -msgid "Coupon Data" -msgstr "بيانات القسيمة" - -#: admin/post-types/writepanels/writepanels-init.php:100 -msgid "Coupon code" -msgstr "رمز القسيمة" - -#: admin/post-types/writepanels/writepanels-init.php:101 -msgid "Product name" -msgstr "اسم المنتج" - -#: admin/post-types/writepanels/writepanels-init.php:185 -msgid "Allow reviews." -msgstr "السماح بالمراجعات" - -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "Allow trackbacks and pingbacks on this page." -msgstr "السماح بالتعقيبات والتنبيهات في هذه الصفحة." - -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" -msgstr "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" - -#: admin/settings/settings-frontend-styles.php:23 -msgid "Styles" -msgstr "الألوان" - -#: admin/settings/settings-frontend-styles.php:43 -msgid "Primary" -msgstr "الأساسي" - -#: admin/settings/settings-frontend-styles.php:43 -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "يستخدم في الأزرار، والأسعار، والتنقل وباق الواجهة ..." - -#: admin/settings/settings-frontend-styles.php:44 -msgid "Secondary" -msgstr "الثانوي" - -#: admin/settings/settings-frontend-styles.php:44 -msgid "Buttons and tabs" -msgstr "الأزرار والألسنة" - -#: admin/settings/settings-frontend-styles.php:45 -msgid "Highlight" -msgstr "المميز" - -#: admin/settings/settings-frontend-styles.php:45 -msgid "Price labels and Sale Flashes" -msgstr "طوابع العروض و الأسعار" - -#: admin/settings/settings-frontend-styles.php:46 -msgid "Content" -msgstr "المحتوى" - -#: admin/settings/settings-frontend-styles.php:46 -msgid "Your themes page background - used for tab active states" -msgstr "خلفية القالب واللسان الحالي" - -#: admin/settings/settings-frontend-styles.php:47 -msgid "Subtext" -msgstr "النصوص" - -#: admin/settings/settings-frontend-styles.php:47 -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "يستخدم للنصوص والمقالات إلخ ..." - -#: admin/settings/settings-frontend-styles.php:51 -msgid "To edit colours woocommerce/assets/css/woocommerce-base.less and woocommerce.css need to be writable. See the Codex for more information." -msgstr "لتغيير الألوان woocommerce/assets/css/woocommerce-base.less و woocommerce.css يجب أن يكونا قابلين للقرائة. شاهد Codex لمزيد من التفاصل." - -#: admin/settings/settings-init.php:18 -msgid "Localisation" -msgstr "الترجمة" - -#: admin/settings/settings-init.php:19 -msgid "Use informal localisation for %s" -msgstr "استخدام الترجمة الرسمية للغة %s" - -#: admin/settings/settings-init.php:33 -msgid "General Options" -msgstr "إعدادات عامة" - -#: admin/settings/settings-init.php:36 -msgid "Base Location" -msgstr "الدولة" - -#: admin/settings/settings-init.php:37 -msgid "This is the base location for your business. Tax rates will be based on this country." -msgstr "الدولة التي بها مشروعك الضرائب ستعتمد على هذه الدولة" - -#: admin/settings/settings-init.php:46 -msgid "Currency" -msgstr "العملة" - -#: admin/settings/settings-init.php:47 -msgid "This controls what currency prices are listed at in the catalog and which currency gateways will take payments in." -msgstr "هذه العملة التي تستخدم في كل مكان من الموقع." - -#: admin/settings/settings-init.php:58 -msgid "Allowed Countries" -msgstr "الدول المسموحة." - -#: admin/settings/settings-init.php:59 -msgid "These are countries that you are willing to ship to." -msgstr "هذه الدول أنت عل استعداد للشحن لها للشحن لها" - -#: admin/settings/settings-init.php:67 -msgid "All Countries" -msgstr "كل الدول" - -#: admin/settings/settings-init.php:68 -#: admin/settings/settings-init.php:73 -msgid "Specific Countries" -msgstr "دول محددة" - -#: admin/settings/settings-init.php:84 -msgid "Store Notice" -msgstr "تنبيه الزوار" - -#: admin/settings/settings-init.php:85 -msgid "Enable site-wide store notice text" -msgstr "تمكين تنبيه يعرض في جميع صفحات الموقع." - -#: admin/settings/settings-init.php:92 -msgid "Store Notice Text" -msgstr "نص التنبه" - -#: admin/settings/settings-init.php:95 -msgid "This is a demo store for testing purposes — no orders shall be fulfilled." -msgstr "هذا متجر تجريبي — الطلبات لن تقبل." - -#: admin/settings/settings-init.php:102 -msgid "Cart, Checkout and Accounts" -msgstr "العربة، المحاسبة، والحساب" - -#: admin/settings/settings-init.php:105 -#: admin/woocommerce-admin-content.php:61 -#: admin/woocommerce-admin-content.php:76 -#: admin/woocommerce-admin-reports.php:63 -msgid "Coupons" -msgstr "القسائم" - -#: admin/settings/settings-init.php:106 -msgid "Enable the use of coupons" -msgstr "تمكين القسائم" - -#: admin/settings/settings-init.php:110 -msgid "Coupons can be applied from the cart and checkout pages." -msgstr "القسائم تستخدم في العربة وصفحة المحاسبة" - -#: admin/settings/settings-init.php:114 -#: admin/woocommerce-admin-install.php:201 -#: admin/woocommerce-admin-status.php:307 -msgid "Checkout" -msgstr "المحاسبة" - -#: admin/settings/settings-init.php:115 -msgid "Enable guest checkout (no account required)" -msgstr "تمكين الزوار من المحاسبة (التسجيل غير مطلوب)" - -#: admin/settings/settings-init.php:123 -msgid "Enable customer note field on checkout" -msgstr "تمكين حقل ملاحظات الزبون في المحاسبة" - -#: admin/settings/settings-init.php:131 -msgid "Force secure checkout" -msgstr "فرض المحاسبة الآمنة" - -#: admin/settings/settings-init.php:137 -msgid "Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -msgstr "فرض أستخدام SSl (HTTPS)‎ في صفحات المحاسبة (يجب أن تملك شهادة SSL)." - -#: admin/settings/settings-init.php:141 -msgid "Un-force HTTPS when leaving the checkout" -msgstr "إلغاء HTTPS عند مغادرة صفحة المحاسبة" - -#: admin/settings/settings-init.php:150 -msgid "Registration" -msgstr "التسجيل" - -#: admin/settings/settings-init.php:151 -msgid "Allow registration on the checkout page" -msgstr "يجب التسجيل في صفحة المحاسبة" - -#: admin/settings/settings-init.php:159 -msgid "Allow registration on the \"My Account\" page" -msgstr "يجب التسجيل في صفحة \"حسابي\"" - -#: admin/settings/settings-init.php:167 -msgid "Register using the email address for the username" -msgstr "المسجلون يستخدمون البريد الإلكتروني كاسم مستخدم" - -#: admin/settings/settings-init.php:175 -msgid "Customer Accounts" -msgstr "حسابات الزبائن" - -#: admin/settings/settings-init.php:176 -msgid "Prevent customers from accessing WordPress admin" -msgstr "امنع الزبائن من الوصول للوحة تحكم ووردبريس" - -#: admin/settings/settings-init.php:184 -msgid "Clear cart when logging out" -msgstr "امسح السلة عند تسجيل الخروج" - -#: admin/settings/settings-init.php:192 -msgid "Allow customers to repurchase orders from their account page" -msgstr "السماح للزبائن بإعادة الطلب من صفحة حسابهم" - -#: admin/settings/settings-init.php:201 -msgid "Styles and Scripts" -msgstr "المظهر وجافاسكربت" - -#: admin/settings/settings-init.php:204 -msgid "Styling" -msgstr "المظهر" - -#: admin/settings/settings-init.php:205 -msgid "Enable WooCommerce CSS" -msgstr "تمكين تنسيقات WooCommerce" - -#: admin/settings/settings-init.php:216 -msgid "Scripts" -msgstr "جافاسكربت" - -#: admin/settings/settings-init.php:217 -msgid "Enable Lightbox" -msgstr "تمكين Lightbox" - -#: admin/settings/settings-init.php:220 -msgid "Include WooCommerce's lightbox. Product gallery images and the add review form will open in a lightbox." -msgstr "عند التمكين صور معرض المنتج وإضافة مراجعة ستفتح في lightbox." - -#: admin/settings/settings-init.php:226 -msgid "Enable enhanced country select boxes" -msgstr "تمكين صندوق البحث في الدول" - -#: admin/settings/settings-init.php:231 -msgid "This will enable a script allowing the country fields to be searchable." -msgstr "هذا السكربت يجعل حقل الدولة قابل للبحث." - -#: admin/settings/settings-init.php:236 -msgid "Downloadable Products" -msgstr "المنتجات التي تحوي مرفقات" - -#: admin/settings/settings-init.php:239 -msgid "File Download Method" -msgstr "طريقة التحميل" - -#: admin/settings/settings-init.php:240 -msgid "Forcing downloads will keep URLs hidden, but some servers may serve large files unreliably. If supported, X-Accel-Redirect/ X-Sendfile can be used to serve downloads instead (server requires mod_xsendfile)." -msgstr "فرض التحميل سيبقي الروابط مخفية، لكن بعض الاستضافات قد تعتبر الملفات الكبيرة غير موثوقة. إذا كان X-Accel-Redirect/ X-Sendfile مدعوما استخدمه بدل من ذلك (يجب أن تدعم الاستضافة mod_xsendfile)." - -#: admin/settings/settings-init.php:248 -msgid "Force Downloads" -msgstr "فرض التحميل" - -#: admin/settings/settings-init.php:249 -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "X-Accel-Redirect/X-Sendfile" - -#: admin/settings/settings-init.php:250 -msgid "Redirect only" -msgstr "التحويل فقط" - -#: admin/settings/settings-init.php:255 -msgid "Access Restriction" -msgstr "تقييد الوصول" - -#: admin/settings/settings-init.php:256 -msgid "Downloads require login" -msgstr "التحميل يتطلب التسجيل" - -#: admin/settings/settings-init.php:260 -msgid "This setting does not apply to guest purchases." -msgstr "هذا الإعداد لا يعمل على طلبات الزوار (غير المسجلين)" - -#: admin/settings/settings-init.php:265 -msgid "Grant access to downloadable products after payment" -msgstr "أسمح بتحميل المرفقات فقط بعد الدفع" - -#: admin/settings/settings-init.php:269 -msgid "Enable this option to grant access to downloads when orders are \"processing\", rather than \"completed\"." -msgstr "فعل هذا الخيار ليكون الوصول للمرفقات عندما يكون الطلب \"جار العمل عليه\"، أو \"مكتمل\"." - -#: admin/settings/settings-init.php:285 -msgid "Note: The shop page has children - child pages will not work if you enable this option." -msgstr "ملاحظة صفحة التسوق لها صفحات فرعية لا تظهر عند تفعيل هذا الخيار" - -#: admin/settings/settings-init.php:290 -msgid "Page Setup" -msgstr "إعداد الصفحات" - -#: admin/settings/settings-init.php:292 -msgid "Set up core WooCommerce pages here, for example the base page. The base page can also be used in your %sproduct permalinks%s." -msgstr "إعداد صفحات WooCommerce موجود هنا، مثل صفحة المنتجات الرئيسية وغيرها، يمكنك إعداد الصفحات أيضا من الروابط %sالدائمة%s." - -#: admin/settings/settings-init.php:297 -msgid "Shop Base Page" -msgstr "صفحة المنتجات الرئيسية" - -#: admin/settings/settings-init.php:298 -msgid "This sets the base page of your shop - this is where your product archive will be." -msgstr "حدد الصفحة الرئيسية لسوقك - هو مكان بقائمة جميع المنتجات" - -#: admin/settings/settings-init.php:308 -msgid "Terms Page ID" -msgstr "صفحة الشروط والأحكام" - -#: admin/settings/settings-init.php:309 -msgid "If you define a \"Terms\" page the customer will be asked if they accept them when checking out." -msgstr "إذا عينت صفحة شروط وأحكام فإن الزبائن سيألون إذا كانوا يقبلونها أم لا في صفحة المحاسبة." - -#: admin/settings/settings-init.php:320 -msgid "Shop Pages" -msgstr "صفحات المتجر" - -#: admin/settings/settings-init.php:320 -msgid "The following pages need selecting so that WooCommerce knows where they are. These pages should have been created upon installation of the plugin, if not you will need to create them." -msgstr "الصفحات التالية يجب أن تحدد ليتعرف عليها WooCommerce. هذه الصفحات تنشأ بشكل تلقائي وقت التثبيت إذا لم تنشأ، ستحتاج أن تنشئها بنفسك." - -#: admin/settings/settings-init.php:323 -msgid "Cart Page" -msgstr "عربة التسوق" - -#: admin/settings/settings-init.php:324 -msgid "Page contents: [woocommerce_cart]" -msgstr "الصفحة تحتوي: [woocommerce_cart]" - -#: admin/settings/settings-init.php:334 -msgid "Checkout Page" -msgstr "صفحة المحاسبة" - -#: admin/settings/settings-init.php:335 -msgid "Page contents: [woocommerce_checkout]" -msgstr "الصفحة تحتوي: [woocommerce_checkout]" - -#: admin/settings/settings-init.php:345 -msgid "Pay Page" -msgstr "صفحة الشراء" - -#: admin/settings/settings-init.php:346 -msgid "Page contents: [woocommerce_pay] Parent: \"Checkout\"" -msgstr "الصفحة تحتوي: [woocommerce_pay] أب: \"المحاسبة\"" - -#: admin/settings/settings-init.php:356 -msgid "Thanks Page" -msgstr "صفحة الشكر" - -#: admin/settings/settings-init.php:357 -msgid "Page contents: [woocommerce_thankyou] Parent: \"Checkout\"" -msgstr "الصفحة تحتوي: [woocommerce_thankyou] أب: \"المحاسبة\"" - -#: admin/settings/settings-init.php:367 -msgid "My Account Page" -msgstr "صفحة حسابي" - -#: admin/settings/settings-init.php:368 -msgid "Page contents: [woocommerce_my_account]" -msgstr "الصفحة تحتوي: [woocommerce_my_account]" - -#: admin/settings/settings-init.php:378 -msgid "Edit Address Page" -msgstr "صفحة تحرير العنوان" - -#: admin/settings/settings-init.php:379 -msgid "Page contents: [woocommerce_edit_address] Parent: \"My Account\"" -msgstr "الصفحة تحتوي: [woocommerce_edit_address] أب: \"حسابي\"" - -#: admin/settings/settings-init.php:389 -msgid "View Order Page" -msgstr "صفحة الطلبات" - -#: admin/settings/settings-init.php:390 -msgid "Page contents: [woocommerce_view_order] Parent: \"My Account\"" -msgstr "الصفحة تحتوي: [woocommerce_view_order] أب: \"حسابي\"" - -#: admin/settings/settings-init.php:400 -msgid "Change Password Page" -msgstr "تغيير كلمة المرور" - -#: admin/settings/settings-init.php:401 -msgid "Page contents: [woocommerce_change_password] Parent: \"My Account\"" -msgstr "الصفحة تحتوي: [woocommerce_change_password] أب: \"حسابي\"" - -#: admin/settings/settings-init.php:411 -msgid "Logout Page" -msgstr "تسجيل الخروج" - -#: admin/settings/settings-init.php:412 -msgid "Parent: \"My Account\"" -msgstr "أب: \"My Account\"" - -#: admin/settings/settings-init.php:422 -msgid "Lost Password Page" -msgstr "استعادة كلمة المرور" - -#: admin/settings/settings-init.php:423 -msgid "Page contents: [woocommerce_lost_password] Parent: \"My Account\"" -msgstr "الصفحة تحتوي: [woocommerce_lost_password] أب: \"حسابي\"" - -#: admin/settings/settings-init.php:439 -msgid "Catalog Options" -msgstr "خيارات قائمة المنتجات" - -#: admin/settings/settings-init.php:442 -msgid "Default Product Sorting" -msgstr "ترتيب المنتجات الإفتراضي" - -#: admin/settings/settings-init.php:443 -msgid "This controls the default sort order of the catalog." -msgstr "هذا الخيار يحدد الترتيب الافتراضي للمنتجات في القائمة" - -#: admin/settings/settings-init.php:449 -msgid "Default sorting (custom ordering + name)" -msgstr "الافتراضي (الترتيب المخصص + الاسم)" - -#: admin/settings/settings-init.php:450 -msgid "Popularity (sales)" -msgstr "الشعبية (كمية البيع)" - -#: admin/settings/settings-init.php:451 -msgid "Average Rating" -msgstr "متوسط التقيم" - -#: admin/settings/settings-init.php:452 -msgid "Sort by most recent" -msgstr "الترتيب وفق الأكثر حداثة" - -#: admin/settings/settings-init.php:453 -msgid "Sort by price (asc)" -msgstr "الترتيب وفق السعر (تصاعدي)" - -#: admin/settings/settings-init.php:454 -msgid "Sort by price (desc)" -msgstr "الترتيب وفق السعر (تنازلي)" - -#: admin/settings/settings-init.php:460 -msgid "Shop Page Display" -msgstr "محتوى صفحة التسوق" - -#: admin/settings/settings-init.php:461 -msgid "This controls what is shown on the product archive." -msgstr "ما محتوى صفحة المنتجات الرئيسية" - -#: admin/settings/settings-init.php:467 -#: admin/settings/settings-init.php:482 -msgid "Show products" -msgstr "المنتجات" - -#: admin/settings/settings-init.php:468 -#: admin/settings/settings-init.php:483 -msgid "Show subcategories" -msgstr "قوائم المنتجات" - -#: admin/settings/settings-init.php:469 -#: admin/settings/settings-init.php:484 -msgid "Show both" -msgstr "كلاهما" - -#: admin/settings/settings-init.php:475 -msgid "Default Category Display" -msgstr "محتوى قائمة المنتجات الافتراضية" - -#: admin/settings/settings-init.php:476 -msgid "This controls what is shown on category archives." -msgstr "ما محتوى قائمة المنتجات الافتراضية" - -#: admin/settings/settings-init.php:490 -msgid "Add to cart" -msgstr "إضافة للعربة" - -#: admin/settings/settings-init.php:491 -msgid "Redirect to the cart page after successful addition" -msgstr "تحويل المستخدم لصفحة العربة بعد الإضافة بنجاح." - -#: admin/settings/settings-init.php:499 -msgid "Enable AJAX add to cart buttons on archives" -msgstr "تمكين AJAX لزر إضافة للعربة." - -#: admin/settings/settings-init.php:508 -msgid "The following options affect the fields available on the edit product page." -msgstr "الخيارات التالية مختصة بالحقول المتوفرة في صفحة إضافة \\ تعديل منتج." - -#: admin/settings/settings-init.php:511 -msgid "Product Fields" -msgstr "حقول المنتج" - -#: admin/settings/settings-init.php:512 -msgid "Enable the SKU field for products" -msgstr "تمكين حقل الرمز المعرف (SKU) للمنتجات" - -#: admin/settings/settings-init.php:520 -msgid "Enable the weight field for products (some shipping methods may require this)" -msgstr "تمكين حقل الوزن للمنتجات (بعض طرق الشحن تتطلب ذلك)" - -#: admin/settings/settings-init.php:528 -msgid "Enable the dimension fields for products (some shipping methods may require this)" -msgstr "تمكين حقل الأبعاد للمنتجات (بعض طرق الشحن تتطلب ذلك)" - -#: admin/settings/settings-init.php:536 -msgid "Show weight and dimension values on the Additional Information tab" -msgstr "عرض قيم الوزن والأبعادفي لسانمعلومات إضافية " - -#: admin/settings/settings-init.php:544 -msgid "Weight Unit" -msgstr "وحدة قياس الوزن" - -#: admin/settings/settings-init.php:545 -msgid "This controls what unit you will define weights in." -msgstr "الوحدة المستخدمة لقياس الوزن" - -#: admin/settings/settings-init.php:551 -msgid "kg" -msgstr "كيلو جرام" - -#: admin/settings/settings-init.php:552 -msgid "g" -msgstr "جرام" - -#: admin/settings/settings-init.php:553 -msgid "lbs" -msgstr "رطل" - -#: admin/settings/settings-init.php:554 -msgid "oz" -msgstr "أوقية" - -#: admin/settings/settings-init.php:560 -msgid "Dimensions Unit" -msgstr "وحدة قياس الطول" - -#: admin/settings/settings-init.php:561 -msgid "This controls what unit you will define lengths in." -msgstr "هذه الوحدة تستخدم لقياس الأطوال" - -#: admin/settings/settings-init.php:568 -msgid "cm" -msgstr "سنتيمتر" - -#: admin/settings/settings-init.php:569 -msgid "mm" -msgstr "ميليمتر" - -#: admin/settings/settings-init.php:570 -msgid "in" -msgstr "انش" - -#: admin/settings/settings-init.php:571 -msgid "yd" -msgstr "ياردة" - -#: admin/settings/settings-init.php:577 -msgid "Product Ratings" -msgstr "تقييم المنتج" - -#: admin/settings/settings-init.php:578 -msgid "Enable ratings on reviews" -msgstr "تمكين تقييم المنتج في المراجعات" - -#: admin/settings/settings-init.php:587 -msgid "Ratings are required to leave a review" -msgstr "التقيم إجباري لترك مراجعة" - -#: admin/settings/settings-init.php:596 -msgid "Show \"verified owner\" label for customer reviews" -msgstr "مشاهدة علامة \"مالك موثوق\" على ملاحظات الزبائن" - -#: admin/settings/settings-init.php:606 -msgid "Pricing Options" -msgstr "خيارات الأسعار" - -#: admin/settings/settings-init.php:606 -msgid "The following options affect how prices are displayed on the frontend." -msgstr "الخيارات التالية تؤثر في كيفية عر الأسعار في الموقع" - -#: admin/settings/settings-init.php:609 -msgid "Currency Position" -msgstr "مكان العملة" - -#: admin/settings/settings-init.php:610 -msgid "This controls the position of the currency symbol." -msgstr "مكان رمز العملة بالنسبة للرقم" - -#: admin/settings/settings-init.php:616 -msgid "Left" -msgstr "قبل" - -#: admin/settings/settings-init.php:617 -msgid "Right" -msgstr "بعد" - -#: admin/settings/settings-init.php:618 -msgid "Left (with space)" -msgstr "قبل (مع مسافة)" - -#: admin/settings/settings-init.php:619 -msgid "Right (with space)" -msgstr "بعد (مع مسافة)" - -#: admin/settings/settings-init.php:625 -msgid "Thousand Separator" -msgstr "فاصل الآلاف" - -#: admin/settings/settings-init.php:626 -msgid "This sets the thousand separator of displayed prices." -msgstr "هذا يحدد فاصل الآلاف في الأسعار المعروضة" - -#: admin/settings/settings-init.php:635 -msgid "Decimal Separator" -msgstr "الفاصلة (للأعداد العشرية)" - -#: admin/settings/settings-init.php:636 -msgid "This sets the decimal separator of displayed prices." -msgstr "هذا يحدد فاصل الأعداد العشرية في الأسعار المعروضة" - -#: admin/settings/settings-init.php:645 -msgid "Number of Decimals" -msgstr "عدد الخانات بعد الفاصلة" - -#: admin/settings/settings-init.php:646 -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "يحدد عدد الخانات المعروضة بعد الفاصلة" - -#: admin/settings/settings-init.php:659 -msgid "Trailing Zeros" -msgstr "مسح الأصفار" - -#: admin/settings/settings-init.php:660 -msgid "Remove zeros after the decimal point. e.g. $10.00 becomes $10" -msgstr "يزيل الأصفار بعد الفاصلة مثل. $10.00 تصبح $10" - -#: admin/settings/settings-init.php:668 -msgid "Image Options" -msgstr "خيارات الصور" - -#: admin/settings/settings-init.php:668 -msgid "These settings affect the actual dimensions of images in your catalog - the display on the front-end will still be affected by CSS styles. After changing these settings you may need to regenerate your thumbnails." -msgstr "هذا الإعداد يغير أحجام الصور الفعلية - لكن حجم العرض تتحكم فيه ملفات CSS للقالب. بعد تعديل هذا الإعداد يجب أن تحدث الصور المصغرة." - -#: admin/settings/settings-init.php:671 -msgid "Catalog Images" -msgstr "صور قائمة المنتجات" - -#: admin/settings/settings-init.php:672 -msgid "This size is usually used in product listings" -msgstr "الحجم الذي يستخدم عادة لصورة المنتج في القائمة مع باقي المنتجات." - -#: admin/settings/settings-init.php:685 -msgid "Single Product Image" -msgstr "صور المنتج المنفرد" - -#: admin/settings/settings-init.php:686 -msgid "This is the size used by the main image on the product page." -msgstr "هذا الحجم يستخدم كصورة رئيسية في صفحة المنتج." - -#: admin/settings/settings-init.php:699 -msgid "Product Thumbnails" -msgstr "صور المنتج المصغرة" - -#: admin/settings/settings-init.php:700 -msgid "This size is usually used for the gallery of images on the product page." -msgstr "هذا الحجم يستخدم عادة في معرض الصور في صفحة المنتج." - -#: admin/settings/settings-init.php:719 -msgid "Inventory Options" -msgstr "خيارات المخزون" - -#: admin/settings/settings-init.php:722 -msgid "Manage Stock" -msgstr "مدير المخزن" - -#: admin/settings/settings-init.php:723 -msgid "Enable stock management" -msgstr "تمكين إدارة المخزن" - -#: admin/settings/settings-init.php:730 -msgid "Hold Stock (minutes)" -msgstr "استعادة المخزون" - -#: admin/settings/settings-init.php:731 -msgid "Hold stock (for unpaid orders) for x minutes. When this limit is reached, the pending order will be cancelled. Leave blank to disable." -msgstr "استعادة المخزون (للطلبات غير المدفوعة) بعد س دقيقة. المنتجات تعاد للمخزن، والطلب المعلق يلغى. أتركه فارغ للتعطيل." - -#: admin/settings/settings-init.php:743 -msgid "Notifications" -msgstr "التنبيهات" - -#: admin/settings/settings-init.php:744 -msgid "Enable low stock notifications" -msgstr "مكن تنبيه أقتراب نفاد الكمية" - -#: admin/settings/settings-init.php:752 -msgid "Enable out of stock notifications" -msgstr "مكن تنبيه نفاد الكمية" - -#: admin/settings/settings-init.php:760 -msgid "Notification Recipient" -msgstr "مستلم التنبيهات" - -#: admin/settings/settings-init.php:768 -msgid "Low Stock Threshold" -msgstr "حد نقص الكمية" - -#: admin/settings/settings-init.php:781 -msgid "Out Of Stock Threshold" -msgstr "حد نفاد الكمية" - -#: admin/settings/settings-init.php:794 -msgid "Out Of Stock Visibility" -msgstr "رؤية المنتجات النافذة" - -#: admin/settings/settings-init.php:795 -msgid "Hide out of stock items from the catalog" -msgstr "إخفائها من قائمة المنتجات" - -#: admin/settings/settings-init.php:802 -msgid "Stock Display Format" -msgstr "طريقة عرض الكمية" - -#: admin/settings/settings-init.php:803 -msgid "This controls how stock is displayed on the frontend." -msgstr "هذا الخيار يعرض في الموقع." - -#: admin/settings/settings-init.php:809 -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "دائما أعرض الكمية مثل \"12 في المخزن\"" - -#: admin/settings/settings-init.php:810 -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "عرض الكمية عندما تقترب من النفاد مثل \"باقي 2 فقط\" وإلا \"متوفر\"" - -#: admin/settings/settings-init.php:811 -msgid "Never show stock amount" -msgstr "لا تعرض الكمية أبدًا" - -#: admin/settings/settings-init.php:823 -#: admin/woocommerce-admin-settings.php:292 -msgid "Shipping Options" -msgstr "خيارات الشحن" - -#: admin/settings/settings-init.php:826 -msgid "Shipping Calculations" -msgstr "حساب تكاليف الشحن" - -#: admin/settings/settings-init.php:827 -msgid "Enable shipping" -msgstr "تمكين الشحن" - -#: admin/settings/settings-init.php:835 -msgid "Enable the shipping calculator on the cart page" -msgstr "تمكين حساب تكلفة الشحن في صفحة العربة" - -#: admin/settings/settings-init.php:843 -msgid "Hide shipping costs until an address is entered" -msgstr "إخفاء تكاليف الشحن حتى إدخال العنوان" - -#: admin/settings/settings-init.php:851 -msgid "Shipping Method Display" -msgstr "عرض طرق الشحن" - -#: admin/settings/settings-init.php:852 -msgid "This controls how multiple shipping methods are displayed on the frontend." -msgstr "هذا الخيار يحدد طريقة عرض طرق الشحن في الموقع" - -#: admin/settings/settings-init.php:858 -msgid "Radio buttons" -msgstr "أزرار تبديل (الدائرية)" - -#: admin/settings/settings-init.php:859 -msgid "Select box" -msgstr "قائمة منسدلة (مثل هذه)" - -#: admin/settings/settings-init.php:865 -msgid "Shipping Destination" -msgstr "وجهة الشحن" - -#: admin/settings/settings-init.php:866 -msgid "Only ship to the users billing address" -msgstr "الشحن (فقط) لعنوان المشتري" - -#: admin/settings/settings-init.php:874 -msgid "Ship to billing address by default" -msgstr "الشحن لعنوان المشتري بشكل إفتراضي" - -#: admin/settings/settings-init.php:882 -msgid "Collect shipping address even when not required" -msgstr "أطلب عنوان الشحن حتى حين يكون غير مطلوب" - -#: admin/settings/settings-init.php:900 -#: admin/woocommerce-admin-settings.php:188 -#: admin/woocommerce-admin-settings.php:329 -msgid "Payment Gateways" -msgstr "طرق الدفع" - -#: admin/settings/settings-init.php:900 -msgid "Installed payment gateways are displayed below. Drag and drop payment gateways to control their display order on the checkout." -msgstr "طرق الدفع المثبتة في الأسفل يمكنك ترتيبها بالسحب والإفلات" - -#: admin/settings/settings-init.php:918 -#: admin/woocommerce-admin-settings.php:222 -msgid "Tax Options" -msgstr "خيارات الضرائب" - -#: admin/settings/settings-init.php:921 -msgid "Enable Taxes" -msgstr "تمكين الضرائب" - -#: admin/settings/settings-init.php:922 -msgid "Enable taxes and tax calculations" -msgstr "تمكن الضرائب وحسابها" - -#: admin/settings/settings-init.php:929 -msgid "Prices Entered With Tax" -msgstr "أتكتب السعر بالضريبة" - -#: admin/settings/settings-init.php:933 -msgid "This option is important as it will affect how you input prices. Changing it will not update existing products." -msgstr "هذا الخيار ضروري للحساب وإدخال الأسعار. تعديله لن يغير المنتجات الموجودة." - -#: admin/settings/settings-init.php:935 -msgid "Yes, I will enter prices inclusive of tax" -msgstr "نعم أكتب السعر بالضريبة" - -#: admin/settings/settings-init.php:936 -msgid "No, I will enter prices exclusive of tax" -msgstr "لا أكتب السعر بدون الضريبة" - -#: admin/settings/settings-init.php:941 -msgid "Calculate Tax Based On:" -msgstr "حساب الضريبة يعتمد على:" - -#: admin/settings/settings-init.php:943 -msgid "This option determines which address is used to calculate tax." -msgstr "هذا الخيار لمعرفة أي عنوان يستخدم لحساب الضريبة." - -#: admin/settings/settings-init.php:947 -msgid "Customer shipping address" -msgstr "عنوان الشحن للزبون" - -#: admin/settings/settings-init.php:948 -msgid "Customer billing address" -msgstr "عنوان المشتري للزبون" - -#: admin/settings/settings-init.php:949 -#: admin/settings/settings-init.php:961 -msgid "Shop base address" -msgstr "عنوان المشروع الخاص بك" - -#: admin/settings/settings-init.php:954 -msgid "Default Customer Address:" -msgstr "عنوان الزبون الإفتراضي" - -#: admin/settings/settings-init.php:956 -msgid "This option determines the customers default address (before they input their own)." -msgstr "هذا العنوان يستخدم للحساب قبل أن يحدد الزبون عنوانه." - -#: admin/settings/settings-init.php:960 -msgid "No address" -msgstr "بلا عنوان" - -#: admin/settings/settings-init.php:966 -msgid "Shipping Tax Class:" -msgstr "فئة ضريبة الشحن" - -#: admin/settings/settings-init.php:967 -msgid "Optionally control which tax class shipping gets, or leave it so shipping tax is based on the cart items themselves." -msgstr "أختياري لتحديد أي فئة ضرائب شحن تستخدم، أو أتركه لاستخدام فئات المنتجات الموجودة في عبرة التسوق." - -#: admin/settings/settings-init.php:972 -msgid "Shipping tax class based on cart items" -msgstr "استخدام فئات المنتجات الموجودة في عبرة التسوق" - -#: admin/settings/settings-init.php:977 -msgid "Rounding" -msgstr "التقريب" - -#: admin/settings/settings-init.php:978 -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "قرب الضريبة على مستوى المجموع اﻷصلي بدل التقريب لكل عنصر" - -#: admin/settings/settings-init.php:985 -msgid "Additional Tax Classes" -msgstr "فئات الضرائب الإضافية" - -#: admin/settings/settings-init.php:986 -msgid "List additonal tax classes below (1 per line). This is in addition to the default Standard Rate. Tax classes can be assigned to products." -msgstr "قائمة الفئات الإضافية (واحد لكل سطر). هي فئات أخرى غير القياسي. فئات الضرائب ممكن أن تطبق على المنتجات بشكل فردي." - -#: admin/settings/settings-init.php:990 -msgid "Reduced Rate%sZero Rate" -msgstr "المخفض%sالصفري" - -#: admin/settings/settings-init.php:994 -msgid "Display prices during cart/checkout:" -msgstr "عرض الأسعار في العربة \\ المحاسبة" - -#: admin/settings/settings-init.php:999 -msgid "Including tax" -msgstr "تضمين الضرائب" - -#: admin/settings/settings-init.php:1000 -msgid "Excluding tax" -msgstr "أستبعاد الضرائب" - -#: admin/settings/settings-init.php:1012 -msgid "Email Sender Options" -msgstr "إعدادات البريد الإلكتروني" - -#: admin/settings/settings-init.php:1012 -msgid "The following options affect the sender (email address and name) used in WooCommerce emails." -msgstr "الإعدادات التالية خاصة بمرسل البريد لإضافة WooCommerce." - -#: admin/settings/settings-init.php:1015 -msgid "\"From\" Name" -msgstr "اسم المرسل" - -#: admin/settings/settings-init.php:1024 -msgid "\"From\" Email Address" -msgstr "بريد المرسل الإلكتروني" - -#: admin/settings/settings-init.php:1037 -msgid "Email Template" -msgstr "قالب البريد" - -#: admin/settings/settings-init.php:1037 -msgid "This section lets you customise the WooCommerce emails. Click here to preview your email template. For more advanced control copy woocommerce/templates/emails/ to yourtheme/woocommerce/emails/." -msgstr ".هذا القسم مختص بشكل الرسائل المرسلة للزبائن بخصوص الطلبات. اضغط هنا لمعاينة قالب الرسائل. لمزيد من التخصيص في قالب الرسالة أنسخ الملف woocommerce/templates/emails/ إلى yourtheme/woocommerce/emails/ وعدله." - -#: admin/settings/settings-init.php:1040 -msgid "Header Image" -msgstr "صورة الترويسة" - -#: admin/settings/settings-init.php:1041 -msgid "Enter a URL to an image you want to show in the email's header. Upload your image using the media uploader." -msgstr "أدخل رابط الصورة التي ترى في رأس الرسالة. أو استخدم صورة من مكتبة الصور." - -#: admin/settings/settings-init.php:1049 -msgid "Email Footer Text" -msgstr "الخاتمة" - -#: admin/settings/settings-init.php:1050 -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "النص الذي يوجد في ذيل الرسالة" - -#: admin/settings/settings-init.php:1054 -msgid "Powered by WooCommerce" -msgstr "بدعم من WooCommerce" - -#: admin/settings/settings-init.php:1058 -msgid "Base Colour" -msgstr "اللون الأساسي" - -#: admin/settings/settings-init.php:1059 -msgid "The base colour for WooCommerce email templates. Default #557da1." -msgstr "اللون الأساسي لقالب الرسائل. افتراضيا ‎#557da1." - -#: admin/settings/settings-init.php:1067 -msgid "Background Colour" -msgstr "لون الخلفية" - -#: admin/settings/settings-init.php:1068 -msgid "The background colour for WooCommerce email templates. Default #f5f5f5." -msgstr "لون خلفية قالب الرسائل. افتراضيا ‎#f5f5f5." - -#: admin/settings/settings-init.php:1076 -msgid "Email Body Background Colour" -msgstr "خلفية صندوق الرسلة" - -#: admin/settings/settings-init.php:1077 -msgid "The main body background colour. Default #fdfdfd." -msgstr "خلفية صندوق الرسلة. افتراضيا ‎#fdfdfd." - -#: admin/settings/settings-init.php:1085 -msgid "Email Body Text Colour" -msgstr "لون النص" - -#: admin/settings/settings-init.php:1086 -msgid "The main body text colour. Default #505050." -msgstr "لون نص الرسالة. افتراضيا ‎#505050." - -#: admin/settings/settings-payment-gateways.php:27 -#: admin/settings/settings-shipping-methods.php:29 -#: admin/woocommerce-admin-init.php:757 -#: admin/woocommerce-admin-taxonomies.php:27 -#: admin/woocommerce-admin-taxonomies.php:121 -msgid "Default" -msgstr "الافتراضي" - -#: admin/settings/settings-payment-gateways.php:28 -msgid "Gateway" -msgstr "الطريقة الدفع" - -#: admin/settings/settings-payment-gateways.php:45 -msgid "Gateway ID" -msgstr "معرف الطريقة" - -#: admin/settings/settings-shipping-methods.php:23 -msgid "Shipping Methods" -msgstr "طرق الشحن" - -#: admin/settings/settings-shipping-methods.php:25 -msgid "Drag and drop methods to control their display order." -msgstr "اسحب وافلت العناصر للتحكم في ترتيب عرضها للزائر" - -#: admin/settings/settings-shipping-methods.php:30 -msgid "Shipping Method" -msgstr "طريقة الشحن" - -#: admin/settings/settings-shipping-methods.php:46 -msgid "Method ID" -msgstr "معرف الطريقة" - -#: admin/settings/settings-tax-rates.php:29 -msgid "Tax Rates for the \"%s\" Class" -msgstr "الضرائب للصنف \"%s\"" - -#: admin/settings/settings-tax-rates.php:30 -msgid "Define tax rates for countries and states below. See here for available alpha-2 country codes." -msgstr "يمكنك تحديد الضرائب للدول والمناطق من هنا. شاهد هنارموز Alpha-2 المتوفرة لتستخدمها." - -#: admin/settings/settings-tax-rates.php:36 -msgid "Country Code" -msgstr "رمز الدولة" - -#: admin/settings/settings-tax-rates.php:36 -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "رمز alpha-2 للدولة. مثل US دعه فارغ لجميع الدول." - -#: admin/settings/settings-tax-rates.php:38 -msgid "State Code" -msgstr "رمز الولاية" - -#: admin/settings/settings-tax-rates.php:38 -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "رمز الولاية من حرفين. مثل AL دعه فارغ لجميع الولايات." - -#: admin/settings/settings-tax-rates.php:40 -#: admin/settings/settings-tax-rates.php:217 -msgid "ZIP/Postcode" -msgstr "الرمز البريدي" - -#: admin/settings/settings-tax-rates.php:40 -msgid "Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank to apply to all areas. Wildcards (*) can be used. Ranges for numeric postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "الرموز البريدية التي تطبق عليها الضرائب. \";\" تفصل بين القيم المتعددة. فارغ لكل الرموز. (*) تعني خانة من 0-9. ممكن أن تكتب مدى مثل (12345-12350)." - -#: admin/settings/settings-tax-rates.php:42 -msgid "Cities for this rule. Semi-colon (;) separate multiple values. Leave blank to apply to all cities." -msgstr "الرموز البريدية التي تطبق عليها الضرائب. \";\" تفصل بين القيم المتعددة. فارغ لكل المدن." - -#: admin/settings/settings-tax-rates.php:44 -msgid "Rate %" -msgstr "النسبة %" - -#: admin/settings/settings-tax-rates.php:44 -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "النسبة المئوية للضريبة بأربع خانات بعد الفاصلة." - -#: admin/settings/settings-tax-rates.php:46 -msgid "Tax Name" -msgstr "اسم الضريبة" - -#: admin/settings/settings-tax-rates.php:46 -msgid "Enter a name for this tax rate." -msgstr "ادخل اسم لهذه الضريبة" - -#: admin/settings/settings-tax-rates.php:48 -#: admin/settings/settings-tax-rates.php:217 -msgid "Priority" -msgstr "الأولوية" - -#: admin/settings/settings-tax-rates.php:48 -msgid "Choose a priority for this tax rate. Only 1 matching rate per priority will be used. To define multiple tax rates for a single area you need to specify a different priority per rate." -msgstr "أختر أولوية هذه الضريبة. تؤخذ ضريبة واحدة من نفس الأولوي فقظ. لتحديد أكثر من ضريبة على منطقة واحدة استخدم أولوية مختلفة لكل ضرية." - -#: admin/settings/settings-tax-rates.php:50 -#: admin/settings/settings-tax-rates.php:217 -msgid "Compound" -msgstr "مركب" - -#: admin/settings/settings-tax-rates.php:50 -msgid "Choose whether or not this is a compound rate. Compound tax rates are applied on top of other tax rates." -msgstr "الضرائب المركبة تحسب قبل حساب الباقين" - -#: admin/settings/settings-tax-rates.php:52 -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "هل تحسب هذه الضريبة على تكاليف الشحن" - -#: admin/settings/settings-tax-rates.php:59 -msgid "Insert row" -msgstr "أدخل صف" - -#: admin/settings/settings-tax-rates.php:60 -msgid "Remove selected row(s)" -msgstr "أزل الصفوف المحددة" - -#: admin/settings/settings-tax-rates.php:62 -msgid "Export CSV" -msgstr "تصدير كـ CSV" - -#: admin/settings/settings-tax-rates.php:63 -msgid "Import CSV" -msgstr "استيراد كـ CSV" - -#: admin/settings/settings-tax-rates.php:163 -msgid "No row(s) selected" -msgstr "لا يوجد صفوف محددة" - -#: admin/settings/settings-tax-rates.php:217 -msgid "Country Code" -msgstr "رمز الدولة" - -#: admin/settings/settings-tax-rates.php:217 -msgid "State Code" -msgstr "رمز الولاية" - -#: admin/settings/settings-tax-rates.php:217 -msgid "Rate %" -msgstr "النسبة %" - -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Name" -msgstr "اسم الضريبة" - -#: admin/woocommerce-admin-attributes.php:77 -msgid "Please, provide an attribute name, slug and type." -msgstr "رجاء اختر اسم الصفة، اسمها اللطيف، ونوعها." - -#: admin/woocommerce-admin-attributes.php:79 -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "الاسم اللطيف “%s” أكبر من 28 حرف، صغره رجاءً." - -#: admin/woocommerce-admin-attributes.php:81 -msgid "Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "الاسم اللطيف “%s” لا يمكن استخدامه لأنه كلمة محجوز." - -#: admin/woocommerce-admin-attributes.php:86 -#: admin/woocommerce-admin-attributes.php:91 -msgid "Slug “%s” is already in use. Change it, please." -msgstr "الاسم اللطيف “%s” مستخدم بالفعل." - -#: admin/woocommerce-admin-attributes.php:227 -msgid "Edit Attribute" -msgstr "تحرير الصفة" - -#: admin/woocommerce-admin-attributes.php:237 -#: admin/woocommerce-admin-attributes.php:376 -msgid "Name for the attribute (shown on the front-end)." -msgstr "اسم الصفة (يعرض في الموقع). مثل اللون، الحجم، الشكل…" - -#: admin/woocommerce-admin-attributes.php:242 -#: admin/woocommerce-admin-attributes.php:308 -#: admin/woocommerce-admin-attributes.php:380 -msgid "Slug" -msgstr "الاسم اللطيف" - -#: admin/woocommerce-admin-attributes.php:246 -#: admin/woocommerce-admin-attributes.php:382 -msgid "Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "“slug” هو الرابط \"اللطيف\" للاسم، وهو في العادة يتكون من حروف صغيرة ويحتوي على حروف، أرقام وشرطات فقط." - -#: admin/woocommerce-admin-attributes.php:255 -#: admin/woocommerce-admin-attributes.php:388 -msgid "Select" -msgstr "قائمة منسدلة (مثل هذه)" - -#: admin/woocommerce-admin-attributes.php:256 -#: admin/woocommerce-admin-attributes.php:389 -msgid "Text" -msgstr "حقل نص" - -#: admin/woocommerce-admin-attributes.php:259 -#: admin/woocommerce-admin-attributes.php:392 -msgid "Determines how you select attributes for products. Under admin panel -> products -> product data -> attributes -> values, Text allows manual entry whereas select allows pre-configured terms in a drop-down list." -msgstr "هذا يحدد كيف تختار قيمة الصفة للمنتج. حقل نص لتختار القيم في صفحة المنتج، بينما قائمة منسدلة تمكنك من إضافة قيم محددة، لتستخدمها هي فقط في صفحة المنتج. إذا كانت الصفة لمنتج متغير أختر قائمة منسدلة." - -#: admin/woocommerce-admin-attributes.php:264 -#: admin/woocommerce-admin-attributes.php:396 -msgid "Default sort order" -msgstr "ترتيب القيم" - -#: admin/woocommerce-admin-attributes.php:268 -#: admin/woocommerce-admin-attributes.php:336 -#: admin/woocommerce-admin-attributes.php:398 -msgid "Custom ordering" -msgstr "ترتيب مخصص" - -#: admin/woocommerce-admin-attributes.php:270 -#: admin/woocommerce-admin-attributes.php:333 -#: admin/woocommerce-admin-attributes.php:400 -msgid "Term ID" -msgstr "معرف القيمة" - -#: admin/woocommerce-admin-attributes.php:272 -#: admin/woocommerce-admin-attributes.php:402 -msgid "Determines the sort order of the terms on the frontend shop product pages. If using custom ordering, you can drag and drop the terms in this attribute." -msgstr "هذا يحدد ترتيب القيم في والواجهة. إذا أخترت ترتيب مخصص، يمكنك سحب وإفلات القيم لترتيبها في صفحة القيم." - -#: admin/woocommerce-admin-attributes.php:277 -msgid "Update" -msgstr "تحديث" - -#: admin/woocommerce-admin-attributes.php:310 -msgid "Order by" -msgstr "طريقة الترتيب" - -#: admin/woocommerce-admin-attributes.php:311 -msgid "Terms" -msgstr "القيم" - -#: admin/woocommerce-admin-attributes.php:356 -msgid "Configure terms" -msgstr "أعداد القيم" - -#: admin/woocommerce-admin-attributes.php:360 -msgid "No attributes currently exist." -msgstr "لا يوجد صفات حاليًا" - -#: admin/woocommerce-admin-attributes.php:370 -msgid "Add New Attribute" -msgstr "إضافة صفة" - -#: admin/woocommerce-admin-attributes.php:371 -msgid "Attributes let you define extra product data, such as size or colour. You can use these attributes in the shop sidebar using the \"layered nav\" widgets. Please note: you cannot rename an attribute later on." -msgstr "الصفات تمكنك من تحديد معلومات أكثر عن المنتج، مثل الحجم أو اللون. ويمكنك عرض الخواص في موقعك عبر مربع \"\" الجانبي. تذكر أنه لا يمكنك تغيير اسم الصفات لاحقا." - -#: admin/woocommerce-admin-attributes.php:405 -msgid "Add Attribute" -msgstr "إضافة صفة" - -#: admin/woocommerce-admin-attributes.php:416 -msgid "Are you sure you want to delete this attribute?" -msgstr "هل حقًا تريد حذف الصفة؟" - -#: admin/woocommerce-admin-content.php:26 -#: admin/woocommerce-admin-reports.php:26 -#: admin/woocommerce-admin-reports.php:66 -#: admin/woocommerce-admin-reports.php:82 -#: admin/woocommerce-admin-reports.php:93 -msgid "Overview" -msgstr "نظرة عامة" - -#: admin/woocommerce-admin-content.php:29 -msgid "Thank you for using WooCommerce :) Should you need help using or extending WooCommerce please read the documentation. For further assistance you can use the community forum or if you have access, our support desk." -msgstr "شكرا لاستخدام WooCommerce :) إذا احتجت التوسع حول WooCommerce رجاءً أقرأ التوثيق. لمزيد من المساعدة يمكن استخدام منتدى التواصل أو تواصل مع مكتب الدعم." - -#: admin/woocommerce-admin-content.php:31 -msgid "If you are having problems, or to assist us with support, please check the status page to identify any problems with your configuration:" -msgstr "إذا واجهت مشكلة ، أو احتجت مساعدة الدعم، رجاءً زر صفحة حالة النظام لعرف ما هي المشاكل الموجودة في إعداداتك:" - -#: admin/woocommerce-admin-content.php:33 -#: admin/woocommerce-admin-init.php:89 -#: admin/woocommerce-admin-status.php:26 -msgid "System Status" -msgstr "حالة النظام" - -#: admin/woocommerce-admin-content.php:35 -msgid "If you come across a bug, or wish to contribute to the project you can also get involved on GitHub." -msgstr "إذا واجهت خطأ في الإضافة، أو أردت المساهمة في المشروع يمكنك الانضمام إلى GitHub." - -#: admin/woocommerce-admin-content.php:43 -msgid "Here you can set up your store and customise it to fit your needs. The sections available from the settings page include:" -msgstr "هنا يمكنك إعداد المتجر وتخصيصه ليناسب احتياجاتك. صفحة الإعدادات تحتوي:" - -#: admin/woocommerce-admin-content.php:44 -msgid "General settings such as your shop base, currency, and script/styling options which affect features used in your store." -msgstr "الإعدادات العامة مثل مكان مشروعك و جافاسكربت و المظهر. والخيارات المؤثرة في مميزات متجرك." - -#: admin/woocommerce-admin-content.php:45 -#: admin/woocommerce-admin-settings.php:184 -msgid "Pages" -msgstr "الصفحات" - -#: admin/woocommerce-admin-content.php:45 -msgid "This is where important store page are defined. You can also set up other pages (such as a Terms page) here." -msgstr "الصفحات التي يستلزم وجودها في متجرك. تستطيع أيضا تحديد صفحات أخرى مثل(الشروط واﻷحكام) من هنا." - -#: admin/woocommerce-admin-content.php:46 -msgid "Options for how things like price, images and weights appear in your product catalog." -msgstr "إعدادات لكيف تبدو الأسعار و الصور ووحدات القياس في قوائم منتجاتك." - -#: admin/woocommerce-admin-content.php:47 -msgid "Options concerning stock and stock notices." -msgstr "أعدادات المخزون، وتنبيهات النفاد." - -#: admin/woocommerce-admin-content.php:48 -msgid "Options concerning tax, including international and local tax rates." -msgstr "أعدادات الضرائب، تتضمن الضرائب المحلية والدولية." - -#: admin/woocommerce-admin-content.php:49 -msgid "This is where shipping options are defined, and shipping methods are set up." -msgstr "هنا تحدد خيارات الشحن، وتعد طرق الشحن." - -#: admin/woocommerce-admin-content.php:50 -msgid "Payment Methods" -msgstr "طرق الدفع" - -#: admin/woocommerce-admin-content.php:50 -msgid "This is where payment gateway options are defined, and individual payment gateways are set up." -msgstr "هنا تعد طرق الدفع." - -#: admin/woocommerce-admin-content.php:51 -#: admin/woocommerce-admin-settings.php:189 -msgid "Emails" -msgstr "الرسائل" - -#: admin/woocommerce-admin-content.php:51 -msgid "Here you can customise the way WooCommerce emails appear." -msgstr "هنا تعد كيفية عر الرسائل الإلكترونية التي يرسلها WooCommerce للزبائن؟" - -#: admin/woocommerce-admin-content.php:52 -#: admin/woocommerce-admin-settings.php:190 -msgid "Integration" -msgstr "التكامل" - -#: admin/woocommerce-admin-content.php:52 -msgid "The integration section contains options for third party services which integrate with WooCommerce." -msgstr "هذه الإعدادات خاصة بخدمات طرف ثالث وتكامله مع WooCommerce." - -#: admin/woocommerce-admin-content.php:57 -#: admin/woocommerce-admin-init.php:64 -msgid "Reports" -msgstr "التقارير" - -#: admin/woocommerce-admin-content.php:59 -msgid "The reports section can be accessed from the left-hand navigation menu. Here you can generate reports for sales and customers." -msgstr "يمكنك الوصول للتقارير من قائمة التنقل اليمنى. هنا يمكنك إعداد تقارير للمبيغات والزبائن." - -#: admin/woocommerce-admin-content.php:60 -#: admin/woocommerce-admin-reports.php:23 -#: admin/woocommerce-admin-reports.php:997 -#: admin/woocommerce-admin-reports.php:1095 -#: admin/woocommerce-admin-reports.php:1214 -msgid "Sales" -msgstr "المبيعات" - -#: admin/woocommerce-admin-content.php:60 -msgid "Reports for sales based on date, top sellers and top earners." -msgstr "تقارير المبيعات وفق التاريخ. أعلى المبيعات والأرباح." - -#: admin/woocommerce-admin-content.php:61 -msgid "Coupon usage reports." -msgstr "تقارير القسائم الشرائية" - -#: admin/woocommerce-admin-content.php:62 -#: admin/woocommerce-admin-reports.php:79 -msgid "Customers" -msgstr "الزبائن" - -#: admin/woocommerce-admin-content.php:62 -msgid "Customer reports, such as signups per day." -msgstr "تقارير حول الزبائن، مثل مرات الدخول اليومية." - -#: admin/woocommerce-admin-content.php:63 -msgid "Stock reports for low stock and out of stock items." -msgstr "تقارير الكميات للمنتجات النافدة والقريبة النفاد." - -#: admin/woocommerce-admin-content.php:68 -#: admin/woocommerce-admin-dashboard.php:142 -msgid "Orders" -msgstr "الطلبيات" - -#: admin/woocommerce-admin-content.php:70 -msgid "The orders section can be accessed from the left-hand navigation menu. Here you can view and manage customer orders." -msgstr "يمكنك الوصول للطلبات من قائمة التنقل اليمنى. هنا يمكنك مشاهدة وتلبية طلبات الزبائن." - -#: admin/woocommerce-admin-content.php:71 -msgid "Orders can also be added from this section if you want to set them up for a customer manually." -msgstr "الطلبات ممكن أن تضاف من هذه الصفحة إذا أردت إضافة طلب مخصص لزبون معين." - -#: admin/woocommerce-admin-content.php:78 -msgid "Coupons can be managed from this section. Once added, customers will be able to enter coupon codes on the cart/checkout page. If a customer uses a coupon code they will be viewable when viewing orders." -msgstr "القسائم الشرائية يمكن أن تدار هنا. بعد إضافتها يمكن أن يستخدمها الزوار في صفحة العربة \\ المحاسبة. إذا أستخدم الزبون قسيمة فإن رمزها سيكون مرئي له في صفحة الطلبات." - -#: admin/woocommerce-admin-content.php:82 -msgid "For more information:" -msgstr "لمزيد من المعلومات:" - -#: admin/woocommerce-admin-content.php:83 -#: admin/woocommerce-admin-init.php:62 -#: admin/woocommerce-admin-init.php:71 -#: admin/woocommerce-admin-init.php:404 -msgid "WooCommerce" -msgstr "WooCommerce" - -#: admin/woocommerce-admin-content.php:84 -msgid "Project on WordPress.org" -msgstr "المشروع في WordPress.org" - -#: admin/woocommerce-admin-content.php:85 -msgid "Project on Github" -msgstr "المشروع في Github" - -#: admin/woocommerce-admin-content.php:86 -msgid "WooCommerce Docs" -msgstr "توثيق WooCommerce" - -#: admin/woocommerce-admin-content.php:87 -msgid "Official Extensions" -msgstr "الإضافات الرسمية" - -#: admin/woocommerce-admin-content.php:88 -msgid "Official Themes" -msgstr "القوالب الرسمية" - -#: admin/woocommerce-admin-dashboard.php:40 -msgid "Monthly Sales" -msgstr "مبيعات الشهر" - -#: admin/woocommerce-admin-dashboard.php:43 -msgid "WooCommerce Right Now" -msgstr "إحصائيات WooCommerce" - -#: admin/woocommerce-admin-dashboard.php:44 -msgid "WooCommerce Recent Orders" -msgstr "الطلبات الحديثة لـ WooCommerce" - -#: admin/woocommerce-admin-dashboard.php:45 -msgid "WooCommerce Recent Reviews" -msgstr "المراجعات الحديثة لـ WooCommerce" - -#: admin/woocommerce-admin-dashboard.php:78 -msgid "Shop Content" -msgstr "محتوى المتجر" - -#: admin/woocommerce-admin-dashboard.php:84 -#: admin/woocommerce-admin-functions.php:200 -#: admin/woocommerce-admin-init.php:761 -#: admin/woocommerce-admin-reports.php:996 -#: admin/woocommerce-admin-reports.php:1094 -msgid "Product" -msgid_plural "Products" -msgstr[0] "المنتج" -msgstr[1] "منتج واحد فقط" -msgstr[2] "منتجان" -msgstr[3] "منتجات" -msgstr[4] "منتجًا" -msgstr[5] "منتج" - -#: admin/woocommerce-admin-dashboard.php:98 -msgid "Product Category" -msgid_plural "Product Categories" -msgstr[0] "لا قوائم منتجات" -msgstr[1] "قائمة منتجات واحدة" -msgstr[2] "قائمتا منتجات" -msgstr[3] "قوائم منتجات" -msgstr[4] "قائمة منتجات" -msgstr[5] "قائمة منتجات" - -#: admin/woocommerce-admin-dashboard.php:112 -msgid "Product Tag" -msgid_plural "Product Tags" -msgstr[0] "بلا وسوم منتجات" -msgstr[1] "وسم منتجان واحد" -msgstr[2] "وسما منتجات" -msgstr[3] "وسوم منتجات" -msgstr[4] "وسم منتجات" -msgstr[5] "وسم منتجات" - -#: admin/woocommerce-admin-dashboard.php:126 -msgid "Attribute" -msgid_plural "Attributes" -msgstr[0] "بلا صفات" -msgstr[1] "صفة واحدة" -msgstr[2] "صفتان" -msgstr[3] "صفات" -msgstr[4] "صفةً" -msgstr[5] "صفة" - -#: admin/woocommerce-admin-dashboard.php:148 -msgid "Pending" -msgstr "معلق" - -#: admin/woocommerce-admin-dashboard.php:162 -msgid "On-Hold" -msgstr "بانتظار المراجعة" - -#: admin/woocommerce-admin-dashboard.php:190 -msgid "Completed" -msgstr "مكتمل" - -#: admin/woocommerce-admin-dashboard.php:207 -msgid "You are using WooCommerce %s." -msgstr "أنت تستخدم WooCommerce %s." - -#: admin/woocommerce-admin-dashboard.php:238 -msgid "l jS \\of F Y h:i:s A" -msgstr "l j F Y، h:i:s a" - -#: admin/woocommerce-admin-dashboard.php:239 -msgid "item" -msgid_plural "items" -msgstr[0] "لا عناصر" -msgstr[1] "عنصر واحد" -msgstr[2] "عنصران" -msgstr[3] "عناصر" -msgstr[4] "عنصرًا" -msgstr[5] "عنصر" - -#: admin/woocommerce-admin-dashboard.php:239 -msgid "Total:" -msgstr "المجموع:" - -#: admin/woocommerce-admin-dashboard.php:245 -msgid "There are no product orders yet." -msgstr "لا يوجد طلبيات بعد" - -#: admin/woocommerce-admin-dashboard.php:279 -msgid "out of 5" -msgstr "من 5" - -#: admin/woocommerce-admin-dashboard.php:287 -msgid "There are no product reviews yet." -msgstr "لا يوجد مراجعات بعد" - -#: admin/woocommerce-admin-dashboard.php:428 -msgid "Sold" -msgstr "عمليات بيع" - -#: admin/woocommerce-admin-dashboard.php:429 -msgid "Earned" -msgstr "أرباح" - -#: admin/woocommerce-admin-functions.php:190 -#: admin/woocommerce-admin-install.php:225 -msgid "Order Received" -msgstr "طلب مستلم" - -#: admin/woocommerce-admin-functions.php:192 -msgid "Thank you, we are now processing your order. Your order's details are below." -msgstr "شكرا لك، جار العمل على طلبك. معلومات الطلب في الأسفل." - -#: admin/woocommerce-admin-functions.php:194 -msgid "Order:" -msgstr "الطلب:" - -#: admin/woocommerce-admin-functions.php:201 -msgid "Quantity" -msgstr "الكمية" - -#: admin/woocommerce-admin-functions.php:214 -msgid "Order total:" -msgstr "المجموع" - -#: admin/woocommerce-admin-functions.php:220 -msgid "Customer details" -msgstr "معلومات الزيون" - -#: admin/woocommerce-admin-functions.php:226 -msgid "Billing address" -msgstr "عنوان المشتري" - -#: admin/woocommerce-admin-functions.php:233 -msgid "Shipping address" -msgstr "عنوان الشحن" - -#: admin/woocommerce-admin-functions.php:465 -msgid "Could not compile woocommerce.less:" -msgstr "لا يمكن ترجمة woocommerce.less:" - -#: admin/woocommerce-admin-functions.php:486 -#: admin/woocommerce-admin-functions.php:487 -msgid "Mark processing" -msgstr "تعليم كجار العمل عليه" - -#: admin/woocommerce-admin-functions.php:489 -#: admin/woocommerce-admin-functions.php:490 -msgid "Mark completed" -msgstr "تعليم كمكتمل" - -#: admin/woocommerce-admin-functions.php:527 -msgid "Order status changed by bulk edit:" -msgstr "تغيرت حالة جميع الطلبات" - -#: admin/woocommerce-admin-functions.php:550 -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "لم يغير شئء" -msgstr[1] "تغيرت حالة طلب واحد" -msgstr[2] "تغيرت حالة طلبان" -msgstr[3] "تغيرت حالة %s طلبات" -msgstr[4] "تغيرت حالة %s طلبًا" -msgstr[5] "تغيرت حالة %s طلب" - -#: admin/woocommerce-admin-init.php:88 -msgid "WooCommerce Settings" -msgstr "إعدادات WooCommerce" - -#: admin/woocommerce-admin-init.php:89 -msgid "WooCommerce Status" -msgstr "حالة WooCommerce" - -#: admin/woocommerce-admin-init.php:142 -#: admin/woocommerce-admin-init.php:144 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "الطلبات" - -#: admin/woocommerce-admin-init.php:433 -msgid "Are you sure you want to remove the selected items? If you have previously reduced this item's stock, or this order was submitted by a customer, you will need to manually restore the item's stock." -msgstr "هل بالتأكيد تريد إزالة هذه العناصر، قد تحتاج لتعديل الكميات في المخازن يدويا إذا كان الطلب أرسل من زبون." - -#: admin/woocommerce-admin-init.php:434 -msgid "Please select some items." -msgstr "رجاءً حدد بعض العناصر" - -#: admin/woocommerce-admin-init.php:435 -msgid "Remove this item meta?" -msgstr "إزالة هذه البيانات؟" - -#: admin/woocommerce-admin-init.php:436 -msgid "Remove this attribute?" -msgstr "إزالة هذه الخاصية" - -#: admin/woocommerce-admin-init.php:444 -msgid "Enter a name for the new attribute term:" -msgstr "أدخل اسم قيمة الصفة:" - -#: admin/woocommerce-admin-init.php:445 -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "حساب السعر الأصلي لمنتجات الطلب مع الخصم و الشحن؟" - -#: admin/woocommerce-admin-init.php:446 -msgid "Calculate line taxes? This will calculate taxes based on the customers country. If no billing/shipping is set it will use the store base country." -msgstr "حساب ضرائب العنصر؟ الحساب يتم حسب دولة الزبون. إذا كان العنوان لم يحدد ستحسب الضرائب بدولة متجرك." - -#: admin/woocommerce-admin-init.php:447 -msgid "Copy billing information to shipping information? This will remove any currently entered shipping information." -msgstr "نسخ بيانات المشتري إلى بيانات الشحن؟ هذا سمحو أي قيمة في بيانات الشحن." - -#: admin/woocommerce-admin-init.php:448 -msgid "Load the customer's billing information? This will remove any currently entered billing information." -msgstr "جلب بيانات الزبون؟ هذا سمحو أي قيمة في بيانات المشتري." - -#: admin/woocommerce-admin-init.php:449 -msgid "Load the customer's shipping information? This will remove any currently entered shipping information." -msgstr "جلب بيانات الزبون؟ هذا سمحو أي قيمة في بيانات الشحن." - -#: admin/woocommerce-admin-init.php:453 -msgid "No customer selected" -msgstr "لم تحدد الزبون" - -#: admin/woocommerce-admin-init.php:665 -msgid "Product updated. View Product" -msgstr "تم تحديث المنتج. عرض المنتج" - -#: admin/woocommerce-admin-init.php:666 -#: admin/woocommerce-admin-init.php:681 -#: admin/woocommerce-admin-init.php:696 -msgid "Custom field updated." -msgstr "تم تحديث الحقل الخاص." - -#: admin/woocommerce-admin-init.php:667 -#: admin/woocommerce-admin-init.php:682 -#: admin/woocommerce-admin-init.php:697 -msgid "Custom field deleted." -msgstr "تم حذف الحقل الخاص." - -#: admin/woocommerce-admin-init.php:668 -msgid "Product updated." -msgstr "تم تحديث المتج." - -#: admin/woocommerce-admin-init.php:669 -msgid "Product restored to revision from %s" -msgstr "تمت استعادة النسخة (%s) من المنتج." - -#: admin/woocommerce-admin-init.php:670 -msgid "Product published. View Product" -msgstr "تم نشر المنتج. عرض المنتج." - -#: admin/woocommerce-admin-init.php:671 -msgid "Product saved." -msgstr "تم حفظ المنتج." - -#: admin/woocommerce-admin-init.php:672 -msgid "Product submitted. Preview Product" -msgstr "تمت إضافة المنتج. معاينة المنتج." - -#: admin/woocommerce-admin-init.php:673 -msgid "Product scheduled for: %1$s. Preview Product" -msgstr "تمت جدولة المنتج ليوم: %1$s. معاينة المنتج." - -#: admin/woocommerce-admin-init.php:674 -#: admin/woocommerce-admin-init.php:689 -#: admin/woocommerce-admin-init.php:704 -msgid "M j, Y @ G:i" -msgstr "M j، Y @ G:i" - -#: admin/woocommerce-admin-init.php:675 -msgid "Product draft updated. Preview Product" -msgstr "تم حفظ المنتج كمسودةمعاينة المنتج." - -#: admin/woocommerce-admin-init.php:680 -#: admin/woocommerce-admin-init.php:683 -#: admin/woocommerce-admin-init.php:685 -msgid "Order updated." -msgstr "تم تحديث الطلب." - -#: admin/woocommerce-admin-init.php:684 -msgid "Order restored to revision from %s" -msgstr "تمت استعادة النسخة (%s) من الطلب." - -#: admin/woocommerce-admin-init.php:686 -msgid "Order saved." -msgstr "تم حفظ الطلب." - -#: admin/woocommerce-admin-init.php:687 -msgid "Order submitted." -msgstr "تمت إضافة الطلب." - -#: admin/woocommerce-admin-init.php:688 -msgid "Order scheduled for: %1$s." -msgstr "تمت جدولة الطلب ليوم: %1$s." - -#: admin/woocommerce-admin-init.php:690 -msgid "Order draft updated." -msgstr "تم حفظ الطلب كمسودة." - -#: admin/woocommerce-admin-init.php:695 -#: admin/woocommerce-admin-init.php:698 -#: admin/woocommerce-admin-init.php:700 -msgid "Coupon updated." -msgstr "تم تحديث القسيمة." - -#: admin/woocommerce-admin-init.php:699 -msgid "Coupon restored to revision from %s" -msgstr "تمت استعادة النسخة (%s) من القسيمة." - -#: admin/woocommerce-admin-init.php:701 -msgid "Coupon saved." -msgstr "تم حفظ القسيمة." - -#: admin/woocommerce-admin-init.php:702 -msgid "Coupon submitted." -msgstr "تمت إضافة القسيمة." - -#: admin/woocommerce-admin-init.php:703 -msgid "Coupon scheduled for: %1$s." -msgstr "تمت جدولة القسيمة ليوم: %1$s." - -#: admin/woocommerce-admin-init.php:705 -msgid "Coupon draft updated." -msgstr "تم حفظ القسيمة كمسودة." - -#: admin/woocommerce-admin-init.php:722 -msgid "Order notes" -msgstr "ملاحظات الطلب" - -#: admin/woocommerce-admin-init.php:737 -msgid "These settings control the permalinks used for products. These settings only apply when not using \"default\" permalinks above." -msgstr "هذا الخيار يحدد تركيبة الروابط الدائمة المستخدمة للمنتجات. هذا الخيار لا يعمل إذا أخترت \"افتراضي\" في الخيار العلوي." - -#: admin/woocommerce-admin-init.php:744 -msgctxt "default-slug" -msgid "shop" -msgstr "shop" - -#: admin/woocommerce-admin-init.php:745 -msgctxt "default-slug" -msgid "product" -msgstr "product" - -#: admin/woocommerce-admin-init.php:766 -msgid "Shop base" -msgstr "shop + المنتج" - -#: admin/woocommerce-admin-init.php:770 -msgid "Shop base with category" -msgstr "shop + التصنيف + المنتج" - -#: admin/woocommerce-admin-init.php:776 -msgid "Custom Base" -msgstr "تركية مخصصة" - -#: admin/woocommerce-admin-init.php:778 -msgid "Enter a custom base to use. A base must be set or WordPress will use default instead." -msgstr "ادخل تركيبة مخصصة، يجب ألا يترك فارغ." - -#: admin/woocommerce-admin-init.php:806 -msgid "Product permalink base" -msgstr "الرابط الدائم للمنتج" - -#: admin/woocommerce-admin-init.php:811 -msgid "Product category base" -msgstr "تركيبة قائمة المنتجات" - -#: admin/woocommerce-admin-init.php:818 -msgid "Product tag base" -msgstr "تركيبة وسوم المنتجات" - -#: admin/woocommerce-admin-init.php:825 -msgid "Product attribute base" -msgstr "تركيبة الصفات" - -#: admin/woocommerce-admin-install.php:195 -msgctxt "page_slug" -msgid "shop" -msgstr "shop" - -#: admin/woocommerce-admin-install.php:195 -msgid "Shop" -msgstr "السوق" - -#: admin/woocommerce-admin-install.php:198 -msgctxt "page_slug" -msgid "cart" -msgstr "cart" - -#: admin/woocommerce-admin-install.php:198 -#: admin/woocommerce-admin-status.php:303 -msgid "Cart" -msgstr "العربة" - -#: admin/woocommerce-admin-install.php:201 -msgctxt "page_slug" -msgid "checkout" -msgstr "checkout" - -#: admin/woocommerce-admin-install.php:204 -msgctxt "page_slug" -msgid "my-account" -msgstr "my-account" - -#: admin/woocommerce-admin-install.php:204 -#: admin/woocommerce-admin-status.php:319 -msgid "My Account" -msgstr "حسابي" - -#: admin/woocommerce-admin-install.php:210 -msgctxt "page_slug" -msgid "edit-address" -msgstr "edit-address" - -#: admin/woocommerce-admin-install.php:210 -msgid "Edit My Address" -msgstr "تعديل عنواني" - -#: admin/woocommerce-admin-install.php:213 -msgctxt "page_slug" -msgid "view-order" -msgstr "view-order" - -#: admin/woocommerce-admin-install.php:213 -#: admin/woocommerce-admin-status.php:327 -msgid "View Order" -msgstr "عرض الطلبات" - -#: admin/woocommerce-admin-install.php:216 -msgctxt "page_slug" -msgid "change-password" -msgstr "change-password" - -#: admin/woocommerce-admin-install.php:216 -#: admin/woocommerce-admin-status.php:331 -msgid "Change Password" -msgstr "تغيير كلمة المرور" - -#: admin/woocommerce-admin-install.php:219 -msgctxt "page_slug" -msgid "logout" -msgstr "logout" - -#: admin/woocommerce-admin-install.php:219 -msgid "Logout" -msgstr "تسجيل الخروج" - -#: admin/woocommerce-admin-install.php:222 -msgctxt "page_slug" -msgid "pay" -msgstr "pay" - -#: admin/woocommerce-admin-install.php:222 -msgid "Checkout → Pay" -msgstr "المحاسبة← الدفع" - -#: admin/woocommerce-admin-install.php:225 -msgctxt "page_slug" -msgid "order-received" -msgstr "order-received" - -#: admin/woocommerce-admin-reports.php:32 -msgid "Sales by day" -msgstr "المبيعات اليومية" - -#: admin/woocommerce-admin-reports.php:37 -msgid "Sales by month" -msgstr "المبيعات الشهرية" - -#: admin/woocommerce-admin-reports.php:42 -msgid "Product Sales" -msgstr "مبيعات منتج" - -#: admin/woocommerce-admin-reports.php:47 -msgid "Top sellers" -msgstr "الأكثر بيعًا" - -#: admin/woocommerce-admin-reports.php:52 -msgid "Top earners" -msgstr "الأكثر قيمةً" - -#: admin/woocommerce-admin-reports.php:57 -msgid "Sales by category" -msgstr "مبيعات تصنيف" - -#: admin/woocommerce-admin-reports.php:72 -msgid "Discounts by coupon" -msgstr "خصومات قسيمة" - -#: admin/woocommerce-admin-reports.php:104 -msgid "Taxes by month" -msgstr "الضرائب الشهرية" - -#: admin/woocommerce-admin-reports.php:243 -#: admin/woocommerce-admin-reports.php:508 -#: admin/woocommerce-admin-reports.php:713 -#: admin/woocommerce-admin-reports.php:894 -msgid "Sales amount" -msgstr "قيمة المبيعات" - -#: admin/woocommerce-admin-reports.php:248 -#: admin/woocommerce-admin-reports.php:508 -#: admin/woocommerce-admin-reports.php:713 -#: admin/woocommerce-admin-reports.php:894 -msgid "Number of sales" -msgstr "عدد الطلبيات" - -#: admin/woocommerce-admin-reports.php:380 -msgid "Total sales" -msgstr "مجموع المبيعات" - -#: admin/woocommerce-admin-reports.php:382 -#: admin/woocommerce-admin-reports.php:388 -#: admin/woocommerce-admin-reports.php:394 -#: admin/woocommerce-admin-reports.php:400 -#: admin/woocommerce-admin-reports.php:406 -#: admin/woocommerce-admin-reports.php:412 -#: admin/woocommerce-admin-reports.php:655 -#: admin/woocommerce-admin-reports.php:661 -#: admin/woocommerce-admin-reports.php:667 -#: admin/woocommerce-admin-reports.php:673 -#: admin/woocommerce-admin-reports.php:839 -#: admin/woocommerce-admin-reports.php:845 -#: admin/woocommerce-admin-reports.php:851 -#: admin/woocommerce-admin-reports.php:857 -#: admin/woocommerce-admin-reports.php:1380 -#: admin/woocommerce-admin-reports.php:1386 -#: admin/woocommerce-admin-reports.php:1392 -#: admin/woocommerce-admin-reports.php:1826 -#: admin/woocommerce-admin-reports.php:1832 -#: admin/woocommerce-admin-reports.php:1838 -#: admin/woocommerce-admin-reports.php:1844 -#: admin/woocommerce-admin-reports.php:1850 -#: admin/woocommerce-admin-reports.php:1856 -#: admin/woocommerce-admin-reports.php:2320 -#: admin/woocommerce-admin-reports.php:2331 -#: admin/woocommerce-admin-reports.php:2342 -msgid "n/a" -msgstr "لا قيمة" - -#: admin/woocommerce-admin-reports.php:386 -msgid "Total orders" -msgstr "عدد الطلبات" - -#: admin/woocommerce-admin-reports.php:388 -#: admin/woocommerce-admin-reports.php:661 -#: admin/woocommerce-admin-reports.php:845 -msgid "items" -msgstr "من العناصر" - -#: admin/woocommerce-admin-reports.php:392 -msgid "Average order total" -msgstr "متوسط سعر الطلبية" - -#: admin/woocommerce-admin-reports.php:398 -msgid "Average order items" -msgstr "متوسط عناصر الطلبية" - -#: admin/woocommerce-admin-reports.php:404 -msgid "Discounts used" -msgstr "الخصومات" - -#: admin/woocommerce-admin-reports.php:410 -msgid "Total shipping costs" -msgstr "مجموع تكاليف الشحن" - -#: admin/woocommerce-admin-reports.php:418 -msgid "This month's sales" -msgstr "مبيعات الشهر الحالي" - -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1372 -msgid "From:" -msgstr "من:" - -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1372 -msgid "To:" -msgstr "إلى:" - -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:832 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1245 -#: admin/woocommerce-admin-reports.php:1372 -#: admin/woocommerce-admin-reports.php:1505 -#: admin/woocommerce-admin-reports.php:2309 -#: admin/woocommerce-admin-reports.php:2492 -msgid "Show" -msgstr "عرض" - -#: admin/woocommerce-admin-reports.php:653 -msgid "Total sales in range" -msgstr "مجموع المبيعات في النطاق" - -#: admin/woocommerce-admin-reports.php:659 -msgid "Total orders in range" -msgstr "عدد الطلبيات في النطاق" - -#: admin/woocommerce-admin-reports.php:665 -msgid "Average order total in range" -msgstr "متوسط سعر الطلبية في النطاق" - -#: admin/woocommerce-admin-reports.php:671 -msgid "Average order items in range" -msgstr "متوسط عناصر الطلبية في النطاق" - -#: admin/woocommerce-admin-reports.php:679 -msgid "Sales in range" -msgstr "المبيعات في النطاق" - -#: admin/woocommerce-admin-reports.php:826 -#: admin/woocommerce-admin-reports.php:2303 -msgid "Year:" -msgstr "السنة:" - -#: admin/woocommerce-admin-reports.php:837 -msgid "Total sales for year" -msgstr "مجموع المبيعات للسنة" - -#: admin/woocommerce-admin-reports.php:843 -msgid "Total orders for year" -msgstr "عدد الطلبات للسنة" - -#: admin/woocommerce-admin-reports.php:849 -msgid "Average order total for year" -msgstr "متوسط سعر الطلبية للسنة" - -#: admin/woocommerce-admin-reports.php:855 -msgid "Average order items for year" -msgstr "متوسط عناصر الطلبية للسنة" - -#: admin/woocommerce-admin-reports.php:863 -msgid "Monthly sales for year" -msgstr "المبيعات الشهرية للسنة" - -#: admin/woocommerce-admin-reports.php:1011 -msgid "Product does not exist" -msgstr "المنتج غير موجود" - -#: admin/woocommerce-admin-reports.php:1110 -msgid "Product no longer exists" -msgstr "المنتج لم يعد موجود" - -#: admin/woocommerce-admin-reports.php:1209 -msgid "Sales for %s:" -msgstr "مبيعات %s" - -#: admin/woocommerce-admin-reports.php:1213 -#: admin/woocommerce-admin-reports.php:2351 -msgid "Month" -msgstr "الشهر" - -#: admin/woocommerce-admin-reports.php:1235 -msgid "No sales :(" -msgstr "لا مبيعات :(" - -#: admin/woocommerce-admin-reports.php:1378 -msgid "Total orders containing coupons" -msgstr "عدد الطلبات المستخدمة للقسائم" - -#: admin/woocommerce-admin-reports.php:1384 -msgid "Percent of orders containing coupons" -msgstr "نسبة الطلبات المستخدمة للقسائم" - -#: admin/woocommerce-admin-reports.php:1390 -msgid "Total coupon discount" -msgstr "مجموع الخصومات" - -#: admin/woocommerce-admin-reports.php:1399 -msgid "Most popular coupons" -msgstr "القسائم الأكثر استخدام" - -#: admin/woocommerce-admin-reports.php:1409 -msgid "Used 1 time" -msgid_plural "Used %d times" -msgstr[0] "لم يستخدم" -msgstr[1] "استخدم مرة واحدة" -msgstr[2] "استخدم مرتين" -msgstr[3] "استخدم %d مرات" -msgstr[4] "استخدم %d مرةً" -msgstr[5] "استخدم %d مرة" - -#: admin/woocommerce-admin-reports.php:1412 -#: admin/woocommerce-admin-reports.php:1434 -msgid "No coupons found" -msgstr "القسيمة غير موجودة" - -#: admin/woocommerce-admin-reports.php:1421 -msgid "Greatest discount amount" -msgstr "أعلى الخصومات" - -#: admin/woocommerce-admin-reports.php:1431 -msgid "Discounted %s" -msgstr "خُصِم %s" - -#: admin/woocommerce-admin-reports.php:1490 -#: admin/woocommerce-admin-reports.php:2469 -msgid "Show:" -msgstr "عرض:" - -#: admin/woocommerce-admin-reports.php:1547 -msgid "Coupon" -msgstr "القسيمة" - -#: admin/woocommerce-admin-reports.php:1630 -msgid "Top coupon" -msgstr "أفضل قسيمة" - -#: admin/woocommerce-admin-reports.php:1638 -msgid "Worst coupon" -msgstr "أسوأ قسيمة" - -#: admin/woocommerce-admin-reports.php:1646 -msgid "Discount average" -msgstr "متوسط الخصم" - -#: admin/woocommerce-admin-reports.php:1654 -msgid "Discount median" -msgstr "وسيط الخصم" - -#: admin/woocommerce-admin-reports.php:1674 -msgid "Monthly discounts by coupon" -msgstr "خصم القسيمة الشهري" - -#: admin/woocommerce-admin-reports.php:1824 -msgid "Total customers" -msgstr "مجموع الزبائن" - -#: admin/woocommerce-admin-reports.php:1830 -msgid "Total customer sales" -msgstr "مجموع مشتريات الزبائن" - -#: admin/woocommerce-admin-reports.php:1836 -msgid "Total guest sales" -msgstr "مجموع مشتريات الزوار" - -#: admin/woocommerce-admin-reports.php:1842 -msgid "Total customer orders" -msgstr "عدد طلبيات الزبائن" - -#: admin/woocommerce-admin-reports.php:1848 -msgid "Total guest orders" -msgstr "عدد طلبيات الزوار" - -#: admin/woocommerce-admin-reports.php:1854 -msgid "Average orders per customer" -msgstr "متوسط عدد الطلبات لكل زبون" - -#: admin/woocommerce-admin-reports.php:1862 -msgid "Signups per day" -msgstr "التسجيلات اليومية" - -#: admin/woocommerce-admin-reports.php:2083 -msgid "Low stock" -msgstr "أقترب من النفاد" - -#: admin/woocommerce-admin-reports.php:2106 -#: admin/woocommerce-admin-reports.php:2145 -msgid "%d in stock" -msgid_plural "%d in stock" -msgstr[0] "المخزن فارغ" -msgstr[1] "بقي قطعة واحدة في المخزن" -msgstr[2] "بقي قطعتان في المخزن" -msgstr[3] "بقي %d قطع في المخزن" -msgstr[4] "بقي %d قطعةً في المخزن" -msgstr[5] "بقي %d قطعة في المخزن" - -#: admin/woocommerce-admin-reports.php:2111 -msgid "No products are low in stock." -msgstr "لا يوجد منتجات قريبة من النفاد." - -#: admin/woocommerce-admin-reports.php:2143 -msgid "Marked out of stock" -msgstr "تعليم كنفد" - -#: admin/woocommerce-admin-reports.php:2150 -msgid "No products are out in stock." -msgstr "لا يوجد منتجات نفدت." - -#: admin/woocommerce-admin-reports.php:2314 -msgid "Total taxes for year" -msgstr "مجموع الضرائب للسنة" - -#: admin/woocommerce-admin-reports.php:2325 -msgid "Total product taxes for year" -msgstr "مجموع ضرائب المنتجات للسنة" - -#: admin/woocommerce-admin-reports.php:2336 -msgid "Total shipping tax for year" -msgstr "مجموع ضرائب الشحن للسنة" - -#: admin/woocommerce-admin-reports.php:2352 -msgid "Total Sales" -msgstr "مجموع المبيعات" - -#: admin/woocommerce-admin-reports.php:2352 -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "مجموع المبيعات، مع طلباتك." - -#: admin/woocommerce-admin-reports.php:2353 -msgid "Total Shipping" -msgstr "مجموع الشحن" - -#: admin/woocommerce-admin-reports.php:2353 -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "مجموع الشحن، مع طلباتك." - -#: admin/woocommerce-admin-reports.php:2354 -msgid "Total Product Taxes" -msgstr "مجموع ضرائب المنتجات" - -#: admin/woocommerce-admin-reports.php:2354 -msgid "This is the sum of the 'Cart Tax' field within your orders." -msgstr "مجموع ضرائب العربات، مع طلباتك." - -#: admin/woocommerce-admin-reports.php:2355 -msgid "Total Shipping Taxes" -msgstr "مجموع ضرائب الشحن" - -#: admin/woocommerce-admin-reports.php:2355 -msgid "This is the sum of the 'Shipping Tax' field within your orders." -msgstr "مجموع ضرائب الشحن، مع طلباتك." - -#: admin/woocommerce-admin-reports.php:2356 -msgid "Total Taxes" -msgstr "مجموع الضرائب" - -#: admin/woocommerce-admin-reports.php:2356 -msgid "This is the sum of the 'Cart Tax' and 'Shipping Tax' fields within your orders." -msgstr "مجموع ضرائب العربات والشحن، مع طلباتك." - -#: admin/woocommerce-admin-reports.php:2357 -msgid "Net profit" -msgstr "الأرباح الصافية" - -#: admin/woocommerce-admin-reports.php:2357 -msgid "Total sales minus shipping and tax." -msgstr "مجموع المبيعات بدون الضرائب والشحن" - -#: admin/woocommerce-admin-reports.php:2402 -msgid "Toggle tax rows" -msgstr "إخفاء الصفوف" - -#: admin/woocommerce-admin-reports.php:2545 -msgid "Category" -msgstr "التصنيف" - -#: admin/woocommerce-admin-reports.php:2648 -msgid "Top category" -msgstr "أفضل تصنيف" - -#: admin/woocommerce-admin-reports.php:2657 -msgid "Worst category" -msgstr "أسوأ تصنيف" - -#: admin/woocommerce-admin-reports.php:2665 -msgid "Category sales average" -msgstr "متوسط مبيعات التصنيف" - -#: admin/woocommerce-admin-reports.php:2676 -msgid "Category sales median" -msgstr "وسيط مبيعات التصنيف" - -#: admin/woocommerce-admin-reports.php:2696 -msgid "Monthly sales by category" -msgstr "المبيعات الشهرية للتصنيف" - -#: admin/woocommerce-admin-settings.php:45 -msgid "Action failed. Please refresh the page and retry." -msgstr "فشل تنفيذ الإجراء. رجاءً حدث الصفحة وحاول مجددا" - -#: admin/woocommerce-admin-settings.php:164 -msgid "Your settings have been saved." -msgstr "تم حفظ إعداداتك" - -#: admin/woocommerce-admin-settings.php:210 -msgid "More functionality and gateway options available via WC official extensions." -msgstr "المزيد من الخيارات وطرق الدفع متوفرة في ملحقات WC الرسمية." - -#: admin/woocommerce-admin-settings.php:228 -msgid "Tax Rates" -msgstr "معدل الضرائب" - -#: admin/woocommerce-admin-settings.php:255 -msgid "Email Options" -msgstr "خيارات البريد" - -#: admin/woocommerce-admin-settings.php:388 -msgid "Save changes" -msgstr "حفظ التغييرات" - -#: admin/woocommerce-admin-settings.php:429 -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "تغييراتك لن تحفظ إذا غادرت الصفحة." - -#: admin/woocommerce-admin-settings.php:801 -msgid "Hard Crop" -msgstr "اقتصاص الصورة" - -#: admin/woocommerce-admin-settings.php:826 -msgid "Select a page…" -msgstr "اختر صفحة…" - -#: admin/woocommerce-admin-settings.php:849 -msgid "Choose a country…" -msgstr "اختر دولة…" - -#: admin/woocommerce-admin-settings.php:869 -msgid "Choose countries…" -msgstr "اختر دول…" - -#: admin/woocommerce-admin-status.php:27 -#: admin/woocommerce-admin-status.php:664 -msgid "Tools" -msgstr "أدوات" - -#: admin/woocommerce-admin-status.php:62 -msgid "Please include this information when requesting support:" -msgstr "رجاءً ضمن هذه البيانات عند طلب الدعم" - -#: admin/woocommerce-admin-status.php:63 -msgid "Download System Report File" -msgstr "تحميل تقرير عن حالة النظام" - -#: admin/woocommerce-admin-status.php:71 -msgid "Environment" -msgstr "بيئة النظام" - -#: admin/woocommerce-admin-status.php:77 -msgid "Home URL" -msgstr "رابط ووردبريس" - -#: admin/woocommerce-admin-status.php:81 -msgid "Site URL" -msgstr "رابط الموقع" - -#: admin/woocommerce-admin-status.php:85 -msgid "WC Version" -msgstr "إصدار WC" - -#: admin/woocommerce-admin-status.php:89 -msgid "WC Database Version" -msgstr "اصدار قاعدة بيانات WC" - -#: admin/woocommerce-admin-status.php:93 -msgid "WP Version" -msgstr "اصدار ووردبريس" - -#: admin/woocommerce-admin-status.php:97 -msgid "Web Server Info" -msgstr "معلومات الخادم" - -#: admin/woocommerce-admin-status.php:101 -msgid "PHP Version" -msgstr "اصدار PHP" - -#: admin/woocommerce-admin-status.php:105 -msgid "MySQL Version" -msgstr "اصدار MySQL" - -#: admin/woocommerce-admin-status.php:109 -msgid "WP Memory Limit" -msgstr "حدود ذاكرة ووردبريس" - -#: admin/woocommerce-admin-status.php:114 -msgid "%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "%s - نحن نفضل أن يكون كحد ادنى 64MB. شاهد: زيادة الذاكرة المخصصة لل PHP" - -#: admin/woocommerce-admin-status.php:121 -msgid "WP Debug Mode" -msgstr "وضع المطورين لووردبريس" - -#: admin/woocommerce-admin-status.php:125 -msgid "WP Max Upload Size" -msgstr "أقصى حجم رفع لووردبريس" - -#: admin/woocommerce-admin-status.php:129 -msgid "PHP Post Max Size" -msgstr "أقصى حجم بيانات ترسل لل PHP" - -#: admin/woocommerce-admin-status.php:133 -msgid "PHP Time Limit" -msgstr "أقصى وفت تنفيذ لل PHP" - -#: admin/woocommerce-admin-status.php:137 -msgid "WC Logging" -msgstr "سجلات WC" - -#: admin/woocommerce-admin-status.php:140 -msgid "Log directory is writable." -msgstr "ملف السجل قابل للكتابة" - -#: admin/woocommerce-admin-status.php:142 -msgid "Log directory (woocommerce/logs/) is not writable. Logging will not be possible." -msgstr "ملف السجل (woocommerce/logs/) غير قابل للكتابة. لا يمكن كتابة سجلات." - -#: admin/woocommerce-admin-status.php:149 -msgid "fsockopen/cURL" -msgstr "fsockopen/cURL" - -#: admin/woocommerce-admin-status.php:152 -msgid "Your server has fsockopen and cURL enabled." -msgstr "خادمك يمكن كل من fsockopen و cURL." - -#: admin/woocommerce-admin-status.php:154 -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "خادمك يمكن fsockopen، ويمنع cURL." - -#: admin/woocommerce-admin-status.php:156 -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "خادمك يمنع fsockopen، ويمكن cURL." - -#: admin/woocommerce-admin-status.php:160 -msgid "Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider." -msgstr "الخام يمنع كل من fsockopen و cURL - خدمات PayPal IPN والخدمات التي تتصل بخوادم أخرى لن تعمل. تواصل مع خادمك لتفعيلها." - -#: admin/woocommerce-admin-status.php:165 -msgid "SOAP Client" -msgstr "عميل SOAP" - -#: admin/woocommerce-admin-status.php:167 -msgid "Your server has the SOAP Client class enabled." -msgstr "خادمك يمكن عميل SOAP." - -#: admin/woocommerce-admin-status.php:170 -msgid "Your server does not have the SOAP Client class enabled - some gateway plugins which use SOAP may not work as expected." -msgstr "خادمك لا يمكن عميل SOAP - بعض إضافات طرق الدفع تستخدمه وقد لا تعمل كما يجب." - -#: admin/woocommerce-admin-status.php:175 -msgid "WP Remote Post" -msgstr "الطلب البعيد لووردبريس" - -#: admin/woocommerce-admin-status.php:186 -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "wp_remote_post()‎ تجحت - PayPal IPN يعمل." - -#: admin/woocommerce-admin-status.php:189 -msgid "wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:" -msgstr "wp_remote_post()‎ فشلت. PayPal IPN لا يعمل في حادمك. تواصل مع مستضيفك لحل ا. الخطأ:" - -#: admin/woocommerce-admin-status.php:192 -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "wp_remote_post()‎ فشلت. PayPal IPN لا يعمل في خادمك." - -#: admin/woocommerce-admin-status.php:215 -msgid "Plugins" -msgstr "الإضافات" - -#: admin/woocommerce-admin-status.php:221 -msgid "Installed Plugins" -msgstr "الإضافات المثبتة" - -#: admin/woocommerce-admin-status.php:259 -msgid "is available" -msgstr "متوفر" - -#: admin/woocommerce-admin-status.php:262 -msgid "by" -msgstr "بواسطة" - -#: admin/woocommerce-admin-status.php:262 -msgid "version" -msgstr "الإصدار" - -#: admin/woocommerce-admin-status.php:285 -msgid "Force SSL" -msgstr "فرض SSL" - -#: admin/woocommerce-admin-status.php:292 -msgid "WC Pages" -msgstr "صفحات WC" - -#: admin/woocommerce-admin-status.php:299 -msgid "Shop Base" -msgstr "السوق" - -#: admin/woocommerce-admin-status.php:311 -msgid "Pay" -msgstr "الدفع" - -#: admin/woocommerce-admin-status.php:315 -msgid "Thanks" -msgstr "الشكر" - -#: admin/woocommerce-admin-status.php:323 -msgid "Edit Address" -msgstr "تحرير العنوان" - -#: admin/woocommerce-admin-status.php:355 -msgid "Page not set" -msgstr "الصفحة لم تحدد" - -#: admin/woocommerce-admin-status.php:365 -msgid "Page does not exist" -msgstr "الصفحة غير موجودة" - -#: admin/woocommerce-admin-status.php:370 -msgid "Page does not contain the shortcode: %s" -msgstr "الصفحة لا تحتوي: %s" - -#: admin/woocommerce-admin-status.php:389 -msgid "WC Taxonomies" -msgstr "أنواع WC الخاصة" - -#: admin/woocommerce-admin-status.php:395 -msgid "Order Statuses" -msgstr "حالات الطلبات" - -#: admin/woocommerce-admin-status.php:405 -msgid "Product Types" -msgstr "أنواع المنتجات" - -#: admin/woocommerce-admin-status.php:418 -msgid "Templates" -msgstr "القوالب" - -#: admin/woocommerce-admin-status.php:424 -msgid "Template Overrides" -msgstr "تعديلات القالب" - -#: admin/woocommerce-admin-status.php:442 -msgid "No core overrides present in theme." -msgstr "القالب الحالي لا يؤثر في الإضافة" - -#: admin/woocommerce-admin-status.php:537 -msgid "WC Transients" -msgstr "تخزين WC المؤقت" - -#: admin/woocommerce-admin-status.php:538 -msgid "Clear transients" -msgstr "مسح التخزين" - -#: admin/woocommerce-admin-status.php:539 -msgid "This tool will clear the product/shop transients cache." -msgstr "مسح التخزين المؤقت للمنتجات والسوق." - -#: admin/woocommerce-admin-status.php:542 -msgid "Expired Transients" -msgstr "التخزين المنتهي" - -#: admin/woocommerce-admin-status.php:543 -msgid "Clear expired transients" -msgstr "حذف التخزين المنتهي" - -#: admin/woocommerce-admin-status.php:544 -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "هذه الأداة ستحذف جميح تخزين ووردبريس المؤقت" - -#: admin/woocommerce-admin-status.php:547 -msgid "Term counts" -msgstr "عد قيم الصفات" - -#: admin/woocommerce-admin-status.php:548 -msgid "Recount terms" -msgstr "إعادة العد" - -#: admin/woocommerce-admin-status.php:549 -msgid "This tool will recount product terms - useful when changing your settings in a way which hides products from the catalog." -msgstr "هذه القيمة تعيد عد صفات المنتجات - تستخدم عند تغيير أعداد عرض أو إخفاء المنتجات من القائمة." - -#: admin/woocommerce-admin-status.php:552 -msgid "Capabilities" -msgstr "الاساسات" - -#: admin/woocommerce-admin-status.php:553 -msgid "Reset capabilities" -msgstr "إعادة تعيين الأساسات" - -#: admin/woocommerce-admin-status.php:554 -msgid "This tool will reset the admin, customer and shop_manager roles to default. Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "هذا الخيار يعيد تعيين جميع أساسات الإضافة - يستخدم عند عدم عمل أي من صفحات التحكم." - -#: admin/woocommerce-admin-status.php:557 -msgid "Customer Sessions" -msgstr "جلسات الزبائن" - -#: admin/woocommerce-admin-status.php:558 -msgid "Clear all sessions" -msgstr "محو جميع الجلسات" - -#: admin/woocommerce-admin-status.php:559 -msgid "Warning This tool will delete all customer session data from the database, including any current live carts." -msgstr "أنتبه هذا الخيار سيحذف جميع جلسات المستخدمين من قاعدة البيانات، بما في ذلك محتوى عربات التسوق" - -#: admin/woocommerce-admin-status.php:569 -msgid "Product Transients Cleared" -msgstr "ذاكرة المنتجات المؤقتة مسحها" - -#: admin/woocommerce-admin-status.php:610 -msgid "%d Transients Rows Cleared" -msgstr "%d من عناصر الذاكرة المؤقتة تم مسحه" - -#: admin/woocommerce-admin-status.php:618 -msgid "Roles successfully reset" -msgstr "نجحت إعادة تعيين الأساسات " - -#: admin/woocommerce-admin-status.php:630 -msgid "Terms successfully recounted" -msgstr "الصفات أعيد عدها بنجاح" - -#: admin/woocommerce-admin-status.php:649 -msgid "There was an error calling %s::%s" -msgstr "عناك خطأ عطل %s::%s" - -#: admin/woocommerce-admin-status.php:652 -msgid "There was an error calling %s" -msgstr "عناك خطأ عطل %s" - -#: admin/woocommerce-admin-taxonomies.php:25 -#: admin/woocommerce-admin-taxonomies.php:118 -msgid "Display type" -msgstr "ماذا يعرض؟" - -#: admin/woocommerce-admin-taxonomies.php:29 -#: admin/woocommerce-admin-taxonomies.php:123 -msgid "Subcategories" -msgstr "التصنيفات الفرعية" - -#: admin/woocommerce-admin-taxonomies.php:30 -#: admin/woocommerce-admin-taxonomies.php:124 -msgid "Both" -msgstr "كلاهما" - -#: admin/woocommerce-admin-taxonomies.php:34 -#: admin/woocommerce-admin-taxonomies.php:129 -msgid "Thumbnail" -msgstr "صورة مصغرة" - -#: admin/woocommerce-admin-taxonomies.php:38 -#: admin/woocommerce-admin-taxonomies.php:134 -msgid "Upload/Add image" -msgstr "رفع أو إضافة صورة" - -#: admin/woocommerce-admin-taxonomies.php:39 -#: admin/woocommerce-admin-taxonomies.php:135 -msgid "Remove image" -msgstr "إزالة صورة" - -#: admin/woocommerce-admin-taxonomies.php:64 -#: admin/woocommerce-admin-taxonomies.php:156 -msgid "Use image" -msgstr "استخدام صورة" - -#: admin/woocommerce-admin-taxonomies.php:222 -msgid "Product categories for your store can be managed here. To change the order of categories on the front-end you can drag and drop to sort them. To see more categories listed click the \"screen options\" link at the top of the page." -msgstr "تصنيفات(قوائم) المنتجات يمكن أن تدار هنا. لتغيير ترتيب العناصر اسحبها وأفلتها لعرض المزيد من التصنيفات استخدم \"خيارات الشاشة\" في أعلى الصفحة." - -#: admin/woocommerce-admin-taxonomies.php:237 -msgid "Shipping classes can be used to group products of similar type. These groups can then be used by certain shipping methods to provide different rates to different products." -msgstr "فئات الشحن تستخدم لجمع المنتجات من نفس النوع. وممكن أن تستخدم هذه المجموعات في طرق الشحن لتطبيق ضرائب مختلفة لكل منتج." - -#: admin/woocommerce-admin-taxonomies.php:365 -msgid "Edit Class" -msgstr "تحرير الفئة" - -#: admin/woocommerce-admin-users.php:26 -msgid "Billing Address" -msgstr "عنوان المشتري" - -#: admin/woocommerce-admin-users.php:27 -msgid "Shipping Address" -msgstr "عنوان الشحن" - -#: admin/woocommerce-admin-users.php:28 -msgid "Paying Customer?" -msgstr "دفح الزبائن" - -#: admin/woocommerce-admin-users.php:29 -msgid "Completed Orders" -msgstr "طلب مكتمل" - -#: admin/woocommerce-admin-users.php:144 -msgid "Customer Billing Address" -msgstr "عنوان الشراء للزبون" - -#: admin/woocommerce-admin-users.php:147 -#: admin/woocommerce-admin-users.php:196 -msgid "First name" -msgstr "الاسم الأول" - -#: admin/woocommerce-admin-users.php:151 -#: admin/woocommerce-admin-users.php:200 -msgid "Last name" -msgstr "الاسم الأخير" - -#: admin/woocommerce-admin-users.php:176 -msgid "Country or state code" -msgstr "رمز الدولة أو المدينة" - -#: admin/woocommerce-admin-users.php:180 -#: admin/woocommerce-admin-users.php:229 -msgid "2 letter Country code" -msgstr "رمز الدولة من حرفين" - -#: admin/woocommerce-admin-users.php:183 -msgid "Telephone" -msgstr "الهاتف" - -#: admin/woocommerce-admin-users.php:193 -msgid "Customer Shipping Address" -msgstr "عنوان الشحن للزبون" - -#: admin/woocommerce-admin-users.php:225 -msgid "State/County or state code" -msgstr "رمز المحافظة أو الولاية" - -#. Plugin URI of the plugin/theme -msgid "http://www.woothemes.com/woocommerce/" -msgstr "http://www.woothemes.com/woocommerce/" - -#. Description of the plugin/theme -msgid "An e-commerce toolkit that helps you sell anything. Beautifully." -msgstr "أداة متجر إلكتروني تساعدك في بيع أي شيء جميل." - -#. Author of the plugin/theme -msgid "WooThemes" -msgstr "WooThemes" - -#. Author URI of the plugin/theme -msgid "http://woothemes.com" -msgstr "http://woothemes.com" - -#~ msgid "Cost" -#~ msgstr "السعر" - -#~ msgid "Enter an amount or percentage e.g. 2.99 or 15%" -#~ msgstr "أكتب رقم أو نسبة مثل: 2.95 أو 15%" - -#~ msgid "Any customer" -#~ msgstr "أي زبون" - -#~ msgid "" -#~ "Comma separate email addresses to restrict this coupon to specific " -#~ "billing and user emails." -#~ msgstr "" -#~ "الفاصلة \",\" تفصل عناوين البريد للمستخدمين المصرح لهم باستخدام القسيمة." - -#~ msgid "Base Page Title" -#~ msgstr "عنوان الصفحة الرئيسية" - -#~ msgid "" -#~ "This title to show on the shop base page. Leave blank to use the page " -#~ "title." -#~ msgstr "" -#~ "هذا العنوان يعرض في صفحة البيع الرئيسية أتركه فارغ لاستخدام اسم الصفحة" -#~ msgctxt "page_slug" - -#~ msgid "Checkout" -#~ msgstr "المحاسبة" - -#~ msgid "Configure shipping class" -#~ msgstr "أعداد فئات التسوق" diff --git a/i18n/languages/woocommerce-admin-de_CH.mo b/i18n/languages/woocommerce-admin-de_CH.mo deleted file mode 100644 index 9648765ee84..00000000000 Binary files a/i18n/languages/woocommerce-admin-de_CH.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-admin-de_CH.po b/i18n/languages/woocommerce-admin-de_CH.po deleted file mode 100644 index f229174d189..00000000000 --- a/i18n/languages/woocommerce-admin-de_CH.po +++ /dev/null @@ -1,5683 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce 2.0.9 Admin\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-05-10 11:38:26+00:00\n" -"PO-Revision-Date: 2013-06-06 19:29+0100\n" -"Last-Translator: Birgit Olzem \n" -"Language-Team: Inpsyde GmbH \n" -"Language: german\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Poedit 1.5.5\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2\n" -"X-Poedit-Basepath: ../../../\n" - -#: admin/importers/importers-init.php:13 -msgid "WooCommerce Tax Rates (CSV)" -msgstr "WooCommerce Steuersätze (CSV)" - -#: admin/importers/importers-init.php:13 -msgid "Import tax rates to your store via a csv file." -msgstr "Steuersätze in Ihren Shop via CSV-Datei importieren." - -#: admin/importers/tax-rates-importer.php:103 -#: admin/importers/tax-rates-importer.php:186 -#: admin/importers/tax-rates-importer.php:226 -#: admin/importers/tax-rates-importer.php:241 -msgid "Sorry, there has been an error." -msgstr "Bedaure, aber es trat ein Fehler auf." - -#: admin/importers/tax-rates-importer.php:104 -msgid "The file does not exist, please try again." -msgstr "Die Datei existiert nicht. Bitte versuchen Sie es erneut." - -#: admin/importers/tax-rates-importer.php:187 -msgid "The CSV is invalid." -msgstr "Die CSV-Datei ist ungültig." - -#: admin/importers/tax-rates-importer.php:198 -msgid "" -"Import complete - imported %s tax rates and skipped " -"%s." -msgstr "" -"Import abgeschlossen. Es wurden %s Steuersätze importiert " -"und %s Steuersätze übersprungen." - -#: admin/importers/tax-rates-importer.php:208 -msgid "All done!" -msgstr "Alles erledigt!" - -#: admin/importers/tax-rates-importer.php:208 -msgid "View Tax Rates" -msgstr "Steuersätze ansehen" - -#: admin/importers/tax-rates-importer.php:259 -msgid "Import Tax Rates" -msgstr "Steuersätze importieren" - -#: admin/importers/tax-rates-importer.php:282 -msgid "" -"Hi there! Upload a CSV file containing tax rates to import the contents into " -"your shop. Choose a .csv file to upload, then click \"Upload file and import" -"\"." -msgstr "" -"Hallo! Laden Sie eine CSV-Datei mit Steuersätzen hoch und importieren Sie " -"deren Inhalte in Ihren Shop. Wählen Sie eine .csv-Datei zum " -"Hochladen aus und wählen Sie danach \"Datei hochladen und importieren\"." - -#: admin/importers/tax-rates-importer.php:284 -msgid "" -"Tax rates need to be defined with columns in a specific order (10 columns). " -"Click here to download a sample." -msgstr "" -"Steuersätze müssen mit Spalten in einer bestimmten Reihenfolge definiert " -"werden (10 Spalten). Klicken Sie hier, um eine Beispieldatei " -"herunterzuladen." - -#: admin/importers/tax-rates-importer.php:292 -msgid "" -"Before you can upload your import file, you will need to fix the following " -"error:" -msgstr "" -"Bevor Sie Ihre Importdatei hochladen können, müssen Sie folgenden Fehler " -"beheben:" - -#: admin/importers/tax-rates-importer.php:301 -msgid "Choose a file from your computer:" -msgstr "Wählen Sie eine Datei von Ihrem Rechner:" - -#: admin/importers/tax-rates-importer.php:307 -msgid "Maximum size: %s" -msgstr "Maximale Grösse: %s" - -#: admin/importers/tax-rates-importer.php:312 -msgid "OR enter path to file:" -msgstr "ODER geben Sie den Pfad zu einer Datei an:" - -#: admin/importers/tax-rates-importer.php:319 -msgid "Delimiter" -msgstr "Trennzeichen" - -#: admin/importers/tax-rates-importer.php:325 -msgid "Upload file and import" -msgstr "Datei hochladen und importieren" - -#: admin/includes/duplicate_product.php:23 -msgid "No product to duplicate has been supplied!" -msgstr "Es wurde kein Produkt zum Duplizieren angegeben!" - -#: admin/includes/duplicate_product.php:43 -msgid "Product creation failed, could not find original product:" -msgstr "" -"Die Produkterstellung schlug fehl - das Originalprodukt wurde nicht gefunden:" - -#: admin/includes/duplicate_product.php:90 -msgid "(Copy)" -msgstr "(Kopieren)" - -#: admin/includes/notice-install.php:6 -msgid "" -"Welcome to WooCommerce – You're almost ready to start " -"selling :)" -msgstr "" -"Willkommen bei WooCommerce! – Fast fertig - gleich " -"kann es losgehen mit dem Verkaufen ;-)" - -#: admin/includes/notice-install.php:7 -msgid "Install WooCommerce Pages" -msgstr "WooCommerce-Seiten installieren" - -#: admin/includes/notice-install.php:7 -msgid "Skip setup" -msgstr "Einrichtung überspringen" - -#: admin/includes/notice-theme-support.php:6 -msgid "" -"Your theme does not declare WooCommerce support – if " -"you encounter layout issues please read our integration guide or choose a " -"WooCommerce theme :)" -msgstr "" -"Ihr aktives Theme hat keine WooCommerce Unterstützung deklariert – Falls Sie Layout-Probleme entdecken sollten, lesen Sie bitte " -"unsere Theme-Integrationsanleitung oder entscheiden Sie sich für eine " -"WooCommerce Theme :)." - -#: admin/includes/notice-theme-support.php:7 -msgid "Theme Integration Guide" -msgstr "Theme-Integrationsanleitung (Engl.)" - -#: admin/includes/notice-theme-support.php:7 -msgid "Hide this notice" -msgstr "Diesen Hinweis ausblenden" - -#: admin/includes/notice-update.php:6 -msgid "" -"Data Update Required – We just need to update your " -"install to the latest version" -msgstr "" -"Aktualisierung der Daten erforderlich! – Wir müssen " -"Ihre Installation auf die neueste Version aktualisieren." - -#: admin/includes/notice-update.php:7 -msgid "Run the updater" -msgstr "Die Aktualisierung jetzt starten" - -#: admin/includes/notice-update.php:12 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Es wird dringend empfohlen, dass Sie eine Datenbank-Sicherung Ihrer " -"WordPress-Installation anlegen. Sind Sie sicher, dass Sie die Aktualisierung " -"jetzt starten wollen?" - -#: admin/includes/updates/woocommerce-update-2.0.php:49 -#: admin/woocommerce-admin-init.php:885 -msgctxt "slug" -msgid "product-category" -msgstr "produktkategorie" - -#: admin/includes/updates/woocommerce-update-2.0.php:50 -#: admin/woocommerce-admin-init.php:898 -msgctxt "slug" -msgid "product-tag" -msgstr "produkt-stichwort" - -#: admin/includes/updates/woocommerce-update-2.0.php:58 -msgctxt "slug" -msgid "product" -msgstr "produkt" - -#: admin/includes/updates/woocommerce-update-2.0.php:179 -#: admin/woocommerce-admin-install.php:207 -msgctxt "page_slug" -msgid "lost-password" -msgstr "passwort-verloren" - -#: admin/includes/updates/woocommerce-update-2.0.php:179 -#: admin/woocommerce-admin-install.php:207 -#: admin/woocommerce-admin-status.php:335 -msgid "Lost Password" -msgstr "Passwort verloren" - -#: admin/includes/welcome.php:48 -msgid "Welcome to WooCommerce" -msgstr "Willkommen bei WooCommerce" - -#: admin/includes/welcome.php:135 -msgid "Welcome to WooCommerce %s" -msgstr "Willkommen WooCommerce %s" - -#: admin/includes/welcome.php:140 -msgid "Thanks, all done!" -msgstr "Danke, alles erledigt!" - -#: admin/includes/welcome.php:142 -msgid "Thank you for updating to the latest version!" -msgstr "Danke, dass Sie auf die neueste Version aktualisiert haben!" - -#: admin/includes/welcome.php:144 -msgid "Thanks for installing!" -msgstr "Danke fürs Installieren!" - -#: admin/includes/welcome.php:146 -msgid "" -"%s WooCommerce %s is more powerful, stable, and secure than ever before. We " -"hope you enjoy it." -msgstr "" -"%s WooCommerce %s ist noch funktionsreicher, stabiler und sicherer als " -"jemals zuvor. Wir hoffen, Ihnen gefällt diese Version." - -#: admin/includes/welcome.php:150 -msgid "Version %s" -msgstr "Version %s" - -#: admin/includes/welcome.php:153 admin/woocommerce-admin-content.php:41 -#: admin/woocommerce-admin-init.php:88 admin/woocommerce-admin-status.php:278 -msgid "Settings" -msgstr "Einstellungen" - -#: admin/includes/welcome.php:154 -msgid "Docs" -msgstr "Dokumentation" - -#: admin/includes/welcome.php:161 -msgid "What's New" -msgstr "Was neu ist" - -#: admin/includes/welcome.php:163 -msgid "Credits" -msgstr "Danksagungen" - -#: admin/includes/welcome.php:186 -msgid "Security in mind" -msgstr "Sicherheit immer dabei" - -#: admin/includes/welcome.php:190 -msgid "Sucuri Safe Plugin" -msgstr "Sucuri-gesichertes Plugin" - -#: admin/includes/welcome.php:191 -msgid "" -"You will be happy to learn that WooCommerce has been audited and certified " -"by the Sucuri Security team. Whilst there is not much to be seen visually to " -"understand the amount of work that went into this audit, rest assured that " -"your website is powered by one of the most powerful and stable eCommerce " -"plugins available." -msgstr "" -"Sie werden froh sein, zu erfahren, dass WooCommerce vom Sucuri " -"Sicherheitsteam geprüft und zertifiziert wurde. Während es visuell nicht " -"viel zu sehen gibt, um die Menge der Arbeit zu verstehen, welche in diese " -"Prüfung geflossen ist, so können Sie doch sicher sein, dass Ihre Webseite " -"von einem der sichersten eCommerce-Plugins angetrieben wird." - -#: admin/includes/welcome.php:194 -msgid "A Smoother Admin Experience" -msgstr "Ein verbessertes Erlebnis im Adminbereich" - -#: admin/includes/welcome.php:200 -msgid "New Product Panel" -msgstr "Neues Produkt-Panel" - -#: admin/includes/welcome.php:201 -msgid "" -"We have revised the product data panel making it cleaner, more streamlined, " -"and more logical. Adding products is a breeze!" -msgstr "" -"Wir haben das Produktdaten-Panel überarbeitet: klarer strukturiert und vor " -"allem logischer. Produkte hinzuzufügen geht jetzt mehr \"wie im Nu\" :)." - -#: admin/includes/welcome.php:206 -msgid "Nicer Order Screens" -msgstr "Schönere Bestell-Übersichtsfenster" - -#: admin/includes/welcome.php:207 -msgid "" -"Order pages have had a cleanup, with a more easily scannable interface. We " -"particularly like the new status icons!" -msgstr "" -"Die Bestellseiten wurden gestrafft und sind nun besser visuell zu erfassen. " -"Wir mögen besonders die neuen Status-Icons!" - -#: admin/includes/welcome.php:212 -msgid "Multi-Download Support" -msgstr "Multi-Download-Unterstützung" - -#: admin/includes/welcome.php:213 -msgid "" -"Products can have multiple downloadable files - purchasers will get access " -"to all the files added." -msgstr "" -"Produkte können nun mehrere herunterladbare Dateien haben - Käufer erhalten " -"dann Zugriff auf alle hinzugefügten Dateien." - -#: admin/includes/welcome.php:218 -msgid "Less Taxing Taxes" -msgstr "Weniger anstrengende Steuern" - -#: admin/includes/welcome.php:224 -msgid "New Tax Input Panel" -msgstr "Neues Steuern-Eingabe-Panel" - -#: admin/includes/welcome.php:225 -msgid "" -"The tax input pages have been streamlined to make inputting taxes simpler - " -"adding multiple taxes for a single jurisdiction is now much easier using the " -"priority system. There is also CSV import/export support." -msgstr "" -"Die Seiten zur Steuern-Eingabe wurden gestrafft, um die Pflege zu " -"erleichtern. Mehrere Steuern für eine einzelne Zuständigkeit sind jetzt viel " -"leichter anzulegen mit dem neuen Prioritätssystem. Es gibt ausserdem eine " -"Import-/ Exportfunktion via CSV-Datei." - -#: admin/includes/welcome.php:229 -msgid "Improved Tax Options" -msgstr "Verbesserte Steuer-Optionen" - -#: admin/includes/welcome.php:230 -msgid "" -"As requested by some users, we now support taxing the billing address " -"instead of shipping (optional), and we allow you to choose which tax class " -"applies to shipping." -msgstr "" -"Wie oft angefragt von Benutzern, unterstützen wir jetzt auch das Besteuern " -"der Rechnungsanschrift, statt der Versandanschrift (optional). Und, wir " -"erlauben Ihnen die Wahl, welche Steuerklasse für den Versand gilt." - -#: admin/includes/welcome.php:235 -msgid "Product Listing Improvements Customers Will Love" -msgstr "" -"Verbesserungen bei den Produktauflistungen, welche die Kunden lieben werden" - -#: admin/includes/welcome.php:241 -msgid "New Sorting Options" -msgstr "Neue Filteroptionen" - -#: admin/includes/welcome.php:242 -msgid "Customers can now sort products by popularity and ratings." -msgstr "Kunden können Produkte jetzt nach Beliebtheit und Bewertungen filtern." - -#: admin/includes/welcome.php:247 -msgid "Better Pagination and Result Counts" -msgstr "Bessere Paginierung und Ergebniszähler" - -#: admin/includes/welcome.php:248 -msgid "" -"Numbered pagination has been added to core, and we show the number of " -"results found above the listings." -msgstr "" -"Nummerische Pagination wurde dem WooCommerce-Core hinzugefügt. Und, wir " -"zeigen die Anzahl der Treffer über den Auflistungen." - -#: admin/includes/welcome.php:253 -msgid "Inline Star Rating Display" -msgstr "Inline-Anzeige der Bewertungs-Sterne" - -#: admin/includes/welcome.php:254 -msgid "" -"We have added star ratings to the catalog which are pulled from reviews." -msgstr "" -"Wir haben Bewertungs-Sterne dem Produktkatalog hinzugefügt, welche von den " -"Produktbewertungen \"gezogen\" werden." - -#: admin/includes/welcome.php:262 -msgid "Under the Hood" -msgstr "Unter der Oberfläche" - -#: admin/includes/welcome.php:266 -msgid "New product classes" -msgstr "Neue Produktklassen" - -#: admin/includes/welcome.php:267 -msgid "" -"The product classes have been rewritten and are now factory based. Much more " -"extendable, and easier to query products using the new get_product() function." -msgstr "" -"Die Produktklassen wurden neu geschrieben und sind nun werksbasiert. Viel " -"besser erweiterbar und es ist einfacher, Produkte abzufragen über die neue " -"Funktion get_product()." - -#: admin/includes/welcome.php:271 -msgid "Capability overhaul" -msgstr "Überarbeitung der Berechtigungen" - -#: admin/includes/welcome.php:272 -msgid "" -"More granular capabilities for admin/shop manager roles covering products, " -"orders and coupons." -msgstr "" -"Berechtigungen für Administratoren und Shop-Manager können viel feiner " -"justiert werden und decken Produkte, Bestellungen sowie Gutscheine ab." - -#: admin/includes/welcome.php:276 -msgid "API Improvements" -msgstr "Schnittstellen-Verbesserungen (API)" - -#: admin/includes/welcome.php:277 -msgid "" -"WC-API now has real endpoints, and we've optimised the gateways " -"API significantly by only loading gateways when needed." -msgstr "" -"WC-API besitzt nun reale Endpunkte und wir haben die " -"Schnittstelle für die Zahlungsweisen signifikant verbessert, indem " -"Zahlungsweisen nur noch geladen werden, wenn sie benötigt werden." - -#: admin/includes/welcome.php:283 -msgid "Cache-friendly cart widgets" -msgstr "Cache-freundliche Warenkorb-Widgets" - -#: admin/includes/welcome.php:284 -msgid "" -"Cart widgets and other \"fragments\" are now pulled in via AJAX - this works " -"wonders with static page caching." -msgstr "" -"Warenkorb-Widgets und andere \"Fragemente\" werden nun via AJAX geladen. Das " -"wirkt Wunder beim Cachen statischer Seiten." - -#: admin/includes/welcome.php:288 -msgid "Session handling" -msgstr "Session-Handling" - -#: admin/includes/welcome.php:289 -msgid "" -"PHP SESSIONS have been a problem for many users in the past, so we've " -"developed our own handler using cookies and options to make these more " -"reliable." -msgstr "" -"PHP-SESSIONS waren in der Vergangenheit ein Problem für viele Anwender. " -"Daher haben wir unser eigenes Handling-System entwickelt, welches mit " -"Cookies und Optionen arbeitet, damit dies alles zuverlässiger funktioniert." - -#: admin/includes/welcome.php:293 -msgid "Retina Ready" -msgstr "Bereit für hochauflösende Displays" - -#: admin/includes/welcome.php:294 -msgid "All graphics within WC have been optimised for HiDPI displays." -msgstr "" -"Alle Grafiken innerhalb von WooCommerce wurden optimiert für HiDPI- bzw. " -"Retina-Displays." - -#: admin/includes/welcome.php:301 -msgid "Better stock handling" -msgstr "Bessere Lagerverwaltung" - -#: admin/includes/welcome.php:302 -msgid "" -"We have added an option to hold stock for unpaid orders (defaults to " -"60mins). When this time limit is reached, and the order is not paid for, " -"stock is released and the order is cancelled." -msgstr "" -"Wir haben eine Option hinzugefügt, das Lager für unbezahlte Bestellungen " -"\"anzuhalten\" (Standard: 60 Minuten). Wenn dieses Zeitlimit erreicht ist " -"und die Bestellung nicht bezahlt wurde, wird das Lager wieder freigegeben " -"und die Bestellung abgebrochen." - -#: admin/includes/welcome.php:306 -msgid "Improved Line-item storage" -msgstr "Verbesserte Speicherung von Produktpositionen" - -#: admin/includes/welcome.php:307 -msgid "" -"We have changed how order items get stored making them easier (and faster) " -"to access for reporting. Order items are no longer serialised within an " -"order - they are stored within their own table." -msgstr "" -"Wir haben die Art und Weise geändert, wie Produkte gespeichert werden, damit " -"sie einfacher (und schneller) für Berichte/ Statistiken zur Verfügung " -"stehen. Bestell-Daten werden nicht länger serialisiert (serialised) " -"innerhalb einer Bestellung - sie werden innerhalb ihrer eigenen Tabelle " -"abgespeichert." - -#: admin/includes/welcome.php:311 -msgid "Autoload" -msgstr "Automatisches Laden von Klassen (Autoload)" - -#: admin/includes/welcome.php:312 -msgid "" -"We have setup autoloading for classes - this has dramatically reduced memory " -"usage in 2.0." -msgstr "" -"Wir haben das automatische Laden von Klassen eingerichtet. Dies hat den " -"(PHP-) Speicherverbrauch dramatisch reduziert in WooCommerce Version 2.0+." - -#: admin/includes/welcome.php:319 -msgid "Go to WooCommerce Settings" -msgstr "Zu den WooCommerce Einstellungen gehen →" - -#: admin/includes/welcome.php:337 -msgid "" -"WooCommerce is developed and maintained by a worldwide team of passionate " -"individuals and backed by an awesome developer community. Want to see your " -"name? Contribute to WooCommerce." -msgstr "" -"WooCommerce wird entwickelt und gepflegt von einem weltweiten Team von " -"vielen leidenschaftlichen Einzelpersonen hinter denen eine wunderbare " -"Entwickler-Community steht. Sie wollen Ihren Namen dabei sehen? Tragen Sie bei zu WooCommerce." - -#: admin/includes/welcome.php:363 -msgid "View %s" -msgstr "%s ansehen" - -#: admin/post-types/product.php:31 -msgid "Make a duplicate from this product" -msgstr "Duplikat von diesem Produkt erstellen" - -#: admin/post-types/product.php:32 -msgid "Duplicate" -msgstr "Duplizieren" - -#: admin/post-types/product.php:61 -msgid "Copy to a new draft" -msgstr "Zu neuem Entwurf kopieren" - -#: admin/post-types/product.php:86 admin/woocommerce-admin-taxonomies.php:297 -msgid "Image" -msgstr "Bild" - -#: admin/post-types/product.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:376 -#: admin/post-types/writepanels/writepanel-product_data.php:470 -#: admin/woocommerce-admin-attributes.php:233 -#: admin/woocommerce-admin-attributes.php:269 -#: admin/woocommerce-admin-attributes.php:307 -#: admin/woocommerce-admin-attributes.php:330 -#: admin/woocommerce-admin-attributes.php:374 -#: admin/woocommerce-admin-attributes.php:399 -#: admin/woocommerce-admin-init.php:437 -msgid "Name" -msgstr "Name" - -#: admin/post-types/product.php:91 admin/post-types/product.php:557 -#: admin/post-types/writepanels/variation-admin-html.php:52 -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#: admin/woocommerce-admin-reports.php:2099 -#: admin/woocommerce-admin-reports.php:2135 -msgid "SKU" -msgstr "Art.-Nr." - -#: admin/post-types/product.php:94 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:83 -#: admin/woocommerce-admin-content.php:63 -#: admin/woocommerce-admin-reports.php:90 -msgid "Stock" -msgstr "Lager" - -#: admin/post-types/product.php:96 admin/post-types/product.php:568 -#: admin/post-types/product.php:789 admin/woocommerce-admin-functions.php:202 -msgid "Price" -msgstr "Preis" - -#: admin/post-types/product.php:98 -msgid "Categories" -msgstr "Kategorien" - -#: admin/post-types/product.php:99 -msgid "Tags" -msgstr "Schlagwörter" - -#: admin/post-types/product.php:100 admin/post-types/product.php:632 -#: admin/post-types/product.php:906 -#: admin/post-types/writepanels/writepanel-product_data.php:1058 -#: admin/woocommerce-admin-init.php:450 -msgid "Featured" -msgstr "Empfohlen" - -#: admin/post-types/product.php:101 admin/woocommerce-admin-attributes.php:251 -#: admin/woocommerce-admin-attributes.php:309 -#: admin/woocommerce-admin-attributes.php:386 -msgid "Type" -msgstr "Typ" - -#: admin/post-types/product.php:102 admin/post-types/shop_order.php:50 -msgid "Date" -msgstr "Datum" - -#: admin/post-types/product.php:151 -msgid "Edit this item" -msgstr "Dieses Element bearbeiten" - -#: admin/post-types/product.php:151 -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#: admin/post-types/writepanels/writepanel-order_data.php:387 -#: admin/post-types/writepanels/writepanel-product_data.php:1061 -#: admin/woocommerce-admin-attributes.php:323 -msgid "Edit" -msgstr "Bearbeiten" - -#: admin/post-types/product.php:152 -msgid "Edit this item inline" -msgstr "Dieses Element inline bearbeiten" - -#: admin/post-types/product.php:152 -msgid "Quick Edit" -msgstr "Schnellbearbeitung" - -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore this item from the Trash" -msgstr "Dieses Element aus dem Papierkorb wiederherstellen." - -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore" -msgstr "Wiederherstellen" - -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Move this item to the Trash" -msgstr "Dieses Element in den Papierkorb verschieben" - -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Trash" -msgstr "Papierkorb" - -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -msgid "Delete this item permanently" -msgstr "Dieses Element dauerhaft löschen" - -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -#: admin/post-types/writepanels/writepanel-order_data.php:463 -msgid "Delete Permanently" -msgstr "Dauerhaft löschen" - -#: admin/post-types/product.php:165 -msgid "Preview “%s”" -msgstr "Vorschau “%s”" - -#: admin/post-types/product.php:165 -msgid "Preview" -msgstr "Vorschau" - -#: admin/post-types/product.php:167 -msgid "View “%s”" -msgstr "Ansehen “%s”" - -#: admin/post-types/product.php:167 admin/post-types/shop_order.php:171 -msgid "View" -msgstr "Anzeigen" - -#: admin/post-types/product.php:214 -msgid "Grouped" -msgstr "Gruppiert" - -#: admin/post-types/product.php:216 -msgid "External/Affiliate" -msgstr "Extern/ Affiliate" - -#: admin/post-types/product.php:220 admin/post-types/product.php:407 -#: admin/post-types/writepanels/variation-admin-html.php:174 -#: admin/post-types/writepanels/writepanel-product_data.php:52 -msgid "Virtual" -msgstr "Virtuell" - -#: admin/post-types/product.php:222 admin/post-types/product.php:403 -#: admin/post-types/writepanels/variation-admin-html.php:172 -#: admin/post-types/writepanels/writepanel-product_data.php:58 -msgid "Downloadable" -msgstr "Herunterladbar" - -#: admin/post-types/product.php:224 -msgid "Simple" -msgstr "Einfach" - -#: admin/post-types/product.php:228 admin/post-types/product.php:387 -msgid "Variable" -msgstr "Variable" - -#: admin/post-types/product.php:251 -msgid "Toggle featured" -msgstr "Empfohlene Auf-/ Zuklappen" - -#: admin/post-types/product.php:253 -msgid "yes" -msgstr "ja" - -#: admin/post-types/product.php:255 -msgid "no" -msgstr "nein" - -#: admin/post-types/product.php:262 admin/post-types/product.php:641 -#: admin/post-types/product.php:930 -#: admin/post-types/writepanels/writepanel-product_data.php:231 -msgid "In stock" -msgstr "Auf Lager" - -#: admin/post-types/product.php:264 admin/post-types/product.php:642 -#: admin/post-types/product.php:931 -#: admin/post-types/writepanels/writepanel-product_data.php:232 -#: admin/woocommerce-admin-reports.php:2119 -msgid "Out of stock" -msgstr "Vergriffen" - -#: admin/post-types/product.php:373 -msgid "Show all product types" -msgstr "Alle Produkttypen" - -#: admin/post-types/product.php:381 -#: admin/post-types/writepanels/writepanel-product_data.php:39 -msgid "Grouped product" -msgstr "Gruppiertes Produkt" - -#: admin/post-types/product.php:383 -#: admin/post-types/writepanels/writepanel-product_data.php:40 -msgid "External/Affiliate product" -msgstr "Externes/ Affiliate-Produkt" - -#: admin/post-types/product.php:385 -#: admin/post-types/writepanels/writepanel-product_data.php:38 -msgid "Simple product" -msgstr "Einfaches Produkt" - -#: admin/post-types/product.php:399 -msgid "Show all sub-types" -msgstr "Alle Unter-Typen" - -#: admin/post-types/product.php:520 -msgid "[%s with SKU of %s]" -msgstr "[%s mit Art.-Nr. von %s]" - -#: admin/post-types/product.php:526 -msgid "[%s with ID of %d]" -msgstr "[%s mit ID von %d]" - -#: admin/post-types/product.php:552 admin/post-types/product.php:783 -#: admin/post-types/writepanels/writepanels-init.php:46 -#: admin/settings/settings-init.php:508 -msgid "Product Data" -msgstr "Produktdaten" - -#: admin/post-types/product.php:570 -msgid "Regular price" -msgstr "Regulärer Preis" - -#: admin/post-types/product.php:575 admin/post-types/product.php:813 -msgid "Sale" -msgstr "Aktion" - -#: admin/post-types/product.php:577 -msgid "Sale price" -msgstr "Aktionspreis" - -#: admin/post-types/product.php:588 admin/post-types/product.php:839 -#: admin/post-types/writepanels/variation-admin-html.php:96 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:273 -msgid "Weight" -msgstr "Gewicht" - -#: admin/post-types/product.php:599 admin/post-types/product.php:863 -msgid "L/W/H" -msgstr "L/B/H" - -#: admin/post-types/product.php:601 admin/post-types/product.php:879 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:85 -#: admin/post-types/writepanels/writepanel-product_data.php:286 -msgid "Length" -msgstr "Länge" - -#: admin/post-types/product.php:602 admin/post-types/product.php:880 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:86 -#: admin/post-types/writepanels/writepanel-product_data.php:287 -#: admin/woocommerce-admin-settings.php:797 -msgid "Width" -msgstr "Breite" - -#: admin/post-types/product.php:603 admin/post-types/product.php:881 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:87 -#: admin/post-types/writepanels/writepanel-product_data.php:288 -#: admin/woocommerce-admin-settings.php:799 -msgid "Height" -msgstr "Höhe" - -#: admin/post-types/product.php:613 admin/post-types/product.php:887 -msgid "Visibility" -msgstr "Sichtbarkeit" - -#: admin/post-types/product.php:618 admin/post-types/product.php:893 -msgid "Catalog & search" -msgstr "Katalog & Suche" - -#: admin/post-types/product.php:619 admin/post-types/product.php:894 -#: admin/post-types/writepanels/writepanel-product_data.php:1047 -#: admin/woocommerce-admin-content.php:46 -#: admin/woocommerce-admin-settings.php:183 -msgid "Catalog" -msgstr "Katalog" - -#: admin/post-types/product.php:620 admin/post-types/product.php:895 -#: admin/post-types/writepanels/writepanel-product_data.php:1048 -msgid "Search" -msgstr "Suche" - -#: admin/post-types/product.php:621 admin/post-types/product.php:896 -#: admin/post-types/writepanels/writepanel-product_data.php:1049 -msgid "Hidden" -msgstr "Verborgen" - -#: admin/post-types/product.php:636 admin/post-types/product.php:924 -msgid "In stock?" -msgstr "Am Lager?" - -#: admin/post-types/product.php:657 admin/post-types/product.php:942 -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Manage stock?" -msgstr "Lager verwalten?" - -#: admin/post-types/product.php:661 admin/post-types/product.php:961 -#: admin/post-types/product.php:977 -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "Stock Qty" -msgstr "Lagermenge" - -#: admin/post-types/product.php:794 admin/post-types/product.php:818 -#: admin/post-types/product.php:844 admin/post-types/product.php:868 -#: admin/post-types/product.php:892 admin/post-types/product.php:911 -#: admin/post-types/product.php:929 admin/post-types/product.php:947 -#: admin/post-types/product.php:966 -msgid "— No Change —" -msgstr "— Keine Änderung —" - -#: admin/post-types/product.php:795 admin/post-types/product.php:819 -#: admin/post-types/product.php:845 admin/post-types/product.php:869 -#: admin/post-types/product.php:967 -msgid "Change to:" -msgstr "Ändern zu:" - -#: admin/post-types/product.php:796 admin/post-types/product.php:820 -msgid "Increase by (fixed amount or %):" -msgstr "Erhöhen um (fester Betrag oder %):" - -#: admin/post-types/product.php:797 admin/post-types/product.php:821 -msgid "Decrease by (fixed amount or %):" -msgstr "Vermindern um (fester Betrag oder %):" - -#: admin/post-types/product.php:807 admin/post-types/product.php:832 -msgid "Enter price" -msgstr "Preis eingeben" - -#: admin/post-types/product.php:822 -msgid "Decrease regular price by (fixed amount or %):" -msgstr "Regulären Preis vermindern um (fester Betrag oder %):" - -#: admin/post-types/product.php:912 admin/post-types/product.php:948 -#: admin/post-types/shop_order.php:190 admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:286 -msgid "Yes" -msgstr "Ja" - -#: admin/post-types/product.php:913 admin/post-types/product.php:949 -#: admin/post-types/shop_order.php:192 admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:286 -msgid "No" -msgstr "Nein" - -#: admin/post-types/product.php:1183 -msgid "Sort Products" -msgstr "Produkte sortieren" - -#: admin/post-types/product.php:1222 -msgid "Insert into product" -msgstr "In Produkt einfügen" - -#: admin/post-types/product.php:1223 -msgid "Uploaded to this product" -msgstr "Hochgeladen für dieses Produkt" - -#: admin/post-types/shop_coupon.php:25 -msgid "Code" -msgstr "Gutschein-Code" - -#: admin/post-types/shop_coupon.php:26 -msgid "Coupon type" -msgstr "Gutscheintyp" - -#: admin/post-types/shop_coupon.php:27 -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Coupon amount" -msgstr "Gutscheinbetrag" - -#: admin/post-types/shop_coupon.php:28 -msgid "Description" -msgstr "Beschreibung" - -#: admin/post-types/shop_coupon.php:29 -msgid "Product IDs" -msgstr "Produkt-IDs" - -#: admin/post-types/shop_coupon.php:30 -msgid "Usage / Limit" -msgstr "Verwendung/ Limit" - -#: admin/post-types/shop_coupon.php:31 -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "Expiry date" -msgstr "Ablaufdatum" - -#: admin/post-types/shop_coupon.php:56 -msgid "Edit coupon" -msgstr "Gutschein bearbeiten" - -#: admin/post-types/shop_coupon.php:114 -msgid "%s / %s" -msgstr "%s / %s" - -#: admin/post-types/shop_coupon.php:116 -msgid "%s / ∞" -msgstr "%s / ∞" - -#: admin/post-types/shop_coupon.php:149 -msgid "Show all types" -msgstr "Alle Typen" - -#: admin/post-types/shop_order.php:43 -#: admin/settings/settings-payment-gateways.php:29 -#: admin/settings/settings-shipping-methods.php:31 -msgid "Status" -msgstr "Status" - -#: admin/post-types/shop_order.php:44 -msgid "Order" -msgstr "Bestellung" - -#: admin/post-types/shop_order.php:45 -msgid "Billing" -msgstr "Rechnung" - -#: admin/post-types/shop_order.php:46 -#: admin/post-types/writepanels/writepanel-order_data.php:539 -#: admin/post-types/writepanels/writepanel-product_data.php:81 -#: admin/settings/settings-tax-rates.php:52 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-content.php:49 -#: admin/woocommerce-admin-settings.php:187 -msgid "Shipping" -msgstr "Versand" - -#: admin/post-types/shop_order.php:47 -msgid "Order Total" -msgstr "Gesamtsumme" - -#: admin/post-types/shop_order.php:48 -#: admin/post-types/writepanels/writepanels-init.php:71 -msgid "Order Notes" -msgstr "Bestellnotizen" - -#: admin/post-types/shop_order.php:49 -msgid "Customer Notes" -msgstr "Kundennotizen" - -#: admin/post-types/shop_order.php:51 -#: admin/post-types/writepanels/writepanel-order_data.php:386 -#: admin/post-types/writepanels/writepanel-order_data.php:433 -msgid "Actions" -msgstr "Aktionen" - -#: admin/post-types/shop_order.php:95 -#: admin/post-types/writepanels/writepanel-order_data.php:93 -msgid "Guest" -msgstr "Gast" - -#: admin/post-types/shop_order.php:98 -msgid "Order %s" -msgstr "Bestellung %s" - -#: admin/post-types/shop_order.php:98 -msgid "made by" -msgstr "von" - -#: admin/post-types/shop_order.php:101 -msgid "Email:" -msgstr "E-Mail:" - -#: admin/post-types/shop_order.php:104 -msgid "Tel:" -msgstr "Telefon:" - -#: admin/post-types/shop_order.php:114 admin/post-types/shop_order.php:123 -msgid "Via" -msgstr "Via" - -#: admin/post-types/shop_order.php:131 -msgid "Unpublished" -msgstr "Unveröffentlicht" - -#: admin/post-types/shop_order.php:133 -msgid "Y/m/d g:i:s A" -msgstr "d.m.Y G:i:s" - -#: admin/post-types/shop_order.php:139 -msgid "%s ago" -msgstr "vor %s" - -#: admin/post-types/shop_order.php:141 -msgid "Y/m/d" -msgstr "d.m.Y" - -#: admin/post-types/shop_order.php:158 -#: admin/woocommerce-admin-dashboard.php:176 -msgid "Processing" -msgstr "Abwicklung" - -#: admin/post-types/shop_order.php:165 -msgid "Complete" -msgstr "Abgeschlossen" - -#: admin/post-types/shop_order.php:282 -msgid "Show all statuses" -msgstr "Alle Status" - -#: admin/post-types/shop_order.php:301 admin/post-types/shop_order.php:326 -msgid "Show all customers" -msgstr "Alle Kunden" - -#: admin/post-types/writepanels/order-download-permission-html.php:6 -msgid "Revoke Access" -msgstr "Zugang wiederherstellen" - -#: admin/post-types/writepanels/order-download-permission-html.php:7 -#: admin/post-types/writepanels/variation-admin-html.php:7 -#: admin/post-types/writepanels/writepanel-product_data.php:369 -#: admin/post-types/writepanels/writepanel-product_data.php:463 -#: admin/woocommerce-admin-init.php:439 -msgid "Click to toggle" -msgstr "Klicken zum Aufklappen" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -msgid "File %d: %s" -msgstr "Datei %d: %s" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "%s Mal heruntergeladen" -msgstr[1] "%s Mal heruntergeladen" - -#: admin/post-types/writepanels/order-download-permission-html.php:16 -msgid "Downloads Remaining" -msgstr "Verbleibende Downloads" - -#: admin/post-types/writepanels/order-download-permission-html.php:19 -#: admin/post-types/writepanels/variation-admin-html.php:149 -#: admin/post-types/writepanels/variation-admin-html.php:157 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Unlimited" -msgstr "Unbegrenzt" - -#: admin/post-types/writepanels/order-download-permission-html.php:22 -msgid "Access Expires" -msgstr "Zugang läuft ab" - -#: admin/post-types/writepanels/order-download-permission-html.php:23 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Never" -msgstr "Niemals" - -#: admin/post-types/writepanels/order-fee-html.php:10 -msgid "Fee Name" -msgstr "Name der Gebühr" - -#: admin/post-types/writepanels/order-fee-html.php:17 -#: admin/post-types/writepanels/order-item-html.php:89 -msgid "Tax class" -msgstr "Steuerklasse" - -#: admin/post-types/writepanels/order-fee-html.php:19 -#: admin/post-types/writepanels/order-tax-html.php:8 -#: admin/post-types/writepanels/writepanel-order_data.php:561 -#: admin/post-types/writepanels/writepanel-order_data.php:666 -#: admin/woocommerce-admin-reports.php:1658 -#: admin/woocommerce-admin-reports.php:2671 -#: admin/woocommerce-admin-reports.php:2680 -#: admin/woocommerce-admin-users.php:90 admin/woocommerce-admin-users.php:112 -msgid "N/A" -msgstr "k.A." - -#: admin/post-types/writepanels/order-fee-html.php:20 -#: admin/post-types/writepanels/writepanel-product_data.php:179 -msgid "Taxable" -msgstr "besteuerbar" - -#: admin/post-types/writepanels/order-fee-html.php:25 -#: admin/post-types/writepanels/order-item-html.php:96 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:54 -#: admin/post-types/writepanels/writepanel-product_data.php:186 -#: admin/settings/settings-init.php:972 -#: admin/settings/settings-tax-rates.php:29 -#: admin/woocommerce-admin-settings.php:228 -msgid "Standard" -msgstr "Standard" - -#: admin/post-types/writepanels/order-fee-html.php:43 -#: admin/post-types/writepanels/order-item-html.php:115 -#: admin/woocommerce-admin-reports.php:1562 -#: admin/woocommerce-admin-reports.php:1615 -#: admin/woocommerce-admin-reports.php:2386 -#: admin/woocommerce-admin-reports.php:2555 -#: admin/woocommerce-admin-reports.php:2633 -msgid "Total" -msgstr "Gesamtsumme" - -#: admin/post-types/writepanels/order-item-html.php:10 -msgid "Product ID:" -msgstr "Produkt-ID:" - -#: admin/post-types/writepanels/order-item-html.php:13 -msgid "Variation ID:" -msgstr "Variations-ID:" - -#: admin/post-types/writepanels/order-item-html.php:16 -msgid "Product SKU:" -msgstr "Art.-Nr. des Produkts:" - -#: admin/post-types/writepanels/order-item-html.php:44 -msgid "Add meta" -msgstr "Meta hinzufügen" - -#: admin/post-types/writepanels/order-item-html.php:117 -msgid "Subtotal" -msgstr "Zwischensumme" - -#: admin/post-types/writepanels/order-tax-html.php:6 -msgid "Tax Rate:" -msgstr "Steuersatz:" - -#: admin/post-types/writepanels/order-tax-html.php:16 -#: admin/post-types/writepanels/writepanel-order_data.php:630 -msgid "Sales Tax:" -msgstr "Umsatzsteuer:" - -#: admin/post-types/writepanels/order-tax-html.php:20 -#: admin/post-types/writepanels/writepanel-order_data.php:638 -msgid "Shipping Tax:" -msgstr "Versandsteuer:" - -#: admin/post-types/writepanels/variation-admin-html.php:6 -#: admin/post-types/writepanels/writepanel-product_data.php:368 -#: admin/post-types/writepanels/writepanel-product_data.php:462 -#: admin/woocommerce-admin-init.php:438 -msgid "Remove" -msgstr "Entfernen" - -#: admin/post-types/writepanels/variation-admin-html.php:20 -msgid "Any" -msgstr "Jede" - -#: admin/post-types/writepanels/variation-admin-html.php:52 -msgid "" -"Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "" -"Geben Sie eine Art.-Nr. für diese Variation ein oder lassen Sie das Feld " -"frei, um automatisch die Art.-Nr. des Eltern-Produktes zu verwenden." - -#: admin/post-types/writepanels/variation-admin-html.php:63 -msgid "Stock Qty:" -msgstr "Lagermenge:" - -#: admin/post-types/writepanels/variation-admin-html.php:63 -msgid "" -"Enter a quantity to enable stock management at variation level, or leave " -"blank to use the parent product's options." -msgstr "" -"Geben Sie eine Menge ein, um die Lagerverwaltung auf dem Niveau von " -"Variationen zu aktivieren, oder lassen Sie dies frei, um die Option des " -"übergeordneten Produkts (Elternprodukt) zu verwenden." - -#: admin/post-types/writepanels/variation-admin-html.php:72 -msgid "Regular Price:" -msgstr "Regulärer Preis:" - -#: admin/post-types/writepanels/variation-admin-html.php:73 -msgid "Variation price (required)" -msgstr "Preis der Variation (erforderlich)" - -#: admin/post-types/writepanels/variation-admin-html.php:76 -msgid "Sale Price:" -msgstr "Aktionspreis:" - -#: admin/post-types/writepanels/variation-admin-html.php:76 -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Schedule" -msgstr "Aktionszeitraum" - -#: admin/post-types/writepanels/variation-admin-html.php:76 -msgid "Cancel schedule" -msgstr "Planung abbrechen" - -#: admin/post-types/writepanels/variation-admin-html.php:83 -msgid "Sale start date:" -msgstr "Verkaufs-Startdatum:" - -#: admin/post-types/writepanels/variation-admin-html.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:136 -msgctxt "placeholder" -msgid "From…" -msgstr "Von..." - -#: admin/post-types/writepanels/variation-admin-html.php:87 -msgid "Sale end date:" -msgstr "Verkaufs-Enddatum:" - -#: admin/post-types/writepanels/variation-admin-html.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:137 -msgctxt "placeholder" -msgid "To…" -msgstr "Bis..." - -#: admin/post-types/writepanels/variation-admin-html.php:96 -msgid "" -"Enter a weight for this variation or leave blank to use the parent product " -"weight." -msgstr "" -"Geben Sie ein Gewicht für diese Variation ein oder lassen Sie das Feld frei, " -"um automatisch das Gewicht des Eltern-Produkts zu verwenden." - -#: admin/post-types/writepanels/variation-admin-html.php:104 -msgid "Dimensions (L×W×H)" -msgstr "Grösse (Tiefe×Breite×Höhe)" - -#: admin/post-types/writepanels/variation-admin-html.php:115 -msgid "Shipping class:" -msgstr "Versandgruppe:" - -#: admin/post-types/writepanels/variation-admin-html.php:119 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:53 -msgid "Same as parent" -msgstr "Gleiche wie übergeordnet" - -#: admin/post-types/writepanels/variation-admin-html.php:130 -msgid "Tax class:" -msgstr "Steuerklasse:" - -#: admin/post-types/writepanels/variation-admin-html.php:141 -msgid "File paths:" -msgstr "Dateipfade:" - -#: admin/post-types/writepanels/variation-admin-html.php:141 -msgid "" -"Enter one or more File Paths, one per line, to make this variation a " -"downloadable product, or leave blank." -msgstr "" -"Geben Sie einen oder mehrere Dateipfade an, einen pro Zeile, um diese " -"Variation zu einem herunterladbaren Produkt zu machen. Oder lassen Sie das " -"Feld einfach frei." - -#: admin/post-types/writepanels/variation-admin-html.php:142 -#: admin/post-types/writepanels/writepanel-product_data.php:153 -msgid "File paths/URLs, one per line" -msgstr "Dateipfade/ -URLs, einen pro Zeile" - -#: admin/post-types/writepanels/variation-admin-html.php:143 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Choose a file" -msgstr "Eine Datei auswählen" - -#: admin/post-types/writepanels/variation-admin-html.php:143 -msgid "Upload" -msgstr "Hochladen" - -#: admin/post-types/writepanels/variation-admin-html.php:143 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Insert file URL" -msgstr "Datei-URL einfügen" - -#: admin/post-types/writepanels/variation-admin-html.php:148 -msgid "Download Limit:" -msgstr "Downloadlimit:" - -#: admin/post-types/writepanels/variation-admin-html.php:148 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Leave blank for unlimited re-downloads." -msgstr "Frei lassen für unbegrenzte Downloads." - -#: admin/post-types/writepanels/variation-admin-html.php:156 -msgid "Download Expiry:" -msgstr "Download-Verfall" - -#: admin/post-types/writepanels/variation-admin-html.php:156 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "" -"Enter the number of days before a download link expires, or leave blank." -msgstr "" -"Geben Sie die Zahl der Tage ein, bevor der Download-Link ausläuft, oder " -"lassen Sie das Feld frei." - -#: admin/post-types/writepanels/variation-admin-html.php:170 -msgid "Enabled" -msgstr "Aktiv" - -#: admin/post-types/writepanels/variation-admin-html.php:172 -msgid "" -"Enable this option if access is given to a downloadable file upon purchase " -"of a product" -msgstr "" -"Aktivieren Sie diese Option, falls während eines Produktkaufs Zugriff auf " -"eine herunterladbare Datei gewährt wird." - -#: admin/post-types/writepanels/variation-admin-html.php:174 -msgid "" -"Enable this option if a product is not shipped or there is no shipping cost" -msgstr "" -"Aktivieren Sie diese Option, falls ein Produkt nicht versandt wird oder " -"keine Versandkosten erhoben werden." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Coupon description" -msgstr "Gutschein-Beschreibung" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Optionally enter a description for this coupon for your reference." -msgstr "" -"Geben Sie eine optionale Beschreibung für diesen Gutschein an - zur internen " -"Referenz." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:42 -msgid "Discount type" -msgstr "Rabattart" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Value of the coupon." -msgstr "Wert des Gutscheins." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "Enable free shipping" -msgstr "'Versandkostenfrei' aktivieren" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "" -"Check this box if the coupon grants free shipping. The free " -"shipping method must be enabled with the \"must use coupon\" setting " -"checked." -msgstr "" -"Aktivieren Sie dieses Kontrollkästchen, wenn der Gutschein kostenfreien " -"Versand beinhaltet. Die Methode Versandkostenfrei muss " -"aktiviert sein, sowie ebenfalls die Einstellung \"erfordert Gutschein\"." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "Individual use" -msgstr "Individuelle Verwendung" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "" -"Check this box if the coupon cannot be used in conjunction with other " -"coupons." -msgstr "" -"Aktivieren Sie dieses Kontrollkästchen, wenn dieser Gutschein nicht zusammen " -"mit anderen Gutscheinen verwendet werden darf." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "Apply before tax" -msgstr "Vor der Mwst. zuweisen" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "" -"Check this box if the coupon should be applied before calculating cart tax." -msgstr "" -"Aktivieren Sie dieses Kontrollkästchen, wenn dieser Gutschein vor dem " -"Berechnen der Mehrwertsteuer auf den Warenkorbinhalt zugewiesen werden soll." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "Exclude sale items" -msgstr "Produkte mit Aktionspreis ausschliessen" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "" -"Check this box if the coupon should not apply to items on sale. Per-item " -"coupons will only work if the item is not on sale. Per-cart coupons will " -"only work if there are no sale items in the cart." -msgstr "" -"Aktivieren Sie dieses Kontrollkästchen, wenn der Gutschein nicht für " -"Produkte mit Aktionspreis gelten soll. Pro-Produkt-Gutscheine werden dann " -"nur funktionieren, wenn das Produkt nicht gerade einen Aktionspreis hat. Pro-" -"Produkt-Gutscheine dann auch nur funktionieren, wenn sich keine Produkte mit " -"Aktionspreis im Warenkorb befinden." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "Minimum amount" -msgstr "Mindestbetrag" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "No minimum" -msgstr "Kein Mindestbetrag" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "" -"This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "" -"Dieses Feld erlaubt es Ihnen, einen Mindestbestellwert (Zwischensumme) " -"festzulegen, damit dieser Gutschein verwendet werden kann." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:74 -#: admin/woocommerce-admin-taxonomies.php:28 -#: admin/woocommerce-admin-taxonomies.php:122 -msgid "Products" -msgstr "Produkte" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:75 -#: admin/post-types/writepanels/writepanel-order_data.php:400 -#: admin/post-types/writepanels/writepanel-product_data.php:523 -#: admin/post-types/writepanels/writepanel-product_data.php:540 -#: admin/woocommerce-admin-reports.php:1245 -msgid "Search for a product…" -msgstr "Nach einem Produkt suchen…" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:89 -msgid "" -"Products which need to be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are discounted." -msgstr "" -"Produkte, welche sich im Warenkorb befinden müssen, damit der Gutschein " -"verwendet werden kann. Oder, für \"Produktrabatt\", welche Produkte " -"rabattiert sind." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:94 -msgid "Exclude products" -msgstr "Produkte ausschliessen" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:95 -msgid "Search for a product…" -msgstr "Nach Produkt suchen..." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:109 -msgid "" -"Products which must not be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are not discounted." -msgstr "" -"Produkte, welche sich nicht im Warenkorb befinden dürfen, damit dieser " -"Gutschein verwendet werden kann. Oder, für \"Produktrabatt\", welche " -"Produkte nicht rabattiert sind." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:116 -msgid "Product categories" -msgstr "Produktkategorien" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:117 -msgid "Any category" -msgstr "Beliebige Kategorie" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:125 -msgid "" -"A product must be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will be discounted." -msgstr "" -"Ein Produkt muss sich in dieser Kategorie befinden, damit der Gutschein " -"gültig bleibt. Oder, für \"Produktrabatt\": Produkte in diesen Kategorien " -"werden rabattiert." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:130 -msgid "Exclude categories" -msgstr "Kategorien ausschliessen" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:131 -msgid "No categories" -msgstr "Keine Kategorien" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:139 -msgid "" -"Product must not be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will not be discounted." -msgstr "" -"Das Produkt darf sich nicht in dieser Kategorie befinden, damit der " -"Gutschein gültig bleibt. Oder, für \"Produktrabatt\": Produkte in diesen " -"Kategorien werden nicht rabattiert." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "Email restrictions" -msgstr "E-Mail Einschränkungen" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "No restrictions" -msgstr "keine Einschränkungen" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "" -"List of emails to check against the customer's billing email when an order " -"is placed." -msgstr "" -"Liste der zu prüfenden E-Mails, die sich von der E-Mail unterscheidet, die " -"beim Kauf angegeben wurde." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "Usage limit" -msgstr "Wie oft einlösbar?" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "Unbegrenzte Verwendung" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "How many times this coupon can be used before it is void." -msgstr "Wie oft dieser Gutschein verwendet werden kann, bevor er abläuft." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgctxt "placeholder" -msgid "Never expire" -msgstr "Nie auslaufend" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "The date this coupon will expire, YYYY-MM-DD." -msgstr "" -"Das Datum an dem dieser Gutscheins ablaufen wird, eingeben im Format: " -"JJJJ-MM-TT." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:195 -msgid "" -"Coupon code already exists - customers will use the latest coupon with this " -"code." -msgstr "" -"Dieser Gutschein existiert bereits - Kunden werden den aktuellsten Gutschein " -"mit diesem Code verwenden." - -#: admin/post-types/writepanels/writepanel-order_data.php:59 -msgid "Order Details" -msgstr "Bestelldetails" - -#: admin/post-types/writepanels/writepanel-order_data.php:62 -msgid "Order number" -msgstr "Bestellnummer" - -#: admin/post-types/writepanels/writepanel-order_data.php:67 -msgid "Customer IP:" -msgstr "IP-Adresse des Kunden:" - -#: admin/post-types/writepanels/writepanel-order_data.php:74 -msgid "General Details" -msgstr "Allgemeine Details" - -#: admin/post-types/writepanels/writepanel-order_data.php:76 -msgid "Order status:" -msgstr "Bestellstatus:" - -#: admin/post-types/writepanels/writepanel-order_data.php:86 -msgid "Order Date:" -msgstr "Bestelldatum:" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -msgid "h" -msgstr "h" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#: admin/settings/settings-init.php:567 -msgid "m" -msgstr "m" - -#: admin/post-types/writepanels/writepanel-order_data.php:91 -msgid "Customer:" -msgstr "Kunde:" - -#: admin/post-types/writepanels/writepanel-order_data.php:131 -msgid "Customer Note:" -msgstr "Kundennotiz:" - -#: admin/post-types/writepanels/writepanel-order_data.php:132 -msgid "Customer's notes about the order" -msgstr "Kundennotizen zur Bestellung" - -#: admin/post-types/writepanels/writepanel-order_data.php:140 -msgid "Billing Details" -msgstr "Rechnungsdetails" - -#: admin/post-types/writepanels/writepanel-order_data.php:144 -#: admin/post-types/writepanels/writepanel-order_data.php:234 -msgid "First Name" -msgstr "Vorname" - -#: admin/post-types/writepanels/writepanel-order_data.php:148 -#: admin/post-types/writepanels/writepanel-order_data.php:238 -msgid "Last Name" -msgstr "Nachname" - -#: admin/post-types/writepanels/writepanel-order_data.php:152 -#: admin/post-types/writepanels/writepanel-order_data.php:242 -#: admin/woocommerce-admin-users.php:155 admin/woocommerce-admin-users.php:204 -msgid "Company" -msgstr "Firma" - -#: admin/post-types/writepanels/writepanel-order_data.php:156 -#: admin/post-types/writepanels/writepanel-order_data.php:246 -#: admin/woocommerce-admin-users.php:159 admin/woocommerce-admin-users.php:208 -msgid "Address 1" -msgstr "Strasse und Hausnummer" - -#: admin/post-types/writepanels/writepanel-order_data.php:160 -#: admin/post-types/writepanels/writepanel-order_data.php:250 -#: admin/woocommerce-admin-users.php:163 admin/woocommerce-admin-users.php:212 -msgid "Address 2" -msgstr "Adresszusatz" - -#: admin/post-types/writepanels/writepanel-order_data.php:164 -#: admin/post-types/writepanels/writepanel-order_data.php:254 -#: admin/settings/settings-tax-rates.php:42 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-users.php:167 admin/woocommerce-admin-users.php:216 -msgid "City" -msgstr "Stadt" - -#: admin/post-types/writepanels/writepanel-order_data.php:168 -#: admin/post-types/writepanels/writepanel-order_data.php:258 -#: admin/woocommerce-admin-users.php:171 admin/woocommerce-admin-users.php:220 -msgid "Postcode" -msgstr "Postleitzahl" - -#: admin/post-types/writepanels/writepanel-order_data.php:172 -#: admin/post-types/writepanels/writepanel-order_data.php:262 -#: admin/woocommerce-admin-users.php:179 admin/woocommerce-admin-users.php:228 -msgid "Country" -msgstr "Land" - -#: admin/post-types/writepanels/writepanel-order_data.php:175 -#: admin/post-types/writepanels/writepanel-order_data.php:265 -msgid "Select a country…" -msgstr "Wählen Sie ein Land aus…" - -#: admin/post-types/writepanels/writepanel-order_data.php:178 -#: admin/post-types/writepanels/writepanel-order_data.php:268 -#: admin/woocommerce-admin-users.php:175 admin/woocommerce-admin-users.php:224 -msgid "State/County" -msgstr "Bundesland/ Kanton" - -#: admin/post-types/writepanels/writepanel-order_data.php:182 -#: admin/woocommerce-admin-users.php:187 -msgid "Email" -msgstr "E-Mail" - -#: admin/post-types/writepanels/writepanel-order_data.php:185 -msgid "Phone" -msgstr "Telefon" - -#: admin/post-types/writepanels/writepanel-order_data.php:193 -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#: admin/post-types/writepanels/writepanel-order_data.php:277 -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "Address" -msgstr "Adresse" - -#: admin/post-types/writepanels/writepanel-order_data.php:195 -msgid "No billing address set." -msgstr "Es wurde keine Rechnungsanschrift angegeben." - -#: admin/post-types/writepanels/writepanel-order_data.php:208 -msgid "Load billing address" -msgstr "Rechnungsanschrift laden" - -#: admin/post-types/writepanels/writepanel-order_data.php:230 -msgid "Shipping Details" -msgstr "Versanddetails" - -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "No shipping address set." -msgstr "Es wurde keine Versandanschrift angegeben." - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Load shipping address" -msgstr "Versandanschrift laden" - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Copy from billing" -msgstr "Von Rechnung kopieren" - -#: admin/post-types/writepanels/writepanel-order_data.php:339 -msgid "Item" -msgstr "Element" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#: admin/post-types/writepanels/writepanel-product_data.php:191 -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Class" -msgstr "Mwst.-Klasse" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -msgid "Tax class for the line item" -msgstr "Steuerklassen für diese Position" - -#: admin/post-types/writepanels/writepanel-order_data.php:347 -msgid "Qty" -msgstr "Anz" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -msgid "Totals" -msgstr "Gesamtbetrag" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -msgid "Line subtotals are before pre-tax discounts, totals are after." -msgstr "" -"Zwischensummen werden vor den Vorsteuer-Rabatten aufgelistet, Gesamtsummen " -"danach." - -#: admin/post-types/writepanels/writepanel-order_data.php:352 -#: admin/settings/settings-tax-rates.php:387 -#: admin/settings/settings-tax-rates.php:475 -#: admin/woocommerce-admin-content.php:48 -#: admin/woocommerce-admin-settings.php:186 -msgid "Tax" -msgstr "Mehrwertsteuer" - -#: admin/post-types/writepanels/writepanel-order_data.php:388 -msgid "Delete Lines" -msgstr "Positionen löschen" - -#: admin/post-types/writepanels/writepanel-order_data.php:390 -msgid "Stock Actions" -msgstr "Lager-Aktionen" - -#: admin/post-types/writepanels/writepanel-order_data.php:391 -msgid "Reduce Line Stock" -msgstr "Lagermenge der Position reduzieren" - -#: admin/post-types/writepanels/writepanel-order_data.php:392 -msgid "Increase Line Stock" -msgstr "Lagermenge der Position erhöhen" - -#: admin/post-types/writepanels/writepanel-order_data.php:396 -#: admin/post-types/writepanels/writepanel-order_data.php:456 -msgid "Apply" -msgstr "Übernehmen" - -#: admin/post-types/writepanels/writepanel-order_data.php:402 -msgid "Add item(s)" -msgstr "Element(e) hinzufügen" - -#: admin/post-types/writepanels/writepanel-order_data.php:403 -msgid "Add fee" -msgstr "Gebühr hinzufügen" - -#: admin/post-types/writepanels/writepanel-order_data.php:434 -msgid "Resend order emails" -msgstr "Bestell-E-Mails erneut senden" - -#: admin/post-types/writepanels/writepanel-order_data.php:465 -msgid "Move to Trash" -msgstr "In den Papierkorb verschieben" - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save Order" -msgstr "Bestellung speichern" - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save/update the order" -msgstr "Bestellung speichern/ aktualisieren" - -#: admin/post-types/writepanels/writepanel-order_data.php:498 -msgid "Discounts" -msgstr "Rabatte" - -#: admin/post-types/writepanels/writepanel-order_data.php:502 -msgid "Cart Discount:" -msgstr "Warenkorbrabatt:" - -#: admin/post-types/writepanels/writepanel-order_data.php:502 -msgid "Discounts before tax - calculated by comparing subtotals to totals." -msgstr "" -"Rabatte vor Steuern - berechnet indem Zwischensummen mit Gesamtsummen " -"verglichen werden." - -#: admin/post-types/writepanels/writepanel-order_data.php:510 -msgid "Order Discount:" -msgstr "Rabatt auf Bestellung:" - -#: admin/post-types/writepanels/writepanel-order_data.php:510 -msgid "Discounts after tax - user defined." -msgstr "Rabatte nach Steuern - benutzerdefiniert." - -#: admin/post-types/writepanels/writepanel-order_data.php:543 -msgid "Label:" -msgstr "Beschriftung:" - -#: admin/post-types/writepanels/writepanel-order_data.php:544 -msgid "The shipping title the customer sees" -msgstr "Der Versandmethoden-Titel, den der Besucher/ Kunde sieht" - -#: admin/post-types/writepanels/writepanel-order_data.php:551 -msgid "Cost:" -msgstr "Kosten:" - -#: admin/post-types/writepanels/writepanel-order_data.php:552 -msgid "(ex. tax)" -msgstr "(exkl. Mwst.)" - -#: admin/post-types/writepanels/writepanel-order_data.php:559 -msgid "Method:" -msgstr "Methode:" - -#: admin/post-types/writepanels/writepanel-order_data.php:581 -#: admin/post-types/writepanels/writepanel-order_data.php:583 -#: admin/post-types/writepanels/writepanel-order_data.php:682 -#: admin/post-types/writepanels/writepanel-order_data.php:684 -msgid "Other" -msgstr "Andere" - -#: admin/post-types/writepanels/writepanel-order_data.php:597 -msgid "Tax Rows" -msgstr "Steuer-Zeilen" - -#: admin/post-types/writepanels/writepanel-order_data.php:622 -msgid "+ Add tax row" -msgstr "+ Steuerposition hinzufügen" - -#: admin/post-types/writepanels/writepanel-order_data.php:622 -msgid "" -"These rows contain taxes for this order. This allows you to display multiple " -"or compound taxes rather than a single total." -msgstr "" -"Diese Zeilen enthalten Steuern für diese Bestellung. Dies erlaubt es Ihnen, " -"mehrere oder verbundene Steuern zu berechnen, gegenüber einer einzigen " -"Gesamtsteuer." - -#: admin/post-types/writepanels/writepanel-order_data.php:626 -msgid "Tax Totals" -msgstr "Steuer gesamt" - -#: admin/post-types/writepanels/writepanel-order_data.php:630 -msgid "Total tax for line items + fees." -msgstr "Gesamte Steuer für alle Positionen + Gebühr" - -#: admin/post-types/writepanels/writepanel-order_data.php:652 -#: admin/post-types/writepanels/writepanels-init.php:70 -msgid "Order Totals" -msgstr "Gesamtsumme" - -#: admin/post-types/writepanels/writepanel-order_data.php:656 -msgid "Order Total:" -msgstr "Gesamtsumme:" - -#: admin/post-types/writepanels/writepanel-order_data.php:664 -msgid "Payment Method:" -msgstr "Zahlungsweise:" - -#: admin/post-types/writepanels/writepanel-order_data.php:695 -msgid "Calc taxes" -msgstr "Steuern berechnen" - -#: admin/post-types/writepanels/writepanel-order_data.php:697 -msgid "Calc totals" -msgstr "Gesamtsummen berechnen" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:57 -msgid "Choose a downloadable product…" -msgstr "Wählen Sie ein herunterladbares Produkt..." - -#: admin/post-types/writepanels/writepanel-order_downloads.php:87 -msgid "Grant Access" -msgstr "Zugriff gewähren" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:125 -msgid "" -"Could not grant access - the user may already have permission for this file " -"or billing email is not set. Ensure the billing email is set, and the order " -"has been saved." -msgstr "" -"Zugriff konnte nicht gestattet werden. Der Benutzer hat entweder schon " -"Zugriff auf diese Datei oder die Rechnungs-/ Bezahl-E-Mail ist nicht " -"festgelegt. Stellen Sie sicher, dass die Rechnungs-/ Bezahl-E-Mail " -"festgelegt ist und die Bestellung gespeichert wurde." - -#: admin/post-types/writepanels/writepanel-order_downloads.php:148 -msgid "Are you sure you want to revoke access to this download?" -msgstr "" -"Sind Sie sicher, dass Sie den Zugang zu diesem Download erneuern wollen?" - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -msgid "added %s ago" -msgstr "vor %s hinzugefügt" - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -msgid "Delete note" -msgstr "Notiz löschen" - -#: admin/post-types/writepanels/writepanel-order_notes.php:50 -msgid "There are no notes for this order yet." -msgstr "Für diese Bestellung gibt es noch keine Anmerkungen." - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "Add note" -msgstr "Notiz hinzufügen" - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "" -"Add a note for your reference, or add a customer note (the user will be " -"notified)." -msgstr "" -"Fügen Sie hier eine Notiz hinzu, entweder für Ihre interne Verwaltung oder " -"für den Kunden (welcher dann darüber benachrichtigt wird)." - -#: admin/post-types/writepanels/writepanel-order_notes.php:62 -msgid "Customer note" -msgstr "Kundennotiz" - -#: admin/post-types/writepanels/writepanel-order_notes.php:63 -msgid "Private note" -msgstr "Private Notiz" - -#: admin/post-types/writepanels/writepanel-order_notes.php:65 -#: admin/post-types/writepanels/writepanel-product_data.php:501 -msgid "Add" -msgstr "Hinzufügen" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations for variable products are defined here." -msgstr "Variationen für variable Produkte werden hier festgelegt." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations" -msgstr "Variationen" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:65 -msgid "" -"Before adding variations, add and save some attributes on the " -"Attributes tab." -msgstr "" -"Bevor Sie Variationen hinzufügen, legen Sie zunächst einige Merkmale über " -"den Menüpunkt Eigenschaften an." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:67 -msgid "Learn more" -msgstr "Mehr erfahren" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Close all" -msgstr "Alle schliessen" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Expand all" -msgstr "Alle aufklappen" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:75 -msgid "Bulk edit:" -msgstr "Aktion wählen:" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:77 -msgid "Toggle "Enabled"" -msgstr ""Aktiviert" Auf-/ Zuklappen" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:78 -msgid "Toggle "Downloadable"" -msgstr ""Herunterladbar" Auf-/ Zuklappen" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:79 -msgid "Toggle "Virtual"" -msgstr ""Virtuell" Auf-/ Zuklappen" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:80 -msgid "Delete all variations" -msgstr "Alle Variationen löschen" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:81 -msgid "Prices" -msgstr "Preise" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:82 -msgid "Sale prices" -msgstr "Verkaufspreise" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:88 -msgid "File Path" -msgstr "Dateipfad" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:89 -msgid "Download limit" -msgstr "Downloadlimit" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:90 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Download Expiry" -msgstr "Download-Verfall" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:93 -msgid "Go" -msgstr "Los" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:193 -msgid "Add Variation" -msgstr "Variation hinzufügen" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:195 -msgid "Link all variations" -msgstr "Alle Varianten miteinander verknüpfen" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:197 -msgid "Default selections:" -msgstr "Standardauswahl:" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:210 -msgid "No default" -msgstr "Kein Standard" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:299 -msgid "" -"Are you sure you want to link all variations? This will create a new " -"variation for each and every possible combination of variation attributes " -"(max 50 per run)." -msgstr "" -"Sind Sie sicher, dass Sie alle Variationen verlinken wollen? Dies wird eine " -"neue Variation erstellen für jede mögliche Kombination von Eigenschaften " -"(maximal 50 pro Durchlauf)." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:316 -msgid "variation added" -msgstr "Variation hinzugefügt" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:318 -msgid "variations added" -msgstr "Variationen hinzugefügt" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:320 -msgid "No variations added" -msgstr "Keine Variationen hinzugefügt" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:343 -msgid "Are you sure you want to remove this variation?" -msgstr "Sind Sie sicher, dass Sie diese Variation entfernen wollen?" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:399 -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "" -"Sind Sie sicher, dass Sie alle Variationen löschen wollen? Dies kann nicht " -"rückgängig gemacht werden!" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:402 -msgid "Last warning, are you sure?" -msgstr "Letzte Warnung - sind Sie sicher?" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:439 -msgid "Enter a value" -msgstr "Einen Wert eingeben" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:517 -#: admin/woocommerce-admin-taxonomies.php:62 -#: admin/woocommerce-admin-taxonomies.php:154 -msgid "Choose an image" -msgstr "Ein Bild auswählen" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:519 -msgid "Set variation image" -msgstr "Bild für Variation festlegen" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:563 -msgid "Variable product" -msgstr "Variables Produkt" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:629 -msgid "Variation #%s of %s" -msgstr "Variation #%s von %s" - -#: admin/post-types/writepanels/writepanel-product_data.php:43 -msgid "Product Type" -msgstr "Produkttyp" - -#: admin/post-types/writepanels/writepanel-product_data.php:53 -msgid "Virtual products are intangible and aren't shipped." -msgstr "Virtuelle Produkte sind immateriell und werden nicht versandt." - -#: admin/post-types/writepanels/writepanel-product_data.php:59 -msgid "Downloadable products give access to a file upon purchase." -msgstr "" -"Herunterladbare Produkte erlauben Zugriff auf eine Datei während des " -"Kaufvorgangs." - -#: admin/post-types/writepanels/writepanel-product_data.php:77 -#: admin/woocommerce-admin-content.php:44 -#: admin/woocommerce-admin-settings.php:182 -msgid "General" -msgstr "Allgemein" - -#: admin/post-types/writepanels/writepanel-product_data.php:79 -#: admin/woocommerce-admin-content.php:47 -#: admin/woocommerce-admin-settings.php:185 -msgid "Inventory" -msgstr "Bestand" - -#: admin/post-types/writepanels/writepanel-product_data.php:83 -msgid "Linked Products" -msgstr "Verlinkte Produkte" - -#: admin/post-types/writepanels/writepanel-product_data.php:85 -#: admin/woocommerce-admin-attributes.php:299 -#: admin/woocommerce-admin-init.php:66 -msgid "Attributes" -msgstr "Eigenschaften" - -#: admin/post-types/writepanels/writepanel-product_data.php:87 -msgid "Advanced" -msgstr "Erweitert" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "Stock Keeping Unit" -msgstr "Einheit für die Lagerhaltung/ Bestandspflege" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "" -"SKU refers to a Stock-keeping unit, a unique identifier for each distinct " -"product and service that can be purchased." -msgstr "" -"Artikel-Nr. bezieht sich auf eine Einheit zur Lagerhaltung, ein einzigartige " -"Identifkationsgrösse für jedes Produkt und jede Dienstleistung, die man " -"kaufen kann." - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Product URL" -msgstr "Produkt-URL" - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Enter the external URL to the product." -msgstr "Geben Sie die externe URL zum Produkt an." - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "Button text" -msgstr "Button-Text" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgctxt "placeholder" -msgid "Buy product" -msgstr "Produkt kaufen" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "This text will be shown on the button linking to the external product." -msgstr "" -"Dieser Text wird auf dem Button erscheinen, der auf das externe Produkt " -"verlinkt." - -#: admin/post-types/writepanels/writepanel-product_data.php:119 -msgid "Regular Price" -msgstr "Regulärer Preis" - -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Sale Price" -msgstr "Aktionspreis" - -#: admin/post-types/writepanels/writepanel-product_data.php:135 -msgid "Sale Price Dates" -msgstr "Aktionspreis-Datum/ -Zeitraum" - -#: admin/post-types/writepanels/writepanel-product_data.php:138 -#: admin/post-types/writepanels/writepanel-product_data.php:1082 -msgid "Cancel" -msgstr "Abbrechen" - -#: admin/post-types/writepanels/writepanel-product_data.php:152 -msgid "File paths (one per line)" -msgstr "Dateipfade (einer pro Zeile)" - -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Download Limit" -msgstr "Downloadlimit" - -#: admin/post-types/writepanels/writepanel-product_data.php:178 -msgid "Tax Status" -msgstr "Mehrwertsteuerstatus" - -#: admin/post-types/writepanels/writepanel-product_data.php:180 -msgid "Shipping only" -msgstr "Nur beim Versand" - -#: admin/post-types/writepanels/writepanel-product_data.php:181 -msgid "None" -msgstr "mehrwertsteuerfrei" - -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Enable stock management at product level" -msgstr "Lagerverwaltung auf Produktebene aktivieren" - -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "" -"Stock quantity. If this is a variable product this value will be used to " -"control stock for all variations, unless you define stock at variation level." -msgstr "" -"Lagerbestand. Wenn dies ein variables Produkt ist, wird dieser Wert " -"verwendet, um den Bestand für alle Variationen zu verwenden, ungeachtet " -"dessen, ob Sie einen Bestand für die Variationen angelegt haben." - -#: admin/post-types/writepanels/writepanel-product_data.php:230 -msgid "Stock status" -msgstr "Lagerstatus" - -#: admin/post-types/writepanels/writepanel-product_data.php:233 -msgid "" -"Controls whether or not the product is listed as \"in stock\" or \"out of " -"stock\" on the frontend." -msgstr "" -"Kontrolliert, ob das Produkt in der Besucheransicht (Frontend) als \"Am Lager" -"\" oder \"vergriffen\" gelistet wird." - -#: admin/post-types/writepanels/writepanel-product_data.php:240 -msgid "Allow Backorders?" -msgstr "Fehlmengen erlauben?" - -#: admin/post-types/writepanels/writepanel-product_data.php:241 -msgid "Do not allow" -msgstr "Nicht erlauben" - -#: admin/post-types/writepanels/writepanel-product_data.php:242 -msgid "Allow, but notify customer" -msgstr "Erlauben, aber Kunde benachrichtigen" - -#: admin/post-types/writepanels/writepanel-product_data.php:243 -msgid "Allow" -msgstr "Erlauben" - -#: admin/post-types/writepanels/writepanel-product_data.php:244 -msgid "" -"If managing stock, this controls whether or not backorders are allowed for " -"this product and variations. If enabled, stock quantity can go below 0." -msgstr "" -"Wenn die Lagerverwaltung aktiv ist, kontrolliert dies, ob Nachbestellungen " -"für dieses Produkt und Variationen erlaubt sind. Falls aktiviert, kann der " -"Lagerbestandswert auch unter 0 gehen." - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "Sold Individually" -msgstr "Einzeln verkauft" - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "" -"Enable this to only allow one of this item to be bought in a single order" -msgstr "" -"Diese Option aktivieren, um zu erlauben, dass nur eines von diesen Produkten " -"in einer einzelnen Bestellung gekauft werden kann." - -#: admin/post-types/writepanels/writepanel-product_data.php:273 -msgid "Weight in decimal form" -msgstr "Gewicht in dezimaler Einheit" - -#: admin/post-types/writepanels/writepanel-product_data.php:284 -msgid "Dimensions" -msgstr "Grösse" - -#: admin/post-types/writepanels/writepanel-product_data.php:290 -msgid "LxWxH in decimal form" -msgstr "LxBxH in dezimaler Einheit" - -#: admin/post-types/writepanels/writepanel-product_data.php:311 -msgid "No shipping class" -msgstr "Keine Versandgruppe" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "Shipping class" -msgstr "Versandgruppe" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "" -"Shipping classes are used by certain shipping methods to group similar " -"products." -msgstr "" -"Versandgruppen werden von bestimmten Versandmethoden verwendet, um ähnliche " -"Produkte zu gruppieren." - -#: admin/post-types/writepanels/writepanel-product_data.php:384 -#: admin/post-types/writepanels/writepanel-product_data.php:476 -#: admin/woocommerce-admin-init.php:440 -msgid "Value(s)" -msgstr "Wert(e)" - -#: admin/post-types/writepanels/writepanel-product_data.php:386 -msgid "Select terms" -msgstr "Terms auswählen" - -#: admin/post-types/writepanels/writepanel-product_data.php:398 -msgid "Select all" -msgstr "Alle auswählen" - -#: admin/post-types/writepanels/writepanel-product_data.php:398 -msgid "Select none" -msgstr "Nichts auswählen" - -#: admin/post-types/writepanels/writepanel-product_data.php:400 -msgid "Add new" -msgstr "Hinzufügen" - -#: admin/post-types/writepanels/writepanel-product_data.php:413 -msgid "Pipe (|) separate terms" -msgstr "Termini mit Pipe-Symbol (|) trennen" - -#: admin/post-types/writepanels/writepanel-product_data.php:427 -#: admin/post-types/writepanels/writepanel-product_data.php:482 -#: admin/woocommerce-admin-init.php:442 -msgid "Visible on the product page" -msgstr "Sichtbar auf der Produktseite" - -#: admin/post-types/writepanels/writepanel-product_data.php:440 -#: admin/post-types/writepanels/writepanel-product_data.php:488 -#: admin/woocommerce-admin-init.php:443 -msgid "Used for variations" -msgstr "Verwendet für Variationen" - -#: admin/post-types/writepanels/writepanel-product_data.php:477 -#: admin/woocommerce-admin-init.php:441 -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "" -"Geben Sie etwas Text ein, oder einige Attribute, getrennt vom Pipe-Symbol " -"(|)." - -#: admin/post-types/writepanels/writepanel-product_data.php:503 -msgid "Custom product attribute" -msgstr "Benutzerdefiniertes Produktmerkmal" - -#: admin/post-types/writepanels/writepanel-product_data.php:515 -msgid "Save attributes" -msgstr "Eigenschaften speichern" - -#: admin/post-types/writepanels/writepanel-product_data.php:522 -msgid "Up-Sells" -msgstr "Upselling" - -#: admin/post-types/writepanels/writepanel-product_data.php:537 -msgid "" -"Up-sells are products which you recommend instead of the currently viewed " -"product, for example, products that are more profitable or better quality or " -"more expensive." -msgstr "" -"Upselling (Up-sells) sind Produkte, welche Sie statt des aktuell " -"angesehenen Produktes empfehlen. Das können zum Beispiel Produkte sein, die " -"teurer/ profitabler sind oder eine bessere Qualität aufweisen." - -#: admin/post-types/writepanels/writepanel-product_data.php:539 -msgid "Cross-Sells" -msgstr "Querverkauf" - -#: admin/post-types/writepanels/writepanel-product_data.php:554 -msgid "" -"Cross-sells are products which you promote in the cart, based on the current " -"product." -msgstr "" -"Querverkauf (Cross-Selling) sind Produkte, welche Sie im Warenkorb (bzw. " -"darum herum) bewerben können, basierend auf dem aktuell gewählten Produkt." - -#: admin/post-types/writepanels/writepanel-product_data.php:564 -msgid "Choose a grouped product…" -msgstr "Wählen Sie ein gruppiertes Produkt…" - -#: admin/post-types/writepanels/writepanel-product_data.php:590 -msgid "Grouping" -msgstr "Gruppieren" - -#: admin/post-types/writepanels/writepanel-product_data.php:590 -msgid "Set this option to make this product part of a grouped product." -msgstr "" -"Diese Option setzen, um das Produkt zum Teil eines gruppierten Produktes zu " -"machen." - -#: admin/post-types/writepanels/writepanel-product_data.php:610 -msgid "Purchase Note" -msgstr "Kauf-Notiz" - -#: admin/post-types/writepanels/writepanel-product_data.php:610 -msgid "Enter an optional note to send the customer after purchase." -msgstr "" -"Geben Sie eine optionale Notiz ein, um den Kunde nach dem Kauf zu " -"informieren." - -#: admin/post-types/writepanels/writepanel-product_data.php:617 -msgid "Menu order" -msgstr "Menüreihenfolge" - -#: admin/post-types/writepanels/writepanel-product_data.php:617 -msgid "Custom ordering position." -msgstr "Benutzerdefinierte Sortierung." - -#: admin/post-types/writepanels/writepanel-product_data.php:625 -msgid "Enable reviews" -msgstr "Produktrezensionen erlauben" - -#: admin/post-types/writepanels/writepanel-product_data.php:714 -msgid "Product SKU must be unique." -msgstr "Produkt-Artikelnummer muss einzigartig sein." - -#: admin/post-types/writepanels/writepanel-product_data.php:1046 -msgid "Catalog/search" -msgstr "Katalog/ Suche" - -#: admin/post-types/writepanels/writepanel-product_data.php:1053 -msgid "Catalog visibility:" -msgstr "Katalogsichtbarkeit:" - -#: admin/post-types/writepanels/writepanel-product_data.php:1069 -msgid "" -"Define the loops this product should be visible in. The product will still " -"be accessible directly." -msgstr "" -"Bestimmen Sie die Auflistungen (Loops), in denen das Produkt sichtbar sein " -"soll. Das Produkt wird dennoch immer direkt erreichbar bleiben." - -#: admin/post-types/writepanels/writepanel-product_data.php:1075 -msgid "Enable this option to feature this product." -msgstr "" -"Aktivieren Sie diese Option, um das Produkt zu empfehlen bzw. hervorzuheben " -"(Featured)." - -#: admin/post-types/writepanels/writepanel-product_data.php:1077 -msgid "Featured Product" -msgstr "Empfohlenes Produkt" - -#: admin/post-types/writepanels/writepanel-product_data.php:1081 -msgid "OK" -msgstr "OK" - -#: admin/post-types/writepanels/writepanel-product_images.php:43 -#: admin/post-types/writepanels/writepanel-product_images.php:103 -msgid "Delete image" -msgstr "Bild löschen" - -#: admin/post-types/writepanels/writepanel-product_images.php:43 -#: admin/post-types/writepanels/writepanel-product_images.php:103 -#: admin/woocommerce-admin-attributes.php:323 -msgid "Delete" -msgstr "Löschen" - -#: admin/post-types/writepanels/writepanel-product_images.php:54 -msgid "Add product gallery images" -msgstr "Produktgaleriebilder hinzufügen" - -#: admin/post-types/writepanels/writepanel-product_images.php:80 -msgid "Add Images to Product Gallery" -msgstr "Bilder zur Produktgalerie hinzufügen" - -#: admin/post-types/writepanels/writepanel-product_images.php:82 -msgid "Add to gallery" -msgstr "Zur Galerie hinzufügen" - -#: admin/post-types/writepanels/writepanels-init.php:47 -msgid "Product Gallery" -msgstr "Produktgalerie" - -#: admin/post-types/writepanels/writepanels-init.php:55 -msgid "Product Short Description" -msgstr "Kurzbeschreibung des Produkts" - -#: admin/post-types/writepanels/writepanels-init.php:64 -msgid "Reviews" -msgstr "Bewertungen" - -#: admin/post-types/writepanels/writepanels-init.php:68 -msgid "Order Data" -msgstr "Bestelldaten" - -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "Order Items" -msgstr "Bestellpositionen" - -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "" -"Note: if you edit quantities or remove items from the order you will need to " -"manually update stock levels." -msgstr "" -"Hinweis: Wenn Sie die Mengen ändern oder Produkte aus der Bestellung " -"entfernen, müssen Sie manuell die Lagermengen für die entsprechenden " -"Produkte anpassen!" - -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "Downloadable Product Permissions" -msgstr "Berechtigungen für herunterladbares Produkt" - -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "" -"Note: Permissions for order items will automatically be granted when the " -"order status changes to processing/completed." -msgstr "" -"Hinweis: Berechtigungen für bestellte Produkte werden automatisch erteilt, " -"wenn sich der Bestellstatuns von \"In Bearbeitung\" auf \"Fertiggestellt\" " -"ändert." - -#: admin/post-types/writepanels/writepanels-init.php:73 -msgid "Order Actions" -msgstr "Bestellaktionen" - -#: admin/post-types/writepanels/writepanels-init.php:81 -msgid "Coupon Data" -msgstr "Gutscheindaten" - -#: admin/post-types/writepanels/writepanels-init.php:100 -msgid "Coupon code" -msgstr "Gutscheincode" - -#: admin/post-types/writepanels/writepanels-init.php:101 -msgid "Product name" -msgstr "Produktname" - -#: admin/post-types/writepanels/writepanels-init.php:185 -msgid "Allow reviews." -msgstr "Rezensionen/ Bewertungen erlauben." - -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "" -"Allow trackbacks and pingbacks on this " -"page." -msgstr "" -"Trackbacks und Pingbacks auf dieser " -"Seite erlauben." - -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" -msgstr "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" - -#: admin/settings/settings-frontend-styles.php:23 -msgid "Styles" -msgstr "Stile" - -#: admin/settings/settings-frontend-styles.php:43 -msgid "Primary" -msgstr "Primärfarbe" - -#: admin/settings/settings-frontend-styles.php:43 -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "" -"Aufruf zum Handeln Buttons/ Preis-Slider/ Benuter-Interface der Ebenen-" -"Navigation" - -#: admin/settings/settings-frontend-styles.php:44 -msgid "Secondary" -msgstr "Sekundärfarbe" - -#: admin/settings/settings-frontend-styles.php:44 -msgid "Buttons and tabs" -msgstr "Buttons und Tabs" - -#: admin/settings/settings-frontend-styles.php:45 -msgid "Highlight" -msgstr "Hervorheben" - -#: admin/settings/settings-frontend-styles.php:45 -msgid "Price labels and Sale Flashes" -msgstr "Preistabellen und Angebotshinweise" - -#: admin/settings/settings-frontend-styles.php:46 -msgid "Content" -msgstr "Inhalt" - -#: admin/settings/settings-frontend-styles.php:46 -msgid "Your themes page background - used for tab active states" -msgstr "" -"Seiten-Hintergrund Ihres Themes - verwendet für den aktiven Tab-Zustand" - -#: admin/settings/settings-frontend-styles.php:47 -msgid "Subtext" -msgstr "Subtexte" - -#: admin/settings/settings-frontend-styles.php:47 -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "" -"Verwendet für bestimmte Texte und Anmerkungen - Breadcrumbs, Kleingedrucktes " -"etc." - -#: admin/settings/settings-frontend-styles.php:51 -msgid "" -"To edit colours woocommerce/assets/css/woocommerce-base.less " -"and woocommerce.css need to be writable. See the Codex for more " -"information." -msgstr "" -"Um die Farben bearbeiten zu können, müssen die Dateien woocommerce/" -"assets/css/woocommerce-base.less und woocommerce.css " -"beschreibbar sein. Schauen Sie im WordPress-Codex (Engl.) für weitere " -"Informationen dazu." - -#: admin/settings/settings-init.php:18 -msgid "Localisation" -msgstr "Sprachdateien" - -#: admin/settings/settings-init.php:19 -msgid "Use informal localisation for %s" -msgstr "" -"Informelle Übersetzungen für diese Sprache (%s) verwenden - \"DU\"-Anrede" - -#: admin/settings/settings-init.php:33 -msgid "General Options" -msgstr "Grundeinstellungen" - -#: admin/settings/settings-init.php:36 -msgid "Base Location" -msgstr "Basisland" - -#: admin/settings/settings-init.php:37 -msgid "" -"This is the base location for your business. Tax rates will be based on this " -"country." -msgstr "" -"Dies ist die regionale Basis (Stammland/ Basisland) für Ihren Shop. " -"Steuersätze werden auf diesem Land basieren." - -#: admin/settings/settings-init.php:46 -msgid "Currency" -msgstr "Währung" - -#: admin/settings/settings-init.php:47 -msgid "" -"This controls what currency prices are listed at in the catalog and which " -"currency gateways will take payments in." -msgstr "" -"Dies legt fest, in welcher Währung im Produktkatalog Preise gelistet werden " -"und in welcher Währung die entsprechenden Zahlungsweise Zahlungen " -"entgegennehmen." - -#: admin/settings/settings-init.php:58 -msgid "Allowed Countries" -msgstr "Erlaubte Länder" - -#: admin/settings/settings-init.php:59 -msgid "These are countries that you are willing to ship to." -msgstr "Dies sind die Länder, wohin Sie versenden wollen." - -#: admin/settings/settings-init.php:67 -msgid "All Countries" -msgstr "Alle Länder" - -#: admin/settings/settings-init.php:68 admin/settings/settings-init.php:73 -msgid "Specific Countries" -msgstr "Ausgewählte Länder" - -#: admin/settings/settings-init.php:84 -msgid "Store Notice" -msgstr "Shop-Hinweistext" - -#: admin/settings/settings-init.php:85 -msgid "Enable site-wide store notice text" -msgstr "Webseiten-weiten Shop-Hinweistext aktivieren" - -#: admin/settings/settings-init.php:92 -msgid "Store Notice Text" -msgstr "Hinweistext für den Shop (im Testmodus etc.)" - -#: admin/settings/settings-init.php:95 -msgid "" -"This is a demo store for testing purposes — no orders shall be " -"fulfilled." -msgstr "" -"Dies ist ein Demo-Shop, nur für Testzwecke — Bestellungen werden " -"nicht ausgeführt." - -#: admin/settings/settings-init.php:102 -msgid "Cart, Checkout and Accounts" -msgstr "Warenkorb, Kasse und Kundenkonten" - -#: admin/settings/settings-init.php:105 admin/woocommerce-admin-content.php:61 -#: admin/woocommerce-admin-content.php:76 -#: admin/woocommerce-admin-reports.php:63 -msgid "Coupons" -msgstr "Gutscheine" - -#: admin/settings/settings-init.php:106 -msgid "Enable the use of coupons" -msgstr "Verwendung von Gutscheinen aktivieren" - -#: admin/settings/settings-init.php:110 -msgid "Coupons can be applied from the cart and checkout pages." -msgstr "" -"Gutscheine können von den Seiten des Warenkorbs und der Kasse aus zugewiesen " -"werden." - -#: admin/settings/settings-init.php:114 -#: admin/woocommerce-admin-install.php:201 -#: admin/woocommerce-admin-status.php:307 -msgid "Checkout" -msgstr "Bezahlvorgang (Zur Kasse)" - -#: admin/settings/settings-init.php:115 -msgid "Enable guest checkout (no account required)" -msgstr "Gastbestellungen ermöglichen (kein Benutzerkonto erforderlich)" - -#: admin/settings/settings-init.php:123 -msgid "Enable customer note field on checkout" -msgstr "Hinweisfeld für Kunden beim Bezahlvorgang aktivieren" - -#: admin/settings/settings-init.php:131 -msgid "Force secure checkout" -msgstr "Sicheren Bezahlvorgang erzwingen" - -#: admin/settings/settings-init.php:137 -msgid "" -"Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -msgstr "" -"SSL-Verbindung (HTTPS) auf den Seiten des Bezahlvorgangs erzwingen (ein SSL-" -"Zertifikat für die Domain ist dann erforderlich!)." - -#: admin/settings/settings-init.php:141 -msgid "Un-force HTTPS when leaving the checkout" -msgstr "" -"HTTPS nicht mehr erzwingen, wenn der Bezahlvorgang (Kasse/ Checkout) " -"verlassen wird." - -#: admin/settings/settings-init.php:150 -msgid "Registration" -msgstr "Registrierung" - -#: admin/settings/settings-init.php:151 -msgid "Allow registration on the checkout page" -msgstr "Benutzerregistrierung auf der 'Bezahlen'-Seite erlauben" - -#: admin/settings/settings-init.php:159 -msgid "Allow registration on the \"My Account\" page" -msgstr "Benutzerregistrierung auf der 'Mein Konto'-Seite erlauben" - -#: admin/settings/settings-init.php:167 -msgid "Register using the email address for the username" -msgstr "Beim Registrieren die E-Mail-Adresse als Benutzername verwenden" - -#: admin/settings/settings-init.php:175 -msgid "Customer Accounts" -msgstr "Kunden-Benutzerkonten" - -#: admin/settings/settings-init.php:176 -msgid "Prevent customers from accessing WordPress admin" -msgstr "Kunden den Zugang zum WordPress-Adminbereich verwehren" - -#: admin/settings/settings-init.php:184 -msgid "Clear cart when logging out" -msgstr "Warenkorb beim Abmelden leeren" - -#: admin/settings/settings-init.php:192 -msgid "Allow customers to repurchase orders from their account page" -msgstr "" -"Es Kunden erlauben, Bestellungen von ihrem Kundenkonto aus erneut zu " -"bestellen" - -#: admin/settings/settings-init.php:201 -msgid "Styles and Scripts" -msgstr "Stile und Skripte" - -#: admin/settings/settings-init.php:204 -msgid "Styling" -msgstr "Styling" - -#: admin/settings/settings-init.php:205 -msgid "Enable WooCommerce CSS" -msgstr "WooCommerce-eigene CSS-Stile aktivieren" - -#: admin/settings/settings-init.php:216 -msgid "Scripts" -msgstr "Skripte" - -#: admin/settings/settings-init.php:217 -msgid "Enable Lightbox" -msgstr "Lightbox-Funktion aktivieren" - -#: admin/settings/settings-init.php:220 -msgid "" -"Include WooCommerce's lightbox. Product gallery images and the add review " -"form will open in a lightbox." -msgstr "" -"WooCommerce-eigene Lightbox (prettyPhoto) verwenden. Dann werden " -"Produktgaleriebilder und das Schreiben einer neuen Produktbewertung in einer " -"Lightbox geöffnet." - -#: admin/settings/settings-init.php:226 -msgid "Enable enhanced country select boxes" -msgstr "Erweiterte Länderauswahl-Boxen aktivieren" - -#: admin/settings/settings-init.php:231 -msgid "This will enable a script allowing the country fields to be searchable." -msgstr "" -"Dies wird ein Skript aktivieren, welches die Länder-Felder durchsuchbar " -"macht." - -#: admin/settings/settings-init.php:236 -msgid "Downloadable Products" -msgstr "Herunterladbare Produkte" - -#: admin/settings/settings-init.php:239 -msgid "File Download Method" -msgstr "Methode zum Herunterladen der Datei" - -#: admin/settings/settings-init.php:240 -msgid "" -"Forcing downloads will keep URLs hidden, but some servers may serve large " -"files unreliably. If supported, X-Accel-Redirect/ X-" -"Sendfile can be used to serve downloads instead (server requires " -"mod_xsendfile)." -msgstr "" -"Downloads zu erzwingen, belässt die URLs im verborgenen Zustand, doch einige " -"Webserver stellen grosse Dateien nur unzuverlässig bereit. Falls unterstützt, " -"können X-Accel-Redirect/ X-Sendfile verwendet " -"werden, um damit die Downloads bereitzustellen (der Webserver erfordert dann " -"das Modul mod_xsendfile)." - -#: admin/settings/settings-init.php:248 -msgid "Force Downloads" -msgstr "Downloads erzwingen" - -#: admin/settings/settings-init.php:249 -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "X-Accel-Redirect/ X-Sendfile" - -#: admin/settings/settings-init.php:250 -msgid "Redirect only" -msgstr "Nur weiterleiten" - -#: admin/settings/settings-init.php:255 -msgid "Access Restriction" -msgstr "Zugriffsbeschränkung" - -#: admin/settings/settings-init.php:256 -msgid "Downloads require login" -msgstr "Downloads erfordern eine Anmeldung" - -#: admin/settings/settings-init.php:260 -msgid "This setting does not apply to guest purchases." -msgstr "Diese Einstellung betrifft nicht die Gast-Bestellungen!" - -#: admin/settings/settings-init.php:265 -msgid "Grant access to downloadable products after payment" -msgstr "Zugriff auf herunterladbare Produkte nach der Zahlung gewähren" - -#: admin/settings/settings-init.php:269 -msgid "" -"Enable this option to grant access to downloads when orders are \"processing" -"\", rather than \"completed\"." -msgstr "" -"Aktivieren Sie diese Einstellung, um den Zugriff auf Download-Dateien schon " -"zu gewähren, wenn deren Bestellungen noch \"In Bearbeitung\" sind - statt " -"bereits \"Fertiggestellt\"." - -#: admin/settings/settings-init.php:285 -msgid "" -"Note: The shop page has children - child pages will not work if you enable " -"this option." -msgstr "" -"Hinweis: Die Shop-Seite hat untergeordnete Seiten (Kindseiten) - Kindseiten " -"werden nicht funktionieren, wenn Sie die Option aktivieren." - -#: admin/settings/settings-init.php:290 -msgid "Page Setup" -msgstr "Seiten-Einrichtung" - -#: admin/settings/settings-init.php:292 -msgid "" -"Set up core WooCommerce pages here, for example the base page. The base page " -"can also be used in your %sproduct permalinks%s." -msgstr "" -"WooCommerce Basisseiten hier anlegen, zum Beispiel die Shop-Basisseite. Die " -"Shop-Basisseite kann auch in Ihren %sProdukt-Permalinks%s verwendet werden." - -#: admin/settings/settings-init.php:297 -msgid "Shop Base Page" -msgstr "Shop-Basisseite" - -#: admin/settings/settings-init.php:298 -msgid "" -"This sets the base page of your shop - this is where your product archive " -"will be." -msgstr "" -"Dies legt die Basisseite Ihres Shops fest - dort wird auch Ihr Produktarchiv " -"erscheinen." - -#: admin/settings/settings-init.php:308 -msgid "Terms Page ID" -msgstr "'AGB' Seite" - -#: admin/settings/settings-init.php:309 -msgid "" -"If you define a \"Terms\" page the customer will be asked if they accept " -"them when checking out." -msgstr "" -"Wenn Sie eine \"AGB\"-Seite festlegen, wird der Kunde gebeten, diese zu " -"akzeptieren, wenn die Kasse-/ Bezahlen-Seite aufgerufen wird." - -#: admin/settings/settings-init.php:320 -msgid "Shop Pages" -msgstr "Shop-Seiten" - -#: admin/settings/settings-init.php:320 -msgid "" -"The following pages need selecting so that WooCommerce knows where they are. " -"These pages should have been created upon installation of the plugin, if not " -"you will need to create them." -msgstr "" -"Die folgenden Seiten brauchen eine Auswahl/ Festlegung, damit WooCommerce " -"sie zuordnen kann. Diese Seiten sollten während der Plugin-Installation " -"erstellt worden sein. Falls nicht, müssen Sie diese erstellen." - -#: admin/settings/settings-init.php:323 -msgid "Cart Page" -msgstr "'Warenkorb' Seite" - -#: admin/settings/settings-init.php:324 -msgid "Page contents: [woocommerce_cart]" -msgstr "Die Seite muss den Shortcode [woocommerce_cart] enthalten" - -#: admin/settings/settings-init.php:334 -msgid "Checkout Page" -msgstr "'Zur Kasse' Seite" - -#: admin/settings/settings-init.php:335 -msgid "Page contents: [woocommerce_checkout]" -msgstr "" -"Die Seite muss den Shortcode [woocommerce_checkout] enthalten" - -#: admin/settings/settings-init.php:345 -msgid "Pay Page" -msgstr "'Bezahlen' Seite" - -#: admin/settings/settings-init.php:346 -msgid "Page contents: [woocommerce_pay] Parent: \"Checkout\"" -msgstr "" -"Die Seite muss den Shortcode [woocommerce_pay] enthalten - " -"übergeordnet: \"Kasse\"" - -#: admin/settings/settings-init.php:356 -msgid "Thanks Page" -msgstr "'Danke' Seite" - -#: admin/settings/settings-init.php:357 -msgid "Page contents: [woocommerce_thankyou] Parent: \"Checkout\"" -msgstr "" -"Die Seite muss den Shortcode [woocommerce_thankyou] enthalten - " -"übergeordnet: \"Kasse\"" - -#: admin/settings/settings-init.php:367 -msgid "My Account Page" -msgstr "'Mein Konto' Seite" - -#: admin/settings/settings-init.php:368 -msgid "Page contents: [woocommerce_my_account]" -msgstr "" -"Die Seite muss den Shortcode [woocommerce_my_account] enthalten" - -#: admin/settings/settings-init.php:378 -msgid "Edit Address Page" -msgstr "'Adresse bearbeiten' Seite" - -#: admin/settings/settings-init.php:379 -msgid "Page contents: [woocommerce_edit_address] Parent: \"My Account\"" -msgstr "" -"Die Seite muss den Shortcode [woocommerce_edit_address] " -"enthalten - übergeordnet: \"Mein Konto\"" - -#: admin/settings/settings-init.php:389 -msgid "View Order Page" -msgstr "'Bestellung ansehen' Seite" - -#: admin/settings/settings-init.php:390 -msgid "Page contents: [woocommerce_view_order] Parent: \"My Account\"" -msgstr "" -"Die Seite muss den Shortcode [woocommerce_view_order] enthalten " -"- übergeordnet: \"Mein Konto\"" - -#: admin/settings/settings-init.php:400 -msgid "Change Password Page" -msgstr "'Passwort ändern' Seite" - -#: admin/settings/settings-init.php:401 -msgid "Page contents: [woocommerce_change_password] Parent: \"My Account\"" -msgstr "" -"Die Seite muss den Shortcode [woocommerce_change_password] " -"enthalten - übergeordnet: \"Mein Konto\"" - -#: admin/settings/settings-init.php:411 -msgid "Logout Page" -msgstr "'Abmelden' Seite" - -#: admin/settings/settings-init.php:412 -msgid "Parent: \"My Account\"" -msgstr "Übergeordnet: 'Mein Konto'" - -#: admin/settings/settings-init.php:422 -msgid "Lost Password Page" -msgstr "'Passwort verloren' Seite" - -#: admin/settings/settings-init.php:423 -msgid "Page contents: [woocommerce_lost_password] Parent: \"My Account\"" -msgstr "" -"Seiteninhalt: [woocommerce_lost_password] — übergeordnet: " -"\"Mein Konto\"" - -#: admin/settings/settings-init.php:439 -msgid "Catalog Options" -msgstr "Katalog-Einstellungen" - -#: admin/settings/settings-init.php:442 -msgid "Default Product Sorting" -msgstr "Standard-Produktsortierung" - -#: admin/settings/settings-init.php:443 -msgid "This controls the default sort order of the catalog." -msgstr "Dies kontrolliert die Standardsortierung des Produktkatalogs." - -#: admin/settings/settings-init.php:449 -msgid "Default sorting (custom ordering + name)" -msgstr "Standardsortierung (benutzerdefinierte Reihenfolge + Name)" - -#: admin/settings/settings-init.php:450 -msgid "Popularity (sales)" -msgstr "Beliebtheit (Verkäufe)" - -#: admin/settings/settings-init.php:451 -msgid "Average Rating" -msgstr "Durchschnittliche Bewertung" - -#: admin/settings/settings-init.php:452 -msgid "Sort by most recent" -msgstr "Nach Neuestem Produkt" - -#: admin/settings/settings-init.php:453 -msgid "Sort by price (asc)" -msgstr "Nach Preis (aufsteigend)" - -#: admin/settings/settings-init.php:454 -msgid "Sort by price (desc)" -msgstr "Nach Preis (absteigend)" - -#: admin/settings/settings-init.php:460 -msgid "Shop Page Display" -msgstr "Shop-Seitenanzeige" - -#: admin/settings/settings-init.php:461 -msgid "This controls what is shown on the product archive." -msgstr "Dies legt fest, was auf den Produktarchiven angezeigt wird." - -#: admin/settings/settings-init.php:467 admin/settings/settings-init.php:482 -msgid "Show products" -msgstr "Produkte anzeigen" - -#: admin/settings/settings-init.php:468 admin/settings/settings-init.php:483 -msgid "Show subcategories" -msgstr "Unterkategorien anzeigen" - -#: admin/settings/settings-init.php:469 admin/settings/settings-init.php:484 -msgid "Show both" -msgstr "Beide anzeigen" - -#: admin/settings/settings-init.php:475 -msgid "Default Category Display" -msgstr "Standard Kategorieanzeige" - -#: admin/settings/settings-init.php:476 -msgid "This controls what is shown on category archives." -msgstr "" -"Dies legt fest, was auf den Seiten von Produktkategoriearchiven angezeigt " -"wird." - -#: admin/settings/settings-init.php:490 -msgid "Add to cart" -msgstr "In den Warenkorb" - -#: admin/settings/settings-init.php:491 -msgid "Redirect to the cart page after successful addition" -msgstr "Zum Warenkorb weiterleiten, nach erfolgreichem Hinzufügen" - -#: admin/settings/settings-init.php:499 -msgid "Enable AJAX add to cart buttons on archives" -msgstr "AJAX-Warenkorb-Buttons auf Produktarchivseiten aktivieren" - -#: admin/settings/settings-init.php:508 -msgid "" -"The following options affect the fields available on the edit product page." -msgstr "" -"Die folgenden Einstellungen beeinflussen die Felder, welche auf der Produkt-" -"bearbeiten-Seite verfügbar sind." - -#: admin/settings/settings-init.php:511 -msgid "Product Fields" -msgstr "Produktfelder" - -#: admin/settings/settings-init.php:512 -msgid "Enable the SKU field for products" -msgstr "Das Art.-Nr.-Feld (SKU) für Produkte aktivieren" - -#: admin/settings/settings-init.php:520 -msgid "" -"Enable the weight field for products (some shipping methods " -"may require this)" -msgstr "" -"Das Gewichts-Feld für Produkte aktivieren (manche " -"Versandmethoden könnten dies erfordern)." - -#: admin/settings/settings-init.php:528 -msgid "" -"Enable the dimension fields for products (some shipping " -"methods may require this)" -msgstr "" -"Das Grössen-Feld für Produkte aktivieren (manche " -"Versandmethoden könnten dies erfordern)." - -#: admin/settings/settings-init.php:536 -msgid "" -"Show weight and dimension values on the Additional " -"Information tab" -msgstr "" -"Die Werte für Gewicht und Grösse unter dem Tab " -"Zusätzliche Informationen anzeigen" - -#: admin/settings/settings-init.php:544 -msgid "Weight Unit" -msgstr "Gewichtseinheit" - -#: admin/settings/settings-init.php:545 -msgid "This controls what unit you will define weights in." -msgstr "Dies legt fest, in welcher Einheit Sie Gewichte definieren." - -#: admin/settings/settings-init.php:551 -msgid "kg" -msgstr "Kilogramm (Kg)" - -#: admin/settings/settings-init.php:552 -msgid "g" -msgstr "g" - -#: admin/settings/settings-init.php:553 -msgid "lbs" -msgstr "Pfund" - -#: admin/settings/settings-init.php:554 -msgid "oz" -msgstr "oz" - -#: admin/settings/settings-init.php:560 -msgid "Dimensions Unit" -msgstr "Grösseneinheit" - -#: admin/settings/settings-init.php:561 -msgid "This controls what unit you will define lengths in." -msgstr "" -"Dies legt fest, in welcher Einheit Sie die Grösse bzw. Länge definieren." - -#: admin/settings/settings-init.php:568 -msgid "cm" -msgstr "Zentimenter (cm)" - -#: admin/settings/settings-init.php:569 -msgid "mm" -msgstr "mm" - -#: admin/settings/settings-init.php:570 -msgid "in" -msgstr "Zoll (Inch)" - -#: admin/settings/settings-init.php:571 -msgid "yd" -msgstr "Meter (m)" - -#: admin/settings/settings-init.php:577 -msgid "Product Ratings" -msgstr "Produktbewertungen" - -#: admin/settings/settings-init.php:578 -msgid "Enable ratings on reviews" -msgstr "Bewertungen bei Rezensionen aktivieren" - -#: admin/settings/settings-init.php:587 -msgid "Ratings are required to leave a review" -msgstr "Eine Wertung ist erforderlich, um eine Produktbewertung abzugeben" - -#: admin/settings/settings-init.php:596 -msgid "Show \"verified owner\" label for customer reviews" -msgstr "\"Verifizierter Kauf\" Beschriftung für Kundenbewertungen anzeigen" - -#: admin/settings/settings-init.php:606 -msgid "Pricing Options" -msgstr "Preisoptionen" - -#: admin/settings/settings-init.php:606 -msgid "The following options affect how prices are displayed on the frontend." -msgstr "" -"Die folgenden Einstellungen beeinflussen, wie Preise in der Besucheransicht " -"(Frontend) angezeigt werden." - -#: admin/settings/settings-init.php:609 -msgid "Currency Position" -msgstr "Position der Währung" - -#: admin/settings/settings-init.php:610 -msgid "This controls the position of the currency symbol." -msgstr "Dies legt die Position des Währungssymbols fest." - -#: admin/settings/settings-init.php:616 -msgid "Left" -msgstr "Links" - -#: admin/settings/settings-init.php:617 -msgid "Right" -msgstr "Rechts" - -#: admin/settings/settings-init.php:618 -msgid "Left (with space)" -msgstr "Links (mit Abstand)" - -#: admin/settings/settings-init.php:619 -msgid "Right (with space)" -msgstr "Rechts (mit Abstand)" - -#: admin/settings/settings-init.php:625 -msgid "Thousand Separator" -msgstr "Tausender-Trennzeichen" - -#: admin/settings/settings-init.php:626 -msgid "This sets the thousand separator of displayed prices." -msgstr "" -"Dies legt das Tausender-Trennzeichen fest, welches bei der Preisanzeige " -"verwendet wird." - -#: admin/settings/settings-init.php:635 -msgid "Decimal Separator" -msgstr "Zehner-Trennzeichen" - -#: admin/settings/settings-init.php:636 -msgid "This sets the decimal separator of displayed prices." -msgstr "" -"Dies legt das Trennzeichen für Nachkommastellen fest, welches für die " -"Preisanzeige verwendet wird." - -#: admin/settings/settings-init.php:645 -msgid "Number of Decimals" -msgstr "Anzahl der Dezimalstellen" - -#: admin/settings/settings-init.php:646 -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "" -"Dies legt die Zahl der Nachkommastellen fest, die bei der Preisanzeige " -"erscheinen werden." - -#: admin/settings/settings-init.php:659 -msgid "Trailing Zeros" -msgstr "Nachfolgende Nullen" - -#: admin/settings/settings-init.php:660 -msgid "" -"Remove zeros after the decimal point. e.g. $10.00 becomes " -"$10" -msgstr "" -"Nullen nach dem Komma/ Punkt entfernen. Z.B.: 10.00 € wird zu " -"10 €" - -#: admin/settings/settings-init.php:668 -msgid "Image Options" -msgstr "Bildoptionen" - -#: admin/settings/settings-init.php:668 -msgid "" -"These settings affect the actual dimensions of images in your catalog - the " -"display on the front-end will still be affected by CSS styles. After " -"changing these settings you may need to regenerate your " -"thumbnails." -msgstr "" -"Diese Einstellungen wirken sich direkt auf die tatsächlichen Bildgrössen in " -"Ihrem Produktkatalog aus. Die Anzeige in der Besucheransicht (Frontend) wird " -"dennoch (auch) von den CSS-Stilen beeinflusst. Nachdem diese Einstellungen " -"hier geändert wurden, ist es empfehlenswert, die Bilder bzw. Vorschaubilder " -"neu erstellen zu lassen. Dazu wird das freie " -"WordPress-Plugin 'Regenerate Thumbnails' empfohlen." - -#: admin/settings/settings-init.php:671 -msgid "Catalog Images" -msgstr "Katalogbilder" - -#: admin/settings/settings-init.php:672 -msgid "This size is usually used in product listings" -msgstr "Diese Grösse wird üblicherweise in Produktauflistungen verwendet" - -#: admin/settings/settings-init.php:685 -msgid "Single Product Image" -msgstr "Einzelnes Produktbild" - -#: admin/settings/settings-init.php:686 -msgid "This is the size used by the main image on the product page." -msgstr "" -"Dies ist die Grösse, die vom Hauptproduktbild auf der Produktseite verwendet " -"wird." - -#: admin/settings/settings-init.php:699 -msgid "Product Thumbnails" -msgstr "Produktvorschaubilder" - -#: admin/settings/settings-init.php:700 -msgid "" -"This size is usually used for the gallery of images on the product page." -msgstr "" -"Diese Grösse wird üblicherweise für die Produktbildergalerie auf der " -"Produktseite verwendet." - -#: admin/settings/settings-init.php:719 -msgid "Inventory Options" -msgstr "Bestand/ Lager - Einstellungen" - -#: admin/settings/settings-init.php:722 -msgid "Manage Stock" -msgstr "Lager verwalten?" - -#: admin/settings/settings-init.php:723 -msgid "Enable stock management" -msgstr "Lagerverwaltung aktiveren" - -#: admin/settings/settings-init.php:730 -msgid "Hold Stock (minutes)" -msgstr "Lager anhalten (Minuten)" - -#: admin/settings/settings-init.php:731 -msgid "" -"Hold stock (for unpaid orders) for x minutes. When this limit is reached, " -"the pending order will be cancelled. Leave blank to disable." -msgstr "" -"Das Lager für x Minuten \"anhalten\" - für unbezahlte Bestellungen. Wenn " -"dieses Zeitlimit erreicht ist, wird die schwebende Bestellung abgebrochen. " -"Frei lassen, um diese Funktion zu deaktivieren." - -#: admin/settings/settings-init.php:743 -msgid "Notifications" -msgstr "Benachrichtigungen" - -#: admin/settings/settings-init.php:744 -msgid "Enable low stock notifications" -msgstr "Benachrichtigung bei geringer Lagermenge aktivieren" - -#: admin/settings/settings-init.php:752 -msgid "Enable out of stock notifications" -msgstr "Benachrichtigung bei 'vergriffen' aktivieren" - -#: admin/settings/settings-init.php:760 -msgid "Notification Recipient" -msgstr "Empfänger der Benachrichtigung" - -#: admin/settings/settings-init.php:768 -msgid "Low Stock Threshold" -msgstr "Schwellenwert: Geringer Bestand" - -#: admin/settings/settings-init.php:781 -msgid "Out Of Stock Threshold" -msgstr "Schwellenwert: Nicht mehr am Lager" - -#: admin/settings/settings-init.php:794 -msgid "Out Of Stock Visibility" -msgstr "'Vergriffen'-Sichtbarkeit" - -#: admin/settings/settings-init.php:795 -msgid "Hide out of stock items from the catalog" -msgstr "Vergriffene Produkte im Produkatalog verbergen" - -#: admin/settings/settings-init.php:802 -msgid "Stock Display Format" -msgstr "Lager-Anzeigeformat" - -#: admin/settings/settings-init.php:803 -msgid "This controls how stock is displayed on the frontend." -msgstr "" -"Dies kontrolliert, wie die Lagermenge in der Besucheransicht (Frontend) " -"angezeigt wird." - -#: admin/settings/settings-init.php:809 -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "Lagermenge immer anzeigen, z.B. \"12 am Lager\"" - -#: admin/settings/settings-init.php:810 -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "" -"Die Lagermenge nur anzeigen, wenn wenig vorrätig ist, z.B. \"Nur 2 am Lager" -"\" vs. \"Am Lager\"" - -#: admin/settings/settings-init.php:811 -msgid "Never show stock amount" -msgstr "Lagermenge niemals anzeigen" - -#: admin/settings/settings-init.php:823 -#: admin/woocommerce-admin-settings.php:292 -msgid "Shipping Options" -msgstr "Versandoptionen" - -#: admin/settings/settings-init.php:826 -msgid "Shipping Calculations" -msgstr "Versandberechnungen" - -#: admin/settings/settings-init.php:827 -msgid "Enable shipping" -msgstr "Versandkosten aktivieren" - -#: admin/settings/settings-init.php:835 -msgid "Enable the shipping calculator on the cart page" -msgstr "Aktivieren Sie den Versandrechner auf der Warenkorb-Seite" - -#: admin/settings/settings-init.php:843 -msgid "Hide shipping costs until an address is entered" -msgstr "Versandkosten verbergen, bis eine Anschrift eingegeben wird" - -#: admin/settings/settings-init.php:851 -msgid "Shipping Method Display" -msgstr "Versandmethodenanzeige" - -#: admin/settings/settings-init.php:852 -msgid "" -"This controls how multiple shipping methods are displayed on the frontend." -msgstr "" -"Dies kontrolliert, wie mehrere Versandmethoden in der Besucheransicht " -"(Frontend) angezeigt werden." - -#: admin/settings/settings-init.php:858 -msgid "Radio buttons" -msgstr "Radio-Buttons" - -#: admin/settings/settings-init.php:859 -msgid "Select box" -msgstr "Auswahlfeld" - -#: admin/settings/settings-init.php:865 -msgid "Shipping Destination" -msgstr "Versandziel" - -#: admin/settings/settings-init.php:866 -msgid "Only ship to the users billing address" -msgstr "Nur an die Versandanschrift des Kunden versenden" - -#: admin/settings/settings-init.php:874 -msgid "Ship to billing address by default" -msgstr "Standardmässig an die Rechnungsanschrift versenden" - -#: admin/settings/settings-init.php:882 -msgid "Collect shipping address even when not required" -msgstr "Versandanschrift aufzeichnen, auch wenn diese nicht erforderlich ist" - -#: admin/settings/settings-init.php:900 -#: admin/woocommerce-admin-settings.php:188 -#: admin/woocommerce-admin-settings.php:329 -msgid "Payment Gateways" -msgstr "Zahlungsweisen" - -#: admin/settings/settings-init.php:900 -msgid "" -"Installed payment gateways are displayed below. Drag and drop payment " -"gateways to control their display order on the checkout." -msgstr "" -"Die installierten Zahlungsweisen sind unten aufgelistet. Ziehen Sie via Drag " -"& Drop die ausgewählten Zahlungsweisen in die gewünschte Reihenfolge für " -"den Bezahlvorgang (in der Besucheransicht)." - -#: admin/settings/settings-init.php:918 -#: admin/woocommerce-admin-settings.php:222 -msgid "Tax Options" -msgstr "Mehrwertsteueroptionen" - -#: admin/settings/settings-init.php:921 -msgid "Enable Taxes" -msgstr "Mehrwertsteuer aktivieren" - -#: admin/settings/settings-init.php:922 -msgid "Enable taxes and tax calculations" -msgstr "Mehrwertsteuer und deren Berechnung aktivieren" - -#: admin/settings/settings-init.php:929 -msgid "Prices Entered With Tax" -msgstr "Preise werden inklusive Mehrwertsteuer eingegeben" - -#: admin/settings/settings-init.php:933 -msgid "" -"This option is important as it will affect how you input prices. Changing it " -"will not update existing products." -msgstr "" -"Diese Einstellung ist sehr wichtig, da sie beeinflusst, wie die Preise " -"eingegeben werden. ACHTUNG: Eine Änderung hier, wird nicht " -"bereits bestehende Produkte aktualiseren!" - -#: admin/settings/settings-init.php:935 -msgid "Yes, I will enter prices inclusive of tax" -msgstr "JA, ich gebe die Produktpreise inklusive (mit) Mehrwertsteuer ein." - -#: admin/settings/settings-init.php:936 -msgid "No, I will enter prices exclusive of tax" -msgstr "NEIN, ich gebe die Produktpreise exklusive (ohne) Mehrwertsteuer ein." - -#: admin/settings/settings-init.php:941 -msgid "Calculate Tax Based On:" -msgstr "Mwst. berechnen, basierend auf:" - -#: admin/settings/settings-init.php:943 -msgid "This option determines which address is used to calculate tax." -msgstr "" -"Diese Option legt fest, welche Anschrift für das Berechnen der Steuer " -"herangezogen wird." - -#: admin/settings/settings-init.php:947 -msgid "Customer shipping address" -msgstr "Versandanschrift des Kunden" - -#: admin/settings/settings-init.php:948 -msgid "Customer billing address" -msgstr "Rechnungsanschrift des Kunden" - -#: admin/settings/settings-init.php:949 admin/settings/settings-init.php:961 -msgid "Shop base address" -msgstr "Basisanschrift des Shops (Basisland)" - -#: admin/settings/settings-init.php:954 -msgid "Default Customer Address:" -msgstr "Standard-Kundenanschrift:" - -#: admin/settings/settings-init.php:956 -msgid "" -"This option determines the customers default address (before they input " -"their own)." -msgstr "" -"Diese Option legt die Standardanschrift des Kunden fest (bevor dieser seine " -"eigene eingibt)." - -#: admin/settings/settings-init.php:960 -msgid "No address" -msgstr "Keine Anschrift" - -#: admin/settings/settings-init.php:966 -msgid "Shipping Tax Class:" -msgstr "Versandsteuerklasse:" - -#: admin/settings/settings-init.php:967 -msgid "" -"Optionally control which tax class shipping gets, or leave it so shipping " -"tax is based on the cart items themselves." -msgstr "" -"Optional festlegen, welche Steuerklasse für den Versand gilt. Oder lassen " -"Sie dies frei, damit die Versandsteuer auf den Warenkorb-Elementen selbst " -"basiert." - -#: admin/settings/settings-init.php:972 -msgid "Shipping tax class based on cart items" -msgstr "Versand-Steuerklasse basierend auf Warenkorb-Elementen" - -#: admin/settings/settings-init.php:977 -msgid "Rounding" -msgstr "Rundung" - -#: admin/settings/settings-init.php:978 -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "" -"Steuern auf der Ebene der Zwischensumme runden, statt pro Position zu runden" - -#: admin/settings/settings-init.php:985 -msgid "Additional Tax Classes" -msgstr "Zusätzliche Steuerklassen" - -#: admin/settings/settings-init.php:986 -msgid "" -"List additonal tax classes below (1 per line). This is in addition to the " -"default Standard Rate. Tax classes can be assigned to products." -msgstr "" -"Listen Sie unten zusätzliche Steuerklassen auf (1 pro Zeile). Dies ist " -"zusätzlich zum standardmässigen Regelsatz. Steuerklassen können " -"Produkten zugewiesen werden." - -#: admin/settings/settings-init.php:990 -msgid "Reduced Rate%sZero Rate" -msgstr "Ermässigter Steuersatz%sSteuerfrei" - -#: admin/settings/settings-init.php:994 -msgid "Display prices during cart/checkout:" -msgstr "Preisanzeige im Warenkorb und während des Bezahlvorgangs:" - -#: admin/settings/settings-init.php:999 -msgid "Including tax" -msgstr "Inklusive Mehrwertsteuer" - -#: admin/settings/settings-init.php:1000 -msgid "Excluding tax" -msgstr "Exklusive Mehrwertsteuer" - -#: admin/settings/settings-init.php:1012 -msgid "Email Sender Options" -msgstr "E-Mail-Absender Einstellungen" - -#: admin/settings/settings-init.php:1012 -msgid "" -"The following options affect the sender (email address and name) used in " -"WooCommerce emails." -msgstr "" -"Die folgenden Einstellungen beeinflussen den Absender (E-Mail-Adresse und " -"Name), der in WooCommerce-E-Mails verwendet wird." - -#: admin/settings/settings-init.php:1015 -msgid "\"From\" Name" -msgstr "\"Absender\"-Name" - -#: admin/settings/settings-init.php:1024 -msgid "\"From\" Email Address" -msgstr "\"Absender\"-E-Mail-Adresse" - -#: admin/settings/settings-init.php:1037 -msgid "Email Template" -msgstr "E-Mail-Template" - -#: admin/settings/settings-init.php:1037 -msgid "" -"This section lets you customise the WooCommerce emails. Click here to preview your email template. For more " -"advanced control copy woocommerce/templates/emails/ to " -"yourtheme/woocommerce/emails/." -msgstr "" -"In diesem Bereich können Sie die WooCommerce E-Mails anpassen. Klicken Sie hier für eine Vorschau Ihrer E-Mail-Vorlage." -". Für erweiterte Anpassungsmöglichkeiten müssen Sie den folgenden Plugin-" -"Unterordner woocommerce/templates/emails/ in Ihr Theme bzw. " -"Child Theme kopieren, z.B. mit solch einem Pfad: ihr-theme/" -"woocommmerce/emails/." - -#: admin/settings/settings-init.php:1040 -msgid "Header Image" -msgstr "Kopfzeilenbild (Header)" - -#: admin/settings/settings-init.php:1041 -msgid "" -"Enter a URL to an image you want to show in the email's header. Upload your " -"image using the media uploader." -msgstr "" -"Geben Sie eine URL zu einem Bild ein, welches Sie im Kopf der E-Mail " -"anzeigen wollen. Laden Sie Ihr Bild über die WordPress " -"Mediathek hoch." - -#: admin/settings/settings-init.php:1049 -msgid "Email Footer Text" -msgstr "E-Mail-Fusszeilentext" - -#: admin/settings/settings-init.php:1050 -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "Text, der in der Fusszeile von WooCommerce E-Mails erscheint." - -#: admin/settings/settings-init.php:1054 -msgid "Powered by WooCommerce" -msgstr "Angetrieben von WooCommerce" - -#: admin/settings/settings-init.php:1058 -msgid "Base Colour" -msgstr "Basisfarbe" - -#: admin/settings/settings-init.php:1059 -msgid "" -"The base colour for WooCommerce email templates. Default #557da1." -msgstr "" -"Die Basisfarbe für WooCommerce E-Mail-Vorlagen. Standard #557da1." - -#: admin/settings/settings-init.php:1067 -msgid "Background Colour" -msgstr "Hintergrundfarbe" - -#: admin/settings/settings-init.php:1068 -msgid "" -"The background colour for WooCommerce email templates. Default " -"#f5f5f5." -msgstr "" -"Die Hintergrundfarbe für die WooCommerce E-Mail-Templates. Standard: " -"#f5f5f5." - -#: admin/settings/settings-init.php:1076 -msgid "Email Body Background Colour" -msgstr "Hintergrundfarbe des E-Mail-Inhalts (Body)" - -#: admin/settings/settings-init.php:1077 -msgid "The main body background colour. Default #fdfdfd." -msgstr "Die Haupt-Hintergrundfarbe (Body). Standard: #fdfdfd." - -#: admin/settings/settings-init.php:1085 -msgid "Email Body Text Colour" -msgstr "Textfarbe des E-Mail-Inhalts (Body)" - -#: admin/settings/settings-init.php:1086 -msgid "The main body text colour. Default #505050." -msgstr "Die Haupt-Textfarbe (Body). Standard: #505050." - -#: admin/settings/settings-payment-gateways.php:27 -#: admin/settings/settings-shipping-methods.php:29 -#: admin/woocommerce-admin-init.php:757 -#: admin/woocommerce-admin-taxonomies.php:27 -#: admin/woocommerce-admin-taxonomies.php:121 -msgid "Default" -msgstr "Standard" - -#: admin/settings/settings-payment-gateways.php:28 -msgid "Gateway" -msgstr "Zahlungsweise" - -#: admin/settings/settings-payment-gateways.php:45 -msgid "Gateway ID" -msgstr "ID der Zahlungsweise" - -#: admin/settings/settings-shipping-methods.php:23 -msgid "Shipping Methods" -msgstr "Versandmethoden" - -#: admin/settings/settings-shipping-methods.php:25 -msgid "Drag and drop methods to control their display order." -msgstr "Methoden via Drag & Drop in die gewünschte Reihenfolge ziehen." - -#: admin/settings/settings-shipping-methods.php:30 -msgid "Shipping Method" -msgstr "Versandmethode" - -#: admin/settings/settings-shipping-methods.php:46 -msgid "Method ID" -msgstr "ID der Methode" - -#: admin/settings/settings-tax-rates.php:29 -msgid "Tax Rates for the \"%s\" Class" -msgstr "Steuersätze für die \"%s\" Klasse" - -#: admin/settings/settings-tax-rates.php:30 -msgid "" -"Define tax rates for countries and states below. See here " -"for available alpha-2 country codes." -msgstr "" -"Steuersätze für Länder bzw. Bundesstaaten unten festlegen. Schauen Sie hier für verfügbare Alpha-2 Ländercodes." - -#: admin/settings/settings-tax-rates.php:36 -msgid "Country Code" -msgstr "Ländercode" - -#: admin/settings/settings-tax-rates.php:36 -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "" -"Ein Ländercode, bestehend aus 2 Buchstaben, zum Beispiel DE (Deutschland). " -"Frei lassen, um dies nicht zu verwenden." - -#: admin/settings/settings-tax-rates.php:38 -msgid "State Code" -msgstr "Bundesstaaten-Code" - -#: admin/settings/settings-tax-rates.php:38 -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "" -"Ein Bundesstaaten-Code, bestehend aus 2 Buchstaben, zum Beispiel AL (für " -"Alabama). Frei lassen, um dies nicht zu verwenden." - -#: admin/settings/settings-tax-rates.php:40 -#: admin/settings/settings-tax-rates.php:217 -msgid "ZIP/Postcode" -msgstr "PLZ (Postleitzahl)" - -#: admin/settings/settings-tax-rates.php:40 -msgid "" -"Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all areas. Wildcards (*) can be used. Ranges for numeric " -"postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "" -"Postleitzahl für diese Regel. Mehrere Regeln mit Semikolon (;) " -"trennen. Frei lassen, um alle Bereiche zuzuweisen. Wildcards (*) können verwendet werden. Postleitzahlregionen bzw. -bereiche (z.B. " -"12345-12350) werden zu einzelnen Postleitzahlen erweitert." - -#: admin/settings/settings-tax-rates.php:42 -msgid "" -"Cities for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all cities." -msgstr "" -"Orte für diese Regel. Mehrere Regeln mit Semikolon (;) trennen. " -"Frei lassen, um alle Orte zuzuweisen." - -#: admin/settings/settings-tax-rates.php:44 -msgid "Rate %" -msgstr "Satz %" - -#: admin/settings/settings-tax-rates.php:44 -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "" -"Geben Sie einen Mehrwertsteuersatz (Prozentsatz) ein, mit bis zu 4 " -"Dezimalstellen." - -#: admin/settings/settings-tax-rates.php:46 -msgid "Tax Name" -msgstr "Steuername" - -#: admin/settings/settings-tax-rates.php:46 -msgid "Enter a name for this tax rate." -msgstr "Geben Sie einen Namen für diesen Steuersatz ein." - -#: admin/settings/settings-tax-rates.php:48 -#: admin/settings/settings-tax-rates.php:217 -msgid "Priority" -msgstr "Priorität" - -#: admin/settings/settings-tax-rates.php:48 -msgid "" -"Choose a priority for this tax rate. Only 1 matching rate per priority will " -"be used. To define multiple tax rates for a single area you need to specify " -"a different priority per rate." -msgstr "" -"Wählen Sie eine Priorität für diesen Steuersatz. Pro Priorität wird nur ein " -"zutreffender Steuersatz verwendet. Um verschiedene Steuersätze für ein " -"einzelnes Gebiet festzulegen, müssen Sie pro Steuersatz eine andere " -"Priorität angeben." - -#: admin/settings/settings-tax-rates.php:50 -#: admin/settings/settings-tax-rates.php:217 -msgid "Compound" -msgstr "Zusammengesetzt" - -#: admin/settings/settings-tax-rates.php:50 -msgid "" -"Choose whether or not this is a compound rate. Compound tax rates are " -"applied on top of other tax rates." -msgstr "" -"Legen Sie fest, ob dies ein zusammengesetzter Mwst.-Satz ist. " -"Zusammengesetzte Steuersätze werden vor anderen Sätzen zugewiesen." - -#: admin/settings/settings-tax-rates.php:52 -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "" -"Wählen Sie, ob dieser Mehrwertsteuersatz ebenso auf die Versandkosten " -"erhoben wird." - -#: admin/settings/settings-tax-rates.php:59 -msgid "Insert row" -msgstr "Zeile hinzufügen" - -#: admin/settings/settings-tax-rates.php:60 -msgid "Remove selected row(s)" -msgstr "Ausgewählte Zeilen entfernen" - -#: admin/settings/settings-tax-rates.php:62 -msgid "Export CSV" -msgstr "CSV-Datei exportieren" - -#: admin/settings/settings-tax-rates.php:63 -msgid "Import CSV" -msgstr "CSV-Datei importieren" - -#: admin/settings/settings-tax-rates.php:163 -msgid "No row(s) selected" -msgstr "Keine Zeile(n) ausgewählt" - -#: admin/settings/settings-tax-rates.php:217 -msgid "Country Code" -msgstr "Ländercode" - -#: admin/settings/settings-tax-rates.php:217 -msgid "State Code" -msgstr "Bundesstaaten-Code" - -#: admin/settings/settings-tax-rates.php:217 -msgid "Rate %" -msgstr "Satz %" - -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Name" -msgstr "Steuername" - -#: admin/woocommerce-admin-attributes.php:77 -msgid "Please, provide an attribute name, slug and type." -msgstr "Geben Sie bitte einen Name, Permalinkteil und Typ der Eigenschaft an." - -#: admin/woocommerce-admin-attributes.php:79 -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "Permalinkteil (Slug) “%s” ist zu lang (max. 28 Zeichen). Bitte kürzen!" - -#: admin/woocommerce-admin-attributes.php:81 -msgid "" -"Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "" -"Permalinkteil (Slug) “%s” ist nicht erlaubt, da es ein reservierter Begriff " -"ist. Bitte ändern!" - -#: admin/woocommerce-admin-attributes.php:86 -#: admin/woocommerce-admin-attributes.php:91 -msgid "Slug “%s” is already in use. Change it, please." -msgstr "Permalinkteil (Slug) “%s” ist bereits in Verwendung. Bitte ändern!" - -#: admin/woocommerce-admin-attributes.php:227 -msgid "Edit Attribute" -msgstr "Merkmale bearbeiten" - -#: admin/woocommerce-admin-attributes.php:237 -#: admin/woocommerce-admin-attributes.php:376 -msgid "Name for the attribute (shown on the front-end)." -msgstr "Name für das Attribut (wie es in der Besucheransicht erscheint)." - -#: admin/woocommerce-admin-attributes.php:242 -#: admin/woocommerce-admin-attributes.php:308 -#: admin/woocommerce-admin-attributes.php:380 -msgid "Slug" -msgstr "Permalinkteil" - -#: admin/woocommerce-admin-attributes.php:246 -#: admin/woocommerce-admin-attributes.php:382 -msgid "" -"Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "" -"Einzigartiger Permalinkteil/Referenz für das Attribut; muss weniger als 28 " -"Zeichen enthalten." - -#: admin/woocommerce-admin-attributes.php:255 -#: admin/woocommerce-admin-attributes.php:388 -msgid "Select" -msgstr "Auswahlfeld" - -#: admin/woocommerce-admin-attributes.php:256 -#: admin/woocommerce-admin-attributes.php:389 -msgid "Text" -msgstr "Textfeld" - -#: admin/woocommerce-admin-attributes.php:259 -#: admin/woocommerce-admin-attributes.php:392 -msgid "" -"Determines how you select attributes for products. Text " -"allows manual entry via the product page, whereas select " -"attribute terms can be defined from this section. If you plan on using an " -"attribute for variations use select." -msgstr "" -"Hier legen Sie fest, wie Attribute für Produkte ausgewählt werden: " -"Textfeld ermöglicht Ihnen die manuelle Eingabe über die " -"Produktseite, während Sie mit Auswahlfeld " -"Attributbezeichnungen definieren können. Wenn Sie vorhaben, Attribute für " -"Varianten zu verwenden, nutzen Sie bitte den Typ Auswahlfeld." - -#: admin/woocommerce-admin-attributes.php:264 -#: admin/woocommerce-admin-attributes.php:396 -msgid "Default sort order" -msgstr "Standard-Sortierreihenfolge" - -#: admin/woocommerce-admin-attributes.php:268 -#: admin/woocommerce-admin-attributes.php:336 -#: admin/woocommerce-admin-attributes.php:398 -msgid "Custom ordering" -msgstr "Benutzerdefinierte Sortierung" - -#: admin/woocommerce-admin-attributes.php:270 -#: admin/woocommerce-admin-attributes.php:333 -#: admin/woocommerce-admin-attributes.php:400 -msgid "Term ID" -msgstr "Termini-ID" - -#: admin/woocommerce-admin-attributes.php:272 -#: admin/woocommerce-admin-attributes.php:402 -msgid "" -"Determines the sort order on the frontend for this attribute. If using " -"custom ordering, you can drag and drop the terms in this attribute" -msgstr "" -"Legt die Sortierreihenfolge für dieses Attribut in der Besucheransicht " -"(Frontend) fest. Falls Sie benutzerdefinierte Sortierung verwenden, können " -"Sie die Termini via Drag & Drop in diesem Attribut anordnen." - -#: admin/woocommerce-admin-attributes.php:277 -msgid "Update" -msgstr "Aktualisieren" - -#: admin/woocommerce-admin-attributes.php:310 -msgid "Order by" -msgstr "Sortieren nach" - -#: admin/woocommerce-admin-attributes.php:311 -msgid "Terms" -msgstr "Bedingungen" - -#: admin/woocommerce-admin-attributes.php:356 -msgid "Configure terms" -msgstr "einrichten" - -#: admin/woocommerce-admin-attributes.php:360 -msgid "No attributes currently exist." -msgstr "Derzeit existieren keine Merkmale." - -#: admin/woocommerce-admin-attributes.php:370 -msgid "Add New Attribute" -msgstr "Neues Merkmal hinzufügen" - -#: admin/woocommerce-admin-attributes.php:371 -msgid "" -"Attributes let you define extra product data, such as size or colour. You " -"can use these attributes in the shop sidebar using the \"layered nav\" " -"widgets. Please note: you cannot rename an attribute later on." -msgstr "" -"Mit Merkmalen lassen sich zusätzliche Produktdaten wie Grösse und Farbe " -"bestimmen. Sie können diese Merkmale in der Shop-Sidebar benutzen, wenn Sie " -"die \"Ebenen-Navigation (Layered Nav)\" Widgets einsetzen. -- Info: Ausserdem werden Merkmale des Feldtyps 'Auswahlfeld' für die " -"Produktvariationen (konfigurierbare Produkte) benötigt. -- Bitte " -"beachten Sie: Sie können den Namen eines Merkmals nachträglich " -"nicht mehr verändern." - -#: admin/woocommerce-admin-attributes.php:405 -msgid "Add Attribute" -msgstr "Merkmal hinzufügen" - -#: admin/woocommerce-admin-attributes.php:416 -msgid "Are you sure you want to delete this attribute?" -msgstr "Sind Sie sicher, dass Sie dieses Merkmal löschen wollen?" - -#: admin/woocommerce-admin-content.php:26 -#: admin/woocommerce-admin-reports.php:26 -#: admin/woocommerce-admin-reports.php:66 -#: admin/woocommerce-admin-reports.php:82 -#: admin/woocommerce-admin-reports.php:93 -msgid "Overview" -msgstr "Übersicht" - -#: admin/woocommerce-admin-content.php:29 -msgid "" -"Thank you for using WooCommerce :) Should you need help using or extending " -"WooCommerce please read the documentation. For further " -"assistance you can use the community forum or if you have " -"access, our support desk." -msgstr "" -"Danke, dass Sie WooCommerce verwenden! :) — Sollten Sie Hilfe beim " -"Verwenden oder Erweitern von WooCommerce benötigen, besuchen " -"Sie unsere Dokumentation (Engl.). Weitere Hilfestellung können Sie in unserem Community-Forum (Engl.) erhalten, oder, falls Sie " -"Zugriff haben, auf unserer Ticket-Support-Seite (Engl.)." - -#: admin/woocommerce-admin-content.php:31 -msgid "" -"If you are having problems, or to assist us with support, please check the " -"status page to identify any problems with your configuration:" -msgstr "" -"Falls Sie Probleme haben bzw. um uns beim Support zu helfen, prüfen Sie " -"bitte die Status-Seite, um Probleme mit Ihrer Konfiguration/ Installation " -"identifizieren zu können:" - -#: admin/woocommerce-admin-content.php:33 admin/woocommerce-admin-init.php:89 -#: admin/woocommerce-admin-status.php:26 -msgid "System Status" -msgstr "Systemstatus" - -#: admin/woocommerce-admin-content.php:35 -msgid "" -"If you come across a bug, or wish to contribute to the project you can also " -"get involved on GitHub." -msgstr "" -"Wenn Sie einen Fehler finden, oder Lust haben, zum Projekt beizutragen, " -"können Sie auf der Entwickler-Plattform GitHub.com mitwirken." - -#: admin/woocommerce-admin-content.php:43 -msgid "" -"Here you can set up your store and customise it to fit your needs. The " -"sections available from the settings page include:" -msgstr "" -"Hier können Sie Ihren Shop einrichten und an Ihre Bedürfnisse anpassen. Die " -"verfügbaren Bereiche auf der Einstellungen-Seite beinhalten:" - -#: admin/woocommerce-admin-content.php:44 -msgid "" -"General settings such as your shop base, currency, and script/styling " -"options which affect features used in your store." -msgstr "" -"Allgemeine Einstellungen, wie zum Beispiel Shop-Basis, Währung sowie Skript- " -"und Stli-Optionen, welche sich auf Features in Ihrem Shop auswirken." - -#: admin/woocommerce-admin-content.php:45 -#: admin/woocommerce-admin-settings.php:184 -msgid "Pages" -msgstr "Seiten" - -#: admin/woocommerce-admin-content.php:45 -msgid "" -"This is where important store page are defined. You can also set up other " -"pages (such as a Terms page) here." -msgstr "" -"Hier werden alle wichtigen Shop-Seiten festgelegt. Sie können auch andere " -"Seiten (wie etwa für Terms/ Taxonomien) einrichten." - -#: admin/woocommerce-admin-content.php:46 -msgid "" -"Options for how things like price, images and weights appear in your product " -"catalog." -msgstr "" -"Einstellungen für Preise, Bilder und Gewicht erscheinen in Ihrem " -"Produktkatalog." - -#: admin/woocommerce-admin-content.php:47 -msgid "Options concerning stock and stock notices." -msgstr "" -"Einstellungen, das Lager bzw. den Bestand sowie Benachrichtigungen " -"betreffend." - -#: admin/woocommerce-admin-content.php:48 -msgid "Options concerning tax, including international and local tax rates." -msgstr "" -"Einstellungen, die Mehrwertsteuer betreffend - einschliesslich " -"internationaler und lokaler Steuersätze." - -#: admin/woocommerce-admin-content.php:49 -msgid "" -"This is where shipping options are defined, and shipping methods are set up." -msgstr "" -"Hier werden Versandoptionen definiert und ebenso Versandmethoden " -"eingerichtet." - -#: admin/woocommerce-admin-content.php:50 -msgid "Payment Methods" -msgstr "Zahlungsweisen" - -#: admin/woocommerce-admin-content.php:50 -msgid "" -"This is where payment gateway options are defined, and individual payment " -"gateways are set up." -msgstr "" -"Hier werden alle Einstellungen für Zahlungsweisen/ -optionen definiert. " -"Individuelle Zahlungs-Schnittstellen werden ebenfalls hier eingerichtet." - -#: admin/woocommerce-admin-content.php:51 -#: admin/woocommerce-admin-settings.php:189 -msgid "Emails" -msgstr "E-Mails" - -#: admin/woocommerce-admin-content.php:51 -msgid "Here you can customise the way WooCommerce emails appear." -msgstr "" -"Hier können Sie festlegen, wie die E-Mails aussehen, die via WooCommerce " -"versandt werden (z.B. beim Bestellvorgang)." - -#: admin/woocommerce-admin-content.php:52 -#: admin/woocommerce-admin-settings.php:190 -msgid "Integration" -msgstr "Integration" - -#: admin/woocommerce-admin-content.php:52 -msgid "" -"The integration section contains options for third party services which " -"integrate with WooCommerce." -msgstr "" -"Der Integrationsbereich enthält Einstellungen für Drittanbieter-Dienste, " -"welche sich in WooCommerce einbinden lassen." - -#: admin/woocommerce-admin-content.php:57 admin/woocommerce-admin-init.php:64 -msgid "Reports" -msgstr "Berichte" - -#: admin/woocommerce-admin-content.php:59 -msgid "" -"The reports section can be accessed from the left-hand navigation menu. Here " -"you can generate reports for sales and customers." -msgstr "" -"Der Bereich Berichte/ Statistik kann vom linksseitigen Navigationsmenü " -"erreicht werden. Hier können Berichte für Verkäufe und Kunden abgerufen " -"werden." - -#: admin/woocommerce-admin-content.php:60 -#: admin/woocommerce-admin-reports.php:23 -#: admin/woocommerce-admin-reports.php:997 -#: admin/woocommerce-admin-reports.php:1095 -#: admin/woocommerce-admin-reports.php:1214 -msgid "Sales" -msgstr "Umsatz" - -#: admin/woocommerce-admin-content.php:60 -msgid "Reports for sales based on date, top sellers and top earners." -msgstr "" -"Berichte für Verkäufe, basierend auf Datum, bestverkaufenden und " -"bestverdienenden Produkten." - -#: admin/woocommerce-admin-content.php:61 -msgid "Coupon usage reports." -msgstr "Bericht zur Gutschein-Verwendung." - -#: admin/woocommerce-admin-content.php:62 -#: admin/woocommerce-admin-reports.php:79 -msgid "Customers" -msgstr "Kunden" - -#: admin/woocommerce-admin-content.php:62 -msgid "Customer reports, such as signups per day." -msgstr "Kundenberichte, wie zum Beispiel Registrierungen pro Tag." - -#: admin/woocommerce-admin-content.php:63 -msgid "Stock reports for low stock and out of stock items." -msgstr "Lagerbenachrichtigung für knappe oder vergriffene Produkte." - -#: admin/woocommerce-admin-content.php:68 -#: admin/woocommerce-admin-dashboard.php:142 -msgid "Orders" -msgstr "Bestellungen" - -#: admin/woocommerce-admin-content.php:70 -msgid "" -"The orders section can be accessed from the left-hand navigation menu. Here " -"you can view and manage customer orders." -msgstr "" -"Der Bereich Bestellungen kann direkt vom linksseitigen Navigationsmenü aus " -"aufgerufen werden. Hier können Sie Kundenbestellungen einsehen und verwalten." - -#: admin/woocommerce-admin-content.php:71 -msgid "" -"Orders can also be added from this section if you want to set them up for a " -"customer manually." -msgstr "" -"Bestellungen können auch von diesem Bereich aus hinzugefügt werden, wenn Sie " -"diese für einen Kunden manuell einrichten müssen." - -#: admin/woocommerce-admin-content.php:78 -msgid "" -"Coupons can be managed from this section. Once added, customers will be able " -"to enter coupon codes on the cart/checkout page. If a customer uses a coupon " -"code they will be viewable when viewing orders." -msgstr "" -"Gutscheine können in diesem Bereich verwaltet werden. Einmal hinzugefügt, " -"sind Besucher/ Kunden in der Lage, Gutscheincodes während des Bezahlvorgangs " -"zu verwenden. Wenn ein Besucher/ Kunde einen Gutschein verwendet, wird der " -"Code sichtbar sein, beim Ansehen der Bestellung(en)." - -#: admin/woocommerce-admin-content.php:82 -msgid "For more information:" -msgstr "Für weitere Informationen:" - -#: admin/woocommerce-admin-content.php:83 admin/woocommerce-admin-init.php:62 -#: admin/woocommerce-admin-init.php:71 admin/woocommerce-admin-init.php:404 -msgid "WooCommerce" -msgstr "WooCommerce" - -#: admin/woocommerce-admin-content.php:84 -msgid "Project on WordPress.org" -msgstr "Projekt bei WordPress.org" - -#: admin/woocommerce-admin-content.php:85 -msgid "Project on Github" -msgstr "Projekt bei GitHub.com (Entwickler)" - -#: admin/woocommerce-admin-content.php:86 -msgid "WooCommerce Docs" -msgstr "WooCommerce Dokumentation (Engl.)" - -#: admin/woocommerce-admin-content.php:87 -msgid "Official Extensions" -msgstr "Offizielle Erweiterungen (Extensions)" - -#: admin/woocommerce-admin-content.php:88 -msgid "Official Themes" -msgstr "Offizielle WooCommerce-fähige Themes" - -#: admin/woocommerce-admin-dashboard.php:40 -msgid "Monthly Sales" -msgstr "Monatlicher Umsatz" - -#: admin/woocommerce-admin-dashboard.php:43 -msgid "WooCommerce Right Now" -msgstr "WooCommerce auf einen Blick" - -#: admin/woocommerce-admin-dashboard.php:44 -msgid "WooCommerce Recent Orders" -msgstr "WooCommerce kürzliche Bestellungen" - -#: admin/woocommerce-admin-dashboard.php:45 -msgid "WooCommerce Recent Reviews" -msgstr "WooCommerce Neue Bewertungen" - -#: admin/woocommerce-admin-dashboard.php:78 -msgid "Shop Content" -msgstr "Shop-Inhalt" - -#: admin/woocommerce-admin-dashboard.php:84 -#: admin/woocommerce-admin-functions.php:200 -#: admin/woocommerce-admin-init.php:761 -#: admin/woocommerce-admin-reports.php:996 -#: admin/woocommerce-admin-reports.php:1094 -msgid "Product" -msgid_plural "Products" -msgstr[0] "Produkt" -msgstr[1] "Produkte" - -#: admin/woocommerce-admin-dashboard.php:98 -msgid "Product Category" -msgid_plural "Product Categories" -msgstr[0] "Produktkategorie" -msgstr[1] "Produktkategorien" - -#: admin/woocommerce-admin-dashboard.php:112 -msgid "Product Tag" -msgid_plural "Product Tags" -msgstr[0] "Produktschlagwort" -msgstr[1] "Produktschlagwörter" - -#: admin/woocommerce-admin-dashboard.php:126 -msgid "Attribute" -msgid_plural "Attributes" -msgstr[0] "Eigenschaft" -msgstr[1] "Eigenschaften" - -#: admin/woocommerce-admin-dashboard.php:148 -msgid "Pending" -msgstr "Ausstehend" - -#: admin/woocommerce-admin-dashboard.php:162 -msgid "On-Hold" -msgstr "Warteschleife" - -#: admin/woocommerce-admin-dashboard.php:190 -msgid "Completed" -msgstr "Fertiggestellt" - -#: admin/woocommerce-admin-dashboard.php:207 -msgid "You are using WooCommerce %s." -msgstr "Sie verwenden WooCommerce %s." - -#: admin/woocommerce-admin-dashboard.php:238 -msgid "l jS \\of F Y h:i:s A" -msgstr "l, j. M., \\u\\m H:i:s \\U\\h\\r" - -#: admin/woocommerce-admin-dashboard.php:239 -msgid "item" -msgid_plural "items" -msgstr[0] "Element" -msgstr[1] "Elemente" - -#: admin/woocommerce-admin-dashboard.php:239 -msgid "Total:" -msgstr "Gesamtsumme:" - -#: admin/woocommerce-admin-dashboard.php:245 -msgid "There are no product orders yet." -msgstr "Es gibt bisher keine Produktbestellungen." - -#: admin/woocommerce-admin-dashboard.php:279 -msgid "out of 5" -msgstr "von 1 bis 5" - -#: admin/woocommerce-admin-dashboard.php:287 -msgid "There are no product reviews yet." -msgstr "Es gibt noch keine Produktbewertungen." - -#: admin/woocommerce-admin-dashboard.php:428 -msgid "Sold" -msgstr "Verkäufen" - -#: admin/woocommerce-admin-dashboard.php:429 -msgid "Earned" -msgstr "Verdienst" - -#: admin/woocommerce-admin-functions.php:190 -#: admin/woocommerce-admin-install.php:225 -msgid "Order Received" -msgstr "Bestellung erhalten" - -#: admin/woocommerce-admin-functions.php:192 -msgid "" -"Thank you, we are now processing your order. Your order's details are below." -msgstr "" -"Vielen Dank! Wir bearbeiten nun Ihre Bestellung. Die Details Ihrer " -"Bestellung finden Sie unten." - -#: admin/woocommerce-admin-functions.php:194 -msgid "Order:" -msgstr "Bestellung:" - -#: admin/woocommerce-admin-functions.php:201 -msgid "Quantity" -msgstr "Anzahl" - -#: admin/woocommerce-admin-functions.php:214 -msgid "Order total:" -msgstr "Gesamtsumme:" - -#: admin/woocommerce-admin-functions.php:220 -msgid "Customer details" -msgstr "Kundendetails" - -#: admin/woocommerce-admin-functions.php:226 -msgid "Billing address" -msgstr "Rechnungsanschrift" - -#: admin/woocommerce-admin-functions.php:233 -msgid "Shipping address" -msgstr "Versandanschrift" - -#: admin/woocommerce-admin-functions.php:465 -msgid "Could not compile woocommerce.less:" -msgstr "woocommerce.less konnte nicht kompiliert werden:" - -#: admin/woocommerce-admin-functions.php:486 -#: admin/woocommerce-admin-functions.php:487 -msgid "Mark processing" -msgstr "Kennzeichnung läuft" - -#: admin/woocommerce-admin-functions.php:489 -#: admin/woocommerce-admin-functions.php:490 -msgid "Mark completed" -msgstr "Kennzeichnung abgeschlossen" - -#: admin/woocommerce-admin-functions.php:527 -msgid "Order status changed by bulk edit:" -msgstr "Bestellstatus verändert von Stapelverarbeitung:" - -#: admin/woocommerce-admin-functions.php:550 -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "Bestellstatus geändert." -msgstr[1] "%s Bestellstatus geändert." - -#: admin/woocommerce-admin-init.php:88 -msgid "WooCommerce Settings" -msgstr "WooCommerce Einstellungen" - -#: admin/woocommerce-admin-init.php:89 -msgid "WooCommerce Status" -msgstr "WooCommerce Status" - -#: admin/woocommerce-admin-init.php:142 admin/woocommerce-admin-init.php:144 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Bestellungen" - -#: admin/woocommerce-admin-init.php:433 -msgid "" -"Are you sure you want to remove the selected items? If you have previously " -"reduced this item's stock, or this order was submitted by a customer, you " -"will need to manually restore the item's stock." -msgstr "" -"Sind Sie sicher, dass Sie die ausgewählten Produkte entfernen wollen? Sie " -"müssen die Lagermenge manuell wieder herstellen, falls Sie zuvor die " -"Lagermenge dieses Produktes reduziert haben oder diese Bestellung von einem " -"Kunden aufgegeben wurde." - -#: admin/woocommerce-admin-init.php:434 -msgid "Please select some items." -msgstr "Bitte wählen Sie einige Elemente" - -#: admin/woocommerce-admin-init.php:435 -msgid "Remove this item meta?" -msgstr "Meta dieses Elements entfernen?" - -#: admin/woocommerce-admin-init.php:436 -msgid "Remove this attribute?" -msgstr "Dieses Merkmal entfernen?" - -#: admin/woocommerce-admin-init.php:444 -msgid "Enter a name for the new attribute term:" -msgstr "Geben Sie einen Namen für das neue Eigenschaftselement an:" - -#: admin/woocommerce-admin-init.php:445 -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "" -"Gesamtsumme basierend auf bestellten Produkten, Gutscheinen und " -"Versandkosten berechnen?" - -#: admin/woocommerce-admin-init.php:446 -msgid "" -"Calculate line taxes? This will calculate taxes based on the customers " -"country. If no billing/shipping is set it will use the store base country." -msgstr "" -"Steuerpositionen berechnen? Dies wird die Steuern berechnen, basierend auf " -"dem Land des Kunden. Wenn keine Rechnungs-/ Versandanschrift angegeben " -"wurde, wird das Basisland des Shops verwendet." - -#: admin/woocommerce-admin-init.php:447 -msgid "" -"Copy billing information to shipping information? This will remove any " -"currently entered shipping information." -msgstr "" -"Rechnungsinformationen zu Lieferinformationen kopieren? Dies wird alle " -"gerade eingegebenen Lieferinformationen entfernen/ löschen." - -#: admin/woocommerce-admin-init.php:448 -msgid "" -"Load the customer's billing information? This will remove any currently " -"entered billing information." -msgstr "" -"Rechnungsinformationen des Kunden laden? Hinweis: Dies wird alle derzeit " -"eingegebene Rechnungsinformationen entfernen." - -#: admin/woocommerce-admin-init.php:449 -msgid "" -"Load the customer's shipping information? This will remove any currently " -"entered shipping information." -msgstr "" -"Die Lieferinformationen des Kunden laden? Hinweis: Dies wird alle derzeit " -"eingegebenen Lieferinformationen entfernen." - -#: admin/woocommerce-admin-init.php:453 -msgid "No customer selected" -msgstr "Kein Kunde ausgewählt" - -#: admin/woocommerce-admin-init.php:665 -msgid "Product updated. View Product" -msgstr "Produkt aktualisiert. Produkt ansehen" - -#: admin/woocommerce-admin-init.php:666 admin/woocommerce-admin-init.php:681 -#: admin/woocommerce-admin-init.php:696 -msgid "Custom field updated." -msgstr "Benutzerdefiniertes Feld aktualisiert." - -#: admin/woocommerce-admin-init.php:667 admin/woocommerce-admin-init.php:682 -#: admin/woocommerce-admin-init.php:697 -msgid "Custom field deleted." -msgstr "Benutzerdefiniertes Feld gelöscht." - -#: admin/woocommerce-admin-init.php:668 -msgid "Product updated." -msgstr "Produkt aktualisiert." - -#: admin/woocommerce-admin-init.php:669 -msgid "Product restored to revision from %s" -msgstr "Produkt wiederhergestellt zur Revision vom %s" - -#: admin/woocommerce-admin-init.php:670 -msgid "Product published. View Product" -msgstr "Produkt veröffentlicht. Produkt ansehen" - -#: admin/woocommerce-admin-init.php:671 -msgid "Product saved." -msgstr "Produkt gespeichert." - -#: admin/woocommerce-admin-init.php:672 -msgid "Product submitted. Preview Product" -msgstr "" -"Produkt eingestellt. Produktvorschau" - -#: admin/woocommerce-admin-init.php:673 -msgid "" -"Product scheduled for: %1$s. Preview Product" -msgstr "" -"Produkt geplant für: %1$s. Produktvorschau" - -#: admin/woocommerce-admin-init.php:674 admin/woocommerce-admin-init.php:689 -#: admin/woocommerce-admin-init.php:704 -msgid "M j, Y @ G:i" -msgstr "d. F Y H:i" - -#: admin/woocommerce-admin-init.php:675 -msgid "" -"Product draft updated. Preview Product" -msgstr "" -"Produktentwurf aktualisiert. Produktvorschau" - -#: admin/woocommerce-admin-init.php:680 admin/woocommerce-admin-init.php:683 -#: admin/woocommerce-admin-init.php:685 -msgid "Order updated." -msgstr "Bestellung aktualisiert." - -#: admin/woocommerce-admin-init.php:684 -msgid "Order restored to revision from %s" -msgstr "Bestellung wiederhergestellt zur Revision vom %s" - -#: admin/woocommerce-admin-init.php:686 -msgid "Order saved." -msgstr "Bestellung gespeichert." - -#: admin/woocommerce-admin-init.php:687 -msgid "Order submitted." -msgstr "Bestellung eingefügt." - -#: admin/woocommerce-admin-init.php:688 -msgid "Order scheduled for: %1$s." -msgstr "Bestellung geplant für: %1$s." - -#: admin/woocommerce-admin-init.php:690 -msgid "Order draft updated." -msgstr "Bestellentwurf aktualisiert." - -#: admin/woocommerce-admin-init.php:695 admin/woocommerce-admin-init.php:698 -#: admin/woocommerce-admin-init.php:700 -msgid "Coupon updated." -msgstr "Gutschein aktualisiert." - -#: admin/woocommerce-admin-init.php:699 -msgid "Coupon restored to revision from %s" -msgstr "Gutschein wiederhergestellt zur Revision vom %s" - -#: admin/woocommerce-admin-init.php:701 -msgid "Coupon saved." -msgstr "Gutschein gespeichert." - -#: admin/woocommerce-admin-init.php:702 -msgid "Coupon submitted." -msgstr "Gutschein eingefügt." - -#: admin/woocommerce-admin-init.php:703 -msgid "Coupon scheduled for: %1$s." -msgstr "Gutschein geplant für: %1$s." - -#: admin/woocommerce-admin-init.php:705 -msgid "Coupon draft updated." -msgstr "Gutscheinentwurf aktualisiert." - -#: admin/woocommerce-admin-init.php:722 -msgid "Order notes" -msgstr "Bestellnotizen" - -#: admin/woocommerce-admin-init.php:737 -msgid "" -"These settings control the permalinks used for products. These settings only " -"apply when not using \"default\" permalinks above." -msgstr "" -"Diese Einstellungen legen die Permalinks fest, welche für Produkte verwendet " -"werden. Diese Einstellungen greifen nur, wenn Sie nicht die " -"\"Standard\"-Permalinks oben verwenden." - -#: admin/woocommerce-admin-init.php:744 -msgctxt "default-slug" -msgid "shop" -msgstr "shop" - -#: admin/woocommerce-admin-init.php:745 -msgctxt "default-slug" -msgid "product" -msgstr "produkt" - -#: admin/woocommerce-admin-init.php:766 -msgid "Shop base" -msgstr "Shop-Basis" - -#: admin/woocommerce-admin-init.php:770 -msgid "Shop base with category" -msgstr "Shop-Basis mit Kategorie" - -#: admin/woocommerce-admin-init.php:776 -msgid "Custom Base" -msgstr "Benutzerdefinierte Basis" - -#: admin/woocommerce-admin-init.php:778 -msgid "" -"Enter a custom base to use. A base must be set or WordPress " -"will use default instead." -msgstr "" -"Geben Sie eine benutzerdefinierte Basis ein. Es muss eine " -"Basis angegeben werden, ansonsten wird WordPress den Standard verwenden." - -#: admin/woocommerce-admin-init.php:806 -msgid "Product permalink base" -msgstr "Produktpermalink-Basis" - -#: admin/woocommerce-admin-init.php:811 -msgid "Product category base" -msgstr "Produktkategorie-Basis" - -#: admin/woocommerce-admin-init.php:818 -msgid "Product tag base" -msgstr "Produktschlagwort-Basis" - -#: admin/woocommerce-admin-init.php:825 -msgid "Product attribute base" -msgstr "Produkteigenschaft-Basis" - -#: admin/woocommerce-admin-install.php:195 -msgctxt "page_slug" -msgid "shop" -msgstr "shop" - -#: admin/woocommerce-admin-install.php:195 -msgid "Shop" -msgstr "Shop" - -#: admin/woocommerce-admin-install.php:198 -msgctxt "page_slug" -msgid "cart" -msgstr "warenkorb" - -#: admin/woocommerce-admin-install.php:198 -#: admin/woocommerce-admin-status.php:303 -msgid "Cart" -msgstr "Warenkorb" - -#: admin/woocommerce-admin-install.php:201 -msgctxt "page_slug" -msgid "checkout" -msgstr "kasse" - -#: admin/woocommerce-admin-install.php:204 -msgctxt "page_slug" -msgid "my-account" -msgstr "mein-konto" - -#: admin/woocommerce-admin-install.php:204 -#: admin/woocommerce-admin-status.php:319 -msgid "My Account" -msgstr "Mein Benutzerkonto" - -#: admin/woocommerce-admin-install.php:210 -msgctxt "page_slug" -msgid "edit-address" -msgstr "adresse-bearbeiten" - -#: admin/woocommerce-admin-install.php:210 -msgid "Edit My Address" -msgstr "Meine Adresse ändern" - -#: admin/woocommerce-admin-install.php:213 -msgctxt "page_slug" -msgid "view-order" -msgstr "bestellung-ansehen" - -#: admin/woocommerce-admin-install.php:213 -#: admin/woocommerce-admin-status.php:327 -msgid "View Order" -msgstr "Bestellung anzeigen" - -#: admin/woocommerce-admin-install.php:216 -msgctxt "page_slug" -msgid "change-password" -msgstr "passwort-aendern" - -#: admin/woocommerce-admin-install.php:216 -#: admin/woocommerce-admin-status.php:331 -msgid "Change Password" -msgstr "Passwort ändern" - -#: admin/woocommerce-admin-install.php:219 -msgctxt "page_slug" -msgid "logout" -msgstr "abmelden" - -#: admin/woocommerce-admin-install.php:219 -msgid "Logout" -msgstr "Abmelden" - -#: admin/woocommerce-admin-install.php:222 -msgctxt "page_slug" -msgid "pay" -msgstr "bezahlen" - -#: admin/woocommerce-admin-install.php:222 -msgid "Checkout → Pay" -msgstr "Zur Kasse → Bezahlen" - -#: admin/woocommerce-admin-install.php:225 -msgctxt "page_slug" -msgid "order-received" -msgstr "bestellung-erhalten" - -#: admin/woocommerce-admin-reports.php:32 -msgid "Sales by day" -msgstr "Umsatz pro Tag" - -#: admin/woocommerce-admin-reports.php:37 -msgid "Sales by month" -msgstr "Umsatz pro Monat" - -#: admin/woocommerce-admin-reports.php:42 -msgid "Product Sales" -msgstr "Produktverkäufe" - -#: admin/woocommerce-admin-reports.php:47 -msgid "Top sellers" -msgstr "Verkaufsschlager" - -#: admin/woocommerce-admin-reports.php:52 -msgid "Top earners" -msgstr "Bestverdienende Produkte" - -#: admin/woocommerce-admin-reports.php:57 -msgid "Sales by category" -msgstr "Umsatz pro Kategorie" - -#: admin/woocommerce-admin-reports.php:72 -msgid "Discounts by coupon" -msgstr "Rabatte pro Gutschein" - -#: admin/woocommerce-admin-reports.php:104 -msgid "Taxes by month" -msgstr "Steuern pro Monat" - -#: admin/woocommerce-admin-reports.php:243 -#: admin/woocommerce-admin-reports.php:508 -#: admin/woocommerce-admin-reports.php:713 -#: admin/woocommerce-admin-reports.php:894 -msgid "Sales amount" -msgstr "Umsatz" - -#: admin/woocommerce-admin-reports.php:248 -#: admin/woocommerce-admin-reports.php:508 -#: admin/woocommerce-admin-reports.php:713 -#: admin/woocommerce-admin-reports.php:894 -msgid "Number of sales" -msgstr "Verkäufe/ Anzahl" - -#: admin/woocommerce-admin-reports.php:380 -msgid "Total sales" -msgstr "Gesamter Umsatz" - -#: admin/woocommerce-admin-reports.php:382 -#: admin/woocommerce-admin-reports.php:388 -#: admin/woocommerce-admin-reports.php:394 -#: admin/woocommerce-admin-reports.php:400 -#: admin/woocommerce-admin-reports.php:406 -#: admin/woocommerce-admin-reports.php:412 -#: admin/woocommerce-admin-reports.php:655 -#: admin/woocommerce-admin-reports.php:661 -#: admin/woocommerce-admin-reports.php:667 -#: admin/woocommerce-admin-reports.php:673 -#: admin/woocommerce-admin-reports.php:839 -#: admin/woocommerce-admin-reports.php:845 -#: admin/woocommerce-admin-reports.php:851 -#: admin/woocommerce-admin-reports.php:857 -#: admin/woocommerce-admin-reports.php:1380 -#: admin/woocommerce-admin-reports.php:1386 -#: admin/woocommerce-admin-reports.php:1392 -#: admin/woocommerce-admin-reports.php:1826 -#: admin/woocommerce-admin-reports.php:1832 -#: admin/woocommerce-admin-reports.php:1838 -#: admin/woocommerce-admin-reports.php:1844 -#: admin/woocommerce-admin-reports.php:1850 -#: admin/woocommerce-admin-reports.php:1856 -#: admin/woocommerce-admin-reports.php:2320 -#: admin/woocommerce-admin-reports.php:2331 -#: admin/woocommerce-admin-reports.php:2342 -msgid "n/a" -msgstr "k.A." - -#: admin/woocommerce-admin-reports.php:386 -msgid "Total orders" -msgstr "Gesamte Bestellungen" - -#: admin/woocommerce-admin-reports.php:388 -#: admin/woocommerce-admin-reports.php:661 -#: admin/woocommerce-admin-reports.php:845 -msgid "items" -msgstr "Elemente" - -#: admin/woocommerce-admin-reports.php:392 -msgid "Average order total" -msgstr "Durchschnittlicher Bestellwert" - -#: admin/woocommerce-admin-reports.php:398 -msgid "Average order items" -msgstr "Durchschnittliche Bestellmenge" - -#: admin/woocommerce-admin-reports.php:404 -msgid "Discounts used" -msgstr "verwendete Rabatte" - -#: admin/woocommerce-admin-reports.php:410 -msgid "Total shipping costs" -msgstr "Gesamte Versandkosten" - -#: admin/woocommerce-admin-reports.php:418 -msgid "This month's sales" -msgstr "Umsätze diesen Monat" - -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1372 -msgid "From:" -msgstr "Ab:" - -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1372 -msgid "To:" -msgstr "Bis:" - -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:832 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1245 -#: admin/woocommerce-admin-reports.php:1372 -#: admin/woocommerce-admin-reports.php:1505 -#: admin/woocommerce-admin-reports.php:2309 -#: admin/woocommerce-admin-reports.php:2492 -msgid "Show" -msgstr "Anzeigen" - -#: admin/woocommerce-admin-reports.php:653 -msgid "Total sales in range" -msgstr "Gesamter Umsatz im Bereich" - -#: admin/woocommerce-admin-reports.php:659 -msgid "Total orders in range" -msgstr "Gesamte Bestellungen im Bereich" - -#: admin/woocommerce-admin-reports.php:665 -msgid "Average order total in range" -msgstr "Durchschnittlicher Bestellwert im Bereich" - -#: admin/woocommerce-admin-reports.php:671 -msgid "Average order items in range" -msgstr "Durchschnittliche Bestellmenge im Bereich" - -#: admin/woocommerce-admin-reports.php:679 -msgid "Sales in range" -msgstr "Umsatz im Bereich" - -#: admin/woocommerce-admin-reports.php:826 -#: admin/woocommerce-admin-reports.php:2303 -msgid "Year:" -msgstr "Jahr:" - -#: admin/woocommerce-admin-reports.php:837 -msgid "Total sales for year" -msgstr "Gesamtumsatz dieses Jahr" - -#: admin/woocommerce-admin-reports.php:843 -msgid "Total orders for year" -msgstr "Gesamte Bestellungen dieses Jahr" - -#: admin/woocommerce-admin-reports.php:849 -msgid "Average order total for year" -msgstr "Durchschnittlicher Gesamtbestellwert im Jahr" - -#: admin/woocommerce-admin-reports.php:855 -msgid "Average order items for year" -msgstr "Durchschnittliche Bestellmenge im Jahr" - -#: admin/woocommerce-admin-reports.php:863 -msgid "Monthly sales for year" -msgstr "Monatlicher Umsatz im Jahr" - -#: admin/woocommerce-admin-reports.php:1011 -msgid "Product does not exist" -msgstr "Das Produkt existiert nicht" - -#: admin/woocommerce-admin-reports.php:1110 -msgid "Product no longer exists" -msgstr "Das Produkt ist nicht mehr vorhanden" - -#: admin/woocommerce-admin-reports.php:1209 -msgid "Sales for %s:" -msgstr "Umsatz für %s:" - -#: admin/woocommerce-admin-reports.php:1213 -#: admin/woocommerce-admin-reports.php:2351 -msgid "Month" -msgstr "Monat" - -#: admin/woocommerce-admin-reports.php:1235 -msgid "No sales :(" -msgstr "Keine Verkäufe :(" - -#: admin/woocommerce-admin-reports.php:1378 -msgid "Total orders containing coupons" -msgstr "Gesamte Betellungen, welche Gutscheine enthalten" - -#: admin/woocommerce-admin-reports.php:1384 -msgid "Percent of orders containing coupons" -msgstr "Prozentsatz von Bestellungen, welche Gutscheine enthalten" - -#: admin/woocommerce-admin-reports.php:1390 -msgid "Total coupon discount" -msgstr "Gesamter Gutschein-Rabatt" - -#: admin/woocommerce-admin-reports.php:1399 -msgid "Most popular coupons" -msgstr "Beliebteste Gutscheine" - -#: admin/woocommerce-admin-reports.php:1409 -msgid "Used 1 time" -msgid_plural "Used %d times" -msgstr[0] "1 Mal verwendet" -msgstr[1] "%d Mal verwendet" - -#: admin/woocommerce-admin-reports.php:1412 -#: admin/woocommerce-admin-reports.php:1434 -msgid "No coupons found" -msgstr "Es wurden keine Gutscheine gefunden." - -#: admin/woocommerce-admin-reports.php:1421 -msgid "Greatest discount amount" -msgstr "Höchster Gutscheinbetrag" - -#: admin/woocommerce-admin-reports.php:1431 -msgid "Discounted %s" -msgstr "%s rabattiert" - -#: admin/woocommerce-admin-reports.php:1490 -#: admin/woocommerce-admin-reports.php:2469 -msgid "Show:" -msgstr "Anzeigen:" - -#: admin/woocommerce-admin-reports.php:1547 -msgid "Coupon" -msgstr "Gutschein" - -#: admin/woocommerce-admin-reports.php:1630 -msgid "Top coupon" -msgstr "Bester Gutschein" - -#: admin/woocommerce-admin-reports.php:1638 -msgid "Worst coupon" -msgstr "Schlechtester Gutschein" - -#: admin/woocommerce-admin-reports.php:1646 -msgid "Discount average" -msgstr "Durchschnittlicher Rabatt" - -#: admin/woocommerce-admin-reports.php:1654 -msgid "Discount median" -msgstr "Mittlerer Rabatt" - -#: admin/woocommerce-admin-reports.php:1674 -msgid "Monthly discounts by coupon" -msgstr "Monatlicher Rabatt pro Gutschein" - -#: admin/woocommerce-admin-reports.php:1824 -msgid "Total customers" -msgstr "Gesamtkundenzahl" - -#: admin/woocommerce-admin-reports.php:1830 -msgid "Total customer sales" -msgstr "Gesamter Kundenumsatz" - -#: admin/woocommerce-admin-reports.php:1836 -msgid "Total guest sales" -msgstr "Gesamter Gastumsatz" - -#: admin/woocommerce-admin-reports.php:1842 -msgid "Total customer orders" -msgstr "Gesamte Kundenbestellungen" - -#: admin/woocommerce-admin-reports.php:1848 -msgid "Total guest orders" -msgstr "Gesamte Gastbestellungen" - -#: admin/woocommerce-admin-reports.php:1854 -msgid "Average orders per customer" -msgstr "Durschnittliche Bestellungen pro Kunde" - -#: admin/woocommerce-admin-reports.php:1862 -msgid "Signups per day" -msgstr "(Neukunden-) Anmeldungen pro Trag" - -#: admin/woocommerce-admin-reports.php:2083 -msgid "Low stock" -msgstr "Nur noch wenige Produkte verfügbar" - -#: admin/woocommerce-admin-reports.php:2106 -#: admin/woocommerce-admin-reports.php:2145 -msgid "%d in stock" -msgid_plural "%d in stock" -msgstr[0] "%d auf Lager" -msgstr[1] "%d auf Lager" - -#: admin/woocommerce-admin-reports.php:2111 -msgid "No products are low in stock." -msgstr "Keine Produkte sind knapp im Lager." - -#: admin/woocommerce-admin-reports.php:2143 -msgid "Marked out of stock" -msgstr "Als vergriffen gekennzeichnet" - -#: admin/woocommerce-admin-reports.php:2150 -msgid "No products are out in stock." -msgstr "Derzeit sind keine Produkte vergriffen." - -#: admin/woocommerce-admin-reports.php:2314 -msgid "Total taxes for year" -msgstr "Gesamte Steuern pro Jahr" - -#: admin/woocommerce-admin-reports.php:2325 -msgid "Total product taxes for year" -msgstr "Gesamte Produktsteuern pro Jahr" - -#: admin/woocommerce-admin-reports.php:2336 -msgid "Total shipping tax for year" -msgstr "Gesamte Versandsteuern pro Jahr" - -#: admin/woocommerce-admin-reports.php:2352 -msgid "Total Sales" -msgstr "Gesamtumsatz" - -#: admin/woocommerce-admin-reports.php:2352 -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "" -"Dies ist die Summe des Feldes 'Gesamtsumme' in Ihren einzelnen Bestellungen." - -#: admin/woocommerce-admin-reports.php:2353 -msgid "Total Shipping" -msgstr "Gesamtsumme Versand" - -#: admin/woocommerce-admin-reports.php:2353 -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "" -"Dies ist die Summe des Feldes 'Gesamtsumme Versand' in Ihren Bestellungen." - -#: admin/woocommerce-admin-reports.php:2354 -msgid "Total Product Taxes" -msgstr "Gesamte Produktsteuern" - -#: admin/woocommerce-admin-reports.php:2354 -msgid "This is the sum of the 'Cart Tax' field within your orders." -msgstr "" -"Dies ist die Summe des Feldes 'Warenkorbsteuern' in Ihren Bestellungen." - -#: admin/woocommerce-admin-reports.php:2355 -msgid "Total Shipping Taxes" -msgstr "Gesamte Versandsteuern" - -#: admin/woocommerce-admin-reports.php:2355 -msgid "This is the sum of the 'Shipping Tax' field within your orders." -msgstr "Dies ist die Summe des Feldes 'Versandsteuern' in Ihren Bestellungen." - -#: admin/woocommerce-admin-reports.php:2356 -msgid "Total Taxes" -msgstr "Gesamte Steuern" - -#: admin/woocommerce-admin-reports.php:2356 -msgid "" -"This is the sum of the 'Cart Tax' and 'Shipping Tax' fields within your " -"orders." -msgstr "" -"Dies ist die Summe der Felder 'Warenkorbsteuern' und 'Versandsteuern' in " -"Ihren Bestellungen." - -#: admin/woocommerce-admin-reports.php:2357 -msgid "Net profit" -msgstr "Reinerlös (Netto)" - -#: admin/woocommerce-admin-reports.php:2357 -msgid "Total sales minus shipping and tax." -msgstr "Gesamtumsatz minus Versand und Steuern." - -#: admin/woocommerce-admin-reports.php:2402 -msgid "Toggle tax rows" -msgstr "Steuerzeilen aufklappen" - -#: admin/woocommerce-admin-reports.php:2545 -msgid "Category" -msgstr "Kategorie" - -#: admin/woocommerce-admin-reports.php:2648 -msgid "Top category" -msgstr "Beste Kategorie" - -#: admin/woocommerce-admin-reports.php:2657 -msgid "Worst category" -msgstr "Schlechteste Kategorie" - -#: admin/woocommerce-admin-reports.php:2665 -msgid "Category sales average" -msgstr "Durchschnittlicher Umsatz der Kategorie" - -#: admin/woocommerce-admin-reports.php:2676 -msgid "Category sales median" -msgstr "Mittlerer Kategorieumsatz" - -#: admin/woocommerce-admin-reports.php:2696 -msgid "Monthly sales by category" -msgstr "Monatlicher Umsatz pro Kategorie" - -#: admin/woocommerce-admin-settings.php:45 -msgid "Action failed. Please refresh the page and retry." -msgstr "" -"Aktion fehlgeschlagen. Bitte laden Sie die Seite neu und versuchen Sie es " -"noch einmal." - -#: admin/woocommerce-admin-settings.php:164 -msgid "Your settings have been saved." -msgstr "Ihre Einstellungen wurden gespeichert." - -#: admin/woocommerce-admin-settings.php:210 -msgid "" -"More functionality and gateway options available via WC official extensions." -msgstr "" -"Noch mehr Funktionalitäten sowie weitere Zahlungsweisen (Schnittstellen) " -"sind über die offizielle WooCommerce Seite " -"für Erweiterungen erhältlich." - -#: admin/woocommerce-admin-settings.php:228 -msgid "Tax Rates" -msgstr "Mehrwertsteuersätze" - -#: admin/woocommerce-admin-settings.php:255 -msgid "Email Options" -msgstr "E-Mail-Optionen" - -#: admin/woocommerce-admin-settings.php:388 -msgid "Save changes" -msgstr "Änderungen speichern" - -#: admin/woocommerce-admin-settings.php:429 -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "" -"Die Veränderungen, die Sie hier vornehmen, werden verlorengehen, wenn Sie " -"diese Seite verlassen." - -#: admin/woocommerce-admin-settings.php:801 -msgid "Hard Crop" -msgstr "Beschneiden" - -#: admin/woocommerce-admin-settings.php:826 -msgid "Select a page…" -msgstr "Eine Seite auswählen…" - -#: admin/woocommerce-admin-settings.php:849 -msgid "Choose a country…" -msgstr "Ein Land auswählen …" - -#: admin/woocommerce-admin-settings.php:869 -msgid "Choose countries…" -msgstr "Länder auswählen …" - -#: admin/woocommerce-admin-status.php:27 -#: admin/woocommerce-admin-status.php:664 -msgid "Tools" -msgstr "Werkzeuge" - -#: admin/woocommerce-admin-status.php:62 -msgid "Please include this information when requesting support:" -msgstr "" -"Bitte fügen Sie diese Informationen bei, wenn Sie Support in Anspruch nehmen:" - -#: admin/woocommerce-admin-status.php:63 -msgid "Download System Report File" -msgstr "Datei mit Systeminformationen herunterladen" - -#: admin/woocommerce-admin-status.php:71 -msgid "Environment" -msgstr "Umgebung" - -#: admin/woocommerce-admin-status.php:77 -msgid "Home URL" -msgstr "Homepage-URL" - -#: admin/woocommerce-admin-status.php:81 -msgid "Site URL" -msgstr "Webseiten-URL" - -#: admin/woocommerce-admin-status.php:85 -msgid "WC Version" -msgstr "WooCommerce Version" - -#: admin/woocommerce-admin-status.php:89 -msgid "WC Database Version" -msgstr "WooCommerce Datenbank-Version" - -#: admin/woocommerce-admin-status.php:93 -msgid "WP Version" -msgstr "WordPress Version" - -#: admin/woocommerce-admin-status.php:97 -msgid "Web Server Info" -msgstr "Webserver Information" - -#: admin/woocommerce-admin-status.php:101 -msgid "PHP Version" -msgstr "PHP Version" - -#: admin/woocommerce-admin-status.php:105 -msgid "MySQL Version" -msgstr "MySQL Version" - -#: admin/woocommerce-admin-status.php:109 -msgid "WP Memory Limit" -msgstr "WordPress PHP-Memory Limit" - -#: admin/woocommerce-admin-status.php:114 -msgid "" -"%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "" -"%s - Wir empfehlen den PHP-Speicher auf mindestens 64MB zu setzen. Schauen " -"Sie bitte auch hier: Für PHP freigegebenen Speicher erhöhen " -"(Engl.)" - -#: admin/woocommerce-admin-status.php:121 -msgid "WP Debug Mode" -msgstr "WordPress Debug-Modus" - -#: admin/woocommerce-admin-status.php:125 -msgid "WP Max Upload Size" -msgstr "WordPress max. Hochladen-Grösse" - -#: admin/woocommerce-admin-status.php:129 -msgid "PHP Post Max Size" -msgstr "PHP Post Max Size" - -#: admin/woocommerce-admin-status.php:133 -msgid "PHP Time Limit" -msgstr "PHP Zeitlimit" - -#: admin/woocommerce-admin-status.php:137 -msgid "WC Logging" -msgstr "WooCommerce-Protokoll" - -#: admin/woocommerce-admin-status.php:140 -msgid "Log directory is writable." -msgstr "Protokollverzeichnis ist beschreibbar." - -#: admin/woocommerce-admin-status.php:142 -msgid "" -"Log directory (woocommerce/logs/) is not writable. Logging will " -"not be possible." -msgstr "" -"Protokollverzeichnis (woocommerce/logs/) ist nicht " -"beschreibbar. Protokollierung (Logging) wird daher nicht möglich sein." - -#: admin/woocommerce-admin-status.php:149 -msgid "fsockopen/cURL" -msgstr "fsockopen / cURL" - -#: admin/woocommerce-admin-status.php:152 -msgid "Your server has fsockopen and cURL enabled." -msgstr "" -"Ihr Webserver hat fsockopen und cURL aktiviert." - -#: admin/woocommerce-admin-status.php:154 -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "" -"Ihr Webserver hat fsockopen aktiviert, cURL ist " -"deaktiviert." - -#: admin/woocommerce-admin-status.php:156 -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "" -"Ihr Webserver hat cURL aktiviert, fsockopen ist " -"deaktiviert." - -#: admin/woocommerce-admin-status.php:160 -msgid "" -"Your server does not have fsockopen or cURL enabled - PayPal IPN and other " -"scripts which communicate with other servers will not work. Contact your " -"hosting provider." -msgstr "" -"Ihr Webserver hat weder fsockopen noch cURL " -"aktiviert. Die sofortige Zahlungsbestätigung bei PayPal (IPN) und andere " -"Skripte, welche mit anderen Servern kommunizieren, werden daher nicht " -"funktionieren. Kontaktieren Sie Ihren Webhosting-Anbieter (oder wechseln Sie " -"notfalls den Anbieter)." - -#: admin/woocommerce-admin-status.php:165 -msgid "SOAP Client" -msgstr "SOAP Client" - -#: admin/woocommerce-admin-status.php:167 -msgid "Your server has the SOAP Client class enabled." -msgstr "Ihr Webserver hat die SOAP Client Klasse aktiviert." - -#: admin/woocommerce-admin-status.php:170 -msgid "" -"Your server does not have the SOAP Client class enabled - " -"some gateway plugins which use SOAP may not work as expected." -msgstr "" -"Ihr Webserver hat die SOAP Client Klasse nicht aktiviert. " -"Einige Plugins für Zahlungsweisen, welche SOAP verwenden, könnten daher " -"evtl. nicht mehr korrekt funktionieren." - -#: admin/woocommerce-admin-status.php:175 -msgid "WP Remote Post" -msgstr "WP Remote Post" - -#: admin/woocommerce-admin-status.php:186 -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "" -"wp_remote_post() war erfolgreich - PayPal IPN funktioniert." - -#: admin/woocommerce-admin-status.php:189 -msgid "" -"wp_remote_post() failed. PayPal IPN won't work with your server. Contact " -"your hosting provider. Error:" -msgstr "" -"wp_remote_post() schulg fehl. Die sofortige Zahlungsbestätigung " -"durch PayPal (IPN) wird mit Ihrem Webserver nicht funktionieren. " -"Kontaktieren Sie bitte Ihren Webhosting-Anbieter. Fehlermeldung:" - -#: admin/woocommerce-admin-status.php:192 -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "" -"Die Funktion wp_remote_post() schlug fehl. PayPal Sofortige " -"Zahlungsbestätigung (IPN) wird wohl auf Ihrem Webserver nicht funktionieren." - -#: admin/woocommerce-admin-status.php:215 -msgid "Plugins" -msgstr "Plugins" - -#: admin/woocommerce-admin-status.php:221 -msgid "Installed Plugins" -msgstr "Installierte Plugins" - -#: admin/woocommerce-admin-status.php:259 -msgid "is available" -msgstr "ist verfügbar" - -#: admin/woocommerce-admin-status.php:262 -msgid "by" -msgstr "von" - -#: admin/woocommerce-admin-status.php:262 -msgid "version" -msgstr "Version" - -#: admin/woocommerce-admin-status.php:285 -msgid "Force SSL" -msgstr "SSL erzwingen" - -#: admin/woocommerce-admin-status.php:292 -msgid "WC Pages" -msgstr "WooCommerce Seiten" - -#: admin/woocommerce-admin-status.php:299 -msgid "Shop Base" -msgstr "Shop-Basis" - -#: admin/woocommerce-admin-status.php:311 -msgid "Pay" -msgstr "Bezahlen" - -#: admin/woocommerce-admin-status.php:315 -msgid "Thanks" -msgstr "Danke" - -#: admin/woocommerce-admin-status.php:323 -msgid "Edit Address" -msgstr "Anschrift bearbeiten" - -#: admin/woocommerce-admin-status.php:355 -msgid "Page not set" -msgstr "Seite nicht festgelegt" - -#: admin/woocommerce-admin-status.php:365 -msgid "Page does not exist" -msgstr "Diese Seite existiert nicht" - -#: admin/woocommerce-admin-status.php:370 -msgid "Page does not contain the shortcode: %s" -msgstr "Seite enthält nicht den Shortcode: %s" - -#: admin/woocommerce-admin-status.php:389 -msgid "WC Taxonomies" -msgstr "WooCommerce Taxonomien" - -#: admin/woocommerce-admin-status.php:395 -msgid "Order Statuses" -msgstr "Bestellstatus" - -#: admin/woocommerce-admin-status.php:405 -msgid "Product Types" -msgstr "Produkttypen" - -#: admin/woocommerce-admin-status.php:418 -msgid "Templates" -msgstr "Templates" - -#: admin/woocommerce-admin-status.php:424 -msgid "Template Overrides" -msgstr "Template-Überschreibungen (Overrides)" - -#: admin/woocommerce-admin-status.php:442 -msgid "No core overrides present in theme." -msgstr "Keine Core-Überschreibungen aktiv im Theme." - -#: admin/woocommerce-admin-status.php:537 -msgid "WC Transients" -msgstr "WooCommerce Transients" - -#: admin/woocommerce-admin-status.php:538 -msgid "Clear transients" -msgstr "Transients leeren" - -#: admin/woocommerce-admin-status.php:539 -msgid "This tool will clear the product/shop transients cache." -msgstr "" -"Dieses Werkzeug wird den Produkt-/ Shop-Transient-Cache leeren (ein " -"spezieller Zwischenspeicher)." - -#: admin/woocommerce-admin-status.php:542 -msgid "Expired Transients" -msgstr "Erloschene Transients" - -#: admin/woocommerce-admin-status.php:543 -msgid "Clear expired transients" -msgstr "Erloschene Transients leeren" - -#: admin/woocommerce-admin-status.php:544 -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "" -"Dieses Werkzeug wird ALLE erloschenen Transients aus WordPress löschen." - -#: admin/woocommerce-admin-status.php:547 -msgid "Term counts" -msgstr "Termini-Zähler" - -#: admin/woocommerce-admin-status.php:548 -msgid "Recount terms" -msgstr "Termini erneut zählen" - -#: admin/woocommerce-admin-status.php:549 -msgid "" -"This tool will recount product terms - useful when changing your settings in " -"a way which hides products from the catalog." -msgstr "" -"Dieses Werkzeug wird Produkt-Termini erneut zählen. Dies ist nützlich, falls " -"Sie Einstellungen auf solch eine Weise geändert haben, dass Produkte nicht " -"mehr im Katalog erschienen sind." - -#: admin/woocommerce-admin-status.php:552 -msgid "Capabilities" -msgstr "Benutzer-Berechtigungen" - -#: admin/woocommerce-admin-status.php:553 -msgid "Reset capabilities" -msgstr "Berechtigungen zurücksetzen" - -#: admin/woocommerce-admin-status.php:554 -msgid "" -"This tool will reset the admin, customer and shop_manager roles to default. " -"Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "" -"Dieses Werkzeug wird die Benutzerrollen admin (Administrator), " -"customer (Kunde) und shop_manager (Shop Manager) " -"auf ihre Standardwerte zurücksetzen. Verwenden Sie dies nur, falls einige " -"Benutzer nicht auf WooCommerce Einstellungen-Seiten zugreifen können." - -#: admin/woocommerce-admin-status.php:557 -msgid "Customer Sessions" -msgstr "Kunden Sitzungen" - -#: admin/woocommerce-admin-status.php:558 -msgid "Clear all sessions" -msgstr "Alle Sitzungen löschen" - -#: admin/woocommerce-admin-status.php:559 -msgid "" -"Warning This tool will delete all customer " -"session data from the database, including any current live carts." -msgstr "" -"Warnung Dieses Werkzeug wird alle Daten von " -"Kunden Sitzungen aus der Datenbank löschen. Dies betrifft auch aktive " -"Warenkörbe. " - -#: admin/woocommerce-admin-status.php:569 -msgid "Product Transients Cleared" -msgstr "Produkt-Transients geleert" - -#: admin/woocommerce-admin-status.php:610 -msgid "%d Transients Rows Cleared" -msgstr "%d Zeilen mit Transients geleert" - -#: admin/woocommerce-admin-status.php:618 -msgid "Roles successfully reset" -msgstr "Benutzerrollen erfolgreich zurückgesetzt" - -#: admin/woocommerce-admin-status.php:630 -msgid "Terms successfully recounted" -msgstr "Termini erfolgreich neu gezählt" - -#: admin/woocommerce-admin-status.php:649 -msgid "There was an error calling %s::%s" -msgstr "Es gab einen Fehler beim Aufruf von %s::%s" - -#: admin/woocommerce-admin-status.php:652 -msgid "There was an error calling %s" -msgstr "Es gab einen Fehler beim Aufruf von %s" - -#: admin/woocommerce-admin-taxonomies.php:25 -#: admin/woocommerce-admin-taxonomies.php:118 -msgid "Display type" -msgstr "Anzeigeart" - -#: admin/woocommerce-admin-taxonomies.php:29 -#: admin/woocommerce-admin-taxonomies.php:123 -msgid "Subcategories" -msgstr "Unterkategorien" - -#: admin/woocommerce-admin-taxonomies.php:30 -#: admin/woocommerce-admin-taxonomies.php:124 -msgid "Both" -msgstr "Beide" - -#: admin/woocommerce-admin-taxonomies.php:34 -#: admin/woocommerce-admin-taxonomies.php:129 -msgid "Thumbnail" -msgstr "Vorschaubild" - -#: admin/woocommerce-admin-taxonomies.php:38 -#: admin/woocommerce-admin-taxonomies.php:134 -msgid "Upload/Add image" -msgstr "Hochladen/ Bild hinzufügen" - -#: admin/woocommerce-admin-taxonomies.php:39 -#: admin/woocommerce-admin-taxonomies.php:135 -msgid "Remove image" -msgstr "Bild entfernen" - -#: admin/woocommerce-admin-taxonomies.php:64 -#: admin/woocommerce-admin-taxonomies.php:156 -msgid "Use image" -msgstr "Bild verwenden" - -#: admin/woocommerce-admin-taxonomies.php:222 -msgid "" -"Product categories for your store can be managed here. To change the order " -"of categories on the front-end you can drag and drop to sort them. To see " -"more categories listed click the \"screen options\" link at the top of the " -"page." -msgstr "" -"Hier können Sie die Produktkategorien für Ihren Shop verwalten. Um die " -"Reihenfolge der Kategorien in der Besucheransicht (Frontend) zu ändern, " -"können Sie diese via Drag & Drop zur gewünschten Position ziehen. Um " -"mehr Kategorien pro Bearbeiten-Seite auflisten zu lassen, klicken Sie bitte " -"oben rechts auf den Tab \"Optionen einblenden\"." - -#: admin/woocommerce-admin-taxonomies.php:237 -msgid "" -"Shipping classes can be used to group products of similar type. These groups " -"can then be used by certain shipping methods to provide different rates to " -"different products." -msgstr "" -"Versandgruppen können verwendet werden, um Produkte ähnlichen Typs " -"zusammenzufassen. Jede Gruppe kann dann von bestimmen Versandmethoden " -"genutzt werden, um verschiedene Versandgebühren für verschiedene Produkte/ " -"Produktgruppen erheben zu können." - -#: admin/woocommerce-admin-taxonomies.php:365 -msgid "Edit Class" -msgstr "Klasse bearbeiten" - -#: admin/woocommerce-admin-users.php:26 -msgid "Billing Address" -msgstr "Rechnungsanschrift" - -#: admin/woocommerce-admin-users.php:27 -msgid "Shipping Address" -msgstr "Versandanschrift" - -#: admin/woocommerce-admin-users.php:28 -msgid "Paying Customer?" -msgstr "Zahlender Kunde?" - -#: admin/woocommerce-admin-users.php:29 -msgid "Completed Orders" -msgstr "Abgeschlossene Bestellungen" - -#: admin/woocommerce-admin-users.php:144 -msgid "Customer Billing Address" -msgstr "Rechnungsanschrift des Kunden" - -#: admin/woocommerce-admin-users.php:147 admin/woocommerce-admin-users.php:196 -msgid "First name" -msgstr "Vorname" - -#: admin/woocommerce-admin-users.php:151 admin/woocommerce-admin-users.php:200 -msgid "Last name" -msgstr "Nachname" - -#: admin/woocommerce-admin-users.php:176 -msgid "Country or state code" -msgstr "Länder-/ Staatencode" - -#: admin/woocommerce-admin-users.php:180 admin/woocommerce-admin-users.php:229 -msgid "2 letter Country code" -msgstr "Ländercode, 2 Buchstaben" - -#: admin/woocommerce-admin-users.php:183 -msgid "Telephone" -msgstr "Telefon" - -#: admin/woocommerce-admin-users.php:193 -msgid "Customer Shipping Address" -msgstr "Versandanschrift des Kunden" - -#: admin/woocommerce-admin-users.php:225 -msgid "State/County or state code" -msgstr "Bundesland/ Kanton oder Bundesstaaten-Code" - -#. Plugin URI of the plugin/theme -msgid "http://www.woothemes.com/woocommerce/" -msgstr "http://www.woothemes.com/woocommerce/" - -#. Description of the plugin/theme -msgid "An e-commerce toolkit that helps you sell anything. Beautifully." -msgstr "" -"Ein E-Commerce Werkzeugkasten der dir hilft alles zu verkaufen. Fantastisch, " -"oder?" - -#. Author of the plugin/theme -msgid "WooThemes" -msgstr "WooThemes" - -#. Author URI of the plugin/theme -msgid "http://woothemes.com" -msgstr "http://woothemes.com" - -#~ msgid "Any customer" -#~ msgstr "Jeder Kunde" - -#~ msgid "" -#~ "Comma separate email addresses to restrict this coupon to specific " -#~ "billing and user emails." -#~ msgstr "" -#~ "Kommagetrennte E-Mail-Adressen, um diesen Gutschein auf ausgewählte " -#~ "Rechnungs- bzw. Kunden-E-Mail-Adressen zu beschränken." - -#~ msgid "Cost" -#~ msgstr "Kosten" diff --git a/i18n/languages/woocommerce-admin-de_DE.mo b/i18n/languages/woocommerce-admin-de_DE.mo deleted file mode 100644 index 60093ff06c6..00000000000 Binary files a/i18n/languages/woocommerce-admin-de_DE.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-admin-de_DE.po b/i18n/languages/woocommerce-admin-de_DE.po deleted file mode 100644 index f34aee1a41e..00000000000 --- a/i18n/languages/woocommerce-admin-de_DE.po +++ /dev/null @@ -1,5683 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce 2.0.9 Admin\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-05-10 11:38:26+00:00\n" -"PO-Revision-Date: 2013-06-06 19:29+0100\n" -"Last-Translator: Birgit Olzem \n" -"Language-Team: Inpsyde GmbH \n" -"Language: german\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Poedit 1.5.5\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2\n" -"X-Poedit-Basepath: ../../../\n" - -#: admin/importers/importers-init.php:13 -msgid "WooCommerce Tax Rates (CSV)" -msgstr "WooCommerce Steuersätze (CSV)" - -#: admin/importers/importers-init.php:13 -msgid "Import tax rates to your store via a csv file." -msgstr "Steuersätze in Ihren Shop via CSV-Datei importieren." - -#: admin/importers/tax-rates-importer.php:103 -#: admin/importers/tax-rates-importer.php:186 -#: admin/importers/tax-rates-importer.php:226 -#: admin/importers/tax-rates-importer.php:241 -msgid "Sorry, there has been an error." -msgstr "Bedaure, aber es trat ein Fehler auf." - -#: admin/importers/tax-rates-importer.php:104 -msgid "The file does not exist, please try again." -msgstr "Die Datei existiert nicht. Bitte versuchen Sie es erneut." - -#: admin/importers/tax-rates-importer.php:187 -msgid "The CSV is invalid." -msgstr "Die CSV-Datei ist ungültig." - -#: admin/importers/tax-rates-importer.php:198 -msgid "" -"Import complete - imported %s tax rates and skipped " -"%s." -msgstr "" -"Import abgeschlossen. Es wurden %s Steuersätze importiert " -"und %s Steuersätze übersprungen." - -#: admin/importers/tax-rates-importer.php:208 -msgid "All done!" -msgstr "Alles erledigt!" - -#: admin/importers/tax-rates-importer.php:208 -msgid "View Tax Rates" -msgstr "Steuersätze ansehen" - -#: admin/importers/tax-rates-importer.php:259 -msgid "Import Tax Rates" -msgstr "Steuersätze importieren" - -#: admin/importers/tax-rates-importer.php:282 -msgid "" -"Hi there! Upload a CSV file containing tax rates to import the contents into " -"your shop. Choose a .csv file to upload, then click \"Upload file and import" -"\"." -msgstr "" -"Hallo! Laden Sie eine CSV-Datei mit Steuersätzen hoch und importieren Sie " -"deren Inhalte in Ihren Shop. Wählen Sie eine .csv-Datei zum " -"Hochladen aus und wählen Sie danach \"Datei hochladen und importieren\"." - -#: admin/importers/tax-rates-importer.php:284 -msgid "" -"Tax rates need to be defined with columns in a specific order (10 columns). " -"Click here to download a sample." -msgstr "" -"Steuersätze müssen mit Spalten in einer bestimmten Reihenfolge definiert " -"werden (10 Spalten). Klicken Sie hier, um eine Beispieldatei " -"herunterzuladen." - -#: admin/importers/tax-rates-importer.php:292 -msgid "" -"Before you can upload your import file, you will need to fix the following " -"error:" -msgstr "" -"Bevor Sie Ihre Importdatei hochladen können, müssen Sie folgenden Fehler " -"beheben:" - -#: admin/importers/tax-rates-importer.php:301 -msgid "Choose a file from your computer:" -msgstr "Wählen Sie eine Datei von Ihrem Rechner:" - -#: admin/importers/tax-rates-importer.php:307 -msgid "Maximum size: %s" -msgstr "Maximale Größe: %s" - -#: admin/importers/tax-rates-importer.php:312 -msgid "OR enter path to file:" -msgstr "ODER geben Sie den Pfad zu einer Datei an:" - -#: admin/importers/tax-rates-importer.php:319 -msgid "Delimiter" -msgstr "Trennzeichen" - -#: admin/importers/tax-rates-importer.php:325 -msgid "Upload file and import" -msgstr "Datei hochladen und importieren" - -#: admin/includes/duplicate_product.php:23 -msgid "No product to duplicate has been supplied!" -msgstr "Es wurde kein Produkt zum Duplizieren angegeben!" - -#: admin/includes/duplicate_product.php:43 -msgid "Product creation failed, could not find original product:" -msgstr "" -"Die Produkterstellung schlug fehl - das Originalprodukt wurde nicht gefunden:" - -#: admin/includes/duplicate_product.php:90 -msgid "(Copy)" -msgstr "(Kopieren)" - -#: admin/includes/notice-install.php:6 -msgid "" -"Welcome to WooCommerce – You're almost ready to start " -"selling :)" -msgstr "" -"Willkommen bei WooCommerce! – Fast fertig - gleich " -"kann es losgehen mit dem Verkaufen ;-)" - -#: admin/includes/notice-install.php:7 -msgid "Install WooCommerce Pages" -msgstr "WooCommerce-Seiten installieren" - -#: admin/includes/notice-install.php:7 -msgid "Skip setup" -msgstr "Einrichtung überspringen" - -#: admin/includes/notice-theme-support.php:6 -msgid "" -"Your theme does not declare WooCommerce support – if " -"you encounter layout issues please read our integration guide or choose a " -"WooCommerce theme :)" -msgstr "" -"Ihr aktives Theme hat keine WooCommerce Unterstützung deklariert – Falls Sie Layout-Probleme entdecken sollten, lesen Sie bitte " -"unsere Theme-Integrationsanleitung oder entscheiden Sie sich für eine " -"WooCommerce Theme :)." - -#: admin/includes/notice-theme-support.php:7 -msgid "Theme Integration Guide" -msgstr "Theme-Integrationsanleitung (Engl.)" - -#: admin/includes/notice-theme-support.php:7 -msgid "Hide this notice" -msgstr "Diesen Hinweis ausblenden" - -#: admin/includes/notice-update.php:6 -msgid "" -"Data Update Required – We just need to update your " -"install to the latest version" -msgstr "" -"Aktualisierung der Daten erforderlich! – Wir müssen " -"Ihre Installation auf die neueste Version aktualisieren." - -#: admin/includes/notice-update.php:7 -msgid "Run the updater" -msgstr "Die Aktualisierung jetzt starten" - -#: admin/includes/notice-update.php:12 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Es wird dringend empfohlen, dass Sie eine Datenbank-Sicherung Ihrer " -"WordPress-Installation anlegen. Sind Sie sicher, dass Sie die Aktualisierung " -"jetzt starten wollen?" - -#: admin/includes/updates/woocommerce-update-2.0.php:49 -#: admin/woocommerce-admin-init.php:885 -msgctxt "slug" -msgid "product-category" -msgstr "produktkategorie" - -#: admin/includes/updates/woocommerce-update-2.0.php:50 -#: admin/woocommerce-admin-init.php:898 -msgctxt "slug" -msgid "product-tag" -msgstr "produkt-stichwort" - -#: admin/includes/updates/woocommerce-update-2.0.php:58 -msgctxt "slug" -msgid "product" -msgstr "produkt" - -#: admin/includes/updates/woocommerce-update-2.0.php:179 -#: admin/woocommerce-admin-install.php:207 -msgctxt "page_slug" -msgid "lost-password" -msgstr "passwort-verloren" - -#: admin/includes/updates/woocommerce-update-2.0.php:179 -#: admin/woocommerce-admin-install.php:207 -#: admin/woocommerce-admin-status.php:335 -msgid "Lost Password" -msgstr "Passwort verloren" - -#: admin/includes/welcome.php:48 -msgid "Welcome to WooCommerce" -msgstr "Willkommen bei WooCommerce" - -#: admin/includes/welcome.php:135 -msgid "Welcome to WooCommerce %s" -msgstr "Willkommen WooCommerce %s" - -#: admin/includes/welcome.php:140 -msgid "Thanks, all done!" -msgstr "Danke, alles erledigt!" - -#: admin/includes/welcome.php:142 -msgid "Thank you for updating to the latest version!" -msgstr "Danke, dass Sie auf die neueste Version aktualisiert haben!" - -#: admin/includes/welcome.php:144 -msgid "Thanks for installing!" -msgstr "Danke fürs Installieren!" - -#: admin/includes/welcome.php:146 -msgid "" -"%s WooCommerce %s is more powerful, stable, and secure than ever before. We " -"hope you enjoy it." -msgstr "" -"%s WooCommerce %s ist noch funktionsreicher, stabiler und sicherer als " -"jemals zuvor. Wir hoffen, Ihnen gefällt diese Version." - -#: admin/includes/welcome.php:150 -msgid "Version %s" -msgstr "Version %s" - -#: admin/includes/welcome.php:153 admin/woocommerce-admin-content.php:41 -#: admin/woocommerce-admin-init.php:88 admin/woocommerce-admin-status.php:278 -msgid "Settings" -msgstr "Einstellungen" - -#: admin/includes/welcome.php:154 -msgid "Docs" -msgstr "Dokumentation" - -#: admin/includes/welcome.php:161 -msgid "What's New" -msgstr "Was neu ist" - -#: admin/includes/welcome.php:163 -msgid "Credits" -msgstr "Danksagungen" - -#: admin/includes/welcome.php:186 -msgid "Security in mind" -msgstr "Sicherheit immer dabei" - -#: admin/includes/welcome.php:190 -msgid "Sucuri Safe Plugin" -msgstr "Sucuri-gesichertes Plugin" - -#: admin/includes/welcome.php:191 -msgid "" -"You will be happy to learn that WooCommerce has been audited and certified " -"by the Sucuri Security team. Whilst there is not much to be seen visually to " -"understand the amount of work that went into this audit, rest assured that " -"your website is powered by one of the most powerful and stable eCommerce " -"plugins available." -msgstr "" -"Sie werden froh sein, zu erfahren, dass WooCommerce vom Sucuri " -"Sicherheitsteam geprüft und zertifiziert wurde. Während es visuell nicht " -"viel zu sehen gibt, um die Menge der Arbeit zu verstehen, welche in diese " -"Prüfung geflossen ist, so können Sie doch sicher sein, dass Ihre Webseite " -"von einem der sichersten eCommerce-Plugins angetrieben wird." - -#: admin/includes/welcome.php:194 -msgid "A Smoother Admin Experience" -msgstr "Ein verbessertes Erlebnis im Adminbereich" - -#: admin/includes/welcome.php:200 -msgid "New Product Panel" -msgstr "Neues Produkt-Panel" - -#: admin/includes/welcome.php:201 -msgid "" -"We have revised the product data panel making it cleaner, more streamlined, " -"and more logical. Adding products is a breeze!" -msgstr "" -"Wir haben das Produktdaten-Panel überarbeitet: klarer strukturiert und vor " -"allem logischer. Produkte hinzuzufügen geht jetzt mehr \"wie im Nu\" :)." - -#: admin/includes/welcome.php:206 -msgid "Nicer Order Screens" -msgstr "Schönere Bestell-Übersichtsfenster" - -#: admin/includes/welcome.php:207 -msgid "" -"Order pages have had a cleanup, with a more easily scannable interface. We " -"particularly like the new status icons!" -msgstr "" -"Die Bestellseiten wurden gestrafft und sind nun besser visuell zu erfassen. " -"Wir mögen besonders die neuen Status-Icons!" - -#: admin/includes/welcome.php:212 -msgid "Multi-Download Support" -msgstr "Multi-Download-Unterstützung" - -#: admin/includes/welcome.php:213 -msgid "" -"Products can have multiple downloadable files - purchasers will get access " -"to all the files added." -msgstr "" -"Produkte können nun mehrere herunterladbare Dateien haben - Käufer erhalten " -"dann Zugriff auf alle hinzugefügten Dateien." - -#: admin/includes/welcome.php:218 -msgid "Less Taxing Taxes" -msgstr "Weniger anstrengende Steuern" - -#: admin/includes/welcome.php:224 -msgid "New Tax Input Panel" -msgstr "Neues Steuern-Eingabe-Panel" - -#: admin/includes/welcome.php:225 -msgid "" -"The tax input pages have been streamlined to make inputting taxes simpler - " -"adding multiple taxes for a single jurisdiction is now much easier using the " -"priority system. There is also CSV import/export support." -msgstr "" -"Die Seiten zur Steuern-Eingabe wurden gestrafft, um die Pflege zu " -"erleichtern. Mehrere Steuern für eine einzelne Zuständigkeit sind jetzt viel " -"leichter anzulegen mit dem neuen Prioritätssystem. Es gibt außerdem eine " -"Import-/ Exportfunktion via CSV-Datei." - -#: admin/includes/welcome.php:229 -msgid "Improved Tax Options" -msgstr "Verbesserte Steuer-Optionen" - -#: admin/includes/welcome.php:230 -msgid "" -"As requested by some users, we now support taxing the billing address " -"instead of shipping (optional), and we allow you to choose which tax class " -"applies to shipping." -msgstr "" -"Wie oft angefragt von Benutzern, unterstützen wir jetzt auch das Besteuern " -"der Rechnungsanschrift, statt der Versandanschrift (optional). Und, wir " -"erlauben Ihnen die Wahl, welche Steuerklasse für den Versand gilt." - -#: admin/includes/welcome.php:235 -msgid "Product Listing Improvements Customers Will Love" -msgstr "" -"Verbesserungen bei den Produktauflistungen, welche die Kunden lieben werden" - -#: admin/includes/welcome.php:241 -msgid "New Sorting Options" -msgstr "Neue Filteroptionen" - -#: admin/includes/welcome.php:242 -msgid "Customers can now sort products by popularity and ratings." -msgstr "Kunden können Produkte jetzt nach Beliebtheit und Bewertungen filtern." - -#: admin/includes/welcome.php:247 -msgid "Better Pagination and Result Counts" -msgstr "Bessere Paginierung und Ergebniszähler" - -#: admin/includes/welcome.php:248 -msgid "" -"Numbered pagination has been added to core, and we show the number of " -"results found above the listings." -msgstr "" -"Nummerische Pagination wurde dem WooCommerce-Core hinzugefügt. Und, wir " -"zeigen die Anzahl der Treffer über den Auflistungen." - -#: admin/includes/welcome.php:253 -msgid "Inline Star Rating Display" -msgstr "Inline-Anzeige der Bewertungs-Sterne" - -#: admin/includes/welcome.php:254 -msgid "" -"We have added star ratings to the catalog which are pulled from reviews." -msgstr "" -"Wir haben Bewertungs-Sterne dem Produktkatalog hinzugefügt, welche von den " -"Produktbewertungen \"gezogen\" werden." - -#: admin/includes/welcome.php:262 -msgid "Under the Hood" -msgstr "Unter der Oberfläche" - -#: admin/includes/welcome.php:266 -msgid "New product classes" -msgstr "Neue Produktklassen" - -#: admin/includes/welcome.php:267 -msgid "" -"The product classes have been rewritten and are now factory based. Much more " -"extendable, and easier to query products using the new get_product() function." -msgstr "" -"Die Produktklassen wurden neu geschrieben und sind nun werksbasiert. Viel " -"besser erweiterbar und es ist einfacher, Produkte abzufragen über die neue " -"Funktion get_product()." - -#: admin/includes/welcome.php:271 -msgid "Capability overhaul" -msgstr "Überarbeitung der Berechtigungen" - -#: admin/includes/welcome.php:272 -msgid "" -"More granular capabilities for admin/shop manager roles covering products, " -"orders and coupons." -msgstr "" -"Berechtigungen für Administratoren und Shop-Manager können viel feiner " -"justiert werden und decken Produkte, Bestellungen sowie Gutscheine ab." - -#: admin/includes/welcome.php:276 -msgid "API Improvements" -msgstr "Schnittstellen-Verbesserungen (API)" - -#: admin/includes/welcome.php:277 -msgid "" -"WC-API now has real endpoints, and we've optimised the gateways " -"API significantly by only loading gateways when needed." -msgstr "" -"WC-API besitzt nun reale Endpunkte und wir haben die " -"Schnittstelle für die Zahlungsweisen signifikant verbessert, indem " -"Zahlungsweisen nur noch geladen werden, wenn sie benötigt werden." - -#: admin/includes/welcome.php:283 -msgid "Cache-friendly cart widgets" -msgstr "Cache-freundliche Warenkorb-Widgets" - -#: admin/includes/welcome.php:284 -msgid "" -"Cart widgets and other \"fragments\" are now pulled in via AJAX - this works " -"wonders with static page caching." -msgstr "" -"Warenkorb-Widgets und andere \"Fragemente\" werden nun via AJAX geladen. Das " -"wirkt Wunder beim Cachen statischer Seiten." - -#: admin/includes/welcome.php:288 -msgid "Session handling" -msgstr "Session-Handling" - -#: admin/includes/welcome.php:289 -msgid "" -"PHP SESSIONS have been a problem for many users in the past, so we've " -"developed our own handler using cookies and options to make these more " -"reliable." -msgstr "" -"PHP-SESSIONS waren in der Vergangenheit ein Problem für viele Anwender. " -"Daher haben wir unser eigenes Handling-System entwickelt, welches mit " -"Cookies und Optionen arbeitet, damit dies alles zuverlässiger funktioniert." - -#: admin/includes/welcome.php:293 -msgid "Retina Ready" -msgstr "Bereit für hochauflösende Displays" - -#: admin/includes/welcome.php:294 -msgid "All graphics within WC have been optimised for HiDPI displays." -msgstr "" -"Alle Grafiken innerhalb von WooCommerce wurden optimiert für HiDPI- bzw. " -"Retina-Displays." - -#: admin/includes/welcome.php:301 -msgid "Better stock handling" -msgstr "Bessere Lagerverwaltung" - -#: admin/includes/welcome.php:302 -msgid "" -"We have added an option to hold stock for unpaid orders (defaults to " -"60mins). When this time limit is reached, and the order is not paid for, " -"stock is released and the order is cancelled." -msgstr "" -"Wir haben eine Option hinzugefügt, das Lager für unbezahlte Bestellungen " -"\"anzuhalten\" (Standard: 60 Minuten). Wenn dieses Zeitlimit erreicht ist " -"und die Bestellung nicht bezahlt wurde, wird das Lager wieder freigegeben " -"und die Bestellung abgebrochen." - -#: admin/includes/welcome.php:306 -msgid "Improved Line-item storage" -msgstr "Verbesserte Speicherung von Produktpositionen" - -#: admin/includes/welcome.php:307 -msgid "" -"We have changed how order items get stored making them easier (and faster) " -"to access for reporting. Order items are no longer serialised within an " -"order - they are stored within their own table." -msgstr "" -"Wir haben die Art und Weise geändert, wie Produkte gespeichert werden, damit " -"sie einfacher (und schneller) für Berichte/ Statistiken zur Verfügung " -"stehen. Bestell-Daten werden nicht länger serialisiert (serialised) " -"innerhalb einer Bestellung - sie werden innerhalb ihrer eigenen Tabelle " -"abgespeichert." - -#: admin/includes/welcome.php:311 -msgid "Autoload" -msgstr "Automatisches Laden von Klassen (Autoload)" - -#: admin/includes/welcome.php:312 -msgid "" -"We have setup autoloading for classes - this has dramatically reduced memory " -"usage in 2.0." -msgstr "" -"Wir haben das automatische Laden von Klassen eingerichtet. Dies hat den " -"(PHP-) Speicherverbrauch dramatisch reduziert in WooCommerce Version 2.0+." - -#: admin/includes/welcome.php:319 -msgid "Go to WooCommerce Settings" -msgstr "Zu den WooCommerce Einstellungen gehen →" - -#: admin/includes/welcome.php:337 -msgid "" -"WooCommerce is developed and maintained by a worldwide team of passionate " -"individuals and backed by an awesome developer community. Want to see your " -"name? Contribute to WooCommerce." -msgstr "" -"WooCommerce wird entwickelt und gepflegt von einem weltweiten Team von " -"vielen leidenschaftlichen Einzelpersonen hinter denen eine wunderbare " -"Entwickler-Community steht. Sie wollen Ihren Namen dabei sehen? Tragen Sie bei zu WooCommerce." - -#: admin/includes/welcome.php:363 -msgid "View %s" -msgstr "%s ansehen" - -#: admin/post-types/product.php:31 -msgid "Make a duplicate from this product" -msgstr "Duplikat von diesem Produkt erstellen" - -#: admin/post-types/product.php:32 -msgid "Duplicate" -msgstr "Duplizieren" - -#: admin/post-types/product.php:61 -msgid "Copy to a new draft" -msgstr "Zu neuem Entwurf kopieren" - -#: admin/post-types/product.php:86 admin/woocommerce-admin-taxonomies.php:297 -msgid "Image" -msgstr "Bild" - -#: admin/post-types/product.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:376 -#: admin/post-types/writepanels/writepanel-product_data.php:470 -#: admin/woocommerce-admin-attributes.php:233 -#: admin/woocommerce-admin-attributes.php:269 -#: admin/woocommerce-admin-attributes.php:307 -#: admin/woocommerce-admin-attributes.php:330 -#: admin/woocommerce-admin-attributes.php:374 -#: admin/woocommerce-admin-attributes.php:399 -#: admin/woocommerce-admin-init.php:437 -msgid "Name" -msgstr "Name" - -#: admin/post-types/product.php:91 admin/post-types/product.php:557 -#: admin/post-types/writepanels/variation-admin-html.php:52 -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#: admin/woocommerce-admin-reports.php:2099 -#: admin/woocommerce-admin-reports.php:2135 -msgid "SKU" -msgstr "Art.-Nr." - -#: admin/post-types/product.php:94 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:83 -#: admin/woocommerce-admin-content.php:63 -#: admin/woocommerce-admin-reports.php:90 -msgid "Stock" -msgstr "Lager" - -#: admin/post-types/product.php:96 admin/post-types/product.php:568 -#: admin/post-types/product.php:789 admin/woocommerce-admin-functions.php:202 -msgid "Price" -msgstr "Preis" - -#: admin/post-types/product.php:98 -msgid "Categories" -msgstr "Kategorien" - -#: admin/post-types/product.php:99 -msgid "Tags" -msgstr "Schlagwörter" - -#: admin/post-types/product.php:100 admin/post-types/product.php:632 -#: admin/post-types/product.php:906 -#: admin/post-types/writepanels/writepanel-product_data.php:1058 -#: admin/woocommerce-admin-init.php:450 -msgid "Featured" -msgstr "Empfohlen" - -#: admin/post-types/product.php:101 admin/woocommerce-admin-attributes.php:251 -#: admin/woocommerce-admin-attributes.php:309 -#: admin/woocommerce-admin-attributes.php:386 -msgid "Type" -msgstr "Typ" - -#: admin/post-types/product.php:102 admin/post-types/shop_order.php:50 -msgid "Date" -msgstr "Datum" - -#: admin/post-types/product.php:151 -msgid "Edit this item" -msgstr "Dieses Element bearbeiten" - -#: admin/post-types/product.php:151 -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#: admin/post-types/writepanels/writepanel-order_data.php:387 -#: admin/post-types/writepanels/writepanel-product_data.php:1061 -#: admin/woocommerce-admin-attributes.php:323 -msgid "Edit" -msgstr "Bearbeiten" - -#: admin/post-types/product.php:152 -msgid "Edit this item inline" -msgstr "Dieses Element inline bearbeiten" - -#: admin/post-types/product.php:152 -msgid "Quick Edit" -msgstr "Schnellbearbeitung" - -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore this item from the Trash" -msgstr "Dieses Element aus dem Papierkorb wiederherstellen." - -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore" -msgstr "Wiederherstellen" - -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Move this item to the Trash" -msgstr "Dieses Element in den Papierkorb verschieben" - -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Trash" -msgstr "Papierkorb" - -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -msgid "Delete this item permanently" -msgstr "Dieses Element dauerhaft löschen" - -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -#: admin/post-types/writepanels/writepanel-order_data.php:463 -msgid "Delete Permanently" -msgstr "Dauerhaft löschen" - -#: admin/post-types/product.php:165 -msgid "Preview “%s”" -msgstr "Vorschau “%s”" - -#: admin/post-types/product.php:165 -msgid "Preview" -msgstr "Vorschau" - -#: admin/post-types/product.php:167 -msgid "View “%s”" -msgstr "Ansehen “%s”" - -#: admin/post-types/product.php:167 admin/post-types/shop_order.php:171 -msgid "View" -msgstr "Anzeigen" - -#: admin/post-types/product.php:214 -msgid "Grouped" -msgstr "Gruppiert" - -#: admin/post-types/product.php:216 -msgid "External/Affiliate" -msgstr "Extern/ Affiliate" - -#: admin/post-types/product.php:220 admin/post-types/product.php:407 -#: admin/post-types/writepanels/variation-admin-html.php:174 -#: admin/post-types/writepanels/writepanel-product_data.php:52 -msgid "Virtual" -msgstr "Virtuell" - -#: admin/post-types/product.php:222 admin/post-types/product.php:403 -#: admin/post-types/writepanels/variation-admin-html.php:172 -#: admin/post-types/writepanels/writepanel-product_data.php:58 -msgid "Downloadable" -msgstr "Herunterladbar" - -#: admin/post-types/product.php:224 -msgid "Simple" -msgstr "Einfach" - -#: admin/post-types/product.php:228 admin/post-types/product.php:387 -msgid "Variable" -msgstr "Variable" - -#: admin/post-types/product.php:251 -msgid "Toggle featured" -msgstr "Empfohlene Auf-/ Zuklappen" - -#: admin/post-types/product.php:253 -msgid "yes" -msgstr "ja" - -#: admin/post-types/product.php:255 -msgid "no" -msgstr "nein" - -#: admin/post-types/product.php:262 admin/post-types/product.php:641 -#: admin/post-types/product.php:930 -#: admin/post-types/writepanels/writepanel-product_data.php:231 -msgid "In stock" -msgstr "Auf Lager" - -#: admin/post-types/product.php:264 admin/post-types/product.php:642 -#: admin/post-types/product.php:931 -#: admin/post-types/writepanels/writepanel-product_data.php:232 -#: admin/woocommerce-admin-reports.php:2119 -msgid "Out of stock" -msgstr "Vergriffen" - -#: admin/post-types/product.php:373 -msgid "Show all product types" -msgstr "Alle Produkttypen" - -#: admin/post-types/product.php:381 -#: admin/post-types/writepanels/writepanel-product_data.php:39 -msgid "Grouped product" -msgstr "Gruppiertes Produkt" - -#: admin/post-types/product.php:383 -#: admin/post-types/writepanels/writepanel-product_data.php:40 -msgid "External/Affiliate product" -msgstr "Externes/ Affiliate-Produkt" - -#: admin/post-types/product.php:385 -#: admin/post-types/writepanels/writepanel-product_data.php:38 -msgid "Simple product" -msgstr "Einfaches Produkt" - -#: admin/post-types/product.php:399 -msgid "Show all sub-types" -msgstr "Alle Unter-Typen" - -#: admin/post-types/product.php:520 -msgid "[%s with SKU of %s]" -msgstr "[%s mit Art.-Nr. von %s]" - -#: admin/post-types/product.php:526 -msgid "[%s with ID of %d]" -msgstr "[%s mit ID von %d]" - -#: admin/post-types/product.php:552 admin/post-types/product.php:783 -#: admin/post-types/writepanels/writepanels-init.php:46 -#: admin/settings/settings-init.php:508 -msgid "Product Data" -msgstr "Produktdaten" - -#: admin/post-types/product.php:570 -msgid "Regular price" -msgstr "Regulärer Preis" - -#: admin/post-types/product.php:575 admin/post-types/product.php:813 -msgid "Sale" -msgstr "Aktion" - -#: admin/post-types/product.php:577 -msgid "Sale price" -msgstr "Aktionspreis" - -#: admin/post-types/product.php:588 admin/post-types/product.php:839 -#: admin/post-types/writepanels/variation-admin-html.php:96 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:273 -msgid "Weight" -msgstr "Gewicht" - -#: admin/post-types/product.php:599 admin/post-types/product.php:863 -msgid "L/W/H" -msgstr "L/B/H" - -#: admin/post-types/product.php:601 admin/post-types/product.php:879 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:85 -#: admin/post-types/writepanels/writepanel-product_data.php:286 -msgid "Length" -msgstr "Länge" - -#: admin/post-types/product.php:602 admin/post-types/product.php:880 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:86 -#: admin/post-types/writepanels/writepanel-product_data.php:287 -#: admin/woocommerce-admin-settings.php:797 -msgid "Width" -msgstr "Breite" - -#: admin/post-types/product.php:603 admin/post-types/product.php:881 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:87 -#: admin/post-types/writepanels/writepanel-product_data.php:288 -#: admin/woocommerce-admin-settings.php:799 -msgid "Height" -msgstr "Höhe" - -#: admin/post-types/product.php:613 admin/post-types/product.php:887 -msgid "Visibility" -msgstr "Sichtbarkeit" - -#: admin/post-types/product.php:618 admin/post-types/product.php:893 -msgid "Catalog & search" -msgstr "Katalog & Suche" - -#: admin/post-types/product.php:619 admin/post-types/product.php:894 -#: admin/post-types/writepanels/writepanel-product_data.php:1047 -#: admin/woocommerce-admin-content.php:46 -#: admin/woocommerce-admin-settings.php:183 -msgid "Catalog" -msgstr "Katalog" - -#: admin/post-types/product.php:620 admin/post-types/product.php:895 -#: admin/post-types/writepanels/writepanel-product_data.php:1048 -msgid "Search" -msgstr "Suche" - -#: admin/post-types/product.php:621 admin/post-types/product.php:896 -#: admin/post-types/writepanels/writepanel-product_data.php:1049 -msgid "Hidden" -msgstr "Verborgen" - -#: admin/post-types/product.php:636 admin/post-types/product.php:924 -msgid "In stock?" -msgstr "Am Lager?" - -#: admin/post-types/product.php:657 admin/post-types/product.php:942 -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Manage stock?" -msgstr "Lager verwalten?" - -#: admin/post-types/product.php:661 admin/post-types/product.php:961 -#: admin/post-types/product.php:977 -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "Stock Qty" -msgstr "Lagermenge" - -#: admin/post-types/product.php:794 admin/post-types/product.php:818 -#: admin/post-types/product.php:844 admin/post-types/product.php:868 -#: admin/post-types/product.php:892 admin/post-types/product.php:911 -#: admin/post-types/product.php:929 admin/post-types/product.php:947 -#: admin/post-types/product.php:966 -msgid "— No Change —" -msgstr "— Keine Änderung —" - -#: admin/post-types/product.php:795 admin/post-types/product.php:819 -#: admin/post-types/product.php:845 admin/post-types/product.php:869 -#: admin/post-types/product.php:967 -msgid "Change to:" -msgstr "Ändern zu:" - -#: admin/post-types/product.php:796 admin/post-types/product.php:820 -msgid "Increase by (fixed amount or %):" -msgstr "Erhöhen um (fester Betrag oder %):" - -#: admin/post-types/product.php:797 admin/post-types/product.php:821 -msgid "Decrease by (fixed amount or %):" -msgstr "Vermindern um (fester Betrag oder %):" - -#: admin/post-types/product.php:807 admin/post-types/product.php:832 -msgid "Enter price" -msgstr "Preis eingeben" - -#: admin/post-types/product.php:822 -msgid "Decrease regular price by (fixed amount or %):" -msgstr "Regulären Preis vermindern um (fester Betrag oder %):" - -#: admin/post-types/product.php:912 admin/post-types/product.php:948 -#: admin/post-types/shop_order.php:190 admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:286 -msgid "Yes" -msgstr "Ja" - -#: admin/post-types/product.php:913 admin/post-types/product.php:949 -#: admin/post-types/shop_order.php:192 admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:286 -msgid "No" -msgstr "Nein" - -#: admin/post-types/product.php:1183 -msgid "Sort Products" -msgstr "Produkte sortieren" - -#: admin/post-types/product.php:1222 -msgid "Insert into product" -msgstr "In Produkt einfügen" - -#: admin/post-types/product.php:1223 -msgid "Uploaded to this product" -msgstr "Hochgeladen für dieses Produkt" - -#: admin/post-types/shop_coupon.php:25 -msgid "Code" -msgstr "Gutschein-Code" - -#: admin/post-types/shop_coupon.php:26 -msgid "Coupon type" -msgstr "Gutscheintyp" - -#: admin/post-types/shop_coupon.php:27 -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Coupon amount" -msgstr "Gutscheinbetrag" - -#: admin/post-types/shop_coupon.php:28 -msgid "Description" -msgstr "Beschreibung" - -#: admin/post-types/shop_coupon.php:29 -msgid "Product IDs" -msgstr "Produkt-IDs" - -#: admin/post-types/shop_coupon.php:30 -msgid "Usage / Limit" -msgstr "Verwendung/ Limit" - -#: admin/post-types/shop_coupon.php:31 -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "Expiry date" -msgstr "Ablaufdatum" - -#: admin/post-types/shop_coupon.php:56 -msgid "Edit coupon" -msgstr "Gutschein bearbeiten" - -#: admin/post-types/shop_coupon.php:114 -msgid "%s / %s" -msgstr "%s / %s" - -#: admin/post-types/shop_coupon.php:116 -msgid "%s / ∞" -msgstr "%s / ∞" - -#: admin/post-types/shop_coupon.php:149 -msgid "Show all types" -msgstr "Alle Typen" - -#: admin/post-types/shop_order.php:43 -#: admin/settings/settings-payment-gateways.php:29 -#: admin/settings/settings-shipping-methods.php:31 -msgid "Status" -msgstr "Status" - -#: admin/post-types/shop_order.php:44 -msgid "Order" -msgstr "Bestellung" - -#: admin/post-types/shop_order.php:45 -msgid "Billing" -msgstr "Rechnung" - -#: admin/post-types/shop_order.php:46 -#: admin/post-types/writepanels/writepanel-order_data.php:539 -#: admin/post-types/writepanels/writepanel-product_data.php:81 -#: admin/settings/settings-tax-rates.php:52 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-content.php:49 -#: admin/woocommerce-admin-settings.php:187 -msgid "Shipping" -msgstr "Versand" - -#: admin/post-types/shop_order.php:47 -msgid "Order Total" -msgstr "Gesamtsumme" - -#: admin/post-types/shop_order.php:48 -#: admin/post-types/writepanels/writepanels-init.php:71 -msgid "Order Notes" -msgstr "Bestellnotizen" - -#: admin/post-types/shop_order.php:49 -msgid "Customer Notes" -msgstr "Kundennotizen" - -#: admin/post-types/shop_order.php:51 -#: admin/post-types/writepanels/writepanel-order_data.php:386 -#: admin/post-types/writepanels/writepanel-order_data.php:433 -msgid "Actions" -msgstr "Aktionen" - -#: admin/post-types/shop_order.php:95 -#: admin/post-types/writepanels/writepanel-order_data.php:93 -msgid "Guest" -msgstr "Gast" - -#: admin/post-types/shop_order.php:98 -msgid "Order %s" -msgstr "Bestellung %s" - -#: admin/post-types/shop_order.php:98 -msgid "made by" -msgstr "von" - -#: admin/post-types/shop_order.php:101 -msgid "Email:" -msgstr "E-Mail:" - -#: admin/post-types/shop_order.php:104 -msgid "Tel:" -msgstr "Telefon:" - -#: admin/post-types/shop_order.php:114 admin/post-types/shop_order.php:123 -msgid "Via" -msgstr "Via" - -#: admin/post-types/shop_order.php:131 -msgid "Unpublished" -msgstr "Unveröffentlicht" - -#: admin/post-types/shop_order.php:133 -msgid "Y/m/d g:i:s A" -msgstr "d.m.Y G:i:s" - -#: admin/post-types/shop_order.php:139 -msgid "%s ago" -msgstr "vor %s" - -#: admin/post-types/shop_order.php:141 -msgid "Y/m/d" -msgstr "d.m.Y" - -#: admin/post-types/shop_order.php:158 -#: admin/woocommerce-admin-dashboard.php:176 -msgid "Processing" -msgstr "Abwicklung" - -#: admin/post-types/shop_order.php:165 -msgid "Complete" -msgstr "Abgeschlossen" - -#: admin/post-types/shop_order.php:282 -msgid "Show all statuses" -msgstr "Alle Status" - -#: admin/post-types/shop_order.php:301 admin/post-types/shop_order.php:326 -msgid "Show all customers" -msgstr "Alle Kunden" - -#: admin/post-types/writepanels/order-download-permission-html.php:6 -msgid "Revoke Access" -msgstr "Zugang wiederherstellen" - -#: admin/post-types/writepanels/order-download-permission-html.php:7 -#: admin/post-types/writepanels/variation-admin-html.php:7 -#: admin/post-types/writepanels/writepanel-product_data.php:369 -#: admin/post-types/writepanels/writepanel-product_data.php:463 -#: admin/woocommerce-admin-init.php:439 -msgid "Click to toggle" -msgstr "Klicken zum Aufklappen" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -msgid "File %d: %s" -msgstr "Datei %d: %s" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "%s Mal heruntergeladen" -msgstr[1] "%s Mal heruntergeladen" - -#: admin/post-types/writepanels/order-download-permission-html.php:16 -msgid "Downloads Remaining" -msgstr "Verbleibende Downloads" - -#: admin/post-types/writepanels/order-download-permission-html.php:19 -#: admin/post-types/writepanels/variation-admin-html.php:149 -#: admin/post-types/writepanels/variation-admin-html.php:157 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Unlimited" -msgstr "Unbegrenzt" - -#: admin/post-types/writepanels/order-download-permission-html.php:22 -msgid "Access Expires" -msgstr "Zugang läuft ab" - -#: admin/post-types/writepanels/order-download-permission-html.php:23 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Never" -msgstr "Niemals" - -#: admin/post-types/writepanels/order-fee-html.php:10 -msgid "Fee Name" -msgstr "Name der Gebühr" - -#: admin/post-types/writepanels/order-fee-html.php:17 -#: admin/post-types/writepanels/order-item-html.php:89 -msgid "Tax class" -msgstr "Steuerklasse" - -#: admin/post-types/writepanels/order-fee-html.php:19 -#: admin/post-types/writepanels/order-tax-html.php:8 -#: admin/post-types/writepanels/writepanel-order_data.php:561 -#: admin/post-types/writepanels/writepanel-order_data.php:666 -#: admin/woocommerce-admin-reports.php:1658 -#: admin/woocommerce-admin-reports.php:2671 -#: admin/woocommerce-admin-reports.php:2680 -#: admin/woocommerce-admin-users.php:90 admin/woocommerce-admin-users.php:112 -msgid "N/A" -msgstr "k.A." - -#: admin/post-types/writepanels/order-fee-html.php:20 -#: admin/post-types/writepanels/writepanel-product_data.php:179 -msgid "Taxable" -msgstr "besteuerbar" - -#: admin/post-types/writepanels/order-fee-html.php:25 -#: admin/post-types/writepanels/order-item-html.php:96 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:54 -#: admin/post-types/writepanels/writepanel-product_data.php:186 -#: admin/settings/settings-init.php:972 -#: admin/settings/settings-tax-rates.php:29 -#: admin/woocommerce-admin-settings.php:228 -msgid "Standard" -msgstr "Standard" - -#: admin/post-types/writepanels/order-fee-html.php:43 -#: admin/post-types/writepanels/order-item-html.php:115 -#: admin/woocommerce-admin-reports.php:1562 -#: admin/woocommerce-admin-reports.php:1615 -#: admin/woocommerce-admin-reports.php:2386 -#: admin/woocommerce-admin-reports.php:2555 -#: admin/woocommerce-admin-reports.php:2633 -msgid "Total" -msgstr "Gesamtsumme" - -#: admin/post-types/writepanels/order-item-html.php:10 -msgid "Product ID:" -msgstr "Produkt-ID:" - -#: admin/post-types/writepanels/order-item-html.php:13 -msgid "Variation ID:" -msgstr "Variations-ID:" - -#: admin/post-types/writepanels/order-item-html.php:16 -msgid "Product SKU:" -msgstr "Art.-Nr. des Produkts:" - -#: admin/post-types/writepanels/order-item-html.php:44 -msgid "Add meta" -msgstr "Meta hinzufügen" - -#: admin/post-types/writepanels/order-item-html.php:117 -msgid "Subtotal" -msgstr "Zwischensumme" - -#: admin/post-types/writepanels/order-tax-html.php:6 -msgid "Tax Rate:" -msgstr "Steuersatz:" - -#: admin/post-types/writepanels/order-tax-html.php:16 -#: admin/post-types/writepanels/writepanel-order_data.php:630 -msgid "Sales Tax:" -msgstr "Umsatzsteuer:" - -#: admin/post-types/writepanels/order-tax-html.php:20 -#: admin/post-types/writepanels/writepanel-order_data.php:638 -msgid "Shipping Tax:" -msgstr "Versandsteuer:" - -#: admin/post-types/writepanels/variation-admin-html.php:6 -#: admin/post-types/writepanels/writepanel-product_data.php:368 -#: admin/post-types/writepanels/writepanel-product_data.php:462 -#: admin/woocommerce-admin-init.php:438 -msgid "Remove" -msgstr "Entfernen" - -#: admin/post-types/writepanels/variation-admin-html.php:20 -msgid "Any" -msgstr "Jede" - -#: admin/post-types/writepanels/variation-admin-html.php:52 -msgid "" -"Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "" -"Geben Sie eine Art.-Nr. für diese Variation ein oder lassen Sie das Feld " -"frei, um automatisch die Art.-Nr. des Eltern-Produktes zu verwenden." - -#: admin/post-types/writepanels/variation-admin-html.php:63 -msgid "Stock Qty:" -msgstr "Lagermenge:" - -#: admin/post-types/writepanels/variation-admin-html.php:63 -msgid "" -"Enter a quantity to enable stock management at variation level, or leave " -"blank to use the parent product's options." -msgstr "" -"Geben Sie eine Menge ein, um die Lagerverwaltung auf dem Niveau von " -"Variationen zu aktivieren, oder lassen Sie dies frei, um die Option des " -"übergeordneten Produkts (Elternprodukt) zu verwenden." - -#: admin/post-types/writepanels/variation-admin-html.php:72 -msgid "Regular Price:" -msgstr "Regulärer Preis:" - -#: admin/post-types/writepanels/variation-admin-html.php:73 -msgid "Variation price (required)" -msgstr "Preis der Variation (erforderlich)" - -#: admin/post-types/writepanels/variation-admin-html.php:76 -msgid "Sale Price:" -msgstr "Aktionspreis:" - -#: admin/post-types/writepanels/variation-admin-html.php:76 -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Schedule" -msgstr "Aktionszeitraum" - -#: admin/post-types/writepanels/variation-admin-html.php:76 -msgid "Cancel schedule" -msgstr "Planung abbrechen" - -#: admin/post-types/writepanels/variation-admin-html.php:83 -msgid "Sale start date:" -msgstr "Verkaufs-Startdatum:" - -#: admin/post-types/writepanels/variation-admin-html.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:136 -msgctxt "placeholder" -msgid "From…" -msgstr "Von..." - -#: admin/post-types/writepanels/variation-admin-html.php:87 -msgid "Sale end date:" -msgstr "Verkaufs-Enddatum:" - -#: admin/post-types/writepanels/variation-admin-html.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:137 -msgctxt "placeholder" -msgid "To…" -msgstr "Bis..." - -#: admin/post-types/writepanels/variation-admin-html.php:96 -msgid "" -"Enter a weight for this variation or leave blank to use the parent product " -"weight." -msgstr "" -"Geben Sie ein Gewicht für diese Variation ein oder lassen Sie das Feld frei, " -"um automatisch das Gewicht des Eltern-Produkts zu verwenden." - -#: admin/post-types/writepanels/variation-admin-html.php:104 -msgid "Dimensions (L×W×H)" -msgstr "Größe (Tiefe×Breite×Höhe)" - -#: admin/post-types/writepanels/variation-admin-html.php:115 -msgid "Shipping class:" -msgstr "Versandgruppe:" - -#: admin/post-types/writepanels/variation-admin-html.php:119 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:53 -msgid "Same as parent" -msgstr "Gleiche wie übergeordnet" - -#: admin/post-types/writepanels/variation-admin-html.php:130 -msgid "Tax class:" -msgstr "Steuerklasse:" - -#: admin/post-types/writepanels/variation-admin-html.php:141 -msgid "File paths:" -msgstr "Dateipfade:" - -#: admin/post-types/writepanels/variation-admin-html.php:141 -msgid "" -"Enter one or more File Paths, one per line, to make this variation a " -"downloadable product, or leave blank." -msgstr "" -"Geben Sie einen oder mehrere Dateipfade an, einen pro Zeile, um diese " -"Variation zu einem herunterladbaren Produkt zu machen. Oder lassen Sie das " -"Feld einfach frei." - -#: admin/post-types/writepanels/variation-admin-html.php:142 -#: admin/post-types/writepanels/writepanel-product_data.php:153 -msgid "File paths/URLs, one per line" -msgstr "Dateipfade/ -URLs, einen pro Zeile" - -#: admin/post-types/writepanels/variation-admin-html.php:143 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Choose a file" -msgstr "Eine Datei auswählen" - -#: admin/post-types/writepanels/variation-admin-html.php:143 -msgid "Upload" -msgstr "Hochladen" - -#: admin/post-types/writepanels/variation-admin-html.php:143 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Insert file URL" -msgstr "Datei-URL einfügen" - -#: admin/post-types/writepanels/variation-admin-html.php:148 -msgid "Download Limit:" -msgstr "Downloadlimit:" - -#: admin/post-types/writepanels/variation-admin-html.php:148 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Leave blank for unlimited re-downloads." -msgstr "Frei lassen für unbegrenzte Downloads." - -#: admin/post-types/writepanels/variation-admin-html.php:156 -msgid "Download Expiry:" -msgstr "Download-Verfall" - -#: admin/post-types/writepanels/variation-admin-html.php:156 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "" -"Enter the number of days before a download link expires, or leave blank." -msgstr "" -"Geben Sie die Zahl der Tage ein, bevor der Download-Link ausläuft, oder " -"lassen Sie das Feld frei." - -#: admin/post-types/writepanels/variation-admin-html.php:170 -msgid "Enabled" -msgstr "Aktiv" - -#: admin/post-types/writepanels/variation-admin-html.php:172 -msgid "" -"Enable this option if access is given to a downloadable file upon purchase " -"of a product" -msgstr "" -"Aktivieren Sie diese Option, falls während eines Produktkaufs Zugriff auf " -"eine herunterladbare Datei gewährt wird." - -#: admin/post-types/writepanels/variation-admin-html.php:174 -msgid "" -"Enable this option if a product is not shipped or there is no shipping cost" -msgstr "" -"Aktivieren Sie diese Option, falls ein Produkt nicht versandt wird oder " -"keine Versandkosten erhoben werden." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Coupon description" -msgstr "Gutschein-Beschreibung" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Optionally enter a description for this coupon for your reference." -msgstr "" -"Geben Sie eine optionale Beschreibung für diesen Gutschein an - zur internen " -"Referenz." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:42 -msgid "Discount type" -msgstr "Rabattart" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Value of the coupon." -msgstr "Wert des Gutscheins." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "Enable free shipping" -msgstr "'Versandkostenfrei' aktivieren" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "" -"Check this box if the coupon grants free shipping. The free " -"shipping method must be enabled with the \"must use coupon\" setting " -"checked." -msgstr "" -"Aktivieren Sie dieses Kontrollkästchen, wenn der Gutschein kostenfreien " -"Versand beinhaltet. Die Methode Versandkostenfrei muss " -"aktiviert sein, sowie ebenfalls die Einstellung \"erfordert Gutschein\"." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "Individual use" -msgstr "Individuelle Verwendung" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "" -"Check this box if the coupon cannot be used in conjunction with other " -"coupons." -msgstr "" -"Aktivieren Sie dieses Kontrollkästchen, wenn dieser Gutschein nicht zusammen " -"mit anderen Gutscheinen verwendet werden darf." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "Apply before tax" -msgstr "Vor der Mwst. zuweisen" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "" -"Check this box if the coupon should be applied before calculating cart tax." -msgstr "" -"Aktivieren Sie dieses Kontrollkästchen, wenn dieser Gutschein vor dem " -"Berechnen der Mehrwertsteuer auf den Warenkorbinhalt zugewiesen werden soll." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "Exclude sale items" -msgstr "Produkte mit Aktionspreis ausschließen" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "" -"Check this box if the coupon should not apply to items on sale. Per-item " -"coupons will only work if the item is not on sale. Per-cart coupons will " -"only work if there are no sale items in the cart." -msgstr "" -"Aktivieren Sie dieses Kontrollkästchen, wenn der Gutschein nicht für " -"Produkte mit Aktionspreis gelten soll. Pro-Produkt-Gutscheine werden dann " -"nur funktionieren, wenn das Produkt nicht gerade einen Aktionspreis hat. Pro-" -"Produkt-Gutscheine dann auch nur funktionieren, wenn sich keine Produkte mit " -"Aktionspreis im Warenkorb befinden." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "Minimum amount" -msgstr "Mindestbetrag" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "No minimum" -msgstr "Kein Mindestbetrag" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "" -"This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "" -"Dieses Feld erlaubt es Ihnen, einen Mindestbestellwert (Zwischensumme) " -"festzulegen, damit dieser Gutschein verwendet werden kann." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:74 -#: admin/woocommerce-admin-taxonomies.php:28 -#: admin/woocommerce-admin-taxonomies.php:122 -msgid "Products" -msgstr "Produkte" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:75 -#: admin/post-types/writepanels/writepanel-order_data.php:400 -#: admin/post-types/writepanels/writepanel-product_data.php:523 -#: admin/post-types/writepanels/writepanel-product_data.php:540 -#: admin/woocommerce-admin-reports.php:1245 -msgid "Search for a product…" -msgstr "Nach einem Produkt suchen…" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:89 -msgid "" -"Products which need to be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are discounted." -msgstr "" -"Produkte, welche sich im Warenkorb befinden müssen, damit der Gutschein " -"verwendet werden kann. Oder, für \"Produktrabatt\", welche Produkte " -"rabattiert sind." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:94 -msgid "Exclude products" -msgstr "Produkte ausschließen" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:95 -msgid "Search for a product…" -msgstr "Nach Produkt suchen..." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:109 -msgid "" -"Products which must not be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are not discounted." -msgstr "" -"Produkte, welche sich nicht im Warenkorb befinden dürfen, damit dieser " -"Gutschein verwendet werden kann. Oder, für \"Produktrabatt\", welche " -"Produkte nicht rabattiert sind." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:116 -msgid "Product categories" -msgstr "Produktkategorien" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:117 -msgid "Any category" -msgstr "Beliebige Kategorie" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:125 -msgid "" -"A product must be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will be discounted." -msgstr "" -"Ein Produkt muss sich in dieser Kategorie befinden, damit der Gutschein " -"gültig bleibt. Oder, für \"Produktrabatt\": Produkte in diesen Kategorien " -"werden rabattiert." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:130 -msgid "Exclude categories" -msgstr "Kategorien ausschließen" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:131 -msgid "No categories" -msgstr "Keine Kategorien" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:139 -msgid "" -"Product must not be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will not be discounted." -msgstr "" -"Das Produkt darf sich nicht in dieser Kategorie befinden, damit der " -"Gutschein gültig bleibt. Oder, für \"Produktrabatt\": Produkte in diesen " -"Kategorien werden nicht rabattiert." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "Email restrictions" -msgstr "E-Mail Einschränkungen" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "No restrictions" -msgstr "keine Einschränkungen" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "" -"List of emails to check against the customer's billing email when an order " -"is placed." -msgstr "" -"Liste der zu prüfenden E-Mails, die sich von der E-Mail unterscheidet, die " -"beim Kauf angegeben wurde." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "Usage limit" -msgstr "Wie oft einlösbar?" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "Unbegrenzte Verwendung" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "How many times this coupon can be used before it is void." -msgstr "Wie oft dieser Gutschein verwendet werden kann, bevor er abläuft." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgctxt "placeholder" -msgid "Never expire" -msgstr "Nie auslaufend" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "The date this coupon will expire, YYYY-MM-DD." -msgstr "" -"Das Datum an dem dieser Gutscheins ablaufen wird, eingeben im Format: " -"JJJJ-MM-TT." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:195 -msgid "" -"Coupon code already exists - customers will use the latest coupon with this " -"code." -msgstr "" -"Dieser Gutschein existiert bereits - Kunden werden den aktuellsten Gutschein " -"mit diesem Code verwenden." - -#: admin/post-types/writepanels/writepanel-order_data.php:59 -msgid "Order Details" -msgstr "Bestelldetails" - -#: admin/post-types/writepanels/writepanel-order_data.php:62 -msgid "Order number" -msgstr "Bestellnummer" - -#: admin/post-types/writepanels/writepanel-order_data.php:67 -msgid "Customer IP:" -msgstr "IP-Adresse des Kunden:" - -#: admin/post-types/writepanels/writepanel-order_data.php:74 -msgid "General Details" -msgstr "Allgemeine Details" - -#: admin/post-types/writepanels/writepanel-order_data.php:76 -msgid "Order status:" -msgstr "Bestellstatus:" - -#: admin/post-types/writepanels/writepanel-order_data.php:86 -msgid "Order Date:" -msgstr "Bestelldatum:" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -msgid "h" -msgstr "h" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#: admin/settings/settings-init.php:567 -msgid "m" -msgstr "m" - -#: admin/post-types/writepanels/writepanel-order_data.php:91 -msgid "Customer:" -msgstr "Kunde:" - -#: admin/post-types/writepanels/writepanel-order_data.php:131 -msgid "Customer Note:" -msgstr "Kundennotiz:" - -#: admin/post-types/writepanels/writepanel-order_data.php:132 -msgid "Customer's notes about the order" -msgstr "Kundennotizen zur Bestellung" - -#: admin/post-types/writepanels/writepanel-order_data.php:140 -msgid "Billing Details" -msgstr "Rechnungsdetails" - -#: admin/post-types/writepanels/writepanel-order_data.php:144 -#: admin/post-types/writepanels/writepanel-order_data.php:234 -msgid "First Name" -msgstr "Vorname" - -#: admin/post-types/writepanels/writepanel-order_data.php:148 -#: admin/post-types/writepanels/writepanel-order_data.php:238 -msgid "Last Name" -msgstr "Nachname" - -#: admin/post-types/writepanels/writepanel-order_data.php:152 -#: admin/post-types/writepanels/writepanel-order_data.php:242 -#: admin/woocommerce-admin-users.php:155 admin/woocommerce-admin-users.php:204 -msgid "Company" -msgstr "Firma" - -#: admin/post-types/writepanels/writepanel-order_data.php:156 -#: admin/post-types/writepanels/writepanel-order_data.php:246 -#: admin/woocommerce-admin-users.php:159 admin/woocommerce-admin-users.php:208 -msgid "Address 1" -msgstr "Straße und Hausnummer" - -#: admin/post-types/writepanels/writepanel-order_data.php:160 -#: admin/post-types/writepanels/writepanel-order_data.php:250 -#: admin/woocommerce-admin-users.php:163 admin/woocommerce-admin-users.php:212 -msgid "Address 2" -msgstr "Adresszusatz" - -#: admin/post-types/writepanels/writepanel-order_data.php:164 -#: admin/post-types/writepanels/writepanel-order_data.php:254 -#: admin/settings/settings-tax-rates.php:42 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-users.php:167 admin/woocommerce-admin-users.php:216 -msgid "City" -msgstr "Stadt" - -#: admin/post-types/writepanels/writepanel-order_data.php:168 -#: admin/post-types/writepanels/writepanel-order_data.php:258 -#: admin/woocommerce-admin-users.php:171 admin/woocommerce-admin-users.php:220 -msgid "Postcode" -msgstr "Postleitzahl" - -#: admin/post-types/writepanels/writepanel-order_data.php:172 -#: admin/post-types/writepanels/writepanel-order_data.php:262 -#: admin/woocommerce-admin-users.php:179 admin/woocommerce-admin-users.php:228 -msgid "Country" -msgstr "Land" - -#: admin/post-types/writepanels/writepanel-order_data.php:175 -#: admin/post-types/writepanels/writepanel-order_data.php:265 -msgid "Select a country…" -msgstr "Wählen Sie ein Land aus…" - -#: admin/post-types/writepanels/writepanel-order_data.php:178 -#: admin/post-types/writepanels/writepanel-order_data.php:268 -#: admin/woocommerce-admin-users.php:175 admin/woocommerce-admin-users.php:224 -msgid "State/County" -msgstr "Bundesland/ Kanton" - -#: admin/post-types/writepanels/writepanel-order_data.php:182 -#: admin/woocommerce-admin-users.php:187 -msgid "Email" -msgstr "E-Mail" - -#: admin/post-types/writepanels/writepanel-order_data.php:185 -msgid "Phone" -msgstr "Telefon" - -#: admin/post-types/writepanels/writepanel-order_data.php:193 -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#: admin/post-types/writepanels/writepanel-order_data.php:277 -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "Address" -msgstr "Adresse" - -#: admin/post-types/writepanels/writepanel-order_data.php:195 -msgid "No billing address set." -msgstr "Es wurde keine Rechnungsanschrift angegeben." - -#: admin/post-types/writepanels/writepanel-order_data.php:208 -msgid "Load billing address" -msgstr "Rechnungsanschrift laden" - -#: admin/post-types/writepanels/writepanel-order_data.php:230 -msgid "Shipping Details" -msgstr "Versanddetails" - -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "No shipping address set." -msgstr "Es wurde keine Versandanschrift angegeben." - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Load shipping address" -msgstr "Versandanschrift laden" - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Copy from billing" -msgstr "Von Rechnung kopieren" - -#: admin/post-types/writepanels/writepanel-order_data.php:339 -msgid "Item" -msgstr "Element" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#: admin/post-types/writepanels/writepanel-product_data.php:191 -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Class" -msgstr "Mwst.-Klasse" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -msgid "Tax class for the line item" -msgstr "Steuerklassen für diese Position" - -#: admin/post-types/writepanels/writepanel-order_data.php:347 -msgid "Qty" -msgstr "Anz" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -msgid "Totals" -msgstr "Gesamtbetrag" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -msgid "Line subtotals are before pre-tax discounts, totals are after." -msgstr "" -"Zwischensummen werden vor den Vorsteuer-Rabatten aufgelistet, Gesamtsummen " -"danach." - -#: admin/post-types/writepanels/writepanel-order_data.php:352 -#: admin/settings/settings-tax-rates.php:387 -#: admin/settings/settings-tax-rates.php:475 -#: admin/woocommerce-admin-content.php:48 -#: admin/woocommerce-admin-settings.php:186 -msgid "Tax" -msgstr "Mehrwertsteuer" - -#: admin/post-types/writepanels/writepanel-order_data.php:388 -msgid "Delete Lines" -msgstr "Positionen löschen" - -#: admin/post-types/writepanels/writepanel-order_data.php:390 -msgid "Stock Actions" -msgstr "Lager-Aktionen" - -#: admin/post-types/writepanels/writepanel-order_data.php:391 -msgid "Reduce Line Stock" -msgstr "Lagermenge der Position reduzieren" - -#: admin/post-types/writepanels/writepanel-order_data.php:392 -msgid "Increase Line Stock" -msgstr "Lagermenge der Position erhöhen" - -#: admin/post-types/writepanels/writepanel-order_data.php:396 -#: admin/post-types/writepanels/writepanel-order_data.php:456 -msgid "Apply" -msgstr "Übernehmen" - -#: admin/post-types/writepanels/writepanel-order_data.php:402 -msgid "Add item(s)" -msgstr "Element(e) hinzufügen" - -#: admin/post-types/writepanels/writepanel-order_data.php:403 -msgid "Add fee" -msgstr "Gebühr hinzufügen" - -#: admin/post-types/writepanels/writepanel-order_data.php:434 -msgid "Resend order emails" -msgstr "Bestell-E-Mails erneut senden" - -#: admin/post-types/writepanels/writepanel-order_data.php:465 -msgid "Move to Trash" -msgstr "In den Papierkorb verschieben" - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save Order" -msgstr "Bestellung speichern" - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save/update the order" -msgstr "Bestellung speichern/ aktualisieren" - -#: admin/post-types/writepanels/writepanel-order_data.php:498 -msgid "Discounts" -msgstr "Rabatte" - -#: admin/post-types/writepanels/writepanel-order_data.php:502 -msgid "Cart Discount:" -msgstr "Warenkorbrabatt:" - -#: admin/post-types/writepanels/writepanel-order_data.php:502 -msgid "Discounts before tax - calculated by comparing subtotals to totals." -msgstr "" -"Rabatte vor Steuern - berechnet indem Zwischensummen mit Gesamtsummen " -"verglichen werden." - -#: admin/post-types/writepanels/writepanel-order_data.php:510 -msgid "Order Discount:" -msgstr "Rabatt auf Bestellung:" - -#: admin/post-types/writepanels/writepanel-order_data.php:510 -msgid "Discounts after tax - user defined." -msgstr "Rabatte nach Steuern - benutzerdefiniert." - -#: admin/post-types/writepanels/writepanel-order_data.php:543 -msgid "Label:" -msgstr "Beschriftung:" - -#: admin/post-types/writepanels/writepanel-order_data.php:544 -msgid "The shipping title the customer sees" -msgstr "Der Versandmethoden-Titel, den der Besucher/ Kunde sieht" - -#: admin/post-types/writepanels/writepanel-order_data.php:551 -msgid "Cost:" -msgstr "Kosten:" - -#: admin/post-types/writepanels/writepanel-order_data.php:552 -msgid "(ex. tax)" -msgstr "(exkl. Mwst.)" - -#: admin/post-types/writepanels/writepanel-order_data.php:559 -msgid "Method:" -msgstr "Methode:" - -#: admin/post-types/writepanels/writepanel-order_data.php:581 -#: admin/post-types/writepanels/writepanel-order_data.php:583 -#: admin/post-types/writepanels/writepanel-order_data.php:682 -#: admin/post-types/writepanels/writepanel-order_data.php:684 -msgid "Other" -msgstr "Andere" - -#: admin/post-types/writepanels/writepanel-order_data.php:597 -msgid "Tax Rows" -msgstr "Steuer-Zeilen" - -#: admin/post-types/writepanels/writepanel-order_data.php:622 -msgid "+ Add tax row" -msgstr "+ Steuerposition hinzufügen" - -#: admin/post-types/writepanels/writepanel-order_data.php:622 -msgid "" -"These rows contain taxes for this order. This allows you to display multiple " -"or compound taxes rather than a single total." -msgstr "" -"Diese Zeilen enthalten Steuern für diese Bestellung. Dies erlaubt es Ihnen, " -"mehrere oder verbundene Steuern zu berechnen, gegenüber einer einzigen " -"Gesamtsteuer." - -#: admin/post-types/writepanels/writepanel-order_data.php:626 -msgid "Tax Totals" -msgstr "Steuer gesamt" - -#: admin/post-types/writepanels/writepanel-order_data.php:630 -msgid "Total tax for line items + fees." -msgstr "Gesamte Steuer für alle Positionen + Gebühr" - -#: admin/post-types/writepanels/writepanel-order_data.php:652 -#: admin/post-types/writepanels/writepanels-init.php:70 -msgid "Order Totals" -msgstr "Gesamtsumme" - -#: admin/post-types/writepanels/writepanel-order_data.php:656 -msgid "Order Total:" -msgstr "Gesamtsumme:" - -#: admin/post-types/writepanels/writepanel-order_data.php:664 -msgid "Payment Method:" -msgstr "Zahlungsweise:" - -#: admin/post-types/writepanels/writepanel-order_data.php:695 -msgid "Calc taxes" -msgstr "Steuern berechnen" - -#: admin/post-types/writepanels/writepanel-order_data.php:697 -msgid "Calc totals" -msgstr "Gesamtsummen berechnen" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:57 -msgid "Choose a downloadable product…" -msgstr "Wählen Sie ein herunterladbares Produkt..." - -#: admin/post-types/writepanels/writepanel-order_downloads.php:87 -msgid "Grant Access" -msgstr "Zugriff gewähren" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:125 -msgid "" -"Could not grant access - the user may already have permission for this file " -"or billing email is not set. Ensure the billing email is set, and the order " -"has been saved." -msgstr "" -"Zugriff konnte nicht gestattet werden. Der Benutzer hat entweder schon " -"Zugriff auf diese Datei oder die Rechnungs-/ Bezahl-E-Mail ist nicht " -"festgelegt. Stellen Sie sicher, dass die Rechnungs-/ Bezahl-E-Mail " -"festgelegt ist und die Bestellung gespeichert wurde." - -#: admin/post-types/writepanels/writepanel-order_downloads.php:148 -msgid "Are you sure you want to revoke access to this download?" -msgstr "" -"Sind Sie sicher, dass Sie den Zugang zu diesem Download erneuern wollen?" - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -msgid "added %s ago" -msgstr "vor %s hinzugefügt" - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -msgid "Delete note" -msgstr "Notiz löschen" - -#: admin/post-types/writepanels/writepanel-order_notes.php:50 -msgid "There are no notes for this order yet." -msgstr "Für diese Bestellung gibt es noch keine Anmerkungen." - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "Add note" -msgstr "Notiz hinzufügen" - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "" -"Add a note for your reference, or add a customer note (the user will be " -"notified)." -msgstr "" -"Fügen Sie hier eine Notiz hinzu, entweder für Ihre interne Verwaltung oder " -"für den Kunden (welcher dann darüber benachrichtigt wird)." - -#: admin/post-types/writepanels/writepanel-order_notes.php:62 -msgid "Customer note" -msgstr "Kundennotiz" - -#: admin/post-types/writepanels/writepanel-order_notes.php:63 -msgid "Private note" -msgstr "Private Notiz" - -#: admin/post-types/writepanels/writepanel-order_notes.php:65 -#: admin/post-types/writepanels/writepanel-product_data.php:501 -msgid "Add" -msgstr "Hinzufügen" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations for variable products are defined here." -msgstr "Variationen für variable Produkte werden hier festgelegt." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations" -msgstr "Variationen" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:65 -msgid "" -"Before adding variations, add and save some attributes on the " -"Attributes tab." -msgstr "" -"Bevor Sie Variationen hinzufügen, legen Sie zunächst einige Merkmale über " -"den Menüpunkt Eigenschaften an." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:67 -msgid "Learn more" -msgstr "Mehr erfahren" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Close all" -msgstr "Alle schließen" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Expand all" -msgstr "Alle aufklappen" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:75 -msgid "Bulk edit:" -msgstr "Aktion wählen:" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:77 -msgid "Toggle "Enabled"" -msgstr ""Aktiviert" Auf-/ Zuklappen" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:78 -msgid "Toggle "Downloadable"" -msgstr ""Herunterladbar" Auf-/ Zuklappen" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:79 -msgid "Toggle "Virtual"" -msgstr ""Virtuell" Auf-/ Zuklappen" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:80 -msgid "Delete all variations" -msgstr "Alle Variationen löschen" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:81 -msgid "Prices" -msgstr "Preise" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:82 -msgid "Sale prices" -msgstr "Verkaufspreise" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:88 -msgid "File Path" -msgstr "Dateipfad" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:89 -msgid "Download limit" -msgstr "Downloadlimit" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:90 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Download Expiry" -msgstr "Download-Verfall" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:93 -msgid "Go" -msgstr "Los" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:193 -msgid "Add Variation" -msgstr "Variation hinzufügen" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:195 -msgid "Link all variations" -msgstr "Alle Varianten miteinander verknüpfen" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:197 -msgid "Default selections:" -msgstr "Standardauswahl:" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:210 -msgid "No default" -msgstr "Kein Standard" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:299 -msgid "" -"Are you sure you want to link all variations? This will create a new " -"variation for each and every possible combination of variation attributes " -"(max 50 per run)." -msgstr "" -"Sind Sie sicher, dass Sie alle Variationen verlinken wollen? Dies wird eine " -"neue Variation erstellen für jede mögliche Kombination von Eigenschaften " -"(maximal 50 pro Durchlauf)." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:316 -msgid "variation added" -msgstr "Variation hinzugefügt" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:318 -msgid "variations added" -msgstr "Variationen hinzugefügt" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:320 -msgid "No variations added" -msgstr "Keine Variationen hinzugefügt" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:343 -msgid "Are you sure you want to remove this variation?" -msgstr "Sind Sie sicher, dass Sie diese Variation entfernen wollen?" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:399 -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "" -"Sind Sie sicher, dass Sie alle Variationen löschen wollen? Dies kann nicht " -"rückgängig gemacht werden!" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:402 -msgid "Last warning, are you sure?" -msgstr "Letzte Warnung - sind Sie sicher?" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:439 -msgid "Enter a value" -msgstr "Einen Wert eingeben" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:517 -#: admin/woocommerce-admin-taxonomies.php:62 -#: admin/woocommerce-admin-taxonomies.php:154 -msgid "Choose an image" -msgstr "Ein Bild auswählen" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:519 -msgid "Set variation image" -msgstr "Bild für Variation festlegen" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:563 -msgid "Variable product" -msgstr "Variables Produkt" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:629 -msgid "Variation #%s of %s" -msgstr "Variation #%s von %s" - -#: admin/post-types/writepanels/writepanel-product_data.php:43 -msgid "Product Type" -msgstr "Produkttyp" - -#: admin/post-types/writepanels/writepanel-product_data.php:53 -msgid "Virtual products are intangible and aren't shipped." -msgstr "Virtuelle Produkte sind immateriell und werden nicht versandt." - -#: admin/post-types/writepanels/writepanel-product_data.php:59 -msgid "Downloadable products give access to a file upon purchase." -msgstr "" -"Herunterladbare Produkte erlauben Zugriff auf eine Datei während des " -"Kaufvorgangs." - -#: admin/post-types/writepanels/writepanel-product_data.php:77 -#: admin/woocommerce-admin-content.php:44 -#: admin/woocommerce-admin-settings.php:182 -msgid "General" -msgstr "Allgemein" - -#: admin/post-types/writepanels/writepanel-product_data.php:79 -#: admin/woocommerce-admin-content.php:47 -#: admin/woocommerce-admin-settings.php:185 -msgid "Inventory" -msgstr "Bestand" - -#: admin/post-types/writepanels/writepanel-product_data.php:83 -msgid "Linked Products" -msgstr "Verlinkte Produkte" - -#: admin/post-types/writepanels/writepanel-product_data.php:85 -#: admin/woocommerce-admin-attributes.php:299 -#: admin/woocommerce-admin-init.php:66 -msgid "Attributes" -msgstr "Eigenschaften" - -#: admin/post-types/writepanels/writepanel-product_data.php:87 -msgid "Advanced" -msgstr "Erweitert" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "Stock Keeping Unit" -msgstr "Einheit für die Lagerhaltung/ Bestandspflege" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "" -"SKU refers to a Stock-keeping unit, a unique identifier for each distinct " -"product and service that can be purchased." -msgstr "" -"Artikel-Nr. bezieht sich auf eine Einheit zur Lagerhaltung, ein einzigartige " -"Identifkationsgröße für jedes Produkt und jede Dienstleistung, die man " -"kaufen kann." - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Product URL" -msgstr "Produkt-URL" - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Enter the external URL to the product." -msgstr "Geben Sie die externe URL zum Produkt an." - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "Button text" -msgstr "Button-Text" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgctxt "placeholder" -msgid "Buy product" -msgstr "Produkt kaufen" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "This text will be shown on the button linking to the external product." -msgstr "" -"Dieser Text wird auf dem Button erscheinen, der auf das externe Produkt " -"verlinkt." - -#: admin/post-types/writepanels/writepanel-product_data.php:119 -msgid "Regular Price" -msgstr "Regulärer Preis" - -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Sale Price" -msgstr "Aktionspreis" - -#: admin/post-types/writepanels/writepanel-product_data.php:135 -msgid "Sale Price Dates" -msgstr "Aktionspreis-Datum/ -Zeitraum" - -#: admin/post-types/writepanels/writepanel-product_data.php:138 -#: admin/post-types/writepanels/writepanel-product_data.php:1082 -msgid "Cancel" -msgstr "Abbrechen" - -#: admin/post-types/writepanels/writepanel-product_data.php:152 -msgid "File paths (one per line)" -msgstr "Dateipfade (einer pro Zeile)" - -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Download Limit" -msgstr "Downloadlimit" - -#: admin/post-types/writepanels/writepanel-product_data.php:178 -msgid "Tax Status" -msgstr "Mehrwertsteuerstatus" - -#: admin/post-types/writepanels/writepanel-product_data.php:180 -msgid "Shipping only" -msgstr "Nur beim Versand" - -#: admin/post-types/writepanels/writepanel-product_data.php:181 -msgid "None" -msgstr "mehrwertsteuerfrei" - -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Enable stock management at product level" -msgstr "Lagerverwaltung auf Produktebene aktivieren" - -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "" -"Stock quantity. If this is a variable product this value will be used to " -"control stock for all variations, unless you define stock at variation level." -msgstr "" -"Lagerbestand. Wenn dies ein variables Produkt ist, wird dieser Wert " -"verwendet, um den Bestand für alle Variationen zu verwenden, ungeachtet " -"dessen, ob Sie einen Bestand für die Variationen angelegt haben." - -#: admin/post-types/writepanels/writepanel-product_data.php:230 -msgid "Stock status" -msgstr "Lagerstatus" - -#: admin/post-types/writepanels/writepanel-product_data.php:233 -msgid "" -"Controls whether or not the product is listed as \"in stock\" or \"out of " -"stock\" on the frontend." -msgstr "" -"Kontrolliert, ob das Produkt in der Besucheransicht (Frontend) als \"Am Lager" -"\" oder \"vergriffen\" gelistet wird." - -#: admin/post-types/writepanels/writepanel-product_data.php:240 -msgid "Allow Backorders?" -msgstr "Fehlmengen erlauben?" - -#: admin/post-types/writepanels/writepanel-product_data.php:241 -msgid "Do not allow" -msgstr "Nicht erlauben" - -#: admin/post-types/writepanels/writepanel-product_data.php:242 -msgid "Allow, but notify customer" -msgstr "Erlauben, aber Kunde benachrichtigen" - -#: admin/post-types/writepanels/writepanel-product_data.php:243 -msgid "Allow" -msgstr "Erlauben" - -#: admin/post-types/writepanels/writepanel-product_data.php:244 -msgid "" -"If managing stock, this controls whether or not backorders are allowed for " -"this product and variations. If enabled, stock quantity can go below 0." -msgstr "" -"Wenn die Lagerverwaltung aktiv ist, kontrolliert dies, ob Nachbestellungen " -"für dieses Produkt und Variationen erlaubt sind. Falls aktiviert, kann der " -"Lagerbestandswert auch unter 0 gehen." - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "Sold Individually" -msgstr "Einzeln verkauft" - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "" -"Enable this to only allow one of this item to be bought in a single order" -msgstr "" -"Diese Option aktivieren, um zu erlauben, dass nur eines von diesen Produkten " -"in einer einzelnen Bestellung gekauft werden kann." - -#: admin/post-types/writepanels/writepanel-product_data.php:273 -msgid "Weight in decimal form" -msgstr "Gewicht in dezimaler Einheit" - -#: admin/post-types/writepanels/writepanel-product_data.php:284 -msgid "Dimensions" -msgstr "Größe" - -#: admin/post-types/writepanels/writepanel-product_data.php:290 -msgid "LxWxH in decimal form" -msgstr "LxBxH in dezimaler Einheit" - -#: admin/post-types/writepanels/writepanel-product_data.php:311 -msgid "No shipping class" -msgstr "Keine Versandgruppe" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "Shipping class" -msgstr "Versandgruppe" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "" -"Shipping classes are used by certain shipping methods to group similar " -"products." -msgstr "" -"Versandgruppen werden von bestimmten Versandmethoden verwendet, um ähnliche " -"Produkte zu gruppieren." - -#: admin/post-types/writepanels/writepanel-product_data.php:384 -#: admin/post-types/writepanels/writepanel-product_data.php:476 -#: admin/woocommerce-admin-init.php:440 -msgid "Value(s)" -msgstr "Wert(e)" - -#: admin/post-types/writepanels/writepanel-product_data.php:386 -msgid "Select terms" -msgstr "Terms auswählen" - -#: admin/post-types/writepanels/writepanel-product_data.php:398 -msgid "Select all" -msgstr "Alle auswählen" - -#: admin/post-types/writepanels/writepanel-product_data.php:398 -msgid "Select none" -msgstr "Nichts auswählen" - -#: admin/post-types/writepanels/writepanel-product_data.php:400 -msgid "Add new" -msgstr "Hinzufügen" - -#: admin/post-types/writepanels/writepanel-product_data.php:413 -msgid "Pipe (|) separate terms" -msgstr "Termini mit Pipe-Symbol (|) trennen" - -#: admin/post-types/writepanels/writepanel-product_data.php:427 -#: admin/post-types/writepanels/writepanel-product_data.php:482 -#: admin/woocommerce-admin-init.php:442 -msgid "Visible on the product page" -msgstr "Sichtbar auf der Produktseite" - -#: admin/post-types/writepanels/writepanel-product_data.php:440 -#: admin/post-types/writepanels/writepanel-product_data.php:488 -#: admin/woocommerce-admin-init.php:443 -msgid "Used for variations" -msgstr "Verwendet für Variationen" - -#: admin/post-types/writepanels/writepanel-product_data.php:477 -#: admin/woocommerce-admin-init.php:441 -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "" -"Geben Sie etwas Text ein, oder einige Attribute, getrennt vom Pipe-Symbol " -"(|)." - -#: admin/post-types/writepanels/writepanel-product_data.php:503 -msgid "Custom product attribute" -msgstr "Benutzerdefiniertes Produktmerkmal" - -#: admin/post-types/writepanels/writepanel-product_data.php:515 -msgid "Save attributes" -msgstr "Eigenschaften speichern" - -#: admin/post-types/writepanels/writepanel-product_data.php:522 -msgid "Up-Sells" -msgstr "Upselling" - -#: admin/post-types/writepanels/writepanel-product_data.php:537 -msgid "" -"Up-sells are products which you recommend instead of the currently viewed " -"product, for example, products that are more profitable or better quality or " -"more expensive." -msgstr "" -"Upselling (Up-sells) sind Produkte, welche Sie statt des aktuell " -"angesehenen Produktes empfehlen. Das können zum Beispiel Produkte sein, die " -"teurer/ profitabler sind oder eine bessere Qualität aufweisen." - -#: admin/post-types/writepanels/writepanel-product_data.php:539 -msgid "Cross-Sells" -msgstr "Querverkauf" - -#: admin/post-types/writepanels/writepanel-product_data.php:554 -msgid "" -"Cross-sells are products which you promote in the cart, based on the current " -"product." -msgstr "" -"Querverkauf (Cross-Selling) sind Produkte, welche Sie im Warenkorb (bzw. " -"darum herum) bewerben können, basierend auf dem aktuell gewählten Produkt." - -#: admin/post-types/writepanels/writepanel-product_data.php:564 -msgid "Choose a grouped product…" -msgstr "Wählen Sie ein gruppiertes Produkt…" - -#: admin/post-types/writepanels/writepanel-product_data.php:590 -msgid "Grouping" -msgstr "Gruppieren" - -#: admin/post-types/writepanels/writepanel-product_data.php:590 -msgid "Set this option to make this product part of a grouped product." -msgstr "" -"Diese Option setzen, um das Produkt zum Teil eines gruppierten Produktes zu " -"machen." - -#: admin/post-types/writepanels/writepanel-product_data.php:610 -msgid "Purchase Note" -msgstr "Kauf-Notiz" - -#: admin/post-types/writepanels/writepanel-product_data.php:610 -msgid "Enter an optional note to send the customer after purchase." -msgstr "" -"Geben Sie eine optionale Notiz ein, um den Kunde nach dem Kauf zu " -"informieren." - -#: admin/post-types/writepanels/writepanel-product_data.php:617 -msgid "Menu order" -msgstr "Menüreihenfolge" - -#: admin/post-types/writepanels/writepanel-product_data.php:617 -msgid "Custom ordering position." -msgstr "Benutzerdefinierte Sortierung." - -#: admin/post-types/writepanels/writepanel-product_data.php:625 -msgid "Enable reviews" -msgstr "Produktrezensionen erlauben" - -#: admin/post-types/writepanels/writepanel-product_data.php:714 -msgid "Product SKU must be unique." -msgstr "Produkt-Artikelnummer muss einzigartig sein." - -#: admin/post-types/writepanels/writepanel-product_data.php:1046 -msgid "Catalog/search" -msgstr "Katalog/ Suche" - -#: admin/post-types/writepanels/writepanel-product_data.php:1053 -msgid "Catalog visibility:" -msgstr "Katalogsichtbarkeit:" - -#: admin/post-types/writepanels/writepanel-product_data.php:1069 -msgid "" -"Define the loops this product should be visible in. The product will still " -"be accessible directly." -msgstr "" -"Bestimmen Sie die Auflistungen (Loops), in denen das Produkt sichtbar sein " -"soll. Das Produkt wird dennoch immer direkt erreichbar bleiben." - -#: admin/post-types/writepanels/writepanel-product_data.php:1075 -msgid "Enable this option to feature this product." -msgstr "" -"Aktivieren Sie diese Option, um das Produkt zu empfehlen bzw. hervorzuheben " -"(Featured)." - -#: admin/post-types/writepanels/writepanel-product_data.php:1077 -msgid "Featured Product" -msgstr "Empfohlenes Produkt" - -#: admin/post-types/writepanels/writepanel-product_data.php:1081 -msgid "OK" -msgstr "OK" - -#: admin/post-types/writepanels/writepanel-product_images.php:43 -#: admin/post-types/writepanels/writepanel-product_images.php:103 -msgid "Delete image" -msgstr "Bild löschen" - -#: admin/post-types/writepanels/writepanel-product_images.php:43 -#: admin/post-types/writepanels/writepanel-product_images.php:103 -#: admin/woocommerce-admin-attributes.php:323 -msgid "Delete" -msgstr "Löschen" - -#: admin/post-types/writepanels/writepanel-product_images.php:54 -msgid "Add product gallery images" -msgstr "Produktgaleriebilder hinzufügen" - -#: admin/post-types/writepanels/writepanel-product_images.php:80 -msgid "Add Images to Product Gallery" -msgstr "Bilder zur Produktgalerie hinzufügen" - -#: admin/post-types/writepanels/writepanel-product_images.php:82 -msgid "Add to gallery" -msgstr "Zur Galerie hinzufügen" - -#: admin/post-types/writepanels/writepanels-init.php:47 -msgid "Product Gallery" -msgstr "Produktgalerie" - -#: admin/post-types/writepanels/writepanels-init.php:55 -msgid "Product Short Description" -msgstr "Kurzbeschreibung des Produkts" - -#: admin/post-types/writepanels/writepanels-init.php:64 -msgid "Reviews" -msgstr "Bewertungen" - -#: admin/post-types/writepanels/writepanels-init.php:68 -msgid "Order Data" -msgstr "Bestelldaten" - -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "Order Items" -msgstr "Bestellpositionen" - -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "" -"Note: if you edit quantities or remove items from the order you will need to " -"manually update stock levels." -msgstr "" -"Hinweis: Wenn Sie die Mengen ändern oder Produkte aus der Bestellung " -"entfernen, müssen Sie manuell die Lagermengen für die entsprechenden " -"Produkte anpassen!" - -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "Downloadable Product Permissions" -msgstr "Berechtigungen für herunterladbares Produkt" - -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "" -"Note: Permissions for order items will automatically be granted when the " -"order status changes to processing/completed." -msgstr "" -"Hinweis: Berechtigungen für bestellte Produkte werden automatisch erteilt, " -"wenn sich der Bestellstatuns von \"In Bearbeitung\" auf \"Fertiggestellt\" " -"ändert." - -#: admin/post-types/writepanels/writepanels-init.php:73 -msgid "Order Actions" -msgstr "Bestellaktionen" - -#: admin/post-types/writepanels/writepanels-init.php:81 -msgid "Coupon Data" -msgstr "Gutscheindaten" - -#: admin/post-types/writepanels/writepanels-init.php:100 -msgid "Coupon code" -msgstr "Gutscheincode" - -#: admin/post-types/writepanels/writepanels-init.php:101 -msgid "Product name" -msgstr "Produktname" - -#: admin/post-types/writepanels/writepanels-init.php:185 -msgid "Allow reviews." -msgstr "Rezensionen/ Bewertungen erlauben." - -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "" -"Allow trackbacks and pingbacks on this " -"page." -msgstr "" -"Trackbacks und Pingbacks auf dieser " -"Seite erlauben." - -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" -msgstr "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" - -#: admin/settings/settings-frontend-styles.php:23 -msgid "Styles" -msgstr "Stile" - -#: admin/settings/settings-frontend-styles.php:43 -msgid "Primary" -msgstr "Primärfarbe" - -#: admin/settings/settings-frontend-styles.php:43 -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "" -"Aufruf zum Handeln Buttons/ Preis-Slider/ Benuter-Interface der Ebenen-" -"Navigation" - -#: admin/settings/settings-frontend-styles.php:44 -msgid "Secondary" -msgstr "Sekundärfarbe" - -#: admin/settings/settings-frontend-styles.php:44 -msgid "Buttons and tabs" -msgstr "Buttons und Tabs" - -#: admin/settings/settings-frontend-styles.php:45 -msgid "Highlight" -msgstr "Hervorheben" - -#: admin/settings/settings-frontend-styles.php:45 -msgid "Price labels and Sale Flashes" -msgstr "Preistabellen und Angebotshinweise" - -#: admin/settings/settings-frontend-styles.php:46 -msgid "Content" -msgstr "Inhalt" - -#: admin/settings/settings-frontend-styles.php:46 -msgid "Your themes page background - used for tab active states" -msgstr "" -"Seiten-Hintergrund Ihres Themes - verwendet für den aktiven Tab-Zustand" - -#: admin/settings/settings-frontend-styles.php:47 -msgid "Subtext" -msgstr "Subtexte" - -#: admin/settings/settings-frontend-styles.php:47 -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "" -"Verwendet für bestimmte Texte und Anmerkungen - Breadcrumbs, Kleingedrucktes " -"etc." - -#: admin/settings/settings-frontend-styles.php:51 -msgid "" -"To edit colours woocommerce/assets/css/woocommerce-base.less " -"and woocommerce.css need to be writable. See the Codex for more " -"information." -msgstr "" -"Um die Farben bearbeiten zu können, müssen die Dateien woocommerce/" -"assets/css/woocommerce-base.less und woocommerce.css " -"beschreibbar sein. Schauen Sie im WordPress-Codex (Engl.) für weitere " -"Informationen dazu." - -#: admin/settings/settings-init.php:18 -msgid "Localisation" -msgstr "Sprachdateien" - -#: admin/settings/settings-init.php:19 -msgid "Use informal localisation for %s" -msgstr "" -"Informelle Übersetzungen für diese Sprache (%s) verwenden - \"DU\"-Anrede" - -#: admin/settings/settings-init.php:33 -msgid "General Options" -msgstr "Grundeinstellungen" - -#: admin/settings/settings-init.php:36 -msgid "Base Location" -msgstr "Basisland" - -#: admin/settings/settings-init.php:37 -msgid "" -"This is the base location for your business. Tax rates will be based on this " -"country." -msgstr "" -"Dies ist die regionale Basis (Stammland/ Basisland) für Ihren Shop. " -"Steuersätze werden auf diesem Land basieren." - -#: admin/settings/settings-init.php:46 -msgid "Currency" -msgstr "Währung" - -#: admin/settings/settings-init.php:47 -msgid "" -"This controls what currency prices are listed at in the catalog and which " -"currency gateways will take payments in." -msgstr "" -"Dies legt fest, in welcher Währung im Produktkatalog Preise gelistet werden " -"und in welcher Währung die entsprechenden Zahlungsweise Zahlungen " -"entgegennehmen." - -#: admin/settings/settings-init.php:58 -msgid "Allowed Countries" -msgstr "Erlaubte Länder" - -#: admin/settings/settings-init.php:59 -msgid "These are countries that you are willing to ship to." -msgstr "Dies sind die Länder, wohin Sie versenden wollen." - -#: admin/settings/settings-init.php:67 -msgid "All Countries" -msgstr "Alle Länder" - -#: admin/settings/settings-init.php:68 admin/settings/settings-init.php:73 -msgid "Specific Countries" -msgstr "Ausgewählte Länder" - -#: admin/settings/settings-init.php:84 -msgid "Store Notice" -msgstr "Shop-Hinweistext" - -#: admin/settings/settings-init.php:85 -msgid "Enable site-wide store notice text" -msgstr "Webseiten-weiten Shop-Hinweistext aktivieren" - -#: admin/settings/settings-init.php:92 -msgid "Store Notice Text" -msgstr "Hinweistext für den Shop (im Testmodus etc.)" - -#: admin/settings/settings-init.php:95 -msgid "" -"This is a demo store for testing purposes — no orders shall be " -"fulfilled." -msgstr "" -"Dies ist ein Demo-Shop, nur für Testzwecke — Bestellungen werden " -"nicht ausgeführt." - -#: admin/settings/settings-init.php:102 -msgid "Cart, Checkout and Accounts" -msgstr "Warenkorb, Kasse und Kundenkonten" - -#: admin/settings/settings-init.php:105 admin/woocommerce-admin-content.php:61 -#: admin/woocommerce-admin-content.php:76 -#: admin/woocommerce-admin-reports.php:63 -msgid "Coupons" -msgstr "Gutscheine" - -#: admin/settings/settings-init.php:106 -msgid "Enable the use of coupons" -msgstr "Verwendung von Gutscheinen aktivieren" - -#: admin/settings/settings-init.php:110 -msgid "Coupons can be applied from the cart and checkout pages." -msgstr "" -"Gutscheine können von den Seiten des Warenkorbs und der Kasse aus zugewiesen " -"werden." - -#: admin/settings/settings-init.php:114 -#: admin/woocommerce-admin-install.php:201 -#: admin/woocommerce-admin-status.php:307 -msgid "Checkout" -msgstr "Bezahlvorgang (Zur Kasse)" - -#: admin/settings/settings-init.php:115 -msgid "Enable guest checkout (no account required)" -msgstr "Gastbestellungen ermöglichen (kein Benutzerkonto erforderlich)" - -#: admin/settings/settings-init.php:123 -msgid "Enable customer note field on checkout" -msgstr "Hinweisfeld für Kunden beim Bezahlvorgang aktivieren" - -#: admin/settings/settings-init.php:131 -msgid "Force secure checkout" -msgstr "Sicheren Bezahlvorgang erzwingen" - -#: admin/settings/settings-init.php:137 -msgid "" -"Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -msgstr "" -"SSL-Verbindung (HTTPS) auf den Seiten des Bezahlvorgangs erzwingen (ein SSL-" -"Zertifikat für die Domain ist dann erforderlich!)." - -#: admin/settings/settings-init.php:141 -msgid "Un-force HTTPS when leaving the checkout" -msgstr "" -"HTTPS nicht mehr erzwingen, wenn der Bezahlvorgang (Kasse/ Checkout) " -"verlassen wird." - -#: admin/settings/settings-init.php:150 -msgid "Registration" -msgstr "Registrierung" - -#: admin/settings/settings-init.php:151 -msgid "Allow registration on the checkout page" -msgstr "Benutzerregistrierung auf der 'Bezahlen'-Seite erlauben" - -#: admin/settings/settings-init.php:159 -msgid "Allow registration on the \"My Account\" page" -msgstr "Benutzerregistrierung auf der 'Mein Konto'-Seite erlauben" - -#: admin/settings/settings-init.php:167 -msgid "Register using the email address for the username" -msgstr "Beim Registrieren die E-Mail-Adresse als Benutzername verwenden" - -#: admin/settings/settings-init.php:175 -msgid "Customer Accounts" -msgstr "Kunden-Benutzerkonten" - -#: admin/settings/settings-init.php:176 -msgid "Prevent customers from accessing WordPress admin" -msgstr "Kunden den Zugang zum WordPress-Adminbereich verwehren" - -#: admin/settings/settings-init.php:184 -msgid "Clear cart when logging out" -msgstr "Warenkorb beim Abmelden leeren" - -#: admin/settings/settings-init.php:192 -msgid "Allow customers to repurchase orders from their account page" -msgstr "" -"Es Kunden erlauben, Bestellungen von ihrem Kundenkonto aus erneut zu " -"bestellen" - -#: admin/settings/settings-init.php:201 -msgid "Styles and Scripts" -msgstr "Stile und Skripte" - -#: admin/settings/settings-init.php:204 -msgid "Styling" -msgstr "Styling" - -#: admin/settings/settings-init.php:205 -msgid "Enable WooCommerce CSS" -msgstr "WooCommerce-eigene CSS-Stile aktivieren" - -#: admin/settings/settings-init.php:216 -msgid "Scripts" -msgstr "Skripte" - -#: admin/settings/settings-init.php:217 -msgid "Enable Lightbox" -msgstr "Lightbox-Funktion aktivieren" - -#: admin/settings/settings-init.php:220 -msgid "" -"Include WooCommerce's lightbox. Product gallery images and the add review " -"form will open in a lightbox." -msgstr "" -"WooCommerce-eigene Lightbox (prettyPhoto) verwenden. Dann werden " -"Produktgaleriebilder und das Schreiben einer neuen Produktbewertung in einer " -"Lightbox geöffnet." - -#: admin/settings/settings-init.php:226 -msgid "Enable enhanced country select boxes" -msgstr "Erweiterte Länderauswahl-Boxen aktivieren" - -#: admin/settings/settings-init.php:231 -msgid "This will enable a script allowing the country fields to be searchable." -msgstr "" -"Dies wird ein Skript aktivieren, welches die Länder-Felder durchsuchbar " -"macht." - -#: admin/settings/settings-init.php:236 -msgid "Downloadable Products" -msgstr "Herunterladbare Produkte" - -#: admin/settings/settings-init.php:239 -msgid "File Download Method" -msgstr "Methode zum Herunterladen der Datei" - -#: admin/settings/settings-init.php:240 -msgid "" -"Forcing downloads will keep URLs hidden, but some servers may serve large " -"files unreliably. If supported, X-Accel-Redirect/ X-" -"Sendfile can be used to serve downloads instead (server requires " -"mod_xsendfile)." -msgstr "" -"Downloads zu erzwingen, belässt die URLs im verborgenen Zustand, doch einige " -"Webserver stellen große Dateien nur unzuverlässig bereit. Falls unterstützt, " -"können X-Accel-Redirect/ X-Sendfile verwendet " -"werden, um damit die Downloads bereitzustellen (der Webserver erfordert dann " -"das Modul mod_xsendfile)." - -#: admin/settings/settings-init.php:248 -msgid "Force Downloads" -msgstr "Downloads erzwingen" - -#: admin/settings/settings-init.php:249 -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "X-Accel-Redirect/ X-Sendfile" - -#: admin/settings/settings-init.php:250 -msgid "Redirect only" -msgstr "Nur weiterleiten" - -#: admin/settings/settings-init.php:255 -msgid "Access Restriction" -msgstr "Zugriffsbeschränkung" - -#: admin/settings/settings-init.php:256 -msgid "Downloads require login" -msgstr "Downloads erfordern eine Anmeldung" - -#: admin/settings/settings-init.php:260 -msgid "This setting does not apply to guest purchases." -msgstr "Diese Einstellung betrifft nicht die Gast-Bestellungen!" - -#: admin/settings/settings-init.php:265 -msgid "Grant access to downloadable products after payment" -msgstr "Zugriff auf herunterladbare Produkte nach der Zahlung gewähren" - -#: admin/settings/settings-init.php:269 -msgid "" -"Enable this option to grant access to downloads when orders are \"processing" -"\", rather than \"completed\"." -msgstr "" -"Aktivieren Sie diese Einstellung, um den Zugriff auf Download-Dateien schon " -"zu gewähren, wenn deren Bestellungen noch \"In Bearbeitung\" sind - statt " -"bereits \"Fertiggestellt\"." - -#: admin/settings/settings-init.php:285 -msgid "" -"Note: The shop page has children - child pages will not work if you enable " -"this option." -msgstr "" -"Hinweis: Die Shop-Seite hat untergeordnete Seiten (Kindseiten) - Kindseiten " -"werden nicht funktionieren, wenn Sie die Option aktivieren." - -#: admin/settings/settings-init.php:290 -msgid "Page Setup" -msgstr "Seiten-Einrichtung" - -#: admin/settings/settings-init.php:292 -msgid "" -"Set up core WooCommerce pages here, for example the base page. The base page " -"can also be used in your %sproduct permalinks%s." -msgstr "" -"WooCommerce Basisseiten hier anlegen, zum Beispiel die Shop-Basisseite. Die " -"Shop-Basisseite kann auch in Ihren %sProdukt-Permalinks%s verwendet werden." - -#: admin/settings/settings-init.php:297 -msgid "Shop Base Page" -msgstr "Shop-Basisseite" - -#: admin/settings/settings-init.php:298 -msgid "" -"This sets the base page of your shop - this is where your product archive " -"will be." -msgstr "" -"Dies legt die Basisseite Ihres Shops fest - dort wird auch Ihr Produktarchiv " -"erscheinen." - -#: admin/settings/settings-init.php:308 -msgid "Terms Page ID" -msgstr "'AGB' Seite" - -#: admin/settings/settings-init.php:309 -msgid "" -"If you define a \"Terms\" page the customer will be asked if they accept " -"them when checking out." -msgstr "" -"Wenn Sie eine \"AGB\"-Seite festlegen, wird der Kunde gebeten, diese zu " -"akzeptieren, wenn die Kasse-/ Bezahlen-Seite aufgerufen wird." - -#: admin/settings/settings-init.php:320 -msgid "Shop Pages" -msgstr "Shop-Seiten" - -#: admin/settings/settings-init.php:320 -msgid "" -"The following pages need selecting so that WooCommerce knows where they are. " -"These pages should have been created upon installation of the plugin, if not " -"you will need to create them." -msgstr "" -"Die folgenden Seiten brauchen eine Auswahl/ Festlegung, damit WooCommerce " -"sie zuordnen kann. Diese Seiten sollten während der Plugin-Installation " -"erstellt worden sein. Falls nicht, müssen Sie diese erstellen." - -#: admin/settings/settings-init.php:323 -msgid "Cart Page" -msgstr "'Warenkorb' Seite" - -#: admin/settings/settings-init.php:324 -msgid "Page contents: [woocommerce_cart]" -msgstr "Die Seite muss den Shortcode [woocommerce_cart] enthalten" - -#: admin/settings/settings-init.php:334 -msgid "Checkout Page" -msgstr "'Zur Kasse' Seite" - -#: admin/settings/settings-init.php:335 -msgid "Page contents: [woocommerce_checkout]" -msgstr "" -"Die Seite muss den Shortcode [woocommerce_checkout] enthalten" - -#: admin/settings/settings-init.php:345 -msgid "Pay Page" -msgstr "'Bezahlen' Seite" - -#: admin/settings/settings-init.php:346 -msgid "Page contents: [woocommerce_pay] Parent: \"Checkout\"" -msgstr "" -"Die Seite muss den Shortcode [woocommerce_pay] enthalten - " -"übergeordnet: \"Kasse\"" - -#: admin/settings/settings-init.php:356 -msgid "Thanks Page" -msgstr "'Danke' Seite" - -#: admin/settings/settings-init.php:357 -msgid "Page contents: [woocommerce_thankyou] Parent: \"Checkout\"" -msgstr "" -"Die Seite muss den Shortcode [woocommerce_thankyou] enthalten - " -"übergeordnet: \"Kasse\"" - -#: admin/settings/settings-init.php:367 -msgid "My Account Page" -msgstr "'Mein Konto' Seite" - -#: admin/settings/settings-init.php:368 -msgid "Page contents: [woocommerce_my_account]" -msgstr "" -"Die Seite muss den Shortcode [woocommerce_my_account] enthalten" - -#: admin/settings/settings-init.php:378 -msgid "Edit Address Page" -msgstr "'Adresse bearbeiten' Seite" - -#: admin/settings/settings-init.php:379 -msgid "Page contents: [woocommerce_edit_address] Parent: \"My Account\"" -msgstr "" -"Die Seite muss den Shortcode [woocommerce_edit_address] " -"enthalten - übergeordnet: \"Mein Konto\"" - -#: admin/settings/settings-init.php:389 -msgid "View Order Page" -msgstr "'Bestellung ansehen' Seite" - -#: admin/settings/settings-init.php:390 -msgid "Page contents: [woocommerce_view_order] Parent: \"My Account\"" -msgstr "" -"Die Seite muss den Shortcode [woocommerce_view_order] enthalten " -"- übergeordnet: \"Mein Konto\"" - -#: admin/settings/settings-init.php:400 -msgid "Change Password Page" -msgstr "'Passwort ändern' Seite" - -#: admin/settings/settings-init.php:401 -msgid "Page contents: [woocommerce_change_password] Parent: \"My Account\"" -msgstr "" -"Die Seite muss den Shortcode [woocommerce_change_password] " -"enthalten - übergeordnet: \"Mein Konto\"" - -#: admin/settings/settings-init.php:411 -msgid "Logout Page" -msgstr "'Abmelden' Seite" - -#: admin/settings/settings-init.php:412 -msgid "Parent: \"My Account\"" -msgstr "Übergeordnet: 'Mein Konto'" - -#: admin/settings/settings-init.php:422 -msgid "Lost Password Page" -msgstr "'Passwort verloren' Seite" - -#: admin/settings/settings-init.php:423 -msgid "Page contents: [woocommerce_lost_password] Parent: \"My Account\"" -msgstr "" -"Seiteninhalt: [woocommerce_lost_password] — übergeordnet: " -"\"Mein Konto\"" - -#: admin/settings/settings-init.php:439 -msgid "Catalog Options" -msgstr "Katalog-Einstellungen" - -#: admin/settings/settings-init.php:442 -msgid "Default Product Sorting" -msgstr "Standard-Produktsortierung" - -#: admin/settings/settings-init.php:443 -msgid "This controls the default sort order of the catalog." -msgstr "Dies kontrolliert die Standardsortierung des Produktkatalogs." - -#: admin/settings/settings-init.php:449 -msgid "Default sorting (custom ordering + name)" -msgstr "Standardsortierung (benutzerdefinierte Reihenfolge + Name)" - -#: admin/settings/settings-init.php:450 -msgid "Popularity (sales)" -msgstr "Beliebtheit (Verkäufe)" - -#: admin/settings/settings-init.php:451 -msgid "Average Rating" -msgstr "Durchschnittliche Bewertung" - -#: admin/settings/settings-init.php:452 -msgid "Sort by most recent" -msgstr "Nach Neuestem Produkt" - -#: admin/settings/settings-init.php:453 -msgid "Sort by price (asc)" -msgstr "Nach Preis (aufsteigend)" - -#: admin/settings/settings-init.php:454 -msgid "Sort by price (desc)" -msgstr "Nach Preis (absteigend)" - -#: admin/settings/settings-init.php:460 -msgid "Shop Page Display" -msgstr "Shop-Seitenanzeige" - -#: admin/settings/settings-init.php:461 -msgid "This controls what is shown on the product archive." -msgstr "Dies legt fest, was auf den Produktarchiven angezeigt wird." - -#: admin/settings/settings-init.php:467 admin/settings/settings-init.php:482 -msgid "Show products" -msgstr "Produkte anzeigen" - -#: admin/settings/settings-init.php:468 admin/settings/settings-init.php:483 -msgid "Show subcategories" -msgstr "Unterkategorien anzeigen" - -#: admin/settings/settings-init.php:469 admin/settings/settings-init.php:484 -msgid "Show both" -msgstr "Beide anzeigen" - -#: admin/settings/settings-init.php:475 -msgid "Default Category Display" -msgstr "Standard Kategorieanzeige" - -#: admin/settings/settings-init.php:476 -msgid "This controls what is shown on category archives." -msgstr "" -"Dies legt fest, was auf den Seiten von Produktkategoriearchiven angezeigt " -"wird." - -#: admin/settings/settings-init.php:490 -msgid "Add to cart" -msgstr "In den Warenkorb" - -#: admin/settings/settings-init.php:491 -msgid "Redirect to the cart page after successful addition" -msgstr "Zum Warenkorb weiterleiten, nach erfolgreichem Hinzufügen" - -#: admin/settings/settings-init.php:499 -msgid "Enable AJAX add to cart buttons on archives" -msgstr "AJAX-Warenkorb-Buttons auf Produktarchivseiten aktivieren" - -#: admin/settings/settings-init.php:508 -msgid "" -"The following options affect the fields available on the edit product page." -msgstr "" -"Die folgenden Einstellungen beeinflussen die Felder, welche auf der Produkt-" -"bearbeiten-Seite verfügbar sind." - -#: admin/settings/settings-init.php:511 -msgid "Product Fields" -msgstr "Produktfelder" - -#: admin/settings/settings-init.php:512 -msgid "Enable the SKU field for products" -msgstr "Das Art.-Nr.-Feld (SKU) für Produkte aktivieren" - -#: admin/settings/settings-init.php:520 -msgid "" -"Enable the weight field for products (some shipping methods " -"may require this)" -msgstr "" -"Das Gewichts-Feld für Produkte aktivieren (manche " -"Versandmethoden könnten dies erfordern)." - -#: admin/settings/settings-init.php:528 -msgid "" -"Enable the dimension fields for products (some shipping " -"methods may require this)" -msgstr "" -"Das Größen-Feld für Produkte aktivieren (manche " -"Versandmethoden könnten dies erfordern)." - -#: admin/settings/settings-init.php:536 -msgid "" -"Show weight and dimension values on the Additional " -"Information tab" -msgstr "" -"Die Werte für Gewicht und Größe unter dem Tab " -"Zusätzliche Informationen anzeigen" - -#: admin/settings/settings-init.php:544 -msgid "Weight Unit" -msgstr "Gewichtseinheit" - -#: admin/settings/settings-init.php:545 -msgid "This controls what unit you will define weights in." -msgstr "Dies legt fest, in welcher Einheit Sie Gewichte definieren." - -#: admin/settings/settings-init.php:551 -msgid "kg" -msgstr "Kilogramm (Kg)" - -#: admin/settings/settings-init.php:552 -msgid "g" -msgstr "g" - -#: admin/settings/settings-init.php:553 -msgid "lbs" -msgstr "Pfund" - -#: admin/settings/settings-init.php:554 -msgid "oz" -msgstr "oz" - -#: admin/settings/settings-init.php:560 -msgid "Dimensions Unit" -msgstr "Größeneinheit" - -#: admin/settings/settings-init.php:561 -msgid "This controls what unit you will define lengths in." -msgstr "" -"Dies legt fest, in welcher Einheit Sie die Größe bzw. Länge definieren." - -#: admin/settings/settings-init.php:568 -msgid "cm" -msgstr "Zentimenter (cm)" - -#: admin/settings/settings-init.php:569 -msgid "mm" -msgstr "mm" - -#: admin/settings/settings-init.php:570 -msgid "in" -msgstr "Zoll (Inch)" - -#: admin/settings/settings-init.php:571 -msgid "yd" -msgstr "Meter (m)" - -#: admin/settings/settings-init.php:577 -msgid "Product Ratings" -msgstr "Produktbewertungen" - -#: admin/settings/settings-init.php:578 -msgid "Enable ratings on reviews" -msgstr "Bewertungen bei Rezensionen aktivieren" - -#: admin/settings/settings-init.php:587 -msgid "Ratings are required to leave a review" -msgstr "Eine Wertung ist erforderlich, um eine Produktbewertung abzugeben" - -#: admin/settings/settings-init.php:596 -msgid "Show \"verified owner\" label for customer reviews" -msgstr "\"Verifizierter Kauf\" Beschriftung für Kundenbewertungen anzeigen" - -#: admin/settings/settings-init.php:606 -msgid "Pricing Options" -msgstr "Preisoptionen" - -#: admin/settings/settings-init.php:606 -msgid "The following options affect how prices are displayed on the frontend." -msgstr "" -"Die folgenden Einstellungen beeinflussen, wie Preise in der Besucheransicht " -"(Frontend) angezeigt werden." - -#: admin/settings/settings-init.php:609 -msgid "Currency Position" -msgstr "Position der Währung" - -#: admin/settings/settings-init.php:610 -msgid "This controls the position of the currency symbol." -msgstr "Dies legt die Position des Währungssymbols fest." - -#: admin/settings/settings-init.php:616 -msgid "Left" -msgstr "Links" - -#: admin/settings/settings-init.php:617 -msgid "Right" -msgstr "Rechts" - -#: admin/settings/settings-init.php:618 -msgid "Left (with space)" -msgstr "Links (mit Abstand)" - -#: admin/settings/settings-init.php:619 -msgid "Right (with space)" -msgstr "Rechts (mit Abstand)" - -#: admin/settings/settings-init.php:625 -msgid "Thousand Separator" -msgstr "Tausender-Trennzeichen" - -#: admin/settings/settings-init.php:626 -msgid "This sets the thousand separator of displayed prices." -msgstr "" -"Dies legt das Tausender-Trennzeichen fest, welches bei der Preisanzeige " -"verwendet wird." - -#: admin/settings/settings-init.php:635 -msgid "Decimal Separator" -msgstr "Zehner-Trennzeichen" - -#: admin/settings/settings-init.php:636 -msgid "This sets the decimal separator of displayed prices." -msgstr "" -"Dies legt das Trennzeichen für Nachkommastellen fest, welches für die " -"Preisanzeige verwendet wird." - -#: admin/settings/settings-init.php:645 -msgid "Number of Decimals" -msgstr "Anzahl der Dezimalstellen" - -#: admin/settings/settings-init.php:646 -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "" -"Dies legt die Zahl der Nachkommastellen fest, die bei der Preisanzeige " -"erscheinen werden." - -#: admin/settings/settings-init.php:659 -msgid "Trailing Zeros" -msgstr "Nachfolgende Nullen" - -#: admin/settings/settings-init.php:660 -msgid "" -"Remove zeros after the decimal point. e.g. $10.00 becomes " -"$10" -msgstr "" -"Nullen nach dem Komma/ Punkt entfernen. Z.B.: 10.00 € wird zu " -"10 €" - -#: admin/settings/settings-init.php:668 -msgid "Image Options" -msgstr "Bildoptionen" - -#: admin/settings/settings-init.php:668 -msgid "" -"These settings affect the actual dimensions of images in your catalog - the " -"display on the front-end will still be affected by CSS styles. After " -"changing these settings you may need to regenerate your " -"thumbnails." -msgstr "" -"Diese Einstellungen wirken sich direkt auf die tatsächlichen Bildgrößen in " -"Ihrem Produktkatalog aus. Die Anzeige in der Besucheransicht (Frontend) wird " -"dennoch (auch) von den CSS-Stilen beeinflusst. Nachdem diese Einstellungen " -"hier geändert wurden, ist es empfehlenswert, die Bilder bzw. Vorschaubilder " -"neu erstellen zu lassen. Dazu wird das freie " -"WordPress-Plugin 'Regenerate Thumbnails' empfohlen." - -#: admin/settings/settings-init.php:671 -msgid "Catalog Images" -msgstr "Katalogbilder" - -#: admin/settings/settings-init.php:672 -msgid "This size is usually used in product listings" -msgstr "Diese Größe wird üblicherweise in Produktauflistungen verwendet" - -#: admin/settings/settings-init.php:685 -msgid "Single Product Image" -msgstr "Einzelnes Produktbild" - -#: admin/settings/settings-init.php:686 -msgid "This is the size used by the main image on the product page." -msgstr "" -"Dies ist die Größe, die vom Hauptproduktbild auf der Produktseite verwendet " -"wird." - -#: admin/settings/settings-init.php:699 -msgid "Product Thumbnails" -msgstr "Produktvorschaubilder" - -#: admin/settings/settings-init.php:700 -msgid "" -"This size is usually used for the gallery of images on the product page." -msgstr "" -"Diese Größe wird üblicherweise für die Produktbildergalerie auf der " -"Produktseite verwendet." - -#: admin/settings/settings-init.php:719 -msgid "Inventory Options" -msgstr "Bestand/ Lager - Einstellungen" - -#: admin/settings/settings-init.php:722 -msgid "Manage Stock" -msgstr "Lager verwalten?" - -#: admin/settings/settings-init.php:723 -msgid "Enable stock management" -msgstr "Lagerverwaltung aktiveren" - -#: admin/settings/settings-init.php:730 -msgid "Hold Stock (minutes)" -msgstr "Lager anhalten (Minuten)" - -#: admin/settings/settings-init.php:731 -msgid "" -"Hold stock (for unpaid orders) for x minutes. When this limit is reached, " -"the pending order will be cancelled. Leave blank to disable." -msgstr "" -"Das Lager für x Minuten \"anhalten\" - für unbezahlte Bestellungen. Wenn " -"dieses Zeitlimit erreicht ist, wird die schwebende Bestellung abgebrochen. " -"Frei lassen, um diese Funktion zu deaktivieren." - -#: admin/settings/settings-init.php:743 -msgid "Notifications" -msgstr "Benachrichtigungen" - -#: admin/settings/settings-init.php:744 -msgid "Enable low stock notifications" -msgstr "Benachrichtigung bei geringer Lagermenge aktivieren" - -#: admin/settings/settings-init.php:752 -msgid "Enable out of stock notifications" -msgstr "Benachrichtigung bei 'vergriffen' aktivieren" - -#: admin/settings/settings-init.php:760 -msgid "Notification Recipient" -msgstr "Empfänger der Benachrichtigung" - -#: admin/settings/settings-init.php:768 -msgid "Low Stock Threshold" -msgstr "Schwellenwert: Geringer Bestand" - -#: admin/settings/settings-init.php:781 -msgid "Out Of Stock Threshold" -msgstr "Schwellenwert: Nicht mehr am Lager" - -#: admin/settings/settings-init.php:794 -msgid "Out Of Stock Visibility" -msgstr "'Vergriffen'-Sichtbarkeit" - -#: admin/settings/settings-init.php:795 -msgid "Hide out of stock items from the catalog" -msgstr "Vergriffene Produkte im Produkatalog verbergen" - -#: admin/settings/settings-init.php:802 -msgid "Stock Display Format" -msgstr "Lager-Anzeigeformat" - -#: admin/settings/settings-init.php:803 -msgid "This controls how stock is displayed on the frontend." -msgstr "" -"Dies kontrolliert, wie die Lagermenge in der Besucheransicht (Frontend) " -"angezeigt wird." - -#: admin/settings/settings-init.php:809 -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "Lagermenge immer anzeigen, z.B. \"12 am Lager\"" - -#: admin/settings/settings-init.php:810 -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "" -"Die Lagermenge nur anzeigen, wenn wenig vorrätig ist, z.B. \"Nur 2 am Lager" -"\" vs. \"Am Lager\"" - -#: admin/settings/settings-init.php:811 -msgid "Never show stock amount" -msgstr "Lagermenge niemals anzeigen" - -#: admin/settings/settings-init.php:823 -#: admin/woocommerce-admin-settings.php:292 -msgid "Shipping Options" -msgstr "Versandoptionen" - -#: admin/settings/settings-init.php:826 -msgid "Shipping Calculations" -msgstr "Versandberechnungen" - -#: admin/settings/settings-init.php:827 -msgid "Enable shipping" -msgstr "Versandkosten aktivieren" - -#: admin/settings/settings-init.php:835 -msgid "Enable the shipping calculator on the cart page" -msgstr "Aktivieren Sie den Versandrechner auf der Warenkorb-Seite" - -#: admin/settings/settings-init.php:843 -msgid "Hide shipping costs until an address is entered" -msgstr "Versandkosten verbergen, bis eine Anschrift eingegeben wird" - -#: admin/settings/settings-init.php:851 -msgid "Shipping Method Display" -msgstr "Versandmethodenanzeige" - -#: admin/settings/settings-init.php:852 -msgid "" -"This controls how multiple shipping methods are displayed on the frontend." -msgstr "" -"Dies kontrolliert, wie mehrere Versandmethoden in der Besucheransicht " -"(Frontend) angezeigt werden." - -#: admin/settings/settings-init.php:858 -msgid "Radio buttons" -msgstr "Radio-Buttons" - -#: admin/settings/settings-init.php:859 -msgid "Select box" -msgstr "Auswahlfeld" - -#: admin/settings/settings-init.php:865 -msgid "Shipping Destination" -msgstr "Versandziel" - -#: admin/settings/settings-init.php:866 -msgid "Only ship to the users billing address" -msgstr "Nur an die Versandanschrift des Kunden versenden" - -#: admin/settings/settings-init.php:874 -msgid "Ship to billing address by default" -msgstr "Standardmäßig an die Rechnungsanschrift versenden" - -#: admin/settings/settings-init.php:882 -msgid "Collect shipping address even when not required" -msgstr "Versandanschrift aufzeichnen, auch wenn diese nicht erforderlich ist" - -#: admin/settings/settings-init.php:900 -#: admin/woocommerce-admin-settings.php:188 -#: admin/woocommerce-admin-settings.php:329 -msgid "Payment Gateways" -msgstr "Zahlungsweisen" - -#: admin/settings/settings-init.php:900 -msgid "" -"Installed payment gateways are displayed below. Drag and drop payment " -"gateways to control their display order on the checkout." -msgstr "" -"Die installierten Zahlungsweisen sind unten aufgelistet. Ziehen Sie via Drag " -"& Drop die ausgewählten Zahlungsweisen in die gewünschte Reihenfolge für " -"den Bezahlvorgang (in der Besucheransicht)." - -#: admin/settings/settings-init.php:918 -#: admin/woocommerce-admin-settings.php:222 -msgid "Tax Options" -msgstr "Mehrwertsteueroptionen" - -#: admin/settings/settings-init.php:921 -msgid "Enable Taxes" -msgstr "Mehrwertsteuer aktivieren" - -#: admin/settings/settings-init.php:922 -msgid "Enable taxes and tax calculations" -msgstr "Mehrwertsteuer und deren Berechnung aktivieren" - -#: admin/settings/settings-init.php:929 -msgid "Prices Entered With Tax" -msgstr "Preise werden inklusive Mehrwertsteuer eingegeben" - -#: admin/settings/settings-init.php:933 -msgid "" -"This option is important as it will affect how you input prices. Changing it " -"will not update existing products." -msgstr "" -"Diese Einstellung ist sehr wichtig, da sie beeinflusst, wie die Preise " -"eingegeben werden. ACHTUNG: Eine Änderung hier, wird nicht " -"bereits bestehende Produkte aktualiseren!" - -#: admin/settings/settings-init.php:935 -msgid "Yes, I will enter prices inclusive of tax" -msgstr "JA, ich gebe die Produktpreise inklusive (mit) Mehrwertsteuer ein." - -#: admin/settings/settings-init.php:936 -msgid "No, I will enter prices exclusive of tax" -msgstr "NEIN, ich gebe die Produktpreise exklusive (ohne) Mehrwertsteuer ein." - -#: admin/settings/settings-init.php:941 -msgid "Calculate Tax Based On:" -msgstr "Mwst. berechnen, basierend auf:" - -#: admin/settings/settings-init.php:943 -msgid "This option determines which address is used to calculate tax." -msgstr "" -"Diese Option legt fest, welche Anschrift für das Berechnen der Steuer " -"herangezogen wird." - -#: admin/settings/settings-init.php:947 -msgid "Customer shipping address" -msgstr "Versandanschrift des Kunden" - -#: admin/settings/settings-init.php:948 -msgid "Customer billing address" -msgstr "Rechnungsanschrift des Kunden" - -#: admin/settings/settings-init.php:949 admin/settings/settings-init.php:961 -msgid "Shop base address" -msgstr "Basisanschrift des Shops (Basisland)" - -#: admin/settings/settings-init.php:954 -msgid "Default Customer Address:" -msgstr "Standard-Kundenanschrift:" - -#: admin/settings/settings-init.php:956 -msgid "" -"This option determines the customers default address (before they input " -"their own)." -msgstr "" -"Diese Option legt die Standardanschrift des Kunden fest (bevor dieser seine " -"eigene eingibt)." - -#: admin/settings/settings-init.php:960 -msgid "No address" -msgstr "Keine Anschrift" - -#: admin/settings/settings-init.php:966 -msgid "Shipping Tax Class:" -msgstr "Versandsteuerklasse:" - -#: admin/settings/settings-init.php:967 -msgid "" -"Optionally control which tax class shipping gets, or leave it so shipping " -"tax is based on the cart items themselves." -msgstr "" -"Optional festlegen, welche Steuerklasse für den Versand gilt. Oder lassen " -"Sie dies frei, damit die Versandsteuer auf den Warenkorb-Elementen selbst " -"basiert." - -#: admin/settings/settings-init.php:972 -msgid "Shipping tax class based on cart items" -msgstr "Versand-Steuerklasse basierend auf Warenkorb-Elementen" - -#: admin/settings/settings-init.php:977 -msgid "Rounding" -msgstr "Rundung" - -#: admin/settings/settings-init.php:978 -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "" -"Steuern auf der Ebene der Zwischensumme runden, statt pro Position zu runden" - -#: admin/settings/settings-init.php:985 -msgid "Additional Tax Classes" -msgstr "Zusätzliche Steuerklassen" - -#: admin/settings/settings-init.php:986 -msgid "" -"List additonal tax classes below (1 per line). This is in addition to the " -"default Standard Rate. Tax classes can be assigned to products." -msgstr "" -"Listen Sie unten zusätzliche Steuerklassen auf (1 pro Zeile). Dies ist " -"zusätzlich zum standardmäßigen Regelsatz. Steuerklassen können " -"Produkten zugewiesen werden." - -#: admin/settings/settings-init.php:990 -msgid "Reduced Rate%sZero Rate" -msgstr "Ermäßigter Steuersatz%sSteuerfrei" - -#: admin/settings/settings-init.php:994 -msgid "Display prices during cart/checkout:" -msgstr "Preisanzeige im Warenkorb und während des Bezahlvorgangs:" - -#: admin/settings/settings-init.php:999 -msgid "Including tax" -msgstr "Inklusive Mehrwertsteuer" - -#: admin/settings/settings-init.php:1000 -msgid "Excluding tax" -msgstr "Exklusive Mehrwertsteuer" - -#: admin/settings/settings-init.php:1012 -msgid "Email Sender Options" -msgstr "E-Mail-Absender Einstellungen" - -#: admin/settings/settings-init.php:1012 -msgid "" -"The following options affect the sender (email address and name) used in " -"WooCommerce emails." -msgstr "" -"Die folgenden Einstellungen beeinflussen den Absender (E-Mail-Adresse und " -"Name), der in WooCommerce-E-Mails verwendet wird." - -#: admin/settings/settings-init.php:1015 -msgid "\"From\" Name" -msgstr "\"Absender\"-Name" - -#: admin/settings/settings-init.php:1024 -msgid "\"From\" Email Address" -msgstr "\"Absender\"-E-Mail-Adresse" - -#: admin/settings/settings-init.php:1037 -msgid "Email Template" -msgstr "E-Mail-Template" - -#: admin/settings/settings-init.php:1037 -msgid "" -"This section lets you customise the WooCommerce emails. Click here to preview your email template. For more " -"advanced control copy woocommerce/templates/emails/ to " -"yourtheme/woocommerce/emails/." -msgstr "" -"In diesem Bereich können Sie die WooCommerce E-Mails anpassen. Klicken Sie hier für eine Vorschau Ihrer E-Mail-Vorlage." -". Für erweiterte Anpassungsmöglichkeiten müssen Sie den folgenden Plugin-" -"Unterordner woocommerce/templates/emails/ in Ihr Theme bzw. " -"Child Theme kopieren, z.B. mit solch einem Pfad: ihr-theme/" -"woocommmerce/emails/." - -#: admin/settings/settings-init.php:1040 -msgid "Header Image" -msgstr "Kopfzeilenbild (Header)" - -#: admin/settings/settings-init.php:1041 -msgid "" -"Enter a URL to an image you want to show in the email's header. Upload your " -"image using the media uploader." -msgstr "" -"Geben Sie eine URL zu einem Bild ein, welches Sie im Kopf der E-Mail " -"anzeigen wollen. Laden Sie Ihr Bild über die WordPress " -"Mediathek hoch." - -#: admin/settings/settings-init.php:1049 -msgid "Email Footer Text" -msgstr "E-Mail-Fußzeilentext" - -#: admin/settings/settings-init.php:1050 -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "Text, der in der Fußzeile von WooCommerce E-Mails erscheint." - -#: admin/settings/settings-init.php:1054 -msgid "Powered by WooCommerce" -msgstr "Angetrieben von WooCommerce" - -#: admin/settings/settings-init.php:1058 -msgid "Base Colour" -msgstr "Basisfarbe" - -#: admin/settings/settings-init.php:1059 -msgid "" -"The base colour for WooCommerce email templates. Default #557da1." -msgstr "" -"Die Basisfarbe für WooCommerce E-Mail-Vorlagen. Standard #557da1." - -#: admin/settings/settings-init.php:1067 -msgid "Background Colour" -msgstr "Hintergrundfarbe" - -#: admin/settings/settings-init.php:1068 -msgid "" -"The background colour for WooCommerce email templates. Default " -"#f5f5f5." -msgstr "" -"Die Hintergrundfarbe für die WooCommerce E-Mail-Templates. Standard: " -"#f5f5f5." - -#: admin/settings/settings-init.php:1076 -msgid "Email Body Background Colour" -msgstr "Hintergrundfarbe des E-Mail-Inhalts (Body)" - -#: admin/settings/settings-init.php:1077 -msgid "The main body background colour. Default #fdfdfd." -msgstr "Die Haupt-Hintergrundfarbe (Body). Standard: #fdfdfd." - -#: admin/settings/settings-init.php:1085 -msgid "Email Body Text Colour" -msgstr "Textfarbe des E-Mail-Inhalts (Body)" - -#: admin/settings/settings-init.php:1086 -msgid "The main body text colour. Default #505050." -msgstr "Die Haupt-Textfarbe (Body). Standard: #505050." - -#: admin/settings/settings-payment-gateways.php:27 -#: admin/settings/settings-shipping-methods.php:29 -#: admin/woocommerce-admin-init.php:757 -#: admin/woocommerce-admin-taxonomies.php:27 -#: admin/woocommerce-admin-taxonomies.php:121 -msgid "Default" -msgstr "Standard" - -#: admin/settings/settings-payment-gateways.php:28 -msgid "Gateway" -msgstr "Zahlungsweise" - -#: admin/settings/settings-payment-gateways.php:45 -msgid "Gateway ID" -msgstr "ID der Zahlungsweise" - -#: admin/settings/settings-shipping-methods.php:23 -msgid "Shipping Methods" -msgstr "Versandmethoden" - -#: admin/settings/settings-shipping-methods.php:25 -msgid "Drag and drop methods to control their display order." -msgstr "Methoden via Drag & Drop in die gewünschte Reihenfolge ziehen." - -#: admin/settings/settings-shipping-methods.php:30 -msgid "Shipping Method" -msgstr "Versandmethode" - -#: admin/settings/settings-shipping-methods.php:46 -msgid "Method ID" -msgstr "ID der Methode" - -#: admin/settings/settings-tax-rates.php:29 -msgid "Tax Rates for the \"%s\" Class" -msgstr "Steuersätze für die \"%s\" Klasse" - -#: admin/settings/settings-tax-rates.php:30 -msgid "" -"Define tax rates for countries and states below. See here " -"for available alpha-2 country codes." -msgstr "" -"Steuersätze für Länder bzw. Bundesstaaten unten festlegen. Schauen Sie hier für verfügbare Alpha-2 Ländercodes." - -#: admin/settings/settings-tax-rates.php:36 -msgid "Country Code" -msgstr "Ländercode" - -#: admin/settings/settings-tax-rates.php:36 -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "" -"Ein Ländercode, bestehend aus 2 Buchstaben, zum Beispiel DE (Deutschland). " -"Frei lassen, um dies nicht zu verwenden." - -#: admin/settings/settings-tax-rates.php:38 -msgid "State Code" -msgstr "Bundesstaaten-Code" - -#: admin/settings/settings-tax-rates.php:38 -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "" -"Ein Bundesstaaten-Code, bestehend aus 2 Buchstaben, zum Beispiel AL (für " -"Alabama). Frei lassen, um dies nicht zu verwenden." - -#: admin/settings/settings-tax-rates.php:40 -#: admin/settings/settings-tax-rates.php:217 -msgid "ZIP/Postcode" -msgstr "PLZ (Postleitzahl)" - -#: admin/settings/settings-tax-rates.php:40 -msgid "" -"Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all areas. Wildcards (*) can be used. Ranges for numeric " -"postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "" -"Postleitzahl für diese Regel. Mehrere Regeln mit Semikolon (;) " -"trennen. Frei lassen, um alle Bereiche zuzuweisen. Wildcards (*) können verwendet werden. Postleitzahlregionen bzw. -bereiche (z.B. " -"12345-12350) werden zu einzelnen Postleitzahlen erweitert." - -#: admin/settings/settings-tax-rates.php:42 -msgid "" -"Cities for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all cities." -msgstr "" -"Orte für diese Regel. Mehrere Regeln mit Semikolon (;) trennen. " -"Frei lassen, um alle Orte zuzuweisen." - -#: admin/settings/settings-tax-rates.php:44 -msgid "Rate %" -msgstr "Satz %" - -#: admin/settings/settings-tax-rates.php:44 -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "" -"Geben Sie einen Mehrwertsteuersatz (Prozentsatz) ein, mit bis zu 4 " -"Dezimalstellen." - -#: admin/settings/settings-tax-rates.php:46 -msgid "Tax Name" -msgstr "Steuername" - -#: admin/settings/settings-tax-rates.php:46 -msgid "Enter a name for this tax rate." -msgstr "Geben Sie einen Namen für diesen Steuersatz ein." - -#: admin/settings/settings-tax-rates.php:48 -#: admin/settings/settings-tax-rates.php:217 -msgid "Priority" -msgstr "Priorität" - -#: admin/settings/settings-tax-rates.php:48 -msgid "" -"Choose a priority for this tax rate. Only 1 matching rate per priority will " -"be used. To define multiple tax rates for a single area you need to specify " -"a different priority per rate." -msgstr "" -"Wählen Sie eine Priorität für diesen Steuersatz. Pro Priorität wird nur ein " -"zutreffender Steuersatz verwendet. Um verschiedene Steuersätze für ein " -"einzelnes Gebiet festzulegen, müssen Sie pro Steuersatz eine andere " -"Priorität angeben." - -#: admin/settings/settings-tax-rates.php:50 -#: admin/settings/settings-tax-rates.php:217 -msgid "Compound" -msgstr "Zusammengesetzt" - -#: admin/settings/settings-tax-rates.php:50 -msgid "" -"Choose whether or not this is a compound rate. Compound tax rates are " -"applied on top of other tax rates." -msgstr "" -"Legen Sie fest, ob dies ein zusammengesetzter Mwst.-Satz ist. " -"Zusammengesetzte Steuersätze werden vor anderen Sätzen zugewiesen." - -#: admin/settings/settings-tax-rates.php:52 -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "" -"Wählen Sie, ob dieser Mehrwertsteuersatz ebenso auf die Versandkosten " -"erhoben wird." - -#: admin/settings/settings-tax-rates.php:59 -msgid "Insert row" -msgstr "Zeile hinzufügen" - -#: admin/settings/settings-tax-rates.php:60 -msgid "Remove selected row(s)" -msgstr "Ausgewählte Zeilen entfernen" - -#: admin/settings/settings-tax-rates.php:62 -msgid "Export CSV" -msgstr "CSV-Datei exportieren" - -#: admin/settings/settings-tax-rates.php:63 -msgid "Import CSV" -msgstr "CSV-Datei importieren" - -#: admin/settings/settings-tax-rates.php:163 -msgid "No row(s) selected" -msgstr "Keine Zeile(n) ausgewählt" - -#: admin/settings/settings-tax-rates.php:217 -msgid "Country Code" -msgstr "Ländercode" - -#: admin/settings/settings-tax-rates.php:217 -msgid "State Code" -msgstr "Bundesstaaten-Code" - -#: admin/settings/settings-tax-rates.php:217 -msgid "Rate %" -msgstr "Satz %" - -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Name" -msgstr "Steuername" - -#: admin/woocommerce-admin-attributes.php:77 -msgid "Please, provide an attribute name, slug and type." -msgstr "Geben Sie bitte einen Name, Permalinkteil und Typ der Eigenschaft an." - -#: admin/woocommerce-admin-attributes.php:79 -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "Permalinkteil (Slug) “%s” ist zu lang (max. 28 Zeichen). Bitte kürzen!" - -#: admin/woocommerce-admin-attributes.php:81 -msgid "" -"Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "" -"Permalinkteil (Slug) “%s” ist nicht erlaubt, da es ein reservierter Begriff " -"ist. Bitte ändern!" - -#: admin/woocommerce-admin-attributes.php:86 -#: admin/woocommerce-admin-attributes.php:91 -msgid "Slug “%s” is already in use. Change it, please." -msgstr "Permalinkteil (Slug) “%s” ist bereits in Verwendung. Bitte ändern!" - -#: admin/woocommerce-admin-attributes.php:227 -msgid "Edit Attribute" -msgstr "Merkmale bearbeiten" - -#: admin/woocommerce-admin-attributes.php:237 -#: admin/woocommerce-admin-attributes.php:376 -msgid "Name for the attribute (shown on the front-end)." -msgstr "Name für das Attribut (wie es in der Besucheransicht erscheint)." - -#: admin/woocommerce-admin-attributes.php:242 -#: admin/woocommerce-admin-attributes.php:308 -#: admin/woocommerce-admin-attributes.php:380 -msgid "Slug" -msgstr "Permalinkteil" - -#: admin/woocommerce-admin-attributes.php:246 -#: admin/woocommerce-admin-attributes.php:382 -msgid "" -"Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "" -"Einzigartiger Permalinkteil/Referenz für das Attribut; muss weniger als 28 " -"Zeichen enthalten." - -#: admin/woocommerce-admin-attributes.php:255 -#: admin/woocommerce-admin-attributes.php:388 -msgid "Select" -msgstr "Auswahlfeld" - -#: admin/woocommerce-admin-attributes.php:256 -#: admin/woocommerce-admin-attributes.php:389 -msgid "Text" -msgstr "Textfeld" - -#: admin/woocommerce-admin-attributes.php:259 -#: admin/woocommerce-admin-attributes.php:392 -msgid "" -"Determines how you select attributes for products. Text " -"allows manual entry via the product page, whereas select " -"attribute terms can be defined from this section. If you plan on using an " -"attribute for variations use select." -msgstr "" -"Hier legen Sie fest, wie Attribute für Produkte ausgewählt werden: " -"Textfeld ermöglicht Ihnen die manuelle Eingabe über die " -"Produktseite, während Sie mit Auswahlfeld " -"Attributbezeichnungen definieren können. Wenn Sie vorhaben, Attribute für " -"Varianten zu verwenden, nutzen Sie bitte den Typ Auswahlfeld." - -#: admin/woocommerce-admin-attributes.php:264 -#: admin/woocommerce-admin-attributes.php:396 -msgid "Default sort order" -msgstr "Standard-Sortierreihenfolge" - -#: admin/woocommerce-admin-attributes.php:268 -#: admin/woocommerce-admin-attributes.php:336 -#: admin/woocommerce-admin-attributes.php:398 -msgid "Custom ordering" -msgstr "Benutzerdefinierte Sortierung" - -#: admin/woocommerce-admin-attributes.php:270 -#: admin/woocommerce-admin-attributes.php:333 -#: admin/woocommerce-admin-attributes.php:400 -msgid "Term ID" -msgstr "Termini-ID" - -#: admin/woocommerce-admin-attributes.php:272 -#: admin/woocommerce-admin-attributes.php:402 -msgid "" -"Determines the sort order on the frontend for this attribute. If using " -"custom ordering, you can drag and drop the terms in this attribute" -msgstr "" -"Legt die Sortierreihenfolge für dieses Attribut in der Besucheransicht " -"(Frontend) fest. Falls Sie benutzerdefinierte Sortierung verwenden, können " -"Sie die Termini via Drag & Drop in diesem Attribut anordnen." - -#: admin/woocommerce-admin-attributes.php:277 -msgid "Update" -msgstr "Aktualisieren" - -#: admin/woocommerce-admin-attributes.php:310 -msgid "Order by" -msgstr "Sortieren nach" - -#: admin/woocommerce-admin-attributes.php:311 -msgid "Terms" -msgstr "Bedingungen" - -#: admin/woocommerce-admin-attributes.php:356 -msgid "Configure terms" -msgstr "einrichten" - -#: admin/woocommerce-admin-attributes.php:360 -msgid "No attributes currently exist." -msgstr "Derzeit existieren keine Merkmale." - -#: admin/woocommerce-admin-attributes.php:370 -msgid "Add New Attribute" -msgstr "Neues Merkmal hinzufügen" - -#: admin/woocommerce-admin-attributes.php:371 -msgid "" -"Attributes let you define extra product data, such as size or colour. You " -"can use these attributes in the shop sidebar using the \"layered nav\" " -"widgets. Please note: you cannot rename an attribute later on." -msgstr "" -"Mit Merkmalen lassen sich zusätzliche Produktdaten wie Größe und Farbe " -"bestimmen. Sie können diese Merkmale in der Shop-Sidebar benutzen, wenn Sie " -"die \"Ebenen-Navigation (Layered Nav)\" Widgets einsetzen. -- Info: Außerdem werden Merkmale des Feldtyps 'Auswahlfeld' für die " -"Produktvariationen (konfigurierbare Produkte) benötigt. -- Bitte " -"beachten Sie: Sie können den Namen eines Merkmals nachträglich " -"nicht mehr verändern." - -#: admin/woocommerce-admin-attributes.php:405 -msgid "Add Attribute" -msgstr "Merkmal hinzufügen" - -#: admin/woocommerce-admin-attributes.php:416 -msgid "Are you sure you want to delete this attribute?" -msgstr "Sind Sie sicher, dass Sie dieses Merkmal löschen wollen?" - -#: admin/woocommerce-admin-content.php:26 -#: admin/woocommerce-admin-reports.php:26 -#: admin/woocommerce-admin-reports.php:66 -#: admin/woocommerce-admin-reports.php:82 -#: admin/woocommerce-admin-reports.php:93 -msgid "Overview" -msgstr "Übersicht" - -#: admin/woocommerce-admin-content.php:29 -msgid "" -"Thank you for using WooCommerce :) Should you need help using or extending " -"WooCommerce please read the documentation. For further " -"assistance you can use the community forum or if you have " -"access, our support desk." -msgstr "" -"Danke, dass Sie WooCommerce verwenden! :) — Sollten Sie Hilfe beim " -"Verwenden oder Erweitern von WooCommerce benötigen, besuchen " -"Sie unsere Dokumentation (Engl.). Weitere Hilfestellung können Sie in unserem Community-Forum (Engl.) erhalten, oder, falls Sie " -"Zugriff haben, auf unserer Ticket-Support-Seite (Engl.)." - -#: admin/woocommerce-admin-content.php:31 -msgid "" -"If you are having problems, or to assist us with support, please check the " -"status page to identify any problems with your configuration:" -msgstr "" -"Falls Sie Probleme haben bzw. um uns beim Support zu helfen, prüfen Sie " -"bitte die Status-Seite, um Probleme mit Ihrer Konfiguration/ Installation " -"identifizieren zu können:" - -#: admin/woocommerce-admin-content.php:33 admin/woocommerce-admin-init.php:89 -#: admin/woocommerce-admin-status.php:26 -msgid "System Status" -msgstr "Systemstatus" - -#: admin/woocommerce-admin-content.php:35 -msgid "" -"If you come across a bug, or wish to contribute to the project you can also " -"get involved on GitHub." -msgstr "" -"Wenn Sie einen Fehler finden, oder Lust haben, zum Projekt beizutragen, " -"können Sie auf der Entwickler-Plattform GitHub.com mitwirken." - -#: admin/woocommerce-admin-content.php:43 -msgid "" -"Here you can set up your store and customise it to fit your needs. The " -"sections available from the settings page include:" -msgstr "" -"Hier können Sie Ihren Shop einrichten und an Ihre Bedürfnisse anpassen. Die " -"verfügbaren Bereiche auf der Einstellungen-Seite beinhalten:" - -#: admin/woocommerce-admin-content.php:44 -msgid "" -"General settings such as your shop base, currency, and script/styling " -"options which affect features used in your store." -msgstr "" -"Allgemeine Einstellungen, wie zum Beispiel Shop-Basis, Währung sowie Skript- " -"und Stli-Optionen, welche sich auf Features in Ihrem Shop auswirken." - -#: admin/woocommerce-admin-content.php:45 -#: admin/woocommerce-admin-settings.php:184 -msgid "Pages" -msgstr "Seiten" - -#: admin/woocommerce-admin-content.php:45 -msgid "" -"This is where important store page are defined. You can also set up other " -"pages (such as a Terms page) here." -msgstr "" -"Hier werden alle wichtigen Shop-Seiten festgelegt. Sie können auch andere " -"Seiten (wie etwa für Terms/ Taxonomien) einrichten." - -#: admin/woocommerce-admin-content.php:46 -msgid "" -"Options for how things like price, images and weights appear in your product " -"catalog." -msgstr "" -"Einstellungen für Preise, Bilder und Gewicht erscheinen in Ihrem " -"Produktkatalog." - -#: admin/woocommerce-admin-content.php:47 -msgid "Options concerning stock and stock notices." -msgstr "" -"Einstellungen, das Lager bzw. den Bestand sowie Benachrichtigungen " -"betreffend." - -#: admin/woocommerce-admin-content.php:48 -msgid "Options concerning tax, including international and local tax rates." -msgstr "" -"Einstellungen, die Mehrwertsteuer betreffend - einschließlich " -"internationaler und lokaler Steuersätze." - -#: admin/woocommerce-admin-content.php:49 -msgid "" -"This is where shipping options are defined, and shipping methods are set up." -msgstr "" -"Hier werden Versandoptionen definiert und ebenso Versandmethoden " -"eingerichtet." - -#: admin/woocommerce-admin-content.php:50 -msgid "Payment Methods" -msgstr "Zahlungsweisen" - -#: admin/woocommerce-admin-content.php:50 -msgid "" -"This is where payment gateway options are defined, and individual payment " -"gateways are set up." -msgstr "" -"Hier werden alle Einstellungen für Zahlungsweisen/ -optionen definiert. " -"Individuelle Zahlungs-Schnittstellen werden ebenfalls hier eingerichtet." - -#: admin/woocommerce-admin-content.php:51 -#: admin/woocommerce-admin-settings.php:189 -msgid "Emails" -msgstr "E-Mails" - -#: admin/woocommerce-admin-content.php:51 -msgid "Here you can customise the way WooCommerce emails appear." -msgstr "" -"Hier können Sie festlegen, wie die E-Mails aussehen, die via WooCommerce " -"versandt werden (z.B. beim Bestellvorgang)." - -#: admin/woocommerce-admin-content.php:52 -#: admin/woocommerce-admin-settings.php:190 -msgid "Integration" -msgstr "Integration" - -#: admin/woocommerce-admin-content.php:52 -msgid "" -"The integration section contains options for third party services which " -"integrate with WooCommerce." -msgstr "" -"Der Integrationsbereich enthält Einstellungen für Drittanbieter-Dienste, " -"welche sich in WooCommerce einbinden lassen." - -#: admin/woocommerce-admin-content.php:57 admin/woocommerce-admin-init.php:64 -msgid "Reports" -msgstr "Berichte" - -#: admin/woocommerce-admin-content.php:59 -msgid "" -"The reports section can be accessed from the left-hand navigation menu. Here " -"you can generate reports for sales and customers." -msgstr "" -"Der Bereich Berichte/ Statistik kann vom linksseitigen Navigationsmenü " -"erreicht werden. Hier können Berichte für Verkäufe und Kunden abgerufen " -"werden." - -#: admin/woocommerce-admin-content.php:60 -#: admin/woocommerce-admin-reports.php:23 -#: admin/woocommerce-admin-reports.php:997 -#: admin/woocommerce-admin-reports.php:1095 -#: admin/woocommerce-admin-reports.php:1214 -msgid "Sales" -msgstr "Umsatz" - -#: admin/woocommerce-admin-content.php:60 -msgid "Reports for sales based on date, top sellers and top earners." -msgstr "" -"Berichte für Verkäufe, basierend auf Datum, bestverkaufenden und " -"bestverdienenden Produkten." - -#: admin/woocommerce-admin-content.php:61 -msgid "Coupon usage reports." -msgstr "Bericht zur Gutschein-Verwendung." - -#: admin/woocommerce-admin-content.php:62 -#: admin/woocommerce-admin-reports.php:79 -msgid "Customers" -msgstr "Kunden" - -#: admin/woocommerce-admin-content.php:62 -msgid "Customer reports, such as signups per day." -msgstr "Kundenberichte, wie zum Beispiel Registrierungen pro Tag." - -#: admin/woocommerce-admin-content.php:63 -msgid "Stock reports for low stock and out of stock items." -msgstr "Lagerbenachrichtigung für knappe oder vergriffene Produkte." - -#: admin/woocommerce-admin-content.php:68 -#: admin/woocommerce-admin-dashboard.php:142 -msgid "Orders" -msgstr "Bestellungen" - -#: admin/woocommerce-admin-content.php:70 -msgid "" -"The orders section can be accessed from the left-hand navigation menu. Here " -"you can view and manage customer orders." -msgstr "" -"Der Bereich Bestellungen kann direkt vom linksseitigen Navigationsmenü aus " -"aufgerufen werden. Hier können Sie Kundenbestellungen einsehen und verwalten." - -#: admin/woocommerce-admin-content.php:71 -msgid "" -"Orders can also be added from this section if you want to set them up for a " -"customer manually." -msgstr "" -"Bestellungen können auch von diesem Bereich aus hinzugefügt werden, wenn Sie " -"diese für einen Kunden manuell einrichten müssen." - -#: admin/woocommerce-admin-content.php:78 -msgid "" -"Coupons can be managed from this section. Once added, customers will be able " -"to enter coupon codes on the cart/checkout page. If a customer uses a coupon " -"code they will be viewable when viewing orders." -msgstr "" -"Gutscheine können in diesem Bereich verwaltet werden. Einmal hinzugefügt, " -"sind Besucher/ Kunden in der Lage, Gutscheincodes während des Bezahlvorgangs " -"zu verwenden. Wenn ein Besucher/ Kunde einen Gutschein verwendet, wird der " -"Code sichtbar sein, beim Ansehen der Bestellung(en)." - -#: admin/woocommerce-admin-content.php:82 -msgid "For more information:" -msgstr "Für weitere Informationen:" - -#: admin/woocommerce-admin-content.php:83 admin/woocommerce-admin-init.php:62 -#: admin/woocommerce-admin-init.php:71 admin/woocommerce-admin-init.php:404 -msgid "WooCommerce" -msgstr "WooCommerce" - -#: admin/woocommerce-admin-content.php:84 -msgid "Project on WordPress.org" -msgstr "Projekt bei WordPress.org" - -#: admin/woocommerce-admin-content.php:85 -msgid "Project on Github" -msgstr "Projekt bei GitHub.com (Entwickler)" - -#: admin/woocommerce-admin-content.php:86 -msgid "WooCommerce Docs" -msgstr "WooCommerce Dokumentation (Engl.)" - -#: admin/woocommerce-admin-content.php:87 -msgid "Official Extensions" -msgstr "Offizielle Erweiterungen (Extensions)" - -#: admin/woocommerce-admin-content.php:88 -msgid "Official Themes" -msgstr "Offizielle WooCommerce-fähige Themes" - -#: admin/woocommerce-admin-dashboard.php:40 -msgid "Monthly Sales" -msgstr "Monatlicher Umsatz" - -#: admin/woocommerce-admin-dashboard.php:43 -msgid "WooCommerce Right Now" -msgstr "WooCommerce auf einen Blick" - -#: admin/woocommerce-admin-dashboard.php:44 -msgid "WooCommerce Recent Orders" -msgstr "WooCommerce kürzliche Bestellungen" - -#: admin/woocommerce-admin-dashboard.php:45 -msgid "WooCommerce Recent Reviews" -msgstr "WooCommerce Neue Bewertungen" - -#: admin/woocommerce-admin-dashboard.php:78 -msgid "Shop Content" -msgstr "Shop-Inhalt" - -#: admin/woocommerce-admin-dashboard.php:84 -#: admin/woocommerce-admin-functions.php:200 -#: admin/woocommerce-admin-init.php:761 -#: admin/woocommerce-admin-reports.php:996 -#: admin/woocommerce-admin-reports.php:1094 -msgid "Product" -msgid_plural "Products" -msgstr[0] "Produkt" -msgstr[1] "Produkte" - -#: admin/woocommerce-admin-dashboard.php:98 -msgid "Product Category" -msgid_plural "Product Categories" -msgstr[0] "Produktkategorie" -msgstr[1] "Produktkategorien" - -#: admin/woocommerce-admin-dashboard.php:112 -msgid "Product Tag" -msgid_plural "Product Tags" -msgstr[0] "Produktschlagwort" -msgstr[1] "Produktschlagwörter" - -#: admin/woocommerce-admin-dashboard.php:126 -msgid "Attribute" -msgid_plural "Attributes" -msgstr[0] "Eigenschaft" -msgstr[1] "Eigenschaften" - -#: admin/woocommerce-admin-dashboard.php:148 -msgid "Pending" -msgstr "Ausstehend" - -#: admin/woocommerce-admin-dashboard.php:162 -msgid "On-Hold" -msgstr "Warteschleife" - -#: admin/woocommerce-admin-dashboard.php:190 -msgid "Completed" -msgstr "Fertiggestellt" - -#: admin/woocommerce-admin-dashboard.php:207 -msgid "You are using WooCommerce %s." -msgstr "Sie verwenden WooCommerce %s." - -#: admin/woocommerce-admin-dashboard.php:238 -msgid "l jS \\of F Y h:i:s A" -msgstr "l, j. M., \\u\\m H:i:s \\U\\h\\r" - -#: admin/woocommerce-admin-dashboard.php:239 -msgid "item" -msgid_plural "items" -msgstr[0] "Element" -msgstr[1] "Elemente" - -#: admin/woocommerce-admin-dashboard.php:239 -msgid "Total:" -msgstr "Gesamtsumme:" - -#: admin/woocommerce-admin-dashboard.php:245 -msgid "There are no product orders yet." -msgstr "Es gibt bisher keine Produktbestellungen." - -#: admin/woocommerce-admin-dashboard.php:279 -msgid "out of 5" -msgstr "von 1 bis 5" - -#: admin/woocommerce-admin-dashboard.php:287 -msgid "There are no product reviews yet." -msgstr "Es gibt noch keine Produktbewertungen." - -#: admin/woocommerce-admin-dashboard.php:428 -msgid "Sold" -msgstr "Verkäufen" - -#: admin/woocommerce-admin-dashboard.php:429 -msgid "Earned" -msgstr "Verdienst" - -#: admin/woocommerce-admin-functions.php:190 -#: admin/woocommerce-admin-install.php:225 -msgid "Order Received" -msgstr "Bestellung erhalten" - -#: admin/woocommerce-admin-functions.php:192 -msgid "" -"Thank you, we are now processing your order. Your order's details are below." -msgstr "" -"Vielen Dank! Wir bearbeiten nun Ihre Bestellung. Die Details Ihrer " -"Bestellung finden Sie unten." - -#: admin/woocommerce-admin-functions.php:194 -msgid "Order:" -msgstr "Bestellung:" - -#: admin/woocommerce-admin-functions.php:201 -msgid "Quantity" -msgstr "Anzahl" - -#: admin/woocommerce-admin-functions.php:214 -msgid "Order total:" -msgstr "Gesamtsumme:" - -#: admin/woocommerce-admin-functions.php:220 -msgid "Customer details" -msgstr "Kundendetails" - -#: admin/woocommerce-admin-functions.php:226 -msgid "Billing address" -msgstr "Rechnungsanschrift" - -#: admin/woocommerce-admin-functions.php:233 -msgid "Shipping address" -msgstr "Versandanschrift" - -#: admin/woocommerce-admin-functions.php:465 -msgid "Could not compile woocommerce.less:" -msgstr "woocommerce.less konnte nicht kompiliert werden:" - -#: admin/woocommerce-admin-functions.php:486 -#: admin/woocommerce-admin-functions.php:487 -msgid "Mark processing" -msgstr "Kennzeichnung läuft" - -#: admin/woocommerce-admin-functions.php:489 -#: admin/woocommerce-admin-functions.php:490 -msgid "Mark completed" -msgstr "Kennzeichnung abgeschlossen" - -#: admin/woocommerce-admin-functions.php:527 -msgid "Order status changed by bulk edit:" -msgstr "Bestellstatus verändert von Stapelverarbeitung:" - -#: admin/woocommerce-admin-functions.php:550 -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "Bestellstatus geändert." -msgstr[1] "%s Bestellstatus geändert." - -#: admin/woocommerce-admin-init.php:88 -msgid "WooCommerce Settings" -msgstr "WooCommerce Einstellungen" - -#: admin/woocommerce-admin-init.php:89 -msgid "WooCommerce Status" -msgstr "WooCommerce Status" - -#: admin/woocommerce-admin-init.php:142 admin/woocommerce-admin-init.php:144 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Bestellungen" - -#: admin/woocommerce-admin-init.php:433 -msgid "" -"Are you sure you want to remove the selected items? If you have previously " -"reduced this item's stock, or this order was submitted by a customer, you " -"will need to manually restore the item's stock." -msgstr "" -"Sind Sie sicher, dass Sie die ausgewählten Produkte entfernen wollen? Sie " -"müssen die Lagermenge manuell wieder herstellen, falls Sie zuvor die " -"Lagermenge dieses Produktes reduziert haben oder diese Bestellung von einem " -"Kunden aufgegeben wurde." - -#: admin/woocommerce-admin-init.php:434 -msgid "Please select some items." -msgstr "Bitte wählen Sie einige Elemente" - -#: admin/woocommerce-admin-init.php:435 -msgid "Remove this item meta?" -msgstr "Meta dieses Elements entfernen?" - -#: admin/woocommerce-admin-init.php:436 -msgid "Remove this attribute?" -msgstr "Dieses Merkmal entfernen?" - -#: admin/woocommerce-admin-init.php:444 -msgid "Enter a name for the new attribute term:" -msgstr "Geben Sie einen Namen für das neue Eigenschaftselement an:" - -#: admin/woocommerce-admin-init.php:445 -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "" -"Gesamtsumme basierend auf bestellten Produkten, Gutscheinen und " -"Versandkosten berechnen?" - -#: admin/woocommerce-admin-init.php:446 -msgid "" -"Calculate line taxes? This will calculate taxes based on the customers " -"country. If no billing/shipping is set it will use the store base country." -msgstr "" -"Steuerpositionen berechnen? Dies wird die Steuern berechnen, basierend auf " -"dem Land des Kunden. Wenn keine Rechnungs-/ Versandanschrift angegeben " -"wurde, wird das Basisland des Shops verwendet." - -#: admin/woocommerce-admin-init.php:447 -msgid "" -"Copy billing information to shipping information? This will remove any " -"currently entered shipping information." -msgstr "" -"Rechnungsinformationen zu Lieferinformationen kopieren? Dies wird alle " -"gerade eingegebenen Lieferinformationen entfernen/ löschen." - -#: admin/woocommerce-admin-init.php:448 -msgid "" -"Load the customer's billing information? This will remove any currently " -"entered billing information." -msgstr "" -"Rechnungsinformationen des Kunden laden? Hinweis: Dies wird alle derzeit " -"eingegebene Rechnungsinformationen entfernen." - -#: admin/woocommerce-admin-init.php:449 -msgid "" -"Load the customer's shipping information? This will remove any currently " -"entered shipping information." -msgstr "" -"Die Lieferinformationen des Kunden laden? Hinweis: Dies wird alle derzeit " -"eingegebenen Lieferinformationen entfernen." - -#: admin/woocommerce-admin-init.php:453 -msgid "No customer selected" -msgstr "Kein Kunde ausgewählt" - -#: admin/woocommerce-admin-init.php:665 -msgid "Product updated. View Product" -msgstr "Produkt aktualisiert. Produkt ansehen" - -#: admin/woocommerce-admin-init.php:666 admin/woocommerce-admin-init.php:681 -#: admin/woocommerce-admin-init.php:696 -msgid "Custom field updated." -msgstr "Benutzerdefiniertes Feld aktualisiert." - -#: admin/woocommerce-admin-init.php:667 admin/woocommerce-admin-init.php:682 -#: admin/woocommerce-admin-init.php:697 -msgid "Custom field deleted." -msgstr "Benutzerdefiniertes Feld gelöscht." - -#: admin/woocommerce-admin-init.php:668 -msgid "Product updated." -msgstr "Produkt aktualisiert." - -#: admin/woocommerce-admin-init.php:669 -msgid "Product restored to revision from %s" -msgstr "Produkt wiederhergestellt zur Revision vom %s" - -#: admin/woocommerce-admin-init.php:670 -msgid "Product published. View Product" -msgstr "Produkt veröffentlicht. Produkt ansehen" - -#: admin/woocommerce-admin-init.php:671 -msgid "Product saved." -msgstr "Produkt gespeichert." - -#: admin/woocommerce-admin-init.php:672 -msgid "Product submitted. Preview Product" -msgstr "" -"Produkt eingestellt. Produktvorschau" - -#: admin/woocommerce-admin-init.php:673 -msgid "" -"Product scheduled for: %1$s. Preview Product" -msgstr "" -"Produkt geplant für: %1$s. Produktvorschau" - -#: admin/woocommerce-admin-init.php:674 admin/woocommerce-admin-init.php:689 -#: admin/woocommerce-admin-init.php:704 -msgid "M j, Y @ G:i" -msgstr "d. F Y H:i" - -#: admin/woocommerce-admin-init.php:675 -msgid "" -"Product draft updated. Preview Product" -msgstr "" -"Produktentwurf aktualisiert. Produktvorschau" - -#: admin/woocommerce-admin-init.php:680 admin/woocommerce-admin-init.php:683 -#: admin/woocommerce-admin-init.php:685 -msgid "Order updated." -msgstr "Bestellung aktualisiert." - -#: admin/woocommerce-admin-init.php:684 -msgid "Order restored to revision from %s" -msgstr "Bestellung wiederhergestellt zur Revision vom %s" - -#: admin/woocommerce-admin-init.php:686 -msgid "Order saved." -msgstr "Bestellung gespeichert." - -#: admin/woocommerce-admin-init.php:687 -msgid "Order submitted." -msgstr "Bestellung eingefügt." - -#: admin/woocommerce-admin-init.php:688 -msgid "Order scheduled for: %1$s." -msgstr "Bestellung geplant für: %1$s." - -#: admin/woocommerce-admin-init.php:690 -msgid "Order draft updated." -msgstr "Bestellentwurf aktualisiert." - -#: admin/woocommerce-admin-init.php:695 admin/woocommerce-admin-init.php:698 -#: admin/woocommerce-admin-init.php:700 -msgid "Coupon updated." -msgstr "Gutschein aktualisiert." - -#: admin/woocommerce-admin-init.php:699 -msgid "Coupon restored to revision from %s" -msgstr "Gutschein wiederhergestellt zur Revision vom %s" - -#: admin/woocommerce-admin-init.php:701 -msgid "Coupon saved." -msgstr "Gutschein gespeichert." - -#: admin/woocommerce-admin-init.php:702 -msgid "Coupon submitted." -msgstr "Gutschein eingefügt." - -#: admin/woocommerce-admin-init.php:703 -msgid "Coupon scheduled for: %1$s." -msgstr "Gutschein geplant für: %1$s." - -#: admin/woocommerce-admin-init.php:705 -msgid "Coupon draft updated." -msgstr "Gutscheinentwurf aktualisiert." - -#: admin/woocommerce-admin-init.php:722 -msgid "Order notes" -msgstr "Bestellnotizen" - -#: admin/woocommerce-admin-init.php:737 -msgid "" -"These settings control the permalinks used for products. These settings only " -"apply when not using \"default\" permalinks above." -msgstr "" -"Diese Einstellungen legen die Permalinks fest, welche für Produkte verwendet " -"werden. Diese Einstellungen greifen nur, wenn Sie nicht die " -"\"Standard\"-Permalinks oben verwenden." - -#: admin/woocommerce-admin-init.php:744 -msgctxt "default-slug" -msgid "shop" -msgstr "shop" - -#: admin/woocommerce-admin-init.php:745 -msgctxt "default-slug" -msgid "product" -msgstr "produkt" - -#: admin/woocommerce-admin-init.php:766 -msgid "Shop base" -msgstr "Shop-Basis" - -#: admin/woocommerce-admin-init.php:770 -msgid "Shop base with category" -msgstr "Shop-Basis mit Kategorie" - -#: admin/woocommerce-admin-init.php:776 -msgid "Custom Base" -msgstr "Benutzerdefinierte Basis" - -#: admin/woocommerce-admin-init.php:778 -msgid "" -"Enter a custom base to use. A base must be set or WordPress " -"will use default instead." -msgstr "" -"Geben Sie eine benutzerdefinierte Basis ein. Es muss eine " -"Basis angegeben werden, ansonsten wird WordPress den Standard verwenden." - -#: admin/woocommerce-admin-init.php:806 -msgid "Product permalink base" -msgstr "Produktpermalink-Basis" - -#: admin/woocommerce-admin-init.php:811 -msgid "Product category base" -msgstr "Produktkategorie-Basis" - -#: admin/woocommerce-admin-init.php:818 -msgid "Product tag base" -msgstr "Produktschlagwort-Basis" - -#: admin/woocommerce-admin-init.php:825 -msgid "Product attribute base" -msgstr "Produkteigenschaft-Basis" - -#: admin/woocommerce-admin-install.php:195 -msgctxt "page_slug" -msgid "shop" -msgstr "shop" - -#: admin/woocommerce-admin-install.php:195 -msgid "Shop" -msgstr "Shop" - -#: admin/woocommerce-admin-install.php:198 -msgctxt "page_slug" -msgid "cart" -msgstr "warenkorb" - -#: admin/woocommerce-admin-install.php:198 -#: admin/woocommerce-admin-status.php:303 -msgid "Cart" -msgstr "Warenkorb" - -#: admin/woocommerce-admin-install.php:201 -msgctxt "page_slug" -msgid "checkout" -msgstr "kasse" - -#: admin/woocommerce-admin-install.php:204 -msgctxt "page_slug" -msgid "my-account" -msgstr "mein-konto" - -#: admin/woocommerce-admin-install.php:204 -#: admin/woocommerce-admin-status.php:319 -msgid "My Account" -msgstr "Mein Benutzerkonto" - -#: admin/woocommerce-admin-install.php:210 -msgctxt "page_slug" -msgid "edit-address" -msgstr "adresse-bearbeiten" - -#: admin/woocommerce-admin-install.php:210 -msgid "Edit My Address" -msgstr "Meine Adresse ändern" - -#: admin/woocommerce-admin-install.php:213 -msgctxt "page_slug" -msgid "view-order" -msgstr "bestellung-ansehen" - -#: admin/woocommerce-admin-install.php:213 -#: admin/woocommerce-admin-status.php:327 -msgid "View Order" -msgstr "Bestellung anzeigen" - -#: admin/woocommerce-admin-install.php:216 -msgctxt "page_slug" -msgid "change-password" -msgstr "passwort-aendern" - -#: admin/woocommerce-admin-install.php:216 -#: admin/woocommerce-admin-status.php:331 -msgid "Change Password" -msgstr "Passwort ändern" - -#: admin/woocommerce-admin-install.php:219 -msgctxt "page_slug" -msgid "logout" -msgstr "abmelden" - -#: admin/woocommerce-admin-install.php:219 -msgid "Logout" -msgstr "Abmelden" - -#: admin/woocommerce-admin-install.php:222 -msgctxt "page_slug" -msgid "pay" -msgstr "bezahlen" - -#: admin/woocommerce-admin-install.php:222 -msgid "Checkout → Pay" -msgstr "Zur Kasse → Bezahlen" - -#: admin/woocommerce-admin-install.php:225 -msgctxt "page_slug" -msgid "order-received" -msgstr "bestellung-erhalten" - -#: admin/woocommerce-admin-reports.php:32 -msgid "Sales by day" -msgstr "Umsatz pro Tag" - -#: admin/woocommerce-admin-reports.php:37 -msgid "Sales by month" -msgstr "Umsatz pro Monat" - -#: admin/woocommerce-admin-reports.php:42 -msgid "Product Sales" -msgstr "Produktverkäufe" - -#: admin/woocommerce-admin-reports.php:47 -msgid "Top sellers" -msgstr "Verkaufsschlager" - -#: admin/woocommerce-admin-reports.php:52 -msgid "Top earners" -msgstr "Bestverdienende Produkte" - -#: admin/woocommerce-admin-reports.php:57 -msgid "Sales by category" -msgstr "Umsatz pro Kategorie" - -#: admin/woocommerce-admin-reports.php:72 -msgid "Discounts by coupon" -msgstr "Rabatte pro Gutschein" - -#: admin/woocommerce-admin-reports.php:104 -msgid "Taxes by month" -msgstr "Steuern pro Monat" - -#: admin/woocommerce-admin-reports.php:243 -#: admin/woocommerce-admin-reports.php:508 -#: admin/woocommerce-admin-reports.php:713 -#: admin/woocommerce-admin-reports.php:894 -msgid "Sales amount" -msgstr "Umsatz" - -#: admin/woocommerce-admin-reports.php:248 -#: admin/woocommerce-admin-reports.php:508 -#: admin/woocommerce-admin-reports.php:713 -#: admin/woocommerce-admin-reports.php:894 -msgid "Number of sales" -msgstr "Verkäufe/ Anzahl" - -#: admin/woocommerce-admin-reports.php:380 -msgid "Total sales" -msgstr "Gesamter Umsatz" - -#: admin/woocommerce-admin-reports.php:382 -#: admin/woocommerce-admin-reports.php:388 -#: admin/woocommerce-admin-reports.php:394 -#: admin/woocommerce-admin-reports.php:400 -#: admin/woocommerce-admin-reports.php:406 -#: admin/woocommerce-admin-reports.php:412 -#: admin/woocommerce-admin-reports.php:655 -#: admin/woocommerce-admin-reports.php:661 -#: admin/woocommerce-admin-reports.php:667 -#: admin/woocommerce-admin-reports.php:673 -#: admin/woocommerce-admin-reports.php:839 -#: admin/woocommerce-admin-reports.php:845 -#: admin/woocommerce-admin-reports.php:851 -#: admin/woocommerce-admin-reports.php:857 -#: admin/woocommerce-admin-reports.php:1380 -#: admin/woocommerce-admin-reports.php:1386 -#: admin/woocommerce-admin-reports.php:1392 -#: admin/woocommerce-admin-reports.php:1826 -#: admin/woocommerce-admin-reports.php:1832 -#: admin/woocommerce-admin-reports.php:1838 -#: admin/woocommerce-admin-reports.php:1844 -#: admin/woocommerce-admin-reports.php:1850 -#: admin/woocommerce-admin-reports.php:1856 -#: admin/woocommerce-admin-reports.php:2320 -#: admin/woocommerce-admin-reports.php:2331 -#: admin/woocommerce-admin-reports.php:2342 -msgid "n/a" -msgstr "k.A." - -#: admin/woocommerce-admin-reports.php:386 -msgid "Total orders" -msgstr "Gesamte Bestellungen" - -#: admin/woocommerce-admin-reports.php:388 -#: admin/woocommerce-admin-reports.php:661 -#: admin/woocommerce-admin-reports.php:845 -msgid "items" -msgstr "Elemente" - -#: admin/woocommerce-admin-reports.php:392 -msgid "Average order total" -msgstr "Durchschnittlicher Bestellwert" - -#: admin/woocommerce-admin-reports.php:398 -msgid "Average order items" -msgstr "Durchschnittliche Bestellmenge" - -#: admin/woocommerce-admin-reports.php:404 -msgid "Discounts used" -msgstr "verwendete Rabatte" - -#: admin/woocommerce-admin-reports.php:410 -msgid "Total shipping costs" -msgstr "Gesamte Versandkosten" - -#: admin/woocommerce-admin-reports.php:418 -msgid "This month's sales" -msgstr "Umsätze diesen Monat" - -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1372 -msgid "From:" -msgstr "Ab:" - -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1372 -msgid "To:" -msgstr "Bis:" - -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:832 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1245 -#: admin/woocommerce-admin-reports.php:1372 -#: admin/woocommerce-admin-reports.php:1505 -#: admin/woocommerce-admin-reports.php:2309 -#: admin/woocommerce-admin-reports.php:2492 -msgid "Show" -msgstr "Anzeigen" - -#: admin/woocommerce-admin-reports.php:653 -msgid "Total sales in range" -msgstr "Gesamter Umsatz im Bereich" - -#: admin/woocommerce-admin-reports.php:659 -msgid "Total orders in range" -msgstr "Gesamte Bestellungen im Bereich" - -#: admin/woocommerce-admin-reports.php:665 -msgid "Average order total in range" -msgstr "Durchschnittlicher Bestellwert im Bereich" - -#: admin/woocommerce-admin-reports.php:671 -msgid "Average order items in range" -msgstr "Durchschnittliche Bestellmenge im Bereich" - -#: admin/woocommerce-admin-reports.php:679 -msgid "Sales in range" -msgstr "Umsatz im Bereich" - -#: admin/woocommerce-admin-reports.php:826 -#: admin/woocommerce-admin-reports.php:2303 -msgid "Year:" -msgstr "Jahr:" - -#: admin/woocommerce-admin-reports.php:837 -msgid "Total sales for year" -msgstr "Gesamtumsatz dieses Jahr" - -#: admin/woocommerce-admin-reports.php:843 -msgid "Total orders for year" -msgstr "Gesamte Bestellungen dieses Jahr" - -#: admin/woocommerce-admin-reports.php:849 -msgid "Average order total for year" -msgstr "Durchschnittlicher Gesamtbestellwert im Jahr" - -#: admin/woocommerce-admin-reports.php:855 -msgid "Average order items for year" -msgstr "Durchschnittliche Bestellmenge im Jahr" - -#: admin/woocommerce-admin-reports.php:863 -msgid "Monthly sales for year" -msgstr "Monatlicher Umsatz im Jahr" - -#: admin/woocommerce-admin-reports.php:1011 -msgid "Product does not exist" -msgstr "Das Produkt existiert nicht" - -#: admin/woocommerce-admin-reports.php:1110 -msgid "Product no longer exists" -msgstr "Das Produkt ist nicht mehr vorhanden" - -#: admin/woocommerce-admin-reports.php:1209 -msgid "Sales for %s:" -msgstr "Umsatz für %s:" - -#: admin/woocommerce-admin-reports.php:1213 -#: admin/woocommerce-admin-reports.php:2351 -msgid "Month" -msgstr "Monat" - -#: admin/woocommerce-admin-reports.php:1235 -msgid "No sales :(" -msgstr "Keine Verkäufe :(" - -#: admin/woocommerce-admin-reports.php:1378 -msgid "Total orders containing coupons" -msgstr "Gesamte Betellungen, welche Gutscheine enthalten" - -#: admin/woocommerce-admin-reports.php:1384 -msgid "Percent of orders containing coupons" -msgstr "Prozentsatz von Bestellungen, welche Gutscheine enthalten" - -#: admin/woocommerce-admin-reports.php:1390 -msgid "Total coupon discount" -msgstr "Gesamter Gutschein-Rabatt" - -#: admin/woocommerce-admin-reports.php:1399 -msgid "Most popular coupons" -msgstr "Beliebteste Gutscheine" - -#: admin/woocommerce-admin-reports.php:1409 -msgid "Used 1 time" -msgid_plural "Used %d times" -msgstr[0] "1 Mal verwendet" -msgstr[1] "%d Mal verwendet" - -#: admin/woocommerce-admin-reports.php:1412 -#: admin/woocommerce-admin-reports.php:1434 -msgid "No coupons found" -msgstr "Es wurden keine Gutscheine gefunden." - -#: admin/woocommerce-admin-reports.php:1421 -msgid "Greatest discount amount" -msgstr "Höchster Gutscheinbetrag" - -#: admin/woocommerce-admin-reports.php:1431 -msgid "Discounted %s" -msgstr "%s rabattiert" - -#: admin/woocommerce-admin-reports.php:1490 -#: admin/woocommerce-admin-reports.php:2469 -msgid "Show:" -msgstr "Anzeigen:" - -#: admin/woocommerce-admin-reports.php:1547 -msgid "Coupon" -msgstr "Gutschein" - -#: admin/woocommerce-admin-reports.php:1630 -msgid "Top coupon" -msgstr "Bester Gutschein" - -#: admin/woocommerce-admin-reports.php:1638 -msgid "Worst coupon" -msgstr "Schlechtester Gutschein" - -#: admin/woocommerce-admin-reports.php:1646 -msgid "Discount average" -msgstr "Durchschnittlicher Rabatt" - -#: admin/woocommerce-admin-reports.php:1654 -msgid "Discount median" -msgstr "Mittlerer Rabatt" - -#: admin/woocommerce-admin-reports.php:1674 -msgid "Monthly discounts by coupon" -msgstr "Monatlicher Rabatt pro Gutschein" - -#: admin/woocommerce-admin-reports.php:1824 -msgid "Total customers" -msgstr "Gesamtkundenzahl" - -#: admin/woocommerce-admin-reports.php:1830 -msgid "Total customer sales" -msgstr "Gesamter Kundenumsatz" - -#: admin/woocommerce-admin-reports.php:1836 -msgid "Total guest sales" -msgstr "Gesamter Gastumsatz" - -#: admin/woocommerce-admin-reports.php:1842 -msgid "Total customer orders" -msgstr "Gesamte Kundenbestellungen" - -#: admin/woocommerce-admin-reports.php:1848 -msgid "Total guest orders" -msgstr "Gesamte Gastbestellungen" - -#: admin/woocommerce-admin-reports.php:1854 -msgid "Average orders per customer" -msgstr "Durschnittliche Bestellungen pro Kunde" - -#: admin/woocommerce-admin-reports.php:1862 -msgid "Signups per day" -msgstr "(Neukunden-) Anmeldungen pro Trag" - -#: admin/woocommerce-admin-reports.php:2083 -msgid "Low stock" -msgstr "Nur noch wenige Produkte verfügbar" - -#: admin/woocommerce-admin-reports.php:2106 -#: admin/woocommerce-admin-reports.php:2145 -msgid "%d in stock" -msgid_plural "%d in stock" -msgstr[0] "%d auf Lager" -msgstr[1] "%d auf Lager" - -#: admin/woocommerce-admin-reports.php:2111 -msgid "No products are low in stock." -msgstr "Keine Produkte sind knapp im Lager." - -#: admin/woocommerce-admin-reports.php:2143 -msgid "Marked out of stock" -msgstr "Als vergriffen gekennzeichnet" - -#: admin/woocommerce-admin-reports.php:2150 -msgid "No products are out in stock." -msgstr "Derzeit sind keine Produkte vergriffen." - -#: admin/woocommerce-admin-reports.php:2314 -msgid "Total taxes for year" -msgstr "Gesamte Steuern pro Jahr" - -#: admin/woocommerce-admin-reports.php:2325 -msgid "Total product taxes for year" -msgstr "Gesamte Produktsteuern pro Jahr" - -#: admin/woocommerce-admin-reports.php:2336 -msgid "Total shipping tax for year" -msgstr "Gesamte Versandsteuern pro Jahr" - -#: admin/woocommerce-admin-reports.php:2352 -msgid "Total Sales" -msgstr "Gesamtumsatz" - -#: admin/woocommerce-admin-reports.php:2352 -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "" -"Dies ist die Summe des Feldes 'Gesamtsumme' in Ihren einzelnen Bestellungen." - -#: admin/woocommerce-admin-reports.php:2353 -msgid "Total Shipping" -msgstr "Gesamtsumme Versand" - -#: admin/woocommerce-admin-reports.php:2353 -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "" -"Dies ist die Summe des Feldes 'Gesamtsumme Versand' in Ihren Bestellungen." - -#: admin/woocommerce-admin-reports.php:2354 -msgid "Total Product Taxes" -msgstr "Gesamte Produktsteuern" - -#: admin/woocommerce-admin-reports.php:2354 -msgid "This is the sum of the 'Cart Tax' field within your orders." -msgstr "" -"Dies ist die Summe des Feldes 'Warenkorbsteuern' in Ihren Bestellungen." - -#: admin/woocommerce-admin-reports.php:2355 -msgid "Total Shipping Taxes" -msgstr "Gesamte Versandsteuern" - -#: admin/woocommerce-admin-reports.php:2355 -msgid "This is the sum of the 'Shipping Tax' field within your orders." -msgstr "Dies ist die Summe des Feldes 'Versandsteuern' in Ihren Bestellungen." - -#: admin/woocommerce-admin-reports.php:2356 -msgid "Total Taxes" -msgstr "Gesamte Steuern" - -#: admin/woocommerce-admin-reports.php:2356 -msgid "" -"This is the sum of the 'Cart Tax' and 'Shipping Tax' fields within your " -"orders." -msgstr "" -"Dies ist die Summe der Felder 'Warenkorbsteuern' und 'Versandsteuern' in " -"Ihren Bestellungen." - -#: admin/woocommerce-admin-reports.php:2357 -msgid "Net profit" -msgstr "Reinerlös (Netto)" - -#: admin/woocommerce-admin-reports.php:2357 -msgid "Total sales minus shipping and tax." -msgstr "Gesamtumsatz minus Versand und Steuern." - -#: admin/woocommerce-admin-reports.php:2402 -msgid "Toggle tax rows" -msgstr "Steuerzeilen aufklappen" - -#: admin/woocommerce-admin-reports.php:2545 -msgid "Category" -msgstr "Kategorie" - -#: admin/woocommerce-admin-reports.php:2648 -msgid "Top category" -msgstr "Beste Kategorie" - -#: admin/woocommerce-admin-reports.php:2657 -msgid "Worst category" -msgstr "Schlechteste Kategorie" - -#: admin/woocommerce-admin-reports.php:2665 -msgid "Category sales average" -msgstr "Durchschnittlicher Umsatz der Kategorie" - -#: admin/woocommerce-admin-reports.php:2676 -msgid "Category sales median" -msgstr "Mittlerer Kategorieumsatz" - -#: admin/woocommerce-admin-reports.php:2696 -msgid "Monthly sales by category" -msgstr "Monatlicher Umsatz pro Kategorie" - -#: admin/woocommerce-admin-settings.php:45 -msgid "Action failed. Please refresh the page and retry." -msgstr "" -"Aktion fehlgeschlagen. Bitte laden Sie die Seite neu und versuchen Sie es " -"noch einmal." - -#: admin/woocommerce-admin-settings.php:164 -msgid "Your settings have been saved." -msgstr "Ihre Einstellungen wurden gespeichert." - -#: admin/woocommerce-admin-settings.php:210 -msgid "" -"More functionality and gateway options available via WC official extensions." -msgstr "" -"Noch mehr Funktionalitäten sowie weitere Zahlungsweisen (Schnittstellen) " -"sind über die offizielle WooCommerce Seite " -"für Erweiterungen erhältlich." - -#: admin/woocommerce-admin-settings.php:228 -msgid "Tax Rates" -msgstr "Mehrwertsteuersätze" - -#: admin/woocommerce-admin-settings.php:255 -msgid "Email Options" -msgstr "E-Mail-Optionen" - -#: admin/woocommerce-admin-settings.php:388 -msgid "Save changes" -msgstr "Änderungen speichern" - -#: admin/woocommerce-admin-settings.php:429 -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "" -"Die Veränderungen, die Sie hier vornehmen, werden verlorengehen, wenn Sie " -"diese Seite verlassen." - -#: admin/woocommerce-admin-settings.php:801 -msgid "Hard Crop" -msgstr "Beschneiden" - -#: admin/woocommerce-admin-settings.php:826 -msgid "Select a page…" -msgstr "Eine Seite auswählen…" - -#: admin/woocommerce-admin-settings.php:849 -msgid "Choose a country…" -msgstr "Ein Land auswählen …" - -#: admin/woocommerce-admin-settings.php:869 -msgid "Choose countries…" -msgstr "Länder auswählen …" - -#: admin/woocommerce-admin-status.php:27 -#: admin/woocommerce-admin-status.php:664 -msgid "Tools" -msgstr "Werkzeuge" - -#: admin/woocommerce-admin-status.php:62 -msgid "Please include this information when requesting support:" -msgstr "" -"Bitte fügen Sie diese Informationen bei, wenn Sie Support in Anspruch nehmen:" - -#: admin/woocommerce-admin-status.php:63 -msgid "Download System Report File" -msgstr "Datei mit Systeminformationen herunterladen" - -#: admin/woocommerce-admin-status.php:71 -msgid "Environment" -msgstr "Umgebung" - -#: admin/woocommerce-admin-status.php:77 -msgid "Home URL" -msgstr "Homepage-URL" - -#: admin/woocommerce-admin-status.php:81 -msgid "Site URL" -msgstr "Webseiten-URL" - -#: admin/woocommerce-admin-status.php:85 -msgid "WC Version" -msgstr "WooCommerce Version" - -#: admin/woocommerce-admin-status.php:89 -msgid "WC Database Version" -msgstr "WooCommerce Datenbank-Version" - -#: admin/woocommerce-admin-status.php:93 -msgid "WP Version" -msgstr "WordPress Version" - -#: admin/woocommerce-admin-status.php:97 -msgid "Web Server Info" -msgstr "Webserver Information" - -#: admin/woocommerce-admin-status.php:101 -msgid "PHP Version" -msgstr "PHP Version" - -#: admin/woocommerce-admin-status.php:105 -msgid "MySQL Version" -msgstr "MySQL Version" - -#: admin/woocommerce-admin-status.php:109 -msgid "WP Memory Limit" -msgstr "WordPress PHP-Memory Limit" - -#: admin/woocommerce-admin-status.php:114 -msgid "" -"%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "" -"%s - Wir empfehlen den PHP-Speicher auf mindestens 64MB zu setzen. Schauen " -"Sie bitte auch hier: Für PHP freigegebenen Speicher erhöhen " -"(Engl.)" - -#: admin/woocommerce-admin-status.php:121 -msgid "WP Debug Mode" -msgstr "WordPress Debug-Modus" - -#: admin/woocommerce-admin-status.php:125 -msgid "WP Max Upload Size" -msgstr "WordPress max. Hochladen-Größe" - -#: admin/woocommerce-admin-status.php:129 -msgid "PHP Post Max Size" -msgstr "PHP Post Max Size" - -#: admin/woocommerce-admin-status.php:133 -msgid "PHP Time Limit" -msgstr "PHP Zeitlimit" - -#: admin/woocommerce-admin-status.php:137 -msgid "WC Logging" -msgstr "WooCommerce-Protokoll" - -#: admin/woocommerce-admin-status.php:140 -msgid "Log directory is writable." -msgstr "Protokollverzeichnis ist beschreibbar." - -#: admin/woocommerce-admin-status.php:142 -msgid "" -"Log directory (woocommerce/logs/) is not writable. Logging will " -"not be possible." -msgstr "" -"Protokollverzeichnis (woocommerce/logs/) ist nicht " -"beschreibbar. Protokollierung (Logging) wird daher nicht möglich sein." - -#: admin/woocommerce-admin-status.php:149 -msgid "fsockopen/cURL" -msgstr "fsockopen / cURL" - -#: admin/woocommerce-admin-status.php:152 -msgid "Your server has fsockopen and cURL enabled." -msgstr "" -"Ihr Webserver hat fsockopen und cURL aktiviert." - -#: admin/woocommerce-admin-status.php:154 -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "" -"Ihr Webserver hat fsockopen aktiviert, cURL ist " -"deaktiviert." - -#: admin/woocommerce-admin-status.php:156 -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "" -"Ihr Webserver hat cURL aktiviert, fsockopen ist " -"deaktiviert." - -#: admin/woocommerce-admin-status.php:160 -msgid "" -"Your server does not have fsockopen or cURL enabled - PayPal IPN and other " -"scripts which communicate with other servers will not work. Contact your " -"hosting provider." -msgstr "" -"Ihr Webserver hat weder fsockopen noch cURL " -"aktiviert. Die sofortige Zahlungsbestätigung bei PayPal (IPN) und andere " -"Skripte, welche mit anderen Servern kommunizieren, werden daher nicht " -"funktionieren. Kontaktieren Sie Ihren Webhosting-Anbieter (oder wechseln Sie " -"notfalls den Anbieter)." - -#: admin/woocommerce-admin-status.php:165 -msgid "SOAP Client" -msgstr "SOAP Client" - -#: admin/woocommerce-admin-status.php:167 -msgid "Your server has the SOAP Client class enabled." -msgstr "Ihr Webserver hat die SOAP Client Klasse aktiviert." - -#: admin/woocommerce-admin-status.php:170 -msgid "" -"Your server does not have the SOAP Client class enabled - " -"some gateway plugins which use SOAP may not work as expected." -msgstr "" -"Ihr Webserver hat die SOAP Client Klasse nicht aktiviert. " -"Einige Plugins für Zahlungsweisen, welche SOAP verwenden, könnten daher " -"evtl. nicht mehr korrekt funktionieren." - -#: admin/woocommerce-admin-status.php:175 -msgid "WP Remote Post" -msgstr "WP Remote Post" - -#: admin/woocommerce-admin-status.php:186 -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "" -"wp_remote_post() war erfolgreich - PayPal IPN funktioniert." - -#: admin/woocommerce-admin-status.php:189 -msgid "" -"wp_remote_post() failed. PayPal IPN won't work with your server. Contact " -"your hosting provider. Error:" -msgstr "" -"wp_remote_post() schulg fehl. Die sofortige Zahlungsbestätigung " -"durch PayPal (IPN) wird mit Ihrem Webserver nicht funktionieren. " -"Kontaktieren Sie bitte Ihren Webhosting-Anbieter. Fehlermeldung:" - -#: admin/woocommerce-admin-status.php:192 -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "" -"Die Funktion wp_remote_post() schlug fehl. PayPal Sofortige " -"Zahlungsbestätigung (IPN) wird wohl auf Ihrem Webserver nicht funktionieren." - -#: admin/woocommerce-admin-status.php:215 -msgid "Plugins" -msgstr "Plugins" - -#: admin/woocommerce-admin-status.php:221 -msgid "Installed Plugins" -msgstr "Installierte Plugins" - -#: admin/woocommerce-admin-status.php:259 -msgid "is available" -msgstr "ist verfügbar" - -#: admin/woocommerce-admin-status.php:262 -msgid "by" -msgstr "von" - -#: admin/woocommerce-admin-status.php:262 -msgid "version" -msgstr "Version" - -#: admin/woocommerce-admin-status.php:285 -msgid "Force SSL" -msgstr "SSL erzwingen" - -#: admin/woocommerce-admin-status.php:292 -msgid "WC Pages" -msgstr "WooCommerce Seiten" - -#: admin/woocommerce-admin-status.php:299 -msgid "Shop Base" -msgstr "Shop-Basis" - -#: admin/woocommerce-admin-status.php:311 -msgid "Pay" -msgstr "Bezahlen" - -#: admin/woocommerce-admin-status.php:315 -msgid "Thanks" -msgstr "Danke" - -#: admin/woocommerce-admin-status.php:323 -msgid "Edit Address" -msgstr "Anschrift bearbeiten" - -#: admin/woocommerce-admin-status.php:355 -msgid "Page not set" -msgstr "Seite nicht festgelegt" - -#: admin/woocommerce-admin-status.php:365 -msgid "Page does not exist" -msgstr "Diese Seite existiert nicht" - -#: admin/woocommerce-admin-status.php:370 -msgid "Page does not contain the shortcode: %s" -msgstr "Seite enthält nicht den Shortcode: %s" - -#: admin/woocommerce-admin-status.php:389 -msgid "WC Taxonomies" -msgstr "WooCommerce Taxonomien" - -#: admin/woocommerce-admin-status.php:395 -msgid "Order Statuses" -msgstr "Bestellstatus" - -#: admin/woocommerce-admin-status.php:405 -msgid "Product Types" -msgstr "Produkttypen" - -#: admin/woocommerce-admin-status.php:418 -msgid "Templates" -msgstr "Templates" - -#: admin/woocommerce-admin-status.php:424 -msgid "Template Overrides" -msgstr "Template-Überschreibungen (Overrides)" - -#: admin/woocommerce-admin-status.php:442 -msgid "No core overrides present in theme." -msgstr "Keine Core-Überschreibungen aktiv im Theme." - -#: admin/woocommerce-admin-status.php:537 -msgid "WC Transients" -msgstr "WooCommerce Transients" - -#: admin/woocommerce-admin-status.php:538 -msgid "Clear transients" -msgstr "Transients leeren" - -#: admin/woocommerce-admin-status.php:539 -msgid "This tool will clear the product/shop transients cache." -msgstr "" -"Dieses Werkzeug wird den Produkt-/ Shop-Transient-Cache leeren (ein " -"spezieller Zwischenspeicher)." - -#: admin/woocommerce-admin-status.php:542 -msgid "Expired Transients" -msgstr "Erloschene Transients" - -#: admin/woocommerce-admin-status.php:543 -msgid "Clear expired transients" -msgstr "Erloschene Transients leeren" - -#: admin/woocommerce-admin-status.php:544 -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "" -"Dieses Werkzeug wird ALLE erloschenen Transients aus WordPress löschen." - -#: admin/woocommerce-admin-status.php:547 -msgid "Term counts" -msgstr "Termini-Zähler" - -#: admin/woocommerce-admin-status.php:548 -msgid "Recount terms" -msgstr "Termini erneut zählen" - -#: admin/woocommerce-admin-status.php:549 -msgid "" -"This tool will recount product terms - useful when changing your settings in " -"a way which hides products from the catalog." -msgstr "" -"Dieses Werkzeug wird Produkt-Termini erneut zählen. Dies ist nützlich, falls " -"Sie Einstellungen auf solch eine Weise geändert haben, dass Produkte nicht " -"mehr im Katalog erschienen sind." - -#: admin/woocommerce-admin-status.php:552 -msgid "Capabilities" -msgstr "Benutzer-Berechtigungen" - -#: admin/woocommerce-admin-status.php:553 -msgid "Reset capabilities" -msgstr "Berechtigungen zurücksetzen" - -#: admin/woocommerce-admin-status.php:554 -msgid "" -"This tool will reset the admin, customer and shop_manager roles to default. " -"Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "" -"Dieses Werkzeug wird die Benutzerrollen admin (Administrator), " -"customer (Kunde) und shop_manager (Shop Manager) " -"auf ihre Standardwerte zurücksetzen. Verwenden Sie dies nur, falls einige " -"Benutzer nicht auf WooCommerce Einstellungen-Seiten zugreifen können." - -#: admin/woocommerce-admin-status.php:557 -msgid "Customer Sessions" -msgstr "Kunden Sitzungen" - -#: admin/woocommerce-admin-status.php:558 -msgid "Clear all sessions" -msgstr "Alle Sitzungen löschen" - -#: admin/woocommerce-admin-status.php:559 -msgid "" -"Warning This tool will delete all customer " -"session data from the database, including any current live carts." -msgstr "" -"Warnung Dieses Werkzeug wird alle Daten von " -"Kunden Sitzungen aus der Datenbank löschen. Dies betrifft auch aktive " -"Warenkörbe. " - -#: admin/woocommerce-admin-status.php:569 -msgid "Product Transients Cleared" -msgstr "Produkt-Transients geleert" - -#: admin/woocommerce-admin-status.php:610 -msgid "%d Transients Rows Cleared" -msgstr "%d Zeilen mit Transients geleert" - -#: admin/woocommerce-admin-status.php:618 -msgid "Roles successfully reset" -msgstr "Benutzerrollen erfolgreich zurückgesetzt" - -#: admin/woocommerce-admin-status.php:630 -msgid "Terms successfully recounted" -msgstr "Termini erfolgreich neu gezählt" - -#: admin/woocommerce-admin-status.php:649 -msgid "There was an error calling %s::%s" -msgstr "Es gab einen Fehler beim Aufruf von %s::%s" - -#: admin/woocommerce-admin-status.php:652 -msgid "There was an error calling %s" -msgstr "Es gab einen Fehler beim Aufruf von %s" - -#: admin/woocommerce-admin-taxonomies.php:25 -#: admin/woocommerce-admin-taxonomies.php:118 -msgid "Display type" -msgstr "Anzeigeart" - -#: admin/woocommerce-admin-taxonomies.php:29 -#: admin/woocommerce-admin-taxonomies.php:123 -msgid "Subcategories" -msgstr "Unterkategorien" - -#: admin/woocommerce-admin-taxonomies.php:30 -#: admin/woocommerce-admin-taxonomies.php:124 -msgid "Both" -msgstr "Beide" - -#: admin/woocommerce-admin-taxonomies.php:34 -#: admin/woocommerce-admin-taxonomies.php:129 -msgid "Thumbnail" -msgstr "Vorschaubild" - -#: admin/woocommerce-admin-taxonomies.php:38 -#: admin/woocommerce-admin-taxonomies.php:134 -msgid "Upload/Add image" -msgstr "Hochladen/ Bild hinzufügen" - -#: admin/woocommerce-admin-taxonomies.php:39 -#: admin/woocommerce-admin-taxonomies.php:135 -msgid "Remove image" -msgstr "Bild entfernen" - -#: admin/woocommerce-admin-taxonomies.php:64 -#: admin/woocommerce-admin-taxonomies.php:156 -msgid "Use image" -msgstr "Bild verwenden" - -#: admin/woocommerce-admin-taxonomies.php:222 -msgid "" -"Product categories for your store can be managed here. To change the order " -"of categories on the front-end you can drag and drop to sort them. To see " -"more categories listed click the \"screen options\" link at the top of the " -"page." -msgstr "" -"Hier können Sie die Produktkategorien für Ihren Shop verwalten. Um die " -"Reihenfolge der Kategorien in der Besucheransicht (Frontend) zu ändern, " -"können Sie diese via Drag & Drop zur gewünschten Position ziehen. Um " -"mehr Kategorien pro Bearbeiten-Seite auflisten zu lassen, klicken Sie bitte " -"oben rechts auf den Tab \"Optionen einblenden\"." - -#: admin/woocommerce-admin-taxonomies.php:237 -msgid "" -"Shipping classes can be used to group products of similar type. These groups " -"can then be used by certain shipping methods to provide different rates to " -"different products." -msgstr "" -"Versandgruppen können verwendet werden, um Produkte ähnlichen Typs " -"zusammenzufassen. Jede Gruppe kann dann von bestimmen Versandmethoden " -"genutzt werden, um verschiedene Versandgebühren für verschiedene Produkte/ " -"Produktgruppen erheben zu können." - -#: admin/woocommerce-admin-taxonomies.php:365 -msgid "Edit Class" -msgstr "Klasse bearbeiten" - -#: admin/woocommerce-admin-users.php:26 -msgid "Billing Address" -msgstr "Rechnungsanschrift" - -#: admin/woocommerce-admin-users.php:27 -msgid "Shipping Address" -msgstr "Versandanschrift" - -#: admin/woocommerce-admin-users.php:28 -msgid "Paying Customer?" -msgstr "Zahlender Kunde?" - -#: admin/woocommerce-admin-users.php:29 -msgid "Completed Orders" -msgstr "Abgeschlossene Bestellungen" - -#: admin/woocommerce-admin-users.php:144 -msgid "Customer Billing Address" -msgstr "Rechnungsanschrift des Kunden" - -#: admin/woocommerce-admin-users.php:147 admin/woocommerce-admin-users.php:196 -msgid "First name" -msgstr "Vorname" - -#: admin/woocommerce-admin-users.php:151 admin/woocommerce-admin-users.php:200 -msgid "Last name" -msgstr "Nachname" - -#: admin/woocommerce-admin-users.php:176 -msgid "Country or state code" -msgstr "Länder-/ Staatencode" - -#: admin/woocommerce-admin-users.php:180 admin/woocommerce-admin-users.php:229 -msgid "2 letter Country code" -msgstr "Ländercode, 2 Buchstaben" - -#: admin/woocommerce-admin-users.php:183 -msgid "Telephone" -msgstr "Telefon" - -#: admin/woocommerce-admin-users.php:193 -msgid "Customer Shipping Address" -msgstr "Versandanschrift des Kunden" - -#: admin/woocommerce-admin-users.php:225 -msgid "State/County or state code" -msgstr "Bundesland/ Kanton oder Bundesstaaten-Code" - -#. Plugin URI of the plugin/theme -msgid "http://www.woothemes.com/woocommerce/" -msgstr "http://www.woothemes.com/woocommerce/" - -#. Description of the plugin/theme -msgid "An e-commerce toolkit that helps you sell anything. Beautifully." -msgstr "" -"Ein E-Commerce Werkzeugkasten der dir hilft alles zu verkaufen. Fantastisch, " -"oder?" - -#. Author of the plugin/theme -msgid "WooThemes" -msgstr "WooThemes" - -#. Author URI of the plugin/theme -msgid "http://woothemes.com" -msgstr "http://woothemes.com" - -#~ msgid "Any customer" -#~ msgstr "Jeder Kunde" - -#~ msgid "" -#~ "Comma separate email addresses to restrict this coupon to specific " -#~ "billing and user emails." -#~ msgstr "" -#~ "Kommagetrennte E-Mail-Adressen, um diesen Gutschein auf ausgewählte " -#~ "Rechnungs- bzw. Kunden-E-Mail-Adressen zu beschränken." - -#~ msgid "Cost" -#~ msgstr "Kosten" diff --git a/i18n/languages/woocommerce-admin-es_ES.mo b/i18n/languages/woocommerce-admin-es_ES.mo deleted file mode 100644 index cc3b3f7b046..00000000000 Binary files a/i18n/languages/woocommerce-admin-es_ES.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-admin-es_ES.po b/i18n/languages/woocommerce-admin-es_ES.po deleted file mode 100644 index 9457c7b706c..00000000000 --- a/i18n/languages/woocommerce-admin-es_ES.po +++ /dev/null @@ -1,6878 +0,0 @@ -# Luis , 2013. -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce v2.1\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-10-03 01:54:37+00:00\n" -"PO-Revision-Date: 2013-10-02 23:07-0300\n" -"Last-Translator: Renato Covarrubias \n" -"Language-Team: Renato Covarrubias \n" -"Language: es\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 1.5.4\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" -"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" -"X-Poedit-Basepath: .\n" -"X-Textdomain-Support: yes\n" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:65 -#: includes/admin/class-wc-admin-menus.php:47 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:45 -#: includes/admin/wc-admin-functions.php:19 -msgid "WooCommerce" -msgstr "WooCommerce" - -#: includes/admin/class-wc-admin-assets.php:104 -msgid "" -"Please enter in decimal format without thousand separators and currency " -"symbols." -msgstr "" -"Por favor ingrese en formato decimal sin separador de miles ni símbolo de " -"moneda." - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:130 -msgid "" -"Are you sure you want to remove the selected items? If you have previously " -"reduced this item's stock, or this order was submitted by a customer, you " -"will need to manually restore the item's stock." -msgstr "" -"¿Está seguro de que quiere eliminar los artículos seleccionados? Si ya has " -"reducido el stock de este artículo, o este pedido fue realizado por un " -"cliente, tendrá que restaurar manualmente el stock del artículo." - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:131 -msgid "Please select some items." -msgstr "Por favor, seleccione algunos artículos." - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:132 -msgid "Remove this item meta?" -msgstr "¿Borrar este atributo del artículo?" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:133 -msgid "Remove this attribute?" -msgstr "¿Quitar este atributo?" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:134 -#: includes/admin/class-wc-admin-attributes.php:240 -#: includes/admin/class-wc-admin-attributes.php:276 -#: includes/admin/class-wc-admin-attributes.php:309 -#: includes/admin/class-wc-admin-attributes.php:332 -#: includes/admin/class-wc-admin-attributes.php:376 -#: includes/admin/class-wc-admin-attributes.php:401 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:194 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:185 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:438 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:532 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:147 -#: includes/admin/settings/class-wc-settings-shipping.php:203 -msgid "Name" -msgstr "Nombre" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:135 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:430 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:524 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:6 -msgid "Remove" -msgstr "Eliminar" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:136 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:431 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:525 -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:7 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:7 -msgid "Click to toggle" -msgstr "Clic para cambiar" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:137 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:446 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:538 -msgid "Value(s)" -msgstr "Valor(es)" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:138 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:539 -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "Introduzca algún texto, o algunos atributos separados por barras (|)." - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:139 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:489 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:544 -msgid "Visible on the product page" -msgstr "Visible en la página de producto" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:140 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:502 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:550 -msgid "Used for variations" -msgstr "Usado para variaciones" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:141 -msgid "Enter a name for the new attribute term:" -msgstr "Introduzca un nombre para el nuevo término del atributo:" - -#: includes/admin/class-wc-admin-assets.php:142 -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "¿Calcular totales basado en los articulos, descuentos y envío?" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:143 -msgid "" -"Calculate line taxes? This will calculate taxes based on the customers " -"country. If no billing/shipping is set it will use the store base country." -msgstr "" -"¿Calcular impuestos por línea? Esto calculará los impuestos basados en el " -"país de los clientes. Si no se ha especificado una dirección de facturación/" -"envío se usará el país base de la tienda." - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:144 -msgid "" -"Copy billing information to shipping information? This will remove any " -"currently entered shipping information." -msgstr "" -"¿Copiar la información de facturación a la información de envío? Esto " -"eliminará cualquier información de envío introducida actualmente." - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:145 -msgid "" -"Load the customer's billing information? This will remove any currently " -"entered billing information." -msgstr "" -"¿Cargar la información de facturación del cliente? Esto eliminará la " -"información de facturación introducida actualmente." - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:146 -msgid "" -"Load the customer's shipping information? This will remove any currently " -"entered shipping information." -msgstr "" -"¿Cargar la información de envío del cliente? Esto eliminará la información " -"de envío introducida actualmente." - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:147 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:115 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:206 -#: includes/admin/views/html-bulk-edit-product.php:170 -#: includes/admin/views/html-quick-edit-product.php:128 -msgid "Featured" -msgstr "Destacado" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:150 -msgid "No customer selected" -msgstr "No se ha seleccionado un cliente" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:189 -msgid "" -"Are you sure you want to link all variations? This will create a new " -"variation for each and every possible combination of variation attributes " -"(max 50 per run)." -msgstr "" -"¿Seguro que desea vincular todas las variaciones? Esto creará una nueva " -"variación para todas y cada una de las posibles combinaciones que se " -"deduzcan de los atributos de variación (máx. 50 cada vez)." - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:190 -msgid "Enter a value" -msgstr "Introduzca un valor" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:191 -msgid "Enter a value (fixed or %)" -msgstr "Introduzca un valor (absoluto o %)" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:192 -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "" -"¿Seguro que desea borrar todas las variaciones? Esta operación no puede " -"deshacerse." - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:193 -msgid "Last warning, are you sure?" -msgstr "Última advertencia, ¿estás seguro?" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:194 -#: includes/admin/class-wc-admin-taxonomies.php:127 -#: includes/admin/class-wc-admin-taxonomies.php:215 -msgid "Choose an image" -msgstr "Seleccione una imagen" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:195 -msgid "Set variation image" -msgstr "Establezca la imagén para esta variación" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:196 -msgid "variation added" -msgstr "variación añadida" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:197 -msgid "variations added" -msgstr "variaciones añadidas" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:198 -msgid "No variations added" -msgstr "No se añadieron variaciones" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:199 -msgid "Are you sure you want to remove this variation?" -msgstr "¿Seguro que desea eliminar esta variación?" - -#: includes/admin/class-wc-admin-attributes.php:81 -msgid "Please, provide an attribute name, slug and type." -msgstr "Por favor, provea un nombre de atributo, slug y tipo." - -#: includes/admin/class-wc-admin-attributes.php:83 -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "" -"Slug \"%s\" es demasiado largo (28 caracteres max.). Acortelo por favor." - -#: includes/admin/class-wc-admin-attributes.php:85 -msgid "" -"Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "" -"Slug \"%s\" no esta permitido porque es un término reservado. Cambielo por " -"favor." - -#: includes/admin/class-wc-admin-attributes.php:90 -#: includes/admin/class-wc-admin-attributes.php:95 -msgid "Slug “%s” is already in use. Change it, please." -msgstr "Slug \"%s\" está en uso. Cambielo por favor." - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:234 -msgid "Edit Attribute" -msgstr "Editar atributo" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:244 -#: includes/admin/class-wc-admin-attributes.php:378 -msgid "Name for the attribute (shown on the front-end)." -msgstr "Nombre para el atributo (se mostrará en la parte pública)." - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:249 -#: includes/admin/class-wc-admin-attributes.php:310 -#: includes/admin/class-wc-admin-attributes.php:382 -msgid "Slug" -msgstr "Slug" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:253 -#: includes/admin/class-wc-admin-attributes.php:384 -msgid "" -"Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "" -"Slug/referencia única para el atributo; debe contener menos de 28 caracteres." - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:258 -#: includes/admin/class-wc-admin-attributes.php:311 -#: includes/admin/class-wc-admin-attributes.php:388 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:207 -msgid "Type" -msgstr "Tipo" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:262 -#: includes/admin/class-wc-admin-attributes.php:390 -msgid "Select" -msgstr "Seleccionar" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:263 -#: includes/admin/class-wc-admin-attributes.php:391 -msgid "Text" -msgstr "Texto" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:266 -#: includes/admin/class-wc-admin-attributes.php:394 -msgid "" -"Determines how you select attributes for products. Text " -"allows manual entry via the product page, whereas select " -"attribute terms can be defined from this section. If you plan on using an " -"attribute for variations use select." -msgstr "" -"Determina la forma en que selecciona los atributos para los productos. " -"Texto permite la entrada manual a través de la página de " -"producto mientras que, seleccionar terminos de atributo " -"puede ser definido desde esta sección. Si planea usar un atributo para las " -"variaciones utilice seleccionar." - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:271 -#: includes/admin/class-wc-admin-attributes.php:398 -msgid "Default sort order" -msgstr "Orden predeterminado" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:275 -#: includes/admin/class-wc-admin-attributes.php:338 -#: includes/admin/class-wc-admin-attributes.php:400 -msgid "Custom ordering" -msgstr "Orden personalizado" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:277 -#: includes/admin/class-wc-admin-attributes.php:335 -#: includes/admin/class-wc-admin-attributes.php:402 -msgid "Term ID" -msgstr "ID página términos" - -#: includes/admin/class-wc-admin-attributes.php:279 -#: includes/admin/class-wc-admin-attributes.php:404 -msgid "" -"Determines the sort order on the frontend for this attribute. If using " -"custom ordering, you can drag and drop the terms in this attribute" -msgstr "" -"Determina el orden en el frontend para este atributo. Si utiliza orden " -"personalizado puede arrastrar y soltar los términos en este atributo." - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:284 -msgid "Update" -msgstr "Actualizar" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:301 -#: includes/admin/class-wc-admin-menus.php:49 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:104 -msgid "Attributes" -msgstr "Atributos" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:312 -msgid "Order by" -msgstr "Ordenar por:" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:313 -msgid "Terms" -msgstr "Términos" - -# @ woocommerce -# @ default -#: includes/admin/class-wc-admin-attributes.php:325 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:118 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:251 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:82 -#: includes/admin/reports/class-wc-report-customer-list.php:181 -#: includes/admin/reports/class-wc-report-stock.php:107 -msgid "Edit" -msgstr "Editar" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:325 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:44 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:104 -#: includes/admin/post-types/meta-boxes/views/html-product-download.php:6 -#: includes/admin/post-types/meta-boxes/views/html-product-variation-download.php:5 -msgid "Delete" -msgstr "Eliminar" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:358 -msgid "Configure terms" -msgstr "Configurar términos" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:362 -msgid "No attributes currently exist." -msgstr "No existen atributos actualmente." - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:372 -msgid "Add New Attribute" -msgstr "Añadir nuevo atributo" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:373 -msgid "" -"Attributes let you define extra product data, such as size or colour. You " -"can use these attributes in the shop sidebar using the \"layered nav\" " -"widgets. Please note: you cannot rename an attribute later on." -msgstr "" -"Los atributos le permiten definir información adicional para los productos, " -"como el tamaño o el color. Puede utilizar estos atributos en la barra " -"lateral de compras con el widget de \"navegación por capas\". Por favor, " -"tenga en cuenta que luego no podrá renombrar un atributo." - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:407 -msgid "Add Attribute" -msgstr "Añadir atributo" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:418 -msgid "Are you sure you want to delete this attribute?" -msgstr "¿Seguro que quiere borrar este atributo?" - -# @ woocommerce -#: includes/admin/class-wc-admin-dashboard.php:34 -msgid "WooCommerce Recent Reviews" -msgstr "Comentarios recientes WooCommerce" - -# @ woocommerce -#: includes/admin/class-wc-admin-dashboard.php:37 -#: includes/admin/class-wc-admin-menus.php:80 -msgid "WooCommerce Status" -msgstr "Estado de WooCommerce" - -#: includes/admin/class-wc-admin-dashboard.php:131 -msgid "%s sales this month" -msgstr "%s ventas este mes" - -#: includes/admin/class-wc-admin-dashboard.php:138 -msgid "%s top seller this month (sold %d)" -msgstr "%s éxito de venta este mes (vendió %d)" - -#: includes/admin/class-wc-admin-dashboard.php:144 -msgid "%s order awaiting processing" -msgid_plural "%s orders are awaiting processing" -msgstr[0] "%s orden esperando procesamiento" -msgstr[1] "%s ordenes esperando procesamiento" - -#: includes/admin/class-wc-admin-dashboard.php:149 -msgid "%s order are on-hold" -msgid_plural "%s orders are currently on-hold" -msgstr[0] "%s orden está en espera" -msgstr[1] "%s ordenes están en espera" - -# @ woocommerce -#: includes/admin/class-wc-admin-dashboard.php:154 -msgid "%s product low in stock" -msgid_plural "%s products are low in stock" -msgstr[0] "%s producto con stock bajo" -msgstr[1] "%s productos con stock bajo" - -# @ woocommerce -#: includes/admin/class-wc-admin-dashboard.php:159 -msgid "%s product out of stock" -msgid_plural "%s products are out of stock" -msgstr[0] "%s producto agotado" -msgstr[1] "%s productos agotados" - -# @ woocommerce -#: includes/admin/class-wc-admin-dashboard.php:192 -msgid "out of 5" -msgstr "de 5" - -# @ woocommerce -#: includes/admin/class-wc-admin-dashboard.php:200 -msgid "There are no product reviews yet." -msgstr "No hay ningún comentario todavía." - -# @ woocommerce -#: includes/admin/class-wc-admin-duplicate-product.php:43 -msgid "Make a duplicate from this product" -msgstr "Hacer un duplicado de este producto" - -# @ woocommerce -#: includes/admin/class-wc-admin-duplicate-product.php:44 -msgid "Duplicate" -msgstr "Duplicar" - -# @ woocommerce -#: includes/admin/class-wc-admin-duplicate-product.php:67 -msgid "Copy to a new draft" -msgstr "Copiar a un nuevo borrador" - -# @ woocommerce -#: includes/admin/class-wc-admin-duplicate-product.php:77 -msgid "No product to duplicate has been supplied!" -msgstr "¡No se ha proporcionado ningún producto para duplicarlo!" - -# @ woocommerce -#: includes/admin/class-wc-admin-duplicate-product.php:99 -msgid "Product creation failed, could not find original product:" -msgstr "La creación del producto falló, no se encuentra el producto original:" - -# @ woocommerce -#: includes/admin/class-wc-admin-duplicate-product.php:126 -msgid "(Copy)" -msgstr "(Copiar)" - -#: includes/admin/class-wc-admin-help.php:38 -msgid "Documentation" -msgstr "Documentación" - -#: includes/admin/class-wc-admin-help.php:41 -msgid "" -"Thank you for using WooCommerce :) Should you need help using or extending " -"WooCommerce please read the documentation." -msgstr "" -"Gracias por usar WooCommerce :) Si necesita ayuda usando o extendiendo " -"WooCommerce por favor lea la documentación." - -# @ woocommerce -#: includes/admin/class-wc-admin-help.php:43 -msgid "WooCommerce Documentation" -msgstr "Documentación de WooCommerce" - -#: includes/admin/class-wc-admin-help.php:43 -msgid "Developer API Docs" -msgstr "Documentación API Desarrollador" - -#: includes/admin/class-wc-admin-help.php:49 -msgid "Support" -msgstr "Soporte" - -#: includes/admin/class-wc-admin-help.php:52 -msgid "" -"After reading the documentation, for further assistance " -"you can use the community forum, or if you have access as " -"a WooThemes customer, our support desk." -msgstr "" -"Luego de leer la documentación, para obtener más ayuda " -"puede usar los foros de la comunidad, o si tiene acceso " -"como cliente de WooThemes, al centro de soporte." - -# @ woocommerce -#: includes/admin/class-wc-admin-help.php:54 -msgid "" -"Before asking for help we recommend checking the status page to identify any " -"problems with your configuration." -msgstr "" -"Antes de pedir ayuda, le recomendamos revisar la página de estado para " -"identificar cualquier problema con su configuración." - -# @ woocommerce -#: includes/admin/class-wc-admin-help.php:56 -#: includes/admin/class-wc-admin-help.php:67 -#: includes/admin/class-wc-admin-menus.php:80 -#: includes/admin/views/html-admin-page-status.php:5 -msgid "System Status" -msgstr "Estado del sistema" - -#: includes/admin/class-wc-admin-help.php:56 -msgid "Community Support" -msgstr "Soporte de la Comunidad" - -# @ woocommerce -#: includes/admin/class-wc-admin-help.php:56 -msgid "Customer Support" -msgstr "Soporte al Cliente" - -#: includes/admin/class-wc-admin-help.php:62 -msgid "Found a bug?" -msgstr "¿Encontró un error?" - -#: includes/admin/class-wc-admin-help.php:65 -msgid "" -"If you find a bug within WooCommerce core you can create a ticket via Github issues. Ensure you read the contribution guide prior to submitting your report. Be as descriptive " -"as possible and please include your system status report." -msgstr "" -"Si encuentra un error en WooCommerce puede crear un ticket usando Github issues. Debe leer la guía de contribución antes de enviar su reporte. Sea lo más descriptivo posible y por favor " -"incluya su Informe de Sistema." - -# @ woocommerce -#: includes/admin/class-wc-admin-help.php:67 -msgid "Report a bug" -msgstr "Reporta un error" - -# @ woocommerce -#: includes/admin/class-wc-admin-help.php:73 -msgid "For more information:" -msgstr "Para más información:" - -# @ woocommerce -#: includes/admin/class-wc-admin-help.php:74 -msgid "About WooCommerce" -msgstr "Sobre WooCommerce" - -#: includes/admin/class-wc-admin-help.php:75 -msgid "Project on WordPress.org" -msgstr "Proyecto en WordPress.org" - -#: includes/admin/class-wc-admin-help.php:76 -msgid "Project on Github" -msgstr "Proyecto en GitHub" - -#: includes/admin/class-wc-admin-help.php:77 -msgid "Official Extensions" -msgstr "Extensiones oficiales" - -#: includes/admin/class-wc-admin-help.php:78 -msgid "Official Themes" -msgstr "Temas oficiales" - -# @ woocommerce -#: includes/admin/class-wc-admin-importers.php:32 -msgid "WooCommerce Tax Rates (CSV)" -msgstr "Tasas de impuesto WooCommerce (CSV)" - -#: includes/admin/class-wc-admin-importers.php:32 -msgid "Import tax rates to your store via a csv file." -msgstr "" -"Importar tipos de impuesto a su tienda mediante archivo csv." - -# @ woocommerce -#: includes/admin/class-wc-admin-menus.php:56 -msgid "Reports" -msgstr "Informes" - -# @ woocommerce -#: includes/admin/class-wc-admin-menus.php:63 -msgid "WooCommerce Settings" -msgstr "Preferencias de WooCommerce" - -# @ woocommerce -#: includes/admin/class-wc-admin-menus.php:63 -#: includes/admin/class-wc-admin-welcome.php:153 -#: includes/admin/settings/class-wc-settings-checkout.php:268 -#: includes/admin/settings/class-wc-settings-shipping.php:241 -#: includes/admin/views/html-admin-page-status-report.php:263 -msgid "Settings" -msgstr "Ajustes" - -# @ woocommerce -#: includes/admin/class-wc-admin-menus.php:87 -#: includes/admin/views/html-admin-page-addons.php:4 -msgid "WooCommerce Add-ons/Extensions" -msgstr "Complementos de WooCommerce" - -#: includes/admin/class-wc-admin-menus.php:87 -msgid "Add-ons" -msgstr "Complementos" - -# @ woocommerce -#: includes/admin/class-wc-admin-menus.php:125 -#: includes/admin/class-wc-admin-menus.php:127 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Pedidos" - -# @ woocommerce -#: includes/admin/class-wc-admin-permalink-settings.php:33 -msgid "Product permalink base" -msgstr "Base enlaces permanentes de productos" - -# @ woocommerce -#: includes/admin/class-wc-admin-permalink-settings.php:38 -msgid "Product category base" -msgstr "Base enlace permanente de la categoría del producto" - -# @ woocommerce -#: includes/admin/class-wc-admin-permalink-settings.php:45 -msgid "Product tag base" -msgstr "Base enlace permanente de la etiqueta del producto" - -# @ woocommerce -#: includes/admin/class-wc-admin-permalink-settings.php:52 -msgid "Product attribute base" -msgstr "Base enlace permanente de atributos" - -# @ woocommerce -#: includes/admin/class-wc-admin-permalink-settings.php:65 -msgctxt "slug" -msgid "product-category" -msgstr "categoria-producto" - -# @ woocommerce -#: includes/admin/class-wc-admin-permalink-settings.php:75 -msgctxt "slug" -msgid "product-tag" -msgstr "etiqueta-producto" - -#: includes/admin/class-wc-admin-permalink-settings.php:93 -msgid "" -"These settings control the permalinks used for products. These settings only " -"apply when not using \"default\" permalinks above." -msgstr "" -"Estas opciones controlan los enlaces permanentes usados para los productos. " -"Estas opciones solo aplican cuando no se usan los enlaces " -"permanentes por defecto" - -# @ woocommerce -#: includes/admin/class-wc-admin-permalink-settings.php:100 -msgctxt "default-slug" -msgid "shop" -msgstr "tienda" - -# @ woocommerce -#: includes/admin/class-wc-admin-permalink-settings.php:101 -msgctxt "default-slug" -msgid "product" -msgstr "producto" - -# @ woocommerce -#: includes/admin/class-wc-admin-permalink-settings.php:113 -#: includes/admin/class-wc-admin-taxonomies.php:92 -#: includes/admin/class-wc-admin-taxonomies.php:182 -#: includes/admin/settings/class-wc-settings-checkout.php:217 -#: includes/admin/settings/class-wc-settings-shipping.php:202 -#: includes/admin/views/html-admin-page-status-report.php:80 -msgid "Default" -msgstr "Predeterminado" - -# @ woocommerce -#: includes/admin/class-wc-admin-permalink-settings.php:117 -#: includes/admin/reports/class-wc-report-stock.php:137 -#: includes/admin/views/html-email-template-preview.php:8 -msgid "Product" -msgstr "Producto" - -# @ woocommerce -#: includes/admin/class-wc-admin-permalink-settings.php:122 -msgid "Shop base" -msgstr "Base página tienda" - -# @ woocommerce -#: includes/admin/class-wc-admin-permalink-settings.php:126 -msgid "Shop base with category" -msgstr "Base Página tienda con categoría" - -# @ woocommerce -#: includes/admin/class-wc-admin-permalink-settings.php:132 -msgid "Custom Base" -msgstr "Base personalizada" - -#: includes/admin/class-wc-admin-permalink-settings.php:134 -msgid "" -"Enter a custom base to use. A base must be set or WordPress " -"will use default instead." -msgstr "" -"Introduzca una base para utilizar. La base debe " -"especificarse o WordPress utilizara una por defecto." - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:58 -msgid "Product updated. View Product" -msgstr "Producto actualizado. Ver producto" - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:59 -#: includes/admin/class-wc-admin-post-types.php:74 -#: includes/admin/class-wc-admin-post-types.php:89 -msgid "Custom field updated." -msgstr "Campo personalizado actualizado." - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:60 -#: includes/admin/class-wc-admin-post-types.php:75 -#: includes/admin/class-wc-admin-post-types.php:90 -msgid "Custom field deleted." -msgstr "Campo personalizado borrado." - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:61 -msgid "Product updated." -msgstr "Producto actualizado." - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:62 -msgid "Product restored to revision from %s" -msgstr "La revisión del producto fue restaurada a %s" - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:63 -msgid "Product published. View Product" -msgstr "Producto publicado. Ver Producto" - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:64 -msgid "Product saved." -msgstr "Producto guardado." - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:65 -msgid "Product submitted. Preview Product" -msgstr "" -"Producto enviado. Vista previa del " -"producto" - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:66 -msgid "" -"Product scheduled for: %1$s. Preview Product" -msgstr "" -"Producto programado para: %1$s. Vista previa" - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:67 -#: includes/admin/class-wc-admin-post-types.php:82 -#: includes/admin/class-wc-admin-post-types.php:97 -msgid "M j, Y @ G:i" -msgstr "M j, Y @ G:i" - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:68 -msgid "" -"Product draft updated. Preview Product" -msgstr "" -"Borrador del producto actualizado. Vista " -"previa" - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:73 -#: includes/admin/class-wc-admin-post-types.php:76 -#: includes/admin/class-wc-admin-post-types.php:78 -msgid "Order updated." -msgstr "Pedido actualizado" - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:77 -msgid "Order restored to revision from %s" -msgstr "El pedido ha sido restaurado a la revisión %s" - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:79 -msgid "Order saved." -msgstr "Pedido guardado." - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:80 -msgid "Order submitted." -msgstr "Pedido enviado." - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:81 -msgid "Order scheduled for: %1$s." -msgstr "Pedido programado para: %1$s." - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:83 -msgid "Order draft updated." -msgstr "Borrador del pedido actualizado." - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:88 -#: includes/admin/class-wc-admin-post-types.php:91 -#: includes/admin/class-wc-admin-post-types.php:93 -msgid "Coupon updated." -msgstr "Cupón actualizado." - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:92 -msgid "Coupon restored to revision from %s" -msgstr "Cupón restaurado de la revisión %s" - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:94 -msgid "Coupon saved." -msgstr "Cupón guardado." - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:95 -msgid "Coupon submitted." -msgstr "Cupón enviado." - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:96 -msgid "Coupon scheduled for: %1$s." -msgstr "Cupón programado para: %1$s." - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:98 -msgid "Coupon draft updated." -msgstr "Borrador del cupón actualizado." - -# @ woocommerce -#: includes/admin/class-wc-admin-profile.php:39 -msgid "Customer Billing Address" -msgstr "Dirección de Facturación del Cliente" - -# @ woocommerce -#: includes/admin/class-wc-admin-profile.php:42 -#: includes/admin/class-wc-admin-profile.php:91 -msgid "First name" -msgstr "Nombre" - -# @ woocommerce -#: includes/admin/class-wc-admin-profile.php:46 -#: includes/admin/class-wc-admin-profile.php:95 -msgid "Last name" -msgstr "Apellido" - -# @ woocommerce -#: includes/admin/class-wc-admin-profile.php:50 -#: includes/admin/class-wc-admin-profile.php:99 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:37 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:84 -msgid "Company" -msgstr "Empresa" - -# @ woocommerce -#: includes/admin/class-wc-admin-profile.php:54 -#: includes/admin/class-wc-admin-profile.php:103 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:41 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:88 -msgid "Address 1" -msgstr "Dirección 1" - -# @ woocommerce -#: includes/admin/class-wc-admin-profile.php:58 -#: includes/admin/class-wc-admin-profile.php:107 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:45 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:92 -msgid "Address 2" -msgstr "Dirección 2" - -# @ woocommerce -#: includes/admin/class-wc-admin-profile.php:62 -#: includes/admin/class-wc-admin-profile.php:111 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:49 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:96 -#: includes/admin/settings/class-wc-settings-tax.php:254 -#: includes/admin/settings/class-wc-settings-tax.php:381 -msgid "City" -msgstr "Ciudad" - -# @ woocommerce -#: includes/admin/class-wc-admin-profile.php:66 -#: includes/admin/class-wc-admin-profile.php:115 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:53 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:100 -msgid "Postcode" -msgstr "Código postal" - -# @ woocommerce -#: includes/admin/class-wc-admin-profile.php:70 -#: includes/admin/class-wc-admin-profile.php:119 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:63 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:110 -msgid "State/County" -msgstr "Estado/Provincia" - -# @ woocommerce -#: includes/admin/class-wc-admin-profile.php:71 -msgid "Country or state code" -msgstr "Código de país o estado" - -# @ woocommerce -#: includes/admin/class-wc-admin-profile.php:74 -#: includes/admin/class-wc-admin-profile.php:123 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:57 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:104 -msgid "Country" -msgstr "País" - -# @ woocommerce -#: includes/admin/class-wc-admin-profile.php:75 -#: includes/admin/class-wc-admin-profile.php:124 -msgid "2 letter Country code" -msgstr "Código del país de 2 letras" - -# @ woocommerce -#: includes/admin/class-wc-admin-profile.php:78 -msgid "Telephone" -msgstr "Teléfono" - -# @ woocommerce -#: includes/admin/class-wc-admin-profile.php:82 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:67 -#: includes/admin/reports/class-wc-report-customer-list.php:239 -msgid "Email" -msgstr "Email" - -# @ woocommerce -#: includes/admin/class-wc-admin-profile.php:88 -msgid "Customer Shipping Address" -msgstr "Dirección de Envío de Cliente" - -# @ woocommerce -#: includes/admin/class-wc-admin-profile.php:120 -msgid "State/County or state code" -msgstr "Estado/Condado o código de estado" - -# @ woocommerce -#: includes/admin/class-wc-admin-reports.php:46 -#: includes/admin/reports/class-wc-report-customer-list.php:241 -msgid "Orders" -msgstr "Pedidos" - -# @ woocommerce -#: includes/admin/class-wc-admin-reports.php:49 -msgid "Sales by date" -msgstr "Ventas por fecha" - -# @ woocommerce -#: includes/admin/class-wc-admin-reports.php:55 -msgid "Sales by product" -msgstr "Ventas por producto" - -# @ woocommerce -#: includes/admin/class-wc-admin-reports.php:61 -msgid "Sales by category" -msgstr "Ventas por categoría" - -# @ woocommerce -#: includes/admin/class-wc-admin-reports.php:67 -msgid "Coupons by date" -msgstr "Cupones por fecha" - -# @ woocommerce -#: includes/admin/class-wc-admin-reports.php:75 -#: includes/admin/reports/class-wc-report-customer-list.php:23 -msgid "Customers" -msgstr "Clientes" - -# @ woocommerce -#: includes/admin/class-wc-admin-reports.php:78 -msgid "Customers vs. Guests" -msgstr "Clientes vs Visitas" - -# @ woocommerce -#: includes/admin/class-wc-admin-reports.php:84 -msgid "Customer List" -msgstr "lista de clientes" - -# @ woocommerce -#: includes/admin/class-wc-admin-reports.php:92 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:200 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:762 -#: includes/admin/reports/class-wc-report-stock.php:20 -#: includes/admin/reports/class-wc-report-stock.php:21 -msgid "Stock" -msgstr "Disponibilidad" - -# @ woocommerce -#: includes/admin/class-wc-admin-reports.php:95 -msgid "Low in stock" -msgstr "Stock bajo" - -# @ woocommerce -#: includes/admin/class-wc-admin-reports.php:101 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:367 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:302 -#: includes/admin/reports/class-wc-report-stock.php:93 -#: includes/admin/views/html-bulk-edit-product.php:195 -#: includes/admin/views/html-quick-edit-product.php:138 -msgid "Out of stock" -msgstr "Agotado" - -#: includes/admin/class-wc-admin-reports.php:107 -msgid "Most Stocked" -msgstr "Mayor disponibilidad" - -# @ woocommerce -#: includes/admin/class-wc-admin-reports.php:118 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:75 -msgid "Taxes" -msgstr "Impuestos" - -# @ woocommerce -#: includes/admin/class-wc-admin-reports.php:121 -msgid "Taxes by code" -msgstr "Impuestos por código" - -# @ woocommerce -#: includes/admin/class-wc-admin-reports.php:127 -msgid "Taxes by date" -msgstr "Impuestos por fecha" - -# @ woocommerce -#: includes/admin/class-wc-admin-settings.php:52 -msgid "Action failed. Please refresh the page and retry." -msgstr "" -"Error en la acción. Por favor, actualice la página y vuelva a intentarlo." - -# @ woocommerce -#: includes/admin/class-wc-admin-settings.php:63 -msgid "Your settings have been saved." -msgstr "Su configuración ha sido guardada." - -# @ woocommerce -#: includes/admin/class-wc-admin-settings.php:119 -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "Los cambios realizados se perderán si se navega fuera de esta página." - -# @ woocommerce -#: includes/admin/class-wc-admin-settings.php:466 -msgid "Hard Crop?" -msgstr "Recortar a la fuerza" - -# @ woocommerce -#: includes/admin/class-wc-admin-settings.php:491 -msgid "Select a page…" -msgstr "Seleccione una página…" - -# @ woocommerce -#: includes/admin/class-wc-admin-settings.php:514 -msgid "Choose a country…" -msgstr "Seleccione un país…" - -# @ woocommerce -#: includes/admin/class-wc-admin-settings.php:538 -msgid "Choose countries…" -msgstr "Seleccione los paises…" - -# @ woocommerce -#: includes/admin/class-wc-admin-settings.php:544 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:460 -msgid "Select all" -msgstr "Seleccionar todos" - -# @ woocommerce -#: includes/admin/class-wc-admin-settings.php:544 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:460 -msgid "Select none" -msgstr "No seleccionar" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:52 -msgid "Product Transients Cleared" -msgstr "Los Transientes del producto han sido limpiados" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:93 -msgid "%d Transients Rows Cleared" -msgstr "%d filas temporales limpiadas" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:102 -msgid "Roles successfully reset" -msgstr "Los roles han sido reseteados satisfactoriamente" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:114 -msgid "Terms successfully recounted" -msgstr "Términos correctamente recontados" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:133 -msgid "There was an error calling %s::%s" -msgstr "Se produjo un error al llamar %s::%s" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:136 -msgid "There was an error calling %s" -msgstr "Hubo un error al llamar %s" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:155 -msgid "WC Transients" -msgstr "Temporales WC" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:156 -msgid "Clear transients" -msgstr "Limpiar Temporales" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:157 -msgid "This tool will clear the product/shop transients cache." -msgstr "Esta herramienta limpiará el caché transiente de productos/compras." - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:160 -msgid "Expired Transients" -msgstr "Temporales expirados" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:161 -msgid "Clear expired transients" -msgstr "Borrar temporales expirados" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:162 -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "Esta herramienta limpiará TODOS los temporales expirados de WordPress." - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:165 -msgid "Term counts" -msgstr "Cuenta de términos" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:166 -msgid "Recount terms" -msgstr "Recontar términos" - -#: includes/admin/class-wc-admin-status.php:167 -msgid "" -"This tool will recount product terms - useful when changing your settings in " -"a way which hides products from the catalog." -msgstr "" -"Esta herramienta referirá los terminos de producto - útil cuamdo se cambia " -"la configuración de manera que oculta productos del catálogo." - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:170 -msgid "Capabilities" -msgstr "Capacidades" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:171 -msgid "Reset capabilities" -msgstr "Restablecer capacidades" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:172 -msgid "" -"This tool will reset the admin, customer and shop_manager roles to default. " -"Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "" -"Esta herramienta reiniciará los roles de admin y shop_manager a su estádo " -"original. Utilice esto si los usuarios experimentan problemas en la zona de " -"administración de WooCommerce." - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:175 -msgid "Customer Sessions" -msgstr "Sesiones de cliente" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:176 -msgid "Clear all sessions" -msgstr "Limpiar todas las sesiones" - -#: includes/admin/class-wc-admin-status.php:177 -msgid "" -"Warning This tool will delete all customer " -"session data from the database, including any current live carts." -msgstr "" -"Advertencia Esta herramienta borrará todas " -"las sesiones de usuarios de la base de datos, incluyendo los carros de " -"compra en curso." - -# @ woocommerce -#: includes/admin/class-wc-admin-taxonomies.php:90 -#: includes/admin/class-wc-admin-taxonomies.php:179 -msgid "Display type" -msgstr "Tipo de visualización" - -# @ woocommerce -#: includes/admin/class-wc-admin-taxonomies.php:93 -#: includes/admin/class-wc-admin-taxonomies.php:183 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:67 -#: includes/admin/settings/class-wc-settings-products.php:25 -#: includes/admin/views/html-admin-page-addons.php:15 -msgid "Products" -msgstr "Productos" - -# @ woocommerce -#: includes/admin/class-wc-admin-taxonomies.php:94 -#: includes/admin/class-wc-admin-taxonomies.php:184 -msgid "Subcategories" -msgstr "Subcategorías" - -#: includes/admin/class-wc-admin-taxonomies.php:95 -#: includes/admin/class-wc-admin-taxonomies.php:185 -msgid "Both" -msgstr "Ambos" - -# @ woocommerce -#: includes/admin/class-wc-admin-taxonomies.php:99 -#: includes/admin/class-wc-admin-taxonomies.php:190 -msgid "Thumbnail" -msgstr "Miniatura" - -# @ woocommerce -#: includes/admin/class-wc-admin-taxonomies.php:103 -#: includes/admin/class-wc-admin-taxonomies.php:195 -msgid "Upload/Add image" -msgstr "Subir/Añadir imagen" - -# @ woocommerce -#: includes/admin/class-wc-admin-taxonomies.php:104 -#: includes/admin/class-wc-admin-taxonomies.php:196 -msgid "Remove image" -msgstr "Eliminar imagen" - -# @ woocommerce -#: includes/admin/class-wc-admin-taxonomies.php:129 -#: includes/admin/class-wc-admin-taxonomies.php:217 -msgid "Use image" -msgstr "Usar imagen" - -# @ woocommerce -#: includes/admin/class-wc-admin-taxonomies.php:275 -msgid "" -"Product categories for your store can be managed here. To change the order " -"of categories on the front-end you can drag and drop to sort them. To see " -"more categories listed click the \"screen options\" link at the top of the " -"page." -msgstr "" -"Las categorías de producto pueden ser gestionadas desde aquí. Para cambiar " -"el orden de las categorías en la parte pública puede arrastrar y soltarlas. " -"Para ver más categorías del listado haga clic en el enlace \"opciones de " -"pantalla\" en la parte superior de esta página." - -# @ woocommerce -#: includes/admin/class-wc-admin-taxonomies.php:285 -msgid "" -"Shipping classes can be used to group products of similar type. These groups " -"can then be used by certain shipping methods to provide different rates to " -"different products." -msgstr "" -"Las clases de envío pueden ser usadas para agrupar productos del mismo tipo. " -"Luego estos grupos pueden usarse por ciertos métodos de envío para brindar " -"tasas diferentes a productos diferentes." - -# @ woocommerce -#: includes/admin/class-wc-admin-taxonomies.php:298 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:192 -msgid "Image" -msgstr "Imagen" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:48 -msgid "Welcome to WooCommerce" -msgstr "Bienvenido a WooCommerce" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:135 -msgid "Welcome to WooCommerce %s" -msgstr "Bienvenido a WooCommerce %s" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:140 -msgid "Thanks, all done!" -msgstr "Gracias, ¡todo listo!" - -#: includes/admin/class-wc-admin-welcome.php:142 -msgid "Thank you for updating to the latest version!" -msgstr "Gracias por actualizar a la última versión." - -#: includes/admin/class-wc-admin-welcome.php:144 -msgid "Thanks for installing!" -msgstr "Gracias por elegirnos." - -#: includes/admin/class-wc-admin-welcome.php:146 -msgid "" -"%s WooCommerce %s is more powerful, stable, and secure than ever before. We " -"hope you enjoy it." -msgstr "" -"%s WooCommerce %s es más potente, estable y seguro que nunca. Esperamos que " -"le guste." - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:150 -msgid "Version %s" -msgstr "Versión %s" - -#: includes/admin/class-wc-admin-welcome.php:154 -msgid "Docs" -msgstr "Documentación" - -#: includes/admin/class-wc-admin-welcome.php:161 -msgid "What's New" -msgstr "¿Qué novedades hay?" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:163 -msgid "Credits" -msgstr "Créditos" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:186 -msgid "Security in mind" -msgstr "Seguridad en mente" - -#: includes/admin/class-wc-admin-welcome.php:190 -msgid "Sucuri Safe Plugin" -msgstr "Plugin Sucuri Safe" - -#: includes/admin/class-wc-admin-welcome.php:191 -msgid "" -"You will be happy to learn that WooCommerce has been audited and certified " -"by the Sucuri Security team. Whilst there is not much to be seen visually to " -"understand the amount of work that went into this audit, rest assured that " -"your website is powered by one of the most powerful and stable eCommerce " -"plugins available." -msgstr "" -"Te alegrará saber que WooCommerce ha sido auditado y certificado por Sucuri " -"Security Team. No es que se pueda mostrar visualmente la cantidad de trabajo " -"que ha llevado realizar la auditoría pero el resultado es que su web utiliza " -"uno de los sistemas de venta online más potentes y estables disponibles en " -"el mercado." - -#: includes/admin/class-wc-admin-welcome.php:194 -msgid "A Smoother Admin Experience" -msgstr "Una experiencia más fluida en la administración." - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:200 -msgid "New Product Panel" -msgstr "Nuevo panel de productos" - -#: includes/admin/class-wc-admin-welcome.php:201 -msgid "" -"We have revised the product data panel making it cleaner, more streamlined, " -"and more logical. Adding products is a breeze!" -msgstr "" -"Hemos revisado el panel de información de producto haciendolo más limpio, " -"más simplificado y más lógico. Añadir productos ahora ¡es una gozada!" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:206 -msgid "Nicer Order Screens" -msgstr "Pantallas de pedido mejoradas" - -#: includes/admin/class-wc-admin-welcome.php:207 -msgid "" -"Order pages have had a cleanup, with a more easily scannable interface. We " -"particularly like the new status icons!" -msgstr "" -"Las páginas de pedido han sido mejoradas. ¡A nosotros nos encantan los " -"nuevos iconos de estado!" - -#: includes/admin/class-wc-admin-welcome.php:212 -msgid "Multi-Download Support" -msgstr "Soporte para descargas múltiples" - -#: includes/admin/class-wc-admin-welcome.php:213 -msgid "" -"Products can have multiple downloadable files - purchasers will get access " -"to all the files added." -msgstr "" -"Los productos pueden tener múltiples archivos de descarga - los compradores " -"accederán a todos los archivos añadidos." - -#: includes/admin/class-wc-admin-welcome.php:218 -msgid "Less Taxing Taxes" -msgstr "Menos impuestos impuestos" - -#: includes/admin/class-wc-admin-welcome.php:224 -msgid "New Tax Input Panel" -msgstr "Nuevo panel de entrada de impuestos" - -#: includes/admin/class-wc-admin-welcome.php:225 -msgid "" -"The tax input pages have been streamlined to make inputting taxes simpler - " -"adding multiple taxes for a single jurisdiction is now much easier using the " -"priority system. There is also CSV import/export support." -msgstr "" -"El panel de entrada de impuestos ha sido simplificado para que sea más facil " -"- añadir multiples tipos de impuesto para una misma jurisdicción es ahora " -"mucho más facil usando el sistema de prioridades. También hay soporte para " -"importar/exportar a CSV." - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:229 -msgid "Improved Tax Options" -msgstr "Opciones de Impuestos mejorada" - -#: includes/admin/class-wc-admin-welcome.php:230 -msgid "" -"As requested by some users, we now support taxing the billing address " -"instead of shipping (optional), and we allow you to choose which tax class " -"applies to shipping." -msgstr "" -"A petición de algunos usuarios, ahora está soportado cargar impuestos sobre " -"la dirección de facturación en vez de la de envío (opcional) permitiendole " -"elegir que tipo de impuesto se aplican al envío." - -#: includes/admin/class-wc-admin-welcome.php:235 -msgid "Product Listing Improvements Customers Will Love" -msgstr "Mejoras en el listado de producto que le van a encantar" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:241 -msgid "New Sorting Options" -msgstr "Nueva opción para ordenar" - -#: includes/admin/class-wc-admin-welcome.php:242 -msgid "Customers can now sort products by popularity and ratings." -msgstr "" -"Los clientes ahora podrán ordenar los productos por popularidad y valoración." - -#: includes/admin/class-wc-admin-welcome.php:247 -msgid "Better Pagination and Result Counts" -msgstr "Paginación y recuento de resultados mejorados" - -#: includes/admin/class-wc-admin-welcome.php:248 -msgid "" -"Numbered pagination has been added to core, and we show the number of " -"results found above the listings." -msgstr "" -"Añadida paginación numerada. También se mostrarán el número de resultados " -"bajo los listados." - -#: includes/admin/class-wc-admin-welcome.php:253 -msgid "Inline Star Rating Display" -msgstr "Sistema de valoración integrado" - -#: includes/admin/class-wc-admin-welcome.php:254 -msgid "" -"We have added star ratings to the catalog which are pulled from reviews." -msgstr "" -"Hemos añadido un sistema de valoración con estrellas al catalogo que se " -"genera en base a las opiniones de los clientes." - -#: includes/admin/class-wc-admin-welcome.php:262 -msgid "Under the Hood" -msgstr "Bajo el capó" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:266 -msgid "New product classes" -msgstr "Nuevas clases de producto" - -#: includes/admin/class-wc-admin-welcome.php:267 -msgid "" -"The product classes have been rewritten and are now factory based. Much more " -"extendable, and easier to query products using the new get_product() function." -msgstr "" -"Las clases de producto se han reescrito y ahora estan basadas en fabricante. " -"Más extensible y facilidad consultar productos usando la nueva función " -"get_product()." - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:271 -msgid "Capability overhaul" -msgstr "Reacondicionamiento de capacidad" - -#: includes/admin/class-wc-admin-welcome.php:272 -msgid "" -"More granular capabilities for admin/shop manager roles covering products, " -"orders and coupons." -msgstr "" -"Permisos afinados para los roles admin/shop manager cubriendo productos, " -"pedidos y cupones." - -#: includes/admin/class-wc-admin-welcome.php:276 -msgid "API Improvements" -msgstr "Mejoras en la API" - -#: includes/admin/class-wc-admin-welcome.php:277 -msgid "" -"WC-API now has real endpoints, and we've optimised the gateways " -"API significantly by only loading gateways when needed." -msgstr "" -"WC-API ahora tiene endpoints reales y hemos optimizado la API " -"de las pasarelas de pago cargando las pasarelas solo cuando es necesario." - -#: includes/admin/class-wc-admin-welcome.php:283 -msgid "Cache-friendly cart widgets" -msgstr "Widgets de carro 'Cache-friendly'" - -#: includes/admin/class-wc-admin-welcome.php:284 -msgid "" -"Cart widgets and other \"fragments\" are now pulled in via AJAX - this works " -"wonders with static page caching." -msgstr "" -"Los widgets de carrito y otros fragmentos ahora se cargan via AJAX - esto " -"funciona de maravilla con páginas cacheadas." - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:288 -msgid "Session handling" -msgstr "Manejo de sesión" - -#: includes/admin/class-wc-admin-welcome.php:289 -msgid "" -"PHP SESSIONS have been a problem for many users in the past, so we've " -"developed our own handler using cookies and options to make these more " -"reliable." -msgstr "" -"PHP SESSIONS han sido un problema para muchos usuarios en el pasado así que " -"hemos desarrollado nuestro propio método basado en cookies para hacerlo más " -"fiable." - -#: includes/admin/class-wc-admin-welcome.php:293 -msgid "Retina Ready" -msgstr "Retina Ready" - -#: includes/admin/class-wc-admin-welcome.php:294 -msgid "All graphics within WC have been optimised for HiDPI displays." -msgstr "Todas las imágenes en WC han sido optimizadas para pantallas HiDPI" - -#: includes/admin/class-wc-admin-welcome.php:301 -msgid "Better stock handling" -msgstr "Manejo de stock mejorado" - -#: includes/admin/class-wc-admin-welcome.php:302 -msgid "" -"We have added an option to hold stock for unpaid orders (defaults to " -"60mins). When this time limit is reached, and the order is not paid for, " -"stock is released and the order is cancelled." -msgstr "" -"Hemos añadido la función de congelación de stock para los pedidos impagados " -"(por defecto 60 min.). Cuando se pasa el tiempo límite y el pedido sigue " -"impagado el stock se libera y el pedido se cancela." - -#: includes/admin/class-wc-admin-welcome.php:306 -msgid "Improved Line-item storage" -msgstr "Guardado de Linea de articulo mejorada" - -#: includes/admin/class-wc-admin-welcome.php:307 -msgid "" -"We have changed how order items get stored making them easier (and faster) " -"to access for reporting. Order items are no longer serialised within an " -"order - they are stored within their own table." -msgstr "" -"Hemos cambiado la forma en que se guardan los articulos de los pedidos " -"haciendolo así más facil (y más rápido) de acceder. Los articulos de pedido " -"ya no se serializan con el pedido - ahora se guardan en su propia tabla." - -#: includes/admin/class-wc-admin-welcome.php:311 -msgid "Autoload" -msgstr "Autoload" - -#: includes/admin/class-wc-admin-welcome.php:312 -msgid "" -"We have setup autoloading for classes - this has dramatically reduced memory " -"usage in 2.0." -msgstr "" -"Hemos configurado una autocarga para las clases. Esto ha reducido " -"considerablemtene el uso de memoria en 2.0." - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:319 -msgid "Go to WooCommerce Settings" -msgstr "Ir a preferencias de WooCommerce" - -#: includes/admin/class-wc-admin-welcome.php:337 -msgid "" -"WooCommerce is developed and maintained by a worldwide team of passionate " -"individuals and backed by an awesome developer community. Want to see your " -"name? Contribute to WooCommerce." -msgstr "" -"WooCommerce es desarrolado y mantenido por un equipo de apasionados " -"programadores a lo largo y ancho del mundo. ¿Quiere ver su nombre aquí? Contribuya con WooCommerce" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:363 -msgid "View %s" -msgstr "Ver %s" - -# @ woocommerce -#: includes/admin/class-wc-admin.php:109 -#: includes/admin/settings/class-wc-settings-checkout.php:159 -msgid "Order Received" -msgstr "Pedido recibido" - -#: includes/admin/importers/class-wc-tax-rate-importer.php:103 -#: includes/admin/importers/class-wc-tax-rate-importer.php:190 -#: includes/admin/importers/class-wc-tax-rate-importer.php:230 -#: includes/admin/importers/class-wc-tax-rate-importer.php:245 -msgid "Sorry, there has been an error." -msgstr "Lo sentimos, se ha producido un error." - -#: includes/admin/importers/class-wc-tax-rate-importer.php:104 -msgid "The file does not exist, please try again." -msgstr "Este archivo no existe, seleccione otro por favor." - -#: includes/admin/importers/class-wc-tax-rate-importer.php:191 -msgid "The CSV is invalid." -msgstr "Archivo CSV invalido." - -#: includes/admin/importers/class-wc-tax-rate-importer.php:202 -msgid "" -"Import complete - imported %s tax rates and skipped " -"%s." -msgstr "" -"Importación completada - Tipos de impuesto importados %s e " -"ingnorados %s." - -# @ woocommerce -#: includes/admin/importers/class-wc-tax-rate-importer.php:212 -msgid "All done!" -msgstr "¡Todo listo!" - -# @ woocommerce -#: includes/admin/importers/class-wc-tax-rate-importer.php:212 -msgid "View Tax Rates" -msgstr "Ver impuestos" - -# @ woocommerce -#: includes/admin/importers/class-wc-tax-rate-importer.php:263 -msgid "Import Tax Rates" -msgstr "Importar impuestos" - -#: includes/admin/importers/class-wc-tax-rate-importer.php:286 -msgid "" -"Hi there! Upload a CSV file containing tax rates to import the contents into " -"your shop. Choose a .csv file to upload, then click \"Upload file and import" -"\"." -msgstr "" -"Hola, suba un archivo CSV que contenga los tipos de impuesto que desea " -"importar a su tienda. Seleccione un archivo .csv para subir y pulse \"Subir " -"archivo e importar\"" - -#: includes/admin/importers/class-wc-tax-rate-importer.php:288 -msgid "" -"Tax rates need to be defined with columns in a specific order (10 columns). " -"Click here to download a sample." -msgstr "" -"Los tipos de impuesto deben ser definidos en un orden especifico (10 " -"columnas). Click aquí para descargar un ejemplo" - -#: includes/admin/importers/class-wc-tax-rate-importer.php:296 -msgid "" -"Before you can upload your import file, you will need to fix the following " -"error:" -msgstr "" -"Antes de poder subir su archivo de importación debe arreglar los siguientes " -"errores:" - -#: includes/admin/importers/class-wc-tax-rate-importer.php:305 -msgid "Choose a file from your computer:" -msgstr "Seleccionar archivo desde su ordenador:" - -#: includes/admin/importers/class-wc-tax-rate-importer.php:311 -msgid "Maximum size: %s" -msgstr "Tamaño máximo: %s" - -#: includes/admin/importers/class-wc-tax-rate-importer.php:316 -msgid "OR enter path to file:" -msgstr "o introduzca la ruta al archivo:" - -# @ woocommerce -#: includes/admin/importers/class-wc-tax-rate-importer.php:323 -msgid "Delimiter" -msgstr "Delimitador" - -# @ woocommerce -#: includes/admin/importers/class-wc-tax-rate-importer.php:329 -msgid "Upload file and import" -msgstr "Subir archivo e importar" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:83 -msgid "Product name" -msgstr "Nombre del producto" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:104 -msgid "Catalog/search" -msgstr "Catálogo/busqueda" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:105 -#: includes/admin/views/html-bulk-edit-product.php:158 -#: includes/admin/views/html-quick-edit-product.php:115 -msgid "Catalog" -msgstr "Catálogo" - -# @ woocommerce -# @ default -#: includes/admin/post-types/class-wc-admin-cpt-product.php:106 -#: includes/admin/views/html-bulk-edit-product.php:159 -#: includes/admin/views/html-quick-edit-product.php:116 -msgid "Search" -msgstr "Búsqueda" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:107 -#: includes/admin/views/html-bulk-edit-product.php:160 -#: includes/admin/views/html-quick-edit-product.php:117 -msgid "Hidden" -msgstr "Oculto" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:111 -msgid "Catalog visibility:" -msgstr "Visibilidad del catálogo:" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:126 -msgid "" -"Define the loops this product should be visible in. The product will still " -"be accessible directly." -msgstr "" -"Defina los bucles en los que este producto debe ser visible. El producto " -"seguirá siendo accesible directamente." - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:132 -msgid "Enable this option to feature this product." -msgstr "Habilite esta opción para destacar este producto." - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:134 -msgid "Featured Product" -msgstr "Producto Destacado" - -# @ default -#: includes/admin/post-types/class-wc-admin-cpt-product.php:137 -msgid "OK" -msgstr "OK" - -# @ woocommerce -# @ default -#: includes/admin/post-types/class-wc-admin-cpt-product.php:138 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:169 -msgid "Cancel" -msgstr "Cancelar" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:197 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:135 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:52 -#: includes/admin/views/html-quick-edit-product.php:11 -msgid "SKU" -msgstr "Referencia" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:202 -#: includes/admin/views/html-bulk-edit-product.php:10 -#: includes/admin/views/html-email-template-preview.php:10 -#: includes/admin/views/html-quick-edit-product.php:22 -msgid "Price" -msgstr "Precio" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:204 -#: includes/admin/reports/class-wc-report-sales-by-category.php:138 -msgid "Categories" -msgstr "Categorías" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:205 -msgid "Tags" -msgstr "Etiquetas" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:208 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:93 -#: includes/admin/reports/class-wc-report-coupon-usage.php:313 -#: includes/admin/reports/class-wc-report-customers.php:199 -#: includes/admin/reports/class-wc-report-sales-by-category.php:210 -#: includes/admin/reports/class-wc-report-sales-by-date.php:158 -#: includes/admin/reports/class-wc-report-sales-by-product.php:323 -msgid "Date" -msgstr "Fecha" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:251 -msgid "Edit this item" -msgstr "Editar este artículo" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:252 -msgid "Edit this item inline" -msgstr "Editar rápido este artículo" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:252 -msgid "Quick Edit" -msgstr "Edición rápida" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:256 -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:98 -msgid "Restore this item from the Trash" -msgstr "Restaurar este artículo de la papelera" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:256 -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:98 -msgid "Restore" -msgstr "Restaurar" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:258 -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:100 -msgid "Move this item to the Trash" -msgstr "Mover este artículo a la papelera" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:258 -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:100 -msgid "Trash" -msgstr "Papelera" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:260 -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:102 -msgid "Delete this item permanently" -msgstr "Borrar este artículo de forma permanente" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:260 -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:102 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:65 -msgid "Delete Permanently" -msgstr "Borrar permanentemente" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:265 -msgid "Preview “%s”" -msgstr "Vista previa “%s”" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:265 -msgid "Preview" -msgstr "Vista previa" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:267 -msgid "View “%s”" -msgstr "Ver “%s”" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:267 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:298 -#: includes/admin/reports/class-wc-report-stock.php:114 -msgid "View" -msgstr "Ver" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:317 -msgid "Grouped" -msgstr "Agrupado" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:319 -msgid "External/Affiliate" -msgstr "Externo/Afiliado" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:323 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:514 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:51 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:213 -msgid "Virtual" -msgstr "Virtual" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:325 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:507 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:58 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:211 -msgid "Downloadable" -msgstr "Descargable" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:327 -msgid "Simple" -msgstr "Simple" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:331 -msgid "Variable" -msgstr "Variable" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:354 -msgid "Toggle featured" -msgstr "Marcar destacado" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:356 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:135 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:200 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:202 -#: includes/admin/views/html-admin-page-status-report.php:39 -#: includes/admin/views/html-admin-page-status-report.php:76 -#: includes/admin/views/html-admin-page-status-report.php:101 -#: includes/admin/views/html-admin-page-status-report.php:270 -#: includes/admin/views/html-bulk-edit-product.php:176 -#: includes/admin/views/html-bulk-edit-product.php:213 -msgid "Yes" -msgstr "Si" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:358 -#: includes/admin/views/html-admin-page-status-report.php:39 -#: includes/admin/views/html-admin-page-status-report.php:76 -#: includes/admin/views/html-admin-page-status-report.php:101 -#: includes/admin/views/html-admin-page-status-report.php:270 -#: includes/admin/views/html-bulk-edit-product.php:177 -#: includes/admin/views/html-bulk-edit-product.php:214 -msgid "No" -msgstr "No" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:365 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:301 -#: includes/admin/reports/class-wc-report-stock.php:91 -#: includes/admin/views/html-bulk-edit-product.php:194 -#: includes/admin/views/html-quick-edit-product.php:137 -msgid "In stock" -msgstr "En stock" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:449 -msgid "Sort Products" -msgstr "Ordenar Productos" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:469 -msgid "Show all product types" -msgstr "Mostrar todos los tipos de producto" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:481 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:37 -msgid "Grouped product" -msgstr "Producto agrupado" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:484 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:38 -msgid "External/Affiliate product" -msgstr "Producto Externo/Afiliado" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:487 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:39 -msgid "Variable product" -msgstr "Producto variable" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:490 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:36 -msgid "Simple product" -msgstr "Producto simple" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:52 -msgid "Coupon code" -msgstr "Código de cupón" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:64 -msgid "Code" -msgstr "Código" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:65 -msgid "Coupon type" -msgstr "Tipo de cupón" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:66 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:44 -#: includes/admin/reports/class-wc-report-sales-by-date.php:320 -msgid "Coupon amount" -msgstr "Importe del cupón" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:67 -msgid "Description" -msgstr "Descripción" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:68 -msgid "Product IDs" -msgstr "IDs de producto" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:69 -msgid "Usage / Limit" -msgstr "Uso / Límite" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:70 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:155 -msgid "Expiry date" -msgstr "Fecha de caducidad" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:89 -msgid "Edit coupon" -msgstr "Editar cupón" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:147 -msgid "%s / %s" -msgstr "%s / %s" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:149 -msgid "%s / ∞" -msgstr "%s / ∞" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:195 -msgid "Show all types" -msgstr "Mostrar todos los tipos" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:86 -#: includes/admin/settings/class-wc-settings-checkout.php:220 -#: includes/admin/settings/class-wc-settings-shipping.php:205 -msgid "Status" -msgstr "Estado" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:87 -msgid "Order" -msgstr "Pedido" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:88 -msgid "Purchased" -msgstr "Comprado" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:89 -msgid "Ship to" -msgstr "Método de envío" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:91 -msgid "Customer Message" -msgstr "Notas del cliente" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:92 -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:97 -msgid "Order Notes" -msgstr "Notas de pedido" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:94 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:43 -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:62 -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:171 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:129 -msgid "Total" -msgstr "Total" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:95 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:34 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:81 -#: includes/admin/reports/class-wc-report-customer-list.php:244 -#: includes/admin/reports/class-wc-report-stock.php:141 -msgid "Actions" -msgstr "Acciones" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:119 -msgid "Unpublished" -msgstr "No publicado" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:121 -msgid "Y/m/d g:i:s A" -msgstr "Y/m/d g:i:s A" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:126 -msgid "Y/m/d" -msgstr "Y/m/d" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:147 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:185 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:213 -msgid "Via" -msgstr "Vía" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:151 -msgid "%d item" -msgid_plural "%d items" -msgstr[0] "%d artículo" -msgstr[1] "%d artículos" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:202 -msgid "plus %d other note" -msgid_plural "plus %d other notes" -msgstr[0] "más %d nota" -msgstr[1] "más %d otras notas" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:220 -msgid "Billing:" -msgstr "Facturación:" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:223 -msgid "Tel:" -msgstr "Tel:" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:242 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:263 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:169 -msgid "Guest" -msgstr "Invitado" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:266 -msgid "%s by %s" -msgstr "%s por %s" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:285 -msgid "Processing" -msgstr "Procesando" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:292 -msgid "Complete" -msgstr "Completado" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:384 -msgid "Show all statuses" -msgstr "Mostrar todos los estados" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:403 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:428 -msgid "Show all customers" -msgstr "Mostrar todos los clientes" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:645 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:646 -msgid "Mark processing" -msgstr "Marcar procesando" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:648 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:649 -msgid "Mark on-hold" -msgstr "Marcar en espera" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:651 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:652 -msgid "Mark completed" -msgstr "Marcar completado" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:693 -msgid "Order status changed by bulk edit:" -msgstr "El estado del pedido se modificó por una edición masiva:" - -# @ default -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:715 -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "Estado del pedido cambiado." -msgstr[1] "%s estado de pedidos cambiados." - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt.php:44 -msgid "Insert into %s" -msgstr "Insertar en %s" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt.php:45 -msgid "Uploaded to this %s" -msgstr "Subido a este %s" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:89 -msgid "Product Short Description" -msgstr "Descripción Corta del Producto" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:90 -#: includes/admin/settings/class-wc-settings-products.php:283 -#: includes/admin/views/html-bulk-edit-product.php:4 -#: includes/admin/views/html-quick-edit-product.php:4 -msgid "Product Data" -msgstr "Información del producto" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:91 -msgid "Product Gallery" -msgstr "Galería del producto" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:94 -msgid "Order Data" -msgstr "Información del Pedido" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:95 -msgid "Order Items" -msgstr "Artículos del pedido" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:96 -msgid "Order Totals" -msgstr "Total Pedido" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:98 -msgid "Downloadable Product Permissions" -msgstr "Permisos de producto descargable" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:98 -msgid "" -"Note: Permissions for order items will automatically be granted when the " -"order status changes to processing/completed." -msgstr "" -"Nota: Los permisos para los artículos del pedido serán automáticamente " -"concedidos cuando el pedido pase al estado de procesando/completado." - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:99 -msgid "Order Actions" -msgstr "Acciones de pedido" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:102 -msgid "Coupon Data" -msgstr "Datos de cupón" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:133 -msgid "Reviews" -msgstr "Comentarios" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:36 -msgid "Coupon description" -msgstr "Descripción del cupón" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:36 -msgid "Optionally enter a description for this coupon for your reference." -msgstr "" -"Opcionalmente puede introducir una descripción para el cupón que le ayude a " -"identificarlo mejor." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:41 -msgid "Discount type" -msgstr "Tipo de descuento" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:44 -msgid "Value of the coupon." -msgstr "Valor del cupón." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:47 -msgid "Enable free shipping" -msgstr "Habilitar envío gratuito" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:47 -msgid "" -"Check this box if the coupon grants free shipping. The free " -"shipping method must be enabled with the \"must use coupon\" setting " -"checked." -msgstr "" -"Marque esta casilla si el cupón habilita el envío gratuito. El Envío Gratuito debe estar habilitado." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:50 -msgid "Individual use" -msgstr "Uso individual" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:50 -msgid "" -"Check this box if the coupon cannot be used in conjunction with other " -"coupons." -msgstr "" -"Marque esta casilla si el cupón no se puede utilizar en combinación con " -"otros cupones." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:53 -msgid "Apply before tax" -msgstr "Aplicar antes que el impuesto" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:53 -msgid "" -"Check this box if the coupon should be applied before calculating cart tax." -msgstr "" -"Marque esta casilla si el cupón debe ser aplicado antes de calcular los " -"impuestos en el carrito." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:56 -msgid "Exclude sale items" -msgstr "Excluir artículos rebajados" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:56 -msgid "" -"Check this box if the coupon should not apply to items on sale. Per-item " -"coupons will only work if the item is not on sale. Per-cart coupons will " -"only work if there are no sale items in the cart." -msgstr "" -"Marque esta casilla si el cupón no es aplicable a articulos rebajados. Los " -"cupónes relacionados a un articulo no funcionarán si el articulo está " -"rebajado. Los cupones relacionados con el total del carrito solo funcionarán " -"si no hay articulos rebajados en el carrito." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:61 -msgid "Minimum amount" -msgstr "Importe mínimo" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:61 -msgid "No minimum" -msgstr "Sin mínimo" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:61 -msgid "" -"This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "" -"Este campo le permite establecer el subtotal mínimo que debe darse para " -"poder usar el cupón." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:68 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:95 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:585 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:602 -#: includes/admin/reports/class-wc-report-sales-by-product.php:177 -msgid "Search for a product…" -msgstr "Buscar un producto…" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:81 -msgid "" -"Products which need to be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are discounted." -msgstr "" -"Productos que deben estar en el carrito para usar este cupón o para el " -"\"Descuento en Productos\", cuyos productos pueden ser descontados." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:86 -msgid "Exclude products" -msgstr "Excluir productos" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:87 -msgid "Search for a product…" -msgstr "Buscar un producto..." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:100 -msgid "" -"Products which must not be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are not discounted." -msgstr "" -"Productos que no deben estar en el carrito para usar este cupón o, para el " -"\"Descuento en Producto\" cuyos productos no son descontados." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:107 -msgid "Product categories" -msgstr "Categorías de productos" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:108 -msgid "Any category" -msgstr "Cualquier categoría" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:116 -msgid "" -"A product must be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will be discounted." -msgstr "" -"Un producto debe estar en esta categoría para que el cupón siga siendo " -"válido o para el \"Descuento en Producto\", los productos en esta categoría " -"serán descontados." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:121 -msgid "Exclude categories" -msgstr "Excluir categorías" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:122 -msgid "No categories" -msgstr "Sin categorías" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:130 -msgid "" -"Product must not be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will not be discounted." -msgstr "" -"El producto no debe estar en esta categoría para que el cupón siga siendo " -"válido o para el \"Descuento en Producto\", los productos en esta categoría " -"no serán descontados." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:136 -msgid "Email restrictions" -msgstr "Restricciones de email" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:136 -msgid "No restrictions" -msgstr "Sin restricciones" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:136 -msgid "" -"List of emails to check against the customer's billing email when an order " -"is placed." -msgstr "" -"Lista de correos electrónicos para verificar el correo electrónico de " -"facturación del cliente en el momento de realizar el pedido." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:143 -msgid "Usage limit" -msgstr "Límite de uso" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:143 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:149 -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "Uso ilimitado" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:143 -msgid "How many times this coupon can be used before it is void." -msgstr "Cuántas veces puede ser usado este cupón antes de anularse." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:149 -msgid "Usage limit per user" -msgstr "Límite de uso por usuario" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:149 -msgid "" -"How many times this coupon can be used by an invidual user. Uses billing " -"email for guests, and user ID for logged in users." -msgstr "" -"Cuantas veces este cupón puede ser utilizado por un usuario único. Use " -"correo electrónico de facturación para invitados e ID de usuarios para " -"autenticados." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:155 -msgctxt "placeholder" -msgid "Never expire" -msgstr "Nunca expira" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:155 -msgid "The date this coupon will expire, YYYY-MM-DD." -msgstr "La fecha en que este cupón expirará, AÑO-MES-DÍA" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:186 -msgid "" -"Coupon code already exists - customers will use the latest coupon with this " -"code." -msgstr "" -"Este código de cupón ya existe, los clientes usarán el ultimo cupón con este " -"código." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:35 -msgid "Resend order emails" -msgstr "Reenviar emails del pedido" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:52 -msgid "Generate Download Permissions" -msgstr "Generar Permisos de descarga" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:58 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:91 -msgid "Apply" -msgstr "Aplicar" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:67 -msgid "Move to Trash" -msgstr "Mover a la Papelera" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:72 -msgid "Save Order" -msgstr "Guardar Pedido" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:72 -msgid "Save/update the order" -msgstr "Guardar/actualizar el pedido" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:29 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:76 -msgid "First Name" -msgstr "Nombre" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:33 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:80 -msgid "Last Name" -msgstr "Apellido" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:60 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:107 -msgid "Select a country…" -msgstr "Seleccione un país…" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:70 -msgid "Phone" -msgstr "Teléfono" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:139 -msgid "Order Details" -msgstr "Detalles del Pedido" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:142 -msgid "Order number" -msgstr "Número de pedido" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:145 -msgid "Customer IP:" -msgstr "IP del cliente:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:150 -msgid "General Details" -msgstr "Detalles generales" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:152 -msgid "Order date:" -msgstr "Fecha de la Orden:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:153 -msgid "h" -msgstr "h" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:153 -#: includes/admin/settings/class-wc-settings-products.php:311 -msgid "m" -msgstr "m" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:156 -msgid "Order status:" -msgstr "Estado del pedido:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:167 -msgid "Customer:" -msgstr "Cliente:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:182 -msgid "Billing Details" -msgstr "Detalles de facturación" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:188 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:190 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:267 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:269 -msgid "Address" -msgstr "Dirección" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:190 -msgid "No billing address set." -msgstr "No hay una dirección de facturación establecida." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:208 -msgid "Payment Method" -msgstr "Método de pago" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:213 -msgid "Load billing address" -msgstr "Cargar dirección de facturación" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:230 -msgid "Payment Method:" -msgstr "Forma de pago:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:232 -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:33 -#: includes/admin/post-types/meta-boxes/views/html-order-shipping.php:12 -#: includes/admin/post-types/meta-boxes/views/html-order-tax.php:8 -msgid "N/A" -msgstr "N/D" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:245 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:247 -#: includes/admin/post-types/meta-boxes/views/html-order-shipping.php:30 -#: includes/admin/post-types/meta-boxes/views/html-order-shipping.php:32 -msgid "Other" -msgstr "Otro" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:261 -msgid "Shipping Details" -msgstr "Detalles de envío" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:269 -msgid "No shipping address set." -msgstr "No se ha establecido una dirección de envío." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:282 -msgid "Customer Note" -msgstr "Comentario del Cliente" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:287 -msgid "Load shipping address" -msgstr "Cargar dirección de envío" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:287 -msgid "Copy from billing" -msgstr "Copiar de facturación" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:304 -msgid "Customer Note:" -msgstr "Nota del cliente:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:305 -msgid "Customer's notes about the order" -msgstr "Comentarios del cliente acerca del pedido" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-downloads.php:56 -msgid "Choose a downloadable product…" -msgstr "Elija un producto descargable…" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-downloads.php:85 -msgid "Grant Access" -msgstr "Conceder acceso" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-downloads.php:123 -msgid "" -"Could not grant access - the user may already have permission for this file " -"or billing email is not set. Ensure the billing email is set, and the order " -"has been saved." -msgstr "" -"No se puede conceder acceso - puede que el usuario ya tenga acceso a este " -"archivo o el email de facturación no esté establecido. Asegurese de que el " -"email esté establecido y que el pedido ha sido guardado." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-downloads.php:146 -msgid "Are you sure you want to revoke access to this download?" -msgstr "¿Seguro que desea revocar el acceso a esta descarga?" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:33 -msgid "Item" -msgstr "Artículo" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:38 -msgid "Tax Class" -msgstr "Clase de impuesto" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:41 -msgid "Qty" -msgstr "Cant." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:46 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:118 -#: includes/admin/settings/class-wc-settings-tax.php:25 -#: includes/admin/settings/class-wc-settings-tax.php:548 -#: includes/admin/settings/class-wc-settings-tax.php:636 -msgid "Tax" -msgstr "Impuestos" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:83 -msgid "Delete Lines" -msgstr "Borrar líneas" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:85 -msgid "Stock Actions" -msgstr "Acciones de stock" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:86 -msgid "Reduce Line Stock" -msgstr "Reducir línea de stock" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:87 -msgid "Increase Line Stock" -msgstr "Incrementar línea de stock" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:97 -msgid "Add item(s)" -msgstr "Agregar artículo(s)" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:98 -msgid "Add fee" -msgstr "Añadir gasto" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:44 -msgid "added %s ago" -msgstr "añadido hace %s" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:45 -msgid "by %s" -msgstr "por %s" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:46 -msgid "Delete note" -msgstr "Borrar nota" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:52 -msgid "There are no notes for this order yet." -msgstr "Todavía no hay notas para este pedido." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:58 -msgid "Add note" -msgstr "Añadir nota" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:58 -msgid "" -"Add a note for your reference, or add a customer note (the user will be " -"notified)." -msgstr "" -"Agregar una nota de referencia, o añadir una nota al cliente (se le " -"notificará)." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:64 -msgid "Customer note" -msgstr "Nota del cliente" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:65 -msgid "Private note" -msgstr "Nota privada" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:67 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:563 -msgid "Add" -msgstr "Añadir" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:31 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:62 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:94 -#: includes/admin/settings/class-wc-settings-shipping.php:25 -#: includes/admin/settings/class-wc-settings-tax.php:264 -#: includes/admin/settings/class-wc-settings-tax.php:381 -#: includes/admin/views/html-admin-page-addons.php:13 -msgid "Shipping" -msgstr "Envío" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:66 -msgid "+ Add shipping cost" -msgstr "+ Agregar costo de envío" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:66 -msgid "These are the shipping and handling costs for the order." -msgstr "Estos son los costos de envío y manejo para la orden." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:106 -msgid "+ Add tax row" -msgstr "+ Añadir fila de impuesto" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:106 -msgid "" -"These rows contain taxes for this order. This allows you to display multiple " -"or compound taxes rather than a single total." -msgstr "" -"Estas filas contienen los impuestos para este pedido. Esto le permitirá " -"mostrar impuestos múltiples o compuestos en lugar de un solo total." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:113 -msgid "Order Discount" -msgstr "Descuentos del pedido" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:120 -msgid "Order Total" -msgstr "Total del pedido" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:148 -msgid "Calculate Tax" -msgstr "Calcular impuestos" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:150 -msgid "Calculate Total" -msgstr "Calcular total" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:42 -msgid "Product Type" -msgstr "Tipo de Producto" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:52 -msgid "Virtual products are intangible and aren't shipped." -msgstr "Los productos virtuales son intangibles y no son enviados físicamente." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:59 -msgid "Downloadable products give access to a file upon purchase." -msgstr "" -"Los productos descargables permiten acceder a un archivo despues de realizar " -"la compra." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:84 -#: includes/admin/settings/class-wc-settings-general.php:25 -msgid "General" -msgstr "General" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:89 -#: includes/admin/settings/class-wc-settings-products.php:41 -msgid "Inventory" -msgstr "Inventario" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:99 -msgid "Linked Products" -msgstr "Productos enlazados" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:109 -msgid "Variations" -msgstr "Variaciones" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:114 -msgid "Advanced" -msgstr "Avanzado" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:135 -msgid "Stock Keeping Unit" -msgstr "Código de Referencia" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:135 -msgid "" -"SKU refers to a Stock-keeping unit, a unique identifier for each distinct " -"product and service that can be purchased." -msgstr "" -"El código de referencia es un identificador único para cada uno de los " -"productos o servicios que puede comprarse." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:146 -msgid "Product URL" -msgstr "URL del producto" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:146 -msgid "Enter the external URL to the product." -msgstr "Introduce la URL externa del producto" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:149 -msgid "Button text" -msgstr "Texto del botón" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:149 -msgctxt "placeholder" -msgid "Buy product" -msgstr "Comprar producto" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:149 -msgid "This text will be shown on the button linking to the external product." -msgstr "Este texto se mostrará en el botón que enlaza al producto externo." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:156 -msgid "Regular Price" -msgstr "Precio habitual" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:159 -msgid "Sale Price" -msgstr "Precio rebajado" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:159 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:76 -msgid "Schedule" -msgstr "Programar" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:166 -msgid "Sale Price Dates" -msgstr "Fechas de precio rebajado" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:167 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:84 -msgctxt "placeholder" -msgid "From…" -msgstr "De…" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:168 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:88 -msgctxt "placeholder" -msgid "To…" -msgstr "Para…" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:180 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:143 -msgid "Downloadable Files" -msgstr "Archivos Descargables" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:185 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:147 -msgid "This is the name of the download shown to the customer." -msgstr "Este es el nombre de la descarga mostrada al cliente." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:186 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:148 -msgid "File URL" -msgstr "URL Archivo" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:186 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:148 -msgid "" -"This is the URL or absolute path to the file which customers will get access " -"to." -msgstr "" -"Esta es la URL o ruta absoluta al archivo al que obtendrán acceso los " -"clientes." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:201 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:163 -msgid "Add File" -msgstr "Añadir archivo" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:221 -msgid "Download Limit" -msgstr "Límite de descarga" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:221 -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:19 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:190 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:196 -msgid "Unlimited" -msgstr "Ilimitado" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:221 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:189 -msgid "Leave blank for unlimited re-downloads." -msgstr "Deja en blanco para un número ilimitado de descargas." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:227 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:768 -msgid "Download Expiry" -msgstr "Caducidad de la descarga" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:227 -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:23 -msgid "Never" -msgstr "Nunca" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:227 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:195 -msgid "" -"Enter the number of days before a download link expires, or leave blank." -msgstr "" -"Introduzca el número de días que deben pasar antes que un enlace de descarga " -"expire o déjelo en blanco." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:233 -msgid "Download Type" -msgstr "Descargable" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:233 -msgid "Choose a download type - this controls the schema." -msgstr "" -"Seleccione un tipo de descarga - esto controla el protocolo." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:234 -msgid "Standard Product" -msgstr "Producto Estándar" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:235 -msgid "Application/Software" -msgstr "Aplicación/Software" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:236 -msgid "Music" -msgstr "Música" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:248 -#: includes/admin/views/html-bulk-edit-product.php:58 -#: includes/admin/views/html-quick-edit-product.php:38 -msgid "Tax Status" -msgstr "Estado de impuestos" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:249 -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:34 -#: includes/admin/views/html-bulk-edit-product.php:64 -#: includes/admin/views/html-quick-edit-product.php:43 -msgid "Taxable" -msgstr "Sujeto a impuestos" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:250 -#: includes/admin/views/html-bulk-edit-product.php:65 -#: includes/admin/views/html-quick-edit-product.php:44 -msgid "Shipping only" -msgstr "Sólo al envío" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:251 -#: includes/admin/reports/class-wc-report-sales-by-category.php:167 -#: includes/admin/views/html-bulk-edit-product.php:66 -#: includes/admin/views/html-quick-edit-product.php:45 -msgid "None" -msgstr "Ninguno" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:256 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:729 -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:27 -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:39 -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:123 -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:134 -#: includes/admin/settings/class-wc-settings-tax.php:122 -#: includes/admin/settings/class-wc-settings-tax.php:241 -#: includes/admin/views/html-bulk-edit-product.php:83 -#: includes/admin/views/html-quick-edit-product.php:61 -msgid "Standard" -msgstr "Estándar" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:261 -#: includes/admin/settings/class-wc-settings-tax.php:381 -#: includes/admin/views/html-bulk-edit-product.php:77 -#: includes/admin/views/html-quick-edit-product.php:56 -msgid "Tax Class" -msgstr "Tipo de Impuesto" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:282 -#: includes/admin/views/html-bulk-edit-product.php:207 -#: includes/admin/views/html-quick-edit-product.php:153 -msgid "Manage stock?" -msgstr "¿Gestionar el stock?" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:282 -msgid "" -"Enable stock management at product level (not needed if managing stock at " -"variation level)" -msgstr "" -"Habilitar gestión de stock a nivel de producto (no necesario si se gestiona " -"el stock a nivel de variación)" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:289 -#: includes/admin/views/html-bulk-edit-product.php:226 -#: includes/admin/views/html-bulk-edit-product.php:242 -#: includes/admin/views/html-quick-edit-product.php:157 -msgid "Stock Qty" -msgstr "Cantidad stock" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:289 -msgid "" -"Stock quantity. If this is a variable product this value will be used to " -"control stock for all variations, unless you define stock at variation level." -msgstr "" -"Cantidad de stock. Si es un producto variable este valor será usado para el " -"control de stock sobre todas las variaciones a menos que se defina el stock " -"a nivel de variación." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:300 -#: includes/admin/reports/class-wc-report-stock.php:140 -msgid "Stock status" -msgstr "Estado del stock" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:303 -msgid "" -"Controls whether or not the product is listed as \"in stock\" or \"out of " -"stock\" on the frontend." -msgstr "" -"Controla si el producto es listado como 'disponible' o 'sin stock' en el " -"catálogo." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:310 -msgid "Allow Backorders?" -msgstr "¿Permitir reservas?" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:311 -#: includes/admin/views/html-bulk-edit-product.php:253 -#: includes/admin/views/html-quick-edit-product.php:172 -msgid "Do not allow" -msgstr "No permitir" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:312 -#: includes/admin/views/html-bulk-edit-product.php:254 -#: includes/admin/views/html-quick-edit-product.php:173 -msgid "Allow, but notify customer" -msgstr "Permitir, pero notificar al cliente" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:313 -#: includes/admin/views/html-bulk-edit-product.php:255 -#: includes/admin/views/html-quick-edit-product.php:174 -msgid "Allow" -msgstr "Permitir" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:314 -msgid "" -"If managing stock, this controls whether or not backorders are allowed for " -"this product and variations. If enabled, stock quantity can go below 0." -msgstr "" -"Si se está controlando el stock, esto controla si las si las reservas están " -"permitidas para este producto y sus variaciones. Si está activado la " -"cantidad de stock puede ir bajo 0." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:325 -msgid "Sold Individually" -msgstr "Vendido individualmente" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:325 -msgid "" -"Enable this to only allow one of this item to be bought in a single order" -msgstr "" -"Active esto para restringir la compra de una sola unidad de este producto " -"por pedido." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:343 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:763 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:96 -#: includes/admin/views/html-bulk-edit-product.php:103 -#: includes/admin/views/html-quick-edit-product.php:84 -msgid "Weight" -msgstr "Peso" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:343 -msgid "Weight in decimal form" -msgstr "Peso en formato decimal" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:348 -msgid "Dimensions" -msgstr "Dimensiones" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:350 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:764 -#: includes/admin/views/html-bulk-edit-product.php:143 -#: includes/admin/views/html-quick-edit-product.php:97 -msgid "Length" -msgstr "Largo" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:351 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:765 -#: includes/admin/views/html-bulk-edit-product.php:144 -#: includes/admin/views/html-quick-edit-product.php:98 -msgid "Width" -msgstr "Ancho" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:352 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:766 -#: includes/admin/views/html-bulk-edit-product.php:145 -#: includes/admin/views/html-quick-edit-product.php:99 -msgid "Height" -msgstr "Alto" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:354 -msgid "LxWxH in decimal form" -msgstr "LxANxAL en formato decimal" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:371 -msgid "No shipping class" -msgstr "Sin tipo de envío definido" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:377 -msgid "Shipping class" -msgstr "Tipo de envío" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:377 -msgid "" -"Shipping classes are used by certain shipping methods to group similar " -"products." -msgstr "" -"Los tipos de envío se utilizan en cierta forma para agrupar el envío de " -"productos similares. " - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:389 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:749 -msgid "Close all" -msgstr "Cerrar todos" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:389 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:749 -msgid "Expand all" -msgstr "Expandir todos" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:448 -msgid "Select terms" -msgstr "Seleccionar condiciones" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:462 -msgid "Add new" -msgstr "Añadir nuevo" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:475 -msgid "Pipe (|) separate terms" -msgstr "Separar términos con |" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:565 -msgid "Custom product attribute" -msgstr "Atributos de producto personalizados" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:577 -msgid "Save attributes" -msgstr "Guardar atributos" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:584 -msgid "Up-Sells" -msgstr "Productos-complementarios (Up-Sells)" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:599 -msgid "" -"Up-sells are products which you recommend instead of the currently viewed " -"product, for example, products that are more profitable or better quality or " -"more expensive." -msgstr "" -"Las ventas complementarias son productos que usted recomienda en lugar del " -"producto que se está viendo actualmente, por ejemplo, productos que son más " -"rentables o de mejor calidad o más caros." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:601 -msgid "Cross-Sells" -msgstr "Ventas Cruzadas" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:616 -msgid "" -"Cross-sells are products which you promote in the cart, based on the current " -"product." -msgstr "" -"Las ventas cruzadas son productos que se promueven en el carrito, basados en " -"el contenido actual del carrito." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:626 -msgid "Choose a grouped product…" -msgstr "Elija un producto agrupado…" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:652 -msgid "Grouping" -msgstr "Agrupamiento" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:652 -msgid "Set this option to make this product part of a grouped product." -msgstr "" -"Establezca esta opción para hacer este producto parte de un producto " -"agrupado." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:672 -msgid "Purchase Note" -msgstr "Nota de compra" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:672 -msgid "Enter an optional note to send the customer after purchase." -msgstr "" -"Introducir una nota opcional que será enviada al cliente despues de hacer la " -"compra." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:679 -msgid "Menu order" -msgstr "Orden del menú" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:679 -msgid "Custom ordering position." -msgstr "Posición de orden personalizada. " - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:687 -msgid "Enable reviews" -msgstr "Habilitar calificaciones" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:740 -msgid "" -"Before adding variations, add and save some attributes on the " -"Attributes tab." -msgstr "" -"Antes de añadir variaciones, añada y guarde algunos atributos en la pestaña " -"de Atributos." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:742 -msgid "Learn more" -msgstr "Conozca más" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:750 -msgid "Bulk edit:" -msgstr "Edición masiva:" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:752 -msgid "Toggle "Enabled"" -msgstr "Conmutar "Activado"" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:753 -msgid "Toggle "Downloadable"" -msgstr "Conmutar "Descargable"" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:754 -msgid "Toggle "Virtual"" -msgstr "Conmutar "Virtual"" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:755 -msgid "Delete all variations" -msgstr "Eliminar todas las variaciones" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:756 -msgid "Prices" -msgstr "Precios" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:757 -msgid "Prices increase by (fixed amount or %)" -msgstr "Incrementar precio en (cantidad fija o %):" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:758 -msgid "Prices decrease by (fixed amount or %)" -msgstr "Reducir precio en (cantidad fija o %):" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:759 -msgid "Sale prices" -msgstr "Precios rebajados" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:760 -msgid "Sale prices increase by (fixed amount or %)" -msgstr "Incrementar precio de oferta en (cantidad fija o %):" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:761 -msgid "Sale prices decrease by (fixed amount or %)" -msgstr "Reducir precio de oferta en (cantidad fija o %):" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:767 -msgid "Download limit" -msgstr "Límite de descarga" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:771 -#: includes/admin/views/html-report-by-date.php:31 -msgid "Go" -msgstr "Ir" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:868 -msgid "Add Variation" -msgstr "Añadir Variación" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:870 -msgid "Link all variations" -msgstr "Enlazar todas las variaciones" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:872 -msgid "Default selections:" -msgstr "Selecciones por defecto:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:885 -#: includes/admin/settings/class-wc-settings-shipping.php:214 -msgid "No default" -msgstr "Sin valor predeterminado" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:989 -msgid "Product SKU must be unique." -msgstr "La referencia del producto debe ser única." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:1357 -msgid "Variation #%s of %s" -msgstr "Variación #%s de %s" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:44 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:104 -msgid "Delete image" -msgstr "Borrar imagen" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:55 -msgid "Add product gallery images" -msgstr "Añadir imágenes de galería de producto" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:81 -msgid "Add Images to Product Gallery" -msgstr "Añadir imágenes a la galería del producto" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:83 -msgid "Add to gallery" -msgstr "Añadir a la galería" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:6 -msgid "Revoke Access" -msgstr "Revocar acceso" - -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:9 -msgid "File %d: %s" -msgstr "Archivo %d: %s" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:9 -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "Descargado %s vez" -msgstr[1] "Descargado %s veces" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:16 -msgid "Downloads Remaining" -msgstr "Descargas restantes" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:22 -msgid "Access Expires" -msgstr "El acceso expira" - -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:12 -msgid "Fee" -msgstr "Cargo extra" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:16 -msgid "Fee Name" -msgstr "Nombre de cargo" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:31 -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:127 -msgid "Tax class" -msgstr "Clase de impuesto" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:10 -msgid "Product ID:" -msgstr "ID de producto:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:13 -msgid "Variation ID:" -msgstr "ID de variación:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:16 -msgid "Product SKU:" -msgstr "Referencia de producto:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:74 -msgid "Add meta" -msgstr "Añadir meta" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:169 -msgid "Subtotal" -msgstr "Subtotal" - -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:169 -msgid "Before pre-tax discounts." -msgstr "Antes de descuentos antes de impuestos" - -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:171 -msgid "After pre-tax discounts." -msgstr "Después de descuentos antes de impuestos" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-shipping.php:6 -msgid "Label" -msgstr "Etiqueta" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-shipping.php:11 -msgid "Shipping Method" -msgstr "Método de envío" - -#: includes/admin/post-types/meta-boxes/views/html-order-shipping.php:39 -msgid "0.00" -msgstr "0,00" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-tax.php:7 -msgid "Tax Rate" -msgstr "Tasa de impuesto" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-tax.php:17 -msgid "Sales Tax" -msgstr "Impuestos sobre la venta" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-tax.php:21 -msgid "Shipping Tax" -msgstr "Impuestos de envío" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-product-download.php:3 -#: includes/admin/post-types/meta-boxes/views/html-product-variation-download.php:2 -msgid "File Name" -msgstr "Nombre de archivo" - -#: includes/admin/post-types/meta-boxes/views/html-product-download.php:4 -#: includes/admin/post-types/meta-boxes/views/html-product-variation-download.php:3 -msgid "http://" -msgstr "http://" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-product-download.php:5 -#: includes/admin/post-types/meta-boxes/views/html-product-variation-download.php:4 -msgid "Choose file" -msgstr "Elegir archivo" - -#: includes/admin/post-types/meta-boxes/views/html-product-download.php:5 -#: includes/admin/post-types/meta-boxes/views/html-product-variation-download.php:4 -msgid "Insert file URL" -msgstr "Introducir URL de archivo" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:20 -msgid "Any" -msgstr "Cualquiera" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:52 -msgid "" -"Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "" -"Introduce una referencia para esta variación o déjalo en blanco para usar la " -"referencia del producto superior." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:63 -msgid "Stock Qty:" -msgstr "Cantidad Stock:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:63 -msgid "" -"Enter a quantity to enable stock management at variation level, or leave " -"blank to use the parent product's options." -msgstr "" -"Introduzca una cantidad para habilitar el manejo de stock a nivel de " -"variación o dejelo en blanco para usar las opciones del producto superior." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:72 -msgid "Regular Price:" -msgstr "Precio normal:" - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:73 -msgid "Variation price (required)" -msgstr "Precio de variación (requerido)" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:76 -msgid "Sale Price:" -msgstr "Precio rebajado:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:76 -msgid "Cancel schedule" -msgstr "Cancelar programación" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:83 -msgid "Sale start date:" -msgstr "Fecha de comienzo de rebaja:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:87 -msgid "Sale end date:" -msgstr "Fecha de fin de rebaja:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:96 -msgid "" -"Enter a weight for this variation or leave blank to use the parent product " -"weight." -msgstr "" -"Introduce el peso de esta variación o déjalo en blanco para usar el peso del " -"producto superior." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:104 -msgid "Dimensions (L×W×H)" -msgstr "Dimensiones (L×AN×AL)" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:115 -msgid "Shipping class:" -msgstr "Clase de envío:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:119 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:132 -msgid "Same as parent" -msgstr "Igual que el superior" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:130 -msgid "Tax class:" -msgstr "Tipo de impuesto:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:189 -msgid "Download Limit:" -msgstr "Límite de descarga:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:195 -msgid "Download Expiry:" -msgstr "Descarga expira:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:209 -#: includes/admin/settings/class-wc-settings-checkout.php:260 -#: includes/admin/settings/class-wc-settings-shipping.php:235 -msgid "Enabled" -msgstr "Activado" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:211 -msgid "" -"Enable this option if access is given to a downloadable file upon purchase " -"of a product" -msgstr "" -"Habilite esta opción si se da acceso a un archivo descargable una vez " -"realizada la compra" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:213 -msgid "" -"Enable this option if a product is not shipped or there is no shipping cost" -msgstr "" -"Habilite esta opción si el producto no se envía o no existe coste de envío" - -#: includes/admin/reports/class-wc-admin-report.php:389 -msgid "Sold %s worth in the last %d days" -msgstr "Vendidos %s en los últimos %d días" - -#: includes/admin/reports/class-wc-admin-report.php:391 -msgid "Sold 1 item in the last %d days" -msgid_plural "Sold %d items in the last %d days" -msgstr[0] "Vendido 1 artículo en los últimos %d días" -msgstr[1] "Vendidos %d artículos en los últimos %d días" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:69 -msgid "%s discounts in total" -msgstr "%s descuentos en total" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:75 -msgid "%s coupons used in total" -msgstr "%s cupones usados en total" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-coupon-usage.php:90 -#: includes/admin/reports/class-wc-report-customers.php:138 -#: includes/admin/reports/class-wc-report-sales-by-category.php:65 -#: includes/admin/reports/class-wc-report-sales-by-date.php:122 -#: includes/admin/reports/class-wc-report-sales-by-product.php:107 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:41 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:41 -msgid "Year" -msgstr "Año" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-coupon-usage.php:91 -#: includes/admin/reports/class-wc-report-customers.php:139 -#: includes/admin/reports/class-wc-report-sales-by-category.php:66 -#: includes/admin/reports/class-wc-report-sales-by-date.php:123 -#: includes/admin/reports/class-wc-report-sales-by-product.php:108 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:42 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:42 -msgid "Last Month" -msgstr "Último mes" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-coupon-usage.php:92 -#: includes/admin/reports/class-wc-report-customers.php:140 -#: includes/admin/reports/class-wc-report-sales-by-category.php:67 -#: includes/admin/reports/class-wc-report-sales-by-date.php:124 -#: includes/admin/reports/class-wc-report-sales-by-product.php:109 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:43 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:43 -msgid "This Month" -msgstr "Este mes" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-coupon-usage.php:93 -#: includes/admin/reports/class-wc-report-customers.php:141 -#: includes/admin/reports/class-wc-report-sales-by-category.php:68 -#: includes/admin/reports/class-wc-report-sales-by-date.php:125 -#: includes/admin/reports/class-wc-report-sales-by-product.php:110 -msgid "Last 7 Days" -msgstr "Últimos 7 días" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-coupon-usage.php:133 -msgid "Filter by coupon" -msgstr "Filtrar por cupón" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-coupon-usage.php:137 -msgid "Choose coupons…" -msgstr "Seleccione cupones…" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-coupon-usage.php:161 -msgid "All coupons" -msgstr "Todos los cupones" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-coupon-usage.php:166 -msgid "No used coupons found" -msgstr "No se encontraron cupones usados" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-coupon-usage.php:169 -#: includes/admin/reports/class-wc-report-sales-by-category.php:169 -#: includes/admin/reports/class-wc-report-sales-by-product.php:178 -msgid "Show" -msgstr "Ver" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:184 -msgid "Most Popular" -msgstr "Más popular" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-coupon-usage.php:226 -#: includes/admin/reports/class-wc-report-coupon-usage.php:273 -msgid "No coupons found in range" -msgstr "Ningún cupón encontrado en rango" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-coupon-usage.php:231 -msgid "Most Discount" -msgstr "Más descuento" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-coupon-usage.php:316 -#: includes/admin/reports/class-wc-report-customers.php:202 -#: includes/admin/reports/class-wc-report-sales-by-category.php:213 -#: includes/admin/reports/class-wc-report-sales-by-date.php:162 -#: includes/admin/reports/class-wc-report-sales-by-product.php:326 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:29 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:29 -#: includes/admin/settings/class-wc-settings-tax.php:287 -msgid "Export CSV" -msgstr "Exportar a CSV" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-coupon-usage.php:407 -msgid "Number of coupons used" -msgstr "Número de cupones usados" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-coupon-usage.php:415 -msgid "Discount amount" -msgstr "Monto de descuento" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-customer-list.php:22 -msgid "Customer" -msgstr "Cliente" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-customer-list.php:32 -msgid "No customers found." -msgstr "Ningún cliente encontrado." - -#: includes/admin/reports/class-wc-report-customer-list.php:46 -msgid "%s previous order linked" -msgid_plural "%s previous orders linked" -msgstr[0] "%s orden anterior relacionada" -msgstr[1] "%s ordenes anteriores relacionadas" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-customer-list.php:51 -msgid "Search customers" -msgstr "Buscar clientes" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-customer-list.php:187 -msgid "View orders" -msgstr "Ver pedidos" - -#: includes/admin/reports/class-wc-report-customer-list.php:211 -msgid "Link previous orders" -msgstr "Orden anterior relacionada" - -#: includes/admin/reports/class-wc-report-customer-list.php:237 -msgid "Name (Last, First)" -msgstr "Nombre (y Apellido)" - -#: includes/admin/reports/class-wc-report-customer-list.php:238 -msgid "Username" -msgstr "Nombre de usuario" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-customer-list.php:240 -msgid "Location" -msgstr "Ubicación" - -#: includes/admin/reports/class-wc-report-customer-list.php:242 -msgid "Spent" -msgstr "Gastado" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-customer-list.php:243 -msgid "Last order" -msgstr "Último pedido" - -#: includes/admin/reports/class-wc-report-customers.php:15 -msgid "%s signups in this period" -msgstr "%s registros en el periodo" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-customers.php:83 -msgid "Customer Sales" -msgstr "Ventas de clientes" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-customers.php:84 -msgid "Guest Sales" -msgstr "Ventas Anónimas" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-customers.php:93 -#: includes/admin/reports/class-wc-report-customers.php:289 -msgid "Customer Orders" -msgstr "Pedidos de clientes" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-customers.php:98 -#: includes/admin/reports/class-wc-report-customers.php:299 -msgid "Guest Orders" -msgstr "Pedidos anónimos" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-customers.php:117 -msgid "orders" -msgstr "pedidos" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-customers.php:295 -msgid "customer orders" -msgstr "pedidos de clientes" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-customers.php:305 -msgid "guest orders" -msgstr "pedidos anónimos" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-customers.php:309 -msgid "Signups" -msgstr "Registros" - -#: includes/admin/reports/class-wc-report-customers.php:316 -msgid "new users" -msgstr "Nuevos usuarios" - -#: includes/admin/reports/class-wc-report-low-in-stock.php:19 -msgid "No low in stock products found." -msgstr "No se encontraron productos con bajas existencias." - -#: includes/admin/reports/class-wc-report-out-of-stock.php:19 -msgid "No out of stock products found." -msgstr "No se encontraron productos sin existencias." - -#: includes/admin/reports/class-wc-report-sales-by-category.php:47 -msgid "%s sales in %s" -msgstr "%s ventas en %s" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-sales-by-category.php:168 -msgid "All" -msgstr "Todos" - -#: includes/admin/reports/class-wc-report-sales-by-category.php:228 -msgid "← Choose a category to view stats" -msgstr "← Seleccione una categoría para ver estadísticas" - -#: includes/admin/reports/class-wc-report-sales-by-date.php:74 -msgid "%s average daily sales" -msgstr "%s venta diaria promedio" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-sales-by-date.php:77 -msgid "%s average monthly sales" -msgstr "%s promedio de ventas mensual" - -#: includes/admin/reports/class-wc-report-sales-by-date.php:82 -msgid "%s sales in this period" -msgstr "%s ventas en el periodo" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-sales-by-date.php:92 -msgid "%s orders placed" -msgstr "%s pedidos realizados" - -#: includes/admin/reports/class-wc-report-sales-by-date.php:97 -msgid "%s items purchased" -msgstr "%s artículos comprados" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-sales-by-date.php:102 -msgid "%s charged for shipping" -msgstr "%s cobrado para envío" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-sales-by-date.php:107 -msgid "%s worth of coupons used" -msgstr "%s valor de cupones utilizados" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-sales-by-date.php:294 -#: includes/admin/reports/class-wc-report-sales-by-product.php:440 -msgid "Number of items sold" -msgstr "Número de artículos vendidos" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-sales-by-date.php:302 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:120 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:109 -msgid "Number of orders" -msgstr "Número de ventas" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-sales-by-date.php:310 -msgid "Average sales amount" -msgstr "Monto promedio de ventas" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-sales-by-date.php:330 -msgid "Shipping amount" -msgstr "Monto de envío" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-sales-by-date.php:340 -#: includes/admin/reports/class-wc-report-sales-by-product.php:448 -msgid "Sales amount" -msgstr "Importe de las ventas" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-sales-by-product.php:87 -msgid "%s sales for the selected items" -msgstr "%s ventas para el artículo seleccionado" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-sales-by-product.php:92 -msgid "%s purchases for the selected items" -msgstr "%s compras para el artículo seleccionado" - -#: includes/admin/reports/class-wc-report-sales-by-product.php:138 -msgid "Showing reports for:" -msgstr "Mostrando reportes para:" - -#: includes/admin/reports/class-wc-report-sales-by-product.php:164 -msgid "Reset" -msgstr "Reiniciar" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-sales-by-product.php:173 -msgid "Product Search" -msgstr "Búsqueda de producto" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-sales-by-product.php:210 -msgid "Top Sellers" -msgstr "Mejores Vendedores" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-sales-by-product.php:245 -#: includes/admin/reports/class-wc-report-sales-by-product.php:285 -msgid "No products found in range" -msgstr "No se encontraron productos en el rango" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-sales-by-product.php:250 -msgid "Top Earners" -msgstr "Más rentables" - -#: includes/admin/reports/class-wc-report-sales-by-product.php:341 -msgid "← Choose a product to view stats" -msgstr "← Seleccione un producto para ver estadísticas" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-stock.php:30 -msgid "No products found." -msgstr "No se encontraron productos." - -#: includes/admin/reports/class-wc-report-stock.php:138 -msgid "Parent" -msgstr "Padre" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-stock.php:139 -msgid "Units in stock" -msgstr "Unidades en stock" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-taxes-by-code.php:119 -msgid "Rate" -msgstr "Impuesto" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-taxes-by-code.php:121 -msgid "Tax Amount" -msgstr "Cantidad de impuestos" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-taxes-by-code.php:121 -msgid "This is the sum of the \"Tax Rows\" tax amount within your orders." -msgstr "Esta es la suma de la 'Fila de Impuestos' de todas sus órdenes." - -# @ woocommerce -#: includes/admin/reports/class-wc-report-taxes-by-code.php:122 -msgid "Shipping Tax Amount" -msgstr "Impuestos de envío" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-taxes-by-code.php:122 -msgid "" -"This is the sum of the \"Tax Rows\" shipping tax amount within your orders." -msgstr "Esta es la suma del campo 'Impuestos de envío' de los pedidos." - -# @ woocommerce -#: includes/admin/reports/class-wc-report-taxes-by-code.php:123 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:112 -msgid "Total Tax" -msgstr "Impuestos totales" - -#: includes/admin/reports/class-wc-report-taxes-by-code.php:123 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:112 -msgid "This is the total tax for the rate (shipping tax + product tax)." -msgstr "" -"Este es el total del impuesto de la tasa (impuesto sobre el envío + " -"impuestos del producto)." - -#: includes/admin/reports/class-wc-report-taxes-by-code.php:155 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:156 -msgid "No taxes found in this period" -msgstr "No se encontraron impuestos en el periodo" - -#: includes/admin/reports/class-wc-report-taxes-by-date.php:108 -msgid "Period" -msgstr "Periodo" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-taxes-by-date.php:110 -msgid "Total Sales" -msgstr "Ventas Totales" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-taxes-by-date.php:110 -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "Esta es la suma del campo 'Total del Pedido' de todos sus pedidos." - -# @ woocommerce -#: includes/admin/reports/class-wc-report-taxes-by-date.php:111 -msgid "Total Shipping" -msgstr "Total de Gastos de envío" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-taxes-by-date.php:111 -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "" -"Esta es la suma del campo 'Total de Gastos de envío' de todos los pedidos." - -# @ woocommerce -#: includes/admin/reports/class-wc-report-taxes-by-date.php:113 -msgid "Net profit" -msgstr "Ganancia neta" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-taxes-by-date.php:113 -msgid "Total sales minus shipping and tax." -msgstr "Total de ventas menos gastos de envío e impuestos." - -# @ woocommerce -#: includes/admin/reports/class-wc-report-taxes-by-date.php:122 -msgid "Totals" -msgstr "Totales" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-accounts.php:25 -msgid "Accounts" -msgstr "Cuentas" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-accounts.php:41 -msgid "Account Pages" -msgstr "Página de Mi Cuenta" - -#: includes/admin/settings/class-wc-settings-accounts.php:41 -msgid "" -"These pages need to be set so that WooCommerce knows where to send users to " -"access account related functionality." -msgstr "" -"Estas páginas deben definirse de manera que WooCommerce sepa a dónde enviar " -"a los usuarios que acceder a la funcionalidad de la cuenta relacionada." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-accounts.php:44 -msgid "My Account Page" -msgstr "Página de Mi Cuenta" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-accounts.php:45 -msgid "Page contents: [woocommerce_my_account]" -msgstr "Contenido de la página: [woocommerce_my_account]" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-accounts.php:56 -msgid "My Account Endpoints" -msgstr "Endpoints de Mi Cuenta" - -#: includes/admin/settings/class-wc-settings-accounts.php:56 -msgid "" -"Endpoints are appended to your page URLs to handle specific actions on the " -"accounts pages. They should be unique." -msgstr "" -"Los Endpoints se agregarán a la URL de la página para manejar las acciones " -"específicas en las páginas de las cuentas. Deben ser únicas." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-accounts.php:59 -msgid "View Order" -msgstr "Ver pedido" - -#: includes/admin/settings/class-wc-settings-accounts.php:60 -msgid "Endpoint for the My Account → View Order page" -msgstr "Endpoint para Mi cuenta → Ver Página del Pedido" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-accounts.php:68 -msgid "Edit Account" -msgstr "Editar cuenta" - -#: includes/admin/settings/class-wc-settings-accounts.php:69 -msgid "Endpoint for the My Account → Edit Account page" -msgstr "Endpoint para Mi cuenta → Página de edición de Cuenta" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-accounts.php:77 -msgid "Edit Address" -msgstr "Editar dirección" - -#: includes/admin/settings/class-wc-settings-accounts.php:78 -msgid "Endpoint for the My Account → Edit Address page" -msgstr "Endpoint para Mi cuenta → Página de edición de dirección" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-accounts.php:86 -msgid "Lost Password" -msgstr "¿Olvidó su contraseña?" - -#: includes/admin/settings/class-wc-settings-accounts.php:87 -msgid "Endpoint for the My Account → Lost Password page" -msgstr "Endpoint para Mi cuenta → Página de edición Recuperar Contraseña" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-accounts.php:95 -msgid "Logout" -msgstr "Cerrar sesión" - -#: includes/admin/settings/class-wc-settings-accounts.php:96 -msgid "" -"Endpoint for the triggering logout. You can add this to your menus via a " -"custom link: yoursite.com/?customer-logout=true" -msgstr "" -"Endpoint para cerrar sesión. Puede agregar esto a sus menús via Enlace " -"Personalizado: yoursite.com/?customer-logout=true" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-accounts.php:105 -msgid "Registration Options" -msgstr "Opciones de registro" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-accounts.php:108 -msgid "Enable Registration" -msgstr "Habilitar Registro" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-accounts.php:109 -msgid "Enable registration on the \"Checkout\" page" -msgstr "Permitir que los usuarios se registren al finalizar la compra." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-accounts.php:118 -msgid "Enable registration on the \"My Account\" page" -msgstr "Permitir que los usuarios se registren desde \"Mi cuenta\"" - -#: includes/admin/settings/class-wc-settings-accounts.php:127 -msgid "Account Creation" -msgstr "Crear Cuenta" - -#: includes/admin/settings/class-wc-settings-accounts.php:128 -msgid "Automatically generate username from customer email" -msgstr "" -"Generar automáticamente nombre de usuario para correo electrónico del cliente" - -#: includes/admin/settings/class-wc-settings-accounts.php:137 -msgid "Automatically generate customer password" -msgstr "Generar automáticamente la contraseña del cliente" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:25 -#: includes/admin/settings/class-wc-settings-checkout.php:78 -#: includes/admin/views/html-admin-page-status-report.php:291 -msgid "Checkout" -msgstr "Finalizar compra" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:41 -msgid "Checkout Options" -msgstr "Opciones de Pago" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:65 -msgid "Checkout Process" -msgstr "Proceso de Pago" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:68 -msgid "Coupons" -msgstr "Cupones" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:69 -msgid "Enable the use of coupons" -msgstr "Habilitar el uso de cupones" - -#: includes/admin/settings/class-wc-settings-checkout.php:73 -msgid "Coupons can be applied from the cart and checkout pages." -msgstr "" -"Los cupones pueden aplicarse desde las páginas del carrito y finalizar " -"compra." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:79 -msgid "Enable guest checkout" -msgstr "Habilitar compras sin registro" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:80 -msgid "Allows customers to checkout without creating an account." -msgstr "Permitir a los clientes comprar sin crearse una cuenta." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:89 -msgid "Force secure checkout" -msgstr "Forzar pago seguro" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:95 -msgid "" -"Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -msgstr "" -"Forzar SSL (HTTPS) en las páginas de pago (es necesario tener un Certificado " -"SSL)." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:99 -msgid "Un-force HTTPS when leaving the checkout" -msgstr "Abandonar HTTPS cuando se salga del área de pagos" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:109 -msgid "Checkout Pages" -msgstr "Página de Pago" - -#: includes/admin/settings/class-wc-settings-checkout.php:109 -msgid "" -"These pages need to be set so that WooCommerce knows where to send users to " -"checkout." -msgstr "" -"Estas páginas deben definirse de manera que WooCommerce sepa a dónde enviar " -"a los usuarios para terminar la compra." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:112 -msgid "Cart Page" -msgstr "Página Carrito" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:113 -msgid "Page contents: [woocommerce_cart]" -msgstr "Contenido de la página: [woocommerce_cart]" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:123 -msgid "Checkout Page" -msgstr "Página Pedido" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:124 -msgid "Page contents: [woocommerce_checkout]" -msgstr "Contenido de la página: [woocommerce_checkout]" - -#: includes/admin/settings/class-wc-settings-checkout.php:134 -msgid "Terms and Conditions" -msgstr "Términos y condiciones" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:135 -msgid "" -"If you define a \"Terms\" page the customer will be asked if they accept " -"them when checking out." -msgstr "" -"Si se define una página de \"Condiciones\" se le preguntará al cliente si " -"las acepta al momento de pagar." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:147 -msgid "Checkout Endpoints" -msgstr "Endpoints de Pago" - -#: includes/admin/settings/class-wc-settings-checkout.php:147 -msgid "" -"Endpoints are appended to your page URLs to handle specific actions during " -"the checkout process. They should be unique." -msgstr "" -"Los Endpoints se agregarán a la URL de la página para manejar las acciones " -"durante el proceso de finalizar la compra. Deben ser únicas." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:150 -msgid "Pay" -msgstr "Pagar" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:151 -#: includes/admin/settings/class-wc-settings-checkout.php:160 -msgid "Endpoint for the Checkout → Pay page" -msgstr "Endpoint para el Pago → Página de Pago" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:169 -msgid "Payment Gateways" -msgstr "Pasarelas de Pago" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:169 -msgid "" -"Installed gateways are listed below. Drag and drop gateways to control their " -"display order on the frontend." -msgstr "" -"Todas las pasarelas de pago aparecen a continuación. Arrastre y suelte la " -"pasarela de pago para controlar el orden en el que se mostrarán en el " -"frontend." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:210 -msgid "Gateway Display" -msgstr "Ver pasarela" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:218 -msgid "Gateway" -msgstr "Pasarela" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:219 -msgid "Gateway ID" -msgstr "ID de la pasarela" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:25 -msgid "Emails" -msgstr "Emails" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:40 -msgid "Email Options" -msgstr "Opciones de email" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:66 -msgid "Email Sender Options" -msgstr "Opciones de email del remitente." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:66 -msgid "" -"The following options affect the sender (email address and name) used in " -"WooCommerce emails." -msgstr "" -"Las siguientes opciones afectan al remitente (dirección de email y nombre) " -"usado en los emails de WooCommerce." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:69 -msgid "\"From\" Name" -msgstr "\"De\" nombre" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:79 -msgid "\"From\" Email Address" -msgstr "\"De\" Dirección de email" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:93 -msgid "Email Template" -msgstr "Plantilla de email" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:93 -msgid "" -"This section lets you customise the WooCommerce emails. Click here to preview your email template. For more " -"advanced control copy woocommerce/templates/emails/ to " -"yourtheme/woocommerce/emails/." -msgstr "" -"Esta sección le permite personalizar los emails the WooCommerce. Clic aquí para una vista previa de la plantilla de " -"correo. Para un control más avanzado copie woocommerce/templates/" -"emails/ a nombre_de_su_tema/woocommerce/emails/." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:96 -msgid "Header Image" -msgstr "Imagen de cabecera" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:97 -msgid "" -"Enter a URL to an image you want to show in the email's header. Upload your " -"image using the media uploader." -msgstr "" -"Introduzca una URL a la imagen que desea mostrar en el encabezado del correo " -"electrónico. Suba la imagen con la galería de medios." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:106 -msgid "Email Footer Text" -msgstr "Texto del pie del email" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:107 -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "" -"Texto que aparecerá en el pie de los correos electrónicos de WooCommerce." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:111 -msgid "Powered by WooCommerce" -msgstr "Powered by WooCommerce" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:116 -msgid "Base Colour" -msgstr "Color Base" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:117 -msgid "" -"The base colour for WooCommerce email templates. Default #557da1." -msgstr "" -"Color base de las plantillas de correo electrónico WooCommerce. Por defecto " -"#557da1." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:126 -msgid "Background Colour" -msgstr "Color de fondo" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:127 -msgid "" -"The background colour for WooCommerce email templates. Default " -"#f5f5f5." -msgstr "" -"El color de fondo de las plantillas de correo electrónico WooCommerce. Por " -"defecto #f5f5f5." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:136 -msgid "Email Body Background Colour" -msgstr "Color de fondo del cuerpo del email" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:137 -msgid "The main body background colour. Default #fdfdfd." -msgstr "" -"Color de fondo del cuerpo principal . Por defecto #fdfdfd." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:146 -msgid "Email Body Text Colour" -msgstr "Color del texto del cuerpo del email" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:147 -msgid "The main body text colour. Default #505050." -msgstr "" -"Color del texto del cuerpo del email. Por defecto #505050." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:48 -msgid "General Options" -msgstr "Opciones generales" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:51 -msgid "Base Location" -msgstr "Ubicación principal" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:52 -msgid "" -"This is the base location for your business. Tax rates will be based on this " -"country." -msgstr "" -"Este es el país de base para tu negocio. Los impuestos se basarán en este " -"país." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:61 -msgid "Selling Location(s)" -msgstr "Lugar(es) de venta" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:62 -msgid "This option lets you limit which countries you are willing to sell to." -msgstr "Esta opción permite limitar a que países está dispuesto a vender." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:70 -msgid "Sell to all countries" -msgstr "Vender a todos los países" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:71 -msgid "Sell to specific countries only" -msgstr "Vender a Países específicos" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:76 -#: includes/admin/settings/class-wc-settings-shipping.php:147 -msgid "Specific Countries" -msgstr "Países específicos" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:85 -msgid "Store Notice" -msgstr "Notificación de la tienda" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:86 -msgid "Enable site-wide store notice text" -msgstr "Activar una notificación visible en toda la tienda" - -#: includes/admin/settings/class-wc-settings-general.php:93 -msgid "Store Notice Text" -msgstr "Texto de la notificación" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:96 -msgid "" -"This is a demo store for testing purposes — no orders shall be " -"fulfilled." -msgstr "" -"Esta es una tienda de demostración para propósitos de prueba — NINGÚN " -"pedido será procesado." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:104 -msgid "Currency Options" -msgstr "Opciones de Moneda" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:104 -msgid "The following options affect how prices are displayed on the frontend." -msgstr "" -"Las siguientes opciones afectan cómo se mostrarán los precios en el frontend." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:107 -msgid "Currency" -msgstr "Moneda" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:108 -msgid "" -"This controls what currency prices are listed at in the catalog and which " -"currency gateways will take payments in." -msgstr "" -"Esto controla en qué moneda se listan los precios en el catálogo y en qué " -"moneda se realizarán los pagos a traves de las pasarelas." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:119 -msgid "Currency Position" -msgstr "Posición de Moneda" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:120 -msgid "This controls the position of the currency symbol." -msgstr "Esto controla la posición del símbolo de moneda." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:127 -msgid "Left" -msgstr "Izquierda" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:128 -msgid "Right" -msgstr "Derecha" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:129 -msgid "Left with space" -msgstr "Izquierda con espacio" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:130 -msgid "Right with space" -msgstr "Derecha con espacio" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:136 -msgid "Thousand Separator" -msgstr "Separador de miles" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:137 -msgid "This sets the thousand separator of displayed prices." -msgstr "Esto establece el separador de miles de los precios mostrados." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:146 -msgid "Decimal Separator" -msgstr "Separador decimal" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:147 -msgid "This sets the decimal separator of displayed prices." -msgstr "Esto establece el separador decimal de los precios mostrados" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:156 -msgid "Number of Decimals" -msgstr "Número de decimales" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:157 -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "" -"Esto establece el número de decimales visibles en los precios mostrados." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:171 -msgid "Styles and Scripts" -msgstr "Estilos y Scripts" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:176 -msgid "Scripts" -msgstr "Scripts" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:177 -msgid "Enable Lightbox" -msgstr "Habilitar Lightbox" - -#: includes/admin/settings/class-wc-settings-general.php:180 -msgid "" -"Include WooCommerce's lightbox. Product gallery images and the add review " -"form will open in a lightbox." -msgstr "" -"Utilizar lightbox incluido en WooCommerce. Las galerias de producto y los " -"formularios para la calificación se abrirán en un lightbox." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:186 -msgid "Enable enhanced country select boxes" -msgstr "Habilitar seleccionador de país mejorado" - -#: includes/admin/settings/class-wc-settings-general.php:191 -msgid "This will enable a script allowing the country fields to be searchable." -msgstr "" -"Esto habilitará un script que permite la búsqueda en el desplegable para " -"seleccionar el país." - -#: includes/admin/settings/class-wc-settings-general.php:209 -msgid "Frontend Styles" -msgstr "Estilo del Frontend" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:229 -msgid "Primary" -msgstr "Primario" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:229 -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "" -"Botones de \"Llamamiento a la acción\"/Selector de precio con deslizador/" -"Interfaz de navegación por capas" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:230 -msgid "Secondary" -msgstr "Secundario" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:230 -msgid "Buttons and tabs" -msgstr "Botones y pestañas" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:231 -msgid "Highlight" -msgstr "Resalte" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:231 -msgid "Price labels and Sale Flashes" -msgstr "Etiquetas de precio y Etiquetas de rebajado" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:232 -msgid "Content" -msgstr "Contenido" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:232 -msgid "Your themes page background - used for tab active states" -msgstr "" -"Color de fondo de tu tema. Usado para el estado activo de las pestañas." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:233 -msgid "Subtext" -msgstr "Subtexto" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:233 -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "" -"Usado para ciertos textos y apuntes - migas de pan, texto reducido, etc." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:236 -msgid "" -"To edit colours woocommerce/assets/css/woocommerce-base.less " -"and woocommerce.css need to be writable. See the Codex for more " -"information." -msgstr "" -"Para editar los colores es necesario que el archivo woocommerce/assets/" -"css/woocommerce-base.less tenga permisos de escritura. Vea los Codex para " -"más información." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-integrations.php:25 -msgid "Integration" -msgstr "Integración" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:40 -msgid "Product Options" -msgstr "Opciones de Producto" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:79 -msgid "Inventory Options" -msgstr "Opciones de Stock" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:82 -msgid "Manage Stock" -msgstr "Gestionar stock" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:83 -msgid "Enable stock management" -msgstr "Activar la gestión de stock" - -#: includes/admin/settings/class-wc-settings-products.php:90 -msgid "Hold Stock (minutes)" -msgstr "Congelar stock (minutos)" - -#: includes/admin/settings/class-wc-settings-products.php:91 -msgid "" -"Hold stock (for unpaid orders) for x minutes. When this limit is reached, " -"the pending order will be cancelled. Leave blank to disable." -msgstr "" -"Congelar stock (para pedidos pendientes de pago) por x minutos. Cuando este " -"límite es alcanzado, el pedido pendiente será cancelado. Dejar en blanco " -"para desactivarlo." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:104 -msgid "Notifications" -msgstr "Notificaciones" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:105 -msgid "Enable low stock notifications" -msgstr "Activar las notificaciones de stock bajo" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:114 -msgid "Enable out of stock notifications" -msgstr "Habilitar las notificaciones de stock agotado" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:123 -msgid "Notification Recipient" -msgstr "Destinatario de notificaciones" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:132 -msgid "Low Stock Threshold" -msgstr "Umbral de stock bajo" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:146 -msgid "Out Of Stock Threshold" -msgstr "Umbral de stock agotado" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:160 -msgid "Out Of Stock Visibility" -msgstr "Visibilidad de stock agotado" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:161 -msgid "Hide out of stock items from the catalog" -msgstr "Ocultar del catálogo los artículos agotados" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:168 -msgid "Stock Display Format" -msgstr "Formato de visualización de stock" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:169 -msgid "This controls how stock is displayed on the frontend." -msgstr "Esto controla cómo se muestra el stock en el frontend." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:175 -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "Siempre mostrar stock. Ejemplo: \"12 en stock\"" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:176 -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "" -"Solamente mostrar stock cuando es bajo. Ejemplo: \"Solamente quedan 2 en " -"stock\" o \"En Stock\"" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:177 -msgid "Never show stock amount" -msgstr "Nunca mostrar la cantidad que hay en stock" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:196 -msgid "" -"Note: The shop page has children - child pages will not work if you enable " -"this option." -msgstr "" -"Nota: la página de tienda tiene subpáginas - las subpáginas no funcionarán " -"si habilita está opción." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:200 -msgid "Product Listings" -msgstr "Opciones de Listado" - -#: includes/admin/settings/class-wc-settings-products.php:203 -msgid "Product Archive / Shop Page" -msgstr "Página de Producto y Tienda" - -#: includes/admin/settings/class-wc-settings-products.php:204 -msgid "" -"The base page can also be used in your product permalinks." -msgstr "" -"La base de páginas puede ser usado además en los enlaces " -"permanentes de productos." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:210 -msgid "" -"This sets the base page of your shop - this is where your product archive " -"will be." -msgstr "" -"Esto establece la página base para su tienda - aquí se encontrará el archivo " -"de productos." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:214 -msgid "Shop Page Display" -msgstr "Mostrar Página de Tienda" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:215 -msgid "This controls what is shown on the product archive." -msgstr "Esto controla cómo se muestra en la página del producto." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:222 -#: includes/admin/settings/class-wc-settings-products.php:238 -msgid "Show products" -msgstr "Mostrar productos" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:223 -#: includes/admin/settings/class-wc-settings-products.php:239 -msgid "Show subcategories" -msgstr "Mostrar subcategorías" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:224 -#: includes/admin/settings/class-wc-settings-products.php:240 -msgid "Show both" -msgstr "Mostrar ambos" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:230 -msgid "Default Category Display" -msgstr "Categoría a mostrar por defecto" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:231 -msgid "This controls what is shown on category archives." -msgstr "Esto controla que se muestra en los listados por categoría." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:246 -msgid "Default Product Sorting" -msgstr "Orden de productos por defecto" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:247 -msgid "This controls the default sort order of the catalog." -msgstr "Esto controla el orden predeterminado del catálogo." - -#: includes/admin/settings/class-wc-settings-products.php:254 -msgid "Default sorting (custom ordering + name)" -msgstr "Ordenación por defecto (orden personalizado + nombre)" - -#: includes/admin/settings/class-wc-settings-products.php:255 -msgid "Popularity (sales)" -msgstr "Popularidad (ventas)" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:256 -msgid "Average Rating" -msgstr "Calificación media" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:257 -msgid "Sort by most recent" -msgstr "Ordenar por el más reciente" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:258 -msgid "Sort by price (asc)" -msgstr "Ordenar por precio (asc)" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:259 -msgid "Sort by price (desc)" -msgstr "Ordenar por precio (desc)" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:265 -msgid "Add to cart" -msgstr "Añadir al carrito" - -#: includes/admin/settings/class-wc-settings-products.php:266 -msgid "Redirect to the cart page after successful addition" -msgstr "Redireccionar al carrito tras añadir un producto correctamente." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:274 -msgid "Enable AJAX add to cart buttons on archives" -msgstr "" -"Habilitar AJAX en los botones de añadir al carrito en los listados de " -"producto" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:286 -msgid "Weight Unit" -msgstr "Unidad de Peso" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:287 -msgid "This controls what unit you will define weights in." -msgstr "Esto controla en que unidad van a definirse los pesos." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:294 -msgid "kg" -msgstr "Kg" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:295 -msgid "g" -msgstr "gr" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:296 -msgid "lbs" -msgstr "lbs" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:297 -msgid "oz" -msgstr "oz" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:303 -msgid "Dimensions Unit" -msgstr "Unidades de Medida" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:304 -msgid "This controls what unit you will define lengths in." -msgstr "Esto controla que unidades van a definir las longitudes" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:312 -msgid "cm" -msgstr "cm" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:313 -msgid "mm" -msgstr "mm" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:314 -msgid "in" -msgstr "in" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:315 -msgid "yd" -msgstr "Yd" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:321 -msgid "Product Ratings" -msgstr "Calificaciones de producto" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:322 -msgid "Enable ratings on reviews" -msgstr "Habilitar calificaciones en la pestaña de opiniones" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:332 -msgid "Ratings are required to leave a review" -msgstr "Calificar es obligatorio para dejar un comentario sobre producto" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:342 -msgid "Show \"verified owner\" label for customer reviews" -msgstr "" -"Mostrar etiqueta \"Comprador verificado\" para las calificaciones de clientes" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:353 -msgid "Product Image Sizes" -msgstr "Tamaño de Imágenes de productos" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:353 -msgid "" -"These settings affect the actual dimensions of images in your catalog - the " -"display on the front-end will still be affected by CSS styles. After " -"changing these settings you may need to regenerate your " -"thumbnails." -msgstr "" -"Estas preferencias afectan los tamaños de las imágenes en el catálogo - la " -"forma en que se muestra en la parte pública seguirá viéndose afectada por " -"los estilos CSS. Tras cambiar estas preferencias podría necesitar volver a generar las miniaturas." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:356 -msgid "Catalog Images" -msgstr "Imágenes de Catálogo" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:357 -msgid "This size is usually used in product listings" -msgstr "Este tamaño es utilizado generalmente en los listados de productos" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:370 -msgid "Single Product Image" -msgstr "Imagen del Producto" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:371 -msgid "This is the size used by the main image on the product page." -msgstr "" -"Este es el tamaño utilizado en la imagen principal de la página del producto." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:384 -msgid "Product Thumbnails" -msgstr "Vistas en Miniatura del Producto" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:385 -msgid "" -"This size is usually used for the gallery of images on the product page." -msgstr "" -"Este tamaño se utiliza generalmente para la galería de imágenes en la página " -"del producto." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:399 -msgid "Downloadable Products" -msgstr "Productos descargables" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:402 -msgid "File Download Method" -msgstr "Método de descarga de archivo" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:403 -msgid "" -"Forcing downloads will keep URLs hidden, but some servers may serve large " -"files unreliably. If supported, X-Accel-Redirect/ X-" -"Sendfile can be used to serve downloads instead (server requires " -"mod_xsendfile)." -msgstr "" -"Forzar las descargas mantendrá las URLs ocultas, pero algunos servidores " -"podrían brindar la descarga de archivos grandes de forma poco fiable. Si " -"está soportado, puede usar X-Accel-Redirect/ X-Sendfile para servir las descargas (el servidor requiere mod_xsendfile)." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:411 -msgid "Force Downloads" -msgstr "Forzar descargas" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:412 -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "X-Accel-Redirect/X-Sendfile" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:413 -msgid "Redirect only" -msgstr "Solo redireccionar" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:419 -msgid "Access Restriction" -msgstr "Restricciones de Acceso" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:420 -msgid "Downloads require login" -msgstr "Las descargas requieren inicio de sesión" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:424 -msgid "This setting does not apply to guest purchases." -msgstr "Esta configuración no aplica para las compras de invitados." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:430 -msgid "Grant access to downloadable products after payment" -msgstr "Permitir acceso a productos descargables tras el pago" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:434 -msgid "" -"Enable this option to grant access to downloads when orders are \"processing" -"\", rather than \"completed\"." -msgstr "" -"Active esta opción para permitir el acceso a las descargas cuando el estado " -"de pedido sea \"procesando\", en vez de \"completado\"." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-shipping.php:41 -#: includes/admin/settings/class-wc-settings-shipping.php:67 -msgid "Shipping Options" -msgstr "Opciones de Envío" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-shipping.php:70 -msgid "Shipping Calculations" -msgstr "Cálculos de envío" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-shipping.php:71 -msgid "Enable shipping" -msgstr "Habilitar envío" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-shipping.php:79 -msgid "Enable the shipping calculator on the cart page" -msgstr "Habilitar la calculadora de envío en la página del carrito" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-shipping.php:88 -msgid "Hide shipping costs until an address is entered" -msgstr "Ocultar los gastos de envío hasta que se introduzca la dirección" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-shipping.php:97 -msgid "Shipping Display Mode" -msgstr "Modo para Mostrar Envíos" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-shipping.php:98 -msgid "" -"This controls how multiple shipping methods are displayed on the frontend." -msgstr "" -"Esto controla cómo los múltiples métodos de envío son mostrados en el " -"frontend." - -#: includes/admin/settings/class-wc-settings-shipping.php:103 -msgid "Display shipping methods with \"radio\" buttons" -msgstr "Mostrar métodos de envío con botones redondos" - -#: includes/admin/settings/class-wc-settings-shipping.php:104 -msgid "Display shipping methods in a dropdown" -msgstr "Mostrar métodos de envío en menú desplegable" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-shipping.php:111 -msgid "Shipping Destination" -msgstr "Destino del envío" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-shipping.php:112 -msgid "Ship to billing address by default" -msgstr "Enviar a la dirección de facturación por defecto" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-shipping.php:122 -msgid "Only ship to the users billing address" -msgstr "Sólo enviar a la dirección de facturación" - -#: includes/admin/settings/class-wc-settings-shipping.php:132 -msgid "Restrict shipping to Location(s)" -msgstr "Restringir envió a ubicación(es)" - -#: includes/admin/settings/class-wc-settings-shipping.php:133 -msgid "" -"Choose which countries you want to ship to, or choose to ship to all locations you sell to." -msgstr "" -"Seleccione a que países quiere enviar, o selecciones enviar a todas los lugares que vende." - -#: includes/admin/settings/class-wc-settings-shipping.php:140 -msgid "Ship to all countries you sell to" -msgstr "Enviar a todos los países donde vende" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-shipping.php:141 -msgid "Ship to all countries" -msgstr "Enviar a todos los países" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-shipping.php:142 -msgid "Ship to specific countries only" -msgstr "Envíar a países específicos" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-shipping.php:197 -msgid "Shipping Methods" -msgstr "Métodos de Envío" - -#: includes/admin/settings/class-wc-settings-shipping.php:204 -msgid "ID" -msgstr "ID" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-shipping.php:215 -msgid "" -"Drag and drop the above shipping methods to control their display order." -msgstr "" -"Arrastre y suelte los métodos para cambiar el orden en que se muestran." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:40 -#: includes/admin/settings/class-wc-settings-tax.php:68 -msgid "Tax Options" -msgstr "Opciones de Impuestos" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:41 -msgid "Standard Rates" -msgstr "Tarifas Estándar" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:49 -msgid "%s Rates" -msgstr "%s Tarifas" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:71 -msgid "Enable Taxes" -msgstr "Habilitar impuestos" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:72 -msgid "Enable taxes and tax calculations" -msgstr "Activar los impuestos y los cálculos de impuestos" - -#: includes/admin/settings/class-wc-settings-tax.php:79 -msgid "Prices Entered With Tax" -msgstr "Precios introducidos incluyendo impuestos" - -#: includes/admin/settings/class-wc-settings-tax.php:83 -msgid "" -"This option is important as it will affect how you input prices. Changing it " -"will not update existing products." -msgstr "" -"Esta opción es importante ya que afectará como introduce los precios. " -"Cambiarla no actualizará los productos existentes." - -#: includes/admin/settings/class-wc-settings-tax.php:85 -msgid "Yes, I will enter prices inclusive of tax" -msgstr "Si, voy a introducir los precios con impuestos incluidos." - -#: includes/admin/settings/class-wc-settings-tax.php:86 -msgid "No, I will enter prices exclusive of tax" -msgstr "No, voy a introducir los precios con impuestos NO incluidos" - -#: includes/admin/settings/class-wc-settings-tax.php:91 -msgid "Calculate Tax Based On:" -msgstr "Calcular impuestos basados en:" - -#: includes/admin/settings/class-wc-settings-tax.php:93 -msgid "This option determines which address is used to calculate tax." -msgstr "" -"Esta opción determina que dirección se utilizará para calcular los impuestos." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:97 -msgid "Customer shipping address" -msgstr "Dirección de envío del cliente" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:98 -msgid "Customer billing address" -msgstr "Dirección de facturación del cliente" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:99 -#: includes/admin/settings/class-wc-settings-tax.php:111 -msgid "Shop base address" -msgstr "Dirección base de la tienda" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:104 -msgid "Default Customer Address:" -msgstr "Dirección de cliente por defecto:" - -#: includes/admin/settings/class-wc-settings-tax.php:106 -msgid "" -"This option determines the customers default address (before they input " -"their own)." -msgstr "" -"Esta opción determina la dirección por defecto del cliente (antes de que " -"pongan la suya)." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:110 -msgid "No address" -msgstr "Sin dirección" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:116 -msgid "Shipping Tax Class:" -msgstr "Tipo de impuesto para el envío:" - -#: includes/admin/settings/class-wc-settings-tax.php:117 -msgid "" -"Optionally control which tax class shipping gets, or leave it so shipping " -"tax is based on the cart items themselves." -msgstr "" -"Opcionalmente elija que tipo de de impuesto se aplicará al envío o deje que " -"sea el impuesto definido para el pedido el que determine el impuesto " -"aplicable al envío." - -#: includes/admin/settings/class-wc-settings-tax.php:122 -msgid "Shipping tax class based on cart items" -msgstr "Tipo de impuesto para el envío basado en el contenido del carrito." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:127 -msgid "Rounding" -msgstr "Redondeo" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:128 -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "" -"Redondear impuesto en el nivel de subtotal, en vez de hacerlo en cada línea" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:135 -msgid "Additional Tax Classes" -msgstr "Clases adicionales de impuestos" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:136 -msgid "" -"List additonal tax classes below (1 per line). This is in addition to the " -"default Standard Rate. Tax classes can be assigned to products." -msgstr "" -"Liste clases de impuesto adicionales abajo (1 por linea). Esto es aparte del " -"que se use por omisión Tarifa Estándar. Los tipos de impuesto " -"pueden ser asignados por producto." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:140 -msgid "Reduced Rate%sZero Rate" -msgstr "Tasa reducida%s" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:144 -msgid "Display prices in the shop:" -msgstr "Mostrar precios en la tienda:" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:149 -#: includes/admin/settings/class-wc-settings-tax.php:168 -msgid "Including tax" -msgstr "Impuestos incluidos" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:150 -#: includes/admin/settings/class-wc-settings-tax.php:169 -msgid "Excluding tax" -msgstr "Impuestos no incluidos" - -#: includes/admin/settings/class-wc-settings-tax.php:155 -msgid "Price display suffix:" -msgstr "Prefijo de precio a mostrar:" - -#: includes/admin/settings/class-wc-settings-tax.php:159 -msgid "" -"Define text to show after your product prices. This could be, for example, " -"\"inc. Vat\" to explain your pricing. You can also have prices substituted " -"here using one of the following: {price_including_tax}, " -"{price_excluding_tax}." -msgstr "" -"Define el texto a mostrar después del precio de los productos. Este puede " -"ser, por ejemplo, \"inc. imp.\" para explicar tus precios. También puede " -"tener precios sustituidos usando uso de los siguientes: " -"{price_including_tax}, {price_excluding_tax}." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:163 -msgid "Display prices during cart/checkout:" -msgstr "Mostrar precios durante carrito/finalizar compra:" - -#: includes/admin/settings/class-wc-settings-tax.php:175 -msgid "Display tax totals:" -msgstr "Muestra impuestos totales:" - -#: includes/admin/settings/class-wc-settings-tax.php:180 -msgid "As a single total" -msgstr "Como un total simple" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:181 -msgid "Itemized" -msgstr "Detallado" - -#: includes/admin/settings/class-wc-settings-tax.php:241 -msgid "Tax Rates for the \"%s\" Class" -msgstr "Tipo de impuestos para \"%s\"" - -#: includes/admin/settings/class-wc-settings-tax.php:242 -msgid "" -"Define tax rates for countries and states below. See here " -"for available alpha-2 country codes." -msgstr "" -"Defina los impuestos para otros paises y estados abajo. Ver " -"aquí códigos de país alpha-2" - -#: includes/admin/settings/class-wc-settings-tax.php:248 -msgid "Country Code" -msgstr "Código de país" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:248 -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "" -"Un código de país de 2 digitos, ejemplo: US. Dejelo en blanco para afectar a " -"todos." - -#: includes/admin/settings/class-wc-settings-tax.php:250 -msgid "State Code" -msgstr "Código de estado" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:250 -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "" -"Un código de estado de 2 digitos, ejemplo: AL. Dejelo en blanco para afectar " -"a todos." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:252 -#: includes/admin/settings/class-wc-settings-tax.php:381 -msgid "ZIP/Postcode" -msgstr "Código postal" - -#: includes/admin/settings/class-wc-settings-tax.php:252 -msgid "" -"Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all areas. Wildcards (*) can be used. Ranges for numeric " -"postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "" -"Código postal para esta regla. Separe los diferentes valores con punto y " -"coma (;). Dejelo en blanco para afectar a todos. Se pueden usar comodines " -"(*). Rangos numericos (ej. 1234-5678) se autoexpanden en códigos postales " -"individuales." - -#: includes/admin/settings/class-wc-settings-tax.php:254 -msgid "" -"Cities for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all cities." -msgstr "" -"Ciudades para esta regla. Separe los diferentes valores con punto y coma " -"(;). Dejelo en blanco para afectar a todas." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:256 -msgid "Rate %" -msgstr "Tarifa" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:256 -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "Introduzca un porcentaje de 4 decimales." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:258 -msgid "Tax Name" -msgstr "Nombre impuesto" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:258 -msgid "Enter a name for this tax rate." -msgstr "Introduzca un nombre para este tipo de impuesto." - -#: includes/admin/settings/class-wc-settings-tax.php:260 -#: includes/admin/settings/class-wc-settings-tax.php:381 -msgid "Priority" -msgstr "Prioridad" - -#: includes/admin/settings/class-wc-settings-tax.php:260 -msgid "" -"Choose a priority for this tax rate. Only 1 matching rate per priority will " -"be used. To define multiple tax rates for a single area you need to specify " -"a different priority per rate." -msgstr "" -"Seleccione una prioridad para este tipo de impuesto. Solo se utilizará una " -"coincidencia por prioridad. Para definir multiples tipos de impuesto para un " -"solo area necesitará especificar las prioridades." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:262 -#: includes/admin/settings/class-wc-settings-tax.php:381 -msgid "Compound" -msgstr "Compuesto" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:262 -msgid "" -"Choose whether or not this is a compound rate. Compound tax rates are " -"applied on top of other tax rates." -msgstr "" -"Seleccione si esta es o no una tasa compuesta. Los tipos de impuesto " -"compuestos son aplicadas por encima del resto de tasas impositivas." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:264 -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "Elija si esta tasa de impuesto también se aplica al envío o no." - -#: includes/admin/settings/class-wc-settings-tax.php:271 -msgid "Insert row" -msgstr "Insertar fila" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:272 -msgid "Remove selected row(s)" -msgstr "Borrar la(s) fila(s) seleccionada(s)" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:288 -msgid "Import CSV" -msgstr "Importar CSV" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:374 -msgid "No row(s) selected" -msgstr "No se ha(n) seleccionado fila(s)" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:381 -msgid "Country Code" -msgstr "Código de país" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:381 -msgid "State Code" -msgstr "Código del estado" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:381 -msgid "Rate %" -msgstr "Calificar" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:381 -msgid "Tax Name" -msgstr "Nombre tarifa" - -#: includes/admin/views/html-admin-page-addons.php:5 -msgid "Browse all extensions" -msgstr "Extensiones oficiales" - -#: includes/admin/views/html-admin-page-addons.php:6 -msgid "Browse themes" -msgstr "Temas oficiales" - -#: includes/admin/views/html-admin-page-addons.php:11 -msgid "Popular" -msgstr "Popular" - -# @ woocommerce -#: includes/admin/views/html-admin-page-addons.php:12 -msgid "Gateways" -msgstr "Pasarelas" - -#: includes/admin/views/html-admin-page-addons.php:14 -msgid "Import/export" -msgstr "Importar/Exportar" - -# @ woocommerce -#: includes/admin/views/html-admin-page-addons.php:16 -msgid "Marketing" -msgstr "Mercadeo" - -#: includes/admin/views/html-admin-page-addons.php:17 -msgid "Free" -msgstr "Gratis" - -#: includes/admin/views/html-admin-page-status-report.php:3 -msgid "Please include this information when requesting support:" -msgstr "Por favor incluya está información cuando solicite soporte:" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:4 -msgid "Download System Report File" -msgstr "Descargadar archivo de informe de sistema" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:12 -msgid "Environment" -msgstr "Entorno" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:18 -msgid "Home URL" -msgstr "URL de la página principal" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:22 -msgid "Site URL" -msgstr "URL del Sitio" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:26 -msgid "WC Version" -msgstr "Versión de WC" - -#: includes/admin/views/html-admin-page-status-report.php:30 -msgid "WC Database Version" -msgstr "Versión de base de datos de WC" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:34 -msgid "WP Version" -msgstr "Versión de WP" - -#: includes/admin/views/html-admin-page-status-report.php:38 -msgid "WP Multisite Enabled" -msgstr "WP Mutisite Habilitado" - -#: includes/admin/views/html-admin-page-status-report.php:42 -msgid "Web Server Info" -msgstr "Información del servidor web" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:46 -msgid "PHP Version" -msgstr "Version de PHP" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:50 -msgid "MySQL Version" -msgstr "Versión de MySQL" - -#: includes/admin/views/html-admin-page-status-report.php:54 -msgid "PHP Locale" -msgstr "Configuración Regional PHP" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:63 -msgid "WP Memory Limit" -msgstr "WP Límite de Memoria" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:68 -msgid "" -"%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "" -"%s - Recomendamos una memoria mínima de 64MB. Ver: para " -"aumentar la memoria dedicada a PHP" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:75 -msgid "WP Debug Mode" -msgstr "WP Debug Mode" - -#: includes/admin/views/html-admin-page-status-report.php:79 -msgid "WP Language" -msgstr "Idioma WP" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:83 -msgid "WP Max Upload Size" -msgstr "WP Max Upload Size" - -#: includes/admin/views/html-admin-page-status-report.php:88 -msgid "PHP Post Max Size" -msgstr "PHP Post Max Size" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:92 -msgid "PHP Time Limit" -msgstr "PHP Time Limit" - -#: includes/admin/views/html-admin-page-status-report.php:96 -msgid "PHP Max Input Vars" -msgstr "PHP max_input_vars" - -#: includes/admin/views/html-admin-page-status-report.php:100 -msgid "SUHOSIN Installed" -msgstr "SUHOSIN Instalado" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:105 -msgid "WC Logging" -msgstr "WC Logging" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:108 -msgid "Log directory is writable." -msgstr "El directorio de logs tiene permisos de escritura." - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:110 -msgid "" -"Log directory (woocommerce/logs/) is not writable. Logging will " -"not be possible." -msgstr "" -"El directorio de logs (woocommerce/logs/) no tiene permisos de " -"escritura. No podremos loguear información allí." - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:114 -msgid "Default Timezone" -msgstr "Zona horaria por omisión" - -#: includes/admin/views/html-admin-page-status-report.php:118 -msgid "Default timezone is %s - it should be UTC" -msgstr "Zona horaria por omisión es %s - debería ser UTC" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:120 -msgid "Default timezone is %s" -msgstr "Zona horaria por omisión es %s" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:128 -msgid "fsockopen/cURL" -msgstr "fsockopen/cURL" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:131 -msgid "Your server has fsockopen and cURL enabled." -msgstr "Su servidor tiene fsockopen y cURL habilitado." - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:133 -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "Su servidor tiene fsckopen habilitado y cURL deshabilitado." - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:135 -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "Su servidor tiene cURL habilitado y fsockopen deshabilitado." - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:139 -msgid "" -"Your server does not have fsockopen or cURL enabled - PayPal IPN and other " -"scripts which communicate with other servers will not work. Contact your " -"hosting provider." -msgstr "" -"Su servidor no tiene fsockopen ni cURL habilitado - PayPal IPN y otros " -"scripts que se comunican con otros servidores no funcionarán. Contacte con " -"su proveedor de alojamiento web." - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:144 -msgid "SOAP Client" -msgstr "Cliente SOAP" - -#: includes/admin/views/html-admin-page-status-report.php:146 -msgid "Your server has the SOAP Client class enabled." -msgstr "Su servidor tiene la clase de cliente SOAP habilitado." - -#: includes/admin/views/html-admin-page-status-report.php:149 -msgid "" -"Your server does not have the SOAP Client class enabled - " -"some gateway plugins which use SOAP may not work as expected." -msgstr "" -"Su servidor no tiene la clase de cliente SOAP habilitada " -"- algunas pasarelas de pago que utilizan SOAP pueden verse afectadas." - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:154 -msgid "WP Remote Post" -msgstr "WP Remote Post" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:165 -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "wp_remote_post() fue correcto - PayPal IPN están funcionando." - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:168 -msgid "" -"wp_remote_post() failed. PayPal IPN won't work with your server. Contact " -"your hosting provider. Error:" -msgstr "" -"wp_remote_post() falló. PayPal IPN no funcionarán con su servidor. Contacte " -"su proveedor web. Error:" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:171 -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "" -"wp_remote_post() falló. PayPal IPN puede que no funcionen con su servidor." - -#: includes/admin/views/html-admin-page-status-report.php:194 -msgid "Plugins" -msgstr "Plugins" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:200 -msgid "Installed Plugins" -msgstr "Complementos instalados" - -#: includes/admin/views/html-admin-page-status-report.php:220 -msgid "Visit plugin homepage" -msgstr "Visitar sitio web del plugin" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:244 -#: includes/admin/views/html-admin-page-status-report.php:426 -msgid "is available" -msgstr "está disponible" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:247 -msgid "by" -msgstr "por" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:247 -msgid "version" -msgstr "versión" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:269 -msgid "Force SSL" -msgstr "Forzar SSL" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:276 -msgid "WC Pages" -msgstr "Páginas de WC" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:283 -msgid "Shop Base" -msgstr "Tienda Base" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:287 -msgid "Cart" -msgstr "Carro" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:295 -msgid "My Account" -msgstr "Mi cuenta" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:315 -msgid "Page not set" -msgstr "Página no establecida" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:325 -msgid "Page does not exist" -msgstr "La página no existe" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:330 -msgid "Page does not contain the shortcode: %s" -msgstr "La página no contiene el shortcode: %s" - -#: includes/admin/views/html-admin-page-status-report.php:349 -msgid "WC Taxonomies" -msgstr "Taxonomías WC" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:355 -msgid "Order Statuses" -msgstr "Estados de pedido" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:365 -msgid "Product Types" -msgstr "Tipos de producto" - -#: includes/admin/views/html-admin-page-status-report.php:378 -msgid "Theme" -msgstr "Tema" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:415 -msgid "Theme Name" -msgstr "Nombre del tema" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:421 -msgid "Theme Version" -msgstr "Versión del tema" - -#: includes/admin/views/html-admin-page-status-report.php:430 -msgid "Author URL" -msgstr "URL del autor" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:439 -msgid "Templates" -msgstr "Plantillas" - -#: includes/admin/views/html-admin-page-status-report.php:445 -msgid "Template Overrides" -msgstr "Anulación de plantillas" - -#: includes/admin/views/html-admin-page-status-report.php:473 -msgid "No overrides present in theme." -msgstr "No hay sustituciones presentes en el tema." - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-tools.php:4 -#: includes/admin/views/html-admin-page-status.php:6 -msgid "Tools" -msgstr "Herramientas" - -# @ woocommerce -#: includes/admin/views/html-admin-settings.php:20 -msgid "Save changes" -msgstr "Guardar cambios" - -# @ woocommerce -#: includes/admin/views/html-bulk-edit-product.php:15 -#: includes/admin/views/html-bulk-edit-product.php:39 -#: includes/admin/views/html-bulk-edit-product.php:63 -#: includes/admin/views/html-bulk-edit-product.php:82 -#: includes/admin/views/html-bulk-edit-product.php:108 -#: includes/admin/views/html-bulk-edit-product.php:132 -#: includes/admin/views/html-bulk-edit-product.php:156 -#: includes/admin/views/html-bulk-edit-product.php:175 -#: includes/admin/views/html-bulk-edit-product.php:193 -#: includes/admin/views/html-bulk-edit-product.php:212 -#: includes/admin/views/html-bulk-edit-product.php:231 -#: includes/admin/views/html-bulk-edit-product.php:252 -msgid "— No Change —" -msgstr "— Sin cambio —" - -# @ woocommerce -#: includes/admin/views/html-bulk-edit-product.php:16 -#: includes/admin/views/html-bulk-edit-product.php:40 -#: includes/admin/views/html-bulk-edit-product.php:109 -#: includes/admin/views/html-bulk-edit-product.php:133 -#: includes/admin/views/html-bulk-edit-product.php:232 -msgid "Change to:" -msgstr "Cambiar a:" - -#: includes/admin/views/html-bulk-edit-product.php:17 -#: includes/admin/views/html-bulk-edit-product.php:41 -msgid "Increase by (fixed amount or %):" -msgstr "Incrementar en (cantidad fija o %):" - -#: includes/admin/views/html-bulk-edit-product.php:18 -#: includes/admin/views/html-bulk-edit-product.php:42 -msgid "Decrease by (fixed amount or %):" -msgstr "Reducir en (cantidad fija o %):" - -# @ woocommerce -#: includes/admin/views/html-bulk-edit-product.php:28 -#: includes/admin/views/html-bulk-edit-product.php:53 -msgid "Enter price" -msgstr "Introducir precio" - -# @ woocommerce -#: includes/admin/views/html-bulk-edit-product.php:34 -#: includes/admin/views/html-quick-edit-product.php:29 -msgid "Sale" -msgstr "Oferta" - -#: includes/admin/views/html-bulk-edit-product.php:43 -msgid "Decrease regular price by (fixed amount or %):" -msgstr "Reducir precio normal en (cantidad fija o %):" - -# @ woocommerce -#: includes/admin/views/html-bulk-edit-product.php:127 -#: includes/admin/views/html-quick-edit-product.php:95 -msgid "L/W/H" -msgstr "L/AN/AL" - -# @ woocommerce -#: includes/admin/views/html-bulk-edit-product.php:151 -#: includes/admin/views/html-quick-edit-product.php:109 -msgid "Visibility" -msgstr "Visibilidad" - -# @ woocommerce -#: includes/admin/views/html-bulk-edit-product.php:157 -#: includes/admin/views/html-quick-edit-product.php:114 -msgid "Catalog & search" -msgstr "Búsqueda & catálogo" - -# @ woocommerce -#: includes/admin/views/html-bulk-edit-product.php:188 -#: includes/admin/views/html-quick-edit-product.php:132 -msgid "In stock?" -msgstr "¿En stock?" - -# @ woocommerce -#: includes/admin/views/html-bulk-edit-product.php:247 -#: includes/admin/views/html-quick-edit-product.php:167 -msgid "Backorders?" -msgstr "¿Permitir reservas?" - -# @ woocommerce -#: includes/admin/views/html-email-template-preview.php:1 -msgid "" -"Thank you, we are now processing your order. Your order's details are below." -msgstr "" -"Gracias, ahora estamos procesando tu pedido. Los detalles de tu pedido son " -"los siguientes." - -# @ woocommerce -#: includes/admin/views/html-email-template-preview.php:3 -msgid "Order:" -msgstr "Pedido:" - -# @ woocommerce -#: includes/admin/views/html-email-template-preview.php:9 -msgid "Quantity" -msgstr "Cantidad" - -# @ woocommerce -#: includes/admin/views/html-email-template-preview.php:22 -msgid "Order total:" -msgstr "Total del pedido:" - -# @ woocommerce -#: includes/admin/views/html-email-template-preview.php:28 -msgid "Customer details" -msgstr "Datos del cliente" - -# @ woocommerce -#: includes/admin/views/html-email-template-preview.php:33 -msgid "Billing address" -msgstr "Dirección de facturación" - -# @ woocommerce -#: includes/admin/views/html-email-template-preview.php:40 -msgid "Shipping address" -msgstr "Dirección de envío" - -# @ woocommerce -#: includes/admin/views/html-notice-install.php:6 -msgid "" -"Welcome to WooCommerce – You're almost ready to start " -"selling :)" -msgstr "" -"Bienvenido a WooCommerce – Ya está casi listo para " -"empezar a vender :)" - -# @ woocommerce -#: includes/admin/views/html-notice-install.php:7 -msgid "Install WooCommerce Pages" -msgstr "Instalar páginas de WooCommerce" - -# @ woocommerce -#: includes/admin/views/html-notice-install.php:7 -msgid "Skip setup" -msgstr "Saltar la instalación" - -#: includes/admin/views/html-notice-theme-support.php:6 -msgid "" -"Your theme does not declare WooCommerce support – if " -"you encounter layout issues please read our integration guide or choose a " -"WooCommerce theme :)" -msgstr "" -"Su tema no declara soporte para WooCommerce, – si " -"encuentra fallos en la presentación por favor lea nuestra guía de " -"integración eliga un tema compatible con WooCommerce :)" - -# @ woocommerce -#: includes/admin/views/html-notice-theme-support.php:7 -msgid "Theme Integration Guide" -msgstr "Guía de Integración para Temas" - -# @ woocommerce -#: includes/admin/views/html-notice-theme-support.php:7 -msgid "Hide this notice" -msgstr "Ocultar este aviso" - -#: includes/admin/views/html-notice-update.php:6 -msgid "" -"WooCommerce Data Update Required – We just need to " -"update your install to the latest version" -msgstr "" -"Se requiere actualizar los datos de WooCommerce – " -"Solo necesitamos actualizar a la ultima versión" - -# @ woocommerce -#: includes/admin/views/html-notice-update.php:7 -msgid "Run the updater" -msgstr "Ejecutar programa de actualización" - -#: includes/admin/views/html-notice-update.php:12 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Es muy recomendable realizar una copia de seguridad de su base de datos " -"antes de proceder. ¿Está seguro de que desea ejecutar la actualización ahora " -"mismo?" - -# @ woocommerce -#: includes/admin/views/html-quick-edit-product.php:24 -msgid "Regular price" -msgstr "Precio normal" - -# @ woocommerce -#: includes/admin/views/html-quick-edit-product.php:31 -msgid "Sale price" -msgstr "Precio rebajado" - -# @ woocommerce -#: includes/admin/views/html-report-by-date.php:16 -msgid "Custom:" -msgstr "Personalizado:" - -# @ woocommerce -#: includes/admin/wc-admin-functions.php:197 -msgid "Could not compile woocommerce.less:" -msgstr "No se pudo compilar woocommerce.less:" - -#. Plugin URI of the plugin/theme -msgid "http://www.woothemes.com/woocommerce/" -msgstr "http://www.woothemes.com/woocommerce/" - -#. Description of the plugin/theme -msgid "An e-commerce toolkit that helps you sell anything. Beautifully." -msgstr "" -"Una herramienta de e-commerce que te ayudará a vender cualquier cosa. " -"Realmente bello." - -#. Author of the plugin/theme -msgid "WooThemes" -msgstr "WooThemes" - -#. Author URI of the plugin/theme -msgid "http://woothemes.com" -msgstr "http://woothemes.com" - -#~ msgid "File paths (one per line)" -#~ msgstr "Ruta de archivos (una por línea)" - -# @ woocommerce -#~ msgid "File paths/URLs, one per line" -#~ msgstr "Ruta del archivo/URL, una por linea" - -# @ woocommerce -#~ msgid "File Path" -#~ msgstr "Ruta del archivo" - -# @ woocommerce -#~ msgid "File paths:" -#~ msgstr "Rutas de archivo:" - -# @ woocommerce -#~ msgid "" -#~ "Enter one or more File Paths, one per line, to make this variation a " -#~ "downloadable product, or leave blank." -#~ msgstr "" -#~ "Introduce una o más rutas de archivo, una por linea, para convertir esta " -#~ "variación en un producto descargable, o déjalo en blanco." - -# @ woocommerce -#~ msgid "Upload" -#~ msgstr "Subir" - -# @ woocommerce -#~ msgid "Method ID" -#~ msgstr "ID del método" - -# @ woocommerce -#~ msgctxt "slug" -#~ msgid "product" -#~ msgstr "producto" - -# @ woocommerce -#~ msgctxt "page_slug" -#~ msgid "lost-password" -#~ msgstr "contrasena-perdida" - -# @ woocommerce -#~ msgid "yes" -#~ msgstr "si" - -#~ msgid "no" -#~ msgstr "no" - -# @ woocommerce -#~ msgid "[%s with SKU of %s]" -#~ msgstr "[%s con referencia %s]" - -# @ woocommerce -#~ msgid "[%s with ID of %d]" -#~ msgstr "[%s con ID %d]" - -# @ woocommerce -#~ msgid "Order %s" -#~ msgstr "Pedido %s" - -# @ woocommerce -#~ msgid "made by" -#~ msgstr "elaborado por" - -# @ woocommerce -#~ msgid "Email:" -#~ msgstr "Email:" - -# @ woocommerce -#~ msgid "%s ago" -#~ msgstr "hace %s" - -# @ woocommerce -#, fuzzy -#~ msgid "Enter an amount or percentage e.g. 2.99 or 15%" -#~ msgstr "Introduzca un importe o un %, p. ej. 2,99 o 15%" - -# @ woocommerce -#~ msgid "Any customer" -#~ msgstr "Cualquier cliente" - -# @ woocommerce -#~ msgid "" -#~ "Comma separate email addresses to restrict this coupon to specific " -#~ "billing and user emails." -#~ msgstr "" -#~ "Cuentas de email separadas por coma para restringir este cupón a facturas " -#~ "y emails de usuarios específicos." - -# @ woocommerce -#~ msgid "Cost" -#~ msgstr "Coste" - -# @ woocommerce -#, fuzzy -#~ msgid "Line subtotals are before pre-tax discounts, totals are after." -#~ msgstr "" -#~ "Los subtotales por linea son antes de aplicar los descuentos pre-" -#~ "impuesto, los totales son despues." - -# @ woocommerce -#~ msgid "Discounts" -#~ msgstr "Descuentos" - -#~ msgid "Discounts before tax - calculated by comparing subtotals to totals." -#~ msgstr "" -#~ "Descuentos antes de los impuestos. Calculados comparando subtotales a " -#~ "totales." - -#~ msgid "Discounts after tax - user defined." -#~ msgstr "Descuentos despues de impuestos. Definido por usuario." - -#~ msgid "The shipping title the customer sees" -#~ msgstr "Título de envío que ve el cliente" - -# @ woocommerce -#~ msgid "Cost:" -#~ msgstr "Coste:" - -# @ woocommerce -#~ msgid "(ex. tax)" -#~ msgstr "(ej. impuesto)" - -# @ woocommerce -#~ msgid "Method:" -#~ msgstr "Método:" - -# @ woocommerce -#~ msgid "Tax Rows" -#~ msgstr "Filas de impuestos" - -# @ woocommerce -#~ msgid "Tax Totals" -#~ msgstr "Total de impuestos" - -# @ woocommerce -#, fuzzy -#~ msgid "Total tax for line items + fees." -#~ msgstr "Impuesto total + costes adicionales por linea de articulo." - -# @ woocommerce -#~ msgid "Order Total:" -#~ msgstr "Total del pedido:" - -# @ woocommerce -#, fuzzy -#~ msgid "Calc taxes" -#~ msgstr "Calcular impuestos" - -# @ woocommerce -#~ msgid "Variations for variable products are defined here." -#~ msgstr "Las variaciones de los productos variables serán definidas aquí." - -# @ woocommerce -#, fuzzy -#~ msgid "" -#~ "Note: if you edit quantities or remove items from the order you will need " -#~ "to manually update stock levels." -#~ msgstr "" -#~ "Nota: si modifica las cantidades o elimina articulos del pedido tendrá " -#~ "que actualizar manualmente los niveles de stock." - -# @ woocommerce -#~ msgid "Allow reviews." -#~ msgstr "Permitir calificaciones. " - -# @ default -#~ msgid "" -#~ "Allow trackbacks and pingbacks on " -#~ "this page." -#~ msgstr "" -#~ "Permitir notificaciones de enlace desde " -#~ "otros sitios (pingbacks y trackbacks) en esta página." - -# @ default -#~ msgid "" -#~ "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" -#~ msgstr "" -#~ "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" - -# @ woocommerce -#~ msgid "Styles" -#~ msgstr "Estilos" - -# @ woocommerce -#, fuzzy -#~ msgid "Use informal localisation for %s" -#~ msgstr "Usar archivo de traducción informal si existiese para %s" - -# @ woocommerce -#~ msgid "Allowed Countries" -#~ msgstr "Países permitidos" - -# @ woocommerce -#~ msgid "Enable customer note field on checkout" -#~ msgstr "" -#~ "Permitir que el cliente pueda añadir notas al pedido durante la " -#~ "finalización." - -#~ msgid "Register using the email address for the username" -#~ msgstr "Registrar usando dirección de email como usuario" - -# @ woocommerce -#~ msgid "Customer Accounts" -#~ msgstr "Cuentas de cliente" - -# @ woocommerce -#~ msgid "Prevent customers from accessing WordPress admin" -#~ msgstr "" -#~ "Evitar que los clientes accedan a la zona de administración de WordPress." - -# @ woocommerce -#~ msgid "Clear cart when logging out" -#~ msgstr "Limpiar el carrito al cerrar sesión" - -# @ woocommerce -#~ msgid "Styling" -#~ msgstr "Estilizar" - -# @ woocommerce -#~ msgid "Enable WooCommerce CSS" -#~ msgstr "Habilitar los estilos CSS de WooCommerce" - -# @ woocommerce -#~ msgid "Page Setup" -#~ msgstr "Configuración de página" - -# @ woocommerce -#~ msgid "Shop Base Page" -#~ msgstr "Página base de la tienda" - -# @ woocommerce -#~ msgid "Base Page Title" -#~ msgstr "Título de Página Base" - -# @ woocommerce -#~ msgid "" -#~ "This title to show on the shop base page. Leave blank to use the page " -#~ "title." -#~ msgstr "" -#~ "Este título aparecerá en la página base de la tienda. Dejar en blanco " -#~ "para usar el título de la página." - -# @ woocommerce -#~ msgid "Terms Page ID" -#~ msgstr "ID de página que contiene terminos y condiciones" - -# @ woocommerce -#~ msgid "Shop Pages" -#~ msgstr "Páginas de la Tienda" - -# @ woocommerce -#~ msgid "" -#~ "The following pages need selecting so that WooCommerce knows where they " -#~ "are. These pages should have been created upon installation of the " -#~ "plugin, if not you will need to create them." -#~ msgstr "" -#~ "Las siguientes páginas necesitan ser ubicadas para que WooCommerce sepa " -#~ "dónde están. Estas páginas deberían haberse creado durante la instalación " -#~ "del plugin, si no es así usted tendrá que crearlas." - -# @ woocommerce -#~ msgid "Pay Page" -#~ msgstr "Página Pago" - -# @ woocommerce -#~ msgid "Page contents: [woocommerce_pay] Parent: \"Checkout\"" -#~ msgstr "" -#~ "Contenido de la página: [woocommerce_pay] Superior: \"Realizar pedido\"" - -# @ woocommerce -#~ msgid "Thanks Page" -#~ msgstr "Página de agradecimiento" - -# @ woocommerce -#~ msgid "Page contents: [woocommerce_thankyou] Parent: \"Checkout\"" -#~ msgstr "" -#~ "Contenido de la página: [woocommerce_thankyou] Superior: \"Realizar pedido" -#~ "\"" - -# @ woocommerce -#~ msgid "Edit Address Page" -#~ msgstr "Página de edición de dirección" - -# @ woocommerce -#~ msgid "Page contents: [woocommerce_edit_address] Parent: \"My Account\"" -#~ msgstr "" -#~ "Contenido de la página: [woocommerce_edit_address] Superior: \"Mi Cuenta\"" - -# @ woocommerce -#~ msgid "View Order Page" -#~ msgstr "Ver Página del Pedido" - -# @ woocommerce -#~ msgid "Page contents: [woocommerce_view_order] Parent: \"My Account\"" -#~ msgstr "" -#~ "Contenido de la página: [woocommerce_view_order] Superior: \"Mi cuenta\"" - -# @ woocommerce -#~ msgid "Change Password Page" -#~ msgstr "Página de Cambio de Contraseña " - -# @ woocommerce -#~ msgid "Page contents: [woocommerce_change_password] Parent: \"My Account\"" -#~ msgstr "" -#~ "Contenido de la página: [woocommerce_change_password] Superior: \"Mi " -#~ "Cuenta\"" - -# @ woocommerce -#~ msgid "Logout Page" -#~ msgstr "Página Cerrar sesión" - -# @ woocommerce -#, fuzzy -#~ msgid "Parent: \"My Account\"" -#~ msgstr "Superior: \"Mi Cuenta\"" - -# @ woocommerce -#~ msgid "Lost Password Page" -#~ msgstr "¿Olvidó su contraseña?" - -# @ woocommerce -#, fuzzy -#~ msgid "Page contents: [woocommerce_lost_password] Parent: \"My Account\"" -#~ msgstr "" -#~ "Contenido de la página: [woocommerce_change_password] Superior: \"Mi " -#~ "Cuenta\"" - -# @ woocommerce -#~ msgid "Catalog Options" -#~ msgstr "Opciones de catálogo" - -# @ woocommerce -#~ msgid "" -#~ "The following options affect the fields available on the edit product " -#~ "page." -#~ msgstr "" -#~ "Las siguientes opciones afectan los campos disponibles en la página de " -#~ "editar producto." - -# @ woocommerce -#~ msgid "Product Fields" -#~ msgstr "Campos del producto" - -# @ woocommerce -#, fuzzy -#~ msgid "Enable the SKU field for products" -#~ msgstr "Habilitar el campo referencia para los productos" - -#~ msgid "" -#~ "Enable the weight field for products (some shipping " -#~ "methods may require this)" -#~ msgstr "" -#~ "Habilitar el campo peso para los productos (algunos " -#~ "métodos de envío pueden requerir esto)" - -#~ msgid "" -#~ "Enable the dimension fields for products (some shipping " -#~ "methods may require this)" -#~ msgstr "" -#~ "Habilitar campo dimensión para los productos (algunos " -#~ "métodos de envío pueden requerir esto)" - -#~ msgid "" -#~ "Show weight and dimension values on the " -#~ "Additional Information tab" -#~ msgstr "" -#~ "Mostrar peso y dimensiones en la pestaña de " -#~ "información adicional" - -# @ woocommerce -#~ msgid "Pricing Options" -#~ msgstr "Opciones de Precios" - -# @ woocommerce -#~ msgid "Trailing Zeros" -#~ msgstr "No mostrar ceros" - -# @ woocommerce -#~ msgid "" -#~ "Remove zeros after the decimal point. e.g. $10.00 becomes " -#~ "$10" -#~ msgstr "" -#~ "Elimina los ceros después del punto decimal. Ejemplo: €10.00 se convierte en €10" - -# @ woocommerce -#~ msgid "Image Options" -#~ msgstr "Opciones de imagen" - -# @ woocommerce -#~ msgid "Radio buttons" -#~ msgstr "Botones de opción" - -# @ woocommerce -#~ msgid "Select box" -#~ msgstr "Cuadro de selección" - -# @ woocommerce -#~ msgid "Collect shipping address even when not required" -#~ msgstr "Guardar dirección de envío aún cuando no sea obligatorio" - -# @ woocommerce -#~ msgid "Overview" -#~ msgstr "Resumen" - -# @ woocommerce -#~ msgid "" -#~ "If you come across a bug, or wish to contribute to the project you can " -#~ "also get involved on GitHub." -#~ msgstr "" -#~ "Si encuentra un fallo en WC o desea contribuir al proyecto también puede " -#~ "integrarse en GitHub." - -# @ woocommerce -#~ msgid "" -#~ "Here you can set up your store and customise it to fit your needs. The " -#~ "sections available from the settings page include:" -#~ msgstr "" -#~ "Aquí puede configurar su tienda y personalizarla para ajustarla a sus " -#~ "necesidades. Las secciones están disponibles desde la página de " -#~ "configuración:" - -# @ woocommerce -#, fuzzy -#~ msgid "" -#~ "General settings such as your shop base, currency, and script/styling " -#~ "options which affect features used in your store." -#~ msgstr "" -#~ "Configuración general como la base de su tienda, moneda, y opciones de " -#~ "scripts/estilos que afectarán los componentes usados en su tienda." diff --git a/i18n/languages/woocommerce-admin-et.mo b/i18n/languages/woocommerce-admin-et.mo deleted file mode 100644 index 4712a5d5300..00000000000 Binary files a/i18n/languages/woocommerce-admin-et.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-admin-et.po b/i18n/languages/woocommerce-admin-et.po deleted file mode 100644 index fb8eac64086..00000000000 --- a/i18n/languages/woocommerce-admin-et.po +++ /dev/null @@ -1,5527 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce 2.1-X Admin\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-10-03 01:54:37+00:00\n" -"PO-Revision-Date: 2013-11-12 16:14+0200\n" -"Last-Translator: Illimar Tambek \n" -"Language-Team: Divid \n" -"Language: et\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.5.7\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Poedit-SourceCharset: UTF-8\n" - -#: includes/admin/class-wc-admin-assets.php:65 -#: includes/admin/class-wc-admin-menus.php:47 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:45 -#: includes/admin/wc-admin-functions.php:19 -msgid "WooCommerce" -msgstr "WooCommerce" - -#: includes/admin/class-wc-admin-assets.php:104 -msgid "" -"Please enter in decimal format without thousand separators and currency " -"symbols." -msgstr "" -"Palun sisesta arv komakohtadega (või ilma), ära kasuta tuhandike eraldajat " -"ega valuuta sümbolit." - -#: includes/admin/class-wc-admin-assets.php:130 -msgid "" -"Are you sure you want to remove the selected items? If you have previously " -"reduced this item's stock, or this order was submitted by a customer, you " -"will need to manually restore the item's stock." -msgstr "" -"Oled sa kindel, et soovid valitud read eemaldada? Kui sa oled eelnevalt " -"sellel real oleva toote laoseisu vähendanud või kui see tellimus esitati " -"kliendi poolt, pead sa laoseisu taastama käsitsi." - -#: includes/admin/class-wc-admin-assets.php:131 -msgid "Please select some items." -msgstr "Palun vali mõned read" - -#: includes/admin/class-wc-admin-assets.php:132 -msgid "Remove this item meta?" -msgstr "Eemaldan selle rea lisaandmed?" - -#: includes/admin/class-wc-admin-assets.php:133 -msgid "Remove this attribute?" -msgstr "Eemaldan selle omaduse?" - -#: includes/admin/class-wc-admin-assets.php:134 -#: includes/admin/class-wc-admin-attributes.php:240 -#: includes/admin/class-wc-admin-attributes.php:276 -#: includes/admin/class-wc-admin-attributes.php:309 -#: includes/admin/class-wc-admin-attributes.php:332 -#: includes/admin/class-wc-admin-attributes.php:376 -#: includes/admin/class-wc-admin-attributes.php:401 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:194 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:185 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:438 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:532 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:147 -#: includes/admin/settings/class-wc-settings-shipping.php:203 -msgid "Name" -msgstr "Nimi" - -#: includes/admin/class-wc-admin-assets.php:135 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:430 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:524 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:6 -msgid "Remove" -msgstr "Eemalda" - -#: includes/admin/class-wc-admin-assets.php:136 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:431 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:525 -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:7 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:7 -msgid "Click to toggle" -msgstr "Kliki lülitamiseks" - -#: includes/admin/class-wc-admin-assets.php:137 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:446 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:538 -msgid "Value(s)" -msgstr "Väärtus(ed)" - -#: includes/admin/class-wc-admin-assets.php:138 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:539 -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "" -"Sisesta veidi teksti või toote omadusi. Kasuta väärtuste eraldamiseks " -"püstkriipsu (|)." - -#: includes/admin/class-wc-admin-assets.php:139 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:489 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:544 -msgid "Visible on the product page" -msgstr "Nähtav tootelehel" - -#: includes/admin/class-wc-admin-assets.php:140 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:502 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:550 -msgid "Used for variations" -msgstr "Kasutatakse variatsioonide puhul" - -#: includes/admin/class-wc-admin-assets.php:141 -msgid "Enter a name for the new attribute term:" -msgstr "Sisesta selle omaduse nimetus:" - -#: includes/admin/class-wc-admin-assets.php:142 -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "" -"Arvuta summad tellimusel olevate toodete, allahindluste ja transpordi põhjal?" - -#: includes/admin/class-wc-admin-assets.php:143 -msgid "" -"Calculate line taxes? This will calculate taxes based on the customers " -"country. If no billing/shipping is set it will use the store base country." -msgstr "" -"Arvuta tellimuse ridade maksud? Maksud arvutatakse kliendi riigi põhjal. Kui " -"kliendi arve- või tarneaadressis ei ole riiki, siis kasutatakse arvutamiseks " -"poe enda riiki." - -#: includes/admin/class-wc-admin-assets.php:144 -msgid "" -"Copy billing information to shipping information? This will remove any " -"currently entered shipping information." -msgstr "" -"Kopeeri arvelduse info tarneinfo kohale? Eelnevalt sisestatud tarneinfo " -"kirjutatakse üle." - -#: includes/admin/class-wc-admin-assets.php:145 -msgid "" -"Load the customer's billing information? This will remove any currently " -"entered billing information." -msgstr "" -"Laadi arvelduse info kliendi andmetest? Eelnevalt sisestatud arvelduse info " -"kirjutatakse üle." - -#: includes/admin/class-wc-admin-assets.php:146 -msgid "" -"Load the customer's shipping information? This will remove any currently " -"entered shipping information." -msgstr "" -"Laadi tarneinfo kliendi andmetest? Eelnevalt sisestatud tarneinfo " -"kirjutatakse üle." - -#: includes/admin/class-wc-admin-assets.php:147 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:115 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:206 -#: includes/admin/views/html-bulk-edit-product.php:170 -#: includes/admin/views/html-quick-edit-product.php:128 -msgid "Featured" -msgstr "Esile tõstetud" - -#: includes/admin/class-wc-admin-assets.php:150 -msgid "No customer selected" -msgstr "Klienti ei ole valitud" - -#: includes/admin/class-wc-admin-assets.php:189 -msgid "" -"Are you sure you want to link all variations? This will create a new " -"variation for each and every possible combination of variation attributes " -"(max 50 per run)." -msgstr "" -"Oled kindel, et soovid kõiki variatsioone seostada? See tähendab, et iga " -"võimaliku variatsiooniomaduse kombinatsiooni kohta tekitatakse uus " -"variatsioon." - -#: includes/admin/class-wc-admin-assets.php:190 -msgid "Enter a value" -msgstr "Sisesta väärtus" - -#: includes/admin/class-wc-admin-assets.php:191 -msgid "Enter a value (fixed or %)" -msgstr "Sisesta väärtus (summa või %s)" - -#: includes/admin/class-wc-admin-assets.php:192 -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "" -"Oled kindel, et soovid kõiki variatsioone kustutada? Seda ei saa tagasi " -"võtta." - -#: includes/admin/class-wc-admin-assets.php:193 -msgid "Last warning, are you sure?" -msgstr "Viimane hoiatus, oled sa kindel?" - -#: includes/admin/class-wc-admin-assets.php:194 -#: includes/admin/class-wc-admin-taxonomies.php:127 -#: includes/admin/class-wc-admin-taxonomies.php:215 -msgid "Choose an image" -msgstr "Vali pilt" - -#: includes/admin/class-wc-admin-assets.php:195 -msgid "Set variation image" -msgstr "Määra variatsiooni pilt" - -#: includes/admin/class-wc-admin-assets.php:196 -msgid "variation added" -msgstr "variatsioon lisatud" - -#: includes/admin/class-wc-admin-assets.php:197 -msgid "variations added" -msgstr "variatsiooni lisatud" - -#: includes/admin/class-wc-admin-assets.php:198 -msgid "No variations added" -msgstr "Variatsioone ei lisatud" - -#: includes/admin/class-wc-admin-assets.php:199 -msgid "Are you sure you want to remove this variation?" -msgstr "Oled kindel, et tahad seda variatsiooni eemaldada?" - -#: includes/admin/class-wc-admin-attributes.php:81 -msgid "Please, provide an attribute name, slug and type." -msgstr "Palun sisesta omaduse nimetus, püsiviide ja tüüp." - -#: includes/admin/class-wc-admin-attributes.php:83 -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "" -"Püsiviide “%s” on liiga pikk (maksimaalselt 28 tähemärki). Palun tee see " -"lühemaks." - -#: includes/admin/class-wc-admin-attributes.php:85 -msgid "" -"Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "" -"Püsiviidet “%s” ei saa kasutada, kuna see on reserveeritud. Palun muuda seda." - -#: includes/admin/class-wc-admin-attributes.php:90 -#: includes/admin/class-wc-admin-attributes.php:95 -msgid "Slug “%s” is already in use. Change it, please." -msgstr "Püsiviide “%s” on juba kasutusel. Palun muuda seda." - -#: includes/admin/class-wc-admin-attributes.php:234 -msgid "Edit Attribute" -msgstr "Muuda omadust" - -#: includes/admin/class-wc-admin-attributes.php:244 -#: includes/admin/class-wc-admin-attributes.php:378 -msgid "Name for the attribute (shown on the front-end)." -msgstr "Omaduse nimetus (näidatakse külastajatele)." - -#: includes/admin/class-wc-admin-attributes.php:249 -#: includes/admin/class-wc-admin-attributes.php:310 -#: includes/admin/class-wc-admin-attributes.php:382 -msgid "Slug" -msgstr "Püsiviide" - -#: includes/admin/class-wc-admin-attributes.php:253 -#: includes/admin/class-wc-admin-attributes.php:384 -msgid "" -"Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "" -"Unikaalne püsiviide toote omadusele; peab olema lühem kui 28 tähemärki." - -#: includes/admin/class-wc-admin-attributes.php:258 -#: includes/admin/class-wc-admin-attributes.php:311 -#: includes/admin/class-wc-admin-attributes.php:388 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:207 -msgid "Type" -msgstr "Tüüp" - -#: includes/admin/class-wc-admin-attributes.php:262 -#: includes/admin/class-wc-admin-attributes.php:390 -msgid "Select" -msgstr "Valik" - -#: includes/admin/class-wc-admin-attributes.php:263 -#: includes/admin/class-wc-admin-attributes.php:391 -msgid "Text" -msgstr "Tekst" - -#: includes/admin/class-wc-admin-attributes.php:266 -#: includes/admin/class-wc-admin-attributes.php:394 -msgid "" -"Determines how you select attributes for products. Text " -"allows manual entry via the product page, whereas select " -"attribute terms can be defined from this section. If you plan on using an " -"attribute for variations use select." -msgstr "" -"Määrab kuidas saad valida toodete omadusi. Tekst lubab " -"sisestada omaduste väärtusi toote muutmise lehel käsitsi, samas " -"valiku puhul saad sobivaid väärtusi määrata siin. Kui sa " -"tahad mingit omadust kasutada variatsioonide jaoks, vali valik." - -#: includes/admin/class-wc-admin-attributes.php:271 -#: includes/admin/class-wc-admin-attributes.php:398 -msgid "Default sort order" -msgstr "Vaikimisi järjestus" - -#: includes/admin/class-wc-admin-attributes.php:275 -#: includes/admin/class-wc-admin-attributes.php:338 -#: includes/admin/class-wc-admin-attributes.php:400 -msgid "Custom ordering" -msgstr "Kohandatud järjestus" - -#: includes/admin/class-wc-admin-attributes.php:277 -#: includes/admin/class-wc-admin-attributes.php:335 -#: includes/admin/class-wc-admin-attributes.php:402 -msgid "Term ID" -msgstr "Termini ID" - -#: includes/admin/class-wc-admin-attributes.php:279 -#: includes/admin/class-wc-admin-attributes.php:404 -msgid "" -"Determines the sort order on the frontend for this attribute. If using " -"custom ordering, you can drag and drop the terms in this attribute" -msgstr "" -"Määrab selle tooteomaduse järjestuse poes. Kui sa kasutad kohandatud " -"järjestust, saad selle omaduse võimalikke väärtusi lohistades paika " -"järjestada" - -#: includes/admin/class-wc-admin-attributes.php:284 -msgid "Update" -msgstr "Uuenda" - -#: includes/admin/class-wc-admin-attributes.php:301 -#: includes/admin/class-wc-admin-menus.php:49 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:104 -msgid "Attributes" -msgstr "Omadused" - -#: includes/admin/class-wc-admin-attributes.php:312 -msgid "Order by" -msgstr "Järjesta" - -#: includes/admin/class-wc-admin-attributes.php:313 -msgid "Terms" -msgstr "Terminid" - -#: includes/admin/class-wc-admin-attributes.php:325 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:118 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:251 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:82 -#: includes/admin/reports/class-wc-report-customer-list.php:181 -#: includes/admin/reports/class-wc-report-stock.php:107 -msgid "Edit" -msgstr "Muuda" - -#: includes/admin/class-wc-admin-attributes.php:325 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:44 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:104 -#: includes/admin/post-types/meta-boxes/views/html-product-download.php:6 -#: includes/admin/post-types/meta-boxes/views/html-product-variation-download.php:5 -msgid "Delete" -msgstr "Kustuta" - -#: includes/admin/class-wc-admin-attributes.php:358 -msgid "Configure terms" -msgstr "Seadista termineid" - -#: includes/admin/class-wc-admin-attributes.php:362 -msgid "No attributes currently exist." -msgstr "Omadusi veel ei ole." - -#: includes/admin/class-wc-admin-attributes.php:372 -msgid "Add New Attribute" -msgstr "Lisa uus omadus" - -#: includes/admin/class-wc-admin-attributes.php:373 -msgid "" -"Attributes let you define extra product data, such as size or colour. You " -"can use these attributes in the shop sidebar using the \"layered nav\" " -"widgets. Please note: you cannot rename an attribute later on." -msgstr "" -"Omadused võimaldavad sul lisada tootele lisaandmeid, nagu näiteks suurus ja " -"värv. Sa saad neid omadusi kasutada poe külgpaanil \"kihtidega navigatsiooni" -"\" vidinates kasutada. Pane tähele: omadust ei saa hiljem ümber nimetada." - -#: includes/admin/class-wc-admin-attributes.php:407 -msgid "Add Attribute" -msgstr "Lisa omadus" - -#: includes/admin/class-wc-admin-attributes.php:418 -msgid "Are you sure you want to delete this attribute?" -msgstr "Oled kindel, et soovid selle omaduse kustutada?" - -#: includes/admin/class-wc-admin-dashboard.php:34 -msgid "WooCommerce Recent Reviews" -msgstr "WooCommerce'i värsked ülevaated" - -#: includes/admin/class-wc-admin-dashboard.php:37 -#: includes/admin/class-wc-admin-menus.php:80 -msgid "WooCommerce Status" -msgstr "WooCommerce'i olek" - -#: includes/admin/class-wc-admin-dashboard.php:131 -msgid "%s sales this month" -msgstr "%s müüki sel kuul" - -#: includes/admin/class-wc-admin-dashboard.php:138 -msgid "%s top seller this month (sold %d)" -msgstr "%s selle kuu enim müüdud toode (%d müüdud)" - -#: includes/admin/class-wc-admin-dashboard.php:144 -msgid "%s order awaiting processing" -msgid_plural "%s orders are awaiting processing" -msgstr[0] "%s tellimus ootab töötlemist" -msgstr[1] "%s tellimust ootavad töötlemist" - -#: includes/admin/class-wc-admin-dashboard.php:149 -msgid "%s order are on-hold" -msgid_plural "%s orders are currently on-hold" -msgstr[0] "%s tellimus on ootel" -msgstr[1] "%s tellimust on hetkel ootel" - -#: includes/admin/class-wc-admin-dashboard.php:154 -msgid "%s product low in stock" -msgid_plural "%s products are low in stock" -msgstr[0] "%s toode on laost peaaegu otsas" -msgstr[1] "%s toodet on laost peaaegu otsas" - -#: includes/admin/class-wc-admin-dashboard.php:159 -msgid "%s product out of stock" -msgid_plural "%s products are out of stock" -msgstr[0] "%s toode laost otsas" -msgstr[1] "%s toodet on laost otsas" - -#: includes/admin/class-wc-admin-dashboard.php:192 -msgid "out of 5" -msgstr "5-st" - -#: includes/admin/class-wc-admin-dashboard.php:200 -msgid "There are no product reviews yet." -msgstr "Tooteülevaateid veel ei ole." - -#: includes/admin/class-wc-admin-duplicate-product.php:43 -msgid "Make a duplicate from this product" -msgstr "Tee sellest tootest duplikaat" - -#: includes/admin/class-wc-admin-duplicate-product.php:44 -msgid "Duplicate" -msgstr "Tee koopia" - -#: includes/admin/class-wc-admin-duplicate-product.php:67 -msgid "Copy to a new draft" -msgstr "Kopeeri uude mustandisse" - -#: includes/admin/class-wc-admin-duplicate-product.php:77 -msgid "No product to duplicate has been supplied!" -msgstr "Tooteduplikaati ei ole antud!" - -#: includes/admin/class-wc-admin-duplicate-product.php:99 -msgid "Product creation failed, could not find original product:" -msgstr "Toote loomine ebaõnnestus kuna ei suutnud leida algset toodet:" - -#: includes/admin/class-wc-admin-duplicate-product.php:126 -msgid "(Copy)" -msgstr "(Kopeeri)" - -#: includes/admin/class-wc-admin-help.php:38 -msgid "Documentation" -msgstr "Dokumentatsioon" - -#: includes/admin/class-wc-admin-help.php:41 -msgid "" -"Thank you for using WooCommerce :) Should you need help using or extending " -"WooCommerce please read the documentation." -msgstr "" -"Aitäh, et kasutad WooCommerce'i :) Kui sul peaks olema vaja abi " -"WooCommerce'i kasutamisel või laiendamisel, loe palun dokumentatsiooni." - -#: includes/admin/class-wc-admin-help.php:43 -msgid "WooCommerce Documentation" -msgstr "WooCommerce'i dokumentatsioon" - -#: includes/admin/class-wc-admin-help.php:43 -msgid "Developer API Docs" -msgstr "Arendajate API dokumentatsioon" - -#: includes/admin/class-wc-admin-help.php:49 -msgid "Support" -msgstr "Tugi" - -#: includes/admin/class-wc-admin-help.php:52 -msgid "" -"After reading the documentation, for further assistance " -"you can use the community forum, or if you have access as " -"a WooThemes customer, our support desk." -msgstr "" -"Peale dokumentatsiooni lugemist võid täiendava abi " -"saamiseks pöörduda meie kogukonna foorumissevõi kui sa " -"oled WooThemesi klient, saad pöörduda meie klienditoe poole." - -#: includes/admin/class-wc-admin-help.php:54 -msgid "" -"Before asking for help we recommend checking the status page to identify any " -"problems with your configuration." -msgstr "" -"Enne abi küsimist soovitame sul vaadata oma olekulehte, mis võib aidata " -"leida probleeme sinu seadistustega." - -#: includes/admin/class-wc-admin-help.php:56 -#: includes/admin/class-wc-admin-help.php:67 -#: includes/admin/class-wc-admin-menus.php:80 -#: includes/admin/views/html-admin-page-status.php:5 -msgid "System Status" -msgstr "Süsteemi olek" - -#: includes/admin/class-wc-admin-help.php:56 -msgid "Community Support" -msgstr "Tugifoorum" - -#: includes/admin/class-wc-admin-help.php:56 -msgid "Customer Support" -msgstr "Klienditugi" - -#: includes/admin/class-wc-admin-help.php:62 -msgid "Found a bug?" -msgstr "Leidsid vea?" - -#: includes/admin/class-wc-admin-help.php:65 -msgid "" -"If you find a bug within WooCommerce core you can create a ticket via Github issues. Ensure you read the contribution guide prior to submitting your report. Be as descriptive " -"as possible and please include your system status report." -msgstr "" -"Kui sa leidsid WooCommerce'is vea, siis on sul võimalik selle kohta luua " -"pilet Githubis. Veendu, et loed panustamise juhendit enne, kui saadad oma raporti. Kirjelda probleemi " -"võimalikult lähedalt ja palun pane kaasa ka oma süsteemi " -"oleku raport." - -#: includes/admin/class-wc-admin-help.php:67 -msgid "Report a bug" -msgstr "Teata veast" - -#: includes/admin/class-wc-admin-help.php:73 -msgid "For more information:" -msgstr "Vaata lisaks:" - -#: includes/admin/class-wc-admin-help.php:74 -msgid "About WooCommerce" -msgstr "WooCommerce'i kohta" - -#: includes/admin/class-wc-admin-help.php:75 -msgid "Project on WordPress.org" -msgstr "Projekt Wordpress.org lehel" - -#: includes/admin/class-wc-admin-help.php:76 -msgid "Project on Github" -msgstr "Projekt Githubis" - -#: includes/admin/class-wc-admin-help.php:77 -msgid "Official Extensions" -msgstr "Ametlikud laiendused" - -#: includes/admin/class-wc-admin-help.php:78 -msgid "Official Themes" -msgstr "Ametlikud teemad" - -#: includes/admin/class-wc-admin-importers.php:32 -msgid "WooCommerce Tax Rates (CSV)" -msgstr "WooCommerce'i maksumäärad (CSV)" - -#: includes/admin/class-wc-admin-importers.php:32 -msgid "Import tax rates to your store via a csv file." -msgstr "Impordi maksumäärad oma poodi CSV faili abil." - -#: includes/admin/class-wc-admin-menus.php:56 -msgid "Reports" -msgstr "Raportid" - -#: includes/admin/class-wc-admin-menus.php:63 -msgid "WooCommerce Settings" -msgstr "WooCommerce'i seaded" - -#: includes/admin/class-wc-admin-menus.php:63 -#: includes/admin/class-wc-admin-welcome.php:153 -#: includes/admin/settings/class-wc-settings-checkout.php:268 -#: includes/admin/settings/class-wc-settings-shipping.php:241 -#: includes/admin/views/html-admin-page-status-report.php:263 -msgid "Settings" -msgstr "Seaded" - -#: includes/admin/class-wc-admin-menus.php:87 -#: includes/admin/views/html-admin-page-addons.php:4 -msgid "WooCommerce Add-ons/Extensions" -msgstr "WooCommerce'i lisad/laiendused" - -#: includes/admin/class-wc-admin-menus.php:87 -msgid "Add-ons" -msgstr "Lisad" - -#: includes/admin/class-wc-admin-menus.php:125 -#: includes/admin/class-wc-admin-menus.php:127 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Tellimused" - -#: includes/admin/class-wc-admin-permalink-settings.php:33 -msgid "Product permalink base" -msgstr "Toote püsiviite alus" - -#: includes/admin/class-wc-admin-permalink-settings.php:38 -msgid "Product category base" -msgstr "Tootekategooriate püsiviidete alus" - -#: includes/admin/class-wc-admin-permalink-settings.php:45 -msgid "Product tag base" -msgstr "Tootesiltide püsiviidete alus" - -#: includes/admin/class-wc-admin-permalink-settings.php:52 -msgid "Product attribute base" -msgstr "Tooteomaduste püsiviidete alus" - -#: includes/admin/class-wc-admin-permalink-settings.php:65 -msgctxt "slug" -msgid "product-category" -msgstr "tootekategooria" - -#: includes/admin/class-wc-admin-permalink-settings.php:75 -msgctxt "slug" -msgid "product-tag" -msgstr "tootesilt" - -#: includes/admin/class-wc-admin-permalink-settings.php:93 -msgid "" -"These settings control the permalinks used for products. These settings only " -"apply when not using \"default\" permalinks above." -msgstr "" -"Need seaded kontrollivad toodete püsiviiteid. Need rakenduvad vaid siis, kui " -"sa ei kasuta ülal \"vaikimisi\" püsiviiteid." - -#: includes/admin/class-wc-admin-permalink-settings.php:100 -msgctxt "default-slug" -msgid "shop" -msgstr "pood" - -#: includes/admin/class-wc-admin-permalink-settings.php:101 -msgctxt "default-slug" -msgid "product" -msgstr "toode" - -#: includes/admin/class-wc-admin-permalink-settings.php:113 -#: includes/admin/class-wc-admin-taxonomies.php:92 -#: includes/admin/class-wc-admin-taxonomies.php:182 -#: includes/admin/settings/class-wc-settings-checkout.php:217 -#: includes/admin/settings/class-wc-settings-shipping.php:202 -#: includes/admin/views/html-admin-page-status-report.php:80 -msgid "Default" -msgstr "Vaikimisi" - -#: includes/admin/class-wc-admin-permalink-settings.php:117 -#: includes/admin/reports/class-wc-report-stock.php:137 -#: includes/admin/views/html-email-template-preview.php:8 -msgid "Product" -msgstr "Toode" - -#: includes/admin/class-wc-admin-permalink-settings.php:122 -msgid "Shop base" -msgstr "Poe alusaadress" - -#: includes/admin/class-wc-admin-permalink-settings.php:126 -msgid "Shop base with category" -msgstr "Poe püsiviide koos kategooriaga" - -#: includes/admin/class-wc-admin-permalink-settings.php:132 -msgid "Custom Base" -msgstr "Kohandatud alusaadress" - -#: includes/admin/class-wc-admin-permalink-settings.php:134 -msgid "" -"Enter a custom base to use. A base must be set or WordPress " -"will use default instead." -msgstr "" -"Sisesta soovitud alus. Alus peab olema määratud, muidu " -"kasutab WordPress vaikimisi alust." - -#: includes/admin/class-wc-admin-post-types.php:58 -msgid "Product updated. View Product" -msgstr "Toodet muudeti. Vaata toodet" - -#: includes/admin/class-wc-admin-post-types.php:59 -#: includes/admin/class-wc-admin-post-types.php:74 -#: includes/admin/class-wc-admin-post-types.php:89 -msgid "Custom field updated." -msgstr "Väli uuendatud." - -#: includes/admin/class-wc-admin-post-types.php:60 -#: includes/admin/class-wc-admin-post-types.php:75 -#: includes/admin/class-wc-admin-post-types.php:90 -msgid "Custom field deleted." -msgstr "Väli kustutatud." - -#: includes/admin/class-wc-admin-post-types.php:61 -msgid "Product updated." -msgstr "Toode uuendatud." - -#: includes/admin/class-wc-admin-post-types.php:62 -msgid "Product restored to revision from %s" -msgstr "Toode taastati seisuga %s" - -#: includes/admin/class-wc-admin-post-types.php:63 -msgid "Product published. View Product" -msgstr "Toode avaldati. Vaata toodet" - -#: includes/admin/class-wc-admin-post-types.php:64 -msgid "Product saved." -msgstr "Toode salvestatud." - -#: includes/admin/class-wc-admin-post-types.php:65 -msgid "Product submitted. Preview Product" -msgstr "Toode esitatud. Eelvaatle toodet" - -#: includes/admin/class-wc-admin-post-types.php:66 -msgid "" -"Product scheduled for: %1$s. Preview Product" -msgstr "" -"Toode avaldatakse: %1$s. Eelvaatle " -"toodet" - -#: includes/admin/class-wc-admin-post-types.php:67 -#: includes/admin/class-wc-admin-post-types.php:82 -#: includes/admin/class-wc-admin-post-types.php:97 -msgid "M j, Y @ G:i" -msgstr "j. M Y @ H:i" - -#: includes/admin/class-wc-admin-post-types.php:68 -msgid "" -"Product draft updated. Preview Product" -msgstr "" -"Toote mustandit uuendati. Eelvaatle toodet" - -#: includes/admin/class-wc-admin-post-types.php:73 -#: includes/admin/class-wc-admin-post-types.php:76 -#: includes/admin/class-wc-admin-post-types.php:78 -msgid "Order updated." -msgstr "Tellimus uuendatud." - -#: includes/admin/class-wc-admin-post-types.php:77 -msgid "Order restored to revision from %s" -msgstr "Tellimus taastati seisuga %s" - -#: includes/admin/class-wc-admin-post-types.php:79 -msgid "Order saved." -msgstr "Tellimus salvestatud." - -#: includes/admin/class-wc-admin-post-types.php:80 -msgid "Order submitted." -msgstr "Telimus esitatud." - -#: includes/admin/class-wc-admin-post-types.php:81 -msgid "Order scheduled for: %1$s." -msgstr "Tellimus avaldatakse: %1$s." - -#: includes/admin/class-wc-admin-post-types.php:83 -msgid "Order draft updated." -msgstr "Tellimuse mustandit uuendati." - -#: includes/admin/class-wc-admin-post-types.php:88 -#: includes/admin/class-wc-admin-post-types.php:91 -#: includes/admin/class-wc-admin-post-types.php:93 -msgid "Coupon updated." -msgstr "Kupong uuendatud." - -#: includes/admin/class-wc-admin-post-types.php:92 -msgid "Coupon restored to revision from %s" -msgstr "Kupong taastati seisuga %s" - -#: includes/admin/class-wc-admin-post-types.php:94 -msgid "Coupon saved." -msgstr "Kupong salvestatud." - -#: includes/admin/class-wc-admin-post-types.php:95 -msgid "Coupon submitted." -msgstr "Kupong esitatud." - -#: includes/admin/class-wc-admin-post-types.php:96 -msgid "Coupon scheduled for: %1$s." -msgstr "Kupong avaldatakse: %1$s." - -#: includes/admin/class-wc-admin-post-types.php:98 -msgid "Coupon draft updated." -msgstr "Kupongi mustandit uuendati." - -#: includes/admin/class-wc-admin-profile.php:39 -msgid "Customer Billing Address" -msgstr "Kliendi arvelduse aadress" - -#: includes/admin/class-wc-admin-profile.php:42 -#: includes/admin/class-wc-admin-profile.php:91 -msgid "First name" -msgstr "Eesnimi" - -#: includes/admin/class-wc-admin-profile.php:46 -#: includes/admin/class-wc-admin-profile.php:95 -msgid "Last name" -msgstr "Perenimi" - -#: includes/admin/class-wc-admin-profile.php:50 -#: includes/admin/class-wc-admin-profile.php:99 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:37 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:84 -msgid "Company" -msgstr "Ettevõte" - -#: includes/admin/class-wc-admin-profile.php:54 -#: includes/admin/class-wc-admin-profile.php:103 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:41 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:88 -msgid "Address 1" -msgstr "Aadress 1" - -#: includes/admin/class-wc-admin-profile.php:58 -#: includes/admin/class-wc-admin-profile.php:107 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:45 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:92 -msgid "Address 2" -msgstr "Aadress 2" - -#: includes/admin/class-wc-admin-profile.php:62 -#: includes/admin/class-wc-admin-profile.php:111 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:49 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:96 -#: includes/admin/settings/class-wc-settings-tax.php:254 -#: includes/admin/settings/class-wc-settings-tax.php:381 -msgid "City" -msgstr "Linn" - -#: includes/admin/class-wc-admin-profile.php:66 -#: includes/admin/class-wc-admin-profile.php:115 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:53 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:100 -msgid "Postcode" -msgstr "Postiindeks" - -#: includes/admin/class-wc-admin-profile.php:70 -#: includes/admin/class-wc-admin-profile.php:119 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:63 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:110 -msgid "State/County" -msgstr "Maakond" - -#: includes/admin/class-wc-admin-profile.php:71 -msgid "Country or state code" -msgstr "Riigi või osariigi kood" - -#: includes/admin/class-wc-admin-profile.php:74 -#: includes/admin/class-wc-admin-profile.php:123 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:57 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:104 -msgid "Country" -msgstr "Riik" - -#: includes/admin/class-wc-admin-profile.php:75 -#: includes/admin/class-wc-admin-profile.php:124 -msgid "2 letter Country code" -msgstr "2-kohaline riigikood" - -#: includes/admin/class-wc-admin-profile.php:78 -msgid "Telephone" -msgstr "Telefon" - -#: includes/admin/class-wc-admin-profile.php:82 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:67 -#: includes/admin/reports/class-wc-report-customer-list.php:239 -msgid "Email" -msgstr "E-post" - -#: includes/admin/class-wc-admin-profile.php:88 -msgid "Customer Shipping Address" -msgstr "Kliendi tarneaadress" - -#: includes/admin/class-wc-admin-profile.php:120 -msgid "State/County or state code" -msgstr "Maakond/osariik või osariigi kood" - -#: includes/admin/class-wc-admin-reports.php:46 -#: includes/admin/reports/class-wc-report-customer-list.php:241 -msgid "Orders" -msgstr "Tellimused" - -#: includes/admin/class-wc-admin-reports.php:49 -msgid "Sales by date" -msgstr "Müük kuupäeva alusel" - -#: includes/admin/class-wc-admin-reports.php:55 -msgid "Sales by product" -msgstr "Müük toote alusel" - -#: includes/admin/class-wc-admin-reports.php:61 -msgid "Sales by category" -msgstr "Müük kategooria alusel" - -#: includes/admin/class-wc-admin-reports.php:67 -msgid "Coupons by date" -msgstr "Kupongid kuupäeva alusel" - -#: includes/admin/class-wc-admin-reports.php:75 -#: includes/admin/reports/class-wc-report-customer-list.php:23 -msgid "Customers" -msgstr "Kliendid" - -#: includes/admin/class-wc-admin-reports.php:78 -msgid "Customers vs. Guests" -msgstr "Kliendid vs. külalised" - -#: includes/admin/class-wc-admin-reports.php:84 -msgid "Customer List" -msgstr "Klientide nimekiri" - -#: includes/admin/class-wc-admin-reports.php:92 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:200 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:762 -#: includes/admin/reports/class-wc-report-stock.php:20 -#: includes/admin/reports/class-wc-report-stock.php:21 -msgid "Stock" -msgstr "Ladu" - -#: includes/admin/class-wc-admin-reports.php:95 -msgid "Low in stock" -msgstr "Vähe laos" - -#: includes/admin/class-wc-admin-reports.php:101 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:367 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:302 -#: includes/admin/reports/class-wc-report-stock.php:93 -#: includes/admin/views/html-bulk-edit-product.php:195 -#: includes/admin/views/html-quick-edit-product.php:138 -msgid "Out of stock" -msgstr "Laost otsas" - -#: includes/admin/class-wc-admin-reports.php:107 -msgid "Most Stocked" -msgstr "Enim laos" - -#: includes/admin/class-wc-admin-reports.php:118 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:75 -msgid "Taxes" -msgstr "Maksud" - -#: includes/admin/class-wc-admin-reports.php:121 -msgid "Taxes by code" -msgstr "Maksud koodi alusel" - -#: includes/admin/class-wc-admin-reports.php:127 -msgid "Taxes by date" -msgstr "Maksud kuupäeva alusel" - -#: includes/admin/class-wc-admin-settings.php:52 -msgid "Action failed. Please refresh the page and retry." -msgstr "Tegevus ebaõnnestus. Palun lae leht uuesti ja proovi veel." - -#: includes/admin/class-wc-admin-settings.php:63 -msgid "Your settings have been saved." -msgstr "Sinu seaded on salvestatud." - -#: includes/admin/class-wc-admin-settings.php:119 -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "Kui lahkud sellelt lehelt, lähevad tehtud muudatused kaduma." - -#: includes/admin/class-wc-admin-settings.php:466 -msgid "Hard Crop?" -msgstr "Lõika täpselt mõõtu?" - -#: includes/admin/class-wc-admin-settings.php:491 -msgid "Select a page…" -msgstr "Vali leht…" - -#: includes/admin/class-wc-admin-settings.php:514 -msgid "Choose a country…" -msgstr "Vali riik…" - -#: includes/admin/class-wc-admin-settings.php:538 -msgid "Choose countries…" -msgstr "Vali riigid…" - -#: includes/admin/class-wc-admin-settings.php:544 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:460 -msgid "Select all" -msgstr "Vali kõik" - -#: includes/admin/class-wc-admin-settings.php:544 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:460 -msgid "Select none" -msgstr "Tühista valik" - -#: includes/admin/class-wc-admin-status.php:52 -msgid "Product Transients Cleared" -msgstr "Toodete ajutised andmed puhastatud" - -#: includes/admin/class-wc-admin-status.php:93 -msgid "%d Transients Rows Cleared" -msgstr "%d ajutiste andmete rida puhastatud" - -#: includes/admin/class-wc-admin-status.php:102 -msgid "Roles successfully reset" -msgstr "Rollid edukalt taastatud algseisu" - -#: includes/admin/class-wc-admin-status.php:114 -msgid "Terms successfully recounted" -msgstr "Terminid on edukalt üle loetud" - -#: includes/admin/class-wc-admin-status.php:133 -msgid "There was an error calling %s::%s" -msgstr "%s::%s kutsumisel esines viga" - -#: includes/admin/class-wc-admin-status.php:136 -msgid "There was an error calling %s" -msgstr "%s kutsumisel esines viga" - -#: includes/admin/class-wc-admin-status.php:155 -msgid "WC Transients" -msgstr "WC ajutised andmed" - -#: includes/admin/class-wc-admin-status.php:156 -msgid "Clear transients" -msgstr "Puhasta ajutised andmed" - -#: includes/admin/class-wc-admin-status.php:157 -msgid "This tool will clear the product/shop transients cache." -msgstr "See tööriist puhastab toote/poe ajutiste andmete vahemälu." - -#: includes/admin/class-wc-admin-status.php:160 -msgid "Expired Transients" -msgstr "Kehtetuks muutunud ajutised andmed" - -#: includes/admin/class-wc-admin-status.php:161 -msgid "Clear expired transients" -msgstr "Eemalda kehtetud ajutised andmed" - -#: includes/admin/class-wc-admin-status.php:162 -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "" -"See tööriist eemaldab KÕIK lõppenud kehtivusega ajutised andmed WordPressist." - -#: includes/admin/class-wc-admin-status.php:165 -msgid "Term counts" -msgstr "Terminite kogused" - -#: includes/admin/class-wc-admin-status.php:166 -msgid "Recount terms" -msgstr "Loe terminid uuesti üle" - -#: includes/admin/class-wc-admin-status.php:167 -msgid "" -"This tool will recount product terms - useful when changing your settings in " -"a way which hides products from the catalog." -msgstr "" -"See tööriist loendab tooted uuesti üle - kasulik juhul, kui sa muudad oma " -"seadeid moel, mis peidab osa tooteid kataloogist." - -#: includes/admin/class-wc-admin-status.php:170 -msgid "Capabilities" -msgstr "Võimed" - -#: includes/admin/class-wc-admin-status.php:171 -msgid "Reset capabilities" -msgstr "Taasta võimete algseis" - -#: includes/admin/class-wc-admin-status.php:172 -msgid "" -"This tool will reset the admin, customer and shop_manager roles to default. " -"Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "" -"See tööriist lähtestab halduri, klienti ja poe halduri (shop_manager) rollid " -"vaikimisi rollideks. Kasuta seda juhul, kui sinu kasutahad ei saa kõikidele " -"WooCommerce'i haldamise lehtedele ligi." - -#: includes/admin/class-wc-admin-status.php:175 -msgid "Customer Sessions" -msgstr "Klientide sessioonid" - -#: includes/admin/class-wc-admin-status.php:176 -msgid "Clear all sessions" -msgstr "Kustuta kõik sessioonid" - -#: includes/admin/class-wc-admin-status.php:177 -msgid "" -"Warning This tool will delete all customer " -"session data from the database, including any current live carts." -msgstr "" -"Hoiatus See tööriist kustutab kõikide " -"kasutajate sessiooniandmed andmebaasist, sealhulgas need, kes praegu lehel " -"viibida võivad." - -#: includes/admin/class-wc-admin-taxonomies.php:90 -#: includes/admin/class-wc-admin-taxonomies.php:179 -msgid "Display type" -msgstr "Esitlusviis" - -#: includes/admin/class-wc-admin-taxonomies.php:93 -#: includes/admin/class-wc-admin-taxonomies.php:183 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:67 -#: includes/admin/settings/class-wc-settings-products.php:25 -#: includes/admin/views/html-admin-page-addons.php:15 -msgid "Products" -msgstr "Tooted" - -#: includes/admin/class-wc-admin-taxonomies.php:94 -#: includes/admin/class-wc-admin-taxonomies.php:184 -msgid "Subcategories" -msgstr "Alamkategooriad" - -#: includes/admin/class-wc-admin-taxonomies.php:95 -#: includes/admin/class-wc-admin-taxonomies.php:185 -msgid "Both" -msgstr "Mõlemad" - -#: includes/admin/class-wc-admin-taxonomies.php:99 -#: includes/admin/class-wc-admin-taxonomies.php:190 -msgid "Thumbnail" -msgstr "Ikoon" - -#: includes/admin/class-wc-admin-taxonomies.php:103 -#: includes/admin/class-wc-admin-taxonomies.php:195 -msgid "Upload/Add image" -msgstr "Laadi üles/lisa pilt" - -#: includes/admin/class-wc-admin-taxonomies.php:104 -#: includes/admin/class-wc-admin-taxonomies.php:196 -msgid "Remove image" -msgstr "Eemalda pilt" - -#: includes/admin/class-wc-admin-taxonomies.php:129 -#: includes/admin/class-wc-admin-taxonomies.php:217 -msgid "Use image" -msgstr "Kasuta pilti" - -#: includes/admin/class-wc-admin-taxonomies.php:275 -msgid "" -"Product categories for your store can be managed here. To change the order " -"of categories on the front-end you can drag and drop to sort them. To see " -"more categories listed click the \"screen options\" link at the top of the " -"page." -msgstr "" -"Sinu poe tootekategooriaid saab siit hallata. Et muuta kategooriate " -"järjestust poes, võid neid lihtsalt õigesse järjekorda lohistada. Kui " -"soovid, et korraga oleks rohkem kategooriaid näha, kliki \"ekraani seaded\" " -"viitele lehe ülaosas." - -#: includes/admin/class-wc-admin-taxonomies.php:285 -msgid "" -"Shipping classes can be used to group products of similar type. These groups " -"can then be used by certain shipping methods to provide different rates to " -"different products." -msgstr "" -"Tarneklasse saab kasutada sarnaste toodete rühmitamiseks. Neid gruppe saab " -"siis edaspidi kasutada selleks, et määrata erinevatele toodetele erinevaid " -"transpordihindu." - -#: includes/admin/class-wc-admin-taxonomies.php:298 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:192 -msgid "Image" -msgstr "Pilt" - -#: includes/admin/class-wc-admin-welcome.php:48 -msgid "Welcome to WooCommerce" -msgstr "Tere tulemast kasutama WooCommerce'i" - -#: includes/admin/class-wc-admin-welcome.php:135 -msgid "Welcome to WooCommerce %s" -msgstr "Tere tulemast kasutama WooCommerce'i %s" - -#: includes/admin/class-wc-admin-welcome.php:140 -msgid "Thanks, all done!" -msgstr "Aitäh, kõik on tehtud!" - -#: includes/admin/class-wc-admin-welcome.php:142 -msgid "Thank you for updating to the latest version!" -msgstr "Aitäh, et uuendasid uusimale versioonile!" - -#: includes/admin/class-wc-admin-welcome.php:144 -msgid "Thanks for installing!" -msgstr "Aitäh paigaldamise eest!" - -#: includes/admin/class-wc-admin-welcome.php:146 -msgid "" -"%s WooCommerce %s is more powerful, stable, and secure than ever before. We " -"hope you enjoy it." -msgstr "" -"%s WooCommerce %s on võimsam, stabiilsem ja turvalisem, kui kunagi varem. Me " -"loodame, et sa naudid seda." - -#: includes/admin/class-wc-admin-welcome.php:150 -msgid "Version %s" -msgstr "Versioon %s" - -#: includes/admin/class-wc-admin-welcome.php:154 -msgid "Docs" -msgstr "Dokumentatsioon" - -#: includes/admin/class-wc-admin-welcome.php:161 -msgid "What's New" -msgstr "Mida on uut" - -#: includes/admin/class-wc-admin-welcome.php:163 -msgid "Credits" -msgstr "Tänud" - -#: includes/admin/class-wc-admin-welcome.php:186 -msgid "Security in mind" -msgstr "Turvalisusega arvestatud" - -#: includes/admin/class-wc-admin-welcome.php:190 -msgid "Sucuri Safe Plugin" -msgstr "Sucuri Safe plugin" - -#: includes/admin/class-wc-admin-welcome.php:191 -msgid "" -"You will be happy to learn that WooCommerce has been audited and certified " -"by the Sucuri Security team. Whilst there is not much to be seen visually to " -"understand the amount of work that went into this audit, rest assured that " -"your website is powered by one of the most powerful and stable eCommerce " -"plugins available." -msgstr "" -"Ilmselt valmistab sulle headmeelt, et WooCommerce on auditeeritud ja " -"sertifitseeritud Sucuri Security meeskonna poolt. Kuigi palja silmaga pole " -"eriti näha kui palju tööd selle auditi nimel tehti, võid kindel olla, et " -"sinu veebilehte jooksutab üks võimsaimatest ja stabiilsematest e-kaubanduse " -"pluginatest." - -#: includes/admin/class-wc-admin-welcome.php:194 -msgid "A Smoother Admin Experience" -msgstr "Sujuvam kogemus haldurile" - -#: includes/admin/class-wc-admin-welcome.php:200 -msgid "New Product Panel" -msgstr "Uus toodete paneel" - -#: includes/admin/class-wc-admin-welcome.php:201 -msgid "" -"We have revised the product data panel making it cleaner, more streamlined, " -"and more logical. Adding products is a breeze!" -msgstr "" -"Me oleme toote andmete paneeli üle vaadanud ja teinud selle selgemaks, " -"sujuvamaks ja loogilisemaks. Toodete lisamine on imelihtne!" - -#: includes/admin/class-wc-admin-welcome.php:206 -msgid "Nicer Order Screens" -msgstr "Kenamad tellimuse vaated" - -#: includes/admin/class-wc-admin-welcome.php:207 -msgid "" -"Order pages have had a cleanup, with a more easily scannable interface. We " -"particularly like the new status icons!" -msgstr "" -"Tellimuse lehti on puhastatud ja nende kasutajaliides on nüüd kergemini " -"hoomatav. Meile endal meeldivad eriti uued olekuikoonid!" - -#: includes/admin/class-wc-admin-welcome.php:212 -msgid "Multi-Download Support" -msgstr "Mitme allalaaditava faili tugi" - -#: includes/admin/class-wc-admin-welcome.php:213 -msgid "" -"Products can have multiple downloadable files - purchasers will get access " -"to all the files added." -msgstr "" -"Toodetel võib olla mitu allalaaditavat faili - ostjad saavad ligipääsu " -"kõikidele lisatud failidele." - -#: includes/admin/class-wc-admin-welcome.php:218 -msgid "Less Taxing Taxes" -msgstr "Vähenõudlikumad maksud" - -#: includes/admin/class-wc-admin-welcome.php:224 -msgid "New Tax Input Panel" -msgstr "Uus maksude sisestamise paneel" - -#: includes/admin/class-wc-admin-welcome.php:225 -msgid "" -"The tax input pages have been streamlined to make inputting taxes simpler - " -"adding multiple taxes for a single jurisdiction is now much easier using the " -"priority system. There is also CSV import/export support." -msgstr "" -"Maksude sisestamise lehed on ümber tehtud nii, et maksude sisestamine oleks " -"lihtsam - mitme maksu lisamine ühe kehtivuskpiirkonna jaoks on nüüd palju " -"lihtsam kui enne. Samuti on olemas tugi CSV impordi/ekspordi jaoks." - -#: includes/admin/class-wc-admin-welcome.php:229 -msgid "Improved Tax Options" -msgstr "Täiendatud võimalused maksudele" - -#: includes/admin/class-wc-admin-welcome.php:230 -msgid "" -"As requested by some users, we now support taxing the billing address " -"instead of shipping (optional), and we allow you to choose which tax class " -"applies to shipping." -msgstr "" -"Mõnede kasutajate soovide kohasel toetame me nüüd maksustamist tarneaadressi " -"asemel arveaadressi alusel (valikuline). Samuti on võimalik valida, milline " -"maksuklass kehtib transpordile." - -#: includes/admin/class-wc-admin-welcome.php:235 -msgid "Product Listing Improvements Customers Will Love" -msgstr "Tootekataloogi täiendused, mis meeldivad sinu klientidele" - -#: includes/admin/class-wc-admin-welcome.php:241 -msgid "New Sorting Options" -msgstr "Uued järjestusvõimalused" - -#: includes/admin/class-wc-admin-welcome.php:242 -msgid "Customers can now sort products by popularity and ratings." -msgstr "" -"Kliendid saavad nüüd tooteid järjestada populaarsuse ja hinnangute alusel." - -#: includes/admin/class-wc-admin-welcome.php:247 -msgid "Better Pagination and Result Counts" -msgstr "Parem lehtedeks jaotamine ja tulemuste loendamine" - -#: includes/admin/class-wc-admin-welcome.php:248 -msgid "" -"Numbered pagination has been added to core, and we show the number of " -"results found above the listings." -msgstr "" -"Nummerdatud lehtedeks jaotamine on lisatud põhifunktsionaalsuse hulka ning " -"me näitame leitud tulemuste arvu ülalpool nimekirju." - -#: includes/admin/class-wc-admin-welcome.php:253 -msgid "Inline Star Rating Display" -msgstr "Hinnangu kuvamine tärnidega" - -#: includes/admin/class-wc-admin-welcome.php:254 -msgid "" -"We have added star ratings to the catalog which are pulled from reviews." -msgstr "" -"Me oleme kataloogi lisanud toodete hinnangutärnid, mis põhinevad ülevaadetel." - -#: includes/admin/class-wc-admin-welcome.php:262 -msgid "Under the Hood" -msgstr "Kapoti all" - -#: includes/admin/class-wc-admin-welcome.php:266 -msgid "New product classes" -msgstr "Uued tooteklassid" - -#: includes/admin/class-wc-admin-welcome.php:267 -msgid "" -"The product classes have been rewritten and are now factory based. Much more " -"extendable, and easier to query products using the new get_product() function." -msgstr "" -"Toote klassid on täiesti ümber kirjutatud on nüüd tehasel baseeruvad. See " -"tähendab, et nad on palju kergemini laiendatavad ja toodete päring on palju " -"lihtsam tänu uuele get_product() funktsioonile." - -#: includes/admin/class-wc-admin-welcome.php:271 -msgid "Capability overhaul" -msgstr "Võimete uuendus" - -#: includes/admin/class-wc-admin-welcome.php:272 -msgid "" -"More granular capabilities for admin/shop manager roles covering products, " -"orders and coupons." -msgstr "" -"Detailsemad võimed halduri ja poe halduri rollidele katavad tooteid, " -"tellimusi ja kuponge." - -#: includes/admin/class-wc-admin-welcome.php:276 -msgid "API Improvements" -msgstr "API täiendused" - -#: includes/admin/class-wc-admin-welcome.php:277 -msgid "" -"WC-API now has real endpoints, and we've optimised the gateways " -"API significantly by only loading gateways when needed." -msgstr "" -"WC-API kasutab nüüd päris sihtpunkte ning me oleme optimeerinud " -"makseviiside APIt oluliselt laadided makseviisid ainult siis, kui neid vaja " -"läheb." - -#: includes/admin/class-wc-admin-welcome.php:283 -msgid "Cache-friendly cart widgets" -msgstr "Vahemälusõbralikud ostukorvi vidinad" - -#: includes/admin/class-wc-admin-welcome.php:284 -msgid "" -"Cart widgets and other \"fragments\" are now pulled in via AJAX - this works " -"wonders with static page caching." -msgstr "" -"Ostukorvi vidinad ja teised \"fragmendid\" laetakse nüüd AJAXi abil - see " -"teeb koos staatiliste lehtede vahemäluga imesid." - -#: includes/admin/class-wc-admin-welcome.php:288 -msgid "Session handling" -msgstr "Sessioonide käsitsemine" - -#: includes/admin/class-wc-admin-welcome.php:289 -msgid "" -"PHP SESSIONS have been a problem for many users in the past, so we've " -"developed our own handler using cookies and options to make these more " -"reliable." -msgstr "" -"PHP sessioonid on olnud minevikus paljudele kasutajatele probleemiks, " -"seetõttu oleme välja töötanud päris oma sessioonide haldamise süsteemi, mis " -"kasutab küpsiseid ning annab sulle valikuid, mis teevad selle töökindlamaks." - -#: includes/admin/class-wc-admin-welcome.php:293 -msgid "Retina Ready" -msgstr "Retina kuva" - -#: includes/admin/class-wc-admin-welcome.php:294 -msgid "All graphics within WC have been optimised for HiDPI displays." -msgstr "Kõik graafika WC sees on optimeeritud HiDPI-kuvade jaoks." - -#: includes/admin/class-wc-admin-welcome.php:301 -msgid "Better stock handling" -msgstr "Parem laoseisude haldus" - -#: includes/admin/class-wc-admin-welcome.php:302 -msgid "" -"We have added an option to hold stock for unpaid orders (defaults to " -"60mins). When this time limit is reached, and the order is not paid for, " -"stock is released and the order is cancelled." -msgstr "" -"Oleme lisanud võimaluse hoida laos tooteid maksmata tellimuste jaoks kinni " -"(vaikimisi 60 minutit). Kui see piir ületatakse ja tellimuse eest ei ole " -"makstud, lastakse tooted laos jälle vabaks ning tellimus tühistatakse." - -#: includes/admin/class-wc-admin-welcome.php:306 -msgid "Improved Line-item storage" -msgstr "Täiustatud tellimuseridade säilitamine" - -#: includes/admin/class-wc-admin-welcome.php:307 -msgid "" -"We have changed how order items get stored making them easier (and faster) " -"to access for reporting. Order items are no longer serialised within an " -"order - they are stored within their own table." -msgstr "" -"Oleme muutnud seda, kuidas tellmimusel olevaid tooteid sorteeritakse. See " -"teeb lihtsamaks (ja kiiremaks) nende kasutamise raportites. Tellimusel " -"olevad tooted ei ole enam tellimuse juures serialiseeritud kujul - neid " -"hoitakse nüüd eraldi tabelis." - -#: includes/admin/class-wc-admin-welcome.php:311 -msgid "Autoload" -msgstr "Automaatne laadimine" - -#: includes/admin/class-wc-admin-welcome.php:312 -msgid "" -"We have setup autoloading for classes - this has dramatically reduced memory " -"usage in 2.0." -msgstr "" -"Oleme seadistanud klasside automaatse laadimise - see on väga suurel määral " -"vähendanud mälukasutust versioonis 2.0." - -#: includes/admin/class-wc-admin-welcome.php:319 -msgid "Go to WooCommerce Settings" -msgstr "Mine WooCommerce'i seadetesse" - -#: includes/admin/class-wc-admin-welcome.php:337 -msgid "" -"WooCommerce is developed and maintained by a worldwide team of passionate " -"individuals and backed by an awesome developer community. Want to see your " -"name? Contribute to WooCommerce." -msgstr "" -"WooCommerce'i arendab ülemaailmne meesnaiskond kirglikke inimesi, keda " -"toetab vägev arendajate kogukond. Tahaksid oma nime näha? Anna panus " -"WooCommerce'i." - -#: includes/admin/class-wc-admin-welcome.php:363 -msgid "View %s" -msgstr "Vaata %s" - -#: includes/admin/class-wc-admin.php:109 -#: includes/admin/settings/class-wc-settings-checkout.php:159 -msgid "Order Received" -msgstr "Tellimus vastu võetud" - -#: includes/admin/importers/class-wc-tax-rate-importer.php:103 -#: includes/admin/importers/class-wc-tax-rate-importer.php:190 -#: includes/admin/importers/class-wc-tax-rate-importer.php:230 -#: includes/admin/importers/class-wc-tax-rate-importer.php:245 -msgid "Sorry, there has been an error." -msgstr "Vabandame, esines viga." - -#: includes/admin/importers/class-wc-tax-rate-importer.php:104 -msgid "The file does not exist, please try again." -msgstr "Sellist faili ei ole olemas. Proovi palun uuesti." - -#: includes/admin/importers/class-wc-tax-rate-importer.php:191 -msgid "The CSV is invalid." -msgstr "CSV fail on vigane." - -#: includes/admin/importers/class-wc-tax-rate-importer.php:202 -msgid "" -"Import complete - imported %s tax rates and skipped " -"%s." -msgstr "" -"Importimine lõppenud - imporditi %s maksumäära ja vahele " -"jäeti %s." - -#: includes/admin/importers/class-wc-tax-rate-importer.php:212 -msgid "All done!" -msgstr "Kõik valmis!" - -#: includes/admin/importers/class-wc-tax-rate-importer.php:212 -msgid "View Tax Rates" -msgstr "Vaata maksumäärasid" - -#: includes/admin/importers/class-wc-tax-rate-importer.php:263 -msgid "Import Tax Rates" -msgstr "Impordi maksumäärad" - -#: includes/admin/importers/class-wc-tax-rate-importer.php:286 -msgid "" -"Hi there! Upload a CSV file containing tax rates to import the contents into " -"your shop. Choose a .csv file to upload, then click \"Upload file and import" -"\"." -msgstr "" -"Tervist! Laadi üles CSV fail maksumääradega, mida soovid oma poodi " -"importida. Vali üleslaadimiseks sobiv .csv fail ja vajuta siis \"Laadi fail " -"üles ja impordi\" nupul." - -#: includes/admin/importers/class-wc-tax-rate-importer.php:288 -msgid "" -"Tax rates need to be defined with columns in a specific order (10 columns). " -"Click here to download a sample." -msgstr "" -"Maksumäärad peab sisestama kindla järjekorraga tulpades (10 tulpa). Laadi siit alla näidisfail." - -#: includes/admin/importers/class-wc-tax-rate-importer.php:296 -msgid "" -"Before you can upload your import file, you will need to fix the following " -"error:" -msgstr "" -"Enne kui saad oma faili üles laadida ja importida, pead parandame järgneva " -"vea:" - -#: includes/admin/importers/class-wc-tax-rate-importer.php:305 -msgid "Choose a file from your computer:" -msgstr "Vali oma arvutist fail:" - -#: includes/admin/importers/class-wc-tax-rate-importer.php:311 -msgid "Maximum size: %s" -msgstr "Maksimumsuurus: %s" - -#: includes/admin/importers/class-wc-tax-rate-importer.php:316 -msgid "OR enter path to file:" -msgstr "VÕI sisesta faili asukoht:" - -#: includes/admin/importers/class-wc-tax-rate-importer.php:323 -msgid "Delimiter" -msgstr "Eraldaja" - -#: includes/admin/importers/class-wc-tax-rate-importer.php:329 -msgid "Upload file and import" -msgstr "Laadi fail üles ja impordi" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:83 -msgid "Product name" -msgstr "Toote nimi" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:104 -msgid "Catalog/search" -msgstr "Kataloog/otsing" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:105 -#: includes/admin/views/html-bulk-edit-product.php:158 -#: includes/admin/views/html-quick-edit-product.php:115 -msgid "Catalog" -msgstr "Kataloog" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:106 -#: includes/admin/views/html-bulk-edit-product.php:159 -#: includes/admin/views/html-quick-edit-product.php:116 -msgid "Search" -msgstr "Otsing" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:107 -#: includes/admin/views/html-bulk-edit-product.php:160 -#: includes/admin/views/html-quick-edit-product.php:117 -msgid "Hidden" -msgstr "Peidetud" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:111 -msgid "Catalog visibility:" -msgstr "Nähtavus kataloogis:" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:126 -msgid "" -"Define the loops this product should be visible in. The product will still " -"be accessible directly." -msgstr "" -"Määra, millistes tsüklites see toode peaks nähtav olema. Toode on sellest " -"valikust hoolimata ligipääsetav otse." - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:132 -msgid "Enable this option to feature this product." -msgstr "Lülita see valik sisse, kui soovid toodet esile tõsta." - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:134 -msgid "Featured Product" -msgstr "Esiletõstetud toode" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:137 -msgid "OK" -msgstr "Olgu" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:138 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:169 -msgid "Cancel" -msgstr "Tühista" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:197 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:135 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:52 -#: includes/admin/views/html-quick-edit-product.php:11 -msgid "SKU" -msgstr "Tootekood" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:202 -#: includes/admin/views/html-bulk-edit-product.php:10 -#: includes/admin/views/html-email-template-preview.php:10 -#: includes/admin/views/html-quick-edit-product.php:22 -msgid "Price" -msgstr "Hind" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:204 -#: includes/admin/reports/class-wc-report-sales-by-category.php:138 -msgid "Categories" -msgstr "Kategooriad" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:205 -msgid "Tags" -msgstr "Sildid" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:208 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:93 -#: includes/admin/reports/class-wc-report-coupon-usage.php:313 -#: includes/admin/reports/class-wc-report-customers.php:199 -#: includes/admin/reports/class-wc-report-sales-by-category.php:210 -#: includes/admin/reports/class-wc-report-sales-by-date.php:158 -#: includes/admin/reports/class-wc-report-sales-by-product.php:323 -msgid "Date" -msgstr "Kuupäev" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:251 -msgid "Edit this item" -msgstr "Muuda seda" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:252 -msgid "Edit this item inline" -msgstr "Muuda seda kiirkorras" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:252 -msgid "Quick Edit" -msgstr "Kiirkirjutamine" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:256 -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:98 -msgid "Restore this item from the Trash" -msgstr "Taasta see toode prügikastist." - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:256 -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:98 -msgid "Restore" -msgstr "Taasta" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:258 -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:100 -msgid "Move this item to the Trash" -msgstr "Viska see toode prügikasti" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:258 -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:100 -msgid "Trash" -msgstr "Prügi" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:260 -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:102 -msgid "Delete this item permanently" -msgstr "Kustuta see toode lõplikult" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:260 -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:102 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:65 -msgid "Delete Permanently" -msgstr "Kustuta jäädavalt" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:265 -msgid "Preview “%s”" -msgstr "Eelvaade “%s”" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:265 -msgid "Preview" -msgstr "Eelvaade" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:267 -msgid "View “%s”" -msgstr "Vaata “%s”" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:267 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:298 -#: includes/admin/reports/class-wc-report-stock.php:114 -msgid "View" -msgstr "Vaata" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:317 -msgid "Grouped" -msgstr "Rühmitatud" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:319 -msgid "External/Affiliate" -msgstr "Väline/partner" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:323 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:514 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:51 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:213 -msgid "Virtual" -msgstr "Virtuaalne" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:325 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:507 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:58 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:211 -msgid "Downloadable" -msgstr "Allalaaditav" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:327 -msgid "Simple" -msgstr "Lihtne" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:331 -msgid "Variable" -msgstr "Varieeruv" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:354 -msgid "Toggle featured" -msgstr "Lülita esiletõstmine sisse/välja" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:356 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:135 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:200 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:202 -#: includes/admin/views/html-admin-page-status-report.php:39 -#: includes/admin/views/html-admin-page-status-report.php:76 -#: includes/admin/views/html-admin-page-status-report.php:101 -#: includes/admin/views/html-admin-page-status-report.php:270 -#: includes/admin/views/html-bulk-edit-product.php:176 -#: includes/admin/views/html-bulk-edit-product.php:213 -msgid "Yes" -msgstr "Jah" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:358 -#: includes/admin/views/html-admin-page-status-report.php:39 -#: includes/admin/views/html-admin-page-status-report.php:76 -#: includes/admin/views/html-admin-page-status-report.php:101 -#: includes/admin/views/html-admin-page-status-report.php:270 -#: includes/admin/views/html-bulk-edit-product.php:177 -#: includes/admin/views/html-bulk-edit-product.php:214 -msgid "No" -msgstr "Ei" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:365 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:301 -#: includes/admin/reports/class-wc-report-stock.php:91 -#: includes/admin/views/html-bulk-edit-product.php:194 -#: includes/admin/views/html-quick-edit-product.php:137 -msgid "In stock" -msgstr "Laos" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:449 -msgid "Sort Products" -msgstr "Järjesta tooteid" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:469 -msgid "Show all product types" -msgstr "Näita kõiki tüüpi tooteid" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:481 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:37 -msgid "Grouped product" -msgstr "Rühmitatud toode" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:484 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:38 -msgid "External/Affiliate product" -msgstr "Väline/partneri toode" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:487 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:39 -msgid "Variable product" -msgstr "Varieeruv toode" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:490 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:36 -msgid "Simple product" -msgstr "Lihtne toode" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:52 -msgid "Coupon code" -msgstr "Kupongi kood" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:64 -msgid "Code" -msgstr "Kood" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:65 -msgid "Coupon type" -msgstr "Kupongi tüüp" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:66 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:44 -#: includes/admin/reports/class-wc-report-sales-by-date.php:320 -msgid "Coupon amount" -msgstr "Kupongi summa" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:67 -msgid "Description" -msgstr "Kirjeldus" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:68 -msgid "Product IDs" -msgstr "Toodete ID-d" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:69 -msgid "Usage / Limit" -msgstr "Kasutatud / Limiit" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:70 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:155 -msgid "Expiry date" -msgstr "Aegumiskuupäev" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:89 -msgid "Edit coupon" -msgstr "Muuda kupongi" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:147 -msgid "%s / %s" -msgstr "%s / %s" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:149 -msgid "%s / ∞" -msgstr "%s / ∞" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:195 -msgid "Show all types" -msgstr "Näita kõiki" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:86 -#: includes/admin/settings/class-wc-settings-checkout.php:220 -#: includes/admin/settings/class-wc-settings-shipping.php:205 -msgid "Status" -msgstr "Olek" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:87 -msgid "Order" -msgstr "Tellimus" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:88 -msgid "Purchased" -msgstr "Ostetud" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:89 -msgid "Ship to" -msgstr "Tarne" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:91 -msgid "Customer Message" -msgstr "Teade kliendile" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:92 -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:97 -msgid "Order Notes" -msgstr "Märkused tellimuse kohta" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:94 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:43 -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:62 -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:171 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:129 -msgid "Total" -msgstr "Kokku" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:95 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:34 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:81 -#: includes/admin/reports/class-wc-report-customer-list.php:244 -#: includes/admin/reports/class-wc-report-stock.php:141 -msgid "Actions" -msgstr "Toimingud" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:119 -msgid "Unpublished" -msgstr "Avaldamata" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:121 -msgid "Y/m/d g:i:s A" -msgstr "j.n.Y H:i" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:126 -msgid "Y/m/d" -msgstr "d.m.Y" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:147 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:185 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:213 -msgid "Via" -msgstr "-" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:151 -msgid "%d item" -msgid_plural "%d items" -msgstr[0] "%d toode" -msgstr[1] "%d toodet" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:202 -msgid "plus %d other note" -msgid_plural "plus %d other notes" -msgstr[0] "ning %d märkus veel" -msgstr[1] "ning %d märkust veel" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:220 -msgid "Billing:" -msgstr "Arveldus:" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:223 -msgid "Tel:" -msgstr "Tel:" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:242 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:263 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:169 -msgid "Guest" -msgstr "Külaline" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:266 -msgid "%s by %s" -msgstr "%s - %s" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:285 -msgid "Processing" -msgstr "Töötluses" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:292 -msgid "Complete" -msgstr "Täidetud" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:384 -msgid "Show all statuses" -msgstr "Näita kõiki olekuid" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:403 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:428 -msgid "Show all customers" -msgstr "Näita kõiki kliente" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:645 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:646 -msgid "Mark processing" -msgstr "Pane töötlusse" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:648 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:649 -msgid "Mark on-hold" -msgstr "Pane ootele" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:651 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:652 -msgid "Mark completed" -msgstr "Märgi täidetuks" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:693 -msgid "Order status changed by bulk edit:" -msgstr "Tellimuse staatust muudeti mitme tellimuse korraga muutmisel:" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:715 -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "Tellimuse olekut muudeti." -msgstr[1] "%d tellimuse olekut muudeti." - -#: includes/admin/post-types/class-wc-admin-cpt.php:44 -msgid "Insert into %s" -msgstr "Sisesta %s" - -#: includes/admin/post-types/class-wc-admin-cpt.php:45 -msgid "Uploaded to this %s" -msgstr "Üles laaditud siia %s" - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:89 -msgid "Product Short Description" -msgstr "Toote lühikirjeldus" - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:90 -#: includes/admin/settings/class-wc-settings-products.php:283 -#: includes/admin/views/html-bulk-edit-product.php:4 -#: includes/admin/views/html-quick-edit-product.php:4 -msgid "Product Data" -msgstr "Toote andmed" - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:91 -msgid "Product Gallery" -msgstr "Toote galerii" - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:94 -msgid "Order Data" -msgstr "Tellimuse andmed" - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:95 -msgid "Order Items" -msgstr "Tellimuse read" - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:96 -msgid "Order Totals" -msgstr "Tellimuse summad" - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:98 -msgid "Downloadable Product Permissions" -msgstr "Allalladitavate failide ligipääsud" - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:98 -msgid "" -"Note: Permissions for order items will automatically be granted when the " -"order status changes to processing/completed." -msgstr "" -"Märkus: Ligipääsud failide allalaadimiseks antakse automaatselt kui " -"tellimuse olek muutub ja uueks olekuks saab töötluses/täidetud." - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:99 -msgid "Order Actions" -msgstr "Tellimuse toimingud" - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:102 -msgid "Coupon Data" -msgstr "Kupongi andmed" - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:133 -msgid "Reviews" -msgstr "Ülevaated" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:36 -msgid "Coupon description" -msgstr "Kupongi kirjeldus" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:36 -msgid "Optionally enter a description for this coupon for your reference." -msgstr "Soovi korral võid enda jaoks sisetada sellele kupongile kirjelduse." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:41 -msgid "Discount type" -msgstr "Allahindluse tüüp" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:44 -msgid "Value of the coupon." -msgstr "Kupongi väärtus." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:47 -msgid "Enable free shipping" -msgstr "Tasuta transport" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:47 -msgid "" -"Check this box if the coupon grants free shipping. The free " -"shipping method must be enabled with the \"must use coupon\" setting " -"checked." -msgstr "" -"Tee siia linnuke, kui see kupong annab tasuta transpordi. Tasuta transport peab olema sisse lülitatud ja samuti valik \"peab " -"kasutama kupongi\"." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:50 -msgid "Individual use" -msgstr "Üksikuna kasutamiseks" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:50 -msgid "" -"Check this box if the coupon cannot be used in conjunction with other " -"coupons." -msgstr "" -"Tee siia linnuke, kui seda kupongit ei saa kasutada teiste kupongitega koos." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:53 -msgid "Apply before tax" -msgstr "Rakenda enne makse" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:53 -msgid "" -"Check this box if the coupon should be applied before calculating cart tax." -msgstr "" -"Tee siia linnuke, kui see kupong peaks rakenduma enne ostukorvi maksude " -"arvutamist." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:56 -msgid "Exclude sale items" -msgstr "Välista allahindlusega tooted" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:56 -msgid "" -"Check this box if the coupon should not apply to items on sale. Per-item " -"coupons will only work if the item is not on sale. Per-cart coupons will " -"only work if there are no sale items in the cart." -msgstr "" -"Tee siia linnuke, kui see kupong ei kehti allahindlusega toodetele. " -"Tootepõhised kupongid kehtivaid ainult siis, kui toode ei ole " -"allahindlusega. Ostukorvipõhised kupongid kehtivad ainult siis, kui " -"ostukorvis ei ole ühtegi allahindlusega toodet." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:61 -msgid "Minimum amount" -msgstr "Minimaalne summa" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:61 -msgid "No minimum" -msgstr "Miinimumi ei ole" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:61 -msgid "" -"This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "" -"See väli võimaldab sul määrata minimaalse summa (ilma maksudeta), mis on " -"vajalik selle kupongi kasutamiseks." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:68 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:95 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:585 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:602 -#: includes/admin/reports/class-wc-report-sales-by-product.php:177 -msgid "Search for a product…" -msgstr "Otsi toodet…" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:81 -msgid "" -"Products which need to be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are discounted." -msgstr "" -"Tooted, mis peavad selle kupongi kasutamiseks olema ostukorvis, või \"Toote " -"allahindluse\" puhul tooted, millele tehakse allahindlus." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:86 -msgid "Exclude products" -msgstr "Välista tooted" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:87 -msgid "Search for a product…" -msgstr "Otsi toodet…" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:100 -msgid "" -"Products which must not be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are not discounted." -msgstr "" -"Tooted, mida selle selle kupongi kasutamiseks ostukorvis olla ei tohi, või " -"\"Toote allahindluse\" puhul tooted, millele allahindlust ei tehta." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:107 -msgid "Product categories" -msgstr "Tootekategooriad" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:108 -msgid "Any category" -msgstr "Ükskõik milline kategooria" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:116 -msgid "" -"A product must be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will be discounted." -msgstr "" -"Toode peab olema kupongi kehtimiseks selles kategoorias, või \"Toote " -"allahindluse\" puhul tehakse toodetele nendes kategooriates allahindlus." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:121 -msgid "Exclude categories" -msgstr "Välista kategooriad" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:122 -msgid "No categories" -msgstr "Mitte ühtegi" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:130 -msgid "" -"Product must not be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will not be discounted." -msgstr "" -"Toode ei tohi kupongi kehtimiseks selles kategoorias olla, või \"Toore " -"allahindluse\" puhul ei tehta toodetele nendes kategooriates allahindlust." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:136 -msgid "Email restrictions" -msgstr "E-posti piirangud" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:136 -msgid "No restrictions" -msgstr "Piiranguid pole" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:136 -msgid "" -"List of emails to check against the customer's billing email when an order " -"is placed." -msgstr "" -"Nimekiri e-posti aadressidest, millele kliendi arvelduse e-posti aadress " -"peab vastama." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:143 -msgid "Usage limit" -msgstr "Kasutamise piirmäär" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:143 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:149 -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "Piiramatu kasutusega" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:143 -msgid "How many times this coupon can be used before it is void." -msgstr "" -"Kui mitu korda saab seda kupongi kasutada enne, kui see kehtivuse kaotab." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:149 -msgid "Usage limit per user" -msgstr "Piirmäär kasutaja kohta" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:149 -msgid "" -"How many times this coupon can be used by an invidual user. Uses billing " -"email for guests, and user ID for logged in users." -msgstr "" -"Kui mitu korda üks ja seesama klient seda kupongi saab kasutada. Klienti " -"kontrollitakse arvelduse e-posti aadressi alusel (külaliste puhul), või " -"kasutaja ID alusel (registreeritud kasutajad)." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:155 -msgctxt "placeholder" -msgid "Never expire" -msgstr "Ei aegu kunagi" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:155 -msgid "The date this coupon will expire, YYYY-MM-DD." -msgstr "Kuupäev, millal kupong kaotab kehtivuse, AAAA-KK-PP." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:186 -msgid "" -"Coupon code already exists - customers will use the latest coupon with this " -"code." -msgstr "" -"Kupongi kood on juba olemas - klientidele rakendub uusim sellise koodiga " -"kupong." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:35 -msgid "Resend order emails" -msgstr "Saada tellimuse e-kirjad uuesti" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:52 -msgid "Generate Download Permissions" -msgstr "Genereeri allalaadimise õigused" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:58 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:91 -msgid "Apply" -msgstr "Rakenda" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:67 -msgid "Move to Trash" -msgstr "Saada ptügikasti" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:72 -msgid "Save Order" -msgstr "Salvesta tellimus" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:72 -msgid "Save/update the order" -msgstr "Salvesta/uuenda tellimust" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:29 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:76 -msgid "First Name" -msgstr "Eesnimi" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:33 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:80 -msgid "Last Name" -msgstr "Perenimi" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:60 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:107 -msgid "Select a country…" -msgstr "Vali riik…" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:70 -msgid "Phone" -msgstr "Telefon" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:139 -msgid "Order Details" -msgstr "Tellimuse andmed" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:142 -msgid "Order number" -msgstr "Tellimuse number" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:145 -msgid "Customer IP:" -msgstr "Kliendi IP:" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:150 -msgid "General Details" -msgstr "Üldandmed" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:152 -msgid "Order date:" -msgstr "Tellimuse kuupäev:" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:153 -msgid "h" -msgstr "t" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:153 -#: includes/admin/settings/class-wc-settings-products.php:311 -msgid "m" -msgstr "m" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:156 -msgid "Order status:" -msgstr "Tellimuse olek:" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:167 -msgid "Customer:" -msgstr "Klient:" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:182 -msgid "Billing Details" -msgstr "Arvelduse andmed" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:188 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:190 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:267 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:269 -msgid "Address" -msgstr "Aadress" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:190 -msgid "No billing address set." -msgstr "Arveaadressi ei ole veel määratud." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:208 -msgid "Payment Method" -msgstr "Makseviis" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:213 -msgid "Load billing address" -msgstr "Laadi arvelduse aadress" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:230 -msgid "Payment Method:" -msgstr "Makseviis:" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:232 -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:33 -#: includes/admin/post-types/meta-boxes/views/html-order-shipping.php:12 -#: includes/admin/post-types/meta-boxes/views/html-order-tax.php:8 -msgid "N/A" -msgstr "-" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:245 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:247 -#: includes/admin/post-types/meta-boxes/views/html-order-shipping.php:30 -#: includes/admin/post-types/meta-boxes/views/html-order-shipping.php:32 -msgid "Other" -msgstr "Muu" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:261 -msgid "Shipping Details" -msgstr "Transpordi üksikasjad" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:269 -msgid "No shipping address set." -msgstr "Kohaletoimetamise aadress ei ole veel määratud." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:282 -msgid "Customer Note" -msgstr "Märkus kliendile" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:287 -msgid "Load shipping address" -msgstr "Laadi tarneaadress" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:287 -msgid "Copy from billing" -msgstr "Kopeeri arvelduse aadress" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:304 -msgid "Customer Note:" -msgstr "Kliendi märkused:" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:305 -msgid "Customer's notes about the order" -msgstr "Kliendi märkmed tellimuse kohta" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-downloads.php:56 -msgid "Choose a downloadable product…" -msgstr "Vali allalaaditav toode…" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-downloads.php:85 -msgid "Grant Access" -msgstr "Luba ligipääs" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-downloads.php:123 -msgid "" -"Could not grant access - the user may already have permission for this file " -"or billing email is not set. Ensure the billing email is set, and the order " -"has been saved." -msgstr "" -"Ligipääsu ei õnnestunud anda - kasutajal võib juba antud failile ligipääs " -"olla või tema arvelduse e-posti aadressi ei pruugi olla määratud. Veendu, et " -"arvelduse e-posti aadress on määratud ja et tellimus on salvestatud." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-downloads.php:146 -msgid "Are you sure you want to revoke access to this download?" -msgstr "" -"Oled kindel, et soovid ligipääsu selle faili allalaadimisele eemaldada?" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:33 -msgid "Item" -msgstr "Toode" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:38 -msgid "Tax Class" -msgstr "Maksuklass" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:41 -msgid "Qty" -msgstr "Kogus" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:46 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:118 -#: includes/admin/settings/class-wc-settings-tax.php:25 -#: includes/admin/settings/class-wc-settings-tax.php:548 -#: includes/admin/settings/class-wc-settings-tax.php:636 -msgid "Tax" -msgstr "Maksud" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:83 -msgid "Delete Lines" -msgstr "Kustuta read" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:85 -msgid "Stock Actions" -msgstr "Laoseisu toimingud" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:86 -msgid "Reduce Line Stock" -msgstr "Vähenda laoseisu" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:87 -msgid "Increase Line Stock" -msgstr "Suurenda laoseisu" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:97 -msgid "Add item(s)" -msgstr "Lisa toode/tooted" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:98 -msgid "Add fee" -msgstr "Lisa lisatasu" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:44 -msgid "added %s ago" -msgstr "lisatud %s tagasi" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:45 -msgid "by %s" -msgstr "- %s" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:46 -msgid "Delete note" -msgstr "Kustuta märkus" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:52 -msgid "There are no notes for this order yet." -msgstr "Selle tellimuse kohta veel märkmeid ei ole." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:58 -msgid "Add note" -msgstr "Lisa märkus" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:58 -msgid "" -"Add a note for your reference, or add a customer note (the user will be " -"notified)." -msgstr "" -"Lisa endale märkus või lisa kliendile nähtav märkus (kasutaja saab vastava " -"teate)." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:64 -msgid "Customer note" -msgstr "Märkus kliendile" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:65 -msgid "Private note" -msgstr "Privaatne märkus" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:67 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:563 -msgid "Add" -msgstr "Lisa" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:31 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:62 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:94 -#: includes/admin/settings/class-wc-settings-shipping.php:25 -#: includes/admin/settings/class-wc-settings-tax.php:264 -#: includes/admin/settings/class-wc-settings-tax.php:381 -#: includes/admin/views/html-admin-page-addons.php:13 -msgid "Shipping" -msgstr "Tarne" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:66 -msgid "+ Add shipping cost" -msgstr "+ Lisa tarnekulu" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:66 -msgid "These are the shipping and handling costs for the order." -msgstr "Need on tellimuse transpordi- ja käsitluskulud." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:106 -msgid "+ Add tax row" -msgstr "+ Lisa maksurida" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:106 -msgid "" -"These rows contain taxes for this order. This allows you to display multiple " -"or compound taxes rather than a single total." -msgstr "" -"Need read sisaldavad makse selle tellimuse kohta. See võimaldab sul näidata " -"mitut või liidetavaid makse eraldi (nt. käibemaksueristuse jaoks) ühe " -"kogusumma asemel." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:113 -msgid "Order Discount" -msgstr "Tellimuse allahindlus" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:120 -msgid "Order Total" -msgstr "Tellimus kokku" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:148 -msgid "Calculate Tax" -msgstr "Arvuta maksud" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:150 -msgid "Calculate Total" -msgstr "Arvuta summad" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:42 -msgid "Product Type" -msgstr "Toote tüüp" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:52 -msgid "Virtual products are intangible and aren't shipped." -msgstr "Virtuaalsed tooted on immateriaalsed ja neid ei transpordita." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:59 -msgid "Downloadable products give access to a file upon purchase." -msgstr "Allalaaditavad tooted annavad ostmise korral ligipääsu faili(de)le." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:84 -#: includes/admin/settings/class-wc-settings-general.php:25 -msgid "General" -msgstr "Üldine" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:89 -#: includes/admin/settings/class-wc-settings-products.php:41 -msgid "Inventory" -msgstr "Laohaldus" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:99 -msgid "Linked Products" -msgstr "Seotud tooted" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:109 -msgid "Variations" -msgstr "Variatsioonid" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:114 -msgid "Advanced" -msgstr "Täpsemad seaded" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:135 -msgid "Stock Keeping Unit" -msgstr "Toote tunnuskood" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:135 -msgid "" -"SKU refers to a Stock-keeping unit, a unique identifier for each distinct " -"product and service that can be purchased." -msgstr "Tootekood on unikaalne kood toote või teenuse tuvastamiseks." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:146 -msgid "Product URL" -msgstr "Toote URL" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:146 -msgid "Enter the external URL to the product." -msgstr "Sisesta väline URL tootele." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:149 -msgid "Button text" -msgstr "Nupu tekst" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:149 -msgctxt "placeholder" -msgid "Buy product" -msgstr "Osta toode" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:149 -msgid "This text will be shown on the button linking to the external product." -msgstr "Seda teksti näidatakse nupul, mis viib välise tooteni." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:156 -msgid "Regular Price" -msgstr "Tavahind" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:159 -msgid "Sale Price" -msgstr "Soodushind" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:159 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:76 -msgid "Schedule" -msgstr "Ajasta" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:166 -msgid "Sale Price Dates" -msgstr "Soodushinna kuupäevad" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:167 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:84 -msgctxt "placeholder" -msgid "From…" -msgstr "Alates…" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:168 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:88 -msgctxt "placeholder" -msgid "To…" -msgstr "kuni…" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:180 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:143 -msgid "Downloadable Files" -msgstr "Allalaaditavad failid" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:185 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:147 -msgid "This is the name of the download shown to the customer." -msgstr "Seda näidatakse kliendile allalaaditava faili nimena." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:186 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:148 -msgid "File URL" -msgstr "Faili aadress" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:186 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:148 -msgid "" -"This is the URL or absolute path to the file which customers will get access " -"to." -msgstr "" -"See on URL või absoluutne kataloogitee failile, millele klient saab " -"ligipääsu." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:201 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:163 -msgid "Add File" -msgstr "Lisa fail" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:221 -msgid "Download Limit" -msgstr "Allalaadimiste limiit" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:221 -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:19 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:190 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:196 -msgid "Unlimited" -msgstr "Piiramatult" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:221 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:189 -msgid "Leave blank for unlimited re-downloads." -msgstr "Piiramatu allalaadimise lubamiseks jäta väli tühjaks" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:227 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:768 -msgid "Download Expiry" -msgstr "Allalaadimise lõppemine" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:227 -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:23 -msgid "Never" -msgstr "Mitte kunagi" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:227 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:195 -msgid "" -"Enter the number of days before a download link expires, or leave blank." -msgstr "" -"Sisesta, mitme päeva pärast kaotab allalaadimise link oma kehtivuse, või " -"jäta tühjaks." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:233 -msgid "Download Type" -msgstr "Allalaadimise tüüp" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:233 -msgid "Choose a download type - this controls the schema." -msgstr "Vali allalaaditava faili tüüp - see määrab skeemi." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:234 -msgid "Standard Product" -msgstr "Tavaline toode" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:235 -msgid "Application/Software" -msgstr "Rakendus/Tarkvara" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:236 -msgid "Music" -msgstr "Muusika" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:248 -#: includes/admin/views/html-bulk-edit-product.php:58 -#: includes/admin/views/html-quick-edit-product.php:38 -msgid "Tax Status" -msgstr "Maksud" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:249 -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:34 -#: includes/admin/views/html-bulk-edit-product.php:64 -#: includes/admin/views/html-quick-edit-product.php:43 -msgid "Taxable" -msgstr "Maksustatav" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:250 -#: includes/admin/views/html-bulk-edit-product.php:65 -#: includes/admin/views/html-quick-edit-product.php:44 -msgid "Shipping only" -msgstr "Ainult transport" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:251 -#: includes/admin/reports/class-wc-report-sales-by-category.php:167 -#: includes/admin/views/html-bulk-edit-product.php:66 -#: includes/admin/views/html-quick-edit-product.php:45 -msgid "None" -msgstr "-" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:256 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:729 -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:27 -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:39 -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:123 -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:134 -#: includes/admin/settings/class-wc-settings-tax.php:122 -#: includes/admin/settings/class-wc-settings-tax.php:241 -#: includes/admin/views/html-bulk-edit-product.php:83 -#: includes/admin/views/html-quick-edit-product.php:61 -msgid "Standard" -msgstr "Standardne" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:261 -#: includes/admin/settings/class-wc-settings-tax.php:381 -#: includes/admin/views/html-bulk-edit-product.php:77 -#: includes/admin/views/html-quick-edit-product.php:56 -msgid "Tax Class" -msgstr "Maksuklass" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:282 -#: includes/admin/views/html-bulk-edit-product.php:207 -#: includes/admin/views/html-quick-edit-product.php:153 -msgid "Manage stock?" -msgstr "Halda laoseisu?" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:282 -msgid "" -"Enable stock management at product level (not needed if managing stock at " -"variation level)" -msgstr "" -"Lülita tootepõhine laohaldus sisse (seda ei ole vaja, kui sa haldad laoseise " -"variatsioonipõhiselt)" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:289 -#: includes/admin/views/html-bulk-edit-product.php:226 -#: includes/admin/views/html-bulk-edit-product.php:242 -#: includes/admin/views/html-quick-edit-product.php:157 -msgid "Stock Qty" -msgstr "Kogus laos" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:289 -msgid "" -"Stock quantity. If this is a variable product this value will be used to " -"control stock for all variations, unless you define stock at variation level." -msgstr "" -"Kogus laos. Kui see on varieeruv toode, siis kasutatakse seda väärtust " -"kõikide variatsioonide laoseisuna, välja arvatud juhul, kui sa määrad " -"laoseisud variatsioonipõhiselt." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:300 -#: includes/admin/reports/class-wc-report-stock.php:140 -msgid "Stock status" -msgstr "Laoseis" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:303 -msgid "" -"Controls whether or not the product is listed as \"in stock\" or \"out of " -"stock\" on the frontend." -msgstr "" -"Määrab, kas toode on või ei ole poe avalikus osas märgitud kui \"laos\" või " -"\"otsas\"." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:310 -msgid "Allow Backorders?" -msgstr "Luba järeltellimused?" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:311 -#: includes/admin/views/html-bulk-edit-product.php:253 -#: includes/admin/views/html-quick-edit-product.php:172 -msgid "Do not allow" -msgstr "Ära luba" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:312 -#: includes/admin/views/html-bulk-edit-product.php:254 -#: includes/admin/views/html-quick-edit-product.php:173 -msgid "Allow, but notify customer" -msgstr "Luba, aga teavita klienti" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:313 -#: includes/admin/views/html-bulk-edit-product.php:255 -#: includes/admin/views/html-quick-edit-product.php:174 -msgid "Allow" -msgstr "Luba" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:314 -msgid "" -"If managing stock, this controls whether or not backorders are allowed for " -"this product and variations. If enabled, stock quantity can go below 0." -msgstr "" -"Kui haldad laoseise, siis see määrab kas järeltellimused on selle toote ja " -"tema variatsioonide puhul lubatud. Kui see on sisse lülitatud, siis võib " -"laoseis minna alla 0-i." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:325 -msgid "Sold Individually" -msgstr "Müüakse üksikuna" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:325 -msgid "" -"Enable this to only allow one of this item to be bought in a single order" -msgstr "Lülita sisse, kui soovid, et seda toodet saaks osta ainult ühekaupa." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:343 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:763 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:96 -#: includes/admin/views/html-bulk-edit-product.php:103 -#: includes/admin/views/html-quick-edit-product.php:84 -msgid "Weight" -msgstr "Kaal" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:343 -msgid "Weight in decimal form" -msgstr "Kaal kümnendkujul" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:348 -msgid "Dimensions" -msgstr "Mõõtmed" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:350 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:764 -#: includes/admin/views/html-bulk-edit-product.php:143 -#: includes/admin/views/html-quick-edit-product.php:97 -msgid "Length" -msgstr "Pikkus" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:351 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:765 -#: includes/admin/views/html-bulk-edit-product.php:144 -#: includes/admin/views/html-quick-edit-product.php:98 -msgid "Width" -msgstr "Laius" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:352 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:766 -#: includes/admin/views/html-bulk-edit-product.php:145 -#: includes/admin/views/html-quick-edit-product.php:99 -msgid "Height" -msgstr "Kõrgus" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:354 -msgid "LxWxH in decimal form" -msgstr "PxLxK kümnendkujul" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:371 -msgid "No shipping class" -msgstr "Tarneklassi ei ole" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:377 -msgid "Shipping class" -msgstr "Tarneklass" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:377 -msgid "" -"Shipping classes are used by certain shipping methods to group similar " -"products." -msgstr "" -"Mõningad tarneviisid kasutavad tarneklasse sarnaste toodete rühmitamiseks." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:389 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:749 -msgid "Close all" -msgstr "Sulge kõik" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:389 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:749 -msgid "Expand all" -msgstr "Ava kõik" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:448 -msgid "Select terms" -msgstr "Vali terminid" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:462 -msgid "Add new" -msgstr "Lisa uus" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:475 -msgid "Pipe (|) separate terms" -msgstr "Püstkriips (|) eraldab termineid" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:565 -msgid "Custom product attribute" -msgstr "Vabalt määratud omadus" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:577 -msgid "Save attributes" -msgstr "Salvesta omadused" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:584 -msgid "Up-Sells" -msgstr "Ülesmüügid" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:599 -msgid "" -"Up-sells are products which you recommend instead of the currently viewed " -"product, for example, products that are more profitable or better quality or " -"more expensive." -msgstr "" -"Ülesmüügid on tooted, mida sina soovitad selle toote asemele, mida klient " -"parasjagu vaatab. Näiteks võivad need olla tooted, mis on sinule rohkem " -"kasulikud, parema kvaliteedgia või kallimad." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:601 -msgid "Cross-Sells" -msgstr "Ristmüügid" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:616 -msgid "" -"Cross-sells are products which you promote in the cart, based on the current " -"product." -msgstr "" -"Ristmüügid on tooted, mida sa ostukorvis reklaamid tuginedes käesolevale " -"tootele." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:626 -msgid "Choose a grouped product…" -msgstr "Vali rühmitatud toode…" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:652 -msgid "Grouping" -msgstr "Rühmitamine" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:652 -msgid "Set this option to make this product part of a grouped product." -msgstr "Määra see valik, et teha see toode osaks mõnest rühmitatud tootest." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:672 -msgid "Purchase Note" -msgstr "Ostumärkus" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:672 -msgid "Enter an optional note to send the customer after purchase." -msgstr "" -"Sisesta valikuline märkus, mis saadetakse kliendile peale ostu sooritamist." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:679 -msgid "Menu order" -msgstr "Menüüjärjekord" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:679 -msgid "Custom ordering position." -msgstr "Kohandatud positsioon" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:687 -msgid "Enable reviews" -msgstr "Luba ülevaated" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:740 -msgid "" -"Before adding variations, add and save some attributes on the " -"Attributes tab." -msgstr "" -"Enne kui lisad variatsioone, lisa ja salvesta mõned omadused " -"Omadused lehel." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:742 -msgid "Learn more" -msgstr "Loe veel" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:750 -msgid "Bulk edit:" -msgstr "Massmuutmine:" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:752 -msgid "Toggle "Enabled"" -msgstr "Lülita "sisse/välja"" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:753 -msgid "Toggle "Downloadable"" -msgstr "Tee "allalaaditavaks"" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:754 -msgid "Toggle "Virtual"" -msgstr "Tee "virtuaalseks"" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:755 -msgid "Delete all variations" -msgstr "Kustuta kõik variatsioonid" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:756 -msgid "Prices" -msgstr "Hinnad" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:757 -msgid "Prices increase by (fixed amount or %)" -msgstr "Hinnad tõusevad (kindel summa või %)" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:758 -msgid "Prices decrease by (fixed amount or %)" -msgstr "Hinnad alanevad (kindel summa või %)" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:759 -msgid "Sale prices" -msgstr "Soodushinnad" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:760 -msgid "Sale prices increase by (fixed amount or %)" -msgstr "Allahindlused suurenevad (kindel summa või %)" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:761 -msgid "Sale prices decrease by (fixed amount or %)" -msgstr "Allahindlused vähenevad (kindel summa või %)" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:767 -msgid "Download limit" -msgstr "Allalaadimiste limiit" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:771 -#: includes/admin/views/html-report-by-date.php:31 -msgid "Go" -msgstr "Mine" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:868 -msgid "Add Variation" -msgstr "Lisa variatsioon" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:870 -msgid "Link all variations" -msgstr "Seosta kõik variatsioonid" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:872 -msgid "Default selections:" -msgstr "Vaikimisi valikud:" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:885 -#: includes/admin/settings/class-wc-settings-shipping.php:214 -msgid "No default" -msgstr "Vaikevalikut ei ole" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:989 -msgid "Product SKU must be unique." -msgstr "Tootekood peab olema unikaalne." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:1357 -msgid "Variation #%s of %s" -msgstr "Variatsioon nr. #%s / %s" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:44 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:104 -msgid "Delete image" -msgstr "Kustuta pilt" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:55 -msgid "Add product gallery images" -msgstr "Lisa pilte toote galeriisse" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:81 -msgid "Add Images to Product Gallery" -msgstr "Lisa pilte tootegaleriisse." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:83 -msgid "Add to gallery" -msgstr "Lisa galeriisse" - -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:6 -msgid "Revoke Access" -msgstr "Eemalda ligipääs" - -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:9 -msgid "File %d: %s" -msgstr "Fail %d: %s" - -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:9 -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "Alla laadidtud %d kord" -msgstr[1] "Alla laadidtud %d korda" - -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:16 -msgid "Downloads Remaining" -msgstr "Allalaadimisi alles" - -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:22 -msgid "Access Expires" -msgstr "Ligipääs aegub" - -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:12 -msgid "Fee" -msgstr "Tasu" - -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:16 -msgid "Fee Name" -msgstr "Tasu nimi" - -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:31 -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:127 -msgid "Tax class" -msgstr "Maksuklass" - -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:10 -msgid "Product ID:" -msgstr "Toote ID:" - -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:13 -msgid "Variation ID:" -msgstr "Variatsiooni ID:" - -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:16 -msgid "Product SKU:" -msgstr "Tootekood:" - -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:74 -msgid "Add meta" -msgstr "Lisa metaandmed" - -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:169 -msgid "Subtotal" -msgstr "Vahesumma" - -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:169 -msgid "Before pre-tax discounts." -msgstr "Enne maksueelseid allahindlusi." - -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:171 -msgid "After pre-tax discounts." -msgstr "Peale maksueelseid allahindlusi." - -#: includes/admin/post-types/meta-boxes/views/html-order-shipping.php:6 -msgid "Label" -msgstr "Silt" - -#: includes/admin/post-types/meta-boxes/views/html-order-shipping.php:11 -msgid "Shipping Method" -msgstr "Tarneviis" - -#: includes/admin/post-types/meta-boxes/views/html-order-shipping.php:39 -msgid "0.00" -msgstr "0,00" - -#: includes/admin/post-types/meta-boxes/views/html-order-tax.php:7 -msgid "Tax Rate" -msgstr "Maksumäär" - -#: includes/admin/post-types/meta-boxes/views/html-order-tax.php:17 -msgid "Sales Tax" -msgstr "Toodete pealt" - -#: includes/admin/post-types/meta-boxes/views/html-order-tax.php:21 -msgid "Shipping Tax" -msgstr "Transpordi pealt" - -#: includes/admin/post-types/meta-boxes/views/html-product-download.php:3 -#: includes/admin/post-types/meta-boxes/views/html-product-variation-download.php:2 -msgid "File Name" -msgstr "Faili nimi" - -#: includes/admin/post-types/meta-boxes/views/html-product-download.php:4 -#: includes/admin/post-types/meta-boxes/views/html-product-variation-download.php:3 -msgid "http://" -msgstr "http://" - -#: includes/admin/post-types/meta-boxes/views/html-product-download.php:5 -#: includes/admin/post-types/meta-boxes/views/html-product-variation-download.php:4 -msgid "Choose file" -msgstr "Vali fail" - -#: includes/admin/post-types/meta-boxes/views/html-product-download.php:5 -#: includes/admin/post-types/meta-boxes/views/html-product-variation-download.php:4 -msgid "Insert file URL" -msgstr "Sisesta faili URL" - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:20 -msgid "Any" -msgstr "Ükskõik milline" - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:52 -msgid "" -"Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "" -"Sisesta selle variatsiooni tootekood või jäta tühjaks, et kasutada põhitoote " -"koodi." - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:63 -msgid "Stock Qty:" -msgstr "Kogus laos:" - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:63 -msgid "" -"Enter a quantity to enable stock management at variation level, or leave " -"blank to use the parent product's options." -msgstr "" -"Sisesta kogus, et lülitada sisse variatsioonipõhine laohaldus, või jäta " -"tühjaks, et kasutada põhitoote valikuid." - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:72 -msgid "Regular Price:" -msgstr "Tavahind:" - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:73 -msgid "Variation price (required)" -msgstr "Variatsiooni hind (nõutav)" - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:76 -msgid "Sale Price:" -msgstr "Soodushind:" - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:76 -msgid "Cancel schedule" -msgstr "Tühista ajastamine" - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:83 -msgid "Sale start date:" -msgstr "Soodushinna kehtivuse algus:" - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:87 -msgid "Sale end date:" -msgstr "Soodushinna kehtivuse lõpp:" - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:96 -msgid "" -"Enter a weight for this variation or leave blank to use the parent product " -"weight." -msgstr "" -"Sisesta selle variatsiooni kaal või jäta tühjaks, kui soovid kasutada " -"põhitoote kaalu." - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:104 -msgid "Dimensions (L×W×H)" -msgstr "Mõõdud (P×L×K)" - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:115 -msgid "Shipping class:" -msgstr "Tarneklass:" - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:119 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:132 -msgid "Same as parent" -msgstr "Sama, mis ülemisel" - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:130 -msgid "Tax class:" -msgstr "Maksuklass:" - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:189 -msgid "Download Limit:" -msgstr "Allalaadimiste limiit:" - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:195 -msgid "Download Expiry:" -msgstr "Allalaadimine aegub:" - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:209 -#: includes/admin/settings/class-wc-settings-checkout.php:260 -#: includes/admin/settings/class-wc-settings-shipping.php:235 -msgid "Enabled" -msgstr "Lubatud" - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:211 -msgid "" -"Enable this option if access is given to a downloadable file upon purchase " -"of a product" -msgstr "" -"Lülita see valik sisse kui ligipääs allalaaditavale tootele antakse kohe " -"ostu sooritamisel" - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:213 -msgid "" -"Enable this option if a product is not shipped or there is no shipping cost" -msgstr "" -"Lülita see valik sisse, kui toodet ei tarnita või sellel ei ole tarnekulusid" - -#: includes/admin/reports/class-wc-admin-report.php:389 -msgid "Sold %s worth in the last %d days" -msgstr "Müüdud %s eest viimase %d päeva jooksul." - -#: includes/admin/reports/class-wc-admin-report.php:391 -msgid "Sold 1 item in the last %d days" -msgid_plural "Sold %d items in the last %d days" -msgstr[0] "Müüdud 1 tk viimase %d päeva jooksul" -msgstr[1] "Müüdud %s tk viimase %d päeva jooksul" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:69 -msgid "%s discounts in total" -msgstr "%s väärtuses allahindlust kokku" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:75 -msgid "%s coupons used in total" -msgstr "%s kupongi kokku kasutatud" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:90 -#: includes/admin/reports/class-wc-report-customers.php:138 -#: includes/admin/reports/class-wc-report-sales-by-category.php:65 -#: includes/admin/reports/class-wc-report-sales-by-date.php:122 -#: includes/admin/reports/class-wc-report-sales-by-product.php:107 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:41 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:41 -msgid "Year" -msgstr "Aasta" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:91 -#: includes/admin/reports/class-wc-report-customers.php:139 -#: includes/admin/reports/class-wc-report-sales-by-category.php:66 -#: includes/admin/reports/class-wc-report-sales-by-date.php:123 -#: includes/admin/reports/class-wc-report-sales-by-product.php:108 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:42 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:42 -msgid "Last Month" -msgstr "Eelmine kuu" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:92 -#: includes/admin/reports/class-wc-report-customers.php:140 -#: includes/admin/reports/class-wc-report-sales-by-category.php:67 -#: includes/admin/reports/class-wc-report-sales-by-date.php:124 -#: includes/admin/reports/class-wc-report-sales-by-product.php:109 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:43 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:43 -msgid "This Month" -msgstr "See kuu" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:93 -#: includes/admin/reports/class-wc-report-customers.php:141 -#: includes/admin/reports/class-wc-report-sales-by-category.php:68 -#: includes/admin/reports/class-wc-report-sales-by-date.php:125 -#: includes/admin/reports/class-wc-report-sales-by-product.php:110 -msgid "Last 7 Days" -msgstr "Viimased 7 päeva" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:133 -msgid "Filter by coupon" -msgstr "Filtreeri kupongi alusel" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:137 -msgid "Choose coupons…" -msgstr "Vali kupong…" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:161 -msgid "All coupons" -msgstr "Kõik kupongid" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:166 -msgid "No used coupons found" -msgstr "Kasutatud kuponge ei leitud" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:169 -#: includes/admin/reports/class-wc-report-sales-by-category.php:169 -#: includes/admin/reports/class-wc-report-sales-by-product.php:178 -msgid "Show" -msgstr "Näita" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:184 -msgid "Most Popular" -msgstr "Populaarseimad" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:226 -#: includes/admin/reports/class-wc-report-coupon-usage.php:273 -msgid "No coupons found in range" -msgstr "Selles vahemikus kuponge ei leitud" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:231 -msgid "Most Discount" -msgstr "Suurima allahindlusega" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:316 -#: includes/admin/reports/class-wc-report-customers.php:202 -#: includes/admin/reports/class-wc-report-sales-by-category.php:213 -#: includes/admin/reports/class-wc-report-sales-by-date.php:162 -#: includes/admin/reports/class-wc-report-sales-by-product.php:326 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:29 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:29 -#: includes/admin/settings/class-wc-settings-tax.php:287 -msgid "Export CSV" -msgstr "Ekspordi CSV" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:407 -msgid "Number of coupons used" -msgstr "Kasutatud kupongite arv" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:415 -msgid "Discount amount" -msgstr "Allahindluse summa" - -#: includes/admin/reports/class-wc-report-customer-list.php:22 -msgid "Customer" -msgstr "Klient" - -#: includes/admin/reports/class-wc-report-customer-list.php:32 -msgid "No customers found." -msgstr "Ühtki kllienti ei leitud." - -#: includes/admin/reports/class-wc-report-customer-list.php:46 -msgid "%s previous order linked" -msgid_plural "%s previous orders linked" -msgstr[0] "%s eelnev tellimus seostatud" -msgstr[1] "%s eelnevat tellimust seostatud" - -#: includes/admin/reports/class-wc-report-customer-list.php:51 -msgid "Search customers" -msgstr "Otsi klienti" - -#: includes/admin/reports/class-wc-report-customer-list.php:187 -msgid "View orders" -msgstr "Vaata tellimusi" - -#: includes/admin/reports/class-wc-report-customer-list.php:211 -msgid "Link previous orders" -msgstr "Seoste eelnevad tellimused" - -#: includes/admin/reports/class-wc-report-customer-list.php:237 -msgid "Name (Last, First)" -msgstr "Nimi (Pere, ees)" - -#: includes/admin/reports/class-wc-report-customer-list.php:238 -msgid "Username" -msgstr "Kasutajanimi" - -#: includes/admin/reports/class-wc-report-customer-list.php:240 -msgid "Location" -msgstr "Asukoht" - -#: includes/admin/reports/class-wc-report-customer-list.php:242 -msgid "Spent" -msgstr "Kulutanud" - -#: includes/admin/reports/class-wc-report-customer-list.php:243 -msgid "Last order" -msgstr "Viimane tellimus" - -#: includes/admin/reports/class-wc-report-customers.php:15 -msgid "%s signups in this period" -msgstr "%s liitumist selles ajavahemikus" - -#: includes/admin/reports/class-wc-report-customers.php:83 -msgid "Customer Sales" -msgstr "Müügid klientidele" - -#: includes/admin/reports/class-wc-report-customers.php:84 -msgid "Guest Sales" -msgstr "Müügid külalistele" - -#: includes/admin/reports/class-wc-report-customers.php:93 -#: includes/admin/reports/class-wc-report-customers.php:289 -msgid "Customer Orders" -msgstr "Klientide tellimused" - -#: includes/admin/reports/class-wc-report-customers.php:98 -#: includes/admin/reports/class-wc-report-customers.php:299 -msgid "Guest Orders" -msgstr "Külaliste tellimused" - -#: includes/admin/reports/class-wc-report-customers.php:117 -msgid "orders" -msgstr "telllimust" - -#: includes/admin/reports/class-wc-report-customers.php:295 -msgid "customer orders" -msgstr "klienditellimust" - -#: includes/admin/reports/class-wc-report-customers.php:305 -msgid "guest orders" -msgstr "külalistellimust" - -#: includes/admin/reports/class-wc-report-customers.php:309 -msgid "Signups" -msgstr "Liitumisi" - -#: includes/admin/reports/class-wc-report-customers.php:316 -msgid "new users" -msgstr "uut kasutajat" - -#: includes/admin/reports/class-wc-report-low-in-stock.php:19 -msgid "No low in stock products found." -msgstr "Madala laoseisuga tooteid ei leitud." - -#: includes/admin/reports/class-wc-report-out-of-stock.php:19 -msgid "No out of stock products found." -msgstr "Laost otsas olevaid tooteid ei leitud." - -#: includes/admin/reports/class-wc-report-sales-by-category.php:47 -msgid "%s sales in %s" -msgstr "%s väärtuses müüdud kategoorias %s" - -#: includes/admin/reports/class-wc-report-sales-by-category.php:168 -msgid "All" -msgstr "Kõik" - -#: includes/admin/reports/class-wc-report-sales-by-category.php:228 -msgid "← Choose a category to view stats" -msgstr "← Vali kategooria, et näha statistikat" - -#: includes/admin/reports/class-wc-report-sales-by-date.php:74 -msgid "%s average daily sales" -msgstr "%s väärtuses müüdud kesmiselt päevas" - -#: includes/admin/reports/class-wc-report-sales-by-date.php:77 -msgid "%s average monthly sales" -msgstr "%s väärtuses müüdud keskmiselt kuus" - -#: includes/admin/reports/class-wc-report-sales-by-date.php:82 -msgid "%s sales in this period" -msgstr "%s väärtuses müüdud selles ajavahemikus" - -#: includes/admin/reports/class-wc-report-sales-by-date.php:92 -msgid "%s orders placed" -msgstr "%s esitatud tellimust" - -#: includes/admin/reports/class-wc-report-sales-by-date.php:97 -msgid "%s items purchased" -msgstr "%s toodet ostetud" - -#: includes/admin/reports/class-wc-report-sales-by-date.php:102 -msgid "%s charged for shipping" -msgstr "%s transpordi eest võetud" - -#: includes/admin/reports/class-wc-report-sales-by-date.php:107 -msgid "%s worth of coupons used" -msgstr "%s eest kuponge kasutatud" - -#: includes/admin/reports/class-wc-report-sales-by-date.php:294 -#: includes/admin/reports/class-wc-report-sales-by-product.php:440 -msgid "Number of items sold" -msgstr "Müüdud toodete arv" - -#: includes/admin/reports/class-wc-report-sales-by-date.php:302 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:120 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:109 -msgid "Number of orders" -msgstr "Tellimuste arv" - -#: includes/admin/reports/class-wc-report-sales-by-date.php:310 -msgid "Average sales amount" -msgstr "Keskmine müügisumma" - -#: includes/admin/reports/class-wc-report-sales-by-date.php:330 -msgid "Shipping amount" -msgstr "Transpordisumma" - -#: includes/admin/reports/class-wc-report-sales-by-date.php:340 -#: includes/admin/reports/class-wc-report-sales-by-product.php:448 -msgid "Sales amount" -msgstr "Müügisumma" - -#: includes/admin/reports/class-wc-report-sales-by-product.php:87 -msgid "%s sales for the selected items" -msgstr "%s väärtuses valitud tooteid müüdud" - -#: includes/admin/reports/class-wc-report-sales-by-product.php:92 -msgid "%s purchases for the selected items" -msgstr "%s valitud tooteid ostetud" - -#: includes/admin/reports/class-wc-report-sales-by-product.php:138 -msgid "Showing reports for:" -msgstr "Näitan raporte:" - -#: includes/admin/reports/class-wc-report-sales-by-product.php:164 -msgid "Reset" -msgstr "Taasta algseis" - -#: includes/admin/reports/class-wc-report-sales-by-product.php:173 -msgid "Product Search" -msgstr "Toote otsing" - -#: includes/admin/reports/class-wc-report-sales-by-product.php:210 -msgid "Top Sellers" -msgstr "Enim müüdud kaubad" - -#: includes/admin/reports/class-wc-report-sales-by-product.php:245 -#: includes/admin/reports/class-wc-report-sales-by-product.php:285 -msgid "No products found in range" -msgstr "Selles vahemikus tooteid ei leitud" - -#: includes/admin/reports/class-wc-report-sales-by-product.php:250 -msgid "Top Earners" -msgstr "Enim teeninud tooted" - -#: includes/admin/reports/class-wc-report-sales-by-product.php:341 -msgid "← Choose a product to view stats" -msgstr "← Vali toode, et näha statistikat" - -#: includes/admin/reports/class-wc-report-stock.php:30 -msgid "No products found." -msgstr "Tooteid ei leitud." - -#: includes/admin/reports/class-wc-report-stock.php:138 -msgid "Parent" -msgstr "Ülem" - -#: includes/admin/reports/class-wc-report-stock.php:139 -msgid "Units in stock" -msgstr "Ühikuid laos" - -#: includes/admin/reports/class-wc-report-taxes-by-code.php:119 -msgid "Rate" -msgstr "Maksumäär" - -#: includes/admin/reports/class-wc-report-taxes-by-code.php:121 -msgid "Tax Amount" -msgstr "Maksusumma" - -#: includes/admin/reports/class-wc-report-taxes-by-code.php:121 -msgid "This is the sum of the \"Tax Rows\" tax amount within your orders." -msgstr "" -"See on tellimuste \"Maksuridade\" toodete pealt arvestatud maksude summa." - -#: includes/admin/reports/class-wc-report-taxes-by-code.php:122 -msgid "Shipping Tax Amount" -msgstr "Transpordi maksusumma" - -#: includes/admin/reports/class-wc-report-taxes-by-code.php:122 -msgid "" -"This is the sum of the \"Tax Rows\" shipping tax amount within your orders." -msgstr "" -"See on tellimuste \"Maksuridade\" transpordi pealt arvestatud maksude summa." - -#: includes/admin/reports/class-wc-report-taxes-by-code.php:123 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:112 -msgid "Total Tax" -msgstr "Maksud kokku" - -#: includes/admin/reports/class-wc-report-taxes-by-code.php:123 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:112 -msgid "This is the total tax for the rate (shipping tax + product tax)." -msgstr "" -"See on kogu maksusumma selle maksumäära kohta (transpordi ja toodete pealt)." - -#: includes/admin/reports/class-wc-report-taxes-by-code.php:155 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:156 -msgid "No taxes found in this period" -msgstr "Selle ajavahemiku kohta ei leitud makse" - -#: includes/admin/reports/class-wc-report-taxes-by-date.php:108 -msgid "Period" -msgstr "Ajavahemik" - -#: includes/admin/reports/class-wc-report-taxes-by-date.php:110 -msgid "Total Sales" -msgstr "Müük kokku" - -#: includes/admin/reports/class-wc-report-taxes-by-date.php:110 -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "See on sinu tellimuste kogusumma." - -#: includes/admin/reports/class-wc-report-taxes-by-date.php:111 -msgid "Total Shipping" -msgstr "Transport kokku" - -#: includes/admin/reports/class-wc-report-taxes-by-date.php:111 -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "See on sinu tellimuste transpordikulude summa." - -#: includes/admin/reports/class-wc-report-taxes-by-date.php:113 -msgid "Net profit" -msgstr "Puhaskasum" - -#: includes/admin/reports/class-wc-report-taxes-by-date.php:113 -msgid "Total sales minus shipping and tax." -msgstr "Müük kokku miinus transprdikulud ja maksud." - -#: includes/admin/reports/class-wc-report-taxes-by-date.php:122 -msgid "Totals" -msgstr "Kokku" - -#: includes/admin/settings/class-wc-settings-accounts.php:25 -msgid "Accounts" -msgstr "Kontod" - -#: includes/admin/settings/class-wc-settings-accounts.php:41 -msgid "Account Pages" -msgstr "Konto lehed" - -#: includes/admin/settings/class-wc-settings-accounts.php:41 -msgid "" -"These pages need to be set so that WooCommerce knows where to send users to " -"access account related functionality." -msgstr "" -"Need lehed tuleb seadistada selleks, et WooCommerce teaks, kuhu kasutajad " -"oma kontoga seotud tegevuste tegemiseks saata." - -#: includes/admin/settings/class-wc-settings-accounts.php:44 -msgid "My Account Page" -msgstr "Minu konto leht" - -#: includes/admin/settings/class-wc-settings-accounts.php:45 -msgid "Page contents: [woocommerce_my_account]" -msgstr "Lehe sisu:" - -#: includes/admin/settings/class-wc-settings-accounts.php:56 -msgid "My Account Endpoints" -msgstr "Minu konto sihtpunktid" - -#: includes/admin/settings/class-wc-settings-accounts.php:56 -msgid "" -"Endpoints are appended to your page URLs to handle specific actions on the " -"accounts pages. They should be unique." -msgstr "" -"Sihtpunktid lisatakse sinu lehe URLidele selleks, et käsitseda spetsiifilisi " -"tegevusi konto lehtedel. Need peaksid olema unikaalsed." - -#: includes/admin/settings/class-wc-settings-accounts.php:59 -msgid "View Order" -msgstr "Tellimuse vaatamine" - -#: includes/admin/settings/class-wc-settings-accounts.php:60 -msgid "Endpoint for the My Account → View Order page" -msgstr "Sihtpunkt Minu konto → Vaata tellimust lehe jaoks" - -#: includes/admin/settings/class-wc-settings-accounts.php:68 -msgid "Edit Account" -msgstr "Konto seadete muutmine" - -#: includes/admin/settings/class-wc-settings-accounts.php:69 -msgid "Endpoint for the My Account → Edit Account page" -msgstr "Sihtpunkt Minu konto → Muuda konto seadeid lehe jaoks" - -#: includes/admin/settings/class-wc-settings-accounts.php:77 -msgid "Edit Address" -msgstr "Aadressi muutmine" - -#: includes/admin/settings/class-wc-settings-accounts.php:78 -msgid "Endpoint for the My Account → Edit Address page" -msgstr "Sihtpunkt Minu konto → Muuda aadressi lehe jaoks" - -#: includes/admin/settings/class-wc-settings-accounts.php:86 -msgid "Lost Password" -msgstr "Kadunud parool" - -#: includes/admin/settings/class-wc-settings-accounts.php:87 -msgid "Endpoint for the My Account → Lost Password page" -msgstr "Sihtpunkt Minu konto → Unustasin parooli lehe jaoks" - -#: includes/admin/settings/class-wc-settings-accounts.php:95 -msgid "Logout" -msgstr "Väljalogimine" - -#: includes/admin/settings/class-wc-settings-accounts.php:96 -msgid "" -"Endpoint for the triggering logout. You can add this to your menus via a " -"custom link: yoursite.com/?customer-logout=true" -msgstr "" -"Sihtpunkt väljalogimiseks. Sa võid selle lisada oma lehe menüüdesse " -"kohandatud lingina: sinuleht.ee/?customer-logout=true" - -#: includes/admin/settings/class-wc-settings-accounts.php:105 -msgid "Registration Options" -msgstr "Registreerumise valikud" - -#: includes/admin/settings/class-wc-settings-accounts.php:108 -msgid "Enable Registration" -msgstr "Lülita registreerumine sisse" - -#: includes/admin/settings/class-wc-settings-accounts.php:109 -msgid "Enable registration on the \"Checkout\" page" -msgstr "Luba \"Kassa\" lehel registreeruda" - -#: includes/admin/settings/class-wc-settings-accounts.php:118 -msgid "Enable registration on the \"My Account\" page" -msgstr "Luba \"Minu konto\" lehel registreeruda" - -#: includes/admin/settings/class-wc-settings-accounts.php:127 -msgid "Account Creation" -msgstr "Konto loomine" - -#: includes/admin/settings/class-wc-settings-accounts.php:128 -msgid "Automatically generate username from customer email" -msgstr "Loo kasutajanimi automaatselt kliendi e-posti aadressi põhjal" - -#: includes/admin/settings/class-wc-settings-accounts.php:137 -msgid "Automatically generate customer password" -msgstr "Loo kliendile parool automaatselt" - -#: includes/admin/settings/class-wc-settings-checkout.php:25 -#: includes/admin/settings/class-wc-settings-checkout.php:78 -#: includes/admin/views/html-admin-page-status-report.php:291 -msgid "Checkout" -msgstr "Kassa" - -#: includes/admin/settings/class-wc-settings-checkout.php:41 -msgid "Checkout Options" -msgstr "Kassa seaded" - -#: includes/admin/settings/class-wc-settings-checkout.php:65 -msgid "Checkout Process" -msgstr "Kassa maksmise protsess" - -#: includes/admin/settings/class-wc-settings-checkout.php:68 -msgid "Coupons" -msgstr "Kupongid" - -#: includes/admin/settings/class-wc-settings-checkout.php:69 -msgid "Enable the use of coupons" -msgstr "Luba kupongite kasutamine" - -#: includes/admin/settings/class-wc-settings-checkout.php:73 -msgid "Coupons can be applied from the cart and checkout pages." -msgstr "Kuponge saab kasutada ostukorvi ja kassa lehtedel." - -#: includes/admin/settings/class-wc-settings-checkout.php:79 -msgid "Enable guest checkout" -msgstr "Luba külalistel osta" - -#: includes/admin/settings/class-wc-settings-checkout.php:80 -msgid "Allows customers to checkout without creating an account." -msgstr "Võimaldab klientidel sooritada oste ilma kontot loomata." - -#: includes/admin/settings/class-wc-settings-checkout.php:89 -msgid "Force secure checkout" -msgstr "Nõua turvalist kassat" - -#: includes/admin/settings/class-wc-settings-checkout.php:95 -msgid "" -"Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -msgstr "" -"Nõua SSL (HTTPS) ühendust kassa lehtedel (selleks on vajalik SSL " -"sertifikaat)." - -#: includes/admin/settings/class-wc-settings-checkout.php:99 -msgid "Un-force HTTPS when leaving the checkout" -msgstr "Eemalda kassast lahkudes HTTPSi nõue" - -#: includes/admin/settings/class-wc-settings-checkout.php:109 -msgid "Checkout Pages" -msgstr "Kassa lehed" - -#: includes/admin/settings/class-wc-settings-checkout.php:109 -msgid "" -"These pages need to be set so that WooCommerce knows where to send users to " -"checkout." -msgstr "" -"Need lehed tuleb seadistada selleks, et WooCommerce teaks, kuhu kasutajad " -"kassasse saata." - -#: includes/admin/settings/class-wc-settings-checkout.php:112 -msgid "Cart Page" -msgstr "Ostukorvi leht" - -#: includes/admin/settings/class-wc-settings-checkout.php:113 -msgid "Page contents: [woocommerce_cart]" -msgstr "Lehe sisu:" - -#: includes/admin/settings/class-wc-settings-checkout.php:123 -msgid "Checkout Page" -msgstr "Kassa leht" - -#: includes/admin/settings/class-wc-settings-checkout.php:124 -msgid "Page contents: [woocommerce_checkout]" -msgstr "Lehe sisu:" - -#: includes/admin/settings/class-wc-settings-checkout.php:134 -msgid "Terms and Conditions" -msgstr "Kasutustingimused" - -#: includes/admin/settings/class-wc-settings-checkout.php:135 -msgid "" -"If you define a \"Terms\" page the customer will be asked if they accept " -"them when checking out." -msgstr "" -"Kui sa määrad \"Tingimuste\" lehe, siis palutakse kliendil nendega kassas " -"nõustuda." - -#: includes/admin/settings/class-wc-settings-checkout.php:147 -msgid "Checkout Endpoints" -msgstr "Kassa sihtpunktid" - -#: includes/admin/settings/class-wc-settings-checkout.php:147 -msgid "" -"Endpoints are appended to your page URLs to handle specific actions during " -"the checkout process. They should be unique." -msgstr "" -"Sihtpunktid lisatakse sinu lehe URLidele selleks, et käsitseda spetsiifilisi " -"tegevusi kassas. Need peaksid olema unikaalsed." - -#: includes/admin/settings/class-wc-settings-checkout.php:150 -msgid "Pay" -msgstr "Maksmine" - -#: includes/admin/settings/class-wc-settings-checkout.php:151 -#: includes/admin/settings/class-wc-settings-checkout.php:160 -msgid "Endpoint for the Checkout → Pay page" -msgstr "Sihtpunkt Kassa → Maksmine lehe jaoks" - -#: includes/admin/settings/class-wc-settings-checkout.php:169 -msgid "Payment Gateways" -msgstr "Makseviisid" - -#: includes/admin/settings/class-wc-settings-checkout.php:169 -msgid "" -"Installed gateways are listed below. Drag and drop gateways to control their " -"display order on the frontend." -msgstr "" -"Paigaldatud makseviisid on loetletud allpool. Lohista need endale sobivasse " -"järjekorda." - -#: includes/admin/settings/class-wc-settings-checkout.php:210 -msgid "Gateway Display" -msgstr "Makseviiside kuvamine" - -#: includes/admin/settings/class-wc-settings-checkout.php:218 -msgid "Gateway" -msgstr "Makseviis" - -#: includes/admin/settings/class-wc-settings-checkout.php:219 -msgid "Gateway ID" -msgstr "Makseviisi ID" - -#: includes/admin/settings/class-wc-settings-emails.php:25 -msgid "Emails" -msgstr "E-kirjad" - -#: includes/admin/settings/class-wc-settings-emails.php:40 -msgid "Email Options" -msgstr "E-kirjade seaded" - -#: includes/admin/settings/class-wc-settings-emails.php:66 -msgid "Email Sender Options" -msgstr "E-kirjade saatja seaded" - -#: includes/admin/settings/class-wc-settings-emails.php:66 -msgid "" -"The following options affect the sender (email address and name) used in " -"WooCommerce emails." -msgstr "" -"Järgnevad valikud mõjutavad WooCommerce'i e-kirjade saatmisel saatjat (e-" -"posti aadress ja nimi)." - -#: includes/admin/settings/class-wc-settings-emails.php:69 -msgid "\"From\" Name" -msgstr "\"Saatja\" nimi" - -#: includes/admin/settings/class-wc-settings-emails.php:79 -msgid "\"From\" Email Address" -msgstr "\"Saatja\" e-posti aadress" - -#: includes/admin/settings/class-wc-settings-emails.php:93 -msgid "Email Template" -msgstr "E-kirja mall" - -#: includes/admin/settings/class-wc-settings-emails.php:93 -msgid "" -"This section lets you customise the WooCommerce emails. Click here to preview your email template. For more " -"advanced control copy woocommerce/templates/emails/ to " -"yourtheme/woocommerce/emails/." -msgstr "" -"See osa võimaldab sul kohandada WooCommerce'i e-kirju. Oma e-kirja malli eelvaatlemiseks kliki siia. Täpsemaks " -"kohandamiseks kopeeri woocommerce/templates/emails/ kausta " -"sinuteema/woocommerce/emails/." - -#: includes/admin/settings/class-wc-settings-emails.php:96 -msgid "Header Image" -msgstr "Päisepilt" - -#: includes/admin/settings/class-wc-settings-emails.php:97 -msgid "" -"Enter a URL to an image you want to show in the email's header. Upload your " -"image using the media uploader." -msgstr "" -"Sisesta URL pildile, mida soovid näidata e-kirja päises. Laadi pilt üles " -"kasutades meediahaldurit." - -#: includes/admin/settings/class-wc-settings-emails.php:106 -msgid "Email Footer Text" -msgstr "E-kirja jaluse tekst" - -#: includes/admin/settings/class-wc-settings-emails.php:107 -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "Tekst, mis lisatakse WooCommerce'i e-kirjade lõppu." - -#: includes/admin/settings/class-wc-settings-emails.php:111 -msgid "Powered by WooCommerce" -msgstr "Kasutame WooCommerce'i" - -#: includes/admin/settings/class-wc-settings-emails.php:116 -msgid "Base Colour" -msgstr "Põhivärv" - -#: includes/admin/settings/class-wc-settings-emails.php:117 -msgid "" -"The base colour for WooCommerce email templates. Default #557da1." -msgstr "" -"Põhivärv, mida kasutatakse WooCommerce e-kirjade mallides. Vaikimisi " -"#557da1." - -#: includes/admin/settings/class-wc-settings-emails.php:126 -msgid "Background Colour" -msgstr "Taustavärv" - -#: includes/admin/settings/class-wc-settings-emails.php:127 -msgid "" -"The background colour for WooCommerce email templates. Default " -"#f5f5f5." -msgstr "" -"Taustavärv, mida kasutatakse WooCommerce e-kirjade mallides. Vaikimisi " -"#f5f5f5 ." - -#: includes/admin/settings/class-wc-settings-emails.php:136 -msgid "Email Body Background Colour" -msgstr "E-kirja sisu taustavärv" - -#: includes/admin/settings/class-wc-settings-emails.php:137 -msgid "The main body background colour. Default #fdfdfd." -msgstr "Põhiosa taustavärv. Vaikimisi #fdfdfd." - -#: includes/admin/settings/class-wc-settings-emails.php:146 -msgid "Email Body Text Colour" -msgstr "E-kirja sisuteksti värv" - -#: includes/admin/settings/class-wc-settings-emails.php:147 -msgid "The main body text colour. Default #505050." -msgstr "Põhiteksti värv. Vaikimisi #505050." - -#: includes/admin/settings/class-wc-settings-general.php:48 -msgid "General Options" -msgstr "Üldised seaded" - -#: includes/admin/settings/class-wc-settings-general.php:51 -msgid "Base Location" -msgstr "Peamine asukoht" - -#: includes/admin/settings/class-wc-settings-general.php:52 -msgid "" -"This is the base location for your business. Tax rates will be based on this " -"country." -msgstr "See on sinu äri peamine asukoht. Maksud põhinevad sellel riigil." - -#: includes/admin/settings/class-wc-settings-general.php:61 -msgid "Selling Location(s)" -msgstr "Müügikoht/kohad" - -#: includes/admin/settings/class-wc-settings-general.php:62 -msgid "This option lets you limit which countries you are willing to sell to." -msgstr "" -"See valik võimaldab sul piirata millistesse riikidesse sa oma kaupa müüa " -"tahad." - -#: includes/admin/settings/class-wc-settings-general.php:70 -msgid "Sell to all countries" -msgstr "Müü kõikidesse riikidesse" - -#: includes/admin/settings/class-wc-settings-general.php:71 -msgid "Sell to specific countries only" -msgstr "Müü valitud riikidesse" - -#: includes/admin/settings/class-wc-settings-general.php:76 -#: includes/admin/settings/class-wc-settings-shipping.php:147 -msgid "Specific Countries" -msgstr "Valitud riigid" - -#: includes/admin/settings/class-wc-settings-general.php:85 -msgid "Store Notice" -msgstr "Poe teade" - -#: includes/admin/settings/class-wc-settings-general.php:86 -msgid "Enable site-wide store notice text" -msgstr "Lülita sisse kogu lehel näidatav teade" - -#: includes/admin/settings/class-wc-settings-general.php:93 -msgid "Store Notice Text" -msgstr "Poe teate tekst" - -#: includes/admin/settings/class-wc-settings-general.php:96 -msgid "" -"This is a demo store for testing purposes — no orders shall be " -"fulfilled." -msgstr "See on näidispood testimise jaoks — ühtegi tellimust ei täideta." - -#: includes/admin/settings/class-wc-settings-general.php:104 -msgid "Currency Options" -msgstr "Valuuta seaded" - -#: includes/admin/settings/class-wc-settings-general.php:104 -msgid "The following options affect how prices are displayed on the frontend." -msgstr "Järgnevad valikud mõjutavad seda, kuidas poes hindu näidatakse." - -#: includes/admin/settings/class-wc-settings-general.php:107 -msgid "Currency" -msgstr "Valuuta" - -#: includes/admin/settings/class-wc-settings-general.php:108 -msgid "" -"This controls what currency prices are listed at in the catalog and which " -"currency gateways will take payments in." -msgstr "" -"See määrab millises valuutas on poes hinnad ning millises valuutas makseid " -"vastu võetakse." - -#: includes/admin/settings/class-wc-settings-general.php:119 -msgid "Currency Position" -msgstr "Valuuta sümboli asukoht" - -#: includes/admin/settings/class-wc-settings-general.php:120 -msgid "This controls the position of the currency symbol." -msgstr "See määrab valuuta sümboli asukoha." - -#: includes/admin/settings/class-wc-settings-general.php:127 -msgid "Left" -msgstr "Vasakul" - -#: includes/admin/settings/class-wc-settings-general.php:128 -msgid "Right" -msgstr "Paremal" - -#: includes/admin/settings/class-wc-settings-general.php:129 -msgid "Left with space" -msgstr "Vasakul, tühikuga eraldatud" - -#: includes/admin/settings/class-wc-settings-general.php:130 -msgid "Right with space" -msgstr "Paremal, tühikuga eraldatud" - -#: includes/admin/settings/class-wc-settings-general.php:136 -msgid "Thousand Separator" -msgstr "Tuhandike eraldaja" - -#: includes/admin/settings/class-wc-settings-general.php:137 -msgid "This sets the thousand separator of displayed prices." -msgstr "See määrab tuhandike eraldaja hindade kuvamisel." - -#: includes/admin/settings/class-wc-settings-general.php:146 -msgid "Decimal Separator" -msgstr "Komakohtade eraldaja" - -#: includes/admin/settings/class-wc-settings-general.php:147 -msgid "This sets the decimal separator of displayed prices." -msgstr "See määrab komakohtade eraldaja hindade kuvamisel." - -#: includes/admin/settings/class-wc-settings-general.php:156 -msgid "Number of Decimals" -msgstr "Komakohtade arv" - -#: includes/admin/settings/class-wc-settings-general.php:157 -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "See määrab mitu komakohta hindade kuvamisel näidatakse." - -#: includes/admin/settings/class-wc-settings-general.php:171 -msgid "Styles and Scripts" -msgstr "Stiilid ja skriptid" - -#: includes/admin/settings/class-wc-settings-general.php:176 -msgid "Scripts" -msgstr "Skripts" - -#: includes/admin/settings/class-wc-settings-general.php:177 -msgid "Enable Lightbox" -msgstr "Luba Lightbox" - -#: includes/admin/settings/class-wc-settings-general.php:180 -msgid "" -"Include WooCommerce's lightbox. Product gallery images and the add review " -"form will open in a lightbox." -msgstr "" -"Kasuta WooCommerce'i lightboxi. Tootegaleriide pilte ja ülevaate lisamise " -"vormi näidatakse lightboxis." - -#: includes/admin/settings/class-wc-settings-general.php:186 -msgid "Enable enhanced country select boxes" -msgstr "Lülita täiustatud riigivaliku väljad sisse" - -#: includes/admin/settings/class-wc-settings-general.php:191 -msgid "This will enable a script allowing the country fields to be searchable." -msgstr "See lülitab sisse ühe skripti, mis teeb riigivaliku väljad otsitavaks" - -#: includes/admin/settings/class-wc-settings-general.php:209 -msgid "Frontend Styles" -msgstr "Avaliku osa stiilid" - -#: includes/admin/settings/class-wc-settings-general.php:229 -msgid "Primary" -msgstr "Primaarne" - -#: includes/admin/settings/class-wc-settings-general.php:229 -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "" -"Peamise tegevuse nupud/hinnaliugur/kihtidega navigatsiooni UI " -"(kasutajaliides)" - -#: includes/admin/settings/class-wc-settings-general.php:230 -msgid "Secondary" -msgstr "Sekundaarne" - -#: includes/admin/settings/class-wc-settings-general.php:230 -msgid "Buttons and tabs" -msgstr "Nupud ja sildid" - -#: includes/admin/settings/class-wc-settings-general.php:231 -msgid "Highlight" -msgstr "Esiletõstmine" - -#: includes/admin/settings/class-wc-settings-general.php:231 -msgid "Price labels and Sale Flashes" -msgstr "Hinnasildid ja allahindluse kleepsud" - -#: includes/admin/settings/class-wc-settings-general.php:232 -msgid "Content" -msgstr "Sisu" - -#: includes/admin/settings/class-wc-settings-general.php:232 -msgid "Your themes page background - used for tab active states" -msgstr "Sinu teema lehtede taust - kasutatakse aktiivsete vahelehtede puhul" - -#: includes/admin/settings/class-wc-settings-general.php:233 -msgid "Subtext" -msgstr "Alamtekst" - -#: includes/admin/settings/class-wc-settings-general.php:233 -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "" -"Kasutatakse mõningate tekstide ja kõrvalsisude puhul - leivapuru, väikesed " -"tekstid jne." - -#: includes/admin/settings/class-wc-settings-general.php:236 -msgid "" -"To edit colours woocommerce/assets/css/woocommerce-base.less " -"and woocommerce.css need to be writable. See the Codex for more " -"information." -msgstr "" -"Värvide muutmiseks peavad woocommerce/assets/css/woocommerce-base." -"less ja woocommerce.css olema kirjutatavad. Vaata koodeksist " -"rohkem infot." - -#: includes/admin/settings/class-wc-settings-integrations.php:25 -msgid "Integration" -msgstr "Liidestus" - -#: includes/admin/settings/class-wc-settings-products.php:40 -msgid "Product Options" -msgstr "Toodete seaded" - -#: includes/admin/settings/class-wc-settings-products.php:79 -msgid "Inventory Options" -msgstr "Laohalduse seaded" - -#: includes/admin/settings/class-wc-settings-products.php:82 -msgid "Manage Stock" -msgstr "Halda laoseisu" - -#: includes/admin/settings/class-wc-settings-products.php:83 -msgid "Enable stock management" -msgstr "Lülita laoseisu haldus sisse" - -#: includes/admin/settings/class-wc-settings-products.php:90 -msgid "Hold Stock (minutes)" -msgstr "Hoia tooteid kinni (minutites)" - -#: includes/admin/settings/class-wc-settings-products.php:91 -msgid "" -"Hold stock (for unpaid orders) for x minutes. When this limit is reached, " -"the pending order will be cancelled. Leave blank to disable." -msgstr "" -"Hoia laokaupa (maksmata tellimuste jaoks) x minutit kinni. Kui see aeg saab " -"täis, siis maksmata tellimus tühistatakse. Jäta tühjaks, kui sa ei soovi " -"seda kasutada." - -#: includes/admin/settings/class-wc-settings-products.php:104 -msgid "Notifications" -msgstr "Teavitused" - -#: includes/admin/settings/class-wc-settings-products.php:105 -msgid "Enable low stock notifications" -msgstr "Lülita madala laoseisu teavitused sisse" - -#: includes/admin/settings/class-wc-settings-products.php:114 -msgid "Enable out of stock notifications" -msgstr "Lülita laost otsasaanud toodete teavitused sisse" - -#: includes/admin/settings/class-wc-settings-products.php:123 -msgid "Notification Recipient" -msgstr "Teavituste saaja" - -#: includes/admin/settings/class-wc-settings-products.php:132 -msgid "Low Stock Threshold" -msgstr "Madala laoseisu piirmäär" - -#: includes/admin/settings/class-wc-settings-products.php:146 -msgid "Out Of Stock Threshold" -msgstr "Laost otsasaamise piirmäär" - -#: includes/admin/settings/class-wc-settings-products.php:160 -msgid "Out Of Stock Visibility" -msgstr "Laost otsasaanud toodete nähtavus" - -#: includes/admin/settings/class-wc-settings-products.php:161 -msgid "Hide out of stock items from the catalog" -msgstr "Peida laost otsasaanud tooted" - -#: includes/admin/settings/class-wc-settings-products.php:168 -msgid "Stock Display Format" -msgstr "Laoseisu kuvamise vorming" - -#: includes/admin/settings/class-wc-settings-products.php:169 -msgid "This controls how stock is displayed on the frontend." -msgstr "See määrab kuidas laoseise avalikus osas kuvatakse." - -#: includes/admin/settings/class-wc-settings-products.php:175 -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "Näita alati laoseisu, näiteks \"12 tk laos\"" - -#: includes/admin/settings/class-wc-settings-products.php:176 -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "" -"Näita laoseisu ainult siis, kui laoseis on madal, näiteks \"Ainult 2 tk laos" -"\" vs. \"Laos\"" - -#: includes/admin/settings/class-wc-settings-products.php:177 -msgid "Never show stock amount" -msgstr "Ära kunagi näita laoseisu" - -#: includes/admin/settings/class-wc-settings-products.php:196 -msgid "" -"Note: The shop page has children - child pages will not work if you enable " -"this option." -msgstr "" -"Märkus: poe lehel on alamlehed - alamlehed ei tööta, kui sa lülitad selle " -"valiku sisse." - -#: includes/admin/settings/class-wc-settings-products.php:200 -msgid "Product Listings" -msgstr "Toodete nimekirjad" - -#: includes/admin/settings/class-wc-settings-products.php:203 -msgid "Product Archive / Shop Page" -msgstr "Toodete arhiiv / Poe leht" - -#: includes/admin/settings/class-wc-settings-products.php:204 -msgid "" -"The base page can also be used in your product permalinks." -msgstr "Põhilehte saad kasutada ka toodete püsiviidetes." - -#: includes/admin/settings/class-wc-settings-products.php:210 -msgid "" -"This sets the base page of your shop - this is where your product archive " -"will be." -msgstr "" -"See määrab sinu poe põhilehe - see on koht, kus asub sinu toodete arhiiv." - -#: includes/admin/settings/class-wc-settings-products.php:214 -msgid "Shop Page Display" -msgstr "Poe lehe sisu" - -#: includes/admin/settings/class-wc-settings-products.php:215 -msgid "This controls what is shown on the product archive." -msgstr "See määrab mida näidatakse toodete arhiivis." - -#: includes/admin/settings/class-wc-settings-products.php:222 -#: includes/admin/settings/class-wc-settings-products.php:238 -msgid "Show products" -msgstr "Näita tooteid" - -#: includes/admin/settings/class-wc-settings-products.php:223 -#: includes/admin/settings/class-wc-settings-products.php:239 -msgid "Show subcategories" -msgstr "Näita alamkategooriaid" - -#: includes/admin/settings/class-wc-settings-products.php:224 -#: includes/admin/settings/class-wc-settings-products.php:240 -msgid "Show both" -msgstr "Näita mõlemaid" - -#: includes/admin/settings/class-wc-settings-products.php:230 -msgid "Default Category Display" -msgstr "Kategoorialehtede sisu" - -#: includes/admin/settings/class-wc-settings-products.php:231 -msgid "This controls what is shown on category archives." -msgstr "See määrab mida näidatakse kategooriate arhiivides." - -#: includes/admin/settings/class-wc-settings-products.php:246 -msgid "Default Product Sorting" -msgstr "Vaikimisi toodete järjestuse kuvamine" - -#: includes/admin/settings/class-wc-settings-products.php:247 -msgid "This controls the default sort order of the catalog." -msgstr "See määrab kataloogi järjestuse vaikesuuna." - -#: includes/admin/settings/class-wc-settings-products.php:254 -msgid "Default sorting (custom ordering + name)" -msgstr "Vaikejärjestus (kohandatud järjestus + nimi)" - -#: includes/admin/settings/class-wc-settings-products.php:255 -msgid "Popularity (sales)" -msgstr "Populaarsus (müügi põhjal)" - -#: includes/admin/settings/class-wc-settings-products.php:256 -msgid "Average Rating" -msgstr "Keskmine hinnang" - -#: includes/admin/settings/class-wc-settings-products.php:257 -msgid "Sort by most recent" -msgstr "Järjesta uudsuse alusel" - -#: includes/admin/settings/class-wc-settings-products.php:258 -msgid "Sort by price (asc)" -msgstr "Järjesta hinna alusel (kasvav)" - -#: includes/admin/settings/class-wc-settings-products.php:259 -msgid "Sort by price (desc)" -msgstr "Järjesta hinna alusel (kahanev)" - -#: includes/admin/settings/class-wc-settings-products.php:265 -msgid "Add to cart" -msgstr "Ostukorvi lisamine" - -#: includes/admin/settings/class-wc-settings-products.php:266 -msgid "Redirect to the cart page after successful addition" -msgstr "Peale edukat toote korvi lisamist sunna kasutaja tagasi ostukorvi" - -#: includes/admin/settings/class-wc-settings-products.php:274 -msgid "Enable AJAX add to cart buttons on archives" -msgstr "Lülita arhiivilehtedel ostukorvi lisamise nuppudel AJAX sisse" - -#: includes/admin/settings/class-wc-settings-products.php:286 -msgid "Weight Unit" -msgstr "Kaaluühik" - -#: includes/admin/settings/class-wc-settings-products.php:287 -msgid "This controls what unit you will define weights in." -msgstr "See määrab millites mõõtühikutes sa toodete kaalu sisestad." - -#: includes/admin/settings/class-wc-settings-products.php:294 -msgid "kg" -msgstr "kg" - -#: includes/admin/settings/class-wc-settings-products.php:295 -msgid "g" -msgstr "g" - -#: includes/admin/settings/class-wc-settings-products.php:296 -msgid "lbs" -msgstr "nael" - -#: includes/admin/settings/class-wc-settings-products.php:297 -msgid "oz" -msgstr "unts" - -#: includes/admin/settings/class-wc-settings-products.php:303 -msgid "Dimensions Unit" -msgstr "Mõõtude ühik" - -#: includes/admin/settings/class-wc-settings-products.php:304 -msgid "This controls what unit you will define lengths in." -msgstr "See määrab millistes ühikutes sa suurused sisestad." - -#: includes/admin/settings/class-wc-settings-products.php:312 -msgid "cm" -msgstr "cm" - -#: includes/admin/settings/class-wc-settings-products.php:313 -msgid "mm" -msgstr "mm" - -#: includes/admin/settings/class-wc-settings-products.php:314 -msgid "in" -msgstr "toll" - -#: includes/admin/settings/class-wc-settings-products.php:315 -msgid "yd" -msgstr "jard" - -#: includes/admin/settings/class-wc-settings-products.php:321 -msgid "Product Ratings" -msgstr "Toodete hindamine" - -#: includes/admin/settings/class-wc-settings-products.php:322 -msgid "Enable ratings on reviews" -msgstr "Luba ülevaadete kirjutamisel hinnangute andmine sisse" - -#: includes/admin/settings/class-wc-settings-products.php:332 -msgid "Ratings are required to leave a review" -msgstr "Nõua ülevaate esitamiseks tootele hinnangu andmist" - -#: includes/admin/settings/class-wc-settings-products.php:342 -msgid "Show \"verified owner\" label for customer reviews" -msgstr "" -"Kui hinnangu andis keegi, kes on toote ostnud, näita seda avalikult ülevaate " -"juures" - -#: includes/admin/settings/class-wc-settings-products.php:353 -msgid "Product Image Sizes" -msgstr "Tootepiltide suurused" - -#: includes/admin/settings/class-wc-settings-products.php:353 -msgid "" -"These settings affect the actual dimensions of images in your catalog - the " -"display on the front-end will still be affected by CSS styles. After " -"changing these settings you may need to regenerate your " -"thumbnails." -msgstr "" -"Need seaded mõjutavad sinu tootepiltide tegelikke suurusi - poe avalikus " -"osas näidatavate piltide suurusi mõjutavad CSS-stiilid. Pärast nende seadete " -"muutmist võib olla vajalik pisipiltide uuesti genereerimine." - -#: includes/admin/settings/class-wc-settings-products.php:356 -msgid "Catalog Images" -msgstr "Kataloogipildid" - -#: includes/admin/settings/class-wc-settings-products.php:357 -msgid "This size is usually used in product listings" -msgstr "Seda suurust kasutatakse toodete nimekirjades" - -#: includes/admin/settings/class-wc-settings-products.php:370 -msgid "Single Product Image" -msgstr "Üksiku toote pildid" - -#: includes/admin/settings/class-wc-settings-products.php:371 -msgid "This is the size used by the main image on the product page." -msgstr "Seda suurust kasutatakse tootelehel põhipildi suurusena." - -#: includes/admin/settings/class-wc-settings-products.php:384 -msgid "Product Thumbnails" -msgstr "Toote pisipildid" - -#: includes/admin/settings/class-wc-settings-products.php:385 -msgid "" -"This size is usually used for the gallery of images on the product page." -msgstr "Seda suurust kasutatakse tootelehel pildigaleriis." - -#: includes/admin/settings/class-wc-settings-products.php:399 -msgid "Downloadable Products" -msgstr "Allalaaditavad tooted" - -#: includes/admin/settings/class-wc-settings-products.php:402 -msgid "File Download Method" -msgstr "Failide allalaadimise meetod" - -#: includes/admin/settings/class-wc-settings-products.php:403 -msgid "" -"Forcing downloads will keep URLs hidden, but some servers may serve large " -"files unreliably. If supported, X-Accel-Redirect/ X-" -"Sendfile can be used to serve downloads instead (server requires " -"mod_xsendfile)." -msgstr "" -"Sunnitud allalaadimiste kasutamine hoiab failide URLid peidetuna, ent " -"mõningatel serveritel võib esineda probleeme suurte failide edastamisega. " -"Kui serveril on vastav tugi olemas, siis võib allalaadimisi serveerida " -"hoopis X-Accel-Redirect/ X-Sendfile abil (serveril " -"peab olema mod_xsendfile sisse lülitatud)." - -#: includes/admin/settings/class-wc-settings-products.php:411 -msgid "Force Downloads" -msgstr "Sunnitud allalaadimised" - -#: includes/admin/settings/class-wc-settings-products.php:412 -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "X-Accel-Redirect/X-Sendfile" - -#: includes/admin/settings/class-wc-settings-products.php:413 -msgid "Redirect only" -msgstr "Ainult ümbersuunamine" - -#: includes/admin/settings/class-wc-settings-products.php:419 -msgid "Access Restriction" -msgstr "Ligipääsu piiramine" - -#: includes/admin/settings/class-wc-settings-products.php:420 -msgid "Downloads require login" -msgstr "Allalaadimiseks peab sisse logima" - -#: includes/admin/settings/class-wc-settings-products.php:424 -msgid "This setting does not apply to guest purchases." -msgstr "See seade ei mõjuta külaliste poolt tehtud oste." - -#: includes/admin/settings/class-wc-settings-products.php:430 -msgid "Grant access to downloadable products after payment" -msgstr "Anna ligipääs allalaaditavatele failidele kohe peale maksmist." - -#: includes/admin/settings/class-wc-settings-products.php:434 -msgid "" -"Enable this option to grant access to downloads when orders are \"processing" -"\", rather than \"completed\"." -msgstr "" -"Lülita see valik sisse, kui soovid anda allalaaditavatele failidele " -"ligipääsu juba siis, kui tellimused on \"töötluses\", mitte alles siis, kui " -"nad on \"täidetud\"." - -#: includes/admin/settings/class-wc-settings-shipping.php:41 -#: includes/admin/settings/class-wc-settings-shipping.php:67 -msgid "Shipping Options" -msgstr "Transpordi seaded" - -#: includes/admin/settings/class-wc-settings-shipping.php:70 -msgid "Shipping Calculations" -msgstr "Transpordikulude arvutamine" - -#: includes/admin/settings/class-wc-settings-shipping.php:71 -msgid "Enable shipping" -msgstr "Paku transporti" - -#: includes/admin/settings/class-wc-settings-shipping.php:79 -msgid "Enable the shipping calculator on the cart page" -msgstr "Näita ostukorvis transpordikulude kalkulaatorit" - -#: includes/admin/settings/class-wc-settings-shipping.php:88 -msgid "Hide shipping costs until an address is entered" -msgstr "Näita transpordikulusid alles peale aadressi sisestamist" - -#: includes/admin/settings/class-wc-settings-shipping.php:97 -msgid "Shipping Display Mode" -msgstr "Tarne kuvamise moodus" - -#: includes/admin/settings/class-wc-settings-shipping.php:98 -msgid "" -"This controls how multiple shipping methods are displayed on the frontend." -msgstr "See määrab, kuidas mitut tarneviisi poe avalikus osas näidatakse." - -#: includes/admin/settings/class-wc-settings-shipping.php:103 -msgid "Display shipping methods with \"radio\" buttons" -msgstr "Näita tarneviise \"raadio\"-nuppudena" - -#: includes/admin/settings/class-wc-settings-shipping.php:104 -msgid "Display shipping methods in a dropdown" -msgstr "Näita tarneviise rippmenüüs" - -#: includes/admin/settings/class-wc-settings-shipping.php:111 -msgid "Shipping Destination" -msgstr "Transpordi sihtpunkt" - -#: includes/admin/settings/class-wc-settings-shipping.php:112 -msgid "Ship to billing address by default" -msgstr "Tarni vaikimisi arveaadressile" - -#: includes/admin/settings/class-wc-settings-shipping.php:122 -msgid "Only ship to the users billing address" -msgstr "Tarni ainult kasutaja arveaadressile" - -#: includes/admin/settings/class-wc-settings-shipping.php:132 -msgid "Restrict shipping to Location(s)" -msgstr "Piira transport asukohtadega" - -#: includes/admin/settings/class-wc-settings-shipping.php:133 -msgid "" -"Choose which countries you want to ship to, or choose to ship to all locations you sell to." -msgstr "" -"Vali, millistesse riikidesse sa kaupa kohale toimetad või märgi, et soovid " -"kaupa kohale toimetada kõikidesse riikidesse, kuhu müüd." - -#: includes/admin/settings/class-wc-settings-shipping.php:140 -msgid "Ship to all countries you sell to" -msgstr "Paku transporti kõikidesse riikidesse, kuhu müüd" - -#: includes/admin/settings/class-wc-settings-shipping.php:141 -msgid "Ship to all countries" -msgstr "Paku transporti kõikidesse riikidesse" - -#: includes/admin/settings/class-wc-settings-shipping.php:142 -msgid "Ship to specific countries only" -msgstr "Paku transport valitud riikidesse" - -#: includes/admin/settings/class-wc-settings-shipping.php:197 -msgid "Shipping Methods" -msgstr "Tarneviisid" - -#: includes/admin/settings/class-wc-settings-shipping.php:204 -msgid "ID" -msgstr "ID" - -#: includes/admin/settings/class-wc-settings-shipping.php:215 -msgid "" -"Drag and drop the above shipping methods to control their display order." -msgstr "Lohista ülalolevad tarneviisid sobivasse järjekorda." - -#: includes/admin/settings/class-wc-settings-tax.php:40 -#: includes/admin/settings/class-wc-settings-tax.php:68 -msgid "Tax Options" -msgstr "Maksude seaded" - -#: includes/admin/settings/class-wc-settings-tax.php:41 -msgid "Standard Rates" -msgstr "Standardmäärad" - -#: includes/admin/settings/class-wc-settings-tax.php:49 -msgid "%s Rates" -msgstr "%s määrad" - -#: includes/admin/settings/class-wc-settings-tax.php:71 -msgid "Enable Taxes" -msgstr "Lülita maksud sisse" - -#: includes/admin/settings/class-wc-settings-tax.php:72 -msgid "Enable taxes and tax calculations" -msgstr "Lülita maksud ja maksude arvutamine sisse" - -#: includes/admin/settings/class-wc-settings-tax.php:79 -msgid "Prices Entered With Tax" -msgstr "Hinnad sisaldavad makse" - -#: includes/admin/settings/class-wc-settings-tax.php:83 -msgid "" -"This option is important as it will affect how you input prices. Changing it " -"will not update existing products." -msgstr "" -"See valik määrab, kuidas sa oma poes hinnad sisestad. Selle valiku muutmine " -"ei mõjuta olemasolevate toodete hindasid." - -#: includes/admin/settings/class-wc-settings-tax.php:85 -msgid "Yes, I will enter prices inclusive of tax" -msgstr "Jah, ma sisestan hinnad koos maksudega" - -#: includes/admin/settings/class-wc-settings-tax.php:86 -msgid "No, I will enter prices exclusive of tax" -msgstr "Ei, ma sisestan hinnad ilma maksudeta" - -#: includes/admin/settings/class-wc-settings-tax.php:91 -msgid "Calculate Tax Based On:" -msgstr "Kasuta maksude arvutamiseks:" - -#: includes/admin/settings/class-wc-settings-tax.php:93 -msgid "This option determines which address is used to calculate tax." -msgstr "See valik määrab millist aadressi kasutatakse maksude arvutamiseks." - -#: includes/admin/settings/class-wc-settings-tax.php:97 -msgid "Customer shipping address" -msgstr "Kliendi tarneaadressi" - -#: includes/admin/settings/class-wc-settings-tax.php:98 -msgid "Customer billing address" -msgstr "Kliendi arveaadressi" - -#: includes/admin/settings/class-wc-settings-tax.php:99 -#: includes/admin/settings/class-wc-settings-tax.php:111 -msgid "Shop base address" -msgstr "Poe aadress" - -#: includes/admin/settings/class-wc-settings-tax.php:104 -msgid "Default Customer Address:" -msgstr "Kliendi vaikimisi aadress:" - -#: includes/admin/settings/class-wc-settings-tax.php:106 -msgid "" -"This option determines the customers default address (before they input " -"their own)." -msgstr "" -"See valik määrab kliendi vaikimisi aadressi (enne, kui nad enda päris " -"aadressi sisestavad)." - -#: includes/admin/settings/class-wc-settings-tax.php:110 -msgid "No address" -msgstr "Puudub" - -#: includes/admin/settings/class-wc-settings-tax.php:116 -msgid "Shipping Tax Class:" -msgstr "Transpordi maksuklass:" - -#: includes/admin/settings/class-wc-settings-tax.php:117 -msgid "" -"Optionally control which tax class shipping gets, or leave it so shipping " -"tax is based on the cart items themselves." -msgstr "" -"Valikuliselt võid määrata, millise maksuklassi alla transport läheb. Võid " -"selle ka tühjaks jätta - sellisel juhul määratakse maksud ostukorvis olevate " -"esemete põhjal." - -#: includes/admin/settings/class-wc-settings-tax.php:122 -msgid "Shipping tax class based on cart items" -msgstr "Transpordi maksuklass põhineb ostukorvis olevatel toodetel" - -#: includes/admin/settings/class-wc-settings-tax.php:127 -msgid "Rounding" -msgstr "Ümardamine" - -#: includes/admin/settings/class-wc-settings-tax.php:128 -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "Ümarda maksusummat vahesumma juures, mitte iga tellimuse rea juures" - -#: includes/admin/settings/class-wc-settings-tax.php:135 -msgid "Additional Tax Classes" -msgstr "Täiendavad maksuklassid" - -#: includes/admin/settings/class-wc-settings-tax.php:136 -msgid "" -"List additonal tax classes below (1 per line). This is in addition to the " -"default Standard Rate. Tax classes can be assigned to products." -msgstr "" -"Määra siin nimekirjas täiendavad maksuklassid (1 rea kohta). Need " -"maksuklassid on lisaks vaikimisi Standard-määrale. Maksuklasse " -"saab määrata toodetele." - -#: includes/admin/settings/class-wc-settings-tax.php:140 -msgid "Reduced Rate%sZero Rate" -msgstr "Vähendatud maksumäär%sNullmäär" - -#: includes/admin/settings/class-wc-settings-tax.php:144 -msgid "Display prices in the shop:" -msgstr "Näita poes hindasid: " - -#: includes/admin/settings/class-wc-settings-tax.php:149 -#: includes/admin/settings/class-wc-settings-tax.php:168 -msgid "Including tax" -msgstr "Koos maksudega" - -#: includes/admin/settings/class-wc-settings-tax.php:150 -#: includes/admin/settings/class-wc-settings-tax.php:169 -msgid "Excluding tax" -msgstr "Ilma maksudeta" - -#: includes/admin/settings/class-wc-settings-tax.php:155 -msgid "Price display suffix:" -msgstr "Hinna kuvamise suffiks" - -#: includes/admin/settings/class-wc-settings-tax.php:159 -msgid "" -"Define text to show after your product prices. This could be, for example, " -"\"inc. Vat\" to explain your pricing. You can also have prices substituted " -"here using one of the following: {price_including_tax}, " -"{price_excluding_tax}." -msgstr "" -"Määra siin tekst, mida soovid näidata oma toodete hindade järel. See võib " -"olla näiteks \"sis. KM\". Sa võid siin ka hinnad asendada, kasutades " -"järgmisi muutujaid: {price_including_tax}, {price_excluding_tax}." - -#: includes/admin/settings/class-wc-settings-tax.php:163 -msgid "Display prices during cart/checkout:" -msgstr "Näita hindasid ostukorvis ja kassas:" - -#: includes/admin/settings/class-wc-settings-tax.php:175 -msgid "Display tax totals:" -msgstr "Näita maksude summasid:" - -#: includes/admin/settings/class-wc-settings-tax.php:180 -msgid "As a single total" -msgstr "Ühe summana" - -#: includes/admin/settings/class-wc-settings-tax.php:181 -msgid "Itemized" -msgstr "Eraldi ridadena" - -#: includes/admin/settings/class-wc-settings-tax.php:241 -msgid "Tax Rates for the \"%s\" Class" -msgstr "Maksumäärad \"%s\" klassis" - -#: includes/admin/settings/class-wc-settings-tax.php:242 -msgid "" -"Define tax rates for countries and states below. See here " -"for available alpha-2 country codes." -msgstr "" -"Määra siin erinevatele riikidele ja maakondadele/osariikidele kehtivad " -"maksumäärad. Siit leiad riikide 2-kohalised koodid." - -#: includes/admin/settings/class-wc-settings-tax.php:248 -msgid "Country Code" -msgstr "Riigi kood" - -#: includes/admin/settings/class-wc-settings-tax.php:248 -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "" -"2-tähemärgiga riigi kood, näiteks EE. Jäta tühjaks, kui soovid, et maksumäär " -"kehtiks kõikidele riikidele." - -#: includes/admin/settings/class-wc-settings-tax.php:250 -msgid "State Code" -msgstr "Maakonna/osariigi kood" - -#: includes/admin/settings/class-wc-settings-tax.php:250 -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "" -"2-kohaline osariigi/maakonna kood, näiteks AL. Jäta tühjaks, kui soovid, et " -"kehtiks kõikidele." - -#: includes/admin/settings/class-wc-settings-tax.php:252 -#: includes/admin/settings/class-wc-settings-tax.php:381 -msgid "ZIP/Postcode" -msgstr "Postiindeks" - -#: includes/admin/settings/class-wc-settings-tax.php:252 -msgid "" -"Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all areas. Wildcards (*) can be used. Ranges for numeric " -"postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "" -"Postiindeks selle reegli jaoks. Semikoolon (;) eraldab erinevaid väärtusi. " -"Jäta tühjaks, kui soovid, et kehtiks kõikidele piirkondadele. Tärne (*) saab " -"ka kasutada. Vahemikke (12345-12350) saab saab kasutada üksikute " -"postiindeksite asemel." - -#: includes/admin/settings/class-wc-settings-tax.php:254 -msgid "" -"Cities for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all cities." -msgstr "" -"Linnad selle reegli jaoks. Semikoolon (;) eraldab erinevaid väärtusi. Jäta " -"tühjaks, kui soovid, et kehtiks kõikidele linnadele. " - -#: includes/admin/settings/class-wc-settings-tax.php:256 -msgid "Rate %" -msgstr "Maksumäär %" - -#: includes/admin/settings/class-wc-settings-tax.php:256 -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "Sisesta maksumäär (protsent) kuni 4 komakohaga." - -#: includes/admin/settings/class-wc-settings-tax.php:258 -msgid "Tax Name" -msgstr "Maksu nimi" - -#: includes/admin/settings/class-wc-settings-tax.php:258 -msgid "Enter a name for this tax rate." -msgstr "Sisesta maksumäära nimi." - -#: includes/admin/settings/class-wc-settings-tax.php:260 -#: includes/admin/settings/class-wc-settings-tax.php:381 -msgid "Priority" -msgstr "Olulisus" - -#: includes/admin/settings/class-wc-settings-tax.php:260 -msgid "" -"Choose a priority for this tax rate. Only 1 matching rate per priority will " -"be used. To define multiple tax rates for a single area you need to specify " -"a different priority per rate." -msgstr "" -"Määra selle maksumäära olulisus. Olulisuse taseme kohta kasutatakse ainult " -"ühte vastet. Ühe piirkonna jaoks mitme maksumäära kasutamiseks pead igale " -"maksumäärale määrama erineva olulisuse taseme." - -#: includes/admin/settings/class-wc-settings-tax.php:262 -#: includes/admin/settings/class-wc-settings-tax.php:381 -msgid "Compound" -msgstr "Liidetav" - -#: includes/admin/settings/class-wc-settings-tax.php:262 -msgid "" -"Choose whether or not this is a compound rate. Compound tax rates are " -"applied on top of other tax rates." -msgstr "" -"Vali, kas see maksumäär on liidetav. Liidetavad maksumäärad lisatakse " -"kõikidele teistele maksumääradele lisaks." - -#: includes/admin/settings/class-wc-settings-tax.php:264 -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "Vali, kas see maksumäär rakendub ka transpordile." - -#: includes/admin/settings/class-wc-settings-tax.php:271 -msgid "Insert row" -msgstr "Lisa rida" - -#: includes/admin/settings/class-wc-settings-tax.php:272 -msgid "Remove selected row(s)" -msgstr "Eemalda valitud rida/read" - -#: includes/admin/settings/class-wc-settings-tax.php:288 -msgid "Import CSV" -msgstr "Impordi CSV" - -#: includes/admin/settings/class-wc-settings-tax.php:374 -msgid "No row(s) selected" -msgstr "Ühtegi rida pole valitud" - -#: includes/admin/settings/class-wc-settings-tax.php:381 -msgid "Country Code" -msgstr "Riigi kood" - -#: includes/admin/settings/class-wc-settings-tax.php:381 -msgid "State Code" -msgstr "Maakonna/osariigi kood" - -#: includes/admin/settings/class-wc-settings-tax.php:381 -msgid "Rate %" -msgstr "Määra %" - -#: includes/admin/settings/class-wc-settings-tax.php:381 -msgid "Tax Name" -msgstr "Maksu nimi" - -#: includes/admin/views/html-admin-page-addons.php:5 -msgid "Browse all extensions" -msgstr "Sirvi kõiki laiendusi" - -#: includes/admin/views/html-admin-page-addons.php:6 -msgid "Browse themes" -msgstr "Sirvi teemasid" - -#: includes/admin/views/html-admin-page-addons.php:11 -msgid "Popular" -msgstr "Populaarsed" - -#: includes/admin/views/html-admin-page-addons.php:12 -msgid "Gateways" -msgstr "Makseviisid" - -#: includes/admin/views/html-admin-page-addons.php:14 -msgid "Import/export" -msgstr "Import/export" - -#: includes/admin/views/html-admin-page-addons.php:16 -msgid "Marketing" -msgstr "Turundus" - -#: includes/admin/views/html-admin-page-addons.php:17 -msgid "Free" -msgstr "Tasuta" - -#: includes/admin/views/html-admin-page-status-report.php:3 -msgid "Please include this information when requesting support:" -msgstr "Abi paludes pane palun kaasa alljärgnev info:" - -#: includes/admin/views/html-admin-page-status-report.php:4 -msgid "Download System Report File" -msgstr "Laadi alla süsteemiraporti fail" - -#: includes/admin/views/html-admin-page-status-report.php:12 -msgid "Environment" -msgstr "Keskkond" - -#: includes/admin/views/html-admin-page-status-report.php:18 -msgid "Home URL" -msgstr "Avalehe URL" - -#: includes/admin/views/html-admin-page-status-report.php:22 -msgid "Site URL" -msgstr "Lehe URL" - -#: includes/admin/views/html-admin-page-status-report.php:26 -msgid "WC Version" -msgstr "WC versioon" - -#: includes/admin/views/html-admin-page-status-report.php:30 -msgid "WC Database Version" -msgstr "WC andmebaasi versioon" - -#: includes/admin/views/html-admin-page-status-report.php:34 -msgid "WP Version" -msgstr "WP versioon" - -#: includes/admin/views/html-admin-page-status-report.php:38 -msgid "WP Multisite Enabled" -msgstr "WP Multisite on sisse lülitatud" - -#: includes/admin/views/html-admin-page-status-report.php:42 -msgid "Web Server Info" -msgstr "Veebiserveri info" - -#: includes/admin/views/html-admin-page-status-report.php:46 -msgid "PHP Version" -msgstr "PHP versioon" - -#: includes/admin/views/html-admin-page-status-report.php:50 -msgid "MySQL Version" -msgstr "MySQLi versioon" - -#: includes/admin/views/html-admin-page-status-report.php:54 -msgid "PHP Locale" -msgstr "PHP lokaal" - -#: includes/admin/views/html-admin-page-status-report.php:63 -msgid "WP Memory Limit" -msgstr "WP mälukasutuse limiit" - -#: includes/admin/views/html-admin-page-status-report.php:68 -msgid "" -"%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "" -"%s - Me soovitame seada mälumaht vähemalt 64MB peale. Vaata: PHP-le lubatud mälumahu suurendamine" - -#: includes/admin/views/html-admin-page-status-report.php:75 -msgid "WP Debug Mode" -msgstr "WP veaotsing" - -#: includes/admin/views/html-admin-page-status-report.php:79 -msgid "WP Language" -msgstr "WP keel" - -#: includes/admin/views/html-admin-page-status-report.php:83 -msgid "WP Max Upload Size" -msgstr "WP maksimaalne üleslaadimise limiit" - -#: includes/admin/views/html-admin-page-status-report.php:88 -msgid "PHP Post Max Size" -msgstr "PHP postitatud andmete maksimaalne suurus" - -#: includes/admin/views/html-admin-page-status-report.php:92 -msgid "PHP Time Limit" -msgstr "PHP ajalimiit" - -#: includes/admin/views/html-admin-page-status-report.php:96 -msgid "PHP Max Input Vars" -msgstr "PHP maksimaalne sisendparameetrite arv" - -#: includes/admin/views/html-admin-page-status-report.php:100 -msgid "SUHOSIN Installed" -msgstr "SUHOSIN paigaldatud" - -#: includes/admin/views/html-admin-page-status-report.php:105 -msgid "WC Logging" -msgstr "WC logimine" - -#: includes/admin/views/html-admin-page-status-report.php:108 -msgid "Log directory is writable." -msgstr "Logikataloog on kirjutatav" - -#: includes/admin/views/html-admin-page-status-report.php:110 -msgid "" -"Log directory (woocommerce/logs/) is not writable. Logging will " -"not be possible." -msgstr "" -"Logikaust (woocommerce/logs/) ei ole kirjutatav. Logimine ei " -"ole võimalik." - -#: includes/admin/views/html-admin-page-status-report.php:114 -msgid "Default Timezone" -msgstr "Vaikimisi ajatsoon" - -#: includes/admin/views/html-admin-page-status-report.php:118 -msgid "Default timezone is %s - it should be UTC" -msgstr "Vaikimisi ajatsoon on %s - peaks olema UTC" - -#: includes/admin/views/html-admin-page-status-report.php:120 -msgid "Default timezone is %s" -msgstr "Vaikimisi ajatsoon on %s" - -#: includes/admin/views/html-admin-page-status-report.php:128 -msgid "fsockopen/cURL" -msgstr "fsockopen/cURL" - -#: includes/admin/views/html-admin-page-status-report.php:131 -msgid "Your server has fsockopen and cURL enabled." -msgstr "Sinu serveris on fsockopen ja cURL sisse lülitatud." - -#: includes/admin/views/html-admin-page-status-report.php:133 -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "Sinu serveris on fsockopen sisse lülitatud, cURL on välja lülitatud." - -#: includes/admin/views/html-admin-page-status-report.php:135 -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "Sinu serveris on cURL sisse lülitatud, fsockopen on välja lülitatud." - -#: includes/admin/views/html-admin-page-status-report.php:139 -msgid "" -"Your server does not have fsockopen or cURL enabled - PayPal IPN and other " -"scripts which communicate with other servers will not work. Contact your " -"hosting provider." -msgstr "" -"Sinu serveris ei ole fsockopen ega cURL sisse lülitatud - PayPal IPN ja " -"teised skriptid, mis suhtlevad teiste serveritega, ei tööta. Võta ühendust " -"oma veebimajutuse teenusepakkujaga." - -#: includes/admin/views/html-admin-page-status-report.php:144 -msgid "SOAP Client" -msgstr "SOAP klient" - -#: includes/admin/views/html-admin-page-status-report.php:146 -msgid "Your server has the SOAP Client class enabled." -msgstr "Sinu serveris on SOAP Client klass sisse lülitatud." - -#: includes/admin/views/html-admin-page-status-report.php:149 -msgid "" -"Your server does not have the SOAP Client class enabled - " -"some gateway plugins which use SOAP may not work as expected." -msgstr "" -"Sinu serveris on SOAP Client klass välja lülitatud - " -"mõned makseviisid, mis kasutavad SOAPi tehnoloogiat, ei pruugi töötada." - -#: includes/admin/views/html-admin-page-status-report.php:154 -msgid "WP Remote Post" -msgstr "WP kaugpostitamine" - -#: includes/admin/views/html-admin-page-status-report.php:165 -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "wp_remote_post() oli edukas - PayPal IPN on töökorras." - -#: includes/admin/views/html-admin-page-status-report.php:168 -msgid "" -"wp_remote_post() failed. PayPal IPN won't work with your server. Contact " -"your hosting provider. Error:" -msgstr "" -"wp_remote_post() ebaõnnestus. PayPal IPN ei tööta sinu serveris. Võta " -"ühendust oma veebimajutuse teenusepakkujaga. Viga:" - -#: includes/admin/views/html-admin-page-status-report.php:171 -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "" -"wp_remote_post() ebaõnnestus. PayPal IPN ei pruugi sinu serveris töötada." - -#: includes/admin/views/html-admin-page-status-report.php:194 -msgid "Plugins" -msgstr "Pluginad" - -#: includes/admin/views/html-admin-page-status-report.php:200 -msgid "Installed Plugins" -msgstr "Paigaldatud pluginad" - -#: includes/admin/views/html-admin-page-status-report.php:220 -msgid "Visit plugin homepage" -msgstr "Mine plugina kodulehele" - -#: includes/admin/views/html-admin-page-status-report.php:244 -#: includes/admin/views/html-admin-page-status-report.php:426 -msgid "is available" -msgstr "on saadaval" - -#: includes/admin/views/html-admin-page-status-report.php:247 -msgid "by" -msgstr "-" - -#: includes/admin/views/html-admin-page-status-report.php:247 -msgid "version" -msgstr "versioon" - -#: includes/admin/views/html-admin-page-status-report.php:269 -msgid "Force SSL" -msgstr "Nõua SSLi" - -#: includes/admin/views/html-admin-page-status-report.php:276 -msgid "WC Pages" -msgstr "WC lehed" - -#: includes/admin/views/html-admin-page-status-report.php:283 -msgid "Shop Base" -msgstr "Poe alusaadress" - -#: includes/admin/views/html-admin-page-status-report.php:287 -msgid "Cart" -msgstr "Ostukorv" - -#: includes/admin/views/html-admin-page-status-report.php:295 -msgid "My Account" -msgstr "Minu konto" - -#: includes/admin/views/html-admin-page-status-report.php:315 -msgid "Page not set" -msgstr "Lehte ei ole määratud" - -#: includes/admin/views/html-admin-page-status-report.php:325 -msgid "Page does not exist" -msgstr "Lehte ei ole olemas" - -#: includes/admin/views/html-admin-page-status-report.php:330 -msgid "Page does not contain the shortcode: %s" -msgstr "Leht ei sisalda lühikoodi: %s" - -#: includes/admin/views/html-admin-page-status-report.php:349 -msgid "WC Taxonomies" -msgstr "WC Taksonoomiad" - -#: includes/admin/views/html-admin-page-status-report.php:355 -msgid "Order Statuses" -msgstr "Tellimuste olekud" - -#: includes/admin/views/html-admin-page-status-report.php:365 -msgid "Product Types" -msgstr "Toodete tüübid" - -#: includes/admin/views/html-admin-page-status-report.php:378 -msgid "Theme" -msgstr "Teema" - -#: includes/admin/views/html-admin-page-status-report.php:415 -msgid "Theme Name" -msgstr "Teema nimi" - -#: includes/admin/views/html-admin-page-status-report.php:421 -msgid "Theme Version" -msgstr "teema versioon" - -#: includes/admin/views/html-admin-page-status-report.php:430 -msgid "Author URL" -msgstr "Autori URL" - -#: includes/admin/views/html-admin-page-status-report.php:439 -msgid "Templates" -msgstr "Mallid" - -#: includes/admin/views/html-admin-page-status-report.php:445 -msgid "Template Overrides" -msgstr "Mallide ülekirjutamised" - -#: includes/admin/views/html-admin-page-status-report.php:473 -msgid "No overrides present in theme." -msgstr "Teemas ei ole ülekirjutamisi." - -#: includes/admin/views/html-admin-page-status-tools.php:4 -#: includes/admin/views/html-admin-page-status.php:6 -msgid "Tools" -msgstr "Tööriistad" - -#: includes/admin/views/html-admin-settings.php:20 -msgid "Save changes" -msgstr "Salvesta muudatused" - -#: includes/admin/views/html-bulk-edit-product.php:15 -#: includes/admin/views/html-bulk-edit-product.php:39 -#: includes/admin/views/html-bulk-edit-product.php:63 -#: includes/admin/views/html-bulk-edit-product.php:82 -#: includes/admin/views/html-bulk-edit-product.php:108 -#: includes/admin/views/html-bulk-edit-product.php:132 -#: includes/admin/views/html-bulk-edit-product.php:156 -#: includes/admin/views/html-bulk-edit-product.php:175 -#: includes/admin/views/html-bulk-edit-product.php:193 -#: includes/admin/views/html-bulk-edit-product.php:212 -#: includes/admin/views/html-bulk-edit-product.php:231 -#: includes/admin/views/html-bulk-edit-product.php:252 -msgid "— No Change —" -msgstr "— Muutmata—" - -#: includes/admin/views/html-bulk-edit-product.php:16 -#: includes/admin/views/html-bulk-edit-product.php:40 -#: includes/admin/views/html-bulk-edit-product.php:109 -#: includes/admin/views/html-bulk-edit-product.php:133 -#: includes/admin/views/html-bulk-edit-product.php:232 -msgid "Change to:" -msgstr "Muuda:" - -#: includes/admin/views/html-bulk-edit-product.php:17 -#: includes/admin/views/html-bulk-edit-product.php:41 -msgid "Increase by (fixed amount or %):" -msgstr "Suurenda (kindel summa või %):" - -#: includes/admin/views/html-bulk-edit-product.php:18 -#: includes/admin/views/html-bulk-edit-product.php:42 -msgid "Decrease by (fixed amount or %):" -msgstr "Vähenda (kindel summa või %):" - -#: includes/admin/views/html-bulk-edit-product.php:28 -#: includes/admin/views/html-bulk-edit-product.php:53 -msgid "Enter price" -msgstr "Sisesta hind" - -#: includes/admin/views/html-bulk-edit-product.php:34 -#: includes/admin/views/html-quick-edit-product.php:29 -msgid "Sale" -msgstr "Allahindlus" - -#: includes/admin/views/html-bulk-edit-product.php:43 -msgid "Decrease regular price by (fixed amount or %):" -msgstr "Vähenda tavahinda (kindel summa või %):" - -#: includes/admin/views/html-bulk-edit-product.php:127 -#: includes/admin/views/html-quick-edit-product.php:95 -msgid "L/W/H" -msgstr "P/L/K" - -#: includes/admin/views/html-bulk-edit-product.php:151 -#: includes/admin/views/html-quick-edit-product.php:109 -msgid "Visibility" -msgstr "Nähtavus" - -#: includes/admin/views/html-bulk-edit-product.php:157 -#: includes/admin/views/html-quick-edit-product.php:114 -msgid "Catalog & search" -msgstr "Kataloog & otsing" - -#: includes/admin/views/html-bulk-edit-product.php:188 -#: includes/admin/views/html-quick-edit-product.php:132 -msgid "In stock?" -msgstr "Laos?" - -#: includes/admin/views/html-bulk-edit-product.php:247 -#: includes/admin/views/html-quick-edit-product.php:167 -msgid "Backorders?" -msgstr "Järeltellimused?" - -#: includes/admin/views/html-email-template-preview.php:1 -msgid "" -"Thank you, we are now processing your order. Your order's details are below." -msgstr "" -"Aitäh, sinu tellimus on nüüd töötluses. Sinu tellimuse andmed on allpool." - -#: includes/admin/views/html-email-template-preview.php:3 -msgid "Order:" -msgstr "Tellimus:" - -#: includes/admin/views/html-email-template-preview.php:9 -msgid "Quantity" -msgstr "Kogus" - -#: includes/admin/views/html-email-template-preview.php:22 -msgid "Order total:" -msgstr "Tellimus kokku:" - -#: includes/admin/views/html-email-template-preview.php:28 -msgid "Customer details" -msgstr "Kliendi andmed" - -#: includes/admin/views/html-email-template-preview.php:33 -msgid "Billing address" -msgstr "Arvelduse aadress" - -#: includes/admin/views/html-email-template-preview.php:40 -msgid "Shipping address" -msgstr "Tarneaadress" - -#: includes/admin/views/html-notice-install.php:6 -msgid "" -"Welcome to WooCommerce – You're almost ready to start " -"selling :)" -msgstr "" -"tere tulemast kasutama WooCommerce'i – Oled peaaegu " -"valmis, et alustada müümist :)" - -#: includes/admin/views/html-notice-install.php:7 -msgid "Install WooCommerce Pages" -msgstr "Paigalda WooCommerce'i lehed" - -#: includes/admin/views/html-notice-install.php:7 -msgid "Skip setup" -msgstr "Jäta paigaldus vahele" - -#: includes/admin/views/html-notice-theme-support.php:6 -msgid "" -"Your theme does not declare WooCommerce support – if " -"you encounter layout issues please read our integration guide or choose a " -"WooCommerce theme :)" -msgstr "" -"Sinu teema ei toetama metlikult WooCommerce'i – kui " -"sul esineb probleeme, loe palun meie liidestamise juhendit või vali mõni " -"WooCommerce'iga ühilduv teema :)" - -#: includes/admin/views/html-notice-theme-support.php:7 -msgid "Theme Integration Guide" -msgstr "Teema liidestamise juhend" - -#: includes/admin/views/html-notice-theme-support.php:7 -msgid "Hide this notice" -msgstr "Peida see teade" - -#: includes/admin/views/html-notice-update.php:6 -msgid "" -"WooCommerce Data Update Required – We just need to " -"update your install to the latest version" -msgstr "" -"WooCommerce'i andmete uuendus on vajalik – Meil on " -"lihtsalt vaja sinu paigaldus uuendada uusimale versioonile" - -#: includes/admin/views/html-notice-update.php:7 -msgid "Run the updater" -msgstr "Käivita uuendus" - -#: includes/admin/views/html-notice-update.php:12 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"On tungivalt soovitatav, et sa teeksid oma andmebaasist enne jätkamist " -"varukoopia. Oled sa kindel, et soovid uuendusega jätkata?" - -#: includes/admin/views/html-quick-edit-product.php:24 -msgid "Regular price" -msgstr "Tavahind" - -#: includes/admin/views/html-quick-edit-product.php:31 -msgid "Sale price" -msgstr "Soodushind" - -#: includes/admin/views/html-report-by-date.php:16 -msgid "Custom:" -msgstr "Kohandatud:" - -#: includes/admin/wc-admin-functions.php:197 -msgid "Could not compile woocommerce.less:" -msgstr "woocommerce.less kompileerimine ebaõnnestus:" - -#. Plugin URI of the plugin/theme -msgid "http://www.woothemes.com/woocommerce/" -msgstr "http://www.woothemes.com/woocommerce/" - -#. Description of the plugin/theme -msgid "An e-commerce toolkit that helps you sell anything. Beautifully." -msgstr "E-kaubanduse tööriist, mis võimaldab sul müüa ükskõik mida. Kaunilt." - -#. Author of the plugin/theme -msgid "WooThemes" -msgstr "WooThemes" - -#. Author URI of the plugin/theme -msgid "http://woothemes.com" -msgstr "http://woothemes.com" - -#, fuzzy -#~ msgid "File Path" -#~ msgstr "Faili laadimine tühistati." - -#, fuzzy -#~ msgid "File paths:" -#~ msgstr "Faili laadimine tühistati." - -#, fuzzy -#~ msgid "Upload" -#~ msgstr "Laadi üles" diff --git a/i18n/languages/woocommerce-admin-fi.mo b/i18n/languages/woocommerce-admin-fi.mo deleted file mode 100644 index 0babde193b9..00000000000 Binary files a/i18n/languages/woocommerce-admin-fi.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-admin-fi.po b/i18n/languages/woocommerce-admin-fi.po deleted file mode 100644 index fd7e3fe5163..00000000000 --- a/i18n/languages/woocommerce-admin-fi.po +++ /dev/null @@ -1,6588 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce 2.0.20 Admin\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-11-24 19:28:50+00:00\n" -"PO-Revision-Date: 2013-12-01 16:04+0200\n" -"Last-Translator: Arhi Paivarinta \n" -"Language-Team: Arhi Paivarinta \n" -"Language: fi\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Textdomain-Support: yes\n" -"X-Generator: Poedit 1.5.7\n" - -# @ woocommerce -#: admin/importers/importers-init.php:13 -msgid "WooCommerce Tax Rates (CSV)" -msgstr "WooCommerce-veroprosentit (CSV)" - -# @ woocommerce -#: admin/importers/importers-init.php:13 -msgid "Import tax rates to your store via a csv file." -msgstr "Tuo veroprosentit CSV-tiedoston avulla." - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:103 -#: admin/importers/tax-rates-importer.php:188 -#: admin/importers/tax-rates-importer.php:228 -#: admin/importers/tax-rates-importer.php:243 -msgid "Sorry, there has been an error." -msgstr "Pahoittelemme, on tapahtunut virhe." - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:104 -msgid "The file does not exist, please try again." -msgstr "Tiedostoa ei ole, ole hyvä ja yritä uudelleen." - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:189 -msgid "The CSV is invalid." -msgstr "CSV-tiedosto ei ole kelvollinen." - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:200 -msgid "" -"Import complete - imported %s tax rates and skipped " -"%s." -msgstr "" -"Tuonti valmis – tuotu %s veroprosenttia, ohitettu " -"%s." - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:210 -msgid "All done!" -msgstr "Kaikki tehty!" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:210 -msgid "View Tax Rates" -msgstr "Näytä veroprosentit" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:261 -msgid "Import Tax Rates" -msgstr "Tuo veroprosentit" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:284 -msgid "" -"Hi there! Upload a CSV file containing tax rates to import the contents into " -"your shop. Choose a .csv file to upload, then click \"Upload file and import" -"\"." -msgstr "" -"Hei! Voit asettaa kaupan tarvitsemat veroprosentit CSV-tiedoston (Comma " -"Separated File) avulla. Valitse siirrettävä .csv tiedosto ja paina 'Siirrä " -"tiedosto, tuo tiedot'" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:286 -msgid "" -"Tax rates need to be defined with columns in a specific order (10 columns). " -"Click here to download a sample." -msgstr "" -"Veroprosentit on kirjoitettava sarakkeisiin tietyssä järjestyksessä, 10 " -"saraketta. Lataa malli tästä." - -# @ default -#: admin/importers/tax-rates-importer.php:294 -msgid "" -"Before you can upload your import file, you will need to fix the following " -"error:" -msgstr "Tiedoston voi siirtää sen jälkeen, kun seuraavat virheet on korjattu:" - -# @ default -#: admin/importers/tax-rates-importer.php:303 -msgid "Choose a file from your computer:" -msgstr "Valitse tiedosto tietokoneelta:" - -# @ default -#: admin/importers/tax-rates-importer.php:309 -msgid "Maximum size: %s" -msgstr "Suurin koko: %s" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:314 -msgid "OR enter path to file:" -msgstr "TAI kirjoita tiedostopolku:" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:321 -msgid "Delimiter" -msgstr "Kentän erotin" - -#: admin/importers/tax-rates-importer.php:327 -msgid "Upload file and import" -msgstr "Siirrä tiedosto ja tuo tiedot" - -# @ woocommerce -#: admin/includes/duplicate_product.php:23 -msgid "No product to duplicate has been supplied!" -msgstr "Monistettavaa tuotetta ei ole valittu!" - -# @ woocommerce -#: admin/includes/duplicate_product.php:43 -msgid "Product creation failed, could not find original product:" -msgstr "Tuotteen luonti epäonnistui koska alkuperäistä tuotetta ei löytynyt:" - -# @ woocommerce -#: admin/includes/duplicate_product.php:90 -msgid "(Copy)" -msgstr "(Kopio)" - -# @ woocommerce -#: admin/includes/notice-install.php:6 -msgid "" -"Welcome to WooCommerce – You're almost ready to start " -"selling :)" -msgstr "" -"Tervetuloa, WooCommerce – Melkein valmis aloittamaan " -"myynnin :)" - -# @ woocommerce -#: admin/includes/notice-install.php:7 -msgid "Install WooCommerce Pages" -msgstr "Asenna WooCommercen edellyttämät sivut" - -# @ woocommerce -#: admin/includes/notice-install.php:7 -msgid "Skip setup" -msgstr "Ohita asennus" - -#: admin/includes/notice-theme-support.php:6 -msgid "" -"Your theme does not declare WooCommerce support – if " -"you encounter layout issues please read our integration guide or choose a " -"WooCommerce theme :)" -msgstr "" -"Teema ei ilmoita että se tukisi WooCommerce-lisäosaa " -"– jos havaitset asemointiin ja sivun ulkoasuun liittyviä ongelmia, " -"tutustu integraatio-opaaseemme tai valitse WooCommerce teema :)" - -# @ woocommerce -#: admin/includes/notice-theme-support.php:7 -msgid "Theme Integration Guide" -msgstr "Teeman integrointi -ohje" - -# @ woocommerce -#: admin/includes/notice-theme-support.php:7 -msgid "Hide this notice" -msgstr "Piilota tämä huomautus" - -# @ woocommerce -#: admin/includes/notice-update.php:6 -msgid "" -"Data Update Required – We just need to update your " -"install to the latest version" -msgstr "" -"Tietojen päivitys vaaditaan – Ohjelman asennus on " -"päivitettävä uusimpaan versioon" - -# @ woocommerce -#: admin/includes/notice-update.php:7 -msgid "Run the updater" -msgstr "Suorita päivitys" - -# @ woocommerce -#: admin/includes/notice-update.php:12 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"On suositeltavaa, että teet varmuuskopion tietokannasta ennen etenemistä. " -"Oletko varma että haluat suorittaa päivityksen nyt?" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:49 -#: admin/woocommerce-admin-init.php:890 -msgctxt "slug" -msgid "product-category" -msgstr "tuote-osasto" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:50 -#: admin/woocommerce-admin-init.php:903 -msgctxt "slug" -msgid "product-tag" -msgstr "tuote-avainsana" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:58 -msgctxt "slug" -msgid "product" -msgstr "tuote" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:179 -#: admin/woocommerce-admin-install.php:207 -msgctxt "page_slug" -msgid "lost-password" -msgstr "salasanan-palautus" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:179 -#: admin/woocommerce-admin-install.php:207 -#: admin/woocommerce-admin-status.php:346 -msgid "Lost Password" -msgstr "Salasana unohtunut" - -# @ woocommerce -#: admin/includes/welcome.php:48 -msgid "Welcome to WooCommerce" -msgstr "Tervetuloa WooCommerce-ohjelmistoon" - -# @ woocommerce -#: admin/includes/welcome.php:135 -msgid "Welcome to WooCommerce %s" -msgstr "Tervetuloa WooCommerceen %s" - -# @ woocommerce -#: admin/includes/welcome.php:140 -msgid "Thanks, all done!" -msgstr "Kiitos, kaikki tehty!" - -#: admin/includes/welcome.php:142 -msgid "Thank you for updating to the latest version!" -msgstr "Kiitos, kun päivitit uusimpaan versioon!" - -#: admin/includes/welcome.php:144 -msgid "Thanks for installing!" -msgstr "Kiitos, kun asensit!" - -#: admin/includes/welcome.php:146 -msgid "" -"%s WooCommerce %s is more powerful, stable, and secure than ever before. We " -"hope you enjoy it." -msgstr "" -"%s WooCommerce %s on tehokkaampi, vakaampi ja turvallisempi kuin aiemmin. " -"Toivomme että nautit siitä." - -# @ woocommerce -#: admin/includes/welcome.php:150 -msgid "Version %s" -msgstr "Versio %s" - -# @ woocommerce -#: admin/includes/welcome.php:153 admin/woocommerce-admin-content.php:41 -#: admin/woocommerce-admin-init.php:88 admin/woocommerce-admin-status.php:289 -msgid "Settings" -msgstr "Asetukset" - -# @ woocommerce -#: admin/includes/welcome.php:154 -msgid "Docs" -msgstr "Ohjeet" - -#: admin/includes/welcome.php:161 -msgid "What's New" -msgstr "Mitä uutta" - -#: admin/includes/welcome.php:163 -msgid "Credits" -msgstr "Tunnustukset" - -#: admin/includes/welcome.php:186 -msgid "Security in mind" -msgstr "Turvallisuutta ajatellen" - -#: admin/includes/welcome.php:190 -msgid "Sucuri Safe Plugin" -msgstr "Sucuri Safe -lisäosa" - -#: admin/includes/welcome.php:191 -msgid "" -"You will be happy to learn that WooCommerce has been audited and certified " -"by the Sucuri Security team. Whilst there is not much to be seen visually to " -"understand the amount of work that went into this audit, rest assured that " -"your website is powered by one of the most powerful and stable eCommerce " -"plugins available." -msgstr "" -"Voimme iloksesi kertoa, että WooCommercen turvallisuuden on tarkastanut ja " -"sertifioinut Sucuri Security. Pinnalta on tuskin havaittavissa mitään, joka " -"kertoisi kuinka paljon työtä tehtiin tämän tarkastuksen läpäisemiseksi. Voit " -"kuitenkin olla varma, että sivustollasi oleva WooCommerce on yksi " -"vakaimmista ja tehokkaimmista lisäosista." - -#: admin/includes/welcome.php:194 -msgid "A Smoother Admin Experience" -msgstr "Sujuvampi hallintapuolen toiminta" - -# @ woocommerce -#: admin/includes/welcome.php:200 -msgid "New Product Panel" -msgstr "Uusi tuotepaneeli" - -#: admin/includes/welcome.php:201 -msgid "" -"We have revised the product data panel making it cleaner, more streamlined, " -"and more logical. Adding products is a breeze!" -msgstr "" -"Tuotteiden paneeli on uudistettu. Se on nyt selkeämpi, pelkistetympi ja " -"loogisempi. Tuotteiden lisääminen sujuu helposti!" - -#: admin/includes/welcome.php:206 -msgid "Nicer Order Screens" -msgstr "Miellyttävämpi Tilaukset-näyttö" - -#: admin/includes/welcome.php:207 -msgid "" -"Order pages have had a cleanup, with a more easily scannable interface. We " -"particularly like the new status icons!" -msgstr "" -"Tilausten sivut on siistitty – käyttöliittymää on nyt helpompi silmäillä. " -"Pidämme erityisesti uusista Tila-kuvakkeista." - -#: admin/includes/welcome.php:212 -msgid "Multi-Download Support" -msgstr "Tuki usealle ladattavalle tuotteelle" - -#: admin/includes/welcome.php:213 -msgid "" -"Products can have multiple downloadable files - purchasers will get access " -"to all the files added." -msgstr "" -"Tuotteissa voi olla useita ladattavia tiedostoja – ostaja saa pääsyn " -"kaikkiin lisättyihin tiedostoihin." - -#: admin/includes/welcome.php:218 -msgid "Less Taxing Taxes" -msgstr "Helpommat verojen asetukset" - -#: admin/includes/welcome.php:224 -msgid "New Tax Input Panel" -msgstr "Uusi paneeli verojen asettamiseksi" - -#: admin/includes/welcome.php:225 -msgid "" -"The tax input pages have been streamlined to make inputting taxes simpler - " -"adding multiple taxes for a single jurisdiction is now much easier using the " -"priority system. There is also CSV import/export support." -msgstr "" -"Verojen asettaminen on tehty helpommaksi pelkistämällä sivut, joilla verot " -"asetetaan. Usean veron asettaminen yhdelle juridiselle alueelle on nyt " -"helpompaa, kun voidaan käyttää ensisijaisuusasetuksia (prioretisointia). " -"Verot voidaan myös lisätä tuomalla ohjelmaan CSV-tiedosto." - -# @ woocommerce -#: admin/includes/welcome.php:229 -msgid "Improved Tax Options" -msgstr "Veroasetukset parannettu" - -#: admin/includes/welcome.php:230 -msgid "" -"As requested by some users, we now support taxing the billing address " -"instead of shipping (optional), and we allow you to choose which tax class " -"applies to shipping." -msgstr "" -"Jotkut käyttäjät toivoivat ja toteutimme: verot voidaan laskea " -"laskutusosoitteen perusteella (vaihtoehtoisen toimitusosoitteen sijaan). " -"Lisäksi voit valita, mitä veroluokkaa käytetään toimituksen (rahdin) verojen " -"laskemiseen." - -#: admin/includes/welcome.php:235 -msgid "Product Listing Improvements Customers Will Love" -msgstr "Tuotteiden esitystapojen parannukset joista asiakkaat pitävät" - -# @ woocommerce -#: admin/includes/welcome.php:241 -msgid "New Sorting Options" -msgstr "Lajittelu parannettu" - -#: admin/includes/welcome.php:242 -msgid "Customers can now sort products by popularity and ratings." -msgstr "" -"Asiakkaat voivat lajitella tuotteet suosituimmuuden ja arvostelujen " -"perusteella." - -#: admin/includes/welcome.php:247 -msgid "Better Pagination and Result Counts" -msgstr "Parannettu sivutus ja tuotteiden määrät" - -#: admin/includes/welcome.php:248 -msgid "" -"Numbered pagination has been added to core, and we show the number of " -"results found above the listings." -msgstr "" -"Sivutuksen numerointi on lisätty ohjelman ytimeen ja tuotteiden määrä " -"esitetään listauksen yläpuolella." - -#: admin/includes/welcome.php:253 -msgid "Inline Star Rating Display" -msgstr "Rivin sisälle sijoitettu Tähti-arvostelu" - -#: admin/includes/welcome.php:254 -msgid "" -"We have added star ratings to the catalog which are pulled from reviews." -msgstr "" -"Tähti-arvostelut on lisätty tuoteluetteloon. Arvostelut otetaan " -"tuotearvioista." - -#: admin/includes/welcome.php:262 -msgid "Under the Hood" -msgstr "Konepellin alla" - -# @ woocommerce -#: admin/includes/welcome.php:266 -msgid "New product classes" -msgstr "Uusia tuoteluokkia" - -#: admin/includes/welcome.php:267 -msgid "" -"The product classes have been rewritten and are now factory based. Much more " -"extendable, and easier to query products using the new get_product() function." -msgstr "" -"Tuoteluokat on kirjoitettu uudelleen ja ne ovat nyt tehdaslähtöisiä (factory " -"based). Paljon enemmän laajennettavissa ja tuotteita on helpompi hakea " -"uudella get_product() toiminnolla." - -# @ woocommerce -#: admin/includes/welcome.php:271 -msgid "Capability overhaul" -msgstr "Toiminnallsuutta kehitetty" - -#: admin/includes/welcome.php:272 -msgid "" -"More granular capabilities for admin/shop manager roles covering products, " -"orders and coupons." -msgstr "" -"Hienojakoisempi tapa sekä hallinnoijalle että kauppiaalle hallita tuotteita, " -"tilauksia ja kuponkeja." - -#: admin/includes/welcome.php:276 -msgid "API Improvements" -msgstr "API-parannukset" - -#: admin/includes/welcome.php:277 -msgid "" -"WC-API now has real endpoints, and we've optimised the gateways " -"API significantly by only loading gateways when needed." -msgstr "" -"WC-API sisältää nyt todellisia loppuja (endpoints) ja käytävien " -"API on merkittävästi optimoitu: käytävät ladataan vain tarvittaessa." - -#: admin/includes/welcome.php:283 -msgid "Cache-friendly cart widgets" -msgstr "Ostoskori-vimpaimet toimivat paremmin välimuistin kanssa" - -#: admin/includes/welcome.php:284 -msgid "" -"Cart widgets and other \"fragments\" are now pulled in via AJAX - this works " -"wonders with static page caching." -msgstr "" -"Ostoskori-vimpaimet ja muut \"pienet lisukkeet\" toimivat nyt AJAX-" -"tekniikalla. Tämä on huomattava etu, kun välimuistissa on staattiset sivut." - -#: admin/includes/welcome.php:288 -msgid "Session handling" -msgstr "Istuntojen käsittely" - -#: admin/includes/welcome.php:289 -msgid "" -"PHP SESSIONS have been a problem for many users in the past, so we've " -"developed our own handler using cookies and options to make these more " -"reliable." -msgstr "" -"PHP-istunnot ovat aiemmin aiheuttaneet ongelmia. Olemme nyt kehittäneet oman " -"tavan joka käyttää evästeitä ja valintoja. Tuloksena on luotettavampi " -"toiminta." - -#: admin/includes/welcome.php:293 -msgid "Retina Ready" -msgstr "Retina-näyttöjen valmius" - -#: admin/includes/welcome.php:294 -msgid "All graphics within WC have been optimised for HiDPI displays." -msgstr "" -"Kaikki WC-grafiikat on optimoitu korkean resoluution (HiDPI) näytöille." - -#: admin/includes/welcome.php:301 -msgid "Better stock handling" -msgstr "Parempi varaston hallinta" - -# @ woocommerce -#: admin/includes/welcome.php:302 -msgid "" -"We have added an option to hold stock for unpaid orders (defaults to " -"60mins). When this time limit is reached, and the order is not paid for, " -"stock is released and the order is cancelled." -msgstr "" -"Olemme lisänneet mahdollisuuden varata vireillä olevan (=maksamaton) " -"tilauksen tuotteet tietyksi ajaksi, oletus on 60 minuuttia. Kun aikaraja on " -"saavutettu ja tilausta ei ole maksettu siihen mennessä niin tuotteet " -"palautetaan varastoon ja tilaus perutaan." - -#: admin/includes/welcome.php:306 -msgid "Improved Line-item storage" -msgstr "Parannettu tuoterivien tallennus" - -#: admin/includes/welcome.php:307 -msgid "" -"We have changed how order items get stored making them easier (and faster) " -"to access for reporting. Order items are no longer serialised within an " -"order - they are stored within their own table." -msgstr "" -"Tilattujen tuotteiden tallennus on muutettu. Nyt ne saadaan helpommin ja " -"nopeammin raportteihin. Tilatut tuotteet eivät ole enää numeroituina " -"tilauksessa – ne on nyt tallennettu omaan tauluun tietokannassa." - -#: admin/includes/welcome.php:311 -msgid "Autoload" -msgstr "Automaattinen lataus" - -#: admin/includes/welcome.php:312 -msgid "" -"We have setup autoloading for classes - this has dramatically reduced memory " -"usage in 2.0." -msgstr "" -"Luokkiin (classes) on asetettu automaattinen latautuminen – tämä vähensi " -"merkittävästi muistin käyttöä versiossa 2.0." - -# @ woocommerce -#: admin/includes/welcome.php:319 -msgid "Go to WooCommerce Settings" -msgstr "Siirry WooCommerce-asetuksiin" - -#: admin/includes/welcome.php:337 -msgid "" -"WooCommerce is developed and maintained by a worldwide team of passionate " -"individuals and backed by an awesome developer community. Want to see your " -"name? Contribute to WooCommerce." -msgstr "" -"WooCommerce:a kehittää ja ylläpitää tiimi joka koostuu asialle " -"omistautuneista henkilöistä ja heitä tukee ilmiömäinen kehitysyhteisö. " -"Haluatko nähdä nimesi? Osallistu WooCommercen kehittämiseen." - -# @ woocommerce -#: admin/includes/welcome.php:363 -msgid "View %s" -msgstr "Katso %s" - -# @ woocommerce -#: admin/post-types/product.php:31 -msgid "Make a duplicate from this product" -msgstr "Monista tämä tuote" - -# @ woocommerce -#: admin/post-types/product.php:32 -msgid "Duplicate" -msgstr "Monista" - -# @ woocommerce -#: admin/post-types/product.php:61 -msgid "Copy to a new draft" -msgstr "Kopioi ja tee uusi luonnos" - -# @ woocommerce -#: admin/post-types/product.php:86 admin/woocommerce-admin-taxonomies.php:297 -msgid "Image" -msgstr "Kuva" - -# @ woocommerce -#: admin/post-types/product.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:376 -#: admin/post-types/writepanels/writepanel-product_data.php:470 -#: admin/woocommerce-admin-attributes.php:240 -#: admin/woocommerce-admin-attributes.php:276 -#: admin/woocommerce-admin-attributes.php:314 -#: admin/woocommerce-admin-attributes.php:337 -#: admin/woocommerce-admin-attributes.php:381 -#: admin/woocommerce-admin-attributes.php:406 -#: admin/woocommerce-admin-init.php:437 -msgid "Name" -msgstr "Nimi" - -# @ woocommerce -#: admin/post-types/product.php:91 admin/post-types/product.php:557 -#: admin/post-types/writepanels/variation-admin-html.php:52 -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#: admin/woocommerce-admin-reports.php:2100 -#: admin/woocommerce-admin-reports.php:2136 -msgid "SKU" -msgstr "Tuotetunnus (SKU)" - -# @ woocommerce -#: admin/post-types/product.php:94 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:82 -#: admin/woocommerce-admin-content.php:63 -#: admin/woocommerce-admin-reports.php:90 -msgid "Stock" -msgstr "Varasto" - -# @ woocommerce -#: admin/post-types/product.php:96 admin/post-types/product.php:568 -#: admin/post-types/product.php:789 admin/woocommerce-admin-functions.php:202 -msgid "Price" -msgstr "Hinta" - -# @ woocommerce -#: admin/post-types/product.php:98 -msgid "Categories" -msgstr "Osastot" - -# @ woocommerce -#: admin/post-types/product.php:99 -msgid "Tags" -msgstr "Avainsanat (tägit)" - -# @ woocommerce -#: admin/post-types/product.php:100 admin/post-types/product.php:632 -#: admin/post-types/product.php:906 -#: admin/post-types/writepanels/writepanel-product_data.php:1059 -#: admin/woocommerce-admin-init.php:450 -msgid "Featured" -msgstr "Esittelyssä" - -# @ woocommerce -#: admin/post-types/product.php:101 admin/woocommerce-admin-attributes.php:258 -#: admin/woocommerce-admin-attributes.php:316 -#: admin/woocommerce-admin-attributes.php:393 -msgid "Type" -msgstr "Laji" - -# @ woocommerce -#: admin/post-types/product.php:102 admin/post-types/shop_order.php:50 -msgid "Date" -msgstr "Päiväys/ aika" - -# @ woocommerce -#: admin/post-types/product.php:151 -msgid "Edit this item" -msgstr "Muokkaa tätä tuotetta" - -# @ woocommerce -#: admin/post-types/product.php:151 -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#: admin/post-types/writepanels/writepanel-order_data.php:387 -#: admin/post-types/writepanels/writepanel-product_data.php:1062 -#: admin/woocommerce-admin-attributes.php:330 -msgid "Edit" -msgstr "Muokkaa" - -# @ woocommerce -#: admin/post-types/product.php:152 -msgid "Edit this item inline" -msgstr "Muokkaa tuotetta tässä" - -# @ woocommerce -#: admin/post-types/product.php:152 -msgid "Quick Edit" -msgstr "Pikamuokkaus" - -# @ woocommerce -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore this item from the Trash" -msgstr "Palauta tuote roskakorista" - -# @ woocommerce -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore" -msgstr "Palauta" - -# @ woocommerce -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Move this item to the Trash" -msgstr "Siirrä tämä tuote roskakoriin" - -# @ woocommerce -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Trash" -msgstr "Roskakori" - -# @ woocommerce -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -msgid "Delete this item permanently" -msgstr "Poista tuote pysyvästi" - -# @ woocommerce -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -#: admin/post-types/writepanels/writepanel-order_data.php:463 -msgid "Delete Permanently" -msgstr "Poista lopullisesti" - -# @ woocommerce -#: admin/post-types/product.php:165 -msgid "Preview “%s”" -msgstr "Esikatselu “%s”" - -# @ woocommerce -#: admin/post-types/product.php:165 -msgid "Preview" -msgstr "Esikatselu" - -# @ woocommerce -#: admin/post-types/product.php:167 -msgid "View “%s”" -msgstr "Näytä “%s”" - -# @ woocommerce -#: admin/post-types/product.php:167 admin/post-types/shop_order.php:171 -msgid "View" -msgstr "Katso" - -# @ woocommerce -#: admin/post-types/product.php:214 -msgid "Grouped" -msgstr "Joukko" - -# @ woocommerce -#: admin/post-types/product.php:216 -msgid "External/Affiliate" -msgstr "Ulkoinen/yhteistyökumppani" - -# @ woocommerce -#: admin/post-types/product.php:220 admin/post-types/product.php:407 -#: admin/post-types/writepanels/variation-admin-html.php:176 -#: admin/post-types/writepanels/writepanel-product_data.php:52 -msgid "Virtual" -msgstr "Palvelu(tuote)" - -# @ woocommerce -#: admin/post-types/product.php:222 admin/post-types/product.php:403 -#: admin/post-types/writepanels/variation-admin-html.php:174 -#: admin/post-types/writepanels/writepanel-product_data.php:58 -msgid "Downloadable" -msgstr "Ladattava" - -# @ woocommerce -#: admin/post-types/product.php:224 -msgid "Simple" -msgstr "Perustuote" - -# @ woocommerce -#: admin/post-types/product.php:228 admin/post-types/product.php:387 -msgid "Variable" -msgstr "Muunnelma" - -# @ woocommerce -#: admin/post-types/product.php:251 -msgid "Toggle featured" -msgstr "Esittelyssä" - -# @ woocommerce -#: admin/post-types/product.php:253 -msgid "yes" -msgstr "kyllä" - -#: admin/post-types/product.php:255 -msgid "no" -msgstr "ei" - -# @ woocommerce -#: admin/post-types/product.php:262 admin/post-types/product.php:641 -#: admin/post-types/product.php:930 -#: admin/post-types/writepanels/writepanel-product_data.php:231 -msgid "In stock" -msgstr "Varastossa" - -# @ woocommerce -#: admin/post-types/product.php:264 admin/post-types/product.php:642 -#: admin/post-types/product.php:931 -#: admin/post-types/writepanels/writepanel-product_data.php:232 -#: admin/woocommerce-admin-reports.php:2120 -msgid "Out of stock" -msgstr "Varasto loppu" - -# @ woocommerce -#: admin/post-types/product.php:373 -msgid "Show all product types" -msgstr "Näytä kaikki tuotelajit" - -# @ woocommerce -#: admin/post-types/product.php:381 -#: admin/post-types/writepanels/writepanel-product_data.php:39 -msgid "Grouped product" -msgstr "Joukkotuote" - -# @ woocommerce -#: admin/post-types/product.php:383 -#: admin/post-types/writepanels/writepanel-product_data.php:40 -msgid "External/Affiliate product" -msgstr "Yhteistyökumppanin tuote" - -# @ woocommerce -#: admin/post-types/product.php:385 -#: admin/post-types/writepanels/writepanel-product_data.php:38 -msgid "Simple product" -msgstr "Perustuote" - -# @ woocommerce -#: admin/post-types/product.php:399 -msgid "Show all sub-types" -msgstr "Näytä kaikki alalajit" - -# @ woocommerce -#: admin/post-types/product.php:520 -msgid "[%s with SKU of %s]" -msgstr "[%s tuotetunnuksella %s]" - -# @ woocommerce -#: admin/post-types/product.php:526 -msgid "[%s with ID of %d]" -msgstr "[%s ID:llä %d]" - -# @ woocommerce -#: admin/post-types/product.php:552 admin/post-types/product.php:783 -#: admin/post-types/writepanels/writepanels-init.php:46 -#: admin/settings/settings-init.php:508 -msgid "Product Data" -msgstr "Tuotetiedot" - -# @ woocommerce -#: admin/post-types/product.php:570 -msgid "Regular price" -msgstr "Normaali hinta" - -# @ woocommerce -#: admin/post-types/product.php:575 admin/post-types/product.php:813 -msgid "Sale" -msgstr "Alennus" - -# @ woocommerce -#: admin/post-types/product.php:577 -msgid "Sale price" -msgstr "Alennettu hinta" - -# @ woocommerce -#: admin/post-types/product.php:588 admin/post-types/product.php:839 -#: admin/post-types/writepanels/variation-admin-html.php:96 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:83 -#: admin/post-types/writepanels/writepanel-product_data.php:273 -msgid "Weight" -msgstr "Paino" - -# @ woocommerce -#: admin/post-types/product.php:599 admin/post-types/product.php:863 -msgid "L/W/H" -msgstr "p/l/k" - -# @ woocommerce -#: admin/post-types/product.php:601 admin/post-types/product.php:879 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:286 -msgid "Length" -msgstr "Pituus" - -# @ woocommerce -#: admin/post-types/product.php:602 admin/post-types/product.php:880 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:85 -#: admin/post-types/writepanels/writepanel-product_data.php:287 -#: admin/woocommerce-admin-settings.php:798 -msgid "Width" -msgstr "Leveys" - -# @ woocommerce -#: admin/post-types/product.php:603 admin/post-types/product.php:881 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:86 -#: admin/post-types/writepanels/writepanel-product_data.php:288 -#: admin/woocommerce-admin-settings.php:800 -msgid "Height" -msgstr "Korkeus" - -# @ woocommerce -#: admin/post-types/product.php:613 admin/post-types/product.php:887 -msgid "Visibility" -msgstr "Näkyvyys" - -# @ woocommerce -#: admin/post-types/product.php:618 admin/post-types/product.php:893 -msgid "Catalog & search" -msgstr "Luettelo & haku" - -# @ woocommerce -#: admin/post-types/product.php:619 admin/post-types/product.php:894 -#: admin/post-types/writepanels/writepanel-product_data.php:1048 -#: admin/woocommerce-admin-content.php:46 -#: admin/woocommerce-admin-settings.php:183 -msgid "Catalog" -msgstr "Luettelo" - -# @ woocommerce -#: admin/post-types/product.php:620 admin/post-types/product.php:895 -#: admin/post-types/writepanels/writepanel-product_data.php:1049 -msgid "Search" -msgstr "Haku" - -# @ woocommerce -#: admin/post-types/product.php:621 admin/post-types/product.php:896 -#: admin/post-types/writepanels/writepanel-product_data.php:1050 -msgid "Hidden" -msgstr "Piilotettu" - -# @ woocommerce -#: admin/post-types/product.php:636 admin/post-types/product.php:924 -msgid "In stock?" -msgstr "Varasto?" - -# @ woocommerce -#: admin/post-types/product.php:657 admin/post-types/product.php:942 -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Manage stock?" -msgstr "Aseta määrä varastossa?" - -# @ woocommerce -#: admin/post-types/product.php:661 admin/post-types/product.php:961 -#: admin/post-types/product.php:977 -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "Stock Qty" -msgstr "Varastossa" - -# @ woocommerce -#: admin/post-types/product.php:794 admin/post-types/product.php:818 -#: admin/post-types/product.php:844 admin/post-types/product.php:868 -#: admin/post-types/product.php:892 admin/post-types/product.php:911 -#: admin/post-types/product.php:929 admin/post-types/product.php:947 -#: admin/post-types/product.php:966 -msgid "— No Change —" -msgstr "— Ei muutosta —" - -# @ woocommerce -#: admin/post-types/product.php:795 admin/post-types/product.php:819 -#: admin/post-types/product.php:845 admin/post-types/product.php:869 -#: admin/post-types/product.php:967 -msgid "Change to:" -msgstr "Vaihda:" - -# @ woocommerce -#: admin/post-types/product.php:796 admin/post-types/product.php:820 -msgid "Increase by (fixed amount or %):" -msgstr "Suurenna (kiinteä määrä tai %):" - -# @ woocommerce -#: admin/post-types/product.php:797 admin/post-types/product.php:821 -msgid "Decrease by (fixed amount or %):" -msgstr "Pienennä (kiinteä määrä tai %):" - -# @ woocommerce -#: admin/post-types/product.php:807 admin/post-types/product.php:832 -msgid "Enter price" -msgstr "Kirjoita hinta" - -# @ woocommerce -#: admin/post-types/product.php:822 -msgid "Decrease regular price by (fixed amount or %):" -msgstr "Pienennä normaalihintaa (kiinteä määrä tai %):" - -# @ woocommerce -#: admin/post-types/product.php:912 admin/post-types/product.php:948 -#: admin/post-types/shop_order.php:190 admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:297 -msgid "Yes" -msgstr "Kyllä" - -# @ woocommerce -#: admin/post-types/product.php:913 admin/post-types/product.php:949 -#: admin/post-types/shop_order.php:192 admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:297 -msgid "No" -msgstr "Ei" - -# @ woocommerce -#: admin/post-types/product.php:1183 -msgid "Sort Products" -msgstr "Lajittele tuotteet" - -# @ woocommerce -#: admin/post-types/product.php:1222 -msgid "Insert into product" -msgstr "Liitä tuotteeseen" - -# @ woocommerce -#: admin/post-types/product.php:1223 -msgid "Uploaded to this product" -msgstr "Tähän tuotteeseen liitetty [palvelimelle] siirto" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:25 -msgid "Code" -msgstr "Koodi" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:26 -msgid "Coupon type" -msgstr "Kupongin laji" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:27 -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Coupon amount" -msgstr "Kupongin määrä" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:28 -msgid "Description" -msgstr "Kuvaus" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:29 -msgid "Product IDs" -msgstr "Tuotetunnukset" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:30 -msgid "Usage / Limit" -msgstr "Käyttö / Raja" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:31 -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "Expiry date" -msgstr "Viim. voimassaolopäivä" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:56 -msgid "Edit coupon" -msgstr "Muokkaa kuponkia" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:114 -msgid "%s / %s" -msgstr "%s / %s" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:116 -msgid "%s / ∞" -msgstr "%s / ∞" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:149 -msgid "Show all types" -msgstr "Näytä kaikki lajit" - -# @ woocommerce -#: admin/post-types/shop_order.php:43 -#: admin/settings/settings-payment-gateways.php:29 -#: admin/settings/settings-shipping-methods.php:31 -msgid "Status" -msgstr "Vaihe" - -# @ woocommerce -#: admin/post-types/shop_order.php:44 -msgid "Order" -msgstr "Tilaus ja tilaaja" - -# @ woocommerce -#: admin/post-types/shop_order.php:45 -msgid "Billing" -msgstr "Laskutus" - -# @ woocommerce -#: admin/post-types/shop_order.php:46 -#: admin/post-types/writepanels/writepanel-order_data.php:539 -#: admin/post-types/writepanels/writepanel-product_data.php:81 -#: admin/settings/settings-tax-rates.php:52 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-content.php:49 -#: admin/woocommerce-admin-settings.php:187 -msgid "Shipping" -msgstr "Toimitus" - -# @ woocommerce -#: admin/post-types/shop_order.php:47 -msgid "Order Total" -msgstr "Summa" - -# @ woocommerce -#: admin/post-types/shop_order.php:48 -#: admin/post-types/writepanels/writepanels-init.php:71 -msgid "Order Notes" -msgstr "Tilauksen kommentit" - -# @ woocommerce -#: admin/post-types/shop_order.php:49 -msgid "Customer Notes" -msgstr "Asiakkaan kommentit" - -# @ woocommerce -#: admin/post-types/shop_order.php:51 -#: admin/post-types/writepanels/writepanel-order_data.php:386 -#: admin/post-types/writepanels/writepanel-order_data.php:433 -msgid "Actions" -msgstr "Toimenpiteet" - -# @ woocommerce -#: admin/post-types/shop_order.php:95 -#: admin/post-types/writepanels/writepanel-order_data.php:93 -msgid "Guest" -msgstr "Vieras" - -# @ woocommerce -#: admin/post-types/shop_order.php:98 -msgid "Order %s" -msgstr "%s tilauksen" - -# @ woocommerce -#: admin/post-types/shop_order.php:98 -msgid "made by" -msgstr "teki" - -# @ woocommerce -#: admin/post-types/shop_order.php:101 -msgid "Email:" -msgstr "Sähköposti:" - -# @ woocommerce -#: admin/post-types/shop_order.php:104 -msgid "Tel:" -msgstr "Puh:" - -# @ woocommerce -#: admin/post-types/shop_order.php:114 admin/post-types/shop_order.php:123 -msgid "Via" -msgstr "-" - -# @ woocommerce -#: admin/post-types/shop_order.php:131 -msgid "Unpublished" -msgstr "Julkaisematon" - -# @ woocommerce -#: admin/post-types/shop_order.php:133 -msgid "Y/m/d g:i:s A" -msgstr "j.n.Y H:i" - -# @ woocommerce -#: admin/post-types/shop_order.php:139 -msgid "%s ago" -msgstr "%s sitten" - -# @ woocommerce -#: admin/post-types/shop_order.php:141 -msgid "Y/m/d" -msgstr "j.n.Y" - -# @ woocommerce -#: admin/post-types/shop_order.php:158 -#: admin/woocommerce-admin-dashboard.php:176 -msgid "Processing" -msgstr "Käsittelyssä" - -# @ woocommerce -#: admin/post-types/shop_order.php:165 -msgid "Complete" -msgstr "Valmis" - -# @ woocommerce -#: admin/post-types/shop_order.php:282 -msgid "Show all statuses" -msgstr "Näytä kaikki vaiheet" - -# @ woocommerce -#: admin/post-types/shop_order.php:301 admin/post-types/shop_order.php:326 -msgid "Show all customers" -msgstr "Näytä kaikki asiakkaat" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:6 -msgid "Revoke Access" -msgstr "Estä pääsy" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:7 -#: admin/post-types/writepanels/variation-admin-html.php:7 -#: admin/post-types/writepanels/writepanel-product_data.php:369 -#: admin/post-types/writepanels/writepanel-product_data.php:463 -#: admin/woocommerce-admin-init.php:439 -msgid "Click to toggle" -msgstr "Vaihda tila painamalla" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:9 -msgid "File %d: %s" -msgstr "Tiedosto %d: %s" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:9 -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "Ladattu %s kerran" -msgstr[1] "Ladattu %s kertaa" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:16 -msgid "Downloads Remaining" -msgstr "Latauksia jäljellä" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:19 -#: admin/post-types/writepanels/variation-admin-html.php:151 -#: admin/post-types/writepanels/variation-admin-html.php:159 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Unlimited" -msgstr "Rajoittamaton" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:22 -msgid "Access Expires" -msgstr "Pääsy umpeutuu" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:23 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Never" -msgstr "Ei koskaan" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:10 -msgid "Fee Name" -msgstr "Maksun nimi" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:17 -#: admin/post-types/writepanels/order-item-html.php:89 -msgid "Tax class" -msgstr "Veroluokka" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:19 -#: admin/post-types/writepanels/order-tax-html.php:8 -#: admin/post-types/writepanels/writepanel-order_data.php:561 -#: admin/post-types/writepanels/writepanel-order_data.php:666 -#: admin/woocommerce-admin-reports.php:1659 -#: admin/woocommerce-admin-reports.php:2672 -#: admin/woocommerce-admin-reports.php:2681 -#: admin/woocommerce-admin-users.php:90 admin/woocommerce-admin-users.php:112 -msgid "N/A" -msgstr "Ei saatavilla/-tietoa" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:20 -#: admin/post-types/writepanels/writepanel-product_data.php:179 -msgid "Taxable" -msgstr "Verotettava" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:25 -#: admin/post-types/writepanels/order-item-html.php:96 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:53 -#: admin/post-types/writepanels/writepanel-product_data.php:186 -#: admin/settings/settings-init.php:972 -#: admin/settings/settings-tax-rates.php:29 -#: admin/woocommerce-admin-settings.php:228 -msgid "Standard" -msgstr "Perusvero" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:43 -#: admin/post-types/writepanels/order-item-html.php:115 -#: admin/woocommerce-admin-reports.php:1563 -#: admin/woocommerce-admin-reports.php:1616 -#: admin/woocommerce-admin-reports.php:2387 -#: admin/woocommerce-admin-reports.php:2556 -#: admin/woocommerce-admin-reports.php:2634 -msgid "Total" -msgstr "Yhteensä" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:10 -msgid "Product ID:" -msgstr "Tuotteen ID:" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:13 -msgid "Variation ID:" -msgstr "Muunnelman ID:" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:16 -msgid "Product SKU:" -msgstr "Tuotetunnus:" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:44 -msgid "Add meta" -msgstr "Lisää lisätieto" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:117 -msgid "Subtotal" -msgstr "Välisumma" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:6 -msgid "Tax Rate:" -msgstr "Veroprosentti:" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:16 -#: admin/post-types/writepanels/writepanel-order_data.php:630 -msgid "Sales Tax:" -msgstr "Arvonlisävero (VAT):" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:20 -#: admin/post-types/writepanels/writepanel-order_data.php:638 -msgid "Shipping Tax:" -msgstr "Toimituskulujen vero:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:6 -#: admin/post-types/writepanels/writepanel-product_data.php:368 -#: admin/post-types/writepanels/writepanel-product_data.php:462 -#: admin/woocommerce-admin-init.php:438 -msgid "Remove" -msgstr "Poista" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:20 -msgid "Any" -msgstr "Mikä tahansa" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:52 -msgid "" -"Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "" -"Syötä tuotetunnus tälle muunnelmalle. Jos tyhjä, käytetään ylemmän tason " -"(=muunnelmat sisältävän tuotteen) tuotetunnusta." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:63 -msgid "Stock Qty:" -msgstr "Varastossa:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:63 -msgid "" -"Enter a quantity to enable stock management at variation level, or leave " -"blank to use the parent product's options." -msgstr "" -"Ota käyttöön varaston hallinta muunnelmille. Kun tyhjä, käytetään sen " -"tuotteen varastoasetuksia johon muunnelmat on liitetty." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:72 -msgid "Regular Price:" -msgstr "Normaali hinta:" - -#: admin/post-types/writepanels/variation-admin-html.php:73 -msgid "Variation price (required)" -msgstr "Muunnelman hinta (vaaditaan)" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:76 -msgid "Sale Price:" -msgstr "Alennettu hinta" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:76 -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Schedule" -msgstr "Aikataulu" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:76 -msgid "Cancel schedule" -msgstr "Peruuta ajastus" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:83 -msgid "Sale start date:" -msgstr "Alennus alkaa (pvm):" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:136 -msgctxt "placeholder" -msgid "From…" -msgstr "Alkaa..." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:87 -msgid "Sale end date:" -msgstr "Alennus loppuu (pvm):" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:137 -msgctxt "placeholder" -msgid "To…" -msgstr "Loppuu..." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:96 -msgid "" -"Enter a weight for this variation or leave blank to use the parent product " -"weight." -msgstr "" -"Syötä paino tälle muunnelmalle. Jos tyhjä, käytetään ylemmän tason " -"(=muunnelmat sisältävän) tuotteen painoa." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:104 -msgid "Dimensions (L×W×H)" -msgstr "Mitat (P×L×K)" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:115 -msgid "Shipping class:" -msgstr "Toimitusluokka:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:119 -#: admin/post-types/writepanels/variation-admin-html.php:132 -msgid "Same as parent" -msgstr "Sama kuin ylemmällä tasolla" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:130 -msgid "Tax class:" -msgstr "Veroluokka:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:143 -msgid "File paths:" -msgstr "Tiedostopolut" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:143 -msgid "" -"Enter one or more File Paths, one per line, to make this variation a " -"downloadable product, or leave blank." -msgstr "" -"Kun kirjoitat tiedostopolun, muunnelma on ladattava tuote. Kirjoita yksi tai " -"useampi polku, kukin omalle riville. Kun tyhjä, ei käytetä." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:144 -#: admin/post-types/writepanels/writepanel-product_data.php:153 -msgid "File paths/URLs, one per line" -msgstr "Tiedostopolku/verkko-osoite (URL), kukin omalle riville." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:145 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Choose a file" -msgstr "Valitse tiedosto" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:145 -msgid "Upload" -msgstr "Siirrä tiedosto" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:145 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Insert file URL" -msgstr "Lisää tiedoston verkko-osoite (URL)" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:150 -msgid "Download Limit:" -msgstr "Latausraja:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:150 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Leave blank for unlimited re-downloads." -msgstr "Jätä tyhjäksi, jos et halua rajoitta latausten määrää." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:158 -msgid "Download Expiry:" -msgstr "Lataus umpeutuu" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:158 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "" -"Enter the number of days before a download link expires, or leave blank." -msgstr "Aseta kuinka monta päivää latauslinkki toimii. Kun tyhjä, ei käytetä." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:172 -msgid "Enabled" -msgstr "Käytössä" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:174 -msgid "" -"Enable this option if access is given to a downloadable file upon purchase " -"of a product" -msgstr "" -"Käytä tätä vaihtoehtoa kun ostaja päästetään lataamaan tiedosto oston " -"jälkeen." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:176 -msgid "" -"Enable this option if a product is not shipped or there is no shipping cost" -msgstr "" -"Käytä tätä vaihtoehtoa, kun tuotetta ei kuljeteta tai kuljetus on maksuton." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Coupon description" -msgstr "Kupongin kuvaus" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Optionally enter a description for this coupon for your reference." -msgstr "Valinnainen, kirjoita kupongille selittävä kuvaus." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:42 -msgid "Discount type" -msgstr "Alennuksen tapa" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Value of the coupon." -msgstr "Kupongin arvo." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "Enable free shipping" -msgstr "Ota käyttöön Maksuton toimitus" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "" -"Check this box if the coupon grants free shipping. The free " -"shipping method must be enabled with the \"must use coupon\" setting " -"checked." -msgstr "" -"Valitse ruutu, kun kupongilla tarjotaan maksuton toimitus. Maksuton toimitus toimitustapa oltava käytössä ja 'Kuponki vaaditaan' " -"asetus valittu." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "Individual use" -msgstr "Kertakäyttö" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "" -"Check this box if the coupon cannot be used in conjunction with other " -"coupons." -msgstr "Valitse ruutu, kun kuponkia ei voi käyttää toisen kupongin kanssa." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "Apply before tax" -msgstr "Kohdista ennen veroa" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "" -"Check this box if the coupon should be applied before calculating cart tax." -msgstr "" -"Valitse ruutu, jos kupongin tarjoama alennus lasketaan verottomasta hinnasta " -"(=ennen veroja)." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "Exclude sale items" -msgstr "Poissulje tarjoustuotteet" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "" -"Check this box if the coupon should not apply to items on sale. Per-item " -"coupons will only work if the item is not on sale. Per-cart coupons will " -"only work if there are no sale items in the cart." -msgstr "" -"Valitse ruutu, kun kuponki ei kelpaa tarjoustuotteille. Tuotekuponki kelpaa " -"vain silloin, kun tuote ei ole tarjouksessa. Ostoskorikuponki kelpaa vain, " -"kun ostoskorissa ei ole yhtään tarjoustuotetta." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "Minimum amount" -msgstr "Ostos vähintään (€)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "No minimum" -msgstr "Ei minimiostos-vaatimusta" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "" -"This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "Tässä asetetaan pienin ostos (välisumma), jolla kuponki hyväksytään." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:74 -#: admin/woocommerce-admin-taxonomies.php:28 -#: admin/woocommerce-admin-taxonomies.php:122 -msgid "Products" -msgstr "Tuotteet" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:75 -#: admin/post-types/writepanels/writepanel-order_data.php:400 -#: admin/post-types/writepanels/writepanel-product_data.php:523 -#: admin/post-types/writepanels/writepanel-product_data.php:540 -#: admin/woocommerce-admin-reports.php:1246 -msgid "Search for a product…" -msgstr "Etsi tuotetta..." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:89 -msgid "" -"Products which need to be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are discounted." -msgstr "" -"Ostoskorissa on oltava nämä tuotteet, jotta kuponki kelpaa. Tai 'Alennus " -"tuotteesta' tapauksessa nämä tuotteet on alennettu." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:94 -msgid "Exclude products" -msgstr "Poissulje tuotteet" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:95 -msgid "Search for a product…" -msgstr "Etsi tuotetta..." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:109 -msgid "" -"Products which must not be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are not discounted." -msgstr "" -"Ostoskorissa ei saa olla näitä tuotteita, jotta kuponki kelpaa. Tai 'Alennus " -"tuotteesta' tapauksessa näitä tuotteita ei ole alennettu." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:116 -msgid "Product categories" -msgstr "Osastot" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:117 -msgid "Any category" -msgstr "Mikä tahansa osasto" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:125 -msgid "" -"A product must be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will be discounted." -msgstr "" -"Ostoskorissa olevan tuotteen on kuuluttava tähän osastoon, jotta kuponki " -"kelpaa. Tai 'Alennus tuotteesta' tapauksessa tuotteen on kuuluttava tähän " -"osastoon." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:130 -msgid "Exclude categories" -msgstr "Poissulje osastot" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:131 -msgid "No categories" -msgstr "Ei osastoja" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:139 -msgid "" -"Product must not be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will not be discounted." -msgstr "" -"Ostoskorissa oleva tuote ei saa kuulua tähän osastoon, jotta kuponki kelpaa. " -"Tai 'Alennus tuotteesta' tapauksessa tässä osastossa olevia tuotteita ei ole " -"alennettu." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "Email restrictions" -msgstr "Sähköposti rajoitukset" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "No restrictions" -msgstr "Ei rajoituksia" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "" -"List of emails to check against the customer's billing email when an order " -"is placed." -msgstr "" -"Tilauksen yhteydessä tarkastetaan asiakkaan laskutussähköpostiosoite tästä " -"listasta." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "Usage limit" -msgstr "Käyttöraja" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "Rajoittamaton käyttö" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "How many times this coupon can be used before it is void." -msgstr "Aseta kuinka monta kertaa kuponkia voi käyttää." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgctxt "placeholder" -msgid "Never expire" -msgstr "Ei pääty koskaan" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "The date this coupon will expire, YYYY-MM-DD." -msgstr "Päiväys jolloin kupongin voimassaolo päättyy, VVVV-KK-PP." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:195 -msgid "" -"Coupon code already exists - customers will use the latest coupon with this " -"code." -msgstr "" -"Sama kupongin koodi on jo – asiakkaat voivat käyttää kuponkia jossa on tämä " -"koodi." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:59 -msgid "Order Details" -msgstr "Tilauksen tiedot" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:62 -msgid "Order number" -msgstr "Tilaus" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:67 -msgid "Customer IP:" -msgstr "Asiakkaan IP osoite:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:74 -msgid "General Details" -msgstr "Yleiset tiedot" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:76 -msgid "Order status:" -msgstr "Tilauksen vaihe:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:86 -msgid "Order Date:" -msgstr "Päiväys:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:87 -msgid "h" -msgstr "h" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#: admin/settings/settings-init.php:567 -msgid "m" -msgstr "m (metri)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:91 -msgid "Customer:" -msgstr "Asiakas:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:131 -msgid "Customer Note:" -msgstr "Asiakkaan kommentti:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:132 -msgid "Customer's notes about the order" -msgstr "Asiakkaan kommentti tilauksessa" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:140 -msgid "Billing Details" -msgstr "Laskutustiedot" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:144 -#: admin/post-types/writepanels/writepanel-order_data.php:234 -msgid "First Name" -msgstr "Etunimi" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:148 -#: admin/post-types/writepanels/writepanel-order_data.php:238 -msgid "Last Name" -msgstr "Sukunimi" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:152 -#: admin/post-types/writepanels/writepanel-order_data.php:242 -#: admin/woocommerce-admin-users.php:155 admin/woocommerce-admin-users.php:204 -msgid "Company" -msgstr "Yritys" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:156 -#: admin/post-types/writepanels/writepanel-order_data.php:246 -#: admin/woocommerce-admin-users.php:159 admin/woocommerce-admin-users.php:208 -msgid "Address 1" -msgstr "Osoite" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:160 -#: admin/post-types/writepanels/writepanel-order_data.php:250 -#: admin/woocommerce-admin-users.php:163 admin/woocommerce-admin-users.php:212 -msgid "Address 2" -msgstr "Osoite 2" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:164 -#: admin/post-types/writepanels/writepanel-order_data.php:254 -#: admin/settings/settings-tax-rates.php:42 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-users.php:167 admin/woocommerce-admin-users.php:216 -msgid "City" -msgstr "Kaupunki" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:168 -#: admin/post-types/writepanels/writepanel-order_data.php:258 -#: admin/woocommerce-admin-users.php:171 admin/woocommerce-admin-users.php:220 -msgid "Postcode" -msgstr "Postinumero" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:172 -#: admin/post-types/writepanels/writepanel-order_data.php:262 -#: admin/woocommerce-admin-users.php:179 admin/woocommerce-admin-users.php:228 -msgid "Country" -msgstr "Maa" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:175 -#: admin/post-types/writepanels/writepanel-order_data.php:265 -msgid "Select a country…" -msgstr "Valitse maa..." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:178 -#: admin/post-types/writepanels/writepanel-order_data.php:268 -#: admin/woocommerce-admin-users.php:175 admin/woocommerce-admin-users.php:224 -msgid "State/County" -msgstr "Lääni/Alue ym." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:182 -#: admin/woocommerce-admin-users.php:187 -msgid "Email" -msgstr "Sähköposti" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:185 -msgid "Phone" -msgstr "Puhelin" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:193 -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#: admin/post-types/writepanels/writepanel-order_data.php:277 -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "Address" -msgstr "Osoite" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:195 -msgid "No billing address set." -msgstr "Laskutusosoitetta ei ole asetettu." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:208 -msgid "Load billing address" -msgstr "Tuo laskutusosoite" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:230 -msgid "Shipping Details" -msgstr "Toimitustiedot" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "No shipping address set." -msgstr "Toimitusosoitetta ei ole asetettu." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Load shipping address" -msgstr "Tuo toimitusosoite" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Copy from billing" -msgstr "Kopioi laskutuksesta" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:339 -msgid "Item" -msgstr "Tuote" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#: admin/post-types/writepanels/writepanel-product_data.php:191 -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Class" -msgstr "Veroluokka" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:344 -msgid "Tax class for the line item" -msgstr "Veroluokka rivin tuotteelle" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:347 -msgid "Qty" -msgstr "Määrä" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:349 -msgid "Totals" -msgstr "Yhteensä" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:349 -msgid "Line subtotals are before pre-tax discounts, totals are after." -msgstr "" -"Rivin välisummasta ei ole vähennetty 'alennus ennen veroja', loppusummat " -"ovat tehdyn vähennyksen jälkeen." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:352 -#: admin/settings/settings-tax-rates.php:387 -#: admin/settings/settings-tax-rates.php:475 -#: admin/woocommerce-admin-content.php:48 -#: admin/woocommerce-admin-settings.php:186 -msgid "Tax" -msgstr "Verot" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:388 -msgid "Delete Lines" -msgstr "Poista tuoterivejä" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:390 -msgid "Stock Actions" -msgstr "Varastoviennit" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:391 -msgid "Reduce Line Stock" -msgstr "Vähennä varastoa rivin tiedolla" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:392 -msgid "Increase Line Stock" -msgstr "Kasvata varastoa rivin tiedolla" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:396 -#: admin/post-types/writepanels/writepanel-order_data.php:456 -msgid "Apply" -msgstr "Suorita" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:402 -msgid "Add item(s)" -msgstr "Lisää tuote" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:403 -msgid "Add fee" -msgstr "Lisää maksu" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:434 -msgid "Resend order emails" -msgstr "Lähetä uudelleen tilauksen sähköpostit" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:465 -msgid "Move to Trash" -msgstr "Siirrä roskakoriin" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save Order" -msgstr "Tallenna tilaus" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save/update the order" -msgstr "Tallenna/ päivitä tilaus" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:498 -msgid "Discounts" -msgstr "Alennukset" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:502 -msgid "Cart Discount:" -msgstr "Alennus ostoskorista:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:502 -msgid "Discounts before tax - calculated by comparing subtotals to totals." -msgstr "Alennus ennen veroja – lasketaan vertaamalla välisummaa loppusummaan." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:510 -msgid "Order Discount:" -msgstr "Alennus tilauksesta:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:510 -msgid "Discounts after tax - user defined." -msgstr "Alennus verojen jälkeen – käyttäjän asettama." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:543 -msgid "Label:" -msgstr "Nimike:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:544 -msgid "The shipping title the customer sees" -msgstr "Toimitustavan nimi, asiakas näkee" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:551 -msgid "Cost:" -msgstr "Hinta:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:552 -msgid "(ex. tax)" -msgstr "(veroton)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:559 -msgid "Method:" -msgstr "Toimitustapa:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:581 -#: admin/post-types/writepanels/writepanel-order_data.php:583 -#: admin/post-types/writepanels/writepanel-order_data.php:682 -#: admin/post-types/writepanels/writepanel-order_data.php:684 -msgid "Other" -msgstr "Muu" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:597 -msgid "Tax Rows" -msgstr "Verorivit" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:622 -msgid "+ Add tax row" -msgstr "+ Lisää verorivi" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:622 -msgid "" -"These rows contain taxes for this order. This allows you to display multiple " -"or compound taxes rather than a single total." -msgstr "" -"Nämä rivit sisältävät verot tälle tilaukselle. Tässä voidaan esittää verot " -"eriteltynä kokonaissumman sijaan." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:626 -msgid "Tax Totals" -msgstr "Verot yhteensä" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:630 -msgid "Total tax for line items + fees." -msgstr "Verot yhteensä tuoteriveille + maksuille." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:652 -#: admin/post-types/writepanels/writepanels-init.php:70 -msgid "Order Totals" -msgstr "Laskeminen" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:656 -msgid "Order Total:" -msgstr "Loppusumma:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:664 -msgid "Payment Method:" -msgstr "Maksutapa:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:695 -msgid "Calc taxes" -msgstr "Laske verot" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:697 -msgid "Calc totals" -msgstr "Laske loppusummat" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:57 -msgid "Choose a downloadable product…" -msgstr "Valitse ladattava tuote..." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:87 -msgid "Grant Access" -msgstr "Aseta pääsy" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:125 -msgid "" -"Could not grant access - the user may already have permission for this file " -"or billing email is not set. Ensure the billing email is set, and the order " -"has been saved." -msgstr "" -"Pääsyä ei voitu asettaa – käyttäjällä on ehkä jo pääsy tähän tiedostoon tai " -"laskutus sähköpostia ei ole asetettu. Varmista että tuo s-posti on asetettu " -"ja tilaus on tallennettu." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:148 -msgid "Are you sure you want to revoke access to this download?" -msgstr "Haluatko varmasti estää tämän lataamisen?" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -msgid "added %s ago" -msgstr "lisätty %s sitten" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -msgid "Delete note" -msgstr "Poista kommentti" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:50 -msgid "There are no notes for this order yet." -msgstr "Tähän tilaukseen ei vielä liity kommentteja." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "Add note" -msgstr "Lisää kommentti" - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "" -"Add a note for your reference, or add a customer note (the user will be " -"notified)." -msgstr "" -"Lisää kommentti tai lisää kommentti asiakkaalle (josta hänelle ilmoitetaan)." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:62 -msgid "Customer note" -msgstr "Kommentti asiakkaalle" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:63 -msgid "Private note" -msgstr "Yksityinen viesti" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:65 -#: admin/post-types/writepanels/writepanel-product_data.php:501 -msgid "Add" -msgstr "Lisää" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations for variable products are defined here." -msgstr "" -"Tässä asetetaan muunnelmia sisältävälle tuotteelle sen (tuote-)muunnelmat." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations" -msgstr "Muunnelmat" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:64 -msgid "" -"Before adding variations, add and save some attributes on the " -"Attributes tab." -msgstr "" -"Ensin lisää vähintään yksi ominaisuus ja tallenna se Ominaisuudet välilehdellä. Vasta sen jälkeen voit lisätä muunnelman." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:66 -msgid "Learn more" -msgstr "Lue lisää" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:73 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Close all" -msgstr "Sulje kaikki" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:73 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Expand all" -msgstr "Laajenna kaikki" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -msgid "Bulk edit:" -msgstr "Massamuokkaus:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:76 -msgid "Toggle "Enabled"" -msgstr "Vaihda 'Ota käyttöön' tila" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:77 -msgid "Toggle "Downloadable"" -msgstr "Vaihda 'Ladattavan' tila" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:78 -msgid "Toggle "Virtual"" -msgstr "Vaihda 'Palvelun' tila" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:79 -msgid "Delete all variations" -msgstr "Poista kaikki muunnelmat" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:80 -msgid "Prices" -msgstr "Hinnat" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:81 -msgid "Sale prices" -msgstr "Ale hinnat" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:87 -msgid "File Path" -msgstr "Tiedostopolku" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:88 -msgid "Download limit" -msgstr "Latausraja" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:89 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Download Expiry" -msgstr "Lataus umpeutuu" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:92 -msgid "Go" -msgstr "Toteuta" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:194 -msgid "Add Variation" -msgstr "Lisää muunnelma" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:196 -msgid "Link all variations" -msgstr "Linkitä kaikki muunnelmat" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:198 -msgid "Default selections:" -msgstr "Valinnan oletus:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:211 -msgid "No default" -msgstr "Ei oletusta" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:300 -msgid "" -"Are you sure you want to link all variations? This will create a new " -"variation for each and every possible combination of variation attributes " -"(max 50 per run)." -msgstr "" -"Haluatko varmasti tehdä (automaattisesti) kaikki mahdolliset muunnelmat? " -"Jokainen mahdollinen ominaisuuksien yhdistelmä käydään läpi ja kullekin " -"yhdistelmälle luodaan uusi muunnelma (max 50 kerrallaan)." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:317 -msgid "variation added" -msgstr "muunnelma lisätty" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:319 -msgid "variations added" -msgstr "muunnelmat lisätty" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:321 -msgid "No variations added" -msgstr "Muunnelmia ei lisätty" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:344 -msgid "Are you sure you want to remove this variation?" -msgstr "Oletko varma, että haluat poistaa tämän muunnelman?" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:400 -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "" -"Haluatko varmasti poistaa kaikki muunnelmat? Toimintoa ei voi peruuttaa." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:403 -msgid "Last warning, are you sure?" -msgstr "Viimeinen varoitus, oletko varma?" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:440 -msgid "Enter a value" -msgstr "Kirjoita arvo" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:518 -#: admin/woocommerce-admin-taxonomies.php:62 -#: admin/woocommerce-admin-taxonomies.php:154 -msgid "Choose an image" -msgstr "Valitse kuva" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:520 -msgid "Set variation image" -msgstr "Aseta muunnoksen kuva" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:564 -msgid "Variable product" -msgstr "Muunnelmatuote" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:630 -msgid "Variation #%s of %s" -msgstr "Muunnelma nro.%s / %s" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:43 -msgid "Product Type" -msgstr "Tuotteen laji" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:53 -msgid "Virtual products are intangible and aren't shipped." -msgstr "" -"Palvelut ovat virtuaalisia tuotteita eikä niiden toimitukseen kuulu " -"kuljetusta." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:59 -msgid "Downloadable products give access to a file upon purchase." -msgstr "Kun ladattava tuote on ostettu, asiakas voi ladata tiedoston." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:77 -#: admin/woocommerce-admin-content.php:44 -#: admin/woocommerce-admin-settings.php:182 -msgid "General" -msgstr "Yleiset" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:79 -#: admin/woocommerce-admin-content.php:47 -#: admin/woocommerce-admin-settings.php:185 -msgid "Inventory" -msgstr "Varasto" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:83 -msgid "Linked Products" -msgstr "Liitetyt tuotteet" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:85 -#: admin/woocommerce-admin-attributes.php:306 -#: admin/woocommerce-admin-init.php:66 -msgid "Attributes" -msgstr "Ominaisuudet" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:87 -msgid "Advanced" -msgstr "Edistyneet" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "Stock Keeping Unit" -msgstr "Tuotetunnus (SKU)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "" -"SKU refers to a Stock-keeping unit, a unique identifier for each distinct " -"product and service that can be purchased." -msgstr "" -"Tuotetunnus (SKU-varastointitunnus) on jokaisella tuotteella ja sen on " -"oltava muista poikkeava. Tämä koskee myös palveluita." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Product URL" -msgstr "Tuotteen verkko-osoite" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Enter the external URL to the product." -msgstr "Kirjoita tuotteelle (ulkoinen) verkko-osoite (URL)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "Button text" -msgstr "Painikkeen teksti" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgctxt "placeholder" -msgid "Buy product" -msgstr "Osta tuote" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "This text will be shown on the button linking to the external product." -msgstr "" -"Teksti näkyy painikkeessa, jota painamalla voi tutustua yhteistyökumppanin " -"tuotteeseen." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:119 -msgid "Regular Price" -msgstr "Normaali hinta" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Sale Price" -msgstr "Tarjoushinta" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:135 -msgid "Sale Price Dates" -msgstr "Tarjous voimassa, pvm." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:138 -#: admin/post-types/writepanels/writepanel-product_data.php:1083 -msgid "Cancel" -msgstr "Peruuta" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:152 -msgid "File paths (one per line)" -msgstr "Tiedostopolut (kukin omalle riville)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Download Limit" -msgstr "Latausrajoitus" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:178 -msgid "Tax Status" -msgstr "Verotus" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:180 -msgid "Shipping only" -msgstr "Toimitus vain" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:181 -msgid "None" -msgstr "Ei mitään" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Enable stock management at product level" -msgstr "" -"Ota käyttöön tuotteiden varastokirjanpito (myynnin seurauksena tuotteiden " -"määrä varastokirjanpidossa muuttuu)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "" -"Stock quantity. If this is a variable product this value will be used to " -"control stock for all variations, unless you define stock at variation level." -msgstr "" -"Varastossa on kpl. Jos tähän tuotteeseen on liitetty muunnelmia, tämä " -"'varastossa on kpl' luku koskee kaikkia muunnelmia, ellei muunnelmalle ole " -"erikseen asetettu omaa 'varastossa on kpl' lukua." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:230 -msgid "Stock status" -msgstr "Varastotilanne" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:233 -msgid "" -"Controls whether or not the product is listed as \"in stock\" or \"out of " -"stock\" on the frontend." -msgstr "" -"Tässä asetetaan kuinka varastotilanne näkyy julkisella puolella. Joko " -"'Varastossa' tai 'Varasto loppu'." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:240 -msgid "Allow Backorders?" -msgstr "Hyväksy jälkitoimitukset" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:241 -msgid "Do not allow" -msgstr "Ei hyväksytä" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:242 -msgid "Allow, but notify customer" -msgstr "Hyväksy ja ilmoita asiakkaalle" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:243 -msgid "Allow" -msgstr "Hyväksy" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:244 -msgid "" -"If managing stock, this controls whether or not backorders are allowed for " -"this product and variations. If enabled, stock quantity can go below 0." -msgstr "" -"Tässä asetetaan, sallitaanko tuotteelle (ja muunnelmille) jälkitoimitus. " -"Voidaan käyttää kun varaston hallinta on käytössä." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "Sold Individually" -msgstr "Myydään yksittäin" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "" -"Enable this to only allow one of this item to be bought in a single order" -msgstr "" -"Ota käyttöön myyntirajoitus: vain 1 kpl tätä tuotetta sallitaan yhdessä " -"tilauksessa." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:273 -msgid "Weight in decimal form" -msgstr "Paino (desimaali muodossa)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:284 -msgid "Dimensions" -msgstr "Mitat" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:290 -msgid "LxWxH in decimal form" -msgstr "p x l x k - pituus, leveys ja korkeus (desimaali muodossa)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:311 -msgid "No shipping class" -msgstr "Ei toimitusluokkaa" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "Shipping class" -msgstr "Toimitusluokka" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "" -"Shipping classes are used by certain shipping methods to group similar " -"products." -msgstr "" -"Toimitusluokka ryhmittää tuotteita, jotka tarvitsevat samankaltaisen " -"kuljetuksen." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:384 -#: admin/post-types/writepanels/writepanel-product_data.php:476 -#: admin/woocommerce-admin-init.php:440 -msgid "Value(s)" -msgstr "Arvo(t)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:386 -msgid "Select terms" -msgstr "Valitse arvot" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:398 -msgid "Select all" -msgstr "Valitse kaikki" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:398 -msgid "Select none" -msgstr "Valitse yksi" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:400 -msgid "Add new" -msgstr "Lisää uusi" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:413 -msgid "Pipe (|) separate terms" -msgstr "Erota arvot pystyviivalla | ." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:427 -#: admin/post-types/writepanels/writepanel-product_data.php:482 -#: admin/woocommerce-admin-init.php:442 -msgid "Visible on the product page" -msgstr "Näkyy tuotesivulla" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:440 -#: admin/post-types/writepanels/writepanel-product_data.php:488 -#: admin/woocommerce-admin-init.php:443 -msgid "Used for variations" -msgstr "Käytetään muunnelmissa" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:477 -#: admin/woocommerce-admin-init.php:441 -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "Kirjoita tekstiä tai lisää ominaisuuksia. Erota pystyviivalla (|)." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:503 -msgid "Custom product attribute" -msgstr "Mukautettu ominaisuus" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:515 -msgid "Save attributes" -msgstr "Tallenna ominaisuudet" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:522 -msgid "Up-Sells" -msgstr "Parempi tuote (Up-Sell)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:537 -msgid "" -"Up-sells are products which you recommend instead of the currently viewed " -"product, for example, products that are more profitable or better quality or " -"more expensive." -msgstr "" -"Parempi tuote -tuotteet ovat vaihtoehto näkyvissä olevalle tuotteelle. " -"Tuoteen kate voi olla suurempi, se voi olla kalliimpi ja/tai se on " -"ominaisuuksiltaan parempi tuote." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:539 -msgid "Cross-Sells" -msgstr "Lisätuote (Cross-Sell)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:555 -msgid "" -"Cross-sells are products which you promote in the cart, based on the current " -"product." -msgstr "" -"Lisätuote-tuotteet esitetään asiakkaalle ostoskorissa, jo valittujen " -"tuotteiden alla (ja niihin liittyen)." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:565 -msgid "Choose a grouped product…" -msgstr "Valitse joukko tuotteelle ..." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:591 -msgid "Grouping" -msgstr "Joukot" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:591 -msgid "Set this option to make this product part of a grouped product." -msgstr "Tässä liitetään tuote osaksi (tuote)joukkoa." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:611 -msgid "Purchase Note" -msgstr "Viesti ostajalle" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:611 -msgid "Enter an optional note to send the customer after purchase." -msgstr "Valinnainen: tieto joka lähetetään tuotteen ostaneelle." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:618 -msgid "Menu order" -msgstr "Esitysjärjestys" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:618 -msgid "Custom ordering position." -msgstr "Mukautettu järjestys (paikka numerona)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:626 -msgid "Enable reviews" -msgstr "Ota käyttöön tuotearviot" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:715 -msgid "Product SKU must be unique." -msgstr "Tuotetunnuksen (SKU) täytyy olla muista poikkeava." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1047 -msgid "Catalog/search" -msgstr "Luettelo/etsi" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1054 -msgid "Catalog visibility:" -msgstr "Luettelo näkyvyys:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1070 -msgid "" -"Define the loops this product should be visible in. The product will still " -"be accessible directly." -msgstr "" -"Aseta kiepit (loop) joissa tuote näkyy. Tuote on lisäksi katsottavissa " -"suoraan." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1076 -msgid "Enable this option to feature this product." -msgstr "Aseta tämä tuote 'Esittelyssä' tilaan." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1078 -msgid "Featured Product" -msgstr "Tuote on esittelyssä" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1082 -msgid "OK" -msgstr "OK" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:43 -#: admin/post-types/writepanels/writepanel-product_images.php:103 -msgid "Delete image" -msgstr "Poista kuva" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:43 -#: admin/post-types/writepanels/writepanel-product_images.php:103 -#: admin/woocommerce-admin-attributes.php:330 -msgid "Delete" -msgstr "Poista" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:54 -msgid "Add product gallery images" -msgstr "Lisää tuotekuvasto kuvia" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:80 -msgid "Add Images to Product Gallery" -msgstr "Lisää kuvia tuotekuvastoon" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:82 -msgid "Add to gallery" -msgstr "Lisää kuvastoon" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:47 -msgid "Product Gallery" -msgstr "Tuotekuvasto" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:55 -msgid "Product Short Description" -msgstr "Lyhyt tuotekuvaus" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:64 -msgid "Reviews" -msgstr "Arviot" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:68 -msgid "Order Data" -msgstr "Tilaustiedot" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "Order Items" -msgstr "Tilatut tuotteet" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "" -"Note: if you edit quantities or remove items from the order you will need to " -"manually update stock levels." -msgstr "" -"Huomaa: jos muutat tilattuja määriä tai poistat tuotteita tilauksesta, " -"joudut manuaalisesti korjaamaan varastossa olevien tuotteiden määrät." - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "Downloadable Product Permissions" -msgstr "Oikeudet ladattavalle tiedostolle" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "" -"Note: Permissions for order items will automatically be granted when the " -"order status changes to processing/completed." -msgstr "" -"Huomaa: kun tilauksen vaihe muuttuu 'käsittelyssä/valmis' -vaiheeksi, " -"myönnetään automaattisesti pääsy tilauksen tiedostojen lataamiseen." - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:73 -msgid "Order Actions" -msgstr "Toimenpiteet" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:81 -msgid "Coupon Data" -msgstr "Kupongin tiedot" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:100 -msgid "Coupon code" -msgstr "Kupongin koodi" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:101 -msgid "Product name" -msgstr "Tuotenimi" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:185 -msgid "Allow reviews." -msgstr "Salli tuotearviot." - -# @ default -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "" -"Allow trackbacks and pingbacks on this " -"page." -msgstr "" -"Salli trackback ja pingback viestit " -"tällä sivulla." - -# @ default -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" -msgstr "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:23 -msgid "Styles" -msgstr "Tyylit" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:43 -msgid "Primary" -msgstr "Tärkein" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:43 -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "" -"Aloita toiminto -painikkeet/ hinnan liukusäädin/ ominaisuuksilla haku vimpain" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:44 -msgid "Secondary" -msgstr "2. tärkeä" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:44 -msgid "Buttons and tabs" -msgstr "Painikkeet ja välilehdet" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:45 -msgid "Highlight" -msgstr "Korostus" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:45 -msgid "Price labels and Sale Flashes" -msgstr "Hintalaput ja Ale-ilmoitukset" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:46 -msgid "Content" -msgstr "Sisältö" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:46 -msgid "Your themes page background - used for tab active states" -msgstr "Sivun tausta teemassa – myös avoinna oleva välilehti" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:47 -msgid "Subtext" -msgstr "2. teksti" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:47 -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "" -"Tietyissä teksteissä, esim. hierarkiapolussa ('leivänmurut'), pienessä " -"tekstissä jne." - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:51 -msgid "" -"To edit colours woocommerce/assets/css/woocommerce-base.less " -"and woocommerce.css need to be writable. See the Codex for more " -"information." -msgstr "" -"Kun värejä muutetaan, pitää pystyä kirjoittamaan woocommerce/assets/" -"css/woocommerce-base.less ja woocommerce.css " -"tiedostoihin. Katso WordPress Codex, File Permissions jossa on " -"lisätietoja." - -# @ woocommerce -#: admin/settings/settings-init.php:18 -msgid "Localisation" -msgstr "Lokalisointi" - -# @ woocommerce -#: admin/settings/settings-init.php:19 -msgid "Use informal localisation for %s" -msgstr "Käytä sinuttelu muotoista käännöstä kielelle %s" - -# @ woocommerce -#: admin/settings/settings-init.php:33 -msgid "General Options" -msgstr "Yleisasetukset" - -# @ woocommerce -#: admin/settings/settings-init.php:36 -msgid "Base Location" -msgstr "Kaupan sijainti" - -# @ woocommerce -#: admin/settings/settings-init.php:37 -msgid "" -"This is the base location for your business. Tax rates will be based on this " -"country." -msgstr "" -"Tästä maasta käsin kauppa harjoittaa myyntiä. Tämän maan veroprosentteja " -"käytetään." - -# @ woocommerce -#: admin/settings/settings-init.php:46 -msgid "Currency" -msgstr "Valuutta" - -# @ woocommerce -#: admin/settings/settings-init.php:47 -msgid "" -"This controls what currency prices are listed at in the catalog and which " -"currency gateways will take payments in." -msgstr "" -"Tuotteiden hinnat esitetään tuoteluettelossa tällä valuutalla ja valuuttaa " -"käytetään maksukäytävän kautta tehdyissä maksuissa." - -# @ woocommerce -#: admin/settings/settings-init.php:58 -msgid "Allowed Countries" -msgstr "Sallitut maat" - -# @ woocommerce -#: admin/settings/settings-init.php:59 -msgid "These are countries that you are willing to ship to." -msgstr "Näihin maihin toimitat tuotteita." - -# @ woocommerce -#: admin/settings/settings-init.php:67 -msgid "All Countries" -msgstr "Kaikki maat" - -# @ woocommerce -#: admin/settings/settings-init.php:68 admin/settings/settings-init.php:73 -msgid "Specific Countries" -msgstr "Määritellyt maat" - -# @ woocommerce -#: admin/settings/settings-init.php:84 -msgid "Store Notice" -msgstr "Ilmoitus" - -# @ woocommerce -#: admin/settings/settings-init.php:85 -msgid "Enable site-wide store notice text" -msgstr "Ota käyttöön 'Huomaa'-ilmoitus sivustolla" - -# @ woocommerce -#: admin/settings/settings-init.php:92 -msgid "Store Notice Text" -msgstr "Huomaa-teksti" - -# @ woocommerce -#: admin/settings/settings-init.php:95 -msgid "" -"This is a demo store for testing purposes — no orders shall be " -"fulfilled." -msgstr "" -"Tämä verkkokauppa on vain esittelyä varten — tilauksia ei käsitellä." - -# @ woocommerce -#: admin/settings/settings-init.php:102 -msgid "Cart, Checkout and Accounts" -msgstr "Ostoskori, kassa ja tilit" - -# @ woocommerce -#: admin/settings/settings-init.php:105 admin/woocommerce-admin-content.php:61 -#: admin/woocommerce-admin-content.php:76 -#: admin/woocommerce-admin-reports.php:63 -msgid "Coupons" -msgstr "Kupongit" - -# @ woocommerce -#: admin/settings/settings-init.php:106 -msgid "Enable the use of coupons" -msgstr "Ota käyttöön kupongit" - -#: admin/settings/settings-init.php:110 -msgid "Coupons can be applied from the cart and checkout pages." -msgstr "Kuponkeja voi käyttää ostoskori- ja kassasivuilla." - -# @ woocommerce -#: admin/settings/settings-init.php:114 -#: admin/woocommerce-admin-install.php:201 -#: admin/woocommerce-admin-status.php:318 -msgid "Checkout" -msgstr "Kassa" - -# @ woocommerce -#: admin/settings/settings-init.php:115 -msgid "Enable guest checkout (no account required)" -msgstr "Ota käyttöön ostaminen ilman asiakastilin (pakollista) luomista" - -# @ woocommerce -#: admin/settings/settings-init.php:123 -msgid "Enable customer note field on checkout" -msgstr "Ota käyttöön viestikenttä kassalla (asiakkaalle)" - -# @ woocommerce -#: admin/settings/settings-init.php:131 -msgid "Force secure checkout" -msgstr "Pakota suojattu kassa sivu" - -# @ woocommerce -#: admin/settings/settings-init.php:137 -msgid "" -"Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -msgstr "Pakota SSL (HTTPS) kassa sivuille (SSL sertifikaatti vaaditaan)." - -# @ woocommerce -#: admin/settings/settings-init.php:141 -msgid "Un-force HTTPS when leaving the checkout" -msgstr "Pakota poistuminen SSL (HTTPS) suojauksesta kun poistutaan kassalta." - -# @ woocommerce -#: admin/settings/settings-init.php:150 -msgid "Registration" -msgstr "Rekisteröityminen" - -# @ woocommerce -#: admin/settings/settings-init.php:151 -msgid "Allow registration on the checkout page" -msgstr "Salli rekisteröityminen kassalla" - -# @ woocommerce -#: admin/settings/settings-init.php:159 -msgid "Allow registration on the \"My Account\" page" -msgstr "Salli rekisteröityminen 'Oma tili'-sivulla" - -# @ woocommerce -#: admin/settings/settings-init.php:167 -msgid "Register using the email address for the username" -msgstr "Rekisteröinnissä tehdään käyttäjätunnus = sähköpostiosoite" - -# @ woocommerce -#: admin/settings/settings-init.php:175 -msgid "Customer Accounts" -msgstr "Asiakastilit" - -# @ woocommerce -#: admin/settings/settings-init.php:176 -msgid "Prevent customers from accessing WordPress admin" -msgstr "Estä asiakkaiden pääsy WordPress-hallintapaneeliin" - -# @ woocommerce -#: admin/settings/settings-init.php:184 -msgid "Clear cart when logging out" -msgstr "Tyhjennä ostoskori kun kirjaudutaan ulos" - -# @ woocommerce -#: admin/settings/settings-init.php:192 -msgid "Allow customers to repurchase orders from their account page" -msgstr "Salli asiakkaiden tehdä aiempi tilaus uudelleen (heidän tilisivulta)" - -# @ woocommerce -#: admin/settings/settings-init.php:201 -msgid "Styles and Scripts" -msgstr "Tyylit ja skriptit" - -#: admin/settings/settings-init.php:204 -msgid "Styling" -msgstr "Tyylittely" - -#: admin/settings/settings-init.php:205 -msgid "Enable WooCommerce CSS" -msgstr "Ota käyttöön WooCommercen CSS" - -#: admin/settings/settings-init.php:216 -msgid "Scripts" -msgstr "Skriptit" - -# @ woocommerce -#: admin/settings/settings-init.php:217 -msgid "Enable Lightbox" -msgstr "Ota käyttöön WooCommerce Lightbox" - -#: admin/settings/settings-init.php:220 -msgid "" -"Include WooCommerce's lightbox. Product gallery images and the add review " -"form will open in a lightbox." -msgstr "" -"Tuotteen kuvat ja Lisää arvostelu avautuvat harmaan taustan päälle, Lightbox " -"efekti. " - -# @ woocommerce -#: admin/settings/settings-init.php:226 -msgid "Enable enhanced country select boxes" -msgstr "Ota käyttöön lisäpiirteitä maiden valinnassa" - -#: admin/settings/settings-init.php:231 -msgid "This will enable a script allowing the country fields to be searchable." -msgstr "Käytetään skriptiä jonka avulla maa kenttä sisällytetään etsintään." - -# @ woocommerce -#: admin/settings/settings-init.php:236 -msgid "Downloadable Products" -msgstr "Ladattavat tuotteet" - -# @ woocommerce -#: admin/settings/settings-init.php:239 -msgid "File Download Method" -msgstr "Tiedostojen lataustapa" - -# @ woocommerce -#: admin/settings/settings-init.php:240 -msgid "" -"Forcing downloads will keep URLs hidden, but some servers may serve large " -"files unreliably. If supported, X-Accel-Redirect/ X-" -"Sendfile can be used to serve downloads instead (server requires " -"mod_xsendfile)." -msgstr "" -"Kun lataus pakotetaan, tiedostopolku ei näy mutta jotkut palvelimet voivat " -"olla epäluotettavia isojen tiedostojen lataamisessa. Jos tuettuna, X-" -"Accel-Redirect/ X-Sendfile voidaan käyttää tiedostojen " -"latauksia varten (palvelimessa oltava mod_xsendfile)." - -# @ woocommerce -#: admin/settings/settings-init.php:248 -msgid "Force Downloads" -msgstr "Pakota lataukset" - -# @ woocommerce -#: admin/settings/settings-init.php:249 -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "X-Accel-Redirect/X-Sendfile" - -# @ woocommerce -#: admin/settings/settings-init.php:250 -msgid "Redirect only" -msgstr "Vain edelleenohjaus" - -# @ woocommerce -#: admin/settings/settings-init.php:255 -msgid "Access Restriction" -msgstr "Rajoitettu pääsy" - -# @ woocommerce -#: admin/settings/settings-init.php:256 -msgid "Downloads require login" -msgstr "Lataaminen edellyttää kirjautumista sisään" - -# @ woocommerce -#: admin/settings/settings-init.php:260 -msgid "This setting does not apply to guest purchases." -msgstr "Tämä asetus ei koske vierailijoiden [ei rekisteröityneiden] ostoksia" - -# @ woocommerce -#: admin/settings/settings-init.php:265 -msgid "Grant access to downloadable products after payment" -msgstr "Kun maksettu, sallitaan pääsy tiedoston lataamiseen" - -# @ woocommerce -#: admin/settings/settings-init.php:269 -msgid "" -"Enable this option to grant access to downloads when orders are \"processing" -"\", rather than \"completed\"." -msgstr "" -"Kun tämä asetus on käytössä, sallitaan pääsy lataamiseen jo tilauksen " -"'Käsittelyssä'-vaiheessa – 'Valmis'-vaihetta ei edellytetä." - -# @ woocommerce -#: admin/settings/settings-init.php:285 -msgid "" -"Note: The shop page has children - child pages will not work if you enable " -"this option." -msgstr "" -"Huomaa: Sivuun on liitetty toisia sivuja – (hierarkiassa) alemman tason " -"sivut eivät toimi jos otat tämän käyttöön." - -# @ woocommerce -#: admin/settings/settings-init.php:290 -msgid "Page Setup" -msgstr "Sivujen asetukset" - -# @ woocommerce -#: admin/settings/settings-init.php:292 -msgid "" -"Set up core WooCommerce pages here, for example the base page. The base page " -"can also be used in your %sproduct permalinks%s." -msgstr "" -"Tässä asetetaan WooCommercen edellyttämät sivut, esim. kaupan (perus)sivu. " -"Kaupan (perus)sivua voidaan käyttää kestolinkeissä (%sAseta osoiterakenne%s)." - -# @ woocommerce -#: admin/settings/settings-init.php:297 -msgid "Shop Base Page" -msgstr "Kaupan (perus)sivu" - -# @ woocommerce -#: admin/settings/settings-init.php:298 -msgid "" -"This sets the base page of your shop - this is where your product archive " -"will be." -msgstr "" -"Tämä on kaupan (perus)sivu. Tällä sivulla näkyvät myynnissä olevat tuotteet " -"– pilkottuna yleensä usealle sivulle." - -# @ woocommerce -#: admin/settings/settings-init.php:308 -msgid "Terms Page ID" -msgstr "Tilaus-/sopimusehdot -sivu" - -# @ woocommerce -#: admin/settings/settings-init.php:309 -msgid "" -"If you define a \"Terms\" page the customer will be asked if they accept " -"them when checking out." -msgstr "" -"Jos asetat 'Tilaus-/sopimusehdot' -sivun, asiakasta pyydetään hyväksymään " -"kaupan ehdot kassalla." - -# @ woocommerce -#: admin/settings/settings-init.php:320 -msgid "Shop Pages" -msgstr "Kaupan sivut" - -# @ woocommerce -#: admin/settings/settings-init.php:320 -msgid "" -"The following pages need selecting so that WooCommerce knows where they are. " -"These pages should have been created upon installation of the plugin, if not " -"you will need to create them." -msgstr "" -"Tässä kohdistetaan sivut, jotka verkkokauppa tarvitsee toimiakseen. Sivut on " -"yleensä luotu WooCommerce asennuksen yhteydessä. Jos sivuja ei ole, ne on " -"luotava." - -# @ woocommerce -#: admin/settings/settings-init.php:323 -msgid "Cart Page" -msgstr "Ostoskori-sivu" - -# @ woocommerce -#: admin/settings/settings-init.php:324 -msgid "Page contents: [woocommerce_cart]" -msgstr "Sivun sisältö: [woocommerce_cart]" - -# @ woocommerce -#: admin/settings/settings-init.php:334 -msgid "Checkout Page" -msgstr "Kassa-sivu" - -# @ woocommerce -#: admin/settings/settings-init.php:335 -msgid "Page contents: [woocommerce_checkout]" -msgstr "Sivun sisältö: [woocommerce_checkout]" - -# @ woocommerce -#: admin/settings/settings-init.php:345 -msgid "Pay Page" -msgstr "Maksaminen-sivu" - -# @ woocommerce -#: admin/settings/settings-init.php:346 -msgid "Page contents: [woocommerce_pay] Parent: \"Checkout\"" -msgstr "Sivun sisältö: [woocommerce_pay] Ylemmän tason sivu: 'Kassa'" - -# @ woocommerce -#: admin/settings/settings-init.php:356 -msgid "Thanks Page" -msgstr "Kiitos-sivu" - -# @ woocommerce -#: admin/settings/settings-init.php:357 -msgid "Page contents: [woocommerce_thankyou] Parent: \"Checkout\"" -msgstr "Sivun sisältö: [woocommerce_thankyou] Ylemmän tason sivu: 'Kassa'" - -# @ woocommerce -#: admin/settings/settings-init.php:367 -msgid "My Account Page" -msgstr "Oma tili -sivu" - -# @ woocommerce -#: admin/settings/settings-init.php:368 -msgid "Page contents: [woocommerce_my_account]" -msgstr "Sivun sisältö: [woocommerce_my_account]" - -# @ woocommerce -#: admin/settings/settings-init.php:378 -msgid "Edit Address Page" -msgstr "Muokkaa osoitetta -sivu" - -# @ woocommerce -#: admin/settings/settings-init.php:379 -msgid "Page contents: [woocommerce_edit_address] Parent: \"My Account\"" -msgstr "" -"Sivun sisältö: [woocommerce_edit_address] Ylemmän tason sivu: 'Oma tili'" - -# @ woocommerce -#: admin/settings/settings-init.php:389 -msgid "View Order Page" -msgstr "Näytä tilaussivu" - -# @ woocommerce -#: admin/settings/settings-init.php:390 -msgid "Page contents: [woocommerce_view_order] Parent: \"My Account\"" -msgstr "Sivun sisältö: [woocommerce_view_order] Ylemmän tason sivu: 'Oma tili'" - -# @ woocommerce -#: admin/settings/settings-init.php:400 -msgid "Change Password Page" -msgstr "Vaihda salasana -sivu" - -# @ woocommerce -#: admin/settings/settings-init.php:401 -msgid "Page contents: [woocommerce_change_password] Parent: \"My Account\"" -msgstr "" -"Sivun sisältö: [woocommerce_change_password] Ylemmän tason sivu: 'Oma tili'" - -# @ woocommerce -#: admin/settings/settings-init.php:411 -msgid "Logout Page" -msgstr "Kirjaudu ulos -sivu" - -# @ woocommerce -#: admin/settings/settings-init.php:412 -msgid "Parent: \"My Account\"" -msgstr "Ylempi taso: \"Oma tili\"" - -# @ woocommerce -#: admin/settings/settings-init.php:422 -msgid "Lost Password Page" -msgstr "Salasana unohtunut -sivu" - -# @ woocommerce -#: admin/settings/settings-init.php:423 -msgid "Page contents: [woocommerce_lost_password] Parent: \"My Account\"" -msgstr "" -"Sivun sisältö: [woocommerce_lost_password] Ylemmän tason sivu: 'Oma tili'" - -# @ woocommerce -#: admin/settings/settings-init.php:439 -msgid "Catalog Options" -msgstr "Luettelon asetukset" - -# @ woocommerce -#: admin/settings/settings-init.php:442 -msgid "Default Product Sorting" -msgstr "Tuotteiden lajittelu, oletus" - -# @ woocommerce -#: admin/settings/settings-init.php:443 -msgid "This controls the default sort order of the catalog." -msgstr "Tässä asetetaan tuoteluettelossa oletuksena käytettävä lajittelutapa." - -# @ woocommerce -#: admin/settings/settings-init.php:449 -msgid "Default sorting (custom ordering + name)" -msgstr "Lajittelu, oletus: mukautettu + nimi" - -#: admin/settings/settings-init.php:450 -msgid "Popularity (sales)" -msgstr "Suosittu (myynnin mukaan)" - -#: admin/settings/settings-init.php:451 -msgid "Average Rating" -msgstr "Arvostelu, keskimääräinen" - -# @ woocommerce -#: admin/settings/settings-init.php:452 -msgid "Sort by most recent" -msgstr "Uusimmat ensin" - -# @ woocommerce -#: admin/settings/settings-init.php:453 -msgid "Sort by price (asc)" -msgstr "Hinta: halvin ensin" - -# @ woocommerce -#: admin/settings/settings-init.php:454 -msgid "Sort by price (desc)" -msgstr "Hinta: kallein ensin" - -# @ woocommerce -#: admin/settings/settings-init.php:460 -msgid "Shop Page Display" -msgstr "Kaupan (perus)sivulla esitys" - -# @ woocommerce -#: admin/settings/settings-init.php:461 -msgid "This controls what is shown on the product archive." -msgstr "Tässä asetetaan kaupan (perus)sivulla esittäminen ('product archive')." - -# @ woocommerce -#: admin/settings/settings-init.php:467 admin/settings/settings-init.php:482 -msgid "Show products" -msgstr "Näytä tuotteet" - -# @ woocommerce -#: admin/settings/settings-init.php:468 admin/settings/settings-init.php:483 -msgid "Show subcategories" -msgstr "Näytä osastojen alemmat tasot" - -# @ woocommerce -#: admin/settings/settings-init.php:469 admin/settings/settings-init.php:484 -msgid "Show both" -msgstr "Näytä molemmat" - -# @ woocommerce -#: admin/settings/settings-init.php:475 -msgid "Default Category Display" -msgstr "Osastojen esitys, oletus" - -# @ woocommerce -#: admin/settings/settings-init.php:476 -msgid "This controls what is shown on category archives." -msgstr "Tässä asetetaan kaupan osastojen esittäminen." - -# @ woocommerce -#: admin/settings/settings-init.php:490 -msgid "Add to cart" -msgstr "Lisää ostoskoriin" - -#: admin/settings/settings-init.php:491 -msgid "Redirect to the cart page after successful addition" -msgstr "Ohjaa Kassa-sivulle kun tuote on onnistuneesti lisätty" - -# @ woocommerce -#: admin/settings/settings-init.php:499 -msgid "Enable AJAX add to cart buttons on archives" -msgstr "" -"Ota käyttöön AJAX-menetelmän 'lisää ostoskoriin' painikkeet arkisto sivuilla" - -# @ woocommerce -#: admin/settings/settings-init.php:508 -msgid "" -"The following options affect the fields available on the edit product page." -msgstr "" -"Tässä asetetaan kentät, jotka esitetään sivulla jossa tuotetietoja muokataan." - -# @ woocommerce -#: admin/settings/settings-init.php:511 -msgid "Product Fields" -msgstr "Tuotekentät" - -# @ woocommerce -#: admin/settings/settings-init.php:512 -msgid "Enable the SKU field for products" -msgstr "Ota käyttöön tuotteille tuotetunnus (SKU)" - -#: admin/settings/settings-init.php:520 -msgid "" -"Enable the weight field for products (some shipping methods " -"may require this)" -msgstr "" -"Ota käyttöön tuotteille paino kenttä (jotkut toimitustavat " -"voivat edellyttää tätä)" - -#: admin/settings/settings-init.php:528 -msgid "" -"Enable the dimension fields for products (some shipping " -"methods may require this)" -msgstr "" -"Ota käyttöön tuotteille mitat kenttä (jotkut toimitustavat " -"voivat edellyttää tätä)" - -#: admin/settings/settings-init.php:536 -msgid "" -"Show weight and dimension values on the Additional " -"Information tab" -msgstr "" -"Näytä paino ja mitat arvot Lisätietoja " -"välilehdellä" - -# @ woocommerce -#: admin/settings/settings-init.php:544 -msgid "Weight Unit" -msgstr "Painon yksikkö" - -# @ woocommerce -#: admin/settings/settings-init.php:545 -msgid "This controls what unit you will define weights in." -msgstr "Paino syötetään ja esitetään käyttäen tätä (paino)yksikköä." - -# @ woocommerce -#: admin/settings/settings-init.php:551 -msgid "kg" -msgstr "kg (kilogramma)" - -# @ woocommerce -#: admin/settings/settings-init.php:552 -msgid "g" -msgstr "g (gramma)" - -# @ woocommerce -#: admin/settings/settings-init.php:553 -msgid "lbs" -msgstr "lbs (naula)" - -# @ woocommerce -#: admin/settings/settings-init.php:554 -msgid "oz" -msgstr "oz (unssi)" - -# @ woocommerce -#: admin/settings/settings-init.php:560 -msgid "Dimensions Unit" -msgstr "Mittojen yksikkö" - -# @ woocommerce -#: admin/settings/settings-init.php:561 -msgid "This controls what unit you will define lengths in." -msgstr "" -"Pituus, leveys ja korkeus syötetään ja esitetään käyttäen tätä yksikköä." - -# @ woocommerce -#: admin/settings/settings-init.php:568 -msgid "cm" -msgstr "cm (senttimetri)" - -# @ woocommerce -#: admin/settings/settings-init.php:569 -msgid "mm" -msgstr "mm (millimetri)" - -# @ woocommerce -#: admin/settings/settings-init.php:570 -msgid "in" -msgstr "in (tuuma)" - -# @ woocommerce -#: admin/settings/settings-init.php:571 -msgid "yd" -msgstr "yd (jaardi)" - -# @ woocommerce -#: admin/settings/settings-init.php:577 -msgid "Product Ratings" -msgstr "Tuotearvostelut" - -# @ woocommerce -#: admin/settings/settings-init.php:578 -msgid "Enable ratings on reviews" -msgstr "Ota käyttöön tuotearvioiden arvostelut" - -# @ woocommerce -#: admin/settings/settings-init.php:587 -msgid "Ratings are required to leave a review" -msgstr "(Tähti) Arvostelu vaaditaan, kun poistutaan tuotearvioinnista." - -# @ woocommerce -#: admin/settings/settings-init.php:596 -msgid "Show \"verified owner\" label for customer reviews" -msgstr "" -"Näytä 'Varmistettu kirjoittaja'-nimike kun arvion on kirjoittanut asiakas" - -# @ woocommerce -#: admin/settings/settings-init.php:606 -msgid "Pricing Options" -msgstr "Hinnoittelun asetukset" - -# @ woocommerce -#: admin/settings/settings-init.php:606 -msgid "The following options affect how prices are displayed on the frontend." -msgstr "Tässä asetetaan, kuinka hinnat esitetään julkisella puolella." - -# @ woocommerce -#: admin/settings/settings-init.php:609 -msgid "Currency Position" -msgstr "Valuuttamerkin paikka" - -# @ woocommerce -#: admin/settings/settings-init.php:610 -msgid "This controls the position of the currency symbol." -msgstr "Tässä asetetaan valuuttamerkin paikka." - -# @ woocommerce -#: admin/settings/settings-init.php:616 -msgid "Left" -msgstr "Vasemmalla" - -# @ woocommerce -#: admin/settings/settings-init.php:617 -msgid "Right" -msgstr "Oikealla" - -# @ woocommerce -#: admin/settings/settings-init.php:618 -msgid "Left (with space)" -msgstr "Vasemmalla+ välilyönti" - -# @ woocommerce -#: admin/settings/settings-init.php:619 -msgid "Right (with space)" -msgstr "Välilyönti+ oikealla" - -# @ woocommerce -#: admin/settings/settings-init.php:625 -msgid "Thousand Separator" -msgstr "Tuhaterotin" - -# @ woocommerce -#: admin/settings/settings-init.php:626 -msgid "This sets the thousand separator of displayed prices." -msgstr "" -"Tässä asetetaan tuhaterotin hintojen luvuille – yleensä Suomessa ei mitään, " -"välilyönti tai  ." - -# @ woocommerce -#: admin/settings/settings-init.php:635 -msgid "Decimal Separator" -msgstr "Desimaalierotin" - -# @ woocommerce -#: admin/settings/settings-init.php:636 -msgid "This sets the decimal separator of displayed prices." -msgstr "" -"Tässä asetetaan desimaalierottimena käytettävä merkki – yleensä Suomessa " -"pilkku." - -# @ woocommerce -#: admin/settings/settings-init.php:645 -msgid "Number of Decimals" -msgstr "Desimaalien lukumäärä" - -# @ woocommerce -#: admin/settings/settings-init.php:646 -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "Tässä asetetaan desimaalien määrä hintojen luvuille." - -# @ woocommerce -#: admin/settings/settings-init.php:659 -msgid "Trailing Zeros" -msgstr "Nollat perässä" - -# @ woocommerce -#: admin/settings/settings-init.php:660 -msgid "" -"Remove zeros after the decimal point. e.g. $10.00 becomes " -"$10" -msgstr "" -"Poistaa nollat lukujen perästä. Esimerkiksi luku 10.00 € " -"esitetään muodossa 10 €" - -# @ woocommerce -#: admin/settings/settings-init.php:668 -msgid "Image Options" -msgstr "Kuvien asetukset" - -# @ woocommerce -#: admin/settings/settings-init.php:668 -msgid "" -"These settings affect the actual dimensions of images in your catalog - the " -"display on the front-end will still be affected by CSS styles. After " -"changing these settings you may need to regenerate your " -"thumbnails." -msgstr "" -"Nämä asetukset vaikuttavat luettelon kuvien mittoihin – lisäksi julkisen " -"puolen näkymässä vaikuttaa CSS-tyylit. Kun mittoja muutetaan, voit luoda " -"uudet pikkukuvat lisäosan avulla." - -# @ woocommerce -#: admin/settings/settings-init.php:671 -msgid "Catalog Images" -msgstr "Luettelon kuvat" - -# @ woocommerce -#: admin/settings/settings-init.php:672 -msgid "This size is usually used in product listings" -msgstr "Tätä kokoa käytetään yleensä tuotelistauksissa" - -# @ woocommerce -#: admin/settings/settings-init.php:685 -msgid "Single Product Image" -msgstr "Yksittäinen tuotekuva" - -# @ woocommerce -#: admin/settings/settings-init.php:686 -msgid "This is the size used by the main image on the product page." -msgstr "Tätä kokoa käytetään tuotesivulla esillä olevassa kuvassa" - -# @ woocommerce -#: admin/settings/settings-init.php:699 -msgid "Product Thumbnails" -msgstr "Tuotteen pikkukuva" - -# @ woocommerce -#: admin/settings/settings-init.php:700 -msgid "" -"This size is usually used for the gallery of images on the product page." -msgstr "Tätä kokoa käytetään yleensä tuotesivulla, kuvagallerian kuvissa." - -# @ woocommerce -#: admin/settings/settings-init.php:719 -msgid "Inventory Options" -msgstr "Varaston asetukset" - -# @ woocommerce -#: admin/settings/settings-init.php:722 -msgid "Manage Stock" -msgstr "Varaston hallinta" - -# @ woocommerce -#: admin/settings/settings-init.php:723 -msgid "Enable stock management" -msgstr "" -"Ota käyttöön varastokirjanpito (myynnin seurauksena tuotteiden määrä " -"varastokirjanpidossa muuttuu)" - -# @ woocommerce -#: admin/settings/settings-init.php:730 -msgid "Hold Stock (minutes)" -msgstr "Varaa tuotteet (minuuttia)" - -# @ woocommerce -#: admin/settings/settings-init.php:731 -msgid "" -"Hold stock (for unpaid orders) for x minutes. When this limit is reached, " -"the pending order will be cancelled. Leave blank to disable." -msgstr "" -"Varaa vireillä olevan (=maksamaton) tilauksen tuotteet x minuutin ajaksi. " -"Tilaus perutaan, kun aikaraja on saavutettu. Kun tyhjä, ei käytetä." - -# @ woocommerce -#: admin/settings/settings-init.php:743 -msgid "Notifications" -msgstr "Ilmoitukset" - -# @ woocommerce -#: admin/settings/settings-init.php:744 -msgid "Enable low stock notifications" -msgstr "Ota käyttöön 'Varasto vähissä' -ilmoitukset" - -# @ woocommerce -#: admin/settings/settings-init.php:752 -msgid "Enable out of stock notifications" -msgstr "Ota käyttöön 'Varasto loppu' -ilmoitukset" - -# @ woocommerce -#: admin/settings/settings-init.php:760 -msgid "Notification Recipient" -msgstr "Ilmoituksen vastaanottaja" - -# @ woocommerce -#: admin/settings/settings-init.php:768 -msgid "Low Stock Threshold" -msgstr "Varasto vähissä -raja-arvo" - -# @ woocommerce -#: admin/settings/settings-init.php:781 -msgid "Out Of Stock Threshold" -msgstr "Varasto loppu -raja-arvo" - -# @ woocommerce -#: admin/settings/settings-init.php:794 -msgid "Out Of Stock Visibility" -msgstr "Varasto loppu -tilanne" - -# @ woocommerce -#: admin/settings/settings-init.php:795 -msgid "Hide out of stock items from the catalog" -msgstr "Piilota varastosta loppuneet tuotteet tuoteluettelosta" - -# @ woocommerce -#: admin/settings/settings-init.php:802 -msgid "Stock Display Format" -msgstr "Varaston esitystapa" - -# @ woocommerce -#: admin/settings/settings-init.php:803 -msgid "This controls how stock is displayed on the frontend." -msgstr "Tässä asetetaan kuinka esitetään tuotteiden määrä varastossa." - -# @ woocommerce -#: admin/settings/settings-init.php:809 -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "Näytä aina tuotteiden määrä, esim. '12 varastossa'" - -# @ woocommerce -#: admin/settings/settings-init.php:810 -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "" -"Näytä kun määrä on vähäinen, esim. 'Vain 2 varastossa' eikä 'Varastossa'" - -# @ woocommerce -#: admin/settings/settings-init.php:811 -msgid "Never show stock amount" -msgstr "Ei näytetä tuotteiden määrää varastossa" - -# @ woocommerce -#: admin/settings/settings-init.php:823 -#: admin/woocommerce-admin-settings.php:292 -msgid "Shipping Options" -msgstr "Toimituksen asetukset" - -# @ woocommerce -#: admin/settings/settings-init.php:826 -msgid "Shipping Calculations" -msgstr "Toimituskulujen laskeminen" - -# @ woocommerce -#: admin/settings/settings-init.php:827 -msgid "Enable shipping" -msgstr "Ota käyttöön tuotteiden toimitus asiakkaalle" - -# @ woocommerce -#: admin/settings/settings-init.php:835 -msgid "Enable the shipping calculator on the cart page" -msgstr "Ota käyttöön ostoskorissa toimituskulujen laskuri" - -# @ woocommerce -#: admin/settings/settings-init.php:843 -msgid "Hide shipping costs until an address is entered" -msgstr "Toimituskuluja ei näytetä ennen kuin osoite on syötetty." - -# @ woocommerce -#: admin/settings/settings-init.php:851 -msgid "Shipping Method Display" -msgstr "Toimitustavan esitys" - -# @ woocommerce -#: admin/settings/settings-init.php:852 -msgid "" -"This controls how multiple shipping methods are displayed on the frontend." -msgstr "" -"Tässä asetetaan kuinka valittavana olevat toimitustavat esitetään julkisella " -"puolella." - -# @ woocommerce -#: admin/settings/settings-init.php:858 -msgid "Radio buttons" -msgstr "Valintanappi" - -# @ woocommerce -#: admin/settings/settings-init.php:859 -msgid "Select box" -msgstr "Valintaruutu" - -# @ woocommerce -#: admin/settings/settings-init.php:865 -msgid "Shipping Destination" -msgstr "Toimitusosoite" - -# @ woocommerce -#: admin/settings/settings-init.php:866 -msgid "Only ship to the users billing address" -msgstr "Toimita ainoastaan asiakkaan laskutusosoitteeseen" - -# @ woocommerce -#: admin/settings/settings-init.php:874 -msgid "Ship to billing address by default" -msgstr "Toimita laskutusosoitteeseen, oletus" - -# @ woocommerce -#: admin/settings/settings-init.php:882 -msgid "Collect shipping address even when not required" -msgstr "Kerää toimitusosoite aina, vaikka sitä ei tarvita" - -# @ woocommerce -#: admin/settings/settings-init.php:900 -#: admin/woocommerce-admin-settings.php:188 -#: admin/woocommerce-admin-settings.php:329 -msgid "Payment Gateways" -msgstr "Maksu" - -# @ woocommerce -#: admin/settings/settings-init.php:900 -msgid "" -"Installed payment gateways are displayed below. Drag and drop payment " -"gateways to control their display order on the checkout." -msgstr "" -"Asennetut maksukäytävät. Niiden järjestys julkisella puolella asetetaan " -"tässä, Vedä ja pudota -menetelmällä." - -# @ woocommerce -#: admin/settings/settings-init.php:918 -#: admin/woocommerce-admin-settings.php:222 -msgid "Tax Options" -msgstr "Vero asetukset" - -# @ woocommerce -#: admin/settings/settings-init.php:921 -msgid "Enable Taxes" -msgstr "Verotus" - -# @ woocommerce -#: admin/settings/settings-init.php:922 -msgid "Enable taxes and tax calculations" -msgstr "Ota käyttöön verot ja verojen laskeminen" - -# @ woocommerce -#: admin/settings/settings-init.php:929 -msgid "Prices Entered With Tax" -msgstr "Hinnat kirjoitettu" - -# @ woocommerce -#: admin/settings/settings-init.php:933 -msgid "" -"This option is important as it will affect how you input prices. Changing it " -"will not update existing products." -msgstr "" -"Tässä asetetaan hintojen syöttämisen tapa. Kun valinta vaihdetaan, [aiemmin " -"syötetyt] hinnat eivät muutu." - -# @ woocommerce -#: admin/settings/settings-init.php:935 -msgid "Yes, I will enter prices inclusive of tax" -msgstr "Hinnat ilmoitettu/ syötetään verollisina (sisältää veron)." - -# @ woocommerce -#: admin/settings/settings-init.php:936 -msgid "No, I will enter prices exclusive of tax" -msgstr "Hinnat ilmoitettu/ syötetään verottomina (ei sisällä vero)." - -# @ woocommerce -#: admin/settings/settings-init.php:941 -msgid "Calculate Tax Based On:" -msgstr "Veron laskentaperuste:" - -# @ woocommerce -#: admin/settings/settings-init.php:943 -msgid "This option determines which address is used to calculate tax." -msgstr "Tässä asetetaan osoite, jonka perusteella lasketaan verot." - -# @ woocommerce -#: admin/settings/settings-init.php:947 -msgid "Customer shipping address" -msgstr "Toimitusosoite" - -# @ woocommerce -#: admin/settings/settings-init.php:948 -msgid "Customer billing address" -msgstr "Laskutusosoite" - -# @ woocommerce -#: admin/settings/settings-init.php:949 admin/settings/settings-init.php:961 -msgid "Shop base address" -msgstr "Kaupan osoite" - -# @ woocommerce -#: admin/settings/settings-init.php:954 -msgid "Default Customer Address:" -msgstr "Asiakkaan oletusosoite:" - -# @ woocommerce -#: admin/settings/settings-init.php:956 -msgid "" -"This option determines the customers default address (before they input " -"their own)." -msgstr "" -"Tässä asetetaan osoite, jota käytetään oletuksena ennen kuin asiakas " -"kirjoittaa oman osoitteensa." - -# @ woocommerce -#: admin/settings/settings-init.php:960 -msgid "No address" -msgstr "Ei käytetä osoitetta" - -# @ woocommerce -#: admin/settings/settings-init.php:966 -msgid "Shipping Tax Class:" -msgstr "Toimituskulujen veroluokka:" - -# @ woocommerce -#: admin/settings/settings-init.php:967 -msgid "" -"Optionally control which tax class shipping gets, or leave it so shipping " -"tax is based on the cart items themselves." -msgstr "" -"Valinnainen: aseta toimituskuluille oma veroluokka. Oletus: käytetään samaa " -"veroluokkaa kuin ostoskorissa olevilla tuotteilla eli kun korissa on 10% " -"verotettavia tuotteita, toimituskulujen vero on 10%." - -#: admin/settings/settings-init.php:972 -msgid "Shipping tax class based on cart items" -msgstr "Vero sama kuin ostoskorissa olevilla tuotteilla" - -# @ woocommerce -#: admin/settings/settings-init.php:977 -msgid "Rounding" -msgstr "Pyöristys" - -# @ woocommerce -#: admin/settings/settings-init.php:978 -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "" -"Pyöristä kaikkien tuotteiden vero yhdellä kertaa (USA käytäntö). Oletus [ei " -"täppiä ruudussaa]: jokaisella rivillä/ -tuotteelle erikseen (EU, Suomi " -"käytäntö)." - -# @ woocommerce -#: admin/settings/settings-init.php:985 -msgid "Additional Tax Classes" -msgstr "Lisää veroluokkia" - -# @ woocommerce -#: admin/settings/settings-init.php:986 -msgid "" -"List additonal tax classes below (1 per line). This is in addition to the " -"default Standard Rate. Tax classes can be assigned to products." -msgstr "" -"Kirjoita jokainen uusi veroluokka omalle riville - niiden lisäksi käytetään " -"oletuksena Perusvero (Standard Rate). Veroluokat voidaan kohdistaa " -"tuotteille. (Suom. huom.: lisää 24%, 14% ja 10% verokannat alle ja käytä " -"niitä. Pidä perusvero kohta tyhjänä.)" - -# @ woocommerce -#: admin/settings/settings-init.php:990 -msgid "Reduced Rate%sZero Rate" -msgstr "Alennettu veroprosentti%s0 veroprosentti" - -# @ woocommerce -#: admin/settings/settings-init.php:994 -msgid "Display prices during cart/checkout:" -msgstr "Ostoskori/kassa hinnat näytetään" - -# @ woocommerce -#: admin/settings/settings-init.php:999 -msgid "Including tax" -msgstr "Sisältää veron" - -# @ woocommerce -#: admin/settings/settings-init.php:1000 -msgid "Excluding tax" -msgstr "Ei sisällä veroa" - -# @ woocommerce -#: admin/settings/settings-init.php:1012 -msgid "Email Sender Options" -msgstr "Sähköpostin lähettäjä asetukset" - -# @ woocommerce -#: admin/settings/settings-init.php:1012 -msgid "" -"The following options affect the sender (email address and name) used in " -"WooCommerce emails." -msgstr "" -"Tässä asetetaan verkkokaupan lähettämille sähköposteille 'Lähettäjän' nimi " -"ja sähköpostiosoite." - -# @ woocommerce -#: admin/settings/settings-init.php:1015 -msgid "\"From\" Name" -msgstr "'Lähettäjän' nimi" - -# @ woocommerce -#: admin/settings/settings-init.php:1024 -msgid "\"From\" Email Address" -msgstr "'Lähettäjän' sähköpostiosoite" - -# @ woocommerce -#: admin/settings/settings-init.php:1037 -msgid "Email Template" -msgstr "Sähköpostin pohja (malline)" - -# @ woocommerce -#: admin/settings/settings-init.php:1037 -msgid "" -"This section lets you customise the WooCommerce emails. Click here to preview your email template. For more " -"advanced control copy woocommerce/templates/emails/ to " -"yourtheme/woocommerce/emails/." -msgstr "" -"Tässä voit muokata WooCommerce-sähköpostiviestien ilmettä ja sisältöä. Sähköposti on nyt tällainen (klikkaa). Kun " -"haluat tehdä suurempia muutoksia, kopioi pohja hakemistosta: " -"woocommerce/templates/emails/ käyttämäsi teeman hakemistoon: " -"teeman-hakemisto/woocommmerce/emails/." - -# @ woocommerce -#: admin/settings/settings-init.php:1040 -msgid "Header Image" -msgstr "Kuva yläpalkissa" - -# @ woocommerce -#: admin/settings/settings-init.php:1041 -msgid "" -"Enter a URL to an image you want to show in the email's header. Upload your " -"image using the media uploader." -msgstr "" -"Syötä sen kuvan verkko-osoite (=URL) joka sijoitetaan sähköpostiviestin " -"yläpalkkiin. Siirrä kuva käyttäen Media, Lisää uusi -" -"toimintoa." - -# @ woocommerce -#: admin/settings/settings-init.php:1049 -msgid "Email Footer Text" -msgstr "Teksti alatunnisteessa" - -# @ woocommerce -#: admin/settings/settings-init.php:1050 -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "Teksti näkyy WooCommercen lähettämien viestien alareunassa." - -# @ woocommerce -#: admin/settings/settings-init.php:1054 -msgid "Powered by WooCommerce" -msgstr "Moottorina toimii WooCommerce" - -# @ woocommerce -#: admin/settings/settings-init.php:1058 -msgid "Base Colour" -msgstr "Yläpalkin väri" - -# @ woocommerce -#: admin/settings/settings-init.php:1059 -msgid "" -"The base colour for WooCommerce email templates. Default #557da1." -msgstr "Sähköpostien yläpalkin väri. Oletuksena #557da1." - -# @ woocommerce -#: admin/settings/settings-init.php:1067 -msgid "Background Colour" -msgstr "Sähköpostisivun taustaväri" - -# @ woocommerce -#: admin/settings/settings-init.php:1068 -msgid "" -"The background colour for WooCommerce email templates. Default " -"#f5f5f5." -msgstr "Sähköpostisivun taustaväri. Oletuksena #f5f5f5." - -# @ woocommerce -#: admin/settings/settings-init.php:1076 -msgid "Email Body Background Colour" -msgstr "Tekstialueen taustaväri" - -# @ woocommerce -#: admin/settings/settings-init.php:1077 -msgid "The main body background colour. Default #fdfdfd." -msgstr "Tekstin alla olevan alueen väri. Oletuksena #fdfdfd." - -# @ woocommerce -#: admin/settings/settings-init.php:1085 -msgid "Email Body Text Colour" -msgstr "Tekstin väri" - -# @ woocommerce -#: admin/settings/settings-init.php:1086 -msgid "The main body text colour. Default #505050." -msgstr "Kirjoituksen väri. Oletuksena #505050." - -# @ woocommerce -# @ default -#: admin/settings/settings-payment-gateways.php:27 -#: admin/settings/settings-shipping-methods.php:29 -#: admin/woocommerce-admin-init.php:762 -#: admin/woocommerce-admin-taxonomies.php:27 -#: admin/woocommerce-admin-taxonomies.php:121 -msgid "Default" -msgstr "Oletus" - -# @ woocommerce -#: admin/settings/settings-payment-gateways.php:28 -msgid "Gateway" -msgstr "Yhdyskäytävä" - -# @ woocommerce -#: admin/settings/settings-payment-gateways.php:45 -msgid "Gateway ID" -msgstr "Yhdyskäytävän ID" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:23 -msgid "Shipping Methods" -msgstr "Toimitustavat" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:25 -msgid "Drag and drop methods to control their display order." -msgstr "Vedä ja pudota -menetelmällä voi muuttaa esitysjärjestystä." - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:30 -msgid "Shipping Method" -msgstr "Toimitustapa" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:46 -msgid "Method ID" -msgstr "Toimitustavan ID" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:29 -msgid "Tax Rates for the \"%s\" Class" -msgstr "Veroprosentit '%s' luokalle" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:30 -msgid "" -"Define tax rates for countries and states below. See here " -"for available alpha-2 country codes." -msgstr "" -"Aseta alla veroprosentit maille ja alueille (esim. lääni, osavaltio, " -"provinssi). Täällä on käytettävissä olevat maa- ja " -"aluetunnukset." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:36 -msgid "Country Code" -msgstr "Maatunnus" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:36 -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "Maan tunnus, 2 merkkiä, esim. FI. Kun tyhjä, käytetään kaikkiin." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:38 -msgid "State Code" -msgstr "Aluetunnus" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:38 -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "Alueen tunnus, 2 merkkiä, esim. AL. Kun tyhjä, käytetään kaikkiin." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:40 -#: admin/settings/settings-tax-rates.php:217 -msgid "ZIP/Postcode" -msgstr "Postinumero" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:40 -msgid "" -"Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all areas. Wildcards (*) can be used. Ranges for numeric " -"postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "" -"Postinumerot, joita sääntö koskee. Erota puolipisteellä (;). Kun tyhjä, " -"käytetään kaikkiin. Jokerimerkit (*) hyväksytään. Numerovälit (esim. " -"12345-12350) puretaan yksittäisiksi postinumeroiksi." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:42 -msgid "" -"Cities for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all cities." -msgstr "" -"Kaupungit, joita sääntö koskee. Erota puolipisteellä (;). Kun tyhjä, " -"käytetään kaikkiin." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:44 -msgid "Rate %" -msgstr "Vero %" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:44 -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "Syötä veroprosentti neljällä desimaalilla" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:46 -msgid "Tax Name" -msgstr "Veron nimi" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:46 -msgid "Enter a name for this tax rate." -msgstr "Kirjoita nimi veroprosentille" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:48 -#: admin/settings/settings-tax-rates.php:217 -msgid "Priority" -msgstr "Tärkeysjärjestys" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:48 -msgid "" -"Choose a priority for this tax rate. Only 1 matching rate per priority will " -"be used. To define multiple tax rates for a single area you need to specify " -"a different priority per rate." -msgstr "" -"Valitse veroprosentille tärkeysjärjestys (prioriteetti). Vain yhtä " -"tilanteesen sopivaa veroprosenttia käytetään / tärkeysjärjestys. Kun yhdelle " -"alueelle tarvitaan useita veroprosentteja, on jokaiselle niistä asetettava " -"eri 'tärkeysjärjestys'." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:50 -#: admin/settings/settings-tax-rates.php:217 -msgid "Compound" -msgstr "Yhdistelmä" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:50 -msgid "" -"Choose whether or not this is a compound rate. Compound tax rates are " -"applied on top of other tax rates." -msgstr "" -"Valitse onko vero yhdistetty (eli 'veroa veron päälle'). Yhdistetty vero " -"lasketaan summasta: tuotteen hinta + hinnalle aiemmin laskettu vero." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:52 -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "Valitse, lasketaanko tällä veroprosentilla vero myös toimituskuluille." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:59 -msgid "Insert row" -msgstr "Lisää rivi" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:60 -msgid "Remove selected row(s)" -msgstr "Poista valitut rivit" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:62 -msgid "Export CSV" -msgstr "Vie CSV-tiedosto" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:63 -msgid "Import CSV" -msgstr "Tuo CSV-tiedosto" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:163 -msgid "No row(s) selected" -msgstr "Riviä/rivejä ei valittuna" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Country Code" -msgstr "Maan tunnus" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "State Code" -msgstr "Alueen tunnus" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Rate %" -msgstr "Veroprosentti" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Name" -msgstr "Veron nimi" - -#: admin/woocommerce-admin-attributes.php:77 -msgid "Please, provide an attribute name, slug and type." -msgstr "Kirjoita ominaisuuden nimi, polkutunnus ja laji." - -#: admin/woocommerce-admin-attributes.php:79 -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "Polkutunnus '%s' ylittää max. pituuden 28 merkkiä. Lyhennä, ole hyvä." - -#: admin/woocommerce-admin-attributes.php:81 -msgid "" -"Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "Polkutunnus '%s' on varattu [järjestelmälle]. Vaihda, ole hyvä." - -#: admin/woocommerce-admin-attributes.php:86 -#: admin/woocommerce-admin-attributes.php:91 -msgid "Slug “%s” is already in use. Change it, please." -msgstr "Polkutunnus '%s' on käytössä. Vaihda, ole hyvä." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:234 -msgid "Edit Attribute" -msgstr "Muokkaa ominaisuutta" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:244 -#: admin/woocommerce-admin-attributes.php:383 -msgid "Name for the attribute (shown on the front-end)." -msgstr "Ominaisuuden nimi (näkyy julkisella puolella)." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:249 -#: admin/woocommerce-admin-attributes.php:315 -#: admin/woocommerce-admin-attributes.php:387 -msgid "Slug" -msgstr "Polkutunnus" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:253 -#: admin/woocommerce-admin-attributes.php:389 -msgid "" -"Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "" -"Ominaisuuden polkutunnus. Pituus korkeintaan 28 merkkiä ja oltava muista " -"poikkeava." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:262 -#: admin/woocommerce-admin-attributes.php:395 -msgid "Select" -msgstr "Valinta" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:263 -#: admin/woocommerce-admin-attributes.php:396 -msgid "Text" -msgstr "Teksti" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:266 -#: admin/woocommerce-admin-attributes.php:399 -msgid "" -"Determines how you select attributes for products. Text " -"allows manual entry via the product page, whereas select " -"attribute terms can be defined from this section. If you plan on using an " -"attribute for variations use select." -msgstr "" -"Asettaa tavan jolla valitset ominaisuuden. Teksti antaa " -"kirjoittaa (vapaasti) arvon ominaisuudelle tuotesivulla. Valinta ominaisuuden arvot asetetaan (jo ennalta) tässä. Jos aiot käyttää " -"ominaisuuksia muunnelma-tuotteille, on käytettävä Valinta " -"ominaisuutta." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:271 -#: admin/woocommerce-admin-attributes.php:403 -msgid "Default sort order" -msgstr "Lajittelujärjestys, oletus" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:275 -#: admin/woocommerce-admin-attributes.php:343 -#: admin/woocommerce-admin-attributes.php:405 -msgid "Custom ordering" -msgstr "Mukautettu järjestys" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:277 -#: admin/woocommerce-admin-attributes.php:340 -#: admin/woocommerce-admin-attributes.php:407 -msgid "Term ID" -msgstr "Arvon ID" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:279 -#: admin/woocommerce-admin-attributes.php:409 -msgid "" -"Determines the sort order on the frontend for this attribute. If using " -"custom ordering, you can drag and drop the terms in this attribute" -msgstr "" -"Asettaa ominaisuuksille esitysjärjestyksen julkisella puolella. Kun " -"'mukautettu järjestys', ominaisuuden arvoja voi järjestää Vedä ja pudota -" -"menetelmällä." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:284 -msgid "Update" -msgstr "Päivitä" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:317 -msgid "Order by" -msgstr "Järjestys" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:318 -msgid "Terms" -msgstr "Arvot" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:363 -msgid "Configure terms" -msgstr "Muokkaa arvoja" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:367 -msgid "No attributes currently exist." -msgstr "Yhtään ominaisuutta ei ole asetettu." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:377 -msgid "Add New Attribute" -msgstr "Lisää uusi ominaisuus" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:378 -msgid "" -"Attributes let you define extra product data, such as size or colour. You " -"can use these attributes in the shop sidebar using the \"layered nav\" " -"widgets. Please note: you cannot rename an attribute later on." -msgstr "" -"Ominaisuudet ovat tuotteeseen liittyviä piirteitä, kuten väri ja koko. " -"Sivupalkkiin voi sijoittaa 'Ominaisuuksilla haku' vimpaimen, jonka avulla " -"tuotteita voi etsiä näiden ominaisuuksien kautta. Huom: ominaisuutta ei voi " -"nimetä myöhemmin uudelleen." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:412 -msgid "Add Attribute" -msgstr "Lisää ominaisuus" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:423 -msgid "Are you sure you want to delete this attribute?" -msgstr "Haluatko poistaa tämän ominaisuuden?" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:26 -#: admin/woocommerce-admin-reports.php:26 -#: admin/woocommerce-admin-reports.php:66 -#: admin/woocommerce-admin-reports.php:82 -#: admin/woocommerce-admin-reports.php:93 -msgid "Overview" -msgstr "Yleiskatsaus" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:29 -msgid "" -"Thank you for using WooCommerce :) Should you need help using or extending " -"WooCommerce please read the documentation. For further " -"assistance you can use the community forum or if you have " -"access, our support desk." -msgstr "" -"Kiitos kun käytät WooCommercea :) Jos tarvitset käytön tai laajentamisen " -"ohjeita, tietoa löytyy ohjeista täältä (englanniksi). " -"Lisäksi voit löytää uusinta ohjeistusta (englannksi) keskustelupalstalta tai myös jäsenten foorumilta. " -"Suomeksi tietoa voi löytyä Googlaamalla tai ehkä suomenkieliseltä WordPress foorumilta." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:31 -msgid "" -"If you are having problems, or to assist us with support, please check the " -"status page to identify any problems with your configuration:" -msgstr "" -"Jos kohtaat teknisiä pulmia, ole hyvä ja tutustu ensin 'WooCommerce / " -"Järjestelmän tila' -sivuun. Se voi auttaa tilanteen selvittämisessä." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:33 admin/woocommerce-admin-init.php:89 -#: admin/woocommerce-admin-status.php:26 -msgid "System Status" -msgstr "Järjestelmän tila" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:35 -msgid "" -"If you come across a bug, or wish to contribute to the project you can also " -"get involved on GitHub." -msgstr "" -"Jos havaitset virheen (bugin), tai haluat osallistua projektiin voit " -"osallistua täällä: GitHub." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:43 -msgid "" -"Here you can set up your store and customise it to fit your needs. The " -"sections available from the settings page include:" -msgstr "" -"Täällä asetetaan kaupan tarvitsemat asetukset jotta se täyttää tarpeesi. " -"Esimerkiksi seuraavat näytöt on tarjolla:" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:44 -msgid "" -"General settings such as your shop base, currency, and script/styling " -"options which affect features used in your store." -msgstr "" -"Yleiset asetukset kuten kaupan sijainti, valuutta ja skripti-/tyyliasetukset " -"jotka vaikuttavat kaupan ominaisuuksiin." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:45 -#: admin/woocommerce-admin-settings.php:184 -msgid "Pages" -msgstr "Sivut" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:45 -msgid "" -"This is where important store page are defined. You can also set up other " -"pages (such as a Terms page) here." -msgstr "" -"Kaupan keskeiset sivut määritetään tässä. Voit myös asettaa muita sivuja, " -"kuten esim. tilaus-/sopimusehdot tässä." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:46 -msgid "" -"Options for how things like price, images and weights appear in your product " -"catalog." -msgstr "" -"Asetukset esim. hintojen, kuvien ja tuotepainojen esitystavalle kaupassa." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:47 -msgid "Options concerning stock and stock notices." -msgstr "Asetukset jotka koskevat varastoa ja siihen liittyviä huomautuksia." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:48 -msgid "Options concerning tax, including international and local tax rates." -msgstr "" -"Asetukset jotka koskevat veroja, myös kansainvälisiä ja paikallisia veroja." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:49 -msgid "" -"This is where shipping options are defined, and shipping methods are set up." -msgstr "Tässä asetetaan toimitustavat ja niihin liittyvät vaihtoehdot." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:50 -msgid "Payment Methods" -msgstr "Maksu" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:50 -msgid "" -"This is where payment gateway options are defined, and individual payment " -"gateways are set up." -msgstr "" -"Tässä valitaan maksutavat, ja kunkin maksutavan/ maksukäytävän asetukset " -"voidaan asettaa." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:51 -#: admin/woocommerce-admin-settings.php:189 -msgid "Emails" -msgstr "S-posti" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:51 -msgid "Here you can customise the way WooCommerce emails appear." -msgstr "Tässä voi muokata sähköpostien ilmettä ja sisältöä." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:52 -#: admin/woocommerce-admin-settings.php:190 -msgid "Integration" -msgstr "Palvelusidos" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:52 -msgid "" -"The integration section contains options for third party services which " -"integrate with WooCommerce." -msgstr "" -"Palvelusidokset välilehdellä muutetaan WooCommerce-kauppaan liitettyjen " -"kolmansien osapuolten palvelujen asetuksia." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:57 admin/woocommerce-admin-init.php:64 -msgid "Reports" -msgstr "Raportit" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:59 -msgid "" -"The reports section can be accessed from the left-hand navigation menu. Here " -"you can generate reports for sales and customers." -msgstr "" -"Raportit näyttöön pääsee vasemmalta navigaatiovalikosta. Siinä voi " -"tarkastella raportteja myynnistä, asiakkaista ja varastosta." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:60 -#: admin/woocommerce-admin-reports.php:23 -#: admin/woocommerce-admin-reports.php:998 -#: admin/woocommerce-admin-reports.php:1096 -#: admin/woocommerce-admin-reports.php:1215 -msgid "Sales" -msgstr "Myynti" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:60 -msgid "Reports for sales based on date, top sellers and top earners." -msgstr "" -"Useita raportteja, esim. myynti tiettynä ajanjaksona, myydyimmät tuotteet, " -"tuottavimmat tuotteet, jne." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:61 -msgid "Coupon usage reports." -msgstr "Raportit kuponkien käytöstä." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:62 -#: admin/woocommerce-admin-reports.php:79 -msgid "Customers" -msgstr "Asiakkaat" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:62 -msgid "Customer reports, such as signups per day." -msgstr "Asiakasraportit, kuten rekisteröitymisten määrä per päivä." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:63 -msgid "Stock reports for low stock and out of stock items." -msgstr "Varasto raportit 'Varasto vähissä' ja 'Varasto loppu' tuotteista." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:68 -#: admin/woocommerce-admin-dashboard.php:142 -msgid "Orders" -msgstr "Tilaukset" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:70 -msgid "" -"The orders section can be accessed from the left-hand navigation menu. Here " -"you can view and manage customer orders." -msgstr "" -"Tilaukset näyttöön pääsee vasemmalta navigaatiopalkista. Täällä voit " -"tarkastella ja hallita asiakkaiden tilauksia." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:71 -msgid "" -"Orders can also be added from this section if you want to set them up for a " -"customer manually." -msgstr "" -"Tässä voi lisätä tilauksen myös manuaalisesti jos se on tehtävä asiakkaan " -"puolesta." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:78 -msgid "" -"Coupons can be managed from this section. Once added, customers will be able " -"to enter coupon codes on the cart/checkout page. If a customer uses a coupon " -"code they will be viewable when viewing orders." -msgstr "" -"Kuponkeja hallitaan täällä. Kun kuponki on lisätty, niin asiakas voi sen " -"jälkeen käyttää sitä kassasivulla/ostoskorissa." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:82 -msgid "For more information:" -msgstr "Lisätietoja" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:83 admin/woocommerce-admin-init.php:62 -#: admin/woocommerce-admin-init.php:71 admin/woocommerce-admin-init.php:404 -msgid "WooCommerce" -msgstr "WooCommerce" - -#: admin/woocommerce-admin-content.php:84 -msgid "Project on WordPress.org" -msgstr "WC-projekti WordPressissä" - -#: admin/woocommerce-admin-content.php:85 -msgid "Project on Github" -msgstr "GitHub-kehitysprojekti" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:86 -msgid "WooCommerce Docs" -msgstr "WooCommerce-ohjeet" - -#: admin/woocommerce-admin-content.php:87 -msgid "Official Extensions" -msgstr "Viralliset (valmistajan) lisäosat" - -#: admin/woocommerce-admin-content.php:88 -msgid "Official Themes" -msgstr "Viralliset (valmistajan) teemat" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:40 -msgid "Monthly Sales" -msgstr "Kuukausittainen myynti" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:43 -msgid "WooCommerce Right Now" -msgstr "WooCommerce Nyt" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:44 -msgid "WooCommerce Recent Orders" -msgstr "WooCommercen Uusimmat tilaukset" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:45 -msgid "WooCommerce Recent Reviews" -msgstr "WooCommercen Uudet tuotearviot" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:78 -msgid "Shop Content" -msgstr "Kaupan sisältö" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:84 -#: admin/woocommerce-admin-functions.php:200 -#: admin/woocommerce-admin-init.php:766 -#: admin/woocommerce-admin-reports.php:997 -#: admin/woocommerce-admin-reports.php:1095 -msgid "Product" -msgid_plural "Products" -msgstr[0] "Tuote" -msgstr[1] "Tuotteet" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:98 -msgid "Product Category" -msgid_plural "Product Categories" -msgstr[0] "Osasto" -msgstr[1] "(Tuote)Osastot" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:112 -msgid "Product Tag" -msgid_plural "Product Tags" -msgstr[0] "Avainsana tuotteelle" -msgstr[1] "Avainsanat tuotteelle" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:126 -msgid "Attribute" -msgid_plural "Attributes" -msgstr[0] "Ominaisuus" -msgstr[1] "Ominaisuudet" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:148 -msgid "Pending" -msgstr "Avoin" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:162 -msgid "On-Hold" -msgstr "Odottaa" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:190 -msgid "Completed" -msgstr "Valmis" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:207 -msgid "You are using WooCommerce %s." -msgstr "Käytössä WooCommerce %s." - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:238 -msgid "l jS \\of F Y h:i:s A" -msgstr "l j. F Y H:i:s" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:239 -msgid "item" -msgid_plural "items" -msgstr[0] "tuote" -msgstr[1] "tuotetta" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:239 -msgid "Total:" -msgstr "Yhteensä:" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:245 -msgid "There are no product orders yet." -msgstr "Tilauksia ei ole vielä." - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:279 -msgid "out of 5" -msgstr "/ 5" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:287 -msgid "There are no product reviews yet." -msgstr "Yhtään tuotearviota ei ole tehty." - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:428 -msgid "Sold" -msgstr "Myyty" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:429 -msgid "Earned" -msgstr "Tuloja" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:190 -#: admin/woocommerce-admin-install.php:225 -msgid "Order Received" -msgstr "Tilaus vastaanotettu" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:192 -msgid "" -"Thank you, we are now processing your order. Your order's details are below." -msgstr "Kiitos, käsittelemme tilaustasi. Tilauksen tiedot alla." - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:194 -msgid "Order:" -msgstr "Tilaus:" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:201 -msgid "Quantity" -msgstr "Määrä" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:214 -msgid "Order total:" -msgstr "Tilaus yhteensä" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:220 -msgid "Customer details" -msgstr "Asiakkaan tiedot" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:226 -msgid "Billing address" -msgstr "Laskutusosoite" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:233 -msgid "Shipping address" -msgstr "Toimitusosoite" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:473 -msgid "Could not compile woocommerce.less:" -msgstr "Tiedoston muunto tarvittavaan muotoon epäonnistui, woocommerce.less:" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:494 -#: admin/woocommerce-admin-functions.php:495 -msgid "Mark processing" -msgstr "Merkitse käsittelyssä" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:497 -#: admin/woocommerce-admin-functions.php:498 -msgid "Mark completed" -msgstr "Merkitse valmis" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:535 -msgid "Order status changed by bulk edit:" -msgstr "Tilauksen vaihe vaihdettu massamuokkauksella:" - -# @ default -#: admin/woocommerce-admin-functions.php:558 -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "Tilauksen vaihe muutettu." -msgstr[1] "%s tilauksen vaihe muutettu." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:88 -msgid "WooCommerce Settings" -msgstr "WooCommercen asetukset" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:89 -msgid "WooCommerce Status" -msgstr "WooCommercen tila" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:142 admin/woocommerce-admin-init.php:144 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Tilaukset" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:433 -msgid "" -"Are you sure you want to remove the selected items? If you have previously " -"reduced this item's stock, or this order was submitted by a customer, you " -"will need to manually restore the item's stock." -msgstr "" -"Oletko varma, että haluat poistaa valitut tuotteet? Jos olet aiemmin " -"vähentänyt tämän tuotteen varastosta tai asiakas teki tilauksen (jolloin " -"varastoa vähennettiin), niin tuotteen varastosaldo on manuaalisesti " -"korotettava." - -#: admin/woocommerce-admin-init.php:434 -msgid "Please select some items." -msgstr "Valitse joitakin tuotteita, ole hyvä." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:435 -msgid "Remove this item meta?" -msgstr "Poista kohteen lisätieto?" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:436 -msgid "Remove this attribute?" -msgstr "Poistetaanko tämä ominaisuus?" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:444 -msgid "Enter a name for the new attribute term:" -msgstr "Kirjoita nimi uudelle ominaisuuden arvolle:" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:445 -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "" -"Laske loppusummat tilauksen tuotteiden, -alennusten ja -toimituskulujen " -"pohjalta?" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:446 -msgid "" -"Calculate line taxes? This will calculate taxes based on the customers " -"country. If no billing/shipping is set it will use the store base country." -msgstr "" -"Lasketaanko rivien verot? Tämä laskee veron asiakkaan sijainnin (maan) " -"perusteella. Jos laskutus/toimitusosoitetta ei ole asetettu, käytetään " -"kaupan sijaintia." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:447 -msgid "" -"Copy billing information to shipping information? This will remove any " -"currently entered shipping information." -msgstr "" -"Kopioi laskutusosoite toimitusosoitteeksi? Tämä korvaa jo syötetyn " -"toimitusosoitteen." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:448 -msgid "" -"Load the customer's billing information? This will remove any currently " -"entered billing information." -msgstr "" -"Ladataanko asiakkaan laskutustiedot? Tämä poistaa jo syötetyt laskutustiedot." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:449 -msgid "" -"Load the customer's shipping information? This will remove any currently " -"entered shipping information." -msgstr "" -"Ladataanko asiakkaan toimitustustiedot? Tämä poistaa jo syötetyt " -"toimitustiedot." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:453 -msgid "No customer selected" -msgstr "Asiakasta ei valittu" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:670 -msgid "Product updated. View Product" -msgstr "Tuote päivitetty. Katso tuote" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:671 admin/woocommerce-admin-init.php:686 -#: admin/woocommerce-admin-init.php:701 -msgid "Custom field updated." -msgstr "Mukautettu kenttä päivitetty." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:672 admin/woocommerce-admin-init.php:687 -#: admin/woocommerce-admin-init.php:702 -msgid "Custom field deleted." -msgstr "Mukautettu kenttä poistettu." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:673 -msgid "Product updated." -msgstr "Tuote päivitetty." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:674 -msgid "Product restored to revision from %s" -msgstr "Tuote palautettu versioon, %s" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:675 -msgid "Product published. View Product" -msgstr "Tuote julkaistu. Katso tuote" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:676 -msgid "Product saved." -msgstr "Tuote tallennettu." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:677 -msgid "Product submitted. Preview Product" -msgstr "Tuote syötetty. Esikatsele tuote" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:678 -msgid "" -"Product scheduled for: %1$s. Preview Product" -msgstr "" -"Tuote on ajastettu: %1$s. Esikatsele tuote" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:679 admin/woocommerce-admin-init.php:694 -#: admin/woocommerce-admin-init.php:709 -msgid "M j, Y @ G:i" -msgstr "j.n.Y @ H:i" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:680 -msgid "" -"Product draft updated. Preview Product" -msgstr "" -"Tuotteen luonnos päivitetty. Esikatsele " -"tuote" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:685 admin/woocommerce-admin-init.php:688 -#: admin/woocommerce-admin-init.php:690 -msgid "Order updated." -msgstr "Tilaus päivitetty." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:689 -msgid "Order restored to revision from %s" -msgstr "Tilaus palautettu versioon, %s" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:691 -msgid "Order saved." -msgstr "Tilaus tallennettu." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:692 -msgid "Order submitted." -msgstr "Tilaus lähetetty." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:693 -msgid "Order scheduled for: %1$s." -msgstr "Tilaus ajastettu: %1$s" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:695 -msgid "Order draft updated." -msgstr "Tilauksen luonnos päivitetty." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:700 admin/woocommerce-admin-init.php:703 -#: admin/woocommerce-admin-init.php:705 -msgid "Coupon updated." -msgstr "Kuponki päivitetty." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:704 -msgid "Coupon restored to revision from %s" -msgstr "Kuponki palautettu versioon, %s" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:706 -msgid "Coupon saved." -msgstr "Kuponki tallennettu." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:707 -msgid "Coupon submitted." -msgstr "Kuponki lähetetty." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:708 -msgid "Coupon scheduled for: %1$s." -msgstr "Kuponki ajastettu: %1$s." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:710 -msgid "Coupon draft updated." -msgstr "Kupongin luonnos päivitetty." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:727 -msgid "Order notes" -msgstr "Tilauksen kommentit" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:742 -msgid "" -"These settings control the permalinks used for products. These settings only " -"apply when not using \"default\" permalinks above." -msgstr "" -"Tässä asetetaan tuotteiden kestolinkit (permalinks). Asetuksia käytetään " -"silloin, kun ei käytetä 'oletus' kestolinkkejä (yllä)." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:749 -msgctxt "default-slug" -msgid "shop" -msgstr "kauppa" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:750 -msgctxt "default-slug" -msgid "product" -msgstr "tuote" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:771 -msgid "Shop base" -msgstr "Kaupan polkutunnus" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:775 -msgid "Shop base with category" -msgstr "Kaupan polkutunnus ja osasto" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:781 -msgid "Custom Base" -msgstr "Mukautettu polkutunnus" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:783 -msgid "" -"Enter a custom base to use. A base must be set or WordPress " -"will use default instead." -msgstr "" -"Kirjoita mukautettu polkutunnus. Polkutunnus on asetettava " -"tai käytetään WordPress-oletusta." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:811 -msgid "Product permalink base" -msgstr "Tuotteiden polkutunnus" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:816 -msgid "Product category base" -msgstr "Osastojen polkutunnus" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:823 -msgid "Product tag base" -msgstr "Avainsanojen polkutunnus" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:830 -msgid "Product attribute base" -msgstr "Ominaisuuksien polkutunnus" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:195 -msgctxt "page_slug" -msgid "shop" -msgstr "kauppa" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:195 -msgid "Shop" -msgstr "Kauppa" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:198 -msgctxt "page_slug" -msgid "cart" -msgstr "ostoskori" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:198 -#: admin/woocommerce-admin-status.php:314 -msgid "Cart" -msgstr "Ostoskori" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:201 -msgctxt "page_slug" -msgid "checkout" -msgstr "kassa" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:204 -msgctxt "page_slug" -msgid "my-account" -msgstr "oma-tili" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:204 -#: admin/woocommerce-admin-status.php:330 -msgid "My Account" -msgstr "Oma tili" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:210 -msgctxt "page_slug" -msgid "edit-address" -msgstr "muokkaa-osoitetta" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:210 -msgid "Edit My Address" -msgstr "Muokkaa osoitetta" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:213 -msgctxt "page_slug" -msgid "view-order" -msgstr "tarkastele-tilausta" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:213 -#: admin/woocommerce-admin-status.php:338 -msgid "View Order" -msgstr "Tarkastele tilausta" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:216 -msgctxt "page_slug" -msgid "change-password" -msgstr "vaihda-salasana" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:216 -#: admin/woocommerce-admin-status.php:342 -msgid "Change Password" -msgstr "Vaihda salasana" - -#: admin/woocommerce-admin-install.php:219 -msgctxt "page_slug" -msgid "logout" -msgstr "kirjaudu-ulos" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:219 -msgid "Logout" -msgstr "Kirjaudu ulos" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:222 -msgctxt "page_slug" -msgid "pay" -msgstr "maksa" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:222 -msgid "Checkout → Pay" -msgstr "Siirry kassalle → Maksa" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:225 -msgctxt "page_slug" -msgid "order-received" -msgstr "tilaus-vastaanotettu" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:32 -msgid "Sales by day" -msgstr "Päivämyynti" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:37 -msgid "Sales by month" -msgstr "Kuukausimyynti" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:42 -msgid "Product Sales" -msgstr "Tuotteiden myynti" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:47 -msgid "Top sellers" -msgstr "Myydyimmät" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:52 -msgid "Top earners" -msgstr "Tuottavimmat" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:57 -msgid "Sales by category" -msgstr "Myynti/osasto" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:72 -msgid "Discounts by coupon" -msgstr "Alennus kupongin mukaan " - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:104 -msgid "Taxes by month" -msgstr "Verot kuukausittain" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:244 -#: admin/woocommerce-admin-reports.php:509 -#: admin/woocommerce-admin-reports.php:714 -#: admin/woocommerce-admin-reports.php:895 -msgid "Sales amount" -msgstr "Myynnin määrä €" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:249 -#: admin/woocommerce-admin-reports.php:509 -#: admin/woocommerce-admin-reports.php:714 -#: admin/woocommerce-admin-reports.php:895 -msgid "Number of sales" -msgstr "Myyntitapahtumia kpl" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:381 -msgid "Total sales" -msgstr "Myynti yhteensä" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:383 -#: admin/woocommerce-admin-reports.php:389 -#: admin/woocommerce-admin-reports.php:395 -#: admin/woocommerce-admin-reports.php:401 -#: admin/woocommerce-admin-reports.php:407 -#: admin/woocommerce-admin-reports.php:413 -#: admin/woocommerce-admin-reports.php:656 -#: admin/woocommerce-admin-reports.php:662 -#: admin/woocommerce-admin-reports.php:668 -#: admin/woocommerce-admin-reports.php:674 -#: admin/woocommerce-admin-reports.php:840 -#: admin/woocommerce-admin-reports.php:846 -#: admin/woocommerce-admin-reports.php:852 -#: admin/woocommerce-admin-reports.php:858 -#: admin/woocommerce-admin-reports.php:1381 -#: admin/woocommerce-admin-reports.php:1387 -#: admin/woocommerce-admin-reports.php:1393 -#: admin/woocommerce-admin-reports.php:1827 -#: admin/woocommerce-admin-reports.php:1833 -#: admin/woocommerce-admin-reports.php:1839 -#: admin/woocommerce-admin-reports.php:1845 -#: admin/woocommerce-admin-reports.php:1851 -#: admin/woocommerce-admin-reports.php:1857 -#: admin/woocommerce-admin-reports.php:2321 -#: admin/woocommerce-admin-reports.php:2332 -#: admin/woocommerce-admin-reports.php:2343 -msgid "n/a" -msgstr "Ei saatavilla/-tietoa" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:387 -msgid "Total orders" -msgstr "Tilaukset (tilatut) yhteensä" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:389 -#: admin/woocommerce-admin-reports.php:662 -#: admin/woocommerce-admin-reports.php:846 -msgid "items" -msgstr "kpl" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:393 -msgid "Average order total" -msgstr "Tilaus keskimäärin €" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:399 -msgid "Average order items" -msgstr "Tilattu keskimäärin tuotteita kpl" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:405 -msgid "Discounts used" -msgstr "Myönnetyt alennukset" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:411 -msgid "Total shipping costs" -msgstr "Toimituskulut yhteensä" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:419 -msgid "This month's sales" -msgstr "Tämän kuukauden myynti" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:648 -#: admin/woocommerce-admin-reports.php:992 -#: admin/woocommerce-admin-reports.php:1090 -#: admin/woocommerce-admin-reports.php:1373 -msgid "From:" -msgstr "Alku pvm:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:648 -#: admin/woocommerce-admin-reports.php:992 -#: admin/woocommerce-admin-reports.php:1090 -#: admin/woocommerce-admin-reports.php:1373 -msgid "To:" -msgstr "Loppu pvm:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:648 -#: admin/woocommerce-admin-reports.php:833 -#: admin/woocommerce-admin-reports.php:992 -#: admin/woocommerce-admin-reports.php:1090 -#: admin/woocommerce-admin-reports.php:1246 -#: admin/woocommerce-admin-reports.php:1373 -#: admin/woocommerce-admin-reports.php:1506 -#: admin/woocommerce-admin-reports.php:2310 -#: admin/woocommerce-admin-reports.php:2493 -msgid "Show" -msgstr "Näytä" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:654 -msgid "Total sales in range" -msgstr "Ajanjakson myynti yhteensä" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:660 -msgid "Total orders in range" -msgstr "Ajanjakson tilaukset (tilatut)" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:666 -msgid "Average order total in range" -msgstr "Tilaus keskimäärin € aikavälillä" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:672 -msgid "Average order items in range" -msgstr "Tilattu keskimäärin tuotteita kpl aikavälillä" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:680 -msgid "Sales in range" -msgstr "Myyntitulot aikavälillä" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:827 -#: admin/woocommerce-admin-reports.php:2304 -msgid "Year:" -msgstr "Vuosi:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:838 -msgid "Total sales for year" -msgstr "Koko vuoden myynti" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:844 -msgid "Total orders for year" -msgstr "Koko vuoden tilaukset (tilatut)" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:850 -msgid "Average order total for year" -msgstr "Tilaus keskimäärin € vuodessa" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:856 -msgid "Average order items for year" -msgstr "Tilaus keskimäärin kpl vuodessa" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:864 -msgid "Monthly sales for year" -msgstr "Vuoden kuukausittainen myynti" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1012 -msgid "Product does not exist" -msgstr "Tuotetta ei ole" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1111 -msgid "Product no longer exists" -msgstr "Tuotetta ei enää ole" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1210 -msgid "Sales for %s:" -msgstr "Myynti – tuote %s:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1214 -#: admin/woocommerce-admin-reports.php:2352 -msgid "Month" -msgstr "Kuukausi" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1236 -msgid "No sales :(" -msgstr "Ei myyntiä :(" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1379 -msgid "Total orders containing coupons" -msgstr "Kuponkien käyttö, kpl tilauksessa" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1385 -msgid "Percent of orders containing coupons" -msgstr "Kuponkien käyttö, % tilauksista" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1391 -msgid "Total coupon discount" -msgstr "Kuponkialennus yhteensä" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1400 -msgid "Most popular coupons" -msgstr "Suosituimmat kupongit" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1410 -msgid "Used 1 time" -msgid_plural "Used %d times" -msgstr[0] "Käytetty 1 kerran" -msgstr[1] "Käytetty %d kertaa" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1413 -#: admin/woocommerce-admin-reports.php:1435 -msgid "No coupons found" -msgstr "Kuponkeja ei löytynyt" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1422 -msgid "Greatest discount amount" -msgstr "Suurin alennus (€)" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1432 -msgid "Discounted %s" -msgstr "Alennettu %s" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1491 -#: admin/woocommerce-admin-reports.php:2470 -msgid "Show:" -msgstr "Näytä:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1548 -msgid "Coupon" -msgstr "Kuponki" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1631 -msgid "Top coupon" -msgstr "Paras kuponki" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1639 -msgid "Worst coupon" -msgstr "Huonoin kuponki" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1647 -msgid "Discount average" -msgstr "Alennus keskimäärin (€)" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1655 -msgid "Discount median" -msgstr "Alennus, mediaani" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1675 -msgid "Monthly discounts by coupon" -msgstr "Kuponkialennukset kuukaudessa" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1825 -msgid "Total customers" -msgstr "Asiakkaita yhteensä" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1831 -msgid "Total customer sales" -msgstr "Myyntitulot rekisteröityneiltä yhteensä" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1837 -msgid "Total guest sales" -msgstr "Myyntitulot vierailta yhteensä" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1843 -msgid "Total customer orders" -msgstr "Tilauksia rekisteröityneiltä yhteensä" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1849 -msgid "Total guest orders" -msgstr "Tilauksia vierailta yhteensä" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1855 -msgid "Average orders per customer" -msgstr "Tilaukset keskimäärin / asiakas" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1863 -msgid "Signups per day" -msgstr "Rekisteröitymisiä päivässä" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2084 -msgid "Low stock" -msgstr "Varasto vähissä" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2107 -#: admin/woocommerce-admin-reports.php:2146 -msgid "%d in stock" -msgid_plural "%d in stock" -msgstr[0] "%d varastossa" -msgstr[1] "%d varastossa" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2112 -msgid "No products are low in stock." -msgstr "Kaikkia tuotteita enemmän kuin 'Varasto vähissä' -raja." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2144 -msgid "Marked out of stock" -msgstr "Varasto loppu" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2151 -msgid "No products are out in stock." -msgstr "Kaikkia tuotteita vähintään 1 kpl varastossa." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2315 -msgid "Total taxes for year" -msgstr "Verot vuodessa yhteensä" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2326 -msgid "Total product taxes for year" -msgstr "Tuotteiden vero, vuosi" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2337 -msgid "Total shipping tax for year" -msgstr "Toimituskulujen vero, vuosi" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2353 -msgid "Total Sales" -msgstr "Myynti yht." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2353 -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "Tilausten kenttä 'Tilaus yhteensä' -arvot laskettu yhteen." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2354 -msgid "Total Shipping" -msgstr "Toimituskulut yht." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2354 -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "Tilausten kenttä 'Toimituskulut yhteensä' -arvot laskettu yhteen." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2355 -msgid "Total Product Taxes" -msgstr "Tuotteiden verot yht." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2355 -msgid "This is the sum of the 'Cart Tax' field within your orders." -msgstr "Tilausten kenttä 'Ostoskorin vero' -arvot laskettu yhteen." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2356 -msgid "Total Shipping Taxes" -msgstr "Toimituskulujen verot yht." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2356 -msgid "This is the sum of the 'Shipping Tax' field within your orders." -msgstr "Tilausten kenttä 'Toimituskulujen vero' -arvot laskettu yhteen." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2357 -msgid "Total Taxes" -msgstr "Verot yht." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2357 -msgid "" -"This is the sum of the 'Cart Tax' and 'Shipping Tax' fields within your " -"orders." -msgstr "" -"Laskettu yhteen: Tilausten kenttä 'Ostoskorin vero' -arvot JA kenttä " -"'Toimituskulujen vero' -arvot." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2358 -msgid "Net profit" -msgstr "Tulos" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2358 -msgid "Total sales minus shipping and tax." -msgstr "Kokonaismyynti josta vähennetty toimituskulut ja verot." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2403 -msgid "Toggle tax rows" -msgstr "Vaihda verorivien tilaa" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2546 -msgid "Category" -msgstr "Osasto" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2649 -msgid "Top category" -msgstr "Paras osasto" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2658 -msgid "Worst category" -msgstr "Huonoin osasto" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2666 -msgid "Category sales average" -msgstr "Osaston myynnin keskimäärä" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2677 -msgid "Category sales median" -msgstr "Osaston myynnin mediaani" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2697 -msgid "Monthly sales by category" -msgstr "Kuukausittainen myynti/osasto" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:45 -msgid "Action failed. Please refresh the page and retry." -msgstr "Toiminto ei onnistunut. Päivitä sivu ja yritä uudelleen." - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:164 -msgid "Your settings have been saved." -msgstr "Asetukset on tallennettu." - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:210 -msgid "" -"More functionality and gateway options available via WC official extensions." -msgstr "" -"Lisää toimintoja ja maksukäytäviä tarjolla Viralliset (=valmistajan) laajennukset." - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:228 -msgid "Tax Rates" -msgstr "Veroprosentit" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:255 -msgid "Email Options" -msgstr "Sähköposti asetukset" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:388 -msgid "Save changes" -msgstr "Tallenna muutokset" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:429 -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "Tallentamattomat tiedot häviävät jos poistut tältä sivulta." - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:802 -msgid "Hard Crop" -msgstr "Pakota koko" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:827 -msgid "Select a page…" -msgstr "Valitse sivu..." - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:853 -msgid "Choose a country…" -msgstr "Valitse maa..." - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:873 -msgid "Choose countries…" -msgstr "Valitse maat..." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:27 -#: admin/woocommerce-admin-status.php:703 -msgid "Tools" -msgstr "Työkalut" - -#: admin/woocommerce-admin-status.php:62 -msgid "Please include this information when requesting support:" -msgstr "Liitä tämä tieto tukipyyntöön, ole hyvä:" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:63 -msgid "Download System Report File" -msgstr "Lataa järjestelmän tila -raportti" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:71 -msgid "Environment" -msgstr "Ympäristö" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:77 -msgid "Home URL" -msgstr "Etusivun verkko-osoite (URL)" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:81 -msgid "Site URL" -msgstr "Sivuston verkko-osoite (URL)" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:85 -msgid "WC Version" -msgstr "WC-versio" - -#: admin/woocommerce-admin-status.php:89 -msgid "WC Database Version" -msgstr "WC-tietokanta-versio" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:93 -msgid "WP Version" -msgstr "WP-versio" - -#: admin/woocommerce-admin-status.php:97 -msgid "Web Server Info" -msgstr "Palvelimen tiedot" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:101 -msgid "PHP Version" -msgstr "PHP-versio" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:105 -msgid "MySQL Version" -msgstr "MySQL-versio" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:109 -msgid "WP Memory Limit" -msgstr "WP-muistinvaraus" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:114 -msgid "" -"%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "" -"%s - Suositus: aseta WP:n muistinvaraus vähintään arvoksi 64MB, esim. 'wp-" -"config.php' tiedostossa. Lisätietoja: Increasing memory " -"allocated to PHP" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:121 -msgid "WP Debug Mode" -msgstr "WP-testaustila" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:125 -msgid "WP Max Upload Size" -msgstr "WP-suurin siirrettävän tiedoston koko" - -#: admin/woocommerce-admin-status.php:129 -msgid "PHP Post Max Size" -msgstr "PHP 'post' -suurin koko" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:133 -msgid "PHP Time Limit" -msgstr "PHP max suoritusaika" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:137 -msgid "WC Logging" -msgstr "WooCommerce-loki" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:140 -msgid "Log directory is writable." -msgstr "Voidaan kirjoittaa lokitiedoston hakemistoon." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:142 -msgid "" -"Log directory (woocommerce/logs/) is not writable. Logging will " -"not be possible." -msgstr "" -"Loki tiedoston hakemistoon (woocommerce/logs/) ei voi " -"kirjoittaa. Lokia ei voi tehdä." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:146 -msgid "Default Timezone" -msgstr "Oletus aikavyöhyke" - -#: admin/woocommerce-admin-status.php:150 -msgid "Default timezone is %s - it should be UTC" -msgstr "Oletus aikavyöhyke on %s – sen pitäisi olla UTC" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:152 -msgid "Default timezone is %s" -msgstr "Oletus aikavyöhyke on %s" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:160 -msgid "fsockopen/cURL" -msgstr "fsockopen/cURL" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:163 -msgid "Your server has fsockopen and cURL enabled." -msgstr "Palvelimella on käytössä fsockopen ja cURL." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:165 -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "Palvelimella on käytössä fsockopen mutta cURL ei ole käytössä." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:167 -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "Palvelimella on käytössä cURL mutta fsockopen ei ole käytössä." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:171 -msgid "" -"Your server does not have fsockopen or cURL enabled - PayPal IPN and other " -"scripts which communicate with other servers will not work. Contact your " -"hosting provider." -msgstr "" -"Palvelimella ei ole käytössä fsockopen, cURL. PayPal IPN ja muut skriptit " -"eivät toimi. – Ota yhteyttä palvelimen ylläpitäjään ja selvitä tilanne." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:176 -msgid "SOAP Client" -msgstr "SOAP Client (-asiakas)" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:178 -msgid "Your server has the SOAP Client class enabled." -msgstr "Palvelimella on käytössä SOAP Client class." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:181 -msgid "" -"Your server does not have the SOAP Client class enabled - " -"some gateway plugins which use SOAP may not work as expected." -msgstr "" -"Palvelimella ei ole käytössä SOAP Client class – ne " -"lisäosat jotka käyttävät SOAP eivät toimi odotetulla tavalla." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:186 -msgid "WP Remote Post" -msgstr "WP-etälähetys" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:197 -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "wp_remote_post() onnistui – PayPal IPN toimii." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:200 -msgid "" -"wp_remote_post() failed. PayPal IPN won't work with your server. Contact " -"your hosting provider. Error:" -msgstr "" -"wp_remote_post() epäonnistui. PayPal IPN ei toimi palvelimella. – Ota " -"yhteyttä palvelimen ylläpitäjään ja selvitä tilanne. Virhe:" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:203 -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "wp_remote_post() epäonnistui. PayPal IPN ei ehkä toimi palvelimella." - -#: admin/woocommerce-admin-status.php:226 -msgid "Plugins" -msgstr "Lisäosat" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:232 -msgid "Installed Plugins" -msgstr "Asennetut lisäosat" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:270 -msgid "is available" -msgstr "on saatavilla" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:273 -msgid "by" -msgstr "tekijä" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:273 -msgid "version" -msgstr "versio" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:296 -msgid "Force SSL" -msgstr "Pakota SSL" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:303 -msgid "WC Pages" -msgstr "WC-Sivut" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:310 -msgid "Shop Base" -msgstr "Kaupan polkutunnus" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:322 -msgid "Pay" -msgstr "Maksa" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:326 -msgid "Thanks" -msgstr "Kiitos" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:334 -msgid "Edit Address" -msgstr "Muokkaa osoitetta" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:366 -msgid "Page not set" -msgstr "Sivua ei ole asetettu" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:376 -msgid "Page does not exist" -msgstr "Sivua ei ole" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:381 -msgid "Page does not contain the shortcode: %s" -msgstr "Sivulta puuttuu lyhytkoodi ('shortcode'): %s" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:400 -msgid "WC Taxonomies" -msgstr "WC-Luokittelut" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:406 -msgid "Order Statuses" -msgstr "Tilausten vaiheet" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:416 -msgid "Product Types" -msgstr "Tuotteen lajit" - -#: admin/woocommerce-admin-status.php:429 -msgid "Theme" -msgstr "Teema" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:435 -msgid "Theme Name" -msgstr "Teeman nimi" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:442 -msgid "Theme Version" -msgstr "Teeman versio" - -#: admin/woocommerce-admin-status.php:448 -msgid "Author URL" -msgstr "Kirjoittajan URL" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:457 -msgid "Templates" -msgstr "Teemat" - -#: admin/woocommerce-admin-status.php:463 -msgid "Template Overrides" -msgstr "Teema ohittaa WC:n toiminnan" - -#: admin/woocommerce-admin-status.php:481 -msgid "No core overrides present in theme." -msgstr "Teemassa ei ole toimintoja jotka ohittavat WC:n toiminnan." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:576 -msgid "WC Transients" -msgstr "WC-väliaikaiset tiedot" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:577 -msgid "Clear transients" -msgstr "Tyhjennä välimuisti" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:578 -msgid "This tool will clear the product/shop transients cache." -msgstr "Työkalu tyhjentää välimuistin: 'väliaikaisesti tarvitut tiedot'" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:581 -msgid "Expired Transients" -msgstr "Vanhentuneet välimuistissa" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:582 -msgid "Clear expired transients" -msgstr "Poista vanhentuneet" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:583 -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "" -"Työkalu tyhjentää KAIKKI 'väliaikaisesti tarvitut tiedot' WordPress'istä." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:586 -msgid "Term counts" -msgstr "Luokittelut, avaisanat määrä" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:587 -msgid "Recount terms" -msgstr "Laske uudelleen" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:588 -msgid "" -"This tool will recount product terms - useful when changing your settings in " -"a way which hides products from the catalog." -msgstr "" -"Työkalu laske tuotteisiin liitetyt termit. Käytetään esim. sellaisten " -"[asetusten] muutosten jälkeen, jotka piilottavat luettelon tuotteita." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:591 -msgid "Capabilities" -msgstr "Roolien pääsyoikeudet" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:592 -msgid "Reset capabilities" -msgstr "Roolit perustilaan" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:593 -msgid "" -"This tool will reset the admin, customer and shop_manager roles to default. " -"Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "" -"Työkalu asettaa ylläpitäjän, asiakkaan ja kauppiaan roolit perustilaan. " -"Käytetään jos käyttäjät eivät pääse kaikille WooCommerce hallintasivuille." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:596 -msgid "Customer Sessions" -msgstr "Asiakkaiden istunnot" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:597 -msgid "Clear all sessions" -msgstr "Poista kaikki istunnot" - -#: admin/woocommerce-admin-status.php:598 -msgid "" -"Warning This tool will delete all customer " -"session data from the database, including any current live carts." -msgstr "" -"Varoitus Työkalu poistaa kaiken asiakkaiden " -"istuntoihin liittyvän tiedon tietokannasta, mukaan lukien käytössä olevien " -"ostoskorien sisällön." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:608 -msgid "Product Transients Cleared" -msgstr "Välimuisti: 'väliaikaisesti tarvitut tiedot' tyhjennetty" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:649 -msgid "%d Transients Rows Cleared" -msgstr "Välimuisti: %d 'väliaikaisesti tarvittua riviä' poistettu" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:657 -msgid "Roles successfully reset" -msgstr "Roolien pääsyoikeudet asetettu perustilaan" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:669 -msgid "Terms successfully recounted" -msgstr "Termit laskettiin uudelleen." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:688 -msgid "There was an error calling %s::%s" -msgstr "Tapahtui virhe kutsuttaessa %s::%s" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:691 -msgid "There was an error calling %s" -msgstr "Tapahtui virhe kutsuttaessa %s" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:25 -#: admin/woocommerce-admin-taxonomies.php:118 -msgid "Display type" -msgstr "Esitystapa" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:29 -#: admin/woocommerce-admin-taxonomies.php:123 -msgid "Subcategories" -msgstr "Osaston alemmat tasot" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:30 -#: admin/woocommerce-admin-taxonomies.php:124 -msgid "Both" -msgstr "Molemmat" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:34 -#: admin/woocommerce-admin-taxonomies.php:129 -msgid "Thumbnail" -msgstr "Pikkukuva" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:38 -#: admin/woocommerce-admin-taxonomies.php:134 -msgid "Upload/Add image" -msgstr "Siirrä/Lisää kuva" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:39 -#: admin/woocommerce-admin-taxonomies.php:135 -msgid "Remove image" -msgstr "Poista kuva" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:64 -#: admin/woocommerce-admin-taxonomies.php:156 -msgid "Use image" -msgstr "Käytä kuvaa" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:222 -msgid "" -"Product categories for your store can be managed here. To change the order " -"of categories on the front-end you can drag and drop to sort them. To see " -"more categories listed click the \"screen options\" link at the top of the " -"page." -msgstr "" -"Kaupan osastoja hallitaan tässä. Osastojen järjestystä voi muuttaa Vedä ja " -"pudota -menetelmällä. Esitysjärjestys muuttuu myös julkisella puolella. " -"Tällä sivulla näytettävien osastojen määrän asetat painamalla sivun oikeassa " -"yläkulmassa olevaa 'Näyttöasetukset' painiketta." - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:237 -msgid "" -"Shipping classes can be used to group products of similar type. These groups " -"can then be used by certain shipping methods to provide different rates to " -"different products." -msgstr "" -"Toimitusluokkaa käytetään ryhmittämään tuotteita, jotka tarvitsevat " -"samankaltaisen kuljetuksen. Toimitusluokalle voidaan sitten osoittaa sopiva " -"kuljetustapa ja kuljetuksesta aiheutuvat kustannukset." - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:365 -msgid "Edit Class" -msgstr "Muokkaa luokkaa" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:26 -msgid "Billing Address" -msgstr "Laskutusosoite" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:27 -msgid "Shipping Address" -msgstr "Toimitusosoite" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:28 -msgid "Paying Customer?" -msgstr "Maksava asiakas?" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:29 -msgid "Completed Orders" -msgstr "Valmiit tilaukset" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:144 -msgid "Customer Billing Address" -msgstr "Asiakkaan laskutusosoite" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:147 admin/woocommerce-admin-users.php:196 -msgid "First name" -msgstr "Etunimi" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:151 admin/woocommerce-admin-users.php:200 -msgid "Last name" -msgstr "Sukunimi" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:176 -msgid "Country or state code" -msgstr "Maa- tai aluekoodi" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:180 admin/woocommerce-admin-users.php:229 -msgid "2 letter Country code" -msgstr "Maakoodi, 2 kirjainta" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:183 -msgid "Telephone" -msgstr "Puhelin" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:193 -msgid "Customer Shipping Address" -msgstr "Asiakkaan toimitusosoite" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:225 -msgid "State/County or state code" -msgstr "Alue/kunta tai aluekoodi" - -#. Plugin URI of the plugin/theme -msgid "http://www.woothemes.com/woocommerce/" -msgstr "http://www.woothemes.com/woocommerce/" - -#. Description of the plugin/theme -msgid "An e-commerce toolkit that helps you sell anything. Beautifully." -msgstr "Verkkokauppaohjelmisto joka auttaa myymään kaikkea. Kauniisti." - -#. Author of the plugin/theme -msgid "WooThemes" -msgstr "WooThemes" - -#. Author URI of the plugin/theme -msgid "http://woothemes.com" -msgstr "http://woothemes.com" diff --git a/i18n/languages/woocommerce-admin-fr_FR.mo b/i18n/languages/woocommerce-admin-fr_FR.mo deleted file mode 100644 index 49a8cf0782b..00000000000 Binary files a/i18n/languages/woocommerce-admin-fr_FR.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-admin-fr_FR.po b/i18n/languages/woocommerce-admin-fr_FR.po deleted file mode 100644 index d6f0ccdc132..00000000000 --- a/i18n/languages/woocommerce-admin-fr_FR.po +++ /dev/null @@ -1,13998 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce 2.0.18 Admin\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-04-29 16:02:07+00:00\n" -"PO-Revision-Date: \n" -"Last-Translator: Nicolas Sitbon \n" -"Language-Team: ABSOLUTE Web et prédécesseurs \n" -"Language: fr_FR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" -"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" -"X-Poedit-Basepath: ../../\n" -"X-Textdomain-Support: yes\n" -"X-Generator: Poedit 1.5.7\n" -"X-Poedit-SearchPath-0: ../..\n" - -# @ woocommerce -#: admin/importers/importers-init.php:13 -msgid "WooCommerce Tax Rates (CSV)" -msgstr "WooCommerce Taux de taxes (CSV)" - -#: admin/importers/importers-init.php:13 -msgid "Import tax rates to your store via a csv file." -msgstr "" -"Importez les taux de taxe dans votre boutique via un " -"fichier csv." - -#: admin/importers/tax-rates-importer.php:103 -#: admin/importers/tax-rates-importer.php:186 -#: admin/importers/tax-rates-importer.php:226 -#: admin/importers/tax-rates-importer.php:241 -msgid "Sorry, there has been an error." -msgstr "Désolé, il y a eu une erreur." - -#: admin/importers/tax-rates-importer.php:104 -msgid "The file does not exist, please try again." -msgstr "Le fichier n'existe pas, veuillez essayer de nouveau." - -#: admin/importers/tax-rates-importer.php:187 -msgid "The CSV is invalid." -msgstr "Le CSV est invalide." - -#: admin/importers/tax-rates-importer.php:198 -msgid "" -"Import complete - imported %s tax rates and skipped " -"%s." -msgstr "" -"Import complété - %s taux de taxe importés et %s sautés." - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:208 -msgid "All done!" -msgstr "Tout est fait !" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:208 -msgid "View Tax Rates" -msgstr "Voir les taux de taxe" - -#: admin/importers/tax-rates-importer.php:259 -msgid "Import Tax Rates" -msgstr "Importer les taux de taxe" - -#: admin/importers/tax-rates-importer.php:282 -msgid "" -"Hi there! Upload a CSV file containing tax rates to import the contents into " -"your shop. Choose a .csv file to upload, then click \"Upload file and import" -"\"." -msgstr "" -"Transférez un fichier CSV contenant les taux de taxe pour importer les " -"contenus dans votre boutique. Choisissez un fichier .csv à transférer, puis " -"cliquez \"Envoyer le fichier et l'importer\"." - -#: admin/importers/tax-rates-importer.php:284 -msgid "" -"Tax rates need to be defined with columns in a specific order (10 columns). " -"Click here to download a sample." -msgstr "" -"Les taux de taxe ont besoin d'être définis avec des colonnes dans un ordre " -"spécifique (10 colonnes). Cliquez ici pour télécharger un " -"exemple." - -#: admin/importers/tax-rates-importer.php:292 -msgid "" -"Before you can upload your import file, you will need to fix the following " -"error:" -msgstr "" -"Avant de pouvoir transférer votre fichier d'importation, vous devez corriger " -"les erreurs suivantes :" - -#: admin/importers/tax-rates-importer.php:301 -msgid "Choose a file from your computer:" -msgstr "Choisir un fichier depuis votre ordinateur : " - -#: admin/importers/tax-rates-importer.php:307 -msgid "Maximum size: %s" -msgstr "Taille maximum : %s" - -#: admin/importers/tax-rates-importer.php:312 -msgid "OR enter path to file:" -msgstr "OU entrez le chemin du fichier : " - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:319 -msgid "Delimiter" -msgstr "Délimiteur" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:325 -msgid "Upload file and import" -msgstr "Envoyer le fichier et importer" - -# @ woocommerce -#: admin/includes/duplicate_product.php:23 -msgid "No product to duplicate has been supplied!" -msgstr "Aucun produit à dupliquer n'a été fourni !" - -# @ woocommerce -#: admin/includes/duplicate_product.php:43 -msgid "Product creation failed, could not find original product:" -msgstr "" -"Échec de création du produit, impossible de trouver le produit original :" - -# @ woocommerce -#: admin/includes/duplicate_product.php:90 -msgid "(Copy)" -msgstr "(Copier)" - -#: admin/includes/notice-install.php:6 -msgid "" -"Welcome to WooCommerce – You're almost ready to start " -"selling :)" -msgstr "" -"Bienvenue sur WooCommerce – Vous êtes presque prêt à " -"commencer à vendre :-)" - -# @ woocommerce -#: admin/includes/notice-install.php:7 -msgid "Install WooCommerce Pages" -msgstr "Installer les pages WooCommerce" - -# @ woocommerce -#: admin/includes/notice-install.php:7 -msgid "Skip setup" -msgstr "Ignorer la configuration" - -#: admin/includes/notice-theme-support.php:6 -msgid "" -"Your theme does not declare WooCommerce support – if " -"you encounter layout issues please read our integration guide or choose a " -"WooCommerce theme :)" -msgstr "" -"Votre thème ne déclare pas le support WooCommerce – " -"si vous rencontrez des problèmes d'affichage, veuillez lire notre guide " -"d'intégration ou choisir un thème WooCommerce :-)" - -# @ woocommerce -#: admin/includes/notice-theme-support.php:7 -msgid "Theme Integration Guide" -msgstr "Guide d'intégration des thèmes" - -# @ woocommerce -#: admin/includes/notice-theme-support.php:7 -msgid "Hide this notice" -msgstr "Masquer cet avertissement" - -#: admin/includes/notice-update.php:6 -msgid "" -"Data Update Required – We just need to update your " -"install to the latest version" -msgstr "" -"Mise à jour Requise – Nous avons simplement besoin de " -"mettre à jour votre installation pour la dernière version" - -# @ woocommerce -#: admin/includes/notice-update.php:7 -msgid "Run the updater" -msgstr "Lancer l'actualisation" - -#: admin/includes/notice-update.php:12 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Il est fortement recommandé que vous sauvegardiez votre base de données " -"avant de procéder. Etes-vous certain de vouloir lancer la mise à jour " -"maintenant ?" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:49 -#: admin/woocommerce-admin-init.php:885 -msgctxt "slug" -msgid "product-category" -msgstr "categorie-produit" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:50 -#: admin/woocommerce-admin-init.php:898 -msgctxt "slug" -msgid "product-tag" -msgstr "mot-cle-produit" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:58 -msgctxt "slug" -msgid "product" -msgstr "produit" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:179 -#: admin/woocommerce-admin-install.php:207 -msgctxt "page_slug" -msgid "lost-password" -msgstr "lost-password" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:179 -#: admin/woocommerce-admin-install.php:207 -#: admin/woocommerce-admin-status.php:335 -msgid "Lost Password" -msgstr "Mot de passe perdu" - -# @ woocommerce -#: admin/includes/welcome.php:48 -msgid "Welcome to WooCommerce" -msgstr "Bienvenue sur WooCommerce" - -# @ woocommerce -#: admin/includes/welcome.php:135 -msgid "Welcome to WooCommerce %s" -msgstr "Bienvenue sur WooCommerce %s" - -# @ woocommerce -#: admin/includes/welcome.php:140 -msgid "Thanks, all done!" -msgstr "Merci, c'est fait !" - -#: admin/includes/welcome.php:142 -msgid "Thank you for updating to the latest version!" -msgstr "Merci d'avoir actualisé avec la dernière version !" - -#: admin/includes/welcome.php:144 -msgid "Thanks for installing!" -msgstr "Merci de l'installation !" - -#: admin/includes/welcome.php:146 -msgid "" -"%s WooCommerce %s is more powerful, stable, and secure than ever before. We " -"hope you enjoy it." -msgstr "" -"%s WooCommerce %s est plus puissant, stable, et sécurisé qu'il ne l'a jamais " -"été. Nous espérons que vous l'apprécierez." - -# @ woocommerce -#: admin/includes/welcome.php:150 -msgid "Version %s" -msgstr "Version %s" - -# @ woocommerce -#: admin/includes/welcome.php:153 admin/woocommerce-admin-content.php:41 -#: admin/woocommerce-admin-init.php:88 admin/woocommerce-admin-status.php:278 -msgid "Settings" -msgstr "Paramètres" - -#: admin/includes/welcome.php:154 -msgid "Docs" -msgstr "Documents" - -#: admin/includes/welcome.php:161 -msgid "What's New" -msgstr "Quoi de Neuf" - -#: admin/includes/welcome.php:163 -msgid "Credits" -msgstr "Crédits" - -#: admin/includes/welcome.php:186 -msgid "Security in mind" -msgstr "Sécurité en tête" - -#: admin/includes/welcome.php:190 -msgid "Sucuri Safe Plugin" -msgstr "Plugin audité Sucuri" - -#: admin/includes/welcome.php:191 -msgid "" -"You will be happy to learn that WooCommerce has been audited and certified " -"by the Sucuri Security team. Whilst there is not much to be seen visually to " -"understand the amount of work that went into this audit, rest assured that " -"your website is powered by one of the most powerful and stable eCommerce " -"plugins available." -msgstr "" -"Vous serez heureux d'apprendre que WooCommerce a été audité et certifié par " -"l'équipe sécurité de Sucuri. Bien qu'il n'y ai pas grand-chose de visuel " -"pour comprendre la quantité de travail générée par cette vérification, soyez " -"assuré que votre site est propulsé par une des extensions de commerce " -"électronique les plus puissantes et stables disponibles." - -#: admin/includes/welcome.php:194 -msgid "A Smoother Admin Experience" -msgstr "Une expérience administrateur fluide" - -# @ woocommerce -#: admin/includes/welcome.php:200 -msgid "New Product Panel" -msgstr "Nouveau panneau Produit" - -#: admin/includes/welcome.php:201 -msgid "" -"We have revised the product data panel making it cleaner, more streamlined, " -"and more logical. Adding products is a breeze!" -msgstr "" -"Nous avons revu le panneau de saisie des produits pour le rendre plus clair, " -"plus simple et plus logique. Ajouter des produits est un jeu d'enfant !" - -#: admin/includes/welcome.php:206 -msgid "Nicer Order Screens" -msgstr "De plus jolis écrans de commande" - -#: admin/includes/welcome.php:207 -msgid "" -"Order pages have had a cleanup, with a more easily scannable interface. We " -"particularly like the new status icons!" -msgstr "" -"Les pages de commande ont subi un lifting, avec une interface plus " -"compréhensible. Nous aimons particulièrement les nouvelles icônes d'état !" - -#: admin/includes/welcome.php:212 -msgid "Multi-Download Support" -msgstr "Support du multi-téléchargement" - -#: admin/includes/welcome.php:213 -msgid "" -"Products can have multiple downloadable files - purchasers will get access " -"to all the files added." -msgstr "" -"Les produits peuvent avoir plusieurs fichiers téléchargeables - les " -"acheteurs auront accès à tous les fichiers ajoutés." - -#: admin/includes/welcome.php:218 -msgid "Less Taxing Taxes" -msgstr "Moins de taxation de Taxes" - -#: admin/includes/welcome.php:224 -msgid "New Tax Input Panel" -msgstr "Nouveau panneau de saisie des Taxes" - -#: admin/includes/welcome.php:225 -msgid "" -"The tax input pages have been streamlined to make inputting taxes simpler - " -"adding multiple taxes for a single jurisdiction is now much easier using the " -"priority system. There is also CSV import/export support." -msgstr "" -"Les pages de saisie de taxes ont été simplifiées - l'ajout de taxes " -"multiples pour une seule juridiction est maintenant beaucoup plus facile " -"d'utilisation en utilisant le système de priorités. Il y a aussi le support " -"d'importation / exportation au format CSV." - -# @ woocommerce -#: admin/includes/welcome.php:229 -msgid "Improved Tax Options" -msgstr "Amélioration des Options de Taxes" - -#: admin/includes/welcome.php:230 -msgid "" -"As requested by some users, we now support taxing the billing address " -"instead of shipping (optional), and we allow you to choose which tax class " -"applies to shipping." -msgstr "" -"Comme demandé par certains utilisateurs, nous supportons désormais la " -"taxation de l'adresse de facturation au lieu de celle de livraison (en " -"option), et nous vous permettons de choisir la classe de taxe qui s'applique " -"à l'expédition." - -#: admin/includes/welcome.php:235 -msgid "Product Listing Improvements Customers Will Love" -msgstr "Améliorations de l'affichage des produits, les clients apprécierons" - -# @ woocommerce -#: admin/includes/welcome.php:241 -msgid "New Sorting Options" -msgstr "Nouvelles Options de Tri" - -#: admin/includes/welcome.php:242 -msgid "Customers can now sort products by popularity and ratings." -msgstr "" -"Les clients peuvent maintenant classer les produits par popularité et votes." - -#: admin/includes/welcome.php:247 -msgid "Better Pagination and Result Counts" -msgstr "Meilleure Pagination et Décompte des Résultats" - -#: admin/includes/welcome.php:248 -msgid "" -"Numbered pagination has been added to core, and we show the number of " -"results found above the listings." -msgstr "" -"La pagination numérotée a été ajouté au noyau, et nous affichons le nombre " -"de résultats trouvés au-dessus des produits." - -#: admin/includes/welcome.php:253 -msgid "Inline Star Rating Display" -msgstr "Affichage en ligne de la notation par étoiles" - -#: admin/includes/welcome.php:254 -msgid "" -"We have added star ratings to the catalog which are pulled from reviews." -msgstr "" -"Nous avons ajouté l'attribution d'étoiles au fichier qui est généré depuis " -"les avis." - -#: admin/includes/welcome.php:262 -msgid "Under the Hood" -msgstr "Sous le capot" - -# @ woocommerce -#: admin/includes/welcome.php:266 -msgid "New product classes" -msgstr "Nouvelles classes produit" - -#: admin/includes/welcome.php:267 -msgid "" -"The product classes have been rewritten and are now factory based. Much more " -"extendable, and easier to query products using the new get_product() function." -msgstr "" -"Les classes de produits ont été réécrites. Elles sont beaucoup plus " -"extensibles et il est plus facile de requêter les produits à l'aide de la " -"nouvelle fonction get_product()." - -#: admin/includes/welcome.php:271 -msgid "Capability overhaul" -msgstr "Permissions révisées" - -#: admin/includes/welcome.php:272 -msgid "" -"More granular capabilities for admin/shop manager roles covering products, " -"orders and coupons." -msgstr "" -"Des permissions plus graduelles pour les rôles admin/manager boutique " -"concernant les produits, les commandes et les bons de réductions." - -#: admin/includes/welcome.php:276 -msgid "API Improvements" -msgstr "Améliorations de l'API" - -#: admin/includes/welcome.php:277 -msgid "" -"WC-API now has real endpoints, and we've optimised the gateways " -"API significantly by only loading gateways when needed." -msgstr "" -"WC-API a maintenant de réelles raisons d'être, et nous avons " -"optimisé l'API des passerelles de manière significative en ne chargeant les " -"passerelles qu'en cas de besoin." - -#: admin/includes/welcome.php:283 -msgid "Cache-friendly cart widgets" -msgstr "Widgets panier compatible avec le cache" - -#: admin/includes/welcome.php:284 -msgid "" -"Cart widgets and other \"fragments\" are now pulled in via AJAX - this works " -"wonders with static page caching." -msgstr "" -"Les widgets panier et autres \"fragments \" sont désormais gérés via AJAX - " -"cela fonctionne à merveille avec la mise en cache de pages statiques." - -# @ woocommerce -#: admin/includes/welcome.php:288 -msgid "Session handling" -msgstr "Gestion des sessions" - -#: admin/includes/welcome.php:289 -msgid "" -"PHP SESSIONS have been a problem for many users in the past, so we've " -"developed our own handler using cookies and options to make these more " -"reliable." -msgstr "" -"Les SESSIONS PHP ont été un problème pour de nombreux utilisateurs dans le " -"passé, nous avons développé notre propre gestionnaire de cookies et les " -"options pour les rendre plus fiables." - -#: admin/includes/welcome.php:293 -msgid "Retina Ready" -msgstr "Compatible avec les écrans Retina" - -#: admin/includes/welcome.php:294 -msgid "All graphics within WC have been optimised for HiDPI displays." -msgstr "Tous les graphiques dans WC ont été optimisé pour les écrans HiDPI." - -#: admin/includes/welcome.php:301 -msgid "Better stock handling" -msgstr "Meilleure gestion des stocks" - -#: admin/includes/welcome.php:302 -msgid "" -"We have added an option to hold stock for unpaid orders (defaults to " -"60mins). When this time limit is reached, and the order is not paid for, " -"stock is released and the order is cancelled." -msgstr "" -"Nous avons ajouté une option pour maintenir le stock pour les commandes " -"impayées (par défaut pour 60 min). Quand ce délai est atteint, et que la " -"commande n'est pas payée, le stock est rétabli et la commande est annulée." - -#: admin/includes/welcome.php:306 -msgid "Improved Line-item storage" -msgstr "Amélioration du stockage de la ligne-article" - -#: admin/includes/welcome.php:307 -msgid "" -"We have changed how order items get stored making them easier (and faster) " -"to access for reporting. Order items are no longer serialised within an " -"order - they are stored within their own table." -msgstr "" -"Nous avons changé la façon dont les articles de commandes sont stockés, ce " -"qui les rend plus facile (et plus rapide) d'accès pour des rapports. Les " -"articles de commande ne sont plus sérialisés dans une commande - ils sont " -"stockés dans leur propre table." - -#: admin/includes/welcome.php:311 -msgid "Autoload" -msgstr "Chargement auto" - -#: admin/includes/welcome.php:312 -msgid "" -"We have setup autoloading for classes - this has dramatically reduced memory " -"usage in 2.0." -msgstr "" -"Nous avons paramétré le chargement automatique pour les classes - ceci a " -"considérablement réduit l'usage de la mémoire dans la version 2.0." - -# @ woocommerce -#: admin/includes/welcome.php:319 -msgid "Go to WooCommerce Settings" -msgstr "Aller aux Paramètres WooCommerce" - -#: admin/includes/welcome.php:337 -msgid "" -"WooCommerce is developed and maintained by a worldwide team of passionate " -"individuals and backed by an awesome developer community. Want to see your " -"name? Contribute to WooCommerce." -msgstr "" -"WooCommerce est développé et maintenu par une équipe de passionnés dans le " -"monde entier et soutenu par une communauté de développeurs impressionnante. " -"Vous voulez voir votre nom ? Contribuez à WooCommerce." - -# @ woocommerce -#: admin/includes/welcome.php:363 -msgid "View %s" -msgstr "Voir %s" - -# @ woocommerce -#: admin/post-types/product.php:31 -msgid "Make a duplicate from this product" -msgstr "Dupliquer ce produit" - -# @ woocommerce -#: admin/post-types/product.php:32 -msgid "Duplicate" -msgstr "Dupliquer" - -# @ woocommerce -#: admin/post-types/product.php:61 -msgid "Copy to a new draft" -msgstr "Copier vers un nouveau brouillon" - -# @ woocommerce -#: admin/post-types/product.php:86 admin/woocommerce-admin-taxonomies.php:297 -msgid "Image" -msgstr "Image" - -# @ woocommerce -# @ woocommerce -#: admin/post-types/product.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:376 -#: admin/post-types/writepanels/writepanel-product_data.php:470 -#: admin/woocommerce-admin-attributes.php:233 -#: admin/woocommerce-admin-attributes.php:269 -#: admin/woocommerce-admin-attributes.php:307 -#: admin/woocommerce-admin-attributes.php:330 -#: admin/woocommerce-admin-attributes.php:374 -#: admin/woocommerce-admin-attributes.php:399 -#: admin/woocommerce-admin-init.php:437 -msgid "Name" -msgstr "Nom" - -# @ woocommerce -#: admin/post-types/product.php:91 admin/post-types/product.php:557 -#: admin/post-types/writepanels/variation-admin-html.php:52 -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#: admin/woocommerce-admin-reports.php:2099 -#: admin/woocommerce-admin-reports.php:2135 -msgid "SKU" -msgstr "UGS" - -# @ woocommerce -#: admin/post-types/product.php:94 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:83 -#: admin/woocommerce-admin-content.php:63 -#: admin/woocommerce-admin-reports.php:90 -msgid "Stock" -msgstr "Stock" - -# @ woocommerce -#: admin/post-types/product.php:96 admin/post-types/product.php:568 -#: admin/post-types/product.php:789 admin/woocommerce-admin-functions.php:202 -msgid "Price" -msgstr "Prix" - -# @ woocommerce -#: admin/post-types/product.php:98 -msgid "Categories" -msgstr "Catégories" - -# @ woocommerce -#: admin/post-types/product.php:99 -msgid "Tags" -msgstr "Mots-Clés" - -# @ woocommerce -#: admin/post-types/product.php:100 admin/post-types/product.php:632 -#: admin/post-types/product.php:906 -#: admin/post-types/writepanels/writepanel-product_data.php:1058 -#: admin/woocommerce-admin-init.php:450 -msgid "Featured" -msgstr "Mis en avant" - -# @ woocommerce -#: admin/post-types/product.php:101 admin/woocommerce-admin-attributes.php:251 -#: admin/woocommerce-admin-attributes.php:309 -#: admin/woocommerce-admin-attributes.php:386 -msgid "Type" -msgstr "Type" - -# @ woocommerce -#: admin/post-types/product.php:102 admin/post-types/shop_order.php:50 -msgid "Date" -msgstr "Date" - -#: admin/post-types/product.php:151 -msgid "Edit this item" -msgstr "Modifier cet article" - -# @ woocommerce -#: admin/post-types/product.php:151 -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#: admin/post-types/writepanels/writepanel-order_data.php:387 -#: admin/post-types/writepanels/writepanel-product_data.php:1061 -#: admin/woocommerce-admin-attributes.php:323 -msgid "Edit" -msgstr "Modifier" - -#: admin/post-types/product.php:152 -msgid "Edit this item inline" -msgstr "Modifier cet article en ligne" - -#: admin/post-types/product.php:152 -msgid "Quick Edit" -msgstr "Modification rapide" - -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore this item from the Trash" -msgstr "Récupérer cet élément de la Corbeille" - -# @ woocommerce -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore" -msgstr "Restaurer" - -# @ woocommerce -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Move this item to the Trash" -msgstr "Mettre cet article à la corbeille" - -# @ woocommerce -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Trash" -msgstr "Corbeille" - -# @ woocommerce -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -msgid "Delete this item permanently" -msgstr "Supprimer cet article définitivement" - -# @ woocommerce -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -#: admin/post-types/writepanels/writepanel-order_data.php:463 -msgid "Delete Permanently" -msgstr "Supprimer Définitivement" - -#: admin/post-types/product.php:165 -msgid "Preview “%s”" -msgstr "Prévisualiser “%s”" - -# @ woocommerce -#: admin/post-types/product.php:165 -msgid "Preview" -msgstr "Aperçu" - -#: admin/post-types/product.php:167 -msgid "View “%s”" -msgstr "Voir “%s”" - -# @ woocommerce -#: admin/post-types/product.php:167 admin/post-types/shop_order.php:171 -msgid "View" -msgstr "Voir" - -# @ woocommerce -#: admin/post-types/product.php:214 -msgid "Grouped" -msgstr "Groupé" - -#: admin/post-types/product.php:216 -msgid "External/Affiliate" -msgstr "Externe/Affiliation" - -# @ woocommerce -#: admin/post-types/product.php:220 admin/post-types/product.php:407 -#: admin/post-types/writepanels/variation-admin-html.php:174 -#: admin/post-types/writepanels/writepanel-product_data.php:52 -msgid "Virtual" -msgstr "Virtuel" - -# @ woocommerce -#: admin/post-types/product.php:222 admin/post-types/product.php:403 -#: admin/post-types/writepanels/variation-admin-html.php:172 -#: admin/post-types/writepanels/writepanel-product_data.php:58 -msgid "Downloadable" -msgstr "Téléchargeable" - -# @ woocommerce -#: admin/post-types/product.php:224 -msgid "Simple" -msgstr "Simple" - -# @ woocommerce -#: admin/post-types/product.php:228 admin/post-types/product.php:387 -msgid "Variable" -msgstr "Variable" - -# @ woocommerce -#: admin/post-types/product.php:251 -msgid "Toggle featured" -msgstr "Basculer en mise en avant" - -#: admin/post-types/product.php:253 -msgid "yes" -msgstr "oui" - -#: admin/post-types/product.php:255 -msgid "no" -msgstr "non" - -# @ woocommerce -#: admin/post-types/product.php:262 admin/post-types/product.php:641 -#: admin/post-types/product.php:930 -#: admin/post-types/writepanels/writepanel-product_data.php:231 -msgid "In stock" -msgstr "En stock" - -# @ woocommerce -#: admin/post-types/product.php:264 admin/post-types/product.php:642 -#: admin/post-types/product.php:931 -#: admin/post-types/writepanels/writepanel-product_data.php:232 -#: admin/woocommerce-admin-reports.php:2119 -msgid "Out of stock" -msgstr "Produit épuisé" - -# @ woocommerce -#: admin/post-types/product.php:373 -msgid "Show all product types" -msgstr "Afficher tous les types de produits" - -# @ woocommerce -#: admin/post-types/product.php:381 -#: admin/post-types/writepanels/writepanel-product_data.php:39 -msgid "Grouped product" -msgstr "Produits groupés" - -#: admin/post-types/product.php:383 -#: admin/post-types/writepanels/writepanel-product_data.php:40 -msgid "External/Affiliate product" -msgstr "Produit externe/affiliation" - -# @ woocommerce -#: admin/post-types/product.php:385 -#: admin/post-types/writepanels/writepanel-product_data.php:38 -msgid "Simple product" -msgstr "Produit simple" - -# @ woocommerce -#: admin/post-types/product.php:399 -msgid "Show all sub-types" -msgstr "Afficher tous les sous-types" - -# @ woocommerce -#: admin/post-types/product.php:520 -msgid "[%s with SKU of %s]" -msgstr "[%s avec UGS sur %s]" - -# @ woocommerce -#: admin/post-types/product.php:526 -msgid "[%s with ID of %d]" -msgstr "[%s avec ID sur %d]" - -# @ woocommerce -#: admin/post-types/product.php:552 admin/post-types/product.php:783 -#: admin/post-types/writepanels/writepanels-init.php:46 -#: admin/settings/settings-init.php:508 -msgid "Product Data" -msgstr "Données Produit" - -# @ woocommerce -#: admin/post-types/product.php:570 -msgid "Regular price" -msgstr "Prix régulier" - -# @ woocommerce -#: admin/post-types/product.php:575 admin/post-types/product.php:813 -msgid "Sale" -msgstr "Vente" - -# @ woocommerce -#: admin/post-types/product.php:577 -msgid "Sale price" -msgstr "Prix de vente" - -# @ woocommerce -#: admin/post-types/product.php:588 admin/post-types/product.php:839 -#: admin/post-types/writepanels/variation-admin-html.php:96 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:273 -msgid "Weight" -msgstr "Poids" - -#: admin/post-types/product.php:599 admin/post-types/product.php:863 -msgid "L/W/H" -msgstr "L/l/H" - -# @ woocommerce -#: admin/post-types/product.php:601 admin/post-types/product.php:879 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:85 -#: admin/post-types/writepanels/writepanel-product_data.php:286 -msgid "Length" -msgstr "Longueur" - -# @ woocommerce -# @ woocommerce -#: admin/post-types/product.php:602 admin/post-types/product.php:880 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:86 -#: admin/post-types/writepanels/writepanel-product_data.php:287 -#: admin/woocommerce-admin-settings.php:797 -msgid "Width" -msgstr "Largeur" - -# @ woocommerce -# @ woocommerce -#: admin/post-types/product.php:603 admin/post-types/product.php:881 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:87 -#: admin/post-types/writepanels/writepanel-product_data.php:288 -#: admin/woocommerce-admin-settings.php:799 -msgid "Height" -msgstr "Hauteur" - -# @ woocommerce -#: admin/post-types/product.php:613 admin/post-types/product.php:887 -msgid "Visibility" -msgstr "Visibilité" - -# @ woocommerce -#: admin/post-types/product.php:618 admin/post-types/product.php:893 -msgid "Catalog & search" -msgstr "Catalogue & recherche" - -# @ woocommerce -#: admin/post-types/product.php:619 admin/post-types/product.php:894 -#: admin/post-types/writepanels/writepanel-product_data.php:1047 -#: admin/woocommerce-admin-content.php:46 -#: admin/woocommerce-admin-settings.php:183 -msgid "Catalog" -msgstr "Catalogue" - -# @ woocommerce -#: admin/post-types/product.php:620 admin/post-types/product.php:895 -#: admin/post-types/writepanels/writepanel-product_data.php:1048 -msgid "Search" -msgstr "Recherche" - -# @ woocommerce -#: admin/post-types/product.php:621 admin/post-types/product.php:896 -#: admin/post-types/writepanels/writepanel-product_data.php:1049 -msgid "Hidden" -msgstr "Caché" - -# @ woocommerce -#: admin/post-types/product.php:636 admin/post-types/product.php:924 -msgid "In stock?" -msgstr "En Stock ?" - -# @ woocommerce -#: admin/post-types/product.php:657 admin/post-types/product.php:942 -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Manage stock?" -msgstr "Gérer les stocks?" - -# @ woocommerce -#: admin/post-types/product.php:661 admin/post-types/product.php:961 -#: admin/post-types/product.php:977 -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "Stock Qty" -msgstr "Qté Stock" - -#: admin/post-types/product.php:794 admin/post-types/product.php:818 -#: admin/post-types/product.php:844 admin/post-types/product.php:868 -#: admin/post-types/product.php:892 admin/post-types/product.php:911 -#: admin/post-types/product.php:929 admin/post-types/product.php:947 -#: admin/post-types/product.php:966 -msgid "— No Change —" -msgstr "— Aucun Changement —" - -# @ woocommerce -#: admin/post-types/product.php:795 admin/post-types/product.php:819 -#: admin/post-types/product.php:845 admin/post-types/product.php:869 -#: admin/post-types/product.php:967 -msgid "Change to:" -msgstr "Changer à :" - -#: admin/post-types/product.php:796 admin/post-types/product.php:820 -msgid "Increase by (fixed amount or %):" -msgstr "Augmenter par (montant fixe ou %) :" - -#: admin/post-types/product.php:797 admin/post-types/product.php:821 -msgid "Decrease by (fixed amount or %):" -msgstr "Diminuer par (montant fixe ou %) : " - -# @ woocommerce -#: admin/post-types/product.php:807 admin/post-types/product.php:832 -msgid "Enter price" -msgstr "Saisir le prix" - -#: admin/post-types/product.php:822 -msgid "Decrease regular price by (fixed amount or %):" -msgstr "Diminuer le prix régulier par (montant fixe ou %) :" - -#: admin/post-types/product.php:912 admin/post-types/product.php:948 -#: admin/post-types/shop_order.php:190 admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:286 -msgid "Yes" -msgstr "Oui" - -# @ woocommerce -#: admin/post-types/product.php:913 admin/post-types/product.php:949 -#: admin/post-types/shop_order.php:192 admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:286 -msgid "No" -msgstr "Non" - -# @ woocommerce -#: admin/post-types/product.php:1183 -msgid "Sort Products" -msgstr "Classer les produits" - -# @ woocommerce -#: admin/post-types/product.php:1222 -msgid "Insert into product" -msgstr "Insérer dans le produit" - -# @ woocommerce -#: admin/post-types/product.php:1223 -msgid "Uploaded to this product" -msgstr "Transférer à ce produit" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:25 -msgid "Code" -msgstr "Code" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:26 -msgid "Coupon type" -msgstr "Type de Code Promo" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:27 -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Coupon amount" -msgstr "Montant du Code Promo" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:28 -msgid "Description" -msgstr "Description" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:29 -msgid "Product IDs" -msgstr "ID Produits" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:30 -msgid "Usage / Limit" -msgstr "Usage / Limite" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:31 -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "Expiry date" -msgstr "Date d'expiration" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:56 -msgid "Edit coupon" -msgstr "Modifier code promo" - -#: admin/post-types/shop_coupon.php:114 -msgid "%s / %s" -msgstr "%s / %s" - -#: admin/post-types/shop_coupon.php:116 -msgid "%s / ∞" -msgstr "%s / ∞" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:149 -msgid "Show all types" -msgstr "Afficher tous les types" - -# @ woocommerce -#: admin/post-types/shop_order.php:43 -#: admin/settings/settings-payment-gateways.php:29 -#: admin/settings/settings-shipping-methods.php:31 -msgid "Status" -msgstr "État" - -# @ woocommerce -#: admin/post-types/shop_order.php:44 -msgid "Order" -msgstr "Commande" - -# @ woocommerce -#: admin/post-types/shop_order.php:45 -msgid "Billing" -msgstr "Facturation" - -# @ woocommerce -#: admin/post-types/shop_order.php:46 -#: admin/post-types/writepanels/writepanel-order_data.php:539 -#: admin/post-types/writepanels/writepanel-product_data.php:81 -#: admin/settings/settings-tax-rates.php:52 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-content.php:49 -#: admin/woocommerce-admin-settings.php:187 -msgid "Shipping" -msgstr "Livraison" - -# @ woocommerce -#: admin/post-types/shop_order.php:47 -msgid "Order Total" -msgstr "Montant" - -# @ woocommerce -#: admin/post-types/shop_order.php:48 -#: admin/post-types/writepanels/writepanels-init.php:71 -msgid "Order Notes" -msgstr "Notes de la commande" - -# @ woocommerce -#: admin/post-types/shop_order.php:49 -msgid "Customer Notes" -msgstr "Notes client" - -# @ woocommerce -#: admin/post-types/shop_order.php:51 -#: admin/post-types/writepanels/writepanel-order_data.php:386 -#: admin/post-types/writepanels/writepanel-order_data.php:433 -msgid "Actions" -msgstr "Actions" - -# @ woocommerce -#: admin/post-types/shop_order.php:95 -#: admin/post-types/writepanels/writepanel-order_data.php:93 -msgid "Guest" -msgstr "Invité" - -# @ woocommerce -#: admin/post-types/shop_order.php:98 -msgid "Order %s" -msgstr "Commande %s" - -#: admin/post-types/shop_order.php:98 -msgid "made by" -msgstr "passé par" - -# @ woocommerce -#: admin/post-types/shop_order.php:101 -msgid "Email:" -msgstr "Email :" - -# @ woocommerce -#: admin/post-types/shop_order.php:104 -msgid "Tel:" -msgstr "Tél. " - -# @ woocommerce -#: admin/post-types/shop_order.php:114 admin/post-types/shop_order.php:123 -msgid "Via" -msgstr "Par" - -# @ woocommerce -#: admin/post-types/shop_order.php:131 -msgid "Unpublished" -msgstr "Non publié" - -# @ woocommerce -#: admin/post-types/shop_order.php:133 -msgid "Y/m/d g:i:s A" -msgstr "d/m/Y G:i:s" - -# "il y a" déplacé dans la chaine parente car en anglais "ago" est placé après la durée. -#: admin/post-types/shop_order.php:139 -msgid "%s ago" -msgstr "%s" - -# @ woocommerce -#: admin/post-types/shop_order.php:141 -msgid "Y/m/d" -msgstr "d/m/Y" - -# @ woocommerce -#: admin/post-types/shop_order.php:158 -#: admin/woocommerce-admin-dashboard.php:176 -msgid "Processing" -msgstr "En cours" - -# @ woocommerce -#: admin/post-types/shop_order.php:165 -msgid "Complete" -msgstr "Expédier" - -# @ woocommerce -#: admin/post-types/shop_order.php:282 -msgid "Show all statuses" -msgstr "Afficher tous les états" - -# @ woocommerce -#: admin/post-types/shop_order.php:301 admin/post-types/shop_order.php:326 -msgid "Show all customers" -msgstr "Afficher tous les clients" - -#: admin/post-types/writepanels/order-download-permission-html.php:6 -msgid "Revoke Access" -msgstr "Révoquer l'Accès" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:7 -#: admin/post-types/writepanels/variation-admin-html.php:7 -#: admin/post-types/writepanels/writepanel-product_data.php:369 -#: admin/post-types/writepanels/writepanel-product_data.php:463 -#: admin/woocommerce-admin-init.php:439 -msgid "Click to toggle" -msgstr "Cliquez ici pour basculer" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -msgid "File %d: %s" -msgstr "Fichier %d : %s" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:9 -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "Téléchargé %s fois" -msgstr[1] "Téléchargé %s fois" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:16 -msgid "Downloads Remaining" -msgstr "Téléchargements restant" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:19 -#: admin/post-types/writepanels/variation-admin-html.php:149 -#: admin/post-types/writepanels/variation-admin-html.php:157 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Unlimited" -msgstr "Illimitée" - -#: admin/post-types/writepanels/order-download-permission-html.php:22 -msgid "Access Expires" -msgstr "Accès Expiré" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:23 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Never" -msgstr "Jamais" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:10 -msgid "Fee Name" -msgstr "Nom des frais" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:17 -#: admin/post-types/writepanels/order-item-html.php:89 -msgid "Tax class" -msgstr "Classe taxe" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:19 -#: admin/post-types/writepanels/order-tax-html.php:8 -#: admin/post-types/writepanels/writepanel-order_data.php:561 -#: admin/post-types/writepanels/writepanel-order_data.php:666 -#: admin/woocommerce-admin-reports.php:1658 -#: admin/woocommerce-admin-reports.php:2671 -#: admin/woocommerce-admin-reports.php:2680 -#: admin/woocommerce-admin-users.php:90 admin/woocommerce-admin-users.php:112 -msgid "N/A" -msgstr "N/A" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:20 -#: admin/post-types/writepanels/writepanel-product_data.php:179 -msgid "Taxable" -msgstr "Taxable" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:25 -#: admin/post-types/writepanels/order-item-html.php:96 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:54 -#: admin/post-types/writepanels/writepanel-product_data.php:186 -#: admin/settings/settings-init.php:972 -#: admin/settings/settings-tax-rates.php:29 -#: admin/woocommerce-admin-settings.php:228 -msgid "Standard" -msgstr "Standard" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:43 -#: admin/post-types/writepanels/order-item-html.php:115 -#: admin/woocommerce-admin-reports.php:1562 -#: admin/woocommerce-admin-reports.php:1615 -#: admin/woocommerce-admin-reports.php:2386 -#: admin/woocommerce-admin-reports.php:2555 -#: admin/woocommerce-admin-reports.php:2633 -msgid "Total" -msgstr "Total" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:10 -msgid "Product ID:" -msgstr "ID Produit :" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:13 -msgid "Variation ID:" -msgstr "ID Variation :" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:16 -msgid "Product SKU:" -msgstr "UGS du produit :" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:44 -msgid "Add meta" -msgstr "Ajouter meta" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:117 -msgid "Subtotal" -msgstr "Sous-total" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:6 -msgid "Tax Rate:" -msgstr "Taux de taxe :" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:16 -#: admin/post-types/writepanels/writepanel-order_data.php:630 -msgid "Sales Tax:" -msgstr "Taxe des ventes :" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:20 -#: admin/post-types/writepanels/writepanel-order_data.php:638 -msgid "Shipping Tax:" -msgstr "Taxe livraison :" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:6 -#: admin/post-types/writepanels/writepanel-product_data.php:368 -#: admin/post-types/writepanels/writepanel-product_data.php:462 -#: admin/woocommerce-admin-init.php:438 -msgid "Remove" -msgstr "Enlever" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:20 -msgid "Any" -msgstr "Toute" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:52 -msgid "" -"Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "" -"Entrez une référence pour cette variation ou laissez vide pour utiliser la " -"référence du produit parent." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:63 -msgid "Stock Qty:" -msgstr "Qté Stock :" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:63 -msgid "" -"Enter a quantity to enable stock management at variation level, or leave " -"blank to use the parent product's options." -msgstr "" -"Entrez une quantité pour activer la gestion de stock au niveau de la " -"variation, ou laissez vide pour utiliser les options du produit parent." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:72 -msgid "Regular Price:" -msgstr "Prix régulier :" - -#: admin/post-types/writepanels/variation-admin-html.php:73 -msgid "Variation price (required)" -msgstr "Variation prix (requis)" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:76 -msgid "Sale Price:" -msgstr "Prix de vente :" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:76 -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Schedule" -msgstr "Planifier" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:76 -msgid "Cancel schedule" -msgstr "Annuler la planification" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:83 -msgid "Sale start date:" -msgstr "Début de vente :" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:136 -msgctxt "placeholder" -msgid "From…" -msgstr "Du…" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:87 -msgid "Sale end date:" -msgstr "Fin de vente :" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:137 -msgctxt "placeholder" -msgid "To…" -msgstr "Au…" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:96 -msgid "" -"Enter a weight for this variation or leave blank to use the parent product " -"weight." -msgstr "" -"Saisissez un poids pour cette variation ou laissez vide pour utiliser le " -"poids de produit parent." - -#: admin/post-types/writepanels/variation-admin-html.php:104 -msgid "Dimensions (L×W×H)" -msgstr "Dimensions (L×Larg.×H)" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:115 -msgid "Shipping class:" -msgstr "Classe de livraison :" - -#: admin/post-types/writepanels/variation-admin-html.php:119 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:53 -msgid "Same as parent" -msgstr "Identique au parent" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:130 -msgid "Tax class:" -msgstr "Classe taxe : " - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:141 -msgid "File paths:" -msgstr "Chemins fichier :" - -#: admin/post-types/writepanels/variation-admin-html.php:141 -msgid "" -"Enter one or more File Paths, one per line, to make this variation a " -"downloadable product, or leave blank." -msgstr "" -"Saisissez un ou plusieurs chemins de fichier, un par ligne, pour faire de " -"cette variation un produit téléchargeable, ou laissez vide." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:142 -#: admin/post-types/writepanels/writepanel-product_data.php:153 -msgid "File paths/URLs, one per line" -msgstr "URL fichier, un par ligne" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:143 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Choose a file" -msgstr "Choisir un fichier" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:143 -msgid "Upload" -msgstr "Envoyer un fichier" - -#: admin/post-types/writepanels/variation-admin-html.php:143 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Insert file URL" -msgstr "Insérer l'URL du fichier" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:148 -msgid "Download Limit:" -msgstr "Limite téléchargement :" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:148 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Leave blank for unlimited re-downloads." -msgstr "Laissez vide pour les téléchargements illimités." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:156 -msgid "Download Expiry:" -msgstr "Expiration du téléchargement :" - -#: admin/post-types/writepanels/variation-admin-html.php:156 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "" -"Enter the number of days before a download link expires, or leave blank." -msgstr "" -"Saisissez le nombre de jours avant qu'un lien de télécharchement n'expire, " -"ou laisser vide." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:170 -msgid "Enabled" -msgstr "Activé" - -#: admin/post-types/writepanels/variation-admin-html.php:172 -msgid "" -"Enable this option if access is given to a downloadable file upon purchase " -"of a product" -msgstr "" -"Activer cette option si l'accès est donné à un fichier téléchargeable à " -"l'achat d'un produit" - -#: admin/post-types/writepanels/variation-admin-html.php:174 -msgid "" -"Enable this option if a product is not shipped or there is no shipping cost" -msgstr "" -"Activer cette option si un produit n'est pas expédié ou s'il n'y a pas de " -"frais de port" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Coupon description" -msgstr "Description code promo" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Optionally enter a description for this coupon for your reference." -msgstr "" -"Optionnellement entrez une description pour ce code promo pour usage interne." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:42 -msgid "Discount type" -msgstr "Type de remise" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Value of the coupon." -msgstr "Valeur du code promo." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "Enable free shipping" -msgstr "Activer la livraison gratuite" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "" -"Check this box if the coupon grants free shipping. The free " -"shipping method must be enabled with the \"must use coupon\" setting " -"checked." -msgstr "" -"Cocher cette case si le code promo active la gratuité de livraison. La livraison gratuite doit être activée avec le paramètre " -"\"doit utiliser un code promo\" coché." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "Individual use" -msgstr "Utilisation individuelle" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "" -"Check this box if the coupon cannot be used in conjunction with other " -"coupons." -msgstr "" -"Cochez cette case si le code promo ne peut être utilisé conjointement avec " -"d'autres codes promo." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "Apply before tax" -msgstr "Appliquer avant la taxe" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "" -"Check this box if the coupon should be applied before calculating cart tax." -msgstr "" -"Cochez cette case si le code promo doit être appliqué avant le calcul de " -"taxe du panier." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "Exclude sale items" -msgstr "Exclure les articles en promo" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "" -"Check this box if the coupon should not apply to items on sale. Per-item " -"coupons will only work if the item is not on sale. Per-cart coupons will " -"only work if there are no sale items in the cart." -msgstr "" -"Cochez cette case si le code promo ne doit pas être appliqué aux articles en " -"promo. Les codes promo par article fonctionneront uniquement si l'article " -"n'est pas en promo. Les codes promos par panier ne fonctionneront uniquement " -"si il n'y a pas d'article en promo dans le panier." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "Minimum amount" -msgstr "Montant minimum" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "No minimum" -msgstr "Aucun minimum" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "" -"This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "" -"Ce champ vous permet de définir le sous-total minimum nécessaire pour " -"utiliser le code promo." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:74 -#: admin/woocommerce-admin-taxonomies.php:28 -#: admin/woocommerce-admin-taxonomies.php:122 -msgid "Products" -msgstr "Produits" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:75 -#: admin/post-types/writepanels/writepanel-order_data.php:400 -#: admin/post-types/writepanels/writepanel-product_data.php:523 -#: admin/post-types/writepanels/writepanel-product_data.php:540 -#: admin/woocommerce-admin-reports.php:1245 -msgid "Search for a product…" -msgstr "Recherche d'un produit..." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:89 -msgid "" -"Products which need to be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are discounted." -msgstr "" -"Produits qui doivent être dans le panier pour utiliser ce code promo, pour " -"les \"Produits Remisés\", les produits qui sont remisés." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:94 -msgid "Exclude products" -msgstr "Exclure les produits" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:95 -msgid "Search for a product…" -msgstr "Recherche pour un produit..." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:109 -msgid "" -"Products which must not be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are not discounted." -msgstr "" -"Produits qui ne doivent pas être dans le panier pour utiliser ce code promo " -"ou, pour les \"Produits Remisés\", les produits qui ne sont pas remisés." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:116 -msgid "Product categories" -msgstr "Catégories de produits" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:117 -msgid "Any category" -msgstr "Toutes les catégories" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:125 -msgid "" -"A product must be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will be discounted." -msgstr "" -"Un produit doit être dans cette catégorie pour que le code promo reste " -"valide ou, pour les \"Produits Remisés\", les produits dans ces catégories " -"qui sont remisés." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:130 -msgid "Exclude categories" -msgstr "Exclure les catégories" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:131 -msgid "No categories" -msgstr "Aucune catégorie" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:139 -msgid "" -"Product must not be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will not be discounted." -msgstr "" -"Produit ne devant pas être dans cette catégorie pour que le code promo reste " -"valide ou, pour les \"Produits Remisés\", les produits dans ces catégories " -"qui ne sont pas remisés." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "Email restrictions" -msgstr "Restrictions d'email" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "No restrictions" -msgstr "Aucune restriction" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "" -"List of emails to check against the customer's billing email when an order " -"is placed." -msgstr "" -"Liste des e-mails pour vérifier l'email de facturation du client lorsqu'une " -"commande est passée." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "Usage limit" -msgstr "Limite d'utilisation" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "Utilisation illimitée" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "How many times this coupon can be used before it is void." -msgstr "" -"Combien de fois ce code promo peut il être utilisé avant de ne plus être " -"valide." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgctxt "placeholder" -msgid "Never expire" -msgstr "N'expire jamais" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "The date this coupon will expire, YYYY-MM-DD." -msgstr "La date d'expiration du code promo, AAAA-MM-JJ." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:195 -msgid "" -"Coupon code already exists - customers will use the latest coupon with this " -"code." -msgstr "" -"Le code promo existe déjà - les clients utiliserons le dernier code promo " -"correspondant." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:59 -msgid "Order Details" -msgstr "Détails Commande" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:62 -msgid "Order number" -msgstr "Numéro de commande" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:67 -msgid "Customer IP:" -msgstr "IP client :" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:74 -msgid "General Details" -msgstr "Détails généraux" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:76 -msgid "Order status:" -msgstr "État de la commande :" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:86 -msgid "Order Date:" -msgstr "Dates de commande : " - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -msgid "h" -msgstr "h" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#: admin/settings/settings-init.php:567 -msgid "m" -msgstr "m" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:91 -msgid "Customer:" -msgstr "Client :" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:131 -msgid "Customer Note:" -msgstr "Note client :" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:132 -msgid "Customer's notes about the order" -msgstr "Notes du client à propos de la commande" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:140 -msgid "Billing Details" -msgstr "Détails de la facturation" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:144 -#: admin/post-types/writepanels/writepanel-order_data.php:234 -msgid "First Name" -msgstr "Prénom" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:148 -#: admin/post-types/writepanels/writepanel-order_data.php:238 -msgid "Last Name" -msgstr "Nom" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:152 -#: admin/post-types/writepanels/writepanel-order_data.php:242 -#: admin/woocommerce-admin-users.php:155 admin/woocommerce-admin-users.php:204 -msgid "Company" -msgstr "Entreprise" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:156 -#: admin/post-types/writepanels/writepanel-order_data.php:246 -#: admin/woocommerce-admin-users.php:159 admin/woocommerce-admin-users.php:208 -msgid "Address 1" -msgstr "Adresse 1" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:160 -#: admin/post-types/writepanels/writepanel-order_data.php:250 -#: admin/woocommerce-admin-users.php:163 admin/woocommerce-admin-users.php:212 -msgid "Address 2" -msgstr "Adresse 2" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:164 -#: admin/post-types/writepanels/writepanel-order_data.php:254 -#: admin/settings/settings-tax-rates.php:42 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-users.php:167 admin/woocommerce-admin-users.php:216 -msgid "City" -msgstr "Ville" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:168 -#: admin/post-types/writepanels/writepanel-order_data.php:258 -#: admin/woocommerce-admin-users.php:171 admin/woocommerce-admin-users.php:220 -msgid "Postcode" -msgstr "Code Postal" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:172 -#: admin/post-types/writepanels/writepanel-order_data.php:262 -#: admin/woocommerce-admin-users.php:179 admin/woocommerce-admin-users.php:228 -msgid "Country" -msgstr "Pays" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:175 -#: admin/post-types/writepanels/writepanel-order_data.php:265 -msgid "Select a country…" -msgstr "Choix de Pays…" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:178 -#: admin/post-types/writepanels/writepanel-order_data.php:268 -#: admin/woocommerce-admin-users.php:175 admin/woocommerce-admin-users.php:224 -msgid "State/County" -msgstr "État/Pays" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:182 -#: admin/woocommerce-admin-users.php:187 -msgid "Email" -msgstr "Email" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:185 -msgid "Phone" -msgstr "Téléphone" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:193 -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#: admin/post-types/writepanels/writepanel-order_data.php:277 -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "Address" -msgstr "Adresse" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:195 -msgid "No billing address set." -msgstr "Aucune adresse de facturation." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:208 -msgid "Load billing address" -msgstr "Charger l'adresse de facturation" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:230 -msgid "Shipping Details" -msgstr "Détails de la livraison" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "No shipping address set." -msgstr "Aucune adresse de livraison." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Load shipping address" -msgstr "Charger l'adresse de livraison" - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Copy from billing" -msgstr "Copier depuis la facture" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:339 -msgid "Item" -msgstr "Article" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#: admin/post-types/writepanels/writepanel-product_data.php:191 -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Class" -msgstr "Classe taxe" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -msgid "Tax class for the line item" -msgstr "Classe de taxe pour la ligne de l'élément" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:347 -msgid "Qty" -msgstr "Qté" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:349 -msgid "Cost" -msgstr "Coût" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -msgid "Line subtotals are before pre-tax discounts, totals are after." -msgstr "" -"Les lignes sous-totaux sont avant les remises pre-tax, les totaux sont après." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:352 -#: admin/settings/settings-tax-rates.php:387 -#: admin/settings/settings-tax-rates.php:475 -#: admin/woocommerce-admin-content.php:48 -#: admin/woocommerce-admin-settings.php:186 -msgid "Tax" -msgstr "Taxe" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:388 -msgid "Delete Lines" -msgstr "Supprimer lignes" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:390 -msgid "Stock Actions" -msgstr "Actions sur le Stock" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:391 -msgid "Reduce Line Stock" -msgstr "Réduire Ligne Stock" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:392 -msgid "Increase Line Stock" -msgstr "Augmenter Ligne Stock" - -#: admin/post-types/writepanels/writepanel-order_data.php:396 -#: admin/post-types/writepanels/writepanel-order_data.php:456 -msgid "Apply" -msgstr "Appliquer" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:402 -msgid "Add item(s)" -msgstr "Ajouter des éléments" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:403 -msgid "Add fee" -msgstr "Ajouter frais" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:434 -msgid "Resend order emails" -msgstr "Renvoyer les emails de commande" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:465 -msgid "Move to Trash" -msgstr "Mettre à la corbeille" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save Order" -msgstr "Enregistrer la cde" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save/update the order" -msgstr "Enregistrer/Actualiser la commande" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:498 -msgid "Discounts" -msgstr "Remises" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:502 -msgid "Cart Discount:" -msgstr "Panier remisé :" - -#: admin/post-types/writepanels/writepanel-order_data.php:502 -msgid "Discounts before tax - calculated by comparing subtotals to totals." -msgstr "" -"Remises avant taxe - calculé par comparaison entre les sous totaux et les " -"totaux." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:510 -msgid "Order Discount:" -msgstr "Remise commande :" - -#: admin/post-types/writepanels/writepanel-order_data.php:510 -msgid "Discounts after tax - user defined." -msgstr "Remises après taxe - défini par l'utilisateur." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:543 -msgid "Label:" -msgstr "Label :" - -#: admin/post-types/writepanels/writepanel-order_data.php:544 -msgid "The shipping title the customer sees" -msgstr "Le titre de la livraison que le client verra" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:551 -msgid "Cost:" -msgstr "Coût :" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:552 -msgid "(ex. tax)" -msgstr "(ex. taxe)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:559 -msgid "Method:" -msgstr "Méthode:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:581 -#: admin/post-types/writepanels/writepanel-order_data.php:583 -#: admin/post-types/writepanels/writepanel-order_data.php:682 -#: admin/post-types/writepanels/writepanel-order_data.php:684 -msgid "Other" -msgstr "Autre" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:597 -msgid "Tax Rows" -msgstr "Rangées de taxes" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:622 -msgid "+ Add tax row" -msgstr "+ Ajouter ligne taxe" - -#: admin/post-types/writepanels/writepanel-order_data.php:622 -msgid "" -"These rows contain taxes for this order. This allows you to display multiple " -"or compound taxes rather than a single total." -msgstr "" -"Ces lignes contiennent des taxes pour cette commande. Cela vous permet " -"d'afficher des taxes multiples ou cumulables plutôt qu'un total simple." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:626 -msgid "Tax Totals" -msgstr "Total taxes" - -#: admin/post-types/writepanels/writepanel-order_data.php:630 -msgid "Total tax for line items + fees." -msgstr "Taxe total par ligne d'articles + frais." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:652 -#: admin/post-types/writepanels/writepanels-init.php:70 -msgid "Order Totals" -msgstr "Total de la commande" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:656 -msgid "Order Total:" -msgstr "Total commande :" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:664 -msgid "Payment Method:" -msgstr "Méthode de Paiement :" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:695 -msgid "Calc taxes" -msgstr "Calcul taxes" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:697 -msgid "Calc totals" -msgstr "Calcul totaux" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:57 -msgid "Choose a downloadable product…" -msgstr "Choisir un produit téléchargeable…" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:87 -msgid "Grant Access" -msgstr "Accorder l'Accès" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:125 -msgid "" -"Could not grant access - the user may already have permission for this file " -"or billing email is not set. Ensure the billing email is set, and the order " -"has been saved." -msgstr "" -"Impossible d'accorder l'accès - l'utilisateur peut déjà avoir la permission " -"pour ce fichier ou l'email de facturation n'est pas défini. Assurez-vous que " -"l'emai lde facturation est défini, et que la commande a été sauvegardée." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:148 -msgid "Are you sure you want to revoke access to this download?" -msgstr "Êtes-vous certain de vouloir supprimer l'accès à ce téléchargement ?" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -msgid "added %s ago" -msgstr "ajouté il y a %s" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -msgid "Delete note" -msgstr "Supprimer la note" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:50 -msgid "There are no notes for this order yet." -msgstr "Il n'y a pas encore de notes pour cette commande." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "Add note" -msgstr "Ajouter une note" - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "" -"Add a note for your reference, or add a customer note (the user will be " -"notified)." -msgstr "" -"Ajoutez une note personnelle, ou ajoutez une note client (l'utilisateur sera " -"notifié)." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:62 -msgid "Customer note" -msgstr "Note client" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:63 -msgid "Private note" -msgstr "Note privée" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:65 -#: admin/post-types/writepanels/writepanel-product_data.php:501 -msgid "Add" -msgstr "Ajouter" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations for variable products are defined here." -msgstr "Les variations pour les produits variables sont définies ici." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations" -msgstr "Variations" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:65 -msgid "" -"Before adding variations, add and save some attributes on the " -"Attributes tab." -msgstr "" -"Avant d'ajouter des variations, ajoutez et sauvegardez quelques attributs à " -"partir de l'onglet Attributs." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:67 -msgid "Learn more" -msgstr "Lire plus" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Close all" -msgstr "Tout fermer" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Expand all" -msgstr "Tout agrandir" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:75 -msgid "Bulk edit:" -msgstr "Modification groupée :" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:77 -msgid "Toggle "Enabled"" -msgstr "Basculer "Activé"" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:78 -msgid "Toggle "Downloadable"" -msgstr "Basculer "Téléchargeable"" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:79 -msgid "Toggle "Virtual"" -msgstr "Basculer "Virtuel"" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:80 -msgid "Delete all variations" -msgstr "Supprimer toutes les variations" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:81 -msgid "Prices" -msgstr "Prix" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:82 -msgid "Sale prices" -msgstr "Prix de vente" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:88 -msgid "File Path" -msgstr "Chemin fichier" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:89 -msgid "Download limit" -msgstr "Limite de téléchargement" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:90 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Download Expiry" -msgstr "Expiration du téléchargement" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:93 -msgid "Go" -msgstr "Aller" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:193 -msgid "Add Variation" -msgstr "Ajouter une variation" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:195 -msgid "Link all variations" -msgstr "Lier toutes les variations" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:197 -msgid "Default selections:" -msgstr "Sélections par défaut :" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:210 -msgid "No default" -msgstr "Pas de valeur par défaut" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:299 -msgid "" -"Are you sure you want to link all variations? This will create a new " -"variation for each and every possible combination of variation attributes " -"(max 50 per run)." -msgstr "" -"Êtes-vous sur de vouloir lier toutes les variations ? Ceci créera une " -"nouvelle variation pour chaque combinaison possible des attributs de " -"variations (max. 50 par lancement)." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:316 -msgid "variation added" -msgstr "variation ajoutée" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:318 -msgid "variations added" -msgstr "variations ajoutées" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:320 -msgid "No variations added" -msgstr "Aucune variation ajoutée" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:343 -msgid "Are you sure you want to remove this variation?" -msgstr "Êtes-vous certain de vouloir supprimer cette variation ?" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:399 -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "" -"Êtes-vous certain de vouloir supprimer tous les attributs ? Cela ne pourra " -"pas être annulé." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:402 -msgid "Last warning, are you sure?" -msgstr "Dernier avertissement, vous êtes certain ?" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:439 -msgid "Enter a value" -msgstr "Entrez une valeur" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:517 -#: admin/woocommerce-admin-taxonomies.php:62 -#: admin/woocommerce-admin-taxonomies.php:154 -msgid "Choose an image" -msgstr "Choisir une image" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:519 -msgid "Set variation image" -msgstr "Définir l’image de la variation" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:563 -msgid "Variable product" -msgstr "Produit variable" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:629 -msgid "Variation #%s of %s" -msgstr "Variation n°%s sur %s" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:43 -msgid "Product Type" -msgstr "Type de produit" - -#: admin/post-types/writepanels/writepanel-product_data.php:53 -msgid "Virtual products are intangible and aren't shipped." -msgstr "Les produits virtuels sont incorporels et ne sont pas expédiés." - -#: admin/post-types/writepanels/writepanel-product_data.php:59 -msgid "Downloadable products give access to a file upon purchase." -msgstr "Les produits téléchargeables donne accès à un fichier lors de l'achat." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:77 -#: admin/woocommerce-admin-content.php:44 -#: admin/woocommerce-admin-settings.php:182 -msgid "General" -msgstr "Général" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:79 -#: admin/woocommerce-admin-content.php:47 -#: admin/woocommerce-admin-settings.php:185 -msgid "Inventory" -msgstr "Inventaire" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:83 -msgid "Linked Products" -msgstr "Produits liés" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:85 -#: admin/woocommerce-admin-attributes.php:299 -#: admin/woocommerce-admin-init.php:66 -msgid "Attributes" -msgstr "Attributs" - -#: admin/post-types/writepanels/writepanel-product_data.php:87 -msgid "Advanced" -msgstr "Avancé" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "Stock Keeping Unit" -msgstr "Maintenir l'unité de stock" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "" -"SKU refers to a Stock-keeping unit, a unique identifier for each distinct " -"product and service that can be purchased." -msgstr "" -"UGS fait référence à l'Unité de Gestion de Stock, un identifiant unique pour " -"chaque produit distinct et service qui peut être vendu." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Product URL" -msgstr "URL du produit" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Enter the external URL to the product." -msgstr "Saisissez l'URL externe au produit." - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "Button text" -msgstr "Bouton texte" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgctxt "placeholder" -msgid "Buy product" -msgstr "Acheter le produit" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "This text will be shown on the button linking to the external product." -msgstr "Ce texte sera visible sur le bouton de lien au produit externe." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:119 -msgid "Regular Price" -msgstr "Prix régulier" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Sale Price" -msgstr "Prix de vente" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:135 -msgid "Sale Price Dates" -msgstr "Dates prix de vente " - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:138 -#: admin/post-types/writepanels/writepanel-product_data.php:1082 -msgid "Cancel" -msgstr "Annuler" - -#: admin/post-types/writepanels/writepanel-product_data.php:152 -msgid "File paths (one per line)" -msgstr "Chemins de fichiers (un par ligne)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Download Limit" -msgstr "Limite de téléchargement" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:178 -msgid "Tax Status" -msgstr "État de la taxe" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:180 -msgid "Shipping only" -msgstr "Expédition seulement" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:181 -msgid "None" -msgstr "Aucun" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Enable stock management at product level" -msgstr "Activer la gestion du stock au niveau produit" - -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "" -"Stock quantity. If this is a variable product this value will be used to " -"control stock for all variations, unless you define stock at variation level." -msgstr "" -"Quantité du stock. Si c'est un produit variable cette valeur sera utilisée " -"pour contrôler le stock pour toutes les variations, à moins que vous " -"définissiez le stock au niveau de la variation." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:230 -msgid "Stock status" -msgstr "État du stock" - -#: admin/post-types/writepanels/writepanel-product_data.php:233 -msgid "" -"Controls whether or not the product is listed as \"in stock\" or \"out of " -"stock\" on the frontend." -msgstr "" -"Controle si le produit est listé comme \"en stock\" ou \"en rupture\" sur le " -"site." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:240 -msgid "Allow Backorders?" -msgstr "Permettre des commandes de produits en rupture ?" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:241 -msgid "Do not allow" -msgstr "Ne pas autoriser" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:242 -msgid "Allow, but notify customer" -msgstr "Autoriser, mais avec notification client" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:243 -msgid "Allow" -msgstr "Autoriser" - -#: admin/post-types/writepanels/writepanel-product_data.php:244 -msgid "" -"If managing stock, this controls whether or not backorders are allowed for " -"this product and variations. If enabled, stock quantity can go below 0." -msgstr "" -"En cas de gestion du stock, ceci détermine si les commandes de produits en " -"rupture sont autorisées. Si actif, la quantité en stock pourra être " -"inférieure à 0." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "Sold Individually" -msgstr "Vendu séparément" - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "" -"Enable this to only allow one of this item to be bought in a single order" -msgstr "" -"Activer cette option pour uniquement permettre un de ces articles d'être " -"acheté en une seule commande" - -#: admin/post-types/writepanels/writepanel-product_data.php:273 -msgid "Weight in decimal form" -msgstr "Poids au format décimal" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:284 -msgid "Dimensions" -msgstr "Dimensions" - -#: admin/post-types/writepanels/writepanel-product_data.php:290 -msgid "LxWxH in decimal form" -msgstr "LxPxH au format décimal" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:311 -msgid "No shipping class" -msgstr "Pas de classe de livraison" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "Shipping class" -msgstr "Classe de livraison" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "" -"Shipping classes are used by certain shipping methods to group similar " -"products." -msgstr "" -"Les classes de livraison sont utilisées par certaines méthodes de livraison " -"pour grouper des produits similaires." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:384 -#: admin/post-types/writepanels/writepanel-product_data.php:476 -#: admin/woocommerce-admin-init.php:440 -msgid "Value(s)" -msgstr "Valeurs" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:386 -msgid "Select terms" -msgstr "Choix des termes" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:398 -msgid "Select all" -msgstr "Tout sélectionner" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:398 -msgid "Select none" -msgstr "Ne rien sélectionner" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:400 -msgid "Add new" -msgstr "Ajouter" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:413 -msgid "Pipe (|) separate terms" -msgstr "Séparation des termes par Pipe (|)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:427 -#: admin/post-types/writepanels/writepanel-product_data.php:482 -#: admin/woocommerce-admin-init.php:442 -msgid "Visible on the product page" -msgstr "Visible sur la page produit" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:440 -#: admin/post-types/writepanels/writepanel-product_data.php:488 -#: admin/woocommerce-admin-init.php:443 -msgid "Used for variations" -msgstr "Utilisé pour les variations" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:477 -#: admin/woocommerce-admin-init.php:441 -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "Entrer du texte, ou des attributs en les séparant avec un pipe (|)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:503 -msgid "Custom product attribute" -msgstr "Attribut personnalisé du produit" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:515 -msgid "Save attributes" -msgstr "Sauvegarder les attributs" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:522 -msgid "Up-Sells" -msgstr "Montées en gamme" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:537 -msgid "" -"Up-sells are products which you recommend instead of the currently viewed " -"product, for example, products that are more profitable or better quality or " -"more expensive." -msgstr "" -"Les Montées en gamme sont des produits que vous recommandez à la place de " -"ceux actuellement vus, par exemple, les produits qui sont plus profitables " -"ou de meilleure qualité ou plus chers." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:539 -msgid "Cross-Sells" -msgstr "Ventes Croisées" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:554 -msgid "" -"Cross-sells are products which you promote in the cart, based on the current " -"product." -msgstr "" -"Les Ventes Croisées sont des produits que vous mettez en avant dans la " -"panier, basés sur le produit actuel." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:564 -msgid "Choose a grouped product…" -msgstr "Choix d'un produit groupé…" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:590 -msgid "Grouping" -msgstr "Grouper" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:590 -msgid "Set this option to make this product part of a grouped product." -msgstr "" -"Activer cette option pour faire de ce produit une partie d'un produit groupé." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:610 -msgid "Purchase Note" -msgstr "Note d'achat" - -#: admin/post-types/writepanels/writepanel-product_data.php:610 -msgid "Enter an optional note to send the customer after purchase." -msgstr "Saisissez une note optionnelle à envoyer au client après l'achat." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:617 -msgid "Menu order" -msgstr "Ordre du menu" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:617 -msgid "Custom ordering position." -msgstr "Ordre personnalisé." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:625 -msgid "Enable reviews" -msgstr "Activer les avis" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:714 -msgid "Product SKU must be unique." -msgstr "L'UGS du produit doit être unique." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1046 -msgid "Catalog/search" -msgstr "Catalogue/recherche" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1053 -msgid "Catalog visibility:" -msgstr "Visibilité du catalogue : " - -#: admin/post-types/writepanels/writepanel-product_data.php:1069 -msgid "" -"Define the loops this product should be visible in. The product will still " -"be accessible directly." -msgstr "" -"Définir les boucles dans lequelles ce produit doit être visible. Il sera " -"toujours accessible directement." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1075 -msgid "Enable this option to feature this product." -msgstr "Activer cette option pour mettre en avant ce produit." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1077 -msgid "Featured Product" -msgstr "Produits Mis en Avant" - -#: admin/post-types/writepanels/writepanel-product_data.php:1081 -msgid "OK" -msgstr "OK" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -msgid "Delete image" -msgstr "Supprimer l’image" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -#: admin/woocommerce-admin-attributes.php:323 -msgid "Delete" -msgstr "Supprimer" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:53 -msgid "Add product gallery images" -msgstr "Ajouter des images à la galerie produit" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:79 -msgid "Add Images to Product Gallery" -msgstr "Ajouter des images à la galerie produit" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:81 -msgid "Add to gallery" -msgstr "Ajouter à la galerie" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:47 -msgid "Product Gallery" -msgstr "Galerie produit" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:55 -msgid "Product Short Description" -msgstr "Description courte du produit" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:64 -msgid "Reviews" -msgstr "Avis" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:68 -msgid "Order Data" -msgstr "Données de la commande" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "Order Items" -msgstr "Articles de la commande" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "" -"Note: if you edit quantities or remove items from the order you will need to " -"manually update stock levels." -msgstr "" -"Note : si vous éditez les quantités ou supprimez des articles de la " -"commande, vous devrez manuellement mettre à jour le niveau des stocks." - -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "Downloadable Product Permissions" -msgstr "Permissions produit téléchargeable" - -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "" -"Note: Permissions for order items will automatically be granted when the " -"order status changes to processing/completed." -msgstr "" -"Note : Les permissions pour les articles de la commande seront " -"automatiquement accordées quand le status passera de en cours à terminée." - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:73 -msgid "Order Actions" -msgstr "Actions sur la commande" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:81 -msgid "Coupon Data" -msgstr "Données Code Promo" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:100 -msgid "Coupon code" -msgstr "Code Promo" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:101 -msgid "Product name" -msgstr "Nom du produit" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:185 -msgid "Allow reviews." -msgstr "Permettre les avis." - -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "" -"Allow trackbacks and pingbacks on this " -"page." -msgstr "" -"Autoriser les trackbacks et pingbacks " -"sur cette page. " - -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" -msgstr "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:23 -msgid "Styles" -msgstr "Styles" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:43 -msgid "Primary" -msgstr "Primaire" - -#: admin/settings/settings-frontend-styles.php:43 -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "" -"Boutons/glissière de prix/interface de navigation pour l'appel à l'action" - -#: admin/settings/settings-frontend-styles.php:44 -msgid "Secondary" -msgstr "Secondaire" - -#: admin/settings/settings-frontend-styles.php:44 -msgid "Buttons and tabs" -msgstr "Boutons et onglets" - -# @ woocommerce -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:45 -msgid "Highlight" -msgstr "Surbrillance" - -#: admin/settings/settings-frontend-styles.php:45 -msgid "Price labels and Sale Flashes" -msgstr "Etiquettes de prix et ventes flash" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:46 -msgid "Content" -msgstr "Contenu" - -#: admin/settings/settings-frontend-styles.php:46 -msgid "Your themes page background - used for tab active states" -msgstr "Votre fond de page thèmes - utilisé pour les états onglet actif" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:47 -msgid "Subtext" -msgstr "Sous-texte" - -#: admin/settings/settings-frontend-styles.php:47 -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "" -"Utilisé pour certains textes et apartés - fil d'ariane, texte de petite " -"taille, etc.." - -#: admin/settings/settings-frontend-styles.php:51 -msgid "" -"To edit colours woocommerce/assets/css/woocommerce-base.less " -"and woocommerce.css need to be writable. See the Codex for more " -"information." -msgstr "" -"Pour éditer les couleurs woocommerce/assets/css/woocommerce-base.less et woocommerce.css ont besoin d'être accessibles en " -"écriture. Voir le Codex pour plus d'information." - -# @ woocommerce -#: admin/settings/settings-init.php:18 -msgid "Localisation" -msgstr "Localisation" - -#: admin/settings/settings-init.php:19 -msgid "Use informal localisation for %s" -msgstr "Utiliser la localisation informel pour %s" - -# @ woocommerce -#: admin/settings/settings-init.php:33 -msgid "General Options" -msgstr "Options générales" - -# @ woocommerce -#: admin/settings/settings-init.php:36 -msgid "Base Location" -msgstr "Emplacemement de base " - -# @ woocommerce -#: admin/settings/settings-init.php:37 -msgid "" -"This is the base location for your business. Tax rates will be based on this " -"country." -msgstr "" -"Ceci est l'emplacemement de base de votre boutique. Les taux de taxes seront " -"basés sur ce pays." - -# @ woocommerce -#: admin/settings/settings-init.php:46 -msgid "Currency" -msgstr "Monnaie" - -# @ woocommerce -#: admin/settings/settings-init.php:47 -msgid "" -"This controls what currency prices are listed at in the catalog and which " -"currency gateways will take payments in." -msgstr "" -"Ceci détermine quelle monnaie est listée dans le catalogue et quelle monnaie " -"de passerelle sera utilisée pour le paiement." - -# @ woocommerce -#: admin/settings/settings-init.php:58 -msgid "Allowed Countries" -msgstr "Pays autorisés" - -# @ woocommerce -#: admin/settings/settings-init.php:59 -msgid "These are countries that you are willing to ship to." -msgstr "Voici les pays où vous voulez vendre." - -# @ woocommerce -#: admin/settings/settings-init.php:67 -msgid "All Countries" -msgstr "Tous les pays" - -# @ woocommerce -#: admin/settings/settings-init.php:68 admin/settings/settings-init.php:73 -msgid "Specific Countries" -msgstr "Pays spécifiques" - -# @ woocommerce -#: admin/settings/settings-init.php:84 -msgid "Store Notice" -msgstr "Notice Boutique" - -# @ woocommerce -#: admin/settings/settings-init.php:85 -msgid "Enable site-wide store notice text" -msgstr "Activer le texte de notification sur l'ensemble de la boutique" - -#: admin/settings/settings-init.php:92 -msgid "Store Notice Text" -msgstr "Texte de notice de la boutique" - -# @ woocommerce -#: admin/settings/settings-init.php:95 -msgid "" -"This is a demo store for testing purposes — no orders shall be " -"fulfilled." -msgstr "" -"Ceci est une boutique de démonstration pour test — aucune commande ne " -"sera honorée." - -# @ woocommerce -#: admin/settings/settings-init.php:102 -msgid "Cart, Checkout and Accounts" -msgstr "Panier, Commande et Comptes" - -# @ woocommerce -#: admin/settings/settings-init.php:105 admin/woocommerce-admin-content.php:61 -#: admin/woocommerce-admin-content.php:76 -#: admin/woocommerce-admin-reports.php:63 -msgid "Coupons" -msgstr "Codes Promo" - -# @ woocommerce -#: admin/settings/settings-init.php:106 -msgid "Enable the use of coupons" -msgstr "Activer l'utilisation de codes promo" - -#: admin/settings/settings-init.php:110 -msgid "Coupons can be applied from the cart and checkout pages." -msgstr "" -"Les codes promo peuvent être appliqués depuis le panier et les pages de " -"commande." - -# @ woocommerce -#: admin/settings/settings-init.php:114 -#: admin/woocommerce-admin-install.php:201 -#: admin/woocommerce-admin-status.php:307 -msgid "Checkout" -msgstr "Commande" - -#: admin/settings/settings-init.php:115 -msgid "Enable guest checkout (no account required)" -msgstr "Activer la commande invité (aucun compte requis)" - -#: admin/settings/settings-init.php:123 -msgid "Enable customer note field on checkout" -msgstr "Activer le champ note du client sur la page de commande" - -#: admin/settings/settings-init.php:131 -msgid "Force secure checkout" -msgstr "Forcer la commande sécurisée" - -#: admin/settings/settings-init.php:137 -msgid "" -"Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -msgstr "" -"Forcer le SSL (HTTPS) sur les pages de paiement (un certificat SSL est " -"nécessaire)." - -#: admin/settings/settings-init.php:141 -msgid "Un-force HTTPS when leaving the checkout" -msgstr "Désactiver HTTPS lors du départ des pages de paiement" - -#: admin/settings/settings-init.php:150 -msgid "Registration" -msgstr "Inscription" - -# @ woocommerce -#: admin/settings/settings-init.php:151 -msgid "Allow registration on the checkout page" -msgstr "Autoriser les invités à s'inscrire depuis la page commande" - -# @ woocommerce -#: admin/settings/settings-init.php:159 -msgid "Allow registration on the \"My Account\" page" -msgstr "Autoriser les invités à s'inscrire depuis la page \"Mon Compte\"" - -#: admin/settings/settings-init.php:167 -msgid "Register using the email address for the username" -msgstr "Inscription utilisant l'adresse email comme identifiant" - -# @ woocommerce -#: admin/settings/settings-init.php:175 -msgid "Customer Accounts" -msgstr "Compte client" - -#: admin/settings/settings-init.php:176 -msgid "Prevent customers from accessing WordPress admin" -msgstr "Empêcher les clients d'accéder à l'administration WordPress" - -#: admin/settings/settings-init.php:184 -msgid "Clear cart when logging out" -msgstr "Vider le panier lors de la déconnexion" - -#: admin/settings/settings-init.php:192 -msgid "Allow customers to repurchase orders from their account page" -msgstr "Permettre aux clients de re-commander depuis leur compte" - -#: admin/settings/settings-init.php:201 -msgid "Styles and Scripts" -msgstr "Styles et Scripts" - -# @ woocommerce -#: admin/settings/settings-init.php:204 -msgid "Styling" -msgstr "Mise en forme" - -# @ woocommerce -#: admin/settings/settings-init.php:205 -msgid "Enable WooCommerce CSS" -msgstr "Activer les styles CSS WooCommerce" - -#: admin/settings/settings-init.php:216 -msgid "Scripts" -msgstr "Scripts" - -# @ woocommerce -#: admin/settings/settings-init.php:217 -msgid "Enable Lightbox" -msgstr "Activer la lightbox" - -#: admin/settings/settings-init.php:220 -msgid "" -"Include WooCommerce's lightbox. Product gallery images and the add review " -"form will open in a lightbox." -msgstr "" -"Inclure la lightbox WooCommerce. Les images de galerie produit et le " -"formulaire d'avis s'ouvriront dans une lightbox." - -#: admin/settings/settings-init.php:226 -msgid "Enable enhanced country select boxes" -msgstr "Activer les boites de sélection étendues des pays" - -#: admin/settings/settings-init.php:231 -msgid "This will enable a script allowing the country fields to be searchable." -msgstr "Ceci active un script permettant une recherche sur le champ pays." - -#: admin/settings/settings-init.php:236 -msgid "Downloadable Products" -msgstr "Produits téléchargeables" - -# @ woocommerce -#: admin/settings/settings-init.php:239 -msgid "File Download Method" -msgstr "Méthode de téléchargement de fichiers" - -#: admin/settings/settings-init.php:240 -msgid "" -"Forcing downloads will keep URLs hidden, but some servers may serve large " -"files unreliably. If supported, X-Accel-Redirect/ X-" -"Sendfile can be used to serve downloads instead (server requires " -"mod_xsendfile)." -msgstr "" -"Le Forçage des téléchargements laissera les URL cachés, mais certains " -"serveurs peuvent proposer de gros fichiers de façon non fiable. Si " -"supportés, X-Accel-Redirect/ X-Sendfile peuvent " -"être utilisés pour distribuer les téléchargements en remplacement (nécessite " -"mod_xsendfile sur le serveur)." - -#: admin/settings/settings-init.php:248 -msgid "Force Downloads" -msgstr "Forcer le téléchargement" - -#: admin/settings/settings-init.php:249 -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "X-Accel-Redirect/X-Sendfile" - -#: admin/settings/settings-init.php:250 -msgid "Redirect only" -msgstr "Redirection seulement" - -#: admin/settings/settings-init.php:255 -msgid "Access Restriction" -msgstr "Restrictions d'accès" - -# @ woocommerce -#: admin/settings/settings-init.php:256 -msgid "Downloads require login" -msgstr "Les téléchargements nécessitent d'être identifié" - -#: admin/settings/settings-init.php:260 -msgid "This setting does not apply to guest purchases." -msgstr "Ce réglage ne s'applique pas aux achats d'invité." - -#: admin/settings/settings-init.php:265 -msgid "Grant access to downloadable products after payment" -msgstr "Autoriser l'accès aux produits téléchargeables après le paiement" - -#: admin/settings/settings-init.php:269 -msgid "" -"Enable this option to grant access to downloads when orders are \"processing" -"\", rather than \"completed\"." -msgstr "" -"Activer cette option pour autoriser l'accès aux téléchagrements lorsque les " -"commandes sont \"en cours\", plutôt que \"terminée\"." - -#: admin/settings/settings-init.php:285 -msgid "" -"Note: The shop page has children - child pages will not work if you enable " -"this option." -msgstr "" -"Note : La page boutique a des enfants - Les pages enfant ne fonctionneront " -"pas si vous activez cette option." - -# @ woocommerce -#: admin/settings/settings-init.php:290 -msgid "Page Setup" -msgstr "Paramètres des pages" - -#: admin/settings/settings-init.php:292 -msgid "" -"Set up core WooCommerce pages here, for example the base page. The base page " -"can also be used in your %sproduct permalinks%s." -msgstr "" -"Paramétrez les pages du coeur de WooCommerce ici, par exemple la page de " -"base. La page de base peut également être utilisée dans votre %sproduct " -"permalinks%s." - -# @ woocommerce -#: admin/settings/settings-init.php:297 -msgid "Shop Base Page" -msgstr "Page de base de la boutique" - -# @ woocommerce -#: admin/settings/settings-init.php:298 -msgid "" -"This sets the base page of your shop - this is where your product archive " -"will be." -msgstr "" -"Ceci détermine la page de départ de votre boutique - c'est l'emplacement où " -"votre archive de produits sera." - -# @ woocommerce -#: admin/settings/settings-init.php:308 -msgid "Terms Page ID" -msgstr "Page CGV" - -# @ woocommerce -#: admin/settings/settings-init.php:309 -msgid "" -"If you define a \"Terms\" page the customer will be asked if they accept " -"them when checking out." -msgstr "" -"Si vous définissez une page \"Conditions Générales de Vente\" il sera " -"demandé au client d'accepter ces CGV lors de la commande." - -# @ woocommerce -#: admin/settings/settings-init.php:320 -msgid "Shop Pages" -msgstr "Pages boutique" - -# @ woocommerce -#: admin/settings/settings-init.php:320 -msgid "" -"The following pages need selecting so that WooCommerce knows where they are. " -"These pages should have been created upon installation of the plugin, if not " -"you will need to create them." -msgstr "" -"Les pages suivantes nécessitent une sélection pour que WooCommerce sache où " -"elles sont. Ces pages doivent avoir été créées lors de l'installation de " -"l'extension, dans le cas contraire vous devez les créer." - -# @ woocommerce -#: admin/settings/settings-init.php:323 -msgid "Cart Page" -msgstr "Page panier" - -# @ woocommerce -#: admin/settings/settings-init.php:324 -msgid "Page contents: [woocommerce_cart]" -msgstr "Contenu page : [woocommerce_cart]" - -# @ woocommerce -#: admin/settings/settings-init.php:334 -msgid "Checkout Page" -msgstr "Page commande" - -# @ woocommerce -#: admin/settings/settings-init.php:335 -msgid "Page contents: [woocommerce_checkout]" -msgstr "Contenu page : [woocommerce_checkout]" - -# @ woocommerce -#: admin/settings/settings-init.php:345 -msgid "Pay Page" -msgstr "Page paiement" - -# @ woocommerce -#: admin/settings/settings-init.php:346 -msgid "Page contents: [woocommerce_pay] Parent: \"Checkout\"" -msgstr "Contenu page : [woocommerce_pay] Parent : \"Commande\"" - -# @ woocommerce -#: admin/settings/settings-init.php:356 -msgid "Thanks Page" -msgstr "Page de remerciements" - -# @ woocommerce -#: admin/settings/settings-init.php:357 -msgid "Page contents: [woocommerce_thankyou] Parent: \"Checkout\"" -msgstr "Contenu page : [woocommerce_thankyou] Parent : \"Commande\"" - -# @ woocommerce -#: admin/settings/settings-init.php:367 -msgid "My Account Page" -msgstr "Page mon compte" - -# @ woocommerce -#: admin/settings/settings-init.php:368 -msgid "Page contents: [woocommerce_my_account]" -msgstr "Contenu page : [woocommerce_my_account]" - -# @ woocommerce -#: admin/settings/settings-init.php:378 -msgid "Edit Address Page" -msgstr "Page modification adresse" - -# @ woocommerce -#: admin/settings/settings-init.php:379 -msgid "Page contents: [woocommerce_edit_address] Parent: \"My Account\"" -msgstr "Contenu page : [woocommerce_edit_address] Parent : \"Mon Compte\"" - -# @ woocommerce -#: admin/settings/settings-init.php:389 -msgid "View Order Page" -msgstr "Page voir commande" - -# @ woocommerce -#: admin/settings/settings-init.php:390 -msgid "Page contents: [woocommerce_view_order] Parent: \"My Account\"" -msgstr "Contenu page : [woocommerce_view_order] Parent: \"Mon Compte\"" - -# @ woocommerce -#: admin/settings/settings-init.php:400 -msgid "Change Password Page" -msgstr "Page changement mot de passe" - -# @ woocommerce -#: admin/settings/settings-init.php:401 -msgid "Page contents: [woocommerce_change_password] Parent: \"My Account\"" -msgstr "Contenu page : [woocommerce_change_password] Parent: \"Mon Compte\"" - -# @ woocommerce -#: admin/settings/settings-init.php:411 -msgid "Logout Page" -msgstr "Page de déconnexion" - -# @ woocommerce -#: admin/settings/settings-init.php:412 -msgid "Parent: \"My Account\"" -msgstr "Parent : \"Mon Compte\"" - -# @ woocommerce -#: admin/settings/settings-init.php:422 -msgid "Lost Password Page" -msgstr "Page de mot de passe perdu" - -# @ woocommerce -#: admin/settings/settings-init.php:423 -msgid "Page contents: [woocommerce_lost_password] Parent: \"My Account\"" -msgstr "Contenus page : [woocommerce_lost_password] Parent : \"Mon Compte\"" - -# @ woocommerce -#: admin/settings/settings-init.php:439 -msgid "Catalog Options" -msgstr "Options du catalogue" - -# @ woocommerce -#: admin/settings/settings-init.php:442 -msgid "Default Product Sorting" -msgstr "Tri par défaut des produits" - -# @ woocommerce -#: admin/settings/settings-init.php:443 -msgid "This controls the default sort order of the catalog." -msgstr "Cela détermine l'ordre de tri par défaut du catalogue." - -# @ woocommerce -#: admin/settings/settings-init.php:449 -msgid "Default sorting (custom ordering + name)" -msgstr "Tri par défaut (ordre personnalisé + nom)" - -#: admin/settings/settings-init.php:450 -msgid "Popularity (sales)" -msgstr "Popularité (ventes)" - -# @ woocommerce -#: admin/settings/settings-init.php:451 -msgid "Average Rating" -msgstr "Moyenne des notes" - -# @ woocommerce -#: admin/settings/settings-init.php:452 -msgid "Sort by most recent" -msgstr "Tri par le plus récent" - -# @ woocommerce -#: admin/settings/settings-init.php:453 -msgid "Sort by price (asc)" -msgstr "Tri par prix croissant" - -# @ woocommerce -#: admin/settings/settings-init.php:454 -msgid "Sort by price (desc)" -msgstr "Tri par prix décroissant" - -# @ woocommerce -#: admin/settings/settings-init.php:460 -msgid "Shop Page Display" -msgstr "Affichage Page Boutique" - -#: admin/settings/settings-init.php:461 -msgid "This controls what is shown on the product archive." -msgstr "Ceci détermine ce qui est affiché sur l'archive produit." - -# @ woocommerce -#: admin/settings/settings-init.php:467 admin/settings/settings-init.php:482 -msgid "Show products" -msgstr "Afficher les produits" - -# @ woocommerce -#: admin/settings/settings-init.php:468 admin/settings/settings-init.php:483 -msgid "Show subcategories" -msgstr "Afficher les sous-catégories" - -# @ woocommerce -#: admin/settings/settings-init.php:469 admin/settings/settings-init.php:484 -msgid "Show both" -msgstr "Tout afficher" - -# @ woocommerce -#: admin/settings/settings-init.php:475 -msgid "Default Category Display" -msgstr "Affichage par défaut de la catégorie" - -# @ woocommerce -#: admin/settings/settings-init.php:476 -msgid "This controls what is shown on category archives." -msgstr "Cela détermine ce qui est affiché sur les archives catégorie." - -# @ woocommerce -#: admin/settings/settings-init.php:490 -msgid "Add to cart" -msgstr "Ajouter au panier" - -#: admin/settings/settings-init.php:491 -msgid "Redirect to the cart page after successful addition" -msgstr "Rediriger vers le panier après un ajout réussi" - -#: admin/settings/settings-init.php:499 -msgid "Enable AJAX add to cart buttons on archives" -msgstr "Activer les boutons AJAX d'ajout au panier sur les archives" - -# @ woocommerce -#: admin/settings/settings-init.php:508 -msgid "" -"The following options affect the fields available on the edit product page." -msgstr "" -"Les options suivantes déterminent les champs disponibles sur la page " -"d'édition d'un produit." - -# @ woocommerce -#: admin/settings/settings-init.php:511 -msgid "Product Fields" -msgstr "Champs produit" - -# @ woocommerce -#: admin/settings/settings-init.php:512 -msgid "Enable the SKU field for products" -msgstr "" -"Activer le champ UGS (Unité de Gestion des Stocks) pour les " -"produits" - -#: admin/settings/settings-init.php:520 -msgid "" -"Enable the weight field for products (some shipping methods " -"may require this)" -msgstr "" -"Activer le champ poids pour les acticles (certaines " -"méthodes de livraison peuvent le nécessiter)" - -#: admin/settings/settings-init.php:528 -msgid "" -"Enable the dimension fields for products (some shipping " -"methods may require this)" -msgstr "" -"Activer le champ dimension pour les acticles (certaines " -"méthodes de livraison peuvent le nécessiter)" - -#: admin/settings/settings-init.php:536 -msgid "" -"Show weight and dimension values on the Additional " -"Information tab" -msgstr "" -"Afficher les valeurs poids et dimensions dans l'onglet " -"Informations Complémentaires" - -# @ woocommerce -#: admin/settings/settings-init.php:544 -msgid "Weight Unit" -msgstr "Unité de poids" - -# @ woocommerce -#: admin/settings/settings-init.php:545 -msgid "This controls what unit you will define weights in." -msgstr "Cela détermine dans quelle unité vous définirez les poids." - -# @ woocommerce -#: admin/settings/settings-init.php:551 -msgid "kg" -msgstr "Kilos" - -# @ woocommerce -#: admin/settings/settings-init.php:552 -msgid "g" -msgstr "g" - -# @ woocommerce -#: admin/settings/settings-init.php:553 -msgid "lbs" -msgstr "Livres" - -#: admin/settings/settings-init.php:554 -msgid "oz" -msgstr "oz" - -# @ woocommerce -#: admin/settings/settings-init.php:560 -msgid "Dimensions Unit" -msgstr "Unité des dimensions" - -# @ woocommerce -#: admin/settings/settings-init.php:561 -msgid "This controls what unit you will define lengths in." -msgstr "Cela détermine dans quelle unité vous définirez les longueurs." - -# @ woocommerce -#: admin/settings/settings-init.php:568 -msgid "cm" -msgstr "cm" - -#: admin/settings/settings-init.php:569 -msgid "mm" -msgstr "mm" - -# @ woocommerce -#: admin/settings/settings-init.php:570 -msgid "in" -msgstr "pouce" - -#: admin/settings/settings-init.php:571 -msgid "yd" -msgstr "yd" - -# @ woocommerce -#: admin/settings/settings-init.php:577 -msgid "Product Ratings" -msgstr "Notations produit" - -# @ woocommerce -#: admin/settings/settings-init.php:578 -msgid "Enable ratings on reviews" -msgstr "Activer les notes sur les avis" - -#: admin/settings/settings-init.php:587 -msgid "Ratings are required to leave a review" -msgstr "La notation est requise pour laisser un avis" - -#: admin/settings/settings-init.php:596 -msgid "Show \"verified owner\" label for customer reviews" -msgstr "Afficher le label \"propriétaire vérifié\" sur les avis consommateurs" - -# @ woocommerce -#: admin/settings/settings-init.php:606 -msgid "Pricing Options" -msgstr "Options de prix" - -#: admin/settings/settings-init.php:606 -msgid "The following options affect how prices are displayed on the frontend." -msgstr "" -"Les options suivantes déterminent la manière dont les prix sont affichés sur " -"le site." - -# @ woocommerce -#: admin/settings/settings-init.php:609 -msgid "Currency Position" -msgstr "Position monnaie" - -# @ woocommerce -#: admin/settings/settings-init.php:610 -msgid "This controls the position of the currency symbol." -msgstr "Cela détermine la position du symbole de monnaie." - -# @ woocommerce -#: admin/settings/settings-init.php:616 -msgid "Left" -msgstr "Gauche" - -# @ woocommerce -#: admin/settings/settings-init.php:617 -msgid "Right" -msgstr "Droite" - -# @ woocommerce -#: admin/settings/settings-init.php:618 -msgid "Left (with space)" -msgstr "Gauche (avec espace)" - -# @ woocommerce -#: admin/settings/settings-init.php:619 -msgid "Right (with space)" -msgstr "Droite (avec espace)" - -# @ woocommerce -#: admin/settings/settings-init.php:625 -msgid "Thousand Separator" -msgstr "Séparateur de milliers" - -# @ woocommerce -#: admin/settings/settings-init.php:626 -msgid "This sets the thousand separator of displayed prices." -msgstr "Cela détermine le séparateur de milliers pour les prix affichés." - -# @ woocommerce -#: admin/settings/settings-init.php:635 -msgid "Decimal Separator" -msgstr "Séparateur décimal" - -# @ woocommerce -#: admin/settings/settings-init.php:636 -msgid "This sets the decimal separator of displayed prices." -msgstr "Cela détermine le séparateur de décimales pour les prix affichés." - -# @ woocommerce -#: admin/settings/settings-init.php:645 -msgid "Number of Decimals" -msgstr "Nombre de décimales" - -# @ woocommerce -#: admin/settings/settings-init.php:646 -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "Cela détermine le nombre de décimales pour les prix affichés." - -#: admin/settings/settings-init.php:659 -msgid "Trailing Zeros" -msgstr "Zéros à droite" - -#: admin/settings/settings-init.php:660 -msgid "" -"Remove zeros after the decimal point. e.g. $10.00 becomes " -"$10" -msgstr "" -"Supprimer les zéros après le point décimal. Ex. 10.00€ devient " -"10€" - -# @ woocommerce -#: admin/settings/settings-init.php:668 -msgid "Image Options" -msgstr "Options images" - -# @ woocommerce -#: admin/settings/settings-init.php:668 -msgid "" -"These settings affect the actual dimensions of images in your catalog - the " -"display on the front-end will still be affected by CSS styles. After " -"changing these settings you may need to regenerate your " -"thumbnails." -msgstr "" -"Ces paramètres affectent les dimensions actuelles des images dans votre " -"catalogue - l'affichage sur le site sera encore affecté par les styles CSS. " -"Après avoir changé ces paramètres vous pourrez avoir besoin de régénérer vos vignettes." - -# @ woocommerce -#: admin/settings/settings-init.php:671 -msgid "Catalog Images" -msgstr "Catalogue d'images" - -# @ woocommerce -#: admin/settings/settings-init.php:672 -msgid "This size is usually used in product listings" -msgstr "Cette taille est habituellement utilisée dans les listes de produits." - -# @ woocommerce -#: admin/settings/settings-init.php:685 -msgid "Single Product Image" -msgstr "Image produit détail" - -# @ woocommerce -#: admin/settings/settings-init.php:686 -msgid "This is the size used by the main image on the product page." -msgstr "C'est la taille utilisée pour l'image principale sur la page produit." - -# @ woocommerce -#: admin/settings/settings-init.php:699 -msgid "Product Thumbnails" -msgstr "Vignettes produit" - -# @ woocommerce -#: admin/settings/settings-init.php:700 -msgid "" -"This size is usually used for the gallery of images on the product page." -msgstr "" -"Cette taille est habituellement utilisée pour la galerie d'image sur la page " -"des produits." - -# @ woocommerce -#: admin/settings/settings-init.php:719 -msgid "Inventory Options" -msgstr "Options inventaire" - -# @ woocommerce -#: admin/settings/settings-init.php:722 -msgid "Manage Stock" -msgstr "Gestion du stock" - -# @ woocommerce -#: admin/settings/settings-init.php:723 -msgid "Enable stock management" -msgstr "Activer la gestion du stock" - -#: admin/settings/settings-init.php:730 -msgid "Hold Stock (minutes)" -msgstr "Maintenir le stock (minutes)" - -#: admin/settings/settings-init.php:731 -msgid "" -"Hold stock (for unpaid orders) for x minutes. When this limit is reached, " -"the pending order will be cancelled. Leave blank to disable." -msgstr "" -"Maintenir le stock (pour les commandes impayées) pendant x minutes. Quand ce " -"délai sera atteint, la commande en attente sera annulée. Laisser vide pour " -"désactiver." - -# @ woocommerce -#: admin/settings/settings-init.php:743 -msgid "Notifications" -msgstr "Notifications" - -# @ woocommerce -#: admin/settings/settings-init.php:744 -msgid "Enable low stock notifications" -msgstr "Activer les notifications de stock faible" - -# @ woocommerce -#: admin/settings/settings-init.php:752 -msgid "Enable out of stock notifications" -msgstr "Activer les notifications de stock épuisé" - -# @ woocommerce -#: admin/settings/settings-init.php:760 -msgid "Notification Recipient" -msgstr "Destinataire de notification" - -# @ woocommerce -#: admin/settings/settings-init.php:768 -msgid "Low Stock Threshold" -msgstr "Seuil de stock faible" - -# @ woocommerce -#: admin/settings/settings-init.php:781 -msgid "Out Of Stock Threshold" -msgstr "Seuil de stock épuisé" - -# @ woocommerce -#: admin/settings/settings-init.php:794 -msgid "Out Of Stock Visibility" -msgstr "Visibilité des stocks épuisés" - -# @ woocommerce -#: admin/settings/settings-init.php:795 -msgid "Hide out of stock items from the catalog" -msgstr "Cacher les produits en stock épuisé du catalogue" - -#: admin/settings/settings-init.php:802 -msgid "Stock Display Format" -msgstr "Format d'affichage du stock" - -#: admin/settings/settings-init.php:803 -msgid "This controls how stock is displayed on the frontend." -msgstr "Ceci détermine la manière dont le stock est affiché sur le site." - -#: admin/settings/settings-init.php:809 -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "Toujours afficher le stock, ex. \"12 en stock\"" - -#: admin/settings/settings-init.php:810 -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "" -"Afficher le stock uniquement lorsqu'il est bas, ex. \"Plus que 2 en stock\" " -"en rempacement de \"En stock\"" - -#: admin/settings/settings-init.php:811 -msgid "Never show stock amount" -msgstr "Ne jamais afficher le niveau de stock" - -# @ woocommerce -#: admin/settings/settings-init.php:823 -#: admin/woocommerce-admin-settings.php:292 -msgid "Shipping Options" -msgstr "Options des frais" - -# @ woocommerce -#: admin/settings/settings-init.php:826 -msgid "Shipping Calculations" -msgstr "Calcul de frais de port" - -# @ woocommerce -#: admin/settings/settings-init.php:827 -msgid "Enable shipping" -msgstr "Activer la livraison" - -# @ woocommerce -#: admin/settings/settings-init.php:835 -msgid "Enable the shipping calculator on the cart page" -msgstr "Activer le calculateur de frais dans la page panier" - -#: admin/settings/settings-init.php:843 -msgid "Hide shipping costs until an address is entered" -msgstr "" -"Masquer les frais de livraison jusqu'à ce qu'une adresse soit renseignée" - -# @ woocommerce -#: admin/settings/settings-init.php:851 -msgid "Shipping Method Display" -msgstr "Affichage de la méthode de livraison" - -#: admin/settings/settings-init.php:852 -msgid "" -"This controls how multiple shipping methods are displayed on the frontend." -msgstr "" -"Ceci détermine comment les méthodes de livraison multiples sont affichées " -"sur le site." - -#: admin/settings/settings-init.php:858 -msgid "Radio buttons" -msgstr "Boutons radio" - -# @ woocommerce -#: admin/settings/settings-init.php:859 -msgid "Select box" -msgstr "Boite de sélection" - -# @ woocommerce -#: admin/settings/settings-init.php:865 -msgid "Shipping Destination" -msgstr "Destination de la livraison" - -# @ woocommerce -#: admin/settings/settings-init.php:866 -msgid "Only ship to the users billing address" -msgstr "Livrer uniquement à l'adresse de facturation" - -# @ woocommerce -#: admin/settings/settings-init.php:874 -msgid "Ship to billing address by default" -msgstr "Livrer à l'adresse de facturation par défault" - -#: admin/settings/settings-init.php:882 -msgid "Collect shipping address even when not required" -msgstr "Collecter l'adresse de livraison même quand elle n'est pas requise" - -# @ woocommerce -#: admin/settings/settings-init.php:900 -#: admin/woocommerce-admin-settings.php:188 -#: admin/woocommerce-admin-settings.php:329 -msgid "Payment Gateways" -msgstr "Passerelles de Paiement" - -#: admin/settings/settings-init.php:900 -msgid "" -"Installed payment gateways are displayed below. Drag and drop payment " -"gateways to control their display order on the checkout." -msgstr "" -"Vos passerelles de paiement actives sont listées ci-dessous. Cliquez/" -"Deplacez les lignes pour les réordonner pour l'affichage sur la commande." - -# @ woocommerce -#: admin/settings/settings-init.php:918 -#: admin/woocommerce-admin-settings.php:222 -msgid "Tax Options" -msgstr "Options des taxes" - -# @ woocommerce -#: admin/settings/settings-init.php:921 -msgid "Enable Taxes" -msgstr "Activer Taxes" - -# @ woocommerce -#: admin/settings/settings-init.php:922 -msgid "Enable taxes and tax calculations" -msgstr "Activer les taxes et le calcul de taxes" - -#: admin/settings/settings-init.php:929 -msgid "Prices Entered With Tax" -msgstr "Tarifs entrés avec taxe" - -#: admin/settings/settings-init.php:933 -msgid "" -"This option is important as it will affect how you input prices. Changing it " -"will not update existing products." -msgstr "" -"Cette option est importante car elle affecte la façon dont vous saisissez " -"les tarifs. La modifier ne mettra pas à jour des produits existant." - -#: admin/settings/settings-init.php:935 -msgid "Yes, I will enter prices inclusive of tax" -msgstr "Oui, j'entrerai les tarifs TTC" - -#: admin/settings/settings-init.php:936 -msgid "No, I will enter prices exclusive of tax" -msgstr "Non, j'entrerai les tarifs HT" - -#: admin/settings/settings-init.php:941 -msgid "Calculate Tax Based On:" -msgstr "Calcul de taxe basé sur : " - -#: admin/settings/settings-init.php:943 -msgid "This option determines which address is used to calculate tax." -msgstr "" -"Cette option determine quelle adresse est utilisée pour le calcul de taxe." - -# @ woocommerce -#: admin/settings/settings-init.php:947 -msgid "Customer shipping address" -msgstr "Adresse de livraison du client" - -# @ woocommerce -#: admin/settings/settings-init.php:948 -msgid "Customer billing address" -msgstr "Adresse de facturation du client" - -# @ woocommerce -#: admin/settings/settings-init.php:949 admin/settings/settings-init.php:961 -msgid "Shop base address" -msgstr "Adresse de base de la boutique" - -# @ woocommerce -#: admin/settings/settings-init.php:954 -msgid "Default Customer Address:" -msgstr "Adresse client par défaut :" - -#: admin/settings/settings-init.php:956 -msgid "" -"This option determines the customers default address (before they input " -"their own)." -msgstr "" -"Cette option détermine l'adresse par défaut des clients (avant qu'ils ne " -"saisissent la leur)." - -# @ woocommerce -#: admin/settings/settings-init.php:960 -msgid "No address" -msgstr "Aucune adresse" - -# @ woocommerce -#: admin/settings/settings-init.php:966 -msgid "Shipping Tax Class:" -msgstr "Classe de taxe livraison :" - -#: admin/settings/settings-init.php:967 -msgid "" -"Optionally control which tax class shipping gets, or leave it so shipping " -"tax is based on the cart items themselves." -msgstr "" -"Optionnellement détermine quelle classe de taxe de livraison définir, ou " -"laisser de manière à ce que la taxe de livraison soit basée sur les articles " -"du panier." - -#: admin/settings/settings-init.php:972 -msgid "Shipping tax class based on cart items" -msgstr "Classe de taxe de livraison basée sur les articles panier" - -# @ woocommerce -#: admin/settings/settings-init.php:977 -msgid "Rounding" -msgstr "Arrondi" - -#: admin/settings/settings-init.php:978 -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "" -"Arrondir les taxes au niveau du sous-totaux, plutôt que pour chaque ligne" - -# @ woocommerce -#: admin/settings/settings-init.php:985 -msgid "Additional Tax Classes" -msgstr "Classes additionnelles des taxes" - -# @ woocommerce -#: admin/settings/settings-init.php:986 -msgid "" -"List additonal tax classes below (1 per line). This is in addition to the " -"default Standard Rate. Tax classes can be assigned to products." -msgstr "" -"Liste des classes de taxes additonnelles ci-dessous (1 par ligne). Ceci est " -"un ajout aux Taux Standard. Des classes de taxes peuvent être " -"assignées aux produits." - -#: admin/settings/settings-init.php:990 -msgid "Reduced Rate%sZero Rate" -msgstr "Taux Réduit%sTaux Zéro" - -# @ woocommerce -#: admin/settings/settings-init.php:994 -msgid "Display prices during cart/checkout:" -msgstr "Affichage des prix pendant le panier/la commande :" - -# @ woocommerce -#: admin/settings/settings-init.php:999 -msgid "Including tax" -msgstr "TTC" - -# @ woocommerce -#: admin/settings/settings-init.php:1000 -msgid "Excluding tax" -msgstr "HT" - -# @ woocommerce -#: admin/settings/settings-init.php:1012 -msgid "Email Sender Options" -msgstr "Options d'email de l'expéditeur" - -# @ woocommerce -#: admin/settings/settings-init.php:1012 -msgid "" -"The following options affect the sender (email address and name) used in " -"WooCommerce emails." -msgstr "" -"Les options suivantes affectent l'expéditeur (adresse email et nom) utilisé " -"dans les emails WooCommerce." - -# @ woocommerce -#: admin/settings/settings-init.php:1015 -msgid "\"From\" Name" -msgstr "\"From\" Nom" - -# @ woocommerce -#: admin/settings/settings-init.php:1024 -msgid "\"From\" Email Address" -msgstr "\"From\" Adresse email" - -# @ woocommerce -#: admin/settings/settings-init.php:1037 -msgid "Email Template" -msgstr "Modèle d'email" - -# @ woocommerce -#: admin/settings/settings-init.php:1037 -msgid "" -"This section lets you customise the WooCommerce emails. Click here to preview your email template. For more " -"advanced control copy woocommerce/templates/emails/ to " -"yourtheme/woocommerce/emails/." -msgstr "" -"Cette section vous laisse la possibilité de personnaliser les emails " -"WooCommerce. Cliquer ici pour prévisualiser " -"votre modèle d'email. Pour davantage de contrôles copiez " -"woocommerce/templates/emails/ dans votretheme/" -"woocommmerce/emails/." - -# @ woocommerce -#: admin/settings/settings-init.php:1040 -msgid "Header Image" -msgstr "Image d'entête" - -# @ woocommerce -#: admin/settings/settings-init.php:1041 -msgid "" -"Enter a URL to an image you want to show in the email's header. Upload your " -"image using the media uploader." -msgstr "" -"Entrer l'URL d'une image que vous souhaitez afficher dans l'entête de " -"l'email. Transférez votre image en utilisant le transfert de " -"médias." - -# @ woocommerce -#: admin/settings/settings-init.php:1049 -msgid "Email Footer Text" -msgstr "Texte de pied de page de l'email" - -# @ woocommerce -#: admin/settings/settings-init.php:1050 -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "Le texte à afficher dans le pied de page des emails WooCommerce." - -# @ woocommerce -#: admin/settings/settings-init.php:1054 -msgid "Powered by WooCommerce" -msgstr "Propulsé par WooCommerce" - -# @ woocommerce -#: admin/settings/settings-init.php:1058 -msgid "Base Colour" -msgstr "Couleur de base" - -# @ woocommerce -#: admin/settings/settings-init.php:1059 -msgid "" -"The base colour for WooCommerce email templates. Default #557da1." -msgstr "" -"La couleur de base pour les modèles d'emails WooCommerce. Par défaut " -"#557da1." - -# @ woocommerce -#: admin/settings/settings-init.php:1067 -msgid "Background Colour" -msgstr "Couleur du fond" - -# @ woocommerce -#: admin/settings/settings-init.php:1068 -msgid "" -"The background colour for WooCommerce email templates. Default " -"#f5f5f5." -msgstr "" -"La couleur de fond pour les modèles d'emails WooCommerce. Par défaut " -"#f5f5f5." - -# @ woocommerce -#: admin/settings/settings-init.php:1076 -msgid "Email Body Background Colour" -msgstr "Couleur de fond du corps de l'email" - -# @ woocommerce -#: admin/settings/settings-init.php:1077 -msgid "The main body background colour. Default #fdfdfd." -msgstr "" -"La couleur principale du fond du corps. Par défaut #fdfdfd." - -# @ woocommerce -#: admin/settings/settings-init.php:1085 -msgid "Email Body Text Colour" -msgstr "Couleur du texte du corps de l'email" - -# @ woocommerce -#: admin/settings/settings-init.php:1086 -msgid "The main body text colour. Default #505050." -msgstr "" -"La couleur principale du texte du corps. Par défaut #505050." - -# @ woocommerce -#: admin/settings/settings-payment-gateways.php:27 -#: admin/settings/settings-shipping-methods.php:29 -#: admin/woocommerce-admin-init.php:757 -#: admin/woocommerce-admin-taxonomies.php:27 -#: admin/woocommerce-admin-taxonomies.php:121 -msgid "Default" -msgstr "Valeur par défaut" - -# @ woocommerce -#: admin/settings/settings-payment-gateways.php:28 -msgid "Gateway" -msgstr "Passerelle" - -#: admin/settings/settings-payment-gateways.php:45 -msgid "Gateway ID" -msgstr "ID Passerelle" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:23 -msgid "Shipping Methods" -msgstr "Expédition" - -#: admin/settings/settings-shipping-methods.php:25 -msgid "Drag and drop methods to control their display order." -msgstr "" -"Cliquer et déplacer les méthodes pour controler leur ordre d'affichage." - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:30 -msgid "Shipping Method" -msgstr "Méthode de livraison" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:46 -msgid "Method ID" -msgstr "ID de la méthode" - -#: admin/settings/settings-tax-rates.php:29 -msgid "Tax Rates for the \"%s\" Class" -msgstr "Taux de taxe pour la classe \"%s\"" - -#: admin/settings/settings-tax-rates.php:30 -msgid "" -"Define tax rates for countries and states below. See here " -"for available alpha-2 country codes." -msgstr "" -"Défini les taux de taxe pour les pays et états ci-dessous. Voir ici pour les codes pays disponibles." - -#: admin/settings/settings-tax-rates.php:36 -msgid "Country Code" -msgstr "Code Pays" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:36 -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "" -"Un code pays de 2 caractères, ex. FR. Laissez vide pour appliquer à tous." - -#: admin/settings/settings-tax-rates.php:38 -msgid "State Code" -msgstr "Code état" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:38 -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "" -"Un code état de 2 caractères, ex. AL. Laissez vide pour appliquer à tous." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:40 -#: admin/settings/settings-tax-rates.php:217 -msgid "ZIP/Postcode" -msgstr "Code Postal" - -#: admin/settings/settings-tax-rates.php:40 -msgid "" -"Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all areas. Wildcards (*) can be used. Ranges for numeric " -"postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "" -"Code postal pour cette règle. Le point virgule (;) sépare les valeurs " -"multiples. Laisser vide pour l'appliquer à toutes les zones. Les jokers (*) " -"peuvent être utilisées. Les gammes de codes postaux (ex. 77000-77990) seront " -"converties en codes postaux individuels." - -#: admin/settings/settings-tax-rates.php:42 -msgid "" -"Cities for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all cities." -msgstr "" -"Communes pour cette règle. Le point virgule (;) sépare les valeurs " -"multiples. Laisser vide pour appliquer à toutes les communes." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:44 -msgid "Rate %" -msgstr "Taux %" - -#: admin/settings/settings-tax-rates.php:44 -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "Entrez un taux de taxe (en pourcentage) à 4 décimales." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:46 -msgid "Tax Name" -msgstr "Nom Taxe" - -#: admin/settings/settings-tax-rates.php:46 -msgid "Enter a name for this tax rate." -msgstr "Entrez un nom pour ce taux de taxe." - -#: admin/settings/settings-tax-rates.php:48 -#: admin/settings/settings-tax-rates.php:217 -msgid "Priority" -msgstr "Priorité" - -#: admin/settings/settings-tax-rates.php:48 -msgid "" -"Choose a priority for this tax rate. Only 1 matching rate per priority will " -"be used. To define multiple tax rates for a single area you need to specify " -"a different priority per rate." -msgstr "" -"Choisir une priorité pour ce taux de taxe. Seul 1 taux correspondant par " -"priorité sera utilisé. Pour définir des taux de taxe multiples pour une " -"seule zone vous devez spécifier une priorité différente par taux." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:50 -#: admin/settings/settings-tax-rates.php:217 -msgid "Compound" -msgstr "Cumulable" - -#: admin/settings/settings-tax-rates.php:50 -msgid "" -"Choose whether or not this is a compound rate. Compound tax rates are " -"applied on top of other tax rates." -msgstr "" -"Choisissez si oui ou non il s'agit d'un taux cumulable. Les taux cumulables " -"sont appliqués sur les autres taux de taxe." - -#: admin/settings/settings-tax-rates.php:52 -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "Indiquer si cette taxe s'applique ou non aux frais de port." - -#: admin/settings/settings-tax-rates.php:59 -msgid "Insert row" -msgstr "Insérer ligne" - -#: admin/settings/settings-tax-rates.php:60 -msgid "Remove selected row(s)" -msgstr "Supprimer les lignes sélectionnées" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:62 -msgid "Export CSV" -msgstr "Export CSV" - -#: admin/settings/settings-tax-rates.php:63 -msgid "Import CSV" -msgstr "Import CSV" - -#: admin/settings/settings-tax-rates.php:163 -msgid "No row(s) selected" -msgstr "Aucune ligne sélectionnée" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Country Code" -msgstr "Code Pays" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "State Code" -msgstr "Code État" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Rate %" -msgstr "Taux %" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Name" -msgstr "Nom Taxe" - -#: admin/woocommerce-admin-attributes.php:77 -msgid "Please, provide an attribute name, slug and type." -msgstr "Veuillez fournir un nom, slug et type d'attibut." - -#: admin/woocommerce-admin-attributes.php:79 -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "" -"Le slug \"%s\" est trop long (28 caractères max). Veuillez le raccourcir." - -#: admin/woocommerce-admin-attributes.php:81 -msgid "" -"Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "" -"Le slug \"%s\" n'est pas autorisé car c'est un terme réservé. Veuillez le " -"changer." - -#: admin/woocommerce-admin-attributes.php:86 -#: admin/woocommerce-admin-attributes.php:91 -msgid "Slug “%s” is already in use. Change it, please." -msgstr "Le slug \"%s\" est déjà utilisé. Veuillez le changer." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:227 -msgid "Edit Attribute" -msgstr "Modifier l'attribut" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:237 -#: admin/woocommerce-admin-attributes.php:376 -msgid "Name for the attribute (shown on the front-end)." -msgstr "Nom pour l'attribut (affiché dans la partie publique)." - -#: admin/woocommerce-admin-attributes.php:242 -#: admin/woocommerce-admin-attributes.php:308 -#: admin/woocommerce-admin-attributes.php:380 -msgid "Slug" -msgstr "Slug" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:246 -#: admin/woocommerce-admin-attributes.php:382 -msgid "" -"Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "" -"Slug/Référence unique pour l'attribut, doit avoir moins de 28 caractères." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:255 -#: admin/woocommerce-admin-attributes.php:388 -msgid "Select" -msgstr "Choix" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:256 -#: admin/woocommerce-admin-attributes.php:389 -msgid "Text" -msgstr "Texte" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:259 -#: admin/woocommerce-admin-attributes.php:392 -msgid "" -"Determines how you select attributes for products. Text " -"allows manual entry via the product page, whereas select " -"attribute terms can be defined from this section. If you plan on using an " -"attribute for variations use select." -msgstr "" -"Détermine comment vous sélectionnez les attributs des produits. " -"Texte permet une saisie manuelle via la page produit, alors " -"que Choix permet de choisir les attributs à partir de cette " -"section. Si vous planifiez d'utiliser un attribut pour des variations " -"utilisez Choix." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:264 -#: admin/woocommerce-admin-attributes.php:396 -msgid "Default sort order" -msgstr "Tri par défaut" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:268 -#: admin/woocommerce-admin-attributes.php:336 -#: admin/woocommerce-admin-attributes.php:398 -msgid "Custom ordering" -msgstr "Tri personnalisé" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:270 -#: admin/woocommerce-admin-attributes.php:333 -#: admin/woocommerce-admin-attributes.php:400 -msgid "Term ID" -msgstr "ID terme" - -#: admin/woocommerce-admin-attributes.php:272 -#: admin/woocommerce-admin-attributes.php:402 -msgid "" -"Determines the sort order on the frontend for this attribute. If using " -"custom ordering, you can drag and drop the terms in this attribute" -msgstr "" -"Détermine l'ordre de tri sur le site pour cet attribut. Si vous utilisez un " -"tri personnalisé, vous pouvez glisser déposer les termes dans cet attribut" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:277 -msgid "Update" -msgstr "Mettre à jour" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:310 -msgid "Order by" -msgstr "Trié par" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:311 -msgid "Terms" -msgstr "Termes" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:356 -msgid "Configure terms" -msgstr "Configurer les termes" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:360 -msgid "No attributes currently exist." -msgstr "Aucun attribut pour le moment." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:370 -msgid "Add New Attribute" -msgstr "Ajouter un nouvel attribut" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:371 -msgid "" -"Attributes let you define extra product data, such as size or colour. You " -"can use these attributes in the shop sidebar using the \"layered nav\" " -"widgets. Please note: you cannot rename an attribute later on." -msgstr "" -"Les attributs vous laisse définir des données supplémentaires pour les " -"produits, tels que la taille ou la couleur. Vous pouvez utiliser ces " -"attributs dans la barre latérale de la boutique en utilisant les widgets " -"\"layered nav\". Veuillez noter : vous ne pouvez pas renommer un attribut " -"ultérieurement." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:405 -msgid "Add Attribute" -msgstr "Ajouter un attribut" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:416 -msgid "Are you sure you want to delete this attribute?" -msgstr "Êtes vous sur de vouloir supprimer cet attribut?" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:26 -#: admin/woocommerce-admin-reports.php:26 -#: admin/woocommerce-admin-reports.php:66 -#: admin/woocommerce-admin-reports.php:82 -#: admin/woocommerce-admin-reports.php:93 -msgid "Overview" -msgstr "Aperçu" - -#: admin/woocommerce-admin-content.php:29 -msgid "" -"Thank you for using WooCommerce :) Should you need help using or extending " -"WooCommerce please read the documentation. For further " -"assistance you can use the community forum or if you have " -"access, our support desk." -msgstr "" -"Merci d'utiliser WooCommerce :-) Pour de l'aide sur l'utilisation ou " -"l'extension de WooCommerce veuillez lire la documentation. Pour plus d'assistance vous pouvez utiliser le forum de " -"la communauté ou si vous y avez accès, notre équipe de " -"support." - -#: admin/woocommerce-admin-content.php:31 -msgid "" -"If you are having problems, or to assist us with support, please check the " -"status page to identify any problems with your configuration:" -msgstr "" -"Si vous rencontrez des problèmes, ou pour être assisté par le support, " -"veuillez vérifier la page de status pour identifier tous problèmes avec " -"votre configuration : " - -# @ woocommerce -#: admin/woocommerce-admin-content.php:33 admin/woocommerce-admin-init.php:89 -#: admin/woocommerce-admin-status.php:26 -msgid "System Status" -msgstr "État du système" - -#: admin/woocommerce-admin-content.php:35 -msgid "" -"If you come across a bug, or wish to contribute to the project you can also " -"get involved on GitHub." -msgstr "" -"Si vous découvrez un bug, ou que vous souhaitez contribuer au projet vous " -"pouvez également obtenir un accès sur GitHub." - -#: admin/woocommerce-admin-content.php:43 -msgid "" -"Here you can set up your store and customise it to fit your needs. The " -"sections available from the settings page include:" -msgstr "" -"Ici vous pouvez paramétrer votre boutique et la personnaliser selon vos " -"besoins. Les sections disponibles depuis la page des paramètres incluent :" - -#: admin/woocommerce-admin-content.php:44 -msgid "" -"General settings such as your shop base, currency, and script/styling " -"options which affect features used in your store." -msgstr "" -"Paramètres généraux tels que la racine de votre boutique, la monnaie, et les " -"options de scripts et de styles qui affectent les caractéristiques utilisées " -"dans votre magasin." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:45 -#: admin/woocommerce-admin-settings.php:184 -msgid "Pages" -msgstr "Pages" - -#: admin/woocommerce-admin-content.php:45 -msgid "" -"This is where important store page are defined. You can also set up other " -"pages (such as a Terms page) here." -msgstr "" -"C'est la section où les pages importantes du magasin sont définies. Vous " -"pouvez également mettre en place d'autres pages (telle que les CGV) ici." - -#: admin/woocommerce-admin-content.php:46 -msgid "" -"Options for how things like price, images and weights appear in your product " -"catalog." -msgstr "" -"Options pour la manière dont les choses comme le prix, les images et le " -"poids apparaissent dans votre catalogue de produits." - -#: admin/woocommerce-admin-content.php:47 -msgid "Options concerning stock and stock notices." -msgstr "Options concernant le stock et les alertes de stock." - -#: admin/woocommerce-admin-content.php:48 -msgid "Options concerning tax, including international and local tax rates." -msgstr "" -"Options concernant les taxes, incluant les taux de taxes internationnales et " -"locales." - -#: admin/woocommerce-admin-content.php:49 -msgid "" -"This is where shipping options are defined, and shipping methods are set up." -msgstr "" -"C'est la section où les options de livraison sont définies, et que les " -"méthodes de livraison sont définies." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:50 -msgid "Payment Methods" -msgstr "Méthodes de Paiement" - -#: admin/woocommerce-admin-content.php:50 -msgid "" -"This is where payment gateway options are defined, and individual payment " -"gateways are set up." -msgstr "" -"C'est la section où les passerelles de paiement sont définies, et que chaque " -"passerelle est paramétrée." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:51 -#: admin/woocommerce-admin-settings.php:189 -msgid "Emails" -msgstr "Emails" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:51 -msgid "Here you can customise the way WooCommerce emails appear." -msgstr "" -"Ici vous pouvez personnaliser la manière dont les emails WooCommerce " -"apparaissent." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:52 -#: admin/woocommerce-admin-settings.php:190 -msgid "Integration" -msgstr "Intégration" - -#: admin/woocommerce-admin-content.php:52 -msgid "" -"The integration section contains options for third party services which " -"integrate with WooCommerce." -msgstr "" -"La section d'intégration contient les options pour les services tierces qui " -"sont intégrés avec WooCommerce." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:57 admin/woocommerce-admin-init.php:64 -msgid "Reports" -msgstr "Rapports" - -#: admin/woocommerce-admin-content.php:59 -msgid "" -"The reports section can be accessed from the left-hand navigation menu. Here " -"you can generate reports for sales and customers." -msgstr "" -"La section rapports est accessible depuis le menu de navigation de gauche. " -"Là vous pouvez générer des rapports de ventes et de clients." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:60 -#: admin/woocommerce-admin-reports.php:23 -#: admin/woocommerce-admin-reports.php:997 -#: admin/woocommerce-admin-reports.php:1095 -#: admin/woocommerce-admin-reports.php:1214 -msgid "Sales" -msgstr "Ventes" - -#: admin/woocommerce-admin-content.php:60 -msgid "Reports for sales based on date, top sellers and top earners." -msgstr "" -"Rapports des ventes basés sur la date, les meilleures ventes et les " -"meilleurs gains." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:61 -msgid "Coupon usage reports." -msgstr "Rapport d'utilisation des codes promo." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:62 -#: admin/woocommerce-admin-reports.php:79 -msgid "Customers" -msgstr "Clients" - -#: admin/woocommerce-admin-content.php:62 -msgid "Customer reports, such as signups per day." -msgstr "Rapports sur les clients, tels que les inscriptions par jour." - -#: admin/woocommerce-admin-content.php:63 -msgid "Stock reports for low stock and out of stock items." -msgstr "" -"Rapports de stock pour les bas niveaux de stock et les articles épuisés." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:68 -#: admin/woocommerce-admin-dashboard.php:142 -msgid "Orders" -msgstr "Commandes" - -#: admin/woocommerce-admin-content.php:70 -msgid "" -"The orders section can be accessed from the left-hand navigation menu. Here " -"you can view and manage customer orders." -msgstr "" -"La section des commandes est accessible depuis le menu de gauche. Là vous " -"pouvez voir et gérer les commandes client." - -#: admin/woocommerce-admin-content.php:71 -msgid "" -"Orders can also be added from this section if you want to set them up for a " -"customer manually." -msgstr "" -"Les commandes peuvent également être ajoutées depuis cette section si vous " -"voulez les mettre en place manuellement pour un client." - -#: admin/woocommerce-admin-content.php:78 -msgid "" -"Coupons can be managed from this section. Once added, customers will be able " -"to enter coupon codes on the cart/checkout page. If a customer uses a coupon " -"code they will be viewable when viewing orders." -msgstr "" -"Les codes promo peuvent être gérés depuis cette section. Une fois ajoutés, " -"les clients seront en mesure de saisir les codes promo sur la page panier/" -"commande. Si un client utilise un code promo il sera visible lors de la " -"visualisation des commandes." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:82 -msgid "For more information:" -msgstr "Pour plus d'information :" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:83 admin/woocommerce-admin-init.php:62 -#: admin/woocommerce-admin-init.php:71 admin/woocommerce-admin-init.php:404 -msgid "WooCommerce" -msgstr "WooCommerce" - -#: admin/woocommerce-admin-content.php:84 -msgid "Project on WordPress.org" -msgstr "Projet sur WordPress.org" - -#: admin/woocommerce-admin-content.php:85 -msgid "Project on Github" -msgstr "Projet sur Github" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:86 -msgid "WooCommerce Docs" -msgstr "Docs WooCommerce" - -#: admin/woocommerce-admin-content.php:87 -msgid "Official Extensions" -msgstr "Extensions officielles" - -#: admin/woocommerce-admin-content.php:88 -msgid "Official Themes" -msgstr "Thèmes officiels" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:40 -msgid "Monthly Sales" -msgstr "Ventes du mois" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:43 -msgid "WooCommerce Right Now" -msgstr "WooCommerce tout de suite" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:44 -msgid "WooCommerce Recent Orders" -msgstr "Commandes récentes WooCommerce" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:45 -msgid "WooCommerce Recent Reviews" -msgstr "WooCommerce Avis Récents" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:78 -msgid "Shop Content" -msgstr "Contenu de la boutique" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:84 -#: admin/woocommerce-admin-functions.php:200 -#: admin/woocommerce-admin-init.php:761 -#: admin/woocommerce-admin-reports.php:996 -#: admin/woocommerce-admin-reports.php:1094 -msgid "Product" -msgid_plural "Products" -msgstr[0] "Produit" -msgstr[1] "Produits" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:98 -msgid "Product Category" -msgid_plural "Product Categories" -msgstr[0] "Catégorie Produit" -msgstr[1] "Catégories Produit" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:112 -msgid "Product Tag" -msgid_plural "Product Tags" -msgstr[0] "Mot-clé Produit" -msgstr[1] "Mots-clés Produit" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:126 -msgid "Attribute" -msgid_plural "Attributes" -msgstr[0] "Attribut" -msgstr[1] "Attributs" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:148 -msgid "Pending" -msgstr "Attente" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:162 -msgid "On-Hold" -msgstr "En attente" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:190 -msgid "Completed" -msgstr "Terminée" - -#: admin/woocommerce-admin-dashboard.php:207 -msgid "You are using WooCommerce %s." -msgstr "Vous utilisez WooCommerce %s." - -#: admin/woocommerce-admin-dashboard.php:238 -msgid "l jS \\of F Y h:i:s A" -msgstr "l j F Y h:i:s" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:239 -msgid "item" -msgid_plural "items" -msgstr[0] "élément" -msgstr[1] "éléments" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:239 -msgid "Total:" -msgstr "Total :" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:245 -msgid "There are no product orders yet." -msgstr "Il n'y a pas encore de commande produit." - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:279 -msgid "out of 5" -msgstr "sur 5" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:287 -msgid "There are no product reviews yet." -msgstr "Il n'y a pas encore d'avis de produits" - -#: admin/woocommerce-admin-dashboard.php:428 -msgid "Sold" -msgstr "Vendu" - -#: admin/woocommerce-admin-dashboard.php:429 -msgid "Earned" -msgstr "Gagné" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:190 -#: admin/woocommerce-admin-install.php:225 -msgid "Order Received" -msgstr "Commande reçue" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:192 -msgid "" -"Thank you, we are now processing your order. Your order's details are below." -msgstr "" -"Merci, nous traitons votre commande. Les détails de la commande sont ci-" -"dessous." - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:194 -msgid "Order:" -msgstr "Commande :" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:201 -msgid "Quantity" -msgstr "Quantité" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:214 -msgid "Order total:" -msgstr "Total commande :" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:220 -msgid "Customer details" -msgstr "Détails Client" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:226 -msgid "Billing address" -msgstr "Adresse de facturation" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:233 -msgid "Shipping address" -msgstr "Adresse de livraison" - -#: admin/woocommerce-admin-functions.php:465 -msgid "Could not compile woocommerce.less:" -msgstr "Impossible de compiler woocommerce.less :" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:486 -#: admin/woocommerce-admin-functions.php:487 -msgid "Mark processing" -msgstr "Marquée en cours" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:489 -#: admin/woocommerce-admin-functions.php:490 -msgid "Mark completed" -msgstr "Marquée terminée" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:527 -msgid "Order status changed by bulk edit:" -msgstr "État de commandes modifiées en lot : " - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:550 -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "État de la commande modifié." -msgstr[1] "%s états de commandes modifiés." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:88 -msgid "WooCommerce Settings" -msgstr "Paramètres WooCommerce" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:89 -msgid "WooCommerce Status" -msgstr "Paramètres WooCommerce" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:142 admin/woocommerce-admin-init.php:144 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Commandes" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:433 -msgid "" -"Are you sure you want to remove the selected items? If you have previously " -"reduced this item's stock, or this order was submitted by a customer, you " -"will need to manually restore the item's stock." -msgstr "" -"Etes-vous certain de vouloir supprimer ces articles ? Si vous avez " -"précédemment réduit le stock de cet article, ou bien si cette commande a été " -"envoyée par un client, vous devrez manuellement restaurer le stock de cet " -"article." - -#: admin/woocommerce-admin-init.php:434 -msgid "Please select some items." -msgstr "Veuillez sélectionner quelques articles." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:435 -msgid "Remove this item meta?" -msgstr "Supprimer le méta de cet article ?" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:436 -msgid "Remove this attribute?" -msgstr "Enlever cet attribut ?" - -#: admin/woocommerce-admin-init.php:444 -msgid "Enter a name for the new attribute term:" -msgstr "Entrez un nom pour le nouvel attibut du terme :" - -#: admin/woocommerce-admin-init.php:445 -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "" -"Calculer les totaux basés sur l'ordre des articles, les remises, et la " -"livraison ?" - -#: admin/woocommerce-admin-init.php:446 -msgid "" -"Calculate line taxes? This will calculate taxes based on the customers " -"country. If no billing/shipping is set it will use the store base country." -msgstr "" -"Calculer les taxes en ligne ? Cela calculera les taxes basées sur le pays " -"des clients. Si aucune facture/livraison n'est paramétrée cela prendra le " -"pays de base de la boutique." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:447 -msgid "" -"Copy billing information to shipping information? This will remove any " -"currently entered shipping information." -msgstr "" -"Copier les informations de facturation vers les informations d'expédition? " -"Ceci enlèvera tout ce qui a été entré dans les informations d'expédition." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:448 -msgid "" -"Load the customer's billing information? This will remove any currently " -"entered billing information." -msgstr "" -"Charger les informations de facturation du client ? Ceci supprimera toutes " -"les informations de facturation actuellement saisies." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:449 -msgid "" -"Load the customer's shipping information? This will remove any currently " -"entered shipping information." -msgstr "" -"Charger les informations de livraison du client ? Ceci supprimera toutes les " -"informations de livraison actuellement saisies." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:453 -msgid "No customer selected" -msgstr "Aucun client sélectionné" - -#: admin/woocommerce-admin-init.php:665 -msgid "Product updated. View Product" -msgstr "Produit mise à jour. Voir le produit" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:666 admin/woocommerce-admin-init.php:681 -#: admin/woocommerce-admin-init.php:696 -msgid "Custom field updated." -msgstr "Champ personnalisé mis à jour." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:667 admin/woocommerce-admin-init.php:682 -#: admin/woocommerce-admin-init.php:697 -msgid "Custom field deleted." -msgstr "Champ personnalisé supprimé." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:668 -msgid "Product updated." -msgstr "Produit mis à jour." - -#: admin/woocommerce-admin-init.php:669 -msgid "Product restored to revision from %s" -msgstr "Produit restoré à la révision de %s" - -#: admin/woocommerce-admin-init.php:670 -msgid "Product published. View Product" -msgstr "Produit publié. Voir le produit" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:671 -msgid "Product saved." -msgstr "Produit sauvegardé." - -#: admin/woocommerce-admin-init.php:672 -msgid "Product submitted. Preview Product" -msgstr "" -"Produit soumis. Prévisualiser le produit" - -#: admin/woocommerce-admin-init.php:673 -msgid "" -"Product scheduled for: %1$s. Preview Product" -msgstr "" -"Produit programmé pour : %1$s. Prévisualiser le produit" - -#: admin/woocommerce-admin-init.php:674 admin/woocommerce-admin-init.php:689 -#: admin/woocommerce-admin-init.php:704 -msgid "M j, Y @ G:i" -msgstr "j M Y @ G:i" - -#: admin/woocommerce-admin-init.php:675 -msgid "" -"Product draft updated. Preview Product" -msgstr "" -"Produits en brouillon mis à jour. Prévisualiser le produit" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:680 admin/woocommerce-admin-init.php:683 -#: admin/woocommerce-admin-init.php:685 -msgid "Order updated." -msgstr "Commande mise à jour." - -#: admin/woocommerce-admin-init.php:684 -msgid "Order restored to revision from %s" -msgstr "Commande restorée à la révision de %s" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:686 -msgid "Order saved." -msgstr "Commande sauvegardée." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:687 -msgid "Order submitted." -msgstr "Commande soumise." - -#: admin/woocommerce-admin-init.php:688 -msgid "Order scheduled for: %1$s." -msgstr "Commande programmée pour : %1$s." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:690 -msgid "Order draft updated." -msgstr "Commande en brouillon mise à jour." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:695 admin/woocommerce-admin-init.php:698 -#: admin/woocommerce-admin-init.php:700 -msgid "Coupon updated." -msgstr "Code promo mis à jour." - -#: admin/woocommerce-admin-init.php:699 -msgid "Coupon restored to revision from %s" -msgstr "Code Promo restoré à la révision de %s" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:701 -msgid "Coupon saved." -msgstr "Code Promo sauvegardé." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:702 -msgid "Coupon submitted." -msgstr "Code Promo soumis." - -#: admin/woocommerce-admin-init.php:703 -msgid "Coupon scheduled for: %1$s." -msgstr "Code Promo programmé pour : %1$s." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:705 -msgid "Coupon draft updated." -msgstr "Code Promo en brouillon mis à jour." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:722 -msgid "Order notes" -msgstr "Notes de la commande" - -#: admin/woocommerce-admin-init.php:737 -msgid "" -"These settings control the permalinks used for products. These settings only " -"apply when not using \"default\" permalinks above." -msgstr "" -"Ces paramètres controlent les permaliens utilisés pour les produits. Ces " -"paramètres s'appliquent uniquement lorsque les permaliens par défaut " -"ne sont pas utilisés." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:744 -msgctxt "default-slug" -msgid "shop" -msgstr "boutique" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:745 -msgctxt "default-slug" -msgid "product" -msgstr "produit" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:766 -msgid "Shop base" -msgstr "Base de la boutique" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:770 -msgid "Shop base with category" -msgstr "Base de la boutique avec catégorie" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:776 -msgid "Custom Base" -msgstr "Base personnalisée" - -#: admin/woocommerce-admin-init.php:778 -msgid "" -"Enter a custom base to use. A base must be set or WordPress " -"will use default instead." -msgstr "" -"Entrez une base personnalisé à utiliser. Une base doit être " -"paramétrée ou WordPress utilisera la valeur par défault." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:806 -msgid "Product permalink base" -msgstr "Base permalien produit" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:811 -msgid "Product category base" -msgstr "Base catégorie produit" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:818 -msgid "Product tag base" -msgstr "Base mot clé produit" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:825 -msgid "Product attribute base" -msgstr "Base attribut produit" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:195 -msgctxt "page_slug" -msgid "shop" -msgstr "boutique" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:195 -msgid "Shop" -msgstr "Boutique" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:198 -msgctxt "page_slug" -msgid "cart" -msgstr "panier" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:198 -#: admin/woocommerce-admin-status.php:303 -msgid "Cart" -msgstr "Panier" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:201 -msgctxt "page_slug" -msgid "checkout" -msgstr "commande" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:204 -msgctxt "page_slug" -msgid "my-account" -msgstr "mon-compte" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:204 -#: admin/woocommerce-admin-status.php:319 -msgid "My Account" -msgstr "Mon Compte" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:210 -msgctxt "page_slug" -msgid "edit-address" -msgstr "modification-adresse" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:210 -msgid "Edit My Address" -msgstr "Modifier mon adresse" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:213 -msgctxt "page_slug" -msgid "view-order" -msgstr "voir-commande" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:213 -#: admin/woocommerce-admin-status.php:327 -msgid "View Order" -msgstr "Voir la commande" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:216 -msgctxt "page_slug" -msgid "change-password" -msgstr "changer-mot-de-passe" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:216 -#: admin/woocommerce-admin-status.php:331 -msgid "Change Password" -msgstr "Changer de mot de passe" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:219 -msgctxt "page_slug" -msgid "logout" -msgstr "deconnexion" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:219 -msgid "Logout" -msgstr "Déconnexion" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:222 -msgctxt "page_slug" -msgid "pay" -msgstr "Payer" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:222 -msgid "Checkout → Pay" -msgstr "Commande → Paiement" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:225 -msgctxt "page_slug" -msgid "order-received" -msgstr "commande-recue" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:32 -msgid "Sales by day" -msgstr "Ventes par jour" - -#: admin/woocommerce-admin-reports.php:37 -msgid "Sales by month" -msgstr "Ventes par mois" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:42 -msgid "Product Sales" -msgstr "Ventes produits" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:47 -msgid "Top sellers" -msgstr "Top ventes" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:52 -msgid "Top earners" -msgstr "Top gains" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:57 -msgid "Sales by category" -msgstr "Ventes par catégorie" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:72 -msgid "Discounts by coupon" -msgstr "Remises par code promo" - -#: admin/woocommerce-admin-reports.php:104 -msgid "Taxes by month" -msgstr "Taxes par mois" - -#: admin/woocommerce-admin-reports.php:243 -#: admin/woocommerce-admin-reports.php:508 -#: admin/woocommerce-admin-reports.php:713 -#: admin/woocommerce-admin-reports.php:894 -msgid "Sales amount" -msgstr "Montant des ventes" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:248 -#: admin/woocommerce-admin-reports.php:508 -#: admin/woocommerce-admin-reports.php:713 -#: admin/woocommerce-admin-reports.php:894 -msgid "Number of sales" -msgstr "Nombre de ventes" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:380 -msgid "Total sales" -msgstr "Total des ventes" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:382 -#: admin/woocommerce-admin-reports.php:388 -#: admin/woocommerce-admin-reports.php:394 -#: admin/woocommerce-admin-reports.php:400 -#: admin/woocommerce-admin-reports.php:406 -#: admin/woocommerce-admin-reports.php:412 -#: admin/woocommerce-admin-reports.php:655 -#: admin/woocommerce-admin-reports.php:661 -#: admin/woocommerce-admin-reports.php:667 -#: admin/woocommerce-admin-reports.php:673 -#: admin/woocommerce-admin-reports.php:839 -#: admin/woocommerce-admin-reports.php:845 -#: admin/woocommerce-admin-reports.php:851 -#: admin/woocommerce-admin-reports.php:857 -#: admin/woocommerce-admin-reports.php:1380 -#: admin/woocommerce-admin-reports.php:1386 -#: admin/woocommerce-admin-reports.php:1392 -#: admin/woocommerce-admin-reports.php:1826 -#: admin/woocommerce-admin-reports.php:1832 -#: admin/woocommerce-admin-reports.php:1838 -#: admin/woocommerce-admin-reports.php:1844 -#: admin/woocommerce-admin-reports.php:1850 -#: admin/woocommerce-admin-reports.php:1856 -#: admin/woocommerce-admin-reports.php:2320 -#: admin/woocommerce-admin-reports.php:2331 -#: admin/woocommerce-admin-reports.php:2342 -msgid "n/a" -msgstr "n/a" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:386 -msgid "Total orders" -msgstr "Total commandes" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:388 -#: admin/woocommerce-admin-reports.php:661 -#: admin/woocommerce-admin-reports.php:845 -msgid "items" -msgstr "éléments" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:392 -msgid "Average order total" -msgstr "Montant moyen des commandes" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:398 -msgid "Average order items" -msgstr "Moyenne des éléments commandés" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:404 -msgid "Discounts used" -msgstr "Remises utilisées" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:410 -msgid "Total shipping costs" -msgstr "Total des frais de livraison" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:418 -msgid "This month's sales" -msgstr "Ventes du mois" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1372 -msgid "From:" -msgstr "A partir de :" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1372 -msgid "To:" -msgstr "Au :" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:832 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1245 -#: admin/woocommerce-admin-reports.php:1372 -#: admin/woocommerce-admin-reports.php:1505 -#: admin/woocommerce-admin-reports.php:2309 -#: admin/woocommerce-admin-reports.php:2492 -msgid "Show" -msgstr "Afficher" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:653 -msgid "Total sales in range" -msgstr "Total ventes sur la période" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:659 -msgid "Total orders in range" -msgstr "Total commandes sur la période" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:665 -msgid "Average order total in range" -msgstr "Total moyen de commandes sur la période" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:671 -msgid "Average order items in range" -msgstr "Moyenne des articles commandés sur la période" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:679 -msgid "Sales in range" -msgstr "Ventes sur la période" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:826 -#: admin/woocommerce-admin-reports.php:2303 -msgid "Year:" -msgstr "Année :" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:837 -msgid "Total sales for year" -msgstr "Total ventes sur l'année" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:843 -msgid "Total orders for year" -msgstr "Total commandes sur l'année" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:849 -msgid "Average order total for year" -msgstr "Montant moyen des commandes sur l'année" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:855 -msgid "Average order items for year" -msgstr "Moyenne d'articles commandés sur l'année" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:863 -msgid "Monthly sales for year" -msgstr "Ventes mensuelles sur l'année" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1011 -msgid "Product does not exist" -msgstr "Produit inexistant" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1110 -msgid "Product no longer exists" -msgstr "Produit n'existant plus" - -#: admin/woocommerce-admin-reports.php:1209 -msgid "Sales for %s:" -msgstr "Ventes pour %s :" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1213 -#: admin/woocommerce-admin-reports.php:2351 -msgid "Month" -msgstr "Mois" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1235 -msgid "No sales :(" -msgstr "Pas de Ventes :(" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1378 -msgid "Total orders containing coupons" -msgstr "Total des commandes contenant des codes promo" - -#: admin/woocommerce-admin-reports.php:1384 -msgid "Percent of orders containing coupons" -msgstr "Pourcentage de commandes contenant des codes promo" - -#: admin/woocommerce-admin-reports.php:1390 -msgid "Total coupon discount" -msgstr "Total de remise Codes promo" - -#: admin/woocommerce-admin-reports.php:1399 -msgid "Most popular coupons" -msgstr "Codes promo les plus populaires" - -#: admin/woocommerce-admin-reports.php:1409 -msgid "Used 1 time" -msgid_plural "Used %d times" -msgstr[0] "Utilisé 1 fois" -msgstr[1] "Utilisé %d fois" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1412 -#: admin/woocommerce-admin-reports.php:1434 -msgid "No coupons found" -msgstr "Aucun code promo trouvé" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1421 -msgid "Greatest discount amount" -msgstr "Quantité des plus grandes remises" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1431 -msgid "Discounted %s" -msgstr "Remisé %s" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1490 -#: admin/woocommerce-admin-reports.php:2469 -msgid "Show:" -msgstr "Afficher :" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1547 -msgid "Coupon" -msgstr "Code Promo" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1630 -msgid "Top coupon" -msgstr "Top code promo" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1638 -msgid "Worst coupon" -msgstr "Pire code promo" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1646 -msgid "Discount average" -msgstr "Remise moyenne" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1654 -msgid "Discount median" -msgstr "Remise médiane" - -#: admin/woocommerce-admin-reports.php:1674 -msgid "Monthly discounts by coupon" -msgstr "Remises mensuelles par code promo" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1824 -msgid "Total customers" -msgstr "Total des clients" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1830 -msgid "Total customer sales" -msgstr "Total ventes clients" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1836 -msgid "Total guest sales" -msgstr "Total ventes invités" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1842 -msgid "Total customer orders" -msgstr "Total commandes clients" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1848 -msgid "Total guest orders" -msgstr "Total commandes invités" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1854 -msgid "Average orders per customer" -msgstr "Moyenne de commandes par client" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1862 -msgid "Signups per day" -msgstr "Inscriptions par jour" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2083 -msgid "Low stock" -msgstr "Stock faible" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2106 -#: admin/woocommerce-admin-reports.php:2145 -msgid "%d in stock" -msgid_plural "%d in stock" -msgstr[0] " %d en stock" -msgstr[1] " %d en stock" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2111 -msgid "No products are low in stock." -msgstr "Aucun produit en stock faible." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2143 -msgid "Marked out of stock" -msgstr "Marquer épuisé" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2150 -msgid "No products are out in stock." -msgstr "Aucun produit épuisé." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2314 -msgid "Total taxes for year" -msgstr "Total des taxes sur l'année" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2325 -msgid "Total product taxes for year" -msgstr "Total des taxes de produits sur l'année" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2336 -msgid "Total shipping tax for year" -msgstr "Total des taxe de livraison sur l'année" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2352 -msgid "Total Sales" -msgstr "Total des ventes" - -#: admin/woocommerce-admin-reports.php:2352 -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "C'est la somme du champ 'Total Commande' de vos commandes." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2353 -msgid "Total Shipping" -msgstr "Total livraison" - -#: admin/woocommerce-admin-reports.php:2353 -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "C'est la somme du champ 'Total Livraison' de vos commandes." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2354 -msgid "Total Product Taxes" -msgstr "Total des taxes produits" - -#: admin/woocommerce-admin-reports.php:2354 -msgid "This is the sum of the 'Cart Tax' field within your orders." -msgstr "C'est la somme du champ 'Taxe du Panier' de vos commandes." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2355 -msgid "Total Shipping Taxes" -msgstr "Total des taxes de livraison" - -#: admin/woocommerce-admin-reports.php:2355 -msgid "This is the sum of the 'Shipping Tax' field within your orders." -msgstr "C'est la somme du champ 'Taxe de Livraison' de vos commandes." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2356 -msgid "Total Taxes" -msgstr "Total des taxes" - -#: admin/woocommerce-admin-reports.php:2356 -msgid "" -"This is the sum of the 'Cart Tax' and 'Shipping Tax' fields within your " -"orders." -msgstr "" -"C'est la somme des champs 'Taxe du Panier' et 'Taxe de Livraison' de vos " -"commandes." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2357 -msgid "Net profit" -msgstr "Profit net" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2357 -msgid "Total sales minus shipping and tax." -msgstr "Total des ventes diminué de la livraison et des taxes." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2402 -msgid "Toggle tax rows" -msgstr "Basculer les lignes de taxe" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2545 -msgid "Category" -msgstr "Catégorie" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2648 -msgid "Top category" -msgstr "Top catégorie" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2657 -msgid "Worst category" -msgstr "Pire catégorie" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2665 -msgid "Category sales average" -msgstr "Moyenne des ventes catégories" - -#: admin/woocommerce-admin-reports.php:2676 -msgid "Category sales median" -msgstr "Ventes dans la catégorie médiane" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2696 -msgid "Monthly sales by category" -msgstr "Ventes mensuelles par catégorie" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:45 -msgid "Action failed. Please refresh the page and retry." -msgstr "L'action a échoué. Rafraîchissez la page et essayez à nouveau, svp." - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:164 -msgid "Your settings have been saved." -msgstr "Vos paramètres ont été enregistrés." - -#: admin/woocommerce-admin-settings.php:210 -msgid "" -"More functionality and gateway options available via WC official extensions." -msgstr "" -"Plus de fonctionnalités et d'options de passerelle disponibles sur Extensions WC officielles." - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:228 -msgid "Tax Rates" -msgstr "Taux de taxe" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:255 -msgid "Email Options" -msgstr "Options d'email" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:388 -msgid "Save changes" -msgstr "Enregistrer les changements" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:429 -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "Les changements effectués seront perdus si vous quittez cette page." - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:801 -msgid "Hard Crop" -msgstr "Recadrage forcé" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:826 -msgid "Select a page…" -msgstr "Sélectionnez une page…" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:849 -msgid "Choose a country…" -msgstr "Choisissez un pays…" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:869 -msgid "Choose countries…" -msgstr "Choisissez des pays…" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:27 -#: admin/woocommerce-admin-status.php:664 -msgid "Tools" -msgstr "Outils" - -#: admin/woocommerce-admin-status.php:62 -msgid "Please include this information when requesting support:" -msgstr "Veuillez inclure cette information lorsque vous contactez le support :" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:63 -msgid "Download System Report File" -msgstr "Télécharger le Fichier de Report Système" - -#: admin/woocommerce-admin-status.php:71 -msgid "Environment" -msgstr "Environnement" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:77 -msgid "Home URL" -msgstr "URL accueil" - -#: admin/woocommerce-admin-status.php:81 -msgid "Site URL" -msgstr "URL du site" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:85 -msgid "WC Version" -msgstr "Version WC" - -#: admin/woocommerce-admin-status.php:89 -msgid "WC Database Version" -msgstr "WC Version Base de Données" - -#: admin/woocommerce-admin-status.php:93 -msgid "WP Version" -msgstr "Version WP" - -#: admin/woocommerce-admin-status.php:97 -msgid "Web Server Info" -msgstr "Infos Serveur Web" - -#: admin/woocommerce-admin-status.php:101 -msgid "PHP Version" -msgstr "Version PHP" - -#: admin/woocommerce-admin-status.php:105 -msgid "MySQL Version" -msgstr "Version MySQL" - -#: admin/woocommerce-admin-status.php:109 -msgid "WP Memory Limit" -msgstr "WP Limite mémoire" - -#: admin/woocommerce-admin-status.php:114 -msgid "" -"%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "" -"%s - Nous recommandons une mémoire d'au moins 64Mo. Voir : Augmenter la mémoire allouée à PHP " - -#: admin/woocommerce-admin-status.php:121 -msgid "WP Debug Mode" -msgstr "WP Mode débug" - -#: admin/woocommerce-admin-status.php:125 -msgid "WP Max Upload Size" -msgstr "WP Téléchargement max." - -#: admin/woocommerce-admin-status.php:129 -msgid "PHP Post Max Size" -msgstr "Poids Max Post PHP" - -#: admin/woocommerce-admin-status.php:133 -msgid "PHP Time Limit" -msgstr "Limite d'exécution PHP" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:137 -msgid "WC Logging" -msgstr "WC Connexion" - -#: admin/woocommerce-admin-status.php:140 -msgid "Log directory is writable." -msgstr "Le dossier Log est accessible en écriture." - -#: admin/woocommerce-admin-status.php:142 -msgid "" -"Log directory (woocommerce/logs/) is not writable. Logging will " -"not be possible." -msgstr "" -"Le dossier Log (woocommerce/logs/) n'est pas accessible en " -"écriture. L'enregistrement sera impossible." - -#: admin/woocommerce-admin-status.php:149 -msgid "fsockopen/cURL" -msgstr "fsockopen/cURL" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:152 -msgid "Your server has fsockopen and cURL enabled." -msgstr "Votre serveur a fsockopen et cURL activés." - -#: admin/woocommerce-admin-status.php:154 -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "Votre serveur a fsockopen actif, cURL est désactivé." - -#: admin/woocommerce-admin-status.php:156 -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "Votre serveur a cURL actif, fsockopen est désactivé." - -#: admin/woocommerce-admin-status.php:160 -msgid "" -"Your server does not have fsockopen or cURL enabled - PayPal IPN and other " -"scripts which communicate with other servers will not work. Contact your " -"hosting provider." -msgstr "" -"Votre serveur n'a pas fsockopen ou cURL actifs - Paypal IPN et les autres " -"scripts qui communiquent avec d'autres serveurs ne fonctionneront pas. " -"Contacter votre hébergeur." - -#: admin/woocommerce-admin-status.php:165 -msgid "SOAP Client" -msgstr "SOAP Client" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:167 -msgid "Your server has the SOAP Client class enabled." -msgstr "Votre serveur a la classe SOAP Client activée." - -#: admin/woocommerce-admin-status.php:170 -msgid "" -"Your server does not have the SOAP Client class enabled - " -"some gateway plugins which use SOAP may not work as expected." -msgstr "" -"Votre serveur n'a pas la classe SOAP Client activée - " -"certaines extensions de passerelles qui utilisent SOAP peuvent ne pas " -"fonctionner comme prévu." - -#: admin/woocommerce-admin-status.php:175 -msgid "WP Remote Post" -msgstr "WP Publication Distante" - -#: admin/woocommerce-admin-status.php:186 -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "wp_remote_post() est un succès - PayPal IPN fonctionne." - -#: admin/woocommerce-admin-status.php:189 -msgid "" -"wp_remote_post() failed. PayPal IPN won't work with your server. Contact " -"your hosting provider. Error:" -msgstr "" -"wp_remote_post() est un échec. PayPal IPN ne fonctionnera pas sur votre " -"serveur. Contactez votre hébergeur. Erreur : " - -#: admin/woocommerce-admin-status.php:192 -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "" -"wp_remote_post() est un échec. PayPal IPN ne devrait pas fonctionner sur " -"votre serveur." - -#: admin/woocommerce-admin-status.php:215 -msgid "Plugins" -msgstr "Extensions" - -#: admin/woocommerce-admin-status.php:221 -msgid "Installed Plugins" -msgstr "Extensions installées" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:259 -msgid "is available" -msgstr "est disponible" - -#: admin/woocommerce-admin-status.php:262 -msgid "by" -msgstr "par" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:262 -msgid "version" -msgstr "version" - -#: admin/woocommerce-admin-status.php:285 -msgid "Force SSL" -msgstr "Forcer le SSL" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:292 -msgid "WC Pages" -msgstr "Pages WC" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:299 -msgid "Shop Base" -msgstr "Base Boutique" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:311 -msgid "Pay" -msgstr "Payer" - -#: admin/woocommerce-admin-status.php:315 -msgid "Thanks" -msgstr "Merci" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:323 -msgid "Edit Address" -msgstr "Modifier adresse" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:355 -msgid "Page not set" -msgstr "Page non définie" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:365 -msgid "Page does not exist" -msgstr "Page inexistante" - -#: admin/woocommerce-admin-status.php:370 -msgid "Page does not contain the shortcode: %s" -msgstr "La page ne contient pas le shortcode : %s" - -#: admin/woocommerce-admin-status.php:389 -msgid "WC Taxonomies" -msgstr "Taxonomies WC" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:395 -msgid "Order Statuses" -msgstr "États de commande" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:405 -msgid "Product Types" -msgstr "Types de produit" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:418 -msgid "Templates" -msgstr "Modèles HTML" - -#: admin/woocommerce-admin-status.php:424 -msgid "Template Overrides" -msgstr "Modifications du modèle html" - -#: admin/woocommerce-admin-status.php:442 -msgid "No core overrides present in theme." -msgstr "Aucune modification des sources présente dans le thème." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:537 -msgid "WC Transients" -msgstr "Données temporaires WC" - -#: admin/woocommerce-admin-status.php:538 -msgid "Clear transients" -msgstr "Effacer les données temporaires" - -#: admin/woocommerce-admin-status.php:539 -msgid "This tool will clear the product/shop transients cache." -msgstr "Cet outil effacera le cache des fichiers temporaires produit/boutique." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:542 -msgid "Expired Transients" -msgstr "Données temporaires expirées" - -#: admin/woocommerce-admin-status.php:543 -msgid "Clear expired transients" -msgstr "Effacer les données temporaires expirées" - -#: admin/woocommerce-admin-status.php:544 -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "Cet outil effacera TOUTES les données temporaires de WordPress." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:547 -msgid "Term counts" -msgstr "Comptes des termes" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:548 -msgid "Recount terms" -msgstr "Recount terms" - -#: admin/woocommerce-admin-status.php:549 -msgid "" -"This tool will recount product terms - useful when changing your settings in " -"a way which hides products from the catalog." -msgstr "" -"Cet outil recomptera les termes produit - utile lorsque vous changez vos " -"paramètres d'une manière qui cache les produits du catalogue." - -#: admin/woocommerce-admin-status.php:552 -msgid "Capabilities" -msgstr "Permissions" - -#: admin/woocommerce-admin-status.php:553 -msgid "Reset capabilities" -msgstr "Réinitialiser les permissions" - -#: admin/woocommerce-admin-status.php:554 -msgid "" -"This tool will reset the admin, customer and shop_manager roles to default. " -"Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "" -"Cet outil réinitialise les rôles de l'administrateur, du client et du " -"gestionnaire aux valeurs par défaut. A utiliser si vos utilisateurs ne " -"peuvent plus accéder aux pages d'administration de WooCommerce." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:557 -msgid "Customer Sessions" -msgstr "Sessions Client" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:558 -msgid "Clear all sessions" -msgstr "Vider toutes les sessions" - -#: admin/woocommerce-admin-status.php:559 -msgid "" -"Warning This tool will delete all customer " -"session data from the database, including any current live carts." -msgstr "" -"Attention Cet outil détruira toutes les " -"données de session client de la base de données, incluant les paniers en " -"cours." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:569 -msgid "Product Transients Cleared" -msgstr "Produits transitoires effacés" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:610 -msgid "%d Transients Rows Cleared" -msgstr "%d ligne de données temporaires effacés" - -#: admin/woocommerce-admin-status.php:618 -msgid "Roles successfully reset" -msgstr "Rôles réinitialisés avec succès" - -#: admin/woocommerce-admin-status.php:630 -msgid "Terms successfully recounted" -msgstr "Termes recomptés avec succès" - -#: admin/woocommerce-admin-status.php:649 -msgid "There was an error calling %s::%s" -msgstr "Il y a une erreur en appelant %s::%s " - -#: admin/woocommerce-admin-status.php:652 -msgid "There was an error calling %s" -msgstr "Il y a une erreur en appelant %s" - -#: admin/woocommerce-admin-taxonomies.php:25 -#: admin/woocommerce-admin-taxonomies.php:118 -msgid "Display type" -msgstr "Type d'affichage" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:29 -#: admin/woocommerce-admin-taxonomies.php:123 -msgid "Subcategories" -msgstr "Sous-catégories" - -#: admin/woocommerce-admin-taxonomies.php:30 -#: admin/woocommerce-admin-taxonomies.php:124 -msgid "Both" -msgstr "Ensemble" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:34 -#: admin/woocommerce-admin-taxonomies.php:129 -msgid "Thumbnail" -msgstr "Vignette" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:38 -#: admin/woocommerce-admin-taxonomies.php:134 -msgid "Upload/Add image" -msgstr "Transférer/Ajouter image" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:39 -#: admin/woocommerce-admin-taxonomies.php:135 -msgid "Remove image" -msgstr "Supprimer image" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:64 -#: admin/woocommerce-admin-taxonomies.php:156 -msgid "Use image" -msgstr "Utiliser l’image" - -#: admin/woocommerce-admin-taxonomies.php:222 -msgid "" -"Product categories for your store can be managed here. To change the order " -"of categories on the front-end you can drag and drop to sort them. To see " -"more categories listed click the \"screen options\" link at the top of the " -"page." -msgstr "" -"Les catégories de produit pour votre boutique peuvent être gérées ici. Pour " -"changer l'ordre des catégories sur le site vous pouvez les cliquer/déplacer " -"pour les ordonner. Pour voir plus de catégories listées cliquer le lien " -"\"Options de l'écran\" en haut de la page." - -#: admin/woocommerce-admin-taxonomies.php:237 -msgid "" -"Shipping classes can be used to group products of similar type. These groups " -"can then be used by certain shipping methods to provide different rates to " -"different products." -msgstr "" -"Les classes de livraison peuvent être utilisées pour grouper des produits " -"similaires. Ces groupes peuvent alors être utilisés par certaines méthodes " -"de livraison pour fournir différents taux à différents produits." - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:365 -msgid "Edit Class" -msgstr "Modifier la classe" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:26 -msgid "Billing Address" -msgstr "Adresse de Facturation" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:27 -msgid "Shipping Address" -msgstr "Adresse de Livraison" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:28 -msgid "Paying Customer?" -msgstr "Règlement Client ?" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:29 -msgid "Completed Orders" -msgstr "Commandes terminées" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:144 -msgid "Customer Billing Address" -msgstr "Adresse de facturation du client" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:147 admin/woocommerce-admin-users.php:196 -msgid "First name" -msgstr "Prénom" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:151 admin/woocommerce-admin-users.php:200 -msgid "Last name" -msgstr "Nom" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:176 -msgid "Country or state code" -msgstr "Code du pays ou de l'état" - -#: admin/woocommerce-admin-users.php:180 admin/woocommerce-admin-users.php:229 -msgid "2 letter Country code" -msgstr "2 lettres du code pays" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:183 -msgid "Telephone" -msgstr "Téléphone" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:193 -msgid "Customer Shipping Address" -msgstr "Adresse de livraison du client" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:225 -msgid "State/County or state code" -msgstr "État/Pays ou code de l'état" - -#. Plugin URI of the plugin/theme -msgid "http://www.woothemes.com/woocommerce/" -msgstr "http://www.woothemes.com/woocommerce/" - -#. Description of the plugin/theme -msgid "An e-commerce toolkit that helps you sell anything. Beautifully." -msgstr "Un outil de e-commerce qui vous aide à tout ventre. Magnifiquement." - -#. Author of the plugin/theme -msgid "WooThemes" -msgstr "WooThemes" - -#. Author URI of the plugin/theme -msgid "http://woothemes.com" -msgstr "http://woothemes.com" - -# @ woocommerce -#~ msgid "Enter an amount or percentage e.g. 2.99 or 15%" -#~ msgstr "Entrez un montant ou un pourcentage ex.: 2.99 ou 15%" - -# @ woocommerce -#~ msgid "Any customer" -#~ msgstr "Tout client" - -#~ msgid "" -#~ "Comma separate email addresses to restrict this coupon to specific " -#~ "billing and user emails." -#~ msgstr "" -#~ "Adresses email séparées par une virgule pour restreindre ce code promo " -#~ "aux emails spécifiques de facturation et d'utilisateur." - -# @ woocommerce -#~ msgid "Base Page Title" -#~ msgstr "Titre de la page de base" - -# @ woocommerce -#~ msgid "" -#~ "This title to show on the shop base page. Leave blank to use the page " -#~ "title." -#~ msgstr "" -#~ "Le titre à afficher sur la page de départ de la boutique. Laisser vide " -#~ "pour utiliser le titre de la page." - -# @ woocommerce -#~ msgid "Configure shipping class" -#~ msgstr "Configurer la classe de livraison" - -#~ msgid "" -#~ "WooCommerce has been installed – You're ready to " -#~ "start selling :)" -#~ msgstr "" -#~ "WooCommerce a été installé – Vous êtes prêt à " -#~ "commencer vos ventes :-)" - -#~ msgid "" -#~ "WooCommerce has been updated – You're ready to " -#~ "continue selling :)" -#~ msgstr "" -#~ "WooCommerce a été mis à jour – Vous êtes prêt à " -#~ "continuer vos ventes :-)" - -# @ woocommerce -#~ msgid "Enable WooCommerce CSS styles" -#~ msgstr "Activer les styles CSS WooCommerce" - -# @ woocommerce -#~ msgid "" -#~ "Project on WordPress.org" -#~ msgstr "" -#~ "Projet sur WordPress.org" - -#~ msgid "" -#~ "Project on Github" -#~ msgstr "" -#~ "Projet sur Github" - -#~ msgid "" -#~ "WooCommerce Docs" -#~ msgstr "" -#~ "Documentation WooCommerce" - -#~ msgid "" -#~ "Official Extensions" -#~ msgstr "" -#~ "Extensions officielles" - -#~ msgid "" -#~ "Official Themes" -#~ msgstr "" -#~ "Themes officiels" - -# @ woocommerce -#~ msgid "" -#~ "Congratulations! – WooCommerce has been installed " -#~ "and setup. Enjoy :)" -#~ msgstr "" -#~ "Félicitations ! – WooCommerce a été installé et " -#~ "paramétré. Amusez-vous bien :-)" - -#~ msgid "Sorry, you are not allowed to access this page directly." -#~ msgstr "" -#~ "Désolé, vous n'êtes pas autorisé à accéder à cette page directement." - -#~ msgid "Display navigation for your custom taxonomies" -#~ msgstr "Afficher la navigation pour vos taxonomies personnalisées" - -#~ msgid "Custom Taxonomies Menu Widget" -#~ msgstr "Widget Menu Taxonomies Personnalisées" - -# @ woocommerce -#~ msgid "There are no registered custom taxonomies." -#~ msgstr "Il n'y a pas de taxonomie personnalisée enregistrée." - -#~ msgid "" -#~ "There are no custom taxonomies registered. This widget only works with " -#~ "registered custom taxonomies." -#~ msgstr "" -#~ "Il n'y a pas de taxonomie personnalisé d'enregistrée. Ce widget " -#~ "fonctionne uniquement avec des taxonomies personnalisées." - -#~ msgid "" -#~ "This widget produces a custom taxonomy navigation menu, ideal for use in " -#~ "sidebars." -#~ msgstr "" -#~ "Ce widget génère un menu de navigation de taxonomie personnalisée, idéal " -#~ "pour une utilisation en sidebar." - -#~ msgid "Plugin homepage" -#~ msgstr "Accueil extensions" - -#~ msgid "FAQ" -#~ msgstr "FAQ" - -# @ woocommerce -#~ msgid "Menu Title" -#~ msgstr "Titre du Menu" - -#~ msgid "" -#~ "Choose the order by which you would like to display the terms within each " -#~ "taxonomy" -#~ msgstr "" -#~ "Choisissez l'ordre dans lequel vous souhaitez afficher les termes à " -#~ "l'intérieur de chaque taxonomie" - -#~ msgid "" -#~ "Choose whether to display taxonomy terms in ASCending order(default) or " -#~ "DESCending order" -#~ msgstr "" -#~ "Choisissez si les termes de taxonomie s'affiche par ordre croissant (par " -#~ "défault) ou décroissant" - -# @ woocommerce -#~ msgid "Show post count?" -#~ msgstr "Afficher compteur articles ?" - -#~ msgid "Show Taxonomy Title?" -#~ msgstr "Afficher le Titre de la Taxonomie ?" - -# @ woocommerce -#~ msgid "Show Terms as hierarchy?" -#~ msgstr "Afficher les Termes en hiérarchie ?" - -#~ msgid "" -#~ "Use the checklist(s) below to choose which custom taxonomies and terms " -#~ "you want to include in your Navigation Menu. To hide a taxonomy, uncheck " -#~ "the taxonomy name." -#~ msgstr "" -#~ "Utilisez la/les liste(s) ci-dessous pour choisir quelles taxonomies et " -#~ "termes vous souhaitez inclure dans votre menu de navigation. Pour cacher " -#~ "une taxonomie, décochez le nom de la taxonomie." - -#~ msgid "Sorry, you are not allowed to access this file directly." -#~ msgstr "" -#~ "Désolé, vous n'êtes pas autorisé à accéder à ce fichier directement." - -# @ woocommerce -#~ msgid "Configuration Guide" -#~ msgstr "Guide de Configuration" - -#~ msgid "" -#~ "Warning! This version of Custom Taxonomies Menu Widget requires WordPress" -#~ msgstr "" -#~ "Attention ! Cette version de Widget Menu Taxonomies Personnalisées " -#~ "requiert WordPress" - -#~ msgid "Please upgrade Wordpress to run this plugin." -#~ msgstr "Veuille actualiser WordPress pour exécuter cette extension." - -#~ msgid "Please contact your Site Administrator." -#~ msgstr "Veuillez contacter votre Administrateur." - -# @ woocommerce -#~ msgid "Please enter your username and password to login." -#~ msgstr "" -#~ "Veuillez entrer votre identifiant et mot de passe pour vous identifier." - -# @ woocommerce -#~ msgid "Please enter a coupon code." -#~ msgstr "Veuillez entrer un code de remise." - -# @ woocommerce -#~ msgid "Sorry, your session has expired." -#~ msgstr "Désolé, votre session a expiré" - -# @ woocommerce -#~ msgid "Return to homepage →" -#~ msgstr "Retour à l'accueil →" - -# @ woocommerce -#~ msgid "You do not have sufficient permissions to access this page." -#~ msgstr "Vous n'avez pas les droits suffisants pour accéder à cette page." - -# @ woocommerce -#~ msgid "You have taken too long. Please go back and retry." -#~ msgstr "" -#~ "Vous avez mis trop de temps. Revenez en arrière et essayez encore, svp." - -# @ woocommerce -#~ msgid "Delete item" -#~ msgstr "Supprimer l'article" - -# @ woocommerce -#~ msgid "View product" -#~ msgstr "Voir Produit" - -# @ woocommerce -#~ msgid "Cross-sell" -#~ msgstr "Ventes croisées" - -# @ woocommerce -#~ msgid "Up-sell" -#~ msgstr "Ventes à la Une" - -# @ woocommerce -#~ msgid "No products found" -#~ msgstr "Aucun produit trouvé" - -#~ msgid "Download Permissions Granted" -#~ msgstr "Permissions de téléchargement accordées" - -# @ woocommerce -#~ msgid "Select a category" -#~ msgstr "Sélectionnez une catégorie" - -# @ woocommerce -#~ msgid "Uncategorized" -#~ msgstr "Non classé" - -# @ woocommerce -#~ msgid "Customer" -#~ msgstr "Client" - -# @ woocommerce -#~ msgid "Shop Manager" -#~ msgstr "Gestionnaire Boutique" - -# @ woocommerce -#~ msgid "Cart updated." -#~ msgstr "Panier mis à jour" - -#~ msgid "You can only have 1 %s in your cart." -#~ msgstr "Vous pouvez seulement avoir 1 %s dans votre panier." - -# @ woocommerce -#~ msgid "Please choose product options…" -#~ msgstr "Choisissez les options produit svp …" - -#~ msgid "" -#~ "Please choose the quantity of items you wish to add to your cart…" -#~ msgstr "" -#~ "Veuillez choisir la quantité d'articles que vous souhaitez ajouter à " -#~ "votre pannier…" - -# @ woocommerce -#~ msgid "Please choose a product to add to your cart…" -#~ msgstr "Veuillez choisir un produit à ajouter à votre panier…" - -# @ woocommerce -#~ msgid ""%s" was successfully added to your cart." -#~ msgstr ""%s" ajouté avec succès à votre panier." - -# @ woocommerce -#~ msgid "Continue Shopping →" -#~ msgstr "Poursuivre vos achats →" - -# @ woocommerce -#~ msgid "View Cart →" -#~ msgstr "Voir panier →" - -# @ woocommerce -#~ msgid "Username is required." -#~ msgstr "Nom d'utilisateur requis" - -# @ woocommerce -#~ msgid "Password is required." -#~ msgstr "Mot de passe requis" - -#~ msgid "ERROR" -#~ msgstr "ERREUR" - -# @ woocommerce -#~ msgid "Please enter a username." -#~ msgstr "Veuillez entrer un nom d'utilisateur." - -#~ msgid "" -#~ "This username is invalid because it uses illegal characters. Please enter " -#~ "a valid username." -#~ msgstr "" -#~ "Ce nom est invalide car il contient des caractères non autorisés. " -#~ "Veuillez saisir un nom valide." - -#~ msgid "This username is already registered, please choose another one." -#~ msgstr "Ce nom est déjà enregistré, veuillez en choisir un autre." - -# @ woocommerce -#~ msgid "Please type your e-mail address." -#~ msgstr "Veuillez saisir votre adresse email." - -#~ msgid "The email address isn’t correct." -#~ msgstr "L'adresse email n'est pas correcte." - -#~ msgid "This email is already registered, please choose another one." -#~ msgstr "Cet email est déjà enregistré, veuillez en choisir un autre." - -# @ woocommerce -#~ msgid "Re-enter your password." -#~ msgstr "Entrez à nouveau votre mot de passe." - -# @ woocommerce -#~ msgid "Passwords do not match." -#~ msgstr "Mots de passe non correspondants" - -#~ msgid "Anti-spam field was filled in." -#~ msgstr "Le champ Anti-spam a été rempli." - -#~ msgid "" -#~ "Couldn’t register you… please contact us if you continue to " -#~ "have problems." -#~ msgstr "" -#~ "Impossible de vous inscrire... veuillez nous contacter if vous continuez " -#~ "d'avoir des problèmes." - -#~ msgid "The cart has been filled with the items from your previous order." -#~ msgstr "" -#~ "Le panier a été rempli avec les articles de votre commande précédente." - -# @ woocommerce -#~ msgid "Order cancelled by customer." -#~ msgstr "Commande annulée par le client" - -# @ woocommerce -#~ msgid "Your order was cancelled." -#~ msgstr "Votre commande a été annulée" - -# @ woocommerce -#~ msgid "" -#~ "Your order is no longer pending and could not be cancelled. Please " -#~ "contact us if you need assistance." -#~ msgstr "" -#~ "Votre commande n'est plus en attente et ne peut être annulée. Contactez " -#~ "nous si vous avez besoin d'assistance." - -# @ woocommerce -#~ msgid "Invalid order." -#~ msgstr "Commande non valide" - -# @ woocommerce -#~ msgid "Invalid email address." -#~ msgstr "Adresse email invalide." - -# @ woocommerce -#~ msgid "Go to homepage →" -#~ msgstr "Retour à l'accueil →" - -# @ woocommerce -#~ msgid "Invalid download." -#~ msgstr "Téléchargement invalide." - -# @ woocommerce -#~ msgid "You must be logged in to download files." -#~ msgstr "Vous devez être identifié pour télécharger des fichiers." - -#~ msgid "Login →" -#~ msgstr "Connexion »" - -#~ msgid "This is not your download link." -#~ msgstr "Ceci n'est pas votre lien de téléchargement." - -# @ woocommerce -#~ msgid "Product no longer exists." -#~ msgstr "Produit inexistant." - -# @ woocommerce -#~ msgid "Sorry, you have reached your download limit for this file" -#~ msgstr "" -#~ "Désolé, vous avez atteint le nombre limite de téléchargements pour ce " -#~ "fichier" - -# @ woocommerce -#~ msgid "Sorry, this download has expired" -#~ msgstr "Désolé, ce téléchargement a expiré" - -#~ msgid "File not found" -#~ msgstr "Fichier non trouvé" - -# @ woocommerce -#~ msgid "New products added to %s" -#~ msgstr "Nouveaux produits ajoutés a %s" - -# @ woocommerce -#~ msgid "New products tagged %s" -#~ msgstr "Nouveaux produits taggés avec %s" - -# @ woocommerce -#~ msgid "You have taken too long. Please go back and refresh the page." -#~ msgstr "" -#~ "Vous avez été trop long. Revenez en arrière et rafraîchissez la page, svp." - -# @ woocommerce -#~ msgid "Please rate the product." -#~ msgstr "Donnez une note au produit svp." - -# @ woocommerce -#~ msgid "Search Results: “%s”" -#~ msgstr "Résultats de recherche : “%s”" - -#~ msgid " – Page %s" -#~ msgstr " – Page %s" - -# @ woocommerce -#~ msgid "No products found which match your selection." -#~ msgstr "Aucun produit trouvé correspondant à votre sélection." - -# @ woocommerce -#~ msgid "Buy product" -#~ msgstr "Achater le produit" - -# @ woocommerce -#~ msgid "Update country" -#~ msgstr "Actualiser le pays" - -# @ woocommerce -#~ msgid "Select a state…" -#~ msgstr "Choix de région…" - -# @ woocommerce -#~ msgid "Search for:" -#~ msgstr "Recherche pour :" - -# @ woocommerce -#~ msgid "Search for products" -#~ msgstr "Recherche des produits" - -# @ woocommerce -#~ msgid "Product Categories" -#~ msgstr "Catégories" - -# @ woocommerce -#~ msgctxt "Admin menu name" -#~ msgid "Categories" -#~ msgstr "Catégories" - -# @ woocommerce -#~ msgid "Search Product Categories" -#~ msgstr "Recherche catégories" - -# @ woocommerce -#~ msgid "All Product Categories" -#~ msgstr "Toutes les catégories" - -# @ woocommerce -#~ msgid "Parent Product Category" -#~ msgstr "Catégorie Produit Parente" - -# @ woocommerce -#~ msgid "Parent Product Category:" -#~ msgstr "Catégorie Produit Parente :" - -# @ woocommerce -#~ msgid "Edit Product Category" -#~ msgstr "Modifier Produit Parente" - -# @ woocommerce -#~ msgid "Update Product Category" -#~ msgstr "Mise à Jour Catégorie Produit" - -# @ woocommerce -#~ msgid "Add New Product Category" -#~ msgstr "Ajouter une nouvelle catégorie de produit" - -# @ woocommerce -#~ msgid "New Product Category Name" -#~ msgstr "Nouveau Nom Catégorie Produit" - -# @ woocommerce -#~ msgid "Product Tags" -#~ msgstr "Mots clés Produit" - -# @ woocommerce -#~ msgctxt "Admin menu name" -#~ msgid "Tags" -#~ msgstr "Mots clés" - -# @ woocommerce -#~ msgid "Search Product Tags" -#~ msgstr "Recherche mots clés" - -# @ woocommerce -#~ msgid "All Product Tags" -#~ msgstr "Tous les Mots clés Produit" - -# @ woocommerce -#~ msgid "Parent Product Tag" -#~ msgstr "Mot Clé Produit Parent" - -# @ woocommerce -#~ msgid "Parent Product Tag:" -#~ msgstr "Mot clé Produit Parent :" - -# @ woocommerce -#~ msgid "Edit Product Tag" -#~ msgstr "Modifier Mot clé Produit" - -# @ woocommerce -#~ msgid "Update Product Tag" -#~ msgstr "Mise à Jour Mot clé Produit" - -# @ woocommerce -#~ msgid "Add New Product Tag" -#~ msgstr "Ajouter un nouveau mot clé produit" - -# @ woocommerce -#~ msgid "New Product Tag Name" -#~ msgstr "Nouveau Nom Mot clé Produit" - -# @ woocommerce -#~ msgid "Shipping Classes" -#~ msgstr "Classes de livraison" - -# @ woocommerce -#~ msgid "Shipping Class" -#~ msgstr "Classe de livraison" - -# @ woocommerce -#~ msgctxt "Admin menu name" -#~ msgid "Shipping Classes" -#~ msgstr "Classes de livraison" - -# @ woocommerce -#~ msgid "Search Shipping Classes" -#~ msgstr "Recherche des classes de livraison" - -# @ woocommerce -#~ msgid "All Shipping Classes" -#~ msgstr "Toutes les classes de livraison" - -# @ woocommerce -#~ msgid "Parent Shipping Class" -#~ msgstr "Classe de livraison parente" - -# @ woocommerce -#~ msgid "Parent Shipping Class:" -#~ msgstr "Classe de livraison parente :" - -# @ woocommerce -#~ msgid "Update Shipping Class" -#~ msgstr "Actualiser la classe de livraison" - -# @ woocommerce -#~ msgid "Add New Shipping Class" -#~ msgstr "Ajouter une nouvelle classe de livraison" - -# @ woocommerce -#~ msgid "New Shipping Class Name" -#~ msgstr "Nouveau nom de classe de livraison" - -# @ woocommerce -#~ msgid "Order statuses" -#~ msgstr "États de commande" - -# @ woocommerce -#~ msgid "Order status" -#~ msgstr "États de commande" - -# @ woocommerce -#~ msgid "Search Order statuses" -#~ msgstr "Recherche des états de commande" - -# @ woocommerce -#~ msgid "All Order statuses" -#~ msgstr "Tous les états de commande" - -# @ woocommerce -#~ msgid "Parent Order status" -#~ msgstr "État de la commande parente" - -# @ woocommerce -#~ msgid "Parent Order status:" -#~ msgstr "État de la commande parente :" - -# @ woocommerce -#~ msgid "Edit Order status" -#~ msgstr "Modifier l'état de la commande" - -# @ woocommerce -#~ msgid "Update Order status" -#~ msgstr "Mise à jour de l'état de la commande" - -# @ woocommerce -#~ msgid "Add New Order status" -#~ msgstr "Ajouter un nouvel état de commande" - -# @ woocommerce -#~ msgid "New Order status Name" -#~ msgstr "Nom du nouvel état de commande" - -# @ woocommerce -#~ msgid "All" -#~ msgstr "Tous" - -# @ woocommerce -#~ msgid "Parent" -#~ msgstr "Parent" - -# @ woocommerce -#~ msgid "Add New" -#~ msgstr "Ajouter" - -# @ woocommerce -#~ msgid "New" -#~ msgstr "Nouveau" - -# @ woocommerce -#~ msgctxt "Admin menu name" -#~ msgid "Products" -#~ msgstr "Produits" - -# @ woocommerce -#~ msgid "Add Product" -#~ msgstr "Ajouter" - -# @ woocommerce -#~ msgid "Add New Product" -#~ msgstr "Ajouter un nouveau produit" - -# @ woocommerce -#~ msgid "Edit Product" -#~ msgstr "Modifier Produit" - -# @ woocommerce -#~ msgid "View Product" -#~ msgstr "Voir Produit" - -# @ woocommerce -#~ msgid "Search Products" -#~ msgstr "Recherche produits" - -# @ woocommerce -#~ msgid "No Products found" -#~ msgstr "Aucun produit trouvé" - -# @ woocommerce -#~ msgid "No Products found in trash" -#~ msgstr "Aucun produit trouvé dans la corbeille" - -# @ woocommerce -#~ msgid "Parent Product" -#~ msgstr "Produit parent" - -# @ woocommerce -#~ msgid "This is where you can add new products to your store." -#~ msgstr "" -#~ "Ceci est l'endroit où vous pouvez ajouter des nouveaux produits dans " -#~ "votre boutique." - -# @ woocommerce -#~ msgid "Variation" -#~ msgstr "Variation" - -# @ woocommerce -#~ msgid "Add New Variation" -#~ msgstr "Ajouter une nouvelle variation" - -# @ woocommerce -#~ msgid "Edit Variation" -#~ msgstr "Modifier Variation" - -# @ woocommerce -#~ msgid "New Variation" -#~ msgstr "Nouvelle Variation" - -# @ woocommerce -#~ msgid "View Variation" -#~ msgstr "Voir Variation" - -# @ woocommerce -#~ msgid "Search Variations" -#~ msgstr "Recherche variations" - -# @ woocommerce -#~ msgid "No Variations found" -#~ msgstr "Aucune variation trouvée" - -# @ woocommerce -#~ msgid "No Variations found in trash" -#~ msgstr "Pas de variations trouvées dans la corbeille" - -# @ woocommerce -#~ msgid "Parent Variation" -#~ msgstr "Variation Parente" - -# @ woocommerce -#~ msgid "Add Order" -#~ msgstr "Ajouter commande" - -# @ woocommerce -#~ msgid "Add New Order" -#~ msgstr "Nouvelle commande" - -# @ woocommerce -#~ msgid "Edit Order" -#~ msgstr "Modifier commande" - -# @ woocommerce -#~ msgid "New Order" -#~ msgstr "Nouvelle commande" - -# @ woocommerce -#~ msgid "Search Orders" -#~ msgstr "Recherche commandes" - -# @ woocommerce -#~ msgid "No Orders found" -#~ msgstr "Aucune commande trouvée" - -# @ woocommerce -#~ msgid "No Orders found in trash" -#~ msgstr "Aucune commande trouvée dans la corbeille" - -# @ woocommerce -#~ msgid "Parent Orders" -#~ msgstr "Commandes Parentes" - -# @ woocommerce -#~ msgid "This is where store orders are stored." -#~ msgstr "Voici où les produits sont stockés" - -# @ woocommerce -#~ msgctxt "Admin menu name" -#~ msgid "Coupons" -#~ msgstr "Codes Promo" - -# @ woocommerce -#~ msgid "Add Coupon" -#~ msgstr "Ajouter Code Promo" - -# @ woocommerce -#~ msgid "Add New Coupon" -#~ msgstr "Ajouter un nouveau Code Promo" - -# @ woocommerce -#~ msgid "Edit Coupon" -#~ msgstr "Modifier Code Promo" - -# @ woocommerce -#~ msgid "New Coupon" -#~ msgstr "Nouveau Code Promo" - -# @ woocommerce -#~ msgid "View Coupons" -#~ msgstr "Voir Codes Promo" - -# @ woocommerce -#~ msgid "View Coupon" -#~ msgstr "Voir Code Promo" - -# @ woocommerce -#~ msgid "Search Coupons" -#~ msgstr "Recherche Codes Promo" - -# @ woocommerce -#~ msgid "No Coupons found" -#~ msgstr "Aucun Code Promo trouvé" - -# @ woocommerce -#~ msgid "No Coupons found in trash" -#~ msgstr "Aucun Code Promo trouvé dans la corbeille" - -# @ woocommerce -#~ msgid "Parent Coupon" -#~ msgstr "Code Promo parent" - -# @ woocommerce -#~ msgid "" -#~ "This is where you can add new coupons that customers can use in your " -#~ "store." -#~ msgstr "" -#~ "Voici où vous pouvez ajouter de nouveaux codes promo que vos clients " -#~ "peuvent utiliser dans votre boutique." - -# @ woocommerce -#~ msgid "Select an option…" -#~ msgstr "Sélectionnez une option…" - -# @ woocommerce -#~ msgid "Cart Discount" -#~ msgstr "Remise panier" - -# @ woocommerce -#~ msgid "Cart % Discount" -#~ msgstr "Remise en % du panier" - -# @ woocommerce -#~ msgid "Product Discount" -#~ msgstr "Remise produit" - -# @ woocommerce -#~ msgid "Product % Discount" -#~ msgstr "Remise en % du produit" - -#~ msgid "Taxonomy exists - please change the slug" -#~ msgstr "La taxonomie existe - veuillez changer le slug" - -# @ woocommerce -#~ msgid "Documentation" -#~ msgstr "Documentation" - -# @ woocommerce -#~ msgid "" -#~ "Remove this item? If you have previously reduced this item's stock, or " -#~ "this order was submitted by a customer, will need to manually restore the " -#~ "item's stock." -#~ msgstr "" -#~ "Supprimer cet article ? Si vous avez précédemment réduit le stock de cet " -#~ "article, ou bien si cette commande a été soumise par un client, vous " -#~ "devrez manuellement restaurer le stock de cet article." - -# @ woocommerce -#~ msgid "" -#~ "Calculate totals based on order items, discount amount, and shipping? " -#~ "Note, you will need to (optionally) calculate tax rows and cart discounts " -#~ "manually." -#~ msgstr "" -#~ "Calcul des totaux basés sur les articles de la commande, le montant de " -#~ "remise et la livraison ? Notez que vous devrez (optionnellement) calculer " -#~ "les lignes de taxe et les remises du panier manuellement." - -# @ woocommerce -#~ msgid "Meta Name" -#~ msgstr "Nom Meta" - -# @ woocommerce -#~ msgid "Meta Value" -#~ msgstr "Valeur Meta" - -# @ woocommerce -#~ msgid "Tax Label:" -#~ msgstr "Légende de taxe :" - -# @ woocommerce -#~ msgid "Compound:" -#~ msgstr "Cumulable :" - -# @ woocommerce -#~ msgid "Cart Tax:" -#~ msgstr "Taxe panier :" - -# @ woocommerce -#~ msgid "Exclude image" -#~ msgstr "Exclure l'image" - -# @ woocommerce -#~ msgid "" -#~ "Enabling this option will hide it from the product page image gallery." -#~ msgstr "" -#~ "Cette option cachera l'image de la galerie dans une page de produit." - -# @ woocommerce -#~ msgctxt "page_slug" -#~ msgid "order-tracking" -#~ msgstr "suivi-de-commande" - -# @ woocommerce -#~ msgid "Track your order" -#~ msgstr "Suivre votre commande" - -# @ woocommerce -#~ msgid "Export data" -#~ msgstr "Export des données" - -# @ woocommerce -#~ msgid "Coupon sales average" -#~ msgstr "Moyenne des ventes codes promo" - -#~ msgid "Coupon sales median" -#~ msgstr "Ventes moyennes codes promo" - -#~ msgid "Monthly sales by coupon" -#~ msgstr "Remises mensuel par codes promo" - -# @ woocommerce -#~ msgid "Transients" -#~ msgstr "Données temporaires" - -#~ msgid "Clear Transients" -#~ msgstr "Effacer les données temporaires" - -#~ msgid "Reset Capabilities" -#~ msgstr "Réinitialiser les capacités" - -# @ woocommerce -#~ msgid "Generate report" -#~ msgstr "Générer le rapport" - -# @ woocommerce -#~ msgid "WooCommerce version" -#~ msgstr "Version WooCommerce " - -#~ msgid "WordPress version" -#~ msgstr "Version WordPress" - -#~ msgid "Installed plugins" -#~ msgstr "Extensions installées" - -# @ woocommerce -#~ msgid "Shop base page" -#~ msgstr "Page de base de la boutique" - -#~ msgid "Core Taxonomies" -#~ msgstr "Taxonomies de base" - -#~ msgid "Server Environment" -#~ msgstr "Environnement serveur" - -#~ msgid "Server Software" -#~ msgstr "Serveur" - -#~ msgid "Server upload_max_filesize" -#~ msgstr "Serveur upload_max_filesize" - -#~ msgid "Server post_max_size" -#~ msgstr "Serveur post_max_size" - -#~ msgid "Remote Posting/IPN" -#~ msgstr "Publication/IPN distante" - -#~ msgid "WP Remote Post Check" -#~ msgstr "WP Vérification Publication distante" - -#~ msgid "" -#~ "Tax rates need to be defined with columns in a specific order (6 " -#~ "columns). Click here to download a sample." -#~ msgstr "" -#~ "Les taux de taxe ont besoin d'être définis avec des colonnes dans un " -#~ "ordre spécifique (6 colonnes). Cliquez ici pour " -#~ "télécharger un exemple." - -#~ msgid "" -#~ "Local tax rates also need to be defined with columns in a specific order " -#~ "(8 columns). Click here to download a sample." -#~ msgstr "" -#~ "Les taux de taxe locale ont également besoin d'être définis avec des " -#~ "colonnes dans un ordre spécifique (8 colonnes). Cliquez " -#~ "ici pour télécharger un exemple." - -# @ woocommerce -#~ msgid "Change" -#~ msgstr "Changer" - -# @ woocommerce -#~ msgid "Usage count" -#~ msgstr "Compteur d'utilisations" - -# @ woocommerce -#~ msgid "" -#~ "Enter a quantity to enable stock management for this variation, or leave " -#~ "blank to use the variable product stock options." -#~ msgstr "" -#~ "Entrez une quantité pour gérer les stocks pour cette variation, ou " -#~ "laissez vide pour utiliser les options de variable de stock du produit." - -# @ woocommerce -#~ msgid "Price:" -#~ msgstr "Prix :" - -# @ woocommerce -#~ msgid "Enter an amount e.g. 2.99" -#~ msgstr "Entrez un montant ex.: 2.99" - -# @ woocommerce -#~ msgid "" -#~ "Check this box if the coupon cannot be used in conjunction with other " -#~ "coupons" -#~ msgstr "" -#~ "Cochez cette case si le code promo ne peut être utilisé conjointement " -#~ "avec d'autres codes promo" - -# @ woocommerce -#~ msgid "" -#~ "Check this box if the coupon should be applied before calculating cart tax" -#~ msgstr "" -#~ "Cochez cette case si le code promo doit être appliqué avant le calcul de " -#~ "taxe du panier" - -#~ msgid "" -#~ "Check this box if the coupon enables free shipping (see Free Shipping)" -#~ msgstr "" -#~ "Cocher cette case si le code promo active la gratuité de livraison (voi " -#~ "Livraison gratuite)" - -# @ woocommerce -#~ msgid "Exclude Products" -#~ msgstr "Exclure les produits" - -# @ woocommerce -#~ msgid "Exclude Categories" -#~ msgstr "Exclure les catégories" - -# @ woocommerce -#~ msgid "Customer Emails" -#~ msgstr "Emails client" - -# @ woocommerce -#~ msgid "How many times this coupon can be used before it is void" -#~ msgstr "" -#~ "Combien de fois ce code promo peut il être utilisé avant de ne plus être " -#~ "valide" - -# @ woocommerce -#~ msgid "The date this coupon will expire, YYYY-MM-DD" -#~ msgstr "La date d'expiration du code promo, AAAA-MM-JJ" - -# @ woocommerce -#~ msgid "Coupon code already exists." -#~ msgstr "Code promo exitant." - -# @ woocommerce -#~ msgid "Line Subtotal" -#~ msgstr "Ligne Sous-total" - -#~ msgid "Line cost and line tax before pre-tax discounts" -#~ msgstr "Ligne tarif et ligne taxe après les remises pré-taxes" - -# @ woocommerce -#~ msgid "Line Total" -#~ msgstr "Ligne Total" - -#~ msgid "Line cost and line tax after pre-tax discounts" -#~ msgstr "Ligne tarif et ligne taxe après les remises pré-taxes" - -#~ msgid "Calc line tax ↑" -#~ msgstr "Calculer la ligne de taxe ↑" - -# @ woocommerce -#~ msgid "Calc totals →" -#~ msgstr "Calcul totaux →" - -# @ woocommerce -#~ msgid "Reduce stock" -#~ msgstr "Réduire stock" - -# @ woocommerce -#~ msgid "" -#~ "Reduces stock for each item in the order; useful after manually creating " -#~ "an order or manually marking an order as paid." -#~ msgstr "" -#~ "Réduire le stock de chaque élément dans la commande; utile en cas de " -#~ "création manuelle d'une commande ou le passage manuel d'une commande " -#~ "comme payée." - -# @ woocommerce -#~ msgid "Restore stock" -#~ msgstr "Restaurer stock" - -# @ woocommerce -#~ msgid "" -#~ "Restores stock for each item in the order; useful after refunding or " -#~ "canceling the entire order." -#~ msgstr "" -#~ "Restaurer le stock de chaque élément de la commande; utile en cas de " -#~ "remboursement ou d'annulation de la commande complète." - -# @ woocommerce -#~ msgid "Email invoice" -#~ msgstr "Email de facture" - -# @ woocommerce -#~ msgid "" -#~ "Email the order to the customer. Unpaid orders will include a payment " -#~ "link." -#~ msgstr "" -#~ "Envoi la commande par email au client. Les commandes non reglées incluent " -#~ "un lien de paiement." - -# @ woocommerce -#~ msgid "Cost ex. tax:" -#~ msgstr "Tarif H.T. :" - -# @ woocommerce -#~ msgid "Shipping Method:" -#~ msgstr "Méthode de livraison : " - -# @ woocommerce -#~ msgid "Shipping Title:" -#~ msgstr "Titre de livraison :" - -# @ woocommerce -#~ msgid "Manually reducing stock." -#~ msgstr "Réduction des stock manuelle." - -# @ woocommerce -#~ msgid "Item #%s stock reduced from %s to %s." -#~ msgstr "L'élément n°%s est en stock réduit de %s jusqu'à %s" - -# @ woocommerce -#~ msgid "Item %s %s not found, skipping." -#~ msgstr "L'élément %s %s est introuvable, passage au suivant" - -# @ woocommerce -#~ msgid "Manual stock reduction complete." -#~ msgstr "Réduction de stock manuelle complète" - -# @ woocommerce -#~ msgid "Manually restoring stock." -#~ msgstr "Restauration manuelle du stock" - -# @ woocommerce -#~ msgid "Item #%s stock increased from %s to %s." -#~ msgstr "Stock de l'élément n°%s augmenté de %s à %s" - -# @ woocommerce -#~ msgid "Manual stock restore complete." -#~ msgstr "Restauration de stock manuelle complète." - -# @ woocommerce -#~ msgid "File" -#~ msgstr "Fichier" - -# @ woocommerce -#~ msgid "Delete all" -#~ msgstr "Tout supprimer" - -# @ woocommerce -#~ msgid "" -#~ "You must add some attributes via the \"Product Data\" panel and save " -#~ "before adding a new variation." -#~ msgstr "" -#~ "Vous devez ajouter des attributs via le panneau \"Données Produits\" et " -#~ "enregistrer avant d'ajouter une autre variation." - -# @ woocommerce -#~ msgid "Taxes" -#~ msgstr "Taxes" - -# @ woocommerce -#~ msgid "Related Products" -#~ msgstr "Produits en relation" - -# @ woocommerce -#~ msgid "Use this file" -#~ msgstr "Utiliser ce fichier" - -#~ msgid "Drop files here" -#~ msgstr "Déposez les fichier ici" - -#~ msgctxt "Uploader: Drop files here - or - Select Files" -#~ msgid "or" -#~ msgstr "ou" - -# @ woocommerce -#~ msgid "Allowed Files" -#~ msgstr "Fichiers autorisés" - -# @ woocommerce -#~ msgid "Are you sure you want to remove this attachment?" -#~ msgstr "Êtes-vous certain de vouloir supprimer cet élément ?" - -#~ msgid "" -#~ "The file you selected exceeds the maximum filesize specified in this " -#~ "installation." -#~ msgstr "" -#~ "Le fichier que vous avez sélectionné excède le poids maximum spécifié " -#~ "dans cette installation." - -# @ woocommerce -#~ msgid "Product Images" -#~ msgstr "Images Produit" - -# @ woocommerce -#~ msgid "" -#~ "Order Items – Note: if you edit quantities or remove items " -#~ "from the order you will need to manually change the item's stock levels." -#~ msgstr "" -#~ "Articles commande – Note : si vous éditez les quantités ou " -#~ "supprimez des articles de la commande, vous devrez manuellement mettre à " -#~ "jour le niveau des stocks." - -#~ msgid "" -#~ "Downloadable Product Permissions – Note: Permissions for " -#~ "order items will automatically be granted when the order status changes " -#~ "to processing/completed." -#~ msgstr "" -#~ "Permissions de Téléchargement des Articles – Note : Les " -#~ "permissions pour les articles de la commande seront automatiquement " -#~ "accordées quand le status passera de en cours à terminée." - -#~ msgid "Use informal localisation file if it exists" -#~ msgstr "Utiliser le fichier de traduction informel s'il existe" - -# @ woocommerce -#~ msgid "Base Country/Region" -#~ msgstr "Pays/Région de base" - -# @ woocommerce -#~ msgid "" -#~ "This is the base country for your business. Tax rates will be based on " -#~ "this country." -#~ msgstr "" -#~ "Ceci est le pays de base de votre boutique. Les taux de taxes seront " -#~ "appliqués pour ce pays." - -# @ woocommerce -#~ msgid "US Dollars ($)" -#~ msgstr "Dollars US ($)" - -# @ woocommerce -#~ msgid "Euros (€)" -#~ msgstr "Euros (€)" - -# @ woocommerce -#~ msgid "Pounds Sterling (£)" -#~ msgstr "Livres Sterling (£)" - -# @ woocommerce -#~ msgid "Australian Dollars ($)" -#~ msgstr "Dollars Australiens ($)" - -# @ woocommerce -#~ msgid "Brazilian Real ($)" -#~ msgstr "Real Brésilien ($)" - -# @ woocommerce -#~ msgid "Canadian Dollars ($)" -#~ msgstr "Dollars Canadiens ($)" - -# @ woocommerce -#~ msgid "Czech Koruna (Kč)" -#~ msgstr "Couronne tchèque (Kč)" - -# @ woocommerce -#~ msgid "Danish Krone" -#~ msgstr "Couronne danoise" - -# @ woocommerce -#~ msgid "Hong Kong Dollar ($)" -#~ msgstr "Dollar Hong Kong ($)" - -# @ woocommerce -#~ msgid "Hungarian Forint" -#~ msgstr "Forint hongrois" - -# @ woocommerce -#~ msgid "Israeli Shekel" -#~ msgstr "Shekel israélien" - -# @ woocommerce -#~ msgid "Chinese Yuan (¥)" -#~ msgstr "Yen Japonais (¥)" - -# @ woocommerce -#~ msgid "Japanese Yen (¥)" -#~ msgstr "Yen Japonais (¥)" - -# @ woocommerce -#~ msgid "Malaysian Ringgits (RM)" -#~ msgstr "Malaysian Ringgits (RM)" - -# @ woocommerce -#~ msgid "Mexican Peso ($)" -#~ msgstr "Peso Mexicain ($)" - -# @ woocommerce -#~ msgid "New Zealand Dollar ($)" -#~ msgstr "Dollar Nouvelle Zélande ($)" - -# @ woocommerce -#~ msgid "Norwegian Krone" -#~ msgstr "Couronne Norvégienne" - -# @ woocommerce -#~ msgid "Philippine Pesos" -#~ msgstr "Peso Philippin" - -# @ woocommerce -#~ msgid "Polish Zloty" -#~ msgstr "Zloty polonais" - -# @ woocommerce -#~ msgid "Singapore Dollar ($)" -#~ msgstr "Dollar de Singapour ($)" - -# @ woocommerce -#~ msgid "Swedish Krona" -#~ msgstr "Couronne Suédoise" - -# @ woocommerce -#~ msgid "Swiss Franc" -#~ msgstr "Franc Suisse" - -# @ woocommerce -#~ msgid "Taiwan New Dollars" -#~ msgstr "Nouveaux Dollars de Taiwan" - -# @ woocommerce -#~ msgid "Thai Baht" -#~ msgstr "Baht Thai" - -# @ woocommerce -#~ msgid "Turkish Lira (TL)" -#~ msgstr "Turkish Lira (TL)" - -# @ woocommerce -#~ msgid "South African rand (R)" -#~ msgstr "South African rand (R)" - -#~ msgid "Romanian Leu (RON)" -#~ msgstr "Romanian Leu (RON)" - -# @ woocommerce -#~ msgid "Checkout and Accounts" -#~ msgstr "Commande et Comptes" - -#~ msgid "" -#~ "The following options control the behaviour of the checkout process and " -#~ "customer accounts." -#~ msgstr "" -#~ "Les options suivantes déterminent le comportement du processus de " -#~ "commande et des comptes clients." - -# @ woocommerce -#~ msgid "Show order comments section" -#~ msgstr "Afficher la section commentaires de commande" - -#~ msgid "" -#~ "Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)" -#~ msgstr "" -#~ "Forcer le SSL (HTTPS) sur les pages de paiement (un certificat SSL est " -#~ "nécessaire)" - -# @ woocommerce -#~ msgid "Enable coupons" -#~ msgstr "Activer les codes promo" - -#~ msgid "Enable coupon form on cart" -#~ msgstr "Activer le formulaire de codes promo sur le panier" - -#~ msgid "Enable coupon form on checkout" -#~ msgstr "Activer le formulaire de codes promo sur la commande" - -#~ msgid "Allow customers to repurchase past orders" -#~ msgstr "" -#~ "Permettre aux clients de re-commander des articles de commandes passées" - -#~ msgid "" -#~ "The following options affect the styling of your store, as well as how " -#~ "certain features behave." -#~ msgstr "" -#~ "Les options suivantes affectent les styles de votre boutique, ainsi que " -#~ "la façon dont certaines caractéristiques se comportent." - -# @ woocommerce -#~ msgid "Enable the \"Demo Store\" notice on your site" -#~ msgstr "Activer la notice \"Boutique de Démonstration\" sur votre site" - -#~ msgid "Enable AJAX add to cart buttons on product archives" -#~ msgstr "" -#~ "Activer les boutons AJAX d'ajout au panier sur les listes de produits" - -# @ woocommerce -#~ msgid "Enable WooCommerce lightbox on the product page" -#~ msgstr "Activer la lightbox WooCommerce sur la page produit" - -# @ woocommerce -#~ msgid "Digital Downloads" -#~ msgstr "Téléchargements Numériques" - -#~ msgid "The following options are specific to downloadable products." -#~ msgstr "" -#~ "Les options suivantes sont spécifiques aux produits téléchargeables." - -# @ woocommerce -#~ msgid "File download method" -#~ msgstr "Méthode de téléchargement de fichiers" - -#~ msgid "Access Restrictions" -#~ msgstr "Restrictions d'accès" - -# @ woocommerce -#~ msgid "Must be logged in to download files" -#~ msgstr "Vous devez être identifié pour télécharger des fichiers" - -#~ msgid "This setting does not apply to guest downloads." -#~ msgstr "Ce réglage ne s'applique pas aux téléchargements invité." - -#~ msgid "" -#~ "Turn this option off to only grant access when an order is \"complete\", " -#~ "rather than \"processing\"" -#~ msgstr "" -#~ "Désactivez cette option pour activer l'accès uniquement lorsqu'une " -#~ "commande est \"finalisée\", plutôt que \"en cours\"" - -# @ woocommerce -#~ msgid "Limit quantity" -#~ msgstr "Limiter la quantité" - -#~ msgid "Limit the purchasable quantity of downloadable-virtual items to 1" -#~ msgstr "" -#~ "Limiter la quantité d'achat des produits téléchargeables-virtuels à 1" - -# @ woocommerce -#~ msgid "Terms page ID" -#~ msgstr "Page CGV" - -# @ woocommerce -#~ msgid "Logout link" -#~ msgstr "Lien de déconnexion" - -# @ woocommerce -#~ msgid "Append a logout link to menus containing \"My Account\"" -#~ msgstr "Ajoute un lien de déconnexion aux menus contenant \"Mon compte\"" - -# @ woocommerce -#~ msgid "Permalinks" -#~ msgstr "Permaliens" - -# @ woocommerce -#~ msgid "Product base category" -#~ msgstr "Catégorie Produit" - -# @ woocommerce -#~ msgid "Prepend product permalinks with product category" -#~ msgstr "" -#~ "Préfixer les permaliens produit avec leur catégorie (categorie/" -#~ "produit)" - -# @ woocommerce -#~ msgid "Product base page" -#~ msgstr "Page de base produits" - -# @ woocommerce -#~ msgid "Prepend product permalinks with shop base page (%s)" -#~ msgstr "" -#~ "Préfixer les permaliens produit avec la page de base de la boutique " -#~ "(%s)" - -# @ woocommerce -#~ msgid "Product slug" -#~ msgstr "Slug Produits" - -#~ msgid "" -#~ "Shows in the single product URLs. Leave blank to use the default slug. " -#~ "Can only be used if shop base page isn't prepended." -#~ msgstr "" -#~ "Affichés dans les URL de détail produit. Laisser vide pour utiliser le " -#~ "slug par défaut. Peut uniquement être utilisé si la page de base de la " -#~ "boutique n'est pas préfixée." - -# @ woocommerce -#~ msgid "Taxonomy base page" -#~ msgstr "Page de base de la taxinomie" - -# @ woocommerce -#~ msgid "Prepend shop categories/tags with shop base page (%s)" -#~ msgstr "" -#~ "Préfixer les catégories et mots clés avec la page de base de la boutique " -#~ "(%s)" - -# @ woocommerce -#~ msgid "Product category slug" -#~ msgstr "Slug catégorie produit" - -#~ msgid "" -#~ "Shows in the product category URLs. Leave blank to use the default slug." -#~ msgstr "" -#~ "Affiché dans les URL de catégorie produit. Laisser vide pour utiliser le " -#~ "slug par défaut." - -# @ woocommerce -#~ msgid "Product tag slug" -#~ msgstr "Slug mot clé produit" - -#~ msgid "Shows in the product tag URLs. Leave blank to use the default slug." -#~ msgstr "" -#~ "Affichés dans les URL de mot clé produit. Laisser vide pour utiliser le " -#~ "slug par défaut." - -# @ woocommerce -#~ msgid "Page contents: [woocommerce_lost_password]" -#~ msgstr "Contenu page : [woocommerce_lost_password]" - -# @ woocommerce -#~ msgid "Default product sorting" -#~ msgstr "Tri par défaut des produits" - -# @ woocommerce -#~ msgid "Default sorting" -#~ msgstr "Tri par défaut" - -# @ woocommerce -#~ msgid "Sort alphabetically" -#~ msgstr "Tri alphabétique" - -# @ woocommerce -#~ msgid "Sort by price" -#~ msgstr "Tri par prix" - -# @ woocommerce -#~ msgid "Show subcategories on category pages" -#~ msgstr "Montrer les sous catégories dans les pages catégorie" - -# @ woocommerce -#~ msgid "Show subcategories on the shop page" -#~ msgstr "Montrer les sous catégories dans la page boutique" - -# @ woocommerce -#~ msgid "When showing subcategories, hide products" -#~ msgstr "Quand les sous catégories sont affichées, cacher les produits" - -#~ msgid "Redirects" -#~ msgstr "Redirections" - -# @ woocommerce -#~ msgid "" -#~ "Redirect to cart after adding a product to the cart (on single product " -#~ "pages)" -#~ msgstr "" -#~ "Rediriger vers le panier après l'ajout d'un produit au panier (sur les " -#~ "pages détail produit)" - -#~ msgid "Redirect to the product page on a single matching search result" -#~ msgstr "" -#~ "Rediriger vers la page produit s'il y a un résultat unique lors d'une " -#~ "recherche" - -# @ woocommerce -#~ msgid "Product fields" -#~ msgstr "Champs produit" - -# @ woocommerce -#~ msgid "Enable the SKU field for products" -#~ msgstr "" -#~ "Activer le champ UGS (Unité de Gestion des Stocks) pour les produits" - -# @ woocommerce -#~ msgid "Enable the weight field for products" -#~ msgstr "Activer le champ poids pour les produits" - -# @ woocommerce -#~ msgid "Enable the dimension fields for products" -#~ msgstr "Activer les champs dimensions pour les produits" - -#~ msgid "Show weight and dimension fields in product attributes tab" -#~ msgstr "" -#~ "Afficher le poids et les dimentions dans l'onglet d'attributs du produit" - -#~ msgid "Enable the rating field on the review form" -#~ msgstr "Activer la notation par étoile sur le formulaire d'avis" - -# @ woocommerce -#~ msgid "Thousand separator" -#~ msgstr "Séparateur de milliers" - -# @ woocommerce -#~ msgid "Decimal separator" -#~ msgstr "Séparateur décimal" - -# @ woocommerce -#~ msgid "Number of decimals" -#~ msgstr "Nombre de décimales" - -#~ msgid "Trailing zeros" -#~ msgstr "Zéros à droite" - -# @ woocommerce -#~ msgid "Manage stock" -#~ msgstr "Gérer les stocks" - -# @ woocommerce -#~ msgid "Low stock threshold" -#~ msgstr "Seuil de stock faible" - -# @ woocommerce -#~ msgid "Out of stock threshold" -#~ msgstr "Seuil de stock épuisé" - -# @ woocommerce -#~ msgid "Out of stock visibility" -#~ msgstr "Visibilité des stocks épuisés" - -#~ msgid "Stock display format" -#~ msgstr "Format d'affichage du stock" - -# @ woocommerce -#~ msgid "Shipping calculations" -#~ msgstr "Calcul de frais de port" - -# @ woocommerce -#~ msgid "Shipping method display" -#~ msgstr "Affichage de la méthode de livraison" - -# @ woocommerce -#~ msgid "Tax calculations" -#~ msgstr "Calcul des taxes" - -# @ woocommerce -#~ msgid "Calculate tax based on the customer shipping address" -#~ msgstr "Calcul des taxes basé sur l'adresse de livraison du client" - -#~ msgid "Display taxes on the cart page" -#~ msgstr "Afficher les taxes sur la page du panier" - -#~ msgid "Display the tax total when tax is %s" -#~ msgstr "Afficher le total des taxes lorsque la taxe est %s." - -# @ woocommerce -#~ msgid "Catalog Prices" -#~ msgstr "Prix catalogue" - -#~ msgid "Prices include tax" -#~ msgstr "Tarifs TTC" - -#~ msgid "Display cart items excluding tax" -#~ msgstr "Afficher les articles du panier H.T." - -#~ msgid "Display cart totals excluding tax" -#~ msgstr "Afficher les totaux du panier en H.T." - -# @ woocommerce -#~ msgid "Additional Tax classes" -#~ msgstr "Classes additionnelles des taxes" - -# @ woocommerce -#~ msgid "" -#~ "List additonal tax classes below (1 per line). This is in addition to the " -#~ "default Standard Rate." -#~ msgstr "" -#~ "Listez les classes de taxes additonnelles ci-dessous (1 par ligne). Ceci " -#~ "est un ajout aux Taux Standard." - -# @ woocommerce -#~ msgid "Tax rates" -#~ msgstr "Taux de taxes" - -# @ woocommerce -#~ msgid "\"From\" name" -#~ msgstr "\"From\" nom" - -# @ woocommerce -#~ msgid "\"From\" email address" -#~ msgstr "\"From\" adresse email" - -# @ woocommerce -#~ msgid "Email template" -#~ msgstr "Modèle d'email" - -# @ woocommerce -#~ msgid "Header image" -#~ msgstr "Image d'entête" - -# @ woocommerce -#~ msgid "Email footer text" -#~ msgstr "Texte de pied de page de l'email" - -# @ woocommerce -#~ msgid "Base colour" -#~ msgstr "Couleur de base" - -# @ woocommerce -#~ msgid "Background colour" -#~ msgstr "Couleur du fond" - -# @ woocommerce -#~ msgid "Email body background colour" -#~ msgstr "Couleur de fond du corps de l'email" - -# @ woocommerce -#~ msgid "Email body text colour" -#~ msgstr "Couleur du texte du corps de l'email" - -# @ woocommerce -#~ msgid "Export rates" -#~ msgstr "Exporter les taux" - -#~ msgid "Import rates" -#~ msgstr "Importer les taux" - -#~ msgid "" -#~ "Define tax rates for countries and states below. You can also export and " -#~ "import from CSV files." -#~ msgstr "" -#~ "Définissez les taux de taxe pour les pays et états ci-dessous. Vous " -#~ "pouvez également exporter et importer depuis des fichier CSV." - -# @ woocommerce -#~ msgid "Countries/states" -#~ msgstr "Pays/États" - -# @ woocommerce -#~ msgid "Label" -#~ msgstr "Label" - -#~ msgid "" -#~ "Optionally, enter a label for this rate - this will appear in the totals " -#~ "table" -#~ msgstr "" -#~ "Optionnellement, entrez une légende pour ce taux - cela apparaitra dans " -#~ "le tableau des totaux" - -# @ woocommerce -#~ msgid "Rate" -#~ msgstr "Taux" - -# @ woocommerce -#~ msgid "+ Add Tax Rate" -#~ msgstr "+ Ajouter taux de taxe" - -#~ msgid "" -#~ "All matching rates will be applied, and non-compound rates will be summed." -#~ msgstr "" -#~ "Tous les taux correspondants seront appliqués, et les taux non cumulables " -#~ "seront aditionnés." - -#~ msgid "Duplicate selected" -#~ msgstr "Dupliquer les éléments sélectionnés" - -#~ msgid "Delete selected" -#~ msgstr "Supprimer les éléments sélectionnés" - -# @ woocommerce -#~ msgid "Select countries/states…" -#~ msgstr "Sélectionnez des pays/états" - -# @ woocommerce -#~ msgid "US States" -#~ msgstr "États-Unis" - -# @ woocommerce -#~ msgid "EU States" -#~ msgstr "Europe" - -# @ woocommerce -#~ msgid "Standard Rate" -#~ msgstr "Taux standard" - -# @ woocommerce -#~ msgid "Local Tax Rates" -#~ msgstr "Taux de taxe local" - -#~ msgid "" -#~ "Define local tax rates for specific post/zip codes below. You can also " -#~ "export and import from CSV files." -#~ msgstr "" -#~ "Définissez ci-dessous les taux de taxe locale pour des codes postaux " -#~ "spécifiques. Vous pouvez exporter et importer depuis un fichier CSV. " - -# @ woocommerce -#~ msgid "Locations" -#~ msgstr "Emplacements" - -#~ msgid "" -#~ "List (1 per line) postcodes/zips/cities this rate applies to. You may " -#~ "also enter ranges for numeric zip codes. e.g. 12345-12349;23456;" -#~ msgstr "" -#~ "Listez (1 par ligne) les codes postaux auquels s'appliquent ce taux. Vous " -#~ "pouvez également saisir une plage de codes postaux. Ex.: " -#~ "77000-77999;75001;" - -#~ msgid "Duplicate selected rows" -#~ msgstr "Dupliquer les lignes sélectionnées" - -#~ msgid "Delete selected rows" -#~ msgstr "Supprimer les lignes sélectionnées" - -# @ woocommerce -#~ msgid "Select a country/state…" -#~ msgstr "Sélectionnez un Pays/une Région…" - -# @ woocommerce -#~ msgid "Postcodes/zips" -#~ msgstr "Codes Postaux" - -#~ msgid "Cities" -#~ msgstr "Villes" - -#~ msgid "List 1 per line" -#~ msgstr "Lister 1 par ligne" - -# @ woocommerce -#~ msgid "Done" -#~ msgstr "Fait" - -# @ woocommerce -#~ msgid "countries/states selected" -#~ msgstr "pays/états sélectionnés" - -# @ woocommerce -#~ msgid "No countries selected" -#~ msgstr "Aucun pays sélectionné" - -# @ woocommerce -#~ msgid "Delete the selected rates?" -#~ msgstr "Supprimer les taux sélectionnés" - -#~ msgid "Duplicate the selected rates?" -#~ msgstr "Dupliquer les taux sélectionnés ?" - -# @ woocommerce -#~ msgid "(1 state)" -#~ msgid_plural "(%s states)" -#~ msgstr[0] "(1 état)" -#~ msgstr[1] "(%s états)" - -# @ woocommerce -#~ msgid "and 1 state" -#~ msgid_plural "and %s states" -#~ msgstr[0] "et 1 état" -#~ msgstr[1] "et %s états" - -# @ woocommerce -#~ msgid "1 country" -#~ msgid_plural "%1$s countries" -#~ msgstr[0] "1 pays" -#~ msgstr[1] "%1$s pays" - -#~ msgid "Insert Shortcode" -#~ msgstr "Insérer Shortcode" - -# @ woocommerce -#~ msgid "Product price/cart button" -#~ msgstr "Prix produit/bouton panier" - -# @ woocommerce -#~ msgid "Product by SKU/ID" -#~ msgstr "Produit par UGS/ID" - -# @ woocommerce -#~ msgid "Products by SKU/ID" -#~ msgstr "Produits par UGS/ID" - -# @ woocommerce -#~ msgid "Products by category slug" -#~ msgstr "Produits par slug catégorie" - -# @ woocommerce -#~ msgid "Recent products" -#~ msgstr "Produits récents" - -# @ woocommerce -#~ msgid "Featured products" -#~ msgstr "Produits Mis en Avant" - -# @ woocommerce -#~ msgid "Shop Messages" -#~ msgstr "Messages boutique" - -# @ woocommerce -#~ msgid "Order tracking" -#~ msgstr "Suivi de commande" - -#~ msgid "Thankyou" -#~ msgstr "Merci" - -#~ msgid "" -#~ "Sorry, it seems the coupon \"%s\" is invalid - it has now been removed " -#~ "from your order." -#~ msgstr "" -#~ "Désolé, il semblerait que le code promo \"%s\" soit invalide - il vient " -#~ "d'être retiré de votre commande." - -#~ msgid "" -#~ "Sorry, it seems the coupon \"%s\" is not yours - it has now been removed " -#~ "from your order." -#~ msgstr "" -#~ "Désolé, il semblerait que le code promo \"%s\" n'est pas le vôtre - il " -#~ "vient d'être retiré de votre commande." - -# @ woocommerce -#~ msgid "" -#~ "Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in " -#~ "stock). Please edit your cart and try again. We apologise for any " -#~ "inconvenience caused." -#~ msgstr "" -#~ "Désolé, nous n'avons pas assez de \"%s\" en stock pour honorer votre " -#~ "commande (%s en stock). Modifier votre panier svp et essayez encore. Nous " -#~ "sommes désolés pour ce désagrément." - -# @ woocommerce -#~ msgid "" -#~ "Sorry, we do not have enough \"%s\" in stock to fulfill your order. " -#~ "Please edit your cart and try again. We apologise for any inconvenience " -#~ "caused." -#~ msgstr "" -#~ "Désolé, nous n'avons pas assez de \"%s\" en stock pour honorer votre " -#~ "commande. Veuillez modifier votre panier et essayez de nouveau. Nous " -#~ "sommes désolés pour ce désagrément." - -# @ woocommerce -#~ msgid "Sorry, this product cannot be purchased." -#~ msgstr "Désolé, ce produit ne peut pas être acheté." - -# @ woocommerce -#~ msgid "" -#~ "You cannot add "%s" to the cart because the product is out of " -#~ "stock." -#~ msgstr "" -#~ "Vous ne pouvez ajouter "%s" au panier car nous n'en avons plus " -#~ "en stock." - -# @ woocommerce -#~ msgid "" -#~ "You cannot add that amount of "%s" to the cart because there is " -#~ "not enough stock (%s remaining)." -#~ msgstr "" -#~ "Vous ne pouvez pas ajouter cette quantité de "%s" au panier car " -#~ "il n'y a pas assez de stock (reste %s)." - -#~ msgid "You already have this item in your cart." -#~ msgstr "Vous avez dèjà ce produit dans votre panier." - -# @ woocommerce -#~ msgid "" -#~ "%s You cannot add that amount to the " -#~ "cart — we have %s in stock and you already have %s in your cart." -#~ msgstr "" -#~ "%s Vous ne pouvez ajouter ce montant " -#~ "au panier — nous en avons %s en stock et vous en avez déjà %s dans " -#~ "votre panier." - -# @ woocommerce -#~ msgid "Free!" -#~ msgstr "Gratuit !" - -# @ woocommerce -#~ msgid "via" -#~ msgstr "par" - -# @ woocommerce -#~ msgid "Invalid coupon." -#~ msgstr "Code Promo non valide" - -# @ woocommerce -#~ msgid "Discount code already applied!" -#~ msgstr "Code Promo déjà appliqué !" - -# @ woocommerce -#~ msgid "Discount code applied successfully." -#~ msgstr "Code Promo appliqué avec succès." - -# @ woocommerce -#~ msgid "Coupon does not exist!" -#~ msgstr "Code Promo inexistant !" - -# @ woocommerce -#~ msgid "Account username" -#~ msgstr "Nom d'utilisateur du compte" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Username" -#~ msgstr "Nom d'Utilisateur" - -# @ woocommerce -#~ msgid "Account password" -#~ msgstr "Mot de Passe du compte" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Password" -#~ msgstr "Mot de Passe" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Notes about your order, e.g. special notes for delivery." -#~ msgstr "" -#~ "Commentaires concernant votre commande, ex : consignes de livraison." - -# @ woocommerce -#~ msgid "" -#~ "Sorry, your session has expired. Return to homepage →" -#~ "" -#~ msgstr "" -#~ "Désolé, votre session a expiré. Retour à l'accueil →" - -# @ woocommerce -#~ msgid "is a required field." -#~ msgstr "est un champ requis." - -# @ woocommerce -#~ msgid "(%s) is not a valid postcode/ZIP." -#~ msgstr "(%s) n'est pas un code postal valide." - -#~ msgid "is not valid. Please enter one of the following:" -#~ msgstr "n'est pas valide. Veuillez entrer une des valeurs suivantes : " - -# @ woocommerce -#~ msgid "is not a valid number." -#~ msgstr "n'est pas un nombre valide." - -# @ woocommerce -#~ msgid "is not a valid email address." -#~ msgstr "n'est pas une adresse email valide." - -# @ woocommerce -#~ msgid "Please enter an account username." -#~ msgstr "Entrez un nom d'utilisateur." - -# @ woocommerce -#~ msgid "Invalid email/username." -#~ msgstr "Email/nom d'utilisateur non valide." - -# @ woocommerce -#~ msgid "" -#~ "An account is already registered with that username. Please choose " -#~ "another." -#~ msgstr "" -#~ "Un compte est déjà enregistré avec ce nom d'utilisateur. Choisissez en un " -#~ "autre, svp." - -# @ woocommerce -#~ msgid "Please enter an account password." -#~ msgstr "Entre un mot de passe, svp." - -# @ woocommerce -#~ msgid "" -#~ "An account is already registered with your email address. Please login." -#~ msgstr "" -#~ "Un compte est déjà enregistré avec cette adresse email. Connectez vous, " -#~ "svp." - -# @ woocommerce -#~ msgid "You must accept our Terms & Conditions." -#~ msgstr "Vous devez accepter nos Termes & Conditions." - -# @ woocommerce -#~ msgid "Invalid shipping method." -#~ msgstr "Méthode de livraison non valide." - -# @ woocommerce -#~ msgid "Invalid payment method." -#~ msgstr "Méthode de paiement non valide." - -# @ woocommerce -#~ msgid "Order – %s" -#~ msgstr "Commande n°%s" - -#~ msgctxt "Order date parsed by strftime" -#~ msgid "%b %d, %Y @ %I:%M %p" -#~ msgstr "%b %d, %Y @ %I:%M %p" - -# @ woocommerce -#~ msgid "Backordered" -#~ msgstr "En cours d'approvisionnement" - -# @ woocommerce -#~ msgid "Customer IP Address" -#~ msgstr "Adresse IP du client" - -# @ woocommerce -#~ msgid "Customer UA" -#~ msgstr "UA Client" - -# @ woocommerce -#~ msgid "Coupon Code Used: %s" -#~ msgstr "Code Promo utilisé : %s" - -# @ woocommerce -#~ msgid "Afghanistan" -#~ msgstr "Afghanistan" - -# @ woocommerce -#~ msgid "Åland Islands" -#~ msgstr "Aland Islands" - -# @ woocommerce -#~ msgid "Albania" -#~ msgstr "Albania" - -# @ woocommerce -#~ msgid "Algeria" -#~ msgstr "Algeria" - -# @ woocommerce -#~ msgid "American Samoa" -#~ msgstr "American Samoa" - -# @ woocommerce -#~ msgid "Andorra" -#~ msgstr "Andorra" - -# @ woocommerce -#~ msgid "Angola" -#~ msgstr "Angola" - -# @ woocommerce -#~ msgid "Anguilla" -#~ msgstr "Anguilla" - -# @ woocommerce -#~ msgid "Antarctica" -#~ msgstr "Antarctica" - -# @ woocommerce -#~ msgid "Antigua and Barbuda" -#~ msgstr "Antigua and Barbuda" - -# @ woocommerce -#~ msgid "Argentina" -#~ msgstr "Argentina" - -# @ woocommerce -#~ msgid "Armenia" -#~ msgstr "Armenia" - -# @ woocommerce -#~ msgid "Aruba" -#~ msgstr "Aruba" - -# @ woocommerce -#~ msgid "Australia" -#~ msgstr "Australia" - -# @ woocommerce -#~ msgid "Austria" -#~ msgstr "Austria" - -# @ woocommerce -#~ msgid "Azerbaijan" -#~ msgstr "Azerbaijan" - -# @ woocommerce -#~ msgid "Bahamas" -#~ msgstr "Bahamas" - -# @ woocommerce -#~ msgid "Bahrain" -#~ msgstr "Bahrain" - -# @ woocommerce -#~ msgid "Bangladesh" -#~ msgstr "Bangladesh" - -# @ woocommerce -#~ msgid "Barbados" -#~ msgstr "Barbados" - -# @ woocommerce -#~ msgid "Belarus" -#~ msgstr "Belarus" - -# @ woocommerce -#~ msgid "Belgium" -#~ msgstr "Belgique" - -# @ woocommerce -#~ msgid "Belize" -#~ msgstr "Belize" - -# @ woocommerce -#~ msgid "Benin" -#~ msgstr "Benin" - -# @ woocommerce -#~ msgid "Bermuda" -#~ msgstr "Bermuda" - -# @ woocommerce -#~ msgid "Bhutan" -#~ msgstr "Bhutan" - -# @ woocommerce -#~ msgid "Bolivia" -#~ msgstr "Bolivia" - -# @ woocommerce -#~ msgid "Bosnia and Herzegovina" -#~ msgstr "Bosnia and Herzegovina" - -# @ woocommerce -#~ msgid "Botswana" -#~ msgstr "Botswana" - -# @ woocommerce -#~ msgid "Brazil" -#~ msgstr "Brazil" - -# @ woocommerce -#~ msgid "British Indian Ocean Territory" -#~ msgstr "British Indian Ocean Territory" - -# @ woocommerce -#~ msgid "British Virgin Islands" -#~ msgstr "British Virgin Islands" - -# @ woocommerce -#~ msgid "Brunei" -#~ msgstr "Brunei" - -# @ woocommerce -#~ msgid "Bulgaria" -#~ msgstr "Bulgaria" - -# @ woocommerce -#~ msgid "Burkina Faso" -#~ msgstr "Burkina Faso" - -# @ woocommerce -#~ msgid "Burundi" -#~ msgstr "Burundi" - -# @ woocommerce -#~ msgid "Cambodia" -#~ msgstr "Cambodia" - -# @ woocommerce -#~ msgid "Cameroon" -#~ msgstr "Cameroon" - -# @ woocommerce -#~ msgid "Canada" -#~ msgstr "Canada" - -# @ woocommerce -#~ msgid "Cape Verde" -#~ msgstr "Cape Verde" - -# @ woocommerce -#~ msgid "Cayman Islands" -#~ msgstr "Cayman Islands" - -# @ woocommerce -#~ msgid "Central African Republic" -#~ msgstr "Central African Republic" - -# @ woocommerce -#~ msgid "Chad" -#~ msgstr "Chad" - -# @ woocommerce -#~ msgid "Chile" -#~ msgstr "Chile" - -# @ woocommerce -#~ msgid "China" -#~ msgstr "China" - -# @ woocommerce -#~ msgid "Christmas Island" -#~ msgstr "Christmas Island" - -# @ woocommerce -#~ msgid "Cocos (Keeling) Islands" -#~ msgstr "Cocos (Keeling) Islands" - -# @ woocommerce -#~ msgid "Colombia" -#~ msgstr "Colombia" - -# @ woocommerce -#~ msgid "Comoros" -#~ msgstr "Comoros" - -# @ woocommerce -#~ msgid "Congo (Brazzaville)" -#~ msgstr "Congo (Brazzaville)" - -# @ woocommerce -#~ msgid "Congo (Kinshasa)" -#~ msgstr "Congo (Kinshasa)" - -# @ woocommerce -#~ msgid "Cook Islands" -#~ msgstr "Cook Islands" - -# @ woocommerce -#~ msgid "Costa Rica" -#~ msgstr "Costa Rica" - -# @ woocommerce -#~ msgid "Croatia" -#~ msgstr "Croatia" - -# @ woocommerce -#~ msgid "Cuba" -#~ msgstr "Cuba" - -# @ woocommerce -#~ msgid "Cyprus" -#~ msgstr "Cyprus" - -# @ woocommerce -#~ msgid "Czech Republic" -#~ msgstr "Czech Republic" - -# @ woocommerce -#~ msgid "Denmark" -#~ msgstr "Denmark" - -# @ woocommerce -#~ msgid "Djibouti" -#~ msgstr "Djibouti" - -# @ woocommerce -#~ msgid "Dominica" -#~ msgstr "Dominica" - -# @ woocommerce -#~ msgid "Dominican Republic" -#~ msgstr "Dominican Republic" - -# @ woocommerce -#~ msgid "Ecuador" -#~ msgstr "Ecuador" - -# @ woocommerce -#~ msgid "Egypt" -#~ msgstr "Egypt" - -# @ woocommerce -#~ msgid "El Salvador" -#~ msgstr "El Salvador" - -# @ woocommerce -#~ msgid "Equatorial Guinea" -#~ msgstr "Equatorial Guinea" - -# @ woocommerce -#~ msgid "Eritrea" -#~ msgstr "Eritrea" - -# @ woocommerce -#~ msgid "Estonia" -#~ msgstr "Estonia" - -# @ woocommerce -#~ msgid "Ethiopia" -#~ msgstr "Ethiopia" - -# @ woocommerce -#~ msgid "Falkland Islands" -#~ msgstr "Falkland Islands" - -# @ woocommerce -#~ msgid "Faroe Islands" -#~ msgstr "Faroe Islands" - -# @ woocommerce -#~ msgid "Fiji" -#~ msgstr "Fiji" - -# @ woocommerce -#~ msgid "Finland" -#~ msgstr "Finland" - -# @ woocommerce -#~ msgid "France" -#~ msgstr "France" - -# @ woocommerce -#~ msgid "French Guiana" -#~ msgstr "French Guiana" - -# @ woocommerce -#~ msgid "French Polynesia" -#~ msgstr "French Polynesia" - -# @ woocommerce -#~ msgid "French Southern Territories" -#~ msgstr "French Southern Territories" - -# @ woocommerce -#~ msgid "Gabon" -#~ msgstr "Gabon" - -# @ woocommerce -#~ msgid "Gambia" -#~ msgstr "Gambia" - -# @ woocommerce -#~ msgid "Georgia" -#~ msgstr "Georgia" - -# @ woocommerce -#~ msgid "Germany" -#~ msgstr "Germany" - -# @ woocommerce -#~ msgid "Ghana" -#~ msgstr "Ghana" - -# @ woocommerce -#~ msgid "Gibraltar" -#~ msgstr "Gibraltar" - -# @ woocommerce -#~ msgid "Greece" -#~ msgstr "Greece" - -# @ woocommerce -#~ msgid "Greenland" -#~ msgstr "Greenland" - -# @ woocommerce -#~ msgid "Grenada" -#~ msgstr "Grenada" - -# @ woocommerce -#~ msgid "Guadeloupe" -#~ msgstr "Guadeloupe" - -# @ woocommerce -#~ msgid "Guam" -#~ msgstr "Guam" - -# @ woocommerce -#~ msgid "Guatemala" -#~ msgstr "Guatemala" - -# @ woocommerce -#~ msgid "Guernsey" -#~ msgstr "Guernsey" - -# @ woocommerce -#~ msgid "Guinea" -#~ msgstr "Guinea" - -# @ woocommerce -#~ msgid "Guinea-Bissau" -#~ msgstr "Guinea-Bissau" - -# @ woocommerce -#~ msgid "Guyana" -#~ msgstr "Guyana" - -# @ woocommerce -#~ msgid "Haiti" -#~ msgstr "Haiti" - -# @ woocommerce -#~ msgid "Honduras" -#~ msgstr "Honduras" - -#~ msgid "Hong Kong" -#~ msgstr "Hong Kong" - -# @ woocommerce -#~ msgid "Hungary" -#~ msgstr "Hungary" - -# @ woocommerce -#~ msgid "Iceland" -#~ msgstr "Iceland" - -# @ woocommerce -#~ msgid "India" -#~ msgstr "India" - -# @ woocommerce -#~ msgid "Indonesia" -#~ msgstr "Indonesia" - -# @ woocommerce -#~ msgid "Iran" -#~ msgstr "Iran" - -# @ woocommerce -#~ msgid "Iraq" -#~ msgstr "Iraq" - -#~ msgid "Republic of Ireland" -#~ msgstr "Republique d'Ireland" - -# @ woocommerce -#~ msgid "Isle of Man" -#~ msgstr "Isle of Man" - -# @ woocommerce -#~ msgid "Israel" -#~ msgstr "Israel" - -# @ woocommerce -#~ msgid "Italy" -#~ msgstr "Italy" - -# @ woocommerce -#~ msgid "Ivory Coast" -#~ msgstr "Ivory Coast" - -# @ woocommerce -#~ msgid "Jamaica" -#~ msgstr "Jamaica" - -# @ woocommerce -#~ msgid "Japan" -#~ msgstr "Japan" - -# @ woocommerce -#~ msgid "Jersey" -#~ msgstr "Jersey" - -# @ woocommerce -#~ msgid "Jordan" -#~ msgstr "Jordan" - -# @ woocommerce -#~ msgid "Kazakhstan" -#~ msgstr "Kazakhstan" - -# @ woocommerce -#~ msgid "Kenya" -#~ msgstr "Kenya" - -# @ woocommerce -#~ msgid "Kiribati" -#~ msgstr "Kiribati" - -# @ woocommerce -#~ msgid "Kuwait" -#~ msgstr "Kuwait" - -# @ woocommerce -#~ msgid "Kyrgyzstan" -#~ msgstr "Kyrgyzstan" - -# @ woocommerce -#~ msgid "Laos" -#~ msgstr "Laos" - -# @ woocommerce -#~ msgid "Latvia" -#~ msgstr "Latvia" - -# @ woocommerce -#~ msgid "Lebanon" -#~ msgstr "Lebanon" - -# @ woocommerce -#~ msgid "Lesotho" -#~ msgstr "Lesotho" - -# @ woocommerce -#~ msgid "Liberia" -#~ msgstr "Liberia" - -# @ woocommerce -#~ msgid "Libya" -#~ msgstr "Libya" - -# @ woocommerce -#~ msgid "Liechtenstein" -#~ msgstr "Liechtenstein" - -# @ woocommerce -#~ msgid "Lithuania" -#~ msgstr "Lithuania" - -# @ woocommerce -#~ msgid "Luxembourg" -#~ msgstr "Luxembourg" - -# @ woocommerce -#~ msgid "Macao S.A.R., China" -#~ msgstr "Macao S.A.R., China" - -# @ woocommerce -#~ msgid "Macedonia" -#~ msgstr "Macedonia" - -# @ woocommerce -#~ msgid "Madagascar" -#~ msgstr "Madagascar" - -# @ woocommerce -#~ msgid "Malawi" -#~ msgstr "Malawi" - -# @ woocommerce -#~ msgid "Malaysia" -#~ msgstr "Malaysia" - -# @ woocommerce -#~ msgid "Maldives" -#~ msgstr "Maldives" - -# @ woocommerce -#~ msgid "Mali" -#~ msgstr "Mali" - -# @ woocommerce -#~ msgid "Malta" -#~ msgstr "Malta" - -# @ woocommerce -#~ msgid "Marshall Islands" -#~ msgstr "Marshall Islands" - -# @ woocommerce -#~ msgid "Martinique" -#~ msgstr "Martinique" - -# @ woocommerce -#~ msgid "Mauritania" -#~ msgstr "Mauritania" - -# @ woocommerce -#~ msgid "Mauritius" -#~ msgstr "Mauritius" - -# @ woocommerce -#~ msgid "Mayotte" -#~ msgstr "Mayotte" - -# @ woocommerce -#~ msgid "Mexico" -#~ msgstr "Mexico" - -# @ woocommerce -#~ msgid "Micronesia" -#~ msgstr "Micronesia" - -# @ woocommerce -#~ msgid "Moldova" -#~ msgstr "Moldova" - -# @ woocommerce -#~ msgid "Monaco" -#~ msgstr "Monaco" - -# @ woocommerce -#~ msgid "Mongolia" -#~ msgstr "Mongolia" - -# @ woocommerce -#~ msgid "Montenegro" -#~ msgstr "Montenegro" - -# @ woocommerce -#~ msgid "Montserrat" -#~ msgstr "Montserrat" - -# @ woocommerce -#~ msgid "Morocco" -#~ msgstr "Morocco" - -# @ woocommerce -#~ msgid "Mozambique" -#~ msgstr "Mozambique" - -# @ woocommerce -#~ msgid "Myanmar" -#~ msgstr "Myanmar" - -# @ woocommerce -#~ msgid "Namibia" -#~ msgstr "Namibia" - -# @ woocommerce -#~ msgid "Nauru" -#~ msgstr "Nauru" - -# @ woocommerce -#~ msgid "Nepal" -#~ msgstr "Nepal" - -# @ woocommerce -#~ msgid "Netherlands" -#~ msgstr "Netherlands" - -# @ woocommerce -#~ msgid "Netherlands Antilles" -#~ msgstr "Netherlands Antilles" - -# @ woocommerce -#~ msgid "New Caledonia" -#~ msgstr "New Caledonia" - -# @ woocommerce -#~ msgid "New Zealand" -#~ msgstr "New Zealand" - -# @ woocommerce -#~ msgid "Nicaragua" -#~ msgstr "Nicaragua" - -# @ woocommerce -#~ msgid "Niger" -#~ msgstr "Niger" - -# @ woocommerce -#~ msgid "Nigeria" -#~ msgstr "Nigeria" - -# @ woocommerce -#~ msgid "Niue" -#~ msgstr "Niue" - -# @ woocommerce -#~ msgid "Norfolk Island" -#~ msgstr "Norfolk Island" - -# @ woocommerce -#~ msgid "North Korea" -#~ msgstr "North Korea" - -# @ woocommerce -#~ msgid "Northern Mariana Islands" -#~ msgstr "Northern Mariana Islands" - -# @ woocommerce -#~ msgid "Norway" -#~ msgstr "Norway" - -# @ woocommerce -#~ msgid "Oman" -#~ msgstr "Oman" - -# @ woocommerce -#~ msgid "Pakistan" -#~ msgstr "Pakistan" - -# @ woocommerce -#~ msgid "Palau" -#~ msgstr "Palau" - -# @ woocommerce -#~ msgid "Palestinian Territory" -#~ msgstr "Palestinian Territory" - -# @ woocommerce -#~ msgid "Panama" -#~ msgstr "Panama" - -# @ woocommerce -#~ msgid "Papua New Guinea" -#~ msgstr "Papua New Guinea" - -# @ woocommerce -#~ msgid "Paraguay" -#~ msgstr "Paraguay" - -# @ woocommerce -#~ msgid "Peru" -#~ msgstr "Peru" - -# @ woocommerce -#~ msgid "Philippines" -#~ msgstr "Philippines" - -# @ woocommerce -#~ msgid "Pitcairn" -#~ msgstr "Pitcairn" - -# @ woocommerce -#~ msgid "Poland" -#~ msgstr "Poland" - -# @ woocommerce -#~ msgid "Portugal" -#~ msgstr "Portugal" - -# @ woocommerce -#~ msgid "Puerto Rico" -#~ msgstr "Puerto Rico" - -# @ woocommerce -#~ msgid "Qatar" -#~ msgstr "Qatar" - -# @ woocommerce -#~ msgid "Reunion" -#~ msgstr "Reunion" - -# @ woocommerce -#~ msgid "Romania" -#~ msgstr "Romania" - -# @ woocommerce -#~ msgid "Russia" -#~ msgstr "Russia" - -# @ woocommerce -#~ msgid "Rwanda" -#~ msgstr "Rwanda" - -# @ woocommerce -#~ msgid "Saint Barthélemy" -#~ msgstr "Saint Barthélemy" - -# @ woocommerce -#~ msgid "Saint Helena" -#~ msgstr "Saint Helena" - -# @ woocommerce -#~ msgid "Saint Kitts and Nevis" -#~ msgstr "Saint Kitts and Nevis" - -# @ woocommerce -#~ msgid "Saint Lucia" -#~ msgstr "Saint Lucia" - -# @ woocommerce -#~ msgid "Saint Martin (French part)" -#~ msgstr "Saint Martin (French part)" - -# @ woocommerce -#~ msgid "Saint Pierre and Miquelon" -#~ msgstr "Saint Pierre and Miquelon" - -# @ woocommerce -#~ msgid "Saint Vincent and the Grenadines" -#~ msgstr "Saint Vincent and the Grenadines" - -# @ woocommerce -#~ msgid "Samoa" -#~ msgstr "Samoa" - -# @ woocommerce -#~ msgid "San Marino" -#~ msgstr "San Marino" - -# @ woocommerce -#~ msgid "São Tomé and Príncipe" -#~ msgstr "Sao Tome and Principe" - -# @ woocommerce -#~ msgid "Saudi Arabia" -#~ msgstr "Saudi Arabia" - -# @ woocommerce -#~ msgid "Senegal" -#~ msgstr "Senegal" - -# @ woocommerce -#~ msgid "Serbia" -#~ msgstr "Serbia" - -# @ woocommerce -#~ msgid "Seychelles" -#~ msgstr "Seychelles" - -# @ woocommerce -#~ msgid "Sierra Leone" -#~ msgstr "Sierra Leone" - -# @ woocommerce -#~ msgid "Singapore" -#~ msgstr "Singapore" - -# @ woocommerce -#~ msgid "Slovakia" -#~ msgstr "Slovakia" - -# @ woocommerce -#~ msgid "Slovenia" -#~ msgstr "Slovenia" - -# @ woocommerce -#~ msgid "Solomon Islands" -#~ msgstr "Solomon Islands" - -# @ woocommerce -#~ msgid "Somalia" -#~ msgstr "Somalia" - -# @ woocommerce -#~ msgid "South Africa" -#~ msgstr "South Africa" - -# @ woocommerce -#~ msgid "South Georgia/Sandwich Islands" -#~ msgstr "South Georgia/Sandwich Islands" - -# @ woocommerce -#~ msgid "South Korea" -#~ msgstr "South Korea" - -# @ woocommerce -#~ msgid "Spain" -#~ msgstr "Spain" - -# @ woocommerce -#~ msgid "Sri Lanka" -#~ msgstr "Sri Lanka" - -# @ woocommerce -#~ msgid "Sudan" -#~ msgstr "Sudan" - -# @ woocommerce -#~ msgid "Suriname" -#~ msgstr "Suriname" - -# @ woocommerce -#~ msgid "Svalbard and Jan Mayen" -#~ msgstr "Svalbard and Jan Mayen" - -# @ woocommerce -#~ msgid "Swaziland" -#~ msgstr "Swaziland" - -# @ woocommerce -#~ msgid "Sweden" -#~ msgstr "Sweden" - -# @ woocommerce -#~ msgid "Switzerland" -#~ msgstr "Suisse" - -# @ woocommerce -#~ msgid "Syria" -#~ msgstr "Syria" - -# @ woocommerce -#~ msgid "Taiwan" -#~ msgstr "Taiwan" - -# @ woocommerce -#~ msgid "Tajikistan" -#~ msgstr "Tajikistan" - -# @ woocommerce -#~ msgid "Tanzania" -#~ msgstr "Tanzania" - -# @ woocommerce -#~ msgid "Thailand" -#~ msgstr "Thailand" - -# @ woocommerce -#~ msgid "Timor-Leste" -#~ msgstr "Timor-Leste" - -# @ woocommerce -#~ msgid "Togo" -#~ msgstr "Togo" - -# @ woocommerce -#~ msgid "Tokelau" -#~ msgstr "Tokelau" - -# @ woocommerce -#~ msgid "Tonga" -#~ msgstr "Tonga" - -# @ woocommerce -#~ msgid "Trinidad and Tobago" -#~ msgstr "Trinidad and Tobago" - -# @ woocommerce -#~ msgid "Tunisia" -#~ msgstr "Tunisia" - -# @ woocommerce -#~ msgid "Turkey" -#~ msgstr "Turkey" - -# @ woocommerce -#~ msgid "Turkmenistan" -#~ msgstr "Turkmenistan" - -# @ woocommerce -#~ msgid "Turks and Caicos Islands" -#~ msgstr "Turks and Caicos Islands" - -# @ woocommerce -#~ msgid "Tuvalu" -#~ msgstr "Tuvalu" - -# @ woocommerce -#~ msgid "U.S. Virgin Islands" -#~ msgstr "U.S. Virgin Islands" - -#~ msgid "US Armed Forces" -#~ msgstr "Forces Armées Américaines" - -# @ woocommerce -#~ msgid "US Minor Outlying Islands" -#~ msgstr "US Minor Outlying Islands" - -# @ woocommerce -#~ msgid "Uganda" -#~ msgstr "Uganda" - -# @ woocommerce -#~ msgid "Ukraine" -#~ msgstr "Ukraine" - -# @ woocommerce -#~ msgid "United Arab Emirates" -#~ msgstr "Émirats Arabes Unis" - -# @ woocommerce -#~ msgid "United Kingdom" -#~ msgstr "Royaume Uni" - -# @ woocommerce -#~ msgid "United States" -#~ msgstr "États-Unis" - -# @ woocommerce -#~ msgid "Uruguay" -#~ msgstr "Uruguay" - -# @ woocommerce -#~ msgid "Uzbekistan" -#~ msgstr "Uzbekistan" - -# @ woocommerce -#~ msgid "Vanuatu" -#~ msgstr "Vanuatu" - -# @ woocommerce -#~ msgid "Vatican" -#~ msgstr "Vatican" - -# @ woocommerce -#~ msgid "Venezuela" -#~ msgstr "Venezuela" - -# @ woocommerce -#~ msgid "Vietnam" -#~ msgstr "Vietnam" - -# @ woocommerce -#~ msgid "Wallis and Futuna" -#~ msgstr "Wallis and Futuna" - -# @ woocommerce -#~ msgid "Western Sahara" -#~ msgstr "Western Sahara" - -# @ woocommerce -#~ msgid "Yemen" -#~ msgstr "Yemen" - -# @ woocommerce -#~ msgid "Zambia" -#~ msgstr "Zambia" - -# @ woocommerce -#~ msgid "Zimbabwe" -#~ msgstr "Zimbabwe" - -# @ woocommerce -#~ msgid "Australian Capital Territory" -#~ msgstr "Australian Capital Territory" - -# @ woocommerce -#~ msgid "New South Wales" -#~ msgstr "New South Wales" - -# @ woocommerce -#~ msgid "Northern Territory" -#~ msgstr "Northern Territory" - -# @ woocommerce -#~ msgid "Queensland" -#~ msgstr "Queensland" - -# @ woocommerce -#~ msgid "South Australia" -#~ msgstr "South Australia" - -# @ woocommerce -#~ msgid "Tasmania" -#~ msgstr "Tasmania" - -# @ woocommerce -#~ msgid "Victoria" -#~ msgstr "Victoria" - -# @ woocommerce -#~ msgid "Western Australia" -#~ msgstr "Western Australia" - -#~ msgid "Acre" -#~ msgstr "Acre" - -# @ woocommerce -#~ msgid "Alagoas" -#~ msgstr "Alagoas" - -#~ msgid "Amapá" -#~ msgstr "Amapá" - -# @ woocommerce -#~ msgid "Amazonas" -#~ msgstr "Amazonas" - -# @ woocommerce -#~ msgid "Bahia" -#~ msgstr "Bahia" - -#~ msgid "Ceará" -#~ msgstr "Ceará" - -#~ msgid "Distrito Federal" -#~ msgstr "Distrito Federal" - -#~ msgid "Espírito Santo" -#~ msgstr "Espírito Santo" - -#~ msgid "Goiás" -#~ msgstr "Goiás" - -#~ msgid "Maranhão" -#~ msgstr "Maranhão" - -#~ msgid "Mato Grosso" -#~ msgstr "Mato Grosso" - -#~ msgid "Mato Grosso do Sul" -#~ msgstr "Mato Grosso do Sul" - -#~ msgid "Minas Gerais" -#~ msgstr "Minas Gerais" - -#~ msgid "Pará" -#~ msgstr "Pará" - -#~ msgid "Paraíba" -#~ msgstr "Paraíba" - -#~ msgid "Paraná" -#~ msgstr "Paraná" - -#~ msgid "Pernambuco" -#~ msgstr "Pernambuco" - -#~ msgid "Piauí" -#~ msgstr "Piauí" - -#~ msgid "Rio de Janeiro" -#~ msgstr "Rio de Janeiro" - -#~ msgid "Rio Grande do Norte" -#~ msgstr "Rio Grande do Norte" - -#~ msgid "Rio Grande do Sul" -#~ msgstr "Rio Grande do Sul" - -#~ msgid "Rondônia" -#~ msgstr "Rondônia" - -# @ woocommerce -#~ msgid "Roraima" -#~ msgstr "Roraima" - -# @ woocommerce -#~ msgid "Santa Catarina" -#~ msgstr "Santa Catarina" - -#~ msgid "São Paulo" -#~ msgstr "São Paulo" - -# @ woocommerce -#~ msgid "Sergipe" -#~ msgstr "Sergipe" - -# @ woocommerce -#~ msgid "Tocantins" -#~ msgstr "Tocantins" - -# @ woocommerce -#~ msgid "Alberta" -#~ msgstr "Alberta" - -# @ woocommerce -#~ msgid "British Columbia" -#~ msgstr "Colombie-Britannique" - -# @ woocommerce -#~ msgid "Manitoba" -#~ msgstr "Manitoba" - -# @ woocommerce -#~ msgid "New Brunswick" -#~ msgstr "Nouveau-Brunswick" - -# @ woocommerce -#~ msgid "Newfoundland" -#~ msgstr "Terre-Neuve" - -# @ woocommerce -#~ msgid "Northwest Territories" -#~ msgstr "Territoires du Nord-Ouest" - -# @ woocommerce -#~ msgid "Nova Scotia" -#~ msgstr "Nouvelle-Écosse" - -# @ woocommerce -#~ msgid "Nunavut" -#~ msgstr "Nunavut" - -# @ woocommerce -#~ msgid "Ontario" -#~ msgstr "Ontario" - -# @ woocommerce -#~ msgid "Prince Edward Island" -#~ msgstr "Île du Prince-Édouard" - -# @ woocommerce -#~ msgid "Quebec" -#~ msgstr "Québec" - -# @ woocommerce -#~ msgid "Saskatchewan" -#~ msgstr "Saskatchewan" - -# @ woocommerce -#~ msgid "Yukon Territory" -#~ msgstr "Yukon" - -# @ woocommerce -#~ msgid "Hong Kong Island" -#~ msgstr "Hong Kong Island" - -#~ msgid "Kowloon" -#~ msgstr "Kowloon" - -# @ woocommerce -#~ msgid "New Territories" -#~ msgstr "Nouveaux Territoires" - -# @ woocommerce -#~ msgid "Auckland" -#~ msgstr "Auckland" - -#~ msgid "Bay of Plenty" -#~ msgstr "Bay of Plenty" - -# @ woocommerce -#~ msgid "Canterbury" -#~ msgstr "Canterbury" - -#~ msgid "Hawke’s Bay" -#~ msgstr "Hawke’s Bay" - -#~ msgid "Manawatu-Wanganui" -#~ msgstr "Manawatu-Wanganui" - -#~ msgid "Marlborough" -#~ msgstr "Marlborough" - -# @ woocommerce -#~ msgid "Nelson" -#~ msgstr "Nelson" - -# @ woocommerce -#~ msgid "Northland" -#~ msgstr "Northland" - -# "il y a" déplacé dans la chaine parente car "ago" est placé après la durée en anglais. -#~ msgid "Otago" -#~ msgstr "Otago" - -# @ woocommerce -#~ msgid "Southland" -#~ msgstr "Southland" - -# @ woocommerce -#~ msgid "Taranaki" -#~ msgstr "Taranaki" - -# @ woocommerce -#~ msgid "Tasman" -#~ msgstr "Tasman" - -# @ woocommerce -#~ msgid "Waikato" -#~ msgstr "Waikato" - -# @ woocommerce -#~ msgid "Wellington" -#~ msgstr "Wellington" - -# @ woocommerce -#~ msgid "West Coast" -#~ msgstr "West Coast" - -# @ woocommerce -#~ msgid "Alabama" -#~ msgstr "Alabama" - -# @ woocommerce -#~ msgid "Alaska" -#~ msgstr "Alaska" - -# @ woocommerce -#~ msgid "Arizona" -#~ msgstr "Arizona" - -# @ woocommerce -#~ msgid "Arkansas" -#~ msgstr "Arkansas" - -# @ woocommerce -#~ msgid "California" -#~ msgstr "California" - -# @ woocommerce -#~ msgid "Colorado" -#~ msgstr "Colorado" - -# @ woocommerce -#~ msgid "Connecticut" -#~ msgstr "Connecticut" - -# @ woocommerce -#~ msgid "Delaware" -#~ msgstr "Delaware" - -# @ woocommerce -#~ msgid "District Of Columbia" -#~ msgstr "District Of Columbia" - -# @ woocommerce -#~ msgid "Florida" -#~ msgstr "Florida" - -# @ woocommerce -#~ msgid "Hawaii" -#~ msgstr "Hawaii" - -# @ woocommerce -#~ msgid "Idaho" -#~ msgstr "Idaho" - -# @ woocommerce -#~ msgid "Illinois" -#~ msgstr "Illinois" - -# @ woocommerce -#~ msgid "Indiana" -#~ msgstr "Indiana" - -# @ woocommerce -#~ msgid "Iowa" -#~ msgstr "Iowa" - -# @ woocommerce -#~ msgid "Kansas" -#~ msgstr "Kansas" - -# @ woocommerce -#~ msgid "Kentucky" -#~ msgstr "Kentucky" - -# @ woocommerce -#~ msgid "Louisiana" -#~ msgstr "Louisiana" - -# @ woocommerce -#~ msgid "Maine" -#~ msgstr "Maine" - -# @ woocommerce -#~ msgid "Maryland" -#~ msgstr "Maryland" - -# @ woocommerce -#~ msgid "Massachusetts" -#~ msgstr "Massachusetts" - -# @ woocommerce -#~ msgid "Michigan" -#~ msgstr "Michigan" - -# @ woocommerce -#~ msgid "Minnesota" -#~ msgstr "Minnesota" - -# @ woocommerce -#~ msgid "Mississippi" -#~ msgstr "Mississippi" - -# @ woocommerce -#~ msgid "Missouri" -#~ msgstr "Missouri" - -# @ woocommerce -#~ msgid "Montana" -#~ msgstr "Montana" - -# @ woocommerce -#~ msgid "Nebraska" -#~ msgstr "Nebraska" - -# @ woocommerce -#~ msgid "Nevada" -#~ msgstr "Nevada" - -# @ woocommerce -#~ msgid "New Hampshire" -#~ msgstr "New Hampshire" - -# @ woocommerce -#~ msgid "New Jersey" -#~ msgstr "New Jersey" - -# @ woocommerce -#~ msgid "New Mexico" -#~ msgstr "New Mexico" - -# @ woocommerce -#~ msgid "New York" -#~ msgstr "New York" - -# @ woocommerce -#~ msgid "North Carolina" -#~ msgstr "North Carolina" - -# @ woocommerce -#~ msgid "North Dakota" -#~ msgstr "North Dakota" - -# @ woocommerce -#~ msgid "Ohio" -#~ msgstr "Ohio" - -# @ woocommerce -#~ msgid "Oklahoma" -#~ msgstr "Oklahoma" - -# @ woocommerce -#~ msgid "Oregon" -#~ msgstr "Oregon" - -# @ woocommerce -#~ msgid "Pennsylvania" -#~ msgstr "Pennsylvania" - -# @ woocommerce -#~ msgid "Rhode Island" -#~ msgstr "Rhode Island" - -# @ woocommerce -#~ msgid "South Carolina" -#~ msgstr "South Carolina" - -# @ woocommerce -#~ msgid "South Dakota" -#~ msgstr "South Dakota" - -# @ woocommerce -#~ msgid "Tennessee" -#~ msgstr "Tennessee" - -# @ woocommerce -#~ msgid "Texas" -#~ msgstr "Texas" - -# @ woocommerce -#~ msgid "Utah" -#~ msgstr "Utah" - -# @ woocommerce -#~ msgid "Vermont" -#~ msgstr "Vermont" - -# @ woocommerce -#~ msgid "Virginia" -#~ msgstr "Virginia" - -# @ woocommerce -#~ msgid "Washington" -#~ msgstr "Washington" - -# @ woocommerce -#~ msgid "West Virginia" -#~ msgstr "West Virginia" - -# @ woocommerce -#~ msgid "Wisconsin" -#~ msgstr "Wisconsin" - -# @ woocommerce -#~ msgid "Wyoming" -#~ msgstr "Wyoming" - -# @ woocommerce -#~ msgid "Americas" -#~ msgstr "Americas" - -# @ woocommerce -#~ msgid "Europe" -#~ msgstr "Europe" - -# @ woocommerce -#~ msgid "Pacific" -#~ msgstr "Pacific" - -# @ woocommerce -#~ msgid "to the" -#~ msgstr "pour le" - -# @ woocommerce -#~ msgid "to" -#~ msgstr "pour" - -# @ woocommerce -#~ msgid "the" -#~ msgstr "le" - -# @ woocommerce -#~ msgid "VAT" -#~ msgstr "TVA" - -# @ woocommerce -#~ msgid "(incl. VAT)" -#~ msgstr "T.T.C." - -# @ woocommerce -#~ msgid "(incl. tax)" -#~ msgstr "(incluant la taxe)" - -# @ woocommerce -#~ msgid "(ex. VAT)" -#~ msgstr "H.T." - -# @ woocommerce -#~ msgid "Province" -#~ msgstr "Province" - -# @ woocommerce -#~ msgid "Canton" -#~ msgstr "Canton" - -#~ msgid "Municipality" -#~ msgstr "Municipalité" - -#~ msgid "Town/District" -#~ msgstr "Ville/Quartier" - -# @ woocommerce -#~ msgid "Region" -#~ msgstr "Région" - -#~ msgid "Zip" -#~ msgstr "Code postal" - -# @ woocommerce -#~ msgid "State" -#~ msgstr "État" - -# @ woocommerce -#~ msgid "County" -#~ msgstr "Comté" - -# @ woocommerce -#~ msgid "Postcode/Zip" -#~ msgstr "Code Postal" - -# @ woocommerce -#~ msgid "Town/City" -#~ msgstr "Ville" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "First Name" -#~ msgstr "Prénom" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Last Name" -#~ msgstr "Nom" - -# @ woocommerce -#~ msgid "Company Name" -#~ msgstr "Nom de l'entreprise" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Company (optional)" -#~ msgstr "Entreprise (optionnel)" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Address" -#~ msgstr "Adresse" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Address 2 (optional)" -#~ msgstr "Adresse 2 (optionnel)" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Town/City" -#~ msgstr "Ville" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Postcode/Zip" -#~ msgstr "Code Postal" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Country" -#~ msgstr "Pays" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "State/County" -#~ msgstr "État/Pays" - -# @ woocommerce -#~ msgid "Email Address" -#~ msgstr "Adresse email" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Email Address" -#~ msgstr "Adresse email" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Phone" -#~ msgstr "Tel" - -#~ msgid "Coupon usage limit has been reached." -#~ msgstr "La limite d'utilisation du coupon a été atteinte." - -# @ woocommerce -#~ msgid "This coupon has expired." -#~ msgstr "Ce code promo esr expiré." - -#~ msgid "The minimum spend for this coupon is %s." -#~ msgstr "Le minimum de dépense pour ce coupon est %s." - -#~ msgid "Sorry, this coupon is not applicable to your cart contents." -#~ msgstr "Désolé, ce code promo ne s'applique pas au contenu de votre panier." - -# @ woocommerce -#~ msgid "Invalid coupon" -#~ msgstr "Code Promo non valide" - -# @ woocommerce -#~ msgid "File %d" -#~ msgstr "Fichier %d" - -# @ woocommerce -#~ msgctxt "hash before order number" -#~ msgid "#" -#~ msgstr "n°" - -# @ woocommerce -#~ msgid " %svia %s" -#~ msgstr " %s via %s" - -# @ woocommerce -#~ msgid "Cart Subtotal:" -#~ msgstr "Sous-Total du panier :" - -# @ woocommerce -#~ msgid "Shipping:" -#~ msgstr "Expédition :" - -# @ woocommerce -#~ msgid "Subtotal:" -#~ msgstr "Sous-Total :" - -# @ woocommerce -#~ msgctxt "Relating to tax" -#~ msgid "N/A" -#~ msgstr "N/A" - -# @ woocommerce -#~ msgid "Order status changed from %s to %s." -#~ msgstr "État de la commande modifié de %s à %s" - -# @ woocommerce -#~ msgid "Order item stock reduced successfully." -#~ msgstr "Stock d'éléments de la commande diminué avec succès" - -# @ woocommerce -#~ msgid "Only %s left in stock" -#~ msgstr " Plus que %s en stock" - -# @ woocommerce -#~ msgid "%s in stock" -#~ msgstr " %s en stock" - -# @ woocommerce -#~ msgid "(backorders allowed)" -#~ msgstr "(retours de commandes autorisés)" - -# @ woocommerce -#~ msgid "Available on backorder" -#~ msgstr "Disponible en backorder" - -# @ woocommerce -#~ msgctxt "min_price" -#~ msgid "From:" -#~ msgstr "A partir de :" - -# @ woocommerce -#~ msgid "Rated %s out of 5" -#~ msgstr "Note %s sur 5" - -# @ woocommerce -#~ msgid "This function needs to be overridden by your payment gateway class." -#~ msgstr "" -#~ "Cette fonction doit être remplacée par votre classe de passerelle de " -#~ "paiement." - -# @ woocommerce -#~ msgid "Completed order" -#~ msgstr "Commande terminée" - -#~ msgid "" -#~ "Order complete emails are sent to the customer when the order is marked " -#~ "complete and usual indicates that the order has been shipped." -#~ msgstr "" -#~ "Les emails de commande terminée sont expédiés au client lorsque la " -#~ "commande est marquée terminée et indiquent généralement que la commande a " -#~ "été expédiée." - -# @ woocommerce -#~ msgid "Your order is complete" -#~ msgstr "Votre commande est terminée" - -#~ msgid "Your {blogname} order from {order_date} is complete" -#~ msgstr "Votre commande {blogname} du {order_date} est terminée" - -# @ woocommerce -#~ msgid "Your order is complete - download your files" -#~ msgstr "Votre commande est terminée - téléchargez vos fichiers" - -#~ msgid "" -#~ "Your {blogname} order from {order_date} is complete - download your files" -#~ msgstr "" -#~ "Votre commande {blogname} du {order_date} est terminée - téléchargez vos " -#~ "fichiers" - -#~ msgid "jS F Y" -#~ msgstr "j M Y" - -# @ woocommerce -#~ msgid "Enable/Disable" -#~ msgstr "Activer/Désactiver" - -# @ woocommerce -#~ msgid "Enable this email notification" -#~ msgstr "Activer cet notification email" - -#~ msgid "Subject" -#~ msgstr "Sujet" - -#~ msgid "Defaults to %s" -#~ msgstr "Par défaut à %s" - -# @ woocommerce -#~ msgid "Email Heading" -#~ msgstr "Entête Email" - -# @ woocommerce -#~ msgid "Subject (downloadable)" -#~ msgstr "Sujet (téléchargeable)" - -#~ msgid "Email Heading (downloadable)" -#~ msgstr "Entête email (téléchargeable)" - -# @ woocommerce -#~ msgid "Email type" -#~ msgstr "Type d'email" - -#~ msgid "Choose which format of email to send." -#~ msgstr "Choisissez quel format d'email envoyer." - -#~ msgid "Plain text" -#~ msgstr "Texte brut" - -#~ msgid "HTML" -#~ msgstr "HTML" - -#~ msgid "Multipart" -#~ msgstr "Multipart" - -# @ woocommerce -#~ msgid "Customer invoice" -#~ msgstr "Facture client" - -#~ msgid "" -#~ "Customer invoice emails are sent when you click the \"send invoice\" " -#~ "button when editing an order." -#~ msgstr "" -#~ "Les emails de facture client sont expédiés lorsque vous cliquez le bouton " -#~ "\"envoyer facture\" depuis l'édition d'une commande." - -#~ msgid "Invoice for order {order_number} from {order_date}" -#~ msgstr "Facture de la commande {order_number} du {order_date}" - -# @ woocommerce -#~ msgid "Invoice for order {order_number}" -#~ msgstr "Facture de la commande {order_number}" - -#~ msgid "Your {blogname} order from {order_date}" -#~ msgstr "Votre commande {blogname} du {order_date}" - -#~ msgid "Order {order_number} details" -#~ msgstr "Détails de la commande {order_number}" - -# @ woocommerce -#~ msgid "Email subject" -#~ msgstr "Sujet email" - -# @ woocommerce -#~ msgid "Email heading" -#~ msgstr "Entête email" - -#~ msgid "Email subject (paid)" -#~ msgstr "Sujet email (payée)" - -#~ msgid "Email heading (paid)" -#~ msgstr "Entête email (payée)" - -# @ woocommerce -#~ msgid "New account" -#~ msgstr "Nouveau compte" - -#~ msgid "" -#~ "Customer new account emails are sent when a customer signs up via the " -#~ "checkout or My Account page." -#~ msgstr "" -#~ "Les emails de nouveau compte client sont envoyés lorsqu'un client " -#~ "s'enregistre depuis la page commande ou Mon Compte." - -#~ msgid "Your account on {blogname}" -#~ msgstr "Votre compte sur {blogname}" - -#~ msgid "Welcome to {blogname}" -#~ msgstr "Bienvenue sur {blogname}" - -#~ msgid "Customer note emails are sent when you add a note to an order." -#~ msgstr "" -#~ "Les emails de notes client sont expédiés lorsque vous ajoutez une note à " -#~ "une commande." - -#~ msgid "Note added to your {blogname} order from {order_date}" -#~ msgstr "Note ajoutée à votre commande {blogname} du {order_date}" - -#~ msgid "A note has been added to your order" -#~ msgstr "Une note a été ajoutée à votre commande" - -# @ woocommerce -#~ msgid "Processing order" -#~ msgstr "Commande en cours" - -#~ msgid "" -#~ "This is an order notification sent to the customer after payment " -#~ "containing order details." -#~ msgstr "" -#~ "Ceci est une notification de commande envoyée au client après le paiement " -#~ "et contenant les détails de la commande." - -# @ woocommerce -#~ msgid "Thank you for your order" -#~ msgstr "Merci pour votre commande" - -#~ msgid "Your {blogname} order receipt from {order_date}" -#~ msgstr "Votre reçu de commande {blogname} du {order_date}" - -# @ woocommerce -#~ msgid "Reset password" -#~ msgstr "Réinitialisation mot de passe" - -#~ msgid "" -#~ "Customer reset password emails are sent when a customer resets their " -#~ "password." -#~ msgstr "" -#~ "Les emails de rénitialisation du mot de passe client sont expédiés " -#~ "lorsqu'un client réinitialise son mot de passe." - -#~ msgid "Password Reset for {blogname}" -#~ msgstr "Réinitialisation de mot de passe pour {blogname}" - -#~ msgid "Password Reset Instructions for {blogname}" -#~ msgstr "Instructions de réinitialisation de mot de passe pour {blogname}" - -# @ woocommerce -#~ msgid "New order" -#~ msgstr "Nouvelle commande" - -#~ msgid "" -#~ "New order emails are sent when an order is received/paid by a customer." -#~ msgstr "" -#~ "Les emails de nouvelle commande sont expédiés lorsqu'une nouvelle " -#~ "commande est reçue/payée par un client." - -# @ woocommerce -#~ msgid "New customer order" -#~ msgstr "Nouvelle commande client" - -#~ msgid "[{blogname}] New customer order ({order_number}) - {order_date}" -#~ msgstr "" -#~ "[{blogname}] Nouvelle commande client ({order_number}) - {order_date}" - -#~ msgid "Recipient(s)" -#~ msgstr "Destinataire(s)" - -#~ msgid "" -#~ "Enter recipients (comma separated) for this email. Defaults to %s." -#~ msgstr "" -#~ "Entrez les destinataires (séparés par un virgule) pour cet email. Par " -#~ "défaut à %s." - -# @ woocommerce -#~ msgid "" -#~ "This controls the email subject line. Leave blank to use the default " -#~ "subject: %s." -#~ msgstr "" -#~ "Ceci détermine la ligne sujet de l'email. Laisser vide pour utiliser le " -#~ "sujet par défaut : %s." - -#~ msgid "" -#~ "This controls the main heading contained within the email notification. " -#~ "Leave blank to use the default heading: %s." -#~ msgstr "" -#~ "Ceci détermine l'entête principale contenue dans la notification par " -#~ "email. Laisse vide pour utiliser l'entête par défaut : %s." - -#~ msgid "Could not write to template file." -#~ msgstr "Ne peut être écrit sur le fichier modèle." - -#~ msgid "Template file copied to theme." -#~ msgstr "Fichier modèle copié dans le thème." - -#~ msgid "Template file deleted from theme." -#~ msgstr "Fichier modèle supprimé du thème." - -# @ woocommerce -#~ msgid "HTML template" -#~ msgstr "Modèle HTML" - -# @ woocommerce -#~ msgid "Plain text template" -#~ msgstr "Modèle texte brut" - -# @ woocommerce -#~ msgid "Delete template file" -#~ msgstr "Supprimer le fichier modèle" - -#~ msgid "" -#~ "This template has been overridden by your theme and can be found in: " -#~ "%s." -#~ msgstr "" -#~ "Ce modèle a été écrasé par votre thème et ne peut être trouvé dans : " -#~ "%s." - -#~ msgid "Copy file to theme" -#~ msgstr "Copié le fichier dans le thème" - -#~ msgid "" -#~ "To override and edit this email template copy %s to your " -#~ "theme folder: %s." -#~ msgstr "" -#~ "Pour écraser et modifier ce modèle d'email, copiez %s dans " -#~ "le dossier de votre thème : %s." - -#~ msgid "File was not found." -#~ msgstr "Fichier non trouvé." - -# @ woocommerce -#~ msgid "View template" -#~ msgstr "Voir le modèle" - -# @ woocommerce -#~ msgid "Hide template" -#~ msgstr "Cacher le modèle" - -# @ woocommerce -#~ msgid "Are you sure you want to delete this template file?" -#~ msgstr "Êtes-vous certain de vouloir supprimer ce fichier modèle ?" - -# @ woocommerce -#~ msgid "Note" -#~ msgstr "Note" - -# @ woocommerce -#~ msgid "Product low in stock" -#~ msgstr "Produit avec stock faible" - -# @ woocommerce -#~ msgid "Product #%s - %s" -#~ msgstr "Produit n°%s - %s" - -# @ woocommerce -#~ msgid "is low in stock." -#~ msgstr "est en stock faible." - -# @ woocommerce -#~ msgid "Product out of stock" -#~ msgstr "Produit non disponible" - -# @ woocommerce -#~ msgid "is out of stock." -#~ msgstr "n'est plus en stock" - -# @ woocommerce -#~ msgid "Product Backorder" -#~ msgstr "Product Backorder" - -#~ msgid "%s units of %s have been backordered in order #%s." -#~ msgstr "%s unités sur %s ont été restockés dans la commande n°%s." - -#~ msgid "Bacs" -#~ msgstr "Bacs" - -# @ woocommerce -#~ msgid "Enable Bank Transfer" -#~ msgstr "Activer le Virement Bancaire" - -# @ woocommerce -#~ msgid "Title" -#~ msgstr "Titre" - -# @ woocommerce -#~ msgid "This controls the title which the user sees during checkout." -#~ msgstr "" -#~ "Cela détermine le titre que les utilisateurs verront durant la commande." - -# @ woocommerce -#~ msgid "Direct Bank Transfer" -#~ msgstr "Virement Bancaire" - -# @ woocommerce -#~ msgid "Customer Message" -#~ msgstr "Message Client" - -# @ woocommerce -#~ msgid "" -#~ "Give the customer instructions for paying via BACS, and let them know " -#~ "that their order won't be shipping until the money is received." -#~ msgstr "" -#~ "Donne au client les instructions pour régler via BACS, et l'informer que " -#~ "sa commande ne sera pas envoyée avant que le règlement ne soit reçu." - -# @ woocommerce -#~ msgid "" -#~ "Make your payment directly into our bank account. Please use your Order " -#~ "ID as the payment reference. Your order wont be shipped until the funds " -#~ "have cleared in our account." -#~ msgstr "" -#~ "Effectuez votre paiement directement avec votre compte bancaire. Utilisez " -#~ "votre numéro de commande comme référence de paiement. Votre commande ne " -#~ "sera pas livrée avant le règlement de la commande." - -# @ woocommerce -#~ msgid "Account Details" -#~ msgstr "Détails du compte" - -#~ msgid "Optionally enter your bank details below for customers to pay into." -#~ msgstr "" -#~ "Optionnellement entrez les détails de votre banque ci-dessous pour " -#~ "permettre aux clients de payer." - -# @ woocommerce -#~ msgid "Account Name" -#~ msgstr "Nom du Compte" - -# @ woocommerce -#~ msgid "Account Number" -#~ msgstr "Numéro de Compte" - -# @ woocommerce -#~ msgid "Sort Code" -#~ msgstr "Sort Code" - -# @ woocommerce -#~ msgid "Bank Name" -#~ msgstr "Nom de la Banque" - -# @ woocommerce -#~ msgid "IBAN" -#~ msgstr "IBAN" - -# @ woocommerce -#~ msgid "Your bank may require this for international payments" -#~ msgstr "Votre banque peut le demander pour les règlements internationaux" - -# @ woocommerce -#~ msgid "BIC (formerly Swift)" -#~ msgstr "BIC (anciennement Swift)" - -# @ woocommerce -#~ msgid "BACS Payment" -#~ msgstr "Paiement BACS" - -# @ woocommerce -#~ msgid "" -#~ "Allows payments by BACS (Bank Account Clearing System), more commonly " -#~ "known as direct bank/wire transfer." -#~ msgstr "" -#~ "Autorise les paiement par BACS (Bank Account Clearing System), plus " -#~ "communément connu comme virement bancaire." - -# @ woocommerce -#~ msgid "Our Details" -#~ msgstr "Nos Détails" - -# @ woocommerce -#~ msgid "BIC" -#~ msgstr "BIC" - -# @ woocommerce -#~ msgid "Awaiting BACS payment" -#~ msgstr "En attente de paiement par virement bancaire" - -# @ woocommerce -#~ msgid "Cheque" -#~ msgstr "Chèque" - -# @ woocommerce -#~ msgid "Enable Cheque Payment" -#~ msgstr "Activer le Paiement par Chèque" - -# @ woocommerce -#~ msgid "Cheque Payment" -#~ msgstr "Paiement Chèque" - -# @ woocommerce -#~ msgid "" -#~ "Let the customer know the payee and where they should be sending the " -#~ "cheque to and that their order won't be shipping until you receive it." -#~ msgstr "" -#~ "Indiquez au client l'ordre du chèque, l'adresse où il devra l'envoyer, et " -#~ "que sa commande ne sera pas traitée jusqu'à ce que le chèque soit reçu." - -#~ msgid "" -#~ "Please send your cheque to Store Name, Store Street, Store Town, Store " -#~ "State / County, Store Postcode." -#~ msgstr "" -#~ "Veuillez envoyer votre chèque à Nom Boutique, Rue Boutique, Code Postal " -#~ "Boutique, Ville Boutique, Pays Boutique. Votre commande sera traitée à " -#~ "réception de votre règlement." - -# @ woocommerce -#~ msgid "" -#~ "Allows cheque payments. Why would you take cheques in this day and age? " -#~ "Well you probably wouldn't but it does allow you to make test purchases " -#~ "for testing order emails and the 'success' pages etc." -#~ msgstr "" -#~ "Autorise les paiements par chèque. Pourquoi voudriez-vous prendre des " -#~ "chèques ? Et bien, vous ne l'utiliserez peut-être pas, mais cela vous " -#~ "permet de faire des tests d'achats pour tester les emails de commande et " -#~ "les pages « remerciement », etc.." - -# @ woocommerce -#~ msgid "Awaiting cheque payment" -#~ msgstr "En attente règlement par chèque" - -#~ msgid "Cash on Delivery" -#~ msgstr "Paiement à la livraison" - -#~ msgid "Have your customers pay with cash (or by other means) upon delivery." -#~ msgstr "" -#~ "Demandez à vos clients de payer en espèces (ou par tout autre moyen) à la " -#~ "livraison." - -# COD : Cash On Delivery -#~ msgid "Enable COD" -#~ msgstr "Activer" - -#~ msgid "Enable Cash on Delivery" -#~ msgstr "Activer le Paiement à la Livraison" - -#~ msgid "Payment method title that the customer will see on your website." -#~ msgstr "" -#~ "Titre de la méthode de paiement que le client verra sur votre site web." - -#~ msgid "" -#~ "Payment method description that the customer will see on your website." -#~ msgstr "" -#~ "Description de la méthode de paiement que le client verra sur votre site " -#~ "web." - -# @ woocommerce -#~ msgid "Instructions" -#~ msgstr "Instructions" - -#~ msgid "Instructions that will be added to the thank you page." -#~ msgstr "Instructions qui seront ajoutées à la page de remerciements." - -# @ woocommerce -#~ msgid "Enable for shipping methods" -#~ msgstr "Activer les méthodes d'expédition" - -#~ msgid "" -#~ "If COD is only available for certain methods, set it up here. Leave blank " -#~ "to enable for all methods." -#~ msgstr "" -#~ "Si le paiement à la livraison est uniquement disponible pour certaines " -#~ "méthodes, le paramétrer ici. Laisser vide pour l'activer pour toutes les " -#~ "méthodes. " - -#~ msgid "Payment to be made upon delivery." -#~ msgstr "Paiement à effectuer à la livraison." - -# @ woocommerce -#~ msgid "Mijireh Checkout" -#~ msgstr "Commande Mijireh" - -#~ msgid "Mijireh error:" -#~ msgstr "Erreur Mijireh :" - -#~ msgid "Enable Mijireh Checkout" -#~ msgstr "Activer les commandes Mijireh" - -#~ msgid "Access Key" -#~ msgstr "Clé d'accès" - -#~ msgid "The Mijireh access key for your store." -#~ msgstr "La clé d'accès Mijireh pour votre boutique." - -#~ msgid "Pay securely with you credit card." -#~ msgstr "Payez en sécurité avec votre carte de crédit." - -# @ woocommerce -#~ msgid "This controls the description which the user sees during checkout." -#~ msgstr "" -#~ "Ceci détermine la description que les utilisateurs verront durant le " -#~ "réglement." - -#~ msgid "Get started with Mijireh Checkout" -#~ msgstr "Débutez avec le Paiement Mijireh" - -#~ msgid "" -#~ "provides a fully PCI Compliant, secure way to collect and transmit credit " -#~ "card data to your payment gateway while keeping you in control of the " -#~ "design of your site. Mijireh supports a wide variety of payment gateways: " -#~ "Stripe, Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and " -#~ "more." -#~ msgstr "" -#~ "fourni une solution pleinement compatible PCI (Payment Card Industry), " -#~ "sécurisée, permettant de collecter et transmettre les données de carte de " -#~ "crédit à votre passerelle de paiement tout en conservant le controle du " -#~ "design de votre site. Mijireh supporte une large variété de passerelles " -#~ "de paiement : Stripe, Authorize.net, PayPal, eWay, SagePay, Braintree, " -#~ "PayLeap, et plus." - -#~ msgid "Join for free" -#~ msgstr "Rejoindre gratuitement" - -#~ msgid "Learn more about WooCommerce and Mijireh" -#~ msgstr "En savoir plus sur WooCommerce et Mijireh" - -#~ msgid "" -#~ "provides a fully PCI Compliant, secure way to collect and transmit credit " -#~ "card data to your payment gateway while keeping you in control of the " -#~ "design of your site." -#~ msgstr "" -#~ "fourni une solution pleinement compatible PCI (Payment Card Industry), " -#~ "sécurisée, permettant de collecter et transmettre les données de carte de " -#~ "crédit à votre passerelle de paiement tout en conservant le controle du " -#~ "design de votre site." - -# @ woocommerce -#~ msgid "PayPal" -#~ msgstr "PayPal" - -# @ woocommerce -#~ msgid "PayPal standard" -#~ msgstr "PayPal standard" - -# @ woocommerce -#~ msgid "" -#~ "PayPal standard works by sending the user to PayPal to enter their " -#~ "payment information." -#~ msgstr "" -#~ "PayPal standard fonctionne en envoyant l'utilisateur vers PayPal pour " -#~ "entrer ses informations de règlement." - -# @ woocommerce -#~ msgid "Gateway Disabled" -#~ msgstr "Passerelle désactivée" - -#~ msgid "PayPal does not support your store currency." -#~ msgstr "PayPal ne gère pas la monnaie de votre boutique." - -# @ woocommerce -#~ msgid "Enable PayPal standard" -#~ msgstr "Activer PayPal standard" - -# @ woocommerce -#~ msgid "" -#~ "Pay via PayPal; you can pay with your credit card if you don't have a " -#~ "PayPal account" -#~ msgstr "" -#~ "Régler via PayPal, vous pouvez régler avec votre carte bancaire même si " -#~ "vous ne possédez pas de compte PayPal." - -# @ woocommerce -#~ msgid "PayPal Email" -#~ msgstr "Email PayPal" - -# @ woocommerce -#~ msgid "" -#~ "Please enter your PayPal email address; this is needed in order to take " -#~ "payment." -#~ msgstr "" -#~ "Veuillez entrez votre adresse email PayPal, ceci est nécessaire dans la " -#~ "commande pour prendre le paiement." - -#~ msgid "Invoice Prefix" -#~ msgstr "Préfix de la facture" - -#~ msgid "" -#~ "Please enter a prefix for your invoice numbers. If you use your PayPal " -#~ "account for multiple stores ensure this prefix is unqiue as PayPal will " -#~ "not allow orders with the same invoice number." -#~ msgstr "" -#~ "Veuillez entrer un préfix pour vos numéros de facture. Si vous utilisez " -#~ "votre compte PayPal pour de multiples boutiques, ce préfix doit être " -#~ "unique car PayPal ne permet pas les commandes avec le même numéro de " -#~ "commande." - -# @ woocommerce -#~ msgid "Submission method" -#~ msgstr "Méthode de soumission" - -#~ msgid "Use form submission method." -#~ msgstr "Utilisez la méthode du formulaire de soumission." - -#~ msgid "" -#~ "Enable this to post order data to PayPal via a form instead of using a " -#~ "redirect/querystring." -#~ msgstr "" -#~ "Activer ceci pour publier les données de commande à PayPal par formulaire " -#~ "au lieu d'utiliser une redirection/querystring." - -# @ woocommerce -#~ msgid "Page Style" -#~ msgstr "Page styles" - -#~ msgid "" -#~ "Optionally enter the name of the page style you wish to use. These are " -#~ "defined within your PayPal account." -#~ msgstr "" -#~ "Optionnellement entrez le nom de la page de styles que vous souhaitez " -#~ "utiliser. Ils sont définis dans votre compte PayPal." - -# @ woocommerce -#~ msgid "Shipping options" -#~ msgstr "Options des livraison" - -# @ woocommerce -#~ msgid "Shipping details" -#~ msgstr "Détails Expédition" - -# @ woocommerce -#~ msgid "Send shipping details to PayPal instead of billing." -#~ msgstr "" -#~ "Envoyer les détails de livraison à PayPal au lieu de ceux de facturation." - -#~ msgid "" -#~ "PayPal allows us to send 1 address. If you are using PayPal for shipping " -#~ "labels you may prefer to send the shipping address rather than billing." -#~ msgstr "" -#~ "PayPal permet d'envoyer 1 adresse. Si vous utilisez PayPal pour les " -#~ "étiquettes de livraison, vous pouvez préférer envoyer l'adresse de " -#~ "livraison plutôt que celle de facturation." - -# @ woocommerce -#~ msgid "Address override" -#~ msgstr "Outrepasser l'adresse" - -#~ msgid "" -#~ "Enable \"address_override\" to prevent address information from being " -#~ "changed." -#~ msgstr "" -#~ "Activez \"address_override\" pour éviter que l'adresse soit changée." - -#~ msgid "" -#~ "PayPal verifies addresses therefore this setting can cause errors (we " -#~ "recommend keeping it disabled)." -#~ msgstr "" -#~ "PayPal vérifie les adresses donc ce paramètre peut causer des erreurs " -#~ "(nous recommandons de le laisser désactivé). " - -#~ msgid "Gateway Testing" -#~ msgstr "Test Passerelle" - -# @ woocommerce -#~ msgid "PayPal sandbox" -#~ msgstr "PayPal sandbox" - -# @ woocommerce -#~ msgid "Enable PayPal sandbox" -#~ msgstr "Activer PayPal sandbox" - -#~ msgid "" -#~ "PayPal sandbox can be used to test payments. Sign up for a developer " -#~ "account here." -#~ msgstr "" -#~ "La sandbox PayPal peut être utilisée pour les tests de paiement. " -#~ "Inscrivez-vous ici pour un compte développeur." - -#~ msgid "Debug Log" -#~ msgstr "Log de Débugue" - -# @ woocommerce -#~ msgid "Enable logging" -#~ msgstr "Activer l'enregistrement de logs" - -#~ msgid "" -#~ "Log PayPal events, such as IPN requests, inside woocommerce/logs/" -#~ "paypal.txt" -#~ msgstr "" -#~ "Activer les logs Paypal, telles que les requêtes IPN, dans " -#~ "woocommerce/logs/paypal.txt" - -# @ woocommerce -#~ msgid "Shipping via" -#~ msgstr "Livraison par" - -# @ woocommerce -#~ msgid "" -#~ "Thank you for your order. We are now redirecting you to PayPal to make " -#~ "payment." -#~ msgstr "" -#~ "Merci de votre commande. Nous allons maintenant vous rediriger vers " -#~ "PayPal pour effectuer votre paiement." - -# @ woocommerce -#~ msgid "Pay via PayPal" -#~ msgstr "Régler via PayPal" - -# @ woocommerce -#~ msgid "Cancel order & restore cart" -#~ msgstr "Annuler la commande et restaurer le panier" - -# @ woocommerce -#~ msgid "" -#~ "Thank you for your order, please click the button below to pay with " -#~ "PayPal." -#~ msgstr "" -#~ "Merci de votre commande, cliquez sur le bouton ci-dessous pour régler via " -#~ "PayPal, svp." - -#~ msgid "Validation error: PayPal amounts do not match (gross %s)." -#~ msgstr "" -#~ "Erreur de validation : les quantités Paypal ne correspondent pas (%s)." - -# @ woocommerce -#~ msgid "IPN payment completed" -#~ msgstr "Paiement IPN complété" - -# @ woocommerce -#~ msgid "Payment %s via IPN." -#~ msgstr "Paiement %s via IPN" - -#~ msgid "Order refunded/reversed" -#~ msgstr "Commande recréditée/remboursée" - -#~ msgid "Order %s has been marked as refunded - PayPal reason code: %s" -#~ msgstr "" -#~ "La commande n°%s a été indiquée comme recrédité - Code explicatif " -#~ "PayPal : %s" - -#~ msgid "Payment for order %s refunded/reversed" -#~ msgstr "Paiement pour la commande n°%s recréditée/remboursée" - -# @ woocommerce -#~ msgid "Google Analytics" -#~ msgstr "Google Analytics" - -#~ msgid "" -#~ "Google Analytics is a free service offered by Google that generates " -#~ "detailed statistics about the visitors to a website." -#~ msgstr "" -#~ "Google Analytics est un service gratuit offert par Google qui génère des " -#~ "statistiques détaillées sur les visiteurs d'un site." - -# @ woocommerce -#~ msgid "Google Analytics ID" -#~ msgstr "Google Analytics ID" - -# @ woocommerce -#~ msgid "" -#~ "Log into your google analytics account to find your ID. e.g. UA-" -#~ "XXXXX-X" -#~ msgstr "" -#~ "Connectez vous à votre compte Google analytics pour trouver votre ID. " -#~ "Ex : UA-XXXXX-X" - -# @ woocommerce -#~ msgid "Tracking code" -#~ msgstr "Code de suivi" - -# @ woocommerce -#~ msgid "" -#~ "Add tracking code to your site's footer. You don't need to enable this if " -#~ "using a 3rd party analytics plugin." -#~ msgstr "" -#~ "Ajouter le code de suivi dans le pied de page du site. Vous n'avez pas " -#~ "besoin de l'activer si vous vous servez d'un outil tierce de statistiques." - -# @ woocommerce -#~ msgid "Add eCommerce tracking code to the thankyou page" -#~ msgstr "Ajouter le code de suivi eCommerce à votre page de remerciements." - -#~ msgid "Add event tracking code for add to cart actions" -#~ msgstr "" -#~ "Ajoutez le code de suivi des événements pour ajouter les actions du panier" - -# @ woocommerce -#~ msgid "SKU:" -#~ msgstr "UGS :" - -# @ woocommerce -#~ msgid "Add to Cart" -#~ msgstr "Ajouter au panier" - -#~ msgid "ShareDaddy" -#~ msgstr "ShareDaddy" - -#~ msgid "ShareDaddy is a sharing plugin bundled with JetPack." -#~ msgstr "ShareDaddy est une extension de partage livré avec JetPack." - -#~ msgid "Output ShareDaddy button?" -#~ msgstr "Bouton ShareDaddy ?" - -# @ woocommerce -#~ msgid "" -#~ "Enable this option to show the ShareDaddy button on the product page." -#~ msgstr "" -#~ "Activer cette option pour afficher le bouton ShareDaddy sur la page " -#~ "produit." - -#~ msgid "ShareThis" -#~ msgstr "ShareThis" - -#~ msgid "" -#~ "ShareThis offers a sharing widget which will allow customers to share " -#~ "links to products with their friends." -#~ msgstr "" -#~ "ShareThis propose un widget de partage qui permet aux clients de partager " -#~ "les liens des produits avec leurs amis." - -# @ woocommerce -#~ msgid "ShareThis Publisher ID" -#~ msgstr "ID Editeur ShareThis" - -# @ woocommerce -#~ msgid "" -#~ "Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons " -#~ "on product pages." -#~ msgstr "" -#~ "Entrez votre %1$sID Editeur ShareThis%2$s pour afficher les boutons de " -#~ "partage social sur les pages produit." - -#~ msgid "ShareThis Code" -#~ msgstr "Code ShareThis" - -#~ msgid "You can tweak the ShareThis code by editing this option." -#~ msgstr "Vous pouvez modifier le code ShareThis en éditant cette option." - -#~ msgid "ShareYourCart" -#~ msgstr "ShareYourCart" - -#~ msgid "" -#~ "Increase your social media exposure by 10 percent! ShareYourCart helps " -#~ "you get more customers by motivating satisfied customers to talk with " -#~ "their friends about your products. For help with ShareYourCart view the " -#~ "documentation." -#~ msgstr "" -#~ "Augmentez votre présence en réseau social de 10 pourcents ! ShareYourCart " -#~ "vous aide à obtenir plus de clients en motivant les clients satisfaits à " -#~ "parler à leurs amis de vos produits. Pour une aide sur ShareYourCart, " -#~ "voir la documentation." - -#~ msgid "Please complete all fields." -#~ msgstr "" -#~ "Veuillez compléter tous les champs.Veuillez compléter tous les champs." - -# @ woocommerce -#~ msgid "Create a ShareYourCart account" -#~ msgstr "Créer un compte ShareYourCart" - -# @ woocommerce -#~ msgid "Domain" -#~ msgstr "Domaine" - -#~ msgid "I agree to the ShareYourCart terms and conditions" -#~ msgstr "" -#~ "Je suis d'accord avec les termes et conditions de " -#~ "ShareYourCart" - -# @ woocommerce -#~ msgid "Create Account" -#~ msgstr "Créer un Compte" - -#~ msgid "Recover your ShareYourCart account" -#~ msgstr "Retrouvez votre compte ShareYourCart" - -# @ woocommerce -#~ msgid "Email me my details" -#~ msgstr "M'envoyer par email mes infos" - -#~ msgid "Setup your ShareYourCart account" -#~ msgstr "Paramétrez votre compte ShareYourCart" - -# @ woocommerce -#~ msgid "Create an account" -#~ msgstr "Créer un compte" - -# @ woocommerce -#~ msgid "Can't access your account?" -#~ msgstr "Impossible d'accéder à votre compte ?" - -#~ msgid "Configure ShareYourCart" -#~ msgstr "Configurez ShareYourCart" - -#~ msgid "" -#~ "You can choose how much of a discount to give (in fixed amount, " -#~ "percentage, or free shipping) and to which social media channels it " -#~ "should it be applied. You can also define what the advertisement should " -#~ "say, so that it fully benefits your sales." -#~ msgstr "" -#~ "Vous pouvez choisir combien de remise donner (en montant fixe, " -#~ "pourcentage ou livraison gratuite) et sur quel réseau social cela doit " -#~ "être appliqué. Vous pouvez définir ce que la publicité doit dire, aussi " -#~ "c'est tous bénéfices pour vos ventes." - -# @ woocommerce -#~ msgid "Configure" -#~ msgstr "Configurer" - -#~ msgid "Enable ShareYourCart integration" -#~ msgstr "Activer l'intégration ShareYourCart" - -#~ msgid "Client ID" -#~ msgstr "ID Client" - -#~ msgid "Get your client ID by creating a ShareYourCart account." -#~ msgstr "Obtenez votre ID client en créant votre compte ShareYourCart." - -#~ msgid "App Key" -#~ msgstr "Clé App" - -#~ msgid "Get your app key by creating a ShareYourCart account." -#~ msgstr "Obtenez votre clé en créant un compte ShareYourCart." - -# @ woocommerce -#~ msgid "Email address" -#~ msgstr "Adresse email" - -#~ msgid "The email address you used to sign up for ShareYourCart." -#~ msgstr "L'email que vous avez utilisé pour vous inscrire sur ShareYourCart." - -#~ msgid "Show button by default on:" -#~ msgstr "Afficher le bouton par défaut sur : " - -# @ woocommerce -#~ msgid "Product page" -#~ msgstr "Page produit" - -# @ woocommerce -#~ msgid "Cart page" -#~ msgstr "Page panier" - -#~ msgid "Button style" -#~ msgstr "Style bouton" - -#~ msgid "Select a style for your share buttons" -#~ msgstr "Sélectionnez un style pour vos boutons de partage" - -# @ woocommerce -#~ msgid "Standard Button" -#~ msgstr "Bouton standard" - -# @ woocommerce -#~ msgid "Custom HTML" -#~ msgstr "HTML personnalisé" - -#~ msgid "Button skin" -#~ msgstr "Thème bouton" - -#~ msgid "Select a skin for your share buttons" -#~ msgstr "Sélectionnez un thème pour vos boutons de partage" - -# @ woocommerce -#~ msgid "Orange" -#~ msgstr "Orange" - -# @ woocommerce -#~ msgid "Blue" -#~ msgstr "Bleu" - -# @ woocommerce -#~ msgid "Light" -#~ msgstr "Clair" - -# @ woocommerce -#~ msgid "Dark" -#~ msgstr "Foncé" - -# @ woocommerce -#~ msgid "Button position" -#~ msgstr "Position bouton" - -#~ msgid "Where should the button be positioned?" -#~ msgstr "Où le bouton doit-il être positionné ?" - -# @ woocommerce -#~ msgid "Normal" -#~ msgstr "Normal" - -# @ woocommerce -#~ msgid "Floating" -#~ msgstr "Flottant" - -#~ msgid "HTML for the button" -#~ msgstr "HTML pour le bouton" - -#~ msgid "Enter the HTML code for your custom button." -#~ msgstr "Entrez le code HTML pour votre bouton personnalisé." - -# @ woocommerce -#~ msgid "Flat rate" -#~ msgstr "Taux Fixe" - -# @ woocommerce -#~ msgid "Flat Rates" -#~ msgstr "Taux Fixes" - -# @ woocommerce -#~ msgid "Flat rates let you define a standard rate per item, or per order." -#~ msgstr "" -#~ "Les taux fixes vous laissent définir un taux standard par article, ou par " -#~ "commande." - -# @ woocommerce -#~ msgid "Enable this shipping method" -#~ msgstr "Activer la méthode de livraison" - -# @ woocommerce -#~ msgid "Method Title" -#~ msgstr "Titre de la méthode" - -# @ woocommerce -#~ msgid "Flat Rate" -#~ msgstr "Taux Fixe" - -# @ woocommerce -#~ msgid "Cost per order" -#~ msgstr "Coût par commande" - -# @ woocommerce -#~ msgid "Enter a cost per order, e.g. 5.00. Leave blank to disable." -#~ msgstr "" -#~ "Entrez un coût par commande, ex. 5.00. Laissez vide pour désactiver." - -# @ woocommerce -#~ msgid "Method availability" -#~ msgstr "Méthode de disponibilité" - -# @ woocommerce -#~ msgid "All allowed countries" -#~ msgstr "Tous les pays autorisés" - -# @ woocommerce -#~ msgid "Calculation Type" -#~ msgstr "Type de calcul" - -#~ msgid "Per Order - charge shipping for the entire order as a whole" -#~ msgstr "" -#~ "Par Commande - frais d'envoi pour toute la commande dans son ensemble" - -#~ msgid "Per Item - charge shipping for each item individually" -#~ msgstr "Par Article - frais d'envoi pour chaque article individuellement" - -#~ msgid "Per Class - charge shipping for each shipping class in an order" -#~ msgstr "" -#~ "Par Classe - frais d'envoi pour chaque classe de livraison dans une " -#~ "commande" - -# @ woocommerce -#~ msgid "Default Cost" -#~ msgstr "Coût par défaut" - -# @ woocommerce -#~ msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -#~ msgstr "Coût sans les taxes. Entrez un montant. Ex : 2.50." - -# @ woocommerce -#~ msgid "Default Handling Fee" -#~ msgstr "Frais de gestion par défaut" - -# @ woocommerce -#~ msgid "" -#~ "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. " -#~ "Leave blank to disable." -#~ msgstr "" -#~ "Les frais sans les taxes. Entrez un montant (Ex : 2.50) ou un pourcentage " -#~ "(Ex : 5%). Laissez vide pour désactiver." - -# @ woocommerce -#~ msgid "Minimum Fee" -#~ msgstr "Frais minimum" - -#~ msgid "" -#~ "Enter a minimum fee amount. Fee's less than this will be increased. Leave " -#~ "blank to disable." -#~ msgstr "" -#~ "Entrez le montant minimum des frais. Les frais inférieurs seront " -#~ "augmentés. Laisser vide pour déactiver." - -#~ msgid "" -#~ "Optional extra shipping options with additional costs (one per line). " -#~ "Example: Option Name|Cost|Per-order (yes or no). Example: " -#~ "Priority Mail|6.95|yes. If per-order is set to no, it will " -#~ "use the \"Calculation Type\" setting." -#~ msgstr "" -#~ "Options de livraison optionnelles avec des coûts additionnels (un par " -#~ "ligne). Exemple : Nom de l'option|Coût|Par commande (yes ou no). Exemple : Expédition prioritaire|6.95|yes. Si par " -#~ "commande est sur no, il sera utilisé le paramètre de \"Type de calcul\"." - -# @ woocommerce -#~ msgid "Cost, excluding tax." -#~ msgstr "Coût, H.T.." - -# @ woocommerce -#~ msgid "Handling Fee" -#~ msgstr "Frais de gestion" - -# @ woocommerce -#~ msgid "" -#~ "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -#~ msgstr "" -#~ "Frais H.T.. Entrez un montant, ex.: 2.50, ou un pourcentage, ex.: 5%." - -# @ woocommerce -#~ msgid "+ Add Flat Rate" -#~ msgstr "+ Ajout Taux Fixe" - -#~ msgid "" -#~ "Add rates for shipping classes here — they will override the " -#~ "default costs defined above." -#~ msgstr "" -#~ "Ajoutez des taux pour les classes d'expédition ici — ils vont " -#~ "écraser les coûts par défaut défini ci-dessus." - -# @ woocommerce -#~ msgid "Select a class…" -#~ msgstr "Sélectionnez une classe…" - -# @ woocommerce -#~ msgid "0.00" -#~ msgstr "0.00" - -# @ woocommerce -#~ msgid "Free Shipping" -#~ msgstr "Livraison Gratuite" - -# @ woocommerce -#~ msgid "Enable Free Shipping" -#~ msgstr "Activer la livraison gratuite" - -# @ woocommerce -#~ msgid "Minimum Order Amount" -#~ msgstr "Montant minimum de commande" - -# @ woocommerce -#~ msgid "" -#~ "Users will need to spend this amount to get free shipping. Leave blank to " -#~ "disable." -#~ msgstr "" -#~ "Les utilisateurs auront besoin de dépenser cette somme pour obtenir la " -#~ "livraison gratuite. Laisser vide pour désactiver." - -#~ msgid "Free shipping requires a free shipping coupon" -#~ msgstr "La livraison gratuite nécessite un code promo de livraison gratuite" - -# @ woocommerce -#~ msgid "" -#~ "Users will need to enter a valid free shipping coupon code to use this " -#~ "method. If a coupon is used, the minimum order amount will be ignored." -#~ msgstr "" -#~ "Les utilisateurs devront saisir un code promo valide de frais de port " -#~ "gratuits pour utiliser cette méthode. Si un code promo est utilisé, le " -#~ "montant minimum de commande sera ignoré." - -#~ msgid "Free Shipping - does what it says on the tin." -#~ msgstr " " - -#~ msgid "International Delivery" -#~ msgstr "Livraison internationale" - -#~ msgid "International delivery based on flat rate shipping." -#~ msgstr "Livraison internationale basée sur l'expédition forfaitaire." - -# @ woocommerce -#~ msgid "Availability" -#~ msgstr "Disponibilité" - -# @ woocommerce -#~ msgid "Selected countries" -#~ msgstr "Pays sélectionnés" - -# @ woocommerce -#~ msgid "Excluding selected countries" -#~ msgstr "Exclure les pays sélectionnés" - -# @ woocommerce -#~ msgid "Countries" -#~ msgstr "Pays" - -#~ msgid "Local Delivery" -#~ msgstr "Livraison locale" - -# @ woocommerce -#~ msgid "Enable" -#~ msgstr "Activer" - -#~ msgid "Enable local delivery" -#~ msgstr "Activer la livraison locale" - -# @ woocommerce -#~ msgid "Fee Type" -#~ msgstr "Type de Frais" - -#~ msgid "How to calculate delivery charges" -#~ msgstr "Comment calculer les frais de livraison" - -#~ msgid "Fixed amount" -#~ msgstr "Montant fixe" - -# @ woocommerce -#~ msgid "Percentage of cart total" -#~ msgstr "Pourcentage du total panier" - -# @ woocommerce -#~ msgid "Fixed amount per product" -#~ msgstr "Montant fixe par produit" - -#~ msgid "Delivery Fee" -#~ msgstr "Frais de livraison" - -#~ msgid "" -#~ "What fee do you want to charge for local delivery, disregarded if you " -#~ "choose free. Leave blank to disable." -#~ msgstr "" -#~ "Quels frais voulez-vous facturer pour la livraison locale, ignorez si " -#~ "vous choisissez gratuit. Laissez vide pour désactiver." - -# @ woocommerce -#~ msgid "Zip/Post Codes" -#~ msgstr "Codes Postaux" - -#~ msgid "" -#~ "What zip/post codes would you like to offer delivery to? Separate codes " -#~ "with a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -#~ msgstr "" -#~ "A quels codes postaux souhaitez-vous offrir la livraison ? Séparez les " -#~ "codes par une virgule. Accepte les jokers, ex. 77* sera vérifié par un " -#~ "code postal tel que 77100." - -#~ msgid "" -#~ "Local delivery is a simple shipping method for delivering orders locally." -#~ msgstr "" -#~ "La livraison locale est une méthode simple de livraison pour expédier des " -#~ "commandes localement." - -#~ msgid "Local Pickup" -#~ msgstr "Point de vente" - -#~ msgid "Enable local pickup" -#~ msgstr "Activer le Point de vente" - -# @ woocommerce -#~ msgid "Apply base tax rate" -#~ msgstr "Appliquer le taux de taxe de base" - -#~ msgid "" -#~ "When this shipping method is chosen, apply the base tax rate rather than " -#~ "for the customer's given address." -#~ msgstr "" -#~ "Lorsque cette méthode d'expédition est choisie, appliquer le taux de taxe " -#~ "de base plutôt que celui de l'adresse du client." - -#~ msgid "" -#~ "Local pickup is a simple method which allows the customer to pick up " -#~ "their order themselves." -#~ msgstr "" -#~ "Point de vente est une méthode simple qui permet au client de récupérer " -#~ "leur commande eux-mêmes." - -# @ woocommerce -#~ msgid "pending" -#~ msgstr "attente" - -# @ woocommerce -#~ msgid "failed" -#~ msgstr "échouée" - -# @ woocommerce -#~ msgid "on-hold" -#~ msgstr "en-attente" - -# @ woocommerce -#~ msgid "processing" -#~ msgstr "en cours" - -# @ woocommerce -#~ msgid "completed" -#~ msgstr "terminée" - -# @ woocommerce -#~ msgid "refunded" -#~ msgstr "remboursée" - -# @ woocommerce -#~ msgid "cancelled" -#~ msgstr "annulée" - -# @ woocommerce -#~ msgid "Please enter a valid postcode/ZIP." -#~ msgstr "Entrez un code postal/ZIP valide, svp." - -# @ woocommerce -#~ msgid "Shipping costs updated." -#~ msgstr "Coûts d'expédition mis à jour." - -# @ woocommerce -#~ msgid "" -#~ "The order totals have been updated. Please confirm your order by pressing " -#~ "the Place Order button at the bottom of the page." -#~ msgstr "" -#~ "Le total de la commande à été mis à jour. Confirmez votre commande svp en " -#~ "cliquant sur le bouton en bas de la page." - -# @ woocommerce -#~ msgid "Please enter your password." -#~ msgstr "Entrez votre mot de passe, svp." - -# @ woocommerce -#~ msgid "Your password has been reset." -#~ msgstr "Votre mot de passe a été réinitialisé." - -#~ msgid "Log in" -#~ msgstr "Identification" - -# @ woocommerce -#~ msgid "Enter a username or e-mail address." -#~ msgstr "Saisissez un identifiant ou une adresse email." - -# @ woocommerce -#~ msgid "There is no user registered with that email address." -#~ msgstr "Il n'y a pas d'utilisateur enregistré avec cette adresse email." - -# @ woocommerce -#~ msgid "Invalid username or e-mail." -#~ msgstr "Identifiant ou email invalide." - -#~ msgid "Password reset is not allowed for this user" -#~ msgstr "" -#~ "La réinitialisation du mot de passe n'est pas authorisé pour cet " -#~ "utilisateur" - -# @ woocommerce -#~ msgid "Check your e-mail for the confirmation link." -#~ msgstr "Vérifiez votre email pour le lien de confirmation." - -# @ woocommerce -#~ msgid "Invalid key" -#~ msgstr "Touche invalide" - -# @ woocommerce -#~ msgid "My Account →" -#~ msgstr "Mon compte →" - -# @ woocommerce -#~ msgid "" -#~ "Order %s made on %s" -#~ msgstr "" -#~ "Commande %s effectuée le %s" - -# @ woocommerce -#~ msgid "Order status: %s" -#~ msgstr "État de la commande : %s " - -# @ woocommerce -#~ msgid "Order Updates" -#~ msgstr "Mises à jour de la commande" - -#~ msgid "l jS \\of F Y, h:ia" -#~ msgstr "l j F Y h:i:s" - -# @ woocommerce -#~ msgid "Please enter a valid order ID" -#~ msgstr "Veuillez entrer un ID commande valide" - -# @ woocommerce -#~ msgid "Please enter a valid order email" -#~ msgstr "Veuillez entrer un email de commande valide" - -#~ msgid "Sorry, we could not find that order id in our database." -#~ msgstr "" -#~ "Désolé, nous ne pouvons pas trouver cette commande dans notre base de " -#~ "données." - -# @ woocommerce -#~ msgid "" -#~ "Your order has already been paid for. Please contact us if you need " -#~ "assistance." -#~ msgstr "" -#~ "Votre commande a déjà été réglée. Contactez nous, svp si vous avez besoin " -#~ "d'assistance." - -# @ woocommerce -#~ msgid "Date:" -#~ msgstr "Date :" - -# @ woocommerce -#~ msgid "Payment method:" -#~ msgstr "Méthode de Paiement :" - -# @ woocommerce -#~ msgid "%s review for %s" -#~ msgid_plural "%s reviews for %s" -#~ msgstr[0] "%s avis pour %s" -#~ msgstr[1] "%s avis pour %s" - -# @ woocommerce -#~ msgid " Previous" -#~ msgstr " Précédent" - -# @ woocommerce -#~ msgid "Next " -#~ msgstr "Suivant " - -# @ woocommerce -#~ msgid "Add Review" -#~ msgstr "Ajouter un avis" - -# @ woocommerce -#~ msgid "Add a review" -#~ msgstr "Ajouter un Avis" - -# @ woocommerce -#~ msgid "Be the first to review" -#~ msgstr "Soyez le premier à donner votre avis" - -# @ woocommerce -#~ msgid "" -#~ "There are no reviews yet, would you like to submit yours?" -#~ msgstr "" -#~ "Il n'y a pas encore d'avis, voulez-vous donner le votre ?" - -# @ woocommerce -#~ msgid "Submit Review" -#~ msgstr "Envoyer l'avis" - -# @ woocommerce -#~ msgid "Rating" -#~ msgstr "Noter" - -# @ woocommerce -#~ msgid "Rate…" -#~ msgstr "Taux…" - -# @ woocommerce -#~ msgid "Perfect" -#~ msgstr "Parfait" - -# @ woocommerce -#~ msgid "Good" -#~ msgstr "Bon" - -# @ woocommerce -#~ msgid "Average" -#~ msgstr "Moyen" - -# @ woocommerce -#~ msgid "Not that bad" -#~ msgstr "Pas Mal" - -# @ woocommerce -#~ msgid "Very Poor" -#~ msgstr "Très Mauvais" - -# @ woocommerce -#~ msgid "Your Review" -#~ msgstr "Votre Avis" - -# @ woocommerce -#~ msgid "Remove this item" -#~ msgstr "Enlever cet élément" - -# @ woocommerce -#~ msgid "Apply Coupon" -#~ msgstr "Valider Code Promo" - -# @ woocommerce -#~ msgid "Update Cart" -#~ msgstr "Mettre à jour le panier" - -# @ woocommerce -#~ msgid "Proceed to Checkout →" -#~ msgstr "Procéder à la commande →" - -# @ woocommerce -#~ msgid "You may be interested in…" -#~ msgstr "Vous serez peut-être intéressé par…" - -# @ woocommerce -#~ msgid "Your cart is currently empty." -#~ msgstr "Votre panier est actuellement vide." - -# @ woocommerce -#~ msgid "← Return To Shop" -#~ msgstr "← Retour à la Boutique" - -# @ woocommerce -#~ msgid "No products in the cart." -#~ msgstr "Votre panier est vide." - -# @ woocommerce -#~ msgid "Checkout →" -#~ msgstr "Commander →" - -# @ woocommerce -#~ msgid "Calculate Shipping" -#~ msgstr "Calculer frais d'expédition" - -# @ woocommerce -#~ msgid "Update Totals" -#~ msgstr "Mise à jour totaux" - -# @ woocommerce -#~ msgid "Cart Totals" -#~ msgstr "Total panier" - -# @ woocommerce -#~ msgid "Cart Subtotal" -#~ msgstr "Sous-total du panier" - -# @ woocommerce -#~ msgid "[Remove]" -#~ msgstr "[Enlever]" - -# @ woocommerce -#~ msgid "Please fill in your details to see available shipping methods." -#~ msgstr "" -#~ "Veuillez remplir vos coordonnées pour voir les méthodes de livraison " -#~ "disponibles." - -# @ woocommerce -#~ msgid "" -#~ "Sorry, it seems that there are no available shipping methods for your " -#~ "state. Please contact us if you require assistance or wish to make " -#~ "alternate arrangements." -#~ msgstr "" -#~ "Désolé, il semble qu'il n'y ai pas de méthodes de livraison disponibles " -#~ "pour votre état. Veuillez nous contacter si vous avez besoin d'assistance " -#~ "ou si vous voulez effectuer un autre arrangement." - -#~ msgid "incl. " -#~ msgstr "incl. " - -# @ woocommerce -#~ msgid "Order Discount" -#~ msgstr "Commande remisée" - -# @ woocommerce -#~ msgid "(taxes estimated for %s)" -#~ msgstr "(taxes estimées à %s)" - -# @ woocommerce -#~ msgid "" -#~ "Note: Shipping and taxes are estimated%s and will be updated during " -#~ "checkout based on your billing and shipping information." -#~ msgstr "" -#~ "Note : La livraison et les taxes sont estimés%s et seront mis à jour au " -#~ "cours de la commande selon vos informations de livraison et de " -#~ "facturation." - -# @ woocommerce -#~ msgid "" -#~ "No shipping methods were found; please recalculate your shipping and " -#~ "enter your state/county and zip/postcode to ensure their are no other " -#~ "available methods for your location." -#~ msgstr "" -#~ "Aucune méthode d'expédition n'a été trouvée; veuillez recalculer votre " -#~ "livraison et saisir votre pays et code postal pour s'assurer qu'il n'y a " -#~ "pas d'autre méthode d'expédition pour votre région." - -# @ woocommerce -#~ msgid "" -#~ "Sorry, it seems that there are no available shipping methods for your " -#~ "location (%s)." -#~ msgstr "" -#~ "Désolé, il semble qu'aucune méthode d'expédition ne soit disponible pour " -#~ "votre région (%s)." - -# @ woocommerce -#~ msgid "" -#~ "If you require assistance or wish to make alternate arrangements please " -#~ "contact us." -#~ msgstr "" -#~ "Si vous désirez de l'assistance ou encore planifier d'autres types " -#~ "d'arrangements, veuillez nous contacter." - -#~ msgid "" -#~ "There are some issues with the items in your cart (shown above). Please " -#~ "go back to the cart page and resolve these issues before checking out." -#~ msgstr "" -#~ "Il y a quelques problèmes avec les articles dans votre panier (voir ci-" -#~ "dessous). Veuillez retourner sur la page du panier et résolvez ces " -#~ "problèmes avant de commander." - -# @ woocommerce -#~ msgid "← Return To Cart" -#~ msgstr "← Retour au Panier" - -# @ woocommerce -#~ msgid "Billing & Shipping" -#~ msgstr "Facturation & Expédition" - -# @ woocommerce -#~ msgid "Create an account?" -#~ msgstr "Créer un Compte?" - -# @ woocommerce -#~ msgid "" -#~ "Create an account by entering the information below. If you are a " -#~ "returning customer please login at the top of the page." -#~ msgstr "" -#~ "Créez un compte en entrant les informations ci-dessous. Si vous en " -#~ "possédez déjà un, connectez-vous en haut de la page." - -# @ woocommerce -#~ msgid "You must be logged in to checkout." -#~ msgstr "Vous devez être identifié pour commander." - -# @ woocommerce -#~ msgid "Your order" -#~ msgstr "Votre commande" - -# @ woocommerce -#~ msgid "Have a coupon?" -#~ msgstr "Avez-vous un code promo ?" - -# @ woocommerce -#~ msgid "Click here to enter your code" -#~ msgstr "Cliquez ici pour entrer votre code" - -# @ woocommerce -#~ msgid "Already registered?" -#~ msgstr "Déjà Inscrit?" - -# @ woocommerce -#~ msgid "Click here to login" -#~ msgstr "Cliquez ici pour vous connecter" - -# @ woocommerce -#~ msgid "" -#~ "If you have shopped with us before, please enter your details in the " -#~ "boxes below. If you are a new customer please proceed to the Billing " -#~ "& Shipping section." -#~ msgstr "" -#~ "Si vous avez déjà acheté chez nous, veuillez entrer vos informations dans " -#~ "les champs ci-dessous. Si vous êtes un nouveau client, veuillez vous " -#~ "rendre à la section Facturation & Livraison." - -# @ woocommerce -#~ msgid "Totals" -#~ msgstr "Totaux" - -# @ woocommerce -#~ msgid "" -#~ "Sorry, it seems that there are no available payment methods for your " -#~ "location. Please contact us if you require assistance or wish to make " -#~ "alternate arrangements." -#~ msgstr "" -#~ "Désolé, il semble qu'il n'y ai pas de méthodes de paiement disponibles " -#~ "pour votre localisation. Contactez nous, svp si vous avez besoin " -#~ "d'assistance ou si vous désirez effectuer un autre arrangement." - -# @ woocommerce -#~ msgid "Pay for order" -#~ msgstr "Règlement pour la commande" - -# @ woocommerce -#~ msgid "Ship to billing address?" -#~ msgstr "Livrer à l'adresse de facturation" - -# @ woocommerce -#~ msgid "Additional Information" -#~ msgstr "Information Complémentaire" - -# @ woocommerce -#~ msgid "Please fill in your details above to see available shipping methods." -#~ msgstr "" -#~ "Veuillez entrer une adresse de livraison ci-haut pour voir les modes " -#~ "d'expédition disponibles." - -# @ woocommerce -#~ msgid "Order Subtotal" -#~ msgstr "Sous-total de la commande" - -# @ woocommerce -#~ msgid "Please fill in your details above to see available payment methods." -#~ msgstr "" -#~ "Veuillez entrer une adresse de livraison ci-haut pour voir les modes de " -#~ "paiement disponibles." - -# @ woocommerce -#~ msgid "" -#~ "Sorry, it seems that there are no available payment methods for your " -#~ "state. Please contact us if you require assistance or wish to make " -#~ "alternate arrangements." -#~ msgstr "" -#~ "Désolé, il semble qu'il n'y ai pas de méthode de règlement disponible " -#~ "pour votre état. Veuillez nous contacter si vous avez besoin d'aide ou si " -#~ "vous désirez effectuer un autre arrangement." - -# @ woocommerce -#~ msgid "" -#~ "Since your browser does not support JavaScript, or it is disabled, please " -#~ "ensure you click the Update Totals button before placing your " -#~ "order. You may be charged more than the amount stated above if you fail " -#~ "to do so." -#~ msgstr "" -#~ "Votre navigateur ne supporte pas JavaScript ou bien il est désactivé, " -#~ "assurez vous de cliquer sur le bouton Mise à Jour Totaux avant " -#~ "de passer votre commande. Vous pouvez être facturé plus que le montant " -#~ "indiqué ci-dessus si vous omettez de le faire." - -# @ woocommerce -#~ msgid "Update totals" -#~ msgstr "Mise à Jour Totaux" - -# @ woocommerce -#~ msgid "Place order" -#~ msgstr "Payer" - -# @ woocommerce -#~ msgid "I accept the" -#~ msgstr "J'accepte les " - -# @ woocommerce -#~ msgid "terms & conditions" -#~ msgstr "termes & conditions" - -# @ woocommerce -#~ msgid "" -#~ "Unfortunately your order cannot be processed as the originating bank/" -#~ "merchant has declined your transaction." -#~ msgstr "" -#~ "Malheureusement votre commande ne peut être effectuée car la banque a " -#~ "décliné votre transaction." - -# @ woocommerce -#~ msgid "Please attempt your purchase again or go to your account page." -#~ msgstr "" -#~ "S'il vous plaît essayez à nouveau votre achat ou allez sur la page de " -#~ "votre compte." - -# @ woocommerce -#~ msgid "Please attempt your purchase again." -#~ msgstr "S'il vous plaît essayez à nouveau votre achat." - -# @ woocommerce -#~ msgid "Thank you. Your order has been received." -#~ msgstr "Merci. Votre commande a été reçue." - -# @ woocommerce -#~ msgid "You have received an order from %s. Their order is as follows:" -#~ msgstr "Vous avez reçu une commande de %s. Leur commande est le suivant :" - -# @ woocommerce -#~ msgid "Order: %s" -#~ msgstr "Commande : %s" - -# @ woocommerce -#~ msgid "" -#~ "Hi there. Your recent order on %s has been completed. Your order details " -#~ "are shown below for your reference:" -#~ msgstr "" -#~ "Bonjour. Votre récente commande sur %s a été complétée. Les détails de " -#~ "votre commande sont affichés ci-dessous :" - -# @ woocommerce -#~ msgid "" -#~ "An order has been created for you on %s. To pay for this order please use " -#~ "the following link: %s" -#~ msgstr "" -#~ "Une commande a été crée pour vous sur %s. Pour régler cette commande, " -#~ "veuillez utiliser le lien suivant : %s" - -# @ woocommerce -#~ msgid "pay" -#~ msgstr "payer" - -#~ msgid "" -#~ "Thanks for creating an account on %s. Your username is %s." -#~ msgstr "" -#~ "Merci pour la création d'un compte sur %s. Votre identifiant est " -#~ "%s." - -#~ msgid "You can access your account area here: %s." -#~ msgstr "Vous pouvez accéder à votre compte ici : %s." - -#~ msgid "Hello, a note has just been added to your order:" -#~ msgstr "Bonjour, une note vient juste d'être ajoutée à votre commande :" - -# @ woocommerce -#~ msgid "For your reference, your order details are shown below." -#~ msgstr "" -#~ "Pour votre information, les détails de votre commande sont affichés ci-" -#~ "dessous." - -#~ msgid "" -#~ "Your order has been received and is now being processed. Your order " -#~ "details are shown below for your reference:" -#~ msgstr "" -#~ "Votre commande a été reçue et est maintenant en cours de traitement. Les " -#~ "détails de votre commande sont affichés ci-dessous : " - -#~ msgid "" -#~ "Someone requested that the password be reset for the following account:" -#~ msgstr "" -#~ "Quelqu'un a demandé que le mot de passe du compte suivant soit " -#~ "réinitialisé : " - -# @ woocommerce -#~ msgid "Username: %s" -#~ msgstr "Nom d'Utilisateur : %s" - -#~ msgid "" -#~ "If this was a mistake, just ignore this email and nothing will happen." -#~ msgstr "" -#~ "S'il s'agit d'une erreur, ignorez simplement cet email et rien ne se " -#~ "produira." - -#~ msgid "To reset your password, visit the following address:" -#~ msgstr "Pour réinitialiser votre mot de passe, visitez l'adresse suivante :" - -# @ woocommerce -#~ msgid "Click here to reset your password" -#~ msgstr "Cliquez ici pour réinitialiser votre mot de passe" - -# @ woocommerce -#~ msgid "Download %d:" -#~ msgstr "Téléchargement %d :" - -# @ woocommerce -#~ msgid "Download:" -#~ msgstr "Téléchargement :" - -# @ woocommerce -#~ msgid "Order number: %s" -#~ msgstr "Numéro commande : %s" - -# @ woocommerce -#~ msgid "Order date: %s" -#~ msgstr "Date commande : %s" - -# @ woocommerce -#~ msgid "Your details" -#~ msgstr "Vos détails" - -# @ woocommerce -#~ msgid "Quantity: %s" -#~ msgstr "Quantité : %s" - -# @ woocommerce -#~ msgid "Cost: %s" -#~ msgstr "Coût : %s" - -# @ woocommerce -#~ msgid "Read More" -#~ msgstr "Lire Plus" - -# @ woocommerce -#~ msgid "Select options" -#~ msgstr "Choix options" - -# @ woocommerce -#~ msgid "View options" -#~ msgstr "Voir les options" - -# @ woocommerce -#~ msgid "Sale!" -#~ msgstr "Promo !" - -# @ woocommerce -#~ msgid "New password" -#~ msgstr "Nouveau mot de passe" - -# @ woocommerce -#~ msgid "Re-enter new password" -#~ msgstr "Réentrez le nouveau mot de passe" - -# @ woocommerce -#~ msgid "Save" -#~ msgstr "Sauver" - -# @ woocommerce -#~ msgid "Save Address" -#~ msgstr "Sauver Adresse" - -# @ woocommerce -#~ msgid "Login" -#~ msgstr "Connexion" - -# @ woocommerce -#~ msgid "Username or email" -#~ msgstr "Identifiant ou email" - -# @ woocommerce -#~ msgid "Password" -#~ msgstr "Mot de Passe" - -# @ woocommerce -#~ msgid "Lost Password?" -#~ msgstr "Mot de Passe perdu ?" - -#~ msgid "Register" -#~ msgstr "S'enregistrer" - -# @ woocommerce -#~ msgid "Username" -#~ msgstr "Nom d'Utilisateur" - -# @ woocommerce -#~ msgid "Re-enter password" -#~ msgstr "Entrez à nouveau le mot de passe" - -#~ msgid "" -#~ "Lost your password? Please enter your username or email address. You will " -#~ "receive a link to create a new password via email." -#~ msgstr "" -#~ "Mot de passe perdu ? Veuillez saisir votre identifiant ou votre adresse " -#~ "email. Vous recevrez un lien par email pour créer un nouveau mot de passe." - -# @ woocommerce -#~ msgid "Enter a new password below." -#~ msgstr "Entrez un nouveau mot de passe ci-dessous." - -# @ woocommerce -#~ msgid "Reset Password" -#~ msgstr "Réinitialisation mot de passe" - -# @ woocommerce -#~ msgid "" -#~ "Hello, %s. From your account dashboard you can view your " -#~ "recent orders, manage your shipping and billing addresses and change your password." -#~ msgstr "" -#~ "Hello, %s. Vous pouvez voir vos commandes récentes, " -#~ "gérer vos adresses de livraison et de facturation et changer votre mot de passe à partir du tableau de bord de votre " -#~ "compte" - -# @ woocommerce -#~ msgid "Available downloads" -#~ msgstr "Téléchargements Disponibles" - -# @ woocommerce -#~ msgid "%s download remaining" -#~ msgid_plural "%s downloads remaining" -#~ msgstr[0] "%s téléchargement restant" -#~ msgstr[1] "%s téléchargements restants" - -# @ woocommerce -#~ msgid "Recent Orders" -#~ msgstr "Commandes récentes" - -# @ woocommerce -#~ msgid "My Address" -#~ msgstr "Mes Adresses" - -# @ woocommerce -#~ msgid "" -#~ "The following addresses will be used on the checkout page by default." -#~ msgstr "" -#~ "Les adresse suivantes seront utilisées par défaut sur la page de commande." - -# @ woocommerce -#~ msgid "You have not set up a billing address yet." -#~ msgstr "Vous n'avez pas défini d'adresse de facturation." - -# @ woocommerce -#~ msgid "You have not set up a shipping address yet." -#~ msgstr "Vous n'avez pas défini d'adresse de facturation." - -# @ woocommerce -#~ msgid "Ship to" -#~ msgstr "Expédié à" - -#~ msgid "Click to cancel this order" -#~ msgstr "Cliquez pour annuler cette commande" - -# @ woocommerce -#~ msgid "You have no recent orders." -#~ msgstr "Vous n'avez pas de commande récente." - -# @ woocommerce -#~ msgid "" -#~ "To track your order please enter your Order ID in the box below and press " -#~ "return. This was given to you on your receipt and in the confirmation " -#~ "email you should have received." -#~ msgstr "" -#~ "Pour suivre votre commande saisissez votre n° et votre email de " -#~ "commande dans les champs ci-dessous et cliquez sur le bouton \"Suivi\". " -#~ "Le n° de commande vous a été indiqué dans votre reçu et dans l'email " -#~ "de confirmation qui vous a été envoyé." - -# @ woocommerce -#~ msgid "Order ID" -#~ msgstr "N° de commande" - -# @ woocommerce -#~ msgid "Found in your order confirmation email." -#~ msgstr "Présent dans l'email de confirmation" - -# @ woocommerce -#~ msgid "Billing Email" -#~ msgstr "Email de facturation" - -# @ woocommerce -#~ msgid "Email you used during checkout." -#~ msgstr "Email utilisé pour la commande" - -# @ woocommerce -#~ msgid "Track\"" -#~ msgstr "Suivi\"" - -# @ woocommerce -#~ msgid "Download file %s →" -#~ msgstr "Télécharger le fichier %s →" - -# @ woocommerce -#~ msgid "Order Again" -#~ msgstr "Commander une nouvelle fois" - -# @ woocommerce -#~ msgid "Telephone:" -#~ msgstr "Téléphone :" - -# "il y a" est ajouté dans cette chaine car en anglais le "ago" est placé après la durée. -#~ msgid "Order %s which was made %s has the status “%s”" -#~ msgstr "" -#~ "Commande n°%s qui a été effectuée il y a %s avec l'état “" -#~ "%s”" - -# "il y a" déplacé dans la chaine parente car "ago" est placé après la durée en anglais. -#~ msgid "ago" -#~ msgstr " " - -# @ woocommerce -#~ msgid "and was completed" -#~ msgstr "et a été traitée il y a " - -# "il y a" déplacé dans la chaine parente car "ago" est placé après la durée en anglais. -#~ msgid " ago" -#~ msgstr " " - -# @ woocommerce -#~ msgctxt "breadcrumb" -#~ msgid "Home" -#~ msgstr "Accueil" - -# @ woocommerce -#~ msgid "Products tagged “" -#~ msgstr "Produits avec le mot-clé “" - -# @ woocommerce -#~ msgid "Search results for “" -#~ msgstr "Résultats de recherche pour “" - -# @ woocommerce -#~ msgid "Error 404" -#~ msgstr "Erreur 404" - -# @ woocommerce -#~ msgid "Posts tagged “" -#~ msgstr "Articles avec le mot-clé “" - -# @ woocommerce -#~ msgid "Author:" -#~ msgstr "Auteur :" - -# @ woocommerce -#~ msgid "Page" -#~ msgstr "Page" - -# @ woocommerce -#~ msgid "Category:" -#~ msgstr "Catégorie :" - -# @ woocommerce -#~ msgid "Tags:" -#~ msgstr "Mots-Clés :" - -# @ woocommerce -#~ msgid "Your comment is awaiting approval" -#~ msgstr "Votre commentaire est en attente de validation" - -#~ msgid "verified owner" -#~ msgstr "propriétaire vérifié" - -#~ msgid "M jS Y" -#~ msgstr "j M Y" - -# @ woocommerce -#~ msgid "You may also like…" -#~ msgstr "Vous aimerez peut-être aussi…" - -# @ woocommerce -#~ msgid "Choose an option" -#~ msgstr "Choisir une option" - -# @ woocommerce -#~ msgid "Product Description" -#~ msgstr "Description Produit" - -# @ woocommerce -#~ msgid "Display a list of your best selling products on your site." -#~ msgstr "Affiche une liste des produits se vendant le mieux sur votre site." - -# @ woocommerce -#~ msgid "WooCommerce Best Sellers" -#~ msgstr "Meilleures ventes WooCommerce" - -# @ woocommerce -#~ msgid "Best Sellers" -#~ msgstr "Meilleures ventes" - -# @ woocommerce -#~ msgid "Title:" -#~ msgstr "Titre :" - -# @ woocommerce -#~ msgid "Number of products to show:" -#~ msgstr "Nombre de produits à afficher :" - -# @ woocommerce -#~ msgid "Hide free products" -#~ msgstr "Masquer les produits gratuits" - -# @ woocommerce -#~ msgid "Display the user's Cart in the sidebar." -#~ msgstr "Affiche le Panier du visiteur dans la barre latérale." - -# @ woocommerce -#~ msgid "WooCommerce Cart" -#~ msgstr "Panier WooCommerce" - -#~ msgid "Hide if cart is empty" -#~ msgstr "Masquer si le panier est vide" - -# @ woocommerce -#~ msgid "Display a list of featured products on your site." -#~ msgstr "Affiche une liste de vos produits mis en avant dans votre site." - -# @ woocommerce -#~ msgid "WooCommerce Featured Products" -#~ msgstr "WooCommerce Produits mis en avant" - -# @ woocommerce -#~ msgid "Featured Products" -#~ msgstr "Produits Mis en Avant" - -# @ woocommerce -#~ msgid "" -#~ "Shows a custom attribute in a widget which lets you narrow down the list " -#~ "of products when viewing product categories." -#~ msgstr "" -#~ "Affiche un attribut personnalisé dans un widget qui vous permet d'affiner " -#~ "la liste des produits lors de la visualisation des catégories de produits." - -# @ woocommerce -#~ msgid "WooCommerce Layered Nav" -#~ msgstr "WooCommerce Layered Nav" - -# @ woocommerce -#~ msgid "Any %s" -#~ msgstr "Toute %s" - -# @ woocommerce -#~ msgid "Attribute:" -#~ msgstr "Attribut :" - -#~ msgid "Display Type:" -#~ msgstr "Type d'affichage :" - -#~ msgid "List" -#~ msgstr "Liste" - -#~ msgid "Dropdown" -#~ msgstr "Déroulante" - -#~ msgid "Query Type:" -#~ msgstr "Type de requête :" - -#~ msgid "AND" -#~ msgstr "AND" - -#~ msgid "OR" -#~ msgstr "OR" - -# @ woocommerce -#~ msgid "Display a login area and \"My Account\" links in the sidebar." -#~ msgstr "" -#~ "Affiche une zone d'identification et un lien vers \"Mon Compte\" dans la " -#~ "barre latérale." - -# @ woocommerce -#~ msgid "WooCommerce Login" -#~ msgstr "WooCommerce Identification" - -# @ woocommerce -#~ msgid "Customer Login" -#~ msgstr "Identification client" - -#~ msgid "Welcome %s" -#~ msgstr "Bienvenue %s" - -# @ woocommerce -#~ msgid "My account" -#~ msgstr "Mon Compte" - -# @ woocommerce -#~ msgid "Change my password" -#~ msgstr "Changer mon mot de passe" - -# @ woocommerce -#~ msgid "Lost password?" -#~ msgstr "Mot de Passe perdu ?" - -#~ msgid "Logged out title:" -#~ msgstr "Titre Déconnecté :" - -#~ msgid "Logged in title:" -#~ msgstr "Titre Connecté :" - -# @ woocommerce -#~ msgid "Display a list of your on-sale products on your site." -#~ msgstr "Affiche une liste de vos produits en vente sur votre site." - -# @ woocommerce -#~ msgid "WooCommerce On-sale" -#~ msgstr "WooCommerce En vente" - -# @ woocommerce -#~ msgid "On Sale" -#~ msgstr "En vente" - -# @ woocommerce -#~ msgid "" -#~ "Shows a price filter slider in a widget which lets you narrow down the " -#~ "list of shown products when viewing product categories." -#~ msgstr "" -#~ "Affiche un widget de filtre de prix glissant qui permet d'afficher la " -#~ "liste des produits en visualisant une catégorie de produits." - -# @ woocommerce -#~ msgid "WooCommerce Price Filter" -#~ msgstr "WooCommerce Filtre de Prix" - -# @ woocommerce -#~ msgid "Min price" -#~ msgstr "Prix min" - -# @ woocommerce -#~ msgid "Max price" -#~ msgstr "Prix max" - -# @ woocommerce -#~ msgid "Filter" -#~ msgstr "Filtre" - -# @ woocommerce -#~ msgid "Filter by price" -#~ msgstr "Filtrer par prix" - -# @ woocommerce -#~ msgid "A list or dropdown of product categories." -#~ msgstr "Une liste ou un menu déroulant des catégories de produits" - -# @ woocommerce -#~ msgid "WooCommerce Product Categories" -#~ msgstr "WooCommerce Catégories Produits" - -# @ woocommerce -#~ msgid "No product categories exist." -#~ msgstr "Aucune catégorie de produit." - -# @ woocommerce -#~ msgid "Order by:" -#~ msgstr "Trié par :" - -# @ woocommerce -#~ msgid "Category Order" -#~ msgstr "Ordre categorie" - -# @ woocommerce -#~ msgid "Show as dropdown" -#~ msgstr "Afficher menu déroulant" - -# @ woocommerce -#~ msgid "Show post counts" -#~ msgstr "Afficher compteur articles" - -# @ woocommerce -#~ msgid "Show hierarchy" -#~ msgstr "Afficher Hiérarchie" - -#~ msgid "Only show children for the current category" -#~ msgstr "Afficher uniquement les enfants de la catégorie courante" - -# @ woocommerce -#~ msgid "A Search box for products only." -#~ msgstr "Une boîte de recherche uniquement pour les produits" - -# @ woocommerce -#~ msgid "WooCommerce Product Search" -#~ msgstr "WooCommerce Recherche Produits" - -# @ woocommerce -#~ msgid "Your most used product tags in cloud format." -#~ msgstr "Vos mots-clés de produits les plus utilisés dans un format nuage" - -# @ woocommerce -#~ msgid "WooCommerce Product Tags" -#~ msgstr "WooCommerce Mots-Clés Produits" - -# @ woocommerce -#~ msgid "WooCommerce Random Products" -#~ msgstr "WooCommerce Produits Aléatoires" - -# @ woocommerce -#~ msgid "Display a list of random products on your site." -#~ msgstr "Afficher une liste aléatoire des produits sur votre site." - -# @ woocommerce -#~ msgid "Random Products" -#~ msgstr "Produits aléatoires" - -# @ woocommerce -#~ msgid "Show hidden product variations" -#~ msgstr "Afficher les variations de produits cachées" - -# @ woocommerce -#~ msgid "Display a list of recently viewed products." -#~ msgstr "Affiche une liste des produits récemment vus" - -# @ woocommerce -#~ msgid "WooCommerce Recently Viewed Products" -#~ msgstr "WooCommerce Produits Vus Récemment" - -# @ woocommerce -#~ msgid "Recently viewed" -#~ msgstr "Récemment vus" - -# @ woocommerce -#~ msgid "Display a list of your most recent products on your site." -#~ msgstr "Affiche une liste de vos produits récents sur votre site;" - -# @ woocommerce -#~ msgid "WooCommerce Recent Products" -#~ msgstr "WooCommerce Produits Récents" - -# @ woocommerce -#~ msgid "New Products" -#~ msgstr "Nouveaux Produits" - -# @ woocommerce -#~ msgid "Display a list of your most recent reviews on your site." -#~ msgstr "Affiche une liste des avis les plus récents sur votre site" - -# @ woocommerce -#~ msgid "Recent Reviews" -#~ msgstr "Avis Récents" - -# @ woocommerce -#~ msgctxt "by comment author" -#~ msgid "by %1$s" -#~ msgstr "par %1$s" - -# @ woocommerce -#~ msgid "Display a list of top rated products on your site." -#~ msgstr "Affiche une liste de vos produits les mieux notés sur votre site." - -# @ woocommerce -#~ msgid "WooCommerce Top Rated Products" -#~ msgstr "WooCommerce Produits les mieux notés" - -# @ woocommerce -#~ msgid "Top Rated Products" -#~ msgstr "Produits les mieux notés" - -#~ msgid "attente" -#~ msgstr "attente" - -#~ msgid "échouée" -#~ msgstr "échouée" - -#~ msgid "en attente" -#~ msgstr "en attente" - -# @ woocommerce -#~ msgid "en cours" -#~ msgstr "en cours" - -#~ msgid "terminée" -#~ msgstr "terminée" - -#~ msgid "recréditée" -#~ msgstr "recréditée" - -#~ msgid "annulée" -#~ msgstr "annulée" - -# @ woocommerce -#~ msgid "Value" -#~ msgstr "Valeurs" - -# @ woocommerce -#~ msgid "%s – %s%s" -#~ msgstr "%s – %s%s" - -# @ woocommerce -#~ msgid "Australian Dollars" -#~ msgstr "Dollars Australiens" - -# @ woocommerce -#~ msgid "Brazilian Real" -#~ msgstr "Real Brésilien" - -# @ woocommerce -#~ msgid "Canadian Dollars" -#~ msgstr "Dollars Canadiens" - -# @ woocommerce -#~ msgid "Chinese Yuan" -#~ msgstr "Yuan Chinois" - -# @ woocommerce -#~ msgid "Czech Koruna" -#~ msgstr "Couronne Tchèque" - -# @ woocommerce -#~ msgid "Euros" -#~ msgstr "Euros" - -# @ woocommerce -#~ msgid "Hong Kong Dollar" -#~ msgstr "Dollar Hong Kong" - -# @ woocommerce -#~ msgid "Indonesia Rupiah" -#~ msgstr "Roupie Indonésienne" - -# @ woocommerce -#~ msgid "Japanese Yen" -#~ msgstr "Yen Japonais" - -# @ woocommerce -#~ msgid "Malaysian Ringgits" -#~ msgstr "Ringgits Malaisie" - -# @ woocommerce -#~ msgid "Mexican Peso" -#~ msgstr "Peso Mexicain" - -# @ woocommerce -#~ msgid "New Zealand Dollar" -#~ msgstr "Dollar Nouvelle Zélande" - -# @ woocommerce -#~ msgid "Pounds Sterling" -#~ msgstr "Livres Sterling" - -#~ msgid "Romanian Leu" -#~ msgstr "Leu Roumain" - -# @ woocommerce -#~ msgid "Singapore Dollar" -#~ msgstr "Dollar Singapour" - -# @ woocommerce -#~ msgid "South African rand" -#~ msgstr "Rand Afrique du Sud" - -# @ woocommerce -#~ msgid "Turkish Lira" -#~ msgstr "Lira Turc" - -# @ woocommerce -#~ msgid "US Dollars" -#~ msgstr "Dollars US" - -# @ woocommerce -#~ msgctxt "slug" -#~ msgid "uncategorized" -#~ msgstr "non classé" - -#~ msgid "Unpaid order cancelled - time limit reached." -#~ msgstr "Commande impayée annulée - temp limite atteind." - -#~ msgid "Added "%s" to your cart." -#~ msgstr ""%s" ajouté à votre panier." - -#~ msgid "" and "" -#~ msgstr "" et "" - -#~ msgid "No file defined" -#~ msgstr "Aucun fichier défini" - -# @ woocommerce -#~ msgid "Password changed successfully." -#~ msgstr "Mot de passe modifié avec succès." - -# @ woocommerce -#~ msgid "Address changed successfully." -#~ msgstr "Adresse modifiée avec succès" - -#~ msgid "Enter a price for this variation (required)" -#~ msgstr "Entrez un tarif pour cette variation (requis)" - -# @ woocommerce -#~ msgid "Enable WooCommerce lightbox" -#~ msgstr "Activer la lightbox WooCommerce" - -#~ msgid "" -#~ "On the product details page, product gallery images will open in a " -#~ "lightbox. The Add Review form will open in a modal window" -#~ msgstr "" -#~ "Su la page détail produit, les images de la gallerie s'ouvriront dans une " -#~ "lightbox. Le formulaire d'ajout d'avis s'ouvrira dans une fenêtre modale" - -# @ woocommerce -#~ msgid "Limit Quantity" -#~ msgstr "Quantité limite" - -# @ woocommerce -#~ msgid "" -#~ "Sorry, we do not have enough \"%s\" in stock to fulfil your order (%s in " -#~ "stock). Please edit your cart and try again. We apologise for any " -#~ "inconvenience caused." -#~ msgstr "" -#~ "Désolé, nous n'avons pas assez de \"%s\" en stock pour honorer votre " -#~ "commande (%s en stock). Veuillez modifier votre panier et essayez de " -#~ "nouveau. Nous sommes désolés pour ce désagrément." - -# @ woocommerce -#~ msgid "" -#~ "Sorry, we do not have enough \"%s\" in stock to fulfil your order right " -#~ "now. Please try again in %d minutes or edit your cart and try again. We " -#~ "apologise for any inconvenience caused." -#~ msgstr "" -#~ "Désolé, nous n'avons pas assez de \"%s\" en stock pour remplir votre " -#~ "commande dès maintenant. Veuillez essayer de nouveau dans %d minutes ou " -#~ "modifiez votre panier et essayez à nouveau. Nous nous excusons pour ce " -#~ "désagrément." - -# @ woocommerce -#~ msgid "" -#~ "Sorry, \"%s\" is not in stock. Please edit your cart and try again. We " -#~ "apologise for any inconvenience caused." -#~ msgstr "" -#~ "Désolé, \"%s\" n'est pas en stock. Veuillez modifier votre panier et " -#~ "essayez à nouveau. Nous nous excusons pour ce désagrément." - -# @ woocommerce -#~ msgid "Sorry, "%s" cannot be purchased." -#~ msgstr "Désolé, "%s" ne peut pas être acheté." - -# @ woocommerce -#~ msgid "Coupon code already applied!" -#~ msgstr "Code Promo déjà appliqué !" - -# @ woocommerce -#~ msgid "" -#~ "Sorry, coupon %s has already been applied and cannot be used " -#~ "in conjunction with other coupons." -#~ msgstr "" -#~ "Désolé, le code promo %s a déjà été appliqué et ne peut être " -#~ "utilisé conjointement avec d'autres codes promo." - -# @ woocommerce -#~ msgid "Coupon code applied successfully." -#~ msgstr "Code Promo appliqué avec succès." - -# @ woocommerce -#~ msgid "Belau" -#~ msgstr "Belau" - -#~ msgid "Bonaire, Saint Eustatius and Saba" -#~ msgstr "Saba, Saint-Eustache et Bonaire" - -# @ woocommerce -#~ msgid "Bouvet Island" -#~ msgstr "Île Bouvet" - -#~ msgid "CuraÇao" -#~ msgstr "Curaçao" - -#~ msgid "Heard Island and McDonald Islands" -#~ msgstr "Îles Heard-et-MacDonald" - -# @ woocommerce -#~ msgid "Saint Martin (Dutch part)" -#~ msgstr "Saint-Martin (partie allemande)" - -# @ woocommerce -#~ msgid "South Sudan" -#~ msgstr "Soudan du Sud" - -#~ msgid "Town / District" -#~ msgstr "Ville / Quartier" - -# @ woocommerce -#~ msgid "Postcode / Zip" -#~ msgstr "Code Postal" - -# @ woocommerce -#~ msgid "Town / City" -#~ msgstr "Ville" - -# @ woocommerce -#~ msgid "State / County" -#~ msgstr "État / Comté" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Street address" -#~ msgstr "Adresse" - -#~ msgctxt "placeholder" -#~ msgid "Apartment, suite, unit etc. (optional)" -#~ msgstr "Appartement, bureau, etc. (optionnel)" - -#~ msgid "Sorry, this coupon is not valid for sale items." -#~ msgstr "Désolé, ce code promo ne s'applique pas aux articles en promo." - -#~ msgid "(Includes %s)" -#~ msgstr "(Inclus %s)" - -# @ woocommerce -#~ msgid "" -#~ "Customer invoice emails can be sent to the user containing order info and " -#~ "payment links." -#~ msgstr "" -#~ "Les emails de facture client peuvent être expédiés à l'utilisateur, " -#~ "contenant les informations de commande et les liens de paiement." - -# @ woocommerce -#~ msgid "Password Reset Instructions" -#~ msgstr "Instructions de réinitialisation de mot de passe" - -# @ woocommerce -#~ msgid "Optional" -#~ msgstr "Optionnel" - -#~ msgid "" -#~ "Increase your social media exposure by 10 percent! ShareYourCart helps " -#~ "you get more customers by motivating satisfied customers to talk with " -#~ "their friends about your products. For help with ShareYourCart view the " -#~ "documentation." -#~ msgstr "" -#~ "Augmentez votre présence en réseau social de 10 pourcents ! ShareYourCart " -#~ "vous aide à obtenir plus de clients en motivant les clients satisfaits à " -#~ "parler à leurs amis de vos produits. Pour une aide sur ShareYourCart, " -#~ "voir la documentation." - -#~ msgid "Share your cart settings" -#~ msgstr "Partager les paramètres de votre panier" - -#~ msgid "Button" -#~ msgstr "Bouton" - -# @ woocommerce -#~ msgid "Customize Button" -#~ msgstr "Personnaliser le bouton" - -# @ woocommerce -#~ msgid "" -#~ "Enter a cost (excluding tax) per order, e.g. 5.00. Leave blank to disable." -#~ msgstr "" -#~ "Entrez un coût (H.T.) par commande, ex. 5.00. Laissez vide pour " -#~ "désactiver." - -#~ msgid "Option Name|Cost|Per-order (yes or no)" -#~ msgstr "Option Nom|Coût|Par commande (yes ou no)" - -# @ woocommerce -#~ msgid "Free Shipping Requires..." -#~ msgstr "La livraison gratuite requiert..." - -# @ woocommerce -#~ msgid "A valid free shipping coupon" -#~ msgstr "Un code promo de livraison gratuite valide" - -#~ msgid "A minimum order amount (defined below)" -#~ msgstr "Un montant minimum de commande (défini ci-dessous)" - -# @ woocommerce -#~ msgid "A minimum order amount OR a coupon" -#~ msgstr "Un montant minimum de commande OU un coupon" - -# @ woocommerce -#~ msgid "A minimum order amount AND a coupon" -#~ msgstr "Un montant minimum de commande ET un coupon" - -# @ woocommerce -#~ msgid "" -#~ "Users will need to spend this amount to get free shipping (if enabled " -#~ "above)." -#~ msgstr "" -#~ "Les utilisateurs auront besoin de dépenser cette somme pour obtenir la " -#~ "livraison gratuite (si activée ci-dessus)." - -#~ msgid "" -#~ "Shows active layered nav filters so users can see and deactivate them." -#~ msgstr "" -#~ "Afficher les filtres actifs layered nav que les utilisateurs puissent les " -#~ "voir et les désactiver." - -# @ woocommerce -#~ msgid "WooCommerce Layered Nav Filters" -#~ msgstr "Filtres WooCommerce Layered Nav" - -#~ msgid "Active filters" -#~ msgstr "Filtres actifs" - -# @ woocommerce -#~ msgid "Remove filter" -#~ msgstr "Supprimer filtre" - -# @ woocommerce -#~ msgid "Min" -#~ msgstr "Min" - -# @ woocommerce -#~ msgid "Max" -#~ msgstr "Max" - -#~ msgid "Yunnan / 云南" -#~ msgstr "Yunnan / 云南" - -#~ msgid "Beijing / 北京" -#~ msgstr "Beijing / 北京" - -#~ msgid "Tianjin / 天津" -#~ msgstr "Tianjin / 天津" - -#~ msgid "Hebei / 河北" -#~ msgstr "Hebei / 河北" - -#~ msgid "Shanxi / 山西" -#~ msgstr "Shanxi / 山西" - -#~ msgid "Inner Mongolia / 內蒙古" -#~ msgstr "Mongolie-intérieure / 內蒙古" - -#~ msgid "Liaoning / 辽宁" -#~ msgstr "Liaoning / 辽宁" - -#~ msgid "Jilin / 吉林" -#~ msgstr "Jilin / 吉林" - -#~ msgid "Heilongjiang / 黑龙江" -#~ msgstr "Heilongjiang / 黑龙江" - -#~ msgid "Shanghai / 上海" -#~ msgstr "Shanghai / 上海" - -#~ msgid "Jiangsu / 江苏" -#~ msgstr "Jiangsu / 江苏" - -#~ msgid "Zhejiang / 浙江" -#~ msgstr "Zhejiang / 浙江" - -#~ msgid "Anhui / 安徽" -#~ msgstr "Anhui / 安徽" - -#~ msgid "Fujian / 福建" -#~ msgstr "Fujian / 福建" - -#~ msgid "Jiangxi / 江西" -#~ msgstr "Jiangxi / 江西" - -#~ msgid "Shandong / 山东" -#~ msgstr "Shandong / 山东" - -#~ msgid "Henan / 河南" -#~ msgstr "Henan / 河南" - -#~ msgid "Hubei / 湖北" -#~ msgstr "Hubei / 湖北" - -#~ msgid "Hunan / 湖南" -#~ msgstr "Hunan / 湖南" - -#~ msgid "Guangdong / 广东" -#~ msgstr "Guangdong / 广东" - -#~ msgid "Guangxi Zhuang / 广西壮族" -#~ msgstr "Guangxi Zhuang / 广西壮族" - -#~ msgid "Hainan / 海南" -#~ msgstr "Hainan / 海南" - -#~ msgid "Chongqing / 重庆" -#~ msgstr "Chongqing / 重庆" - -#~ msgid "Sichuan / 四川" -#~ msgstr "Sichuan / 四川" - -#~ msgid "Guizhou / 贵州" -#~ msgstr "Guizhou / 贵州" - -#~ msgid "Shaanxi / 陕西" -#~ msgstr "Shaanxi / 陕西" - -#~ msgid "Gansu / 甘肃" -#~ msgstr "Gansu / 甘肃" - -#~ msgid "Qinghai / 青海" -#~ msgstr "Qinghai / 青海" - -#~ msgid "Ningxia Hui / 宁夏" -#~ msgstr "Ningxia Hui / 宁夏" - -#~ msgid "Macau / 澳门" -#~ msgstr "Macau / 澳门" - -#~ msgid "Tibet / 西藏" -#~ msgstr "Tibet / 西藏" - -#~ msgid "Xinjiang / 新疆" -#~ msgstr "Xinjiang / 新疆" - -#~ msgid "Daerah Istimewa Aceh" -#~ msgstr "Daerah Istimewa Aceh" - -#~ msgid "Sumatera Utara" -#~ msgstr "Sumatra du Nord" - -#~ msgid "Sumatera Barat" -#~ msgstr "Sumatra occidental" - -#~ msgid "Riau" -#~ msgstr "Riau" - -#~ msgid "Kepulauan Riau" -#~ msgstr "Îles Riau" - -# @ woocommerce -#~ msgid "Jambi" -#~ msgstr "Jambi" - -#~ msgid "Sumatera Selatan" -#~ msgstr "Sumatra du Sud" - -#~ msgid "Bangka Belitung" -#~ msgstr "Îles Bangka Belitung" - -#~ msgid "Bengkulu" -#~ msgstr "Bengkulu" - -#~ msgid "Lampung" -#~ msgstr "Lampung" - -#~ msgid "DKI Jakarta" -#~ msgstr "Jakarta" - -#~ msgid "Jawa Barat" -#~ msgstr "Java occidental" - -# @ woocommerce -#~ msgid "Banten" -#~ msgstr "Banten" - -#~ msgid "Jawa Tengah" -#~ msgstr "Java central" - -#~ msgid "Jawa Timur" -#~ msgstr "Java oriental" - -#~ msgid "Daerah Istimewa Yogyakarta" -#~ msgstr "Yogyakarta" - -#~ msgid "Bali" -#~ msgstr "Bali" - -#~ msgid "Nusa Tenggara Barat" -#~ msgstr "Petites Îles de la Sonde occidentales" - -#~ msgid "Nusa Tenggara Timur" -#~ msgstr "Petites Îles de la Sonde orientales" - -#~ msgid "Kalimantan Barat" -#~ msgstr "Kalimantan occidental" - -#~ msgid "Kalimantan Tengah" -#~ msgstr "Kalimantan central" - -#~ msgid "Kalimantan Timur" -#~ msgstr "Kalimantan oriental" - -#~ msgid "Kalimantan Selatan" -#~ msgstr "Kalimantan du Sud" - -# @ woocommerce -#~ msgid "Kalimantan Utara" -#~ msgstr "Nord Kalimantan" - -#~ msgid "Sulawesi Utara" -#~ msgstr "Sulawesi du Nord" - -#~ msgid "Sulawesi Tengah" -#~ msgstr "Sulawesi central" - -#~ msgid "Sulawesi Tenggara" -#~ msgstr "Sulawesi du Sud-Est" - -#~ msgid "Sulawesi Barat" -#~ msgstr "Sulawesi occidental" - -#~ msgid "Sulawesi Selatan" -#~ msgstr "Sulawesi du Sud" - -#~ msgid "Gorontalo" -#~ msgstr "Gorontalo" - -#~ msgid "Maluku" -#~ msgstr "Maluku" - -#~ msgid "Maluku Utara" -#~ msgstr "Moluques du Nord" - -#~ msgid "Papua" -#~ msgstr "Papouasie" - -#~ msgid "Papua Barat" -#~ msgstr "Papouasie occidentale" - -#~ msgid "Andra Pradesh" -#~ msgstr "Andhra Pradesh" - -#~ msgid "Arunachal Pradesh" -#~ msgstr "Arunachal Pradesh" - -#~ msgid "Assam" -#~ msgstr "Assam" - -#~ msgid "Bihar" -#~ msgstr "Bihar" - -#~ msgid "Chhattisgarh" -#~ msgstr "Chhattisgarh" - -# @ woocommerce -#~ msgid "Goa" -#~ msgstr "Goa" - -#~ msgid "Gujarat" -#~ msgstr "Gujarat" - -# @ woocommerce -#~ msgid "Haryana" -#~ msgstr "Haryana" - -#~ msgid "Himachal Pradesh" -#~ msgstr "Himachal Pradesh" - -#~ msgid "Jammu and Kashmir" -#~ msgstr "Jammu-et-Cachemire" - -#~ msgid "Jharkhand" -#~ msgstr "Jharkhand" - -#~ msgid "Karnataka" -#~ msgstr "Karnataka" - -# @ woocommerce -#~ msgid "Kerala" -#~ msgstr "Kerala" - -#~ msgid "Madhya Pradesh" -#~ msgstr "Madhya Pradesh" - -#~ msgid "Maharashtra" -#~ msgstr "Maharashtra" - -#~ msgid "Manipur" -#~ msgstr "Manipur" - -# @ woocommerce -#~ msgid "Meghalaya" -#~ msgstr "Meghalaya" - -#~ msgid "Mizoram" -#~ msgstr "Mizoram" - -# @ woocommerce -#~ msgid "Nagaland" -#~ msgstr "Nagaland" - -#~ msgid "Orissa" -#~ msgstr "Orissa" - -#~ msgid "Punjab" -#~ msgstr "Punjab" - -#~ msgid "Rajasthan" -#~ msgstr "Rajasthan" - -#~ msgid "Sikkim" -#~ msgstr "Sikkim" - -#~ msgid "Tamil Nadu" -#~ msgstr "Tamil Nadu" - -#~ msgid "Tripura" -#~ msgstr "Tripura" - -#~ msgid "Uttaranchal" -#~ msgstr "Uttaranchal" - -#~ msgid "Uttar Pradesh" -#~ msgstr "Uttar Pradesh" - -#~ msgid "West Bengal" -#~ msgstr "Bengale-Occidental" - -# @ woocommerce -#~ msgid "Andaman and Nicobar Islands" -#~ msgstr "Îles Andaman-et-Nicobar" - -# @ woocommerce -#~ msgid "Chandigarh" -#~ msgstr "Chandigarh" - -#~ msgid "Dadar and Nagar Haveli" -#~ msgstr "Dadra et Nagar Haveli" - -#~ msgid "Daman and Diu" -#~ msgstr "Daman et Diu" - -#~ msgid "Delhi" -#~ msgstr "Delhi" - -#~ msgid "Lakshadeep" -#~ msgstr "Lakshadeep" - -#~ msgid "Pondicherry (Puducherry)" -#~ msgstr "Pondichéry (Puducherry)" - -#~ msgid "Johor" -#~ msgstr "Johor" - -#~ msgid "Kedah" -#~ msgstr "Kedah" - -#~ msgid "Kelantan" -#~ msgstr "Kelantan" - -#~ msgid "Melaka" -#~ msgstr "Melaka" - -#~ msgid "Negeri Sembilan" -#~ msgstr "Negeri Sembilan" - -# @ woocommerce -#~ msgid "Pahang" -#~ msgstr "Pahang" - -#~ msgid "Perak" -#~ msgstr "Perak" - -#~ msgid "Perlis" -#~ msgstr "Perlis" - -#~ msgid "Pulau Pinang" -#~ msgstr "Pulau Pinang" - -#~ msgid "Sabah" -#~ msgstr "Sabah" - -#~ msgid "Sarawak" -#~ msgstr "Sarawak" - -#~ msgid "Selangor" -#~ msgstr "Selangor" - -#~ msgid "Terengganu" -#~ msgstr "Terengganu" - -#~ msgid "W.P. Kuala Lumpur" -#~ msgstr "W.P. Kuala Lumpur" - -#~ msgid "W.P. Labuan" -#~ msgstr "W.P. Labuan" - -#~ msgid "W.P. Putrajaya" -#~ msgstr "W.P. Putrajaya" - -#~ msgid "" -#~ "Amnat Charoen (อำนาจเจร" -#~ "ิญ)" -#~ msgstr "" -#~ "Amnat Charoen (อำนาจเจร" -#~ "ิญ)" - -#~ msgid "Ang Thong (อ่างทอง)" -#~ msgstr "Ang Thong (อ่างทอง)" - -#~ msgid "" -#~ "Ayutthaya (พระนครศรี" -#~ "อยุธยา)" -#~ msgstr "" -#~ "Ayutthaya (พระนครศรี" -#~ "อยุธยา)" - -#~ msgid "" -#~ "Bangkok (กรุงเทพมห" -#~ "านคร)" -#~ msgstr "" -#~ "Bangkok (กรุงเทพมห" -#~ "านคร)" - -#~ msgid "Bueng Kan (บึงกาฬ)" -#~ msgstr "Bueng Kan (บึงกาฬ)" - -#~ msgid "" -#~ "Buri Ram (บุรีรัมย์)" -#~ msgstr "" -#~ "Buri Ram (บุรีรัมย์)" - -#~ msgid "" -#~ "Chachoengsao (ฉะเชิงเท" -#~ "รา)" -#~ msgstr "" -#~ "Chachoengsao (ฉะเชิงเท" -#~ "รา)" - -#~ msgid "Chai Nat (ชัยนาท)" -#~ msgstr "Chai Nat (ชัยนาท)" - -#~ msgid "Chaiyaphum (ชัยภูมิ)" -#~ msgstr "Chaiyaphum (ชัยภูมิ)" - -#~ msgid "" -#~ "Chanthaburi (จันทบุรี)" -#~ msgstr "" -#~ "Chanthaburi (จันทบุรี)" - -#~ msgid "" -#~ "Chiang Mai (เชียงใหม" -#~ "่)" -#~ msgstr "" -#~ "Chiang Mai (เชียงใหม" -#~ "่)" - -#~ msgid "" -#~ "Chiang Rai (เชียงราย)" -#~ msgstr "" -#~ "Chiang Rai (เชียงราย)" - -#~ msgid "Chonburi (ชลบุรี)" -#~ msgstr "Chonburi (ชลบุรี)" - -#~ msgid "Chumphon (ชุมพร)" -#~ msgstr "Chumphon (ชุมพร)" - -#~ msgid "" -#~ "Kalasin (กาฬสินธุ์)" -#~ msgstr "" -#~ "Kalasin (กาฬสินธุ์)" - -#~ msgid "" -#~ "Kamphaeng Phet (กำแพงเพช" -#~ "ร)" -#~ msgstr "" -#~ "Kamphaeng Phet (กำแพงเพช" -#~ "ร)" - -#~ msgid "" -#~ "Kanchanaburi (กาญจนบุร" -#~ "ี)" -#~ msgstr "" -#~ "Kanchanaburi (กาญจนบุร" -#~ "ี)" - -#~ msgid "Khon Kaen (ขอนแก่น)" -#~ msgstr "Khon Kaen (ขอนแก่น)" - -#~ msgid "Krabi (กระบี่)" -#~ msgstr "Krabi (กระบี่)" - -#~ msgid "Lampang (ลำปาง)" -#~ msgstr "Lampang (ลำปาง)" - -#~ msgid "Lamphun (ลำพูน)" -#~ msgstr "Lamphun (ลำพูน)" - -#~ msgid "Loei (เลย)" -#~ msgstr "Loei (เลย)" - -#~ msgid "Lopburi (ลพบุรี)" -#~ msgstr "Lopburi (ลพบุรี)" - -#~ msgid "" -#~ "Mae Hong Son (แม่ฮ่องส" -#~ "อน)" -#~ msgstr "" -#~ "Mae Hong Son (แม่ฮ่องส" -#~ "อน)" - -#~ msgid "" -#~ "Maha Sarakham (มหาสารคา" -#~ "ม)" -#~ msgstr "" -#~ "Maha Sarakham (มหาสารคา" -#~ "ม)" - -#~ msgid "Mukdahan (มุกดาหาร)" -#~ msgstr "Mukdahan (มุกดาหาร)" - -#~ msgid "Nakhon Nayok (นครนายก)" -#~ msgstr "Nakhon Nayok (นครนายก)" - -#~ msgid "Nakhon Pathom (นครปฐม)" -#~ msgstr "Nakhon Pathom (นครปฐม)" - -#~ msgid "Nakhon Phanom (นครพนม)" -#~ msgstr "Nakhon Phanom (นครพนม)" - -#~ msgid "" -#~ "Nakhon Ratchasima (นครราชส" -#~ "ีมา)" -#~ msgstr "" -#~ "Nakhon Ratchasima (นครราชส" -#~ "ีมา)" - -#~ msgid "" -#~ "Nakhon Sawan (นครสวรรค" -#~ "์)" -#~ msgstr "" -#~ "Nakhon Sawan (นครสวรรค" -#~ "์)" - -#~ msgid "" -#~ "Nakhon Si Thammarat (นครศรีธ" -#~ "รรมราช)" -#~ msgstr "" -#~ "Nakhon Si Thammarat (นครศรีธ" -#~ "รรมราช)" - -#~ msgid "Nan (น่าน)" -#~ msgstr "Nan (น่าน)" - -#~ msgid "" -#~ "Narathiwat (นราธิวาส)" -#~ msgstr "" -#~ "Narathiwat (นราธิวาส)" - -#~ msgid "" -#~ "Nong Bua Lam Phu (หนองบัวล" -#~ "ำภู)" -#~ msgstr "" -#~ "Nong Bua Lam Phu (หนองบัวล" -#~ "ำภู)" - -#~ msgid "Nong Khai (หนองคาย)" -#~ msgstr "Nong Khai (หนองคาย)" - -#~ msgid "Nonthaburi (นนทบุรี)" -#~ msgstr "Nonthaburi (นนทบุรี)" - -#~ msgid "" -#~ "Pathum Thani (ปทุมธานี)" -#~ msgstr "" -#~ "Pathum Thani (ปทุมธานี)" - -#~ msgid "Pattani (ปัตตานี)" -#~ msgstr "Pattani (ปัตตานี)" - -#~ msgid "Phang Nga (พังงา)" -#~ msgstr "Phang Nga (พังงา)" - -#~ msgid "Phatthalung (พัทลุง)" -#~ msgstr "Phatthalung (พัทลุง)" - -#~ msgid "Phayao (พะเยา)" -#~ msgstr "Phayao (พะเยา)" - -#~ msgid "" -#~ "Phetchabun (เพชรบูรณ" -#~ "์)" -#~ msgstr "" -#~ "Phetchabun (เพชรบูรณ" -#~ "์)" - -#~ msgid "" -#~ "Phetchaburi (เพชรบุรี)" -#~ msgstr "" -#~ "Phetchaburi (เพชรบุรี)" - -#~ msgid "Phichit (พิจิตร)" -#~ msgstr "Phichit (พิจิตร)" - -#~ msgid "" -#~ "Phitsanulok (พิษณุโลก)" -#~ msgstr "" -#~ "Phitsanulok (พิษณุโลก)" - -#~ msgid "Phrae (แพร่)" -#~ msgstr "Phrae (แพร่)" - -#~ msgid "Phuket (ภูเก็ต)" -#~ msgstr "Phuket (ภูเก็ต)" - -#~ msgid "" -#~ "Prachin Buri (ปราจีนบุ" -#~ "รี)" -#~ msgstr "" -#~ "Prachin Buri (ปราจีนบุ" -#~ "รี)" - -#~ msgid "" -#~ "Prachuap Khiri Khan (ประจวบค" -#~ "ีรีขันธ์)" -#~ msgstr "" -#~ "Prachuap Khiri Khan (ประจวบค" -#~ "ีรีขันธ์)" - -#~ msgid "Ranong (ระนอง)" -#~ msgstr "Ranong (ระนอง)" - -#~ msgid "Ratchaburi (ราชบุรี)" -#~ msgstr "Ratchaburi (ราชบุรี)" - -#~ msgid "Rayong (ระยอง)" -#~ msgstr "Rayong (ระยอง)" - -#~ msgid "Roi Et (ร้อยเอ็ด)" -#~ msgstr "Roi Et (ร้อยเอ็ด)" - -#~ msgid "Sa Kaeo (สระแก้ว)" -#~ msgstr "Sa Kaeo (สระแก้ว)" - -#~ msgid "Sakon Nakhon (สกลนคร)" -#~ msgstr "Sakon Nakhon (สกลนคร)" - -#~ msgid "" -#~ "Samut Prakan (สมุทรปรา" -#~ "การ)" -#~ msgstr "" -#~ "Samut Prakan (สมุทรปรา" -#~ "การ)" - -#~ msgid "" -#~ "Samut Sakhon (สมุทรสาค" -#~ "ร)" -#~ msgstr "" -#~ "Samut Sakhon (สมุทรสาค" -#~ "ร)" - -#~ msgid "" -#~ "Samut Songkhram (สมุทรสงค" -#~ "ราม)" -#~ msgstr "" -#~ "Samut Songkhram (สมุทรสงค" -#~ "ราม)" - -#~ msgid "Saraburi (สระบุรี)" -#~ msgstr "Saraburi (สระบุรี)" - -#~ msgid "Satun (สตูล)" -#~ msgstr "Satun (สตูล)" - -#~ msgid "" -#~ "Sing Buri (สิงห์บุร" -#~ "ี)" -#~ msgstr "" -#~ "Sing Buri (สิงห์บุร" -#~ "ี)" - -#~ msgid "Sisaket (ศรีสะเกษ)" -#~ msgstr "Sisaket (ศรีสะเกษ)" - -#~ msgid "Songkhla (สงขลา)" -#~ msgstr "Songkhla (สงขลา)" - -#~ msgid "Sukhothai (สุโขทัย)" -#~ msgstr "Sukhothai (สุโขทัย)" - -#~ msgid "" -#~ "Suphan Buri (สุพรรณบุ" -#~ "รี)" -#~ msgstr "" -#~ "Suphan Buri (สุพรรณบุ" -#~ "รี)" - -#~ msgid "" -#~ "Surat Thani (สุราษฎร์" -#~ "ธานี)" -#~ msgstr "" -#~ "Surat Thani (สุราษฎร์" -#~ "ธานี)" - -#~ msgid "Surin (สุรินทร์)" -#~ msgstr "Surin (สุรินทร์)" - -#~ msgid "Tak (ตาก)" -#~ msgstr "Tak (ตาก)" - -#~ msgid "Trang (ตรัง)" -#~ msgstr "Trang (ตรัง)" - -#~ msgid "Trat (ตราด)" -#~ msgstr "Trat (ตราด)" - -#~ msgid "" -#~ "Ubon Ratchathani (อุบลราชธ" -#~ "านี)" -#~ msgstr "" -#~ "Ubon Ratchathani (อุบลราชธ" -#~ "านี)" - -#~ msgid "" -#~ "Udon Thani (อุดรธานี)" -#~ msgstr "" -#~ "Udon Thani (อุดรธานี)" - -#~ msgid "" -#~ "Uthai Thani (อุทัยธาน" -#~ "ี)" -#~ msgstr "" -#~ "Uthai Thani (อุทัยธาน" -#~ "ี)" - -#~ msgid "" -#~ "Uttaradit (อุตรดิตถ" -#~ "์)" -#~ msgstr "" -#~ "Uttaradit (อุตรดิตถ" -#~ "์)" - -#~ msgid "Yala (ยะลา)" -#~ msgstr "Yala (ยะลา)" - -#~ msgid "Yasothon (ยโสธร)" -#~ msgstr "Yasothon (ยโสธร)" - -#~ msgid "Armed Forces (AA)" -#~ msgstr "Forces armées américaines (AA°" - -#~ msgid "Armed Forces (AE)" -#~ msgstr "Forces armées américaines (AE)" - -#~ msgid "Armed Forces (AP)" -#~ msgstr "Forces armées américaines (AP)" - -#~ msgid "Eastern Cape" -#~ msgstr "Cap-Oriental" - -# @ woocommerce -#~ msgid "Free State" -#~ msgstr "État gratuit" - -#~ msgid "Gauteng" -#~ msgstr "Gauteng" - -#~ msgid "KwaZulu-Natal" -#~ msgstr "KwaZulu-Natal" - -#~ msgid "Limpopo" -#~ msgstr "Limpopo" - -#~ msgid "Mpumalanga" -#~ msgstr "Mpumalanga" - -# @ woocommerce -#~ msgid "Northern Cape" -#~ msgstr "Cap-du-Nord" - -# @ woocommerce -#~ msgid "North West" -#~ msgstr "Nord-Ouest" - -# @ woocommerce -#~ msgid "Western Cape" -#~ msgstr "Cap-Occidental" - -# @ woocommerce -#~ msgid "Add Your Review" -#~ msgstr "Ajouter Votre Avis" - -# @ woocommerce -#~ msgctxt "Product quantity input tooltip" -#~ msgid "Qty" -#~ msgstr "Qté" - -# @ woocommerce -#~ msgid "State / county" -#~ msgstr "État / Comté" - -# @ woocommerce -#~ msgid "Free" -#~ msgstr "Gratuit" - -# @ woocommerce -#~ msgid " (taxes estimated for %s)" -#~ msgstr "(taxes estimées à %s)" - -# @ woocommerce -#~ msgid "" -#~ "No shipping methods were found; please recalculate your shipping and " -#~ "enter your state/county and zip/postcode to ensure there are no other " -#~ "available methods for your location." -#~ msgstr "" -#~ "Aucune méthode d'expédition n'a été trouvée; Veuillez recalculer votre " -#~ "livraison et saisir votre état/pays et code postal pour s'assurer qu'il " -#~ "n'y a pas d'autre méthode d'expédition pour votre région." - -# @ woocommerce -#~ msgid "Returning customer?" -#~ msgstr "Déjà client ?" - -# @ woocommerce -#~ msgid "I have read and accept the" -#~ msgstr "J'ai lu et j'accepte les " - -#~ msgid "Showing the single result" -#~ msgstr "Voici le seul résultat" - -# @ woocommerce -#~ msgid "Showing all %d results" -#~ msgstr "Afficher tous les %d résultats" - -#~ msgctxt "%1$d = first, %2$d = last, %3$d = total" -#~ msgid "Showing %1$d–%2$d of %3$d results" -#~ msgstr "Voici les résultats %1$d–%2$d sur %3$d" - -# @ woocommerce -#~ msgid "Sort by popularity" -#~ msgstr "Tri par popularité" - -#~ msgid "Sort by average rating" -#~ msgstr "Trié par notes moyennes" - -# @ woocommerce -#~ msgid "Sort by newness" -#~ msgstr "Tri par nouveauté" - -# @ woocommerce -#~ msgid "Sort by price: low to high" -#~ msgstr "Tri par tarif croissant" - -# @ woocommerce -#~ msgid "Sort by price: high to low" -#~ msgstr "Tri par tarif décroissant" - -# @ woocommerce -#~ msgid "My Addresses" -#~ msgstr "Mes Adresses" - -# @ woocommerce -#~ msgid "You have not set up this type of address yet." -#~ msgstr "Vous n'avez pas encore défini ce type d'adresse." - -# @ woocommerce -#~ msgid "Track" -#~ msgstr "Suivi" - -#~ msgid "Tag:" -#~ msgid_plural "Tags:" -#~ msgstr[0] "Mot clé :" -#~ msgstr[1] "Mots clés :" - -# @ woocommerce -#~ msgid "Rated %d out of 5" -#~ msgstr "Noté %d sur 5" - -# @ woocommerce -#~ msgid "Reviews (%d)" -#~ msgstr "Avis (%d)" - -# @ woocommerce -#~ msgid "Coupon is not valid." -#~ msgstr "Code promo invalide." - -# @ woocommerce -#~ msgid "" -#~ "Sorry, coupon \"%s\" has already been applied and cannot be used in " -#~ "conjunction with other coupons." -#~ msgstr "" -#~ "Désolé, le code promo \"%s\" a déjà été appliqué et ne peut être utilisé " -#~ "conjointement avec d'autres codes promo." - -#~ msgid "" -#~ "The WC_Product class is now abstract. Use get_product()" -#~ " to instantiate an instance of a product instead of calling this " -#~ "class directly." -#~ msgstr "" -#~ "La classe WC_Product est dorénavant obsolète. Utilisez " -#~ "get_product() pour charger une instance d'un produit plutôt " -#~ "que d'appeler cette classe directement." - -#~ msgid "Pay with cash upon delivery." -#~ msgstr "Payer en argent comptant à la livraison." - -#~ msgid "Bács-Kiskun" -#~ msgstr "Bács-Kiskun" - -#~ msgid "Békés" -#~ msgstr "Békés" - -# @ woocommerce -#~ msgid "Baranya" -#~ msgstr "Baranya" - -#~ msgid "Borsod-Abaúj-Zemplén" -#~ msgstr "Borsod-Abaúj-Zemplén" - -#~ msgid "Budapest" -#~ msgstr "Budapest" - -#~ msgid "Csongrád" -#~ msgstr "Csongrád" - -#~ msgid "Fejér" -#~ msgstr "Fejér" - -#~ msgid "Győr-Moson-Sopron" -#~ msgstr "Győr-Moson-Sopron" - -#~ msgid "Hajdú-Bihar" -#~ msgstr "Hajdú-Bihar" - -#~ msgid "Heves" -#~ msgstr "Heves" - -#~ msgid "Jász-Nagykun-Szolnok" -#~ msgstr "Jász-Nagykun-Szolnok" - -#~ msgid "Komárom-Esztergom" -#~ msgstr "Komárom-Esztergom" - -#~ msgid "Nógrád" -#~ msgstr "Nógrád" - -#~ msgid "Pest" -#~ msgstr "Pest" - -#~ msgid "Somogy" -#~ msgstr "Somogy" - -#~ msgid "Szabolcs-Szatmár-Bereg" -#~ msgstr "Szabolcs-Szatmár-Bereg" - -#~ msgid "Tolna" -#~ msgstr "Tolna" - -# @ woocommerce -#~ msgid "Vas" -#~ msgstr "Vas" - -#~ msgid "Veszprém" -#~ msgstr "Veszprém" - -#~ msgid "Zala" -#~ msgstr "Zala" - -# @ woocommerce -#~ msgid "%s for %s item" -#~ msgid_plural "%s for %s items" -#~ msgstr[0] "%s pour %s article" -#~ msgstr[1] "%s pour %s articles" - -# @ woocommerce -#~ msgid "WooCommerce DB version" -#~ msgstr "WooCommerce Version DB" - -#~ msgid "Slug %s is too long" -#~ msgstr "Le slug %s est trop long" - -# @ woocommerce -#~ msgid "Please choose a quantity…" -#~ msgstr "Choisissez une quantité, svp …" - -# @ woocommerce -#~ msgid "Select a page..." -#~ msgstr "Choisissez une page..." - -#~ msgid "" -#~ "Define tax rates for countries and states below, or alternatively upload " -#~ "a CSV file containing your rates to wp-content/" -#~ "woocommerce_tax_rates.csv instead. Download sample " -#~ "csv." -#~ msgstr "" -#~ "Definir les taux de taxe pour les pays et les régions ci-dessous, ou " -#~ "alternativement transférez un fichier CSV contenant vos taux sur wp-" -#~ "content/woocommerce_tax_rates.csv. Télécharger un " -#~ "csv modèle." - -#~ msgid "" -#~ "Define local tax rates below, or alternatively upload a CSV file " -#~ "containing your rates to wp-content/woocommerce_local_tax_rates." -#~ "csv instead. Download sample csv." -#~ msgstr "" -#~ "Definir les taux de taxe locale ci-dessous, ou alternativement transférez " -#~ "un fichier CSV contenant vos taux sur wp-content/" -#~ "woocommerce_local_tax_rates.csv. Télécharger un csv " -#~ "modèle." - -# @ woocommerce -#~ msgid "Post/zip codes" -#~ msgstr "Codes Postaux" - -#~ msgid "PHP Sessions" -#~ msgstr "Sessions PHP" - -#~ msgid "Session save path" -#~ msgstr "Chemin de sauvegarde des sessions" - -#~ msgid "" -#~ "%s does not exist - contact your host to resolve the problem." -#~ msgstr "" -#~ "%s n'existe pas - contacter votre hébergeur pour résoudre le " -#~ "problème." - -#~ msgid "" -#~ "%s is not writable - contact your host to resolve the " -#~ "problem." -#~ msgstr "" -#~ "%s n'est pas accessible en écriture - contacter votre " -#~ "hébergeur pour résoudre le problème." - -#~ msgid "%s is writable." -#~ msgstr "%s est accessible en écriture." - -#~ msgid "↑" -#~ msgstr "↑" - -# @ woocommerce -#~ msgid "File path" -#~ msgstr "Chemin fichier" - -#~ msgid "Display taxes even when the amount is zero" -#~ msgstr "Afficher les taxes même quand le montant est nul" - -# @ woocommerce -#~ msgid "Catalog prices defined including tax" -#~ msgstr "Les prix catalogues définis incluent les taxes" - -# @ woocommerce -#~ msgid "" -#~ "List product and shipping tax classes here, e.g. Zero Tax, Reduced Rate." -#~ msgstr "" -#~ "Liste produit et classes de taxes de livraison ici. Ex : Exonération de " -#~ "Taxe, Taux Réduit." - -# @ woocommerce -#~ msgid "All fields are required." -#~ msgstr "Tous les champs sont requis." - -# @ woocommerce -#~ msgid "To avoid rounding errors, insert tax rates with 4 decimal places." -#~ msgstr "" -#~ "Afin d'éviter les erreurs d'arrondi, insérez les taux d'imposition avec 4 " -#~ "décimales." - -# @ woocommerce -#~ msgid "Email Recipient Options" -#~ msgstr "Options d'email du destinataire" - -# @ woocommerce -#~ msgid "New order notifications" -#~ msgstr "Notification de nouvelle commande" - -# @ woocommerce -#~ msgid "The recipient of new order emails. Defaults to the admin email." -#~ msgstr "" -#~ "Le destinataire des emails de nouvelle commande. Par défaut l'email de " -#~ "l'administrateur." - -# @ woocommerce -#~ msgid "Inventory notifications" -#~ msgstr "Notifications d'inventaire" - -# @ woocommerce -#~ msgid "The recipient of stock emails. Defaults to the admin email." -#~ msgstr "" -#~ "Le destinataire des emails d'inventaire. Par défaut l'email de " -#~ "l'administrateur." - -# @ woocommerce -#~ msgid "Drenthe" -#~ msgstr "Drenthe" - -# @ woocommerce -#~ msgid "Flevoland" -#~ msgstr "Flevoland" - -# @ woocommerce -#~ msgid "Friesland" -#~ msgstr "Friesland" - -# @ woocommerce -#~ msgid "Gelderland" -#~ msgstr "Gelderland" - -# @ woocommerce -#~ msgid "Groningen" -#~ msgstr "Groningen" - -# @ woocommerce -#~ msgid "Limburg" -#~ msgstr "Limburg" - -#~ msgid "Noord-Brabant" -#~ msgstr "Noord-Brabant" - -# @ woocommerce -#~ msgid "Noord-Holland" -#~ msgstr "Noord-Holland" - -# @ woocommerce -#~ msgid "Overijssel" -#~ msgstr "Overijssel" - -#~ msgid "Utrecht" -#~ msgstr "Utrecht" - -# @ woocommerce -#~ msgid "Zeeland" -#~ msgstr "Zeeland" - -#~ msgid "Zuid-Holland" -#~ msgstr "Zuid-Holland" - -# @ woocommerce -#~ msgid "[%s] New Customer Order (%s)" -#~ msgstr "[%s] Nouvelle commande client (n°%s)" - -# @ woocommerce -#~ msgid "[%s] Order Received" -#~ msgstr "[%s] Commande reçue" - -# @ woocommerce -#~ msgid "[%s] Order Complete/Download Links" -#~ msgstr "[%s] Commande finalisée/Liens de téléchargement" - -# @ woocommerce -#~ msgid "Order Complete/Download Links" -#~ msgstr "Commande finalisée/Liens de téléchargement" - -# @ woocommerce -#~ msgid "[%s] Order Complete" -#~ msgstr "[%s] Commande terminée" - -# @ woocommerce -#~ msgid "Order Complete" -#~ msgstr "Commande terminée" - -# @ woocommerce -#~ msgid "Your order on %s" -#~ msgstr "Votre commande sur %s" - -# @ woocommerce -#~ msgid "[%s] Your order" -#~ msgstr "[%s] Votre commande" - -# @ woocommerce -#~ msgid "[%s] Pay for Order" -#~ msgstr "[%s] Payer la commande" - -#~ msgid "[%s] A note has been added to your order" -#~ msgstr "[%s] Une note a été ajoutée à votre commande" - -# @ woocommerce -#~ msgid "Order information" -#~ msgstr "Informations sur la commande" - -#~ msgid "Turn on Cash on Delivery for WooCommerce" -#~ msgstr "Activez le paiement à la livraison pour WooCommerce" - -# @ woocommerce -#~ msgid "Paypal" -#~ msgstr "Paypal" - -# @ woocommerce -#~ msgid "Send shipping details to PayPal." -#~ msgstr "Envoyer les détails de livraison à PayPal." - -#~ msgid "Debug" -#~ msgstr "Débuguer" - -#~ msgid "Enable logging (woocommerce/logs/paypal.txt)" -#~ msgstr "Activer les logs (woocommerce/logs/paypal.txt)" - -# @ woocommerce -#~ msgid "Order #%s" -#~ msgstr "Commande n°%s" - -#~ msgid "Order #%s has been marked as refunded - PayPal reason code: %s" -#~ msgstr "" -#~ "La commande n°%s a été indiquée comme recrédité - Code explicatif " -#~ "PayPal : %s" - -#~ msgid "Payment for order #%s refunded/reversed" -#~ msgstr "Paiement pour la commande n°%s recréditée/remboursée" - -# @ woocommerce -#~ msgid ". Their order is as follows:" -#~ msgstr ". La commande est la suivante :" - -# @ woocommerce -#, fuzzy -#~ msgctxt "Admin menu name" -#~ msgid "Product Categories" -#~ msgstr "Catégories" - -# @ woocommerce -#, fuzzy -#~ msgid "Shipping method…" -#~ msgstr "Méthode de livraison" - -# @ woocommerce -#, fuzzy -#~ msgid "Payment method…" -#~ msgstr "Méthode de Paiement :" - -# @ woocommerce -#, fuzzy -#~ msgid "Product Reviews" -#~ msgstr "Champs des produits" - -#, fuzzy -#~ msgid "Enable jQuery UI (used by the price filter widget)" -#~ msgstr "Activer JQuery UI (utilisé par le widget prix slider)" diff --git a/i18n/languages/woocommerce-admin-he_IL.mo b/i18n/languages/woocommerce-admin-he_IL.mo deleted file mode 100644 index 9cc6114e77a..00000000000 Binary files a/i18n/languages/woocommerce-admin-he_IL.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-admin-he_IL.po b/i18n/languages/woocommerce-admin-he_IL.po deleted file mode 100644 index f0ff64006a1..00000000000 --- a/i18n/languages/woocommerce-admin-he_IL.po +++ /dev/null @@ -1,5347 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce 2.0.0 Front-end\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-03-04 09:46:16+00:00\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"PO-Revision-Date: 2013-07-28 12:30+0200\n" -"Last-Translator: stas \n" -"Language-Team: Stas Arshanski \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Language: Hebrew\n" -"X-Generator: Poedit 1.5.4\n" - -#: admin/importers/importers-init.php:13 -msgid "WooCommerce Tax Rates (CSV)" -msgstr "שיעורי מס WooCommerce (CSV)" - -#: admin/importers/importers-init.php:13 -msgid "Import tax rates to your store via a csv file." -msgstr "ייבא שיעורי מס לחנות שלך באמצעות קובץ CSV." - -#: admin/importers/tax-rates-importer.php:103 -#: admin/importers/tax-rates-importer.php:186 -#: admin/importers/tax-rates-importer.php:226 -#: admin/importers/tax-rates-importer.php:241 -msgid "Sorry, there has been an error." -msgstr "אנו מצטערים, חלה טעות." - -#: admin/importers/tax-rates-importer.php:104 -msgid "The file does not exist, please try again." -msgstr "הקובץ אינו קיים, אנא נסה שוב." - -#: admin/importers/tax-rates-importer.php:187 -msgid "The CSV is invalid." -msgstr "CSV אינו תקין." - -#: admin/importers/tax-rates-importer.php:198 -msgid "" -"Import complete - imported %s tax rates and skipped " -"%s." -msgstr "" -"הייבוא הסתיים - ייובא שיעור מס %s ודילג על %s." - -#: admin/importers/tax-rates-importer.php:208 -msgid "All done!" -msgstr "הכל הסתיים!" - -#: admin/importers/tax-rates-importer.php:208 -msgid "View Tax Rates" -msgstr "צפו בשיעורי מס" - -#: admin/importers/tax-rates-importer.php:259 -msgid "Import Tax Rates" -msgstr "יבוא שיעורי מס" - -#: admin/importers/tax-rates-importer.php:282 -msgid "" -"Hi there! Upload a CSV file containing tax rates to import the contents into " -"your shop. Choose a .csv file to upload, then click "Upload file and " -"import"." -msgstr "שלום לך" - -#: admin/importers/tax-rates-importer.php:284 -msgid "" -"Tax rates need to be defined with columns in a specific order (10 columns). " -"Click here to download a sample." -msgstr "" -"שיעורי מס צריכים להיות מוגדרים עם עמודות לפי סדר מסוים (10 עמודים). לחץ כאן כדי להוריד דוגמה." - -#: admin/importers/tax-rates-importer.php:292 -msgid "" -"Before you can upload your import file, you will need to fix the following " -"error:" -msgstr "לפני שתוכל להעלות את קובץ היבוא שלך, אתה צריך לתקן את השגיאה הבאה:" - -#: admin/importers/tax-rates-importer.php:301 -msgid "Choose a file from your computer:" -msgstr "בחר קובץ מהמחשב שלך:" - -#: admin/importers/tax-rates-importer.php:307 -msgid "Maximum size: %s" -msgstr "גודל מקסימלי: %s" - -#: admin/importers/tax-rates-importer.php:312 -msgid "OR enter path to file:" -msgstr "או הכנס נתיב לקובץ:" - -#: admin/importers/tax-rates-importer.php:319 -msgid "Delimiter" -msgstr "מפריד" - -#: admin/importers/tax-rates-importer.php:325 -msgid "Upload file and import" -msgstr "העלה קובץ ויבא" - -#: admin/includes/duplicate_product.php:23 -msgid "No product to duplicate has been supplied!" -msgstr "לא סופק מוצר לשכפול!" - -#: admin/includes/duplicate_product.php:43 -msgid "Product creation failed, could not find original product:" -msgstr "יצירת מוצר נכשלה, לא הצליח למצוא מוצר מקורי:" - -#: admin/includes/duplicate_product.php:89 -msgid "(Copy)" -msgstr "(העתק)" - -#: admin/includes/notice-install.php:6 -msgid "" -"Welcome to WooCommerce – You're almost ready to start " -"selling :)" -msgstr " ברוכים הבאים לחנות - אתה כמעט מוכן להתחיל למכור :)" - -#: admin/includes/notice-install.php:7 -msgid "Install WooCommerce Pages" -msgstr "התקנת עמודי החנות" - -#: admin/includes/notice-install.php:7 -msgid "Skip setup" -msgstr "דלג על ההתקנה" - -#: admin/includes/notice-theme-support.php:6 -msgid "" -"Your theme does not declare WooCommerce support – if " -"you encounter layout issues please read our integration guide or choose a " -"WooCommerce theme :)" -msgstr "" -" ערכת העיצוב שלך לא מצהירה על תמיכה בWooCommerce - אם אתה " -"נתקלת בבעיות פריסה אנא קרא את המדריך שלנו על שילוב עם עיצובים קיימים או " -"לבחור עיצוב מותאם מראש לWooCommerce :)" - -#: admin/includes/notice-theme-support.php:7 -msgid "Theme Integration Guide" -msgstr "מדריך שילוב ערכת העיצוב" - -#: admin/includes/notice-theme-support.php:7 -msgid "Hide this notice" -msgstr "הסתר הודעה זו" - -#: admin/includes/notice-update.php:6 -msgid "" -"Data Update Required – We just need to update your " -"install to the latest version" -msgstr "" -"נדרש עדכון נתונים - אנחנו רק צריכים לעדכן את ההתקנה שלך " -"לגרסה העדכנית ביותר" - -#: admin/includes/notice-update.php:7 -msgid "Run the updater" -msgstr "הפעל את המעדכן" - -#: admin/includes/notice-update.php:12 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"מומלץ מאוד לגבות את מסד הנתונים שלך לפני שתמשיך. האם אתה בטוח שברצונך להפעיל " -"את המעדכן עכשיו?" - -#: admin/includes/updates/woocommerce-update-2.0.php:50 -#: admin/woocommerce-admin-init.php:895 -msgctxt "slug" -msgid "product-category" -msgstr "product-category" - -#: admin/includes/updates/woocommerce-update-2.0.php:51 -#: admin/woocommerce-admin-init.php:908 -msgctxt "slug" -msgid "product-tag" -msgstr "product-tag" - -#: admin/includes/updates/woocommerce-update-2.0.php:59 -msgctxt "slug" -msgid "product" -msgstr "product" - -#: admin/includes/updates/woocommerce-update-2.0.php:180 -#: admin/woocommerce-admin-install.php:204 -msgctxt "page_slug" -msgid "lost-password" -msgstr "lost-password" - -#: admin/includes/updates/woocommerce-update-2.0.php:180 -#: admin/woocommerce-admin-install.php:204 -#: admin/woocommerce-admin-status.php:309 -msgid "Lost Password" -msgstr "שכחתי את הסיסמה" - -#: admin/includes/welcome.php:33 -msgid "Welcome to WooCommerce" -msgstr "ברוכים הבאים לWooCommerce" - -#: admin/includes/welcome.php:128 -msgid "Welcome to WooCommerce %s" -msgstr "ברוכים הבאים לWooCommerce %s" - -#: admin/includes/welcome.php:133 -msgid "Thanks, all done!" -msgstr "תודה, הכל נעשה!" - -#: admin/includes/welcome.php:135 -msgid "Thank you for updating to the latest version!" -msgstr "תודה לך על עדכון לגרסה העדכנית ביותר!" - -#: admin/includes/welcome.php:137 -msgid "Thanks for installing!" -msgstr "תודה על התקנה!" - -#: admin/includes/welcome.php:139 -msgid "" -"%s WooCommerce %s is more powerful, stable, and secure than ever before. We " -"hope you enjoy it." -msgstr "" -"%s WooCommerce %s היא יותר חזקה, יציבה ומאובטחת מאי פעם. אנו מקווים שאתה " -"תהנה ממנה." - -#: admin/includes/welcome.php:143 -msgid "Version %s" -msgstr "גרסה %s" - -#: admin/includes/welcome.php:146 admin/woocommerce-admin-content.php:41 -#: admin/woocommerce-admin-init.php:86 admin/woocommerce-admin-status.php:252 -msgid "Settings" -msgstr "הגדרות" - -#: admin/includes/welcome.php:147 -msgid "Docs" -msgstr "תיעוד" - -#: admin/includes/welcome.php:154 -msgid "What's New" -msgstr "מה חדש" - -#: admin/includes/welcome.php:156 -msgid "Credits" -msgstr "קרדיטים" - -#: admin/includes/welcome.php:179 -msgid "Security in mind" -msgstr "לוקחים בחשבון אבטחה" - -#: admin/includes/welcome.php:183 -msgid "Sucuri Safe Plugin" -msgstr "תוסף אבטחה Sucuri" - -#: admin/includes/welcome.php:184 -msgid "" -"You will be happy to learn that WooCommerce has been audited and certified " -"by the Sucuri Security team. Whilst there is not much to be seen visually to " -"understand the amount of work that went into this audit, rest assured that " -"your website is powered by one of the most powerful and stable eCommerce " -"plugins available." -msgstr "" -"אתה תהיה שמח לשמוע שמערכת WooCommerce כבר מבוקרת ומאושרת על ידי צוות האבטחה " -"Sucuri. בעוד שאין הרבה מה לראות ויזואלית אפשר להבין את כמות העבודה שהושקעה " -"בביקורת, אהיה בטוח כי האתר שלך מופעל על ידי אחד מתוספי החנות האינטרנטית " -"החזקים והיציבים ביותר." - -#: admin/includes/welcome.php:187 -msgid "A Smoother Admin Experience" -msgstr "חוויית ניהול קלה יותר" - -#: admin/includes/welcome.php:193 -msgid "New Product Panel" -msgstr "לוח מוצר חדש" - -#: admin/includes/welcome.php:194 -msgid "" -"We have revised the product data panel making it cleaner, more streamlined, " -"and more logical. Adding products is a breeze!" -msgstr "" -"ערכנו את לוח פרטי המוצרים והפכנו אותו לנקי יותר, יעיל יותר, והגיוני יותר. " -"הוספת מוצרים היא קלה יותר מאי פעם!" - -#: admin/includes/welcome.php:199 -msgid "Nicer Order Screens" -msgstr "מסכי הזמנה נחמדים יותר" - -#: admin/includes/welcome.php:200 -msgid "" -"Order pages have had a cleanup, with a more easily scannable interface. We " -"particularly like the new status icons!" -msgstr "" -"דפי ההזמנה עברו ניקוי, עם ממשק שניתן לסרוק בקלות יותר. אנחנו אוהבים במיוחד " -"את סמלי הסטטוס החדשים!" - -#: admin/includes/welcome.php:205 -msgid "Multi-Download Support" -msgstr "תמיכה בריבוי הורדות" - -#: admin/includes/welcome.php:206 -msgid "" -"Products can have multiple downloadable files - purchasers will get access " -"to all the files added." -msgstr "" -"מוצרים יכולים להכיל קבצים מרובים להורדה - רוכשים יקבלו גישה לכל הקבצים " -"שנוספו." - -#: admin/includes/welcome.php:211 -msgid "Less Taxing Taxes" -msgstr "פחות מסים מפרכים" - -#: admin/includes/welcome.php:217 -msgid "New Tax Input Panel" -msgstr "לוח קלט מס חדש" - -#: admin/includes/welcome.php:218 -msgid "" -"The tax input pages have been streamlined to make inputting taxes simpler - " -"adding multiple taxes for a single jurisdiction is now much easier using the " -"priority system. There is also CSV import/export support." -msgstr "" -"עמודי הזנת המיסים הפכו לפשוטים יותר - פעולת הוספת מסים מרובים לאזור שיפוט " -"יחיד היא עכשיו הרבה יותר קלה לשימוש באמצעות מערכת ההעדפות. יש גם תמיכת ביבוא " -"ויצוא באמצעות קובץ CSV." - -#: admin/includes/welcome.php:222 -msgid "Improved Tax Options" -msgstr "אפשרויות המסים השתפרו" - -#: admin/includes/welcome.php:223 -msgid "" -"As requested by some users, we now support taxing the billing address " -"instead of shipping (optional), and we allow you to choose which tax class " -"applies to shipping." -msgstr "" -"כפי שהתבקשנו על ידי מספר משתמשים, אנו תומכים כעת במיסוי כתובת החיוב במקום " -"כתובת משלוח (אופציונלי), ואנו מאפשרים לך לבחור אילו שיעורי מס חלים על המשלוח." - -#: admin/includes/welcome.php:228 -msgid "Product Listing Improvements Customers Will Love" -msgstr "שיפורים בתצוגת המוצרים שלקוחות יאהבו" - -#: admin/includes/welcome.php:234 -msgid "New Sorting Options" -msgstr "אפשרויות מיון חדשות" - -#: admin/includes/welcome.php:235 -msgid "Customers can now sort products by popularity and ratings." -msgstr "לקוחות יכולים כעת למיין מוצרים לפי פופולריות ודירוג." - -#: admin/includes/welcome.php:240 -msgid "Better Pagination and Result Counts" -msgstr "ספירת תוצאות ועימוד טוב יותר." - -#: admin/includes/welcome.php:241 -msgid "" -"Numbered pagination has been added to core, and we show the number of " -"results found above the listings." -msgstr "" -"עימוד ממוספר נוסף לליבה, ואנחנו מציגים את מספר התוצאות שנמצאו מעל לרישומים." - -#: admin/includes/welcome.php:246 -msgid "Inline Star Rating Display" -msgstr "תצוגת דירוג כוכבים מוטבעים" - -#: admin/includes/welcome.php:247 -msgid "" -"We have added star ratings to the catalog which are pulled from reviews." -msgstr "" -"אנחנו הוספנו דירוגי כוכבים לקטלוג אשר אנחנו מושכים מחוות הדעת של המשתמשים." - -#: admin/includes/welcome.php:255 -msgid "Under the Hood" -msgstr "מתחת למכסה המנוע" - -#: admin/includes/welcome.php:259 -msgid "New product classes" -msgstr "מחלקות מוצרים חדשות" - -#: admin/includes/welcome.php:260 -msgid "" -"The product classes have been rewritten and are now factory based. Much more " -"extendable, and easier to query products using the new get_product() function." -msgstr "" -"מחלקות המוצרים שוכתבו וכעת מבוססים מחלקת מפעל. הרבה יותר קל להרחבה, וקל יותר " -"למצוא מוצרים באמצעות הפונקצייה החדשה get_product()." - -#: admin/includes/welcome.php:264 -msgid "Capability overhaul" -msgstr "שיפוץ היכולת" - -#: admin/includes/welcome.php:265 -msgid "" -"More granular capabilities for admin/shop manager roles covering products, " -"orders and coupons." -msgstr "" -"יכולות יותר פרטניות לתפקידי מנהל / תפקידי ניהול מוצרי החנות, הזמנות וקופונים." - -#: admin/includes/welcome.php:269 -msgid "API Improvements" -msgstr "שיפורי API" - -#: admin/includes/welcome.php:270 -msgid "" -"WC-API now has real endpoints, and we've optimised the gateways " -"API significantly by only loading gateways when needed." -msgstr "" -" WC-API עכשיו יש נקודות קצה אמיתיות, וייעלנו את שערי ה API " -"באופן משמעותי על ידי טעינת שערים רק בעת צורך." - -#: admin/includes/welcome.php:276 -msgid "Cache-friendly cart widgets" -msgstr "ווידג'טים ידידותיים לזכרון המטמון" - -#: admin/includes/welcome.php:277 -msgid "" -"Cart widgets and other "fragments" are now pulled in via AJAX - " -"this works wonders with static page caching." -msgstr "" -"ווידג'טי העגלה ושאר "החלקים הקטנים" כעת נטענים באמצעות AJAX - זה " -"עובד פלאים בעמודים סטטיים שנטענים מזכרון המטמון." - -#: admin/includes/welcome.php:281 -msgid "Session handling" -msgstr "טיפול בסשן" - -#: admin/includes/welcome.php:282 -msgid "" -"PHP SESSIONS have been a problem for many users in the past, so we've " -"developed our own handler using cookies and options to make these more " -"reliable." -msgstr "" -"סשני PHP היו בעיה עבור משתמשים רבים בעבר, ולכן פתחנו מטפל משלנו באמצעות " -"עוגיות והפכנו את זה ליותר אמין." - -#: admin/includes/welcome.php:286 -msgid "Retina Ready" -msgstr "מתאים למסכני רטינה" - -#: admin/includes/welcome.php:287 -msgid "All graphics within WC have been optimised for HiDPI displays." -msgstr "כל הגרפיקה בתוך המערכת ייועלו עבור צגי HiDPI." - -#: admin/includes/welcome.php:294 -msgid "Better stock handling" -msgstr "טיפול במלאי בצורה טובה יותר" - -#: admin/includes/welcome.php:295 -msgid "" -"We have added an option to hold stock for unpaid orders (defaults to " -"60mins). When this time limit is reached, and the order is not paid for, " -"stock is released and the order is cancelled." -msgstr "" -"אנחנו הוספנו אפשרות להחזיק מלאי עבור הזמנות שלא שולמו (ברירת מחדל הוא " -"60mins). כאשר מגבלת זמן זו מגיעה, וההזמנה לא שולמה, המלאי משתחרר וההזמנה " -"מבוטלת." - -#: admin/includes/welcome.php:299 -msgid "Improved Line-item storage" -msgstr "שמירת פריטי הזמנה משופרת" - -#: admin/includes/welcome.php:300 -msgid "" -"We have changed how order items get stored making them easier (and faster) " -"to access for reporting. Order items are no longer serialised within an " -"order - they are stored within their own table." -msgstr "" -"שינינו את הצורה שבה פריטי ההזמנה נשמרים והפכנו את זה לקל יותר (ומהיר יותר) " -"לגישה וסקירה. פריטי ההזמנה כבר לא נשמרים מקודדים בתא בטבלת ההזמנות - הם " -"מאוחסנים בתוך טבלה משלהם." - -#: admin/includes/welcome.php:304 -msgid "Autoload" -msgstr "Autoload" - -#: admin/includes/welcome.php:305 -msgid "" -"We have setup autoloading for classes - this has dramatically reduced memory " -"usage in 2.0." -msgstr "" -"התקנו מערך טעינה אוטומתית למחלקות - וזה צמצם באופן דרמטי את השימוש בזיכרון " -"בגרסה 2.0." - -#: admin/includes/welcome.php:312 -msgid "Go to WooCommerce Settings" -msgstr "עבור להגדרות" - -#: admin/includes/welcome.php:330 -msgid "" -"WooCommerce is developed and maintained by a worldwide team of passionate " -"individuals and backed by an awesome developer community. Want to see your " -"name? Contribute to WooCommerce." -msgstr "" -"WooCommerce מפותח ומתוחזק על ידי צוות עולמי של אנשים נלהבים ומגובה על ידי " -"קהילת מפתחים מדהימה. רוצה לראות את השם שלך? לתרום ל WooCommerce ." - -#: admin/includes/welcome.php:356 -msgid "View %s" -msgstr "צפייה %s" - -#: admin/post-types/product.php:31 -msgid "Make a duplicate from this product" -msgstr "לשכפל מוצר זה" - -#: admin/post-types/product.php:32 -msgid "Duplicate" -msgstr "שכפל" - -#: admin/post-types/product.php:61 -msgid "Copy to a new draft" -msgstr "העתק לטיוטה חדשה" - -#: admin/post-types/product.php:86 admin/woocommerce-admin-taxonomies.php:297 -msgid "Image" -msgstr "תמונה" - -#: admin/post-types/product.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:372 -#: admin/post-types/writepanels/writepanel-product_data.php:451 -#: admin/woocommerce-admin-attributes.php:232 -#: admin/woocommerce-admin-attributes.php:268 -#: admin/woocommerce-admin-attributes.php:306 -#: admin/woocommerce-admin-attributes.php:329 -#: admin/woocommerce-admin-attributes.php:373 -#: admin/woocommerce-admin-attributes.php:398 -#: admin/woocommerce-admin-init.php:450 -msgid "Name" -msgstr "שם" - -#: admin/post-types/product.php:91 admin/post-types/product.php:557 -#: admin/post-types/writepanels/variation-admin-html.php:46 -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#: admin/woocommerce-admin-reports.php:2083 -#: admin/woocommerce-admin-reports.php:2119 -msgid "SKU" -msgstr "מק"ט" - -#: admin/post-types/product.php:94 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:83 -#: admin/woocommerce-admin-content.php:63 -#: admin/woocommerce-admin-reports.php:99 -msgid "Stock" -msgstr "מלאי" - -#: admin/post-types/product.php:96 admin/post-types/product.php:568 -#: admin/post-types/product.php:787 admin/woocommerce-admin-functions.php:196 -msgid "Price" -msgstr "מחיר" - -#: admin/post-types/product.php:98 -msgid "Categories" -msgstr "קטגוריות" - -#: admin/post-types/product.php:99 -msgid "Tags" -msgstr "תגיות" - -#: admin/post-types/product.php:100 admin/post-types/product.php:632 -#: admin/post-types/product.php:904 -#: admin/post-types/writepanels/writepanel-product_data.php:1040 -#: admin/woocommerce-admin-init.php:463 -msgid "Featured" -msgstr "מועדף" - -#: admin/post-types/product.php:101 admin/woocommerce-admin-attributes.php:250 -#: admin/woocommerce-admin-attributes.php:308 -#: admin/woocommerce-admin-attributes.php:385 -msgid "Type" -msgstr "סוג" - -#: admin/post-types/product.php:102 admin/post-types/shop_order.php:50 -msgid "Date" -msgstr "תאריך" - -#: admin/post-types/product.php:151 -msgid "Edit this item" -msgstr "ערוך פריט זה" - -#: admin/post-types/product.php:151 -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#: admin/post-types/writepanels/writepanel-order_data.php:387 -#: admin/post-types/writepanels/writepanel-product_data.php:1043 -#: admin/woocommerce-admin-attributes.php:322 -msgid "Edit" -msgstr "עריכה" - -#: admin/post-types/product.php:152 -msgid "Edit this item inline" -msgstr "לערוך את הפריט בעמוד הנוכחי" - -#: admin/post-types/product.php:152 -msgid "Quick Edit" -msgstr "עריכה מהירה" - -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore this item from the Trash" -msgstr "שחזור פריט זה מהאשפה" - -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore" -msgstr "שחזר" - -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Move this item to the Trash" -msgstr "הזזת פריט זה לאשפה" - -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Trash" -msgstr "אשפה" - -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -msgid "Delete this item permanently" -msgstr "מחק פריט זה לצמיתות" - -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -#: admin/post-types/writepanels/writepanel-order_data.php:463 -msgid "Delete Permanently" -msgstr "למחוק לצמיתות" - -#: admin/post-types/product.php:165 -msgid "Preview “%s”" -msgstr "תצוגה מקדימה של “%s”" - -#: admin/post-types/product.php:165 -msgid "Preview" -msgstr "תצוגה מקדימה" - -#: admin/post-types/product.php:167 -msgid "View “%s”" -msgstr "הצג View “%s”" - -#: admin/post-types/product.php:167 admin/post-types/shop_order.php:171 -msgid "View" -msgstr "צפייה" - -#: admin/post-types/product.php:214 -msgid "Grouped" -msgstr "בקבוצה" - -#: admin/post-types/product.php:216 -msgid "External/Affiliate" -msgstr "מוצר אפילייט/חיצוני" - -#: admin/post-types/product.php:220 admin/post-types/product.php:407 -#: admin/post-types/writepanels/variation-admin-html.php:168 -#: admin/post-types/writepanels/writepanel-product_data.php:52 -msgid "Virtual" -msgstr "וירטואלי" - -#: admin/post-types/product.php:222 admin/post-types/product.php:403 -#: admin/post-types/writepanels/variation-admin-html.php:166 -#: admin/post-types/writepanels/writepanel-product_data.php:58 -msgid "Downloadable" -msgstr "להורדה" - -#: admin/post-types/product.php:224 -msgid "Simple" -msgstr "מוצר רגיל" - -#: admin/post-types/product.php:228 admin/post-types/product.php:387 -msgid "Variable" -msgstr "עם משתנים" - -#: admin/post-types/product.php:251 -msgid "Toggle featured" -msgstr "הפעל/כבה מוצר מועדף" - -#: admin/post-types/product.php:253 -msgid "yes" -msgstr "כן" - -#: admin/post-types/product.php:255 -msgid "no" -msgstr "לא" - -#: admin/post-types/product.php:262 admin/post-types/product.php:641 -#: admin/post-types/product.php:928 -#: admin/post-types/writepanels/writepanel-product_data.php:231 -msgid "In stock" -msgstr "במלאי" - -#: admin/post-types/product.php:264 admin/post-types/product.php:642 -#: admin/post-types/product.php:929 -#: admin/post-types/writepanels/writepanel-product_data.php:232 -#: admin/woocommerce-admin-reports.php:2103 -msgid "Out of stock" -msgstr "מחוץ למלאי" - -#: admin/post-types/product.php:373 -msgid "Show all product types" -msgstr "הצג את כל סוגי המוצרים" - -#: admin/post-types/product.php:381 -#: admin/post-types/writepanels/writepanel-product_data.php:39 -msgid "Grouped product" -msgstr "קבוצת מוצרים" - -#: admin/post-types/product.php:383 -#: admin/post-types/writepanels/writepanel-product_data.php:40 -msgid "External/Affiliate product" -msgstr "מוצר אפילייט/חיצוני" - -#: admin/post-types/product.php:385 -#: admin/post-types/writepanels/writepanel-product_data.php:38 -msgid "Simple product" -msgstr "מוצר רגיל" - -#: admin/post-types/product.php:399 -msgid "Show all sub-types" -msgstr "הצג את כל תתי הסוגים" - -#: admin/post-types/product.php:520 -msgid "[%s with SKU of %s]" -msgstr "[%s עם מק"ט %s]" - -#: admin/post-types/product.php:526 -msgid "[%s with ID of %d]" -msgstr "[ %s עם מזהה %d ]" - -#: admin/post-types/product.php:552 admin/post-types/product.php:783 -#: admin/post-types/writepanels/writepanels-init.php:46 -#: admin/settings/settings-init.php:518 -msgid "Product Data" -msgstr "פרטי המוצר" - -#: admin/post-types/product.php:570 -msgid "Regular price" -msgstr "מחיר רגיל" - -#: admin/post-types/product.php:575 admin/post-types/product.php:811 -msgid "Sale" -msgstr "מבצע" - -#: admin/post-types/product.php:577 -msgid "Sale price" -msgstr "מחיר מבצע" - -#: admin/post-types/product.php:588 admin/post-types/product.php:837 -#: admin/post-types/writepanels/variation-admin-html.php:90 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:273 -msgid "Weight" -msgstr "משקל" - -#: admin/post-types/product.php:599 admin/post-types/product.php:861 -msgid "L/W/H" -msgstr "אורך / רוחב / גובה" - -#: admin/post-types/product.php:601 admin/post-types/product.php:877 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:85 -#: admin/post-types/writepanels/writepanel-product_data.php:286 -msgid "Length" -msgstr "אורך" - -#: admin/post-types/product.php:602 admin/post-types/product.php:878 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:86 -#: admin/post-types/writepanels/writepanel-product_data.php:287 -#: admin/woocommerce-admin-settings.php:795 -msgid "Width" -msgstr "רוחב" - -#: admin/post-types/product.php:603 admin/post-types/product.php:879 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:87 -#: admin/post-types/writepanels/writepanel-product_data.php:288 -#: admin/woocommerce-admin-settings.php:797 -msgid "Height" -msgstr "גובה" - -#: admin/post-types/product.php:613 admin/post-types/product.php:885 -msgid "Visibility" -msgstr "תצוגה" - -#: admin/post-types/product.php:618 admin/post-types/product.php:891 -msgid "Catalog & search" -msgstr "קטלוג וחיפוש" - -#: admin/post-types/product.php:619 admin/post-types/product.php:892 -#: admin/post-types/writepanels/writepanel-product_data.php:1029 -#: admin/woocommerce-admin-content.php:46 -#: admin/woocommerce-admin-settings.php:181 -msgid "Catalog" -msgstr "קטלוג" - -#: admin/post-types/product.php:620 admin/post-types/product.php:893 -#: admin/post-types/writepanels/writepanel-product_data.php:1030 -msgid "Search" -msgstr "חיפוש" - -#: admin/post-types/product.php:621 admin/post-types/product.php:894 -#: admin/post-types/writepanels/writepanel-product_data.php:1031 -msgid "Hidden" -msgstr "הסתר" - -#: admin/post-types/product.php:636 admin/post-types/product.php:922 -msgid "In stock?" -msgstr "במלאי?" - -#: admin/post-types/product.php:657 admin/post-types/product.php:940 -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Manage stock?" -msgstr "ניהול המלאי?" - -#: admin/post-types/product.php:661 admin/post-types/product.php:959 -#: admin/post-types/product.php:975 -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "Stock Qty" -msgstr "כמות מלאי" - -#: admin/post-types/product.php:792 admin/post-types/product.php:816 -#: admin/post-types/product.php:842 admin/post-types/product.php:866 -#: admin/post-types/product.php:890 admin/post-types/product.php:909 -#: admin/post-types/product.php:927 admin/post-types/product.php:945 -#: admin/post-types/product.php:964 -msgid "— No Change —" -msgstr "- ללא שינוי -" - -#: admin/post-types/product.php:793 admin/post-types/product.php:817 -#: admin/post-types/product.php:843 admin/post-types/product.php:867 -#: admin/post-types/product.php:965 -msgid "Change to:" -msgstr "שנה ל:" - -#: admin/post-types/product.php:794 admin/post-types/product.php:818 -msgid "Increase by (fixed amount or %):" -msgstr "הגדל ב (סכום קבוע או אחוז):" - -#: admin/post-types/product.php:795 admin/post-types/product.php:819 -msgid "Decrease by (fixed amount or %):" -msgstr "הורד ב (סכום קבוע או אחוז):" - -#: admin/post-types/product.php:805 admin/post-types/product.php:830 -msgid "Enter price" -msgstr "הזן את המחיר" - -#: admin/post-types/product.php:820 -msgid "Decrease regular price by (fixed amount or %):" -msgstr "הורד מחיר קבוע ב (סכום קבוע או אחוז):" - -#: admin/post-types/product.php:910 admin/post-types/product.php:946 -#: admin/post-types/shop_order.php:190 admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:260 -msgid "Yes" -msgstr "כן" - -#: admin/post-types/product.php:911 admin/post-types/product.php:947 -#: admin/post-types/shop_order.php:192 admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:260 -msgid "No" -msgstr "לא" - -#: admin/post-types/product.php:1175 -msgid "Sort Products" -msgstr "סדר המוצרים" - -#: admin/post-types/product.php:1214 -msgid "Insert into product" -msgstr "הכנס לתוך המוצר" - -#: admin/post-types/product.php:1215 -msgid "Uploaded to this product" -msgstr "הועלה למוצר זה" - -#: admin/post-types/shop_coupon.php:25 -msgid "Code" -msgstr "קוד" - -#: admin/post-types/shop_coupon.php:26 -msgid "Coupon type" -msgstr "סוג קופון" - -#: admin/post-types/shop_coupon.php:27 -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Coupon amount" -msgstr "כמות קופונים" - -#: admin/post-types/shop_coupon.php:28 -msgid "Description" -msgstr "תיאור" - -#: admin/post-types/shop_coupon.php:29 -msgid "Product IDs" -msgstr "מזהי מוצר" - -#: admin/post-types/shop_coupon.php:30 -msgid "Usage / Limit" -msgstr "שימוש / הגבלה" - -#: admin/post-types/shop_coupon.php:31 -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "Expiry date" -msgstr "תאריך תפוגה" - -#: admin/post-types/shop_coupon.php:56 -msgid "Edit coupon" -msgstr "ערוך קופון" - -#: admin/post-types/shop_coupon.php:114 -msgid "%s / %s" -msgstr "%s / %s" - -#: admin/post-types/shop_coupon.php:116 -msgid "%s / ∞" -msgstr "%s / ∞" - -#: admin/post-types/shop_coupon.php:149 admin/post-types/shop_order.php:282 -msgid "Show all statuses" -msgstr "הצג את המצב של כל כולם" - -#: admin/post-types/shop_order.php:43 -#: admin/settings/settings-payment-gateways.php:29 -#: admin/settings/settings-shipping-methods.php:31 -msgid "Status" -msgstr "מצב" - -#: admin/post-types/shop_order.php:44 -msgid "Order" -msgstr "הזמנה" - -#: admin/post-types/shop_order.php:45 -msgid "Billing" -msgstr "חיוב" - -#: admin/post-types/shop_order.php:46 -#: admin/post-types/writepanels/writepanel-order_data.php:536 -#: admin/post-types/writepanels/writepanel-product_data.php:81 -#: admin/settings/settings-tax-rates.php:52 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-content.php:49 -#: admin/woocommerce-admin-settings.php:185 -msgid "Shipping" -msgstr "משלוח" - -#: admin/post-types/shop_order.php:47 -msgid "Order Total" -msgstr "סך הזמנה" - -#: admin/post-types/shop_order.php:48 -#: admin/post-types/writepanels/writepanels-init.php:71 -msgid "Order Notes" -msgstr "הערות הזמנה" - -#: admin/post-types/shop_order.php:49 -msgid "Customer Notes" -msgstr "הערות לקוח" - -#: admin/post-types/shop_order.php:51 -#: admin/post-types/writepanels/writepanel-order_data.php:386 -#: admin/post-types/writepanels/writepanel-order_data.php:433 -msgid "Actions" -msgstr "פעולות" - -#: admin/post-types/shop_order.php:95 -#: admin/post-types/writepanels/writepanel-order_data.php:93 -msgid "Guest" -msgstr "אורח" - -#: admin/post-types/shop_order.php:98 -msgid "Order %s" -msgstr "הזמנה %s" - -#: admin/post-types/shop_order.php:98 -msgid "made by" -msgstr "מאת" - -#: admin/post-types/shop_order.php:101 -msgid "Email:" -msgstr "אימייל:" - -#: admin/post-types/shop_order.php:104 -msgid "Tel:" -msgstr "טלפון:" - -#: admin/post-types/shop_order.php:114 admin/post-types/shop_order.php:123 -msgid "Via" -msgstr "באמצעות" - -#: admin/post-types/shop_order.php:131 -msgid "Unpublished" -msgstr "לא פורסם" - -#: admin/post-types/shop_order.php:133 -msgid "Y/m/d g:i:s A" -msgstr "Y/m/d g:i:s A" - -#: admin/post-types/shop_order.php:139 -msgid "%s ago" -msgstr "לפני %s" - -#: admin/post-types/shop_order.php:141 -msgid "Y/m/d" -msgstr "Y/m/d" - -#: admin/post-types/shop_order.php:158 -#: admin/woocommerce-admin-dashboard.php:176 -msgid "Processing" -msgstr "בטיפול" - -#: admin/post-types/shop_order.php:165 -msgid "Complete" -msgstr "הושלם" - -#: admin/post-types/shop_order.php:301 admin/post-types/shop_order.php:326 -msgid "Show all customers" -msgstr "הצג את כל הלקוחות" - -#: admin/post-types/writepanels/order-download-permission-html.php:6 -msgid "Revoke Access" -msgstr "בטל גישה" - -#: admin/post-types/writepanels/order-download-permission-html.php:7 -#: admin/post-types/writepanels/variation-admin-html.php:7 -#: admin/post-types/writepanels/writepanel-product_data.php:365 -#: admin/post-types/writepanels/writepanel-product_data.php:444 -#: admin/woocommerce-admin-init.php:452 -msgid "Click to toggle" -msgstr "לחץ כדי להפעיל/לכבות" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -msgid "File %d: %s" -msgstr "קובץ %d: %s" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "הורד פעם %s" -msgstr[1] "הורד %s פעמים" - -#: admin/post-types/writepanels/order-download-permission-html.php:16 -msgid "Downloads Remaining" -msgstr "הורדות שנותרו" - -#: admin/post-types/writepanels/order-download-permission-html.php:19 -#: admin/post-types/writepanels/variation-admin-html.php:143 -#: admin/post-types/writepanels/variation-admin-html.php:151 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Unlimited" -msgstr "ללא הגבלה" - -#: admin/post-types/writepanels/order-download-permission-html.php:22 -msgid "Access Expires" -msgstr "גישה פגה תוקף" - -#: admin/post-types/writepanels/order-download-permission-html.php:23 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Never" -msgstr "אף פעם" - -#: admin/post-types/writepanels/order-fee-html.php:10 -msgid "Fee Name" -msgstr "שם עמלה" - -#: admin/post-types/writepanels/order-fee-html.php:17 -#: admin/post-types/writepanels/order-item-html.php:84 -msgid "Tax class" -msgstr "סוג מס" - -#: admin/post-types/writepanels/order-fee-html.php:19 -#: admin/post-types/writepanels/order-tax-html.php:8 -#: admin/post-types/writepanels/writepanel-order_data.php:558 -#: admin/post-types/writepanels/writepanel-order_data.php:663 -#: admin/woocommerce-admin-reports.php:1642 -#: admin/woocommerce-admin-reports.php:2655 -#: admin/woocommerce-admin-reports.php:2664 -#: admin/woocommerce-admin-users.php:90 admin/woocommerce-admin-users.php:112 -msgid "N/A" -msgstr "אין מידע" - -#: admin/post-types/writepanels/order-fee-html.php:20 -#: admin/post-types/writepanels/writepanel-product_data.php:179 -msgid "Taxable" -msgstr "טעון מס" - -#: admin/post-types/writepanels/order-fee-html.php:25 -#: admin/post-types/writepanels/order-item-html.php:91 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:54 -#: admin/post-types/writepanels/writepanel-product_data.php:186 -#: admin/settings/settings-init.php:982 -#: admin/settings/settings-tax-rates.php:29 -#: admin/woocommerce-admin-settings.php:226 -msgid "Standard" -msgstr "סטנדרטי" - -#: admin/post-types/writepanels/order-fee-html.php:43 -#: admin/post-types/writepanels/order-item-html.php:110 -#: admin/woocommerce-admin-reports.php:1546 -#: admin/woocommerce-admin-reports.php:1599 -#: admin/woocommerce-admin-reports.php:2370 -#: admin/woocommerce-admin-reports.php:2539 -#: admin/woocommerce-admin-reports.php:2617 -msgid "Total" -msgstr "סה"כ" - -#: admin/post-types/writepanels/order-item-html.php:9 -msgid "Product ID:" -msgstr "מזהה המוצר:" - -#: admin/post-types/writepanels/order-item-html.php:12 -msgid "Variation ID:" -msgstr "מזהה וריאציה:" - -#: admin/post-types/writepanels/order-item-html.php:15 -msgid "Product SKU:" -msgstr "מק"ט מוצר:" - -#: admin/post-types/writepanels/order-item-html.php:33 -msgid "Add meta" -msgstr "הוסף מטא" - -#: admin/post-types/writepanels/order-item-html.php:112 -msgid "Subtotal" -msgstr "סיכום ביניים" - -#: admin/post-types/writepanels/order-tax-html.php:6 -msgid "Tax Rate:" -msgstr "תעריף מס:" - -#: admin/post-types/writepanels/order-tax-html.php:16 -#: admin/post-types/writepanels/writepanel-order_data.php:627 -msgid "Sales Tax:" -msgstr "מס מחירות:" - -#: admin/post-types/writepanels/order-tax-html.php:20 -#: admin/post-types/writepanels/writepanel-order_data.php:635 -msgid "Shipping Tax:" -msgstr "מס משלוחים:" - -#: admin/post-types/writepanels/variation-admin-html.php:6 -#: admin/post-types/writepanels/writepanel-product_data.php:364 -#: admin/post-types/writepanels/writepanel-product_data.php:443 -#: admin/woocommerce-admin-init.php:451 -msgid "Remove" -msgstr "הסר" - -#: admin/post-types/writepanels/variation-admin-html.php:20 -msgid "Any" -msgstr "כל" - -#: admin/post-types/writepanels/variation-admin-html.php:46 -msgid "" -"Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "" -"הזן מק"ט עבור וריאציה זאת או השאר ריק כדי להשתמש במק"ט המוצר." - -#: admin/post-types/writepanels/variation-admin-html.php:57 -msgid "Stock Qty:" -msgstr "כמות מלאי:" - -#: admin/post-types/writepanels/variation-admin-html.php:57 -msgid "" -"Enter a quantity to enable stock management at variation level, or leave " -"blank to use the parent product's options." -msgstr "" -"הזן כמות כדי לאפשר ניהול מלאי ברמת הוריאציה, או השאר ריק כדי להשתמש " -"באפשרויות של מוצר ההורה." - -#: admin/post-types/writepanels/variation-admin-html.php:66 -msgid "Regular Price:" -msgstr "מחיר רגיל:" - -#: admin/post-types/writepanels/variation-admin-html.php:67 -msgid "Variation price (required)" -msgstr "מחיר הוריאציה (חובה)" - -#: admin/post-types/writepanels/variation-admin-html.php:70 -msgid "Sale Price:" -msgstr "מחיר מבצע:" - -#: admin/post-types/writepanels/variation-admin-html.php:70 -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Schedule" -msgstr "תזמון" - -#: admin/post-types/writepanels/variation-admin-html.php:70 -msgid "Cancel schedule" -msgstr "ביטול תזמון" - -#: admin/post-types/writepanels/variation-admin-html.php:77 -msgid "Sale start date:" -msgstr "תאריך התחלת המבצע:" - -#: admin/post-types/writepanels/variation-admin-html.php:78 -#: admin/post-types/writepanels/writepanel-product_data.php:136 -msgctxt "placeholder" -msgid "From…" -msgstr "מאת…" - -#: admin/post-types/writepanels/variation-admin-html.php:81 -msgid "Sale end date:" -msgstr "תאריך סיום מבצע:" - -#: admin/post-types/writepanels/variation-admin-html.php:82 -#: admin/post-types/writepanels/writepanel-product_data.php:137 -msgctxt "placeholder" -msgid "To…" -msgstr "נמען…" - -#: admin/post-types/writepanels/variation-admin-html.php:90 -msgid "" -"Enter a weight for this variation or leave blank to use the parent product " -"weight." -msgstr "" -"הזן משקל עבור הוריאציה הזאת או השאר ריק אם ברצונך להשתמש לפי המשקל של מוצר " -"האב." - -#: admin/post-types/writepanels/variation-admin-html.php:98 -msgid "Dimensions (L×W×H)" -msgstr "מידות (משקל/גובה/רוחב)" - -#: admin/post-types/writepanels/variation-admin-html.php:109 -msgid "Shipping class:" -msgstr "סוג משלוח:" - -#: admin/post-types/writepanels/variation-admin-html.php:113 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:53 -msgid "Same as parent" -msgstr "כמו האב" - -#: admin/post-types/writepanels/variation-admin-html.php:124 -msgid "Tax class:" -msgstr "סוג מס:" - -#: admin/post-types/writepanels/variation-admin-html.php:135 -msgid "File paths:" -msgstr "נתיבי קובץ:" - -#: admin/post-types/writepanels/variation-admin-html.php:135 -msgid "" -"Enter one or more File Paths, one per line, to make this variation a " -"downloadable product, or leave blank." -msgstr "" -"הזן את נתיב קובץ אחד או יותר, אחד בכל שורה, שיהפוך את הוריאציה הזאת למוצר " -""קובץ להורדה", או השאר ריק." - -#: admin/post-types/writepanels/variation-admin-html.php:136 -#: admin/post-types/writepanels/writepanel-product_data.php:153 -msgid "File paths/URLs, one per line" -msgstr "נתיבי קבצים / כתובות, אחת בכל שורה" - -#: admin/post-types/writepanels/variation-admin-html.php:137 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Choose a file" -msgstr "בחר קובץ" - -#: admin/post-types/writepanels/variation-admin-html.php:137 -msgid "Upload" -msgstr "העלאה" - -#: admin/post-types/writepanels/variation-admin-html.php:137 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Insert file URL" -msgstr "הכנס כתובת קובץ" - -#: admin/post-types/writepanels/variation-admin-html.php:142 -msgid "Download Limit:" -msgstr "הגבלת הורדות:" - -#: admin/post-types/writepanels/variation-admin-html.php:142 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Leave blank for unlimited re-downloads." -msgstr "להשאיר ריק בשביל לא להגביל הורדות." - -#: admin/post-types/writepanels/variation-admin-html.php:150 -msgid "Download Expiry:" -msgstr "פקיעת הורדה:" - -#: admin/post-types/writepanels/variation-admin-html.php:150 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "" -"Enter the number of days before a download link expires, or leave blank." -msgstr "הזן את מספר הימים לפני שהקישור להורדה פג תוקף, או השאר ריק." - -#: admin/post-types/writepanels/variation-admin-html.php:164 -msgid "Enabled" -msgstr "מאופשר" - -#: admin/post-types/writepanels/variation-admin-html.php:166 -msgid "" -"Enable this option if access is given to a downloadable file upon purchase " -"of a product" -msgstr "הפעל אפשרות זו, אם ניתנת גישה לקובץ להורדה בעת רכישת המוצר" - -#: admin/post-types/writepanels/variation-admin-html.php:168 -msgid "" -"Enable this option if a product is not shipped or there is no shipping cost" -msgstr "הפעל אפשרות זו אם מוצר לא בעל אפשרות משלוח או שאין עלות משלוח" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Coupon description" -msgstr "תיאור קופון" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Optionally enter a description for this coupon for your reference." -msgstr "באפשרותך להזין תיאור לקופון זה לעיונך." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:42 -msgid "Discount type" -msgstr "סוג הנחה" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Enter an amount or percentage e.g. 2.99 or 15%" -msgstr "הזן את הסכום או למשל אחוז לדוגמא 2.99 או 15%" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "Enable free shipping" -msgstr "הפעל משלוח חינם" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "" -"Check this box if the coupon grants free shipping. The free " -"shipping method must be enabled with the \"must use coupon\" setting " -"checked." -msgstr "" -"סמנו תיבה זו אם הקופון מעניק משלוח חינם. שיטת המשלוח חינם " -"חייב להיות מופעל יחד עם ההגדרה "חייב להשתמש בקופון"." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "Individual use" -msgstr "קופון יחיד" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "" -"Check this box if the coupon cannot be used in conjunction with other " -"coupons." -msgstr "סמן תיבה זו אם לא ניתן להשתמש בקופון בשילוב עם קופונים נוספים." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "Apply before tax" -msgstr "החל לפני מיסים" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "" -"Check this box if the coupon should be applied before calculating cart tax." -msgstr "סמן תיבה זו אם הקופון צריך להיות מיושם לפני חישוב המיסים לסל" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "Exclude sale items" -msgstr "אל תכלול פריטים במבצע" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "" -"Check this box if the coupon should not apply to items on sale. Per-item " -"coupons will only work if the item is not on sale. Per-cart coupons will " -"only work if there are no sale items in the cart." -msgstr "" -"סמנו תיבה זו אם הקופון לא יחול על פריטים במבצע. קופונים לפי פריט יפעלו רק אם " -"הפריט אינו במבצע. קופונים לכל עגלה יפעלו רק אם אין פריטים במבצע בעגלה." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "Minimum amount" -msgstr "כמות מינימאלית" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "No minimum" -msgstr "אין מינימום" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "" -"This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "שדה זה מאפשר לך לקבוע את סכום ביניים המינימלי הנדרש כדי להשתמש בקופון." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:74 -#: admin/woocommerce-admin-taxonomies.php:28 -#: admin/woocommerce-admin-taxonomies.php:122 -msgid "Products" -msgstr "מוצרים" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:75 -#: admin/post-types/writepanels/writepanel-order_data.php:400 -#: admin/post-types/writepanels/writepanel-product_data.php:504 -#: admin/post-types/writepanels/writepanel-product_data.php:521 -#: admin/woocommerce-admin-reports.php:1229 -msgid "Search for a product…" -msgstr "חפש מוצר…" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:89 -msgid "" -"Products which need to be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are discounted." -msgstr "" -"מוצרים אשר צריכים להיות בעגלה כדי להשתמש בקופון זה או, בשביל "הנחות " -"מוצר", בו מוצרים מוזלים." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:94 -msgid "Exclude products" -msgstr "לא כולל את המוצרים הבאים" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:95 -msgid "Search for a product…" -msgstr "חפש את המוצר…" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:109 -msgid "" -"Products which must not be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are not discounted." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:116 -msgid "Product categories" -msgstr "קטגוריות מוצרים" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:117 -msgid "Any category" -msgstr "כל קטגוריה" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:125 -msgid "" -"A product must be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will be discounted." -msgstr "" -"מוצר חייב להיות בקטגוריה זו עבור התלוש להישאר תקף או, לקבל "הנחות " -"מוצר", מוצרים בקטגוריות זו יהיו בהנחה." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:130 -msgid "Exclude categories" -msgstr "אל תכלול קטגוריות" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:131 -msgid "No categories" -msgstr "אין קטגוריות" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:139 -msgid "" -"Product must not be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will not be discounted." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "Customer emails" -msgstr "אימיילים של לקוחות" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "Any customer" -msgstr "כל לקוח" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "" -"Comma separate email addresses to restrict this coupon to specific billing " -"and user emails." -msgstr "" -"אימיילים מופרדים בפסיקים בשביל להגביל את הקופון לחיוב ספציפי והודעות " -"דוא"ל של משתמש." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "Usage limit" -msgstr "הגבלת שימוש" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "שימוש בלתי מוגבל" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "How many times this coupon can be used before it is void." -msgstr "כמה פעמים קופון זה יכול ליהיות משומש לפני שיהיה מבוטל." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgctxt "placeholder" -msgid "Never expire" -msgstr "לעולם לא יפוג תוקף" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "The date this coupon will expire, YYYY-MM-DD." -msgstr "תאריך שובר זה יפוג, YYYY-MM-DD ." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:195 -msgid "" -"Coupon code already exists - customers will use the latest coupon with this " -"code." -msgstr "קוד קופון כבר קיים - לקוחות ישתמשו בקופון האחרון עם הקוד הזה." - -#: admin/post-types/writepanels/writepanel-order_data.php:59 -msgid "Order Details" -msgstr "פרטי הזמנה" - -#: admin/post-types/writepanels/writepanel-order_data.php:62 -msgid "Order number" -msgstr "מספר הזמנה" - -#: admin/post-types/writepanels/writepanel-order_data.php:67 -msgid "Customer IP:" -msgstr "ה-IP של הלקוח:" - -#: admin/post-types/writepanels/writepanel-order_data.php:74 -msgid "General Details" -msgstr "פרטים כלליים" - -#: admin/post-types/writepanels/writepanel-order_data.php:76 -msgid "Order status:" -msgstr "סטטוסי הזמנות:" - -#: admin/post-types/writepanels/writepanel-order_data.php:86 -msgid "Order Date:" -msgstr "תאריך הזמנה:" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -msgid "h" -msgstr "h" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#: admin/settings/settings-init.php:577 -msgid "m" -msgstr "m" - -#: admin/post-types/writepanels/writepanel-order_data.php:91 -msgid "Customer:" -msgstr "לקוח:" - -#: admin/post-types/writepanels/writepanel-order_data.php:131 -msgid "Customer Note:" -msgstr "הערת לקוח:" - -#: admin/post-types/writepanels/writepanel-order_data.php:132 -msgid "Customer's notes about the order" -msgstr "הערות לקוח בקשר להזמנה" - -#: admin/post-types/writepanels/writepanel-order_data.php:140 -msgid "Billing Details" -msgstr "פרטי חיוב" - -#: admin/post-types/writepanels/writepanel-order_data.php:144 -#: admin/post-types/writepanels/writepanel-order_data.php:234 -msgid "First Name" -msgstr "שם פרטי" - -#: admin/post-types/writepanels/writepanel-order_data.php:148 -#: admin/post-types/writepanels/writepanel-order_data.php:238 -msgid "Last Name" -msgstr "שם משפחה" - -#: admin/post-types/writepanels/writepanel-order_data.php:152 -#: admin/post-types/writepanels/writepanel-order_data.php:242 -#: admin/woocommerce-admin-users.php:155 admin/woocommerce-admin-users.php:204 -msgid "Company" -msgstr "חברה" - -#: admin/post-types/writepanels/writepanel-order_data.php:156 -#: admin/post-types/writepanels/writepanel-order_data.php:246 -#: admin/woocommerce-admin-users.php:159 admin/woocommerce-admin-users.php:208 -msgid "Address 1" -msgstr "כתובת 1" - -#: admin/post-types/writepanels/writepanel-order_data.php:160 -#: admin/post-types/writepanels/writepanel-order_data.php:250 -#: admin/woocommerce-admin-users.php:163 admin/woocommerce-admin-users.php:212 -msgid "Address 2" -msgstr "כתובת 2" - -#: admin/post-types/writepanels/writepanel-order_data.php:164 -#: admin/post-types/writepanels/writepanel-order_data.php:254 -#: admin/settings/settings-tax-rates.php:42 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-users.php:167 admin/woocommerce-admin-users.php:216 -msgid "City" -msgstr "עיר" - -#: admin/post-types/writepanels/writepanel-order_data.php:168 -#: admin/post-types/writepanels/writepanel-order_data.php:258 -#: admin/woocommerce-admin-users.php:171 admin/woocommerce-admin-users.php:220 -msgid "Postcode" -msgstr "מיקוד" - -#: admin/post-types/writepanels/writepanel-order_data.php:172 -#: admin/post-types/writepanels/writepanel-order_data.php:262 -#: admin/woocommerce-admin-users.php:179 admin/woocommerce-admin-users.php:228 -msgid "Country" -msgstr "ארץ" - -#: admin/post-types/writepanels/writepanel-order_data.php:175 -#: admin/post-types/writepanels/writepanel-order_data.php:265 -msgid "Select a country…" -msgstr "בחר מדינה…" - -#: admin/post-types/writepanels/writepanel-order_data.php:178 -#: admin/post-types/writepanels/writepanel-order_data.php:268 -#: admin/woocommerce-admin-users.php:175 admin/woocommerce-admin-users.php:224 -msgid "State/County" -msgstr "מדינה / ארץ" - -#: admin/post-types/writepanels/writepanel-order_data.php:182 -#: admin/woocommerce-admin-users.php:187 -msgid "Email" -msgstr "אימייל" - -#: admin/post-types/writepanels/writepanel-order_data.php:185 -msgid "Phone" -msgstr "טלפון" - -#: admin/post-types/writepanels/writepanel-order_data.php:193 -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#: admin/post-types/writepanels/writepanel-order_data.php:277 -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "Address" -msgstr "כתובת" - -#: admin/post-types/writepanels/writepanel-order_data.php:195 -msgid "No billing address set." -msgstr "לא נקבעה כתובת לחיוב." - -#: admin/post-types/writepanels/writepanel-order_data.php:208 -msgid "Load billing address" -msgstr "טען כתובת חיוב" - -#: admin/post-types/writepanels/writepanel-order_data.php:230 -msgid "Shipping Details" -msgstr "פרטי משלוח" - -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "No shipping address set." -msgstr "לא הוגדרה כתובת משלוח." - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Load shipping address" -msgstr "טען כתובת משלוח" - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Copy from billing" -msgstr "העתק מחיוב" - -#: admin/post-types/writepanels/writepanel-order_data.php:339 -msgid "Item" -msgstr "פריט" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#: admin/post-types/writepanels/writepanel-product_data.php:191 -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Class" -msgstr "סוג מס" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -msgid "Tax class for the line item" -msgstr "סוג מס עבור כל פריט" - -#: admin/post-types/writepanels/writepanel-order_data.php:347 -msgid "Qty" -msgstr "כמות" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -msgid "Cost" -msgstr "מחיר" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -msgid "Line subtotals are before pre-tax discounts, totals are after." -msgstr "סכומי ביניים הם לפני הנחות לפני מס, סכומים הם לאחריהם." - -#: admin/post-types/writepanels/writepanel-order_data.php:352 -#: admin/settings/settings-tax-rates.php:387 -#: admin/settings/settings-tax-rates.php:466 -#: admin/woocommerce-admin-content.php:48 -#: admin/woocommerce-admin-settings.php:184 -msgid "Tax" -msgstr "מיסים" - -#: admin/post-types/writepanels/writepanel-order_data.php:388 -msgid "Delete Lines" -msgstr "מחק את השורות" - -#: admin/post-types/writepanels/writepanel-order_data.php:390 -msgid "Stock Actions" -msgstr "פעולות מלאי" - -#: admin/post-types/writepanels/writepanel-order_data.php:391 -msgid "Reduce Line Stock" -msgstr "להפחית מלאי שורה" - -#: admin/post-types/writepanels/writepanel-order_data.php:392 -msgid "Increase Line Stock" -msgstr "הגדל מלאי שורה" - -#: admin/post-types/writepanels/writepanel-order_data.php:396 -#: admin/post-types/writepanels/writepanel-order_data.php:456 -msgid "Apply" -msgstr "שמור" - -#: admin/post-types/writepanels/writepanel-order_data.php:402 -msgid "Add item(s)" -msgstr "הוסף פריט(ים)" - -#: admin/post-types/writepanels/writepanel-order_data.php:403 -msgid "Add fee" -msgstr "הוסף עמלה" - -#: admin/post-types/writepanels/writepanel-order_data.php:434 -msgid "Resend order emails" -msgstr "שלח שוב את מכתבי ההזמנה" - -#: admin/post-types/writepanels/writepanel-order_data.php:465 -msgid "Move to Trash" -msgstr "העבר לאשפה" - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save Order" -msgstr "שמירת הזמנה" - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save/update the order" -msgstr "שמור / עדכן הזמנה" - -#: admin/post-types/writepanels/writepanel-order_data.php:495 -msgid "Discounts" -msgstr "הנחות" - -#: admin/post-types/writepanels/writepanel-order_data.php:499 -msgid "Cart Discount:" -msgstr "הנחת עגלה:" - -#: admin/post-types/writepanels/writepanel-order_data.php:499 -msgid "Discounts before tax - calculated by comparing subtotals to totals." -msgstr "הנחות לפני מס - מחושב על ידי השוואת סכומי ביניים לסך הכך." - -#: admin/post-types/writepanels/writepanel-order_data.php:507 -msgid "Order Discount:" -msgstr "הנחת הזמנה:" - -#: admin/post-types/writepanels/writepanel-order_data.php:507 -msgid "Discounts after tax - user defined." -msgstr "הנחות לאחר מס - הגדרת משתמש." - -#: admin/post-types/writepanels/writepanel-order_data.php:540 -msgid "Label:" -msgstr "תווית:" - -#: admin/post-types/writepanels/writepanel-order_data.php:541 -msgid "The shipping title the customer sees" -msgstr "כותרת המשלוח שהלקוח רואה" - -#: admin/post-types/writepanels/writepanel-order_data.php:548 -msgid "Cost:" -msgstr "מחיר:" - -#: admin/post-types/writepanels/writepanel-order_data.php:549 -msgid "(ex. tax)" -msgstr "(ללא מיסים)" - -#: admin/post-types/writepanels/writepanel-order_data.php:556 -msgid "Method:" -msgstr "אפשרות:" - -#: admin/post-types/writepanels/writepanel-order_data.php:578 -#: admin/post-types/writepanels/writepanel-order_data.php:580 -#: admin/post-types/writepanels/writepanel-order_data.php:679 -#: admin/post-types/writepanels/writepanel-order_data.php:681 -msgid "Other" -msgstr "אחר" - -#: admin/post-types/writepanels/writepanel-order_data.php:594 -msgid "Tax Rows" -msgstr "שורות מיסים" - -#: admin/post-types/writepanels/writepanel-order_data.php:619 -msgid "+ Add tax row" -msgstr "+ הוספת שורת מס" - -#: admin/post-types/writepanels/writepanel-order_data.php:619 -msgid "" -"These rows contain taxes for this order. This allows you to display multiple " -"or compound taxes rather than a single total." -msgstr "" -"שורות אלה מכילים מסים בגין הזמנה זו. זה מאפשר לך להציג מסים מרובים או מיסים " -"מורכבים ולא סך הכל בודד." - -#: admin/post-types/writepanels/writepanel-order_data.php:623 -msgid "Tax Totals" -msgstr "סך הכל מיסים" - -#: admin/post-types/writepanels/writepanel-order_data.php:627 -msgid "Total tax for line items + fees." -msgstr "סך הכל מס לפריטי השורה + עמלות." - -#: admin/post-types/writepanels/writepanel-order_data.php:649 -#: admin/post-types/writepanels/writepanels-init.php:70 -msgid "Order Totals" -msgstr "סך הזמנה" - -#: admin/post-types/writepanels/writepanel-order_data.php:653 -msgid "Order Total:" -msgstr "סך הכל לתשלום:" - -#: admin/post-types/writepanels/writepanel-order_data.php:661 -msgid "Payment Method:" -msgstr "אמצעי תשלום:" - -#: admin/post-types/writepanels/writepanel-order_data.php:692 -msgid "Calc taxes" -msgstr "חישוב מיסים" - -#: admin/post-types/writepanels/writepanel-order_data.php:694 -msgid "Calc totals" -msgstr "חישוב סך הכל" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:57 -msgid "Choose a downloadable product…" -msgstr "בחר מוצר להורדה ..." - -#: admin/post-types/writepanels/writepanel-order_downloads.php:87 -msgid "Grant Access" -msgstr "הענק גישה" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:125 -msgid "" -"Could not grant access - the user may already have permission for this file " -"or billing email is not set. Ensure the billing email is set, and the order " -"has been saved." -msgstr "" -"לא יכל להעניק לו גישה - למשתמש כבר יש הרשאה לקובץ הזה או שהמייל חיוב אינו " -"מוגדר. ודא כי מייל החיוב מוגדר, ושההזמנה נשמרה." - -#: admin/post-types/writepanels/writepanel-order_downloads.php:148 -msgid "Are you sure you want to revoke access to this download?" -msgstr "האם אתה בטוח שאתה רוצה לבטל את הגישה להורדה זו?" - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -msgid "added %s ago" -msgstr "נוסף לפני %s" - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -msgid "Delete note" -msgstr "למחוק את ההערה" - -#: admin/post-types/writepanels/writepanel-order_notes.php:50 -msgid "There are no notes for this order yet." -msgstr "אין הערות להזמנה עדיין." - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "Add note" -msgstr "הוסף הערה" - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "" -"Add a note for your reference, or add a customer note (the user will be " -"notified)." -msgstr "הוספת הערה לעיונך, או להוסיף הערת ללקוח (הלקוח יקבל הודעה לאימייל)." - -#: admin/post-types/writepanels/writepanel-order_notes.php:62 -msgid "Customer note" -msgstr "הערת לקוח" - -#: admin/post-types/writepanels/writepanel-order_notes.php:63 -msgid "Private note" -msgstr "הערה פרטית" - -#: admin/post-types/writepanels/writepanel-order_notes.php:65 -#: admin/post-types/writepanels/writepanel-product_data.php:482 -msgid "Add" -msgstr "הוספה" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations for variable products are defined here." -msgstr "כאן מגדירים מאפייני מוצר." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations" -msgstr "וריאציות" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:65 -msgid "" -"Before adding variations, add and save some attributes on the " -"Attributes tab." -msgstr "" -"לפני הוספת וריצאיות, יש להוסיף ולשמור כמה תכונות בטאב " -"התכונות." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:67 -msgid "Learn more" -msgstr "למידע נוסף" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Close all" -msgstr "סגור הכל" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Expand all" -msgstr "הרחב הכל" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:75 -msgid "Bulk edit:" -msgstr "עריכה קבוצתית:" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:77 -msgid "Toggle "Enabled"" -msgstr "הפעל/כבה" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:78 -msgid "Toggle "Downloadable"" -msgstr "הפעל/כבה "בר הורדה"" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:79 -msgid "Toggle "Virtual"" -msgstr "הפעל/כבה "וירטואלי"" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:80 -msgid "Delete all variations" -msgstr "מחק את כל הוריאציות" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:81 -msgid "Prices" -msgstr "מחירים" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:82 -msgid "Sale prices" -msgstr "מחירי מבצע" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:88 -msgid "File Path" -msgstr "נתיב הקובץ" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:89 -msgid "Download limit" -msgstr "הגבלת הורדה" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:90 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Download Expiry" -msgstr "פקיעת ההורדה" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:93 -msgid "Go" -msgstr "עבור" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:193 -msgid "Add Variation" -msgstr "הוספת וריאציה" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:195 -msgid "Link all variations" -msgstr "חיבור כל הוריאציות" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:197 -msgid "Default selections:" -msgstr "בחירות ברירת המחדל:" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:210 -msgid "No default" -msgstr "ללא ברירת מחדל" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:293 -msgid "" -"Are you sure you want to link all variations? This will create a new " -"variation for each and every possible combination of variation attributes " -"(max 50 per run)." -msgstr "" -"האם אתה בטוח שברצונך לקשר כל הוריאציות? פעולה זו תיצור וריאציה חדשה עבור כל " -"שילוב אפשרי של תכונות (מקסימום 50 לכל ריצה)." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:310 -msgid "variation added" -msgstr "הוריאציה נוספה" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:312 -msgid "variations added" -msgstr "הוריאציות נוספו" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:314 -msgid "No variations added" -msgstr "לא נוספה וריאציה" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:337 -msgid "Are you sure you want to remove this variation?" -msgstr "האם אתה בטוח שברצונך להסיר וריאציה זאת?" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:393 -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "האם אתה בטוח שברצונך למחוק את כל הוריאציות? לא ניתן לבטל פעולה זו." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:396 -msgid "Last warning, are you sure?" -msgstr "אזהרה אחרונה, אתה בטוח?" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:433 -msgid "Enter a value" -msgstr "הזן ערך" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:511 -#: admin/woocommerce-admin-taxonomies.php:62 -#: admin/woocommerce-admin-taxonomies.php:154 -msgid "Choose an image" -msgstr "בחר תמונה" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:513 -msgid "Set variation image" -msgstr "הגדר את תמונת הוריאציה" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:557 -msgid "Variable product" -msgstr "מוצר עם וריאציות" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:623 -msgid "Variation #%s of %s" -msgstr "וריאציה מספר %s מתוך %s" - -#: admin/post-types/writepanels/writepanel-product_data.php:43 -msgid "Product Type" -msgstr "סוג המוצר" - -#: admin/post-types/writepanels/writepanel-product_data.php:53 -msgid "Virtual products are intangible and aren't shipped." -msgstr "מוצרים וירטואליים הם בלתי מוחשיים ולא מועברים למשלוח." - -#: admin/post-types/writepanels/writepanel-product_data.php:59 -msgid "Downloadable products give access to a file upon purchase." -msgstr "מוצרים להורדה מעניקים גישה לקובץ לאחר הרכישה." - -#: admin/post-types/writepanels/writepanel-product_data.php:77 -#: admin/woocommerce-admin-content.php:44 -#: admin/woocommerce-admin-settings.php:180 -msgid "General" -msgstr "כללי" - -#: admin/post-types/writepanels/writepanel-product_data.php:79 -#: admin/woocommerce-admin-content.php:47 -#: admin/woocommerce-admin-settings.php:183 -msgid "Inventory" -msgstr "מלאי" - -#: admin/post-types/writepanels/writepanel-product_data.php:83 -msgid "Linked Products" -msgstr "מוצרים מקושרים" - -#: admin/post-types/writepanels/writepanel-product_data.php:85 -#: admin/woocommerce-admin-attributes.php:298 -#: admin/woocommerce-admin-init.php:66 -msgid "Attributes" -msgstr "תכונות" - -#: admin/post-types/writepanels/writepanel-product_data.php:87 -msgid "Advanced" -msgstr "מתקדם" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "Stock Keeping Unit" -msgstr "יחידת שמירת מלאי" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "" -"SKU refers to a Stock-keeping unit, a unique identifier for each distinct " -"product and service that can be purchased." -msgstr "" -"המק"ט מתייחס ליחידת שמירת המלאי, מזהה ייחודיי לכל מוצר ושירות ייחודיים " -"שניתן לרכוש." - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Product URL" -msgstr "כתובת המוצר " - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Enter the external URL to the product." -msgstr "הזן את כתובת האתר החיצונית למוצר." - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "Button text" -msgstr "טקסט כפתור" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgctxt "placeholder" -msgid "Buy product" -msgstr "קנה מוצר" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "This text will be shown on the button linking to the external product." -msgstr "טקסט זה יופיע על כפתור קישור למוצר החיצוני." - -#: admin/post-types/writepanels/writepanel-product_data.php:119 -msgid "Regular Price" -msgstr "מחיר רגיל" - -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Sale Price" -msgstr "מחיר מבצע" - -#: admin/post-types/writepanels/writepanel-product_data.php:135 -msgid "Sale Price Dates" -msgstr "תאריך מחיר מבצע" - -#: admin/post-types/writepanels/writepanel-product_data.php:138 -#: admin/post-types/writepanels/writepanel-product_data.php:1064 -msgid "Cancel" -msgstr "בטל" - -#: admin/post-types/writepanels/writepanel-product_data.php:152 -msgid "File paths (one per line)" -msgstr "נתיבי קבצים (אחד בכל שורה)" - -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Download Limit" -msgstr "הגבלת הורדה" - -#: admin/post-types/writepanels/writepanel-product_data.php:178 -msgid "Tax Status" -msgstr "מצב מיסים" - -#: admin/post-types/writepanels/writepanel-product_data.php:180 -msgid "Shipping only" -msgstr "משלוח בלבד" - -#: admin/post-types/writepanels/writepanel-product_data.php:181 -msgid "None" -msgstr "כלום" - -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Enable stock management at product level" -msgstr "הפעל ניהול מלאי ברמת המוצר" - -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "" -"Stock quantity. If this is a variable product this value will be used to " -"control stock for all variations, unless you define stock at variation level." -msgstr "" -"כמות מלאי. אם מדובר במוצר עם וריאציות, ערך זה ישמש לשליטה במלאי לכל " -"הוריאציות, אלא אם אתה מגדיר את המלאי ברמת הוריאציה." - -#: admin/post-types/writepanels/writepanel-product_data.php:230 -msgid "Stock status" -msgstr "מצב מלאי" - -#: admin/post-types/writepanels/writepanel-product_data.php:233 -msgid "" -"Controls whether or not the product is listed as \"in stock\" or \"out of " -"stock\" on the frontend." -msgstr "" -"שליטה על האם המוצר רשום כ"במלאי" או "אזל מהמלאי" בממשק " -"המשתמש." - -#: admin/post-types/writepanels/writepanel-product_data.php:240 -msgid "Allow Backorders?" -msgstr "הפעל הזמנה מראש?" - -#: admin/post-types/writepanels/writepanel-product_data.php:241 -msgid "Do not allow" -msgstr "אל תאפשר" - -#: admin/post-types/writepanels/writepanel-product_data.php:242 -msgid "Allow, but notify customer" -msgstr "הפעל, אבל תודיע ללקוח" - -#: admin/post-types/writepanels/writepanel-product_data.php:243 -msgid "Allow" -msgstr "הפעל" - -#: admin/post-types/writepanels/writepanel-product_data.php:244 -msgid "" -"If managing stock, this controls whether or not backorders are allowed for " -"this product and variations. If enabled, stock quantity can go below 0." -msgstr "" -"אם מנהלים את המלאי, אפשרות זאת שולטת על האם הזמנה מראש מותרת עבור המוצר " -"והורציאציות שלו. אם מופעלת האפשרות, כמות היחידות במלאי יכולה לרדת מתחת ל0." - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "Sold Individually" -msgstr "נמכרים בנפרד" - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "" -"Enable this to only allow one of this item to be bought in a single order" -msgstr "הפעל אפשרות זאת כדי להגביל קניית פריט אחד בלבד בכל הזמנה" - -#: admin/post-types/writepanels/writepanel-product_data.php:273 -msgid "Weight in decimal form" -msgstr "משקל בתבנית עשרונית" - -#: admin/post-types/writepanels/writepanel-product_data.php:284 -msgid "Dimensions" -msgstr "מידות" - -#: admin/post-types/writepanels/writepanel-product_data.php:290 -msgid "LxWxH in decimal form" -msgstr "אורך x רוחב x גובה בתבנית עשרונית" - -#: admin/post-types/writepanels/writepanel-product_data.php:311 -msgid "No shipping class" -msgstr "אין סוגי משלוח" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "Shipping class" -msgstr "סוג משלוח" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "" -"Shipping classes are used by certain shipping methods to group similar " -"products." -msgstr "סוגי משלוח מאפשרים לקבץ יחד מוצרים לפי סוג המשלוח." - -#: admin/post-types/writepanels/writepanel-product_data.php:380 -#: admin/post-types/writepanels/writepanel-product_data.php:457 -#: admin/woocommerce-admin-init.php:453 -msgid "Value(s)" -msgstr "ערך(ים)" - -#: admin/post-types/writepanels/writepanel-product_data.php:382 -msgid "Select terms" -msgstr "בחר מונחים" - -#: admin/post-types/writepanels/writepanel-product_data.php:394 -msgid "Select all" -msgstr "בחר הכל" - -#: admin/post-types/writepanels/writepanel-product_data.php:394 -msgid "Select none" -msgstr "בחר בשום דבר" - -#: admin/post-types/writepanels/writepanel-product_data.php:396 -msgid "Add new" -msgstr "הוסף חדש" - -#: admin/post-types/writepanels/writepanel-product_data.php:409 -msgid "Pipe separate terms" -msgstr "הפרד מונחים בקו" - -#: admin/post-types/writepanels/writepanel-product_data.php:416 -#: admin/post-types/writepanels/writepanel-product_data.php:463 -#: admin/woocommerce-admin-init.php:455 -msgid "Visible on the product page" -msgstr "מוצג בעמוד המוצר" - -#: admin/post-types/writepanels/writepanel-product_data.php:422 -#: admin/post-types/writepanels/writepanel-product_data.php:469 -#: admin/woocommerce-admin-init.php:456 -msgid "Used for variations" -msgstr "נועד עבור וריאציות" - -#: admin/post-types/writepanels/writepanel-product_data.php:458 -#: admin/woocommerce-admin-init.php:454 -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "הזן טקסט כלשהו, ​​או כמה תכונות והפרד על ידי קו (|) מפריד." - -#: admin/post-types/writepanels/writepanel-product_data.php:484 -msgid "Custom product attribute" -msgstr "תכונות מוצר מותאמות אישית" - -#: admin/post-types/writepanels/writepanel-product_data.php:496 -msgid "Save attributes" -msgstr "שמור תכונות" - -#: admin/post-types/writepanels/writepanel-product_data.php:503 -msgid "Up-Sells" -msgstr "קידום מכירות" - -#: admin/post-types/writepanels/writepanel-product_data.php:518 -msgid "" -"Up-sells are products which you recommend instead of the currently viewed " -"product, for example, products that are more profitable or better quality or " -"more expensive." -msgstr "" -"מוצרים מקדמי מכירות הם מוצרים שאתה ממליץ במקום המוצר הנצפה הנוכחי, לדוגמא, " -"מוצרים שהם יותר רווחיים או באיכות גבוהה יותר או יקרים יותר." - -#: admin/post-types/writepanels/writepanel-product_data.php:520 -msgid "Cross-Sells" -msgstr "מוצרים משלימים" - -#: admin/post-types/writepanels/writepanel-product_data.php:535 -msgid "" -"Cross-sells are products which you promote in the cart, based on the current " -"product." -msgstr "מוצרים משלימים הם מוצרים שאתה מקדם בעגלה, במבוסס על המוצר הנוכחי." - -#: admin/post-types/writepanels/writepanel-product_data.php:545 -msgid "Choose a grouped product…" -msgstr "בחר קבוצת מוצרים…" - -#: admin/post-types/writepanels/writepanel-product_data.php:571 -msgid "Grouping" -msgstr "קבוצה" - -#: admin/post-types/writepanels/writepanel-product_data.php:571 -msgid "Set this option to make this product part of a grouped product." -msgstr "הגדר אפשרות זו כדי להפוך את המוצר הזה לחלק מקבוצת מוצרים." - -#: admin/post-types/writepanels/writepanel-product_data.php:591 -msgid "Purchase Note" -msgstr "הערת רכישה" - -#: admin/post-types/writepanels/writepanel-product_data.php:591 -msgid "Enter an optional note to send the customer after purchase." -msgstr "הזן הערה אופציונלית שתשלח ללקוח לאחר הרכישה." - -#: admin/post-types/writepanels/writepanel-product_data.php:598 -msgid "Menu order" -msgstr "סידור תפריט" - -#: admin/post-types/writepanels/writepanel-product_data.php:598 -msgid "Custom ordering position." -msgstr "סידור מותאם אישית." - -#: admin/post-types/writepanels/writepanel-product_data.php:606 -msgid "Enable reviews" -msgstr "הפעל חוות דעת" - -#: admin/post-types/writepanels/writepanel-product_data.php:695 -msgid "Product SKU must be unique." -msgstr "מק"ט המוצר חייב להיות ייחודי." - -#: admin/post-types/writepanels/writepanel-product_data.php:1028 -msgid "Catalog/search" -msgstr "קטלוג וחיפוש" - -#: admin/post-types/writepanels/writepanel-product_data.php:1035 -msgid "Catalog visibility:" -msgstr "נראות הקטלוג:" - -#: admin/post-types/writepanels/writepanel-product_data.php:1051 -msgid "" -"Define the loops this product should be visible in. The product will still " -"be accessible directly." -msgstr "" -"הגדר את הלולאות שבהן המוצר יהיה גלוי בהן. המוצר עדיין יהיה נגיש באופן ישיר." - -#: admin/post-types/writepanels/writepanel-product_data.php:1057 -msgid "Enable this option to feature this product." -msgstr "הפעל אפשרות זו כדי להפוך את המוצר למוצר מומלץ." - -#: admin/post-types/writepanels/writepanel-product_data.php:1059 -msgid "Featured Product" -msgstr "מוצר מומלץ" - -#: admin/post-types/writepanels/writepanel-product_data.php:1063 -msgid "OK" -msgstr "אשר" - -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -msgid "Delete image" -msgstr "מחק תמונה" - -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -#: admin/woocommerce-admin-attributes.php:322 -msgid "Delete" -msgstr "מחיקה" - -#: admin/post-types/writepanels/writepanel-product_images.php:53 -msgid "Add product gallery images" -msgstr "הוסף תמונות גלריה של המוצר" - -#: admin/post-types/writepanels/writepanel-product_images.php:79 -msgid "Add Images to Product Gallery" -msgstr "הוסף תמונות לגלרית המוצר" - -#: admin/post-types/writepanels/writepanel-product_images.php:81 -msgid "Add to gallery" -msgstr "הוסף לגלריה" - -#: admin/post-types/writepanels/writepanels-init.php:47 -msgid "Product Gallery" -msgstr "גלריית מוצרים" - -#: admin/post-types/writepanels/writepanels-init.php:55 -msgid "Product Short Description" -msgstr "תיאור קצר למוצר" - -#: admin/post-types/writepanels/writepanels-init.php:64 -msgid "Reviews" -msgstr "חוות דעת" - -#: admin/post-types/writepanels/writepanels-init.php:68 -msgid "Order Data" -msgstr "פרטי הזמנה" - -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "Order Items" -msgstr "פריטי הזמנה" - -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "" -"Note: if you edit quantities or remove items from the order you will need to " -"manually update stock levels." -msgstr "" -"הערה: אם תערוך את הכמויות או תסיר פריטים מההזמנה תצטרך לעדכן ידנית את רמות " -"המלאי." - -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "Downloadable Product Permissions" -msgstr "הרשאות מוצרים להורדה" - -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "" -"Note: Permissions for order items will automatically be granted when the " -"order status changes to processing/completed." -msgstr "" -"הערה: הרשאת גישה לפריטים תינתן באופן אוטומטי כאשר מצב ההזמנה ישתנה לבטיפול/" -"הושלמה." - -#: admin/post-types/writepanels/writepanels-init.php:73 -msgid "Order Actions" -msgstr "אפשרויות הזמנה" - -#: admin/post-types/writepanels/writepanels-init.php:81 -msgid "Coupon Data" -msgstr "פרטי קופון" - -#: admin/post-types/writepanels/writepanels-init.php:100 -msgid "Coupon code" -msgstr "קוד קופון" - -#: admin/post-types/writepanels/writepanels-init.php:101 -msgid "Product name" -msgstr "שם מוצר" - -#: admin/post-types/writepanels/writepanels-init.php:185 -msgid "Allow reviews." -msgstr "הפעל חוות דעת." - -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "" -"Allow trackbacks and pingbacks on this " -"page." -msgstr "הפעל טראקבקים ופינגבאקים בדף זה." - -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" -msgstr "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" - -#: admin/settings/settings-frontend-styles.php:23 -msgid "Styles" -msgstr "סגנונות" - -#: admin/settings/settings-frontend-styles.php:43 -msgid "Primary" -msgstr "עיקרי" - -#: admin/settings/settings-frontend-styles.php:43 -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:44 -msgid "Secondary" -msgstr "משני" - -#: admin/settings/settings-frontend-styles.php:44 -msgid "Buttons and tabs" -msgstr "כפתורים וטאבים" - -#: admin/settings/settings-frontend-styles.php:45 -msgid "Highlight" -msgstr "הדגשה" - -#: admin/settings/settings-frontend-styles.php:45 -msgid "Price labels and Sale Flashes" -msgstr "תוויות מחיר והבזקי מבצע" - -#: admin/settings/settings-frontend-styles.php:46 -msgid "Content" -msgstr "תוכן" - -#: admin/settings/settings-frontend-styles.php:46 -msgid "Your themes page background - used for tab active states" -msgstr "רקע עמוד ערכת העיצוב שלך - משמש לטאבים פעילים" - -#: admin/settings/settings-frontend-styles.php:47 -msgid "Subtext" -msgstr "טקסט משנה" - -#: admin/settings/settings-frontend-styles.php:47 -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "משמש לטקסט והערות אגב מסוימים - פירורי לחם, טקסט קטן וכו" - -#: admin/settings/settings-frontend-styles.php:51 -msgid "" -"To edit colours woocommerce/assets/css/woocommerce-base.less " -"and woocommerce.css need to be writable. See the Codex for more " -"information." -msgstr "" -"כדי לערוך את הצבעים, הקבצים woocommerce/assets/css/woocommerce-base." -"less וגם woocommerce.css צריכים להיות ניתנים לכתיבה. ראה " -"הקודקס " -"לקבלת מידע נוסף." - -#: admin/settings/settings-init.php:18 -msgid "Localisation" -msgstr "לוקאליזציה" - -#: admin/settings/settings-init.php:19 -msgid "Use informal localisation for %s" -msgstr "השתמש לוקליזציה לא רשמית עבור %s" - -#: admin/settings/settings-init.php:33 -msgid "General Options" -msgstr "אפשרויות כלליות" - -#: admin/settings/settings-init.php:36 -msgid "Base Location" -msgstr "מיקום בסיס" - -#: admin/settings/settings-init.php:37 -msgid "" -"This is the base location for your business. Tax rates will be based on this " -"country." -msgstr "" -"זוהי המדינה המוגדרת עבור העסק שלך. שיעורי המע"מ יתבססו על הארץ הזאת." - -#: admin/settings/settings-init.php:46 -msgid "Currency" -msgstr "המטבע שלך." - -#: admin/settings/settings-init.php:47 -msgid "" -"This controls what currency prices are listed at in the catalog and which " -"currency gateways will take payments in." -msgstr "" -"זה קובע באיזה מטבע כתובים המחירים בקטלוג ובאיזה שערי תשלום התשלום יתבצע." - -#: admin/settings/settings-init.php:58 -msgid "Allowed Countries" -msgstr "מדינות מותרות" - -#: admin/settings/settings-init.php:59 -msgid "These are countries that you are willing to ship to." -msgstr "אלו המדינות שאתה מוכן לשלוח אליהם." - -#: admin/settings/settings-init.php:67 -msgid "All Countries" -msgstr "כל הארצות" - -#: admin/settings/settings-init.php:68 admin/settings/settings-init.php:73 -msgid "Specific Countries" -msgstr "מדינה ספציפית" - -#: admin/settings/settings-init.php:84 -msgid "Store Notice" -msgstr "הודעת חנות" - -#: admin/settings/settings-init.php:85 -msgid "Enable site-wide store notice text" -msgstr "הפעל הודעת חנות שתופיע בכל החנות" - -#: admin/settings/settings-init.php:92 -msgid "Store Notice Text" -msgstr "טקסט הודעת חנות" - -#: admin/settings/settings-init.php:95 -msgid "" -"This is a demo store for testing purposes — no orders shall be " -"fulfilled." -msgstr "זוהי חנות ההדגמה למטרות בדיקה - הזמנות לא ימולאו." - -#: admin/settings/settings-init.php:102 -msgid "Cart, Checkout and Accounts" -msgstr "עגלת קניות, קופה וחשבונות" - -#: admin/settings/settings-init.php:105 admin/woocommerce-admin-content.php:61 -#: admin/woocommerce-admin-content.php:76 -#: admin/woocommerce-admin-reports.php:72 -msgid "Coupons" -msgstr "קופונים" - -#: admin/settings/settings-init.php:106 -msgid "Enable the use of coupons" -msgstr "לאפשר את השימוש בקופונים" - -#: admin/settings/settings-init.php:110 -msgid "Coupons can be applied from the cart and checkout pages." -msgstr "ניתן להחיל את הקופונים מהעגלה וגם דפי התשלום." - -#: admin/settings/settings-init.php:114 -#: admin/woocommerce-admin-install.php:198 -#: admin/woocommerce-admin-status.php:281 -msgid "Checkout" -msgstr "לתשלום" - -#: admin/settings/settings-init.php:115 -msgid "Enable guest checkout (no account required)" -msgstr "הפעל תשלום אורח (לא נדרש חשבון באתר כדי לקנות)" - -#: admin/settings/settings-init.php:123 -msgid "Enable customer note field on checkout" -msgstr "הפעל שדה הערת לקוח בתשלום" - -#: admin/settings/settings-init.php:131 -msgid "Force secure checkout" -msgstr "הכרח תשלום מאובטח" - -#: admin/settings/settings-init.php:137 -msgid "" -"Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -msgstr "הכרח SSL בעמוד התשלום (HTTPS) בדפי הקופה (תעודת SSL נדרשת)." - -#: admin/settings/settings-init.php:141 -msgid "Un-force HTTPS when leaving the checkout" -msgstr "אפשר לצאת ממצב מאובטח (HTTPS) כאשר עוזבים את הקופה" - -#: admin/settings/settings-init.php:150 -msgid "Registration" -msgstr "הרשמה" - -#: admin/settings/settings-init.php:151 -msgid "Allow registration on the checkout page" -msgstr "לאפשר רישום בדף הקופה" - -#: admin/settings/settings-init.php:159 -msgid "Allow registration on the \"My Account\" page" -msgstr "לאפשר רישום בדף "החשבון שלי"" - -#: admin/settings/settings-init.php:167 -msgid "Register using the email address for the username" -msgstr "הרשמה באמצעות כתובת הדוא"ל של המשתמש" - -#: admin/settings/settings-init.php:175 -msgid "Customer Accounts" -msgstr "חשבון לקוח" - -#: admin/settings/settings-init.php:176 -msgid "Prevent customers from accessing WordPress admin" -msgstr "מניעת גישה של לקוחות למערכת הניהול" - -#: admin/settings/settings-init.php:184 -msgid "Clear cart when logging out" -msgstr "נקה את עגלת הקניות בהתנתקות מהמערכת" - -#: admin/settings/settings-init.php:192 -msgid "Allow customers to repurchase orders from their account page" -msgstr "לאפשר ללקוחות רכישה חוזרת של הזמנות קודמות מדף החשבון שלהם" - -#: admin/settings/settings-init.php:201 -msgid "Styles and Scripts" -msgstr "סגנונות וסקריפטים" - -#: admin/settings/settings-init.php:204 -msgid "Styling" -msgstr "סגנון" - -#: admin/settings/settings-init.php:205 -msgid "Enable WooCommerce CSS" -msgstr "הפעל WooCommerce CSS" - -#: admin/settings/settings-init.php:216 -msgid "Scripts" -msgstr "סקריפטים" - -#: admin/settings/settings-init.php:217 -msgid "Enable Lightbox" -msgstr "הפעל Lightbox" - -#: admin/settings/settings-init.php:220 -msgid "" -"Include WooCommerce's lightbox. Product gallery images and the add review " -"form will open in a lightbox." -msgstr "" -"כלול lightbox של WooCommerce. תמונות מוצרים בגלריות וטופס חוות דעת ייפתח ב " -"lightbox." - -#: admin/settings/settings-init.php:226 -msgid "Enable enhanced country select boxes" -msgstr "הפעל תיבות בחירה משופרות לארצות" - -#: admin/settings/settings-init.php:231 -msgid "This will enable a script allowing the country fields to be searchable." -msgstr "זה יאפשר סקריפט המאפשר חיפוש ארצות." - -#: admin/settings/settings-init.php:236 -msgid "Downloadable Products" -msgstr "מוצרים להורדה" - -#: admin/settings/settings-init.php:239 -msgid "File Download Method" -msgstr "אפשרויות הורדת קובץ" - -#: admin/settings/settings-init.php:240 -msgid "" -"Forcing downloads will keep URLs hidden, but some servers may serve large " -"files unreliably. If supported, X-Accel-Redirect/ X-" -"Sendfile can be used to serve downloads instead (server requires " -"mod_xsendfile)." -msgstr "" -"הכרחת הורדות ישמור את הכתובות נסתרות, אבל כמה שרתים יכולים להגיש קבצים " -"גדולים בצורה בלתי מהימנה. אם השרת תומך ב X-Accel-Redirect/ " -"X-Sendfile יכול לשמש להורדות במקום זאת (שרת דורש " -"mod_xsendfile)." - -#: admin/settings/settings-init.php:248 -msgid "Force Downloads" -msgstr "הכרח הורדות" - -#: admin/settings/settings-init.php:249 -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "X-Accel-Redirect/X-Sendfile" - -#: admin/settings/settings-init.php:250 -msgid "Redirect only" -msgstr "הפניה בלבד" - -#: admin/settings/settings-init.php:255 -msgid "Access Restriction" -msgstr "הגבלת גישה" - -#: admin/settings/settings-init.php:256 -msgid "Downloads require login" -msgstr "הורדות דורשות התחברות לאתר" - -#: admin/settings/settings-init.php:260 -msgid "This setting does not apply to guest purchases." -msgstr "הגדרה זו אינה חלה על רכישות אורחים." - -#: admin/settings/settings-init.php:265 -msgid "Grant access to downloadable products after payment" -msgstr "הענקת גישה למוצרים להורדה לאחר תשלום" - -#: admin/settings/settings-init.php:269 -msgid "" -"Enable this option to grant access to downloads when orders are \"processing" -"\", rather than \"completed\"." -msgstr "" -"הפעל אפשרות זו כדי להעניק גישה להורדות כאשר הזמנות הן "בטיפול" ולא " -""הושלמה"." - -#: admin/settings/settings-init.php:285 -msgid "" -"Note: The shop page has children - child pages will not work if you enable " -"this option." -msgstr "הערה: לדף החנות יש עמוד ילד - דפי הילד לא יעבדו אם תפעיל אפשרות זו." - -#: admin/settings/settings-init.php:290 -msgid "Page Setup" -msgstr "הגדרת עמוד" - -#: admin/settings/settings-init.php:292 -msgid "" -"Set up core WooCommerce pages here, for example the base page. The base page " -"can also be used in your %sproduct permalinks%s." -msgstr "" -"הגדר דפי ליבת WooCommerce פה, למשל דף הבסיס. דף הבסיס יכול לשמש גם ב " -"%sקישורים קבועים של המוצרים%s" - -#: admin/settings/settings-init.php:297 -msgid "Shop Base Page" -msgstr "עמוד חנות" - -#: admin/settings/settings-init.php:298 -msgid "" -"This sets the base page of your shop - this is where your product archive " -"will be." -msgstr "זה קובע את דף הבסיס של החנות שלך - זה מקום שבו ארכיון המוצר שלך יהיה." - -#: admin/settings/settings-init.php:308 -msgid "Base Page Title" -msgstr "כותרת עמוד בסיס" - -#: admin/settings/settings-init.php:309 -msgid "" -"This title to show on the shop base page. Leave blank to use the page title." -msgstr "כותרת זו כדי להראות בדף בסיס החנות. שאר ריק כדי להשתמש בכותרת הדף." - -#: admin/settings/settings-init.php:318 -msgid "Terms Page ID" -msgstr "עמוד התקנון" - -#: admin/settings/settings-init.php:319 -msgid "" -"If you define a \"Terms\" page the customer will be asked if they accept " -"them when checking out." -msgstr "" -"אם אתה מגדיר את "תנאי " דף הלקוח יתבקש אם הם יקבלו אותם בעת בדיקה " -"החוצה." - -#: admin/settings/settings-init.php:330 -msgid "Shop Pages" -msgstr "עמוד חנות" - -#: admin/settings/settings-init.php:330 -msgid "" -"The following pages need selecting so that WooCommerce knows where they are. " -"These pages should have been created upon installation of the plugin, if not " -"you will need to create them." -msgstr "" -"בעמודים הבאים צריכים לבחור כך שWooCommerce יודע היכן הם נמצאים. דפים אלה " -"צריכים להיות שנוצרו בהתקנה של התוסף, אם לא תהיה עליך ליצור אותם." - -#: admin/settings/settings-init.php:333 -msgid "Cart Page" -msgstr "עמוד סל קניות" - -#: admin/settings/settings-init.php:334 -msgid "Page contents: [woocommerce_cart]" -msgstr "תוכן דף: [woocommerce_cart]" - -#: admin/settings/settings-init.php:344 -msgid "Checkout Page" -msgstr "עמוד רכישה" - -#: admin/settings/settings-init.php:345 -msgid "Page contents: [woocommerce_checkout]" -msgstr "תוכן דף: [woocommerce_checkout]" - -#: admin/settings/settings-init.php:355 -msgid "Pay Page" -msgstr "עמוד תשלום" - -#: admin/settings/settings-init.php:356 -msgid "Page contents: [woocommerce_pay] Parent: \"Checkout\"" -msgstr "תוכן דף: [woocommerce_pay] אב: \"קופה \"" - -#: admin/settings/settings-init.php:366 -msgid "Thanks Page" -msgstr "עמוד תודה רבה" - -#: admin/settings/settings-init.php:367 -msgid "Page contents: [woocommerce_thankyou] Parent: \"Checkout\"" -msgstr "תוכן דף: [woocommerce_thankyou] אב: "קופה "" - -#: admin/settings/settings-init.php:377 -msgid "My Account Page" -msgstr "עמוד חשבון שלי" - -#: admin/settings/settings-init.php:378 -msgid "Page contents: [woocommerce_my_account]" -msgstr "תוכן דף: [woocommerce_my_account]" - -#: admin/settings/settings-init.php:388 -msgid "Edit Address Page" -msgstr "עמוד עריכת פרטים" - -#: admin/settings/settings-init.php:389 -msgid "Page contents: [woocommerce_edit_address] Parent: \"My Account\"" -msgstr "תוכן דף: [woocommerce_edit_address] אב: \"החשבון שלי \"" - -#: admin/settings/settings-init.php:399 -msgid "View Order Page" -msgstr "הצג עמוד הזמנה" - -#: admin/settings/settings-init.php:400 -msgid "Page contents: [woocommerce_view_order] Parent: \"My Account\"" -msgstr "תוכן דף: [woocommerce_view_order] אב: \"החשבון שלי \"" - -#: admin/settings/settings-init.php:410 -msgid "Change Password Page" -msgstr "עמוד שינוי סיסמה" - -#: admin/settings/settings-init.php:411 -msgid "Page contents: [woocommerce_change_password] Parent: \"My Account\"" -msgstr "תוכן דף: [woocommerce_change_password] אב: \"החשבון שלי \"" - -#: admin/settings/settings-init.php:421 -msgid "Logout Page" -msgstr "התנתק עמוד" - -#: admin/settings/settings-init.php:422 -msgid "Parent: \"My Account\"" -msgstr "הורה: \"החשבון שלי \"" - -#: admin/settings/settings-init.php:432 -msgid "Lost Password Page" -msgstr "עמוד שכח את הסיסמה" - -#: admin/settings/settings-init.php:433 -msgid "Page contents: [woocommerce_lost_password] Parent: \"My Account\"" -msgstr "תוכן דף: [woocommerce_lost_password] אב: \"החשבון שלי \"" - -#: admin/settings/settings-init.php:449 -msgid "Catalog Options" -msgstr "אפשרויות קטלוג" - -#: admin/settings/settings-init.php:452 -msgid "Default Product Sorting" -msgstr "מיון מוצר ברירת מחדל" - -#: admin/settings/settings-init.php:453 -msgid "This controls the default sort order of the catalog." -msgstr "זה מקובע את סדר מיון ברירת המחדל של הקטלוג." - -#: admin/settings/settings-init.php:459 -msgid "Default sorting (custom ordering + name)" -msgstr "מיון ברירת מחדל (מותאם אישית הזמנה + שם)" - -#: admin/settings/settings-init.php:460 -msgid "Popularity (sales)" -msgstr "פופולריות (מכירות)" - -#: admin/settings/settings-init.php:461 -msgid "Average Rating" -msgstr "דירוג הממוצע" - -#: admin/settings/settings-init.php:462 -msgid "Sort by most recent" -msgstr "למיין לפי האחרון" - -#: admin/settings/settings-init.php:463 -msgid "Sort by price (asc)" -msgstr "מיין לפי מחיר (עולה)" - -#: admin/settings/settings-init.php:464 -msgid "Sort by price (desc)" -msgstr "מיין לפי מחיר (יורד)" - -#: admin/settings/settings-init.php:470 -msgid "Shop Page Display" -msgstr "תצוגה של דף הבית" - -#: admin/settings/settings-init.php:471 -msgid "This controls what is shown on the product archive." -msgstr "זה מקובע את מה שמוצג על ארכיון המוצר." - -#: admin/settings/settings-init.php:477 admin/settings/settings-init.php:492 -msgid "Show products" -msgstr "הצג מוצרים" - -#: admin/settings/settings-init.php:478 admin/settings/settings-init.php:493 -msgid "Show subcategories" -msgstr "הצג קטגוריות" - -#: admin/settings/settings-init.php:479 admin/settings/settings-init.php:494 -msgid "Show both" -msgstr "תראה את שניהם" - -#: admin/settings/settings-init.php:485 -msgid "Default Category Display" -msgstr "הצגת קטגורית ברירת מחדל" - -#: admin/settings/settings-init.php:486 -msgid "This controls what is shown on category archives." -msgstr "זה שולט מה שמוצג בארכיוני קטגוריה." - -#: admin/settings/settings-init.php:500 -msgid "Add to cart" -msgstr "הוסף לעגלה" - -#: admin/settings/settings-init.php:501 -msgid "Redirect to the cart page after successful addition" -msgstr "הפניה לדף העגלה אחרי הוספת מוצר לעגלה" - -#: admin/settings/settings-init.php:509 -msgid "Enable AJAX add to cart buttons on archives" -msgstr "הפעל אפשרות כפתור AJAX של \"הוסף לעגלה\" בעמוד ארכיון המוצרים" - -#: admin/settings/settings-init.php:518 -msgid "" -"The following options affect the fields available on the edit product page." -msgstr "האפשרויות הבאות תשפענה על השדות הזמינים בדף מוצר העריכה." - -#: admin/settings/settings-init.php:521 -msgid "Product Fields" -msgstr "שדות מוצר" - -#: admin/settings/settings-init.php:522 -msgid "Enable the SKU field for products" -msgstr "הפעל שדה מק\"ט למוצרים" - -#: admin/settings/settings-init.php:530 -msgid "" -"Enable the weight field for products (some shipping methods " -"may require this)" -msgstr "" -"הפעל שדה משקל למוצרים (כמה שיטות משלוח עשויות לדרוש את זה)" - -#: admin/settings/settings-init.php:538 -msgid "" -"Enable the dimension fields for products (some shipping " -"methods may require this)" -msgstr "" -"הפעל את שדות המימדים עבור המוצרים (כמה שיטות משלוח עשוי " -"לדרוש את זה)" - -#: admin/settings/settings-init.php:546 -msgid "" -"Show weight and dimension values on the Additional " -"Information tab" -msgstr "" -"הצג ערכי משקל וממדים בטאב המידע הנוסף" - -#: admin/settings/settings-init.php:554 -msgid "Weight Unit" -msgstr "יחידת משקל" - -#: admin/settings/settings-init.php:555 -msgid "This controls what unit you will define weights in." -msgstr "אפשרות זו שולטת באיזו יחידה אתה תגדיר משקל." - -#: admin/settings/settings-init.php:561 -msgid "kg" -msgstr "ק"ג" - -#: admin/settings/settings-init.php:562 -msgid "g" -msgstr "גרם" - -#: admin/settings/settings-init.php:563 -msgid "lbs" -msgstr "ליברות" - -#: admin/settings/settings-init.php:564 -msgid "oz" -msgstr "עוז" - -#: admin/settings/settings-init.php:570 -msgid "Dimensions Unit" -msgstr "יחידת מידות" - -#: admin/settings/settings-init.php:571 -msgid "This controls what unit you will define lengths in." -msgstr "אפשרות זו שולטת באיזו יחידה אתה מגדיר אורכים." - -#: admin/settings/settings-init.php:578 -msgid "cm" -msgstr "סנטימטרים" - -#: admin/settings/settings-init.php:579 -msgid "mm" -msgstr "מילימטרים" - -#: admin/settings/settings-init.php:580 -msgid "in" -msgstr "אינצ'ים" - -#: admin/settings/settings-init.php:581 -msgid "yd" -msgstr "יארדים" - -#: admin/settings/settings-init.php:587 -msgid "Product Ratings" -msgstr "דירוג מוצר" - -#: admin/settings/settings-init.php:588 -msgid "Enable ratings on reviews" -msgstr "הפעל דירוג חוות דעת" - -#: admin/settings/settings-init.php:597 -msgid "Ratings are required to leave a review" -msgstr "נדרש דירוג כדי להשאיר חוות דעת" - -#: admin/settings/settings-init.php:606 -msgid "Show \"verified owner\" label for customer reviews" -msgstr "הצג תווית \"בעל מוצר מאומת\" על חוות דעת של לקוחות" - -#: admin/settings/settings-init.php:616 -msgid "Pricing Options" -msgstr "אפשרויות מחיר" - -#: admin/settings/settings-init.php:616 -msgid "The following options affect how prices are displayed on the frontend." -msgstr "האפשרויות הבאות תשפענה על אופן שהמחירים מוצגים בממשק המשתמש." - -#: admin/settings/settings-init.php:619 -msgid "Currency Position" -msgstr "מיקום מטבע" - -#: admin/settings/settings-init.php:620 -msgid "This controls the position of the currency symbol." -msgstr "אפשרות זו קובעת את המיקום של סמל המטבע." - -#: admin/settings/settings-init.php:626 -msgid "Left" -msgstr "שמאל" - -#: admin/settings/settings-init.php:627 -msgid "Right" -msgstr " ימין" - -#: admin/settings/settings-init.php:628 -msgid "Left (with space)" -msgstr "שמאל (עם רווח)" - -#: admin/settings/settings-init.php:629 -msgid "Right (with space)" -msgstr "ימין (עם רווח)" - -#: admin/settings/settings-init.php:635 -msgid "Thousand Separator" -msgstr "מפריד אלפים" - -#: admin/settings/settings-init.php:636 -msgid "This sets the thousand separator of displayed prices." -msgstr "אפשרות זו קובעת את המפריד העשרוני למחירים המוצגים." - -#: admin/settings/settings-init.php:645 -msgid "Decimal Separator" -msgstr "מפריד עשרוני" - -#: admin/settings/settings-init.php:646 -msgid "This sets the decimal separator of displayed prices." -msgstr "אפשרות זו קובעת את המפריד העשרוני למחירים המוצגים." - -#: admin/settings/settings-init.php:655 -msgid "Number of Decimals" -msgstr "מספר ספרות אחרי הנקודה" - -#: admin/settings/settings-init.php:656 -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "אפשרות זאת קובעת את מספר הספרות שיש להציג אחרי הנקודה" - -#: admin/settings/settings-init.php:669 -msgid "Trailing Zeros" -msgstr "אפסים מיותרים" - -#: admin/settings/settings-init.php:670 -msgid "" -"Remove zeros after the decimal point. e.g. $10.00 becomes " -"$10" -msgstr "" -"הסר אפסים אחרי הנקודה העשרונית. למשל 10.00 $ הופך ל 10 $" - -#: admin/settings/settings-init.php:678 -msgid "Image Options" -msgstr "אפשרויות תמונה" - -#: admin/settings/settings-init.php:678 -msgid "" -"These settings affect the actual dimensions of images in your catalog - the " -"display on the front-end will still be affected by CSS styles. After " -"changing these settings you may need to regenerate your " -"thumbnails." -msgstr "" -"הגדרות אלה משפיעות על הממדים האמיתיים של תמונות הקטלוג שלך - וימשיך להיות " -"מושפע סגנונות CSS. לאחר שינוי הגדרות אלה ייתכן שיהיה עליך " -"לרענן את התמונות הממוזערות שלך ." - -#: admin/settings/settings-init.php:681 -msgid "Catalog Images" -msgstr "תמונת קטלוג" - -#: admin/settings/settings-init.php:682 -msgid "This size is usually used in product listings" -msgstr "גודל זה משמש בדרך כלל את רשימות מוצרים" - -#: admin/settings/settings-init.php:695 -msgid "Single Product Image" -msgstr "תמונת מוצר בודד" - -#: admin/settings/settings-init.php:696 -msgid "This is the size used by the main image on the product page." -msgstr "זהו הגודל המשמש את התמונה הראשית בדף המוצר." - -#: admin/settings/settings-init.php:709 -msgid "Product Thumbnails" -msgstr "תמונות ממוזערות של המוצרים" - -#: admin/settings/settings-init.php:710 -msgid "" -"This size is usually used for the gallery of images on the product page." -msgstr "גודל זה משמש בדרך כלל לגלריה של תמונות בדף המוצר." - -#: admin/settings/settings-init.php:729 -msgid "Inventory Options" -msgstr "אפשרויות מלאי" - -#: admin/settings/settings-init.php:732 -msgid "Manage Stock" -msgstr "ניהול המלאי" - -#: admin/settings/settings-init.php:733 -msgid "Enable stock management" -msgstr "הפעל ניהול מלאי" - -#: admin/settings/settings-init.php:740 -msgid "Hold Stock (minutes)" -msgstr "שמירה על המלאי (דקות)" - -#: admin/settings/settings-init.php:741 -msgid "" -"Hold stock (for unpaid orders) for x minutes. When this limit is reached, " -"the pending order will be cancelled. Leave blank to disable." -msgstr "" -"שמור על המלאי (עבור הזמנות שלא שולמו) ל-x דקות. כשהמערכת מגיעה למגבלה זאת, " -"הזמנות שלא שולמו יבוטלו. השאר ריק כדי לבטל." - -#: admin/settings/settings-init.php:753 -msgid "Notifications" -msgstr "התראות" - -#: admin/settings/settings-init.php:754 -msgid "Enable low stock notifications" -msgstr "הפעל התראה כאשר המלאי נמוך" - -#: admin/settings/settings-init.php:762 -msgid "Enable out of stock notifications" -msgstr "הפעל התראות לא במלאי" - -#: admin/settings/settings-init.php:770 -msgid "Notification Recipient" -msgstr "נמען התראות" - -#: admin/settings/settings-init.php:778 -msgid "Low Stock Threshold" -msgstr "סף התראה "מלאי נמוך"" - -#: admin/settings/settings-init.php:791 -msgid "Out Of Stock Threshold" -msgstr "סף התראת "לא במלאי"" - -#: admin/settings/settings-init.php:804 -msgid "Out Of Stock Visibility" -msgstr "תצוגת לא במלאי" - -#: admin/settings/settings-init.php:805 -msgid "Hide out of stock items from the catalog" -msgstr "הסתר את מלאי הפריטים מתוך הקטלוג" - -#: admin/settings/settings-init.php:812 -msgid "Stock Display Format" -msgstr "פורמט הצגת המלאי" - -#: admin/settings/settings-init.php:813 -msgid "This controls how stock is displayed on the frontend." -msgstr "אפשרות זאת קובעת כיצד יוצג המלאי בממשק המשתמש." - -#: admin/settings/settings-init.php:819 -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "הצג תמיד מלאי למשל \"12 במלאי\"" - -#: admin/settings/settings-init.php:820 -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "הצג רק כאשר המלאי נמוך למשל \"נשארו רק 2 במלאי\" ולא כאשר \"במלאי\"" - -#: admin/settings/settings-init.php:821 -msgid "Never show stock amount" -msgstr "לעולם אל תציג כמות המלאי" - -#: admin/settings/settings-init.php:833 -#: admin/woocommerce-admin-settings.php:290 -msgid "Shipping Options" -msgstr "אפשרויות משלוח" - -#: admin/settings/settings-init.php:836 -msgid "Shipping Calculations" -msgstr "חישוב משלוח" - -#: admin/settings/settings-init.php:837 -msgid "Enable shipping" -msgstr "הפעל משלוחים" - -#: admin/settings/settings-init.php:845 -msgid "Enable the shipping calculator on the cart page" -msgstr "הפעל את מחשבון המשלוח על דף העגלה" - -#: admin/settings/settings-init.php:853 -msgid "Hide shipping costs until an address is entered" -msgstr "הסתר את עלויות המשלוח עד שהכתובת מוזנת" - -#: admin/settings/settings-init.php:861 -msgid "Shipping Method Display" -msgstr "אפשרויות משלוח לתצוגה" - -#: admin/settings/settings-init.php:862 -msgid "" -"This controls how multiple shipping methods are displayed on the frontend." -msgstr "זו שולטת בשיטות משלוח מרובות מוצגות בממשק." - -#: admin/settings/settings-init.php:868 -msgid "Radio buttons" -msgstr "כפתורי רדיו" - -#: admin/settings/settings-init.php:869 -msgid "Select box" -msgstr "בחר בתיבה" - -#: admin/settings/settings-init.php:875 -msgid "Shipping Destination" -msgstr "יעד משלוח" - -#: admin/settings/settings-init.php:876 -msgid "Only ship to the users billing address" -msgstr "לשלוח רק לכתובת החיוב של המשתמש" - -#: admin/settings/settings-init.php:884 -msgid "Ship to billing address by default" -msgstr "משלוח לכתובת חיוב ברירת המחדל" - -#: admin/settings/settings-init.php:892 -msgid "Collect shipping address even when not required" -msgstr "לאסוף את כתובת למשלוח, גם כאשר לא נדרשים" - -#: admin/settings/settings-init.php:910 -#: admin/woocommerce-admin-settings.php:186 -#: admin/woocommerce-admin-settings.php:327 -msgid "Payment Gateways" -msgstr "אפשרויות תשלום" - -#: admin/settings/settings-init.php:910 -msgid "" -"Installed payment gateways are displayed below. Drag and drop payment " -"gateways to control their display order on the checkout." -msgstr "" -"תשלום שערים מותקנים מוצגים להלן. גרור ושחררת תשלום שערים לשלוט בסדר התצוגה " -"שלהם בקופה." - -#: admin/settings/settings-init.php:928 -#: admin/woocommerce-admin-settings.php:220 -msgid "Tax Options" -msgstr "אפשריות מיסים" - -#: admin/settings/settings-init.php:931 -msgid "Enable Taxes" -msgstr "הפעל מסים" - -#: admin/settings/settings-init.php:932 -msgid "Enable taxes and tax calculations" -msgstr "הפעל מיסים וחישוב המיסים" - -#: admin/settings/settings-init.php:939 -msgid "Prices Entered With Tax" -msgstr "מחירים נכנסו עם מס" - -#: admin/settings/settings-init.php:943 -msgid "" -"This option is important as it will affect how you input prices. Changing it " -"will not update existing products." -msgstr "" -"אפשרות זו היא חשובה כי היא משפיעה על הצורה שבה אתה מזין את המחירים שלך. " -"שינוי אפשרות זאת לא מעדכן את המוצרים הקיימים." - -#: admin/settings/settings-init.php:945 -msgid "Yes, I will enter prices inclusive of tax" -msgstr "כן, אני אכתוב מחירים כולל מס" - -#: admin/settings/settings-init.php:946 -msgid "No, I will enter prices exclusive of tax" -msgstr "לא, אני אכתוב מחירים ללא מס" - -#: admin/settings/settings-init.php:951 -msgid "Calculate Tax Based On:" -msgstr "חישוב מס על פי:" - -#: admin/settings/settings-init.php:953 -msgid "This option determines which address is used to calculate tax." -msgstr "אפשרות זו קובעת שכתובת משמשת לחישוב מס." - -#: admin/settings/settings-init.php:957 -msgid "Customer shipping address" -msgstr "כתובת משלוח" - -#: admin/settings/settings-init.php:958 -msgid "Customer billing address" -msgstr "כתובת חשבון" - -#: admin/settings/settings-init.php:959 admin/settings/settings-init.php:971 -msgid "Shop base address" -msgstr "כתובת בסיס חנות" - -#: admin/settings/settings-init.php:964 -msgid "Default Customer Address:" -msgstr "כתובת לקוחות פרטי:" - -#: admin/settings/settings-init.php:966 -msgid "" -"This option determines the customers default address (before they input " -"their own)." -msgstr "אפשרות זו קובעת את כתובת ברירת המחדל ללקוחות (לפני שהקלט שלהם)." - -#: admin/settings/settings-init.php:970 -msgid "No address" -msgstr "אין כתובת" - -#: admin/settings/settings-init.php:976 -msgid "Shipping Tax Class:" -msgstr "שיעור מס משלוח:" - -#: admin/settings/settings-init.php:977 -msgid "" -"Optionally control which tax class shipping gets, or leave it so shipping " -"tax is based on the cart items themselves." -msgstr "" -"באופן אופציונלי שולט על איזה מיסים יחולו על המשלוח, או השאר ריק אם מיסי " -"המשלוח מתבססים על הפריטים העגלה עצמם." - -#: admin/settings/settings-init.php:982 -msgid "Shipping tax class based on cart items" -msgstr "שיעורי מס משלוח מבוססים על פריטי העגלה" - -#: admin/settings/settings-init.php:987 -msgid "Rounding" -msgstr "עיגול" - -#: admin/settings/settings-init.php:988 -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "עיגול מס ברמת סכום ביניים, במקום עיגול בכל שורה" - -#: admin/settings/settings-init.php:995 -msgid "Additional Tax Classes" -msgstr "שיעורי מס נוספים" - -#: admin/settings/settings-init.php:996 -msgid "" -"List additonal tax classes below (1 per line). This is in addition to the " -"default Standard Rate. Tax classes can be assigned to products." -msgstr "" -"רשימת סוגי מס נוספים למטה (1 בכל שורה). זה בנוסף לתעריף הסטנדרט. ניתן להקצות שיעורי מס למוצרים." - -#: admin/settings/settings-init.php:1000 -msgid "Reduced Rate%sZero Rate" -msgstr "שיעור מופחת %s שיעור אפס" - -#: admin/settings/settings-init.php:1004 -msgid "Display prices during cart/checkout:" -msgstr "הצגת מחירים בעגלה / קופה:" - -#: admin/settings/settings-init.php:1009 -msgid "Including tax" -msgstr "כולל מיסים" - -#: admin/settings/settings-init.php:1010 -msgid "Excluding tax" -msgstr "לא כולל מיסים" - -#: admin/settings/settings-init.php:1022 -msgid "Email Sender Options" -msgstr "אפשרויות שליחת דואר אלקטרוני" - -#: admin/settings/settings-init.php:1022 -msgid "" -"The following options affect the sender (email address and name) used in " -"WooCommerce emails." -msgstr "" -"האפשרויות הבאות תשפענה על פרטי השולח (כתובת אימייל ושם) שבשמו ישלחו המיילים " -"של החנות." - -#: admin/settings/settings-init.php:1025 -msgid "\"From\" Name" -msgstr "\"מאת\" שם" - -#: admin/settings/settings-init.php:1034 -msgid "\"From\" Email Address" -msgstr "\"מאת\" כתובת דואר אלקטרוני" - -#: admin/settings/settings-init.php:1047 -msgid "Email Template" -msgstr "תבנית דואר אלקטרוני" - -#: admin/settings/settings-init.php:1047 -msgid "" -"This section lets you customise the WooCommerce emails. Click here to preview your email template. For more " -"advanced control copy woocommerce/templates/emails/ to " -"yourtheme/woocommerce/emails/." -msgstr "" -"סעיף זה מאפשר לך להתאים באופן אישי את מראה האימיילים שנשלחים מהחנות. לחץ כאן כדי לצפות בתצוגה מקדימה בתבנית הדוא\"ל שלך. לשליטה מתקדמת יותר, העתק את התיקייה woocommerce/templates/emails/ לתיקיית העיצוב שלך yourtheme/woocommerce/emails/." - -#: admin/settings/settings-init.php:1050 -msgid "Header Image" -msgstr "תמונת כותרת" - -#: admin/settings/settings-init.php:1051 -msgid "" -"Enter a URL to an image you want to show in the email's header. Upload your " -"image using the media uploader." -msgstr "" -"הזן כתובת URL לתמונה שברצונך להציג בכותרת העליונה של הדואר אלקטרוני. הוסף " -"תמונה שלך באמצעות העלאת מדיה ." - -#: admin/settings/settings-init.php:1059 -msgid "Email Footer Text" -msgstr "טקסט שיופיע בתחתית האימייל" - -#: admin/settings/settings-init.php:1060 -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "הטקסט שיופיע בכותרת התחתונה של האימיילים." - -#: admin/settings/settings-init.php:1064 -msgid "Powered by WooCommerce" -msgstr "" - -#: admin/settings/settings-init.php:1068 -msgid "Base Colour" -msgstr "צבע בסיס" - -#: admin/settings/settings-init.php:1069 -msgid "" -"The base colour for WooCommerce email templates. Default #557da1." -msgstr "צבע הבסיס של תבניות אימייל. ברירת מחדל # 557da1 ." - -#: admin/settings/settings-init.php:1077 -msgid "Background Colour" -msgstr "צבע רקע" - -#: admin/settings/settings-init.php:1078 -msgid "" -"The background colour for WooCommerce email templates. Default " -"#f5f5f5." -msgstr "צבע הרקע עבור תבניות האימייל. ברירת מחדל #eeeeee ." - -#: admin/settings/settings-init.php:1086 -msgid "Email Body Background Colour" -msgstr " צבע רקע לגוף האימייל" - -#: admin/settings/settings-init.php:1087 -msgid "The main body background colour. Default #fdfdfd." -msgstr "צבע רקע הגוף העיקרי. ברירת המחדל # fdfdfd ." - -#: admin/settings/settings-init.php:1095 -msgid "Email Body Text Colour" -msgstr "צבע טקסט בגוף האימייל" - -#: admin/settings/settings-init.php:1096 -msgid "The main body text colour. Default #505050." -msgstr "צבע גוף הטקסט הראשי. ברירת המחדל # 505050 ." - -#: admin/settings/settings-payment-gateways.php:27 -#: admin/settings/settings-shipping-methods.php:29 -#: admin/woocommerce-admin-init.php:767 -#: admin/woocommerce-admin-taxonomies.php:27 -#: admin/woocommerce-admin-taxonomies.php:121 -msgid "Default" -msgstr "ברירת מחדל" - -#: admin/settings/settings-payment-gateways.php:28 -msgid "Gateway" -msgstr "שער" - -#: admin/settings/settings-payment-gateways.php:45 -msgid "Gateway ID" -msgstr "Gateway ID" - -#: admin/settings/settings-shipping-methods.php:23 -msgid "Shipping Methods" -msgstr "אפשרויות משלוח" - -#: admin/settings/settings-shipping-methods.php:25 -msgid "Drag and drop methods to control their display order." -msgstr "גרור ושחררת שיטות כדי לשלוט בסדר התצוגה שלהם." - -#: admin/settings/settings-shipping-methods.php:30 -msgid "Shipping Method" -msgstr "אפשרויות משלוח" - -#: admin/settings/settings-shipping-methods.php:46 -msgid "Method ID" -msgstr "ID אפשרות" - -#: admin/settings/settings-tax-rates.php:29 -msgid "Tax Rates for the \"%s\" Class" -msgstr "שיעורי מס מסוג "%s"" - -#: admin/settings/settings-tax-rates.php:30 -msgid "" -"Define tax rates for countries and states below. See here " -"for available alpha-2 country codes." -msgstr "" -"הגדר שיעורי מס למדינות כאן. לחץ כאן לרשימת קודי מדינה " -"אלפא-2 זמינים." - -#: admin/settings/settings-tax-rates.php:36 -msgid "Country Code" -msgstr "קוד ארץ" - -#: admin/settings/settings-tax-rates.php:36 -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "קוד ארץ בעל שתי תווים, למשל, US. השאר ריק כדי להחיל על כל הארצות." - -#: admin/settings/settings-tax-rates.php:38 -msgid "State Code" -msgstr "קוד מדינה" - -#: admin/settings/settings-tax-rates.php:38 -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "קוד מדינה בעל שתי תווים, למשל AL. השאר ריק כדי להחיל על כל המדינות." - -#: admin/settings/settings-tax-rates.php:40 -#: admin/settings/settings-tax-rates.php:217 -msgid "ZIP/Postcode" -msgstr "ZIP / מיקוד" - -#: admin/settings/settings-tax-rates.php:40 -msgid "" -"Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all areas. Wildcards (*) can be used. Ranges for numeric " -"postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "" -"הזן כאן מיקוד. אם יש ערכים מרובים, יש להפריד אותם בנקודה פסיק (;). השאר ריק " -"כדי להחיל על כל האזורים. ניתן להשתמש בתו כללי (*). טווחי מיקוד מספריים " -"(למשל 12345-12350) יורחבו למיקודים בודדים." - -#: admin/settings/settings-tax-rates.php:42 -msgid "" -"Cities for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all cities." -msgstr "" -"הזן כאן ערים. יש להפריד ערכים מרובים בנקודה פסיק (;). השאר ריק אם ברצונך " -"להחיל על כל הערים." - -#: admin/settings/settings-tax-rates.php:44 -msgid "Rate %" -msgstr "שיעור מס באחוזים" - -#: admin/settings/settings-tax-rates.php:44 -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "הזן את שיעור המיסים (באחוזים) עד 4 ספרות אחרי הנקודה העשרונית." - -#: admin/settings/settings-tax-rates.php:46 -msgid "Tax Name" -msgstr "שם מס" - -#: admin/settings/settings-tax-rates.php:46 -msgid "Enter a name for this tax rate." -msgstr "הזן שם לשיעור המס הזה." - -#: admin/settings/settings-tax-rates.php:48 -#: admin/settings/settings-tax-rates.php:217 -msgid "Priority" -msgstr "עדיפות" - -#: admin/settings/settings-tax-rates.php:48 -msgid "" -"Choose a priority for this tax rate. Only 1 matching rate per priority will " -"be used. To define multiple tax rates for a single area you need to specify " -"a different priority per rate." -msgstr "" -"בחר עדיפות לשימוש בשיעור המס הזה. ניתן להשתמש בשיעור מס אחד בלבד עבור כל " -"עדיפות. כדי להגדיר שיעורי מס מרובים לאזור יחיד אתה צריך לציין עדיפות שונה " -"לכל שיעור." - -#: admin/settings/settings-tax-rates.php:50 -#: admin/settings/settings-tax-rates.php:217 -msgid "Compound" -msgstr "מורכב" - -#: admin/settings/settings-tax-rates.php:50 -msgid "" -"Choose whether or not this is a compound rate. Compound tax rates are " -"applied on top of other tax rates." -msgstr "בחר אם זה מס מורכב. מיסים מורכבים הם מיסים שחלים על מיסים אחרים." - -#: admin/settings/settings-tax-rates.php:52 -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "בחר אם שיעור המס זה חל גם על מחיר המשלוח." - -#: admin/settings/settings-tax-rates.php:59 -msgid "Insert row" -msgstr "להוסיף שורה" - -#: admin/settings/settings-tax-rates.php:60 -msgid "Remove selected row(s)" -msgstr "הסר את השורות שנבחרו" - -#: admin/settings/settings-tax-rates.php:62 -msgid "Export CSV" -msgstr "יצוא לקובץ CSV" - -#: admin/settings/settings-tax-rates.php:63 -msgid "Import CSV" -msgstr "יבוא מקובץ CSV" - -#: admin/settings/settings-tax-rates.php:163 -msgid "No row(s) selected" -msgstr "אין שורה (ים) נבחר" - -#: admin/settings/settings-tax-rates.php:217 -msgid "Country Code" -msgstr "קוד ארץ" - -#: admin/settings/settings-tax-rates.php:217 -msgid "State Code" -msgstr "קוד מדינה" - -#: admin/settings/settings-tax-rates.php:217 -msgid "Rate %" -msgstr "שיעור מס באחוזים" - -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Name" -msgstr "שם מס" - -#: admin/woocommerce-admin-attributes.php:77 -msgid "Please, provide an attribute name, slug and type." -msgstr "אנא, הזן את שם התכונה, הכתובת והסוג." - -#: admin/woocommerce-admin-attributes.php:79 -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "הכתובת \"%s\" ארוכה מדי (28 תווים לכל היותר). קצר אותו, בבקשה." - -#: admin/woocommerce-admin-attributes.php:81 -msgid "" -"Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "הכתובת “%s” אינה מותרת משום שהיא מונח שמור. שנה אותה, בבקשה." - -#: admin/woocommerce-admin-attributes.php:85 -#: admin/woocommerce-admin-attributes.php:90 -msgid "Slug “%s” is already in use. Change it, please." -msgstr "הקליע %s\"\" כבר נמצא בשימוש. לשנות אותו, בבקשה." - -#: admin/woocommerce-admin-attributes.php:226 -msgid "Edit Attribute" -msgstr "עריכת תכונה" - -#: admin/woocommerce-admin-attributes.php:236 -#: admin/woocommerce-admin-attributes.php:375 -msgid "Name for the attribute (shown on the front-end)." -msgstr "שם התכונה (המוצגת בצד ממשק הלקוח)." - -#: admin/woocommerce-admin-attributes.php:241 -#: admin/woocommerce-admin-attributes.php:307 -#: admin/woocommerce-admin-attributes.php:379 -msgid "Slug" -msgstr "כתובת" - -#: admin/woocommerce-admin-attributes.php:245 -#: admin/woocommerce-admin-attributes.php:381 -msgid "" -"Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "כתובת ייחודית / ייחוס לתכונה; חייבת להיות קצרה יותר מ 28 תווים." - -#: admin/woocommerce-admin-attributes.php:254 -#: admin/woocommerce-admin-attributes.php:387 -msgid "Select" -msgstr "רשימה נפתחת" - -#: admin/woocommerce-admin-attributes.php:255 -#: admin/woocommerce-admin-attributes.php:388 -msgid "Text" -msgstr "טקסט" - -#: admin/woocommerce-admin-attributes.php:258 -#: admin/woocommerce-admin-attributes.php:391 -msgid "" -"Determines how you select attributes for products. Text " -"allows manual entry via the product page, whereas select " -"attribute terms can be defined from this section. If you plan on using an " -"attribute for variations use select." -msgstr "" -"קובע את אופן בחירת תכונות למוצרים. טקסט מאפשר הזנה ידנית " -"דרך עמוד המוצר, בעוד את הגדרות תכונת הרשימה ניתן להגדיר " -"באזור זה. אם אתם מתכננים להשתמש בתכונה עבור וריאציות בחר ברשימה לסוג התכונה." - -#: admin/woocommerce-admin-attributes.php:263 -#: admin/woocommerce-admin-attributes.php:395 -msgid "Default sort order" -msgstr "סידור ברירת מחדל" - -#: admin/woocommerce-admin-attributes.php:267 -#: admin/woocommerce-admin-attributes.php:335 -#: admin/woocommerce-admin-attributes.php:397 -msgid "Custom ordering" -msgstr "סידור מותאם אישית" - -#: admin/woocommerce-admin-attributes.php:269 -#: admin/woocommerce-admin-attributes.php:332 -#: admin/woocommerce-admin-attributes.php:399 -msgid "Term ID" -msgstr "מזהה מונח" - -#: admin/woocommerce-admin-attributes.php:271 -#: admin/woocommerce-admin-attributes.php:401 -msgid "" -"Determines the sort order on the frontend for this attribute. If using " -"custom ordering, you can drag and drop the terms in this attribute" -msgstr "" -"קובע את סדר התצוגה בממשק הלקוח עבור תכונה זאת. אם אתם משתמשים בסידור מותאם " -"אישית, תוכל לגרור ולשחרר את הערכים בתכונה זו" - -#: admin/woocommerce-admin-attributes.php:276 -msgid "Update" -msgstr "עדכן" - -#: admin/woocommerce-admin-attributes.php:309 -msgid "Order by" -msgstr "מיון" - -#: admin/woocommerce-admin-attributes.php:310 -msgid "Terms" -msgstr "במונחים" - -#: admin/woocommerce-admin-attributes.php:355 -msgid "Configure terms" -msgstr "להגדיר מונחים" - -#: admin/woocommerce-admin-attributes.php:359 -msgid "No attributes currently exist." -msgstr "אין כרגע תכונות קיימות." - -#: admin/woocommerce-admin-attributes.php:369 -msgid "Add New Attribute" -msgstr "הוסף תכונה חדשה" - -#: admin/woocommerce-admin-attributes.php:370 -msgid "" -"Attributes let you define extra product data, such as size or colour. You " -"can use these attributes in the shop sidebar using the \"layered nav\" " -"widgets. Please note: you cannot rename an attribute later on." -msgstr "" -"תכונות מאפשרות לך להגדיר נתוני מוצר נוספים, כגון גודל או צבע. אתה יכול " -"להשתמש בתכונה זאת לסינון מוצרים בסרגל הצידי של החנות באמצעות שימוש בוידג'ט " -"\"ניווט בשכבות\". שימו לב: לא ניתן לשנות את שם התכונה לאחר הגדרת וריאציות " -"לתכונה ושימוש בתכונה.." - -#: admin/woocommerce-admin-attributes.php:404 -msgid "Add Attribute" -msgstr "הוסף תכונה" - -#: admin/woocommerce-admin-attributes.php:415 -msgid "Are you sure you want to delete this attribute?" -msgstr "האם אתה בטוח שברצונך למחוק תכונה זאת?" - -#: admin/woocommerce-admin-content.php:26 -#: admin/woocommerce-admin-reports.php:30 -#: admin/woocommerce-admin-reports.php:75 -#: admin/woocommerce-admin-reports.php:91 -#: admin/woocommerce-admin-reports.php:102 -msgid "Overview" -msgstr "סקירה" - -#: admin/woocommerce-admin-content.php:29 -msgid "" -"Thank you for using WooCommerce :) Should you need help using or extending " -"WooCommerce please read the documentation. For further " -"assistance you can use the community forum or if you have " -"access, our support desk." -msgstr "" -"תודה על השימוש בWooCommerce :) אם אתה זקוק לעזרה בשימוש או הרחבת " -"WooCommerce קרא את התיעוד. לעזרה נוספת ניתן להשתמש פורום הקהילה או אם יש לך גישה, פאנל התמיכה " -"שלנו ." - -#: admin/woocommerce-admin-content.php:31 -msgid "" -"If you are having problems, or to assist us with support, please check the " -"status page to identify any problems with your configuration:" -msgstr "" -"אם אתה נתקלת בבעיות, או כדי לסייע לנו עם תמיכה, אנא בדוק בדף הסטטוס לזהות " -"בעיות בתצורה שלך:" - -#: admin/woocommerce-admin-content.php:33 admin/woocommerce-admin-init.php:87 -#: admin/woocommerce-admin-status.php:26 -msgid "System Status" -msgstr "מצב מערכת" - -#: admin/woocommerce-admin-content.php:35 -msgid "" -"If you come across a bug, or wish to contribute to the project you can also " -"get involved on GitHub." -msgstr "" -"אם אתה נתקלת בבאג, או רוצה לתרום לפרויקט אתה יכול גם להשתתף " -"ב GitHub ." - -#: admin/woocommerce-admin-content.php:43 -msgid "" -"Here you can set up your store and customise it to fit your needs. The " -"sections available from the settings page include:" -msgstr "" -"כאן אתה יכול להגדיר את החנות שלך ולהתאים אותו כך שתתאים לצרכימים שלך. " -"הסעיפים הזמינים מדף ההגדרות כוללים:" - -#: admin/woocommerce-admin-content.php:44 -msgid "" -"General settings such as your shop base, currency, and script/styling " -"options which affect features used in your store." -msgstr "" -"הגדרות כלליות כגון בסיס החנות שלך, מטבע, קוד / עיצוב ואפשרויות המשפיעות על " -"תכונות בשימוש בחנות שלך." - -#: admin/woocommerce-admin-content.php:45 -#: admin/woocommerce-admin-settings.php:182 -msgid "Pages" -msgstr "עמודים" - -#: admin/woocommerce-admin-content.php:45 -msgid "" -"This is where important store page are defined. You can also set up other " -"pages (such as a Terms page) here." -msgstr "" -"זה המקום שבי דף חנות חשוב מוגדר. ניתן גם להגדיר את דפים אחרים (כגון דף " -"תנאים) כאן." - -#: admin/woocommerce-admin-content.php:46 -msgid "" -"Options for how things like price, images and weights appear in your product " -"catalog." -msgstr "" -"אפשרויות עבור כמה דברים כמו תמונות, מחיר ומשקל המופיעים בקטלוג המוצרים שלך." - -#: admin/woocommerce-admin-content.php:47 -msgid "Options concerning stock and stock notices." -msgstr "אפשרויות הנוגעים להודעות מלאות והמלאי." - -#: admin/woocommerce-admin-content.php:48 -msgid "Options concerning tax, including international and local tax rates." -msgstr "אפשרויות לגבי המיסים, לרבות שיעורי מע\"מ בינלאומיים ומקומיים." - -#: admin/woocommerce-admin-content.php:49 -msgid "" -"This is where shipping options are defined, and shipping methods are set up." -msgstr "זה המקום שבו מגדירים אפשרויות משלוח " - -#: admin/woocommerce-admin-content.php:50 -msgid "Payment Methods" -msgstr "אמצעי תשלום" - -#: admin/woocommerce-admin-content.php:50 -msgid "" -"This is where payment gateway options are defined, and individual payment " -"gateways are set up." -msgstr "" -"זה המקום בו אפשרויות תשלום Gateway מוגדרות, ותשלום שערים בודדים מוגדרים." - -#: admin/woocommerce-admin-content.php:51 -#: admin/woocommerce-admin-settings.php:187 -msgid "Emails" -msgstr "אימיילים" - -#: admin/woocommerce-admin-content.php:51 -msgid "Here you can customise the way WooCommerce emails appear." -msgstr "כאן אתה יכול להתאים אישית את מראה האימיילים של החנות." - -#: admin/woocommerce-admin-content.php:52 -#: admin/woocommerce-admin-settings.php:188 -msgid "Integration" -msgstr "הגדרות כלליות" - -#: admin/woocommerce-admin-content.php:52 -msgid "" -"The integration section contains options for third party services which " -"integrate with WooCommerce." -msgstr "" -"סעיף האינטגרציה מכיל אפשרויות עבור שירותי צד שלישיים שמשתלבים עם WooCommerce." - -#: admin/woocommerce-admin-content.php:57 admin/woocommerce-admin-init.php:64 -msgid "Reports" -msgstr "דוחות" - -#: admin/woocommerce-admin-content.php:59 -msgid "" -"The reports section can be accessed from the left-hand navigation menu. Here " -"you can generate reports for sales and customers." -msgstr " כאן אתה יכול להפיק דוחות על מכירות ולקוחות." - -#: admin/woocommerce-admin-content.php:60 -#: admin/woocommerce-admin-reports.php:27 -#: admin/woocommerce-admin-reports.php:986 -#: admin/woocommerce-admin-reports.php:1082 -#: admin/woocommerce-admin-reports.php:1199 -msgid "Sales" -msgstr "מבצעים" - -#: admin/woocommerce-admin-content.php:60 -msgid "Reports for sales based on date, top sellers and top earners." -msgstr "דוחות מכירות לפי תאריך" - -#: admin/woocommerce-admin-content.php:61 -msgid "Coupon usage reports." -msgstr "דוחות שימוש קופון." - -#: admin/woocommerce-admin-content.php:62 -#: admin/woocommerce-admin-reports.php:88 -msgid "Customers" -msgstr "לקוחות" - -#: admin/woocommerce-admin-content.php:62 -msgid "Customer reports, such as signups per day." -msgstr "דוחות לקוחות , כגון הרשמות ליום." - -#: admin/woocommerce-admin-content.php:63 -msgid "Stock reports for low stock and out of stock items." -msgstr "דיווחי מניות עבור מניות והחוצה נמוכות של מלאי מוצרים." - -#: admin/woocommerce-admin-content.php:68 -#: admin/woocommerce-admin-dashboard.php:142 -msgid "Orders" -msgstr "הזמנות" - -#: admin/woocommerce-admin-content.php:70 -msgid "" -"The orders section can be accessed from the left-hand navigation menu. Here " -"you can view and manage customer orders." -msgstr "כאן תוכלו להציג ולנהל הזמנות של לקוחות." - -#: admin/woocommerce-admin-content.php:71 -msgid "" -"Orders can also be added from this section if you want to set them up for a " -"customer manually." -msgstr "" -"הזמנות ניתן גם להוסיף מסעיף זה, אם אתה רוצה להגדיר אותם ללקוח באופן ידני." - -#: admin/woocommerce-admin-content.php:78 -msgid "" -"Coupons can be managed from this section. Once added, customers will be able " -"to enter coupon codes on the cart/checkout page. If a customer uses a coupon " -"code they will be viewable when viewing orders." -msgstr "" -"קופונים ניתן לנהל מסעיף זה. ברגע שהוסיף, יוכלו לקוחות להיכנס לקודי קופון בדף " -"היציאה של העגלה /. אם לקוח משתמש בקוד הקופון שניתן יהיה להציג בעת הצגת " -"הזמנות." - -#: admin/woocommerce-admin-content.php:82 -msgid "For more information:" -msgstr "למידע נוסף על ההזמה:" - -#: admin/woocommerce-admin-content.php:83 admin/woocommerce-admin-init.php:62 -msgid "WooCommerce" -msgstr "WooCommerce" - -#: admin/woocommerce-admin-content.php:84 -msgid "Project on WordPress.org" -msgstr "פרויקט על WordPress.org" - -#: admin/woocommerce-admin-content.php:85 -msgid "Project on Github" -msgstr "פרויקט על Github" - -#: admin/woocommerce-admin-content.php:86 -msgid "WooCommerce Docs" -msgstr "WooCommerce Docs" - -#: admin/woocommerce-admin-content.php:87 -msgid "Official Extensions" -msgstr "רחבות רשמיות" - -#: admin/woocommerce-admin-content.php:88 -msgid "Official Themes" -msgstr "נושאים רשמיים" - -#: admin/woocommerce-admin-dashboard.php:40 -msgid "Monthly Sales" -msgstr "מכירות החודש" - -#: admin/woocommerce-admin-dashboard.php:43 -msgid "WooCommerce Right Now" -msgstr "עכשיו" - -#: admin/woocommerce-admin-dashboard.php:44 -msgid "WooCommerce Recent Orders" -msgstr "WooCommerce הזמנות אחרונות" - -#: admin/woocommerce-admin-dashboard.php:45 -msgid "WooCommerce Recent Reviews" -msgstr "סקירות אחרונות" - -#: admin/woocommerce-admin-dashboard.php:78 -msgid "Shop Content" -msgstr "תוכן חנות" - -#: admin/woocommerce-admin-dashboard.php:84 -#: admin/woocommerce-admin-functions.php:194 -#: admin/woocommerce-admin-init.php:771 -#: admin/woocommerce-admin-reports.php:985 -#: admin/woocommerce-admin-reports.php:1081 -msgid "Product" -msgid_plural "Products" -msgstr[0] "מוצר" -msgstr[1] "מוצר" - -#: admin/woocommerce-admin-dashboard.php:98 -msgid "Product Category" -msgid_plural "Product Categories" -msgstr[0] "קטגוריית מוצר" -msgstr[1] "קטגוריית מוצר" - -#: admin/woocommerce-admin-dashboard.php:112 -msgid "Product Tag" -msgid_plural "Product Tags" -msgstr[0] "תג מוצר" -msgstr[1] "תג מוצר" - -#: admin/woocommerce-admin-dashboard.php:126 -msgid "Attribute" -msgid_plural "Attributes" -msgstr[0] "תכונה" -msgstr[1] "תכונות" - -#: admin/woocommerce-admin-dashboard.php:148 -msgid "Pending" -msgstr "בהמתנה" - -#: admin/woocommerce-admin-dashboard.php:162 -msgid "On-Hold" -msgstr "הזמנה חדשה" - -#: admin/woocommerce-admin-dashboard.php:190 -msgid "Completed" -msgstr "הושלם" - -#: admin/woocommerce-admin-dashboard.php:207 -msgid "You are using WooCommerce %s." -msgstr "אתה משתמש חנות %s ." - -#: admin/woocommerce-admin-dashboard.php:238 -msgid "l jS \\of F Y h:i:s A" -msgstr "l jS \\of F Y h:i:s A" - -#: admin/woocommerce-admin-dashboard.php:239 -msgid "item" -msgid_plural "items" -msgstr[0] "פריטים" -msgstr[1] "פריטים" - -#: admin/woocommerce-admin-dashboard.php:239 -msgid "Total:" -msgstr "סך הכל:" - -#: admin/woocommerce-admin-dashboard.php:245 -msgid "There are no product orders yet." -msgstr "אין הזמנות מוצרים עדיין." - -#: admin/woocommerce-admin-dashboard.php:279 -msgid "out of 5" -msgstr "מתוך 5" - -#: admin/woocommerce-admin-dashboard.php:287 -msgid "There are no product reviews yet." -msgstr "עדיין אין ביקורות." - -#: admin/woocommerce-admin-dashboard.php:428 -msgid "Sold" -msgstr "נמכרים" - -#: admin/woocommerce-admin-dashboard.php:429 -msgid "Earned" -msgstr "הרוויח" - -#: admin/woocommerce-admin-functions.php:184 -#: admin/woocommerce-admin-install.php:222 -msgid "Order Received" -msgstr "הזמנה התקבלה" - -#: admin/woocommerce-admin-functions.php:186 -msgid "" -"Thank you, we are now processing your order. Your order's details are below." -msgstr "תודה, עכשיו אנחנו מעבדים את ההזמנה. פרטי ההזמנה שלך נמצא מתחת." - -#: admin/woocommerce-admin-functions.php:188 -msgid "Order:" -msgstr "הזמנה:" - -#: admin/woocommerce-admin-functions.php:195 -msgid "Quantity" -msgstr "כמות" - -#: admin/woocommerce-admin-functions.php:208 -msgid "Order total:" -msgstr "סך הכל לתשלום:" - -#: admin/woocommerce-admin-functions.php:214 -msgid "Customer details" -msgstr "פרטי הלקוח" - -#: admin/woocommerce-admin-functions.php:220 -msgid "Billing address" -msgstr "כתובת חיוב" - -#: admin/woocommerce-admin-functions.php:227 -msgid "Shipping address" -msgstr "כתובת למשלוח" - -#: admin/woocommerce-admin-functions.php:459 -msgid "Could not compile woocommerce.less:" -msgstr "לא יכל לקמפל woocommerce.less:" - -#: admin/woocommerce-admin-functions.php:480 -#: admin/woocommerce-admin-functions.php:481 -msgid "Mark processing" -msgstr "מארק עיבוד" - -#: admin/woocommerce-admin-functions.php:483 -#: admin/woocommerce-admin-functions.php:484 -msgid "Mark completed" -msgstr "סמן סיום" - -#: admin/woocommerce-admin-functions.php:521 -msgid "Order status changed by bulk edit:" -msgstr "מצב הזמנה לשינוי על ידי עריכה בכמות גדולה:" - -#: admin/woocommerce-admin-functions.php:544 -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "מצב הזמנה השתנה." -msgstr[1] "מצב הזמנה השתנה." - -#: admin/woocommerce-admin-init.php:86 -msgid "WooCommerce Settings" -msgstr "הגדרות חנות" - -#: admin/woocommerce-admin-init.php:87 -msgid "WooCommerce Status" -msgstr "מצב חנות" - -#: admin/woocommerce-admin-init.php:140 admin/woocommerce-admin-init.php:142 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "הזמנות" - -#: admin/woocommerce-admin-init.php:446 -msgid "" -"Are you sure you want to remove the selected items? If you have previously " -"reduced this item's stock, or this order was submitted by a customer, you " -"will need to manually restore the item's stock." -msgstr "" -"האם אתה בטוח שברצונך להסיר את הפריטים שנבחרו? אם הפחת בעבר מניותיו של פריט " -"זה או צו זה הוגש על ידי לקוח, תצטרך ידני כדי לשחזר את המנייה של אותו הפריט." - -#: admin/woocommerce-admin-init.php:447 -msgid "Please select some items." -msgstr "בחר מספר פריטים." - -#: admin/woocommerce-admin-init.php:448 -msgid "Remove this item meta?" -msgstr "הסר מטא פריט זה?" - -#: admin/woocommerce-admin-init.php:449 -msgid "Remove this attribute?" -msgstr "להסיר את התכונה הזאת?" - -#: admin/woocommerce-admin-init.php:457 -msgid "Enter a name for the new attribute term:" -msgstr "הזן שם עבור ערך התכונה:" - -#: admin/woocommerce-admin-init.php:458 -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "חישוב סכומים הבוסס על פריטי סדר, הנחות ומשלוח?" - -#: admin/woocommerce-admin-init.php:459 -msgid "" -"Calculate line taxes? This will calculate taxes based on the customers " -"country. If no billing/shipping is set it will use the store base country." -msgstr "" -"חישוב מסי שורות? זה ייחשב מסים המבוססים על מדינת הלקוחות. אם אין חיוב / " -"משלוח מוגדר הוא ישתמש מדינת בסיס החנות." - -#: admin/woocommerce-admin-init.php:460 -msgid "" -"Copy billing information to shipping information? This will remove any " -"currently entered shipping information." -msgstr "פרטי חיוב של העתקה למשלוח מידע? זו תסיר את כל מידע משלוח נכנס ברגע זה." - -#: admin/woocommerce-admin-init.php:461 -msgid "" -"Load the customer's billing information? This will remove any currently " -"entered billing information." -msgstr "טען את פרטי החיוב של הלקוח? זו תסיר את כל פרטי חיוב נכנסו כרגע." - -#: admin/woocommerce-admin-init.php:462 -msgid "" -"Load the customer's shipping information? This will remove any currently " -"entered shipping information." -msgstr "טען מידע המשלוח של הלקוח? זו תסיר את כל מידע משלוח נכנס ברגע זה." - -#: admin/woocommerce-admin-init.php:466 -msgid "No customer selected" -msgstr "לא נבחר לקוח" - -#: admin/woocommerce-admin-init.php:675 -msgid "Product updated. View Product" -msgstr "המוצר התעדכן. צפה במוצר " - -#: admin/woocommerce-admin-init.php:676 admin/woocommerce-admin-init.php:691 -#: admin/woocommerce-admin-init.php:706 -msgid "Custom field updated." -msgstr "שדה מותאם אישית מעודכן." - -#: admin/woocommerce-admin-init.php:677 admin/woocommerce-admin-init.php:692 -#: admin/woocommerce-admin-init.php:707 -msgid "Custom field deleted." -msgstr "שדה מותאם אישית נמחק." - -#: admin/woocommerce-admin-init.php:678 -msgid "Product updated." -msgstr "המוצר התעדכן." - -#: admin/woocommerce-admin-init.php:679 -msgid "Product restored to revision from %s" -msgstr "המוצר שוחזר מגרסה %s" - -#: admin/woocommerce-admin-init.php:680 -msgid "Product published. View Product" -msgstr "המוצר שפורסם. צפה במוצר " - -#: admin/woocommerce-admin-init.php:681 -msgid "Product saved." -msgstr "מוצר נשמר." - -#: admin/woocommerce-admin-init.php:682 -msgid "Product submitted. Preview Product" -msgstr "המוצר נשלח. תצוגה מקדימה למוצר " - -#: admin/woocommerce-admin-init.php:683 -msgid "" -"Product scheduled for: %1$s. Preview Product" -msgstr "" -"מוצר מתוכנן ל: %1$s. תצוגה מקדימה של המוצר" - -#: admin/woocommerce-admin-init.php:684 admin/woocommerce-admin-init.php:699 -#: admin/woocommerce-admin-init.php:714 -msgid "M j, Y @ G:i" -msgstr "M j, Y @ G: i" - -#: admin/woocommerce-admin-init.php:685 -msgid "" -"Product draft updated. Preview Product" -msgstr "" -"טיוטת המוצר עודכנה. תצוגה מקדימה " - -#: admin/woocommerce-admin-init.php:690 admin/woocommerce-admin-init.php:693 -#: admin/woocommerce-admin-init.php:695 -msgid "Order updated." -msgstr "הזמנה עודכנה." - -#: admin/woocommerce-admin-init.php:694 -msgid "Order restored to revision from %s" -msgstr "כדי לשחזר לגרסה %s" - -#: admin/woocommerce-admin-init.php:696 -msgid "Order saved." -msgstr "הזמנה נשמרה." - -#: admin/woocommerce-admin-init.php:697 -msgid "Order submitted." -msgstr "הזמנה נשלחה." - -#: admin/woocommerce-admin-init.php:698 -msgid "Order scheduled for: %1$s." -msgstr "הצו נקבע ל: %1$s ." - -#: admin/woocommerce-admin-init.php:700 -msgid "Order draft updated." -msgstr "טיוטת הזמנה עודכנה." - -#: admin/woocommerce-admin-init.php:705 admin/woocommerce-admin-init.php:708 -#: admin/woocommerce-admin-init.php:710 -msgid "Coupon updated." -msgstr "קופון התעדכן." - -#: admin/woocommerce-admin-init.php:709 -msgid "Coupon restored to revision from %s" -msgstr "קופון שוחזר לגרסה %s" - -#: admin/woocommerce-admin-init.php:711 -msgid "Coupon saved." -msgstr "קופון נשמר." - -#: admin/woocommerce-admin-init.php:712 -msgid "Coupon submitted." -msgstr "קופון נשלח." - -#: admin/woocommerce-admin-init.php:713 -msgid "Coupon scheduled for: %1$s." -msgstr "קופון נקבע ל: %1$s ." - -#: admin/woocommerce-admin-init.php:715 -msgid "Coupon draft updated." -msgstr "טיוטת קופון מעודכן." - -#: admin/woocommerce-admin-init.php:732 -msgid "Order notes" -msgstr "הערות הזמנה" - -#: admin/woocommerce-admin-init.php:747 -msgid "" -"These settings control the permalinks used for products. These settings only " -"apply when not using \"default\" permalinks above." -msgstr "" -"הגדרות אלה קובעות את הקישורים הקבועים למוצרים. הגדרות אלה חלות רק כאשר " -" לא משתמשים בקישורים הקבועים \"ברירת המחדל\" מעל." - -#: admin/woocommerce-admin-init.php:754 -msgctxt "default-slug" -msgid "shop" -msgstr "חנות" - -#: admin/woocommerce-admin-init.php:755 -msgctxt "default-slug" -msgid "product" -msgstr "תוצר" - -#: admin/woocommerce-admin-init.php:776 -msgid "Shop base" -msgstr "בסיס חנות" - -#: admin/woocommerce-admin-init.php:780 -msgid "Shop base with category" -msgstr "בסיס חנות עם קטגוריה" - -#: admin/woocommerce-admin-init.php:786 -msgid "Custom Base" -msgstr "בסיס מותאם אישית" - -#: admin/woocommerce-admin-init.php:788 -msgid "" -"Enter a custom base to use. A base must be set or WordPress " -"will use default instead." -msgstr "" -"הזן את בסיס מותאם אישית לשימוש. בסיס חייב להיות סט או " -"וורדפרס ישתמש בברירת מחדל במקום." - -#: admin/woocommerce-admin-init.php:816 -msgid "Product permalink base" -msgstr "מוצר permalink בסיס" - -#: admin/woocommerce-admin-init.php:821 -msgid "Product category base" -msgstr "בסיס קטגורית מוצר" - -#: admin/woocommerce-admin-init.php:828 -msgid "Product tag base" -msgstr "בסיס תג מוצר" - -#: admin/woocommerce-admin-init.php:835 -msgid "Product attribute base" -msgstr "תכונת מוצר בסיסית" - -#: admin/woocommerce-admin-install.php:192 -msgctxt "page_slug" -msgid "shop" -msgstr "חנות" - -#: admin/woocommerce-admin-install.php:192 -msgid "Shop" -msgstr "חנות" - -#: admin/woocommerce-admin-install.php:195 -msgctxt "page_slug" -msgid "cart" -msgstr "סל קניות" - -#: admin/woocommerce-admin-install.php:195 -#: admin/woocommerce-admin-status.php:277 -msgid "Cart" -msgstr "סל קניות" - -#: admin/woocommerce-admin-install.php:198 -msgctxt "page_slug" -msgid "checkout" -msgstr "לקופה" - -#: admin/woocommerce-admin-install.php:201 -msgctxt "page_slug" -msgid "my-account" -msgstr "בחשבון שלי" - -#: admin/woocommerce-admin-install.php:201 -#: admin/woocommerce-admin-status.php:293 -msgid "My Account" -msgstr "החשבון שלי" - -#: admin/woocommerce-admin-install.php:207 -msgctxt "page_slug" -msgid "edit-address" -msgstr "עריכת כתובת" - -#: admin/woocommerce-admin-install.php:207 -msgid "Edit My Address" -msgstr "עריכת הכתובת שלי" - -#: admin/woocommerce-admin-install.php:210 -msgctxt "page_slug" -msgid "view-order" -msgstr "הצג הזמנה" - -#: admin/woocommerce-admin-install.php:210 -#: admin/woocommerce-admin-status.php:301 -msgid "View Order" -msgstr "הצג הזמנה" - -#: admin/woocommerce-admin-install.php:213 -msgctxt "page_slug" -msgid "change-password" -msgstr "שינוי סיסמה" - -#: admin/woocommerce-admin-install.php:213 -#: admin/woocommerce-admin-status.php:305 -msgid "Change Password" -msgstr "שינוי סיסמה" - -#: admin/woocommerce-admin-install.php:216 -msgctxt "page_slug" -msgid "logout" -msgstr "התנתק" - -#: admin/woocommerce-admin-install.php:216 -msgid "Logout" -msgstr "התנתק" - -#: admin/woocommerce-admin-install.php:219 -msgctxt "page_slug" -msgid "pay" -msgstr "תשלום" - -#: admin/woocommerce-admin-install.php:219 -msgid "Checkout → Pay" -msgstr "תשלום - לקופה" - -#: admin/woocommerce-admin-install.php:222 -msgctxt "page_slug" -msgid "order-received" -msgstr "הזמנות שהתקבלו" - -#: admin/woocommerce-admin-reports.php:36 -msgid "Sales by day" -msgstr "מכירות לפי יום" - -#: admin/woocommerce-admin-reports.php:41 -msgid "Sales by month" -msgstr "מכירות לפי חודש" - -#: admin/woocommerce-admin-reports.php:46 -msgid "Taxes by month" -msgstr "מיסים לפי חודשים" - -#: admin/woocommerce-admin-reports.php:51 -msgid "Product Sales" -msgstr "מוצרים במבצע" - -#: admin/woocommerce-admin-reports.php:56 -msgid "Top sellers" -msgstr "הכי נמכרים" - -#: admin/woocommerce-admin-reports.php:61 -msgid "Top earners" -msgstr "הכי רווחיים" - -#: admin/woocommerce-admin-reports.php:66 -msgid "Sales by category" -msgstr "מכירות לפי קטגוריה" - -#: admin/woocommerce-admin-reports.php:81 -msgid "Discounts by coupon" -msgstr "נחות של קופון" - -#: admin/woocommerce-admin-reports.php:232 -#: admin/woocommerce-admin-reports.php:497 -#: admin/woocommerce-admin-reports.php:702 -#: admin/woocommerce-admin-reports.php:883 -msgid "Sales amount" -msgstr "סך כל המכירות" - -#: admin/woocommerce-admin-reports.php:237 -#: admin/woocommerce-admin-reports.php:497 -#: admin/woocommerce-admin-reports.php:702 -#: admin/woocommerce-admin-reports.php:883 -msgid "Number of sales" -msgstr "מספר המכירות" - -#: admin/woocommerce-admin-reports.php:369 -msgid "Total sales" -msgstr "סך כל המכירות" - -#: admin/woocommerce-admin-reports.php:371 -#: admin/woocommerce-admin-reports.php:377 -#: admin/woocommerce-admin-reports.php:383 -#: admin/woocommerce-admin-reports.php:389 -#: admin/woocommerce-admin-reports.php:395 -#: admin/woocommerce-admin-reports.php:401 -#: admin/woocommerce-admin-reports.php:644 -#: admin/woocommerce-admin-reports.php:650 -#: admin/woocommerce-admin-reports.php:656 -#: admin/woocommerce-admin-reports.php:662 -#: admin/woocommerce-admin-reports.php:828 -#: admin/woocommerce-admin-reports.php:834 -#: admin/woocommerce-admin-reports.php:840 -#: admin/woocommerce-admin-reports.php:846 -#: admin/woocommerce-admin-reports.php:1364 -#: admin/woocommerce-admin-reports.php:1370 -#: admin/woocommerce-admin-reports.php:1376 -#: admin/woocommerce-admin-reports.php:1810 -#: admin/woocommerce-admin-reports.php:1816 -#: admin/woocommerce-admin-reports.php:1822 -#: admin/woocommerce-admin-reports.php:1828 -#: admin/woocommerce-admin-reports.php:1834 -#: admin/woocommerce-admin-reports.php:1840 -#: admin/woocommerce-admin-reports.php:2304 -#: admin/woocommerce-admin-reports.php:2315 -#: admin/woocommerce-admin-reports.php:2326 -msgid "n/a" -msgstr "אין מידע" - -#: admin/woocommerce-admin-reports.php:375 -msgid "Total orders" -msgstr "סך כל ההזמנות" - -#: admin/woocommerce-admin-reports.php:377 -#: admin/woocommerce-admin-reports.php:650 -#: admin/woocommerce-admin-reports.php:834 -msgid "items" -msgstr "פריטים" - -#: admin/woocommerce-admin-reports.php:381 -msgid "Average order total" -msgstr "מחיר הזמנה ממוצעת" - -#: admin/woocommerce-admin-reports.php:387 -msgid "Average order items" -msgstr "מחיר מוצר ממוצע" - -#: admin/woocommerce-admin-reports.php:393 -msgid "Discounts used" -msgstr "הנחות המשמשות" - -#: admin/woocommerce-admin-reports.php:399 -msgid "Total shipping costs" -msgstr "סך כל עלויות המשלוח" - -#: admin/woocommerce-admin-reports.php:407 -msgid "This month's sales" -msgstr "המכירות של חודש זה" - -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1356 -msgid "From:" -msgstr "מ:" - -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1356 -msgid "To:" -msgstr "עד:" - -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:821 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1229 -#: admin/woocommerce-admin-reports.php:1356 -#: admin/woocommerce-admin-reports.php:1489 -#: admin/woocommerce-admin-reports.php:2293 -#: admin/woocommerce-admin-reports.php:2476 -msgid "Show" -msgstr "הצג" - -#: admin/woocommerce-admin-reports.php:642 -msgid "Total sales in range" -msgstr "סך כל המכירות בזמן שנבחר" - -#: admin/woocommerce-admin-reports.php:648 -msgid "Total orders in range" -msgstr "סך כל ההזמנות בזמן שנבחר" - -#: admin/woocommerce-admin-reports.php:654 -msgid "Average order total in range" -msgstr "ממוצע סך הזמנות בזמן שנבחר" - -#: admin/woocommerce-admin-reports.php:660 -msgid "Average order items in range" -msgstr "ממוצע מוצרים בהזמנה בזמן שנבחר" - -#: admin/woocommerce-admin-reports.php:668 -msgid "Sales in range" -msgstr "מכירות בזמן שנבחר" - -#: admin/woocommerce-admin-reports.php:815 -#: admin/woocommerce-admin-reports.php:2287 -msgid "Year:" -msgstr "שנה:" - -#: admin/woocommerce-admin-reports.php:826 -msgid "Total sales for year" -msgstr "סך מכירות לשנה" - -#: admin/woocommerce-admin-reports.php:832 -msgid "Total orders for year" -msgstr "סך הזמנות לשנה" - -#: admin/woocommerce-admin-reports.php:838 -msgid "Average order total for year" -msgstr "הממוצע כולל צו לתקופה של שנה" - -#: admin/woocommerce-admin-reports.php:844 -msgid "Average order items for year" -msgstr "ממוצע פריטים בהזמנה לשנה" - -#: admin/woocommerce-admin-reports.php:852 -msgid "Monthly sales for year" -msgstr "ממוצע מכירות חודשי לשנה" - -#: admin/woocommerce-admin-reports.php:1000 -msgid "Product does not exist" -msgstr "מוצר אינו קיים" - -#: admin/woocommerce-admin-reports.php:1097 -msgid "Product no longer exists" -msgstr "מוצר כבר לא קיים" - -#: admin/woocommerce-admin-reports.php:1194 -msgid "Sales for %s:" -msgstr "מבצעים עבור %s :" - -#: admin/woocommerce-admin-reports.php:1198 -#: admin/woocommerce-admin-reports.php:2335 -msgid "Month" -msgstr "חודש" - -#: admin/woocommerce-admin-reports.php:1219 -msgid "No sales :(" -msgstr "אין מכירות :(" - -#: admin/woocommerce-admin-reports.php:1362 -msgid "Total orders containing coupons" -msgstr "סך כל ההזמנות המכילות קופונים" - -#: admin/woocommerce-admin-reports.php:1368 -msgid "Percent of orders containing coupons" -msgstr "אחוזים מצווים המכילים קופונים" - -#: admin/woocommerce-admin-reports.php:1374 -msgid "Total coupon discount" -msgstr "סך כל הנחות הקופונים" - -#: admin/woocommerce-admin-reports.php:1383 -msgid "Most popular coupons" -msgstr "הקופונים הפופולריים ביותר" - -#: admin/woocommerce-admin-reports.php:1393 -msgid "Used 1 time" -msgid_plural "Used %d times" -msgstr[0] "פעם 1 בשימוש" -msgstr[1] "פעם 1 בשימוש" - -#: admin/woocommerce-admin-reports.php:1396 -#: admin/woocommerce-admin-reports.php:1418 -msgid "No coupons found" -msgstr "לא נמצאו שוברים" - -#: admin/woocommerce-admin-reports.php:1405 -msgid "Greatest discount amount" -msgstr "סכום ההנחה הגדול ביותר" - -#: admin/woocommerce-admin-reports.php:1415 -msgid "Discounted %s" -msgstr "הנחה %s" - -#: admin/woocommerce-admin-reports.php:1474 -#: admin/woocommerce-admin-reports.php:2453 -msgid "Show:" -msgstr "הצג" - -#: admin/woocommerce-admin-reports.php:1531 -msgid "Coupon" -msgstr "קופון" - -#: admin/woocommerce-admin-reports.php:1614 -msgid "Top coupon" -msgstr "הקופון למעלה" - -#: admin/woocommerce-admin-reports.php:1622 -msgid "Worst coupon" -msgstr "הקופון הכי הגרוע" - -#: admin/woocommerce-admin-reports.php:1630 -msgid "Discount average" -msgstr "ממוצע דיסקונט" - -#: admin/woocommerce-admin-reports.php:1638 -msgid "Discount median" -msgstr "חציון דיסקונט" - -#: admin/woocommerce-admin-reports.php:1658 -msgid "Monthly discounts by coupon" -msgstr "נחות חודשיות לפי תלוש" - -#: admin/woocommerce-admin-reports.php:1808 -msgid "Total customers" -msgstr "סך הכל לקוחות" - -#: admin/woocommerce-admin-reports.php:1814 -msgid "Total customer sales" -msgstr "סך הכל לקוחות רשומים" - -#: admin/woocommerce-admin-reports.php:1820 -msgid "Total guest sales" -msgstr "סך הכל לקוחות מזדמנים" - -#: admin/woocommerce-admin-reports.php:1826 -msgid "Total customer orders" -msgstr "סך הכל הזמנות ללקוחות רשומים" - -#: admin/woocommerce-admin-reports.php:1832 -msgid "Total guest orders" -msgstr "סך הכל הזמנות ללקוחות מזדמנים" - -#: admin/woocommerce-admin-reports.php:1838 -msgid "Average orders per customer" -msgstr "ממוצע הזמנות לפי לקוח" - -#: admin/woocommerce-admin-reports.php:1846 -msgid "Signups per day" -msgstr "ממוצע נרשמים מידי יום" - -#: admin/woocommerce-admin-reports.php:2067 -msgid "Low stock" -msgstr "מלאי נמוך" - -#: admin/woocommerce-admin-reports.php:2090 -#: admin/woocommerce-admin-reports.php:2129 -msgid "%d in stock" -msgid_plural "%d in stock" -msgstr[0] "%d במלאי" -msgstr[1] "%d במלאי" - -#: admin/woocommerce-admin-reports.php:2095 -msgid "No products are low in stock." -msgstr "אין פריטים עם מלאי נמוך" - -#: admin/woocommerce-admin-reports.php:2127 -msgid "Marked out of stock" -msgstr "סמן אזל מהמלאי" - -#: admin/woocommerce-admin-reports.php:2134 -msgid "No products are out in stock." -msgstr "אין מוצרים במלאי." - -#: admin/woocommerce-admin-reports.php:2298 -msgid "Total taxes for year" -msgstr "סך הכל מיסים לשנה" - -#: admin/woocommerce-admin-reports.php:2309 -msgid "Total product taxes for year" -msgstr "מסי תוצר לשנה" - -#: admin/woocommerce-admin-reports.php:2320 -msgid "Total shipping tax for year" -msgstr "סך כל מיסי המשלוח לשנה" - -#: admin/woocommerce-admin-reports.php:2336 -msgid "Total Sales" -msgstr "סך כל המחירות" - -#: admin/woocommerce-admin-reports.php:2336 -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "זה הוא הסיכום של השדה \"סכום ההזמנה\" בכל הההזמנות שלך." - -#: admin/woocommerce-admin-reports.php:2337 -msgid "Total Shipping" -msgstr "סך הכל משלוח" - -#: admin/woocommerce-admin-reports.php:2337 -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "זה הוא סיכום של השדה \"סך כל המשלוחים\" בכל ההזמנות שלך." - -#: admin/woocommerce-admin-reports.php:2338 -msgid "Total Product Taxes" -msgstr "סך מיסי מוצרים" - -#: admin/woocommerce-admin-reports.php:2338 -msgid "This is the sum of the 'Cart Tax' field within your orders." -msgstr "זה הוא סכום של שדה \"מיסי עגלה\" בתוך ההזמנות שלך." - -#: admin/woocommerce-admin-reports.php:2339 -msgid "Total Shipping Taxes" -msgstr "סך מיסי משלוח" - -#: admin/woocommerce-admin-reports.php:2339 -msgid "This is the sum of the 'Shipping Tax' field within your orders." -msgstr "זה הוא סכום של שדה \"מיסי משלוח\" בתוך ההזמנות שלך." - -#: admin/woocommerce-admin-reports.php:2340 -msgid "Total Taxes" -msgstr "סך הכל מיסים" - -#: admin/woocommerce-admin-reports.php:2340 -msgid "" -"This is the sum of the 'Cart Tax' and 'Shipping Tax' fields within your " -"orders." -msgstr "זה הוא סכום של שדות 'מיסי עגלה' ו'מיסי משלוח' בכל ההזמנות שלך." - -#: admin/woocommerce-admin-reports.php:2341 -msgid "Net profit" -msgstr "רווח נקי" - -#: admin/woocommerce-admin-reports.php:2341 -msgid "Total sales minus shipping and tax." -msgstr "המכירות בניכוי משלוח ומיסים." - -#: admin/woocommerce-admin-reports.php:2386 -msgid "Toggle tax rows" -msgstr "הפעל/כבה שורות המיסים" - -#: admin/woocommerce-admin-reports.php:2529 -msgid "Category" -msgstr "קטגוריה" - -#: admin/woocommerce-admin-reports.php:2632 -msgid "Top category" -msgstr "קטגוריה למעלה" - -#: admin/woocommerce-admin-reports.php:2641 -msgid "Worst category" -msgstr "קטגוריה הגרועה ביותר" - -#: admin/woocommerce-admin-reports.php:2649 -msgid "Category sales average" -msgstr "ממוצע מכירות קטגוריה" - -#: admin/woocommerce-admin-reports.php:2660 -msgid "Category sales median" -msgstr "מכירות קטגורית חציון" - -#: admin/woocommerce-admin-reports.php:2680 -msgid "Monthly sales by category" -msgstr "מכירות חודשיות לפי קטגוריה" - -#: admin/woocommerce-admin-settings.php:45 -msgid "Action failed. Please refresh the page and retry." -msgstr "פעולה נכשלה. יש לרענן את הדף ולנסות שוב." - -#: admin/woocommerce-admin-settings.php:162 -msgid "Your settings have been saved." -msgstr "ההגדרות שלך נשמרה." - -#: admin/woocommerce-admin-settings.php:208 -msgid "" -"More functionality and gateway options available via WC official extensions." -msgstr "" -"ניתן להוריד פונקציונליות ושערי תשלום נוספים באתר הרחבות רשמיות של WooCommerce." - -#: admin/woocommerce-admin-settings.php:226 -msgid "Tax Rates" -msgstr "שיעורי מס" - -#: admin/woocommerce-admin-settings.php:253 -msgid "Email Options" -msgstr "אפשרויות אימייל" - -#: admin/woocommerce-admin-settings.php:386 -msgid "Save changes" -msgstr "שמירת שינויים" - -#: admin/woocommerce-admin-settings.php:427 -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "השינויים שביצעת יאבדו אם תנווט מחוץ לדף זה." - -#: admin/woocommerce-admin-settings.php:799 -msgid "Hard Crop" -msgstr "חיתוך גס" - -#: admin/woocommerce-admin-settings.php:824 -msgid "Select a page…" -msgstr "בחר דף ..." - -#: admin/woocommerce-admin-settings.php:847 -msgid "Choose a country…" -msgstr "בחר מדינה ..." - -#: admin/woocommerce-admin-settings.php:867 -msgid "Choose countries…" -msgstr "בחר מדינות ..." - -#: admin/woocommerce-admin-status.php:27 -#: admin/woocommerce-admin-status.php:622 -msgid "Tools" -msgstr "כלים" - -#: admin/woocommerce-admin-status.php:62 -msgid "Please include this information when requesting support:" -msgstr "נא לכלול את המידע הזה כשבקשים תמיכה:" - -#: admin/woocommerce-admin-status.php:63 -msgid "Download System Report File" -msgstr "הורד קובץ דו\"ח מערכת" - -#: admin/woocommerce-admin-status.php:71 -msgid "Environment" -msgstr "סביבה" - -#: admin/woocommerce-admin-status.php:77 -msgid "Home URL" -msgstr "כתובת דף הבית" - -#: admin/woocommerce-admin-status.php:81 -msgid "Site URL" -msgstr "כתובת URL של אתר" - -#: admin/woocommerce-admin-status.php:85 -msgid "WC Version" -msgstr "גרסת WooCommerce" - -#: admin/woocommerce-admin-status.php:89 -msgid "WC Database Version" -msgstr "גרסת מסד נתונים של WooCommerce" - -#: admin/woocommerce-admin-status.php:93 -msgid "WP Version" -msgstr "גרסת WP" - -#: admin/woocommerce-admin-status.php:97 -msgid "Web Server Info" -msgstr "מידע שרת אינטרנט" - -#: admin/woocommerce-admin-status.php:101 -msgid "PHP Version" -msgstr "גרסת PHP" - -#: admin/woocommerce-admin-status.php:105 -msgid "MySQL Version" -msgstr "MySQL גרסה" - -#: admin/woocommerce-admin-status.php:109 -msgid "WP Memory Limit" -msgstr "מגבלת זכרון WP" - -#: admin/woocommerce-admin-status.php:114 -msgid "" -"%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "" -"%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" - -#: admin/woocommerce-admin-status.php:121 -msgid "WP Debug Mode" -msgstr "מצב Debug WP" - -#: admin/woocommerce-admin-status.php:125 -msgid "WP Max Upload Size" -msgstr "וורדפרס מקסימום גודל ההעלאה" - -#: admin/woocommerce-admin-status.php:129 -msgid "PHP Post Max Size" -msgstr "גודל PHP הודעת מקס" - -#: admin/woocommerce-admin-status.php:133 -msgid "PHP Time Limit" -msgstr "הגבלת זמן PHP" - -#: admin/woocommerce-admin-status.php:137 -msgid "WC Logging" -msgstr "רישום מערכת" - -#: admin/woocommerce-admin-status.php:140 -msgid "Log directory is writable." -msgstr "הספרייה התחברה לכתוב אליו." - -#: admin/woocommerce-admin-status.php:142 -msgid "" -"Log directory (woocommerce/logs/) is not writable. Logging will " -"not be possible." -msgstr "" -"ספרייה התחברה ( woocommerce / יומנים / ) אינה ניתנת לכתיבה. " -"רישום לא יהיה אפשרי." - -#: admin/woocommerce-admin-status.php:149 -msgid "fsockopen/cURL" -msgstr "fsockopen / CURL" - -#: admin/woocommerce-admin-status.php:152 -msgid "Your server has fsockopen and cURL enabled." -msgstr "השרת שלך fsockopen ולהתכרבל מופעל." - -#: admin/woocommerce-admin-status.php:154 -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "השרת שלך fsockopen מאופשר, סלסול הוא מושבת." - -#: admin/woocommerce-admin-status.php:156 -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "השרת שלך להתכרבל מאופשר, fsockopen אינו זמין." - -#: admin/woocommerce-admin-status.php:160 -msgid "" -"Your server does not have fsockopen or cURL enabled - PayPal IPN and other " -"scripts which communicate with other servers will not work. Contact your " -"hosting provider." -msgstr "" -"השרת שלך לא צריך fsockopen או להתכרבל מאופשר - IPN PayPal ותסריטים אחרים אשר " -"מתקשר עם שרתים אחרים לא יעבוד. צור קשר עם ספק האירוח שלך." - -#: admin/woocommerce-admin-status.php:165 -msgid "SOAP Client" -msgstr "SOAP לקוח" - -#: admin/woocommerce-admin-status.php:167 -msgid "Your server has the SOAP Client class enabled." -msgstr "השרת שלך יש המעמד של הלקוח מאופשר SOAP." - -#: admin/woocommerce-admin-status.php:170 -msgid "" -"Your server does not have the SOAP Client class enabled - " -"some gateway plugins which use SOAP may not work as expected." -msgstr "" -"Your server does not have the SOAP Client class enabled - " -"some gateway plugins which use SOAP may not work as expected." - -#: admin/woocommerce-admin-status.php:175 -msgid "WP Remote Post" -msgstr "WP Remote Post" - -#: admin/woocommerce-admin-status.php:186 -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "wp_remote_post() was successful - PayPal IPN is working." - -#: admin/woocommerce-admin-status.php:189 -msgid "" -"wp_remote_post() failed. PayPal IPN won't work with your server. Contact " -"your hosting provider. Error:" -msgstr "" -"wp_remote_post() failed. PayPal IPN won't work with your server. Contact " -"your hosting provider. Error:" - -#: admin/woocommerce-admin-status.php:192 -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "wp_remote_post() failed. PayPal IPN may not work with your server." - -#: admin/woocommerce-admin-status.php:215 -msgid "Plugins" -msgstr "תוספים" - -#: admin/woocommerce-admin-status.php:221 -msgid "Installed Plugins" -msgstr "תוספים מותקנים" - -#: admin/woocommerce-admin-status.php:236 -msgid "by" -msgstr "על ידי" - -#: admin/woocommerce-admin-status.php:236 -msgid "version" -msgstr "גירסה" - -#: admin/woocommerce-admin-status.php:259 -msgid "Force SSL" -msgstr "הכרח SSL" - -#: admin/woocommerce-admin-status.php:266 -msgid "WC Pages" -msgstr "עמודי החנות" - -#: admin/woocommerce-admin-status.php:273 -msgid "Shop Base" -msgstr "מאגר החנות" - -#: admin/woocommerce-admin-status.php:285 -msgid "Pay" -msgstr "תשלום" - -#: admin/woocommerce-admin-status.php:289 -msgid "Thanks" -msgstr "תודה" - -#: admin/woocommerce-admin-status.php:297 -msgid "Edit Address" -msgstr "עריכת כתובת" - -#: admin/woocommerce-admin-status.php:329 -msgid "Page not set" -msgstr "דף לא מוגדר" - -#: admin/woocommerce-admin-status.php:339 -msgid "Page does not exist" -msgstr "עמוד לא קיים" - -#: admin/woocommerce-admin-status.php:344 -msgid "Page does not contain the shortcode: %s" -msgstr "עמוד אינו מכיל את %s" - -#: admin/woocommerce-admin-status.php:363 -msgid "WC Taxonomies" -msgstr "טקסונומיה של WooCommerce" - -#: admin/woocommerce-admin-status.php:369 -msgid "Order Statuses" -msgstr "סטטוסים להזמין" - -#: admin/woocommerce-admin-status.php:379 -msgid "Product Types" -msgstr "סוגי מוצרים" - -#: admin/woocommerce-admin-status.php:392 -msgid "Templates" -msgstr "תבניות" - -#: admin/woocommerce-admin-status.php:398 -msgid "Template Overrides" -msgstr "עוקפי תבניות" - -#: admin/woocommerce-admin-status.php:416 -msgid "No core overrides present in theme." -msgstr "אין עקיפת תבניות בערכת העיצוב." - -#: admin/woocommerce-admin-status.php:510 -msgid "WC Transients" -msgstr "קבצים זמניים של החנות" - -#: admin/woocommerce-admin-status.php:511 -msgid "Clear transients" -msgstr "נקה קבצים זמניים" - -#: admin/woocommerce-admin-status.php:512 -msgid "This tool will clear the product/shop transients cache." -msgstr "כלי זה נועד לנקות את המטמון הזמני של המוצרים / החנות." - -#: admin/woocommerce-admin-status.php:515 -msgid "Expired Transients" -msgstr "קבצים זמניים שפגו תוקף" - -#: admin/woocommerce-admin-status.php:516 -msgid "Clear expired transients" -msgstr "נקה קבצים זמניים שפגו תוקף" - -#: admin/woocommerce-admin-status.php:517 -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "כלי זה ימחק מורדפרס את כל הקבצים הזמניים שפקעו." - -#: admin/woocommerce-admin-status.php:520 -msgid "Term counts" -msgstr "ספירת מונחים" - -#: admin/woocommerce-admin-status.php:521 -msgid "Recount terms" -msgstr "ספירה מחדש" - -#: admin/woocommerce-admin-status.php:522 -msgid "" -"This tool will recount product terms - useful when changing your settings in " -"a way which hides products from the catalog." -msgstr "" -"כלי זה יספור מונחי מוצר - שימושי בעת שינוי ההגדרות שלך באופן שמסתיר את " -"המוצרים מהקטלוג." - -#: admin/woocommerce-admin-status.php:525 -msgid "Capabilities" -msgstr "תפקידים" - -#: admin/woocommerce-admin-status.php:526 -msgid "Reset capabilities" -msgstr "איפוס תפקידים" - -#: admin/woocommerce-admin-status.php:527 -msgid "" -"This tool will reset the admin, customer and shop_manager roles to default. " -"Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "" -"כלי זה יאפס את תפקידי המנהל, הלקוחות ומנהל החנות לברירת מחדל. השתמש באפשרות " -"זו אם המשתמשים שלך לא יכולים לגשת לכל דפי ניהול של החנות." - -#: admin/woocommerce-admin-status.php:537 -msgid "Product Transients Cleared" -msgstr "קבצים זמניים נוקו" - -#: admin/woocommerce-admin-status.php:578 -msgid "%d Transients Rows Cleared" -msgstr "%d שורות קבצים זמניים נוקו" - -#: admin/woocommerce-admin-status.php:586 -msgid "Roles successfully reset" -msgstr "תפקידים אופסו בהצלחה" - -#: admin/woocommerce-admin-status.php:598 -msgid "Terms successfully recounted" -msgstr "מונחים נספרו בהצלחה" - -#: admin/woocommerce-admin-status.php:607 -msgid "There was an error calling %s::%s" -msgstr "הייתה שגיאה בקריאה %s::%s" - -#: admin/woocommerce-admin-status.php:610 -msgid "There was an error calling %s" -msgstr "הייתה שגיאה בקריאה ל %s" - -#: admin/woocommerce-admin-taxonomies.php:25 -#: admin/woocommerce-admin-taxonomies.php:118 -msgid "Display type" -msgstr "סוג התצוגה" - -#: admin/woocommerce-admin-taxonomies.php:29 -#: admin/woocommerce-admin-taxonomies.php:123 -msgid "Subcategories" -msgstr "קטגוריות משנה" - -#: admin/woocommerce-admin-taxonomies.php:30 -#: admin/woocommerce-admin-taxonomies.php:124 -msgid "Both" -msgstr "בשתיהם" - -#: admin/woocommerce-admin-taxonomies.php:34 -#: admin/woocommerce-admin-taxonomies.php:129 -msgid "Thumbnail" -msgstr "תמונה קטנה" - -#: admin/woocommerce-admin-taxonomies.php:38 -#: admin/woocommerce-admin-taxonomies.php:134 -msgid "Upload/Add image" -msgstr "העלאה/הוספת תמונה" - -#: admin/woocommerce-admin-taxonomies.php:39 -#: admin/woocommerce-admin-taxonomies.php:135 -msgid "Remove image" -msgstr "הסר את התמונה" - -#: admin/woocommerce-admin-taxonomies.php:64 -#: admin/woocommerce-admin-taxonomies.php:156 -msgid "Use image" -msgstr "השתמש בתמונה" - -#: admin/woocommerce-admin-taxonomies.php:222 -msgid "" -"Product categories for your store can be managed here. To change the order " -"of categories on the front-end you can drag and drop to sort them. To see " -"more categories listed click the \"screen options\" link at the top of the " -"page." -msgstr "" -"ניתן לנהל מכאן קטגוריות מוצרים עבור החנות שלך . כדי לשנות את הסדר של " -"קטגוריות אתה יכול לגרור ולשחרר כדי למיין אותם. כדי לראות קטגוריות נוספות " -"המפורטות לחץ על הקישור \"אפשרויות מסך \" בחלק העליון של הדף." - -#: admin/woocommerce-admin-taxonomies.php:237 -msgid "" -"Shipping classes can be used to group products of similar type. These groups " -"can then be used by certain shipping methods to provide different rates to " -"different products." -msgstr "" -"כיתות משלוח יכולות לשמש למוצרי קבוצה מסוג דומה. קבוצות אלה לאחר מכן ניתן " -"להשתמש בשיטות משלוח מסוימות לספק תעריפים שונים למוצרים שונים." - -#: admin/woocommerce-admin-taxonomies.php:365 -msgid "Configure shipping class" -msgstr "הגדרות סוג משלוח" - -#: admin/woocommerce-admin-users.php:26 -msgid "Billing Address" -msgstr "כתובת לחיוב" - -#: admin/woocommerce-admin-users.php:27 -msgid "Shipping Address" -msgstr "כתובת למשלוח" - -#: admin/woocommerce-admin-users.php:28 -msgid "Paying Customer?" -msgstr "לקוח" - -#: admin/woocommerce-admin-users.php:29 -msgid "Completed Orders" -msgstr "הזמנות שהושלמו" - -#: admin/woocommerce-admin-users.php:144 -msgid "Customer Billing Address" -msgstr "כתובת חשבון" - -#: admin/woocommerce-admin-users.php:147 admin/woocommerce-admin-users.php:196 -msgid "First name" -msgstr "שם פרטי" - -#: admin/woocommerce-admin-users.php:151 admin/woocommerce-admin-users.php:200 -msgid "Last name" -msgstr "שם משפחה" - -#: admin/woocommerce-admin-users.php:176 -msgid "Country or state code" -msgstr "ארץ או קוד המדינה" - -#: admin/woocommerce-admin-users.php:180 admin/woocommerce-admin-users.php:229 -msgid "2 letter Country code" -msgstr "קוד מדינה 2 אותיות" - -#: admin/woocommerce-admin-users.php:183 -msgid "Telephone" -msgstr "טלפון" - -#: admin/woocommerce-admin-users.php:193 -msgid "Customer Shipping Address" -msgstr "כתובת משלוח" - -#: admin/woocommerce-admin-users.php:225 -msgid "State/County or state code" -msgstr "מדינה / ארץ" diff --git a/i18n/languages/woocommerce-admin-hu_HU.mo b/i18n/languages/woocommerce-admin-hu_HU.mo deleted file mode 100644 index f73140863d6..00000000000 Binary files a/i18n/languages/woocommerce-admin-hu_HU.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-admin-hu_HU.po b/i18n/languages/woocommerce-admin-hu_HU.po deleted file mode 100644 index 95e5a583b67..00000000000 --- a/i18n/languages/woocommerce-admin-hu_HU.po +++ /dev/null @@ -1,5573 +0,0 @@ -# Szabolcs Légrádi , 2013. -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce 2.0.0 Admin\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-07-23 08:42:13+00:00\n" -"PO-Revision-Date: 2013-07-24 13:54+0200\n" -"Last-Translator: Szabolcs Légrádi \n" -"Language-Team: Szabolcs Légrádi\n" -"Language: hu\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Virtaal 0.7.1\n" - -#: admin/importers/importers-init.php:13 -msgid "WooCommerce Tax Rates (CSV)" -msgstr "WooCommerce adózási ráták (CSV)" - -#: admin/importers/importers-init.php:13 -msgid "Import tax rates to your store via a csv file." -msgstr "Adózási ráták importálása az üzletbe CSV fájlból." - -#: admin/importers/tax-rates-importer.php:103 -#: admin/importers/tax-rates-importer.php:188 -#: admin/importers/tax-rates-importer.php:228 -#: admin/importers/tax-rates-importer.php:243 -msgid "Sorry, there has been an error." -msgstr "Sajnáljuk, egy hiba történt." - -#: admin/importers/tax-rates-importer.php:104 -msgid "The file does not exist, please try again." -msgstr "A fájl nem létezik, kérlek próbáld újra." - -#: admin/importers/tax-rates-importer.php:189 -msgid "The CSV is invalid." -msgstr "A CSV hibás." - -#: admin/importers/tax-rates-importer.php:200 -msgid "" -"Import complete - imported %s tax rates and skipped " -"%s." -msgstr "" -"Az importálás befejeződött - %s adózási ráta importálva és " -"%s kihagyva." - -#: admin/importers/tax-rates-importer.php:210 -msgid "All done!" -msgstr "Minden kész!" - -#: admin/importers/tax-rates-importer.php:210 -msgid "View Tax Rates" -msgstr "Adózási ráták megtekintése" - -#: admin/importers/tax-rates-importer.php:261 -msgid "Import Tax Rates" -msgstr "Adózási ráták importálása" - -#: admin/importers/tax-rates-importer.php:284 -msgid "" -"Hi there! Upload a CSV file containing tax rates to import the contents into " -"your shop. Choose a .csv file to upload, then click \"Upload file and import" -"\"." -msgstr "" -"Üdvözöllek! Tölts fel egy CSV fájlt, ami tartalmazza az adózási rátákat és " -"importáld őket az üzletbe. Válassz egy .csv fájlt a feltöltéshez és nyomd " -"meg a \"Fájl feltöltése és importálása\" gombot." - -#: admin/importers/tax-rates-importer.php:286 -msgid "" -"Tax rates need to be defined with columns in a specific order (10 columns). " -"Click here to download a sample." -msgstr "" -"Az adózási ráta oszlopok meghatározott sorrendben kell szerepeljenek (10 " -"oszlop). Kattints ide a minta letöltéséhez." - -#: admin/importers/tax-rates-importer.php:294 -msgid "" -"Before you can upload your import file, you will need to fix the following " -"error:" -msgstr "" -"Mielőtt feltöltenéd az importálandó fájlt, előbb javítanod kell az alábbi " -"hibákat:" - -#: admin/importers/tax-rates-importer.php:303 -msgid "Choose a file from your computer:" -msgstr "Válassz egy fájlt a számítógépről:" - -#: admin/importers/tax-rates-importer.php:309 -msgid "Maximum size: %s" -msgstr "Maximális méret: %s" - -#: admin/importers/tax-rates-importer.php:314 -msgid "OR enter path to file:" -msgstr "VAGY írj be egy útvonalat a fájlhoz:" - -#: admin/importers/tax-rates-importer.php:321 -msgid "Delimiter" -msgstr "Elválasztó" - -#: admin/importers/tax-rates-importer.php:327 -msgid "Upload file and import" -msgstr "Fájl feltöltése és importálása" - -#: admin/includes/duplicate_product.php:23 -msgid "No product to duplicate has been supplied!" -msgstr "Nincs megadva duplikálandó termék!" - -#: admin/includes/duplicate_product.php:43 -msgid "Product creation failed, could not find original product:" -msgstr "A termék létrehozása sikertelen, nem található az eredeti termék:" - -#: admin/includes/duplicate_product.php:90 -msgid "(Copy)" -msgstr "(Másolat)" - -#: admin/includes/notice-install.php:6 -msgid "" -"Welcome to WooCommerce – You're almost ready to start " -"selling :)" -msgstr "" -"Üdvözöl a WooCommerce – Már majdnem készen állsz az " -"értékesítésre :)" - -#: admin/includes/notice-install.php:7 -msgid "Install WooCommerce Pages" -msgstr "WooCommerce oldalak telepítése" - -#: admin/includes/notice-install.php:7 -msgid "Skip setup" -msgstr "Telepítő kihagyása" - -#: admin/includes/notice-theme-support.php:6 -msgid "" -"Your theme does not declare WooCommerce support – if " -"you encounter layout issues please read our integration guide or choose a " -"WooCommerce theme :)" -msgstr "" -"A sablonod nem tartalmaz WooCommerce támogatást – ha " -"az elrendezésben történő hibákat fedezel fel, kérjük olvasd el integrációt " -"útmutatónkat vagy válassz egy WooCommerce sablont. :)" - -#: admin/includes/notice-theme-support.php:7 -msgid "Theme Integration Guide" -msgstr "Sablon integrációs útmutató" - -#: admin/includes/notice-theme-support.php:7 -msgid "Hide this notice" -msgstr "Értesítés elrejtése" - -#: admin/includes/notice-update.php:6 -msgid "" -"Data Update Required – We just need to update your " -"install to the latest version" -msgstr "" -"Adatfrissítés szükséges – Frissíteni kell a " -"telepítésed a legújabb verzióra" - -#: admin/includes/notice-update.php:7 -msgid "Run the updater" -msgstr "Frissítő futtatása" - -#: admin/includes/notice-update.php:12 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Erősen javasolt, hogy biztonsági mentést készíts az adatbázisról, mielőtt " -"tovább lépsz. Biztos vagy benne, hogy lefuttatod a frissítőt?" - -#: admin/includes/updates/woocommerce-update-2.0.php:49 -#: admin/woocommerce-admin-init.php:885 -msgctxt "slug" -msgid "product-category" -msgstr "termekkategoria" - -#: admin/includes/updates/woocommerce-update-2.0.php:50 -#: admin/woocommerce-admin-init.php:898 -msgctxt "slug" -msgid "product-tag" -msgstr "termek-cimke" - -#: admin/includes/updates/woocommerce-update-2.0.php:58 -msgctxt "slug" -msgid "product" -msgstr "termek" - -#: admin/includes/updates/woocommerce-update-2.0.php:179 -#: admin/woocommerce-admin-install.php:207 -msgctxt "page_slug" -msgid "lost-password" -msgstr "elfelejtett-jelszo" - -#: admin/includes/updates/woocommerce-update-2.0.php:179 -#: admin/woocommerce-admin-install.php:207 -#: admin/woocommerce-admin-status.php:335 -msgid "Lost Password" -msgstr "Elfelejtett jelszó" - -#: admin/includes/welcome.php:48 -msgid "Welcome to WooCommerce" -msgstr "Üdvözöl a WooCommerce" - -#: admin/includes/welcome.php:135 -msgid "Welcome to WooCommerce %s" -msgstr "Üdvözöl a WooCommerce %s" - -#: admin/includes/welcome.php:140 -msgid "Thanks, all done!" -msgstr "Köszönöm, mindennel megvagyunk!" - -#: admin/includes/welcome.php:142 -msgid "Thank you for updating to the latest version!" -msgstr "Köszönjük, hogy frissítettél a legújabb verzióra!" - -#: admin/includes/welcome.php:144 -msgid "Thanks for installing!" -msgstr "Köszönjük, hogy telepítetted a bővítményt!" - -#: admin/includes/welcome.php:146 -msgid "" -"%s WooCommerce %s is more powerful, stable, and secure than ever before. We " -"hope you enjoy it." -msgstr "" -"%s A WooCommerce %s erőteljesebb, stabilabb és biztonságosabb, mint valaha. " -"Reméljük tetszeni fog." - -#: admin/includes/welcome.php:150 -msgid "Version %s" -msgstr "%s verzió" - -#: admin/includes/welcome.php:153 admin/woocommerce-admin-content.php:41 -#: admin/woocommerce-admin-init.php:88 admin/woocommerce-admin-status.php:278 -msgid "Settings" -msgstr "Beállítások" - -#: admin/includes/welcome.php:154 -msgid "Docs" -msgstr "Dokumentáció" - -#: admin/includes/welcome.php:161 -msgid "What's New" -msgstr "Mik az újdonságok" - -#: admin/includes/welcome.php:163 -msgid "Credits" -msgstr "Készítők" - -#: admin/includes/welcome.php:186 -msgid "Security in mind" -msgstr "Biztonságot szem előtt tartva" - -#: admin/includes/welcome.php:190 -msgid "Sucuri Safe Plugin" -msgstr "Sucuri biztos bővítmény" - -#: admin/includes/welcome.php:191 -msgid "" -"You will be happy to learn that WooCommerce has been audited and certified " -"by the Sucuri Security team. Whilst there is not much to be seen visually to " -"understand the amount of work that went into this audit, rest assured that " -"your website is powered by one of the most powerful and stable eCommerce " -"plugins available." -msgstr "" -"Örömmel tudatjuk veled, hogy a Sucuri Security csapata felülvizsgálta és " -"hitelesítette a WooCommerce bővítményt. Habár puszta szemmel nem látható " -"mennyi munkába és erőfeszítésbe került ez a vizsgálat, de biztosítunk róla " -"hogy a weboldalad az egyik legerőteljesebb és legstabilabb e-kereskedelmi " -"bővítmények egyikét használja. " - -#: admin/includes/welcome.php:194 -msgid "A Smoother Admin Experience" -msgstr "Kényelmesebb adminisztrátori élmény" - -#: admin/includes/welcome.php:200 -msgid "New Product Panel" -msgstr "Új termékpanel" - -#: admin/includes/welcome.php:201 -msgid "" -"We have revised the product data panel making it cleaner, more streamlined, " -"and more logical. Adding products is a breeze!" -msgstr "" -"Újragondoltuk a termékadatok paneljét, egyszerűbbé, jobban használhatóvá és " -"logikusabbá tettük. A termékek felvitele gyerekjáték." - -#: admin/includes/welcome.php:206 -msgid "Nicer Order Screens" -msgstr "Szebb rendelési oldalak" - -#: admin/includes/welcome.php:207 -msgid "" -"Order pages have had a cleanup, with a more easily scannable interface. We " -"particularly like the new status icons!" -msgstr "" -"A rendelési oldalakat letisztítottuk és sokkal áttekinthetőbbé tettük a " -"felületet. Mi különösen kedveljük az új állapot ikonokat!" - -#: admin/includes/welcome.php:212 -msgid "Multi-Download Support" -msgstr "Több fájlos letöltések" - -#: admin/includes/welcome.php:213 -msgid "" -"Products can have multiple downloadable files - purchasers will get access " -"to all the files added." -msgstr "" -"A termékekhez több letölthető fájl is társítható - a vásárlók az összes " -"fájlhoz hozzáférést kapnak." - -#: admin/includes/welcome.php:218 -msgid "Less Taxing Taxes" -msgstr "Kevesebb adózási nyűg" - -#: admin/includes/welcome.php:224 -msgid "New Tax Input Panel" -msgstr "Új adó beviteli panel" - -#: admin/includes/welcome.php:225 -msgid "" -"The tax input pages have been streamlined to make inputting taxes simpler - " -"adding multiple taxes for a single jurisdiction is now much easier using the " -"priority system. There is also CSV import/export support." -msgstr "" -"Az adó beviteli oldalakat áramvonalasítottuk, hogy könnyebb legyen felvinni " -"az adókat - az új prioritás rendszerrel sokkal egyszerűbb többféle adót " -"rendelni egy területhez. Továbbá CSV import/export támogatást is " -"beépítettünk." - -#: admin/includes/welcome.php:229 -msgid "Improved Tax Options" -msgstr "Fejlettebb adózási lehetőségek" - -#: admin/includes/welcome.php:230 -msgid "" -"As requested by some users, we now support taxing the billing address " -"instead of shipping (optional), and we allow you to choose which tax class " -"applies to shipping." -msgstr "" -"Több felhasználó is kérte, így most már támogatjuk a szállítási cím helyett " -"a számlázási címre való adózást (opcionális) és beállítható melyik adó " -"osztályok alkalmazódnak a szállításra." - -#: admin/includes/welcome.php:235 -msgid "Product Listing Improvements Customers Will Love" -msgstr "Terméklistázási fejlesztések, amiket a vásárlók imádni fognak" - -#: admin/includes/welcome.php:241 -msgid "New Sorting Options" -msgstr "Új rendezési lehetőségek" - -#: admin/includes/welcome.php:242 -msgid "Customers can now sort products by popularity and ratings." -msgstr "" -"A vásárlók immáron népszerűség és értékelés szerint is rendezhetik a " -"termékeket." - -#: admin/includes/welcome.php:247 -msgid "Better Pagination and Result Counts" -msgstr "Jobb lapozás és eredményszámlálás" - -#: admin/includes/welcome.php:248 -msgid "" -"Numbered pagination has been added to core, and we show the number of " -"results found above the listings." -msgstr "" -"A rendszer része lett a számozott lapozás és a termékek felett megjelenítjük " -"a találatok számát is." - -#: admin/includes/welcome.php:253 -msgid "Inline Star Rating Display" -msgstr "Szövegközi csillagos értékelés megjelenítése" - -#: admin/includes/welcome.php:254 -msgid "" -"We have added star ratings to the catalog which are pulled from reviews." -msgstr "" -"Csillagos értékeléseket adtunk a katalógushoz, amik a vélemények alapján " -"jelennek meg." - -#: admin/includes/welcome.php:262 -msgid "Under the Hood" -msgstr "A motorháztető alatt" - -#: admin/includes/welcome.php:266 -msgid "New product classes" -msgstr "Új termékosztályok" - -#: admin/includes/welcome.php:267 -msgid "" -"The product classes have been rewritten and are now factory based. Much more " -"extendable, and easier to query products using the new get_product() function." -msgstr "" -"A termékosztályokat újraírtuk és immáron factory-alapúak. Sokkal jobban " -"bővíthetőek és a termékek lekérése könnyebb az új get_product() " -"metódussal." - -#: admin/includes/welcome.php:271 -msgid "Capability overhaul" -msgstr "Szerepkörök felülvizsgálása" - -#: admin/includes/welcome.php:272 -msgid "" -"More granular capabilities for admin/shop manager roles covering products, " -"orders and coupons." -msgstr "" -"Sokkal kifinomultabb képességek az adminisztrátor/üzlet kezelő " -"szerepköröknek a termékeket, rendeléseket és kuponokat illetően." - -#: admin/includes/welcome.php:276 -msgid "API Improvements" -msgstr "API fejlesztések" - -#: admin/includes/welcome.php:277 -msgid "" -"WC-API now has real endpoints, and we've optimised the gateways " -"API significantly by only loading gateways when needed." -msgstr "" -"A WC-API most már valódi végpontokkal rendelkezik és " -"optimalizáltuk a fizetési módokat, csak akkor töltődnek be ha szükség van " -"rájuk." - -#: admin/includes/welcome.php:283 -msgid "Cache-friendly cart widgets" -msgstr "Gyorsítótár-barát kosár widgetek" - -#: admin/includes/welcome.php:284 -msgid "" -"Cart widgets and other \"fragments\" are now pulled in via AJAX - this works " -"wonders with static page caching." -msgstr "" -"A kosár widgetek és más \"tartalomdarabkák\" AJAX-al kerülnek betöltése - ez " -"csodákat művel a statikus oldal gyorsítótárazással." - -#: admin/includes/welcome.php:288 -msgid "Session handling" -msgstr "Munkamenet kezelés" - -#: admin/includes/welcome.php:289 -msgid "" -"PHP SESSIONS have been a problem for many users in the past, so we've " -"developed our own handler using cookies and options to make these more " -"reliable." -msgstr "" -"A PHP munkamenetek sok felhasználónak problémát okoztak a múltban, így " -"kifejlesztettük a saját, sütiket és beállításokat használó kezelőnket, ami " -"jóval megbízhatóbb." - -#: admin/includes/welcome.php:293 -msgid "Retina Ready" -msgstr "Retina-kész" - -#: admin/includes/welcome.php:294 -msgid "All graphics within WC have been optimised for HiDPI displays." -msgstr "A WC minden grafikai eleme optimalizálva lett HiDPI kijelzőkre." - -#: admin/includes/welcome.php:301 -msgid "Better stock handling" -msgstr "Jobb készletkezelés" - -#: admin/includes/welcome.php:302 -msgid "" -"We have added an option to hold stock for unpaid orders (defaults to " -"60mins). When this time limit is reached, and the order is not paid for, " -"stock is released and the order is cancelled." -msgstr "" -"Beépítettünk egy új opciót a ki nem fizetett rendelések készletének " -"foglalására (alapértelmezetten 60 perc). Amennyiben az időkorlát elérésekor " -"a rendelés nem lett kifizetve, akkor a készlet felszabadul és a rendelés " -"visszavonásra kerül." - -#: admin/includes/welcome.php:306 -msgid "Improved Line-item storage" -msgstr "Fejlettebb terméksor tárolás" - -#: admin/includes/welcome.php:307 -msgid "" -"We have changed how order items get stored making them easier (and faster) " -"to access for reporting. Order items are no longer serialised within an " -"order - they are stored within their own table." -msgstr "" -"Módosítottunk a rendelési elemek tárolásán, ezáltal könnyebbé (és gyorsabbá) " -"tettük az elérésüket a jelentésekhez. A rendelési elemek már nem " -"szerializáltak a rendelésekben - a saját táblájukban kerülnek tárolásra." - -#: admin/includes/welcome.php:311 -msgid "Autoload" -msgstr "Autoload" - -#: admin/includes/welcome.php:312 -msgid "" -"We have setup autoloading for classes - this has dramatically reduced memory " -"usage in 2.0." -msgstr "" -"Az osztályokat automatikusan betöltjük - ez nagymértékben csökkentette a 2.0 " -"verzió memóriahasználatát." - -#: admin/includes/welcome.php:319 -msgid "Go to WooCommerce Settings" -msgstr "Ugrás a WooCommerce beállításokhoz" - -#: admin/includes/welcome.php:337 -msgid "" -"WooCommerce is developed and maintained by a worldwide team of passionate " -"individuals and backed by an awesome developer community. Want to see your " -"name? Contribute to WooCommerce." -msgstr "" -"A WooCommerce lelkes egyének által fejlesztett és karbantartott bővítmény " -"egy lenyűgőzö fejlesztői közösséggel mögötte. Viszont látnád a nevedet? Járulj hozzá WooCommerce projekthez." - -#: admin/includes/welcome.php:363 -msgid "View %s" -msgstr "%s megtekintése" - -#: admin/post-types/product.php:31 -msgid "Make a duplicate from this product" -msgstr "Duplikátum készítése a termékről" - -#: admin/post-types/product.php:32 -msgid "Duplicate" -msgstr "Duplikálás" - -#: admin/post-types/product.php:61 -msgid "Copy to a new draft" -msgstr "Másolás új piszkozatba" - -#: admin/post-types/product.php:86 admin/woocommerce-admin-taxonomies.php:297 -msgid "Image" -msgstr "Kép" - -#: admin/post-types/product.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:376 -#: admin/post-types/writepanels/writepanel-product_data.php:470 -#: admin/woocommerce-admin-attributes.php:240 -#: admin/woocommerce-admin-attributes.php:276 -#: admin/woocommerce-admin-attributes.php:314 -#: admin/woocommerce-admin-attributes.php:337 -#: admin/woocommerce-admin-attributes.php:381 -#: admin/woocommerce-admin-attributes.php:406 -#: admin/woocommerce-admin-init.php:437 -msgid "Name" -msgstr "Név" - -#: admin/post-types/product.php:91 admin/post-types/product.php:557 -#: admin/post-types/writepanels/variation-admin-html.php:52 -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#: admin/woocommerce-admin-reports.php:2099 -#: admin/woocommerce-admin-reports.php:2135 -msgid "SKU" -msgstr "CSZ" - -#: admin/post-types/product.php:94 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:82 -#: admin/woocommerce-admin-content.php:63 -#: admin/woocommerce-admin-reports.php:90 -msgid "Stock" -msgstr "Készlet" - -#: admin/post-types/product.php:96 admin/post-types/product.php:568 -#: admin/post-types/product.php:789 admin/woocommerce-admin-functions.php:202 -msgid "Price" -msgstr "Ár" - -#: admin/post-types/product.php:98 -msgid "Categories" -msgstr "Kategóriák" - -#: admin/post-types/product.php:99 -msgid "Tags" -msgstr "Címkék" - -#: admin/post-types/product.php:100 admin/post-types/product.php:632 -#: admin/post-types/product.php:906 -#: admin/post-types/writepanels/writepanel-product_data.php:1059 -#: admin/woocommerce-admin-init.php:450 -msgid "Featured" -msgstr "Kiemelt" - -#: admin/post-types/product.php:101 admin/woocommerce-admin-attributes.php:258 -#: admin/woocommerce-admin-attributes.php:316 -#: admin/woocommerce-admin-attributes.php:393 -msgid "Type" -msgstr "Típus" - -#: admin/post-types/product.php:102 admin/post-types/shop_order.php:50 -msgid "Date" -msgstr "Dátum" - -#: admin/post-types/product.php:151 -msgid "Edit this item" -msgstr "Elem szerkesztése" - -#: admin/post-types/product.php:151 -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#: admin/post-types/writepanels/writepanel-order_data.php:387 -#: admin/post-types/writepanels/writepanel-product_data.php:1062 -#: admin/woocommerce-admin-attributes.php:330 -msgid "Edit" -msgstr "Szerkesztés" - -#: admin/post-types/product.php:152 -msgid "Edit this item inline" -msgstr "Elem szerkesztése helyben" - -#: admin/post-types/product.php:152 -msgid "Quick Edit" -msgstr "Gyors szerkesztés" - -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore this item from the Trash" -msgstr "Elem visszaállítás a lomtárból" - -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore" -msgstr "Visszaállítás" - -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Move this item to the Trash" -msgstr "Elem lomtárba helyezése" - -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Trash" -msgstr "Lomtár" - -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -msgid "Delete this item permanently" -msgstr "Elem végleges törlése" - -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -#: admin/post-types/writepanels/writepanel-order_data.php:463 -msgid "Delete Permanently" -msgstr "Végleges törlés" - -#: admin/post-types/product.php:165 -msgid "Preview “%s”" -msgstr "“%s” előnézete" - -#: admin/post-types/product.php:165 -msgid "Preview" -msgstr "Előnézet" - -#: admin/post-types/product.php:167 -msgid "View “%s”" -msgstr "“%s” megtekintése" - -#: admin/post-types/product.php:167 admin/post-types/shop_order.php:171 -msgid "View" -msgstr "Megtekintés" - -#: admin/post-types/product.php:214 -msgid "Grouped" -msgstr "Csoportosított" - -#: admin/post-types/product.php:216 -msgid "External/Affiliate" -msgstr "Külső/Partner" - -#: admin/post-types/product.php:220 admin/post-types/product.php:407 -#: admin/post-types/writepanels/variation-admin-html.php:176 -#: admin/post-types/writepanels/writepanel-product_data.php:52 -msgid "Virtual" -msgstr "Virtuális" - -#: admin/post-types/product.php:222 admin/post-types/product.php:403 -#: admin/post-types/writepanels/variation-admin-html.php:174 -#: admin/post-types/writepanels/writepanel-product_data.php:58 -msgid "Downloadable" -msgstr "Letölthető" - -#: admin/post-types/product.php:224 -msgid "Simple" -msgstr "Egyszerű" - -#: admin/post-types/product.php:228 admin/post-types/product.php:387 -msgid "Variable" -msgstr "Variálható" - -#: admin/post-types/product.php:251 -msgid "Toggle featured" -msgstr "Kiemelés be-/kikapcsolása" - -#: admin/post-types/product.php:253 -msgid "yes" -msgstr "igen" - -#: admin/post-types/product.php:255 -msgid "no" -msgstr "nem" - -#: admin/post-types/product.php:262 admin/post-types/product.php:641 -#: admin/post-types/product.php:930 -#: admin/post-types/writepanels/writepanel-product_data.php:231 -msgid "In stock" -msgstr "Készleten" - -#: admin/post-types/product.php:264 admin/post-types/product.php:642 -#: admin/post-types/product.php:931 -#: admin/post-types/writepanels/writepanel-product_data.php:232 -#: admin/woocommerce-admin-reports.php:2119 -msgid "Out of stock" -msgstr "Nincs készleten" - -#: admin/post-types/product.php:373 -msgid "Show all product types" -msgstr "Összes terméktípus megjelenítése" - -#: admin/post-types/product.php:381 -#: admin/post-types/writepanels/writepanel-product_data.php:39 -msgid "Grouped product" -msgstr "Csoportosított termék" - -#: admin/post-types/product.php:383 -#: admin/post-types/writepanels/writepanel-product_data.php:40 -msgid "External/Affiliate product" -msgstr "Külső/Partner termék" - -#: admin/post-types/product.php:385 -#: admin/post-types/writepanels/writepanel-product_data.php:38 -msgid "Simple product" -msgstr "Egyszerű termék" - -#: admin/post-types/product.php:399 -msgid "Show all sub-types" -msgstr "Összes altípus megjelenítése" - -#: admin/post-types/product.php:520 -msgid "[%s with SKU of %s]" -msgstr "[% a megadott cikkszámmal %s]" - -#: admin/post-types/product.php:526 -msgid "[%s with ID of %d]" -msgstr "[%s a megadott azonosítóval %s]" - -#: admin/post-types/product.php:552 admin/post-types/product.php:783 -#: admin/post-types/writepanels/writepanels-init.php:46 -#: admin/settings/settings-init.php:508 -msgid "Product Data" -msgstr "Termékadatok" - -#: admin/post-types/product.php:570 -msgid "Regular price" -msgstr "Ár" - -#: admin/post-types/product.php:575 admin/post-types/product.php:813 -msgid "Sale" -msgstr "Akciós" - -#: admin/post-types/product.php:577 -msgid "Sale price" -msgstr "Akciós ár" - -#: admin/post-types/product.php:588 admin/post-types/product.php:839 -#: admin/post-types/writepanels/variation-admin-html.php:96 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:83 -#: admin/post-types/writepanels/writepanel-product_data.php:273 -msgid "Weight" -msgstr "Súly" - -#: admin/post-types/product.php:599 admin/post-types/product.php:863 -msgid "L/W/H" -msgstr "H/Sz/M" - -#: admin/post-types/product.php:601 admin/post-types/product.php:879 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:286 -msgid "Length" -msgstr "Hossz" - -#: admin/post-types/product.php:602 admin/post-types/product.php:880 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:85 -#: admin/post-types/writepanels/writepanel-product_data.php:287 -#: admin/woocommerce-admin-settings.php:797 -msgid "Width" -msgstr "Szélesség" - -#: admin/post-types/product.php:603 admin/post-types/product.php:881 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:86 -#: admin/post-types/writepanels/writepanel-product_data.php:288 -#: admin/woocommerce-admin-settings.php:799 -msgid "Height" -msgstr "Magasság" - -#: admin/post-types/product.php:613 admin/post-types/product.php:887 -msgid "Visibility" -msgstr "Láthatóság" - -#: admin/post-types/product.php:618 admin/post-types/product.php:893 -msgid "Catalog & search" -msgstr "Katalógus és keresés" - -#: admin/post-types/product.php:619 admin/post-types/product.php:894 -#: admin/post-types/writepanels/writepanel-product_data.php:1048 -#: admin/woocommerce-admin-content.php:46 -#: admin/woocommerce-admin-settings.php:183 -msgid "Catalog" -msgstr "Katalógus" - -#: admin/post-types/product.php:620 admin/post-types/product.php:895 -#: admin/post-types/writepanels/writepanel-product_data.php:1049 -msgid "Search" -msgstr "Keresés" - -#: admin/post-types/product.php:621 admin/post-types/product.php:896 -#: admin/post-types/writepanels/writepanel-product_data.php:1050 -msgid "Hidden" -msgstr "Rejtett" - -#: admin/post-types/product.php:636 admin/post-types/product.php:924 -msgid "In stock?" -msgstr "Raktáron?" - -#: admin/post-types/product.php:657 admin/post-types/product.php:942 -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Manage stock?" -msgstr "Készletkezelés?" - -#: admin/post-types/product.php:661 admin/post-types/product.php:961 -#: admin/post-types/product.php:977 -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "Stock Qty" -msgstr "Raktár mny" - -#: admin/post-types/product.php:794 admin/post-types/product.php:818 -#: admin/post-types/product.php:844 admin/post-types/product.php:868 -#: admin/post-types/product.php:892 admin/post-types/product.php:911 -#: admin/post-types/product.php:929 admin/post-types/product.php:947 -#: admin/post-types/product.php:966 -msgid "— No Change —" -msgstr "— Nincs változtatás —" - -#: admin/post-types/product.php:795 admin/post-types/product.php:819 -#: admin/post-types/product.php:845 admin/post-types/product.php:869 -#: admin/post-types/product.php:967 -msgid "Change to:" -msgstr "Módosítás:" - -#: admin/post-types/product.php:796 admin/post-types/product.php:820 -msgid "Increase by (fixed amount or %):" -msgstr "Növelés mértéke (fix összeg vagy %):" - -#: admin/post-types/product.php:797 admin/post-types/product.php:821 -msgid "Decrease by (fixed amount or %):" -msgstr "Csökkentés mértéke (fix összeg vagy %):" - -#: admin/post-types/product.php:807 admin/post-types/product.php:832 -msgid "Enter price" -msgstr "Írd be az árat" - -#: admin/post-types/product.php:822 -msgid "Decrease regular price by (fixed amount or %):" -msgstr "Ár csökkentése (fix összeg vagy %):" - -#: admin/post-types/product.php:912 admin/post-types/product.php:948 -#: admin/post-types/shop_order.php:190 admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:286 -msgid "Yes" -msgstr "Igen" - -#: admin/post-types/product.php:913 admin/post-types/product.php:949 -#: admin/post-types/shop_order.php:192 admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:286 -msgid "No" -msgstr "Nem" - -#: admin/post-types/product.php:1183 -msgid "Sort Products" -msgstr "Termékek rendezése" - -#: admin/post-types/product.php:1222 -msgid "Insert into product" -msgstr "Beillesztés a termékbe" - -#: admin/post-types/product.php:1223 -msgid "Uploaded to this product" -msgstr "A termékhez feltöltve" - -#: admin/post-types/shop_coupon.php:25 -msgid "Code" -msgstr "Kód" - -#: admin/post-types/shop_coupon.php:26 -msgid "Coupon type" -msgstr "Kupon típus" - -#: admin/post-types/shop_coupon.php:27 -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Coupon amount" -msgstr "Kupon érték" - -#: admin/post-types/shop_coupon.php:28 -msgid "Description" -msgstr "Leírás" - -#: admin/post-types/shop_coupon.php:29 -msgid "Product IDs" -msgstr "Termékazonosítók" - -#: admin/post-types/shop_coupon.php:30 -msgid "Usage / Limit" -msgstr "Felhasználás / Korlát" - -#: admin/post-types/shop_coupon.php:31 -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "Expiry date" -msgstr "Lejárati dátum" - -#: admin/post-types/shop_coupon.php:56 -msgid "Edit coupon" -msgstr "Kupon szerkesztése" - -#: admin/post-types/shop_coupon.php:114 -msgid "%s / %s" -msgstr "%s / %s" - -#: admin/post-types/shop_coupon.php:116 -msgid "%s / ∞" -msgstr "%s / ∞" - -#: admin/post-types/shop_coupon.php:149 -msgid "Show all types" -msgstr "Összes típus megjelenítése" - -#: admin/post-types/shop_order.php:43 -#: admin/settings/settings-payment-gateways.php:29 -#: admin/settings/settings-shipping-methods.php:31 -msgid "Status" -msgstr "Állapot" - -#: admin/post-types/shop_order.php:44 -msgid "Order" -msgstr "Rendelés" - -#: admin/post-types/shop_order.php:45 -msgid "Billing" -msgstr "Számlázás" - -#: admin/post-types/shop_order.php:46 -#: admin/post-types/writepanels/writepanel-order_data.php:539 -#: admin/post-types/writepanels/writepanel-product_data.php:81 -#: admin/settings/settings-tax-rates.php:52 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-content.php:49 -#: admin/woocommerce-admin-settings.php:187 -msgid "Shipping" -msgstr "Szállítás" - -#: admin/post-types/shop_order.php:47 -msgid "Order Total" -msgstr "Rendelés végösszeg" - -#: admin/post-types/shop_order.php:48 -#: admin/post-types/writepanels/writepanels-init.php:71 -msgid "Order Notes" -msgstr "Rendelési megjegyzések" - -#: admin/post-types/shop_order.php:49 -msgid "Customer Notes" -msgstr "Vásárlói megjegyzések" - -#: admin/post-types/shop_order.php:51 -#: admin/post-types/writepanels/writepanel-order_data.php:386 -#: admin/post-types/writepanels/writepanel-order_data.php:433 -msgid "Actions" -msgstr "Műveletek" - -#: admin/post-types/shop_order.php:95 -#: admin/post-types/writepanels/writepanel-order_data.php:93 -msgid "Guest" -msgstr "Vendég" - -#: admin/post-types/shop_order.php:98 -msgid "Order %s" -msgstr "Rendelés %s" - -#: admin/post-types/shop_order.php:98 -msgid "made by" -msgstr "vásárolta" - -#: admin/post-types/shop_order.php:101 -msgid "Email:" -msgstr "E-mail cím:" - -#: admin/post-types/shop_order.php:104 -msgid "Tel:" -msgstr "Tel:" - -#: admin/post-types/shop_order.php:114 admin/post-types/shop_order.php:123 -msgid "Via" -msgstr "- " - -#: admin/post-types/shop_order.php:131 -msgid "Unpublished" -msgstr "Nem publikált" - -#: admin/post-types/shop_order.php:133 -msgid "Y/m/d g:i:s A" -msgstr "Y/m/d g:i:s A" - -#: admin/post-types/shop_order.php:139 -msgid "%s ago" -msgstr "%s telt el" - -#: admin/post-types/shop_order.php:141 -msgid "Y/m/d" -msgstr "Y/m/d" - -#: admin/post-types/shop_order.php:158 -#: admin/woocommerce-admin-dashboard.php:176 -msgid "Processing" -msgstr "Feldolgozás alatt" - -#: admin/post-types/shop_order.php:165 -msgid "Complete" -msgstr "Befejezett" - -#: admin/post-types/shop_order.php:282 -msgid "Show all statuses" -msgstr "Összes állapot megjelenítése" - -#: admin/post-types/shop_order.php:301 admin/post-types/shop_order.php:326 -msgid "Show all customers" -msgstr "Összes vásárló megjelenítése" - -#: admin/post-types/writepanels/order-download-permission-html.php:6 -msgid "Revoke Access" -msgstr "Hozzáférés visszavonása" - -#: admin/post-types/writepanels/order-download-permission-html.php:7 -#: admin/post-types/writepanels/variation-admin-html.php:7 -#: admin/post-types/writepanels/writepanel-product_data.php:369 -#: admin/post-types/writepanels/writepanel-product_data.php:463 -#: admin/woocommerce-admin-init.php:439 -msgid "Click to toggle" -msgstr "Kattints a be-/kikapcsoláshoz" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -msgid "File %d: %s" -msgstr "Fájl %d: %s" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "Letöltve %s alkalommal" -msgstr[1] "Letöltve %s alkalommal" - -#: admin/post-types/writepanels/order-download-permission-html.php:16 -msgid "Downloads Remaining" -msgstr "Hátralévő letöltések" - -#: admin/post-types/writepanels/order-download-permission-html.php:19 -#: admin/post-types/writepanels/variation-admin-html.php:151 -#: admin/post-types/writepanels/variation-admin-html.php:159 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Unlimited" -msgstr "Korlátlan" - -#: admin/post-types/writepanels/order-download-permission-html.php:22 -msgid "Access Expires" -msgstr "Hozzáférés lejárata" - -#: admin/post-types/writepanels/order-download-permission-html.php:23 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Never" -msgstr "Soha" - -#: admin/post-types/writepanels/order-fee-html.php:10 -msgid "Fee Name" -msgstr "Díj neve" - -#: admin/post-types/writepanels/order-fee-html.php:17 -#: admin/post-types/writepanels/order-item-html.php:89 -msgid "Tax class" -msgstr "Adózási osztály" - -#: admin/post-types/writepanels/order-fee-html.php:19 -#: admin/post-types/writepanels/order-tax-html.php:8 -#: admin/post-types/writepanels/writepanel-order_data.php:561 -#: admin/post-types/writepanels/writepanel-order_data.php:666 -#: admin/woocommerce-admin-reports.php:1658 -#: admin/woocommerce-admin-reports.php:2671 -#: admin/woocommerce-admin-reports.php:2680 -#: admin/woocommerce-admin-users.php:90 admin/woocommerce-admin-users.php:112 -msgid "N/A" -msgstr "N/A" - -#: admin/post-types/writepanels/order-fee-html.php:20 -#: admin/post-types/writepanels/writepanel-product_data.php:179 -msgid "Taxable" -msgstr "Adóköteles" - -#: admin/post-types/writepanels/order-fee-html.php:25 -#: admin/post-types/writepanels/order-item-html.php:96 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:53 -#: admin/post-types/writepanels/writepanel-product_data.php:186 -#: admin/settings/settings-init.php:972 -#: admin/settings/settings-tax-rates.php:29 -#: admin/woocommerce-admin-settings.php:228 -msgid "Standard" -msgstr "Szabványos" - -#: admin/post-types/writepanels/order-fee-html.php:43 -#: admin/post-types/writepanels/order-item-html.php:115 -#: admin/woocommerce-admin-reports.php:1562 -#: admin/woocommerce-admin-reports.php:1615 -#: admin/woocommerce-admin-reports.php:2386 -#: admin/woocommerce-admin-reports.php:2555 -#: admin/woocommerce-admin-reports.php:2633 -msgid "Total" -msgstr "Összesen" - -#: admin/post-types/writepanels/order-item-html.php:10 -msgid "Product ID:" -msgstr "Termékazonosító:" - -#: admin/post-types/writepanels/order-item-html.php:13 -msgid "Variation ID:" -msgstr "Variációazonosító:" - -#: admin/post-types/writepanels/order-item-html.php:16 -msgid "Product SKU:" -msgstr "Termék cikkszám:" - -#: admin/post-types/writepanels/order-item-html.php:44 -msgid "Add meta" -msgstr "Meta-adatok hozzáadása" - -#: admin/post-types/writepanels/order-item-html.php:117 -msgid "Subtotal" -msgstr "Részösszeg" - -#: admin/post-types/writepanels/order-tax-html.php:6 -msgid "Tax Rate:" -msgstr "Adózási ráta:" - -#: admin/post-types/writepanels/order-tax-html.php:16 -#: admin/post-types/writepanels/writepanel-order_data.php:630 -msgid "Sales Tax:" -msgstr "Termékadó:" - -#: admin/post-types/writepanels/order-tax-html.php:20 -#: admin/post-types/writepanels/writepanel-order_data.php:638 -msgid "Shipping Tax:" -msgstr "Szállítási adó:" - -#: admin/post-types/writepanels/variation-admin-html.php:6 -#: admin/post-types/writepanels/writepanel-product_data.php:368 -#: admin/post-types/writepanels/writepanel-product_data.php:462 -#: admin/woocommerce-admin-init.php:438 -msgid "Remove" -msgstr "Eltávolítás" - -#: admin/post-types/writepanels/variation-admin-html.php:20 -msgid "Any" -msgstr "Bármely" - -#: admin/post-types/writepanels/variation-admin-html.php:52 -msgid "" -"Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "" -"Írj be egy cikkszámot ehhez a variációhoz vagy hagyd üresen a szülő termék " -"cikkszámának használatához." - -#: admin/post-types/writepanels/variation-admin-html.php:63 -msgid "Stock Qty:" -msgstr "Készlet mny:" - -#: admin/post-types/writepanels/variation-admin-html.php:63 -msgid "" -"Enter a quantity to enable stock management at variation level, or leave " -"blank to use the parent product's options." -msgstr "" -"Írj be egy mennyiséget a variációnak vagy hagyd üresen a szülő termék " -"beállításainak használatához." - -#: admin/post-types/writepanels/variation-admin-html.php:72 -msgid "Regular Price:" -msgstr "Ár:" - -#: admin/post-types/writepanels/variation-admin-html.php:73 -msgid "Variation price (required)" -msgstr "Variáció ár (kötelező)" - -#: admin/post-types/writepanels/variation-admin-html.php:76 -msgid "Sale Price:" -msgstr "Akciós ár:" - -#: admin/post-types/writepanels/variation-admin-html.php:76 -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Schedule" -msgstr "Időzítés" - -#: admin/post-types/writepanels/variation-admin-html.php:76 -msgid "Cancel schedule" -msgstr "Időzítés visszavonása" - -#: admin/post-types/writepanels/variation-admin-html.php:83 -msgid "Sale start date:" -msgstr "Akciós időszak kezdete:" - -#: admin/post-types/writepanels/variation-admin-html.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:136 -msgctxt "placeholder" -msgid "From…" -msgstr "Kezdet…" - -#: admin/post-types/writepanels/variation-admin-html.php:87 -msgid "Sale end date:" -msgstr "Akciós időszak vége:" - -#: admin/post-types/writepanels/variation-admin-html.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:137 -msgctxt "placeholder" -msgid "To…" -msgstr "Vég…" - -#: admin/post-types/writepanels/variation-admin-html.php:96 -msgid "" -"Enter a weight for this variation or leave blank to use the parent product " -"weight." -msgstr "" -"Írj be egy súlyt a variációnak vagy hagyd üresen a szülő termék súlyának " -"használatához." - -#: admin/post-types/writepanels/variation-admin-html.php:104 -msgid "Dimensions (L×W×H)" -msgstr "Méretek (H×Sz×M)" - -#: admin/post-types/writepanels/variation-admin-html.php:115 -msgid "Shipping class:" -msgstr "Szállítási osztály:" - -#: admin/post-types/writepanels/variation-admin-html.php:119 -#: admin/post-types/writepanels/variation-admin-html.php:132 -msgid "Same as parent" -msgstr "Szülővel megegyező" - -#: admin/post-types/writepanels/variation-admin-html.php:130 -msgid "Tax class:" -msgstr "Adózási osztály:" - -#: admin/post-types/writepanels/variation-admin-html.php:143 -msgid "File paths:" -msgstr "Fájl útvonalak:" - -#: admin/post-types/writepanels/variation-admin-html.php:143 -msgid "" -"Enter one or more File Paths, one per line, to make this variation a " -"downloadable product, or leave blank." -msgstr "" -"Írj be egy vagy több fájl útvonalat, soronként egyet, ha ezt a variációt " -"letölthető termékké szeretnéd alakítani vagy hagyd üresen." - -#: admin/post-types/writepanels/variation-admin-html.php:144 -#: admin/post-types/writepanels/writepanel-product_data.php:153 -msgid "File paths/URLs, one per line" -msgstr "Fájl útvonalak/URL-ek, soronként egy" - -#: admin/post-types/writepanels/variation-admin-html.php:145 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Choose a file" -msgstr "Válassz egy fájlt" - -#: admin/post-types/writepanels/variation-admin-html.php:145 -msgid "Upload" -msgstr "Feltöltés" - -#: admin/post-types/writepanels/variation-admin-html.php:145 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Insert file URL" -msgstr "Fájl URL beillesztése" - -#: admin/post-types/writepanels/variation-admin-html.php:150 -msgid "Download Limit:" -msgstr "Letöltési korlát:" - -#: admin/post-types/writepanels/variation-admin-html.php:150 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Leave blank for unlimited re-downloads." -msgstr "Hagyd üresen a korlátlan újbóli letöltésekhez." - -#: admin/post-types/writepanels/variation-admin-html.php:158 -msgid "Download Expiry:" -msgstr "Letöltés lejárat:" - -#: admin/post-types/writepanels/variation-admin-html.php:158 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "" -"Enter the number of days before a download link expires, or leave blank." -msgstr "" -"Írd be a napok számát, mielőtt a letöltési link lejár vagy hagyd üresen." - -#: admin/post-types/writepanels/variation-admin-html.php:172 -msgid "Enabled" -msgstr "Engedélyezve" - -#: admin/post-types/writepanels/variation-admin-html.php:174 -msgid "" -"Enable this option if access is given to a downloadable file upon purchase " -"of a product" -msgstr "" -"Kapcsold be ezt az opciót, ha a termék megvásárlásakor hozzáférést adsz egy " -"letölthető fájlhoz" - -#: admin/post-types/writepanels/variation-admin-html.php:176 -msgid "" -"Enable this option if a product is not shipped or there is no shipping cost" -msgstr "" -"Kapcsold be ezt az opciót, ha a termék nem szállítható vagy nincs szállítási " -"költség" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Coupon description" -msgstr "Kupon leírás" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Optionally enter a description for this coupon for your reference." -msgstr "" -"Opcionálisan megadhatsz magadnak egy leírást a kuponhoz a későbbi hivatkozás " -"miatt." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:42 -msgid "Discount type" -msgstr "Kedvezmény típusa" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Value of the coupon." -msgstr "A kupon értéke." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "Enable free shipping" -msgstr "Ingyenes szállítás engedélyezése" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "" -"Check this box if the coupon grants free shipping. The free " -"shipping method must be enabled with the \"must use coupon\" setting " -"checked." -msgstr "" -"Pipáld be ezt a dobozt, ha a kupon ingyenes szállítást biztosít. Az ingyenes szállítási módnál be kell kapcsolni a \"csak kupon " -"használatával\" beállítást." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "Individual use" -msgstr "Egyéni felhasználás" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "" -"Check this box if the coupon cannot be used in conjunction with other " -"coupons." -msgstr "" -"Pipáld be ezt a dobozt, ha a kupon nem használható együtt más kuponokkal." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "Apply before tax" -msgstr "Alkalmazás az adók előtt" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "" -"Check this box if the coupon should be applied before calculating cart tax." -msgstr "" -"Pipáld be ezt a dobozt, ha a kupont a kosár adók kiszámítása előtt szeretnéd " -"alkalmazni." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "Exclude sale items" -msgstr "Akciós termékek kizárása" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "" -"Check this box if the coupon should not apply to items on sale. Per-item " -"coupons will only work if the item is not on sale. Per-cart coupons will " -"only work if there are no sale items in the cart." -msgstr "" -"Pipáld be ezt a dobozt, ha a kupon nem érvényes akciós termékekre. A " -"termékekre szóló kuponok csak akkor fognak működni, ha a termék nem akciós. " -"A kosárra szóló kuponok csak akkor fognak működni, ha nincs akciós termék a " -"kosárban." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "Minimum amount" -msgstr "Minimális összeg" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "No minimum" -msgstr "Nincs minimum" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "" -"This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "" -"Ebben a mezőben beállítható egy minimális összeg, ami szükséges a kupon " -"használatához." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:74 -#: admin/woocommerce-admin-taxonomies.php:28 -#: admin/woocommerce-admin-taxonomies.php:122 -msgid "Products" -msgstr "Termékek" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:75 -#: admin/post-types/writepanels/writepanel-order_data.php:400 -#: admin/post-types/writepanels/writepanel-product_data.php:523 -#: admin/post-types/writepanels/writepanel-product_data.php:540 -#: admin/woocommerce-admin-reports.php:1245 -msgid "Search for a product…" -msgstr "Termék keresése…" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:89 -msgid "" -"Products which need to be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are discounted." -msgstr "" -"A kosárban kötelezően lévő termékek, amik a kupon használatához kellenek " -"vagy \"Termék kedvezmény\" esetén a kedvezményes termékek." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:94 -msgid "Exclude products" -msgstr "Termékek kizárása" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:95 -msgid "Search for a product…" -msgstr "Termék keresése..." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:109 -msgid "" -"Products which must not be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are not discounted." -msgstr "" -"A kosárban kötelezően nem lévő termékek, amik a kupon használatához kellenek " -"vagy \"Termék kedvezmény\" esetén a nem kedvezményes termékek." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:116 -msgid "Product categories" -msgstr "Termékkategóriák" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:117 -msgid "Any category" -msgstr "Bármely kategória" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:125 -msgid "" -"A product must be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will be discounted." -msgstr "" -"A termék kötelezően a kategóriában kell legyen, hogy a kupon érvényes " -"maradjon vagy \"Termék kedvezmény\" esetén a felsorolt kategóriákban lévő " -"termékek kedvezményesek." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:130 -msgid "Exclude categories" -msgstr "Kategóriák kizárása" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:131 -msgid "No categories" -msgstr "Nincsenek kategóriák" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:139 -msgid "" -"Product must not be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will not be discounted." -msgstr "" -"A termék kötelezően nem szerepelhet a kategóriában, hogy a kupon érvényes " -"maradjon vagy \"Termék kedvezmény\" esetén a felsorolt kategóriákban nem " -"lévő termékek kedvezményesek." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "Email restrictions" -msgstr "E-mail korlátozások" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "No restrictions" -msgstr "Nincsenek korlátozások" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "" -"List of emails to check against the customer's billing email when an order " -"is placed." -msgstr "" -"E-mail címek listája amelyeket össze kell vetni a vásárló számlázási e-mail " -"címével." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "Usage limit" -msgstr "Felhasználási korlát" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "Korlátlan felhasználás" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "How many times this coupon can be used before it is void." -msgstr "Hány alkalommal használható a kupon, mielőtt lejárna." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgctxt "placeholder" -msgid "Never expire" -msgstr "Soha nem jár le" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "The date this coupon will expire, YYYY-MM-DD." -msgstr "A kupon lejárati dátuma, ÉÉÉÉ-HH-NN." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:195 -msgid "" -"Coupon code already exists - customers will use the latest coupon with this " -"code." -msgstr "" -"A kuponkód már létezik - a vásárlók a legutóbbi kupont fogják ezzel a kóddal " -"használni." - -#: admin/post-types/writepanels/writepanel-order_data.php:59 -msgid "Order Details" -msgstr "Rendelés részletei" - -#: admin/post-types/writepanels/writepanel-order_data.php:62 -msgid "Order number" -msgstr "Rendelés" - -#: admin/post-types/writepanels/writepanel-order_data.php:67 -msgid "Customer IP:" -msgstr "Vásárló IP címe:" - -#: admin/post-types/writepanels/writepanel-order_data.php:74 -msgid "General Details" -msgstr "Általános adatok" - -#: admin/post-types/writepanels/writepanel-order_data.php:76 -msgid "Order status:" -msgstr "Rendelési állapot:" - -#: admin/post-types/writepanels/writepanel-order_data.php:86 -msgid "Order Date:" -msgstr "Rendelés ideje:" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -msgid "h" -msgstr "ó" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#: admin/settings/settings-init.php:567 -msgid "m" -msgstr "p" - -#: admin/post-types/writepanels/writepanel-order_data.php:91 -msgid "Customer:" -msgstr "Vásárló:" - -#: admin/post-types/writepanels/writepanel-order_data.php:131 -msgid "Customer Note:" -msgstr "Vásárlói megjegyzés:" - -#: admin/post-types/writepanels/writepanel-order_data.php:132 -msgid "Customer's notes about the order" -msgstr "A vásárló megjegyzései a rendeléshez" - -#: admin/post-types/writepanels/writepanel-order_data.php:140 -msgid "Billing Details" -msgstr "Számlázási adatok" - -#: admin/post-types/writepanels/writepanel-order_data.php:144 -#: admin/post-types/writepanels/writepanel-order_data.php:234 -msgid "First Name" -msgstr "Vezetéknév" - -#: admin/post-types/writepanels/writepanel-order_data.php:148 -#: admin/post-types/writepanels/writepanel-order_data.php:238 -msgid "Last Name" -msgstr "Keresztnév" - -#: admin/post-types/writepanels/writepanel-order_data.php:152 -#: admin/post-types/writepanels/writepanel-order_data.php:242 -#: admin/woocommerce-admin-users.php:155 admin/woocommerce-admin-users.php:204 -msgid "Company" -msgstr "Cég" - -#: admin/post-types/writepanels/writepanel-order_data.php:156 -#: admin/post-types/writepanels/writepanel-order_data.php:246 -#: admin/woocommerce-admin-users.php:159 admin/woocommerce-admin-users.php:208 -msgid "Address 1" -msgstr "Cím 1" - -#: admin/post-types/writepanels/writepanel-order_data.php:160 -#: admin/post-types/writepanels/writepanel-order_data.php:250 -#: admin/woocommerce-admin-users.php:163 admin/woocommerce-admin-users.php:212 -msgid "Address 2" -msgstr "Cím 2" - -#: admin/post-types/writepanels/writepanel-order_data.php:164 -#: admin/post-types/writepanels/writepanel-order_data.php:254 -#: admin/settings/settings-tax-rates.php:42 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-users.php:167 admin/woocommerce-admin-users.php:216 -msgid "City" -msgstr "Város" - -#: admin/post-types/writepanels/writepanel-order_data.php:168 -#: admin/post-types/writepanels/writepanel-order_data.php:258 -#: admin/woocommerce-admin-users.php:171 admin/woocommerce-admin-users.php:220 -msgid "Postcode" -msgstr "Irányítószám" - -#: admin/post-types/writepanels/writepanel-order_data.php:172 -#: admin/post-types/writepanels/writepanel-order_data.php:262 -#: admin/woocommerce-admin-users.php:179 admin/woocommerce-admin-users.php:228 -msgid "Country" -msgstr "Ország" - -#: admin/post-types/writepanels/writepanel-order_data.php:175 -#: admin/post-types/writepanels/writepanel-order_data.php:265 -msgid "Select a country…" -msgstr "Válassz országot…" - -#: admin/post-types/writepanels/writepanel-order_data.php:178 -#: admin/post-types/writepanels/writepanel-order_data.php:268 -#: admin/woocommerce-admin-users.php:175 admin/woocommerce-admin-users.php:224 -msgid "State/County" -msgstr "Megye" - -#: admin/post-types/writepanels/writepanel-order_data.php:182 -#: admin/woocommerce-admin-users.php:187 -msgid "Email" -msgstr "E-mail cím" - -#: admin/post-types/writepanels/writepanel-order_data.php:185 -msgid "Phone" -msgstr "Telefonszám" - -#: admin/post-types/writepanels/writepanel-order_data.php:193 -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#: admin/post-types/writepanels/writepanel-order_data.php:277 -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "Address" -msgstr "Cím" - -#: admin/post-types/writepanels/writepanel-order_data.php:195 -msgid "No billing address set." -msgstr "Nincs beállítva számlázási cím." - -#: admin/post-types/writepanels/writepanel-order_data.php:208 -msgid "Load billing address" -msgstr "Számlázási cím betöltése" - -#: admin/post-types/writepanels/writepanel-order_data.php:230 -msgid "Shipping Details" -msgstr "Szállítási adatok" - -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "No shipping address set." -msgstr "Nincs beállítva szállítási cím." - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Load shipping address" -msgstr "Szállítási cím betöltése" - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Copy from billing" -msgstr "Másolás a számlázási címből" - -#: admin/post-types/writepanels/writepanel-order_data.php:339 -msgid "Item" -msgstr "Termék" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#: admin/post-types/writepanels/writepanel-product_data.php:191 -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Class" -msgstr "Adózási osztály" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -msgid "Tax class for the line item" -msgstr "Sorelem adózási osztálya" - -#: admin/post-types/writepanels/writepanel-order_data.php:347 -msgid "Qty" -msgstr "Mny" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -msgid "Totals" -msgstr "Végösszeg" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -msgid "Line subtotals are before pre-tax discounts, totals are after." -msgstr "" -"A sorok részösszegei adózás előtti kedvezményekkel, a végösszegek azutáni." - -#: admin/post-types/writepanels/writepanel-order_data.php:352 -#: admin/settings/settings-tax-rates.php:387 -#: admin/settings/settings-tax-rates.php:475 -#: admin/woocommerce-admin-content.php:48 -#: admin/woocommerce-admin-settings.php:186 -msgid "Tax" -msgstr "Adó" - -#: admin/post-types/writepanels/writepanel-order_data.php:388 -msgid "Delete Lines" -msgstr "Sorok törlése" - -#: admin/post-types/writepanels/writepanel-order_data.php:390 -msgid "Stock Actions" -msgstr "Készlet műveletek" - -#: admin/post-types/writepanels/writepanel-order_data.php:391 -msgid "Reduce Line Stock" -msgstr "Sorkészlet csökkentése" - -#: admin/post-types/writepanels/writepanel-order_data.php:392 -msgid "Increase Line Stock" -msgstr "Sorkészlet növelése" - -#: admin/post-types/writepanels/writepanel-order_data.php:396 -#: admin/post-types/writepanels/writepanel-order_data.php:456 -msgid "Apply" -msgstr "Alkalmazás" - -#: admin/post-types/writepanels/writepanel-order_data.php:402 -msgid "Add item(s)" -msgstr "Elem(ek) hozzáadása" - -#: admin/post-types/writepanels/writepanel-order_data.php:403 -msgid "Add fee" -msgstr "Díj hozzáadása" - -#: admin/post-types/writepanels/writepanel-order_data.php:434 -msgid "Resend order emails" -msgstr "Megrendelő e-mailek újraküldése" - -#: admin/post-types/writepanels/writepanel-order_data.php:465 -msgid "Move to Trash" -msgstr "Áthelyezés a lomtárba" - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save Order" -msgstr "Rendelés mentése" - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save/update the order" -msgstr "Rendelés mentése/frissítése" - -#: admin/post-types/writepanels/writepanel-order_data.php:498 -msgid "Discounts" -msgstr "Kedvezmények" - -#: admin/post-types/writepanels/writepanel-order_data.php:502 -msgid "Cart Discount:" -msgstr "Kosár kedvezmény:" - -#: admin/post-types/writepanels/writepanel-order_data.php:502 -msgid "Discounts before tax - calculated by comparing subtotals to totals." -msgstr "" -"Adózás előtti kedvezmények - a részösszegeket a végösszeghez hasonlítva " -"kerül kiszámításra." - -#: admin/post-types/writepanels/writepanel-order_data.php:510 -msgid "Order Discount:" -msgstr "Rendelési kedv.:" - -#: admin/post-types/writepanels/writepanel-order_data.php:510 -msgid "Discounts after tax - user defined." -msgstr "Adózás utáni kedvezmények - felhasználó által definiált." - -#: admin/post-types/writepanels/writepanel-order_data.php:543 -msgid "Label:" -msgstr "Címke:" - -#: admin/post-types/writepanels/writepanel-order_data.php:544 -msgid "The shipping title the customer sees" -msgstr "A szállítási mód neve amit a vásárló lát" - -#: admin/post-types/writepanels/writepanel-order_data.php:551 -msgid "Cost:" -msgstr "Ár:" - -#: admin/post-types/writepanels/writepanel-order_data.php:552 -msgid "(ex. tax)" -msgstr "(adó nélkül)" - -#: admin/post-types/writepanels/writepanel-order_data.php:559 -msgid "Method:" -msgstr "Mód:" - -#: admin/post-types/writepanels/writepanel-order_data.php:581 -#: admin/post-types/writepanels/writepanel-order_data.php:583 -#: admin/post-types/writepanels/writepanel-order_data.php:682 -#: admin/post-types/writepanels/writepanel-order_data.php:684 -msgid "Other" -msgstr "Egyéb" - -#: admin/post-types/writepanels/writepanel-order_data.php:597 -msgid "Tax Rows" -msgstr "Soradók" - -#: admin/post-types/writepanels/writepanel-order_data.php:622 -msgid "+ Add tax row" -msgstr "+ Soradó hozzáadása" - -#: admin/post-types/writepanels/writepanel-order_data.php:622 -msgid "" -"These rows contain taxes for this order. This allows you to display multiple " -"or compound taxes rather than a single total." -msgstr "" -"Ezek a sorok a rendelés adóit tartalmazzák. Lehetővé teszi több vagy " -"összetett adók megjelenítését egy végösszeg helyett." - -#: admin/post-types/writepanels/writepanel-order_data.php:626 -msgid "Tax Totals" -msgstr "Adó végösszeg" - -#: admin/post-types/writepanels/writepanel-order_data.php:630 -msgid "Total tax for line items + fees." -msgstr "Összes adó a sorelemekhez + költségek." - -#: admin/post-types/writepanels/writepanel-order_data.php:652 -#: admin/post-types/writepanels/writepanels-init.php:70 -msgid "Order Totals" -msgstr "Rendelés összesítő" - -#: admin/post-types/writepanels/writepanel-order_data.php:656 -msgid "Order Total:" -msgstr "Rendelés végösszeg:" - -#: admin/post-types/writepanels/writepanel-order_data.php:664 -msgid "Payment Method:" -msgstr "Fizetési mód:" - -#: admin/post-types/writepanels/writepanel-order_data.php:695 -msgid "Calc taxes" -msgstr "Adó számítása" - -#: admin/post-types/writepanels/writepanel-order_data.php:697 -msgid "Calc totals" -msgstr "Végösszeg számítása" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:57 -msgid "Choose a downloadable product…" -msgstr "Válassz egy letölthető terméket…" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:87 -msgid "Grant Access" -msgstr "Hozzáférés engedélyezése" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:125 -msgid "" -"Could not grant access - the user may already have permission for this file " -"or billing email is not set. Ensure the billing email is set, and the order " -"has been saved." -msgstr "" -"A hozzáférés nem engedélyezett - a felhasználónak már lehet hogy van joga " -"ehhez a fájlhoz vagy a számlázási e-mail címe nincs beállítva. Győződj meg " -"róla, hogy a számlázási e-mail cím be van állítva és a rendelés el van " -"mentve." - -#: admin/post-types/writepanels/writepanel-order_downloads.php:148 -msgid "Are you sure you want to revoke access to this download?" -msgstr "Biztos vagy benne, hogy visszavonod a letöltési jogot?" - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -msgid "added %s ago" -msgstr "%s telt el" - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -msgid "Delete note" -msgstr "Megjegyzés törlése" - -#: admin/post-types/writepanels/writepanel-order_notes.php:50 -msgid "There are no notes for this order yet." -msgstr "Ehhez a rendeléshez még nincsenek megjegyzések." - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "Add note" -msgstr "Megjegyzés hozzáadása" - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "" -"Add a note for your reference, or add a customer note (the user will be " -"notified)." -msgstr "" -"Írhatsz megjegyzést magadnak későbbi hivatkozásként vagy vásárlói " -"megjegyzést (amiről a felhasználó értesül)." - -#: admin/post-types/writepanels/writepanel-order_notes.php:62 -msgid "Customer note" -msgstr "Vásárlói megjegyzés" - -#: admin/post-types/writepanels/writepanel-order_notes.php:63 -msgid "Private note" -msgstr "Privát megjegyzés" - -#: admin/post-types/writepanels/writepanel-order_notes.php:65 -#: admin/post-types/writepanels/writepanel-product_data.php:501 -msgid "Add" -msgstr "Hozzáadás" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations for variable products are defined here." -msgstr "A variálható termékek variációi itt adhatók meg." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations" -msgstr "Variációk" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:64 -msgid "" -"Before adding variations, add and save some attributes on the " -"Attributes tab." -msgstr "" -"Variációk hozzáadása előtt fel kell venned attribútumokat és elmentened őket " -"az Attribútumok fülön." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:66 -msgid "Learn more" -msgstr "További információk" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:73 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Close all" -msgstr "Összes bezárása" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:73 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Expand all" -msgstr "Összes kibontása" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -msgid "Bulk edit:" -msgstr "Tömeges szerkesztés:" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:76 -msgid "Toggle "Enabled"" -msgstr ""Bekapcsolt" váltása" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:77 -msgid "Toggle "Downloadable"" -msgstr ""Letölthető" váltása" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:78 -msgid "Toggle "Virtual"" -msgstr ""Virtuális" váltása" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:79 -msgid "Delete all variations" -msgstr "Összes variáció törlése" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:80 -msgid "Prices" -msgstr "Árak" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:81 -msgid "Sale prices" -msgstr "Akciós árak" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:87 -msgid "File Path" -msgstr "Fájl útvonal" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:88 -msgid "Download limit" -msgstr "Letöltési korlát" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:89 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Download Expiry" -msgstr "Letöltés lejárata" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:92 -msgid "Go" -msgstr "Mehet" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:194 -msgid "Add Variation" -msgstr "Variáció hozzáadása" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:196 -msgid "Link all variations" -msgstr "Összes variáció bekötése" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:198 -msgid "Default selections:" -msgstr "Alapértelmezett választások:" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:211 -msgid "No default" -msgstr "Nincs alapértelmezett" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:300 -msgid "" -"Are you sure you want to link all variations? This will create a new " -"variation for each and every possible combination of variation attributes " -"(max 50 per run)." -msgstr "" -"Biztos vagy benne, hogy az összes variációt be akarod kötni? A variáció " -"attribútumok minden lehetséges kombinációjában létre fog jönni egy új " -"variáció (max 50 futtatásonként)." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:317 -msgid "variation added" -msgstr "variáció hozzáadva" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:319 -msgid "variations added" -msgstr "variáció hozzáadva" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:321 -msgid "No variations added" -msgstr "Nincsenek hozzáadva variációk" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:344 -msgid "Are you sure you want to remove this variation?" -msgstr "Biztos vagy benne, hogy törölni szeretnéd ezt a variációt?" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:400 -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "" -"Biztos vagy benne, hogy törölni szeretnéd az összes variációt? A művelet nem " -"visszafordítható." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:403 -msgid "Last warning, are you sure?" -msgstr "Utolsó figyelmeztetés, biztos vagy benne?" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:440 -msgid "Enter a value" -msgstr "Írj be egy értéket" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:518 -#: admin/woocommerce-admin-taxonomies.php:62 -#: admin/woocommerce-admin-taxonomies.php:154 -msgid "Choose an image" -msgstr "Válassz egy képet" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:520 -msgid "Set variation image" -msgstr "Variáció képének beállítása" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:564 -msgid "Variable product" -msgstr "Variálható termék" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:630 -msgid "Variation #%s of %s" -msgstr "#%s / %s variáció" - -#: admin/post-types/writepanels/writepanel-product_data.php:43 -msgid "Product Type" -msgstr "Terméktípus" - -#: admin/post-types/writepanels/writepanel-product_data.php:53 -msgid "Virtual products are intangible and aren't shipped." -msgstr "A virtuális termék nem kézzelfogható és nem szállítható." - -#: admin/post-types/writepanels/writepanel-product_data.php:59 -msgid "Downloadable products give access to a file upon purchase." -msgstr "" -"A letölthető termékek hozzáférést biztosítanak egy fájlhoz vásárláskor." - -#: admin/post-types/writepanels/writepanel-product_data.php:77 -#: admin/woocommerce-admin-content.php:44 -#: admin/woocommerce-admin-settings.php:182 -msgid "General" -msgstr "Általános" - -#: admin/post-types/writepanels/writepanel-product_data.php:79 -#: admin/woocommerce-admin-content.php:47 -#: admin/woocommerce-admin-settings.php:185 -msgid "Inventory" -msgstr "Készlet" - -#: admin/post-types/writepanels/writepanel-product_data.php:83 -msgid "Linked Products" -msgstr "Kapcsolódó termékek" - -#: admin/post-types/writepanels/writepanel-product_data.php:85 -#: admin/woocommerce-admin-attributes.php:306 -#: admin/woocommerce-admin-init.php:66 -msgid "Attributes" -msgstr "Attribútumok" - -#: admin/post-types/writepanels/writepanel-product_data.php:87 -msgid "Advanced" -msgstr "Haladó" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "Stock Keeping Unit" -msgstr "Cikkszám" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "" -"SKU refers to a Stock-keeping unit, a unique identifier for each distinct " -"product and service that can be purchased." -msgstr "" -"A CSZ a cikkszámra utal, egy egyedi azonosító minden egyes termékhez és " -"szolgáltatáshoz, ami megvásárolható." - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Product URL" -msgstr "Termék URL" - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Enter the external URL to the product." -msgstr "Írd be a külső URL-t a termékhez." - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "Button text" -msgstr "Gomb szövege" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgctxt "placeholder" -msgid "Buy product" -msgstr "Termék megvásárlása" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "This text will be shown on the button linking to the external product." -msgstr "Ez a szöveg fog megjelenni a külső termékre mutató gombon." - -#: admin/post-types/writepanels/writepanel-product_data.php:119 -msgid "Regular Price" -msgstr "Ár" - -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Sale Price" -msgstr "Akciós ár" - -#: admin/post-types/writepanels/writepanel-product_data.php:135 -msgid "Sale Price Dates" -msgstr "Akciós időszak" - -#: admin/post-types/writepanels/writepanel-product_data.php:138 -#: admin/post-types/writepanels/writepanel-product_data.php:1083 -msgid "Cancel" -msgstr "Mégsem" - -#: admin/post-types/writepanels/writepanel-product_data.php:152 -msgid "File paths (one per line)" -msgstr "Fájl útvonalak (soronként egy)" - -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Download Limit" -msgstr "Letöltési korlát" - -#: admin/post-types/writepanels/writepanel-product_data.php:178 -msgid "Tax Status" -msgstr "Adó állapot" - -#: admin/post-types/writepanels/writepanel-product_data.php:180 -msgid "Shipping only" -msgstr "Csak szállítás" - -#: admin/post-types/writepanels/writepanel-product_data.php:181 -msgid "None" -msgstr "Nincs" - -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Enable stock management at product level" -msgstr "Készletkezelés engedélyezése termék szinten" - -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "" -"Stock quantity. If this is a variable product this value will be used to " -"control stock for all variations, unless you define stock at variation level." -msgstr "" -"Raktár mennyiség. Ha ez egy variálható termék, akkor ez az érték kezeli a " -"készletet minden variációra, kivéve ha variáció szinten megadod a készletet." - -#: admin/post-types/writepanels/writepanel-product_data.php:230 -msgid "Stock status" -msgstr "Készletállapot" - -#: admin/post-types/writepanels/writepanel-product_data.php:233 -msgid "" -"Controls whether or not the product is listed as \"in stock\" or \"out of " -"stock\" on the frontend." -msgstr "" -"Szabályozza, hogy \"raktáron\" vagy \"elfogyott\" termékként jelenik meg a " -"termék az oldalon." - -#: admin/post-types/writepanels/writepanel-product_data.php:240 -msgid "Allow Backorders?" -msgstr "Visszarendelések engedélyezve?" - -#: admin/post-types/writepanels/writepanel-product_data.php:241 -msgid "Do not allow" -msgstr "Nincs engedélyezve" - -#: admin/post-types/writepanels/writepanel-product_data.php:242 -msgid "Allow, but notify customer" -msgstr "Engedélyezve a vásárló értesítésével" - -#: admin/post-types/writepanels/writepanel-product_data.php:243 -msgid "Allow" -msgstr "Engedélyezve" - -#: admin/post-types/writepanels/writepanel-product_data.php:244 -msgid "" -"If managing stock, this controls whether or not backorders are allowed for " -"this product and variations. If enabled, stock quantity can go below 0." -msgstr "" -"Ha a készletkezelés engedélyezett, akkor a visszarendeléseket engedélyezi " -"vagy tiltja le a termékre és variációira vonatkozóan. Ha engedélyezett, " -"akkor a készlet lehet kisebb, mint 0." - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "Sold Individually" -msgstr "Önállóan értékesített" - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "" -"Enable this to only allow one of this item to be bought in a single order" -msgstr "Kapcsold be ha ebből a termékből csak egy szerepelhet egy rendelésben" - -#: admin/post-types/writepanels/writepanel-product_data.php:273 -msgid "Weight in decimal form" -msgstr "Súly tizedes formában" - -#: admin/post-types/writepanels/writepanel-product_data.php:284 -msgid "Dimensions" -msgstr "Méretek" - -#: admin/post-types/writepanels/writepanel-product_data.php:290 -msgid "LxWxH in decimal form" -msgstr "HxSzxM tizedes formában" - -#: admin/post-types/writepanels/writepanel-product_data.php:311 -msgid "No shipping class" -msgstr "Nincs szállítási osztály" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "Shipping class" -msgstr "Szállítási osztály" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "" -"Shipping classes are used by certain shipping methods to group similar " -"products." -msgstr "" -"A szállítási osztályokat bizonyos szállítási módok használják hasonló " -"termékek csoportosítására." - -#: admin/post-types/writepanels/writepanel-product_data.php:384 -#: admin/post-types/writepanels/writepanel-product_data.php:476 -#: admin/woocommerce-admin-init.php:440 -msgid "Value(s)" -msgstr "Érték(ek)" - -#: admin/post-types/writepanels/writepanel-product_data.php:386 -msgid "Select terms" -msgstr "Válassz értékeket" - -#: admin/post-types/writepanels/writepanel-product_data.php:398 -msgid "Select all" -msgstr "Összes kiválasztása" - -#: admin/post-types/writepanels/writepanel-product_data.php:398 -msgid "Select none" -msgstr "Összes törlése" - -#: admin/post-types/writepanels/writepanel-product_data.php:400 -msgid "Add new" -msgstr "Új hozzáadása" - -#: admin/post-types/writepanels/writepanel-product_data.php:413 -msgid "Pipe (|) separate terms" -msgstr "Függőleges vonallal (|) elválasztott kifejezések" - -#: admin/post-types/writepanels/writepanel-product_data.php:427 -#: admin/post-types/writepanels/writepanel-product_data.php:482 -#: admin/woocommerce-admin-init.php:442 -msgid "Visible on the product page" -msgstr "Látható a termékoldalon" - -#: admin/post-types/writepanels/writepanel-product_data.php:440 -#: admin/post-types/writepanels/writepanel-product_data.php:488 -#: admin/woocommerce-admin-init.php:443 -msgid "Used for variations" -msgstr "Variációkhoz használt" - -#: admin/post-types/writepanels/writepanel-product_data.php:477 -#: admin/woocommerce-admin-init.php:441 -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "" -"Írj be valamilyen szöveget vagy egy attribútumot pipe (|) karakterrel " -"elválasztva az értékeket." - -#: admin/post-types/writepanels/writepanel-product_data.php:503 -msgid "Custom product attribute" -msgstr "Egyedi termék attribútum" - -#: admin/post-types/writepanels/writepanel-product_data.php:515 -msgid "Save attributes" -msgstr "Attribútumok mentése" - -#: admin/post-types/writepanels/writepanel-product_data.php:522 -msgid "Up-Sells" -msgstr "Upsell" - -#: admin/post-types/writepanels/writepanel-product_data.php:537 -msgid "" -"Up-sells are products which you recommend instead of the currently viewed " -"product, for example, products that are more profitable or better quality or " -"more expensive." -msgstr "" -"Az upsell termékek olyan termékek amiket az aktuálisan megtekintt termék " -"helyett javasolsz, például olyan termékek amik nyereségesebbek vagy jobb " -"minőségűek vagy drágábbak." - -#: admin/post-types/writepanels/writepanel-product_data.php:539 -msgid "Cross-Sells" -msgstr "Keresztértékesítés" - -#: admin/post-types/writepanels/writepanel-product_data.php:555 -msgid "" -"Cross-sells are products which you promote in the cart, based on the current " -"product." -msgstr "" -"A keresztértékesített termékek a kosárban promótált termékek az aktuális " -"termék alapján." - -#: admin/post-types/writepanels/writepanel-product_data.php:565 -msgid "Choose a grouped product…" -msgstr "Válassz egy csoportosított terméket…" - -#: admin/post-types/writepanels/writepanel-product_data.php:591 -msgid "Grouping" -msgstr "Csoportosítás" - -#: admin/post-types/writepanels/writepanel-product_data.php:591 -msgid "Set this option to make this product part of a grouped product." -msgstr "Állítsd be ezt az opciót, ha ez egy csoportosított termék része." - -#: admin/post-types/writepanels/writepanel-product_data.php:611 -msgid "Purchase Note" -msgstr "Vásárlási megjegyzés" - -#: admin/post-types/writepanels/writepanel-product_data.php:611 -msgid "Enter an optional note to send the customer after purchase." -msgstr "" -"Megadhatsz egy opcionális megjegyzést, amit vásárlás után megkap a vásárló." - -#: admin/post-types/writepanels/writepanel-product_data.php:618 -msgid "Menu order" -msgstr "Menü sorrend" - -#: admin/post-types/writepanels/writepanel-product_data.php:618 -msgid "Custom ordering position." -msgstr "Egyedi rendezési pozíció." - -#: admin/post-types/writepanels/writepanel-product_data.php:626 -msgid "Enable reviews" -msgstr "Vélemények engedélyezése" - -#: admin/post-types/writepanels/writepanel-product_data.php:715 -msgid "Product SKU must be unique." -msgstr "A termék cikkszáma egyedi kell legyen." - -#: admin/post-types/writepanels/writepanel-product_data.php:1047 -msgid "Catalog/search" -msgstr "Katalógus/keresés" - -#: admin/post-types/writepanels/writepanel-product_data.php:1054 -msgid "Catalog visibility:" -msgstr "Katalógus láthatóság:" - -#: admin/post-types/writepanels/writepanel-product_data.php:1070 -msgid "" -"Define the loops this product should be visible in. The product will still " -"be accessible directly." -msgstr "" -"A beállítással szabályozható hogy hol jelenjen meg a termék. A termék " -"továbbra is elérhető lesz közvetlen linken keresztül." - -#: admin/post-types/writepanels/writepanel-product_data.php:1076 -msgid "Enable this option to feature this product." -msgstr "Az alábbi beállítással kiemelheted a terméket." - -#: admin/post-types/writepanels/writepanel-product_data.php:1078 -msgid "Featured Product" -msgstr "Kiemelt termék" - -#: admin/post-types/writepanels/writepanel-product_data.php:1082 -msgid "OK" -msgstr "OK" - -#: admin/post-types/writepanels/writepanel-product_images.php:43 -#: admin/post-types/writepanels/writepanel-product_images.php:103 -msgid "Delete image" -msgstr "Kép törlése" - -#: admin/post-types/writepanels/writepanel-product_images.php:43 -#: admin/post-types/writepanels/writepanel-product_images.php:103 -#: admin/woocommerce-admin-attributes.php:330 -msgid "Delete" -msgstr "Törlés" - -#: admin/post-types/writepanels/writepanel-product_images.php:54 -msgid "Add product gallery images" -msgstr "Termékgaléria képek hozzáadása" - -#: admin/post-types/writepanels/writepanel-product_images.php:80 -msgid "Add Images to Product Gallery" -msgstr "Képek hozzáadása a termékgalériához" - -#: admin/post-types/writepanels/writepanel-product_images.php:82 -msgid "Add to gallery" -msgstr "Hozzáadás a galériához" - -#: admin/post-types/writepanels/writepanels-init.php:47 -msgid "Product Gallery" -msgstr "Termékgaléria" - -#: admin/post-types/writepanels/writepanels-init.php:55 -msgid "Product Short Description" -msgstr "Termék rövid leírás" - -#: admin/post-types/writepanels/writepanels-init.php:64 -msgid "Reviews" -msgstr "Vélemények" - -#: admin/post-types/writepanels/writepanels-init.php:68 -msgid "Order Data" -msgstr "Rendelési adatok" - -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "Order Items" -msgstr "Rendelés tartalma" - -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "" -"Note: if you edit quantities or remove items from the order you will need to " -"manually update stock levels." -msgstr "" -"Megjegyzés: ha módosítod a mennyiséget vagy eltávolítasz termékeket a " -"rendelésből, akkor kézileg kell frissítened a készletet." - -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "Downloadable Product Permissions" -msgstr "Letölthető termék jogosultságok" - -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "" -"Note: Permissions for order items will automatically be granted when the " -"order status changes to processing/completed." -msgstr "" -"Megjegyzés: a vásárló automatikusan jogot kap a letöltéshez, ha a rendelés " -"állapota feldolgozás alatt/befejezett lesz." - -#: admin/post-types/writepanels/writepanels-init.php:73 -msgid "Order Actions" -msgstr "Rendelési műveletek" - -#: admin/post-types/writepanels/writepanels-init.php:81 -msgid "Coupon Data" -msgstr "Kupon adatok" - -#: admin/post-types/writepanels/writepanels-init.php:100 -msgid "Coupon code" -msgstr "Kuponkód" - -#: admin/post-types/writepanels/writepanels-init.php:101 -msgid "Product name" -msgstr "Termék neve" - -#: admin/post-types/writepanels/writepanels-init.php:185 -msgid "Allow reviews." -msgstr "Vélemények engedélyezése." - -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "" -"Allow trackbacks and pingbacks on this " -"page." -msgstr "" -"Visszajelzések és visszakövetések " -"engedélyezése az oldalon." - -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" -msgstr "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" - -#: admin/settings/settings-frontend-styles.php:23 -msgid "Styles" -msgstr "Színek" - -#: admin/settings/settings-frontend-styles.php:43 -msgid "Primary" -msgstr "Elsődleges" - -#: admin/settings/settings-frontend-styles.php:43 -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "Cselekvésre ösztönző gombok/árcsúszka/rétegezett navigáció felülete" - -#: admin/settings/settings-frontend-styles.php:44 -msgid "Secondary" -msgstr "Másodlagos" - -#: admin/settings/settings-frontend-styles.php:44 -msgid "Buttons and tabs" -msgstr "Gombok és fülek" - -#: admin/settings/settings-frontend-styles.php:45 -msgid "Highlight" -msgstr "Kiemelés" - -#: admin/settings/settings-frontend-styles.php:45 -msgid "Price labels and Sale Flashes" -msgstr "Árcímkék és akciós feliratok" - -#: admin/settings/settings-frontend-styles.php:46 -msgid "Content" -msgstr "Tartalom" - -#: admin/settings/settings-frontend-styles.php:46 -msgid "Your themes page background - used for tab active states" -msgstr "Az oldal háttérszíne - termékfülek aktív állapotánál használt" - -#: admin/settings/settings-frontend-styles.php:47 -msgid "Subtext" -msgstr "Kísérő" - -#: admin/settings/settings-frontend-styles.php:47 -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "Szövegekhez és kísérőszövegekhez használt - útvonal, kis szöveg, stb." - -#: admin/settings/settings-frontend-styles.php:51 -msgid "" -"To edit colours woocommerce/assets/css/woocommerce-base.less " -"and woocommerce.css need to be writable. See the Codex for more " -"information." -msgstr "" -"A színek módosításához írhatóvá kell tenni a woocommerce/assets/css/" -"woocommerce-base.less és woocommerce.css fájlokat. " -"További információkért látogasd meg a Kódexet." - -#: admin/settings/settings-init.php:18 -msgid "Localisation" -msgstr "Lokalizáció" - -#: admin/settings/settings-init.php:19 -msgid "Use informal localisation for %s" -msgstr "Tegeződő %s fordítás használata" - -#: admin/settings/settings-init.php:33 -msgid "General Options" -msgstr "Általános beállítások" - -#: admin/settings/settings-init.php:36 -msgid "Base Location" -msgstr "Üzemeltetési hely" - -#: admin/settings/settings-init.php:37 -msgid "" -"This is the base location for your business. Tax rates will be based on this " -"country." -msgstr "" -"Ez az üzlet üzemeltetési helye. Az adózási ráták az itt megadott országtól " -"függnek majd." - -#: admin/settings/settings-init.php:46 -msgid "Currency" -msgstr "Pénznem" - -#: admin/settings/settings-init.php:47 -msgid "" -"This controls what currency prices are listed at in the catalog and which " -"currency gateways will take payments in." -msgstr "" -"Ez a beállítás szabályozza hogy milyen pénznemben jelennek meg az árak a " -"katalógusban és miket fogadnak a fizetési módok." - -#: admin/settings/settings-init.php:58 -msgid "Allowed Countries" -msgstr "Engedélyezett országok" - -#: admin/settings/settings-init.php:59 -msgid "These are countries that you are willing to ship to." -msgstr "Az itt megadott országokba engedélyezett a szállítás." - -#: admin/settings/settings-init.php:67 -msgid "All Countries" -msgstr "Összes ország" - -#: admin/settings/settings-init.php:68 admin/settings/settings-init.php:73 -msgid "Specific Countries" -msgstr "Kiválasztott országok" - -#: admin/settings/settings-init.php:84 -msgid "Store Notice" -msgstr "Üzlet felszólítás" - -#: admin/settings/settings-init.php:85 -msgid "Enable site-wide store notice text" -msgstr "Üzlet felszólítás engedélyezése" - -#: admin/settings/settings-init.php:92 -msgid "Store Notice Text" -msgstr "Üzlet felszólítás szövege" - -#: admin/settings/settings-init.php:95 -msgid "" -"This is a demo store for testing purposes — no orders shall be " -"fulfilled." -msgstr "" -"Ez egy demo üzlet tesztelési célokból — a rendelések nem kerülnek " -"teljesítésre." - -#: admin/settings/settings-init.php:102 -msgid "Cart, Checkout and Accounts" -msgstr "Kosár, pénztár és vásárlói fiókok" - -#: admin/settings/settings-init.php:105 admin/woocommerce-admin-content.php:61 -#: admin/woocommerce-admin-content.php:76 -#: admin/woocommerce-admin-reports.php:63 -msgid "Coupons" -msgstr "Kuponok" - -#: admin/settings/settings-init.php:106 -msgid "Enable the use of coupons" -msgstr "Kuponok használatának engedélyezése" - -#: admin/settings/settings-init.php:110 -msgid "Coupons can be applied from the cart and checkout pages." -msgstr "A kuponok a kosár és pénztár oldalakon használhatók fel." - -#: admin/settings/settings-init.php:114 -#: admin/woocommerce-admin-install.php:201 -#: admin/woocommerce-admin-status.php:307 -msgid "Checkout" -msgstr "Pénztár" - -#: admin/settings/settings-init.php:115 -msgid "Enable guest checkout (no account required)" -msgstr "Vendég vásárlás engedélyezése (nem szükséges fiók)" - -#: admin/settings/settings-init.php:123 -msgid "Enable customer note field on checkout" -msgstr "Vásárlói megjegyzés mező engedélyezése a pénztárnál" - -#: admin/settings/settings-init.php:131 -msgid "Force secure checkout" -msgstr "Biztonságos fizetés kényszerítése" - -#: admin/settings/settings-init.php:137 -msgid "" -"Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -msgstr "" -"SSL (HTTPS) kényszerítése a pénztár oldalakon (SSL tanúsítvány szükséges)." - -#: admin/settings/settings-init.php:141 -msgid "Un-force HTTPS when leaving the checkout" -msgstr "HTTPS kényszerítés megszüntetése a pénztár elhagyásakor" - -#: admin/settings/settings-init.php:150 -msgid "Registration" -msgstr "Regisztráció" - -#: admin/settings/settings-init.php:151 -msgid "Allow registration on the checkout page" -msgstr "Regisztráció engedélyezése a pénztár oldalon" - -#: admin/settings/settings-init.php:159 -msgid "Allow registration on the \"My Account\" page" -msgstr "Regisztráció engedélyezése a \"Fiókom\" oldalon" - -#: admin/settings/settings-init.php:167 -msgid "Register using the email address for the username" -msgstr "Regisztráció az e-mail címmel, mint felhasználónév" - -#: admin/settings/settings-init.php:175 -msgid "Customer Accounts" -msgstr "Vásárlói fiókok" - -#: admin/settings/settings-init.php:176 -msgid "Prevent customers from accessing WordPress admin" -msgstr "WordPress admin elérésének megakadályozása" - -#: admin/settings/settings-init.php:184 -msgid "Clear cart when logging out" -msgstr "Kosár ürítése kijelentkezéskor" - -#: admin/settings/settings-init.php:192 -msgid "Allow customers to repurchase orders from their account page" -msgstr "A vásárlók újravásárolhatják korábbi rendeléseiket a fiók oldalról" - -#: admin/settings/settings-init.php:201 -msgid "Styles and Scripts" -msgstr "Stílusok és szkriptek" - -#: admin/settings/settings-init.php:204 -msgid "Styling" -msgstr "Stílus" - -#: admin/settings/settings-init.php:205 -msgid "Enable WooCommerce CSS" -msgstr "WooCommerce CSS engedélyezése" - -#: admin/settings/settings-init.php:216 -msgid "Scripts" -msgstr "Szkriptek" - -#: admin/settings/settings-init.php:217 -msgid "Enable Lightbox" -msgstr "Lightbox engedélyezése" - -#: admin/settings/settings-init.php:220 -msgid "" -"Include WooCommerce's lightbox. Product gallery images and the add review " -"form will open in a lightbox." -msgstr "" -"A WooCommerce lightbox engedélyezése. A termékek galériaképei és a vásárlói " -"értékelés űrlap lightbox-ban nyílik meg." - -#: admin/settings/settings-init.php:226 -msgid "Enable enhanced country select boxes" -msgstr "Fejlett ország választó engedélyezése" - -#: admin/settings/settings-init.php:231 -msgid "This will enable a script allowing the country fields to be searchable." -msgstr "Lehetővé teszi az országok közötti keresést." - -#: admin/settings/settings-init.php:236 -msgid "Downloadable Products" -msgstr "Letölthető termékek" - -#: admin/settings/settings-init.php:239 -msgid "File Download Method" -msgstr "Fájl letöltési mód" - -#: admin/settings/settings-init.php:240 -msgid "" -"Forcing downloads will keep URLs hidden, but some servers may serve large " -"files unreliably. If supported, X-Accel-Redirect/ X-" -"Sendfile can be used to serve downloads instead (server requires " -"mod_xsendfile)." -msgstr "" -"A letöltések kényszerítésével az URL-ek rejtve maradnak, de bizonyos " -"szervereken a nagy fájlok kiszolgálása kiszámíthatatlan lehet. Ha " -"támogatott, akkor inkább az X-Accel-Redirect / X-" -"Sendfile használható a letöltések kiszolgálására (a szerveren " -"szükséges a mod_xsendfile)." - -#: admin/settings/settings-init.php:248 -msgid "Force Downloads" -msgstr "Letöltések kényszerítése" - -#: admin/settings/settings-init.php:249 -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "X-Accel-Redirect/X-Sendfile" - -#: admin/settings/settings-init.php:250 -msgid "Redirect only" -msgstr "Csak átirányítás" - -#: admin/settings/settings-init.php:255 -msgid "Access Restriction" -msgstr "Hozzáférés korlátozás" - -#: admin/settings/settings-init.php:256 -msgid "Downloads require login" -msgstr "A letöltéshez be kell jelentkezni" - -#: admin/settings/settings-init.php:260 -msgid "This setting does not apply to guest purchases." -msgstr "A beállítás nincs hatással a vendég vásárlásokra." - -#: admin/settings/settings-init.php:265 -msgid "Grant access to downloadable products after payment" -msgstr "A letölthető termékekhez csak fizetés után engedélyezett a hozzáférés" - -#: admin/settings/settings-init.php:269 -msgid "" -"Enable this option to grant access to downloads when orders are \"processing" -"\", rather than \"completed\"." -msgstr "" -"A beállítás bekapcsolásával a letöltésekhez való hozzáférés már \"folyamatban" -"\" lévő rendeléseknél is engedélyezett, nem csak \"befejezett\" " -"rendeléseknél. " - -#: admin/settings/settings-init.php:285 -msgid "" -"Note: The shop page has children - child pages will not work if you enable " -"this option." -msgstr "" -"Megjegyzés: Az üzlet oldalnak aloldalai vannak - az aloldalak nem fognak " -"működni ezen beállítás bekapcsolása után." - -#: admin/settings/settings-init.php:290 -msgid "Page Setup" -msgstr "Oldal beállítás" - -#: admin/settings/settings-init.php:292 -msgid "" -"Set up core WooCommerce pages here, for example the base page. The base page " -"can also be used in your %sproduct permalinks%s." -msgstr "" -"A fő WooCommerce oldalak itt állíthatóak be, mint például az üzlet főoldala. " -"A főoldal továbbá használható a %stermékek közvetlen linkjeiben%s is." - -#: admin/settings/settings-init.php:297 -msgid "Shop Base Page" -msgstr "Üzlet főoldala" - -#: admin/settings/settings-init.php:298 -msgid "" -"This sets the base page of your shop - this is where your product archive " -"will be." -msgstr "Ez az oldal az üzleted főoldala - itt fognak megjelenni a termékek." - -#: admin/settings/settings-init.php:308 -msgid "Terms Page ID" -msgstr "Felhasználási feltételek oldal" - -#: admin/settings/settings-init.php:309 -msgid "" -"If you define a \"Terms\" page the customer will be asked if they accept " -"them when checking out." -msgstr "" -"Ha megadsz \"Felhasználási feltételek\" oldalt, akkor a vásárlóknak el kell " -"azt fogadniuk fizetéskor." - -#: admin/settings/settings-init.php:320 -msgid "Shop Pages" -msgstr "Üzlet oldalak" - -#: admin/settings/settings-init.php:320 -msgid "" -"The following pages need selecting so that WooCommerce knows where they are. " -"These pages should have been created upon installation of the plugin, if not " -"you will need to create them." -msgstr "" -"Az alábbi oldalakat ki kell választani, hogy a WooCommerce tudja hol " -"találhatók. A telepítő ezeket az oldalakat létrehozta a bővítmény " -"telepítésekor, ha nem így történt, akkor ezeket az oldalakat kézzel kell " -"létrehozni." - -#: admin/settings/settings-init.php:323 -msgid "Cart Page" -msgstr "Kosár oldal" - -#: admin/settings/settings-init.php:324 -msgid "Page contents: [woocommerce_cart]" -msgstr "Oldal tartalma: [woocommerce_cart]" - -#: admin/settings/settings-init.php:334 -msgid "Checkout Page" -msgstr "Pénztár oldal" - -#: admin/settings/settings-init.php:335 -msgid "Page contents: [woocommerce_checkout]" -msgstr "Oldal tartalma: [woocommerce_checkout]" - -#: admin/settings/settings-init.php:345 -msgid "Pay Page" -msgstr "Fizetés oldal" - -#: admin/settings/settings-init.php:346 -msgid "Page contents: [woocommerce_pay] Parent: \"Checkout\"" -msgstr "Oldal tartalma: [woocommerce_pay] Szülő: \"Pénztár\"" - -#: admin/settings/settings-init.php:356 -msgid "Thanks Page" -msgstr "Köszönöm oldal" - -#: admin/settings/settings-init.php:357 -msgid "Page contents: [woocommerce_thankyou] Parent: \"Checkout\"" -msgstr "Oldal tartalma: [woocommerce_thankyou] Szülő: \"Pénztár\"" - -#: admin/settings/settings-init.php:367 -msgid "My Account Page" -msgstr "Fiókom oldal" - -#: admin/settings/settings-init.php:368 -msgid "Page contents: [woocommerce_my_account]" -msgstr "Oldal tartalma: [woocommerce_my_account]" - -#: admin/settings/settings-init.php:378 -msgid "Edit Address Page" -msgstr "Cím szerkesztése oldal" - -#: admin/settings/settings-init.php:379 -msgid "Page contents: [woocommerce_edit_address] Parent: \"My Account\"" -msgstr "Oldal tartalma: [woocommerce_edit_address] Szülő: \"Fiókom\"" - -#: admin/settings/settings-init.php:389 -msgid "View Order Page" -msgstr "Rendelés megtekintése oldal" - -#: admin/settings/settings-init.php:390 -msgid "Page contents: [woocommerce_view_order] Parent: \"My Account\"" -msgstr "Oldal tartalma: [woocommerce_view_order] Szülő: \"Fiókom\"" - -#: admin/settings/settings-init.php:400 -msgid "Change Password Page" -msgstr "Jelszó megváltoztatása oldal" - -#: admin/settings/settings-init.php:401 -msgid "Page contents: [woocommerce_change_password] Parent: \"My Account\"" -msgstr "Oldal tartalma: [woocommerce_change_password] Szülő: \"Fiókom\"" - -#: admin/settings/settings-init.php:411 -msgid "Logout Page" -msgstr "Kijelentkezés oldal" - -#: admin/settings/settings-init.php:412 -msgid "Parent: \"My Account\"" -msgstr "Szülő: \"Fiókom\"" - -#: admin/settings/settings-init.php:422 -msgid "Lost Password Page" -msgstr "Elfelejtett jelszó oldal" - -#: admin/settings/settings-init.php:423 -msgid "Page contents: [woocommerce_lost_password] Parent: \"My Account\"" -msgstr "Oldal tartalma: [woocommerce_lost_password] Szülő: \"Fiókom\"" - -#: admin/settings/settings-init.php:439 -msgid "Catalog Options" -msgstr "Katalógus beállítások" - -#: admin/settings/settings-init.php:442 -msgid "Default Product Sorting" -msgstr "Alapértelmezett termék rendezés" - -#: admin/settings/settings-init.php:443 -msgid "This controls the default sort order of the catalog." -msgstr "A katalógus alapértelmezett rendezését szabályozza." - -#: admin/settings/settings-init.php:449 -msgid "Default sorting (custom ordering + name)" -msgstr "Alapértelmezett rendezés (egyedi rendezés + név)" - -#: admin/settings/settings-init.php:450 -msgid "Popularity (sales)" -msgstr "Népszerűség (eladások száma)" - -#: admin/settings/settings-init.php:451 -msgid "Average Rating" -msgstr "Átlagos értékelés" - -#: admin/settings/settings-init.php:452 -msgid "Sort by most recent" -msgstr "Rendezés a legújabb szerint" - -#: admin/settings/settings-init.php:453 -msgid "Sort by price (asc)" -msgstr "Rendezés ár szerint (növekvő)" - -#: admin/settings/settings-init.php:454 -msgid "Sort by price (desc)" -msgstr "Rendezés ár szerint (csökkenő)" - -#: admin/settings/settings-init.php:460 -msgid "Shop Page Display" -msgstr "Üzlet oldal megjelenése" - -#: admin/settings/settings-init.php:461 -msgid "This controls what is shown on the product archive." -msgstr "A termék archívumok megjelenését szabályozza." - -#: admin/settings/settings-init.php:467 admin/settings/settings-init.php:482 -msgid "Show products" -msgstr "Termékek megjelenítése" - -#: admin/settings/settings-init.php:468 admin/settings/settings-init.php:483 -msgid "Show subcategories" -msgstr "Alkategóriák megjelenítése" - -#: admin/settings/settings-init.php:469 admin/settings/settings-init.php:484 -msgid "Show both" -msgstr "Mindkettő megjelenítése" - -#: admin/settings/settings-init.php:475 -msgid "Default Category Display" -msgstr "Alapértelmezett kategória megjelenés" - -#: admin/settings/settings-init.php:476 -msgid "This controls what is shown on category archives." -msgstr "A kategória archívumok megjelenését szabályozza." - -#: admin/settings/settings-init.php:490 -msgid "Add to cart" -msgstr "Kosárhoz adás" - -#: admin/settings/settings-init.php:491 -msgid "Redirect to the cart page after successful addition" -msgstr "Átirányítás a kosár oldalra sikeres hozzáadás után" - -#: admin/settings/settings-init.php:499 -msgid "Enable AJAX add to cart buttons on archives" -msgstr "AJAX kosárhoz adás gombok engedélyezése a terméklistában" - -#: admin/settings/settings-init.php:508 -msgid "" -"The following options affect the fields available on the edit product page." -msgstr "" -"Az alábbi beállítások a termékszerkesztő oldalon elérhető mezőket " -"szabályozzák." - -#: admin/settings/settings-init.php:511 -msgid "Product Fields" -msgstr "Termékmezők" - -#: admin/settings/settings-init.php:512 -msgid "Enable the SKU field for products" -msgstr "Cikkszám mező engedélyezése a termékeknél" - -#: admin/settings/settings-init.php:520 -msgid "" -"Enable the weight field for products (some shipping methods " -"may require this)" -msgstr "" -"Súly mező engedélyezése a termékeknél (egyes szállítási " -"módoknál kötelező lehet)" - -#: admin/settings/settings-init.php:528 -msgid "" -"Enable the dimension fields for products (some shipping " -"methods may require this)" -msgstr "" -"Méret mezők engedélyezése a termékeknél (egyes szállítási " -"módoknál kötelező lehet)" - -#: admin/settings/settings-init.php:536 -msgid "" -"Show weight and dimension values on the Additional " -"Information tab" -msgstr "" -"Súly és méret értékek megjelenítése a További " -"információk fülön" - -#: admin/settings/settings-init.php:544 -msgid "Weight Unit" -msgstr "Súly mértékegység" - -#: admin/settings/settings-init.php:545 -msgid "This controls what unit you will define weights in." -msgstr "A megadott súlyok mértékegységét szabályozza." - -#: admin/settings/settings-init.php:551 -msgid "kg" -msgstr "kg" - -#: admin/settings/settings-init.php:552 -msgid "g" -msgstr "g" - -#: admin/settings/settings-init.php:553 -msgid "lbs" -msgstr "font" - -#: admin/settings/settings-init.php:554 -msgid "oz" -msgstr "uncia" - -#: admin/settings/settings-init.php:560 -msgid "Dimensions Unit" -msgstr "Méret mértékegység" - -#: admin/settings/settings-init.php:561 -msgid "This controls what unit you will define lengths in." -msgstr "A megadott méretek mértékegységét szabályozza." - -#: admin/settings/settings-init.php:568 -msgid "cm" -msgstr "cm" - -#: admin/settings/settings-init.php:569 -msgid "mm" -msgstr "mm" - -#: admin/settings/settings-init.php:570 -msgid "in" -msgstr "hüvelyk" - -#: admin/settings/settings-init.php:571 -msgid "yd" -msgstr "yd" - -#: admin/settings/settings-init.php:577 -msgid "Product Ratings" -msgstr "Termékértékelések" - -#: admin/settings/settings-init.php:578 -msgid "Enable ratings on reviews" -msgstr "Értékelések engedélyezése a véleményeknél" - -#: admin/settings/settings-init.php:587 -msgid "Ratings are required to leave a review" -msgstr "Vélemény írásához kötelező az értékelés" - -#: admin/settings/settings-init.php:596 -msgid "Show \"verified owner\" label for customer reviews" -msgstr "" -"\"Megerősített tulajdonos\" címke megjelenítése a vásárlói véleményeknél" - -#: admin/settings/settings-init.php:606 -msgid "Pricing Options" -msgstr "Ár beállítások" - -#: admin/settings/settings-init.php:606 -msgid "The following options affect how prices are displayed on the frontend." -msgstr "Az alábbi beállítások az oldalon megjelenő árakra vannak hatással." - -#: admin/settings/settings-init.php:609 -msgid "Currency Position" -msgstr "Pénznem pozíció" - -#: admin/settings/settings-init.php:610 -msgid "This controls the position of the currency symbol." -msgstr "A pénznem szimbólumának pozícióját szabályozza." - -#: admin/settings/settings-init.php:616 -msgid "Left" -msgstr "Bal oldalt" - -#: admin/settings/settings-init.php:617 -msgid "Right" -msgstr "Jobb oldalt" - -#: admin/settings/settings-init.php:618 -msgid "Left (with space)" -msgstr "Bal oldalt (szóközzel)" - -#: admin/settings/settings-init.php:619 -msgid "Right (with space)" -msgstr "Jobb oldalt (szóközzel)" - -#: admin/settings/settings-init.php:625 -msgid "Thousand Separator" -msgstr "Ezres elválasztó" - -#: admin/settings/settings-init.php:626 -msgid "This sets the thousand separator of displayed prices." -msgstr "A megjelenített árak ezres elválasztóját szabályozza." - -#: admin/settings/settings-init.php:635 -msgid "Decimal Separator" -msgstr "Tizedes elválasztó" - -#: admin/settings/settings-init.php:636 -msgid "This sets the decimal separator of displayed prices." -msgstr "A megjelenített árak tizedes elválasztóját szabályozza." - -#: admin/settings/settings-init.php:645 -msgid "Number of Decimals" -msgstr "Tizedesek száma" - -#: admin/settings/settings-init.php:646 -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "A megjelenített árak tizedeseinek számát szabályozza." - -#: admin/settings/settings-init.php:659 -msgid "Trailing Zeros" -msgstr "Záró nullák" - -#: admin/settings/settings-init.php:660 -msgid "" -"Remove zeros after the decimal point. e.g. $10.00 becomes " -"$10" -msgstr "" -"Nullák eltávolítása a tizedespont után, pl. 1000.00 Ft helyett " -"1000 Ft" - -#: admin/settings/settings-init.php:668 -msgid "Image Options" -msgstr "Kép beállítások" - -#: admin/settings/settings-init.php:668 -msgid "" -"These settings affect the actual dimensions of images in your catalog - the " -"display on the front-end will still be affected by CSS styles. After " -"changing these settings you may need to regenerate your " -"thumbnails." -msgstr "" -"Az alábbi beállítások a katalógusban megjelenő képek tényleges méretét " -"szabályozzák - az oldalon való megjelenésük eltérő lehet CSS stílusok miatt. " -"A beállítások módosítása után szükséges lehet a bélyegképek " -"újragenerálása." - -#: admin/settings/settings-init.php:671 -msgid "Catalog Images" -msgstr "Katalógus képek" - -#: admin/settings/settings-init.php:672 -msgid "This size is usually used in product listings" -msgstr "Általában a termékek listázásakor használt méret" - -#: admin/settings/settings-init.php:685 -msgid "Single Product Image" -msgstr "Önálló termékkép" - -#: admin/settings/settings-init.php:686 -msgid "This is the size used by the main image on the product page." -msgstr "Általában a termékoldalon lévő fő kép mérete" - -#: admin/settings/settings-init.php:699 -msgid "Product Thumbnails" -msgstr "Termék bélyegképek" - -#: admin/settings/settings-init.php:700 -msgid "" -"This size is usually used for the gallery of images on the product page." -msgstr "Általában a termékoldalon lévő galéria képek mérete" - -#: admin/settings/settings-init.php:719 -msgid "Inventory Options" -msgstr "Készlet beállítások" - -#: admin/settings/settings-init.php:722 -msgid "Manage Stock" -msgstr "Készletkezelés" - -#: admin/settings/settings-init.php:723 -msgid "Enable stock management" -msgstr "Készletkezelés engedélyezése" - -#: admin/settings/settings-init.php:730 -msgid "Hold Stock (minutes)" -msgstr "Készlet foglalása (percek)" - -#: admin/settings/settings-init.php:731 -msgid "" -"Hold stock (for unpaid orders) for x minutes. When this limit is reached, " -"the pending order will be cancelled. Leave blank to disable." -msgstr "" -"Készlet foglalása (ki nem fizetett rendeléseknél) x percig. A korlát " -"elérésekor a függő rendelés elutasításra kerül. Hagyd üresen a " -"kikapcsoláshoz." - -#: admin/settings/settings-init.php:743 -msgid "Notifications" -msgstr "Értesítések" - -#: admin/settings/settings-init.php:744 -msgid "Enable low stock notifications" -msgstr "Alacsony készlet értesítések engedélyezése" - -#: admin/settings/settings-init.php:752 -msgid "Enable out of stock notifications" -msgstr "Nincs készleten értesítések engedélyezése" - -#: admin/settings/settings-init.php:760 -msgid "Notification Recipient" -msgstr "Értesítés címzettje" - -#: admin/settings/settings-init.php:768 -msgid "Low Stock Threshold" -msgstr "Alacsony készlet határ" - -#: admin/settings/settings-init.php:781 -msgid "Out Of Stock Threshold" -msgstr "Nincs készleten határ" - -#: admin/settings/settings-init.php:794 -msgid "Out Of Stock Visibility" -msgstr "Nincs készleten láthatóság" - -#: admin/settings/settings-init.php:795 -msgid "Hide out of stock items from the catalog" -msgstr "Ne látszódjanak a katalógusban a készleten nem lévő termékek" - -#: admin/settings/settings-init.php:802 -msgid "Stock Display Format" -msgstr "Készlet megjelenítési formátum" - -#: admin/settings/settings-init.php:803 -msgid "This controls how stock is displayed on the frontend." -msgstr "A készlet weboldalon való megjelenését szabályozza." - -#: admin/settings/settings-init.php:809 -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "Mindig mutassa a készletet, pl. \"12 készleten\"" - -#: admin/settings/settings-init.php:810 -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "" -"Csak az alacsony készletet mutassa, pl. \"Csak 2 maradt készleten\" " -"\"Készleten\" helyett" - -#: admin/settings/settings-init.php:811 -msgid "Never show stock amount" -msgstr "Soha ne mutassa a készletmennyiséget" - -#: admin/settings/settings-init.php:823 -#: admin/woocommerce-admin-settings.php:292 -msgid "Shipping Options" -msgstr "Szállítási beálíltások" - -#: admin/settings/settings-init.php:826 -msgid "Shipping Calculations" -msgstr "Szállítási kalkulációk" - -#: admin/settings/settings-init.php:827 -msgid "Enable shipping" -msgstr "Szállítás engedélyezése" - -#: admin/settings/settings-init.php:835 -msgid "Enable the shipping calculator on the cart page" -msgstr "A szállítási kalkulátor engedélyezése a kosár oldalon" - -#: admin/settings/settings-init.php:843 -msgid "Hide shipping costs until an address is entered" -msgstr "Szálíltási díjak elrejtése a cím beírásáig" - -#: admin/settings/settings-init.php:851 -msgid "Shipping Method Display" -msgstr "Szállítási mód megjelenítése" - -#: admin/settings/settings-init.php:852 -msgid "" -"This controls how multiple shipping methods are displayed on the frontend." -msgstr "Többféle szállítási mód megjelenési módját szabályozza az oldalon." - -#: admin/settings/settings-init.php:858 -msgid "Radio buttons" -msgstr "Rádiógombok" - -#: admin/settings/settings-init.php:859 -msgid "Select box" -msgstr "Legördülő doboz" - -#: admin/settings/settings-init.php:865 -msgid "Shipping Destination" -msgstr "Szállítási cím" - -#: admin/settings/settings-init.php:866 -msgid "Only ship to the users billing address" -msgstr "Szállítás csak a vásárló számlázási címére" - -#: admin/settings/settings-init.php:874 -msgid "Ship to billing address by default" -msgstr "Szállítás a számlázási címre alapértelmezésként" - -#: admin/settings/settings-init.php:882 -msgid "Collect shipping address even when not required" -msgstr "Szállítási cím bekérése akkor is, ha nem szükséges" - -#: admin/settings/settings-init.php:900 -#: admin/woocommerce-admin-settings.php:188 -#: admin/woocommerce-admin-settings.php:329 -msgid "Payment Gateways" -msgstr "Fizetési módok" - -#: admin/settings/settings-init.php:900 -msgid "" -"Installed payment gateways are displayed below. Drag and drop payment " -"gateways to control their display order on the checkout." -msgstr "" -"A telepített fizetési módok alább láthatók. A pénztárnál való megjelenítési " -"sorrendjüket fogd és vidd módszerrel módosíthatod." - -#: admin/settings/settings-init.php:918 -#: admin/woocommerce-admin-settings.php:222 -msgid "Tax Options" -msgstr "Adózási beállítások" - -#: admin/settings/settings-init.php:921 -msgid "Enable Taxes" -msgstr "Adók engedélyezése" - -#: admin/settings/settings-init.php:922 -msgid "Enable taxes and tax calculations" -msgstr "Adók és adó kalkulációk engedélyezése" - -#: admin/settings/settings-init.php:929 -msgid "Prices Entered With Tax" -msgstr "Adóval beírt árak" - -#: admin/settings/settings-init.php:933 -msgid "" -"This option is important as it will affect how you input prices. Changing it " -"will not update existing products." -msgstr "" -"Ez a beállítás fontos, mivel ez határozza meg az árak bevitelének módját. " -"Megváltoztatása esetén a már létező termékek nem frissülnek." - -#: admin/settings/settings-init.php:935 -msgid "Yes, I will enter prices inclusive of tax" -msgstr "Igen, az adót tartalmazó árakat fogom beírni" - -#: admin/settings/settings-init.php:936 -msgid "No, I will enter prices exclusive of tax" -msgstr "Nem, az adót nem tartalmazó árakat fogom beírni" - -#: admin/settings/settings-init.php:941 -msgid "Calculate Tax Based On:" -msgstr "Adó számítási alapja:" - -#: admin/settings/settings-init.php:943 -msgid "This option determines which address is used to calculate tax." -msgstr "" -"Ez a beállítás szabályozza, hogy melyik cím alapján kerül kiszámításra az " -"adó." - -#: admin/settings/settings-init.php:947 -msgid "Customer shipping address" -msgstr "Vásárló szállítási címe" - -#: admin/settings/settings-init.php:948 -msgid "Customer billing address" -msgstr "Vásárló számlázási címe" - -#: admin/settings/settings-init.php:949 admin/settings/settings-init.php:961 -msgid "Shop base address" -msgstr "Üzlet címe" - -#: admin/settings/settings-init.php:954 -msgid "Default Customer Address:" -msgstr "Alapértelmezett vásárlói cím:" - -#: admin/settings/settings-init.php:956 -msgid "" -"This option determines the customers default address (before they input " -"their own)." -msgstr "" -"Ez a beállítás a vásárlók alapértelmezett címét szabályozza (mielőtt még " -"saját címet adnak meg)." - -#: admin/settings/settings-init.php:960 -msgid "No address" -msgstr "Nincs cím" - -#: admin/settings/settings-init.php:966 -msgid "Shipping Tax Class:" -msgstr "Szállítási adó osztály" - -#: admin/settings/settings-init.php:967 -msgid "" -"Optionally control which tax class shipping gets, or leave it so shipping " -"tax is based on the cart items themselves." -msgstr "" -"Opcionálisan szabályozható, hogy milyen adózási osztály kap a szállítás, " -"vagy hagyd üresen ha a szállítási adó a kosárban lévő termékektől függ." - -#: admin/settings/settings-init.php:972 -msgid "Shipping tax class based on cart items" -msgstr "A szállítási adó osztály a kosár tartalmától függ" - -#: admin/settings/settings-init.php:977 -msgid "Rounding" -msgstr "Kerekítés" - -#: admin/settings/settings-init.php:978 -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "Kerekítés részösszeg szinten a soronkénti kerekítés helyett" - -#: admin/settings/settings-init.php:985 -msgid "Additional Tax Classes" -msgstr "További adózási osztályok" - -#: admin/settings/settings-init.php:986 -msgid "" -"List additonal tax classes below (1 per line). This is in addition to the " -"default Standard Rate. Tax classes can be assigned to products." -msgstr "" -"Alább felsorolhatóak további adózási osztályok (soronként 1). Ezek az " -"alapértelmezett Szabványos ráta mellett jelennek meg. Az " -"adózási osztályok termékekhez rendelhetők." - -#: admin/settings/settings-init.php:990 -msgid "Reduced Rate%sZero Rate" -msgstr "Csökkentett ráta%sNulla ráta" - -#: admin/settings/settings-init.php:994 -msgid "Display prices during cart/checkout:" -msgstr "Árak megjelenítése a kosárban/pénztárnál:" - -#: admin/settings/settings-init.php:999 -msgid "Including tax" -msgstr "Adóval terhelt" - -#: admin/settings/settings-init.php:1000 -msgid "Excluding tax" -msgstr "Adóval nem terhelt" - -#: admin/settings/settings-init.php:1012 -msgid "Email Sender Options" -msgstr "E-mail feladó beállítások" - -#: admin/settings/settings-init.php:1012 -msgid "" -"The following options affect the sender (email address and name) used in " -"WooCommerce emails." -msgstr "" -"Az alábbi mezőkben állíthatóak be a WooCommerce e-mailekben használt feladó " -"(e-mail cím és név) adatai." - -#: admin/settings/settings-init.php:1015 -msgid "\"From\" Name" -msgstr "\"Feladó\" neve" - -#: admin/settings/settings-init.php:1024 -msgid "\"From\" Email Address" -msgstr "\"Feladó\" e-mail címe" - -#: admin/settings/settings-init.php:1037 -msgid "Email Template" -msgstr "E-mail sablon" - -#: admin/settings/settings-init.php:1037 -msgid "" -"This section lets you customise the WooCommerce emails. Click here to preview your email template. For more " -"advanced control copy woocommerce/templates/emails/ to " -"yourtheme/woocommerce/emails/." -msgstr "" -"Ebben a szekcióban szabhatók testre a WooCommerce e-mailek. Kattints ide az e-mail sablon előnézetéhez. A " -"komolyabb átalakításokhoz másold le a woocommerce/templates/emails/ mappát a tesablonod/woocommerce/emails/ mappába." - -#: admin/settings/settings-init.php:1040 -msgid "Header Image" -msgstr "Fejléc kép" - -#: admin/settings/settings-init.php:1041 -msgid "" -"Enter a URL to an image you want to show in the email's header. Upload your " -"image using the media uploader." -msgstr "" -"Írj be egy URL-t az e-mail fejléceként megjelenítendő képhez. Kép " -"feltöltéséhez használd a média feltöltőt." - -#: admin/settings/settings-init.php:1049 -msgid "Email Footer Text" -msgstr "E-mail lábléc szövege" - -#: admin/settings/settings-init.php:1050 -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "A WooCommerce e-mailek láblécében megjelenő szöveg." - -#: admin/settings/settings-init.php:1054 -msgid "Powered by WooCommerce" -msgstr "A WooCommerce támogatásával" - -#: admin/settings/settings-init.php:1058 -msgid "Base Colour" -msgstr "Alap szín" - -#: admin/settings/settings-init.php:1059 -msgid "" -"The base colour for WooCommerce email templates. Default #557da1." -msgstr "" -"A WooCommerce e-mail sablonok alapszíne. Alapértelmezésként #557da1." - -#: admin/settings/settings-init.php:1067 -msgid "Background Colour" -msgstr "Háttérszín" - -#: admin/settings/settings-init.php:1068 -msgid "" -"The background colour for WooCommerce email templates. Default " -"#f5f5f5." -msgstr "" -"A WooCommerce e-mail sablonok háttérszíne. Alapértelmezésként #f5f5f5." - -#: admin/settings/settings-init.php:1076 -msgid "Email Body Background Colour" -msgstr "E-mail törzs háttérszíne" - -#: admin/settings/settings-init.php:1077 -msgid "The main body background colour. Default #fdfdfd." -msgstr "" -"A levél törzsének háttérszíne. Alapértelmezésként #fdfdfd." - -#: admin/settings/settings-init.php:1085 -msgid "Email Body Text Colour" -msgstr "E-mail törzs szövegszíne" - -#: admin/settings/settings-init.php:1086 -msgid "The main body text colour. Default #505050." -msgstr "" -"A levél törzsének szövegszíne. Alapértelmezésként #505050." - -#: admin/settings/settings-payment-gateways.php:27 -#: admin/settings/settings-shipping-methods.php:29 -#: admin/woocommerce-admin-init.php:757 -#: admin/woocommerce-admin-taxonomies.php:27 -#: admin/woocommerce-admin-taxonomies.php:121 -msgid "Default" -msgstr "Alapértelmezett" - -#: admin/settings/settings-payment-gateways.php:28 -msgid "Gateway" -msgstr "Fizetési mód" - -#: admin/settings/settings-payment-gateways.php:45 -msgid "Gateway ID" -msgstr "Fizetési mód azonosító" - -#: admin/settings/settings-shipping-methods.php:23 -msgid "Shipping Methods" -msgstr "Szállítási módok" - -#: admin/settings/settings-shipping-methods.php:25 -msgid "Drag and drop methods to control their display order." -msgstr "A megjelenítési sorrend fogd és vidd módszerrel átrendezhető." - -#: admin/settings/settings-shipping-methods.php:30 -msgid "Shipping Method" -msgstr "Szállítási mód" - -#: admin/settings/settings-shipping-methods.php:46 -msgid "Method ID" -msgstr "Mód azonosítója" - -#: admin/settings/settings-tax-rates.php:29 -msgid "Tax Rates for the \"%s\" Class" -msgstr "\"%s\" osztály adózási rátái" - -#: admin/settings/settings-tax-rates.php:30 -msgid "" -"Define tax rates for countries and states below. See here " -"for available alpha-2 country codes." -msgstr "" -"Alább megadhatók adózási ráták országokhoz és megyékhez. Az elérhető 2-betűs " -"országkódok listájáért kattints ide." - -#: admin/settings/settings-tax-rates.php:36 -msgid "Country Code" -msgstr "Ország kód" - -#: admin/settings/settings-tax-rates.php:36 -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "" -"Kétjegyű országkód, pl. HU. Hagyd üresen, ha az összesre szeretnéd " -"alkalmazni." - -#: admin/settings/settings-tax-rates.php:38 -msgid "State Code" -msgstr "Megye kód" - -#: admin/settings/settings-tax-rates.php:38 -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "" -"Kétjegyű megye kód, pl. BU. Hagyd üresen, ha az összesre szeretnéd " -"alkalmazni." - -#: admin/settings/settings-tax-rates.php:40 -#: admin/settings/settings-tax-rates.php:217 -msgid "ZIP/Postcode" -msgstr "Irányítószám" - -#: admin/settings/settings-tax-rates.php:40 -msgid "" -"Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all areas. Wildcards (*) can be used. Ranges for numeric " -"postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "" -"Irányítószám a szabályhoz. Több értéket pontosvesszővel (;) válassz el. " -"Hagyd üresen, ha az összesre alkalmazni szeretnéd. Helyettesítőkarakterek " -"(*) használhatók. Az irányítószám határok (pl. 1011-9030) át lesznek " -"alakítva önálló irányítószámokká." - -#: admin/settings/settings-tax-rates.php:42 -msgid "" -"Cities for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all cities." -msgstr "" -"Városok a szabályhoz. Több értéket pontosvesszővel (;) válassz el. Hagyd " -"üresen, ha az összesre alkalmazni szeretnéd." - -#: admin/settings/settings-tax-rates.php:44 -msgid "Rate %" -msgstr "Ráta %" - -#: admin/settings/settings-tax-rates.php:44 -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "Írj be egy adózási rátát (százalék) 4 tizedespontig." - -#: admin/settings/settings-tax-rates.php:46 -msgid "Tax Name" -msgstr "Adó neve" - -#: admin/settings/settings-tax-rates.php:46 -msgid "Enter a name for this tax rate." -msgstr "Írj be egy nevet az adózási rátának." - -#: admin/settings/settings-tax-rates.php:48 -#: admin/settings/settings-tax-rates.php:217 -msgid "Priority" -msgstr "Prioritás" - -#: admin/settings/settings-tax-rates.php:48 -msgid "" -"Choose a priority for this tax rate. Only 1 matching rate per priority will " -"be used. To define multiple tax rates for a single area you need to specify " -"a different priority per rate." -msgstr "" -"Válassz egy prioritást az adózási rátának. Prioritásonként csak 1 egyező " -"ráta lesz használva. Ha több adózási rátát szeretnél megadni egy területhez, " -"akkor eltérő prioritással kell felvenned a rátákat." - -#: admin/settings/settings-tax-rates.php:50 -#: admin/settings/settings-tax-rates.php:217 -msgid "Compound" -msgstr "Összetett" - -#: admin/settings/settings-tax-rates.php:50 -msgid "" -"Choose whether or not this is a compound rate. Compound tax rates are " -"applied on top of other tax rates." -msgstr "" -"Válaszd ki, hogy ez egy összetett ráta vagy sem. Az összetett adózási ráták " -"a többi rátán felül kerülnek a termékre." - -#: admin/settings/settings-tax-rates.php:52 -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "Válaszd ki, hogy az adózási ráta a szállításra is vonatkozik-e." - -#: admin/settings/settings-tax-rates.php:59 -msgid "Insert row" -msgstr "Sor beszúrása" - -#: admin/settings/settings-tax-rates.php:60 -msgid "Remove selected row(s)" -msgstr "Kiválasztott sor(ok) törlése" - -#: admin/settings/settings-tax-rates.php:62 -msgid "Export CSV" -msgstr "CSV exportálása" - -#: admin/settings/settings-tax-rates.php:63 -msgid "Import CSV" -msgstr "CSV importálása" - -#: admin/settings/settings-tax-rates.php:163 -msgid "No row(s) selected" -msgstr "Nincsenek kiválasztva sorok" - -#: admin/settings/settings-tax-rates.php:217 -msgid "Country Code" -msgstr "Ország kód" - -#: admin/settings/settings-tax-rates.php:217 -msgid "State Code" -msgstr "Megye kód" - -#: admin/settings/settings-tax-rates.php:217 -msgid "Rate %" -msgstr "Ráta %" - -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Name" -msgstr "Adó neve" - -#: admin/woocommerce-admin-attributes.php:77 -msgid "Please, provide an attribute name, slug and type." -msgstr "Kérlek add meg az attribútum nevét, keresőbarát nevét és típusát." - -#: admin/woocommerce-admin-attributes.php:79 -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "" -"\"%s\" keresőbarát név túl hosszú (maximum 28 karakter). Kérlek rövidítsd." - -#: admin/woocommerce-admin-attributes.php:81 -msgid "" -"Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "" -"\"%s\" keresőbarát név nem engedélyezett, mivel egy fenntartott kifejezés. " -"Kérlek változtasd meg." - -#: admin/woocommerce-admin-attributes.php:86 -#: admin/woocommerce-admin-attributes.php:91 -msgid "Slug “%s” is already in use. Change it, please." -msgstr "\"%s\" keresőbarát név már használatban van. Kérlek változtasd meg." - -#: admin/woocommerce-admin-attributes.php:234 -msgid "Edit Attribute" -msgstr "Attribútum szerkesztése" - -#: admin/woocommerce-admin-attributes.php:244 -#: admin/woocommerce-admin-attributes.php:383 -msgid "Name for the attribute (shown on the front-end)." -msgstr "A név - ahogyan a honlapon megjelenik." - -#: admin/woocommerce-admin-attributes.php:249 -#: admin/woocommerce-admin-attributes.php:315 -#: admin/woocommerce-admin-attributes.php:387 -msgid "Slug" -msgstr "Keresőbarát név" - -#: admin/woocommerce-admin-attributes.php:253 -#: admin/woocommerce-admin-attributes.php:389 -msgid "" -"Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "" -"Egyedi keresőbarát név az attribútumnak; 28 karakternél rövidebb legyen." - -#: admin/woocommerce-admin-attributes.php:262 -#: admin/woocommerce-admin-attributes.php:395 -msgid "Select" -msgstr "Legördülő lista" - -#: admin/woocommerce-admin-attributes.php:263 -#: admin/woocommerce-admin-attributes.php:396 -msgid "Text" -msgstr "Szöveg" - -#: admin/woocommerce-admin-attributes.php:266 -#: admin/woocommerce-admin-attributes.php:399 -msgid "" -"Determines how you select attributes for products. Text " -"allows manual entry via the product page, whereas select " -"attribute terms can be defined from this section. If you plan on using an " -"attribute for variations use select." -msgstr "" -"Az attribútumok kiválasztási módját határozza meg a termékeknél. " -"Szöveg esetén kézzel írható be az érték, míg a " -"legördülő lista esetén a választható értékek itt adhatók " -"meg. Ha egy attribútumot szeretnél variációkhoz felhasználni, akkor a " -"legördülő listát használd." - -#: admin/woocommerce-admin-attributes.php:271 -#: admin/woocommerce-admin-attributes.php:403 -msgid "Default sort order" -msgstr "Alapértelmezett rendezési sorrend" - -#: admin/woocommerce-admin-attributes.php:275 -#: admin/woocommerce-admin-attributes.php:343 -#: admin/woocommerce-admin-attributes.php:405 -msgid "Custom ordering" -msgstr "Egyedi rendezés" - -#: admin/woocommerce-admin-attributes.php:277 -#: admin/woocommerce-admin-attributes.php:340 -#: admin/woocommerce-admin-attributes.php:407 -msgid "Term ID" -msgstr "Érték azonosítója" - -#: admin/woocommerce-admin-attributes.php:279 -#: admin/woocommerce-admin-attributes.php:409 -msgid "" -"Determines the sort order on the frontend for this attribute. If using " -"custom ordering, you can drag and drop the terms in this attribute" -msgstr "" -"Az attribútum rendezési sorrendjét határozza meg az oldalon. Egyedi rendezés " -"esetén az attribútum értékeit fogd és vidd módszerrel rendezheted át" - -#: admin/woocommerce-admin-attributes.php:284 -msgid "Update" -msgstr "Frissítés" - -#: admin/woocommerce-admin-attributes.php:317 -msgid "Order by" -msgstr "Rendezés" - -#: admin/woocommerce-admin-attributes.php:318 -msgid "Terms" -msgstr "Értékek" - -#: admin/woocommerce-admin-attributes.php:363 -msgid "Configure terms" -msgstr "Értékek felvitele" - -#: admin/woocommerce-admin-attributes.php:367 -msgid "No attributes currently exist." -msgstr "Jelenleg nincsenek attribútumok." - -#: admin/woocommerce-admin-attributes.php:377 -msgid "Add New Attribute" -msgstr "Új attribútum hozzáadása" - -#: admin/woocommerce-admin-attributes.php:378 -msgid "" -"Attributes let you define extra product data, such as size or colour. You " -"can use these attributes in the shop sidebar using the \"layered nav\" " -"widgets. Please note: you cannot rename an attribute later on." -msgstr "" -"Az attribútumok extra termékadatok megadását teszik lehetővé, úgymint méret " -"vagy szín. Ezek az attribútumok felhasználhatók az üzlet oldalsávjában a " -"\"réteges navigáció\" widgetekben. Megjegyzés: az attribútumok később nem " -"nevezhetőek át." - -#: admin/woocommerce-admin-attributes.php:412 -msgid "Add Attribute" -msgstr "Attribútum hozzáadása" - -#: admin/woocommerce-admin-attributes.php:423 -msgid "Are you sure you want to delete this attribute?" -msgstr "Biztos vagy benne, hogy törölni szeretnéd ezt az attribútumot?" - -#: admin/woocommerce-admin-content.php:26 -#: admin/woocommerce-admin-reports.php:26 -#: admin/woocommerce-admin-reports.php:66 -#: admin/woocommerce-admin-reports.php:82 -#: admin/woocommerce-admin-reports.php:93 -msgid "Overview" -msgstr "Áttekintés" - -#: admin/woocommerce-admin-content.php:29 -msgid "" -"Thank you for using WooCommerce :) Should you need help using or extending " -"WooCommerce please read the documentation. For further " -"assistance you can use the community forum or if you have " -"access, our support desk." -msgstr "" -"Köszönjük, hogy a WooCommerce mellett döntöttél. :) Ha bármilyen segítségre " -"van szükséged a WooCommerce használatában vagy bővítésében, kérjük olvasd át a dokumentációt. További segítségért látogass el közösségi fórumunkra vagy ha van hozzáférésed, akkor támogatói központunkra." - -#: admin/woocommerce-admin-content.php:31 -msgid "" -"If you are having problems, or to assist us with support, please check the " -"status page to identify any problems with your configuration:" -msgstr "" -"Ha problémáid akadnak vagy támogatásra van szükséged, kérjük ellenőrizd az " -"állapot oldalt a konfigurációddal kapcsolatos bármilyen hiba felderítésére:" - -#: admin/woocommerce-admin-content.php:33 admin/woocommerce-admin-init.php:89 -#: admin/woocommerce-admin-status.php:26 -msgid "System Status" -msgstr "Rendszerállapot" - -#: admin/woocommerce-admin-content.php:35 -msgid "" -"If you come across a bug, or wish to contribute to the project you can also " -"get involved on GitHub." -msgstr "" -"Ha egy hibára bukkantál vagy szeretnél hozzájárulni a projekthez, akkor csatlakozz a GitHub projektünkhöz." - -#: admin/woocommerce-admin-content.php:43 -msgid "" -"Here you can set up your store and customise it to fit your needs. The " -"sections available from the settings page include:" -msgstr "" -"Itt konfigurálhatod be és szabhatod testre az üzleted az igényeid szerint. " -"Az innen elérhető szekciók között található:" - -#: admin/woocommerce-admin-content.php:44 -msgid "" -"General settings such as your shop base, currency, and script/styling " -"options which affect features used in your store." -msgstr "" -"Általános beállítások, úgymint az üzlet üzemeltetési helye, pénznem és " -"szkripteket/megjelenést érintő opciók." - -#: admin/woocommerce-admin-content.php:45 -#: admin/woocommerce-admin-settings.php:184 -msgid "Pages" -msgstr "Oldalak" - -#: admin/woocommerce-admin-content.php:45 -msgid "" -"This is where important store page are defined. You can also set up other " -"pages (such as a Terms page) here." -msgstr "" -"Itt kerülnek megadásra a fontos üzlet oldalak. Egyéb oldalakat is (mint " -"például a Feltételek oldal) itt tudsz beállítani." - -#: admin/woocommerce-admin-content.php:46 -msgid "" -"Options for how things like price, images and weights appear in your product " -"catalog." -msgstr "" -"Beállítások az árakra, képekre és súlyokra vonatkozóan, hogy hogyan jelennek " -"meg a katalógusban." - -#: admin/woocommerce-admin-content.php:47 -msgid "Options concerning stock and stock notices." -msgstr "A készletet és készlet értesítéseket érintő beállítások." - -#: admin/woocommerce-admin-content.php:48 -msgid "Options concerning tax, including international and local tax rates." -msgstr "" -"Az adózás, beleértve a nemzetközi és helyi adózási rátákat érintő " -"beállítások." - -#: admin/woocommerce-admin-content.php:49 -msgid "" -"This is where shipping options are defined, and shipping methods are set up." -msgstr "" -"Itt módosíthatók a szállítást érintő beállítások és a szállítási módok." - -#: admin/woocommerce-admin-content.php:50 -msgid "Payment Methods" -msgstr "Fizetési módok" - -#: admin/woocommerce-admin-content.php:50 -msgid "" -"This is where payment gateway options are defined, and individual payment " -"gateways are set up." -msgstr "Itt találhatók a fizetési lehetőségek és azok beállításai." - -#: admin/woocommerce-admin-content.php:51 -#: admin/woocommerce-admin-settings.php:189 -msgid "Emails" -msgstr "E-mailek" - -#: admin/woocommerce-admin-content.php:51 -msgid "Here you can customise the way WooCommerce emails appear." -msgstr "Itt szabható testre, hogy miként jelennek meg a WooCommerce e-mailek." - -#: admin/woocommerce-admin-content.php:52 -#: admin/woocommerce-admin-settings.php:190 -msgid "Integration" -msgstr "Integráció" - -#: admin/woocommerce-admin-content.php:52 -msgid "" -"The integration section contains options for third party services which " -"integrate with WooCommerce." -msgstr "" -"Az integráció szekció harmadik felek által készített szolgáltatások " -"integrálását teszi lehetővé a rendszerrel." - -#: admin/woocommerce-admin-content.php:57 admin/woocommerce-admin-init.php:64 -msgid "Reports" -msgstr "Jelentések" - -#: admin/woocommerce-admin-content.php:59 -msgid "" -"The reports section can be accessed from the left-hand navigation menu. Here " -"you can generate reports for sales and customers." -msgstr "" -"A jelentések szekció a bal oldali navigációs menüből érhető el. Itt tudsz az " -"eladásokról és vásárlókról jelentéseket készíteni." - -#: admin/woocommerce-admin-content.php:60 -#: admin/woocommerce-admin-reports.php:23 -#: admin/woocommerce-admin-reports.php:997 -#: admin/woocommerce-admin-reports.php:1095 -#: admin/woocommerce-admin-reports.php:1214 -msgid "Sales" -msgstr "Eladások" - -#: admin/woocommerce-admin-content.php:60 -msgid "Reports for sales based on date, top sellers and top earners." -msgstr "" -"Jelentések az eladásokhoz dátum, top keresett és top bevételt hozó szinten." - -#: admin/woocommerce-admin-content.php:61 -msgid "Coupon usage reports." -msgstr "Kupon felhasználási jelentések." - -#: admin/woocommerce-admin-content.php:62 -#: admin/woocommerce-admin-reports.php:79 -msgid "Customers" -msgstr "Vásárlók" - -#: admin/woocommerce-admin-content.php:62 -msgid "Customer reports, such as signups per day." -msgstr "Vásárlói jelentések, mint például napi regisztrációk." - -#: admin/woocommerce-admin-content.php:63 -msgid "Stock reports for low stock and out of stock items." -msgstr "Készlet jelentések alacsony és készleten nem lévő termékekhez." - -#: admin/woocommerce-admin-content.php:68 -#: admin/woocommerce-admin-dashboard.php:142 -msgid "Orders" -msgstr "Rendelések" - -#: admin/woocommerce-admin-content.php:70 -msgid "" -"The orders section can be accessed from the left-hand navigation menu. Here " -"you can view and manage customer orders." -msgstr "" -"A rendelések szekció a bal oldali navigációs menüből érhető el. Itt " -"tekinthetők meg és kezelhetők a vásárlói rendelések." - -#: admin/woocommerce-admin-content.php:71 -msgid "" -"Orders can also be added from this section if you want to set them up for a " -"customer manually." -msgstr "" -"A rendeléseket ebből a szekcióból is létre lehet hozni, ha egy vásárlót " -"kézileg szeretnél beállítani." - -#: admin/woocommerce-admin-content.php:78 -msgid "" -"Coupons can be managed from this section. Once added, customers will be able " -"to enter coupon codes on the cart/checkout page. If a customer uses a coupon " -"code they will be viewable when viewing orders." -msgstr "" -"A kuponok ebből a szekcióból kezelhető. Hozzáadás után a vásárlók a " -"kuponkódokat beírhatják a kosár/pénztár oldalakon. Ha egy vásárló felhasznál " -"egy kupont, akkor látható lesz a rendeléseknél." - -#: admin/woocommerce-admin-content.php:82 -msgid "For more information:" -msgstr "További információk:" - -#: admin/woocommerce-admin-content.php:83 admin/woocommerce-admin-init.php:62 -#: admin/woocommerce-admin-init.php:71 admin/woocommerce-admin-init.php:404 -msgid "WooCommerce" -msgstr "WooCommerce" - -#: admin/woocommerce-admin-content.php:84 -msgid "Project on WordPress.org" -msgstr "WordPress.org projekt" - -#: admin/woocommerce-admin-content.php:85 -msgid "Project on Github" -msgstr "Github projekt" - -#: admin/woocommerce-admin-content.php:86 -msgid "WooCommerce Docs" -msgstr "WooCommerce dokumentáció" - -#: admin/woocommerce-admin-content.php:87 -msgid "Official Extensions" -msgstr "Hivatalos bővítmények" - -#: admin/woocommerce-admin-content.php:88 -msgid "Official Themes" -msgstr "Hivatalos sablonok" - -#: admin/woocommerce-admin-dashboard.php:40 -msgid "Monthly Sales" -msgstr "Havi eladások" - -#: admin/woocommerce-admin-dashboard.php:43 -msgid "WooCommerce Right Now" -msgstr "WooCommerce áttekintés" - -#: admin/woocommerce-admin-dashboard.php:44 -msgid "WooCommerce Recent Orders" -msgstr "WooCommerce legutóbbi rendelések" - -#: admin/woocommerce-admin-dashboard.php:45 -msgid "WooCommerce Recent Reviews" -msgstr "WooCommerce legutóbbi értékelések" - -#: admin/woocommerce-admin-dashboard.php:78 -msgid "Shop Content" -msgstr "Üzlet tartalma" - -#: admin/woocommerce-admin-dashboard.php:84 -#: admin/woocommerce-admin-functions.php:200 -#: admin/woocommerce-admin-init.php:761 -#: admin/woocommerce-admin-reports.php:996 -#: admin/woocommerce-admin-reports.php:1094 -msgid "Product" -msgid_plural "Products" -msgstr[0] "Termék" -msgstr[1] "Termékek" - -#: admin/woocommerce-admin-dashboard.php:98 -msgid "Product Category" -msgid_plural "Product Categories" -msgstr[0] "Termékkategória" -msgstr[1] "Termékkategóriák" - -#: admin/woocommerce-admin-dashboard.php:112 -msgid "Product Tag" -msgid_plural "Product Tags" -msgstr[0] "Termékcímke" -msgstr[1] "Termékcímkék" - -#: admin/woocommerce-admin-dashboard.php:126 -msgid "Attribute" -msgid_plural "Attributes" -msgstr[0] "Attribútum" -msgstr[1] "Attribútumok" - -#: admin/woocommerce-admin-dashboard.php:148 -msgid "Pending" -msgstr "Függőben" - -#: admin/woocommerce-admin-dashboard.php:162 -msgid "On-Hold" -msgstr "Fizetésre vár" - -#: admin/woocommerce-admin-dashboard.php:190 -msgid "Completed" -msgstr "Befejezve" - -#: admin/woocommerce-admin-dashboard.php:207 -msgid "You are using WooCommerce %s." -msgstr "A WooCommerce %s verzióját használod." - -#: admin/woocommerce-admin-dashboard.php:238 -msgid "l jS \\of F Y h:i:s A" -msgstr "Y F j., l - H:i:s" - -#: admin/woocommerce-admin-dashboard.php:239 -msgid "item" -msgid_plural "items" -msgstr[0] "elem" -msgstr[1] "elem" - -#: admin/woocommerce-admin-dashboard.php:239 -msgid "Total:" -msgstr "Összesen:" - -#: admin/woocommerce-admin-dashboard.php:245 -msgid "There are no product orders yet." -msgstr "Még nincsenek rendelések." - -#: admin/woocommerce-admin-dashboard.php:279 -msgid "out of 5" -msgstr "/ 5" - -#: admin/woocommerce-admin-dashboard.php:287 -msgid "There are no product reviews yet." -msgstr "Még nincsenek termékértékelések." - -#: admin/woocommerce-admin-dashboard.php:428 -msgid "Sold" -msgstr "Eladott" - -#: admin/woocommerce-admin-dashboard.php:429 -msgid "Earned" -msgstr "Bevétel" - -#: admin/woocommerce-admin-functions.php:190 -#: admin/woocommerce-admin-install.php:225 -msgid "Order Received" -msgstr "Rendelés megérkezett" - -#: admin/woocommerce-admin-functions.php:192 -msgid "" -"Thank you, we are now processing your order. Your order's details are below." -msgstr "" -"Köszönjük, a rendelés feldolgozását megkezdtük. A rendelés részletei alább " -"láthatók." - -#: admin/woocommerce-admin-functions.php:194 -msgid "Order:" -msgstr "Rendelés:" - -#: admin/woocommerce-admin-functions.php:201 -msgid "Quantity" -msgstr "Mennyiség" - -#: admin/woocommerce-admin-functions.php:214 -msgid "Order total:" -msgstr "Rendelés végösszeg:" - -#: admin/woocommerce-admin-functions.php:220 -msgid "Customer details" -msgstr "Vásárló adatai" - -#: admin/woocommerce-admin-functions.php:226 -msgid "Billing address" -msgstr "Számlázási cím" - -#: admin/woocommerce-admin-functions.php:233 -msgid "Shipping address" -msgstr "Szállítási cím" - -#: admin/woocommerce-admin-functions.php:473 -msgid "Could not compile woocommerce.less:" -msgstr "A woocommerce.less fordítása nem sikerült:" - -#: admin/woocommerce-admin-functions.php:494 -#: admin/woocommerce-admin-functions.php:495 -msgid "Mark processing" -msgstr "Feldolgozás alattinak jelöl" - -#: admin/woocommerce-admin-functions.php:497 -#: admin/woocommerce-admin-functions.php:498 -msgid "Mark completed" -msgstr "Befejezettnek jelöl" - -#: admin/woocommerce-admin-functions.php:535 -msgid "Order status changed by bulk edit:" -msgstr "Rendelési állapot tömeges szerkesztés által megváltoztatva:" - -#: admin/woocommerce-admin-functions.php:558 -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "A rendelés állapota megváltozott." -msgstr[1] "%s rendelés állapota megváltozott." - -#: admin/woocommerce-admin-init.php:88 -msgid "WooCommerce Settings" -msgstr "WooCommerce beállítások" - -#: admin/woocommerce-admin-init.php:89 -msgid "WooCommerce Status" -msgstr "WooCommerce állapot" - -#: admin/woocommerce-admin-init.php:142 admin/woocommerce-admin-init.php:144 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Rendelések" - -#: admin/woocommerce-admin-init.php:433 -msgid "" -"Are you sure you want to remove the selected items? If you have previously " -"reduced this item's stock, or this order was submitted by a customer, you " -"will need to manually restore the item's stock." -msgstr "" -"Biztos vagy benne hogy el akarod távolítani a kiválasztott elemeket? Ha " -"korábban csökkentetted ennek a terméknek a készletét vagy a rendelést " -"vásárló küldte be, akkor a termék készletét kézzel kell helyreállítanod." - -#: admin/woocommerce-admin-init.php:434 -msgid "Please select some items." -msgstr "Kérlek válassz elemeket." - -#: admin/woocommerce-admin-init.php:435 -msgid "Remove this item meta?" -msgstr "Eltávolítod ezt a meta adatot?" - -#: admin/woocommerce-admin-init.php:436 -msgid "Remove this attribute?" -msgstr "Eltávolítod ezt az attribútumot?" - -#: admin/woocommerce-admin-init.php:444 -msgid "Enter a name for the new attribute term:" -msgstr "Írj be egy nevet az új attribútum értékhez:" - -#: admin/woocommerce-admin-init.php:445 -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "" -"Végösszeg kiszámítása a rendelési elemek, kedvezmények és szállítás alapján?" - -#: admin/woocommerce-admin-init.php:446 -msgid "" -"Calculate line taxes? This will calculate taxes based on the customers " -"country. If no billing/shipping is set it will use the store base country." -msgstr "" -"Soradók kiszámítása? Ez az adókat a vásárló országa szerint fogja " -"kiszámítani. Ha nincs számlázási/szállítási címe, akkor az üzemeltetési " -"országét használja." - -#: admin/woocommerce-admin-init.php:447 -msgid "" -"Copy billing information to shipping information? This will remove any " -"currently entered shipping information." -msgstr "" -"Lemásolod a számlázási információkat a szállítási információkhoz? Ez a " -"művelet törli a jelenleg beírt szállítási információkat." - -#: admin/woocommerce-admin-init.php:448 -msgid "" -"Load the customer's billing information? This will remove any currently " -"entered billing information." -msgstr "" -"Betöltöd a vásárló számlázási adatait? Ez minden jelenleg beírt számlázási " -"adatot törölni fog." - -#: admin/woocommerce-admin-init.php:449 -msgid "" -"Load the customer's shipping information? This will remove any currently " -"entered shipping information." -msgstr "" -"Betöltöd a vásárló szállítási adatait? Ez minden jelenleg beírt szállítási " -"adatot törölni fog." - -#: admin/woocommerce-admin-init.php:453 -msgid "No customer selected" -msgstr "Nincs kiválasztva vásárló" - -#: admin/woocommerce-admin-init.php:665 -msgid "Product updated. View Product" -msgstr "Termék frissítve. Termék megtekintése" - -#: admin/woocommerce-admin-init.php:666 admin/woocommerce-admin-init.php:681 -#: admin/woocommerce-admin-init.php:696 -msgid "Custom field updated." -msgstr "Egyedi mező frissítve." - -#: admin/woocommerce-admin-init.php:667 admin/woocommerce-admin-init.php:682 -#: admin/woocommerce-admin-init.php:697 -msgid "Custom field deleted." -msgstr "Egyedi mező törölve." - -#: admin/woocommerce-admin-init.php:668 -msgid "Product updated." -msgstr "Termék frissítve." - -#: admin/woocommerce-admin-init.php:669 -msgid "Product restored to revision from %s" -msgstr "Termék visszaállítva a következőből: %s" - -#: admin/woocommerce-admin-init.php:670 -msgid "Product published. View Product" -msgstr "Termék publikálva. Termék megtekintése" - -#: admin/woocommerce-admin-init.php:671 -msgid "Product saved." -msgstr "Termék elmentve." - -#: admin/woocommerce-admin-init.php:672 -msgid "Product submitted. Preview Product" -msgstr "Termék beküldve. Termék előnézete" - -#: admin/woocommerce-admin-init.php:673 -msgid "" -"Product scheduled for: %1$s. Preview Product" -msgstr "" -"A termék időzítésre került: %1$s. Termék előnézete" - -#: admin/woocommerce-admin-init.php:674 admin/woocommerce-admin-init.php:689 -#: admin/woocommerce-admin-init.php:704 -msgid "M j, Y @ G:i" -msgstr "M j, Y @ G:i" - -#: admin/woocommerce-admin-init.php:675 -msgid "" -"Product draft updated. Preview Product" -msgstr "" -"Termék piszkozat frissítve. Termék " -"előnézete" - -#: admin/woocommerce-admin-init.php:680 admin/woocommerce-admin-init.php:683 -#: admin/woocommerce-admin-init.php:685 -msgid "Order updated." -msgstr "Rendelés frissítve." - -#: admin/woocommerce-admin-init.php:684 -msgid "Order restored to revision from %s" -msgstr "Rendelés visszaállítva a következőből: %s" - -#: admin/woocommerce-admin-init.php:686 -msgid "Order saved." -msgstr "Rendelés elmentve." - -#: admin/woocommerce-admin-init.php:687 -msgid "Order submitted." -msgstr "Rendelés beküldve." - -#: admin/woocommerce-admin-init.php:688 -msgid "Order scheduled for: %1$s." -msgstr "Rendelés időzítve: %1$s." - -#: admin/woocommerce-admin-init.php:690 -msgid "Order draft updated." -msgstr "Rendelés piszkozat frissítve." - -#: admin/woocommerce-admin-init.php:695 admin/woocommerce-admin-init.php:698 -#: admin/woocommerce-admin-init.php:700 -msgid "Coupon updated." -msgstr "Kupon frissítve." - -#: admin/woocommerce-admin-init.php:699 -msgid "Coupon restored to revision from %s" -msgstr "Kupon visszaállítva a következőből: %s" - -#: admin/woocommerce-admin-init.php:701 -msgid "Coupon saved." -msgstr "Kupon elmentve." - -#: admin/woocommerce-admin-init.php:702 -msgid "Coupon submitted." -msgstr "Kupon beküldve." - -#: admin/woocommerce-admin-init.php:703 -msgid "Coupon scheduled for: %1$s." -msgstr "Kupon időzítve: %1$s." - -#: admin/woocommerce-admin-init.php:705 -msgid "Coupon draft updated." -msgstr "Kupon piszkozat frissítve." - -#: admin/woocommerce-admin-init.php:722 -msgid "Order notes" -msgstr "Rendelési megjegyzések" - -#: admin/woocommerce-admin-init.php:737 -msgid "" -"These settings control the permalinks used for products. These settings only " -"apply when not using \"default\" permalinks above." -msgstr "" -"Ezek a beállítások a termékekhez használt közvetlen linkeket szabályozzák. " -"Ezek a beállítások csak akkor érvényesülnek, ha nem a fenti " -"\"alapértelmezett\" közvetlen linkeket használod." - -#: admin/woocommerce-admin-init.php:744 -msgctxt "default-slug" -msgid "shop" -msgstr "uzlet" - -#: admin/woocommerce-admin-init.php:745 -msgctxt "default-slug" -msgid "product" -msgstr "termek" - -#: admin/woocommerce-admin-init.php:766 -msgid "Shop base" -msgstr "Üzlet előtag" - -#: admin/woocommerce-admin-init.php:770 -msgid "Shop base with category" -msgstr "Üzlet előtag kategóriával" - -#: admin/woocommerce-admin-init.php:776 -msgid "Custom Base" -msgstr "Egyedi előtag" - -#: admin/woocommerce-admin-init.php:778 -msgid "" -"Enter a custom base to use. A base must be set or WordPress " -"will use default instead." -msgstr "" -"Írj be egy egyedi előtagot, amit használni szeretnél. Előtagot " -"kötelező beállítani vagy a WordPress az alapértelmezettet " -"fogja használni." - -#: admin/woocommerce-admin-init.php:806 -msgid "Product permalink base" -msgstr "Termék közvetlen link előtag" - -#: admin/woocommerce-admin-init.php:811 -msgid "Product category base" -msgstr "Termékkategória előtag" - -#: admin/woocommerce-admin-init.php:818 -msgid "Product tag base" -msgstr "Termékcímke előtag" - -#: admin/woocommerce-admin-init.php:825 -msgid "Product attribute base" -msgstr "Termék attribútum előtag" - -#: admin/woocommerce-admin-install.php:195 -msgctxt "page_slug" -msgid "shop" -msgstr "uzlet" - -#: admin/woocommerce-admin-install.php:195 -msgid "Shop" -msgstr "Üzlet" - -#: admin/woocommerce-admin-install.php:198 -msgctxt "page_slug" -msgid "cart" -msgstr "kosar" - -#: admin/woocommerce-admin-install.php:198 -#: admin/woocommerce-admin-status.php:303 -msgid "Cart" -msgstr "Kosár" - -#: admin/woocommerce-admin-install.php:201 -msgctxt "page_slug" -msgid "checkout" -msgstr "penztar" - -#: admin/woocommerce-admin-install.php:204 -msgctxt "page_slug" -msgid "my-account" -msgstr "fiokom" - -#: admin/woocommerce-admin-install.php:204 -#: admin/woocommerce-admin-status.php:319 -msgid "My Account" -msgstr "Fiókom" - -#: admin/woocommerce-admin-install.php:210 -msgctxt "page_slug" -msgid "edit-address" -msgstr "cim-szerkesztese" - -#: admin/woocommerce-admin-install.php:210 -msgid "Edit My Address" -msgstr "Cím szerkesztése" - -#: admin/woocommerce-admin-install.php:213 -msgctxt "page_slug" -msgid "view-order" -msgstr "megrendeles-megtekintese" - -#: admin/woocommerce-admin-install.php:213 -#: admin/woocommerce-admin-status.php:327 -msgid "View Order" -msgstr "Rendelés megtekintése" - -#: admin/woocommerce-admin-install.php:216 -msgctxt "page_slug" -msgid "change-password" -msgstr "jelszo-megvaltoztatasa" - -#: admin/woocommerce-admin-install.php:216 -#: admin/woocommerce-admin-status.php:331 -msgid "Change Password" -msgstr "Jelszó megváltoztatása" - -#: admin/woocommerce-admin-install.php:219 -msgctxt "page_slug" -msgid "logout" -msgstr "kijelentkezes" - -#: admin/woocommerce-admin-install.php:219 -msgid "Logout" -msgstr "Kijelentkezés" - -#: admin/woocommerce-admin-install.php:222 -msgctxt "page_slug" -msgid "pay" -msgstr "fizetés" - -#: admin/woocommerce-admin-install.php:222 -msgid "Checkout → Pay" -msgstr "Pénztár → Fizetés" - -#: admin/woocommerce-admin-install.php:225 -msgctxt "page_slug" -msgid "order-received" -msgstr "rendeles-megerkezett" - -#: admin/woocommerce-admin-reports.php:32 -msgid "Sales by day" -msgstr "Eladások napi szinten" - -#: admin/woocommerce-admin-reports.php:37 -msgid "Sales by month" -msgstr "Eladások havi szinten" - -#: admin/woocommerce-admin-reports.php:42 -msgid "Product Sales" -msgstr "Termék eladások" - -#: admin/woocommerce-admin-reports.php:47 -msgid "Top sellers" -msgstr "Top eladott termékek" - -#: admin/woocommerce-admin-reports.php:52 -msgid "Top earners" -msgstr "Top bevételt hozó termékek" - -#: admin/woocommerce-admin-reports.php:57 -msgid "Sales by category" -msgstr "Eladások kategória szerint" - -#: admin/woocommerce-admin-reports.php:72 -msgid "Discounts by coupon" -msgstr "Kupon kedvezmények" - -#: admin/woocommerce-admin-reports.php:104 -msgid "Taxes by month" -msgstr "Adók havi szinten" - -#: admin/woocommerce-admin-reports.php:243 -#: admin/woocommerce-admin-reports.php:508 -#: admin/woocommerce-admin-reports.php:713 -#: admin/woocommerce-admin-reports.php:894 -msgid "Sales amount" -msgstr "Eladott mennyiség" - -#: admin/woocommerce-admin-reports.php:248 -#: admin/woocommerce-admin-reports.php:508 -#: admin/woocommerce-admin-reports.php:713 -#: admin/woocommerce-admin-reports.php:894 -msgid "Number of sales" -msgstr "Eladások száma" - -#: admin/woocommerce-admin-reports.php:380 -msgid "Total sales" -msgstr "Összes eladás" - -#: admin/woocommerce-admin-reports.php:382 -#: admin/woocommerce-admin-reports.php:388 -#: admin/woocommerce-admin-reports.php:394 -#: admin/woocommerce-admin-reports.php:400 -#: admin/woocommerce-admin-reports.php:406 -#: admin/woocommerce-admin-reports.php:412 -#: admin/woocommerce-admin-reports.php:655 -#: admin/woocommerce-admin-reports.php:661 -#: admin/woocommerce-admin-reports.php:667 -#: admin/woocommerce-admin-reports.php:673 -#: admin/woocommerce-admin-reports.php:839 -#: admin/woocommerce-admin-reports.php:845 -#: admin/woocommerce-admin-reports.php:851 -#: admin/woocommerce-admin-reports.php:857 -#: admin/woocommerce-admin-reports.php:1380 -#: admin/woocommerce-admin-reports.php:1386 -#: admin/woocommerce-admin-reports.php:1392 -#: admin/woocommerce-admin-reports.php:1826 -#: admin/woocommerce-admin-reports.php:1832 -#: admin/woocommerce-admin-reports.php:1838 -#: admin/woocommerce-admin-reports.php:1844 -#: admin/woocommerce-admin-reports.php:1850 -#: admin/woocommerce-admin-reports.php:1856 -#: admin/woocommerce-admin-reports.php:2320 -#: admin/woocommerce-admin-reports.php:2331 -#: admin/woocommerce-admin-reports.php:2342 -msgid "n/a" -msgstr "Nincs adat" - -#: admin/woocommerce-admin-reports.php:386 -msgid "Total orders" -msgstr "Összes rendelés" - -#: admin/woocommerce-admin-reports.php:388 -#: admin/woocommerce-admin-reports.php:661 -#: admin/woocommerce-admin-reports.php:845 -msgid "items" -msgstr "termék" - -#: admin/woocommerce-admin-reports.php:392 -msgid "Average order total" -msgstr "Átlagos rendelési összeg" - -#: admin/woocommerce-admin-reports.php:398 -msgid "Average order items" -msgstr "Átlagosan rendelt termékek száma" - -#: admin/woocommerce-admin-reports.php:404 -msgid "Discounts used" -msgstr "Felhasznált kedvezmények" - -#: admin/woocommerce-admin-reports.php:410 -msgid "Total shipping costs" -msgstr "Összes szállítási költség" - -#: admin/woocommerce-admin-reports.php:418 -msgid "This month's sales" -msgstr "Havi eladások" - -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1372 -msgid "From:" -msgstr "Időszak kezdete:" - -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1372 -msgid "To:" -msgstr "Időszak vége:" - -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:832 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1245 -#: admin/woocommerce-admin-reports.php:1372 -#: admin/woocommerce-admin-reports.php:1505 -#: admin/woocommerce-admin-reports.php:2309 -#: admin/woocommerce-admin-reports.php:2492 -msgid "Show" -msgstr "Megjelenítés" - -#: admin/woocommerce-admin-reports.php:653 -msgid "Total sales in range" -msgstr "Összes eladás adott időszakban" - -#: admin/woocommerce-admin-reports.php:659 -msgid "Total orders in range" -msgstr "Összes rendelés adott időszakban" - -#: admin/woocommerce-admin-reports.php:665 -msgid "Average order total in range" -msgstr "Átlagos rendelési összeg adott időszakban" - -#: admin/woocommerce-admin-reports.php:671 -msgid "Average order items in range" -msgstr "Átlagosan rendelt termékek száma adott időszakban" - -#: admin/woocommerce-admin-reports.php:679 -msgid "Sales in range" -msgstr "Eladások adott időszakban" - -#: admin/woocommerce-admin-reports.php:826 -#: admin/woocommerce-admin-reports.php:2303 -msgid "Year:" -msgstr "Ár:" - -#: admin/woocommerce-admin-reports.php:837 -msgid "Total sales for year" -msgstr "Összes eladás az évben" - -#: admin/woocommerce-admin-reports.php:843 -msgid "Total orders for year" -msgstr "Összes rendelés az évben" - -#: admin/woocommerce-admin-reports.php:849 -msgid "Average order total for year" -msgstr "Átlagos rendelési összeg az évben" - -#: admin/woocommerce-admin-reports.php:855 -msgid "Average order items for year" -msgstr "Átlagosan rendelt termékek száma az évben" - -#: admin/woocommerce-admin-reports.php:863 -msgid "Monthly sales for year" -msgstr "Eladások az évben havi bontásban" - -#: admin/woocommerce-admin-reports.php:1011 -msgid "Product does not exist" -msgstr "A termék nem létezik" - -#: admin/woocommerce-admin-reports.php:1110 -msgid "Product no longer exists" -msgstr "A termék már nem létezik" - -#: admin/woocommerce-admin-reports.php:1209 -msgid "Sales for %s:" -msgstr "%s eladásai:" - -#: admin/woocommerce-admin-reports.php:1213 -#: admin/woocommerce-admin-reports.php:2351 -msgid "Month" -msgstr "Hónap" - -#: admin/woocommerce-admin-reports.php:1235 -msgid "No sales :(" -msgstr "Nincsenek eladások :(" - -#: admin/woocommerce-admin-reports.php:1378 -msgid "Total orders containing coupons" -msgstr "Kupont tartalmazó összes rendelés" - -#: admin/woocommerce-admin-reports.php:1384 -msgid "Percent of orders containing coupons" -msgstr "Kupon tartalmaz rendelések százaléka" - -#: admin/woocommerce-admin-reports.php:1390 -msgid "Total coupon discount" -msgstr "Összes kupon kedvezmény" - -#: admin/woocommerce-admin-reports.php:1399 -msgid "Most popular coupons" -msgstr "Legnépszerűbb kuponok" - -#: admin/woocommerce-admin-reports.php:1409 -msgid "Used 1 time" -msgid_plural "Used %d times" -msgstr[0] "Felhasználva 1 alkalommal" -msgstr[1] "Felhasználva %d alkalommal" - -#: admin/woocommerce-admin-reports.php:1412 -#: admin/woocommerce-admin-reports.php:1434 -msgid "No coupons found" -msgstr "Nem találhatók kuponok" - -#: admin/woocommerce-admin-reports.php:1421 -msgid "Greatest discount amount" -msgstr "Legnagyobb kedvezmény mértéke" - -#: admin/woocommerce-admin-reports.php:1431 -msgid "Discounted %s" -msgstr "%s kedvezmény" - -#: admin/woocommerce-admin-reports.php:1490 -#: admin/woocommerce-admin-reports.php:2469 -msgid "Show:" -msgstr "Mutasd:" - -#: admin/woocommerce-admin-reports.php:1547 -msgid "Coupon" -msgstr "Kupon" - -#: admin/woocommerce-admin-reports.php:1630 -msgid "Top coupon" -msgstr "Legjobb kupon" - -#: admin/woocommerce-admin-reports.php:1638 -msgid "Worst coupon" -msgstr "Legrosszabb kupon" - -#: admin/woocommerce-admin-reports.php:1646 -msgid "Discount average" -msgstr "Átlagos kedvezmény" - -#: admin/woocommerce-admin-reports.php:1654 -msgid "Discount median" -msgstr "Kedvezmény medián" - -#: admin/woocommerce-admin-reports.php:1674 -msgid "Monthly discounts by coupon" -msgstr "Havi kedvezmények kuponok szerint" - -#: admin/woocommerce-admin-reports.php:1824 -msgid "Total customers" -msgstr "Összes vásárló" - -#: admin/woocommerce-admin-reports.php:1830 -msgid "Total customer sales" -msgstr "Összes vásárlói eladás" - -#: admin/woocommerce-admin-reports.php:1836 -msgid "Total guest sales" -msgstr "Összes vendég eladás" - -#: admin/woocommerce-admin-reports.php:1842 -msgid "Total customer orders" -msgstr "Összes vásárlói rendelés" - -#: admin/woocommerce-admin-reports.php:1848 -msgid "Total guest orders" -msgstr "Összes vendég rendelés" - -#: admin/woocommerce-admin-reports.php:1854 -msgid "Average orders per customer" -msgstr "Átlagos rendelések vásárlónként" - -#: admin/woocommerce-admin-reports.php:1862 -msgid "Signups per day" -msgstr "Regisztrációk napi szinten" - -#: admin/woocommerce-admin-reports.php:2083 -msgid "Low stock" -msgstr "Alacsony készlet" - -#: admin/woocommerce-admin-reports.php:2106 -#: admin/woocommerce-admin-reports.php:2145 -msgid "%d in stock" -msgid_plural "%d in stock" -msgstr[0] "%d raktáron" -msgstr[1] "%d raktáron" - -#: admin/woocommerce-admin-reports.php:2111 -msgid "No products are low in stock." -msgstr "Egy termék sincs alacsony készleten." - -#: admin/woocommerce-admin-reports.php:2143 -msgid "Marked out of stock" -msgstr "Elfogyottnak jelölve" - -#: admin/woocommerce-admin-reports.php:2150 -msgid "No products are out in stock." -msgstr "Egy termék se fogyott el." - -#: admin/woocommerce-admin-reports.php:2314 -msgid "Total taxes for year" -msgstr "Összes adó az évben" - -#: admin/woocommerce-admin-reports.php:2325 -msgid "Total product taxes for year" -msgstr "Összes termékadó az évben" - -#: admin/woocommerce-admin-reports.php:2336 -msgid "Total shipping tax for year" -msgstr "Összes szállítási adó az évben" - -#: admin/woocommerce-admin-reports.php:2352 -msgid "Total Sales" -msgstr "Összes eladás" - -#: admin/woocommerce-admin-reports.php:2352 -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "A rendelésekben szereplő 'Rendelés végösszeg' mező összegzése" - -#: admin/woocommerce-admin-reports.php:2353 -msgid "Total Shipping" -msgstr "Összes szállítási költség" - -#: admin/woocommerce-admin-reports.php:2353 -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "A rendelésekben a 'Szállítási díj' mező összege." - -#: admin/woocommerce-admin-reports.php:2354 -msgid "Total Product Taxes" -msgstr "Összes termékadó" - -#: admin/woocommerce-admin-reports.php:2354 -msgid "This is the sum of the 'Cart Tax' field within your orders." -msgstr "A rendelésekben a 'Kosár adó' mező összege." - -#: admin/woocommerce-admin-reports.php:2355 -msgid "Total Shipping Taxes" -msgstr "Összes szállítási adó" - -#: admin/woocommerce-admin-reports.php:2355 -msgid "This is the sum of the 'Shipping Tax' field within your orders." -msgstr "A rendelésekben a 'Szállítási adó' mező összege." - -#: admin/woocommerce-admin-reports.php:2356 -msgid "Total Taxes" -msgstr "Összes adó" - -#: admin/woocommerce-admin-reports.php:2356 -msgid "" -"This is the sum of the 'Cart Tax' and 'Shipping Tax' fields within your " -"orders." -msgstr "A rendelésekben a 'Kosár adó' és 'Szállítási adó' mezők összege." - -#: admin/woocommerce-admin-reports.php:2357 -msgid "Net profit" -msgstr "Nettó profit" - -#: admin/woocommerce-admin-reports.php:2357 -msgid "Total sales minus shipping and tax." -msgstr "Összes eladás mínusz a szállítási díjak és adók." - -#: admin/woocommerce-admin-reports.php:2402 -msgid "Toggle tax rows" -msgstr "Adó sorok megjelenítése/elrejtése" - -#: admin/woocommerce-admin-reports.php:2545 -msgid "Category" -msgstr "Kategória" - -#: admin/woocommerce-admin-reports.php:2648 -msgid "Top category" -msgstr "Legjobb kategória" - -#: admin/woocommerce-admin-reports.php:2657 -msgid "Worst category" -msgstr "Legrosszabb kategória" - -#: admin/woocommerce-admin-reports.php:2665 -msgid "Category sales average" -msgstr "Kategória átlagos eladásai" - -#: admin/woocommerce-admin-reports.php:2676 -msgid "Category sales median" -msgstr "Kategória eladás medián" - -#: admin/woocommerce-admin-reports.php:2696 -msgid "Monthly sales by category" -msgstr "Havi eladások kategória szerint" - -#: admin/woocommerce-admin-settings.php:45 -msgid "Action failed. Please refresh the page and retry." -msgstr "A művelet sikertelen. Kérlek frissítsd az oldalt és próbáld újra." - -#: admin/woocommerce-admin-settings.php:164 -msgid "Your settings have been saved." -msgstr "A beállítások elmentve." - -#: admin/woocommerce-admin-settings.php:210 -msgid "" -"More functionality and gateway options available via WC official extensions." -msgstr "" -"További funkcionalitás és fizetési módok a hivatalos WC bővítmények oldalon találhatók." - -#: admin/woocommerce-admin-settings.php:228 -msgid "Tax Rates" -msgstr "Adózási ráták" - -#: admin/woocommerce-admin-settings.php:255 -msgid "Email Options" -msgstr "E-mail beállítások" - -#: admin/woocommerce-admin-settings.php:388 -msgid "Save changes" -msgstr "Módosítások mentése" - -#: admin/woocommerce-admin-settings.php:429 -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "A változtatások elvesznek, ha elnavigálsz erről az oldalról." - -#: admin/woocommerce-admin-settings.php:801 -msgid "Hard Crop" -msgstr "Durva körbevágás" - -#: admin/woocommerce-admin-settings.php:826 -msgid "Select a page…" -msgstr "Válassz egy oldalt…" - -#: admin/woocommerce-admin-settings.php:849 -msgid "Choose a country…" -msgstr "Válassz egy országot…" - -#: admin/woocommerce-admin-settings.php:869 -msgid "Choose countries…" -msgstr "Válassz országokat…" - -#: admin/woocommerce-admin-status.php:27 -#: admin/woocommerce-admin-status.php:692 -msgid "Tools" -msgstr "Eszközök" - -#: admin/woocommerce-admin-status.php:62 -msgid "Please include this information when requesting support:" -msgstr "Kérjük mellékeld ezt az információt, amikor támogatást kérsz:" - -#: admin/woocommerce-admin-status.php:63 -msgid "Download System Report File" -msgstr "Rendszerjelentési fájl letöltése" - -#: admin/woocommerce-admin-status.php:71 -msgid "Environment" -msgstr "Környezet" - -#: admin/woocommerce-admin-status.php:77 -msgid "Home URL" -msgstr "Főoldal URL" - -#: admin/woocommerce-admin-status.php:81 -msgid "Site URL" -msgstr "Weboldal URL" - -#: admin/woocommerce-admin-status.php:85 -msgid "WC Version" -msgstr "WC verzió" - -#: admin/woocommerce-admin-status.php:89 -msgid "WC Database Version" -msgstr "WC adatbázis verzió" - -#: admin/woocommerce-admin-status.php:93 -msgid "WP Version" -msgstr "WP verzió" - -#: admin/woocommerce-admin-status.php:97 -msgid "Web Server Info" -msgstr "Webszerver információ" - -#: admin/woocommerce-admin-status.php:101 -msgid "PHP Version" -msgstr "PHP verzió" - -#: admin/woocommerce-admin-status.php:105 -msgid "MySQL Version" -msgstr "MySQL verzió" - -#: admin/woocommerce-admin-status.php:109 -msgid "WP Memory Limit" -msgstr "WP memóriakorlát" - -#: admin/woocommerce-admin-status.php:114 -msgid "" -"%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "" -"%s - Legalább 64MB memória beállítását javasoljuk. Lásd: A " -"PHP részére fenntartott memória növelése" - -#: admin/woocommerce-admin-status.php:121 -msgid "WP Debug Mode" -msgstr "WP hibakereső mód" - -#: admin/woocommerce-admin-status.php:125 -msgid "WP Max Upload Size" -msgstr "WP max feltöltési méret" - -#: admin/woocommerce-admin-status.php:129 -msgid "PHP Post Max Size" -msgstr "PHP Post max méret" - -#: admin/woocommerce-admin-status.php:133 -msgid "PHP Time Limit" -msgstr "PHP időkorlát" - -#: admin/woocommerce-admin-status.php:137 -msgid "WC Logging" -msgstr "WC naplózás" - -#: admin/woocommerce-admin-status.php:140 -msgid "Log directory is writable." -msgstr "A naplózási könyvtár írható." - -#: admin/woocommerce-admin-status.php:142 -msgid "" -"Log directory (woocommerce/logs/) is not writable. Logging will " -"not be possible." -msgstr "" -"A naplózási könyvtár (woocommerce/logs/) nem írható. A naplózás " -"nem lehetséges." - -#: admin/woocommerce-admin-status.php:149 -msgid "fsockopen/cURL" -msgstr "fsockopen/cURL" - -#: admin/woocommerce-admin-status.php:152 -msgid "Your server has fsockopen and cURL enabled." -msgstr "A szerveren engedélyezett az fsockopen és a cURL." - -#: admin/woocommerce-admin-status.php:154 -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "A szerveren engedélyezett az fsockopen, de a cURL nem." - -#: admin/woocommerce-admin-status.php:156 -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "A szerveren engedélyezett a cURL, de az fsockopen nem." - -#: admin/woocommerce-admin-status.php:160 -msgid "" -"Your server does not have fsockopen or cURL enabled - PayPal IPN and other " -"scripts which communicate with other servers will not work. Contact your " -"hosting provider." -msgstr "" -"A szerveren nem engedélyezett az fsockopen és a cURL - a PayPal IPN és olyan " -"szkriptek, amik más szerverekkel kommunikálnak, nem fognak működni. Lépj " -"kapcsolatba a tárhelyszolgáltatóddal." - -#: admin/woocommerce-admin-status.php:165 -msgid "SOAP Client" -msgstr "SOAP kliens" - -#: admin/woocommerce-admin-status.php:167 -msgid "Your server has the SOAP Client class enabled." -msgstr "A szerveren engedélyezett a SOAP kliens osztály." - -#: admin/woocommerce-admin-status.php:170 -msgid "" -"Your server does not have the SOAP Client class enabled - " -"some gateway plugins which use SOAP may not work as expected." -msgstr "" -"A szerveren nincs engedélyezve a SOAP kliens osztály - a " -"SOAP-ot használó fizetési módok lehet, hogy nem megfelelően fognak működni." - -#: admin/woocommerce-admin-status.php:175 -msgid "WP Remote Post" -msgstr "WP Remote Post" - -#: admin/woocommerce-admin-status.php:186 -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "wp_remote_post() sikeres volt - a PayPal IPN működik." - -#: admin/woocommerce-admin-status.php:189 -msgid "" -"wp_remote_post() failed. PayPal IPN won't work with your server. Contact " -"your hosting provider. Error:" -msgstr "" -"wp_remote_post() sikertelen volt. A PayPal IPN nem fog működni a szerveren. " -"Lépj kapcsolatba a tárhely szolgáltatóddal. Hiba:" - -#: admin/woocommerce-admin-status.php:192 -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "" -"wp_remote_post() sikertelen volt. A PayPal IPN nem biztos, hogy működni fog " -"a szerveren." - -#: admin/woocommerce-admin-status.php:215 -msgid "Plugins" -msgstr "Bővítmények" - -#: admin/woocommerce-admin-status.php:221 -msgid "Installed Plugins" -msgstr "Telepített bővítmények" - -#: admin/woocommerce-admin-status.php:259 -msgid "is available" -msgstr "elérhető" - -#: admin/woocommerce-admin-status.php:262 -msgid "by" -msgstr "-" - -#: admin/woocommerce-admin-status.php:262 -msgid "version" -msgstr "verzió" - -#: admin/woocommerce-admin-status.php:285 -msgid "Force SSL" -msgstr "SSL kényszerítése" - -#: admin/woocommerce-admin-status.php:292 -msgid "WC Pages" -msgstr "WC oldalak" - -#: admin/woocommerce-admin-status.php:299 -msgid "Shop Base" -msgstr "Üzlet főoldal" - -#: admin/woocommerce-admin-status.php:311 -msgid "Pay" -msgstr "Fizetés" - -#: admin/woocommerce-admin-status.php:315 -msgid "Thanks" -msgstr "Köszönet" - -#: admin/woocommerce-admin-status.php:323 -msgid "Edit Address" -msgstr "Cím szerkesztése" - -#: admin/woocommerce-admin-status.php:355 -msgid "Page not set" -msgstr "Az oldal nincs beállítva" - -#: admin/woocommerce-admin-status.php:365 -msgid "Page does not exist" -msgstr "Az oldal nem létezik" - -#: admin/woocommerce-admin-status.php:370 -msgid "Page does not contain the shortcode: %s" -msgstr "Az oldal nem tartalmazza a gyorskódot: %s" - -#: admin/woocommerce-admin-status.php:389 -msgid "WC Taxonomies" -msgstr "WC taxonómiák" - -#: admin/woocommerce-admin-status.php:395 -msgid "Order Statuses" -msgstr "Rendelési állapotok" - -#: admin/woocommerce-admin-status.php:405 -msgid "Product Types" -msgstr "Terméktípusok" - -#: admin/woocommerce-admin-status.php:418 -msgid "Theme" -msgstr "Sablon" - -#: admin/woocommerce-admin-status.php:424 -msgid "Theme Name" -msgstr "Sablon név" - -#: admin/woocommerce-admin-status.php:431 -msgid "Theme Version" -msgstr "Sablon verzió" - -#: admin/woocommerce-admin-status.php:437 -msgid "Author URL" -msgstr "Szerző URL" - -#: admin/woocommerce-admin-status.php:446 -msgid "Templates" -msgstr "Sablonok" - -#: admin/woocommerce-admin-status.php:452 -msgid "Template Overrides" -msgstr "Sablon felülírások" - -#: admin/woocommerce-admin-status.php:470 -msgid "No core overrides present in theme." -msgstr "A sablonban nincsenek felülírások." - -#: admin/woocommerce-admin-status.php:565 -msgid "WC Transients" -msgstr "WC tranziensek" - -#: admin/woocommerce-admin-status.php:566 -msgid "Clear transients" -msgstr "Tranziensek törlése" - -#: admin/woocommerce-admin-status.php:567 -msgid "This tool will clear the product/shop transients cache." -msgstr "Ez az eszköz kiüríti a termék/üzlet tranziens gyorsítótárát." - -#: admin/woocommerce-admin-status.php:570 -msgid "Expired Transients" -msgstr "Lejárt tranziensek" - -#: admin/woocommerce-admin-status.php:571 -msgid "Clear expired transients" -msgstr "Lejárt tranziensek ürítése" - -#: admin/woocommerce-admin-status.php:572 -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "Ez az eszköz a WordPress ÖSSZES lejárt tranziensét törölni fogja." - -#: admin/woocommerce-admin-status.php:575 -msgid "Term counts" -msgstr "Kifejezések száma" - -#: admin/woocommerce-admin-status.php:576 -msgid "Recount terms" -msgstr "Kifejezések újraszámolása" - -#: admin/woocommerce-admin-status.php:577 -msgid "" -"This tool will recount product terms - useful when changing your settings in " -"a way which hides products from the catalog." -msgstr "" -"Ez az eszköz újraszámolja a termék kifejezéseket - hasznos ha a termékek " -"megjelenését szabályozó beállításokat módosítottál." - -#: admin/woocommerce-admin-status.php:580 -msgid "Capabilities" -msgstr "Szerepkörök" - -#: admin/woocommerce-admin-status.php:581 -msgid "Reset capabilities" -msgstr "Szerepkörök alaphelyzetbe állítása" - -#: admin/woocommerce-admin-status.php:582 -msgid "" -"This tool will reset the admin, customer and shop_manager roles to default. " -"Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "" -"Ez az eszköz alaphelyzetbe állítja az admin, customer és shop_manager " -"szerepköröket. Akkor használd ezt, ha a felhasználóid nem érik el a " -"WooCommerce admin oldalakat." - -#: admin/woocommerce-admin-status.php:585 -msgid "Customer Sessions" -msgstr "Vásárlói munkamenetek" - -#: admin/woocommerce-admin-status.php:586 -msgid "Clear all sessions" -msgstr "Munkamenetek törlése" - -#: admin/woocommerce-admin-status.php:587 -msgid "" -"Warning This tool will delete all customer " -"session data from the database, including any current live carts." -msgstr "" -"Figyelmeztetés Ez az eszköz minden vásárlói " -"munkamenetet törölni fog az adatbázisból, beleértve a jelenlegi, élő " -"kosarakat is." - -#: admin/woocommerce-admin-status.php:597 -msgid "Product Transients Cleared" -msgstr "Termék tranziensek törölve" - -#: admin/woocommerce-admin-status.php:638 -msgid "%d Transients Rows Cleared" -msgstr "%s tranziens sor törölve" - -#: admin/woocommerce-admin-status.php:646 -msgid "Roles successfully reset" -msgstr "A szerepkörök alaphelyzetbe állítva" - -#: admin/woocommerce-admin-status.php:658 -msgid "Terms successfully recounted" -msgstr "Kifejezések sikeresen újraszámolva" - -#: admin/woocommerce-admin-status.php:677 -msgid "There was an error calling %s::%s" -msgstr "Hiba történt a meghíváskor: %s::%s" - -#: admin/woocommerce-admin-status.php:680 -msgid "There was an error calling %s" -msgstr "Hiba történt a meghíváskor: %s" - -#: admin/woocommerce-admin-taxonomies.php:25 -#: admin/woocommerce-admin-taxonomies.php:118 -msgid "Display type" -msgstr "Megjelenítési típus" - -#: admin/woocommerce-admin-taxonomies.php:29 -#: admin/woocommerce-admin-taxonomies.php:123 -msgid "Subcategories" -msgstr "Alkategóriák" - -#: admin/woocommerce-admin-taxonomies.php:30 -#: admin/woocommerce-admin-taxonomies.php:124 -msgid "Both" -msgstr "Mindkettő" - -#: admin/woocommerce-admin-taxonomies.php:34 -#: admin/woocommerce-admin-taxonomies.php:129 -msgid "Thumbnail" -msgstr "Bélyegkép" - -#: admin/woocommerce-admin-taxonomies.php:38 -#: admin/woocommerce-admin-taxonomies.php:134 -msgid "Upload/Add image" -msgstr "Kép feltöltése/hozzáadása" - -#: admin/woocommerce-admin-taxonomies.php:39 -#: admin/woocommerce-admin-taxonomies.php:135 -msgid "Remove image" -msgstr "Kép eltávolítása" - -#: admin/woocommerce-admin-taxonomies.php:64 -#: admin/woocommerce-admin-taxonomies.php:156 -msgid "Use image" -msgstr "Kép használata" - -#: admin/woocommerce-admin-taxonomies.php:222 -msgid "" -"Product categories for your store can be managed here. To change the order " -"of categories on the front-end you can drag and drop to sort them. To see " -"more categories listed click the \"screen options\" link at the top of the " -"page." -msgstr "" -"Az üzlet termékkategóriái itt kezelhetők. A kategóriák főoldalon való " -"megjelenítési sorrendjét fogd és vidd módszerrel tudod szabályozni. Több " -"kategória listázásához kattints a \"Képernyő beállításai\" linkre az oldal " -"tetején." - -#: admin/woocommerce-admin-taxonomies.php:237 -msgid "" -"Shipping classes can be used to group products of similar type. These groups " -"can then be used by certain shipping methods to provide different rates to " -"different products." -msgstr "" -"A szállítási osztályok hasonló típusú termékek csoportosítására alkalmasak. " -"Ezek a csoportok később felhasználhatók az egyes szállítási módoknál, hogy " -"különböző termékekhez különböző szállítási díjakat állíthass be." - -#: admin/woocommerce-admin-taxonomies.php:365 -msgid "Edit Class" -msgstr "Osztály szerkesztése" - -#: admin/woocommerce-admin-users.php:26 -msgid "Billing Address" -msgstr "Számlázási cím" - -#: admin/woocommerce-admin-users.php:27 -msgid "Shipping Address" -msgstr "Szállítási cím" - -#: admin/woocommerce-admin-users.php:28 -msgid "Paying Customer?" -msgstr "Fizető vásárló?" - -#: admin/woocommerce-admin-users.php:29 -msgid "Completed Orders" -msgstr "Befejezett rendelések" - -#: admin/woocommerce-admin-users.php:144 -msgid "Customer Billing Address" -msgstr "Vásárló számlázási címe" - -#: admin/woocommerce-admin-users.php:147 admin/woocommerce-admin-users.php:196 -msgid "First name" -msgstr "Vezetéknév" - -#: admin/woocommerce-admin-users.php:151 admin/woocommerce-admin-users.php:200 -msgid "Last name" -msgstr "Keresztnév" - -#: admin/woocommerce-admin-users.php:176 -msgid "Country or state code" -msgstr "Országkód" - -#: admin/woocommerce-admin-users.php:180 admin/woocommerce-admin-users.php:229 -msgid "2 letter Country code" -msgstr "2 betűs országkód" - -#: admin/woocommerce-admin-users.php:183 -msgid "Telephone" -msgstr "Telefonszám" - -#: admin/woocommerce-admin-users.php:193 -msgid "Customer Shipping Address" -msgstr "Vásárló szállítási címe" - -#: admin/woocommerce-admin-users.php:225 -msgid "State/County or state code" -msgstr "Megye vagy megyekód" - -#. Plugin Name of the plugin/theme -msgid "WooCommerce" -msgstr "WooCommerce" - -#. Plugin URI of the plugin/theme -msgid "http://www.woothemes.com/woocommerce/" -msgstr "http://www.woothemes.com/woocommerce/" - -#. Description of the plugin/theme -msgid "An e-commerce toolkit that helps you sell anything. Beautifully." -msgstr "Egy e-kereskedelmi eszköztár ami segít eladni bármit. Gyönyörűen." - -#. Author of the plugin/theme -msgid "WooThemes" -msgstr "WooThemes" - -#. Author URI of the plugin/theme -msgid "http://woothemes.com" -msgstr "http://woothemes.com" - -#~ msgid "Customer emails" -#~ msgstr "Vásárlói e-mailek" - -#~ msgid "Any customer" -#~ msgstr "Bármely vásárló" - -#~ msgid "" -#~ "Comma separate email addresses to restrict this coupon to specific " -#~ "billing and user emails." -#~ msgstr "" -#~ "Vesszővel elválasztott e-mail címek, ha a kupont konkrét számlázási vagy " -#~ "felhasználói e-mail címekre korlátozod." - -#~ msgid "Cost" -#~ msgstr "Ár" - -#~ msgid "Enter an amount or percentage e.g. 2.99 or 15%" -#~ msgstr "Írj be egy összeget vagy százalékot, pl. 2.99 vagy 15%" - -#~ msgid "Base Page Title" -#~ msgstr "Főoldal címe" - -#~ msgid "" -#~ "This title to show on the shop base page. Leave blank to use the page " -#~ "title." -#~ msgstr "" -#~ "Ez a cím jelenik meg az üzlet főoldalán. Hagyd üresen, ha az oldal címét " -#~ "szeretnéd használni." - -#~ msgid "Configure shipping class" -#~ msgstr "Szállítási osztály konfigurálása" diff --git a/i18n/languages/woocommerce-admin-ja.mo b/i18n/languages/woocommerce-admin-ja.mo deleted file mode 100644 index f6a1537c8d8..00000000000 Binary files a/i18n/languages/woocommerce-admin-ja.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-admin-ja.po b/i18n/languages/woocommerce-admin-ja.po deleted file mode 100644 index cf9fb6c8a60..00000000000 --- a/i18n/languages/woocommerce-admin-ja.po +++ /dev/null @@ -1,5439 +0,0 @@ -msgid "" -msgstr "" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Project-Id-Version: WooCommerce 2.0.9 Admin\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-05-10 11:38:26+00:00\n" -"X-Generator: Poedit 1.5.7\n" -"Last-Translator: Shohei Tanaka \n" -"Language-Team: JAPANESE \n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"PO-Revision-Date: \n" - -#: admin/importers/importers-init.php:13 -msgid "WooCommerce Tax Rates (CSV)" -msgstr "WooCommerce Tax Rates (CSV)" - -#: admin/importers/importers-init.php:13 -msgid "Import tax rates to your store via a csv file." -msgstr "csvファイルで税率をインポート" - -#: admin/importers/tax-rates-importer.php:103 -#: admin/importers/tax-rates-importer.php:186 -#: admin/importers/tax-rates-importer.php:226 -#: admin/importers/tax-rates-importer.php:241 -msgid "Sorry, there has been an error." -msgstr "エラーがありました" - -#: admin/importers/tax-rates-importer.php:104 -msgid "The file does not exist, please try again." -msgstr "ファイルが存在しません。もう一度お試しください。" - -#: admin/importers/tax-rates-importer.php:187 -msgid "The CSV is invalid." -msgstr "CSV形式は無効です" - -#: admin/importers/tax-rates-importer.php:198 -msgid "" -"Import complete - imported %s tax rates and skipped " -"%s." -msgstr "" -"完全なインポート - %sの税率をインポートし、%sをスキップ" - -#: admin/importers/tax-rates-importer.php:208 -msgid "All done!" -msgstr "完了!" - -#: admin/importers/tax-rates-importer.php:208 -msgid "View Tax Rates" -msgstr "税率を見る" - -#: admin/importers/tax-rates-importer.php:259 -msgid "Import Tax Rates" -msgstr "税率をインポート" - -#: admin/importers/tax-rates-importer.php:282 -msgid "" -"Hi there! Upload a CSV file containing tax rates to import the contents into " -"your shop. Choose a .csv file to upload, then click \"Upload file and import" -"\"." -msgstr "" -"CSVファイルをアップロードして税率を登録する場合は「ファイルをアップロードして" -"インポート」をクリックし、アップロードするCSVファイルを選択して下さい。" - -#: admin/importers/tax-rates-importer.php:284 -msgid "" -"Tax rates need to be defined with columns in a specific order (10 columns). " -"Click here to download a sample." -msgstr "" -"税率は、特定の列(10列)で定義する必要があります。ここをクリッ" -"クして、サンプルをダウンロード" - -#: admin/importers/tax-rates-importer.php:292 -msgid "" -"Before you can upload your import file, you will need to fix the following " -"error:" -msgstr "インポートファイルをアップロードする前に、次を修正する必要があります:" - -#: admin/importers/tax-rates-importer.php:301 -msgid "Choose a file from your computer:" -msgstr "お使いのコンピュータからファイルを選択してください:" - -#: admin/importers/tax-rates-importer.php:307 -msgid "Maximum size: %s" -msgstr "最大サイズ: %s" - -#: admin/importers/tax-rates-importer.php:312 -msgid "OR enter path to file:" -msgstr "またはファイルへのパスを入力:" - -#: admin/importers/tax-rates-importer.php:319 -msgid "Delimiter" -msgstr "区切り文字" - -#: admin/importers/tax-rates-importer.php:325 -msgid "Upload file and import" -msgstr "ファイルをアップロードしてインポート" - -#: admin/includes/duplicate_product.php:23 -msgid "No product to duplicate has been supplied!" -msgstr "複製する製品が存在しません" - -#: admin/includes/duplicate_product.php:43 -msgid "Product creation failed, could not find original product:" -msgstr "商品の作成に失敗しました。元の商品を見つけることができませんでした:" - -#: admin/includes/duplicate_product.php:90 -msgid "(Copy)" -msgstr "(コピー)" - -#: admin/includes/notice-install.php:6 -msgid "" -"Welcome to WooCommerce – You're almost ready to start " -"selling :)" -msgstr "" -"WooCommerceへ ようこそ – 販売準備がほぼ整いました" - -#: admin/includes/notice-install.php:7 -msgid "Install WooCommerce Pages" -msgstr "WooCommerceページをインストール" - -#: admin/includes/notice-install.php:7 -msgid "Skip setup" -msgstr "セットアップをスキップ" - -#: admin/includes/notice-theme-support.php:6 -msgid "" -"Your theme does not declare WooCommerce support – if " -"you encounter layout issues please read our integration guide or choose a " -"WooCommerce theme :)" -msgstr "" -"あなたのテーマはWooCommerceのサポートを宣言していません " -"– あなたがレイアウトの問題に遭遇している場合は、我々の統合ガイドを読む" -"か、WooCommerceテーマを選んでください :)" - -#: admin/includes/notice-theme-support.php:7 -msgid "Theme Integration Guide" -msgstr "テーマの統合ガイド" - -#: admin/includes/notice-theme-support.php:7 -msgid "Hide this notice" -msgstr "このお知らせを隠す" - -#: admin/includes/notice-update.php:6 -msgid "" -"Data Update Required – We just need to update your " -"install to the latest version" -msgstr "" -"データ更新が必要 – 最新バージョンに更新する必要があり" -"ます。" - -#: admin/includes/notice-update.php:7 -msgid "Run the updater" -msgstr "アップデートを実行" - -#: admin/includes/notice-update.php:12 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"先に進む前に、データベースをバックアップすることを強くお勧めします。ップデー" -"タを実行してもよろしいですか?" - -#: admin/includes/updates/woocommerce-update-2.0.php:49 -#: admin/woocommerce-admin-init.php:885 -msgctxt "slug" -msgid "product-category" -msgstr "商品カテゴリー" - -#: admin/includes/updates/woocommerce-update-2.0.php:50 -#: admin/woocommerce-admin-init.php:898 -msgctxt "slug" -msgid "product-tag" -msgstr "商品タグ" - -#: admin/includes/updates/woocommerce-update-2.0.php:58 -msgctxt "slug" -msgid "product" -msgstr "商品" - -#: admin/includes/updates/woocommerce-update-2.0.php:179 -#: admin/woocommerce-admin-install.php:207 -msgctxt "page_slug" -msgid "lost-password" -msgstr "パスワードを忘れた" - -#: admin/includes/updates/woocommerce-update-2.0.php:179 -#: admin/woocommerce-admin-install.php:207 -#: admin/woocommerce-admin-status.php:335 -msgid "Lost Password" -msgstr "パスワードを忘れた" - -#: admin/includes/welcome.php:48 -msgid "Welcome to WooCommerce" -msgstr "Welcome to WooCommerce" - -#: admin/includes/welcome.php:135 -msgid "Welcome to WooCommerce %s" -msgstr "Welcome to WooCommerce %s" - -#: admin/includes/welcome.php:140 -msgid "Thanks, all done!" -msgstr "Thanks, all done!" - -#: admin/includes/welcome.php:142 -msgid "Thank you for updating to the latest version!" -msgstr "最新のバージョンにアップデートしていただきありがとうございます!" - -#: admin/includes/welcome.php:144 -msgid "Thanks for installing!" -msgstr "インストールしていただき、ありがとうございます!" - -#: admin/includes/welcome.php:146 -msgid "" -"%s WooCommerce %s is more powerful, stable, and secure than ever before. We " -"hope you enjoy it." -msgstr "" -"%s WooCommerce %s はより強力で、安定的で、以前にもまして安全です。我々はあな" -"たがそれを楽しむことを望みます。" - -#: admin/includes/welcome.php:150 -msgid "Version %s" -msgstr "Version %s" - -#: admin/includes/welcome.php:153 admin/woocommerce-admin-content.php:41 -#: admin/woocommerce-admin-init.php:88 admin/woocommerce-admin-status.php:278 -msgid "Settings" -msgstr "設定" - -#: admin/includes/welcome.php:154 -msgid "Docs" -msgstr "ドキュメント" - -#: admin/includes/welcome.php:161 -msgid "What's New" -msgstr "新着情報" - -#: admin/includes/welcome.php:163 -msgid "Credits" -msgstr "クレジット" - -#: admin/includes/welcome.php:186 -msgid "Security in mind" -msgstr "セキュリティを念頭におく" - -#: admin/includes/welcome.php:190 -msgid "Sucuri Safe Plugin" -msgstr "Sucuri 安全なプラグイン" - -#: admin/includes/welcome.php:191 -msgid "" -"You will be happy to learn that WooCommerce has been audited and certified " -"by the Sucuri Security team. Whilst there is not much to be seen visually to " -"understand the amount of work that went into this audit, rest assured that " -"your website is powered by one of the most powerful and stable eCommerce " -"plugins available." -msgstr "" -"WooCommerceが、Sucuriセキュリティチームによって監査され認定されていますので、" -"安全です。 あなたのウェブサイトが利用できる最も強力で安定した電子商取引プラグ" -"インの1つによって推進されると確信します。" - -#: admin/includes/welcome.php:194 -msgid "A Smoother Admin Experience" -msgstr "スムーズな管理経験" - -#: admin/includes/welcome.php:200 -msgid "New Product Panel" -msgstr "新商品のパネル" - -#: admin/includes/welcome.php:201 -msgid "" -"We have revised the product data panel making it cleaner, more streamlined, " -"and more logical. Adding products is a breeze!" -msgstr "" -"我々は、それがより合理的、より美しく、より論理的な作りの製品データパネルに改" -"訂しました。製品を追加することは簡単です!" - -#: admin/includes/welcome.php:206 -msgid "Nicer Order Screens" -msgstr "改善された注文画面" - -#: admin/includes/welcome.php:207 -msgid "" -"Order pages have had a cleanup, with a more easily scannable interface. We " -"particularly like the new status icons!" -msgstr "" -"ご注文ページには、より簡単にスキャン可能なインターフェイスのクリーンアップを" -"持っています。私たちは特にその新しいステータス・アイコンが好きです!" - -#: admin/includes/welcome.php:212 -msgid "Multi-Download Support" -msgstr "マルチダウンロードサポート" - -#: admin/includes/welcome.php:213 -msgid "" -"Products can have multiple downloadable files - purchasers will get access " -"to all the files added." -msgstr "" -"製品は、複数のダウンロード可能なファイルを持つことができます - 購入者は追加さ" -"れたすべてのファイルへのアクセスを取得します。" - -#: admin/includes/welcome.php:218 -msgid "Less Taxing Taxes" -msgstr "より簡単な税" - -#: admin/includes/welcome.php:224 -msgid "New Tax Input Panel" -msgstr "新しい「税の入力パネル」" - -#: admin/includes/welcome.php:225 -msgid "" -"The tax input pages have been streamlined to make inputting taxes simpler - " -"adding multiple taxes for a single jurisdiction is now much easier using the " -"priority system. There is also CSV import/export support." -msgstr "" -"税の入力ページが入力税金を簡単に行うために合理化されています。 - 単一の管轄の" -"ために複数の税金を追加すると、すぐに優先システムを使用して、はるかに簡単で" -"す。 CSVファイルのインポート/エクスポートのサポートもあります。" - -#: admin/includes/welcome.php:229 -msgid "Improved Tax Options" -msgstr "改良された税のオプション" - -#: admin/includes/welcome.php:230 -msgid "" -"As requested by some users, we now support taxing the billing address " -"instead of shipping (optional), and we allow you to choose which tax class " -"applies to shipping." -msgstr "" -"一部のユーザーによって要求された、請求先住所の代わりに課税出荷がサポートされ" -"ています(オプション)、そして税クラスは送料に適用されるよう選択することがで" -"きます。" - -#: admin/includes/welcome.php:235 -msgid "Product Listing Improvements Customers Will Love" -msgstr "商品リストの改善されたお客様を愛しています" - -#: admin/includes/welcome.php:241 -msgid "New Sorting Options" -msgstr "新しいソートオプション" - -#: admin/includes/welcome.php:242 -msgid "Customers can now sort products by popularity and ratings." -msgstr "お客様は現在、人気と評価して製品を並べ替えることができます。" - -#: admin/includes/welcome.php:247 -msgid "Better Pagination and Result Counts" -msgstr "より良いページネーションと結果のカウント" - -#: admin/includes/welcome.php:248 -msgid "" -"Numbered pagination has been added to core, and we show the number of " -"results found above the listings." -msgstr "" -"番号付きのページネーションはコアに追加され、我々はリスト上に見つかる結果の数" -"を示します。" - -#: admin/includes/welcome.php:253 -msgid "Inline Star Rating Display" -msgstr "インライン星格付け表示" - -#: admin/includes/welcome.php:254 -msgid "" -"We have added star ratings to the catalog which are pulled from reviews." -msgstr "我々は、カタログに星の評価を追加しました。" - -#: admin/includes/welcome.php:262 -msgid "Under the Hood" -msgstr "" - -#: admin/includes/welcome.php:266 -msgid "New product classes" -msgstr "新商品のクラス" - -#: admin/includes/welcome.php:267 -msgid "" -"The product classes have been rewritten and are now factory based. Much more " -"extendable, and easier to query products using the new get_product() function." -msgstr "" -"製品のクラスが書き直されており、現在、拠点を置く工場です。 はるかに拡張可能、" -"かつ新たな get_product()関数を使用して、商品呼び出しが容易にな" -"ります。" - -#: admin/includes/welcome.php:271 -msgid "Capability overhaul" -msgstr "能力のオーバーホール" - -#: admin/includes/welcome.php:272 -msgid "" -"More granular capabilities for admin/shop manager roles covering products, " -"orders and coupons." -msgstr "" -"管理者/ショップマネージャーの役割のためのより細かい機能は、製品、受注やクーポ" -"ンをカバーしています。" - -#: admin/includes/welcome.php:276 -msgid "API Improvements" -msgstr "APIの改善" - -#: admin/includes/welcome.php:277 -msgid "" -"WC-API now has real endpoints, and we've optimised the gateways " -"API significantly by only loading gateways when needed." -msgstr "" -"WC-APIは、実際のエンドポイントを持っており、必要なときにのみゲー" -"トウェイをロードすることによって、大幅にゲートウェイAPIを最適化しました。" - -#: admin/includes/welcome.php:283 -msgid "Cache-friendly cart widgets" -msgstr "支払いにフレンドリーなカートヴィジェット" - -#: admin/includes/welcome.php:284 -msgid "" -"Cart widgets and other \"fragments\" are now pulled in via AJAX - this works " -"wonders with static page caching." -msgstr "" -"カートウィジェットや、その他の\"断片\"は、今やAJAX経由でプルアップされていま" -"す。- これは、静的なページ・キャッシングを備えた驚くべき効果を働かせます。" - -#: admin/includes/welcome.php:288 -msgid "Session handling" -msgstr "セッション処理" - -#: admin/includes/welcome.php:289 -msgid "" -"PHP SESSIONS have been a problem for many users in the past, so we've " -"developed our own handler using cookies and options to make these more " -"reliable." -msgstr "" -"PHPセッションは、過去に多くのユーザーにとって問題となっているので、我々はこれ" -"らの信頼性を高めるためにクッキーとオプションを使用して独自のハンドラを開発し" -"ました。" - -#: admin/includes/welcome.php:293 -msgid "Retina Ready" -msgstr "" - -#: admin/includes/welcome.php:294 -msgid "All graphics within WC have been optimised for HiDPI displays." -msgstr "WCのすべてのグラフィックはHiDPIディスプレイに最適化されています。" - -#: admin/includes/welcome.php:301 -msgid "Better stock handling" -msgstr "より良い在庫処理" - -#: admin/includes/welcome.php:302 -msgid "" -"We have added an option to hold stock for unpaid orders (defaults to " -"60mins). When this time limit is reached, and the order is not paid for, " -"stock is released and the order is cancelled." -msgstr "" -"私達は未払いの注文のために在庫を保有するためのオプションを追加しました(デ" -"フォルト60分)。この制限時間に達すると、注文の代金が支払われていない場合は、" -"在庫が放出され、注文はキャンセルされます。" - -#: admin/includes/welcome.php:306 -msgid "Improved Line-item storage" -msgstr "改善されたラインアイテムの保管" - -#: admin/includes/welcome.php:307 -msgid "" -"We have changed how order items get stored making them easier (and faster) " -"to access for reporting. Order items are no longer serialised within an " -"order - they are stored within their own table." -msgstr "" -"私たちはより早く注文の処理を行えるように改善しました。注文商品は注文内でシリ" -"アライズされていません。-独自のテーブル内に格納されます。" - -#: admin/includes/welcome.php:311 -msgid "Autoload" -msgstr "自動的にロード" - -#: admin/includes/welcome.php:312 -msgid "" -"We have setup autoloading for classes - this has dramatically reduced memory " -"usage in 2.0." -msgstr "" -"我々はクラスのために自動セットアップをします-これは2.0でメモリ使用量を劇的に" -"削減しています。" - -#: admin/includes/welcome.php:319 -msgid "Go to WooCommerce Settings" -msgstr "WooCommerce設定を行いましょう!" - -#: admin/includes/welcome.php:337 -msgid "" -"WooCommerce is developed and maintained by a worldwide team of passionate " -"individuals and backed by an awesome developer community. Want to see your " -"name? Contribute to WooCommerce." -msgstr "" -"WooCommerceが開発され、情熱的な個人の、世界的なチームによって素晴らしい開発者" -"コミュニティに支えられています。自分の名前を見たいですか?WooCommerceに" -"貢献を参照してください。" - -#: admin/includes/welcome.php:363 -msgid "View %s" -msgstr "表示 %s" - -#: admin/post-types/product.php:31 -msgid "Make a duplicate from this product" -msgstr "この商品から複製する" - -#: admin/post-types/product.php:32 -msgid "Duplicate" -msgstr "複製" - -#: admin/post-types/product.php:61 -msgid "Copy to a new draft" -msgstr "下書きにコピー" - -#: admin/post-types/product.php:86 admin/woocommerce-admin-taxonomies.php:297 -msgid "Image" -msgstr "画像" - -#: admin/post-types/product.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:376 -#: admin/post-types/writepanels/writepanel-product_data.php:470 -#: admin/woocommerce-admin-attributes.php:233 -#: admin/woocommerce-admin-attributes.php:269 -#: admin/woocommerce-admin-attributes.php:307 -#: admin/woocommerce-admin-attributes.php:330 -#: admin/woocommerce-admin-attributes.php:374 -#: admin/woocommerce-admin-attributes.php:399 -#: admin/woocommerce-admin-init.php:437 -msgid "Name" -msgstr "名前" - -#: admin/post-types/product.php:91 admin/post-types/product.php:557 -#: admin/post-types/writepanels/variation-admin-html.php:52 -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#: admin/woocommerce-admin-reports.php:2099 -#: admin/woocommerce-admin-reports.php:2135 -msgid "SKU" -msgstr "SKU" - -#: admin/post-types/product.php:94 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:83 -#: admin/woocommerce-admin-content.php:63 -#: admin/woocommerce-admin-reports.php:90 -msgid "Stock" -msgstr "在庫" - -#: admin/post-types/product.php:96 admin/post-types/product.php:568 -#: admin/post-types/product.php:789 admin/woocommerce-admin-functions.php:202 -msgid "Price" -msgstr "金額" - -#: admin/post-types/product.php:98 -msgid "Categories" -msgstr "カテゴリー" - -#: admin/post-types/product.php:99 -msgid "Tags" -msgstr "タグ" - -#: admin/post-types/product.php:100 admin/post-types/product.php:632 -#: admin/post-types/product.php:906 -#: admin/post-types/writepanels/writepanel-product_data.php:1058 -#: admin/woocommerce-admin-init.php:450 -msgid "Featured" -msgstr "特色" - -#: admin/post-types/product.php:101 admin/woocommerce-admin-attributes.php:251 -#: admin/woocommerce-admin-attributes.php:309 -#: admin/woocommerce-admin-attributes.php:386 -msgid "Type" -msgstr "タイプ" - -#: admin/post-types/product.php:102 admin/post-types/shop_order.php:50 -msgid "Date" -msgstr "日付" - -#: admin/post-types/product.php:151 -msgid "Edit this item" -msgstr "このアイテムをで編集" - -#: admin/post-types/product.php:151 -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#: admin/post-types/writepanels/writepanel-order_data.php:387 -#: admin/post-types/writepanels/writepanel-product_data.php:1061 -#: admin/woocommerce-admin-attributes.php:323 -msgid "Edit" -msgstr "編集" - -#: admin/post-types/product.php:152 -msgid "Edit this item inline" -msgstr "このアイテムをインラインで編集" - -#: admin/post-types/product.php:152 -msgid "Quick Edit" -msgstr "クイック編集" - -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore this item from the Trash" -msgstr "ゴミ箱からこのアイテムを復元する" - -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore" -msgstr "復元" - -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Move this item to the Trash" -msgstr "ゴミ箱にこの項目を移動する" - -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Trash" -msgstr "ゴミ箱" - -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -msgid "Delete this item permanently" -msgstr "永久にこの項目を削除します" - -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -#: admin/post-types/writepanels/writepanel-order_data.php:463 -msgid "Delete Permanently" -msgstr "永久削除" - -#: admin/post-types/product.php:165 -msgid "Preview “%s”" -msgstr "プレビュー “%s”" - -#: admin/post-types/product.php:165 -msgid "Preview" -msgstr "プレビュー" - -#: admin/post-types/product.php:167 -msgid "View “%s”" -msgstr "表示 “%s”" - -#: admin/post-types/product.php:167 admin/post-types/shop_order.php:171 -msgid "View" -msgstr "表示" - -#: admin/post-types/product.php:214 -msgid "Grouped" -msgstr "グループ化" - -#: admin/post-types/product.php:216 -msgid "External/Affiliate" -msgstr "外部/アフィリエイト" - -#: admin/post-types/product.php:220 admin/post-types/product.php:407 -#: admin/post-types/writepanels/variation-admin-html.php:174 -#: admin/post-types/writepanels/writepanel-product_data.php:52 -msgid "Virtual" -msgstr "バーチャル" - -#: admin/post-types/product.php:222 admin/post-types/product.php:403 -#: admin/post-types/writepanels/variation-admin-html.php:172 -#: admin/post-types/writepanels/writepanel-product_data.php:58 -msgid "Downloadable" -msgstr "ダウンロード可能" - -#: admin/post-types/product.php:224 -msgid "Simple" -msgstr "シンプル" - -#: admin/post-types/product.php:228 admin/post-types/product.php:387 -msgid "Variable" -msgstr "変数" - -#: admin/post-types/product.php:251 -msgid "Toggle featured" -msgstr "Featureに切り替える" - -#: admin/post-types/product.php:253 -msgid "yes" -msgstr "はい" - -#: admin/post-types/product.php:255 -msgid "no" -msgstr "いいえ" - -#: admin/post-types/product.php:262 admin/post-types/product.php:641 -#: admin/post-types/product.php:930 -#: admin/post-types/writepanels/writepanel-product_data.php:231 -msgid "In stock" -msgstr "在庫あり" - -#: admin/post-types/product.php:264 admin/post-types/product.php:642 -#: admin/post-types/product.php:931 -#: admin/post-types/writepanels/writepanel-product_data.php:232 -#: admin/woocommerce-admin-reports.php:2119 -msgid "Out of stock" -msgstr "在庫切れ" - -#: admin/post-types/product.php:373 -msgid "Show all product types" -msgstr "全ての商品タイプを表示" - -#: admin/post-types/product.php:381 -#: admin/post-types/writepanels/writepanel-product_data.php:39 -msgid "Grouped product" -msgstr "グループ化された商品" - -#: admin/post-types/product.php:383 -#: admin/post-types/writepanels/writepanel-product_data.php:40 -msgid "External/Affiliate product" -msgstr "外部/アフィリエイト商品" - -#: admin/post-types/product.php:385 -#: admin/post-types/writepanels/writepanel-product_data.php:38 -msgid "Simple product" -msgstr "基本的な商品" - -#: admin/post-types/product.php:399 -msgid "Show all sub-types" -msgstr "全てのサブタイプを表示" - -#: admin/post-types/product.php:520 -msgid "[%s with SKU of %s]" -msgstr "[%s SKUの持つ %s]" - -#: admin/post-types/product.php:526 -msgid "[%s with ID of %d]" -msgstr "[%s のIDを持つ %d]" - -#: admin/post-types/product.php:552 admin/post-types/product.php:783 -#: admin/post-types/writepanels/writepanels-init.php:46 -#: admin/settings/settings-init.php:508 -msgid "Product Data" -msgstr "商品データ" - -#: admin/post-types/product.php:570 -msgid "Regular price" -msgstr "定価" - -#: admin/post-types/product.php:575 admin/post-types/product.php:813 -msgid "Sale" -msgstr "セール" - -#: admin/post-types/product.php:577 -msgid "Sale price" -msgstr "セール価格" - -#: admin/post-types/product.php:588 admin/post-types/product.php:839 -#: admin/post-types/writepanels/variation-admin-html.php:96 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:273 -msgid "Weight" -msgstr "重さ" - -#: admin/post-types/product.php:599 admin/post-types/product.php:863 -msgid "L/W/H" -msgstr "長さ/幅/高さ" - -#: admin/post-types/product.php:601 admin/post-types/product.php:879 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:85 -#: admin/post-types/writepanels/writepanel-product_data.php:286 -msgid "Length" -msgstr "長さ" - -#: admin/post-types/product.php:602 admin/post-types/product.php:880 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:86 -#: admin/post-types/writepanels/writepanel-product_data.php:287 -#: admin/woocommerce-admin-settings.php:797 -msgid "Width" -msgstr "幅" - -#: admin/post-types/product.php:603 admin/post-types/product.php:881 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:87 -#: admin/post-types/writepanels/writepanel-product_data.php:288 -#: admin/woocommerce-admin-settings.php:799 -msgid "Height" -msgstr "高さ" - -#: admin/post-types/product.php:613 admin/post-types/product.php:887 -msgid "Visibility" -msgstr "確認" - -#: admin/post-types/product.php:618 admin/post-types/product.php:893 -msgid "Catalog & search" -msgstr "カタログ検索" - -#: admin/post-types/product.php:619 admin/post-types/product.php:894 -#: admin/post-types/writepanels/writepanel-product_data.php:1047 -#: admin/woocommerce-admin-content.php:46 -#: admin/woocommerce-admin-settings.php:183 -msgid "Catalog" -msgstr "カタログ" - -#: admin/post-types/product.php:620 admin/post-types/product.php:895 -#: admin/post-types/writepanels/writepanel-product_data.php:1048 -msgid "Search" -msgstr "検索" - -#: admin/post-types/product.php:621 admin/post-types/product.php:896 -#: admin/post-types/writepanels/writepanel-product_data.php:1049 -msgid "Hidden" -msgstr "不明" - -#: admin/post-types/product.php:636 admin/post-types/product.php:924 -msgid "In stock?" -msgstr "在庫あり?" - -#: admin/post-types/product.php:657 admin/post-types/product.php:942 -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Manage stock?" -msgstr "在庫を管理しますか?" - -#: admin/post-types/product.php:661 admin/post-types/product.php:961 -#: admin/post-types/product.php:977 -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "Stock Qty" -msgstr "在庫数量" - -#: admin/post-types/product.php:794 admin/post-types/product.php:818 -#: admin/post-types/product.php:844 admin/post-types/product.php:868 -#: admin/post-types/product.php:892 admin/post-types/product.php:911 -#: admin/post-types/product.php:929 admin/post-types/product.php:947 -#: admin/post-types/product.php:966 -msgid "? No Change ?" -msgstr "? 変更なし ?" - -#: admin/post-types/product.php:795 admin/post-types/product.php:819 -#: admin/post-types/product.php:845 admin/post-types/product.php:869 -#: admin/post-types/product.php:967 -msgid "Change to:" -msgstr "変更:" - -#: admin/post-types/product.php:796 admin/post-types/product.php:820 -msgid "Increase by (fixed amount or %):" -msgstr "増加(固定金額または%):" - -#: admin/post-types/product.php:797 admin/post-types/product.php:821 -msgid "Decrease by (fixed amount or %):" -msgstr "低減 (固定金額または%):" - -#: admin/post-types/product.php:807 admin/post-types/product.php:832 -msgid "Enter price" -msgstr "価格を入力" - -#: admin/post-types/product.php:822 -msgid "Decrease regular price by (fixed amount or %):" -msgstr "定価の低減 (固定金額または%):" - -#: admin/post-types/product.php:912 admin/post-types/product.php:948 -#: admin/post-types/shop_order.php:190 admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:286 -msgid "Yes" -msgstr "あり" - -#: admin/post-types/product.php:913 admin/post-types/product.php:949 -#: admin/post-types/shop_order.php:192 admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:286 -msgid "No" -msgstr "なし" - -#: admin/post-types/product.php:1183 -msgid "Sort Products" -msgstr "並べ替え商品" - -#: admin/post-types/product.php:1222 -msgid "Insert into product" -msgstr "商品へ挿入" - -#: admin/post-types/product.php:1223 -msgid "Uploaded to this product" -msgstr "この商品にアップロード" - -#: admin/post-types/shop_coupon.php:25 -msgid "Code" -msgstr "コード" - -#: admin/post-types/shop_coupon.php:26 -msgid "Coupon type" -msgstr "クーポンの種類" - -#: admin/post-types/shop_coupon.php:27 -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Coupon amount" -msgstr "クーポン金額" - -#: admin/post-types/shop_coupon.php:28 -msgid "Description" -msgstr "説明" - -#: admin/post-types/shop_coupon.php:29 -msgid "Product IDs" -msgstr "商品 ID" - -#: admin/post-types/shop_coupon.php:30 -msgid "Usage / Limit" -msgstr "使用/制限" - -#: admin/post-types/shop_coupon.php:31 -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "Expiry date" -msgstr "有効期限" - -#: admin/post-types/shop_coupon.php:56 -msgid "Edit coupon" -msgstr "クーポンを編集" - -#: admin/post-types/shop_coupon.php:114 -msgid "%s / %s" -msgstr "%s / %s" - -#: admin/post-types/shop_coupon.php:116 -msgid "%s / ∞" -msgstr "%s / ∞" - -#: admin/post-types/shop_order.php:282 -msgid "Show all statuses" -msgstr "すべてのステータスを表示" - -#: admin/post-types/shop_order.php:43 -#: admin/settings/settings-payment-gateways.php:29 -#: admin/settings/settings-shipping-methods.php:31 -msgid "Status" -msgstr "ステータス" - -#: admin/post-types/shop_order.php:44 -msgid "Order" -msgstr "注文" - -#: admin/post-types/shop_order.php:45 -msgid "Billing" -msgstr "請求先" - -#: admin/post-types/shop_order.php:46 -#: admin/post-types/writepanels/writepanel-order_data.php:539 -#: admin/post-types/writepanels/writepanel-product_data.php:81 -#: admin/settings/settings-tax-rates.php:52 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-content.php:49 -#: admin/woocommerce-admin-settings.php:187 -msgid "Shipping" -msgstr "配送料" - -#: admin/post-types/shop_order.php:47 -msgid "Order Total" -msgstr "注文合計" - -#: admin/post-types/shop_order.php:48 -#: admin/post-types/writepanels/writepanels-init.php:71 -msgid "Order Notes" -msgstr "備考欄" - -#: admin/post-types/shop_order.php:49 -msgid "Customer Notes" -msgstr "顧客メモ" - -#: admin/post-types/shop_order.php:51 -#: admin/post-types/writepanels/writepanel-order_data.php:386 -#: admin/post-types/writepanels/writepanel-order_data.php:433 -msgid "Actions" -msgstr "アクション" - -#: admin/post-types/shop_order.php:95 -#: admin/post-types/writepanels/writepanel-order_data.php:93 -msgid "Guest" -msgstr "ゲスト" - -#: admin/post-types/shop_order.php:98 -msgid "Order %s" -msgstr "注文 %s" - -#: admin/post-types/shop_order.php:98 -msgid "made by" -msgstr "注文者" - -#: admin/post-types/shop_order.php:101 -msgid "Email:" -msgstr "Eメール:" - -#: admin/post-types/shop_order.php:104 -msgid "Tel:" -msgstr "電話番号:" - -#: admin/post-types/shop_order.php:114 admin/post-types/shop_order.php:123 -msgid "Via" -msgstr "-" - -#: admin/post-types/shop_order.php:131 -msgid "Unpublished" -msgstr "未発表" - -#: admin/post-types/shop_order.php:133 -msgid "Y/m/d g:i:s A" -msgstr "Y年m月d日g時i分s秒 A" - -#: admin/post-types/shop_order.php:139 -msgid "%s ago" -msgstr "%s 前" - -#: admin/post-types/shop_order.php:141 -msgid "Y/m/d" -msgstr "Y年m月d日" - -#: admin/post-types/shop_order.php:158 -#: admin/woocommerce-admin-dashboard.php:176 -msgid "Processing" -msgstr "処理中" - -#: admin/post-types/shop_order.php:165 -msgid "Complete" -msgstr "完成" - -#: admin/post-types/shop_order.php:301 admin/post-types/shop_order.php:326 -msgid "Show all customers" -msgstr "すべての顧客を表示" - -#: admin/post-types/writepanels/order-download-permission-html.php:6 -msgid "Revoke Access" -msgstr "アクセス権を取り消す" - -#: admin/post-types/writepanels/order-download-permission-html.php:7 -#: admin/post-types/writepanels/variation-admin-html.php:7 -#: admin/post-types/writepanels/writepanel-product_data.php:369 -#: admin/post-types/writepanels/writepanel-product_data.php:463 -#: admin/woocommerce-admin-init.php:439 -msgid "Click to toggle" -msgstr "クリックで切替" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -msgid "File %d: %s" -msgstr "ファイル %d: %s" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "ダウンロード %s 回" - -#: admin/post-types/writepanels/order-download-permission-html.php:16 -msgid "Downloads Remaining" -msgstr "残りのダウンロー" - -#: admin/post-types/writepanels/order-download-permission-html.php:19 -#: admin/post-types/writepanels/variation-admin-html.php:149 -#: admin/post-types/writepanels/variation-admin-html.php:157 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Unlimited" -msgstr "無制限" - -#: admin/post-types/writepanels/order-download-permission-html.php:22 -msgid "Access Expires" -msgstr "アクセス有効期限" - -#: admin/post-types/writepanels/order-download-permission-html.php:23 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Never" -msgstr "何時でも" - -#: admin/post-types/writepanels/order-fee-html.php:10 -msgid "Fee Name" -msgstr "料金名" - -#: admin/post-types/writepanels/order-fee-html.php:17 -#: admin/post-types/writepanels/order-item-html.php:89 -msgid "Tax class" -msgstr "税区分" - -#: admin/post-types/writepanels/order-fee-html.php:19 -#: admin/post-types/writepanels/order-tax-html.php:8 -#: admin/post-types/writepanels/writepanel-order_data.php:561 -#: admin/post-types/writepanels/writepanel-order_data.php:666 -#: admin/woocommerce-admin-reports.php:1658 -#: admin/woocommerce-admin-reports.php:2671 -#: admin/woocommerce-admin-reports.php:2680 -#: admin/woocommerce-admin-users.php:90 admin/woocommerce-admin-users.php:112 -msgid "N/A" -msgstr "" - -#: admin/post-types/writepanels/order-fee-html.php:20 -#: admin/post-types/writepanels/writepanel-product_data.php:179 -msgid "Taxable" -msgstr "課税" - -#: admin/post-types/writepanels/order-fee-html.php:25 -#: admin/post-types/writepanels/order-item-html.php:96 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:54 -#: admin/post-types/writepanels/writepanel-product_data.php:186 -#: admin/settings/settings-init.php:972 -#: admin/settings/settings-tax-rates.php:29 -#: admin/woocommerce-admin-settings.php:228 -msgid "Standard" -msgstr "標準" - -#: admin/post-types/writepanels/order-fee-html.php:43 -#: admin/post-types/writepanels/order-item-html.php:115 -#: admin/woocommerce-admin-reports.php:1562 -#: admin/woocommerce-admin-reports.php:1615 -#: admin/woocommerce-admin-reports.php:2386 -#: admin/woocommerce-admin-reports.php:2555 -#: admin/woocommerce-admin-reports.php:2633 -msgid "Total" -msgstr "合計" - -#: admin/post-types/writepanels/order-item-html.php:10 -msgid "Product ID:" -msgstr "商品 ID:" - -#: admin/post-types/writepanels/order-item-html.php:13 -msgid "Variation ID:" -msgstr "バリエーション ID:" - -#: admin/post-types/writepanels/order-item-html.php:16 -msgid "Product SKU:" -msgstr "商品 SKU:" - -#: admin/post-types/writepanels/order-item-html.php:44 -msgid "Add meta" -msgstr "meta を追加" - -#: admin/post-types/writepanels/order-item-html.php:117 -msgid "Subtotal" -msgstr "小計" - -#: admin/post-types/writepanels/order-tax-html.php:6 -msgid "Tax Rate:" -msgstr "税率:" - -#: admin/post-types/writepanels/order-tax-html.php:16 -#: admin/post-types/writepanels/writepanel-order_data.php:630 -msgid "Sales Tax:" -msgstr "売上税:" - -#: admin/post-types/writepanels/order-tax-html.php:20 -#: admin/post-types/writepanels/writepanel-order_data.php:638 -msgid "Shipping Tax:" -msgstr "配送税:" - -#: admin/post-types/writepanels/variation-admin-html.php:6 -#: admin/post-types/writepanels/writepanel-product_data.php:368 -#: admin/post-types/writepanels/writepanel-product_data.php:462 -#: admin/woocommerce-admin-init.php:438 -msgid "Remove" -msgstr "削除" - -#: admin/post-types/writepanels/variation-admin-html.php:20 -msgid "Any" -msgstr "任意" - -#: admin/post-types/writepanels/variation-admin-html.php:52 -msgid "" -"Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "" -"このバリエーションのSKUを入力して下さい。または、親商品のSKUを使用するには、" -"空白のままにしておきます。" - -#: admin/post-types/writepanels/variation-admin-html.php:63 -msgid "Stock Qty:" -msgstr "在庫数量:" - -#: admin/post-types/writepanels/variation-admin-html.php:63 -msgid "" -"Enter a quantity to enable stock management at variation level, or leave " -"blank to use the parent product's options." -msgstr "" -"変動レベルで在庫管理を有効にするために、量を入力してください。または、親商品" -"のオプションを使用する場合は空欄のままにしてして下さい。" - -#: admin/post-types/writepanels/variation-admin-html.php:72 -msgid "Regular Price:" -msgstr "定価:" - -#: admin/post-types/writepanels/variation-admin-html.php:73 -msgid "Variation price (required)" -msgstr "変動価格(必須)" - -#: admin/post-types/writepanels/variation-admin-html.php:76 -msgid "Sale Price:" -msgstr "セール価格 :" - -#: admin/post-types/writepanels/variation-admin-html.php:76 -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Schedule" -msgstr "スケジュール" - -#: admin/post-types/writepanels/variation-admin-html.php:76 -msgid "Cancel schedule" -msgstr "スケジュールのキャンセル" - -#: admin/post-types/writepanels/variation-admin-html.php:83 -msgid "Sale start date:" -msgstr "セール開始日:" - -#: admin/post-types/writepanels/variation-admin-html.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:136 -msgctxt "placeholder" -msgid "From…" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:87 -msgid "Sale end date:" -msgstr "販売終了日:" - -#: admin/post-types/writepanels/variation-admin-html.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:137 -msgctxt "placeholder" -msgid "To…" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:96 -msgid "" -"Enter a weight for this variation or leave blank to use the parent product " -"weight." -msgstr "" -"このバリエーションの重量を入力して下さい。または、親商品の重量を使用するに" -"は、空白のままにしておきます。" - -#: admin/post-types/writepanels/variation-admin-html.php:104 -msgid "Dimensions (L×W×H)" -msgstr "寸法 (長さ×幅×高さ)" - -#: admin/post-types/writepanels/variation-admin-html.php:115 -msgid "Shipping class:" -msgstr "配送クラス :" - -#: admin/post-types/writepanels/variation-admin-html.php:119 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:53 -msgid "Same as parent" -msgstr "フォルダと同じ" - -#: admin/post-types/writepanels/variation-admin-html.php:130 -msgid "Tax class:" -msgstr "税区分 :" - -#: admin/post-types/writepanels/variation-admin-html.php:141 -msgid "File paths:" -msgstr "ファイルパス:" - -#: admin/post-types/writepanels/variation-admin-html.php:141 -msgid "" -"Enter one or more File Paths, one per line, to make this variation a " -"downloadable product, or leave blank." -msgstr "" -"このダウンロード製品のバリエーションをつくるにはファイルパスを1行に1つずつ入" -"力します。" - -#: admin/post-types/writepanels/variation-admin-html.php:142 -#: admin/post-types/writepanels/writepanel-product_data.php:153 -msgid "File paths/URLs, one per line" -msgstr "ファイルパス/ URLは、1行に1つずつ" - -#: admin/post-types/writepanels/variation-admin-html.php:143 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Choose a file" -msgstr "ファイルを選択してください" - -#: admin/post-types/writepanels/variation-admin-html.php:143 -msgid "Upload" -msgstr "アップロード" - -#: admin/post-types/writepanels/variation-admin-html.php:143 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Insert file URL" -msgstr "ファイルのURLを挿入" - -#: admin/post-types/writepanels/variation-admin-html.php:148 -msgid "Download Limit:" -msgstr "ダウンロード制限 :" - -#: admin/post-types/writepanels/variation-admin-html.php:148 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Leave blank for unlimited re-downloads." -msgstr "再ダウンロード無制限の為、空欄にしておく" - -#: admin/post-types/writepanels/variation-admin-html.php:156 -msgid "Download Expiry:" -msgstr "ダウンロード有効期限:" - -#: admin/post-types/writepanels/variation-admin-html.php:156 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "" -"Enter the number of days before a download link expires, or leave blank." -msgstr "ダウンロードリンクの有効期限日数を入力するか、空白のままにします。" - -#: admin/post-types/writepanels/variation-admin-html.php:170 -msgid "Enabled" -msgstr "使用可能" - -#: admin/post-types/writepanels/variation-admin-html.php:172 -msgid "" -"Enable this option if access is given to a downloadable file upon purchase " -"of a product" -msgstr "ダウンロード可能なファイルにした場合、このオプションを有効にします" - -#: admin/post-types/writepanels/variation-admin-html.php:174 -msgid "" -"Enable this option if a product is not shipped or there is no shipping cost" -msgstr "" -"製品が出荷されていない場合、運送費が掛らない場合、このオプションを有効にしま" -"す。" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Coupon description" -msgstr "クーポのン説明" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Optionally enter a description for this coupon for your reference." -msgstr "参考にこのクーポンのために説明を入力してください(任意)。" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:42 -msgid "Discount type" -msgstr "割引の種類" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "Enable free shipping" -msgstr "送料無料を有効にする" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "" -"Check this box if the coupon grants free shipping. The free " -"shipping method must be enabled with the \"must use coupon\" setting " -"checked." -msgstr "" -"クーポンに送料無料を付与する場合は、このチェックボックスをオンにします。送料無料(free shipping method)には、\"クーポンを使用する必要" -"がある\" の設定がチェックされ、有効になっている必要があります。" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "Individual use" -msgstr "個人用" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "" -"Check this box if the coupon cannot be used in conjunction with other " -"coupons." -msgstr "" -"クーポンが他のクーポンとの併用ができない場合は、このチェックボックスをオンに" -"します。" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "Apply before tax" -msgstr "税込" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "" -"Check this box if the coupon should be applied before calculating cart tax." -msgstr "" -"クーポンがカート税を計算する前に適用する必要がある場合は、このチェックボック" -"スをオンにします。" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "Exclude sale items" -msgstr "セール品を除外する" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "" -"Check this box if the coupon should not apply to items on sale. Per-item " -"coupons will only work if the item is not on sale. Per-cart coupons will " -"only work if there are no sale items in the cart." -msgstr "" -"クーポンがセール商品に適用すべきでない場合は、このチェックボックスをオンにし" -"ます。セール商品がカートの中に無い場合、カートにクーポンが機能します。 " - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "Minimum amount" -msgstr "最小限度額" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "No minimum" -msgstr "最小限度額なし" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "" -"This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "" -"このフィールドでは、クーポンを使用するために必要な最小限度額を設定することが" -"できます。" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:74 -#: admin/woocommerce-admin-taxonomies.php:28 -#: admin/woocommerce-admin-taxonomies.php:122 -msgid "Products" -msgstr "商品" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:75 -#: admin/post-types/writepanels/writepanel-order_data.php:400 -#: admin/post-types/writepanels/writepanel-product_data.php:523 -#: admin/post-types/writepanels/writepanel-product_data.php:540 -#: admin/woocommerce-admin-reports.php:1245 -msgid "Search for a product…" -msgstr "商品検索…" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:89 -msgid "" -"Products which need to be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are discounted." -msgstr "「商品割引」でクーポンを使うためには、カートの中にある必要がある商品" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:94 -msgid "Exclude products" -msgstr "商品を除外" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:95 -msgid "Search for a product…" -msgstr "商品を検索…" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:109 -msgid "" -"Products which must not be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are not discounted." -msgstr "「商品割引」でクーポンを使うためには、カートの外にある必要がある商品" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:116 -msgid "Product categories" -msgstr "商品カテゴリ" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:117 -msgid "Any category" -msgstr "任意のカテゴリー" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:125 -msgid "" -"A product must be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will be discounted." -msgstr "このカテゴリーでクーポンが有効" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:130 -msgid "Exclude categories" -msgstr "カテゴリを除外" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:131 -msgid "No categories" -msgstr "カテゴリーなし" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:139 -msgid "" -"Product must not be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will not be discounted." -msgstr "このカテゴリーでクーポンが無効" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "Usage limit" -msgstr "使用制限" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "無制限の使用" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "How many times this coupon can be used before it is void." -msgstr "このクーポンが何度使用できるか。" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgctxt "placeholder" -msgid "Never expire" -msgstr "有効期限はありません" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "The date this coupon will expire, YYYY-MM-DD." -msgstr "クーポンの使用期間 YYYY-MM-DD" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:195 -msgid "" -"Coupon code already exists - customers will use the latest coupon with this " -"code." -msgstr "" -"クーポンコードは既に存在します - お客様は、このコードを使用して最新のクーポン" -"を使用します。" - -#: admin/post-types/writepanels/writepanel-order_data.php:59 -msgid "Order Details" -msgstr "注文の詳細" - -#: admin/post-types/writepanels/writepanel-order_data.php:62 -msgid "Order number" -msgstr "注文番号" - -#: admin/post-types/writepanels/writepanel-order_data.php:67 -msgid "Customer IP:" -msgstr "お客様 IP:" - -#: admin/post-types/writepanels/writepanel-order_data.php:74 -msgid "General Details" -msgstr "一般詳細" - -#: admin/post-types/writepanels/writepanel-order_data.php:76 -msgid "Order status:" -msgstr "注文状況:" - -#: admin/post-types/writepanels/writepanel-order_data.php:86 -msgid "Order Date:" -msgstr "発注日:" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -msgid "h" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#: admin/settings/settings-init.php:567 -msgid "m" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:91 -msgid "Customer:" -msgstr "顧客:" - -#: admin/post-types/writepanels/writepanel-order_data.php:131 -msgid "Customer Note:" -msgstr "メモ:" - -#: admin/post-types/writepanels/writepanel-order_data.php:132 -msgid "Customer's notes about the order" -msgstr "注文に関するメモ" - -#: admin/post-types/writepanels/writepanel-order_data.php:140 -msgid "Billing Details" -msgstr "支払明細" - -#: admin/post-types/writepanels/writepanel-order_data.php:144 -#: admin/post-types/writepanels/writepanel-order_data.php:234 -msgid "First Name" -msgstr "姓" - -#: admin/post-types/writepanels/writepanel-order_data.php:148 -#: admin/post-types/writepanels/writepanel-order_data.php:238 -msgid "Last Name" -msgstr "名" - -#: admin/post-types/writepanels/writepanel-order_data.php:152 -#: admin/post-types/writepanels/writepanel-order_data.php:242 -#: admin/woocommerce-admin-users.php:155 admin/woocommerce-admin-users.php:204 -msgid "Company" -msgstr "勤め先" - -#: admin/post-types/writepanels/writepanel-order_data.php:156 -#: admin/post-types/writepanels/writepanel-order_data.php:246 -#: admin/woocommerce-admin-users.php:159 admin/woocommerce-admin-users.php:208 -msgid "Address 1" -msgstr "住所 1(丁目、番地、号)" - -#: admin/post-types/writepanels/writepanel-order_data.php:160 -#: admin/post-types/writepanels/writepanel-order_data.php:250 -#: admin/woocommerce-admin-users.php:163 admin/woocommerce-admin-users.php:212 -msgid "Address 2" -msgstr "住所 2(建物名,部屋番号など)" - -#: admin/post-types/writepanels/writepanel-order_data.php:164 -#: admin/post-types/writepanels/writepanel-order_data.php:254 -#: admin/settings/settings-tax-rates.php:42 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-users.php:167 admin/woocommerce-admin-users.php:216 -msgid "City" -msgstr "市/町" - -#: admin/post-types/writepanels/writepanel-order_data.php:168 -#: admin/post-types/writepanels/writepanel-order_data.php:258 -#: admin/woocommerce-admin-users.php:171 admin/woocommerce-admin-users.php:220 -msgid "Postcode" -msgstr "郵便番号" - -#: admin/post-types/writepanels/writepanel-order_data.php:172 -#: admin/post-types/writepanels/writepanel-order_data.php:262 -#: admin/woocommerce-admin-users.php:179 admin/woocommerce-admin-users.php:228 -msgid "Country" -msgstr "国" - -#: admin/post-types/writepanels/writepanel-order_data.php:175 -#: admin/post-types/writepanels/writepanel-order_data.php:265 -msgid "Select a country…" -msgstr "国を選択…" - -#: admin/post-types/writepanels/writepanel-order_data.php:178 -#: admin/post-types/writepanels/writepanel-order_data.php:268 -#: admin/woocommerce-admin-users.php:175 admin/woocommerce-admin-users.php:224 -msgid "State/County" -msgstr "都道府県" - -#: admin/post-types/writepanels/writepanel-order_data.php:182 -#: admin/woocommerce-admin-users.php:187 -msgid "Email" -msgstr "Eメール" - -#: admin/post-types/writepanels/writepanel-order_data.php:185 -msgid "Phone" -msgstr "電話番号" - -#: admin/post-types/writepanels/writepanel-order_data.php:193 -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#: admin/post-types/writepanels/writepanel-order_data.php:277 -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "Address" -msgstr "" -"丁目,番地,号(上段:必須*) / 建物" -"名,部屋番号など(下段:オプション)" - -#: admin/post-types/writepanels/writepanel-order_data.php:195 -msgid "No billing address set." -msgstr "お客様情報が設定されていません" - -#: admin/post-types/writepanels/writepanel-order_data.php:208 -msgid "Load billing address" -msgstr "お客様情報を呼び込む" - -#: admin/post-types/writepanels/writepanel-order_data.php:230 -msgid "Shipping Details" -msgstr "出荷明細" - -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "No shipping address set." -msgstr "配送先住所が設定されていません" - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Load shipping address" -msgstr "配送先住所を呼び込む" - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Copy from billing" -msgstr "請求先からコピー" - -#: admin/post-types/writepanels/writepanel-order_data.php:339 -msgid "Item" -msgstr "アイテム" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#: admin/post-types/writepanels/writepanel-product_data.php:191 -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Class" -msgstr "税区分" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -msgid "Tax class for the line item" -msgstr "税区分のための項目" - -#: admin/post-types/writepanels/writepanel-order_data.php:347 -msgid "Qty" -msgstr "数量" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -msgid "Line subtotals are before pre-tax discounts, totals are after." -msgstr "小計行は、(税引き前の)割引の前にあります。合計は後です。" - -#: admin/post-types/writepanels/writepanel-order_data.php:352 -#: admin/settings/settings-tax-rates.php:387 -#: admin/settings/settings-tax-rates.php:475 -#: admin/woocommerce-admin-content.php:48 -#: admin/woocommerce-admin-settings.php:186 -msgid "Tax" -msgstr "税" - -#: admin/post-types/writepanels/writepanel-order_data.php:388 -msgid "Delete Lines" -msgstr "行を削除する" - -#: admin/post-types/writepanels/writepanel-order_data.php:390 -msgid "Stock Actions" -msgstr "在庫アクション" - -#: admin/post-types/writepanels/writepanel-order_data.php:391 -msgid "Reduce Line Stock" -msgstr "在庫行を削減" - -#: admin/post-types/writepanels/writepanel-order_data.php:392 -msgid "Increase Line Stock" -msgstr "在庫行を増やす" - -#: admin/post-types/writepanels/writepanel-order_data.php:396 -#: admin/post-types/writepanels/writepanel-order_data.php:456 -msgid "Apply" -msgstr "適用" - -#: admin/post-types/writepanels/writepanel-order_data.php:402 -msgid "Add item(s)" -msgstr "追加アイテム" - -#: admin/post-types/writepanels/writepanel-order_data.php:403 -msgid "Add fee" -msgstr "手数料を追加" - -#: admin/post-types/writepanels/writepanel-order_data.php:434 -msgid "Resend order emails" -msgstr "注文メールを再送する" - -#: admin/post-types/writepanels/writepanel-order_data.php:465 -msgid "Move to Trash" -msgstr "ゴミ箱に移動" - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save Order" -msgstr "上書き保存" - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save/update the order" -msgstr "保存/注文を更新" - -#: admin/post-types/writepanels/writepanel-order_data.php:498 -msgid "Discounts" -msgstr "割引" - -#: admin/post-types/writepanels/writepanel-order_data.php:502 -msgid "Cart Discount:" -msgstr "カートでの割引:" - -#: admin/post-types/writepanels/writepanel-order_data.php:502 -msgid "Discounts before tax - calculated by comparing subtotals to totals." -msgstr "税引前の割引 ― 小計を合計と比較することにより計算される" - -#: admin/post-types/writepanels/writepanel-order_data.php:510 -msgid "Order Discount:" -msgstr "注文の割引:" - -#: admin/post-types/writepanels/writepanel-order_data.php:510 -msgid "Discounts after tax - user defined." -msgstr "税引後の割引 - ユーザーが定義されている" - -#: admin/post-types/writepanels/writepanel-order_data.php:543 -msgid "Label:" -msgstr "ラベル:" - -#: admin/post-types/writepanels/writepanel-order_data.php:544 -msgid "The shipping title the customer sees" -msgstr "顧客が見る輸送タイトル" - -#: admin/post-types/writepanels/writepanel-order_data.php:551 -msgid "Cost:" -msgstr "金額:" - -#: admin/post-types/writepanels/writepanel-order_data.php:552 -msgid "(ex. tax)" -msgstr "(例:税)" - -#: admin/post-types/writepanels/writepanel-order_data.php:559 -msgid "Method:" -msgstr "方法:" - -#: admin/post-types/writepanels/writepanel-order_data.php:581 -#: admin/post-types/writepanels/writepanel-order_data.php:583 -#: admin/post-types/writepanels/writepanel-order_data.php:682 -#: admin/post-types/writepanels/writepanel-order_data.php:684 -msgid "Other" -msgstr "その他" - -#: admin/post-types/writepanels/writepanel-order_data.php:597 -msgid "Tax Rows" -msgstr "税区分" - -#: admin/post-types/writepanels/writepanel-order_data.php:622 -msgid "+ Add tax row" -msgstr "+ 税を追加" - -#: admin/post-types/writepanels/writepanel-order_data.php:622 -msgid "" -"These rows contain taxes for this order. This allows you to display multiple " -"or compound taxes rather than a single total." -msgstr "" -"この欄には、注文に対する税金が含まれています。これらを「複数の税」もしくは" -"「単一の複合税」として表示させます。" - -#: admin/post-types/writepanels/writepanel-order_data.php:626 -msgid "Tax Totals" -msgstr "税の合計" - -#: admin/post-types/writepanels/writepanel-order_data.php:630 -msgid "Total tax for line items + fees." -msgstr "明細の合計税額 + 手数料" - -#: admin/post-types/writepanels/writepanel-order_data.php:652 -#: admin/post-types/writepanels/writepanels-init.php:70 -msgid "Order Totals" -msgstr "注文総数" - -#: admin/post-types/writepanels/writepanel-order_data.php:656 -msgid "Order Total:" -msgstr "注文合計:" - -#: admin/post-types/writepanels/writepanel-order_data.php:664 -msgid "Payment Method:" -msgstr "お支払方法:" - -#: admin/post-types/writepanels/writepanel-order_data.php:695 -msgid "Calc taxes" -msgstr "税の計算" - -#: admin/post-types/writepanels/writepanel-order_data.php:697 -msgid "Calc totals" -msgstr "税合計の計算" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:57 -msgid "Choose a downloadable product…" -msgstr "ダウンロード可能な製品を選択してください…" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:87 -msgid "Grant Access" -msgstr "アクセスを許可" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:125 -msgid "" -"Could not grant access - the user may already have permission for this file " -"or billing email is not set. Ensure the billing email is set, and the order " -"has been saved." -msgstr "" -"アクセスを与えることができませんでした。- ユーザーにはこのファイルの許可が既" -"に持っているか、請求メールがセットされていません。請求メールがセットされオー" -"ダーが保存されたことを確認して下さい。" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:148 -msgid "Are you sure you want to revoke access to this download?" -msgstr "このダウンロードへのアクセスを取り消すしてもよろしいですか?" - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -msgid "added %s ago" -msgstr "%s 前に追加" - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -msgid "Delete note" -msgstr "メモを削除" - -#: admin/post-types/writepanels/writepanel-order_notes.php:50 -msgid "There are no notes for this order yet." -msgstr "この注文にはまだメモはありません" - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "Add note" -msgstr "メモを追加" - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "" -"Add a note for your reference, or add a customer note (the user will be " -"notified)." -msgstr "" -"参考のためにメモを追加:または顧客用メモ(ユーザーに通知されます)を追加しま" -"す。" - -#: admin/post-types/writepanels/writepanel-order_notes.php:62 -msgid "Customer note" -msgstr "顧客メモ" - -#: admin/post-types/writepanels/writepanel-order_notes.php:63 -msgid "Private note" -msgstr "プライベートメモ" - -#: admin/post-types/writepanels/writepanel-order_notes.php:65 -#: admin/post-types/writepanels/writepanel-product_data.php:501 -msgid "Add" -msgstr "追加" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations for variable products are defined here." -msgstr "変額商品のバリエーションはここで定義されます。" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations" -msgstr "バリエーション" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:65 -msgid "" -"Before adding variations, add and save some attributes on the " -"Attributes tab." -msgstr "" -"バリエーションを加える前に、属性タブに幾つかの属性を追加して" -"保存します。" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:67 -msgid "Learn more" -msgstr "詳細はこちら" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Close all" -msgstr "全て閉じる" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Expand all" -msgstr "全て展開" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:75 -msgid "Bulk edit:" -msgstr "一括編集" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:77 -msgid "Toggle "Enabled"" -msgstr ""有効"に切り替える" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:78 -msgid "Toggle "Downloadable"" -msgstr ""ダウンロード"に切り替える" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:79 -msgid "Toggle "Virtual"" -msgstr ""バーチャル"に切り替える" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:80 -msgid "Delete all variations" -msgstr "すべてのバリエーションを削除" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:81 -msgid "Prices" -msgstr "価格" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:82 -msgid "Sale prices" -msgstr "セール価格" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:88 -msgid "File Path" -msgstr "ファイルパス" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:89 -msgid "Download limit" -msgstr "ダウンロード制限" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:90 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Download Expiry" -msgstr "ダウンロード有効期限" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:93 -msgid "Go" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:193 -msgid "Add Variation" -msgstr "バリエーションを追加" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:195 -msgid "Link all variations" -msgstr "全てのバリエーションをリンク" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:197 -msgid "Default selections:" -msgstr "デフォルトの選択 :" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:210 -msgid "No default" -msgstr "デフォルトなし" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:299 -msgid "" -"Are you sure you want to link all variations? This will create a new " -"variation for each and every possible combination of variation attributes " -"(max 50 per run)." -msgstr "" -"全てのバリエーションをリンクさせますか? ここではは、各バリエーション属性を" -"組合せて、新しいバリエーションを作成します(1つに最大50)。" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:316 -msgid "variation added" -msgstr "バリエーションが追加されました" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:318 -msgid "variations added" -msgstr "バリエーションが追加されました" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:320 -msgid "No variations added" -msgstr "バリエーションは追加されませんでした" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:343 -msgid "Are you sure you want to remove this variation?" -msgstr "このバリエーションを削除してもよろしいですか?" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:399 -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "" -"全てのバリエーションを削除してもよろしいですか? 削除すると元には戻せません。" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:402 -msgid "Last warning, are you sure?" -msgstr "最後の警告です。よろしいですか?" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:439 -msgid "Enter a value" -msgstr "値を入力してください" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:517 -#: admin/woocommerce-admin-taxonomies.php:62 -#: admin/woocommerce-admin-taxonomies.php:154 -msgid "Choose an image" -msgstr "画像を選択してください" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:519 -msgid "Set variation image" -msgstr "バリエーション画像を設定" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:563 -msgid "Variable product" -msgstr "変動する商品" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:629 -msgid "Variation #%s of %s" -msgstr "%s のバリエーションは #%s" - -#: admin/post-types/writepanels/writepanel-product_data.php:43 -msgid "Product Type" -msgstr "商品タイプ" - -#: admin/post-types/writepanels/writepanel-product_data.php:53 -msgid "Virtual products are intangible and aren't shipped." -msgstr "バーチャル商品は無形のため、出荷されません" - -#: admin/post-types/writepanels/writepanel-product_data.php:59 -msgid "Downloadable products give access to a file upon purchase." -msgstr "ダウンロード可能商品は、購入時にファイルへのアクセス権を与える" - -#: admin/post-types/writepanels/writepanel-product_data.php:77 -#: admin/woocommerce-admin-content.php:44 -#: admin/woocommerce-admin-settings.php:182 -msgid "General" -msgstr "一般" - -#: admin/post-types/writepanels/writepanel-product_data.php:79 -#: admin/woocommerce-admin-content.php:47 -#: admin/woocommerce-admin-settings.php:185 -msgid "Inventory" -msgstr "在庫" - -#: admin/post-types/writepanels/writepanel-product_data.php:83 -msgid "Linked Products" -msgstr "リンクされている商品" - -#: admin/post-types/writepanels/writepanel-product_data.php:85 -#: admin/woocommerce-admin-attributes.php:299 -#: admin/woocommerce-admin-init.php:66 -msgid "Attributes" -msgstr "属性" - -#: admin/post-types/writepanels/writepanel-product_data.php:87 -msgid "Advanced" -msgstr "高度" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "Stock Keeping Unit" -msgstr "在庫管理単位" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "" -"SKU refers to a Stock-keeping unit, a unique identifier for each distinct " -"product and service that can be purchased." -msgstr "" -"SKUは在庫保管単位を指し、固有識別子により、それぞれ個別の商品やサービスを購入" -"することができます。" - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Product URL" -msgstr "商品 URL" - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Enter the external URL to the product." -msgstr "商品の外部URLを入力" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "Button text" -msgstr "ボタンテキスト" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgctxt "placeholder" -msgid "Buy product" -msgstr "商品購入" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "This text will be shown on the button linking to the external product." -msgstr "このテキストは外部商品のリンクボタンに表示されます" - -#: admin/post-types/writepanels/writepanel-product_data.php:119 -msgid "Regular Price" -msgstr "定価" - -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Sale Price" -msgstr "セール価格" - -#: admin/post-types/writepanels/writepanel-product_data.php:135 -msgid "Sale Price Dates" -msgstr "セール期間" - -#: admin/post-types/writepanels/writepanel-product_data.php:138 -#: admin/post-types/writepanels/writepanel-product_data.php:1082 -msgid "Cancel" -msgstr "キャンセル" - -#: admin/post-types/writepanels/writepanel-product_data.php:152 -msgid "File paths (one per line)" -msgstr "ファイルパス(1行に1つずつ)" - -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Download Limit" -msgstr "ダウンロード制限" - -#: admin/post-types/writepanels/writepanel-product_data.php:178 -msgid "Tax Status" -msgstr "税ステータス" - -#: admin/post-types/writepanels/writepanel-product_data.php:180 -msgid "Shipping only" -msgstr "送料のみ" - -#: admin/post-types/writepanels/writepanel-product_data.php:181 -msgid "None" -msgstr "なし" - -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Enable stock management at product level" -msgstr "商品レベルでの在庫管理を有効にする" - -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "" -"Stock quantity. If this is a variable product this value will be used to " -"control stock for all variations, unless you define stock at variation level." -msgstr "" -"在庫数:これが変数商品ならば、在庫数を定義しない限り、この値が全バリエーショ" -"ンの在庫制御に使用されます" - -#: admin/post-types/writepanels/writepanel-product_data.php:230 -msgid "Stock status" -msgstr "在庫状況" - -#: admin/post-types/writepanels/writepanel-product_data.php:233 -msgid "" -"Controls whether or not the product is listed as \"in stock\" or \"out of " -"stock\" on the frontend." -msgstr "" -"「在庫あり」か「在庫切れ」をリストするかどうかを、フロントエンド上で制御しま" -"す。" - -#: admin/post-types/writepanels/writepanel-product_data.php:240 -msgid "Allow Backorders?" -msgstr "取り寄せの注文(予約注文など)を受け付けますか?" - -#: admin/post-types/writepanels/writepanel-product_data.php:241 -msgid "Do not allow" -msgstr "許可しない" - -#: admin/post-types/writepanels/writepanel-product_data.php:242 -msgid "Allow, but notify customer" -msgstr "許可し、顧客に通知する" - -#: admin/post-types/writepanels/writepanel-product_data.php:243 -msgid "Allow" -msgstr "許可する" - -#: admin/post-types/writepanels/writepanel-product_data.php:244 -msgid "" -"If managing stock, this controls whether or not backorders are allowed for " -"this product and variations. If enabled, stock quantity can go below 0." -msgstr "" -"在庫管理する場合は、予約注文を許可するかどうかの指定をします。有効にした場" -"合、在庫数の0以下が可能となります。" - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "Sold Individually" -msgstr "単品" - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "" -"Enable this to only allow one of this item to be bought in a single order" -msgstr "1回の注文に対して1つしか購入できないようする場合これを選んで下さい。" - -#: admin/post-types/writepanels/writepanel-product_data.php:273 -msgid "Weight in decimal form" -msgstr "10進表記の重量" - -#: admin/post-types/writepanels/writepanel-product_data.php:284 -msgid "Dimensions" -msgstr "大きさ" - -#: admin/post-types/writepanels/writepanel-product_data.php:290 -msgid "LxWxH in decimal form" -msgstr "10進表記の長さx幅x高さ" - -#: admin/post-types/writepanels/writepanel-product_data.php:311 -msgid "No shipping class" -msgstr "送料区分は無し" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "Shipping class" -msgstr "送料区分" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "" -"Shipping classes are used by certain shipping methods to group similar " -"products." -msgstr "送料区分は、類似した製品グループに特定の配送方法を使用します" - -#: admin/post-types/writepanels/writepanel-product_data.php:384 -#: admin/post-types/writepanels/writepanel-product_data.php:476 -#: admin/woocommerce-admin-init.php:440 -msgid "Value(s)" -msgstr "値(s)" - -#: admin/post-types/writepanels/writepanel-product_data.php:386 -msgid "Select terms" -msgstr "用語を選" - -#: admin/post-types/writepanels/writepanel-product_data.php:398 -msgid "Select all" -msgstr "全てを選択" - -#: admin/post-types/writepanels/writepanel-product_data.php:398 -msgid "Select none" -msgstr "選択しない" - -#: admin/post-types/writepanels/writepanel-product_data.php:400 -msgid "Add new" -msgstr "新しく追加" - -#: admin/post-types/writepanels/writepanel-product_data.php:427 -#: admin/post-types/writepanels/writepanel-product_data.php:482 -#: admin/woocommerce-admin-init.php:442 -msgid "Visible on the product page" -msgstr "商品ページ上に表示される" - -#: admin/post-types/writepanels/writepanel-product_data.php:440 -#: admin/post-types/writepanels/writepanel-product_data.php:488 -#: admin/woocommerce-admin-init.php:443 -msgid "Used for variations" -msgstr "バリエーションのために使用" - -#: admin/post-types/writepanels/writepanel-product_data.php:477 -#: admin/woocommerce-admin-init.php:441 -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "" -"テキストを入力してください。いくつか属性がある場合は、( | )で区切って下さ" -"い。" - -#: admin/post-types/writepanels/writepanel-product_data.php:503 -msgid "Custom product attribute" -msgstr "カスタム商品属性" - -#: admin/post-types/writepanels/writepanel-product_data.php:515 -msgid "Save attributes" -msgstr "属性を保存" - -#: admin/post-types/writepanels/writepanel-product_data.php:522 -msgid "Up-Sells" -msgstr "アップセル" - -#: admin/post-types/writepanels/writepanel-product_data.php:537 -msgid "" -"Up-sells are products which you recommend instead of the currently viewed " -"product, for example, products that are more profitable or better quality or " -"more expensive." -msgstr "" -"アップセルとは現在閲覧している商品より高位商品をあなたの代わりに薦めることで" -"す。例えば、「高収益性」「高品質」「高額商品」など。" - -#: admin/post-types/writepanels/writepanel-product_data.php:539 -msgid "Cross-Sells" -msgstr "クロスセル" - -#: admin/post-types/writepanels/writepanel-product_data.php:554 -msgid "" -"Cross-sells are products which you promote in the cart, based on the current " -"product." -msgstr "" -"クロスセルとは現在の製品に基づいて、提携販売,抱き合わせ販売,併売,販売相互" -"利用等を売り込むことをいいます。" - -#: admin/post-types/writepanels/writepanel-product_data.php:564 -msgid "Choose a grouped product…" -msgstr "グループ化された商品を選んで下さい…" - -#: admin/post-types/writepanels/writepanel-product_data.php:590 -msgid "Grouping" -msgstr "グループ分け" - -#: admin/post-types/writepanels/writepanel-product_data.php:590 -msgid "Set this option to make this product part of a grouped product." -msgstr "グループ商品を作るために、このオプションを設定します。" - -#: admin/post-types/writepanels/writepanel-product_data.php:610 -msgid "Purchase Note" -msgstr "注意事項" - -#: admin/post-types/writepanels/writepanel-product_data.php:610 -msgid "Enter an optional note to send the customer after purchase." -msgstr "購入後、顧客に送信する任意メモを入力してください" - -#: admin/post-types/writepanels/writepanel-product_data.php:617 -msgid "Menu order" -msgstr "注文メニュー" - -#: admin/post-types/writepanels/writepanel-product_data.php:617 -msgid "Custom ordering position." -msgstr "カスタム発注の位置" - -#: admin/post-types/writepanels/writepanel-product_data.php:625 -msgid "Enable reviews" -msgstr "レビューを有効にする" - -#: admin/post-types/writepanels/writepanel-product_data.php:714 -msgid "Product SKU must be unique." -msgstr "商品SKUは、固有の値でなければなりません" - -#: admin/post-types/writepanels/writepanel-product_data.php:1046 -msgid "Catalog/search" -msgstr "カタログ/検索" - -#: admin/post-types/writepanels/writepanel-product_data.php:1053 -msgid "Catalog visibility:" -msgstr "カタログの見え方:" - -#: admin/post-types/writepanels/writepanel-product_data.php:1069 -msgid "" -"Define the loops this product should be visible in. The product will still " -"be accessible directly." -msgstr "" -"この商品に表示させるループを定義して下さい。商品にはまだ直接アクセスできま" -"す。" - -#: admin/post-types/writepanels/writepanel-product_data.php:1075 -msgid "Enable this option to feature this product." -msgstr "このオプションをオススメ商品に適用する" - -#: admin/post-types/writepanels/writepanel-product_data.php:1077 -msgid "Featured Product" -msgstr "特集商品" - -#: admin/post-types/writepanels/writepanel-product_data.php:1081 -msgid "OK" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_images.php:43 -#: admin/post-types/writepanels/writepanel-product_images.php:103 -msgid "Delete image" -msgstr "画像を削除" - -#: admin/post-types/writepanels/writepanel-product_images.php:43 -#: admin/post-types/writepanels/writepanel-product_images.php:103 -#: admin/woocommerce-admin-attributes.php:323 -msgid "Delete" -msgstr "削除" - -#: admin/post-types/writepanels/writepanel-product_images.php:54 -msgid "Add product gallery images" -msgstr "商品ギャラリーイメージを追加" - -#: admin/post-types/writepanels/writepanel-product_images.php:80 -msgid "Add Images to Product Gallery" -msgstr "商品ギャラリーの画像を追加" - -#: admin/post-types/writepanels/writepanel-product_images.php:82 -msgid "Add to gallery" -msgstr "ギャラリーに追加" - -#: admin/post-types/writepanels/writepanels-init.php:47 -msgid "Product Gallery" -msgstr "商品ギャラリー" - -#: admin/post-types/writepanels/writepanels-init.php:55 -msgid "Product Short Description" -msgstr "商品の簡単な説明" - -#: admin/post-types/writepanels/writepanels-init.php:64 -msgid "Reviews" -msgstr "レビュー" - -#: admin/post-types/writepanels/writepanels-init.php:68 -msgid "Order Data" -msgstr "注文データ" - -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "Order Items" -msgstr "注文商品" - -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "" -"Note: if you edit quantities or remove items from the order you will need to " -"manually update stock levels." -msgstr "" -"注意:ご注文からアイテムを数量を編集または削除する場合は、手動での在庫レベル" -"を更新する必要があります。" - -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "Downloadable Product Permissions" -msgstr "ダウンロード可能な製品のパーミッション" - -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "" -"Note: Permissions for order items will automatically be granted when the " -"order status changes to processing/completed." -msgstr "" -"注意:注文ステータスを「処理中/完了」に変更した時、注文項目に対する権限が自動" -"的に与えられます。" - -#: admin/post-types/writepanels/writepanels-init.php:73 -msgid "Order Actions" -msgstr "オーダーアクション" - -#: admin/post-types/writepanels/writepanels-init.php:81 -msgid "Coupon Data" -msgstr "クーポンデータ" - -#: admin/post-types/writepanels/writepanels-init.php:100 -msgid "Coupon code" -msgstr "クーポンコード" - -#: admin/post-types/writepanels/writepanels-init.php:101 -msgid "Product name" -msgstr "商品名" - -#: admin/post-types/writepanels/writepanels-init.php:185 -msgid "Allow reviews." -msgstr "レビューを許可" - -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "" -"Allow trackbacks and pingbacks on this " -"page." -msgstr "" -"このページの トラックバックおよびピングバッ" -"ク を許可して下さい。" - -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:23 -msgid "Styles" -msgstr "スタイル" - -#: admin/settings/settings-frontend-styles.php:43 -msgid "Primary" -msgstr "プライマリー" - -#: admin/settings/settings-frontend-styles.php:43 -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "アクションボタン、価格スライダー、レイヤーナビUI、を呼び出す。" - -#: admin/settings/settings-frontend-styles.php:44 -msgid "Secondary" -msgstr "セカンダリー" - -#: admin/settings/settings-frontend-styles.php:44 -msgid "Buttons and tabs" -msgstr "ボタンとタブ" - -#: admin/settings/settings-frontend-styles.php:45 -msgid "Highlight" -msgstr "ハイライト" - -#: admin/settings/settings-frontend-styles.php:45 -msgid "Price labels and Sale Flashes" -msgstr "価格ラベルと販売に点滅" - -#: admin/settings/settings-frontend-styles.php:46 -msgid "Content" -msgstr "コンテンツ" - -#: admin/settings/settings-frontend-styles.php:46 -msgid "Your themes page background - used for tab active states" -msgstr "テーマのページの背景 - タブをアクティブ状態に使用" - -#: admin/settings/settings-frontend-styles.php:47 -msgid "Subtext" -msgstr "サブテキスト" - -#: admin/settings/settings-frontend-styles.php:47 -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "特定テキストに使用 - パン屑リスト・ミニテキスト等" - -#: admin/settings/settings-frontend-styles.php:51 -msgid "" -"To edit colours woocommerce/assets/css/woocommerce-base.less " -"and woocommerce.css need to be writable. See the Codex for more " -"information." -msgstr "" -"色を編集するには woocommerce/assets/css/woocommerce-base.less " -"と woocommerce.css を書き込み可能にする必要があります。the Codexを参照" -"下さい。" - -#: admin/settings/settings-init.php:18 -msgid "Localisation" -msgstr "ローカリゼーション" - -#: admin/settings/settings-init.php:19 -msgid "Use informal localisation for %s" -msgstr "%s による非公式のローカリゼーションを使用" - -#: admin/settings/settings-init.php:33 -msgid "General Options" -msgstr "一般的なオプション" - -#: admin/settings/settings-init.php:36 -msgid "Base Location" -msgstr "拠点" - -#: admin/settings/settings-init.php:37 -msgid "" -"This is the base location for your business. Tax rates will be based on this " -"country." -msgstr "" -"これはあなたのビジネスのための拠点です。税率はこの国に基づいて行われます。" - -#: admin/settings/settings-init.php:46 -msgid "Currency" -msgstr "通貨" - -#: admin/settings/settings-init.php:47 -msgid "" -"This controls what currency prices are listed at in the catalog and which " -"currency gateways will take payments in." -msgstr "" -"どの通貨価格をカタログに適用するか、また、どの通貨ゲートウェイを支払いに取り" -"入れるかを設定します。" - -#: admin/settings/settings-init.php:58 -msgid "Allowed Countries" -msgstr "許可する国" - -#: admin/settings/settings-init.php:59 -msgid "These are countries that you are willing to ship to." -msgstr "出荷することの出来る国の設定" - -#: admin/settings/settings-init.php:67 -msgid "All Countries" -msgstr "全ての国" - -#: admin/settings/settings-init.php:68 admin/settings/settings-init.php:73 -msgid "Specific Countries" -msgstr "特定の国" - -#: admin/settings/settings-init.php:84 -msgid "Store Notice" -msgstr "店の注意事項" - -#: admin/settings/settings-init.php:85 -msgid "Enable site-wide store notice text" -msgstr "サイト全体に店舗通知テキストを有効にします" - -#: admin/settings/settings-init.php:92 -msgid "Store Notice Text" -msgstr "店の注意事項テキスト" - -#: admin/settings/settings-init.php:95 -msgid "" -"This is a demo store for testing purposes — no orders shall be " -"fulfilled." -msgstr "これはデモストアです。注文は出来ません。" - -#: admin/settings/settings-init.php:102 -msgid "Cart, Checkout and Accounts" -msgstr "カート、お支払いとアカウント" - -#: admin/settings/settings-init.php:105 admin/woocommerce-admin-content.php:61 -#: admin/woocommerce-admin-content.php:76 -#: admin/woocommerce-admin-reports.php:63 -msgid "Coupons" -msgstr "クーポン" - -#: admin/settings/settings-init.php:106 -msgid "Enable the use of coupons" -msgstr "クーポンの使用を有効にします" - -#: admin/settings/settings-init.php:110 -msgid "Coupons can be applied from the cart and checkout pages." -msgstr "クーポンはカートおよびお支払いのページから適用することができます。" - -#: admin/settings/settings-init.php:114 -#: admin/woocommerce-admin-install.php:201 -#: admin/woocommerce-admin-status.php:307 -msgid "Checkout" -msgstr "お支払い" - -#: admin/settings/settings-init.php:115 -msgid "Enable guest checkout (no account required)" -msgstr "ゲストのお買い物を有効にする(アカウントは必要ありません)" - -#: admin/settings/settings-init.php:123 -msgid "Enable customer note field on checkout" -msgstr "お支払い時に、顧客メモ(備考欄)を有効にします。" - -#: admin/settings/settings-init.php:131 -msgid "Force secure checkout" -msgstr "Force secure checkout" - -#: admin/settings/settings-init.php:137 -msgid "" -"Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -msgstr "" -"強制的にお支払い(checkout )ページにSSL (HTTPS)を設定 (SSL証明書が必要とな" -"ります。)" - -#: admin/settings/settings-init.php:141 -msgid "Un-force HTTPS when leaving the checkout" -msgstr "支払いページを離れる時にHTTPSを外します。" - -#: admin/settings/settings-init.php:150 -msgid "Registration" -msgstr "登録" - -#: admin/settings/settings-init.php:151 -msgid "Allow registration on the checkout page" -msgstr "支払ページでの登録を許可する" - -#: admin/settings/settings-init.php:159 -msgid "Allow registration on the \"My Account\" page" -msgstr "マイアカウントページでの登録を許可する" - -#: admin/settings/settings-init.php:167 -msgid "Register using the email address for the username" -msgstr "Eメールアドレスをユーザーネームに使用して登録" - -#: admin/settings/settings-init.php:175 -msgid "Customer Accounts" -msgstr "お客様のアカウント" - -#: admin/settings/settings-init.php:176 -msgid "Prevent customers from accessing WordPress admin" -msgstr "お客様からの、WordPress管理者へのアクセスを防ぐ" - -#: admin/settings/settings-init.php:184 -msgid "Clear cart when logging out" -msgstr "ログアウト時にカートをクリア" - -#: admin/settings/settings-init.php:192 -msgid "Allow customers to repurchase orders from their account page" -msgstr "顧客が自分のアカウントページから注文を再購入することを許可します。" - -#: admin/settings/settings-init.php:201 -msgid "Styles and Scripts" -msgstr "スタイルとスクリプト" - -#: admin/settings/settings-init.php:204 -msgid "Styling" -msgstr "スタイリング" - -#: admin/settings/settings-init.php:205 -msgid "Enable WooCommerce CSS" -msgstr "WooCommerce CSSを有効にする" - -#: admin/settings/settings-init.php:216 -msgid "Scripts" -msgstr "スクリプト" - -#: admin/settings/settings-init.php:217 -msgid "Enable Lightbox" -msgstr "ライトボックスを有効にする" - -#: admin/settings/settings-init.php:220 -msgid "" -"Include WooCommerce's lightbox. Product gallery images and the add review " -"form will open in a lightbox." -msgstr "" -"WooCommerceのライトボックスを含む。商品ギャラリーの画像やレビューを追加フォー" -"ムがライトボックスで開きます。" - -#: admin/settings/settings-init.php:226 -msgid "Enable enhanced country select boxes" -msgstr "強化する国の選択ボックスを有効にする" - -#: admin/settings/settings-init.php:231 -msgid "This will enable a script allowing the country fields to be searchable." -msgstr "" -"国のフィールドを検索可能にすることができるようにスクリプトを有効にします" -"orszagok." - -#: admin/settings/settings-init.php:236 -msgid "Downloadable Products" -msgstr "ダウンロード可能な製品" - -#: admin/settings/settings-init.php:239 -msgid "File Download Method" -msgstr "ファイルダウンロード方法" - -#: admin/settings/settings-init.php:240 -msgid "" -"Forcing downloads will keep URLs hidden, but some servers may serve large " -"files unreliably. If supported, X-Accel-Redirect/ X-" -"Sendfile can be used to serve downloads instead (server requires " -"mod_xsendfile)." -msgstr "" - -#: admin/settings/settings-init.php:248 -msgid "Force Downloads" -msgstr "" - -#: admin/settings/settings-init.php:249 -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "X-Accel-Redirect/X-Sendfile" - -#: admin/settings/settings-init.php:250 -msgid "Redirect only" -msgstr "リダイレクトのみ" - -#: admin/settings/settings-init.php:255 -msgid "Access Restriction" -msgstr "アクセス制限" - -#: admin/settings/settings-init.php:256 -msgid "Downloads require login" -msgstr "ダウンロードには、ログインが必要です" - -#: admin/settings/settings-init.php:260 -msgid "This setting does not apply to guest purchases." -msgstr "この設定は、ゲストでの購入には適用されません。" - -#: admin/settings/settings-init.php:265 -msgid "Grant access to downloadable products after payment" -msgstr "支払後のダウンロード可能商品へのアクセス権を付与" - -#: admin/settings/settings-init.php:269 -msgid "" -"Enable this option to grant access to downloads when orders are \"processing" -"\", rather than \"completed\"." -msgstr "" -"注文が\"処理中\"はなく、\"完成\"でダウンロードへのアクセスを許可する場合に、" -"このオプションを有効にします。" - -#: admin/settings/settings-init.php:285 -msgid "" -"Note: The shop page has children - child pages will not work if you enable " -"this option." -msgstr "" -"注意: ショップページには子ページがあります。このオプションを有効にすると、子" -"ページが動作しません。" - -#: admin/settings/settings-init.php:290 -msgid "Page Setup" -msgstr "ページ設定" - -#: admin/settings/settings-init.php:292 -msgid "" -"Set up core WooCommerce pages here, for example the base page. The base page " -"can also be used in your %sproduct permalinks%s." -msgstr "" -"例えばここでコアWooCommerceページ、ベースページを設定します。ベースページ" -"は、%s商品のパーマリンク%sでも使用できます。" - -#: admin/settings/settings-init.php:297 -msgid "Shop Base Page" -msgstr "ショップの基本設定" - -#: admin/settings/settings-init.php:298 -msgid "" -"This sets the base page of your shop - this is where your product archive " -"will be." -msgstr "ショップ基本ページを設定します。商品が保存される場所です。" - -#: admin/settings/settings-init.php:308 -msgid "Terms Page ID" -msgstr "条件ページ ID" - -#: admin/settings/settings-init.php:309 -msgid "" -"If you define a \"Terms\" page the customer will be asked if they accept " -"them when checking out." -msgstr "" -"「規約ページ」を定義した場合、チェックアウト時にお客様に受け入れるかどうかを" -"尋ねることができます。" - -#: admin/settings/settings-init.php:320 -msgid "Shop Pages" -msgstr "ショップページ" - -#: admin/settings/settings-init.php:320 -msgid "" -"The following pages need selecting so that WooCommerce knows where they are. " -"These pages should have been created upon installation of the plugin, if not " -"you will need to create them." -msgstr "" -"以下のページでは、何処でWooCommerceを識別しているかを選択する必要があります。" -"これらのページは、プラグインのインストール時に作成されている必要があり、そう" -"でない場合は作成する必要があります。" - -#: admin/settings/settings-init.php:323 -msgid "Cart Page" -msgstr "買い物カゴページ" - -#: admin/settings/settings-init.php:324 -msgid "Page contents: [woocommerce_cart]" -msgstr "ページコンテンツ: [woocommerce_cart]" - -#: admin/settings/settings-init.php:334 -msgid "Checkout Page" -msgstr "支払いページ" - -#: admin/settings/settings-init.php:335 -msgid "Page contents: [woocommerce_checkout]" -msgstr "ページコンテンツ: [woocommerce_checkout]" - -#: admin/settings/settings-init.php:345 -msgid "Pay Page" -msgstr "支払いページ" - -#: admin/settings/settings-init.php:346 -msgid "Page contents: [woocommerce_pay] Parent: \"Checkout\"" -msgstr "ページコンテンツ: [woocommerce_pay] Parent: \"お支払いへ\"" - -#: admin/settings/settings-init.php:356 -msgid "Thanks Page" -msgstr "完了ページ(サンクスページ)" - -#: admin/settings/settings-init.php:357 -msgid "Page contents: [woocommerce_thankyou] Parent: \"Checkout\"" -msgstr "" - -#: admin/settings/settings-init.php:367 -msgid "My Account Page" -msgstr "マイ・アカウントページ" - -#: admin/settings/settings-init.php:368 -msgid "Page contents: [woocommerce_my_account]" -msgstr "ページコンテンツ: [woocommerce_my_account]" - -#: admin/settings/settings-init.php:378 -msgid "Edit Address Page" -msgstr "住所編集ページ" - -#: admin/settings/settings-init.php:379 -msgid "Page contents: [woocommerce_edit_address] Parent: \"My Account\"" -msgstr "ページコンテンツ: [woocommerce_edit_address] Parent: \"My Account\"" - -#: admin/settings/settings-init.php:389 -msgid "View Order Page" -msgstr "注文照会ページ" - -#: admin/settings/settings-init.php:390 -msgid "Page contents: [woocommerce_view_order] Parent: \"My Account\"" -msgstr "ページコンテンツ: [woocommerce_view_order] Parent: \"My Account\"" - -#: admin/settings/settings-init.php:400 -msgid "Change Password Page" -msgstr "パスワード変更ページ" - -#: admin/settings/settings-init.php:401 -msgid "Page contents: [woocommerce_change_password] Parent: \"My Account\"" -msgstr "ページコンテンツ: [woocommerce_change_password] Parent: \"My Account\"" - -#: admin/settings/settings-init.php:411 -msgid "Logout Page" -msgstr "ログアウトページ" - -#: admin/settings/settings-init.php:412 -msgid "Parent: \"My Account\"" -msgstr "親: \"マイアカウント\"" - -#: admin/settings/settings-init.php:422 -msgid "Lost Password Page" -msgstr "「パスワードを忘れた」ページ" - -#: admin/settings/settings-init.php:423 -msgid "Page contents: [woocommerce_lost_password] Parent: \"My Account\"" -msgstr "ページ内容: [woocommerce_lost_password] 親: \"マイアカウント\"" - -#: admin/settings/settings-init.php:439 -msgid "Catalog Options" -msgstr "カタログオプション" - -#: admin/settings/settings-init.php:442 -msgid "Default Product Sorting" -msgstr "デフォルトの商品順" - -#: admin/settings/settings-init.php:443 -msgid "This controls the default sort order of the catalog." -msgstr "カタログのデフォルト表示順序をコントロールします" - -#: admin/settings/settings-init.php:449 -msgid "Default sorting (custom ordering + name)" -msgstr "デフォルト (カスタムの注文+名前)" - -#: admin/settings/settings-init.php:450 -msgid "Popularity (sales)" -msgstr "人気(売上高)" - -#: admin/settings/settings-init.php:451 -msgid "Average Rating" -msgstr "平均評価" - -#: admin/settings/settings-init.php:452 -msgid "Sort by most recent" -msgstr "最新に並べ替え" - -#: admin/settings/settings-init.php:453 -msgid "Sort by price (asc)" -msgstr "価格順え(昇順)" - -#: admin/settings/settings-init.php:454 -msgid "Sort by price (desc)" -msgstr "価格順(降順)" - -#: admin/settings/settings-init.php:460 -msgid "Shop Page Display" -msgstr "ショップページ表示" - -#: admin/settings/settings-init.php:461 -msgid "This controls what is shown on the product archive." -msgstr "商品アーカイブでの表示を制御" - -#: admin/settings/settings-init.php:467 admin/settings/settings-init.php:482 -msgid "Show products" -msgstr "商品を表示する" - -#: admin/settings/settings-init.php:468 admin/settings/settings-init.php:483 -msgid "Show subcategories" -msgstr "サブカテゴリを表示" - -#: admin/settings/settings-init.php:469 admin/settings/settings-init.php:484 -msgid "Show both" -msgstr "両方を表示" - -#: admin/settings/settings-init.php:475 -msgid "Default Category Display" -msgstr "デフォルトのカテゴリ表示" - -#: admin/settings/settings-init.php:476 -msgid "This controls what is shown on category archives." -msgstr "カテゴリアーカイブでの表示を制御" - -#: admin/settings/settings-init.php:490 -msgid "Add to cart" -msgstr "カートに追加" - -#: admin/settings/settings-init.php:491 -msgid "Redirect to the cart page after successful addition" -msgstr "正常に追加された後、カートのページにリダイレクトします。" - -#: admin/settings/settings-init.php:499 -msgid "Enable AJAX add to cart buttons on archives" -msgstr "AJAXはアーカイブの「カートに追加」ボタンを有効にします。" - -#: admin/settings/settings-init.php:508 -msgid "" -"The following options affect the fields available on the edit product page." -msgstr "" -"次のオプションは、商品ページ編集で使用可能なフィールドに影響を与えます。" - -#: admin/settings/settings-init.php:511 -msgid "Product Fields" -msgstr "商品フィールド" - -#: admin/settings/settings-init.php:512 -msgid "Enable the SKU field for products" -msgstr "商品のSKUフィールドを有効にします。" - -#: admin/settings/settings-init.php:520 -msgid "" -"Enable the weight field for products (some shipping methods " -"may require this)" -msgstr "" -"商品の重量フィールドを有効にする(一部配送方法は、これを必要" -"とするかもしれません)。" - -#: admin/settings/settings-init.php:528 -msgid "" -"Enable the dimension fields for products (some shipping " -"methods may require this)" -msgstr "" -"商品の寸法フィールドを有効にする(一部配送方法は、これを必要" -"とするかもしれません)" - -#: admin/settings/settings-init.php:536 -msgid "" -"Show weight and dimension values on the Additional " -"Information tab" -msgstr "" -"重量と寸法の値を、追加情報タブに表示しま" -"す。" - -#: admin/settings/settings-init.php:544 -msgid "Weight Unit" -msgstr "重量単位" - -#: admin/settings/settings-init.php:545 -msgid "This controls what unit you will define weights in." -msgstr "単位設定" - -#: admin/settings/settings-init.php:551 -msgid "kg" -msgstr "" - -#: admin/settings/settings-init.php:552 -msgid "g" -msgstr "" - -#: admin/settings/settings-init.php:553 -msgid "lbs" -msgstr "" - -#: admin/settings/settings-init.php:554 -msgid "oz" -msgstr "" - -#: admin/settings/settings-init.php:560 -msgid "Dimensions Unit" -msgstr "寸法単位" - -#: admin/settings/settings-init.php:561 -msgid "This controls what unit you will define lengths in." -msgstr "長さの定義" - -#: admin/settings/settings-init.php:568 -msgid "cm" -msgstr "" - -#: admin/settings/settings-init.php:569 -msgid "mm" -msgstr "" - -#: admin/settings/settings-init.php:570 -msgid "in" -msgstr "" - -#: admin/settings/settings-init.php:571 -msgid "yd" -msgstr "" - -#: admin/settings/settings-init.php:577 -msgid "Product Ratings" -msgstr "商品の評価" - -#: admin/settings/settings-init.php:578 -msgid "Enable ratings on reviews" -msgstr "レビューでの評価を有効" - -#: admin/settings/settings-init.php:587 -msgid "Ratings are required to leave a review" -msgstr "評価は、レビューを残すことを要求" - -#: admin/settings/settings-init.php:596 -msgid "Show \"verified owner\" label for customer reviews" -msgstr "カスタマーレビューのために「承認」のラベルを表示する" - -#: admin/settings/settings-init.php:606 -msgid "Pricing Options" -msgstr "価格オプション" - -#: admin/settings/settings-init.php:606 -msgid "The following options affect how prices are displayed on the frontend." -msgstr "" -"次のオプションは、価格がフロントエンドでどのように表示されるかに影響します。" - -#: admin/settings/settings-init.php:609 -msgid "Currency Position" -msgstr "外貨ポジション" - -#: admin/settings/settings-init.php:610 -msgid "This controls the position of the currency symbol." -msgstr "通貨記号の位置を制御" - -#: admin/settings/settings-init.php:616 -msgid "Left" -msgstr "左" - -#: admin/settings/settings-init.php:617 -msgid "Right" -msgstr "右" - -#: admin/settings/settings-init.php:618 -msgid "Left (with space)" -msgstr "左(スペースあり)" - -#: admin/settings/settings-init.php:619 -msgid "Right (with space)" -msgstr "右(スペースあり)" - -#: admin/settings/settings-init.php:625 -msgid "Thousand Separator" -msgstr "3桁ごとの区切り文字" - -#: admin/settings/settings-init.php:626 -msgid "This sets the thousand separator of displayed prices." -msgstr "表示価格の桁区切りを設定" - -#: admin/settings/settings-init.php:635 -msgid "Decimal Separator" -msgstr "小数点の記号" - -#: admin/settings/settings-init.php:636 -msgid "This sets the decimal separator of displayed prices." -msgstr "表示価格の桁区切り記号を設定します" - -#: admin/settings/settings-init.php:645 -msgid "Number of Decimals" -msgstr "小数点以下の桁数" - -#: admin/settings/settings-init.php:646 -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "表示価格に示した小数点以下の桁数を設定します" - -#: admin/settings/settings-init.php:659 -msgid "Trailing Zeros" -msgstr "末尾のゼロ" - -#: admin/settings/settings-init.php:660 -msgid "" -"Remove zeros after the decimal point. e.g. $10.00 becomes " -"$10" -msgstr "" -"小数点以下のゼロを削除します。例えばの 100.00円100円。" - -#: admin/settings/settings-init.php:668 -msgid "Image Options" -msgstr "イメージオプション" - -#: admin/settings/settings-init.php:668 -msgid "" -"These settings affect the actual dimensions of images in your catalog - the " -"display on the front-end will still be affected by CSS styles. After " -"changing these settings you may need to regenerate your " -"thumbnails." -msgstr "" -"カタログ内の画像サイズの設定です。フロントエンドの表示はまだCSSに影響されま" -"す。設定を変更した後、サムネイルを再生成する必要があるかもしれ" -"ません。" - -#: admin/settings/settings-init.php:671 -msgid "Catalog Images" -msgstr "カタログ画像" - -#: admin/settings/settings-init.php:672 -msgid "This size is usually used in product listings" -msgstr "商品リストで通常使用されているサイズ" - -#: admin/settings/settings-init.php:685 -msgid "Single Product Image" -msgstr "シングル商品画像" - -#: admin/settings/settings-init.php:686 -msgid "This is the size used by the main image on the product page." -msgstr "商品ページのメイン画像サイズ" - -#: admin/settings/settings-init.php:699 -msgid "Product Thumbnails" -msgstr "商品のサムネイル" - -#: admin/settings/settings-init.php:700 -msgid "" -"This size is usually used for the gallery of images on the product page." -msgstr "商品ページの画像ギャラリーに使用されるサイズ" - -#: admin/settings/settings-init.php:719 -msgid "Inventory Options" -msgstr "在庫管理オプション" - -#: admin/settings/settings-init.php:722 -msgid "Manage Stock" -msgstr "在庫管理" - -#: admin/settings/settings-init.php:723 -msgid "Enable stock management" -msgstr "在庫管理を有効にする" - -#: admin/settings/settings-init.php:730 -msgid "Hold Stock (minutes)" -msgstr "在庫保持 (分単位の設定)" - -#: admin/settings/settings-init.php:731 -msgid "" -"Hold stock (for unpaid orders) for x minutes. When this limit is reached, " -"the pending order will be cancelled. Leave blank to disable." -msgstr "" -"未払い注文の在庫保持(分単位の設定)。この制限に達すると保留中の注文はキャン" -"セルされます。無効にするには空白のままにしておきます。" - -#: admin/settings/settings-init.php:743 -msgid "Notifications" -msgstr "在庫通知" - -#: admin/settings/settings-init.php:744 -msgid "Enable low stock notifications" -msgstr "在庫低下の通知を有効にする" - -#: admin/settings/settings-init.php:752 -msgid "Enable out of stock notifications" -msgstr "在庫切れの通知を有効にする" - -#: admin/settings/settings-init.php:760 -msgid "Notification Recipient" -msgstr "通知受信者" - -#: admin/settings/settings-init.php:768 -msgid "Low Stock Threshold" -msgstr "在庫低下を知らせる数値" - -#: admin/settings/settings-init.php:781 -msgid "Out Of Stock Threshold" -msgstr "在庫切れを知らせる数値" - -#: admin/settings/settings-init.php:794 -msgid "Out Of Stock Visibility" -msgstr "在庫の表示" - -#: admin/settings/settings-init.php:795 -msgid "Hide out of stock items from the catalog" -msgstr "カタログから在庫のない商品は表示しない" - -#: admin/settings/settings-init.php:802 -msgid "Stock Display Format" -msgstr "ストック表示形式" - -#: admin/settings/settings-init.php:803 -msgid "This controls how stock is displayed on the frontend." -msgstr "在庫がフロントエンドにどのように表示されるかをコントロールします" - -#: admin/settings/settings-init.php:809 -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "常に在庫を表示。例えば \"在庫数 12\"" - -#: admin/settings/settings-init.php:810 -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "" -"在庫が低下した時のみ表示。例えば \"在庫あり\" や \"在庫数 2\"\"Keszleten\"" - -#: admin/settings/settings-init.php:811 -msgid "Never show stock amount" -msgstr "在庫量を表示しない" - -#: admin/settings/settings-init.php:823 -#: admin/woocommerce-admin-settings.php:292 -msgid "Shipping Options" -msgstr "配送オプション" - -#: admin/settings/settings-init.php:826 -msgid "Shipping Calculations" -msgstr "配送料の計算" - -#: admin/settings/settings-init.php:827 -msgid "Enable shipping" -msgstr "配送を有効" - -#: admin/settings/settings-init.php:835 -msgid "Enable the shipping calculator on the cart page" -msgstr "カートページの送料計算機を有効にする" - -#: admin/settings/settings-init.php:843 -msgid "Hide shipping costs until an address is entered" -msgstr "住所が入力されるまで、送料を隠す" - -#: admin/settings/settings-init.php:851 -msgid "Shipping Method Display" -msgstr "配送方法の表示" - -#: admin/settings/settings-init.php:852 -msgid "" -"This controls how multiple shipping methods are displayed on the frontend." -msgstr "" -"これは、複数の配送方法がフロントエンドに表示される方法をコントロールします。" - -#: admin/settings/settings-init.php:858 -msgid "Radio buttons" -msgstr "ラジオボタン" - -#: admin/settings/settings-init.php:859 -msgid "Select box" -msgstr "セレクトボックス" - -#: admin/settings/settings-init.php:865 -msgid "Shipping Destination" -msgstr "配送先" - -#: admin/settings/settings-init.php:866 -msgid "Only ship to the users billing address" -msgstr "お客様住所のみに出荷する" - -#: admin/settings/settings-init.php:874 -msgid "Ship to billing address by default" -msgstr "デフォルトでは、請求書送付先住所にだけ出荷" - -#: admin/settings/settings-init.php:882 -msgid "Collect shipping address even when not required" -msgstr "必要ない場合でも配送先住所を集める" - -#: admin/settings/settings-init.php:900 -#: admin/woocommerce-admin-settings.php:188 -#: admin/woocommerce-admin-settings.php:329 -msgid "Payment Gateways" -msgstr "支払ゲートウェイ" - -#: admin/settings/settings-init.php:900 -msgid "" -"Installed payment gateways are displayed below. Drag and drop payment " -"gateways to control their display order on the checkout." -msgstr "" -"インストールされている支払いゲートウェイは下に表示されます。支払いゲートウェ" -"イをドラッグ&ドロップで入れ替えれば、ショッピングカート内の表示順序となり" -"ます" - -#: admin/settings/settings-init.php:918 -#: admin/woocommerce-admin-settings.php:222 -msgid "Tax Options" -msgstr "税オプション" - -#: admin/settings/settings-init.php:921 -msgid "Enable Taxes" -msgstr "税金を有効にする" - -#: admin/settings/settings-init.php:922 -msgid "Enable taxes and tax calculations" -msgstr "税金と税額計算機を有効にする" - -#: admin/settings/settings-init.php:929 -msgid "Prices Entered With Tax" -msgstr "税に含まれる金額" - -#: admin/settings/settings-init.php:933 -msgid "" -"This option is important as it will affect how you input prices. Changing it " -"will not update existing products." -msgstr "" -"このオプションは重要です。あなたがどのように価格を入力するかに影響します。変" -"更すると、既存商品を更新しません。" - -#: admin/settings/settings-init.php:935 -msgid "Yes, I will enter prices inclusive of tax" -msgstr "はい、税込み価格を入力します。" - -#: admin/settings/settings-init.php:936 -msgid "No, I will enter prices exclusive of tax" -msgstr "いいえ、税抜きの価格を入力します。" - -#: admin/settings/settings-init.php:941 -msgid "Calculate Tax Based On:" -msgstr "以下に基づく税の計算:" - -#: admin/settings/settings-init.php:943 -msgid "This option determines which address is used to calculate tax." -msgstr "このオプションは、税計算を適用する場所(住所)を決定します。" - -#: admin/settings/settings-init.php:947 -msgid "Customer shipping address" -msgstr "顧客の配送先住所" - -#: admin/settings/settings-init.php:948 -msgid "Customer billing address" -msgstr "お客様住所" - -#: admin/settings/settings-init.php:949 admin/settings/settings-init.php:961 -msgid "Shop base address" -msgstr "お店の本拠地" - -#: admin/settings/settings-init.php:954 -msgid "Default Customer Address:" -msgstr "デフォルトの顧客住所:" - -#: admin/settings/settings-init.php:956 -msgid "" -"This option determines the customers default address (before they input " -"their own)." -msgstr "" -"このオプションは、顧客デフォルトのアドレス(彼らが彼ら自身のものを入力する前" -"に)を決定します。" - -#: admin/settings/settings-init.php:960 -msgid "No address" -msgstr "住所がありません" - -#: admin/settings/settings-init.php:966 -msgid "Shipping Tax Class:" -msgstr "送料税クラス:" - -#: admin/settings/settings-init.php:967 -msgid "" -"Optionally control which tax class shipping gets, or leave it so shipping " -"tax is based on the cart items themselves." -msgstr "" -"必要に応じて配送税クラスを取得するかを制御する、または配送税はカートアイテム" -"自体に基づいて行われるように、それを残します。" - -#: admin/settings/settings-init.php:972 -msgid "Shipping tax class based on cart items" -msgstr "配送税クラスはカートのアイテムに基づいています。" - -#: admin/settings/settings-init.php:977 -msgid "Rounding" -msgstr "" - -#: admin/settings/settings-init.php:978 -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "1行に小計レベルで税をまとめる" - -#: admin/settings/settings-init.php:985 -msgid "Additional Tax Classes" -msgstr "追加の税金クラス" - -#: admin/settings/settings-init.php:986 -msgid "" -"List additonal tax classes below (1 per line). This is in addition to the " -"default Standard Rate. Tax classes can be assigned to products." -msgstr "" -"以下に、追加の税クラスを一覧表示します(1行に1つ)。これはデフォルトの" -"基本料金に追加されるです。税クラスは商品に割り当てることができます。" - -#: admin/settings/settings-init.php:990 -msgid "Reduced Rate%sZero Rate" -msgstr "割引料金%s免除" - -#: admin/settings/settings-init.php:994 -msgid "Display prices during cart/checkout:" -msgstr "カート/お支払い に価格を表示する:" - -#: admin/settings/settings-init.php:999 -msgid "Including tax" -msgstr "税込" - -#: admin/settings/settings-init.php:1000 -msgid "Excluding tax" -msgstr "税別" - -#: admin/settings/settings-init.php:1012 -msgid "Email Sender Options" -msgstr "Eメール送信オプション" - -#: admin/settings/settings-init.php:1012 -msgid "" -"The following options affect the sender (email address and name) used in " -"WooCommerce emails." -msgstr "" -"次のオプションが「WooCommerce Eメール」で使用される送信元(メールアドレスと名" -"前)に反映します。" - -#: admin/settings/settings-init.php:1015 -msgid "\"From\" Name" -msgstr "\"From\" 名前" - -#: admin/settings/settings-init.php:1024 -msgid "\"From\" Email Address" -msgstr "\"From\" Eメールアドレス" - -#: admin/settings/settings-init.php:1037 -msgid "Email Template" -msgstr "Eメール テンプレート" - -#: admin/settings/settings-init.php:1037 -msgid "" -"This section lets you customise the WooCommerce emails. Click here to preview your email template. For more " -"advanced control copy woocommerce/templates/emails/ to " -"yourtheme/woocommerce/emails/." -msgstr "" -"このセクションでは、WooCommerceメールをカスタマイズすることができます。あなた" -"のEメールテンプレートをプレビューするにはこ" -"こをクリックしてください。woocommerce/templates/emails/ か" -"ら yourtheme/woocommerce/emails/に高度な設定を複製。" - -#: admin/settings/settings-init.php:1040 -msgid "Header Image" -msgstr "ヘッダー画像" - -#: admin/settings/settings-init.php:1041 -msgid "" -"Enter a URL to an image you want to show in the email's header. Upload your " -"image using the media uploader." -msgstr "" -"Eメールのヘッダーに表示したい画像のURLを入力します。 メディア" -"アップローダーを使用して画像をアップロードするを参照下さい。" - -#: admin/settings/settings-init.php:1049 -msgid "Email Footer Text" -msgstr "Eメール フッターテキスト" - -#: admin/settings/settings-init.php:1050 -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "テキストはWooCommerceメールのフッターに表示されます。" - -#: admin/settings/settings-init.php:1054 -msgid "Powered by WooCommerce" -msgstr "" - -#: admin/settings/settings-init.php:1058 -msgid "Base Colour" -msgstr "ベースカラー" - -#: admin/settings/settings-init.php:1059 -msgid "" -"The base colour for WooCommerce email templates. Default #557da1." -msgstr "" -"WooCommerceのEメールテンプレートの基本色。デフォルトは#557da1で" -"す。" - -#: admin/settings/settings-init.php:1067 -msgid "Background Colour" -msgstr "背景色" - -#: admin/settings/settings-init.php:1068 -msgid "" -"The background colour for WooCommerce email templates. Default " -"#f5f5f5." -msgstr "" -"WooCommerceのEメールテンプレートの背景色。デフォルトは#f5f5f5で" -"す。" - -#: admin/settings/settings-init.php:1076 -msgid "Email Body Background Colour" -msgstr "Eメール本文の背景色" - -#: admin/settings/settings-init.php:1077 -msgid "The main body background colour. Default #fdfdfd." -msgstr "" -"WooCommerceのEメール本文の背景色。デフォルトは#fdfdfdです。" - -#: admin/settings/settings-init.php:1085 -msgid "Email Body Text Colour" -msgstr "Eメール本文テキストの色" - -#: admin/settings/settings-init.php:1086 -msgid "The main body text colour. Default #505050." -msgstr "" -"WooCommerceのEメール本文のテキストの色。デフォルトは#505050です" - -#: admin/settings/settings-payment-gateways.php:27 -#: admin/settings/settings-shipping-methods.php:29 -#: admin/woocommerce-admin-init.php:757 -#: admin/woocommerce-admin-taxonomies.php:27 -#: admin/woocommerce-admin-taxonomies.php:121 -msgid "Default" -msgstr "デフォルト" - -#: admin/settings/settings-payment-gateways.php:28 -msgid "Gateway" -msgstr "ゲートウェイ" - -#: admin/settings/settings-payment-gateways.php:45 -msgid "Gateway ID" -msgstr "ゲートウェイID" - -#: admin/settings/settings-shipping-methods.php:23 -msgid "Shipping Methods" -msgstr "配送方法" - -#: admin/settings/settings-shipping-methods.php:25 -msgid "Drag and drop methods to control their display order." -msgstr "" -"ドラッグ&ドロップで入れ替えれば、ショッピングカート内の表示順序となります" - -#: admin/settings/settings-shipping-methods.php:30 -msgid "Shipping Method" -msgstr "配送方法" - -#: admin/settings/settings-shipping-methods.php:46 -msgid "Method ID" -msgstr "メソッドID" - -#: admin/settings/settings-tax-rates.php:29 -msgid "Tax Rates for the \"%s\" Class" -msgstr "\"%s\" クラスの税率" - -#: admin/settings/settings-tax-rates.php:30 -msgid "" -"Define tax rates for countries and states below. See here " -"for available alpha-2 country codes." -msgstr "" -"国や都道府県・州・地域などの税率を定義します。利用可能なalpha-2 国コードはこちらをご覧下さい。" - -#: admin/settings/settings-tax-rates.php:36 -msgid "Country Code" -msgstr "国コード" - -#: admin/settings/settings-tax-rates.php:36 -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "" -"2桁の国コード(例 US)。すべてに適用する場合は、空白のままにしておきます。" - -#: admin/settings/settings-tax-rates.php:38 -msgid "State Code" -msgstr "都道府県コード" - -#: admin/settings/settings-tax-rates.php:38 -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "" -"2桁の州コード(例 AL)。すべてに適用する場合は、空白のままにしておきます。" - -#: admin/settings/settings-tax-rates.php:40 -#: admin/settings/settings-tax-rates.php:217 -msgid "ZIP/Postcode" -msgstr "郵便番号" - -#: admin/settings/settings-tax-rates.php:40 -msgid "" -"Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all areas. Wildcards (*) can be used. Ranges for numeric " -"postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "" -"このルールの郵便番号。セミコロン( ; )で複数の値を区切ります。すべての領域に" -"適用する場合は、空白のままにしておきます。ワイルドカード(*)を使用することが" -"できます。数値の郵便番号(例 12345-12350)の範囲で、個々の郵便番号に拡大され" -"ます。" - -#: admin/settings/settings-tax-rates.php:42 -msgid "" -"Cities for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all cities." -msgstr "" -"このルールの都市。セミコロン(;)で複数の値を区切ります。すべての都市に適用す" -"る場合は、空白のままにしておきます。" - -#: admin/settings/settings-tax-rates.php:44 -msgid "Rate %" -msgstr "率 %" - -#: admin/settings/settings-tax-rates.php:44 -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "小数点以下4桁まで税率(パーセンテージ)を入力します" - -#: admin/settings/settings-tax-rates.php:46 -msgid "Tax Name" -msgstr "税率名称" - -#: admin/settings/settings-tax-rates.php:46 -msgid "Enter a name for this tax rate." -msgstr "この税率の名前を入力します" - -#: admin/settings/settings-tax-rates.php:48 -#: admin/settings/settings-tax-rates.php:217 -msgid "Priority" -msgstr "優先順位" - -#: admin/settings/settings-tax-rates.php:48 -msgid "" -"Choose a priority for this tax rate. Only 1 matching rate per priority will " -"be used. To define multiple tax rates for a single area you need to specify " -"a different priority per rate." -msgstr "" -"この税率のための優先順位を選択します。優先された1つの適合税率だけが使用されま" -"す。単一の領域に対して複数の税率を定義するには、税率ごとに異なる??優先順位を" -"指定する必要があります。" - -#: admin/settings/settings-tax-rates.php:50 -#: admin/settings/settings-tax-rates.php:217 -msgid "Compound" -msgstr "複合" - -#: admin/settings/settings-tax-rates.php:50 -msgid "" -"Choose whether or not this is a compound rate. Compound tax rates are " -"applied on top of other tax rates." -msgstr "" -"これが複合レートであるかどうかを選択します。複合税は他の税の上に適用されま" -"す。" - -#: admin/settings/settings-tax-rates.php:52 -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "この税率が、出荷に適用されるかどうかを選択します。" - -#: admin/settings/settings-tax-rates.php:59 -msgid "Insert row" -msgstr "行を挿入" - -#: admin/settings/settings-tax-rates.php:60 -msgid "Remove selected row(s)" -msgstr "選択した行(複数可)を削除" - -#: admin/settings/settings-tax-rates.php:62 -msgid "Export CSV" -msgstr "CSVのエクスポート" - -#: admin/settings/settings-tax-rates.php:63 -msgid "Import CSV" -msgstr "CSVのインポート" - -#: admin/settings/settings-tax-rates.php:163 -msgid "No row(s) selected" -msgstr "行が選択されていません" - -#: admin/settings/settings-tax-rates.php:217 -msgid "Country Code" -msgstr "国コード" - -#: admin/settings/settings-tax-rates.php:217 -msgid "State Code" -msgstr "都道府県コード" - -#: admin/settings/settings-tax-rates.php:217 -msgid "Rate %" -msgstr "率 %" - -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Name" -msgstr "税率名称" - -#: admin/woocommerce-admin-attributes.php:77 -msgid "Please, provide an attribute name, slug and type." -msgstr "属性名・スラッグおよびタイプを提供します" - -#: admin/woocommerce-admin-attributes.php:79 -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "スラッグ“%s”が長すぎます(28文字以内)。" - -#: admin/woocommerce-admin-attributes.php:81 -msgid "" -"Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "予約済み識別子の為、“%s”は許可されません。変更して下さい。" - -#: admin/woocommerce-admin-attributes.php:86 -#: admin/woocommerce-admin-attributes.php:91 -msgid "Slug “%s” is already in use. Change it, please." -msgstr "“%s” は既に使用されています。変更して下さい。" - -#: admin/woocommerce-admin-attributes.php:227 -msgid "Edit Attribute" -msgstr "属性を編集" - -#: admin/woocommerce-admin-attributes.php:237 -#: admin/woocommerce-admin-attributes.php:376 -msgid "Name for the attribute (shown on the front-end)." -msgstr "属性(フロント・エンド上で示される)の名前。" - -#: admin/woocommerce-admin-attributes.php:242 -#: admin/woocommerce-admin-attributes.php:308 -#: admin/woocommerce-admin-attributes.php:380 -msgid "Slug" -msgstr "スラッグ" - -#: admin/woocommerce-admin-attributes.php:246 -#: admin/woocommerce-admin-attributes.php:382 -msgid "" -"Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "" -"固有スラッグ / 属性のための参照:28文字より短くする必要があります。28 " -"karakternel." - -#: admin/woocommerce-admin-attributes.php:255 -#: admin/woocommerce-admin-attributes.php:388 -msgid "Select" -msgstr "選択" - -#: admin/woocommerce-admin-attributes.php:256 -#: admin/woocommerce-admin-attributes.php:389 -msgid "Text" -msgstr "テキスト" - -#: admin/woocommerce-admin-attributes.php:259 -#: admin/woocommerce-admin-attributes.php:392 -msgid "" -"Determines how you select attributes for products. Text " -"allows manual entry via the product page, whereas select " -"attribute terms can be defined from this section. If you plan on using an " -"attribute for variations use select." -msgstr "" -"製品の属性を決めて下さい。選択属性条件はこのセクションから決" -"定できるのに対し、テキストは、製品ページを経由して手動入力す" -"ることができます。属性を使用する場合、バリエーションの 選択" -"を使用します。" - -#: admin/woocommerce-admin-attributes.php:264 -#: admin/woocommerce-admin-attributes.php:396 -msgid "Default sort order" -msgstr "デフォルトの注文並び変え" - -#: admin/woocommerce-admin-attributes.php:268 -#: admin/woocommerce-admin-attributes.php:336 -#: admin/woocommerce-admin-attributes.php:398 -msgid "Custom ordering" -msgstr "カスタム注文" - -#: admin/woocommerce-admin-attributes.php:270 -#: admin/woocommerce-admin-attributes.php:333 -#: admin/woocommerce-admin-attributes.php:400 -msgid "Term ID" -msgstr "条件 ID" - -#: admin/woocommerce-admin-attributes.php:272 -#: admin/woocommerce-admin-attributes.php:402 -msgid "" -"Determines the sort order on the frontend for this attribute. If using " -"custom ordering, you can drag and drop the terms in this attribute" -msgstr "" -"この属性のためのフロントエンドでの注文並び変えを決定します。カスタム注文を使" -"用している場合は、この属性条件をドラッグ&ドロップすることができます。" - -#: admin/woocommerce-admin-attributes.php:277 -msgid "Update" -msgstr "アップデート" - -#: admin/woocommerce-admin-attributes.php:310 -msgid "Order by" -msgstr "注文による" - -#: admin/woocommerce-admin-attributes.php:311 -msgid "Terms" -msgstr "条件" - -#: admin/woocommerce-admin-attributes.php:356 -msgid "Configure terms" -msgstr "設定 条件" - -#: admin/woocommerce-admin-attributes.php:360 -msgid "No attributes currently exist." -msgstr "その属性は存在しません" - -#: admin/woocommerce-admin-attributes.php:370 -msgid "Add New Attribute" -msgstr "新しい属性を追加" - -#: admin/woocommerce-admin-attributes.php:371 -msgid "" -"Attributes let you define extra product data, such as size or colour. You " -"can use these attributes in the shop sidebar using the \"layered nav\" " -"widgets. Please note: you cannot rename an attribute later on." -msgstr "" -"属性を使用して、大きさ・色などの製品データを登録しましょう。あなたは、 \"ウィ" -"ジェットの\"レイヤードナビ\"を使用して、ショップのサイドバーに、これらの属性" -"を使用することができます。(注意)属性の名前を後で変更することはできません" - -#: admin/woocommerce-admin-attributes.php:405 -msgid "Add Attribute" -msgstr "属性を追加" - -#: admin/woocommerce-admin-attributes.php:416 -msgid "Are you sure you want to delete this attribute?" -msgstr "この属性を削除してもよろしいですか?" - -#: admin/woocommerce-admin-content.php:26 -#: admin/woocommerce-admin-reports.php:26 -#: admin/woocommerce-admin-reports.php:66 -#: admin/woocommerce-admin-reports.php:82 -#: admin/woocommerce-admin-reports.php:93 -msgid "Overview" -msgstr "概要" - -#: admin/woocommerce-admin-content.php:29 -msgid "" -"Thank you for using WooCommerce :) Should you need help using or extending " -"WooCommerce please read the documentation. For further " -"assistance you can use the community forum or if you have " -"access, our support desk." -msgstr "" -"WooCommerceをご利用頂きありがとうございます。 :) WooCommerce拡張機能を使う際" -"に助けが必要な場合、こちらをお読み下さい。(英語). サポー" -"トのためにコミュニティーフォーラム(英語)サポートデスク(英語)もあります。日本語サポート(有料)は職人工房でも行なっております。" - -#: admin/woocommerce-admin-content.php:31 -msgid "" -"If you are having problems, or to assist us with support, please check the " -"status page to identify any problems with your configuration:" -msgstr "" -"問題がある場合は、サポートと一緒に私達が支援します。ご使用の構成に問題がない" -"かを調べる為、ステータスページをご確認下さい。" - -#: admin/woocommerce-admin-content.php:33 admin/woocommerce-admin-init.php:89 -#: admin/woocommerce-admin-status.php:26 -msgid "System Status" -msgstr "システム状態" - -#: admin/woocommerce-admin-content.php:35 -msgid "" -"If you come across a bug, or wish to contribute to the project you can also " -"get involved on GitHub." -msgstr "" -"もしバグに遭遇したり、またGitHubに関与しプロジェクトに貢献した" -"い場合。" - -#: admin/woocommerce-admin-content.php:43 -msgid "" -"Here you can set up your store and customise it to fit your needs. The " -"sections available from the settings page include:" -msgstr "" -"ここではショップ設定し、あなたのニーズに合わせてそれをカスタマイズすることが" -"できます。設定ページから利用可能なセクションが含まれます。" - -#: admin/woocommerce-admin-content.php:44 -msgid "" -"General settings such as your shop base, currency, and script/styling " -"options which affect features used in your store." -msgstr "" -"ショップの基本となる通貨等の全般設定。機能な影響を与えるscript/stylingオプ" -"ション等。" - -#: admin/woocommerce-admin-content.php:45 -#: admin/woocommerce-admin-settings.php:184 -msgid "Pages" -msgstr "ページ" - -#: admin/woocommerce-admin-content.php:45 -msgid "" -"This is where important store page are defined. You can also set up other " -"pages (such as a Terms page) here." -msgstr "" -"ストアページに重要な定義をする場所です。また、他のページ(利用規約など)も、" -"ここで設定することができます。" - -#: admin/woocommerce-admin-content.php:46 -msgid "" -"Options for how things like price, images and weights appear in your product " -"catalog." -msgstr "商品カタログで、価格・画像・重さなどを表すオプション" - -#: admin/woocommerce-admin-content.php:47 -msgid "Options concerning stock and stock notices." -msgstr "在庫に関するオプションと注意事項。" - -#: admin/woocommerce-admin-content.php:48 -msgid "Options concerning tax, including international and local tax rates." -msgstr "税のオプション、海外・国内の税率について" - -#: admin/woocommerce-admin-content.php:49 -msgid "" -"This is where shipping options are defined, and shipping methods are set up." -msgstr "出荷オプションと配送方法の設 " - -#: admin/woocommerce-admin-content.php:50 -msgid "Payment Methods" -msgstr "支払い方法" - -#: admin/woocommerce-admin-content.php:50 -msgid "" -"This is where payment gateway options are defined, and individual payment " -"gateways are set up." -msgstr "支払ゲートウェイの定義と個別設定" - -#: admin/woocommerce-admin-content.php:51 -#: admin/woocommerce-admin-settings.php:189 -msgid "Emails" -msgstr "Eメール" - -#: admin/woocommerce-admin-content.php:51 -msgid "Here you can customise the way WooCommerce emails appear." -msgstr "" -"ここでは、WooCommerceのEメールの表示方法をカスタマイズすることができます。" - -#: admin/woocommerce-admin-content.php:52 -#: admin/woocommerce-admin-settings.php:190 -msgid "Integration" -msgstr "ソーシャル ウィジェット" - -#: admin/woocommerce-admin-content.php:52 -msgid "" -"The integration section contains options for third party services which " -"integrate with WooCommerce." -msgstr "WooCommerceと統合するサードパーティのサービスオプション" - -#: admin/woocommerce-admin-content.php:57 admin/woocommerce-admin-init.php:64 -msgid "Reports" -msgstr "レポート" - -#: admin/woocommerce-admin-content.php:59 -msgid "" -"The reports section can be accessed from the left-hand navigation menu. Here " -"you can generate reports for sales and customers." -msgstr "" -"レポートセクションは、左側のナビゲーションメニューからアクセスすることができ" -"ます。ここでは、販売と顧客のためのレポートを生成できます。" - -#: admin/woocommerce-admin-content.php:60 -#: admin/woocommerce-admin-reports.php:23 -#: admin/woocommerce-admin-reports.php:997 -#: admin/woocommerce-admin-reports.php:1095 -#: admin/woocommerce-admin-reports.php:1214 -msgid "Sales" -msgstr "販売" - -#: admin/woocommerce-admin-content.php:60 -msgid "Reports for sales based on date, top sellers and top earners." -msgstr "日付・トップセラー商品・高利益商品のレポート" - -#: admin/woocommerce-admin-content.php:61 -msgid "Coupon usage reports." -msgstr "クーポンの利用レポート" - -#: admin/woocommerce-admin-content.php:62 -#: admin/woocommerce-admin-reports.php:79 -msgid "Customers" -msgstr "お客様" - -#: admin/woocommerce-admin-content.php:62 -msgid "Customer reports, such as signups per day." -msgstr "顧客レポート、1日あたりの申し込みなど" - -#: admin/woocommerce-admin-content.php:63 -msgid "Stock reports for low stock and out of stock items." -msgstr "「在庫が少ない商品」と「在庫がある商品」のレポート" - -#: admin/woocommerce-admin-content.php:68 -#: admin/woocommerce-admin-dashboard.php:142 -msgid "Orders" -msgstr "受注" - -#: admin/woocommerce-admin-content.php:70 -msgid "" -"The orders section can be accessed from the left-hand navigation menu. Here " -"you can view and manage customer orders." -msgstr "" -"受注は左側のナビゲーションメニューからアクセスすることができます。ここでは、" -"顧客の注文を表示および管理できます。" - -#: admin/woocommerce-admin-content.php:71 -msgid "" -"Orders can also be added from this section if you want to set them up for a " -"customer manually." -msgstr "受注もこのセクションから追加や設定をすることができます。." - -#: admin/woocommerce-admin-content.php:78 -msgid "" -"Coupons can be managed from this section. Once added, customers will be able " -"to enter coupon codes on the cart/checkout page. If a customer uses a coupon " -"code they will be viewable when viewing orders." -msgstr "" -"クーポンはこのセクションから管理することができます。クーポンを追加すると、お" -"客様は「カートのチェックアウトページ」にクーポンコードを入力することができま" -"す。使用されたクーポンは注文を見る時に確認できます。" - -#: admin/woocommerce-admin-content.php:82 -msgid "For more information:" -msgstr "詳細について:" - -#: admin/woocommerce-admin-content.php:83 admin/woocommerce-admin-init.php:62 -#: admin/woocommerce-admin-init.php:71 admin/woocommerce-admin-init.php:404 -msgid "WooCommerce" -msgstr "WooCommerce" - -#: admin/woocommerce-admin-content.php:84 -msgid "Project on WordPress.org" -msgstr "WordPress.orgのプロジェクト" - -#: admin/woocommerce-admin-content.php:85 -msgid "Project on Github" -msgstr "Githubのプロジェクト" - -#: admin/woocommerce-admin-content.php:86 -msgid "WooCommerce Docs" -msgstr "WooCommerceドキュメント" - -#: admin/woocommerce-admin-content.php:87 -msgid "Official Extensions" -msgstr "公式拡張機能" - -#: admin/woocommerce-admin-content.php:88 -msgid "Official Themes" -msgstr "公式テーマ" - -#: admin/woocommerce-admin-dashboard.php:40 -msgid "Monthly Sales" -msgstr "月間売上" - -#: admin/woocommerce-admin-dashboard.php:43 -msgid "WooCommerce Right Now" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:44 -msgid "WooCommerce Recent Orders" -msgstr "WooCommerce 最近の注文状況" - -#: admin/woocommerce-admin-dashboard.php:45 -msgid "WooCommerce Recent Reviews" -msgstr "WooCommerce 新着レビューリスト" - -#: admin/woocommerce-admin-dashboard.php:78 -msgid "Shop Content" -msgstr "ショップ コンセプト" - -#: admin/woocommerce-admin-dashboard.php:84 -#: admin/woocommerce-admin-functions.php:200 -#: admin/woocommerce-admin-init.php:761 -#: admin/woocommerce-admin-reports.php:996 -#: admin/woocommerce-admin-reports.php:1094 -msgid "Product" -msgid_plural "Products" -msgstr[0] "商品" - -#: admin/woocommerce-admin-dashboard.php:98 -msgid "Product Category" -msgid_plural "Product Categories" -msgstr[0] "商品カテゴリー" - -#: admin/woocommerce-admin-dashboard.php:112 -msgid "Product Tag" -msgid_plural "Product Tags" -msgstr[0] "商品タグ" - -#: admin/woocommerce-admin-dashboard.php:126 -msgid "Attribute" -msgid_plural "Attributes" -msgstr[0] "属性" - -#: admin/woocommerce-admin-dashboard.php:148 -msgid "Pending" -msgstr "未決定" - -#: admin/woocommerce-admin-dashboard.php:162 -msgid "On-Hold" -msgstr "保留" - -#: admin/woocommerce-admin-dashboard.php:190 -msgid "Completed" -msgstr "完成" - -#: admin/woocommerce-admin-dashboard.php:207 -msgid "You are using WooCommerce %s." -msgstr "あなたが使用している WooCommerce %s。" - -#: admin/woocommerce-admin-dashboard.php:238 -msgid "l jS \\of F Y h:i:s A" -msgstr "【 Fj日 l】【Y年】 A:h時i分s秒" - -#: admin/woocommerce-admin-dashboard.php:239 -msgid "item" -msgid_plural "items" -msgstr[0] "アイテム" - -#: admin/woocommerce-admin-dashboard.php:239 -msgid "Total:" -msgstr "合計:" - -#: admin/woocommerce-admin-dashboard.php:245 -msgid "There are no product orders yet." -msgstr "注文はございません" - -#: admin/woocommerce-admin-dashboard.php:279 -msgid "out of 5" -msgstr "5点満点" - -#: admin/woocommerce-admin-dashboard.php:287 -msgid "There are no product reviews yet." -msgstr "商品のレビューはまだありません。" - -#: admin/woocommerce-admin-dashboard.php:428 -msgid "Sold" -msgstr "売り切れ" - -#: admin/woocommerce-admin-dashboard.php:429 -msgid "Earned" -msgstr "高売上" - -#: admin/woocommerce-admin-functions.php:190 -#: admin/woocommerce-admin-install.php:225 -msgid "Order Received" -msgstr "注文受付" - -#: admin/woocommerce-admin-functions.php:192 -msgid "" -"Thank you, we are now processing your order. Your order's details are below." -msgstr "" -"ありがとうございます。只今、注文処理しています。注文の詳細は以下の通りです。" - -#: admin/woocommerce-admin-functions.php:194 -msgid "Order:" -msgstr "注文:" - -#: admin/woocommerce-admin-functions.php:201 -msgid "Quantity" -msgstr "数" - -#: admin/woocommerce-admin-functions.php:214 -msgid "Order total:" -msgstr "注文合計:" - -#: admin/woocommerce-admin-functions.php:220 -msgid "Customer details" -msgstr "お客様詳細" - -#: admin/woocommerce-admin-functions.php:226 -msgid "Billing address" -msgstr "お客様情報" - -#: admin/woocommerce-admin-functions.php:233 -msgid "Shipping address" -msgstr "配送先住所" - -#: admin/woocommerce-admin-functions.php:465 -msgid "Could not compile woocommerce.less:" -msgstr "woocommerce.less を編集できませんでした" - -#: admin/woocommerce-admin-functions.php:486 -#: admin/woocommerce-admin-functions.php:487 -msgid "Mark processing" -msgstr "マーク処理" - -#: admin/woocommerce-admin-functions.php:489 -#: admin/woocommerce-admin-functions.php:490 -msgid "Mark completed" -msgstr "マーク完成" - -#: admin/woocommerce-admin-functions.php:527 -msgid "Order status changed by bulk edit:" -msgstr "一括編集で注文ステータスが変更されました:" - -#: admin/woocommerce-admin-functions.php:550 -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "%s 注文ステータスが変更されました" - -#: admin/woocommerce-admin-init.php:88 -msgid "WooCommerce Settings" -msgstr "WooCommerce 設定" - -#: admin/woocommerce-admin-init.php:89 -msgid "WooCommerce Status" -msgstr "WooCommerce ステータス" - -#: admin/woocommerce-admin-init.php:142 admin/woocommerce-admin-init.php:144 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "受注" - -#: admin/woocommerce-admin-init.php:433 -msgid "" -"Are you sure you want to remove the selected items? If you have previously " -"reduced this item's stock, or this order was submitted by a customer, you " -"will need to manually restore the item's stock." -msgstr "" -"あなたが選択した項目を削除してもよろしいですか?以前にこのアイテムの在庫を減" -"らしている、またはこの注文が顧客による注文の場合は、手動でアイテムの在庫を復" -"元する必要があります。" - -#: admin/woocommerce-admin-init.php:434 -msgid "Please select some items." -msgstr "いくつかの項目を選択してください" - -#: admin/woocommerce-admin-init.php:435 -msgid "Remove this item meta?" -msgstr "この商品metaを削除しますか?" - -#: admin/woocommerce-admin-init.php:436 -msgid "Remove this attribute?" -msgstr "この属性を削除しますか?" - -#: admin/woocommerce-admin-init.php:444 -msgid "Enter a name for the new attribute term:" -msgstr "新しい属性の用語の名前を入力します:" - -#: admin/woocommerce-admin-init.php:445 -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "注文された商品を、割引および配送料に基づいて合計を計算する?" - -#: admin/woocommerce-admin-init.php:446 -msgid "" -"Calculate line taxes? This will calculate taxes based on the customers " -"country. If no billing/shipping is set it will use the store base country." -msgstr "" -"税明細を計算しますか? これにより、お客様の国に基づいて税金を計算します。請求" -"と配送が設定されていない場合は、ショップ所在地を基本の国に使用します。" - -#: admin/woocommerce-admin-init.php:447 -msgid "" -"Copy billing information to shipping information? This will remove any " -"currently entered shipping information." -msgstr "" -"コピーの請求情報は配送情報に?ここでは、現在入力お届け先情報を削除します。" - -#: admin/woocommerce-admin-init.php:448 -msgid "" -"Load the customer's billing information? This will remove any currently " -"entered billing information." -msgstr "" -"お客様情報を読み込みますか? (注意)現在入力してあるお客様情報は削除されま" -"す。" - -#: admin/woocommerce-admin-init.php:449 -msgid "" -"Load the customer's shipping information? This will remove any currently " -"entered shipping information." -msgstr "" -"お客様の配送先住所を読み込みますか? (注意)現在入力してある配送先住所は削除" -"されます。" - -#: admin/woocommerce-admin-init.php:453 -msgid "No customer selected" -msgstr "選択したお客様はいませ" - -#: admin/woocommerce-admin-init.php:665 -msgid "Product updated. View Product" -msgstr "商品を更新しました。 商品を見る" - -#: admin/woocommerce-admin-init.php:666 admin/woocommerce-admin-init.php:681 -#: admin/woocommerce-admin-init.php:696 -msgid "Custom field updated." -msgstr "カスタムフィールドを更新しました" - -#: admin/woocommerce-admin-init.php:667 admin/woocommerce-admin-init.php:682 -#: admin/woocommerce-admin-init.php:697 -msgid "Custom field deleted." -msgstr "カスタムフィールドを削除しました" - -#: admin/woocommerce-admin-init.php:668 -msgid "Product updated." -msgstr "商品を更新" - -#: admin/woocommerce-admin-init.php:669 -msgid "Product restored to revision from %s" -msgstr "%sでの修正を復元しました" - -#: admin/woocommerce-admin-init.php:670 -msgid "Product published. View Product" -msgstr "公開しました。表示ページ" - -#: admin/woocommerce-admin-init.php:671 -msgid "Product saved." -msgstr "商品を保存しました" - -#: admin/woocommerce-admin-init.php:672 -msgid "Product submitted. Preview Product" -msgstr "商品登録完了. 商品プレビュー" - -#: admin/woocommerce-admin-init.php:673 -msgid "" -"Product scheduled for: %1$s. Preview Product" -msgstr "" -"Product scheduled for: %1$s. 商品プレビュー" - -#: admin/woocommerce-admin-init.php:674 admin/woocommerce-admin-init.php:689 -#: admin/woocommerce-admin-init.php:704 -msgid "M j, Y @ G:i" -msgstr "" - -#: admin/woocommerce-admin-init.php:675 -msgid "" -"Product draft updated. Preview Product" -msgstr "下書きとして保存 商品プレビュー" - -#: admin/woocommerce-admin-init.php:680 admin/woocommerce-admin-init.php:683 -#: admin/woocommerce-admin-init.php:685 -msgid "Order updated." -msgstr "注文を更新" - -#: admin/woocommerce-admin-init.php:684 -msgid "Order restored to revision from %s" -msgstr "%sでの修正を復元しました" - -#: admin/woocommerce-admin-init.php:686 -msgid "Order saved." -msgstr "注文を保存" - -#: admin/woocommerce-admin-init.php:687 -msgid "Order submitted." -msgstr "注文を提出" - -#: admin/woocommerce-admin-init.php:688 -msgid "Order scheduled for: %1$s." -msgstr "注文スケジュール: %1$s." - -#: admin/woocommerce-admin-init.php:690 -msgid "Order draft updated." -msgstr "下書きとして保存" - -#: admin/woocommerce-admin-init.php:695 admin/woocommerce-admin-init.php:698 -#: admin/woocommerce-admin-init.php:700 -msgid "Coupon updated." -msgstr "クーポンを更新" - -#: admin/woocommerce-admin-init.php:699 -msgid "Coupon restored to revision from %s" -msgstr "%sでの修正を復元しました" - -#: admin/woocommerce-admin-init.php:701 -msgid "Coupon saved." -msgstr "クーポンを保存" - -#: admin/woocommerce-admin-init.php:702 -msgid "Coupon submitted." -msgstr "クーポンを削除" - -#: admin/woocommerce-admin-init.php:703 -msgid "Coupon scheduled for: %1$s." -msgstr "クーポンスケジュール:%1$s." - -#: admin/woocommerce-admin-init.php:705 -msgid "Coupon draft updated." -msgstr "クーポンを下書きとして保存" - -#: admin/woocommerce-admin-init.php:722 -msgid "Order notes" -msgstr "注文書" - -#: admin/woocommerce-admin-init.php:737 -msgid "" -"These settings control the permalinks used for products. These settings only " -"apply when not using \"default\" permalinks above." -msgstr "" -"これらの設定は、商品に使用するパーマリンクを制御します。上記の\"デ" -"フォルト\"のパーマリンクを使用していないと、これらの設定にのみ適用さ" -"れます。" - -#: admin/woocommerce-admin-init.php:744 -msgctxt "default-slug" -msgid "shop" -msgstr "停止" - -#: admin/woocommerce-admin-init.php:745 -msgctxt "default-slug" -msgid "product" -msgstr "商品" - -#: admin/woocommerce-admin-init.php:766 -msgid "Shop base" -msgstr "" - -#: admin/woocommerce-admin-init.php:770 -msgid "Shop base with category" -msgstr "" - -#: admin/woocommerce-admin-init.php:776 -msgid "Custom Base" -msgstr "" - -#: admin/woocommerce-admin-init.php:778 -msgid "" -"Enter a custom base to use. A base must be set or WordPress " -"will use default instead." -msgstr "" -"使用するカスタムベースを入力します。ベースを設定する必要があります、または、" -"WordPressはその代わりにデフォルトを使います。" - -#: admin/woocommerce-admin-init.php:806 -msgid "Product permalink base" -msgstr "商品パーマリンクベース" - -#: admin/woocommerce-admin-init.php:811 -msgid "Product category base" -msgstr "商品カテゴリーベース" - -#: admin/woocommerce-admin-init.php:818 -msgid "Product tag base" -msgstr "商品タグベース" - -#: admin/woocommerce-admin-init.php:825 -msgid "Product attribute base" -msgstr "商品属性ベース" - -#: admin/woocommerce-admin-install.php:195 -msgctxt "page_slug" -msgid "shop" -msgstr "ショップ" - -#: admin/woocommerce-admin-install.php:195 -msgid "Shop" -msgstr "ショップ" - -#: admin/woocommerce-admin-install.php:198 -msgctxt "page_slug" -msgid "cart" -msgstr "カート" - -#: admin/woocommerce-admin-install.php:198 -#: admin/woocommerce-admin-status.php:303 -msgid "Cart" -msgstr "カート" - -#: admin/woocommerce-admin-install.php:201 -msgctxt "page_slug" -msgid "checkout" -msgstr "お支払い" - -#: admin/woocommerce-admin-install.php:204 -msgctxt "page_slug" -msgid "my-account" -msgstr "マイアカウント" - -#: admin/woocommerce-admin-install.php:204 -#: admin/woocommerce-admin-status.php:319 -msgid "My Account" -msgstr "マイアカウント" - -#: admin/woocommerce-admin-install.php:210 -msgctxt "page_slug" -msgid "edit-address" -msgstr "住所を編集" - -#: admin/woocommerce-admin-install.php:210 -msgid "Edit My Address" -msgstr "マイアドレスを編集" - -#: admin/woocommerce-admin-install.php:213 -msgctxt "page_slug" -msgid "view-order" -msgstr "注文を見る" - -#: admin/woocommerce-admin-install.php:213 -#: admin/woocommerce-admin-status.php:327 -msgid "View Order" -msgstr "注文を見る" - -#: admin/woocommerce-admin-install.php:216 -msgctxt "page_slug" -msgid "change-password" -msgstr "パスワード変更" - -#: admin/woocommerce-admin-install.php:216 -#: admin/woocommerce-admin-status.php:331 -msgid "Change Password" -msgstr "パスワード変更" - -#: admin/woocommerce-admin-install.php:219 -msgctxt "page_slug" -msgid "logout" -msgstr "ログアウト" - -#: admin/woocommerce-admin-install.php:219 -msgid "Logout" -msgstr "ログアウト" - -#: admin/woocommerce-admin-install.php:222 -msgctxt "page_slug" -msgid "pay" -msgstr "支払い(pay)" - -#: admin/woocommerce-admin-install.php:222 -msgid "Checkout → Pay" -msgstr "" - -#: admin/woocommerce-admin-install.php:225 -msgctxt "page_slug" -msgid "order-received" -msgstr "注文受付" - -#: admin/woocommerce-admin-reports.php:32 -msgid "Sales by day" -msgstr "日別売上高" - -#: admin/woocommerce-admin-reports.php:37 -msgid "Sales by month" -msgstr "月別売上高" - -#: admin/woocommerce-admin-reports.php:104 -msgid "Taxes by month" -msgstr "月別税金" - -#: admin/woocommerce-admin-reports.php:42 -msgid "Product Sales" -msgstr "商品売上" - -#: admin/woocommerce-admin-reports.php:47 -msgid "Top sellers" -msgstr "販売数トップ" - -#: admin/woocommerce-admin-reports.php:52 -msgid "Top earners" -msgstr "高売上" - -#: admin/woocommerce-admin-reports.php:57 -msgid "Sales by category" -msgstr "カテゴリ別売上高" - -#: admin/woocommerce-admin-reports.php:72 -msgid "Discounts by coupon" -msgstr "クーポンによる割引" - -#: admin/woocommerce-admin-reports.php:243 -#: admin/woocommerce-admin-reports.php:508 -#: admin/woocommerce-admin-reports.php:713 -#: admin/woocommerce-admin-reports.php:894 -msgid "Sales amount" -msgstr "売上高" - -#: admin/woocommerce-admin-reports.php:248 -#: admin/woocommerce-admin-reports.php:508 -#: admin/woocommerce-admin-reports.php:713 -#: admin/woocommerce-admin-reports.php:894 -msgid "Number of sales" -msgstr "販売数" - -#: admin/woocommerce-admin-reports.php:380 -msgid "Total sales" -msgstr "総売上高" - -#: admin/woocommerce-admin-reports.php:382 -#: admin/woocommerce-admin-reports.php:388 -#: admin/woocommerce-admin-reports.php:394 -#: admin/woocommerce-admin-reports.php:400 -#: admin/woocommerce-admin-reports.php:406 -#: admin/woocommerce-admin-reports.php:412 -#: admin/woocommerce-admin-reports.php:655 -#: admin/woocommerce-admin-reports.php:661 -#: admin/woocommerce-admin-reports.php:667 -#: admin/woocommerce-admin-reports.php:673 -#: admin/woocommerce-admin-reports.php:839 -#: admin/woocommerce-admin-reports.php:845 -#: admin/woocommerce-admin-reports.php:851 -#: admin/woocommerce-admin-reports.php:857 -#: admin/woocommerce-admin-reports.php:1380 -#: admin/woocommerce-admin-reports.php:1386 -#: admin/woocommerce-admin-reports.php:1392 -#: admin/woocommerce-admin-reports.php:1826 -#: admin/woocommerce-admin-reports.php:1832 -#: admin/woocommerce-admin-reports.php:1838 -#: admin/woocommerce-admin-reports.php:1844 -#: admin/woocommerce-admin-reports.php:1850 -#: admin/woocommerce-admin-reports.php:1856 -#: admin/woocommerce-admin-reports.php:2320 -#: admin/woocommerce-admin-reports.php:2331 -#: admin/woocommerce-admin-reports.php:2342 -msgid "n/a" -msgstr "n/a" - -#: admin/woocommerce-admin-reports.php:386 -msgid "Total orders" -msgstr "総受注" - -#: admin/woocommerce-admin-reports.php:388 -#: admin/woocommerce-admin-reports.php:661 -#: admin/woocommerce-admin-reports.php:845 -msgid "items" -msgstr "商品" - -#: admin/woocommerce-admin-reports.php:392 -msgid "Average order total" -msgstr "平均注文合計" - -#: admin/woocommerce-admin-reports.php:398 -msgid "Average order items" -msgstr "平均注文数" - -#: admin/woocommerce-admin-reports.php:404 -msgid "Discounts used" -msgstr "使用された割引" - -#: admin/woocommerce-admin-reports.php:410 -msgid "Total shipping costs" -msgstr "合計送料" - -#: admin/woocommerce-admin-reports.php:418 -msgid "This month's sales" -msgstr "今月の売上" - -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1372 -msgid "From:" -msgstr "" - -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1372 -msgid "To:" -msgstr "" - -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:832 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1245 -#: admin/woocommerce-admin-reports.php:1372 -#: admin/woocommerce-admin-reports.php:1505 -#: admin/woocommerce-admin-reports.php:2309 -#: admin/woocommerce-admin-reports.php:2492 -msgid "Show" -msgstr "表示する" - -#: admin/woocommerce-admin-reports.php:653 -msgid "Total sales in range" -msgstr "範囲内の総売上高" - -#: admin/woocommerce-admin-reports.php:659 -msgid "Total orders in range" -msgstr "範囲内の総受注" - -#: admin/woocommerce-admin-reports.php:665 -msgid "Average order total in range" -msgstr "範囲内の平均注文合計" - -#: admin/woocommerce-admin-reports.php:671 -msgid "Average order items in range" -msgstr "範囲内の平均の注文アイテム" - -#: admin/woocommerce-admin-reports.php:679 -msgid "Sales in range" -msgstr "範囲内の売上" - -#: admin/woocommerce-admin-reports.php:826 -#: admin/woocommerce-admin-reports.php:2303 -msgid "Year:" -msgstr "年:" - -#: admin/woocommerce-admin-reports.php:837 -msgid "Total sales for year" -msgstr "年間総売上高" - -#: admin/woocommerce-admin-reports.php:843 -msgid "Total orders for year" -msgstr "年間の総受注" - -#: admin/woocommerce-admin-reports.php:849 -msgid "Average order total for year" -msgstr "年間の平均注文合計" - -#: admin/woocommerce-admin-reports.php:855 -msgid "Average order items for year" -msgstr "年間の平均受注アイテム" - -#: admin/woocommerce-admin-reports.php:863 -msgid "Monthly sales for year" -msgstr "年間の月次売上" - -#: admin/woocommerce-admin-reports.php:1011 -msgid "Product does not exist" -msgstr "商品が存在しませ" - -#: admin/woocommerce-admin-reports.php:1110 -msgid "Product no longer exists" -msgstr "商品はもう存在しません" - -#: admin/woocommerce-admin-reports.php:1209 -msgid "Sales for %s:" -msgstr "%s の販売:" - -#: admin/woocommerce-admin-reports.php:1213 -#: admin/woocommerce-admin-reports.php:2351 -msgid "Month" -msgstr "月" - -#: admin/woocommerce-admin-reports.php:1235 -msgid "No sales :(" -msgstr "売上なし :(" - -#: admin/woocommerce-admin-reports.php:1378 -msgid "Total orders containing coupons" -msgstr "クーポンを含む総受注" - -#: admin/woocommerce-admin-reports.php:1384 -msgid "Percent of orders containing coupons" -msgstr "クーポンを含む注文のパーセント" - -#: admin/woocommerce-admin-reports.php:1390 -msgid "Total coupon discount" -msgstr "総クーポン割引" - -#: admin/woocommerce-admin-reports.php:1399 -msgid "Most popular coupons" -msgstr "最も人気のクーポン" - -#: admin/woocommerce-admin-reports.php:1409 -msgid "Used 1 time" -msgid_plural "Used %d times" -msgstr[0] "使用 %d 回" - -#: admin/woocommerce-admin-reports.php:1412 -#: admin/woocommerce-admin-reports.php:1434 -msgid "No coupons found" -msgstr "クーポンが見つかりません" - -#: admin/woocommerce-admin-reports.php:1421 -msgid "Greatest discount amount" -msgstr "最大の割引額" - -#: admin/woocommerce-admin-reports.php:1431 -msgid "Discounted %s" -msgstr "%s 割引" - -#: admin/woocommerce-admin-reports.php:1490 -#: admin/woocommerce-admin-reports.php:2469 -msgid "Show:" -msgstr "表示:" - -#: admin/woocommerce-admin-reports.php:1547 -msgid "Coupon" -msgstr "クーポン" - -#: admin/woocommerce-admin-reports.php:1630 -msgid "Top coupon" -msgstr "トップクーポン" - -#: admin/woocommerce-admin-reports.php:1638 -msgid "Worst coupon" -msgstr "ワーストクーポン" - -#: admin/woocommerce-admin-reports.php:1646 -msgid "Discount average" -msgstr "割引平均" - -#: admin/woocommerce-admin-reports.php:1654 -msgid "Discount median" -msgstr "割引平均値" - -#: admin/woocommerce-admin-reports.php:1674 -msgid "Monthly discounts by coupon" -msgstr "クーポン別月間割引t" - -#: admin/woocommerce-admin-reports.php:1824 -msgid "Total customers" -msgstr "顧客合計" - -#: admin/woocommerce-admin-reports.php:1830 -msgid "Total customer sales" -msgstr "顧客に対する売上合計" - -#: admin/woocommerce-admin-reports.php:1836 -msgid "Total guest sales" -msgstr "ゲストに対する売上合計" - -#: admin/woocommerce-admin-reports.php:1842 -msgid "Total customer orders" -msgstr "顧客に対する販売数合計" - -#: admin/woocommerce-admin-reports.php:1848 -msgid "Total guest orders" -msgstr "ゲストに対する販売数合計" - -#: admin/woocommerce-admin-reports.php:1854 -msgid "Average orders per customer" -msgstr "顧客の平均受注金額" - -#: admin/woocommerce-admin-reports.php:1862 -msgid "Signups per day" -msgstr "1日当たりの申し込み数" - -#: admin/woocommerce-admin-reports.php:2083 -msgid "Low stock" -msgstr "在庫僅か" - -#: admin/woocommerce-admin-reports.php:2106 -#: admin/woocommerce-admin-reports.php:2145 -msgid "%d in stock" -msgid_plural "%d in stock" -msgstr[0] "在庫 %d" - -#: admin/woocommerce-admin-reports.php:2111 -msgid "No products are low in stock." -msgstr "在庫に余裕あり" - -#: admin/woocommerce-admin-reports.php:2143 -msgid "Marked out of stock" -msgstr "在庫切れのマーク" - -#: admin/woocommerce-admin-reports.php:2150 -msgid "No products are out in stock." -msgstr "入荷待ち" - -#: admin/woocommerce-admin-reports.php:2314 -msgid "Total taxes for year" -msgstr "年間の総税" - -#: admin/woocommerce-admin-reports.php:2325 -msgid "Total product taxes for year" -msgstr "年間の総商品税" - -#: admin/woocommerce-admin-reports.php:2336 -msgid "Total shipping tax for year" -msgstr "年間の総送料税" - -#: admin/woocommerce-admin-reports.php:2352 -msgid "Total Sales" -msgstr "総売上高" - -#: admin/woocommerce-admin-reports.php:2352 -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "これは受注フィールド内の総注文合計です" - -#: admin/woocommerce-admin-reports.php:2353 -msgid "Total Shipping" -msgstr "総送料合計" - -#: admin/woocommerce-admin-reports.php:2353 -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "これは受注フィールド内の総送料合計です" - -#: admin/woocommerce-admin-reports.php:2354 -msgid "Total Product Taxes" -msgstr "総商品税額" - -#: admin/woocommerce-admin-reports.php:2354 -msgid "This is the sum of the 'Cart Tax' field within your orders." -msgstr "これは受注フィールド内のカート税の総合計です" - -#: admin/woocommerce-admin-reports.php:2355 -msgid "Total Shipping Taxes" -msgstr "合計送料税額" - -#: admin/woocommerce-admin-reports.php:2355 -msgid "This is the sum of the 'Shipping Tax' field within your orders." -msgstr "これは受注フィールド内の送料税の総合計です" - -#: admin/woocommerce-admin-reports.php:2356 -msgid "Total Taxes" -msgstr "総税額" - -#: admin/woocommerce-admin-reports.php:2356 -msgid "" -"This is the sum of the 'Cart Tax' and 'Shipping Tax' fields within your " -"orders." -msgstr "これは受注フィールド内の「カート税」と「送料税」の総合計です" - -#: admin/woocommerce-admin-reports.php:2357 -msgid "Net profit" -msgstr "純利益" - -#: admin/woocommerce-admin-reports.php:2357 -msgid "Total sales minus shipping and tax." -msgstr "総売上高から「配送料と税金」を差し引く" - -#: admin/woocommerce-admin-reports.php:2402 -msgid "Toggle tax rows" -msgstr "税列切替" - -#: admin/woocommerce-admin-reports.php:2545 -msgid "Category" -msgstr "カテゴリー" - -#: admin/woocommerce-admin-reports.php:2648 -msgid "Top category" -msgstr "トップカテゴリー" - -#: admin/woocommerce-admin-reports.php:2657 -msgid "Worst category" -msgstr "ワーストカテゴリー" - -#: admin/woocommerce-admin-reports.php:2665 -msgid "Category sales average" -msgstr "カテゴリーの売上平均" - -#: admin/woocommerce-admin-reports.php:2676 -msgid "Category sales median" -msgstr "カテゴリー平均値" - -#: admin/woocommerce-admin-reports.php:2696 -msgid "Monthly sales by category" -msgstr "カテゴリ別月間売上高" - -#: admin/woocommerce-admin-settings.php:45 -msgid "Action failed. Please refresh the page and retry." -msgstr "アクションは失敗しました。ページをリフレッシュし、再試行してください。" - -#: admin/woocommerce-admin-settings.php:164 -msgid "Your settings have been saved." -msgstr "設定が保存されました" - -#: admin/woocommerce-admin-settings.php:210 -msgid "" -"More functionality and gateway options available via WC official extensions." -msgstr "" -"WC公認拡張により、より多くの機能とゲート" -"ウェイオプションが利用可能です。" - -#: admin/woocommerce-admin-settings.php:228 -msgid "Tax Rates" -msgstr "税率" - -#: admin/woocommerce-admin-settings.php:255 -msgid "Email Options" -msgstr "Eメールオプション" - -#: admin/woocommerce-admin-settings.php:388 -msgid "Save changes" -msgstr "変更を保存" - -#: admin/woocommerce-admin-settings.php:429 -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "ページから移動した場合、変更内容は保存されません" - -#: admin/woocommerce-admin-settings.php:801 -msgid "Hard Crop" -msgstr "" - -#: admin/woocommerce-admin-settings.php:826 -msgid "Select a page…" -msgstr "ページを選択…" - -#: admin/woocommerce-admin-settings.php:849 -msgid "Choose a country…" -msgstr "国を選択…" - -#: admin/woocommerce-admin-settings.php:869 -msgid "Choose countries…" -msgstr "国を選択…" - -#: admin/woocommerce-admin-status.php:27 -#: admin/woocommerce-admin-status.php:664 -msgid "Tools" -msgstr "ツール" - -#: admin/woocommerce-admin-status.php:62 -msgid "Please include this information when requesting support:" -msgstr "サポートを依頼する際に、この情報を含めるようにしてください:" - -#: admin/woocommerce-admin-status.php:63 -msgid "Download System Report File" -msgstr "システムレポートファイルをダウンロード" - -#: admin/woocommerce-admin-status.php:71 -msgid "Environment" -msgstr "環境" - -#: admin/woocommerce-admin-status.php:77 -msgid "Home URL" -msgstr "ホームURL" - -#: admin/woocommerce-admin-status.php:81 -msgid "Site URL" -msgstr "サイトURL" - -#: admin/woocommerce-admin-status.php:85 -msgid "WC Version" -msgstr "WC バージョン" - -#: admin/woocommerce-admin-status.php:89 -msgid "WC Database Version" -msgstr "WC データベースのバージョン" - -#: admin/woocommerce-admin-status.php:93 -msgid "WP Version" -msgstr "WP バージョン" - -#: admin/woocommerce-admin-status.php:97 -msgid "Web Server Info" -msgstr "Webサーバ情報" - -#: admin/woocommerce-admin-status.php:101 -msgid "PHP Version" -msgstr "PHPバージョン" - -#: admin/woocommerce-admin-status.php:105 -msgid "MySQL Version" -msgstr "MySQL バージョン" - -#: admin/woocommerce-admin-status.php:109 -msgid "WP Memory Limit" -msgstr "WPメモリー制限" - -#: admin/woocommerce-admin-status.php:114 -msgid "" -"%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "" -"%s - 少なくとも64MBまでメモリを設定することをお勧めします。 参照: PHPに割り当てられたメモリ使用量を増やす。" - -#: admin/woocommerce-admin-status.php:121 -msgid "WP Debug Mode" -msgstr "WP デバッグモード" - -#: admin/woocommerce-admin-status.php:125 -msgid "WP Max Upload Size" -msgstr "WP 最大アップロードサイズ" - -#: admin/woocommerce-admin-status.php:129 -msgid "PHP Post Max Size" -msgstr "" - -#: admin/woocommerce-admin-status.php:133 -msgid "PHP Time Limit" -msgstr "" - -#: admin/woocommerce-admin-status.php:137 -msgid "WC Logging" -msgstr "" - -#: admin/woocommerce-admin-status.php:140 -msgid "Log directory is writable." -msgstr "ログディレクトリは書き込み可能です" - -#: admin/woocommerce-admin-status.php:142 -msgid "" -"Log directory (woocommerce/logs/) is not writable. Logging will " -"not be possible." -msgstr "" -"ログディレクトリ (woocommerce/logs/)が書き込み可能ではありませ" -"ん。Loggingが可能にならないでしょう。" - -#: admin/woocommerce-admin-status.php:149 -msgid "fsockopen/cURL" -msgstr "" - -#: admin/woocommerce-admin-status.php:152 -msgid "Your server has fsockopen and cURL enabled." -msgstr "ご使用のサーバーは、fsockopen と cURLが有効になっています。" - -#: admin/woocommerce-admin-status.php:154 -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "" -"ご使用のサーバーは、fsockopenが有効になっています。cURLは無効になっています。" - -#: admin/woocommerce-admin-status.php:156 -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "" -"ご使用のサーバーはcURLが有効になっています。fsockopenは無効になっています。" - -#: admin/woocommerce-admin-status.php:160 -msgid "" -"Your server does not have fsockopen or cURL enabled - PayPal IPN and other " -"scripts which communicate with other servers will not work. Contact your " -"hosting provider." -msgstr "" -"ご使用のサーバーには、fsockopenが無いか、cURLが有効になっていません。- " -"PayPal IPN および他のサーバと通信する他のスクリプトが動作しません。ホスティン" -"グプロバイダにお問い合わせください。" - -#: admin/woocommerce-admin-status.php:165 -msgid "SOAP Client" -msgstr "" - -#: admin/woocommerce-admin-status.php:167 -msgid "Your server has the SOAP Client class enabled." -msgstr "ご使用のサーバーには、SOAP Client classが有効になっている。" - -#: admin/woocommerce-admin-status.php:170 -msgid "" -"Your server does not have the SOAP Client class enabled - " -"some gateway plugins which use SOAP may not work as expected." -msgstr "" -"ご使用のサーバーは、SOAP Client classが有効になっていませ" -"ん。- SOAPを使用するいくつかのゲートウェイプラグインが予期せぬ動作をする可能" -"性があります。" - -#: admin/woocommerce-admin-status.php:175 -msgid "WP Remote Post" -msgstr "" - -#: admin/woocommerce-admin-status.php:186 -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "wp_remote_post() が成功しました - PayPal IPN が動作しています" - -#: admin/woocommerce-admin-status.php:189 -msgid "" -"wp_remote_post() failed. PayPal IPN won't work with your server. Contact " -"your hosting provider. Error:" -msgstr "" -"wp_remote_post() が失敗しました。PayPal IPN はご使用のサーバーでは動作してい" -"ません。ホスティングプロバイダにお問い合わせください。Error:" - -#: admin/woocommerce-admin-status.php:192 -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "" -"wp_remote_post() が失敗しました。PayPal IPN はご使用のサーバーでは動作しない" -"場合があります。" - -#: admin/woocommerce-admin-status.php:215 -msgid "Plugins" -msgstr "プラグイン" - -#: admin/woocommerce-admin-status.php:221 -msgid "Installed Plugins" -msgstr "インストールされたプラグイン" - -#: admin/woocommerce-admin-status.php:262 -msgid "by" -msgstr "" - -#: admin/woocommerce-admin-status.php:262 -msgid "version" -msgstr "バージョン" - -#: admin/woocommerce-admin-status.php:285 -msgid "Force SSL" -msgstr "" - -#: admin/woocommerce-admin-status.php:292 -msgid "WC Pages" -msgstr "WC ページ" - -#: admin/woocommerce-admin-status.php:299 -msgid "Shop Base" -msgstr "" - -#: admin/woocommerce-admin-status.php:311 -msgid "Pay" -msgstr "" - -#: admin/woocommerce-admin-status.php:315 -msgid "Thanks" -msgstr "" - -#: admin/woocommerce-admin-status.php:323 -msgid "Edit Address" -msgstr "住所の編集" - -#: admin/woocommerce-admin-status.php:355 -msgid "Page not set" -msgstr "ページ設定されていません" - -#: admin/woocommerce-admin-status.php:365 -msgid "Page does not exist" -msgstr "ページが存在しません" - -#: admin/woocommerce-admin-status.php:370 -msgid "Page does not contain the shortcode: %s" -msgstr "ページには、ショートコードが含まれていません: %s" - -#: admin/woocommerce-admin-status.php:389 -msgid "WC Taxonomies" -msgstr "" - -#: admin/woocommerce-admin-status.php:395 -msgid "Order Statuses" -msgstr "受注ステータス" - -#: admin/woocommerce-admin-status.php:405 -msgid "Product Types" -msgstr "商品タイプ" - -#: admin/woocommerce-admin-status.php:418 -msgid "Templates" -msgstr "テンプレート" - -#: admin/woocommerce-admin-status.php:424 -msgid "Template Overrides" -msgstr "テンプレート無効化" - -#: admin/woocommerce-admin-status.php:442 -msgid "No core overrides present in theme." -msgstr "コアはテーマの存在よりも優先されない" - -#: admin/woocommerce-admin-status.php:537 -msgid "WC Transients" -msgstr "" - -#: admin/woocommerce-admin-status.php:538 -msgid "Clear transients" -msgstr "" - -#: admin/woocommerce-admin-status.php:539 -msgid "This tool will clear the product/shop transients cache." -msgstr "" -"このツールは、「商品」と「ショップ」の瞬間値のキャッシュをクリアします。" - -#: admin/woocommerce-admin-status.php:542 -msgid "Expired Transients" -msgstr "" - -#: admin/woocommerce-admin-status.php:543 -msgid "Clear expired transients" -msgstr "" - -#: admin/woocommerce-admin-status.php:544 -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "" -"このツールは、Wordpressの全ての期限切れのトランジェントをクリアします。" - -#: admin/woocommerce-admin-status.php:547 -msgid "Term counts" -msgstr "" - -#: admin/woocommerce-admin-status.php:548 -msgid "Recount terms" -msgstr "" - -#: admin/woocommerce-admin-status.php:549 -msgid "" -"This tool will recount product terms - useful when changing your settings in " -"a way which hides products from the catalog." -msgstr "" -"このツールは、製品条件を語ります。- カタログから商品を隠す設定に変更したとき" -"役立ちます。" - -#: admin/woocommerce-admin-status.php:552 -msgid "Capabilities" -msgstr "機能" - -#: admin/woocommerce-admin-status.php:553 -msgid "Reset capabilities" -msgstr "機能をリセット" - -#: admin/woocommerce-admin-status.php:554 -msgid "" -"This tool will reset the admin, customer and shop_manager roles to default. " -"Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "" -"このツールはデフォルトで、「顧客」と「shop_manager ルール」を管理者がリセット" -"出来るようになっています。ユーザーが全てのWooCommerce管理ページにアクセスでき" -"ない場合に使用します。" - -#: admin/woocommerce-admin-status.php:569 -msgid "Product Transients Cleared" -msgstr "商品瞬間値をクリ" - -#: admin/woocommerce-admin-status.php:610 -msgid "%d Transients Rows Cleared" -msgstr "%d Transientsの行がクリアされます。" - -#: admin/woocommerce-admin-status.php:618 -msgid "Roles successfully reset" -msgstr "ロールが正常にリセット" - -#: admin/woocommerce-admin-status.php:630 -msgid "Terms successfully recounted" -msgstr "" - -#: admin/woocommerce-admin-status.php:649 -msgid "There was an error calling %s::%s" -msgstr "呼び出し中にエラーが発生 %s::%st" - -#: admin/woocommerce-admin-status.php:652 -msgid "There was an error calling %s" -msgstr " %s 呼び出し中にエラーが発生" - -#: admin/woocommerce-admin-taxonomies.php:25 -#: admin/woocommerce-admin-taxonomies.php:118 -msgid "Display type" -msgstr "表示タイプ" - -#: admin/woocommerce-admin-taxonomies.php:29 -#: admin/woocommerce-admin-taxonomies.php:123 -msgid "Subcategories" -msgstr "サブカテゴリ" - -#: admin/woocommerce-admin-taxonomies.php:30 -#: admin/woocommerce-admin-taxonomies.php:124 -msgid "Both" -msgstr "両方" - -#: admin/woocommerce-admin-taxonomies.php:34 -#: admin/woocommerce-admin-taxonomies.php:129 -msgid "Thumbnail" -msgstr "サムネイル" - -#: admin/woocommerce-admin-taxonomies.php:38 -#: admin/woocommerce-admin-taxonomies.php:134 -msgid "Upload/Add image" -msgstr "アップロード/画像を追加" - -#: admin/woocommerce-admin-taxonomies.php:39 -#: admin/woocommerce-admin-taxonomies.php:135 -msgid "Remove image" -msgstr "画像を削除" - -#: admin/woocommerce-admin-taxonomies.php:64 -#: admin/woocommerce-admin-taxonomies.php:156 -msgid "Use image" -msgstr "使用している画像" - -#: admin/woocommerce-admin-taxonomies.php:222 -msgid "" -"Product categories for your store can be managed here. To change the order " -"of categories on the front-end you can drag and drop to sort them. To see " -"more categories listed click the \"screen options\" link at the top of the " -"page." -msgstr "" -"商品カテゴリーはここで管理することができます。フロントエンドでカテゴリの順序" -"を変更するには、ドラッグアンドドロップでの並べ替えが可能です。ページの上部に" -"ある表示オプションをクリックしてカテゴリーを参照下さい。" - -#: admin/woocommerce-admin-taxonomies.php:237 -msgid "" -"Shipping classes can be used to group products of similar type. These groups " -"can then be used by certain shipping methods to provide different rates to " -"different products." -msgstr "" -"配送クラスは類似のグループ商品に使用できます。またその後、特定の配送方法に" -"よって異なる商品に異なるレートを使用することができます。" - -#: admin/woocommerce-admin-users.php:26 -msgid "Billing Address" -msgstr "お客様住所" - -#: admin/woocommerce-admin-users.php:27 -msgid "Shipping Address" -msgstr "配送先住所" - -#: admin/woocommerce-admin-users.php:28 -msgid "Paying Customer?" -msgstr "お支払い済みのお客様?" - -#: admin/woocommerce-admin-users.php:29 -msgid "Completed Orders" -msgstr "完了した注文" - -#: admin/woocommerce-admin-users.php:144 -msgid "Customer Billing Address" -msgstr "お客様住所" - -#: admin/woocommerce-admin-users.php:147 admin/woocommerce-admin-users.php:196 -msgid "First name" -msgstr "名" - -#: admin/woocommerce-admin-users.php:151 admin/woocommerce-admin-users.php:200 -msgid "Last name" -msgstr "姓" - -#: admin/woocommerce-admin-users.php:176 -msgid "Country or state code" -msgstr "国または都道府県のコード" - -#: admin/woocommerce-admin-users.php:180 admin/woocommerce-admin-users.php:229 -msgid "2 letter Country code" -msgstr "国コード(2文字)" - -#: admin/woocommerce-admin-users.php:183 -msgid "Telephone" -msgstr "電話番号" - -#: admin/woocommerce-admin-users.php:193 -msgid "Customer Shipping Address" -msgstr "顧客の配送先住所" - -#: admin/woocommerce-admin-users.php:225 -msgid "State/County or state code" -msgstr "都道府県/国または都道府県のコード" - -#: admin/post-types/shop_coupon.php:149 -msgid "Show all types" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Value of the coupon." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "Email restrictions" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "No restrictions" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "" -"List of emails to check against the customer's billing email when an order " -"is placed." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -msgid "Totals" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:413 -msgid "Pipe (|) separate terms" -msgstr "" - -#: admin/woocommerce-admin-status.php:259 -msgid "is available" -msgstr "" - -#: admin/woocommerce-admin-status.php:557 -msgid "Customer Sessions" -msgstr "" - -#: admin/woocommerce-admin-status.php:558 -msgid "Clear all sessions" -msgstr "セッションを全て消去" - -#: admin/woocommerce-admin-status.php:559 -msgid "" -"Warning This tool will delete all customer " -"session data from the database, including any current live carts." -msgstr "" -"警告このツールは全てのお客様のセッション、現在" -"動いているものもデータベースから消去します。" - -#: admin/woocommerce-admin-taxonomies.php:365 -msgid "Edit Class" -msgstr "" - -#. Plugin URI of the plugin/theme -msgid "http://www.woothemes.com/woocommerce/" -msgstr "" - -#. Description of the plugin/theme -msgid "An e-commerce toolkit that helps you sell anything. Beautifully." -msgstr "" - -#. Author of the plugin/theme -msgid "WooThemes" -msgstr "" - -#. Author URI of the plugin/theme -msgid "http://woothemes.com" -msgstr "" diff --git a/i18n/languages/woocommerce-admin-ko_KR.mo b/i18n/languages/woocommerce-admin-ko_KR.mo deleted file mode 100644 index d7a746ebf78..00000000000 Binary files a/i18n/languages/woocommerce-admin-ko_KR.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-admin-ko_KR.po b/i18n/languages/woocommerce-admin-ko_KR.po deleted file mode 100644 index cf0ee4500a7..00000000000 --- a/i18n/languages/woocommerce-admin-ko_KR.po +++ /dev/null @@ -1,5450 +0,0 @@ -# Venusian , 2013. -# kim , 2013. -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce 2.0.0 Admin\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-04-29 16:02:07+00:00\n" -"PO-Revision-Date: 2013-09-10 08:23+0900\n" -"Last-Translator: Venusian \n" -"Language-Team: Venusian\n" -"Language: ko\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Poedit 1.5.7\n" - -#: admin/importers/importers-init.php:13 -msgid "WooCommerce Tax Rates (CSV)" -msgstr "우커머스 세율 (CSV)" - -#: admin/importers/importers-init.php:13 -msgid "Import tax rates to your store via a csv file." -msgstr "csv 파일을 통해 내 상점에 세율 가져오기" - -#: admin/importers/tax-rates-importer.php:103 -#: admin/importers/tax-rates-importer.php:186 -#: admin/importers/tax-rates-importer.php:226 -#: admin/importers/tax-rates-importer.php:241 -msgid "Sorry, there has been an error." -msgstr "죄송합니다. 에러가 발생했습니다." - -#: admin/importers/tax-rates-importer.php:104 -msgid "The file does not exist, please try again." -msgstr "파일이 존재하지 않습니다. 다시 해주세요." - -#: admin/importers/tax-rates-importer.php:187 -msgid "The CSV is invalid." -msgstr "CSV 파일이 유효하지 않습니다." - -#: admin/importers/tax-rates-importer.php:198 -msgid "" -"Import complete - imported %s tax rates and skipped " -"%s." -msgstr "" -"가져오기가 완료됐습니다 - %s 세율을 가져오면서 %s를 제외했습니다." - -#: admin/importers/tax-rates-importer.php:208 -msgid "All done!" -msgstr "완료됐습니다!" - -#: admin/importers/tax-rates-importer.php:208 -msgid "View Tax Rates" -msgstr "세율 보기" - -#: admin/importers/tax-rates-importer.php:259 -msgid "Import Tax Rates" -msgstr "세율 가져오기" - -#: admin/importers/tax-rates-importer.php:282 -msgid "" -"Hi there! Upload a CSV file containing tax rates to import the contents into " -"your shop. Choose a .csv file to upload, then click \"Upload file and import" -"\"." -msgstr "" -"안녕하세요! 상점에 콘텐츠를 가져오려면 세율을 포함한 CSV 파일을 업로드하세" -"요. 업로드하려면 .csv 파일을 선택하고 \"파일 업로드 및 가져오기\"를 클릭하세" -"요." - -#: admin/importers/tax-rates-importer.php:284 -msgid "" -"Tax rates need to be defined with columns in a specific order (10 columns). " -"Click here to download a sample." -msgstr "" -"세율은 특정한 순서의 컬럼으로 정의돼야합니다 (10 컬럼). 샘플" -"을 내려받으려면 여기를 클릭하세요." - -#: admin/importers/tax-rates-importer.php:292 -msgid "" -"Before you can upload your import file, you will need to fix the following " -"error:" -msgstr "가져오기 파일을 업로드 하기 전에 다음 에러를 수정해야합니다:" - -#: admin/importers/tax-rates-importer.php:301 -msgid "Choose a file from your computer:" -msgstr "컴퓨터에서 파일을 선택하세요:" - -#: admin/importers/tax-rates-importer.php:307 -msgid "Maximum size: %s" -msgstr "최대 사이즈: %s" - -#: admin/importers/tax-rates-importer.php:312 -msgid "OR enter path to file:" -msgstr "또는 파일 경로를 입력하세요:" - -#: admin/importers/tax-rates-importer.php:319 -msgid "Delimiter" -msgstr "분리자" - -#: admin/importers/tax-rates-importer.php:325 -msgid "Upload file and import" -msgstr "파일 업로드 및 가져오기" - -#: admin/includes/duplicate_product.php:23 -msgid "No product to duplicate has been supplied!" -msgstr "복사할 상품이 제공되지 않았습니다!" - -#: admin/includes/duplicate_product.php:43 -msgid "Product creation failed, could not find original product:" -msgstr "상품 생성이 실패했습니다. 원본 상품을 찾을 수 없습니다:" - -#: admin/includes/duplicate_product.php:90 -msgid "(Copy)" -msgstr "(복사본)" - -#: admin/includes/notice-install.php:6 -msgid "" -"Welcome to WooCommerce – You're almost ready to start " -"selling :)" -msgstr "" -"우커머스에 오신 것을 환영합니다 – 판매할 준비가 거의 " -"다 됐습니다 :)" - -#: admin/includes/notice-install.php:7 -msgid "Install WooCommerce Pages" -msgstr "우커머스 페이지 설치하기" - -#: admin/includes/notice-install.php:7 -msgid "Skip setup" -msgstr "설정 생략하기" - -#: admin/includes/notice-theme-support.php:6 -msgid "" -"Your theme does not declare WooCommerce support – if " -"you encounter layout issues please read our integration guide or choose a " -"WooCommerce theme :)" -msgstr "" -"테마가 우커머스 지원을 선언하지 않고 있습니다. – 레이" -"아웃 문제가 발생하면 우커머스 결합 가이드를 읽으시거나 우커머스 테마를 선택하" -"세요 :)" - -#: admin/includes/notice-theme-support.php:7 -msgid "Theme Integration Guide" -msgstr "테마 결합 가이드" - -#: admin/includes/notice-theme-support.php:7 -msgid "Hide this notice" -msgstr "이 공지 감추기" - -#: admin/includes/notice-update.php:6 -msgid "" -"Data Update Required – We just need to update your " -"install to the latest version" -msgstr "" -"데이터 업데이트가 필요합니다. – 설치를 최근 버전으로 " -"업데이트해야합니다." - -#: admin/includes/notice-update.php:7 -msgid "Run the updater" -msgstr "업데이터 실행하기" - -#: admin/includes/notice-update.php:12 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"계속 진행하기 전에 데이터베이스를 백업할 것을 강력히 추천합니다. 지금 업데이" -"터를 실행하기 원하시나요?" - -#: admin/includes/updates/woocommerce-update-2.0.php:49 -#: admin/woocommerce-admin-init.php:885 -msgctxt "slug" -msgid "product-category" -msgstr "상품-카테고리" - -#: admin/includes/updates/woocommerce-update-2.0.php:50 -#: admin/woocommerce-admin-init.php:898 -msgctxt "slug" -msgid "product-tag" -msgstr "상품-태그" - -#: admin/includes/updates/woocommerce-update-2.0.php:58 -msgctxt "slug" -msgid "product" -msgstr "상품" - -#: admin/includes/updates/woocommerce-update-2.0.php:179 -#: admin/woocommerce-admin-install.php:207 -msgctxt "page_slug" -msgid "lost-password" -msgstr "비밀번호-분실" - -#: admin/includes/updates/woocommerce-update-2.0.php:179 -#: admin/woocommerce-admin-install.php:207 -#: admin/woocommerce-admin-status.php:335 -msgid "Lost Password" -msgstr "비밀번호 분실" - -#: admin/includes/welcome.php:48 -msgid "Welcome to WooCommerce" -msgstr "우커머스에 오신 것을 환영합니다" - -#: admin/includes/welcome.php:135 -msgid "Welcome to WooCommerce %s" -msgstr "우커머스 %s에 오신 것을 환영합니다" - -#: admin/includes/welcome.php:140 -msgid "Thanks, all done!" -msgstr "감사합니다, 모두 완료됐습니다!" - -#: admin/includes/welcome.php:142 -msgid "Thank you for updating to the latest version!" -msgstr "최신 버전 업데이트를 감사드립니다!" - -#: admin/includes/welcome.php:144 -msgid "Thanks for installing!" -msgstr "설치해주셔서 감사합니다!" - -#: admin/includes/welcome.php:146 -msgid "" -"%s WooCommerce %s is more powerful, stable, and secure than ever before. We " -"hope you enjoy it." -msgstr "" -"%s 우커머스 %s는 이전보다 더 강력하고 안정적이며 안전합니다. 즐길 수 있기를 " -"바랍니다." - -#: admin/includes/welcome.php:150 -msgid "Version %s" -msgstr "버전 %s" - -#: admin/includes/welcome.php:153 admin/woocommerce-admin-content.php:41 -#: admin/woocommerce-admin-init.php:88 admin/woocommerce-admin-status.php:278 -msgid "Settings" -msgstr "설정" - -#: admin/includes/welcome.php:154 -msgid "Docs" -msgstr "문서" - -#: admin/includes/welcome.php:161 -msgid "What's New" -msgstr "새로운 것" - -#: admin/includes/welcome.php:163 -msgid "Credits" -msgstr "크레딧" - -#: admin/includes/welcome.php:186 -msgid "Security in mind" -msgstr "고려할 보안" - -#: admin/includes/welcome.php:190 -msgid "Sucuri Safe Plugin" -msgstr "Sucuri 안전 플러그인" - -#: admin/includes/welcome.php:191 -msgid "" -"You will be happy to learn that WooCommerce has been audited and certified " -"by the Sucuri Security team. Whilst there is not much to be seen visually to " -"understand the amount of work that went into this audit, rest assured that " -"your website is powered by one of the most powerful and stable eCommerce " -"plugins available." -msgstr "" -"우커머스가 Sucuri 보안 팀에 의해 검사 및 인증이 됐다는 것을 알게 되면 기쁠 것" -"입니다. 이러한 검사에 들어간 작업량을 이해하는데 보여지는 것은 별로 없지만 웹" -"사이트가 가장 강력하고 안정적인 E 커머스 플러그인 중의 하나가 지원하고 있다" -"는 것을 확신할 수 있을 겁니다." - -#: admin/includes/welcome.php:194 -msgid "A Smoother Admin Experience" -msgstr "더 부드러운 관리자 경험" - -#: admin/includes/welcome.php:200 -msgid "New Product Panel" -msgstr "새로운 상품 패널" - -#: admin/includes/welcome.php:201 -msgid "" -"We have revised the product data panel making it cleaner, more streamlined, " -"and more logical. Adding products is a breeze!" -msgstr "" -"우리는 상품 데이터 패널을 수정해서 더 깨끗하고 능률적이며 논리적으로 만들었습" -"니다. 상품 추가는 이제 간결해졌습니다!" - -#: admin/includes/welcome.php:206 -msgid "Nicer Order Screens" -msgstr "더 좋은 주문 화면" - -#: admin/includes/welcome.php:207 -msgid "" -"Order pages have had a cleanup, with a more easily scannable interface. We " -"particularly like the new status icons!" -msgstr "" -"주문 페이지는 더 쉽게 살펴볼 수 있는 인터페이스로 깨끗해졌습니다. 특히 새로" -"운 상태 아이콘을 좋아합니다." - -#: admin/includes/welcome.php:212 -msgid "Multi-Download Support" -msgstr "다중 내려받기 지원" - -#: admin/includes/welcome.php:213 -msgid "" -"Products can have multiple downloadable files - purchasers will get access " -"to all the files added." -msgstr "" -"상품은 다중으로 내려받기 가능한 파일을 지원합니다. 구매자는 첨부된 모든 파일" -"에 접근할 수 있습니다." - -#: admin/includes/welcome.php:218 -msgid "Less Taxing Taxes" -msgstr "축소된 과세 과정" - -#: admin/includes/welcome.php:224 -msgid "New Tax Input Panel" -msgstr "새로운 세금 입력 패널" - -#: admin/includes/welcome.php:225 -msgid "" -"The tax input pages have been streamlined to make inputting taxes simpler - " -"adding multiple taxes for a single jurisdiction is now much easier using the " -"priority system. There is also CSV import/export support." -msgstr "" -"세금 입력 페이지는 세금입력을 단순하게 해서 간결해졌습니다. 단일 영역의 다중 " -"세금 추가는 이제 우선 시스템을 적용해서 훨씬 쉬워졌습니다. 또한 CSV 가져오기/" -"내보내기도 지원합니다." - -#: admin/includes/welcome.php:229 -msgid "Improved Tax Options" -msgstr "개선된 세금 옵션" - -#: admin/includes/welcome.php:230 -msgid "" -"As requested by some users, we now support taxing the billing address " -"instead of shipping (optional), and we allow you to choose which tax class " -"applies to shipping." -msgstr "" -"사용자의 요청으로 배송 주소 대신에 청구 주소로 과세할 수 있도록 했으며(선택사" -"항), 배송에 적용된 세금 클래스를 선택할 수 있도록 했습니다." - -#: admin/includes/welcome.php:235 -msgid "Product Listing Improvements Customers Will Love" -msgstr "고객이 좋아할 상품 목록화 개선" - -#: admin/includes/welcome.php:241 -msgid "New Sorting Options" -msgstr "새로운 분류 옵션" - -#: admin/includes/welcome.php:242 -msgid "Customers can now sort products by popularity and ratings." -msgstr "이제 고객은 인기와 평가로 상품을 분류할 수 있습니다." - -#: admin/includes/welcome.php:247 -msgid "Better Pagination and Result Counts" -msgstr "더 나은 페이지네이션 및 결과 계산" - -#: admin/includes/welcome.php:248 -msgid "" -"Numbered pagination has been added to core, and we show the number of " -"results found above the listings." -msgstr "" -"숫자 페이지네이션이 코어에 추가됐으며 목록 위에 결과의 숫자를 보여줍니다." - -#: admin/includes/welcome.php:253 -msgid "Inline Star Rating Display" -msgstr "인라인 별표시 평가" - -#: admin/includes/welcome.php:254 -msgid "" -"We have added star ratings to the catalog which are pulled from reviews." -msgstr "카탈로그에 리뷰에서 가져온 별표시 평가를 추가했습니다." - -#: admin/includes/welcome.php:262 -msgid "Under the Hood" -msgstr "세부 내용" - -#: admin/includes/welcome.php:266 -msgid "New product classes" -msgstr "새로운 상품 클래스" - -#: admin/includes/welcome.php:267 -msgid "" -"The product classes have been rewritten and are now factory based. Much more " -"extendable, and easier to query products using the new get_product() function." -msgstr "" -"상품 클래스는 재작성됐으며 공장 기준입니다. 더 확장가능해졌으며 새로운 " -"get_product() 함수를 사용해서 더 쉽게 상품을 검색할 수 있습니다." - -#: admin/includes/welcome.php:271 -msgid "Capability overhaul" -msgstr "권한 수정" - -#: admin/includes/welcome.php:272 -msgid "" -"More granular capabilities for admin/shop manager roles covering products, " -"orders and coupons." -msgstr "상품, 주문, 쿠폰의 더 세밀한 관리자/상점 관리자 역할" - -#: admin/includes/welcome.php:276 -msgid "API Improvements" -msgstr "API 개선" - -#: admin/includes/welcome.php:277 -msgid "" -"WC-API now has real endpoints, and we've optimised the gateways " -"API significantly by only loading gateways when needed." -msgstr "" -"WC-API는 이제 진정한 종착점입니다. 그리고 우리는 필요한 경우 게" -"이트웨이만 로드하므로써 게이트웨이 API를 최대한 최적화시켰습니다." - -#: admin/includes/welcome.php:283 -msgid "Cache-friendly cart widgets" -msgstr "캐시 친화적인 장바구니 위젯" - -#: admin/includes/welcome.php:284 -msgid "" -"Cart widgets and other \"fragments\" are now pulled in via AJAX - this works " -"wonders with static page caching." -msgstr "" -"장바구니 위젯과 다른 구성요소들은 이제 AJAX를 통해 이루어집니다 - 이것은 정적" -"인 페이지 캐싱에 놀라운 작용을 합니다." - -#: admin/includes/welcome.php:288 -msgid "Session handling" -msgstr "세션 처리" - -#: admin/includes/welcome.php:289 -msgid "" -"PHP SESSIONS have been a problem for many users in the past, so we've " -"developed our own handler using cookies and options to make these more " -"reliable." -msgstr "" -"PHP SESSIONS은 과거에 많은 사용자에게 문제거리였습니다. 그래서 우리는 이러한 " -"문제를 더욱 신뢰할 수 있도록 쿠키와 옵션을 사용해서 고유의 핸들러를 개발했습" -"니다." - -#: admin/includes/welcome.php:293 -msgid "Retina Ready" -msgstr "레티나 가능" - -#: admin/includes/welcome.php:294 -msgid "All graphics within WC have been optimised for HiDPI displays." -msgstr "우커머스의 모든 그래픽은 HiDPI 디스플레이에 최적화돼있습니다." - -#: admin/includes/welcome.php:301 -msgid "Better stock handling" -msgstr "더 나은 재고 관리" - -#: admin/includes/welcome.php:302 -msgid "" -"We have added an option to hold stock for unpaid orders (defaults to " -"60mins). When this time limit is reached, and the order is not paid for, " -"stock is released and the order is cancelled." -msgstr "" -"우리는 지불되지 않은 주문에 대해 재고를 보류하도록 옵션을 추가했습니다(기본으" -"로 60분). 이 시간 제한에 이르고 주문이 지불되지 않으면 재고는 제한 해제되며 " -"취소됩니다." - -#: admin/includes/welcome.php:306 -msgid "Improved Line-item storage" -msgstr "개선된 라인 아이템 저장소" - -#: admin/includes/welcome.php:307 -msgid "" -"We have changed how order items get stored making them easier (and faster) " -"to access for reporting. Order items are no longer serialised within an " -"order - they are stored within their own table." -msgstr "" -"우리는 보고서를 위해 더 쉽게 (그리고 더 빠르게) 접근할 수 있게 해서 주문 아이" -"템이 저장되는 방법을 변경했습니다. 주문 아이템은 더이상 주문 내에서 일련번호 " -"처리되지 않습니다 - 자체의 테이블 내에서 저장됩니다." - -#: admin/includes/welcome.php:311 -msgid "Autoload" -msgstr "자동 로드" - -#: admin/includes/welcome.php:312 -msgid "" -"We have setup autoloading for classes - this has dramatically reduced memory " -"usage in 2.0." -msgstr "" -"우리는 클래스에 대해 자동 로드를 설정했습니다 - 이것은 2.0에서 메모리 사용을 " -"현저하게 감소시킵니다." - -#: admin/includes/welcome.php:319 -msgid "Go to WooCommerce Settings" -msgstr "우커머스 설정으로 가기" - -#: admin/includes/welcome.php:337 -msgid "" -"WooCommerce is developed and maintained by a worldwide team of passionate " -"individuals and backed by an awesome developer community. Want to see your " -"name? Contribute to WooCommerce." -msgstr "" -"우커머스는 열정적인 개인으로 이루어진 범세계적 팀에 의해 개발되고 유지되며 굉" -"장한 개발자 커뮤니티가 지원하고 있습니다. 당신의 이름이 보이기를 원하시나" -"요? 우커머스에 기여하기." - -#: admin/includes/welcome.php:363 -msgid "View %s" -msgstr "%s 보기" - -#: admin/post-types/product.php:31 -msgid "Make a duplicate from this product" -msgstr "이 상품에서 복사본 만들기" - -#: admin/post-types/product.php:32 -msgid "Duplicate" -msgstr "복사" - -#: admin/post-types/product.php:61 -msgid "Copy to a new draft" -msgstr "복사해서 새 임시글 만들기" - -#: admin/post-types/product.php:86 admin/woocommerce-admin-taxonomies.php:297 -msgid "Image" -msgstr "이미지" - -#: admin/post-types/product.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:376 -#: admin/post-types/writepanels/writepanel-product_data.php:470 -#: admin/woocommerce-admin-attributes.php:233 -#: admin/woocommerce-admin-attributes.php:269 -#: admin/woocommerce-admin-attributes.php:307 -#: admin/woocommerce-admin-attributes.php:330 -#: admin/woocommerce-admin-attributes.php:374 -#: admin/woocommerce-admin-attributes.php:399 -#: admin/woocommerce-admin-init.php:437 -msgid "Name" -msgstr "이름" - -#: admin/post-types/product.php:91 admin/post-types/product.php:557 -#: admin/post-types/writepanels/variation-admin-html.php:52 -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#: admin/woocommerce-admin-reports.php:2099 -#: admin/woocommerce-admin-reports.php:2135 -msgid "SKU" -msgstr "SKU" - -#: admin/post-types/product.php:94 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:83 -#: admin/woocommerce-admin-content.php:63 -#: admin/woocommerce-admin-reports.php:90 -msgid "Stock" -msgstr "재고" - -#: admin/post-types/product.php:96 admin/post-types/product.php:568 -#: admin/post-types/product.php:789 admin/woocommerce-admin-functions.php:202 -msgid "Price" -msgstr "가격" - -#: admin/post-types/product.php:98 -msgid "Categories" -msgstr "카테고리" - -#: admin/post-types/product.php:99 -msgid "Tags" -msgstr "태그" - -#: admin/post-types/product.php:100 admin/post-types/product.php:632 -#: admin/post-types/product.php:906 -#: admin/post-types/writepanels/writepanel-product_data.php:1058 -#: admin/woocommerce-admin-init.php:450 -msgid "Featured" -msgstr "특성" - -#: admin/post-types/product.php:101 admin/woocommerce-admin-attributes.php:251 -#: admin/woocommerce-admin-attributes.php:309 -#: admin/woocommerce-admin-attributes.php:386 -msgid "Type" -msgstr "형식" - -#: admin/post-types/product.php:102 admin/post-types/shop_order.php:50 -msgid "Date" -msgstr "날짜" - -#: admin/post-types/product.php:151 -msgid "Edit this item" -msgstr "이 아이템 편집하기" - -#: admin/post-types/product.php:151 -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#: admin/post-types/writepanels/writepanel-order_data.php:387 -#: admin/post-types/writepanels/writepanel-product_data.php:1061 -#: admin/woocommerce-admin-attributes.php:323 -msgid "Edit" -msgstr "편집" - -#: admin/post-types/product.php:152 -msgid "Edit this item inline" -msgstr "이 아이템을 인라인으로 편집" - -#: admin/post-types/product.php:152 -msgid "Quick Edit" -msgstr "빠른 편집" - -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore this item from the Trash" -msgstr "이 아이템을 휴지통에서 복구" - -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore" -msgstr "복구" - -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Move this item to the Trash" -msgstr "이 아이템을 휴지통으로 이동" - -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Trash" -msgstr "휴지통" - -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -msgid "Delete this item permanently" -msgstr "이 아이템을 영구적으로 삭제" - -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -#: admin/post-types/writepanels/writepanel-order_data.php:463 -msgid "Delete Permanently" -msgstr "영구적으로 삭제" - -#: admin/post-types/product.php:165 -msgid "Preview “%s”" -msgstr "미리보기 “%s”" - -#: admin/post-types/product.php:165 -msgid "Preview" -msgstr "미리보기" - -#: admin/post-types/product.php:167 -msgid "View “%s”" -msgstr "보기 “%s”" - -#: admin/post-types/product.php:167 admin/post-types/shop_order.php:171 -msgid "View" -msgstr "보기" - -#: admin/post-types/product.php:214 -msgid "Grouped" -msgstr "그룹" - -#: admin/post-types/product.php:216 -msgid "External/Affiliate" -msgstr "외부/연계" - -#: admin/post-types/product.php:220 admin/post-types/product.php:407 -#: admin/post-types/writepanels/variation-admin-html.php:174 -#: admin/post-types/writepanels/writepanel-product_data.php:52 -msgid "Virtual" -msgstr "가상" - -#: admin/post-types/product.php:222 admin/post-types/product.php:403 -#: admin/post-types/writepanels/variation-admin-html.php:172 -#: admin/post-types/writepanels/writepanel-product_data.php:58 -msgid "Downloadable" -msgstr "다운로드 가능" - -#: admin/post-types/product.php:224 -msgid "Simple" -msgstr "단순" - -#: admin/post-types/product.php:228 admin/post-types/product.php:387 -msgid "Variable" -msgstr "옵션" - -#: admin/post-types/product.php:251 -msgid "Toggle featured" -msgstr "특성 토글" - -#: admin/post-types/product.php:253 -msgid "yes" -msgstr "예" - -#: admin/post-types/product.php:255 -msgid "no" -msgstr "아니오" - -#: admin/post-types/product.php:262 admin/post-types/product.php:641 -#: admin/post-types/product.php:930 -#: admin/post-types/writepanels/writepanel-product_data.php:231 -msgid "In stock" -msgstr "재고있음" - -#: admin/post-types/product.php:264 admin/post-types/product.php:642 -#: admin/post-types/product.php:931 -#: admin/post-types/writepanels/writepanel-product_data.php:232 -#: admin/woocommerce-admin-reports.php:2119 -msgid "Out of stock" -msgstr "품절" - -#: admin/post-types/product.php:373 -msgid "Show all product types" -msgstr "모든 상품 형식 보기" - -#: admin/post-types/product.php:381 -#: admin/post-types/writepanels/writepanel-product_data.php:39 -msgid "Grouped product" -msgstr "그룹 상품" - -#: admin/post-types/product.php:383 -#: admin/post-types/writepanels/writepanel-product_data.php:40 -msgid "External/Affiliate product" -msgstr "외부/연계 상품" - -#: admin/post-types/product.php:385 -#: admin/post-types/writepanels/writepanel-product_data.php:38 -msgid "Simple product" -msgstr "단순 상품" - -#: admin/post-types/product.php:399 -msgid "Show all sub-types" -msgstr "모든 하위 형식 보기" - -#: admin/post-types/product.php:520 -msgid "[%s with SKU of %s]" -msgstr "[%s는 %s SKU가 있음]" - -#: admin/post-types/product.php:526 -msgid "[%s with ID of %d]" -msgstr "[%s는 %d 아이디가 있음]" - -#: admin/post-types/product.php:552 admin/post-types/product.php:783 -#: admin/post-types/writepanels/writepanels-init.php:46 -#: admin/settings/settings-init.php:508 -msgid "Product Data" -msgstr "상품 데이터" - -#: admin/post-types/product.php:570 -msgid "Regular price" -msgstr "정상 가격" - -#: admin/post-types/product.php:575 admin/post-types/product.php:813 -msgid "Sale" -msgstr "판매" - -#: admin/post-types/product.php:577 -msgid "Sale price" -msgstr "판매 가격" - -#: admin/post-types/product.php:588 admin/post-types/product.php:839 -#: admin/post-types/writepanels/variation-admin-html.php:96 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:273 -msgid "Weight" -msgstr "무게" - -#: admin/post-types/product.php:599 admin/post-types/product.php:863 -msgid "L/W/H" -msgstr "L/W/H" - -#: admin/post-types/product.php:601 admin/post-types/product.php:879 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:85 -#: admin/post-types/writepanels/writepanel-product_data.php:286 -msgid "Length" -msgstr "길이" - -#: admin/post-types/product.php:602 admin/post-types/product.php:880 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:86 -#: admin/post-types/writepanels/writepanel-product_data.php:287 -#: admin/woocommerce-admin-settings.php:797 -msgid "Width" -msgstr "넓이" - -#: admin/post-types/product.php:603 admin/post-types/product.php:881 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:87 -#: admin/post-types/writepanels/writepanel-product_data.php:288 -#: admin/woocommerce-admin-settings.php:799 -msgid "Height" -msgstr "높이" - -#: admin/post-types/product.php:613 admin/post-types/product.php:887 -msgid "Visibility" -msgstr "가시성" - -#: admin/post-types/product.php:618 admin/post-types/product.php:893 -msgid "Catalog & search" -msgstr "카탈로그 & 검색" - -#: admin/post-types/product.php:619 admin/post-types/product.php:894 -#: admin/post-types/writepanels/writepanel-product_data.php:1047 -#: admin/woocommerce-admin-content.php:46 -#: admin/woocommerce-admin-settings.php:183 -msgid "Catalog" -msgstr "카탈로그" - -#: admin/post-types/product.php:620 admin/post-types/product.php:895 -#: admin/post-types/writepanels/writepanel-product_data.php:1048 -msgid "Search" -msgstr "검색" - -#: admin/post-types/product.php:621 admin/post-types/product.php:896 -#: admin/post-types/writepanels/writepanel-product_data.php:1049 -msgid "Hidden" -msgstr "숨겨짐" - -#: admin/post-types/product.php:636 admin/post-types/product.php:924 -msgid "In stock?" -msgstr "재고가 있나요?" - -#: admin/post-types/product.php:657 admin/post-types/product.php:942 -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Manage stock?" -msgstr "재고를 관리하나요?" - -#: admin/post-types/product.php:661 admin/post-types/product.php:961 -#: admin/post-types/product.php:977 -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "Stock Qty" -msgstr "재고 수량" - -#: admin/post-types/product.php:794 admin/post-types/product.php:818 -#: admin/post-types/product.php:844 admin/post-types/product.php:868 -#: admin/post-types/product.php:892 admin/post-types/product.php:911 -#: admin/post-types/product.php:929 admin/post-types/product.php:947 -#: admin/post-types/product.php:966 -msgid "— No Change —" -msgstr "— 변경 없음 —" - -#: admin/post-types/product.php:795 admin/post-types/product.php:819 -#: admin/post-types/product.php:845 admin/post-types/product.php:869 -#: admin/post-types/product.php:967 -msgid "Change to:" -msgstr "변경:" - -#: admin/post-types/product.php:796 admin/post-types/product.php:820 -msgid "Increase by (fixed amount or %):" -msgstr "증가 (고정 양 또는 %)" - -#: admin/post-types/product.php:797 admin/post-types/product.php:821 -msgid "Decrease by (fixed amount or %):" -msgstr "감소 (고정 양 또는 %)" - -#: admin/post-types/product.php:807 admin/post-types/product.php:832 -msgid "Enter price" -msgstr "가격을 입력하세요" - -#: admin/post-types/product.php:822 -msgid "Decrease regular price by (fixed amount or %):" -msgstr "정상 가격 감소하기 (고정 금액 또는 %):" - -#: admin/post-types/product.php:912 admin/post-types/product.php:948 -#: admin/post-types/shop_order.php:190 admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:286 -msgid "Yes" -msgstr "예" - -#: admin/post-types/product.php:913 admin/post-types/product.php:949 -#: admin/post-types/shop_order.php:192 admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:286 -msgid "No" -msgstr "아니오" - -#: admin/post-types/product.php:1183 -msgid "Sort Products" -msgstr "상품 정렬" - -#: admin/post-types/product.php:1222 -msgid "Insert into product" -msgstr "상품에 삽입하기" - -#: admin/post-types/product.php:1223 -msgid "Uploaded to this product" -msgstr "이 상품에 업로드 된 것" - -#: admin/post-types/shop_coupon.php:25 -msgid "Code" -msgstr "코드" - -#: admin/post-types/shop_coupon.php:26 -msgid "Coupon type" -msgstr "쿠폰 형식" - -#: admin/post-types/shop_coupon.php:27 -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Coupon amount" -msgstr "쿠폰 금액 또는 퍼센트" - -#: admin/post-types/shop_coupon.php:28 -msgid "Description" -msgstr "설명" - -#: admin/post-types/shop_coupon.php:29 -msgid "Product IDs" -msgstr "상품 아이디" - -#: admin/post-types/shop_coupon.php:30 -msgid "Usage / Limit" -msgstr "사용 / 한도" - -#: admin/post-types/shop_coupon.php:31 -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "Expiry date" -msgstr "만료 일자" - -#: admin/post-types/shop_coupon.php:56 -msgid "Edit coupon" -msgstr "쿠폰 편집" - -#: admin/post-types/shop_coupon.php:114 -msgid "%s / %s" -msgstr "%s / %s" - -#: admin/post-types/shop_coupon.php:116 -msgid "%s / ∞" -msgstr "%s / ∞" - -#: admin/post-types/shop_coupon.php:149 -msgid "Show all types" -msgstr "모든 형태 보이기" - -#: admin/post-types/shop_order.php:43 -#: admin/settings/settings-payment-gateways.php:29 -#: admin/settings/settings-shipping-methods.php:31 -msgid "Status" -msgstr "상태" - -#: admin/post-types/shop_order.php:44 -msgid "Order" -msgstr "주문" - -#: admin/post-types/shop_order.php:45 -msgid "Billing" -msgstr "청구" - -#: admin/post-types/shop_order.php:46 -#: admin/post-types/writepanels/writepanel-order_data.php:539 -#: admin/post-types/writepanels/writepanel-product_data.php:81 -#: admin/settings/settings-tax-rates.php:52 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-content.php:49 -#: admin/woocommerce-admin-settings.php:187 -msgid "Shipping" -msgstr "배송" - -#: admin/post-types/shop_order.php:47 -msgid "Order Total" -msgstr "주문 총계" - -#: admin/post-types/shop_order.php:48 -#: admin/post-types/writepanels/writepanels-init.php:71 -msgid "Order Notes" -msgstr "주문 메모" - -#: admin/post-types/shop_order.php:49 -msgid "Customer Notes" -msgstr "고객 메모" - -#: admin/post-types/shop_order.php:51 -#: admin/post-types/writepanels/writepanel-order_data.php:386 -#: admin/post-types/writepanels/writepanel-order_data.php:433 -msgid "Actions" -msgstr "작업" - -#: admin/post-types/shop_order.php:95 -#: admin/post-types/writepanels/writepanel-order_data.php:93 -msgid "Guest" -msgstr "고객" - -#: admin/post-types/shop_order.php:98 -msgid "Order %s" -msgstr "주문 %s" - -#: admin/post-types/shop_order.php:98 -msgid "made by" -msgstr "주문자" - -#: admin/post-types/shop_order.php:101 -msgid "Email:" -msgstr "이메일:" - -#: admin/post-types/shop_order.php:104 -msgid "Tel:" -msgstr "전화번호:" - -#: admin/post-types/shop_order.php:114 admin/post-types/shop_order.php:123 -msgid "Via" -msgstr "결제 방법" - -#: admin/post-types/shop_order.php:131 -msgid "Unpublished" -msgstr "미발행" - -#: admin/post-types/shop_order.php:133 -msgid "Y/m/d g:i:s A" -msgstr "Y/m/d g:i:s A" - -#: admin/post-types/shop_order.php:139 -msgid "%s ago" -msgstr "%s 전에" - -#: admin/post-types/shop_order.php:141 -msgid "Y/m/d" -msgstr "Y/m/d" - -#: admin/post-types/shop_order.php:158 -#: admin/woocommerce-admin-dashboard.php:176 -msgid "Processing" -msgstr "처리중" - -#: admin/post-types/shop_order.php:165 -msgid "Complete" -msgstr "완료" - -#: admin/post-types/shop_order.php:282 -msgid "Show all statuses" -msgstr "모든 상태 보이기" - -#: admin/post-types/shop_order.php:301 admin/post-types/shop_order.php:326 -msgid "Show all customers" -msgstr "모든 고객 보기" - -#: admin/post-types/writepanels/order-download-permission-html.php:6 -msgid "Revoke Access" -msgstr "접근 취소하기" - -#: admin/post-types/writepanels/order-download-permission-html.php:7 -#: admin/post-types/writepanels/variation-admin-html.php:7 -#: admin/post-types/writepanels/writepanel-product_data.php:369 -#: admin/post-types/writepanels/writepanel-product_data.php:463 -#: admin/woocommerce-admin-init.php:439 -msgid "Click to toggle" -msgstr "토글하려면 클릭하세요" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -msgid "File %d: %s" -msgstr "파일 %d: %s" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "%s번 다운로드됨" -msgstr[1] "%s번 다운로드됨" - -#: admin/post-types/writepanels/order-download-permission-html.php:16 -msgid "Downloads Remaining" -msgstr "잔여 다운로드" - -#: admin/post-types/writepanels/order-download-permission-html.php:19 -#: admin/post-types/writepanels/variation-admin-html.php:149 -#: admin/post-types/writepanels/variation-admin-html.php:157 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Unlimited" -msgstr "무제한" - -#: admin/post-types/writepanels/order-download-permission-html.php:22 -msgid "Access Expires" -msgstr "접근이 만료됐습니다" - -#: admin/post-types/writepanels/order-download-permission-html.php:23 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Never" -msgstr "없음" - -#: admin/post-types/writepanels/order-fee-html.php:10 -msgid "Fee Name" -msgstr "비용 이름" - -#: admin/post-types/writepanels/order-fee-html.php:17 -#: admin/post-types/writepanels/order-item-html.php:89 -msgid "Tax class" -msgstr "세금 클래스" - -#: admin/post-types/writepanels/order-fee-html.php:19 -#: admin/post-types/writepanels/order-tax-html.php:8 -#: admin/post-types/writepanels/writepanel-order_data.php:561 -#: admin/post-types/writepanels/writepanel-order_data.php:666 -#: admin/woocommerce-admin-reports.php:1658 -#: admin/woocommerce-admin-reports.php:2671 -#: admin/woocommerce-admin-reports.php:2680 -#: admin/woocommerce-admin-users.php:90 admin/woocommerce-admin-users.php:112 -msgid "N/A" -msgstr "N/A" - -#: admin/post-types/writepanels/order-fee-html.php:20 -#: admin/post-types/writepanels/writepanel-product_data.php:179 -msgid "Taxable" -msgstr "과세 가능" - -#: admin/post-types/writepanels/order-fee-html.php:25 -#: admin/post-types/writepanels/order-item-html.php:96 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:54 -#: admin/post-types/writepanels/writepanel-product_data.php:186 -#: admin/settings/settings-init.php:972 -#: admin/settings/settings-tax-rates.php:29 -#: admin/woocommerce-admin-settings.php:228 -msgid "Standard" -msgstr "표준" - -#: admin/post-types/writepanels/order-fee-html.php:43 -#: admin/post-types/writepanels/order-item-html.php:115 -#: admin/woocommerce-admin-reports.php:1562 -#: admin/woocommerce-admin-reports.php:1615 -#: admin/woocommerce-admin-reports.php:2386 -#: admin/woocommerce-admin-reports.php:2555 -#: admin/woocommerce-admin-reports.php:2633 -msgid "Total" -msgstr "총계" - -#: admin/post-types/writepanels/order-item-html.php:10 -msgid "Product ID:" -msgstr "상품 ID" - -#: admin/post-types/writepanels/order-item-html.php:13 -msgid "Variation ID:" -msgstr "옵션 ID:" - -#: admin/post-types/writepanels/order-item-html.php:16 -msgid "Product SKU:" -msgstr "상품 SKU:" - -#: admin/post-types/writepanels/order-item-html.php:44 -msgid "Add meta" -msgstr "메타 추가하기" - -#: admin/post-types/writepanels/order-item-html.php:117 -msgid "Subtotal" -msgstr "소계" - -#: admin/post-types/writepanels/order-tax-html.php:6 -msgid "Tax Rate:" -msgstr "세율:" - -#: admin/post-types/writepanels/order-tax-html.php:16 -#: admin/post-types/writepanels/writepanel-order_data.php:630 -msgid "Sales Tax:" -msgstr "판매 세금:" - -#: admin/post-types/writepanels/order-tax-html.php:20 -#: admin/post-types/writepanels/writepanel-order_data.php:638 -msgid "Shipping Tax:" -msgstr "배송 세금:" - -#: admin/post-types/writepanels/variation-admin-html.php:6 -#: admin/post-types/writepanels/writepanel-product_data.php:368 -#: admin/post-types/writepanels/writepanel-product_data.php:462 -#: admin/woocommerce-admin-init.php:438 -msgid "Remove" -msgstr "제거하기" - -#: admin/post-types/writepanels/variation-admin-html.php:20 -msgid "Any" -msgstr "모든" - -#: admin/post-types/writepanels/variation-admin-html.php:52 -msgid "" -"Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "이 옵션에 대해 SKU를 입력하거나 상위 상품 SKU를 사용하려면 비워두세요." - -#: admin/post-types/writepanels/variation-admin-html.php:63 -msgid "Stock Qty:" -msgstr "재고량:" - -#: admin/post-types/writepanels/variation-admin-html.php:63 -msgid "" -"Enter a quantity to enable stock management at variation level, or leave " -"blank to use the parent product's options." -msgstr "" -"옵션 레벨에서 재고 관리를 활성화하려면 수량을 입력하세요. 또는 상위 상품 옵션" -"을 사용하려면 비워두세요." - -#: admin/post-types/writepanels/variation-admin-html.php:72 -msgid "Regular Price:" -msgstr "정상가격:" - -#: admin/post-types/writepanels/variation-admin-html.php:73 -msgid "Variation price (required)" -msgstr "옵션 가격 (필수)" - -#: admin/post-types/writepanels/variation-admin-html.php:76 -msgid "Sale Price:" -msgstr "판매 가격:" - -#: admin/post-types/writepanels/variation-admin-html.php:76 -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Schedule" -msgstr "스케쥴" - -#: admin/post-types/writepanels/variation-admin-html.php:76 -msgid "Cancel schedule" -msgstr "스케쥴 취소" - -#: admin/post-types/writepanels/variation-admin-html.php:83 -msgid "Sale start date:" -msgstr "판매 시작 일자:" - -#: admin/post-types/writepanels/variation-admin-html.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:136 -msgctxt "placeholder" -msgid "From…" -msgstr "시작…" - -#: admin/post-types/writepanels/variation-admin-html.php:87 -msgid "Sale end date:" -msgstr "판매 종료 일자:" - -#: admin/post-types/writepanels/variation-admin-html.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:137 -msgctxt "placeholder" -msgid "To…" -msgstr "종료…" - -#: admin/post-types/writepanels/variation-admin-html.php:96 -msgid "" -"Enter a weight for this variation or leave blank to use the parent product " -"weight." -msgstr "" -"이 옵션에 대해 무게를 입력하거나 상위 상품 무게를 사용하려면 비워두세요." - -#: admin/post-types/writepanels/variation-admin-html.php:104 -msgid "Dimensions (L×W×H)" -msgstr "규격 (L×W×H)" - -#: admin/post-types/writepanels/variation-admin-html.php:115 -msgid "Shipping class:" -msgstr "배송 클래스:" - -#: admin/post-types/writepanels/variation-admin-html.php:119 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:53 -msgid "Same as parent" -msgstr "상위와 같음" - -#: admin/post-types/writepanels/variation-admin-html.php:130 -msgid "Tax class:" -msgstr "세금 클래스:" - -#: admin/post-types/writepanels/variation-admin-html.php:141 -msgid "File paths:" -msgstr "파일 경로:" - -#: admin/post-types/writepanels/variation-admin-html.php:141 -msgid "" -"Enter one or more File Paths, one per line, to make this variation a " -"downloadable product, or leave blank." -msgstr "" -"이 옵션을 내려받기 가능한 상품으로 하려면 하나 이상의 파일 경로(라인당 하나" -"씩)를 입력하세요. 아닌 경우 비워두세요." - -#: admin/post-types/writepanels/variation-admin-html.php:142 -#: admin/post-types/writepanels/writepanel-product_data.php:153 -msgid "File paths/URLs, one per line" -msgstr "파일 경로/URL, 라인당 하나" - -#: admin/post-types/writepanels/variation-admin-html.php:143 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Choose a file" -msgstr "파일을 선택하세요" - -#: admin/post-types/writepanels/variation-admin-html.php:143 -msgid "Upload" -msgstr "업로드" - -#: admin/post-types/writepanels/variation-admin-html.php:143 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Insert file URL" -msgstr "파일 URL을 삽입하세요" - -#: admin/post-types/writepanels/variation-admin-html.php:148 -msgid "Download Limit:" -msgstr "다운로드 한도:" - -#: admin/post-types/writepanels/variation-admin-html.php:148 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Leave blank for unlimited re-downloads." -msgstr "무제한 다시 내려받기를 가능하게 하려면 비워두세요." - -#: admin/post-types/writepanels/variation-admin-html.php:156 -msgid "Download Expiry:" -msgstr "다운로드 만료:" - -#: admin/post-types/writepanels/variation-admin-html.php:156 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "" -"Enter the number of days before a download link expires, or leave blank." -msgstr "내려받기 링크가 만료되는 날짜의 수를 입력하거나 비워두세요." - -#: admin/post-types/writepanels/variation-admin-html.php:170 -msgid "Enabled" -msgstr "활성화" - -#: admin/post-types/writepanels/variation-admin-html.php:172 -msgid "" -"Enable this option if access is given to a downloadable file upon purchase " -"of a product" -msgstr "" -"상품의 구매시 내려받기 가능한 파일에 접근하도록 하려면 이 옵션을 활성화하세요" - -#: admin/post-types/writepanels/variation-admin-html.php:174 -msgid "" -"Enable this option if a product is not shipped or there is no shipping cost" -msgstr "상품이 배송되지 않거나 배송 비용이 없는 경우 이 옵션을 활성화하세요." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Coupon description" -msgstr "쿠폰 설명" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Optionally enter a description for this coupon for your reference." -msgstr "참고를 위해 이 쿠폰의 설명을 선택적으로 입력할 수 있습니다." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:42 -msgid "Discount type" -msgstr "할인 형식" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Value of the coupon." -msgstr "" -"쿠폰 값, 위에서 적용한 것이 금액인지 퍼센트인지 확인하고 입력하세요." -"" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "Enable free shipping" -msgstr "무료 배송 활성화" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "" -"Check this box if the coupon grants free shipping. The free " -"shipping method must be enabled with the \"must use coupon\" setting " -"checked." -msgstr "" -"쿠폰이 무료 배송이라면 이 박스에 체크하세요. 무료 배송 방법은 \"유효한 무료배송 쿠폰\"으로 설정해서 활성화돼야 합니다." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "Individual use" -msgstr "개별 사용" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "" -"Check this box if the coupon cannot be used in conjunction with other " -"coupons." -msgstr "" -"이 쿠폰이 다른 쿠폰과 연계해서 사용할 수 없도록 하려면 이 박스에 체크하세요" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "Apply before tax" -msgstr "세금전 적용" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "" -"Check this box if the coupon should be applied before calculating cart tax." -msgstr "" -"쿠폰이 장바구니 세금을 계산하기 전에 적용되도록 하려면 이 박스에 체크하세요" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "Exclude sale items" -msgstr "세일 아이템 제외" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "" -"Check this box if the coupon should not apply to items on sale. Per-item " -"coupons will only work if the item is not on sale. Per-cart coupons will " -"only work if there are no sale items in the cart." -msgstr "" -"쿠폰이 세일 아이템에 적용되지 않도록 하려면 이 박스에 체크하세요. 아이템당 쿠" -"폰은 아이템이 세일이 아닐 경우에만 작동합니다. 장바구니당 쿠폰은 장바구니에 " -"세일 아이템이 없을 경우에만 작동합니다." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "Minimum amount" -msgstr "최소 금액" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "No minimum" -msgstr "최소 없음" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "" -"This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "이 란은 쿠폰 사용시 필요한 최소 소계를 설정합니다." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:74 -#: admin/woocommerce-admin-taxonomies.php:28 -#: admin/woocommerce-admin-taxonomies.php:122 -msgid "Products" -msgstr "상품" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:75 -#: admin/post-types/writepanels/writepanel-order_data.php:400 -#: admin/post-types/writepanels/writepanel-product_data.php:523 -#: admin/post-types/writepanels/writepanel-product_data.php:540 -#: admin/woocommerce-admin-reports.php:1245 -msgid "Search for a product…" -msgstr "상품 검색…" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:89 -msgid "" -"Products which need to be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are discounted." -msgstr "" -"이 쿠폰을 사용하기 위해서 장바구니에 있어야할 상품 또는 \"상품 할인\"의 경우 " -"상품이 할인됩니다." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:94 -msgid "Exclude products" -msgstr "상품 제외" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:95 -msgid "Search for a product…" -msgstr "상품 검색..." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:109 -msgid "" -"Products which must not be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are not discounted." -msgstr "" -"이 쿠폰을 사용하기 위해서 장바구니에 있어서는 안될 상품 또는 \"상품 할인\"의 " -"경우 상품이 할인되지 않습니다." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:116 -msgid "Product categories" -msgstr "상품 카테고리" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:117 -msgid "Any category" -msgstr "모든 카테고리" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:125 -msgid "" -"A product must be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will be discounted." -msgstr "" -"상품이 쿠폰의 유효성을 유지하기 위해서 이 카테고리에 있어야 합니다, 또는 \"상" -"품 할인\"의 경우 이 카테고리에 있는 상품이 할인됩니다." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:130 -msgid "Exclude categories" -msgstr "카테고리 제외" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:131 -msgid "No categories" -msgstr "카테고리 없음" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:139 -msgid "" -"Product must not be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will not be discounted." -msgstr "" -"상품이 쿠폰의 유효성을 유지하기 위해서 이 카테고리에 있어서는 안됩니다, 또는 " -"\"상품 할인\"의 경우 이 카테고리에 있는 상품은 할인되지 않습니다." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "Email restrictions" -msgstr "이메일 제한" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "No restrictions" -msgstr "제한 없음" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "" -"List of emails to check against the customer's billing email when an order " -"is placed." -msgstr "" -"주문이 실행될 경우 고객의 청구 이메일을 점검해서 제외하기 위한 이메일 목록" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "Usage limit" -msgstr "사용 한도" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "무제한 사용" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "How many times this coupon can be used before it is void." -msgstr "이 쿠폰이 무효로 되기까지 사용 가능한 횟수" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgctxt "placeholder" -msgid "Never expire" -msgstr "만기 없음" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "The date this coupon will expire, YYYY-MM-DD." -msgstr "이 쿠폰이 만료되는 날짜, YYYY-MM-DD" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:195 -msgid "" -"Coupon code already exists - customers will use the latest coupon with this " -"code." -msgstr "" -"쿠폰 코드가 이미 존재합니다 - 고객은 이 코드가 있는 최근의 쿠폰을 사용할 것입" -"니다." - -#: admin/post-types/writepanels/writepanel-order_data.php:59 -msgid "Order Details" -msgstr "주문 상세" - -#: admin/post-types/writepanels/writepanel-order_data.php:62 -msgid "Order number" -msgstr "주문 번호" - -#: admin/post-types/writepanels/writepanel-order_data.php:67 -msgid "Customer IP:" -msgstr "고객 IP:" - -#: admin/post-types/writepanels/writepanel-order_data.php:74 -msgid "General Details" -msgstr "일반 상세" - -#: admin/post-types/writepanels/writepanel-order_data.php:76 -msgid "Order status:" -msgstr "주문 상태:" - -#: admin/post-types/writepanels/writepanel-order_data.php:86 -msgid "Order Date:" -msgstr "주문 날짜:" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -msgid "h" -msgstr "h" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#: admin/settings/settings-init.php:567 -msgid "m" -msgstr "m" - -#: admin/post-types/writepanels/writepanel-order_data.php:91 -msgid "Customer:" -msgstr "고객:" - -#: admin/post-types/writepanels/writepanel-order_data.php:131 -msgid "Customer Note:" -msgstr "고객 메모" - -#: admin/post-types/writepanels/writepanel-order_data.php:132 -msgid "Customer's notes about the order" -msgstr "주문에 대한 고객 메모" - -#: admin/post-types/writepanels/writepanel-order_data.php:140 -msgid "Billing Details" -msgstr "청구 상세" - -#: admin/post-types/writepanels/writepanel-order_data.php:144 -#: admin/post-types/writepanels/writepanel-order_data.php:234 -msgid "First Name" -msgstr "이름" - -#: admin/post-types/writepanels/writepanel-order_data.php:148 -#: admin/post-types/writepanels/writepanel-order_data.php:238 -msgid "Last Name" -msgstr "성" - -#: admin/post-types/writepanels/writepanel-order_data.php:152 -#: admin/post-types/writepanels/writepanel-order_data.php:242 -#: admin/woocommerce-admin-users.php:155 admin/woocommerce-admin-users.php:204 -msgid "Company" -msgstr "회사" - -#: admin/post-types/writepanels/writepanel-order_data.php:156 -#: admin/post-types/writepanels/writepanel-order_data.php:246 -#: admin/woocommerce-admin-users.php:159 admin/woocommerce-admin-users.php:208 -msgid "Address 1" -msgstr "주소 1" - -#: admin/post-types/writepanels/writepanel-order_data.php:160 -#: admin/post-types/writepanels/writepanel-order_data.php:250 -#: admin/woocommerce-admin-users.php:163 admin/woocommerce-admin-users.php:212 -msgid "Address 2" -msgstr "주소 2" - -#: admin/post-types/writepanels/writepanel-order_data.php:164 -#: admin/post-types/writepanels/writepanel-order_data.php:254 -#: admin/settings/settings-tax-rates.php:42 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-users.php:167 admin/woocommerce-admin-users.php:216 -msgid "City" -msgstr "도시" - -#: admin/post-types/writepanels/writepanel-order_data.php:168 -#: admin/post-types/writepanels/writepanel-order_data.php:258 -#: admin/woocommerce-admin-users.php:171 admin/woocommerce-admin-users.php:220 -msgid "Postcode" -msgstr "우편 번호" - -#: admin/post-types/writepanels/writepanel-order_data.php:172 -#: admin/post-types/writepanels/writepanel-order_data.php:262 -#: admin/woocommerce-admin-users.php:179 admin/woocommerce-admin-users.php:228 -msgid "Country" -msgstr "국가" - -#: admin/post-types/writepanels/writepanel-order_data.php:175 -#: admin/post-types/writepanels/writepanel-order_data.php:265 -msgid "Select a country…" -msgstr "국가를 선택하세요…" - -#: admin/post-types/writepanels/writepanel-order_data.php:178 -#: admin/post-types/writepanels/writepanel-order_data.php:268 -#: admin/woocommerce-admin-users.php:175 admin/woocommerce-admin-users.php:224 -msgid "State/County" -msgstr "주/군" - -#: admin/post-types/writepanels/writepanel-order_data.php:182 -#: admin/woocommerce-admin-users.php:187 -msgid "Email" -msgstr "이메일" - -#: admin/post-types/writepanels/writepanel-order_data.php:185 -msgid "Phone" -msgstr "전화번호" - -#: admin/post-types/writepanels/writepanel-order_data.php:193 -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#: admin/post-types/writepanels/writepanel-order_data.php:277 -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "Address" -msgstr "주소" - -#: admin/post-types/writepanels/writepanel-order_data.php:195 -msgid "No billing address set." -msgstr "청구 주소가 설정되지 않았습니다." - -#: admin/post-types/writepanels/writepanel-order_data.php:208 -msgid "Load billing address" -msgstr "청구 주소 가져오기" - -#: admin/post-types/writepanels/writepanel-order_data.php:230 -msgid "Shipping Details" -msgstr "배송 상세" - -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "No shipping address set." -msgstr "배송 주소가 설정되지 않았습니다." - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Load shipping address" -msgstr "배송 주소 가져오기" - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Copy from billing" -msgstr "청구에서 복사하기" - -#: admin/post-types/writepanels/writepanel-order_data.php:339 -msgid "Item" -msgstr "아이템" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#: admin/post-types/writepanels/writepanel-product_data.php:191 -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Class" -msgstr "세금 클래스" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -msgid "Tax class for the line item" -msgstr "행 아이템 세금 클래스" - -#: admin/post-types/writepanels/writepanel-order_data.php:347 -msgid "Qty" -msgstr "수량" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -msgid "Cost" -msgstr "비용" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -msgid "Line subtotals are before pre-tax discounts, totals are after." -msgstr "라인 소계는 세금 전 할인 전에 있고 총계는 그 다음에 있습니다." - -#: admin/post-types/writepanels/writepanel-order_data.php:352 -#: admin/settings/settings-tax-rates.php:387 -#: admin/settings/settings-tax-rates.php:475 -#: admin/woocommerce-admin-content.php:48 -#: admin/woocommerce-admin-settings.php:186 -msgid "Tax" -msgstr "세금" - -#: admin/post-types/writepanels/writepanel-order_data.php:388 -msgid "Delete Lines" -msgstr "줄 제거" - -#: admin/post-types/writepanels/writepanel-order_data.php:390 -msgid "Stock Actions" -msgstr "재고 작업" - -#: admin/post-types/writepanels/writepanel-order_data.php:391 -msgid "Reduce Line Stock" -msgstr "라인 재고 줄이기" - -#: admin/post-types/writepanels/writepanel-order_data.php:392 -msgid "Increase Line Stock" -msgstr "라인 재고 늘리기" - -#: admin/post-types/writepanels/writepanel-order_data.php:396 -#: admin/post-types/writepanels/writepanel-order_data.php:456 -msgid "Apply" -msgstr "적용하기" - -#: admin/post-types/writepanels/writepanel-order_data.php:402 -msgid "Add item(s)" -msgstr "아이템 추가하기" - -#: admin/post-types/writepanels/writepanel-order_data.php:403 -msgid "Add fee" -msgstr "수수료 추가" - -#: admin/post-types/writepanels/writepanel-order_data.php:434 -msgid "Resend order emails" -msgstr "주문 이메일 다시 보내기" - -#: admin/post-types/writepanels/writepanel-order_data.php:465 -msgid "Move to Trash" -msgstr "휴지통으로 이동하기" - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save Order" -msgstr "주문 저장하기" - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save/update the order" -msgstr "주문 저장하기/업데이트하기" - -#: admin/post-types/writepanels/writepanel-order_data.php:498 -msgid "Discounts" -msgstr "할인" - -#: admin/post-types/writepanels/writepanel-order_data.php:502 -msgid "Cart Discount:" -msgstr "장바구니 할인:" - -#: admin/post-types/writepanels/writepanel-order_data.php:502 -msgid "Discounts before tax - calculated by comparing subtotals to totals." -msgstr "세전 할인 - 소계와 총계를 비교해서 계산됩니다." - -#: admin/post-types/writepanels/writepanel-order_data.php:510 -msgid "Order Discount:" -msgstr "주문 할인:" - -#: admin/post-types/writepanels/writepanel-order_data.php:510 -msgid "Discounts after tax - user defined." -msgstr "세후 할인 - 사용자 정의됨" - -#: admin/post-types/writepanels/writepanel-order_data.php:543 -msgid "Label:" -msgstr "레이블:" - -#: admin/post-types/writepanels/writepanel-order_data.php:544 -msgid "The shipping title the customer sees" -msgstr "고객에게 보이는 배송 타이틀" - -#: admin/post-types/writepanels/writepanel-order_data.php:551 -msgid "Cost:" -msgstr "비용:" - -#: admin/post-types/writepanels/writepanel-order_data.php:552 -msgid "(ex. tax)" -msgstr "(세금 제외)" - -#: admin/post-types/writepanels/writepanel-order_data.php:559 -msgid "Method:" -msgstr "방법:" - -#: admin/post-types/writepanels/writepanel-order_data.php:581 -#: admin/post-types/writepanels/writepanel-order_data.php:583 -#: admin/post-types/writepanels/writepanel-order_data.php:682 -#: admin/post-types/writepanels/writepanel-order_data.php:684 -msgid "Other" -msgstr "기타" - -#: admin/post-types/writepanels/writepanel-order_data.php:597 -msgid "Tax Rows" -msgstr "세금 행" - -#: admin/post-types/writepanels/writepanel-order_data.php:622 -msgid "+ Add tax row" -msgstr "+세금 행 추가하기" - -#: admin/post-types/writepanels/writepanel-order_data.php:622 -msgid "" -"These rows contain taxes for this order. This allows you to display multiple " -"or compound taxes rather than a single total." -msgstr "" -"이 행은 이 주문의 세금을 포함합니다. 이것은 단일 총계가 아닌 다중 또는 복합 " -"세금을 표시하도록 합니다." - -#: admin/post-types/writepanels/writepanel-order_data.php:626 -msgid "Tax Totals" -msgstr "세금 총계" - -#: admin/post-types/writepanels/writepanel-order_data.php:630 -msgid "Total tax for line items + fees." -msgstr "라인 아이템 + 비용에 대한 총 세금" - -#: admin/post-types/writepanels/writepanel-order_data.php:652 -#: admin/post-types/writepanels/writepanels-init.php:70 -msgid "Order Totals" -msgstr "주문 총계" - -#: admin/post-types/writepanels/writepanel-order_data.php:656 -msgid "Order Total:" -msgstr "주문 총계:" - -#: admin/post-types/writepanels/writepanel-order_data.php:664 -msgid "Payment Method:" -msgstr "지불 방법:" - -#: admin/post-types/writepanels/writepanel-order_data.php:695 -msgid "Calc taxes" -msgstr "세금 계산하기" - -#: admin/post-types/writepanels/writepanel-order_data.php:697 -msgid "Calc totals" -msgstr "총계 계산하기" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:57 -msgid "Choose a downloadable product…" -msgstr "다운로드 가능한 상품을 선택하세요…" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:87 -msgid "Grant Access" -msgstr "접근 부여" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:125 -msgid "" -"Could not grant access - the user may already have permission for this file " -"or billing email is not set. Ensure the billing email is set, and the order " -"has been saved." -msgstr "" -"접근을 허용할 수 없습니다 - 사용자가 이 파일에 대해 이미 허용이 돼있을 수도 " -"있거나 청구지 이메일이 설정돼있지 않습니다. 청구지 이메일이 설정돼있는지, 주" -"문이 저장됐는지 확인하세요. " - -#: admin/post-types/writepanels/writepanel-order_downloads.php:148 -msgid "Are you sure you want to revoke access to this download?" -msgstr "정말로 이 다운로드 접근 폐기를 원하시나요?" - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -msgid "added %s ago" -msgstr "%s 전에 추가됨" - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -msgid "Delete note" -msgstr "메모 삭제" - -#: admin/post-types/writepanels/writepanel-order_notes.php:50 -msgid "There are no notes for this order yet." -msgstr "이 주문에 아직 메모가 없습니다." - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "Add note" -msgstr "메모 추가" - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "" -"Add a note for your reference, or add a customer note (the user will be " -"notified)." -msgstr "참고를 위해 메모를 추가하기 또는 고객 메모 추가하기 (사용자에게 알림)" - -#: admin/post-types/writepanels/writepanel-order_notes.php:62 -msgid "Customer note" -msgstr "고객 메모" - -#: admin/post-types/writepanels/writepanel-order_notes.php:63 -msgid "Private note" -msgstr "개인용 메모" - -#: admin/post-types/writepanels/writepanel-order_notes.php:65 -#: admin/post-types/writepanels/writepanel-product_data.php:501 -msgid "Add" -msgstr "추가하기" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations for variable products are defined here." -msgstr "옵션 상품 옵션은 여기에 정의됩니다." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations" -msgstr "옵션" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:65 -msgid "" -"Before adding variations, add and save some attributes on the " -"Attributes tab." -msgstr "" -"옵션을 추가하기 전에 속성 탭에서 몇 개의 속성을 추가하고 저" -"장하세요." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:67 -msgid "Learn more" -msgstr "더 배우기" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Close all" -msgstr "모두 닫기" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Expand all" -msgstr "모두 확장하기" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:75 -msgid "Bulk edit:" -msgstr "일괄 편집:" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:77 -msgid "Toggle "Enabled"" -msgstr "토글 "활성화"" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:78 -msgid "Toggle "Downloadable"" -msgstr "토글 "내려받기 가능"" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:79 -msgid "Toggle "Virtual"" -msgstr "토글 "가상상품"" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:80 -msgid "Delete all variations" -msgstr "모든 옵션 제거하기" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:81 -msgid "Prices" -msgstr "가격" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:82 -msgid "Sale prices" -msgstr "세일 가격" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:88 -msgid "File Path" -msgstr "파일 경로" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:89 -msgid "Download limit" -msgstr "내려받기 한도" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:90 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Download Expiry" -msgstr "내려받기 만료" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:93 -msgid "Go" -msgstr "가기" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:193 -msgid "Add Variation" -msgstr "옵션 추가하기" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:195 -msgid "Link all variations" -msgstr "모든 옵션 링크하기" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:197 -msgid "Default selections:" -msgstr "기본 선택:" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:210 -msgid "No default" -msgstr "기본 없음" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:299 -msgid "" -"Are you sure you want to link all variations? This will create a new " -"variation for each and every possible combination of variation attributes " -"(max 50 per run)." -msgstr "" -"정말로 모든 옵션 링크를 원하시나요? 이것은 모든 가능한 옵션 속성 조합에 대해" -"서 새로운 옵션을 생성합니다 (운행당 최대 50)." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:316 -msgid "variation added" -msgstr "옵션 추가됨" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:318 -msgid "variations added" -msgstr "옵션 추가됨" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:320 -msgid "No variations added" -msgstr "옵션이 추가되지 않았습니다" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:343 -msgid "Are you sure you want to remove this variation?" -msgstr "정말로 이 옵션 제거를 원하시나요?" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:399 -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "정말로 모든 옵션 제거를 원하시나요? 복구할 수 없습니다." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:402 -msgid "Last warning, are you sure?" -msgstr "마지막 경고입니다. 정말인가요?" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:439 -msgid "Enter a value" -msgstr "값을 입력하세요" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:517 -#: admin/woocommerce-admin-taxonomies.php:62 -#: admin/woocommerce-admin-taxonomies.php:154 -msgid "Choose an image" -msgstr "이미지를 선택하세요" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:519 -msgid "Set variation image" -msgstr "옵션 이미지 설정" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:563 -msgid "Variable product" -msgstr "옵션 상품" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:629 -msgid "Variation #%s of %s" -msgstr "옵션 %s 중 #%s" - -#: admin/post-types/writepanels/writepanel-product_data.php:43 -msgid "Product Type" -msgstr "상품 형식" - -#: admin/post-types/writepanels/writepanel-product_data.php:53 -msgid "Virtual products are intangible and aren't shipped." -msgstr "가상 상품은 형태가 없고 배송되는 것이 아닙니다." - -#: admin/post-types/writepanels/writepanel-product_data.php:59 -msgid "Downloadable products give access to a file upon purchase." -msgstr "다운로드 가능 상품은 구매시 파일에 접근을 부여합니다." - -#: admin/post-types/writepanels/writepanel-product_data.php:77 -#: admin/woocommerce-admin-content.php:44 -#: admin/woocommerce-admin-settings.php:182 -msgid "General" -msgstr "일반" - -#: admin/post-types/writepanels/writepanel-product_data.php:79 -#: admin/woocommerce-admin-content.php:47 -#: admin/woocommerce-admin-settings.php:185 -msgid "Inventory" -msgstr "저장소" - -#: admin/post-types/writepanels/writepanel-product_data.php:83 -msgid "Linked Products" -msgstr "연결된 상품" - -#: admin/post-types/writepanels/writepanel-product_data.php:85 -#: admin/woocommerce-admin-attributes.php:299 -#: admin/woocommerce-admin-init.php:66 -msgid "Attributes" -msgstr "속성" - -#: admin/post-types/writepanels/writepanel-product_data.php:87 -msgid "Advanced" -msgstr "고급" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "Stock Keeping Unit" -msgstr "재고 관리 단위" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "" -"SKU refers to a Stock-keeping unit, a unique identifier for each distinct " -"product and service that can be purchased." -msgstr "" -"SKU는 재고 관리 단위를 말합니다. 구매할 수 있는 각 구별 상품과 서비스에 대한 " -"독특한 식별자입니다." - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Product URL" -msgstr "상품 URL" - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Enter the external URL to the product." -msgstr "상품에 외부 URL을 입력하세요." - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "Button text" -msgstr "버튼 텍스트" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgctxt "placeholder" -msgid "Buy product" -msgstr "상품 구매하기" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "This text will be shown on the button linking to the external product." -msgstr "이 텍스트는 외부 상품을 링크하는 버튼에 보이게 됩니다." - -#: admin/post-types/writepanels/writepanel-product_data.php:119 -msgid "Regular Price" -msgstr "정상 가격" - -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Sale Price" -msgstr "세일 가격" - -#: admin/post-types/writepanels/writepanel-product_data.php:135 -msgid "Sale Price Dates" -msgstr "세일 가격 일자" - -#: admin/post-types/writepanels/writepanel-product_data.php:138 -#: admin/post-types/writepanels/writepanel-product_data.php:1082 -msgid "Cancel" -msgstr "취소" - -#: admin/post-types/writepanels/writepanel-product_data.php:152 -msgid "File paths (one per line)" -msgstr "파일 경로 (라인당 하나)" - -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Download Limit" -msgstr "내려받기 한도" - -#: admin/post-types/writepanels/writepanel-product_data.php:178 -msgid "Tax Status" -msgstr "세금 상태" - -#: admin/post-types/writepanels/writepanel-product_data.php:180 -msgid "Shipping only" -msgstr "배송만" - -#: admin/post-types/writepanels/writepanel-product_data.php:181 -msgid "None" -msgstr "없음" - -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Enable stock management at product level" -msgstr "상품 단계에서 재고 관리 활성화" - -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "" -"Stock quantity. If this is a variable product this value will be used to " -"control stock for all variations, unless you define stock at variation level." -msgstr "재고 수량. " - -#: admin/post-types/writepanels/writepanel-product_data.php:230 -msgid "Stock status" -msgstr "재고 상태" - -#: admin/post-types/writepanels/writepanel-product_data.php:233 -msgid "" -"Controls whether or not the product is listed as \"in stock\" or \"out of " -"stock\" on the frontend." -msgstr "" -"상품이 사이트 전면에서 \"재고 있음\" 이나 \"품절\" 표시된 목록으로 나타나도" -"록 제어합니다. " - -#: admin/post-types/writepanels/writepanel-product_data.php:240 -msgid "Allow Backorders?" -msgstr "미재고 주문을 허용하나요?" - -#: admin/post-types/writepanels/writepanel-product_data.php:241 -msgid "Do not allow" -msgstr "허용하지 않음" - -#: admin/post-types/writepanels/writepanel-product_data.php:242 -msgid "Allow, but notify customer" -msgstr "허용하지만 고객에게 알림" - -#: admin/post-types/writepanels/writepanel-product_data.php:243 -msgid "Allow" -msgstr "허용함" - -#: admin/post-types/writepanels/writepanel-product_data.php:244 -msgid "" -"If managing stock, this controls whether or not backorders are allowed for " -"this product and variations. If enabled, stock quantity can go below 0." -msgstr "" -"재고 관리의 경우 이것은 상품이나 옵션에 대해 미재고 주문이 허용되는지 여부를 " -"제어합니다. 활성화인 경우 재고 수량은 0 이하로 갈 수도 있습니다." - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "Sold Individually" -msgstr "개별 판매" - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "" -"Enable this to only allow one of this item to be bought in a single order" -msgstr "" -"단일 주문에서 이 아이템 중 하나가 구매되도록 하려면 이것을 활성화하세요" - -#: admin/post-types/writepanels/writepanel-product_data.php:273 -msgid "Weight in decimal form" -msgstr "십진법에 의한 무게" - -#: admin/post-types/writepanels/writepanel-product_data.php:284 -msgid "Dimensions" -msgstr "규격" - -#: admin/post-types/writepanels/writepanel-product_data.php:290 -msgid "LxWxH in decimal form" -msgstr "십진법에 의한 길이x넓이x높이" - -#: admin/post-types/writepanels/writepanel-product_data.php:311 -msgid "No shipping class" -msgstr "배송 클래스 없음" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "Shipping class" -msgstr "배송 클래스" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "" -"Shipping classes are used by certain shipping methods to group similar " -"products." -msgstr "배송 클래스는 비슷한 상품을 그룹화해서 일정한 배송 방법에 사용됩니다." - -#: admin/post-types/writepanels/writepanel-product_data.php:384 -#: admin/post-types/writepanels/writepanel-product_data.php:476 -#: admin/woocommerce-admin-init.php:440 -msgid "Value(s)" -msgstr "값" - -#: admin/post-types/writepanels/writepanel-product_data.php:386 -msgid "Select terms" -msgstr "용어를 선택하세요" - -#: admin/post-types/writepanels/writepanel-product_data.php:398 -msgid "Select all" -msgstr "모두 선택" - -#: admin/post-types/writepanels/writepanel-product_data.php:398 -msgid "Select none" -msgstr "아무것도 선택하지 않음" - -#: admin/post-types/writepanels/writepanel-product_data.php:400 -msgid "Add new" -msgstr "새로 추가" - -#: admin/post-types/writepanels/writepanel-product_data.php:413 -msgid "Pipe (|) separate terms" -msgstr "파이프 (|) 분리 용어" - -#: admin/post-types/writepanels/writepanel-product_data.php:427 -#: admin/post-types/writepanels/writepanel-product_data.php:482 -#: admin/woocommerce-admin-init.php:442 -msgid "Visible on the product page" -msgstr "상품 페이지에 보임" - -#: admin/post-types/writepanels/writepanel-product_data.php:440 -#: admin/post-types/writepanels/writepanel-product_data.php:488 -#: admin/woocommerce-admin-init.php:443 -msgid "Used for variations" -msgstr "옵션에 사용됨" - -#: admin/post-types/writepanels/writepanel-product_data.php:477 -#: admin/woocommerce-admin-init.php:441 -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "" -"몇개의 텍스트를 입력하거나 파이프(|) 분리 값으로 몇개의 속성을 입력하세요." - -#: admin/post-types/writepanels/writepanel-product_data.php:503 -msgid "Custom product attribute" -msgstr "사용자 정의 상품 속성" - -#: admin/post-types/writepanels/writepanel-product_data.php:515 -msgid "Save attributes" -msgstr "속성 저장하기" - -#: admin/post-types/writepanels/writepanel-product_data.php:522 -msgid "Up-Sells" -msgstr "업셀" - -#: admin/post-types/writepanels/writepanel-product_data.php:537 -msgid "" -"Up-sells are products which you recommend instead of the currently viewed " -"product, for example, products that are more profitable or better quality or " -"more expensive." -msgstr "" -"업셀은 고객이 현재 보고 있는 상품 대신에 추천하는, 예를들면 더 수익이 있거나 " -"더 좋은 품질, 더 비싼 상품을 말합니다. " - -#: admin/post-types/writepanels/writepanel-product_data.php:539 -msgid "Cross-Sells" -msgstr "크로스셀" - -#: admin/post-types/writepanels/writepanel-product_data.php:554 -msgid "" -"Cross-sells are products which you promote in the cart, based on the current " -"product." -msgstr "" -"크로스셀은 현재 상품을 기준으로 장바구니에 추가하도록 유도하는 상품입니다. " - -#: admin/post-types/writepanels/writepanel-product_data.php:564 -msgid "Choose a grouped product…" -msgstr "그룹 상품을 선택하세요…" - -#: admin/post-types/writepanels/writepanel-product_data.php:590 -msgid "Grouping" -msgstr "그룹화하기" - -#: admin/post-types/writepanels/writepanel-product_data.php:590 -msgid "Set this option to make this product part of a grouped product." -msgstr "이 상품을 그룹 상품의 일부로 만들기 위해 이 옵션을 설정하기." - -#: admin/post-types/writepanels/writepanel-product_data.php:610 -msgid "Purchase Note" -msgstr "구매 메모" - -#: admin/post-types/writepanels/writepanel-product_data.php:610 -msgid "Enter an optional note to send the customer after purchase." -msgstr "구매 후 고객에게 보낼 옵션 메모를 입력하세요." - -#: admin/post-types/writepanels/writepanel-product_data.php:617 -msgid "Menu order" -msgstr "메뉴 순서" - -#: admin/post-types/writepanels/writepanel-product_data.php:617 -msgid "Custom ordering position." -msgstr "사용자 정의 순서 위치" - -#: admin/post-types/writepanels/writepanel-product_data.php:625 -msgid "Enable reviews" -msgstr "리뷰 활성화" - -#: admin/post-types/writepanels/writepanel-product_data.php:714 -msgid "Product SKU must be unique." -msgstr "상품 SKU는 독특해야합니다." - -#: admin/post-types/writepanels/writepanel-product_data.php:1046 -msgid "Catalog/search" -msgstr "카탈로그/검색" - -#: admin/post-types/writepanels/writepanel-product_data.php:1053 -msgid "Catalog visibility:" -msgstr "카탈로그 가시성:" - -#: admin/post-types/writepanels/writepanel-product_data.php:1069 -msgid "" -"Define the loops this product should be visible in. The product will still " -"be accessible directly." -msgstr "" -"이 상품이 보이게 될 페이지를 정하세요. 상품은 직접 접근이 가능하기도 합니다." - -#: admin/post-types/writepanels/writepanel-product_data.php:1075 -msgid "Enable this option to feature this product." -msgstr "이 상품에 특성화하기 위해 이 옵션을 활성화" - -#: admin/post-types/writepanels/writepanel-product_data.php:1077 -msgid "Featured Product" -msgstr "특성 상품" - -#: admin/post-types/writepanels/writepanel-product_data.php:1081 -msgid "OK" -msgstr "OK" - -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -msgid "Delete image" -msgstr "이미지 제거하기" - -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -#: admin/woocommerce-admin-attributes.php:323 -msgid "Delete" -msgstr "제거하기" - -#: admin/post-types/writepanels/writepanel-product_images.php:53 -msgid "Add product gallery images" -msgstr "상품 갤러리 이미지 추가하기" - -#: admin/post-types/writepanels/writepanel-product_images.php:79 -msgid "Add Images to Product Gallery" -msgstr "이미지를 상품 갤러리에 추가하기" - -#: admin/post-types/writepanels/writepanel-product_images.php:81 -msgid "Add to gallery" -msgstr "갤러리에 추가하기" - -#: admin/post-types/writepanels/writepanels-init.php:47 -msgid "Product Gallery" -msgstr "상품 갤러리" - -#: admin/post-types/writepanels/writepanels-init.php:55 -msgid "Product Short Description" -msgstr "상품 설명 요약" - -#: admin/post-types/writepanels/writepanels-init.php:64 -msgid "Reviews" -msgstr "리뷰" - -#: admin/post-types/writepanels/writepanels-init.php:68 -msgid "Order Data" -msgstr "주문 데이터" - -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "Order Items" -msgstr "주문 아이템" - -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "" -"Note: if you edit quantities or remove items from the order you will need to " -"manually update stock levels." -msgstr "" -"주의: 주문에서 수량을 수정하거나 아이템을 제거하면 재고 수준을 수동으로 업데" -"이트해야 할지도 모릅니다." - -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "Downloadable Product Permissions" -msgstr "내려받기 가능한 상품 허용" - -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "" -"Note: Permissions for order items will automatically be granted when the " -"order status changes to processing/completed." -msgstr "" -"주의: 주문 상태가 처리중/완료됨으로 변경되면 주문 아이템의 접근 허용이 자동으" -"로 부여됩니다." - -#: admin/post-types/writepanels/writepanels-init.php:73 -msgid "Order Actions" -msgstr "주문 작업" - -#: admin/post-types/writepanels/writepanels-init.php:81 -msgid "Coupon Data" -msgstr "쿠폰 데이터" - -#: admin/post-types/writepanels/writepanels-init.php:100 -msgid "Coupon code" -msgstr "쿠폰 코드" - -#: admin/post-types/writepanels/writepanels-init.php:101 -msgid "Product name" -msgstr "상품 이름" - -#: admin/post-types/writepanels/writepanels-init.php:185 -msgid "Allow reviews." -msgstr "리뷰 허용." - -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "" -"Allow trackbacks and pingbacks on this " -"page." -msgstr "" -"이 페이지에서 트랙백과 핑백을 허용함" - -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" -msgstr "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" - -#: admin/settings/settings-frontend-styles.php:23 -msgid "Styles" -msgstr "스타일" - -#: admin/settings/settings-frontend-styles.php:43 -msgid "Primary" -msgstr "주" - -#: admin/settings/settings-frontend-styles.php:43 -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "작업 버튼/가격 슬라이더/레이어 냅 UI 부르기" - -#: admin/settings/settings-frontend-styles.php:44 -msgid "Secondary" -msgstr "부" - -#: admin/settings/settings-frontend-styles.php:44 -msgid "Buttons and tabs" -msgstr "버튼과 탭" - -#: admin/settings/settings-frontend-styles.php:45 -msgid "Highlight" -msgstr "하이라이트" - -#: admin/settings/settings-frontend-styles.php:45 -msgid "Price labels and Sale Flashes" -msgstr "가격 레이블과 판매 플래시" - -#: admin/settings/settings-frontend-styles.php:46 -msgid "Content" -msgstr "컨텐트" - -#: admin/settings/settings-frontend-styles.php:46 -msgid "Your themes page background - used for tab active states" -msgstr "테마 페이지 배경 - 탭 활성 상태에 사용됨" - -#: admin/settings/settings-frontend-styles.php:47 -msgid "Subtext" -msgstr "부텍스트" - -#: admin/settings/settings-frontend-styles.php:47 -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "특정 텍스트와 추가정보에 사용됨 - 브레드크럼, 작은 텍스트 등." - -#: admin/settings/settings-frontend-styles.php:51 -msgid "" -"To edit colours woocommerce/assets/css/woocommerce-base.less " -"and woocommerce.css need to be writable. See the Codex for more " -"information." -msgstr "" -"색상을 편집하려면 woocommerce/assets/css/woocommerce-base.less와" -"woocommerce.css가 쓰기 가능해야합니다. the Codex 에서 더 많은 정보를 " -"참고하세요." - -#: admin/settings/settings-init.php:18 -msgid "Localisation" -msgstr "국가별 번역" - -#: admin/settings/settings-init.php:19 -msgid "Use informal localisation for %s" -msgstr "%s에 대해서 비공식 지역화를 사용하세요" - -#: admin/settings/settings-init.php:33 -msgid "General Options" -msgstr "일반 옵션" - -#: admin/settings/settings-init.php:36 -msgid "Base Location" -msgstr "기준 위치" - -#: admin/settings/settings-init.php:37 -msgid "" -"This is the base location for your business. Tax rates will be based on this " -"country." -msgstr "이것은 영업의 기준 장소입니다. 세율은 이 국가를 기준으로 합니다." - -#: admin/settings/settings-init.php:46 -msgid "Currency" -msgstr "통화" - -#: admin/settings/settings-init.php:47 -msgid "" -"This controls what currency prices are listed at in the catalog and which " -"currency gateways will take payments in." -msgstr "" -"이것은 카탈로그에 가격이 어떤 통화로 나타나는지, 게이트웨이가 어떤 통화로 지" -"불을 받을 것이지 결정합니다." - -#: admin/settings/settings-init.php:58 -msgid "Allowed Countries" -msgstr "허용 국가" - -#: admin/settings/settings-init.php:59 -msgid "These are countries that you are willing to ship to." -msgstr "이것은 배송하고자 하는 국가입니다." - -#: admin/settings/settings-init.php:67 -msgid "All Countries" -msgstr "모든 국가" - -#: admin/settings/settings-init.php:68 admin/settings/settings-init.php:73 -msgid "Specific Countries" -msgstr "특정 국가" - -#: admin/settings/settings-init.php:84 -msgid "Store Notice" -msgstr "상점 공지" - -#: admin/settings/settings-init.php:85 -msgid "Enable site-wide store notice text" -msgstr "사이트 전체 상점 공지 글 활성화" - -#: admin/settings/settings-init.php:92 -msgid "Store Notice Text" -msgstr "상점 공지 글 " - -#: admin/settings/settings-init.php:95 -msgid "" -"This is a demo store for testing purposes — no orders shall be " -"fulfilled." -msgstr "실험 목적의 데모 상점입니다 — 주문을 가능하지 않습니다." - -#: admin/settings/settings-init.php:102 -msgid "Cart, Checkout and Accounts" -msgstr "장바구니, 결제 및 계정" - -#: admin/settings/settings-init.php:105 admin/woocommerce-admin-content.php:61 -#: admin/woocommerce-admin-content.php:76 -#: admin/woocommerce-admin-reports.php:63 -msgid "Coupons" -msgstr "쿠폰" - -#: admin/settings/settings-init.php:106 -msgid "Enable the use of coupons" -msgstr "쿠폰 사용 활성화" - -#: admin/settings/settings-init.php:110 -msgid "Coupons can be applied from the cart and checkout pages." -msgstr "쿠폰은 장바구니와 결제 페이지에서 적용이 가능합니다." - -#: admin/settings/settings-init.php:114 -#: admin/woocommerce-admin-install.php:201 -#: admin/woocommerce-admin-status.php:307 -msgid "Checkout" -msgstr "결제" - -#: admin/settings/settings-init.php:115 -msgid "Enable guest checkout (no account required)" -msgstr "비회원 결제 활성화 (계정 불필요)" - -#: admin/settings/settings-init.php:123 -msgid "Enable customer note field on checkout" -msgstr "결제시 고객 메모란 활성화" - -#: admin/settings/settings-init.php:131 -msgid "Force secure checkout" -msgstr "안전 결제 필수 사용하기" - -#: admin/settings/settings-init.php:137 -msgid "" -"Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -msgstr "결제 페이지에서 SSL (HTTPS) 강제 (SSL 증명서 필수)" - -#: admin/settings/settings-init.php:141 -msgid "Un-force HTTPS when leaving the checkout" -msgstr "결제 퇴장시 HTTPS 해제" - -#: admin/settings/settings-init.php:150 -msgid "Registration" -msgstr "회원가입" - -#: admin/settings/settings-init.php:151 -msgid "Allow registration on the checkout page" -msgstr "결제 페이지에서 회원가입 허용" - -#: admin/settings/settings-init.php:159 -msgid "Allow registration on the \"My Account\" page" -msgstr "\"나의 계정\" 페이지에서 회원가입 허용" - -#: admin/settings/settings-init.php:167 -msgid "Register using the email address for the username" -msgstr "사용자 ID에 이메일 주소 사용해서 회원가입하기" - -#: admin/settings/settings-init.php:175 -msgid "Customer Accounts" -msgstr "고객 계정" - -#: admin/settings/settings-init.php:176 -msgid "Prevent customers from accessing WordPress admin" -msgstr "고객이 워드프레스 관리자 페이지 접근을 방지" - -#: admin/settings/settings-init.php:184 -msgid "Clear cart when logging out" -msgstr "로그아웃 시 장바구니 내용 삭제" - -#: admin/settings/settings-init.php:192 -msgid "Allow customers to repurchase orders from their account page" -msgstr "고객 자신의 계정 페이지에서 주문 재 구매 허용" - -#: admin/settings/settings-init.php:201 -msgid "Styles and Scripts" -msgstr "스타일시트 및 자바스크립트" - -#: admin/settings/settings-init.php:204 -msgid "Styling" -msgstr "스타일링" - -#: admin/settings/settings-init.php:205 -msgid "Enable WooCommerce CSS" -msgstr "WooCommerce CSS 활성화" - -#: admin/settings/settings-init.php:216 -msgid "Scripts" -msgstr "스크립트" - -#: admin/settings/settings-init.php:217 -msgid "Enable Lightbox" -msgstr "라이트박스 활성화" - -#: admin/settings/settings-init.php:220 -msgid "" -"Include WooCommerce's lightbox. Product gallery images and the add review " -"form will open in a lightbox." -msgstr "" -"우커머스 라이트박스 포함. 상품 갤러리 이미지와 추가된 리뷰 양식은 라이트박스" -"에서 열립니다." - -#: admin/settings/settings-init.php:226 -msgid "Enable enhanced country select boxes" -msgstr "고급 국가 선택 박스 활성화" - -#: admin/settings/settings-init.php:231 -msgid "This will enable a script allowing the country fields to be searchable." -msgstr "이것은 국가 선택 박스에서 검색이 가능하도록 스크립트를 활성화합니다." - -#: admin/settings/settings-init.php:236 -msgid "Downloadable Products" -msgstr "내려받기 가능한 상품" - -#: admin/settings/settings-init.php:239 -msgid "File Download Method" -msgstr "파일 다운로드 방법" - -#: admin/settings/settings-init.php:240 -msgid "" -"Forcing downloads will keep URLs hidden, but some servers may serve large " -"files unreliably. If supported, X-Accel-Redirect/ X-" -"Sendfile can be used to serve downloads instead (server requires " -"mod_xsendfile)." -msgstr "" -"다운로드 필수 사용은 URL을 감춥니다. 하지만 어떤 서버는 큰 파일을 신뢰할 수 " -"없도록 서비스할 수도 있습니다. 대신에 지원할 경우 X-Accel-Redirect/ X-Sendfile가 다운로드에 사용될 수 있습니다 (서버에 " -"mod_xsendfile가 필수임 ). " - -#: admin/settings/settings-init.php:248 -msgid "Force Downloads" -msgstr "다운로드 필수 사용" - -#: admin/settings/settings-init.php:249 -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "X-Accel-Redirect/X-Sendfile" - -#: admin/settings/settings-init.php:250 -msgid "Redirect only" -msgstr "리다이렉트 전용" - -#: admin/settings/settings-init.php:255 -msgid "Access Restriction" -msgstr "접근 제한" - -#: admin/settings/settings-init.php:256 -msgid "Downloads require login" -msgstr "내려받기는 로그인이 필요합니다" - -#: admin/settings/settings-init.php:260 -msgid "This setting does not apply to guest purchases." -msgstr "이 설정은 비회원 구매 시에는 적용되지 않습니다." - -#: admin/settings/settings-init.php:265 -msgid "Grant access to downloadable products after payment" -msgstr "지불 후에 다운로드 가능 상품에 접근 부여" - -#: admin/settings/settings-init.php:269 -msgid "" -"Enable this option to grant access to downloads when orders are \"processing" -"\", rather than \"completed\"." -msgstr "" -"주문이 \"완료됨\"이 아닌 \"처리중\"인 경우 내려받기에 접근 허용하려면 이 옵션" -"을 활성화하세요." - -#: admin/settings/settings-init.php:285 -msgid "" -"Note: The shop page has children - child pages will not work if you enable " -"this option." -msgstr "" -"주의: 상점 페이지는 하위가 있습니다. 하위 페이지는 이 옵션을 활성화하면 작동" -"하지 않습니다." - -#: admin/settings/settings-init.php:290 -msgid "Page Setup" -msgstr "페이지 설정" - -#: admin/settings/settings-init.php:292 -msgid "" -"Set up core WooCommerce pages here, for example the base page. The base page " -"can also be used in your %sproduct permalinks%s." -msgstr "" -"여기서 우커머스 코어 페이지를 설정하세요. 예를들면 기본 페이지입니다. 기본 페" -"이지는 %s상품 고유주소%s에서도 사용될 수 있습니다." - -#: admin/settings/settings-init.php:297 -msgid "Shop Base Page" -msgstr "상점 기본 페이지" - -#: admin/settings/settings-init.php:298 -msgid "" -"This sets the base page of your shop - this is where your product archive " -"will be." -msgstr "" -"이것은 상점의 기본 페이지를 설정합니다. - 이것은 상품 보관물이 존재하는 곳입" -"니다." - -#: admin/settings/settings-init.php:308 -msgid "Terms Page ID" -msgstr "이용 약관 페이지 아이디" - -#: admin/settings/settings-init.php:309 -msgid "" -"If you define a \"Terms\" page the customer will be asked if they accept " -"them when checking out." -msgstr "" -"\"이용 약관\" 페이지를 정의하면 고객은 결제시 수락할지 질문을 받게 됩니다." - -#: admin/settings/settings-init.php:320 -msgid "Shop Pages" -msgstr "상점 페이지" - -#: admin/settings/settings-init.php:320 -msgid "" -"The following pages need selecting so that WooCommerce knows where they are. " -"These pages should have been created upon installation of the plugin, if not " -"you will need to create them." -msgstr "" -"다음 페이지는 선택이 필요합니다. 우커머스가 그것이 어디에 있는지 알아야하기 " -"때문입니다. 이 페이지들은 플러그인 설치시에 생성됐어야 합니다. 아닌 경우 생" -"성해야 합니다." - -#: admin/settings/settings-init.php:323 -msgid "Cart Page" -msgstr "장바구니 페이지" - -#: admin/settings/settings-init.php:324 -msgid "Page contents: [woocommerce_cart]" -msgstr "페이지 컨텐트: [woocommerce_cart]" - -#: admin/settings/settings-init.php:334 -msgid "Checkout Page" -msgstr "결제 페이지" - -#: admin/settings/settings-init.php:335 -msgid "Page contents: [woocommerce_checkout]" -msgstr "페이지 컨텐트: [woocommerce_checkout]" - -#: admin/settings/settings-init.php:345 -msgid "Pay Page" -msgstr "지불 페이지" - -#: admin/settings/settings-init.php:346 -msgid "Page contents: [woocommerce_pay] Parent: \"Checkout\"" -msgstr "페이지 컨텐트: [woocommerce_pay] 부모: \"결제\"" - -#: admin/settings/settings-init.php:356 -msgid "Thanks Page" -msgstr "감사 페이지" - -#: admin/settings/settings-init.php:357 -msgid "Page contents: [woocommerce_thankyou] Parent: \"Checkout\"" -msgstr "페이지 컨텐트: [woocommerce_thankyou] 부모: \"결제\"" - -#: admin/settings/settings-init.php:367 -msgid "My Account Page" -msgstr "나의 계정 페이지" - -#: admin/settings/settings-init.php:368 -msgid "Page contents: [woocommerce_my_account]" -msgstr "페이지 컨텐트: [woocommerce_my_account]" - -#: admin/settings/settings-init.php:378 -msgid "Edit Address Page" -msgstr "주소 페이지 편집" - -#: admin/settings/settings-init.php:379 -msgid "Page contents: [woocommerce_edit_address] Parent: \"My Account\"" -msgstr "페이지 컨텐트: [woocommerce_edit_address] 부모: \"나의 계정\"" - -#: admin/settings/settings-init.php:389 -msgid "View Order Page" -msgstr "주문 페이지 보기" - -#: admin/settings/settings-init.php:390 -msgid "Page contents: [woocommerce_view_order] Parent: \"My Account\"" -msgstr "페이지 컨텐트: [woocommerce_view_order] 부모: \"나의 계정\"" - -#: admin/settings/settings-init.php:400 -msgid "Change Password Page" -msgstr "비밀번호 변경 페이지" - -#: admin/settings/settings-init.php:401 -msgid "Page contents: [woocommerce_change_password] Parent: \"My Account\"" -msgstr "페이지 컨텐트: [woocommerce_change_password] 부모: \"나의 계정\"" - -#: admin/settings/settings-init.php:411 -msgid "Logout Page" -msgstr "로그아웃 페이지" - -#: admin/settings/settings-init.php:412 -msgid "Parent: \"My Account\"" -msgstr "상위 \"나의 계정\"" - -#: admin/settings/settings-init.php:422 -msgid "Lost Password Page" -msgstr "비밀번호 분실 페이지" - -#: admin/settings/settings-init.php:423 -msgid "Page contents: [woocommerce_lost_password] Parent: \"My Account\"" -msgstr "페이지 콘텐츠: [woocommerce_lost_password] Parent: \"나의 계정\"" - -#: admin/settings/settings-init.php:439 -msgid "Catalog Options" -msgstr "카탈로그 옵션" - -#: admin/settings/settings-init.php:442 -msgid "Default Product Sorting" -msgstr "기본 상품 분류" - -#: admin/settings/settings-init.php:443 -msgid "This controls the default sort order of the catalog." -msgstr "이것은 카탈로그의 기본 분류 순서를 제어합니다." - -#: admin/settings/settings-init.php:449 -msgid "Default sorting (custom ordering + name)" -msgstr "기본순 (사용자 정의 순서 + 상품명)" - -#: admin/settings/settings-init.php:450 -msgid "Popularity (sales)" -msgstr "인기순 (판매)" - -#: admin/settings/settings-init.php:451 -msgid "Average Rating" -msgstr "평점순" - -#: admin/settings/settings-init.php:452 -msgid "Sort by most recent" -msgstr "최신순" - -#: admin/settings/settings-init.php:453 -msgid "Sort by price (asc)" -msgstr "낮은가격순" - -#: admin/settings/settings-init.php:454 -msgid "Sort by price (desc)" -msgstr "높은가격순" - -#: admin/settings/settings-init.php:460 -msgid "Shop Page Display" -msgstr "상점 페이지 표시" - -#: admin/settings/settings-init.php:461 -msgid "This controls what is shown on the product archive." -msgstr "이것은 상품 페이지에서 보이는 것을 제어합니다." - -#: admin/settings/settings-init.php:467 admin/settings/settings-init.php:482 -msgid "Show products" -msgstr "상품 표시" - -#: admin/settings/settings-init.php:468 admin/settings/settings-init.php:483 -msgid "Show subcategories" -msgstr "하위 카테고리 표시" - -#: admin/settings/settings-init.php:469 admin/settings/settings-init.php:484 -msgid "Show both" -msgstr "둘다 표시" - -#: admin/settings/settings-init.php:475 -msgid "Default Category Display" -msgstr "기본 카테고리 표시" - -#: admin/settings/settings-init.php:476 -msgid "This controls what is shown on category archives." -msgstr "이것은 카테고리 페이지에서 보이는 것을 제어합니다." - -#: admin/settings/settings-init.php:490 -msgid "Add to cart" -msgstr "장바구니에 추가하기" - -#: admin/settings/settings-init.php:491 -msgid "Redirect to the cart page after successful addition" -msgstr "추가 성공후 장바구니 페이지로 가기" - -#: admin/settings/settings-init.php:499 -msgid "Enable AJAX add to cart buttons on archives" -msgstr "상점 페이지에서 AJAX 장바구니 추가하기 버튼 활성화하기" - -#: admin/settings/settings-init.php:508 -msgid "" -"The following options affect the fields available on the edit product page." -msgstr "다음 옵션은 상품 편집 페이지에 가능한 입력란에 영향을 줍니다." - -#: admin/settings/settings-init.php:511 -msgid "Product Fields" -msgstr "상품 입력란" - -#: admin/settings/settings-init.php:512 -msgid "Enable the SKU field for products" -msgstr "상품에 SKU 입력란 활성화" - -#: admin/settings/settings-init.php:520 -msgid "" -"Enable the weight field for products (some shipping methods " -"may require this)" -msgstr "" -"상품에 대해 무게 필드 활성화 (어떤 배송 방법은 이것이 필수" -"일 수도 있습니다)" - -#: admin/settings/settings-init.php:528 -msgid "" -"Enable the dimension fields for products (some shipping " -"methods may require this)" -msgstr "" -"상품에 대해 규격 필드를 활성화하기 (어떤 배송 방법은 이것이 " -"필수일 수도 있습니다)" - -#: admin/settings/settings-init.php:536 -msgid "" -"Show weight and dimension values on the Additional " -"Information tab" -msgstr "" -"추가 정보탭에서 무게 및 규격 값 보이기" - -#: admin/settings/settings-init.php:544 -msgid "Weight Unit" -msgstr "무게 단위" - -#: admin/settings/settings-init.php:545 -msgid "This controls what unit you will define weights in." -msgstr "이것은 무게를 정의할 경우 단위를 제어합니다." - -#: admin/settings/settings-init.php:551 -msgid "kg" -msgstr "kg" - -#: admin/settings/settings-init.php:552 -msgid "g" -msgstr "g" - -#: admin/settings/settings-init.php:553 -msgid "lbs" -msgstr "lbs" - -#: admin/settings/settings-init.php:554 -msgid "oz" -msgstr "oz" - -#: admin/settings/settings-init.php:560 -msgid "Dimensions Unit" -msgstr "규격 단위" - -#: admin/settings/settings-init.php:561 -msgid "This controls what unit you will define lengths in." -msgstr "이것은 길이를 정의할 경우의 단위를 제어합니다." - -#: admin/settings/settings-init.php:568 -msgid "cm" -msgstr "cm" - -#: admin/settings/settings-init.php:569 -msgid "mm" -msgstr "mm" - -#: admin/settings/settings-init.php:570 -msgid "in" -msgstr "in" - -#: admin/settings/settings-init.php:571 -msgid "yd" -msgstr "yd" - -#: admin/settings/settings-init.php:577 -msgid "Product Ratings" -msgstr "상품 평가" - -#: admin/settings/settings-init.php:578 -msgid "Enable ratings on reviews" -msgstr "리뷰에서 평가 활성화" - -#: admin/settings/settings-init.php:587 -msgid "Ratings are required to leave a review" -msgstr "평가는 리뷰 남기기에 필수입니다." - -#: admin/settings/settings-init.php:596 -msgid "Show \"verified owner\" label for customer reviews" -msgstr "고객 리뷰에 \"관리자 인증\" 레이블 보이기" - -#: admin/settings/settings-init.php:606 -msgid "Pricing Options" -msgstr "가격 옵션" - -#: admin/settings/settings-init.php:606 -msgid "The following options affect how prices are displayed on the frontend." -msgstr "다음 옵션은 가격이 사이트에서 표시되는 방법에 영향을 줍니다." - -#: admin/settings/settings-init.php:609 -msgid "Currency Position" -msgstr "통화 기호 위치" - -#: admin/settings/settings-init.php:610 -msgid "This controls the position of the currency symbol." -msgstr "이것은 통화 기호의 위치를 제어합니다." - -#: admin/settings/settings-init.php:616 -msgid "Left" -msgstr "왼쪽" - -#: admin/settings/settings-init.php:617 -msgid "Right" -msgstr "오른쪽" - -#: admin/settings/settings-init.php:618 -msgid "Left (with space)" -msgstr "왼쪽 (스페이스 포함)" - -#: admin/settings/settings-init.php:619 -msgid "Right (with space)" -msgstr "오른쪽 (스페이스 포함)" - -#: admin/settings/settings-init.php:625 -msgid "Thousand Separator" -msgstr "천단위 구분 기호" - -#: admin/settings/settings-init.php:626 -msgid "This sets the thousand separator of displayed prices." -msgstr "이것은 표시된 가격에 천단위 표시를 설정합니다." - -#: admin/settings/settings-init.php:635 -msgid "Decimal Separator" -msgstr "소수 구분 기호" - -#: admin/settings/settings-init.php:636 -msgid "This sets the decimal separator of displayed prices." -msgstr "이것은 표시된 가격에 소수를 설정합니다." - -#: admin/settings/settings-init.php:645 -msgid "Number of Decimals" -msgstr "소수 갯수" - -#: admin/settings/settings-init.php:646 -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "이것은 표시된 가격에 소수점이 나타나는 수를 설정합니다." - -#: admin/settings/settings-init.php:659 -msgid "Trailing Zeros" -msgstr "소숫점 이하 제로" - -#: admin/settings/settings-init.php:660 -msgid "" -"Remove zeros after the decimal point. e.g. $10.00 becomes " -"$10" -msgstr "소수점 이하 제로 제거 예: $10.00$10가 됨" - -#: admin/settings/settings-init.php:668 -msgid "Image Options" -msgstr "이미지 옵션" - -#: admin/settings/settings-init.php:668 -msgid "" -"These settings affect the actual dimensions of images in your catalog - the " -"display on the front-end will still be affected by CSS styles. After " -"changing these settings you may need to regenerate your " -"thumbnails." -msgstr "" -"이 설정은 카탈로그의 실제 이미지 규격에 영향을 줍니다. - 사이트 표시는 CSS 스" -"타일에 영향을 받습니다. 이 설정을 변경한 후에 썸네일 재생성을 해야할 수도 있습니다." - -#: admin/settings/settings-init.php:671 -msgid "Catalog Images" -msgstr "카탈로그 이미지" - -#: admin/settings/settings-init.php:672 -msgid "This size is usually used in product listings" -msgstr "이 사이즈는 상품 목록에 보통 사용됩니다" - -#: admin/settings/settings-init.php:685 -msgid "Single Product Image" -msgstr "단일 상품 이미지" - -#: admin/settings/settings-init.php:686 -msgid "This is the size used by the main image on the product page." -msgstr "이것은 상품 페이지의 주 이미지에 사용되는 사이즈입니다." - -#: admin/settings/settings-init.php:699 -msgid "Product Thumbnails" -msgstr "상품 썸네일" - -#: admin/settings/settings-init.php:700 -msgid "" -"This size is usually used for the gallery of images on the product page." -msgstr "이 사이즈는 보통 상품 페이지의 이미지 갤러리에 사용됩니다." - -#: admin/settings/settings-init.php:719 -msgid "Inventory Options" -msgstr "저장소 옵션" - -#: admin/settings/settings-init.php:722 -msgid "Manage Stock" -msgstr "재고 관리" - -#: admin/settings/settings-init.php:723 -msgid "Enable stock management" -msgstr "재고 관리 활성화" - -#: admin/settings/settings-init.php:730 -msgid "Hold Stock (minutes)" -msgstr "재고 보류(분)" - -#: admin/settings/settings-init.php:731 -msgid "" -"Hold stock (for unpaid orders) for x minutes. When this limit is reached, " -"the pending order will be cancelled. Leave blank to disable." -msgstr "" -"분 동안 재고 보류 (미지불 주문). 이 제한에 이르면 대기중인 주문은 취소됩니" -"다. 비활성화하려면 비워두세요." - -#: admin/settings/settings-init.php:743 -msgid "Notifications" -msgstr "알림" - -#: admin/settings/settings-init.php:744 -msgid "Enable low stock notifications" -msgstr "재고 부족 알림 활성화" - -#: admin/settings/settings-init.php:752 -msgid "Enable out of stock notifications" -msgstr "품절 알림 활성화" - -#: admin/settings/settings-init.php:760 -msgid "Notification Recipient" -msgstr "알림 수신자" - -#: admin/settings/settings-init.php:768 -msgid "Low Stock Threshold" -msgstr "재고 부족 한계" - -#: admin/settings/settings-init.php:781 -msgid "Out Of Stock Threshold" -msgstr "품절 한계" - -#: admin/settings/settings-init.php:794 -msgid "Out Of Stock Visibility" -msgstr "품절 가시성" - -#: admin/settings/settings-init.php:795 -msgid "Hide out of stock items from the catalog" -msgstr "카탈로그에서 품절 아이템 감추기" - -#: admin/settings/settings-init.php:802 -msgid "Stock Display Format" -msgstr "재고 표시 형식" - -#: admin/settings/settings-init.php:803 -msgid "This controls how stock is displayed on the frontend." -msgstr "이것은 재고가 사이트에서 표시되는 방법을 제어합니다." - -#: admin/settings/settings-init.php:809 -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "항상 재고 보이기 예: \"12 재고 있음\"" - -#: admin/settings/settings-init.php:810 -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "" -"부족할 경우에만 재고 보이기. 예: \"재고가 2개 밖에 없음\" vs. \"재고 있음\"" - -#: admin/settings/settings-init.php:811 -msgid "Never show stock amount" -msgstr "재고 수량 보이지 않기" - -#: admin/settings/settings-init.php:823 -#: admin/woocommerce-admin-settings.php:292 -msgid "Shipping Options" -msgstr "배송 옵션" - -#: admin/settings/settings-init.php:826 -msgid "Shipping Calculations" -msgstr "배송 계산" - -#: admin/settings/settings-init.php:827 -msgid "Enable shipping" -msgstr "배송 활성화" - -#: admin/settings/settings-init.php:835 -msgid "Enable the shipping calculator on the cart page" -msgstr "장바구니 페이지에 배송 계산기 활성화" - -#: admin/settings/settings-init.php:843 -msgid "Hide shipping costs until an address is entered" -msgstr "주소가 입력될 때까지 배송 비용 감추기" - -#: admin/settings/settings-init.php:851 -msgid "Shipping Method Display" -msgstr "배송 방법 표시" - -#: admin/settings/settings-init.php:852 -msgid "" -"This controls how multiple shipping methods are displayed on the frontend." -msgstr "이것은 다수의 배송 방법이 사이트에서 표시되는 방법을 제어합니다." - -#: admin/settings/settings-init.php:858 -msgid "Radio buttons" -msgstr "라디오 버튼" - -#: admin/settings/settings-init.php:859 -msgid "Select box" -msgstr "선택 박스" - -#: admin/settings/settings-init.php:865 -msgid "Shipping Destination" -msgstr "배송 목적지" - -#: admin/settings/settings-init.php:866 -msgid "Only ship to the users billing address" -msgstr "사용자 청구지 주소로만 배송" - -#: admin/settings/settings-init.php:874 -msgid "Ship to billing address by default" -msgstr "기본으로 청구지 주소로 배송" - -#: admin/settings/settings-init.php:882 -msgid "Collect shipping address even when not required" -msgstr "필수가 아닌 경우에도 배송 주소 수집" - -#: admin/settings/settings-init.php:900 -#: admin/woocommerce-admin-settings.php:188 -#: admin/woocommerce-admin-settings.php:329 -msgid "Payment Gateways" -msgstr "지불 게이트웨이" - -#: admin/settings/settings-init.php:900 -msgid "" -"Installed payment gateways are displayed below. Drag and drop payment " -"gateways to control their display order on the checkout." -msgstr "" -"설치된 지불 게이트웨이는 아래에 나타납니다. 결제시에 표시되는 순서를 제어하려" -"면 지불 게이트웨이를 끌어놓기로 하세요." - -#: admin/settings/settings-init.php:918 -#: admin/woocommerce-admin-settings.php:222 -msgid "Tax Options" -msgstr "세금 옵션" - -#: admin/settings/settings-init.php:921 -msgid "Enable Taxes" -msgstr "세금 활성화" - -#: admin/settings/settings-init.php:922 -msgid "Enable taxes and tax calculations" -msgstr "세금 및 세금 계산 활성화" - -#: admin/settings/settings-init.php:929 -msgid "Prices Entered With Tax" -msgstr "세금과 함께 입력된 가격" - -#: admin/settings/settings-init.php:933 -msgid "" -"This option is important as it will affect how you input prices. Changing it " -"will not update existing products." -msgstr "" -"이 옵션은 가격을 입력하는 방법에 영향을 주기 때문에 중요합니다. 변경하면 기존" -"의 상품을 업데이트하지 않습니다." - -#: admin/settings/settings-init.php:935 -msgid "Yes, I will enter prices inclusive of tax" -msgstr "네, 세금을 포함한 가격을 입력합니다" - -#: admin/settings/settings-init.php:936 -msgid "No, I will enter prices exclusive of tax" -msgstr "아니오, 세금을 제외한 가격을 입력합니다" - -#: admin/settings/settings-init.php:941 -msgid "Calculate Tax Based On:" -msgstr "세금 계산 기준:" - -#: admin/settings/settings-init.php:943 -msgid "This option determines which address is used to calculate tax." -msgstr "이 옵션은 세금을 계산할 때 사용하는 주소를 결정합니다." - -#: admin/settings/settings-init.php:947 -msgid "Customer shipping address" -msgstr "고객 배송 주소" - -#: admin/settings/settings-init.php:948 -msgid "Customer billing address" -msgstr "고객 청구 주소" - -#: admin/settings/settings-init.php:949 admin/settings/settings-init.php:961 -msgid "Shop base address" -msgstr "상점 기준 주소" - -#: admin/settings/settings-init.php:954 -msgid "Default Customer Address:" -msgstr "기본 고객 주소:" - -#: admin/settings/settings-init.php:956 -msgid "" -"This option determines the customers default address (before they input " -"their own)." -msgstr "" -"이 옵션은 고객의 기본 주소를 결정합니다 (고객이 자신의 주소를 입력하기 전에)" - -#: admin/settings/settings-init.php:960 -msgid "No address" -msgstr "주소 없음" - -#: admin/settings/settings-init.php:966 -msgid "Shipping Tax Class:" -msgstr "배송 세금 클래스:" - -#: admin/settings/settings-init.php:967 -msgid "" -"Optionally control which tax class shipping gets, or leave it so shipping " -"tax is based on the cart items themselves." -msgstr "" -"선택적으로 배송이 취하는 세금 클래스를 제어합니다. 또는 배송 세금이 장바구니 " -"아이템에 기준으로 하려면 그대로 두세요." - -#: admin/settings/settings-init.php:972 -msgid "Shipping tax class based on cart items" -msgstr "장바구니 아이템 기준 배송 세금 클래스" - -#: admin/settings/settings-init.php:977 -msgid "Rounding" -msgstr "반올림" - -#: admin/settings/settings-init.php:978 -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "라인당 반올림이 아닌 소계 단계에서 세금 반올림" - -#: admin/settings/settings-init.php:985 -msgid "Additional Tax Classes" -msgstr "추가 세금 클래스" - -#: admin/settings/settings-init.php:986 -msgid "" -"List additonal tax classes below (1 per line). This is in addition to the " -"default Standard Rate. Tax classes can be assigned to products." -msgstr "" -"아래에 추가 세금 클래스를 나열하세요 (라인당 1). 이것은 기본 표준율에 추가됩니다. 세금 클래스는 상품에 배정될 수 있습니다. " - -#: admin/settings/settings-init.php:990 -msgid "Reduced Rate%sZero Rate" -msgstr "감세율%s영세율" - -#: admin/settings/settings-init.php:994 -msgid "Display prices during cart/checkout:" -msgstr "장바구니/결제 중에 가격 보이기:" - -#: admin/settings/settings-init.php:999 -msgid "Including tax" -msgstr "세금 포함" - -#: admin/settings/settings-init.php:1000 -msgid "Excluding tax" -msgstr "세금 제외" - -#: admin/settings/settings-init.php:1012 -msgid "Email Sender Options" -msgstr "이메일 송신자 옵션" - -#: admin/settings/settings-init.php:1012 -msgid "" -"The following options affect the sender (email address and name) used in " -"WooCommerce emails." -msgstr "" -"다음 옵션은 WooCommerce 이메일에 사용되는 송신인 ( 이메일 주소 및 이름)에 영" -"향을 줍니다." - -#: admin/settings/settings-init.php:1015 -msgid "\"From\" Name" -msgstr "\"발신자\" 이름" - -#: admin/settings/settings-init.php:1024 -msgid "\"From\" Email Address" -msgstr "\"발신자\" 이메일 주소" - -#: admin/settings/settings-init.php:1037 -msgid "Email Template" -msgstr "이메일 템플릿" - -#: admin/settings/settings-init.php:1037 -msgid "" -"This section lets you customise the WooCommerce emails. Click here to preview your email template. For more " -"advanced control copy woocommerce/templates/emails/ to " -"yourtheme/woocommerce/emails/." -msgstr "" -"이 영역은 WooCommerce 이메일을 사용자 정의할 수 있습니다. 이메일 템플릿을 미리 보려면 여기를 클릭하세요. 더 나은 " -"제어를 하려면 woocommerce/templates/emails/yourtheme/" -"woocommerce/emails/에 복사하세요." - -#: admin/settings/settings-init.php:1040 -msgid "Header Image" -msgstr "헤더 이미지" - -#: admin/settings/settings-init.php:1041 -msgid "" -"Enter a URL to an image you want to show in the email's header. Upload your " -"image using the media uploader." -msgstr "" -"이메일 헤더에 보이기를 원하는 이미지의 URL을 입력하세요. 이미지는 미디어 업로더를 이용해서 업로드하세요." - -#: admin/settings/settings-init.php:1049 -msgid "Email Footer Text" -msgstr "이메일 푸터 텍스트" - -#: admin/settings/settings-init.php:1050 -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "WooCommerce 이메일 푸터에 나타날 텍스트" - -#: admin/settings/settings-init.php:1054 -msgid "Powered by WooCommerce" -msgstr "Powered by WooCommerce" - -#: admin/settings/settings-init.php:1058 -msgid "Base Colour" -msgstr "기본 색상" - -#: admin/settings/settings-init.php:1059 -msgid "" -"The base colour for WooCommerce email templates. Default #557da1." -msgstr "WooCommerce 이메일 템플릿 기본 색상. 기본 #557da1." - -#: admin/settings/settings-init.php:1067 -msgid "Background Colour" -msgstr "배경 색상" - -#: admin/settings/settings-init.php:1068 -msgid "" -"The background colour for WooCommerce email templates. Default " -"#f5f5f5." -msgstr "WooCommerce 이메일 템플릿 배경 색상. 기본 #f5f5f5." - -#: admin/settings/settings-init.php:1076 -msgid "Email Body Background Colour" -msgstr "이메일 바디 배경 색상" - -#: admin/settings/settings-init.php:1077 -msgid "The main body background colour. Default #fdfdfd." -msgstr "메인 바디 배경 색상. 기본 #fdfdfd." - -#: admin/settings/settings-init.php:1085 -msgid "Email Body Text Colour" -msgstr "이메일 바디 텍스트 색상" - -#: admin/settings/settings-init.php:1086 -msgid "The main body text colour. Default #505050." -msgstr "메인 바디 텍스트 색상. 기본 #505050." - -#: admin/settings/settings-payment-gateways.php:27 -#: admin/settings/settings-shipping-methods.php:29 -#: admin/woocommerce-admin-init.php:757 -#: admin/woocommerce-admin-taxonomies.php:27 -#: admin/woocommerce-admin-taxonomies.php:121 -msgid "Default" -msgstr "기본" - -#: admin/settings/settings-payment-gateways.php:28 -msgid "Gateway" -msgstr "게이트웨이" - -#: admin/settings/settings-payment-gateways.php:45 -msgid "Gateway ID" -msgstr "게이트웨이 아이디" - -#: admin/settings/settings-shipping-methods.php:23 -msgid "Shipping Methods" -msgstr "배송 방법" - -#: admin/settings/settings-shipping-methods.php:25 -msgid "Drag and drop methods to control their display order." -msgstr "표시 순서를 제어하기 위해 방법을 끌어놓기 하세요." - -#: admin/settings/settings-shipping-methods.php:30 -msgid "Shipping Method" -msgstr "배송 방법" - -#: admin/settings/settings-shipping-methods.php:46 -msgid "Method ID" -msgstr "방법 아이디" - -#: admin/settings/settings-tax-rates.php:29 -msgid "Tax Rates for the \"%s\" Class" -msgstr "\"%s\" 클래스에 대한 세율" - -#: admin/settings/settings-tax-rates.php:30 -msgid "" -"Define tax rates for countries and states below. See here " -"for available alpha-2 country codes." -msgstr "" -"아래에서 국가와 주에 대한 세율을 정의하세요. 가능한 알파-2 국가 코드는 여기를 보세요." - -#: admin/settings/settings-tax-rates.php:36 -msgid "Country Code" -msgstr "국가 코드" - -#: admin/settings/settings-tax-rates.php:36 -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "두자리 숫자의 국가 코드, 예: US. 모두에 적용하려면 비워두세요." - -#: admin/settings/settings-tax-rates.php:38 -msgid "State Code" -msgstr "주 코드" - -#: admin/settings/settings-tax-rates.php:38 -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "두자리의 주 코드. 예: AL. 모두에 적용하려면 비워두세요." - -#: admin/settings/settings-tax-rates.php:40 -#: admin/settings/settings-tax-rates.php:217 -msgid "ZIP/Postcode" -msgstr "우편 번호" - -#: admin/settings/settings-tax-rates.php:40 -msgid "" -"Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all areas. Wildcards (*) can be used. Ranges for numeric " -"postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "" -"이 규칙에 대한 우편 코드. 다중 값은 세미콜론(;)으로 분리. 모든 지역에 적용하" -"려면 비워두세요. 와일드카드(*)를 사용할 수 있습니다. 숫자 우편 코드 범위 (예 " -"12345-12350)는 개별 우편 코드로 확장됩니다." - -#: admin/settings/settings-tax-rates.php:42 -msgid "" -"Cities for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all cities." -msgstr "" -"이 규칙에 대한 도시. 다중 값은 세미콜론(;)으로 분리. 모든 도시에 적용하려면 " -"비워두세요." - -#: admin/settings/settings-tax-rates.php:44 -msgid "Rate %" -msgstr "비율 %" - -#: admin/settings/settings-tax-rates.php:44 -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "세율(퍼센트)을 입력하세요. (소숫점 4자리까지 가능)" - -#: admin/settings/settings-tax-rates.php:46 -msgid "Tax Name" -msgstr "세금 이름" - -#: admin/settings/settings-tax-rates.php:46 -msgid "Enter a name for this tax rate." -msgstr "이 세율의 이름을 입력하세요." - -#: admin/settings/settings-tax-rates.php:48 -#: admin/settings/settings-tax-rates.php:217 -msgid "Priority" -msgstr "우선순위" - -#: admin/settings/settings-tax-rates.php:48 -msgid "" -"Choose a priority for this tax rate. Only 1 matching rate per priority will " -"be used. To define multiple tax rates for a single area you need to specify " -"a different priority per rate." -msgstr "" -"이 세율에 대해 우선 순위를 선택하세요. 우선 순위당 하나의 일치하는 세율만 사" -"용됩니다. 단일 영역에 대해 다중 세율을 정의하려면 세율당 다른 우선 순위를 특" -"정해야합니다." - -#: admin/settings/settings-tax-rates.php:50 -#: admin/settings/settings-tax-rates.php:217 -msgid "Compound" -msgstr "복합" - -#: admin/settings/settings-tax-rates.php:50 -msgid "" -"Choose whether or not this is a compound rate. Compound tax rates are " -"applied on top of other tax rates." -msgstr "" -"이것이 복합 세율인지 선택하세요. 복합 세율은 다른 세율의 상위에 적용됩니다." - -#: admin/settings/settings-tax-rates.php:52 -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "이 세율이 배송에도 적용되는지 선택하세요." - -#: admin/settings/settings-tax-rates.php:59 -msgid "Insert row" -msgstr "행 추가하기" - -#: admin/settings/settings-tax-rates.php:60 -msgid "Remove selected row(s)" -msgstr "선택한 행 제거하기" - -#: admin/settings/settings-tax-rates.php:62 -msgid "Export CSV" -msgstr "CSV 내보내기" - -#: admin/settings/settings-tax-rates.php:63 -msgid "Import CSV" -msgstr "CSV 가져오기" - -#: admin/settings/settings-tax-rates.php:163 -msgid "No row(s) selected" -msgstr "행이 선택되지 않았습니다" - -#: admin/settings/settings-tax-rates.php:217 -msgid "Country Code" -msgstr "국가 코드" - -#: admin/settings/settings-tax-rates.php:217 -msgid "State Code" -msgstr "주 코드" - -#: admin/settings/settings-tax-rates.php:217 -msgid "Rate %" -msgstr "비율 %" - -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Name" -msgstr "세금 이름" - -#: admin/woocommerce-admin-attributes.php:77 -msgid "Please, provide an attribute name, slug and type." -msgstr "속성 이름, 슬러그, 형식을 입력해주세요." - -#: admin/woocommerce-admin-attributes.php:79 -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "슬러그 \"%s\"는 너무 깁니다 (최대 28 글자). 짧게 해주세요." - -#: admin/woocommerce-admin-attributes.php:81 -msgid "" -"Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "슬러그 \"%s\"는 유보된 용어이므로 허용되지 않습니다. 변경해주세요." - -#: admin/woocommerce-admin-attributes.php:86 -#: admin/woocommerce-admin-attributes.php:91 -msgid "Slug “%s” is already in use. Change it, please." -msgstr "슬러그 \"%s\"는 이미 사용 중입니다. 변경해주세요." - -#: admin/woocommerce-admin-attributes.php:227 -msgid "Edit Attribute" -msgstr "속성 편집하기" - -#: admin/woocommerce-admin-attributes.php:237 -#: admin/woocommerce-admin-attributes.php:376 -msgid "Name for the attribute (shown on the front-end)." -msgstr "속성에 대한 이름 (프론트 엔드에 보임)" - -#: admin/woocommerce-admin-attributes.php:242 -#: admin/woocommerce-admin-attributes.php:308 -#: admin/woocommerce-admin-attributes.php:380 -msgid "Slug" -msgstr "슬러그" - -#: admin/woocommerce-admin-attributes.php:246 -#: admin/woocommerce-admin-attributes.php:382 -msgid "" -"Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "속성에 대한 독특한 슬러그/참조; 28 글자보다 짧아야 합니다." - -#: admin/woocommerce-admin-attributes.php:255 -#: admin/woocommerce-admin-attributes.php:388 -msgid "Select" -msgstr "Select" - -#: admin/woocommerce-admin-attributes.php:256 -#: admin/woocommerce-admin-attributes.php:389 -msgid "Text" -msgstr "Text" - -#: admin/woocommerce-admin-attributes.php:259 -#: admin/woocommerce-admin-attributes.php:392 -msgid "" -"Determines how you select attributes for products. Text " -"allows manual entry via the product page, whereas select " -"attribute terms can be defined from this section. If you plan on using an " -"attribute for variations use select." -msgstr "" -"상품에 대한 속성을 선택하는 방법을 결정합니다. Text는 상품 " -"페이지에서 수동 입력이 가능합니다. 그에 반해서 select는 선택" -"박스를 제공합니다. 옵션 상품에 대해 속성을 사용할 예정이라면 " -"select를 사용하세요." - -#: admin/woocommerce-admin-attributes.php:264 -#: admin/woocommerce-admin-attributes.php:396 -msgid "Default sort order" -msgstr "기본 분류 순서" - -#: admin/woocommerce-admin-attributes.php:268 -#: admin/woocommerce-admin-attributes.php:336 -#: admin/woocommerce-admin-attributes.php:398 -msgid "Custom ordering" -msgstr "사용자 정의 순서" - -#: admin/woocommerce-admin-attributes.php:270 -#: admin/woocommerce-admin-attributes.php:333 -#: admin/woocommerce-admin-attributes.php:400 -msgid "Term ID" -msgstr "용어 ID" - -#: admin/woocommerce-admin-attributes.php:272 -#: admin/woocommerce-admin-attributes.php:402 -msgid "" -"Determines the sort order on the frontend for this attribute. If using " -"custom ordering, you can drag and drop the terms in this attribute" -msgstr "" -"이 속성에 대해서 사이트 전면에서 분류 순서를 결정합니다. 사용자 정의 순서를 " -"사용하면 이 속성에 있는 용어를 끌어놓기 할 수 있습니다." - -#: admin/woocommerce-admin-attributes.php:277 -msgid "Update" -msgstr "업데이트" - -#: admin/woocommerce-admin-attributes.php:310 -msgid "Order by" -msgstr "순서" - -#: admin/woocommerce-admin-attributes.php:311 -msgid "Terms" -msgstr "용어" - -#: admin/woocommerce-admin-attributes.php:356 -msgid "Configure terms" -msgstr "용어 환경설정" - -#: admin/woocommerce-admin-attributes.php:360 -msgid "No attributes currently exist." -msgstr "현재 존재하는 속성이 없습니다." - -#: admin/woocommerce-admin-attributes.php:370 -msgid "Add New Attribute" -msgstr "새 속성 추가하기" - -#: admin/woocommerce-admin-attributes.php:371 -msgid "" -"Attributes let you define extra product data, such as size or colour. You " -"can use these attributes in the shop sidebar using the \"layered nav\" " -"widgets. Please note: you cannot rename an attribute later on." -msgstr "" -"속성은 사이즈나 컬러와 같은 추가적인 상품 데이터를 정의할 수 있습니다. \"레이" -"어 nav\" 위젯을 사용해서 상점 사이드바에서 이들 속성을 사용할 수 있습니다. 주" -"의하세요: 나중에 속성의 이름을 변경할 수 없습니다." - -#: admin/woocommerce-admin-attributes.php:405 -msgid "Add Attribute" -msgstr "속성 추가하기" - -#: admin/woocommerce-admin-attributes.php:416 -msgid "Are you sure you want to delete this attribute?" -msgstr "이 속성을 제거하시겠습니까?" - -#: admin/woocommerce-admin-content.php:26 -#: admin/woocommerce-admin-reports.php:26 -#: admin/woocommerce-admin-reports.php:66 -#: admin/woocommerce-admin-reports.php:82 -#: admin/woocommerce-admin-reports.php:93 -msgid "Overview" -msgstr "전체 보기" - -#: admin/woocommerce-admin-content.php:29 -msgid "" -"Thank you for using WooCommerce :) Should you need help using or extending " -"WooCommerce please read the documentation. For further " -"assistance you can use the community forum or if you have " -"access, our support desk." -msgstr "" -"우커머스를 사용해 주셔서 감사합니다 :) 우커머스를 사용하거나 확장하는데 도움" -"이 필요하면 문서 보기를 해주세요. 더 많은 도움이 필요하면 " -"커뮤니티 포럼을 이용할 수 있으며 접근이 가능한 경우 지원 데스크를 이용하세요." - -#: admin/woocommerce-admin-content.php:31 -msgid "" -"If you are having problems, or to assist us with support, please check the " -"status page to identify any problems with your configuration:" -msgstr "" -"문제가 있는 경우, 또는 지원을 통해 우리를 돕고자 하면 상태 페이지를 점검해서 " -"환경설정에 있는 문제점을 확인하세요:" - -#: admin/woocommerce-admin-content.php:33 admin/woocommerce-admin-init.php:89 -#: admin/woocommerce-admin-status.php:26 -msgid "System Status" -msgstr "시스템 상태" - -#: admin/woocommerce-admin-content.php:35 -msgid "" -"If you come across a bug, or wish to contribute to the project you can also " -"get involved on GitHub." -msgstr "" -"버그를 발견하거나 프로젝트에 기여하기를 원하신다면 GitHub에 참" -"여하기를 할 수도 있습니다." - -#: admin/woocommerce-admin-content.php:43 -msgid "" -"Here you can set up your store and customise it to fit your needs. The " -"sections available from the settings page include:" -msgstr "" -"여기서 상점을 설정하고 필요에 따라 사용자 정의할 수 있습니다. 설정 페이지에" -"서 가능한 섹션은 다음을 포함합니다:" - -#: admin/woocommerce-admin-content.php:44 -msgid "" -"General settings such as your shop base, currency, and script/styling " -"options which affect features used in your store." -msgstr "" -"상점에 사용되는 특성에 영향을 주는 상점 기준, 통화, 스크립트/스타일링 옵션과 " -"같은 일반 설정." - -#: admin/woocommerce-admin-content.php:45 -#: admin/woocommerce-admin-settings.php:184 -msgid "Pages" -msgstr "페이지" - -#: admin/woocommerce-admin-content.php:45 -msgid "" -"This is where important store page are defined. You can also set up other " -"pages (such as a Terms page) here." -msgstr "" -"이곳은 중요한 상점 페이지가 정의되는 곳입니다. 여기서 다른 페이지(이용약관 페" -"이지와 같은)를 설정할 수도 있습니다." - -#: admin/woocommerce-admin-content.php:46 -msgid "" -"Options for how things like price, images and weights appear in your product " -"catalog." -msgstr "" -"가격, 이미지, 무게와 같은 것들이 상점 카탈로그에 보여지는 방법에 대한 옵션." - -#: admin/woocommerce-admin-content.php:47 -msgid "Options concerning stock and stock notices." -msgstr "재고 및 재고 알림에 관한 옵션." - -#: admin/woocommerce-admin-content.php:48 -msgid "Options concerning tax, including international and local tax rates." -msgstr "국제 및 국내 세율을 포함한 세금에 관한 옵션. " - -#: admin/woocommerce-admin-content.php:49 -msgid "" -"This is where shipping options are defined, and shipping methods are set up." -msgstr "이곳은 배송 옵션이 정의되고 배송방법이 설정되는 곳입니다." - -#: admin/woocommerce-admin-content.php:50 -msgid "Payment Methods" -msgstr "지불 방법" - -#: admin/woocommerce-admin-content.php:50 -msgid "" -"This is where payment gateway options are defined, and individual payment " -"gateways are set up." -msgstr "" -"이곳은 지불 게이트웨이 옵션이 정의되고 개별 지불 게이트웨이가 설정되는 곳입니" -"다." - -#: admin/woocommerce-admin-content.php:51 -#: admin/woocommerce-admin-settings.php:189 -msgid "Emails" -msgstr "이메일" - -#: admin/woocommerce-admin-content.php:51 -msgid "Here you can customise the way WooCommerce emails appear." -msgstr "여기서 우커머스 이메일이 보이는 방법을 사용자 정의할 수 있습니다." - -#: admin/woocommerce-admin-content.php:52 -#: admin/woocommerce-admin-settings.php:190 -msgid "Integration" -msgstr "결합" - -#: admin/woocommerce-admin-content.php:52 -msgid "" -"The integration section contains options for third party services which " -"integrate with WooCommerce." -msgstr "결합 섹션은 우커머스와 결합하는 제3자 서비스에 대한 옵션을 포함합니다." - -#: admin/woocommerce-admin-content.php:57 admin/woocommerce-admin-init.php:64 -msgid "Reports" -msgstr "보고서" - -#: admin/woocommerce-admin-content.php:59 -msgid "" -"The reports section can be accessed from the left-hand navigation menu. Here " -"you can generate reports for sales and customers." -msgstr "" -"보고서 섹션은 좌측 내비게이션 메뉴에서 접근할 수 있습니다. 여기서 판매와 고객" -"에 대한 보고서를 생성할 수 있습니다." - -#: admin/woocommerce-admin-content.php:60 -#: admin/woocommerce-admin-reports.php:23 -#: admin/woocommerce-admin-reports.php:997 -#: admin/woocommerce-admin-reports.php:1095 -#: admin/woocommerce-admin-reports.php:1214 -msgid "Sales" -msgstr "판매" - -#: admin/woocommerce-admin-content.php:60 -msgid "Reports for sales based on date, top sellers and top earners." -msgstr "날짜, 최고 판매 상품, 최고 수익 상품을 기준으로 한 판매 보고서." - -#: admin/woocommerce-admin-content.php:61 -msgid "Coupon usage reports." -msgstr "쿠폰 사용 보고서" - -#: admin/woocommerce-admin-content.php:62 -#: admin/woocommerce-admin-reports.php:79 -msgid "Customers" -msgstr "고객" - -#: admin/woocommerce-admin-content.php:62 -msgid "Customer reports, such as signups per day." -msgstr "일별 회원가입과 같은 고객 보고서." - -#: admin/woocommerce-admin-content.php:63 -msgid "Stock reports for low stock and out of stock items." -msgstr "재고 부족 및 품절 아이템에 대한 재고 보고서." - -#: admin/woocommerce-admin-content.php:68 -#: admin/woocommerce-admin-dashboard.php:142 -msgid "Orders" -msgstr "주문" - -#: admin/woocommerce-admin-content.php:70 -msgid "" -"The orders section can be accessed from the left-hand navigation menu. Here " -"you can view and manage customer orders." -msgstr "" -"주문 섹션은 좌측 내비게이션 메뉴에서 접근할 수 있습니다. 여기서 고객 주문을 " -"보거나 관리할 수 있습니다." - -#: admin/woocommerce-admin-content.php:71 -msgid "" -"Orders can also be added from this section if you want to set them up for a " -"customer manually." -msgstr "" -"고객을 위해 수동으로 설정하기를 원할 경우 주문은 이 섹션에서도 추가될 수 있습" -"니다." - -#: admin/woocommerce-admin-content.php:78 -msgid "" -"Coupons can be managed from this section. Once added, customers will be able " -"to enter coupon codes on the cart/checkout page. If a customer uses a coupon " -"code they will be viewable when viewing orders." -msgstr "" -"쿠폰은 이 섹션에서 관리할 수 있습니다. 한번 추가되면 고객은 장바구니/결제 페" -"이지에서 쿠폰 코드를 입력할 수 있습니다. 고객이 쿠폰 코드를 사용하면 주문을 " -"볼 때 코드가 보여집니다." - -#: admin/woocommerce-admin-content.php:82 -msgid "For more information:" -msgstr "더 많은 정보:" - -#: admin/woocommerce-admin-content.php:84 -msgid "Project on WordPress.org" -msgstr "WordPress.org 프로젝트" - -#: admin/woocommerce-admin-content.php:85 -msgid "Project on Github" -msgstr "Github 프로젝트" - -#: admin/woocommerce-admin-content.php:86 -msgid "WooCommerce Docs" -msgstr "우커머스 문서" - -#: admin/woocommerce-admin-content.php:87 -msgid "Official Extensions" -msgstr "공식 확장 프로그램" - -#: admin/woocommerce-admin-content.php:88 -msgid "Official Themes" -msgstr "공식 테마" - -#: admin/woocommerce-admin-dashboard.php:40 -msgid "Monthly Sales" -msgstr "월별 판매" - -#: admin/woocommerce-admin-dashboard.php:43 -msgid "WooCommerce Right Now" -msgstr "우커머스 현황" - -#: admin/woocommerce-admin-dashboard.php:44 -msgid "WooCommerce Recent Orders" -msgstr "우머커스 최근 주문" - -#: admin/woocommerce-admin-dashboard.php:45 -msgid "WooCommerce Recent Reviews" -msgstr "우커머스 최근 리뷰" - -#: admin/woocommerce-admin-dashboard.php:78 -msgid "Shop Content" -msgstr "상점 콘텐츠" - -#: admin/woocommerce-admin-dashboard.php:84 -#: admin/woocommerce-admin-functions.php:200 -#: admin/woocommerce-admin-init.php:761 -#: admin/woocommerce-admin-reports.php:996 -#: admin/woocommerce-admin-reports.php:1094 -msgid "Product" -msgid_plural "Products" -msgstr[0] "상품" -msgstr[1] "상품" - -#: admin/woocommerce-admin-dashboard.php:98 -msgid "Product Category" -msgid_plural "Product Categories" -msgstr[0] "상품 카테고리" -msgstr[1] "상품 카테고리" - -#: admin/woocommerce-admin-dashboard.php:112 -msgid "Product Tag" -msgid_plural "Product Tags" -msgstr[0] "상품 태그" -msgstr[1] "상품 태그" - -#: admin/woocommerce-admin-dashboard.php:126 -msgid "Attribute" -msgid_plural "Attributes" -msgstr[0] "속성" -msgstr[1] "속성" - -#: admin/woocommerce-admin-dashboard.php:148 -msgid "Pending" -msgstr "미결" - -#: admin/woocommerce-admin-dashboard.php:162 -msgid "On-Hold" -msgstr "대기중" - -#: admin/woocommerce-admin-dashboard.php:190 -msgid "Completed" -msgstr "완료" - -#: admin/woocommerce-admin-dashboard.php:207 -msgid "You are using WooCommerce %s." -msgstr "우커머스 %s를 사용하고 계십니다." - -#: admin/woocommerce-admin-dashboard.php:238 -msgid "l jS \\of F Y h:i:s A" -msgstr "l jS \\of F Y h:i:s A" - -#: admin/woocommerce-admin-dashboard.php:239 -msgid "item" -msgid_plural "items" -msgstr[0] "아이템" -msgstr[1] "아이템" - -#: admin/woocommerce-admin-dashboard.php:239 -msgid "Total:" -msgstr "총계:" - -#: admin/woocommerce-admin-dashboard.php:245 -msgid "There are no product orders yet." -msgstr "아직 상품 주문이 없습니다." - -#: admin/woocommerce-admin-dashboard.php:279 -msgid "out of 5" -msgstr "5개 중에" - -#: admin/woocommerce-admin-dashboard.php:287 -msgid "There are no product reviews yet." -msgstr "아직 상품 리뷰가 없습니다." - -#: admin/woocommerce-admin-dashboard.php:428 -msgid "Sold" -msgstr "품절" - -#: admin/woocommerce-admin-dashboard.php:429 -msgid "Earned" -msgstr "수익" - -#: admin/woocommerce-admin-functions.php:190 -#: admin/woocommerce-admin-install.php:225 -msgid "Order Received" -msgstr "주문이 접수됐습니다" - -#: admin/woocommerce-admin-functions.php:192 -msgid "" -"Thank you, we are now processing your order. Your order's details are below." -msgstr "" -"감사합니다. 고객님의 주문을 지금 처리하고 있습니다. 고객님의 주문 상세는 아래" -"와 같습니다." - -#: admin/woocommerce-admin-functions.php:194 -msgid "Order:" -msgstr "주문:" - -#: admin/woocommerce-admin-functions.php:201 -msgid "Quantity" -msgstr "수량" - -#: admin/woocommerce-admin-functions.php:214 -msgid "Order total:" -msgstr "주문 총계" - -#: admin/woocommerce-admin-functions.php:220 -msgid "Customer details" -msgstr "고객 상세" - -#: admin/woocommerce-admin-functions.php:226 -msgid "Billing address" -msgstr "청구지 주소" - -#: admin/woocommerce-admin-functions.php:233 -msgid "Shipping address" -msgstr "배송지 주소" - -#: admin/woocommerce-admin-functions.php:465 -msgid "Could not compile woocommerce.less:" -msgstr "woocommerce.less를 컴파일 할 수 없습니다:" - -#: admin/woocommerce-admin-functions.php:486 -#: admin/woocommerce-admin-functions.php:487 -msgid "Mark processing" -msgstr "표시 처리 중" - -#: admin/woocommerce-admin-functions.php:489 -#: admin/woocommerce-admin-functions.php:490 -msgid "Mark completed" -msgstr "표시 완료됨" - -#: admin/woocommerce-admin-functions.php:527 -msgid "Order status changed by bulk edit:" -msgstr "주문 상태가 일괄 편집에 의해 변경됐습니다:" - -#: admin/woocommerce-admin-functions.php:550 -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "주문 상태가 변경됐습니다." -msgstr[1] "%s 주문 상태가 변경됐습니다." - -#: admin/woocommerce-admin-init.php:88 -msgid "WooCommerce Settings" -msgstr "우커머스 설정" - -#: admin/woocommerce-admin-init.php:89 -msgid "WooCommerce Status" -msgstr "우커머스 상태" - -#: admin/woocommerce-admin-init.php:142 admin/woocommerce-admin-init.php:144 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "주문" - -#: admin/woocommerce-admin-init.php:433 -msgid "" -"Are you sure you want to remove the selected items? If you have previously " -"reduced this item's stock, or this order was submitted by a customer, you " -"will need to manually restore the item's stock." -msgstr "" -"선택된 아이템을 제거하기를 원하시나요? 이전에 이 아이템의 재고를 감소한 적이 " -"있거나 이 주문이 고객에 의해 제출된 것이라면 해당 아이템의 재고를 수동으로 복" -"구할 필요가 있습니다." - -#: admin/woocommerce-admin-init.php:434 -msgid "Please select some items." -msgstr "몇개의 아이템을 선택해주세요." - -#: admin/woocommerce-admin-init.php:435 -msgid "Remove this item meta?" -msgstr "이 아이템의 메타를 제거하시겠습니까?" - -#: admin/woocommerce-admin-init.php:436 -msgid "Remove this attribute?" -msgstr "이 속성을 제거하시겠습니까?" - -#: admin/woocommerce-admin-init.php:444 -msgid "Enter a name for the new attribute term:" -msgstr "새로운 속성 용어의 이름을 입력하세요:" - -#: admin/woocommerce-admin-init.php:445 -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "주문 아이템, 할인, 배송 기준으로 총계를 계산하시겠습니까?" - -#: admin/woocommerce-admin-init.php:446 -msgid "" -"Calculate line taxes? This will calculate taxes based on the customers " -"country. If no billing/shipping is set it will use the store base country." -msgstr "" -"행 세금을 계산할까요? 이것은 고객 국가 기준으로 세금을 계산합니다. 청구/배송" -"이 설정되지 않으면 상점 기준 국가를 사용할 것입니다." - -#: admin/woocommerce-admin-init.php:447 -msgid "" -"Copy billing information to shipping information? This will remove any " -"currently entered shipping information." -msgstr "" -"청구 정보를 배송 정보에 복사할까요? 이것은 현재의 모든 입력된 배송 정보를 제" -"거합니다." - -#: admin/woocommerce-admin-init.php:448 -msgid "" -"Load the customer's billing information? This will remove any currently " -"entered billing information." -msgstr "" -"고객의 배송 정보를 로드할까요? 이것은 현재 입력된 모든 청구 정보를 제거합니" -"다." - -#: admin/woocommerce-admin-init.php:449 -msgid "" -"Load the customer's shipping information? This will remove any currently " -"entered shipping information." -msgstr "" -"고객의 배송 정보를 로드할까요? 이것은 현재 입력된 모든 배송 정보를 제거합니" -"다." - -#: admin/woocommerce-admin-init.php:453 -msgid "No customer selected" -msgstr "고객이 선택되지 않았습니다" - -#: admin/woocommerce-admin-init.php:665 -msgid "Product updated. View Product" -msgstr "상품 업데이트됨. 상품 보기" - -#: admin/woocommerce-admin-init.php:666 admin/woocommerce-admin-init.php:681 -#: admin/woocommerce-admin-init.php:696 -msgid "Custom field updated." -msgstr "사용자 정의 필드 업데이트됨." - -#: admin/woocommerce-admin-init.php:667 admin/woocommerce-admin-init.php:682 -#: admin/woocommerce-admin-init.php:697 -msgid "Custom field deleted." -msgstr "사용자정의 필드 삭제됨." - -#: admin/woocommerce-admin-init.php:668 -msgid "Product updated." -msgstr "상품 업데이트됨." - -#: admin/woocommerce-admin-init.php:669 -msgid "Product restored to revision from %s" -msgstr "상품이 %s에서 리비전으로 복구됐습니다" - -#: admin/woocommerce-admin-init.php:670 -msgid "Product published. View Product" -msgstr "상품 발행됨. 상품 보기" - -#: admin/woocommerce-admin-init.php:671 -msgid "Product saved." -msgstr "상품 저장됨." - -#: admin/woocommerce-admin-init.php:672 -msgid "Product submitted. Preview Product" -msgstr "상품 제출됨. 상품 미리보기" - -#: admin/woocommerce-admin-init.php:673 -msgid "" -"Product scheduled for: %1$s. Preview Product" -msgstr "" -"상품 예약됨: %1$s. 상품 " -"미리보기" - -#: admin/woocommerce-admin-init.php:674 admin/woocommerce-admin-init.php:689 -#: admin/woocommerce-admin-init.php:704 -msgid "M j, Y @ G:i" -msgstr "Y M j, @ G:i" - -#: admin/woocommerce-admin-init.php:675 -msgid "" -"Product draft updated. Preview Product" -msgstr "" -"상품 임시글 업데이트됨. 상품 미리보기" - -#: admin/woocommerce-admin-init.php:680 admin/woocommerce-admin-init.php:683 -#: admin/woocommerce-admin-init.php:685 -msgid "Order updated." -msgstr "주문 업데이트됨." - -#: admin/woocommerce-admin-init.php:684 -msgid "Order restored to revision from %s" -msgstr "주문이 %s에서 리비전으로 복구됐습니다" - -#: admin/woocommerce-admin-init.php:686 -msgid "Order saved." -msgstr "주문이 저장됐습니다." - -#: admin/woocommerce-admin-init.php:687 -msgid "Order submitted." -msgstr "주문이 제출됐습니다." - -#: admin/woocommerce-admin-init.php:688 -msgid "Order scheduled for: %1$s." -msgstr "주문 예약됨: %1$s." - -#: admin/woocommerce-admin-init.php:690 -msgid "Order draft updated." -msgstr "주문 임시글이 업데이트됐습니다." - -#: admin/woocommerce-admin-init.php:695 admin/woocommerce-admin-init.php:698 -#: admin/woocommerce-admin-init.php:700 -msgid "Coupon updated." -msgstr "쿠폰이 업데이트됐습니다." - -#: admin/woocommerce-admin-init.php:699 -msgid "Coupon restored to revision from %s" -msgstr "쿠폰이 %s에서 리비전으로 복구됐습니다" - -#: admin/woocommerce-admin-init.php:701 -msgid "Coupon saved." -msgstr "쿠폰이 저장됐습니다." - -#: admin/woocommerce-admin-init.php:702 -msgid "Coupon submitted." -msgstr "쿠폰이 제출됐습니다." - -#: admin/woocommerce-admin-init.php:703 -msgid "Coupon scheduled for: %1$s." -msgstr "쿠폰 예약됨: %1$s." - -#: admin/woocommerce-admin-init.php:705 -msgid "Coupon draft updated." -msgstr "쿠폰 임시글이 업데이트됐습니다." - -#: admin/woocommerce-admin-init.php:722 -msgid "Order notes" -msgstr "주문 메모" - -#: admin/woocommerce-admin-init.php:737 -msgid "" -"These settings control the permalinks used for products. These settings only " -"apply when not using \"default\" permalinks above." -msgstr "" -"이 설정은 상품에 사용된 고유주소를 제어합니다. 이 설정은 위의 \"기본" -"\" 고유주소를 사용하지 않을 경우에만 적용됩니다." - -#: admin/woocommerce-admin-init.php:744 -msgctxt "default-slug" -msgid "shop" -msgstr "상점" - -#: admin/woocommerce-admin-init.php:745 -msgctxt "default-slug" -msgid "product" -msgstr "상품" - -#: admin/woocommerce-admin-init.php:766 -msgid "Shop base" -msgstr "상점 기준" - -#: admin/woocommerce-admin-init.php:770 -msgid "Shop base with category" -msgstr "카테고리가 있는 상점 기준" - -#: admin/woocommerce-admin-init.php:776 -msgid "Custom Base" -msgstr "사용자 정의 기준" - -#: admin/woocommerce-admin-init.php:778 -msgid "" -"Enter a custom base to use. A base must be set or WordPress " -"will use default instead." -msgstr "" -"사용할 사용자 정의 기준을 입력하세요. 기준은 설정 돼야하며 " -"그렇지 않으면 워드프레스가 기본 설정을 사용할 것입니다. " - -#: admin/woocommerce-admin-init.php:806 -msgid "Product permalink base" -msgstr "상품 고유주소 기준" - -#: admin/woocommerce-admin-init.php:811 -msgid "Product category base" -msgstr "상품 카테고리 기준" - -#: admin/woocommerce-admin-init.php:818 -msgid "Product tag base" -msgstr "상품 태그 기준" - -#: admin/woocommerce-admin-init.php:825 -msgid "Product attribute base" -msgstr "상품 속성 기준" - -#: admin/woocommerce-admin-install.php:195 -msgctxt "page_slug" -msgid "shop" -msgstr "상점" - -#: admin/woocommerce-admin-install.php:195 -msgid "Shop" -msgstr "상점" - -#: admin/woocommerce-admin-install.php:198 -msgctxt "page_slug" -msgid "cart" -msgstr "장바구니" - -#: admin/woocommerce-admin-install.php:198 -#: admin/woocommerce-admin-status.php:303 -msgid "Cart" -msgstr "장바구니" - -#: admin/woocommerce-admin-install.php:201 -msgctxt "page_slug" -msgid "checkout" -msgstr "결제" - -#: admin/woocommerce-admin-install.php:204 -msgctxt "page_slug" -msgid "my-account" -msgstr "나의 계정" - -#: admin/woocommerce-admin-install.php:204 -#: admin/woocommerce-admin-status.php:319 -msgid "My Account" -msgstr "나의 계정" - -#: admin/woocommerce-admin-install.php:210 -msgctxt "page_slug" -msgid "edit-address" -msgstr "주소-편집" - -#: admin/woocommerce-admin-install.php:210 -msgid "Edit My Address" -msgstr "내 주소 편집" - -#: admin/woocommerce-admin-install.php:213 -msgctxt "page_slug" -msgid "view-order" -msgstr "주문 보기" - -#: admin/woocommerce-admin-install.php:213 -#: admin/woocommerce-admin-status.php:327 -msgid "View Order" -msgstr "주문 보기" - -#: admin/woocommerce-admin-install.php:216 -msgctxt "page_slug" -msgid "change-password" -msgstr "비밀번호 변경" - -#: admin/woocommerce-admin-install.php:216 -#: admin/woocommerce-admin-status.php:331 -msgid "Change Password" -msgstr "비밀번호 변경하기" - -#: admin/woocommerce-admin-install.php:219 -msgctxt "page_slug" -msgid "logout" -msgstr "로그아웃" - -#: admin/woocommerce-admin-install.php:219 -msgid "Logout" -msgstr "로그아웃" - -#: admin/woocommerce-admin-install.php:222 -msgctxt "page_slug" -msgid "pay" -msgstr "지불" - -#: admin/woocommerce-admin-install.php:222 -msgid "Checkout → Pay" -msgstr "결제 → 지불" - -#: admin/woocommerce-admin-install.php:225 -msgctxt "page_slug" -msgid "order-received" -msgstr "주문 접수됨" - -#: admin/woocommerce-admin-reports.php:32 -msgid "Sales by day" -msgstr "일일 판매" - -#: admin/woocommerce-admin-reports.php:37 -msgid "Sales by month" -msgstr "월별 판매" - -#: admin/woocommerce-admin-reports.php:42 -msgid "Product Sales" -msgstr "상품 판매" - -#: admin/woocommerce-admin-reports.php:47 -msgid "Top sellers" -msgstr "최고 판매 상품" - -#: admin/woocommerce-admin-reports.php:52 -msgid "Top earners" -msgstr "최고 수익 상품" - -#: admin/woocommerce-admin-reports.php:57 -msgid "Sales by category" -msgstr "카테고리별 판매" - -#: admin/woocommerce-admin-reports.php:72 -msgid "Discounts by coupon" -msgstr "쿠폰에 의한 할인" - -#: admin/woocommerce-admin-reports.php:104 -msgid "Taxes by month" -msgstr "월별 세금" - -#: admin/woocommerce-admin-reports.php:243 -#: admin/woocommerce-admin-reports.php:508 -#: admin/woocommerce-admin-reports.php:713 -#: admin/woocommerce-admin-reports.php:894 -msgid "Sales amount" -msgstr "판매 금액" - -#: admin/woocommerce-admin-reports.php:248 -#: admin/woocommerce-admin-reports.php:508 -#: admin/woocommerce-admin-reports.php:713 -#: admin/woocommerce-admin-reports.php:894 -msgid "Number of sales" -msgstr "판매 수량" - -#: admin/woocommerce-admin-reports.php:380 -msgid "Total sales" -msgstr "총 판매" - -#: admin/woocommerce-admin-reports.php:382 -#: admin/woocommerce-admin-reports.php:388 -#: admin/woocommerce-admin-reports.php:394 -#: admin/woocommerce-admin-reports.php:400 -#: admin/woocommerce-admin-reports.php:406 -#: admin/woocommerce-admin-reports.php:412 -#: admin/woocommerce-admin-reports.php:655 -#: admin/woocommerce-admin-reports.php:661 -#: admin/woocommerce-admin-reports.php:667 -#: admin/woocommerce-admin-reports.php:673 -#: admin/woocommerce-admin-reports.php:839 -#: admin/woocommerce-admin-reports.php:845 -#: admin/woocommerce-admin-reports.php:851 -#: admin/woocommerce-admin-reports.php:857 -#: admin/woocommerce-admin-reports.php:1380 -#: admin/woocommerce-admin-reports.php:1386 -#: admin/woocommerce-admin-reports.php:1392 -#: admin/woocommerce-admin-reports.php:1826 -#: admin/woocommerce-admin-reports.php:1832 -#: admin/woocommerce-admin-reports.php:1838 -#: admin/woocommerce-admin-reports.php:1844 -#: admin/woocommerce-admin-reports.php:1850 -#: admin/woocommerce-admin-reports.php:1856 -#: admin/woocommerce-admin-reports.php:2320 -#: admin/woocommerce-admin-reports.php:2331 -#: admin/woocommerce-admin-reports.php:2342 -msgid "n/a" -msgstr "n/a" - -#: admin/woocommerce-admin-reports.php:386 -msgid "Total orders" -msgstr "총 주문" - -#: admin/woocommerce-admin-reports.php:388 -#: admin/woocommerce-admin-reports.php:661 -#: admin/woocommerce-admin-reports.php:845 -msgid "items" -msgstr "아이템" - -#: admin/woocommerce-admin-reports.php:392 -msgid "Average order total" -msgstr "평균 주문 총계" - -#: admin/woocommerce-admin-reports.php:398 -msgid "Average order items" -msgstr "평균 주문 아이템" - -#: admin/woocommerce-admin-reports.php:404 -msgid "Discounts used" -msgstr "할인 사용" - -#: admin/woocommerce-admin-reports.php:410 -msgid "Total shipping costs" -msgstr "총 배송 비용" - -#: admin/woocommerce-admin-reports.php:418 -msgid "This month's sales" -msgstr "이번 달 판매" - -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1372 -msgid "From:" -msgstr "가장 낮은 가격:" - -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1372 -msgid "To:" -msgstr "종료:" - -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:832 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1245 -#: admin/woocommerce-admin-reports.php:1372 -#: admin/woocommerce-admin-reports.php:1505 -#: admin/woocommerce-admin-reports.php:2309 -#: admin/woocommerce-admin-reports.php:2492 -msgid "Show" -msgstr "보이기" - -#: admin/woocommerce-admin-reports.php:653 -msgid "Total sales in range" -msgstr "총 판매 범위" - -#: admin/woocommerce-admin-reports.php:659 -msgid "Total orders in range" -msgstr "총 주문 범위" - -#: admin/woocommerce-admin-reports.php:665 -msgid "Average order total in range" -msgstr "평균 주문 총계 범위" - -#: admin/woocommerce-admin-reports.php:671 -msgid "Average order items in range" -msgstr "평균 주문 아이템 범위" - -#: admin/woocommerce-admin-reports.php:679 -msgid "Sales in range" -msgstr "판매 범위" - -#: admin/woocommerce-admin-reports.php:826 -#: admin/woocommerce-admin-reports.php:2303 -msgid "Year:" -msgstr "년도:" - -#: admin/woocommerce-admin-reports.php:837 -msgid "Total sales for year" -msgstr "연간 총 판매" - -#: admin/woocommerce-admin-reports.php:843 -msgid "Total orders for year" -msgstr "연간 총 주문" - -#: admin/woocommerce-admin-reports.php:849 -msgid "Average order total for year" -msgstr "연간 평균 주문 총계" - -#: admin/woocommerce-admin-reports.php:855 -msgid "Average order items for year" -msgstr "연간 평균 주문 아이템" - -#: admin/woocommerce-admin-reports.php:863 -msgid "Monthly sales for year" -msgstr "연간 월별 판매" - -#: admin/woocommerce-admin-reports.php:1011 -msgid "Product does not exist" -msgstr "상품이 존재하지 않습니다" - -#: admin/woocommerce-admin-reports.php:1110 -msgid "Product no longer exists" -msgstr "상품이 더 이상 존재하지 않습니다" - -#: admin/woocommerce-admin-reports.php:1209 -msgid "Sales for %s:" -msgstr "%s 판매:" - -#: admin/woocommerce-admin-reports.php:1213 -#: admin/woocommerce-admin-reports.php:2351 -msgid "Month" -msgstr "월" - -#: admin/woocommerce-admin-reports.php:1235 -msgid "No sales :(" -msgstr "판매 없음 :(" - -#: admin/woocommerce-admin-reports.php:1378 -msgid "Total orders containing coupons" -msgstr "쿠폰을 사용한 총 주문" - -#: admin/woocommerce-admin-reports.php:1384 -msgid "Percent of orders containing coupons" -msgstr "쿠폰을 사용한 주문 백분율" - -#: admin/woocommerce-admin-reports.php:1390 -msgid "Total coupon discount" -msgstr "총 쿠폰 할인" - -#: admin/woocommerce-admin-reports.php:1399 -msgid "Most popular coupons" -msgstr "가장 인기있는 쿠폰" - -#: admin/woocommerce-admin-reports.php:1409 -msgid "Used 1 time" -msgid_plural "Used %d times" -msgstr[0] "1회 사용됨" -msgstr[1] "%d 회 사용됨" - -#: admin/woocommerce-admin-reports.php:1412 -#: admin/woocommerce-admin-reports.php:1434 -msgid "No coupons found" -msgstr "쿠폰을 찾을 수 없습니다" - -#: admin/woocommerce-admin-reports.php:1421 -msgid "Greatest discount amount" -msgstr "최대 할인 금액" - -#: admin/woocommerce-admin-reports.php:1431 -msgid "Discounted %s" -msgstr "%s 할인됨" - -#: admin/woocommerce-admin-reports.php:1490 -#: admin/woocommerce-admin-reports.php:2469 -msgid "Show:" -msgstr "보이기:" - -#: admin/woocommerce-admin-reports.php:1547 -msgid "Coupon" -msgstr "쿠폰" - -#: admin/woocommerce-admin-reports.php:1630 -msgid "Top coupon" -msgstr "최고의 쿠폰" - -#: admin/woocommerce-admin-reports.php:1638 -msgid "Worst coupon" -msgstr "최악의 쿠폰" - -#: admin/woocommerce-admin-reports.php:1646 -msgid "Discount average" -msgstr "할인 평균" - -#: admin/woocommerce-admin-reports.php:1654 -msgid "Discount median" -msgstr "할인 중앙값" - -#: admin/woocommerce-admin-reports.php:1674 -msgid "Monthly discounts by coupon" -msgstr "쿠폰에 의한 월별 할인" - -#: admin/woocommerce-admin-reports.php:1824 -msgid "Total customers" -msgstr "총 고객" - -#: admin/woocommerce-admin-reports.php:1830 -msgid "Total customer sales" -msgstr "총 고객 판매" - -#: admin/woocommerce-admin-reports.php:1836 -msgid "Total guest sales" -msgstr "총 비회원 판매" - -#: admin/woocommerce-admin-reports.php:1842 -msgid "Total customer orders" -msgstr "총 고객 주문" - -#: admin/woocommerce-admin-reports.php:1848 -msgid "Total guest orders" -msgstr "총 비회원 주문" - -#: admin/woocommerce-admin-reports.php:1854 -msgid "Average orders per customer" -msgstr "고객당 평균 주문" - -#: admin/woocommerce-admin-reports.php:1862 -msgid "Signups per day" -msgstr "일일 회원가입" - -#: admin/woocommerce-admin-reports.php:2083 -msgid "Low stock" -msgstr "재고 부족" - -#: admin/woocommerce-admin-reports.php:2106 -#: admin/woocommerce-admin-reports.php:2145 -msgid "%d in stock" -msgid_plural "%d in stock" -msgstr[0] "%d 재고 있음" -msgstr[1] "%d 재고 있음" - -#: admin/woocommerce-admin-reports.php:2111 -msgid "No products are low in stock." -msgstr "상품이 재고부족이 아닙니다." - -#: admin/woocommerce-admin-reports.php:2143 -msgid "Marked out of stock" -msgstr "품절로 표시됨" - -#: admin/woocommerce-admin-reports.php:2150 -msgid "No products are out in stock." -msgstr "상품이 품절이 아닙니다." - -#: admin/woocommerce-admin-reports.php:2314 -msgid "Total taxes for year" -msgstr "연간 총 세금" - -#: admin/woocommerce-admin-reports.php:2325 -msgid "Total product taxes for year" -msgstr "연간 총 상품 세금" - -#: admin/woocommerce-admin-reports.php:2336 -msgid "Total shipping tax for year" -msgstr "연간 총 배송 세금" - -#: admin/woocommerce-admin-reports.php:2352 -msgid "Total Sales" -msgstr "총 판매" - -#: admin/woocommerce-admin-reports.php:2352 -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "이것은 고객님의 주문에서 '주문 총계' 란의 합계입니다." - -#: admin/woocommerce-admin-reports.php:2353 -msgid "Total Shipping" -msgstr "총 배송" - -#: admin/woocommerce-admin-reports.php:2353 -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "이것은 고객님의 주문에서 '배송 총계' 란의 합계입니다." - -#: admin/woocommerce-admin-reports.php:2354 -msgid "Total Product Taxes" -msgstr "총 상품 세금" - -#: admin/woocommerce-admin-reports.php:2354 -msgid "This is the sum of the 'Cart Tax' field within your orders." -msgstr "이것은 고객님의 주문에서 '장바구니 세금' 란의 합계입니다." - -#: admin/woocommerce-admin-reports.php:2355 -msgid "Total Shipping Taxes" -msgstr "총 배송 세금" - -#: admin/woocommerce-admin-reports.php:2355 -msgid "This is the sum of the 'Shipping Tax' field within your orders." -msgstr "이것은 고객님의 주문에서 '배송 세금' 란의 합계입니다." - -#: admin/woocommerce-admin-reports.php:2356 -msgid "Total Taxes" -msgstr "총 세금" - -#: admin/woocommerce-admin-reports.php:2356 -msgid "" -"This is the sum of the 'Cart Tax' and 'Shipping Tax' fields within your " -"orders." -msgstr "" -"이것은 고객님의 주문에서 '장바구니 세금'과 '배송 세금' 란의 합계입니다." - -#: admin/woocommerce-admin-reports.php:2357 -msgid "Net profit" -msgstr "순 수익" - -#: admin/woocommerce-admin-reports.php:2357 -msgid "Total sales minus shipping and tax." -msgstr "배송 및 세금 제외한 총 판매" - -#: admin/woocommerce-admin-reports.php:2402 -msgid "Toggle tax rows" -msgstr "세금 행 토글" - -#: admin/woocommerce-admin-reports.php:2545 -msgid "Category" -msgstr "카테고리" - -#: admin/woocommerce-admin-reports.php:2648 -msgid "Top category" -msgstr "최고의 카테고리" - -#: admin/woocommerce-admin-reports.php:2657 -msgid "Worst category" -msgstr "최악의 카테고리" - -#: admin/woocommerce-admin-reports.php:2665 -msgid "Category sales average" -msgstr "카테고리 판매 평균" - -#: admin/woocommerce-admin-reports.php:2676 -msgid "Category sales median" -msgstr "카테고리 판매 중앙값" - -#: admin/woocommerce-admin-reports.php:2696 -msgid "Monthly sales by category" -msgstr "카테고리별 월별 판매" - -#: admin/woocommerce-admin-settings.php:45 -msgid "Action failed. Please refresh the page and retry." -msgstr "작업이 실패했습니다. 페이지를 새로고침하고 다시 해보세요." - -#: admin/woocommerce-admin-settings.php:164 -msgid "Your settings have been saved." -msgstr "설정이 저장됐습니다." - -#: admin/woocommerce-admin-settings.php:210 -msgid "" -"More functionality and gateway options available via WC official extensions." -msgstr "" -"더 많은 기능과 게이트웨이 옵션은 WC " -"official extensions을 통해서 가능합니다." - -#: admin/woocommerce-admin-settings.php:228 -msgid "Tax Rates" -msgstr "세율" - -#: admin/woocommerce-admin-settings.php:255 -msgid "Email Options" -msgstr "이메일 옵션" - -#: admin/woocommerce-admin-settings.php:388 -msgid "Save changes" -msgstr "변경 사항 저장" - -#: admin/woocommerce-admin-settings.php:429 -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "이 페이지를 떠나면 변경사항을 잃게 됩니다." - -#: admin/woocommerce-admin-settings.php:801 -msgid "Hard Crop" -msgstr "원본 비율 무시" - -#: admin/woocommerce-admin-settings.php:826 -msgid "Select a page…" -msgstr "페이지를 선택하세요…" - -#: admin/woocommerce-admin-settings.php:849 -msgid "Choose a country…" -msgstr "국가를 선택하세요…" - -#: admin/woocommerce-admin-settings.php:869 -msgid "Choose countries…" -msgstr "국가를 선택하세요…" - -#: admin/woocommerce-admin-status.php:27 -#: admin/woocommerce-admin-status.php:664 -msgid "Tools" -msgstr "도구" - -#: admin/woocommerce-admin-status.php:62 -msgid "Please include this information when requesting support:" -msgstr "지원을 요청할 경우 이 정보를 포함해주세요:" - -#: admin/woocommerce-admin-status.php:63 -msgid "Download System Report File" -msgstr "시스템 보고서 파일 내려받기" - -#: admin/woocommerce-admin-status.php:71 -msgid "Environment" -msgstr "환경" - -#: admin/woocommerce-admin-status.php:77 -msgid "Home URL" -msgstr "홈 URL" - -#: admin/woocommerce-admin-status.php:81 -msgid "Site URL" -msgstr "사이트 URL" - -#: admin/woocommerce-admin-status.php:85 -msgid "WC Version" -msgstr "우커머스 버전" - -#: admin/woocommerce-admin-status.php:89 -msgid "WC Database Version" -msgstr "우커머스 데이터베이스 버전" - -#: admin/woocommerce-admin-status.php:93 -msgid "WP Version" -msgstr "워드프레스 버전" - -#: admin/woocommerce-admin-status.php:97 -msgid "Web Server Info" -msgstr "웹서버 정보" - -#: admin/woocommerce-admin-status.php:101 -msgid "PHP Version" -msgstr "PHP 버전" - -#: admin/woocommerce-admin-status.php:105 -msgid "MySQL Version" -msgstr "MySQL 버전" - -#: admin/woocommerce-admin-status.php:109 -msgid "WP Memory Limit" -msgstr "WP 메모리 한도" - -#: admin/woocommerce-admin-status.php:114 -msgid "" -"%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "" -"%s - 최소 64MB의 설정 메모리를 추천합니다. 참고: PHP 메모리 할" -"당 늘리기" - -#: admin/woocommerce-admin-status.php:121 -msgid "WP Debug Mode" -msgstr "WP 디버그 모드" - -#: admin/woocommerce-admin-status.php:125 -msgid "WP Max Upload Size" -msgstr "워드프레스 최대 업로드 사이즈" - -#: admin/woocommerce-admin-status.php:129 -msgid "PHP Post Max Size" -msgstr "PHP 포스트 최대 사이즈" - -#: admin/woocommerce-admin-status.php:133 -msgid "PHP Time Limit" -msgstr "PHP 시간 한도" - -#: admin/woocommerce-admin-status.php:137 -msgid "WC Logging" -msgstr "WC 로깅" - -#: admin/woocommerce-admin-status.php:140 -msgid "Log directory is writable." -msgstr "로그 디렉토리가 쓰기 가능합니다." - -#: admin/woocommerce-admin-status.php:142 -msgid "" -"Log directory (woocommerce/logs/) is not writable. Logging will " -"not be possible." -msgstr "" -"로그 디렉토리 (woocommerce/logs/)가 쓰기 불가능합니다. 로깅이 불" -"가능할 것입니다." - -#: admin/woocommerce-admin-status.php:149 -msgid "fsockopen/cURL" -msgstr "fsockopen/cURL" - -#: admin/woocommerce-admin-status.php:152 -msgid "Your server has fsockopen and cURL enabled." -msgstr "서버가 fsockopen와 cURL가 활성화되어 있습니다." - -#: admin/woocommerce-admin-status.php:154 -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "fsockopen가 활성화돼있고, cURL가 비활성화돼있습니다." - -#: admin/woocommerce-admin-status.php:156 -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "cURL가 활성화돼있고, fsockopen가 비활성화돼있습니다." - -#: admin/woocommerce-admin-status.php:160 -msgid "" -"Your server does not have fsockopen or cURL enabled - PayPal IPN and other " -"scripts which communicate with other servers will not work. Contact your " -"hosting provider." -msgstr "" -"서버가 fsockopen이나 cURL가 가능하지 않습니다 - 다른 서버와 통신하는 PayPal " -"IPN과 다른 스크립트가 작동하지 않을 것입니다. 호스팅 서비스에 연락하세요." - -#: admin/woocommerce-admin-status.php:165 -msgid "SOAP Client" -msgstr "SOAP 클라이언트" - -#: admin/woocommerce-admin-status.php:167 -msgid "Your server has the SOAP Client class enabled." -msgstr "서버가 SOAP 클라이언트 클래스가 활성화되어 있습니다." - -#: admin/woocommerce-admin-status.php:170 -msgid "" -"Your server does not have the SOAP Client class enabled - " -"some gateway plugins which use SOAP may not work as expected." -msgstr "" -"서버가 SOAP 클라이언트 클래스가 활성화되어 있지 않습니다 " -"- SOAP를 사용하는 게이트웨이 플러그인이 예상대로 작동하지 않는 것 같습니다." - -#: admin/woocommerce-admin-status.php:175 -msgid "WP Remote Post" -msgstr "워드프레스 원격 포스트" - -#: admin/woocommerce-admin-status.php:186 -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "wp_remote_post() 가 성공했습니다 - PayPal IPN이 작동합니다." - -#: admin/woocommerce-admin-status.php:189 -msgid "" -"wp_remote_post() failed. PayPal IPN won't work with your server. Contact " -"your hosting provider. Error:" -msgstr "" -"wp_remote_post() 가 실패했습니다. PayPal IPN 가 서버와 작동하지 않을 것입니" -"다. 호스트에 연락하세요. 에러:" - -#: admin/woocommerce-admin-status.php:192 -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "" -"wp_remote_post() 가 실패했습니다. PayPal IPN 가 서버와 작동하지 않을 수도 있" -"습니다." - -#: admin/woocommerce-admin-status.php:215 -msgid "Plugins" -msgstr "플러그인" - -#: admin/woocommerce-admin-status.php:221 -msgid "Installed Plugins" -msgstr "설치된 플러그인" - -#: admin/woocommerce-admin-status.php:259 -msgid "is available" -msgstr "가능합니다" - -#: admin/woocommerce-admin-status.php:262 -msgid "by" -msgstr "올린이" - -#: admin/woocommerce-admin-status.php:262 -msgid "version" -msgstr "버전" - -#: admin/woocommerce-admin-status.php:285 -msgid "Force SSL" -msgstr "SSL 강제 사용하기" - -#: admin/woocommerce-admin-status.php:292 -msgid "WC Pages" -msgstr "우커머스 페이지" - -#: admin/woocommerce-admin-status.php:299 -msgid "Shop Base" -msgstr "상점 기준" - -#: admin/woocommerce-admin-status.php:311 -msgid "Pay" -msgstr "지불" - -#: admin/woocommerce-admin-status.php:315 -msgid "Thanks" -msgstr "감사합니다" - -#: admin/woocommerce-admin-status.php:323 -msgid "Edit Address" -msgstr "주소 편집하기" - -#: admin/woocommerce-admin-status.php:355 -msgid "Page not set" -msgstr "페이지가 설정되지 않았습니다" - -#: admin/woocommerce-admin-status.php:365 -msgid "Page does not exist" -msgstr "페이지가 존재하지 않습니다" - -#: admin/woocommerce-admin-status.php:370 -msgid "Page does not contain the shortcode: %s" -msgstr "페이지가 숏코드를 포함하지 않습니다: %s" - -#: admin/woocommerce-admin-status.php:389 -msgid "WC Taxonomies" -msgstr "우커머스 택소노미" - -#: admin/woocommerce-admin-status.php:395 -msgid "Order Statuses" -msgstr "주문 상태" - -#: admin/woocommerce-admin-status.php:405 -msgid "Product Types" -msgstr "상품 타입" - -#: admin/woocommerce-admin-status.php:418 -msgid "Templates" -msgstr "템플릿" - -#: admin/woocommerce-admin-status.php:424 -msgid "Template Overrides" -msgstr "템플릿 덮어쓰기" - -#: admin/woocommerce-admin-status.php:442 -msgid "No core overrides present in theme." -msgstr "테마에 코어 파일 덮어쓰기한 것이 없습니다." - -#: admin/woocommerce-admin-status.php:537 -msgid "WC Transients" -msgstr "우커머스 과도 상태" - -#: admin/woocommerce-admin-status.php:538 -msgid "Clear transients" -msgstr "과도 상태 제거하기" - -#: admin/woocommerce-admin-status.php:539 -msgid "This tool will clear the product/shop transients cache." -msgstr "이 도구는 상품/상점 과도 상태 캐시를 제거합니다." - -#: admin/woocommerce-admin-status.php:542 -msgid "Expired Transients" -msgstr "만료된 과도 상태" - -#: admin/woocommerce-admin-status.php:543 -msgid "Clear expired transients" -msgstr "만료된 과도 상태 제거하기" - -#: admin/woocommerce-admin-status.php:544 -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "이 도구는 모든 만료된 과도 상태를 워드프레스에서 제거합니다." - -#: admin/woocommerce-admin-status.php:547 -msgid "Term counts" -msgstr "용어 계산" - -#: admin/woocommerce-admin-status.php:548 -msgid "Recount terms" -msgstr "용어 재계산" - -#: admin/woocommerce-admin-status.php:549 -msgid "" -"This tool will recount product terms - useful when changing your settings in " -"a way which hides products from the catalog." -msgstr "" -"이 도구는 상품 용어를 재계산합니다 - 카탈로그에서 상품을 감추는 식으로 설정" -"을 변경할 때 유용합니다." - -#: admin/woocommerce-admin-status.php:552 -msgid "Capabilities" -msgstr "권한" - -#: admin/woocommerce-admin-status.php:553 -msgid "Reset capabilities" -msgstr "권한 초기화" - -#: admin/woocommerce-admin-status.php:554 -msgid "" -"This tool will reset the admin, customer and shop_manager roles to default. " -"Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "" -"이 툴은 관리자, 고객, 상점 관리자 역할을 기본으로 초기화합니다. 사용자가 우커" -"머스 관리자 페이지의 모든 것에 접근이 안될 경우 이것을 사용하세요." - -#: admin/woocommerce-admin-status.php:557 -msgid "Customer Sessions" -msgstr "고객 세션" - -#: admin/woocommerce-admin-status.php:558 -msgid "Clear all sessions" -msgstr "모든 세션 제거하기" - -#: admin/woocommerce-admin-status.php:559 -msgid "" -"Warning This tool will delete all customer " -"session data from the database, including any current live carts." -msgstr "" -"경고 이 도구는 현재 남아있는 카트를 포함하여 " -"데이터베이스에서 고객의 모든 세션 데이터를 제거합니다." - -#: admin/woocommerce-admin-status.php:569 -msgid "Product Transients Cleared" -msgstr "상품 과도 상태 제거됨" - -#: admin/woocommerce-admin-status.php:610 -msgid "%d Transients Rows Cleared" -msgstr "%d 과도 상태 행 제거됨" - -#: admin/woocommerce-admin-status.php:618 -msgid "Roles successfully reset" -msgstr "역할이 성공적으로 초기화됐습니다" - -#: admin/woocommerce-admin-status.php:630 -msgid "Terms successfully recounted" -msgstr "용어가 성공적으로 재계산 되었습니다" - -#: admin/woocommerce-admin-status.php:649 -msgid "There was an error calling %s::%s" -msgstr "%s를 부르는데 에러가 발생했습니다: %s" - -#: admin/woocommerce-admin-status.php:652 -msgid "There was an error calling %s" -msgstr "%s를 부르는데 에러가 발생했습니다" - -#: admin/woocommerce-admin-taxonomies.php:25 -#: admin/woocommerce-admin-taxonomies.php:118 -msgid "Display type" -msgstr "보이기 형식" - -#: admin/woocommerce-admin-taxonomies.php:29 -#: admin/woocommerce-admin-taxonomies.php:123 -msgid "Subcategories" -msgstr "하위 카테고리" - -#: admin/woocommerce-admin-taxonomies.php:30 -#: admin/woocommerce-admin-taxonomies.php:124 -msgid "Both" -msgstr "둘다" - -#: admin/woocommerce-admin-taxonomies.php:34 -#: admin/woocommerce-admin-taxonomies.php:129 -msgid "Thumbnail" -msgstr "썸네일" - -#: admin/woocommerce-admin-taxonomies.php:38 -#: admin/woocommerce-admin-taxonomies.php:134 -msgid "Upload/Add image" -msgstr "업로드/ 이미지 추가" - -#: admin/woocommerce-admin-taxonomies.php:39 -#: admin/woocommerce-admin-taxonomies.php:135 -msgid "Remove image" -msgstr "이미지 제거" - -#: admin/woocommerce-admin-taxonomies.php:64 -#: admin/woocommerce-admin-taxonomies.php:156 -msgid "Use image" -msgstr "이미지 사용하기" - -#: admin/woocommerce-admin-taxonomies.php:222 -msgid "" -"Product categories for your store can be managed here. To change the order " -"of categories on the front-end you can drag and drop to sort them. To see " -"more categories listed click the \"screen options\" link at the top of the " -"page." -msgstr "" -"상점의 상품 카테고리는 이곳에서 관리할 수 있습니다. 사이트의 카테고리 순서를 " -"변경하려면 분류하기 위해 끌어놓기 할 수 있습니다. 카테고리 목록을 더 보려면 " -"페이지 상단의 \"화면 옵션\" 링크를 클릭하세요." - -#: admin/woocommerce-admin-taxonomies.php:237 -msgid "" -"Shipping classes can be used to group products of similar type. These groups " -"can then be used by certain shipping methods to provide different rates to " -"different products." -msgstr "" -"배송 클래스는 비슷한 형태의 상품을 그룹화하는데 사용될 수 있습니다. 이 그룹" -"은 다른 상품에 다른 세율을 제공하기 위해서 특정한 배송 방법에 의해 사용될 수 " -"있습니다." - -#: admin/woocommerce-admin-taxonomies.php:365 -msgid "Edit Class" -msgstr "클래스 편집" - -#: admin/woocommerce-admin-users.php:26 -msgid "Billing Address" -msgstr "청구 주소" - -#: admin/woocommerce-admin-users.php:27 -msgid "Shipping Address" -msgstr "배송 주소" - -#: admin/woocommerce-admin-users.php:28 -msgid "Paying Customer?" -msgstr "결제 고객 여부" - -#: admin/woocommerce-admin-users.php:29 -msgid "Completed Orders" -msgstr "완료된 주문" - -#: admin/woocommerce-admin-users.php:144 -msgid "Customer Billing Address" -msgstr "고객 청구 주소" - -#: admin/woocommerce-admin-users.php:147 admin/woocommerce-admin-users.php:196 -msgid "First name" -msgstr "이름" - -#: admin/woocommerce-admin-users.php:151 admin/woocommerce-admin-users.php:200 -msgid "Last name" -msgstr "성" - -#: admin/woocommerce-admin-users.php:176 -msgid "Country or state code" -msgstr "국가 혹은 주 코드" - -#: admin/woocommerce-admin-users.php:180 admin/woocommerce-admin-users.php:229 -msgid "2 letter Country code" -msgstr "2 글자 국가 코드" - -#: admin/woocommerce-admin-users.php:183 -msgid "Telephone" -msgstr "전화번호" - -#: admin/woocommerce-admin-users.php:193 -msgid "Customer Shipping Address" -msgstr "고객 배송 주소" - -#: admin/woocommerce-admin-users.php:225 -msgid "State/County or state code" -msgstr "주/군 또는 주 코드" - -#. Plugin Name of the plugin/theme -msgid "WooCommerce" -msgstr "우커머스" - -#. Plugin URI of the plugin/theme -msgid "http://www.woothemes.com/woocommerce/" -msgstr "http://www.woothemes.com/woocommerce/" - -#. Description of the plugin/theme -msgid "An e-commerce toolkit that helps you sell anything. Beautifully." -msgstr "무엇이든 멋지게 판매하는데 도움을 주는 전자 상거래 툴킷." - -#. Author of the plugin/theme -msgid "WooThemes" -msgstr "WooThemes" - -#. Author URI of the plugin/theme -msgid "http://woothemes.com" -msgstr "http://woothemes.com" - -#~ msgid "Enter an amount or percentage e.g. 2.99 or 15%" -#~ msgstr "값 또는 퍼센트를 입력하세요. 예 2.99 또는 15%" - -#~ msgid "Customer emails" -#~ msgstr "고객 이메일" - -#~ msgid "Any customer" -#~ msgstr "모든 고객" - -#~ msgid "" -#~ "Comma separate email addresses to restrict this coupon to specific " -#~ "billing and user emails." -#~ msgstr "" -#~ "이 쿠폰이 특정 청구와 사용자 이메일에 한정되는 콤마로 분리된 이메일 주소" - -#~ msgid "Pipe separate terms" -#~ msgstr "파이프 분리 용어" - -#~ msgid "Base Page Title" -#~ msgstr "기본 페이지 제목" - -#~ msgid "" -#~ "This title to show on the shop base page. Leave blank to use the page " -#~ "title." -#~ msgstr "" -#~ "이 제목은 상점 기본 페이지에 보입니다. 페이지 제목을 사용하려면 비워두세" -#~ "요." - -#~ msgid "Configure shipping class" -#~ msgstr "배송 클래스 환경설정" diff --git a/i18n/languages/woocommerce-admin-nl_NL.mo b/i18n/languages/woocommerce-admin-nl_NL.mo deleted file mode 100644 index 95e21cd5b71..00000000000 Binary files a/i18n/languages/woocommerce-admin-nl_NL.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-admin-nl_NL.po b/i18n/languages/woocommerce-admin-nl_NL.po deleted file mode 100644 index 12279982d33..00000000000 --- a/i18n/languages/woocommerce-admin-nl_NL.po +++ /dev/null @@ -1,6314 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce v2.0.0\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-07-13 16:24+0100\n" -"PO-Revision-Date: 2013-07-13 16:24+0100\n" -"Last-Translator: Ramon van Belzen \n" -"Language-Team: Ramon van Belzen , Geert De " -"Deckere\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" -"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" -"X-Poedit-Basepath: ../../admin/\n" -"X-Textdomain-Support: yes\n" -"X-Generator: Poedit 1.5.7\n" -"X-Poedit-SearchPath-0: .\n" - -#: woocommerce-admin-attributes.php:77 -msgid "Please, provide an attribute name, slug and type." -msgstr "" - -#: woocommerce-admin-attributes.php:79 -#, php-format -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "" - -#: woocommerce-admin-attributes.php:81 -#, php-format -msgid "" -"Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "" - -#: woocommerce-admin-attributes.php:86 woocommerce-admin-attributes.php:91 -#, php-format -msgid "Slug “%s” is already in use. Change it, please." -msgstr "" - -# @ woocommerce -#: woocommerce-admin-attributes.php:234 -msgid "Edit Attribute" -msgstr "Wijzig Eigenschap" - -# @ woocommerce -#: woocommerce-admin-attributes.php:240 woocommerce-admin-attributes.php:276 -#: woocommerce-admin-attributes.php:314 woocommerce-admin-attributes.php:337 -#: woocommerce-admin-attributes.php:381 woocommerce-admin-attributes.php:406 -#: woocommerce-admin-init.php:471 post-types/product.php:88 -#: post-types/writepanels/writepanel-product_data.php:403 -#: post-types/writepanels/writepanel-product_data.php:497 -msgid "Name" -msgstr "Naam" - -# @ woocommerce -#: woocommerce-admin-attributes.php:244 woocommerce-admin-attributes.php:383 -msgid "Name for the attribute (shown on the front-end)." -msgstr "Deze naam wordt getoond op de website." - -# @ woocommerce -#: woocommerce-admin-attributes.php:249 woocommerce-admin-attributes.php:315 -#: woocommerce-admin-attributes.php:387 -msgid "Slug" -msgstr "Afkorting" - -# @ woocommerce -#: woocommerce-admin-attributes.php:253 woocommerce-admin-attributes.php:389 -msgid "" -"Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "" -"Unieke slug/referentie voor de eigenschap; moet korter zijn dan 28 tekens." - -# @ woocommerce -#: woocommerce-admin-attributes.php:258 woocommerce-admin-attributes.php:316 -#: woocommerce-admin-attributes.php:393 post-types/product.php:101 -msgid "Type" -msgstr "Type" - -# @ woocommerce -#: woocommerce-admin-attributes.php:262 woocommerce-admin-attributes.php:395 -msgid "Select" -msgstr "Selectie" - -# @ woocommerce -#: woocommerce-admin-attributes.php:263 woocommerce-admin-attributes.php:396 -msgid "Text" -msgstr "Tekst" - -# @ woocommerce -#: woocommerce-admin-attributes.php:266 woocommerce-admin-attributes.php:399 -msgid "" -"Determines how you select attributes for products. Text " -"allows manual entry via the product page, whereas select " -"attribute terms can be defined from this section. If you plan on using an " -"attribute for variations use select." -msgstr "" -"Hiermee bepaalt u hoe u eigenschappen kiest voor producten. Kies " -"Tekst voor handmatige invoer. Kies Selectie voor een keuzelijstje met vooraf ingesteld termen. Als u van plan " -"bent om een eigenschap voor variaties te gebruiken, kies dan voor " -"Selectie." - -# @ woocommerce -#: woocommerce-admin-attributes.php:271 woocommerce-admin-attributes.php:403 -msgid "Default sort order" -msgstr "Standaard sorteervolgorde" - -# @ woocommerce -#: woocommerce-admin-attributes.php:275 woocommerce-admin-attributes.php:343 -#: woocommerce-admin-attributes.php:405 -msgid "Custom ordering" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-attributes.php:277 woocommerce-admin-attributes.php:340 -#: woocommerce-admin-attributes.php:407 -msgid "Term ID" -msgstr "Voorwaarden pagina ID" - -#: woocommerce-admin-attributes.php:279 woocommerce-admin-attributes.php:409 -msgid "" -"Determines the sort order on the frontend for this attribute. If using " -"custom ordering, you can drag and drop the terms in this attribute" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-attributes.php:284 -msgid "Update" -msgstr "Bijwerken" - -# @ woocommerce -#: woocommerce-admin-attributes.php:306 woocommerce-admin-init.php:66 -#: post-types/writepanels/writepanel-product_data.php:99 -msgid "Attributes" -msgstr "Eigenschappen" - -# @ woocommerce -#: woocommerce-admin-attributes.php:317 -msgid "Order by" -msgstr "Sorteer op" - -# @ woocommerce -#: woocommerce-admin-attributes.php:318 -msgid "Terms" -msgstr "Termen" - -# @ woocommerce -# @ default -#: woocommerce-admin-attributes.php:330 woocommerce-admin-customers.php:163 -#: post-types/product.php:151 -#: post-types/writepanels/writepanel-order_data.php:140 -#: post-types/writepanels/writepanel-order_data.php:230 -#: post-types/writepanels/writepanel-order_data.php:387 -#: post-types/writepanels/writepanel-product_data.php:1091 -msgid "Edit" -msgstr "Bewerken" - -# @ woocommerce -#: woocommerce-admin-attributes.php:330 -#: post-types/writepanels/writepanel-product_images.php:43 -#: post-types/writepanels/writepanel-product_images.php:103 -msgid "Delete" -msgstr "Verwijderen" - -# @ woocommerce -#: woocommerce-admin-attributes.php:363 -msgid "Configure terms" -msgstr "Bewerk termen" - -# @ woocommerce -#: woocommerce-admin-attributes.php:367 -msgid "No attributes currently exist." -msgstr "Geen eigenschappen aanwezig." - -# @ woocommerce -#: woocommerce-admin-attributes.php:377 -msgid "Add New Attribute" -msgstr "Nieuwe eigenschap toevoegen" - -# @ woocommerce -#: woocommerce-admin-attributes.php:378 -msgid "" -"Attributes let you define extra product data, such as size or colour. You " -"can use these attributes in the shop sidebar using the \"layered nav\" " -"widgets. Please note: you cannot rename an attribute later on." -msgstr "" -"Eigenschappen kunnen gebruikt worden om extra productgegevens te definiëren, " -"vb. grootte of kleur. U kunt deze eigenschappen gebruiken in widgets voor " -"gelaagde navigatie. Let op: u kunt de naam van een eigenschap achteraf niet " -"meer veranderen." - -# @ woocommerce -#: woocommerce-admin-attributes.php:412 -msgid "Add Attribute" -msgstr "Eigenschap toevoegen" - -# @ woocommerce -#: woocommerce-admin-attributes.php:423 -msgid "Are you sure you want to delete this attribute?" -msgstr "Weet u zeker dat u deze eigenschap wilt verwijderen?" - -# @ woocommerce -#: woocommerce-admin-content.php:26 woocommerce-admin-reports.php:26 -#: woocommerce-admin-reports.php:66 woocommerce-admin-reports.php:82 -#: woocommerce-admin-reports.php:93 -msgid "Overview" -msgstr "Overzicht" - -# @ woocommerce -#: woocommerce-admin-content.php:29 -#, fuzzy, php-format -msgid "" -"Thank you for using WooCommerce :) Should you need help using or extending " -"WooCommerce please read the documentation. For further " -"assistance you can use the community forum or if you have " -"access, our support desk." -msgstr "" -"Bedankt voor het gebruik van WooCommerce :) Heeft u hulp nodig bij het " -"gebruik of uitbreiden van WooCommerce, gelieve dan de documentatie te raadplegen. Voor verdere hulp kunt u terecht op hetcommunity forum of als u toegang hebt op hetleden forum." - -# @ woocommerce -#: woocommerce-admin-content.php:31 -msgid "" -"If you are having problems, or to assist us with support, please check the " -"status page to identify any problems with your configuration:" -msgstr "" -"Als u problemen heeft, of u wilt ons helpen met support, ga dan naar de " -"pagina \"Systeemstatus\" om mogelijke problemen te vinden met uw " -"configuratie:" - -# @ woocommerce -#: woocommerce-admin-content.php:33 woocommerce-admin-init.php:90 -#: woocommerce-admin-status.php:26 -msgid "System Status" -msgstr "Systeemstatus" - -# @ woocommerce -#: woocommerce-admin-content.php:35 -#, php-format -msgid "" -"If you come across a bug, or wish to contribute to the project you can also " -"get involved on GitHub." -msgstr "" -"Als u een bug ziet, of u wilt bijdragen aan het project kunt u gaan naar GitHub." - -# @ woocommerce -#: woocommerce-admin-content.php:41 woocommerce-admin-init.php:89 -#: woocommerce-admin-status.php:288 includes/welcome.php:153 -msgid "Settings" -msgstr "Instellingen" - -# @ woocommerce -#: woocommerce-admin-content.php:43 -msgid "" -"Here you can set up your store and customise it to fit your needs. The " -"sections available from the settings page include:" -msgstr "" -"Hier kunt u de instellingen doen voor uw winkel volgens uw eigen wensen. De " -"verschillende onderverdelingen van de pagina instellingen zijn:" - -# @ woocommerce -#: woocommerce-admin-content.php:44 woocommerce-admin-settings.php:182 -#: post-types/writepanels/writepanel-product_data.php:79 -msgid "General" -msgstr "Algemeen" - -# @ woocommerce -#: woocommerce-admin-content.php:44 -msgid "" -"General settings such as your shop base, currency, and script/styling " -"options which affect features used in your store." -msgstr "" -"Algemene instellingen zoals winkelvestiging, munteenheid en script/stijl " -"opties." - -# @ woocommerce -#: woocommerce-admin-content.php:45 woocommerce-admin-settings.php:184 -msgid "Pages" -msgstr "Pagina’s" - -# @ woocommerce -#: woocommerce-admin-content.php:45 -msgid "" -"This is where important store page are defined. You can also set up other " -"pages (such as a Terms page) here." -msgstr "" -"Dit is waar u de winkelpagina bepaald. U kunt ook andere pagina's instellen " -"(zoals de Voorwaarden pagina)." - -# @ woocommerce -#: woocommerce-admin-content.php:46 woocommerce-admin-settings.php:183 -#: post-types/product.php:618 post-types/product.php:893 -#: post-types/writepanels/writepanel-product_data.php:1077 -msgid "Catalog" -msgstr "Catalogus" - -# @ woocommerce -#: woocommerce-admin-content.php:46 -msgid "" -"Options for how things like price, images and weights appear in your product " -"catalog." -msgstr "" -"Instellingen voor hoe prijzen, afbeeldingen en gewicht in de " -"productcatalogus worden getoond." - -# @ woocommerce -#: woocommerce-admin-content.php:47 woocommerce-admin-settings.php:185 -#: post-types/writepanels/writepanel-product_data.php:84 -msgid "Inventory" -msgstr "Voorraad" - -# @ woocommerce -#: woocommerce-admin-content.php:47 -msgid "Options concerning stock and stock notices." -msgstr "Instellingen voor voorraad en voorraadberichten." - -# @ woocommerce -#: woocommerce-admin-content.php:48 woocommerce-admin-settings.php:186 -#: post-types/writepanels/writepanel-order_data.php:352 -#: settings/settings-tax-rates.php:387 settings/settings-tax-rates.php:475 -msgid "Tax" -msgstr "BTW" - -# @ woocommerce -#: woocommerce-admin-content.php:48 -msgid "Options concerning tax, including international and local tax rates." -msgstr "" -"Instellingen voor BTW, inclusief internationale en lokale BTW-tarieven." - -# @ woocommerce -#: woocommerce-admin-content.php:49 woocommerce-admin-settings.php:187 -#: post-types/shop_order.php:46 -#: post-types/writepanels/writepanel-order_data.php:539 -#: post-types/writepanels/writepanel-product_data.php:89 -#: settings/settings-tax-rates.php:52 settings/settings-tax-rates.php:217 -msgid "Shipping" -msgstr "Verzending" - -# @ woocommerce -#: woocommerce-admin-content.php:49 -msgid "" -"This is where shipping options are defined, and shipping methods are set up." -msgstr "Instellingen voor verzending en verzendmethodes." - -# @ woocommerce -#: woocommerce-admin-content.php:50 -msgid "Payment Methods" -msgstr "Betaalmethodes" - -# @ woocommerce -#: woocommerce-admin-content.php:50 -msgid "" -"This is where payment gateway options are defined, and individual payment " -"gateways are set up." -msgstr "Instellingen voor betaalmethodes en betalingsgateways." - -# @ woocommerce -#: woocommerce-admin-content.php:51 woocommerce-admin-settings.php:189 -msgid "Emails" -msgstr "E-mails" - -# @ woocommerce -#: woocommerce-admin-content.php:51 -msgid "Here you can customise the way WooCommerce emails appear." -msgstr "Hier kunt de WooCommerce e-mail aanpassen." - -# @ woocommerce -#: woocommerce-admin-content.php:52 woocommerce-admin-settings.php:190 -msgid "Integration" -msgstr "Integratie" - -# @ woocommerce -#: woocommerce-admin-content.php:52 -msgid "" -"The integration section contains options for third party services which " -"integrate with WooCommerce." -msgstr "" -"Het integratiegedeelte bevat opties voor 3de partij services die " -"geïntegreerd zijn met WooCommerce." - -# @ woocommerce -#: woocommerce-admin-content.php:57 woocommerce-admin-init.php:64 -msgid "Reports" -msgstr "Rapporten" - -# @ woocommerce -#: woocommerce-admin-content.php:59 -msgid "" -"The reports section can be accessed from the left-hand navigation menu. Here " -"you can generate reports for sales and customers." -msgstr "" -"De rapporten kunnen gevonden worden in het menu aan de linkerkant. Hier kunt " -"u rapporten maken van verkoop en klanten." - -# @ woocommerce -#: woocommerce-admin-content.php:60 woocommerce-admin-reports.php:23 -#: woocommerce-admin-reports.php:997 woocommerce-admin-reports.php:1095 -#: woocommerce-admin-reports.php:1214 -msgid "Sales" -msgstr "Verkopen" - -# @ woocommerce -#: woocommerce-admin-content.php:60 -msgid "Reports for sales based on date, top sellers and top earners." -msgstr "Rapporten voor verkoop gebaseerd op datum en top producten." - -# @ woocommerce -#: woocommerce-admin-content.php:61 woocommerce-admin-content.php:76 -#: woocommerce-admin-reports.php:63 settings/settings-init.php:96 -msgid "Coupons" -msgstr "Kortingsbonnen" - -# @ woocommerce -#: woocommerce-admin-content.php:61 -msgid "Coupon usage reports." -msgstr "" - -# @ woocommerce -#: woocommerce-admin-content.php:62 woocommerce-admin-customers.php:30 -#: woocommerce-admin-init.php:88 woocommerce-admin-init.php:345 -#: woocommerce-admin-reports.php:79 -msgid "Customers" -msgstr "Klanten" - -# @ woocommerce -#: woocommerce-admin-content.php:62 -msgid "Customer reports, such as signups per day." -msgstr "Klantenrapport, zoals aantal registraties per dag." - -# @ woocommerce -#: woocommerce-admin-content.php:63 woocommerce-admin-reports.php:90 -#: post-types/product.php:94 -#: post-types/writepanels/writepanel-product-type-variable.php:86 -msgid "Stock" -msgstr "Voorraad" - -# @ woocommerce -#: woocommerce-admin-content.php:63 -msgid "Stock reports for low stock and out of stock items." -msgstr "Voorraadrapport voor lage voorraad en producten uit voorraad." - -# @ woocommerce -#: woocommerce-admin-content.php:68 woocommerce-admin-dashboard.php:142 -msgid "Orders" -msgstr "Bestellingen" - -# @ woocommerce -#: woocommerce-admin-content.php:70 -msgid "" -"The orders section can be accessed from the left-hand navigation menu. Here " -"you can view and manage customer orders." -msgstr "" -"Bestellingen kan gevonden in het menu aan de linkerkant. Hier kunt u " -"bestellingen zien en beheren." - -# @ woocommerce -#: woocommerce-admin-content.php:71 -msgid "" -"Orders can also be added from this section if you want to set them up for a " -"customer manually." -msgstr "Bestellingen kunnen hier ook handmatig toegevoegd worden." - -# @ woocommerce -#: woocommerce-admin-content.php:78 -msgid "" -"Coupons can be managed from this section. Once added, customers will be able " -"to enter coupon codes on the cart/checkout page. If a customer uses a coupon " -"code they will be viewable when viewing orders." -msgstr "" -"Hier kunnen kortingsbonnen beheerd worden. Eenmaal toegevoegd kunnen klanten " -"deze kortingsbon code gebruiken in hun winkelwagen. Als een klant de bon " -"gebruikt kunt u dit ook zien bij de bestelling." - -# @ woocommerce -#: woocommerce-admin-content.php:82 -msgid "For more information:" -msgstr "Voor meer informatie:" - -# @ woocommerce -#: woocommerce-admin-content.php:83 woocommerce-admin-init.php:62 -#: woocommerce-admin-init.php:71 woocommerce-admin-init.php:439 -msgid "WooCommerce" -msgstr "WooCommerce" - -#: woocommerce-admin-content.php:84 -msgid "Project on WordPress.org" -msgstr "" - -#: woocommerce-admin-content.php:85 -msgid "Project on Github" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-content.php:86 -msgid "WooCommerce Docs" -msgstr "" - -#: woocommerce-admin-content.php:87 -msgid "Official Extensions" -msgstr "" - -#: woocommerce-admin-content.php:88 -msgid "Official Themes" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-customers.php:29 -#, fuzzy -msgid "Customer" -msgstr "Klanten" - -# @ woocommerce -#: woocommerce-admin-customers.php:169 -#, fuzzy -msgid "View orders" -msgstr "Bekijk Bestelling" - -#: woocommerce-admin-customers.php:193 -msgid "Link previous orders" -msgstr "" - -#: woocommerce-admin-customers.php:219 -msgid "Name (Last, First)" -msgstr "" - -#: woocommerce-admin-customers.php:220 -msgid "Username" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-customers.php:221 -#, fuzzy -msgid "Email address" -msgstr "“Van” e-mailadres" - -# @ woocommerce -#: woocommerce-admin-customers.php:222 -#, fuzzy -msgid "Location" -msgstr "Lokalisatie" - -# @ woocommerce -#: woocommerce-admin-customers.php:223 -#, fuzzy -msgid "Paying customer?" -msgstr "Betalende klant?" - -# @ woocommerce -#: woocommerce-admin-customers.php:224 -#, fuzzy -msgid "Complete orders" -msgstr "Voltooid" - -#: woocommerce-admin-customers.php:225 -msgid "Money spent" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-customers.php:226 -#, fuzzy -msgid "Last order" -msgstr "Totaal aantal bestellingen van bezoekers" - -# @ woocommerce -#: woocommerce-admin-customers.php:227 post-types/shop_order.php:51 -#: post-types/writepanels/writepanel-order_data.php:386 -#: post-types/writepanels/writepanel-order_data.php:433 -msgid "Actions" -msgstr "Acties" - -# @ woocommerce -#: woocommerce-admin-dashboard.php:40 -msgid "Monthly Sales" -msgstr "Maandelijkse verkopen" - -# @ woocommerce -#: woocommerce-admin-dashboard.php:43 -msgid "WooCommerce Right Now" -msgstr "WooCommerce op dit moment" - -# @ woocommerce -#: woocommerce-admin-dashboard.php:44 -msgid "WooCommerce Recent Orders" -msgstr "WooCommerce recente bestellingen" - -# @ woocommerce -#: woocommerce-admin-dashboard.php:45 -msgid "WooCommerce Recent Reviews" -msgstr "WooCommerce Recente Reviews" - -# @ woocommerce -#: woocommerce-admin-dashboard.php:78 -msgid "Shop Content" -msgstr "Winkelinhoud" - -# @ woocommerce -#: woocommerce-admin-dashboard.php:84 woocommerce-admin-functions.php:202 -#: woocommerce-admin-init.php:795 woocommerce-admin-reports.php:996 -#: woocommerce-admin-reports.php:1094 -msgid "Product" -msgid_plural "Products" -msgstr[0] "Product" -msgstr[1] "Producten" - -# @ woocommerce -#: woocommerce-admin-dashboard.php:98 -msgid "Product Category" -msgid_plural "Product Categories" -msgstr[0] "Productcategorie" -msgstr[1] "Productcategorieën" - -# @ woocommerce -#: woocommerce-admin-dashboard.php:112 -msgid "Product Tag" -msgid_plural "Product Tags" -msgstr[0] "Product Tag" -msgstr[1] "Product Tags" - -# @ woocommerce -#: woocommerce-admin-dashboard.php:126 -msgid "Attribute" -msgid_plural "Attributes" -msgstr[0] "Eigenschap" -msgstr[1] "Eigenschappen" - -# @ woocommerce -#: woocommerce-admin-dashboard.php:148 -msgid "Pending" -msgstr "In afwachting" - -# @ woocommerce -#: woocommerce-admin-dashboard.php:162 -msgid "On-Hold" -msgstr "On hold" - -# @ woocommerce -#: woocommerce-admin-dashboard.php:176 post-types/shop_order.php:158 -msgid "Processing" -msgstr "Verwerken" - -# @ woocommerce -#: woocommerce-admin-dashboard.php:190 -msgid "Completed" -msgstr "Voltooid" - -# @ woocommerce -#: woocommerce-admin-dashboard.php:207 -#, php-format -msgid "You are using WooCommerce %s." -msgstr "U gebruikt nu WooCommerce %s." - -# @ woocommerce -#: woocommerce-admin-dashboard.php:238 -msgid "l jS \\of F Y h:i:s A" -msgstr "l j F Y H:i" - -# @ woocommerce -#: woocommerce-admin-dashboard.php:239 -msgid "item" -msgid_plural "items" -msgstr[0] "item" -msgstr[1] "items" - -# @ woocommerce -#: woocommerce-admin-dashboard.php:239 -msgid "Total:" -msgstr "Totaal:" - -# @ woocommerce -#: woocommerce-admin-dashboard.php:245 -msgid "There are no product orders yet." -msgstr "Er zijn nog geen bestellingen van dit product." - -# @ woocommerce -#: woocommerce-admin-dashboard.php:279 -msgid "out of 5" -msgstr "van de 5" - -# @ woocommerce -#: woocommerce-admin-dashboard.php:287 -msgid "There are no product reviews yet." -msgstr "Er zijn nog geen reviews van dit product." - -#: woocommerce-admin-dashboard.php:432 -msgid "Sold" -msgstr "Verkocht" - -#: woocommerce-admin-dashboard.php:433 -msgid "Earned" -msgstr "Verdiend" - -# @ woocommerce -#: woocommerce-admin-functions.php:192 -msgid "Order Received" -msgstr "Bestelling ontvangen" - -# @ woocommerce -#: woocommerce-admin-functions.php:194 -msgid "" -"Thank you, we are now processing your order. Your order's details are below." -msgstr "" -"Bedankt voor uw bestelling. Wij zijn deze nu aan het verwerken. Uw " -"bestellingsdetails staan hieronder." - -# @ woocommerce -#: woocommerce-admin-functions.php:196 -msgid "Order:" -msgstr "Bestelnummer:" - -# @ woocommerce -#: woocommerce-admin-functions.php:203 -msgid "Quantity" -msgstr "Aantal" - -# @ woocommerce -#: woocommerce-admin-functions.php:204 post-types/product.php:96 -#: post-types/product.php:567 post-types/product.php:788 -msgid "Price" -msgstr "Prijs" - -# @ woocommerce -#: woocommerce-admin-functions.php:216 -msgid "Order total:" -msgstr "Bestellingstotaal:" - -# @ woocommerce -#: woocommerce-admin-functions.php:222 -msgid "Customer details" -msgstr "Klantinfo" - -# @ woocommerce -#: woocommerce-admin-functions.php:228 -msgid "Billing address" -msgstr "Factuuradres" - -# @ woocommerce -#: woocommerce-admin-functions.php:235 -msgid "Shipping address" -msgstr "Verzendadres" - -# @ woocommerce -#: woocommerce-admin-functions.php:475 -msgid "Could not compile woocommerce.less:" -msgstr "Kan woocommerce.less niet compileren:" - -# @ woocommerce -#: woocommerce-admin-functions.php:496 woocommerce-admin-functions.php:497 -msgid "Mark processing" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-functions.php:499 woocommerce-admin-functions.php:500 -msgid "Mark completed" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-functions.php:537 -msgid "Order status changed by bulk edit:" -msgstr "" - -# @ default -#: woocommerce-admin-functions.php:560 -#, php-format -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "" -msgstr[1] "" - -# @ woocommerce -#: woocommerce-admin-init.php:89 -msgid "WooCommerce Settings" -msgstr "WooCommerce Instellingen" - -# @ woocommerce -#: woocommerce-admin-init.php:90 -msgid "WooCommerce Status" -msgstr "WooCommerce Status" - -# @ woocommerce -#: woocommerce-admin-init.php:143 woocommerce-admin-init.php:145 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Bestellingen" - -#: woocommerce-admin-init.php:351 -#, php-format -msgid "%s previous order linked" -msgid_plural "%s previous orders linked" -msgstr[0] "" -msgstr[1] "" - -# @ woocommerce -#: woocommerce-admin-init.php:356 -#, fuzzy -msgid "Search customers" -msgstr "Totaal aantal klanten" - -# @ woocommerce -#: woocommerce-admin-init.php:467 -msgid "" -"Are you sure you want to remove the selected items? If you have previously " -"reduced this item's stock, or this order was submitted by a customer, you " -"will need to manually restore the item's stock." -msgstr "" - -#: woocommerce-admin-init.php:468 -msgid "Please select some items." -msgstr "" - -# @ woocommerce -#: woocommerce-admin-init.php:469 -msgid "Remove this item meta?" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-init.php:470 -msgid "Remove this attribute?" -msgstr "Verwijder deze eigenschap?" - -# @ woocommerce -#: woocommerce-admin-init.php:472 -#: post-types/writepanels/variation-admin-html.php:6 -#: post-types/writepanels/writepanel-product_data.php:395 -#: post-types/writepanels/writepanel-product_data.php:489 -msgid "Remove" -msgstr "Verwijderen" - -# @ woocommerce -#: woocommerce-admin-init.php:473 -#: post-types/writepanels/order-download-permission-html.php:7 -#: post-types/writepanels/variation-admin-html.php:7 -#: post-types/writepanels/writepanel-product_data.php:396 -#: post-types/writepanels/writepanel-product_data.php:490 -msgid "Click to toggle" -msgstr "Klik om te toggelen" - -# @ woocommerce -#: woocommerce-admin-init.php:474 -#: post-types/writepanels/writepanel-product_data.php:411 -#: post-types/writepanels/writepanel-product_data.php:503 -msgid "Value(s)" -msgstr "Termen" - -# @ woocommerce -#: woocommerce-admin-init.php:475 -#: post-types/writepanels/writepanel-product_data.php:504 -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "Voer tekst in of verschillende eigenschappen (gescheiden door pipes)." - -# @ woocommerce -#: woocommerce-admin-init.php:476 -#: post-types/writepanels/writepanel-product_data.php:454 -#: post-types/writepanels/writepanel-product_data.php:509 -msgid "Visible on the product page" -msgstr "Toon op de productpagina" - -# @ woocommerce -#: woocommerce-admin-init.php:477 -#: post-types/writepanels/writepanel-product_data.php:467 -#: post-types/writepanels/writepanel-product_data.php:515 -msgid "Used for variations" -msgstr "Gebruik voor variaties" - -# @ woocommerce -#: woocommerce-admin-init.php:478 -msgid "Enter a name for the new attribute term:" -msgstr "Voer een naam in voor de nieuwe eigenschapterm:" - -#: woocommerce-admin-init.php:479 -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-init.php:480 -msgid "" -"Calculate line taxes? This will calculate taxes based on the customers " -"country. If no billing/shipping is set it will use the store base country." -msgstr "" -"Bereken belasting per regel. De berekening is afhankelijk van het in het " -"land geldende belasting tarief. Indien geen land is opgegeven worden de " -"belasting van het thuisland gebruikt." - -# @ woocommerce -#: woocommerce-admin-init.php:481 -msgid "" -"Copy billing information to shipping information? This will remove any " -"currently entered shipping information." -msgstr "" -"Kopieer factuurgegevens voor de verzendgegevens? Dit verwijdert alle " -"momenteel ingevoerde verzendgegevens." - -# @ woocommerce -#: woocommerce-admin-init.php:482 -msgid "" -"Load the customer's billing information? This will remove any currently " -"entered billing information." -msgstr "" -"Laad het betalingsadres van de klant? Dit zal het huidig ingevulde " -"betalingsadres wissen." - -# @ woocommerce -#: woocommerce-admin-init.php:483 -msgid "" -"Load the customer's shipping information? This will remove any currently " -"entered shipping information." -msgstr "" -"Laad het verzendadres van de klant? Dit zal het huidig ingevulde " -"verzendadres wissen." - -# @ woocommerce -#: woocommerce-admin-init.php:484 post-types/product.php:100 -#: post-types/product.php:631 post-types/product.php:905 -#: post-types/writepanels/writepanel-product_data.php:1088 -msgid "Featured" -msgstr "Uitgelicht" - -# @ woocommerce -#: woocommerce-admin-init.php:487 -msgid "No customer selected" -msgstr "Geen klant geselecteerd" - -# @ woocommerce -#: woocommerce-admin-init.php:699 -#, php-format -msgid "Product updated. View Product" -msgstr "Product bijgewerkt. Bekijk Product" - -# @ woocommerce -#: woocommerce-admin-init.php:700 woocommerce-admin-init.php:715 -#: woocommerce-admin-init.php:730 -msgid "Custom field updated." -msgstr "Aangepast veld bijgewerkt." - -# @ woocommerce -#: woocommerce-admin-init.php:701 woocommerce-admin-init.php:716 -#: woocommerce-admin-init.php:731 -msgid "Custom field deleted." -msgstr "Aangepast veld verwijderd." - -# @ woocommerce -#: woocommerce-admin-init.php:702 -msgid "Product updated." -msgstr "Product bijgewerkt." - -# @ woocommerce -#: woocommerce-admin-init.php:703 -#, php-format -msgid "Product restored to revision from %s" -msgstr "Product revisie teruggezet van %s" - -# @ woocommerce -#: woocommerce-admin-init.php:704 -#, php-format -msgid "Product published. View Product" -msgstr "Product gepubliceerd. Bekijk Product" - -# @ woocommerce -#: woocommerce-admin-init.php:705 -msgid "Product saved." -msgstr "Product opgeslagen." - -# @ woocommerce -#: woocommerce-admin-init.php:706 -#, php-format -msgid "Product submitted. Preview Product" -msgstr "" -"Product verzonden. Product Voorbeeld" - -# @ woocommerce -#: woocommerce-admin-init.php:707 -#, php-format -msgid "" -"Product scheduled for: %1$s. Preview Product" -msgstr "" -"Product publicatie geplanned voor %1$s. Product Voorbeeld" - -# @ woocommerce -#: woocommerce-admin-init.php:708 woocommerce-admin-init.php:723 -#: woocommerce-admin-init.php:738 -msgid "M j, Y @ G:i" -msgstr "M j, Y @ G:i" - -# @ woocommerce -#: woocommerce-admin-init.php:709 -#, php-format -msgid "" -"Product draft updated. Preview Product" -msgstr "" -"Product klad bijgewerkt. Preview Product" - -# @ woocommerce -#: woocommerce-admin-init.php:714 woocommerce-admin-init.php:717 -#: woocommerce-admin-init.php:719 -msgid "Order updated." -msgstr "Bestelling bijgewerkt." - -# @ woocommerce -#: woocommerce-admin-init.php:718 -#, php-format -msgid "Order restored to revision from %s" -msgstr "Bestelling revisie teruggezet van %s" - -# @ woocommerce -#: woocommerce-admin-init.php:720 -msgid "Order saved." -msgstr "Bestelling opgeslagen." - -# @ woocommerce -#: woocommerce-admin-init.php:721 -msgid "Order submitted." -msgstr "Bestelling ingevoerd." - -# @ woocommerce -#: woocommerce-admin-init.php:722 -#, php-format -msgid "Order scheduled for: %1$s." -msgstr "Bestelling geplanned voor: %1$s. " - -# @ woocommerce -#: woocommerce-admin-init.php:724 -msgid "Order draft updated." -msgstr "Bestelling klad bijgewerkt." - -# @ woocommerce -#: woocommerce-admin-init.php:729 woocommerce-admin-init.php:732 -#: woocommerce-admin-init.php:734 -msgid "Coupon updated." -msgstr "Kortingsbon bijgewerkt." - -# @ woocommerce -#: woocommerce-admin-init.php:733 -#, php-format -msgid "Coupon restored to revision from %s" -msgstr "Kortingsbon teruggezet naar revisie %s" - -# @ woocommerce -#: woocommerce-admin-init.php:735 -msgid "Coupon saved." -msgstr "Kortingsbon opgeslagen." - -# @ woocommerce -#: woocommerce-admin-init.php:736 -msgid "Coupon submitted." -msgstr "Kortingsbon toegevoegd." - -# @ woocommerce -#: woocommerce-admin-init.php:737 -#, php-format -msgid "Coupon scheduled for: %1$s." -msgstr "Kortingsbon geplanned voor: %1$s." - -# @ woocommerce -#: woocommerce-admin-init.php:739 -msgid "Coupon draft updated." -msgstr "Kortingsbon klad bijgewerkt." - -# @ woocommerce -#: woocommerce-admin-init.php:756 -msgid "Order notes" -msgstr "Bestelling Notities" - -#: woocommerce-admin-init.php:771 -msgid "" -"These settings control the permalinks used for products. These settings only " -"apply when not using \"default\" permalinks above." -msgstr "" - -# @ woocommerce -#: woocommerce-admin-init.php:778 -msgctxt "default-slug" -msgid "shop" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-init.php:779 -msgctxt "default-slug" -msgid "product" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-init.php:791 woocommerce-admin-taxonomies.php:27 -#: woocommerce-admin-taxonomies.php:121 -#: settings/settings-payment-gateways.php:29 -#: settings/settings-shipping-methods.php:29 -msgid "Default" -msgstr "Standaard" - -# @ woocommerce -#: woocommerce-admin-init.php:800 -msgid "Shop base" -msgstr "Winkel basis pagina" - -# @ woocommerce -#: woocommerce-admin-init.php:804 -msgid "Shop base with category" -msgstr "Productcategorie basis" - -# @ woocommerce -#: woocommerce-admin-init.php:810 -msgid "Custom Base" -msgstr "" - -#: woocommerce-admin-init.php:812 -msgid "" -"Enter a custom base to use. A base must be set or WordPress " -"will use default instead." -msgstr "" - -# @ woocommerce -#: woocommerce-admin-init.php:840 -msgid "Product permalink base" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-init.php:845 -msgid "Product category base" -msgstr "Productcategorie slug" - -# @ woocommerce -#: woocommerce-admin-init.php:852 -msgid "Product tag base" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-init.php:859 -msgid "Product attribute base" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-init.php:919 -#: includes/updates/woocommerce-update-2.0.php:49 -msgctxt "slug" -msgid "product-category" -msgstr "product-categorie" - -# @ woocommerce -#: woocommerce-admin-init.php:932 -#: includes/updates/woocommerce-update-2.0.php:50 -msgctxt "slug" -msgid "product-tag" -msgstr "product-tag" - -# @ woocommerce -#: woocommerce-admin-install.php:206 -msgctxt "page_slug" -msgid "shop" -msgstr "winkel" - -# @ woocommerce -#: woocommerce-admin-install.php:207 -msgid "Shop" -msgstr "Winkel" - -# @ woocommerce -#: woocommerce-admin-install.php:211 -msgctxt "page_slug" -msgid "cart" -msgstr "winkelwagen" - -# @ woocommerce -#: woocommerce-admin-install.php:212 woocommerce-admin-status.php:313 -msgid "Cart" -msgstr "Winkelwagen" - -# @ woocommerce -#: woocommerce-admin-install.php:216 -msgctxt "page_slug" -msgid "checkout" -msgstr "afrekenen" - -# @ woocommerce -#: woocommerce-admin-install.php:217 woocommerce-admin-status.php:317 -#: settings/settings-init.php:106 -msgid "Checkout" -msgstr "Afrekenen" - -# @ woocommerce -#: woocommerce-admin-install.php:221 -msgctxt "page_slug" -msgid "my-account" -msgstr "mijn-account" - -# @ woocommerce -#: woocommerce-admin-install.php:222 woocommerce-admin-status.php:321 -msgid "My Account" -msgstr "Mijn Account" - -# @ woocommerce -#: woocommerce-admin-install.php:226 -#: includes/updates/woocommerce-update-2.0.php:179 -msgctxt "page_slug" -msgid "lost-password" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-install.php:227 woocommerce-admin-status.php:329 -#: includes/updates/woocommerce-update-2.0.php:179 -msgid "Lost Password" -msgstr "Wachtwoord vergeten?" - -# @ woocommerce -#: woocommerce-admin-install.php:232 -msgctxt "page_slug" -msgid "edit-address" -msgstr "bewerk-adres" - -# @ woocommerce -#: woocommerce-admin-install.php:233 -msgid "Edit My Address" -msgstr "Wijzig mijn adres" - -#: woocommerce-admin-install.php:238 -msgctxt "page_slug" -msgid "logout" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-install.php:239 -msgid "Logout" -msgstr "Loguit" - -# @ woocommerce -#: woocommerce-admin-profile.php:22 -msgid "Customer Billing Address" -msgstr "Klant factuuradres" - -# @ woocommerce -#: woocommerce-admin-profile.php:25 woocommerce-admin-profile.php:74 -msgid "First name" -msgstr "Voornaam" - -# @ woocommerce -#: woocommerce-admin-profile.php:29 woocommerce-admin-profile.php:78 -msgid "Last name" -msgstr "Achternaam" - -# @ woocommerce -#: woocommerce-admin-profile.php:33 woocommerce-admin-profile.php:82 -#: post-types/writepanels/writepanel-order_data.php:152 -#: post-types/writepanels/writepanel-order_data.php:242 -msgid "Company" -msgstr "Bedrijfsnaam" - -# @ woocommerce -#: woocommerce-admin-profile.php:37 woocommerce-admin-profile.php:86 -#: post-types/writepanels/writepanel-order_data.php:156 -#: post-types/writepanels/writepanel-order_data.php:246 -msgid "Address 1" -msgstr "Adres 1" - -# @ woocommerce -#: woocommerce-admin-profile.php:41 woocommerce-admin-profile.php:90 -#: post-types/writepanels/writepanel-order_data.php:160 -#: post-types/writepanels/writepanel-order_data.php:250 -msgid "Address 2" -msgstr "Adres 2" - -# @ woocommerce -#: woocommerce-admin-profile.php:45 woocommerce-admin-profile.php:94 -#: post-types/writepanels/writepanel-order_data.php:164 -#: post-types/writepanels/writepanel-order_data.php:254 -#: settings/settings-tax-rates.php:42 settings/settings-tax-rates.php:217 -msgid "City" -msgstr "Gemeente" - -# @ woocommerce -#: woocommerce-admin-profile.php:49 woocommerce-admin-profile.php:98 -#: post-types/writepanels/writepanel-order_data.php:168 -#: post-types/writepanels/writepanel-order_data.php:258 -msgid "Postcode" -msgstr "Postcode" - -# @ woocommerce -#: woocommerce-admin-profile.php:53 woocommerce-admin-profile.php:102 -#: post-types/writepanels/writepanel-order_data.php:178 -#: post-types/writepanels/writepanel-order_data.php:268 -msgid "State/County" -msgstr "Provincie" - -# @ woocommerce -#: woocommerce-admin-profile.php:54 -msgid "Country or state code" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-profile.php:57 woocommerce-admin-profile.php:106 -#: post-types/writepanels/writepanel-order_data.php:172 -#: post-types/writepanels/writepanel-order_data.php:262 -msgid "Country" -msgstr "Land" - -# @ woocommerce -#: woocommerce-admin-profile.php:58 woocommerce-admin-profile.php:107 -msgid "2 letter Country code" -msgstr "2-letter land code (bv NL, BE)" - -# @ woocommerce -#: woocommerce-admin-profile.php:61 -msgid "Telephone" -msgstr "Telefoon" - -# @ woocommerce -#: woocommerce-admin-profile.php:65 -#: post-types/writepanels/writepanel-order_data.php:182 -msgid "Email" -msgstr "E-mail" - -# @ woocommerce -#: woocommerce-admin-profile.php:71 -msgid "Customer Shipping Address" -msgstr "Klant verzendadres" - -# @ woocommerce -#: woocommerce-admin-profile.php:103 -msgid "State/County or state code" -msgstr "Staat/provincie" - -# @ woocommerce -#: woocommerce-admin-reports.php:32 -msgid "Sales by day" -msgstr "Verkoop per dag" - -# @ woocommerce -#: woocommerce-admin-reports.php:37 -msgid "Sales by month" -msgstr "Verkoop per maand" - -# @ woocommerce -#: woocommerce-admin-reports.php:42 -msgid "Product Sales" -msgstr "Verkoop per product" - -# @ woocommerce -#: woocommerce-admin-reports.php:47 -msgid "Top sellers" -msgstr "Bestsellers" - -# @ woocommerce -#: woocommerce-admin-reports.php:52 -msgid "Top earners" -msgstr "Topverdieners" - -# @ woocommerce -#: woocommerce-admin-reports.php:57 -msgid "Sales by category" -msgstr "Verkoop per categorie" - -# @ woocommerce -#: woocommerce-admin-reports.php:72 -msgid "Discounts by coupon" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-reports.php:104 -msgid "Taxes by month" -msgstr "BTW per maand" - -# @ woocommerce -#: woocommerce-admin-reports.php:243 woocommerce-admin-reports.php:508 -#: woocommerce-admin-reports.php:713 woocommerce-admin-reports.php:894 -msgid "Sales amount" -msgstr "Verkoopbedrag" - -# @ woocommerce -#: woocommerce-admin-reports.php:248 woocommerce-admin-reports.php:508 -#: woocommerce-admin-reports.php:713 woocommerce-admin-reports.php:894 -msgid "Number of sales" -msgstr "Aantal verkooptransacties" - -# @ woocommerce -#: woocommerce-admin-reports.php:380 -msgid "Total sales" -msgstr "Totaal verkopen" - -# @ woocommerce -#: woocommerce-admin-reports.php:382 woocommerce-admin-reports.php:388 -#: woocommerce-admin-reports.php:394 woocommerce-admin-reports.php:400 -#: woocommerce-admin-reports.php:406 woocommerce-admin-reports.php:412 -#: woocommerce-admin-reports.php:655 woocommerce-admin-reports.php:661 -#: woocommerce-admin-reports.php:667 woocommerce-admin-reports.php:673 -#: woocommerce-admin-reports.php:839 woocommerce-admin-reports.php:845 -#: woocommerce-admin-reports.php:851 woocommerce-admin-reports.php:857 -#: woocommerce-admin-reports.php:1380 woocommerce-admin-reports.php:1386 -#: woocommerce-admin-reports.php:1392 woocommerce-admin-reports.php:1826 -#: woocommerce-admin-reports.php:1832 woocommerce-admin-reports.php:1838 -#: woocommerce-admin-reports.php:1844 woocommerce-admin-reports.php:1850 -#: woocommerce-admin-reports.php:1856 woocommerce-admin-reports.php:2320 -#: woocommerce-admin-reports.php:2331 woocommerce-admin-reports.php:2342 -msgid "n/a" -msgstr "n.v.t." - -# @ woocommerce -#: woocommerce-admin-reports.php:386 -msgid "Total orders" -msgstr "Totaal bestellingen" - -# @ woocommerce -#: woocommerce-admin-reports.php:388 woocommerce-admin-reports.php:661 -#: woocommerce-admin-reports.php:845 -msgid "items" -msgstr "items" - -# @ woocommerce -#: woocommerce-admin-reports.php:392 -msgid "Average order total" -msgstr "Gemiddeld bestellingstotaal" - -# @ woocommerce -#: woocommerce-admin-reports.php:398 -msgid "Average order items" -msgstr "Gemiddeld aantal producten" - -# @ woocommerce -#: woocommerce-admin-reports.php:404 -msgid "Discounts used" -msgstr "Kortingen gebruikt" - -# @ woocommerce -#: woocommerce-admin-reports.php:410 -msgid "Total shipping costs" -msgstr "Totale verzendkosten" - -# @ woocommerce -#: woocommerce-admin-reports.php:418 -msgid "This month's sales" -msgstr "Verkopen van deze maand" - -# @ woocommerce -#: woocommerce-admin-reports.php:647 woocommerce-admin-reports.php:991 -#: woocommerce-admin-reports.php:1089 woocommerce-admin-reports.php:1372 -msgid "From:" -msgstr "Van:" - -# @ woocommerce -#: woocommerce-admin-reports.php:647 woocommerce-admin-reports.php:991 -#: woocommerce-admin-reports.php:1089 woocommerce-admin-reports.php:1372 -msgid "To:" -msgstr "Tot:" - -# @ woocommerce -#: woocommerce-admin-reports.php:647 woocommerce-admin-reports.php:832 -#: woocommerce-admin-reports.php:991 woocommerce-admin-reports.php:1089 -#: woocommerce-admin-reports.php:1245 woocommerce-admin-reports.php:1372 -#: woocommerce-admin-reports.php:1505 woocommerce-admin-reports.php:2309 -#: woocommerce-admin-reports.php:2492 -msgid "Show" -msgstr "Tonen" - -# @ woocommerce -#: woocommerce-admin-reports.php:653 -msgid "Total sales in range" -msgstr "Totale verkoop binnen bereik" - -# @ woocommerce -#: woocommerce-admin-reports.php:659 -msgid "Total orders in range" -msgstr "Totaal aantal bestellingen binnen bereik" - -# @ woocommerce -#: woocommerce-admin-reports.php:665 -msgid "Average order total in range" -msgstr "Gemiddelde bestellingstotaal binnen bereik" - -# @ woocommerce -#: woocommerce-admin-reports.php:671 -msgid "Average order items in range" -msgstr "Gemiddeld aantal artikelen per bestelling binnen bereik" - -# @ woocommerce -#: woocommerce-admin-reports.php:679 -msgid "Sales in range" -msgstr "Omzet in assortiment" - -# @ woocommerce -#: woocommerce-admin-reports.php:826 woocommerce-admin-reports.php:2303 -msgid "Year:" -msgstr "Jaar:" - -# @ woocommerce -#: woocommerce-admin-reports.php:837 -msgid "Total sales for year" -msgstr "De totale omzet voor het jaar" - -# @ woocommerce -#: woocommerce-admin-reports.php:843 -msgid "Total orders for year" -msgstr "Totaal aantal bestellingen voor het jaar" - -# @ woocommerce -#: woocommerce-admin-reports.php:849 -msgid "Average order total for year" -msgstr "Gemiddelde bestelling totaal voor het jaar" - -# @ woocommerce -#: woocommerce-admin-reports.php:855 -msgid "Average order items for year" -msgstr "Gemiddeld aantal artikelen per bestelling voor het jaar" - -# @ woocommerce -#: woocommerce-admin-reports.php:863 -msgid "Monthly sales for year" -msgstr "Maandelijkse verkoopcijfers voor het jaar" - -# @ woocommerce -#: woocommerce-admin-reports.php:1011 -msgid "Product does not exist" -msgstr "Product bestaat niet" - -# @ woocommerce -#: woocommerce-admin-reports.php:1110 -msgid "Product no longer exists" -msgstr "Product bestaat niet meer" - -# @ woocommerce -#: woocommerce-admin-reports.php:1209 -#, php-format -msgid "Sales for %s:" -msgstr "Verkopen voor %s:" - -# @ woocommerce -#: woocommerce-admin-reports.php:1213 woocommerce-admin-reports.php:2351 -msgid "Month" -msgstr "Maand" - -# @ woocommerce -#: woocommerce-admin-reports.php:1235 -msgid "No sales :(" -msgstr "Geen verkopen : (" - -# @ woocommerce -#: woocommerce-admin-reports.php:1245 -#: post-types/writepanels/writepanel-coupon_data.php:75 -#: post-types/writepanels/writepanel-order_data.php:400 -#: post-types/writepanels/writepanel-product_data.php:550 -#: post-types/writepanels/writepanel-product_data.php:567 -msgid "Search for a product…" -msgstr "Zoek naar een product …" - -# @ woocommerce -#: woocommerce-admin-reports.php:1378 -msgid "Total orders containing coupons" -msgstr "Totaal aantal bestellingen met kortingsbon" - -#: woocommerce-admin-reports.php:1384 -msgid "Percent of orders containing coupons" -msgstr "Percentage bestellingen met kortingsbon" - -#: woocommerce-admin-reports.php:1390 -msgid "Total coupon discount" -msgstr "Totale korting via bonnen" - -#: woocommerce-admin-reports.php:1399 -msgid "Most popular coupons" -msgstr "Populairste kortingsbonnen" - -#: woocommerce-admin-reports.php:1409 -#, php-format -msgid "Used 1 time" -msgid_plural "Used %d times" -msgstr[0] "" -msgstr[1] "" - -# @ woocommerce -#: woocommerce-admin-reports.php:1412 woocommerce-admin-reports.php:1434 -msgid "No coupons found" -msgstr "Geen kortingsbonnen gevonden" - -# @ woocommerce -#: woocommerce-admin-reports.php:1421 -msgid "Greatest discount amount" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-reports.php:1431 -#, php-format -msgid "Discounted %s" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-reports.php:1490 woocommerce-admin-reports.php:2469 -msgid "Show:" -msgstr "Tonen:" - -# @ woocommerce -#: woocommerce-admin-reports.php:1547 -msgid "Coupon" -msgstr "Kortingsbon" - -# @ woocommerce -#: woocommerce-admin-reports.php:1562 woocommerce-admin-reports.php:1615 -#: woocommerce-admin-reports.php:2386 woocommerce-admin-reports.php:2555 -#: woocommerce-admin-reports.php:2633 -#: post-types/writepanels/order-fee-html.php:43 -#: post-types/writepanels/order-item-html.php:115 -msgid "Total" -msgstr "Totaal" - -# @ woocommerce -#: woocommerce-admin-reports.php:1630 -msgid "Top coupon" -msgstr "Topkortingsbon" - -# @ woocommerce -#: woocommerce-admin-reports.php:1638 -msgid "Worst coupon" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-reports.php:1646 -msgid "Discount average" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-reports.php:1654 -msgid "Discount median" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-reports.php:1658 woocommerce-admin-reports.php:2671 -#: woocommerce-admin-reports.php:2680 -#: post-types/writepanels/order-fee-html.php:19 -#: post-types/writepanels/order-tax-html.php:8 -#: post-types/writepanels/writepanel-order_data.php:561 -#: post-types/writepanels/writepanel-order_data.php:666 -msgid "N/A" -msgstr "N.B." - -#: woocommerce-admin-reports.php:1674 -msgid "Monthly discounts by coupon" -msgstr "Maandelijkse korting per bon" - -# @ woocommerce -#: woocommerce-admin-reports.php:1824 -msgid "Total customers" -msgstr "Totaal aantal klanten" - -# @ woocommerce -#: woocommerce-admin-reports.php:1830 -msgid "Total customer sales" -msgstr "Totale verkoop aan klanten" - -# @ woocommerce -#: woocommerce-admin-reports.php:1836 -msgid "Total guest sales" -msgstr "Totale verkoop aan bezoekers" - -# @ woocommerce -#: woocommerce-admin-reports.php:1842 -msgid "Total customer orders" -msgstr "Totaal aantal bestellingen van klanten" - -# @ woocommerce -#: woocommerce-admin-reports.php:1848 -msgid "Total guest orders" -msgstr "Totaal aantal bestellingen van bezoekers" - -# @ woocommerce -#: woocommerce-admin-reports.php:1854 -msgid "Average orders per customer" -msgstr "Gemiddeld aantal bestellingen per klant" - -# @ woocommerce -#: woocommerce-admin-reports.php:1862 -msgid "Signups per day" -msgstr "Registraties per dag" - -# @ woocommerce -#: woocommerce-admin-reports.php:2083 -msgid "Low stock" -msgstr "Lage voorraad" - -# @ woocommerce -#: woocommerce-admin-reports.php:2099 woocommerce-admin-reports.php:2135 -#: post-types/product.php:91 post-types/product.php:556 -#: post-types/writepanels/variation-admin-html.php:52 -#: post-types/writepanels/writepanel-product_data.php:125 -msgid "SKU" -msgstr "SKU" - -# @ woocommerce -#: woocommerce-admin-reports.php:2106 woocommerce-admin-reports.php:2145 -#, php-format -msgid "%d in stock" -msgid_plural "%d in stock" -msgstr[0] "%d op voorraad" -msgstr[1] "%d op voorraad" - -# @ woocommerce -#: woocommerce-admin-reports.php:2111 -msgid "No products are low in stock." -msgstr "Er zijn geen producten met een lage voorraad." - -# @ woocommerce -#: woocommerce-admin-reports.php:2119 post-types/product.php:264 -#: post-types/product.php:641 post-types/product.php:930 -#: post-types/writepanels/writepanel-product_data.php:259 -msgid "Out of stock" -msgstr "Uitverkocht" - -# @ woocommerce -#: woocommerce-admin-reports.php:2143 -msgid "Marked out of stock" -msgstr "Uitverkocht" - -# @ woocommerce -#: woocommerce-admin-reports.php:2150 -msgid "No products are out in stock." -msgstr "Er zijn geen producten uitverkocht." - -# @ woocommerce -#: woocommerce-admin-reports.php:2314 -msgid "Total taxes for year" -msgstr "Totaal BTW voor dit jaar" - -# @ woocommerce -#: woocommerce-admin-reports.php:2325 -msgid "Total product taxes for year" -msgstr "Totaal BTW op producten voor dit jaar" - -# @ woocommerce -#: woocommerce-admin-reports.php:2336 -msgid "Total shipping tax for year" -msgstr "Totaal BTW op verzendkosten voor dit jaar" - -# @ woocommerce -#: woocommerce-admin-reports.php:2352 -msgid "Total Sales" -msgstr "Totaal verkoop" - -# @ woocommerce -#: woocommerce-admin-reports.php:2352 -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "" - -# @ woocommerce -#: woocommerce-admin-reports.php:2353 -msgid "Total Shipping" -msgstr "Totaal verzendkosten" - -# @ woocommerce -#: woocommerce-admin-reports.php:2353 -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "" - -# @ woocommerce -#: woocommerce-admin-reports.php:2354 -msgid "Total Product Taxes" -msgstr "Totaal BTW op producten" - -# @ woocommerce -#: woocommerce-admin-reports.php:2354 -msgid "This is the sum of the 'Cart Tax' field within your orders." -msgstr "" - -# @ woocommerce -#: woocommerce-admin-reports.php:2355 -msgid "Total Shipping Taxes" -msgstr "Totaal BTW op verzendkosten" - -# @ woocommerce -#: woocommerce-admin-reports.php:2355 -msgid "This is the sum of the 'Shipping Tax' field within your orders." -msgstr "" - -# @ woocommerce -#: woocommerce-admin-reports.php:2356 -msgid "Total Taxes" -msgstr "Totaal BTW" - -# @ woocommerce -#: woocommerce-admin-reports.php:2356 -msgid "" -"This is the sum of the 'Cart Tax' and 'Shipping Tax' fields within your " -"orders." -msgstr "" - -# @ woocommerce -#: woocommerce-admin-reports.php:2357 -msgid "Net profit" -msgstr "Nettowinst" - -# @ woocommerce -#: woocommerce-admin-reports.php:2357 -msgid "Total sales minus shipping and tax." -msgstr "" - -# @ woocommerce -#: woocommerce-admin-reports.php:2402 -msgid "Toggle tax rows" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-reports.php:2545 -msgid "Category" -msgstr "Categorie" - -# @ woocommerce -#: woocommerce-admin-reports.php:2648 -msgid "Top category" -msgstr "Topcategorie" - -# @ woocommerce -#: woocommerce-admin-reports.php:2657 -msgid "Worst category" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-reports.php:2665 -msgid "Category sales average" -msgstr "" - -#: woocommerce-admin-reports.php:2676 -msgid "Category sales median" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-reports.php:2696 -msgid "Monthly sales by category" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-settings.php:45 -msgid "Action failed. Please refresh the page and retry." -msgstr "Actie niet gelukt. Ververs de pagina en probeer opnieuw." - -# @ woocommerce -#: woocommerce-admin-settings.php:164 -msgid "Your settings have been saved." -msgstr "Instellingen opgeslagen." - -# @ woocommerce -#: woocommerce-admin-settings.php:188 woocommerce-admin-settings.php:329 -#: settings/settings-init.php:841 -msgid "Payment Gateways" -msgstr "Betalingsgateways" - -# @ woocommerce -#: woocommerce-admin-settings.php:210 -#, php-format -msgid "" -"More functionality and gateway options available via WC official extensions." -msgstr "" -"Meer functionaliteit en betalings gateway opties zijn beschikbaar via WC officiele extensions." - -# @ woocommerce -#: woocommerce-admin-settings.php:222 settings/settings-init.php:859 -msgid "Tax Options" -msgstr "BTW-opties" - -# @ woocommerce -#: woocommerce-admin-settings.php:228 -msgid "Tax Rates" -msgstr "BTW-tarieven" - -# @ woocommerce -#: woocommerce-admin-settings.php:228 -#: post-types/writepanels/order-fee-html.php:25 -#: post-types/writepanels/order-item-html.php:96 -#: post-types/writepanels/writepanel-product-type-variable.php:53 -#: post-types/writepanels/writepanel-product_data.php:213 -#: settings/settings-init.php:913 settings/settings-tax-rates.php:29 -msgid "Standard" -msgstr "Standaard" - -# @ woocommerce -#: woocommerce-admin-settings.php:255 -msgid "Email Options" -msgstr "E-mail Opties" - -# @ woocommerce -#: woocommerce-admin-settings.php:292 settings/settings-init.php:758 -msgid "Shipping Options" -msgstr "Verzendingsopties" - -# @ woocommerce -#: woocommerce-admin-settings.php:388 -msgid "Save changes" -msgstr "Wijzigingen opslaan" - -# @ woocommerce -#: woocommerce-admin-settings.php:429 -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "" -"De wijzigingen die u gemaakt zullen verloren gaan als u naar een andere " -"pagina toe gaat." - -# @ woocommerce -#: woocommerce-admin-settings.php:810 post-types/product.php:601 -#: post-types/product.php:879 -#: post-types/writepanels/writepanel-product-type-variable.php:89 -#: post-types/writepanels/writepanel-product_data.php:314 -msgid "Width" -msgstr "Breedte" - -# @ woocommerce -#: woocommerce-admin-settings.php:812 post-types/product.php:602 -#: post-types/product.php:880 -#: post-types/writepanels/writepanel-product-type-variable.php:90 -#: post-types/writepanels/writepanel-product_data.php:315 -msgid "Height" -msgstr "Hoogte" - -# @ woocommerce -#: woocommerce-admin-settings.php:814 -msgid "Hard Crop" -msgstr "Harde crop" - -# @ woocommerce -#: woocommerce-admin-settings.php:839 -msgid "Select a page…" -msgstr "Selecteer een pagina…" - -# @ woocommerce -#: woocommerce-admin-settings.php:862 -msgid "Choose a country…" -msgstr "Kies een land …" - -# @ woocommerce -#: woocommerce-admin-settings.php:882 -msgid "Choose countries…" -msgstr "Kies landen …" - -# @ woocommerce -#: woocommerce-admin-settings.php:888 -#: post-types/writepanels/writepanel-product_data.php:425 -msgid "Select all" -msgstr "Selecteer alles" - -# @ woocommerce -#: woocommerce-admin-settings.php:888 -#: post-types/writepanels/writepanel-product_data.php:425 -msgid "Select none" -msgstr "Selecteer niets" - -# @ woocommerce -#: woocommerce-admin-status.php:27 woocommerce-admin-status.php:688 -msgid "Tools" -msgstr "Tools" - -#: woocommerce-admin-status.php:62 -msgid "Please include this information when requesting support:" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-status.php:63 -msgid "Download System Report File" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-status.php:71 -msgid "Environment" -msgstr "Serveromgeving" - -# @ woocommerce -#: woocommerce-admin-status.php:77 -msgid "Home URL" -msgstr "Home URL" - -# @ woocommerce -#: woocommerce-admin-status.php:81 -msgid "Site URL" -msgstr "Site URL" - -# @ woocommerce -#: woocommerce-admin-status.php:85 -msgid "WC Version" -msgstr "" - -#: woocommerce-admin-status.php:89 -msgid "WC Database Version" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-status.php:93 -msgid "WP Version" -msgstr "" - -#: woocommerce-admin-status.php:97 -msgid "Web Server Info" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-status.php:101 -msgid "PHP Version" -msgstr "PHP Versie" - -# @ woocommerce -#: woocommerce-admin-status.php:105 -msgid "MySQL Version" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-status.php:109 -msgid "WP Memory Limit" -msgstr "WordPress Memory Limit" - -# @ woocommerce -#: woocommerce-admin-status.php:114 -#, php-format -msgid "" -"%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-status.php:121 -msgid "WP Debug Mode" -msgstr "WordPress Debug Modus" - -# @ woocommerce -#: woocommerce-admin-status.php:122 woocommerce-admin-status.php:143 -#: woocommerce-admin-status.php:296 post-types/product.php:911 -#: post-types/product.php:947 post-types/shop_order.php:190 -msgid "Yes" -msgstr "Ja" - -# @ woocommerce -#: woocommerce-admin-status.php:122 woocommerce-admin-status.php:143 -#: woocommerce-admin-status.php:296 post-types/product.php:912 -#: post-types/product.php:948 post-types/shop_order.php:192 -msgid "No" -msgstr "Nee" - -# @ woocommerce -#: woocommerce-admin-status.php:125 -msgid "WP Max Upload Size" -msgstr "WordPress Max Upload Size" - -#: woocommerce-admin-status.php:130 -msgid "PHP Post Max Size" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-status.php:134 -msgid "PHP Time Limit" -msgstr "" - -#: woocommerce-admin-status.php:138 -msgid "PHP Max Input Vars" -msgstr "" - -#: woocommerce-admin-status.php:142 -msgid "SUHOSIN Installed" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-status.php:147 -msgid "WC Logging" -msgstr "WooCommerce Logging" - -# @ woocommerce -#: woocommerce-admin-status.php:150 -msgid "Log directory is writable." -msgstr "Log map (woocommerce/logs/) is beschrijfbaar." - -# @ woocommerce -#: woocommerce-admin-status.php:152 -msgid "" -"Log directory (woocommerce/logs/) is not writable. Logging will " -"not be possible." -msgstr "" -"Log map (woocommerce/logs/) is NIET beschrijfbaar. Loggen vind " -"niet plaats." - -# @ woocommerce -#: woocommerce-admin-status.php:159 -msgid "fsockopen/cURL" -msgstr "fsockopen/cURL" - -# @ woocommerce -#: woocommerce-admin-status.php:162 -msgid "Your server has fsockopen and cURL enabled." -msgstr "Uw server heeft fsockopen en cURL geactiveerd." - -# @ woocommerce -#: woocommerce-admin-status.php:164 -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "Uw server heeft fsockopen geactiveerd, cURL is uitgeschakeld." - -# @ woocommerce -#: woocommerce-admin-status.php:166 -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "Uw server heeft cURL geactiveerd, fsockopen is uitgeschakeld." - -# @ woocommerce -#: woocommerce-admin-status.php:170 -msgid "" -"Your server does not have fsockopen or cURL enabled - PayPal IPN and other " -"scripts which communicate with other servers will not work. Contact your " -"hosting provider." -msgstr "" -"Uw server heeft geen fsockopen of cURL ingeschakeld - PayPal IPN en andere " -"script die communiceren met andere servers zullen niet werken. Contacteer uw " -"hosting provider." - -# @ woocommerce -#: woocommerce-admin-status.php:175 -msgid "SOAP Client" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-status.php:177 -msgid "Your server has the SOAP Client class enabled." -msgstr "" - -#: woocommerce-admin-status.php:180 -#, php-format -msgid "" -"Your server does not have the SOAP Client class enabled - " -"some gateway plugins which use SOAP may not work as expected." -msgstr "" - -# @ woocommerce -#: woocommerce-admin-status.php:185 -msgid "WP Remote Post" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-status.php:196 -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "wp_remote_post() is gelukt. PayPal IPN werkt." - -# @ woocommerce -#: woocommerce-admin-status.php:199 -msgid "" -"wp_remote_post() failed. PayPal IPN won't work with your server. Contact " -"your hosting provider. Error:" -msgstr "" -"wp_remote_post() mislukt. PayPal IPN werkt niet op uw server. Neem contact " -"op met uw hostingprovider. Fout:" - -# @ woocommerce -#: woocommerce-admin-status.php:202 -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "wp_remote_post() mislukt. PayPal IPN werkt niet op uw server." - -#: woocommerce-admin-status.php:225 -msgid "Plugins" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-status.php:231 -msgid "Installed Plugins" -msgstr "Geïnstalleerde plugins" - -# @ woocommerce -#: woocommerce-admin-status.php:269 -#, fuzzy -msgid "is available" -msgstr "Variabel" - -# @ woocommerce -#: woocommerce-admin-status.php:272 -msgid "by" -msgstr "door" - -# @ woocommerce -#: woocommerce-admin-status.php:272 -msgid "version" -msgstr "versie" - -# @ woocommerce -#: woocommerce-admin-status.php:295 -msgid "Force SSL" -msgstr "Forceer SSL" - -# @ woocommerce -#: woocommerce-admin-status.php:302 -msgid "WC Pages" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-status.php:309 -msgid "Shop Base" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-status.php:325 -msgid "Edit Address" -msgstr "Wijzig Adres" - -# @ woocommerce -#: woocommerce-admin-status.php:349 -msgid "Page not set" -msgstr "Pagina niet ingesteld" - -# @ woocommerce -#: woocommerce-admin-status.php:359 -msgid "Page does not exist" -msgstr "Pagina bestaat niet" - -# @ woocommerce -#: woocommerce-admin-status.php:364 -#, php-format -msgid "Page does not contain the shortcode: %s" -msgstr "Pagina bevat niet de shortcode: %s" - -# @ woocommerce -#: woocommerce-admin-status.php:383 -msgid "WC Taxonomies" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-status.php:389 -msgid "Order Statuses" -msgstr "Bestelstatussen" - -# @ woocommerce -#: woocommerce-admin-status.php:399 -msgid "Product Types" -msgstr "Product Types" - -# @ woocommerce -#: woocommerce-admin-status.php:412 -msgid "Templates" -msgstr "Templates" - -#: woocommerce-admin-status.php:418 -msgid "Template Overrides" -msgstr "" - -#: woocommerce-admin-status.php:436 -msgid "No core overrides present in theme." -msgstr "" - -# @ woocommerce -#: woocommerce-admin-status.php:561 -msgid "WC Transients" -msgstr "Tijdelijk geheugen" - -# @ woocommerce -#: woocommerce-admin-status.php:562 -msgid "Clear transients" -msgstr "Wis tijdelijk geheugen" - -# @ woocommerce -#: woocommerce-admin-status.php:563 -msgid "This tool will clear the product/shop transients cache." -msgstr "Deze tool wist product en winkel transients." - -# @ woocommerce -#: woocommerce-admin-status.php:566 -msgid "Expired Transients" -msgstr "Tijdelijk geheugen" - -# @ woocommerce -#: woocommerce-admin-status.php:567 -msgid "Clear expired transients" -msgstr "Wis tijdelijk geheugen" - -# @ woocommerce -# transients is eerder als tijdelijk geheugen vertaald -#: woocommerce-admin-status.php:568 -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "Deze tool wist product en winkel transients." - -# @ woocommerce -#: woocommerce-admin-status.php:571 -msgid "Term counts" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-status.php:572 -msgid "Recount terms" -msgstr "" - -#: woocommerce-admin-status.php:573 -msgid "" -"This tool will recount product terms - useful when changing your settings in " -"a way which hides products from the catalog." -msgstr "" - -# @ woocommerce -#: woocommerce-admin-status.php:576 -msgid "Capabilities" -msgstr "Capaciteiten" - -# @ woocommerce -#: woocommerce-admin-status.php:577 -msgid "Reset capabilities" -msgstr "Reset rechten" - -# @ woocommerce -#: woocommerce-admin-status.php:578 -msgid "" -"This tool will reset the admin, customer and shop_manager roles to default. " -"Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "" -"Deze tool zal de admin-, klant- en winkelmanagerrollen opnieuw instellen. " -"Gebruik dit als uw gebruikers geen toegang hebben tot alle WooCommerce " -"adminpagina's." - -# @ woocommerce -#: woocommerce-admin-status.php:581 -#, fuzzy -msgid "Customer Sessions" -msgstr "Klant e-mails" - -# @ woocommerce -#: woocommerce-admin-status.php:582 -#, fuzzy -msgid "Clear all sessions" -msgstr "Wis tijdelijk geheugen" - -#: woocommerce-admin-status.php:583 -msgid "" -"Warning This tool will delete all customer " -"session data from the database, including any current live carts." -msgstr "" - -# @ woocommerce -#: woocommerce-admin-status.php:593 -msgid "Product Transients Cleared" -msgstr "Product Transients Gewist" - -# @ woocommerce -#: woocommerce-admin-status.php:634 -#, php-format -msgid "%d Transients Rows Cleared" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-status.php:642 -msgid "Roles successfully reset" -msgstr "Rollen gereset" - -# @ woocommerce -#: woocommerce-admin-status.php:654 -msgid "Terms successfully recounted" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-status.php:673 -#, php-format -msgid "There was an error calling %s::%s" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-status.php:676 -#, php-format -msgid "There was an error calling %s" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-taxonomies.php:25 woocommerce-admin-taxonomies.php:118 -msgid "Display type" -msgstr "Weergavetype:" - -# @ woocommerce -#: woocommerce-admin-taxonomies.php:28 woocommerce-admin-taxonomies.php:122 -#: post-types/writepanels/writepanel-coupon_data.php:74 -msgid "Products" -msgstr "Producten" - -# @ woocommerce -#: woocommerce-admin-taxonomies.php:29 woocommerce-admin-taxonomies.php:123 -msgid "Subcategories" -msgstr "Subcategorieën" - -#: woocommerce-admin-taxonomies.php:30 woocommerce-admin-taxonomies.php:124 -msgid "Both" -msgstr "Beide" - -# @ woocommerce -#: woocommerce-admin-taxonomies.php:34 woocommerce-admin-taxonomies.php:129 -msgid "Thumbnail" -msgstr "Previewafbeelding" - -# @ woocommerce -#: woocommerce-admin-taxonomies.php:38 woocommerce-admin-taxonomies.php:134 -msgid "Upload/Add image" -msgstr "Upload afbeelding" - -# @ woocommerce -#: woocommerce-admin-taxonomies.php:39 woocommerce-admin-taxonomies.php:135 -msgid "Remove image" -msgstr "Afbeelding verwijderen" - -# @ woocommerce -#: woocommerce-admin-taxonomies.php:62 woocommerce-admin-taxonomies.php:154 -#: post-types/writepanels/writepanel-product-type-variable.php:585 -msgid "Choose an image" -msgstr "Kies een afbeelding" - -# @ woocommerce -#: woocommerce-admin-taxonomies.php:64 woocommerce-admin-taxonomies.php:156 -msgid "Use image" -msgstr "" - -# @ woocommerce -#: woocommerce-admin-taxonomies.php:222 -msgid "" -"Product categories for your store can be managed here. To change the order " -"of categories on the front-end you can drag and drop to sort them. To see " -"more categories listed click the \"screen options\" link at the top of the " -"page." -msgstr "" -"U kunt hier de productcategorieën voor uw winkel beheren. Om de volgorde van " -"de categorieën te wijzigen kunt u de categorie gewoon verplaatsen door te " -"slepen. Om meer categorieën per pagina te zien kunt u de scherminstellingen " -"wijzigen rechtsbovenaan." - -# @ woocommerce -#: woocommerce-admin-taxonomies.php:237 -msgid "" -"Shipping classes can be used to group products of similar type. These groups " -"can then be used by certain shipping methods to provide different rates to " -"different products." -msgstr "" -"Verzendingsklassen kunnen gebruikt worden om gelijkaardige producten te " -"groeperen. Deze groepen kunnen dan gebruikt worden door bepaalde " -"verzendmethodes om verschillende tarieven aan te rekenen voor verschillende " -"producten." - -# @ woocommerce -#: woocommerce-admin-taxonomies.php:297 post-types/product.php:86 -msgid "Image" -msgstr "Afbeelding" - -# @ woocommerce -#: woocommerce-admin-taxonomies.php:365 -#, fuzzy -msgid "Edit Class" -msgstr "Wijzig Adres" - -# @ woocommerce -#: importers/importers-init.php:13 -msgid "WooCommerce Tax Rates (CSV)" -msgstr "WooCommerce Tax Rates (CSV)" - -#: importers/importers-init.php:13 -msgid "Import tax rates to your store via a csv file." -msgstr "" - -#: importers/tax-rates-importer.php:103 importers/tax-rates-importer.php:188 -#: importers/tax-rates-importer.php:228 importers/tax-rates-importer.php:243 -msgid "Sorry, there has been an error." -msgstr "Sorry, er ging iets mis." - -#: importers/tax-rates-importer.php:104 -msgid "The file does not exist, please try again." -msgstr "" - -#: importers/tax-rates-importer.php:189 -msgid "The CSV is invalid." -msgstr "CSV is ongeldig." - -#: importers/tax-rates-importer.php:200 -#, php-format -msgid "" -"Import complete - imported %s tax rates and skipped " -"%s." -msgstr "" - -# @ woocommerce -#: importers/tax-rates-importer.php:210 -msgid "All done!" -msgstr "Klaar!" - -# @ woocommerce -#: importers/tax-rates-importer.php:210 -msgid "View Tax Rates" -msgstr "Bekijk Belasting Tarieven" - -# @ woocommerce -#: importers/tax-rates-importer.php:261 -msgid "Import Tax Rates" -msgstr "Importeer belasting tarieven" - -#: importers/tax-rates-importer.php:284 -msgid "" -"Hi there! Upload a CSV file containing tax rates to import the contents into " -"your shop. Choose a .csv file to upload, then click \"Upload file and import" -"\"." -msgstr "" - -#: importers/tax-rates-importer.php:286 -#, php-format -msgid "" -"Tax rates need to be defined with columns in a specific order (10 columns). " -"Click here to download a sample." -msgstr "" - -#: importers/tax-rates-importer.php:294 -msgid "" -"Before you can upload your import file, you will need to fix the following " -"error:" -msgstr "" - -#: importers/tax-rates-importer.php:303 -msgid "Choose a file from your computer:" -msgstr "" - -#: importers/tax-rates-importer.php:309 -#, php-format -msgid "Maximum size: %s" -msgstr "" - -#: importers/tax-rates-importer.php:314 -msgid "OR enter path to file:" -msgstr "" - -# @ woocommerce -#: importers/tax-rates-importer.php:321 -msgid "Delimiter" -msgstr "Scheidingsteken" - -# @ woocommerce -#: includes/duplicate_product.php:23 -msgid "No product to duplicate has been supplied!" -msgstr "Er is geen product om te dupliceren gespecificeerd." - -# @ woocommerce -#: includes/duplicate_product.php:43 -msgid "Product creation failed, could not find original product:" -msgstr "Product aanmaken mislukt, kan het originele product niet vinden:" - -# @ woocommerce -#: includes/duplicate_product.php:90 -msgid "(Copy)" -msgstr "(Kopie)" - -# @ woocommerce -#: includes/notice-install.php:6 -msgid "" -"Welcome to WooCommerce – You're almost ready to start " -"selling :)" -msgstr "" -"Welkom bij WooCommerce – U bent bijna klaar om te " -"beginnen verkopen!" - -# @ woocommerce -#: includes/notice-install.php:7 -msgid "Install WooCommerce Pages" -msgstr "Installeer WooCommerce Pagina's" - -# @ woocommerce -#: includes/notice-install.php:7 -msgid "Skip setup" -msgstr "Setup overslaan" - -#: includes/notice-theme-support.php:6 -msgid "" -"Your theme does not declare WooCommerce support – if " -"you encounter layout issues please read our integration guide or choose a " -"WooCommerce theme :)" -msgstr "" - -# @ woocommerce -#: includes/notice-theme-support.php:7 -msgid "Theme Integration Guide" -msgstr "" - -#: includes/notice-theme-support.php:7 -msgid "Hide this notice" -msgstr "" - -#: includes/notice-update.php:6 -msgid "" -"WooCommerce Data Update Required – We just need to " -"update your install to the latest version" -msgstr "" - -# @ woocommerce -#: includes/notice-update.php:7 -msgid "Run the updater" -msgstr "" - -#: includes/notice-update.php:12 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" - -# @ woocommerce -#: includes/welcome.php:48 -#, fuzzy -msgid "Welcome to WooCommerce" -msgstr "Powered by WooCommerce" - -# @ woocommerce -#: includes/welcome.php:135 -#, fuzzy, php-format -msgid "Welcome to WooCommerce %s" -msgstr "Powered by WooCommerce" - -# @ woocommerce -#: includes/welcome.php:140 -#, fuzzy -msgid "Thanks, all done!" -msgstr "Bedankt pagina" - -#: includes/welcome.php:142 -msgid "Thank you for updating to the latest version!" -msgstr "" - -#: includes/welcome.php:144 -msgid "Thanks for installing!" -msgstr "" - -#: includes/welcome.php:146 -#, php-format -msgid "" -"%s WooCommerce %s is more powerful, stable, and secure than ever before. We " -"hope you enjoy it." -msgstr "" - -# @ woocommerce -#: includes/welcome.php:150 -#, fuzzy, php-format -msgid "Version %s" -msgstr "versie" - -#: includes/welcome.php:154 -msgid "Docs" -msgstr "" - -#: includes/welcome.php:161 -msgid "What's New" -msgstr "" - -#: includes/welcome.php:163 -msgid "Credits" -msgstr "" - -#: includes/welcome.php:186 -msgid "Security in mind" -msgstr "" - -#: includes/welcome.php:190 -msgid "Sucuri Safe Plugin" -msgstr "" - -#: includes/welcome.php:191 -msgid "" -"You will be happy to learn that WooCommerce has been audited and certified " -"by the Sucuri Security team. Whilst there is not much to be seen visually to " -"understand the amount of work that went into this audit, rest assured that " -"your website is powered by one of the most powerful and stable eCommerce " -"plugins available." -msgstr "" - -#: includes/welcome.php:194 -msgid "A Smoother Admin Experience" -msgstr "" - -# @ woocommerce -#: includes/welcome.php:200 -#, fuzzy -msgid "New Product Panel" -msgstr "Productnaam" - -#: includes/welcome.php:201 -msgid "" -"We have revised the product data panel making it cleaner, more streamlined, " -"and more logical. Adding products is a breeze!" -msgstr "" - -#: includes/welcome.php:206 -msgid "Nicer Order Screens" -msgstr "" - -#: includes/welcome.php:207 -msgid "" -"Order pages have had a cleanup, with a more easily scannable interface. We " -"particularly like the new status icons!" -msgstr "" - -#: includes/welcome.php:212 -msgid "Multi-Download Support" -msgstr "" - -#: includes/welcome.php:213 -msgid "" -"Products can have multiple downloadable files - purchasers will get access " -"to all the files added." -msgstr "" - -#: includes/welcome.php:218 -msgid "Less Taxing Taxes" -msgstr "" - -#: includes/welcome.php:224 -msgid "New Tax Input Panel" -msgstr "" - -#: includes/welcome.php:225 -msgid "" -"The tax input pages have been streamlined to make inputting taxes simpler - " -"adding multiple taxes for a single jurisdiction is now much easier using the " -"priority system. There is also CSV import/export support." -msgstr "" - -# @ woocommerce -#: includes/welcome.php:229 -#, fuzzy -msgid "Improved Tax Options" -msgstr "BTW-opties" - -#: includes/welcome.php:230 -msgid "" -"As requested by some users, we now support taxing the billing address " -"instead of shipping (optional), and we allow you to choose which tax class " -"applies to shipping." -msgstr "" - -#: includes/welcome.php:235 -msgid "Product Listing Improvements Customers Will Love" -msgstr "" - -# @ woocommerce -#: includes/welcome.php:241 -#, fuzzy -msgid "New Sorting Options" -msgstr "Prijsopties" - -#: includes/welcome.php:242 -msgid "Customers can now sort products by popularity and ratings." -msgstr "" - -#: includes/welcome.php:247 -msgid "Better Pagination and Result Counts" -msgstr "" - -#: includes/welcome.php:248 -msgid "" -"Numbered pagination has been added to core, and we show the number of " -"results found above the listings." -msgstr "" - -#: includes/welcome.php:253 -msgid "Inline Star Rating Display" -msgstr "" - -#: includes/welcome.php:254 -msgid "" -"We have added star ratings to the catalog which are pulled from reviews." -msgstr "" - -#: includes/welcome.php:262 -msgid "Under the Hood" -msgstr "" - -# @ woocommerce -#: includes/welcome.php:266 -#, fuzzy -msgid "New product classes" -msgstr "Toon producten" - -#: includes/welcome.php:267 -msgid "" -"The product classes have been rewritten and are now factory based. Much more " -"extendable, and easier to query products using the new get_product() function." -msgstr "" - -# @ woocommerce -#: includes/welcome.php:271 -#, fuzzy -msgid "Capability overhaul" -msgstr "Capaciteiten" - -#: includes/welcome.php:272 -msgid "" -"More granular capabilities for admin/shop manager roles covering products, " -"orders and coupons." -msgstr "" - -#: includes/welcome.php:276 -msgid "API Improvements" -msgstr "" - -#: includes/welcome.php:277 -msgid "" -"WC-API now has real endpoints, and we've optimised the gateways " -"API significantly by only loading gateways when needed." -msgstr "" - -#: includes/welcome.php:283 -msgid "Cache-friendly cart widgets" -msgstr "" - -#: includes/welcome.php:284 -msgid "" -"Cart widgets and other \"fragments\" are now pulled in via AJAX - this works " -"wonders with static page caching." -msgstr "" - -#: includes/welcome.php:288 -msgid "Session handling" -msgstr "" - -#: includes/welcome.php:289 -msgid "" -"PHP SESSIONS have been a problem for many users in the past, so we've " -"developed our own handler using cookies and options to make these more " -"reliable." -msgstr "" - -#: includes/welcome.php:293 -msgid "Retina Ready" -msgstr "" - -#: includes/welcome.php:294 -msgid "All graphics within WC have been optimised for HiDPI displays." -msgstr "" - -#: includes/welcome.php:301 -msgid "Better stock handling" -msgstr "" - -#: includes/welcome.php:302 -msgid "" -"We have added an option to hold stock for unpaid orders (defaults to " -"60mins). When this time limit is reached, and the order is not paid for, " -"stock is released and the order is cancelled." -msgstr "" - -#: includes/welcome.php:306 -msgid "Improved Line-item storage" -msgstr "" - -#: includes/welcome.php:307 -msgid "" -"We have changed how order items get stored making them easier (and faster) " -"to access for reporting. Order items are no longer serialised within an " -"order - they are stored within their own table." -msgstr "" - -#: includes/welcome.php:311 -msgid "Autoload" -msgstr "" - -#: includes/welcome.php:312 -msgid "" -"We have setup autoloading for classes - this has dramatically reduced memory " -"usage in 2.0." -msgstr "" - -# @ woocommerce -#: includes/welcome.php:319 -#, fuzzy -msgid "Go to WooCommerce Settings" -msgstr "WooCommerce Instellingen" - -#: includes/welcome.php:337 -msgid "" -"WooCommerce is developed and maintained by a worldwide team of passionate " -"individuals and backed by an awesome developer community. Want to see your " -"name? Contribute to WooCommerce." -msgstr "" - -# @ woocommerce -#: includes/welcome.php:363 -#, fuzzy, php-format -msgid "View %s" -msgstr "Bekijk" - -# @ woocommerce -#: includes/updates/woocommerce-update-2.0.php:58 -msgctxt "slug" -msgid "product" -msgstr "product" - -# @ woocommerce -#: post-types/product.php:31 -msgid "Make a duplicate from this product" -msgstr "Maak een kopie van dit product" - -# @ woocommerce -#: post-types/product.php:32 -msgid "Duplicate" -msgstr "Dupliceren" - -# @ woocommerce -#: post-types/product.php:61 -msgid "Copy to a new draft" -msgstr "Dit product dupliceren" - -# @ woocommerce -#: post-types/product.php:98 -msgid "Categories" -msgstr "Categorieën" - -# @ woocommerce -#: post-types/product.php:99 -msgid "Tags" -msgstr "Tags" - -# @ woocommerce -#: post-types/product.php:102 post-types/shop_order.php:50 -msgid "Date" -msgstr "Datum" - -# @ woocommerce -#: post-types/product.php:151 -msgid "Edit this item" -msgstr "" - -# @ woocommerce -#: post-types/product.php:152 -msgid "Edit this item inline" -msgstr "Bewerkt dit item inline" - -# @ woocommerce -#: post-types/product.php:152 -msgid "Quick Edit" -msgstr "Snel bewerken" - -# @ woocommerce -#: post-types/product.php:156 post-types/shop_coupon.php:65 -msgid "Restore this item from the Trash" -msgstr "Dit item herstellen uit de Prullenbak" - -# @ woocommerce -#: post-types/product.php:156 post-types/shop_coupon.php:65 -msgid "Restore" -msgstr "Herstellen" - -# @ woocommerce -#: post-types/product.php:158 post-types/shop_coupon.php:67 -msgid "Move this item to the Trash" -msgstr "Dit item verplaatsen naar de Prullenbak" - -# @ woocommerce -#: post-types/product.php:158 post-types/shop_coupon.php:67 -msgid "Trash" -msgstr "Prullenbak" - -# @ woocommerce -#: post-types/product.php:160 post-types/shop_coupon.php:69 -msgid "Delete this item permanently" -msgstr "Dit item permanent verwijderen" - -# @ woocommerce -#: post-types/product.php:160 post-types/shop_coupon.php:69 -#: post-types/writepanels/writepanel-order_data.php:463 -msgid "Delete Permanently" -msgstr "Permanent verwijderen" - -# @ woocommerce -#: post-types/product.php:165 -#, php-format -msgid "Preview “%s”" -msgstr "Voorbeeld “%s”" - -# @ woocommerce -#: post-types/product.php:165 -msgid "Preview" -msgstr "Voorbeeld" - -# @ woocommerce -#: post-types/product.php:167 -#, php-format -msgid "View “%s”" -msgstr "Bekijk “%s”" - -# @ woocommerce -#: post-types/product.php:167 post-types/shop_order.php:171 -msgid "View" -msgstr "Bekijk" - -# @ woocommerce -#: post-types/product.php:214 -msgid "Grouped" -msgstr "Gegroepeerd" - -# @ woocommerce -#: post-types/product.php:216 -msgid "External/Affiliate" -msgstr "Extern/Affiliate" - -# @ woocommerce -#: post-types/product.php:220 post-types/product.php:407 -#: post-types/writepanels/variation-admin-html.php:176 -#: post-types/writepanels/writepanel-product_data.php:52 -msgid "Virtual" -msgstr "Virtueel" - -# @ woocommerce -#: post-types/product.php:222 post-types/product.php:403 -#: post-types/writepanels/variation-admin-html.php:174 -#: post-types/writepanels/writepanel-product_data.php:58 -msgid "Downloadable" -msgstr "Downloadbaar" - -# @ woocommerce -#: post-types/product.php:224 -msgid "Simple" -msgstr "Simpel" - -# @ woocommerce -#: post-types/product.php:228 post-types/product.php:387 -msgid "Variable" -msgstr "Variabel" - -# @ woocommerce -#: post-types/product.php:251 -msgid "Toggle featured" -msgstr "" - -# @ woocommerce -#: post-types/product.php:253 -msgid "yes" -msgstr "ja" - -#: post-types/product.php:255 -msgid "no" -msgstr "" - -# @ woocommerce -#: post-types/product.php:262 post-types/product.php:640 -#: post-types/product.php:929 -#: post-types/writepanels/writepanel-product_data.php:258 -msgid "In stock" -msgstr "Op voorraad" - -# @ woocommerce -#: post-types/product.php:373 -msgid "Show all product types" -msgstr "Toon alle producttypes" - -# @ woocommerce -#: post-types/product.php:381 -#: post-types/writepanels/writepanel-product_data.php:39 -msgid "Grouped product" -msgstr "Gegroepeerd product" - -# @ woocommerce -#: post-types/product.php:383 -#: post-types/writepanels/writepanel-product_data.php:40 -msgid "External/Affiliate product" -msgstr "Extern product" - -# @ woocommerce -#: post-types/product.php:385 -#: post-types/writepanels/writepanel-product_data.php:38 -msgid "Simple product" -msgstr "Simpel product" - -# @ woocommerce -#: post-types/product.php:399 -msgid "Show all sub-types" -msgstr "Toon alle subtypes" - -# @ woocommerce -#: post-types/product.php:519 -#, php-format -msgid "[%s with SKU of %s]" -msgstr "[%s met SKU van %s]" - -# @ woocommerce -#: post-types/product.php:525 -#, php-format -msgid "[%s with ID of %d]" -msgstr "[%s met ID van %d]" - -# @ woocommerce -#: post-types/product.php:551 post-types/product.php:782 -#: post-types/writepanels/writepanels-init.php:46 -#: settings/settings-init.php:434 -msgid "Product Data" -msgstr "Productgegevens" - -# @ woocommerce -#: post-types/product.php:569 -msgid "Regular price" -msgstr "Normale prijs" - -# @ woocommerce -#: post-types/product.php:574 post-types/product.php:812 -msgid "Sale" -msgstr "Promotie" - -# @ woocommerce -#: post-types/product.php:576 -msgid "Sale price" -msgstr "Promotieprijs" - -# @ woocommerce -#: post-types/product.php:587 post-types/product.php:838 -#: post-types/writepanels/variation-admin-html.php:96 -#: post-types/writepanels/writepanel-product-type-variable.php:87 -#: post-types/writepanels/writepanel-product_data.php:300 -msgid "Weight" -msgstr "Gewicht" - -# @ woocommerce -#: post-types/product.php:598 post-types/product.php:862 -msgid "L/W/H" -msgstr "L/B/H" - -# @ woocommerce -#: post-types/product.php:600 post-types/product.php:878 -#: post-types/writepanels/writepanel-product-type-variable.php:88 -#: post-types/writepanels/writepanel-product_data.php:313 -msgid "Length" -msgstr "Lengte" - -# @ woocommerce -#: post-types/product.php:612 post-types/product.php:886 -msgid "Visibility" -msgstr "Zichtbaarheid" - -# @ woocommerce -#: post-types/product.php:617 post-types/product.php:892 -msgid "Catalog & search" -msgstr "Catalogus & zoeken" - -# @ woocommerce -# @ default -#: post-types/product.php:619 post-types/product.php:894 -#: post-types/writepanels/writepanel-product_data.php:1078 -msgid "Search" -msgstr "Zoeken" - -# @ woocommerce -#: post-types/product.php:620 post-types/product.php:895 -#: post-types/writepanels/writepanel-product_data.php:1079 -msgid "Hidden" -msgstr "Verborgen" - -# @ woocommerce -#: post-types/product.php:635 post-types/product.php:923 -msgid "In stock?" -msgstr "Op voorraad?" - -# @ woocommerce -#: post-types/product.php:656 post-types/product.php:941 -#: post-types/writepanels/writepanel-product_data.php:239 -msgid "Manage stock?" -msgstr "Voorraad beheren?" - -# @ woocommerce -#: post-types/product.php:660 post-types/product.php:960 -#: post-types/product.php:976 -#: post-types/writepanels/writepanel-product_data.php:246 -msgid "Stock Qty" -msgstr "Aantal op voorraad" - -# @ woocommerce -#: post-types/product.php:793 post-types/product.php:817 -#: post-types/product.php:843 post-types/product.php:867 -#: post-types/product.php:891 post-types/product.php:910 -#: post-types/product.php:928 post-types/product.php:946 -#: post-types/product.php:965 -msgid "— No Change —" -msgstr "-- Geen Wijziging --" - -# @ woocommerce -#: post-types/product.php:794 post-types/product.php:818 -#: post-types/product.php:844 post-types/product.php:868 -#: post-types/product.php:966 -msgid "Change to:" -msgstr "Verander naar:" - -#: post-types/product.php:795 post-types/product.php:819 -msgid "Increase by (fixed amount or %):" -msgstr "" - -#: post-types/product.php:796 post-types/product.php:820 -msgid "Decrease by (fixed amount or %):" -msgstr "" - -# @ woocommerce -#: post-types/product.php:806 post-types/product.php:831 -msgid "Enter price" -msgstr "" - -#: post-types/product.php:821 -msgid "Decrease regular price by (fixed amount or %):" -msgstr "" - -# @ woocommerce -#: post-types/product.php:1182 -msgid "Sort Products" -msgstr "Producten sorteren" - -# @ woocommerce -#: post-types/product.php:1221 -msgid "Insert into product" -msgstr "" - -# @ woocommerce -#: post-types/product.php:1222 -msgid "Uploaded to this product" -msgstr "" - -# @ woocommerce -#: post-types/shop_coupon.php:25 -msgid "Code" -msgstr "Code" - -# @ woocommerce -#: post-types/shop_coupon.php:26 -msgid "Coupon type" -msgstr "Bon type" - -# @ woocommerce -#: post-types/shop_coupon.php:27 -#: post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Coupon amount" -msgstr "Bon waarde" - -# @ woocommerce -#: post-types/shop_coupon.php:28 -msgid "Description" -msgstr "Beschrijving" - -# @ woocommerce -#: post-types/shop_coupon.php:29 -msgid "Product IDs" -msgstr "Product ID's" - -# @ woocommerce -#: post-types/shop_coupon.php:30 -msgid "Usage / Limit" -msgstr "Gebruikslimiet" - -# @ woocommerce -#: post-types/shop_coupon.php:31 -#: post-types/writepanels/writepanel-coupon_data.php:156 -msgid "Expiry date" -msgstr "Vervaldatum" - -# @ woocommerce -#: post-types/shop_coupon.php:56 -msgid "Edit coupon" -msgstr "Kortingsbon bewerken" - -#: post-types/shop_coupon.php:114 -#, php-format -msgid "%s / %s" -msgstr "%s / %s" - -#: post-types/shop_coupon.php:116 -#, php-format -msgid "%s / ∞" -msgstr "%s / ∞" - -# @ woocommerce -#: post-types/shop_coupon.php:149 -#, fuzzy -msgid "Show all types" -msgstr "Toon alle subtypes" - -# @ woocommerce -#: post-types/shop_order.php:43 settings/settings-payment-gateways.php:31 -#: settings/settings-shipping-methods.php:31 -msgid "Status" -msgstr "Status" - -# @ woocommerce -#: post-types/shop_order.php:44 -msgid "Order" -msgstr "Bestelling" - -# @ woocommerce -#: post-types/shop_order.php:45 -msgid "Billing" -msgstr "Facturatie" - -# @ woocommerce -#: post-types/shop_order.php:47 -msgid "Order Total" -msgstr "Totaal van de bestelling" - -# @ woocommerce -#: post-types/shop_order.php:48 post-types/writepanels/writepanels-init.php:71 -msgid "Order Notes" -msgstr "Opmerkingen bij bestelling" - -# @ woocommerce -#: post-types/shop_order.php:49 -msgid "Customer Notes" -msgstr "Klant Opmerkingen" - -# @ woocommerce -#: post-types/shop_order.php:95 -#: post-types/writepanels/writepanel-order_data.php:93 -msgid "Guest" -msgstr "Bezoeker" - -# @ woocommerce -#: post-types/shop_order.php:98 -#, php-format -msgid "Order %s" -msgstr "Bestelling %s" - -# @ woocommerce -#: post-types/shop_order.php:98 -msgid "made by" -msgstr "gemaakt door" - -# @ woocommerce -#: post-types/shop_order.php:101 -msgid "Email:" -msgstr "E-mail:" - -# @ woocommerce -#: post-types/shop_order.php:104 -msgid "Tel:" -msgstr "Tel:" - -# @ woocommerce -#: post-types/shop_order.php:114 post-types/shop_order.php:123 -msgid "Via" -msgstr "Via" - -# @ woocommerce -#: post-types/shop_order.php:131 -msgid "Unpublished" -msgstr "Niet gepubliceerd" - -# @ woocommerce -#: post-types/shop_order.php:133 -msgid "Y/m/d g:i:s A" -msgstr "Y/m/d H:i:s" - -# @ woocommerce -#: post-types/shop_order.php:139 -#, php-format -msgid "%s ago" -msgstr "%s geleden" - -# @ woocommerce -#: post-types/shop_order.php:141 -msgid "Y/m/d" -msgstr "d-m-Y" - -# @ woocommerce -#: post-types/shop_order.php:165 -msgid "Complete" -msgstr "Voltooien" - -# @ woocommerce -#: post-types/shop_order.php:282 -msgid "Show all statuses" -msgstr "Toon alle statussen" - -# @ woocommerce -#: post-types/shop_order.php:301 post-types/shop_order.php:326 -msgid "Show all customers" -msgstr "Laat alle klanten zien" - -# @ woocommerce -#: post-types/writepanels/order-download-permission-html.php:6 -msgid "Revoke Access" -msgstr "Toegang Terugtrekken" - -#: post-types/writepanels/order-download-permission-html.php:9 -#, php-format -msgid "File %d: %s" -msgstr "Bestand %d: %s" - -# @ woocommerce -#: post-types/writepanels/order-download-permission-html.php:9 -#, php-format -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "%s keer gedownload" -msgstr[1] "%s keer gedownload" - -# @ woocommerce -#: post-types/writepanels/order-download-permission-html.php:16 -msgid "Downloads Remaining" -msgstr "Resterende Downloads" - -# @ woocommerce -#: post-types/writepanels/order-download-permission-html.php:19 -#: post-types/writepanels/variation-admin-html.php:151 -#: post-types/writepanels/variation-admin-html.php:159 -#: post-types/writepanels/writepanel-product_data.php:185 -msgid "Unlimited" -msgstr "Ongelimiteerd" - -# @ woocommerce -#: post-types/writepanels/order-download-permission-html.php:22 -msgid "Access Expires" -msgstr "Toegang Verlopen" - -# @ woocommerce -#: post-types/writepanels/order-download-permission-html.php:23 -#: post-types/writepanels/writepanel-product_data.php:191 -msgid "Never" -msgstr "Nooit" - -# @ woocommerce -#: post-types/writepanels/order-fee-html.php:10 -msgid "Fee Name" -msgstr "" - -# @ woocommerce -#: post-types/writepanels/order-fee-html.php:17 -#: post-types/writepanels/order-item-html.php:89 -msgid "Tax class" -msgstr "BTW-klasse" - -# @ woocommerce -#: post-types/writepanels/order-fee-html.php:20 -#: post-types/writepanels/writepanel-product_data.php:206 -msgid "Taxable" -msgstr "Belastbaar" - -# @ woocommerce -#: post-types/writepanels/order-item-html.php:10 -msgid "Product ID:" -msgstr "Product ID:" - -# @ woocommerce -#: post-types/writepanels/order-item-html.php:13 -msgid "Variation ID:" -msgstr "Variatie ID:" - -# @ woocommerce -#: post-types/writepanels/order-item-html.php:16 -msgid "Product SKU:" -msgstr "Product SKU:" - -# @ woocommerce -#: post-types/writepanels/order-item-html.php:44 -msgid "Add meta" -msgstr "Toevoegen meta" - -# @ woocommerce -#: post-types/writepanels/order-item-html.php:117 -msgid "Subtotal" -msgstr "subtotaal" - -# @ woocommerce -#: post-types/writepanels/order-tax-html.php:6 -msgid "Tax Rate:" -msgstr "BTW tarief:" - -# @ woocommerce -#: post-types/writepanels/order-tax-html.php:16 -#: post-types/writepanels/writepanel-order_data.php:630 -msgid "Sales Tax:" -msgstr "" - -# @ woocommerce -#: post-types/writepanels/order-tax-html.php:20 -#: post-types/writepanels/writepanel-order_data.php:638 -msgid "Shipping Tax:" -msgstr "BTW op verzendkosten:" - -# @ woocommerce -#: post-types/writepanels/variation-admin-html.php:20 -msgid "Any" -msgstr "Alle" - -# @ woocommerce -#: post-types/writepanels/variation-admin-html.php:52 -msgid "" -"Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "" -"Voereen SKU in voor deze variatie of laag deze leeg om het ouder product SKU " -"te gebruiken." - -# @ woocommerce -#: post-types/writepanels/variation-admin-html.php:63 -msgid "Stock Qty:" -msgstr "Voorraad:" - -# @ woocommerce -#: post-types/writepanels/variation-admin-html.php:63 -msgid "" -"Enter a quantity to enable stock management at variation level, or leave " -"blank to use the parent product's options." -msgstr "" - -# @ woocommerce -#: post-types/writepanels/variation-admin-html.php:72 -msgid "Regular Price:" -msgstr "Normale Prijs:" - -#: post-types/writepanels/variation-admin-html.php:73 -msgid "Variation price (required)" -msgstr "" - -# @ woocommerce -#: post-types/writepanels/variation-admin-html.php:76 -msgid "Sale Price:" -msgstr "Promotieprijs:" - -# @ woocommerce -#: post-types/writepanels/variation-admin-html.php:76 -#: post-types/writepanels/writepanel-product_data.php:152 -msgid "Schedule" -msgstr "Periode instellen" - -# @ woocommerce -#: post-types/writepanels/variation-admin-html.php:76 -msgid "Cancel schedule" -msgstr "" - -# @ woocommerce -#: post-types/writepanels/variation-admin-html.php:83 -msgid "Sale start date:" -msgstr "" - -# @ woocommerce -#: post-types/writepanels/variation-admin-html.php:84 -#: post-types/writepanels/writepanel-product_data.php:163 -msgctxt "placeholder" -msgid "From…" -msgstr "Van …" - -# @ woocommerce -#: post-types/writepanels/variation-admin-html.php:87 -msgid "Sale end date:" -msgstr "" - -# @ woocommerce -#: post-types/writepanels/variation-admin-html.php:88 -#: post-types/writepanels/writepanel-product_data.php:164 -msgctxt "placeholder" -msgid "To…" -msgstr "Tot …" - -# @ woocommerce -#: post-types/writepanels/variation-admin-html.php:96 -msgid "" -"Enter a weight for this variation or leave blank to use the parent product " -"weight." -msgstr "" -"Voer een gewicht in voor deze variatie of laat deze leeg om het ouder " -"product gewicht te gebruiken." - -# @ woocommerce -#: post-types/writepanels/variation-admin-html.php:104 -msgid "Dimensions (L×W×H)" -msgstr "Afmetingen (LxBxH)" - -# @ woocommerce -#: post-types/writepanels/variation-admin-html.php:115 -msgid "Shipping class:" -msgstr "Verzendklasse:" - -# @ woocommerce -#: post-types/writepanels/variation-admin-html.php:119 -#: post-types/writepanels/variation-admin-html.php:132 -msgid "Same as parent" -msgstr "Zelfde als ouder" - -# @ woocommerce -#: post-types/writepanels/variation-admin-html.php:130 -msgid "Tax class:" -msgstr "BTW-klasse:" - -# @ woocommerce -#: post-types/writepanels/variation-admin-html.php:143 -msgid "File paths:" -msgstr "Bestandspad:" - -#: post-types/writepanels/variation-admin-html.php:143 -msgid "" -"Enter one or more File Paths, one per line, to make this variation a " -"downloadable product, or leave blank." -msgstr "" - -# @ woocommerce -#: post-types/writepanels/variation-admin-html.php:144 -#: post-types/writepanels/writepanel-product_data.php:180 -msgid "File paths/URLs, one per line" -msgstr "" - -# @ woocommerce -#: post-types/writepanels/variation-admin-html.php:145 -#: post-types/writepanels/writepanel-product_data.php:181 -msgid "Choose a file" -msgstr "" - -# @ woocommerce -#: post-types/writepanels/variation-admin-html.php:145 -msgid "Upload" -msgstr "Upload" - -#: post-types/writepanels/variation-admin-html.php:145 -#: post-types/writepanels/writepanel-product_data.php:181 -msgid "Insert file URL" -msgstr "" - -# @ woocommerce -#: post-types/writepanels/variation-admin-html.php:150 -msgid "Download Limit:" -msgstr "Download Limiet:" - -# @ woocommerce -#: post-types/writepanels/variation-admin-html.php:150 -#: post-types/writepanels/writepanel-product_data.php:185 -msgid "Leave blank for unlimited re-downloads." -msgstr "Houdt deze leeg voor ongelimiteerd aantal downloads." - -# @ woocommerce -#: post-types/writepanels/variation-admin-html.php:158 -msgid "Download Expiry:" -msgstr "Download Vervaltijd:" - -# @ woocommerce -#: post-types/writepanels/variation-admin-html.php:158 -#: post-types/writepanels/writepanel-product_data.php:191 -msgid "" -"Enter the number of days before a download link expires, or leave blank." -msgstr "" - -# @ woocommerce -#: post-types/writepanels/variation-admin-html.php:172 -msgid "Enabled" -msgstr "Geactiveerd" - -# @ woocommerce -#: post-types/writepanels/variation-admin-html.php:174 -msgid "" -"Enable this option if access is given to a downloadable file upon purchase " -"of a product" -msgstr "" -"Schakel deze optie in als de aankoop van het product toegang geeft tot een " -"downloadbaar bestand" - -# @ woocommerce -#: post-types/writepanels/variation-admin-html.php:176 -msgid "" -"Enable this option if a product is not shipped or there is no shipping cost" -msgstr "Schakel deze optie in als het product niet verzonden wordt" - -# @ woocommerce -#: post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Coupon description" -msgstr "" - -#: post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Optionally enter a description for this coupon for your reference." -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-coupon_data.php:42 -msgid "Discount type" -msgstr "Kortingstype" - -# @ woocommerce -#: post-types/writepanels/writepanel-coupon_data.php:45 -#, fuzzy -msgid "Value of the coupon." -msgstr "Kortingsbonnen inschakelen" - -# @ woocommerce -#: post-types/writepanels/writepanel-coupon_data.php:51 -msgid "Enable free shipping" -msgstr "Activeer gratis verzending" - -# @ woocommerce -#: post-types/writepanels/writepanel-coupon_data.php:51 -#, php-format -msgid "" -"Check this box if the coupon grants free shipping. The free " -"shipping method must be enabled with the \"must use coupon\" setting " -"checked." -msgstr "" -"Vink aan als deze kortingsbon gratis verzending toestaat (zie Gratis verzending)" - -# @ woocommerce -#: post-types/writepanels/writepanel-coupon_data.php:54 -msgid "Individual use" -msgstr "Individueel gebruik" - -# @ woocommerce -#: post-types/writepanels/writepanel-coupon_data.php:54 -msgid "" -"Check this box if the coupon cannot be used in conjunction with other " -"coupons." -msgstr "" -"Vink aan als deze kortingsbon niet in combinatie met andere kortingsbonnen " -"gebruikt kan worden" - -# @ woocommerce -#: post-types/writepanels/writepanel-coupon_data.php:57 -msgid "Apply before tax" -msgstr "Toepassen vóór BTW" - -# @ woocommerce -#: post-types/writepanels/writepanel-coupon_data.php:57 -msgid "" -"Check this box if the coupon should be applied before calculating cart tax." -msgstr "" -"Vink aan als deze kortingsbon moet worden toegepast voordat de BTW berekend " -"wordt" - -# @ woocommerce -#: post-types/writepanels/writepanel-coupon_data.php:60 -msgid "Exclude sale items" -msgstr "" - -#: post-types/writepanels/writepanel-coupon_data.php:60 -msgid "" -"Check this box if the coupon should not apply to items on sale. Per-item " -"coupons will only work if the item is not on sale. Per-cart coupons will " -"only work if there are no sale items in the cart." -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-coupon_data.php:65 -msgid "Minimum amount" -msgstr "Minimumbedrag" - -# @ woocommerce -#: post-types/writepanels/writepanel-coupon_data.php:65 -msgid "No minimum" -msgstr "Geen minimum" - -# @ woocommerce -#: post-types/writepanels/writepanel-coupon_data.php:65 -msgid "" -"This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "" -"Hier kunt u het minimum subtotaal instellen dat nodig is om deze kortingsbon " -"te kunnen gebruiken." - -# @ woocommerce -#: post-types/writepanels/writepanel-coupon_data.php:88 -msgid "" -"Products which need to be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are discounted." -msgstr "" -"Producten die in de winkelwagen moeten zitten om deze kortingsbon te kunnen " -"gebruiken. Als u voor \"Product Korting\" koos zijn dit de producten die de " -"korting toegewezen krijgen." - -# @ woocommerce -#: post-types/writepanels/writepanel-coupon_data.php:93 -msgid "Exclude products" -msgstr "Uitgesloten producten" - -# @ woocommerce -#: post-types/writepanels/writepanel-coupon_data.php:94 -msgid "Search for a product…" -msgstr "Product zoeken..." - -# @ woocommerce -#: post-types/writepanels/writepanel-coupon_data.php:107 -msgid "" -"Products which must not be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are not discounted." -msgstr "" -"Producten die niet in de winkelwagen mogen zitten om deze kortingsbon te " -"kunnen gebruiken. Als u voor \"Product Korting\" koos zijn dit de producten " -"die geen korting toegewezen krijgen." - -# @ woocommerce -#: post-types/writepanels/writepanel-coupon_data.php:114 -msgid "Product categories" -msgstr "Productcategorieën" - -# @ woocommerce -#: post-types/writepanels/writepanel-coupon_data.php:115 -msgid "Any category" -msgstr "Eender welke categorie" - -# @ woocommerce -#: post-types/writepanels/writepanel-coupon_data.php:123 -msgid "" -"A product must be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will be discounted." -msgstr "" -"Een product moet in deze categorie zitten om kortingsbon te kunnen " -"gebruiken. Als u voor \"Product Korting\" koos zijn het de producten in deze " -"categorie die de korting toegewezen krijgen." - -# @ woocommerce -#: post-types/writepanels/writepanel-coupon_data.php:128 -msgid "Exclude categories" -msgstr "Uitgesloten categorieën" - -# @ woocommerce -#: post-types/writepanels/writepanel-coupon_data.php:129 -msgid "No categories" -msgstr "Geen categorieën" - -# @ woocommerce -#: post-types/writepanels/writepanel-coupon_data.php:137 -msgid "" -"Product must not be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will not be discounted." -msgstr "" -"Een product mag niet in deze categorie zitten om kortingsbon te kunnen " -"gebruiken. Als u voor \"Product Korting\" koos zijn het de producten in deze " -"categorie die geen korting toegewezen krijgen." - -# @ woocommerce -#: post-types/writepanels/writepanel-coupon_data.php:143 -#, fuzzy -msgid "Email restrictions" -msgstr "E-mail Opties" - -# @ woocommerce -#: post-types/writepanels/writepanel-coupon_data.php:143 -#, fuzzy -msgid "No restrictions" -msgstr "Notificaties" - -#: post-types/writepanels/writepanel-coupon_data.php:143 -msgid "" -"List of emails to check against the customer's billing email when an order " -"is placed." -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-coupon_data.php:150 -msgid "Usage limit" -msgstr "Gebruikslimiet" - -# @ woocommerce -#: post-types/writepanels/writepanel-coupon_data.php:150 -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "Ongelimiteerd gebruik" - -# @ woocommerce -#: post-types/writepanels/writepanel-coupon_data.php:150 -msgid "How many times this coupon can be used before it is void." -msgstr "" -"Het aantal keer dat deze kortingsbon gebruikt mag worden voordat hij vervalt" - -# @ woocommerce -#: post-types/writepanels/writepanel-coupon_data.php:156 -msgctxt "placeholder" -msgid "Never expire" -msgstr "Niet vervallen" - -# @ woocommerce -#: post-types/writepanels/writepanel-coupon_data.php:156 -msgid "The date this coupon will expire, YYYY-MM-DD." -msgstr "De datum waarop deze kortingsbon vervalt, JJJJ-MM-DD." - -#: post-types/writepanels/writepanel-coupon_data.php:193 -msgid "" -"Coupon code already exists - customers will use the latest coupon with this " -"code." -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:59 -msgid "Order Details" -msgstr "Bestellingsinfo" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:62 -msgid "Order number" -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:67 -msgid "Customer IP:" -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:74 -msgid "General Details" -msgstr "Algemene Opties" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:76 -msgid "Order status:" -msgstr "Bestelling status:" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:86 -msgid "Order Date:" -msgstr "Besteldatum:" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:87 -msgid "h" -msgstr "h" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:87 -#: settings/settings-init.php:493 -msgid "m" -msgstr "m" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:91 -msgid "Customer:" -msgstr "Klant:" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:131 -msgid "Customer Note:" -msgstr "Klantbericht:" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:132 -msgid "Customer's notes about the order" -msgstr "Notities van de klant over deze bestelling:" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:140 -msgid "Billing Details" -msgstr "Betalingdetails" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:144 -#: post-types/writepanels/writepanel-order_data.php:234 -msgid "First Name" -msgstr "Voornaam" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:148 -#: post-types/writepanels/writepanel-order_data.php:238 -msgid "Last Name" -msgstr "Achternaam" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:175 -#: post-types/writepanels/writepanel-order_data.php:265 -msgid "Select a country…" -msgstr "Selecteer een land…" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:185 -msgid "Phone" -msgstr "Telefoon" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:193 -#: post-types/writepanels/writepanel-order_data.php:195 -#: post-types/writepanels/writepanel-order_data.php:277 -#: post-types/writepanels/writepanel-order_data.php:279 -msgid "Address" -msgstr "Adres" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:195 -msgid "No billing address set." -msgstr "Geen factuuradres ingesteld." - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:208 -msgid "Load billing address" -msgstr "Laad factuuradres" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:230 -msgid "Shipping Details" -msgstr "Verzendingsdetails" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:279 -msgid "No shipping address set." -msgstr "Geen verzendadres ingesteld" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:292 -msgid "Load shipping address" -msgstr "Laad verzendadres" - -#: post-types/writepanels/writepanel-order_data.php:292 -msgid "Copy from billing" -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:339 -msgid "Item" -msgstr "Product" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:344 -#: post-types/writepanels/writepanel-product_data.php:218 -#: settings/settings-tax-rates.php:217 -msgid "Tax Class" -msgstr "BTW-klasse" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:344 -msgid "Tax class for the line item" -msgstr "BTW-klasse voor deze regel" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:347 -msgid "Qty" -msgstr "Aantal" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:349 -#, fuzzy -msgid "Totals" -msgstr "Totaal" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:349 -msgid "Line subtotals are before pre-tax discounts, totals are after." -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:388 -msgid "Delete Lines" -msgstr "Verwijder item" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:390 -msgid "Stock Actions" -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:391 -msgid "Reduce Line Stock" -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:392 -msgid "Increase Line Stock" -msgstr "" - -#: post-types/writepanels/writepanel-order_data.php:396 -#: post-types/writepanels/writepanel-order_data.php:456 -msgid "Apply" -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:402 -msgid "Add item(s)" -msgstr "Item(s) toevoegen" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:403 -msgid "Add fee" -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:434 -msgid "Resend order emails" -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:465 -msgid "Move to Trash" -msgstr "Naar de prullenbak verplaatsen" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:470 -msgid "Save Order" -msgstr "Bestelling opslaan" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:470 -msgid "Save/update the order" -msgstr "Opslaan/bijwerken van de bestelling" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:498 -msgid "Discounts" -msgstr "Kortingen" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:502 -msgid "Cart Discount:" -msgstr "Winkelwagen korting:" - -#: post-types/writepanels/writepanel-order_data.php:502 -msgid "Discounts before tax - calculated by comparing subtotals to totals." -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:510 -msgid "Order Discount:" -msgstr "Bestelling korting:" - -#: post-types/writepanels/writepanel-order_data.php:510 -msgid "Discounts after tax - user defined." -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:543 -msgid "Label:" -msgstr "Label:" - -#: post-types/writepanels/writepanel-order_data.php:544 -msgid "The shipping title the customer sees" -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:551 -msgid "Cost:" -msgstr "Prijs:" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:552 -msgid "(ex. tax)" -msgstr "(excl. BTW)" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:559 -msgid "Method:" -msgstr "Methode:" - -#: post-types/writepanels/writepanel-order_data.php:581 -#: post-types/writepanels/writepanel-order_data.php:583 -#: post-types/writepanels/writepanel-order_data.php:682 -#: post-types/writepanels/writepanel-order_data.php:684 -msgid "Other" -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:597 -msgid "Tax Rows" -msgstr "BTW-rijen" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:622 -msgid "+ Add tax row" -msgstr "+ Voeg regel toe" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:622 -msgid "" -"These rows contain taxes for this order. This allows you to display multiple " -"or compound taxes rather than a single total." -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:626 -msgid "Tax Totals" -msgstr "BTW Totaal" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:630 -msgid "Total tax for line items + fees." -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:652 -#: post-types/writepanels/writepanels-init.php:70 -msgid "Order Totals" -msgstr "Bestellingstotalen" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:656 -msgid "Order Total:" -msgstr "Bestellingstotaal:" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:664 -msgid "Payment Method:" -msgstr "Betalingsmethode:" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:695 -msgid "Calc taxes" -msgstr "Totaal BTW" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_data.php:697 -msgid "Calc totals" -msgstr "Bereken totalen" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_downloads.php:57 -msgid "Choose a downloadable product…" -msgstr "Kies een downloadbaar product..." - -# @ woocommerce -#: post-types/writepanels/writepanel-order_downloads.php:86 -msgid "Grant Access" -msgstr "Toegang Openstellen" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_downloads.php:124 -#, fuzzy -msgid "" -"Could not grant access - the user may already have permission for this file " -"or billing email is not set. Ensure the billing email is set, and the order " -"has been saved." -msgstr "" -"Permissie toestaan mislukt. De gebruiker heeft reeds toegang tot dit bestand." - -# @ woocommerce -#: post-types/writepanels/writepanel-order_downloads.php:147 -msgid "Are you sure you want to revoke access to this download?" -msgstr "Weet u zeker dat u toegang tot deze download wilt intrekken?" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_notes.php:44 -#, php-format -msgid "added %s ago" -msgstr "toegevoegd %s geleden" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_notes.php:44 -msgid "Delete note" -msgstr "Notitie verwijderen" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_notes.php:50 -msgid "There are no notes for this order yet." -msgstr "Er zijn nog geen notities voor deze bestelling." - -# @ woocommerce -#: post-types/writepanels/writepanel-order_notes.php:56 -msgid "Add note" -msgstr "Notitie toevoegen" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_notes.php:62 -msgid "Customer note" -msgstr "Klantbericht" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_notes.php:63 -msgid "Private note" -msgstr "Prive bericht" - -# @ woocommerce -#: post-types/writepanels/writepanel-order_notes.php:65 -#: post-types/writepanels/writepanel-product_data.php:528 -msgid "Add" -msgstr "Toevoegen" - -# @ woocommerce -#: post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations for variable products are defined here." -msgstr "Hier worden variaties voor variable producten bepaald." - -# @ woocommerce -#: post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations" -msgstr "Variaties" - -# @ woocommerce -#: post-types/writepanels/writepanel-product-type-variable.php:64 -msgid "" -"Before adding variations, add and save some attributes on the " -"Attributes tab." -msgstr "" -"Alvorens variaties toe te voegen, moet u eerst enkele eigenschappen " -"instellen via de tab Eigenschappen." - -# @ woocommerce -#: post-types/writepanels/writepanel-product-type-variable.php:66 -msgid "Learn more" -msgstr "Leer meer" - -# @ woocommerce -#: post-types/writepanels/writepanel-product-type-variable.php:73 -#: post-types/writepanels/writepanel-product_data.php:356 -msgid "Close all" -msgstr "Alles sluiten" - -# @ woocommerce -#: post-types/writepanels/writepanel-product-type-variable.php:73 -#: post-types/writepanels/writepanel-product_data.php:356 -msgid "Expand all" -msgstr "Alles uitklappen" - -# @ woocommerce -#: post-types/writepanels/writepanel-product-type-variable.php:74 -msgid "Bulk edit:" -msgstr "Bulk bewerken:" - -#: post-types/writepanels/writepanel-product-type-variable.php:76 -msgid "Toggle "Enabled"" -msgstr "" - -#: post-types/writepanels/writepanel-product-type-variable.php:77 -msgid "Toggle "Downloadable"" -msgstr "" - -#: post-types/writepanels/writepanel-product-type-variable.php:78 -msgid "Toggle "Virtual"" -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-product-type-variable.php:79 -msgid "Delete all variations" -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-product-type-variable.php:80 -msgid "Prices" -msgstr "Prijzen" - -#: post-types/writepanels/writepanel-product-type-variable.php:81 -msgid "Prices increase by (fixed amount or %)" -msgstr "" - -#: post-types/writepanels/writepanel-product-type-variable.php:82 -msgid "Prices decrease by (fixed amount or %)" -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-product-type-variable.php:83 -msgid "Sale prices" -msgstr "Promotieprijzen" - -#: post-types/writepanels/writepanel-product-type-variable.php:84 -msgid "Sale prices increase by (fixed amount or %)" -msgstr "" - -#: post-types/writepanels/writepanel-product-type-variable.php:85 -msgid "Sale prices decrease by (fixed amount or %)" -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-product-type-variable.php:91 -msgid "File Path" -msgstr "Bestandspad" - -# @ woocommerce -#: post-types/writepanels/writepanel-product-type-variable.php:92 -msgid "Download limit" -msgstr "Downloadlimiet" - -# @ woocommerce -#: post-types/writepanels/writepanel-product-type-variable.php:93 -#: post-types/writepanels/writepanel-product_data.php:191 -msgid "Download Expiry" -msgstr "Download Vervaltijd" - -# @ woocommerce -#: post-types/writepanels/writepanel-product-type-variable.php:96 -msgid "Go" -msgstr "Ga" - -# @ woocommerce -#: post-types/writepanels/writepanel-product-type-variable.php:198 -msgid "Add Variation" -msgstr "Variatie toevoegen" - -# @ woocommerce -#: post-types/writepanels/writepanel-product-type-variable.php:200 -msgid "Link all variations" -msgstr "Koppel alle variaties" - -# @ woocommerce -#: post-types/writepanels/writepanel-product-type-variable.php:202 -msgid "Default selections:" -msgstr "Standaardselecties:" - -# @ woocommerce -#: post-types/writepanels/writepanel-product-type-variable.php:215 -msgid "No default" -msgstr "Geen default" - -# @ woocommerce -#: post-types/writepanels/writepanel-product-type-variable.php:304 -msgid "" -"Are you sure you want to link all variations? This will create a new " -"variation for each and every possible combination of variation attributes " -"(max 50 per run)." -msgstr "" -"Weet u zeker dat u alle variaties wilt koppelen? Er zal een nieuwe variatie " -"aangemaakt worden voor elke mogelijke combinatie van eigenschappen (max. 50 " -"per keer)." - -# @ woocommerce -#: post-types/writepanels/writepanel-product-type-variable.php:321 -msgid "variation added" -msgstr "variatie toegevoegd" - -# @ woocommerce -#: post-types/writepanels/writepanel-product-type-variable.php:323 -msgid "variations added" -msgstr "variaties toegevoegd" - -# @ woocommerce -#: post-types/writepanels/writepanel-product-type-variable.php:325 -msgid "No variations added" -msgstr "Geen variaties aangemaakt" - -# @ woocommerce -#: post-types/writepanels/writepanel-product-type-variable.php:348 -msgid "Are you sure you want to remove this variation?" -msgstr "Wilt u deze variatie verwijderen?" - -# @ woocommerce -#: post-types/writepanels/writepanel-product-type-variable.php:403 -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "" -"Weet u zeker dat u alle variaties wilt verwijderen? Dit kan niet ongedaan " -"gemaakt worden." - -# @ woocommerce -#: post-types/writepanels/writepanel-product-type-variable.php:406 -msgid "Last warning, are you sure?" -msgstr "Laatste waarschuwing, weet u het zeker?" - -# @ woocommerce -#: post-types/writepanels/writepanel-product-type-variable.php:442 -#: post-types/writepanels/writepanel-product-type-variable.php:458 -#: post-types/writepanels/writepanel-product-type-variable.php:474 -#: post-types/writepanels/writepanel-product-type-variable.php:490 -#, fuzzy -msgid "Enter a value (fixed or %)" -msgstr "Voer een waarde in" - -# @ woocommerce -#: post-types/writepanels/writepanel-product-type-variable.php:507 -msgid "Enter a value" -msgstr "Voer een waarde in" - -# @ woocommerce -#: post-types/writepanels/writepanel-product-type-variable.php:587 -msgid "Set variation image" -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-product-type-variable.php:631 -msgid "Variable product" -msgstr "Variabel product" - -# @ woocommerce -#: post-types/writepanels/writepanel-product-type-variable.php:697 -#, php-format -msgid "Variation #%s of %s" -msgstr "Variatie #%s van %s" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:43 -msgid "Product Type" -msgstr "Producttype" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:53 -msgid "Virtual products are intangible and aren't shipped." -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:59 -msgid "Downloadable products give access to a file upon purchase." -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:94 -msgid "Linked Products" -msgstr "Gerelateerde producten" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:104 -msgid "Advanced" -msgstr "Geavanceerd" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:125 -msgid "Stock Keeping Unit" -msgstr "Artikel Nummer" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:125 -msgid "" -"SKU refers to a Stock-keeping unit, a unique identifier for each distinct " -"product and service that can be purchased." -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:136 -msgid "Product URL" -msgstr "Product URL" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:136 -msgid "Enter the external URL to the product." -msgstr "Geef een externe URL op." - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:139 -msgid "Button text" -msgstr "Knop tekst" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:139 -msgctxt "placeholder" -msgid "Buy product" -msgstr "Koop Product" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:139 -msgid "This text will be shown on the button linking to the external product." -msgstr "" -"Deze tekst wordt getoond op de knop die linkt naar het externe product." - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:146 -msgid "Regular Price" -msgstr "Normale prijs" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:152 -msgid "Sale Price" -msgstr "Promotieprijs" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:162 -msgid "Sale Price Dates" -msgstr "Promotieperiode" - -# @ woocommerce -# @ default -#: post-types/writepanels/writepanel-product_data.php:165 -#: post-types/writepanels/writepanel-product_data.php:1112 -msgid "Cancel" -msgstr "Annuleren" - -#: post-types/writepanels/writepanel-product_data.php:179 -msgid "File paths (one per line)" -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:185 -msgid "Download Limit" -msgstr "Downloadlimiet" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:205 -msgid "Tax Status" -msgstr "BTW-status" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:207 -msgid "Shipping only" -msgstr "Alleen verzenden" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:208 -msgid "None" -msgstr "Geen" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:239 -msgid "Enable stock management at product level" -msgstr "Voorraadbeheer activeren" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:246 -msgid "" -"Stock quantity. If this is a variable product this value will be used to " -"control stock for all variations, unless you define stock at variation level." -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:257 -msgid "Stock status" -msgstr "Voorraadstatus" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:260 -msgid "" -"Controls whether or not the product is listed as \"in stock\" or \"out of " -"stock\" on the frontend." -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:267 -msgid "Allow Backorders?" -msgstr "Backorders toestaan?" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:268 -msgid "Do not allow" -msgstr "Niet toestaan" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:269 -msgid "Allow, but notify customer" -msgstr "Toestaan, maar klant informeren" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:270 -msgid "Allow" -msgstr "Toestaan" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:271 -msgid "" -"If managing stock, this controls whether or not backorders are allowed for " -"this product and variations. If enabled, stock quantity can go below 0." -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:282 -msgid "Sold Individually" -msgstr "Individueel verkocht" - -#: post-types/writepanels/writepanel-product_data.php:282 -msgid "" -"Enable this to only allow one of this item to be bought in a single order" -msgstr "" -"Schakel in als dit product maar één keer per bestelling gekocht kan worden" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:300 -msgid "Weight in decimal form" -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:311 -msgid "Dimensions" -msgstr "Afmetingen" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:317 -msgid "LxWxH in decimal form" -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:338 -msgid "No shipping class" -msgstr "Geen verzendklasse" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:344 -msgid "Shipping class" -msgstr "Verzendklasse" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:344 -msgid "" -"Shipping classes are used by certain shipping methods to group similar " -"products." -msgstr "" -"Verzendklassen kunnen gebruikt worden om gelijkaardige producten te " -"groeperen." - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:413 -msgid "Select terms" -msgstr "Selecteer termen" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:427 -msgid "Add new" -msgstr "Nieuwe term" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:440 -#, fuzzy -msgid "Pipe (|) separate terms" -msgstr "Scheid verschillende termen met pipes" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:530 -msgid "Custom product attribute" -msgstr "Speciale producteigenschap" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:542 -msgid "Save attributes" -msgstr "Eigenschappen opslaan" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:549 -msgid "Up-Sells" -msgstr "Up-sells" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:564 -msgid "" -"Up-sells are products which you recommend instead of the currently viewed " -"product, for example, products that are more profitable or better quality or " -"more expensive." -msgstr "" -"Up-sells zijn producten die u adviseert in plaats van het huidige product, " -"vb. een product dat meer winst oplevert of van een betere kwaliteit is." - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:566 -msgid "Cross-Sells" -msgstr "Cross-sells" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:581 -msgid "" -"Cross-sells are products which you promote in the cart, based on the current " -"product." -msgstr "" -"Cross-sells zijn producten die u aanbeveelt op basis van de producten in de " -"winkelwagen van de klant." - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:591 -msgid "Choose a grouped product…" -msgstr "Kies een gegroepeerd product …" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:617 -msgid "Grouping" -msgstr "Groeperen" - -#: post-types/writepanels/writepanel-product_data.php:617 -msgid "Set this option to make this product part of a grouped product." -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:637 -msgid "Purchase Note" -msgstr "Aankoopnotitie" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:637 -msgid "Enter an optional note to send the customer after purchase." -msgstr "" -"Voeg een notitie toe die naar de klant verzonden wordt na aankoop " -"(optioneel)." - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:644 -msgid "Menu order" -msgstr "Menuvolgorde" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:644 -msgid "Custom ordering position." -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:652 -msgid "Enable reviews" -msgstr "Sta reviews toe" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:744 -msgid "Product SKU must be unique." -msgstr "Product SKU dient uniek te zijn." - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:1076 -msgid "Catalog/search" -msgstr "Catalogus & zoeken" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:1083 -msgid "Catalog visibility:" -msgstr "Productzichtbaarheid:" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:1099 -msgid "" -"Define the loops this product should be visible in. The product will still " -"be accessible directly." -msgstr "" -"Bepaalt waar het product zichtbaar is. Het product kan nog steeds via een " -"rechtstreekse URL bekeken worden." - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:1105 -msgid "Enable this option to feature this product." -msgstr "Vink aan om het product uit te lichten." - -# @ woocommerce -#: post-types/writepanels/writepanel-product_data.php:1107 -msgid "Featured Product" -msgstr "Uitgelicht product" - -# @ default -#: post-types/writepanels/writepanel-product_data.php:1111 -msgid "OK" -msgstr "OK" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_images.php:43 -#: post-types/writepanels/writepanel-product_images.php:103 -msgid "Delete image" -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_images.php:54 -msgid "Add product gallery images" -msgstr "Productafbeeldingen toevoegen" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_images.php:80 -msgid "Add Images to Product Gallery" -msgstr "Afbeeldingen toevoegen aan de productgalerij" - -# @ woocommerce -#: post-types/writepanels/writepanel-product_images.php:82 -msgid "Add to gallery" -msgstr "Toevoegen aan galerij" - -# @ woocommerce -#: post-types/writepanels/writepanels-init.php:47 -msgid "Product Gallery" -msgstr "Productgalerij" - -# @ woocommerce -#: post-types/writepanels/writepanels-init.php:55 -msgid "Product Short Description" -msgstr "Korte productomschrijving" - -# @ woocommerce -#: post-types/writepanels/writepanels-init.php:64 -msgid "Reviews" -msgstr "Reviews" - -# @ woocommerce -#: post-types/writepanels/writepanels-init.php:68 -msgid "Order Data" -msgstr "Bestellingsdata" - -# @ woocommerce -#: post-types/writepanels/writepanels-init.php:69 -msgid "Order Items" -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanels-init.php:69 -msgid "" -"Note: if you edit quantities or remove items from the order you will need to " -"manually update stock levels." -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanels-init.php:72 -msgid "Downloadable Product Permissions" -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanels-init.php:72 -msgid "" -"Note: Permissions for order items will automatically be granted when the " -"order status changes to processing/completed." -msgstr "" - -# @ woocommerce -#: post-types/writepanels/writepanels-init.php:73 -msgid "Order Actions" -msgstr "Bestellingsacties" - -# @ woocommerce -#: post-types/writepanels/writepanels-init.php:81 -msgid "Coupon Data" -msgstr "Instellingen kortingsbon" - -# @ woocommerce -#: post-types/writepanels/writepanels-init.php:100 -msgid "Coupon code" -msgstr "Code kortingsbon" - -# @ woocommerce -#: post-types/writepanels/writepanels-init.php:101 -msgid "Product name" -msgstr "Productnaam" - -# @ woocommerce -#: post-types/writepanels/writepanels-init.php:185 -msgid "Allow reviews." -msgstr "Sta reviews toe." - -# @ default -#: post-types/writepanels/writepanels-init.php:186 -#, php-format -msgid "" -"Allow trackbacks and pingbacks on this " -"page." -msgstr "" - -# @ default -#: post-types/writepanels/writepanels-init.php:186 -msgid "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" -msgstr "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" - -# @ woocommerce -#: settings/settings-frontend-styles.php:23 -msgid "Styles" -msgstr "Stijlen" - -# @ woocommerce -#: settings/settings-frontend-styles.php:43 -msgid "Primary" -msgstr "Primair" - -# @ woocommerce -#: settings/settings-frontend-styles.php:43 -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "Actieknoppen/prijzen schuifbalk/gelaagde navigatie UI" - -# @ woocommerce -#: settings/settings-frontend-styles.php:44 -msgid "Secondary" -msgstr "Secundair" - -# @ woocommerce -#: settings/settings-frontend-styles.php:44 -msgid "Buttons and tabs" -msgstr "Knoppen en tabbladen" - -# @ woocommerce -#: settings/settings-frontend-styles.php:45 -msgid "Highlight" -msgstr "Markeer" - -# @ woocommerce -#: settings/settings-frontend-styles.php:45 -msgid "Price labels and Sale Flashes" -msgstr "Prijs labels en Koop Flashes" - -# @ woocommerce -#: settings/settings-frontend-styles.php:46 -msgid "Content" -msgstr "Inhoud" - -# @ woocommerce -#: settings/settings-frontend-styles.php:46 -msgid "Your themes page background - used for tab active states" -msgstr "Uw thema's achtergrond - wordt gebruikt voor actieve tab" - -# @ woocommerce -#: settings/settings-frontend-styles.php:47 -msgid "Subtext" -msgstr "Subtekst" - -# @ woocommerce -#: settings/settings-frontend-styles.php:47 -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "" -"Wordt gebruikt voor bepaalde tekst en asides - breadcrumbs, small tekst, enz." - -# @ woocommerce -#: settings/settings-frontend-styles.php:51 -msgid "" -"To edit colours woocommerce/assets/css/woocommerce-base.less " -"and woocommerce.css need to be writable. See the Codex for more " -"information." -msgstr "" -"Om kleuren aan te passen moeten woocommerce/assets/css/woocommerce-" -"base.less en woocommerce.css schrijfbaar zijn. Bekijk de Codex " -"voor meer informatie." - -# @ woocommerce -#: settings/settings-init.php:25 -msgid "General Options" -msgstr "Algemene Opties" - -# @ woocommerce -#: settings/settings-init.php:28 -msgid "Base Location" -msgstr "" - -# @ woocommerce -#: settings/settings-init.php:29 -msgid "" -"This is the base location for your business. Tax rates will be based on this " -"country." -msgstr "Thuisland" - -# @ woocommerce -#: settings/settings-init.php:38 -msgid "Currency" -msgstr "Munteenheid" - -# @ woocommerce -#: settings/settings-init.php:39 -msgid "" -"This controls what currency prices are listed at in the catalog and which " -"currency gateways will take payments in." -msgstr "" -"Dit bepaalt de munteenheid voor de catalogusprijzen en betalingsgateways." - -# @ woocommerce -#: settings/settings-init.php:50 -msgid "Allowed Countries" -msgstr "Toegestane landen" - -# @ woocommerce -#: settings/settings-init.php:51 -msgid "These are countries that you are willing to ship to." -msgstr "Landen waarnaar verzonden wordt" - -# @ woocommerce -#: settings/settings-init.php:59 -msgid "All Countries" -msgstr "Alle landen" - -# @ woocommerce -#: settings/settings-init.php:60 settings/settings-init.php:65 -msgid "Specific Countries" -msgstr "Specifieke landen" - -# @ woocommerce -#: settings/settings-init.php:74 -msgid "Store Notice" -msgstr "Winkel Opmerking" - -# @ woocommerce -#: settings/settings-init.php:75 -msgid "Enable site-wide store notice text" -msgstr "Activeer de \"Demo Winkel\" melding op de site" - -#: settings/settings-init.php:82 -msgid "Store Notice Text" -msgstr "" - -# @ woocommerce -#: settings/settings-init.php:85 -msgid "" -"This is a demo store for testing purposes — no orders shall be " -"fulfilled." -msgstr "" -"Dit is een demowinkel, voor test doeleinden. Bestellingen worden niet " -"afgehandeld." - -# @ woocommerce -#: settings/settings-init.php:93 -msgid "Cart, Checkout and Accounts" -msgstr "Winkelwagen, Afrekenen en Accounts" - -# @ woocommerce -#: settings/settings-init.php:97 -msgid "Enable the use of coupons" -msgstr "Kortingsbonnen inschakelen" - -#: settings/settings-init.php:101 -msgid "Coupons can be applied from the cart and checkout pages." -msgstr "" - -# @ woocommerce -#: settings/settings-init.php:107 -#, fuzzy -msgid "Enable guest checkout" -msgstr "Activeer gast afrekenen (geen account nodig)" - -# @ woocommerce -#: settings/settings-init.php:108 -#, fuzzy -msgid "Allows customers to checkout without creating an account." -msgstr "Sta klanten toe om een vorige bestelling opnieuw te plaatsen" - -# @ woocommerce -#: settings/settings-init.php:117 -msgid "Force secure checkout" -msgstr "Forceer secure checkout" - -# @ woocommerce -#: settings/settings-init.php:123 -msgid "" -"Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -msgstr "" -"Gebruik SSL (HTTPS) op de afreken pagina's (een SSL certificaat is vereist)" - -# @ woocommerce -#: settings/settings-init.php:127 -msgid "Un-force HTTPS when leaving the checkout" -msgstr "Gebruikt geen HTTPS meer bij het verlaten van de afreken pagina's" - -# @ woocommerce -#: settings/settings-init.php:136 -msgid "Registration" -msgstr "Registratie" - -# @ woocommerce -#: settings/settings-init.php:137 -#, fuzzy -msgid "Enable registration on the \"Checkout\" page" -msgstr "Sta registratie toe bij het afrekenen" - -# @ woocommerce -#: settings/settings-init.php:146 -#, fuzzy -msgid "Enable registration on the \"My Account\" page" -msgstr "Sta registratie toe op de pagina “Mijn Account”" - -#: settings/settings-init.php:155 -msgid "Automatically generate username from customer email" -msgstr "" - -#: settings/settings-init.php:164 -msgid "Automatically generate customer password" -msgstr "" - -# @ woocommerce -#: settings/settings-init.php:174 -msgid "Styles and Scripts" -msgstr "Stijlen en Scripts" - -#: settings/settings-init.php:181 -msgid "Scripts" -msgstr "" - -# @ woocommerce -#: settings/settings-init.php:182 -msgid "Enable Lightbox" -msgstr "Activeer WooCommerce Lightbox" - -#: settings/settings-init.php:185 -msgid "" -"Include WooCommerce's lightbox. Product gallery images and the add review " -"form will open in a lightbox." -msgstr "" - -# @ woocommerce -#: settings/settings-init.php:191 -msgid "Enable enhanced country select boxes" -msgstr "Schakel verbeterde selectielijstjes in voor de invoer van landen" - -#: settings/settings-init.php:196 -msgid "This will enable a script allowing the country fields to be searchable." -msgstr "" - -# @ woocommerce -#: settings/settings-init.php:202 -msgid "Downloadable Products" -msgstr "" - -# @ woocommerce -#: settings/settings-init.php:205 -msgid "File Download Method" -msgstr "Downloadmethode" - -# @ woocommerce -#: settings/settings-init.php:206 -msgid "" -"Forcing downloads will keep URLs hidden, but some servers may serve large " -"files unreliably. If supported, X-Accel-Redirect/ X-" -"Sendfile can be used to serve downloads instead (server requires " -"mod_xsendfile)." -msgstr "" - -# @ woocommerce -#: settings/settings-init.php:214 -msgid "Force Downloads" -msgstr "Forceer Downloads" - -# @ woocommerce -#: settings/settings-init.php:215 -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "X-Accel-Redirect/X-Sendfile" - -# @ woocommerce -#: settings/settings-init.php:216 -msgid "Redirect only" -msgstr "Redirect" - -# @ woocommerce -#: settings/settings-init.php:222 -msgid "Access Restriction" -msgstr "Toegangsrestricties" - -# @ woocommerce -#: settings/settings-init.php:223 -msgid "Downloads require login" -msgstr "" - -# @ woocommerce -#: settings/settings-init.php:227 -msgid "This setting does not apply to guest purchases." -msgstr "" - -# @ woocommerce -#: settings/settings-init.php:233 -msgid "Grant access to downloadable products after payment" -msgstr "Geef toegang tot downloadbare producten na betaling" - -# @ woocommerce -#: settings/settings-init.php:237 -msgid "" -"Enable this option to grant access to downloads when orders are \"processing" -"\", rather than \"completed\"." -msgstr "" - -# @ woocommerce -#: settings/settings-init.php:254 -msgid "" -"Note: The shop page has children - child pages will not work if you enable " -"this option." -msgstr "" -"Opmerking: De winkel pagina heeft children - child pagina's zullen niet " -"werken als deze optie geactiveerd is." - -# @ woocommerce -#: settings/settings-init.php:259 -msgid "Page Setup" -msgstr "Pagina-instelling" - -#: settings/settings-init.php:261 -#, php-format -msgid "" -"Set up core WooCommerce pages here, for example the base page. The base page " -"can also be used in your %sproduct permalinks%s." -msgstr "" - -# @ woocommerce -#: settings/settings-init.php:266 -msgid "Shop Base Page" -msgstr "Winkel basispagina" - -# @ woocommerce -#: settings/settings-init.php:267 -msgid "" -"This sets the base page of your shop - this is where your product archive " -"will be." -msgstr "" -"Stel de basispagina van de winkel in, hieronder valt het productarchief." - -# @ woocommerce -#: settings/settings-init.php:277 -msgid "Terms Page ID" -msgstr "Voorwaarden Pagina ID" - -# @ woocommerce -#: settings/settings-init.php:278 -msgid "" -"If you define a \"Terms\" page the customer will be asked if they accept " -"them when checking out." -msgstr "" -"Defineer een \"Algemene Voorwaarden pagina\" . De klant wordt gevraagd deze " -"te accepteren voordat deze een bestelling kan plaatsen." - -# @ woocommerce -#: settings/settings-init.php:290 -msgid "Shop Pages" -msgstr "Winkelpagina's" - -# @ woocommerce -#: settings/settings-init.php:290 -msgid "" -"The following pages need selecting so that WooCommerce knows where they are. " -"These pages should have been created upon installation of the plugin, if not " -"you will need to create them." -msgstr "" -"Volgende pagina's moeten geselecteerd worden zodat WooCommerce ze terug kan " -"vinden. Deze pagina's zouden aangemaakt moeten zijn bij het installeren van " -"WooCommerce, anders moet u ze zelf aanmaken." - -# @ woocommerce -#: settings/settings-init.php:293 -msgid "Cart Page" -msgstr "Winkelwagen Pagina" - -# @ woocommerce -#: settings/settings-init.php:294 -msgid "Page contents: [woocommerce_cart]" -msgstr "Pagina inhoud: [woocommerce_cart]" - -# @ woocommerce -#: settings/settings-init.php:304 -msgid "Checkout Page" -msgstr "Afrekenpagina" - -# @ woocommerce -#: settings/settings-init.php:305 -msgid "Page contents: [woocommerce_checkout]" -msgstr "Pagina inhoud: [woocommerce_checkout]" - -# @ woocommerce -#: settings/settings-init.php:315 -msgid "My Account Page" -msgstr "Mijn Account pagina" - -# @ woocommerce -#: settings/settings-init.php:316 -msgid "Page contents: [woocommerce_my_account]" -msgstr "Pagina inhoud: [woocommerce_my_account]" - -# @ woocommerce -#: settings/settings-init.php:326 -msgid "Edit Address Page" -msgstr "Adres bewerken pagina" - -# @ woocommerce -#: settings/settings-init.php:327 -msgid "Page contents: [woocommerce_edit_address] Parent: \"My Account\"" -msgstr "Pagina inhoud: [woocommerce_edit_address] Ouder: \"Mijn Account\"" - -# @ woocommerce -#: settings/settings-init.php:337 -msgid "Logout Page" -msgstr "" - -# @ woocommerce -#: settings/settings-init.php:338 -msgid "Parent: \"My Account\"" -msgstr "" - -# @ woocommerce -#: settings/settings-init.php:348 -msgid "Lost Password Page" -msgstr "Wachtwoord vergeten pagina" - -# @ woocommerce -#: settings/settings-init.php:349 -msgid "Page contents: [woocommerce_lost_password] Parent: \"My Account\"" -msgstr "Pagina inhoud: [woocommerce_change_password] Ouder: \"Mijn Account\"" - -# @ woocommerce -#: settings/settings-init.php:365 -msgid "Catalog Options" -msgstr "Catalogusopties" - -# @ woocommerce -#: settings/settings-init.php:368 -msgid "Default Product Sorting" -msgstr "Standaard productsortering" - -# @ woocommerce -#: settings/settings-init.php:369 -msgid "This controls the default sort order of the catalog." -msgstr "" -"Deze instelling wordt gebruikt om de sorteer volgorde van de catalogus in te " -"stellen." - -# @ woocommerce -#: settings/settings-init.php:375 -msgid "Default sorting (custom ordering + name)" -msgstr "Standaard sorteervolgorde" - -#: settings/settings-init.php:376 -msgid "Popularity (sales)" -msgstr "" - -#: settings/settings-init.php:377 -msgid "Average Rating" -msgstr "" - -# @ woocommerce -#: settings/settings-init.php:378 -msgid "Sort by most recent" -msgstr "Sorteer op meest recente" - -# @ woocommerce -#: settings/settings-init.php:379 -msgid "Sort by price (asc)" -msgstr "Sorteer op prijs (oplopend)" - -# @ woocommerce -#: settings/settings-init.php:380 -msgid "Sort by price (desc)" -msgstr "Sorteer op prijs (oplopend)" - -# @ woocommerce -#: settings/settings-init.php:386 -msgid "Shop Page Display" -msgstr "Weergave winkelpagina" - -# @ woocommerce -#: settings/settings-init.php:387 -msgid "This controls what is shown on the product archive." -msgstr "" - -# @ woocommerce -#: settings/settings-init.php:393 settings/settings-init.php:408 -msgid "Show products" -msgstr "Toon producten" - -# @ woocommerce -#: settings/settings-init.php:394 settings/settings-init.php:409 -msgid "Show subcategories" -msgstr "Toon subcategorieën" - -# @ woocommerce -#: settings/settings-init.php:395 settings/settings-init.php:410 -msgid "Show both" -msgstr "Toon beide" - -# @ woocommerce -#: settings/settings-init.php:401 -msgid "Default Category Display" -msgstr "Standaard categorieweergave" - -# @ woocommerce -#: settings/settings-init.php:402 -msgid "This controls what is shown on category archives." -msgstr "" - -# @ woocommerce -#: settings/settings-init.php:416 -msgid "Add to cart" -msgstr "" - -#: settings/settings-init.php:417 -msgid "Redirect to the cart page after successful addition" -msgstr "" - -# @ woocommerce -#: settings/settings-init.php:425 -msgid "Enable AJAX add to cart buttons on archives" -msgstr "" - -# @ woocommerce -#: settings/settings-init.php:434 -msgid "" -"The following options affect the fields available on the edit product page." -msgstr "" -"De volgende opties van invloed op de velden die beschikbaar zijn op de " -"pagina productpagina." - -# @ woocommerce -#: settings/settings-init.php:437 -msgid "Product Fields" -msgstr "Productvelden" - -# @ woocommerce -#: settings/settings-init.php:438 -msgid "Enable the SKU field for products" -msgstr "" - -#: settings/settings-init.php:446 -msgid "" -"Enable the weight field for products (some shipping methods " -"may require this)" -msgstr "" - -#: settings/settings-init.php:454 -msgid "" -"Enable the dimension fields for products (some shipping " -"methods may require this)" -msgstr "" - -#: settings/settings-init.php:462 -msgid "" -"Show weight and dimension values on the Additional " -"Information tab" -msgstr "" - -# @ woocommerce -#: settings/settings-init.php:470 -msgid "Weight Unit" -msgstr "Gewichtseenheid" - -# @ woocommerce -#: settings/settings-init.php:471 -msgid "This controls what unit you will define weights in." -msgstr "Dit bepaalt in welke eenheid u het gewicht van een product opgeeft." - -# @ woocommerce -#: settings/settings-init.php:477 -msgid "kg" -msgstr "kg" - -# @ woocommerce -#: settings/settings-init.php:478 -msgid "g" -msgstr "g" - -# @ woocommerce -#: settings/settings-init.php:479 -msgid "lbs" -msgstr "lbs" - -# @ woocommerce -#: settings/settings-init.php:480 -msgid "oz" -msgstr "oz" - -# @ woocommerce -#: settings/settings-init.php:486 -msgid "Dimensions Unit" -msgstr "Afmetingseenheid" - -# @ woocommerce -#: settings/settings-init.php:487 -msgid "This controls what unit you will define lengths in." -msgstr "Dit bepaalt in welke eenheid u afmetingen van een product opgeeft." - -# @ woocommerce -#: settings/settings-init.php:494 -msgid "cm" -msgstr "cm" - -# @ woocommerce -#: settings/settings-init.php:495 -msgid "mm" -msgstr "mm" - -# @ woocommerce -#: settings/settings-init.php:496 -msgid "in" -msgstr "inch" - -# @ woocommerce -#: settings/settings-init.php:497 -msgid "yd" -msgstr "yd" - -# @ woocommerce -#: settings/settings-init.php:503 -msgid "Product Ratings" -msgstr "Productratings" - -# @ woocommerce -#: settings/settings-init.php:504 -msgid "Enable ratings on reviews" -msgstr "" - -# @ woocommerce -#: settings/settings-init.php:514 -msgid "Ratings are required to leave a review" -msgstr "Verplicht sterratings bij het plaatsen van een review" - -# @ woocommerce -#: settings/settings-init.php:524 -msgid "Show \"verified owner\" label for customer reviews" -msgstr "" - -# @ woocommerce -#: settings/settings-init.php:535 -msgid "Pricing Options" -msgstr "Prijsopties" - -# @ woocommerce -#: settings/settings-init.php:535 -msgid "The following options affect how prices are displayed on the frontend." -msgstr "" -"De volgende opties van invloed op de velden die beschikbaar zijn voor de " -"klant." - -# @ woocommerce -#: settings/settings-init.php:538 -msgid "Currency Position" -msgstr "Positie van het valutasymbool" - -# @ woocommerce -#: settings/settings-init.php:539 -msgid "This controls the position of the currency symbol." -msgstr "Dit bepaalt de positie van het valutasymbool." - -# @ woocommerce -#: settings/settings-init.php:545 -msgid "Left" -msgstr "Links" - -# @ woocommerce -#: settings/settings-init.php:546 -msgid "Right" -msgstr "Rechts" - -# @ woocommerce -#: settings/settings-init.php:547 -msgid "Left (with space)" -msgstr "Links (met spatie)" - -# @ woocommerce -#: settings/settings-init.php:548 -msgid "Right (with space)" -msgstr "Rechts (met spatie)" - -# @ woocommerce -#: settings/settings-init.php:554 -msgid "Thousand Separator" -msgstr "Duizendtalscheiding" - -# @ woocommerce -#: settings/settings-init.php:555 -msgid "This sets the thousand separator of displayed prices." -msgstr "" -"Dit stelt het duizendtal-scheidingsteken van de weergegeven prijzen in." - -# @ woocommerce -#: settings/settings-init.php:564 -msgid "Decimal Separator" -msgstr "Decimaalscheiding" - -# @ woocommerce -#: settings/settings-init.php:565 -msgid "This sets the decimal separator of displayed prices." -msgstr "Dit stelt het decimaal-scheidingsteken van de weergegeven prijzen in." - -# @ woocommerce -#: settings/settings-init.php:574 -msgid "Number of Decimals" -msgstr "Aantal decimalen" - -# @ woocommerce -#: settings/settings-init.php:575 -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "Dit bepaalt het aantal decimalen getoond in de getoonde prijzen." - -# @ woocommerce -#: settings/settings-init.php:588 -msgid "Trailing Zeros" -msgstr "Eindnullen" - -# @ woocommerce -#: settings/settings-init.php:589 -msgid "" -"Remove zeros after the decimal point. e.g. $10.00 becomes " -"$10" -msgstr "" -"Verwijder nullen na het decimaalteken (vb: € 10,00 wordt " -"€ 10)" - -# @ woocommerce -#: settings/settings-init.php:597 -msgid "Image Options" -msgstr "Afbeeldingsopties" - -# @ woocommerce -#: settings/settings-init.php:597 -#, php-format -msgid "" -"These settings affect the actual dimensions of images in your catalog - the " -"display on the front-end will still be affected by CSS styles. After " -"changing these settings you may need to regenerate your " -"thumbnails." -msgstr "" -"Deze instellingen zijn van toepassing op de grootte van de afbeeldingen in " -"de catalogus. De grootte van de afbeeldingen zal worden beïnvloed door CSS. " -"Na het aanpassen van de instellingen kan het zijn dat u de miniatuurafbeeldingen opnieuw moet genereren." - -# @ woocommerce -#: settings/settings-init.php:600 -msgid "Catalog Images" -msgstr "Catalogusafbeeldingen" - -# @ woocommerce -#: settings/settings-init.php:601 -msgid "This size is usually used in product listings" -msgstr "Dit formaat wordt meestal gebruikt in product lijsten" - -# @ woocommerce -#: settings/settings-init.php:614 -msgid "Single Product Image" -msgstr "Productafbeelding" - -# @ woocommerce -#: settings/settings-init.php:615 -msgid "This is the size used by the main image on the product page." -msgstr "Dit formaat wordt gebruikt als hoofdafbeelding op een productpagina." - -# @ woocommerce -#: settings/settings-init.php:628 -msgid "Product Thumbnails" -msgstr "Productminiatuur" - -# @ woocommerce -#: settings/settings-init.php:629 -msgid "" -"This size is usually used for the gallery of images on the product page." -msgstr "" -"Dit formaat wordt normaal gebruikt voor een galerij op de productpagina." - -# @ woocommerce -#: settings/settings-init.php:648 -msgid "Inventory Options" -msgstr "Voorraadopties" - -# @ woocommerce -#: settings/settings-init.php:651 -msgid "Manage Stock" -msgstr "Beheer voorraad" - -# @ woocommerce -#: settings/settings-init.php:652 -msgid "Enable stock management" -msgstr "Voorraadbeheer activeren" - -#: settings/settings-init.php:659 -msgid "Hold Stock (minutes)" -msgstr "" - -#: settings/settings-init.php:660 -msgid "" -"Hold stock (for unpaid orders) for x minutes. When this limit is reached, " -"the pending order will be cancelled. Leave blank to disable." -msgstr "" - -# @ woocommerce -#: settings/settings-init.php:673 -msgid "Notifications" -msgstr "Notificaties" - -# @ woocommerce -#: settings/settings-init.php:674 -msgid "Enable low stock notifications" -msgstr "Activeer lage voorraad notificatie." - -# @ woocommerce -#: settings/settings-init.php:683 -msgid "Enable out of stock notifications" -msgstr "Activeer geen voorraad notificatie." - -# @ woocommerce -#: settings/settings-init.php:692 -msgid "Notification Recipient" -msgstr "" - -# @ woocommerce -#: settings/settings-init.php:701 -msgid "Low Stock Threshold" -msgstr "Lage voorraad drempelwaarde" - -# @ woocommerce -#: settings/settings-init.php:715 -msgid "Out Of Stock Threshold" -msgstr "Out-of-stock drempelwaarde" - -# @ woocommerce -#: settings/settings-init.php:729 -msgid "Out Of Stock Visibility" -msgstr "Out-of-stock zichtbaarheid" - -# @ woocommerce -#: settings/settings-init.php:730 -msgid "Hide out of stock items from the catalog" -msgstr "Verberg out-of-stock producten op de catalogus" - -# @ woocommerce -#: settings/settings-init.php:737 -msgid "Stock Display Format" -msgstr "" - -# @ woocommerce -#: settings/settings-init.php:738 -msgid "This controls how stock is displayed on the frontend." -msgstr "Hiermee bepaalt u hoe voorraad wordt weergegeven op de front-end." - -# @ woocommerce -#: settings/settings-init.php:744 -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "Toon altijd de voorraad - bv. \"12 in voorraad\"" - -# @ woocommerce -#: settings/settings-init.php:745 -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "" -"Toon alleen de voorraad als deze laag is - bv. \"Nog 2 op voorraad\" ipv " -"\"In voorraad\"" - -# @ woocommerce -#: settings/settings-init.php:746 -msgid "Never show stock amount" -msgstr "Toon nooit het aantal in voorraad - \"In voorraad\" of \"Uitverkocht\"" - -# @ woocommerce -#: settings/settings-init.php:761 -msgid "Shipping Calculations" -msgstr "Berekening van de verzendkosten" - -# @ woocommerce -#: settings/settings-init.php:762 -msgid "Enable shipping" -msgstr "Verzending activeren" - -# @ woocommerce -#: settings/settings-init.php:770 -msgid "Enable the shipping calculator on the cart page" -msgstr "Voeg de verzendkostencalculator toe aan de winkelwagen" - -# @ woocommerce -#: settings/settings-init.php:779 -msgid "Hide shipping costs until an address is entered" -msgstr "Verberg verzendkosten tot er een adres is ingevoerd." - -# @ woocommerce -#: settings/settings-init.php:788 -msgid "Shipping Method Display" -msgstr "Weergave verzendmogelijkheden" - -# @ woocommerce -#: settings/settings-init.php:789 -msgid "" -"This controls how multiple shipping methods are displayed on the frontend." -msgstr "" -"Hiermee bepaalt u hoe verschillende verzendmogelijkheden worden weergeven op " -"de front-end." - -# @ woocommerce -#: settings/settings-init.php:795 -msgid "Radio buttons" -msgstr "Keuzebolletjes" - -# @ woocommerce -#: settings/settings-init.php:796 -msgid "Select box" -msgstr "Selectielijstje" - -# @ woocommerce -#: settings/settings-init.php:803 -msgid "Shipping Destination" -msgstr "Bestemming van de verzending" - -# @ woocommerce -#: settings/settings-init.php:804 -msgid "Only ship to the users billing address" -msgstr "Alleen verzenden naar betalingsadres" - -# @ woocommerce -#: settings/settings-init.php:813 -msgid "Ship to billing address by default" -msgstr "Standaard verzenden naar het factuuradres" - -# @ woocommerce -#: settings/settings-init.php:822 -msgid "Collect shipping address even when not required" -msgstr "" - -# @ woocommerce -#: settings/settings-init.php:841 -msgid "" -"Installed payment gateways are displayed below. Drag and drop payment " -"gateways to control their display order on the checkout." -msgstr "" -"Uw geïnstalleerde betalingsgateways staan hieronder opgelijst. U kunt de " -"volgorde aanpassen door ze te verslepen." - -# @ woocommerce -#: settings/settings-init.php:862 -msgid "Enable Taxes" -msgstr "Schakel BTW in" - -# @ woocommerce -#: settings/settings-init.php:863 -msgid "Enable taxes and tax calculations" -msgstr "Activeer BTW en belasting berekeningen" - -#: settings/settings-init.php:870 -msgid "Prices Entered With Tax" -msgstr "" - -#: settings/settings-init.php:874 -msgid "" -"This option is important as it will affect how you input prices. Changing it " -"will not update existing products." -msgstr "" - -#: settings/settings-init.php:876 -msgid "Yes, I will enter prices inclusive of tax" -msgstr "" - -#: settings/settings-init.php:877 -msgid "No, I will enter prices exclusive of tax" -msgstr "" - -#: settings/settings-init.php:882 -msgid "Calculate Tax Based On:" -msgstr "" - -#: settings/settings-init.php:884 -msgid "This option determines which address is used to calculate tax." -msgstr "" - -# @ woocommerce -#: settings/settings-init.php:888 -msgid "Customer shipping address" -msgstr "Klant verzendadres" - -# @ woocommerce -#: settings/settings-init.php:889 -msgid "Customer billing address" -msgstr "Klant factuuradres" - -# @ woocommerce -#: settings/settings-init.php:890 settings/settings-init.php:902 -msgid "Shop base address" -msgstr "" - -# @ woocommerce -#: settings/settings-init.php:895 -msgid "Default Customer Address:" -msgstr "" - -#: settings/settings-init.php:897 -msgid "" -"This option determines the customers default address (before they input " -"their own)." -msgstr "" - -# @ woocommerce -#: settings/settings-init.php:901 -msgid "No address" -msgstr "Geen adres" - -# @ woocommerce -#: settings/settings-init.php:907 -msgid "Shipping Tax Class:" -msgstr "" - -#: settings/settings-init.php:908 -msgid "" -"Optionally control which tax class shipping gets, or leave it so shipping " -"tax is based on the cart items themselves." -msgstr "" - -#: settings/settings-init.php:913 -msgid "Shipping tax class based on cart items" -msgstr "" - -# @ woocommerce -#: settings/settings-init.php:918 -msgid "Rounding" -msgstr "Afronding" - -# @ woocommerce -#: settings/settings-init.php:919 -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "Rond BTW af bij subtotalen ipv per regel" - -# @ woocommerce -#: settings/settings-init.php:926 -msgid "Additional Tax Classes" -msgstr "Additionele BTW-schalen" - -#: settings/settings-init.php:927 -msgid "" -"List additonal tax classes below (1 per line). This is in addition to the " -"default Standard Rate. Tax classes can be assigned to products." -msgstr "" - -# @ woocommerce -#: settings/settings-init.php:931 -#, php-format -msgid "Reduced Rate%sZero Rate" -msgstr "Gereduceerd tarief %s Nultarief" - -# @ woocommerce -#: settings/settings-init.php:935 -msgid "Display prices during cart/checkout:" -msgstr "" - -# @ woocommerce -#: settings/settings-init.php:940 -msgid "Including tax" -msgstr "Inclusief BTW" - -# @ woocommerce -#: settings/settings-init.php:941 -msgid "Excluding tax" -msgstr "Exclusief BTW" - -# @ woocommerce -#: settings/settings-init.php:954 -msgid "Email Sender Options" -msgstr "E-mail afzender opties" - -# @ woocommerce -#: settings/settings-init.php:954 -msgid "" -"The following options affect the sender (email address and name) used in " -"WooCommerce emails." -msgstr "" -"De volgende opties zijn gerelateerd aan de afzender (e-mailadres en naam) " -"die gebruikt wordt in WooCommerce e-mails." - -# @ woocommerce -#: settings/settings-init.php:957 -msgid "\"From\" Name" -msgstr "“Van” naam" - -# @ woocommerce -#: settings/settings-init.php:967 -msgid "\"From\" Email Address" -msgstr "“Van” e-mailadres" - -# @ woocommerce -#: settings/settings-init.php:981 -msgid "Email Template" -msgstr "E-mailtemplate" - -# @ woocommerce -#: settings/settings-init.php:981 -#, php-format -msgid "" -"This section lets you customise the WooCommerce emails. Click here to preview your email template. For more " -"advanced control copy woocommerce/templates/emails/ to " -"yourtheme/woocommerce/emails/." -msgstr "" -"Deze sectie wordt gebruikt om WooCommerce e-mails aan te passen. Klik hier om e-mailtemplates te bekijken. Voor meer " -"functies, kopieer woocommerce/templates/emails/ naar " -"yourtheme/woocommerce/emails/." - -# @ woocommerce -#: settings/settings-init.php:984 -msgid "Header Image" -msgstr "Headerafbeelding" - -# @ woocommerce -#: settings/settings-init.php:985 -#, php-format -msgid "" -"Enter a URL to an image you want to show in the email's header. Upload your " -"image using the media uploader." -msgstr "" -"Voeg de URL in voor de e-mail-header. Upload de afbeelding door middel van " -"de media uploader." - -# @ woocommerce -#: settings/settings-init.php:994 -msgid "Email Footer Text" -msgstr "E-mail footertekst" - -# @ woocommerce -#: settings/settings-init.php:995 -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "De tekst verschijnt in de footer van WooCommerce e-mails." - -# @ woocommerce -#: settings/settings-init.php:999 -msgid "Powered by WooCommerce" -msgstr "Powered by WooCommerce" - -# @ woocommerce -#: settings/settings-init.php:1004 -msgid "Base Colour" -msgstr "Basiskleur" - -# @ woocommerce -#: settings/settings-init.php:1005 -msgid "" -"The base colour for WooCommerce email templates. Default #557da1." -msgstr "" -"De tekst kleur voor WooCommerce e-mail templates. Standaard #557da1." - -# @ woocommerce -#: settings/settings-init.php:1014 -msgid "Background Colour" -msgstr "Achtergrondkleur" - -# @ woocommerce -#: settings/settings-init.php:1015 -msgid "" -"The background colour for WooCommerce email templates. Default " -"#f5f5f5." -msgstr "" - -# @ woocommerce -#: settings/settings-init.php:1024 -msgid "Email Body Background Colour" -msgstr "E-mailbericht achtergrondkleur" - -# @ woocommerce -#: settings/settings-init.php:1025 -msgid "The main body background colour. Default #fdfdfd." -msgstr "De bericht achtergrond kleur. Standaard #fdfdfd." - -# @ woocommerce -#: settings/settings-init.php:1034 -msgid "Email Body Text Colour" -msgstr "E-mailbericht tekstkleur" - -# @ woocommerce -#: settings/settings-init.php:1035 -msgid "The main body text colour. Default #505050." -msgstr "De bericht tekst kleur. Standaard #505050." - -# @ woocommerce -#: settings/settings-payment-gateways.php:30 -msgid "Gateway" -msgstr "Gateway" - -# @ woocommerce -#: settings/settings-payment-gateways.php:59 -msgid "Gateway ID" -msgstr "Gateway ID" - -# @ woocommerce -#: settings/settings-shipping-methods.php:23 -msgid "Shipping Methods" -msgstr "Verzendmogelijkheden" - -# @ woocommerce -#: settings/settings-shipping-methods.php:25 -msgid "Drag and drop methods to control their display order." -msgstr "Versleep verzendmethodes om de volgorde te wijzigen." - -# @ woocommerce -#: settings/settings-shipping-methods.php:30 -msgid "Shipping Method" -msgstr "Verzendmethode" - -# @ woocommerce -#: settings/settings-shipping-methods.php:46 -msgid "Method ID" -msgstr "Methode ID" - -#: settings/settings-tax-rates.php:29 -#, php-format -msgid "Tax Rates for the \"%s\" Class" -msgstr "" - -#: settings/settings-tax-rates.php:30 -#, php-format -msgid "" -"Define tax rates for countries and states below. See here " -"for available alpha-2 country codes." -msgstr "" - -#: settings/settings-tax-rates.php:36 -msgid "Country Code" -msgstr "" - -# @ woocommerce -#: settings/settings-tax-rates.php:36 -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "" - -#: settings/settings-tax-rates.php:38 -msgid "State Code" -msgstr "" - -# @ woocommerce -#: settings/settings-tax-rates.php:38 -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "" - -# @ woocommerce -#: settings/settings-tax-rates.php:40 settings/settings-tax-rates.php:217 -msgid "ZIP/Postcode" -msgstr "Postcode" - -#: settings/settings-tax-rates.php:40 -msgid "" -"Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all areas. Wildcards (*) can be used. Ranges for numeric " -"postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "" - -#: settings/settings-tax-rates.php:42 -msgid "" -"Cities for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all cities." -msgstr "" - -# @ woocommerce -#: settings/settings-tax-rates.php:44 -msgid "Rate %" -msgstr "Beoordeel…" - -# @ woocommerce -#: settings/settings-tax-rates.php:44 -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "Voeg een belasting percentage in (maximaal 4 decimalen)" - -# @ woocommerce -#: settings/settings-tax-rates.php:46 -msgid "Tax Name" -msgstr "" - -# @ woocommerce -#: settings/settings-tax-rates.php:46 -msgid "Enter a name for this tax rate." -msgstr "" - -#: settings/settings-tax-rates.php:48 settings/settings-tax-rates.php:217 -msgid "Priority" -msgstr "" - -#: settings/settings-tax-rates.php:48 -msgid "" -"Choose a priority for this tax rate. Only 1 matching rate per priority will " -"be used. To define multiple tax rates for a single area you need to specify " -"a different priority per rate." -msgstr "" - -# @ woocommerce -#: settings/settings-tax-rates.php:50 settings/settings-tax-rates.php:217 -msgid "Compound" -msgstr "Samengesteld" - -# @ woocommerce -#: settings/settings-tax-rates.php:50 -msgid "" -"Choose whether or not this is a compound rate. Compound tax rates are " -"applied on top of other tax rates." -msgstr "" -"Geef aan of dit een samengesteld tarief is. Samengestelde belastingtarieven " -"worden toegepast bovenop andere belastingtarieven." - -# @ woocommerce -#: settings/settings-tax-rates.php:52 -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "Bepaal of dit BTW-tarief ook toegepast wordt op verzendkosten." - -#: settings/settings-tax-rates.php:59 -msgid "Insert row" -msgstr "" - -# @ woocommerce -#: settings/settings-tax-rates.php:60 -msgid "Remove selected row(s)" -msgstr "Verwijder geselecteerde rijen" - -# @ woocommerce -#: settings/settings-tax-rates.php:62 -msgid "Export CSV" -msgstr "Exporteer CSV" - -# @ woocommerce -#: settings/settings-tax-rates.php:63 -msgid "Import CSV" -msgstr "Importeer CSV" - -# @ woocommerce -#: settings/settings-tax-rates.php:163 -msgid "No row(s) selected" -msgstr "Geen rij(en) geselecteerd" - -# @ woocommerce -#: settings/settings-tax-rates.php:217 -msgid "Country Code" -msgstr "Landcode" - -# @ woocommerce -#: settings/settings-tax-rates.php:217 -msgid "State Code" -msgstr "" - -# @ woocommerce -#: settings/settings-tax-rates.php:217 -msgid "Rate %" -msgstr "Waardering %" - -# @ woocommerce -#: settings/settings-tax-rates.php:217 -msgid "Tax Name" -msgstr "" - -# @ woocommerce -#~ msgctxt "page_slug" -#~ msgid "view-order" -#~ msgstr "bekijk-bestelling" - -# @ woocommerce -#~ msgctxt "page_slug" -#~ msgid "change-password" -#~ msgstr "wijzig-wachtwoord" - -# @ woocommerce -#~ msgid "Change Password" -#~ msgstr "Wijzig wachtwoord" - -# @ woocommerce -#~ msgctxt "page_slug" -#~ msgid "pay" -#~ msgstr "betaal" - -# @ woocommerce -#~ msgid "Checkout → Pay" -#~ msgstr "Afrekenen → Betalen" - -# @ woocommerce -#~ msgctxt "page_slug" -#~ msgid "order-received" -#~ msgstr "bestelling-ontvangen" - -# @ woocommerce -#~ msgid "Pay" -#~ msgstr "Betaal" - -# @ woocommerce -#~ msgid "Thanks" -#~ msgstr "Bedankt" - -# @ woocommerce -#~ msgid "Billing Address" -#~ msgstr "Factuuradres" - -# @ woocommerce -#~ msgid "Shipping Address" -#~ msgstr "Verzendadres" - -# @ woocommerce -#~ msgid "Customer emails" -#~ msgstr "Klant e-mails" - -# @ woocommerce -#~ msgid "Any customer" -#~ msgstr "Eender welke klant" - -# @ woocommerce -#~ msgid "" -#~ "Comma separate email addresses to restrict this coupon to specific " -#~ "billing and user emails." -#~ msgstr "" -#~ "Lijst van e-mailadressen van klanten (gescheiden door komma's) waartoe " -#~ "deze kortingsbon beperkt moet worden." - -# @ woocommerce -#~ msgid "Cost" -#~ msgstr "Prijs" - -# @ woocommerce -#~ msgid "Use informal localisation for %s" -#~ msgstr "Gebruik een informele vertaling voor %s" - -#~ msgid "Register using the email address for the username" -#~ msgstr "Registreren met het e-mailadres als gebruikersnaam" - -# @ woocommerce -#~ msgid "Customer Accounts" -#~ msgstr "Klantaccounts" - -# @ woocommerce -#~ msgid "Prevent customers from accessing WordPress admin" -#~ msgstr "Belet klanten toegang tot het WordPress admingedeelte" - -# @ woocommerce -#~ msgid "Clear cart when logging out" -#~ msgstr "Wis de winkelwagen wanneer een klant uitlogt" - -# @ woocommerce -#~ msgid "Styling" -#~ msgstr "Opmaak" - -# @ woocommerce -#, fuzzy -#~ msgid "Enable WooCommerce CSS" -#~ msgstr "Activeer WooCommerce CSS" diff --git a/i18n/languages/woocommerce-admin-nn_NO.mo b/i18n/languages/woocommerce-admin-nn_NO.mo deleted file mode 100644 index d6dd5ce1a23..00000000000 Binary files a/i18n/languages/woocommerce-admin-nn_NO.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-admin-nn_NO.po b/i18n/languages/woocommerce-admin-nn_NO.po deleted file mode 100644 index 586cc7fe2a2..00000000000 --- a/i18n/languages/woocommerce-admin-nn_NO.po +++ /dev/null @@ -1,4915 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce 2.0.0 Admin\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-03-04 09:46:18+00:00\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"PO-Revision-Date: 2013-03-22 12:48+0100\n" -"Last-Translator: Eivind Ødegård \n" -"Language-Team: nn_NO \n" -"X-Poedit-Language: Norwegian Nynorsk\n" -"X-Poedit-Country: NORWAY\n" - -#: admin/importers/importers-init.php:13 -msgid "WooCommerce Tax Rates (CSV)" -msgstr "WooCommerce avgiftssatsar (CSV)" - -#: admin/importers/importers-init.php:13 -msgid "Import tax rates to your store via a csv file." -msgstr "Importer avgiftssatsar til butikken din med ei csv-fil." - -#: admin/importers/tax-rates-importer.php:103 -#: admin/importers/tax-rates-importer.php:186 -#: admin/importers/tax-rates-importer.php:226 -#: admin/importers/tax-rates-importer.php:241 -msgid "Sorry, there has been an error." -msgstr "Det har oppstått ein feil." - -#: admin/importers/tax-rates-importer.php:104 -msgid "The file does not exist, please try again." -msgstr "Fila finst ikkje, prøv ein gong til." - -#: admin/importers/tax-rates-importer.php:187 -msgid "The CSV is invalid." -msgstr "CSV-fila er ugyldig." - -#: admin/importers/tax-rates-importer.php:198 -msgid "Import complete - imported %s tax rates and skipped %s." -msgstr "Importen er ferdig - importerte %s avgiftssatsar og hoppa over %s." - -#: admin/importers/tax-rates-importer.php:208 -msgid "All done!" -msgstr "Ferdig!" - -#: admin/importers/tax-rates-importer.php:208 -msgid "View Tax Rates" -msgstr "Sjå avgiftssatar" - -#: admin/importers/tax-rates-importer.php:259 -msgid "Import Tax Rates" -msgstr "Importer avgiftssatsar" - -#: admin/importers/tax-rates-importer.php:282 -msgid "Hi there! Upload a CSV file containing tax rates to import the contents into your shop. Choose a .csv file to upload, then click \"Upload file and import\"." -msgstr "Hei! last opp ei CSV-fil som inneheld avgiftssatsane du vil bruka i butikken din. Vel ei .csv-fil å lasta opp, og så klikkar du «Last opp fila og importer»." - -#: admin/importers/tax-rates-importer.php:284 -msgid "Tax rates need to be defined with columns in a specific order (10 columns). Click here to download a sample." -msgstr "Du må setja opp avgiftssatsar i kolonnar, og med ei bestemt rekkjefølgje. Klikk her for å lasta ned eit døme." - -#: admin/importers/tax-rates-importer.php:292 -msgid "Before you can upload your import file, you will need to fix the following error:" -msgstr "Før du kan lasta opp importfila di, lyt du retta denne feilen:" - -#: admin/importers/tax-rates-importer.php:301 -msgid "Choose a file from your computer:" -msgstr "Vel ei fil frå datamaskina di:" - -#: admin/importers/tax-rates-importer.php:307 -msgid "Maximum size: %s" -msgstr "Maksimumstorleik: %s" - -#: admin/importers/tax-rates-importer.php:312 -msgid "OR enter path to file:" -msgstr "ELLER skriv inn ei filplassering:" - -#: admin/importers/tax-rates-importer.php:319 -msgid "Delimiter" -msgstr "Skiljeteikn" - -#: admin/importers/tax-rates-importer.php:325 -msgid "Upload file and import" -msgstr "Last opp fila og importer" - -#: admin/includes/duplicate_product.php:23 -msgid "No product to duplicate has been supplied!" -msgstr "Fann ingen varer å klona!" - -#: admin/includes/duplicate_product.php:43 -msgid "Product creation failed, could not find original product:" -msgstr "Klarte ikkje laga produktet, fordi me ikkje fann originalproduktet: " - -#: admin/includes/duplicate_product.php:89 -msgid "(Copy)" -msgstr "(Kopi)" - -#: admin/includes/notice-install.php:6 -msgid "Welcome to WooCommerce – You're almost ready to start selling :)" -msgstr "Velkomen til WooCommerce – Du er nesten klar til å opna butikken :)" - -#: admin/includes/notice-install.php:7 -msgid "Install WooCommerce Pages" -msgstr "Installer WooCommerce-sidene" - -#: admin/includes/notice-install.php:7 -msgid "Skip setup" -msgstr "Hopp over oppsettet" - -#: admin/includes/notice-theme-support.php:6 -msgid "Your theme does not declare WooCommerce support – if you encounter layout issues please read our integration guide or choose a WooCommerce theme :)" -msgstr "Bunaden din stadfestar ikkje at han har WooCommerce-støtte - viss du får vanskar med utforminga, bør du lesa dokumentasjonen vår eller velja ein WooCommerce-bunad." - -#: admin/includes/notice-theme-support.php:7 -msgid "Theme Integration Guide" -msgstr "Bunadinnbyggingsguide" - -#: admin/includes/notice-theme-support.php:7 -msgid "Hide this notice" -msgstr "Gøym denne meldinga" - -#: admin/includes/notice-update.php:6 -msgid "Data Update Required – We just need to update your install to the latest version" -msgstr "Dataoppdatering krevst - me må oppdatera installasjonen din til siste utgåva" - -#: admin/includes/notice-update.php:7 -msgid "Run the updater" -msgstr "Køyr oppdateringa" - -#: admin/includes/notice-update.php:12 -msgid "It is strongly recommended that you backup your database before proceeding. Are you sure you wish to run the updater now?" -msgstr "Du bør absolutt ta ein tryggingskopi av databasen din før du held fram. Er du sikker på at du vil køyra oppdateringa no?" - -#: admin/includes/updates/woocommerce-update-2.0.php:50 -#: admin/woocommerce-admin-init.php:895 -msgctxt "slug" -msgid "product-category" -msgstr "vare-kategori" - -#: admin/includes/updates/woocommerce-update-2.0.php:51 -#: admin/woocommerce-admin-init.php:908 -msgctxt "slug" -msgid "product-tag" -msgstr "vare-merkelapp" - -#: admin/includes/updates/woocommerce-update-2.0.php:59 -msgctxt "slug" -msgid "product" -msgstr "vare" - -#: admin/includes/updates/woocommerce-update-2.0.php:180 -#: admin/woocommerce-admin-install.php:204 -msgctxt "page_slug" -msgid "lost-password" -msgstr "mista-passord" - -#: admin/includes/updates/woocommerce-update-2.0.php:180 -#: admin/woocommerce-admin-install.php:204 -#: admin/woocommerce-admin-status.php:309 -msgid "Lost Password" -msgstr "Mista passord" - -#: admin/includes/welcome.php:33 -msgid "Welcome to WooCommerce" -msgstr "Velkomen til WooCommerce" - -#: admin/includes/welcome.php:128 -msgid "Welcome to WooCommerce %s" -msgstr "Velkomen til WooCommerce %s" - -#: admin/includes/welcome.php:133 -msgid "Thanks, all done!" -msgstr "Takk skal du ha. Me er ferdige!" - -#: admin/includes/welcome.php:135 -msgid "Thank you for updating to the latest version!" -msgstr "Flott at du oppdaterte til siste utgåva!" - -#: admin/includes/welcome.php:137 -msgid "Thanks for installing!" -msgstr "Takk for at du installerte WooCommerce." - -#: admin/includes/welcome.php:139 -msgid "%s WooCommerce %s is more powerful, stable, and secure than ever before. We hope you enjoy it." -msgstr "%s WooCommerce %s er kraftigare, meir stabil og sikrare enn nokon gong før. Me vonar du likar det." - -#: admin/includes/welcome.php:143 -msgid "Version %s" -msgstr "Versjon %s" - -#: admin/includes/welcome.php:146 -#: admin/woocommerce-admin-content.php:41 -#: admin/woocommerce-admin-init.php:86 -#: admin/woocommerce-admin-status.php:252 -msgid "Settings" -msgstr "Innstillingar" - -#: admin/includes/welcome.php:147 -msgid "Docs" -msgstr "Dokumentasjon" - -#: admin/includes/welcome.php:154 -msgid "What's New" -msgstr "Siste nytt" - -#: admin/includes/welcome.php:156 -msgid "Credits" -msgstr "Takk og ære" - -#: admin/includes/welcome.php:179 -msgid "Security in mind" -msgstr "Med tanke for tryggleik" - -#: admin/includes/welcome.php:183 -msgid "Sucuri Safe Plugin" -msgstr "Sucuri Safe-innstikk" - -#: admin/includes/welcome.php:184 -msgid "You will be happy to learn that WooCommerce has been audited and certified by the Sucuri Security team. Whilst there is not much to be seen visually to understand the amount of work that went into this audit, rest assured that your website is powered by one of the most powerful and stable eCommerce plugins available." -msgstr "WooCommerce er gjennomgått og sikra av Sucuri Security-laget. Det kan du ikkje sjå på overflata, men ver sikker på at mykje arbeid har gått med for å sikra at heimesida di køyrer ein av dei kraftigaste og mest stabile ehandelsløysingane som finst." - -#: admin/includes/welcome.php:187 -msgid "A Smoother Admin Experience" -msgstr "Enklare styring" - -#: admin/includes/welcome.php:193 -msgid "New Product Panel" -msgstr "Nytt produktpanel" - -#: admin/includes/welcome.php:194 -msgid "We have revised the product data panel making it cleaner, more streamlined, and more logical. Adding products is a breeze!" -msgstr "Me har gått gjennom varepanelet for å gjera det enklare og meir logisk. No er det lett å leggja til nye varer!" - -#: admin/includes/welcome.php:199 -msgid "Nicer Order Screens" -msgstr "Betre bestillingssider" - -#: admin/includes/welcome.php:200 -msgid "Order pages have had a cleanup, with a more easily scannable interface. We particularly like the new status icons!" -msgstr "Bestillingssidene har fått ei opprydding, med meir lesbar utforming. Me er spesielt glade i dei nye statusikona!" - -#: admin/includes/welcome.php:205 -msgid "Multi-Download Support" -msgstr "Støtte for fleire nedlastingar" - -#: admin/includes/welcome.php:206 -msgid "Products can have multiple downloadable files - purchasers will get access to all the files added." -msgstr "Varer kan ha fleire nedlastbare filer - kundane får tilgang til alle filene når dei kjøper nedlastinga." - -#: admin/includes/welcome.php:211 -msgid "Less Taxing Taxes" -msgstr "Giftfrie avgifter" - -#: admin/includes/welcome.php:217 -msgid "New Tax Input Panel" -msgstr "Ny avgiftsside" - -#: admin/includes/welcome.php:218 -msgid "The tax input pages have been streamlined to make inputting taxes simpler - adding multiple taxes for a single jurisdiction is now much easier using the priority system. There is also CSV import/export support." -msgstr "Me har rydda opp i avgifssidene, slik at det er enklare å leggja til avgifter - og å leggja til fleire avgifter for same området er mykje enklare, takk vere prioriteringssystemet. Me har òg laga import- og eksportløysing frå CSV." - -#: admin/includes/welcome.php:222 -msgid "Improved Tax Options" -msgstr "Betre avgiftsval" - -#: admin/includes/welcome.php:223 -msgid "As requested by some users, we now support taxing the billing address instead of shipping (optional), and we allow you to choose which tax class applies to shipping." -msgstr "Fleire brukarar har spurt om det, og no gjer me det: Du kan bruka avgiftssatsar ut frå fakturaadressa til kunden heller enn fraktadressa, og du kan velja kva avgiftsklasse som skal gjelda for frakt." - -#: admin/includes/welcome.php:228 -msgid "Product Listing Improvements Customers Will Love" -msgstr "Oppdateringar i vareopplistinga" - -#: admin/includes/welcome.php:234 -msgid "New Sorting Options" -msgstr "Nye sorteringsval" - -#: admin/includes/welcome.php:235 -msgid "Customers can now sort products by popularity and ratings." -msgstr "No kan kundane dine sortera varene etter popularitet og vurdering." - -#: admin/includes/welcome.php:240 -msgid "Better Pagination and Result Counts" -msgstr "Betre side- og resultatteljing" - -#: admin/includes/welcome.php:241 -msgid "Numbered pagination has been added to core, and we show the number of results found above the listings." -msgstr "Me har lagt nummerert sideteljing til i kjernen, og me viser talet på søkjeresultat over lista." - -#: admin/includes/welcome.php:246 -msgid "Inline Star Rating Display" -msgstr "Innebygd stjernevurdering" - -#: admin/includes/welcome.php:247 -msgid "We have added star ratings to the catalog which are pulled from reviews." -msgstr "Me har lagt stjernevurderingar til katalogen. Dei blir henta frå fullstendige vurderingar." - -#: admin/includes/welcome.php:255 -msgid "Under the Hood" -msgstr "Under panseret" - -#: admin/includes/welcome.php:259 -msgid "New product classes" -msgstr "Nye produktklasser" - -#: admin/includes/welcome.php:260 -msgid "The product classes have been rewritten and are now factory based. Much more extendable, and easier to query products using the new get_product() function." -msgstr "Produktklassene er omskrivne, og er fabrikkbaserte. Mykje meir utvidbart, og lettare å gjera produkspørjingar med den nye get_product()-funksjonen." - -#: admin/includes/welcome.php:264 -msgid "Capability overhaul" -msgstr "Oppussing eigenskapane" - -#: admin/includes/welcome.php:265 -msgid "More granular capabilities for admin/shop manager roles covering products, orders and coupons." -msgstr "Meir findelte rollefordelingar for styrar og butikkinnehavar, som dekkjer varer, tingingar og kupongar." - -#: admin/includes/welcome.php:269 -msgid "API Improvements" -msgstr "Betra API" - -#: admin/includes/welcome.php:270 -msgid "WC-API now has real endpoints, and we've optimised the gateways API significantly by only loading gateways when needed." -msgstr "WC-API har fått ordentlege sluttpunkt, og me har finstilt portnar-API-ane ved å berre lasta dei portnarane som trengst." - -#: admin/includes/welcome.php:276 -msgid "Cache-friendly cart widgets" -msgstr "Handlekorgprogram som går fint med mellomlager-program" - -#: admin/includes/welcome.php:277 -msgid "Cart widgets and other \"fragments\" are now pulled in via AJAX - this works wonders with static page caching." -msgstr "Handlekorgprogram og andre «fragment» bruker AJAX - det gjer underverk for statisk sidelagring." - -#: admin/includes/welcome.php:281 -msgid "Session handling" -msgstr "Økthandtering" - -#: admin/includes/welcome.php:282 -msgid "PHP SESSIONS have been a problem for many users in the past, so we've developed our own handler using cookies and options to make these more reliable." -msgstr "PHP-økter har vore eit problem for mange brukarar, så me har utvikla vår eiga handtering med infokapslar og val som gjer desse meir pålitelege." - -#: admin/includes/welcome.php:286 -msgid "Retina Ready" -msgstr "Klar for Retina-skjermar" - -#: admin/includes/welcome.php:287 -msgid "All graphics within WC have been optimised for HiDPI displays." -msgstr "All grafikk i WooCommerce er tilpassa HiDPI-skjermar." - -#: admin/includes/welcome.php:294 -msgid "Better stock handling" -msgstr "Betre lagerstyring" - -#: admin/includes/welcome.php:295 -msgid "We have added an option to hold stock for unpaid orders (defaults to 60mins). When this time limit is reached, and the order is not paid for, stock is released and the order is cancelled." -msgstr "Me har lagt til eit val for å halde av lager for ubetalte ordrar (standardtida er 60 minutt). Når denne tidsgrensa er nådd, og tinginga ikkje er betalt, blir reservasjonen sleppt og tinginga kansellert." - -#: admin/includes/welcome.php:299 -msgid "Improved Line-item storage" -msgstr "Betre linje-elementlagring" - -#: admin/includes/welcome.php:300 -msgid "We have changed how order items get stored making them easier (and faster) to access for reporting. Order items are no longer serialised within an order - they are stored within their own table." -msgstr "Me har endra korleis element blir lagra, og gjort dei lettare (og raskare) å henta for rapportering. Ordreelement blir ikkje serialisert lenger i ein ordre - dei er lagra i ein eigen tabell." - -#: admin/includes/welcome.php:304 -msgid "Autoload" -msgstr "Autolast" - -#: admin/includes/welcome.php:305 -msgid "We have setup autoloading for classes - this has dramatically reduced memory usage in 2.0." -msgstr "Me har sett opp autolasting for klasser - dette har redusert minnebruken kraftig i 2.0." - -#: admin/includes/welcome.php:312 -msgid "Go to WooCommerce Settings" -msgstr "Gå til WooCommerce-innstillingane" - -#: admin/includes/welcome.php:330 -msgid "WooCommerce is developed and maintained by a worldwide team of passionate individuals and backed by an awesome developer community. Want to see your name? Contribute to WooCommerce." -msgstr "WooCommerce blir utvikla og vedlikehalde av eit verdsfemnande lag med individ, hjelpt av eit supert utviklingsmiljø. Vil du sjå namnet ditt her? Bidra til WooCommerce." - -#: admin/includes/welcome.php:356 -msgid "View %s" -msgstr "Vis %s" - -#: admin/post-types/product.php:31 -msgid "Make a duplicate from this product" -msgstr "Klon denne vara" - -#: admin/post-types/product.php:32 -msgid "Duplicate" -msgstr "Klon" - -#: admin/post-types/product.php:61 -msgid "Copy to a new draft" -msgstr "Kopier til ny kladd" - -#: admin/post-types/product.php:86 -#: admin/woocommerce-admin-taxonomies.php:297 -msgid "Image" -msgstr "Bilete" - -#: admin/post-types/product.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:372 -#: admin/post-types/writepanels/writepanel-product_data.php:451 -#: admin/woocommerce-admin-attributes.php:232 -#: admin/woocommerce-admin-attributes.php:268 -#: admin/woocommerce-admin-attributes.php:306 -#: admin/woocommerce-admin-attributes.php:329 -#: admin/woocommerce-admin-attributes.php:373 -#: admin/woocommerce-admin-attributes.php:398 -#: admin/woocommerce-admin-init.php:450 -msgid "Name" -msgstr "Namn" - -#: admin/post-types/product.php:91 -#: admin/post-types/product.php:557 -#: admin/post-types/writepanels/variation-admin-html.php:46 -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#: admin/woocommerce-admin-reports.php:2083 -#: admin/woocommerce-admin-reports.php:2119 -msgid "SKU" -msgstr "SKU" - -#: admin/post-types/product.php:94 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:83 -#: admin/woocommerce-admin-content.php:63 -#: admin/woocommerce-admin-reports.php:99 -msgid "Stock" -msgstr "Lager" - -#: admin/post-types/product.php:96 -#: admin/post-types/product.php:568 -#: admin/post-types/product.php:787 -#: admin/woocommerce-admin-functions.php:196 -msgid "Price" -msgstr "Pris" - -#: admin/post-types/product.php:98 -msgid "Categories" -msgstr "Kategoriar" - -#: admin/post-types/product.php:99 -msgid "Tags" -msgstr "Merkelappar" - -#: admin/post-types/product.php:100 -#: admin/post-types/product.php:632 -#: admin/post-types/product.php:904 -#: admin/post-types/writepanels/writepanel-product_data.php:1040 -#: admin/woocommerce-admin-init.php:463 -msgid "Featured" -msgstr "Framheva" - -#: admin/post-types/product.php:101 -#: admin/woocommerce-admin-attributes.php:250 -#: admin/woocommerce-admin-attributes.php:308 -#: admin/woocommerce-admin-attributes.php:385 -msgid "Type" -msgstr "Type" - -#: admin/post-types/product.php:102 -#: admin/post-types/shop_order.php:50 -msgid "Date" -msgstr "Dato" - -#: admin/post-types/product.php:151 -msgid "Edit this item" -msgstr "Endra dette elementet" - -#: admin/post-types/product.php:151 -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#: admin/post-types/writepanels/writepanel-order_data.php:387 -#: admin/post-types/writepanels/writepanel-product_data.php:1043 -#: admin/woocommerce-admin-attributes.php:322 -msgid "Edit" -msgstr "Endra" - -#: admin/post-types/product.php:152 -msgid "Edit this item inline" -msgstr "Endra dette elementet inni" - -#: admin/post-types/product.php:152 -msgid "Quick Edit" -msgstr "Snøggendring" - -#: admin/post-types/product.php:156 -#: admin/post-types/shop_coupon.php:65 -msgid "Restore this item from the Trash" -msgstr "Plukk dette elementet oppatt or papirkorga" - -#: admin/post-types/product.php:156 -#: admin/post-types/shop_coupon.php:65 -msgid "Restore" -msgstr "Gjenopprett" - -#: admin/post-types/product.php:158 -#: admin/post-types/shop_coupon.php:67 -msgid "Move this item to the Trash" -msgstr "Kast dette elementet i papirkorga" - -#: admin/post-types/product.php:158 -#: admin/post-types/shop_coupon.php:67 -msgid "Trash" -msgstr "Papirkorg" - -#: admin/post-types/product.php:160 -#: admin/post-types/shop_coupon.php:69 -msgid "Delete this item permanently" -msgstr "Slett dette elementet for alltid" - -#: admin/post-types/product.php:160 -#: admin/post-types/shop_coupon.php:69 -#: admin/post-types/writepanels/writepanel-order_data.php:463 -msgid "Delete Permanently" -msgstr "Slett for alltid" - -#: admin/post-types/product.php:165 -msgid "Preview “%s”" -msgstr "Førehandsvis “%s”" - -#: admin/post-types/product.php:165 -msgid "Preview" -msgstr "Førehandsvis" - -#: admin/post-types/product.php:167 -msgid "View “%s”" -msgstr "Vis “%s”" - -#: admin/post-types/product.php:167 -#: admin/post-types/shop_order.php:171 -msgid "View" -msgstr "Vis" - -#: admin/post-types/product.php:214 -msgid "Grouped" -msgstr "Gruppert" - -#: admin/post-types/product.php:216 -msgid "External/Affiliate" -msgstr "Ekstern/kommisjon" - -#: admin/post-types/product.php:220 -#: admin/post-types/product.php:407 -#: admin/post-types/writepanels/variation-admin-html.php:168 -#: admin/post-types/writepanels/writepanel-product_data.php:52 -msgid "Virtual" -msgstr "Virtuelt" - -#: admin/post-types/product.php:222 -#: admin/post-types/product.php:403 -#: admin/post-types/writepanels/variation-admin-html.php:166 -#: admin/post-types/writepanels/writepanel-product_data.php:58 -msgid "Downloadable" -msgstr "Nedlasting" - -#: admin/post-types/product.php:224 -msgid "Simple" -msgstr "Enkel" - -#: admin/post-types/product.php:228 -#: admin/post-types/product.php:387 -msgid "Variable" -msgstr "Variabel" - -#: admin/post-types/product.php:251 -msgid "Toggle featured" -msgstr "Framhev" - -#: admin/post-types/product.php:253 -msgid "yes" -msgstr "ja" - -#: admin/post-types/product.php:255 -msgid "no" -msgstr "nei" - -#: admin/post-types/product.php:262 -#: admin/post-types/product.php:641 -#: admin/post-types/product.php:928 -#: admin/post-types/writepanels/writepanel-product_data.php:231 -msgid "In stock" -msgstr "På lager" - -#: admin/post-types/product.php:264 -#: admin/post-types/product.php:642 -#: admin/post-types/product.php:929 -#: admin/post-types/writepanels/writepanel-product_data.php:232 -#: admin/woocommerce-admin-reports.php:2103 -msgid "Out of stock" -msgstr "Tomt" - -#: admin/post-types/product.php:373 -msgid "Show all product types" -msgstr "Vis alle varetypar" - -#: admin/post-types/product.php:381 -#: admin/post-types/writepanels/writepanel-product_data.php:39 -msgid "Grouped product" -msgstr "Gruppert vare" - -#: admin/post-types/product.php:383 -#: admin/post-types/writepanels/writepanel-product_data.php:40 -msgid "External/Affiliate product" -msgstr "Eksternt/kommisjonsprodukt" - -#: admin/post-types/product.php:385 -#: admin/post-types/writepanels/writepanel-product_data.php:38 -msgid "Simple product" -msgstr "Enkel vare" - -#: admin/post-types/product.php:399 -msgid "Show all sub-types" -msgstr "Vis alle undertypar" - -#: admin/post-types/product.php:520 -msgid "[%s with SKU of %s]" -msgstr "[%s med SKU %s]" - -#: admin/post-types/product.php:526 -msgid "[%s with ID of %d]" -msgstr "[%s med ID %d]" - -#: admin/post-types/product.php:552 -#: admin/post-types/product.php:783 -#: admin/post-types/writepanels/writepanels-init.php:46 -#: admin/settings/settings-init.php:518 -msgid "Product Data" -msgstr "Varedata" - -#: admin/post-types/product.php:570 -msgid "Regular price" -msgstr "Vanleg pris" - -#: admin/post-types/product.php:575 -#: admin/post-types/product.php:811 -msgid "Sale" -msgstr "Sal" - -#: admin/post-types/product.php:577 -msgid "Sale price" -msgstr "Tilbodspris" - -#: admin/post-types/product.php:588 -#: admin/post-types/product.php:837 -#: admin/post-types/writepanels/variation-admin-html.php:90 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:273 -msgid "Weight" -msgstr "Vekt" - -#: admin/post-types/product.php:599 -#: admin/post-types/product.php:861 -msgid "L/W/H" -msgstr "L/B/H" - -#: admin/post-types/product.php:601 -#: admin/post-types/product.php:877 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:85 -#: admin/post-types/writepanels/writepanel-product_data.php:286 -msgid "Length" -msgstr "Lengd" - -#: admin/post-types/product.php:602 -#: admin/post-types/product.php:878 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:86 -#: admin/post-types/writepanels/writepanel-product_data.php:287 -#: admin/woocommerce-admin-settings.php:795 -msgid "Width" -msgstr "Breidd" - -#: admin/post-types/product.php:603 -#: admin/post-types/product.php:879 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:87 -#: admin/post-types/writepanels/writepanel-product_data.php:288 -#: admin/woocommerce-admin-settings.php:797 -msgid "Height" -msgstr "Høgd" - -#: admin/post-types/product.php:613 -#: admin/post-types/product.php:885 -msgid "Visibility" -msgstr "Synleg" - -#: admin/post-types/product.php:618 -#: admin/post-types/product.php:891 -msgid "Catalog & search" -msgstr "Katalog & søk" - -#: admin/post-types/product.php:619 -#: admin/post-types/product.php:892 -#: admin/post-types/writepanels/writepanel-product_data.php:1029 -#: admin/woocommerce-admin-content.php:46 -#: admin/woocommerce-admin-settings.php:181 -msgid "Catalog" -msgstr "Katalog" - -#: admin/post-types/product.php:620 -#: admin/post-types/product.php:893 -#: admin/post-types/writepanels/writepanel-product_data.php:1030 -msgid "Search" -msgstr "Søk" - -#: admin/post-types/product.php:621 -#: admin/post-types/product.php:894 -#: admin/post-types/writepanels/writepanel-product_data.php:1031 -msgid "Hidden" -msgstr "Gøymt" - -#: admin/post-types/product.php:636 -#: admin/post-types/product.php:922 -msgid "In stock?" -msgstr "På lager?" - -#: admin/post-types/product.php:657 -#: admin/post-types/product.php:940 -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Manage stock?" -msgstr "Bruk lagerstyring?" - -#: admin/post-types/product.php:661 -#: admin/post-types/product.php:959 -#: admin/post-types/product.php:975 -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "Stock Qty" -msgstr "Lagermengd" - -#: admin/post-types/product.php:792 -#: admin/post-types/product.php:816 -#: admin/post-types/product.php:842 -#: admin/post-types/product.php:866 -#: admin/post-types/product.php:890 -#: admin/post-types/product.php:909 -#: admin/post-types/product.php:927 -#: admin/post-types/product.php:945 -#: admin/post-types/product.php:964 -msgid "— No Change —" -msgstr "— Inga endring —" - -#: admin/post-types/product.php:793 -#: admin/post-types/product.php:817 -#: admin/post-types/product.php:843 -#: admin/post-types/product.php:867 -#: admin/post-types/product.php:965 -msgid "Change to:" -msgstr "Endra til:" - -#: admin/post-types/product.php:794 -#: admin/post-types/product.php:818 -msgid "Increase by (fixed amount or %):" -msgstr "Auk med (fast beløp eller %):" - -#: admin/post-types/product.php:795 -#: admin/post-types/product.php:819 -msgid "Decrease by (fixed amount or %):" -msgstr "Mink med (fast beløp eller %):" - -#: admin/post-types/product.php:805 -#: admin/post-types/product.php:830 -msgid "Enter price" -msgstr "Skriv inn pris" - -#: admin/post-types/product.php:820 -msgid "Decrease regular price by (fixed amount or %):" -msgstr "Senk vanleg pris med (fast beløp eller %):" - -#: admin/post-types/product.php:910 -#: admin/post-types/product.php:946 -#: admin/post-types/shop_order.php:190 -#: admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:260 -msgid "Yes" -msgstr "Ja" - -#: admin/post-types/product.php:911 -#: admin/post-types/product.php:947 -#: admin/post-types/shop_order.php:192 -#: admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:260 -msgid "No" -msgstr "Nei" - -#: admin/post-types/product.php:1175 -msgid "Sort Products" -msgstr "Sorter varer" - -#: admin/post-types/product.php:1214 -msgid "Insert into product" -msgstr "Sett inn i vara" - -#: admin/post-types/product.php:1215 -msgid "Uploaded to this product" -msgstr "Lasta opp til dette produktet" - -#: admin/post-types/shop_coupon.php:25 -msgid "Code" -msgstr "Kode" - -#: admin/post-types/shop_coupon.php:26 -msgid "Coupon type" -msgstr "Kupongtype" - -#: admin/post-types/shop_coupon.php:27 -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Coupon amount" -msgstr "Kupongsum" - -#: admin/post-types/shop_coupon.php:28 -msgid "Description" -msgstr "Skildring" - -#: admin/post-types/shop_coupon.php:29 -msgid "Product IDs" -msgstr "Vare-IDar" - -#: admin/post-types/shop_coupon.php:30 -msgid "Usage / Limit" -msgstr "Bruk / grense" - -#: admin/post-types/shop_coupon.php:31 -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "Expiry date" -msgstr "Utløpsdato" - -#: admin/post-types/shop_coupon.php:56 -msgid "Edit coupon" -msgstr "Endra kupong" - -#: admin/post-types/shop_coupon.php:114 -msgid "%s / %s" -msgstr "%s / %s" - -#: admin/post-types/shop_coupon.php:116 -msgid "%s / ∞" -msgstr "%s / ∞" - -#: admin/post-types/shop_coupon.php:149 -#: admin/post-types/shop_order.php:282 -msgid "Show all statuses" -msgstr "Vis alle statusar" - -#: admin/post-types/shop_order.php:43 -#: admin/settings/settings-payment-gateways.php:29 -#: admin/settings/settings-shipping-methods.php:31 -msgid "Status" -msgstr "Status" - -#: admin/post-types/shop_order.php:44 -msgid "Order" -msgstr "Tinging" - -#: admin/post-types/shop_order.php:45 -msgid "Billing" -msgstr "Fakturering" - -#: admin/post-types/shop_order.php:46 -#: admin/post-types/writepanels/writepanel-order_data.php:536 -#: admin/post-types/writepanels/writepanel-product_data.php:81 -#: admin/settings/settings-tax-rates.php:52 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-content.php:49 -#: admin/woocommerce-admin-settings.php:185 -msgid "Shipping" -msgstr "Frakt" - -#: admin/post-types/shop_order.php:47 -msgid "Order Total" -msgstr "I alt" - -#: admin/post-types/shop_order.php:48 -#: admin/post-types/writepanels/writepanels-init.php:71 -msgid "Order Notes" -msgstr "Notat til ordren" - -#: admin/post-types/shop_order.php:49 -msgid "Customer Notes" -msgstr "Kundemerknader" - -#: admin/post-types/shop_order.php:51 -#: admin/post-types/writepanels/writepanel-order_data.php:386 -#: admin/post-types/writepanels/writepanel-order_data.php:433 -msgid "Actions" -msgstr "Handlingar" - -#: admin/post-types/shop_order.php:95 -#: admin/post-types/writepanels/writepanel-order_data.php:93 -msgid "Guest" -msgstr "Gjest" - -#: admin/post-types/shop_order.php:98 -msgid "Order %s" -msgstr "Tinging %s" - -#: admin/post-types/shop_order.php:98 -msgid "made by" -msgstr "laga av" - -#: admin/post-types/shop_order.php:101 -msgid "Email:" -msgstr "Epost:" - -#: admin/post-types/shop_order.php:104 -msgid "Tel:" -msgstr "Tlf:" - -#: admin/post-types/shop_order.php:114 -#: admin/post-types/shop_order.php:123 -msgid "Via" -msgstr "Via" - -#: admin/post-types/shop_order.php:131 -msgid "Unpublished" -msgstr "Ikkje publisert" - -#: admin/post-types/shop_order.php:133 -msgid "Y/m/d g:i:s A" -msgstr "d.m.Y G:i:s" - -#: admin/post-types/shop_order.php:139 -msgid "%s ago" -msgstr "%s sidan" - -#: admin/post-types/shop_order.php:141 -msgid "Y/m/d" -msgstr "d.m.Y" - -#: admin/post-types/shop_order.php:158 -#: admin/woocommerce-admin-dashboard.php:176 -msgid "Processing" -msgstr "Handsamar" - -#: admin/post-types/shop_order.php:165 -msgid "Complete" -msgstr "Fullført" - -#: admin/post-types/shop_order.php:301 -#: admin/post-types/shop_order.php:326 -msgid "Show all customers" -msgstr "Vis alle kundar" - -#: admin/post-types/writepanels/order-download-permission-html.php:6 -msgid "Revoke Access" -msgstr "Fjern tilgangsløyve" - -#: admin/post-types/writepanels/order-download-permission-html.php:7 -#: admin/post-types/writepanels/variation-admin-html.php:7 -#: admin/post-types/writepanels/writepanel-product_data.php:365 -#: admin/post-types/writepanels/writepanel-product_data.php:444 -#: admin/woocommerce-admin-init.php:452 -msgid "Click to toggle" -msgstr "Klikk for å skru på/av" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -msgid "File %d: %s" -msgstr "Fil %d: %s" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "Lasta ned %s gong" -msgstr[1] "Lasta ned %s gonger" - -#: admin/post-types/writepanels/order-download-permission-html.php:16 -msgid "Downloads Remaining" -msgstr "Nedlastingar att" - -#: admin/post-types/writepanels/order-download-permission-html.php:19 -#: admin/post-types/writepanels/variation-admin-html.php:143 -#: admin/post-types/writepanels/variation-admin-html.php:151 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Unlimited" -msgstr "Uavgrensa" - -#: admin/post-types/writepanels/order-download-permission-html.php:22 -msgid "Access Expires" -msgstr "Tilgangen går ut" - -#: admin/post-types/writepanels/order-download-permission-html.php:23 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Never" -msgstr "Aldri" - -#: admin/post-types/writepanels/order-fee-html.php:10 -msgid "Fee Name" -msgstr "Namn på gebyret" - -#: admin/post-types/writepanels/order-fee-html.php:17 -#: admin/post-types/writepanels/order-item-html.php:84 -msgid "Tax class" -msgstr "Avgiftsklasse" - -#: admin/post-types/writepanels/order-fee-html.php:19 -#: admin/post-types/writepanels/order-tax-html.php:8 -#: admin/post-types/writepanels/writepanel-order_data.php:558 -#: admin/post-types/writepanels/writepanel-order_data.php:663 -#: admin/woocommerce-admin-reports.php:1642 -#: admin/woocommerce-admin-reports.php:2655 -#: admin/woocommerce-admin-reports.php:2664 -#: admin/woocommerce-admin-users.php:90 -#: admin/woocommerce-admin-users.php:112 -msgid "N/A" -msgstr "I/T" - -#: admin/post-types/writepanels/order-fee-html.php:20 -#: admin/post-types/writepanels/writepanel-product_data.php:179 -msgid "Taxable" -msgstr "Skal ha mva" - -#: admin/post-types/writepanels/order-fee-html.php:25 -#: admin/post-types/writepanels/order-item-html.php:91 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:54 -#: admin/post-types/writepanels/writepanel-product_data.php:186 -#: admin/settings/settings-init.php:982 -#: admin/settings/settings-tax-rates.php:29 -#: admin/woocommerce-admin-settings.php:226 -msgid "Standard" -msgstr "Vanleg" - -#: admin/post-types/writepanels/order-fee-html.php:43 -#: admin/post-types/writepanels/order-item-html.php:110 -#: admin/woocommerce-admin-reports.php:1546 -#: admin/woocommerce-admin-reports.php:1599 -#: admin/woocommerce-admin-reports.php:2370 -#: admin/woocommerce-admin-reports.php:2539 -#: admin/woocommerce-admin-reports.php:2617 -msgid "Total" -msgstr "Totalt" - -#: admin/post-types/writepanels/order-item-html.php:9 -msgid "Product ID:" -msgstr "Vare-ID:" - -#: admin/post-types/writepanels/order-item-html.php:12 -msgid "Variation ID:" -msgstr "Variant-ID:" - -#: admin/post-types/writepanels/order-item-html.php:15 -msgid "Product SKU:" -msgstr "Vare-SKU:" - -#: admin/post-types/writepanels/order-item-html.php:33 -msgid "Add meta" -msgstr "Legg til meta" - -#: admin/post-types/writepanels/order-item-html.php:112 -msgid "Subtotal" -msgstr "Subtotal" - -#: admin/post-types/writepanels/order-tax-html.php:6 -msgid "Tax Rate:" -msgstr "MVA/tollsats:" - -#: admin/post-types/writepanels/order-tax-html.php:16 -#: admin/post-types/writepanels/writepanel-order_data.php:627 -msgid "Sales Tax:" -msgstr "Mva varer:" - -#: admin/post-types/writepanels/order-tax-html.php:20 -#: admin/post-types/writepanels/writepanel-order_data.php:635 -msgid "Shipping Tax:" -msgstr "Mva frakt:" - -#: admin/post-types/writepanels/variation-admin-html.php:6 -#: admin/post-types/writepanels/writepanel-product_data.php:364 -#: admin/post-types/writepanels/writepanel-product_data.php:443 -#: admin/woocommerce-admin-init.php:451 -msgid "Remove" -msgstr "Fjern" - -#: admin/post-types/writepanels/variation-admin-html.php:20 -msgid "Any" -msgstr "Einkvar" - -#: admin/post-types/writepanels/variation-admin-html.php:46 -msgid "Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "Skriv inn eit SKU-nummer for denne varianten, eller la feltet stå tomt for å bruka nummeret til opphavsproduktet." - -#: admin/post-types/writepanels/variation-admin-html.php:57 -msgid "Stock Qty:" -msgstr "Lagermengd:" - -#: admin/post-types/writepanels/variation-admin-html.php:57 -msgid "Enter a quantity to enable stock management at variation level, or leave blank to use the parent product's options." -msgstr "Skriv inn ei mengd for å skru på lagerstyring på variantnivå, eller la stå tomt for å bruka vala frå opphavsproduktet." - -#: admin/post-types/writepanels/variation-admin-html.php:66 -msgid "Regular Price:" -msgstr "Vanleg pris:" - -#: admin/post-types/writepanels/variation-admin-html.php:67 -msgid "Variation price (required)" -msgstr "Variantpris (kravd)" - -#: admin/post-types/writepanels/variation-admin-html.php:70 -msgid "Sale Price:" -msgstr "Tilbodspris:" - -#: admin/post-types/writepanels/variation-admin-html.php:70 -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Schedule" -msgstr "Planlegging" - -#: admin/post-types/writepanels/variation-admin-html.php:70 -msgid "Cancel schedule" -msgstr "Avbryt planlegginga" - -#: admin/post-types/writepanels/variation-admin-html.php:77 -msgid "Sale start date:" -msgstr "Salet startar dato:" - -#: admin/post-types/writepanels/variation-admin-html.php:78 -#: admin/post-types/writepanels/writepanel-product_data.php:136 -msgctxt "placeholder" -msgid "From…" -msgstr "Frå…" - -#: admin/post-types/writepanels/variation-admin-html.php:81 -msgid "Sale end date:" -msgstr "Salet sluttar dato:" - -#: admin/post-types/writepanels/variation-admin-html.php:82 -#: admin/post-types/writepanels/writepanel-product_data.php:137 -msgctxt "placeholder" -msgid "To…" -msgstr "Til…" - -#: admin/post-types/writepanels/variation-admin-html.php:90 -msgid "Enter a weight for this variation or leave blank to use the parent product weight." -msgstr "Skriv inn vekt for denne varianten, eller la stå tomt for å bruka vekta til opphavsproduktet." - -#: admin/post-types/writepanels/variation-admin-html.php:98 -msgid "Dimensions (L×W×H)" -msgstr "Storleik (L×B×H)" - -#: admin/post-types/writepanels/variation-admin-html.php:109 -msgid "Shipping class:" -msgstr "Fraktklasse:" - -#: admin/post-types/writepanels/variation-admin-html.php:113 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:53 -msgid "Same as parent" -msgstr "Same som forelderen" - -#: admin/post-types/writepanels/variation-admin-html.php:124 -msgid "Tax class:" -msgstr "Avgiftsklasse:" - -#: admin/post-types/writepanels/variation-admin-html.php:135 -msgid "File paths:" -msgstr "Filstigar:" - -#: admin/post-types/writepanels/variation-admin-html.php:135 -msgid "Enter one or more File Paths, one per line, to make this variation a downloadable product, or leave blank." -msgstr "Skriv inn ei eller fleire filplasseringar, ein per linje, for å gjera denne varianten til eit nedlastbart produkt. Eventuelt kan du la feltet stå tomt." - -#: admin/post-types/writepanels/variation-admin-html.php:136 -#: admin/post-types/writepanels/writepanel-product_data.php:153 -msgid "File paths/URLs, one per line" -msgstr "Filplasseringar/URL, ei per linje" - -#: admin/post-types/writepanels/variation-admin-html.php:137 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Choose a file" -msgstr "Vel ei fil" - -#: admin/post-types/writepanels/variation-admin-html.php:137 -msgid "Upload" -msgstr "Last opp" - -#: admin/post-types/writepanels/variation-admin-html.php:137 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Insert file URL" -msgstr "Set inn fil-URL" - -#: admin/post-types/writepanels/variation-admin-html.php:142 -msgid "Download Limit:" -msgstr "Nedlastingsgrense:" - -#: admin/post-types/writepanels/variation-admin-html.php:142 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Leave blank for unlimited re-downloads." -msgstr "La stå tomt for uavgrensa nedlastingar." - -#: admin/post-types/writepanels/variation-admin-html.php:150 -msgid "Download Expiry:" -msgstr "Nedlastinga går ut:" - -#: admin/post-types/writepanels/variation-admin-html.php:150 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Enter the number of days before a download link expires, or leave blank." -msgstr "Skriv inn kor mange dagar det skal ta før nedlastinga går ut, eller la feltet stå tomt." - -#: admin/post-types/writepanels/variation-admin-html.php:164 -msgid "Enabled" -msgstr "På" - -#: admin/post-types/writepanels/variation-admin-html.php:166 -msgid "Enable this option if access is given to a downloadable file upon purchase of a product" -msgstr "Skru på dette for å gje tilgang til ei nedlastbar fil når kunden kjøper vara" - -#: admin/post-types/writepanels/variation-admin-html.php:168 -msgid "Enable this option if a product is not shipped or there is no shipping cost" -msgstr "Skru på dette viss ei vare ikkje skal sendast, eller det ikkje er nokon fraktkostnad" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Coupon description" -msgstr "Kupongskildring" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Optionally enter a description for this coupon for your reference." -msgstr "Eventuelt skriv ei skildring for denne kupongen for din eigen del." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:42 -msgid "Discount type" -msgstr "Rabattype" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Enter an amount or percentage e.g. 2.99 or 15%" -msgstr "Skriv inn eit beløp eller ein prosentdel, td. 150 eller 10%" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "Enable free shipping" -msgstr "Skru på fri frakt" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "Check this box if the coupon grants free shipping. The free shipping method must be enabled with the \"must use coupon\" setting checked." -msgstr "Hak av her viss kupongen gjev fri frakt. Fri frakt må vera på, med «må bruka kupong»-innstillinga haka av." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "Individual use" -msgstr "Individuell bruk" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "Check this box if the coupon cannot be used in conjunction with other coupons." -msgstr "Hak av her viss rabattkupongen ikkje kan brukast saman med andre kupongar" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "Apply before tax" -msgstr "Ta i bruk før avgifter" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "Check this box if the coupon should be applied before calculating cart tax." -msgstr "Hak av her viss rabattkupongen skal brukast før me reknar ut moms for handlekorga" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "Exclude sale items" -msgstr "Utelat varer som er på sal" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "Check this box if the coupon should not apply to items on sale. Per-item coupons will only work if the item is not on sale. Per-cart coupons will only work if there are no sale items in the cart." -msgstr "Hak av her viss kupongen ikkje skal gjelda varer som er på sal. Kupongar som gjeld per vare vil berre gjelda dersom vara ikkje er på sal. Kupongar som gjeld per handlekorg vil berre verka viss det ikkje er nokon varer på sal i handlekorga." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "Minimum amount" -msgstr "Minstesum" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "No minimum" -msgstr "Ikkje noko minimum" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "Her skriv du inn minste totalbeløp for å kunna bruka rabattkupongen." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:74 -#: admin/woocommerce-admin-taxonomies.php:28 -#: admin/woocommerce-admin-taxonomies.php:122 -msgid "Products" -msgstr "Varer" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:75 -#: admin/post-types/writepanels/writepanel-order_data.php:400 -#: admin/post-types/writepanels/writepanel-product_data.php:504 -#: admin/post-types/writepanels/writepanel-product_data.php:521 -#: admin/woocommerce-admin-reports.php:1229 -msgid "Search for a product…" -msgstr "Søk etter ei vare…" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:89 -msgid "Products which need to be in the cart to use this coupon or, for \"Product Discounts\", which products are discounted." -msgstr "Varer som må vera i handlekorga for at rabattkupongen skal gjelda, eller når det gjeld enkeltvarerabattar: kva varer som er rabatterte." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:94 -msgid "Exclude products" -msgstr "Utelat produkt" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:95 -msgid "Search for a product…" -msgstr "Søk etter ei vare..." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:109 -msgid "Products which must not be in the cart to use this coupon or, for \"Product Discounts\", which products are not discounted." -msgstr "Varer som ikkje kan vera i handlekorga for at rabattkupongen skal gjelda, eller når det gjeld enkeltvarerabattar: kva varer som ikkje har rabatt." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:116 -msgid "Product categories" -msgstr "Varekategoriar" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:117 -msgid "Any category" -msgstr "Alle kategoriar" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:125 -msgid "A product must be in this category for the coupon to remain valid or, for \"Product Discounts\", products in these categories will be discounted." -msgstr "Ei vare må vera i denne kategorien for at rabattkupongen skal gjelda, eller når det gjeld enkeltvarerabattar: varer i desse kategoriane får rabatten." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:130 -msgid "Exclude categories" -msgstr "Utelat kategoriar" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:131 -msgid "No categories" -msgstr "Ingen kategoriar" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:139 -msgid "Product must not be in this category for the coupon to remain valid or, for \"Product Discounts\", products in these categories will not be discounted." -msgstr "Ei vare kan ikkje vera i denne kategorien for at rabattkupongen skal gjelda, eller når det gjeld enkeltvarerabattar: varer i desse kategoriane er ikkje rabatterte." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "Customer emails" -msgstr "Kunde-epostar" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "Any customer" -msgstr "Alle kundar" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "Comma separate email addresses to restrict this coupon to specific billing and user emails." -msgstr "Skil epostadressene med komma for å avgrensa denne rabattkupongen til visse epostar." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "Usage limit" -msgstr "Bruksavgrensing" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "Uavgrensa bruk" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "How many times this coupon can be used before it is void." -msgstr "Kor mange gonger denne rabattkupongen kan brukast før han blir ugyldig" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgctxt "placeholder" -msgid "Never expire" -msgstr "Går aldri ut" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "The date this coupon will expire, YYYY-MM-DD." -msgstr "Datoen denne rabattkupongen går ut, på forma ÅÅÅÅ-MM-DD" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:195 -msgid "Coupon code already exists - customers will use the latest coupon with this code." -msgstr "Kupongkoden finst frå før - kundane vil bruka den siste kupongen med denne koden." - -#: admin/post-types/writepanels/writepanel-order_data.php:59 -msgid "Order Details" -msgstr "Tingingsdetaljar" - -#: admin/post-types/writepanels/writepanel-order_data.php:62 -msgid "Order number" -msgstr "Ordrenummer" - -#: admin/post-types/writepanels/writepanel-order_data.php:67 -msgid "Customer IP:" -msgstr "IP-adressa åt kunden:" - -#: admin/post-types/writepanels/writepanel-order_data.php:74 -msgid "General Details" -msgstr "Almenne detaljar" - -#: admin/post-types/writepanels/writepanel-order_data.php:76 -msgid "Order status:" -msgstr "Ordrestatus:" - -#: admin/post-types/writepanels/writepanel-order_data.php:86 -msgid "Order Date:" -msgstr "Tingingsdato:" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -msgid "h" -msgstr "h" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#: admin/settings/settings-init.php:577 -msgid "m" -msgstr "m" - -#: admin/post-types/writepanels/writepanel-order_data.php:91 -msgid "Customer:" -msgstr "Kunde:" - -#: admin/post-types/writepanels/writepanel-order_data.php:131 -msgid "Customer Note:" -msgstr "Kundemerknad: " - -#: admin/post-types/writepanels/writepanel-order_data.php:132 -msgid "Customer's notes about the order" -msgstr "Kunden sine merknader om tinginga" - -#: admin/post-types/writepanels/writepanel-order_data.php:140 -msgid "Billing Details" -msgstr "Fakturadetaljar" - -#: admin/post-types/writepanels/writepanel-order_data.php:144 -#: admin/post-types/writepanels/writepanel-order_data.php:234 -msgid "First Name" -msgstr "Førenamn" - -#: admin/post-types/writepanels/writepanel-order_data.php:148 -#: admin/post-types/writepanels/writepanel-order_data.php:238 -msgid "Last Name" -msgstr "Etternamn" - -#: admin/post-types/writepanels/writepanel-order_data.php:152 -#: admin/post-types/writepanels/writepanel-order_data.php:242 -#: admin/woocommerce-admin-users.php:155 -#: admin/woocommerce-admin-users.php:204 -msgid "Company" -msgstr "Selskap" - -#: admin/post-types/writepanels/writepanel-order_data.php:156 -#: admin/post-types/writepanels/writepanel-order_data.php:246 -#: admin/woocommerce-admin-users.php:159 -#: admin/woocommerce-admin-users.php:208 -msgid "Address 1" -msgstr "Adresselinje 1" - -#: admin/post-types/writepanels/writepanel-order_data.php:160 -#: admin/post-types/writepanels/writepanel-order_data.php:250 -#: admin/woocommerce-admin-users.php:163 -#: admin/woocommerce-admin-users.php:212 -msgid "Address 2" -msgstr "Adresselinje 2" - -#: admin/post-types/writepanels/writepanel-order_data.php:164 -#: admin/post-types/writepanels/writepanel-order_data.php:254 -#: admin/settings/settings-tax-rates.php:42 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-users.php:167 -#: admin/woocommerce-admin-users.php:216 -msgid "City" -msgstr "Poststad" - -#: admin/post-types/writepanels/writepanel-order_data.php:168 -#: admin/post-types/writepanels/writepanel-order_data.php:258 -#: admin/woocommerce-admin-users.php:171 -#: admin/woocommerce-admin-users.php:220 -msgid "Postcode" -msgstr "Postnummer" - -#: admin/post-types/writepanels/writepanel-order_data.php:172 -#: admin/post-types/writepanels/writepanel-order_data.php:262 -#: admin/woocommerce-admin-users.php:179 -#: admin/woocommerce-admin-users.php:228 -msgid "Country" -msgstr "Land" - -#: admin/post-types/writepanels/writepanel-order_data.php:175 -#: admin/post-types/writepanels/writepanel-order_data.php:265 -msgid "Select a country…" -msgstr "Vel land…" - -#: admin/post-types/writepanels/writepanel-order_data.php:178 -#: admin/post-types/writepanels/writepanel-order_data.php:268 -#: admin/woocommerce-admin-users.php:175 -#: admin/woocommerce-admin-users.php:224 -msgid "State/County" -msgstr "Delstat/land" - -#: admin/post-types/writepanels/writepanel-order_data.php:182 -#: admin/woocommerce-admin-users.php:187 -msgid "Email" -msgstr "Epost" - -#: admin/post-types/writepanels/writepanel-order_data.php:185 -msgid "Phone" -msgstr "Telefon" - -#: admin/post-types/writepanels/writepanel-order_data.php:193 -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#: admin/post-types/writepanels/writepanel-order_data.php:277 -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "Address" -msgstr "Adresse" - -#: admin/post-types/writepanels/writepanel-order_data.php:195 -msgid "No billing address set." -msgstr "Du har ikkje skrive noko fakturaadresse." - -#: admin/post-types/writepanels/writepanel-order_data.php:208 -msgid "Load billing address" -msgstr "Hent fakturaadressa til kunden" - -#: admin/post-types/writepanels/writepanel-order_data.php:230 -msgid "Shipping Details" -msgstr "Fraktdetaljar" - -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "No shipping address set." -msgstr "Du har ikkje skrive noko fraktadresse." - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Load shipping address" -msgstr "Hent fraktadressa til kunden" - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Copy from billing" -msgstr "Kopier frå faktura" - -#: admin/post-types/writepanels/writepanel-order_data.php:339 -msgid "Item" -msgstr "Element" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#: admin/post-types/writepanels/writepanel-product_data.php:191 -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Class" -msgstr "Avgiftsklasse" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -msgid "Tax class for the line item" -msgstr "Avgiftsklasse for varelinja" - -#: admin/post-types/writepanels/writepanel-order_data.php:347 -msgid "Qty" -msgstr "Mengd" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -msgid "Cost" -msgstr "Kostnad" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -msgid "Line subtotals are before pre-tax discounts, totals are after." -msgstr "Subtotalar pr. linje er før rabattar u.mva, summane er etter rabattar." - -#: admin/post-types/writepanels/writepanel-order_data.php:352 -#: admin/settings/settings-tax-rates.php:387 -#: admin/settings/settings-tax-rates.php:466 -#: admin/woocommerce-admin-content.php:48 -#: admin/woocommerce-admin-settings.php:184 -msgid "Tax" -msgstr "Avgift" - -#: admin/post-types/writepanels/writepanel-order_data.php:388 -msgid "Delete Lines" -msgstr "Slett linjer" - -#: admin/post-types/writepanels/writepanel-order_data.php:390 -msgid "Stock Actions" -msgstr "Lagerhandlingar" - -#: admin/post-types/writepanels/writepanel-order_data.php:391 -msgid "Reduce Line Stock" -msgstr "Mink linjelagermengda" - -#: admin/post-types/writepanels/writepanel-order_data.php:392 -msgid "Increase Line Stock" -msgstr "Auk linjelagermengda" - -#: admin/post-types/writepanels/writepanel-order_data.php:396 -#: admin/post-types/writepanels/writepanel-order_data.php:456 -msgid "Apply" -msgstr "Bruk" - -#: admin/post-types/writepanels/writepanel-order_data.php:402 -msgid "Add item(s)" -msgstr "Legg til element" - -#: admin/post-types/writepanels/writepanel-order_data.php:403 -msgid "Add fee" -msgstr "Legg til gebyr" - -#: admin/post-types/writepanels/writepanel-order_data.php:434 -msgid "Resend order emails" -msgstr "Send tingings-epost på nytt" - -#: admin/post-types/writepanels/writepanel-order_data.php:465 -msgid "Move to Trash" -msgstr "Flytt til papirkorga" - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save Order" -msgstr "Lagra tinginga" - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save/update the order" -msgstr "Lagra/oppdater tinginga" - -#: admin/post-types/writepanels/writepanel-order_data.php:495 -msgid "Discounts" -msgstr "Rabattar" - -#: admin/post-types/writepanels/writepanel-order_data.php:499 -msgid "Cart Discount:" -msgstr "Rabatt på handlekorga:" - -#: admin/post-types/writepanels/writepanel-order_data.php:499 -msgid "Discounts before tax - calculated by comparing subtotals to totals." -msgstr "Rabattar før mva - rekna ut ved å samanlikna subtotal med sluttsum." - -#: admin/post-types/writepanels/writepanel-order_data.php:507 -msgid "Order Discount:" -msgstr "Rabatt på tinginga:" - -#: admin/post-types/writepanels/writepanel-order_data.php:507 -msgid "Discounts after tax - user defined." -msgstr "Rabattar etter mva - brukardefinert." - -#: admin/post-types/writepanels/writepanel-order_data.php:540 -msgid "Label:" -msgstr "Etikett:" - -#: admin/post-types/writepanels/writepanel-order_data.php:541 -msgid "The shipping title the customer sees" -msgstr "Frakttittelen som kunden ser" - -#: admin/post-types/writepanels/writepanel-order_data.php:548 -msgid "Cost:" -msgstr "Kostnad:" - -#: admin/post-types/writepanels/writepanel-order_data.php:549 -msgid "(ex. tax)" -msgstr "(u/mva)" - -#: admin/post-types/writepanels/writepanel-order_data.php:556 -msgid "Method:" -msgstr "Metode:" - -#: admin/post-types/writepanels/writepanel-order_data.php:578 -#: admin/post-types/writepanels/writepanel-order_data.php:580 -#: admin/post-types/writepanels/writepanel-order_data.php:679 -#: admin/post-types/writepanels/writepanel-order_data.php:681 -msgid "Other" -msgstr "Annan" - -#: admin/post-types/writepanels/writepanel-order_data.php:594 -msgid "Tax Rows" -msgstr "Avgiftsrader" - -#: admin/post-types/writepanels/writepanel-order_data.php:619 -msgid "+ Add tax row" -msgstr "+ Legg til ny avgiftsrad" - -#: admin/post-types/writepanels/writepanel-order_data.php:619 -msgid "These rows contain taxes for this order. This allows you to display multiple or compound taxes rather than a single total." -msgstr "Desse radene inneheld avgiftene for denne tinginga. Det gjer at du kan visa fleire ulike avgifter eller toppsatsar i staden for ein samla sum." - -#: admin/post-types/writepanels/writepanel-order_data.php:623 -msgid "Tax Totals" -msgstr "Avgifter i alt" - -#: admin/post-types/writepanels/writepanel-order_data.php:627 -msgid "Total tax for line items + fees." -msgstr "Total mva for linjeelement + gebyr" - -#: admin/post-types/writepanels/writepanel-order_data.php:649 -#: admin/post-types/writepanels/writepanels-init.php:70 -msgid "Order Totals" -msgstr "Ordretotal" - -#: admin/post-types/writepanels/writepanel-order_data.php:653 -msgid "Order Total:" -msgstr "I alt:" - -#: admin/post-types/writepanels/writepanel-order_data.php:661 -msgid "Payment Method:" -msgstr "Betalingsmåte:" - -#: admin/post-types/writepanels/writepanel-order_data.php:692 -msgid "Calc taxes" -msgstr "Rekn ut avgifter" - -#: admin/post-types/writepanels/writepanel-order_data.php:694 -msgid "Calc totals" -msgstr "Rekn ut sum" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:57 -msgid "Choose a downloadable product…" -msgstr "Vel ei nedlasting…" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:87 -msgid "Grant Access" -msgstr "Gje tilgangsløyve" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:125 -msgid "Could not grant access - the user may already have permission for this file or billing email is not set. Ensure the billing email is set, and the order has been saved." -msgstr "Greidde ikkje gje tilgangsløyve. Kunden kan allereie ha tilgangsløyve, eller fakturaeposten er ikkje sett. Pass på at kunden har fakturaepost, og at tinginga er lagra." - -#: admin/post-types/writepanels/writepanel-order_downloads.php:148 -msgid "Are you sure you want to revoke access to this download?" -msgstr "Er du sikker på at du vil trekkja tilgangsløyvet til denne nedlastinga?" - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -msgid "added %s ago" -msgstr "lagt til for %s sidan" - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -msgid "Delete note" -msgstr "Slett merknaden" - -#: admin/post-types/writepanels/writepanel-order_notes.php:50 -msgid "There are no notes for this order yet." -msgstr "Det er ingen merknader for denne tinginga enno." - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "Add note" -msgstr "Legg til merknad" - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "Add a note for your reference, or add a customer note (the user will be notified)." -msgstr "Legg til ein merknad til deg sjølv, eller ein kundemerknad (kunden vil få melding om han)." - -#: admin/post-types/writepanels/writepanel-order_notes.php:62 -msgid "Customer note" -msgstr "Kundemerknad" - -#: admin/post-types/writepanels/writepanel-order_notes.php:63 -msgid "Private note" -msgstr "Privat merknad" - -#: admin/post-types/writepanels/writepanel-order_notes.php:65 -#: admin/post-types/writepanels/writepanel-product_data.php:482 -msgid "Add" -msgstr "Legg til" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations for variable products are defined here." -msgstr "Her set du opp variantar for varer som har det." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations" -msgstr "Variantar" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:65 -msgid "Before adding variations, add and save some attributes on the Attributes tab." -msgstr "Før du legg til variantar, må du lagra nokre eigenskapar under Eigenskapar-fana." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:67 -msgid "Learn more" -msgstr "Lær meir" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Close all" -msgstr "Lukk alle" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Expand all" -msgstr "Utvid alle" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:75 -msgid "Bulk edit:" -msgstr "Masseendring:" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:77 -msgid "Toggle "Enabled"" -msgstr "Skru "på"" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:78 -msgid "Toggle "Downloadable"" -msgstr "Skru på "nedlasting"" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:79 -msgid "Toggle "Virtual"" -msgstr "Skru på "Virtuelt"" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:80 -msgid "Delete all variations" -msgstr "Slett alle variantane" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:81 -msgid "Prices" -msgstr "Prisar" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:82 -msgid "Sale prices" -msgstr "Tilbodsprisar" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:88 -msgid "File Path" -msgstr "Filplassering" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:89 -msgid "Download limit" -msgstr "Nedlastingsgrense" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:90 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Download Expiry" -msgstr "Nedlastinga går ut" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:93 -msgid "Go" -msgstr "Gå" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:193 -msgid "Add Variation" -msgstr "Legg til variant" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:195 -msgid "Link all variations" -msgstr "Lenk alle variantane" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:197 -msgid "Default selections:" -msgstr "Standardval:" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:210 -msgid "No default" -msgstr "Ingen standard" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:293 -msgid "Are you sure you want to link all variations? This will create a new variation for each and every possible combination of variation attributes (max 50 per run)." -msgstr "Er du sikker på at du vil lenka alle variantar? Då lagar du ein ny variant for kvar moglege kombinasjon av varianteigenskapar (maks 50 pr. omgang)." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:310 -msgid "variation added" -msgstr "Varianten er lagt til" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:312 -msgid "variations added" -msgstr "Variantane er lagde til" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:314 -msgid "No variations added" -msgstr "Du har ikkje lagt til nokon variantar" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:337 -msgid "Are you sure you want to remove this variation?" -msgstr "Er du sikker på at du vil fjerna denne varianten?" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:393 -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "Er du sikker på at du vil sletta alle variantar? Du kan ikkje angra etterpå." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:396 -msgid "Last warning, are you sure?" -msgstr "Siste åtvaring: Er du sikker?" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:433 -msgid "Enter a value" -msgstr "Skriv inn ein verdi" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:511 -#: admin/woocommerce-admin-taxonomies.php:62 -#: admin/woocommerce-admin-taxonomies.php:154 -msgid "Choose an image" -msgstr "Vel eit bilete" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:513 -msgid "Set variation image" -msgstr "Set variantbilete" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:557 -msgid "Variable product" -msgstr "Variabelt produkt" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:623 -msgid "Variation #%s of %s" -msgstr "Variant nr %s av %s" - -#: admin/post-types/writepanels/writepanel-product_data.php:43 -msgid "Product Type" -msgstr "Varetype" - -#: admin/post-types/writepanels/writepanel-product_data.php:53 -msgid "Virtual products are intangible and aren't shipped." -msgstr "Virtuelle produkt er ikkje fysiske, og blir ikkje frakta." - -#: admin/post-types/writepanels/writepanel-product_data.php:59 -msgid "Downloadable products give access to a file upon purchase." -msgstr "Nedlastingsprodukt gjev tilgang til ei fil når dei er kjøpte." - -#: admin/post-types/writepanels/writepanel-product_data.php:77 -#: admin/woocommerce-admin-content.php:44 -#: admin/woocommerce-admin-settings.php:180 -msgid "General" -msgstr "Generelt" - -#: admin/post-types/writepanels/writepanel-product_data.php:79 -#: admin/woocommerce-admin-content.php:47 -#: admin/woocommerce-admin-settings.php:183 -msgid "Inventory" -msgstr "Lager" - -#: admin/post-types/writepanels/writepanel-product_data.php:83 -msgid "Linked Products" -msgstr "Lenka varer" - -#: admin/post-types/writepanels/writepanel-product_data.php:85 -#: admin/woocommerce-admin-attributes.php:298 -#: admin/woocommerce-admin-init.php:66 -msgid "Attributes" -msgstr "Attributtar" - -#: admin/post-types/writepanels/writepanel-product_data.php:87 -msgid "Advanced" -msgstr "Avansert" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "Stock Keeping Unit" -msgstr "Stock Keeping Unit" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "SKU refers to a Stock-keeping unit, a unique identifier for each distinct product and service that can be purchased." -msgstr "SKU tyder Stock-keeping unit, eit unikt nummer for kvar einskild vare og tenest som går an å kjøpa." - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Product URL" -msgstr "Vare-URL" - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Enter the external URL to the product." -msgstr "Skriv inn ekstern adresse til produktet." - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "Button text" -msgstr "Teksten på knappen" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgctxt "placeholder" -msgid "Buy product" -msgstr "Kjøp" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "This text will be shown on the button linking to the external product." -msgstr "Denne teksten kjem opp på knappen som lenkar til den eksterne vara." - -#: admin/post-types/writepanels/writepanel-product_data.php:119 -msgid "Regular Price" -msgstr "Vanleg pris" - -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Sale Price" -msgstr "Tilbodspris" - -#: admin/post-types/writepanels/writepanel-product_data.php:135 -msgid "Sale Price Dates" -msgstr "Tilbodsprisdatoar" - -#: admin/post-types/writepanels/writepanel-product_data.php:138 -#: admin/post-types/writepanels/writepanel-product_data.php:1064 -msgid "Cancel" -msgstr "Avbryt" - -#: admin/post-types/writepanels/writepanel-product_data.php:152 -msgid "File paths (one per line)" -msgstr "Filplasseringar (ei per linje)" - -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Download Limit" -msgstr "Nedlastingsgrense" - -#: admin/post-types/writepanels/writepanel-product_data.php:178 -msgid "Tax Status" -msgstr "Avgiftsstatus" - -#: admin/post-types/writepanels/writepanel-product_data.php:180 -msgid "Shipping only" -msgstr "Berre frakt" - -#: admin/post-types/writepanels/writepanel-product_data.php:181 -msgid "None" -msgstr "Ingen" - -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Enable stock management at product level" -msgstr "Skru på lagerstyring på varenivå" - -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "Stock quantity. If this is a variable product this value will be used to control stock for all variations, unless you define stock at variation level." -msgstr "Lagermengd. Viss dette er eit variabelt produkt, vil verdien her bli brukt for å kontrollera lagermengd for alle variantane under eitt, med mindre du skriv inn lagermengd på variantnivå." - -#: admin/post-types/writepanels/writepanel-product_data.php:230 -msgid "Stock status" -msgstr "Lagerstatus" - -#: admin/post-types/writepanels/writepanel-product_data.php:233 -msgid "Controls whether or not the product is listed as \"in stock\" or \"out of stock\" on the frontend." -msgstr "Kontrollerer om denne vara er lista opp som «på lager» eller «ikkje på lager» på framsida av nettbutikken." - -#: admin/post-types/writepanels/writepanel-product_data.php:240 -msgid "Allow Backorders?" -msgstr "Bruk restordrar?" - -#: admin/post-types/writepanels/writepanel-product_data.php:241 -msgid "Do not allow" -msgstr "Ikkje tillat" - -#: admin/post-types/writepanels/writepanel-product_data.php:242 -msgid "Allow, but notify customer" -msgstr "Tillat, men sei frå til kunden" - -#: admin/post-types/writepanels/writepanel-product_data.php:243 -msgid "Allow" -msgstr "Tillat" - -#: admin/post-types/writepanels/writepanel-product_data.php:244 -msgid "If managing stock, this controls whether or not backorders are allowed for this product and variations. If enabled, stock quantity can go below 0." -msgstr "Viss du bruker lagerstyring, er det her du set opp om restordrar er lov for denne vara med variantar. Viss restordrar er lov, kan lagermengda gå under 0." - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "Sold Individually" -msgstr "Blir selt enkeltvis" - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "Enable this to only allow one of this item to be bought in a single order" -msgstr "Skru på dette for å selja denne vara enkeltvis, dvs. maks 1 per tinging" - -#: admin/post-types/writepanels/writepanel-product_data.php:273 -msgid "Weight in decimal form" -msgstr "Vekta som desimaltal" - -#: admin/post-types/writepanels/writepanel-product_data.php:284 -msgid "Dimensions" -msgstr "Storleik" - -#: admin/post-types/writepanels/writepanel-product_data.php:290 -msgid "LxWxH in decimal form" -msgstr "L*B*H som desimaltal" - -#: admin/post-types/writepanels/writepanel-product_data.php:311 -msgid "No shipping class" -msgstr "Inga fraktklasse" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "Shipping class" -msgstr "Fraktklasse" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "Shipping classes are used by certain shipping methods to group similar products." -msgstr "Fraktklasser er brukte av visse fraktmåtar for å gruppera liknande varer." - -#: admin/post-types/writepanels/writepanel-product_data.php:380 -#: admin/post-types/writepanels/writepanel-product_data.php:457 -#: admin/woocommerce-admin-init.php:453 -msgid "Value(s)" -msgstr "Verdi(ar)" - -#: admin/post-types/writepanels/writepanel-product_data.php:382 -msgid "Select terms" -msgstr "Vel termar" - -#: admin/post-types/writepanels/writepanel-product_data.php:394 -msgid "Select all" -msgstr "Vel alt" - -#: admin/post-types/writepanels/writepanel-product_data.php:394 -msgid "Select none" -msgstr "Vel ingen" - -#: admin/post-types/writepanels/writepanel-product_data.php:396 -msgid "Add new" -msgstr "Legg til ny" - -#: admin/post-types/writepanels/writepanel-product_data.php:409 -msgid "Pipe separate terms" -msgstr "Tverrstrek (|) mellom termane" - -#: admin/post-types/writepanels/writepanel-product_data.php:416 -#: admin/post-types/writepanels/writepanel-product_data.php:463 -#: admin/woocommerce-admin-init.php:455 -msgid "Visible on the product page" -msgstr "Synleg på varesida" - -#: admin/post-types/writepanels/writepanel-product_data.php:422 -#: admin/post-types/writepanels/writepanel-product_data.php:469 -#: admin/woocommerce-admin-init.php:456 -msgid "Used for variations" -msgstr "Brukt for variantar" - -#: admin/post-types/writepanels/writepanel-product_data.php:458 -#: admin/woocommerce-admin-init.php:454 -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "Skriv inn litt tekst, eller nokre eigenskapar skilde med røyr-teiknet (|)." - -#: admin/post-types/writepanels/writepanel-product_data.php:484 -msgid "Custom product attribute" -msgstr "Eigen vareeigenskap" - -#: admin/post-types/writepanels/writepanel-product_data.php:496 -msgid "Save attributes" -msgstr "Lagra eigenskapar" - -#: admin/post-types/writepanels/writepanel-product_data.php:503 -msgid "Up-Sells" -msgstr "Opp-sal" - -#: admin/post-types/writepanels/writepanel-product_data.php:518 -msgid "Up-sells are products which you recommend instead of the currently viewed product, for example, products that are more profitable or better quality or more expensive." -msgstr "Oppsal tyder produkt som du tilrår i staden for det kunden ser på, til dømes produkt du tener meir på, eller har betre kvalitet eller høgare pris." - -#: admin/post-types/writepanels/writepanel-product_data.php:520 -msgid "Cross-Sells" -msgstr "Kryssal" - -#: admin/post-types/writepanels/writepanel-product_data.php:535 -msgid "Cross-sells are products which you promote in the cart, based on the current product." -msgstr "Kryssal tyder produkt du framhevar i handlekorga, basert på dette produktet." - -#: admin/post-types/writepanels/writepanel-product_data.php:545 -msgid "Choose a grouped product…" -msgstr "Vel ei gruppert vare…" - -#: admin/post-types/writepanels/writepanel-product_data.php:571 -msgid "Grouping" -msgstr "Gruppering" - -#: admin/post-types/writepanels/writepanel-product_data.php:571 -msgid "Set this option to make this product part of a grouped product." -msgstr "Skru på dett for å gjera vara til ein del av ei gruppert vare." - -#: admin/post-types/writepanels/writepanel-product_data.php:591 -msgid "Purchase Note" -msgstr "Kjøpsmerknad" - -#: admin/post-types/writepanels/writepanel-product_data.php:591 -msgid "Enter an optional note to send the customer after purchase." -msgstr "Skriv inn ein merknad du eventuelt vil senda til kunden etter kjøpet." - -#: admin/post-types/writepanels/writepanel-product_data.php:598 -msgid "Menu order" -msgstr "Menyrekkjefølgje" - -#: admin/post-types/writepanels/writepanel-product_data.php:598 -msgid "Custom ordering position." -msgstr "Eiga plassering for tinginga." - -#: admin/post-types/writepanels/writepanel-product_data.php:606 -msgid "Enable reviews" -msgstr "Bruk vurderingar" - -#: admin/post-types/writepanels/writepanel-product_data.php:695 -msgid "Product SKU must be unique." -msgstr "Produktnummeret (SKU) må vera unikt." - -#: admin/post-types/writepanels/writepanel-product_data.php:1028 -msgid "Catalog/search" -msgstr "Katalog/søk" - -#: admin/post-types/writepanels/writepanel-product_data.php:1035 -msgid "Catalog visibility:" -msgstr "Synleg katalog:" - -#: admin/post-types/writepanels/writepanel-product_data.php:1051 -msgid "Define the loops this product should be visible in. The product will still be accessible directly." -msgstr "Vis kva sløyfer denne vara skal vera synleg i. Vara vil framleis vera synleg direkte." - -#: admin/post-types/writepanels/writepanel-product_data.php:1057 -msgid "Enable this option to feature this product." -msgstr "Bruk dette valet for å framheva vara." - -#: admin/post-types/writepanels/writepanel-product_data.php:1059 -msgid "Featured Product" -msgstr "Framheva vare" - -#: admin/post-types/writepanels/writepanel-product_data.php:1063 -msgid "OK" -msgstr "OK" - -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -msgid "Delete image" -msgstr "Slett biletet" - -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -#: admin/woocommerce-admin-attributes.php:322 -msgid "Delete" -msgstr "Slett" - -#: admin/post-types/writepanels/writepanel-product_images.php:53 -msgid "Add product gallery images" -msgstr "Legg til galleribilete til vara" - -#: admin/post-types/writepanels/writepanel-product_images.php:79 -msgid "Add Images to Product Gallery" -msgstr "Leg bilete til i varegalleriet" - -#: admin/post-types/writepanels/writepanel-product_images.php:81 -msgid "Add to gallery" -msgstr "Legg til galleri" - -#: admin/post-types/writepanels/writepanels-init.php:47 -msgid "Product Gallery" -msgstr "Varegalleri" - -#: admin/post-types/writepanels/writepanels-init.php:55 -msgid "Product Short Description" -msgstr "Ei kort skildring av vara" - -#: admin/post-types/writepanels/writepanels-init.php:64 -msgid "Reviews" -msgstr "Vurderingar" - -#: admin/post-types/writepanels/writepanels-init.php:68 -msgid "Order Data" -msgstr "Tingingsdata" - -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "Order Items" -msgstr "Element i tinginga" - -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "Note: if you edit quantities or remove items from the order you will need to manually update stock levels." -msgstr "Merk: Viss du endrar mengder eller fjernar varer frå tinginga, må du oppdatera lagermengdene manuelt." - -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "Downloadable Product Permissions" -msgstr "Tilgangsløyve til nedlastingar" - -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "Note: Permissions for order items will automatically be granted when the order status changes to processing/completed." -msgstr "Merk: Tilgang for tinga varer vil bli løyvd automatisk når ordrestatusen blir endra frå «handterer» til «fullført»" - -#: admin/post-types/writepanels/writepanels-init.php:73 -msgid "Order Actions" -msgstr "Tingingshandlingar" - -#: admin/post-types/writepanels/writepanels-init.php:81 -msgid "Coupon Data" -msgstr "Kupongdata" - -#: admin/post-types/writepanels/writepanels-init.php:100 -msgid "Coupon code" -msgstr "Kupongkode" - -#: admin/post-types/writepanels/writepanels-init.php:101 -msgid "Product name" -msgstr "Varenamn" - -#: admin/post-types/writepanels/writepanels-init.php:185 -msgid "Allow reviews." -msgstr "Gje lov til å skriva vurderingar." - -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "Allow trackbacks and pingbacks on this page." -msgstr "Bruk tilbaketråkk og tilbakeping på denne sida." - -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" -msgstr "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" - -#: admin/settings/settings-frontend-styles.php:23 -msgid "Styles" -msgstr "Stilar" - -#: admin/settings/settings-frontend-styles.php:43 -msgid "Primary" -msgstr "Primær" - -#: admin/settings/settings-frontend-styles.php:43 -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "«Gjer noko»-knappar/prisfilter/lagnavigasjon" - -#: admin/settings/settings-frontend-styles.php:44 -msgid "Secondary" -msgstr "Sekundær" - -#: admin/settings/settings-frontend-styles.php:44 -msgid "Buttons and tabs" -msgstr "Knappar og faner" - -#: admin/settings/settings-frontend-styles.php:45 -msgid "Highlight" -msgstr "Framheva" - -#: admin/settings/settings-frontend-styles.php:45 -msgid "Price labels and Sale Flashes" -msgstr "Prislappar og salsplakatar" - -#: admin/settings/settings-frontend-styles.php:46 -msgid "Content" -msgstr "Innhald" - -#: admin/settings/settings-frontend-styles.php:46 -msgid "Your themes page background - used for tab active states" -msgstr "Sidebakgrunnen for bunaden din - blir brukt for tilstand på aktiv fane" - -#: admin/settings/settings-frontend-styles.php:47 -msgid "Subtext" -msgstr "Undertekst" - -#: admin/settings/settings-frontend-styles.php:47 -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "Blir brukt på nokre tekstar og ekstraopplysingar - navigasjonstekst, lita skrift osb." - -#: admin/settings/settings-frontend-styles.php:51 -msgid "To edit colours woocommerce/assets/css/woocommerce-base.less and woocommerce.css need to be writable. See the Codex for more information." -msgstr "For å endra fargene, må woocommerce/assets/css/woocommerce-base.less og woocommerce.css vera skrivbare. Sjå WordPress-dokumentasjonen for fleire opplysingar." - -#: admin/settings/settings-init.php:18 -msgid "Localisation" -msgstr "Lokalisering" - -#: admin/settings/settings-init.php:19 -msgid "Use informal localisation for %s" -msgstr "Bruk uformell lokalisering for %s" - -#: admin/settings/settings-init.php:33 -msgid "General Options" -msgstr "Generelt oppsett" - -#: admin/settings/settings-init.php:36 -msgid "Base Location" -msgstr "Heimstad" - -#: admin/settings/settings-init.php:37 -msgid "This is the base location for your business. Tax rates will be based on this country." -msgstr "Dette er der verksemda di held til. Avgifter blir rekna ut frå dette landet." - -#: admin/settings/settings-init.php:46 -msgid "Currency" -msgstr "Valuta" - -#: admin/settings/settings-init.php:47 -msgid "This controls what currency prices are listed at in the catalog and which currency gateways will take payments in." -msgstr "Her kontrollerer kva valuta katalogprisane skal ha, og kva valutaer betalingsløysingane skal ta imot." - -#: admin/settings/settings-init.php:58 -msgid "Allowed Countries" -msgstr "Tillatne land" - -#: admin/settings/settings-init.php:59 -msgid "These are countries that you are willing to ship to." -msgstr "Dette er landa du er viljug til å senda til." - -#: admin/settings/settings-init.php:67 -msgid "All Countries" -msgstr "Alle land" - -#: admin/settings/settings-init.php:68 -#: admin/settings/settings-init.php:73 -msgid "Specific Countries" -msgstr "Visse land" - -#: admin/settings/settings-init.php:84 -msgid "Store Notice" -msgstr "Butikkmerknad" - -#: admin/settings/settings-init.php:85 -msgid "Enable site-wide store notice text" -msgstr "Skru på varslingstekst på heile nettstaden" - -#: admin/settings/settings-init.php:92 -msgid "Store Notice Text" -msgstr "Butikknotis" - -#: admin/settings/settings-init.php:95 -msgid "This is a demo store for testing purposes — no orders shall be fulfilled." -msgstr "Denne butikken er for utprøving, og tek ikkje imot tingingar." - -#: admin/settings/settings-init.php:102 -msgid "Cart, Checkout and Accounts" -msgstr "Handlekorg, kasse og brukarkontoar" - -#: admin/settings/settings-init.php:105 -#: admin/woocommerce-admin-content.php:61 -#: admin/woocommerce-admin-content.php:76 -#: admin/woocommerce-admin-reports.php:72 -msgid "Coupons" -msgstr "Rabattkupongar" - -#: admin/settings/settings-init.php:106 -msgid "Enable the use of coupons" -msgstr "Bruk rabattkupongar" - -#: admin/settings/settings-init.php:110 -msgid "Coupons can be applied from the cart and checkout pages." -msgstr "Du kan bruka rabattkupongane på handlekorg- og kassa-sidene." - -#: admin/settings/settings-init.php:114 -#: admin/woocommerce-admin-install.php:198 -#: admin/woocommerce-admin-status.php:281 -msgid "Checkout" -msgstr "Kasse" - -#: admin/settings/settings-init.php:115 -msgid "Enable guest checkout (no account required)" -msgstr "Gje gjestar høve til å gå til kassa (krev ingen brukarkonto)" - -#: admin/settings/settings-init.php:123 -msgid "Enable customer note field on checkout" -msgstr "Ta i bruk kundenotat-felt på kassasida" - -#: admin/settings/settings-init.php:131 -msgid "Force secure checkout" -msgstr "Tving sikker kasse" - -#: admin/settings/settings-init.php:137 -msgid "Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -msgstr "Tving SSL (HTTPS) på kassasidene (du må ha eit SSL-sertifikat)" - -#: admin/settings/settings-init.php:141 -msgid "Un-force HTTPS when leaving the checkout" -msgstr "Fjern HTTPS-tvangen når kunden forlèt kassa" - -#: admin/settings/settings-init.php:150 -msgid "Registration" -msgstr "Registrering" - -#: admin/settings/settings-init.php:151 -msgid "Allow registration on the checkout page" -msgstr "La kundane registrera seg på kassasida" - -#: admin/settings/settings-init.php:159 -msgid "Allow registration on the \"My Account\" page" -msgstr "La kundane registrera seg på «Brukarkonto»-sida" - -#: admin/settings/settings-init.php:167 -msgid "Register using the email address for the username" -msgstr "Registrer ved å bruka epostadressa som brukarnamn" - -#: admin/settings/settings-init.php:175 -msgid "Customer Accounts" -msgstr "Kundekontoar" - -#: admin/settings/settings-init.php:176 -msgid "Prevent customers from accessing WordPress admin" -msgstr "Hindra at kundane kjem til WordPress-administrasjonen" - -#: admin/settings/settings-init.php:184 -msgid "Clear cart when logging out" -msgstr "Tøm korga ved utlogging" - -#: admin/settings/settings-init.php:192 -msgid "Allow customers to repurchase orders from their account page" -msgstr "La kundar handla tidlegare tingingar på nytt frå kontosida deira" - -#: admin/settings/settings-init.php:201 -msgid "Styles and Scripts" -msgstr "Stilar og skript" - -#: admin/settings/settings-init.php:204 -msgid "Styling" -msgstr "Stilval" - -#: admin/settings/settings-init.php:205 -msgid "Enable WooCommerce CSS" -msgstr "Bruk CSS-stilane til WooCommerce" - -#: admin/settings/settings-init.php:216 -msgid "Scripts" -msgstr "Skript" - -#: admin/settings/settings-init.php:217 -msgid "Enable Lightbox" -msgstr "Bruk Lightbox" - -#: admin/settings/settings-init.php:220 -msgid "Include WooCommerce's lightbox. Product gallery images and the add review form will open in a lightbox." -msgstr "Bruk WooCommerce sin lightbox. Varegalleri og varevurderingar vil opna i eit lightbox-overlegg." - -#: admin/settings/settings-init.php:226 -msgid "Enable enhanced country select boxes" -msgstr "Skru på utvida landsval-boksar" - -#: admin/settings/settings-init.php:231 -msgid "This will enable a script allowing the country fields to be searchable." -msgstr "Å skru på dette gjer at landfelta blir søkbare." - -#: admin/settings/settings-init.php:236 -msgid "Downloadable Products" -msgstr "Nedlastingar" - -#: admin/settings/settings-init.php:239 -msgid "File Download Method" -msgstr "FIlnedlastingsmetode" - -#: admin/settings/settings-init.php:240 -msgid "Forcing downloads will keep URLs hidden, but some servers may serve large files unreliably. If supported, X-Accel-Redirect/ X-Sendfile can be used to serve downloads instead (server requires mod_xsendfile)." -msgstr "Tvungne nedlastingar gøymer nedlastingsadressa, men nokre tenarar leverer ikkje slike filer feilfritt. Viss tenaren støttar det, kan du bruka X-Accel-Redirect/ X-Sendfile-metoden i staden (tenaren må ha mod_xsendfile)." - -#: admin/settings/settings-init.php:248 -msgid "Force Downloads" -msgstr "Tving nedlastingar" - -#: admin/settings/settings-init.php:249 -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "X-Accel-Redirect/X-Sendfile" - -#: admin/settings/settings-init.php:250 -msgid "Redirect only" -msgstr "Berre omdiriger" - -#: admin/settings/settings-init.php:255 -msgid "Access Restriction" -msgstr "Tilgangsavgrensing" - -#: admin/settings/settings-init.php:256 -msgid "Downloads require login" -msgstr "Nedlastingar krev innlogging" - -#: admin/settings/settings-init.php:260 -msgid "This setting does not apply to guest purchases." -msgstr "Denne innstillinga gjeld ikkje gjestenedlastingar." - -#: admin/settings/settings-init.php:265 -msgid "Grant access to downloadable products after payment" -msgstr "Gje tilgjenge til nedlastbare produkt etter betaling" - -#: admin/settings/settings-init.php:269 -msgid "Enable this option to grant access to downloads when orders are \"processing\", rather than \"completed\"." -msgstr "Skru på dette for å gje løyve til nedlasting når tingingane står som «handterer», heller enn «fullført»" - -#: admin/settings/settings-init.php:285 -msgid "Note: The shop page has children - child pages will not work if you enable this option." -msgstr "Merk: Butikksida har undersider, og dei vil ikkje verka om du skrur på dette." - -#: admin/settings/settings-init.php:290 -msgid "Page Setup" -msgstr "Sideoppsett" - -#: admin/settings/settings-init.php:292 -msgid "Set up core WooCommerce pages here, for example the base page. The base page can also be used in your %sproduct permalinks%s." -msgstr "Her set du opp grunnsidene for WooCommerce, til dømes butikkbasesida. Denne sida kan du ma. bruka i %svare-fastlenkjene dine%s" - -#: admin/settings/settings-init.php:297 -msgid "Shop Base Page" -msgstr "Butikkbaseside" - -#: admin/settings/settings-init.php:298 -msgid "This sets the base page of your shop - this is where your product archive will be." -msgstr "Her set du opp basesida for butikken din - her vil varekatalogen din vera." - -#: admin/settings/settings-init.php:308 -msgid "Base Page Title" -msgstr "Tittel på basesida" - -#: admin/settings/settings-init.php:309 -msgid "This title to show on the shop base page. Leave blank to use the page title." -msgstr "Dette er tittelen på butikkbasesida. La det stå tomt for å bruka den vanlege sidetittelen." - -#: admin/settings/settings-init.php:318 -msgid "Terms Page ID" -msgstr "Side-ID for kjøpsvilkårsida" - -#: admin/settings/settings-init.php:319 -msgid "If you define a \"Terms\" page the customer will be asked if they accept them when checking out." -msgstr "Viss du har ei side med kjøpsvilkår, vil kunden bli beden om å godkjenna vilkåra i kassa." - -#: admin/settings/settings-init.php:330 -msgid "Shop Pages" -msgstr "Butikksider" - -#: admin/settings/settings-init.php:330 -msgid "The following pages need selecting so that WooCommerce knows where they are. These pages should have been created upon installation of the plugin, if not you will need to create them." -msgstr "Du må velja desse sidene, så WooCommerce veit kvar dei er. Sidene blir laga automatisk når du installerer WooCommerce, men viss ikkje det har skjedd, må du laga dei." - -#: admin/settings/settings-init.php:333 -msgid "Cart Page" -msgstr "Handlekorgside" - -#: admin/settings/settings-init.php:334 -msgid "Page contents: [woocommerce_cart]" -msgstr "Sideinnhald: [woocommerce_cart]" - -#: admin/settings/settings-init.php:344 -msgid "Checkout Page" -msgstr "Kassa-sida" - -#: admin/settings/settings-init.php:345 -msgid "Page contents: [woocommerce_checkout]" -msgstr "Sideinnhald: [woocommerce_checkout]" - -#: admin/settings/settings-init.php:355 -msgid "Pay Page" -msgstr "Betal-sida" - -#: admin/settings/settings-init.php:356 -msgid "Page contents: [woocommerce_pay] Parent: \"Checkout\"" -msgstr "Sideinnhald: [woocommerce_pay] Forelder: «Kasse»" - -#: admin/settings/settings-init.php:366 -msgid "Thanks Page" -msgstr "Takk-sida" - -#: admin/settings/settings-init.php:367 -msgid "Page contents: [woocommerce_thankyou] Parent: \"Checkout\"" -msgstr "Sideinnhald: [woocommerce_thankyou] Forelder: «Kasse»" - -#: admin/settings/settings-init.php:377 -msgid "My Account Page" -msgstr "Brukarkontosida" - -#: admin/settings/settings-init.php:378 -msgid "Page contents: [woocommerce_my_account]" -msgstr "Sideinnhald: [woocommerce_my_account]" - -#: admin/settings/settings-init.php:388 -msgid "Edit Address Page" -msgstr "Endra adresse-sida" - -#: admin/settings/settings-init.php:389 -msgid "Page contents: [woocommerce_edit_address] Parent: \"My Account\"" -msgstr "Sideinnhald: [woocommerce_edit_address] Forelder: «Brukarkonto»" - -#: admin/settings/settings-init.php:399 -msgid "View Order Page" -msgstr "Sjå tinging-sida" - -#: admin/settings/settings-init.php:400 -msgid "Page contents: [woocommerce_view_order] Parent: \"My Account\"" -msgstr "Sideinnhald: [woocommerce_view_order] Forelder: «Brukarkonto»" - -#: admin/settings/settings-init.php:410 -msgid "Change Password Page" -msgstr "Endra passord-sida" - -#: admin/settings/settings-init.php:411 -msgid "Page contents: [woocommerce_change_password] Parent: \"My Account\"" -msgstr "Sideinnhald: [woocommerce_change_password] Forelder: «Brukarkonto»" - -#: admin/settings/settings-init.php:421 -msgid "Logout Page" -msgstr "Utloggingsside" - -#: admin/settings/settings-init.php:422 -msgid "Parent: \"My Account\"" -msgstr "Forelder: «Brukarkonto»" - -#: admin/settings/settings-init.php:432 -msgid "Lost Password Page" -msgstr "Mista passord-sida" - -#: admin/settings/settings-init.php:433 -msgid "Page contents: [woocommerce_lost_password] Parent: \"My Account\"" -msgstr "Sideinnhald: [woocommerce_lost_password] Forelder: «Brukarkonto»" - -#: admin/settings/settings-init.php:449 -msgid "Catalog Options" -msgstr "Katalogval" - -#: admin/settings/settings-init.php:452 -msgid "Default Product Sorting" -msgstr "Standard varesortering" - -#: admin/settings/settings-init.php:453 -msgid "This controls the default sort order of the catalog." -msgstr "Her kontrollerer du standardsorteringa i katalogen." - -#: admin/settings/settings-init.php:459 -msgid "Default sorting (custom ordering + name)" -msgstr "Standardsortering (eiga sortering + namn)" - -#: admin/settings/settings-init.php:460 -msgid "Popularity (sales)" -msgstr "Popularitet (sal)" - -#: admin/settings/settings-init.php:461 -msgid "Average Rating" -msgstr "Gjennomsnittleg vurdering" - -#: admin/settings/settings-init.php:462 -msgid "Sort by most recent" -msgstr "Sorter etter nyaste" - -#: admin/settings/settings-init.php:463 -msgid "Sort by price (asc)" -msgstr "Sorter etter pris (stigande)" - -#: admin/settings/settings-init.php:464 -msgid "Sort by price (desc)" -msgstr "Sorter etter pris (minkande)" - -#: admin/settings/settings-init.php:470 -msgid "Shop Page Display" -msgstr "Butikksidevising" - -#: admin/settings/settings-init.php:471 -msgid "This controls what is shown on the product archive." -msgstr "Her kontrollerer du kva som blir vist i varearkivet." - -#: admin/settings/settings-init.php:477 -#: admin/settings/settings-init.php:492 -msgid "Show products" -msgstr "Vis varer" - -#: admin/settings/settings-init.php:478 -#: admin/settings/settings-init.php:493 -msgid "Show subcategories" -msgstr "Vis underkategoriar" - -#: admin/settings/settings-init.php:479 -#: admin/settings/settings-init.php:494 -msgid "Show both" -msgstr "Vis båe" - -#: admin/settings/settings-init.php:485 -msgid "Default Category Display" -msgstr "Standard kategorivising" - -#: admin/settings/settings-init.php:486 -msgid "This controls what is shown on category archives." -msgstr "Her kontrollerer du kva som blir vist i kategoriarkiva." - -#: admin/settings/settings-init.php:500 -msgid "Add to cart" -msgstr "Legg i korga" - -#: admin/settings/settings-init.php:501 -msgid "Redirect to the cart page after successful addition" -msgstr "Send vidare til handlekorga når vara er lagt i korga" - -#: admin/settings/settings-init.php:509 -msgid "Enable AJAX add to cart buttons on archives" -msgstr "Bruk AJAX-funksjonar på legg i korg-knappen på arkivsider" - -#: admin/settings/settings-init.php:518 -msgid "The following options affect the fields available on the edit product page." -msgstr "Desse vala påverkar kva felt som er synlege på sida der du redigerer varene." - -#: admin/settings/settings-init.php:521 -msgid "Product Fields" -msgstr "Varefelt" - -#: admin/settings/settings-init.php:522 -msgid "Enable the SKU field for products" -msgstr "Bruk SKU-feltet for varer" - -#: admin/settings/settings-init.php:530 -msgid "Enable the weight field for products (some shipping methods may require this)" -msgstr "Bruk vekt-feltet for varer (nokre fraktmåtar krev vekt)" - -#: admin/settings/settings-init.php:538 -msgid "Enable the dimension fields for products (some shipping methods may require this)" -msgstr "Bruk storleik-feltet for varer (nokre fraktmåtar krev dette)" - -#: admin/settings/settings-init.php:546 -msgid "Show weight and dimension values on the Additional Information tab" -msgstr "Vis vekt og storleik-tala på fana for fleire opplysingar" - -#: admin/settings/settings-init.php:554 -msgid "Weight Unit" -msgstr "Vekteining" - -#: admin/settings/settings-init.php:555 -msgid "This controls what unit you will define weights in." -msgstr "Her kontrollerer du kva vekteining du vil bruka." - -#: admin/settings/settings-init.php:561 -msgid "kg" -msgstr "kg" - -#: admin/settings/settings-init.php:562 -msgid "g" -msgstr "g" - -#: admin/settings/settings-init.php:563 -msgid "lbs" -msgstr "pund" - -#: admin/settings/settings-init.php:564 -msgid "oz" -msgstr "unsar" - -#: admin/settings/settings-init.php:570 -msgid "Dimensions Unit" -msgstr "Måleeining" - -#: admin/settings/settings-init.php:571 -msgid "This controls what unit you will define lengths in." -msgstr "Her kontrollerer du kva lengdeeining du vil bruka." - -#: admin/settings/settings-init.php:578 -msgid "cm" -msgstr "cm" - -#: admin/settings/settings-init.php:579 -msgid "mm" -msgstr "mm" - -#: admin/settings/settings-init.php:580 -msgid "in" -msgstr "tommar" - -#: admin/settings/settings-init.php:581 -msgid "yd" -msgstr "yards" - -#: admin/settings/settings-init.php:587 -msgid "Product Ratings" -msgstr "Produktvurderingar" - -#: admin/settings/settings-init.php:588 -msgid "Enable ratings on reviews" -msgstr "Skru på stjerner på varevurderingane" - -#: admin/settings/settings-init.php:597 -msgid "Ratings are required to leave a review" -msgstr "Du må gje stjernekarakterar for å gje ei vurdering" - -#: admin/settings/settings-init.php:606 -msgid "Show \"verified owner\" label for customer reviews" -msgstr "Vis «Eig denne vara»-merke for kundevurderingar" - -#: admin/settings/settings-init.php:616 -msgid "Pricing Options" -msgstr "Prisval" - -#: admin/settings/settings-init.php:616 -msgid "The following options affect how prices are displayed on the frontend." -msgstr "Dette styrer korleis prisane viser på nettbutikken." - -#: admin/settings/settings-init.php:619 -msgid "Currency Position" -msgstr "Plassering for valutateikn" - -#: admin/settings/settings-init.php:620 -msgid "This controls the position of the currency symbol." -msgstr "Her kontrollerer du kvar valutasymbolet skal stå." - -#: admin/settings/settings-init.php:626 -msgid "Left" -msgstr "Venstre" - -#: admin/settings/settings-init.php:627 -msgid "Right" -msgstr "Høgre" - -#: admin/settings/settings-init.php:628 -msgid "Left (with space)" -msgstr "Venstre (med mellomrom)" - -#: admin/settings/settings-init.php:629 -msgid "Right (with space)" -msgstr "Høgre (med mellomrom)" - -#: admin/settings/settings-init.php:635 -msgid "Thousand Separator" -msgstr "Tusenskilje" - -#: admin/settings/settings-init.php:636 -msgid "This sets the thousand separator of displayed prices." -msgstr "Avgjer tusenskiljet for prisane." - -#: admin/settings/settings-init.php:645 -msgid "Decimal Separator" -msgstr "Desimalskilje" - -#: admin/settings/settings-init.php:646 -msgid "This sets the decimal separator of displayed prices." -msgstr "Avgjer desimalskiljet for prisane." - -#: admin/settings/settings-init.php:655 -msgid "Number of Decimals" -msgstr "Kor mange desimalar" - -#: admin/settings/settings-init.php:656 -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "Avgjer kor mange desimalar me skal visa prisane med" - -#: admin/settings/settings-init.php:669 -msgid "Trailing Zeros" -msgstr "Etterfølgjande nullar" - -#: admin/settings/settings-init.php:670 -msgid "Remove zeros after the decimal point. e.g. $10.00 becomes $10" -msgstr "Fjern nullar etter desimalskiljet, td. kr 10,00 blir kr 10" - -#: admin/settings/settings-init.php:678 -msgid "Image Options" -msgstr "Biletval" - -#: admin/settings/settings-init.php:678 -msgid "These settings affect the actual dimensions of images in your catalog - the display on the front-end will still be affected by CSS styles. After changing these settings you may need to regenerate your thumbnails." -msgstr "Desse innstillingane har med dei faktiske biletstorleikane i katalogen din å gjera. CSS-innstillingane vil framleis spela inn på kva storleik som syner på butikken din. Når du har endra desse innstillingane, kan det henda du må laga miniatyrbileta på nytt." - -#: admin/settings/settings-init.php:681 -msgid "Catalog Images" -msgstr "Katalogbilete" - -#: admin/settings/settings-init.php:682 -msgid "This size is usually used in product listings" -msgstr "Denne storleiken plar me bruka i varelister" - -#: admin/settings/settings-init.php:695 -msgid "Single Product Image" -msgstr "Bilete for einskildprodukt" - -#: admin/settings/settings-init.php:696 -msgid "This is the size used by the main image on the product page." -msgstr "Denne storleiken bruker me for hovudbiletet på varesida." - -#: admin/settings/settings-init.php:709 -msgid "Product Thumbnails" -msgstr "Produktminiatyrar" - -#: admin/settings/settings-init.php:710 -msgid "This size is usually used for the gallery of images on the product page." -msgstr "Denne storleiken plar me bruka for biletgalleri på varesida." - -#: admin/settings/settings-init.php:729 -msgid "Inventory Options" -msgstr "Lagerval" - -#: admin/settings/settings-init.php:732 -msgid "Manage Stock" -msgstr "Bruk lagerstyring" - -#: admin/settings/settings-init.php:733 -msgid "Enable stock management" -msgstr "Slå på lagerstyring" - -#: admin/settings/settings-init.php:740 -msgid "Hold Stock (minutes)" -msgstr "Reserver (kor mange minutt)" - -#: admin/settings/settings-init.php:741 -msgid "Hold stock (for unpaid orders) for x minutes. When this limit is reached, the pending order will be cancelled. Leave blank to disable." -msgstr "Reserver varer (for ubetalte tingingar) i x minutt. Når denne grensa er nådd, blir den ventande tinginga kansellert. La stå tomt for å skru av." - -#: admin/settings/settings-init.php:753 -msgid "Notifications" -msgstr "Varslingar" - -#: admin/settings/settings-init.php:754 -msgid "Enable low stock notifications" -msgstr "Bruk meldingar om låg lagermengd" - -#: admin/settings/settings-init.php:762 -msgid "Enable out of stock notifications" -msgstr "Bruk meldingar om tomt på lager" - -#: admin/settings/settings-init.php:770 -msgid "Notification Recipient" -msgstr "Mottakar av e-postvarselet" - -#: admin/settings/settings-init.php:778 -msgid "Low Stock Threshold" -msgstr "Snart tomt på lageret ved" - -#: admin/settings/settings-init.php:791 -msgid "Out Of Stock Threshold" -msgstr "Tomt på lageret ved" - -#: admin/settings/settings-init.php:804 -msgid "Out Of Stock Visibility" -msgstr "Synleg når tomt på lager" - -#: admin/settings/settings-init.php:805 -msgid "Hide out of stock items from the catalog" -msgstr "Gøym varer som ikkje er på lager frå katalogen" - -#: admin/settings/settings-init.php:812 -msgid "Stock Display Format" -msgstr "Format for lagermengd" - -#: admin/settings/settings-init.php:813 -msgid "This controls how stock is displayed on the frontend." -msgstr "Dette styrer korleis lagermengda viser på framsida av nettbutikken." - -#: admin/settings/settings-init.php:819 -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "Alltid vis lagermengd, td. «12 på lager»" - -#: admin/settings/settings-init.php:820 -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "Berre vis lagermengd når det er lite att, td. «Berre 2 att på lager», i motsetnad til «På lager»" - -#: admin/settings/settings-init.php:821 -msgid "Never show stock amount" -msgstr "Aldri vis lagermengd" - -#: admin/settings/settings-init.php:833 -#: admin/woocommerce-admin-settings.php:290 -msgid "Shipping Options" -msgstr "Val for frakt" - -#: admin/settings/settings-init.php:836 -msgid "Shipping Calculations" -msgstr "Fraktutrekningar" - -#: admin/settings/settings-init.php:837 -msgid "Enable shipping" -msgstr "Skru på frakt" - -#: admin/settings/settings-init.php:845 -msgid "Enable the shipping calculator on the cart page" -msgstr "Bruk fraktkalkulatoren på kassa-sida" - -#: admin/settings/settings-init.php:853 -msgid "Hide shipping costs until an address is entered" -msgstr "Gøym fraktkostnad til kunden har skrive inn ei adresse" - -#: admin/settings/settings-init.php:861 -msgid "Shipping Method Display" -msgstr "Fraktmåte-vising" - -#: admin/settings/settings-init.php:862 -msgid "This controls how multiple shipping methods are displayed on the frontend." -msgstr "Her kontrollerer du korleis fleire fraktmåtar blir viste på framsida av nettbutikken." - -#: admin/settings/settings-init.php:868 -msgid "Radio buttons" -msgstr "Meldingsknappar" - -#: admin/settings/settings-init.php:869 -msgid "Select box" -msgstr "Avkryssingsboks" - -#: admin/settings/settings-init.php:875 -msgid "Shipping Destination" -msgstr "Skal sendast til" - -#: admin/settings/settings-init.php:876 -msgid "Only ship to the users billing address" -msgstr "Send berre til fakturaadressa som kunden skriv inn" - -#: admin/settings/settings-init.php:884 -msgid "Ship to billing address by default" -msgstr "Send til fakturaadressa som standard" - -#: admin/settings/settings-init.php:892 -msgid "Collect shipping address even when not required" -msgstr "Samla inn fraktadresse sjøv når det ikkje trengst" - -#: admin/settings/settings-init.php:910 -#: admin/woocommerce-admin-settings.php:186 -#: admin/woocommerce-admin-settings.php:327 -msgid "Payment Gateways" -msgstr "Betalingsportnarar" - -#: admin/settings/settings-init.php:910 -msgid "Installed payment gateways are displayed below. Drag and drop payment gateways to control their display order on the checkout." -msgstr "Dei installerte betalingsløysingane står under. Dra og slepp betalingsløysingar for å kontrollera kva rekkjefylgje dei kjem i på kassa-sida." - -#: admin/settings/settings-init.php:928 -#: admin/woocommerce-admin-settings.php:220 -msgid "Tax Options" -msgstr "Avgiftsinnstillingar" - -#: admin/settings/settings-init.php:931 -msgid "Enable Taxes" -msgstr "Bruk avgifter" - -#: admin/settings/settings-init.php:932 -msgid "Enable taxes and tax calculations" -msgstr "Bruk avgifter (mva) og avgiftsutrekningar" - -#: admin/settings/settings-init.php:939 -msgid "Prices Entered With Tax" -msgstr "Prisar er inkl. mva." - -#: admin/settings/settings-init.php:943 -msgid "This option is important as it will affect how you input prices. Changing it will not update existing products." -msgstr "Denne innstillinga er viktig, fordi ho vedrører korleis du skriv inn prisar. Viss du endrar henne, vil du ikkje oppdatera eksisterande varer." - -#: admin/settings/settings-init.php:945 -msgid "Yes, I will enter prices inclusive of tax" -msgstr "Ja, eg skriv prisane inkl. mva." - -#: admin/settings/settings-init.php:946 -msgid "No, I will enter prices exclusive of tax" -msgstr "Nei, eg skriv inn prisane ekskl. mva." - -#: admin/settings/settings-init.php:951 -msgid "Calculate Tax Based On:" -msgstr "Rekna ut avgifter frå:" - -#: admin/settings/settings-init.php:953 -msgid "This option determines which address is used to calculate tax." -msgstr "Her avgjer du kva adresser som blir brukte for å rekna ut avgifter." - -#: admin/settings/settings-init.php:957 -msgid "Customer shipping address" -msgstr "Fraktadressa til kunden" - -#: admin/settings/settings-init.php:958 -msgid "Customer billing address" -msgstr "Fakturaadressa til kunden" - -#: admin/settings/settings-init.php:959 -#: admin/settings/settings-init.php:971 -msgid "Shop base address" -msgstr "Adresse til butikkbasesida" - -#: admin/settings/settings-init.php:964 -msgid "Default Customer Address:" -msgstr "Standardadresse til kundane:" - -#: admin/settings/settings-init.php:966 -msgid "This option determines the customers default address (before they input their own)." -msgstr "Her avgjer du standardadressa til kundane (før dei skriv inn si eiga adresse)." - -#: admin/settings/settings-init.php:970 -msgid "No address" -msgstr "Inga adresse" - -#: admin/settings/settings-init.php:976 -msgid "Shipping Tax Class:" -msgstr "Avgiftsklasse for frakt:" - -#: admin/settings/settings-init.php:977 -msgid "Optionally control which tax class shipping gets, or leave it so shipping tax is based on the cart items themselves." -msgstr "Eventuelt kan du kontrollera kva avgiftsklasse frakta skal ha, eller la det stå tomt, slik at frakt-avgiftene blri rekna ut frå varene i handlekorga." - -#: admin/settings/settings-init.php:982 -msgid "Shipping tax class based on cart items" -msgstr "Fraktavgifter er baserte på handlekorga" - -#: admin/settings/settings-init.php:987 -msgid "Rounding" -msgstr "Avrunding" - -#: admin/settings/settings-init.php:988 -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "Rund av avgiftene på subtotalnivå i staden for per varelinje" - -#: admin/settings/settings-init.php:995 -msgid "Additional Tax Classes" -msgstr "Fleire avgiftsklasser" - -#: admin/settings/settings-init.php:996 -msgid "List additonal tax classes below (1 per line). This is in addition to the default Standard Rate. Tax classes can be assigned to products." -msgstr "List opp fleire avgiftsklasser under (1 per linje). Dette kjem i tillegg til standardsatsen. Du kan bruka ulike avgiftsklasser på ulike varer." - -#: admin/settings/settings-init.php:1000 -msgid "Reduced Rate%sZero Rate" -msgstr "Redusert sats%sFritt" - -#: admin/settings/settings-init.php:1004 -msgid "Display prices during cart/checkout:" -msgstr "Vis prisar i handlekorga/kassa:" - -#: admin/settings/settings-init.php:1009 -msgid "Including tax" -msgstr "Inkl. mva." - -#: admin/settings/settings-init.php:1010 -msgid "Excluding tax" -msgstr "Ekskl. mva." - -#: admin/settings/settings-init.php:1022 -msgid "Email Sender Options" -msgstr "Val for epostsending" - -#: admin/settings/settings-init.php:1022 -msgid "The following options affect the sender (email address and name) used in WooCommerce emails." -msgstr "Her set du opp avsendaren (epostadresse og namn) for epostar frå WooCommerce." - -#: admin/settings/settings-init.php:1025 -msgid "\"From\" Name" -msgstr "«Frå»-namn" - -#: admin/settings/settings-init.php:1034 -msgid "\"From\" Email Address" -msgstr "«Frå»-epostadresse" - -#: admin/settings/settings-init.php:1047 -msgid "Email Template" -msgstr "Epostmal" - -#: admin/settings/settings-init.php:1047 -msgid "This section lets you customise the WooCommerce emails. Click here to preview your email template. For more advanced control copy woocommerce/templates/emails/ to yourtheme/woocommerce/emails/." -msgstr "Her kan du setja opp epostane frå WooCommerce. Klikk her for å sjå på epostmalen din. For meir avanserte innstillingar kan du kopiera woocommerce/templates/emails/ til wordpress-bunad/woocommerce/emails/." - -#: admin/settings/settings-init.php:1050 -msgid "Header Image" -msgstr "Tittelbilete" - -#: admin/settings/settings-init.php:1051 -msgid "Enter a URL to an image you want to show in the email's header. Upload your image using the media uploader." -msgstr "Skriv inn adressa til eit bilete du vil visa på toppen av eposten. Last opp biletet med opplastaren." - -#: admin/settings/settings-init.php:1059 -msgid "Email Footer Text" -msgstr "Botntekst i eposten" - -#: admin/settings/settings-init.php:1060 -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "Teksten som skal stå i botnfeltet på WooCommerce-epostar." - -#: admin/settings/settings-init.php:1064 -msgid "Powered by WooCommerce" -msgstr "Bruker WooCommerce" - -#: admin/settings/settings-init.php:1068 -msgid "Base Colour" -msgstr "Basisfarge" - -#: admin/settings/settings-init.php:1069 -msgid "The base colour for WooCommerce email templates. Default #557da1." -msgstr "Basisfarga for WooCommerce-epostmalar. Standarden er #557da1." - -#: admin/settings/settings-init.php:1077 -msgid "Background Colour" -msgstr "Bakgrunnsfarge" - -#: admin/settings/settings-init.php:1078 -msgid "The background colour for WooCommerce email templates. Default #f5f5f5." -msgstr "Bakgrunnsfarga for WooCommerce-epostmalar. Standarden er #f5f5f5." - -#: admin/settings/settings-init.php:1086 -msgid "Email Body Background Colour" -msgstr "Bakgrunnsfarge for epostar" - -#: admin/settings/settings-init.php:1087 -msgid "The main body background colour. Default #fdfdfd." -msgstr "Bakgrunnsfarga for hovuddelen. Standarden er #fdfdfd." - -#: admin/settings/settings-init.php:1095 -msgid "Email Body Text Colour" -msgstr "Brødtekstfarge for epostar" - -#: admin/settings/settings-init.php:1096 -msgid "The main body text colour. Default #505050." -msgstr "Brødtekstfarga for epostane. Standarden er #505050." - -#: admin/settings/settings-payment-gateways.php:27 -#: admin/settings/settings-shipping-methods.php:29 -#: admin/woocommerce-admin-init.php:767 -#: admin/woocommerce-admin-taxonomies.php:27 -#: admin/woocommerce-admin-taxonomies.php:121 -msgid "Default" -msgstr "Standardval" - -#: admin/settings/settings-payment-gateways.php:28 -msgid "Gateway" -msgstr "Portnar" - -#: admin/settings/settings-payment-gateways.php:45 -msgid "Gateway ID" -msgstr "Portnar-ID" - -#: admin/settings/settings-shipping-methods.php:23 -msgid "Shipping Methods" -msgstr "Fraktmåtar" - -#: admin/settings/settings-shipping-methods.php:25 -msgid "Drag and drop methods to control their display order." -msgstr "Dra og slepp metodane for å avgjera kva rekkjefylgje dei syner i" - -#: admin/settings/settings-shipping-methods.php:30 -msgid "Shipping Method" -msgstr "Fraktmåte" - -#: admin/settings/settings-shipping-methods.php:46 -msgid "Method ID" -msgstr "Metode-ID" - -#: admin/settings/settings-tax-rates.php:29 -msgid "Tax Rates for the \"%s\" Class" -msgstr "Avgiftssatsar for «%s»-klassa" - -#: admin/settings/settings-tax-rates.php:30 -msgid "Define tax rates for countries and states below. See here for available alpha-2 country codes." -msgstr "Set opp avgiftssatsar for land og delstatar under. Sjå her for tilgjengelege alfa-2-landkodar." - -#: admin/settings/settings-tax-rates.php:36 -msgid "Country Code" -msgstr "Landkode" - -#: admin/settings/settings-tax-rates.php:36 -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "Ein landkode med to bokstavar, td. NO. La stå tomt for å bruka alle." - -#: admin/settings/settings-tax-rates.php:38 -msgid "State Code" -msgstr "Delstatkode" - -#: admin/settings/settings-tax-rates.php:38 -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "Ein delstatskode med to bokstavar, td. AL. La stå tomt for å bruka alle." - -#: admin/settings/settings-tax-rates.php:40 -#: admin/settings/settings-tax-rates.php:217 -msgid "ZIP/Postcode" -msgstr "Postnummer" - -#: admin/settings/settings-tax-rates.php:40 -msgid "Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank to apply to all areas. Wildcards (*) can be used. Ranges for numeric postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "Postnummeret for denne regelen. Semikolon (;) deler mellom fleire verdiar. La stå tomt for å bruka i alle område. Du kan bruka jokerteikn (*). Område for numeriske postnummer (td. 8000-9990) blir brukt for alle postnumra i området." - -#: admin/settings/settings-tax-rates.php:42 -msgid "Cities for this rule. Semi-colon (;) separate multiple values. Leave blank to apply to all cities." -msgstr "Byar for denne regelen. Semikolon (;) deler mellom fleire verdiar. La stå tomt for å bruka i alle byar." - -#: admin/settings/settings-tax-rates.php:44 -msgid "Rate %" -msgstr "Sats %" - -#: admin/settings/settings-tax-rates.php:44 -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "Skriv inn ein avgiftssats (i prosent) med opp til 4 desimalar." - -#: admin/settings/settings-tax-rates.php:46 -msgid "Tax Name" -msgstr "Namn på avgifta" - -#: admin/settings/settings-tax-rates.php:46 -msgid "Enter a name for this tax rate." -msgstr "Skriv eit namn på denne avgiftssatsen." - -#: admin/settings/settings-tax-rates.php:48 -#: admin/settings/settings-tax-rates.php:217 -msgid "Priority" -msgstr "Prioritet" - -#: admin/settings/settings-tax-rates.php:48 -msgid "Choose a priority for this tax rate. Only 1 matching rate per priority will be used. To define multiple tax rates for a single area you need to specify a different priority per rate." -msgstr "Vel ein prioritet for denne avgiftssatsen. Det vil berre bli brukt 1 passande avgift per prioritet. For å setja opp fleire avgiftssatsar for eit enkelt område, må du laga ulike prioritetar per sats." - -#: admin/settings/settings-tax-rates.php:50 -#: admin/settings/settings-tax-rates.php:217 -msgid "Compound" -msgstr "Toppsats" - -#: admin/settings/settings-tax-rates.php:50 -msgid "Choose whether or not this is a compound rate. Compound tax rates are applied on top of other tax rates." -msgstr "Vel om dette er ein toppsats. Toppsatsar kjem på toppen av andre avgiftssatsar." - -#: admin/settings/settings-tax-rates.php:52 -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "Vel om denne avgiftssatsen skal gjelda frakt eller ikkje." - -#: admin/settings/settings-tax-rates.php:59 -msgid "Insert row" -msgstr "Set inn rad" - -#: admin/settings/settings-tax-rates.php:60 -msgid "Remove selected row(s)" -msgstr "Fjern rada/radene" - -#: admin/settings/settings-tax-rates.php:62 -msgid "Export CSV" -msgstr "Eksporter CSV" - -#: admin/settings/settings-tax-rates.php:63 -msgid "Import CSV" -msgstr "Importer CSV" - -#: admin/settings/settings-tax-rates.php:163 -msgid "No row(s) selected" -msgstr "Ingen valde rader" - -#: admin/settings/settings-tax-rates.php:217 -msgid "Country Code" -msgstr "Landskode" - -#: admin/settings/settings-tax-rates.php:217 -msgid "State Code" -msgstr "Delstatkode" - -#: admin/settings/settings-tax-rates.php:217 -msgid "Rate %" -msgstr "Sats %" - -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Name" -msgstr "Namn på avgifta" - -#: admin/woocommerce-admin-attributes.php:77 -msgid "Please, provide an attribute name, slug and type." -msgstr "Skriv inn namn, korttekst og type for eigenskapen." - -#: admin/woocommerce-admin-attributes.php:79 -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "Kortteksten «%s er for lang (maks 28 teikn). Kort han ned, er du snill." - -#: admin/woocommerce-admin-attributes.php:81 -msgid "Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "Kortteksten «%s» er ikkje lov fordi han er oppteken. Endra han, er du snill." - -#: admin/woocommerce-admin-attributes.php:85 -#: admin/woocommerce-admin-attributes.php:90 -msgid "Slug “%s” is already in use. Change it, please." -msgstr "Kortteksten «%s» er i bruk. Endra han, er du snill." - -#: admin/woocommerce-admin-attributes.php:226 -msgid "Edit Attribute" -msgstr "Rediger eigenskap" - -#: admin/woocommerce-admin-attributes.php:236 -#: admin/woocommerce-admin-attributes.php:375 -msgid "Name for the attribute (shown on the front-end)." -msgstr "Namn på eigenskapen (kjem på framsida av butikken)." - -#: admin/woocommerce-admin-attributes.php:241 -#: admin/woocommerce-admin-attributes.php:307 -#: admin/woocommerce-admin-attributes.php:379 -msgid "Slug" -msgstr "Korttekst" - -#: admin/woocommerce-admin-attributes.php:245 -#: admin/woocommerce-admin-attributes.php:381 -msgid "Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "Unikt kortnamn/referanse for eigenskapen. Må vera kortare enn 28 teikn." - -#: admin/woocommerce-admin-attributes.php:254 -#: admin/woocommerce-admin-attributes.php:387 -msgid "Select" -msgstr "Vel" - -#: admin/woocommerce-admin-attributes.php:255 -#: admin/woocommerce-admin-attributes.php:388 -msgid "Text" -msgstr "Tekst" - -#: admin/woocommerce-admin-attributes.php:258 -#: admin/woocommerce-admin-attributes.php:391 -msgid "Determines how you select attributes for products. Under admin panel -> products -> product data -> attributes -> values, Text allows manual entry whereas select allows pre-configured terms in a drop-down list." -msgstr "Avgjer korleis du vel vareeigenskapar. Tekst gjev høve til å skriva inn direkte på varesida, medan du kan laga utval med vel-eigenskapar. Viss du planlegg å bruka ein eigenskap for variantar, bør du bruka vel." - -#: admin/woocommerce-admin-attributes.php:263 -#: admin/woocommerce-admin-attributes.php:395 -msgid "Default sort order" -msgstr "Standardsortering" - -#: admin/woocommerce-admin-attributes.php:267 -#: admin/woocommerce-admin-attributes.php:335 -#: admin/woocommerce-admin-attributes.php:397 -msgid "Custom ordering" -msgstr "Eiga sortering" - -#: admin/woocommerce-admin-attributes.php:269 -#: admin/woocommerce-admin-attributes.php:332 -#: admin/woocommerce-admin-attributes.php:399 -msgid "Term ID" -msgstr "Vilkår-ID" - -#: admin/woocommerce-admin-attributes.php:271 -#: admin/woocommerce-admin-attributes.php:401 -msgid "Determines the sort order of the terms on the frontend shop product pages. If using custom ordering, you can drag and drop the terms in this attribute." -msgstr "Avgjer kva sortering som blir brukt på framsida av nettbutikken for denne eigenskapen. Viss du bruker eiga sortering, kan du dra og sleppa termane i denne eigenskapen" - -#: admin/woocommerce-admin-attributes.php:276 -msgid "Update" -msgstr "Oppdater" - -#: admin/woocommerce-admin-attributes.php:309 -msgid "Order by" -msgstr "Sorter etter" - -#: admin/woocommerce-admin-attributes.php:310 -msgid "Terms" -msgstr "Vilkår" - -#: admin/woocommerce-admin-attributes.php:355 -msgid "Configure terms" -msgstr "Lag vilkår" - -#: admin/woocommerce-admin-attributes.php:359 -msgid "No attributes currently exist." -msgstr "Det finst ingen eigenskapar enno." - -#: admin/woocommerce-admin-attributes.php:369 -msgid "Add New Attribute" -msgstr "Legg til ny eigenskap" - -#: admin/woocommerce-admin-attributes.php:370 -msgid "Attributes let you define extra product data, such as size or colour. You can use these attributes in the shop sidebar using the \"layered nav\" widgets. Please note: you cannot rename an attribute later on." -msgstr "Med eigenskapar kan du laga fleire opplysingar for ei vare, td. farge eller storleik. Du kan bruka eigenskapane i sidestolpen med småprogramma for lagnavigering. Merk at du ikkje kan endra namn på eigenskapane når du har laga dei." - -#: admin/woocommerce-admin-attributes.php:404 -msgid "Add Attribute" -msgstr "Legg til eigenskap" - -#: admin/woocommerce-admin-attributes.php:415 -msgid "Are you sure you want to delete this attribute?" -msgstr "Er du sikker på at du vil sletta denne eigenskapen?" - -#: admin/woocommerce-admin-content.php:26 -#: admin/woocommerce-admin-reports.php:30 -#: admin/woocommerce-admin-reports.php:75 -#: admin/woocommerce-admin-reports.php:91 -#: admin/woocommerce-admin-reports.php:102 -msgid "Overview" -msgstr "Oversyn" - -#: admin/woocommerce-admin-content.php:29 -msgid "Thank you for using WooCommerce :) Should you need help using or extending WooCommerce please read the documentation. For further assistance you can use the community forum or if you have access, our support desk." -msgstr "Takk for at du bruker WooCommerce :) Viss du treng hjelp når du bruker eller utvidar WooCommerce, kan du lesa dokumentasjonen. Treng du meir hjelp, kan du bruka forumet, eller, viss du har tilgang, kontakta hjelpemannskapet." - -#: admin/woocommerce-admin-content.php:31 -msgid "If you are having problems, or to assist us with support, please check the status page to identify any problems with your configuration:" -msgstr "Sjå over statussida og leit etter eventuelle feil i oppsettet der. Det kan hjelpa oss å hjelpa deg i fall du har problem:" - -#: admin/woocommerce-admin-content.php:33 -#: admin/woocommerce-admin-init.php:87 -#: admin/woocommerce-admin-status.php:26 -msgid "System Status" -msgstr "Systemstatus" - -#: admin/woocommerce-admin-content.php:35 -msgid "If you come across a bug, or wish to contribute to the project you can also get involved on GitHub." -msgstr "Viss du kjem over feil i programmet, kan du bidra til prosjektet ved å bli med på GitHub." - -#: admin/woocommerce-admin-content.php:43 -msgid "Here you can set up your store and customise it to fit your needs. The sections available from the settings page include:" -msgstr "Her kan du setja opp butikken, og tilpassa han slik du vil. På oppsettsida finn du desse avdelingane:" - -#: admin/woocommerce-admin-content.php:44 -msgid "General settings such as your shop base, currency, and script/styling options which affect features used in your store." -msgstr "Generelle innstillingar slik som basesider, valuta, og skript/stilval som avgjer kva funskjonar butikken din får." - -#: admin/woocommerce-admin-content.php:45 -#: admin/woocommerce-admin-settings.php:182 -msgid "Pages" -msgstr "Sider" - -#: admin/woocommerce-admin-content.php:45 -msgid "This is where important store page are defined. You can also set up other pages (such as a Terms page) here." -msgstr "Her set du opp kva sider butikken din skal vera på. Du kan òg laga til andre sider (slik som ei side for kjøpsvilkår) her." - -#: admin/woocommerce-admin-content.php:46 -msgid "Options for how things like price, images and weights appear in your product catalog." -msgstr "Val for korleis prisar, bilete og vekt viser i butikken din." - -#: admin/woocommerce-admin-content.php:47 -msgid "Options concerning stock and stock notices." -msgstr "Val for lagermengd og -varslingar." - -#: admin/woocommerce-admin-content.php:48 -msgid "Options concerning tax, including international and local tax rates." -msgstr "Val for skatt og moms, mellom anna internasjonale og lokale satsar." - -#: admin/woocommerce-admin-content.php:49 -msgid "This is where shipping options are defined, and shipping methods are set up." -msgstr "Her set du opp fraktval og -metodar." - -#: admin/woocommerce-admin-content.php:50 -msgid "Payment Methods" -msgstr "Betalingsmåtar" - -#: admin/woocommerce-admin-content.php:50 -msgid "This is where payment gateway options are defined, and individual payment gateways are set up." -msgstr "Her set du opp dei ulike betalingsløysingane, og vel kven av dei du vil bruka." - -#: admin/woocommerce-admin-content.php:51 -#: admin/woocommerce-admin-settings.php:187 -msgid "Emails" -msgstr "Epostar" - -#: admin/woocommerce-admin-content.php:51 -msgid "Here you can customise the way WooCommerce emails appear." -msgstr "Her kan du velja korleis WooCommerce-epostane skal sjå ut." - -#: admin/woocommerce-admin-content.php:52 -#: admin/woocommerce-admin-settings.php:188 -msgid "Integration" -msgstr "Innbygging" - -#: admin/woocommerce-admin-content.php:52 -msgid "The integration section contains options for third party services which integrate with WooCommerce." -msgstr "Tredjepartsinnstillingane inneheld val for ulike tredjepartsløysingar som samarbeider med WooCommerce." - -#: admin/woocommerce-admin-content.php:57 -#: admin/woocommerce-admin-init.php:64 -msgid "Reports" -msgstr "Rapportar" - -#: admin/woocommerce-admin-content.php:59 -msgid "The reports section can be accessed from the left-hand navigation menu. Here you can generate reports for sales and customers." -msgstr "Du kjem til rapportane med menyen til venstre. Her kan du laga sals- og kunderapportar." - -#: admin/woocommerce-admin-content.php:60 -#: admin/woocommerce-admin-reports.php:27 -#: admin/woocommerce-admin-reports.php:986 -#: admin/woocommerce-admin-reports.php:1082 -#: admin/woocommerce-admin-reports.php:1199 -msgid "Sales" -msgstr "Sal" - -#: admin/woocommerce-admin-content.php:60 -msgid "Reports for sales based on date, top sellers and top earners." -msgstr "Salsrapportar etter dato, bestseljarar og best inntening." - -#: admin/woocommerce-admin-content.php:61 -msgid "Coupon usage reports." -msgstr "Rapportar om kupongbruk." - -#: admin/woocommerce-admin-content.php:62 -#: admin/woocommerce-admin-reports.php:88 -msgid "Customers" -msgstr "Kundar" - -#: admin/woocommerce-admin-content.php:62 -msgid "Customer reports, such as signups per day." -msgstr "Kunderapportar, til dømes innmeldingar pr. dag." - -#: admin/woocommerce-admin-content.php:63 -msgid "Stock reports for low stock and out of stock items." -msgstr "Lagerrapportar for lågt eller tomt varelager." - -#: admin/woocommerce-admin-content.php:68 -#: admin/woocommerce-admin-dashboard.php:142 -msgid "Orders" -msgstr "Tingingar" - -#: admin/woocommerce-admin-content.php:70 -msgid "The orders section can be accessed from the left-hand navigation menu. Here you can view and manage customer orders." -msgstr "Du kjem til tingingane med menyen til venstre. Her kan du sjå på og handtera tingingar." - -#: admin/woocommerce-admin-content.php:71 -msgid "Orders can also be added from this section if you want to set them up for a customer manually." -msgstr "Du kan òg leggja til tingingane i denne avdelinga viss du vil setja dei opp for ein kunde manuelt." - -#: admin/woocommerce-admin-content.php:78 -msgid "Coupons can be managed from this section. Once added, customers will be able to enter coupon codes on the cart/checkout page. If a customer uses a coupon code they will be viewable when viewing orders." -msgstr "Her kan du handtera rabattkupongar. Når du har laga kupongar, kan kundane dine skriva inn rabattkodar i kassa eller ved betaling. Viss kundane bruker ein kupongkode, vil dei kunne sjå dei når dei ser gjennom tinginga si." - -#: admin/woocommerce-admin-content.php:82 -msgid "For more information:" -msgstr "For fleire opplysningar:" - -#: admin/woocommerce-admin-content.php:83 -#: admin/woocommerce-admin-init.php:62 -msgid "WooCommerce" -msgstr "WooCommerce" - -#: admin/woocommerce-admin-content.php:84 -msgid "Project on WordPress.org" -msgstr "Prosjektet på wordpress.org" - -#: admin/woocommerce-admin-content.php:85 -msgid "Project on Github" -msgstr "Prosjektet på Github" - -#: admin/woocommerce-admin-content.php:86 -msgid "WooCommerce Docs" -msgstr "WooCommerce-dokumentasjon" - -#: admin/woocommerce-admin-content.php:87 -msgid "Official Extensions" -msgstr "Offisielle utvidingar" - -#: admin/woocommerce-admin-content.php:88 -msgid "Official Themes" -msgstr "Offisielle bunader" - -#: admin/woocommerce-admin-dashboard.php:40 -msgid "Monthly Sales" -msgstr "Sal pr. månad" - -#: admin/woocommerce-admin-dashboard.php:43 -msgid "WooCommerce Right Now" -msgstr "WooCommerce nett no" - -#: admin/woocommerce-admin-dashboard.php:44 -msgid "WooCommerce Recent Orders" -msgstr "Siste tingingane i WooCommerce" - -#: admin/woocommerce-admin-dashboard.php:45 -msgid "WooCommerce Recent Reviews" -msgstr "Nyaste vurderingane i WooCommerce" - -#: admin/woocommerce-admin-dashboard.php:78 -msgid "Shop Content" -msgstr "Butikkinnhald" - -#: admin/woocommerce-admin-dashboard.php:84 -#: admin/woocommerce-admin-functions.php:194 -#: admin/woocommerce-admin-init.php:771 -#: admin/woocommerce-admin-reports.php:985 -#: admin/woocommerce-admin-reports.php:1081 -msgid "Product" -msgid_plural "Products" -msgstr[0] "Vare" -msgstr[1] "Varer" - -#: admin/woocommerce-admin-dashboard.php:98 -msgid "Product Category" -msgid_plural "Product Categories" -msgstr[0] "Varekategori" -msgstr[1] "Varekategoriar" - -#: admin/woocommerce-admin-dashboard.php:112 -msgid "Product Tag" -msgid_plural "Product Tags" -msgstr[0] "Varemerkelapp" -msgstr[1] "Varemerkelappar" - -#: admin/woocommerce-admin-dashboard.php:126 -msgid "Attribute" -msgid_plural "Attributes" -msgstr[0] "Vareeigenskap" -msgstr[1] "Vareeigenskapar" - -#: admin/woocommerce-admin-dashboard.php:148 -msgid "Pending" -msgstr "Ventar" - -#: admin/woocommerce-admin-dashboard.php:162 -msgid "On-Hold" -msgstr "På vent" - -#: admin/woocommerce-admin-dashboard.php:190 -msgid "Completed" -msgstr "Fullført" - -#: admin/woocommerce-admin-dashboard.php:207 -msgid "You are using WooCommerce %s." -msgstr "Du brukar WooCommerce %s." - -#: admin/woocommerce-admin-dashboard.php:238 -msgid "l jS \\of F Y h:i:s A" -msgstr "h:i:s D j. F Y" - -#: admin/woocommerce-admin-dashboard.php:239 -msgid "item" -msgid_plural "items" -msgstr[0] "element" -msgstr[1] "element" - -#: admin/woocommerce-admin-dashboard.php:239 -msgid "Total:" -msgstr "Sum:" - -#: admin/woocommerce-admin-dashboard.php:245 -msgid "There are no product orders yet." -msgstr "Ingen tingingar enno." - -#: admin/woocommerce-admin-dashboard.php:279 -msgid "out of 5" -msgstr "av 5" - -#: admin/woocommerce-admin-dashboard.php:287 -msgid "There are no product reviews yet." -msgstr "Ingen vurderingar enno." - -#: admin/woocommerce-admin-dashboard.php:428 -msgid "Sold" -msgstr "Selt" - -#: admin/woocommerce-admin-dashboard.php:429 -msgid "Earned" -msgstr "Tent" - -#: admin/woocommerce-admin-functions.php:184 -#: admin/woocommerce-admin-install.php:222 -msgid "Order Received" -msgstr "Tinginga motteken" - -#: admin/woocommerce-admin-functions.php:186 -msgid "Thank you, we are now processing your order. Your order's details are below." -msgstr "Mange takk! Me handterer tinginga di no. Under står det kva du tinga." - -#: admin/woocommerce-admin-functions.php:188 -#, fuzzy -msgid "Order:" -msgstr "Tinging:" - -#: admin/woocommerce-admin-functions.php:195 -msgid "Quantity" -msgstr "Mengd" - -#: admin/woocommerce-admin-functions.php:208 -msgid "Order total:" -msgstr "I alt:" - -#: admin/woocommerce-admin-functions.php:214 -msgid "Customer details" -msgstr "Kundedetaljar" - -#: admin/woocommerce-admin-functions.php:220 -msgid "Billing address" -msgstr "Fakturaadresse" - -#: admin/woocommerce-admin-functions.php:227 -msgid "Shipping address" -msgstr "Fraktadresse" - -#: admin/woocommerce-admin-functions.php:459 -msgid "Could not compile woocommerce.less:" -msgstr "Greidde ikkje byggja woocommerce.less:" - -#: admin/woocommerce-admin-functions.php:480 -#: admin/woocommerce-admin-functions.php:481 -msgid "Mark processing" -msgstr "Merk som «handterer»" - -#: admin/woocommerce-admin-functions.php:483 -#: admin/woocommerce-admin-functions.php:484 -msgid "Mark completed" -msgstr "Merk som fullført" - -#: admin/woocommerce-admin-functions.php:521 -msgid "Order status changed by bulk edit:" -msgstr "Ordrestatus endra ved masseendring:" - -#: admin/woocommerce-admin-functions.php:544 -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "Ordrestatusen er endra." -msgstr[1] "%s ordrestatusar er endra." - -#: admin/woocommerce-admin-init.php:86 -msgid "WooCommerce Settings" -msgstr "WooCommerce-innstillingar" - -#: admin/woocommerce-admin-init.php:87 -msgid "WooCommerce Status" -msgstr "WooCommerce-status" - -#: admin/woocommerce-admin-init.php:140 -#: admin/woocommerce-admin-init.php:142 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Tingingar" - -#: admin/woocommerce-admin-init.php:446 -msgid "Are you sure you want to remove the selected items? If you have previously reduced this item's stock, or this order was submitted by a customer, you will need to manually restore the item's stock." -msgstr "Er du sikker på at du vil fjerna desse varene? Viss du har redusert lagermengda for denne vara tidlegare, eller viss ein kunde har sendt inn ei tinging, må du gjenoppretta lagermengda manuelt." - -#: admin/woocommerce-admin-init.php:447 -msgid "Please select some items." -msgstr "Vel nokre element." - -#: admin/woocommerce-admin-init.php:448 -msgid "Remove this item meta?" -msgstr "Fjerne metaopplysingane til dette elementet?" - -#: admin/woocommerce-admin-init.php:449 -msgid "Remove this attribute?" -msgstr "Fjern denne eigenskapen?" - -#: admin/woocommerce-admin-init.php:457 -msgid "Enter a name for the new attribute term:" -msgstr "Skriv inn eit namn på den nye eigenskapstermen:" - -#: admin/woocommerce-admin-init.php:458 -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "Rekna ut summar ut frå varer, rabattar, og frakt?" - -#: admin/woocommerce-admin-init.php:459 -msgid "Calculate line taxes? This will calculate taxes based on the customers country. If no billing/shipping is set it will use the store base country." -msgstr "Rekna ut linjeavgift? Dette vil rekna ut avgifter ut frå landet kunden bur i. Viss det ikkje er skrive inn frakt/fakturaadresse, vil avgiftene bli rekna ut frå opphavslandet." - -#: admin/woocommerce-admin-init.php:460 -msgid "Copy billing information to shipping information? This will remove any currently entered shipping information." -msgstr "Kopier fakturaopplysingar til fraktopplysingar? Å gjera dette vil fjerna alle fraktopplysingar du har skrive inn." - -#: admin/woocommerce-admin-init.php:461 -msgid "Load the customer's billing information? This will remove any currently entered billing information." -msgstr "Last fakturaadressa til kunden? Å gjera dette vil fjerna all fakturainformasjon kunden har skrive inn." - -#: admin/woocommerce-admin-init.php:462 -msgid "Load the customer's shipping information? This will remove any currently entered shipping information." -msgstr "Last fraktadressa til kunden? Å gjera dette vil fjerna alle fraktadresser kunden har skrive inn." - -#: admin/woocommerce-admin-init.php:466 -msgid "No customer selected" -msgstr "Ingen kunde er vald" - -#: admin/woocommerce-admin-init.php:675 -msgid "Product updated. View Product" -msgstr "Oppdaterte vara. Sjå på vara" - -#: admin/woocommerce-admin-init.php:676 -#: admin/woocommerce-admin-init.php:691 -#: admin/woocommerce-admin-init.php:706 -msgid "Custom field updated." -msgstr "Det eigendefinerte feltet vart oppdatert." - -#: admin/woocommerce-admin-init.php:677 -#: admin/woocommerce-admin-init.php:692 -#: admin/woocommerce-admin-init.php:707 -msgid "Custom field deleted." -msgstr "Sletta eigendefinert felt." - -#: admin/woocommerce-admin-init.php:678 -msgid "Product updated." -msgstr "Vara er oppdatert." - -#: admin/woocommerce-admin-init.php:679 -msgid "Product restored to revision from %s" -msgstr "Vara gjenoppretta til utgåva frå %s" - -#: admin/woocommerce-admin-init.php:680 -msgid "Product published. View Product" -msgstr "Vara vart publisert. Sjå på vara" - -#: admin/woocommerce-admin-init.php:681 -msgid "Product saved." -msgstr "Lagra vara." - -#: admin/woocommerce-admin-init.php:682 -msgid "Product submitted. Preview Product" -msgstr "Vara er lagt ut. Vis vara" - -#: admin/woocommerce-admin-init.php:683 -msgid "Product scheduled for: %1$s. Preview Product" -msgstr "Vara er planlagt lagt ut: %1$s. Vis vara" - -#: admin/woocommerce-admin-init.php:684 -#: admin/woocommerce-admin-init.php:699 -#: admin/woocommerce-admin-init.php:714 -msgid "M j, Y @ G:i" -msgstr "j. F Y @ H:i" - -#: admin/woocommerce-admin-init.php:685 -msgid "Product draft updated. Preview Product" -msgstr "Produkt-kladden er oppdatert. Vis vara" - -#: admin/woocommerce-admin-init.php:690 -#: admin/woocommerce-admin-init.php:693 -#: admin/woocommerce-admin-init.php:695 -msgid "Order updated." -msgstr "Tinginga er oppdatert." - -#: admin/woocommerce-admin-init.php:694 -msgid "Order restored to revision from %s" -msgstr "Tinginga er gjenoppretta til utgåva frå %s" - -#: admin/woocommerce-admin-init.php:696 -msgid "Order saved." -msgstr "Tinginga er lagra." - -#: admin/woocommerce-admin-init.php:697 -msgid "Order submitted." -msgstr "Tinginga er send inn." - -#: admin/woocommerce-admin-init.php:698 -msgid "Order scheduled for: %1$s." -msgstr "Tinginga er planlagt til: %1$s." - -#: admin/woocommerce-admin-init.php:700 -msgid "Order draft updated." -msgstr "Oppdaterte tingingsutkastet." - -#: admin/woocommerce-admin-init.php:705 -#: admin/woocommerce-admin-init.php:708 -#: admin/woocommerce-admin-init.php:710 -msgid "Coupon updated." -msgstr "Kupongen er oppdatert." - -#: admin/woocommerce-admin-init.php:709 -msgid "Coupon restored to revision from %s" -msgstr "Kupongen er gjenoppretta til utgåva frå %s" - -#: admin/woocommerce-admin-init.php:711 -msgid "Coupon saved." -msgstr "Kupongen er lagra." - -#: admin/woocommerce-admin-init.php:712 -msgid "Coupon submitted." -msgstr "Kupongen er send inn." - -#: admin/woocommerce-admin-init.php:713 -msgid "Coupon scheduled for: %1$s." -msgstr "Kupongen er planlagt til: %1$s." - -#: admin/woocommerce-admin-init.php:715 -msgid "Coupon draft updated." -msgstr "Kupongutkastet er oppdatert." - -#: admin/woocommerce-admin-init.php:732 -msgid "Order notes" -msgstr "Merknader" - -#: admin/woocommerce-admin-init.php:747 -msgid "These settings control the permalinks used for products. These settings only apply when not using \"default\" permalinks above." -msgstr "Her kontrollerer du fastlenkjene for varer. Desse innstillingane er berre i bruk når du ikkje bruker«standard»-fastlenkjene over." - -#: admin/woocommerce-admin-init.php:754 -msgctxt "default-slug" -msgid "shop" -msgstr "butikk" - -#: admin/woocommerce-admin-init.php:755 -msgctxt "default-slug" -msgid "product" -msgstr "vare" - -#: admin/woocommerce-admin-init.php:776 -msgid "Shop base" -msgstr "Butikkbaseside" - -#: admin/woocommerce-admin-init.php:780 -msgid "Shop base with category" -msgstr "Butikkbase med kategori" - -#: admin/woocommerce-admin-init.php:786 -msgid "Custom Base" -msgstr "Eigen base" - -#: admin/woocommerce-admin-init.php:788 -msgid "Enter a custom base to use. A base must be set or WordPress will use default instead." -msgstr "Skriv inn ein eigen base å bruka. Du bruka ein base, elles kjem WordPress til å bruke standardbasen." - -#: admin/woocommerce-admin-init.php:816 -msgid "Product permalink base" -msgstr "Base for vare-fastlenkjer" - -#: admin/woocommerce-admin-init.php:821 -msgid "Product category base" -msgstr "Base for varekategoriar" - -#: admin/woocommerce-admin-init.php:828 -msgid "Product tag base" -msgstr "Base for varemerkelappar" - -#: admin/woocommerce-admin-init.php:835 -msgid "Product attribute base" -msgstr "Base for vareeigenskapar" - -#: admin/woocommerce-admin-install.php:192 -msgctxt "page_slug" -msgid "shop" -msgstr "butikk" - -#: admin/woocommerce-admin-install.php:192 -msgid "Shop" -msgstr "Butikk" - -#: admin/woocommerce-admin-install.php:195 -msgctxt "page_slug" -msgid "cart" -msgstr "handlekorg" - -#: admin/woocommerce-admin-install.php:195 -#: admin/woocommerce-admin-status.php:277 -msgid "Cart" -msgstr "Handlekorg" - -#: admin/woocommerce-admin-install.php:198 -msgctxt "page_slug" -msgid "checkout" -msgstr "kasse" - -#: admin/woocommerce-admin-install.php:201 -msgctxt "page_slug" -msgid "my-account" -msgstr "brukarkonto" - -#: admin/woocommerce-admin-install.php:201 -#: admin/woocommerce-admin-status.php:293 -msgid "My Account" -msgstr "Brukarkonto" - -#: admin/woocommerce-admin-install.php:207 -msgctxt "page_slug" -msgid "edit-address" -msgstr "endra-adresse" - -#: admin/woocommerce-admin-install.php:207 -msgid "Edit My Address" -msgstr "Endra adressa mi" - -#: admin/woocommerce-admin-install.php:210 -msgctxt "page_slug" -msgid "view-order" -msgstr "tinginga" - -#: admin/woocommerce-admin-install.php:210 -#: admin/woocommerce-admin-status.php:301 -msgid "View Order" -msgstr "Sjå på tinginga" - -#: admin/woocommerce-admin-install.php:213 -msgctxt "page_slug" -msgid "change-password" -msgstr "byt-passord" - -#: admin/woocommerce-admin-install.php:213 -#: admin/woocommerce-admin-status.php:305 -msgid "Change Password" -msgstr "Byt passord" - -#: admin/woocommerce-admin-install.php:216 -msgctxt "page_slug" -msgid "logout" -msgstr "logg-ut" - -#: admin/woocommerce-admin-install.php:216 -msgid "Logout" -msgstr "Logg ut" - -#: admin/woocommerce-admin-install.php:219 -msgctxt "page_slug" -msgid "pay" -msgstr "betal" - -#: admin/woocommerce-admin-install.php:219 -msgid "Checkout → Pay" -msgstr "Kasse → betaling" - -#: admin/woocommerce-admin-install.php:222 -msgctxt "page_slug" -msgid "order-received" -msgstr "tinginga-motteken" - -#: admin/woocommerce-admin-reports.php:36 -msgid "Sales by day" -msgstr "Sal pr. dag" - -#: admin/woocommerce-admin-reports.php:41 -msgid "Sales by month" -msgstr "Sal pr. månad" - -#: admin/woocommerce-admin-reports.php:46 -msgid "Taxes by month" -msgstr "Avgifter pr. månad" - -#: admin/woocommerce-admin-reports.php:51 -msgid "Product Sales" -msgstr "Varesal" - -#: admin/woocommerce-admin-reports.php:56 -msgid "Top sellers" -msgstr "Bestseljarar" - -#: admin/woocommerce-admin-reports.php:61 -msgid "Top earners" -msgstr "Toppinntekter" - -#: admin/woocommerce-admin-reports.php:66 -msgid "Sales by category" -msgstr "Sal pr. kategori" - -#: admin/woocommerce-admin-reports.php:81 -msgid "Discounts by coupon" -msgstr "Rabattar frå kupongar" - -#: admin/woocommerce-admin-reports.php:232 -#: admin/woocommerce-admin-reports.php:497 -#: admin/woocommerce-admin-reports.php:702 -#: admin/woocommerce-admin-reports.php:883 -msgid "Sales amount" -msgstr "Salssum" - -#: admin/woocommerce-admin-reports.php:237 -#: admin/woocommerce-admin-reports.php:497 -#: admin/woocommerce-admin-reports.php:702 -#: admin/woocommerce-admin-reports.php:883 -msgid "Number of sales" -msgstr "Kor mange sal" - -#: admin/woocommerce-admin-reports.php:369 -msgid "Total sales" -msgstr "Sal i alt" - -#: admin/woocommerce-admin-reports.php:371 -#: admin/woocommerce-admin-reports.php:377 -#: admin/woocommerce-admin-reports.php:383 -#: admin/woocommerce-admin-reports.php:389 -#: admin/woocommerce-admin-reports.php:395 -#: admin/woocommerce-admin-reports.php:401 -#: admin/woocommerce-admin-reports.php:644 -#: admin/woocommerce-admin-reports.php:650 -#: admin/woocommerce-admin-reports.php:656 -#: admin/woocommerce-admin-reports.php:662 -#: admin/woocommerce-admin-reports.php:828 -#: admin/woocommerce-admin-reports.php:834 -#: admin/woocommerce-admin-reports.php:840 -#: admin/woocommerce-admin-reports.php:846 -#: admin/woocommerce-admin-reports.php:1364 -#: admin/woocommerce-admin-reports.php:1370 -#: admin/woocommerce-admin-reports.php:1376 -#: admin/woocommerce-admin-reports.php:1810 -#: admin/woocommerce-admin-reports.php:1816 -#: admin/woocommerce-admin-reports.php:1822 -#: admin/woocommerce-admin-reports.php:1828 -#: admin/woocommerce-admin-reports.php:1834 -#: admin/woocommerce-admin-reports.php:1840 -#: admin/woocommerce-admin-reports.php:2304 -#: admin/woocommerce-admin-reports.php:2315 -#: admin/woocommerce-admin-reports.php:2326 -msgid "n/a" -msgstr "-" - -#: admin/woocommerce-admin-reports.php:375 -msgid "Total orders" -msgstr "Tingingar i alt" - -#: admin/woocommerce-admin-reports.php:377 -#: admin/woocommerce-admin-reports.php:650 -#: admin/woocommerce-admin-reports.php:834 -msgid "items" -msgstr "element" - -#: admin/woocommerce-admin-reports.php:381 -msgid "Average order total" -msgstr "Ordresum i snitt" - -#: admin/woocommerce-admin-reports.php:387 -msgid "Average order items" -msgstr "Tinga varer i snitt" - -#: admin/woocommerce-admin-reports.php:393 -msgid "Discounts used" -msgstr "Brukte rabattar" - -#: admin/woocommerce-admin-reports.php:399 -msgid "Total shipping costs" -msgstr "Frakt i alt" - -#: admin/woocommerce-admin-reports.php:407 -msgid "This month's sales" -msgstr "Salet denne månaden" - -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1356 -msgid "From:" -msgstr "Frå:" - -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1356 -msgid "To:" -msgstr "Til:" - -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:821 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1229 -#: admin/woocommerce-admin-reports.php:1356 -#: admin/woocommerce-admin-reports.php:1489 -#: admin/woocommerce-admin-reports.php:2293 -#: admin/woocommerce-admin-reports.php:2476 -msgid "Show" -msgstr "Vis" - -#: admin/woocommerce-admin-reports.php:642 -msgid "Total sales in range" -msgstr "Sal i perioden" - -#: admin/woocommerce-admin-reports.php:648 -msgid "Total orders in range" -msgstr "Tingingar i perioden" - -#: admin/woocommerce-admin-reports.php:654 -msgid "Average order total in range" -msgstr "Ordresum i snitt i perioden" - -#: admin/woocommerce-admin-reports.php:660 -msgid "Average order items in range" -msgstr "Tinga varer i snitt i perioden" - -#: admin/woocommerce-admin-reports.php:668 -msgid "Sales in range" -msgstr "Tingingar i perioden" - -#: admin/woocommerce-admin-reports.php:815 -#: admin/woocommerce-admin-reports.php:2287 -msgid "Year:" -msgstr "År:" - -#: admin/woocommerce-admin-reports.php:826 -msgid "Total sales for year" -msgstr "Sal i alt for året" - -#: admin/woocommerce-admin-reports.php:832 -msgid "Total orders for year" -msgstr "Tingingar gjennom året" - -#: admin/woocommerce-admin-reports.php:838 -msgid "Average order total for year" -msgstr "Snitt tingingar for året" - -#: admin/woocommerce-admin-reports.php:844 -msgid "Average order items for year" -msgstr "Kor mange varer tinga i snitt for året" - -#: admin/woocommerce-admin-reports.php:852 -msgid "Monthly sales for year" -msgstr "Månadssal for året" - -#: admin/woocommerce-admin-reports.php:1000 -msgid "Product does not exist" -msgstr "Vara finst ikkje" - -#: admin/woocommerce-admin-reports.php:1097 -msgid "Product no longer exists" -msgstr "Vara finst ikkje lenger" - -#: admin/woocommerce-admin-reports.php:1194 -msgid "Sales for %s:" -msgstr "Sal for %s:" - -#: admin/woocommerce-admin-reports.php:1198 -#: admin/woocommerce-admin-reports.php:2335 -msgid "Month" -msgstr "Månad" - -#: admin/woocommerce-admin-reports.php:1219 -msgid "No sales :(" -msgstr "Ingen sal :(" - -#: admin/woocommerce-admin-reports.php:1362 -msgid "Total orders containing coupons" -msgstr "Tingingar som har brukt kupongar" - -#: admin/woocommerce-admin-reports.php:1368 -msgid "Percent of orders containing coupons" -msgstr "Prosentdel av tingingane som har brukt kupongar" - -#: admin/woocommerce-admin-reports.php:1374 -msgid "Total coupon discount" -msgstr "Kupongrabatt i alt" - -#: admin/woocommerce-admin-reports.php:1383 -msgid "Most popular coupons" -msgstr "Dei mest populære kupongane" - -#: admin/woocommerce-admin-reports.php:1393 -msgid "Used 1 time" -msgid_plural "Used %d times" -msgstr[0] "Brukt 1 gong" -msgstr[1] "Brukt %s gonger" - -#: admin/woocommerce-admin-reports.php:1396 -#: admin/woocommerce-admin-reports.php:1418 -msgid "No coupons found" -msgstr "Fann ingen rabattkupongar" - -#: admin/woocommerce-admin-reports.php:1405 -msgid "Greatest discount amount" -msgstr "Største kupongrabatt" - -#: admin/woocommerce-admin-reports.php:1415 -msgid "Discounted %s" -msgstr "Rabattert %s" - -#: admin/woocommerce-admin-reports.php:1474 -#: admin/woocommerce-admin-reports.php:2453 -msgid "Show:" -msgstr "Vis:" - -#: admin/woocommerce-admin-reports.php:1531 -msgid "Coupon" -msgstr "Rabattkupong" - -#: admin/woocommerce-admin-reports.php:1614 -msgid "Top coupon" -msgstr "Beste kupongar" - -#: admin/woocommerce-admin-reports.php:1622 -msgid "Worst coupon" -msgstr "Verste kupongar" - -#: admin/woocommerce-admin-reports.php:1630 -msgid "Discount average" -msgstr "Snittrabatt" - -#: admin/woocommerce-admin-reports.php:1638 -msgid "Discount median" -msgstr "Medianrabatt" - -#: admin/woocommerce-admin-reports.php:1658 -msgid "Monthly discounts by coupon" -msgstr "Kupongrabattar pr. månad" - -#: admin/woocommerce-admin-reports.php:1808 -msgid "Total customers" -msgstr "Kundar i alt" - -#: admin/woocommerce-admin-reports.php:1814 -msgid "Total customer sales" -msgstr "Sal til kundar i alt" - -#: admin/woocommerce-admin-reports.php:1820 -msgid "Total guest sales" -msgstr "Sal til gjester i alt" - -#: admin/woocommerce-admin-reports.php:1826 -msgid "Total customer orders" -msgstr "Kundetingingar i alt" - -#: admin/woocommerce-admin-reports.php:1832 -msgid "Total guest orders" -msgstr "Gjestetingingar i alt" - -#: admin/woocommerce-admin-reports.php:1838 -msgid "Average orders per customer" -msgstr "Snitt tingingar pr. kunde" - -#: admin/woocommerce-admin-reports.php:1846 -msgid "Signups per day" -msgstr "Innmeldingar pr. dag" - -#: admin/woocommerce-admin-reports.php:2067 -msgid "Low stock" -msgstr "Låg lagermengd" - -#: admin/woocommerce-admin-reports.php:2090 -#: admin/woocommerce-admin-reports.php:2129 -msgid "%d in stock" -msgid_plural "%d in stock" -msgstr[0] "%d på lager" -msgstr[1] "%d på lager" - -#: admin/woocommerce-admin-reports.php:2095 -msgid "No products are low in stock." -msgstr "Ingen varer har låg lagermengd." - -#: admin/woocommerce-admin-reports.php:2127 -msgid "Marked out of stock" -msgstr "Merka ikkje på lager" - -#: admin/woocommerce-admin-reports.php:2134 -msgid "No products are out in stock." -msgstr "Det er ikkje tomt for nokon varer på lageret." - -#: admin/woocommerce-admin-reports.php:2298 -msgid "Total taxes for year" -msgstr "Avgifter i alt for året" - -#: admin/woocommerce-admin-reports.php:2309 -msgid "Total product taxes for year" -msgstr "Vareavgifter i alt for året" - -#: admin/woocommerce-admin-reports.php:2320 -msgid "Total shipping tax for year" -msgstr "Fraktavgifter i alt for året" - -#: admin/woocommerce-admin-reports.php:2336 -msgid "Total Sales" -msgstr "Samla sal" - -#: admin/woocommerce-admin-reports.php:2336 -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "Her er summen for «Ordresum»-feltet i tingingane dine." - -#: admin/woocommerce-admin-reports.php:2337 -msgid "Total Shipping" -msgstr "Samla frakt" - -#: admin/woocommerce-admin-reports.php:2337 -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "Her er summen for «Frakt i alt»-feltet i tingingane dine." - -#: admin/woocommerce-admin-reports.php:2338 -msgid "Total Product Taxes" -msgstr "Vareavgifter i alt" - -#: admin/woocommerce-admin-reports.php:2338 -msgid "This is the sum of the 'Cart Tax' field within your orders." -msgstr "Her er summen for «Avgifter handlekorg» i tingingane dine." - -#: admin/woocommerce-admin-reports.php:2339 -msgid "Total Shipping Taxes" -msgstr "Samla mva frakt" - -#: admin/woocommerce-admin-reports.php:2339 -msgid "This is the sum of the 'Shipping Tax' field within your orders." -msgstr "Her er summen for «Fraktavgifter» i tingingane dine." - -#: admin/woocommerce-admin-reports.php:2340 -msgid "Total Taxes" -msgstr "Samla avgifter" - -#: admin/woocommerce-admin-reports.php:2340 -msgid "This is the sum of the 'Cart Tax' and 'Shipping Tax' fields within your orders." -msgstr "Her er summen for «Avgifter handlekorg» og «fraktavgifter» i tingingane dine." - -#: admin/woocommerce-admin-reports.php:2341 -msgid "Net profit" -msgstr "Nettoinntening" - -#: admin/woocommerce-admin-reports.php:2341 -msgid "Total sales minus shipping and tax." -msgstr "Sal i alt minus frakt og mva." - -#: admin/woocommerce-admin-reports.php:2386 -msgid "Toggle tax rows" -msgstr "Bruk mva-rader" - -#: admin/woocommerce-admin-reports.php:2529 -msgid "Category" -msgstr "Kategori" - -#: admin/woocommerce-admin-reports.php:2632 -msgid "Top category" -msgstr "Beste kategori" - -#: admin/woocommerce-admin-reports.php:2641 -msgid "Worst category" -msgstr "Verste kategori" - -#: admin/woocommerce-admin-reports.php:2649 -msgid "Category sales average" -msgstr "Snittsal pr. kategori" - -#: admin/woocommerce-admin-reports.php:2660 -msgid "Category sales median" -msgstr "Mediansal pr. kategori" - -#: admin/woocommerce-admin-reports.php:2680 -msgid "Monthly sales by category" -msgstr "Månadssal fordelt på kategoriar" - -#: admin/woocommerce-admin-settings.php:45 -msgid "Action failed. Please refresh the page and retry." -msgstr "Dette gjekk ikkje. Last sida på nytt, og prøv ein gong til." - -#: admin/woocommerce-admin-settings.php:162 -msgid "Your settings have been saved." -msgstr "Endringane dine er lagra." - -#: admin/woocommerce-admin-settings.php:208 -msgid "More functionality and gateway options available via WC official extensions." -msgstr "Fleire funksjonar og betalingsløysingar finn du hjå WooCommerce offisielle utvidingar." - -#: admin/woocommerce-admin-settings.php:226 -msgid "Tax Rates" -msgstr "Avgiftssatsar" - -#: admin/woocommerce-admin-settings.php:253 -msgid "Email Options" -msgstr "Epostinnstillingar" - -#: admin/woocommerce-admin-settings.php:386 -msgid "Save changes" -msgstr "Lagra endringar" - -#: admin/woocommerce-admin-settings.php:427 -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "Endringane du har gjort vil bli borte viss du går vekk frå denne sida." - -#: admin/woocommerce-admin-settings.php:799 -msgid "Hard Crop" -msgstr "Skjer til bilete hardt" - -#: admin/woocommerce-admin-settings.php:824 -msgid "Select a page…" -msgstr "Vel side…" - -#: admin/woocommerce-admin-settings.php:847 -msgid "Choose a country…" -msgstr "Vel land…" - -#: admin/woocommerce-admin-settings.php:867 -msgid "Choose countries…" -msgstr "Vel land…" - -#: admin/woocommerce-admin-status.php:27 -#: admin/woocommerce-admin-status.php:622 -msgid "Tools" -msgstr "Verktøy" - -#: admin/woocommerce-admin-status.php:62 -msgid "Please include this information when requesting support:" -msgstr "Ta med denne informasjonen når du bed om hjelp:" - -#: admin/woocommerce-admin-status.php:63 -msgid "Download System Report File" -msgstr "Last ned systemrapportfil" - -#: admin/woocommerce-admin-status.php:71 -msgid "Environment" -msgstr "Tenarmiljø" - -#: admin/woocommerce-admin-status.php:77 -msgid "Home URL" -msgstr "Heime-URL" - -#: admin/woocommerce-admin-status.php:81 -msgid "Site URL" -msgstr "Nettstad-adresse" - -#: admin/woocommerce-admin-status.php:85 -msgid "WC Version" -msgstr "WC-versjon" - -#: admin/woocommerce-admin-status.php:89 -msgid "WC Database Version" -msgstr "WC-databaseversjon" - -#: admin/woocommerce-admin-status.php:93 -msgid "WP Version" -msgstr "WP-versjon" - -#: admin/woocommerce-admin-status.php:97 -msgid "Web Server Info" -msgstr "Info om vevtenaren" - -#: admin/woocommerce-admin-status.php:101 -msgid "PHP Version" -msgstr "PHP-versjon" - -#: admin/woocommerce-admin-status.php:105 -msgid "MySQL Version" -msgstr "MySQL-versjon" - -#: admin/woocommerce-admin-status.php:109 -msgid "WP Memory Limit" -msgstr "Minnegrense for WP" - -#: admin/woocommerce-admin-status.php:114 -msgid "%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "%s -Me tilrår at du har minst 64MB minne tilgjengeleg. Les meir: Korleis auka minnet for PHP (engelsk)" - -#: admin/woocommerce-admin-status.php:121 -msgid "WP Debug Mode" -msgstr "Avlusingsmodus" - -#: admin/woocommerce-admin-status.php:125 -msgid "WP Max Upload Size" -msgstr "Største opplastingsstorleik i WP" - -#: admin/woocommerce-admin-status.php:129 -msgid "PHP Post Max Size" -msgstr "Største innsendingsstorleik for PHP" - -#: admin/woocommerce-admin-status.php:133 -msgid "PHP Time Limit" -msgstr "PHP-tidsgrense" - -#: admin/woocommerce-admin-status.php:137 -msgid "WC Logging" -msgstr "WC-Logging" - -#: admin/woocommerce-admin-status.php:140 -msgid "Log directory is writable." -msgstr "Loggmappa er skrivbar." - -#: admin/woocommerce-admin-status.php:142 -msgid "Log directory (woocommerce/logs/) is not writable. Logging will not be possible." -msgstr "Loggmappa (woocommerce/logs/) er ikkje skrivbar. Det er ikkje mogleg å logga." - -#: admin/woocommerce-admin-status.php:149 -msgid "fsockopen/cURL" -msgstr "fsockopen/cURL" - -#: admin/woocommerce-admin-status.php:152 -msgid "Your server has fsockopen and cURL enabled." -msgstr "Tenaren din har fsockopen- og cURL-funksjonane i bruk." - -#: admin/woocommerce-admin-status.php:154 -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "Tenaren din har fsocopen i bruk, cURL er ikkje i bruk." - -#: admin/woocommerce-admin-status.php:156 -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "Tenaren din har cURL i bruk, fsockopen er ikkje i bruk." - -#: admin/woocommerce-admin-status.php:160 -msgid "Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider." -msgstr "Tenaren din har korkje fsockopen eller cURL i bruk - PayPal-direktebetaling og andre skript som samhandlar med andre tenarar vil ikkje fungera. Kontakt nettverten din." - -#: admin/woocommerce-admin-status.php:165 -msgid "SOAP Client" -msgstr "SOAP-klient" - -#: admin/woocommerce-admin-status.php:167 -msgid "Your server has the SOAP Client class enabled." -msgstr "Tenaren din bruker SOAP-klientklassen." - -#: admin/woocommerce-admin-status.php:170 -msgid "Your server does not have the SOAP Client class enabled - some gateway plugins which use SOAP may not work as expected." -msgstr "Tenaren din bruker ikkje SOAP-klient-klassen - portnarinnstikk som bruker SOAP vil truleg ikkje verka slik du ventar." - -#: admin/woocommerce-admin-status.php:175 -msgid "WP Remote Post" -msgstr "Fjerninnlegg for WP" - -#: admin/woocommerce-admin-status.php:186 -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "wp_remote_post() verka - PayPal-direktebetalinga fungerer." - -#: admin/woocommerce-admin-status.php:189 -msgid "wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:" -msgstr "wp_remote_post() verka ikkje. PayPal-direktebetaling verkar ikkje på denne tenaren. Kontakt nettverten din. Feil: " - -#: admin/woocommerce-admin-status.php:192 -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "wp_remote_post() verka ikkje. Det kan henda at PayPal-direktebetaling ikkje verkar på denne tenaren." - -#: admin/woocommerce-admin-status.php:215 -msgid "Plugins" -msgstr "Innstikk" - -#: admin/woocommerce-admin-status.php:221 -msgid "Installed Plugins" -msgstr "Installerte innstikk" - -#: admin/woocommerce-admin-status.php:236 -msgid "by" -msgstr "av" - -#: admin/woocommerce-admin-status.php:236 -msgid "version" -msgstr "versjon" - -#: admin/woocommerce-admin-status.php:259 -msgid "Force SSL" -msgstr "Tving SSL" - -#: admin/woocommerce-admin-status.php:266 -msgid "WC Pages" -msgstr "WC-sider" - -#: admin/woocommerce-admin-status.php:273 -msgid "Shop Base" -msgstr "Butikkbaseside" - -#: admin/woocommerce-admin-status.php:285 -msgid "Pay" -msgstr "Betal" - -#: admin/woocommerce-admin-status.php:289 -msgid "Thanks" -msgstr "Takk" - -#: admin/woocommerce-admin-status.php:297 -msgid "Edit Address" -msgstr "Endra adresse" - -#: admin/woocommerce-admin-status.php:329 -msgid "Page not set" -msgstr "Sida er ikkje sett opp" - -#: admin/woocommerce-admin-status.php:339 -msgid "Page does not exist" -msgstr "Sida finst ikkje" - -#: admin/woocommerce-admin-status.php:344 -msgid "Page does not contain the shortcode: %s" -msgstr "Sida inneheld ikkje denne kortkoden: %s" - -#: admin/woocommerce-admin-status.php:363 -msgid "WC Taxonomies" -msgstr "WC-taksonomiar" - -#: admin/woocommerce-admin-status.php:369 -msgid "Order Statuses" -msgstr "Tingingsstatusar" - -#: admin/woocommerce-admin-status.php:379 -msgid "Product Types" -msgstr "Varetypar" - -#: admin/woocommerce-admin-status.php:392 -msgid "Templates" -msgstr "Malar" - -#: admin/woocommerce-admin-status.php:398 -msgid "Template Overrides" -msgstr "Overstyrte malar" - -#: admin/woocommerce-admin-status.php:416 -msgid "No core overrides present in theme." -msgstr "Ingen overstyringar i WP-bunaden." - -#: admin/woocommerce-admin-status.php:510 -msgid "WC Transients" -msgstr "WC-toppar" - -#: admin/woocommerce-admin-status.php:511 -msgid "Clear transients" -msgstr "Tøm toppar" - -#: admin/woocommerce-admin-status.php:512 -msgid "This tool will clear the product/shop transients cache." -msgstr "Dette verktyet fjernar toppane frå produkt/varemellomlageret ditt." - -#: admin/woocommerce-admin-status.php:515 -msgid "Expired Transients" -msgstr "Utgåtte toppar" - -#: admin/woocommerce-admin-status.php:516 -msgid "Clear expired transients" -msgstr "Tømte utgåtte toppar" - -#: admin/woocommerce-admin-status.php:517 -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "Dette verktyet tømmer ALLE utgåtte toppar frå WordPress." - -#: admin/woocommerce-admin-status.php:520 -msgid "Term counts" -msgstr "Termteljing" - -#: admin/woocommerce-admin-status.php:521 -msgid "Recount terms" -msgstr "Tell termane på nytt" - -#: admin/woocommerce-admin-status.php:522 -msgid "This tool will recount product terms - useful when changing your settings in a way which hides products from the catalog." -msgstr "Dette verktyet tel varetermar på nytt - det er nyttig når du endrar innstillingane slik at nokre varer blir gøymde frå katalogen." - -#: admin/woocommerce-admin-status.php:525 -msgid "Capabilities" -msgstr "Evner" - -#: admin/woocommerce-admin-status.php:526 -msgid "Reset capabilities" -msgstr "Nullstill evner" - -#: admin/woocommerce-admin-status.php:527 -msgid "This tool will reset the admin, customer and shop_manager roles to default. Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "Dette verktyet nullstiller styrar-, kunde- og butikkeigarrollene til standardverdiane. Gjer dette viss brukarane dine ikkje får tilgang tilalle WooCommerce-styrarsidene." - -#: admin/woocommerce-admin-status.php:537 -msgid "Product Transients Cleared" -msgstr "Tømte varetoppane" - -#: admin/woocommerce-admin-status.php:578 -msgid "%d Transients Rows Cleared" -msgstr "Tømte %d topprader" - -#: admin/woocommerce-admin-status.php:586 -msgid "Roles successfully reset" -msgstr "Nullstilte rollene" - -#: admin/woocommerce-admin-status.php:598 -msgid "Terms successfully recounted" -msgstr "Talde termane på nytt" - -#: admin/woocommerce-admin-status.php:607 -msgid "There was an error calling %s::%s" -msgstr "Ein feil oppstod då «%s» vart køyrt: %s" - -#: admin/woocommerce-admin-status.php:610 -msgid "There was an error calling %s" -msgstr "Ein feil oppstod då «%s» vart køyrt" - -#: admin/woocommerce-admin-taxonomies.php:25 -#: admin/woocommerce-admin-taxonomies.php:118 -msgid "Display type" -msgstr "Visingstype" - -#: admin/woocommerce-admin-taxonomies.php:29 -#: admin/woocommerce-admin-taxonomies.php:123 -msgid "Subcategories" -msgstr "Underkategoriar" - -#: admin/woocommerce-admin-taxonomies.php:30 -#: admin/woocommerce-admin-taxonomies.php:124 -msgid "Both" -msgstr "Båe" - -#: admin/woocommerce-admin-taxonomies.php:34 -#: admin/woocommerce-admin-taxonomies.php:129 -msgid "Thumbnail" -msgstr "Miniatyr" - -#: admin/woocommerce-admin-taxonomies.php:38 -#: admin/woocommerce-admin-taxonomies.php:134 -msgid "Upload/Add image" -msgstr "Legg til/last opp bilete" - -#: admin/woocommerce-admin-taxonomies.php:39 -#: admin/woocommerce-admin-taxonomies.php:135 -msgid "Remove image" -msgstr "Fjern bilete" - -#: admin/woocommerce-admin-taxonomies.php:64 -#: admin/woocommerce-admin-taxonomies.php:156 -msgid "Use image" -msgstr "Bruk bilete" - -#: admin/woocommerce-admin-taxonomies.php:222 -msgid "Product categories for your store can be managed here. To change the order of categories on the front-end you can drag and drop to sort them. To see more categories listed click the \"screen options\" link at the top of the page." -msgstr "Her styrer du varekategoriar. For å endra kva rekkjefylgje kategoriane kjem i på framsida av butikken, kan du dra og sleppa dei. For å få opp fleire kategoriar, klikkar du «skjermval»-lenkja øvst på denne sida." - -#: admin/woocommerce-admin-taxonomies.php:237 -msgid "Shipping classes can be used to group products of similar type. These groups can then be used by certain shipping methods to provide different rates to different products." -msgstr "Du kan bruka fraktklasser til å gruppera varer av same type. Desse gruppene kan du bruke med visse fraktmåtar for å gje ulike fraktsatsar til ulike varer." - -#: admin/woocommerce-admin-taxonomies.php:365 -msgid "Configure shipping class" -msgstr "Set opp fraktklasse" - -#: admin/woocommerce-admin-users.php:26 -msgid "Billing Address" -msgstr "Fakturaadresse" - -#: admin/woocommerce-admin-users.php:27 -msgid "Shipping Address" -msgstr "Fraktadresse" - -#: admin/woocommerce-admin-users.php:28 -msgid "Paying Customer?" -msgstr "Betaler kunden?" - -#: admin/woocommerce-admin-users.php:29 -msgid "Completed Orders" -msgstr "Fullførte tingingar" - -#: admin/woocommerce-admin-users.php:144 -msgid "Customer Billing Address" -msgstr "Fakturaadressa til kunden" - -#: admin/woocommerce-admin-users.php:147 -#: admin/woocommerce-admin-users.php:196 -msgid "First name" -msgstr "Førenamn" - -#: admin/woocommerce-admin-users.php:151 -#: admin/woocommerce-admin-users.php:200 -msgid "Last name" -msgstr "Etternamn" - -#: admin/woocommerce-admin-users.php:176 -msgid "Country or state code" -msgstr "Delstat/fylke eller statkode" - -#: admin/woocommerce-admin-users.php:180 -#: admin/woocommerce-admin-users.php:229 -msgid "2 letter Country code" -msgstr "Landkode (to bokstavar)" - -#: admin/woocommerce-admin-users.php:183 -msgid "Telephone" -msgstr "Telefon" - -#: admin/woocommerce-admin-users.php:193 -msgid "Customer Shipping Address" -msgstr "Fraktadressa til kunden" - -#: admin/woocommerce-admin-users.php:225 -msgid "State/County or state code" -msgstr "Delstat/fylke eller statkode" - diff --git a/i18n/languages/woocommerce-admin-pl_PL.mo b/i18n/languages/woocommerce-admin-pl_PL.mo deleted file mode 100644 index 61cf7a02495..00000000000 Binary files a/i18n/languages/woocommerce-admin-pl_PL.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-admin-pl_PL.po b/i18n/languages/woocommerce-admin-pl_PL.po deleted file mode 100644 index f1f88e9e4c3..00000000000 --- a/i18n/languages/woocommerce-admin-pl_PL.po +++ /dev/null @@ -1,10181 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce v1.6.1\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-01-09 09:36:51+00:00\n" -"PO-Revision-Date: 2013-02-08 12:00+0100\n" -"Last-Translator: Ramon van Belzen \n" -"Language-Team: \n" -"Language: pl_PL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" -"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" -"X-Poedit-Basepath: ../../\n" -"X-Textdomain-Support: yes\n" -"X-Generator: Poedit 1.5.5\n" -"X-Poedit-SearchPath-0: .\n" - -# @ woocommerce -#: admin/importers/importers-init.php:13 -#, fuzzy -msgid "WooCommerce Tax Rates (CSV)" -msgstr "Najwyżej oceniane produkty WooCommerce" - -#: admin/importers/importers-init.php:13 -msgid "Import tax rates to your store via a csv file." -msgstr "" - -#: admin/importers/tax-rates-importer.php:103 -#: admin/importers/tax-rates-importer.php:186 -#: admin/importers/tax-rates-importer.php:226 -#: admin/importers/tax-rates-importer.php:241 -msgid "Sorry, there has been an error." -msgstr "" - -#: admin/importers/tax-rates-importer.php:104 -msgid "The file does not exist, please try again." -msgstr "" - -#: admin/importers/tax-rates-importer.php:187 -msgid "The CSV is invalid." -msgstr "" - -#: admin/importers/tax-rates-importer.php:198 -msgid "" -"Import complete - imported %s tax rates and skipped " -"%s." -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:208 -#, fuzzy -msgid "All done!" -msgstr "Wszystkie kraje" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:208 -#, fuzzy -msgid "View Tax Rates" -msgstr "Stawki podatkowe" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:259 -#, fuzzy -msgid "Import Tax Rates" -msgstr "Stawki importowe" - -#: admin/importers/tax-rates-importer.php:282 -msgid "" -"Hi there! Upload a CSV file containing tax rates to import the contents into " -"your shop. Choose a .csv file to upload, then click \"Upload file and import" -"\"." -msgstr "" - -#: admin/importers/tax-rates-importer.php:284 -msgid "" -"Tax rates need to be defined with columns in a specific order (10 columns). " -"Click here to download a sample." -msgstr "" - -#: admin/importers/tax-rates-importer.php:292 -msgid "" -"Before you can upload your import file, you will need to fix the following " -"error:" -msgstr "" - -#: admin/importers/tax-rates-importer.php:301 -msgid "Choose a file from your computer:" -msgstr "" - -#: admin/importers/tax-rates-importer.php:307 -msgid "Maximum size: %s" -msgstr "" - -#: admin/importers/tax-rates-importer.php:312 -msgid "OR enter path to file:" -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:319 -#, fuzzy -msgid "Delimiter" -msgstr "Bez ograniczeń" - -#: admin/importers/tax-rates-importer.php:325 -msgid "Upload file and import" -msgstr "" - -# @ woocommerce -#: admin/includes/duplicate_product.php:23 -msgid "No product to duplicate has been supplied!" -msgstr "Żaden produkt nie został wybrany do zduplikowania!" - -# @ woocommerce -#: admin/includes/duplicate_product.php:43 -msgid "Product creation failed, could not find original product:" -msgstr "" -"Stworzenie produktu nie powiodło się, nie znaleziono oryginalnego produktu:" - -# @ woocommerce -#: admin/includes/duplicate_product.php:89 -msgid "(Copy)" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-install.php:6 -msgid "" -"Welcome to WooCommerce – You're almost ready to start " -"selling :)" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-install.php:7 -msgid "Install WooCommerce Pages" -msgstr "Zainstaluj strony Sklepu WooCommerce" - -# @ woocommerce -#: admin/includes/notice-install.php:7 -msgid "Skip setup" -msgstr "Pomiń instalację" - -# @ woocommerce -#: admin/includes/notice-installed.php:6 -msgid "" -"WooCommerce has been installed – You're ready to " -"start selling :)" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-installed.php:8 admin/includes/notice-updated.php:8 -#: admin/woocommerce-admin-content.php:41 admin/woocommerce-admin-init.php:81 -#: admin/woocommerce-admin-status.php:187 -msgid "Settings" -msgstr "Ustawienia" - -#: admin/includes/notice-installed.php:8 admin/includes/notice-updated.php:8 -msgid "Docs" -msgstr "" - -#: admin/includes/notice-update.php:6 -msgid "" -"Data Update Required – We just need to update your " -"install to the latest version" -msgstr "" - -#: admin/includes/notice-update.php:7 -msgid "Run the updater" -msgstr "" - -#: admin/includes/notice-update.php:12 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" - -#: admin/includes/notice-updated.php:6 -msgid "" -"WooCommerce has been updated – You're ready to " -"continue selling :)" -msgstr "" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:50 -#: admin/woocommerce-admin-init.php:837 -msgctxt "slug" -msgid "product-category" -msgstr "kategoria-produktu" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:51 -#: admin/woocommerce-admin-init.php:850 -msgctxt "slug" -msgid "product-tag" -msgstr "tag-produktu" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:59 -msgctxt "slug" -msgid "product" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:31 -msgid "Make a duplicate from this product" -msgstr "Zduplikuj ten produkt" - -# @ woocommerce -#: admin/post-types/product.php:32 -msgid "Duplicate" -msgstr "Zduplikuj" - -# @ woocommerce -#: admin/post-types/product.php:61 -msgid "Copy to a new draft" -msgstr "Skopiuj do nowego szkicu" - -# @ woocommerce -#: admin/post-types/product.php:85 admin/woocommerce-admin-taxonomies.php:297 -msgid "Image" -msgstr "Obrazek" - -# @ woocommerce -#: admin/post-types/product.php:87 -#: admin/post-types/writepanels/writepanel-product_data.php:368 -#: admin/post-types/writepanels/writepanel-product_data.php:447 -#: admin/woocommerce-admin-attributes.php:232 -#: admin/woocommerce-admin-attributes.php:268 -#: admin/woocommerce-admin-attributes.php:306 -#: admin/woocommerce-admin-attributes.php:329 -#: admin/woocommerce-admin-attributes.php:373 -#: admin/woocommerce-admin-attributes.php:398 -#: admin/woocommerce-admin-init.php:393 -msgid "Name" -msgstr "Nazwa" - -# @ woocommerce -#: admin/post-types/product.php:90 admin/post-types/product.php:563 -#: admin/post-types/writepanels/variation-admin-html.php:46 -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#: admin/woocommerce-admin-reports.php:2063 -#: admin/woocommerce-admin-reports.php:2098 -msgid "SKU" -msgstr "SKU" - -# @ woocommerce -#: admin/post-types/product.php:93 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:83 -#: admin/woocommerce-admin-content.php:62 -#: admin/woocommerce-admin-reports.php:99 -msgid "Stock" -msgstr "Magazyn" - -# @ woocommerce -#: admin/post-types/product.php:95 admin/post-types/product.php:574 -#: admin/post-types/product.php:793 admin/woocommerce-admin-functions.php:196 -msgid "Price" -msgstr "Cena" - -# @ woocommerce -#: admin/post-types/product.php:97 -msgid "Categories" -msgstr "Kategorie" - -# @ woocommerce -#: admin/post-types/product.php:98 -msgid "Tags" -msgstr "Tagi" - -# @ woocommerce -#: admin/post-types/product.php:99 admin/post-types/product.php:638 -#: admin/post-types/product.php:910 -#: admin/post-types/writepanels/writepanel-product_data.php:1044 -#: admin/woocommerce-admin-init.php:406 -msgid "Featured" -msgstr "Wyróżniony" - -# @ woocommerce -#: admin/post-types/product.php:100 admin/woocommerce-admin-attributes.php:250 -#: admin/woocommerce-admin-attributes.php:308 -#: admin/woocommerce-admin-attributes.php:385 -msgid "Type" -msgstr "Typ" - -# @ woocommerce -#: admin/post-types/product.php:101 admin/post-types/shop_order.php:50 -msgid "Date" -msgstr "Data" - -# @ woocommerce -#: admin/post-types/product.php:150 -#, fuzzy -msgid "Edit this item" -msgstr "Edytuj" - -# @ woocommerce -# @ default -#: admin/post-types/product.php:150 -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#: admin/post-types/writepanels/writepanel-order_data.php:383 -#: admin/post-types/writepanels/writepanel-product_data.php:1047 -#: admin/woocommerce-admin-attributes.php:322 -msgid "Edit" -msgstr "Edytuj" - -# @ woocommerce -#: admin/post-types/product.php:151 -msgid "Edit this item inline" -msgstr "Edytuj" - -# @ woocommerce -#: admin/post-types/product.php:151 -msgid "Quick Edit" -msgstr "Szybka edycja" - -# @ woocommerce -#: admin/post-types/product.php:155 admin/post-types/shop_coupon.php:65 -msgid "Restore this item from the Trash" -msgstr "Przywróc z Kosza" - -# @ woocommerce -#: admin/post-types/product.php:155 admin/post-types/shop_coupon.php:65 -msgid "Restore" -msgstr "Przywróć" - -# @ woocommerce -#: admin/post-types/product.php:157 admin/post-types/shop_coupon.php:67 -msgid "Move this item to the Trash" -msgstr "Przenieś do Kosza" - -# @ woocommerce -#: admin/post-types/product.php:157 admin/post-types/shop_coupon.php:67 -msgid "Trash" -msgstr "Kosz" - -# @ woocommerce -#: admin/post-types/product.php:159 admin/post-types/shop_coupon.php:69 -msgid "Delete this item permanently" -msgstr "Usuń na zawsze" - -# @ woocommerce -#: admin/post-types/product.php:159 admin/post-types/shop_coupon.php:69 -#: admin/post-types/writepanels/writepanel-order_data.php:456 -msgid "Delete Permanently" -msgstr "Usuń" - -# @ woocommerce -#: admin/post-types/product.php:164 -msgid "Preview “%s”" -msgstr "Zobacz “%s”" - -# @ woocommerce -#: admin/post-types/product.php:164 -msgid "Preview" -msgstr "Zobacz" - -# @ woocommerce -#: admin/post-types/product.php:166 -msgid "View “%s”" -msgstr "Zobacz “%s”" - -# @ woocommerce -#: admin/post-types/product.php:166 admin/post-types/shop_order.php:171 -msgid "View" -msgstr "Zobacz" - -# @ woocommerce -#: admin/post-types/product.php:213 -msgid "Grouped" -msgstr "Grupowy" - -# @ woocommerce -#: admin/post-types/product.php:215 -msgid "External/Affiliate" -msgstr "Zewnętrzny/Afiliacyjny" - -# @ woocommerce -#: admin/post-types/product.php:219 admin/post-types/product.php:413 -#: admin/post-types/writepanels/variation-admin-html.php:166 -#: admin/post-types/writepanels/writepanel-product_data.php:52 -msgid "Virtual" -msgstr "Wirtualny" - -# @ woocommerce -#: admin/post-types/product.php:221 admin/post-types/product.php:409 -#: admin/post-types/writepanels/variation-admin-html.php:164 -#: admin/post-types/writepanels/writepanel-product_data.php:58 -msgid "Downloadable" -msgstr "Do pobrania" - -# @ woocommerce -#: admin/post-types/product.php:223 -msgid "Simple" -msgstr "Prosty" - -# @ woocommerce -#: admin/post-types/product.php:227 admin/post-types/product.php:393 -msgid "Variable" -msgstr "Produkt z wariantami" - -# @ woocommerce -#: admin/post-types/product.php:250 -#, fuzzy -msgid "Toggle featured" -msgstr "Wyróżniony" - -#: admin/post-types/product.php:252 -msgid "yes" -msgstr "" - -#: admin/post-types/product.php:254 -msgid "no" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:261 admin/post-types/product.php:647 -#: admin/post-types/product.php:934 -#: admin/post-types/writepanels/writepanel-product_data.php:227 -msgid "In stock" -msgstr "Na stanie" - -# @ woocommerce -#: admin/post-types/product.php:263 admin/post-types/product.php:648 -#: admin/post-types/product.php:935 -#: admin/post-types/writepanels/writepanel-product_data.php:228 -#: admin/woocommerce-admin-reports.php:2083 -msgid "Out of stock" -msgstr "Brak w magazynie" - -# @ woocommerce -#: admin/post-types/product.php:379 -msgid "Show all product types" -msgstr "Pokaż wszystkie typy produktów" - -# @ woocommerce -#: admin/post-types/product.php:387 -#: admin/post-types/writepanels/writepanel-product_data.php:39 -msgid "Grouped product" -msgstr "Grupowy produkt" - -# @ woocommerce -#: admin/post-types/product.php:389 -#: admin/post-types/writepanels/writepanel-product_data.php:40 -msgid "External/Affiliate product" -msgstr "Produkt zewnętrzny/afiliacyjny" - -# @ woocommerce -#: admin/post-types/product.php:391 -#: admin/post-types/writepanels/writepanel-product_data.php:38 -msgid "Simple product" -msgstr "Prosty produkt" - -# @ woocommerce -#: admin/post-types/product.php:405 -msgid "Show all sub-types" -msgstr "Pokaż wszystkie podtypy" - -# @ woocommerce -#: admin/post-types/product.php:526 -msgid "[%s with SKU of %s]" -msgstr "[%s z SKU %s]" - -# @ woocommerce -#: admin/post-types/product.php:532 -msgid "[%s with ID of %d]" -msgstr "[%s z ID %d]" - -# @ woocommerce -#: admin/post-types/product.php:558 admin/post-types/product.php:789 -#: admin/post-types/writepanels/writepanels-init.php:46 -#: admin/settings/settings-init.php:571 -msgid "Product Data" -msgstr "Dane produktu" - -# @ woocommerce -#: admin/post-types/product.php:576 -msgid "Regular price" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:581 admin/post-types/product.php:817 -msgid "Sale" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:583 -msgid "Sale price" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:594 admin/post-types/product.php:843 -#: admin/post-types/writepanels/variation-admin-html.php:90 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:269 -msgid "Weight" -msgstr "Waga" - -# @ woocommerce -#: admin/post-types/product.php:605 admin/post-types/product.php:867 -msgid "L/W/H" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:607 admin/post-types/product.php:883 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:85 -#: admin/post-types/writepanels/writepanel-product_data.php:282 -msgid "Length" -msgstr "Długość" - -# @ woocommerce -#: admin/post-types/product.php:608 admin/post-types/product.php:884 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:86 -#: admin/post-types/writepanels/writepanel-product_data.php:283 -#: admin/woocommerce-admin-settings.php:825 -msgid "Width" -msgstr "Szerokość" - -# @ woocommerce -#: admin/post-types/product.php:609 admin/post-types/product.php:885 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:87 -#: admin/post-types/writepanels/writepanel-product_data.php:284 -#: admin/woocommerce-admin-settings.php:827 -msgid "Height" -msgstr "Wysokość" - -# @ woocommerce -#: admin/post-types/product.php:619 admin/post-types/product.php:891 -msgid "Visibility" -msgstr "Wyświetlanie" - -# @ woocommerce -#: admin/post-types/product.php:624 admin/post-types/product.php:897 -msgid "Catalog & search" -msgstr "Katalog i wyszukiwarka" - -# @ woocommerce -#: admin/post-types/product.php:625 admin/post-types/product.php:898 -#: admin/post-types/writepanels/writepanel-product_data.php:1033 -#: admin/woocommerce-admin-content.php:46 -#: admin/woocommerce-admin-settings.php:220 -msgid "Catalog" -msgstr "Katalog" - -# @ woocommerce -# @ default -#: admin/post-types/product.php:626 admin/post-types/product.php:899 -#: admin/post-types/writepanels/writepanel-product_data.php:1034 -msgid "Search" -msgstr "Szukaj" - -# @ woocommerce -#: admin/post-types/product.php:627 admin/post-types/product.php:900 -#: admin/post-types/writepanels/writepanel-product_data.php:1035 -msgid "Hidden" -msgstr "Ukryty" - -# @ woocommerce -#: admin/post-types/product.php:642 admin/post-types/product.php:928 -msgid "In stock?" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:663 admin/post-types/product.php:946 -#: admin/post-types/writepanels/writepanel-product_data.php:208 -msgid "Manage stock?" -msgstr "Zarządzać zapasami?" - -# @ woocommerce -#: admin/post-types/product.php:667 admin/post-types/product.php:965 -#: admin/post-types/product.php:981 -#: admin/post-types/writepanels/writepanel-product_data.php:215 -msgid "Stock Qty" -msgstr "Ilość na stanie" - -# @ woocommerce -#: admin/post-types/product.php:798 admin/post-types/product.php:822 -#: admin/post-types/product.php:848 admin/post-types/product.php:872 -#: admin/post-types/product.php:896 admin/post-types/product.php:915 -#: admin/post-types/product.php:933 admin/post-types/product.php:951 -#: admin/post-types/product.php:970 -msgid "— No Change —" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:799 admin/post-types/product.php:823 -#: admin/post-types/product.php:849 admin/post-types/product.php:873 -#: admin/post-types/product.php:971 -msgid "Change to:" -msgstr "" - -#: admin/post-types/product.php:800 admin/post-types/product.php:824 -msgid "Increase by (fixed amount or %):" -msgstr "" - -#: admin/post-types/product.php:801 admin/post-types/product.php:825 -msgid "Decrease by (fixed amount or %):" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:811 admin/post-types/product.php:836 -#, fuzzy -msgid "Enter price" -msgstr "Cena min." - -#: admin/post-types/product.php:826 -msgid "Decrease regular price by (fixed amount or %):" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:916 admin/post-types/product.php:952 -#: admin/post-types/shop_order.php:190 admin/woocommerce-admin-status.php:202 -#: admin/woocommerce-admin-status.php:364 -msgid "Yes" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:917 admin/post-types/product.php:953 -#: admin/post-types/shop_order.php:192 admin/woocommerce-admin-status.php:202 -#: admin/woocommerce-admin-status.php:364 -msgid "No" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:1181 -msgid "Sort Products" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:1220 -#, fuzzy -msgid "Insert into product" -msgstr "Proszę oceń ten produkt." - -# @ woocommerce -#: admin/post-types/product.php:1221 -#, fuzzy -msgid "Uploaded to this product" -msgstr "Proszę oceń ten produkt." - -# @ woocommerce -#: admin/post-types/shop_coupon.php:25 -msgid "Code" -msgstr "Kod" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:26 -msgid "Coupon type" -msgstr "Typ kuponu" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:27 -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Coupon amount" -msgstr "Wartość kuponu" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:28 -msgid "Description" -msgstr "Opis" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:29 -msgid "Product IDs" -msgstr "ID produktów" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:30 -#, fuzzy -msgid "Usage / Limit" -msgstr "Limit użycia" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:31 -#: admin/post-types/writepanels/writepanel-coupon_data.php:165 -msgid "Expiry date" -msgstr "Data wygaśnięcia" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:56 -#, fuzzy -msgid "Edit coupon" -msgstr "Edytuj kupon" - -#: admin/post-types/shop_coupon.php:114 -msgid "%s / %s" -msgstr "" - -#: admin/post-types/shop_coupon.php:116 -msgid "%s / ∞" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:149 admin/post-types/shop_order.php:282 -msgid "Show all statuses" -msgstr "Pokaż wszystkie statusy" - -# @ woocommerce -#: admin/post-types/shop_order.php:43 -#: admin/settings/settings-payment-gateways.php:29 -#: admin/settings/settings-shipping-methods.php:31 -msgid "Status" -msgstr "Status" - -# @ woocommerce -#: admin/post-types/shop_order.php:44 -msgid "Order" -msgstr "Zamówienie" - -# @ woocommerce -#: admin/post-types/shop_order.php:45 -msgid "Billing" -msgstr "Płatności" - -# @ woocommerce -#: admin/post-types/shop_order.php:46 -#: admin/post-types/writepanels/writepanel-order_data.php:529 -#: admin/post-types/writepanels/writepanel-product_data.php:81 -#: admin/settings/settings-tax-rates.php:52 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-content.php:49 -#: admin/woocommerce-admin-settings.php:224 -msgid "Shipping" -msgstr "Wysyłka" - -# @ woocommerce -#: admin/post-types/shop_order.php:47 -msgid "Order Total" -msgstr "Suma zamówienia" - -# @ woocommerce -#: admin/post-types/shop_order.php:48 -#: admin/post-types/writepanels/writepanels-init.php:71 -msgid "Order Notes" -msgstr "Uwagi do zamówienia" - -# @ woocommerce -#: admin/post-types/shop_order.php:49 -msgid "Customer Notes" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:51 -#: admin/post-types/writepanels/writepanel-order_data.php:382 -#: admin/post-types/writepanels/writepanel-order_data.php:429 -msgid "Actions" -msgstr "Akcje" - -# @ woocommerce -#: admin/post-types/shop_order.php:95 -#: admin/post-types/writepanels/writepanel-order_data.php:93 -msgid "Guest" -msgstr "Gość" - -# @ woocommerce -#: admin/post-types/shop_order.php:98 -msgid "Order %s" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:98 -msgid "made by" -msgstr "przez" - -# @ woocommerce -#: admin/post-types/shop_order.php:101 -msgid "Email:" -msgstr "E-mail:" - -# @ woocommerce -#: admin/post-types/shop_order.php:104 -msgid "Tel:" -msgstr "Tel:" - -# @ woocommerce -#: admin/post-types/shop_order.php:114 admin/post-types/shop_order.php:123 -msgid "Via" -msgstr "Przez" - -# @ woocommerce -#: admin/post-types/shop_order.php:131 -msgid "Unpublished" -msgstr "Nieopublikowany" - -# @ woocommerce -#: admin/post-types/shop_order.php:133 -msgid "Y/m/d g:i:s A" -msgstr "Y/m/d g:i:s A" - -# @ woocommerce -#: admin/post-types/shop_order.php:139 -msgid "%s ago" -msgstr "%s temu" - -# @ woocommerce -#: admin/post-types/shop_order.php:141 -msgid "Y/m/d" -msgstr "Y/m/d" - -# @ woocommerce -#: admin/post-types/shop_order.php:158 -#: admin/woocommerce-admin-dashboard.php:176 -msgid "Processing" -msgstr "W trakcie realizacji" - -# @ woocommerce -#: admin/post-types/shop_order.php:165 -msgid "Complete" -msgstr "Złóż zamówienie" - -# @ woocommerce -#: admin/post-types/shop_order.php:301 admin/post-types/shop_order.php:326 -msgid "Show all customers" -msgstr "Pokaż wszystkich klientów" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:6 -msgid "Revoke Access" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:7 -#: admin/post-types/writepanels/variation-admin-html.php:7 -#: admin/post-types/writepanels/writepanel-product_data.php:361 -#: admin/post-types/writepanels/writepanel-product_data.php:440 -#: admin/woocommerce-admin-init.php:395 -msgid "Click to toggle" -msgstr "Kliknij, aby przełączyć" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -msgid "File %d: %s" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:9 -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:16 -msgid "Downloads Remaining" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:19 -#: admin/post-types/writepanels/variation-admin-html.php:141 -#: admin/post-types/writepanels/variation-admin-html.php:149 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Unlimited" -msgstr "Bez ograniczeń" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:22 -msgid "Access Expires" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:23 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Never" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:10 -#, fuzzy -msgid "Fee Name" -msgstr "Nazwa znacznika" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:15 -#: admin/post-types/writepanels/order-item-html.php:82 -msgid "Tax class" -msgstr "Klasa podatkowa" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:17 -#: admin/post-types/writepanels/order-tax-html.php:8 -#: admin/post-types/writepanels/writepanel-order_data.php:551 -#: admin/post-types/writepanels/writepanel-order_data.php:650 -#: admin/woocommerce-admin-reports.php:1642 -#: admin/woocommerce-admin-reports.php:2633 -#: admin/woocommerce-admin-reports.php:2642 -#: admin/woocommerce-admin-users.php:90 admin/woocommerce-admin-users.php:112 -msgid "N/A" -msgstr "brak" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:18 -#: admin/post-types/writepanels/writepanel-product_data.php:177 -msgid "Taxable" -msgstr "Opodatkowany" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:23 -#: admin/post-types/writepanels/order-item-html.php:89 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:54 -#: admin/post-types/writepanels/writepanel-product_data.php:184 -#: admin/settings/settings-init.php:1027 -#: admin/settings/settings-tax-rates.php:29 -#: admin/woocommerce-admin-settings.php:262 -msgid "Standard" -msgstr "Standardowa" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:39 -#: admin/post-types/writepanels/order-item-html.php:106 -#: admin/woocommerce-admin-reports.php:1546 -#: admin/woocommerce-admin-reports.php:1599 -#: admin/woocommerce-admin-reports.php:2346 -#: admin/woocommerce-admin-reports.php:2518 -#: admin/woocommerce-admin-reports.php:2595 -msgid "Total" -msgstr "Suma" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:9 -msgid "Product ID:" -msgstr "ID produktu:" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:12 -msgid "Variation ID:" -msgstr "ID wariantu:" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:15 -msgid "Product SKU:" -msgstr "SKU produktu:" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:33 -msgid "Add meta" -msgstr "Dodaj znacznik" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:108 -msgid "Subtotal" -msgstr "Podsuma" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:6 -#, fuzzy -msgid "Tax Rate:" -msgstr "Stawki podatkowe" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:16 -#: admin/post-types/writepanels/writepanel-order_data.php:617 -#, fuzzy -msgid "Sales Tax:" -msgstr "Sprzedaż" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:20 -#: admin/post-types/writepanels/writepanel-order_data.php:625 -msgid "Shipping Tax:" -msgstr "Podatek wysyłki:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:6 -#: admin/post-types/writepanels/writepanel-product_data.php:360 -#: admin/post-types/writepanels/writepanel-product_data.php:439 -#: admin/woocommerce-admin-init.php:394 -msgid "Remove" -msgstr "Usuń" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:20 -msgid "Any" -msgstr "Dowolny" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:46 -msgid "" -"Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "" -"Wpisz SKU dla tego wariantu lub zostaw puste pole, aby użyć SKU produktu " -"nadrzędnego." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:57 -msgid "Stock Qty:" -msgstr "Ilość na stanie:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:57 -msgid "" -"Enter a quantity to enable stock management for this variation, or leave " -"blank to use the variable product stock options." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:66 -msgid "Price:" -msgstr "Cena:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:70 -msgid "Sale Price:" -msgstr "Cena wyprzedaży:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:70 -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Schedule" -msgstr "Harmonogram" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:70 -#, fuzzy -msgid "Cancel schedule" -msgstr "Harmonogram" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:77 -#, fuzzy -msgid "Sale start date:" -msgstr "Daty wyprzedaży" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:78 -#: admin/post-types/writepanels/writepanel-product_data.php:136 -msgctxt "placeholder" -msgid "From…" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:81 -#, fuzzy -msgid "Sale end date:" -msgstr "Daty wyprzedaży" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:82 -#: admin/post-types/writepanels/writepanel-product_data.php:137 -msgctxt "placeholder" -msgid "To…" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:90 -msgid "" -"Enter a weight for this variation or leave blank to use the parent product " -"weight." -msgstr "" -"Wpisz wagę dla tego wariantu lub pozostaw puste pole, aby użyć wagi produktu " -"nadrzędnego." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:98 -msgid "Dimensions (L×W×H)" -msgstr "Wymiary (Dł.×Szer.×Wys.)" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:109 -msgid "Shipping class:" -msgstr "Klasa wysyłkowa:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:113 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:53 -msgid "Same as parent" -msgstr "Taki sam jak nadrzedny" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:123 -msgid "Tax class:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:133 -#, fuzzy -msgid "File paths:" -msgstr "Ścieżka pliku:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:133 -#, fuzzy -msgid "" -"Enter one or more File Paths, one per line, to make this variation a " -"downloadable product, or leave blank." -msgstr "" -"Wpisz ścieżkę pliku jeśli wariant produktu jest do pobrania lub pozostaw " -"puste pole." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:134 -#: admin/post-types/writepanels/writepanel-product_data.php:153 -#, fuzzy -msgid "File paths/URLs, one per line" -msgstr "Ścieżka pliku/URL" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:135 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -#, fuzzy -msgid "Choose a file" -msgstr "Wybierz opcje" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:135 -msgid "Upload" -msgstr "Prześlij" - -#: admin/post-types/writepanels/variation-admin-html.php:135 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Insert file URL" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:140 -msgid "Download Limit:" -msgstr "Limit pobrań:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:140 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Leave blank for unlimited re-downloads." -msgstr "Pozostaw puste pole, aby umożliwić nieograniczoną liczbę pobrań." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:148 -#, fuzzy -msgid "Download Expiry:" -msgstr "Pobieranie:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:148 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "" -"Enter the number of days before a download link expires, or leave blank." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:162 -msgid "Enabled" -msgstr "Włączony" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:164 -msgid "" -"Enable this option if access is given to a downloadable file upon purchase " -"of a product" -msgstr "Zaznacz jeśli po zakupie produktu dawany jest dostęp do pobrania pliku" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:166 -msgid "" -"Enable this option if a product is not shipped or there is no shipping cost" -msgstr "" -"Zaznacz jeśli produkt nie wymaga fizycznej wysyłki lub nie ma kosztów wysyłki" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -#, fuzzy -msgid "Coupon description" -msgstr "Opis produktu" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Optionally enter a description for this coupon for your reference." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:42 -msgid "Discount type" -msgstr "Typ rabatu" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Enter an amount e.g. 2.99" -msgstr "Wpisz wartość, np. 2,99" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "Enable free shipping" -msgstr "Darmowa wysyłka" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -#, fuzzy -msgid "" -"Check this box if the coupon grants free shipping. The free " -"shipping method must be enabled with the \"must use coupon\" setting " -"checked." -msgstr "" -"Zaznacz jeśli kupon uprawnia do darmowej wysyłki (zobacz Darmowa wysyłka)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "Individual use" -msgstr "Indywidualne użycie" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -#, fuzzy -msgid "" -"Check this box if the coupon cannot be used in conjunction with other " -"coupons." -msgstr "" -"Zaznacz jeśli kupon nie może być używany w połączeniu z innymi kuponami" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "Apply before tax" -msgstr "Zastosuj przed podatkiem" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -#, fuzzy -msgid "" -"Check this box if the coupon should be applied before calculating cart tax." -msgstr "Zaznacz jeśli kupon powinien być zastosowany przed doliczeniem podatku" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:62 -msgid "Minimum amount" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:62 -msgid "No minimum" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:62 -msgid "" -"This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:71 -#: admin/woocommerce-admin-taxonomies.php:28 -#: admin/woocommerce-admin-taxonomies.php:122 -msgid "Products" -msgstr "Produkty" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:72 -#: admin/post-types/writepanels/writepanel-order_data.php:396 -#: admin/post-types/writepanels/writepanel-product_data.php:500 -#: admin/post-types/writepanels/writepanel-product_data.php:521 -#: admin/woocommerce-admin-reports.php:1229 -msgid "Search for a product…" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:91 -msgid "" -"Products which need to be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are discounted." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:96 -#, fuzzy -msgid "Exclude products" -msgstr "Nowe produkty" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:97 -msgid "Search for a product…" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:116 -msgid "" -"Products which must not be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are not discounted." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:123 -#, fuzzy -msgid "Product categories" -msgstr "Kategorie produktów" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:124 -msgid "Any category" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:132 -msgid "" -"A product must be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will be discounted." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:137 -#, fuzzy -msgid "Exclude categories" -msgstr "Wyklucz obrazek" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:138 -msgid "No categories" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:146 -msgid "" -"Product must not be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will not be discounted." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -#, fuzzy -msgid "Customer emails" -msgstr "Dane klienta" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "Any customer" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "" -"Comma separate email addresses to restrict this coupon to specific billing " -"and user emails." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:159 -msgid "Usage limit" -msgstr "Limit użycia" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:159 -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:159 -msgid "How many times this coupon can be used before it is void." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:165 -msgctxt "placeholder" -msgid "Never expire" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:165 -msgid "The date this coupon will expire, YYYY-MM-DD." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:202 -msgid "" -"Coupon code already exists - customers will use the latest coupon with this " -"code." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:59 -msgid "Order Details" -msgstr "Szczegóły zamówienia" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:62 -#, fuzzy -msgid "Order number" -msgstr "Sortuj wg:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:67 -#, fuzzy -msgid "Customer IP:" -msgstr "Klient:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:74 -#, fuzzy -msgid "General Details" -msgstr "Ustawienia główne" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:76 -msgid "Order status:" -msgstr "Status zamówienia:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:86 -msgid "Order Date:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:87 -msgid "h" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#: admin/settings/settings-init.php:630 -msgid "m" -msgstr "m" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:91 -msgid "Customer:" -msgstr "Klient:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:131 -msgid "Customer Note:" -msgstr "Uwagi klienta" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:132 -msgid "Customer's notes about the order" -msgstr "Uwagi klienta do zamówienia" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:140 -msgid "Billing Details" -msgstr "Szczegóły płatności" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:144 -#: admin/post-types/writepanels/writepanel-order_data.php:234 -msgid "First Name" -msgstr "Imię" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:148 -#: admin/post-types/writepanels/writepanel-order_data.php:238 -msgid "Last Name" -msgstr "Nazwisko" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:152 -#: admin/post-types/writepanels/writepanel-order_data.php:242 -#: admin/woocommerce-admin-users.php:155 admin/woocommerce-admin-users.php:204 -msgid "Company" -msgstr "Firma" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:156 -#: admin/post-types/writepanels/writepanel-order_data.php:246 -#: admin/woocommerce-admin-users.php:159 admin/woocommerce-admin-users.php:208 -msgid "Address 1" -msgstr "Linia adresu 1" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:160 -#: admin/post-types/writepanels/writepanel-order_data.php:250 -#: admin/woocommerce-admin-users.php:163 admin/woocommerce-admin-users.php:212 -msgid "Address 2" -msgstr "Linia adresu 2" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:164 -#: admin/post-types/writepanels/writepanel-order_data.php:254 -#: admin/settings/settings-tax-rates.php:42 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-users.php:167 admin/woocommerce-admin-users.php:216 -msgid "City" -msgstr "Miasto" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:168 -#: admin/post-types/writepanels/writepanel-order_data.php:258 -#: admin/woocommerce-admin-users.php:171 admin/woocommerce-admin-users.php:220 -msgid "Postcode" -msgstr "Kod pocztowy" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:172 -#: admin/post-types/writepanels/writepanel-order_data.php:262 -#: admin/woocommerce-admin-users.php:179 admin/woocommerce-admin-users.php:228 -msgid "Country" -msgstr "Kraj" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:175 -#: admin/post-types/writepanels/writepanel-order_data.php:265 -msgid "Select a country…" -msgstr "Wybierz kraj…" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:178 -#: admin/post-types/writepanels/writepanel-order_data.php:268 -#: admin/woocommerce-admin-users.php:175 admin/woocommerce-admin-users.php:224 -msgid "State/County" -msgstr "Województwo" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:182 -#: admin/woocommerce-admin-users.php:187 -msgid "Email" -msgstr "E-mail" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:185 -msgid "Phone" -msgstr "Telefon" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:193 -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#: admin/post-types/writepanels/writepanel-order_data.php:277 -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "Address" -msgstr "Adres" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:195 -msgid "No billing address set." -msgstr "Adres płatności nie ustawiony." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:208 -#, fuzzy -msgid "Load billing address" -msgstr "Uzupełnij adres płatności klienta" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:230 -msgid "Shipping Details" -msgstr "Szczegóły wysyłki" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "No shipping address set." -msgstr "Adres wysyłki nie ustawiony." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:292 -#, fuzzy -msgid "Load shipping address" -msgstr "Uzupełnij adres wysyłki klienta." - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Copy from billing" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:339 -msgid "Item" -msgstr "Rzecz" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:343 -#: admin/post-types/writepanels/writepanel-product_data.php:189 -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Class" -msgstr "Klasa podatkowa" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:343 -msgid "Tax class for the line item" -msgstr "Klasa podatkowa" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:345 -msgid "Qty" -msgstr "Ilość" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:347 -msgid "Cost" -msgstr "Koszt" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:347 -#, fuzzy -msgid "Line subtotals are before pre-tax discounts, totals are after." -msgstr "Koszt i podatek przed rabatami" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:349 -#: admin/settings/settings-tax-rates.php:387 -#: admin/settings/settings-tax-rates.php:466 -#: admin/woocommerce-admin-content.php:48 -#: admin/woocommerce-admin-settings.php:223 -msgid "Tax" -msgstr "Podatek" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:384 -#, fuzzy -msgid "Delete Lines" -msgstr "Usuń notkę" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:386 -#, fuzzy -msgid "Stock Actions" -msgstr "Akcje" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:387 -#, fuzzy -msgid "Reduce Line Stock" -msgstr "Zmniejsz zapasy" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:388 -#, fuzzy -msgid "Increase Line Stock" -msgstr "%s w magazynie" - -#: admin/post-types/writepanels/writepanel-order_data.php:392 -#: admin/post-types/writepanels/writepanel-order_data.php:449 -msgid "Apply" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:398 -msgid "Add item(s)" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:399 -#, fuzzy -msgid "Add fee" -msgstr "Dodaj nowy" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:430 -#, fuzzy -msgid "Resend order emails" -msgstr "Średnia liczba zamawianych produktów" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:458 -msgid "Move to Trash" -msgstr "Przenieś do kosza" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:463 -msgid "Save Order" -msgstr "Zapisz zamówienie" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:463 -msgid "Save/update the order" -msgstr "Zapisz/uaktualnij zamówienie" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:488 -msgid "Discounts" -msgstr "Rabaty" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:492 -msgid "Cart Discount:" -msgstr "Rabat na cały koszyk:" - -#: admin/post-types/writepanels/writepanel-order_data.php:492 -msgid "Discounts before tax - calculated by comparing subtotals to totals." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:500 -msgid "Order Discount:" -msgstr "Rabat na zamówienie:" - -#: admin/post-types/writepanels/writepanel-order_data.php:500 -msgid "Discounts after tax - user defined." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:533 -#, fuzzy -msgid "Label:" -msgstr "Etykieta" - -#: admin/post-types/writepanels/writepanel-order_data.php:534 -msgid "The shipping title the customer sees" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:541 -#, fuzzy -msgid "Cost:" -msgstr "Koszt" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:542 -msgid "(ex. tax)" -msgstr "(bez podatku)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:549 -msgid "Method:" -msgstr "Metoda:" - -#: admin/post-types/writepanels/writepanel-order_data.php:571 -#: admin/post-types/writepanels/writepanel-order_data.php:573 -#: admin/post-types/writepanels/writepanel-order_data.php:666 -#: admin/post-types/writepanels/writepanel-order_data.php:668 -msgid "Other" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:584 -msgid "Tax Rows" -msgstr "Podatki" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:609 -msgid "+ Add tax row" -msgstr "+ Dodaj podatek" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:609 -msgid "" -"These rows contain taxes for this order. This allows you to display multiple " -"or compound taxes rather than a single total." -msgstr "" -"Te wiersze zawierają podatki do zamówienia. Pozwala to na wyświetlanie wielu " -"stawek lub stawek złożonych zamiast pojedynczej sumy." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:613 -msgid "Tax Totals" -msgstr "Suma podatków" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:617 -#, fuzzy -msgid "Total tax for line items + fees." -msgstr "Klasa podatkowa" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:636 -#: admin/post-types/writepanels/writepanels-init.php:70 -msgid "Order Totals" -msgstr "Podsumowanie zamówienia" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:640 -msgid "Order Total:" -msgstr "Suma zamówienia:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:648 -msgid "Payment Method:" -msgstr "Metoda płatności" - -#: admin/post-types/writepanels/writepanel-order_data.php:678 -msgid "Calc taxes" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:679 -#, fuzzy -msgid "Calc totals" -msgstr "Przelicz sumy ↑" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:57 -msgid "Choose a downloadable product…" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:89 -msgid "Grant Access" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:127 -msgid "" -"Could not grant access - the user may already have permission for this file." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:150 -msgid "Are you sure you want to revoke access to this download?" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -msgid "added %s ago" -msgstr "dodano %s temu" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -msgid "Delete note" -msgstr "Usuń notkę" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:50 -msgid "There are no notes for this order yet." -msgstr "Na razie nie ma notek dla tego zamówienia." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "Add note" -msgstr "Dodaj notkę" - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "" -"Add a note for your reference, or add a customer note (the user will be " -"notified)." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:62 -msgid "Customer note" -msgstr "Notka dla klienta" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:63 -msgid "Private note" -msgstr "Prywatna notka" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:65 -#: admin/post-types/writepanels/writepanel-product_data.php:478 -msgid "Add" -msgstr "Dodaj" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations for variable products are defined here." -msgstr "Tutaj definiuje się warianty produktów." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations" -msgstr "Warianty" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:65 -msgid "" -"Before adding variations, add and save some attributes on the " -"Attributes tab." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:67 -msgid "Learn more" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:325 -msgid "Close all" -msgstr "Zamknij wszystko" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:325 -msgid "Expand all" -msgstr "Rozwiń wszystko" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:75 -msgid "Bulk edit:" -msgstr "Hurtowa edycja:" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:77 -msgid "Toggle "Enabled"" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:78 -msgid "Toggle "Downloadable"" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:79 -msgid "Toggle "Virtual"" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:80 -#, fuzzy -msgid "Delete all variations" -msgstr "Połącz wszystkie warianty" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:81 -msgid "Prices" -msgstr "Ceny" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:82 -msgid "Sale prices" -msgstr "Ceny wyprzedaży" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:88 -msgid "File Path" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:89 -msgid "Download limit" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:90 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Download Expiry" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:92 -#, fuzzy -msgid "Go" -msgstr "Dobre" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:192 -msgid "Add Variation" -msgstr "Dodaj wariant" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:194 -msgid "Link all variations" -msgstr "Połącz wszystkie warianty" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:196 -msgid "Default selections:" -msgstr "Domyślne wybory:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:209 -msgid "No default" -msgstr "Brak:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:273 -msgid "" -"Are you sure you want to link all variations? This will create a new " -"variation for each and every possible combination of variation attributes " -"(max 50 per run)." -msgstr "" -"Na pewno połączyć wszystkie warianty produktu? To stworzy nowy wariant dla " -"każdej możliwej kombinacji atrybutów (maksylamnie 50 za jednym razem)." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:290 -msgid "variation added" -msgstr "wariant dodany" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:292 -msgid "variations added" -msgstr "warianty dodane" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:294 -msgid "No variations added" -msgstr "Nie dodano wariantów" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:317 -msgid "Are you sure you want to remove this variation?" -msgstr "Jesteś pewien, że chcesz usunąć ten wariant?" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:373 -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "" -"Na pewno usunąć wszystkie warianty produktu? Operacji nie można cofnąć." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:376 -msgid "Last warning, are you sure?" -msgstr "Ostatnie ostrzeżenie, na pewno?" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:413 -msgid "Enter a value" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:504 -#: admin/woocommerce-admin-taxonomies.php:62 -#: admin/woocommerce-admin-taxonomies.php:154 -#, fuzzy -msgid "Choose an image" -msgstr "Wybierz opcje" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:506 -#, fuzzy -msgid "Set variation image" -msgstr "wariant dodany" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:550 -msgid "Variable product" -msgstr "Produkt z wariantami" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:616 -msgid "Variation #%s of %s" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:43 -msgid "Product Type" -msgstr "Typ produktu" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:53 -msgid "Virtual products are intangible and aren't shipped." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:59 -msgid "Downloadable products give access to a file upon purchase." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:77 -#: admin/woocommerce-admin-content.php:44 -#: admin/woocommerce-admin-settings.php:219 -msgid "General" -msgstr "Ustawienia główne" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:79 -#: admin/woocommerce-admin-content.php:47 -#: admin/woocommerce-admin-settings.php:222 -msgid "Inventory" -msgstr "Magazyn" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:83 -#, fuzzy -msgid "Linked Products" -msgstr "Nowe produkty" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:85 -#: admin/woocommerce-admin-attributes.php:298 -#: admin/woocommerce-admin-init.php:61 -msgid "Attributes" -msgstr "Atrybuty" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:87 -msgid "Advanced" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "Stock Keeping Unit" -msgstr "Jednostka magazynowa (Stock Keeping Unit)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "" -"SKU refers to a Stock-keeping unit, a unique identifier for each distinct " -"product and service that can be purchased." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Product URL" -msgstr "Adres URL produktu" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Enter the external URL to the product." -msgstr "Wpisz zewnętrzny adres URL do produktu." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "Button text" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgctxt "placeholder" -msgid "Buy product" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "This text will be shown on the button linking to the external product." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:119 -msgid "Regular Price" -msgstr "Cena" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Sale Price" -msgstr "Cena wyprzedaży" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:135 -msgid "Sale Price Dates" -msgstr "Daty wyprzedaży" - -# @ woocommerce -# @ default -#: admin/post-types/writepanels/writepanel-product_data.php:138 -#: admin/post-types/writepanels/writepanel-product_data.php:1068 -msgid "Cancel" -msgstr "Anuluj" - -#: admin/post-types/writepanels/writepanel-product_data.php:152 -msgid "File paths (one per line)" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Download Limit" -msgstr "Limit pobrań" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:176 -msgid "Tax Status" -msgstr "Status podatku" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:178 -msgid "Shipping only" -msgstr "Tylko wysyłka" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:179 -msgid "None" -msgstr "Brak" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:215 -msgid "" -"Stock quantity. If this is a variable product this value will be used to " -"control stock for all variations, unless you define stock at variation level." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:226 -msgid "Stock status" -msgstr "Stan magazynowy" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:229 -msgid "" -"Controls whether or not the product is listed as \"in stock\" or \"out of " -"stock\" on the frontend." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:236 -msgid "Allow Backorders?" -msgstr "Pozwalać na zamówienia oczekujące (na dostawę do magazynu)? " - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:237 -msgid "Do not allow" -msgstr "Nie pozwalaj" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:238 -msgid "Allow, but notify customer" -msgstr "Pozwalaj, ale poinformuj klienta" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:239 -msgid "Allow" -msgstr "Pozwalaj" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:240 -msgid "" -"If managing stock, this controls whether or not backorders are allowed for " -"this product and variations. If enabled, stock quantity can go below 0." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:251 -#, fuzzy -msgid "Sold Individually" -msgstr "Indywidualne użycie" - -#: admin/post-types/writepanels/writepanel-product_data.php:251 -msgid "" -"Enable this to only allow one of this item to be bought in a single order" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:269 -msgid "Weight in decimal form" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:280 -msgid "Dimensions" -msgstr "Wymiary" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:286 -msgid "LxWxH in decimal form" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:307 -msgid "No shipping class" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:313 -msgid "Shipping class" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:313 -msgid "" -"Shipping classes are used by certain shipping methods to group similar " -"products." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:376 -#: admin/post-types/writepanels/writepanel-product_data.php:453 -#: admin/woocommerce-admin-init.php:396 -msgid "Value(s)" -msgstr "Wartość (wartości)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:378 -msgid "Select terms" -msgstr "Wybierz wartości" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:390 -msgid "Select all" -msgstr "Zaznacz wszystko" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:390 -msgid "Select none" -msgstr "Odznacz wszystko" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:392 -msgid "Add new" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:405 -msgid "Pipe separate terms" -msgstr "Oddziel wyrażenia znakiem pionowej kreski (|)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:412 -#: admin/post-types/writepanels/writepanel-product_data.php:459 -#: admin/woocommerce-admin-init.php:398 -msgid "Visible on the product page" -msgstr "Widoczny na stronie produktu" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:418 -#: admin/post-types/writepanels/writepanel-product_data.php:465 -#: admin/woocommerce-admin-init.php:399 -msgid "Used for variations" -msgstr "Dla wariantów" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:454 -#: admin/woocommerce-admin-init.php:397 -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "Wpisz tekst lub atrybuty oddzielając symbolem pionowej linii (|)." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:480 -msgid "Custom product attribute" -msgstr "Nowy atrybut" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:492 -#, fuzzy -msgid "Save attributes" -msgstr "Atrybuty" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:499 -msgid "Up-Sells" -msgstr "Produkty \"Up-sell\"" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:518 -msgid "" -"Up-sells are products which you recommend instead of the currently viewed " -"product, for example, products that are more profitable or better quality or " -"more expensive." -msgstr "" -"Produkty \"Up-sell\" to produkty, które polecasz klientowi zamiast obecnie " -"przeglądanego produktu, np. produkty, na której masz większą marżę, lepszej " -"jakości lub droższe." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:520 -msgid "Cross-Sells" -msgstr "Produkty \"Cross-sell\"" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:539 -msgid "" -"Cross-sells are products which you promote in the cart, based on the current " -"product." -msgstr "" -"Produkty \"Cross-sell\" to produkty, które dodatkowo promujesz w koszyku na " -"podstawie wybranego przez klienta produktu." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:549 -msgid "Choose a grouped product…" -msgstr "Wybierz grupowy produkt" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:575 -msgid "Grouping" -msgstr "Grupowanie" - -#: admin/post-types/writepanels/writepanel-product_data.php:575 -msgid "Set this option to make this product part of a grouped product." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:595 -msgid "Purchase Note" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:595 -msgid "Enter an optional note to send the customer after purchase." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:602 -msgid "Menu order" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:602 -msgid "Custom ordering position." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:610 -msgid "Enable reviews" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:699 -msgid "Product SKU must be unique." -msgstr "SKU produktu musi być unikalne." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1032 -msgid "Catalog/search" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1039 -msgid "Catalog visibility:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1055 -msgid "" -"Define the loops this product should be visible in. The product will still " -"be accessible directly." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1061 -msgid "Enable this option to feature this product." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1063 -msgid "Featured Product" -msgstr "" - -# @ default -#: admin/post-types/writepanels/writepanel-product_data.php:1067 -msgid "OK" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -#, fuzzy -msgid "Delete image" -msgstr "Usuń rzecz" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -#: admin/woocommerce-admin-attributes.php:322 -msgid "Delete" -msgstr "Usuń" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:53 -#, fuzzy -msgid "Add product gallery images" -msgstr "Wszystkie kategorie produktów" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:79 -#, fuzzy -msgid "Add Images to Product Gallery" -msgstr "Dodaj nową kategorię produktu" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:81 -#, fuzzy -msgid "Add to gallery" -msgstr "Dodaj do koszyka" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:47 -#, fuzzy -msgid "Product Gallery" -msgstr "Sprzedaż produktów" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:55 -msgid "Product Short Description" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:64 -msgid "Reviews" -msgstr "Recenzje" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:68 -msgid "Order Data" -msgstr "Dane zamówienia" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:69 -#, fuzzy -msgid "Order Items" -msgstr "Uwagi do zamówienia" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:69 -#, fuzzy -msgid "" -"Note: if you edit quantities or remove items from the order you will need to " -"manually update stock levels." -msgstr "" -"Zamów produkty – Uwaga: jeśli edytujesz ilość lub usuniesz " -"produkty z zamówienia musisz ręcznie zmienić stany magazynowe." - -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "Downloadable Product Permissions" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "" -"Note: Permissions for order items will automatically be granted when the " -"order status changes to processing/completed." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:73 -msgid "Order Actions" -msgstr "Akcje zamówienia" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:81 -msgid "Coupon Data" -msgstr "Dane kuponu" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:100 -msgid "Coupon code" -msgstr "Kod kuponu" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:101 -msgid "Product name" -msgstr "Nazwa produktu" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:185 -msgid "Allow reviews." -msgstr "" - -# @ default -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "" -"Allow trackbacks and pingbacks on this " -"page." -msgstr "" - -# @ default -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:23 -msgid "Styles" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:43 -msgid "Primary" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:43 -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:44 -msgid "Secondary" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:44 -msgid "Buttons and tabs" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:45 -msgid "Highlight" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:45 -msgid "Price labels and Sale Flashes" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:46 -msgid "Content" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:46 -msgid "Your themes page background - used for tab active states" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:47 -msgid "Subtext" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:47 -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:51 -msgid "" -"To edit colours woocommerce/assets/css/woocommerce-base.less " -"and woocommerce.css need to be writable. See the Codex for more " -"information." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:18 -msgid "Localisation" -msgstr "Tłumaczenie" - -# @ woocommerce -#: admin/settings/settings-init.php:19 -#, fuzzy -msgid "Use informal localisation for %s" -msgstr "Używaj nieformalnego tłumaczenia jeśli istnieje" - -# @ woocommerce -#: admin/settings/settings-init.php:27 -msgid "General Options" -msgstr "Ustawienia główne" - -# @ woocommerce -#: admin/settings/settings-init.php:30 -msgid "Base Country/Region" -msgstr "Kraj/Region bazowy" - -# @ woocommerce -#: admin/settings/settings-init.php:31 -msgid "" -"This is the base country for your business. Tax rates will be based on this " -"country." -msgstr "" -"To jest kraj, w którym prowadzisz biznes. Stawki podatkowe będą się opierać " -"na tym kraju." - -# @ woocommerce -#: admin/settings/settings-init.php:40 -msgid "Currency" -msgstr "Waluta" - -# @ woocommerce -#: admin/settings/settings-init.php:41 -msgid "" -"This controls what currency prices are listed at in the catalog and which " -"currency gateways will take payments in." -msgstr "" -"W jakiej walucie są wyswietlane ceny i która waluta będzie akceptowana w " -"bramkach płatności." - -# @ woocommerce -#: admin/settings/settings-init.php:49 -msgid "US Dollars ($)" -msgstr "Dola amerykański ($)" - -# @ woocommerce -#: admin/settings/settings-init.php:50 -msgid "Euros (€)" -msgstr "Euro (€)" - -# @ woocommerce -#: admin/settings/settings-init.php:51 -msgid "Pounds Sterling (£)" -msgstr "Funt brytyjski (£)" - -# @ woocommerce -#: admin/settings/settings-init.php:52 -msgid "Australian Dollars ($)" -msgstr "Dolar australijski ($)" - -# @ woocommerce -#: admin/settings/settings-init.php:53 -msgid "Brazilian Real ($)" -msgstr "Real brazylijski ($)" - -# @ woocommerce -#: admin/settings/settings-init.php:54 -msgid "Canadian Dollars ($)" -msgstr "Dolar kanadyjski ($)" - -# @ woocommerce -#: admin/settings/settings-init.php:55 -msgid "Czech Koruna (Kč)" -msgstr "Czeska Korona (Kč)" - -# @ woocommerce -#: admin/settings/settings-init.php:56 -msgid "Danish Krone" -msgstr "Korona duńska" - -# @ woocommerce -#: admin/settings/settings-init.php:57 -msgid "Hong Kong Dollar ($)" -msgstr "Dolar Honk Kongu ($)" - -# @ woocommerce -#: admin/settings/settings-init.php:58 -msgid "Hungarian Forint" -msgstr "Forint węgierski" - -# @ woocommerce -#: admin/settings/settings-init.php:59 -msgid "Israeli Shekel" -msgstr "Szekel izraelski" - -# @ woocommerce -#: admin/settings/settings-init.php:60 -msgid "Chinese Yuan (¥)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:61 -msgid "Japanese Yen (¥)" -msgstr "Jen japoński (¥)" - -# @ woocommerce -#: admin/settings/settings-init.php:62 -msgid "Malaysian Ringgits (RM)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:63 -msgid "Mexican Peso ($)" -msgstr "Peso meksykańskie ($)" - -# @ woocommerce -#: admin/settings/settings-init.php:64 -msgid "New Zealand Dollar ($)" -msgstr "Dolar nowozelandzki ($)" - -# @ woocommerce -#: admin/settings/settings-init.php:65 -msgid "Norwegian Krone" -msgstr "Korona norweska" - -# @ woocommerce -#: admin/settings/settings-init.php:66 -msgid "Philippine Pesos" -msgstr "Peso filipińskie" - -# @ woocommerce -#: admin/settings/settings-init.php:67 -msgid "Polish Zloty" -msgstr "Złoty polski" - -# @ woocommerce -#: admin/settings/settings-init.php:68 -msgid "Singapore Dollar ($)" -msgstr "Dolar singapurski ($)" - -# @ woocommerce -#: admin/settings/settings-init.php:69 -msgid "Swedish Krona" -msgstr "Korona szwedzka" - -# @ woocommerce -#: admin/settings/settings-init.php:70 -msgid "Swiss Franc" -msgstr "Frank szwajcarski" - -# @ woocommerce -#: admin/settings/settings-init.php:71 -msgid "Taiwan New Dollars" -msgstr "Dolar tajwański" - -# @ woocommerce -#: admin/settings/settings-init.php:72 -msgid "Thai Baht" -msgstr "Baht tajski" - -# @ woocommerce -#: admin/settings/settings-init.php:73 -msgid "Turkish Lira (TL)" -msgstr "Lira turecka (TL)" - -# @ woocommerce -#: admin/settings/settings-init.php:74 -msgid "South African rand (R)" -msgstr "Rand południowoafrykański (R)" - -#: admin/settings/settings-init.php:75 -msgid "Romanian Leu (RON)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:81 -msgid "Allowed Countries" -msgstr "Dozwolone kraje" - -# @ woocommerce -#: admin/settings/settings-init.php:82 -msgid "These are countries that you are willing to ship to." -msgstr "Kraje, do których chcesz wysyłać produkty." - -# @ woocommerce -#: admin/settings/settings-init.php:90 -msgid "All Countries" -msgstr "Wszystkie kraje" - -# @ woocommerce -#: admin/settings/settings-init.php:91 admin/settings/settings-init.php:96 -msgid "Specific Countries" -msgstr "Wybrane kraje" - -# @ woocommerce -#: admin/settings/settings-init.php:108 -msgid "Checkout and Accounts" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:108 -msgid "" -"The following options control the behaviour of the checkout process and " -"customer accounts." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:111 -#: admin/woocommerce-admin-install.php:195 -msgid "Checkout" -msgstr "Zamówienie" - -# @ woocommerce -#: admin/settings/settings-init.php:112 -msgid "Enable guest checkout (no account required)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:120 -msgid "Show order comments section" -msgstr "Pokazuj sekcję komentarzy zamówienia" - -# @ woocommerce -#: admin/settings/settings-init.php:128 -msgid "Security" -msgstr "Ochrona" - -# @ woocommerce -#: admin/settings/settings-init.php:129 -msgid "Force secure checkout" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:135 -msgid "" -"Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:139 -msgid "Un-force HTTPS when leaving the checkout" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:148 admin/woocommerce-admin-content.php:75 -#: admin/woocommerce-admin-reports.php:72 -msgid "Coupons" -msgstr "Kupony" - -# @ woocommerce -#: admin/settings/settings-init.php:149 -msgid "Enable coupons" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:158 -msgid "Enable coupon form on cart" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:167 -msgid "Enable coupon form on checkout" -msgstr "Włącz kupony na stronie zamówienia" - -# @ woocommerce -#: admin/settings/settings-init.php:176 -msgid "Registration" -msgstr "" - -#: admin/settings/settings-init.php:177 -msgid "Allow registration on the checkout page" -msgstr "" - -#: admin/settings/settings-init.php:185 -msgid "Allow registration on the \"My Account\" page" -msgstr "" - -#: admin/settings/settings-init.php:193 -msgid "Register using the email address for the username" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:201 -msgid "Customer Accounts" -msgstr "Konta klientów" - -# @ woocommerce -#: admin/settings/settings-init.php:202 -msgid "Prevent customers from accessing WordPress admin" -msgstr "Zablokuj użytkownikom dostęp do panelu administratora WordPress" - -# @ woocommerce -#: admin/settings/settings-init.php:210 -msgid "Clear cart when logging out" -msgstr "Wyczyść koszyk przy wylogowaniu" - -# @ woocommerce -#: admin/settings/settings-init.php:218 -msgid "Allow customers to repurchase past orders" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:227 -msgid "Styles and Scripts" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:227 -msgid "" -"The following options affect the styling of your store, as well as how " -"certain features behave." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:230 -msgid "Styling" -msgstr "Style" - -# @ woocommerce -#: admin/settings/settings-init.php:231 -msgid "Enable WooCommerce CSS styles" -msgstr "Włącz style CSS WooCommerce" - -# @ woocommerce -#: admin/settings/settings-init.php:242 -#, fuzzy -msgid "Store Notice" -msgstr "Uwagi klienta" - -# @ woocommerce -#: admin/settings/settings-init.php:243 -msgid "Enable the \"Demo Store\" notice on your site" -msgstr "Włącz napis \"Wersja demonstracyjna\" na stronie" - -#: admin/settings/settings-init.php:250 -msgid "Store Notice Text" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:253 -msgid "" -"This is a demo store for testing purposes — no orders shall be " -"fulfilled." -msgstr "" -"To jest wersja demonstracyjna sklepu do celów testowych— Zamówienia " -"nie będą realizowane." - -# @ woocommerce -#: admin/settings/settings-init.php:259 -msgid "Scripts" -msgstr "Skrypty" - -# @ woocommerce -#: admin/settings/settings-init.php:260 -msgid "Enable AJAX add to cart buttons on product archives" -msgstr "Włącz AJAX dla guzików dodawania do koszyka" - -# @ woocommerce -#: admin/settings/settings-init.php:268 -#, fuzzy -msgid "Enable WooCommerce lightbox" -msgstr "Włącz WooCommerce lightbox na stronie produktu" - -#: admin/settings/settings-init.php:271 -msgid "" -"On the product details page, product gallery images will open in a lightbox. " -"The Add Review form will open in a modal window" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:277 -msgid "Enable enhanced country select boxes" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:286 -msgid "Digital Downloads" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:286 -msgid "The following options are specific to downloadable products." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:289 -#, fuzzy -msgid "File Download Method" -msgstr "Metoda pobierania plików" - -# @ woocommerce -#: admin/settings/settings-init.php:290 -msgid "" -"Forcing downloads will keep URLs hidden, but some servers may serve large " -"files unreliably. If supported, X-Accel-Redirect/ X-" -"Sendfile can be used to serve downloads instead (server requires " -"mod_xsendfile)." -msgstr "" -"Wymuszanie pobierania utrzyma adresy URL w ukryciu, ale niektóre serwery " -"mogą nie poradzić sobie z dużymi plikami. Jeśli X-Accel-Redirect/ X-Sendfile jest wspierane, wtedy możesz użyć go do " -"udostępnienia plików zamiast (server requires mod_xsendfile)." - -# @ woocommerce -#: admin/settings/settings-init.php:298 -msgid "Force Downloads" -msgstr "Wymuszaj pobieranie" - -# @ woocommerce -#: admin/settings/settings-init.php:299 -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "X-Accel-Redirect/X-Sendfile" - -# @ woocommerce -#: admin/settings/settings-init.php:300 -msgid "Redirect only" -msgstr "Tylko przekierowuj" - -# @ woocommerce -#: admin/settings/settings-init.php:305 -msgid "Access Restrictions" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:306 -msgid "Must be logged in to download files" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:310 -msgid "This setting does not apply to guest downloads." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:315 -msgid "Grant access to downloadable products after payment" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:319 -msgid "" -"Turn this option off to only grant access when an order is \"complete\", " -"rather than \"processing\"" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:324 -#, fuzzy -msgid "Limit Quantity" -msgstr "Ilość" - -# @ woocommerce -#: admin/settings/settings-init.php:325 -msgid "Limit the purchasable quantity of downloadable-virtual items to 1" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:343 -msgid "" -"Note: The shop page has children - child pages will not work if you enable " -"this option." -msgstr "" -"Uwaga: Strona sklepu posiada strony podrzędne - strony podrzędne nie będą " -"działać, jeśli włączyć tę opcję." - -# @ woocommerce -#: admin/settings/settings-init.php:348 -msgid "Page Setup" -msgstr "Ustawienia strony" - -#: admin/settings/settings-init.php:350 -msgid "" -"Set up core WooCommerce pages here, for example the base page. The base page " -"can also be used in your %sproduct permalinks%s." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:355 -msgid "Shop Base Page" -msgstr "Bazowa strona sklepu" - -# @ woocommerce -#: admin/settings/settings-init.php:356 -msgid "" -"This sets the base page of your shop - this is where your product archive " -"will be." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:366 -msgid "Base Page Title" -msgstr "Tytuł strony bazowej" - -# @ woocommerce -#: admin/settings/settings-init.php:367 -msgid "" -"This title to show on the shop base page. Leave blank to use the page title." -msgstr "" -"Ten tytuł będzie wyświetlany na bazowej stronie sklepu. Pozostaw puste, aby " -"użyć tytułu strony." - -# @ woocommerce -#: admin/settings/settings-init.php:376 -#, fuzzy -msgid "Terms Page ID" -msgstr "Strona z regulaminem" - -# @ woocommerce -#: admin/settings/settings-init.php:377 -msgid "" -"If you define a \"Terms\" page the customer will be asked if they accept " -"them when checking out." -msgstr "" -"Jeśli ustawisz stronę \"Regulamin\" klient będzie proszony o zaakceptowanie " -"regulaminu przy finalizacji zamówienia." - -# @ woocommerce -#: admin/settings/settings-init.php:387 -msgid "Logout link" -msgstr "Link \"Wyloguj\"" - -# @ woocommerce -#: admin/settings/settings-init.php:388 -msgid "Append a logout link to menus containing \"My Account\"" -msgstr "Dodaj link do menu \"Moje konto\"" - -# @ woocommerce -#: admin/settings/settings-init.php:396 admin/woocommerce-admin-status.php:208 -msgid "Shop Pages" -msgstr "Strony Sklepu" - -# @ woocommerce -#: admin/settings/settings-init.php:396 -msgid "" -"The following pages need selecting so that WooCommerce knows where they are. " -"These pages should have been created upon installation of the plugin, if not " -"you will need to create them." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:399 admin/woocommerce-admin-status.php:219 -msgid "Cart Page" -msgstr "Strona koszyka" - -# @ woocommerce -#: admin/settings/settings-init.php:400 -msgid "Page contents: [woocommerce_cart]" -msgstr "Zawartość strony: [woocommerce_cart]" - -# @ woocommerce -#: admin/settings/settings-init.php:410 admin/woocommerce-admin-status.php:223 -msgid "Checkout Page" -msgstr "Strona zamówienia" - -# @ woocommerce -#: admin/settings/settings-init.php:411 -msgid "Page contents: [woocommerce_checkout]" -msgstr "Zawartość strony: [woocommerce_checkout]" - -# @ woocommerce -#: admin/settings/settings-init.php:421 admin/woocommerce-admin-status.php:227 -msgid "Pay Page" -msgstr "Strona płatności" - -# @ woocommerce -#: admin/settings/settings-init.php:422 -msgid "Page contents: [woocommerce_pay] Parent: \"Checkout\"" -msgstr "Zawartość strony: [woocommerce_pay] Rodzic: \"Zamówienie\"" - -# @ woocommerce -#: admin/settings/settings-init.php:432 admin/woocommerce-admin-status.php:231 -msgid "Thanks Page" -msgstr "Strona z podziękowaniem" - -# @ woocommerce -#: admin/settings/settings-init.php:433 -msgid "Page contents: [woocommerce_thankyou] Parent: \"Checkout\"" -msgstr "Zawartość strony: [woocommerce_thankyou] Rodzic \"Zamówienie\"" - -# @ woocommerce -#: admin/settings/settings-init.php:443 admin/woocommerce-admin-status.php:235 -msgid "My Account Page" -msgstr "Strona Moje konto" - -# @ woocommerce -#: admin/settings/settings-init.php:444 -msgid "Page contents: [woocommerce_my_account]" -msgstr "Zawartość strony: [woocommerce_my_account]" - -# @ woocommerce -#: admin/settings/settings-init.php:454 admin/woocommerce-admin-status.php:239 -msgid "Edit Address Page" -msgstr "Strona edycji adresu" - -# @ woocommerce -#: admin/settings/settings-init.php:455 -msgid "Page contents: [woocommerce_edit_address] Parent: \"My Account\"" -msgstr "Zawartość strony: [woocommerce_edit_address] Rodzic: \"Moje konto\"" - -# @ woocommerce -#: admin/settings/settings-init.php:465 admin/woocommerce-admin-status.php:243 -msgid "View Order Page" -msgstr "Strona Zobacz zamówienie" - -# @ woocommerce -#: admin/settings/settings-init.php:466 -msgid "Page contents: [woocommerce_view_order] Parent: \"My Account\"" -msgstr "Zawartość strony: [woocommerce_view_order] Rodzic: \"Moje konto\"" - -# @ woocommerce -#: admin/settings/settings-init.php:476 admin/woocommerce-admin-status.php:247 -msgid "Change Password Page" -msgstr "Strona Zmień hasło" - -# @ woocommerce -#: admin/settings/settings-init.php:477 -msgid "Page contents: [woocommerce_change_password] Parent: \"My Account\"" -msgstr "Zawartość strony: [woocommerce_change_password] Rodzic: \"Moje konto\"" - -# @ woocommerce -#: admin/settings/settings-init.php:487 -#, fuzzy -msgid "Lost Password Page" -msgstr "Straciłeś hasło?" - -# @ woocommerce -#: admin/settings/settings-init.php:488 -#, fuzzy -msgid "Page contents: [woocommerce_lost_password] Parent: \"My Account\"" -msgstr "Zawartość strony: [woocommerce_change_password] Rodzic: \"Moje konto\"" - -# @ woocommerce -#: admin/settings/settings-init.php:504 -msgid "Catalog Options" -msgstr "Opcje katalogu" - -#: admin/settings/settings-init.php:507 -msgid "Default Product Sorting" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:508 -msgid "This controls the default sort order of the catalog." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:514 -msgid "Default sorting" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:515 -msgid "Sort alphabetically" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:516 -msgid "Sort by most recent" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:517 -msgid "Sort by price" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:523 -#, fuzzy -msgid "Shop Page Display" -msgstr "Strony Sklepu" - -# @ woocommerce -#: admin/settings/settings-init.php:524 -#, fuzzy -msgid "This controls what is shown on the product archive." -msgstr "Tutaj możesz ustawić jednostkę wagi." - -# @ woocommerce -#: admin/settings/settings-init.php:530 admin/settings/settings-init.php:545 -#, fuzzy -msgid "Show products" -msgstr "Nowe produkty" - -# @ woocommerce -#: admin/settings/settings-init.php:531 admin/settings/settings-init.php:546 -msgid "Show subcategories" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:532 admin/settings/settings-init.php:547 -#, fuzzy -msgid "Show both" -msgstr "Pokaż" - -# @ woocommerce -#: admin/settings/settings-init.php:538 -#, fuzzy -msgid "Default Category Display" -msgstr "Domyślny koszt" - -# @ woocommerce -#: admin/settings/settings-init.php:539 -#, fuzzy -msgid "This controls what is shown on category archives." -msgstr "Tutaj możesz ustawić jednostkę wagi." - -# @ woocommerce -#: admin/settings/settings-init.php:553 -msgid "Redirects" -msgstr "Przekierowania" - -# @ woocommerce -#: admin/settings/settings-init.php:554 -msgid "" -"Redirect to cart after adding a product to the cart (on single product pages)" -msgstr "" -"Przekieruj do koszyka po dodaniu produktu do koszyka (na stronie z " -"pojedynczym produktem)" - -# @ woocommerce -#: admin/settings/settings-init.php:562 -msgid "Redirect to the product page on a single matching search result" -msgstr "" -"Przekieruj na stronę produktu, jeśli tylko jeden produkt spełnia kryteria " -"wyszukiwania" - -# @ woocommerce -#: admin/settings/settings-init.php:571 -msgid "" -"The following options affect the fields available on the edit product page." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:574 -#, fuzzy -msgid "Product Fields" -msgstr "Pola produktu" - -# @ woocommerce -#: admin/settings/settings-init.php:575 -msgid "Enable the SKU field for products" -msgstr "Włącz pole SKU" - -# @ woocommerce -#: admin/settings/settings-init.php:583 -msgid "Enable the weight field for products" -msgstr "Włącz pole wagi" - -# @ woocommerce -#: admin/settings/settings-init.php:591 -msgid "Enable the dimension fields for products" -msgstr "Włącz pola wymiarów" - -# @ woocommerce -#: admin/settings/settings-init.php:599 -msgid "Show weight and dimension fields in product attributes tab" -msgstr "Pokazuj pola wagi i wymiarów w zakładce atrybutów" - -# @ woocommerce -#: admin/settings/settings-init.php:607 -msgid "Weight Unit" -msgstr "Jednostka wagi" - -# @ woocommerce -#: admin/settings/settings-init.php:608 -msgid "This controls what unit you will define weights in." -msgstr "Tutaj możesz ustawić jednostkę wagi." - -# @ woocommerce -#: admin/settings/settings-init.php:614 -msgid "kg" -msgstr "kg" - -# @ woocommerce -#: admin/settings/settings-init.php:615 -msgid "g" -msgstr "g" - -# @ woocommerce -#: admin/settings/settings-init.php:616 -msgid "lbs" -msgstr "funty" - -# @ woocommerce -#: admin/settings/settings-init.php:617 -msgid "oz" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:623 -msgid "Dimensions Unit" -msgstr "Jednostka wymiarów" - -# @ woocommerce -#: admin/settings/settings-init.php:624 -msgid "This controls what unit you will define lengths in." -msgstr "Tutaj możesz ustawić jednostkę wymiarów." - -# @ woocommerce -#: admin/settings/settings-init.php:631 -msgid "cm" -msgstr "cm" - -# @ woocommerce -#: admin/settings/settings-init.php:632 -msgid "mm" -msgstr "mm" - -# @ woocommerce -#: admin/settings/settings-init.php:633 -msgid "in" -msgstr "cale" - -# @ woocommerce -#: admin/settings/settings-init.php:634 -msgid "yd" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:640 -msgid "Product Ratings" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:641 -#, fuzzy -msgid "Enable the rating field on the review form" -msgstr "Włącz pole wagi" - -# @ woocommerce -#: admin/settings/settings-init.php:650 -msgid "Ratings are required to leave a review" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:659 -msgid "Show \"verified owner\" label for customer reviews" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:669 -msgid "Pricing Options" -msgstr "Opcje cen" - -# @ woocommerce -#: admin/settings/settings-init.php:669 -msgid "The following options affect how prices are displayed on the frontend." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:672 -msgid "Currency Position" -msgstr "Pozycja znaku waluty" - -# @ woocommerce -#: admin/settings/settings-init.php:673 -msgid "This controls the position of the currency symbol." -msgstr "Tutaj możesz ustawić pozycję znaku waluty." - -# @ woocommerce -#: admin/settings/settings-init.php:679 -msgid "Left" -msgstr "Po lewej" - -# @ woocommerce -#: admin/settings/settings-init.php:680 -msgid "Right" -msgstr "Po prawej" - -# @ woocommerce -#: admin/settings/settings-init.php:681 -msgid "Left (with space)" -msgstr "Po lewej (ze spacją)" - -# @ woocommerce -#: admin/settings/settings-init.php:682 -msgid "Right (with space)" -msgstr "Po prawej (ze spacją)" - -# @ woocommerce -#: admin/settings/settings-init.php:688 -#, fuzzy -msgid "Thousand Separator" -msgstr "Separator tysięcy" - -# @ woocommerce -#: admin/settings/settings-init.php:689 -msgid "This sets the thousand separator of displayed prices." -msgstr "Tutaj możesz ustawić separator tysięcy w cenach." - -# @ woocommerce -#: admin/settings/settings-init.php:698 -#, fuzzy -msgid "Decimal Separator" -msgstr "Separator dziesiętny" - -# @ woocommerce -#: admin/settings/settings-init.php:699 -msgid "This sets the decimal separator of displayed prices." -msgstr "Tutaj możesz ustawić separator dziesiętny w cenach." - -# @ woocommerce -#: admin/settings/settings-init.php:708 -#, fuzzy -msgid "Number of Decimals" -msgstr "Liczba znaków po przecinku" - -# @ woocommerce -#: admin/settings/settings-init.php:709 -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "Tutaj możesz ustawić liczbę znaków po przecinku w cenach." - -#: admin/settings/settings-init.php:722 -msgid "Trailing Zeros" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:723 -msgid "" -"Remove zeros after the decimal point. e.g. $10.00 becomes " -"$10" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:731 -msgid "Image Options" -msgstr "Opcje obrazków" - -# @ woocommerce -#: admin/settings/settings-init.php:731 -msgid "" -"These settings affect the actual dimensions of images in your catalog - the " -"display on the front-end will still be affected by CSS styles. After " -"changing these settings you may need to regenerate your " -"thumbnails." -msgstr "" -"Te ustawienia mają wpływ na wymiary obrazków w katalogu - na wyświelanie " -"obrazków w sklepie będą również wpływać style CSS. Po zmianie tych ustawień " -"musisz wygenerować jeszcze raz miniaturki." - -# @ woocommerce -#: admin/settings/settings-init.php:734 -msgid "Catalog Images" -msgstr "Obrazki w katalogu" - -# @ woocommerce -#: admin/settings/settings-init.php:735 -msgid "This size is usually used in product listings" -msgstr "Te wymiary są używane na listach produktów" - -# @ woocommerce -#: admin/settings/settings-init.php:748 -msgid "Single Product Image" -msgstr "Obrazek na stronie produktu" - -# @ woocommerce -#: admin/settings/settings-init.php:749 -msgid "This is the size used by the main image on the product page." -msgstr "Te wimiary są używane do głównego obrazka na stronie produktu." - -# @ woocommerce -#: admin/settings/settings-init.php:762 -msgid "Product Thumbnails" -msgstr "Miniaturki produktu" - -# @ woocommerce -#: admin/settings/settings-init.php:763 -msgid "" -"This size is usually used for the gallery of images on the product page." -msgstr "Te wymoary są używane do galerii obrazków na stronie produktu." - -# @ woocommerce -#: admin/settings/settings-init.php:782 -msgid "Inventory Options" -msgstr "Opcje magazynu" - -# @ woocommerce -#: admin/settings/settings-init.php:785 -#, fuzzy -msgid "Manage Stock" -msgstr "Zarządzaj stanem magazynowym" - -# @ woocommerce -#: admin/settings/settings-init.php:786 -msgid "Enable stock management" -msgstr "Włącz zarządzanie stanem magazynowym" - -#: admin/settings/settings-init.php:793 -msgid "Hold Stock (minutes)" -msgstr "" - -#: admin/settings/settings-init.php:794 -msgid "" -"Hold stock (for unpaid orders) for x minutes. When this limit is reached, " -"the pending order will be cancelled. Leave blank to disable." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:806 -msgid "Notifications" -msgstr "Powiadomienia" - -# @ woocommerce -#: admin/settings/settings-init.php:807 -msgid "Enable low stock notifications" -msgstr "Włącz powiadomienia o niskim stanie magazynowym" - -# @ woocommerce -#: admin/settings/settings-init.php:815 -msgid "Enable out of stock notifications" -msgstr "Włącz powiadomienia o braku towaru w magazynie" - -# @ woocommerce -#: admin/settings/settings-init.php:823 -#, fuzzy -msgid "Low Stock Threshold" -msgstr "Próg niskiego stanu magazynowego" - -# @ woocommerce -#: admin/settings/settings-init.php:836 -#, fuzzy -msgid "Out Of Stock Threshold" -msgstr "Próg braku towaru w magazynie" - -# @ woocommerce -#: admin/settings/settings-init.php:849 -#, fuzzy -msgid "Out Of Stock Visibility" -msgstr "Produkty, których nie ma w magazynie" - -# @ woocommerce -#: admin/settings/settings-init.php:850 -msgid "Hide out of stock items from the catalog" -msgstr "Ukrywaj produkty, których nie ma w magazynie" - -#: admin/settings/settings-init.php:857 -msgid "Stock Display Format" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:858 -msgid "This controls how stock is displayed on the frontend." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:864 -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:865 -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:866 -msgid "Never show stock amount" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:878 -#: admin/woocommerce-admin-settings.php:326 -msgid "Shipping Options" -msgstr "Opcje wysyłki" - -# @ woocommerce -#: admin/settings/settings-init.php:881 -#, fuzzy -msgid "Shipping Calculations" -msgstr "Przeliczanie wysyłki" - -# @ woocommerce -#: admin/settings/settings-init.php:882 -msgid "Enable shipping" -msgstr "Włącz wysyłkę" - -# @ woocommerce -#: admin/settings/settings-init.php:890 -msgid "Enable the shipping calculator on the cart page" -msgstr "Włącz kalkulator wysyłki na stronie koszyka" - -# @ woocommerce -#: admin/settings/settings-init.php:898 -msgid "Hide shipping costs until an address is entered" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:906 -#, fuzzy -msgid "Shipping Method Display" -msgstr "Metody wysyłki" - -# @ woocommerce -#: admin/settings/settings-init.php:907 -msgid "" -"This controls how multiple shipping methods are displayed on the frontend." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:913 -msgid "Radio buttons" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:914 -msgid "Select box" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:920 -msgid "Shipping Destination" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:921 -msgid "Only ship to the users billing address" -msgstr "Wysyłaj tylko na adres klienta podany do płatności" - -# @ woocommerce -#: admin/settings/settings-init.php:929 -msgid "Ship to billing address by default" -msgstr "Domyślnie wysyłaj na adres płatności" - -# @ woocommerce -#: admin/settings/settings-init.php:937 -msgid "Collect shipping address even when not required" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:955 -#: admin/woocommerce-admin-settings.php:225 -#: admin/woocommerce-admin-settings.php:363 -msgid "Payment Gateways" -msgstr "Bramki płatności" - -# @ woocommerce -#: admin/settings/settings-init.php:955 -msgid "" -"Installed payment gateways are displayed below. Drag and drop payment " -"gateways to control their display order on the checkout." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:973 -#: admin/woocommerce-admin-settings.php:256 -msgid "Tax Options" -msgstr "Opcje podatku" - -# @ woocommerce -#: admin/settings/settings-init.php:976 -#, fuzzy -msgid "Enable Taxes" -msgstr "Włącz" - -# @ woocommerce -#: admin/settings/settings-init.php:977 -msgid "Enable taxes and tax calculations" -msgstr "Włącz podatki i przeliczanie podatków" - -#: admin/settings/settings-init.php:984 -msgid "Prices Entered With Tax" -msgstr "" - -#: admin/settings/settings-init.php:988 -msgid "" -"This option is important as it will affect how you input prices. Changing it " -"will not update existing products." -msgstr "" - -#: admin/settings/settings-init.php:990 -msgid "Yes, I will enter prices inclusive of tax" -msgstr "" - -#: admin/settings/settings-init.php:991 -msgid "No, I will enter prices exclusive of tax" -msgstr "" - -#: admin/settings/settings-init.php:996 -msgid "Calculate Tax Based On:" -msgstr "" - -#: admin/settings/settings-init.php:998 -msgid "This option determines which address is used to calculate tax." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1002 -#, fuzzy -msgid "Customer shipping address" -msgstr "Adres wysyłki klienta" - -# @ woocommerce -#: admin/settings/settings-init.php:1003 -#, fuzzy -msgid "Customer billing address" -msgstr "Adres płatności klienta" - -# @ woocommerce -#: admin/settings/settings-init.php:1004 admin/settings/settings-init.php:1016 -#, fuzzy -msgid "Shop base address" -msgstr "Bazowa strona sklepu" - -# @ woocommerce -#: admin/settings/settings-init.php:1009 -#, fuzzy -msgid "Default Customer Address:" -msgstr "Adres płatności klienta" - -#: admin/settings/settings-init.php:1011 -msgid "" -"This option determines the customers default address (before they input " -"their own)." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1015 -#, fuzzy -msgid "No address" -msgstr "Adres" - -# @ woocommerce -#: admin/settings/settings-init.php:1021 -#, fuzzy -msgid "Shipping Tax Class:" -msgstr "Klasa wysyłkowa" - -#: admin/settings/settings-init.php:1022 -msgid "" -"Optionally control which tax class shipping gets, or leave it so shipping " -"tax is based on the cart items themselves." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1032 -#, fuzzy -msgid "Rounding" -msgstr "Oczekiwanie na płatność" - -# @ woocommerce -#: admin/settings/settings-init.php:1033 -#, fuzzy -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "Zaokrąglaj podatek na podsumie, a nie per wiersz" - -# @ woocommerce -#: admin/settings/settings-init.php:1040 -#, fuzzy -msgid "Additional Tax Classes" -msgstr "Dodatkowe klasy podatkowe" - -# @ woocommerce -#: admin/settings/settings-init.php:1041 -#, fuzzy -msgid "" -"List additonal tax classes below (1 per line). This is in addition to the " -"default Standard Rate. Tax classes can be assigned to products." -msgstr "" -"Wpisz 1 na linię. To są dodatkowe wartości do domyślnej stawki." - -# @ woocommerce -#: admin/settings/settings-init.php:1045 -msgid "Reduced Rate%sZero Rate" -msgstr "Obniżona stawka%sZerowa stawka" - -# @ woocommerce -#: admin/settings/settings-init.php:1049 -#, fuzzy -msgid "Display prices during cart/checkout:" -msgstr "E-mail który został użyty podczas składania zamówienia." - -# @ woocommerce -#: admin/settings/settings-init.php:1054 -#, fuzzy -msgid "Including tax" -msgstr "Koszy z wyłączeniem podatku." - -# @ woocommerce -#: admin/settings/settings-init.php:1055 -#, fuzzy -msgid "Excluding tax" -msgstr "Koszy z wyłączeniem podatku." - -# @ woocommerce -#: admin/settings/settings-init.php:1067 -msgid "Email Sender Options" -msgstr "Opcje nadawcy maili" - -# @ woocommerce -#: admin/settings/settings-init.php:1067 -msgid "" -"The following options affect the sender (email address and name) used in " -"WooCommerce emails." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1070 -#, fuzzy -msgid "\"From\" Name" -msgstr "Pole \"Od\"" - -# @ woocommerce -#: admin/settings/settings-init.php:1079 -#, fuzzy -msgid "\"From\" Email Address" -msgstr "E-mail \"Od\"" - -# @ woocommerce -#: admin/settings/settings-init.php:1092 -#, fuzzy -msgid "Email Template" -msgstr "Szablon maila" - -# @ woocommerce -#: admin/settings/settings-init.php:1092 -msgid "" -"This section lets you customise the WooCommerce emails. Click here to preview your email template. For more " -"advanced control copy woocommerce/templates/emails/ to " -"yourtheme/woocommerce/emails/." -msgstr "" -"Tutaj możesz dostosowywać wygląd maili sklepu. Kliknij tutaj, aby zobaczyć szablon e-maila. Aby mieć możliwość " -"zaawansowanej edycji przekopiuj katalog woocommerce/templates/emails/ do yourtheme/woocommerce/emails/." - -# @ woocommerce -#: admin/settings/settings-init.php:1095 -#, fuzzy -msgid "Header Image" -msgstr "Obrazek nagłowka" - -# @ woocommerce -#: admin/settings/settings-init.php:1096 -msgid "" -"Enter a URL to an image you want to show in the email's header. Upload your " -"image using the media uploader." -msgstr "" -"Wpisz link do obrazka, który chcesz użyć w nagłowku maila. Prześlij obrazek " -"za pomocą uploadera mediów." - -# @ woocommerce -#: admin/settings/settings-init.php:1104 -#, fuzzy -msgid "Email Footer Text" -msgstr "Tekst w stopce maila" - -# @ woocommerce -#: admin/settings/settings-init.php:1105 -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "Tekst, który będzie się pojawiać w stopce maili ze sklepu." - -# @ woocommerce -#: admin/settings/settings-init.php:1109 -msgid "Powered by WooCommerce" -msgstr "Napędzany przez WooCommerce" - -# @ woocommerce -#: admin/settings/settings-init.php:1113 -#, fuzzy -msgid "Base Colour" -msgstr "Podstawowy kolor" - -# @ woocommerce -#: admin/settings/settings-init.php:1114 -msgid "" -"The base colour for WooCommerce email templates. Default #557da1." -msgstr "" -"Podstawowy kolor używany w szablonach maili. Domyślnie #557da1." - -# @ woocommerce -#: admin/settings/settings-init.php:1122 -#, fuzzy -msgid "Background Colour" -msgstr "Kolor tła" - -# @ woocommerce -#: admin/settings/settings-init.php:1123 -#, fuzzy -msgid "" -"The background colour for WooCommerce email templates. Default " -"#f5f5f5." -msgstr "Kolor tła używany w szablonach maili. Domyślnie #eeeeee." - -# @ woocommerce -#: admin/settings/settings-init.php:1131 -#, fuzzy -msgid "Email Body Background Colour" -msgstr "Kolor tła treści maila" - -# @ woocommerce -#: admin/settings/settings-init.php:1132 -msgid "The main body background colour. Default #fdfdfd." -msgstr "Kolor tła głownej treści maila. Domyślnie #fdfdfd." - -# @ woocommerce -#: admin/settings/settings-init.php:1140 -#, fuzzy -msgid "Email Body Text Colour" -msgstr "Kolor tekstu" - -# @ woocommerce -#: admin/settings/settings-init.php:1141 -msgid "The main body text colour. Default #505050." -msgstr "Główny kolor tekstu maila. Domyślnie #505050." - -# @ woocommerce -#: admin/settings/settings-payment-gateways.php:27 -#: admin/settings/settings-shipping-methods.php:29 -#: admin/woocommerce-admin-init.php:709 -#: admin/woocommerce-admin-taxonomies.php:27 -#: admin/woocommerce-admin-taxonomies.php:121 -msgid "Default" -msgstr "Domyślne" - -# @ woocommerce -#: admin/settings/settings-payment-gateways.php:28 -msgid "Gateway" -msgstr "Bramka" - -# @ woocommerce -#: admin/settings/settings-payment-gateways.php:45 -msgid "Gateway ID" -msgstr "ID Bramki" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:23 -msgid "Shipping Methods" -msgstr "Metody wysyłki" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:25 -msgid "Drag and drop methods to control their display order." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:30 -msgid "Shipping Method" -msgstr "Metoda wysyłki" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:46 -msgid "Method ID" -msgstr "ID metody" - -#: admin/settings/settings-tax-rates.php:29 -msgid "Tax Rates for the \"%s\" Class" -msgstr "" - -#: admin/settings/settings-tax-rates.php:30 -msgid "" -"Define tax rates for countries and states below. See here " -"for available country/state codes." -msgstr "" - -#: admin/settings/settings-tax-rates.php:36 -msgid "Country Code" -msgstr "" - -#: admin/settings/settings-tax-rates.php:36 -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "" - -#: admin/settings/settings-tax-rates.php:38 -msgid "State Code" -msgstr "" - -#: admin/settings/settings-tax-rates.php:38 -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:40 -#: admin/settings/settings-tax-rates.php:217 -#, fuzzy -msgid "ZIP/Postcode" -msgstr "Kod pocztowy" - -#: admin/settings/settings-tax-rates.php:40 -msgid "" -"Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all areas. Wildcards (*) can be used. Ranges for numeric " -"postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "" - -#: admin/settings/settings-tax-rates.php:42 -msgid "" -"Cities for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all cities." -msgstr "" - -#: admin/settings/settings-tax-rates.php:44 -msgid "Rate %" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:44 -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "Wpisz stawkę podatkową (w procentach) do 4 miejsc po przecinku" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:46 -#, fuzzy -msgid "Tax Name" -msgstr "Dodaj znacznik" - -#: admin/settings/settings-tax-rates.php:46 -msgid "Enter a name for this tax rate." -msgstr "" - -#: admin/settings/settings-tax-rates.php:48 -#: admin/settings/settings-tax-rates.php:217 -msgid "Priority" -msgstr "" - -#: admin/settings/settings-tax-rates.php:48 -msgid "" -"Choose a priority for this tax rate. Only 1 matching rate per priority will " -"be used. To define multiple tax rates for a single area you need to specify " -"a different priority per rate." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:50 -#: admin/settings/settings-tax-rates.php:217 -msgid "Compound" -msgstr "Stawka składana" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:50 -msgid "" -"Choose whether or not this is a compound rate. Compound tax rates are " -"applied on top of other tax rates." -msgstr "" -"Wybierz czy to jest składana stawka. Składane stawki podatkowe są stosowane " -"po wyliczeniu pozostałych stawek podatkowych." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:52 -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "" -"Wybierz czy stawka podatkowa ma również być stosowana do kosztów wysyłki." - -#: admin/settings/settings-tax-rates.php:59 -msgid "Insert row" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:60 -#, fuzzy -msgid "Remove selected row(s)" -msgstr "Usuń wybrane wiersze" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:62 -#, fuzzy -msgid "Export CSV" -msgstr "Stawki eksportowe" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:63 -#, fuzzy -msgid "Import CSV" -msgstr "Stawki importowe" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:163 -#, fuzzy -msgid "No row(s) selected" -msgstr "Nie wybrano krajów" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -#, fuzzy -msgid "Country Code" -msgstr "Kraj" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -#, fuzzy -msgid "State Code" -msgstr "Numer rozliczeniowy (Sort Code)" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -#, fuzzy -msgid "Rate %" -msgstr "Stawka" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -#, fuzzy -msgid "Tax Name" -msgstr "Nazwa znacznika" - -#: admin/woocommerce-admin-attributes.php:77 -msgid "Please, provide an attribute name, slug and type." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:79 -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:81 -msgid "" -"Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:85 -#: admin/woocommerce-admin-attributes.php:90 -msgid "Slug “%s” is already in use. Change it, please." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:226 -msgid "Edit Attribute" -msgstr "Edytuj atrybut" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:236 -#: admin/woocommerce-admin-attributes.php:375 -msgid "Name for the attribute (shown on the front-end)." -msgstr "Nazwa atrybutu (pokazywana na stronie sklepu)." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:241 -#: admin/woocommerce-admin-attributes.php:307 -#: admin/woocommerce-admin-attributes.php:379 -msgid "Slug" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:245 -#: admin/woocommerce-admin-attributes.php:381 -msgid "" -"Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "" -"Unikalny odnośnik (URL)/odwołanie atrybutu; musi być krótszy niż 28 znaków." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:254 -#: admin/woocommerce-admin-attributes.php:387 -msgid "Select" -msgstr "Wybierz" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:255 -#: admin/woocommerce-admin-attributes.php:388 -msgid "Text" -msgstr "Tekst" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:258 -#: admin/woocommerce-admin-attributes.php:391 -msgid "" -"Determines how you select attributes for products. Text " -"allows manual entry via the product page, whereas select " -"attribute terms can be defined from this section. If you plan on using an " -"attribute for variations use select." -msgstr "" -"Określa jak wybierasz atrybuty produktów. Tekst pozwala na " -"ręczne wpisywanie na stronie produktu, natomiast listę " -"wartości atrybutów można zdefiniować w tej sekcji. Jeśli planujesz użyć " -"zdefiniowanych atrybutów wybierz lista." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:263 -#: admin/woocommerce-admin-attributes.php:395 -#, fuzzy -msgid "Default sort order" -msgstr "Domyślny koszt" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:267 -#: admin/woocommerce-admin-attributes.php:335 -#: admin/woocommerce-admin-attributes.php:397 -#, fuzzy -msgid "Custom ordering" -msgstr "Klient" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:269 -#: admin/woocommerce-admin-attributes.php:332 -#: admin/woocommerce-admin-attributes.php:399 -#, fuzzy -msgid "Term ID" -msgstr "Strona z regulaminem" - -#: admin/woocommerce-admin-attributes.php:271 -#: admin/woocommerce-admin-attributes.php:401 -msgid "" -"Determines the sort order on the frontend for this attribute. If using " -"custom ordering, you can drag and drop the terms in this attribute" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:276 -msgid "Update" -msgstr "Uaktualnij" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:309 -#, fuzzy -msgid "Order by" -msgstr "Sortuj wg:" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:310 -msgid "Terms" -msgstr "Wartości" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:355 -msgid "Configure terms" -msgstr "Konfiguruj wartości" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:359 -msgid "No attributes currently exist." -msgstr "Brak atrybutów" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:369 -msgid "Add New Attribute" -msgstr "Dodaj nowy atrybut" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:370 -msgid "" -"Attributes let you define extra product data, such as size or colour. You " -"can use these attributes in the shop sidebar using the \"layered nav\" " -"widgets. Please note: you cannot rename an attribute later on." -msgstr "" -"Atrybuty pozwajają ci zdefiniować dodatkowe dane produktu, takie jak rozmiar " -"lub kolor. Możesz wykorzystać te atrybuty w pasku bocznym sklepu używając " -"\"nawigacyjne\" widgety. Zwróć uwagę: później nie możesz zmienić nazwy " -"atrybutu." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:404 -msgid "Add Attribute" -msgstr "Dodaj atrybut" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:415 -msgid "Are you sure you want to delete this attribute?" -msgstr "Czy na pewno chcesz usunąć ten atrybut?" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:26 -#: admin/woocommerce-admin-reports.php:30 -#: admin/woocommerce-admin-reports.php:75 -#: admin/woocommerce-admin-reports.php:91 -#: admin/woocommerce-admin-reports.php:102 -msgid "Overview" -msgstr "Przegląd" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:29 -msgid "" -"Thank you for using WooCommerce :) Should you need help using or extending " -"WooCommerce please read the documentation. For further " -"assistance you can use the community forum or if you have " -"access, the members forum." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:31 -msgid "" -"If you are having problems, or to assist us with support, please check the " -"status page to identify any problems with your configuration:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:33 admin/woocommerce-admin-init.php:82 -#: admin/woocommerce-admin-status.php:46 -msgid "System Status" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:35 -msgid "" -"If you come across a bug, or wish to contribute to the project you can also " -"get involved on GitHub." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:43 -msgid "" -"Here you can set up your store and customise it to fit your needs. The " -"sections available from the settings page include:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:44 -msgid "" -"General settings such as your shop base, currency, and script/styling " -"options which affect features used in your store." -msgstr "" -"Ogólne ustawienia, takie jak baza sklepu, skrypty, stylowanie, które " -"wpływają na funkcjonalności sklepu." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:45 -#: admin/woocommerce-admin-settings.php:221 -msgid "Pages" -msgstr "Strony" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:45 -msgid "" -"This is where important store page are defined. You can also set up other " -"pages (such as a Terms page) here." -msgstr "" -"Tutaj są definiowane ważne strony sklepu. Możesz równiż skonfigurować tutaj " -"inne strony (np. stronę z Regulaminem)." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:46 -msgid "" -"Options for how things like price, images and weights appear in your product " -"catalog." -msgstr "" -"Ustawienia cen, obrazków i wag, które pojawiają się w katalogu produktów." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:47 -msgid "Options concerning stock and stock notices." -msgstr "Ustawienia zapasów magazynowych i powiadomień." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:48 -msgid "Options concerning tax, including international and local tax rates." -msgstr "" -"Ustawienia podatków, w tym międzynarodowych i lokalnych stawek podatkowych." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:49 -msgid "" -"This is where shipping options are defined, and shipping methods are set up." -msgstr "Tutaj zmienisz ustawienia wysyłki i zdefiniujesz metody wysyłki." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:50 -msgid "Payment Methods" -msgstr "Metody płatności" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:50 -msgid "" -"This is where payment gateway options are defined, and individual payment " -"gateways are set up." -msgstr "" -"Tutaj zdefiniujesz ustawienia bramek płatności i poszczególne bramki " -"płatności." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:51 -#: admin/woocommerce-admin-settings.php:226 -msgid "Emails" -msgstr "E-maile" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:51 -msgid "Here you can customise the way WooCommerce emails appear." -msgstr "Tutaj możesz ustawić wygląd e-maili WooCommerce." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:52 -#: admin/woocommerce-admin-settings.php:227 -msgid "Integration" -msgstr "Integracja" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:52 -msgid "" -"The integration section contains options for third party services which " -"integrate with WooCommerce." -msgstr "" -"Sekcja integracji zawiera ustawienia dla zewnętrznych usług zintegrowanych " -"ze sklepem WooCommerce." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:57 admin/woocommerce-admin-init.php:59 -msgid "Reports" -msgstr "Raporty" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:59 -msgid "" -"The reports section can be accessed from the left-hand navigation menu. Here " -"you can generate reports for sales and customers." -msgstr "" -"Raporty są dostępne w menu po lewej stronie. Tutaj możesz wygenerować " -"raporty sprzedaży i klientów." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:60 -#: admin/woocommerce-admin-reports.php:27 -#: admin/woocommerce-admin-reports.php:986 -#: admin/woocommerce-admin-reports.php:1082 -#: admin/woocommerce-admin-reports.php:1199 -msgid "Sales" -msgstr "Sprzedaż" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:60 -msgid "Reports for sales based on date, top sellers and top earners." -msgstr "" -"Raporty sprzdaży oparte na dacie, najczęściej sprzedawanych i najwięcej " -"zarabiających produktach." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:61 -#: admin/woocommerce-admin-reports.php:88 -msgid "Customers" -msgstr "Klienci" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:61 -msgid "Customer reports, such as signups per day." -msgstr "Raporty klientów, np. rejestracje na dzień." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:62 -msgid "Stock reports for low stock and out of stock items." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:67 -#: admin/woocommerce-admin-dashboard.php:142 -msgid "Orders" -msgstr "Zamówienia" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:69 -msgid "" -"The orders section can be accessed from the left-hand navigation menu. Here " -"you can view and manage customer orders." -msgstr "" -"Zamówienia śa dostępna w menu po lewej stronie. Tutaj możesz zobaczyć i " -"zarządzać zamówieniami klientów." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:70 -msgid "" -"Orders can also be added from this section if you want to set them up for a " -"customer manually." -msgstr "" -"Zamówienia mogą być również dodawane z tej sekcji jeśli chcesz je dodać " -"ręcznie dla klienta." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:77 -msgid "" -"Coupons can be managed from this section. Once added, customers will be able " -"to enter coupon codes on the cart/checkout page. If a customer uses a coupon " -"code they will be viewable when viewing orders." -msgstr "" -"W tej sekcji możesz zarządzać kuponami . Po ich dodaniu klienci będą mogli " -"wpisać kody kuponów na stronie koszyka/zamówienia. Jeśli klient użyje kuponu " -"będzie on widoczny w zamówieniach." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:81 -msgid "For more information:" -msgstr "Więcej informacji:" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:82 -msgid "" -"WooCommerce" -msgstr "" -"WooCommerce" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:83 -msgid "" -"Project on WordPress.org" -msgstr "" -"Projekt na WordPress.org" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:84 -msgid "" -"Project on Github" -msgstr "" -"Projekt na Github" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:85 -msgid "" -"WooCommerce Docs" -msgstr "" -"Dokumentacja WooCommerce" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:86 -msgid "" -"Official Extensions" -msgstr "" -"Oficjalne rozszerzenia" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:87 -msgid "" -"Official Themes" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:40 -msgid "Monthly Sales" -msgstr "Miesięczna sprzedaż" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:43 -msgid "WooCommerce Right Now" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:44 -msgid "WooCommerce Recent Orders" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:45 -msgid "WooCommerce Recent Reviews" -msgstr "Najnowsze recenzje WooCommerce" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:78 -msgid "Shop Content" -msgstr "Sklep" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:84 -#: admin/woocommerce-admin-functions.php:194 -#: admin/woocommerce-admin-init.php:713 -#: admin/woocommerce-admin-reports.php:985 -#: admin/woocommerce-admin-reports.php:1081 -msgid "Product" -msgid_plural "Products" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:98 -msgid "Product Category" -msgid_plural "Product Categories" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:112 -msgid "Product Tag" -msgid_plural "Product Tags" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:126 -msgid "Attribute" -msgid_plural "Attributes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:148 -msgid "Pending" -msgstr "Oczekiwanie na płatność" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:162 -msgid "On-Hold" -msgstr "Wstrzymane" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:190 -msgid "Completed" -msgstr "Zrealizowane" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:207 -msgid "You are using WooCommerce %s." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:238 -msgid "l jS \\of F Y h:i:s A" -msgstr "l jS \\z F Y h:i:s A" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:239 -msgid "item" -msgid_plural "items" -msgstr[0] "rzecz" -msgstr[1] "rzeczy" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:239 -msgid "Total:" -msgstr "Suma:" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:245 -msgid "There are no product orders yet." -msgstr "Nie ma jeszcze zamówień." - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:279 -msgid "out of 5" -msgstr "z 5" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:287 -msgid "There are no product reviews yet." -msgstr "Na razie brak recenzji produktów." - -#: admin/woocommerce-admin-dashboard.php:428 -msgid "Sold" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:429 -msgid "Earned" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:184 -#: admin/woocommerce-admin-install.php:216 -msgid "Order Received" -msgstr "Zamówienie otrzymane" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:186 -msgid "" -"Thank you, we are now processing your order. Your order's details are below." -msgstr "" -"Dziękujemy, w tej chwili przetwarzamy Twoje zamówienie. Szczegóły zamówienia " -"znajdują się poniżej." - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:188 -msgid "Order:" -msgstr "Zamówienie:" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:195 -msgid "Quantity" -msgstr "Ilość" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:208 -#, fuzzy -msgid "Order total:" -msgstr "Suma zamówienia:" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:214 -msgid "Customer details" -msgstr "Dane klienta" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:220 -msgid "Billing address" -msgstr "Adres rozliczeniowy" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:227 -msgid "Shipping address" -msgstr "Adres do wysyłki" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:459 -msgid "Could not compile woocommerce.less:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:480 -#: admin/woocommerce-admin-functions.php:481 -msgid "Mark processing" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:483 -#: admin/woocommerce-admin-functions.php:484 -msgid "Mark completed" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:521 -msgid "Order status changed by bulk edit:" -msgstr "" - -# @ default -#: admin/woocommerce-admin-functions.php:544 -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:57 -msgid "WooCommerce" -msgstr "WooCommerce" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:81 -msgid "WooCommerce Settings" -msgstr "Ustawienia WooCommerce" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:82 -msgid "WooCommerce Status" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:135 admin/woocommerce-admin-init.php:137 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:390 -#, fuzzy -msgid "" -"Are you sure you want to remove the selected items? If you have previously " -"reduced this item's stock, or this order was submitted by a customer, you " -"will need to manually restore the item's stock." -msgstr "" -"Czy skasować tą pozycję? Jeśli wcześniej zmniejszyłeś ilość produktów w " -"magazynie albo zamówienie zostało złożone przez klienta, wtedy musisz " -"ręcznie zmodyfikować/przywrócić ilość produktów." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:391 -#, fuzzy -msgid "Remove this item meta?" -msgstr "Usuń rzecz" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:392 -msgid "Remove this attribute?" -msgstr "Usunąć ten atrybut?" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:400 -msgid "Enter a name for the new attribute term:" -msgstr "" - -#: admin/woocommerce-admin-init.php:401 -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:402 -msgid "" -"Calculate line taxes? This will calculate taxes based on the customers " -"country. If no billing/shipping is set it will use the store base country." -msgstr "" -"Przeliczyć podatki? To spowoduje przeliczenie podatków w oparciu o kraj " -"klienta. Jeśli brak adresu płatności/wysyłki zostanie zastosowany kraj " -"bazowy." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:403 -msgid "" -"Copy billing information to shipping information? This will remove any " -"currently entered shipping information." -msgstr "" -"Czy skopiować dane podane w płatnościach do informacji wysyłki? Ta opcja " -"nadpisze aktualne informacje wysyłki." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:404 -msgid "" -"Load the customer's billing information? This will remove any currently " -"entered billing information." -msgstr "" -"Czy pobrać dane płatności klienta? Ta opcja usunie aktualnie wpisane dane " -"płatności." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:405 -msgid "" -"Load the customer's shipping information? This will remove any currently " -"entered shipping information." -msgstr "" -"Czy pobrać dane wysyłki klienta? Ta opcja usunie aktualnie wpisane dane " -"wysyłki." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:409 -msgid "No customer selected" -msgstr "Nie wybrano klienta" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:617 -msgid "Product updated. View Product" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:618 admin/woocommerce-admin-init.php:633 -#: admin/woocommerce-admin-init.php:648 -msgid "Custom field updated." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:619 admin/woocommerce-admin-init.php:634 -#: admin/woocommerce-admin-init.php:649 -msgid "Custom field deleted." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:620 -msgid "Product updated." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:621 -msgid "Product restored to revision from %s" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:622 -msgid "Product published. View Product" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:623 -msgid "Product saved." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:624 -msgid "Product submitted. Preview Product" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:625 -msgid "" -"Product scheduled for: %1$s. Preview Product" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:626 admin/woocommerce-admin-init.php:641 -#: admin/woocommerce-admin-init.php:656 -msgid "M j, Y @ G:i" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:627 -msgid "" -"Product draft updated. Preview Product" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:632 admin/woocommerce-admin-init.php:635 -#: admin/woocommerce-admin-init.php:637 -msgid "Order updated." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:636 -msgid "Order restored to revision from %s" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:638 -msgid "Order saved." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:639 -msgid "Order submitted." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:640 -msgid "Order scheduled for: %1$s." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:642 -msgid "Order draft updated." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:647 admin/woocommerce-admin-init.php:650 -#: admin/woocommerce-admin-init.php:652 -msgid "Coupon updated." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:651 -msgid "Coupon restored to revision from %s" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:653 -msgid "Coupon saved." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:654 -msgid "Coupon submitted." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:655 -msgid "Coupon scheduled for: %1$s." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:657 -msgid "Coupon draft updated." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:674 -msgid "Order notes" -msgstr "" - -#: admin/woocommerce-admin-init.php:689 -msgid "" -"These settings control the permalinks used for products. These settings only " -"apply when not using \"default\" permalinks above." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:696 -#, fuzzy -msgctxt "default-slug" -msgid "shop" -msgstr "sklep" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:697 -#, fuzzy -msgctxt "default-slug" -msgid "product" -msgstr "Produkty" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:718 -#, fuzzy -msgid "Shop base" -msgstr "Strony Sklepu" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:722 -#, fuzzy -msgid "Shop base with category" -msgstr "Bazowa kategoria produktów" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:728 -#, fuzzy -msgid "Custom Base" -msgstr "Klient" - -#: admin/woocommerce-admin-init.php:730 -msgid "" -"Enter a custom base to use. A base must be set or WordPress " -"will use default instead." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:758 -#, fuzzy -msgid "Product permalink base" -msgstr "Nazwa produktu" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:763 -#, fuzzy -msgid "Product category base" -msgstr "Fraza kategorii produktów" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:770 -#, fuzzy -msgid "Product tag base" -msgstr "Fraza tagu produktu" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:777 -#, fuzzy -msgid "Product attribute base" -msgstr "Kategorie produktów" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:189 -msgctxt "page_slug" -msgid "shop" -msgstr "sklep" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:189 -msgid "Shop" -msgstr "Sklep" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:192 -msgctxt "page_slug" -msgid "cart" -msgstr "koszyk" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:192 -msgid "Cart" -msgstr "Koszyk" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:195 -msgctxt "page_slug" -msgid "checkout" -msgstr "zamówienie" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:198 -msgctxt "page_slug" -msgid "my-account" -msgstr "moje-konto" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:198 -msgid "My Account" -msgstr "Moje konto" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:201 -#, fuzzy -msgctxt "page_slug" -msgid "lost-password" -msgstr "Straciłeś hasło?" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:201 -#, fuzzy -msgid "Lost Password" -msgstr "Straciłeś hasło?" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:204 -msgctxt "page_slug" -msgid "edit-address" -msgstr "edytuj-adres" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:204 -msgid "Edit My Address" -msgstr "Edytuj adres" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:207 -msgctxt "page_slug" -msgid "view-order" -msgstr "podglad-zamowienia" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:207 -msgid "View Order" -msgstr "Podgląd zamówienia" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:210 -msgctxt "page_slug" -msgid "change-password" -msgstr "zmien-haslo" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:210 -msgid "Change Password" -msgstr "Zmień hasło" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:213 -msgctxt "page_slug" -msgid "pay" -msgstr "zaplac" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:213 -msgid "Checkout → Pay" -msgstr "Opłać zamówienie" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:216 -msgctxt "page_slug" -msgid "order-received" -msgstr "zamowienie-otrzymane" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:36 -msgid "Sales by day" -msgstr "Sprzedaż dzienna" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:41 -msgid "Sales by month" -msgstr "Sprzedaż miesięczna" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:46 -msgid "Taxes by month" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:51 -msgid "Product Sales" -msgstr "Sprzedaż produktów" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:56 -msgid "Top sellers" -msgstr "Najlepiej sprzedające się produkty" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:61 -msgid "Top earners" -msgstr "Najlepiej zarabiające produkty" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:66 -#, fuzzy -msgid "Sales by category" -msgstr "Wybierz kategorię" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:81 -#, fuzzy -msgid "Discounts by coupon" -msgstr "Typ rabatu" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:232 -#: admin/woocommerce-admin-reports.php:497 -#: admin/woocommerce-admin-reports.php:702 -#: admin/woocommerce-admin-reports.php:883 -msgid "Sales amount" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:237 -#: admin/woocommerce-admin-reports.php:497 -#: admin/woocommerce-admin-reports.php:702 -#: admin/woocommerce-admin-reports.php:883 -msgid "Number of sales" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:369 -msgid "Total sales" -msgstr "Łączna sprzedaż" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:371 -#: admin/woocommerce-admin-reports.php:377 -#: admin/woocommerce-admin-reports.php:383 -#: admin/woocommerce-admin-reports.php:389 -#: admin/woocommerce-admin-reports.php:395 -#: admin/woocommerce-admin-reports.php:401 -#: admin/woocommerce-admin-reports.php:644 -#: admin/woocommerce-admin-reports.php:650 -#: admin/woocommerce-admin-reports.php:656 -#: admin/woocommerce-admin-reports.php:662 -#: admin/woocommerce-admin-reports.php:828 -#: admin/woocommerce-admin-reports.php:834 -#: admin/woocommerce-admin-reports.php:840 -#: admin/woocommerce-admin-reports.php:846 -#: admin/woocommerce-admin-reports.php:1364 -#: admin/woocommerce-admin-reports.php:1370 -#: admin/woocommerce-admin-reports.php:1376 -#: admin/woocommerce-admin-reports.php:1810 -#: admin/woocommerce-admin-reports.php:1816 -#: admin/woocommerce-admin-reports.php:1822 -#: admin/woocommerce-admin-reports.php:1828 -#: admin/woocommerce-admin-reports.php:1834 -#: admin/woocommerce-admin-reports.php:1840 -#: admin/woocommerce-admin-reports.php:2280 -#: admin/woocommerce-admin-reports.php:2291 -#: admin/woocommerce-admin-reports.php:2302 -msgid "n/a" -msgstr "brak" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:375 -msgid "Total orders" -msgstr "Łącznie zamówień" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:377 -#: admin/woocommerce-admin-reports.php:650 -#: admin/woocommerce-admin-reports.php:834 -msgid "items" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:381 -msgid "Average order total" -msgstr "Średnia wartość zamówienia" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:387 -msgid "Average order items" -msgstr "Średnia liczba zamawianych produktów" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:393 -msgid "Discounts used" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:399 -msgid "Total shipping costs" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:407 -#, fuzzy -msgid "This month's sales" -msgstr "Sprzedaż w tym miesiącu" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1356 -msgid "From:" -msgstr "Od:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1356 -msgid "To:" -msgstr "Do:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:821 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1229 -#: admin/woocommerce-admin-reports.php:1356 -#: admin/woocommerce-admin-reports.php:1489 -#: admin/woocommerce-admin-reports.php:2269 -#: admin/woocommerce-admin-reports.php:2453 -msgid "Show" -msgstr "Pokaż" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:642 -msgid "Total sales in range" -msgstr "Łączna sprzedaż w okresie" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:648 -msgid "Total orders in range" -msgstr "Łącznie zamówień w okresie" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:654 -msgid "Average order total in range" -msgstr "Średnia wartość zamówienia w okresie" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:660 -msgid "Average order items in range" -msgstr "Średnia liczba zamawianych produktów w okresie" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:668 -msgid "Sales in range" -msgstr "Sprzedaż w okresie" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:815 -#: admin/woocommerce-admin-reports.php:2263 -msgid "Year:" -msgstr "Rok:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:826 -msgid "Total sales for year" -msgstr "Łączna sprzedaż w roku" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:832 -msgid "Total orders for year" -msgstr "Łącznie zamówień w roku" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:838 -msgid "Average order total for year" -msgstr "Średnia wartość zamówienia w roku" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:844 -msgid "Average order items for year" -msgstr "Średnia liczba zamawianych produktów w roku" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:852 -msgid "Monthly sales for year" -msgstr "Miesięczna sprzedaż w roku" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1000 -msgid "Product does not exist" -msgstr "Produkt nie istnieje" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1097 -msgid "Product no longer exists" -msgstr "Produkt już nie istnieje" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1194 -msgid "Sales for %s:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1198 -#: admin/woocommerce-admin-reports.php:2311 -msgid "Month" -msgstr "Miesiąc" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1219 -msgid "No sales :(" -msgstr "Brak sprzedaży :(" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1362 -#, fuzzy -msgid "Total orders containing coupons" -msgstr "Łącznie zamówień w okresie" - -#: admin/woocommerce-admin-reports.php:1368 -msgid "Percent of orders containing coupons" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1374 -msgid "Total coupon discount" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1383 -msgid "Most popular coupons" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1393 -msgid "Used 1 time" -msgid_plural "Used %d times" -msgstr[0] "" -msgstr[1] "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1396 -#: admin/woocommerce-admin-reports.php:1418 -#, fuzzy -msgid "No coupons found" -msgstr "Nie znaleziono kuponów" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1405 -#, fuzzy -msgid "Greatest discount amount" -msgstr "Stworzyć konto?" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1415 -#, fuzzy -msgid "Discounted %s" -msgstr "Rabaty" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1474 -#: admin/woocommerce-admin-reports.php:2430 -#, fuzzy -msgid "Show:" -msgstr "Pokaż" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1531 -msgid "Coupon" -msgstr "Kupon" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1614 -#, fuzzy -msgid "Top coupon" -msgstr "Zastosuj kupon" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1622 -#, fuzzy -msgid "Worst coupon" -msgstr "Nadrzędny kupon" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1630 -#, fuzzy -msgid "Discount average" -msgstr "Typ rabatu" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1638 -#, fuzzy -msgid "Discount median" -msgstr "Typ rabatu" - -#: admin/woocommerce-admin-reports.php:1658 -msgid "Monthly discounts by coupon" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1808 -msgid "Total customers" -msgstr "Łącznie klientów" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1814 -msgid "Total customer sales" -msgstr "Łączna sprzedaż klientom" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1820 -msgid "Total guest sales" -msgstr "Łączna sprzedaż gościom" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1826 -msgid "Total customer orders" -msgstr "Łącznie zamówienia klientów" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1832 -msgid "Total guest orders" -msgstr "Łącznie zamówienia gości" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1838 -msgid "Average orders per customer" -msgstr "Średnia liczba zamówień na klienta" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1846 -msgid "Signups per day" -msgstr "Rejestracje dziennie" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2048 -msgid "Low stock" -msgstr "Niski stan magazynowy" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2070 -#: admin/woocommerce-admin-reports.php:2105 -msgid "%d in stock" -msgid_plural "%d in stock" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2075 -msgid "No products are low in stock." -msgstr "Brak produktów o niskim stanie magazynowym." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2110 -msgid "No products are out in stock." -msgstr "Brak produktów, których nie ma w magazynie." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2274 -msgid "Total taxes for year" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2285 -msgid "Total product taxes for year" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2296 -msgid "Total shipping tax for year" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2312 -msgid "Total Sales" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2312 -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2313 -msgid "Total Shipping" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2313 -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2314 -msgid "Total Product Taxes" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2314 -msgid "This is the sum of the 'Cart Tax' field within your orders." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2315 -msgid "Total Shipping Taxes" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2315 -msgid "This is the sum of the 'Shipping Tax' field within your orders." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2316 -msgid "Total Taxes" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2316 -msgid "" -"This is the sum of the 'Cart Tax' and 'Shipping Tax' fields within your " -"orders." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2317 -msgid "Net profit" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2317 -msgid "Total sales minus shipping and tax." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2362 -msgid "Toggle tax rows" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2508 -#, fuzzy -msgid "Category" -msgstr "Kategoria:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2610 -#, fuzzy -msgid "Top category" -msgstr "Kategoria:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2619 -#, fuzzy -msgid "Worst category" -msgstr "kategoria-produktu" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2627 -#, fuzzy -msgid "Category sales average" -msgstr "Kolejność kategorii" - -#: admin/woocommerce-admin-reports.php:2638 -msgid "Category sales median" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2658 -#, fuzzy -msgid "Monthly sales by category" -msgstr "Miesięczna sprzedaż w roku" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:45 -msgid "Action failed. Please refresh the page and retry." -msgstr "Akcja nieudana. Odśwież stronę i spróbuj ponownie." - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:164 -msgid "Your settings have been saved." -msgstr "Ustawienia zostały zapisane." - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:200 -msgid "" -"Congratulations! – WooCommerce has been installed and " -"setup. Enjoy :)" -msgstr "" -"Gratulacje! – Sklep WooCommerce został zainstalowany " -"i skonfigurowany. Baw się dobrze :)" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:244 -msgid "" -"More functionality and gateway options available via WC official extensions." -msgstr "" -"Dodatkowe funkcjonalności i bramki płatności są dostępne na oficjalnej stronie rozszerzeń WC." - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:262 -msgid "Tax Rates" -msgstr "Stawki podatkowe" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:289 -#, fuzzy -msgid "Email Options" -msgstr "Opcje nadawcy maili" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:420 -msgid "Save changes" -msgstr "Zapisz zmiany" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:461 -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "Niezapisane zmiany zostaną utracone, jeśli opuścisz tę stronę." - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:829 -msgid "Hard Crop" -msgstr "Mocno obcinaj" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:854 -msgid "Select a page…" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:877 -msgid "Choose a country…" -msgstr "Wybierz kraj…" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:897 -msgid "Choose countries…" -msgstr "Wybierz kraje…" - -#: admin/woocommerce-admin-status.php:22 -msgid "WC Transients" -msgstr "" - -#: admin/woocommerce-admin-status.php:23 -msgid "Clear transients" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:24 -msgid "This tool will clear the product/shop transients cache." -msgstr "" - -#: admin/woocommerce-admin-status.php:27 -msgid "Expired Transients" -msgstr "" - -#: admin/woocommerce-admin-status.php:28 -msgid "Clear expired transients" -msgstr "" - -#: admin/woocommerce-admin-status.php:29 -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:32 -#, fuzzy -msgid "Term counts" -msgstr "Konta klientów" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:33 -#, fuzzy -msgid "Recount terms" -msgstr "Wybierz wartości" - -#: admin/woocommerce-admin-status.php:34 -msgid "" -"This tool will recount product terms - useful when changing your settings in " -"a way which hides products from the catalog." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:37 -msgid "Capabilities" -msgstr "" - -#: admin/woocommerce-admin-status.php:38 -msgid "Reset capabilities" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:39 -msgid "" -"This tool will reset the admin, customer and shop_manager roles to default. " -"Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:46 -msgid "Generate report" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:55 -msgid "Product Transients Cleared" -msgstr "" - -#: admin/woocommerce-admin-status.php:96 -msgid "%d Transients Rows Cleared" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:104 -msgid "Roles successfully reset" -msgstr "" - -#: admin/woocommerce-admin-status.php:116 -msgid "Terms successfully recounted" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:125 -msgid "There was an error calling %s::%s" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:128 -msgid "There was an error calling %s" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:141 -msgid "Versions" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:147 -msgid "WooCommerce version" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:151 -#, fuzzy -msgid "WooCommerce DB version" -msgstr "Najlepsi sprzedawcy WooCommerce" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:155 -msgid "WordPress version" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:159 -msgid "Installed plugins" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:174 -msgid "by" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:174 -msgid "version" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:193 -msgid "Home URL" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:197 -msgid "Site URL" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:201 -msgid "Force SSL" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:215 -msgid "Shop base page" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:267 -msgid "Page not set" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:277 -msgid "Page does not contain the shortcode: %s" -msgstr "" - -#: admin/woocommerce-admin-status.php:296 -msgid "Core Taxonomies" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:302 -#, fuzzy -msgid "Order Statuses" -msgstr "Statusy zamówień" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:312 -msgid "Server Environment" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:318 -msgid "PHP Version" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:325 -msgid "Server Software" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:331 -msgid "WP Max Upload Size" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:337 -msgid "Server upload_max_filesize" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:344 -msgid "Server post_max_size" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:351 -msgid "WP Memory Limit" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:356 -msgid "" -"%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:363 -msgid "WP Debug Mode" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:367 -msgid "WC Logging" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:370 -msgid "Log directory is writable." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:372 -msgid "" -"Log directory (woocommerce/logs/) is not writable. Logging will " -"not be possible." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:379 -msgid "Remote Posting/IPN" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:387 -msgid "fsockopen/cURL" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:390 -msgid "Your server has fsockopen and cURL enabled." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:392 -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:394 -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:398 -msgid "" -"Your server does not have fsockopen or cURL enabled - PayPal IPN and other " -"scripts which communicate with other servers will not work. Contact your " -"hosting provider." -msgstr "" - -#: admin/woocommerce-admin-status.php:403 -msgid "SOAP Client" -msgstr "" - -#: admin/woocommerce-admin-status.php:405 -msgid "Your server has the SOAP Client class enabled." -msgstr "" - -#: admin/woocommerce-admin-status.php:408 -msgid "" -"Your server does not have the SOAP Client class enabled - " -"some gateway plugins which use SOAP may not work as expected." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:413 -msgid "WP Remote Post Check" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:424 -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:427 -msgid "" -"wp_remote_post() failed. PayPal IPN won't work with your server. Contact " -"your hosting provider. Error:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:430 -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:452 -msgid "Tools" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:25 -#: admin/woocommerce-admin-taxonomies.php:118 -#, fuzzy -msgid "Display type" -msgstr "Typ wyświetlania:" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:29 -#: admin/woocommerce-admin-taxonomies.php:123 -#, fuzzy -msgid "Subcategories" -msgstr "Kategorie" - -#: admin/woocommerce-admin-taxonomies.php:30 -#: admin/woocommerce-admin-taxonomies.php:124 -msgid "Both" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:34 -#: admin/woocommerce-admin-taxonomies.php:129 -msgid "Thumbnail" -msgstr "Miniaturka" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:38 -#: admin/woocommerce-admin-taxonomies.php:134 -msgid "Upload/Add image" -msgstr "Wgraj/Dodaj obrazek" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:39 -#: admin/woocommerce-admin-taxonomies.php:135 -msgid "Remove image" -msgstr "Usuń obrazek" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:64 -#: admin/woocommerce-admin-taxonomies.php:156 -#, fuzzy -msgid "Use image" -msgstr "Usuń obrazek" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:222 -msgid "" -"Product categories for your store can be managed here. To change the order " -"of categories on the front-end you can drag and drop to sort them. To see " -"more categories listed click the \"screen options\" link at the top of the " -"page." -msgstr "" -"Tutaj możesz zarządzać kategoriami produktów. Aby zmienić kolejność " -"kategorii w sklepie możesz je przeciągać. Aby zobaczyć więcej kategorii " -"kliknij link \"Opcje ekarnu\" na górze strony." - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:237 -msgid "" -"Shipping classes can be used to group products of similar type. These groups " -"can then be used by certain shipping methods to provide different rates to " -"different products." -msgstr "" -"Klasy wysyłkowe mogą być użyte do grupowania produktów podobnego typu. Te " -"grupy mogą być użyte przez metody wysyłki do obliczenia różnych stawek dla " -"różnych produktów." - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:365 -msgid "Configure shipping class" -msgstr "Skonfiguruj klasy wysyłkowe" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:26 -msgid "Billing Address" -msgstr "Adres płatności" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:27 -msgid "Shipping Address" -msgstr "Adres wysyłki" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:28 -msgid "Paying Customer?" -msgstr "Płacący klient?" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:29 -#, fuzzy -msgid "Completed Orders" -msgstr "Zrealizowane" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:144 -msgid "Customer Billing Address" -msgstr "Adres płatności klienta" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:147 admin/woocommerce-admin-users.php:196 -msgid "First name" -msgstr "Imię" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:151 admin/woocommerce-admin-users.php:200 -msgid "Last name" -msgstr "Nazwisko" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:176 -#, fuzzy -msgid "Country or state code" -msgstr "Stan/Okręg lub kod stanu" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:180 admin/woocommerce-admin-users.php:229 -msgid "2 letter Country code" -msgstr "dwuliterowy kod kraju" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:183 -msgid "Telephone" -msgstr "Telefon" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:193 -msgid "Customer Shipping Address" -msgstr "Adres wysyłki klienta" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:225 -msgid "State/County or state code" -msgstr "Stan/Okręg lub kod stanu" - -# @ woocommerce -#~ msgid "Sorry, your session has expired." -#~ msgstr "Przykro mi, ale Twoja sesja wygasła." - -# @ woocommerce -#~ msgid "Return to homepage →" -#~ msgstr "Wróć do strony głownej →" - -# @ woocommerce -#~ msgid "You do not have sufficient permissions to access this page." -#~ msgstr "Nie masz wystarczających uprawnień na dostęp do tej strony." - -# @ woocommerce -#~ msgid "You have taken too long. Please go back and retry." -#~ msgstr "Zabrało Ci to za dużo czasu. Wróć i spróbuj ponownie." - -# @ woocommerce -#~ msgid "Item #%s stock reduced from %s to %s." -#~ msgstr "Stan magazynowy #%s zmniejszony z %s do %s." - -# @ woocommerce -#~ msgid "Item #%s stock increased from %s to %s." -#~ msgstr "Stan magazynowy #%s zwiększony z %s do %s." - -# @ woocommerce -#, fuzzy -#~ msgid "Value" -#~ msgstr "Wartość (wartości)" - -# @ woocommerce -#~ msgid "Cross-sell" -#~ msgstr "Cross-sell" - -# @ woocommerce -#~ msgid "Up-sell" -#~ msgstr "Up-sell" - -# @ woocommerce -#~ msgid "No products found" -#~ msgstr "Nie znaleziono produktów" - -# @ woocommerce -#, fuzzy -#~ msgctxt "slug" -#~ msgid "uncategorized" -#~ msgstr "Kategorie" - -# @ woocommerce -#~ msgid "Select a category" -#~ msgstr "Wybierz kategorię" - -# @ woocommerce -#~ msgid "Customer" -#~ msgstr "Klient" - -# @ woocommerce -#~ msgid "Shop Manager" -#~ msgstr "Kierownik sklepu" - -# @ woocommerce -#~ msgid "Logout" -#~ msgstr "Wyloguj" - -# @ woocommerce -#~ msgid "Cart updated." -#~ msgstr "Koszyk zaktualizowany." - -# @ woocommerce -#~ msgid "Please choose product options…" -#~ msgstr "Proszę wybierz opcje produktów …" - -# @ woocommerce -#, fuzzy -#~ msgid "Please choose a product to add to your cart…" -#~ msgstr "Proszę wybierz produkt…" - -# @ woocommerce -#, fuzzy -#~ msgid ""%s" was successfully added to your cart." -#~ msgstr "Produkt pomyślnie dodany do Twojego koszyka." - -# @ woocommerce -#~ msgid "Continue Shopping →" -#~ msgstr "Kontynuuj zakupy →" - -# @ woocommerce -#~ msgid "View Cart →" -#~ msgstr "Zobacz koszyk →" - -# @ woocommerce -#~ msgid "Username is required." -#~ msgstr "Nazwa użytkownika jest wymagana." - -# @ woocommerce -#~ msgid "Password is required." -#~ msgstr "Hasło jest wymagane." - -# @ woocommerce -#~ msgid "ERROR" -#~ msgstr "BŁĄD" - -# @ woocommerce -#~ msgid "Please enter a username." -#~ msgstr "Proszę wpisać nazwę użytkownika." - -# @ woocommerce -#~ msgid "" -#~ "This username is invalid because it uses illegal characters. Please enter " -#~ "a valid username." -#~ msgstr "" -#~ "Ta nazwa użytkownika jest błędna, ponieważ zawiera niedozwolone znaki. " -#~ "Proszę wpisać poprawną nazwę użytkownika." - -# @ woocommerce -#~ msgid "This username is already registered, please choose another one." -#~ msgstr "Ta nazwa użytkownika już istnieje, proszę wybrać inną." - -# @ woocommerce -#~ msgid "Please type your e-mail address." -#~ msgstr "Proszę wpisać swój adres e-mail." - -# @ woocommerce -#~ msgid "The email address isn’t correct." -#~ msgstr "Twój adres e-mail jest niepoprawny," - -# @ woocommerce -#~ msgid "This email is already registered, please choose another one." -#~ msgstr "Twn adres e-mail jest już zarejestrowany, proszę wybrać inny." - -# @ woocommerce -#~ msgid "Re-enter your password." -#~ msgstr "Powtórz hasło." - -# @ woocommerce -#~ msgid "Passwords do not match." -#~ msgstr "Hasła się nie zgadzają." - -# @ woocommerce -#~ msgid "Anti-spam field was filled in." -#~ msgstr "Pole antyspamowe zostało wypełnione." - -# @ woocommerce -#~ msgid "Order cancelled by customer." -#~ msgstr "Zamówienie zostało anulowane przez klienta." - -# @ woocommerce -#~ msgid "Your order was cancelled." -#~ msgstr "Twoje zamówienie zostało anulowane." - -# @ woocommerce -#~ msgid "" -#~ "Your order is no longer pending and could not be cancelled. Please " -#~ "contact us if you need assistance." -#~ msgstr "" -#~ "Twoje zamówienie zostało już przetworzone i nie może zostać anulowane. " -#~ "Proszę skontaktuj się z nami jeśli potrzebujesz pomocy." - -# @ woocommerce -#~ msgid "Invalid order." -#~ msgstr "Nieprawidłowe zamówienie." - -# @ woocommerce -#~ msgid "Invalid email address." -#~ msgstr "Błędny adres e-mail." - -# @ woocommerce -#~ msgid "Go to homepage →" -#~ msgstr "Strona główna →" - -# @ woocommerce -#~ msgid "Invalid download." -#~ msgstr "Bład przy pobieraniu." - -# @ woocommerce -#~ msgid "You must be logged in to download files." -#~ msgstr "Musisz być zalogowany, aby pobierać pliki." - -# @ woocommerce -#~ msgid "Login →" -#~ msgstr "Zaloguj się →" - -# @ woocommerce -#~ msgid "This is not your download link." -#~ msgstr "To nie jest Twój link do pobierania." - -# @ woocommerce -#, fuzzy -#~ msgid "Product no longer exists." -#~ msgstr "Produkt już nie istnieje" - -# @ woocommerce -#~ msgid "Sorry, you have reached your download limit for this file" -#~ msgstr "Przepraszamy, osiągnąłeś swój limit pobierania tego pliku." - -# @ woocommerce -#~ msgid "File not found" -#~ msgstr "Plik nie znaleziony" - -# @ woocommerce -#~ msgid "New products" -#~ msgstr "Nowe produkty" - -# @ woocommerce -#~ msgid "New products added to %s" -#~ msgstr "Nowe produkty dodane do %s" - -# @ woocommerce -#~ msgid "New products tagged %s" -#~ msgstr "Otagowane nowe produkty %s" - -# @ woocommerce -#~ msgid "You have taken too long. Please go back and refresh the page." -#~ msgstr "Zabrało Ci to za dużo czasu. Proszę wrócić i odświeżyć stronę." - -# @ woocommerce -#~ msgid "Please rate the product." -#~ msgstr "Proszę oceń ten produkt." - -# @ woocommerce -#~ msgid "No products found which match your selection." -#~ msgstr "Nie znaleziono produktów które pasują do Twoich wyborów." - -# @ woocommerce -#~ msgctxt "breadcrumb" -#~ msgid "Home" -#~ msgstr "Glowna" - -# @ woocommerce -#~ msgid "Select a state…" -#~ msgstr "Wybierz stan…" - -# @ woocommerce -#~ msgid "Search for:" -#~ msgstr "Szukaj:" - -# @ woocommerce -#~ msgid "Search for products" -#~ msgstr "Szukaj produktów" - -# @ woocommerce -#~ msgid "Product Categories" -#~ msgstr "Kategorie produktów" - -# @ woocommerce -#~ msgid "Search Product Categories" -#~ msgstr "Kategorie wyszukiwanych produktów" - -# @ woocommerce -#~ msgid "All Product Categories" -#~ msgstr "Wszystkie kategorie produktów" - -# @ woocommerce -#~ msgid "Parent Product Category" -#~ msgstr "Kategoria produktu nadrzędnego" - -# @ woocommerce -#~ msgid "Parent Product Category:" -#~ msgstr "Kategoria produktu nadrzędnego:" - -# @ woocommerce -#~ msgid "Edit Product Category" -#~ msgstr "Edytuj kategorię produktu" - -# @ woocommerce -#~ msgid "Update Product Category" -#~ msgstr "Uaktualnij kategorię produktu" - -# @ woocommerce -#~ msgid "Add New Product Category" -#~ msgstr "Dodaj nową kategorię produktu" - -# @ woocommerce -#~ msgid "New Product Category Name" -#~ msgstr "Nowa nazwa kategorii produktu" - -# @ woocommerce -#~ msgid "Product Tags" -#~ msgstr "Tagi produktów" - -# @ woocommerce -#~ msgid "Search Product Tags" -#~ msgstr "Poszukiwane tagi produktu" - -# @ woocommerce -#~ msgid "All Product Tags" -#~ msgstr "Wszystkie tagi produktów" - -# @ woocommerce -#~ msgid "Parent Product Tag" -#~ msgstr "Tag produktu nadrzędnego" - -# @ woocommerce -#~ msgid "Parent Product Tag:" -#~ msgstr "Tag produktu nadrzędnego:" - -# @ woocommerce -#~ msgid "Edit Product Tag" -#~ msgstr "Edytuj tag produktu" - -# @ woocommerce -#~ msgid "Update Product Tag" -#~ msgstr "Uaktualnij tag produktu" - -# @ woocommerce -#~ msgid "Add New Product Tag" -#~ msgstr "Dodaj nowy tag produktu" - -# @ woocommerce -#~ msgid "New Product Tag Name" -#~ msgstr "Nowa nazwa tagu produktu" - -# @ woocommerce -#~ msgid "Shipping Classes" -#~ msgstr "Klasy wysyłkowe" - -# @ woocommerce -#~ msgid "Shipping Class" -#~ msgstr "Klasa wysyłkowa" - -# @ woocommerce -#~ msgid "Search Shipping Classes" -#~ msgstr "Szukaj klas wysyłkowych" - -# @ woocommerce -#~ msgid "All Shipping Classes" -#~ msgstr "Wszystkie klasy wysyłkowe" - -# @ woocommerce -#~ msgid "Parent Shipping Class" -#~ msgstr "Nadrzędna klasa wysyłkowa" - -# @ woocommerce -#~ msgid "Parent Shipping Class:" -#~ msgstr "Nadrzędna klasa wysyłkowa:" - -# @ woocommerce -#~ msgid "Edit Shipping Class" -#~ msgstr "Edytuj klasę wysyłkową" - -# @ woocommerce -#~ msgid "Update Shipping Class" -#~ msgstr "Uaktualnij klasę wysyłkową" - -# @ woocommerce -#~ msgid "Add New Shipping Class" -#~ msgstr "Dodaj nową klasę wysyłkową" - -# @ woocommerce -#~ msgid "New Shipping Class Name" -#~ msgstr "Nazwa nowej klasy wysyłkowej" - -# @ woocommerce -#~ msgid "Order statuses" -#~ msgstr "Statusy zamówień" - -# @ woocommerce -#~ msgid "Order status" -#~ msgstr "Status zamówienia" - -# @ woocommerce -#~ msgid "Search Order statuses" -#~ msgstr "Szukaj statusów zamówienia" - -# @ woocommerce -#~ msgid "Parent Order status" -#~ msgstr "Nadrzędny status zamówienia" - -# @ woocommerce -#~ msgid "Parent Order status:" -#~ msgstr "Nadrzędny status zamówienia:" - -# @ woocommerce -#~ msgid "Edit Order status" -#~ msgstr "Edytuj status zamówienia" - -# @ woocommerce -#~ msgid "Update Order status" -#~ msgstr "Uaktualnij status zamówienia" - -# @ woocommerce -#~ msgid "Add New Order status" -#~ msgstr "Dodaj nowy status zamówienia" - -# @ woocommerce -#~ msgid "New Order status Name" -#~ msgstr "Nowa nazwa statusu zamówienia" - -# @ woocommerce -#~ msgid "All" -#~ msgstr "Wszystkie" - -# @ woocommerce -#~ msgid "Parent" -#~ msgstr "Rodzic" - -# @ woocommerce -#~ msgid "Add New" -#~ msgstr "Dodaj nowy" - -# @ woocommerce -#~ msgid "New" -#~ msgstr "Nowy" - -# @ woocommerce -#~ msgid "Add Product" -#~ msgstr "Dodaj produkt" - -# @ woocommerce -#~ msgid "Add New Product" -#~ msgstr "Dodaj nowy produkt" - -# @ woocommerce -#~ msgid "Edit Product" -#~ msgstr "Edytuj produkt" - -# @ woocommerce -#~ msgid "New Product" -#~ msgstr "Nowy produkt" - -# @ woocommerce -#~ msgid "View Product" -#~ msgstr "Zobacz produkt" - -# @ woocommerce -#~ msgid "Search Products" -#~ msgstr "Szukaj produktów" - -# @ woocommerce -#~ msgid "No Products found" -#~ msgstr "Nie znaleziono produktów" - -# @ woocommerce -#~ msgid "No Products found in trash" -#~ msgstr "Nie znaleziono produktów w koszu" - -# @ woocommerce -#~ msgid "Parent Product" -#~ msgstr "Nadrzędny produkt" - -# @ woocommerce -#~ msgid "This is where you can add new products to your store." -#~ msgstr "Tutaj możesz dodać nowe produkty do sklepu." - -# @ woocommerce -#~ msgid "Variation" -#~ msgstr "Wariant" - -# @ woocommerce -#~ msgid "Add New Variation" -#~ msgstr "Dodaj nowy wariant" - -# @ woocommerce -#~ msgid "Edit Variation" -#~ msgstr "Edytuj wariant" - -# @ woocommerce -#~ msgid "New Variation" -#~ msgstr "Nowy wariant" - -# @ woocommerce -#~ msgid "View Variation" -#~ msgstr "Zobacz wariant" - -# @ woocommerce -#~ msgid "Search Variations" -#~ msgstr "Szukaj wariantów" - -# @ woocommerce -#~ msgid "No Variations found" -#~ msgstr "Nie znaleziono wariantów" - -# @ woocommerce -#~ msgid "No Variations found in trash" -#~ msgstr "Nie znaleziono wariantów w koszu" - -# @ woocommerce -#~ msgid "Parent Variation" -#~ msgstr "Nadrzędny wariant" - -# @ woocommerce -#~ msgid "Add Order" -#~ msgstr "Dodaj zamówienie" - -# @ woocommerce -#~ msgid "Add New Order" -#~ msgstr "Dodaj nowe zamówienie" - -# @ woocommerce -#~ msgid "Edit Order" -#~ msgstr "Edytuj zamówienie" - -# @ woocommerce -#~ msgid "New Order" -#~ msgstr "Nowe zamówienie" - -# @ woocommerce -#~ msgid "Search Orders" -#~ msgstr "Szukaj zamówień" - -# @ woocommerce -#~ msgid "No Orders found" -#~ msgstr "Nie znaleziono zamówień" - -# @ woocommerce -#~ msgid "No Orders found in trash" -#~ msgstr "Nie znaleziono zamówień w koszu" - -# @ woocommerce -#~ msgid "Parent Orders" -#~ msgstr "Nadrzędne zamówienia" - -# @ woocommerce -#~ msgid "This is where store orders are stored." -#~ msgstr "Tutaj przechowywane są zamówienia." - -# @ woocommerce -#~ msgid "Add Coupon" -#~ msgstr "Dodaj kupon" - -# @ woocommerce -#~ msgid "Add New Coupon" -#~ msgstr "Dodaj nowy kupon" - -# @ woocommerce -#~ msgid "Edit Coupon" -#~ msgstr "Edytuj kupon" - -# @ woocommerce -#~ msgid "New Coupon" -#~ msgstr "Nowy kupon" - -# @ woocommerce -#~ msgid "View Coupons" -#~ msgstr "Zobacz kupony" - -# @ woocommerce -#~ msgid "View Coupon" -#~ msgstr "Zobacz kupon" - -# @ woocommerce -#~ msgid "Search Coupons" -#~ msgstr "Szukaj kuponów" - -# @ woocommerce -#~ msgid "No Coupons found" -#~ msgstr "Nie znaleziono kuponów" - -# @ woocommerce -#~ msgid "No Coupons found in trash" -#~ msgstr "Nie znaleziono kuponów w koszu" - -# @ woocommerce -#~ msgid "Parent Coupon" -#~ msgstr "Nadrzędny kupon" - -# @ woocommerce -#~ msgid "" -#~ "This is where you can add new coupons that customers can use in your " -#~ "store." -#~ msgstr "" -#~ "Tutaj możesz dodać nowe kupony, których klienci mogą używać w Twoim " -#~ "sklepie." - -# @ woocommerce -#~ msgid "Cart Discount" -#~ msgstr "Rabat na cały koszyk" - -# @ woocommerce -#~ msgid "Cart % Discount" -#~ msgstr "Procentowy rabat na cały koszyk" - -# @ woocommerce -#~ msgid "Product Discount" -#~ msgstr "Rabat na produkt" - -# @ woocommerce -#~ msgid "Product % Discount" -#~ msgstr "Procentowy rabat na produkt" - -# @ woocommerce -#~ msgctxt "page_slug" -#~ msgid "order-tracking" -#~ msgstr "sledzenie-zamowienia" - -# @ woocommerce -#~ msgid "Track your order" -#~ msgstr "Monitoruj swoje zamówienie" - -# @ woocommerce -#, fuzzy -#~ msgid "Product price/cart button" -#~ msgstr "Opis produktu" - -# @ woocommerce -#, fuzzy -#~ msgid "Product by SKU/ID" -#~ msgstr "SKU produktu:" - -# @ woocommerce -#, fuzzy -#~ msgid "Products by SKU/ID" -#~ msgstr "SKU produktu:" - -# @ woocommerce -#, fuzzy -#~ msgid "Products by category slug" -#~ msgstr "Fraza kategorii produktów" - -# @ woocommerce -#, fuzzy -#~ msgid "Recent products" -#~ msgstr "Nowe produkty" - -# @ woocommerce -#, fuzzy -#~ msgid "Featured products" -#~ msgstr "Polecane Produkty" - -# @ woocommerce -#, fuzzy -#~ msgid "Shop Messages" -#~ msgstr "Strony Sklepu" - -# @ woocommerce -#, fuzzy -#~ msgid "Order tracking" -#~ msgstr "sledzenie-zamowienia" - -# @ woocommerce -#, fuzzy -#~ msgid "Edit Address" -#~ msgstr "Edytuj adres" - -# @ woocommerce -#~ msgid "Pay" -#~ msgstr "Płać" - -# @ woocommerce -#, fuzzy -#~ msgid "" -#~ "Sorry, we do not have enough \"%s\" in stock to fulfil your order (%s in " -#~ "stock). Please edit your cart and try again. We apologise for any " -#~ "inconvenience caused." -#~ msgstr "" -#~ "Przepraszamy, nie posiadamy wystarczających zapasów magazynowych, aby " -#~ "zrealizować zamówienie (Posiadamy %s szt.). Prosimy o edycję koszyka i " -#~ "ponowną próbę. Przepraszamy za niedogodności." - -# @ woocommerce -#, fuzzy -#~ msgid "" -#~ "Sorry, we do not have enough \"%s\" in stock to fulfil your order right " -#~ "now. Please try again in %d minutes or edit your cart and try again. We " -#~ "apologise for any inconvenience caused." -#~ msgstr "" -#~ "Przepraszamy, nie posiadamy wystarczających zapasów magazynowych, aby " -#~ "zrealizować zamówienie. Prosimy o edycję koszyka i ponowną próbę. " -#~ "Przepraszamy za niedogodności." - -# @ woocommerce -#, fuzzy -#~ msgid "" -#~ "Sorry, \"%s\" is not in stock. Please edit your cart and try again. We " -#~ "apologise for any inconvenience caused." -#~ msgstr "" -#~ "Przepraszamy, nie posiadamy wystarczających zapasów magazynowych, aby " -#~ "zrealizować zamówienie. Prosimy o edycję koszyka i ponowną próbę. " -#~ "Przepraszamy za niedogodności." - -# @ woocommerce -#, fuzzy -#~ msgid "Sorry, "%s" cannot be purchased." -#~ msgstr "Ten produkt nie może zostać kupiony." - -# @ woocommerce -#, fuzzy -#~ msgid "" -#~ "You cannot add "%s" to the cart because the product is out of " -#~ "stock." -#~ msgstr "" -#~ "Nie możesz dodać produktu do koszyka, ponieważ zabrakło go w magazynie." - -# @ woocommerce -#, fuzzy -#~ msgid "" -#~ "You cannot add that amount of "%s" to the cart because there is " -#~ "not enough stock (%s remaining)." -#~ msgstr "" -#~ "Nie możesz dodać takiej ilości do koszyka, ponieważ nie ma wystarczającej " -#~ "ilości w magazynie. Mamy %s w magazynie." - -# @ woocommerce -#~ msgid "Free!" -#~ msgstr "Za darmo!" - -# @ woocommerce -#~ msgid "via" -#~ msgstr "przez" - -# @ woocommerce -#~ msgid "Discount code already applied!" -#~ msgstr "Kod rabatowy został już wykorzystany!" - -# @ woocommerce -#~ msgid "Discount code applied successfully." -#~ msgstr "Kod rabatowy pomyślnie zastosowany." - -# @ woocommerce -#~ msgid "Coupon does not exist!" -#~ msgstr "Kupon nie istnieje!" - -# @ woocommerce -#~ msgid "Account username" -#~ msgstr "Konto użytkownika" - -# @ woocommerce -#~ msgid "Account password" -#~ msgstr "Hasło" - -# @ woocommerce -#~ msgid "" -#~ "Sorry, your session has expired. Return to homepage →" -#~ "" -#~ msgstr "" -#~ "Przepraszamy, Twoja sesja wygasła. Wróć do strony głównej " -#~ "→" - -# @ woocommerce -#~ msgid "is a required field." -#~ msgstr "jest wymaganym polem." - -# @ woocommerce -#~ msgid "is not a valid number." -#~ msgstr "nie jest poprawnym numerem." - -# @ woocommerce -#~ msgid "is not a valid email address." -#~ msgstr "nie jest poprawnym adresem e-mail." - -# @ woocommerce -#~ msgid "Please enter an account username." -#~ msgstr "Proszę wpisać nazwę użytkownika." - -# @ woocommerce -#~ msgid "Invalid email/username." -#~ msgstr "Błędny e-mail lub nazwa użytkownika." - -# @ woocommerce -#~ msgid "" -#~ "An account is already registered with that username. Please choose " -#~ "another." -#~ msgstr "Konto z taką nazwą użytkownika już istnieje. Wybierz inną." - -# @ woocommerce -#~ msgid "Please enter an account password." -#~ msgstr "Proszę wpisać hasło." - -# @ woocommerce -#~ msgid "" -#~ "An account is already registered with your email address. Please login." -#~ msgstr "Konto z tym adresem e-mail już istnieje. Zaloguj się." - -# @ woocommerce -#~ msgid "You must accept our Terms & Conditions." -#~ msgstr "Musisz zaakceptować nasz Regulamin." - -# @ woocommerce -#~ msgid "Invalid shipping method." -#~ msgstr "Błędny sposób wysyłki." - -# @ woocommerce -#~ msgid "Invalid payment method." -#~ msgstr "Błędny sposób płatności." - -# @ woocommerce -#~ msgid "Afghanistan" -#~ msgstr "Afganistan" - -# @ woocommerce -#~ msgid "Albania" -#~ msgstr "Albania" - -# @ woocommerce -#~ msgid "Algeria" -#~ msgstr "Algieria" - -# @ woocommerce -#~ msgid "American Samoa" -#~ msgstr "Samoa Amerykańskie" - -# @ woocommerce -#~ msgid "Andorra" -#~ msgstr "Andora" - -# @ woocommerce -#~ msgid "Angola" -#~ msgstr "Angola" - -# @ woocommerce -#~ msgid "Anguilla" -#~ msgstr "Anguilla" - -# @ woocommerce -#~ msgid "Antarctica" -#~ msgstr "Antarktyda" - -# @ woocommerce -#~ msgid "Antigua and Barbuda" -#~ msgstr "Antigua i Barbuda" - -# @ woocommerce -#~ msgid "Argentina" -#~ msgstr "Argentyna" - -# @ woocommerce -#~ msgid "Armenia" -#~ msgstr "Armenia" - -# @ woocommerce -#~ msgid "Aruba" -#~ msgstr "Aruba" - -# @ woocommerce -#~ msgid "Australia" -#~ msgstr "Australia" - -# @ woocommerce -#~ msgid "Austria" -#~ msgstr "Austria" - -# @ woocommerce -#~ msgid "Azerbaijan" -#~ msgstr "Azerbejdżan" - -# @ woocommerce -#~ msgid "Bahamas" -#~ msgstr "Bahamy" - -# @ woocommerce -#~ msgid "Bahrain" -#~ msgstr "Bahrajn" - -# @ woocommerce -#~ msgid "Bangladesh" -#~ msgstr "Bangladesz" - -# @ woocommerce -#~ msgid "Barbados" -#~ msgstr "Barbados" - -# @ woocommerce -#~ msgid "Belarus" -#~ msgstr "Białoruś" - -# @ woocommerce -#~ msgid "Belgium" -#~ msgstr "Belgia" - -# @ woocommerce -#~ msgid "Belize" -#~ msgstr "Belize" - -# @ woocommerce -#~ msgid "Benin" -#~ msgstr "Benin" - -# @ woocommerce -#~ msgid "Bermuda" -#~ msgstr "Bermudy" - -# @ woocommerce -#~ msgid "Bhutan" -#~ msgstr "Bhutan" - -# @ woocommerce -#~ msgid "Bolivia" -#~ msgstr "Boliwia" - -# @ woocommerce -#~ msgid "Bosnia and Herzegovina" -#~ msgstr "Bośnia i Hercegowina" - -# @ woocommerce -#~ msgid "Botswana" -#~ msgstr "Botswana" - -# @ woocommerce -#, fuzzy -#~ msgid "Bouvet Island" -#~ msgstr "Rhode Island" - -# @ woocommerce -#~ msgid "Brazil" -#~ msgstr "Brazylia" - -# @ woocommerce -#~ msgid "British Indian Ocean Territory" -#~ msgstr "Brytyjskie Terytorium Oceanu Indyjskiego" - -# @ woocommerce -#~ msgid "British Virgin Islands" -#~ msgstr "Brytyjskie Wyspy Dziewicze" - -# @ woocommerce -#~ msgid "Brunei" -#~ msgstr "Brunei" - -# @ woocommerce -#~ msgid "Bulgaria" -#~ msgstr "Bułgaria" - -# @ woocommerce -#~ msgid "Burkina Faso" -#~ msgstr "Burkina Faso" - -# @ woocommerce -#~ msgid "Burundi" -#~ msgstr "Burundi" - -# @ woocommerce -#~ msgid "Cambodia" -#~ msgstr "Kambodża" - -# @ woocommerce -#~ msgid "Cameroon" -#~ msgstr "Kamerun" - -# @ woocommerce -#~ msgid "Canada" -#~ msgstr "Kanada" - -# @ woocommerce -#~ msgid "Cape Verde" -#~ msgstr "Republika Zielonego Przylądka" - -# @ woocommerce -#~ msgid "Cayman Islands" -#~ msgstr "Kajmany" - -# @ woocommerce -#~ msgid "Central African Republic" -#~ msgstr "Republika Południowej Afryki" - -# @ woocommerce -#~ msgid "Chad" -#~ msgstr "Czad" - -# @ woocommerce -#~ msgid "Chile" -#~ msgstr "Chile" - -# @ woocommerce -#~ msgid "China" -#~ msgstr "Chiny" - -# @ woocommerce -#~ msgid "Christmas Island" -#~ msgstr "Wyspa Wielkanocna" - -# @ woocommerce -#~ msgid "Cocos (Keeling) Islands" -#~ msgstr "Wyspy Kokosowe" - -# @ woocommerce -#~ msgid "Colombia" -#~ msgstr "Kolumbia" - -# @ woocommerce -#~ msgid "Comoros" -#~ msgstr "Komory" - -# @ woocommerce -#~ msgid "Congo (Brazzaville)" -#~ msgstr "Kongo" - -# @ woocommerce -#~ msgid "Congo (Kinshasa)" -#~ msgstr "Demokratyczna Republika Konga" - -# @ woocommerce -#~ msgid "Cook Islands" -#~ msgstr "Wyspy Cooka" - -# @ woocommerce -#~ msgid "Costa Rica" -#~ msgstr "Kostaryka" - -# @ woocommerce -#~ msgid "Croatia" -#~ msgstr "Chorwacja" - -# @ woocommerce -#~ msgid "Cuba" -#~ msgstr "Kuba" - -# @ woocommerce -#~ msgid "Cyprus" -#~ msgstr "Cypr" - -# @ woocommerce -#~ msgid "Czech Republic" -#~ msgstr "Czechy" - -# @ woocommerce -#~ msgid "Denmark" -#~ msgstr "Dania" - -# @ woocommerce -#~ msgid "Djibouti" -#~ msgstr "Dżibuti" - -# @ woocommerce -#~ msgid "Dominica" -#~ msgstr "Dominika" - -# @ woocommerce -#~ msgid "Dominican Republic" -#~ msgstr "Dominikana" - -# @ woocommerce -#~ msgid "Ecuador" -#~ msgstr "Ekwador" - -# @ woocommerce -#~ msgid "Egypt" -#~ msgstr "Egipt" - -# @ woocommerce -#~ msgid "El Salvador" -#~ msgstr "Salwador" - -# @ woocommerce -#~ msgid "Equatorial Guinea" -#~ msgstr "Gwinea Równikowa" - -# @ woocommerce -#~ msgid "Eritrea" -#~ msgstr "Erytrea" - -# @ woocommerce -#~ msgid "Estonia" -#~ msgstr "Estonia" - -# @ woocommerce -#~ msgid "Ethiopia" -#~ msgstr "Etiopia" - -# @ woocommerce -#~ msgid "Falkland Islands" -#~ msgstr "Falklandy" - -# @ woocommerce -#~ msgid "Faroe Islands" -#~ msgstr "Wyspy Owcze" - -# @ woocommerce -#~ msgid "Fiji" -#~ msgstr "Fidżi" - -# @ woocommerce -#~ msgid "Finland" -#~ msgstr "Finlandia" - -# @ woocommerce -#~ msgid "France" -#~ msgstr "Francja" - -# @ woocommerce -#~ msgid "French Guiana" -#~ msgstr "Gujana Francuska" - -# @ woocommerce -#~ msgid "French Polynesia" -#~ msgstr "Polinezja Francuska" - -# @ woocommerce -#~ msgid "French Southern Territories" -#~ msgstr "Francuskie Terytoria Południowe i Antarktyczne" - -# @ woocommerce -#~ msgid "Gabon" -#~ msgstr "Gabon" - -# @ woocommerce -#~ msgid "Gambia" -#~ msgstr "Gambia" - -# @ woocommerce -#~ msgid "Georgia" -#~ msgstr "Gruzja" - -# @ woocommerce -#~ msgid "Germany" -#~ msgstr "Niemcy" - -# @ woocommerce -#~ msgid "Ghana" -#~ msgstr "Ghana" - -# @ woocommerce -#~ msgid "Gibraltar" -#~ msgstr "Gibraltar" - -# @ woocommerce -#~ msgid "Greece" -#~ msgstr "Grecja" - -# @ woocommerce -#~ msgid "Greenland" -#~ msgstr "Grenlandia" - -# @ woocommerce -#~ msgid "Grenada" -#~ msgstr "Grenada" - -# @ woocommerce -#~ msgid "Guadeloupe" -#~ msgstr "Gwadelupa" - -# @ woocommerce -#~ msgid "Guam" -#~ msgstr "Guam" - -# @ woocommerce -#~ msgid "Guatemala" -#~ msgstr "Gwatemala" - -# @ woocommerce -#~ msgid "Guernsey" -#~ msgstr "Guernsey" - -# @ woocommerce -#~ msgid "Guinea" -#~ msgstr "Gwinea" - -# @ woocommerce -#~ msgid "Guinea-Bissau" -#~ msgstr "Gwinea Bissau" - -# @ woocommerce -#~ msgid "Guyana" -#~ msgstr "Gujana" - -# @ woocommerce -#~ msgid "Haiti" -#~ msgstr "Haiti" - -# @ woocommerce -#~ msgid "Honduras" -#~ msgstr "Honduras" - -# @ woocommerce -#~ msgid "Hong Kong" -#~ msgstr "Hongkong" - -# @ woocommerce -#~ msgid "Hungary" -#~ msgstr "Węgry" - -# @ woocommerce -#~ msgid "Iceland" -#~ msgstr "Islandia" - -# @ woocommerce -#~ msgid "India" -#~ msgstr "Indie" - -# @ woocommerce -#~ msgid "Indonesia" -#~ msgstr "Indonezja" - -# @ woocommerce -#~ msgid "Iran" -#~ msgstr "Iran" - -# @ woocommerce -#~ msgid "Iraq" -#~ msgstr "Irak" - -# @ woocommerce -#~ msgid "Isle of Man" -#~ msgstr "Wyspa Man" - -# @ woocommerce -#~ msgid "Israel" -#~ msgstr "Izrael" - -# @ woocommerce -#~ msgid "Italy" -#~ msgstr "Włochy" - -# @ woocommerce -#~ msgid "Ivory Coast" -#~ msgstr "Wybrzeże Kości Słoniowej" - -# @ woocommerce -#~ msgid "Jamaica" -#~ msgstr "Jamajka" - -# @ woocommerce -#~ msgid "Japan" -#~ msgstr "Japonia" - -# @ woocommerce -#~ msgid "Jersey" -#~ msgstr "Jersey" - -# @ woocommerce -#~ msgid "Jordan" -#~ msgstr "Jordania" - -# @ woocommerce -#~ msgid "Kazakhstan" -#~ msgstr "Kazachstan" - -# @ woocommerce -#~ msgid "Kenya" -#~ msgstr "Kenia" - -# @ woocommerce -#~ msgid "Kiribati" -#~ msgstr "Kiribati" - -# @ woocommerce -#~ msgid "Kuwait" -#~ msgstr "Kuwejt" - -# @ woocommerce -#~ msgid "Kyrgyzstan" -#~ msgstr "Kirgistan" - -# @ woocommerce -#~ msgid "Laos" -#~ msgstr "Laos" - -# @ woocommerce -#~ msgid "Latvia" -#~ msgstr "Łotwa" - -# @ woocommerce -#~ msgid "Lebanon" -#~ msgstr "Liban" - -# @ woocommerce -#~ msgid "Lesotho" -#~ msgstr "Lesotho" - -# @ woocommerce -#~ msgid "Liberia" -#~ msgstr "Liberia" - -# @ woocommerce -#~ msgid "Libya" -#~ msgstr "Libia" - -# @ woocommerce -#~ msgid "Liechtenstein" -#~ msgstr "Liechtenstein" - -# @ woocommerce -#~ msgid "Lithuania" -#~ msgstr "Litwa" - -# @ woocommerce -#~ msgid "Luxembourg" -#~ msgstr "Luksemburg" - -# @ woocommerce -#~ msgid "Macao S.A.R., China" -#~ msgstr "Makau" - -# @ woocommerce -#~ msgid "Macedonia" -#~ msgstr "Macedonia" - -# @ woocommerce -#~ msgid "Madagascar" -#~ msgstr "Madagaskar" - -# @ woocommerce -#~ msgid "Malawi" -#~ msgstr "Malawi" - -# @ woocommerce -#~ msgid "Malaysia" -#~ msgstr "Malezja" - -# @ woocommerce -#~ msgid "Maldives" -#~ msgstr "Malediwy" - -# @ woocommerce -#~ msgid "Mali" -#~ msgstr "Mali" - -# @ woocommerce -#~ msgid "Malta" -#~ msgstr "Malta" - -# @ woocommerce -#~ msgid "Marshall Islands" -#~ msgstr "Wyspy Marshalla" - -# @ woocommerce -#~ msgid "Martinique" -#~ msgstr "Martynika" - -# @ woocommerce -#~ msgid "Mauritania" -#~ msgstr "Mauretania" - -# @ woocommerce -#~ msgid "Mauritius" -#~ msgstr "Mauritius" - -# @ woocommerce -#~ msgid "Mayotte" -#~ msgstr "Majotta" - -# @ woocommerce -#~ msgid "Mexico" -#~ msgstr "Meksyk" - -# @ woocommerce -#~ msgid "Micronesia" -#~ msgstr "Mikronezja" - -# @ woocommerce -#~ msgid "Moldova" -#~ msgstr "Mołdawia" - -# @ woocommerce -#~ msgid "Monaco" -#~ msgstr "Monako" - -# @ woocommerce -#~ msgid "Mongolia" -#~ msgstr "Mongolia" - -# @ woocommerce -#~ msgid "Montenegro" -#~ msgstr "Czarnogóra" - -# @ woocommerce -#~ msgid "Montserrat" -#~ msgstr "Montserrat" - -# @ woocommerce -#~ msgid "Morocco" -#~ msgstr "Maroko" - -# @ woocommerce -#~ msgid "Mozambique" -#~ msgstr "Mozambik" - -# @ woocommerce -#~ msgid "Myanmar" -#~ msgstr "Birma" - -# @ woocommerce -#~ msgid "Namibia" -#~ msgstr "Namibia" - -# @ woocommerce -#~ msgid "Nauru" -#~ msgstr "Nauru" - -# @ woocommerce -#~ msgid "Nepal" -#~ msgstr "Nepal" - -# @ woocommerce -#~ msgid "Netherlands" -#~ msgstr "Holandia" - -# @ woocommerce -#~ msgid "Netherlands Antilles" -#~ msgstr "Antyle Holenderskie" - -# @ woocommerce -#~ msgid "New Caledonia" -#~ msgstr "Nowa Kaledonia" - -# @ woocommerce -#~ msgid "New Zealand" -#~ msgstr "Nowa Zelandia" - -# @ woocommerce -#~ msgid "Nicaragua" -#~ msgstr "Nikaragua" - -# @ woocommerce -#~ msgid "Niger" -#~ msgstr "Niger" - -# @ woocommerce -#~ msgid "Nigeria" -#~ msgstr "Nigeria" - -# @ woocommerce -#~ msgid "Niue" -#~ msgstr "Niue" - -# @ woocommerce -#~ msgid "Norfolk Island" -#~ msgstr "Wyspa Norfolk" - -# @ woocommerce -#~ msgid "North Korea" -#~ msgstr "Północna Korea" - -# @ woocommerce -#~ msgid "Northern Mariana Islands" -#~ msgstr "Mariany Północne" - -# @ woocommerce -#~ msgid "Norway" -#~ msgstr "Norwegia" - -# @ woocommerce -#~ msgid "Oman" -#~ msgstr "Oman" - -# @ woocommerce -#~ msgid "Pakistan" -#~ msgstr "Pakistan" - -# @ woocommerce -#~ msgid "Palau" -#~ msgstr "Palau" - -# @ woocommerce -#~ msgid "Palestinian Territory" -#~ msgstr "Palestyna" - -# @ woocommerce -#~ msgid "Panama" -#~ msgstr "Panama" - -# @ woocommerce -#~ msgid "Papua New Guinea" -#~ msgstr "Papua-Nowa Gwinea" - -# @ woocommerce -#~ msgid "Paraguay" -#~ msgstr "Paragwaj" - -# @ woocommerce -#~ msgid "Peru" -#~ msgstr "Peru" - -# @ woocommerce -#~ msgid "Philippines" -#~ msgstr "Filipiny" - -# @ woocommerce -#~ msgid "Pitcairn" -#~ msgstr "Pitcairn" - -# @ woocommerce -#~ msgid "Poland" -#~ msgstr "Polska" - -# @ woocommerce -#~ msgid "Portugal" -#~ msgstr "Portugalia" - -# @ woocommerce -#~ msgid "Puerto Rico" -#~ msgstr "Portoryko" - -# @ woocommerce -#~ msgid "Qatar" -#~ msgstr "Katar" - -# @ woocommerce -#~ msgid "Reunion" -#~ msgstr "Reunion" - -# @ woocommerce -#~ msgid "Romania" -#~ msgstr "Rumunia" - -# @ woocommerce -#~ msgid "Russia" -#~ msgstr "Rosja" - -# @ woocommerce -#~ msgid "Rwanda" -#~ msgstr "Rwanda" - -# @ woocommerce -#~ msgid "Saint Helena" -#~ msgstr "Wyspa Świętej Heleny" - -# @ woocommerce -#~ msgid "Saint Kitts and Nevis" -#~ msgstr "Saint Kitts i Nevis" - -# @ woocommerce -#~ msgid "Saint Lucia" -#~ msgstr "Saint Lucia" - -# @ woocommerce -#~ msgid "Saint Martin (French part)" -#~ msgstr "Saint-Martin" - -# @ woocommerce -#, fuzzy -#~ msgid "Saint Martin (Dutch part)" -#~ msgstr "Saint-Martin" - -# @ woocommerce -#~ msgid "Saint Pierre and Miquelon" -#~ msgstr "Saint-Pierre i Miquelon" - -# @ woocommerce -#~ msgid "Saint Vincent and the Grenadines" -#~ msgstr "Saint Vincent i Grenadyny" - -# @ woocommerce -#~ msgid "Samoa" -#~ msgstr "Samoa" - -# @ woocommerce -#~ msgid "San Marino" -#~ msgstr "San Marino" - -# @ woocommerce -#~ msgid "Saudi Arabia" -#~ msgstr "Arabia Saudyjska" - -# @ woocommerce -#~ msgid "Senegal" -#~ msgstr "Senegal" - -# @ woocommerce -#~ msgid "Serbia" -#~ msgstr "Serbia" - -# @ woocommerce -#~ msgid "Seychelles" -#~ msgstr "Seszele" - -# @ woocommerce -#~ msgid "Sierra Leone" -#~ msgstr "Sierra Leone" - -# @ woocommerce -#~ msgid "Singapore" -#~ msgstr "Singapur" - -# @ woocommerce -#~ msgid "Slovakia" -#~ msgstr "Słowacja" - -# @ woocommerce -#~ msgid "Slovenia" -#~ msgstr "Słowenia" - -# @ woocommerce -#~ msgid "Solomon Islands" -#~ msgstr "Wyspy Salomona" - -# @ woocommerce -#~ msgid "Somalia" -#~ msgstr "Somalia" - -# @ woocommerce -#~ msgid "South Africa" -#~ msgstr "Republika Południowej Afryki" - -# @ woocommerce -#~ msgid "South Georgia/Sandwich Islands" -#~ msgstr "Georgia Południowa i Sandwich Południowy" - -# @ woocommerce -#~ msgid "South Korea" -#~ msgstr "Południowa Korea" - -# @ woocommerce -#, fuzzy -#~ msgid "South Sudan" -#~ msgstr "Karolina Południowa" - -# @ woocommerce -#~ msgid "Spain" -#~ msgstr "Hiszpania" - -# @ woocommerce -#~ msgid "Sri Lanka" -#~ msgstr "Sri Lanka" - -# @ woocommerce -#~ msgid "Sudan" -#~ msgstr "Sudan" - -# @ woocommerce -#~ msgid "Suriname" -#~ msgstr "Nazwisko" - -# @ woocommerce -#~ msgid "Svalbard and Jan Mayen" -#~ msgstr "Svalbard i Jan Mayen" - -# @ woocommerce -#~ msgid "Swaziland" -#~ msgstr "Suazi" - -# @ woocommerce -#~ msgid "Sweden" -#~ msgstr "Szwecja" - -# @ woocommerce -#~ msgid "Switzerland" -#~ msgstr "Szwajcaria" - -# @ woocommerce -#~ msgid "Syria" -#~ msgstr "Syria" - -# @ woocommerce -#~ msgid "Taiwan" -#~ msgstr "Tajwan" - -# @ woocommerce -#~ msgid "Tajikistan" -#~ msgstr "Tadżykistan" - -# @ woocommerce -#~ msgid "Tanzania" -#~ msgstr "Tanzania" - -# @ woocommerce -#~ msgid "Thailand" -#~ msgstr "Tajlandia" - -# @ woocommerce -#~ msgid "Timor-Leste" -#~ msgstr "Timor Wschodni" - -# @ woocommerce -#~ msgid "Togo" -#~ msgstr "Togo" - -# @ woocommerce -#~ msgid "Tokelau" -#~ msgstr "Tokelau" - -# @ woocommerce -#~ msgid "Tonga" -#~ msgstr "Tonga" - -# @ woocommerce -#~ msgid "Trinidad and Tobago" -#~ msgstr "Trinidad i Tobago" - -# @ woocommerce -#~ msgid "Tunisia" -#~ msgstr "Tunezja" - -# @ woocommerce -#~ msgid "Turkey" -#~ msgstr "Turcja" - -# @ woocommerce -#~ msgid "Turkmenistan" -#~ msgstr "Turkmenistan" - -# @ woocommerce -#~ msgid "Turks and Caicos Islands" -#~ msgstr "Turks i Caicos" - -# @ woocommerce -#~ msgid "Tuvalu" -#~ msgstr "Tuvalu" - -# @ woocommerce -#~ msgid "U.S. Virgin Islands" -#~ msgstr "Wyspy Dziewicze Stanów Zjednoczonych" - -# @ woocommerce -#~ msgid "US Minor Outlying Islands" -#~ msgstr "Dalekie Wyspy Mniejsze Stanów Zjednoczonych" - -# @ woocommerce -#~ msgid "Uganda" -#~ msgstr "Uganda" - -# @ woocommerce -#~ msgid "Ukraine" -#~ msgstr "Ukraina" - -# @ woocommerce -#~ msgid "United Arab Emirates" -#~ msgstr "Zjednoczone Emiraty Arabskie" - -# @ woocommerce -#~ msgid "United Kingdom" -#~ msgstr "Zjednoczone Królestwo" - -# @ woocommerce -#~ msgid "United States" -#~ msgstr "Stany Zjednoczone" - -# @ woocommerce -#~ msgid "Uruguay" -#~ msgstr "Urugwaj" - -# @ woocommerce -#~ msgid "Uzbekistan" -#~ msgstr "Uzbekistan" - -# @ woocommerce -#~ msgid "Vanuatu" -#~ msgstr "Vanuatu" - -# @ woocommerce -#~ msgid "Vatican" -#~ msgstr "Watykan" - -# @ woocommerce -#~ msgid "Venezuela" -#~ msgstr "Wenezuela" - -# @ woocommerce -#~ msgid "Vietnam" -#~ msgstr "Wietnam" - -# @ woocommerce -#~ msgid "Wallis and Futuna" -#~ msgstr "Wallis i Futuna" - -# @ woocommerce -#~ msgid "Western Sahara" -#~ msgstr "Sahara Zachodnia" - -# @ woocommerce -#~ msgid "Yemen" -#~ msgstr "Jemen" - -# @ woocommerce -#~ msgid "Zambia" -#~ msgstr "Zambia" - -# @ woocommerce -#~ msgid "Zimbabwe" -#~ msgstr "Zimbabwe" - -# @ woocommerce -#~ msgid "to the" -#~ msgstr "do" - -# @ woocommerce -#~ msgid "to" -#~ msgstr "do" - -# @ woocommerce -#~ msgid "the" -#~ msgstr " " - -# @ woocommerce -#~ msgid "VAT" -#~ msgstr "VAT" - -# @ woocommerce -#~ msgid "(incl. VAT)" -#~ msgstr "(z VAT)" - -# @ woocommerce -#~ msgid "(incl. tax)" -#~ msgstr "(z podatkiem)" - -# @ woocommerce -#~ msgid "(ex. VAT)" -#~ msgstr "(bez VAT)" - -# @ woocommerce -#~ msgid "Province" -#~ msgstr "Prowincja" - -# @ woocommerce -#~ msgid "Municipality" -#~ msgstr "Magistrat" - -# @ woocommerce -#~ msgid "Town/District" -#~ msgstr "Miasto/Okręg" - -# @ woocommerce -#~ msgid "Region" -#~ msgstr "Region" - -# @ woocommerce -#~ msgid "Zip" -#~ msgstr "Kod" - -# @ woocommerce -#~ msgid "State" -#~ msgstr "Region" - -# @ woocommerce -#~ msgid "County" -#~ msgstr "Okręg" - -# @ woocommerce -#~ msgid "Postcode/Zip" -#~ msgstr "Kod pocztowy" - -# @ woocommerce -#~ msgid "Town/City" -#~ msgstr "Miasto" - -# @ woocommerce -#~ msgid "Company Name" -#~ msgstr "Nazwa firmy" - -# @ woocommerce -#~ msgid "Email Address" -#~ msgstr "Adres e-mail" - -# @ woocommerce -#, fuzzy -#~ msgid "Invalid coupon" -#~ msgstr "Błędny kupon." - -# @ woocommerce -#, fuzzy -#~ msgid "File %d" -#~ msgstr "Ścieżka pliku" - -# @ woocommerce -#~ msgid "Cart Subtotal:" -#~ msgstr "Wartość produktów:" - -# @ woocommerce -#~ msgid "Shipping:" -#~ msgstr "Wysyłka" - -# @ woocommerce -#~ msgid "Subtotal:" -#~ msgstr "Podsuma:" - -# @ woocommerce -#~ msgid "Order status changed from %s to %s." -#~ msgstr "Status zamówienia zmieniony z %s na %s." - -# @ woocommerce -#~ msgid "Order item stock reduced successfully." -#~ msgstr "Stan magazynowy zamówienia pomyślnie zmniejszony." - -# @ woocommerce -#~ msgid "Buy product" -#~ msgstr "Kup produkt" - -# @ woocommerce -#, fuzzy -#~ msgid "" -#~ "This public function needs to be overridden by your payment gateway class." -#~ msgstr "Ta funkcja musi być nadpisana przez klasę Twojej bramki płatności" - -# @ woocommerce -#~ msgid "%s in stock" -#~ msgstr "%s w magazynie" - -# @ woocommerce -#~ msgid "(backorders allowed)" -#~ msgstr "(zamówienia oczekujące dozwolone)" - -# @ woocommerce -#~ msgid "Available on backorder" -#~ msgstr "Produkt dostępny na zamówienie" - -# @ woocommerce -#~ msgctxt "min_price" -#~ msgid "From:" -#~ msgstr "Od:" - -# @ woocommerce -#~ msgid "Rated %s out of 5" -#~ msgstr "Oceniony %s na 5." - -# @ woocommerce -#, fuzzy -#~ msgid "Completed order" -#~ msgstr "Zrealizowane" - -# @ woocommerce -#, fuzzy -#~ msgid "Your order is complete" -#~ msgstr "Twoje zamówienie zostało anulowane." - -# @ woocommerce -#, fuzzy -#~ msgid "Your order is complete - download your files" -#~ msgstr "Twoje zamówienie jest kompletne. Szczegóły zamówienia są poniżej:" - -# @ woocommerce -#~ msgid "Enable/Disable" -#~ msgstr "Włącz/Wyłącz" - -# @ woocommerce -#, fuzzy -#~ msgid "Enable this email notification" -#~ msgstr "Włącz powiadomienia o niskim stanie magazynowym" - -# @ woocommerce -#, fuzzy -#~ msgid "Email Heading" -#~ msgstr "Wyślij fakturę" - -# @ woocommerce -#, fuzzy -#~ msgid "Subject (downloadable)" -#~ msgstr "Do pobrania" - -# @ woocommerce -#, fuzzy -#~ msgid "Email type" -#~ msgstr "Szablon maila" - -# @ woocommerce -#, fuzzy -#~ msgid "Customer invoice" -#~ msgstr "Notka dla klienta" - -# @ woocommerce -#, fuzzy -#~ msgid "" -#~ "Customer invoice emails can be sent to the user containing order info and " -#~ "payment links." -#~ msgstr "" -#~ "Wyślij mailem fakturę do klienta. Nieopłacone zamówienia będą zawierały " -#~ "link do płatności." - -# @ woocommerce -#, fuzzy -#~ msgid "Email subject" -#~ msgstr "E-maile" - -# @ woocommerce -#, fuzzy -#~ msgid "Email heading" -#~ msgstr "Wyślij fakturę" - -# @ woocommerce -#, fuzzy -#~ msgid "New account" -#~ msgstr "Moje konto" - -# @ woocommerce -#, fuzzy -#~ msgid "Your account on {blogname}" -#~ msgstr "Twoje konto w serwisie %s" - -# @ woocommerce -#~ msgid "A note has been added to your order" -#~ msgstr "Nowa notka została dodana do Twojego zamówienia" - -# @ woocommerce -#, fuzzy -#~ msgid "Processing order" -#~ msgstr "W trakcie realizacji" - -# @ woocommerce -#, fuzzy -#~ msgid "Thank you for your order" -#~ msgstr "Monitoruj swoje zamówienie" - -# @ woocommerce -#, fuzzy -#~ msgid "Reset password" -#~ msgstr "Powtórz hasło" - -# @ woocommerce -#, fuzzy -#~ msgid "Password Reset Instructions" -#~ msgstr "Instrukcje" - -# @ woocommerce -#, fuzzy -#~ msgid "New order" -#~ msgstr "Nowe zamówienie" - -# @ woocommerce -#, fuzzy -#~ msgid "New customer order" -#~ msgstr "Nowe zamówienie od klienta" - -# @ woocommerce -#, fuzzy -#~ msgid "" -#~ "This controls the email subject line. Leave blank to use the default " -#~ "subject: %s." -#~ msgstr "" -#~ "Pokazywane w URL tagu produktu. Pozostaw puste aby użyć domyślnej frazy." - -# @ woocommerce -#, fuzzy -#~ msgid "HTML template" -#~ msgstr "Szablon maila" - -# @ woocommerce -#, fuzzy -#~ msgid "Plain text template" -#~ msgstr "Szablon maila" - -# @ woocommerce -#, fuzzy -#~ msgid "Delete template file" -#~ msgstr "Usuń rzecz" - -# @ woocommerce -#, fuzzy -#~ msgid "File was not found." -#~ msgstr "Plik nie znaleziony" - -# @ woocommerce -#, fuzzy -#~ msgid "View template" -#~ msgstr "Szablon maila" - -# @ woocommerce -#, fuzzy -#~ msgid "Hide template" -#~ msgstr "Szablon maila" - -# @ woocommerce -#, fuzzy -#~ msgid "Are you sure you want to delete this template file?" -#~ msgstr "Czy na pewno chcesz usunąć ten atrybut?" - -# @ woocommerce -#~ msgid "Product low in stock" -#~ msgstr "Mała ilość produktów w magazynie" - -# @ woocommerce -#~ msgid "is low in stock." -#~ msgstr "jest mało w magazynie." - -# @ woocommerce -#~ msgid "Product out of stock" -#~ msgstr "Produktu brak na stanie" - -# @ woocommerce -#~ msgid "is out of stock." -#~ msgstr "brak na stanie." - -# @ woocommerce -#~ msgid "Product Backorder" -#~ msgstr "Produkt na zamówienie" - -# @ woocommerce -#~ msgid "Bacs" -#~ msgstr "Bacs" - -# @ woocommerce -#~ msgid "Enable Bank Transfer" -#~ msgstr "Włącz przelewy bankowe" - -# @ woocommerce -#~ msgid "Title" -#~ msgstr "Tytuł" - -# @ woocommerce -#~ msgid "This controls the title which the user sees during checkout." -#~ msgstr "Tytuł, który widzi użytkownik podczas składania zamówienia." - -# @ woocommerce -#~ msgid "Direct Bank Transfer" -#~ msgstr "Przelew bankowy" - -# @ woocommerce -#~ msgid "Customer Message" -#~ msgstr "Wiadomość dla klienta" - -# @ woocommerce -#~ msgid "" -#~ "Give the customer instructions for paying via BACS, and let them know " -#~ "that their order won't be shipping until the money is received." -#~ msgstr "" -#~ "Wpisz instrukcje dla klienta do płatności przelewem załączając " -#~ "informację, że zamówienie nie zostanie wysłane jeśli nie dokonają " -#~ "płatności." - -# @ woocommerce -#~ msgid "" -#~ "Make your payment directly into our bank account. Please use your Order " -#~ "ID as the payment reference. Your order wont be shipped until the funds " -#~ "have cleared in our account." -#~ msgstr "" -#~ "Prosimy o wpłatę bezpośrednio na nasz konto bankowe. Proszę użyć numeru " -#~ "zamówienia jako tytuł płatności. Twoje zamówienie nie zostanie wysłane " -#~ "dopóki wpłata nie zostanie zaksięgowana na naszym koncie." - -# @ woocommerce -#~ msgid "Account Name" -#~ msgstr "Nazwa konta" - -# @ woocommerce -#~ msgid "Account Number" -#~ msgstr "Numer konta" - -# @ woocommerce -#~ msgid "Sort Code" -#~ msgstr "Numer rozliczeniowy (Sort Code)" - -# @ woocommerce -#~ msgid "Bank Name" -#~ msgstr "Nazwa banku" - -# @ woocommerce -#~ msgid "IBAN" -#~ msgstr "IBAN" - -# @ woocommerce -#~ msgid "Your bank may require this for international payments" -#~ msgstr "Twój bank może tego wymagać przy przelewach międzynarodowych" - -# @ woocommerce -#~ msgid "BIC (formerly Swift)" -#~ msgstr "BIC (dawny Swift)" - -# @ woocommerce -#~ msgid "BACS Payment" -#~ msgstr "Płatność przelewem" - -# @ woocommerce -#~ msgid "" -#~ "Allows payments by BACS (Bank Account Clearing System), more commonly " -#~ "known as direct bank/wire transfer." -#~ msgstr "Umożliwiaj płatności przelewem bankowym" - -# @ woocommerce -#~ msgid "Our Details" -#~ msgstr "Nasze dane" - -# @ woocommerce -#~ msgid "BIC" -#~ msgstr "BIC" - -# @ woocommerce -#~ msgid "Awaiting BACS payment" -#~ msgstr "Czekanie na przelew" - -# @ woocommerce -#~ msgid "Cheque" -#~ msgstr "Czek" - -# @ woocommerce -#~ msgid "Enable Cheque Payment" -#~ msgstr "Włącz płatności czekiem" - -# @ woocommerce -#~ msgid "Cheque Payment" -#~ msgstr "Płatność czekiem" - -# @ woocommerce -#~ msgid "" -#~ "Let the customer know the payee and where they should be sending the " -#~ "cheque to and that their order won't be shipping until you receive it." -#~ msgstr "" -#~ "Wpisz instrukcje dla klienta do płatności czekiem załączając informację, " -#~ "że zamówienie nie zostanie wysłane jeśli nie dokona płatności." - -# @ woocommerce -#~ msgid "" -#~ "Please send your cheque to Store Name, Store Street, Store Town, Store " -#~ "State / County, Store Postcode." -#~ msgstr "" -#~ "Proszę przesłać czek na: nazwa sklepu, adres, miasto, region, kod " -#~ "pocztowy." - -# @ woocommerce -#~ msgid "" -#~ "Allows cheque payments. Why would you take cheques in this day and age? " -#~ "Well you probably wouldn't but it does allow you to make test purchases " -#~ "for testing order emails and the 'success' pages etc." -#~ msgstr "" -#~ "Włącz płatności czekiem. Prawdopodobnie nie będziesz ich używać w " -#~ "obecnych czasach, ale możesz ich użyć do testowania zamówień, e-maili i " -#~ "stron \"sukcesu\"." - -# @ woocommerce -#~ msgid "Awaiting cheque payment" -#~ msgstr "Czekanie na płatność czekiem" - -# @ woocommerce -#~ msgid "Cash on Delivery" -#~ msgstr "Gotówka za pobraniem" - -# @ woocommerce -#~ msgid "Have your customers pay with cash (or by other means) upon delivery." -#~ msgstr "Pozwól klientom płacić za pobraniem." - -# @ woocommerce -#~ msgid "Enable COD" -#~ msgstr "Włącz płatności za pobraniem" - -# @ woocommerce -#~ msgid "Payment method title that the customer will see on your website." -#~ msgstr "Tytuł metody płatności, który klienci zobaczą na stronie." - -# @ woocommerce -#~ msgid "" -#~ "Payment method description that the customer will see on your website." -#~ msgstr "Opis metody płatności, który klienci zobaczą na stronie." - -# @ woocommerce -#~ msgid "Instructions" -#~ msgstr "Instrukcje" - -# @ woocommerce -#~ msgid "Instructions that will be added to the thank you page." -#~ msgstr "Instrukcje, które będą dołączone do strony z podziękowaniem." - -# @ woocommerce -#, fuzzy -#~ msgid "Enable for shipping methods" -#~ msgstr "Włącz tę metodę wysyłki" - -# @ woocommerce -#~ msgid "Payment to be made upon delivery." -#~ msgstr "Płatność przy odbiorze." - -# @ woocommerce -#~ msgid "This controls the description which the user sees during checkout." -#~ msgstr "Opis, który użytkownik widzi podczas składania zamówienia." - -# @ woocommerce -#~ msgid "PayPal" -#~ msgstr "PayPal" - -# @ woocommerce -#~ msgid "PayPal standard" -#~ msgstr "PayPal standard" - -# @ woocommerce -#~ msgid "" -#~ "PayPal standard works by sending the user to PayPal to enter their " -#~ "payment information." -#~ msgstr "" -#~ "PayPal standard wysyła klienta do strony PayPala, gdzie klient dokonuje " -#~ "płatności." - -# @ woocommerce -#~ msgid "Gateway Disabled" -#~ msgstr "Bramka wyłączona" - -# @ woocommerce -#~ msgid "PayPal does not support your store currency." -#~ msgstr "PayPal nie wspiera Twojej waluty." - -# @ woocommerce -#~ msgid "Enable PayPal standard" -#~ msgstr "Włącz PayPal standard" - -# @ woocommerce -#~ msgid "" -#~ "Pay via PayPal; you can pay with your credit card if you don't have a " -#~ "PayPal account" -#~ msgstr "" -#~ "Płać z PayPal; możesz zapłacić kartą kredytową jeśli nie masz konta PayPal" - -# @ woocommerce -#~ msgid "PayPal Email" -#~ msgstr "E-mail konta PayPal" - -# @ woocommerce -#~ msgid "" -#~ "Please enter your PayPal email address; this is needed in order to take " -#~ "payment." -#~ msgstr "" -#~ "Wpisz adres e-mail konta PayPal; jest wymagany, aby przyjąć płatność." - -# @ woocommerce -#~ msgid "Shipping details" -#~ msgstr "Dane wysyłki" - -# @ woocommerce -#~ msgid "PayPal sandbox" -#~ msgstr "Tryb testowy PayPal" - -# @ woocommerce -#~ msgid "Enable PayPal sandbox" -#~ msgstr "Włącz tryb testowy (tryb piaskownicy) PayPal" - -# @ woocommerce -#~ msgid "" -#~ "Thank you for your order. We are now redirecting you to PayPal to make " -#~ "payment." -#~ msgstr "" -#~ "Dziękujemy za zamówienie. Przekierujemy Cię teraz na stronę PayPal, aby " -#~ "dokonać płatności." - -# @ woocommerce -#~ msgid "Pay via PayPal" -#~ msgstr "Płać z PayPal" - -# @ woocommerce -#~ msgid "Cancel order & restore cart" -#~ msgstr "Anuluj zamówienie i przywróć koszyk" - -# @ woocommerce -#~ msgid "" -#~ "Thank you for your order, please click the button below to pay with " -#~ "PayPal." -#~ msgstr "" -#~ "Dziękujemy za zamówienie, kliknij przycisk poniżej, aby zapłacić przez " -#~ "PayPal." - -# @ woocommerce -#~ msgid "IPN payment completed" -#~ msgstr "Płatność BPP (Błyskawiczne powiadamianie o płatności) zakończona" - -# @ woocommerce -#~ msgid "Payment %s via IPN." -#~ msgstr "Płatność %s przez BPP (Błyskawiczne powiadamianie o płatności)." - -# @ woocommerce -#~ msgid "Order refunded/reversed" -#~ msgstr "Zamówienie zrefundowane/zwrócone" - -# @ woocommerce -#~ msgid "Google Analytics" -#~ msgstr "Google Analytics" - -# @ woocommerce -#~ msgid "" -#~ "Google Analytics is a free service offered by Google that generates " -#~ "detailed statistics about the visitors to a website." -#~ msgstr "" -#~ "Google Analytics to darmowa usługa Google, która generuje szczegółowe " -#~ "statystyki odwiedzin strony." - -# @ woocommerce -#~ msgid "Google Analytics ID" -#~ msgstr "ID Google Analytics" - -# @ woocommerce -#~ msgid "" -#~ "Log into your google analytics account to find your ID. e.g. UA-" -#~ "XXXXX-X" -#~ msgstr "" -#~ "Zaloguj się na swoje konto Google Analytics, żeby znaleźć swoje ID. np. " -#~ "UA-XXXXX-X" - -# @ woocommerce -#~ msgid "Tracking code" -#~ msgstr "Kod śledzenia" - -# @ woocommerce -#~ msgid "" -#~ "Add tracking code to your site's footer. You don't need to enable this if " -#~ "using a 3rd party analytics plugin." -#~ msgstr "" -#~ "Dodaj kod śledzenia do stopki swojej strony. Nie musisz włączać tej opcji " -#~ "jeśli używasz innej wtyczki do statystyk." - -# @ woocommerce -#~ msgid "Add eCommerce tracking code to the thankyou page" -#~ msgstr "Dodaj kod śledzenia eCommerce do strony z podziękowaniem" - -# @ woocommerce -#~ msgid "SKU:" -#~ msgstr "SKU:" - -# @ woocommerce -#, fuzzy -#~ msgid "Add to Cart" -#~ msgstr "Dodaj do koszyka" - -# @ woocommerce -#~ msgid "ShareDaddy" -#~ msgstr "ShareDaddy" - -# @ woocommerce -#~ msgid "ShareDaddy is a sharing plugin bundled with JetPack." -#~ msgstr "ShareDaddy jest wtyczką do dzielenia się włączoną do JetPacka." - -# @ woocommerce -#~ msgid "Output ShareDaddy button?" -#~ msgstr "Wyświetlać przycisk ShareDaddy?" - -# @ woocommerce -#~ msgid "ShareThis" -#~ msgstr "ShareThis" - -# @ woocommerce -#~ msgid "" -#~ "ShareThis offers a sharing widget which will allow customers to share " -#~ "links to products with their friends." -#~ msgstr "" -#~ "ShareThis oferuje widget, który umożliwia klientom na dzielenie się " -#~ "linkami do produktów ze znajomymi." - -# @ woocommerce -#~ msgid "ShareThis Publisher ID" -#~ msgstr "ID Wydawcy w ShareThis" - -# @ woocommerce -#~ msgid "" -#~ "Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons " -#~ "on product pages." -#~ msgstr "" -#~ "Wpisz swoje %1$sID wydawcy w ShareThis%2$s aby pokazywać opcje dzielenia " -#~ "się na stronach produktów." - -# @ woocommerce -#, fuzzy -#~ msgid "Customize Button" -#~ msgstr "Login Klienta" - -# @ woocommerce -#~ msgid "Documentation" -#~ msgstr "Dokumentacja" - -# @ woocommerce -#~ msgid "Flat rate" -#~ msgstr "Płaska stawka" - -# @ woocommerce -#~ msgid "Flat Rates" -#~ msgstr "Płaskie stawki" - -# @ woocommerce -#~ msgid "Flat rates let you define a standard rate per item, or per order." -#~ msgstr "" -#~ "Płaskie stawki pozwalają ustawić standardową opłatę na produkt lub " -#~ "zamówienie." - -# @ woocommerce -#~ msgid "Enable this shipping method" -#~ msgstr "Włącz tę metodę wysyłki" - -# @ woocommerce -#~ msgid "Method Title" -#~ msgstr "Tytuł metody" - -# @ woocommerce -#~ msgid "Flat Rate" -#~ msgstr "Płaska Stawka" - -# @ woocommerce -#~ msgid "Method availability" -#~ msgstr "Dostępność" - -# @ woocommerce -#~ msgid "All allowed countries" -#~ msgstr "Wszystkie dozwolone kraje" - -# @ woocommerce -#~ msgid "Calculation Type" -#~ msgstr "Typ obliczeń" - -# @ woocommerce -#~ msgid "Per Order - charge shipping for the entire order as a whole" -#~ msgstr "Za zamówienie - koszty przesyłki za całe zamówienie" - -# @ woocommerce -#~ msgid "Per Item - charge shipping for each item individually" -#~ msgstr "Za produkt - koszty przesyłki za każdy produkt osobno" - -# @ woocommerce -#~ msgid "Per Class - charge shipping for each shipping class in an order" -#~ msgstr "Za klasę wysyłkową - koszty przesyłki za każdą klasę w zamówieniu" - -# @ woocommerce -#~ msgid "Default Cost" -#~ msgstr "Domyślny koszt" - -# @ woocommerce -#~ msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -#~ msgstr "Koszt bez podatku. Wpisz liczbę, np. 2,50." - -# @ woocommerce -#~ msgid "Default Handling Fee" -#~ msgstr "Domyślna opłata manipulacyjna" - -# @ woocommerce -#~ msgid "" -#~ "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. " -#~ "Leave blank to disable." -#~ msgstr "" -#~ "Opłata bez podatku. Wpisz liczbę, np. 2,50, lub procent, np. 5%. Pozostaw " -#~ "puste pole, aby nie pobierać opłaty." - -# @ woocommerce -#~ msgid "Cost, excluding tax." -#~ msgstr "Koszy z wyłączeniem podatku." - -# @ woocommerce -#~ msgid "Handling Fee" -#~ msgstr "Opłata manipulacyjna" - -# @ woocommerce -#~ msgid "" -#~ "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -#~ msgstr "Opłata bez podatku. Wpisz wartość, np. 2,50 lub procent, np. 5%." - -# @ woocommerce -#~ msgid "+ Add Flat Rate" -#~ msgstr "+ Dodaj płaską stawkę" - -# @ woocommerce -#~ msgid "" -#~ "Add rates for shipping classes here — they will override the " -#~ "default costs defined above." -#~ msgstr "" -#~ "Dodaj stawki dla klas wysyłkowych — nadpiszą one domyślne " -#~ "ustawienia zdefiniowane powyżej." - -# @ woocommerce -#~ msgid "Delete selected rates" -#~ msgstr "Usuń zaznaczone stawki" - -# @ woocommerce -#~ msgid "Select a class…" -#~ msgstr "Wybierz klasę…" - -# @ woocommerce -#~ msgid "0.00" -#~ msgstr "0,00" - -# @ woocommerce -#~ msgid "Delete the selected rates?" -#~ msgstr "Usunąć wybrane stawki?" - -# @ woocommerce -#~ msgid "Free Shipping" -#~ msgstr "Darmowa wysyłka" - -# @ woocommerce -#~ msgid "Enable Free Shipping" -#~ msgstr "Włącz darmową wysyłkę" - -# @ woocommerce -#, fuzzy -#~ msgid "Free Shipping Requires..." -#~ msgstr "Darmowa wysyłka" - -# @ woocommerce -#, fuzzy -#~ msgid "A valid free shipping coupon" -#~ msgstr "Darmowa wysyłka" - -# @ woocommerce -#, fuzzy -#~ msgid "A minimum order amount OR a coupon" -#~ msgstr "Minimalna wartość zamówienia" - -# @ woocommerce -#, fuzzy -#~ msgid "A minimum order amount AND a coupon" -#~ msgstr "Minimalna wartość zamówienia" - -# @ woocommerce -#~ msgid "Minimum Order Amount" -#~ msgstr "Minimalna wartość zamówienia" - -# @ woocommerce -#, fuzzy -#~ msgid "" -#~ "Users will need to spend this amount to get free shipping (if enabled " -#~ "above)." -#~ msgstr "" -#~ "Klienci będą musieli wydać tę kwotę, aby skorzystać z darmowej wysyłki. " -#~ "Pozostaw puste pole, aby wyłączyć darmową wysyłkę." - -# @ woocommerce -#~ msgid "International Delivery" -#~ msgstr "Międzynarodowa wysyłka" - -# @ woocommerce -#~ msgid "International delivery based on flat rate shipping." -#~ msgstr "Międzynarodowa wysyłka oparta o płaską stawkę." - -# @ woocommerce -#~ msgid "Availability" -#~ msgstr "Dsotępność" - -# @ woocommerce -#~ msgid "Selected countries" -#~ msgstr "Wybrane kraje" - -# @ woocommerce -#~ msgid "Excluding selected countries" -#~ msgstr "Z wyjątkiem zaznaczonych krajów" - -# @ woocommerce -#~ msgid "Countries" -#~ msgstr "Kraje" - -# @ woocommerce -#~ msgid "Local Delivery" -#~ msgstr "Dostawa lokalna" - -# @ woocommerce -#~ msgid "Enable" -#~ msgstr "Włącz" - -# @ woocommerce -#~ msgid "Enable local delivery" -#~ msgstr "Włącz dostawę lokalną" - -# @ woocommerce -#~ msgid "Fee Type" -#~ msgstr "Typ opłaty" - -# @ woocommerce -#~ msgid "How to calculate delivery charges" -#~ msgstr "W jaki sposób obliczyć opłatę za dostawę" - -# @ woocommerce -#~ msgid "" -#~ "Local delivery is a simple shipping method for delivering orders locally." -#~ msgstr "" -#~ "Lokalna dostawa to prosta metoda wysyłki do dostarczania zamówień " -#~ "lokalnie." - -# @ woocommerce -#~ msgid "Local Pickup" -#~ msgstr "Odbiór osobisty" - -# @ woocommerce -#~ msgid "Enable local pickup" -#~ msgstr "Włącz odbiór osobisty" - -# @ woocommerce -#, fuzzy -#~ msgid "Apply base tax rate" -#~ msgstr "Zastosuj przed podatkiem" - -# @ woocommerce -#~ msgid "" -#~ "Local pickup is a simple method which allows the customer to pick up " -#~ "their order themselves." -#~ msgstr "" -#~ "Odbiór osobisty to prosta metoda, która pozwala klientom odebrać " -#~ "zamówienia we własnym zakresie." - -# @ woocommerce -#~ msgid "pending" -#~ msgstr "nierozstrzygnięte" - -# @ woocommerce -#~ msgid "failed" -#~ msgstr "nieudane" - -# @ woocommerce -#~ msgid "on-hold" -#~ msgstr "wstrzymane" - -# @ woocommerce -#~ msgid "processing" -#~ msgstr "przetwarzane" - -# @ woocommerce -#~ msgid "completed" -#~ msgstr "zakończone" - -# @ woocommerce -#~ msgid "refunded" -#~ msgstr "zwrócone" - -# @ woocommerce -#~ msgid "cancelled" -#~ msgstr "odwołane" - -# @ woocommerce -#~ msgid "Australian Capital Territory" -#~ msgstr "Australijskie Terytorium Stołeczne" - -# @ woocommerce -#~ msgid "New South Wales" -#~ msgstr "Nowa Południowa Walia" - -# @ woocommerce -#~ msgid "Northern Territory" -#~ msgstr "Terytorium Północne" - -# @ woocommerce -#~ msgid "Queensland" -#~ msgstr "Queensland" - -# @ woocommerce -#~ msgid "South Australia" -#~ msgstr "Australia Południowa" - -# @ woocommerce -#~ msgid "Tasmania" -#~ msgstr "Tasmania" - -# @ woocommerce -#~ msgid "Victoria" -#~ msgstr "Wiktoria (stan Australii)" - -# @ woocommerce -#~ msgid "Western Australia" -#~ msgstr "Australia Zachodnia" - -# @ woocommerce -#~ msgid "Acre" -#~ msgstr "Acre" - -# @ woocommerce -#~ msgid "Alagoas" -#~ msgstr "Alagoas" - -# @ woocommerce -#~ msgid "Amapá" -#~ msgstr "Amapá" - -# @ woocommerce -#~ msgid "Amazonas" -#~ msgstr "Amazonas" - -# @ woocommerce -#~ msgid "Bahia" -#~ msgstr "Bahia" - -# @ woocommerce -#~ msgid "Ceará" -#~ msgstr "Ceará" - -# @ woocommerce -#, fuzzy -#~ msgid "Distrito Federal" -#~ msgstr "Dystrykt federalny" - -# @ woocommerce -#~ msgid "Goiás" -#~ msgstr "Goiás" - -# @ woocommerce -#~ msgid "Maranhão" -#~ msgstr "Maranhão" - -# @ woocommerce -#, fuzzy -#~ msgid "Mato Grosso" -#~ msgstr "Mato grosso" - -# @ woocommerce -#, fuzzy -#~ msgid "Mato Grosso do Sul" -#~ msgstr "Mato grosso do sul" - -# @ woocommerce -#, fuzzy -#~ msgid "Minas Gerais" -#~ msgstr "Minas gerais" - -# @ woocommerce -#~ msgid "Pará" -#~ msgstr "Pará" - -# @ woocommerce -#~ msgid "Paraná" -#~ msgstr "Paraná" - -# @ woocommerce -#~ msgid "Pernambuco" -#~ msgstr "Pernambuco" - -# @ woocommerce -#~ msgid "Piauí" -#~ msgstr "Piauí" - -# @ woocommerce -#, fuzzy -#~ msgid "Rio de Janeiro" -#~ msgstr "Rio de janeiro" - -# @ woocommerce -#, fuzzy -#~ msgid "Rio Grande do Norte" -#~ msgstr "Rio grande do norte" - -# @ woocommerce -#, fuzzy -#~ msgid "Rio Grande do Sul" -#~ msgstr "Rio grande do sul" - -# @ woocommerce -#~ msgid "Rondônia" -#~ msgstr "Rondônia" - -# @ woocommerce -#~ msgid "Roraima" -#~ msgstr "Roraima" - -# @ woocommerce -#, fuzzy -#~ msgid "Santa Catarina" -#~ msgstr "Santa catarina" - -# @ woocommerce -#, fuzzy -#~ msgid "São Paulo" -#~ msgstr "São paulo" - -# @ woocommerce -#~ msgid "Sergipe" -#~ msgstr "Sergipe" - -# @ woocommerce -#~ msgid "Tocantins" -#~ msgstr "Tocantins" - -# @ woocommerce -#~ msgid "Alberta" -#~ msgstr "Alberta" - -# @ woocommerce -#~ msgid "British Columbia" -#~ msgstr "Kolumbia Brytyjska" - -# @ woocommerce -#~ msgid "Manitoba" -#~ msgstr "Manitoba" - -# @ woocommerce -#~ msgid "New Brunswick" -#~ msgstr "Nowy Brunszwik" - -# @ woocommerce -#~ msgid "Newfoundland" -#~ msgstr "Nowa Fundlandia i Labrador" - -# @ woocommerce -#~ msgid "Northwest Territories" -#~ msgstr "Terytoria Północno-Zachodnie" - -# @ woocommerce -#~ msgid "Nova Scotia" -#~ msgstr "Nowa Szkocja" - -# @ woocommerce -#~ msgid "Nunavut" -#~ msgstr "Nunavut" - -# @ woocommerce -#~ msgid "Ontario" -#~ msgstr "Ontario" - -# @ woocommerce -#~ msgid "Prince Edward Island" -#~ msgstr "Wyspa Księcia Edwarda" - -# @ woocommerce -#~ msgid "Quebec" -#~ msgstr "Quebec" - -# @ woocommerce -#~ msgid "Saskatchewan" -#~ msgstr "Saskatchewan" - -# @ woocommerce -#~ msgid "Yukon Territory" -#~ msgstr "Jukon" - -# @ woocommerce -#~ msgid "Hong Kong Island" -#~ msgstr "Wyspa Hongkong" - -# @ woocommerce -#~ msgid "New Territories" -#~ msgstr "Nowe Terytoria" - -# @ woocommerce -#, fuzzy -#~ msgid "Auckland" -#~ msgstr "Islandia" - -# @ woocommerce -#, fuzzy -#~ msgid "Northland" -#~ msgstr "Holandia" - -# @ woocommerce -#, fuzzy -#~ msgid "Southland" -#~ msgstr "Polska" - -# @ woocommerce -#, fuzzy -#~ msgid "Tasman" -#~ msgstr "Tasmania" - -# @ woocommerce -#, fuzzy -#~ msgid "Wellington" -#~ msgstr "Waszyngton" - -# @ woocommerce -#, fuzzy -#~ msgid "West Coast" -#~ msgstr "Domyślny koszt" - -# @ woocommerce -#, fuzzy -#~ msgid "Goa" -#~ msgstr "Gruzja" - -# @ woocommerce -#, fuzzy -#~ msgid "Haryana" -#~ msgstr "Gujana" - -# @ woocommerce -#, fuzzy -#~ msgid "Kerala" -#~ msgstr "Ustawienia główne" - -# @ woocommerce -#, fuzzy -#~ msgid "Meghalaya" -#~ msgstr "Malezja" - -# @ woocommerce -#, fuzzy -#~ msgid "Nagaland" -#~ msgstr "Nowa Zelandia" - -# @ woocommerce -#, fuzzy -#~ msgid "Andaman and Nicobar Islands" -#~ msgstr "Turks i Caicos" - -# @ woocommerce -#, fuzzy -#~ msgid "Chandigarh" -#~ msgstr "Zmień" - -# @ woocommerce -#, fuzzy -#~ msgid "Pahang" -#~ msgstr "Zmień" - -# @ woocommerce -#~ msgid "Alabama" -#~ msgstr "Alabama" - -# @ woocommerce -#~ msgid "Alaska" -#~ msgstr "Alaska" - -# @ woocommerce -#~ msgid "Arizona" -#~ msgstr "Arizona" - -# @ woocommerce -#~ msgid "Arkansas" -#~ msgstr "Arkansas" - -# @ woocommerce -#~ msgid "California" -#~ msgstr "Kalifornia" - -# @ woocommerce -#~ msgid "Colorado" -#~ msgstr "Kolorado" - -# @ woocommerce -#~ msgid "Connecticut" -#~ msgstr "Connecticut" - -# @ woocommerce -#~ msgid "Delaware" -#~ msgstr "Delaware" - -# @ woocommerce -#~ msgid "District Of Columbia" -#~ msgstr "Dystrykt Kolumbii" - -# @ woocommerce -#~ msgid "Florida" -#~ msgstr "Floryda" - -# @ woocommerce -#~ msgid "Hawaii" -#~ msgstr "Hawaje" - -# @ woocommerce -#~ msgid "Idaho" -#~ msgstr "Idaho" - -# @ woocommerce -#~ msgid "Illinois" -#~ msgstr "Illinois" - -# @ woocommerce -#~ msgid "Indiana" -#~ msgstr "Indiana" - -# @ woocommerce -#~ msgid "Iowa" -#~ msgstr "Iowa" - -# @ woocommerce -#~ msgid "Kansas" -#~ msgstr "Kansas" - -# @ woocommerce -#~ msgid "Kentucky" -#~ msgstr "Kentucky" - -# @ woocommerce -#~ msgid "Louisiana" -#~ msgstr "Luizjana" - -# @ woocommerce -#~ msgid "Maine" -#~ msgstr "Maine" - -# @ woocommerce -#~ msgid "Maryland" -#~ msgstr "Maryland" - -# @ woocommerce -#~ msgid "Massachusetts" -#~ msgstr "Massachusetts" - -# @ woocommerce -#~ msgid "Michigan" -#~ msgstr "Michigan" - -# @ woocommerce -#~ msgid "Minnesota" -#~ msgstr "Minnesota" - -# @ woocommerce -#~ msgid "Mississippi" -#~ msgstr "Mississippi" - -# @ woocommerce -#~ msgid "Missouri" -#~ msgstr "Missouri" - -# @ woocommerce -#~ msgid "Montana" -#~ msgstr "Montana" - -# @ woocommerce -#~ msgid "Nebraska" -#~ msgstr "Nebraska" - -# @ woocommerce -#~ msgid "Nevada" -#~ msgstr "Nevada" - -# @ woocommerce -#~ msgid "New Hampshire" -#~ msgstr "New Hampshire" - -# @ woocommerce -#~ msgid "New Jersey" -#~ msgstr "New Jersey" - -# @ woocommerce -#~ msgid "New Mexico" -#~ msgstr "Nowy Meksyk" - -# @ woocommerce -#~ msgid "New York" -#~ msgstr "Nowy Jork" - -# @ woocommerce -#~ msgid "North Carolina" -#~ msgstr "Karolina Północna" - -# @ woocommerce -#~ msgid "North Dakota" -#~ msgstr "Dakota Północna" - -# @ woocommerce -#~ msgid "Ohio" -#~ msgstr "Ohio" - -# @ woocommerce -#~ msgid "Oklahoma" -#~ msgstr "Oklahoma" - -# @ woocommerce -#~ msgid "Oregon" -#~ msgstr "Oregon" - -# @ woocommerce -#~ msgid "Pennsylvania" -#~ msgstr "Pennsylvania" - -# @ woocommerce -#~ msgid "Rhode Island" -#~ msgstr "Rhode Island" - -# @ woocommerce -#~ msgid "South Carolina" -#~ msgstr "Karolina Południowa" - -# @ woocommerce -#~ msgid "South Dakota" -#~ msgstr "Dakota Południowa" - -# @ woocommerce -#~ msgid "Tennessee" -#~ msgstr "Tennessee" - -# @ woocommerce -#~ msgid "Texas" -#~ msgstr "Teksas" - -# @ woocommerce -#~ msgid "Utah" -#~ msgstr "Utah" - -# @ woocommerce -#~ msgid "Vermont" -#~ msgstr "Vermont" - -# @ woocommerce -#~ msgid "Virginia" -#~ msgstr "Wirginia" - -# @ woocommerce -#~ msgid "Washington" -#~ msgstr "Waszyngton" - -# @ woocommerce -#~ msgid "West Virginia" -#~ msgstr "Wirginia Zachodnia" - -# @ woocommerce -#~ msgid "Wisconsin" -#~ msgstr "Wisconsin" - -# @ woocommerce -#~ msgid "Wyoming" -#~ msgstr "Wyoming" - -# @ woocommerce -#, fuzzy -#~ msgid "Armed Forces (AA)" -#~ msgstr "Siły Zbrojne Stanów Zjednoczonych" - -# @ woocommerce -#, fuzzy -#~ msgid "Armed Forces (AE)" -#~ msgstr "Siły Zbrojne Stanów Zjednoczonych" - -# @ woocommerce -#, fuzzy -#~ msgid "Armed Forces (AP)" -#~ msgstr "Siły Zbrojne Stanów Zjednoczonych" - -# @ woocommerce -#, fuzzy -#~ msgid "Free State" -#~ msgstr "Region" - -# @ woocommerce -#, fuzzy -#~ msgid "Northern Cape" -#~ msgstr "Terytorium Północne" - -# @ woocommerce -#, fuzzy -#~ msgid "North West" -#~ msgstr "Północna Korea" - -# @ woocommerce -#, fuzzy -#~ msgid "Western Cape" -#~ msgstr "Sahara Zachodnia" - -# @ woocommerce -#~ msgid "Please enter a valid postcode/ZIP." -#~ msgstr "Proszę podać poprawny kod pocztowy." - -# @ woocommerce -#~ msgid "Shipping costs updated." -#~ msgstr "Koszty wysyłki zaktualizowane." - -# @ woocommerce -#~ msgid "" -#~ "The order totals have been updated. Please confirm your order by pressing " -#~ "the Place Order button at the bottom of the page." -#~ msgstr "" -#~ "Zamówienie zostało zaktualizowane. Potwierdź zamówienie klikając w " -#~ "przycisk \"Złóż zamówienie\" na dole strony." - -# @ woocommerce -#~ msgid "Add to cart" -#~ msgstr "Dodaj do koszyka" - -# @ woocommerce -#~ msgid "Please enter your password." -#~ msgstr "Proszę wpisać swoje hasło." - -# @ woocommerce -#, fuzzy -#~ msgid "Your password has been reset." -#~ msgstr "Ustawienia zostały zapisane." - -# @ woocommerce -#, fuzzy -#~ msgid "Enter a username or e-mail address." -#~ msgstr "Proszę wpisać swój adres e-mail." - -# @ woocommerce -#, fuzzy -#~ msgid "There is no user registered with that email address." -#~ msgstr "Konto z tym adresem e-mail już istnieje. Zaloguj się." - -# @ woocommerce -#, fuzzy -#~ msgid "Invalid username or e-mail." -#~ msgstr "Błędny e-mail lub nazwa użytkownika." - -# @ woocommerce -#, fuzzy -#~ msgid "Check your e-mail for the confirmation link." -#~ msgstr "Znaleziony w Twoim e-mailu potwierdzającym zamówienie." - -# @ woocommerce -#, fuzzy -#~ msgid "Invalid key" -#~ msgstr "Nieprawidłowe zamówienie." - -# @ woocommerce -#~ msgid "My Account →" -#~ msgstr "Moje konto →" - -# @ woocommerce -#, fuzzy -#~ msgid "Order status: %s" -#~ msgstr ". Status zamówienia: %s" - -# @ woocommerce -#~ msgid "Order Updates" -#~ msgstr "Aktualizacje zamówienia" - -# @ woocommerce -#, fuzzy -#~ msgid "l jS \\of F Y, h:ia" -#~ msgstr "l jS \\z F Y h:i:s A" - -# @ woocommerce -#~ msgid "" -#~ "Your order has already been paid for. Please contact us if you need " -#~ "assistance." -#~ msgstr "" -#~ "Twoje zamówienie zostało już opłacone. Skontaktuj się z nami jeśli " -#~ "potrzebujesz pomocy." - -# @ woocommerce -#~ msgid "Date:" -#~ msgstr "Data:" - -# @ woocommerce -#~ msgid "Payment method:" -#~ msgstr "Metoda płatności:" - -# @ woocommerce -#~ msgid "%s review for %s" -#~ msgid_plural "%s reviews for %s" -#~ msgstr[0] "%s opinia o %s" -#~ msgstr[1] "Opinie: %s o %s" - -# @ woocommerce -#~ msgid " Previous" -#~ msgstr " Poprzednie" - -# @ woocommerce -#~ msgid "Next " -#~ msgstr "Następne " - -# @ woocommerce -#~ msgid "Add Review" -#~ msgstr "Dodaj opinię" - -# @ woocommerce -#~ msgid "Add a review" -#~ msgstr "Dodaj opinię" - -# @ woocommerce -#~ msgid "Be the first to review" -#~ msgstr "Bądź pierwszym recenzentem" - -# @ woocommerce -#~ msgid "" -#~ "There are no reviews yet, would you like to submit yours?" -#~ msgstr "" -#~ "Nie ma jeszcze recenzji, czy chciałbyś napisać swoją?" - -# @ woocommerce -#~ msgid "Submit Review" -#~ msgstr "Dodaj opinię" - -# @ woocommerce -#~ msgid "Rating" -#~ msgstr "Ocena" - -# @ woocommerce -#~ msgid "Perfect" -#~ msgstr "Idealne" - -# @ woocommerce -#~ msgid "Good" -#~ msgstr "Dobre" - -# @ woocommerce -#~ msgid "Average" -#~ msgstr "Średnie" - -# @ woocommerce -#~ msgid "Not that bad" -#~ msgstr "Nie takie złe" - -# @ woocommerce -#~ msgid "Very Poor" -#~ msgstr "Bardzo słabe" - -# @ woocommerce -#~ msgid "Your Review" -#~ msgstr "Twoja opinia" - -# @ woocommerce -#~ msgid "Remove this item" -#~ msgstr "Usuń rzecz" - -# @ woocommerce -#~ msgid "Apply Coupon" -#~ msgstr "Zastosuj kupon" - -# @ woocommerce -#~ msgid "Update Cart" -#~ msgstr "Zaktualizuj koszyk" - -# @ woocommerce -#~ msgid "Proceed to Checkout →" -#~ msgstr "Przejdź do zamówienia →" - -# @ woocommerce -#~ msgid "You may be interested in…" -#~ msgstr "Możesz być zainteresowany także…" - -# @ woocommerce -#~ msgid "Your cart is currently empty." -#~ msgstr "Twój koszyk jest pusty." - -# @ woocommerce -#~ msgid "← Return To Shop" -#~ msgstr "← Powrót do sklepu" - -# @ woocommerce -#~ msgid "No products in the cart." -#~ msgstr "Brak produktów w koszyku." - -# @ woocommerce -#~ msgid "Checkout →" -#~ msgstr "Zamówienie" - -# @ woocommerce -#~ msgid "Calculate Shipping" -#~ msgstr "Oblicz koszty wysyłki" - -# @ woocommerce -#~ msgid "Update Totals" -#~ msgstr "Uaktualnij sumy" - -# @ woocommerce -#, fuzzy -#~ msgid "Free" -#~ msgstr "Za darmo!" - -# @ woocommerce -#~ msgid "Please fill in your details to see available shipping methods." -#~ msgstr "Proszę wypełnić swoje dane, aby zobaczyć sposoby wysyłki." - -# @ woocommerce -#~ msgid "" -#~ "Sorry, it seems that there are no available shipping methods for your " -#~ "state. Please contact us if you require assistance or wish to make " -#~ "alternate arrangements." -#~ msgstr "" -#~ "Przykro nam, ale dla Twojej lokalizacji nie jest udostępniony żaden " -#~ "sposób wysyłki. Prosimy skontaktuj się z nami, jeśli potrzebujesz " -#~ "wyjaśnień lub chcesz zaproponować alternatywny sposób wysłania." - -# @ woocommerce -#~ msgid "Cart Totals" -#~ msgstr "Podsumowanie koszyka" - -# @ woocommerce -#~ msgid "Cart Subtotal" -#~ msgstr "Wartość produktów" - -# @ woocommerce -#~ msgid "[Remove]" -#~ msgstr "[Usuń]" - -# @ woocommerce -#~ msgid "Order Discount" -#~ msgstr "Rabat na zamówienie" - -# @ woocommerce -#, fuzzy -#~ msgid " (taxes estimated for %s)" -#~ msgstr "(szacunkowe podatki: %s)" - -# @ woocommerce -#~ msgid "" -#~ "Note: Shipping and taxes are estimated%s and will be updated during " -#~ "checkout based on your billing and shipping information." -#~ msgstr "" -#~ "Uwaga: Koszty wysyłki i podatki są szacunkowe%s i zostaną uaktualnione po " -#~ "podaniu danych do płatności i wysyłki." - -# @ woocommerce -#, fuzzy -#~ msgid "" -#~ "No shipping methods were found; please recalculate your shipping and " -#~ "enter your state/county and zip/postcode to ensure there are no other " -#~ "available methods for your location." -#~ msgstr "" -#~ "Nie znaleziono metod wysyłki; proszę aktualizuj swoje dane wysyłkowe i " -#~ "wpisz region/kod pocztowy aby upewnić się, że nie ma innych dostępnych " -#~ "metod dla Twojej lokalizacji." - -# @ woocommerce -#~ msgid "" -#~ "Sorry, it seems that there are no available shipping methods for your " -#~ "location (%s)." -#~ msgstr "" -#~ "Przykro nam, ale dla Twojej lokalizacji nie jest udostępniony żaden " -#~ "sposób wysyłki (%s)." - -# @ woocommerce -#~ msgid "" -#~ "If you require assistance or wish to make alternate arrangements please " -#~ "contact us." -#~ msgstr "" -#~ " Jeśli potrzebujesz porady lub chcesz spersonalizować swoje zamówienie, " -#~ "skontaktuj się z nami." - -# @ woocommerce -#~ msgid "" -#~ "There are some issues with the items in your cart (shown above). Please " -#~ "go back to the cart page and resolve these issues before checking out." -#~ msgstr "" -#~ "Wystąpiły problemy w Twoim koszyku (pokazane powyżej). Prosimy o powrót " -#~ "do koszyka i rozwiązanie problemów i przejście dalej." - -# @ woocommerce -#~ msgid "← Return To Cart" -#~ msgstr "← Wróć do koszyka" - -# @ woocommerce -#~ msgid "Create an account?" -#~ msgstr "Stworzyć konto?" - -# @ woocommerce -#, fuzzy -#~ msgid "" -#~ "Create an account by entering the information below. If you are a " -#~ "returning customer please login at the top of the page." -#~ msgstr "" -#~ "Stwórz konto podając informacje poniżej. Jeśli jesteś powracającym " -#~ "klientem zaloguj się na górze strony." - -# @ woocommerce -#~ msgid "You must be logged in to checkout." -#~ msgstr "Musisz być zalogowany aby zrealizować zamówienie." - -# @ woocommerce -#~ msgid "Your order" -#~ msgstr "Twoje zamówienie" - -# @ woocommerce -#~ msgid "Have a coupon?" -#~ msgstr "Masz kupon?" - -# @ woocommerce -#~ msgid "Click here to enter your code" -#~ msgstr "Kliknij tutaj, aby dodać kod" - -# @ woocommerce -#~ msgid "Already registered?" -#~ msgstr "Masz już konto?" - -# @ woocommerce -#~ msgid "Click here to login" -#~ msgstr "Kliknij tutaj, aby się zalogować" - -# @ woocommerce -#, fuzzy -#~ msgid "" -#~ "If you have shopped with us before, please enter your details in the " -#~ "boxes below. If you are a new customer please proceed to the Billing " -#~ "& Shipping section." -#~ msgstr "" -#~ "Jeśli robiłeś już u nas zakupy, wpisz swój login i hasło poniżej. Jeśli " -#~ "jesteś nowym klientem przejdź do sekcji Płatności i Wysyłka." - -# @ woocommerce -#~ msgid "Totals" -#~ msgstr "Łącznie" - -# @ woocommerce -#~ msgid "" -#~ "Sorry, it seems that there are no available payment methods for your " -#~ "location. Please contact us if you require assistance or wish to make " -#~ "alternate arrangements." -#~ msgstr "" -#~ "Przykro nam, ale dla Twojej lokalizacji nie jest udostępniona żadna " -#~ "metoda płatności. Prosimy skontaktuj się z nami, jeśli potrzebujesz " -#~ "wyjaśnień lub chcesz omówić alternatywne sposoby płatności." - -# @ woocommerce -#~ msgid "Pay for order" -#~ msgstr "Płać za zamówienie" - -# @ woocommerce -#~ msgid "Additional Information" -#~ msgstr "Dodatkowe informacje" - -# @ woocommerce -#~ msgid "Please fill in your details above to see available payment methods." -#~ msgstr "Wypełnij powyższe szczegóły aby zobaczyć dostępne metody płatności." - -# @ woocommerce -#~ msgid "" -#~ "Sorry, it seems that there are no available payment methods for your " -#~ "state. Please contact us if you require assistance or wish to make " -#~ "alternate arrangements." -#~ msgstr "" -#~ "Przykro nam, ale dla Twojego regionu nie jest udostępniona żadna metoda " -#~ "płatności. Prosimy skontaktuj się z nami, jeśli potrzebujesz wyjaśnień " -#~ "lub chcesz omówić alternatywne sposoby płatności." - -# @ woocommerce -#~ msgid "" -#~ "Since your browser does not support JavaScript, or it is disabled, please " -#~ "ensure you click the Update Totals button before placing your " -#~ "order. You may be charged more than the amount stated above if you fail " -#~ "to do so." -#~ msgstr "" -#~ "Ponieważ Twoja przeglądarka nie wspiera JavaScriptu lub jest on " -#~ "wyłączony, upewnij się, że klikniesz przycisk Zaktualizuj koszyk " -#~ "przed złożeniem zamówienia. Możesz zapłacić więcej niż jest podane " -#~ "powyżej, jeśli tego nie zrobisz." - -# @ woocommerce -#~ msgid "Update totals" -#~ msgstr "Uaktualnij sumy" - -# @ woocommerce -#~ msgid "Place order" -#~ msgstr "Złóż zamówienie" - -# @ woocommerce -#, fuzzy -#~ msgid "I have read and accept the" -#~ msgstr "Akceptuję" - -# @ woocommerce -#~ msgid "terms & conditions" -#~ msgstr "warunki i zasady" - -# @ woocommerce -#~ msgid "" -#~ "Unfortunately your order cannot be processed as the originating bank/" -#~ "merchant has declined your transaction." -#~ msgstr "" -#~ "Niestety Twoje zamówienie nie może zostać przetworzone, ponieważ bank " -#~ "odrzucił transakcje." - -# @ woocommerce -#~ msgid "Please attempt your purchase again or go to your account page." -#~ msgstr "" -#~ "Proszę spróbuj ponownie dokonać zakupu lub udaj się na stronę swojego " -#~ "konta. " - -# @ woocommerce -#~ msgid "Please attempt your purchase again." -#~ msgstr "Proszę spróbuj ponownie dokonać zakupu." - -# @ woocommerce -#~ msgid "Thank you. Your order has been received." -#~ msgstr "Dziękujemy. Otrzymaliśmy Twoje zamówienie." - -# @ woocommerce -#, fuzzy -#~ msgid "You have received an order from %s. Their order is as follows:" -#~ msgstr "Otrzymałeś zamówienie od" - -# @ woocommerce -#, fuzzy -#~ msgid "Order: %s" -#~ msgstr "Zamówienie:" - -# @ woocommerce -#, fuzzy -#~ msgid "" -#~ "Hi there. Your recent order on %s has been completed. Your order details " -#~ "are shown below for your reference:" -#~ msgstr "Twoje zamówienie jest kompletne. Szczegóły zamówienia są poniżej:" - -# @ woocommerce -#, fuzzy -#~ msgid "" -#~ "An order has been created for you on %s. To pay for this order please use " -#~ "the following link: %s" -#~ msgstr "" -#~ "Zamówienie zostało stworzone: “%s”. Aby dokonać płatności " -#~ "użyj tego linku: Zapłać" - -# @ woocommerce -#, fuzzy -#~ msgid "pay" -#~ msgstr "zaplac" - -# @ woocommerce -#~ msgid "Hello, a note has just been added to your order:" -#~ msgstr "" -#~ "Witaj, dodatkowe informacje zostały właśnie dodane do Twojego zamówienia:" - -# @ woocommerce -#~ msgid "For your reference, your order details are shown below." -#~ msgstr "Szczegóły zamówienia przedstawione są poniżej." - -# @ woocommerce -#, fuzzy -#~ msgid "Username: %s" -#~ msgstr "Nazwa użytkownika" - -# @ woocommerce -#, fuzzy -#~ msgid "Click here to reset your password" -#~ msgstr "Kliknij tutaj, aby dodać kod" - -# @ woocommerce -#, fuzzy -#~ msgid "Download %d:" -#~ msgstr "Pobieranie:" - -# @ woocommerce -#~ msgid "Download:" -#~ msgstr "Pobieranie:" - -# @ woocommerce -#, fuzzy -#~ msgid "Order number: %s" -#~ msgstr "Sortuj wg:" - -# @ woocommerce -#, fuzzy -#~ msgid "Order date: %s" -#~ msgstr "Aktualizacje zamówienia" - -# @ woocommerce -#, fuzzy -#~ msgid "Your details" -#~ msgstr "Nasze dane" - -# @ woocommerce -#, fuzzy -#~ msgid "Quantity: %s" -#~ msgstr "Ilość" - -# @ woocommerce -#, fuzzy -#~ msgid "Cost: %s" -#~ msgstr "Koszt" - -# @ woocommerce -#~ msgid "Read More" -#~ msgstr "Zobacz więcej" - -# @ woocommerce -#~ msgid "Select options" -#~ msgstr "Wybierz opcje" - -# @ woocommerce -#~ msgid "View options" -#~ msgstr "Zobacz opcje" - -# @ woocommerce -#, fuzzy -#~ msgid "Showing all %d results" -#~ msgstr "Pokaż wszystkie podtypy" - -# @ woocommerce -#~ msgid "Sale!" -#~ msgstr "Wyprzedaż!" - -# @ woocommerce -#~ msgid "New password" -#~ msgstr "Nowe hasło" - -# @ woocommerce -#~ msgid "Re-enter new password" -#~ msgstr "Powtórz hasło" - -# @ woocommerce -#~ msgid "Save" -#~ msgstr "Zapisz" - -# @ woocommerce -#~ msgid "Save Address" -#~ msgstr "Zapisz adres" - -# @ woocommerce -#~ msgid "Login" -#~ msgstr "Zaloguj" - -# @ woocommerce -#, fuzzy -#~ msgid "Username or email" -#~ msgstr "Nazwa użytkownika" - -# @ woocommerce -#~ msgid "Password" -#~ msgstr "Hasło" - -# @ woocommerce -#~ msgid "Lost Password?" -#~ msgstr "Straciłeś hasło?" - -# @ woocommerce -#~ msgid "Register" -#~ msgstr "Zarejestruj" - -# @ woocommerce -#~ msgid "Username" -#~ msgstr "Nazwa użytkownika" - -# @ woocommerce -#~ msgid "Re-enter password" -#~ msgstr "Powtórz hasło" - -# @ woocommerce -#, fuzzy -#~ msgid "Enter a new password below." -#~ msgstr "Powtórz hasło" - -# @ woocommerce -#, fuzzy -#~ msgid "Reset Password" -#~ msgstr "Straciłeś hasło?" - -# @ woocommerce -#~ msgid "" -#~ "Hello, %s. From your account dashboard you can view your " -#~ "recent orders, manage your shipping and billing addresses and change your password." -#~ msgstr "" -#~ "Witaj, %s. W ustawieniach swojego konta, możesz " -#~ "sprawdzić swoje ostatnie zamówienia, zarządzać adresami płatności i " -#~ "dostawy, a także zmienić hasło." - -# @ woocommerce -#, fuzzy -#~ msgid "My Addresses" -#~ msgstr "Edytuj adres" - -# @ woocommerce -#~ msgid "" -#~ "The following addresses will be used on the checkout page by default." -#~ msgstr "Następujące adresy zostaną domyślnie użyte na stronie zamówienia." - -# @ woocommerce -#, fuzzy -#~ msgid "You have not set up this type of address yet." -#~ msgstr "Nie ustawiłeś jeszcze adresu wysyłki." - -# @ woocommerce -#~ msgid "Available downloads" -#~ msgstr "Dostępne do pobrania" - -# @ woocommerce -#~ msgid "Recent Orders" -#~ msgstr "Ostatnie zamówienia" - -# @ woocommerce -#~ msgid "Ship to" -#~ msgstr "Dostarcz do" - -# @ woocommerce -#~ msgid "" -#~ "To track your order please enter your Order ID in the box below and press " -#~ "return. This was given to you on your receipt and in the confirmation " -#~ "email you should have received." -#~ msgstr "" -#~ "Aby śledzić swoje zamówienie, proszę wpisać swój ID zamówienia w pole " -#~ "poniżej i potwierdzić enterem. Numer otrzymałeś na paragonie oraz w e-" -#~ "mailu potwierdzającym transakcje." - -# @ woocommerce -#~ msgid "Order ID" -#~ msgstr "ID zamówienia" - -# @ woocommerce -#~ msgid "Found in your order confirmation email." -#~ msgstr "Znaleziony w Twoim e-mailu potwierdzającym zamówienie." - -# @ woocommerce -#~ msgid "Billing Email" -#~ msgstr "E-mail płatności" - -# @ woocommerce -#~ msgid "Email you used during checkout." -#~ msgstr "E-mail który został użyty podczas składania zamówienia." - -# @ woocommerce -#~ msgid "Track\"" -#~ msgstr "Śledź\"" - -# @ woocommerce -#, fuzzy -#~ msgid "Download file %s →" -#~ msgstr "Pobierz plik →" - -# @ woocommerce -#~ msgid "Telephone:" -#~ msgstr "Telefon:" - -# @ woocommerce -#~ msgid "and was completed" -#~ msgstr "i zostało zakończone" - -# @ woocommerce -#~ msgid " ago" -#~ msgstr " temu" - -# @ woocommerce -#~ msgid "Products tagged “" -#~ msgstr "Produkty oznaczone “" - -# @ woocommerce -#~ msgid "Search results for “" -#~ msgstr "Rezultaty wyszukiwania dla “" - -# @ woocommerce -#~ msgid "Error 404" -#~ msgstr "Błąd 404" - -# @ woocommerce -#~ msgid "Posts tagged “" -#~ msgstr "Wpisy oznaczone “" - -# @ woocommerce -#~ msgid "Author:" -#~ msgstr "Autor:" - -# @ woocommerce -#~ msgid "Page" -#~ msgstr "Strona" - -# @ woocommerce -#, fuzzy -#~ msgid "Category:" -#~ msgid_plural "Categories:" -#~ msgstr[0] "Kategoria:" -#~ msgstr[1] "Kategoria:" - -# @ woocommerce -#~ msgid "Related Products" -#~ msgstr "Pokrewne produkty" - -# @ woocommerce -#~ msgid "Your comment is awaiting approval" -#~ msgstr "Twój komentarz czeka na moderację" - -# @ woocommerce -#~ msgid "You may also like…" -#~ msgstr "Możesz lubić także…" - -# @ woocommerce -#~ msgid "Choose an option" -#~ msgstr "Wybierz opcje" - -# @ woocommerce -#~ msgid "Product Description" -#~ msgstr "Opis produktu" - -# @ woocommerce -#~ msgid "Display a list of your best selling products on your site." -#~ msgstr "Pokaż na stronie listę najlepiej sprzedających się produktów." - -# @ woocommerce -#~ msgid "WooCommerce Best Sellers" -#~ msgstr "Najlepsi sprzedawcy WooCommerce" - -# @ woocommerce -#~ msgid "Best Sellers" -#~ msgstr "Najlepsi sprzedawcy" - -# @ woocommerce -#~ msgid "Title:" -#~ msgstr "Tytuł:" - -# @ woocommerce -#~ msgid "Number of products to show:" -#~ msgstr "Ilość produktów do pokazania:" - -# @ woocommerce -#~ msgid "Hide if cart is empty" -#~ msgstr "Schowaj jeśli koszyk jest pusty" - -# @ woocommerce -#~ msgid "Display a list of featured products on your site." -#~ msgstr "Pokaż na stronie listę polecanych produktów." - -# @ woocommerce -#~ msgid "WooCommerce Featured Products" -#~ msgstr "Polecane Produkty WooCommerce " - -# @ woocommerce -#~ msgid "Featured Products" -#~ msgstr "Polecane Produkty" - -# @ woocommerce -#~ msgid "" -#~ "Shows a custom attribute in a widget which lets you narrow down the list " -#~ "of products when viewing product categories." -#~ msgstr "" -#~ "Pokazuje wybrany atrybut, który pozwala na zawężenie listy produktów na " -#~ "stronach kategorii." - -# @ woocommerce -#~ msgid "WooCommerce Layered Nav" -#~ msgstr "Nawigacja WooCommerce" - -# @ woocommerce -#~ msgid "Any %s" -#~ msgstr "Dowolny %s" - -# @ woocommerce -#~ msgid "Attribute:" -#~ msgstr "Atrybut:" - -# @ woocommerce -#~ msgid "Display Type:" -#~ msgstr "Typ wyświetlania:" - -# @ woocommerce -#~ msgid "List" -#~ msgstr "Lista" - -# @ woocommerce -#~ msgid "Dropdown" -#~ msgstr "Lista wyboru" - -# @ woocommerce -#~ msgid "Query Type:" -#~ msgstr "Typ zapytania:" - -# @ woocommerce -#~ msgid "AND" -#~ msgstr "I" - -# @ woocommerce -#~ msgid "OR" -#~ msgstr "LUB" - -# @ woocommerce -#, fuzzy -#~ msgid "WooCommerce Layered Nav Filters" -#~ msgstr "Nawigacja WooCommerce" - -# @ woocommerce -#, fuzzy -#~ msgid "Remove filter" -#~ msgstr "Usuń obrazek" - -# @ woocommerce -#, fuzzy -#~ msgid "Min" -#~ msgstr "cale" - -# @ woocommerce -#, fuzzy -#~ msgid "Max" -#~ msgstr "Podatek" diff --git a/i18n/languages/woocommerce-admin-ro_RO.mo b/i18n/languages/woocommerce-admin-ro_RO.mo deleted file mode 100644 index af7db0e35d7..00000000000 Binary files a/i18n/languages/woocommerce-admin-ro_RO.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-admin-ro_RO.po b/i18n/languages/woocommerce-admin-ro_RO.po deleted file mode 100644 index bc8cb482362..00000000000 --- a/i18n/languages/woocommerce-admin-ro_RO.po +++ /dev/null @@ -1,11471 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce v1.6.1\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-03-04 09:46:18+00:00\n" -"PO-Revision-Date: 2013-04-15 23:55+0200\n" -"Last-Translator: Aurel Roman \n" -"Language-Team: \n" -"Language: ro_RO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" -"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" -"X-Poedit-Basepath: ../../\n" -"X-Textdomain-Support: yes\n" -"X-Generator: Poedit 1.5.5\n" -"X-Poedit-SearchPath-0: .\n" - -# @ woocommerce -#: admin/importers/importers-init.php:13 -msgid "WooCommerce Tax Rates (CSV)" -msgstr "WooCommerce Cote Taxare (CSV)" - -#: admin/importers/importers-init.php:13 -msgid "Import tax rates to your store via a csv file." -msgstr "" -"Importaţi cote de taxare în magazinul dvs. dintr-un fişier " -"CSV." - -#: admin/importers/tax-rates-importer.php:103 -#: admin/importers/tax-rates-importer.php:186 -#: admin/importers/tax-rates-importer.php:226 -#: admin/importers/tax-rates-importer.php:241 -msgid "Sorry, there has been an error." -msgstr "Ne pare rău, dar a apărut o eroare." - -#: admin/importers/tax-rates-importer.php:104 -msgid "The file does not exist, please try again." -msgstr "Fișierul nu există, vă rugăm încercați din nou." - -#: admin/importers/tax-rates-importer.php:187 -msgid "The CSV is invalid." -msgstr "Fișierul CSV este invalid." - -#: admin/importers/tax-rates-importer.php:198 -msgid "" -"Import complete - imported %s tax rates and skipped " -"%s." -msgstr "" -"Importare Finalizată - importate %s cote de impozitare şi " -"ne importate %s." - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:208 -msgid "All done!" -msgstr "Terminat!" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:208 -msgid "View Tax Rates" -msgstr "Vezi Cotele de impozitare" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:259 -msgid "Import Tax Rates" -msgstr "Importă Cotele de Taxare" - -#: admin/importers/tax-rates-importer.php:282 -msgid "" -"Hi there! Upload a CSV file containing tax rates to import the contents into " -"your shop. Choose a .csv file to upload, then click \"Upload file and import" -"\"." -msgstr "" -"Salut! Încărcați un fișier CSV care conține cotele de impozitare pentru a " -"importa conținutul în magazin tău. Alegeţi un fişier .csv pentru a fi " -"încărcat, apoi apăsaţi (faceţi click) pe \"Încarcă fişiere şi importă\"." - -#: admin/importers/tax-rates-importer.php:284 -msgid "" -"Tax rates need to be defined with columns in a specific order (10 columns). " -"Click here to download a sample." -msgstr "" -"Cotele de impozitare trebuie să fie definite pe coloane, într-o ordine " -"specifică (10 coloane). Click aici pentru a descărca un " -"fişier exemplu ." - -#: admin/importers/tax-rates-importer.php:292 -msgid "" -"Before you can upload your import file, you will need to fix the following " -"error:" -msgstr "" -"Înainte de a putea încărca fișierul de import, va trebui să rezolvaţi " -"următoarea eroare:" - -#: admin/importers/tax-rates-importer.php:301 -msgid "Choose a file from your computer:" -msgstr "Alegeți un fișier de pe computer:" - -#: admin/importers/tax-rates-importer.php:307 -msgid "Maximum size: %s" -msgstr "Dimensiune Maximă: %s" - -#: admin/importers/tax-rates-importer.php:312 -msgid "OR enter path to file:" -msgstr "SAU introduceți calea către fișier:" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:319 -msgid "Delimiter" -msgstr "Delimitator" - -#: admin/importers/tax-rates-importer.php:325 -msgid "Upload file and import" -msgstr "Încărcă fișier și importă" - -# @ woocommerce -#: admin/includes/duplicate_product.php:23 -msgid "No product to duplicate has been supplied!" -msgstr "Produsul propus pentru a fi copiat nu a fost furnizat!" - -# @ woocommerce -#: admin/includes/duplicate_product.php:43 -msgid "Product creation failed, could not find original product:" -msgstr "Creearea produsului a eșuat, nu găsim produsul original:" - -# @ woocommerce -#: admin/includes/duplicate_product.php:89 -msgid "(Copy)" -msgstr "(Copiază)" - -# @ woocommerce -#: admin/includes/notice-install.php:6 -msgid "" -"Welcome to WooCommerce – You're almost ready to start " -"selling :)" -msgstr "" -"Bine ai venit la WooCommerce – Ești aproape gata să " -"începi comercializarea produselor tale!" - -# @ woocommerce -#: admin/includes/notice-install.php:7 -msgid "Install WooCommerce Pages" -msgstr "Instalează Pagini pentru WooCommerce" - -# @ woocommerce -#: admin/includes/notice-install.php:7 -msgid "Skip setup" -msgstr "Sări peste configurare" - -#: admin/includes/notice-theme-support.php:6 -msgid "" -"Your theme does not declare WooCommerce support – if " -"you encounter layout issues please read our integration guide or choose a " -"WooCommerce theme :)" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-theme-support.php:7 -msgid "Theme Integration Guide" -msgstr "Ghidul de Integrare Temă" - -# @ woocommerce -#: admin/includes/notice-theme-support.php:7 -#, fuzzy -msgid "Hide this notice" -msgstr "Editează acest element in linie" - -#: admin/includes/notice-update.php:6 -msgid "" -"Data Update Required – We just need to update your " -"install to the latest version" -msgstr "" -" Actualizare necesară – Trebuie doar să actualizăm " -"instalarea dumneavoastră la ultima versiune." - -# @ woocommerce -#: admin/includes/notice-update.php:7 -msgid "Run the updater" -msgstr "Porneşte Actualizarea" - -#: admin/includes/notice-update.php:12 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Se recomandă să faceţi o copie de siguranţă a bazei de date înainte de a " -"continua. Sunteți sigur că doriți să rulați updaterul acum?" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:50 -#: admin/woocommerce-admin-init.php:895 -msgctxt "slug" -msgid "product-category" -msgstr "categorie-produs" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:51 -#: admin/woocommerce-admin-init.php:908 -msgctxt "slug" -msgid "product-tag" -msgstr "eticheta-produs" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:59 -msgctxt "slug" -msgid "product" -msgstr "produs" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:180 -#: admin/woocommerce-admin-install.php:204 -msgctxt "page_slug" -msgid "lost-password" -msgstr "uitat-parola" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:180 -#: admin/woocommerce-admin-install.php:204 -#: admin/woocommerce-admin-status.php:309 -msgid "Lost Password" -msgstr "Ai uitat parola?" - -# @ woocommerce -#: admin/includes/welcome.php:33 -msgid "Welcome to WooCommerce" -msgstr "Bine ați venit la WooCommerce" - -# @ woocommerce -#: admin/includes/welcome.php:128 -msgid "Welcome to WooCommerce %s" -msgstr "Bine ați venit la WooCommerce %s" - -# @ woocommerce -#: admin/includes/welcome.php:133 -msgid "Thanks, all done!" -msgstr "Mulțumim, totul este finalizat!" - -#: admin/includes/welcome.php:135 -msgid "Thank you for updating to the latest version!" -msgstr "" - -#: admin/includes/welcome.php:137 -msgid "Thanks for installing!" -msgstr "Mulțumim pentru instalare!" - -#: admin/includes/welcome.php:139 -msgid "" -"%s WooCommerce %s is more powerful, stable, and secure than ever before. We " -"hope you enjoy it." -msgstr "" -"%s WooCommerce % este mai puternic, stabil și sigur decât oricând înainte. " -"Sperăm să vă placă." - -# @ woocommerce -#: admin/includes/welcome.php:143 -msgid "Version %s" -msgstr "Versiunea %s" - -# @ woocommerce -#: admin/includes/welcome.php:146 admin/woocommerce-admin-content.php:41 -#: admin/woocommerce-admin-init.php:86 admin/woocommerce-admin-status.php:252 -msgid "Settings" -msgstr "Setări" - -#: admin/includes/welcome.php:147 -msgid "Docs" -msgstr "Documentație" - -#: admin/includes/welcome.php:154 -msgid "What's New" -msgstr "Ce este nou" - -# @ woocommerce -#: admin/includes/welcome.php:156 -#, fuzzy -msgid "Credits" -msgstr "Carte de Credit" - -# @ woocommerce -#: admin/includes/welcome.php:179 -msgid "Security in mind" -msgstr "Cu gândul la Securitate" - -#: admin/includes/welcome.php:183 -msgid "Sucuri Safe Plugin" -msgstr "" - -#: admin/includes/welcome.php:184 -msgid "" -"You will be happy to learn that WooCommerce has been audited and certified " -"by the Sucuri Security team. Whilst there is not much to be seen visually to " -"understand the amount of work that went into this audit, rest assured that " -"your website is powered by one of the most powerful and stable eCommerce " -"plugins available." -msgstr "" - -#: admin/includes/welcome.php:187 -msgid "A Smoother Admin Experience" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:193 -msgid "New Product Panel" -msgstr "Panou nou pentru Produse" - -#: admin/includes/welcome.php:194 -msgid "" -"We have revised the product data panel making it cleaner, more streamlined, " -"and more logical. Adding products is a breeze!" -msgstr "" - -#: admin/includes/welcome.php:199 -msgid "Nicer Order Screens" -msgstr "Ecranele pentru comenzi sunt mai frumoase" - -#: admin/includes/welcome.php:200 -msgid "" -"Order pages have had a cleanup, with a more easily scannable interface. We " -"particularly like the new status icons!" -msgstr "" - -#: admin/includes/welcome.php:205 -msgid "Multi-Download Support" -msgstr "Suport pentru Download Multiplu" - -#: admin/includes/welcome.php:206 -msgid "" -"Products can have multiple downloadable files - purchasers will get access " -"to all the files added." -msgstr "" - -#: admin/includes/welcome.php:211 -msgid "Less Taxing Taxes" -msgstr "" - -#: admin/includes/welcome.php:217 -msgid "New Tax Input Panel" -msgstr "Un nou panou pentru introducere Taxelor" - -#: admin/includes/welcome.php:218 -msgid "" -"The tax input pages have been streamlined to make inputting taxes simpler - " -"adding multiple taxes for a single jurisdiction is now much easier using the " -"priority system. There is also CSV import/export support." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:222 -#, fuzzy -msgid "Improved Tax Options" -msgstr "Opțiuni Administrare Taxe" - -#: admin/includes/welcome.php:223 -msgid "" -"As requested by some users, we now support taxing the billing address " -"instead of shipping (optional), and we allow you to choose which tax class " -"applies to shipping." -msgstr "" - -#: admin/includes/welcome.php:228 -msgid "Product Listing Improvements Customers Will Love" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:234 -msgid "New Sorting Options" -msgstr "Opțiuni noi pentru Sortare" - -#: admin/includes/welcome.php:235 -msgid "Customers can now sort products by popularity and ratings." -msgstr "" - -#: admin/includes/welcome.php:240 -msgid "Better Pagination and Result Counts" -msgstr "" - -#: admin/includes/welcome.php:241 -msgid "" -"Numbered pagination has been added to core, and we show the number of " -"results found above the listings." -msgstr "" - -#: admin/includes/welcome.php:246 -msgid "Inline Star Rating Display" -msgstr "" - -#: admin/includes/welcome.php:247 -msgid "" -"We have added star ratings to the catalog which are pulled from reviews." -msgstr "" - -#: admin/includes/welcome.php:255 -msgid "Under the Hood" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:259 -msgid "New product classes" -msgstr "Clase noi pentru Produs" - -#: admin/includes/welcome.php:260 -msgid "" -"The product classes have been rewritten and are now factory based. Much more " -"extendable, and easier to query products using the new get_product() function." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:264 -msgid "Capability overhaul" -msgstr "Revizie Capabilități" - -#: admin/includes/welcome.php:265 -msgid "" -"More granular capabilities for admin/shop manager roles covering products, " -"orders and coupons." -msgstr "" - -#: admin/includes/welcome.php:269 -msgid "API Improvements" -msgstr "Îmbunătățiri API" - -#: admin/includes/welcome.php:270 -msgid "" -"WC-API now has real endpoints, and we've optimised the gateways " -"API significantly by only loading gateways when needed." -msgstr "" - -#: admin/includes/welcome.php:276 -msgid "Cache-friendly cart widgets" -msgstr "" - -#: admin/includes/welcome.php:277 -msgid "" -"Cart widgets and other \"fragments\" are now pulled in via AJAX - this works " -"wonders with static page caching." -msgstr "" - -#: admin/includes/welcome.php:281 -msgid "Session handling" -msgstr "Manipulare Sesiuni." - -#: admin/includes/welcome.php:282 -msgid "" -"PHP SESSIONS have been a problem for many users in the past, so we've " -"developed our own handler using cookies and options to make these more " -"reliable." -msgstr "" -"PHP SESSIONS a fost o problemă pentru mulți utilzatori în trecut, așa că am " -"dezvoltat propria soluție pentru manipularea acestora folosind cooki-uri si " -"\"options\" pentru a face acest lucru cât mai fiabil." - -#: admin/includes/welcome.php:286 -msgid "Retina Ready" -msgstr "" - -#: admin/includes/welcome.php:287 -msgid "All graphics within WC have been optimised for HiDPI displays." -msgstr "Toata interfața grafică folosită de WC a fost optimizată pentru HiDPI" - -#: admin/includes/welcome.php:294 -msgid "Better stock handling" -msgstr "Manipulare mai bună a stocurilor" - -#: admin/includes/welcome.php:295 -msgid "" -"We have added an option to hold stock for unpaid orders (defaults to " -"60mins). When this time limit is reached, and the order is not paid for, " -"stock is released and the order is cancelled." -msgstr "" -"Am adăugat o opțiune pentru păstrarea stocului în cazul comenzilor " -"neachitate (implicit pentru 60 minute). Când această limită este atinsă, " -"Comanda Care este în așteptare și neachitată va fi anulată, iar stocul va " -"revenii la valoarea anterioara." - -#: admin/includes/welcome.php:299 -msgid "Improved Line-item storage" -msgstr "" - -#: admin/includes/welcome.php:300 -msgid "" -"We have changed how order items get stored making them easier (and faster) " -"to access for reporting. Order items are no longer serialised within an " -"order - they are stored within their own table." -msgstr "" - -#: admin/includes/welcome.php:304 -msgid "Autoload" -msgstr "" - -#: admin/includes/welcome.php:305 -msgid "" -"We have setup autoloading for classes - this has dramatically reduced memory " -"usage in 2.0." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:312 -msgid "Go to WooCommerce Settings" -msgstr "Mergi la Setările WooCommerce" - -#: admin/includes/welcome.php:330 -msgid "" -"WooCommerce is developed and maintained by a worldwide team of passionate " -"individuals and backed by an awesome developer community. Want to see your " -"name? Contribute to WooCommerce." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:356 -msgid "View %s" -msgstr "Vizualizează %s" - -# @ woocommerce -#: admin/post-types/product.php:31 -msgid "Make a duplicate from this product" -msgstr "Creează o copie identică pentru acest produs" - -# @ woocommerce -#: admin/post-types/product.php:32 -msgid "Duplicate" -msgstr "Copiază" - -# @ woocommerce -#: admin/post-types/product.php:61 -msgid "Copy to a new draft" -msgstr "Copiază într-o ciornă nouă" - -# @ woocommerce -#: admin/post-types/product.php:86 admin/woocommerce-admin-taxonomies.php:297 -msgid "Image" -msgstr "Imagine" - -# @ woocommerce -#: admin/post-types/product.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:372 -#: admin/post-types/writepanels/writepanel-product_data.php:451 -#: admin/woocommerce-admin-attributes.php:232 -#: admin/woocommerce-admin-attributes.php:268 -#: admin/woocommerce-admin-attributes.php:306 -#: admin/woocommerce-admin-attributes.php:329 -#: admin/woocommerce-admin-attributes.php:373 -#: admin/woocommerce-admin-attributes.php:398 -#: admin/woocommerce-admin-init.php:450 -msgid "Name" -msgstr "Nume" - -# @ woocommerce -#: admin/post-types/product.php:91 admin/post-types/product.php:557 -#: admin/post-types/writepanels/variation-admin-html.php:46 -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#: admin/woocommerce-admin-reports.php:2083 -#: admin/woocommerce-admin-reports.php:2119 -msgid "SKU" -msgstr "Cod Produs" - -# @ woocommerce -#: admin/post-types/product.php:94 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:83 -#: admin/woocommerce-admin-content.php:63 -#: admin/woocommerce-admin-reports.php:99 -msgid "Stock" -msgstr "Stoc" - -# @ woocommerce -#: admin/post-types/product.php:96 admin/post-types/product.php:568 -#: admin/post-types/product.php:787 admin/woocommerce-admin-functions.php:196 -msgid "Price" -msgstr "Preț" - -# @ woocommerce -#: admin/post-types/product.php:98 -msgid "Categories" -msgstr "Categorii" - -# @ woocommerce -#: admin/post-types/product.php:99 -msgid "Tags" -msgstr "Etichete" - -# @ woocommerce -#: admin/post-types/product.php:100 admin/post-types/product.php:632 -#: admin/post-types/product.php:904 -#: admin/post-types/writepanels/writepanel-product_data.php:1040 -#: admin/woocommerce-admin-init.php:463 -msgid "Featured" -msgstr "Recomandat" - -# @ woocommerce -#: admin/post-types/product.php:101 admin/woocommerce-admin-attributes.php:250 -#: admin/woocommerce-admin-attributes.php:308 -#: admin/woocommerce-admin-attributes.php:385 -msgid "Type" -msgstr "Tip" - -# @ woocommerce -#: admin/post-types/product.php:102 admin/post-types/shop_order.php:50 -msgid "Date" -msgstr "Dată" - -# @ woocommerce -#: admin/post-types/product.php:151 -msgid "Edit this item" -msgstr "Editează acest element" - -# @ woocommerce -# @ default -#: admin/post-types/product.php:151 -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#: admin/post-types/writepanels/writepanel-order_data.php:387 -#: admin/post-types/writepanels/writepanel-product_data.php:1043 -#: admin/woocommerce-admin-attributes.php:322 -msgid "Edit" -msgstr "Editare" - -# @ woocommerce -#: admin/post-types/product.php:152 -msgid "Edit this item inline" -msgstr "Editează acest element in linie" - -# @ woocommerce -#: admin/post-types/product.php:152 -msgid "Quick Edit" -msgstr "Editare rapidă" - -# @ woocommerce -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore this item from the Trash" -msgstr "Restaurează acest element din Gunoi" - -# @ woocommerce -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore" -msgstr "Restaurează" - -# @ woocommerce -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Move this item to the Trash" -msgstr "Mută acest element la Gunoi" - -# @ woocommerce -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Trash" -msgstr "Gunoi" - -# @ woocommerce -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -msgid "Delete this item permanently" -msgstr "Șterge acest element definitiv" - -# @ woocommerce -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -#: admin/post-types/writepanels/writepanel-order_data.php:463 -msgid "Delete Permanently" -msgstr "Șterge Definitiv" - -# @ woocommerce -#: admin/post-types/product.php:165 -msgid "Preview “%s”" -msgstr "Previzualizare “%s”" - -# @ woocommerce -#: admin/post-types/product.php:165 -msgid "Preview" -msgstr "Previzualizare" - -# @ woocommerce -#: admin/post-types/product.php:167 -msgid "View “%s”" -msgstr "Vizualizare “%s”" - -# @ woocommerce -#: admin/post-types/product.php:167 admin/post-types/shop_order.php:171 -msgid "View" -msgstr "Vizualizare" - -# @ woocommerce -#: admin/post-types/product.php:214 -msgid "Grouped" -msgstr "Grupat" - -# @ woocommerce -#: admin/post-types/product.php:216 -msgid "External/Affiliate" -msgstr "Extern / Afiliat" - -# @ woocommerce -#: admin/post-types/product.php:220 admin/post-types/product.php:407 -#: admin/post-types/writepanels/variation-admin-html.php:168 -#: admin/post-types/writepanels/writepanel-product_data.php:52 -msgid "Virtual" -msgstr "Virtual" - -# @ woocommerce -#: admin/post-types/product.php:222 admin/post-types/product.php:403 -#: admin/post-types/writepanels/variation-admin-html.php:166 -#: admin/post-types/writepanels/writepanel-product_data.php:58 -msgid "Downloadable" -msgstr "Descărcabil" - -# @ woocommerce -#: admin/post-types/product.php:224 -msgid "Simple" -msgstr "Simplu" - -# @ woocommerce -#: admin/post-types/product.php:228 admin/post-types/product.php:387 -msgid "Variable" -msgstr "Variabil" - -# @ woocommerce -#: admin/post-types/product.php:251 -msgid "Toggle featured" -msgstr "Comutare "Recomandat"" - -# @ woocommerce -#: admin/post-types/product.php:253 -msgid "yes" -msgstr "Da" - -#: admin/post-types/product.php:255 -msgid "no" -msgstr "Nu" - -# @ woocommerce -#: admin/post-types/product.php:262 admin/post-types/product.php:641 -#: admin/post-types/product.php:928 -#: admin/post-types/writepanels/writepanel-product_data.php:231 -msgid "In stock" -msgstr "În stoc" - -# @ woocommerce -#: admin/post-types/product.php:264 admin/post-types/product.php:642 -#: admin/post-types/product.php:929 -#: admin/post-types/writepanels/writepanel-product_data.php:232 -#: admin/woocommerce-admin-reports.php:2103 -msgid "Out of stock" -msgstr "Stoc epuizat" - -# @ woocommerce -#: admin/post-types/product.php:373 -msgid "Show all product types" -msgstr "Afișează toate tipurile de produs" - -# @ woocommerce -#: admin/post-types/product.php:381 -#: admin/post-types/writepanels/writepanel-product_data.php:39 -msgid "Grouped product" -msgstr "Produs Grupat" - -# @ woocommerce -#: admin/post-types/product.php:383 -#: admin/post-types/writepanels/writepanel-product_data.php:40 -msgid "External/Affiliate product" -msgstr "Produs Extern / Afiliat" - -# @ woocommerce -#: admin/post-types/product.php:385 -#: admin/post-types/writepanels/writepanel-product_data.php:38 -msgid "Simple product" -msgstr "Produs Simplu" - -# @ woocommerce -#: admin/post-types/product.php:399 -msgid "Show all sub-types" -msgstr "Afișează toate subtipurile" - -# @ woocommerce -#: admin/post-types/product.php:520 -msgid "[%s with SKU of %s]" -msgstr "[%s cu Cod Produs de %s]" - -# @ woocommerce -#: admin/post-types/product.php:526 -msgid "[%s with ID of %d]" -msgstr "[%s cu ID de %d]" - -# @ woocommerce -#: admin/post-types/product.php:552 admin/post-types/product.php:783 -#: admin/post-types/writepanels/writepanels-init.php:46 -#: admin/settings/settings-init.php:518 -msgid "Product Data" -msgstr "Informații Produs" - -# @ woocommerce -#: admin/post-types/product.php:570 -msgid "Regular price" -msgstr "Preț Normal" - -# @ woocommerce -#: admin/post-types/product.php:575 admin/post-types/product.php:811 -msgid "Sale" -msgstr "Reducere" - -# @ woocommerce -#: admin/post-types/product.php:577 -msgid "Sale price" -msgstr "Preț Reducere" - -# @ woocommerce -#: admin/post-types/product.php:588 admin/post-types/product.php:837 -#: admin/post-types/writepanels/variation-admin-html.php:90 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:273 -msgid "Weight" -msgstr "Greutate" - -# @ woocommerce -#: admin/post-types/product.php:599 admin/post-types/product.php:861 -msgid "L/W/H" -msgstr "L/W/h" - -# @ woocommerce -#: admin/post-types/product.php:601 admin/post-types/product.php:877 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:85 -#: admin/post-types/writepanels/writepanel-product_data.php:286 -msgid "Length" -msgstr "Lungime" - -# @ woocommerce -#: admin/post-types/product.php:602 admin/post-types/product.php:878 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:86 -#: admin/post-types/writepanels/writepanel-product_data.php:287 -#: admin/woocommerce-admin-settings.php:795 -msgid "Width" -msgstr "Lățime" - -# @ woocommerce -#: admin/post-types/product.php:603 admin/post-types/product.php:879 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:87 -#: admin/post-types/writepanels/writepanel-product_data.php:288 -#: admin/woocommerce-admin-settings.php:797 -msgid "Height" -msgstr "Înălțime" - -# @ woocommerce -#: admin/post-types/product.php:613 admin/post-types/product.php:885 -msgid "Visibility" -msgstr "Vizibilittate" - -# @ woocommerce -#: admin/post-types/product.php:618 admin/post-types/product.php:891 -msgid "Catalog & search" -msgstr "Catalog & Căutare" - -# @ woocommerce -#: admin/post-types/product.php:619 admin/post-types/product.php:892 -#: admin/post-types/writepanels/writepanel-product_data.php:1029 -#: admin/woocommerce-admin-content.php:46 -#: admin/woocommerce-admin-settings.php:181 -msgid "Catalog" -msgstr "Catalog" - -# @ woocommerce -# @ default -#: admin/post-types/product.php:620 admin/post-types/product.php:893 -#: admin/post-types/writepanels/writepanel-product_data.php:1030 -msgid "Search" -msgstr "Caută" - -# @ woocommerce -#: admin/post-types/product.php:621 admin/post-types/product.php:894 -#: admin/post-types/writepanels/writepanel-product_data.php:1031 -msgid "Hidden" -msgstr "Ascuns" - -# @ woocommerce -#: admin/post-types/product.php:636 admin/post-types/product.php:922 -msgid "In stock?" -msgstr "În stoc?" - -# @ woocommerce -#: admin/post-types/product.php:657 admin/post-types/product.php:940 -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Manage stock?" -msgstr "Vrei să administrezi Stocurile?" - -# @ woocommerce -#: admin/post-types/product.php:661 admin/post-types/product.php:959 -#: admin/post-types/product.php:975 -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "Stock Qty" -msgstr "Cantitate Stoc" - -# @ woocommerce -#: admin/post-types/product.php:792 admin/post-types/product.php:816 -#: admin/post-types/product.php:842 admin/post-types/product.php:866 -#: admin/post-types/product.php:890 admin/post-types/product.php:909 -#: admin/post-types/product.php:927 admin/post-types/product.php:945 -#: admin/post-types/product.php:964 -msgid "— No Change —" -msgstr "— Nici o modificare —" - -# @ woocommerce -#: admin/post-types/product.php:793 admin/post-types/product.php:817 -#: admin/post-types/product.php:843 admin/post-types/product.php:867 -#: admin/post-types/product.php:965 -msgid "Change to:" -msgstr "Schimbă în:" - -#: admin/post-types/product.php:794 admin/post-types/product.php:818 -msgid "Increase by (fixed amount or %):" -msgstr "Crește cu (sumă fixă sau valoare procentuală %):" - -#: admin/post-types/product.php:795 admin/post-types/product.php:819 -msgid "Decrease by (fixed amount or %):" -msgstr "Scade cu (sumă fixă sau valoare procentuală %):" - -# @ woocommerce -#: admin/post-types/product.php:805 admin/post-types/product.php:830 -msgid "Enter price" -msgstr "Introdu Preț" - -#: admin/post-types/product.php:820 -msgid "Decrease regular price by (fixed amount or %):" -msgstr "Scade prețul normal cu (sumă fixă sau valoare procentuală %):" - -# @ woocommerce -#: admin/post-types/product.php:910 admin/post-types/product.php:946 -#: admin/post-types/shop_order.php:190 admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:260 -msgid "Yes" -msgstr "Da" - -# @ woocommerce -#: admin/post-types/product.php:911 admin/post-types/product.php:947 -#: admin/post-types/shop_order.php:192 admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:260 -msgid "No" -msgstr "Nu" - -# @ woocommerce -#: admin/post-types/product.php:1175 -msgid "Sort Products" -msgstr "Sortează Produse" - -# @ woocommerce -#: admin/post-types/product.php:1214 -msgid "Insert into product" -msgstr "Inserați în produs" - -# @ woocommerce -#: admin/post-types/product.php:1215 -msgid "Uploaded to this product" -msgstr "Încărcată la acest produs" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:25 -msgid "Code" -msgstr "Cod" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:26 -msgid "Coupon type" -msgstr "Tip cupon" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:27 -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Coupon amount" -msgstr "Sumă cupon" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:28 -msgid "Description" -msgstr "Descriere" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:29 -msgid "Product IDs" -msgstr "ID Produs" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:30 -msgid "Usage / Limit" -msgstr "Limită de utilizare" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:31 -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "Expiry date" -msgstr "Data expirării" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:56 -msgid "Edit coupon" -msgstr "Modifică Cupon" - -#: admin/post-types/shop_coupon.php:114 -msgid "%s / %s" -msgstr "%s / %s" - -#: admin/post-types/shop_coupon.php:116 -msgid "%s / ∞" -msgstr "%s / ∞" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:149 admin/post-types/shop_order.php:282 -msgid "Show all statuses" -msgstr "Afișează toate statusurile" - -# @ woocommerce -#: admin/post-types/shop_order.php:43 -#: admin/settings/settings-payment-gateways.php:29 -#: admin/settings/settings-shipping-methods.php:31 -msgid "Status" -msgstr "Status" - -# @ woocommerce -#: admin/post-types/shop_order.php:44 -msgid "Order" -msgstr "Comandă" - -# @ woocommerce -#: admin/post-types/shop_order.php:45 -msgid "Billing" -msgstr "Facturare" - -# @ woocommerce -#: admin/post-types/shop_order.php:46 -#: admin/post-types/writepanels/writepanel-order_data.php:536 -#: admin/post-types/writepanels/writepanel-product_data.php:81 -#: admin/settings/settings-tax-rates.php:52 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-content.php:49 -#: admin/woocommerce-admin-settings.php:185 -msgid "Shipping" -msgstr "Livrare" - -# @ woocommerce -#: admin/post-types/shop_order.php:47 -msgid "Order Total" -msgstr "Total Comandă" - -# @ woocommerce -#: admin/post-types/shop_order.php:48 -#: admin/post-types/writepanels/writepanels-init.php:71 -msgid "Order Notes" -msgstr "Mențiuni Comandă" - -# @ woocommerce -#: admin/post-types/shop_order.php:49 -msgid "Customer Notes" -msgstr "Mențiuni Client" - -# @ woocommerce -#: admin/post-types/shop_order.php:51 -#: admin/post-types/writepanels/writepanel-order_data.php:386 -#: admin/post-types/writepanels/writepanel-order_data.php:433 -msgid "Actions" -msgstr "Acțiuni" - -# @ woocommerce -#: admin/post-types/shop_order.php:95 -#: admin/post-types/writepanels/writepanel-order_data.php:93 -msgid "Guest" -msgstr "Musafir" - -# @ woocommerce -#: admin/post-types/shop_order.php:98 -msgid "Order %s" -msgstr "Comanda %s" - -# @ woocommerce -#: admin/post-types/shop_order.php:98 -msgid "made by" -msgstr "creeat de" - -# @ woocommerce -#: admin/post-types/shop_order.php:101 -msgid "Email:" -msgstr "Email" - -# @ woocommerce -#: admin/post-types/shop_order.php:104 -msgid "Tel:" -msgstr "Tel:" - -# @ woocommerce -#: admin/post-types/shop_order.php:114 admin/post-types/shop_order.php:123 -msgid "Via" -msgstr "prin" - -# @ woocommerce -#: admin/post-types/shop_order.php:131 -msgid "Unpublished" -msgstr "Nepublicat" - -# @ woocommerce -#: admin/post-types/shop_order.php:133 -msgid "Y/m/d g:i:s A" -msgstr "Y/m/d g:i:s A" - -# @ woocommerce -#: admin/post-types/shop_order.php:139 -msgid "%s ago" -msgstr "%s în urmă" - -# @ woocommerce -#: admin/post-types/shop_order.php:141 -msgid "Y/m/d" -msgstr "Y/m/d" - -# @ woocommerce -#: admin/post-types/shop_order.php:158 -#: admin/woocommerce-admin-dashboard.php:176 -msgid "Processing" -msgstr "În curs de procesare" - -# @ woocommerce -#: admin/post-types/shop_order.php:165 -msgid "Complete" -msgstr "Complet" - -# @ woocommerce -#: admin/post-types/shop_order.php:301 admin/post-types/shop_order.php:326 -msgid "Show all customers" -msgstr "Afișează toți clienții" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:6 -msgid "Revoke Access" -msgstr "Revocă Accesul" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:7 -#: admin/post-types/writepanels/variation-admin-html.php:7 -#: admin/post-types/writepanels/writepanel-product_data.php:365 -#: admin/post-types/writepanels/writepanel-product_data.php:444 -#: admin/woocommerce-admin-init.php:452 -msgid "Click to toggle" -msgstr "Click pentru a comuta" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -msgid "File %d: %s" -msgstr "Fișier %d: %s" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:9 -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "Descărcat %s dată" -msgstr[1] "Descărcat de %s ori" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:16 -msgid "Downloads Remaining" -msgstr "Descărcări Rămase" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:19 -#: admin/post-types/writepanels/variation-admin-html.php:143 -#: admin/post-types/writepanels/variation-admin-html.php:151 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Unlimited" -msgstr "Nelimitat" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:22 -msgid "Access Expires" -msgstr "Accesul expiră" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:23 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Never" -msgstr "Niciodată" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:10 -msgid "Fee Name" -msgstr "Nume Taxă" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:17 -#: admin/post-types/writepanels/order-item-html.php:84 -msgid "Tax class" -msgstr "Clasă Taxă" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:19 -#: admin/post-types/writepanels/order-tax-html.php:8 -#: admin/post-types/writepanels/writepanel-order_data.php:558 -#: admin/post-types/writepanels/writepanel-order_data.php:663 -#: admin/woocommerce-admin-reports.php:1642 -#: admin/woocommerce-admin-reports.php:2655 -#: admin/woocommerce-admin-reports.php:2664 -#: admin/woocommerce-admin-users.php:90 admin/woocommerce-admin-users.php:112 -msgid "N/A" -msgstr "N / A" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:20 -#: admin/post-types/writepanels/writepanel-product_data.php:179 -msgid "Taxable" -msgstr "Taxabil" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:25 -#: admin/post-types/writepanels/order-item-html.php:91 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:54 -#: admin/post-types/writepanels/writepanel-product_data.php:186 -#: admin/settings/settings-init.php:982 -#: admin/settings/settings-tax-rates.php:29 -#: admin/woocommerce-admin-settings.php:226 -msgid "Standard" -msgstr "Standard" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:43 -#: admin/post-types/writepanels/order-item-html.php:110 -#: admin/woocommerce-admin-reports.php:1546 -#: admin/woocommerce-admin-reports.php:1599 -#: admin/woocommerce-admin-reports.php:2370 -#: admin/woocommerce-admin-reports.php:2539 -#: admin/woocommerce-admin-reports.php:2617 -msgid "Total" -msgstr "Total" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:9 -msgid "Product ID:" -msgstr "ID Produs:" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:12 -msgid "Variation ID:" -msgstr "ID Variație:" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:15 -msgid "Product SKU:" -msgstr "Cod Produs:" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:33 -msgid "Add meta" -msgstr "Adaugă meta" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:112 -msgid "Subtotal" -msgstr "Subtotal" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:6 -msgid "Tax Rate:" -msgstr "Cotă de impozitare:" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:16 -#: admin/post-types/writepanels/writepanel-order_data.php:627 -msgid "Sales Tax:" -msgstr "Taxe Vânzări:" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:20 -#: admin/post-types/writepanels/writepanel-order_data.php:635 -msgid "Shipping Tax:" -msgstr "Taxă Expediere:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:6 -#: admin/post-types/writepanels/writepanel-product_data.php:364 -#: admin/post-types/writepanels/writepanel-product_data.php:443 -#: admin/woocommerce-admin-init.php:451 -msgid "Remove" -msgstr "Eliminină" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:20 -msgid "Any" -msgstr "Oricare" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:46 -msgid "" -"Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "" -"Introdu un Cod de Produs pentru această variantă sau lasă câmpul gol pentru " -"a utiliza Codul de Produs al părintelui." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:57 -msgid "Stock Qty:" -msgstr "Cantitate în stoc:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:57 -#, fuzzy -msgid "" -"Enter a quantity to enable stock management at variation level, or leave " -"blank to use the parent product's options." -msgstr "" -"Introdu o cantitate pentru a activa Administrarea Stocurilor pentru această " -"variantă sau lasă câmpul gol pentru a utiliza opțiunile variantei de produs." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:66 -msgid "Regular Price:" -msgstr "Preț Normal:" - -#: admin/post-types/writepanels/variation-admin-html.php:67 -msgid "Variation price (required)" -msgstr "Preț Variație (Obligatoriu)" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:70 -msgid "Sale Price:" -msgstr "Prețul Redus:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:70 -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Schedule" -msgstr "Program" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:70 -msgid "Cancel schedule" -msgstr "Anulează Programarea" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:77 -msgid "Sale start date:" -msgstr "Data de început a reducerii:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:78 -#: admin/post-types/writepanels/writepanel-product_data.php:136 -msgctxt "placeholder" -msgid "From…" -msgstr "Din data de…" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:81 -msgid "Sale end date:" -msgstr "Data de încheiere a reducerii:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:82 -#: admin/post-types/writepanels/writepanel-product_data.php:137 -msgctxt "placeholder" -msgid "To…" -msgstr "La data de…" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:90 -msgid "" -"Enter a weight for this variation or leave blank to use the parent product " -"weight." -msgstr "" -"Introdu greutatea variației sau lasă câmpul gol pentru a folosi greutatea " -"introdusă pe pagina produslui pîrinte." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:98 -msgid "Dimensions (L×W×H)" -msgstr "Dimensiuni (L × l × h)" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:109 -msgid "Shipping class:" -msgstr "Clasă de expediere:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:113 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:53 -msgid "Same as parent" -msgstr "La fel ca părintele" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:124 -msgid "Tax class:" -msgstr "Clasă taxe:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:135 -msgid "File paths:" -msgstr "Caii fișier:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:135 -msgid "" -"Enter one or more File Paths, one per line, to make this variation a " -"downloadable product, or leave blank." -msgstr "" -"Introdu una sau mai multe căii către fișier (câte una per linie) pentru a " -"transforma această variaţie într-un produs descărcabil, sau lăsaţi gol." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:136 -#: admin/post-types/writepanels/writepanel-product_data.php:153 -msgid "File paths/URLs, one per line" -msgstr "Cale către fișier (câte una pe linie):" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:137 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Choose a file" -msgstr "Alege un fișier" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:137 -msgid "Upload" -msgstr "Încarcă" - -#: admin/post-types/writepanels/variation-admin-html.php:137 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Insert file URL" -msgstr "Inserează Adresa URL a fișierului" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:142 -msgid "Download Limit:" -msgstr "Limită Descărcări:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:142 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Leave blank for unlimited re-downloads." -msgstr "Lasă câmpul gol pentru descărcări nelimitate." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:150 -msgid "Download Expiry:" -msgstr "Linkul pentru descărcarea produsului expiră:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:150 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "" -"Enter the number of days before a download link expires, or leave blank." -msgstr "" -"Introdu numărul de zile pentru care link-ul de descărcare este activ, sau " -"lasă câmpul gol." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:164 -msgid "Enabled" -msgstr "Activ" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:166 -msgid "" -"Enable this option if access is given to a downloadable file upon purchase " -"of a product" -msgstr "" -"Activează această opțiune pentru a oferi accesul la un produs descărcabil " -"după achiziționarea lui." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:168 -msgid "" -"Enable this option if a product is not shipped or there is no shipping cost" -msgstr "" -"Activează această opțiune dacă un produs nu este expediat sau nu are asociat " -"un cost de livrare" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Coupon description" -msgstr "Descriere Cupon" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Optionally enter a description for this coupon for your reference." -msgstr "" -"Opțional, introduceți o descriere pentru acest cupon - pentru referința dvs." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:42 -msgid "Discount type" -msgstr "Tip Reducere" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Enter an amount or percentage e.g. 2.99 or 15%" -msgstr "Introdu o sumă sau un procent, de ex: 2,99 sau 15%" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "Enable free shipping" -msgstr "Activează Livrare Gratuită" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "" -"Check this box if the coupon grants free shipping. The free " -"shipping method must be enabled with the \"must use coupon\" setting " -"checked." -msgstr "" -"Bifează căsuța dacă cuponul oferă Livrare Gratuită (vezi Livrare Gratuită + trebuie să fie activată cu opţiunea \"Pentru " -"Livrare Gratuită este necesar un cupon de livrare gratuită\" bifată)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "Individual use" -msgstr "Utilizare individuală" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "" -"Check this box if the coupon cannot be used in conjunction with other " -"coupons." -msgstr "" -"Bifează această căsuță dacă se poate utiliza doar un singur tip de cupon." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "Apply before tax" -msgstr "Aplică înainte de taxe" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "" -"Check this box if the coupon should be applied before calculating cart tax." -msgstr "" -"Bifează această căsuță dacă Cuponul de Promoție este aplicat înainte de " -"calcularea taxelor aferente." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "Exclude sale items" -msgstr "Exclude item-urile reduse" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "" -"Check this box if the coupon should not apply to items on sale. Per-item " -"coupons will only work if the item is not on sale. Per-cart coupons will " -"only work if there are no sale items in the cart." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "Minimum amount" -msgstr "Sumă Minimă" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "No minimum" -msgstr "Fără sumă minimă" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "" -"This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "" -"Acest câmp permite introducerea unei sume minime pentru a activa utilizarea " -"cuponului." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:74 -#: admin/woocommerce-admin-taxonomies.php:28 -#: admin/woocommerce-admin-taxonomies.php:122 -msgid "Products" -msgstr "Produse" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:75 -#: admin/post-types/writepanels/writepanel-order_data.php:400 -#: admin/post-types/writepanels/writepanel-product_data.php:504 -#: admin/post-types/writepanels/writepanel-product_data.php:521 -#: admin/woocommerce-admin-reports.php:1229 -msgid "Search for a product…" -msgstr "Caută un produs…" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:89 -msgid "" -"Products which need to be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are discounted." -msgstr "" -"Produse care trebuie să fie în Coș pentru a utiliza acest cupon sau, pentru " -"\"Produse cu Reducere\", ce produse sunt reduse." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:94 -msgid "Exclude products" -msgstr "Exclude Produsele" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:95 -msgid "Search for a product…" -msgstr "Caută un produs..." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:109 -msgid "" -"Products which must not be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are not discounted." -msgstr "" -"Produse care nu ar trebui să se afle în Coș pentru a utiliza acest cupon sau " -"pentru \"Reduceri Produs\", dintre produsele care nu beneficiază de " -"reduceri. (?)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:116 -msgid "Product categories" -msgstr "Categorii de Produse" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:117 -msgid "Any category" -msgstr "Orice categorie" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:125 -msgid "" -"A product must be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will be discounted." -msgstr "" -"Un produs trebuie să aparțină acestei categorii pentru a putea folosi " -"Cuponul sau pentru \"Reduceri Produs\", produsele care aparțin acestor " -"categorii vor beneficia de reducere." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:130 -msgid "Exclude categories" -msgstr "Exclude Categoriile" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:131 -msgid "No categories" -msgstr "Nici o categorie" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:139 -msgid "" -"Product must not be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will not be discounted." -msgstr "" -"Produsul nu trebuie să aparțină acestei categorii pentru a păstra " -"validitatea cuponului sau pentru \"Reduceri Produs\", produsele din aceste " -"categorii nu vor fi reduse. (?)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "Customer emails" -msgstr "Emailuri Clienți" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "Any customer" -msgstr "Orice client" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "" -"Comma separate email addresses to restrict this coupon to specific billing " -"and user emails." -msgstr "" -"Pentru a restricționa utilizarea cuponului doar de către clienții " -"specificați, adaugă adresele lor de email separate prin virgulă una de " -"cealaltă." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "Usage limit" -msgstr "Limită utilizare" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "Utilizări nelimitate" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "How many times this coupon can be used before it is void." -msgstr "De câte ori poate fi utilizat acest cupon înainte de epuizare." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgctxt "placeholder" -msgid "Never expire" -msgstr "Nu expiră niciodată" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "The date this coupon will expire, YYYY-MM-DD." -msgstr "" -"Data la care acest cupon va expira (ex.: AAAA-LL-ZZ (2015-12-30))" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:195 -msgid "" -"Coupon code already exists - customers will use the latest coupon with this " -"code." -msgstr "" -"Acest cod de cupon deja există - prin utilizarea acestui cod, clienţii vor " -"utiliza ultimul cupon (cel mai recent) " - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:59 -msgid "Order Details" -msgstr "Detalii Comandă" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:62 -msgid "Order number" -msgstr "Număr Comandă" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:67 -msgid "Customer IP:" -msgstr " IP Client:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:74 -msgid "General Details" -msgstr "Detalii Generale" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:76 -msgid "Order status:" -msgstr "Status Comandă:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:86 -msgid "Order Date:" -msgstr "Data Comenzii:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:87 -msgid "h" -msgstr "h" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#: admin/settings/settings-init.php:577 -msgid "m" -msgstr "m" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:91 -msgid "Customer:" -msgstr "Client:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:131 -msgid "Customer Note:" -msgstr "Mențiune Client:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:132 -msgid "Customer's notes about the order" -msgstr "Mențiunea clientului despre comandă:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:140 -msgid "Billing Details" -msgstr "Detalii Facturare" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:144 -#: admin/post-types/writepanels/writepanel-order_data.php:234 -msgid "First Name" -msgstr "Prenume" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:148 -#: admin/post-types/writepanels/writepanel-order_data.php:238 -msgid "Last Name" -msgstr "Nume" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:152 -#: admin/post-types/writepanels/writepanel-order_data.php:242 -#: admin/woocommerce-admin-users.php:155 admin/woocommerce-admin-users.php:204 -msgid "Company" -msgstr "Companie" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:156 -#: admin/post-types/writepanels/writepanel-order_data.php:246 -#: admin/woocommerce-admin-users.php:159 admin/woocommerce-admin-users.php:208 -msgid "Address 1" -msgstr "Adresă 1" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:160 -#: admin/post-types/writepanels/writepanel-order_data.php:250 -#: admin/woocommerce-admin-users.php:163 admin/woocommerce-admin-users.php:212 -msgid "Address 2" -msgstr "Adresă 2" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:164 -#: admin/post-types/writepanels/writepanel-order_data.php:254 -#: admin/settings/settings-tax-rates.php:42 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-users.php:167 admin/woocommerce-admin-users.php:216 -msgid "City" -msgstr "Oraș" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:168 -#: admin/post-types/writepanels/writepanel-order_data.php:258 -#: admin/woocommerce-admin-users.php:171 admin/woocommerce-admin-users.php:220 -msgid "Postcode" -msgstr "Cod poștal" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:172 -#: admin/post-types/writepanels/writepanel-order_data.php:262 -#: admin/woocommerce-admin-users.php:179 admin/woocommerce-admin-users.php:228 -msgid "Country" -msgstr "Țară" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:175 -#: admin/post-types/writepanels/writepanel-order_data.php:265 -msgid "Select a country…" -msgstr "Selectează țara…" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:178 -#: admin/post-types/writepanels/writepanel-order_data.php:268 -#: admin/woocommerce-admin-users.php:175 admin/woocommerce-admin-users.php:224 -msgid "State/County" -msgstr "Stat / Județ" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:182 -#: admin/woocommerce-admin-users.php:187 -msgid "Email" -msgstr "Email" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:185 -msgid "Phone" -msgstr "Telefon" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:193 -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#: admin/post-types/writepanels/writepanel-order_data.php:277 -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "Address" -msgstr "Adresă" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:195 -msgid "No billing address set." -msgstr "Adresa de Facturare nu este setată." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:208 -msgid "Load billing address" -msgstr "Încarcă Adresa de Facturare a clientului" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:230 -msgid "Shipping Details" -msgstr "Detalii Livrare" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "No shipping address set." -msgstr "Adresa de Livrare a clientului nu este setată." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Load shipping address" -msgstr "Încarcă Adresa de Livrare a clientului" - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Copy from billing" -msgstr "Copiază de la Facturare" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:339 -msgid "Item" -msgstr "Articol" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#: admin/post-types/writepanels/writepanel-product_data.php:191 -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Class" -msgstr "Clasă Taxă" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:344 -msgid "Tax class for the line item" -msgstr "Clasă taxe pentru linia de articol" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:347 -msgid "Qty" -msgstr "Cantitate" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:349 -msgid "Cost" -msgstr "Cost" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:349 -msgid "Line subtotals are before pre-tax discounts, totals are after." -msgstr "" -"Subtotaluri pentru linie sunt înainte de reducerile pre-impozitare, " -"totalurile sunt după." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:352 -#: admin/settings/settings-tax-rates.php:387 -#: admin/settings/settings-tax-rates.php:466 -#: admin/woocommerce-admin-content.php:48 -#: admin/woocommerce-admin-settings.php:184 -msgid "Tax" -msgstr "Taxe" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:388 -msgid "Delete Lines" -msgstr "Șterge Liniile" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:390 -msgid "Stock Actions" -msgstr "Acțiuni Stoc" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:391 -msgid "Reduce Line Stock" -msgstr "Redu Stocul per Linie" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:392 -msgid "Increase Line Stock" -msgstr "Crește Stocul" - -#: admin/post-types/writepanels/writepanel-order_data.php:396 -#: admin/post-types/writepanels/writepanel-order_data.php:456 -msgid "Apply" -msgstr "Aplică" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:402 -msgid "Add item(s)" -msgstr "Adaugă produs(e)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:403 -msgid "Add fee" -msgstr "Adăugați taxă" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:434 -msgid "Resend order emails" -msgstr "Retrimite emailurile de comandă" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:465 -msgid "Move to Trash" -msgstr "Mută la Gunoi" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save Order" -msgstr "Salvează Comanda" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save/update the order" -msgstr "Salvează / Modifică Comanda" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:495 -msgid "Discounts" -msgstr "Reduceri" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:499 -msgid "Cart Discount:" -msgstr "Reducere Coș" - -#: admin/post-types/writepanels/writepanel-order_data.php:499 -msgid "Discounts before tax - calculated by comparing subtotals to totals." -msgstr "" -"Discounturi înainte de aplicarea cotelor de taxare - calculate prin " -"compararea valoarea subtotalurilor cu valoarea totală." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:507 -msgid "Order Discount:" -msgstr "Reducere Comandă" - -#: admin/post-types/writepanels/writepanel-order_data.php:507 -msgid "Discounts after tax - user defined." -msgstr "Discounturi după aplicarea taxelor - definit de utilizator." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:540 -msgid "Label:" -msgstr "Nume Methodă Livrare:" - -#: admin/post-types/writepanels/writepanel-order_data.php:541 -msgid "The shipping title the customer sees" -msgstr "Metoda de livrare afișată clientului" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:548 -msgid "Cost:" -msgstr "Cost:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:549 -msgid "(ex. tax)" -msgstr "(exclude taxe)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:556 -msgid "Method:" -msgstr "Metodă Livrare:" - -#: admin/post-types/writepanels/writepanel-order_data.php:578 -#: admin/post-types/writepanels/writepanel-order_data.php:580 -#: admin/post-types/writepanels/writepanel-order_data.php:679 -#: admin/post-types/writepanels/writepanel-order_data.php:681 -msgid "Other" -msgstr "Altele" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:594 -msgid "Tax Rows" -msgstr "Rânduri Taxe" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:619 -msgid "+ Add tax row" -msgstr "+ Adaugă rând de taxe" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:619 -msgid "" -"These rows contain taxes for this order. This allows you to display multiple " -"or compound taxes rather than a single total." -msgstr "" -"Aceste rânduri conțin taxele pentru această comandă. Această metodă îți " -"permite să afișezi taxe multiple sau compuse în locul unui total de taxe." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:623 -msgid "Tax Totals" -msgstr "Totaluri Taxe" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:627 -msgid "Total tax for line items + fees." -msgstr "Total taxe taxe pentru linia de articol + comision." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:649 -#: admin/post-types/writepanels/writepanels-init.php:70 -msgid "Order Totals" -msgstr "Total Comenzi" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:653 -msgid "Order Total:" -msgstr "Total Comandă:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:661 -msgid "Payment Method:" -msgstr "Metodă de Plată:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:692 -msgid "Calc taxes" -msgstr "Calcuează Taxe →" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:694 -msgid "Calc totals" -msgstr "Calculează Totaluri →" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:57 -msgid "Choose a downloadable product…" -msgstr "Selectează un produs descărcabil…" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:87 -msgid "Grant Access" -msgstr "Acordă Acces" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:125 -#, fuzzy -msgid "" -"Could not grant access - the user may already have permission for this file " -"or billing email is not set. Ensure the billing email is set, and the order " -"has been saved." -msgstr "" -"Accesul la fișier nu poate fi acordat - Utilizator ar putea avea deja " -"permisiunea de a accesa acest fișier." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:148 -msgid "Are you sure you want to revoke access to this download?" -msgstr "" -"Ești sigur că vrei să elimini accesul clienților la acest produs descărcabil?" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -msgid "added %s ago" -msgstr "adăugat acum %s" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -msgid "Delete note" -msgstr "Șterge mențiune" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:50 -msgid "There are no notes for this order yet." -msgstr "Încă nu există comentarii adiționale pentru această comandă." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "Add note" -msgstr "Adaugă mențiune" - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "" -"Add a note for your reference, or add a customer note (the user will be " -"notified)." -msgstr "" -"Adaugă o notiță pentru referința ta, sau adaugă o notă pentru client " -"(utilizatorul va fi notificat)." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:62 -msgid "Customer note" -msgstr "Notiță Client" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:63 -msgid "Private note" -msgstr "Notiță Privată" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:65 -#: admin/post-types/writepanels/writepanel-product_data.php:482 -msgid "Add" -msgstr "Adaugă" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations for variable products are defined here." -msgstr "Variațiile produselor variabile sunt definite aici." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations" -msgstr "Variații" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:65 -msgid "" -"Before adding variations, add and save some attributes on the " -"Attributes tab." -msgstr "" -"Înainte de a adăuga variantele produselor, adaugă și salvează câteva " -"atribute din tab-ul Atribute." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:67 -msgid "Learn more" -msgstr "Află mai multe" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Close all" -msgstr "Închidele pe toate" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Expand all" -msgstr "Deschidele pe " - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:75 -msgid "Bulk edit:" -msgstr "Editare la grămada:" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:77 -msgid "Toggle "Enabled"" -msgstr "Comutare "Activat"" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:78 -msgid "Toggle "Downloadable"" -msgstr "Comutare "Descărcabil"" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:79 -msgid "Toggle "Virtual"" -msgstr "Comutare "Virtual"" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:80 -msgid "Delete all variations" -msgstr "Șterge toate variațiile" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:81 -msgid "Prices" -msgstr "Prețuri" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:82 -msgid "Sale prices" -msgstr "Prețuri reduse de vânzare" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:88 -msgid "File Path" -msgstr "Cale Fișier" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:89 -msgid "Download limit" -msgstr "Limită Descărcări" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:90 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Download Expiry" -msgstr "Linkul pentru descărcarea produsului expiră" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:93 -msgid "Go" -msgstr "Execută" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:193 -msgid "Add Variation" -msgstr "Adaugă Varianție Produs" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:195 -msgid "Link all variations" -msgstr "Link către toate variantele" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:197 -msgid "Default selections:" -msgstr "Selecții implicite:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:210 -msgid "No default" -msgstr "Fără setare inițială" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:293 -msgid "" -"Are you sure you want to link all variations? This will create a new " -"variation for each and every possible combination of variation attributes " -"(max 50 per run)." -msgstr "" -"Ești sigur că vrei să legi toate variantele? Acest lucru va crea o nouă " -"variaţie pentru fiecare combinaţie posibilă a atributelor de variaţie (maxim " -"50 pe tură)." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:310 -msgid "variation added" -msgstr "variație adăugată" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:312 -msgid "variations added" -msgstr "variații adăugate" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:314 -msgid "No variations added" -msgstr "Nu a fost adăugată nici o variație" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:337 -msgid "Are you sure you want to remove this variation?" -msgstr "Ești sigur că vrei să ștergi această variație?" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:393 -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "" -"Ești sigur că vrei să ștergi toate variantele? Acest lucru nu poate fi " -"anulat." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:396 -msgid "Last warning, are you sure?" -msgstr "Ultimul avertisment... Ești 100% sigur?" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:433 -msgid "Enter a value" -msgstr "Adaugă o valoare" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:511 -#: admin/woocommerce-admin-taxonomies.php:62 -#: admin/woocommerce-admin-taxonomies.php:154 -msgid "Choose an image" -msgstr "Alege o imagine" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:513 -msgid "Set variation image" -msgstr "Setează imaginea variației" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:557 -msgid "Variable product" -msgstr "Produs Variabil" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:623 -msgid "Variation #%s of %s" -msgstr "Variația nr. %s din %s" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:43 -msgid "Product Type" -msgstr "Tip Produs" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:53 -msgid "Virtual products are intangible and aren't shipped." -msgstr "" -"Produsele virtuale nu există fizic și nu pot fi livrate (prin poștă / curier)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:59 -msgid "Downloadable products give access to a file upon purchase." -msgstr "" -"Produsele descărcabile oferă acces la un fișier după achiziționarea lor." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:77 -#: admin/woocommerce-admin-content.php:44 -#: admin/woocommerce-admin-settings.php:180 -msgid "General" -msgstr "General" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:79 -#: admin/woocommerce-admin-content.php:47 -#: admin/woocommerce-admin-settings.php:183 -msgid "Inventory" -msgstr "Inventar" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:83 -msgid "Linked Products" -msgstr "Produse Legate" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:85 -#: admin/woocommerce-admin-attributes.php:298 -#: admin/woocommerce-admin-init.php:66 -msgid "Attributes" -msgstr "Atribute" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:87 -msgid "Advanced" -msgstr "Avansat" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "Stock Keeping Unit" -msgstr "Cod Produs" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "" -"SKU refers to a Stock-keeping unit, a unique identifier for each distinct " -"product and service that can be purchased." -msgstr "" -"SKU se referă la Unitatea de Stoc, un cod unic pentru fiecare produs sau " -"serviciu ce poate fi achiziționat prin intermediul magazinului." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Product URL" -msgstr "URL (Link) Produs" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Enter the external URL to the product." -msgstr "Adaugă URL (link-ul) extern către produs" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "Button text" -msgstr "Text pentru buton" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgctxt "placeholder" -msgid "Buy product" -msgstr "Cumpără produs" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "This text will be shown on the button linking to the external product." -msgstr "" -"Acest text va fi afișat pe butonul care face legătura către produsul extern." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:119 -msgid "Regular Price" -msgstr "Preț Normal" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Sale Price" -msgstr "Preț Redus" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:135 -msgid "Sale Price Dates" -msgstr "Perioada" - -# @ woocommerce -# @ default -#: admin/post-types/writepanels/writepanel-product_data.php:138 -#: admin/post-types/writepanels/writepanel-product_data.php:1064 -msgid "Cancel" -msgstr "Anulează" - -#: admin/post-types/writepanels/writepanel-product_data.php:152 -msgid "File paths (one per line)" -msgstr "Căi de fișier (câte unul pe fiecare rând)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Download Limit" -msgstr "Limită Descărcări" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:178 -msgid "Tax Status" -msgstr "Status Taxe" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:180 -msgid "Shipping only" -msgstr "Doar Transport" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:181 -msgid "None" -msgstr "Nici unul" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Enable stock management at product level" -msgstr "Activează administrarea stocurilor la nivel de produse" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "" -"Stock quantity. If this is a variable product this value will be used to " -"control stock for all variations, unless you define stock at variation level." -msgstr "" -"Cantitate Stoc. Dacă acest produs are variații, valoarea introdusă aici va " -"controla numărul disponibil de produse la nivel global sau poți defini " -"numărul de produse disponibil pentru fiecare variație de produs." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:230 -msgid "Stock status" -msgstr "Status stoc" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:233 -msgid "" -"Controls whether or not the product is listed as \"in stock\" or \"out of " -"stock\" on the frontend." -msgstr "" -"Controlează dacă produsul este listat ca și \"În Stoc\" sau \"Stoc Epuizat\" " -"pe pagina de produs." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:240 -msgid "Allow Backorders?" -msgstr "Permiteți Comenzi prin liste de așteptare?" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:241 -msgid "Do not allow" -msgstr "Nu permiteți" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:242 -msgid "Allow, but notify customer" -msgstr "Permite, dar anunță clientul" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:243 -msgid "Allow" -msgstr "Permite" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:244 -msgid "" -"If managing stock, this controls whether or not backorders are allowed for " -"this product and variations. If enabled, stock quantity can go below 0." -msgstr "" -"Dacă se Administrează Stocurile, această opțiune permite creearea de comenzi " -"în așteptare pentru acest produs și variațiile sale, Stocul pentru acest " -"produs și variațiile sale poate coborî sub 0! " - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "Sold Individually" -msgstr "Vânzare Individuală" - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "" -"Enable this to only allow one of this item to be bought in a single order" -msgstr "" -"Această opțiune permite doar achiziționarea unui singur produs per comandă. " -"Această opțiune este individuală pentru fiecare produs în parte." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:273 -msgid "Weight in decimal form" -msgstr "Greutate, ex.: 10,2 sau 10.2" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:284 -msgid "Dimensions" -msgstr "Dimensiuni" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:290 -msgid "LxWxH in decimal form" -msgstr "Dimensiuni: Lungime, Lățime, Înălțime (Adâncime)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:311 -msgid "No shipping class" -msgstr "Nu există nici o Clasă de Expediere" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "Shipping class" -msgstr "Clase de Expediere" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "" -"Shipping classes are used by certain shipping methods to group similar " -"products." -msgstr "" -"Clasele de expediere sunt utilizate de anumite Metode de Expediere prin " -"gruparea produselor similare." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:380 -#: admin/post-types/writepanels/writepanel-product_data.php:457 -#: admin/woocommerce-admin-init.php:453 -msgid "Value(s)" -msgstr "Valoare(i)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:382 -msgid "Select terms" -msgstr "Selectează termeni" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:394 -msgid "Select all" -msgstr "Selectează tot" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:394 -msgid "Select none" -msgstr "Nu selecta nimic" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:396 -msgid "Add new" -msgstr "Adaugă Nou" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:409 -msgid "Pipe separate terms" -msgstr "Separă termenii prin \"|\"" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:416 -#: admin/post-types/writepanels/writepanel-product_data.php:463 -#: admin/woocommerce-admin-init.php:455 -msgid "Visible on the product page" -msgstr "Vizibil pe Pagina Produsului" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:422 -#: admin/post-types/writepanels/writepanel-product_data.php:469 -#: admin/woocommerce-admin-init.php:456 -msgid "Used for variations" -msgstr "Utilizat pentru Variații de Produs" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:458 -#: admin/woocommerce-admin-init.php:454 -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "" -"Introduceți un text sau niște atribute separate prin caracterul (|). Ex.: " -"Alb | Verde | Albastru | Roz | ... etc." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:484 -msgid "Custom product attribute" -msgstr "Atribut personalizat de produs" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:496 -msgid "Save attributes" -msgstr "Salvează Atributele" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:503 -msgid "Up-Sells" -msgstr "Produse Recomandate" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:518 -msgid "" -"Up-sells are products which you recommend instead of the currently viewed " -"product, for example, products that are more profitable or better quality or " -"more expensive." -msgstr "" -"Produse Recomandate sunt alte produse, prezente pe pagina unui produs cu " -"titlul de recomandare - produse care pot fi o alternativă mai scumpă, mai " -"profitabilă pentru magazin, produse superioare calitativ sau produse " -"înrudite." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:520 -msgid "Cross-Sells" -msgstr "Produse Încrucișate" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:535 -msgid "" -"Cross-sells are products which you promote in the cart, based on the current " -"product." -msgstr "" -"Produsele Încrucișate sunt produse promovate în Coșul de Cumpărături, bazate " -"pe produsele aflate deja în coș - produse care completează produsul ales " -"deja (Ex.: Garanție Extinsă pentru un Produs Electronic, Cercei ce se " -"potrivesc cu Broșa aleasă, etc.)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:545 -msgid "Choose a grouped product…" -msgstr "Alege un produs grupat…" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:571 -msgid "Grouping" -msgstr "Grupare" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:571 -msgid "Set this option to make this product part of a grouped product." -msgstr "Activează pentru a face acest produs parte a unui produs grupat." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:591 -msgid "Purchase Note" -msgstr "Notiță Achiziționare" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:591 -msgid "Enter an optional note to send the customer after purchase." -msgstr "" -"Introduceți o notiță opțională ce va fi trimisă clientului după cumpărare." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:598 -msgid "Menu order" -msgstr "Ordine Meniu" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:598 -msgid "Custom ordering position." -msgstr "Aranjare personalizată." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:606 -msgid "Enable reviews" -msgstr "Activează recenzii" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:695 -msgid "Product SKU must be unique." -msgstr "Codul de Produs trebuie să fie unic." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1028 -msgid "Catalog/search" -msgstr "Catalog / Căutare" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1035 -msgid "Catalog visibility:" -msgstr "Vizibilitate în Catalog:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1051 -msgid "" -"Define the loops this product should be visible in. The product will still " -"be accessible directly." -msgstr "" -"Definește zonele de vizibilitate ale produsului. Produsul va fi accesibil și " -"direct." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1057 -msgid "Enable this option to feature this product." -msgstr "Activează pentru a evidenția produsul." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1059 -msgid "Featured Product" -msgstr "Produs Recomandat" - -# @ default -#: admin/post-types/writepanels/writepanel-product_data.php:1063 -msgid "OK" -msgstr "OK" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -msgid "Delete image" -msgstr "Șterge Imaginea" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -#: admin/woocommerce-admin-attributes.php:322 -msgid "Delete" -msgstr "Șterge" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:53 -msgid "Add product gallery images" -msgstr "Adugă Galerie de Imagini pentru Produs" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:79 -msgid "Add Images to Product Gallery" -msgstr "Adaugă Imagini la Galeria Produsului" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:81 -msgid "Add to gallery" -msgstr "Adaugă în Galerie" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:47 -msgid "Product Gallery" -msgstr "Galeria Produsului" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:55 -msgid "Product Short Description" -msgstr "Scurtă Descriere a produsului" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:64 -msgid "Reviews" -msgstr "Opinii" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:68 -msgid "Order Data" -msgstr "Date Comandă" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "Order Items" -msgstr "Articole Comandă" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "" -"Note: if you edit quantities or remove items from the order you will need to " -"manually update stock levels." -msgstr "" -"Articole din Comandă – Notă: Dacă editezi sau ștergi articole " -"din comandă va trebui să modifici manual stocurile articolelor modificate " -"sau șterse." - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "Downloadable Product Permissions" -msgstr "Permisiuni Produse Descărcabile" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "" -"Note: Permissions for order items will automatically be granted when the " -"order status changes to processing/completed." -msgstr "" -"– Notă: Permisiunile acordate articolelor comandate vor fi acordate " -"doar în momentul în care statusul comenzii va fi modificat în \"În curs de " -"procesare\" sau \"Complet\"." - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:73 -msgid "Order Actions" -msgstr "Acțiuni Comandă" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:81 -msgid "Coupon Data" -msgstr "Date Cupon" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:100 -msgid "Coupon code" -msgstr "Cod Promoțional" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:101 -msgid "Product name" -msgstr "Nume produs" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:185 -msgid "Allow reviews." -msgstr "Permite Opinii / Comentarii." - -# @ default -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "" -"Allow trackbacks and pingbacks on this " -"page." -msgstr "" -"Permiteţi notificări și link-uri către " -"această pagină." - -# @ default -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" -msgstr "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:23 -msgid "Styles" -msgstr "Stiluri" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:43 -msgid "Primary" -msgstr "Prinicipal" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:43 -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "Butoane de acțiune / Slider Preț / Interfață stratificată a navigației" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:44 -msgid "Secondary" -msgstr "Secundar" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:44 -msgid "Buttons and tabs" -msgstr "Butoane și file" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:45 -msgid "Highlight" -msgstr "Evidențiază" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:45 -msgid "Price labels and Sale Flashes" -msgstr "Etichete preț și vânzări fulger" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:46 -msgid "Content" -msgstr "Conținut" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:46 -msgid "Your themes page background - used for tab active states" -msgstr "" -"Culoarea de fundal a paginii dvs. - este utilizată pentru a afișa filele " -"active." - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:47 -msgid "Subtext" -msgstr "Subtext" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:47 -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "Utilizat pentru anumite texte - navigație liniară, text mic, etc." - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:51 -msgid "" -"To edit colours woocommerce/assets/css/woocommerce-base.less " -"and woocommerce.css need to be writable. See the Codex for more " -"information." -msgstr "" -"Pentru a putea edita culori următoarele fișiere trebuie să fie editabile:" -"woocommerce/assets/css/woocommerce-base.less și " -"woocommerce.css. Pentru mai multe informații vezi: Codex-ul" - -# @ woocommerce -#: admin/settings/settings-init.php:18 -msgid "Localisation" -msgstr "Localizare" - -# @ woocommerce -#: admin/settings/settings-init.php:19 -msgid "Use informal localisation for %s" -msgstr "Dacă există utilizaţi fişierul de localizare informală pentru %s." - -# @ woocommerce -#: admin/settings/settings-init.php:33 -msgid "General Options" -msgstr "Opțiuni Generale" - -# @ woocommerce -#: admin/settings/settings-init.php:36 -#, fuzzy -msgid "Base Location" -msgstr "Localizare" - -# @ woocommerce -#: admin/settings/settings-init.php:37 -msgid "" -"This is the base location for your business. Tax rates will be based on this " -"country." -msgstr "" -"Această este țara de bază pentru magazinul dvs. Taxele și ratele de " -"impozitare se vor baza pe această țară." - -# @ woocommerce -#: admin/settings/settings-init.php:46 -msgid "Currency" -msgstr "Monedă" - -# @ woocommerce -#: admin/settings/settings-init.php:47 -msgid "" -"This controls what currency prices are listed at in the catalog and which " -"currency gateways will take payments in." -msgstr "" -"Această opțiune controlează moneda în care sunt afișate prețurile dar și ce " -"monedă este folosită pentru plata produselor." - -# @ woocommerce -#: admin/settings/settings-init.php:58 -msgid "Allowed Countries" -msgstr "Țări permise" - -# @ woocommerce -#: admin/settings/settings-init.php:59 -msgid "These are countries that you are willing to ship to." -msgstr "Acestea sunt țările în care ești dispus să livrezi comenzi." - -# @ woocommerce -#: admin/settings/settings-init.php:67 -msgid "All Countries" -msgstr "Toate țările" - -# @ woocommerce -#: admin/settings/settings-init.php:68 admin/settings/settings-init.php:73 -msgid "Specific Countries" -msgstr "Anumite țări" - -# @ woocommerce -#: admin/settings/settings-init.php:84 -msgid "Store Notice" -msgstr "Anunț Magazin" - -# @ woocommerce -#: admin/settings/settings-init.php:85 -#, fuzzy -msgid "Enable site-wide store notice text" -msgstr "Activează opțiunea de \"Magazin Demo\" pe site." - -#: admin/settings/settings-init.php:92 -msgid "Store Notice Text" -msgstr "Text pentru Anunț Magazin" - -# @ woocommerce -#: admin/settings/settings-init.php:95 -msgid "" -"This is a demo store for testing purposes — no orders shall be " -"fulfilled." -msgstr "" -"Acesta magazin demo pentru testare — nici o comandă nu va fi onorată." - -# @ woocommerce -#: admin/settings/settings-init.php:102 -msgid "Cart, Checkout and Accounts" -msgstr "Coș, Plătește și Cont" - -# @ woocommerce -#: admin/settings/settings-init.php:105 admin/woocommerce-admin-content.php:61 -#: admin/woocommerce-admin-content.php:76 -#: admin/woocommerce-admin-reports.php:72 -msgid "Coupons" -msgstr "Cupoane" - -# @ woocommerce -#: admin/settings/settings-init.php:106 -msgid "Enable the use of coupons" -msgstr "Activează utilizarea cupoanelor" - -#: admin/settings/settings-init.php:110 -msgid "Coupons can be applied from the cart and checkout pages." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:114 -#: admin/woocommerce-admin-install.php:198 -#: admin/woocommerce-admin-status.php:281 -msgid "Checkout" -msgstr "Plasează Comanda" - -# @ woocommerce -#: admin/settings/settings-init.php:115 -msgid "Enable guest checkout (no account required)" -msgstr "Activează Comandă Rapidă (fără a creea cont)" - -# @ woocommerce -#: admin/settings/settings-init.php:123 -msgid "Enable customer note field on checkout" -msgstr "Activează formularul pentru notiță client pe pagina Finalizare Comandă" - -# @ woocommerce -#: admin/settings/settings-init.php:131 -msgid "Force secure checkout" -msgstr "Forțează procesarea comenzilor prin protocolul de securitate HTTPS" - -# @ woocommerce -#: admin/settings/settings-init.php:137 -msgid "" -"Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -msgstr "" -"Forțează protocol SSL (HTTPS) pentru procesarea comenzilor (pe pagina " -"Finalizare Comenzi - este necesar achiziționarea unui certificat SSL și " -"instalarea sa pe server-ul ce găzduiește magazinul)." - -# @ woocommerce -#: admin/settings/settings-init.php:141 -msgid "Un-force HTTPS when leaving the checkout" -msgstr "" -"Dezactivează protcolul HTTPS după părăsirea paginii de Finalizare Comandă" - -# @ woocommerce -#: admin/settings/settings-init.php:150 -msgid "Registration" -msgstr "Înregistrare" - -# @ woocommerce -#: admin/settings/settings-init.php:151 -msgid "Allow registration on the checkout page" -msgstr "Permite înregistrarea unui cont nou pe pagina 'Finalizare Comandă'" - -# @ woocommerce -#: admin/settings/settings-init.php:159 -msgid "Allow registration on the \"My Account\" page" -msgstr "Permite înregistrarea unui cont nou pe pagina \"Contul Meu\"" - -#: admin/settings/settings-init.php:167 -msgid "Register using the email address for the username" -msgstr "Înregistrează-te cu adresa de email ca și nume de utilizator" - -# @ woocommerce -#: admin/settings/settings-init.php:175 -msgid "Customer Accounts" -msgstr "Conturi Clienți" - -# @ woocommerce -#: admin/settings/settings-init.php:176 -msgid "Prevent customers from accessing WordPress admin" -msgstr "" -"Împiedică accesul clienților în zona de administrare Wordpress (Paginile " -"vizualizate în momentul de față)" - -# @ woocommerce -#: admin/settings/settings-init.php:184 -msgid "Clear cart when logging out" -msgstr "Goliți Coșul de cumpărături la deconectarea utilizatorului." - -# @ woocommerce -#: admin/settings/settings-init.php:192 -msgid "Allow customers to repurchase orders from their account page" -msgstr "" -"Permite clienţilor să cumpere din nou comenzile făcute anterior din pagina " -"\"Cont Client\"" - -# @ woocommerce -#: admin/settings/settings-init.php:201 -msgid "Styles and Scripts" -msgstr "Stiluri și Script-uri" - -# @ woocommerce -#: admin/settings/settings-init.php:204 -msgid "Styling" -msgstr "Opțiuni afișare" - -# @ woocommerce -#: admin/settings/settings-init.php:205 -msgid "Enable WooCommerce CSS" -msgstr "Activează stiluri (CSS) WooCommerce" - -# @ woocommerce -#: admin/settings/settings-init.php:216 -msgid "Scripts" -msgstr "Script-uri" - -# @ woocommerce -#: admin/settings/settings-init.php:217 -msgid "Enable Lightbox" -msgstr "Activează \"WooCommerce Lightbox\"" - -#: admin/settings/settings-init.php:220 -msgid "" -"Include WooCommerce's lightbox. Product gallery images and the add review " -"form will open in a lightbox." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:226 -msgid "Enable enhanced country select boxes" -msgstr "Activează meniu avansat pentru selecția de țară." - -#: admin/settings/settings-init.php:231 -msgid "This will enable a script allowing the country fields to be searchable." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:236 -msgid "Downloadable Products" -msgstr "Produse Descărcabile" - -# @ woocommerce -#: admin/settings/settings-init.php:239 -msgid "File Download Method" -msgstr "Metodă de descărcare a fișierelor" - -# @ woocommerce -#: admin/settings/settings-init.php:240 -msgid "" -"Forcing downloads will keep URLs hidden, but some servers may serve large " -"files unreliably. If supported, X-Accel-Redirect/ X-" -"Sendfile can be used to serve downloads instead (server requires " -"mod_xsendfile)." -msgstr "" -"Forțarea descărcărilor va ascunde calea către fișiere (ajută la împiedicarea " -"descărcărilor neautorizate), dar o parte din servere ar putea creea probleme " -"la descărcarea fișierelor mari. Dacă este suportat protocolul X-Accel-" -"Redirect/ X-Sendfile poate fi utilizat pentru servirea " -"fișierelor descărcabile (Serverul trebuie configurat să folosească " -"mod_xsendfile)." - -# @ woocommerce -#: admin/settings/settings-init.php:248 -msgid "Force Downloads" -msgstr "Forțează descărcarea fișierelor" - -# @ woocommerce -#: admin/settings/settings-init.php:249 -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "X-Accel-Redirect/X-Sendfile" - -# @ woocommerce -#: admin/settings/settings-init.php:250 -msgid "Redirect only" -msgstr "Doar redirecțisonare" - -# @ woocommerce -#: admin/settings/settings-init.php:255 -msgid "Access Restriction" -msgstr "Restricții Acces" - -# @ woocommerce -#: admin/settings/settings-init.php:256 -msgid "Downloads require login" -msgstr "Descărcările necesită autentificare" - -# @ woocommerce -#: admin/settings/settings-init.php:260 -msgid "This setting does not apply to guest purchases." -msgstr "" -"Această opțiune nu se aplică pentru comenzile efectuate ca \"Musafir" -"\" (guest)" - -# @ woocommerce -#: admin/settings/settings-init.php:265 -msgid "Grant access to downloadable products after payment" -msgstr "Oferă acces la produsul descărcabil după plată" - -# @ woocommerce -#: admin/settings/settings-init.php:269 -#, fuzzy -msgid "" -"Enable this option to grant access to downloads when orders are \"processing" -"\", rather than \"completed\"." -msgstr "" -"Dezactivează această opțiune pentru a oferi acces la fișiere doar după ce o " -"comandă este marcată \"Completată\", în loc de \"În procesare\"" - -# @ woocommerce -#: admin/settings/settings-init.php:285 -msgid "" -"Note: The shop page has children - child pages will not work if you enable " -"this option." -msgstr "" -"Notă: Pagina Magazin are subpagini - subpaginile nu vor funcționa dacă " -"această opțiune este activă." - -# @ woocommerce -#: admin/settings/settings-init.php:290 -msgid "Page Setup" -msgstr "Setări Pagină" - -#: admin/settings/settings-init.php:292 -msgid "" -"Set up core WooCommerce pages here, for example the base page. The base page " -"can also be used in your %sproduct permalinks%s." -msgstr "" -"Configurați paginile de bază WooCommerce aici, de exemplu, pagina de bază." -"Pagina de bază poate fi utilizat și în %s Legături permanente pentru Produs " -"%s." - -# @ woocommerce -#: admin/settings/settings-init.php:297 -msgid "Shop Base Page" -msgstr "Pagina de bază a Magazinului" - -# @ woocommerce -#: admin/settings/settings-init.php:298 -msgid "" -"This sets the base page of your shop - this is where your product archive " -"will be." -msgstr "" -"Această opțiune setează pagina de bază a magazinului - aici va fi prezentă " -"arhiva cu toate produsele." - -# @ woocommerce -#: admin/settings/settings-init.php:308 -msgid "Base Page Title" -msgstr "Titlul Paginii de bază a Magazinului" - -# @ woocommerce -#: admin/settings/settings-init.php:309 -msgid "" -"This title to show on the shop base page. Leave blank to use the page title." -msgstr "" -"Acest titlu va fi afișat pe pagina de bază a magazinului. Lasă acest câmp " -"gol pentru a utiliza titlu inițial al paginii (Setat din Meniul \"Pagini\")." - -# @ woocommerce -#: admin/settings/settings-init.php:318 -msgid "Terms Page ID" -msgstr "Pagina de Termeni și Condiții" - -# @ woocommerce -#: admin/settings/settings-init.php:319 -msgid "" -"If you define a \"Terms\" page the customer will be asked if they accept " -"them when checking out." -msgstr "" -"Dacă definești o pagină de \"Termeni și condiții\", clientul va fi rugat să " -"accepte Termenii și Condițiile prezentate la finalizarea comenzii." - -# @ woocommerce -#: admin/settings/settings-init.php:330 -msgid "Shop Pages" -msgstr "Paginile Magazinului" - -# @ woocommerce -#: admin/settings/settings-init.php:330 -msgid "" -"The following pages need selecting so that WooCommerce knows where they are. " -"These pages should have been created upon installation of the plugin, if not " -"you will need to create them." -msgstr "" -"Paginile enumerate mai jos trebuie definite pentru ca WooCommerce să le " -"cunoască locația. Aceste pagini se creează automat la instalarea / " -"inițializarea plugin-ului WooCoommerce. În cazul în care nu au fost create " -"automat, ele trebuiesc create manul: Codul ce trebuie introdus în pagină îl " -"găsești dacă pui mouse-ul deasupra iconiței cu semnul întrebării din dreptul " -"fiecărui câmp de selecție." - -# @ woocommerce -#: admin/settings/settings-init.php:333 -msgid "Cart Page" -msgstr "Pagina \"Coș de Cumpărături\"" - -# @ woocommerce -#: admin/settings/settings-init.php:334 -msgid "Page contents: [woocommerce_cart]" -msgstr "Conținut pagină: [woocommerce_cart]" - -# @ woocommerce -#: admin/settings/settings-init.php:344 -msgid "Checkout Page" -msgstr "Pagina \"Finalizare Comandă\"" - -# @ woocommerce -#: admin/settings/settings-init.php:345 -msgid "Page contents: [woocommerce_checkout]" -msgstr "Conținut pagină: [woocommerce_checkout]" - -# @ woocommerce -#: admin/settings/settings-init.php:355 -msgid "Pay Page" -msgstr "Pagina \"Plată Comandă\"" - -# @ woocommerce -#: admin/settings/settings-init.php:356 -msgid "Page contents: [woocommerce_pay] Parent: \"Checkout\"" -msgstr "" -"Conținut pagină: [woocommerce_pay] | Părinte Pagină: \"Finalizare Comandă\"" - -# @ woocommerce -#: admin/settings/settings-init.php:366 -msgid "Thanks Page" -msgstr "Pagina \"Comandă Primită\"" - -# @ woocommerce -#: admin/settings/settings-init.php:367 -msgid "Page contents: [woocommerce_thankyou] Parent: \"Checkout\"" -msgstr "" -"Conținut pagină: [woocommerce_thankyou] | Părinte Pagină: \"Finalizare " -"Comandă\"" - -# @ woocommerce -#: admin/settings/settings-init.php:377 -msgid "My Account Page" -msgstr "Pagina \"Contul Meu\"" - -# @ woocommerce -#: admin/settings/settings-init.php:378 -msgid "Page contents: [woocommerce_my_account]" -msgstr "Conținut pagină: [woocommerce_my_account]" - -# @ woocommerce -#: admin/settings/settings-init.php:388 -msgid "Edit Address Page" -msgstr "Pagina \"Modificare Adresă\"" - -# @ woocommerce -#: admin/settings/settings-init.php:389 -msgid "Page contents: [woocommerce_edit_address] Parent: \"My Account\"" -msgstr "" -"Conținut pagină: [woocommerce_edit_address] | Părinte Pagină: \"Contul Meu\"" - -# @ woocommerce -#: admin/settings/settings-init.php:399 -msgid "View Order Page" -msgstr "Pagina \"Vizualizare Comandă\"" - -# @ woocommerce -#: admin/settings/settings-init.php:400 -msgid "Page contents: [woocommerce_view_order] Parent: \"My Account\"" -msgstr "" -"Conținut pagină: [woocommerce_view_order] | Părinte Pagină: \"Contul Meu\"" - -# @ woocommerce -#: admin/settings/settings-init.php:410 -msgid "Change Password Page" -msgstr "Pagina \"Modificare Parolă\"" - -# @ woocommerce -#: admin/settings/settings-init.php:411 -msgid "Page contents: [woocommerce_change_password] Parent: \"My Account\"" -msgstr "" -"Conținut pagină: [woocommerce_change_password] | Părinte Pagină: \"Contul Meu" -"\"" - -# @ woocommerce -#: admin/settings/settings-init.php:421 -msgid "Logout Page" -msgstr "Pagina \"Ieșire din cont\"" - -# @ woocommerce -#: admin/settings/settings-init.php:422 -msgid "Parent: \"My Account\"" -msgstr "Părinte: \"Contul Meu\"" - -# @ woocommerce -#: admin/settings/settings-init.php:432 -msgid "Lost Password Page" -msgstr "Pagina \"Ai uitat parola?\"" - -# @ woocommerce -#: admin/settings/settings-init.php:433 -msgid "Page contents: [woocommerce_lost_password] Parent: \"My Account\"" -msgstr "" -"Conținut pagină: [woocommerce_change_password] | Părinte Pagină: \"Contul Meu" -"\"" - -# @ woocommerce -#: admin/settings/settings-init.php:449 -msgid "Catalog Options" -msgstr "Opțiuni Catalog" - -# @ woocommerce -#: admin/settings/settings-init.php:452 -msgid "Default Product Sorting" -msgstr "Sortarea implicită a Produselor" - -# @ woocommerce -#: admin/settings/settings-init.php:453 -msgid "This controls the default sort order of the catalog." -msgstr "Această opțiune controlează modul de sortare a produselor." - -# @ woocommerce -#: admin/settings/settings-init.php:459 -msgid "Default sorting (custom ordering + name)" -msgstr "Sortare implicită (sortare personalizată + nume)" - -#: admin/settings/settings-init.php:460 -msgid "Popularity (sales)" -msgstr "Popularitate (vânzări)" - -# @ woocommerce -#: admin/settings/settings-init.php:461 -msgid "Average Rating" -msgstr "Notă Medie" - -# @ woocommerce -#: admin/settings/settings-init.php:462 -msgid "Sort by most recent" -msgstr "Sorteză după cele mai Recente Produse" - -# @ woocommerce -#: admin/settings/settings-init.php:463 -msgid "Sort by price (asc)" -msgstr "Sortează dupa preț (Ascendent)" - -# @ woocommerce -#: admin/settings/settings-init.php:464 -msgid "Sort by price (desc)" -msgstr "Sortează după preț (Descendent)" - -# @ woocommerce -#: admin/settings/settings-init.php:470 -msgid "Shop Page Display" -msgstr "Afișare pe Pagina Magazinului" - -# @ woocommerce -#: admin/settings/settings-init.php:471 -msgid "This controls what is shown on the product archive." -msgstr "" -"Această opțiune controlează modul de afișare pe pagina de Arhive Produse " -"(Pagina Magazinului)." - -# @ woocommerce -#: admin/settings/settings-init.php:477 admin/settings/settings-init.php:492 -msgid "Show products" -msgstr "Afișează produse" - -# @ woocommerce -#: admin/settings/settings-init.php:478 admin/settings/settings-init.php:493 -msgid "Show subcategories" -msgstr "Afișează subcategorii" - -# @ woocommerce -#: admin/settings/settings-init.php:479 admin/settings/settings-init.php:494 -msgid "Show both" -msgstr "Afișează ambele" - -# @ woocommerce -#: admin/settings/settings-init.php:485 -msgid "Default Category Display" -msgstr "Afișare Implicită pe o Pagină Categorie" - -# @ woocommerce -#: admin/settings/settings-init.php:486 -msgid "This controls what is shown on category archives." -msgstr "Această opțiune controlează ce este afișat pe Arhivele Categorie" - -# @ woocommerce -#: admin/settings/settings-init.php:500 -msgid "Add to cart" -msgstr "Adaugă în Coș" - -#: admin/settings/settings-init.php:501 -msgid "Redirect to the cart page after successful addition" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:509 -msgid "Enable AJAX add to cart buttons on archives" -msgstr "Activează butonul \"Adaugă în Coș\" prin AJAX pe arhivele de produs." - -# @ woocommerce -#: admin/settings/settings-init.php:518 -msgid "" -"The following options affect the fields available on the edit product page." -msgstr "" -"Următoarele opțiuni controlează câmpurile disponibile pe pagina de editare " -"produs." - -# @ woocommerce -#: admin/settings/settings-init.php:521 -msgid "Product Fields" -msgstr "Câmpuri Produs" - -# @ woocommerce -#: admin/settings/settings-init.php:522 -#, fuzzy -msgid "Enable the SKU field for products" -msgstr "" -"Activează câmpul \"Cod Produs\" pentru identificarea mai ușoară a produselor" - -#: admin/settings/settings-init.php:530 -msgid "" -"Enable the weight field for products (some shipping methods " -"may require this)" -msgstr "" - -#: admin/settings/settings-init.php:538 -msgid "" -"Enable the dimension fields for products (some shipping " -"methods may require this)" -msgstr "" - -#: admin/settings/settings-init.php:546 -msgid "" -"Show weight and dimension values on the Additional " -"Information tab" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:554 -msgid "Weight Unit" -msgstr "Unitate de măsură a greutății" - -# @ woocommerce -#: admin/settings/settings-init.php:555 -msgid "This controls what unit you will define weights in." -msgstr "" -"Această opțiune afișează unitatea de măsură ce definește greutatea produsului" - -# @ woocommerce -#: admin/settings/settings-init.php:561 -msgid "kg" -msgstr "kg" - -# @ woocommerce -#: admin/settings/settings-init.php:562 -msgid "g" -msgstr "g" - -# @ woocommerce -#: admin/settings/settings-init.php:563 -msgid "lbs" -msgstr "livre" - -# @ woocommerce -#: admin/settings/settings-init.php:564 -msgid "oz" -msgstr "uncie" - -# @ woocommerce -#: admin/settings/settings-init.php:570 -msgid "Dimensions Unit" -msgstr "Unitate de măsură a dimensiunii" - -# @ woocommerce -#: admin/settings/settings-init.php:571 -msgid "This controls what unit you will define lengths in." -msgstr "" -"Această opțiune afișează unitatea de măsură ce definește lungimea, lățimea, " -"adâncimea unui produs." - -# @ woocommerce -#: admin/settings/settings-init.php:578 -msgid "cm" -msgstr "cm" - -# @ woocommerce -#: admin/settings/settings-init.php:579 -msgid "mm" -msgstr "mm" - -# @ woocommerce -#: admin/settings/settings-init.php:580 -msgid "in" -msgstr "inci" - -# @ woocommerce -#: admin/settings/settings-init.php:581 -msgid "yd" -msgstr "yarzi" - -# @ woocommerce -#: admin/settings/settings-init.php:587 -msgid "Product Ratings" -msgstr "Calificative Produse" - -# @ woocommerce -#: admin/settings/settings-init.php:588 -msgid "Enable ratings on reviews" -msgstr "Activează notarea pentru recenzii" - -# @ woocommerce -#: admin/settings/settings-init.php:597 -msgid "Ratings are required to leave a review" -msgstr "" -"Acordarea de calificative este necesară pentru a lăsa un comentariu / opinie " -"asupra produsului" - -# @ woocommerce -#: admin/settings/settings-init.php:606 -msgid "Show \"verified owner\" label for customer reviews" -msgstr "" -"Afișează simbol de \"Proprietar Verificat\" pentru recenziile de produs" - -# @ woocommerce -#: admin/settings/settings-init.php:616 -msgid "Pricing Options" -msgstr "Afișarea Prețurilor" - -# @ woocommerce -#: admin/settings/settings-init.php:616 -msgid "The following options affect how prices are displayed on the frontend." -msgstr "Următoarele opțiuni stabilesc modalitatea de afișar a prețurilor." - -# @ woocommerce -#: admin/settings/settings-init.php:619 -msgid "Currency Position" -msgstr "Poziția Monedei" - -# @ woocommerce -#: admin/settings/settings-init.php:620 -msgid "This controls the position of the currency symbol." -msgstr "" -"Această opțiune controlează poziția de afișare a monedei - în stânga sau în " -"dreapta prețului" - -# @ woocommerce -#: admin/settings/settings-init.php:626 -msgid "Left" -msgstr "În Stânga monedei" - -# @ woocommerce -#: admin/settings/settings-init.php:627 -msgid "Right" -msgstr "În Dreapta monedei" - -# @ woocommerce -#: admin/settings/settings-init.php:628 -msgid "Left (with space)" -msgstr "În Stânga monedei plus un spațiu între preț și simbol" - -# @ woocommerce -#: admin/settings/settings-init.php:629 -msgid "Right (with space)" -msgstr "În Dreapta monedei plus un spațiu între preț și simbol" - -# @ woocommerce -#: admin/settings/settings-init.php:635 -msgid "Thousand Separator" -msgstr "Separator Mii" - -# @ woocommerce -#: admin/settings/settings-init.php:636 -msgid "This sets the thousand separator of displayed prices." -msgstr "" -"Această opțiuni controlează caracterul care delimitează miile (Pentru " -"România: 200.000 - două sute de mii; Pentru Statele Unite: 200,000 - două " -"sute de mii)" - -# @ woocommerce -#: admin/settings/settings-init.php:645 -msgid "Decimal Separator" -msgstr "Separator Zecimale" - -# @ woocommerce -#: admin/settings/settings-init.php:646 -msgid "This sets the decimal separator of displayed prices." -msgstr "" -"Această opțiuni controlează caracterul care delimitează decimalele (Pentru " -"România: 1,25 - unu virgulă douăzeci și cinci; Pentru Statele Unite: 1.25 - " -"unu punct douăzeci și cinci)" - -# @ woocommerce -#: admin/settings/settings-init.php:655 -msgid "Number of Decimals" -msgstr "Număr Zecimale" - -# @ woocommerce -#: admin/settings/settings-init.php:656 -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "" -"Câte cifre vor fi afișate in cazul prețurilor cu decimală după \"virgulă\" " -"respectiv \"punct\"." - -# @ woocommerce -#: admin/settings/settings-init.php:669 -msgid "Trailing Zeros" -msgstr "Zero-uri afișate la Sfârșit" - -# @ woocommerce -#: admin/settings/settings-init.php:670 -msgid "" -"Remove zeros after the decimal point. e.g. $10.00 becomes " -"$10" -msgstr "" -"Elimină zero-urile aflate după decimale în următoarele cazuri: " -"$10.00 devine $10" - -# @ woocommerce -#: admin/settings/settings-init.php:678 -msgid "Image Options" -msgstr "Opțiuni Imagini" - -# @ woocommerce -#: admin/settings/settings-init.php:678 -msgid "" -"These settings affect the actual dimensions of images in your catalog - the " -"display on the front-end will still be affected by CSS styles. After " -"changing these settings you may need to regenerate your " -"thumbnails." -msgstr "" -"Aceste opțiuni controlează dimensiunile imaginilor din catalog - " -"dimensiunile de afișare a imaginilor în magazin va fi controlat în " -"continuare de stilurile definite în CSS. După modificarea acestor dimensiuni " -"ar putea fi necesară regenerarea imaginilor. Pentru regenerarea imaginilor " -"folosește acest plugin." - -# @ woocommerce -#: admin/settings/settings-init.php:681 -msgid "Catalog Images" -msgstr "Imagini Catalog" - -# @ woocommerce -#: admin/settings/settings-init.php:682 -msgid "This size is usually used in product listings" -msgstr "Această dimensiune este utilizată de obicei în lista de produse." - -# @ woocommerce -#: admin/settings/settings-init.php:695 -msgid "Single Product Image" -msgstr "Imagini afișate pe pagina de produs" - -# @ woocommerce -#: admin/settings/settings-init.php:696 -msgid "This is the size used by the main image on the product page." -msgstr "Această dimensiune este utilizată de obicei pe pagina produsului." - -# @ woocommerce -#: admin/settings/settings-init.php:709 -msgid "Product Thumbnails" -msgstr "Miniaturi Imagini" - -# @ woocommerce -#: admin/settings/settings-init.php:710 -msgid "" -"This size is usually used for the gallery of images on the product page." -msgstr "" -"Această dimensiune este utilizată pentru medalioanele prezente într-o " -"galerie de imagini pe pagina produsului." - -# @ woocommerce -#: admin/settings/settings-init.php:729 -msgid "Inventory Options" -msgstr "Opțiuni Administrare Inventar" - -# @ woocommerce -#: admin/settings/settings-init.php:732 -msgid "Manage Stock" -msgstr "Gestionați stoc" - -# @ woocommerce -#: admin/settings/settings-init.php:733 -msgid "Enable stock management" -msgstr "Activează administrarea stocurilor de produse" - -#: admin/settings/settings-init.php:740 -msgid "Hold Stock (minutes)" -msgstr "Păstrează Stocul (minute)" - -#: admin/settings/settings-init.php:741 -msgid "" -"Hold stock (for unpaid orders) for x minutes. When this limit is reached, " -"the pending order will be cancelled. Leave blank to disable." -msgstr "" -"Păstrează Stocul (pentru comenzile neachitate) pentru X minute. Când această " -"limită este atinsă, Comanda Care este în așteptare și neachitată va fi " -"anulată. Lăsa-ți Gol pentru a Dezactiva." - -# @ woocommerce -#: admin/settings/settings-init.php:753 -msgid "Notifications" -msgstr "Notificări" - -# @ woocommerce -#: admin/settings/settings-init.php:754 -msgid "Enable low stock notifications" -msgstr "Activează notificarea de stoc redus" - -# @ woocommerce -#: admin/settings/settings-init.php:762 -msgid "Enable out of stock notifications" -msgstr "Activează notificarea de stoc epuizat" - -# @ woocommerce -#: admin/settings/settings-init.php:770 -msgid "Notification Recipient" -msgstr "Destinatar Notificări" - -# @ woocommerce -#: admin/settings/settings-init.php:778 -msgid "Low Stock Threshold" -msgstr "Pragul de Stoc Redus" - -# @ woocommerce -#: admin/settings/settings-init.php:791 -msgid "Out Of Stock Threshold" -msgstr "Pragul de Stoc Epuizat" - -# @ woocommerce -#: admin/settings/settings-init.php:804 -msgid "Out Of Stock Visibility" -msgstr "Vizibilitate Produse cu Stoc Epuizat" - -# @ woocommerce -#: admin/settings/settings-init.php:805 -msgid "Hide out of stock items from the catalog" -msgstr "Ascunde produse care au stocul epuizat (Împiedică comandarea lor)" - -# @ woocommerce -#: admin/settings/settings-init.php:812 -msgid "Stock Display Format" -msgstr "Format afișare stocuri" - -# @ woocommerce -#: admin/settings/settings-init.php:813 -msgid "This controls how stock is displayed on the frontend." -msgstr "" -"Această opțiune controlează modul de afișare pe pagina de produs a " -"informațiilor legate de stocul produsului." - -# @ woocommerce -#: admin/settings/settings-init.php:819 -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "Afișează stocul mereu, ex: \"12 în stoc\"" - -# @ woocommerce -#: admin/settings/settings-init.php:820 -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "" -"Afișează stocul doar când se apropie de epuizare, ex: \"Doar 2 produse " -"rămase pe stoc\" vs. \"În Stoc\"" - -# @ woocommerce -#: admin/settings/settings-init.php:821 -msgid "Never show stock amount" -msgstr "Nu afișa cantitatea de produse în stoc" - -# @ woocommerce -#: admin/settings/settings-init.php:833 -#: admin/woocommerce-admin-settings.php:290 -msgid "Shipping Options" -msgstr "Opțiuni Expediere" - -# @ woocommerce -#: admin/settings/settings-init.php:836 -msgid "Shipping Calculations" -msgstr "Calcule Costuri Livrare" - -# @ woocommerce -#: admin/settings/settings-init.php:837 -msgid "Enable shipping" -msgstr "Activează Expedierea Produselor" - -# @ woocommerce -#: admin/settings/settings-init.php:845 -msgid "Enable the shipping calculator on the cart page" -msgstr "Activează Calculator Livrare pe pagina de Coș" - -# @ woocommerce -#: admin/settings/settings-init.php:853 -msgid "Hide shipping costs until an address is entered" -msgstr "Ascunde costurile de livrare până în momentul introducerii unei adrese" - -# @ woocommerce -#: admin/settings/settings-init.php:861 -msgid "Shipping Method Display" -msgstr "Afișare Metoda de Livrare" - -# @ woocommerce -#: admin/settings/settings-init.php:862 -msgid "" -"This controls how multiple shipping methods are displayed on the frontend." -msgstr "" -"Această opțiune controlează afișarea Metodelor de Livrare pentru clienți." - -# @ woocommerce -#: admin/settings/settings-init.php:868 -msgid "Radio buttons" -msgstr "Buton radio" - -# @ woocommerce -#: admin/settings/settings-init.php:869 -msgid "Select box" -msgstr "Căsuță selecție" - -# @ woocommerce -#: admin/settings/settings-init.php:875 -msgid "Shipping Destination" -msgstr "Destinație de Livrare" - -# @ woocommerce -#: admin/settings/settings-init.php:876 -msgid "Only ship to the users billing address" -msgstr "Expediază doar către Adresa de Facturare a clientului" - -# @ woocommerce -#: admin/settings/settings-init.php:884 -msgid "Ship to billing address by default" -msgstr "Expediază către Adresa de Facturare a clientului în mod implicit" - -# @ woocommerce -#: admin/settings/settings-init.php:892 -msgid "Collect shipping address even when not required" -msgstr "Cere Adresa de Livrare a clientului chiar dacă nu este necesară" - -# @ woocommerce -#: admin/settings/settings-init.php:910 -#: admin/woocommerce-admin-settings.php:186 -#: admin/woocommerce-admin-settings.php:327 -msgid "Payment Gateways" -msgstr "Metode de Plată" - -# @ woocommerce -#: admin/settings/settings-init.php:910 -msgid "" -"Installed payment gateways are displayed below. Drag and drop payment " -"gateways to control their display order on the checkout." -msgstr "" -"Portalurile de Plată instalate sunt afișate mai jos. Trageți și plasați " -"portalurile pentru a modifica ordinea lor de afișare pe pagina Finalizare " -"Comandă." - -# @ woocommerce -#: admin/settings/settings-init.php:928 -#: admin/woocommerce-admin-settings.php:220 -msgid "Tax Options" -msgstr "Opțiuni Administrare Taxe" - -# @ woocommerce -#: admin/settings/settings-init.php:931 -msgid "Enable Taxes" -msgstr "Activează Taxele" - -# @ woocommerce -#: admin/settings/settings-init.php:932 -msgid "Enable taxes and tax calculations" -msgstr "Activează câmpurile necesare taxelor și calculării taxelor" - -#: admin/settings/settings-init.php:939 -msgid "Prices Entered With Tax" -msgstr "Prețurile Produselor includ taxele" - -#: admin/settings/settings-init.php:943 -msgid "" -"This option is important as it will affect how you input prices. Changing it " -"will not update existing products." -msgstr "" -"Această opțiune este importanta pentru ca va afecta modul în care introduci " -"prețurile. Modificând-o nu vei Modifica si produsele deja Existente." - -#: admin/settings/settings-init.php:945 -msgid "Yes, I will enter prices inclusive of tax" -msgstr "DA, voi introduce prețurile cu toate Taxele INCLUSE" - -#: admin/settings/settings-init.php:946 -msgid "No, I will enter prices exclusive of tax" -msgstr "NU, voi introduce prețurile FĂRĂ TAXE (BRUT)" - -#: admin/settings/settings-init.php:951 -msgid "Calculate Tax Based On:" -msgstr "Calculează taxele (Brut) bazat pe:" - -#: admin/settings/settings-init.php:953 -msgid "This option determines which address is used to calculate tax." -msgstr "" -"Această Opțiune specifică ce adresă va fi utilizată pentru a calcula taxele." - -# @ woocommerce -#: admin/settings/settings-init.php:957 -msgid "Customer shipping address" -msgstr "Adresa de Livrare a clientului" - -# @ woocommerce -#: admin/settings/settings-init.php:958 -msgid "Customer billing address" -msgstr "Adresa de Facturare a clientului" - -# @ woocommerce -#: admin/settings/settings-init.php:959 admin/settings/settings-init.php:971 -msgid "Shop base address" -msgstr "Adresa Magazinului" - -# @ woocommerce -#: admin/settings/settings-init.php:964 -msgid "Default Customer Address:" -msgstr "Adresa implicită a Clientului:" - -#: admin/settings/settings-init.php:966 -msgid "" -"This option determines the customers default address (before they input " -"their own)." -msgstr "" -"Această Opțiune va specifica adresa implicită a clienților (înainte să " -"introducă adresa lor)." - -# @ woocommerce -#: admin/settings/settings-init.php:970 -msgid "No address" -msgstr "Nici o Adresă" - -# @ woocommerce -#: admin/settings/settings-init.php:976 -msgid "Shipping Tax Class:" -msgstr "Clasă de Taxare pentru Expediere" - -#: admin/settings/settings-init.php:977 -msgid "" -"Optionally control which tax class shipping gets, or leave it so shipping " -"tax is based on the cart items themselves." -msgstr "" -"Opţional controlaţi ce clasă de taxare se aplică pentru livrare, sau lăsaţi " -"implicit, pentru aplicarea taxei de livrare în funcţie de articolele din coş." - -#: admin/settings/settings-init.php:982 -msgid "Shipping tax class based on cart items" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:987 -msgid "Rounding" -msgstr "Rotunjire" - -# @ woocommerce -#: admin/settings/settings-init.php:988 -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "" -"Rotunjește taxele la nivel de subtotal, în schimbul rotunjirii la nivel de " -"linie" - -# @ woocommerce -#: admin/settings/settings-init.php:995 -msgid "Additional Tax Classes" -msgstr "Clase adiționale de Taxere" - -# @ woocommerce -#: admin/settings/settings-init.php:996 -msgid "" -"List additonal tax classes below (1 per line). This is in addition to the " -"default Standard Rate. Tax classes can be assigned to products." -msgstr "" -"Listează mai jos (1 pe linie) clasele de taxare. Această opțiune este " -"adăugată în plus la opțiune implicită Rată Standard. Clasele de " -"Taxare pot fi alocate produselor." - -# @ woocommerce -#: admin/settings/settings-init.php:1000 -msgid "Reduced Rate%sZero Rate" -msgstr "Rată Redusă%sRată Zero" - -# @ woocommerce -#: admin/settings/settings-init.php:1004 -msgid "Display prices during cart/checkout:" -msgstr "Modul de afișare a prețurilor pe pagina de coș / checkout:" - -# @ woocommerce -#: admin/settings/settings-init.php:1009 -msgid "Including tax" -msgstr "Incluzând taxe. " - -# @ woocommerce -#: admin/settings/settings-init.php:1010 -msgid "Excluding tax" -msgstr "Fără taxe. " - -# @ woocommerce -#: admin/settings/settings-init.php:1022 -msgid "Email Sender Options" -msgstr "Cum sunt afișate datele de expediere a emailurilor" - -# @ woocommerce -#: admin/settings/settings-init.php:1022 -msgid "" -"The following options affect the sender (email address and name) used in " -"WooCommerce emails." -msgstr "" -"Următoarele opțiuni contolează modalitatea de afișare a datelor de contact " -"ce sunt vizualizate în emailul primit de la sistemul WooCommerce (Nume și " -"Adresă de Email)." - -# @ woocommerce -#: admin/settings/settings-init.php:1025 -msgid "\"From\" Name" -msgstr "\"De la\" - Se afișează Numele:" - -# @ woocommerce -#: admin/settings/settings-init.php:1034 -msgid "\"From\" Email Address" -msgstr "\"De la\" - Se afișează adresa de email:" - -# @ woocommerce -#: admin/settings/settings-init.php:1047 -msgid "Email Template" -msgstr "Șablon email" - -# @ woocommerce -#: admin/settings/settings-init.php:1047 -msgid "" -"This section lets you customise the WooCommerce emails. Click here to preview your email template. For more " -"advanced control copy woocommerce/templates/emails/ to " -"yourtheme/woocommerce/emails/." -msgstr "" -"Această secțiune îți permite să modifici emailurile trimise de WooCommerce. " -"Click aici pentru a vizualiza șablonul " -"standard.
    Pentru a modifica șablonul standard copiază fișierele din " -"directorul woocommerce/templates/emails/ în " -"directorultema-Ta/woocommerce/emails/." - -# @ woocommerce -#: admin/settings/settings-init.php:1050 -msgid "Header Image" -msgstr "Imagine Antet" - -# @ woocommerce -#: admin/settings/settings-init.php:1051 -msgid "" -"Enter a URL to an image you want to show in the email's header. Upload your " -"image using the media uploader." -msgstr "" -"Adaugă link către imaginea pe care dorești să o incluzi în antetul emailului " -"sau încarcă adaugă prin modulul de încărcare." - -# @ woocommerce -#: admin/settings/settings-init.php:1059 -msgid "Email Footer Text" -msgstr "Text afișat în subsolul emailului." - -# @ woocommerce -#: admin/settings/settings-init.php:1060 -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "" -"Acest text va apărea în partea de subsol a emailurilor trimise de " -"WooCommerce." - -# @ woocommerce -#: admin/settings/settings-init.php:1064 -msgid "Powered by WooCommerce" -msgstr "Realizat de WooCommerce" - -# @ woocommerce -#: admin/settings/settings-init.php:1068 -msgid "Base Colour" -msgstr "Culoară de bază" - -# @ woocommerce -#: admin/settings/settings-init.php:1069 -msgid "" -"The base colour for WooCommerce email templates. Default #557da1." -msgstr "" -"Culoare de bază pentru șabloanelor de email utilizate de WooCoommerce. " -"Culoare originală #557da1." - -# @ woocommerce -#: admin/settings/settings-init.php:1077 -msgid "Background Colour" -msgstr "Culoare fundal" - -# @ woocommerce -#: admin/settings/settings-init.php:1078 -msgid "" -"The background colour for WooCommerce email templates. Default " -"#f5f5f5." -msgstr "" -"Culoare fundal pentru șabloanele de email utilizate de WooCommerce. Culoare " -"originală #f5f5f5." - -# @ woocommerce -#: admin/settings/settings-init.php:1086 -msgid "Email Body Background Colour" -msgstr "Culoare fundal email" - -# @ woocommerce -#: admin/settings/settings-init.php:1087 -msgid "The main body background colour. Default #fdfdfd." -msgstr "Culoare principală de fundal. Original #fdfdfd." - -# @ woocommerce -#: admin/settings/settings-init.php:1095 -msgid "Email Body Text Colour" -msgstr "Culoare text email" - -# @ woocommerce -#: admin/settings/settings-init.php:1096 -msgid "The main body text colour. Default #505050." -msgstr "Culoarea principală a textului. Original #505050." - -# @ woocommerce -#: admin/settings/settings-payment-gateways.php:27 -#: admin/settings/settings-shipping-methods.php:29 -#: admin/woocommerce-admin-init.php:767 -#: admin/woocommerce-admin-taxonomies.php:27 -#: admin/woocommerce-admin-taxonomies.php:121 -msgid "Default" -msgstr "Original" - -# @ woocommerce -#: admin/settings/settings-payment-gateways.php:28 -msgid "Gateway" -msgstr "Portal" - -# @ woocommerce -#: admin/settings/settings-payment-gateways.php:45 -msgid "Gateway ID" -msgstr "ID Portal" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:23 -msgid "Shipping Methods" -msgstr "Metode de Expediere" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:25 -msgid "Drag and drop methods to control their display order." -msgstr "Trageți și plasați metodele pentru a controla ordinea de afișare." - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:30 -msgid "Shipping Method" -msgstr "Metode de Expediere" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:46 -msgid "Method ID" -msgstr "Cod Identificare Metodă" - -#: admin/settings/settings-tax-rates.php:29 -msgid "Tax Rates for the \"%s\" Class" -msgstr "Cotă de impozitare pentru Clasa \"%s\"" - -#: admin/settings/settings-tax-rates.php:30 -#, fuzzy -msgid "" -"Define tax rates for countries and states below. See here " -"for available alpha-2 country codes." -msgstr "" -"Definiţi cote de impozitare / taxare în funcţie de ţări sau state. " -"Introduceţi detaliile mai jos. Vezi Aici lista " -"codurilor țară / stat disponibile." - -#: admin/settings/settings-tax-rates.php:36 -msgid "Country Code" -msgstr "Cod Țară" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:36 -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "" -"Un cod de țară din 2 litere, de exemplu RO. Lăsați necompletat pentru a se " -"aplica tuturor" - -#: admin/settings/settings-tax-rates.php:38 -msgid "State Code" -msgstr "Cod Statal" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:38 -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "" -"Un cod de stat din 2 caractere, de exemplu AL. Lăsați necompletat pentru a " -"se aplica tuturor." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:40 -#: admin/settings/settings-tax-rates.php:217 -msgid "ZIP/Postcode" -msgstr "Cod poștal" - -#: admin/settings/settings-tax-rates.php:40 -msgid "" -"Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all areas. Wildcards (*) can be used. Ranges for numeric " -"postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "" -"Codurile poștale pentru această regulă. Valorile multiple trebuie sa fie " -"separate prin punct și virgulă (;). Pot fi utilizate Metacaractere (*). " -"Intervalele pentru codurile poștale numerice (de exemplu, 12345 - 12350) vor " -"fi extinse în codurile poștale individuale." - -#: admin/settings/settings-tax-rates.php:42 -msgid "" -"Cities for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all cities." -msgstr "" -"Orașele pentru această regulă. Valorile multiple trebuie sa fie separate " -"prin punct și virgulă (;). Lasă gol pentru a fi aplicabilă la toate orașele." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:44 -msgid "Rate %" -msgstr "Rată…%" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:44 -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "Introdu o valoare pentru taxă (procentuală) cu 4 (patru) decimale." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:46 -msgid "Tax Name" -msgstr "Nume Taxă" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:46 -msgid "Enter a name for this tax rate." -msgstr "Introdu un nume pentru această valoare de taxare." - -#: admin/settings/settings-tax-rates.php:48 -#: admin/settings/settings-tax-rates.php:217 -msgid "Priority" -msgstr "Prioritate" - -#: admin/settings/settings-tax-rates.php:48 -msgid "" -"Choose a priority for this tax rate. Only 1 matching rate per priority will " -"be used. To define multiple tax rates for a single area you need to specify " -"a different priority per rate." -msgstr "" -"Alege o prioritate pentru aceasta Cotă de Taxare. Doar 1 cotă de taxare per " -"prioritate va fi utilizată. Pentru a defini și utiliza mai multe Cote de " -"Impozitare pentru o singură zonă, este necesar să specifici altă prioritate " -"pentru fiecare Cota." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:50 -#: admin/settings/settings-tax-rates.php:217 -msgid "Compound" -msgstr "Compus" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:50 -msgid "" -"Choose whether or not this is a compound rate. Compound tax rates are " -"applied on top of other tax rates." -msgstr "" -"Alege dacă aceasta este o rată compusă. Taxele Compuse se adaugă peste " -"celelalte taxe. (?)" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:52 -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "Alege dacă această taxă va fi aplicată si costului de expediere." - -#: admin/settings/settings-tax-rates.php:59 -msgid "Insert row" -msgstr "Adaugă rând" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:60 -msgid "Remove selected row(s)" -msgstr "Șterge rândurile selectate" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:62 -msgid "Export CSV" -msgstr "Exportă în format CSV" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:63 -msgid "Import CSV" -msgstr "Importă din CSV" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:163 -msgid "No row(s) selected" -msgstr "Niciun rând(uri) selectat(e)" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Country Code" -msgstr "Cod de Țară" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "State Code" -msgstr "Cod Statal" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Rate %" -msgstr "Rată (Cotă) %" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Name" -msgstr "Nume Taxă" - -#: admin/woocommerce-admin-attributes.php:77 -msgid "Please, provide an attribute name, slug and type." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:79 -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:81 -msgid "" -"Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:85 -#: admin/woocommerce-admin-attributes.php:90 -msgid "Slug “%s” is already in use. Change it, please." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:226 -msgid "Edit Attribute" -msgstr "Editează Atribut" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:236 -#: admin/woocommerce-admin-attributes.php:375 -msgid "Name for the attribute (shown on the front-end)." -msgstr "" -"Nume atribut (este afișat pe pagina de prezentare produs - alături de " -"Dimensiuni, Greutate, etc.)" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:241 -#: admin/woocommerce-admin-attributes.php:307 -#: admin/woocommerce-admin-attributes.php:379 -msgid "Slug" -msgstr "Nume scurt" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:245 -#: admin/woocommerce-admin-attributes.php:381 -msgid "" -"Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "" -"Acest nume scurt trebuie să fie unicat și mai scurt de 28 de caractere. Este " -"utilizat asemenea unui link, în general corespunde cu numele atributului " -"
    ex.: Nume Atribut: Sistem de Prindere » Nume Scurt: sistem-de-prindere." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:254 -#: admin/woocommerce-admin-attributes.php:387 -msgid "Select" -msgstr "Selectează" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:255 -#: admin/woocommerce-admin-attributes.php:388 -msgid "Text" -msgstr "Text" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:258 -#: admin/woocommerce-admin-attributes.php:391 -msgid "" -"Determines how you select attributes for products. Text " -"allows manual entry via the product page, whereas select " -"attribute terms can be defined from this section. If you plan on using an " -"attribute for variations use select." -msgstr "" -"Tipul atributului determină modul de afișare.

    Tip: Text permite adăugarea atributului direct pe pagina de produs.

    Tip: Selectează trebuie definit după adăugarea " -"atributului. Pentru a folosi atributele în generearea de variații de produs " -"folosește tipul de atribut Selectează." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:263 -#: admin/woocommerce-admin-attributes.php:395 -msgid "Default sort order" -msgstr "Sortare implicită" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:267 -#: admin/woocommerce-admin-attributes.php:335 -#: admin/woocommerce-admin-attributes.php:397 -msgid "Custom ordering" -msgstr "Sortare personalizată." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:269 -#: admin/woocommerce-admin-attributes.php:332 -#: admin/woocommerce-admin-attributes.php:399 -msgid "Term ID" -msgstr "ID - Termen" - -#: admin/woocommerce-admin-attributes.php:271 -#: admin/woocommerce-admin-attributes.php:401 -msgid "" -"Determines the sort order on the frontend for this attribute. If using " -"custom ordering, you can drag and drop the terms in this attribute" -msgstr "" -"Stabilește ordinea de sortare pe interfață pentru acest atribut. Dacă " -"utilizați o ordine personalizată, aveți posibilitatea să glisați și să " -"fixați termenii în acest atribut" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:276 -msgid "Update" -msgstr "Actualizează" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:309 -msgid "Order by" -msgstr "Sortează după" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:310 -msgid "Terms" -msgstr "Termeni" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:355 -msgid "Configure terms" -msgstr "Configurează" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:359 -msgid "No attributes currently exist." -msgstr "Momentan nu există atribute produs." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:369 -msgid "Add New Attribute" -msgstr "Adaugă Atribut Nou" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:370 -msgid "" -"Attributes let you define extra product data, such as size or colour. You " -"can use these attributes in the shop sidebar using the \"layered nav\" " -"widgets. Please note: you cannot rename an attribute later on." -msgstr "" -"Atributele îți permit să adaugi mai multe date pentru un produs cum ar fi: " -"mărime, culoare, etc.

    Atributele pot fi utilizate pentru filtra " -"produsele (folosind widget-uri WooCommerce) sau pentru a creea variații de " -"produse (culori diferite, modalități diferite de prindere, etc. )

    ATENȚIE: O dată salvat, numele unui atribut nu mai " -"poate fi modificat." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:404 -msgid "Add Attribute" -msgstr "Adaugă Atribut" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:415 -msgid "Are you sure you want to delete this attribute?" -msgstr "Ești sigur că vrei să ștergi acest atribut?" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:26 -#: admin/woocommerce-admin-reports.php:30 -#: admin/woocommerce-admin-reports.php:75 -#: admin/woocommerce-admin-reports.php:91 -#: admin/woocommerce-admin-reports.php:102 -msgid "Overview" -msgstr "Prezentare Generală" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:29 -msgid "" -"Thank you for using WooCommerce :) Should you need help using or extending " -"WooCommerce please read the documentation. For further " -"assistance you can use the community forum or if you have " -"access, our support desk." -msgstr "" -"Vă mulțumim că utilizați WooCommerce :) Dacă aveți nevoie de ajutor pentru a " -"utiliza sau modifica WooCommerce citiți documentația. " -"Pentru modificări sau probleme neprevăzute puteți utiliza Forum-ul de Comunitate sau dacă aveți acces Forum-ul " -"Membrilor." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:31 -msgid "" -"If you are having problems, or to assist us with support, please check the " -"status page to identify any problems with your configuration:" -msgstr "" -"Dacă întâmpinați probleme sau doriți să vă ajutăm cu suport tehnic, " -"verificați Pagina \"Stare de Sistem\" pentru a identifica problemele " -"configurației dvs." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:33 admin/woocommerce-admin-init.php:87 -#: admin/woocommerce-admin-status.php:26 -msgid "System Status" -msgstr "Stare Sistem" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:35 -msgid "" -"If you come across a bug, or wish to contribute to the project you can also " -"get involved on GitHub." -msgstr "" -"Dacă întâmpinați o eroare sau doriți să contribuiți la proiectul WooCommerce " -"vă puteți implica pe GitHub." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:43 -msgid "" -"Here you can set up your store and customise it to fit your needs. The " -"sections available from the settings page include:" -msgstr "" -"De aici poți activa și modifica magazinul online astfel încât să corespundă " -"nevoilor tale. Secțiunile de setări disponibile includ:" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:44 -msgid "" -"General settings such as your shop base, currency, and script/styling " -"options which affect features used in your store." -msgstr "" -"Setări generale ca Pagina de bază a magazinului, monedă precum și setări de " -"bază pentru afișarea produselor." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:45 -#: admin/woocommerce-admin-settings.php:182 -msgid "Pages" -msgstr "Pagini" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:45 -msgid "" -"This is where important store page are defined. You can also set up other " -"pages (such as a Terms page) here." -msgstr "" -"Aici sunt definite paginile importatante ale magazinului, tot aici pot fi " -"setate și alte pagini (precum Termeni și Condiții)" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:46 -msgid "" -"Options for how things like price, images and weights appear in your product " -"catalog." -msgstr "" -"Opțiuni ce controlează modalitatea de afișare a prețurilor, imaginilor și a " -"greutății produselor oferite de magazin." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:47 -msgid "Options concerning stock and stock notices." -msgstr "Opțiuni de administrare a stocurilor." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:48 -msgid "Options concerning tax, including international and local tax rates." -msgstr "Opțiuni de configurare a taxelor achitate de client." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:49 -msgid "" -"This is where shipping options are defined, and shipping methods are set up." -msgstr "Aici sunt definite opțiunile de expediere a produselor." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:50 -msgid "Payment Methods" -msgstr "Metode de Plată" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:50 -msgid "" -"This is where payment gateway options are defined, and individual payment " -"gateways are set up." -msgstr "" -"Aici sunt definite opțiunile prin care clientul poate achita valoarea " -"comenzilor efectuate." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:51 -#: admin/woocommerce-admin-settings.php:187 -msgid "Emails" -msgstr "Email-uri" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:51 -msgid "Here you can customise the way WooCommerce emails appear." -msgstr "" -"De aici puteți configura modalitatea de afișare a emailurilor trimise de " -"sistemul WooCommerce." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:52 -#: admin/woocommerce-admin-settings.php:188 -msgid "Integration" -msgstr "Integrare" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:52 -msgid "" -"The integration section contains options for third party services which " -"integrate with WooCommerce." -msgstr "" -"Secțiunea \"Integrare\" conține opțiuni de implementare a serviciilor unor " -"terțe părți" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:57 admin/woocommerce-admin-init.php:64 -msgid "Reports" -msgstr "Rapoarte" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:59 -msgid "" -"The reports section can be accessed from the left-hand navigation menu. Here " -"you can generate reports for sales and customers." -msgstr "" -"Secțiunea de Rapoarte poate fi accesată din meniul stânga, unde pot fi " -"vizualizate diferite rapoarte de vânzări." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:60 -#: admin/woocommerce-admin-reports.php:27 -#: admin/woocommerce-admin-reports.php:986 -#: admin/woocommerce-admin-reports.php:1082 -#: admin/woocommerce-admin-reports.php:1199 -msgid "Sales" -msgstr "Vânzări" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:60 -msgid "Reports for sales based on date, top sellers and top earners." -msgstr "" -"Rapoarte de vânzări pe date calendaristice, pentru cele mai vândute produse." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:61 -#, fuzzy -msgid "Coupon usage reports." -msgstr "Cupon Salvat." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:62 -#: admin/woocommerce-admin-reports.php:88 -msgid "Customers" -msgstr "Clienți" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:62 -msgid "Customer reports, such as signups per day." -msgstr "Rapoarte clienți, cum ar fi înregistrările de clienți noi pe zi." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:63 -msgid "Stock reports for low stock and out of stock items." -msgstr "" -"Rapoarte stocuri pentru produsele cu stoc redus și produsele cu stoc 0." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:68 -#: admin/woocommerce-admin-dashboard.php:142 -msgid "Orders" -msgstr "Comenzi" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:70 -msgid "" -"The orders section can be accessed from the left-hand navigation menu. Here " -"you can view and manage customer orders." -msgstr "" -"Secțiunea \"Comenzi\" poate fi accesată din meniul principal stânga. De aici " -"pot fi vizualizate și administrate toate comenzile." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:71 -msgid "" -"Orders can also be added from this section if you want to set them up for a " -"customer manually." -msgstr "Pot fi adăugate și comenzi manuale din această secțiune" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:78 -msgid "" -"Coupons can be managed from this section. Once added, customers will be able " -"to enter coupon codes on the cart/checkout page. If a customer uses a coupon " -"code they will be viewable when viewing orders." -msgstr "" -"Cupoanele de Promoții pot fi administrate din această secțiune. Odată " -"adăugate, codul cupoanelor de promoții pot fi introduse de către clienți de " -"pe paginile de Coș sau CheckOut. Dacă un client utilizează un cupon de " -"promoție, acest lucru va putea fi vizualizate în momentul verificării unei " -"comenzi." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:82 -msgid "For more information:" -msgstr "Mai multe informații:" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:83 admin/woocommerce-admin-init.php:62 -msgid "WooCommerce" -msgstr "WooCommerce" - -#: admin/woocommerce-admin-content.php:84 -msgid "Project on WordPress.org" -msgstr "Proiectul pe WordPress.org" - -#: admin/woocommerce-admin-content.php:85 -msgid "Project on Github" -msgstr "Proiectul pe Github" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:86 -msgid "WooCommerce Docs" -msgstr "WooCommerce Documentatie" - -#: admin/woocommerce-admin-content.php:87 -msgid "Official Extensions" -msgstr "Extensii Oficiale" - -#: admin/woocommerce-admin-content.php:88 -msgid "Official Themes" -msgstr "Teme Oficiale" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:40 -msgid "Monthly Sales" -msgstr "Vânzări Lunare" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:43 -msgid "WooCommerce Right Now" -msgstr "WooCommerce Acum" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:44 -msgid "WooCommerce Recent Orders" -msgstr "WooCommerce Comenzi Recente" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:45 -msgid "WooCommerce Recent Reviews" -msgstr "WooCommerce Recent Reviews" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:78 -msgid "Shop Content" -msgstr "Conținut Magazin" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:84 -#: admin/woocommerce-admin-functions.php:194 -#: admin/woocommerce-admin-init.php:771 -#: admin/woocommerce-admin-reports.php:985 -#: admin/woocommerce-admin-reports.php:1081 -msgid "Product" -msgid_plural "Products" -msgstr[0] "Produs" -msgstr[1] "Produse" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:98 -msgid "Product Category" -msgid_plural "Product Categories" -msgstr[0] "Categorie Produs" -msgstr[1] "Categorii Produs" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:112 -msgid "Product Tag" -msgid_plural "Product Tags" -msgstr[0] "Etichetă Produs" -msgstr[1] "Etichete Produs" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:126 -msgid "Attribute" -msgid_plural "Attributes" -msgstr[0] "Atribut" -msgstr[1] "Atribute" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:148 -msgid "Pending" -msgstr "În așteptare" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:162 -msgid "On-Hold" -msgstr "Păstrată (On-Hold)" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:190 -msgid "Completed" -msgstr "Terminată" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:207 -msgid "You are using WooCommerce %s." -msgstr "" -"Folosești WooCommerce versiunea %s ." - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:238 -msgid "l jS \\of F Y h:i:s A" -msgstr "l, j F Y Ora H:i:s A" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:239 -msgid "item" -msgid_plural "items" -msgstr[0] "articol" -msgstr[1] "articole" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:239 -msgid "Total:" -msgstr "Total:" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:245 -msgid "There are no product orders yet." -msgstr "Încă nu există comenzi." - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:279 -msgid "out of 5" -msgstr "din 5" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:287 -msgid "There are no product reviews yet." -msgstr "Încă nu există comentarii pentru nici un produs." - -#: admin/woocommerce-admin-dashboard.php:428 -msgid "Sold" -msgstr "Vândut" - -#: admin/woocommerce-admin-dashboard.php:429 -msgid "Earned" -msgstr "Obținut" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:184 -#: admin/woocommerce-admin-install.php:222 -msgid "Order Received" -msgstr "Comandă Primită" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:186 -msgid "" -"Thank you, we are now processing your order. Your order's details are below." -msgstr "" -"Vă mulțumim! Comanda dvs. este în curs de procesare. Detaliile sunt afișate " -"mai jos." - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:188 -msgid "Order:" -msgstr "Comandă:" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:195 -msgid "Quantity" -msgstr "Cantitate" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:208 -msgid "Order total:" -msgstr "Total Comandă:" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:214 -msgid "Customer details" -msgstr "Detalii Client" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:220 -msgid "Billing address" -msgstr "Adresa de Facturare" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:227 -msgid "Shipping address" -msgstr "Adresa de Livrare" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:459 -msgid "Could not compile woocommerce.less:" -msgstr "Woocommerce.less nu a putut fi compilat:" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:480 -#: admin/woocommerce-admin-functions.php:481 -msgid "Mark processing" -msgstr "Marchează în curs de procesare" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:483 -#: admin/woocommerce-admin-functions.php:484 -msgid "Mark completed" -msgstr "Marchează finalizat" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:521 -msgid "Order status changed by bulk edit:" -msgstr "Status comandă modificat prin editare multiplă:" - -# @ default -#: admin/woocommerce-admin-functions.php:544 -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "Status comandă modificat." -msgstr[1] "%s statusuri comenzi modificate." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:86 -msgid "WooCommerce Settings" -msgstr "Setări WooCommerce" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:87 -msgid "WooCommerce Status" -msgstr "Status WooCommerce" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:140 admin/woocommerce-admin-init.php:142 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Comenzi" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:446 -msgid "" -"Are you sure you want to remove the selected items? If you have previously " -"reduced this item's stock, or this order was submitted by a customer, you " -"will need to manually restore the item's stock." -msgstr "" -"Ești sigur că vrei să ștergi elementele selectate? Dacă stocul acestor " -"articole a fost redus înainte, sau această comandă a fost trimisă de către " -"un client, va trebui să restaurezi manual stocurile produselor." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:447 -msgid "Please select some items." -msgstr "Vă rugăm să selectați unele elemente." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:448 -msgid "Remove this item meta?" -msgstr "Șterge meta pentru acest articol?" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:449 -msgid "Remove this attribute?" -msgstr "Șterge acest atribut?" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:457 -msgid "Enter a name for the new attribute term:" -msgstr "Introdu un nume pentru noul atribut:" - -#: admin/woocommerce-admin-init.php:458 -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "" -"Calculați totalurile bazate pe produsele comandate, reduceri și transport?" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:459 -msgid "" -"Calculate line taxes? This will calculate taxes based on the customers " -"country. If no billing/shipping is set it will use the store base country." -msgstr "" -"Calculăm liniile de taxe? Această opțiune va calcula taxele bazate pe țara " -"din care provine clientul. Dacă nu este specificată nici o adresă de " -"facturare sau de livrare, ca bază de calcul va fi folosită țara din care " -"provine magazinul." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:460 -msgid "" -"Copy billing information to shipping information? This will remove any " -"currently entered shipping information." -msgstr "" -"Copiem informațiile de facturare peste cele de livrare? Acest lucru va " -"șterge informațiile de livrare existente." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:461 -msgid "" -"Load the customer's billing information? This will remove any currently " -"entered billing information." -msgstr "" -"Încărcăm Adresa de Facturare a clientului? Acest lucru va suprascrie " -"informația existentă în câmpurile Adresei de Facturare." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:462 -msgid "" -"Load the customer's shipping information? This will remove any currently " -"entered shipping information." -msgstr "" -"Încărcăm Adresa de Livrare a clientului? Acest lucru va suprascrie " -"informația existentă în câmpurile Adresei de Livrare." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:466 -msgid "No customer selected" -msgstr "Nu a fost selectat nici un client" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:675 -msgid "Product updated. View Product" -msgstr "Produs Actualizat. Vezi Produs" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:676 admin/woocommerce-admin-init.php:691 -#: admin/woocommerce-admin-init.php:706 -msgid "Custom field updated." -msgstr "Câmp personalizat actualizat." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:677 admin/woocommerce-admin-init.php:692 -#: admin/woocommerce-admin-init.php:707 -msgid "Custom field deleted." -msgstr "Câmp personalizat șters." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:678 -msgid "Product updated." -msgstr "Produs Actualizat." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:679 -msgid "Product restored to revision from %s" -msgstr "Produsul a fost restaurat la versiunea din %s" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:680 -msgid "Product published. View Product" -msgstr "Produs publicat. Vezi Produs" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:681 -msgid "Product saved." -msgstr "Produs Salvat." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:682 -msgid "Product submitted. Preview Product" -msgstr "" -"Produs prezentat. Previzualizează Produs" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:683 -msgid "" -"Product scheduled for: %1$s. Preview Product" -msgstr "" -"Produs programat pentru a fi publicat pe data: %1$s. Previzualizează Produs" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:684 admin/woocommerce-admin-init.php:699 -#: admin/woocommerce-admin-init.php:714 -msgid "M j, Y @ G:i" -msgstr "M j, Y @ G:i" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:685 -msgid "" -"Product draft updated. Preview Product" -msgstr "" -"Ciornă produs actualizată. Vizualizează " -"Produs" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:690 admin/woocommerce-admin-init.php:693 -#: admin/woocommerce-admin-init.php:695 -msgid "Order updated." -msgstr "Comandă Actualizată." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:694 -msgid "Order restored to revision from %s" -msgstr "Comandă restaurată la revizia %s" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:696 -msgid "Order saved." -msgstr "Comandă Salvată." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:697 -msgid "Order submitted." -msgstr "Comandă Trimisă." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:698 -msgid "Order scheduled for: %1$s." -msgstr "Comandă programată pentru: %1$s." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:700 -msgid "Order draft updated." -msgstr "Ciornă Comandă Actualizată." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:705 admin/woocommerce-admin-init.php:708 -#: admin/woocommerce-admin-init.php:710 -msgid "Coupon updated." -msgstr "Cupon Actualizat." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:709 -msgid "Coupon restored to revision from %s" -msgstr "Cupon restaurat la revizia %s" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:711 -msgid "Coupon saved." -msgstr "Cupon Salvat." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:712 -msgid "Coupon submitted." -msgstr "Cupon Trimis." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:713 -msgid "Coupon scheduled for: %1$s." -msgstr "" -"Cupon programat pentru pentru a fi activat pe data: %1$s." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:715 -msgid "Coupon draft updated." -msgstr "Ciornă Cupon Actualizat." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:732 -msgid "Order notes" -msgstr "Mențiuni Comandă" - -#: admin/woocommerce-admin-init.php:747 -msgid "" -"These settings control the permalinks used for products. These settings only " -"apply when not using \"default\" permalinks above." -msgstr "" -"Aceste setări controlează legăturile permanente folosite pentru produse. " -"Aceste setări se aplică numai când nu sunt folosite \"implicit\" " -"legăturile permanente mai sus." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:754 -msgctxt "default-slug" -msgid "shop" -msgstr "magazin" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:755 -msgctxt "default-slug" -msgid "product" -msgstr "produs" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:776 -msgid "Shop base" -msgstr "Pagina de bază - Magazin" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:780 -msgid "Shop base with category" -msgstr "Pagina de bază - Magazin și Categorie" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:786 -msgid "Custom Base" -msgstr "Structură personalizată" - -#: admin/woocommerce-admin-init.php:788 -msgid "" -"Enter a custom base to use. A base must be set or WordPress " -"will use default instead." -msgstr "" -"Introduce-ţi o bază personalizată pentru a fi utilizată împreună cu adresa. " -"O bază pentru adresă trebuie să fie configurată sau " -"WordPress-ul va utiliza valorile implicite." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:816 -msgid "Product permalink base" -msgstr "Structură - Legătura permanentă Produs" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:821 -msgid "Product category base" -msgstr "Bază - Categorie produs" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:828 -msgid "Product tag base" -msgstr "Bază - Etichetă produs" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:835 -msgid "Product attribute base" -msgstr "Bază - Atribute Produs" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:192 -msgctxt "page_slug" -msgid "shop" -msgstr "magazin" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:192 -msgid "Shop" -msgstr "Magazin" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:195 -msgctxt "page_slug" -msgid "cart" -msgstr "cos" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:195 -#: admin/woocommerce-admin-status.php:277 -msgid "Cart" -msgstr "Coș" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:198 -msgctxt "page_slug" -msgid "checkout" -msgstr "finalizare-comanda" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:201 -msgctxt "page_slug" -msgid "my-account" -msgstr "contul-meu" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:201 -#: admin/woocommerce-admin-status.php:293 -msgid "My Account" -msgstr "Contul Meu" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:207 -msgctxt "page_slug" -msgid "edit-address" -msgstr "modificare-adresa" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:207 -msgid "Edit My Address" -msgstr "Editează Adresa Mea" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:210 -msgctxt "page_slug" -msgid "view-order" -msgstr "vezi-comanda" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:210 -#: admin/woocommerce-admin-status.php:301 -msgid "View Order" -msgstr "Vezi Comanenzi" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:213 -msgctxt "page_slug" -msgid "change-password" -msgstr "modifica-parola" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:213 -#: admin/woocommerce-admin-status.php:305 -msgid "Change Password" -msgstr "Modifică Parola" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:216 -msgctxt "page_slug" -msgid "logout" -msgstr "iesire-din-cont" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:216 -msgid "Logout" -msgstr "Ieșire din cont" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:219 -msgctxt "page_slug" -msgid "pay" -msgstr "plateste" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:219 -msgid "Checkout → Pay" -msgstr "Plăteşte → Plată" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:222 -msgctxt "page_slug" -msgid "order-received" -msgstr "comanda-primita" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:36 -msgid "Sales by day" -msgstr "Vânzări Zilnice" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:41 -msgid "Sales by month" -msgstr "Vânzări Lunare" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:46 -msgid "Taxes by month" -msgstr "Taxe per lună" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:51 -msgid "Product Sales" -msgstr "Vânzări Produs" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:56 -msgid "Top sellers" -msgstr "Cele mai multe vândute (cantitativ)" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:61 -msgid "Top earners" -msgstr "Cele mai mari vânzări (valoare)" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:66 -msgid "Sales by category" -msgstr "Vânzări per categorii" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:81 -msgid "Discounts by coupon" -msgstr "Reduceri per Cupon" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:232 -#: admin/woocommerce-admin-reports.php:497 -#: admin/woocommerce-admin-reports.php:702 -#: admin/woocommerce-admin-reports.php:883 -msgid "Sales amount" -msgstr "Suma Vânzărilor" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:237 -#: admin/woocommerce-admin-reports.php:497 -#: admin/woocommerce-admin-reports.php:702 -#: admin/woocommerce-admin-reports.php:883 -msgid "Number of sales" -msgstr "număr de vânzări" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:369 -msgid "Total sales" -msgstr "Total vânzări" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:371 -#: admin/woocommerce-admin-reports.php:377 -#: admin/woocommerce-admin-reports.php:383 -#: admin/woocommerce-admin-reports.php:389 -#: admin/woocommerce-admin-reports.php:395 -#: admin/woocommerce-admin-reports.php:401 -#: admin/woocommerce-admin-reports.php:644 -#: admin/woocommerce-admin-reports.php:650 -#: admin/woocommerce-admin-reports.php:656 -#: admin/woocommerce-admin-reports.php:662 -#: admin/woocommerce-admin-reports.php:828 -#: admin/woocommerce-admin-reports.php:834 -#: admin/woocommerce-admin-reports.php:840 -#: admin/woocommerce-admin-reports.php:846 -#: admin/woocommerce-admin-reports.php:1364 -#: admin/woocommerce-admin-reports.php:1370 -#: admin/woocommerce-admin-reports.php:1376 -#: admin/woocommerce-admin-reports.php:1810 -#: admin/woocommerce-admin-reports.php:1816 -#: admin/woocommerce-admin-reports.php:1822 -#: admin/woocommerce-admin-reports.php:1828 -#: admin/woocommerce-admin-reports.php:1834 -#: admin/woocommerce-admin-reports.php:1840 -#: admin/woocommerce-admin-reports.php:2304 -#: admin/woocommerce-admin-reports.php:2315 -#: admin/woocommerce-admin-reports.php:2326 -msgid "n/a" -msgstr "N / A" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:375 -msgid "Total orders" -msgstr "Total comenzi" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:377 -#: admin/woocommerce-admin-reports.php:650 -#: admin/woocommerce-admin-reports.php:834 -msgid "items" -msgstr "Articole" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:381 -msgid "Average order total" -msgstr "Medie totală a comenzii" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:387 -msgid "Average order items" -msgstr "Număr mediu de produse per comandă" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:393 -msgid "Discounts used" -msgstr "Reduceri utilizate" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:399 -msgid "Total shipping costs" -msgstr "Costuri totale cu expedierea" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:407 -msgid "This month's sales" -msgstr "Vânzări pentru luna în curs" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1356 -msgid "From:" -msgstr "De la:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1356 -msgid "To:" -msgstr "La:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:821 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1229 -#: admin/woocommerce-admin-reports.php:1356 -#: admin/woocommerce-admin-reports.php:1489 -#: admin/woocommerce-admin-reports.php:2293 -#: admin/woocommerce-admin-reports.php:2476 -msgid "Show" -msgstr "Arată" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:642 -msgid "Total sales in range" -msgstr "Vânzări totale pentru perioada selectată" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:648 -msgid "Total orders in range" -msgstr "Comenzi totale pentru perioada selectată" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:654 -msgid "Average order total in range" -msgstr "Media valorii unei comenzi pentru perioada selectată" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:660 -msgid "Average order items in range" -msgstr "Număr mediu de produse per comandă pentru perioada selectată" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:668 -msgid "Sales in range" -msgstr "Vânzări pentru perioada selectată" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:815 -#: admin/woocommerce-admin-reports.php:2287 -msgid "Year:" -msgstr "An:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:826 -msgid "Total sales for year" -msgstr "Total vânzări pentru anul" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:832 -msgid "Total orders for year" -msgstr "Total comenzi pentru anul" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:838 -msgid "Average order total for year" -msgstr "Total mediu comadă per an" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:844 -msgid "Average order items for year" -msgstr "Medie produse pe comandă per an (?)" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:852 -msgid "Monthly sales for year" -msgstr "Vânzări lunare pentru anul" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1000 -msgid "Product does not exist" -msgstr "Produsul nu există" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1097 -msgid "Product no longer exists" -msgstr "Produsul nu mai există" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1194 -msgid "Sales for %s:" -msgstr "Vânzări pentru %s:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1198 -#: admin/woocommerce-admin-reports.php:2335 -msgid "Month" -msgstr "Lună" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1219 -msgid "No sales :(" -msgstr "Nici o vânzare :(" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1362 -msgid "Total orders containing coupons" -msgstr "Comenzi totale incluzând cupoanele" - -#: admin/woocommerce-admin-reports.php:1368 -msgid "Percent of orders containing coupons" -msgstr "Procentul din Comenzi la care s-au folosit cupoane" - -#: admin/woocommerce-admin-reports.php:1374 -msgid "Total coupon discount" -msgstr "Reducere Totală Cupon" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1383 -msgid "Most popular coupons" -msgstr "Cele mai populare Cupoane" - -#: admin/woocommerce-admin-reports.php:1393 -msgid "Used 1 time" -msgid_plural "Used %d times" -msgstr[0] "Folosit 1 dată" -msgstr[1] "Folosit de %d ori" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1396 -#: admin/woocommerce-admin-reports.php:1418 -msgid "No coupons found" -msgstr "Nici un Cupon nu a fost găsit" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1405 -msgid "Greatest discount amount" -msgstr "Cea mai mare sumă redusă" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1415 -msgid "Discounted %s" -msgstr "Redus %s" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1474 -#: admin/woocommerce-admin-reports.php:2453 -msgid "Show:" -msgstr "Afișează:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1531 -msgid "Coupon" -msgstr "Cupon" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1614 -msgid "Top coupon" -msgstr "Cel mai bun Cupon" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1622 -msgid "Worst coupon" -msgstr "Cel mai prost Cupon" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1630 -msgid "Discount average" -msgstr "Medie Reducere" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1638 -msgid "Discount median" -msgstr "Reduceri mediane" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1658 -msgid "Monthly discounts by coupon" -msgstr "Reduceri lunare per cupon" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1808 -msgid "Total customers" -msgstr "Total Clienți" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1814 -msgid "Total customer sales" -msgstr "Total comenzi clienți" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1820 -msgid "Total guest sales" -msgstr "Total comenzi utilizatori neînregistrați" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1826 -msgid "Total customer orders" -msgstr "Total comenzi clienți" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1832 -msgid "Total guest orders" -msgstr "Total comenzi utilizatori neînregistrați" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1838 -msgid "Average orders per customer" -msgstr "Număr mediu de comenzi per client" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1846 -msgid "Signups per day" -msgstr "Înscrieri pe zi" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2067 -msgid "Low stock" -msgstr "Stoc redus" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2090 -#: admin/woocommerce-admin-reports.php:2129 -msgid "%d in stock" -msgid_plural "%d in stock" -msgstr[0] "%d în stoc" -msgstr[1] "%d în stoc" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2095 -msgid "No products are low in stock." -msgstr "Nu sunt produse cu stoc redus." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2127 -msgid "Marked out of stock" -msgstr "Marcat ca \"Nu este în Stoc\"" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2134 -msgid "No products are out in stock." -msgstr "Toate produsele sunt în stoc." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2298 -msgid "Total taxes for year" -msgstr "Total taxe per an" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2309 -msgid "Total product taxes for year" -msgstr "Total taxe produs per an" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2320 -msgid "Total shipping tax for year" -msgstr "Total taxe de livrare per an" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2336 -msgid "Total Sales" -msgstr "Vânzări Totale" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2336 -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "Suma câmpurilor 'Total Comandă' per comenzi." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2337 -msgid "Total Shipping" -msgstr "Total Livrări" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2337 -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "Suma câmpurilor 'Total Livrări' per comenzi." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2338 -msgid "Total Product Taxes" -msgstr "Total Taxe Produs" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2338 -msgid "This is the sum of the 'Cart Tax' field within your orders." -msgstr "Suma câmpurilor 'Taxe Coș' per comenzi." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2339 -msgid "Total Shipping Taxes" -msgstr "Total Taxe Livrări" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2339 -msgid "This is the sum of the 'Shipping Tax' field within your orders." -msgstr "Suma câmpurilor 'Taxe Livrări' per comenzi." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2340 -msgid "Total Taxes" -msgstr "Total Taxe" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2340 -msgid "" -"This is the sum of the 'Cart Tax' and 'Shipping Tax' fields within your " -"orders." -msgstr "Suma câmpurilor 'Taxe Coș' și 'Taxă Livrări' per comenzi." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2341 -msgid "Net profit" -msgstr "Profit Net" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2341 -msgid "Total sales minus shipping and tax." -msgstr "Total vânzări, minus costuri livrări și taxe." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2386 -msgid "Toggle tax rows" -msgstr "Comută rînduri taxe" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2529 -msgid "Category" -msgstr "Categorie" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2632 -msgid "Top category" -msgstr "Top Categorie" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2641 -msgid "Worst category" -msgstr "Cea mai proastă categorie" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2649 -msgid "Category sales average" -msgstr "Medie de vânzare per categorie" - -#: admin/woocommerce-admin-reports.php:2660 -msgid "Category sales median" -msgstr "Vânzări mediane per categorie" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2680 -msgid "Monthly sales by category" -msgstr "Vânzări lunare per categorie" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:45 -msgid "Action failed. Please refresh the page and retry." -msgstr "Acțiune eșuată. Reîmporpătați pagini și încecați din nou!" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:162 -msgid "Your settings have been saved." -msgstr "Setările dvs. au fost salvate." - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:208 -msgid "" -"More functionality and gateway options available via WC official extensions." -msgstr "" -"Mai multe plugin-uri de funcționalitate și procesatori de plăți disponibili " -"prin extensiile oficiale WooCommerce." - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:226 -msgid "Tax Rates" -msgstr "Cote de impozitare" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:253 -msgid "Email Options" -msgstr "Setări Emailuri" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:386 -msgid "Save changes" -msgstr "Salvează modificări" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:427 -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "" -"Modificările efectuate până acum vor fi pierdute dcă părăsiți pagina fără să " -"salvați." - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:799 -msgid "Hard Crop" -msgstr "Tăiere imagine fără redimensionare" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:824 -msgid "Select a page…" -msgstr "Selectează o pagină…" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:847 -msgid "Choose a country…" -msgstr "Selectează o țară…" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:867 -msgid "Choose countries…" -msgstr "Selectează țările…" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:27 -#: admin/woocommerce-admin-status.php:622 -msgid "Tools" -msgstr "Unelte" - -#: admin/woocommerce-admin-status.php:62 -msgid "Please include this information when requesting support:" -msgstr "Te rugăm să incluzi această informație când solicitați ajutor:" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:63 -msgid "Download System Report File" -msgstr "Descarcă Fișierul care conține Raportul de Sistem" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:71 -msgid "Environment" -msgstr "Mediu Server" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:77 -msgid "Home URL" -msgstr "Adresă de origine" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:81 -msgid "Site URL" -msgstr "Adresă site" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:85 -msgid "WC Version" -msgstr "Versiune WC" - -#: admin/woocommerce-admin-status.php:89 -msgid "WC Database Version" -msgstr "Versiune Bază de Date WC" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:93 -msgid "WP Version" -msgstr "Versiune WordPress" - -#: admin/woocommerce-admin-status.php:97 -msgid "Web Server Info" -msgstr "Informații Server Web" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:101 -msgid "PHP Version" -msgstr "Versiune PHP" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:105 -msgid "MySQL Version" -msgstr "Versiune MySQL" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:109 -msgid "WP Memory Limit" -msgstr "Limita de memorie WP" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:114 -msgid "" -"%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "" -"%s - Vă recomandăm să setați limita de memorie la minim 64MB. Vezi: Cum să crești limita de memorie alocată pentru PHP" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:121 -msgid "WP Debug Mode" -msgstr "WP Debug Mode" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:125 -msgid "WP Max Upload Size" -msgstr "Dimensiune maximă fișier încărcabil în WP" - -#: admin/woocommerce-admin-status.php:129 -msgid "PHP Post Max Size" -msgstr "Dimensiune Maximă pentru PHP POST" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:133 -msgid "PHP Time Limit" -msgstr "Limita de timp pentru PHP" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:137 -msgid "WC Logging" -msgstr "Înregistrare Elemente WooCommerce" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:140 -msgid "Log directory is writable." -msgstr "Directorul în care se salvează jurnalul, poate fi scris." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:142 -msgid "" -"Log directory (woocommerce/logs/) is not writable. Logging will " -"not be possible." -msgstr "" -"Directorul în care se salvează jurnalul (woocommerce/logs/) nu " -"poate fi scris, înregistrarea în jurnal nu poate fi efectuată." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:149 -msgid "fsockopen/cURL" -msgstr "fsockopen/cURL" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:152 -msgid "Your server has fsockopen and cURL enabled." -msgstr "Serverul folosit are fsockopen și cURL activat." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:154 -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "Serverul folosit are fsockopen → activat, cURL → dezactivat." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:156 -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "Serverul folosit are cURL → activat, fsockopen → dezactivat." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:160 -msgid "" -"Your server does not have fsockopen or cURL enabled - PayPal IPN and other " -"scripts which communicate with other servers will not work. Contact your " -"hosting provider." -msgstr "" -"Serverul folosit nu are fsockopen sau cURL activat - PayPal IPN și alte " -"script-uri ce comunică cu alte servere nu vor funcționa. Contactează " -"furnizorul tău de servicii de găzduire." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:165 -msgid "SOAP Client" -msgstr " SOAP Client" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:167 -msgid "Your server has the SOAP Client class enabled." -msgstr "Serverul folosit are clasa SOAP Client activată." - -#: admin/woocommerce-admin-status.php:170 -msgid "" -"Your server does not have the SOAP Client class enabled - " -"some gateway plugins which use SOAP may not work as expected." -msgstr "" -"Serverul Dvs. nu are clasa SOAP Client activată - unele " -"plugin-uri care crează conexiuni prin utilizarea SOAP s-ar putea să nu " -"funcţioneze corespunzător." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:175 -msgid "WP Remote Post" -msgstr "Verificare publicare de la distanță (?)" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:186 -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "" -"Testul wp_remote_post() a fost completat cu succes - PayPal IPN funcționează." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:189 -msgid "" -"wp_remote_post() failed. PayPal IPN won't work with your server. Contact " -"your hosting provider. Error:" -msgstr "" -"Testul wp_remote_post() a eșuat. PayPal IPN nu va funcționa pentre server-ul " -"dvs. Vă rugăm să contactați furnizorul dvs. de gazăduire. Eroare:" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:192 -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "" -"Testul wp_remote_post() a eșuat. PayPal IPN s-ar putea să nu funcționeze pe " -"server-ul dvs." - -#: admin/woocommerce-admin-status.php:215 -msgid "Plugins" -msgstr "Module" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:221 -msgid "Installed Plugins" -msgstr "Plugin-uri instalate" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:236 -msgid "by" -msgstr "de" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:236 -msgid "version" -msgstr "versiune" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:259 -msgid "Force SSL" -msgstr "Forțează SSL" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:266 -msgid "WC Pages" -msgstr "Pagini WC" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:273 -#, fuzzy -msgid "Shop Base" -msgstr "Pagina de bază - Magazin" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:285 -msgid "Pay" -msgstr "Plătește" - -#: admin/woocommerce-admin-status.php:289 -msgid "Thanks" -msgstr "Mulțumim" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:297 -msgid "Edit Address" -msgstr "Modifică Adresa" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:329 -msgid "Page not set" -msgstr "Pagină nesetată" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:339 -msgid "Page does not exist" -msgstr "Pagina nu există" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:344 -msgid "Page does not contain the shortcode: %s" -msgstr "Pagina nu conține codul scurt: %s" - -#: admin/woocommerce-admin-status.php:363 -msgid "WC Taxonomies" -msgstr "Taxonomii WC" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:369 -msgid "Order Statuses" -msgstr "Statusuri Comenzi" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:379 -msgid "Product Types" -msgstr "Tipuri Produs" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:392 -msgid "Templates" -msgstr "Șabloane" - -#: admin/woocommerce-admin-status.php:398 -msgid "Template Overrides" -msgstr "" - -#: admin/woocommerce-admin-status.php:416 -msgid "No core overrides present in theme." -msgstr "Nu sunt fișiere suprascrise de către temă." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:510 -msgid "WC Transients" -msgstr "Elemente Tranzitorii WC" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:511 -msgid "Clear transients" -msgstr "Curăță Elementele Tranzitorii" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:512 -msgid "This tool will clear the product/shop transients cache." -msgstr "" -"Această unealtă va elimina elementele tranzitorii salvate pentru reutilizare." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:515 -msgid "Expired Transients" -msgstr "Elemente Tranzitorii Expirate" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:516 -msgid "Clear expired transients" -msgstr "Curăță Elementele Tranzitorii expirate" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:517 -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "" -"Această unealtă va elimina TOATE elementele tranzitorii expirate din baza de " -"date a Wordpress." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:520 -msgid "Term counts" -msgstr "Numără Termeni" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:521 -msgid "Recount terms" -msgstr "Renumără Termenii" - -#: admin/woocommerce-admin-status.php:522 -msgid "" -"This tool will recount product terms - useful when changing your settings in " -"a way which hides products from the catalog." -msgstr "" -"Această unealta va renumăra Produsele pentru fiecare Termen - folositoare " -"atunci când schimbi setările într-un mod care ascunde produsele de afișarea " -"în catalog. " - -# @ woocommerce -#: admin/woocommerce-admin-status.php:525 -msgid "Capabilities" -msgstr "Capabilități" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:526 -msgid "Reset capabilities" -msgstr "Resetează Capabilități (Roluri)" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:527 -msgid "" -"This tool will reset the admin, customer and shop_manager roles to default. " -"Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "" -"Dacă nu se vor mai putea accesa paginile de administrare WooCommerce, " -"această unealtă va reseta toate modificările efectuate." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:537 -msgid "Product Transients Cleared" -msgstr "Elementele Tranzitorii ale produsului au fost reinițializate." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:578 -msgid "%d Transients Rows Cleared" -msgstr "Au fost %d rânduri tranzitorii șterse" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:586 -msgid "Roles successfully reset" -msgstr "Roluri resetate cu succes." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:598 -msgid "Terms successfully recounted" -msgstr "Termenii au fost numărați cu succes." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:607 -msgid "There was an error calling %s::%s" -msgstr "A apărut o eroare la inițializarea %s::%s" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:610 -msgid "There was an error calling %s" -msgstr "A apărut o eroare la inițializarea %s" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:25 -#: admin/woocommerce-admin-taxonomies.php:118 -msgid "Display type" -msgstr "Tip Afișare" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:29 -#: admin/woocommerce-admin-taxonomies.php:123 -msgid "Subcategories" -msgstr "Subcategorii" - -#: admin/woocommerce-admin-taxonomies.php:30 -#: admin/woocommerce-admin-taxonomies.php:124 -msgid "Both" -msgstr "Ambele" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:34 -#: admin/woocommerce-admin-taxonomies.php:129 -msgid "Thumbnail" -msgstr "Imagine Medalion" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:38 -#: admin/woocommerce-admin-taxonomies.php:134 -msgid "Upload/Add image" -msgstr "Încarcă / Adaugă imagine" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:39 -#: admin/woocommerce-admin-taxonomies.php:135 -msgid "Remove image" -msgstr "Șterge Imagine" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:64 -#: admin/woocommerce-admin-taxonomies.php:156 -msgid "Use image" -msgstr "Folosește Imaginea" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:222 -msgid "" -"Product categories for your store can be managed here. To change the order " -"of categories on the front-end you can drag and drop to sort them. To see " -"more categories listed click the \"screen options\" link at the top of the " -"page." -msgstr "" -"Categoriile de Produs pentru magazinul dvs. pot fi administrate din această " -"secțiune. Puteți modifica ordinea de sortare a categoriilor pentru afișarea " -"în cadrul magazinului prin tragere și plasare. Pentru a vedea mai multe " -"categorii afișate aici dați click pe \"Screen Options Opțiuni Ecran\" în " -"partea dreatpă superioară a ecranului, sub bara închisă la culoare." - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:237 -msgid "" -"Shipping classes can be used to group products of similar type. These groups " -"can then be used by certain shipping methods to provide different rates to " -"different products." -msgstr "" -"Clasele de Expediere pot fi utilizate pentru a grupa produse similare. " -"Aceste grupuri pot fi utilizate apoi de către anumite Metode de Livrare " -"pentru a afișa costuri diferite de livrare pentru produse diferite." - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:365 -msgid "Configure shipping class" -msgstr "Configurează" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:26 -msgid "Billing Address" -msgstr "Adresă de Facturare" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:27 -msgid "Shipping Address" -msgstr "Adresă de Livrare" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:28 -msgid "Paying Customer?" -msgstr "Client plătitor?" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:29 -msgid "Completed Orders" -msgstr "Comenzi finalizate" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:144 -msgid "Customer Billing Address" -msgstr "Adresa de Facturare a clientului" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:147 admin/woocommerce-admin-users.php:196 -msgid "First name" -msgstr "Prenume" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:151 admin/woocommerce-admin-users.php:200 -msgid "Last name" -msgstr "Nume" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:176 -msgid "Country or state code" -msgstr "Cod Poștal" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:180 admin/woocommerce-admin-users.php:229 -msgid "2 letter Country code" -msgstr "Cod țară format din 2 litere" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:183 -msgid "Telephone" -msgstr "Telefon" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:193 -msgid "Customer Shipping Address" -msgstr "Adresa de Livrare a clientului" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:225 -msgid "State/County or state code" -msgstr "Cod Poștal" - -# @ woocommerce -#~ msgid "" -#~ "WooCommerce has been installed – You're ready to " -#~ "start selling :)" -#~ msgstr "" -#~ "WooCommerce a fost instalat – Ești gata să începi " -#~ "comercializarea produselor tale!" - -# @ woocommerce -#~ msgid "" -#~ "WooCommerce has been updated – You're ready to " -#~ "continue selling :)" -#~ msgstr "" -#~ "WooCommerce a fost actualizat – Poţi continua " -#~ "comercializarea produselor tale!" - -# @ woocommerce -#~ msgid "Price:" -#~ msgstr "Preț" - -# @ woocommerce -#~ msgid "Base Country/Region" -#~ msgstr "Locație magazin" - -# @ woocommerce -#~ msgid "US Dollars ($)" -#~ msgstr "Dolari USD ($)" - -# @ woocommerce -#~ msgid "Euros (€)" -#~ msgstr "Euro (€)" - -# @ woocommerce -#~ msgid "Pounds Sterling (£)" -#~ msgstr "Lire Sterline (£)" - -# @ woocommerce -#~ msgid "Australian Dollars ($)" -#~ msgstr "Dolari Australieni ($)" - -# @ woocommerce -#~ msgid "Brazilian Real ($)" -#~ msgstr "Real - Brazilia ($)" - -# @ woocommerce -#~ msgid "Canadian Dollars ($)" -#~ msgstr "Dolari Canadieni ($)" - -# @ woocommerce -#~ msgid "Czech Koruna (Kč)" -#~ msgstr "Coroane Cehe (Kč)" - -# @ woocommerce -#~ msgid "Danish Krone" -#~ msgstr "Coroane Daneze" - -# @ woocommerce -#~ msgid "Hong Kong Dollar ($)" -#~ msgstr "Dolari Hong Kong ($)" - -# @ woocommerce -#~ msgid "Hungarian Forint" -#~ msgstr "Forinți" - -# @ woocommerce -#~ msgid "Israeli Shekel" -#~ msgstr "Shekel - Israel" - -# @ woocommerce -#~ msgid "Chinese Yuan (¥)" -#~ msgstr "Yuan - China (¥)" - -# @ woocommerce -#~ msgid "Japanese Yen (¥)" -#~ msgstr "Yen Japonez (¥)" - -# @ woocommerce -#~ msgid "Malaysian Ringgits (RM)" -#~ msgstr "Ringgit - Malaysia (RM)" - -# @ woocommerce -#~ msgid "Mexican Peso ($)" -#~ msgstr "Peso - Mexic ($)" - -# @ woocommerce -#~ msgid "New Zealand Dollar ($)" -#~ msgstr "Dolari - Noua Zeelandă ($)" - -# @ woocommerce -#~ msgid "Norwegian Krone" -#~ msgstr "Coroane Norvegiene" - -# @ woocommerce -#~ msgid "Philippine Pesos" -#~ msgstr "Peso - Filipine" - -# @ woocommerce -#~ msgid "Polish Zloty" -#~ msgstr "Zlot - Polonia" - -# @ woocommerce -#~ msgid "Singapore Dollar ($)" -#~ msgstr "Dolari - Singapore ($)" - -# @ woocommerce -#~ msgid "Swedish Krona" -#~ msgstr "Coroane Suedeze" - -# @ woocommerce -#~ msgid "Swiss Franc" -#~ msgstr "Franci Elvețieni" - -# @ woocommerce -#~ msgid "Taiwan New Dollars" -#~ msgstr "Dolari Noi - Taiwan" - -# @ woocommerce -#~ msgid "Thai Baht" -#~ msgstr "Baht - Thailanda" - -# @ woocommerce -#~ msgid "Turkish Lira (TL)" -#~ msgstr "Liră Turcească (TL)" - -# @ woocommerce -#~ msgid "South African rand (R)" -#~ msgstr "Rand - Africa de Sud (R)" - -#~ msgid "Romanian Leu (RON)" -#~ msgstr "Leu (RON)" - -# @ woocommerce -#~ msgid "" -#~ "The following options control the behaviour of the checkout process and " -#~ "customer accounts." -#~ msgstr "" -#~ "Următoarele opțiuni controlează setările paginilor de Finalizare Comandă " -#~ "și paginile de administrare a contului (de către clienți)" - -# @ woocommerce -#~ msgid "Show order comments section" -#~ msgstr "" -#~ "Afișează secțiunea \"Notițe / Mențiuni Comandă\" pe pagina \"Finalizare " -#~ "Comandă\"" - -# @ woocommerce -#~ msgid "Enable coupon form on cart" -#~ msgstr "Activează formularul de cupon pe pagina de Coș" - -# @ woocommerce -#~ msgid "" -#~ "The following options affect the styling of your store, as well as how " -#~ "certain features behave." -#~ msgstr "" -#~ "Opțiunile de mai jos controlează o parte din culorile de prezentare a " -#~ "magazinului și încărcarea script-urilor WooCommerce." - -# @ woocommerce -#~ msgid "Digital Downloads" -#~ msgstr "Descărcări Digitale" - -# @ woocommerce -#~ msgid "The following options are specific to downloadable products." -#~ msgstr "Următoare opțiuni controlează produsele descărcabile (virtuale)." - -# @ woocommerce -#~ msgid "Must be logged in to download files" -#~ msgstr "" -#~ "Utilizator trebuie să fie autentificat pentru a putea descărca fișierele " -#~ "cumpărate." - -# @ woocommerce -#~ msgid "Limit Quantity" -#~ msgstr "Limitează Cantitatea" - -# @ woocommerce -#~ msgid "Limit the purchasable quantity of downloadable-virtual items to 1" -#~ msgstr "" -#~ "Clientul poate achiziționa o singură bucată dintr-un produs descărcabil - " -#~ "virtual." - -# @ woocommerce -#~ msgid "Logout link" -#~ msgstr "Link Deconectare" - -# @ woocommerce -#~ msgid "Append a logout link to menus containing \"My Account\"" -#~ msgstr "" -#~ "Adaugă un link de Deconectare la toate meniurile ce conțin fraza \"Contul " -#~ "Meu\"" - -# @ woocommerce -#~ msgid "Default sorting" -#~ msgstr "Sortare implicită" - -# @ woocommerce -#~ msgid "Sort alphabetically" -#~ msgstr "Afișează de la A la Z" - -# @ woocommerce -#~ msgid "Redirects" -#~ msgstr "Redirecționări" - -# @ woocommerce -#~ msgid "" -#~ "Redirect to cart after adding a product to the cart (on single product " -#~ "pages)" -#~ msgstr "" -#~ "După adăugarea unui produs în Coș - de pe pagina unui produs - " -#~ "redirecționează clientul pe pagina Coșul Meu" - -# @ woocommerce -#~ msgid "Redirect to the product page on a single matching search result" -#~ msgstr "" -#~ "Dacă în urma unei căutări este găsit un singur produs, redirecționează " -#~ "vizitatorul automat către pagina produsului" - -# @ woocommerce -#~ msgid "Enable the weight field for products" -#~ msgstr "Activează câmpurl pentru afișarea greutății produsului" - -# @ woocommerce -#~ msgid "Enable the dimension fields for products" -#~ msgstr "Activează câmpurile pentru afișarea dimensiunilor produsului" - -# @ woocommerce -#~ msgid "Show weight and dimension fields in product attributes tab" -#~ msgstr "" -#~ "Afișează câmpurile de greutate și dimensiune în tab-ul de atribute a " -#~ "produsului" - -# @ woocommerce -#~ msgid "Enable the rating field on the review form" -#~ msgstr "" -#~ "Activează calificativele definite prin steluțe pe formularul de " -#~ "comentarii / review" - -# @ woocommerce -#~ msgid "" -#~ "WooCommerce" -#~ msgstr "" -#~ "WooCommerce" - -# @ woocommerce -#~ msgid "" -#~ "Project on WordPress.org" -#~ msgstr "" -#~ "Proiect pe WordPress.org" - -# @ woocommerce -#~ msgid "" -#~ "Project on Github" -#~ msgstr "" -#~ "Proiect pe Github" - -# @ woocommerce -#~ msgid "" -#~ "WooCommerce Docs" -#~ msgstr "" -#~ "WooCommerce Docs" - -# @ woocommerce -#~ msgid "" -#~ "Official Extensions" -#~ msgstr "" -#~ "Extensii Oficiale" - -# @ woocommerce -#~ msgid "" -#~ "Official Themes" -#~ msgstr "" -#~ "Teme Oficiale" - -# @ woocommerce -#~ msgid "" -#~ "Congratulations! – WooCommerce has been installed " -#~ "and setup. Enjoy :)" -#~ msgstr "" -#~ "Felicitări! – WooCommerce a fost instalat și " -#~ "configurat. Distacție Plăcută :)" - -# @ woocommerce -#~ msgid "Generate report" -#~ msgstr "Generare Raport" - -# @ woocommerce -#~ msgid "WooCommerce version" -#~ msgstr "Versiune WooCommerce" - -# @ woocommerce -#~ msgid "WooCommerce DB version" -#~ msgstr "Versiune Bază de Date - WooCommerce" - -# @ woocommerce -#~ msgid "WordPress version" -#~ msgstr "Versiune Wordpress" - -# @ woocommerce -#~ msgid "Shop base page" -#~ msgstr "Pagina de bază pentru Magazin" - -# @ woocommerce -#~ msgid "Server Software" -#~ msgstr "Program instalat pe Server" - -# @ woocommerce -#~ msgid "Server upload_max_filesize" -#~ msgstr "Dimensiune maximă fișier încărcat (upload_max_filesize)" - -# @ woocommerce -#~ msgid "Server post_max_size" -#~ msgstr "Server post_max_size" - -# @ woocommerce -#~ msgid "Remote Posting/IPN" -#~ msgstr "Postare de la distanță / IPN" - -#~ msgid "Slug %s is too long" -#~ msgstr "Numele Scurt %s este prea lung" - -# @ woocommerce -#~ msgid "Taxonomy exists - please change the slug" -#~ msgstr "Numele există deja - modifică numele scurt (?)" - -# @ woocommerce -#~ msgid "Please enter your username and password to login." -#~ msgstr "" -#~ "Vă rugăm să introduceți numele de utilizator și parola pentru a vă " -#~ "autentifica." - -# @ woocommerce -#~ msgid "Please enter a coupon code." -#~ msgstr "Vă rugăm introduceți un cod de promoție." - -# @ woocommerce -#~ msgid "Sorry, your session has expired." -#~ msgstr "Ne pare rău, sesiunea dvs. a expirat." - -# @ woocommerce -#~ msgid "Return to homepage →" -#~ msgstr "Înapoi la Pagina Principală →" - -# @ woocommerce -#~ msgid "You do not have sufficient permissions to access this page." -#~ msgstr "Nu aveți drepturi pentru a accesa această pagină." - -# @ woocommerce -#~ msgid "You have taken too long. Please go back and retry." -#~ msgstr "" -#~ "A durat prea mult timp. Vă rugăm să vă întoarceți și să încercați din nou." - -# @ woocommerce -#~ msgid "Item #%s stock reduced from %s to %s." -#~ msgstr "Stocul articolului #%s a fost redus de la %s la %s." - -# @ woocommerce -#~ msgid "Item #%s stock increased from %s to %s." -#~ msgstr "Stocul articolului #%s a fost crescut de la %s la %s." - -# @ woocommerce -#~ msgid "Value" -#~ msgstr "Valoare" - -# @ woocommerce -#~ msgid "Cross-sell" -#~ msgstr "Produse Încrucișate" - -# @ woocommerce -#~ msgid "Up-sell" -#~ msgstr "Produse Recomandate" - -# @ woocommerce -#~ msgid "No products found" -#~ msgstr "Nu a fost găsit nici un produs." - -# @ woocommerce -#~ msgid "Download Permissions Granted" -#~ msgstr "Permisiunea de a descărca a fost acordată." - -# @ woocommerce -#~ msgctxt "slug" -#~ msgid "uncategorized" -#~ msgstr "fara-categorie" - -# @ woocommerce -#~ msgid "Select a category" -#~ msgstr "Selectează o categorie" - -# @ woocommerce -#~ msgid "Uncategorized" -#~ msgstr "Fără Categorie" - -# @ woocommerce -#~ msgid "Customer" -#~ msgstr "Client" - -# @ woocommerce -#~ msgid "Shop Manager" -#~ msgstr "Manager Magazin" - -# @ woocommerce -#~ msgid "Cart updated." -#~ msgstr "Coș actualizat." - -# @ woocommerce -#~ msgid "You can only have 1 %s in your cart." -#~ msgstr "Puteți avea în Coș doar 1 %s." - -# @ woocommerce -#~ msgid "Please choose product options…" -#~ msgstr "Vă rugăm selectați opțiunile produsului …" - -#~ msgid "" -#~ "Please choose the quantity of items you wish to add to your cart…" -#~ msgstr "" -#~ "Vă rugăm să alegeţi cantitatea de produse pe care doriți să le adăugați " -#~ "în coş…" - -# @ woocommerce -#~ msgid "Please choose a product to add to your cart…" -#~ msgstr "Vă rugăm selectați un produs pentru a-l adăuga în coș …" - -#~ msgid "Added "%s" to your cart." -#~ msgstr ""%s" adăugat în coș." - -#~ msgid "" and "" -#~ msgstr "" şi "" - -# @ woocommerce -#~ msgid ""%s" was successfully added to your cart." -#~ msgstr "Produsul "%s" a fost adăugat cu succes în Coșul dvs." - -# @ woocommerce -#~ msgid "Continue Shopping →" -#~ msgstr "Continuați cumpărăturile →" - -# @ woocommerce -#~ msgid "View Cart →" -#~ msgstr "Vezi Coș →" - -# @ woocommerce -#~ msgid "Username is required." -#~ msgstr "Numele de utilizator este necesar." - -# @ woocommerce -#~ msgid "Password is required." -#~ msgstr "Parola este necesară." - -# @ woocommerce -#~ msgid "ERROR" -#~ msgstr "EROARE" - -# @ woocommerce -#~ msgid "Please enter a username." -#~ msgstr "Vă rugăm introduceți un nume de utilizator." - -# @ woocommerce -#~ msgid "" -#~ "This username is invalid because it uses illegal characters. Please enter " -#~ "a valid username." -#~ msgstr "" -#~ "Acest nume de utilizator este invalid deoarece conține caractere " -#~ "nepermise. Vă rugăm introduceți un nume de utilizator corespunzător." - -# @ woocommerce -#~ msgid "This username is already registered, please choose another one." -#~ msgstr "" -#~ "Acest nume de utilizator există deja. Vă rugăm introduceți un alt nume de " -#~ "utilizator." - -# @ woocommerce -#~ msgid "Please type your e-mail address." -#~ msgstr "Vă rugăm introduceți adresa dvs. de email." - -# @ woocommerce -#~ msgid "The email address isn’t correct." -#~ msgstr "Adresa de email nu este corectă." - -# @ woocommerce -#~ msgid "This email is already registered, please choose another one." -#~ msgstr "" -#~ "Această adresă de email este deja utilizată. Folosiți o altă adresă de " -#~ "email." - -# @ woocommerce -#~ msgid "Re-enter your password." -#~ msgstr "Reintroduceți parola." - -# @ woocommerce -#~ msgid "Passwords do not match." -#~ msgstr "Parolele nu se potrivesc." - -# @ woocommerce -#~ msgid "Anti-spam field was filled in." -#~ msgstr "Câmpul anti-spam a fost completat." - -# @ woocommerce -#~ msgid "" -#~ "Couldn’t register you… please contact us if you continue to " -#~ "have problems." -#~ msgstr "" -#~ "Nu te putem înregistra… Mai încearcă odată, nu ezita să ne " -#~ "contactezi dacă problemele continuă." - -# @ woocommerce -#~ msgid "The cart has been filled with the items from your previous order." -#~ msgstr "Coșul de Cumpărături a fost umplut cu produse comandate anterior." - -# @ woocommerce -#~ msgid "Order cancelled by customer." -#~ msgstr "Comandă anulată de către client." - -# @ woocommerce -#~ msgid "Your order was cancelled." -#~ msgstr "Comanda dvs. a fost anulată." - -# @ woocommerce -#~ msgid "" -#~ "Your order is no longer pending and could not be cancelled. Please " -#~ "contact us if you need assistance." -#~ msgstr "" -#~ "Comanda dvs. nu mai poate fi anulată. Vă rugăm să ne contactați dacă " -#~ "aveți nevoie de asistență." - -# @ woocommerce -#~ msgid "Invalid order." -#~ msgstr "Comandă invalidă." - -# @ woocommerce -#~ msgid "Invalid email address." -#~ msgstr "Adresă de email invalidă." - -# @ woocommerce -#~ msgid "Go to homepage →" -#~ msgstr "Înapoi la Pagina Principală →" - -# @ woocommerce -#~ msgid "Invalid download." -#~ msgstr "Descărcare invalidă." - -# @ woocommerce -#~ msgid "You must be logged in to download files." -#~ msgstr "Trebuie să fi autentificat pentru a descărca fișiere." - -# @ woocommerce -#~ msgid "Login →" -#~ msgstr "Autentificare →" - -# @ woocommerce -#~ msgid "This is not your download link." -#~ msgstr "Acesta nu este link-ul tău pentru descărcări." - -# @ woocommerce -#~ msgid "Product no longer exists." -#~ msgstr "Produsul nu mai există." - -# @ woocommerce -#~ msgid "Sorry, you have reached your download limit for this file" -#~ msgstr "" -#~ "Ne pare rău ai atins limita permisă de descărcări pentru acest fișier." - -# @ woocommerce -#~ msgid "Sorry, this download has expired" -#~ msgstr "Ne pare rău acest fișier descărcabil nu mai este disponibil" - -# @ woocommerce -#~ msgid "File not found" -#~ msgstr "Fișierul nu a fost găsit" - -# @ woocommerce -#~ msgid "New products added to %s" -#~ msgstr "Produse noi adăugate la %s" - -# @ woocommerce -#~ msgid "New products tagged %s" -#~ msgstr "Produse noi etichetate %s" - -# @ woocommerce -#~ msgid "You have taken too long. Please go back and refresh the page." -#~ msgstr "" -#~ "A durat prea mult timp. Vă rugăm să vă întoarceți și să reîncărcați " -#~ "pagina." - -# @ woocommerce -#~ msgid "Please rate the product." -#~ msgstr "Vă rugăm evaluați produsul." - -# @ woocommerce -#~ msgid "No products found which match your selection." -#~ msgstr "" -#~ "Nu a fost găsit nici un produs care să îndeplinească criteriile " -#~ "specificate de dvs." - -# @ woocommerce -#~ msgid "Search Results: “%s”" -#~ msgstr "Rezultatele Căutării “%s”" - -# @ woocommerce -#~ msgid " – Page %s" -#~ msgstr " – Pagina %s" - -# @ woocommerce -#~ msgctxt "breadcrumb" -#~ msgid "Home" -#~ msgstr "Acasă" - -# @ woocommerce -#~ msgid "Update country" -#~ msgstr "Actualizează țara" - -# @ woocommerce -#~ msgid "Select a state…" -#~ msgstr "Selectează Stat…" - -# @ woocommerce -#~ msgid "Search for:" -#~ msgstr "Caută:" - -# @ woocommerce -#~ msgid "Search for products" -#~ msgstr "Caută produse:" - -# @ woocommerce -#~ msgid "Product Categories" -#~ msgstr "Categorii de Produse" - -# @ woocommerce -#~ msgctxt "Admin menu name" -#~ msgid "Categories" -#~ msgstr "Categorii" - -# @ woocommerce -#~ msgid "Search Product Categories" -#~ msgstr "Caută prin Categoriile de Produs" - -# @ woocommerce -#~ msgid "All Product Categories" -#~ msgstr "Toate Categoriile de Produs" - -# @ woocommerce -#~ msgid "Parent Product Category" -#~ msgstr "Categorie Principală de Produs" - -# @ woocommerce -#~ msgid "Parent Product Category:" -#~ msgstr "Categorie Principală de Produs:" - -# @ woocommerce -#~ msgid "Edit Product Category" -#~ msgstr "Modifică Categorie Produs" - -# @ woocommerce -#~ msgid "Update Product Category" -#~ msgstr "Actualizează Categorie Produs" - -# @ woocommerce -#~ msgid "Add New Product Category" -#~ msgstr "Adaugă Categorie Nouă de Produs" - -# @ woocommerce -#~ msgid "New Product Category Name" -#~ msgstr "Adaugă nume nou pentru Categorie de produs" - -# @ woocommerce -#~ msgid "Product Tags" -#~ msgstr "Etichete Produs" - -# @ woocommerce -#~ msgctxt "Admin menu name" -#~ msgid "Tags" -#~ msgstr "Etichete" - -# @ woocommerce -#~ msgid "Search Product Tags" -#~ msgstr "Caută prin Etichetele de Produs" - -# @ woocommerce -#~ msgid "All Product Tags" -#~ msgstr "Toate Etichetele de Produs" - -# @ woocommerce -#~ msgid "Parent Product Tag" -#~ msgstr "Etichetă Principală Produs" - -# @ woocommerce -#~ msgid "Parent Product Tag:" -#~ msgstr "Etichetă Principală Produs:" - -# @ woocommerce -#~ msgid "Edit Product Tag" -#~ msgstr "Modifică Etichetă de Produs" - -# @ woocommerce -#~ msgid "Update Product Tag" -#~ msgstr "Actualizează Etichetă de Produs" - -# @ woocommerce -#~ msgid "Add New Product Tag" -#~ msgstr "Adaugă Etichetă de Produs (?)" - -# @ woocommerce -#~ msgid "New Product Tag Name" -#~ msgstr "Adaugă Etichetă Principală Produs" - -# @ woocommerce -#~ msgid "Shipping Classes" -#~ msgstr "Clase de Expediere" - -# @ woocommerce -#~ msgid "Shipping Class" -#~ msgstr "Clasă de Expediere" - -# @ woocommerce -#~ msgctxt "Admin menu name" -#~ msgid "Shipping Classes" -#~ msgstr "Clase de Expediere" - -# @ woocommerce -#~ msgid "Search Shipping Classes" -#~ msgstr "Caută în Clasele de Expediere" - -# @ woocommerce -#~ msgid "All Shipping Classes" -#~ msgstr "Toate Clasele de Expediere" - -# @ woocommerce -#~ msgid "Parent Shipping Class" -#~ msgstr "Clasă Principală de Expediere" - -# @ woocommerce -#~ msgid "Parent Shipping Class:" -#~ msgstr "Clasă Principală de Expediere:" - -# @ woocommerce -#~ msgid "Edit Shipping Class" -#~ msgstr "Modfică Clasă de Expediere" - -# @ woocommerce -#~ msgid "Update Shipping Class" -#~ msgstr "Actualizează Clasă de Expediere" - -# @ woocommerce -#~ msgid "Add New Shipping Class" -#~ msgstr "Adaugă Clasă de Expediere" - -# @ woocommerce -#~ msgid "New Shipping Class Name" -#~ msgstr "Adaugă nume nou pentru Clasă de Expediere" - -# @ woocommerce -#~ msgid "Order statuses" -#~ msgstr "Statusuri Comandă" - -# @ woocommerce -#~ msgid "Order status" -#~ msgstr "Status Comandă" - -# @ woocommerce -#~ msgid "Search Order statuses" -#~ msgstr "Caută prin statusurile comenzilor" - -# @ woocommerce -#~ msgid "All Order statuses" -#~ msgstr "Toate statusurile comenzilor" - -# @ woocommerce -#~ msgid "Parent Order status" -#~ msgstr "Status Comandă Principală" - -# @ woocommerce -#~ msgid "Parent Order status:" -#~ msgstr "Status Comandă Principală:" - -# @ woocommerce -#~ msgid "Edit Order status" -#~ msgstr "Modifică Status Comandă" - -# @ woocommerce -#~ msgid "Update Order status" -#~ msgstr "Actualizează Status Comandă" - -# @ woocommerce -#~ msgid "Add New Order status" -#~ msgstr "Adaugă Status Comandă" - -# @ woocommerce -#~ msgid "New Order status Name" -#~ msgstr "Adaugă nume nou pentru status comandă" - -# @ woocommerce -#~ msgid "All" -#~ msgstr "Toate" - -# @ woocommerce -#~ msgid "Parent" -#~ msgstr "Părinte" - -# @ woocommerce -#~ msgid "Add New" -#~ msgstr "Adaugă Nou" - -# @ woocommerce -#~ msgid "New" -#~ msgstr "Nou" - -# @ woocommerce -#~ msgctxt "Admin menu name" -#~ msgid "Products" -#~ msgstr "Produse" - -# @ woocommerce -#~ msgid "Add Product" -#~ msgstr "Adaugă Produs" - -# @ woocommerce -#~ msgid "Add New Product" -#~ msgstr "Adaugă un Produs nou" - -# @ woocommerce -#~ msgid "Edit Product" -#~ msgstr "Editează Produs" - -# @ woocommerce -#~ msgid "View Product" -#~ msgstr "Vizualizează Produs" - -# @ woocommerce -#~ msgid "Search Products" -#~ msgstr "Caută Produse" - -# @ woocommerce -#~ msgid "No Products found" -#~ msgstr "Nu a fost găsit nici un produs" - -# @ woocommerce -#~ msgid "No Products found in trash" -#~ msgstr "Nu a fost găsit nici un produs la Gunoi" - -# @ woocommerce -#~ msgid "Parent Product" -#~ msgstr "Produs mamă" - -# @ woocommerce -#~ msgid "This is where you can add new products to your store." -#~ msgstr "De aici poți adăuga produse noi pentru magazin." - -# @ woocommerce -#~ msgid "Variation" -#~ msgstr "Variație" - -# @ woocommerce -#~ msgid "Add New Variation" -#~ msgstr "Adaugă Variație Nouă" - -# @ woocommerce -#~ msgid "Edit Variation" -#~ msgstr "Modificare Variație" - -# @ woocommerce -#~ msgid "New Variation" -#~ msgstr "Variație Nouă" - -# @ woocommerce -#~ msgid "View Variation" -#~ msgstr "Vezi Variație" - -# @ woocommerce -#~ msgid "Search Variations" -#~ msgstr "Caută prin varianțiile unui produs" - -# @ woocommerce -#~ msgid "No Variations found" -#~ msgstr "Nu a fost găsită nici o varianție" - -# @ woocommerce -#~ msgid "No Variations found in trash" -#~ msgstr "Nu a fost găsită nici o varianție la Gunoi" - -# @ woocommerce -#~ msgid "Parent Variation" -#~ msgstr "Variație mamă" - -# @ woocommerce -#~ msgid "Add Order" -#~ msgstr "Adaugă Comandă" - -# @ woocommerce -#~ msgid "Add New Order" -#~ msgstr "Adaugă Comandă Nouă" - -# @ woocommerce -#~ msgid "Edit Order" -#~ msgstr "Editează Comandă" - -# @ woocommerce -#~ msgid "New Order" -#~ msgstr "Comandă Nouă" - -# @ woocommerce -#~ msgid "Search Orders" -#~ msgstr "Caută prin Comenzi" - -# @ woocommerce -#~ msgid "No Orders found" -#~ msgstr "Nu a fost găsită nici o comandă" - -# @ woocommerce -#~ msgid "No Orders found in trash" -#~ msgstr "Nu a fost găsită nici o comandă la Gunoi" - -# @ woocommerce -#~ msgid "Parent Orders" -#~ msgstr "Părinte Comandă" - -# @ woocommerce -#~ msgid "This is where store orders are stored." -#~ msgstr "Aici sunt stocate Comenzile Magazinului" - -# @ woocommerce -#~ msgctxt "Admin menu name" -#~ msgid "Coupons" -#~ msgstr "Cupoane" - -# @ woocommerce -#~ msgid "Add Coupon" -#~ msgstr "Adaugă Cupon" - -# @ woocommerce -#~ msgid "Add New Coupon" -#~ msgstr "Adaugă Cupon Nou" - -# @ woocommerce -#~ msgid "Edit Coupon" -#~ msgstr "Modifică Cupon" - -# @ woocommerce -#~ msgid "New Coupon" -#~ msgstr "Cupoane Nou" - -# @ woocommerce -#~ msgid "View Coupons" -#~ msgstr "Vezi Cupoane" - -# @ woocommerce -#~ msgid "View Coupon" -#~ msgstr "Vezi Cupoane" - -# @ woocommerce -#~ msgid "Search Coupons" -#~ msgstr "Caută prin Cupoane" - -# @ woocommerce -#~ msgid "No Coupons found" -#~ msgstr "Nici un Cupon nu a fost găsit" - -# @ woocommerce -#~ msgid "No Coupons found in trash" -#~ msgstr "Nici un Cupon nu a fost găsit la Gunoi" - -# @ woocommerce -#~ msgid "Parent Coupon" -#~ msgstr "Părinte Cupon" - -# @ woocommerce -#~ msgid "" -#~ "This is where you can add new coupons that customers can use in your " -#~ "store." -#~ msgstr "" -#~ "De aici se pot adăuga cupoane ce pot fi utilizate de clienții magazinului." - -# @ woocommerce -#~ msgid "Cart Discount" -#~ msgstr "Reducere Coș" - -# @ woocommerce -#~ msgid "Cart % Discount" -#~ msgstr "Reducere % Coș" - -# @ woocommerce -#~ msgid "Product Discount" -#~ msgstr "Reducere Produs" - -# @ woocommerce -#~ msgid "Product % Discount" -#~ msgstr "Reducere % Produs" - -# @ woocommerce -#~ msgctxt "page_slug" -#~ msgid "order-tracking" -#~ msgstr "urmarire-comanda" - -# @ woocommerce -#~ msgid "Track your order" -#~ msgstr "Urmărește-ți comanda" - -#~ msgid "Insert Shortcode" -#~ msgstr "Inserează Scurtătură de Cod" - -# @ woocommerce -#~ msgid "Product price/cart button" -#~ msgstr "Buton preț / coș produs" - -# @ woocommerce -#~ msgid "Product by SKU/ID" -#~ msgstr "Produs după Cod Produs" - -# @ woocommerce -#~ msgid "Products by SKU/ID" -#~ msgstr "Produse după Cod Produs" - -# @ woocommerce -#~ msgid "Products by category slug" -#~ msgstr "Produse după numele scurt al Categoriei" - -# @ woocommerce -#~ msgid "Recent products" -#~ msgstr "Produse Noi" - -# @ woocommerce -#~ msgid "Featured products" -#~ msgstr "Produse Recomandate" - -# @ woocommerce -#~ msgid "Shop Messages" -#~ msgstr "Mesajele Magazinului" - -# @ woocommerce -#~ msgid "Order tracking" -#~ msgstr "Umărește Comanda" - -# @ woocommerce -#~ msgid "" -#~ "Sorry, it seems the coupon \"%s\" is invalid - it has now been removed " -#~ "from your order." -#~ msgstr "" -#~ "Ne pare rău, cuponul \"%s\" este invalid - a fost eliminat din comanda " -#~ "dvs." - -# @ woocommerce -#~ msgid "" -#~ "Sorry, it seems the coupon \"%s\" is not yours - it has now been removed " -#~ "from your order." -#~ msgstr "" -#~ "Ne pare rău, cuponul \"%s\" nu vă aparține - a fost eliminat din comanda " -#~ "dvs." - -# @ woocommerce -#~ msgid "" -#~ "Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in " -#~ "stock). Please edit your cart and try again. We apologise for any " -#~ "inconvenience caused." -#~ msgstr "" -#~ "Ne pare rău însă nu avem suficiente produse \"%s\" în stoc pentru a vă " -#~ "onora comanda. Doar %s produse sunt în stoc. Vă rugăm editați Coșul de " -#~ "Cumpărături și încercați din nou. Ne pare rău pentru orice neplăcere " -#~ "creată." - -# @ woocommerce -#, fuzzy -#~ msgid "" -#~ "Sorry, we do not have enough \"%s\" in stock to fulfil your order (%s in " -#~ "stock). Please edit your cart and try again. We apologise for any " -#~ "inconvenience caused." -#~ msgstr "" -#~ "Ne pare rău însă nu avem suficiente produse \"%s\" în stoc pentru a vă " -#~ "onora comanda. Doar %s produse sunt în stoc. Vă rugăm editați Coșul de " -#~ "Cumpărături și încercați din nou. Ne pare rău pentru orice neplăcere " -#~ "creată." - -# @ woocommerce -#, fuzzy -#~ msgid "" -#~ "Sorry, we do not have enough \"%s\" in stock to fulfil your order right " -#~ "now. Please try again in %d minutes or edit your cart and try again. We " -#~ "apologise for any inconvenience caused." -#~ msgstr "" -#~ "Ne pare rău însă nu avem suficiente produse \"%s\" în stoc pentru a vă " -#~ "onora comanda. Vă rugăm editați Coșul de Cumpărături și încercați din " -#~ "nou. Ne pare rău pentru orice neplăcere creată." - -# @ woocommerce -#, fuzzy -#~ msgid "" -#~ "Sorry, \"%s\" is not in stock. Please edit your cart and try again. We " -#~ "apologise for any inconvenience caused." -#~ msgstr "" -#~ "Ne pare rău însă nu avem suficiente produse \"%s\" în stoc pentru a vă " -#~ "onora comanda. Vă rugăm editați Coșul de Cumpărături și încercați din " -#~ "nou. Ne pare rău pentru orice neplăcere creată." - -# @ woocommerce -#~ msgid "Sorry, "%s" cannot be purchased." -#~ msgstr "" -#~ "Ne pare rău dar acest produs ( "%s" ) nu poate fi achiziționat." - -# @ woocommerce -#~ msgid "" -#~ "You cannot add "%s" to the cart because the product is out of " -#~ "stock." -#~ msgstr "" -#~ "Nu puteți adăuga acest produs ("%s" ) în Coșul dvs., deoarece " -#~ "produsul nu mai este în stoc." - -# @ woocommerce -#~ msgid "" -#~ "You cannot add that amount of "%s" to the cart because there is " -#~ "not enough stock (%s remaining)." -#~ msgstr "" -#~ "Numărul de "%s" introdus nu poate fi adăugat în Coș, deoarce " -#~ "mai avem doar %s produse în stoc." - -# @ woocommerce -#~ msgid "You already have this item in your cart." -#~ msgstr "Acest produs există deja în Coșul tău." - -# @ woocommerce -#~ msgid "" -#~ "%s You cannot add that amount to the " -#~ "cart — we have %s in stock and you already have %s in your cart." -#~ msgstr "" -#~ "%s Nu poți adăuga numărul acesta de " -#~ "produse în Coș — Avem doar %s produse în stoc și ai deja %s în " -#~ "Coșul de Cumpărături." - -# @ woocommerce -#~ msgid "Free!" -#~ msgstr "Gratis!" - -# @ woocommerce -#~ msgid "via" -#~ msgstr "prin" - -# @ woocommerce -#~ msgid "Discount code already applied!" -#~ msgstr "Codul de reducere a fost deja aplicat!" - -# @ woocommerce -#~ msgid "Discount code applied successfully." -#~ msgstr "Codul de reducere a fost aplicat cu succes." - -# @ woocommerce -#~ msgid "Coupon does not exist!" -#~ msgstr "Cuponul nu există!" - -# @ woocommerce -#~ msgid "Account username" -#~ msgstr "Cont Utilizator" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Username" -#~ msgstr "Nume Utilizator" - -# @ woocommerce -#~ msgid "Account password" -#~ msgstr "Parolă Cont" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Password" -#~ msgstr "Parolă" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Notes about your order, e.g. special notes for delivery." -#~ msgstr "Notițe despre comanda ta, ex.: detalii de livrare, etc..." - -# @ woocommerce -#~ msgid "Order – %s" -#~ msgstr "Comanda – %s" - -# @ woocommerce -#~ msgctxt "Order date parsed by strftime" -#~ msgid "%b %d, %Y @ %I:%M %p" -#~ msgstr "%b %d, %Y @ %I:%M %p" - -# @ woocommerce -#~ msgid "Backordered" -#~ msgstr "Pus pe lista de așteptare" - -# @ woocommerce -#~ msgid "" -#~ "Sorry, your session has expired. Return to homepage →" -#~ "" -#~ msgstr "" -#~ "Ne pare rău, sesiunea a expirat. Înapoi la pagina " -#~ "principală →" - -# @ woocommerce -#~ msgid "is a required field." -#~ msgstr "este un câmp obligatoriu." - -# @ woocommerce -#~ msgid "(%s) is not a valid postcode/ZIP." -#~ msgstr "(%s) nu este un cod poștal valid." - -# @ woocommerce -#~ msgid "is not valid. Please enter one of the following:" -#~ msgstr "nu este valid. Introdu una dintre următoarele:" - -# @ woocommerce -#~ msgid "is not a valid number." -#~ msgstr "nu este un număr valid." - -# @ woocommerce -#~ msgid "is not a valid email address." -#~ msgstr "nu este o adresă de email validă." - -# @ woocommerce -#~ msgid "Please enter an account username." -#~ msgstr "Vă rugăm introduceți un nume de utilizator." - -# @ woocommerce -#~ msgid "Invalid email/username." -#~ msgstr "Email sau nume utilizator invalid." - -# @ woocommerce -#~ msgid "" -#~ "An account is already registered with that username. Please choose " -#~ "another." -#~ msgstr "" -#~ "Există deja un cont înregistrat cu acest nume utilizator. Alegeți altul." - -# @ woocommerce -#~ msgid "Please enter an account password." -#~ msgstr "Vă rugăm introduceți o parolă pentru cont." - -# @ woocommerce -#~ msgid "" -#~ "An account is already registered with your email address. Please login." -#~ msgstr "" -#~ "Există deja un cont înregistrat cu această adresă de email. Vă rugăm să " -#~ "vă autentificați." - -# @ woocommerce -#~ msgid "You must accept our Terms & Conditions." -#~ msgstr "Trebuie să acceptați Termenii și Condițiile noastre." - -# @ woocommerce -#~ msgid "Invalid shipping method." -#~ msgstr "Metodă de transport necorespunzătoare." - -# @ woocommerce -#~ msgid "Invalid payment method." -#~ msgstr "Metodă de plată necorespunzătoare." - -# @ woocommerce -#~ msgid "Afghanistan" -#~ msgstr "Afghanistan" - -# @ woocommerce -#~ msgid "Åland Islands" -#~ msgstr "Insulele Åland" - -# @ woocommerce -#~ msgid "Albania" -#~ msgstr "Albania" - -# @ woocommerce -#~ msgid "Algeria" -#~ msgstr "Algeria" - -# @ woocommerce -#~ msgid "American Samoa" -#~ msgstr "Samoa American" - -# @ woocommerce -#~ msgid "Andorra" -#~ msgstr "Andorra" - -# @ woocommerce -#~ msgid "Angola" -#~ msgstr "Angola" - -# @ woocommerce -#~ msgid "Anguilla" -#~ msgstr "Anguilla" - -# @ woocommerce -#~ msgid "Antarctica" -#~ msgstr "Antarctica" - -# @ woocommerce -#~ msgid "Antigua and Barbuda" -#~ msgstr "Antigua și Barbuda" - -# @ woocommerce -#~ msgid "Argentina" -#~ msgstr "Argentina" - -# @ woocommerce -#~ msgid "Armenia" -#~ msgstr "Armenia" - -# @ woocommerce -#~ msgid "Aruba" -#~ msgstr "Aruba" - -# @ woocommerce -#~ msgid "Australia" -#~ msgstr "Australia" - -# @ woocommerce -#~ msgid "Austria" -#~ msgstr "Austria" - -# @ woocommerce -#~ msgid "Azerbaijan" -#~ msgstr "Azerbaidjan" - -# @ woocommerce -#~ msgid "Bahamas" -#~ msgstr "Bahamas" - -# @ woocommerce -#~ msgid "Bahrain" -#~ msgstr "Bahrain" - -# @ woocommerce -#~ msgid "Bangladesh" -#~ msgstr "Bangladesh" - -# @ woocommerce -#~ msgid "Barbados" -#~ msgstr "Barbados" - -# @ woocommerce -#~ msgid "Belarus" -#~ msgstr "Belarus" - -# @ woocommerce -#~ msgid "Belgium" -#~ msgstr "Belgia" - -# @ woocommerce -#~ msgid "Belize" -#~ msgstr "Belize" - -# @ woocommerce -#~ msgid "Benin" -#~ msgstr "Benin" - -# @ woocommerce -#~ msgid "Bermuda" -#~ msgstr "Bermuda" - -# @ woocommerce -#~ msgid "Bhutan" -#~ msgstr "Bhutan" - -# @ woocommerce -#~ msgid "Bolivia" -#~ msgstr "Bolivia" - -#~ msgid "Bonaire, Saint Eustatius and Saba" -#~ msgstr "Bonaire, Saint Eustatius și Saba" - -# @ woocommerce -#~ msgid "Bosnia and Herzegovina" -#~ msgstr "Bosnia și Herzegovina" - -# @ woocommerce -#~ msgid "Botswana" -#~ msgstr "Botswana" - -# @ woocommerce -#~ msgid "Bouvet Island" -#~ msgstr "Insula Bouvet" - -# @ woocommerce -#~ msgid "Brazil" -#~ msgstr "Brazilia" - -# @ woocommerce -#~ msgid "British Indian Ocean Territory" -#~ msgstr "Teritoriul Britanic din Oceanul Indian" - -# @ woocommerce -#~ msgid "British Virgin Islands" -#~ msgstr "Insulele Virgine Britanice" - -# @ woocommerce -#~ msgid "Brunei" -#~ msgstr "Brunei" - -# @ woocommerce -#~ msgid "Bulgaria" -#~ msgstr "Bulgaria" - -# @ woocommerce -#~ msgid "Burkina Faso" -#~ msgstr "Burkina Faso" - -# @ woocommerce -#~ msgid "Burundi" -#~ msgstr "Burundi" - -# @ woocommerce -#~ msgid "Cambodia" -#~ msgstr "Cambodgia" - -# @ woocommerce -#~ msgid "Cameroon" -#~ msgstr "Camerun" - -# @ woocommerce -#~ msgid "Canada" -#~ msgstr "Canada" - -# @ woocommerce -#~ msgid "Cape Verde" -#~ msgstr "Cap Verde" - -# @ woocommerce -#~ msgid "Cayman Islands" -#~ msgstr "Insulele Cayman" - -# @ woocommerce -#~ msgid "Central African Republic" -#~ msgstr "Republica Central African" - -# @ woocommerce -#~ msgid "Chad" -#~ msgstr "Ciad" - -# @ woocommerce -#~ msgid "Chile" -#~ msgstr "Chile" - -# @ woocommerce -#~ msgid "China" -#~ msgstr "China" - -# @ woocommerce -#~ msgid "Christmas Island" -#~ msgstr "Insula Crăciun" - -# @ woocommerce -#~ msgid "Cocos (Keeling) Islands" -#~ msgstr "Insulele Cocos (Keeling)" - -# @ woocommerce -#~ msgid "Colombia" -#~ msgstr "Columbia" - -# @ woocommerce -#~ msgid "Comoros" -#~ msgstr "Comoros" - -# @ woocommerce -#~ msgid "Congo (Brazzaville)" -#~ msgstr "Congo (Brazzaville)" - -# @ woocommerce -#~ msgid "Congo (Kinshasa)" -#~ msgstr "Congo (Kinshasa)" - -# @ woocommerce -#~ msgid "Cook Islands" -#~ msgstr "Insulele Cook" - -# @ woocommerce -#~ msgid "Costa Rica" -#~ msgstr "Costa Rica" - -# @ woocommerce -#~ msgid "Croatia" -#~ msgstr "Croatia" - -# @ woocommerce -#~ msgid "Cuba" -#~ msgstr "Cuba" - -#~ msgid "CuraÇao" -#~ msgstr "CuraÇao" - -# @ woocommerce -#~ msgid "Cyprus" -#~ msgstr "Cipru" - -# @ woocommerce -#~ msgid "Czech Republic" -#~ msgstr "Republica Ceh" - -# @ woocommerce -#~ msgid "Denmark" -#~ msgstr "Danemarca" - -# @ woocommerce -#~ msgid "Djibouti" -#~ msgstr "Djibouti" - -# @ woocommerce -#~ msgid "Dominica" -#~ msgstr "Dominica" - -# @ woocommerce -#~ msgid "Dominican Republic" -#~ msgstr "Republica Dominican" - -# @ woocommerce -#~ msgid "Ecuador" -#~ msgstr "Ecuador" - -# @ woocommerce -#~ msgid "Egypt" -#~ msgstr "Egipt" - -# @ woocommerce -#~ msgid "El Salvador" -#~ msgstr "El Salvador" - -# @ woocommerce -#~ msgid "Equatorial Guinea" -#~ msgstr "Guineea Ecuatorial" - -# @ woocommerce -#~ msgid "Eritrea" -#~ msgstr "Eritrea" - -# @ woocommerce -#~ msgid "Estonia" -#~ msgstr "Estonia" - -# @ woocommerce -#~ msgid "Ethiopia" -#~ msgstr "Ethiopia" - -# @ woocommerce -#~ msgid "Falkland Islands" -#~ msgstr "Insulele Falkland" - -# @ woocommerce -#~ msgid "Faroe Islands" -#~ msgstr "Insulele Feroe" - -# @ woocommerce -#~ msgid "Fiji" -#~ msgstr "Fiji" - -# @ woocommerce -#~ msgid "Finland" -#~ msgstr "Finlanda" - -# @ woocommerce -#~ msgid "France" -#~ msgstr "Franța" - -# @ woocommerce -#~ msgid "French Guiana" -#~ msgstr "Guyana Francez" - -# @ woocommerce -#~ msgid "French Polynesia" -#~ msgstr "Polinezia Francez" - -# @ woocommerce -#~ msgid "French Southern Territories" -#~ msgstr "Teritoriile Franceze de Sud" - -# @ woocommerce -#~ msgid "Gabon" -#~ msgstr "Gabon" - -# @ woocommerce -#~ msgid "Gambia" -#~ msgstr "Gambia" - -# @ woocommerce -#~ msgid "Georgia" -#~ msgstr "Georgia" - -# @ woocommerce -#~ msgid "Germany" -#~ msgstr "Germania" - -# @ woocommerce -#~ msgid "Ghana" -#~ msgstr "Ghana" - -# @ woocommerce -#~ msgid "Gibraltar" -#~ msgstr "Gibraltar" - -# @ woocommerce -#~ msgid "Greece" -#~ msgstr "Grecia" - -# @ woocommerce -#~ msgid "Greenland" -#~ msgstr "Groenlanda" - -# @ woocommerce -#~ msgid "Grenada" -#~ msgstr "Grenada" - -# @ woocommerce -#~ msgid "Guadeloupe" -#~ msgstr "Guadelupe" - -# @ woocommerce -#~ msgid "Guam" -#~ msgstr "Guam" - -# @ woocommerce -#~ msgid "Guatemala" -#~ msgstr "Guatemala" - -# @ woocommerce -#~ msgid "Guernsey" -#~ msgstr "Guernsey" - -# @ woocommerce -#~ msgid "Guinea" -#~ msgstr "Guineea" - -# @ woocommerce -#~ msgid "Guinea-Bissau" -#~ msgstr "Guineea-Bissau" - -# @ woocommerce -#~ msgid "Guyana" -#~ msgstr "Guyana" - -# @ woocommerce -#~ msgid "Haiti" -#~ msgstr "Haiti" - -#~ msgid "Heard Island and McDonald Islands" -#~ msgstr "Insula Heard și Insula McDonald" - -# @ woocommerce -#~ msgid "Honduras" -#~ msgstr "Honduras" - -# @ woocommerce -#~ msgid "Hong Kong" -#~ msgstr "Hong Kong" - -# @ woocommerce -#~ msgid "Hungary" -#~ msgstr "Ungaria" - -# @ woocommerce -#~ msgid "Iceland" -#~ msgstr "Islanda" - -# @ woocommerce -#~ msgid "India" -#~ msgstr "India" - -# @ woocommerce -#~ msgid "Indonesia" -#~ msgstr "Indonesia" - -# @ woocommerce -#~ msgid "Iran" -#~ msgstr "Iran" - -# @ woocommerce -#~ msgid "Iraq" -#~ msgstr "Iraq" - -#~ msgid "Republic of Ireland" -#~ msgstr "Irlanda" - -# @ woocommerce -#~ msgid "Isle of Man" -#~ msgstr "Insula Man" - -# @ woocommerce -#~ msgid "Israel" -#~ msgstr "Israel" - -# @ woocommerce -#~ msgid "Italy" -#~ msgstr "Italia" - -# @ woocommerce -#~ msgid "Ivory Coast" -#~ msgstr "Coasta de Filde" - -# @ woocommerce -#~ msgid "Jamaica" -#~ msgstr "Jamaica" - -# @ woocommerce -#~ msgid "Japan" -#~ msgstr "Japonia" - -# @ woocommerce -#~ msgid "Jersey" -#~ msgstr "Jersey" - -# @ woocommerce -#~ msgid "Jordan" -#~ msgstr "Iordan" - -# @ woocommerce -#~ msgid "Kazakhstan" -#~ msgstr "Kazakhstan" - -# @ woocommerce -#~ msgid "Kenya" -#~ msgstr "Kenya" - -# @ woocommerce -#~ msgid "Kiribati" -#~ msgstr "Kiribati" - -# @ woocommerce -#~ msgid "Kuwait" -#~ msgstr "Kuwait" - -# @ woocommerce -#~ msgid "Kyrgyzstan" -#~ msgstr "Kyrgyzstan" - -# @ woocommerce -#~ msgid "Laos" -#~ msgstr "Laos" - -# @ woocommerce -#~ msgid "Latvia" -#~ msgstr "Letonia" - -# @ woocommerce -#~ msgid "Lebanon" -#~ msgstr "Liban" - -# @ woocommerce -#~ msgid "Lesotho" -#~ msgstr "Lesotho" - -# @ woocommerce -#~ msgid "Liberia" -#~ msgstr "Liberia" - -# @ woocommerce -#~ msgid "Libya" -#~ msgstr "Libya" - -# @ woocommerce -#~ msgid "Liechtenstein" -#~ msgstr "Liechtenstein" - -# @ woocommerce -#~ msgid "Lithuania" -#~ msgstr "Lituania" - -# @ woocommerce -#~ msgid "Luxembourg" -#~ msgstr "Luxembourg" - -# @ woocommerce -#~ msgid "Macao S.A.R., China" -#~ msgstr "Macao S.A.R., China" - -# @ woocommerce -#~ msgid "Macedonia" -#~ msgstr "Macedonia" - -# @ woocommerce -#~ msgid "Madagascar" -#~ msgstr "Madagascar" - -# @ woocommerce -#~ msgid "Malawi" -#~ msgstr "Malawi" - -# @ woocommerce -#~ msgid "Malaysia" -#~ msgstr "Malaysia" - -# @ woocommerce -#~ msgid "Maldives" -#~ msgstr "Maldives" - -# @ woocommerce -#~ msgid "Mali" -#~ msgstr "Mali" - -# @ woocommerce -#~ msgid "Malta" -#~ msgstr "Malta" - -# @ woocommerce -#~ msgid "Marshall Islands" -#~ msgstr "Insulele Marshall" - -# @ woocommerce -#~ msgid "Martinique" -#~ msgstr "Martinica" - -# @ woocommerce -#~ msgid "Mauritania" -#~ msgstr "Mauritania" - -# @ woocommerce -#~ msgid "Mauritius" -#~ msgstr "Mauritius" - -# @ woocommerce -#~ msgid "Mayotte" -#~ msgstr "Mayotte" - -# @ woocommerce -#~ msgid "Mexico" -#~ msgstr "Mexic" - -# @ woocommerce -#~ msgid "Micronesia" -#~ msgstr "Micronesia" - -# @ woocommerce -#~ msgid "Moldova" -#~ msgstr "Moldova" - -# @ woocommerce -#~ msgid "Monaco" -#~ msgstr "Monaco" - -# @ woocommerce -#~ msgid "Mongolia" -#~ msgstr "Mongolia" - -# @ woocommerce -#~ msgid "Montenegro" -#~ msgstr "Muntenegru" - -# @ woocommerce -#~ msgid "Montserrat" -#~ msgstr "Montserrat" - -# @ woocommerce -#~ msgid "Morocco" -#~ msgstr "Maroc" - -# @ woocommerce -#~ msgid "Mozambique" -#~ msgstr "Mozambic" - -# @ woocommerce -#~ msgid "Myanmar" -#~ msgstr "Myanmar" - -# @ woocommerce -#~ msgid "Namibia" -#~ msgstr "Namibia" - -# @ woocommerce -#~ msgid "Nauru" -#~ msgstr "Nauru" - -# @ woocommerce -#~ msgid "Nepal" -#~ msgstr "Nepal" - -# @ woocommerce -#~ msgid "Netherlands" -#~ msgstr "Olanda" - -# @ woocommerce -#~ msgid "Netherlands Antilles" -#~ msgstr "Antilele Olandeze" - -# @ woocommerce -#~ msgid "New Caledonia" -#~ msgstr "Noua Caledonie" - -# @ woocommerce -#~ msgid "New Zealand" -#~ msgstr "Noua Zeelanda" - -# @ woocommerce -#~ msgid "Nicaragua" -#~ msgstr "Nicaragua" - -# @ woocommerce -#~ msgid "Niger" -#~ msgstr "Niger" - -# @ woocommerce -#~ msgid "Nigeria" -#~ msgstr "Nigeria" - -# @ woocommerce -#~ msgid "Niue" -#~ msgstr "Niue" - -# @ woocommerce -#~ msgid "Norfolk Island" -#~ msgstr "Insula Norkfold" - -# @ woocommerce -#~ msgid "North Korea" -#~ msgstr "Coreea de Nord" - -# @ woocommerce -#~ msgid "Northern Mariana Islands" -#~ msgstr "Insula Mariana de Nord" - -# @ woocommerce -#~ msgid "Norway" -#~ msgstr "Norvegia" - -# @ woocommerce -#~ msgid "Oman" -#~ msgstr "Oman" - -# @ woocommerce -#~ msgid "Pakistan" -#~ msgstr "Pakistan" - -# @ woocommerce -#~ msgid "Palau" -#~ msgstr "Palau" - -# @ woocommerce -#~ msgid "Palestinian Territory" -#~ msgstr "Teritoriile Palestiniene" - -# @ woocommerce -#~ msgid "Panama" -#~ msgstr "Panama" - -# @ woocommerce -#~ msgid "Papua New Guinea" -#~ msgstr "Papua Noua Guinee" - -# @ woocommerce -#~ msgid "Paraguay" -#~ msgstr "Paraguay" - -# @ woocommerce -#~ msgid "Peru" -#~ msgstr "Peru" - -# @ woocommerce -#~ msgid "Philippines" -#~ msgstr "Filipine" - -# @ woocommerce -#~ msgid "Pitcairn" -#~ msgstr "Pitcairn" - -# @ woocommerce -#~ msgid "Poland" -#~ msgstr "Polonia" - -# @ woocommerce -#~ msgid "Portugal" -#~ msgstr "Portugalia" - -# @ woocommerce -#~ msgid "Puerto Rico" -#~ msgstr "Porto Rico" - -# @ woocommerce -#~ msgid "Qatar" -#~ msgstr "Qatar" - -# @ woocommerce -#~ msgid "Reunion" -#~ msgstr "Reunion" - -# @ woocommerce -#~ msgid "Romania" -#~ msgstr "România" - -# @ woocommerce -#~ msgid "Russia" -#~ msgstr "Rusia" - -# @ woocommerce -#~ msgid "Rwanda" -#~ msgstr "Rwanda" - -# @ woocommerce -#~ msgid "Saint Barthélemy" -#~ msgstr "Saint Barthélemy" - -# @ woocommerce -#~ msgid "Saint Helena" -#~ msgstr "Sfânta Elena" - -# @ woocommerce -#~ msgid "Saint Kitts and Nevis" -#~ msgstr "Saint Kitts și Nevis" - -# @ woocommerce -#~ msgid "Saint Lucia" -#~ msgstr "Sfânta Lucia" - -# @ woocommerce -#~ msgid "Saint Martin (French part)" -#~ msgstr "Saint Martin" - -# @ woocommerce -#~ msgid "Saint Martin (Dutch part)" -#~ msgstr "Saint Martin (Dutch part)" - -# @ woocommerce -#~ msgid "Saint Pierre and Miquelon" -#~ msgstr "Saint Pierre și Miquelon" - -# @ woocommerce -#~ msgid "Saint Vincent and the Grenadines" -#~ msgstr "Sfântul Vincențiu și Grenadine" - -# @ woocommerce -#~ msgid "Samoa" -#~ msgstr "Samoa" - -# @ woocommerce -#~ msgid "San Marino" -#~ msgstr "San Marino" - -# @ woocommerce -#~ msgid "São Tomé and Príncipe" -#~ msgstr "São Tomé și Príncipe" - -# @ woocommerce -#~ msgid "Saudi Arabia" -#~ msgstr "Arabia Saudită" - -# @ woocommerce -#~ msgid "Senegal" -#~ msgstr "Senegal" - -# @ woocommerce -#~ msgid "Serbia" -#~ msgstr "Serbia" - -# @ woocommerce -#~ msgid "Seychelles" -#~ msgstr "Seychelles" - -# @ woocommerce -#~ msgid "Sierra Leone" -#~ msgstr "Sierra Leone" - -# @ woocommerce -#~ msgid "Singapore" -#~ msgstr "Singapore" - -# @ woocommerce -#~ msgid "Slovakia" -#~ msgstr "Slovacia" - -# @ woocommerce -#~ msgid "Slovenia" -#~ msgstr "Slovenia" - -# @ woocommerce -#~ msgid "Solomon Islands" -#~ msgstr "Insulele Solomon" - -# @ woocommerce -#~ msgid "Somalia" -#~ msgstr "Somalia" - -# @ woocommerce -#~ msgid "South Africa" -#~ msgstr "Africa de Sud" - -# @ woocommerce -#~ msgid "South Georgia/Sandwich Islands" -#~ msgstr "Georgia de Sud / Insulele Sandwich" - -# @ woocommerce -#~ msgid "South Korea" -#~ msgstr "Coreea de Sud" - -# @ woocommerce -#~ msgid "South Sudan" -#~ msgstr "Sudanul de Sud" - -# @ woocommerce -#~ msgid "Spain" -#~ msgstr "Spania" - -# @ woocommerce -#~ msgid "Sri Lanka" -#~ msgstr "Sri Lanka" - -# @ woocommerce -#~ msgid "Sudan" -#~ msgstr "Sudan" - -# @ woocommerce -#~ msgid "Suriname" -#~ msgstr "Surinam" - -# @ woocommerce -#~ msgid "Svalbard and Jan Mayen" -#~ msgstr "Svalbard și Jan Mayen" - -# @ woocommerce -#~ msgid "Swaziland" -#~ msgstr "Swaziland" - -# @ woocommerce -#~ msgid "Sweden" -#~ msgstr "Suedia" - -# @ woocommerce -#~ msgid "Switzerland" -#~ msgstr "Elveția" - -# @ woocommerce -#~ msgid "Syria" -#~ msgstr "Syria" - -# @ woocommerce -#~ msgid "Taiwan" -#~ msgstr "Taiwan" - -# @ woocommerce -#~ msgid "Tajikistan" -#~ msgstr "Tajdikistan" - -# @ woocommerce -#~ msgid "Tanzania" -#~ msgstr "Tanzania" - -# @ woocommerce -#~ msgid "Thailand" -#~ msgstr "Thailanda" - -# @ woocommerce -#~ msgid "Timor-Leste" -#~ msgstr "Timor-Leste" - -# @ woocommerce -#~ msgid "Togo" -#~ msgstr "Togo" - -# @ woocommerce -#~ msgid "Tokelau" -#~ msgstr "Tokelau" - -# @ woocommerce -#~ msgid "Tonga" -#~ msgstr "Tonga" - -# @ woocommerce -#~ msgid "Trinidad and Tobago" -#~ msgstr "Trinidad și Tobago" - -# @ woocommerce -#~ msgid "Tunisia" -#~ msgstr "Tunisia" - -# @ woocommerce -#~ msgid "Turkey" -#~ msgstr "Turcia" - -# @ woocommerce -#~ msgid "Turkmenistan" -#~ msgstr "Turkmenistan" - -# @ woocommerce -#~ msgid "Turks and Caicos Islands" -#~ msgstr "Insulele Turk și Caicos" - -# @ woocommerce -#~ msgid "Tuvalu" -#~ msgstr "Tuvalu" - -# @ woocommerce -#~ msgid "U.S. Virgin Islands" -#~ msgstr "Insulele Virgine S.U.A." - -# @ woocommerce -#~ msgid "US Minor Outlying Islands" -#~ msgstr "SUA, Insulele Minore Îndepărtate" - -# @ woocommerce -#~ msgid "Uganda" -#~ msgstr "Uganda" - -# @ woocommerce -#~ msgid "Ukraine" -#~ msgstr "Ukraina" - -# @ woocommerce -#~ msgid "United Arab Emirates" -#~ msgstr "Emiratele Arabe Unite" - -# @ woocommerce -#~ msgid "United Kingdom" -#~ msgstr "Marea Britanie" - -# @ woocommerce -#~ msgid "United States" -#~ msgstr "Statele Unite ale Americii" - -# @ woocommerce -#~ msgid "Uruguay" -#~ msgstr "Uruguay" - -# @ woocommerce -#~ msgid "Uzbekistan" -#~ msgstr "Uzbekistan" - -# @ woocommerce -#~ msgid "Vanuatu" -#~ msgstr "Vanuatu" - -# @ woocommerce -#~ msgid "Vatican" -#~ msgstr "Vatican" - -# @ woocommerce -#~ msgid "Venezuela" -#~ msgstr "Venezuela" - -# @ woocommerce -#~ msgid "Vietnam" -#~ msgstr "Vietnam" - -# @ woocommerce -#~ msgid "Wallis and Futuna" -#~ msgstr "Wallis și Futuna" - -# @ woocommerce -#~ msgid "Western Sahara" -#~ msgstr "Sahara de Vest" - -# @ woocommerce -#~ msgid "Yemen" -#~ msgstr "Yemen" - -# @ woocommerce -#~ msgid "Zambia" -#~ msgstr "Zambia" - -# @ woocommerce -#~ msgid "Zimbabwe" -#~ msgstr "Zimbabwe" - -# @ woocommerce -#~ msgid "to the" -#~ msgstr "către (?)" - -# @ woocommerce -#~ msgid "to" -#~ msgstr "la" - -# @ woocommerce -#~ msgid "VAT" -#~ msgstr "TVA" - -# @ woocommerce -#~ msgid "(incl. VAT)" -#~ msgstr "(inclusiv TVA)" - -# @ woocommerce -#~ msgid "(incl. tax)" -#~ msgstr "(inclusiv Taxe)" - -# @ woocommerce -#~ msgid "(ex. VAT)" -#~ msgstr "(exclude TVA)" - -# @ woocommerce -#~ msgid "Province" -#~ msgstr "Provincie" - -# @ woocommerce -#~ msgid "Canton" -#~ msgstr "Canton" - -# @ woocommerce -#~ msgid "Municipality" -#~ msgstr "Municipalitate" - -# @ woocommerce -#~ msgid "Town/District" -#~ msgstr "Oraș / Sector" - -# @ woocommerce -#~ msgid "Region" -#~ msgstr "Regiune" - -# @ woocommerce -#~ msgid "Zip" -#~ msgstr "Cod Poștal" - -# @ woocommerce -#~ msgid "State" -#~ msgstr "Stat" - -# @ woocommerce -#~ msgid "County" -#~ msgstr "Județ" - -# @ woocommerce -#~ msgid "Postcode/Zip" -#~ msgstr "Cod Poștal" - -# @ woocommerce -#~ msgid "Town/City" -#~ msgstr "Oraș" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "First Name" -#~ msgstr "Prenume" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Last Name" -#~ msgstr "Nume de Familie" - -# @ woocommerce -#~ msgid "Company Name" -#~ msgstr "Nume Companie" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Company (optional)" -#~ msgstr "Nume Companie (opțional)" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Address" -#~ msgstr "Adresă (prima linie)" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Address 2 (optional)" -#~ msgstr "Adresă (a doua linie - opțional)" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Town/City" -#~ msgstr "Oraș" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Postcode/Zip" -#~ msgstr "Cod Poștal" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Country" -#~ msgstr "Țară" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "State/County" -#~ msgstr "Stat / Județ" - -# @ woocommerce -#~ msgid "Email Address" -#~ msgstr "Adresă email" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Email Address" -#~ msgstr "Adresă email" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Phone" -#~ msgstr "Telefon" - -# @ woocommerce -#~ msgid "Coupon usage limit has been reached." -#~ msgstr "Limita de utilizare a cuponului a fost atinsă." - -# @ woocommerce -#~ msgid "This coupon has expired." -#~ msgstr "Acest cupon a expirat." - -# @ woocommerce -#~ msgid "The minimum spend for this coupon is %s." -#~ msgstr "Valoarea minimă a facturii pentru a utiliza acest cupon este de %s." - -#~ msgid "Sorry, this coupon is not applicable to your cart contents." -#~ msgstr "" -#~ "Ne pare rău dar acest cupon nu se aplică pentru produsele aflate în Coș " -#~ "în momentul de față." - -# @ woocommerce -#~ msgid "Invalid coupon" -#~ msgstr "Cupon invalid!" - -# @ woocommerce -#~ msgid "File %d" -#~ msgstr "Fișier %d" - -# @ woocommerce -#~ msgctxt "hash before order number" -#~ msgid "#" -#~ msgstr "#" - -# @ woocommerce -#~ msgid " %svia %s" -#~ msgstr " %s via %s" - -# @ woocommerce -#~ msgid "Cart Subtotal:" -#~ msgstr "Subtotal Coș" - -# @ woocommerce -#~ msgid "Shipping:" -#~ msgstr "Transport:" - -# @ woocommerce -#~ msgid "Subtotal:" -#~ msgstr "Subtotal:" - -#~ msgid "(Includes %s)" -#~ msgstr "(Include %s)" - -# @ woocommerce -#~ msgid "Order status changed from %s to %s." -#~ msgstr "Status comandă modificat de la %s la %s." - -# @ woocommerce -#~ msgid "Order item stock reduced successfully." -#~ msgstr "Stocul produsului comandat a fost redus cu succes." - -# @ woocommerce -#~ msgid "Buy product" -#~ msgstr "Cumpără produsul" - -# @ woocommerce -#, fuzzy -#~ msgid "" -#~ "This public function needs to be overridden by your payment gateway class." -#~ msgstr "" -#~ "Această funcție trebuie înlocuită de către clasa dumneavoastră de plată " -#~ "(Procesatorul plății)" - -# @ woocommerce -#~ msgid "Only %s left in stock" -#~ msgstr "Doar %s rămase în stoc" - -# @ woocommerce -#~ msgid "%s in stock" -#~ msgstr "%s în stoc" - -# @ woocommerce -#~ msgid "(backorders allowed)" -#~ msgstr "(Comenzile în Așteptare sunt Permise)" - -# @ woocommerce -#~ msgid "Available on backorder" -#~ msgstr "Disponibil pentru Comandă în Așteptare" - -# @ woocommerce -#~ msgctxt "min_price" -#~ msgid "From:" -#~ msgstr "De la:" - -# @ woocommerce -#~ msgid "Rated %s out of 5" -#~ msgstr "Evaluat la %s stele din 5" - -# @ woocommerce -#~ msgid "Completed order" -#~ msgstr "Comandă finalizată" - -#~ msgid "" -#~ "Order complete emails are sent to the customer when the order is marked " -#~ "complete and usual indicates that the order has been shipped." -#~ msgstr "" -#~ "E-mailuri pentru \"Comandă completă\" sunt trimise către client atunci " -#~ "când comanda este marcată ca completă și de obicei înseamnă că articolele " -#~ "din comandă au fost expediate." - -# @ woocommerce -#~ msgid "Your order is complete" -#~ msgstr "Comanda dvs. a fost completă." - -#~ msgid "Your {blogname} order from {order_date} is complete" -#~ msgstr "{blogname} - Comanda dvs. din {order_date} este completă" - -# @ woocommerce -#~ msgid "Your order is complete - download your files" -#~ msgstr "Comanda dvs. este completă - descărcați fișierele dvs." - -#~ msgid "" -#~ "Your {blogname} order from {order_date} is complete - download your files" -#~ msgstr "" -#~ "Your {blogname} order from {order_date} is complete - descărcați " -#~ "fișierele dvs." - -# @ woocommerce -#~ msgid "Enable/Disable" -#~ msgstr "Activează / Dezactivează" - -# @ woocommerce -#~ msgid "Enable this email notification" -#~ msgstr "Activează această notificare de e-mail" - -#~ msgid "Subject" -#~ msgstr "Subiect" - -#~ msgid "Defaults to %s" -#~ msgstr "Implicit la %s" - -# @ woocommerce -#~ msgid "Email Heading" -#~ msgstr "Antet Email" - -# @ woocommerce -#~ msgid "Subject (downloadable)" -#~ msgstr "Subiect (Descărcabil)" - -#~ msgid "Email Heading (downloadable)" -#~ msgstr "Antet Email (Produs Descărcabil)" - -# @ woocommerce -#~ msgid "Email type" -#~ msgstr "Tip email" - -#~ msgid "Choose which format of email to send." -#~ msgstr "Alege formatul de e-mail care va fi trimis." - -#~ msgid "Plain text" -#~ msgstr "Text Simplu" - -#~ msgid "HTML" -#~ msgstr "Html" - -#~ msgid "Multipart" -#~ msgstr "Mai multe părţi" - -# @ woocommerce -#~ msgid "Customer invoice" -#~ msgstr "Factură Client" - -# @ woocommerce -#~ msgid "" -#~ "Customer invoice emails can be sent to the user containing order info and " -#~ "payment links." -#~ msgstr "" -#~ "Trimite factura clientului via email. Acest email va include detaliile " -#~ "comenzii și un link către pagina de plată a facturii." - -#~ msgid "Invoice for order {order_number} from {order_date}" -#~ msgstr "Factura pentru comanda {order_number} din {order_date}" - -# @ woocommerce -#~ msgid "Invoice for order {order_number}" -#~ msgstr "Factură pentru Comanda {order_number}" - -#~ msgid "Your {blogname} order from {order_date}" -#~ msgstr "{blogname} - Comanda din {order_date}" - -#~ msgid "Order {order_number} details" -#~ msgstr "Detalii Comandă {order_number}" - -# @ woocommerce -#~ msgid "Email subject" -#~ msgstr "Subiect Email" - -# @ woocommerce -#~ msgid "Email heading" -#~ msgstr "Antet Email" - -#~ msgid "Email subject (paid)" -#~ msgstr "Subiect Email (plătit)" - -#~ msgid "Email heading (paid)" -#~ msgstr "Antet Email (plătit)" - -# @ woocommerce -#~ msgid "New account" -#~ msgstr "Cont Nou" - -#~ msgid "" -#~ "Customer new account emails are sent when a customer signs up via the " -#~ "checkout or My Account page." -#~ msgstr "" -#~ "Emailurile pentru Client Nou - sunt trimise atunci când un client se " -#~ "înregistrează în Pagina Finalizare Comandă sau Pagina Contul Meu" - -# @ woocommerce -#~ msgid "Your account on {blogname}" -#~ msgstr "Contul tău pe {blogname}" - -# @ woocommerce -#~ msgid "Welcome to {blogname}" -#~ msgstr "Bine ai venit la {blogname}" - -#~ msgid "Customer note emails are sent when you add a note to an order." -#~ msgstr "" -#~ "Emailurile pentru Notițe Client - sunt trimise atunci când adaugi o " -#~ "notită la o comandă" - -#~ msgid "Note added to your {blogname} order from {order_date}" -#~ msgstr "" -#~ "{blogname} - A fost adăugată o nouă notiță la comanda dvs. din " -#~ "{order_date}" - -# @ woocommerce -#~ msgid "A note has been added to your order" -#~ msgstr "A fost adăugată o notiță comenzii tale" - -# @ woocommerce -#~ msgid "Processing order" -#~ msgstr "Comanda în curs de procesare" - -#~ msgid "" -#~ "This is an order notification sent to the customer after payment " -#~ "containing order details." -#~ msgstr "" -#~ "Aceasta este o notificare care este trimisă la client după efectuarea " -#~ "plății. Această notificare conține detaliile comenzii." - -# @ woocommerce -#~ msgid "Thank you for your order" -#~ msgstr "Mulțumim pentru comanda dvs." - -#~ msgid "Your {blogname} order receipt from {order_date}" -#~ msgstr "{blogname} - Comandă primită în {order_date}" - -# @ woocommerce -#~ msgid "Reset password" -#~ msgstr "Resetează parola" - -#~ msgid "" -#~ "Customer reset password emails are sent when a customer resets their " -#~ "password." -#~ msgstr "" -#~ "Emailurile pentru Resetare Parole sunt trimise atunci când un client își " -#~ "resetează parola." - -#~ msgid "Password Reset for {blogname}" -#~ msgstr "Resetează Parola pentru {blogname}" - -# @ woocommerce -#~ msgid "Password Reset Instructions" -#~ msgstr "Instrucțiuni pentru Resetarea Parolei" - -# @ woocommerce -#~ msgid "New order" -#~ msgstr "Comandă Nouă" - -#~ msgid "" -#~ "New order emails are sent when an order is received/paid by a customer." -#~ msgstr "" -#~ "Emailurile pentru Comandă Nouă sunt trimise atunci când o comandă este " -#~ "primită de la client / plătită de către client." - -# @ woocommerce -#~ msgid "New customer order" -#~ msgstr "Comandă client nou" - -#~ msgid "[{blogname}] New customer order ({order_number}) - {order_date}" -#~ msgstr "[{blogname}] - Comandă nouă ({order_number}) - {order_date}" - -#~ msgid "Recipient(s)" -#~ msgstr "Destinatar(i)" - -#~ msgid "" -#~ "Enter recipients (comma separated) for this email. Defaults to %s." -#~ msgstr "" -#~ "Introduceți desitanatarii (separați prin virgulă). Implicit către " -#~ "%s." - -# @ woocommerce -#~ msgid "" -#~ "This controls the email subject line. Leave blank to use the default " -#~ "subject: %s." -#~ msgstr "" -#~ "Această setare controlează Subiectul Emailului.Lasă cîmpul gol pentru a " -#~ "utiliza forma setată implicit: %s." - -#~ msgid "" -#~ "This controls the main heading contained within the email notification. " -#~ "Leave blank to use the default heading: %s." -#~ msgstr "" -#~ "Aceasta controlează Antetul principal conținut în notificările prin " -#~ "email. Lăsaţi liber pentru a utiliza Antetul implicit: %s." - -#~ msgid "Could not write to template file." -#~ msgstr "Nu am putut scrie în fișierul șablon." - -#~ msgid "Template file copied to theme." -#~ msgstr "Fișier șablon copiat în directorul temei." - -#~ msgid "Template file deleted from theme." -#~ msgstr "Fișier șablon șters din temă." - -# @ woocommerce -#~ msgid "Plain text template" -#~ msgstr "Șablon - format text simplu" - -# @ woocommerce -#~ msgid "Delete template file" -#~ msgstr "Șterge fișierul șablon" - -#~ msgid "" -#~ "This template has been overridden by your theme and can be found in: " -#~ "%s." -#~ msgstr "" -#~ "Acest șablon a fost înlocuit de tema dvs. și poate fi găsit la în: " -#~ "%s." - -#~ msgid "Copy file to theme" -#~ msgstr "Copiază fișierul în directorul temei curente" - -#~ msgid "" -#~ "To override and edit this email template copy %s to your " -#~ "theme folder: %s." -#~ msgstr "" -#~ "Pentru a înlocui şi edita acest şablon de e-mail, copiază %s " -#~ "în directorul: %s din interiorul temei active." - -# @ woocommerce -#~ msgid "File was not found." -#~ msgstr "Fișierul nu a fost găsit." - -# @ woocommerce -#~ msgid "View template" -#~ msgstr "Vizualizează șablon" - -# @ woocommerce -#~ msgid "Hide template" -#~ msgstr "Ascunde șablon" - -# @ woocommerce -#~ msgid "Are you sure you want to delete this template file?" -#~ msgstr "Ești sigur că vrei să ștergi acest șablon?" - -# @ woocommerce -#~ msgid "Note" -#~ msgstr "Notiță" - -# @ woocommerce -#~ msgid "Product low in stock" -#~ msgstr "Produs cu stoc redus" - -# @ woocommerce -#~ msgid "Product #%s - %s" -#~ msgstr "Produs #%s - %s" - -# @ woocommerce -#~ msgid "is low in stock." -#~ msgstr "are stoc redus." - -# @ woocommerce -#~ msgid "is out of stock." -#~ msgstr "nu mai este pe stoc." - -# @ woocommerce -#~ msgid "Product Backorder" -#~ msgstr "Produs pe Lista de Așteptare" - -# @ woocommerce -#~ msgid "%s units of %s have been backordered in order #%s." -#~ msgstr "" -#~ "%s unități din %s au fost comandate pe Lista de Așteptare, referință " -#~ "comandă #%s." - -# @ woocommerce -#~ msgid "Bacs" -#~ msgstr "Transfer Bancar" - -# @ woocommerce -#~ msgid "Enable Bank Transfer" -#~ msgstr "Activează opțiunea de Transfer Bancar" - -# @ woocommerce -#~ msgid "Title" -#~ msgstr "Titlu" - -# @ woocommerce -#~ msgid "This controls the title which the user sees during checkout." -#~ msgstr "" -#~ "Această opțiune controlează titlul pe care utilizatorul îl vede în timpul " -#~ "procesării comenzii." - -# @ woocommerce -#~ msgid "Direct Bank Transfer" -#~ msgstr "Transfer Bancar direct" - -# @ woocommerce -#~ msgid "Customer Message" -#~ msgstr "Mesaj Client" - -# @ woocommerce -#~ msgid "" -#~ "Give the customer instructions for paying via BACS, and let them know " -#~ "that their order won't be shipping until the money is received." -#~ msgstr "" -#~ "Oferă clienților instrucțiuni pentru operarea plății prin Transfer " -#~ "Bancar. Comanda lor nu va fi trimisă pentru livrare până în momentul " -#~ "confirmării plății." - -# @ woocommerce -#~ msgid "" -#~ "Make your payment directly into our bank account. Please use your Order " -#~ "ID as the payment reference. Your order wont be shipped until the funds " -#~ "have cleared in our account." -#~ msgstr "" -#~ "Plătește direct in contul nostru bancar. Vă rugăm să utilizați Codul de " -#~ "Identificare a comenzii ca și referință de plată. Comanda dvs. nu va fi " -#~ "expediată decât în momentul în care factura a fost achitată în contul " -#~ "nostru." - -# @ woocommerce -#~ msgid "Account Details" -#~ msgstr "Detalii Cont" - -# @ woocommerce -#~ msgid "Optionally enter your bank details below for customers to pay into." -#~ msgstr "" -#~ "Opțional, introduceți detaliile bancare mai jos pentru a activa opțiune " -#~ "de Transfer Bancar (?)" - -# @ woocommerce -#~ msgid "Account Name" -#~ msgstr "Titular Cont" - -# @ woocommerce -#~ msgid "Account Number" -#~ msgstr "Număr Cont" - -# @ woocommerce -#~ msgid "Sort Code" -#~ msgstr "Cod Sortare" - -# @ woocommerce -#~ msgid "Bank Name" -#~ msgstr "Bancă" - -# @ woocommerce -#~ msgid "IBAN" -#~ msgstr "IBAN" - -# @ woocommerce -#~ msgid "Your bank may require this for international payments" -#~ msgstr "" -#~ "Banca dvs. poate solicita acest cod pentru a procesa plăţi internaţionale" - -# @ woocommerce -#~ msgid "BIC (formerly Swift)" -#~ msgstr "BIC (inițial Cod Swift)" - -# @ woocommerce -#~ msgid "BACS Payment" -#~ msgstr "Plată prin Transfer Bancar" - -# @ woocommerce -#~ msgid "" -#~ "Allows payments by BACS (Bank Account Clearing System), more commonly " -#~ "known as direct bank/wire transfer." -#~ msgstr "" -#~ "Permite efectuarea de plăți prin BACS (Bank Account Clearing System), mai " -#~ "bine cunoscut sub numele de Transfer Bancar." - -# @ woocommerce -#~ msgid "Our Details" -#~ msgstr "Detaliile noastre" - -# @ woocommerce -#~ msgid "BIC" -#~ msgstr "BIC" - -# @ woocommerce -#~ msgid "Awaiting BACS payment" -#~ msgstr "Așteaptă confirmare plată Transfer Bancar" - -# @ woocommerce -#~ msgid "Cheque" -#~ msgstr "CEC" - -# @ woocommerce -#~ msgid "Enable Cheque Payment" -#~ msgstr "Acceptă plăți cu cecuri" - -# @ woocommerce -#~ msgid "Cheque Payment" -#~ msgstr "Cec de plată" - -# @ woocommerce -#~ msgid "" -#~ "Let the customer know the payee and where they should be sending the " -#~ "cheque to and that their order won't be shipping until you receive it." -#~ msgstr "" -#~ "Oferă-i clientului detaliile necesare pentru a completa și trimite cec-ul " -#~ "pentru comanda sa, cu explicația: Comanda va fi expediată în momentul în " -#~ "care cec-ul este recepționat. (?)" - -# @ woocommerce -#~ msgid "" -#~ "Please send your cheque to Store Name, Store Street, Store Town, Store " -#~ "State / County, Store Postcode." -#~ msgstr "" -#~ "Vă rugăm să trimiteți cecu-ul dvs. către Nume Magazin, strada Magazin, " -#~ "oraș Magazin, județ Magazin, cod poștal Magazin" - -# @ woocommerce -#~ msgid "" -#~ "Allows cheque payments. Why would you take cheques in this day and age? " -#~ "Well you probably wouldn't but it does allow you to make test purchases " -#~ "for testing order emails and the 'success' pages etc." -#~ msgstr "" -#~ "Permite efectuarea de plăți prin cec-uri. De ce ați accepta plata prin " -#~ "cec-uri în ziua de astăzi?! Probabil nu ai accepta, însă această opțiune " -#~ "îți permite să faci teste de cumpărare a unui produs și să verifici " -#~ "redirecționările către restul paginilor după plasarea unei comenzi." - -# @ woocommerce -#~ msgid "Awaiting cheque payment" -#~ msgstr "Plata prin cec este așteptată" - -# @ woocommerce -#~ msgid "Cash on Delivery" -#~ msgstr "Plata la Destinație » Ramburs" - -# @ woocommerce -#~ msgid "Have your customers pay with cash (or by other means) upon delivery." -#~ msgstr "Clienții plătesc numerar, la livrare." - -# @ woocommerce -#~ msgid "Enable COD" -#~ msgstr "Plata Ramburs" - -# @ woocommerce -#~ msgid "Enable Cash on Delivery" -#~ msgstr "Activează Plata Ramburs?" - -# @ woocommerce -#~ msgid "Payment method title that the customer will see on your website." -#~ msgstr "Titlul metodei de plată pe care clientul o vede pe site." - -# @ woocommerce -#~ msgid "" -#~ "Payment method description that the customer will see on your website." -#~ msgstr "Descrierea metodei de plată pe care clientul o vede pe site." - -# @ woocommerce -#~ msgid "Instructions" -#~ msgstr "Instrucțiuni" - -# @ woocommerce -#~ msgid "Instructions that will be added to the thank you page." -#~ msgstr "Instrucțiunile vor fi adăugate pe pagina MULŢUMIM." - -# @ woocommerce -#~ msgid "Enable for shipping methods" -#~ msgstr "Activează pentru Metodele de Livrare" - -#~ msgid "" -#~ "If COD is only available for certain methods, set it up here. Leave blank " -#~ "to enable for all methods." -#~ msgstr "" -#~ "Dacă această metodă (Plată Ramburs) este disponilbilă numai pentru " -#~ "anumite metode de livrare, introduceţi-le aici. Lăsaţi gol pentru a " -#~ "activa pentru toate metodele." - -# @ woocommerce -#~ msgid "Payment to be made upon delivery." -#~ msgstr "Plata va fi efectuată la livrarea comenzii." - -# @ woocommerce -#~ msgid "Mijireh Checkout" -#~ msgstr "Procesatorul de plăți Mijireh" - -# @ woocommerce -#~ msgid "Mijireh error:" -#~ msgstr "Eroare Mijireh:" - -# @ woocommerce -#~ msgid "Enable Mijireh Checkout" -#~ msgstr "Activează procesarea plăților prin Mijireh" - -# @ woocommerce -#~ msgid "Access Key" -#~ msgstr "Cheie de Acces" - -# @ woocommerce -#~ msgid "The Mijireh access key for your store." -#~ msgstr "" -#~ "Cheia de acces a procesatorului de plăți online Mijireh, validă pentru " -#~ "magazinul tău." - -# @ woocommerce -#~ msgid "Pay securely with you credit card." -#~ msgstr "Plătește în siguranță folosind cardul tău de credit." - -# @ woocommerce -#~ msgid "This controls the description which the user sees during checkout." -#~ msgstr "" -#~ "Aceasta opțiune controlează ceea ce utilizator va vedea în timpul " -#~ "plasării comenzii." - -# @ woocommerce -#~ msgid "Get started with Mijireh Checkout" -#~ msgstr "Începe colaborarea cu procesatorul de plăți Mijireh" - -# @ woocommerce -#~ msgid "" -#~ "provides a fully PCI Compliant, secure way to collect and transmit credit " -#~ "card data to your payment gateway while keeping you in control of the " -#~ "design of your site. Mijireh supports a wide variety of payment gateways: " -#~ "Stripe, Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and " -#~ "more." -#~ msgstr "" -#~ "oferă o metodă sigură și atestată de a colecta și transmite date de " -#~ "credit card către portalul de plată în timp ce tu controlezi design-ul " -#~ "site-ului. Mijireh suportă o varietate largă de gateway-uri de plată: " -#~ "Stripe, Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap precum " -#~ "și alții" - -# @ woocommerce -#~ msgid "Join for free" -#~ msgstr "Înscrie-te Gratuit!" - -# @ woocommerce -#~ msgid "Learn more about WooCommerce and Mijireh" -#~ msgstr "" -#~ "Află mai multe detalii despre WooCommerce și Procesatorul de plăți online " -#~ "Mijireh" - -# @ woocommerce -#~ msgid "" -#~ "provides a fully PCI Compliant, secure way to collect and transmit credit " -#~ "card data to your payment gateway while keeping you in control of the " -#~ "design of your site." -#~ msgstr "" -#~ "oferă o metodă sigură și atestată de a colecta și transmite date de " -#~ "credit card către portalul de plată în timp ce tu controlezi design-ul " -#~ "site-ului." - -# @ woocommerce -#~ msgid "PayPal" -#~ msgstr "PayPal" - -# @ woocommerce -#~ msgid "PayPal standard" -#~ msgstr "PayPal standard" - -# @ woocommerce -#~ msgid "" -#~ "PayPal standard works by sending the user to PayPal to enter their " -#~ "payment information." -#~ msgstr "" -#~ "Modulul PayPal Standard redirecționează clientul către " -#~ "site-ul PayPal pentru a introduce informațiile necesare efectuării plății." - -# @ woocommerce -#~ msgid "Gateway Disabled" -#~ msgstr "Portal Dezactivat" - -# @ woocommerce -#~ msgid "PayPal does not support your store currency." -#~ msgstr "PayPal nu suportă moneda setată implicit pentru magazinul tău." - -# @ woocommerce -#~ msgid "Enable PayPal standard" -#~ msgstr "Activează PayPal standard" - -# @ woocommerce -#~ msgid "" -#~ "Pay via PayPal; you can pay with your credit card if you don't have a " -#~ "PayPal account" -#~ msgstr "" -#~ "Plătește prin PayPal. Poți plăti cu cardul de credit chiar dacă nu ai " -#~ "cont de PayPal" - -# @ woocommerce -#~ msgid "PayPal Email" -#~ msgstr "Adresa contului de PayPal" - -# @ woocommerce -#~ msgid "" -#~ "Please enter your PayPal email address; this is needed in order to take " -#~ "payment." -#~ msgstr "" -#~ "Adresa de email cu care a fost creat contul de PayPal; Această adresă de " -#~ "email este necesară pentru ca plățile să fie procesate direct în contul " -#~ "tău de PayPal." - -#~ msgid "Invoice Prefix" -#~ msgstr "Prefix Factură" - -#~ msgid "" -#~ "Please enter a prefix for your invoice numbers. If you use your PayPal " -#~ "account for multiple stores ensure this prefix is unqiue as PayPal will " -#~ "not allow orders with the same invoice number." -#~ msgstr "" -#~ "Introdu un prefix pentru numărul facturii. Dacă folosești același cont de " -#~ "PayPal pe mai multe magazine, asigură-te că acest prefix este unic pentru " -#~ "fiecare magazin în parte. PayPal nu permite procesarea comenzilor ce au " -#~ "același număr de factură." - -# @ woocommerce -#~ msgid "Submission method" -#~ msgstr "Metodă de trimitere a informațiilor" - -# @ woocommerce -#~ msgid "Use form submission method." -#~ msgstr "Utilizează metoda de execuție prin formular" - -# @ woocommerce -#~ msgid "" -#~ "Enable this to post order data to PayPal via a form instead of using a " -#~ "redirect/querystring." -#~ msgstr "" -#~ "Activează această opțiune pentru a trimite datele către PayPal prin " -#~ "intermediul unui formular în loc de a folosi o metodă de redirecționare " -#~ "sau a unui șir de interogare." - -# @ woocommerce -#~ msgid "Page Style" -#~ msgstr "Stil pagină" - -# @ woocommerce -#~ msgid "" -#~ "Optionally enter the name of the page style you wish to use. These are " -#~ "defined within your PayPal account." -#~ msgstr "" -#~ "Opțional, introduceți numele paginii pe care doriți să o folosiți ca " -#~ "șablon. Aceste tipuri de pagină sunt definite în contul dvs. PayPal." - -# @ woocommerce -#~ msgid "Shipping options" -#~ msgstr "Opțiuni Livrare" - -# @ woocommerce -#~ msgid "Shipping details" -#~ msgstr "Detalii Livrare" - -# @ woocommerce -#~ msgid "Send shipping details to PayPal instead of billing." -#~ msgstr "" -#~ "În locul informațiilor de facturare, trimite informațiile de livrare." - -# @ woocommerce -#~ msgid "" -#~ "PayPal allows us to send 1 address. If you are using PayPal for shipping " -#~ "labels you may prefer to send the shipping address rather than billing." -#~ msgstr "" -#~ "PayPal ne permite să trimitem către serverele o singură adresă. Dacă " -#~ "folosești PayPal pentru a tipări Adresele de Livrare, ar fi indicat să " -#~ "trimiți Adresa de Livrare în locul Adresei de Facturare." - -# @ woocommerce -#~ msgid "Address override" -#~ msgstr "Suprascrie Adresa" - -# @ woocommerce -#~ msgid "" -#~ "Enable \"address_override\" to prevent address information from being " -#~ "changed." -#~ msgstr "" -#~ "Activează \"suprascriere_adresa\" pentru a preveni modificarea " -#~ "informației." - -# @ woocommerce -#~ msgid "" -#~ "PayPal verifies addresses therefore this setting can cause errors (we " -#~ "recommend keeping it disabled)." -#~ msgstr "" -#~ "PayPal verifică adresele, de aceea aceasă setare poate cauza erori, " -#~ "recomandăm să o păstrați dezactivată." - -# @ woocommerce -#~ msgid "Gateway Testing" -#~ msgstr "Testare Gateway" - -# @ woocommerce -#~ msgid "PayPal sandbox" -#~ msgstr "Modul Testare PayPal" - -# @ woocommerce -#~ msgid "Enable PayPal sandbox" -#~ msgstr "Activează Modul de Testare pentru PayPal" - -# @ woocommerce -#~ msgid "" -#~ "PayPal sandbox can be used to test payments. Sign up for a developer " -#~ "account here." -#~ msgstr "" -#~ "Modul de Testare PayPal poate fi utilizat pentru verificarea stării de " -#~ "funcționare a magazinului. Pentru a putea utiliza acest mod trebuie să vă " -#~ "înregistrați creați un cont dezvoltator de aici." - -# @ woocommerce -#~ msgid "Debug Log" -#~ msgstr "Jurnal Depanare" - -# @ woocommerce -#~ msgid "Enable logging" -#~ msgstr "Activează înregistrarea informațiilor" - -# @ default -#~ msgid "" -#~ "Log PayPal events, such as IPN requests, inside woocommerce/logs/" -#~ "paypal.txt" -#~ msgstr "" -#~ "Înregistrare conexiuni către serverele PayPal, cum ar fi solicitările " -#~ "IPN, în fișierul woocommerce/logs/paypal.txt" - -# @ woocommerce -#~ msgid "Shipping via" -#~ msgstr "Livrare prin" - -# @ woocommerce -#~ msgid "" -#~ "Thank you for your order. We are now redirecting you to PayPal to make " -#~ "payment." -#~ msgstr "" -#~ "Vă mulțumim pentru comanda dvs. Vă vom redirecționa către site-ul PayPal " -#~ "pentru a efectua plata comenzii." - -# @ woocommerce -#~ msgid "Pay via PayPal" -#~ msgstr "Plătește prin PayPal" - -# @ woocommerce -#~ msgid "Cancel order & restore cart" -#~ msgstr "Anulează comand & restaurează Coșul" - -# @ woocommerce -#~ msgid "" -#~ "Thank you for your order, please click the button below to pay with " -#~ "PayPal." -#~ msgstr "" -#~ "Vă mulțumim pentru comanda dvs. Vă rugăm apăsați butonul de mai jos " -#~ "pentru a achita comanda prin PayPal." - -#~ msgid "Validation error: PayPal amounts do not match (gross %s)." -#~ msgstr "" -#~ "Eroare în timpul Validării: Sumele PayPal nu se potrivesc (brut %s )." - -# @ woocommerce -#~ msgid "IPN payment completed" -#~ msgstr "Plată IPN finalizată" - -# @ woocommerce -#~ msgid "Payment %s via IPN." -#~ msgstr "Plata %s prin IPN" - -# @ woocommerce -#~ msgid "Order refunded/reversed" -#~ msgstr "Comandă rambursată / inversată" - -# @ woocommerce -#~ msgid "Order %s has been marked as refunded - PayPal reason code: %s" -#~ msgstr "" -#~ "Comanda %s a fost marcată ca rambursată - Codul motivului invocat de " -#~ "PayPal: %s" - -# @ woocommerce -#~ msgid "Payment for order %s refunded/reversed" -#~ msgstr "Plata pentru comanda %s a fost rambursată / inversată" - -# @ woocommerce -#~ msgid "Google Analytics" -#~ msgstr "Google Analytics" - -# @ woocommerce -#~ msgid "" -#~ "Google Analytics is a free service offered by Google that generates " -#~ "detailed statistics about the visitors to a website." -#~ msgstr "" -#~ "Google Analytics este un serviciu gratuit, oferit de Google, ce " -#~ "furnizează statistici detaliate despre vizitatorii unui site." - -# @ woocommerce -#~ msgid "Google Analytics ID" -#~ msgstr "Cod Google Analytics" - -# @ woocommerce -#~ msgid "" -#~ "Log into your google analytics account to find your ID. e.g. UA-" -#~ "XXXXX-X" -#~ msgstr "" -#~ " Codul de forma: UA-XXXXX-X, îl găsiți în contul dvs. " -#~ "de pe http://www.google.com/analytics" - -# @ woocommerce -#~ msgid "Tracking code" -#~ msgstr "Cod de urmărire" - -# @ woocommerce -#~ msgid "" -#~ "Add tracking code to your site's footer. You don't need to enable this if " -#~ "using a 3rd party analytics plugin." -#~ msgstr "" -#~ "Inserați codul de urmărire a vizitatorilor în subsolul paginii. Această " -#~ "opțiune nu trebuie activată dacă se folosește un cod furnizat de altă " -#~ "companie." - -# @ woocommerce -#~ msgid "Add eCommerce tracking code to the thankyou page" -#~ msgstr "Inserați codul de urmărire a vizitatorilor la pagina de Thank You" - -#~ msgid "Add event tracking code for add to cart actions" -#~ msgstr "" -#~ "Adaugă cod de urmărire pentru acțiunile de adăugare a produselor în Coș." - -# @ woocommerce -#~ msgid "SKU:" -#~ msgstr "Cod Produs:" - -# @ woocommerce -#~ msgid "Add to Cart" -#~ msgstr "Adaugă în Coș" - -# @ woocommerce -#~ msgid "ShareDaddy" -#~ msgstr "ShareDaddy" - -# @ woocommerce -#~ msgid "ShareDaddy is a sharing plugin bundled with JetPack." -#~ msgstr "ShareDaddy este un plugin de partajare ce vine la pachet cu JetPack" - -# @ woocommerce -#~ msgid "Output ShareDaddy button?" -#~ msgstr "Afișează butonul ShareDaddy?" - -# @ woocommerce -#~ msgid "" -#~ "Enable this option to show the ShareDaddy button on the product page." -#~ msgstr "" -#~ "Activează această opțiune pentru a afișa butonul ShareDaddy pe pagina de " -#~ "produs." - -# @ woocommerce -#~ msgid "ShareThis" -#~ msgstr "ShareThis" - -# @ woocommerce -#~ msgid "" -#~ "ShareThis offers a sharing widget which will allow customers to share " -#~ "links to products with their friends." -#~ msgstr "" -#~ "ShareThis oferă un widget de partajare ce va permite clienților dvs. să " -#~ "distribuie link-uri cu produsele magazinului către prietenii lor." - -# @ woocommerce -#~ msgid "ShareThis Publisher ID" -#~ msgstr "ID ShareThis" - -# @ woocommerce -#~ msgid "" -#~ "Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons " -#~ "on product pages." -#~ msgstr "" -#~ "  Introdu %1$sCodul tău de distribuitor ShareThis%2$s pentru a " -#~ "adăuga butoanele de partajere pe paginile de produs." - -# @ woocommerce -#~ msgid "ShareThis Code" -#~ msgstr "Cod ShareThis" - -# @ woocommerce -#~ msgid "You can tweak the ShareThis code by editing this option." -#~ msgstr "Din casete de mai sus poți modifica codul ShareThis." - -# @ woocommerce -#~ msgid "ShareYourCart" -#~ msgstr "ShareYourCart" - -# @ woocommerce -#~ msgid "" -#~ "Increase your social media exposure by 10 percent! ShareYourCart helps " -#~ "you get more customers by motivating satisfied customers to talk with " -#~ "their friends about your products. For help with ShareYourCart view the " -#~ "documentation." -#~ msgstr "" -#~ "Mărește-ți expunerea pe canalele de media sociale cu cel puțin 10 la " -#~ "sută! ShareYourCart permite clienților să promoveze produsele tale " -#~ "prietenilor. Mai multe informații consultând documentația." - -#~ msgid "Share your cart settings" -#~ msgstr "Setări \"Share your cart\"" - -# @ woocommerce -#~ msgid "Button" -#~ msgstr "Buton" - -# @ woocommerce -#~ msgid "Customize Button" -#~ msgstr "Particularizează Buton" - -# @ woocommerce -#~ msgid "Documentation" -#~ msgstr "Documentație" - -# @ woocommerce -#~ msgid "Setup your ShareYourCart account" -#~ msgstr "Configurare cont ShareYourCart" - -# @ woocommerce -#~ msgid "Create an account" -#~ msgstr "Crează Cont" - -# @ woocommerce -#~ msgid "Can't access your account?" -#~ msgstr "Nu îți poți accesa contul?" - -# @ woocommerce -#~ msgid "Configure" -#~ msgstr "Configurează" - -# @ woocommerce -#~ msgid "Button style" -#~ msgstr "Stil buton" - -# @ woocommerce -#~ msgid "Flat rate" -#~ msgstr "Cost Fix" - -# @ woocommerce -#~ msgid "Flat Rates" -#~ msgstr "Costuri Fixe" - -# @ woocommerce -#~ msgid "Flat rates let you define a standard rate per item, or per order." -#~ msgstr "" -#~ "Cost Fix îți permite să definești o rată standard pentru articol sau " -#~ "comandă." - -# @ woocommerce -#~ msgid "Enable this shipping method" -#~ msgstr "Activează această Metodă de Livrare" - -# @ woocommerce -#~ msgid "Method Title" -#~ msgstr "Titlu Metodă" - -# @ woocommerce -#~ msgid "Flat Rate" -#~ msgstr "Cost Fix" - -# @ woocommerce -#~ msgid "Cost per order" -#~ msgstr "Cost per comandă" - -# @ woocommerce -#~ msgid "Enter a cost per order, e.g. 5.00. Leave blank to disable." -#~ msgstr "" -#~ "Introdu un cost per comandă, de ex. 5,00. Lasă câmpul gol pentru a " -#~ "dezactiva această opțiune." - -# @ woocommerce -#~ msgid "Method availability" -#~ msgstr "Disponibilitate metodă" - -# @ woocommerce -#~ msgid "All allowed countries" -#~ msgstr "Toate țările permise" - -# @ woocommerce -#~ msgid "Calculation Type" -#~ msgstr "Mod de calcul" - -# @ woocommerce -#~ msgid "Per Order - charge shipping for the entire order as a whole" -#~ msgstr "Per Comandă - charge shipping for the entire order as a whole" - -# @ woocommerce -#~ msgid "Per Item - charge shipping for each item individually" -#~ msgstr "Per Articol - charge shipping for each item individually" - -# @ woocommerce -#~ msgid "Per Class - charge shipping for each shipping class in an order" -#~ msgstr "Per Clasă - charge shipping for each shipping class in an order" - -# @ woocommerce -#~ msgid "Default Cost" -#~ msgstr "Cost normal" - -# @ woocommerce -#~ msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -#~ msgstr "Cost, fără taxe. Introdu o sumă, ex.: 2,23." - -# @ woocommerce -#~ msgid "Default Handling Fee" -#~ msgstr "Comision de prelucrare a comenzii" - -# @ woocommerce -#~ msgid "" -#~ "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. " -#~ "Leave blank to disable." -#~ msgstr "" -#~ "Comision fără taxe. Introdu suma, ex.: 2,25 sau un procent ex.: 5%. Lasă " -#~ "câmpul gol pentru a dezactiva opțiunea." - -# @ woocommerce -#~ msgid "Minimum Fee" -#~ msgstr "Comision minim" - -# @ woocommerce -#~ msgid "" -#~ "Enter a minimum fee amount. Fee's less than this will be increased. Leave " -#~ "blank to disable." -#~ msgstr "" -#~ "Introdu un comision minim. Comisioanele mai mici decât acesta vor fi " -#~ "crescute automat. Lasă câmpul gol pentru a dezactiva opțiunea." - -# @ woocommerce -#~ msgid "" -#~ "Optional extra shipping options with additional costs (one per line). " -#~ "Example: Option Name|Cost|Per-order (yes or no). Example: " -#~ "Priority Mail|6.95|yes. If per-order is set to no, it will " -#~ "use the \"Calculation Type\" setting." -#~ msgstr "" -#~ "Opțiuni adiționale pentru Livrare, cu costuri adiționale (una per linie). " -#~ "Ex.: Nume Opțiune|Cost|Per Comandă (Da sau Nu). Ex.: " -#~ "Poșta Română|6,95|da. (?)" - -# @ woocommerce -#~ msgid "Cost, excluding tax." -#~ msgstr "Cost, fără taxe. " - -# @ woocommerce -#~ msgid "Handling Fee" -#~ msgstr "Comision de prelucrare a comenzii" - -# @ woocommerce -#~ msgid "" -#~ "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -#~ msgstr "Comision fără taxe. Introdu o sumă sau procent" - -# @ woocommerce -#~ msgid "+ Add Flat Rate" -#~ msgstr "+ Adaugă Cost Fix" - -# @ woocommerce -#~ msgid "" -#~ "Add rates for shipping classes here — they will override the " -#~ "default costs defined above." -#~ msgstr "" -#~ "Adaugă costuri pentru clasele de expediere aici — aceste costuri " -#~ "vor suprascrie costurile originale definite mai sus." - -# @ woocommerce -#~ msgid "Select a class…" -#~ msgstr "Selectați o clasă…" - -# @ woocommerce -#~ msgid "0.00" -#~ msgstr "0,00" - -# @ woocommerce -#~ msgid "Delete the selected rates?" -#~ msgstr "Șterge ratele selectate?" - -# @ woocommerce -#~ msgid "Free Shipping" -#~ msgstr "Livrare Gratuită" - -# @ woocommerce -#~ msgid "Enable Free Shipping" -#~ msgstr "Activează Livrare Gratuită" - -# @ woocommerce -#, fuzzy -#~ msgid "Free Shipping Requires..." -#~ msgstr "Livrare Gratuită" - -# @ woocommerce -#, fuzzy -#~ msgid "A valid free shipping coupon" -#~ msgstr "Activează Livrare Gratuită" - -# @ woocommerce -#, fuzzy -#~ msgid "A minimum order amount OR a coupon" -#~ msgstr "Comandă minimă" - -# @ woocommerce -#, fuzzy -#~ msgid "A minimum order amount AND a coupon" -#~ msgstr "Comandă minimă" - -# @ woocommerce -#~ msgid "Minimum Order Amount" -#~ msgstr "Comandă minimă" - -# @ woocommerce -#, fuzzy -#~ msgid "" -#~ "Users will need to spend this amount to get free shipping (if enabled " -#~ "above)." -#~ msgstr "" -#~ "Pentru a beneficia de Livrare Gratuită, vizitatorii trebuie să aibă o " -#~ "comandă în valoare de minim. Lasă gol pentru a dezactiva opțiunea." - -# @ woocommerce -#~ msgid "International Delivery" -#~ msgstr "Livrare Internațională" - -# @ woocommerce -#~ msgid "International delivery based on flat rate shipping." -#~ msgstr "Livrarea Internațională poate fi efectuată doar cu un cost fix." - -# @ woocommerce -#~ msgid "Availability" -#~ msgstr "Disponibilitate" - -# @ woocommerce -#~ msgid "Selected countries" -#~ msgstr "Țări selectate" - -# @ woocommerce -#~ msgid "Excluding selected countries" -#~ msgstr "Excluzând țările selectate" - -# @ woocommerce -#~ msgid "Countries" -#~ msgstr "Țări" - -# @ woocommerce -#~ msgid "Local Delivery" -#~ msgstr "Livrare Locală" - -# @ woocommerce -#~ msgid "Enable" -#~ msgstr "Activează" - -# @ woocommerce -#~ msgid "Enable local delivery" -#~ msgstr "Activează Livrare Locală" - -# @ woocommerce -#~ msgid "Fee Type" -#~ msgstr "Tip Comision" - -# @ woocommerce -#~ msgid "How to calculate delivery charges" -#~ msgstr "Cum se calculează costurile de livrare" - -# @ woocommerce -#~ msgid "Fixed amount" -#~ msgstr "Sumă Fixă" - -# @ woocommerce -#~ msgid "Percentage of cart total" -#~ msgstr "Procent din totalul Coșului" - -# @ woocommerce -#~ msgid "Fixed amount per product" -#~ msgstr "Sumă fixă per produs" - -# @ woocommerce -#~ msgid "Delivery Fee" -#~ msgstr "Taxă de Livrare" - -# @ woocommerce -#~ msgid "" -#~ "What fee do you want to charge for local delivery, disregarded if you " -#~ "choose free. Leave blank to disable." -#~ msgstr "" -#~ "Cât costă Livrarea Locală? (Suma introdusă este ignorată dacă se alege " -#~ "Gratuit). Lasă câmpul gol pentru a dezactiva." - -# @ woocommerce -#~ msgid "Zip/Post Codes" -#~ msgstr "Coduri Poștale" - -# @ woocommerce -#~ msgid "" -#~ "What zip/post codes would you like to offer delivery to? Separate codes " -#~ "with a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -#~ msgstr "" -#~ "Pentru ce coduri poștale oferi livrarea produselor? Separă codurile " -#~ "poștale cu o virgulă ( , ). Sunt aceptate metacaractere (ex P* se va " -#~ "potrivi cu codul poștal PE30 și PF25)" - -# @ woocommerce -#~ msgid "" -#~ "Local delivery is a simple shipping method for delivering orders locally." -#~ msgstr "" -#~ "Livrare locală este o metodă simplă de expediere locală a comenzilor." - -# @ woocommerce -#~ msgid "Local Pickup" -#~ msgstr "Ridicare de la Sediu" - -# @ woocommerce -#~ msgid "Enable local pickup" -#~ msgstr "Activează preluare locală" - -# @ woocommerce -#~ msgid "Apply base tax rate" -#~ msgstr "Aplică taxele (cota de impozitare) de bază" - -#~ msgid "" -#~ "When this shipping method is chosen, apply the base tax rate rather than " -#~ "for the customer's given address." -#~ msgstr "Când este aleasă o metodă de livrare, aplicaţi " - -# @ woocommerce -#~ msgid "" -#~ "Local pickup is a simple method which allows the customer to pick up " -#~ "their order themselves." -#~ msgstr "" -#~ "Ridicarea de la Sediu este o metodă simplă prin care clientul își ridică " -#~ "singur comanda." - -# @ woocommerce -#~ msgid "pending" -#~ msgstr "în așteptare" - -# @ woocommerce -#~ msgid "failed" -#~ msgstr "eșuată" - -# @ woocommerce -#~ msgid "on-hold" -#~ msgstr "în așteptarea" - -# @ woocommerce -#~ msgid "processing" -#~ msgstr "în curs de procesare" - -# @ woocommerce -#~ msgid "completed" -#~ msgstr "finalizată" - -# @ woocommerce -#~ msgid "refunded" -#~ msgstr "rambursată" - -# @ woocommerce -#~ msgid "cancelled" -#~ msgstr "anulată" - -# @ woocommerce -#~ msgid "Australian Capital Territory" -#~ msgstr "Australian Capital Territory" - -# @ woocommerce -#~ msgid "New South Wales" -#~ msgstr "New South Wales" - -# @ woocommerce -#~ msgid "Northern Territory" -#~ msgstr "Northern Territory" - -# @ woocommerce -#~ msgid "Queensland" -#~ msgstr "Queensland" - -# @ woocommerce -#~ msgid "South Australia" -#~ msgstr "South Australia" - -# @ woocommerce -#~ msgid "Tasmania" -#~ msgstr "Tazmania" - -# @ woocommerce -#~ msgid "Victoria" -#~ msgstr "Victoria" - -# @ woocommerce -#~ msgid "Western Australia" -#~ msgstr "Western Australia" - -# @ woocommerce -#~ msgid "Acre" -#~ msgstr "Acre" - -# @ woocommerce -#~ msgid "Alagoas" -#~ msgstr "Alagoas" - -# @ woocommerce -#~ msgid "Amapá" -#~ msgstr "Amapá" - -# @ woocommerce -#~ msgid "Amazonas" -#~ msgstr "Amazonas" - -# @ woocommerce -#~ msgid "Bahia" -#~ msgstr "Bahia" - -# @ woocommerce -#~ msgid "Ceará" -#~ msgstr "Ceará" - -# @ woocommerce -#~ msgid "Distrito Federal" -#~ msgstr "Distrito Federal" - -# @ woocommerce -#~ msgid "Espírito Santo" -#~ msgstr "Espírito Santo" - -# @ woocommerce -#~ msgid "Goiás" -#~ msgstr "Goiás" - -# @ woocommerce -#~ msgid "Maranhão" -#~ msgstr "Maranhão" - -# @ woocommerce -#~ msgid "Mato Grosso" -#~ msgstr "Mato Grosso" - -# @ woocommerce -#~ msgid "Mato Grosso do Sul" -#~ msgstr "Mato Grosso do Sul" - -# @ woocommerce -#~ msgid "Minas Gerais" -#~ msgstr "Minas Gerais" - -# @ woocommerce -#~ msgid "Pará" -#~ msgstr "Pará" - -# @ woocommerce -#~ msgid "Paraíba" -#~ msgstr "Paraíba" - -# @ woocommerce -#~ msgid "Paraná" -#~ msgstr "Paraná" - -# @ woocommerce -#~ msgid "Pernambuco" -#~ msgstr "Pernambuco" - -# @ woocommerce -#~ msgid "Piauí" -#~ msgstr "Piauí" - -# @ woocommerce -#~ msgid "Rio de Janeiro" -#~ msgstr "Rio de Janeiro" - -# @ woocommerce -#~ msgid "Rio Grande do Norte" -#~ msgstr "Rio Grande do Norte" - -# @ woocommerce -#~ msgid "Rio Grande do Sul" -#~ msgstr "Rio Grande do Sul" - -# @ woocommerce -#~ msgid "Rondônia" -#~ msgstr "Rondônia" - -# @ woocommerce -#~ msgid "Roraima" -#~ msgstr "Roraima" - -# @ woocommerce -#~ msgid "Santa Catarina" -#~ msgstr "Santa Catarina" - -# @ woocommerce -#~ msgid "São Paulo" -#~ msgstr "São Paulo" - -# @ woocommerce -#~ msgid "Sergipe" -#~ msgstr "Sergipe" - -# @ woocommerce -#~ msgid "Tocantins" -#~ msgstr "Tocantins" - -# @ woocommerce -#~ msgid "Alberta" -#~ msgstr "Alberta" - -# @ woocommerce -#~ msgid "British Columbia" -#~ msgstr "British Columbia" - -# @ woocommerce -#~ msgid "Manitoba" -#~ msgstr "Manitoba" - -# @ woocommerce -#~ msgid "New Brunswick" -#~ msgstr "New Brunswick" - -# @ woocommerce -#~ msgid "Newfoundland" -#~ msgstr "Newfoundland" - -# @ woocommerce -#~ msgid "Northwest Territories" -#~ msgstr "Northwest Territories" - -# @ woocommerce -#~ msgid "Nova Scotia" -#~ msgstr "Nova Scotia" - -# @ woocommerce -#~ msgid "Nunavut" -#~ msgstr "Nunavut" - -# @ woocommerce -#~ msgid "Ontario" -#~ msgstr "Ontario" - -# @ woocommerce -#~ msgid "Prince Edward Island" -#~ msgstr "Prince Edward Island" - -# @ woocommerce -#~ msgid "Quebec" -#~ msgstr "Quebec" - -# @ woocommerce -#~ msgid "Saskatchewan" -#~ msgstr "Saskatchewan" - -# @ woocommerce -#~ msgid "Yukon Territory" -#~ msgstr "Yukon Territory" - -# @ woocommerce -#~ msgid "Hong Kong Island" -#~ msgstr "Insula Hong Kong" - -# @ woocommerce -#~ msgid "Kowloon" -#~ msgstr "Kowloon" - -# @ woocommerce -#~ msgid "New Territories" -#~ msgstr "New Territories" - -# @ woocommerce -#~ msgid "Auckland" -#~ msgstr "Auckland" - -#~ msgid "Bay of Plenty" -#~ msgstr "Bay of Plenty" - -#~ msgid "Canterbury" -#~ msgstr "Canterbury" - -#~ msgid "Hawke’s Bay" -#~ msgstr "Hawke’s Bay" - -#~ msgid "Manawatu-Wanganui" -#~ msgstr "Manawatu-Wanganui" - -#~ msgid "Marlborough" -#~ msgstr "Marlborough" - -#~ msgid "Nelson" -#~ msgstr "Nelson" - -# @ woocommerce -#~ msgid "Northland" -#~ msgstr "Northland" - -#~ msgid "Otago" -#~ msgstr "Otago" - -# @ woocommerce -#~ msgid "Southland" -#~ msgstr "Southland" - -#~ msgid "Taranaki" -#~ msgstr "Taranaki" - -# @ woocommerce -#~ msgid "Tasman" -#~ msgstr "Tasman" - -#~ msgid "Waikato" -#~ msgstr "Waikato" - -# @ woocommerce -#~ msgid "Wellington" -#~ msgstr "Wellington" - -# @ woocommerce -#~ msgid "West Coast" -#~ msgstr "West Coast" - -# @ woocommerce -#, fuzzy -#~ msgid "Goa" -#~ msgstr "Georgia" - -# @ woocommerce -#, fuzzy -#~ msgid "Haryana" -#~ msgstr "Guyana" - -# @ woocommerce -#, fuzzy -#~ msgid "Kerala" -#~ msgstr "General" - -# @ woocommerce -#, fuzzy -#~ msgid "Meghalaya" -#~ msgstr "Malaysia" - -# @ woocommerce -#, fuzzy -#~ msgid "Nagaland" -#~ msgstr "Noua Zeelanda" - -#, fuzzy -#~ msgid "Andaman and Nicobar Islands" -#~ msgstr "Insula Heard și Insula McDonald" - -# @ woocommerce -#, fuzzy -#~ msgid "Chandigarh" -#~ msgstr "Modifică" - -# @ woocommerce -#, fuzzy -#~ msgid "Pahang" -#~ msgstr "Modifică" - -# @ woocommerce -#~ msgid "Alabama" -#~ msgstr "Alabama" - -# @ woocommerce -#~ msgid "Alaska" -#~ msgstr "Alaska" - -# @ woocommerce -#~ msgid "Arizona" -#~ msgstr "Arizona" - -# @ woocommerce -#~ msgid "Arkansas" -#~ msgstr "Arkansas" - -# @ woocommerce -#~ msgid "California" -#~ msgstr "California" - -# @ woocommerce -#~ msgid "Colorado" -#~ msgstr "Colorado" - -# @ woocommerce -#~ msgid "Connecticut" -#~ msgstr "Connecticut" - -# @ woocommerce -#~ msgid "Delaware" -#~ msgstr "Delaware" - -# @ woocommerce -#~ msgid "District Of Columbia" -#~ msgstr "District Of Columbia" - -# @ woocommerce -#~ msgid "Florida" -#~ msgstr "Florida" - -# @ woocommerce -#~ msgid "Hawaii" -#~ msgstr "Hawaii" - -# @ woocommerce -#~ msgid "Idaho" -#~ msgstr "Idaho" - -# @ woocommerce -#~ msgid "Illinois" -#~ msgstr "Illinois" - -# @ woocommerce -#~ msgid "Indiana" -#~ msgstr "Indiana" - -# @ woocommerce -#~ msgid "Iowa" -#~ msgstr "Iowa" - -# @ woocommerce -#~ msgid "Kansas" -#~ msgstr "Kansas" - -# @ woocommerce -#~ msgid "Kentucky" -#~ msgstr "Kentucky" - -# @ woocommerce -#~ msgid "Louisiana" -#~ msgstr "Louisiana" - -# @ woocommerce -#~ msgid "Maine" -#~ msgstr "Maine" - -# @ woocommerce -#~ msgid "Maryland" -#~ msgstr "Maryland" - -# @ woocommerce -#~ msgid "Massachusetts" -#~ msgstr "Massachusetts" - -# @ woocommerce -#~ msgid "Michigan" -#~ msgstr "Michigan" - -# @ woocommerce -#~ msgid "Minnesota" -#~ msgstr "Minnesota" - -# @ woocommerce -#~ msgid "Mississippi" -#~ msgstr "Mississippi" - -# @ woocommerce -#~ msgid "Missouri" -#~ msgstr "Missouri" - -# @ woocommerce -#~ msgid "Montana" -#~ msgstr "Montana" - -# @ woocommerce -#~ msgid "Nebraska" -#~ msgstr "Nebraska" - -# @ woocommerce -#~ msgid "Nevada" -#~ msgstr "Nebraska" - -# @ woocommerce -#~ msgid "New Hampshire" -#~ msgstr "New Hampshire" - -# @ woocommerce -#~ msgid "New Jersey" -#~ msgstr "New Jersey" - -# @ woocommerce -#~ msgid "New Mexico" -#~ msgstr "New Mexico" - -# @ woocommerce -#~ msgid "New York" -#~ msgstr "New York" - -# @ woocommerce -#~ msgid "North Carolina" -#~ msgstr "North Carolina" - -# @ woocommerce -#~ msgid "North Dakota" -#~ msgstr "North Dakota" - -# @ woocommerce -#~ msgid "Ohio" -#~ msgstr "Ohio" - -# @ woocommerce -#~ msgid "Oklahoma" -#~ msgstr "Oklahoma" - -# @ woocommerce -#~ msgid "Oregon" -#~ msgstr "Oregon" - -# @ woocommerce -#~ msgid "Pennsylvania" -#~ msgstr "Pennsylvania" - -# @ woocommerce -#~ msgid "Rhode Island" -#~ msgstr "Rhode Island" - -# @ woocommerce -#~ msgid "South Carolina" -#~ msgstr "South Carolina" - -# @ woocommerce -#~ msgid "South Dakota" -#~ msgstr "South Dakota" - -# @ woocommerce -#~ msgid "Tennessee" -#~ msgstr "Tennessee" - -# @ woocommerce -#~ msgid "Texas" -#~ msgstr "Texas" - -# @ woocommerce -#~ msgid "Utah" -#~ msgstr "Utah" - -# @ woocommerce -#~ msgid "Vermont" -#~ msgstr "Vermont" - -# @ woocommerce -#~ msgid "Virginia" -#~ msgstr "Virginia" - -# @ woocommerce -#~ msgid "Washington" -#~ msgstr "Washington" - -# @ woocommerce -#~ msgid "West Virginia" -#~ msgstr "West Virginia" - -# @ woocommerce -#~ msgid "Wisconsin" -#~ msgstr "Wisconsin" - -# @ woocommerce -#~ msgid "Wyoming" -#~ msgstr "Wyoming" - -# @ woocommerce -#~ msgid "Armed Forces (AA)" -#~ msgstr "SUA, Forțele Armate" - -# @ woocommerce -#~ msgid "Armed Forces (AE)" -#~ msgstr "SUA, Forțele Armate" - -# @ woocommerce -#~ msgid "Armed Forces (AP)" -#~ msgstr "SUA, Forțele Armate" - -# @ woocommerce -#, fuzzy -#~ msgid "Free State" -#~ msgstr "Statusuri Comenzi" - -# @ woocommerce -#, fuzzy -#~ msgid "Northern Cape" -#~ msgstr "Northern Territory" - -# @ woocommerce -#, fuzzy -#~ msgid "North West" -#~ msgstr "Coreea de Nord" - -# @ woocommerce -#, fuzzy -#~ msgid "Western Cape" -#~ msgstr "Sahara de Vest" - -# @ woocommerce -#~ msgid "Please enter a valid postcode/ZIP." -#~ msgstr "Vă rugăm introduceți un cod poștal valid." - -# @ woocommerce -#~ msgid "Shipping costs updated." -#~ msgstr "Costuri de livrare actualizate." - -# @ woocommerce -#~ msgid "" -#~ "The order totals have been updated. Please confirm your order by pressing " -#~ "the Place Order button at the bottom of the page." -#~ msgstr "" -#~ "Totalul comenzii a fost actualizat. Vă rugăm confirmați comanda dvs. prin " -#~ "apăsarea butonului \"Plasare Comandă\" de la sfârșitul paginii." - -# @ woocommerce -#~ msgid "Please enter your password." -#~ msgstr "Vă rugăm introduceți parola." - -# @ woocommerce -#~ msgid "Your password has been reset." -#~ msgstr "Parola dvs. a fost resetată" - -#~ msgid "Log in" -#~ msgstr "Autentificare" - -# @ woocommerce -#~ msgid "Enter a username or e-mail address." -#~ msgstr "Introduceți un nume de utilizator sau o adresă de email." - -# @ woocommerce -#~ msgid "There is no user registered with that email address." -#~ msgstr "" -#~ "Nu există nici un cont de utilizator înregistrat cu această adresă de " -#~ "email." - -# @ woocommerce -#~ msgid "Invalid username or e-mail." -#~ msgstr "Nume Utilizator sau Email Incorect." - -#~ msgid "Password reset is not allowed for this user" -#~ msgstr "" -#~ "Ne pare rău,dar din păcate, resetarea parolei nu este permisă pentru " -#~ "acest utilizator." - -# @ woocommerce -#~ msgid "Check your e-mail for the confirmation link." -#~ msgstr "Vă rugăm verificați-vă e-mailul pentru link-ul de confirmare." - -# @ woocommerce -#~ msgid "Invalid key" -#~ msgstr "Cheie invalidă." - -# @ woocommerce -#~ msgid "My Account →" -#~ msgstr "Contul Meu →" - -# @ woocommerce -#~ msgid "" -#~ "Order %s made on %s" -#~ msgstr "" -#~ "Comanda %s creată pe data de: %s" - -# @ woocommerce -#~ msgid "Order status: %s" -#~ msgstr "Status comandă: %s" - -# @ woocommerce -#~ msgid "Order Updates" -#~ msgstr "Actualizări Comandă" - -# @ woocommerce -#~ msgid "l jS \\of F Y, h:ia" -#~ msgstr "l, j F Y, Ora H:i:s" - -# @ woocommerce -#~ msgid "Please enter a valid order ID" -#~ msgstr "Vă rugăm introduceți un ID (Cod Identificare) comandă valid" - -# @ woocommerce -#~ msgid "Please enter a valid order email" -#~ msgstr "Vă rugă introduceți o adresă de email validă pentru comandă." - -# @ woocommerce -#~ msgid "Sorry, we could not find that order id in our database." -#~ msgstr "" -#~ "Ne pare rău dar nu găsim codul de identificare a comenzii în baza noastră " -#~ "de date." - -# @ woocommerce -#~ msgid "" -#~ "Your order has already been paid for. Please contact us if you need " -#~ "assistance." -#~ msgstr "" -#~ "Comanda dvs. a fost deja achitată. Vă rugăm să ne contactați dacă aveți " -#~ "nevoie de ajutor." - -# @ woocommerce -#~ msgid "Date:" -#~ msgstr "Data:" - -# @ woocommerce -#~ msgid "Payment method:" -#~ msgstr "Modalitate de Plată:" - -# @ woocommerce -#~ msgid "%s review for %s" -#~ msgid_plural "%s reviews for %s" -#~ msgstr[0] "%s recenzie pentru %s" -#~ msgstr[1] "%s recenzii pentru %s" - -# @ woocommerce -#~ msgid " Previous" -#~ msgstr " Anterior" - -# @ woocommerce -#~ msgid "Next " -#~ msgstr "Următor " - -# @ woocommerce -#~ msgid "Add Review" -#~ msgstr "Adaugă Comentariu" - -# @ woocommerce -#~ msgid "Add a review" -#~ msgstr "Adaugă un comentariu" - -# @ woocommerce -#~ msgid "Be the first to review" -#~ msgstr "Fii primul care comentează" - -# @ woocommerce -#~ msgid "" -#~ "There are no reviews yet, would you like to submit yours?" -#~ msgstr "" -#~ "Nu există nici un comentariu, vrei să fii primul care comentează? Click Aici?" - -# @ woocommerce -#~ msgid "Submit Review" -#~ msgstr "Trimite Comentariu" - -# @ woocommerce -#~ msgid "Rating" -#~ msgstr "Notă" - -# @ woocommerce -#~ msgid "Rate…" -#~ msgstr "Rată…" - -# @ woocommerce -#~ msgid "Perfect" -#~ msgstr "Perfect" - -# @ woocommerce -#~ msgid "Good" -#~ msgstr "Bun" - -# @ woocommerce -#~ msgid "Not that bad" -#~ msgstr "Nu e rău" - -# @ woocommerce -#~ msgid "Very Poor" -#~ msgstr "Foarte slab" - -# @ woocommerce -#~ msgid "Your Review" -#~ msgstr "Recenzia ta" - -# @ woocommerce -#~ msgid "Remove this item" -#~ msgstr "Șterge Acest articol" - -# @ woocommerce -#~ msgid "Apply Coupon" -#~ msgstr "Aplică Cupon" - -# @ woocommerce -#~ msgid "Update Cart" -#~ msgstr "Actualizează Coș" - -# @ woocommerce -#~ msgid "Proceed to Checkout →" -#~ msgstr "Finalizare Comandă →" - -# @ woocommerce -#~ msgid "You may be interested in…" -#~ msgstr "Ai mai putea fi interesat de:" - -# @ woocommerce -#~ msgid "Your cart is currently empty." -#~ msgstr "Coșul tău este gol." - -# @ woocommerce -#~ msgid "← Return To Shop" -#~ msgstr "← Înapoi la Magazin" - -# @ woocommerce -#~ msgid "No products in the cart." -#~ msgstr "Nu este nici un produs în coș." - -# @ woocommerce -#~ msgid "Checkout →" -#~ msgstr "Finalizare Comandă →" - -# @ woocommerce -#~ msgid "Calculate Shipping" -#~ msgstr "Calculează Costuri de Livrare" - -# @ woocommerce -#~ msgid "Update Totals" -#~ msgstr "Actualizează Totaluri" - -# @ woocommerce -#~ msgid "Free" -#~ msgstr "Gratis!" - -# @ woocommerce -#~ msgid "Please fill in your details to see available shipping methods." -#~ msgstr "" -#~ "Vă rugăm introduceți datele mai sus pentru a vedea modalitățile de " -#~ "livrare." - -# @ woocommerce -#~ msgid "" -#~ "Sorry, it seems that there are no available shipping methods for your " -#~ "state. Please contact us if you require assistance or wish to make " -#~ "alternate arrangements." -#~ msgstr "" -#~ "Ne pare rău, se pare că nu există modalități de livrare pentru statul " -#~ "dvs. Vă rugăm să ne contactați pentru mai multe informații." - -# @ woocommerce -#~ msgid "Cart Totals" -#~ msgstr "Totaluri Coș" - -# @ woocommerce -#~ msgid "Cart Subtotal" -#~ msgstr "Subtotaluri Coș" - -# @ woocommerce -#~ msgid "[Remove]" -#~ msgstr "[Șterge]" - -# @ woocommerce -#~ msgid "Order Discount" -#~ msgstr "Reducere Comandă" - -# @ woocommerce -#~ msgid " (taxes estimated for %s)" -#~ msgstr "(taxe estimate pentru %s)" - -# @ woocommerce -#~ msgid "" -#~ "Note: Shipping and taxes are estimated%s and will be updated during " -#~ "checkout based on your billing and shipping information." -#~ msgstr "" -#~ "Notă: Costurile de livrare sunt estimate, %s și vor fi actualizate în " -#~ "timpul Finalizării Comenzii în funcție de informațiile de Facturare și " -#~ "Livrare." - -# @ woocommerce -#~ msgid "" -#~ "No shipping methods were found; please recalculate your shipping and " -#~ "enter your state/county and zip/postcode to ensure there are no other " -#~ "available methods for your location." -#~ msgstr "" -#~ "Nu au fost găsite Metode de Livrare; vă rugăm recalculați costurile de " -#~ "livrare și reintroduceți orașul / județul și codul poștal pentru a ne " -#~ "asigura că nu există alte metode de livrare pentru locația dvs." - -# @ woocommerce -#~ msgid "" -#~ "Sorry, it seems that there are no available shipping methods for your " -#~ "location (%s)." -#~ msgstr "" -#~ "Ne pare rău, dar se pare că nu există metode de livrare către adresa dvs. " -#~ "(%s)." - -# @ woocommerce -#~ msgid "" -#~ "If you require assistance or wish to make alternate arrangements please " -#~ "contact us." -#~ msgstr "" -#~ "Dacă aveți nevoie de ajutor sau doriți să efectuați alte aranjamente nu " -#~ "ezitați să ne contactați." - -# @ woocommerce -#~ msgid "" -#~ "There are some issues with the items in your cart (shown above). Please " -#~ "go back to the cart page and resolve these issues before checking out." -#~ msgstr "" -#~ "Au fost semnalate câteva probleme cu produsele din coșul dvs. - Vedeți " -#~ "informații mai sus. Vă rugăm să vă întoarceți la pagina de Coș și să " -#~ "remediați aceste probleme înainte de Finaliza Comanda." - -# @ woocommerce -#~ msgid "← Return To Cart" -#~ msgstr "← Înapoi la Coș" - -# @ woocommerce -#~ msgid "Billing & Shipping" -#~ msgstr "Facturare & Livrare" - -# @ woocommerce -#~ msgid "Create an account?" -#~ msgstr "Creați un cont?" - -# @ woocommerce -#~ msgid "" -#~ "Create an account by entering the information below. If you are a " -#~ "returning customer please login at the top of the page." -#~ msgstr "" -#~ "Creează un cont prin completarea formularului de mai jos. Dacă ai deja " -#~ "cont, te rugăm să te autentifici." - -# @ woocommerce -#~ msgid "You must be logged in to checkout." -#~ msgstr "Trebuie să fiți logat pentru a Finaliza Comanda." - -# @ woocommerce -#~ msgid "Your order" -#~ msgstr "Comanda dvs." - -# @ woocommerce -#~ msgid "Have a coupon?" -#~ msgstr "Aveți un Cupon de Promoție?" - -# @ woocommerce -#~ msgid "Click here to enter your code" -#~ msgstr "Click aici pentru a introduce codul cuponului" - -# @ woocommerce -#~ msgid "Already registered?" -#~ msgstr "Aveți deja cont?" - -# @ woocommerce -#~ msgid "Click here to login" -#~ msgstr "Click aici pentru a vă autentifica." - -# @ woocommerce -#~ msgid "" -#~ "If you have shopped with us before, please enter your details in the " -#~ "boxes below. If you are a new customer please proceed to the Billing " -#~ "& Shipping section." -#~ msgstr "" -#~ "Dacă ai mai cumpărat de la noi, te rugăm să te autentifici. Dacă ești " -#~ "client nou, continuă la pagina de Facturare & Livrare." - -# @ woocommerce -#~ msgid "Totals" -#~ msgstr "Totaluri" - -# @ woocommerce -#~ msgid "" -#~ "Sorry, it seems that there are no available payment methods for your " -#~ "location. Please contact us if you require assistance or wish to make " -#~ "alternate arrangements." -#~ msgstr "" -#~ "Ne pare rău dar se pare că nu există metode de acceptare a plății în " -#~ "locația dvs. Vă rugăm să ne contactați dacă aveți nevoie de mai multe " -#~ "informații." - -# @ woocommerce -#~ msgid "Pay for order" -#~ msgstr "Plătește pentru comandă" - -# @ woocommerce -#~ msgid "Ship to billing address?" -#~ msgstr "Livrează la Adresa de Facturare?" - -# @ woocommerce -#~ msgid "Additional Information" -#~ msgstr "Informații adiționale" - -# @ woocommerce -#~ msgid "Please fill in your details above to see available payment methods." -#~ msgstr "" -#~ "Vă rugăm să vă introduceți datele mai sus pentru a vedea modalitățile de " -#~ "plată." - -# @ woocommerce -#~ msgid "" -#~ "Sorry, it seems that there are no available payment methods for your " -#~ "state. Please contact us if you require assistance or wish to make " -#~ "alternate arrangements." -#~ msgstr "" -#~ "Ne pare rău dar se pare că nu există metode de plată activate pentru " -#~ "statul dvs. Vă rugăm să ne contactați dacă aveți nevoie de mai multe " -#~ "informații" - -# @ woocommerce -#~ msgid "" -#~ "Since your browser does not support JavaScript, or it is disabled, please " -#~ "ensure you click the Update Totals button before placing your " -#~ "order. You may be charged more than the amount stated above if you fail " -#~ "to do so." -#~ msgstr "" -#~ "Având în vedere că browser-ul dvs. nu suportă JavaScript sau cel mai " -#~ "probabil JavaScript-ul este dezactivat, vă rugăm să apăsați butonul " -#~ "Actualizare Totaluri înainte de plasa comanda. Există riscul să " -#~ "vi se factureze mai mult decât ar trebui dacă uitați să apăsați butonul " -#~ "Actualizare Totaluri." - -# @ woocommerce -#~ msgid "Update totals" -#~ msgstr "Actualizează Totaluri" - -# @ woocommerce -#~ msgid "Place order" -#~ msgstr "Plasează Comanda" - -# @ woocommerce -#~ msgid "I have read and accept the" -#~ msgstr "Am citit și accept" - -# @ woocommerce -#~ msgid "terms & conditions" -#~ msgstr "Termenii și Condițiile" - -# @ woocommerce -#~ msgid "" -#~ "Unfortunately your order cannot be processed as the originating bank/" -#~ "merchant has declined your transaction." -#~ msgstr "" -#~ "Din păcate comanda dvs. nu poate fi procesată deoarece banca de origine " -#~ "sau comerciantul a refuzat tranzacția." - -# @ woocommerce -#~ msgid "Please attempt your purchase again or go to your account page." -#~ msgstr "" -#~ "Încercați să efectuați comanda din nou sau mergeți la pagina dvs. de cont." - -# @ woocommerce -#~ msgid "Please attempt your purchase again." -#~ msgstr "Vă rugăm să efectuați comanda din nou." - -# @ woocommerce -#~ msgid "Thank you. Your order has been received." -#~ msgstr "Vă mulțumim! Comanda dvs. a fost recepționată." - -# @ woocommerce -#~ msgid "You have received an order from %s. Their order is as follows:" -#~ msgstr "Ai primit o comadă de la %s. Comanda este următoarea:" - -# @ woocommerce -#~ msgid "Order: %s" -#~ msgstr "Comanda: %s" - -# @ woocommerce -#~ msgid "" -#~ "Hi there. Your recent order on %s has been completed. Your order details " -#~ "are shown below for your reference:" -#~ msgstr "" -#~ "Comanda dvs. pe %s este completă. Detalii comenzii sunt afișate mai jos:" - -# @ woocommerce -#~ msgid "" -#~ "An order has been created for you on %s. To pay for this order please use " -#~ "the following link: %s" -#~ msgstr "" -#~ "O comandă a fost creeată pentru dvs. pe data de “ %s ”. " -#~ "Pentru a achita această comandă vă rugăm să urmați link-ul acesta: Achitare Comandă" - -# @ woocommerce -#~ msgid "pay" -#~ msgstr "plătește" - -# @ woocommerce -#~ msgid "" -#~ "Thanks for creating an account on %s. Your username is %s." -#~ msgstr "" -#~ "Vă mulțumim pentru creeare unui cont la magazinul %s. Numele de " -#~ "utilizator este: %s" - -# @ woocommerce -#~ msgid "You can access your account area here: %s." -#~ msgstr "Vă puteți accesa contul aici: %s." - -# @ woocommerce -#~ msgid "Hello, a note has just been added to your order:" -#~ msgstr "Bună! A fost adăugată o notiță la comanda dvs.:" - -# @ woocommerce -#~ msgid "For your reference, your order details are shown below." -#~ msgstr "Detaliile despre comandă sunt afișate mai jos." - -#~ msgid "" -#~ "Your order has been received and is now being processed. Your order " -#~ "details are shown below for your reference:" -#~ msgstr "" -#~ "Comanda dvs. a fost primită şi este în curs de procesare. Detaliile dvs. " -#~ "de comandă sunt prezentate mai jos pentru referinţă:" - -#~ msgid "" -#~ "Someone requested that the password be reset for the following account:" -#~ msgstr "Cineva a cerut ca parola să fie resetată pentru următorul cont:" - -# @ woocommerce -#~ msgid "Username: %s" -#~ msgstr "Nume Utilizator: %s" - -#~ msgid "" -#~ "If this was a mistake, just ignore this email and nothing will happen." -#~ msgstr "" -#~ "În cazul în care acest lucru a fost o greșeală, pur şi simplu ignoraţi " -#~ "acest e-mail și nimic nu se va întâmpla." - -#~ msgid "To reset your password, visit the following address:" -#~ msgstr "Pentru a vă reseta parola, vă rugăm să vizitaţi următoarea adresă:" - -# @ woocommerce -#~ msgid "Click here to reset your password" -#~ msgstr "Click aici pentru a vă reseta parola" - -# @ woocommerce -#~ msgid "Download %d:" -#~ msgstr "Descărcare %d:" - -# @ woocommerce -#~ msgid "Download:" -#~ msgstr "Descărcare:" - -# @ woocommerce -#~ msgid "Order number: %s" -#~ msgstr "Număr Comandă: %s" - -# @ woocommerce -#~ msgid "Order date: %s" -#~ msgstr "Dată Comandă: %s" - -# @ woocommerce -#~ msgid "jS F Y" -#~ msgstr "j F Y" - -# @ woocommerce -#~ msgid "Your details" -#~ msgstr "Detaliile dumneavostră" - -# @ woocommerce -#~ msgid "Quantity: %s" -#~ msgstr "Cantitate: %s" - -# @ woocommerce -#~ msgid "Cost: %s" -#~ msgstr "Cost: %s" - -# @ woocommerce -#~ msgid "Read More" -#~ msgstr "Citește mai mult" - -# @ woocommerce -#~ msgid "Select options" -#~ msgstr "Selectează opțiuni" - -# @ woocommerce -#~ msgid "View options" -#~ msgstr "Vezi opțiuni" - -#, fuzzy -#~ msgid "Showing the single result" -#~ msgstr "Se afișează %s - %s din %s rezultate" - -#, fuzzy -#~ msgid "Showing all %d results" -#~ msgstr "Se afișează %s - %s din %s rezultate" - -#, fuzzy -#~ msgctxt "%1$d = first, %2$d = last, %3$d = total" -#~ msgid "Showing %1$d–%2$d of %3$d results" -#~ msgstr "Se afișează %s - %s din %s rezultate" - -# @ woocommerce -#~ msgid "Sale!" -#~ msgstr "Reducere!" - -# @ woocommerce -#~ msgid "Sort by price - low to high" -#~ msgstr "Sortează după preț - Ascendent" - -# @ woocommerce -#~ msgid "Sort by price - high to low" -#~ msgstr "Sortează după preț - Descendent" - -# @ woocommerce -#~ msgid "New password" -#~ msgstr "Parolă nouă" - -# @ woocommerce -#~ msgid "Re-enter new password" -#~ msgstr "Introdu noua parolă încă o dată" - -# @ woocommerce -#~ msgid "Save" -#~ msgstr "Salvează" - -# @ woocommerce -#~ msgid "Save Address" -#~ msgstr "Salvează Adresa" - -# @ woocommerce -#~ msgid "Login" -#~ msgstr "Autentificare" - -# @ woocommerce -#~ msgid "Username or email" -#~ msgstr "Nume Utilizator sau Email" - -# @ woocommerce -#~ msgid "Password" -#~ msgstr "Parola" - -# @ woocommerce -#~ msgid "Lost Password?" -#~ msgstr "Ai uitat parola?" - -# @ woocommerce -#~ msgid "Register" -#~ msgstr "Înregistrează" - -# @ woocommerce -#~ msgid "Username" -#~ msgstr "Nume Utilizator" - -# @ woocommerce -#~ msgid "Re-enter password" -#~ msgstr "Introdu parola din nou" - -#~ msgid "" -#~ "Lost your password? Please enter your username or email address. You will " -#~ "receive a link to create a new password via email." -#~ msgstr "" -#~ "V-aţi uitat parola? Vă rugăm să introduceţi numele de utilizator sau " -#~ "adresa de e-mail folosită la înregistrare. O să primiţi link-ul pentru " -#~ "resetarea parolei pe adresa de e-mail utilizată la înregistrare" - -# @ woocommerce -#~ msgid "Enter a new password below." -#~ msgstr "Introdu o parolă nouă mai jos." - -# @ woocommerce -#~ msgid "Reset Password" -#~ msgstr "Resetează Parola" - -# @ woocommerce -#~ msgid "" -#~ "Hello, %s. From your account dashboard you can view your " -#~ "recent orders, manage your shipping and billing addresses and change your password." -#~ msgstr "" -#~ "Bună %s. Din Panoul de Control poți vedea comenzile " -#~ "recente; Poți modifica adresele de Facturare sau Livrare și poți modifica parola." - -# @ woocommerce -#, fuzzy -#~ msgid "My Addresses" -#~ msgstr "Adresa Mea" - -# @ woocommerce -#~ msgid "My Address" -#~ msgstr "Adresa Mea" - -# @ woocommerce -#~ msgid "" -#~ "The following addresses will be used on the checkout page by default." -#~ msgstr "Următoarea adresă va fi utilizată pe pagina Finalizare Comandă." - -# @ woocommerce -#, fuzzy -#~ msgid "You have not set up this type of address yet." -#~ msgstr "Nu ai setat nici o Adresă de Livrare" diff --git a/i18n/languages/woocommerce-admin-sk_SK.mo b/i18n/languages/woocommerce-admin-sk_SK.mo deleted file mode 100644 index f47c85bd21f..00000000000 Binary files a/i18n/languages/woocommerce-admin-sk_SK.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-admin-sk_SK.po b/i18n/languages/woocommerce-admin-sk_SK.po deleted file mode 100644 index 6d1b5e80a31..00000000000 --- a/i18n/languages/woocommerce-admin-sk_SK.po +++ /dev/null @@ -1,4861 +0,0 @@ -# Translation of 2.0.x in Slovak -# This file is distributed under the same license as the 2.0.x package. -msgid "" -msgstr "" -"PO-Revision-Date: 2013-10-21 13:30:55+0000\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: GlotPress/0.1\n" -"Project-Id-Version: 2.0.x\n" - -#: admin/settings/settings-init.php:520 -msgid "Enable the weight field for products (some shipping methods may require this)" -msgstr "Povoliť váhu produktu (niektoré metódy prepravy ho môžu vyžadovať)" - -#: admin/settings/settings-init.php:528 -msgid "Enable the dimension fields for products (some shipping methods may require this)" -msgstr "Povoliť rozmery produktu (niektoré metódy prepravy ho môžu vyžadovať)" - -#: admin/settings/settings-init.php:536 -msgid "Show weight and dimension values on the Additional Information tab" -msgstr "Zobraziť hodnoty váhy a rozmerov v záložke Ďaľšie informácie" - -#: admin/settings/settings-init.php:544 -msgid "Weight Unit" -msgstr "Jednotka hmotnosti" - -#: admin/settings/settings-init.php:545 -msgid "This controls what unit you will define weights in." -msgstr "Tu zadajte jednotky hmotnosti." - -#: admin/settings/settings-init.php:551 -msgid "kg" -msgstr "kg" - -#: admin/settings/settings-init.php:552 -msgid "g" -msgstr "g" - -#: admin/settings/settings-init.php:553 -msgid "lbs" -msgstr "lbs" - -#: admin/settings/settings-init.php:554 -msgid "oz" -msgstr "oz" - -#: admin/settings/settings-init.php:560 -msgid "Dimensions Unit" -msgstr "Jednotka rozmerov" - -#: admin/settings/settings-init.php:561 -msgid "This controls what unit you will define lengths in." -msgstr "Tu zadajte jednotky dĺžkových rozmerov." - -#: admin/settings/settings-init.php:568 -msgid "cm" -msgstr "cm" - -#: admin/settings/settings-init.php:569 -msgid "mm" -msgstr "mm" - -#: admin/settings/settings-init.php:570 -msgid "in" -msgstr "v" - -#: admin/settings/settings-init.php:571 -msgid "yd" -msgstr "yd" - -#: admin/settings/settings-init.php:577 -msgid "Product Ratings" -msgstr "Hodnotenia produktu" - -#: admin/settings/settings-init.php:578 -msgid "Enable ratings on reviews" -msgstr "Povoliť hodnotenia v recenziách" - -#: admin/settings/settings-init.php:587 -msgid "Ratings are required to leave a review" -msgstr "Hodnotenia sú vyžadované pri recenziách." - -#: admin/settings/settings-init.php:596 -msgid "Show \"verified owner\" label for customer reviews" -msgstr "Zobraziť označenie \"overený majiteľ\" pri recenziách zákazníka" - -#: admin/settings/settings-init.php:606 -msgid "Pricing Options" -msgstr "Cenové možnosti" - -#: admin/settings/settings-init.php:606 -msgid "The following options affect how prices are displayed on the frontend." -msgstr "Nasledujúce nastavenia určujú ako sú zobrazované ceny na stránke." - -#: admin/settings/settings-init.php:609 -msgid "Currency Position" -msgstr "Umiestnenie meny" - -#: admin/settings/settings-init.php:610 -msgid "This controls the position of the currency symbol." -msgstr "Zadajte pozíciu symbolu meny." - -#: admin/settings/settings-init.php:616 -msgid "Left" -msgstr "Vľavo" - -#: admin/settings/settings-init.php:617 -msgid "Right" -msgstr "Vpravo" - -#: admin/settings/settings-init.php:618 -msgid "Left (with space)" -msgstr "Vľavo (s medzerou)" - -#: admin/settings/settings-init.php:619 -msgid "Right (with space)" -msgstr "Vpravo (s medzerou)" - -#: admin/settings/settings-init.php:625 -msgid "Thousand Separator" -msgstr "Oddeľovač tisícov" - -#: admin/settings/settings-init.php:626 -msgid "This sets the thousand separator of displayed prices." -msgstr "Nastavenie oddeľovača tisícov zobrazených cien." - -#: admin/settings/settings-init.php:635 -msgid "Decimal Separator" -msgstr "Oddeľovač desatinných miest" - -#: admin/settings/settings-init.php:636 -msgid "This sets the decimal separator of displayed prices." -msgstr "Nastavenie oddeľovača desatinných miest zobrazených cien." - -#: admin/settings/settings-init.php:645 -msgid "Number of Decimals" -msgstr "Počet desatinných čísel" - -#: admin/settings/settings-init.php:646 -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "Tým sa nastaví počet desatinných miest zobrazených v uvedených cenách." - -#: admin/settings/settings-init.php:659 -msgid "Trailing Zeros" -msgstr "Koncové nuly" - -#: admin/settings/settings-init.php:660 -msgid "Remove zeros after the decimal point. e.g. $10.00 becomes $10" -msgstr "Odstráni koncové nuly. Napr z10.00€ sa stane 10€" - -#: admin/settings/settings-init.php:668 -msgid "Image Options" -msgstr "Voľby obrázka" - -#: admin/settings/settings-init.php:668 -msgid "These settings affect the actual dimensions of images in your catalog - the display on the front-end will still be affected by CSS styles. After changing these settings you may need to regenerate your thumbnails." -msgstr "Tieto nastavenia ovplyvňujú skutočné rozmery obrázkov v katalóogu - displej na prednej strane bude aj naďalej ovplyvnený štýlmi CSS. Po zmeme tohto nastavenia bude potrebné znovu vygenerovať náhľady - požite plugin Regenerate thumbnails." - -#: admin/settings/settings-init.php:671 -msgid "Catalog Images" -msgstr "Katalóg obrázkov" - -#: admin/settings/settings-init.php:672 -msgid "This size is usually used in product listings" -msgstr "Táto veľkosť sa obvykle používa pri výpisoch produktov" - -#: admin/settings/settings-init.php:685 -msgid "Single Product Image" -msgstr "Obrázok konkrétneho produktu" - -#: admin/settings/settings-init.php:686 -msgid "This is the size used by the main image on the product page." -msgstr "Toto je veľkosť používaná pre základný obraz na stránke produktu." - -#: admin/settings/settings-init.php:699 -msgid "Product Thumbnails" -msgstr "Katalóg Náhľady" - -#: admin/settings/settings-init.php:700 -msgid "This size is usually used for the gallery of images on the product page." -msgstr "Táto veľkosť sa obvykle používa pre Galériu obrázkov na stránke produktu." - -#: admin/settings/settings-init.php:719 -msgid "Inventory Options" -msgstr "Možnosti skladu" - -#: admin/settings/settings-init.php:722 -msgid "Manage Stock" -msgstr "Spravovať sklad" - -#: admin/settings/settings-init.php:723 -msgid "Enable stock management" -msgstr "Povoliť riadenie skladových zásob" - -#: admin/settings/settings-init.php:730 -msgid "Hold Stock (minutes)" -msgstr "Držať sklad (v minútach)" - -#: admin/settings/settings-init.php:731 -msgid "Hold stock (for unpaid orders) for x minutes. When this limit is reached, the pending order will be cancelled. Leave blank to disable." -msgstr "Držať sklad (pre nezaplatené objednávky) x minút. Keď sa dosiahne limit, objednávka bude zrušená. Nechajte prázdne pre vypnutie funkcie." - -#: admin/settings/settings-init.php:743 -msgid "Notifications" -msgstr "Upozornenie" - -#: admin/settings/settings-init.php:744 -msgid "Enable low stock notifications" -msgstr "Povoliť upozorňovanie na nízky stav skladových zásob" - -#: admin/settings/settings-init.php:752 -msgid "Enable out of stock notifications" -msgstr "Povoliť upozorňovanie na vyčerpanie skladových zásob" - -#: admin/settings/settings-init.php:760 -msgid "Notification Recipient" -msgstr "Doručiteľ oznámenia" - -#: admin/settings/settings-init.php:768 -msgid "Low Stock Threshold" -msgstr "Prah nízkeho skladu" - -#: admin/settings/settings-init.php:781 -msgid "Out Of Stock Threshold" -msgstr "Prah nie je skladom" - -#: admin/settings/settings-init.php:794 -msgid "Out Of Stock Visibility" -msgstr "Vidieteľnosť nie je skladom" - -#: admin/settings/settings-init.php:795 -msgid "Hide out of stock items from the catalog" -msgstr "Položky, ktoré nie sú na sklade ukryť v katalógu" - -#: admin/settings/settings-init.php:802 -msgid "Stock Display Format" -msgstr "Formát zobrazenia skladu" - -#: admin/settings/settings-init.php:803 -msgid "This controls how stock is displayed on the frontend." -msgstr "Toto kontroluje ako je zobrazený sklad na stránke." - -#: admin/settings/settings-init.php:809 -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "Vždy zobraziť napríklad \"12 skladom\"" - -#: admin/settings/settings-init.php:810 -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "Zobraziť ak je skladom málo kusov, napríklad \"Skladom len 2 kusy a nie Skladom\"" - -#: admin/settings/settings-init.php:811 -msgid "Never show stock amount" -msgstr "Nezobrazovať počet na sklade" - -#: admin/settings/settings-init.php:823 -#: admin/woocommerce-admin-settings.php:292 -msgid "Shipping Options" -msgstr "Možnosti dopravy" - -#: admin/settings/settings-init.php:826 -msgid "Shipping Calculations" -msgstr "Kalkulácie poštovného" - -#: admin/settings/settings-init.php:827 -msgid "Enable shipping" -msgstr "Povoliť dopravu" - -#: admin/settings/settings-init.php:835 -msgid "Enable the shipping calculator on the cart page" -msgstr "Povoliť výpočet ceny dopravy na stránke košíka" - -#: admin/settings/settings-init.php:843 -msgid "Hide shipping costs until an address is entered" -msgstr "Schovať náklady na prepravu kým nie je zadaná adresa" - -#: admin/settings/settings-init.php:851 -msgid "Shipping Method Display" -msgstr "Zobrazenie spôsobu prepravy" - -#: admin/settings/settings-init.php:852 -msgid "This controls how multiple shipping methods are displayed on the frontend." -msgstr "Toto kontroluje ako sú zobrazené na stránke rôzne spôsoby prepravy." - -#: admin/settings/settings-init.php:858 -msgid "Radio buttons" -msgstr "Prepínače" - -#: admin/settings/settings-init.php:859 -msgid "Select box" -msgstr "Výberové pole" - -#: admin/settings/settings-init.php:865 -msgid "Shipping Destination" -msgstr "Doručovacia adresa" - -#: admin/settings/settings-init.php:866 -msgid "Only ship to the users billing address" -msgstr "Doručovať len na fakturačnú adresu zákazníka" - -#: admin/settings/settings-init.php:874 -msgid "Ship to billing address by default" -msgstr "Predvolená preprava na fakturačnú adresu" - -#: admin/settings/settings-init.php:882 -msgid "Collect shipping address even when not required" -msgstr "Zbierať adresu doručenia aj keď nieje potrebná" - -#: admin/settings/settings-init.php:900 -#: admin/woocommerce-admin-settings.php:188 -#: admin/woocommerce-admin-settings.php:329 -msgid "Payment Gateways" -msgstr "Spôsoby platenia" - -#: admin/settings/settings-init.php:900 -msgid "Installed payment gateways are displayed below. Drag and drop payment gateways to control their display order on the checkout." -msgstr "Nainštalované platobné brány sú zobrazené nižšie. Pomocou funkcie ťahaj a pusť nastavte ich poradie pri platbe objednávky." - -#: admin/settings/settings-init.php:918 -#: admin/woocommerce-admin-settings.php:222 -msgid "Tax Options" -msgstr "Nastavenie DPH" - -#: admin/settings/settings-init.php:921 -msgid "Enable Taxes" -msgstr "Povoliť dane" - -#: admin/settings/settings-init.php:922 -msgid "Enable taxes and tax calculations" -msgstr "Povoliť DPH a výpočet DPH" - -#: admin/settings/settings-init.php:929 -msgid "Prices Entered With Tax" -msgstr "Ceny zadávané s daňou" - -#: admin/settings/settings-init.php:933 -msgid "This option is important as it will affect how you input prices. Changing it will not update existing products." -msgstr "Toto nastavenie je dôležité a ovplyvňuje vstupné ceny. Zmena nastavenia neaktualizuje u existujúce produkty." - -#: admin/settings/settings-init.php:935 -msgid "Yes, I will enter prices inclusive of tax" -msgstr "Áno, budem zadávať ceny s daňou" - -#: admin/settings/settings-init.php:936 -msgid "No, I will enter prices exclusive of tax" -msgstr "Nie, budem zadávať ceny bez dane" - -#: admin/settings/settings-init.php:941 -msgid "Calculate Tax Based On:" -msgstr "Rátať daň na základe:" - -#: admin/settings/settings-init.php:943 -msgid "This option determines which address is used to calculate tax." -msgstr "Toto nastavenie určuje ktorá adresa bude použitá na výpočet dane." - -#: admin/settings/settings-init.php:947 -msgid "Customer shipping address" -msgstr "Doručovacia adresa zákazníka" - -#: admin/settings/settings-init.php:948 -msgid "Customer billing address" -msgstr "Fakturačná adresa zákazníka" - -#: admin/settings/settings-init.php:949 admin/settings/settings-init.php:961 -msgid "Shop base address" -msgstr "Základná adresa obchodu" - -#: admin/settings/settings-init.php:954 -msgid "Default Customer Address:" -msgstr "Základná adresa zákazníka:" - -#: admin/settings/settings-init.php:956 -msgid "This option determines the customers default address (before they input their own)." -msgstr "Toto nastavenie určuje základnú adresu zákazníkov (predtým než ju zadajú)." - -#: admin/settings/settings-init.php:960 -msgid "No address" -msgstr "Žiadna adresa" - -#: admin/settings/settings-init.php:966 -msgid "Shipping Tax Class:" -msgstr "Trieda prepravnej dane:" - -#: admin/settings/settings-init.php:967 -msgid "Optionally control which tax class shipping gets, or leave it so shipping tax is based on the cart items themselves." -msgstr "Umožňuje kontrolu nad tým, ktorú daňovú triedu použije na prepravu. Nechajte prázdne pre použitie daňovej sadzby prepravy podľa samotných položiek košíka." - -#: admin/settings/settings-init.php:972 -msgid "Shipping tax class based on cart items" -msgstr "Daňová sadzba prepravy podľa položiek košíka." - -#: admin/settings/settings-init.php:977 -msgid "Rounding" -msgstr "Zaokrúhľovanie" - -#: admin/settings/settings-init.php:978 -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "Zaokrúhliť daň pri medzisúčte namiesto pri zaokrúhľovaní po položkách" - -#: admin/settings/settings-init.php:985 -msgid "Additional Tax Classes" -msgstr "Doplnkové daňové triedy" - -#: admin/settings/settings-init.php:986 -msgid "List additonal tax classes below (1 per line). This is in addition to the default Standard Rate. Tax classes can be assigned to products." -msgstr "Zoznam doplnkových daňových tried(1 na riadok). Toto je doplnok ku Štandardným sadzbám. Daňové triedy môžu byť priradené k produktom." - -#: admin/settings/settings-init.php:990 -msgid "Reduced Rate%sZero Rate" -msgstr "Znížená sadzba %s nulová sadzba" - -#: admin/settings/settings-init.php:994 -msgid "Display prices during cart/checkout:" -msgstr "Zobraziť ceny v košíku/pokladni:" - -#: admin/settings/settings-init.php:999 -msgid "Including tax" -msgstr "Vrátane dane" - -#: admin/settings/settings-init.php:1000 -msgid "Excluding tax" -msgstr "Bez dane" - -#: admin/settings/settings-init.php:1012 -msgid "Email Sender Options" -msgstr "Nastavenie odosielateľa e-mailu" - -#: admin/settings/settings-init.php:1012 -msgid "The following options affect the sender (email address and name) used in WooCommerce emails." -msgstr "Nasledujúce nastavenia (adresa a meno) sa zameriavajú na odosielanie emailov používaných vo WooCommerce." - -#: admin/settings/settings-init.php:1015 -msgid "\"From\" Name" -msgstr "Meno \"Od\"" - -#: admin/settings/settings-init.php:1024 -msgid "\"From\" Email Address" -msgstr "Email \"Od\"" - -#: admin/settings/settings-init.php:1037 -msgid "Email Template" -msgstr "Šablóna emailu" - -#: admin/settings/settings-init.php:1037 -msgid "This section lets you customise the WooCommerce emails. Click here to preview your email template. For more advanced control copy woocommerce/templates/emails/ to yourtheme/woocommerce/emails/." -msgstr "Táto sekcia vám umožňuje upraviť vzhľad WooCommerce emailov. Kliknite sem pre náhľad šablóny. Pre pokročilé nastavenia skopírujte woocommerce/templates/emails/ do yourtheme/woocommerce/emails/." - -#: admin/settings/settings-init.php:1040 -msgid "Header Image" -msgstr "Obrázok hlavičky" - -#: admin/settings/settings-init.php:1041 -msgid "Enter a URL to an image you want to show in the email's header. Upload your image using the media uploader." -msgstr "Zadajte URL adresu obrázku, ktorý chcete zobraziť v záhlaví e-mailu. Nahrajte svoj obrázok pomocou nahrávača médií." - -#: admin/settings/settings-init.php:1049 -msgid "Email Footer Text" -msgstr "Text v pätičke emailu." - -#: admin/settings/settings-init.php:1050 -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "Text se objaví v zápätí e-mailov (napr. podpis, kontaktné údaje apod.)" - -#: admin/settings/settings-init.php:1054 -msgid "Powered by WooCommerce" -msgstr "Využíva riešenia WooCommerce" - -#: admin/settings/settings-init.php:1058 -msgid "Base Colour" -msgstr "Základná farba" - -#: admin/settings/settings-init.php:1059 -msgid "The base colour for WooCommerce email templates. Default #557da1." -msgstr "Základná farba pre e-mailové šablóny e-shopu. Predvolená je #557da1 ." - -#: admin/settings/settings-init.php:1067 -msgid "Background Colour" -msgstr "Farba pozadia" - -#: admin/settings/settings-init.php:1068 -msgid "The background colour for WooCommerce email templates. Default #f5f5f5." -msgstr "Farba pozadia v šablóne emailov pre WooCommerce. Štandardne #f5f5f5." - -#: admin/settings/settings-init.php:1076 -msgid "Email Body Background Colour" -msgstr "Farba pozadia v tele emailu" - -#: admin/settings/settings-init.php:1077 -msgid "The main body background colour. Default #fdfdfd." -msgstr "Farba pozadia hlavnej časti e-malu. Predvolená je #fdfdfd ." - -#: admin/settings/settings-init.php:1085 -msgid "Email Body Text Colour" -msgstr "Farba textu v tele emailu" - -#: admin/settings/settings-init.php:1086 -msgid "The main body text colour. Default #505050." -msgstr "Farba textu hlavnej časti e-mailu. Predvolená je #505050 ." - -#: admin/settings/settings-payment-gateways.php:27 -#: admin/settings/settings-shipping-methods.php:29 -#: admin/woocommerce-admin-init.php:757 -#: admin/woocommerce-admin-taxonomies.php:27 -#: admin/woocommerce-admin-taxonomies.php:121 -msgid "Default" -msgstr "Predvolené" - -#: admin/settings/settings-payment-gateways.php:28 -msgid "Gateway" -msgstr "Spôsob" - -#: admin/settings/settings-payment-gateways.php:45 -msgid "Gateway ID" -msgstr "ID spôsobu platby" - -#: admin/settings/settings-shipping-methods.php:23 -msgid "Shipping Methods" -msgstr "Spôsoby dodania" - -#: admin/settings/settings-shipping-methods.php:25 -msgid "Drag and drop methods to control their display order." -msgstr "Nastavte poradie spôsobov prepravy pomocou funkcie ťahaj a pusť." - -#: admin/settings/settings-shipping-methods.php:30 -msgid "Shipping Method" -msgstr "spôsob prepravy" - -#: admin/settings/settings-shipping-methods.php:46 -msgid "Method ID" -msgstr "Metóda ID" - -#: admin/settings/settings-tax-rates.php:29 -msgid "Tax Rates for the \"%s\" Class" -msgstr "Sadzby dane pre triedu \"%s\"" - -#: admin/settings/settings-tax-rates.php:30 -msgid "Define tax rates for countries and states below. See here for available alpha-2 country codes." -msgstr "Definuje sadzby daní pre rôzne krajiny a štáty.Pozrite sa sem pre dostupné kódy krajín." - -#: admin/settings/settings-tax-rates.php:36 -msgid "Country Code" -msgstr "Krajina Kód" - -#: admin/settings/settings-tax-rates.php:36 -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "Kód krajiny dlhý 2 znaky, napr. US" - -#: admin/settings/settings-tax-rates.php:38 -msgid "State Code" -msgstr "Štát Kód" - -#: admin/settings/settings-tax-rates.php:38 -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "Kód štátu dlhý 2 znaky, napr. AL. Nechajte prázdne pre všetky" - -#: admin/settings/settings-tax-rates.php:40 -#: admin/settings/settings-tax-rates.php:217 -msgid "ZIP/Postcode" -msgstr "PSČ/Poštový kód" - -#: admin/settings/settings-tax-rates.php:40 -msgid "Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank to apply to all areas. Wildcards (*) can be used. Ranges for numeric postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "Poštový kód pre toto pravidlo. Bodkočiarka(;) oddeľuje viaceré hodnoty. Nechajte prázdne pre použitie vo všetky oblasti. Zástupné znaky môžu byť použité(*) Rozsah číselných poštových kódov(napr. 12345 - 12350) bude rozšírený na jednotlivé kódy." - -#: admin/settings/settings-tax-rates.php:42 -msgid "Cities for this rule. Semi-colon (;) separate multiple values. Leave blank to apply to all cities." -msgstr "Mestá pre toto pravidlo. Bodkočiarka(;) oddeľuje viaceré hodnoty. Nechajte prázdne pre použitie vo všetkých mestách." - -#: admin/settings/settings-tax-rates.php:44 -msgid "Rate %" -msgstr "Sadzba %" - -#: admin/settings/settings-tax-rates.php:44 -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "Zadajte sadzbu dane (v percentách) na 4 desatinné miesta" - -#: admin/settings/settings-tax-rates.php:46 -msgid "Tax Name" -msgstr "Daň Názov" - -#: admin/settings/settings-tax-rates.php:46 -msgid "Enter a name for this tax rate." -msgstr "Zadajte názov dane." - -#: admin/settings/settings-tax-rates.php:48 -#: admin/settings/settings-tax-rates.php:217 -msgid "Priority" -msgstr "Priorita" - -#: admin/settings/settings-tax-rates.php:48 -msgid "Choose a priority for this tax rate. Only 1 matching rate per priority will be used. To define multiple tax rates for a single area you need to specify a different priority per rate." -msgstr "Vyberte prioritu pre t´to daň. Iba jedna sadzba na prioritu bude použitá. Pre určenie viacerých daňových sadzieb v jednom území potrebujete špecifikovať rozličnú prioritu." - -#: admin/settings/settings-tax-rates.php:50 -#: admin/settings/settings-tax-rates.php:217 -msgid "Compound" -msgstr "Zloženie" - -#: admin/settings/settings-tax-rates.php:50 -msgid "Choose whether or not this is a compound rate. Compound tax rates are applied on top of other tax rates." -msgstr "Je toto zložená sadzba? Zložená sadzba sa aplikuje navrch všetkých ostatných sadzieb." - -#: admin/settings/settings-tax-rates.php:52 -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "Vyberte, či má byť táto daňová sadzba použitá aj na poštovné." - -#: admin/settings/settings-tax-rates.php:59 -msgid "Insert row" -msgstr "Vložiť riadok" - -#: admin/settings/settings-tax-rates.php:60 -msgid "Remove selected row(s)" -msgstr "Odstrániť vybraný riadok(riadky)" - -#: admin/settings/settings-tax-rates.php:62 -msgid "Export CSV" -msgstr "Export CSV" - -#: admin/settings/settings-tax-rates.php:63 -msgid "Import CSV" -msgstr "Import CSV" - -#: admin/settings/settings-tax-rates.php:163 -msgid "No row(s) selected" -msgstr "Nevybrali ste žiadny riadok." - -#: admin/settings/settings-tax-rates.php:217 -msgid "Country Code" -msgstr "Kód krajiny" - -#: admin/settings/settings-tax-rates.php:217 -msgid "State Code" -msgstr "Kód štátu" - -#: admin/settings/settings-tax-rates.php:217 -msgid "Rate %" -msgstr "Sadzba %" - -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Name" -msgstr "Názov dane " - -#: admin/woocommerce-admin-attributes.php:77 -msgid "Please, provide an attribute name, slug and type." -msgstr "Prosím, napíšte meno vlastnosti, slug a typ." - -#: admin/woocommerce-admin-attributes.php:79 -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "Slug “%s” je príliš dlhý(maixmiálne 28 znoakov). Prosím, skráťte ho." - -#: admin/woocommerce-admin-attributes.php:81 -msgid "Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "Slug “%s” nie je povolený, pretože je vyhradený. Prosím, zmeňte ho." - -#: admin/woocommerce-admin-attributes.php:86 -#: admin/woocommerce-admin-attributes.php:91 -msgid "Slug “%s” is already in use. Change it, please." -msgstr "Slug “%s” sa už používa. Prosím, zmeňte ho." - -#: admin/woocommerce-admin-attributes.php:227 -msgid "Edit Attribute" -msgstr "Upraviť vlastnosť" - -#: admin/woocommerce-admin-attributes.php:237 -#: admin/woocommerce-admin-attributes.php:376 -msgid "Name for the attribute (shown on the front-end)." -msgstr "Názov atribútu (zobrazené na front-end)." - -#: admin/woocommerce-admin-attributes.php:242 -#: admin/woocommerce-admin-attributes.php:308 -#: admin/woocommerce-admin-attributes.php:380 -msgid "Slug" -msgstr "Slug" - -#: admin/woocommerce-admin-attributes.php:246 -#: admin/woocommerce-admin-attributes.php:382 -msgid "Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "Unikátny slug / referencia vlastnosti, musí byť kratší ako 28 znakov." - -#: admin/woocommerce-admin-attributes.php:255 -#: admin/woocommerce-admin-attributes.php:388 -msgid "Select" -msgstr "Vybrať" - -#: admin/woocommerce-admin-attributes.php:256 -#: admin/woocommerce-admin-attributes.php:389 -msgid "Text" -msgstr "Text" - -#: admin/woocommerce-admin-attributes.php:259 -#: admin/woocommerce-admin-attributes.php:392 -msgid "Determines how you select attributes for products. Under admin panel -> products -> product data -> attributes -> values, Text allows manual entry whereas select allows pre-configured terms in a drop-down list." -msgstr "Tu zadajte spôsob výberu vlastností produktov. Text umožňuje ručné zadanie na stránke produktu, pričom voľba vybrať vlastnosť ponúkne iba voľby určené v tejto časti. Ak plánujete používať vlastnosti pre varianty použite voľbu vybrať" - -#: admin/woocommerce-admin-attributes.php:264 -#: admin/woocommerce-admin-attributes.php:396 -msgid "Default sort order" -msgstr "Základné radenie" - -#: admin/woocommerce-admin-attributes.php:268 -#: admin/woocommerce-admin-attributes.php:336 -#: admin/woocommerce-admin-attributes.php:398 -msgid "Custom ordering" -msgstr "Vlastné radenie" - -#: admin/woocommerce-admin-attributes.php:270 -#: admin/woocommerce-admin-attributes.php:333 -#: admin/woocommerce-admin-attributes.php:400 -msgid "Term ID" -msgstr "ID vlastnosti" - -#: admin/woocommerce-admin-attributes.php:272 -#: admin/woocommerce-admin-attributes.php:402 -msgid "Determines the sort order of the terms on the frontend shop product pages. If using custom ordering, you can drag and drop the terms in this attribute." -msgstr "Určuje radenie na stránke pre túto vlastnosť. Ak použijete vlastné radenie, môžete použiť funkciu ťahaj a pusť." - -#: admin/woocommerce-admin-attributes.php:277 -msgid "Update" -msgstr "Aktualizovať" - -#: admin/woocommerce-admin-attributes.php:310 -msgid "Order by" -msgstr "Objednal" - -#: admin/woocommerce-admin-attributes.php:311 -msgid "Terms" -msgstr "Vlastnosti" - -#: admin/woocommerce-admin-attributes.php:356 -msgid "Configure terms" -msgstr "Nastavenie vlastností" - -#: admin/woocommerce-admin-attributes.php:360 -msgid "No attributes currently exist." -msgstr "V súčasnej dobe neexistujú žiadne vlastnosti." - -#: admin/woocommerce-admin-attributes.php:370 -msgid "Add New Attribute" -msgstr "Pridať novú vlastnosť" - -#: admin/woocommerce-admin-attributes.php:371 -msgid "Attributes let you define extra product data, such as size or colour. You can use these attributes in the shop sidebar using the \"layered nav\" widgets. Please note: you cannot rename an attribute later on." -msgstr "Vlastnosti umožňujú definovať ďalšie údaje o produkte, ako je napríklad veľkosť alebo farba. Tieto vlastnosti môžete použiť v obchode na vedľajšom paneli pomocou widgetu \"layered nav\" . Upozornenie: vlastnosť nemožno neskôr premenovať." - -#: admin/woocommerce-admin-attributes.php:405 -msgid "Add Attribute" -msgstr "Pridať vlastnosť" - -#: admin/woocommerce-admin-attributes.php:416 -msgid "Are you sure you want to delete this attribute?" -msgstr "Ste si istí, že chcete zmazať túto vlastnosť?" - -#: admin/woocommerce-admin-content.php:26 -#: admin/woocommerce-admin-reports.php:26 -#: admin/woocommerce-admin-reports.php:66 -#: admin/woocommerce-admin-reports.php:82 -#: admin/woocommerce-admin-reports.php:93 -msgid "Overview" -msgstr "Prehľad" - -#: admin/woocommerce-admin-content.php:29 -msgid "Thank you for using WooCommerce :) Should you need help using or extending WooCommerce please read the documentation. For further assistance you can use the community forum or if you have access, our support desk." -msgstr "Vďaka za používanie WooCommerce :) Ak potrebujete pomoc pri rozširovaní WooCommerce prečítajte si dokumentáciu. Pre bližšiu pomoc navštívte komunitu na fóre alebo ak máte prístup, naše centrum podpry." - -#: admin/woocommerce-admin-content.php:31 -msgid "If you are having problems, or to assist us with support, please check the status page to identify any problems with your configuration:" -msgstr "Ak máte problémy, alebo nám chcete pomôcť s podporou, prosím skontroluje stránku stavu systému pre určenie problému vo vašej konfigurácii." - -#: admin/woocommerce-admin-content.php:33 admin/woocommerce-admin-init.php:89 -#: admin/woocommerce-admin-status.php:26 -msgid "System Status" -msgstr "Stav systému" - -#: admin/woocommerce-admin-content.php:35 -msgid "If you come across a bug, or wish to contribute to the project you can also get involved on GitHub." -msgstr "Ak nájdete chybu alebo sa chcete pripojiť k projektu, navštívte GitHub." - -#: admin/woocommerce-admin-content.php:43 -msgid "Here you can set up your store and customise it to fit your needs. The sections available from the settings page include:" -msgstr "Tu môžete nastaviť obchod a upraviť si ho podľa vlastných požiadaviek. Sekcie dostupné na stránke nastavení zahŕňajú:" - -#: admin/woocommerce-admin-content.php:44 -msgid "General settings such as your shop base, currency, and script/styling options which affect features used in your store." -msgstr "Všeobecné nastavenia ako základná stránka obchodu, mena, možnosti vzhľadu a skripty ovplyvňujúce možnosti dostupné v obchode." - -#: admin/woocommerce-admin-content.php:45 -#: admin/woocommerce-admin-settings.php:184 -msgid "Pages" -msgstr "Stránky" - -#: admin/woocommerce-admin-content.php:45 -msgid "This is where important store page are defined. You can also set up other pages (such as a Terms page) here." -msgstr "Tu si nastavíte dôležité stránky vášho obchodu. Tiež si tu môžete zadefinovať aj ostatné stránky ako napr. stránku Obchodné podmienky." - -#: admin/woocommerce-admin-content.php:46 -msgid "Options for how things like price, images and weights appear in your product catalog." -msgstr "Nastavenia vecí ako ceny, obrázky, váhy ktoré sa zobrazujú v katalógu produktov." - -#: admin/woocommerce-admin-content.php:47 -msgid "Options concerning stock and stock notices." -msgstr "Nastavenia kontroly skladu a skladových oznámení." - -#: admin/woocommerce-admin-content.php:48 -msgid "Options concerning tax, including international and local tax rates." -msgstr "Nastavenia daní vrátane medzinárodných a domácich daní." - -#: admin/woocommerce-admin-content.php:49 -msgid "This is where shipping options are defined, and shipping methods are set up." -msgstr "Tu sa nastavujú možnosti doručenia a vyberajú metódy prepravy." - -#: admin/woocommerce-admin-content.php:50 -msgid "Payment Methods" -msgstr "Spôsoby platby" - -#: admin/woocommerce-admin-content.php:50 -msgid "This is where payment gateway options are defined, and individual payment gateways are set up." -msgstr "Tu sa definujú nastavenia platobných brán a môžu tu byť nastavené individuálne platobné brány." - -#: admin/woocommerce-admin-content.php:51 -#: admin/woocommerce-admin-settings.php:189 -msgid "Emails" -msgstr "E-maily" - -#: admin/woocommerce-admin-content.php:51 -msgid "Here you can customise the way WooCommerce emails appear." -msgstr "Tu si môžete nastaviť vzhľad emailov posialaných z WooCommerce." - -#: admin/woocommerce-admin-content.php:52 -#: admin/woocommerce-admin-settings.php:190 -msgid "Integration" -msgstr "Integrácia" - -#: admin/woocommerce-admin-content.php:52 -msgid "The integration section contains options for third party services which integrate with WooCommerce." -msgstr "Integračná sekcie zahŕňa nastavenia služieb tretích strán ktoré sú integrované do WooCommerce." - -#: admin/woocommerce-admin-content.php:57 admin/woocommerce-admin-init.php:64 -msgid "Reports" -msgstr "Zostavy" - -#: admin/woocommerce-admin-content.php:59 -msgid "The reports section can be accessed from the left-hand navigation menu. Here you can generate reports for sales and customers." -msgstr "Sekcia zostáv je prístupná v navigačnom menu vľavo. Tu môžete generovať zostavy predajov a zákazníkov." - -#: admin/woocommerce-admin-content.php:60 -#: admin/woocommerce-admin-reports.php:23 -#: admin/woocommerce-admin-reports.php:997 -#: admin/woocommerce-admin-reports.php:1095 -#: admin/woocommerce-admin-reports.php:1214 -msgid "Sales" -msgstr "Tržby" - -#: admin/woocommerce-admin-content.php:60 -msgid "Reports for sales based on date, top sellers and top earners." -msgstr "Zostavy predajov podľa dátumu, najlepších predajov a najviac zarábajúcich produktov." - -#: admin/woocommerce-admin-content.php:61 -msgid "Coupon usage reports." -msgstr "Zostavy použitia kupónov." - -#: admin/woocommerce-admin-content.php:62 -#: admin/woocommerce-admin-reports.php:79 -msgid "Customers" -msgstr "Zákazníci" - -#: admin/woocommerce-admin-content.php:62 -msgid "Customer reports, such as signups per day." -msgstr "Zákaznícky report, ako napríklad počet prihlásení denne." - -#: admin/woocommerce-admin-content.php:63 -msgid "Stock reports for low stock and out of stock items." -msgstr "Sklad hlási položky s nízkym skladom, a vypredané položky" - -#: admin/woocommerce-admin-content.php:68 -#: admin/woocommerce-admin-dashboard.php:142 -msgid "Orders" -msgstr "Objednávky" - -#: admin/woocommerce-admin-content.php:70 -msgid "The orders section can be accessed from the left-hand navigation menu. Here you can view and manage customer orders." -msgstr "Sekcia objednávok je prístupná v navigačnom menu vľavo. Tu môžete zobraziť a spravovať objednávky zákazníkov." - -#: admin/woocommerce-admin-content.php:71 -msgid "Orders can also be added from this section if you want to set them up for a customer manually." -msgstr "Objednávky v tejto sekcii môžu byť pridané aj manuálne ak si to zákazník želá." - -#: admin/woocommerce-admin-content.php:78 -msgid "Coupons can be managed from this section. Once added, customers will be able to enter coupon codes on the cart/checkout page. If a customer uses a coupon code they will be viewable when viewing orders." -msgstr "Tu sa spravujú kupóny. Keď zadáte kupón od tohto momentu môžu zákazníci ho zadať na stránke košíka/pokladne. Použitie kupónu je viditeľné pri zobrazení objednávky." - -#: admin/woocommerce-admin-content.php:82 -msgid "For more information:" -msgstr "Viac informácií:" - -msgid "WooCommerce" -msgstr "E-shop" - -#: admin/woocommerce-admin-content.php:84 -msgid "Project on WordPress.org" -msgstr "Projekt na WordPress.org" - -#: admin/woocommerce-admin-content.php:85 -msgid "Project on Github" -msgstr "Projekt na Github" - -#: admin/woocommerce-admin-content.php:86 -msgid "WooCommerce Docs" -msgstr "Dokumenty Woocommerce" - -#: admin/woocommerce-admin-content.php:87 -msgid "Official Extensions" -msgstr "Oficiálne rožšírenia" - -#: admin/woocommerce-admin-content.php:88 -msgid "Official Themes" -msgstr "Oficiálne témy" - -#: admin/woocommerce-admin-dashboard.php:40 -msgid "Monthly Sales" -msgstr "Mesačné tržby" - -#: admin/woocommerce-admin-dashboard.php:43 -msgid "WooCommerce Right Now" -msgstr "WooCommerce Teraz" - -#: admin/woocommerce-admin-dashboard.php:44 -msgid "WooCommerce Recent Orders" -msgstr "WooCommerce nedávne objednávky" - -#: admin/woocommerce-admin-dashboard.php:45 -msgid "WooCommerce Recent Reviews" -msgstr "E-shop - posledné recenzie" - -#: admin/woocommerce-admin-dashboard.php:78 -msgid "Shop Content" -msgstr "Obsah obchodu" - -#: admin/woocommerce-admin-dashboard.php:84 -#: admin/woocommerce-admin-functions.php:200 -#: admin/woocommerce-admin-init.php:761 admin/woocommerce-admin-reports.php:996 -#: admin/woocommerce-admin-reports.php:1094 -msgid "Product" -msgid_plural "Products" -msgstr[0] "Produkt" -msgstr[1] "Produkty" -msgstr[2] "Produktov" - -#: admin/woocommerce-admin-dashboard.php:98 -msgid "Product Category" -msgid_plural "Product Categories" -msgstr[0] "Kategória produktu" -msgstr[1] "Kategórie produktov" -msgstr[2] "Kategórii produktov" - -#: admin/woocommerce-admin-dashboard.php:112 -msgid "Product Tag" -msgid_plural "Product Tags" -msgstr[0] "Značka produktu" -msgstr[1] "Značky produktu" -msgstr[2] "Značiek produktov" - -#: admin/woocommerce-admin-dashboard.php:126 -msgid "Attribute" -msgid_plural "Attributes" -msgstr[0] "Vlastnosť" -msgstr[1] "Vlastnosti" -msgstr[2] "Vlastností" - -#: admin/woocommerce-admin-dashboard.php:148 -msgid "Pending" -msgstr "Čaká na vybavenie" - -#: admin/woocommerce-admin-dashboard.php:162 -msgid "On-Hold" -msgstr "Pozastavená" - -#: admin/woocommerce-admin-dashboard.php:190 -msgid "Completed" -msgstr "Vybavená" - -#: admin/woocommerce-admin-dashboard.php:207 -msgid "You are using WooCommerce %s." -msgstr "Používate WooCommerce %s." - -#: admin/woocommerce-admin-dashboard.php:238 -msgid "l jS \\of F Y h:i:s A" -msgstr "G:i:s l j F, Y " - -#: admin/woocommerce-admin-dashboard.php:239 -msgid "item" -msgid_plural "items" -msgstr[0] "kus" -msgstr[1] "kusů" -msgstr[2] "" - -#: admin/woocommerce-admin-dashboard.php:239 -msgid "Total:" -msgstr "Cena spolu:" - -#: admin/woocommerce-admin-dashboard.php:245 -msgid "There are no product orders yet." -msgstr "Ešte nemáte objednávky." - -#: admin/woocommerce-admin-dashboard.php:279 -msgid "out of 5" -msgstr "z 5" - -#: admin/woocommerce-admin-dashboard.php:287 -msgid "There are no product reviews yet." -msgstr "Zatiaľ žiadne recenzie na tento produkt." - -#: admin/woocommerce-admin-dashboard.php:428 -msgid "Sold" -msgstr "Predaných" - -#: admin/woocommerce-admin-dashboard.php:429 -msgid "Earned" -msgstr "Zarobené" - -#: admin/woocommerce-admin-functions.php:190 -#: admin/woocommerce-admin-install.php:225 -msgid "Order Received" -msgstr "Objednávka prijatá" - -#: admin/woocommerce-admin-functions.php:192 -msgid "Thank you, we are now processing your order. Your order's details are below." -msgstr "Ďakujeme Vám. Vaša objednávka sa práve spracováva. Nižšie nájdete údaje o objednávke:" - -#: admin/woocommerce-admin-functions.php:194 -msgid "Order:" -msgstr "Objednávka:" - -#: admin/woocommerce-admin-functions.php:201 -msgid "Quantity" -msgstr "Množstvo" - -#: admin/woocommerce-admin-functions.php:214 -msgid "Order total:" -msgstr "Objednávka celkom:" - -#: admin/woocommerce-admin-functions.php:220 -msgid "Customer details" -msgstr "Informácie o zákazníkovi" - -#: admin/woocommerce-admin-functions.php:226 -msgid "Billing address" -msgstr "Fakturačná adresa" - -#: admin/woocommerce-admin-functions.php:233 -msgid "Shipping address" -msgstr "Dodacia adresa" - -#: admin/woocommerce-admin-functions.php:465 -msgid "Could not compile woocommerce.less:" -msgstr "Nemožno skompilovať woocommerce.less:" - -#: admin/woocommerce-admin-functions.php:486 -#: admin/woocommerce-admin-functions.php:487 -msgid "Mark processing" -msgstr "Označiť ako \"spracováva sa\"" - -#: admin/woocommerce-admin-functions.php:489 -#: admin/woocommerce-admin-functions.php:490 -msgid "Mark completed" -msgstr "Označiť ako \"vybavená\"" - -#: admin/woocommerce-admin-functions.php:527 -msgid "Order status changed by bulk edit:" -msgstr "Stav objednávky zmenený hromadne, upraviť:" - -#: admin/woocommerce-admin-functions.php:550 -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "Zmenil sa stav objednávky" -msgstr[1] "Zmenil sa stav %s objednávok" -msgstr[2] "Zmenil sa stav %s objednávok" - -#: admin/woocommerce-admin-init.php:88 -msgid "WooCommerce Settings" -msgstr "Nastavenie e-shopu" - -#: admin/woocommerce-admin-init.php:89 -msgid "WooCommerce Status" -msgstr "Stav WooCommerce" - -#: admin/woocommerce-admin-init.php:142 admin/woocommerce-admin-init.php:144 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Objednávky" - -#: admin/woocommerce-admin-init.php:433 -msgid "Are you sure you want to remove the selected items? If you have previously reduced this item's stock, or this order was submitted by a customer, you will need to manually restore the item's stock." -msgstr "Ste si istý, že chcete odstrániť vybrané položky? Ak ste predtým znížili počet položiek na sklade, alebo táto objednávka bola odoslaná zákazníkom, budete musieť manuálne navýšiť počet kusov skladom." - -#: admin/woocommerce-admin-init.php:434 -msgid "Please select some items." -msgstr "Prosím vyberte nejaké položky" - -#: admin/woocommerce-admin-init.php:435 -msgid "Remove this item meta?" -msgstr "Odstrániťť meta tejto položky?" - -#: admin/woocommerce-admin-init.php:436 -msgid "Remove this attribute?" -msgstr "Odstrániť túto vlastnosť?" - -#: admin/woocommerce-admin-init.php:444 -msgid "Enter a name for the new attribute term:" -msgstr "Zadajte meno pre novú vlastnosť." - -#: admin/woocommerce-admin-init.php:445 -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "Rátať súčty podľa objednaných položiek, zliav a poštovného?" - -#: admin/woocommerce-admin-init.php:446 -msgid "Calculate line taxes? This will calculate taxes based on the customers country. If no billing/shipping is set it will use the store base country." -msgstr "Rátať dane v riadku? Toto bude rátať dane podľa krajiny zákazníka. Ak nie je zadaná fakturačná/doručovacia adresa, použije sa adresa krajiny kde sa obchod nachádza." - -#: admin/woocommerce-admin-init.php:447 -msgid "Copy billing information to shipping information? This will remove any currently entered shipping information." -msgstr "Kopírovať fakturačné údaje do dodacích údajov? Tým sa prepíšu aktuálne zapísané dodacie údaje." - -#: admin/woocommerce-admin-init.php:448 -msgid "Load the customer's billing information? This will remove any currently entered billing information." -msgstr "Kopírovať dodacie údaje do fakturačných údajov ? Tým sa prepíšu aktuálne zapísané fakturačné údaje." - -#: admin/woocommerce-admin-init.php:449 -msgid "Load the customer's shipping information? This will remove any currently entered shipping information." -msgstr "Kopírovať fakturačné údaje do dodacích údajov? Tým sa prepíšu aktuálne zapísané dodacie údaje." - -#: admin/woocommerce-admin-init.php:453 -msgid "No customer selected" -msgstr "Nie je vybratý žiadny zákazník" - -#: admin/woocommerce-admin-init.php:665 -msgid "Product updated. View Product" -msgstr "Produkt aktualizovaný. Zobraziť produkt" - -#: admin/woocommerce-admin-init.php:666 admin/woocommerce-admin-init.php:681 -#: admin/woocommerce-admin-init.php:696 -msgid "Custom field updated." -msgstr "Vlastné pole aktualizované." - -#: admin/woocommerce-admin-init.php:667 admin/woocommerce-admin-init.php:682 -#: admin/woocommerce-admin-init.php:697 -msgid "Custom field deleted." -msgstr "Vlastné pole vymazané." - -#: admin/woocommerce-admin-init.php:668 -msgid "Product updated." -msgstr "Produkt aktualizovaný." - -#: admin/woocommerce-admin-init.php:669 -msgid "Product restored to revision from %s" -msgstr "Produkt obnovený na verziu z %s" - -#: admin/woocommerce-admin-init.php:670 -msgid "Product published. View Product" -msgstr "Produkt publikovaný. Zobraziť produkt" - -#: admin/woocommerce-admin-init.php:671 -msgid "Product saved." -msgstr "Produkt uložený." - -#: admin/woocommerce-admin-init.php:672 -msgid "Product submitted. Preview Product" -msgstr "Produkt odoslaný. Náhľad produktu" - -#: admin/woocommerce-admin-init.php:673 -msgid "Product scheduled for: %1$s. Preview Product" -msgstr "Produkt naplánovaný na %1$s. Náhľad produktu" - -#: admin/woocommerce-admin-init.php:674 admin/woocommerce-admin-init.php:689 -#: admin/woocommerce-admin-init.php:704 -msgid "M j, Y @ G:i" -msgstr "G:i, j. n. Y" - -#: admin/woocommerce-admin-init.php:675 -msgid "Product draft updated. Preview Product" -msgstr "Koncept produktu uložený. Náhľad produktu" - -#: admin/woocommerce-admin-init.php:680 admin/woocommerce-admin-init.php:683 -#: admin/woocommerce-admin-init.php:685 -msgid "Order updated." -msgstr "Objednávka aktualizovaná" - -#: admin/woocommerce-admin-init.php:684 -msgid "Order restored to revision from %s" -msgstr "Objednávka obnovená na verziu z %s" - -#: admin/woocommerce-admin-init.php:686 -msgid "Order saved." -msgstr "Objednávka uložená." - -#: admin/woocommerce-admin-init.php:687 -msgid "Order submitted." -msgstr "Objednávka odoslaná" - -#: admin/woocommerce-admin-init.php:688 -msgid "Order scheduled for: %1$s." -msgstr "Objednávka naplánovaná na:%1$s." - -#: admin/woocommerce-admin-init.php:690 -msgid "Order draft updated." -msgstr "Koncept objednávky aktualizovaný." - -#: admin/woocommerce-admin-init.php:695 admin/woocommerce-admin-init.php:698 -#: admin/woocommerce-admin-init.php:700 -msgid "Coupon updated." -msgstr "Kupón aktualizovaný." - -#: admin/woocommerce-admin-init.php:699 -msgid "Coupon restored to revision from %s" -msgstr "Kupón obnovný na verziu z %s" - -#: admin/woocommerce-admin-init.php:701 -msgid "Coupon saved." -msgstr "Kupón uložený." - -#: admin/woocommerce-admin-init.php:702 -msgid "Coupon submitted." -msgstr "Kupón odoslaný." - -#: admin/woocommerce-admin-init.php:703 -msgid "Coupon scheduled for: %1$s." -msgstr "Kupón plánovaný na: %1$s." - -#: admin/woocommerce-admin-init.php:705 -msgid "Coupon draft updated." -msgstr "Koncept kupónu uložený." - -#: admin/woocommerce-admin-init.php:722 -msgid "Order notes" -msgstr "Poznámky k objednávke" - -#: admin/woocommerce-admin-init.php:737 -msgid "These settings control the permalinks used for products. These settings only apply when not using \"default\" permalinks above." -msgstr "Tieto nastavenia kontorlujú trvalé odkazy k produktom. Tieto nastavenia sa použijú iba ak nepoužívate \"štandardné\" trvalé odkazy. " - -#: admin/woocommerce-admin-init.php:744 -msgctxt "default-slug" -msgid "shop" -msgstr "obchod" - -#: admin/woocommerce-admin-init.php:745 -msgctxt "default-slug" -msgid "product" -msgstr "produkt" - -#: admin/woocommerce-admin-init.php:766 -msgid "Shop base" -msgstr "Slug pre obchod" - -#: admin/woocommerce-admin-init.php:770 -msgid "Shop base with category" -msgstr "Slug pre obchod a kategóriu" - -#: admin/woocommerce-admin-init.php:776 -msgid "Custom Base" -msgstr "Vlastný slug" - -#: admin/woocommerce-admin-init.php:778 -msgid "Enter a custom base to use. A base must be set or WordPress will use default instead." -msgstr "Zadajte vlastný slug. Slugmusí byť nastavený, inak WordPress použije základný." - -#: admin/woocommerce-admin-init.php:806 -msgid "Product permalink base" -msgstr "Slug pre trvalý odkaz produktu" - -#: admin/woocommerce-admin-init.php:811 -msgid "Product category base" -msgstr "Slug pre kategóriu produktu" - -#: admin/woocommerce-admin-init.php:818 -msgid "Product tag base" -msgstr "Slug pre značku produktu" - -#: admin/woocommerce-admin-init.php:825 -msgid "Product attribute base" -msgstr "Slug pre vlastnosť produktu" - -#: admin/woocommerce-admin-install.php:195 -msgctxt "page_slug" -msgid "shop" -msgstr "obchod" - -#: admin/woocommerce-admin-install.php:195 -msgid "Shop" -msgstr "Obchod" - -#: admin/woocommerce-admin-install.php:198 -msgctxt "page_slug" -msgid "cart" -msgstr "košík" - -#: admin/woocommerce-admin-install.php:198 -#: admin/woocommerce-admin-status.php:303 -msgid "Cart" -msgstr "Košík" - -#: admin/woocommerce-admin-install.php:201 -msgctxt "page_slug" -msgid "checkout" -msgstr "pokladňa" - -#: admin/woocommerce-admin-install.php:204 -msgctxt "page_slug" -msgid "my-account" -msgstr "môj-účet" - -#: admin/woocommerce-admin-install.php:204 -#: admin/woocommerce-admin-status.php:319 -msgid "My Account" -msgstr "Môj účet" - -#: admin/woocommerce-admin-install.php:210 -msgctxt "page_slug" -msgid "edit-address" -msgstr "upraviť-adresu" - -#: admin/woocommerce-admin-install.php:210 -msgid "Edit My Address" -msgstr "Upraviť moju adresu" - -#: admin/woocommerce-admin-install.php:213 -msgctxt "page_slug" -msgid "view-order" -msgstr "zobraziť-objednávku" - -#: admin/woocommerce-admin-install.php:213 -#: admin/woocommerce-admin-status.php:327 -msgid "View Order" -msgstr "Zobraziť objednávku" - -#: admin/woocommerce-admin-install.php:216 -msgctxt "page_slug" -msgid "change-password" -msgstr "zmena-hesla" - -#: admin/woocommerce-admin-install.php:216 -#: admin/woocommerce-admin-status.php:331 -msgid "Change Password" -msgstr "Zmena hesla" - -#: admin/woocommerce-admin-install.php:219 -msgctxt "page_slug" -msgid "logout" -msgstr "odhlásenie" - -#: admin/woocommerce-admin-install.php:219 -msgid "Logout" -msgstr "Odhlásenie" - -#: admin/woocommerce-admin-install.php:222 -msgctxt "page_slug" -msgid "pay" -msgstr "zaplatiť" - -#: admin/woocommerce-admin-install.php:222 -msgid "Checkout → Pay" -msgstr "Pokladňa → zaplatiť" - -#: admin/woocommerce-admin-install.php:225 -msgctxt "page_slug" -msgid "order-received" -msgstr "prijaté-objednávky" - -#: admin/woocommerce-admin-reports.php:32 -msgid "Sales by day" -msgstr "Denné tržby" - -#: admin/woocommerce-admin-reports.php:37 -msgid "Sales by month" -msgstr "Mesačné tržby" - -#: admin/woocommerce-admin-reports.php:42 -msgid "Product Sales" -msgstr "Predaj produktov" - -#: admin/woocommerce-admin-reports.php:47 -msgid "Top sellers" -msgstr "Najpredávanejšie" - -#: admin/woocommerce-admin-reports.php:52 -msgid "Top earners" -msgstr "Najviac zarábajúce" - -#: admin/woocommerce-admin-reports.php:57 -msgid "Sales by category" -msgstr "Tržby podľa kategórií" - -#: admin/woocommerce-admin-reports.php:72 -msgid "Discounts by coupon" -msgstr "Zľavy podľa kupónu" - -#: admin/woocommerce-admin-reports.php:104 -msgid "Taxes by month" -msgstr "Dane za mesiac" - -#: admin/woocommerce-admin-reports.php:243 -#: admin/woocommerce-admin-reports.php:508 -#: admin/woocommerce-admin-reports.php:713 -#: admin/woocommerce-admin-reports.php:894 -msgid "Sales amount" -msgstr "Objem predaja" - -#: admin/woocommerce-admin-reports.php:248 -#: admin/woocommerce-admin-reports.php:508 -#: admin/woocommerce-admin-reports.php:713 -#: admin/woocommerce-admin-reports.php:894 -msgid "Number of sales" -msgstr "Počet predajov" - -#: admin/woocommerce-admin-reports.php:380 -msgid "Total sales" -msgstr "Tržby spolu" - -#: admin/woocommerce-admin-reports.php:382 -#: admin/woocommerce-admin-reports.php:388 -#: admin/woocommerce-admin-reports.php:394 -#: admin/woocommerce-admin-reports.php:400 -#: admin/woocommerce-admin-reports.php:406 -#: admin/woocommerce-admin-reports.php:412 -#: admin/woocommerce-admin-reports.php:655 -#: admin/woocommerce-admin-reports.php:661 -#: admin/woocommerce-admin-reports.php:667 -#: admin/woocommerce-admin-reports.php:673 -#: admin/woocommerce-admin-reports.php:839 -#: admin/woocommerce-admin-reports.php:845 -#: admin/woocommerce-admin-reports.php:851 -#: admin/woocommerce-admin-reports.php:857 -#: admin/woocommerce-admin-reports.php:1380 -#: admin/woocommerce-admin-reports.php:1386 -#: admin/woocommerce-admin-reports.php:1392 -#: admin/woocommerce-admin-reports.php:1826 -#: admin/woocommerce-admin-reports.php:1832 -#: admin/woocommerce-admin-reports.php:1838 -#: admin/woocommerce-admin-reports.php:1844 -#: admin/woocommerce-admin-reports.php:1850 -#: admin/woocommerce-admin-reports.php:1856 -#: admin/woocommerce-admin-reports.php:2320 -#: admin/woocommerce-admin-reports.php:2331 -#: admin/woocommerce-admin-reports.php:2342 -msgid "n/a" -msgstr "-" - -#: admin/woocommerce-admin-reports.php:386 -msgid "Total orders" -msgstr "Celkový počet objednávok" - -#: admin/woocommerce-admin-reports.php:388 -#: admin/woocommerce-admin-reports.php:661 -#: admin/woocommerce-admin-reports.php:845 -msgid "items" -msgstr "položky" - -#: admin/woocommerce-admin-reports.php:392 -msgid "Average order total" -msgstr "Priemerná cena spolu" - -#: admin/woocommerce-admin-reports.php:398 -msgid "Average order items" -msgstr "Priemerný počet položiek objednávky" - -#: admin/woocommerce-admin-reports.php:404 -msgid "Discounts used" -msgstr "Zľavy použité" - -#: admin/woocommerce-admin-reports.php:410 -msgid "Total shipping costs" -msgstr "Celkové prepravné náklady" - -#: admin/woocommerce-admin-reports.php:418 -msgid "This month's sales" -msgstr "Celkové mesačné náklady" - -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1372 -msgid "From:" -msgstr "Od:" - -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1372 -msgid "To:" -msgstr "Do:" - -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:832 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1245 -#: admin/woocommerce-admin-reports.php:1372 -#: admin/woocommerce-admin-reports.php:1505 -#: admin/woocommerce-admin-reports.php:2309 -#: admin/woocommerce-admin-reports.php:2492 -msgid "Show" -msgstr "Zobraziť" - -#: admin/woocommerce-admin-reports.php:653 -msgid "Total sales in range" -msgstr "Celkové tržby v rozpätí" - -#: admin/woocommerce-admin-reports.php:659 -msgid "Total orders in range" -msgstr "Celkový počet objednávok v rozpätí" - -#: admin/woocommerce-admin-reports.php:665 -msgid "Average order total in range" -msgstr "Priemerná celková cena objednávky v rozpätí" - -#: admin/woocommerce-admin-reports.php:671 -msgid "Average order items in range" -msgstr "Priemerná cena položky v rozpätí" - -#: admin/woocommerce-admin-reports.php:679 -msgid "Sales in range" -msgstr "Tržby v rozpätí" - -#: admin/woocommerce-admin-reports.php:826 -#: admin/woocommerce-admin-reports.php:2303 -msgid "Year:" -msgstr "Rok:" - -#: admin/woocommerce-admin-reports.php:837 -msgid "Total sales for year" -msgstr "Celkové tržby za rok" - -#: admin/woocommerce-admin-reports.php:843 -msgid "Total orders for year" -msgstr "Celkový počet objednávok za rok" - -#: admin/woocommerce-admin-reports.php:849 -msgid "Average order total for year" -msgstr "Priemerná celková cena objednávky za rok" - -#: admin/woocommerce-admin-reports.php:855 -msgid "Average order items for year" -msgstr "Priemerná cena položky za rok" - -#: admin/woocommerce-admin-reports.php:863 -msgid "Monthly sales for year" -msgstr "Mesačné tržby za rok" - -#: admin/woocommerce-admin-reports.php:1011 -msgid "Product does not exist" -msgstr "Produkt neexistuje" - -#: admin/woocommerce-admin-reports.php:1110 -msgid "Product no longer exists" -msgstr "Produkt neexistuje" - -#: admin/woocommerce-admin-reports.php:1209 -msgid "Sales for %s:" -msgstr "Tržby za %s:" - -#: admin/woocommerce-admin-reports.php:1213 -#: admin/woocommerce-admin-reports.php:2351 -msgid "Month" -msgstr "Mesiac" - -#: admin/woocommerce-admin-reports.php:1235 -msgid "No sales :(" -msgstr "Žiadne tržby" - -#: admin/woocommerce-admin-reports.php:1378 -msgid "Total orders containing coupons" -msgstr "Celkové objednávky obsahujúce kupóny" - -#: admin/woocommerce-admin-reports.php:1384 -msgid "Percent of orders containing coupons" -msgstr "Percento objednávok obsahujúce kupóny" - -#: admin/woocommerce-admin-reports.php:1390 -msgid "Total coupon discount" -msgstr "Celková zľava kupónu" - -#: admin/woocommerce-admin-reports.php:1399 -msgid "Most popular coupons" -msgstr "Najpopulárnejšie kupóny" - -#: admin/woocommerce-admin-reports.php:1409 -msgid "Used 1 time" -msgid_plural "Used %d times" -msgstr[0] "Použitý 1 krát" -msgstr[1] "Použitý %d krát" -msgstr[2] "Použitý %d krát" - -#: admin/woocommerce-admin-reports.php:1412 -#: admin/woocommerce-admin-reports.php:1434 -msgid "No coupons found" -msgstr "Nenašli sa žiadne kupóny" - -#: admin/woocommerce-admin-reports.php:1421 -msgid "Greatest discount amount" -msgstr "Najväčšia zľava" - -#: admin/woocommerce-admin-reports.php:1431 -msgid "Discounted %s" -msgstr "Zlacnené %s" - -#: admin/woocommerce-admin-reports.php:1490 -#: admin/woocommerce-admin-reports.php:2469 -msgid "Show:" -msgstr "Zobraziť:" - -#: admin/woocommerce-admin-reports.php:1547 -msgid "Coupon" -msgstr "Zľavový kupón" - -#: admin/woocommerce-admin-reports.php:1630 -msgid "Top coupon" -msgstr "Top kupón" - -#: admin/woocommerce-admin-reports.php:1638 -msgid "Worst coupon" -msgstr "Najhorší kupón" - -#: admin/woocommerce-admin-reports.php:1646 -msgid "Discount average" -msgstr "Priemerná zľava" - -#: admin/woocommerce-admin-reports.php:1654 -msgid "Discount median" -msgstr "Medián zľavy" - -#: admin/woocommerce-admin-reports.php:1674 -msgid "Monthly discounts by coupon" -msgstr "Mesačné zľavy podľa kupónov" - -#: admin/woocommerce-admin-reports.php:1824 -msgid "Total customers" -msgstr "Celkový počet zákazníkov" - -#: admin/woocommerce-admin-reports.php:1830 -msgid "Total customer sales" -msgstr "Celkové tržby registrovaných zákazníkov" - -#: admin/woocommerce-admin-reports.php:1836 -msgid "Total guest sales" -msgstr "Celkové tržby neregistrovaných" - -#: admin/woocommerce-admin-reports.php:1842 -msgid "Total customer orders" -msgstr "Celkový počet objednávok registrovaných zákazníkov" - -#: admin/woocommerce-admin-reports.php:1848 -msgid "Total guest orders" -msgstr "Celkový počet objednávok neregistrovaných" - -#: admin/woocommerce-admin-reports.php:1854 -msgid "Average orders per customer" -msgstr "Priemerný počet objednávok na zákazníka" - -#: admin/woocommerce-admin-reports.php:1862 -msgid "Signups per day" -msgstr "Počet prihlásení za deň" - -#: admin/woocommerce-admin-reports.php:2083 -msgid "Low stock" -msgstr "Nízky stav skladu" - -#: admin/woocommerce-admin-reports.php:2106 -#: admin/woocommerce-admin-reports.php:2145 -msgid "%d in stock" -msgid_plural "%d in stock" -msgstr[0] "%d skladom" -msgstr[1] "%d skladom" -msgstr[2] "%d skladom" - -#: admin/woocommerce-admin-reports.php:2111 -msgid "No products are low in stock." -msgstr "Žiadny produkt nie je skoro vypredaný." - -#: admin/woocommerce-admin-reports.php:2143 -msgid "Marked out of stock" -msgstr "Označené - nie je skladom" - -#: admin/woocommerce-admin-reports.php:2150 -msgid "No products are out in stock." -msgstr "Všetky produkty sú na sklade." - -#: admin/woocommerce-admin-reports.php:2314 -msgid "Total taxes for year" -msgstr "Celkové dane za rok" - -#: admin/woocommerce-admin-reports.php:2325 -msgid "Total product taxes for year" -msgstr "Celkové dane produktov za rok" - -#: admin/woocommerce-admin-reports.php:2336 -msgid "Total shipping tax for year" -msgstr "Celkové dane prepravy za rok" - -#: admin/woocommerce-admin-reports.php:2352 -msgid "Total Sales" -msgstr "Predaj celkom" - -#: admin/woocommerce-admin-reports.php:2352 -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "Toto je sumár všetkých polí \"Objednávka celkom\" vo vašich objednávkach." - -#: admin/woocommerce-admin-reports.php:2353 -msgid "Total Shipping" -msgstr "Preprava celkom" - -#: admin/woocommerce-admin-reports.php:2353 -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "Toto je sumár všetkých polí \"Preprava celkom\" vo vašich objednávkach." - -#: admin/woocommerce-admin-reports.php:2354 -msgid "Total Product Taxes" -msgstr "Celkové dane produktov" - -#: admin/woocommerce-admin-reports.php:2354 -msgid "This is the sum of the 'Cart Tax' field within your orders." -msgstr "Toto je sumár všetkých polí \"Daň košíka\" vo vašich objednávkach." - -#: admin/woocommerce-admin-reports.php:2355 -msgid "Total Shipping Taxes" -msgstr "Celkové dane prepravy" - -#: admin/woocommerce-admin-reports.php:2355 -msgid "This is the sum of the 'Shipping Tax' field within your orders." -msgstr "Toto je sumár všetkých polí \"Celkové dane prepravy\" vo vašich objednávkach." - -#: admin/woocommerce-admin-reports.php:2356 -msgid "Total Taxes" -msgstr "Dane celkom" - -#: admin/woocommerce-admin-reports.php:2356 -msgid "This is the sum of the 'Cart Tax' and 'Shipping Tax' fields within your orders." -msgstr "Toto je sumár všetkých polí \"Daň košíka\" a \"Celkové dane prepravy\" vo vašich objednávkach." - -#: admin/woocommerce-admin-reports.php:2357 -msgid "Net profit" -msgstr "Čistý zisk" - -#: admin/woocommerce-admin-reports.php:2357 -msgid "Total sales minus shipping and tax." -msgstr "Celkové predaje mínus preprava a dane." - -#: admin/woocommerce-admin-reports.php:2402 -msgid "Toggle tax rows" -msgstr "Prepnúť daňové riadky" - -#: admin/woocommerce-admin-reports.php:2545 -msgid "Category" -msgstr "Kategória" - -#: admin/woocommerce-admin-reports.php:2648 -msgid "Top category" -msgstr "Top kategória" - -#: admin/woocommerce-admin-reports.php:2657 -msgid "Worst category" -msgstr "Najhoršia kategória" - -#: admin/woocommerce-admin-reports.php:2665 -msgid "Category sales average" -msgstr "Priemerný predaj v kategóriách" - -#: admin/woocommerce-admin-reports.php:2676 -msgid "Category sales median" -msgstr "Medián predaja v kategóriách" - -#: admin/woocommerce-admin-reports.php:2696 -msgid "Monthly sales by category" -msgstr "Mesačné predaje podľa kategórií" - -#: admin/woocommerce-admin-settings.php:45 -msgid "Action failed. Please refresh the page and retry." -msgstr "Akcia sa nepodarila. Prosím obnovte stránku a skúste to znova." - -#: admin/woocommerce-admin-settings.php:164 -msgid "Your settings have been saved." -msgstr "Vaše nastavenie bolo uložené." - -#: admin/woocommerce-admin-settings.php:210 -msgid "More functionality and gateway options available via WC official extensions." -msgstr "Lepšia funkcionalita a nastavena platobných brán sú dostupné v oficiálnych rozšíreniach WC." - -#: admin/woocommerce-admin-settings.php:228 -msgid "Tax Rates" -msgstr "Daňové sadzby" - -#: admin/woocommerce-admin-settings.php:255 -msgid "Email Options" -msgstr "Nastavenia e-mailu" - -#: admin/woocommerce-admin-settings.php:388 -msgid "Save changes" -msgstr "Uložiť zmeny" - -#: admin/woocommerce-admin-settings.php:429 -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "Uskutočnené zmeny sa stratia, ak odídete z tejto stránky." - -#: admin/woocommerce-admin-settings.php:801 -msgid "Hard Crop" -msgstr "Pevný výnos" - -#: admin/woocommerce-admin-settings.php:826 -msgid "Select a page…" -msgstr "Vyberte stránku…" - -#: admin/woocommerce-admin-settings.php:849 -msgid "Choose a country…" -msgstr "Vyberte krajinu…" - -#: admin/woocommerce-admin-settings.php:869 -msgid "Choose countries…" -msgstr "Vyberte krajiny…" - -#: admin/woocommerce-admin-status.php:27 admin/woocommerce-admin-status.php:664 -msgid "Tools" -msgstr "Nástroje" - -#: admin/woocommerce-admin-status.php:62 -msgid "Please include this information when requesting support:" -msgstr "Prosím zahrňte tieto informácie pri vyžadovaní podpory:" - -#: admin/woocommerce-admin-status.php:63 -msgid "Download System Report File" -msgstr "Stiahnuť súbor správa o systéme" - -#: admin/woocommerce-admin-status.php:71 -msgid "Environment" -msgstr "Prostredie" - -#: admin/woocommerce-admin-status.php:77 -msgid "Home URL" -msgstr "Domáca URL adresa" - -#: admin/woocommerce-admin-status.php:81 -msgid "Site URL" -msgstr "URL adresa stránky" - -#: admin/woocommerce-admin-status.php:85 -msgid "WC Version" -msgstr "Verzia WC" - -#: admin/woocommerce-admin-status.php:89 -msgid "WC Database Version" -msgstr "Verzia databázy WC" - -#: admin/woocommerce-admin-status.php:93 -msgid "WP Version" -msgstr "Verzia WP" - -#: admin/woocommerce-admin-status.php:97 -msgid "Web Server Info" -msgstr "Informácie o Web serveri" - -#: admin/woocommerce-admin-status.php:101 -msgid "PHP Version" -msgstr "Verzia PHP" - -#: admin/woocommerce-admin-status.php:105 -msgid "MySQL Version" -msgstr "Verzia MySQL" - -#: admin/woocommerce-admin-status.php:109 -msgid "WP Memory Limit" -msgstr "Limit pamäte WP" - -#: admin/woocommerce-admin-status.php:114 -msgid "%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "%s - Odporúčame nastaviť pamäť najmenej na 64MB. Pozrite si zvýšenie pamäti určenej pre PHP" - -#: admin/woocommerce-admin-status.php:121 -msgid "WP Debug Mode" -msgstr "Mód ladenia chýb WP" - -#: admin/woocommerce-admin-status.php:125 -msgid "WP Max Upload Size" -msgstr "WP maximálna veľkosť nahrávaného súboru" - -#: admin/woocommerce-admin-status.php:129 -msgid "PHP Post Max Size" -msgstr "PHP maximálna veľkosť príspevku" - -#: admin/woocommerce-admin-status.php:133 -msgid "PHP Time Limit" -msgstr "Časový limit PHP" - -#: admin/woocommerce-admin-status.php:137 -msgid "WC Logging" -msgstr "WC zaznamenávanie" - -#: admin/woocommerce-admin-status.php:140 -msgid "Log directory is writable." -msgstr "Adresa zaznamenávania je zapisovateľná" - -#: admin/woocommerce-admin-status.php:142 -msgid "Log directory (woocommerce/logs/) is not writable. Logging will not be possible." -msgstr "Adresa zaznamenávania (woocommerce/logs/) nie je zapisovateľná. Zaznamenávanie nie je možné." - -#: admin/woocommerce-admin-status.php:149 -msgid "fsockopen/cURL" -msgstr "fsockopen/cURL" - -#: admin/woocommerce-admin-status.php:152 -msgid "Your server has fsockopen and cURL enabled." -msgstr "Váš server má povolené fsockopen a cURL." - -#: admin/woocommerce-admin-status.php:154 -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "Váš server má povolené fsockopen ale cURL je vypnuté." - -#: admin/woocommerce-admin-status.php:156 -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "Váš server má povolené cURL ale fsockopen je vypnuté." - -#: admin/woocommerce-admin-status.php:160 -msgid "Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider." -msgstr "Váš server nemá povolené fsockopen alebo cURL. PayPal IPN a ostatné skripty ktoré komunikujú s ostatnými servermi nebudú pracovať. Kontaktuje poskytovateľa hostingu prosím." - -#: admin/woocommerce-admin-status.php:165 -msgid "SOAP Client" -msgstr "Klient SOAP" - -#: admin/woocommerce-admin-status.php:167 -msgid "Your server has the SOAP Client class enabled." -msgstr "Váš server má povolenú triedu SOAP Klienta." - -#: admin/woocommerce-admin-status.php:170 -msgid "Your server does not have the SOAP Client class enabled - some gateway plugins which use SOAP may not work as expected." -msgstr "Váš server nemá povolenú triedu SOAP Klienta - niektoré moduly platobných brán ktoré používajú SOAP možno nebudú pracovať správne." - -#: admin/woocommerce-admin-status.php:175 -msgid "WP Remote Post" -msgstr "WP vzdialený príspevok" - -#: admin/woocommerce-admin-status.php:186 -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "wp_remote_post() bol úspešný - PayPal IPN pracuje." - -#: admin/woocommerce-admin-status.php:189 -msgid "wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:" -msgstr "wp_remote_post() nebol úspešný - PayPal IPN nepracuje s vaším serverom. Kontaktujte poskytovateľa hostingu. Chyba:" - -#: admin/woocommerce-admin-status.php:192 -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "wp_remote_post() nebol úspešný - PayPal IPN pravdepodobne nepracuje s vaším serverom." - -#: admin/woocommerce-admin-status.php:215 -msgid "Plugins" -msgstr "Moduly" - -#: admin/woocommerce-admin-status.php:221 -msgid "Installed Plugins" -msgstr "Nainštalované moduly" - -#: admin/woocommerce-admin-status.php:259 -msgid "is available" -msgstr "je dostupný" - -#: admin/woocommerce-admin-status.php:262 -msgid "by" -msgstr "od" - -#: admin/woocommerce-admin-status.php:262 -msgid "version" -msgstr "verzia" - -#: admin/woocommerce-admin-status.php:285 -msgid "Force SSL" -msgstr "Použiť SSL" - -#: admin/woocommerce-admin-status.php:292 -msgid "WC Pages" -msgstr "WC stránky" - -#: admin/woocommerce-admin-status.php:299 -msgid "Shop Base" -msgstr "Slug pre obchod" - -#: admin/woocommerce-admin-status.php:311 -msgid "Pay" -msgstr "Zaplatiť" - -#: admin/woocommerce-admin-status.php:315 -msgid "Thanks" -msgstr "Ďakujeme" - -#: admin/woocommerce-admin-status.php:323 -msgid "Edit Address" -msgstr "Upraviť adresu" - -#: admin/woocommerce-admin-status.php:355 -msgid "Page not set" -msgstr "Stránka nenastavená" - -#: admin/woocommerce-admin-status.php:365 -msgid "Page does not exist" -msgstr "Stránka neexistuje" - -#: admin/woocommerce-admin-status.php:370 -msgid "Page does not contain the shortcode: %s" -msgstr "Stránka neobsahuje krátky kód: %s" - -#: admin/woocommerce-admin-status.php:389 -msgid "WC Taxonomies" -msgstr "WC taxonómia" - -#: admin/woocommerce-admin-status.php:395 -msgid "Order Statuses" -msgstr "Stavy objednávky" - -#: admin/woocommerce-admin-status.php:405 -msgid "Product Types" -msgstr "Typy produktov" - -#: admin/woocommerce-admin-status.php:418 -msgid "Templates" -msgstr "Šablóny" - -#: admin/woocommerce-admin-status.php:424 -msgid "Template Overrides" -msgstr "Prepisuje šablónu" - -#: admin/woocommerce-admin-status.php:442 -msgid "No core overrides present in theme." -msgstr "Žiadne prepisovanie jadra v súčasnej téme." - -#: admin/woocommerce-admin-status.php:537 -msgid "WC Transients" -msgstr "WC Transienty" - -#: admin/woocommerce-admin-status.php:538 -msgid "Clear transients" -msgstr "Vyčistiť transienty" - -#: admin/woocommerce-admin-status.php:539 -msgid "This tool will clear the product/shop transients cache." -msgstr "Tento nástroj vymaže transienty medzipamäte produktu/obchodu." - -#: admin/woocommerce-admin-status.php:542 -msgid "Expired Transients" -msgstr "Vypršané transienty" - -#: admin/woocommerce-admin-status.php:543 -msgid "Clear expired transients" -msgstr "Vyčistiť vypršané transienty" - -#: admin/woocommerce-admin-status.php:544 -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "Tento nástroj vymaže všetky transienty z WordPressu." - -#: admin/woocommerce-admin-status.php:547 -msgid "Term counts" -msgstr "Počty vlastností" - -#: admin/woocommerce-admin-status.php:548 -msgid "Recount terms" -msgstr "Vysvetliť vlastnosti" - -#: admin/woocommerce-admin-status.php:549 -msgid "This tool will recount product terms - useful when changing your settings in a way which hides products from the catalog." -msgstr "Tento nástroj vysvetľuje vlastnosti - užitočný pri zmene vašich nastavení ktoré schovávajú produkty z katalógu." - -#: admin/woocommerce-admin-status.php:552 -msgid "Capabilities" -msgstr "Možnosti" - -#: admin/woocommerce-admin-status.php:553 -msgid "Reset capabilities" -msgstr "Obnoviť možnosti" - -#: admin/woocommerce-admin-status.php:554 -msgid "This tool will reset the admin, customer and shop_manager roles to default. Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "Tento nástroj obnoví role administrátorov, zákazníkov a shop_manager na základné. Použite toto nastavenie ak nemáte prístup ku všetkých administrátorským stránkam WooCommerce." - -#: admin/woocommerce-admin-status.php:557 -msgid "Customer Sessions" -msgstr "Zákaznícke relácie" - -#: admin/woocommerce-admin-status.php:558 -msgid "Clear all sessions" -msgstr "Vyčistiť všetky relácie" - -#: admin/woocommerce-admin-status.php:559 -msgid "Warning This tool will delete all customer session data from the database, including any current live carts." -msgstr "Varovanie Tento nástroj vymaže všetky relačné dáta zákazníkov z databázy vrátane aktívnych košíkov. ." - -#: admin/woocommerce-admin-status.php:569 -msgid "Product Transients Cleared" -msgstr "Vyčistené transienty produktu" - -#: admin/woocommerce-admin-status.php:610 -msgid "%d Transients Rows Cleared" -msgstr "Počet vyčistených riadkov transientov: %d" - -#: admin/woocommerce-admin-status.php:618 -msgid "Roles successfully reset" -msgstr "Role úspešne obnovené" - -#: admin/woocommerce-admin-status.php:630 -msgid "Terms successfully recounted" -msgstr "Vlastnosti úspešne vysvetlené" - -#: admin/woocommerce-admin-status.php:649 -msgid "There was an error calling %s::%s" -msgstr "Nastala chyba s názvom %s::%s" - -#: admin/woocommerce-admin-status.php:652 -msgid "There was an error calling %s" -msgstr "Nastala chyba s názvom %s" - -#: admin/woocommerce-admin-taxonomies.php:25 -#: admin/woocommerce-admin-taxonomies.php:118 -msgid "Display type" -msgstr "Typ zobrazenia" - -#: admin/woocommerce-admin-taxonomies.php:29 -#: admin/woocommerce-admin-taxonomies.php:123 -msgid "Subcategories" -msgstr "Podkategórie" - -#: admin/woocommerce-admin-taxonomies.php:30 -#: admin/woocommerce-admin-taxonomies.php:124 -msgid "Both" -msgstr "Obe" - -#: admin/woocommerce-admin-taxonomies.php:34 -#: admin/woocommerce-admin-taxonomies.php:129 -msgid "Thumbnail" -msgstr "Náhľad" - -#: admin/woocommerce-admin-taxonomies.php:38 -#: admin/woocommerce-admin-taxonomies.php:134 -msgid "Upload/Add image" -msgstr "Pridať / Pridať obrázok" - -#: admin/woocommerce-admin-taxonomies.php:39 -#: admin/woocommerce-admin-taxonomies.php:135 -msgid "Remove image" -msgstr "Odstrániť obrázok" - -#: admin/woocommerce-admin-taxonomies.php:64 -#: admin/woocommerce-admin-taxonomies.php:156 -msgid "Use image" -msgstr "Použiť obrázok" - -#: admin/woocommerce-admin-taxonomies.php:222 -msgid "Product categories for your store can be managed here. To change the order of categories on the front-end you can drag and drop to sort them. To see more categories listed click the \"screen options\" link at the top of the page." -msgstr "Kategórie produktov sa spravujú tu. Pre zmenu poradia na stránke použite funkciu ťahaj a pusť. Pre zobrazenie viacerých kategórií zvoľte odkaz \"nastavenia obrazovky\" na vrchu stránky." - -#: admin/woocommerce-admin-taxonomies.php:237 -msgid "Shipping classes can be used to group products of similar type. These groups can then be used by certain shipping methods to provide different rates to different products." -msgstr "Prepravné triedy môžu byť používané na spájanie podobných produktov. Tieto skupiny potom môžu byť použité konkrétnymi metódami prepravy a poskytovať rozličné sadzby pre rozličné produkty." - -#: admin/woocommerce-admin-taxonomies.php:365 -msgid "Edit Class" -msgstr "Upraviť triedu" - -#: admin/woocommerce-admin-users.php:26 -msgid "Billing Address" -msgstr "Fakturačná adresa" - -#: admin/woocommerce-admin-users.php:27 -msgid "Shipping Address" -msgstr "Adresa pre zaslanie" - -#: admin/woocommerce-admin-users.php:28 -msgid "Paying Customer?" -msgstr "Platiaci zákazník?" - -#: admin/woocommerce-admin-users.php:29 -msgid "Completed Orders" -msgstr "Vybavené objednávky" - -#: admin/woocommerce-admin-users.php:144 -msgid "Customer Billing Address" -msgstr "Fakturačná adresa zákazníka" - -#: admin/woocommerce-admin-users.php:147 admin/woocommerce-admin-users.php:196 -msgid "First name" -msgstr "Krstné meno" - -#: admin/woocommerce-admin-users.php:151 admin/woocommerce-admin-users.php:200 -msgid "Last name" -msgstr "Priezvisko" - -#: admin/woocommerce-admin-users.php:176 -msgid "Country or state code" -msgstr "Krajina alebo kód okresu" - -#: admin/woocommerce-admin-users.php:180 admin/woocommerce-admin-users.php:229 -msgid "2 letter Country code" -msgstr "2 znaky dlhý kód krajiny" - -#: admin/woocommerce-admin-users.php:183 -msgid "Telephone" -msgstr "Telefón" - -#: admin/woocommerce-admin-users.php:193 -msgid "Customer Shipping Address" -msgstr "Dodacia adresa zákazníka" - -#: admin/woocommerce-admin-users.php:225 -msgid "State/County or state code" -msgstr "Štát / kraj alebo kód štátu" - -msgid "http://www.woothemes.com/woocommerce/" -msgstr "http://www.woothemes.com/woocommerce/" - -msgid "An e-commerce toolkit that helps you sell anything. Beautifully." -msgstr "E-commerce sada nástrojov, ktorá vám pomôže predať čokoľvek. A prekrásne." - -msgid "WooThemes" -msgstr "WooThemes" - -msgid "http://woothemes.com" -msgstr "http://woothemes.com" - -#: admin/importers/importers-init.php:13 -msgid "WooCommerce Tax Rates (CSV)" -msgstr "Sadzby daní WooCommerce (CSV)" - -#: admin/importers/importers-init.php:13 -msgid "Import tax rates to your store via a csv file." -msgstr "Importuje sadzby daní do vašeho obchodu pomocou súboru csv." - -#: admin/importers/tax-rates-importer.php:103 -#: admin/importers/tax-rates-importer.php:186 -#: admin/importers/tax-rates-importer.php:226 -#: admin/importers/tax-rates-importer.php:241 -msgid "Sorry, there has been an error." -msgstr "Ľutujeme, nastala chyba." - -#: admin/importers/tax-rates-importer.php:104 -msgid "The file does not exist, please try again." -msgstr "Súbor neexistuje, prosím skúste znova." - -#: admin/importers/tax-rates-importer.php:187 -msgid "The CSV is invalid." -msgstr "CSV súbor je chybný" - -#: admin/importers/tax-rates-importer.php:198 -msgid "Import complete - imported %s tax rates and skipped %s." -msgstr "Import kompletný - importovaných %ssadzieb daní a vynechaných %s." - -#: admin/importers/tax-rates-importer.php:208 -msgid "All done!" -msgstr "Hotovo!" - -#: admin/importers/tax-rates-importer.php:208 -msgid "View Tax Rates" -msgstr "Zobraziť sadzby daní" - -#: admin/importers/tax-rates-importer.php:259 -msgid "Import Tax Rates" -msgstr "Importovať sadzby daní" - -#: admin/importers/tax-rates-importer.php:282 -msgid "Hi there! Upload a CSV file containing tax rates to import the contents into your shop. Choose a .csv file to upload, then click \"Upload file and import\"." -msgstr "Vitajte! Nahrajte CSV súbor obsahujúci sadzby daní do vašeho obchodu. Vyberte .csv súbor pre nahranie a kliknite na \"Nahrať súbor a importovať\"" - -#: admin/importers/tax-rates-importer.php:284 -msgid "Tax rates need to be defined with columns in a specific order (10 columns). Click here to download a sample." -msgstr "Sadzby daní musia byť presne definované v špecifickom poradí (10 stĺpcov).Kliknite sem pre stiahnutie vzoru." - -#: admin/importers/tax-rates-importer.php:292 -msgid "Before you can upload your import file, you will need to fix the following error:" -msgstr "Predtým než nahrajete váš súbor, potrebujete odstrániť nasledujúcu chybu:" - -#: admin/importers/tax-rates-importer.php:301 -msgid "Choose a file from your computer:" -msgstr "Vyberte súbor z vášho počítača:" - -#: admin/importers/tax-rates-importer.php:307 -msgid "Maximum size: %s" -msgstr "Maximálna veľkosť: %s" - -#: admin/importers/tax-rates-importer.php:312 -msgid "OR enter path to file:" -msgstr "alebo zadajte cestu k súboru:" - -#: admin/importers/tax-rates-importer.php:319 -msgid "Delimiter" -msgstr "Oddeľovač" - -#: admin/importers/tax-rates-importer.php:325 -msgid "Upload file and import" -msgstr "Nahrať súbor a importovať" - -#: admin/includes/duplicate_product.php:23 -msgid "No product to duplicate has been supplied!" -msgstr "Nijaký produkt nebol dodaný duplicitne." - -#: admin/includes/duplicate_product.php:43 -msgid "Product creation failed, could not find original product:" -msgstr "Vytvorenie produktu zlyhalo, pôvodný produkt nenájdený: " - -#: admin/includes/duplicate_product.php:90 -msgid "(Copy)" -msgstr "(Copy)" - -#: admin/includes/notice-install.php:6 -msgid "Welcome to WooCommerce – You're almost ready to start selling :)" -msgstr "Vitajte vo Woocommerce už ste skoro pripravení predávať:)" - -#: admin/includes/notice-install.php:7 -msgid "Install WooCommerce Pages" -msgstr "Nainštalovať stránky WooCommerce" - -#: admin/includes/notice-install.php:7 -msgid "Skip setup" -msgstr "Preskočiť nastavenia" - -#: admin/includes/notice-theme-support.php:6 -msgid "Your theme does not declare WooCommerce support – if you encounter layout issues please read our integration guide or choose a WooCommerce theme :)" -msgstr "Vaša téma nezaručuje podporu WooCommerce, ak máte problémy prečítajte si integračný manuál alebo si vyberte WooCommerce tému:)" - -#: admin/includes/notice-theme-support.php:7 -msgid "Theme Integration Guide" -msgstr "Manuál integrácie témy" - -#: admin/includes/notice-theme-support.php:7 -msgid "Hide this notice" -msgstr "Schovať upozornenie" - -#: admin/includes/notice-update.php:6 -msgid "Data Update Required – We just need to update your install to the latest version" -msgstr "Vyžaduje sa aktualizácia dát. Potrebujeme aktualizovať vašu inštaláciu na najnovšiu verziu." - -#: admin/includes/notice-update.php:7 -msgid "Run the updater" -msgstr "Spustiť aktualizácie" - -#: admin/includes/notice-update.php:12 -msgid "It is strongly recommended that you backup your database before proceeding. Are you sure you wish to run the updater now?" -msgstr "Je odporúčané zálohovať databázu pred pokračovaním. Ste si istý, že chcete spustiť aktualizácie teraz?" - -#: admin/includes/updates/woocommerce-update-2.0.php:49 -#: admin/woocommerce-admin-init.php:885 -msgctxt "slug" -msgid "product-category" -msgstr "kategoria-produktu" - -#: admin/includes/updates/woocommerce-update-2.0.php:50 -#: admin/woocommerce-admin-init.php:898 -msgctxt "slug" -msgid "product-tag" -msgstr "značka-produktu" - -#: admin/includes/updates/woocommerce-update-2.0.php:58 -msgctxt "slug" -msgid "product" -msgstr "produkt" - -#: admin/includes/updates/woocommerce-update-2.0.php:179 -#: admin/woocommerce-admin-install.php:207 -msgctxt "page_slug" -msgid "lost-password" -msgstr "stratené-heslo" - -#: admin/includes/updates/woocommerce-update-2.0.php:179 -#: admin/woocommerce-admin-install.php:207 -#: admin/woocommerce-admin-status.php:335 -msgid "Lost Password" -msgstr "Stratené heslo" - -#: admin/includes/welcome.php:48 -msgid "Welcome to WooCommerce" -msgstr "Vitajte vo Woocommerce" - -#: admin/includes/welcome.php:135 -msgid "Welcome to WooCommerce %s" -msgstr "Vitajte vo Woocommerce %s" - -#: admin/includes/welcome.php:140 -msgid "Thanks, all done!" -msgstr "Ďakujeme, všetko je hotové!" - -#: admin/includes/welcome.php:142 -msgid "Thank you for updating to the latest version!" -msgstr "Ďakujeme vám za aktualizáciu na najnovšiu verziu!" - -#: admin/includes/welcome.php:144 -msgid "Thanks for installing!" -msgstr "Vďaka za inštaláciu!" - -#: admin/includes/welcome.php:146 -msgid "%s WooCommerce %s is more powerful, stable, and secure than ever before. We hope you enjoy it." -msgstr "%s WooCommerce %s je silnejšie, stabilnejšie a bezpečnejšie ako kedykoľvek predtým. Dúfame, že si ho užijete." - -#: admin/includes/welcome.php:150 -msgid "Version %s" -msgstr "Verzia %s" - -#: admin/includes/welcome.php:153 admin/woocommerce-admin-content.php:41 -#: admin/woocommerce-admin-init.php:88 admin/woocommerce-admin-status.php:278 -msgid "Settings" -msgstr "Nastavenia" - -#: admin/includes/welcome.php:154 -msgid "Docs" -msgstr "Dokumenty" - -#: admin/includes/welcome.php:161 -msgid "What's New" -msgstr "Čo je nové" - -#: admin/includes/welcome.php:163 -msgid "Credits" -msgstr "Kredity" - -#: admin/includes/welcome.php:186 -msgid "Security in mind" -msgstr "Zaujíma vás bezpečnosť?" - -#: admin/includes/welcome.php:190 -msgid "Sucuri Safe Plugin" -msgstr "Modul Sucuri Safe" - -#: admin/includes/welcome.php:191 -msgid "You will be happy to learn that WooCommerce has been audited and certified by the Sucuri Security team. Whilst there is not much to be seen visually to understand the amount of work that went into this audit, rest assured that your website is powered by one of the most powerful and stable eCommerce plugins available." -msgstr "Určite radi počujete, že WooCommerce bol certifikovaný Sucuri Security tímom. Na prvý pohľad nie je vidieť koľko úsilia sa dalo do tohto auditu, vaša stránka je poháňaná jedným z najschopnejších a najstabilnejších dostupných modulov online obchodov." - -#: admin/includes/welcome.php:194 -msgid "A Smoother Admin Experience" -msgstr "Hladhejšiu administrátorskú skúsenosť" - -#: admin/includes/welcome.php:200 -msgid "New Product Panel" -msgstr "Nový panel produktov" - -#: admin/includes/welcome.php:201 -msgid "We have revised the product data panel making it cleaner, more streamlined, and more logical. Adding products is a breeze!" -msgstr "Zmenili sme panel dát produktov. Momentálne je čistejší, efektívnejší a logickejší. Pridávanie produktov je jednoduché!" - -#: admin/includes/welcome.php:206 -msgid "Nicer Order Screens" -msgstr "Krajšie obrazovky objednávok" - -#: admin/includes/welcome.php:207 -msgid "Order pages have had a cleanup, with a more easily scannable interface. We particularly like the new status icons!" -msgstr "Stránky objednávok sme vyčistili, sú prehľadnejšie. Najviac sa nám páčia nové ikony stavu." - -#: admin/includes/welcome.php:212 -msgid "Multi-Download Support" -msgstr "Podpora viacnásobného sťahovania" - -#: admin/includes/welcome.php:213 -msgid "Products can have multiple downloadable files - purchasers will get access to all the files added." -msgstr "Výrobky môžu mať viac súborov na prevzatie - kupujúci budú mať prístup ku všetkým pridaným súborom." - -#: admin/includes/welcome.php:218 -msgid "Less Taxing Taxes" -msgstr "Menej zatažujúce dane" - -#: admin/includes/welcome.php:224 -msgid "New Tax Input Panel" -msgstr "Panel zadávania novej dane" - -#: admin/includes/welcome.php:225 -msgid "The tax input pages have been streamlined to make inputting taxes simpler - adding multiple taxes for a single jurisdiction is now much easier using the priority system. There is also CSV import/export support." -msgstr "Stránky zadávania daní boli modifikované aby zadávanie bolo efektívnejšie a jednoduchšie - pridávanie viacerých daní pre jednu jurisdikciu je jednoduchšie pomocou systému priorít. Tiež môžete použiť import/export CSV súborov." - -#: admin/includes/welcome.php:229 -msgid "Improved Tax Options" -msgstr "Vylepšené nastavenia daní" - -#: admin/includes/welcome.php:230 -msgid "As requested by some users, we now support taxing the billing address instead of shipping (optional), and we allow you to choose which tax class applies to shipping." -msgstr "Ako to vyžadovali niektorí zákazníci, teraz podporujeme daňovú sadzbu podľa fakturačnej adresy a nie adresy doručenia.(voliteľne) Taktiež vám umožňujeme zvoliť si daňovú sadzbu na prepravu." - -#: admin/includes/welcome.php:235 -msgid "Product Listing Improvements Customers Will Love" -msgstr "Radenie produktov ktoré zákazníci budú zbožnovať" - -#: admin/includes/welcome.php:241 -msgid "New Sorting Options" -msgstr "Nové možnosti triedenia" - -#: admin/includes/welcome.php:242 -msgid "Customers can now sort products by popularity and ratings." -msgstr "Zákazníci teraz môžu triediť podľa obľúbenosti a hodnotení." - -#: admin/includes/welcome.php:247 -msgid "Better Pagination and Result Counts" -msgstr "Lepšia správa strán a počty výsledkov" - -#: admin/includes/welcome.php:248 -msgid "Numbered pagination has been added to core, and we show the number of results found above the listings." -msgstr "Číslovanie strán bolo zahrnuté do jadra, momentálne zobrazujeme počet nájdených výsledkov nad položkami." - -#: admin/includes/welcome.php:253 -msgid "Inline Star Rating Display" -msgstr "Zobraziť hodnotenie hviezdičkami v riadku" - -#: admin/includes/welcome.php:254 -msgid "We have added star ratings to the catalog which are pulled from reviews." -msgstr "Pridali sme hodnotenie hviezdičkami do katalógu ktoré pochádza z recenzií." - -#: admin/includes/welcome.php:262 -msgid "Under the Hood" -msgstr "Pod kapotou" - -#: admin/includes/welcome.php:266 -msgid "New product classes" -msgstr "Nové triedy produktu" - -#: admin/includes/welcome.php:267 -msgid "The product classes have been rewritten and are now factory based. Much more extendable, and easier to query products using the new get_product() function." -msgstr "Triedy produktov boli prepísané na základné. Nová funkciaget_product() pre dotazovanie produktov je oveľa viac rozšíriteľná a jednoduchšia na používanie." - -#: admin/includes/welcome.php:271 -msgid "Capability overhaul" -msgstr "Opravy funkcií" - -#: admin/includes/welcome.php:272 -msgid "More granular capabilities for admin/shop manager roles covering products, orders and coupons." -msgstr "Presnejšie funkcie pre role administrátora/manažéra obchodu týkajúce sa výrobkov, objednávok a kupónov." - -#: admin/includes/welcome.php:276 -msgid "API Improvements" -msgstr "Vylepšenia API" - -#: admin/includes/welcome.php:277 -msgid "WC-API now has real endpoints, and we've optimised the gateways API significantly by only loading gateways when needed." -msgstr "WC-API ma teraz koncové body. Optimalizovali sme brány API pomocou systému nahrávania len keď sú potrebné." - -#: admin/includes/welcome.php:283 -msgid "Cache-friendly cart widgets" -msgstr "Widgety košíka spolupracujúce s medzipamäťou " - -#: admin/includes/welcome.php:284 -msgid "Cart widgets and other \"fragments\" are now pulled in via AJAX - this works wonders with static page caching." -msgstr "Widgety košíka a iné \"fragmenty\"sú používané pomocou AJAX - toto úžasne pracuje s medzipamäťou statických stránok." - -#: admin/includes/welcome.php:288 -msgid "Session handling" -msgstr "Správa relácie" - -#: admin/includes/welcome.php:289 -msgid "PHP SESSIONS have been a problem for many users in the past, so we've developed our own handler using cookies and options to make these more reliable." -msgstr "PHP relácie boli v minulosti problémové, preto sme vyvinuli vlastnú správu cookies a nastavení pre vylepšenie spoľahlivosti." - -#: admin/includes/welcome.php:293 -msgid "Retina Ready" -msgstr "Pripravené pre Retinu" - -#: admin/includes/welcome.php:294 -msgid "All graphics within WC have been optimised for HiDPI displays." -msgstr "Všetky grafické prvky vo WC sú optimalizované pre použitie s HiDPI obrazovkami." - -#: admin/includes/welcome.php:301 -msgid "Better stock handling" -msgstr "Lepšia správa skladu" - -#: admin/includes/welcome.php:302 -msgid "We have added an option to hold stock for unpaid orders (defaults to 60mins). When this time limit is reached, and the order is not paid for, stock is released and the order is cancelled." -msgstr "Pridali sme možnosť držať rezervovaný tovar pre nezaplatené objednávky(štandardne 60 minút). Keď je časový limit dosiahnutý a objednávka nezaplatená, tovar sa vráti na sklad a objednávka automaticky zruší." - -#: admin/includes/welcome.php:306 -msgid "Improved Line-item storage" -msgstr "Vylepšené umiestnenie položiek v riadku" - -#: admin/includes/welcome.php:307 -msgid "We have changed how order items get stored making them easier (and faster) to access for reporting. Order items are no longer serialised within an order - they are stored within their own table." -msgstr "Zmenili sme ako sa ukladajú položky objednávky pre jednoduchší a rýchlejší prístup k nim. Položky objednávky nie sú teraz radené vrámci objednávky, ale sú ukladané do vlastnej tabuľky." - -#: admin/includes/welcome.php:311 -msgid "Autoload" -msgstr "Automatické nahrávanie" - -#: admin/includes/welcome.php:312 -msgid "We have setup autoloading for classes - this has dramatically reduced memory usage in 2.0." -msgstr "Máme nastavenia pre automatické nahrávanie tried. Toto dramaticky znížilo využitie pamäte vo verzii 2.0." - -#: admin/includes/welcome.php:319 -msgid "Go to WooCommerce Settings" -msgstr "Ísť na nastavenia WooCommerce" - -#: admin/includes/welcome.php:337 -msgid "WooCommerce is developed and maintained by a worldwide team of passionate individuals and backed by an awesome developer community. Want to see your name? Contribute to WooCommerce." -msgstr "WooCommerce je vyvíjaný a udržiavaný celosvetovým tímom zapalených osobností a úžasnou komunitou vývojárov. Chceli by ste tu vidieť svoje meno? Zapojte sa do tímu WooCommerce." - -#: admin/includes/welcome.php:363 -msgid "View %s" -msgstr "Zobraziť %s" - -#: admin/post-types/product.php:31 -msgid "Make a duplicate from this product" -msgstr "Urobiť duplikát tohto produktu" - -#: admin/post-types/product.php:32 -msgid "Duplicate" -msgstr "Duplikát" - -#: admin/post-types/product.php:61 -msgid "Copy to a new draft" -msgstr "Nový návrh kopírovaním" - -#: admin/post-types/product.php:86 admin/woocommerce-admin-taxonomies.php:297 -msgid "Image" -msgstr "Obrázok" - -#: admin/post-types/product.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:376 -#: admin/post-types/writepanels/writepanel-product_data.php:470 -#: admin/woocommerce-admin-attributes.php:233 -#: admin/woocommerce-admin-attributes.php:269 -#: admin/woocommerce-admin-attributes.php:307 -#: admin/woocommerce-admin-attributes.php:330 -#: admin/woocommerce-admin-attributes.php:374 -#: admin/woocommerce-admin-attributes.php:399 -#: admin/woocommerce-admin-init.php:437 -msgid "Name" -msgstr "Meno" - -#: admin/post-types/product.php:91 admin/post-types/product.php:557 -#: admin/post-types/writepanels/variation-admin-html.php:52 -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#: admin/woocommerce-admin-reports.php:2099 -#: admin/woocommerce-admin-reports.php:2135 -msgid "SKU" -msgstr "Katalógové číslo" - -#: admin/post-types/product.php:94 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:83 -#: admin/woocommerce-admin-content.php:63 -#: admin/woocommerce-admin-reports.php:90 -msgid "Stock" -msgstr "Sklad" - -#: admin/post-types/product.php:96 admin/post-types/product.php:568 -#: admin/post-types/product.php:789 admin/woocommerce-admin-functions.php:202 -msgid "Price" -msgstr "Cena" - -#: admin/post-types/product.php:98 -msgid "Categories" -msgstr "Kategórie" - -#: admin/post-types/product.php:99 -msgid "Tags" -msgstr "Značky" - -#: admin/post-types/product.php:100 admin/post-types/product.php:632 -#: admin/post-types/product.php:906 -#: admin/post-types/writepanels/writepanel-product_data.php:1058 -#: admin/woocommerce-admin-init.php:450 -msgid "Featured" -msgstr "Špeciálna ponuka" - -#: admin/post-types/product.php:101 admin/woocommerce-admin-attributes.php:251 -#: admin/woocommerce-admin-attributes.php:309 -#: admin/woocommerce-admin-attributes.php:386 -msgid "Type" -msgstr "Typ" - -#: admin/post-types/product.php:102 admin/post-types/shop_order.php:50 -msgid "Date" -msgstr "Dátum" - -#: admin/post-types/product.php:151 -msgid "Edit this item" -msgstr "Upraviť túto položku" - -#: admin/post-types/product.php:151 -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#: admin/post-types/writepanels/writepanel-order_data.php:387 -#: admin/post-types/writepanels/writepanel-product_data.php:1061 -#: admin/woocommerce-admin-attributes.php:323 -msgid "Edit" -msgstr "Upraviť" - -#: admin/post-types/product.php:152 -msgid "Edit this item inline" -msgstr "Upraviť túto položku v riadku" - -#: admin/post-types/product.php:152 -msgid "Quick Edit" -msgstr "Rýchla úprava" - -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore this item from the Trash" -msgstr "Obnoviť túto položku z koša" - -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore" -msgstr "Obnoviť" - -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Move this item to the Trash" -msgstr "Presunúť do koša" - -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Trash" -msgstr "Kôš" - -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -msgid "Delete this item permanently" -msgstr "Vymazať túto položky natrvalo" - -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -#: admin/post-types/writepanels/writepanel-order_data.php:463 -msgid "Delete Permanently" -msgstr "Zmazať natrvalo" - -#: admin/post-types/product.php:165 -msgid "Preview “%s”" -msgstr "Náhľad “%s”" - -#: admin/post-types/product.php:165 -msgid "Preview" -msgstr "Náhľad" - -#: admin/post-types/product.php:167 -msgid "View “%s”" -msgstr "Zobraziť “%s”" - -#: admin/post-types/product.php:167 admin/post-types/shop_order.php:171 -msgid "View" -msgstr "Zobraziť" - -#: admin/post-types/product.php:214 -msgid "Grouped" -msgstr "Zoskupené" - -#: admin/post-types/product.php:216 -msgid "External/Affiliate" -msgstr "Externé/Príbuzné" - -#: admin/post-types/product.php:220 admin/post-types/product.php:407 -#: admin/post-types/writepanels/variation-admin-html.php:174 -#: admin/post-types/writepanels/writepanel-product_data.php:52 -msgid "Virtual" -msgstr "Virtuálne" - -#: admin/post-types/product.php:222 admin/post-types/product.php:403 -#: admin/post-types/writepanels/variation-admin-html.php:172 -#: admin/post-types/writepanels/writepanel-product_data.php:58 -msgid "Downloadable" -msgstr "Na stiahnutie" - -#: admin/post-types/product.php:224 -msgid "Simple" -msgstr "Jednoduchý" - -#: admin/post-types/product.php:228 admin/post-types/product.php:387 -msgid "Variable" -msgstr "Variabilný" - -#: admin/post-types/product.php:251 -msgid "Toggle featured" -msgstr "Prepnúť odporúčania" - -#: admin/post-types/product.php:253 -msgid "yes" -msgstr "áno" - -#: admin/post-types/product.php:255 -msgid "no" -msgstr "nie" - -#: admin/post-types/product.php:262 admin/post-types/product.php:641 -#: admin/post-types/product.php:930 -#: admin/post-types/writepanels/writepanel-product_data.php:231 -msgid "In stock" -msgstr "Na sklade" - -#: admin/post-types/product.php:264 admin/post-types/product.php:642 -#: admin/post-types/product.php:931 -#: admin/post-types/writepanels/writepanel-product_data.php:232 -#: admin/woocommerce-admin-reports.php:2119 -msgid "Out of stock" -msgstr "Nie je na sklade" - -#: admin/post-types/product.php:373 -msgid "Show all product types" -msgstr "Zobraziť všetky typy produktov" - -#: admin/post-types/product.php:381 -#: admin/post-types/writepanels/writepanel-product_data.php:39 -msgid "Grouped product" -msgstr "Zoskupený produkt" - -#: admin/post-types/product.php:383 -#: admin/post-types/writepanels/writepanel-product_data.php:40 -msgid "External/Affiliate product" -msgstr "Externý/príbuzný produkt" - -#: admin/post-types/product.php:385 -#: admin/post-types/writepanels/writepanel-product_data.php:38 -msgid "Simple product" -msgstr "Jednoduchý produkt" - -#: admin/post-types/product.php:399 -msgid "Show all sub-types" -msgstr "Zobraziť všetky podtypy" - -#: admin/post-types/product.php:520 -msgid "[%s with SKU of %s]" -msgstr "[%s s katalógovým číslom %s]" - -#: admin/post-types/product.php:526 -msgid "[%s with ID of %d]" -msgstr "[%s s číslom ID %d]" - -#: admin/post-types/product.php:552 admin/post-types/product.php:783 -#: admin/post-types/writepanels/writepanels-init.php:46 -#: admin/settings/settings-init.php:508 -msgid "Product Data" -msgstr "Údaje o produkte" - -#: admin/post-types/product.php:570 -msgid "Regular price" -msgstr "Normálna cena" - -#: admin/post-types/product.php:575 admin/post-types/product.php:813 -msgid "Sale" -msgstr "Zľava" - -#: admin/post-types/product.php:577 -msgid "Sale price" -msgstr "Zľavnená cena" - -#: admin/post-types/product.php:588 admin/post-types/product.php:839 -#: admin/post-types/writepanels/variation-admin-html.php:96 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:273 -msgid "Weight" -msgstr "Hmotnosť" - -#: admin/post-types/product.php:599 admin/post-types/product.php:863 -msgid "L/W/H" -msgstr "D/Š/V" - -#: admin/post-types/product.php:601 admin/post-types/product.php:879 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:85 -#: admin/post-types/writepanels/writepanel-product_data.php:286 -msgid "Length" -msgstr "Dĺžka" - -#: admin/post-types/product.php:602 admin/post-types/product.php:880 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:86 -#: admin/post-types/writepanels/writepanel-product_data.php:287 -#: admin/woocommerce-admin-settings.php:797 -msgid "Width" -msgstr "Šírka" - -#: admin/post-types/product.php:603 admin/post-types/product.php:881 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:87 -#: admin/post-types/writepanels/writepanel-product_data.php:288 -#: admin/woocommerce-admin-settings.php:799 -msgid "Height" -msgstr "Výška" - -#: admin/post-types/product.php:613 admin/post-types/product.php:887 -msgid "Visibility" -msgstr "Viditeľnosť" - -#: admin/post-types/product.php:618 admin/post-types/product.php:893 -msgid "Catalog & search" -msgstr "Katalóg & Hľadanie" - -#: admin/post-types/product.php:619 admin/post-types/product.php:894 -#: admin/post-types/writepanels/writepanel-product_data.php:1047 -#: admin/woocommerce-admin-content.php:46 -#: admin/woocommerce-admin-settings.php:183 -msgid "Catalog" -msgstr "Katalóg" - -#: admin/post-types/product.php:620 admin/post-types/product.php:895 -#: admin/post-types/writepanels/writepanel-product_data.php:1048 -msgid "Search" -msgstr "Hľadanie" - -#: admin/post-types/product.php:621 admin/post-types/product.php:896 -#: admin/post-types/writepanels/writepanel-product_data.php:1049 -msgid "Hidden" -msgstr "Skrytý" - -#: admin/post-types/product.php:636 admin/post-types/product.php:924 -msgid "In stock?" -msgstr "Skladom?" - -#: admin/post-types/product.php:657 admin/post-types/product.php:942 -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Manage stock?" -msgstr "Správa skladu?" - -#: admin/post-types/product.php:661 admin/post-types/product.php:961 -#: admin/post-types/product.php:977 -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "Stock Qty" -msgstr "Na sklade" - -#: admin/post-types/product.php:794 admin/post-types/product.php:818 -#: admin/post-types/product.php:844 admin/post-types/product.php:868 -#: admin/post-types/product.php:892 admin/post-types/product.php:911 -#: admin/post-types/product.php:929 admin/post-types/product.php:947 -#: admin/post-types/product.php:966 -msgid "— No Change —" -msgstr "— Bez zmeny —" - -#: admin/post-types/product.php:795 admin/post-types/product.php:819 -#: admin/post-types/product.php:845 admin/post-types/product.php:869 -#: admin/post-types/product.php:967 -msgid "Change to:" -msgstr "Zmeniť na:" - -#: admin/post-types/product.php:796 admin/post-types/product.php:820 -msgid "Increase by (fixed amount or %):" -msgstr "Zvýšiť o (fixná cena alebo %):" - -#: admin/post-types/product.php:797 admin/post-types/product.php:821 -msgid "Decrease by (fixed amount or %):" -msgstr "Znížiť o (fixná cena alebo %):" - -#: admin/post-types/product.php:807 admin/post-types/product.php:832 -msgid "Enter price" -msgstr "Zadajte cenu" - -#: admin/post-types/product.php:822 -msgid "Decrease regular price by (fixed amount or %):" -msgstr "Znížiť normálnu cenu o (fixná cena alebo %):" - -#: admin/post-types/product.php:912 admin/post-types/product.php:948 -#: admin/post-types/shop_order.php:190 admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:286 -msgid "Yes" -msgstr "Áno" - -#: admin/post-types/product.php:913 admin/post-types/product.php:949 -#: admin/post-types/shop_order.php:192 admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:286 -msgid "No" -msgstr "Nie" - -#: admin/post-types/product.php:1183 -msgid "Sort Products" -msgstr "Triedenie produktov" - -#: admin/post-types/product.php:1222 -msgid "Insert into product" -msgstr "Vložiť tento produkt" - -#: admin/post-types/product.php:1223 -msgid "Uploaded to this product" -msgstr "Nahrané k tomuto produktu" - -#: admin/post-types/shop_coupon.php:25 -msgid "Code" -msgstr "Kód" - -#: admin/post-types/shop_coupon.php:26 -msgid "Coupon type" -msgstr "Typ kupónu" - -#: admin/post-types/shop_coupon.php:27 -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Coupon amount" -msgstr "Hodnota kupónu" - -#: admin/post-types/shop_coupon.php:28 -msgid "Description" -msgstr "Popis" - -#: admin/post-types/shop_coupon.php:29 -msgid "Product IDs" -msgstr "Číslo ID produktu" - -#: admin/post-types/shop_coupon.php:30 -msgid "Usage / Limit" -msgstr "Použté/limit" - -#: admin/post-types/shop_coupon.php:31 -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "Expiry date" -msgstr "Dátum platnosti" - -#: admin/post-types/shop_coupon.php:56 -msgid "Edit coupon" -msgstr "Upraviť kupón" - -#: admin/post-types/shop_coupon.php:114 -msgid "%s / %s" -msgstr "%s / %s" - -#: admin/post-types/shop_coupon.php:116 -msgid "%s / ∞" -msgstr "%s / ∞" - -#: admin/post-types/shop_coupon.php:149 -msgid "Show all types" -msgstr "Zobraziť všetky typy" - -#: admin/post-types/shop_order.php:43 -#: admin/settings/settings-payment-gateways.php:29 -#: admin/settings/settings-shipping-methods.php:31 -msgid "Status" -msgstr "Stav" - -#: admin/post-types/shop_order.php:44 -msgid "Order" -msgstr "Objednávka" - -#: admin/post-types/shop_order.php:45 -msgid "Billing" -msgstr "Fakturácia" - -#: admin/post-types/shop_order.php:46 -#: admin/post-types/writepanels/writepanel-order_data.php:539 -#: admin/post-types/writepanels/writepanel-product_data.php:81 -#: admin/settings/settings-tax-rates.php:52 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-content.php:49 -#: admin/woocommerce-admin-settings.php:187 -msgid "Shipping" -msgstr "Doprava" - -#: admin/post-types/shop_order.php:47 -msgid "Order Total" -msgstr "Cena spolu" - -#: admin/post-types/shop_order.php:48 -#: admin/post-types/writepanels/writepanels-init.php:71 -msgid "Order Notes" -msgstr "Poznámky k objednávke" - -#: admin/post-types/shop_order.php:49 -msgid "Customer Notes" -msgstr "Poznámka od zákazníka" - -#: admin/post-types/shop_order.php:51 -#: admin/post-types/writepanels/writepanel-order_data.php:386 -#: admin/post-types/writepanels/writepanel-order_data.php:433 -msgid "Actions" -msgstr "Akcia objednávky" - -#: admin/post-types/shop_order.php:95 -#: admin/post-types/writepanels/writepanel-order_data.php:93 -msgid "Guest" -msgstr "Neregistrovaný" - -#: admin/post-types/shop_order.php:98 -msgid "Order %s" -msgstr "Objednávka %s" - -#: admin/post-types/shop_order.php:98 -msgid "made by" -msgstr "od" - -#: admin/post-types/shop_order.php:101 -msgid "Email:" -msgstr "E-mail:" - -#: admin/post-types/shop_order.php:104 -msgid "Tel:" -msgstr "Tel:" - -#: admin/post-types/shop_order.php:114 admin/post-types/shop_order.php:123 -msgid "Via" -msgstr "cez" - -#: admin/post-types/shop_order.php:131 -msgid "Unpublished" -msgstr "Nevydané" - -#: admin/post-types/shop_order.php:133 -msgid "Y/m/d g:i:s A" -msgstr "d. m. y g:i:s A" - -#: admin/post-types/shop_order.php:139 -msgid "%s ago" -msgstr "pred %s" - -#: admin/post-types/shop_order.php:141 -msgid "Y/m/d" -msgstr "d. m. y" - -#: admin/post-types/shop_order.php:158 -#: admin/woocommerce-admin-dashboard.php:176 -msgid "Processing" -msgstr "Spracováva sa" - -#: admin/post-types/shop_order.php:165 -msgid "Complete" -msgstr "Dokončiť" - -#: admin/post-types/shop_order.php:282 -msgid "Show all statuses" -msgstr "Zobraziť všetky stavy" - -#: admin/post-types/shop_order.php:301 admin/post-types/shop_order.php:326 -msgid "Show all customers" -msgstr "Zobraziť všetkých zákazníkov" - -#: admin/post-types/writepanels/order-download-permission-html.php:6 -msgid "Revoke Access" -msgstr "Odvolať prístup" - -#: admin/post-types/writepanels/order-download-permission-html.php:7 -#: admin/post-types/writepanels/variation-admin-html.php:7 -#: admin/post-types/writepanels/writepanel-product_data.php:369 -#: admin/post-types/writepanels/writepanel-product_data.php:463 -#: admin/woocommerce-admin-init.php:439 -msgid "Click to toggle" -msgstr "Kliknúť pre prepnutie" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -msgid "File %d: %s" -msgstr "Súbor %d: %s" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "Stiahnuté %s raz" -msgstr[1] "Stiahnuté %s krát" -msgstr[2] "Stiahnuté %s krát" - -#: admin/post-types/writepanels/order-download-permission-html.php:16 -msgid "Downloads Remaining" -msgstr "Zostáva stiahnutí" - -#: admin/post-types/writepanels/order-download-permission-html.php:19 -#: admin/post-types/writepanels/variation-admin-html.php:149 -#: admin/post-types/writepanels/variation-admin-html.php:157 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Unlimited" -msgstr "Neobmedzene" - -#: admin/post-types/writepanels/order-download-permission-html.php:22 -msgid "Access Expires" -msgstr "Prístup vyprší" - -#: admin/post-types/writepanels/order-download-permission-html.php:23 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Never" -msgstr "Nikdy" - -#: admin/post-types/writepanels/order-fee-html.php:10 -msgid "Fee Name" -msgstr "Názov poplatku" - -#: admin/post-types/writepanels/order-fee-html.php:17 -#: admin/post-types/writepanels/order-item-html.php:89 -msgid "Tax class" -msgstr "Sadzba dane" - -#: admin/post-types/writepanels/order-fee-html.php:19 -#: admin/post-types/writepanels/order-tax-html.php:8 -#: admin/post-types/writepanels/writepanel-order_data.php:561 -#: admin/post-types/writepanels/writepanel-order_data.php:666 -#: admin/woocommerce-admin-reports.php:1658 -#: admin/woocommerce-admin-reports.php:2671 -#: admin/woocommerce-admin-reports.php:2680 -#: admin/woocommerce-admin-users.php:90 admin/woocommerce-admin-users.php:112 -msgid "N/A" -msgstr "-" - -#: admin/post-types/writepanels/order-fee-html.php:20 -#: admin/post-types/writepanels/writepanel-product_data.php:179 -msgid "Taxable" -msgstr "Zdaniteľný" - -#: admin/post-types/writepanels/order-fee-html.php:25 -#: admin/post-types/writepanels/order-item-html.php:96 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:54 -#: admin/post-types/writepanels/writepanel-product_data.php:186 -#: admin/settings/settings-init.php:972 -#: admin/settings/settings-tax-rates.php:29 -#: admin/woocommerce-admin-settings.php:228 -msgid "Standard" -msgstr "Štandardné" - -#: admin/post-types/writepanels/order-fee-html.php:43 -#: admin/post-types/writepanels/order-item-html.php:115 -#: admin/woocommerce-admin-reports.php:1562 -#: admin/woocommerce-admin-reports.php:1615 -#: admin/woocommerce-admin-reports.php:2386 -#: admin/woocommerce-admin-reports.php:2555 -#: admin/woocommerce-admin-reports.php:2633 -msgid "Total" -msgstr "Cena spolu" - -#: admin/post-types/writepanels/order-item-html.php:10 -msgid "Product ID:" -msgstr "Produkt ID:" - -#: admin/post-types/writepanels/order-item-html.php:13 -msgid "Variation ID:" -msgstr "Číslo ID variantu:" - -#: admin/post-types/writepanels/order-item-html.php:16 -msgid "Product SKU:" -msgstr "Katalógové číslo produktu:" - -#: admin/post-types/writepanels/order-item-html.php:44 -msgid "Add meta" -msgstr "Pridať meta" - -#: admin/post-types/writepanels/order-item-html.php:117 -msgid "Subtotal" -msgstr "Medzisúčet" - -#: admin/post-types/writepanels/order-tax-html.php:6 -msgid "Tax Rate:" -msgstr "Sadzba dane:" - -#: admin/post-types/writepanels/order-tax-html.php:16 -#: admin/post-types/writepanels/writepanel-order_data.php:630 -msgid "Sales Tax:" -msgstr "Dane z predaja:" - -#: admin/post-types/writepanels/order-tax-html.php:20 -#: admin/post-types/writepanels/writepanel-order_data.php:638 -msgid "Shipping Tax:" -msgstr "Prepravná daň:" - -#: admin/post-types/writepanels/variation-admin-html.php:6 -#: admin/post-types/writepanels/writepanel-product_data.php:368 -#: admin/post-types/writepanels/writepanel-product_data.php:462 -#: admin/woocommerce-admin-init.php:438 -msgid "Remove" -msgstr "Odstrániť" - -#: admin/post-types/writepanels/variation-admin-html.php:20 -msgid "Any" -msgstr "Všetky" - -#: admin/post-types/writepanels/variation-admin-html.php:52 -msgid "Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "Zadajte katalógové číslo produktu tohto variantu alebo ho nechajte prázdne a použije sa katalógové číslo nadradeného produktu." - -#: admin/post-types/writepanels/variation-admin-html.php:63 -msgid "Stock Qty:" -msgstr "Na sklade:" - -#: admin/post-types/writepanels/variation-admin-html.php:63 -msgid "Enter a quantity to enable stock management at variation level, or leave blank to use the parent product's options." -msgstr "Zadajte počet pre zapnutie spravovania skladu pre variantu, alebo nechajte prázdne pre použite nastavení nadradeného produktu." - -#: admin/post-types/writepanels/variation-admin-html.php:72 -msgid "Regular Price:" -msgstr "Normálna cena:" - -#: admin/post-types/writepanels/variation-admin-html.php:73 -msgid "Variation price (required)" -msgstr "Cena variantu(vyžadovaná)" - -#: admin/post-types/writepanels/variation-admin-html.php:76 -msgid "Sale Price:" -msgstr "Cena po zľave:" - -#: admin/post-types/writepanels/variation-admin-html.php:76 -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Schedule" -msgstr "Plán" - -#: admin/post-types/writepanels/variation-admin-html.php:76 -msgid "Cancel schedule" -msgstr "Zrušiť plán" - -#: admin/post-types/writepanels/variation-admin-html.php:83 -msgid "Sale start date:" -msgstr "Dátum začiatku výpredaja:" - -#: admin/post-types/writepanels/variation-admin-html.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:136 -msgctxt "placeholder" -msgid "From…" -msgstr "Od…" - -#: admin/post-types/writepanels/variation-admin-html.php:87 -msgid "Sale end date:" -msgstr "Dátum konca výpredaja:" - -#: admin/post-types/writepanels/variation-admin-html.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:137 -msgctxt "placeholder" -msgid "To…" -msgstr "Do…" - -#: admin/post-types/writepanels/variation-admin-html.php:96 -msgid "Enter a weight for this variation or leave blank to use the parent product weight." -msgstr "Zadajte hmotnosť tohto variantu alebo ju nechajte nevyplnenú a použije sa hmotnosť nadradeného produktu." - -#: admin/post-types/writepanels/variation-admin-html.php:104 -msgid "Dimensions (L×W×H)" -msgstr "Rozmery (dĺžka × šírka × výška)" - -#: admin/post-types/writepanels/variation-admin-html.php:115 -msgid "Shipping class:" -msgstr "Prepravná trieda:" - -#: admin/post-types/writepanels/variation-admin-html.php:119 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:53 -msgid "Same as parent" -msgstr "Rovnaká ako nadradená" - -#: admin/post-types/writepanels/variation-admin-html.php:130 -msgid "Tax class:" -msgstr "Sadzba dane:" - -#: admin/post-types/writepanels/variation-admin-html.php:141 -msgid "File paths:" -msgstr "Cesty k súboru:" - -#: admin/post-types/writepanels/variation-admin-html.php:141 -msgid "Enter one or more File Paths, one per line, to make this variation a downloadable product, or leave blank." -msgstr "Zadajte jednu alebo viac ciest k súboru, jednu na riadok, pre urobenie variantu sťahovateľným produktom, alebo nechajte prázdne" - -#: admin/post-types/writepanels/variation-admin-html.php:142 -#: admin/post-types/writepanels/writepanel-product_data.php:153 -msgid "File paths/URLs, one per line" -msgstr "Cesty k súborom/URL adresy, jedna na riadok" - -#: admin/post-types/writepanels/variation-admin-html.php:143 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Choose a file" -msgstr "Vybrať súbor" - -#: admin/post-types/writepanels/variation-admin-html.php:143 -msgid "Upload" -msgstr "Nahrať" - -#: admin/post-types/writepanels/variation-admin-html.php:143 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Insert file URL" -msgstr "Vložiť URL adresu" - -#: admin/post-types/writepanels/variation-admin-html.php:148 -msgid "Download Limit:" -msgstr "Limit na sťahovanie:" - -#: admin/post-types/writepanels/variation-admin-html.php:148 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Leave blank for unlimited re-downloads." -msgstr "Nechajte prázdne pre neobmedzené sťahovanie." - -#: admin/post-types/writepanels/variation-admin-html.php:156 -msgid "Download Expiry:" -msgstr "Sťahovanie vyprší" - -#: admin/post-types/writepanels/variation-admin-html.php:156 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Enter the number of days before a download link expires, or leave blank." -msgstr "Zadajte počet dní po ktorých sťahovanie vyprší, alebo nechajte prázdne." - -#: admin/post-types/writepanels/variation-admin-html.php:170 -msgid "Enabled" -msgstr "Povolené" - -#: admin/post-types/writepanels/variation-admin-html.php:172 -msgid "Enable this option if access is given to a downloadable file upon purchase of a product" -msgstr "Povoľte túto možnosť ak chcete pridať súbor na stiahnutie dostupný po nákupe produktu" - -#: admin/post-types/writepanels/variation-admin-html.php:174 -msgid "Enable this option if a product is not shipped or there is no shipping cost" -msgstr "Povoľte túto možnosť ak produkt nemôže byť dodaný alebo je jeho dodanie zdarma." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Coupon description" -msgstr "Popis kupónu" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Optionally enter a description for this coupon for your reference." -msgstr "Voliteľne zadajte popis kupónu pre vašu referenciu." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:42 -msgid "Discount type" -msgstr "Typ zľavy" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Value of the coupon." -msgstr "Hodnota kupónu" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "Enable free shipping" -msgstr "Povoliť dopravu zdarma" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "Check this box if the coupon grants free shipping. The free shipping method must be enabled with the \"must use coupon\" setting checked." -msgstr "Zaškrtnite toto pole ak kupón obsahuje prepravu zdarma. Preprava zdarma a nastavenie musíte použiť kupón musia byť povolené." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "Individual use" -msgstr "Individuálne použitie" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "Check this box if the coupon cannot be used in conjunction with other coupons." -msgstr "Zaškrtnite toto pole ak chcete aby kupón nebolo možné použiť s inými kupónmi." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "Apply before tax" -msgstr "Použíť pred zdanením" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "Check this box if the coupon should be applied before calculating cart tax." -msgstr "Zaškrtnite toto pole ak chcete aby kupón bol použitý pred vypočítaním dane košíka." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "Exclude sale items" -msgstr "Vyňať položky v zľave" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "Check this box if the coupon should not apply to items on sale. Per-item coupons will only work if the item is not on sale. Per-cart coupons will only work if there are no sale items in the cart." -msgstr "Zaškrtnite toto pole ak nechcete aby kupón bol použitý na položky v zľave. Kupón na položku bude fungovať iba na konkrétnu položku. Kupón na košík bude fungovať iba ak v košíku nebude žiadna položka v zľave." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "Minimum amount" -msgstr "Minimálna suma" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "No minimum" -msgstr "Bez minimálnej sumy" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "Toto pole vám dovoľuje nastaviť minimálnu sumu pre použitie kupónu." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:74 -#: admin/woocommerce-admin-taxonomies.php:28 -#: admin/woocommerce-admin-taxonomies.php:122 -msgid "Products" -msgstr "Produkty" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:75 -#: admin/post-types/writepanels/writepanel-order_data.php:400 -#: admin/post-types/writepanels/writepanel-product_data.php:523 -#: admin/post-types/writepanels/writepanel-product_data.php:540 -#: admin/woocommerce-admin-reports.php:1245 -msgid "Search for a product…" -msgstr "Hľadať produkt…" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:89 -msgid "Products which need to be in the cart to use this coupon or, for \"Product Discounts\", which products are discounted." -msgstr "Produkty ktoré sa musia nachádzať v košíku pre použitie kupónu, alebo pre \"Zľavy produktov\" ktorých produkty sú zlacnené." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:94 -msgid "Exclude products" -msgstr "Vyňať produkty" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:95 -msgid "Search for a product…" -msgstr "Hľadať produkt..." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:109 -msgid "Products which must not be in the cart to use this coupon or, for \"Product Discounts\", which products are not discounted." -msgstr "Produkty ktoré sa nesmú nachádzať v košíku pre použitie kupónu, alebo pre \"Zľavy produktov\" ktorých produkty nie sú zlacnené." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:116 -msgid "Product categories" -msgstr "Kategórie produktu" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:117 -msgid "Any category" -msgstr "Ľubovoľná kategória" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:125 -msgid "A product must be in this category for the coupon to remain valid or, for \"Product Discounts\", products in these categories will be discounted." -msgstr "Produkt musí byť v tejto kategórii aby kupón zostal platný, alebo pre \"Zľavy produktov\" ktorých produkty v týchto kategóriách budú zlacnené." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:130 -msgid "Exclude categories" -msgstr "Vyňať kategórie" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:131 -msgid "No categories" -msgstr "Žiadne kategórie" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:139 -msgid "Product must not be in this category for the coupon to remain valid or, for \"Product Discounts\", products in these categories will not be discounted." -msgstr "Produkt musí byť v kategórii aby kupón zostal platný, alebo produkty z kategórie\"Zľavnené produkty\" nesmú byť zľavnené." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "Email restrictions" -msgstr "Obmedzenia emailu" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "No restrictions" -msgstr "Žiadne obmedzenia" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "List of emails to check against the customer's billing email when an order is placed." -msgstr "Zoznam emailov na kontrolu emailu zákazníka pri zadávaní objednávky." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "Usage limit" -msgstr "Limit využitia" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "Neobmedzené použitie" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "How many times this coupon can be used before it is void." -msgstr "Koľko krát môže byť kupón použitý než vyprší jeho platnosť." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgctxt "placeholder" -msgid "Never expire" -msgstr "Nikdy nevyprší" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "The date this coupon will expire, YYYY-MM-DD." -msgstr "Kupón vyprší dňa DD-MM-YYYY." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:195 -msgid "Coupon code already exists - customers will use the latest coupon with this code." -msgstr "Kupón už existuje - zákazníci budú využívať poslednú verziu tohto kupónu." - -#: admin/post-types/writepanels/writepanel-order_data.php:59 -msgid "Order Details" -msgstr "Podrobnosti o objednávke" - -#: admin/post-types/writepanels/writepanel-order_data.php:62 -msgid "Order number" -msgstr "Číslo objednávky" - -#: admin/post-types/writepanels/writepanel-order_data.php:67 -msgid "Customer IP:" -msgstr "IP zákazníka:" - -#: admin/post-types/writepanels/writepanel-order_data.php:74 -msgid "General Details" -msgstr "Hlavné detaily" - -#: admin/post-types/writepanels/writepanel-order_data.php:76 -msgid "Order status:" -msgstr "Stav objednávky:" - -#: admin/post-types/writepanels/writepanel-order_data.php:86 -msgid "Order Date:" -msgstr "Dátum objednávky" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -msgid "h" -msgstr "h" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#: admin/settings/settings-init.php:567 -msgid "m" -msgstr "m" - -#: admin/post-types/writepanels/writepanel-order_data.php:91 -msgid "Customer:" -msgstr "Zákazník:" - -#: admin/post-types/writepanels/writepanel-order_data.php:131 -msgid "Customer Note:" -msgstr "Poznámka zákazníka:" - -#: admin/post-types/writepanels/writepanel-order_data.php:132 -msgid "Customer's notes about the order" -msgstr "Poznámka zákazníka k objednávke:" - -#: admin/post-types/writepanels/writepanel-order_data.php:140 -msgid "Billing Details" -msgstr "Fakturačné údaje" - -#: admin/post-types/writepanels/writepanel-order_data.php:144 -#: admin/post-types/writepanels/writepanel-order_data.php:234 -msgid "First Name" -msgstr "Krstné meno" - -#: admin/post-types/writepanels/writepanel-order_data.php:148 -#: admin/post-types/writepanels/writepanel-order_data.php:238 -msgid "Last Name" -msgstr "Priezvisko" - -#: admin/post-types/writepanels/writepanel-order_data.php:152 -#: admin/post-types/writepanels/writepanel-order_data.php:242 -#: admin/woocommerce-admin-users.php:155 admin/woocommerce-admin-users.php:204 -msgid "Company" -msgstr "Spoločnosť" - -#: admin/post-types/writepanels/writepanel-order_data.php:156 -#: admin/post-types/writepanels/writepanel-order_data.php:246 -#: admin/woocommerce-admin-users.php:159 admin/woocommerce-admin-users.php:208 -msgid "Address 1" -msgstr "Adresa 1" - -#: admin/post-types/writepanels/writepanel-order_data.php:160 -#: admin/post-types/writepanels/writepanel-order_data.php:250 -#: admin/woocommerce-admin-users.php:163 admin/woocommerce-admin-users.php:212 -msgid "Address 2" -msgstr "Adresa 2" - -#: admin/post-types/writepanels/writepanel-order_data.php:164 -#: admin/post-types/writepanels/writepanel-order_data.php:254 -#: admin/settings/settings-tax-rates.php:42 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-users.php:167 admin/woocommerce-admin-users.php:216 -msgid "City" -msgstr "Mesto" - -#: admin/post-types/writepanels/writepanel-order_data.php:168 -#: admin/post-types/writepanels/writepanel-order_data.php:258 -#: admin/woocommerce-admin-users.php:171 admin/woocommerce-admin-users.php:220 -msgid "Postcode" -msgstr "PSČ" - -#: admin/post-types/writepanels/writepanel-order_data.php:172 -#: admin/post-types/writepanels/writepanel-order_data.php:262 -#: admin/woocommerce-admin-users.php:179 admin/woocommerce-admin-users.php:228 -msgid "Country" -msgstr "Krajina" - -#: admin/post-types/writepanels/writepanel-order_data.php:175 -#: admin/post-types/writepanels/writepanel-order_data.php:265 -msgid "Select a country…" -msgstr "Vyberte krajinu…" - -#: admin/post-types/writepanels/writepanel-order_data.php:178 -#: admin/post-types/writepanels/writepanel-order_data.php:268 -#: admin/woocommerce-admin-users.php:175 admin/woocommerce-admin-users.php:224 -msgid "State/County" -msgstr "Štát / kraj" - -#: admin/post-types/writepanels/writepanel-order_data.php:182 -#: admin/woocommerce-admin-users.php:187 -msgid "Email" -msgstr "E-mail" - -#: admin/post-types/writepanels/writepanel-order_data.php:185 -msgid "Phone" -msgstr "Telefón" - -#: admin/post-types/writepanels/writepanel-order_data.php:193 -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#: admin/post-types/writepanels/writepanel-order_data.php:277 -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "Address" -msgstr "Adresa" - -#: admin/post-types/writepanels/writepanel-order_data.php:195 -msgid "No billing address set." -msgstr "Nebola nastavená žiadna fakturačná adresa." - -#: admin/post-types/writepanels/writepanel-order_data.php:208 -msgid "Load billing address" -msgstr "Nahrať fakturačnú adresu" - -#: admin/post-types/writepanels/writepanel-order_data.php:230 -msgid "Shipping Details" -msgstr "Údaje pre doručenie" - -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "No shipping address set." -msgstr "Nebola nastavená žiadna adresa doručenia." - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Load shipping address" -msgstr "Nahrať adresu doručenia" - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Copy from billing" -msgstr "Skopírovať z fakturačnej" - -#: admin/post-types/writepanels/writepanel-order_data.php:339 -msgid "Item" -msgstr "položka" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#: admin/post-types/writepanels/writepanel-product_data.php:191 -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Class" -msgstr "Sadzba dane" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -msgid "Tax class for the line item" -msgstr "Sadzba dane pre položku v riadku" - -#: admin/post-types/writepanels/writepanel-order_data.php:347 -msgid "Qty" -msgstr "Počet ks" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -msgid "Cost" -msgstr "Náklady" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -msgid "Line subtotals are before pre-tax discounts, totals are after." -msgstr "Medzisúčet v riadku je bez zľavy pred daňou, celkový súčet je po zľave " - -#: admin/post-types/writepanels/writepanel-order_data.php:352 -#: admin/settings/settings-tax-rates.php:387 -#: admin/settings/settings-tax-rates.php:475 -#: admin/woocommerce-admin-content.php:48 -#: admin/woocommerce-admin-settings.php:186 -msgid "Tax" -msgstr "DPH" - -#: admin/post-types/writepanels/writepanel-order_data.php:388 -msgid "Delete Lines" -msgstr "Vymazať riadky" - -#: admin/post-types/writepanels/writepanel-order_data.php:390 -msgid "Stock Actions" -msgstr "Funkcie skladu" - -#: admin/post-types/writepanels/writepanel-order_data.php:391 -msgid "Reduce Line Stock" -msgstr "Znížiť sklad riadku" - -#: admin/post-types/writepanels/writepanel-order_data.php:392 -msgid "Increase Line Stock" -msgstr "Zvýšiť sklad riadku" - -#: admin/post-types/writepanels/writepanel-order_data.php:396 -#: admin/post-types/writepanels/writepanel-order_data.php:456 -msgid "Apply" -msgstr "Použiť" - -#: admin/post-types/writepanels/writepanel-order_data.php:402 -msgid "Add item(s)" -msgstr "Pridať položku/položky" - -#: admin/post-types/writepanels/writepanel-order_data.php:403 -msgid "Add fee" -msgstr "Pridať poplatok" - -#: admin/post-types/writepanels/writepanel-order_data.php:434 -msgid "Resend order emails" -msgstr "Znova odoslať emaily objednávky" - -#: admin/post-types/writepanels/writepanel-order_data.php:465 -msgid "Move to Trash" -msgstr "Presunúť do koša" - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save Order" -msgstr "Uložiť objednávku" - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save/update the order" -msgstr "Uložiť / aktualizovať objednávku" - -#: admin/post-types/writepanels/writepanel-order_data.php:498 -msgid "Discounts" -msgstr "zľavy" - -#: admin/post-types/writepanels/writepanel-order_data.php:502 -msgid "Cart Discount:" -msgstr "Zľava:" - -#: admin/post-types/writepanels/writepanel-order_data.php:502 -msgid "Discounts before tax - calculated by comparing subtotals to totals." -msgstr "Zľavy pred daňou - rátané porovnávaním medzisúčtu a súčtu." - -#: admin/post-types/writepanels/writepanel-order_data.php:510 -msgid "Order Discount:" -msgstr "Zľava k objednávke:" - -#: admin/post-types/writepanels/writepanel-order_data.php:510 -msgid "Discounts after tax - user defined." -msgstr "Zľavy po dani - určené užívateľom." - -#: admin/post-types/writepanels/writepanel-order_data.php:543 -msgid "Label:" -msgstr "Označenie" - -#: admin/post-types/writepanels/writepanel-order_data.php:544 -msgid "The shipping title the customer sees" -msgstr "Nadpis prepravy ktorý vidí zákazník" - -#: admin/post-types/writepanels/writepanel-order_data.php:551 -msgid "Cost:" -msgstr "Cena:" - -#: admin/post-types/writepanels/writepanel-order_data.php:552 -msgid "(ex. tax)" -msgstr "(bez DPH)" - -#: admin/post-types/writepanels/writepanel-order_data.php:559 -msgid "Method:" -msgstr "Metóda:" - -#: admin/post-types/writepanels/writepanel-order_data.php:581 -#: admin/post-types/writepanels/writepanel-order_data.php:583 -#: admin/post-types/writepanels/writepanel-order_data.php:682 -#: admin/post-types/writepanels/writepanel-order_data.php:684 -msgid "Other" -msgstr "Iné" - -#: admin/post-types/writepanels/writepanel-order_data.php:597 -msgid "Tax Rows" -msgstr "Riadky dane" - -#: admin/post-types/writepanels/writepanel-order_data.php:622 -msgid "+ Add tax row" -msgstr "+ Pridať daňový priadok" - -#: admin/post-types/writepanels/writepanel-order_data.php:622 -msgid "These rows contain taxes for this order. This allows you to display multiple or compound taxes rather than a single total." -msgstr "Tieto riadky obsahujú dane pre túto objednávku. Toto uprednostní zobrazenie viacerých alebo zložených daní radšej ako iba celkový súčet." - -#: admin/post-types/writepanels/writepanel-order_data.php:626 -msgid "Tax Totals" -msgstr "Daň celkom" - -#: admin/post-types/writepanels/writepanel-order_data.php:630 -msgid "Total tax for line items + fees." -msgstr "Daň celkom pre položky v riadku + poplatky." - -#: admin/post-types/writepanels/writepanel-order_data.php:652 -#: admin/post-types/writepanels/writepanels-init.php:70 -msgid "Order Totals" -msgstr "Celková čiastka objednávky" - -#: admin/post-types/writepanels/writepanel-order_data.php:656 -msgid "Order Total:" -msgstr "Cena spolu:" - -#: admin/post-types/writepanels/writepanel-order_data.php:664 -msgid "Payment Method:" -msgstr "Spôsob platby:" - -#: admin/post-types/writepanels/writepanel-order_data.php:695 -msgid "Calc taxes" -msgstr "Vyrátať dane" - -#: admin/post-types/writepanels/writepanel-order_data.php:697 -msgid "Calc totals" -msgstr "Vyrátať celkom" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:57 -msgid "Choose a downloadable product…" -msgstr "Vyberte produkt na stiahnutie…" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:87 -msgid "Grant Access" -msgstr "Udeliť prístup" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:125 -msgid "Could not grant access - the user may already have permission for this file or billing email is not set. Ensure the billing email is set, and the order has been saved." -msgstr "Nemožno prideliť prístup - užívateľ už možno má prístup k súboru alebo nenastavil platobný email. Uistite sa, že zadal platobný email a objednávka bola uložená." - -#: admin/post-types/writepanels/writepanel-order_downloads.php:148 -msgid "Are you sure you want to revoke access to this download?" -msgstr "Ste si istý, že chcete odvolať prístup k tomuto súboru na stiahnutie?" - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -msgid "added %s ago" -msgstr "pridané pred %s" - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -msgid "Delete note" -msgstr "Vymazať poznámku" - -#: admin/post-types/writepanels/writepanel-order_notes.php:50 -msgid "There are no notes for this order yet." -msgstr "K tejto objednávke nie sú k dispozícii zatiaľ žiadne poznámky." - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "Add note" -msgstr "Pridať poznámku" - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "Add a note for your reference, or add a customer note (the user will be notified)." -msgstr "Napíšte si vlastnú poznámku, alebo pridajte poznámku zákazníka, ktorú uvidí vo svojej objednávke a na stránke, kde ju sleduje." - -#: admin/post-types/writepanels/writepanel-order_notes.php:62 -msgid "Customer note" -msgstr "Poznámky zákazníka" - -#: admin/post-types/writepanels/writepanel-order_notes.php:63 -msgid "Private note" -msgstr "Súkromné poznámky" - -#: admin/post-types/writepanels/writepanel-order_notes.php:65 -#: admin/post-types/writepanels/writepanel-product_data.php:501 -msgid "Add" -msgstr "Pridať" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations for variable products are defined here." -msgstr "Variácie variabilných tovarov sú definované tu." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations" -msgstr "Varianty" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:65 -msgid "Before adding variations, add and save some attributes on the Attributes tab." -msgstr "Skôr než pridáte varianty, pridajte a uložte nejaké vlastnosti v záložkeVlastnosti " - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:67 -msgid "Learn more" -msgstr "Zistite viac" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Close all" -msgstr "Zavrieť všetko" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Expand all" -msgstr "Rozbaliť všetko" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:75 -msgid "Bulk edit:" -msgstr "Hromadné úpravy:" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:77 -msgid "Toggle "Enabled"" -msgstr "Zapnúť "Povolené"" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:78 -msgid "Toggle "Downloadable"" -msgstr "Prepnúť "Stiahnuteľné"" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:79 -msgid "Toggle "Virtual"" -msgstr "Prepnúť "Virtuálne"" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:80 -msgid "Delete all variations" -msgstr "Vymazať všetky variácie" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:81 -msgid "Prices" -msgstr "Ceny" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:82 -msgid "Sale prices" -msgstr "Ceny po zľave" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:88 -msgid "File Path" -msgstr "Cesta k súboru" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:89 -msgid "Download limit" -msgstr "Limit sťahovania" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:90 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Download Expiry" -msgstr "Sťahovanie expiruje" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:93 -msgid "Go" -msgstr "Ísť" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:193 -msgid "Add Variation" -msgstr "Pridať variant" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:195 -msgid "Link all variations" -msgstr "Prepojiť všetky varianty" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:197 -msgid "Default selections:" -msgstr "Základné výbery:" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:210 -msgid "No default" -msgstr "Bez predvoľby" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:299 -msgid "Are you sure you want to link all variations? This will create a new variation for each and every possible combination of variation attributes (max 50 per run)." -msgstr "Ste si istý, že chcete prepojiť všetky varianty? Tým vytvoríte nový variant pre každú možnú kombináciu vlastností variantov (maximálne 50 naraz)." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:316 -msgid "variation added" -msgstr "variant pridaný" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:318 -msgid "variations added" -msgstr "varianty pridané" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:320 -msgid "No variations added" -msgstr "Neboli pridané žiadne varianty" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:343 -msgid "Are you sure you want to remove this variation?" -msgstr "Ste si istý, že chcete odstrániť tento variant?" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:399 -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "Ste si istý, že chcete odstrániť všetky varianty? Tento krok nie je možné vrátiť späť." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:402 -msgid "Last warning, are you sure?" -msgstr "Posledné varovanie! Ste si naozaj istý?" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:439 -msgid "Enter a value" -msgstr "Zadajte hodnotu" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:517 -#: admin/woocommerce-admin-taxonomies.php:62 -#: admin/woocommerce-admin-taxonomies.php:154 -msgid "Choose an image" -msgstr "Vyberte obrázok" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:519 -msgid "Set variation image" -msgstr "Nastavte obrázok variácie" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:563 -msgid "Variable product" -msgstr "Variabilný produkt" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:629 -msgid "Variation #%s of %s" -msgstr "Variácia #%s z %s" - -#: admin/post-types/writepanels/writepanel-product_data.php:43 -msgid "Product Type" -msgstr "Typ produktu" - -#: admin/post-types/writepanels/writepanel-product_data.php:53 -msgid "Virtual products are intangible and aren't shipped." -msgstr "Virtuálne produkty sú nehmotné a nemôžu byť zaslané." - -#: admin/post-types/writepanels/writepanel-product_data.php:59 -msgid "Downloadable products give access to a file upon purchase." -msgstr "Prístup k stiahnuteľným produktom dostanete po zaplatení." - -#: admin/post-types/writepanels/writepanel-product_data.php:77 -#: admin/woocommerce-admin-content.php:44 -#: admin/woocommerce-admin-settings.php:182 -msgid "General" -msgstr "Všeobecné" - -#: admin/post-types/writepanels/writepanel-product_data.php:79 -#: admin/woocommerce-admin-content.php:47 -#: admin/woocommerce-admin-settings.php:185 -msgid "Inventory" -msgstr "Sklad" - -#: admin/post-types/writepanels/writepanel-product_data.php:83 -msgid "Linked Products" -msgstr "Spojené produkty" - -#: admin/post-types/writepanels/writepanel-product_data.php:85 -#: admin/woocommerce-admin-attributes.php:299 -#: admin/woocommerce-admin-init.php:66 -msgid "Attributes" -msgstr "Vlastnosti" - -#: admin/post-types/writepanels/writepanel-product_data.php:87 -msgid "Advanced" -msgstr "Pokročilé" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "Stock Keeping Unit" -msgstr "Jednotka držania skladu" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "SKU refers to a Stock-keeping unit, a unique identifier for each distinct product and service that can be purchased." -msgstr "SKU predstavuje Jednotku držania skladu, unikátny identifikátor ktorý rozlišuje každý ponúkaný produkt alebo službu." - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Product URL" -msgstr "URL adresa produktu:" - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Enter the external URL to the product." -msgstr "Zadajte externú URL adresu produktu." - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "Button text" -msgstr "Text tlačítka" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgctxt "placeholder" -msgid "Buy product" -msgstr "Kúpiť" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "This text will be shown on the button linking to the external product." -msgstr "Text sa zobrazí na tlačidle odkazujúcom na externý produkt." - -#: admin/post-types/writepanels/writepanel-product_data.php:119 -msgid "Regular Price" -msgstr "Bežná cena" - -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Sale Price" -msgstr "Cena po zľave" - -#: admin/post-types/writepanels/writepanel-product_data.php:135 -msgid "Sale Price Dates" -msgstr "Platnosť ceny po zľave" - -#: admin/post-types/writepanels/writepanel-product_data.php:138 -#: admin/post-types/writepanels/writepanel-product_data.php:1082 -msgid "Cancel" -msgstr "Zrušiť" - -#: admin/post-types/writepanels/writepanel-product_data.php:152 -msgid "File paths (one per line)" -msgstr "Cesty k súboru (jedna na riadok)" - -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Download Limit" -msgstr "Limit sťahovania" - -#: admin/post-types/writepanels/writepanel-product_data.php:178 -msgid "Tax Status" -msgstr "Stav zdaniteľnosti" - -#: admin/post-types/writepanels/writepanel-product_data.php:180 -msgid "Shipping only" -msgstr "Poštovné len" - -#: admin/post-types/writepanels/writepanel-product_data.php:181 -msgid "None" -msgstr "Žiadny" - -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Enable stock management at product level" -msgstr "Povoliť manažment skladu na úrovni produktu." - -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "Stock quantity. If this is a variable product this value will be used to control stock for all variations, unless you define stock at variation level." -msgstr "Počet skladom. Ak je tento produkt variabilný, táto hodnota bude používaná pre kontrolu skladu všetkých varián, pokiaľ sklad nenastavíte na úrovni variácie." - -#: admin/post-types/writepanels/writepanel-product_data.php:230 -msgid "Stock status" -msgstr "Stav skladu" - -#: admin/post-types/writepanels/writepanel-product_data.php:233 -msgid "Controls whether or not the product is listed as \"in stock\" or \"out of stock\" on the frontend." -msgstr "Kontroluje ako produkt označený na stránke (skladom/nie je skladom)" - -#: admin/post-types/writepanels/writepanel-product_data.php:240 -msgid "Allow Backorders?" -msgstr "Povoliť nákup na objednávku? (Tovar nie je na sklade, musí sa objednať od dodávateľa)" - -#: admin/post-types/writepanels/writepanel-product_data.php:241 -msgid "Do not allow" -msgstr "Nepovoliť" - -#: admin/post-types/writepanels/writepanel-product_data.php:242 -msgid "Allow, but notify customer" -msgstr "Povoliť, ale informovať zákazníka" - -#: admin/post-types/writepanels/writepanel-product_data.php:243 -msgid "Allow" -msgstr "Povoliť" - -#: admin/post-types/writepanels/writepanel-product_data.php:244 -msgid "If managing stock, this controls whether or not backorders are allowed for this product and variations. If enabled, stock quantity can go below 0." -msgstr "Ak spravujete sklad, toto kontroluje nákup na objednávku od dodávateľa. Ak je povolené sklad môže byť nižší ako 0" - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "Sold Individually" -msgstr "Predávané individuálne" - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "Enable this to only allow one of this item to be bought in a single order" -msgstr "Povoľte toto ak má jedna objednávka obsahovať iba jednu túto položku" - -#: admin/post-types/writepanels/writepanel-product_data.php:273 -msgid "Weight in decimal form" -msgstr "Váha v desatinnom tvare" - -#: admin/post-types/writepanels/writepanel-product_data.php:284 -msgid "Dimensions" -msgstr "Rozmery" - -#: admin/post-types/writepanels/writepanel-product_data.php:290 -msgid "LxWxH in decimal form" -msgstr "DxŠxV v desatinnom tvare" - -#: admin/post-types/writepanels/writepanel-product_data.php:311 -msgid "No shipping class" -msgstr "Bez prepravnej triedy" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "Shipping class" -msgstr "Prepravné triedy" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "Shipping classes are used by certain shipping methods to group similar products." -msgstr "Prepravné triedy sa používajú pri metódach prepravy spájajúcich podobné produkty." - -#: admin/post-types/writepanels/writepanel-product_data.php:384 -#: admin/post-types/writepanels/writepanel-product_data.php:476 -#: admin/woocommerce-admin-init.php:440 -msgid "Value(s)" -msgstr "Hodnota(y)" - -#: admin/post-types/writepanels/writepanel-product_data.php:386 -msgid "Select terms" -msgstr "Vyberte požiadavky" - -#: admin/post-types/writepanels/writepanel-product_data.php:398 -msgid "Select all" -msgstr "Vybrať všetky" - -#: admin/post-types/writepanels/writepanel-product_data.php:398 -msgid "Select none" -msgstr "Nevybrať žiadny" - -#: admin/post-types/writepanels/writepanel-product_data.php:400 -msgid "Add new" -msgstr "Pridať novú" - -#: admin/post-types/writepanels/writepanel-product_data.php:413 -msgid "Pipe (|) separate terms" -msgstr "Zvislá čiara (|) oddeľuje výrazy" - -#: admin/post-types/writepanels/writepanel-product_data.php:427 -#: admin/post-types/writepanels/writepanel-product_data.php:482 -#: admin/woocommerce-admin-init.php:442 -msgid "Visible on the product page" -msgstr "Viditeľné na stránke produktu" - -#: admin/post-types/writepanels/writepanel-product_data.php:440 -#: admin/post-types/writepanels/writepanel-product_data.php:488 -#: admin/woocommerce-admin-init.php:443 -msgid "Used for variations" -msgstr "Používa sa pri variantoch" - -#: admin/post-types/writepanels/writepanel-product_data.php:477 -#: admin/woocommerce-admin-init.php:441 -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "Pridajte text alebo nejaké vlastnosti oddelené zvislou čiarou (|)." - -#: admin/post-types/writepanels/writepanel-product_data.php:503 -msgid "Custom product attribute" -msgstr "Užívateľom zadaná vlastnosť produktu" - -#: admin/post-types/writepanels/writepanel-product_data.php:515 -msgid "Save attributes" -msgstr "Uložiť vlastnosti" - -#: admin/post-types/writepanels/writepanel-product_data.php:522 -msgid "Up-Sells" -msgstr "Navýšenie predaja" - -#: admin/post-types/writepanels/writepanel-product_data.php:537 -msgid "Up-sells are products which you recommend instead of the currently viewed product, for example, products that are more profitable or better quality or more expensive." -msgstr "Navýšenie predaja označuje snahu predať drahšie riešenie zákazníkovho problému, napr. vyšší model výrobku či pokročilejšiu verziu služby" - -#: admin/post-types/writepanels/writepanel-product_data.php:539 -msgid "Cross-Sells" -msgstr "Doplnkový predaj" - -#: admin/post-types/writepanels/writepanel-product_data.php:554 -msgid "Cross-sells are products which you promote in the cart, based on the current product." -msgstr "Doplnkovým predajom sa označujú aktivity, ktorých účelom je navýšiť celkovú objednávku zákazníka odporúčaním súvisiaceho tovaru. Za cross-selling teda napríklad môže byť považované správanie záhradníka, ktorý vám k živým kvetom ponúkne i hnojivo." - -#: admin/post-types/writepanels/writepanel-product_data.php:564 -msgid "Choose a grouped product…" -msgstr "Vyberte seskupené produkty…" - -#: admin/post-types/writepanels/writepanel-product_data.php:590 -msgid "Grouping" -msgstr "Zoskupovanie" - -#: admin/post-types/writepanels/writepanel-product_data.php:590 -msgid "Set this option to make this product part of a grouped product." -msgstr "Nastavte túto možnosť ak si želáte spraviť tento produkt časťou spojeného produktu." - -#: admin/post-types/writepanels/writepanel-product_data.php:610 -msgid "Purchase Note" -msgstr "Poznámka k objednávke" - -#: admin/post-types/writepanels/writepanel-product_data.php:610 -msgid "Enter an optional note to send the customer after purchase." -msgstr "Zadajte po nákupe poznámku pre zákazníka.(nepovinné)" - -#: admin/post-types/writepanels/writepanel-product_data.php:617 -msgid "Menu order" -msgstr "Menu objednávky" - -#: admin/post-types/writepanels/writepanel-product_data.php:617 -msgid "Custom ordering position." -msgstr "Vlastná pozícia objednávania" - -#: admin/post-types/writepanels/writepanel-product_data.php:625 -msgid "Enable reviews" -msgstr "Povoliť recenzie" - -#: admin/post-types/writepanels/writepanel-product_data.php:714 -msgid "Product SKU must be unique." -msgstr "Katalogóvé číslo produktu musí byť unikátne." - -#: admin/post-types/writepanels/writepanel-product_data.php:1046 -msgid "Catalog/search" -msgstr "Katalóg/hľadať" - -#: admin/post-types/writepanels/writepanel-product_data.php:1053 -msgid "Catalog visibility:" -msgstr "Viditeľnosť katalógu:" - -#: admin/post-types/writepanels/writepanel-product_data.php:1069 -msgid "Define the loops this product should be visible in. The product will still be accessible directly." -msgstr "Definuje kruh v ktorom by mal byť produkt viditeľný. Produkt bude stále priamo dostupný." - -#: admin/post-types/writepanels/writepanel-product_data.php:1075 -msgid "Enable this option to feature this product." -msgstr "Povoliť túto možnosti pre odporúčanie tohto produktu" - -#: admin/post-types/writepanels/writepanel-product_data.php:1077 -msgid "Featured Product" -msgstr "Odporúčaný produkt" - -#: admin/post-types/writepanels/writepanel-product_data.php:1081 -msgid "OK" -msgstr "OK" - -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -msgid "Delete image" -msgstr "Vymazať obrázok" - -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -#: admin/woocommerce-admin-attributes.php:323 -msgid "Delete" -msgstr "Vymazať" - -#: admin/post-types/writepanels/writepanel-product_images.php:53 -msgid "Add product gallery images" -msgstr "Pridať obrázky galérie produktu" - -#: admin/post-types/writepanels/writepanel-product_images.php:79 -msgid "Add Images to Product Gallery" -msgstr "Pridať obrázky do galérie produktu" - -#: admin/post-types/writepanels/writepanel-product_images.php:81 -msgid "Add to gallery" -msgstr "Pridať do galérie" - -#: admin/post-types/writepanels/writepanels-init.php:47 -msgid "Product Gallery" -msgstr "Galéria produktu" - -#: admin/post-types/writepanels/writepanels-init.php:55 -msgid "Product Short Description" -msgstr "Krátky popis produktu" - -#: admin/post-types/writepanels/writepanels-init.php:64 -msgid "Reviews" -msgstr "Recenzie" - -#: admin/post-types/writepanels/writepanels-init.php:68 -msgid "Order Data" -msgstr "Doplňujúce informácie" - -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "Order Items" -msgstr "Položky objednávky" - -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "Note: if you edit quantities or remove items from the order you will need to manually update stock levels." -msgstr "Poznámka: Ak upravíte množstvo alebo odstránite položky z objednávky, budete musieť manuálne aktualizovať sklad." - -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "Downloadable Product Permissions" -msgstr "Povolenia produktov na stiahnutie" - -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "Note: Permissions for order items will automatically be granted when the order status changes to processing/completed." -msgstr "Poznámka: Povolenia pre položky objednávky budú automaticky udelené keď sa zmení stav objednávky(spracúva sa/vybavená)" - -#: admin/post-types/writepanels/writepanels-init.php:73 -msgid "Order Actions" -msgstr "Akcie objednávky" - -#: admin/post-types/writepanels/writepanels-init.php:81 -msgid "Coupon Data" -msgstr "Údaje kupónu" - -#: admin/post-types/writepanels/writepanels-init.php:100 -msgid "Coupon code" -msgstr "Kód kupónu" - -#: admin/post-types/writepanels/writepanels-init.php:101 -msgid "Product name" -msgstr "Názov produktu" - -#: admin/post-types/writepanels/writepanels-init.php:185 -msgid "Allow reviews." -msgstr "Povoliť recenzie" - -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "Allow trackbacks and pingbacks on this page." -msgstr "Povoliť spätné odkazy a spätné upozornenia on this page." - -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" -msgstr "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" - -#: admin/settings/settings-frontend-styles.php:23 -msgid "Styles" -msgstr "Štýly" - -#: admin/settings/settings-frontend-styles.php:43 -msgid "Primary" -msgstr "Primárny" - -#: admin/settings/settings-frontend-styles.php:43 -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "Tlačidlá akcií/slider ceny/UI vrstvenej navigácie" - -#: admin/settings/settings-frontend-styles.php:44 -msgid "Secondary" -msgstr "Sekundárny" - -#: admin/settings/settings-frontend-styles.php:44 -msgid "Buttons and tabs" -msgstr "Tlačidlá a záložky" - -#: admin/settings/settings-frontend-styles.php:45 -msgid "Highlight" -msgstr "Zvyrazniť" - -#: admin/settings/settings-frontend-styles.php:45 -msgid "Price labels and Sale Flashes" -msgstr "Cenovky a Výpredaje" - -#: admin/settings/settings-frontend-styles.php:46 -msgid "Content" -msgstr "Obsah" - -#: admin/settings/settings-frontend-styles.php:46 -msgid "Your themes page background - used for tab active states" -msgstr "Pozadie vašej témy - používa sa pri stave aktívnej záložky" - -#: admin/settings/settings-frontend-styles.php:47 -msgid "Subtext" -msgstr "Podtext" - -#: admin/settings/settings-frontend-styles.php:47 -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "Používa sa pri istých textoch a krajoch - mininavigácia, malý text atď." - -#: admin/settings/settings-frontend-styles.php:51 -msgid "To edit colours woocommerce/assets/css/woocommerce-base.less and woocommerce.css need to be writable. See the Codex for more information." -msgstr "Pre úpravu farieb musí byťwoocommerce/assets/css/woocommerce-base.less a woocommerce.csszapisovateľné. Pozrite si prosímKódex pre viac informácií." - -#: admin/settings/settings-init.php:18 -msgid "Localisation" -msgstr "Lokalizácia" - -#: admin/settings/settings-init.php:19 -msgid "Use informal localisation for %s" -msgstr "Použiť neformálnu lokalizáciu pre%s" - -#: admin/settings/settings-init.php:33 -msgid "General Options" -msgstr "Všeobecné možnosti" - -#: admin/settings/settings-init.php:36 -msgid "Base Location" -msgstr "Základná poloha" - -#: admin/settings/settings-init.php:37 -msgid "This is the base location for your business. Tax rates will be based on this country." -msgstr "Základná poloha určuje umiestnenie firmy. Daňové sadzby sú založené na daňových sadzbách v tejto krajine." - -#: admin/settings/settings-init.php:46 -msgid "Currency" -msgstr "Mena" - -#: admin/settings/settings-init.php:47 -msgid "This controls what currency prices are listed at in the catalog and which currency gateways will take payments in." -msgstr "Ovplyvňuje v akej mene sú zobrazované ceny v katalógu a ktorú menu budú používať platobné brány." - -#: admin/settings/settings-init.php:58 -msgid "Allowed Countries" -msgstr "Povolené krajiny" - -#: admin/settings/settings-init.php:59 -msgid "These are countries that you are willing to ship to." -msgstr "Krajiny, do ktorých budete doručovať." - -#: admin/settings/settings-init.php:67 -msgid "All Countries" -msgstr "Všetky krajiny" - -#: admin/settings/settings-init.php:68 admin/settings/settings-init.php:73 -msgid "Specific Countries" -msgstr "Špecifické krajiny" - -#: admin/settings/settings-init.php:84 -msgid "Store Notice" -msgstr "Oznámenia obchodu" - -#: admin/settings/settings-init.php:85 -msgid "Enable site-wide store notice text" -msgstr "Povoliť oznámenia obchodu na celú šírku stránky" - -#: admin/settings/settings-init.php:92 -msgid "Store Notice Text" -msgstr "Text oznámenia obchodu" - -#: admin/settings/settings-init.php:95 -msgid "This is a demo store for testing purposes — no orders shall be fulfilled." -msgstr "Toto je ukážkový obchod na testovacie účely. Objednávky nebudú vybavené." - -#: admin/settings/settings-init.php:102 -msgid "Cart, Checkout and Accounts" -msgstr "Košík, pokladňa a účty" - -#: admin/settings/settings-init.php:105 admin/woocommerce-admin-content.php:61 -#: admin/woocommerce-admin-content.php:76 -#: admin/woocommerce-admin-reports.php:63 -msgid "Coupons" -msgstr "Zľavové kupóny" - -#: admin/settings/settings-init.php:106 -msgid "Enable the use of coupons" -msgstr "Povoliť použitie kupónov" - -#: admin/settings/settings-init.php:110 -msgid "Coupons can be applied from the cart and checkout pages." -msgstr "Kupóny môžu byť použité na stránkach košíka a pokladne." - -#: admin/settings/settings-init.php:114 admin/woocommerce-admin-install.php:201 -#: admin/woocommerce-admin-status.php:307 -msgid "Checkout" -msgstr "Pokladňa" - -#: admin/settings/settings-init.php:115 -msgid "Enable guest checkout (no account required)" -msgstr "Povoliť pokladňu pre neregistrovaných užívateľov" - -#: admin/settings/settings-init.php:123 -msgid "Enable customer note field on checkout" -msgstr "Povoliť pozámku k objednávke pri platbe v pokladni" - -#: admin/settings/settings-init.php:131 -msgid "Force secure checkout" -msgstr "Použiť bezpečnú pokladňu" - -#: admin/settings/settings-init.php:137 -msgid "Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -msgstr "Použiť SSL (HTTPS) na stránkach pokladne.(Vyžaduje sa SSL certifikát)." - -#: admin/settings/settings-init.php:141 -msgid "Un-force HTTPS when leaving the checkout" -msgstr "Vypnúť HTTPS pri odchode z pokladne" - -#: admin/settings/settings-init.php:150 -msgid "Registration" -msgstr "Registrácia" - -#: admin/settings/settings-init.php:151 -msgid "Allow registration on the checkout page" -msgstr "Povoliť registráciu na stránke pokladne" - -#: admin/settings/settings-init.php:159 -msgid "Allow registration on the \"My Account\" page" -msgstr "Povoliť registráciu na stránke \"Môj účet\"" - -#: admin/settings/settings-init.php:167 -msgid "Register using the email address for the username" -msgstr "Registrovať pomocou emailovej adresy miesto používateľského mena" - -#: admin/settings/settings-init.php:175 -msgid "Customer Accounts" -msgstr "Účty zákazníkov" - -#: admin/settings/settings-init.php:176 -msgid "Prevent customers from accessing WordPress admin" -msgstr "Zamedziť zákazníkom prístup do administrácie WordPressu" - -#: admin/settings/settings-init.php:184 -msgid "Clear cart when logging out" -msgstr "Vyprázdniť košík pri odhlásení sa" - -#: admin/settings/settings-init.php:192 -msgid "Allow customers to repurchase orders from their account page" -msgstr "Povoliť zákazníkom znova si kúpiť objednávke na stránke ich účtu" - -#: admin/settings/settings-init.php:201 -msgid "Styles and Scripts" -msgstr "Štýly a skripty" - -#: admin/settings/settings-init.php:204 -msgid "Styling" -msgstr "Štýl obchodu" - -#: admin/settings/settings-init.php:205 -msgid "Enable WooCommerce CSS" -msgstr "Povoliť CSS WooCommerce" - -#: admin/settings/settings-init.php:216 -msgid "Scripts" -msgstr "Skripty" - -#: admin/settings/settings-init.php:217 -msgid "Enable Lightbox" -msgstr "Povoliť Lightbox" - -#: admin/settings/settings-init.php:220 -msgid "Include WooCommerce's lightbox. Product gallery images and the add review form will open in a lightbox." -msgstr "WooCommerce lightbox. Galéria obrázkov produktu a pridanie recenzie sa objaví v lightboxe." - -#: admin/settings/settings-init.php:226 -msgid "Enable enhanced country select boxes" -msgstr "Povoliť rozšírené výberové polia krajín" - -#: admin/settings/settings-init.php:231 -msgid "This will enable a script allowing the country fields to be searchable." -msgstr "Toto povolí skript ktorý umožní vyhľadávať medzi krajinami" - -#: admin/settings/settings-init.php:236 -msgid "Downloadable Products" -msgstr "Produkty na stiahnutie" - -#: admin/settings/settings-init.php:239 -msgid "File Download Method" -msgstr "Metóda stiahnutia súboru" - -#: admin/settings/settings-init.php:240 -msgid "Forcing downloads will keep URLs hidden, but some servers may serve large files unreliably. If supported, X-Accel-Redirect/ X-Sendfile can be used to serve downloads instead (server requires mod_xsendfile)." -msgstr "Nútené sťahovanie ukryje URL sťahovaného súboru, ale sťahovanie väčších súborov môže byť na niektorých serveroch problematické. Namiesto toho použite X-Accel-Redirect/ X-Sendfile, ak je podporované (server vyžaduje PHP funkcu mod_xsendfile)." - -#: admin/settings/settings-init.php:248 -msgid "Force Downloads" -msgstr "Vynútiť stiahnutie" - -#: admin/settings/settings-init.php:249 -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "X-Accel-Redirect/X-Sendfile" - -#: admin/settings/settings-init.php:250 -msgid "Redirect only" -msgstr "Iba presmerovanie" - -#: admin/settings/settings-init.php:255 -msgid "Access Restriction" -msgstr "Obmedzenie prístupu" - -#: admin/settings/settings-init.php:256 -msgid "Downloads require login" -msgstr "Sťahovanie súborov vyžaduje prihlásenie" - -#: admin/settings/settings-init.php:260 -msgid "This setting does not apply to guest purchases." -msgstr "Toto nastavenie sa nevzťahuje na nákupy neregistrovaných zákazníkov." - -#: admin/settings/settings-init.php:265 -msgid "Grant access to downloadable products after payment" -msgstr "Udeliť prístup k produktom na stiahnutie po platbe." - -#: admin/settings/settings-init.php:269 -msgid "Enable this option to grant access to downloads when orders are \"processing\", rather than \"completed\"." -msgstr "Povolte udelenie prístupu keď sa stav objednávky zmení na \"spracúva sa\" nie na \"´vybavená\"." - -#: admin/settings/settings-init.php:285 -msgid "Note: The shop page has children - child pages will not work if you enable this option." -msgstr "Poznámka: Stránka obchodu má odvodené stránky - tie nebudú fungovať pokým nepovolíte toto nastavenie." - -#: admin/settings/settings-init.php:290 -msgid "Page Setup" -msgstr "Nastavenie stránky" - -#: admin/settings/settings-init.php:292 -msgid "Set up core WooCommerce pages here, for example the base page. The base page can also be used in your %sproduct permalinks%s." -msgstr "Nastavte tu stránky jadra WooCommerce, napríklad základnú stránku. Základná stránka tiež môže byť použitá v %trvalých odkazoch produktov%s." - -#: admin/settings/settings-init.php:297 -msgid "Shop Base Page" -msgstr "Základná stránka obchodu" - -#: admin/settings/settings-init.php:298 -msgid "This sets the base page of your shop - this is where your product archive will be." -msgstr "Toto nastavuje základnú stránku obchodu - tu bude archív produktov." - -#: admin/settings/settings-init.php:308 -msgid "Terms Page ID" -msgstr "ID stránky obchodných podmienok" - -#: admin/settings/settings-init.php:309 -msgid "If you define a \"Terms\" page the customer will be asked if they accept them when checking out." -msgstr "Ak máte nastavenú stránku s \"Obchodnými podmienkami\", zákazník bude pri prechode k pokladni vyzvaný, aby s nimi súhlasil." - -#: admin/settings/settings-init.php:320 -msgid "Shop Pages" -msgstr "Stránky obchodu" - -#: admin/settings/settings-init.php:320 -msgid "The following pages need selecting so that WooCommerce knows where they are. These pages should have been created upon installation of the plugin, if not you will need to create them." -msgstr "Nasledujúce stráknky musia byť vybrané aby WooCommerce vedel kde sa nachádzajú. Tieto stránky sa mali vytvoriť pri inštalácii modulu obchodu, ak nie budete ich musieť vytvoriť." - -#: admin/settings/settings-init.php:323 -msgid "Cart Page" -msgstr "Stránka košíka" - -#: admin/settings/settings-init.php:324 -msgid "Page contents: [woocommerce_cart]" -msgstr "Obsah strany: [woocommerce_cart]" - -#: admin/settings/settings-init.php:334 -msgid "Checkout Page" -msgstr "Stránka pokladne" - -#: admin/settings/settings-init.php:335 -msgid "Page contents: [woocommerce_checkout]" -msgstr "Obsah strany: [woocommerce_checkout]" - -#: admin/settings/settings-init.php:345 -msgid "Pay Page" -msgstr "Stránka platby" - -#: admin/settings/settings-init.php:346 -msgid "Page contents: [woocommerce_pay] Parent: \"Checkout\"" -msgstr "Obsah strany: [woocommerce_pay], nadradený: \"Pokladňa\"" - -#: admin/settings/settings-init.php:356 -msgid "Thanks Page" -msgstr "Stránka s poďakovaním" - -#: admin/settings/settings-init.php:357 -msgid "Page contents: [woocommerce_thankyou] Parent: \"Checkout\"" -msgstr "Obsah strany: [woocommerce_thankyou], nadradený: \"Pokladňa\"" - -#: admin/settings/settings-init.php:367 -msgid "My Account Page" -msgstr "Môj účet" - -#: admin/settings/settings-init.php:368 -msgid "Page contents: [woocommerce_my_account]" -msgstr "Obsah strany: [woocommerce_my_account]" - -#: admin/settings/settings-init.php:378 -msgid "Edit Address Page" -msgstr "Stránka úpravy adresy" - -#: admin/settings/settings-init.php:379 -msgid "Page contents: [woocommerce_edit_address] Parent: \"My Account\"" -msgstr "Obsah strany: [woocommerce_edit_address], nadradený: \"Môj účet\"" - -#: admin/settings/settings-init.php:389 -msgid "View Order Page" -msgstr "Zobrazenie stránky s objednávkou" - -#: admin/settings/settings-init.php:390 -msgid "Page contents: [woocommerce_view_order] Parent: \"My Account\"" -msgstr "Obsah strany: [woocommerce_view_order], nadradený: \"Môj účet\"" - -#: admin/settings/settings-init.php:400 -msgid "Change Password Page" -msgstr "Stránka zmeny hesla" - -#: admin/settings/settings-init.php:401 -msgid "Page contents: [woocommerce_change_password] Parent: \"My Account\"" -msgstr "Obsah strany: [woocommerce_change_password], nadradený: \"Môj účet\"" - -#: admin/settings/settings-init.php:411 -msgid "Logout Page" -msgstr "Stránka odhlásenia" - -#: admin/settings/settings-init.php:412 -msgid "Parent: \"My Account\"" -msgstr "Nadradená: \"Môj účet\"" - -#: admin/settings/settings-init.php:422 -msgid "Lost Password Page" -msgstr "Stránka strateného hesla" - -#: admin/settings/settings-init.php:423 -msgid "Page contents: [woocommerce_lost_password] Parent: \"My Account\"" -msgstr "Obsah stránky: [woocommerce_lost_password] Nadradená: \"Môj účet\"" - -#: admin/settings/settings-init.php:439 -msgid "Catalog Options" -msgstr "Možnosti katalógu" - -#: admin/settings/settings-init.php:442 -msgid "Default Product Sorting" -msgstr "Základne radenie produktov" - -#: admin/settings/settings-init.php:443 -msgid "This controls the default sort order of the catalog." -msgstr "Toto kontroluje základné triedenie poradia katalógu." - -#: admin/settings/settings-init.php:449 -msgid "Default sorting (custom ordering + name)" -msgstr "Základné radenie (vlastné radenie + názov)" - -#: admin/settings/settings-init.php:450 -msgid "Popularity (sales)" -msgstr "Popularita (predaje)" - -#: admin/settings/settings-init.php:451 -msgid "Average Rating" -msgstr "Priemerné hodnotenie" - -#: admin/settings/settings-init.php:452 -msgid "Sort by most recent" -msgstr "Zoradiť - najnovšie navrchu" - -#: admin/settings/settings-init.php:453 -msgid "Sort by price (asc)" -msgstr "Zoradiť - podľa ceny (od najnižšej)" - -#: admin/settings/settings-init.php:454 -msgid "Sort by price (desc)" -msgstr "Zoradiť - podľa ceny (od najvyššej)" - -#: admin/settings/settings-init.php:460 -msgid "Shop Page Display" -msgstr "Zobrazená stránka obchodu" - -#: admin/settings/settings-init.php:461 -msgid "This controls what is shown on the product archive." -msgstr "Toto kontroluje čo sa zobrazuje v archíve produktu." - -#: admin/settings/settings-init.php:467 admin/settings/settings-init.php:482 -msgid "Show products" -msgstr "Zobraziť produkty" - -#: admin/settings/settings-init.php:468 admin/settings/settings-init.php:483 -msgid "Show subcategories" -msgstr "Zobraziť podkategórie" - -#: admin/settings/settings-init.php:469 admin/settings/settings-init.php:484 -msgid "Show both" -msgstr "Zobraziť obe" - -#: admin/settings/settings-init.php:475 -msgid "Default Category Display" -msgstr "Zobraziť základnú kategóriu" - -#: admin/settings/settings-init.php:476 -msgid "This controls what is shown on category archives." -msgstr "Toto kontroluje, čo sa zobrazuje v archívoch" - -#: admin/settings/settings-init.php:490 -msgid "Add to cart" -msgstr "Kúpiť" - -#: admin/settings/settings-init.php:491 -msgid "Redirect to the cart page after successful addition" -msgstr "Presmerovanie na stránku kočíka po úspešnom pridaní položky" - -#: admin/settings/settings-init.php:499 -msgid "Enable AJAX add to cart buttons on archives" -msgstr "Povoliť AJAX tlačislo pridať do košíka v archívoch" - -#: admin/settings/settings-init.php:508 -msgid "The following options affect the fields available on the edit product page." -msgstr "Nasledujúce nastavenia ovplyvňujú polia dostupné na stránke úpravy produktu." - -#: admin/settings/settings-init.php:511 -msgid "Product Fields" -msgstr "Polia produkty" - -#: admin/settings/settings-init.php:512 -msgid "Enable the SKU field for products" -msgstr "Povoliť SKU pole produktu" \ No newline at end of file diff --git a/i18n/languages/woocommerce-admin-sv_SE.mo b/i18n/languages/woocommerce-admin-sv_SE.mo deleted file mode 100644 index f839d7a3320..00000000000 Binary files a/i18n/languages/woocommerce-admin-sv_SE.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-admin-sv_SE.po b/i18n/languages/woocommerce-admin-sv_SE.po deleted file mode 100644 index bae73ccc902..00000000000 --- a/i18n/languages/woocommerce-admin-sv_SE.po +++ /dev/null @@ -1,6185 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce v2.0.0-beta2\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-01-09 09:36:51+00:00\n" -"PO-Revision-Date: 2013-05-20 19:51+0100\n" -"Last-Translator: Björn Sennbrink \n" -"Language-Team: FS Data and Sennbrink Kommunikation \n" -"Language: sv_SE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" -"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" -"X-Poedit-Basepath: ../../\n" -"X-Textdomain-Support: yes\n" -"X-Generator: Poedit 1.5.5\n" -"X-Poedit-SearchPath-0: .\n" - -# @ woocommerce -#: admin/importers/importers-init.php:13 -msgid "WooCommerce Tax Rates (CSV)" -msgstr "WooCommerce momssatser (CSV)" - -#: admin/importers/importers-init.php:13 -msgid "Import tax rates to your store via a csv file." -msgstr "Importera momssatser till din butik via en CSV-fil." - -#: admin/importers/tax-rates-importer.php:103 -#: admin/importers/tax-rates-importer.php:186 -#: admin/importers/tax-rates-importer.php:226 -#: admin/importers/tax-rates-importer.php:241 -msgid "Sorry, there has been an error." -msgstr "Ett fel har tyvärr uppstått." - -#: admin/importers/tax-rates-importer.php:104 -msgid "The file does not exist, please try again." -msgstr "Filen existerar inte. Vänligen försök igen." - -#: admin/importers/tax-rates-importer.php:187 -msgid "The CSV is invalid." -msgstr "Ogiltig CSV-fil." - -#: admin/importers/tax-rates-importer.php:198 -msgid "" -"Import complete - imported %s tax rates and skipped " -"%s." -msgstr "" -"Import genomförd! Importerade %s momssatser och hoppade " -"över %s." - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:208 -msgid "All done!" -msgstr "Genomfört!" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:208 -msgid "View Tax Rates" -msgstr "Visa momssatser" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:259 -msgid "Import Tax Rates" -msgstr "Importera momssatser" - -#: admin/importers/tax-rates-importer.php:282 -msgid "" -"Hi there! Upload a CSV file containing tax rates to import the contents into " -"your shop. Choose a .csv file to upload, then click \"Upload file and import" -"\"." -msgstr "" -"Hej! Ladda upp en CSV-fil med momssatser för att lägga till dessa i butiken. " -"Välj en fil med ändelsen .csv och klicka sedan \"Ladda upp fil och importera" -"\"." - -#: admin/importers/tax-rates-importer.php:284 -msgid "" -"Tax rates need to be defined with columns in a specific order (10 columns). " -"Click here to download a sample." -msgstr "" -"Momssatser måste definieras med kolumnerna i en specifik ordning (10 " -"kolumner). Klicka här för att ladda ner ett exempel." - -#: admin/importers/tax-rates-importer.php:292 -msgid "" -"Before you can upload your import file, you will need to fix the following " -"error:" -msgstr "Du måste åtgärda följande fel innan du kan ladda upp din fil:" - -#: admin/importers/tax-rates-importer.php:301 -msgid "Choose a file from your computer:" -msgstr "Välj en fil från din hårddisk:" - -#: admin/importers/tax-rates-importer.php:307 -msgid "Maximum size: %s" -msgstr "Maximal filstorlek: %s" - -#: admin/importers/tax-rates-importer.php:312 -msgid "OR enter path to file:" -msgstr "ELLER ange sökvägen till filen:" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:319 -msgid "Delimiter" -msgstr "Avdelare" - -#: admin/importers/tax-rates-importer.php:325 -msgid "Upload file and import" -msgstr "Ladda upp fil och importera" - -# @ woocommerce -#: admin/includes/duplicate_product.php:23 -msgid "No product to duplicate has been supplied!" -msgstr "Ingen produkt att duplicera har valts!" - -# @ woocommerce -#: admin/includes/duplicate_product.php:43 -msgid "Product creation failed, could not find original product:" -msgstr "Skapande av produkt misslyckades, kunde inte hitta originalprodukten:" - -# @ woocommerce -#: admin/includes/duplicate_product.php:89 -msgid "(Copy)" -msgstr "(Kopia)" - -# @ woocommerce -#: admin/includes/notice-install.php:6 -msgid "" -"Welcome to WooCommerce – You're almost ready to start " -"selling :)" -msgstr "" -"Välkommen till WooCommerce – Du är bara något steg " -"ifrån att börja försäljningen :)" - -# @ woocommerce -#: admin/includes/notice-install.php:7 -msgid "Install WooCommerce Pages" -msgstr "Installera sidor för WooCommerce" - -# @ woocommerce -#: admin/includes/notice-install.php:7 -msgid "Skip setup" -msgstr "Hoppa över konfiguration" - -# @ woocommerce -#: admin/includes/notice-installed.php:6 -msgid "" -"WooCommerce has been installed – You're ready to " -"start selling :)" -msgstr "" -"WooCommerce har installerats – Du är nu reda att " -"börja försäljningen :)" - -# @ woocommerce -#: admin/includes/notice-installed.php:8 admin/includes/notice-updated.php:8 -#: admin/woocommerce-admin-content.php:41 admin/woocommerce-admin-init.php:81 -#: admin/woocommerce-admin-status.php:187 -msgid "Settings" -msgstr "Inställningar" - -#: admin/includes/notice-installed.php:8 admin/includes/notice-updated.php:8 -msgid "Docs" -msgstr "Dokumentation" - -#: admin/includes/notice-update.php:6 -msgid "" -"Data Update Required – We just need to update your " -"install to the latest version" -msgstr "" -"Uppdatering av data krävs – Innan du kan börja måste " -"vi bara uppdatera din installation till den senaste versionen" - -#: admin/includes/notice-update.php:7 -msgid "Run the updater" -msgstr "Starta uppdatering" - -#: admin/includes/notice-update.php:12 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Vi rekommenderar att du säkerhetskopierar din databas innan du fortsätter. " -"Är du säker att du vill starta uppdateringen nu?" - -#: admin/includes/notice-updated.php:6 -msgid "" -"WooCommerce has been updated – You're ready to " -"continue selling :)" -msgstr "" -"WooCommerce har uppdaterats – Du är nu redo att börja " -"försäljningen :)" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:50 -#: admin/woocommerce-admin-init.php:837 -msgctxt "slug" -msgid "product-category" -msgstr "produkt-kategori" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:51 -#: admin/woocommerce-admin-init.php:850 -msgctxt "slug" -msgid "product-tag" -msgstr "produkt-etikett" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:59 -msgctxt "slug" -msgid "product" -msgstr "produkt" - -# @ woocommerce -#: admin/post-types/product.php:31 -msgid "Make a duplicate from this product" -msgstr "Skapa en dublett av den här produkten" - -# @ woocommerce -#: admin/post-types/product.php:32 -msgid "Duplicate" -msgstr "Duplicera" - -# @ woocommerce -#: admin/post-types/product.php:61 -msgid "Copy to a new draft" -msgstr "Kopiera till nytt utkast" - -# @ woocommerce -#: admin/post-types/product.php:85 admin/woocommerce-admin-taxonomies.php:297 -msgid "Image" -msgstr "Bild" - -# @ woocommerce -#: admin/post-types/product.php:87 -#: admin/post-types/writepanels/writepanel-product_data.php:368 -#: admin/post-types/writepanels/writepanel-product_data.php:447 -#: admin/woocommerce-admin-attributes.php:232 -#: admin/woocommerce-admin-attributes.php:268 -#: admin/woocommerce-admin-attributes.php:306 -#: admin/woocommerce-admin-attributes.php:329 -#: admin/woocommerce-admin-attributes.php:373 -#: admin/woocommerce-admin-attributes.php:398 -#: admin/woocommerce-admin-init.php:393 -msgid "Name" -msgstr "Namn" - -# @ woocommerce -#: admin/post-types/product.php:90 admin/post-types/product.php:563 -#: admin/post-types/writepanels/variation-admin-html.php:46 -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#: admin/woocommerce-admin-reports.php:2063 -#: admin/woocommerce-admin-reports.php:2098 -msgid "SKU" -msgstr "Art. nr." - -# @ woocommerce -#: admin/post-types/product.php:93 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:83 -#: admin/woocommerce-admin-content.php:62 -#: admin/woocommerce-admin-reports.php:99 -msgid "Stock" -msgstr "Lager" - -# @ woocommerce -#: admin/post-types/product.php:95 admin/post-types/product.php:574 -#: admin/post-types/product.php:793 admin/woocommerce-admin-functions.php:196 -msgid "Price" -msgstr "Pris" - -# @ woocommerce -#: admin/post-types/product.php:97 -msgid "Categories" -msgstr "Kategorier" - -# @ woocommerce -#: admin/post-types/product.php:98 -msgid "Tags" -msgstr "Etiketter" - -# @ woocommerce -#: admin/post-types/product.php:99 admin/post-types/product.php:638 -#: admin/post-types/product.php:910 -#: admin/post-types/writepanels/writepanel-product_data.php:1044 -#: admin/woocommerce-admin-init.php:406 -msgid "Featured" -msgstr "Rekommenderad" - -# @ woocommerce -#: admin/post-types/product.php:100 admin/woocommerce-admin-attributes.php:250 -#: admin/woocommerce-admin-attributes.php:308 -#: admin/woocommerce-admin-attributes.php:385 -msgid "Type" -msgstr "Typ" - -# @ woocommerce -#: admin/post-types/product.php:101 admin/post-types/shop_order.php:50 -msgid "Date" -msgstr "Datum" - -# @ woocommerce -#: admin/post-types/product.php:150 -msgid "Edit this item" -msgstr "Redigera denna artikel" - -# @ woocommerce -# @ default -#: admin/post-types/product.php:150 -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#: admin/post-types/writepanels/writepanel-order_data.php:383 -#: admin/post-types/writepanels/writepanel-product_data.php:1047 -#: admin/woocommerce-admin-attributes.php:322 -msgid "Edit" -msgstr "Redigera" - -# @ woocommerce -#: admin/post-types/product.php:151 -msgid "Edit this item inline" -msgstr "Redigera artikel direkt" - -# @ woocommerce -#: admin/post-types/product.php:151 -msgid "Quick Edit" -msgstr "Snabbredigering" - -# @ woocommerce -#: admin/post-types/product.php:155 admin/post-types/shop_coupon.php:65 -msgid "Restore this item from the Trash" -msgstr "Återställ artikel från Papperskorgen" - -# @ woocommerce -#: admin/post-types/product.php:155 admin/post-types/shop_coupon.php:65 -msgid "Restore" -msgstr "Återställ" - -# @ woocommerce -#: admin/post-types/product.php:157 admin/post-types/shop_coupon.php:67 -msgid "Move this item to the Trash" -msgstr "Flytta artikel till Papperskorgen" - -# @ woocommerce -#: admin/post-types/product.php:157 admin/post-types/shop_coupon.php:67 -msgid "Trash" -msgstr "Papperskorg" - -# @ woocommerce -#: admin/post-types/product.php:159 admin/post-types/shop_coupon.php:69 -msgid "Delete this item permanently" -msgstr "Radera artikel permanent" - -# @ woocommerce -#: admin/post-types/product.php:159 admin/post-types/shop_coupon.php:69 -#: admin/post-types/writepanels/writepanel-order_data.php:456 -msgid "Delete Permanently" -msgstr "Radera permanent" - -# @ woocommerce -#: admin/post-types/product.php:164 -msgid "Preview “%s”" -msgstr "Förhandsgranska “%s”" - -# @ woocommerce -#: admin/post-types/product.php:164 -msgid "Preview" -msgstr "Förhandsgranska" - -# @ woocommerce -#: admin/post-types/product.php:166 -msgid "View “%s”" -msgstr "Visa “%s”" - -# @ woocommerce -#: admin/post-types/product.php:166 admin/post-types/shop_order.php:171 -msgid "View" -msgstr "Visa" - -# @ woocommerce -#: admin/post-types/product.php:213 -msgid "Grouped" -msgstr "Grupperad" - -# @ woocommerce -#: admin/post-types/product.php:215 -msgid "External/Affiliate" -msgstr "Extern/Återförsäljare" - -# @ woocommerce -#: admin/post-types/product.php:219 admin/post-types/product.php:413 -#: admin/post-types/writepanels/variation-admin-html.php:166 -#: admin/post-types/writepanels/writepanel-product_data.php:52 -msgid "Virtual" -msgstr "Virtuell" - -# @ woocommerce -#: admin/post-types/product.php:221 admin/post-types/product.php:409 -#: admin/post-types/writepanels/variation-admin-html.php:164 -#: admin/post-types/writepanels/writepanel-product_data.php:58 -msgid "Downloadable" -msgstr "Nedladdningsbar" - -# @ woocommerce -#: admin/post-types/product.php:223 -msgid "Simple" -msgstr "Enkel" - -# @ woocommerce -#: admin/post-types/product.php:227 admin/post-types/product.php:393 -msgid "Variable" -msgstr "Variabel" - -# @ woocommerce -#: admin/post-types/product.php:250 -msgid "Toggle featured" -msgstr "Aktivera rekommenderad" - -# @ woocommerce -#: admin/post-types/product.php:252 -msgid "yes" -msgstr "ja" - -#: admin/post-types/product.php:254 -msgid "no" -msgstr "nej" - -# @ woocommerce -#: admin/post-types/product.php:261 admin/post-types/product.php:647 -#: admin/post-types/product.php:934 -#: admin/post-types/writepanels/writepanel-product_data.php:227 -msgid "In stock" -msgstr "I lager" - -# @ woocommerce -#: admin/post-types/product.php:263 admin/post-types/product.php:648 -#: admin/post-types/product.php:935 -#: admin/post-types/writepanels/writepanel-product_data.php:228 -#: admin/woocommerce-admin-reports.php:2083 -msgid "Out of stock" -msgstr "Slut i lager" - -# @ woocommerce -#: admin/post-types/product.php:379 -msgid "Show all product types" -msgstr "Visa alla produkttyper" - -# @ woocommerce -#: admin/post-types/product.php:387 -#: admin/post-types/writepanels/writepanel-product_data.php:39 -msgid "Grouped product" -msgstr "Grupperad produkt" - -# @ woocommerce -#: admin/post-types/product.php:389 -#: admin/post-types/writepanels/writepanel-product_data.php:40 -msgid "External/Affiliate product" -msgstr "Extern/Affiliateprodukt" - -# @ woocommerce -#: admin/post-types/product.php:391 -#: admin/post-types/writepanels/writepanel-product_data.php:38 -msgid "Simple product" -msgstr "Enkel produkt" - -# @ woocommerce -#: admin/post-types/product.php:405 -msgid "Show all sub-types" -msgstr "Visa alla undertyper" - -# @ woocommerce -#: admin/post-types/product.php:526 -msgid "[%s with SKU of %s]" -msgstr "[%s med Art. nr. av %s]" - -# @ woocommerce -#: admin/post-types/product.php:532 -msgid "[%s with ID of %d]" -msgstr "[%s med ID av %d]" - -# @ woocommerce -#: admin/post-types/product.php:558 admin/post-types/product.php:789 -#: admin/post-types/writepanels/writepanels-init.php:46 -#: admin/settings/settings-init.php:571 -msgid "Product Data" -msgstr "Produktdata" - -# @ woocommerce -#: admin/post-types/product.php:576 -msgid "Regular price" -msgstr "Normalpris" - -# @ woocommerce -#: admin/post-types/product.php:581 admin/post-types/product.php:817 -msgid "Sale" -msgstr "Rea" - -# @ woocommerce -#: admin/post-types/product.php:583 -msgid "Sale price" -msgstr "Rea-pris" - -# @ woocommerce -#: admin/post-types/product.php:594 admin/post-types/product.php:843 -#: admin/post-types/writepanels/variation-admin-html.php:90 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:269 -msgid "Weight" -msgstr "Vikt" - -# @ woocommerce -#: admin/post-types/product.php:605 admin/post-types/product.php:867 -msgid "L/W/H" -msgstr "L/B/H" - -# @ woocommerce -#: admin/post-types/product.php:607 admin/post-types/product.php:883 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:85 -#: admin/post-types/writepanels/writepanel-product_data.php:282 -msgid "Length" -msgstr "Längd" - -# @ woocommerce -#: admin/post-types/product.php:608 admin/post-types/product.php:884 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:86 -#: admin/post-types/writepanels/writepanel-product_data.php:283 -#: admin/woocommerce-admin-settings.php:825 -msgid "Width" -msgstr "Bredd" - -# @ woocommerce -#: admin/post-types/product.php:609 admin/post-types/product.php:885 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:87 -#: admin/post-types/writepanels/writepanel-product_data.php:284 -#: admin/woocommerce-admin-settings.php:827 -msgid "Height" -msgstr "Höjd" - -# @ woocommerce -#: admin/post-types/product.php:619 admin/post-types/product.php:891 -msgid "Visibility" -msgstr "Synlighet" - -# @ woocommerce -#: admin/post-types/product.php:624 admin/post-types/product.php:897 -msgid "Catalog & search" -msgstr "Sök i katalogen" - -# @ woocommerce -#: admin/post-types/product.php:625 admin/post-types/product.php:898 -#: admin/post-types/writepanels/writepanel-product_data.php:1033 -#: admin/woocommerce-admin-content.php:46 -#: admin/woocommerce-admin-settings.php:220 -msgid "Catalog" -msgstr "Produktkatalog" - -# @ woocommerce -# @ default -#: admin/post-types/product.php:626 admin/post-types/product.php:899 -#: admin/post-types/writepanels/writepanel-product_data.php:1034 -msgid "Search" -msgstr "Sök" - -# @ woocommerce -#: admin/post-types/product.php:627 admin/post-types/product.php:900 -#: admin/post-types/writepanels/writepanel-product_data.php:1035 -msgid "Hidden" -msgstr "Dold" - -# @ woocommerce -#: admin/post-types/product.php:642 admin/post-types/product.php:928 -msgid "In stock?" -msgstr "I lager?" - -# @ woocommerce -#: admin/post-types/product.php:663 admin/post-types/product.php:946 -#: admin/post-types/writepanels/writepanel-product_data.php:208 -msgid "Manage stock?" -msgstr "Hantera lager?" - -# @ woocommerce -#: admin/post-types/product.php:667 admin/post-types/product.php:965 -#: admin/post-types/product.php:981 -#: admin/post-types/writepanels/writepanel-product_data.php:215 -msgid "Stock Qty" -msgstr "Lagersaldo" - -# @ woocommerce -#: admin/post-types/product.php:798 admin/post-types/product.php:822 -#: admin/post-types/product.php:848 admin/post-types/product.php:872 -#: admin/post-types/product.php:896 admin/post-types/product.php:915 -#: admin/post-types/product.php:933 admin/post-types/product.php:951 -#: admin/post-types/product.php:970 -msgid "— No Change —" -msgstr "— Ingen förändring —" - -# @ woocommerce -#: admin/post-types/product.php:799 admin/post-types/product.php:823 -#: admin/post-types/product.php:849 admin/post-types/product.php:873 -#: admin/post-types/product.php:971 -msgid "Change to:" -msgstr "Ändra till:" - -#: admin/post-types/product.php:800 admin/post-types/product.php:824 -msgid "Increase by (fixed amount or %):" -msgstr "Öka med (bestämt antal eller procent):" - -#: admin/post-types/product.php:801 admin/post-types/product.php:825 -msgid "Decrease by (fixed amount or %):" -msgstr "Öka med (bestämt antal eller procent):" - -# @ woocommerce -#: admin/post-types/product.php:811 admin/post-types/product.php:836 -msgid "Enter price" -msgstr "Ange pris" - -#: admin/post-types/product.php:826 -msgid "Decrease regular price by (fixed amount or %):" -msgstr "Sänk standardpris med (bestämd summa eller procent):" - -# @ woocommerce -#: admin/post-types/product.php:916 admin/post-types/product.php:952 -#: admin/post-types/shop_order.php:190 admin/woocommerce-admin-status.php:202 -#: admin/woocommerce-admin-status.php:364 -msgid "Yes" -msgstr "Ja" - -# @ woocommerce -#: admin/post-types/product.php:917 admin/post-types/product.php:953 -#: admin/post-types/shop_order.php:192 admin/woocommerce-admin-status.php:202 -#: admin/woocommerce-admin-status.php:364 -msgid "No" -msgstr "Nej" - -# @ woocommerce -#: admin/post-types/product.php:1181 -msgid "Sort Products" -msgstr "Sortera produkter" - -# @ woocommerce -#: admin/post-types/product.php:1220 -msgid "Insert into product" -msgstr "Lägg till i produkt" - -# @ woocommerce -#: admin/post-types/product.php:1221 -msgid "Uploaded to this product" -msgstr "Ladda upp till produkt" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:25 -msgid "Code" -msgstr "Kod" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:26 -msgid "Coupon type" -msgstr "Kupongtyp" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:27 -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Coupon amount" -msgstr "Kupongbelopp" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:28 -msgid "Description" -msgstr "Beskrivning" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:29 -msgid "Product IDs" -msgstr "Produkt IDn" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:30 -msgid "Usage / Limit" -msgstr "Användningsgräns" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:31 -#: admin/post-types/writepanels/writepanel-coupon_data.php:165 -msgid "Expiry date" -msgstr "Gäller till" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:56 -msgid "Edit coupon" -msgstr "Redigera rabattkupong" - -#: admin/post-types/shop_coupon.php:114 -msgid "%s / %s" -msgstr "%s / %s" - -#: admin/post-types/shop_coupon.php:116 -msgid "%s / ∞" -msgstr "%s / ∞" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:149 admin/post-types/shop_order.php:282 -msgid "Show all statuses" -msgstr "Visa alla statusar" - -# @ woocommerce -#: admin/post-types/shop_order.php:43 -#: admin/settings/settings-payment-gateways.php:29 -#: admin/settings/settings-shipping-methods.php:31 -msgid "Status" -msgstr "Status" - -# @ woocommerce -#: admin/post-types/shop_order.php:44 -msgid "Order" -msgstr "Order" - -# @ woocommerce -#: admin/post-types/shop_order.php:45 -msgid "Billing" -msgstr "Faktura" - -# @ woocommerce -#: admin/post-types/shop_order.php:46 -#: admin/post-types/writepanels/writepanel-order_data.php:529 -#: admin/post-types/writepanels/writepanel-product_data.php:81 -#: admin/settings/settings-tax-rates.php:52 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-content.php:49 -#: admin/woocommerce-admin-settings.php:224 -msgid "Shipping" -msgstr "Frakt" - -# @ woocommerce -#: admin/post-types/shop_order.php:47 -msgid "Order Total" -msgstr "Order totalt" - -# @ woocommerce -#: admin/post-types/shop_order.php:48 -#: admin/post-types/writepanels/writepanels-init.php:71 -msgid "Order Notes" -msgstr "Ordernoteringar" - -# @ woocommerce -#: admin/post-types/shop_order.php:49 -msgid "Customer Notes" -msgstr "Kundnoteringar" - -# @ woocommerce -#: admin/post-types/shop_order.php:51 -#: admin/post-types/writepanels/writepanel-order_data.php:382 -#: admin/post-types/writepanels/writepanel-order_data.php:429 -msgid "Actions" -msgstr "Händelser" - -# @ woocommerce -#: admin/post-types/shop_order.php:95 -#: admin/post-types/writepanels/writepanel-order_data.php:93 -msgid "Guest" -msgstr "Gäst" - -# @ woocommerce -#: admin/post-types/shop_order.php:98 -msgid "Order %s" -msgstr "Order %s" - -# @ woocommerce -#: admin/post-types/shop_order.php:98 -msgid "made by" -msgstr "skapad av" - -# @ woocommerce -#: admin/post-types/shop_order.php:101 -msgid "Email:" -msgstr "E-postadress:" - -# @ woocommerce -#: admin/post-types/shop_order.php:104 -msgid "Tel:" -msgstr "Tfn:" - -# @ woocommerce -#: admin/post-types/shop_order.php:114 admin/post-types/shop_order.php:123 -msgid "Via" -msgstr "Via" - -# @ woocommerce -#: admin/post-types/shop_order.php:131 -msgid "Unpublished" -msgstr "Ej publicerad" - -# @ woocommerce -#: admin/post-types/shop_order.php:133 -msgid "Y/m/d g:i:s A" -msgstr "Y/m/d H:i:s" - -# @ woocommerce -#: admin/post-types/shop_order.php:139 -msgid "%s ago" -msgstr "%s sedan" - -# @ woocommerce -#: admin/post-types/shop_order.php:141 -msgid "Y/m/d" -msgstr "Y/m/d" - -# @ woocommerce -#: admin/post-types/shop_order.php:158 -#: admin/woocommerce-admin-dashboard.php:176 -msgid "Processing" -msgstr "Pågående" - -# @ woocommerce -#: admin/post-types/shop_order.php:165 -msgid "Complete" -msgstr "Genomförd" - -# @ woocommerce -#: admin/post-types/shop_order.php:301 admin/post-types/shop_order.php:326 -msgid "Show all customers" -msgstr "Visa alla kunder" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:6 -msgid "Revoke Access" -msgstr "Återkalla åtkomst" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:7 -#: admin/post-types/writepanels/variation-admin-html.php:7 -#: admin/post-types/writepanels/writepanel-product_data.php:361 -#: admin/post-types/writepanels/writepanel-product_data.php:440 -#: admin/woocommerce-admin-init.php:395 -msgid "Click to toggle" -msgstr "Klicka för att akttivera/avaktivera" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -msgid "File %d: %s" -msgstr "Fil %d: %s" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:9 -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "Nerladdad %s gång" -msgstr[1] "Nerladdad %s gånger" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:16 -msgid "Downloads Remaining" -msgstr "Återstående nerladdningar" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:19 -#: admin/post-types/writepanels/variation-admin-html.php:141 -#: admin/post-types/writepanels/variation-admin-html.php:149 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Unlimited" -msgstr "Obegränsad" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:22 -msgid "Access Expires" -msgstr "Åtkomst upphör" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:23 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Never" -msgstr "Aldrig" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:10 -msgid "Fee Name" -msgstr "Avgiftsnamn" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:15 -#: admin/post-types/writepanels/order-item-html.php:82 -msgid "Tax class" -msgstr "Momsgrupp" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:17 -#: admin/post-types/writepanels/order-tax-html.php:8 -#: admin/post-types/writepanels/writepanel-order_data.php:551 -#: admin/post-types/writepanels/writepanel-order_data.php:650 -#: admin/woocommerce-admin-reports.php:1642 -#: admin/woocommerce-admin-reports.php:2633 -#: admin/woocommerce-admin-reports.php:2642 -#: admin/woocommerce-admin-users.php:90 admin/woocommerce-admin-users.php:112 -msgid "N/A" -msgstr "Inte tillgänglig" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:18 -#: admin/post-types/writepanels/writepanel-product_data.php:177 -msgid "Taxable" -msgstr "Momsbelagd" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:23 -#: admin/post-types/writepanels/order-item-html.php:89 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:54 -#: admin/post-types/writepanels/writepanel-product_data.php:184 -#: admin/settings/settings-init.php:1027 -#: admin/settings/settings-tax-rates.php:29 -#: admin/woocommerce-admin-settings.php:262 -msgid "Standard" -msgstr "Standard" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:39 -#: admin/post-types/writepanels/order-item-html.php:106 -#: admin/woocommerce-admin-reports.php:1546 -#: admin/woocommerce-admin-reports.php:1599 -#: admin/woocommerce-admin-reports.php:2346 -#: admin/woocommerce-admin-reports.php:2518 -#: admin/woocommerce-admin-reports.php:2595 -msgid "Total" -msgstr "Total" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:9 -msgid "Product ID:" -msgstr "Produkt-ID:" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:12 -msgid "Variation ID:" -msgstr "Variant-ID:" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:15 -msgid "Product SKU:" -msgstr "Artikelnummer:" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:33 -msgid "Add meta" -msgstr "Lägg till meta" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:108 -msgid "Subtotal" -msgstr "Delsumma" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:6 -msgid "Tax Rate:" -msgstr "Momssats" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:16 -#: admin/post-types/writepanels/writepanel-order_data.php:617 -msgid "Sales Tax:" -msgstr "Momssats för rea" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:20 -#: admin/post-types/writepanels/writepanel-order_data.php:625 -msgid "Shipping Tax:" -msgstr "Fraktmoms:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:6 -#: admin/post-types/writepanels/writepanel-product_data.php:360 -#: admin/post-types/writepanels/writepanel-product_data.php:439 -#: admin/woocommerce-admin-init.php:394 -msgid "Remove" -msgstr "Ta bort" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:20 -msgid "Any" -msgstr "Vilken som helst" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:46 -msgid "" -"Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "" -"Uppge ett artikelnummer för den här varianten eller lämna blankt för att " -"använda förälderns artikelnummer." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:57 -msgid "Stock Qty:" -msgstr "Lagersaldo:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:57 -msgid "" -"Enter a quantity to enable stock management for this variation, or leave " -"blank to use the variable product stock options." -msgstr "" -"Ange ett antal för att aktivera hanteringen av lagersaldo för denna " -"variation. Lämna tomt för att använda variabelt lagersaldo." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:66 -msgid "Price:" -msgstr "Pris:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:70 -msgid "Sale Price:" -msgstr "Reapris:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:70 -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Schedule" -msgstr "Schemalägg" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:70 -msgid "Cancel schedule" -msgstr "Avaktivera schema" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:77 -msgid "Sale start date:" -msgstr "Datum för reastart:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:78 -#: admin/post-types/writepanels/writepanel-product_data.php:136 -msgctxt "placeholder" -msgid "From…" -msgstr "Från…" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:81 -msgid "Sale end date:" -msgstr "Datum för reaslut:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:82 -#: admin/post-types/writepanels/writepanel-product_data.php:137 -msgctxt "placeholder" -msgid "To…" -msgstr "Till…" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:90 -msgid "" -"Enter a weight for this variation or leave blank to use the parent product " -"weight." -msgstr "" -"Uppge en vikt för den här varianten eller lämna blankt för att använda " -"förälderns vikt." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:98 -msgid "Dimensions (L×W×H)" -msgstr "Dimensioner (L×B×H)" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:109 -msgid "Shipping class:" -msgstr "Fraktklass:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:113 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:53 -msgid "Same as parent" -msgstr "Samma som förälder" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:123 -msgid "Tax class:" -msgstr "Momssats:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:133 -msgid "File paths:" -msgstr "Sökväg för fil:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:133 -msgid "" -"Enter one or more File Paths, one per line, to make this variation a " -"downloadable product, or leave blank." -msgstr "" -"Uppge sökväg till en eller flera filer (dock endast en per rad) för att göra " -"den här varianten till en nedladdningsbar produkt. Lämna annars tomt." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:134 -#: admin/post-types/writepanels/writepanel-product_data.php:153 -msgid "File paths/URLs, one per line" -msgstr "Sökväg för fil/URL, en per rad" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:135 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Choose a file" -msgstr "Välj en fil" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:135 -msgid "Upload" -msgstr "Ladda upp" - -#: admin/post-types/writepanels/variation-admin-html.php:135 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Insert file URL" -msgstr "Ange URL till fil" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:140 -msgid "Download Limit:" -msgstr "Gräns för nedladdning:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:140 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Leave blank for unlimited re-downloads." -msgstr "Lämna blankt för obegränsad åternedladdning" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:148 -msgid "Download Expiry:" -msgstr "Nerladdning upphör:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:148 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "" -"Enter the number of days before a download link expires, or leave blank." -msgstr "" -"Ange giltighetstiden för nedladdningslänken (antal dagar), eller lämna tomt." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:162 -msgid "Enabled" -msgstr "Aktiverad" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:164 -msgid "" -"Enable this option if access is given to a downloadable file upon purchase " -"of a product" -msgstr "" -"Aktivera det här alternativet om tillgång till nedladdningsbar fil ges vid " -"köp av produkt" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:166 -msgid "" -"Enable this option if a product is not shipped or there is no shipping cost" -msgstr "" -"Aktivera det här alternativet om en produkt inte kan skickas eller om det " -"inte finns någon fraktkostnad" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Coupon description" -msgstr "Kupongbeskrivning" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Optionally enter a description for this coupon for your reference." -msgstr "Valfri beskrivning för din egen referens." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:42 -msgid "Discount type" -msgstr "Rabattyp" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Enter an amount e.g. 2.99" -msgstr "Uppge ett belopp t.ex. 2.99" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "Enable free shipping" -msgstr "Aktivera fri frakt" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "" -"Check this box if the coupon grants free shipping. The free " -"shipping method must be enabled with the \"must use coupon\" setting " -"checked." -msgstr "" -"Kryssa i denna ruta om kupongen ska aktivera fri frakt. Metod " -"för fri frakt måste ställas in för att kräva kupong för fri frakt." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "Individual use" -msgstr "Enskilt användande" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "" -"Check this box if the coupon cannot be used in conjunction with other " -"coupons." -msgstr "" -"Kryssa i den här rutan om kupongen inte kan användas tillsammans med andra " -"kuponger." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "Apply before tax" -msgstr "Applicera innan skatt" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "" -"Check this box if the coupon should be applied before calculating cart tax." -msgstr "" -"Kryssa i rutan om kupongvärdet ska dras av innan momsen/skatten beräknas." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:62 -msgid "Minimum amount" -msgstr "Minsta mängd" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:62 -msgid "No minimum" -msgstr "Inget minimum" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:62 -msgid "" -"This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "" -"Detta fält låter dig ange en lägsta summa för att denna kupong ska kunna " -"användas." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:71 -#: admin/woocommerce-admin-taxonomies.php:28 -#: admin/woocommerce-admin-taxonomies.php:122 -msgid "Products" -msgstr "Produkter" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:72 -#: admin/post-types/writepanels/writepanel-order_data.php:396 -#: admin/post-types/writepanels/writepanel-product_data.php:500 -#: admin/post-types/writepanels/writepanel-product_data.php:521 -#: admin/woocommerce-admin-reports.php:1229 -msgid "Search for a product…" -msgstr "Sök efter en produkt…" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:91 -msgid "" -"Products which need to be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are discounted." -msgstr "" -"Produkter som måste finnas i varukorgen för att denna kupong ska kunna " -"användas eller för att \"Produktrabatter\" ska rabatteras." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:96 -msgid "Exclude products" -msgstr "Exkludera produkter" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:97 -msgid "Search for a product…" -msgstr "Sök efter en produkt..." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:116 -msgid "" -"Products which must not be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are not discounted." -msgstr "" -"Produkter som inte får finnas i varukorgen för att denna kupong ska kunna " -"användas, eller för att \"Produktrabatter\" ska rabatteras." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:123 -msgid "Product categories" -msgstr "Produktkategorier" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:124 -msgid "Any category" -msgstr "Alla kategorier" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:132 -msgid "" -"A product must be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will be discounted." -msgstr "" -"En produkt från denna kategori måste finnas i varukorgen för att kupongen " -"ska vara giltig, eller för att \"Produktrabatter\" ska rabatteras." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:137 -msgid "Exclude categories" -msgstr "Exkludera kategorier" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:138 -msgid "No categories" -msgstr "Inga kategorier" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:146 -msgid "" -"Product must not be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will not be discounted." -msgstr "" -"Produkter från denna kategori får inte finnas i varukorgen för att kupongen " -"ska vara giltig, eller för att \"Produktrabatter\" inte ska rabatteras." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "Customer emails" -msgstr "E-post till kunder" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "Any customer" -msgstr "Alla kunder" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "" -"Comma separate email addresses to restrict this coupon to specific billing " -"and user emails." -msgstr "" -"Kommaseparerad lista över e-postadresser som denna kupong är giltig för." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:159 -msgid "Usage limit" -msgstr "Användningsgräns" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:159 -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "Obegränsad användning" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:159 -msgid "How many times this coupon can be used before it is void." -msgstr "Hur många gånger kan denna kupong användas?" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:165 -msgctxt "placeholder" -msgid "Never expire" -msgstr "Upphör aldrig" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:165 -msgid "The date this coupon will expire, YYYY-MM-DD." -msgstr "Kupongen är giltig till och med detta datum, YYYY-MM-DD." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:202 -msgid "" -"Coupon code already exists - customers will use the latest coupon with this " -"code." -msgstr "" -"Kupongkoden finns redan - kunder kommer att använda den senaste kupongen med " -"denna kod." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:59 -msgid "Order Details" -msgstr "Orderdetaljer" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:62 -msgid "Order number" -msgstr "Ordernummer" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:67 -msgid "Customer IP:" -msgstr "Kundens IP-nummer:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:74 -msgid "General Details" -msgstr "Generell information" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:76 -msgid "Order status:" -msgstr "Orderstatus:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:86 -msgid "Order Date:" -msgstr "Orderdatum:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:87 -msgid "h" -msgstr "h" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#: admin/settings/settings-init.php:630 -msgid "m" -msgstr "m" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:91 -msgid "Customer:" -msgstr "Kund:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:131 -msgid "Customer Note:" -msgstr "Kundnotering:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:132 -msgid "Customer's notes about the order" -msgstr "Kundens notering gällande ordern" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:140 -msgid "Billing Details" -msgstr "Debiteringsinformation" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:144 -#: admin/post-types/writepanels/writepanel-order_data.php:234 -msgid "First Name" -msgstr "Förnamn" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:148 -#: admin/post-types/writepanels/writepanel-order_data.php:238 -msgid "Last Name" -msgstr "Efternamn" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:152 -#: admin/post-types/writepanels/writepanel-order_data.php:242 -#: admin/woocommerce-admin-users.php:155 admin/woocommerce-admin-users.php:204 -msgid "Company" -msgstr "Företag" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:156 -#: admin/post-types/writepanels/writepanel-order_data.php:246 -#: admin/woocommerce-admin-users.php:159 admin/woocommerce-admin-users.php:208 -msgid "Address 1" -msgstr "Adress 1" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:160 -#: admin/post-types/writepanels/writepanel-order_data.php:250 -#: admin/woocommerce-admin-users.php:163 admin/woocommerce-admin-users.php:212 -msgid "Address 2" -msgstr "Adress 2" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:164 -#: admin/post-types/writepanels/writepanel-order_data.php:254 -#: admin/settings/settings-tax-rates.php:42 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-users.php:167 admin/woocommerce-admin-users.php:216 -msgid "City" -msgstr "Stad" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:168 -#: admin/post-types/writepanels/writepanel-order_data.php:258 -#: admin/woocommerce-admin-users.php:171 admin/woocommerce-admin-users.php:220 -msgid "Postcode" -msgstr "Postnummer" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:172 -#: admin/post-types/writepanels/writepanel-order_data.php:262 -#: admin/woocommerce-admin-users.php:179 admin/woocommerce-admin-users.php:228 -msgid "Country" -msgstr "Land" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:175 -#: admin/post-types/writepanels/writepanel-order_data.php:265 -msgid "Select a country…" -msgstr "Välj land…" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:178 -#: admin/post-types/writepanels/writepanel-order_data.php:268 -#: admin/woocommerce-admin-users.php:175 admin/woocommerce-admin-users.php:224 -msgid "State/County" -msgstr "Län" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:182 -#: admin/woocommerce-admin-users.php:187 -msgid "Email" -msgstr "E-post" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:185 -msgid "Phone" -msgstr "Telefon" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:193 -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#: admin/post-types/writepanels/writepanel-order_data.php:277 -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "Address" -msgstr "Adress" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:195 -msgid "No billing address set." -msgstr "Ingen debiteringsadress angiven." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:208 -msgid "Load billing address" -msgstr "Ladda kundens fakturaadress" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:230 -msgid "Shipping Details" -msgstr "Leveransinformation" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "No shipping address set." -msgstr "Ingen leveransadress angiven." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Load shipping address" -msgstr "Ladda kundens leveransadress" - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Copy from billing" -msgstr "Kopiera från fakturering" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:339 -msgid "Item" -msgstr "Artikel" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:343 -#: admin/post-types/writepanels/writepanel-product_data.php:189 -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Class" -msgstr "Momsgrupp" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:343 -msgid "Tax class for the line item" -msgstr "Momsgrupp för radens artikel" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:345 -msgid "Qty" -msgstr "Antal" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:347 -msgid "Cost" -msgstr "Kostnad" - -#: admin/post-types/writepanels/writepanel-order_data.php:347 -msgid "Line subtotals are before pre-tax discounts, totals are after." -msgstr "Summa per rad är före före-skattrabatter, summa är efter." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:349 -#: admin/settings/settings-tax-rates.php:387 -#: admin/settings/settings-tax-rates.php:466 -#: admin/woocommerce-admin-content.php:48 -#: admin/woocommerce-admin-settings.php:223 -msgid "Tax" -msgstr "Moms" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:384 -msgid "Delete Lines" -msgstr "Radera notering" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:386 -msgid "Stock Actions" -msgstr "Lagerhändelser" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:387 -msgid "Reduce Line Stock" -msgstr "Minska lagersaldo" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:388 -msgid "Increase Line Stock" -msgstr "Öka lagersaldo" - -#: admin/post-types/writepanels/writepanel-order_data.php:392 -#: admin/post-types/writepanels/writepanel-order_data.php:449 -msgid "Apply" -msgstr "Genomför" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:398 -msgid "Add item(s)" -msgstr "Lägg till artiklar" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:399 -msgid "Add fee" -msgstr "Lägg till avgift" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:430 -msgid "Resend order emails" -msgstr "Skicka om e-post om order" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:458 -msgid "Move to Trash" -msgstr "Flytta till papperskorgen" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:463 -msgid "Save Order" -msgstr "Spara order" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:463 -msgid "Save/update the order" -msgstr "Spara/uppdatera ordern" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:488 -msgid "Discounts" -msgstr "Rabatter" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:492 -msgid "Cart Discount:" -msgstr "Total Rabatt:" - -#: admin/post-types/writepanels/writepanel-order_data.php:492 -msgid "Discounts before tax - calculated by comparing subtotals to totals." -msgstr "Rabatter före skatt - beräknas genom att jämföra delsumma med summa." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:500 -msgid "Order Discount:" -msgstr "Orderns Rabatt:" - -#: admin/post-types/writepanels/writepanel-order_data.php:500 -msgid "Discounts after tax - user defined." -msgstr "Rabatter efter skatt - användardefinierat" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:533 -msgid "Label:" -msgstr "Etikett:" - -#: admin/post-types/writepanels/writepanel-order_data.php:534 -msgid "The shipping title the customer sees" -msgstr "Titel som kunden ser för frakt" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:541 -msgid "Cost:" -msgstr "Pris:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:542 -msgid "(ex. tax)" -msgstr " (exkl. moms)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:549 -msgid "Method:" -msgstr "Metod:" - -#: admin/post-types/writepanels/writepanel-order_data.php:571 -#: admin/post-types/writepanels/writepanel-order_data.php:573 -#: admin/post-types/writepanels/writepanel-order_data.php:666 -#: admin/post-types/writepanels/writepanel-order_data.php:668 -msgid "Other" -msgstr "Övrigt" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:584 -msgid "Tax Rows" -msgstr "Momsrader" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:609 -msgid "+ Add tax row" -msgstr "+ Lägg till momsrad" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:609 -msgid "" -"These rows contain taxes for this order. This allows you to display multiple " -"or compound taxes rather than a single total." -msgstr "" -"Dessa rader innehåller moms/skatt för denna order. Detta låter dig visa " -"flera eller sammanräknad skatt istället för en totalsumma." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:613 -msgid "Tax Totals" -msgstr "Summa moms" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:617 -msgid "Total tax for line items + fees." -msgstr "Moms för raden samt avgifter" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:636 -#: admin/post-types/writepanels/writepanels-init.php:70 -msgid "Order Totals" -msgstr "Ordertotal" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:640 -msgid "Order Total:" -msgstr "Totalt för ordern:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:648 -msgid "Payment Method:" -msgstr "Betalningsmetod:" - -#: admin/post-types/writepanels/writepanel-order_data.php:678 -msgid "Calc taxes" -msgstr "Beräkna moms" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:679 -msgid "Calc totals" -msgstr "Varukorg totalt" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:57 -msgid "Choose a downloadable product…" -msgstr "Välj en nerladdingsbar produkt…" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:89 -msgid "Grant Access" -msgstr "Ge tillgång" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:127 -msgid "" -"Could not grant access - the user may already have permission for this file." -msgstr "" -"Kunde inte ge tillgång - användaren kan redan ha tillgång till denna fil." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:150 -msgid "Are you sure you want to revoke access to this download?" -msgstr "Är du säker att du vill ta bort tillgången till denna nedladdning?" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -msgid "added %s ago" -msgstr "tillagd för %s timmar sedan" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -msgid "Delete note" -msgstr "Radera notering" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:50 -msgid "There are no notes for this order yet." -msgstr "Det finns inga noteringar för denna order ännu." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "Add note" -msgstr "Lägg till notering" - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "" -"Add a note for your reference, or add a customer note (the user will be " -"notified)." -msgstr "" -"Lägg till en egen notis eller lägg till ett kundmeddelande (användaren " -"kommer att notifieras)." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:62 -msgid "Customer note" -msgstr "Kundnotering" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:63 -msgid "Private note" -msgstr "Egen notering" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:65 -#: admin/post-types/writepanels/writepanel-product_data.php:478 -msgid "Add" -msgstr "Lägg till" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations for variable products are defined here." -msgstr "Varianter för variabla produkter definieras här." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations" -msgstr "Varianter" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:65 -msgid "" -"Before adding variations, add and save some attributes on the " -"Attributes tab." -msgstr "" -"Innan du lägger till variationer måste du lägga till och spara ett eller " -"flera attribut under Attribut-fliken." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:67 -msgid "Learn more" -msgstr "Läs mer" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:325 -msgid "Close all" -msgstr "Stäng alla" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:325 -msgid "Expand all" -msgstr "Expandera alla" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:75 -msgid "Bulk edit:" -msgstr "Redigera fler" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:77 -msgid "Toggle "Enabled"" -msgstr "Aktiverad" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:78 -msgid "Toggle "Downloadable"" -msgstr "Aktivera/avaktivera nedladdningsbar" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:79 -msgid "Toggle "Virtual"" -msgstr "Aktivera/avaktivera virtuell" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:80 -msgid "Delete all variations" -msgstr "Ta bort alla variationer" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:81 -msgid "Prices" -msgstr "Priser" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:82 -msgid "Sale prices" -msgstr "Reapriser" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:88 -msgid "File Path" -msgstr "Sökväg för fil" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:89 -msgid "Download limit" -msgstr "Nedladdningsgräns" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:90 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Download Expiry" -msgstr "Nerladdning upphör" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:92 -msgid "Go" -msgstr "Kör" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:192 -msgid "Add Variation" -msgstr "Lägg till variant" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:194 -msgid "Link all variations" -msgstr "Länka alla varianter" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:196 -msgid "Default selections:" -msgstr "Standardval:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:209 -msgid "No default" -msgstr "Inte standard" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:273 -msgid "" -"Are you sure you want to link all variations? This will create a new " -"variation for each and every possible combination of variation attributes " -"(max 50 per run)." -msgstr "" -"Är du säker på att du vill länka alla variationer? Detta kommer skapa en ny " -"variation för varje möjlig kombination av alla attribut (max 50 per omgång)." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:290 -msgid "variation added" -msgstr "variation tillagd" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:292 -msgid "variations added" -msgstr "variationer tillagda" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:294 -msgid "No variations added" -msgstr "Inga variationer tillagda" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:317 -msgid "Are you sure you want to remove this variation?" -msgstr "Är du säker på att du vill ta bort den här varianten?" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:373 -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "" -"Är du säker på att du vill radera alla variationer? Detta kan inte ångras." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:376 -msgid "Last warning, are you sure?" -msgstr "Sista varningen, är du säker?" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:413 -msgid "Enter a value" -msgstr "Ange värde" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:504 -#: admin/woocommerce-admin-taxonomies.php:62 -#: admin/woocommerce-admin-taxonomies.php:154 -msgid "Choose an image" -msgstr "Välj ett bild" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:506 -msgid "Set variation image" -msgstr "Välj bild för variation" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:550 -msgid "Variable product" -msgstr "Variabel produkt" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:616 -msgid "Variation #%s of %s" -msgstr "Variation %s of %s" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:43 -msgid "Product Type" -msgstr "Produkttyp" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:53 -msgid "Virtual products are intangible and aren't shipped." -msgstr "Virtuella produkter är immateriella och skickas inte." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:59 -msgid "Downloadable products give access to a file upon purchase." -msgstr "Nedladdningsbara produkter ger tillgång till fil efter köp." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:77 -#: admin/woocommerce-admin-content.php:44 -#: admin/woocommerce-admin-settings.php:219 -msgid "General" -msgstr "Generellt" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:79 -#: admin/woocommerce-admin-content.php:47 -#: admin/woocommerce-admin-settings.php:222 -msgid "Inventory" -msgstr "Lagersaldo" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:83 -msgid "Linked Products" -msgstr "Länkade produkter" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:85 -#: admin/woocommerce-admin-attributes.php:298 -#: admin/woocommerce-admin-init.php:61 -msgid "Attributes" -msgstr "Attribut" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:87 -msgid "Advanced" -msgstr "Avancerat" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "Stock Keeping Unit" -msgstr "Artikelnummer" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "" -"SKU refers to a Stock-keeping unit, a unique identifier for each distinct " -"product and service that can be purchased." -msgstr "" -"SKU är Stock-Keeping Unit, ett unikt artikelnummer för varje produkt och " -"tjänst som kan köpas." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Product URL" -msgstr "URL till produkt" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Enter the external URL to the product." -msgstr "Uppge en extern URL till produkten." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "Button text" -msgstr "Knapptext" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgctxt "placeholder" -msgid "Buy product" -msgstr "Köp produkt" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "This text will be shown on the button linking to the external product." -msgstr "Denna text visas på knappen som länkar till den externa produkten." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:119 -msgid "Regular Price" -msgstr "Ordinarie pris" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Sale Price" -msgstr "Reapris" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:135 -msgid "Sale Price Dates" -msgstr "Reaprisdatum" - -# @ woocommerce -# @ default -#: admin/post-types/writepanels/writepanel-product_data.php:138 -#: admin/post-types/writepanels/writepanel-product_data.php:1068 -msgid "Cancel" -msgstr "Avbryt" - -#: admin/post-types/writepanels/writepanel-product_data.php:152 -msgid "File paths (one per line)" -msgstr "Sökvägar för fil (en per rad)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Download Limit" -msgstr "Gräns för nedladdning" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:176 -msgid "Tax Status" -msgstr "Momsstatus" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:178 -msgid "Shipping only" -msgstr "Endast frakt" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:179 -msgid "None" -msgstr "Ingen" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:215 -msgid "" -"Stock quantity. If this is a variable product this value will be used to " -"control stock for all variations, unless you define stock at variation level." -msgstr "" -"Lagersaldo. Om denna produkt är en variabel produkt kontrollerar detta värde " -"lagersaldot för samtliga variationer om du inte definierar lagersaldo för " -"varje variation." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:226 -msgid "Stock status" -msgstr "Lagerstatus" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:229 -msgid "" -"Controls whether or not the product is listed as \"in stock\" or \"out of " -"stock\" on the frontend." -msgstr "" -"Styr om produkten visas som \"i lager\" eller \"slut i lager\" i butiken." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:236 -msgid "Allow Backorders?" -msgstr "Tillåt bokning av produkter?" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:237 -msgid "Do not allow" -msgstr "Tillåt inte" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:238 -msgid "Allow, but notify customer" -msgstr "Tillåt men meddela kund" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:239 -msgid "Allow" -msgstr "Tillåt" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:240 -msgid "" -"If managing stock, this controls whether or not backorders are allowed for " -"this product and variations. If enabled, stock quantity can go below 0." -msgstr "" -"Om lagersaldo hanteras styr detta om restordrar tillåts för denna produkt " -"eller variation. Om detta tillåts kan lagersaldo vara lägre än noll." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:251 -msgid "Sold Individually" -msgstr "Säljs individuellt" - -#: admin/post-types/writepanels/writepanel-product_data.php:251 -msgid "" -"Enable this to only allow one of this item to be bought in a single order" -msgstr "" -"Aktivera detta för att endast tillåta att ett exemplar av denna artikel kan " -"köpas i samma order" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:269 -msgid "Weight in decimal form" -msgstr "Vikt i decimalform" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:280 -msgid "Dimensions" -msgstr "Dimensioner" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:286 -msgid "LxWxH in decimal form" -msgstr "LxBxH i decimalform" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:307 -msgid "No shipping class" -msgstr "Ingen fraktklass" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:313 -msgid "Shipping class" -msgstr "Fraktklass" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:313 -msgid "" -"Shipping classes are used by certain shipping methods to group similar " -"products." -msgstr "" -"Fraktklasser används av vissa fraktmetoder för att gruppera liknande " -"produkter." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:376 -#: admin/post-types/writepanels/writepanel-product_data.php:453 -#: admin/woocommerce-admin-init.php:396 -msgid "Value(s)" -msgstr "Värde(n)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:378 -msgid "Select terms" -msgstr "Välj villkor" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:390 -msgid "Select all" -msgstr "Välj alla" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:390 -msgid "Select none" -msgstr "Välj ingen" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:392 -msgid "Add new" -msgstr "Lägg till ny" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:405 -msgid "Pipe separate terms" -msgstr "Pipe separata villkor" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:412 -#: admin/post-types/writepanels/writepanel-product_data.php:459 -#: admin/woocommerce-admin-init.php:398 -msgid "Visible on the product page" -msgstr "Synlig på produktsidan" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:418 -#: admin/post-types/writepanels/writepanel-product_data.php:465 -#: admin/woocommerce-admin-init.php:399 -msgid "Used for variations" -msgstr "Använd variationer" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:454 -#: admin/woocommerce-admin-init.php:397 -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "Mata in text eller attribut avskilda med pipe (|)." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:480 -msgid "Custom product attribute" -msgstr "Eget produktattribut" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:492 -msgid "Save attributes" -msgstr "Spara attribut" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:499 -msgid "Up-Sells" -msgstr "Uppförsäljning" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:518 -msgid "" -"Up-sells are products which you recommend instead of the currently viewed " -"product, for example, products that are more profitable or better quality or " -"more expensive." -msgstr "" -"Uppförsäljning är produkter som du rekommenderar istället för visad produkt, " -"t.ex. produkter som är mer prisvärda eller har en högre kvalitet eller är " -"dyrare." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:520 -msgid "Cross-Sells" -msgstr "Korsförsäljning" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:539 -msgid "" -"Cross-sells are products which you promote in the cart, based on the current " -"product." -msgstr "" -"Korsförsäljning är produkter som du vill marknadsföra i varukorgen, baserad " -"på existerande produkt." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:549 -msgid "Choose a grouped product…" -msgstr "Välj en grupperad produkt…" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:575 -msgid "Grouping" -msgstr "Gruppering" - -#: admin/post-types/writepanels/writepanel-product_data.php:575 -msgid "Set this option to make this product part of a grouped product." -msgstr "" -"Markera detta för att göra denna produkt till del av en grupperad produkt." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:595 -msgid "Purchase Note" -msgstr "Köpnotering" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:595 -msgid "Enter an optional note to send the customer after purchase." -msgstr "Skriv in valfri notering att skicka till kund efter köp." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:602 -msgid "Menu order" -msgstr "Menyordning" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:602 -msgid "Custom ordering position." -msgstr "Anpassad position." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:610 -msgid "Enable reviews" -msgstr "Tillåt recensioner" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:699 -msgid "Product SKU must be unique." -msgstr "Produktens artikelnummer måste vara unikt." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1032 -msgid "Catalog/search" -msgstr "Katalog/Sök" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1039 -msgid "Catalog visibility:" -msgstr "Synlighet i katalog:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1055 -msgid "" -"Define the loops this product should be visible in. The product will still " -"be accessible directly." -msgstr "" -"Definiera vilka loopar denna produkt ska vara synlig i. Produkten kommer " -"fortfarande vara direkt nåbar." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1061 -msgid "Enable this option to feature this product." -msgstr "Välj detta för att markera som utvald produkt" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1063 -msgid "Featured Product" -msgstr "Utvald produkt" - -# @ default -#: admin/post-types/writepanels/writepanel-product_data.php:1067 -msgid "OK" -msgstr "OK" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -msgid "Delete image" -msgstr "Radera bild" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -#: admin/woocommerce-admin-attributes.php:322 -msgid "Delete" -msgstr "Radera" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:53 -msgid "Add product gallery images" -msgstr "Lägg till bilder i produktgalleri" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:79 -msgid "Add Images to Product Gallery" -msgstr "Lägg till bilder i produktgalleri" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:81 -msgid "Add to gallery" -msgstr "Lägg till i galleri" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:47 -msgid "Product Gallery" -msgstr "Produktgalleri" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:55 -msgid "Product Short Description" -msgstr "Kort beskrivning av produkt" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:64 -msgid "Reviews" -msgstr "Recensioner" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:68 -msgid "Order Data" -msgstr "Orderdata" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "Order Items" -msgstr "Orderrader" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "" -"Note: if you edit quantities or remove items from the order you will need to " -"manually update stock levels." -msgstr "" -"Notera att du måste ändra lagersaldo manuellt om du ändrar antal eller tar " -"bort produkter från ordern." - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "Downloadable Product Permissions" -msgstr "Behörighet för nedladdningsbar produkt" - -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "" -"Note: Permissions for order items will automatically be granted when the " -"order status changes to processing/completed." -msgstr "" -"Notera att behörigheten för artiklar kommer att tillåtas automatiskt när " -"orderns status ändras till behandlas/slutförd." - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:73 -msgid "Order Actions" -msgstr "Orderhändelser" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:81 -msgid "Coupon Data" -msgstr "Kupongdata" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:100 -msgid "Coupon code" -msgstr "Kupongkod" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:101 -msgid "Product name" -msgstr "Produktnamn" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:185 -msgid "Allow reviews." -msgstr "Tillåt recensioner." - -# @ default -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "" -"Allow trackbacks and pingbacks on this " -"page." -msgstr "" -"Tillåt trackbacks och pingbacks på " -"denna sida." - -# @ default -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" -msgstr "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:23 -msgid "Styles" -msgstr "Stilar" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:43 -msgid "Primary" -msgstr "Primär" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:43 -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "Handlingsknappar/pris-slider/navigering" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:44 -msgid "Secondary" -msgstr "Sekundär" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:44 -msgid "Buttons and tabs" -msgstr "Knappar och flikar" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:45 -msgid "Highlight" -msgstr "Markering" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:45 -msgid "Price labels and Sale Flashes" -msgstr "Prislappar och rea-lappar" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:46 -msgid "Content" -msgstr "Innehåll" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:46 -msgid "Your themes page background - used for tab active states" -msgstr "Ditt temas bakgrund - används för aktiva flikar" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:47 -msgid "Subtext" -msgstr "Undertext" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:47 -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "Används för vissa texter och asides - brödsmulor, finstilt osv." - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:51 -msgid "" -"To edit colours woocommerce/assets/css/woocommerce-base.less " -"and woocommerce.css need to be writable. See the Codex for more " -"information." -msgstr "" -"För att redigera färger måste filerna woocommerce/assets/css/" -"woocommerce-base.less och woocommerce.css vara " -"skrivbara. Se artikel i Codex för mer information." - -# @ woocommerce -#: admin/settings/settings-init.php:18 -msgid "Localisation" -msgstr "Språk" - -# @ woocommerce -#: admin/settings/settings-init.php:19 -msgid "Use informal localisation for %s" -msgstr "Använd informell språkfil för %s" - -# @ woocommerce -#: admin/settings/settings-init.php:27 -msgid "General Options" -msgstr "Generella alternativ" - -# @ woocommerce -#: admin/settings/settings-init.php:30 -msgid "Base Country/Region" -msgstr "Basland" - -# @ woocommerce -#: admin/settings/settings-init.php:31 -msgid "" -"This is the base country for your business. Tax rates will be based on this " -"country." -msgstr "" -"Det här är landet som är bas för din verksamhet. Momsregler baseras på detta " -"land." - -# @ woocommerce -#: admin/settings/settings-init.php:40 -msgid "Currency" -msgstr "Valuta" - -# @ woocommerce -#: admin/settings/settings-init.php:41 -msgid "" -"This controls what currency prices are listed at in the catalog and which " -"currency gateways will take payments in." -msgstr "" -"Det här kontrollerar vilken valuta priser är listade med i produktkatalogen " -"och vilken betalningsmetod som kommer att användas." - -# @ woocommerce -#: admin/settings/settings-init.php:49 -msgid "US Dollars ($)" -msgstr "US Dollar ($)" - -# @ woocommerce -#: admin/settings/settings-init.php:50 -msgid "Euros (€)" -msgstr "Euro (€)" - -# @ woocommerce -#: admin/settings/settings-init.php:51 -msgid "Pounds Sterling (£)" -msgstr "Brittiska pund (£)" - -# @ woocommerce -#: admin/settings/settings-init.php:52 -msgid "Australian Dollars ($)" -msgstr "Australiska Dollar ($)" - -# @ woocommerce -#: admin/settings/settings-init.php:53 -msgid "Brazilian Real ($)" -msgstr "Brasilianska Real ($)" - -# @ woocommerce -#: admin/settings/settings-init.php:54 -msgid "Canadian Dollars ($)" -msgstr "Kanadensiska Dollar ($)" - -# @ woocommerce -#: admin/settings/settings-init.php:55 -msgid "Czech Koruna (Kč)" -msgstr "Tjeckiska Koruna (Kč)" - -# @ woocommerce -#: admin/settings/settings-init.php:56 -msgid "Danish Krone" -msgstr "Danska kronor" - -# @ woocommerce -#: admin/settings/settings-init.php:57 -msgid "Hong Kong Dollar ($)" -msgstr "Hong Kong Dollar ($)" - -# @ woocommerce -#: admin/settings/settings-init.php:58 -msgid "Hungarian Forint" -msgstr "Ungerska Forinter" - -# @ woocommerce -#: admin/settings/settings-init.php:59 -msgid "Israeli Shekel" -msgstr "Israeliska Shekel" - -# @ woocommerce -#: admin/settings/settings-init.php:60 -msgid "Chinese Yuan (¥)" -msgstr "Kinesiska Yuan (¥)" - -# @ woocommerce -#: admin/settings/settings-init.php:61 -msgid "Japanese Yen (¥)" -msgstr "Japanska Yen (¥)" - -# @ woocommerce -#: admin/settings/settings-init.php:62 -msgid "Malaysian Ringgits (RM)" -msgstr "Malaysiska Ringgits (RM)" - -# @ woocommerce -#: admin/settings/settings-init.php:63 -msgid "Mexican Peso ($)" -msgstr "Mexikanska Peso ($)" - -# @ woocommerce -#: admin/settings/settings-init.php:64 -msgid "New Zealand Dollar ($)" -msgstr "Nya Zeländska Dollar ($)" - -# @ woocommerce -#: admin/settings/settings-init.php:65 -msgid "Norwegian Krone" -msgstr "Norska kronor" - -# @ woocommerce -#: admin/settings/settings-init.php:66 -msgid "Philippine Pesos" -msgstr "Philippinska Pesos" - -# @ woocommerce -#: admin/settings/settings-init.php:67 -msgid "Polish Zloty" -msgstr "Polska Zloty" - -# @ woocommerce -#: admin/settings/settings-init.php:68 -msgid "Singapore Dollar ($)" -msgstr "Singapore Dollar ($)" - -# @ woocommerce -#: admin/settings/settings-init.php:69 -msgid "Swedish Krona" -msgstr "Svensk krona" - -# @ woocommerce -#: admin/settings/settings-init.php:70 -msgid "Swiss Franc" -msgstr "Schweiziska Franc" - -# @ woocommerce -#: admin/settings/settings-init.php:71 -msgid "Taiwan New Dollars" -msgstr "Taiwanesiska Nya Dollar" - -# @ woocommerce -#: admin/settings/settings-init.php:72 -msgid "Thai Baht" -msgstr "Thailändska Baht" - -# @ woocommerce -#: admin/settings/settings-init.php:73 -msgid "Turkish Lira (TL)" -msgstr "Turkisk Lira (TL)" - -# @ woocommerce -#: admin/settings/settings-init.php:74 -msgid "South African rand (R)" -msgstr "Sydafrikanska rand ®" - -#: admin/settings/settings-init.php:75 -msgid "Romanian Leu (RON)" -msgstr "Rumänska Leu (RON)" - -# @ woocommerce -#: admin/settings/settings-init.php:81 -msgid "Allowed Countries" -msgstr "Tillåtna länder" - -# @ woocommerce -#: admin/settings/settings-init.php:82 -msgid "These are countries that you are willing to ship to." -msgstr "Det här länderna är du villig att leverera till." - -# @ woocommerce -#: admin/settings/settings-init.php:90 -msgid "All Countries" -msgstr "Alla länder" - -# @ woocommerce -#: admin/settings/settings-init.php:91 admin/settings/settings-init.php:96 -msgid "Specific Countries" -msgstr "Specifika länder" - -# @ woocommerce -#: admin/settings/settings-init.php:108 -msgid "Checkout and Accounts" -msgstr "Utcheckning och konton" - -# @ woocommerce -#: admin/settings/settings-init.php:108 -msgid "" -"The following options control the behaviour of the checkout process and " -"customer accounts." -msgstr "" -"Följande inställningar styr processen vid utcheckning samt användarkonton." - -# @ woocommerce -#: admin/settings/settings-init.php:111 -#: admin/woocommerce-admin-install.php:195 -msgid "Checkout" -msgstr "Till kassan" - -# @ woocommerce -#: admin/settings/settings-init.php:112 -msgid "Enable guest checkout (no account required)" -msgstr "Tillåt gästutcheckning (inget konto krävs)" - -# @ woocommerce -#: admin/settings/settings-init.php:120 -msgid "Show order comments section" -msgstr "Visa sektion för ordernkommetarer" - -# @ woocommerce -#: admin/settings/settings-init.php:128 -msgid "Security" -msgstr "Säkerhet" - -# @ woocommerce -#: admin/settings/settings-init.php:129 -msgid "Force secure checkout" -msgstr "Tvinga säker anslutning" - -# @ woocommerce -#: admin/settings/settings-init.php:135 -msgid "" -"Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)" -msgstr "Tvinga SSL (HTTPS) vid utcheckning (ett SSL-certifikat krävs)" - -# @ woocommerce -#: admin/settings/settings-init.php:139 -msgid "Un-force HTTPS when leaving the checkout" -msgstr "Tvinga användaren att lämna HTTPS när kassan lämnas" - -# @ woocommerce -#: admin/settings/settings-init.php:148 admin/woocommerce-admin-content.php:75 -#: admin/woocommerce-admin-reports.php:72 -msgid "Coupons" -msgstr "Rabattkuponger" - -# @ woocommerce -#: admin/settings/settings-init.php:149 -msgid "Enable coupons" -msgstr "Aktivera kuponger" - -# @ woocommerce -#: admin/settings/settings-init.php:158 -msgid "Enable coupon form on cart" -msgstr "Lägg till kupongformulär i varukorg" - -# @ woocommerce -#: admin/settings/settings-init.php:167 -msgid "Enable coupon form on checkout" -msgstr "Aktivera formulär för kuponger vid kassan" - -# @ woocommerce -#: admin/settings/settings-init.php:176 -msgid "Registration" -msgstr "Registrering" - -#: admin/settings/settings-init.php:177 -msgid "Allow registration on the checkout page" -msgstr "Tillåt registrering vid utcheckning" - -#: admin/settings/settings-init.php:185 -msgid "Allow registration on the \"My Account\" page" -msgstr "Tillåt registrering på sidan \"Mitt konto\"" - -#: admin/settings/settings-init.php:193 -msgid "Register using the email address for the username" -msgstr "Använd e-postadress som användarnamn vid registrering" - -# @ woocommerce -#: admin/settings/settings-init.php:201 -msgid "Customer Accounts" -msgstr "Kundkonton" - -# @ woocommerce -#: admin/settings/settings-init.php:202 -msgid "Prevent customers from accessing WordPress admin" -msgstr "Förhindra kunder att nå WordPress administrationspanel" - -# @ woocommerce -#: admin/settings/settings-init.php:210 -msgid "Clear cart when logging out" -msgstr "Rensa varukorg när användare loggar ut" - -# @ woocommerce -#: admin/settings/settings-init.php:218 -msgid "Allow customers to repurchase past orders" -msgstr "Tillåt kunder att köpa tidigare ordrar igen" - -# @ woocommerce -#: admin/settings/settings-init.php:227 -msgid "Styles and Scripts" -msgstr "Stilmallar och skript" - -# @ woocommerce -#: admin/settings/settings-init.php:227 -msgid "" -"The following options affect the styling of your store, as well as how " -"certain features behave." -msgstr "" -"Följande inställningar påverkar din butiks utseende och hur olika funktioner " -"fungerar." - -# @ woocommerce -#: admin/settings/settings-init.php:230 -msgid "Styling" -msgstr "Utseende" - -# @ woocommerce -#: admin/settings/settings-init.php:231 -msgid "Enable WooCommerce CSS styles" -msgstr "Aktivera WooCommerce CSS-stilar" - -# @ woocommerce -#: admin/settings/settings-init.php:242 -msgid "Store Notice" -msgstr "Butiksmeddelande" - -# @ woocommerce -#: admin/settings/settings-init.php:243 -msgid "Enable the \"Demo Store\" notice on your site" -msgstr "Aktivera \"Demobutik\" notisen för din butik" - -#: admin/settings/settings-init.php:250 -msgid "Store Notice Text" -msgstr "Text i butiksnotifiering" - -# @ woocommerce -#: admin/settings/settings-init.php:253 -msgid "" -"This is a demo store for testing purposes — no orders shall be " -"fulfilled." -msgstr "" -"Det här är en demobutik för testning — Inga beställningar kan göras." - -# @ woocommerce -#: admin/settings/settings-init.php:259 -msgid "Scripts" -msgstr "Script" - -# @ woocommerce -#: admin/settings/settings-init.php:260 -msgid "Enable AJAX add to cart buttons on product archives" -msgstr "Aktivera AJAX lägg i varukorgen-knappar i produktarkiven" - -# @ woocommerce -#: admin/settings/settings-init.php:268 -msgid "Enable WooCommerce lightbox" -msgstr "Aktivera WooCommerce lightbox" - -#: admin/settings/settings-init.php:271 -msgid "" -"On the product details page, product gallery images will open in a lightbox. " -"The Add Review form will open in a modal window" -msgstr "" -"Bilder i produktgallerier öppnas i en lightbox på informationssidor för " -"produkter. Recensionsformuläret öppnas i ett modalt fönster." - -# @ woocommerce -#: admin/settings/settings-init.php:277 -msgid "Enable enhanced country select boxes" -msgstr "Använd förbättrad dropdown för val av land" - -# @ woocommerce -#: admin/settings/settings-init.php:286 -msgid "Digital Downloads" -msgstr "Digitala nedladdningar" - -# @ woocommerce -#: admin/settings/settings-init.php:286 -msgid "The following options are specific to downloadable products." -msgstr "Dessa inställningar är specifika för nedladdningsbara produkter." - -# @ woocommerce -#: admin/settings/settings-init.php:289 -msgid "File Download Method" -msgstr "Metod för filnedladdning" - -# @ woocommerce -#: admin/settings/settings-init.php:290 -msgid "" -"Forcing downloads will keep URLs hidden, but some servers may serve large " -"files unreliably. If supported, X-Accel-Redirect/ X-" -"Sendfile can be used to serve downloads instead (server requires " -"mod_xsendfile)." -msgstr "" -"Tvingad nedladdning kommer dölja dina urler men vissa servrar kan hantera " -"stora filer otillräckligt. Om det finns stöd för det kan X-Accel-" -"Redirect/ X-Sendfile användas för att ladda ner filer " -"istället (servern behöver ha mod_xsendfile)." - -# @ woocommerce -#: admin/settings/settings-init.php:298 -msgid "Force Downloads" -msgstr "Tvinga nedladdning" - -# @ woocommerce -#: admin/settings/settings-init.php:299 -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "X-Accel-Redirect/X-Sendfile" - -# @ woocommerce -#: admin/settings/settings-init.php:300 -msgid "Redirect only" -msgstr "Endast omdirigering" - -# @ woocommerce -#: admin/settings/settings-init.php:305 -msgid "Access Restrictions" -msgstr "Åtkomstsbegränsningar" - -# @ woocommerce -#: admin/settings/settings-init.php:306 -msgid "Must be logged in to download files" -msgstr "Måste vara inloggad för att ladda ner filer" - -# @ woocommerce -#: admin/settings/settings-init.php:310 -msgid "This setting does not apply to guest downloads." -msgstr "Denna inställning gäller inte gästnedladdningar." - -# @ woocommerce -#: admin/settings/settings-init.php:315 -msgid "Grant access to downloadable products after payment" -msgstr "Tillåt åtkomst till nedladdningsbara produkter efter betalning" - -# @ woocommerce -#: admin/settings/settings-init.php:319 -msgid "" -"Turn this option off to only grant access when an order is \"complete\", " -"rather than \"processing\"" -msgstr "" -"Stäng av detta för att endast ge åtkomst efter att ordern är \"slutförd\" " -"snarare än \"behandlas\"" - -# @ woocommerce -#: admin/settings/settings-init.php:324 -msgid "Limit Quantity" -msgstr "Begränsa antal" - -# @ woocommerce -#: admin/settings/settings-init.php:325 -msgid "Limit the purchasable quantity of downloadable-virtual items to 1" -msgstr "" -"Begränsa antalet som kan köpas av nedladdningsbara/virtuella produkter till " -"1." - -# @ woocommerce -#: admin/settings/settings-init.php:343 -msgid "" -"Note: The shop page has children - child pages will not work if you enable " -"this option." -msgstr "" -"Notera att butikssidan har undersidor. Undersidorna kommer inte att fungera " -"om du aktiverar denna inställning." - -# @ woocommerce -#: admin/settings/settings-init.php:348 -msgid "Page Setup" -msgstr "Inställningar för sida" - -#: admin/settings/settings-init.php:350 -msgid "" -"Set up core WooCommerce pages here, for example the base page. The base page " -"can also be used in your %sproduct permalinks%s." -msgstr "" -"Ställ in WooCommerce grundsidor, till exempel butikssidan, här. Denna kan " -"också användas i dina %sproduktpermalänkar%s." - -# @ woocommerce -#: admin/settings/settings-init.php:355 -msgid "Shop Base Page" -msgstr "Bassida för butik" - -# @ woocommerce -#: admin/settings/settings-init.php:356 -msgid "" -"This sets the base page of your shop - this is where your product archive " -"will be." -msgstr "" -"Detta anger grundsidan för din butik. Det är här ditt produktarkiv kommer " -"att visas." - -# @ woocommerce -#: admin/settings/settings-init.php:366 -msgid "Base Page Title" -msgstr "Titel för bassida" - -# @ woocommerce -#: admin/settings/settings-init.php:367 -msgid "" -"This title to show on the shop base page. Leave blank to use the page title." -msgstr "" -"Den här titeln visas på din butiks bassida. Lämna blankt för att använda " -"sidtiteln." - -# @ woocommerce -#: admin/settings/settings-init.php:376 -msgid "Terms Page ID" -msgstr "ID för sida med villkor" - -# @ woocommerce -#: admin/settings/settings-init.php:377 -msgid "" -"If you define a \"Terms\" page the customer will be asked if they accept " -"them when checking out." -msgstr "" -"Om du definierar en sida för \"Villkor\" så måste kunden acceptera dessa för " -"att kunna gå vidare med ordern." - -# @ woocommerce -#: admin/settings/settings-init.php:387 -msgid "Logout link" -msgstr "Utloggningslänk" - -# @ woocommerce -#: admin/settings/settings-init.php:388 -msgid "Append a logout link to menus containing \"My Account\"" -msgstr "Lägg till utloggningslänk i menyer innehållande \"Mitt konto\"" - -# @ woocommerce -#: admin/settings/settings-init.php:396 admin/woocommerce-admin-status.php:208 -msgid "Shop Pages" -msgstr "Butikssidor" - -# @ woocommerce -#: admin/settings/settings-init.php:396 -msgid "" -"The following pages need selecting so that WooCommerce knows where they are. " -"These pages should have been created upon installation of the plugin, if not " -"you will need to create them." -msgstr "" -"Följande sidor måste väljas så att WooCommerce vet var de finns. Dessa sidor " -"borde ha skapats när tillägget installerades men annars måste du skapa dem " -"själv." - -# @ woocommerce -#: admin/settings/settings-init.php:399 admin/woocommerce-admin-status.php:219 -msgid "Cart Page" -msgstr "Sida för Varukorg" - -# @ woocommerce -#: admin/settings/settings-init.php:400 -msgid "Page contents: [woocommerce_cart]" -msgstr "Sida: [woocommerce_cart]" - -# @ woocommerce -#: admin/settings/settings-init.php:410 admin/woocommerce-admin-status.php:223 -msgid "Checkout Page" -msgstr "Kassasida" - -# @ woocommerce -#: admin/settings/settings-init.php:411 -msgid "Page contents: [woocommerce_checkout]" -msgstr "Sida: [woocommerce_checkout]" - -# @ woocommerce -#: admin/settings/settings-init.php:421 admin/woocommerce-admin-status.php:227 -msgid "Pay Page" -msgstr "Betalningssida" - -# @ woocommerce -#: admin/settings/settings-init.php:422 -msgid "Page contents: [woocommerce_pay] Parent: \"Checkout\"" -msgstr "Sida: [woocommerce_pay] Förälder: \"Kassa\"" - -# @ woocommerce -#: admin/settings/settings-init.php:432 admin/woocommerce-admin-status.php:231 -msgid "Thanks Page" -msgstr "Tacksida" - -# @ woocommerce -#: admin/settings/settings-init.php:433 -msgid "Page contents: [woocommerce_thankyou] Parent: \"Checkout\"" -msgstr "Sida: [woocommerce_thankyou] Förälder: \"Kassa\"" - -# @ woocommerce -#: admin/settings/settings-init.php:443 admin/woocommerce-admin-status.php:235 -msgid "My Account Page" -msgstr "Mitt konto" - -# @ woocommerce -#: admin/settings/settings-init.php:444 -msgid "Page contents: [woocommerce_my_account]" -msgstr "Sida: [woocommerce_my_account]" - -# @ woocommerce -#: admin/settings/settings-init.php:454 admin/woocommerce-admin-status.php:239 -msgid "Edit Address Page" -msgstr "Redigera adress" - -# @ woocommerce -#: admin/settings/settings-init.php:455 -msgid "Page contents: [woocommerce_edit_address] Parent: \"My Account\"" -msgstr "Sida: [woocommerce_edit_address] Parent: \"Mitt konto\"" - -# @ woocommerce -#: admin/settings/settings-init.php:465 admin/woocommerce-admin-status.php:243 -msgid "View Order Page" -msgstr "Visa order" - -# @ woocommerce -#: admin/settings/settings-init.php:466 -msgid "Page contents: [woocommerce_view_order] Parent: \"My Account\"" -msgstr "Sida: [woocommerce_view_order] Förälder: \"Mitt konto\"" - -# @ woocommerce -#: admin/settings/settings-init.php:476 admin/woocommerce-admin-status.php:247 -msgid "Change Password Page" -msgstr "Ändra lösenord" - -# @ woocommerce -#: admin/settings/settings-init.php:477 -msgid "Page contents: [woocommerce_change_password] Parent: \"My Account\"" -msgstr "Sida: [woocommerce_change_password] Förälder: \"Mitt konto\"" - -# @ woocommerce -#: admin/settings/settings-init.php:487 -msgid "Lost Password Page" -msgstr "Glömt lösenordet?" - -# @ woocommerce -#: admin/settings/settings-init.php:488 -msgid "Page contents: [woocommerce_lost_password] Parent: \"My Account\"" -msgstr "Sida: [woocommerce_lost_password] Förälder: \"Mitt konto\"" - -# @ woocommerce -#: admin/settings/settings-init.php:504 -msgid "Catalog Options" -msgstr "Katalogalternativ" - -# @ woocommerce -#: admin/settings/settings-init.php:507 -msgid "Default Product Sorting" -msgstr "Standardsortering" - -# @ woocommerce -#: admin/settings/settings-init.php:508 -msgid "This controls the default sort order of the catalog." -msgstr "Dessa styr standardsorteringen i katalogen." - -# @ woocommerce -#: admin/settings/settings-init.php:514 -msgid "Default sorting" -msgstr "Standardsortering" - -# @ woocommerce -#: admin/settings/settings-init.php:515 -msgid "Sort alphabetically" -msgstr "Alfabetisk sortering" - -# @ woocommerce -#: admin/settings/settings-init.php:516 -msgid "Sort by most recent" -msgstr "Sortera efter senaste" - -# @ woocommerce -#: admin/settings/settings-init.php:517 -msgid "Sort by price" -msgstr "Sortera efter pris" - -# @ woocommerce -#: admin/settings/settings-init.php:523 -msgid "Shop Page Display" -msgstr "Butikssidor" - -# @ woocommerce -#: admin/settings/settings-init.php:524 -msgid "This controls what is shown on the product archive." -msgstr "Detta styr vad som visas i produktarkivet." - -# @ woocommerce -#: admin/settings/settings-init.php:530 admin/settings/settings-init.php:545 -msgid "Show products" -msgstr "Visa produkter" - -# @ woocommerce -#: admin/settings/settings-init.php:531 admin/settings/settings-init.php:546 -msgid "Show subcategories" -msgstr "Visa underkategorier" - -# @ woocommerce -#: admin/settings/settings-init.php:532 admin/settings/settings-init.php:547 -msgid "Show both" -msgstr "Visa båda" - -# @ woocommerce -#: admin/settings/settings-init.php:538 -msgid "Default Category Display" -msgstr "Visning av standardkategori" - -# @ woocommerce -#: admin/settings/settings-init.php:539 -msgid "This controls what is shown on category archives." -msgstr "Detta styr vad som visas i kategoriarkiv." - -# @ woocommerce -#: admin/settings/settings-init.php:553 -msgid "Redirects" -msgstr "Omdirigeringar" - -# @ woocommerce -#: admin/settings/settings-init.php:554 -msgid "" -"Redirect to cart after adding a product to the cart (on single product pages)" -msgstr "" -"Omdirigera till varukorgen efter att en produkt lagts i varukorgen. (Från " -"produktsida)" - -# @ woocommerce -#: admin/settings/settings-init.php:562 -msgid "Redirect to the product page on a single matching search result" -msgstr "Omdirigera automatiskt till produktsidan vid en ensam sökträff" - -# @ woocommerce -#: admin/settings/settings-init.php:571 -msgid "" -"The following options affect the fields available on the edit product page." -msgstr "" -"Följande inställningar påverkar vilka fält som är tillgängliga för produkter." - -# @ woocommerce -#: admin/settings/settings-init.php:574 -msgid "Product Fields" -msgstr "Produktfält" - -# @ woocommerce -#: admin/settings/settings-init.php:575 -msgid "Enable the SKU field for products" -msgstr "Aktivera fält för artikelnummer" - -# @ woocommerce -#: admin/settings/settings-init.php:583 -msgid "Enable the weight field for products" -msgstr "Aktivera viktfält" - -# @ woocommerce -#: admin/settings/settings-init.php:591 -msgid "Enable the dimension fields for products" -msgstr "Aktivera produkters fält för dimensioner" - -# @ woocommerce -#: admin/settings/settings-init.php:599 -msgid "Show weight and dimension fields in product attributes tab" -msgstr "Visa fält för vikt och dimensioner i panelen för produktattribut" - -# @ woocommerce -#: admin/settings/settings-init.php:607 -msgid "Weight Unit" -msgstr "Viktenhet" - -# @ woocommerce -#: admin/settings/settings-init.php:608 -msgid "This controls what unit you will define weights in." -msgstr "Det här kontrollerar vilken viktenhet som används för produkter." - -# @ woocommerce -#: admin/settings/settings-init.php:614 -msgid "kg" -msgstr "kg" - -# @ woocommerce -#: admin/settings/settings-init.php:615 -msgid "g" -msgstr "g" - -# @ woocommerce -#: admin/settings/settings-init.php:616 -msgid "lbs" -msgstr "lbs" - -# @ woocommerce -#: admin/settings/settings-init.php:617 -msgid "oz" -msgstr "oz" - -# @ woocommerce -#: admin/settings/settings-init.php:623 -msgid "Dimensions Unit" -msgstr "Enhet för dimensioner" - -# @ woocommerce -#: admin/settings/settings-init.php:624 -msgid "This controls what unit you will define lengths in." -msgstr "Det här kontrollerar vilken längdenhet som används." - -# @ woocommerce -#: admin/settings/settings-init.php:631 -msgid "cm" -msgstr "cm" - -# @ woocommerce -#: admin/settings/settings-init.php:632 -msgid "mm" -msgstr "mm" - -# @ woocommerce -#: admin/settings/settings-init.php:633 -msgid "in" -msgstr "i" - -# @ woocommerce -#: admin/settings/settings-init.php:634 -msgid "yd" -msgstr "yd" - -# @ woocommerce -#: admin/settings/settings-init.php:640 -msgid "Product Ratings" -msgstr "Produktbetyg" - -# @ woocommerce -#: admin/settings/settings-init.php:641 -msgid "Enable the rating field on the review form" -msgstr "Aktivera fält för betyg i recensionsformuläret" - -# @ woocommerce -#: admin/settings/settings-init.php:650 -msgid "Ratings are required to leave a review" -msgstr "Betyg måste anges för att få lämna recension" - -# @ woocommerce -#: admin/settings/settings-init.php:659 -msgid "Show \"verified owner\" label for customer reviews" -msgstr "Visa etikett för \"verifierad ägare\" i kundrecensioner" - -# @ woocommerce -#: admin/settings/settings-init.php:669 -msgid "Pricing Options" -msgstr "Prisalternativ" - -# @ woocommerce -#: admin/settings/settings-init.php:669 -msgid "The following options affect how prices are displayed on the frontend." -msgstr "Följande inställningar påverkar hur priset visas i butiken." - -# @ woocommerce -#: admin/settings/settings-init.php:672 -msgid "Currency Position" -msgstr "Valutaposition" - -# @ woocommerce -#: admin/settings/settings-init.php:673 -msgid "This controls the position of the currency symbol." -msgstr "Det här kontrollerar positionen för valutasymbolen." - -# @ woocommerce -#: admin/settings/settings-init.php:679 -msgid "Left" -msgstr "Vänster" - -# @ woocommerce -#: admin/settings/settings-init.php:680 -msgid "Right" -msgstr "Höger" - -# @ woocommerce -#: admin/settings/settings-init.php:681 -msgid "Left (with space)" -msgstr "Vänster (med mellanrum)" - -# @ woocommerce -#: admin/settings/settings-init.php:682 -msgid "Right (with space)" -msgstr "Höger (med mellanrum)" - -# @ woocommerce -#: admin/settings/settings-init.php:688 -msgid "Thousand Separator" -msgstr "Tusentalsavgränsare" - -# @ woocommerce -#: admin/settings/settings-init.php:689 -msgid "This sets the thousand separator of displayed prices." -msgstr "Det här bestämmer tusentalsavgränsare för visade priser." - -# @ woocommerce -#: admin/settings/settings-init.php:698 -msgid "Decimal Separator" -msgstr "Decimalavgränsare" - -# @ woocommerce -#: admin/settings/settings-init.php:699 -msgid "This sets the decimal separator of displayed prices." -msgstr "" -"Det här bestämmer vilken decimalavgränsare som används för visade priser." - -# @ woocommerce -#: admin/settings/settings-init.php:708 -msgid "Number of Decimals" -msgstr "Antal decimaler" - -# @ woocommerce -#: admin/settings/settings-init.php:709 -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "Det här bestämmer antalet decimalpunkter för visade priser." - -#: admin/settings/settings-init.php:722 -msgid "Trailing Zeros" -msgstr "Efterföljande nollor" - -# @ woocommerce -#: admin/settings/settings-init.php:723 -msgid "" -"Remove zeros after the decimal point. e.g. $10.00 becomes " -"$10" -msgstr "" -"Ta bort nollor efter decimaltecknet. Till exempel blir 10.00 kr " -"10 kr" - -# @ woocommerce -#: admin/settings/settings-init.php:731 -msgid "Image Options" -msgstr "Bildalternativ" - -# @ woocommerce -#: admin/settings/settings-init.php:731 -msgid "" -"These settings affect the actual dimensions of images in your catalog - the " -"display on the front-end will still be affected by CSS styles. After " -"changing these settings you may need to regenerate your " -"thumbnails." -msgstr "" -"Dessa inställningar påverkar dimensionerna på bilderna i katalogen - " -"visningen av bilderna för kunderna kommer fortfarande påverkas av CSS-" -"stilmallar. Efter att du ändrar detta kan du behöva regenerera dina miniatyrbilder" - -# @ woocommerce -#: admin/settings/settings-init.php:734 -msgid "Catalog Images" -msgstr "Katalogbilder" - -# @ woocommerce -#: admin/settings/settings-init.php:735 -msgid "This size is usually used in product listings" -msgstr "Den här storleken används normalt i produktlistningar." - -# @ woocommerce -#: admin/settings/settings-init.php:748 -msgid "Single Product Image" -msgstr "Ensam produktbild" - -# @ woocommerce -#: admin/settings/settings-init.php:749 -msgid "This is the size used by the main image on the product page." -msgstr "Den här storleken används av huvudbilden på produktsidan." - -# @ woocommerce -#: admin/settings/settings-init.php:762 -msgid "Product Thumbnails" -msgstr "Tumnaglar för produkt" - -# @ woocommerce -#: admin/settings/settings-init.php:763 -msgid "" -"This size is usually used for the gallery of images on the product page." -msgstr "Den här storleken används normalt till galleribilder på produktsidan." - -# @ woocommerce -#: admin/settings/settings-init.php:782 -msgid "Inventory Options" -msgstr "Lagersaldo inställningar" - -# @ woocommerce -#: admin/settings/settings-init.php:785 -msgid "Manage Stock" -msgstr "Hantera lager" - -# @ woocommerce -#: admin/settings/settings-init.php:786 -msgid "Enable stock management" -msgstr "Aktivera lagerhantering" - -#: admin/settings/settings-init.php:793 -msgid "Hold Stock (minutes)" -msgstr "Reservera artiklar (minuter)" - -#: admin/settings/settings-init.php:794 -msgid "" -"Hold stock (for unpaid orders) for x minutes. When this limit is reached, " -"the pending order will be cancelled. Leave blank to disable." -msgstr "" -"Reservera artiklar (i obetalda ordrar) i x minuter. När denna gräns nås " -"avbryts obetalda ordrar. Lämna tomt för att avaktivera." - -# @ woocommerce -#: admin/settings/settings-init.php:806 -msgid "Notifications" -msgstr "Meddelanden" - -# @ woocommerce -#: admin/settings/settings-init.php:807 -msgid "Enable low stock notifications" -msgstr "Aktivera meddelanden för lågt lagersaldo" - -# @ woocommerce -#: admin/settings/settings-init.php:815 -msgid "Enable out of stock notifications" -msgstr "Aktivera meddelanden för slut i lager" - -# @ woocommerce -#: admin/settings/settings-init.php:823 -msgid "Low Stock Threshold" -msgstr "Gränsvärde för lågt lagersaldo" - -# @ woocommerce -#: admin/settings/settings-init.php:836 -msgid "Out Of Stock Threshold" -msgstr "Gränsvärde för slut i lager" - -# @ woocommerce -#: admin/settings/settings-init.php:849 -msgid "Out Of Stock Visibility" -msgstr "Synlighet för slut i lager" - -# @ woocommerce -#: admin/settings/settings-init.php:850 -msgid "Hide out of stock items from the catalog" -msgstr "Dölj produkter i katalogen som är slut i lager" - -#: admin/settings/settings-init.php:857 -msgid "Stock Display Format" -msgstr "Visningsformat för lager" - -# @ woocommerce -#: admin/settings/settings-init.php:858 -msgid "This controls how stock is displayed on the frontend." -msgstr "Detta kontrollerar hur lagersaldo visas i butiken." - -# @ woocommerce -#: admin/settings/settings-init.php:864 -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "Visa alltid lagersaldo, t.ex. \"12 i lager\"" - -# @ woocommerce -#: admin/settings/settings-init.php:865 -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "" -"Visa bara vid lågt lagersaldo, t.ex. \"Bara 2 i lager\" istället för \"I " -"lager\"" - -# @ woocommerce -#: admin/settings/settings-init.php:866 -msgid "Never show stock amount" -msgstr "Visa aldrig lagersaldo" - -# @ woocommerce -#: admin/settings/settings-init.php:878 -#: admin/woocommerce-admin-settings.php:326 -msgid "Shipping Options" -msgstr "Fraktalternativ" - -# @ woocommerce -#: admin/settings/settings-init.php:881 -msgid "Shipping Calculations" -msgstr "Fraktberäkningar" - -# @ woocommerce -#: admin/settings/settings-init.php:882 -msgid "Enable shipping" -msgstr "Aktivera frakt" - -# @ woocommerce -#: admin/settings/settings-init.php:890 -msgid "Enable the shipping calculator on the cart page" -msgstr "Aktivera fraktkostnadskalkylator i varukorgen" - -# @ woocommerce -#: admin/settings/settings-init.php:898 -msgid "Hide shipping costs until an address is entered" -msgstr "Dölj fraktkostnaden tills adress har angetts" - -# @ woocommerce -#: admin/settings/settings-init.php:906 -msgid "Shipping Method Display" -msgstr "Fraktmetoder" - -# @ woocommerce -#: admin/settings/settings-init.php:907 -msgid "" -"This controls how multiple shipping methods are displayed on the frontend." -msgstr "Detta kontrollerar hur flera fraktmetoder visas i butiken." - -# @ woocommerce -#: admin/settings/settings-init.php:913 -msgid "Radio buttons" -msgstr "Alternativknappar" - -# @ woocommerce -#: admin/settings/settings-init.php:914 -msgid "Select box" -msgstr "Dropdown" - -# @ woocommerce -#: admin/settings/settings-init.php:920 -msgid "Shipping Destination" -msgstr "Fraktdestination" - -# @ woocommerce -#: admin/settings/settings-init.php:921 -msgid "Only ship to the users billing address" -msgstr "Leverera endast till fakturaadress" - -# @ woocommerce -#: admin/settings/settings-init.php:929 -msgid "Ship to billing address by default" -msgstr "Skicka till debiteringsadress som standard" - -# @ woocommerce -#: admin/settings/settings-init.php:937 -msgid "Collect shipping address even when not required" -msgstr "Efterfråga destination även när det inte behövs" - -# @ woocommerce -#: admin/settings/settings-init.php:955 -#: admin/woocommerce-admin-settings.php:225 -#: admin/woocommerce-admin-settings.php:363 -msgid "Payment Gateways" -msgstr "Betalningsalternativ" - -# @ woocommerce -#: admin/settings/settings-init.php:955 -msgid "" -"Installed payment gateways are displayed below. Drag and drop payment " -"gateways to control their display order on the checkout." -msgstr "" -"Installerade betalningstjänster visas nedan. Dra och släpp tjänster för att " -"kontrollera deras ordning i utcheckningen." - -# @ woocommerce -#: admin/settings/settings-init.php:973 -#: admin/woocommerce-admin-settings.php:256 -msgid "Tax Options" -msgstr "Momsalternativ" - -# @ woocommerce -#: admin/settings/settings-init.php:976 -msgid "Enable Taxes" -msgstr "Aktivera moms" - -# @ woocommerce -#: admin/settings/settings-init.php:977 -msgid "Enable taxes and tax calculations" -msgstr "Aktivera moms och momsberäkningar" - -#: admin/settings/settings-init.php:984 -msgid "Prices Entered With Tax" -msgstr "Priser anges med moms/skatt" - -#: admin/settings/settings-init.php:988 -msgid "" -"This option is important as it will affect how you input prices. Changing it " -"will not update existing products." -msgstr "" -"Denna inställning är viktig då den styr hur du matas in priser. Ändringar " -"påverkar inte existerande produkter." - -#: admin/settings/settings-init.php:990 -msgid "Yes, I will enter prices inclusive of tax" -msgstr "Ja, jag vill ange priser inklusive moms/skatt" - -#: admin/settings/settings-init.php:991 -msgid "No, I will enter prices exclusive of tax" -msgstr "Nej, jag vill ange priser exklusive moms/skatt" - -#: admin/settings/settings-init.php:996 -msgid "Calculate Tax Based On:" -msgstr "Beräkna skatt baserat på:" - -#: admin/settings/settings-init.php:998 -msgid "This option determines which address is used to calculate tax." -msgstr "" -"Denna inställningar styr vilken adress som används för att beräkna skatt." - -# @ woocommerce -#: admin/settings/settings-init.php:1002 -msgid "Customer shipping address" -msgstr "Leveransadress för kund" - -# @ woocommerce -#: admin/settings/settings-init.php:1003 -msgid "Customer billing address" -msgstr "Fakturaadress för kund" - -# @ woocommerce -#: admin/settings/settings-init.php:1004 admin/settings/settings-init.php:1016 -msgid "Shop base address" -msgstr "Bassida för butik" - -# @ woocommerce -#: admin/settings/settings-init.php:1009 -msgid "Default Customer Address:" -msgstr "Standardadress för kund:" - -#: admin/settings/settings-init.php:1011 -msgid "" -"This option determines the customers default address (before they input " -"their own)." -msgstr "" -"Denna inställning styr standardadress för kunder (innan de matar in sin " -"egen)." - -# @ woocommerce -#: admin/settings/settings-init.php:1015 -msgid "No address" -msgstr "Ingen adress" - -# @ woocommerce -#: admin/settings/settings-init.php:1021 -msgid "Shipping Tax Class:" -msgstr "Fraktklass:" - -#: admin/settings/settings-init.php:1022 -msgid "" -"Optionally control which tax class shipping gets, or leave it so shipping " -"tax is based on the cart items themselves." -msgstr "" -"Kan kontrollera vilken momsklass som försändelsen får eller lämna tomt för " -"att basera moms på varukorgens artiklar." - -# @ woocommerce -#: admin/settings/settings-init.php:1032 -msgid "Rounding" -msgstr "Avrundning" - -# @ woocommerce -#: admin/settings/settings-init.php:1033 -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "Avrunda moms på totalen och inte per enskild rad" - -# @ woocommerce -#: admin/settings/settings-init.php:1040 -msgid "Additional Tax Classes" -msgstr "Ytterligare momsgrupper" - -# @ woocommerce -#: admin/settings/settings-init.php:1041 -msgid "" -"List additonal tax classes below (1 per line). This is in addition to the " -"default Standard Rate. Tax classes can be assigned to products." -msgstr "" -"Lista en klass per rad. Det här är tillägg utöver Standardmoms. Klasser kan knytas till produkter." - -# @ woocommerce -#: admin/settings/settings-init.php:1045 -msgid "Reduced Rate%sZero Rate" -msgstr "Reducerad sats%sIngen skatt" - -# @ woocommerce -#: admin/settings/settings-init.php:1049 -msgid "Display prices during cart/checkout:" -msgstr "Visa priset i varukorg och utcheckning:" - -# @ woocommerce -#: admin/settings/settings-init.php:1054 -msgid "Including tax" -msgstr "Inklusive moms" - -# @ woocommerce -#: admin/settings/settings-init.php:1055 -msgid "Excluding tax" -msgstr "Exklusive moms" - -# @ woocommerce -#: admin/settings/settings-init.php:1067 -msgid "Email Sender Options" -msgstr "Avsändare för e-post" - -# @ woocommerce -#: admin/settings/settings-init.php:1067 -msgid "" -"The following options affect the sender (email address and name) used in " -"WooCommerce emails." -msgstr "" -"Följande inställningar påverkar vilken avsändare (namn och e-postadress) som " -"används i e-post från WooCommerce." - -# @ woocommerce -#: admin/settings/settings-init.php:1070 -msgid "\"From\" Name" -msgstr "\"Från\" namn" - -# @ woocommerce -#: admin/settings/settings-init.php:1079 -msgid "\"From\" Email Address" -msgstr "\"Från\" e-postadress" - -# @ woocommerce -#: admin/settings/settings-init.php:1092 -msgid "Email Template" -msgstr "Mall för e-post" - -# @ woocommerce -#: admin/settings/settings-init.php:1092 -msgid "" -"This section lets you customise the WooCommerce emails. Click here to preview your email template. For more " -"advanced control copy woocommerce/templates/emails/ to " -"yourtheme/woocommerce/emails/." -msgstr "" -"Denna del låter dig anpassa e-post från WooCommerce. Klicka här för att förhandsgranska dina e-postmallar. För mer " -"avancerade förändringar kopiera woocommerce/templates/emails/ " -"till ditt-tema/woocommerce/emails/." - -# @ woocommerce -#: admin/settings/settings-init.php:1095 -msgid "Header Image" -msgstr "Sidhuvuvdsbild" - -# @ woocommerce -#: admin/settings/settings-init.php:1096 -msgid "" -"Enter a URL to an image you want to show in the email's header. Upload your " -"image using the media uploader." -msgstr "" -"Skriv in sökvägen till bilden du vill använda i sidhuvudet. Ladda upp din " -"bild genom att använda mediauppladdaren." - -# @ woocommerce -#: admin/settings/settings-init.php:1104 -msgid "Email Footer Text" -msgstr "Sidfotstext i e-post" - -# @ woocommerce -#: admin/settings/settings-init.php:1105 -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "Texten visas i sidfoten för e-post från WooCommerce." - -# @ woocommerce -#: admin/settings/settings-init.php:1109 -msgid "Powered by WooCommerce" -msgstr "Drivs med WooCommerce" - -# @ woocommerce -#: admin/settings/settings-init.php:1113 -msgid "Base Colour" -msgstr "Basfärg" - -# @ woocommerce -#: admin/settings/settings-init.php:1114 -msgid "" -"The base colour for WooCommerce email templates. Default #557da1." -msgstr "" -"Det här är basfärgen för e-postamallarna i WooCommerce. Standard " -"#557da1." - -# @ woocommerce -#: admin/settings/settings-init.php:1122 -msgid "Background Colour" -msgstr "Bakgrundsfärg" - -# @ woocommerce -#: admin/settings/settings-init.php:1123 -msgid "" -"The background colour for WooCommerce email templates. Default " -"#f5f5f5." -msgstr "" -"Bakgrundsfärgen för e-postmallarna i WooCommerce. Standard #f5f5f5." - -# @ woocommerce -#: admin/settings/settings-init.php:1131 -msgid "Email Body Background Colour" -msgstr "Bakgrundsfärg för innehållet i e-post" - -# @ woocommerce -#: admin/settings/settings-init.php:1132 -msgid "The main body background colour. Default #fdfdfd." -msgstr "Bakgrundsfärgen för innehållet. Standard #fdfdfd." - -# @ woocommerce -#: admin/settings/settings-init.php:1140 -msgid "Email Body Text Colour" -msgstr "Textfärg för e-post" - -# @ woocommerce -#: admin/settings/settings-init.php:1141 -msgid "The main body text colour. Default #505050." -msgstr "Textfärgen för innhållstexten. Standard #505050." - -# @ woocommerce -#: admin/settings/settings-payment-gateways.php:27 -#: admin/settings/settings-shipping-methods.php:29 -#: admin/woocommerce-admin-init.php:709 -#: admin/woocommerce-admin-taxonomies.php:27 -#: admin/woocommerce-admin-taxonomies.php:121 -msgid "Default" -msgstr "Standard" - -# @ woocommerce -#: admin/settings/settings-payment-gateways.php:28 -msgid "Gateway" -msgstr "Tjänst" - -# @ woocommerce -#: admin/settings/settings-payment-gateways.php:45 -msgid "Gateway ID" -msgstr "Tjänst ID" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:23 -msgid "Shipping Methods" -msgstr "Fraktmetoder" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:25 -msgid "Drag and drop methods to control their display order." -msgstr "Dra och släpp metoder för att kontrollera deras ordning." - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:30 -msgid "Shipping Method" -msgstr "Fraktmetoder" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:46 -msgid "Method ID" -msgstr "Metod ID" - -#: admin/settings/settings-tax-rates.php:29 -msgid "Tax Rates for the \"%s\" Class" -msgstr "Momssats för klassen \"%s\"" - -#: admin/settings/settings-tax-rates.php:30 -msgid "" -"Define tax rates for countries and states below. See here " -"for available country/state codes." -msgstr "" -"Definiera momssatser för land och stater sedan. Läs här " -"för tillgängliga landskoder." - -#: admin/settings/settings-tax-rates.php:36 -msgid "Country Code" -msgstr "Landskod" - -#: admin/settings/settings-tax-rates.php:36 -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "" -"En två tecken landskod, t.ex. SE. Lämna tomt för att applicera på samtliga." - -#: admin/settings/settings-tax-rates.php:38 -msgid "State Code" -msgstr "Statskod" - -#: admin/settings/settings-tax-rates.php:38 -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "" -"En två tecken lång statskod, t.ex. AL. Lämna tom för att applicera på " -"samtliga." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:40 -#: admin/settings/settings-tax-rates.php:217 -msgid "ZIP/Postcode" -msgstr "Postnummer" - -#: admin/settings/settings-tax-rates.php:40 -msgid "" -"Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all areas. Wildcards (*) can be used. Ranges for numeric " -"postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "" -"Postnummer för denna regel. Avgränsa flera värden med semikolon (;). Lämna " -"tom för att applicera på samtliga områden. Wildcard (*) kan användas. Omfång " -"av postnummer (t.ex. 79141-79145) expanderas till individuella postnummer." - -#: admin/settings/settings-tax-rates.php:42 -msgid "" -"Cities for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all cities." -msgstr "" -"Städer för denna regel. Avgränsa flera värden med semikolon (;). Lämna tom " -"för att applicera på samtliga städer." - -#: admin/settings/settings-tax-rates.php:44 -msgid "Rate %" -msgstr "Sats %" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:44 -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "Ange momssats (procent) med upp till 4 decimaler" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:46 -msgid "Tax Name" -msgstr "Namn på taxa" - -#: admin/settings/settings-tax-rates.php:46 -msgid "Enter a name for this tax rate." -msgstr "Ange namn för denna skatt/momssats." - -#: admin/settings/settings-tax-rates.php:48 -#: admin/settings/settings-tax-rates.php:217 -msgid "Priority" -msgstr "Prioritet" - -#: admin/settings/settings-tax-rates.php:48 -msgid "" -"Choose a priority for this tax rate. Only 1 matching rate per priority will " -"be used. To define multiple tax rates for a single area you need to specify " -"a different priority per rate." -msgstr "" -"Välj prioritet för denna skattesats. Endast en matchning per prioritet " -"kommer att användas. För att definiera flera skattesatser för samma område " -"måste du specificera olika prioritet för dessa." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:50 -#: admin/settings/settings-tax-rates.php:217 -msgid "Compound" -msgstr "Sammansatt skattesats" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:50 -msgid "" -"Choose whether or not this is a compound rate. Compound tax rates are " -"applied on top of other tax rates." -msgstr "" -"Ange om detta är en sammansatt skattesats. Sammansatta skattesatser " -"appliceras ovanpå andra skattesatser." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:52 -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "Välj ifall denna skattesats även gäller frakten" - -#: admin/settings/settings-tax-rates.php:59 -msgid "Insert row" -msgstr "Infoga rad" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:60 -msgid "Remove selected row(s)" -msgstr "Radera valda rader" - -#: admin/settings/settings-tax-rates.php:62 -msgid "Export CSV" -msgstr "Exportera CSV" - -#: admin/settings/settings-tax-rates.php:63 -msgid "Import CSV" -msgstr "Importera CSV" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:163 -msgid "No row(s) selected" -msgstr "Inga rader valda" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Country Code" -msgstr "Landskod" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "State Code" -msgstr "Kod för delstat" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Rate %" -msgstr "Taxa" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Name" -msgstr "Namn på taxa" - -#: admin/woocommerce-admin-attributes.php:77 -msgid "Please, provide an attribute name, slug and type." -msgstr "Vänligen ange attributets namn, länk och typ." - -#: admin/woocommerce-admin-attributes.php:79 -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "" -"Länken \"%s\" är för lång (maximalt 28 tecken). Vänligen välj en kortare." - -#: admin/woocommerce-admin-attributes.php:81 -msgid "" -"Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "" -"Länken \"%s\" är inte tillåten då det är ett reserverat ord. Vänligen ändra " -"det." - -#: admin/woocommerce-admin-attributes.php:85 -#: admin/woocommerce-admin-attributes.php:90 -msgid "Slug “%s” is already in use. Change it, please." -msgstr "Länken \"%s\" används redan. Vänligen ändra det." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:226 -msgid "Edit Attribute" -msgstr "Redigera attribut" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:236 -#: admin/woocommerce-admin-attributes.php:375 -msgid "Name for the attribute (shown on the front-end)." -msgstr "Namn för attributen (som det visas för kunderna)." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:241 -#: admin/woocommerce-admin-attributes.php:307 -#: admin/woocommerce-admin-attributes.php:379 -msgid "Slug" -msgstr "Permalänk" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:245 -#: admin/woocommerce-admin-attributes.php:381 -msgid "" -"Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "" -"Unik url-kod för att referera till attributen; måste vara kortare än 28 " -"tecken." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:254 -#: admin/woocommerce-admin-attributes.php:387 -msgid "Select" -msgstr "Rullgardingsmeny" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:255 -#: admin/woocommerce-admin-attributes.php:388 -msgid "Text" -msgstr "Text" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:258 -#: admin/woocommerce-admin-attributes.php:391 -msgid "" -"Determines how you select attributes for products. Text " -"allows manual entry via the product page, whereas select " -"attribute terms can be defined from this section. If you plan on using an " -"attribute for variations use select." -msgstr "" -"Bestämmer hur du väljer attribut för produkter. Text " -"tillåter manuell inmatning på produktsidan, men rullgardinsmenyns attributvillkor kan definieras från den här sektionen. Planerar du " -"att använda ett attribut för variationer, använd rullgardinsmeny." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:263 -#: admin/woocommerce-admin-attributes.php:395 -msgid "Default sort order" -msgstr "Standardsortering" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:267 -#: admin/woocommerce-admin-attributes.php:335 -#: admin/woocommerce-admin-attributes.php:397 -msgid "Custom ordering" -msgstr "Skräddarsydd order" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:269 -#: admin/woocommerce-admin-attributes.php:332 -#: admin/woocommerce-admin-attributes.php:399 -msgid "Term ID" -msgstr "ID för sida med villkor" - -#: admin/woocommerce-admin-attributes.php:271 -#: admin/woocommerce-admin-attributes.php:401 -msgid "" -"Determines the sort order on the frontend for this attribute. If using " -"custom ordering, you can drag and drop the terms in this attribute" -msgstr "" -"Styr vilken sorteringsordningen för detta attribut. Om du använder anpassad " -"ordning kan du dra och släppa termerna i detta attribut" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:276 -msgid "Update" -msgstr "Uppdatera" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:309 -msgid "Order by" -msgstr "Sortera efter" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:310 -msgid "Terms" -msgstr "Villkor" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:355 -msgid "Configure terms" -msgstr "Konfigurera villkor" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:359 -msgid "No attributes currently exist." -msgstr "Det existerar inga attribut" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:369 -msgid "Add New Attribute" -msgstr "Lägg till nytt attribut" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:370 -msgid "" -"Attributes let you define extra product data, such as size or colour. You " -"can use these attributes in the shop sidebar using the \"layered nav\" " -"widgets. Please note: you cannot rename an attribute later on." -msgstr "" -"Attribut låter dig deffiniera extra produktdata, som storlek eller färg. Du " -"kan använda dessa attribut i butikens sidebar genom att använda \"layered nav" -"\" widgets. Observera: du kan inte byta namn på ett attribut senare." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:404 -msgid "Add Attribute" -msgstr "Lägg till attribut" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:415 -msgid "Are you sure you want to delete this attribute?" -msgstr "Är du säker på att du vill radera det här attributet?" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:26 -#: admin/woocommerce-admin-reports.php:30 -#: admin/woocommerce-admin-reports.php:75 -#: admin/woocommerce-admin-reports.php:91 -#: admin/woocommerce-admin-reports.php:102 -msgid "Overview" -msgstr "Översikt" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:29 -msgid "" -"Thank you for using WooCommerce :) Should you need help using or extending " -"WooCommerce please read the documentation. For further " -"assistance you can use the community forum or if you have " -"access, the members forum." -msgstr "" -"Tack för att du använder WooCommerce :) Behöver du hjälp att använda " -"WooCommerce kan du ta hjälp av dokumentationen. För " -"ytterligare vägledning kan du besöka vårt communityforum " -"eller, om du har behörighet, vårt medlemsforum." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:31 -msgid "" -"If you are having problems, or to assist us with support, please check the " -"status page to identify any problems with your configuration:" -msgstr "" -"Om du upplever problem eller som hjälp under support kan du kontrollera " -"tilläggets status för att identifiera eventuella problem med din " -"konfiguration:" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:33 admin/woocommerce-admin-init.php:82 -#: admin/woocommerce-admin-status.php:46 -msgid "System Status" -msgstr "Systemstatus" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:35 -msgid "" -"If you come across a bug, or wish to contribute to the project you can also " -"get involved on GitHub." -msgstr "" -"Om du stött på en bugg eller vill bidra till projektet kan du också delta på GitHub." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:43 -msgid "" -"Here you can set up your store and customise it to fit your needs. The " -"sections available from the settings page include:" -msgstr "" -"Här kan du konfigurera din butik och anpassa den efter dina behov. Detta " -"inkluderar:" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:44 -msgid "" -"General settings such as your shop base, currency, and script/styling " -"options which affect features used in your store." -msgstr "" -"Huvudinställningar såsom vilka sidor som används, valuta och utseende som " -"påverkar funktioner i webb-shoppen." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:45 -#: admin/woocommerce-admin-settings.php:221 -msgid "Pages" -msgstr "Sidor" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:45 -msgid "" -"This is where important store page are defined. You can also set up other " -"pages (such as a Terms page) here." -msgstr "" -"Detta är där du hanterar webb-shoppens sidor. Du kan också konfigurera andra " -"sidor (exempelvis policy) här." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:46 -msgid "" -"Options for how things like price, images and weights appear in your product " -"catalog." -msgstr "" -"Inställningar för hur till exempel pris, bilder och storlekar visas i din " -"produktkatalog." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:47 -msgid "Options concerning stock and stock notices." -msgstr "Inställningar för lagersaldo och lagernotifieringar." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:48 -msgid "Options concerning tax, including international and local tax rates." -msgstr "Inställningar för moms, inklusive internationell skatt." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:49 -msgid "" -"This is where shipping options are defined, and shipping methods are set up." -msgstr "Detta är stället du hanterar fraktinställningar." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:50 -msgid "Payment Methods" -msgstr "Betalningslösningar" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:50 -msgid "" -"This is where payment gateway options are defined, and individual payment " -"gateways are set up." -msgstr "Här konfigurerar och hanterar du dina olika betalningslösningar" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:51 -#: admin/woocommerce-admin-settings.php:226 -msgid "Emails" -msgstr "E-post" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:51 -msgid "Here you can customise the way WooCommerce emails appear." -msgstr "Här ställer du in hur e-postutskicken från WooCommerce kommer se ut." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:52 -#: admin/woocommerce-admin-settings.php:227 -msgid "Integration" -msgstr "Integrering" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:52 -msgid "" -"The integration section contains options for third party services which " -"integrate with WooCommerce." -msgstr "" -"Intagrationsinställningarna innehåller inställningar för att ansluta " -"tredjepartstjänster med WooCommerce." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:57 admin/woocommerce-admin-init.php:59 -msgid "Reports" -msgstr "Rapporter" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:59 -msgid "" -"The reports section can be accessed from the left-hand navigation menu. Here " -"you can generate reports for sales and customers." -msgstr "" -"Rapport-sektionen kan nås från den vänstra navigationsmenyn. Här kan du " -"generera rapporter/statistik för försäljning och kunder." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:60 -#: admin/woocommerce-admin-reports.php:27 -#: admin/woocommerce-admin-reports.php:986 -#: admin/woocommerce-admin-reports.php:1082 -#: admin/woocommerce-admin-reports.php:1199 -msgid "Sales" -msgstr "Rea" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:60 -msgid "Reports for sales based on date, top sellers and top earners." -msgstr "" -"Rapporter för försäljning baserat på datum, mest sålda varor och mest " -"betalande produkter." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:61 -#: admin/woocommerce-admin-reports.php:88 -msgid "Customers" -msgstr "Kunder" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:61 -msgid "Customer reports, such as signups per day." -msgstr "Kundrapporter, exempelvis registreringar per dag." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:62 -msgid "Stock reports for low stock and out of stock items." -msgstr "Rapporter för lågt lagersaldo och slutsålda artiklar." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:67 -#: admin/woocommerce-admin-dashboard.php:142 -msgid "Orders" -msgstr "Ordrar" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:69 -msgid "" -"The orders section can be accessed from the left-hand navigation menu. Here " -"you can view and manage customer orders." -msgstr "" -"Order-sektionen kan nås från vänsta navigationsmenyn. Här kan du visa och " -"hantera kundordrar." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:70 -msgid "" -"Orders can also be added from this section if you want to set them up for a " -"customer manually." -msgstr "" -"Ordrar kan också läggas till från denna sektion om du vill lägga till dem " -"manuellt." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:77 -msgid "" -"Coupons can be managed from this section. Once added, customers will be able " -"to enter coupon codes on the cart/checkout page. If a customer uses a coupon " -"code they will be viewable when viewing orders." -msgstr "" -"Kuponger hanteras från denna sektion. När de lagts till kan kunder ange " -"kupongkoder i kassan. Om en kund använder en kupong kommer det att synas vid " -"visning av ordrar." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:81 -msgid "For more information:" -msgstr "För mer information:" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:82 -msgid "" -"WooCommerce" -msgstr "" -"WooCommerce" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:83 -msgid "" -"Project on WordPress.org" -msgstr "" -"Projektet på WordPress.org" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:84 -msgid "" -"Project on Github" -msgstr "" -"Projektet på Github" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:85 -msgid "" -"WooCommerce Docs" -msgstr "" -"WooCommerce Dokumentation" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:86 -msgid "" -"Official Extensions" -msgstr "" -"Officiella Tillägg" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:87 -msgid "" -"Official Themes" -msgstr "" -"Officiella teman" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:40 -msgid "Monthly Sales" -msgstr "Månatlig försäljning" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:43 -msgid "WooCommerce Right Now" -msgstr "WooCommerce - Just nu" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:44 -msgid "WooCommerce Recent Orders" -msgstr "WooCommerce - Nya ordrar" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:45 -msgid "WooCommerce Recent Reviews" -msgstr "WooCommerce senaste recensioner" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:78 -msgid "Shop Content" -msgstr "Butiksinnehåll" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:84 -#: admin/woocommerce-admin-functions.php:194 -#: admin/woocommerce-admin-init.php:713 -#: admin/woocommerce-admin-reports.php:985 -#: admin/woocommerce-admin-reports.php:1081 -msgid "Product" -msgid_plural "Products" -msgstr[0] "Produkt" -msgstr[1] "Produkter" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:98 -msgid "Product Category" -msgid_plural "Product Categories" -msgstr[0] "Produktkategori" -msgstr[1] "Produktkategorier" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:112 -msgid "Product Tag" -msgid_plural "Product Tags" -msgstr[0] "Produktetikett" -msgstr[1] "Produktetiketter" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:126 -msgid "Attribute" -msgid_plural "Attributes" -msgstr[0] "Attribut" -msgstr[1] "Attribut" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:148 -msgid "Pending" -msgstr "Väntande" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:162 -msgid "On-Hold" -msgstr "Parkerad" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:190 -msgid "Completed" -msgstr "Genomförd" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:207 -msgid "You are using WooCommerce %s." -msgstr "Du använder WooCommerce %s." - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:238 -msgid "l jS \\of F Y h:i:s A" -msgstr "j F Y, H:i:s" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:239 -msgid "item" -msgid_plural "items" -msgstr[0] "artikel" -msgstr[1] "artiklar" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:239 -msgid "Total:" -msgstr "Totalt:" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:245 -msgid "There are no product orders yet." -msgstr "Det finns inga produktordrar ännu." - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:279 -msgid "out of 5" -msgstr "av 5" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:287 -msgid "There are no product reviews yet." -msgstr "Det finns inga produktrecensioner ännu." - -#: admin/woocommerce-admin-dashboard.php:428 -msgid "Sold" -msgstr "Sålt" - -#: admin/woocommerce-admin-dashboard.php:429 -msgid "Earned" -msgstr "Vinst" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:184 -#: admin/woocommerce-admin-install.php:216 -msgid "Order Received" -msgstr "Order mottagen" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:186 -msgid "" -"Thank you, we are now processing your order. Your order's details are below." -msgstr "" -"Tack! Vi har tagit emot din order. Dina orderuppgifter ser du här nedanför." - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:188 -msgid "Order:" -msgstr "Order:" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:195 -msgid "Quantity" -msgstr "Antal" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:208 -msgid "Order total:" -msgstr "Totalt för ordern:" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:214 -msgid "Customer details" -msgstr "Kunddetaljer" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:220 -msgid "Billing address" -msgstr "Fakturaadress" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:227 -msgid "Shipping address" -msgstr "Leveransadress" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:459 -msgid "Could not compile woocommerce.less:" -msgstr "Kunde inte kompilera woocommerce.less:" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:480 -#: admin/woocommerce-admin-functions.php:481 -msgid "Mark processing" -msgstr "Markera som behandlas" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:483 -#: admin/woocommerce-admin-functions.php:484 -msgid "Mark completed" -msgstr "Markera som genomförd" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:521 -msgid "Order status changed by bulk edit:" -msgstr "Orderstatus ändrades för flera ordrar:" - -# @ default -#: admin/woocommerce-admin-functions.php:544 -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "Order status changed." -msgstr[1] "%s orderstatus ändrades." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:57 -msgid "WooCommerce" -msgstr "WooCommerce" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:81 -msgid "WooCommerce Settings" -msgstr "WooCommerce Inställningar" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:82 -msgid "WooCommerce Status" -msgstr "WooCommerce Status" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:135 admin/woocommerce-admin-init.php:137 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Ordrar" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:390 -msgid "" -"Are you sure you want to remove the selected items? If you have previously " -"reduced this item's stock, or this order was submitted by a customer, you " -"will need to manually restore the item's stock." -msgstr "" -"Är du säker att du vill radera denna produkt? Om du nyligen minskat " -"produktens lagersaldo eller om ordern lades av en kund, behöver du manuellt " -"återställa antal produkter i lager." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:391 -msgid "Remove this item meta?" -msgstr "Ta bort detta meta för produkten" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:392 -msgid "Remove this attribute?" -msgstr "Radera detta attribut?" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:400 -msgid "Enter a name for the new attribute term:" -msgstr "Ange ett namn för den nya attributtermen:" - -#: admin/woocommerce-admin-init.php:401 -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "Beräkna summa baserat på beställda artiklar, rabatt och frakt?" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:402 -msgid "" -"Calculate line taxes? This will calculate taxes based on the customers " -"country. If no billing/shipping is set it will use the store base country." -msgstr "" -"Beräkna radens moms? Detta kommer att beräkna moms/skatt baserat på " -"kundernas hemland. Om ingen faktura/leverans-adress angetts används butikens " -"landsinställning." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:403 -msgid "" -"Copy billing information to shipping information? This will remove any " -"currently entered shipping information." -msgstr "" -"Kopiera fakturauppgifterna till leveransuppgifter? Detta raderar befintliga " -"leveransuppgifter." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:404 -msgid "" -"Load the customer's billing information? This will remove any currently " -"entered billing information." -msgstr "" -"Ladda kundens debiteringsinformation? Detta kommer ersätta nuvarande angiven " -"information." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:405 -msgid "" -"Load the customer's shipping information? This will remove any currently " -"entered shipping information." -msgstr "" -"Ladda kundens leveransinformation? Detta kommer ersätta all nuvarande " -"angiven leveransinformation." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:409 -msgid "No customer selected" -msgstr "Ingen kund vald" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:617 -msgid "Product updated. View Product" -msgstr "Produkten uppdaterades. Visa produkt" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:618 admin/woocommerce-admin-init.php:633 -#: admin/woocommerce-admin-init.php:648 -msgid "Custom field updated." -msgstr "Eget fält uppdaterades." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:619 admin/woocommerce-admin-init.php:634 -#: admin/woocommerce-admin-init.php:649 -msgid "Custom field deleted." -msgstr "Eget fält raderades." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:620 -msgid "Product updated." -msgstr "Produkt uppdaterad." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:621 -msgid "Product restored to revision from %s" -msgstr "Produkt återställdes till revision från %s" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:622 -msgid "Product published. View Product" -msgstr "Produkten publicerades. Visa produkt" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:623 -msgid "Product saved." -msgstr "Produkten sparades." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:624 -msgid "Product submitted. Preview Product" -msgstr "" -"Produkt sparades. Förhandsvisa produkt" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:625 -msgid "" -"Product scheduled for: %1$s. Preview Product" -msgstr "" -"Produkt schemalagd till: %1$s. Förhandsgranska produkt" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:626 admin/woocommerce-admin-init.php:641 -#: admin/woocommerce-admin-init.php:656 -msgid "M j, Y @ G:i" -msgstr "j M Y @ G:i" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:627 -msgid "" -"Product draft updated. Preview Product" -msgstr "" -"Produktutkast uppdaterades. Förhandsgranska " -"produkt" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:632 admin/woocommerce-admin-init.php:635 -#: admin/woocommerce-admin-init.php:637 -msgid "Order updated." -msgstr "Ordern uppdaterades." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:636 -msgid "Order restored to revision from %s" -msgstr "Ordern återställdes till revision från %s" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:638 -msgid "Order saved." -msgstr "Order sparad." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:639 -msgid "Order submitted." -msgstr "Ordern skickades." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:640 -msgid "Order scheduled for: %1$s." -msgstr "Ordern är schemalagd till: %1$s." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:642 -msgid "Order draft updated." -msgstr "Utkast av ordern uppdaterades." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:647 admin/woocommerce-admin-init.php:650 -#: admin/woocommerce-admin-init.php:652 -msgid "Coupon updated." -msgstr "Kupongen uppdaterades." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:651 -msgid "Coupon restored to revision from %s" -msgstr "Kupongen återställdes till revision från %s" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:653 -msgid "Coupon saved." -msgstr "Kupongen sparades." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:654 -msgid "Coupon submitted." -msgstr "Kupongen skickades." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:655 -msgid "Coupon scheduled for: %1$s." -msgstr "Kupongen är schemalagd till: %1$s." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:657 -msgid "Coupon draft updated." -msgstr "Utkast av kupong uppdaterades." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:674 -msgid "Order notes" -msgstr "Ordernoteringar" - -#: admin/woocommerce-admin-init.php:689 -msgid "" -"These settings control the permalinks used for products. These settings only " -"apply when not using \"default\" permalinks above." -msgstr "" -"Dessa inställningar styr permalänkarna för produkter. Dock används dessa " -"endast när standardformatet inte används ovan." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:696 -msgctxt "default-slug" -msgid "shop" -msgstr "butik" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:697 -msgctxt "default-slug" -msgid "product" -msgstr "produkt" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:718 -msgid "Shop base" -msgstr "Bassökväg för butiken" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:722 -msgid "Shop base with category" -msgstr "Bassökväg för butik med kategori" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:728 -msgid "Custom Base" -msgstr "Valbar bassökväg" - -#: admin/woocommerce-admin-init.php:730 -msgid "" -"Enter a custom base to use. A base must be set or WordPress " -"will use default instead." -msgstr "" -"Ange en anpassad länk att använda. Detta måste anges, " -"annars använder WordPress standardformatet." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:758 -msgid "Product permalink base" -msgstr "Bassökväg för produktpermalänkar" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:763 -msgid "Product category base" -msgstr "Bassökväg för produktkategorier" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:770 -msgid "Product tag base" -msgstr "Bassökväg för produktetiketter" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:777 -msgid "Product attribute base" -msgstr "Bassökväg för produktattribut" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:189 -msgctxt "page_slug" -msgid "shop" -msgstr "butik" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:189 -msgid "Shop" -msgstr "Butik" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:192 -msgctxt "page_slug" -msgid "cart" -msgstr "varukorg" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:192 -msgid "Cart" -msgstr "Varukorg" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:195 -msgctxt "page_slug" -msgid "checkout" -msgstr "till kassan" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:198 -msgctxt "page_slug" -msgid "my-account" -msgstr "mitt-konto" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:198 -msgid "My Account" -msgstr "Mitt konto" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:201 -msgctxt "page_slug" -msgid "lost-password" -msgstr "glomt-losenord" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:201 -msgid "Lost Password" -msgstr "Glömt lösenordet?" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:204 -msgctxt "page_slug" -msgid "edit-address" -msgstr "redigera-adress" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:204 -msgid "Edit My Address" -msgstr "Redigera min adress" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:207 -msgctxt "page_slug" -msgid "view-order" -msgstr "visa-order" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:207 -msgid "View Order" -msgstr "Visa order" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:210 -msgctxt "page_slug" -msgid "change-password" -msgstr "andra-losenord" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:210 -msgid "Change Password" -msgstr "Ändra lösenord" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:213 -msgctxt "page_slug" -msgid "pay" -msgstr "betala" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:213 -msgid "Checkout → Pay" -msgstr "Till kassan → Betala" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:216 -msgctxt "page_slug" -msgid "order-received" -msgstr "order-mottagen" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:36 -msgid "Sales by day" -msgstr "Försäljningar per dag" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:41 -msgid "Sales by month" -msgstr "Försäljningar per månad" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:46 -msgid "Taxes by month" -msgstr "Moms per månad" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:51 -msgid "Product Sales" -msgstr "Produktförsäljning" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:56 -msgid "Top sellers" -msgstr "Toppsäljare" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:61 -msgid "Top earners" -msgstr "Produkter med bäst förtjänst" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:66 -msgid "Sales by category" -msgstr "Försäljning efter kategori" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:81 -msgid "Discounts by coupon" -msgstr "Rabatt efter kupong" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:232 -#: admin/woocommerce-admin-reports.php:497 -#: admin/woocommerce-admin-reports.php:702 -#: admin/woocommerce-admin-reports.php:883 -msgid "Sales amount" -msgstr "Total försäljning" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:237 -#: admin/woocommerce-admin-reports.php:497 -#: admin/woocommerce-admin-reports.php:702 -#: admin/woocommerce-admin-reports.php:883 -msgid "Number of sales" -msgstr "Antal genomförda köp" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:369 -msgid "Total sales" -msgstr "Antal försäljningar" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:371 -#: admin/woocommerce-admin-reports.php:377 -#: admin/woocommerce-admin-reports.php:383 -#: admin/woocommerce-admin-reports.php:389 -#: admin/woocommerce-admin-reports.php:395 -#: admin/woocommerce-admin-reports.php:401 -#: admin/woocommerce-admin-reports.php:644 -#: admin/woocommerce-admin-reports.php:650 -#: admin/woocommerce-admin-reports.php:656 -#: admin/woocommerce-admin-reports.php:662 -#: admin/woocommerce-admin-reports.php:828 -#: admin/woocommerce-admin-reports.php:834 -#: admin/woocommerce-admin-reports.php:840 -#: admin/woocommerce-admin-reports.php:846 -#: admin/woocommerce-admin-reports.php:1364 -#: admin/woocommerce-admin-reports.php:1370 -#: admin/woocommerce-admin-reports.php:1376 -#: admin/woocommerce-admin-reports.php:1810 -#: admin/woocommerce-admin-reports.php:1816 -#: admin/woocommerce-admin-reports.php:1822 -#: admin/woocommerce-admin-reports.php:1828 -#: admin/woocommerce-admin-reports.php:1834 -#: admin/woocommerce-admin-reports.php:1840 -#: admin/woocommerce-admin-reports.php:2280 -#: admin/woocommerce-admin-reports.php:2291 -#: admin/woocommerce-admin-reports.php:2302 -msgid "n/a" -msgstr "Inte tillgänglig" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:375 -msgid "Total orders" -msgstr "Totalt antal ordrar" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:377 -#: admin/woocommerce-admin-reports.php:650 -#: admin/woocommerce-admin-reports.php:834 -msgid "items" -msgstr "varor" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:381 -msgid "Average order total" -msgstr "Genomsnittlig ordertotal" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:387 -msgid "Average order items" -msgstr "Genomsnittligt antal produkter" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:393 -msgid "Discounts used" -msgstr "Använda rabatter" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:399 -msgid "Total shipping costs" -msgstr "Total fraktkostnad" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:407 -msgid "This month's sales" -msgstr "Denna månadens försäljning" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1356 -msgid "From:" -msgstr "Från:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1356 -msgid "To:" -msgstr "Till:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:821 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1229 -#: admin/woocommerce-admin-reports.php:1356 -#: admin/woocommerce-admin-reports.php:1489 -#: admin/woocommerce-admin-reports.php:2269 -#: admin/woocommerce-admin-reports.php:2453 -msgid "Show" -msgstr "Visa" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:642 -msgid "Total sales in range" -msgstr "Total försäljning i urval" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:648 -msgid "Total orders in range" -msgstr "Totalt antal ordrar i urval" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:654 -msgid "Average order total in range" -msgstr "Genomsnittligt ordervärde i urval" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:660 -msgid "Average order items in range" -msgstr "Genomsnittligt antal produkter i urval" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:668 -msgid "Sales in range" -msgstr "Försäljning i urval" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:815 -#: admin/woocommerce-admin-reports.php:2263 -msgid "Year:" -msgstr "År:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:826 -msgid "Total sales for year" -msgstr "Total försäljning för året" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:832 -msgid "Total orders for year" -msgstr "Totalt antal ordrar för året" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:838 -msgid "Average order total for year" -msgstr "Genomsnittligt antal ordrar för år" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:844 -msgid "Average order items for year" -msgstr "Genomsnittligt antal produkter per order och år" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:852 -msgid "Monthly sales for year" -msgstr "Månatlig försäljning för år" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1000 -msgid "Product does not exist" -msgstr "Produkten existerar inte" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1097 -msgid "Product no longer exists" -msgstr "Produkten existerar inte längre" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1194 -msgid "Sales for %s:" -msgstr "Försäljning av %s:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1198 -#: admin/woocommerce-admin-reports.php:2311 -msgid "Month" -msgstr "Månad" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1219 -msgid "No sales :(" -msgstr "Ingen rea :(" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1362 -msgid "Total orders containing coupons" -msgstr "Antal ordrar som innehåller kuponger" - -#: admin/woocommerce-admin-reports.php:1368 -msgid "Percent of orders containing coupons" -msgstr "Andel ordrar som innehåller kuponger" - -#: admin/woocommerce-admin-reports.php:1374 -msgid "Total coupon discount" -msgstr "Total kupongrabatt" - -#: admin/woocommerce-admin-reports.php:1383 -msgid "Most popular coupons" -msgstr "Mest populära kuponger" - -#: admin/woocommerce-admin-reports.php:1393 -msgid "Used 1 time" -msgid_plural "Used %d times" -msgstr[0] "Använd en gång" -msgstr[1] "Använd %d gånger" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1396 -#: admin/woocommerce-admin-reports.php:1418 -msgid "No coupons found" -msgstr "Inga rabattkuponger hittades" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1405 -msgid "Greatest discount amount" -msgstr "Största möjliga rabatt" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1415 -msgid "Discounted %s" -msgstr "Rabatterad %s" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1474 -#: admin/woocommerce-admin-reports.php:2430 -msgid "Show:" -msgstr "Visa:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1531 -msgid "Coupon" -msgstr "Rabattkupong" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1614 -msgid "Top coupon" -msgstr "Toppkupong" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1622 -msgid "Worst coupon" -msgstr "Sämsta kupong" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1630 -msgid "Discount average" -msgstr "Genomsnittlig rabatt" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1638 -msgid "Discount median" -msgstr "Median för rabatter" - -#: admin/woocommerce-admin-reports.php:1658 -msgid "Monthly discounts by coupon" -msgstr "Månatlig rabatt per kupong" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1808 -msgid "Total customers" -msgstr "Totalt antal kunder" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1814 -msgid "Total customer sales" -msgstr "Total försäljning kunder" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1820 -msgid "Total guest sales" -msgstr "Total försäljning gäster" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1826 -msgid "Total customer orders" -msgstr "Totalt antal ordrar per kund" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1832 -msgid "Total guest orders" -msgstr "Totalt antal ordrar per gäst" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1838 -msgid "Average orders per customer" -msgstr "Genomsnittligt antal ordrar per kund" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1846 -msgid "Signups per day" -msgstr "Registreringar per dag" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2048 -msgid "Low stock" -msgstr "Lågt lagersaldo" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2070 -#: admin/woocommerce-admin-reports.php:2105 -msgid "%d in stock" -msgid_plural "%d in stock" -msgstr[0] "%d i lager" -msgstr[1] "%d i lager" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2075 -msgid "No products are low in stock." -msgstr "Inga produkter har lågt lagersaldo" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2110 -msgid "No products are out in stock." -msgstr "Inga produkter är slut" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2274 -msgid "Total taxes for year" -msgstr "Summa moms för året" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2285 -msgid "Total product taxes for year" -msgstr "Summa produktmoms för året" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2296 -msgid "Total shipping tax for year" -msgstr "Summa fraktmoms för året" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2312 -msgid "Total Sales" -msgstr "Summa försäljning" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2312 -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "Detta är summan av fältet \"Totalsumma\" i dina ordrar." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2313 -msgid "Total Shipping" -msgstr "Summa frakt" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2313 -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "Detta är summan från fältet \"Frakt\" i dina ordrar." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2314 -msgid "Total Product Taxes" -msgstr "Summa produktmoms" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2314 -msgid "This is the sum of the 'Cart Tax' field within your orders." -msgstr "Detta är summan av fältet \"Moms\" i dina ordrar." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2315 -msgid "Total Shipping Taxes" -msgstr "Summa fraktskatt" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2315 -msgid "This is the sum of the 'Shipping Tax' field within your orders." -msgstr "Detta är summan av fältet \"Fraktskatt\" i dina ordrar." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2316 -msgid "Total Taxes" -msgstr "Summa moms/skatt" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2316 -msgid "" -"This is the sum of the 'Cart Tax' and 'Shipping Tax' fields within your " -"orders." -msgstr "" -"Detta är summan av båda fälten \"Moms\" och \"Fraktskatt\" i dina ordrar." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2317 -msgid "Net profit" -msgstr "Vinst, netto" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2317 -msgid "Total sales minus shipping and tax." -msgstr "Summa minus frakt och moms." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2362 -msgid "Toggle tax rows" -msgstr "Visa/dölj rader för moms/skatt" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2508 -msgid "Category" -msgstr "Kategori" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2610 -msgid "Top category" -msgstr "Toppkategori" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2619 -msgid "Worst category" -msgstr "Sämsta kategori" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2627 -msgid "Category sales average" -msgstr "Genomsnittlig försäljning per kategori" - -#: admin/woocommerce-admin-reports.php:2638 -msgid "Category sales median" -msgstr "Median på försäljning per kategori" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2658 -msgid "Monthly sales by category" -msgstr "Månatlig försäljning per kategori" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:45 -msgid "Action failed. Please refresh the page and retry." -msgstr "Processen misslyckades. Uppdatera sidan och försök igen." - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:164 -msgid "Your settings have been saved." -msgstr "Dina inställningar har sparats." - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:200 -msgid "" -"Congratulations! – WooCommerce has been installed and " -"setup. Enjoy :)" -msgstr "" -"Grattis! – WooCommerce har installerats och " -"konfigurerats. Mycket nöje! :)" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:244 -msgid "" -"More functionality and gateway options available via WC official extensions." -msgstr "" -"Mer funktionalitet och betalningstjänster finns tillgängliga via WC officiella tillägg." - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:262 -msgid "Tax Rates" -msgstr "Momssatser" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:289 -msgid "Email Options" -msgstr "Inställningar för e-post" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:420 -msgid "Save changes" -msgstr "Spara ändringar" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:461 -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "Ändringar som du genomfört förloras om du lämnar denna sida." - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:829 -msgid "Hard Crop" -msgstr "Hård beskärning" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:854 -msgid "Select a page…" -msgstr "Välj sida…" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:877 -msgid "Choose a country…" -msgstr "Välj land…" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:897 -msgid "Choose countries…" -msgstr "Välj länder…" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:22 -msgid "WC Transients" -msgstr "WC-transienter" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:23 -msgid "Clear transients" -msgstr "Töm transienter" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:24 -msgid "This tool will clear the product/shop transients cache." -msgstr "Detta verktyg tömmer transientcache för produkter/butik." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:27 -msgid "Expired Transients" -msgstr "Förfallna transienter" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:28 -msgid "Clear expired transients" -msgstr "Töm förfallna transienter" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:29 -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "Detta verktyg tömmer samtliga förfallna transienter i WordPress." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:32 -msgid "Term counts" -msgstr "Antal termer" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:33 -msgid "Recount terms" -msgstr "Räkna om termer" - -#: admin/woocommerce-admin-status.php:34 -msgid "" -"This tool will recount product terms - useful when changing your settings in " -"a way which hides products from the catalog." -msgstr "" -"Detta verktyg räknar alla produkttermer på nytt, något som är användbart om " -"du ändrar inställningar som döljer produkter i din katalog." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:37 -msgid "Capabilities" -msgstr "Behörigheter" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:38 -msgid "Reset capabilities" -msgstr "Återställ behörigheter" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:39 -msgid "" -"This tool will reset the admin, customer and shop_manager roles to default. " -"Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "" -"Detta verktyg återställer rollerna för administratörer, kunder och " -"butiksansvariga. Använd detta om användare upplever problem att nå samtliga " -"WooCommerce administrationssidor." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:46 -msgid "Generate report" -msgstr "Skapa rapport" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:55 -msgid "Product Transients Cleared" -msgstr "Produkttransienter tömdes" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:96 -msgid "%d Transients Rows Cleared" -msgstr "%d produkttransienter tömdes" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:104 -msgid "Roles successfully reset" -msgstr "Roller återställdes" - -#: admin/woocommerce-admin-status.php:116 -msgid "Terms successfully recounted" -msgstr "Termer beräknades på nytt" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:125 -msgid "There was an error calling %s::%s" -msgstr "Ett fel uppstod när följande skulle anropas %s::%s" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:128 -msgid "There was an error calling %s" -msgstr "Ett fel uppstod när följande skulle anropas %s" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:141 -msgid "Versions" -msgstr "Versioner" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:147 -msgid "WooCommerce version" -msgstr "WooCommerce-version" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:151 -msgid "WooCommerce DB version" -msgstr "Version av WooCommerce DB" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:155 -msgid "WordPress version" -msgstr "WordPress-version" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:159 -msgid "Installed plugins" -msgstr "Installerades tillägg" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:174 -msgid "by" -msgstr "av" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:174 -msgid "version" -msgstr "version" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:193 -msgid "Home URL" -msgstr "Hemadress" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:197 -msgid "Site URL" -msgstr "Sajtadress" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:201 -msgid "Force SSL" -msgstr "Tvinga SSL" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:215 -msgid "Shop base page" -msgstr "Huvudsida för butik" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:267 -msgid "Page not set" -msgstr "Sida har inte valts" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:277 -msgid "Page does not contain the shortcode: %s" -msgstr "Sidan innehåller inte koden: %s" - -#: admin/woocommerce-admin-status.php:296 -msgid "Core Taxonomies" -msgstr "Standardtaxonomier" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:302 -msgid "Order Statuses" -msgstr "Orderstatusar" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:312 -msgid "Server Environment" -msgstr "Servermiljö" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:318 -msgid "PHP Version" -msgstr "PHP-version" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:325 -msgid "Server Software" -msgstr "Servermjukvara" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:331 -msgid "WP Max Upload Size" -msgstr "WP Max Upload Size" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:337 -msgid "Server upload_max_filesize" -msgstr "Server upload_max_filesize" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:344 -msgid "Server post_max_size" -msgstr "Server post_max_size" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:351 -msgid "WP Memory Limit" -msgstr "WP Memory Limit" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:356 -msgid "" -"%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "" -"%s - Vi rekommenderar att minnesgränsen sätts till minst 64MB. Se: Increasing memory allocated to PHP" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:363 -msgid "WP Debug Mode" -msgstr "WP Debug Mode" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:367 -msgid "WC Logging" -msgstr "WC Logging" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:370 -msgid "Log directory is writable." -msgstr "Katalog för logg är skrivbar." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:372 -msgid "" -"Log directory (woocommerce/logs/) is not writable. Logging will " -"not be possible." -msgstr "" -"Katalog för logg (woocommerce/logs/) är inte skrivbar. Loggning " -"är inte möjlig." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:379 -msgid "Remote Posting/IPN" -msgstr "Remote Posting/IPN" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:387 -msgid "fsockopen/cURL" -msgstr "fsockopen/cURL" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:390 -msgid "Your server has fsockopen and cURL enabled." -msgstr "fsockopen och cURL är aktiverat på din server." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:392 -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "fsockopen är aktiverat på servern, men inte cURL." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:394 -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "Servern har cURL aktiverat, men inte fsockopen." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:398 -msgid "" -"Your server does not have fsockopen or cURL enabled - PayPal IPN and other " -"scripts which communicate with other servers will not work. Contact your " -"hosting provider." -msgstr "" -"Servern verkar ha varken fsockopen eller cURL aktiverat. PayPal IPN och " -"andra skript som behöver kommunicera med servern kommer inte att fungera. " -"Vänligen kontakta ditt webbhotell." - -#: admin/woocommerce-admin-status.php:403 -msgid "SOAP Client" -msgstr "SOAP-klient" - -#: admin/woocommerce-admin-status.php:405 -msgid "Your server has the SOAP Client class enabled." -msgstr "Servern har SOAP-klientklassen aktiverad." - -#: admin/woocommerce-admin-status.php:408 -msgid "" -"Your server does not have the SOAP Client class enabled - " -"some gateway plugins which use SOAP may not work as expected." -msgstr "" -"Din server har inte SOAP-klientklassen aktiverad. Vissa " -"betalningstjänster som använder SOAP kanske inte kommer att fungera." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:413 -msgid "WP Remote Post Check" -msgstr "WP Remote Post Check" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:424 -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "wp_remote_post() fungerar korrekt - PayPal IPN fungerar." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:427 -msgid "" -"wp_remote_post() failed. PayPal IPN won't work with your server. Contact " -"your hosting provider. Error:" -msgstr "" -"wp_remote_post() misslyckades. PayPal IPN kommer inte att fungera på din " -"server. Vänligen kontakt ditt webbhotell med följande felmeddelade:" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:430 -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "" -"wp_remote_post() misslyckades. PayPal IPN kanske inte fungerar korrekt på " -"din server." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:452 -msgid "Tools" -msgstr "Verktyg" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:25 -#: admin/woocommerce-admin-taxonomies.php:118 -msgid "Display type" -msgstr "Visningstyp" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:29 -#: admin/woocommerce-admin-taxonomies.php:123 -msgid "Subcategories" -msgstr "Underkategorier" - -#: admin/woocommerce-admin-taxonomies.php:30 -#: admin/woocommerce-admin-taxonomies.php:124 -msgid "Both" -msgstr "Båda" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:34 -#: admin/woocommerce-admin-taxonomies.php:129 -msgid "Thumbnail" -msgstr "Tumnagel" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:38 -#: admin/woocommerce-admin-taxonomies.php:134 -msgid "Upload/Add image" -msgstr "Ladda upp/lägg till bild" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:39 -#: admin/woocommerce-admin-taxonomies.php:135 -msgid "Remove image" -msgstr "Ta bort bild" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:64 -#: admin/woocommerce-admin-taxonomies.php:156 -msgid "Use image" -msgstr "Använd bild" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:222 -msgid "" -"Product categories for your store can be managed here. To change the order " -"of categories on the front-end you can drag and drop to sort them. To see " -"more categories listed click the \"screen options\" link at the top of the " -"page." -msgstr "" -"Produktkategorier för din webbutik kan hanteras här. För att ändra ordning " -"av visningen av kategorierna för kunden kan du dra och släppa för att " -"sortera. För att se fler kategorier klicka på \"skärminställningar\" längst " -"upp på sidan." - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:237 -msgid "" -"Shipping classes can be used to group products of similar type. These groups " -"can then be used by certain shipping methods to provide different rates to " -"different products." -msgstr "" -"Fraktklasser kan användas för att gruppera liknande produkter. Dessa grupper " -"kan sen användas av olika fraktmetoder för att ge olika lösningar/" -"prisförlsag för frakt." - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:365 -msgid "Configure shipping class" -msgstr "Konfigurera fraktklass" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:26 -msgid "Billing Address" -msgstr "Fakturaadress" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:27 -msgid "Shipping Address" -msgstr "Leveransadress" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:28 -msgid "Paying Customer?" -msgstr "Betalande kund?" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:29 -msgid "Completed Orders" -msgstr "Genomförda ordrar" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:144 -msgid "Customer Billing Address" -msgstr "Fakturaadress för kund" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:147 admin/woocommerce-admin-users.php:196 -msgid "First name" -msgstr "Förnamn" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:151 admin/woocommerce-admin-users.php:200 -msgid "Last name" -msgstr "Efternamn" - -#: admin/woocommerce-admin-users.php:176 -msgid "Country or state code" -msgstr "Landskod (eller stat)" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:180 admin/woocommerce-admin-users.php:229 -msgid "2 letter Country code" -msgstr "Landskod (2 bokstäver)" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:183 -msgid "Telephone" -msgstr "Telefon" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:193 -msgid "Customer Shipping Address" -msgstr "Leveransadress för kund" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:225 -msgid "State/County or state code" -msgstr "Landskod (eller stat)" diff --git a/i18n/languages/woocommerce-admin-zh_CN.mo b/i18n/languages/woocommerce-admin-zh_CN.mo deleted file mode 100755 index f7d43afaa48..00000000000 Binary files a/i18n/languages/woocommerce-admin-zh_CN.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-admin-zh_CN.po b/i18n/languages/woocommerce-admin-zh_CN.po deleted file mode 100755 index 6c11a2e34ad..00000000000 --- a/i18n/languages/woocommerce-admin-zh_CN.po +++ /dev/null @@ -1,5995 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce 2.0.3 Admin\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-03-04 09:46:18+00:00\n" -"PO-Revision-Date: \n" -"Last-Translator: whw \n" -"Language-Team: comodo \n" -"Language: zh_cn\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" -"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" -"X-Poedit-Basepath: ../../\n" -"X-Textdomain-Support: yes\n" -"X-Generator: Poedit 1.5.7\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPath-1: ../..\n" - -# @ woocommerce -#: admin/importers/importers-init.php:13 -msgid "WooCommerce Tax Rates (CSV)" -msgstr "WooCommerce税率(CSV)" - -#: admin/importers/importers-init.php:13 -msgid "Import tax rates to your store via a csv file." -msgstr "通过CSV文件导入税率到网店" - -#: admin/importers/tax-rates-importer.php:103 -#: admin/importers/tax-rates-importer.php:186 -#: admin/importers/tax-rates-importer.php:226 -#: admin/importers/tax-rates-importer.php:241 -msgid "Sorry, there has been an error." -msgstr "对不起,出现了一个错误." - -#: admin/importers/tax-rates-importer.php:104 -msgid "The file does not exist, please try again." -msgstr "文件不存在,请重试." - -#: admin/importers/tax-rates-importer.php:187 -msgid "The CSV is invalid." -msgstr "页面模板无效。" - -#: admin/importers/tax-rates-importer.php:198 -msgid "" -"Import complete - imported %s tax rates and skipped " -"%s." -msgstr "导入完成--已导入%s条税率,跳过%s条." - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:208 -msgid "All done!" -msgstr "全部完成!" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:208 -msgid "View Tax Rates" -msgstr "本地税率" - -#: admin/importers/tax-rates-importer.php:259 -msgid "Import Tax Rates" -msgstr "本地税率" - -#: admin/importers/tax-rates-importer.php:282 -msgid "" -"Hi there! Upload a CSV file containing tax rates to import the contents into " -"your shop. Choose a .csv file to upload, then click \"Upload file and import" -"\"." -msgstr "" -"您好!上传CSV文件导入到您的店铺税率。选择csv文件,然后点击\"上传文件导入\"." - -#: admin/importers/tax-rates-importer.php:284 -msgid "" -"Tax rates need to be defined with columns in a specific order (10 columns). " -"Click here to download a sample." -msgstr "" -"税率被定义在一个特定的顺序列(10列)。 点击此处下载示例。" - -#: admin/importers/tax-rates-importer.php:292 -msgid "" -"Before you can upload your import file, you will need to fix the following " -"error:" -msgstr "在上传您的导入文件之前,您需要修正以下错误:" - -#: admin/importers/tax-rates-importer.php:301 -msgid "Choose a file from your computer:" -msgstr "从您的计算机上选择一个文件:" - -#: admin/importers/tax-rates-importer.php:307 -msgid "Maximum size: %s" -msgstr "最大大小:%s" - -#: admin/importers/tax-rates-importer.php:312 -msgid "OR enter path to file:" -msgstr "或者输入文件路径:" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:319 -msgid "Delimiter" -msgstr "分隔符" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:325 -msgid "Upload file and import" -msgstr "上传文件并导入" - -# @ woocommerce -#: admin/includes/duplicate_product.php:23 -msgid "No product to duplicate has been supplied!" -msgstr "没有提供要复制的产品" - -# @ woocommerce -#: admin/includes/duplicate_product.php:43 -msgid "Product creation failed, could not find original product:" -msgstr "产品创建失败,无法找到原来的产品:" - -# @ woocommerce -#: admin/includes/duplicate_product.php:89 -msgid "(Copy)" -msgstr "(Kopieren)" - -#: admin/includes/notice-install.php:6 -msgid "" -"Welcome to WooCommerce – You're almost ready to start " -"selling :)" -msgstr "" -"欢迎使用 WooCommerce – 你即将开始你的销售生涯 :)" - -# @ woocommerce -#: admin/includes/notice-install.php:7 -msgid "Install WooCommerce Pages" -msgstr "安装WooCommerce页面" - -# @ woocommerce -#: admin/includes/notice-install.php:7 -msgid "Skip setup" -msgstr "跳过安装" - -#: admin/includes/notice-theme-support.php:6 -msgid "" -"Your theme does not declare WooCommerce support – if " -"you encounter layout issues please read our integration guide or choose a " -"WooCommerce theme :)" -msgstr "" -"WooCommerce没有声明对您的主题支持 –如果你遇到的布局问" -"题,请阅读我们的集成指南,或选择WooCommerce主题 :)" - -# @ woocommerce -#: admin/includes/notice-theme-support.php:7 -msgid "Theme Integration Guide" -msgstr "启用分享" - -# @ woocommerce -#: admin/includes/notice-theme-support.php:7 -msgid "Hide this notice" -msgstr "关闭这个通知" - -#: admin/includes/notice-update.php:6 -msgid "" -"Data Update Required – We just need to update your " -"install to the latest version" -msgstr " 我们只需要更新安装到最新版本–数据更新 " - -# @ woocommerce -#: admin/includes/notice-update.php:7 -msgid "Run the updater" -msgstr "进行安装" - -#: admin/includes/notice-update.php:12 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "我们强烈建议您先备份你的数据库,然后再继续。你确定你想运行的更新吗?" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:50 -#: admin/woocommerce-admin-init.php:895 -msgctxt "slug" -msgid "product-category" -msgstr "商品分类" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:51 -#: admin/woocommerce-admin-init.php:908 -msgctxt "slug" -msgid "product-tag" -msgstr "商品标签" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:59 -msgctxt "slug" -msgid "product" -msgstr "商品" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:180 -#: admin/woocommerce-admin-install.php:204 -msgctxt "page_slug" -msgid "lost-password" -msgstr "忘记密码" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:180 -#: admin/woocommerce-admin-install.php:204 -#: admin/woocommerce-admin-status.php:309 -msgid "Lost Password" -msgstr "忘记密码" - -# @ woocommerce -#: admin/includes/welcome.php:33 -msgid "Welcome to WooCommerce" -msgstr "添加到相册" - -# @ woocommerce -#: admin/includes/welcome.php:128 -msgid "Welcome to WooCommerce %s" -msgstr "添加到相册" - -# @ woocommerce -#: admin/includes/welcome.php:133 -msgid "Thanks, all done!" -msgstr "所有订单状态" - -#: admin/includes/welcome.php:135 -msgid "Thank you for updating to the latest version!" -msgstr "谢谢您更新到最新版本!" - -#: admin/includes/welcome.php:137 -msgid "Thanks for installing!" -msgstr "开始安装插件" - -#: admin/includes/welcome.php:139 -msgid "" -"%s WooCommerce %s is more powerful, stable, and secure than ever before. We " -"hope you enjoy it." -msgstr "%s WooCommerce %s非常强大,稳定,而且比之前更安全,我们希望您喜欢它." - -# @ woocommerce -#: admin/includes/welcome.php:143 -msgid "Version %s" -msgstr "%s 版本" - -# @ woocommerce -#: admin/includes/welcome.php:146 admin/woocommerce-admin-content.php:41 -#: admin/woocommerce-admin-init.php:86 admin/woocommerce-admin-status.php:252 -msgid "Settings" -msgstr "设置" - -#: admin/includes/welcome.php:147 -msgid "Docs" -msgstr "Docs" - -#: admin/includes/welcome.php:154 -msgid "What's New" -msgstr "更新内容" - -#: admin/includes/welcome.php:156 -msgid "Credits" -msgstr "鸣谢" - -#: admin/includes/welcome.php:179 -msgid "Security in mind" -msgstr "范围内销售" - -#: admin/includes/welcome.php:183 -msgid "Sucuri Safe Plugin" -msgstr "插件激活成功。" - -#: admin/includes/welcome.php:184 -msgid "" -"You will be happy to learn that WooCommerce has been audited and certified " -"by the Sucuri Security team. Whilst there is not much to be seen visually to " -"understand the amount of work that went into this audit, rest assured that " -"your website is powered by one of the most powerful and stable eCommerce " -"plugins available." -msgstr "" -"你会喜欢由安全团队Sucuri认证审核的WooCommerce。虽然没大量的审核工作您都不能亲" -"眼所见、也不能参与到审核。请放心!你的网站在使用一个非常强大,非常稳定的电子" -"商务插件。" - -#: admin/includes/welcome.php:187 -msgid "A Smoother Admin Experience" -msgstr "用户体验主管" - -# @ woocommerce -#: admin/includes/welcome.php:193 -msgid "New Product Panel" -msgstr "添加新商品" - -#: admin/includes/welcome.php:194 -msgid "" -"We have revised the product data panel making it cleaner, more streamlined, " -"and more logical. Adding products is a breeze!" -msgstr "" -"我们已经修改了产品数据面板,使其更清洁,更精简,更符合逻辑。可以轻而易举的新" -"增产品!" - -#: admin/includes/welcome.php:199 -msgid "Nicer Order Screens" -msgstr "新添订单" - -#: admin/includes/welcome.php:200 -msgid "" -"Order pages have had a cleanup, with a more easily scannable interface. We " -"particularly like the new status icons!" -msgstr "订购页面有一个清理,更容易扫描界面。我们特别喜欢新的状态图标!" - -#: admin/includes/welcome.php:205 -msgid "Multi-Download Support" -msgstr "右至左书写方向支持" - -#: admin/includes/welcome.php:206 -msgid "" -"Products can have multiple downloadable files - purchasers will get access " -"to all the files added." -msgstr "商品可以有多个下载文件 - 购买者将获得所有添加的文件。" - -#: admin/includes/welcome.php:211 -msgid "Less Taxing Taxes" -msgstr "(税收估计为 %s)" - -#: admin/includes/welcome.php:217 -msgid "New Tax Input Panel" -msgstr "新税率输入面板" - -#: admin/includes/welcome.php:218 -msgid "" -"The tax input pages have been streamlined to make inputting taxes simpler - " -"adding multiple taxes for a single jurisdiction is now much easier using the " -"priority system. There is also CSV import/export support." -msgstr "" -"简化税率输入页可使输入税率更简便-此优先系统为一个管区添加多个税率现在更容" -"易,当然也可以使用CSV导入/导出功能。" - -# @ woocommerce -#: admin/includes/welcome.php:222 -msgid "Improved Tax Options" -msgstr "Flash 视频选项" - -#: admin/includes/welcome.php:223 -msgid "" -"As requested by some users, we now support taxing the billing address " -"instead of shipping (optional), and we allow you to choose which tax class " -"applies to shipping." -msgstr "" -"由于一些用户的要求,我们现在支持征税的帐单地址,而不是配送(可选),我们允许" -"你选择税类适用于配送。" - -#: admin/includes/welcome.php:228 -msgid "Product Listing Improvements Customers Will Love" -msgstr "顾客会爱上新品上市功能" - -# @ woocommerce -#: admin/includes/welcome.php:234 -msgid "New Sorting Options" -msgstr "Flash 视频选项" - -#: admin/includes/welcome.php:235 -msgid "Customers can now sort products by popularity and ratings." -msgstr "顾客现在可以按商品的受关注和评级来排序。" - -#: admin/includes/welcome.php:240 -msgid "Better Pagination and Result Counts" -msgstr "更好的分页和统计结果" - -#: admin/includes/welcome.php:241 -msgid "" -"Numbered pagination has been added to core, and we show the number of " -"results found above the listings." -msgstr "编号的分页已被添加到核心,我们表明,发现上面的列表结果数。" - -#: admin/includes/welcome.php:246 -msgid "Inline Star Rating Display" -msgstr "直列星级显示" - -#: admin/includes/welcome.php:247 -msgid "" -"We have added star ratings to the catalog which are pulled from reviews." -msgstr "我们已经增加了评论的星级目录被拉起。" - -#: admin/includes/welcome.php:255 -msgid "Under the Hood" -msgstr "面板之下" - -# @ woocommerce -#: admin/includes/welcome.php:259 -msgid "New product classes" -msgstr "添加新商品" - -#: admin/includes/welcome.php:260 -msgid "" -"The product classes have been rewritten and are now factory based. Much more " -"extendable, and easier to query products using the new get_product() function." -msgstr "" - -#: admin/includes/welcome.php:264 -msgid "Capability overhaul" -msgstr "" - -#: admin/includes/welcome.php:265 -msgid "" -"More granular capabilities for admin/shop manager roles covering products, " -"orders and coupons." -msgstr "" - -#: admin/includes/welcome.php:269 -msgid "API Improvements" -msgstr "多站点功能增强" - -#: admin/includes/welcome.php:270 -msgid "" -"WC-API now has real endpoints, and we've optimised the gateways " -"API significantly by only loading gateways when needed." -msgstr "" - -#: admin/includes/welcome.php:276 -msgid "Cache-friendly cart widgets" -msgstr "" - -#: admin/includes/welcome.php:277 -msgid "" -"Cart widgets and other \"fragments\" are now pulled in via AJAX - this works " -"wonders with static page caching." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:281 -msgid "Session handling" -msgstr "手续费" - -#: admin/includes/welcome.php:282 -msgid "" -"PHP SESSIONS have been a problem for many users in the past, so we've " -"developed our own handler using cookies and options to make these more " -"reliable." -msgstr "" - -#: admin/includes/welcome.php:286 -msgid "Retina Ready" -msgstr "支持 Retina 显示屏" - -#: admin/includes/welcome.php:287 -msgid "All graphics within WC have been optimised for HiDPI displays." -msgstr "" - -#: admin/includes/welcome.php:294 -msgid "Better stock handling" -msgstr "默认手续费" - -#: admin/includes/welcome.php:295 -msgid "" -"We have added an option to hold stock for unpaid orders (defaults to " -"60mins). When this time limit is reached, and the order is not paid for, " -"stock is released and the order is cancelled." -msgstr "" - -#: admin/includes/welcome.php:299 -msgid "Improved Line-item storage" -msgstr "线路税类" - -#: admin/includes/welcome.php:300 -msgid "" -"We have changed how order items get stored making them easier (and faster) " -"to access for reporting. Order items are no longer serialised within an " -"order - they are stored within their own table." -msgstr "" - -#: admin/includes/welcome.php:304 -msgid "Autoload" -msgstr "" - -#: admin/includes/welcome.php:305 -msgid "" -"We have setup autoloading for classes - this has dramatically reduced memory " -"usage in 2.0." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:312 -msgid "Go to WooCommerce Settings" -msgstr "回首页 →" - -#: admin/includes/welcome.php:330 -msgid "" -"WooCommerce is developed and maintained by a worldwide team of passionate " -"individuals and backed by an awesome developer community. Want to see your " -"name? Contribute to WooCommerce." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:356 -msgid "View %s" -msgstr "查看" - -# @ woocommerce -#: admin/post-types/product.php:31 -msgid "Make a duplicate from this product" -msgstr "将这个产品复制一份" - -# @ woocommerce -#: admin/post-types/product.php:32 -msgid "Duplicate" -msgstr "复制" - -# @ woocommerce -#: admin/post-types/product.php:61 -msgid "Copy to a new draft" -msgstr "复制到一个新的草稿" - -# @ woocommerce -#: admin/post-types/product.php:86 admin/woocommerce-admin-taxonomies.php:297 -msgid "Image" -msgstr "图像" - -# @ woocommerce -# @ woocommerce -#: admin/post-types/product.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:372 -#: admin/post-types/writepanels/writepanel-product_data.php:451 -#: admin/woocommerce-admin-attributes.php:232 -#: admin/woocommerce-admin-attributes.php:268 -#: admin/woocommerce-admin-attributes.php:306 -#: admin/woocommerce-admin-attributes.php:329 -#: admin/woocommerce-admin-attributes.php:373 -#: admin/woocommerce-admin-attributes.php:398 -#: admin/woocommerce-admin-init.php:450 -msgid "Name" -msgstr "姓名" - -# @ woocommerce -#: admin/post-types/product.php:91 admin/post-types/product.php:557 -#: admin/post-types/writepanels/variation-admin-html.php:46 -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#: admin/woocommerce-admin-reports.php:2083 -#: admin/woocommerce-admin-reports.php:2119 -msgid "SKU" -msgstr "编码" - -# @ woocommerce -#: admin/post-types/product.php:94 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:83 -#: admin/woocommerce-admin-content.php:63 -#: admin/woocommerce-admin-reports.php:99 -msgid "Stock" -msgstr "库存" - -# @ woocommerce -#: admin/post-types/product.php:96 admin/post-types/product.php:568 -#: admin/post-types/product.php:787 admin/woocommerce-admin-functions.php:196 -msgid "Price" -msgstr "价格" - -# @ woocommerce -#: admin/post-types/product.php:98 -msgid "Categories" -msgstr "分类" - -# @ woocommerce -#: admin/post-types/product.php:99 -msgid "Tags" -msgstr "标签" - -# @ woocommerce -#: admin/post-types/product.php:100 admin/post-types/product.php:632 -#: admin/post-types/product.php:904 -#: admin/post-types/writepanels/writepanel-product_data.php:1040 -#: admin/woocommerce-admin-init.php:463 -msgid "Featured" -msgstr "精选" - -# @ woocommerce -#: admin/post-types/product.php:101 admin/woocommerce-admin-attributes.php:250 -#: admin/woocommerce-admin-attributes.php:308 -#: admin/woocommerce-admin-attributes.php:385 -msgid "Type" -msgstr "类型" - -# @ woocommerce -#: admin/post-types/product.php:102 admin/post-types/shop_order.php:50 -msgid "Date" -msgstr "日期" - -#: admin/post-types/product.php:151 -msgid "Edit this item" -msgstr "编辑此项目" - -# @ woocommerce -#: admin/post-types/product.php:151 -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#: admin/post-types/writepanels/writepanel-order_data.php:387 -#: admin/post-types/writepanels/writepanel-product_data.php:1043 -#: admin/woocommerce-admin-attributes.php:322 -msgid "Edit" -msgstr "编辑" - -#: admin/post-types/product.php:152 -msgid "Edit this item inline" -msgstr "编辑这个项目的内联" - -#: admin/post-types/product.php:152 -msgid "Quick Edit" -msgstr "快速 编辑" - -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore this item from the Trash" -msgstr "从垃圾桶还原此项" - -# @ woocommerce -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore" -msgstr "还原" - -# @ woocommerce -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Move this item to the Trash" -msgstr "将此项移至回收站" - -# @ woocommerce -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Trash" -msgstr "回收站" - -# @ woocommerce -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -msgid "Delete this item permanently" -msgstr "永久删除此项" - -# @ woocommerce -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -#: admin/post-types/writepanels/writepanel-order_data.php:463 -msgid "Delete Permanently" -msgstr "永久删除" - -#: admin/post-types/product.php:165 -msgid "Preview “%s”" -msgstr "预览“%s”" - -# @ woocommerce -#: admin/post-types/product.php:165 -msgid "Preview" -msgstr "预览" - -#: admin/post-types/product.php:167 -msgid "View “%s”" -msgstr "查看 “%s”" - -# @ woocommerce -#: admin/post-types/product.php:167 admin/post-types/shop_order.php:171 -msgid "View" -msgstr "查看" - -# @ woocommerce -#: admin/post-types/product.php:214 -msgid "Grouped" -msgstr "分组" - -#: admin/post-types/product.php:216 -msgid "External/Affiliate" -msgstr "外部/加盟" - -# @ woocommerce -#: admin/post-types/product.php:220 admin/post-types/product.php:407 -#: admin/post-types/writepanels/variation-admin-html.php:168 -#: admin/post-types/writepanels/writepanel-product_data.php:52 -msgid "Virtual" -msgstr "虚拟" - -# @ woocommerce -#: admin/post-types/product.php:222 admin/post-types/product.php:403 -#: admin/post-types/writepanels/variation-admin-html.php:166 -#: admin/post-types/writepanels/writepanel-product_data.php:58 -msgid "Downloadable" -msgstr "下载" - -# @ woocommerce -#: admin/post-types/product.php:224 -msgid "Simple" -msgstr "简单" - -# @ woocommerce -#: admin/post-types/product.php:228 admin/post-types/product.php:387 -msgid "Variable" -msgstr "变量" - -# @ woocommerce -#: admin/post-types/product.php:251 -msgid "Toggle featured" -msgstr "特色产品" - -#: admin/post-types/product.php:253 -msgid "yes" -msgstr "是" - -#: admin/post-types/product.php:255 -msgid "no" -msgstr "否" - -# @ woocommerce -#: admin/post-types/product.php:262 admin/post-types/product.php:641 -#: admin/post-types/product.php:928 -#: admin/post-types/writepanels/writepanel-product_data.php:231 -msgid "In stock" -msgstr "有货" - -# @ woocommerce -#: admin/post-types/product.php:264 admin/post-types/product.php:642 -#: admin/post-types/product.php:929 -#: admin/post-types/writepanels/writepanel-product_data.php:232 -#: admin/woocommerce-admin-reports.php:2103 -msgid "Out of stock" -msgstr "无货" - -# @ woocommerce -#: admin/post-types/product.php:373 -msgid "Show all product types" -msgstr "显示全部产品类型" - -# @ woocommerce -#: admin/post-types/product.php:381 -#: admin/post-types/writepanels/writepanel-product_data.php:39 -msgid "Grouped product" -msgstr "产品分组" - -#: admin/post-types/product.php:383 -#: admin/post-types/writepanels/writepanel-product_data.php:40 -msgid "External/Affiliate product" -msgstr "外接/关联产品" - -# @ woocommerce -#: admin/post-types/product.php:385 -#: admin/post-types/writepanels/writepanel-product_data.php:38 -msgid "Simple product" -msgstr "单个产品" - -# @ woocommerce -#: admin/post-types/product.php:399 -msgid "Show all sub-types" -msgstr "显示全部子类型" - -# @ woocommerce -#: admin/post-types/product.php:520 -msgid "[%s with SKU of %s]" -msgstr "[%s with SKU of %s]" - -# @ woocommerce -#: admin/post-types/product.php:526 -msgid "[%s with ID of %d]" -msgstr "[%s with ID of %d]" - -# @ woocommerce -#: admin/post-types/product.php:552 admin/post-types/product.php:783 -#: admin/post-types/writepanels/writepanels-init.php:46 -#: admin/settings/settings-init.php:518 -msgid "Product Data" -msgstr "产品数据" - -# @ woocommerce -#: admin/post-types/product.php:570 -msgid "Regular price" -msgstr "原价" - -# @ woocommerce -#: admin/post-types/product.php:575 admin/post-types/product.php:811 -msgid "Sale" -msgstr "销售" - -# @ woocommerce -#: admin/post-types/product.php:577 -msgid "Sale price" -msgstr "网售价" - -# @ woocommerce -#: admin/post-types/product.php:588 admin/post-types/product.php:837 -#: admin/post-types/writepanels/variation-admin-html.php:90 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:273 -msgid "Weight" -msgstr "重量" - -#: admin/post-types/product.php:599 admin/post-types/product.php:861 -msgid "L/W/H" -msgstr "长/宽/高" - -# @ woocommerce -#: admin/post-types/product.php:601 admin/post-types/product.php:877 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:85 -#: admin/post-types/writepanels/writepanel-product_data.php:286 -msgid "Length" -msgstr "长" - -# @ woocommerce -# @ woocommerce -#: admin/post-types/product.php:602 admin/post-types/product.php:878 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:86 -#: admin/post-types/writepanels/writepanel-product_data.php:287 -#: admin/woocommerce-admin-settings.php:795 -msgid "Width" -msgstr "宽度" - -# @ woocommerce -# @ woocommerce -#: admin/post-types/product.php:603 admin/post-types/product.php:879 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:87 -#: admin/post-types/writepanels/writepanel-product_data.php:288 -#: admin/woocommerce-admin-settings.php:797 -msgid "Height" -msgstr "高度" - -# @ woocommerce -#: admin/post-types/product.php:613 admin/post-types/product.php:885 -msgid "Visibility" -msgstr "能见度" - -# @ woocommerce -#: admin/post-types/product.php:618 admin/post-types/product.php:891 -msgid "Catalog & search" -msgstr "分类& 搜索" - -# @ woocommerce -#: admin/post-types/product.php:619 admin/post-types/product.php:892 -#: admin/post-types/writepanels/writepanel-product_data.php:1029 -#: admin/woocommerce-admin-content.php:46 -#: admin/woocommerce-admin-settings.php:181 -msgid "Catalog" -msgstr "分类" - -# @ woocommerce -#: admin/post-types/product.php:620 admin/post-types/product.php:893 -#: admin/post-types/writepanels/writepanel-product_data.php:1030 -msgid "Search" -msgstr "搜索" - -# @ woocommerce -#: admin/post-types/product.php:621 admin/post-types/product.php:894 -#: admin/post-types/writepanels/writepanel-product_data.php:1031 -msgid "Hidden" -msgstr "隐藏" - -# @ woocommerce -#: admin/post-types/product.php:636 admin/post-types/product.php:922 -msgid "In stock?" -msgstr "有货?" - -# @ woocommerce -#: admin/post-types/product.php:657 admin/post-types/product.php:940 -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Manage stock?" -msgstr "管理库存?" - -# @ woocommerce -#: admin/post-types/product.php:661 admin/post-types/product.php:959 -#: admin/post-types/product.php:975 -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "Stock Qty" -msgstr "库存数量" - -#: admin/post-types/product.php:792 admin/post-types/product.php:816 -#: admin/post-types/product.php:842 admin/post-types/product.php:866 -#: admin/post-types/product.php:890 admin/post-types/product.php:909 -#: admin/post-types/product.php:927 admin/post-types/product.php:945 -#: admin/post-types/product.php:964 -msgid "— No Change —" -msgstr "— 没有变化 —" - -# @ woocommerce -#: admin/post-types/product.php:793 admin/post-types/product.php:817 -#: admin/post-types/product.php:843 admin/post-types/product.php:867 -#: admin/post-types/product.php:965 -msgid "Change to:" -msgstr "更改为:" - -#: admin/post-types/product.php:794 admin/post-types/product.php:818 -msgid "Increase by (fixed amount or %):" -msgstr "" - -#: admin/post-types/product.php:795 admin/post-types/product.php:819 -msgid "Decrease by (fixed amount or %):" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:805 admin/post-types/product.php:830 -msgid "Enter price" -msgstr "原价" - -#: admin/post-types/product.php:820 -msgid "Decrease regular price by (fixed amount or %):" -msgstr "" - -#: admin/post-types/product.php:910 admin/post-types/product.php:946 -#: admin/post-types/shop_order.php:190 admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:260 -msgid "Yes" -msgstr "是" - -# @ woocommerce -#: admin/post-types/product.php:911 admin/post-types/product.php:947 -#: admin/post-types/shop_order.php:192 admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:260 -msgid "No" -msgstr "否" - -# @ woocommerce -#: admin/post-types/product.php:1175 -msgid "Sort Products" -msgstr "Produkte sortieren" - -# @ woocommerce -#: admin/post-types/product.php:1214 -msgid "Insert into product" -msgstr "插入至页面" - -# @ woocommerce -#: admin/post-types/product.php:1215 -msgid "Uploaded to this product" -msgstr "上传到本页面的" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:25 -msgid "Code" -msgstr "代码" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:26 -msgid "Coupon type" -msgstr "优惠券类型" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:27 -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Coupon amount" -msgstr "优惠券金额" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:28 -msgid "Description" -msgstr "描述" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:29 -msgid "Product IDs" -msgstr "产品 IDs" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:30 -msgid "Usage / Limit" -msgstr "使用限制" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:31 -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "Expiry date" -msgstr "到期日" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:56 -msgid "Edit coupon" -msgstr "编辑优惠券" - -#: admin/post-types/shop_coupon.php:114 -msgid "%s / %s" -msgstr "" - -#: admin/post-types/shop_coupon.php:116 -msgid "%s / ∞" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:149 admin/post-types/shop_order.php:282 -msgid "Show all statuses" -msgstr "显示所有状态" - -# @ woocommerce -#: admin/post-types/shop_order.php:43 -#: admin/settings/settings-payment-gateways.php:29 -#: admin/settings/settings-shipping-methods.php:31 -msgid "Status" -msgstr "状态" - -# @ woocommerce -#: admin/post-types/shop_order.php:44 -msgid "Order" -msgstr "订单" - -# @ woocommerce -#: admin/post-types/shop_order.php:45 -msgid "Billing" -msgstr "账单" - -# @ woocommerce -#: admin/post-types/shop_order.php:46 -#: admin/post-types/writepanels/writepanel-order_data.php:536 -#: admin/post-types/writepanels/writepanel-product_data.php:81 -#: admin/settings/settings-tax-rates.php:52 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-content.php:49 -#: admin/woocommerce-admin-settings.php:185 -msgid "Shipping" -msgstr "配送" - -# @ woocommerce -#: admin/post-types/shop_order.php:47 -msgid "Order Total" -msgstr "订单总计" - -# @ woocommerce -#: admin/post-types/shop_order.php:48 -#: admin/post-types/writepanels/writepanels-init.php:71 -msgid "Order Notes" -msgstr "订单备注" - -# @ woocommerce -#: admin/post-types/shop_order.php:49 -msgid "Customer Notes" -msgstr "客户注意" - -# @ woocommerce -#: admin/post-types/shop_order.php:51 -#: admin/post-types/writepanels/writepanel-order_data.php:386 -#: admin/post-types/writepanels/writepanel-order_data.php:433 -msgid "Actions" -msgstr "操作" - -# @ woocommerce -#: admin/post-types/shop_order.php:95 -#: admin/post-types/writepanels/writepanel-order_data.php:93 -msgid "Guest" -msgstr "访客" - -# @ woocommerce -#: admin/post-types/shop_order.php:98 -msgid "Order %s" -msgstr "订单 %s" - -#: admin/post-types/shop_order.php:98 -msgid "made by" -msgstr "创建顾客:" - -# @ woocommerce -#: admin/post-types/shop_order.php:101 -msgid "Email:" -msgstr "Email:" - -# @ woocommerce -#: admin/post-types/shop_order.php:104 -msgid "Tel:" -msgstr "电话:" - -# @ woocommerce -#: admin/post-types/shop_order.php:114 admin/post-types/shop_order.php:123 -msgid "Via" -msgstr "通过" - -# @ woocommerce -#: admin/post-types/shop_order.php:131 -msgid "Unpublished" -msgstr "未发布" - -# @ woocommerce -#: admin/post-types/shop_order.php:133 -msgid "Y/m/d g:i:s A" -msgstr "Y/m/d g:i:s A" - -# "il y a" déplacé dans la chaine parente car en anglais "ago" est placé après la durée. -#: admin/post-types/shop_order.php:139 -msgid "%s ago" -msgstr "%s前" - -# @ woocommerce -#: admin/post-types/shop_order.php:141 -msgid "Y/m/d" -msgstr "Y-m-d" - -# @ woocommerce -#: admin/post-types/shop_order.php:158 -#: admin/woocommerce-admin-dashboard.php:176 -msgid "Processing" -msgstr "处理" - -# @ woocommerce -#: admin/post-types/shop_order.php:165 -msgid "Complete" -msgstr "完成" - -# @ woocommerce -#: admin/post-types/shop_order.php:301 admin/post-types/shop_order.php:326 -msgid "Show all customers" -msgstr "显示所有客户" - -#: admin/post-types/writepanels/order-download-permission-html.php:6 -msgid "Revoke Access" -msgstr "撤销访问" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:7 -#: admin/post-types/writepanels/variation-admin-html.php:7 -#: admin/post-types/writepanels/writepanel-product_data.php:365 -#: admin/post-types/writepanels/writepanel-product_data.php:444 -#: admin/woocommerce-admin-init.php:452 -msgid "Click to toggle" -msgstr "点击切换" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -msgid "File %d: %s" -msgstr "文件已取消。" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:9 -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "已下载 %s 次" -msgstr[1] "已下载 %s 次" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:16 -msgid "Downloads Remaining" -msgstr "下载剩余" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:19 -#: admin/post-types/writepanels/variation-admin-html.php:143 -#: admin/post-types/writepanels/variation-admin-html.php:151 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Unlimited" -msgstr "不限制" - -#: admin/post-types/writepanels/order-download-permission-html.php:22 -msgid "Access Expires" -msgstr "访问过期" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:23 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Never" -msgstr "永久有效" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:10 -msgid "Fee Name" -msgstr "锚名称" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:17 -#: admin/post-types/writepanels/order-item-html.php:84 -msgid "Tax class" -msgstr "税类" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:19 -#: admin/post-types/writepanels/order-tax-html.php:8 -#: admin/post-types/writepanels/writepanel-order_data.php:558 -#: admin/post-types/writepanels/writepanel-order_data.php:663 -#: admin/woocommerce-admin-reports.php:1642 -#: admin/woocommerce-admin-reports.php:2655 -#: admin/woocommerce-admin-reports.php:2664 -#: admin/woocommerce-admin-users.php:90 admin/woocommerce-admin-users.php:112 -msgid "N/A" -msgstr "N/A" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:20 -#: admin/post-types/writepanels/writepanel-product_data.php:179 -msgid "Taxable" -msgstr "应纳税" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:25 -#: admin/post-types/writepanels/order-item-html.php:91 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:54 -#: admin/post-types/writepanels/writepanel-product_data.php:186 -#: admin/settings/settings-init.php:982 -#: admin/settings/settings-tax-rates.php:29 -#: admin/woocommerce-admin-settings.php:226 -msgid "Standard" -msgstr "标准" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:43 -#: admin/post-types/writepanels/order-item-html.php:110 -#: admin/woocommerce-admin-reports.php:1546 -#: admin/woocommerce-admin-reports.php:1599 -#: admin/woocommerce-admin-reports.php:2370 -#: admin/woocommerce-admin-reports.php:2539 -#: admin/woocommerce-admin-reports.php:2617 -msgid "Total" -msgstr "合计" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:9 -msgid "Product ID:" -msgstr "产品ID:" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:12 -msgid "Variation ID:" -msgstr "变量 ID:" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:15 -msgid "Product SKU:" -msgstr "产品编码:" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:33 -msgid "Add meta" -msgstr "添加 meta" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:112 -msgid "Subtotal" -msgstr "小计" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:6 -msgid "Tax Rate:" -msgstr "+ 添加税费" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:16 -#: admin/post-types/writepanels/writepanel-order_data.php:627 -msgid "Sales Tax:" -msgstr "税标签:" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:20 -#: admin/post-types/writepanels/writepanel-order_data.php:635 -msgid "Shipping Tax:" -msgstr "物流税:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:6 -#: admin/post-types/writepanels/writepanel-product_data.php:364 -#: admin/post-types/writepanels/writepanel-product_data.php:443 -#: admin/woocommerce-admin-init.php:451 -msgid "Remove" -msgstr "删除" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:20 -msgid "Any" -msgstr "任何" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:46 -msgid "" -"Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "为这个变量输入一个编码或留空使用父级产品编码。" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:57 -msgid "Stock Qty:" -msgstr "库存数量:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:57 -msgid "" -"Enter a quantity to enable stock management at variation level, or leave " -"blank to use the parent product's options." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:66 -msgid "Regular Price:" -msgstr "原价" - -#: admin/post-types/writepanels/variation-admin-html.php:67 -msgid "Variation price (required)" -msgstr "安装必要的插件" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:70 -msgid "Sale Price:" -msgstr "促销价格:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:70 -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Schedule" -msgstr "定时" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:70 -msgid "Cancel schedule" -msgstr "定时:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:77 -msgid "Sale start date:" -msgstr "按天: " - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:78 -#: admin/post-types/writepanels/writepanel-product_data.php:136 -msgctxt "placeholder" -msgid "From…" -msgstr "从…" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:81 -msgid "Sale end date:" -msgstr "按天: " - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:82 -#: admin/post-types/writepanels/writepanel-product_data.php:137 -msgctxt "placeholder" -msgid "To…" -msgstr "到…" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:90 -msgid "" -"Enter a weight for this variation or leave blank to use the parent product " -"weight." -msgstr "输入此变更的重量或留空使用父级产品的重量。" - -#: admin/post-types/writepanels/variation-admin-html.php:98 -msgid "Dimensions (L×W×H)" -msgstr "尺寸 (L×W×H)" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:109 -msgid "Shipping class:" -msgstr "配送类:" - -#: admin/post-types/writepanels/variation-admin-html.php:113 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:53 -msgid "Same as parent" -msgstr "与父级相同" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:124 -msgid "Tax class:" -msgstr "Steuerklasse:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:135 -msgid "File paths:" -msgstr "文件已取消。" - -#: admin/post-types/writepanels/variation-admin-html.php:135 -msgid "" -"Enter one or more File Paths, one per line, to make this variation a " -"downloadable product, or leave blank." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:136 -#: admin/post-types/writepanels/writepanel-product_data.php:153 -msgid "File paths/URLs, one per line" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:137 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Choose a file" -msgstr "文件已取消。" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:137 -msgid "Upload" -msgstr "上传" - -#: admin/post-types/writepanels/variation-admin-html.php:137 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Insert file URL" -msgstr "文件路径/URL" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:142 -msgid "Download Limit:" -msgstr "下载限制:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:142 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Leave blank for unlimited re-downloads." -msgstr "留空以不限制重复下载。" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:150 -msgid "Download Expiry:" -msgstr "下载截止" - -#: admin/post-types/writepanels/variation-admin-html.php:150 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "" -"Enter the number of days before a download link expires, or leave blank." -msgstr "输入下载有效天数,或留空。" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:164 -msgid "Enabled" -msgstr "启用" - -#: admin/post-types/writepanels/variation-admin-html.php:166 -msgid "" -"Enable this option if access is given to a downloadable file upon purchase " -"of a product" -msgstr "启用此选项,如果购买产品后可访问下载文件" - -#: admin/post-types/writepanels/variation-admin-html.php:168 -msgid "" -"Enable this option if a product is not shipped or there is no shipping cost" -msgstr "启用此选项,如果一个产品不需呀配送或有0运费" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Coupon description" -msgstr "术语描述" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Optionally enter a description for this coupon for your reference." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:42 -msgid "Discount type" -msgstr "折扣类型" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Enter an amount or percentage e.g. 2.99 or 15%" -msgstr "费用不含税。输入金额,例如2.50,或一个百分比,例如: 5%。" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "Enable free shipping" -msgstr "启用免运费" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "" -"Check this box if the coupon grants free shipping. The free " -"shipping method must be enabled with the \"must use coupon\" setting " -"checked." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "Individual use" -msgstr "个人使用" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "" -"Check this box if the coupon cannot be used in conjunction with other " -"coupons." -msgstr "如果优惠券不能与其他优惠券一起使用请勾选此框" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "Apply before tax" -msgstr "应用税前" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "" -"Check this box if the coupon should be applied before calculating cart tax." -msgstr "如果优惠券用在税前结账选中此框" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "Exclude sale items" -msgstr "所有多媒体项目" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "" -"Check this box if the coupon should not apply to items on sale. Per-item " -"coupons will only work if the item is not on sale. Per-cart coupons will " -"only work if there are no sale items in the cart." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "Minimum amount" -msgstr "最低金额" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "No minimum" -msgstr "不限最低" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "" -"This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "此字段允许你设置需要使用优惠券的最低数目。" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:74 -#: admin/woocommerce-admin-taxonomies.php:28 -#: admin/woocommerce-admin-taxonomies.php:122 -msgid "Products" -msgstr "商品" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:75 -#: admin/post-types/writepanels/writepanel-order_data.php:400 -#: admin/post-types/writepanels/writepanel-product_data.php:504 -#: admin/post-types/writepanels/writepanel-product_data.php:521 -#: admin/woocommerce-admin-reports.php:1229 -msgid "Search for a product…" -msgstr "搜索一个产品…" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:89 -msgid "" -"Products which need to be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are discounted." -msgstr "在购物车上哪些产品需要使用此优惠券,为\"折价产品\",哪些产品已打折." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:94 -msgid "Exclude products" -msgstr "排除产品" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:95 -msgid "Search for a product…" -msgstr "搜索一个产品..." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:109 -msgid "" -"Products which must not be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are not discounted." -msgstr "" -"哪些产品必须不在购物车上使用此优惠券,为\"折价产品\",哪些产品没有打折." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:116 -msgid "Product categories" -msgstr "产品类别" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:117 -msgid "Any category" -msgstr "任何类别" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:125 -msgid "" -"A product must be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will be discounted." -msgstr "" -"一个产品必须在这个类别才对这个优惠券有效,为\"折价产品\",产品在这个类别将被" -"打折。" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:130 -msgid "Exclude categories" -msgstr "排除类别" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:131 -msgid "No categories" -msgstr "没有分类目录" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:139 -msgid "" -"Product must not be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will not be discounted." -msgstr "" -"产品必须没有在这个类别才对这个优惠券有效,为 \"打折产品\",产品在这些类别将不" -"打折。" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "Customer emails" -msgstr "客户Emails:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "Any customer" -msgstr "任何顾客" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "" -"Comma separate email addresses to restrict this coupon to specific billing " -"and user emails." -msgstr "逗号分隔email地址来限制此优惠券到特定的账单和用户emails。" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "Usage limit" -msgstr "使用限制" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "无限次使用" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "How many times this coupon can be used before it is void." -msgstr "什么时间之前此优惠券可以使用" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgctxt "placeholder" -msgid "Never expire" -msgstr "永久有效" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "The date this coupon will expire, YYYY-MM-DD." -msgstr "此优惠券的到期日期, YYYY-MM-DD" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:195 -msgid "" -"Coupon code already exists - customers will use the latest coupon with this " -"code." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:59 -msgid "Order Details" -msgstr "订单详情" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:62 -msgid "Order number" -msgstr "销售数量:%s" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:67 -msgid "Customer IP:" -msgstr "作者:%1$s(IP:%2$s,主机名:%3$s)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:74 -msgid "General Details" -msgstr "查看详情" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:76 -msgid "Order status:" -msgstr "订单状态:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:86 -msgid "Order Date:" -msgstr "订单日期:" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -msgid "h" -msgstr "h" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#: admin/settings/settings-init.php:577 -msgid "m" -msgstr "米" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:91 -msgid "Customer:" -msgstr "客户:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:131 -msgid "Customer Note:" -msgstr "客户注意:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:132 -msgid "Customer's notes about the order" -msgstr "客户对订单的注释" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:140 -msgid "Billing Details" -msgstr "账单详情" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:144 -#: admin/post-types/writepanels/writepanel-order_data.php:234 -msgid "First Name" -msgstr "名" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:148 -#: admin/post-types/writepanels/writepanel-order_data.php:238 -msgid "Last Name" -msgstr "姓" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:152 -#: admin/post-types/writepanels/writepanel-order_data.php:242 -#: admin/woocommerce-admin-users.php:155 admin/woocommerce-admin-users.php:204 -msgid "Company" -msgstr "公司" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:156 -#: admin/post-types/writepanels/writepanel-order_data.php:246 -#: admin/woocommerce-admin-users.php:159 admin/woocommerce-admin-users.php:208 -msgid "Address 1" -msgstr "地址1" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:160 -#: admin/post-types/writepanels/writepanel-order_data.php:250 -#: admin/woocommerce-admin-users.php:163 admin/woocommerce-admin-users.php:212 -msgid "Address 2" -msgstr "地址2" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:164 -#: admin/post-types/writepanels/writepanel-order_data.php:254 -#: admin/settings/settings-tax-rates.php:42 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-users.php:167 admin/woocommerce-admin-users.php:216 -msgid "City" -msgstr "城市" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:168 -#: admin/post-types/writepanels/writepanel-order_data.php:258 -#: admin/woocommerce-admin-users.php:171 admin/woocommerce-admin-users.php:220 -msgid "Postcode" -msgstr "邮编" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:172 -#: admin/post-types/writepanels/writepanel-order_data.php:262 -#: admin/woocommerce-admin-users.php:179 admin/woocommerce-admin-users.php:228 -msgid "Country" -msgstr "国家" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:175 -#: admin/post-types/writepanels/writepanel-order_data.php:265 -msgid "Select a country…" -msgstr "选择国家…" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:178 -#: admin/post-types/writepanels/writepanel-order_data.php:268 -#: admin/woocommerce-admin-users.php:175 admin/woocommerce-admin-users.php:224 -msgid "State/County" -msgstr "地区/县" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:182 -#: admin/woocommerce-admin-users.php:187 -msgid "Email" -msgstr "电子邮件" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:185 -msgid "Phone" -msgstr "电话" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:193 -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#: admin/post-types/writepanels/writepanel-order_data.php:277 -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "Address" -msgstr "地址" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:195 -msgid "No billing address set." -msgstr "还没设置账单地址。" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:208 -msgid "Load billing address" -msgstr "顾客账单地址" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:230 -msgid "Shipping Details" -msgstr "配送详情" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "No shipping address set." -msgstr "没有设置配送地址。" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Load shipping address" -msgstr "顾客配送地址" - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Copy from billing" -msgstr "从帐单复制" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:339 -msgid "Item" -msgstr "项" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#: admin/post-types/writepanels/writepanel-product_data.php:191 -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Class" -msgstr "税类" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -msgid "Tax class for the line item" -msgstr "线路税类" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:347 -msgid "Qty" -msgstr "数量" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:349 -msgid "Cost" -msgstr "成本" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -msgid "Line subtotals are before pre-tax discounts, totals are after." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:352 -#: admin/settings/settings-tax-rates.php:387 -#: admin/settings/settings-tax-rates.php:466 -#: admin/woocommerce-admin-content.php:48 -#: admin/woocommerce-admin-settings.php:184 -msgid "Tax" -msgstr "税" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:388 -msgid "Delete Lines" -msgstr "删除相册" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:390 -msgid "Stock Actions" -msgstr "订单操作" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:391 -msgid "Reduce Line Stock" -msgstr "手动减少存货。" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:392 -msgid "Increase Line Stock" -msgstr "手动减少存货。" - -#: admin/post-types/writepanels/writepanel-order_data.php:396 -#: admin/post-types/writepanels/writepanel-order_data.php:456 -msgid "Apply" -msgstr "应用" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:402 -msgid "Add item(s)" -msgstr "Produkt(e) hinzufügen" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:403 -msgid "Add fee" -msgstr "手续费" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:434 -msgid "Resend order emails" -msgstr "新添订单" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:465 -msgid "Move to Trash" -msgstr "移至回收站" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save Order" -msgstr "保存订单" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save/update the order" -msgstr "保存/更新订单" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:495 -msgid "Discounts" -msgstr "优惠" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:499 -msgid "Cart Discount:" -msgstr "购物优惠:" - -#: admin/post-types/writepanels/writepanel-order_data.php:499 -msgid "Discounts before tax - calculated by comparing subtotals to totals." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:507 -msgid "Order Discount:" -msgstr "订购优惠:" - -#: admin/post-types/writepanels/writepanel-order_data.php:507 -msgid "Discounts after tax - user defined." -msgstr "单税折扣之后的线路成本和线路税收" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:540 -msgid "Label:" -msgstr "标签" - -#: admin/post-types/writepanels/writepanel-order_data.php:541 -msgid "The shipping title the customer sees" -msgstr "客户看到的配送标题" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:548 -msgid "Cost:" -msgstr "成本" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:549 -msgid "(ex. tax)" -msgstr "(税前)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:556 -msgid "Method:" -msgstr "Methode:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:578 -#: admin/post-types/writepanels/writepanel-order_data.php:580 -#: admin/post-types/writepanels/writepanel-order_data.php:679 -#: admin/post-types/writepanels/writepanel-order_data.php:681 -msgid "Other" -msgstr "其它" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:594 -msgid "Tax Rows" -msgstr "税费数" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:619 -msgid "+ Add tax row" -msgstr "+ 添加税费项目" - -#: admin/post-types/writepanels/writepanel-order_data.php:619 -msgid "" -"These rows contain taxes for this order. This allows you to display multiple " -"or compound taxes rather than a single total." -msgstr "" -"这些行包含该订单的税费。这使您能够显示多个或复合税,而不是一个单一的合计。" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:623 -msgid "Tax Totals" -msgstr "税合计" - -#: admin/post-types/writepanels/writepanel-order_data.php:627 -msgid "Total tax for line items + fees." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:649 -#: admin/post-types/writepanels/writepanels-init.php:70 -msgid "Order Totals" -msgstr "订单汇总" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:653 -msgid "Order Total:" -msgstr "订单合计:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:661 -msgid "Payment Method:" -msgstr "付款方式:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:692 -msgid "Calc taxes" -msgstr "Gesamte Steuern" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:694 -msgid "Calc totals" -msgstr "Calc 合计 →" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:57 -msgid "Choose a downloadable product…" -msgstr "选择一个可下载的产品…" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:87 -msgid "Grant Access" -msgstr "授权访问" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:125 -msgid "" -"Could not grant access - the user may already have permission for this file " -"or billing email is not set. Ensure the billing email is set, and the order " -"has been saved." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:148 -msgid "Are you sure you want to revoke access to this download?" -msgstr "你确定要撤销访问此下载?" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -msgid "added %s ago" -msgstr "added %s ago" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -msgid "Delete note" -msgstr "删除备注" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:50 -msgid "There are no notes for this order yet." -msgstr "这个订单没有备注。" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "Add note" -msgstr "添加备注" - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "" -"Add a note for your reference, or add a customer note (the user will be " -"notified)." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:62 -msgid "Customer note" -msgstr "客户备注" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:63 -msgid "Private note" -msgstr "私人备注" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:65 -#: admin/post-types/writepanels/writepanel-product_data.php:482 -msgid "Add" -msgstr "添加" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations for variable products are defined here." -msgstr "这里定义的可变产品的变更。" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations" -msgstr "Variations" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:65 -msgid "" -"Before adding variations, add and save some attributes on the " -"Attributes tab." -msgstr "在添加变更之前,添加和保存一些属性在属性选项卡。" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:67 -msgid "Learn more" -msgstr "了解更多" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Close all" -msgstr "选择全部" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Expand all" -msgstr "展开全部" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:75 -msgid "Bulk edit:" -msgstr "批量编辑:" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:77 -msgid "Toggle "Enabled"" -msgstr "切换绝对定位状态" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:78 -msgid "Toggle "Downloadable"" -msgstr "电子邮件地址:" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:79 -msgid "Toggle "Virtual"" -msgstr "切换绝对定位状态" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:80 -msgid "Delete all variations" -msgstr "链接所有变更" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:81 -msgid "Prices" -msgstr "价格" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:82 -msgid "Sale prices" -msgstr "促销价格" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:88 -msgid "File Path" -msgstr "Dateipfad" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:89 -msgid "Download limit" -msgstr "Download Limit" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:90 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Download Expiry" -msgstr "下载截止" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:93 -msgid "Go" -msgstr "返回" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:193 -msgid "Add Variation" -msgstr "Add Variation" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:195 -msgid "Link all variations" -msgstr "链接所有变更" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:197 -msgid "Default selections:" -msgstr "默认选择:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:210 -msgid "No default" -msgstr "无默认值" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:293 -msgid "" -"Are you sure you want to link all variations? This will create a new " -"variation for each and every possible combination of variation attributes " -"(max 50 per run)." -msgstr "" -"你确定你要链接所有变更吗?这将为每一个可变属性可能的组合创建一个新的变更属" -"性,(每圈最大50)。" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:310 -msgid "variation added" -msgstr "变更已添加" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:312 -msgid "variations added" -msgstr "变更已添加" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:314 -msgid "No variations added" -msgstr "没有变更被添加" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:337 -msgid "Are you sure you want to remove this variation?" -msgstr "你确定要删除这个变更?" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:393 -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "你确定要删除全部变更?此项操作不能恢复。" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:396 -msgid "Last warning, are you sure?" -msgstr "最后警告,你确定吗?" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:433 -msgid "Enter a value" -msgstr "输入一个值" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:511 -#: admin/woocommerce-admin-taxonomies.php:62 -#: admin/woocommerce-admin-taxonomies.php:154 -msgid "Choose an image" -msgstr "选择图像" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:513 -msgid "Set variation image" -msgstr "设为特色图像" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:557 -msgid "Variable product" -msgstr "变更产品" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:623 -msgid "Variation #%s of %s" -msgstr "#%s 变更为 %s" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:43 -msgid "Product Type" -msgstr "产品类型" - -#: admin/post-types/writepanels/writepanel-product_data.php:53 -msgid "Virtual products are intangible and aren't shipped." -msgstr "虚拟物品,无需配送" - -#: admin/post-types/writepanels/writepanel-product_data.php:59 -msgid "Downloadable products give access to a file upon purchase." -msgstr "购买一个可下载的产品" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:77 -#: admin/woocommerce-admin-content.php:44 -#: admin/woocommerce-admin-settings.php:180 -msgid "General" -msgstr "常规" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:79 -#: admin/woocommerce-admin-content.php:47 -#: admin/woocommerce-admin-settings.php:183 -msgid "Inventory" -msgstr "库存" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:83 -msgid "Linked Products" -msgstr "查找商品" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:85 -#: admin/woocommerce-admin-attributes.php:298 -#: admin/woocommerce-admin-init.php:66 -msgid "Attributes" -msgstr "属性" - -#: admin/post-types/writepanels/writepanel-product_data.php:87 -msgid "Advanced" -msgstr "高级" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "Stock Keeping Unit" -msgstr "库存单位" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "" -"SKU refers to a Stock-keeping unit, a unique identifier for each distinct " -"product and service that can be purchased." -msgstr "" -"SKU是指一个库存单位,为每个不同的产品和服务,可以购买一个唯一的标识符。" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Product URL" -msgstr "产品URL" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Enter the external URL to the product." -msgstr "输入产品的外部URL。" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "Button text" -msgstr "按钮文本" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgctxt "placeholder" -msgid "Buy product" -msgstr "买产品" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "This text will be shown on the button linking to the external product." -msgstr "这些文字将显示在链接到外部产品的按钮上。" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:119 -msgid "Regular Price" -msgstr "原价" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Sale Price" -msgstr "网售价" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:135 -msgid "Sale Price Dates" -msgstr "售价日期" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:138 -#: admin/post-types/writepanels/writepanel-product_data.php:1064 -msgid "Cancel" -msgstr "取消" - -#: admin/post-types/writepanels/writepanel-product_data.php:152 -msgid "File paths (one per line)" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Download Limit" -msgstr "下载限制" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:178 -msgid "Tax Status" -msgstr "税务状态" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:180 -msgid "Shipping only" -msgstr "运费仅" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:181 -msgid "None" -msgstr "无" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Enable stock management at product level" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "" -"Stock quantity. If this is a variable product this value will be used to " -"control stock for all variations, unless you define stock at variation level." -msgstr "" -"库存数量。如果这是一个可变的产品,这个值将被用于控制所有变更的库存,除非你定" -"义库存变化量。" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:230 -msgid "Stock status" -msgstr "库存状态" - -#: admin/post-types/writepanels/writepanel-product_data.php:233 -msgid "" -"Controls whether or not the product is listed as \"in stock\" or \"out of " -"stock\" on the frontend." -msgstr "控制在前端是否产品被列为\"有货\"或\"缺货\" 。" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:240 -msgid "Allow Backorders?" -msgstr "允许缺货?" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:241 -msgid "Do not allow" -msgstr "不允许" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:242 -msgid "Allow, but notify customer" -msgstr "允许,但通知客户" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:243 -msgid "Allow" -msgstr "允许" - -#: admin/post-types/writepanels/writepanel-product_data.php:244 -msgid "" -"If managing stock, this controls whether or not backorders are allowed for " -"this product and variations. If enabled, stock quantity can go below 0." -msgstr "" -"如果管理库存,这将控制无论是否缺货都允许该产品和变更。如果启用,库存量可以低" -"于0。" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "Sold Individually" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "" -"Enable this to only allow one of this item to be bought in a single order" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:273 -msgid "Weight in decimal form" -msgstr "十进制形式计重" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:284 -msgid "Dimensions" -msgstr "尺寸" - -#: admin/post-types/writepanels/writepanel-product_data.php:290 -msgid "LxWxH in decimal form" -msgstr "十进制形式计长X宽X高" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:311 -msgid "No shipping class" -msgstr "无运费类别" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "Shipping class" -msgstr "运费类" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "" -"Shipping classes are used by certain shipping methods to group similar " -"products." -msgstr "运费类 是由若干组同类产品的配送方式。" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:380 -#: admin/post-types/writepanels/writepanel-product_data.php:457 -#: admin/woocommerce-admin-init.php:453 -msgid "Value(s)" -msgstr "值(s)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:382 -msgid "Select terms" -msgstr "选择条款" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:394 -msgid "Select all" -msgstr "全选" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:394 -msgid "Select none" -msgstr "选择无" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:396 -msgid "Add new" -msgstr "新添" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:409 -msgid "Pipe separate terms" -msgstr "竖线单独的条款" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:416 -#: admin/post-types/writepanels/writepanel-product_data.php:463 -#: admin/woocommerce-admin-init.php:455 -msgid "Visible on the product page" -msgstr "在产品页可见" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:422 -#: admin/post-types/writepanels/writepanel-product_data.php:469 -#: admin/woocommerce-admin-init.php:456 -msgid "Used for variations" -msgstr "用于变更" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:458 -#: admin/woocommerce-admin-init.php:454 -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "输入一些文字或某些属性,使用竖线 (|) 分隔值。" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:484 -msgid "Custom product attribute" -msgstr "自定义产品属性" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:496 -msgid "Save attributes" -msgstr "页面属性" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:503 -msgid "Up-Sells" -msgstr "附加销售" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:518 -msgid "" -"Up-sells are products which you recommend instead of the currently viewed " -"product, for example, products that are more profitable or better quality or " -"more expensive." -msgstr "" -"向上销售产品由你推荐到用户当前查看的产品页面,例如,更加实惠或质量更好或更昂" -"贵的产品。" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:520 -msgid "Cross-Sells" -msgstr "交叉销售" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:535 -msgid "" -"Cross-sells are products which you promote in the cart, based on the current " -"product." -msgstr "交叉销售是基于目前产品推广更多的产品和商品。" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:545 -msgid "Choose a grouped product…" -msgstr "选择分组产品…" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:571 -msgid "Grouping" -msgstr "编组" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:571 -msgid "Set this option to make this product part of a grouped product." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:591 -msgid "Purchase Note" -msgstr "购买注意" - -#: admin/post-types/writepanels/writepanel-product_data.php:591 -msgid "Enter an optional note to send the customer after purchase." -msgstr "输入一个可选说明在顾客购买后发送给他。" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:598 -msgid "Menu order" -msgstr "菜单排序" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:598 -msgid "Custom ordering position." -msgstr "顾客订单位置." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:606 -msgid "Enable reviews" -msgstr "允许评论" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:695 -msgid "Product SKU must be unique." -msgstr "产品编码为必填项" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1028 -msgid "Catalog/search" -msgstr "Catalog/search" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1035 -msgid "Catalog visibility:" -msgstr "目录可见:" - -#: admin/post-types/writepanels/writepanel-product_data.php:1051 -msgid "" -"Define the loops this product should be visible in. The product will still " -"be accessible directly." -msgstr "" -"Definieren Sie die Schleifen in denen das Produkt sichtbar seien soll. Das " -"Produkt bleib direkt zugreifbar." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1057 -msgid "Enable this option to feature this product." -msgstr "Aktivieren Sie diese Option damit das Produkt angepriesen wird." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1059 -msgid "Featured Product" -msgstr "添加商品" - -#: admin/post-types/writepanels/writepanel-product_data.php:1063 -msgid "OK" -msgstr "确定" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -msgid "Delete image" -msgstr "删除图像" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -#: admin/woocommerce-admin-attributes.php:322 -msgid "Delete" -msgstr "删除" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:53 -msgid "Add product gallery images" -msgstr "添加新商品分类" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:79 -msgid "Add Images to Product Gallery" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:81 -msgid "Add to gallery" -msgstr "添加至相册" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:47 -msgid "Product Gallery" -msgstr "创建相册" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:55 -msgid "Product Short Description" -msgstr "产品简短描述" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:64 -msgid "Reviews" -msgstr "评论" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:68 -msgid "Order Data" -msgstr "订单数据" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "Order Items" -msgstr "平均订单项" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "" -"Note: if you edit quantities or remove items from the order you will need to " -"manually update stock levels." -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "Downloadable Product Permissions" -msgstr "选择一个可下载的产品…" - -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "" -"Note: Permissions for order items will automatically be granted when the " -"order status changes to processing/completed." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:73 -msgid "Order Actions" -msgstr "订单动作" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:81 -msgid "Coupon Data" -msgstr "优惠券数据" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:100 -msgid "Coupon code" -msgstr "优惠券代码" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:101 -msgid "Product name" -msgstr "产品名称" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:185 -msgid "Allow reviews." -msgstr "允许评论。" - -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "" -"Allow trackbacks and pingbacks on this " -"page." -msgstr "允许引用通告和包括引用 在本页." - -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" -msgstr "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:23 -msgid "Styles" -msgstr "样式" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:43 -msgid "Primary" -msgstr "主" - -#: admin/settings/settings-frontend-styles.php:43 -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "调用按钮/价格滑块/层叠导航栏" - -#: admin/settings/settings-frontend-styles.php:44 -msgid "Secondary" -msgstr "次" - -#: admin/settings/settings-frontend-styles.php:44 -msgid "Buttons and tabs" -msgstr "按钮和标签" - -# @ woocommerce -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:45 -msgid "Highlight" -msgstr "Hervorheben" - -#: admin/settings/settings-frontend-styles.php:45 -msgid "Price labels and Sale Flashes" -msgstr "价格标签和售价闪亮" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:46 -msgid "Content" -msgstr "内容" - -#: admin/settings/settings-frontend-styles.php:46 -msgid "Your themes page background - used for tab active states" -msgstr "你的主题页面背景 - 用于选项卡处于活动状态" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:47 -msgid "Subtext" -msgstr "Subtext" - -#: admin/settings/settings-frontend-styles.php:47 -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "用于某些文字和旁白 - 面包屑导航,短文等。" - -#: admin/settings/settings-frontend-styles.php:51 -msgid "" -"To edit colours woocommerce/assets/css/woocommerce-base.less " -"and woocommerce.css need to be writable. See the Codex for more " -"information." -msgstr "" -"编辑颜色 woocommerce/assets/css/woocommerce-base.less 和 " -"woocommerce.css 必须可写入. 参考 the Codex 获取更多帮助." - -# @ woocommerce -#: admin/settings/settings-init.php:18 -msgid "Localisation" -msgstr "位置" - -#: admin/settings/settings-init.php:19 -msgid "Use informal localisation for %s" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:33 -msgid "General Options" -msgstr "常规选项" - -# @ woocommerce -#: admin/settings/settings-init.php:36 -msgid "Base Location" -msgstr "本地设置" - -# @ woocommerce -#: admin/settings/settings-init.php:37 -msgid "" -"This is the base location for your business. Tax rates will be based on this " -"country." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:46 -msgid "Currency" -msgstr "货币" - -# @ woocommerce -#: admin/settings/settings-init.php:47 -msgid "" -"This controls what currency prices are listed at in the catalog and which " -"currency gateways will take payments in." -msgstr "控制在类别中的货币价格列出的将支付的货币网关" - -# @ woocommerce -#: admin/settings/settings-init.php:58 -msgid "Allowed Countries" -msgstr "允许的国家" - -# @ woocommerce -#: admin/settings/settings-init.php:59 -msgid "These are countries that you are willing to ship to." -msgstr "这个国家你希望运送到。" - -# @ woocommerce -#: admin/settings/settings-init.php:67 -msgid "All Countries" -msgstr "所有国家" - -# @ woocommerce -#: admin/settings/settings-init.php:68 admin/settings/settings-init.php:73 -msgid "Specific Countries" -msgstr "特定国家" - -# @ woocommerce -#: admin/settings/settings-init.php:84 -msgid "Store Notice" -msgstr "储存注意事项文本" - -# @ woocommerce -#: admin/settings/settings-init.php:85 -msgid "Enable site-wide store notice text" -msgstr "启用\"演示商店\"通知在您的网站上" - -#: admin/settings/settings-init.php:92 -msgid "Store Notice Text" -msgstr "储存注意事项文本" - -# @ woocommerce -#: admin/settings/settings-init.php:95 -msgid "" -"This is a demo store for testing purposes — no orders shall be " -"fulfilled." -msgstr "这是一个用于测试的演示商店 - 应该没有订单能完成。" - -# @ woocommerce -#: admin/settings/settings-init.php:102 -msgid "Cart, Checkout and Accounts" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:105 admin/woocommerce-admin-content.php:61 -#: admin/woocommerce-admin-content.php:76 -#: admin/woocommerce-admin-reports.php:72 -msgid "Coupons" -msgstr "优惠券" - -# @ woocommerce -#: admin/settings/settings-init.php:106 -msgid "Enable the use of coupons" -msgstr "没有找到优惠券" - -#: admin/settings/settings-init.php:110 -msgid "Coupons can be applied from the cart and checkout pages." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:114 -#: admin/woocommerce-admin-install.php:198 -#: admin/woocommerce-admin-status.php:281 -msgid "Checkout" -msgstr "结算" - -#: admin/settings/settings-init.php:115 -msgid "Enable guest checkout (no account required)" -msgstr "Bezahlvorgang als Gast ermöglichen (Kundenkonto nicht nötig)" - -#: admin/settings/settings-init.php:123 -msgid "Enable customer note field on checkout" -msgstr "" - -#: admin/settings/settings-init.php:131 -msgid "Force secure checkout" -msgstr "强制安全结帐" - -#: admin/settings/settings-init.php:137 -msgid "" -"Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -msgstr "强制在结算页使用 SSL (HTTPS) 方式。(需要有SSL证书)" - -#: admin/settings/settings-init.php:141 -msgid "Un-force HTTPS when leaving the checkout" -msgstr "不强制使用HTTPS 方式结账" - -#: admin/settings/settings-init.php:150 -msgid "Registration" -msgstr "Registrierung" - -# @ woocommerce -#: admin/settings/settings-init.php:151 -msgid "Allow registration on the checkout page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:159 -msgid "Allow registration on the \"My Account\" page" -msgstr "" - -#: admin/settings/settings-init.php:167 -msgid "Register using the email address for the username" -msgstr "注册用户名时使用的Email" - -# @ woocommerce -#: admin/settings/settings-init.php:175 -msgid "Customer Accounts" -msgstr "客户帐户" - -#: admin/settings/settings-init.php:176 -msgid "Prevent customers from accessing WordPress admin" -msgstr "防止客户访问WordPress的管理" - -#: admin/settings/settings-init.php:184 -msgid "Clear cart when logging out" -msgstr "当登出则清空购物车" - -#: admin/settings/settings-init.php:192 -msgid "Allow customers to repurchase orders from their account page" -msgstr "" - -#: admin/settings/settings-init.php:201 -msgid "Styles and Scripts" -msgstr "样式和脚本" - -# @ woocommerce -#: admin/settings/settings-init.php:204 -msgid "Styling" -msgstr "样式" - -# @ woocommerce -#: admin/settings/settings-init.php:205 -msgid "Enable WooCommerce CSS" -msgstr "启用WooCommerce CSS样式" - -#: admin/settings/settings-init.php:216 -msgid "Scripts" -msgstr "脚本" - -# @ woocommerce -#: admin/settings/settings-init.php:217 -msgid "Enable Lightbox" -msgstr "启用 JavaScript" - -#: admin/settings/settings-init.php:220 -msgid "" -"Include WooCommerce's lightbox. Product gallery images and the add review " -"form will open in a lightbox." -msgstr "" - -#: admin/settings/settings-init.php:226 -msgid "Enable enhanced country select boxes" -msgstr "Enable enhanced country select boxes" - -#: admin/settings/settings-init.php:231 -msgid "This will enable a script allowing the country fields to be searchable." -msgstr "" - -#: admin/settings/settings-init.php:236 -msgid "Downloadable Products" -msgstr "查找商品" - -# @ woocommerce -#: admin/settings/settings-init.php:239 -msgid "File Download Method" -msgstr "文件下载方式" - -#: admin/settings/settings-init.php:240 -msgid "" -"Forcing downloads will keep URLs hidden, but some servers may serve large " -"files unreliably. If supported, X-Accel-Redirect/ X-" -"Sendfile can be used to serve downloads instead (server requires " -"mod_xsendfile)." -msgstr "" -"强制隐藏下载网址,但有些服务器可能对大文件无效。如果支持X-Accel-" -"Redirect/ X-Sendfile 可以用来代替下载服务 (服务器必须" -"mod_xsendfile)." - -#: admin/settings/settings-init.php:248 -msgid "Force Downloads" -msgstr "Force 下载" - -#: admin/settings/settings-init.php:249 -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "X-Accel-Redirect/X-Sendfile" - -#: admin/settings/settings-init.php:250 -msgid "Redirect only" -msgstr "仅重定向" - -#: admin/settings/settings-init.php:255 -msgid "Access Restriction" -msgstr "撤销访问" - -# @ woocommerce -#: admin/settings/settings-init.php:256 -msgid "Downloads require login" -msgstr "未提交登录 ID" - -#: admin/settings/settings-init.php:260 -msgid "This setting does not apply to guest purchases." -msgstr "This setting does not apply to guest purchases." - -#: admin/settings/settings-init.php:265 -msgid "Grant access to downloadable products after payment" -msgstr "授权付款后下载的商品" - -#: admin/settings/settings-init.php:269 -msgid "" -"Enable this option to grant access to downloads when orders are \"processing" -"\", rather than \"completed\"." -msgstr "" - -#: admin/settings/settings-init.php:285 -msgid "" -"Note: The shop page has children - child pages will not work if you enable " -"this option." -msgstr "注意:如果启用此选项,店铺页面已有子页面 - 子页面将无法工作" - -# @ woocommerce -#: admin/settings/settings-init.php:290 -msgid "Page Setup" -msgstr "页面安装" - -#: admin/settings/settings-init.php:292 -msgid "" -"Set up core WooCommerce pages here, for example the base page. The base page " -"can also be used in your %sproduct permalinks%s." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:297 -msgid "Shop Base Page" -msgstr "店铺相应的页面" - -# @ woocommerce -#: admin/settings/settings-init.php:298 -msgid "" -"This sets the base page of your shop - this is where your product archive " -"will be." -msgstr "这设置你的店铺的基本页 - 这将是你的产品存档。" - -# @ woocommerce -#: admin/settings/settings-init.php:308 -msgid "Base Page Title" -msgstr "相应页面标题" - -# @ woocommerce -#: admin/settings/settings-init.php:309 -msgid "" -"This title to show on the shop base page. Leave blank to use the page title." -msgstr "这个标题显示在商店基本页面。留空使用页面标题。" - -# @ woocommerce -#: admin/settings/settings-init.php:318 -msgid "Terms Page ID" -msgstr "条款页面ID" - -# @ woocommerce -#: admin/settings/settings-init.php:319 -msgid "" -"If you define a \"Terms\" page the customer will be asked if they accept " -"them when checking out." -msgstr "如果你定义一个\"条款\"页面,将在客户结账时要求他们接受该条款。" - -# @ woocommerce -#: admin/settings/settings-init.php:330 -msgid "Shop Pages" -msgstr "商品页" - -# @ woocommerce -#: admin/settings/settings-init.php:330 -msgid "" -"The following pages need selecting so that WooCommerce knows where they are. " -"These pages should have been created upon installation of the plugin, if not " -"you will need to create them." -msgstr "" -"以下页面需要选择,所以WooCommerce要知道他们在哪里。这些网页应该在安装该插件后" -"已经被创建,如果没有创建,您必须创建它们。" - -# @ woocommerce -#: admin/settings/settings-init.php:333 -msgid "Cart Page" -msgstr "购物页" - -# @ woocommerce -#: admin/settings/settings-init.php:334 -msgid "Page contents: [woocommerce_cart]" -msgstr "页面内容: [woocommerce_cart]" - -# @ woocommerce -#: admin/settings/settings-init.php:344 -msgid "Checkout Page" -msgstr "结账页" - -# @ woocommerce -#: admin/settings/settings-init.php:345 -msgid "Page contents: [woocommerce_checkout]" -msgstr "页面内容: [woocommerce_checkout]" - -# @ woocommerce -#: admin/settings/settings-init.php:355 -msgid "Pay Page" -msgstr "支付页" - -# @ woocommerce -#: admin/settings/settings-init.php:356 -msgid "Page contents: [woocommerce_pay] Parent: \"Checkout\"" -msgstr "页面内容: [woocommerce_pay] Parent: \"Checkout\"" - -# @ woocommerce -#: admin/settings/settings-init.php:366 -msgid "Thanks Page" -msgstr "感谢页" - -# @ woocommerce -#: admin/settings/settings-init.php:367 -msgid "Page contents: [woocommerce_thankyou] Parent: \"Checkout\"" -msgstr "页面内容: [woocommerce_thankyou] Parent: \"Checkout\"" - -# @ woocommerce -#: admin/settings/settings-init.php:377 -msgid "My Account Page" -msgstr "我的账户页" - -# @ woocommerce -#: admin/settings/settings-init.php:378 -msgid "Page contents: [woocommerce_my_account]" -msgstr "页面内容: [woocommerce_my_account]" - -# @ woocommerce -#: admin/settings/settings-init.php:388 -msgid "Edit Address Page" -msgstr "编辑地址页" - -# @ woocommerce -#: admin/settings/settings-init.php:389 -msgid "Page contents: [woocommerce_edit_address] Parent: \"My Account\"" -msgstr "页面内容: [woocommerce_edit_address] Parent: \"My Account\"" - -# @ woocommerce -#: admin/settings/settings-init.php:399 -msgid "View Order Page" -msgstr "查看订单页" - -# @ woocommerce -#: admin/settings/settings-init.php:400 -msgid "Page contents: [woocommerce_view_order] Parent: \"My Account\"" -msgstr "页面内容: [woocommerce_view_order] Parent: \"My Account\"" - -# @ woocommerce -#: admin/settings/settings-init.php:410 -msgid "Change Password Page" -msgstr "修改密码页" - -# @ woocommerce -#: admin/settings/settings-init.php:411 -msgid "Page contents: [woocommerce_change_password] Parent: \"My Account\"" -msgstr "页面内容: [woocommerce_change_password] Parent: \"My Account\"" - -# @ woocommerce -#: admin/settings/settings-init.php:421 -msgid "Logout Page" -msgstr "一个静态页面" - -# @ woocommerce -#: admin/settings/settings-init.php:422 -msgid "Parent: \"My Account\"" -msgstr "我的账户页" - -# @ woocommerce -#: admin/settings/settings-init.php:432 -msgid "Lost Password Page" -msgstr "修改密码页" - -# @ woocommerce -#: admin/settings/settings-init.php:433 -msgid "Page contents: [woocommerce_lost_password] Parent: \"My Account\"" -msgstr "页面内容: [woocommerce_change_password] Parent: \"My Account\"" - -# @ woocommerce -#: admin/settings/settings-init.php:449 -msgid "Catalog Options" -msgstr "目录选项" - -# @ woocommerce -#: admin/settings/settings-init.php:452 -msgid "Default Product Sorting" -msgstr "默认产品排序" - -# @ woocommerce -#: admin/settings/settings-init.php:453 -msgid "This controls the default sort order of the catalog." -msgstr "这控制分类的默认排序" - -# @ woocommerce -#: admin/settings/settings-init.php:459 -msgid "Default sorting (custom ordering + name)" -msgstr "" - -#: admin/settings/settings-init.php:460 -msgid "Popularity (sales)" -msgstr "每月销售" - -# @ woocommerce -#: admin/settings/settings-init.php:461 -msgid "Average Rating" -msgstr "综合评级" - -# @ woocommerce -#: admin/settings/settings-init.php:462 -msgid "Sort by most recent" -msgstr "Sortieren nach neueste" - -# @ woocommerce -#: admin/settings/settings-init.php:463 -msgid "Sort by price (asc)" -msgstr "按价格从低到高" - -# @ woocommerce -#: admin/settings/settings-init.php:464 -msgid "Sort by price (desc)" -msgstr "按价格从低到高" - -# @ woocommerce -#: admin/settings/settings-init.php:470 -msgid "Shop Page Display" -msgstr "店铺基本页面" - -#: admin/settings/settings-init.php:471 -msgid "This controls what is shown on the product archive." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:477 admin/settings/settings-init.php:492 -msgid "Show products" -msgstr "产品数量显示:" - -# @ woocommerce -#: admin/settings/settings-init.php:478 admin/settings/settings-init.php:493 -msgid "Show subcategories" -msgstr "显示子类别" - -# @ woocommerce -#: admin/settings/settings-init.php:479 admin/settings/settings-init.php:494 -msgid "Show both" -msgstr "查看详情" - -# @ woocommerce -#: admin/settings/settings-init.php:485 -msgid "Default Category Display" -msgstr "默认文章分类目录" - -# @ woocommerce -#: admin/settings/settings-init.php:486 -msgid "This controls what is shown on category archives." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:500 -msgid "Add to cart" -msgstr "添加到购物车" - -#: admin/settings/settings-init.php:501 -msgid "Redirect to the cart page after successful addition" -msgstr "" - -#: admin/settings/settings-init.php:509 -msgid "Enable AJAX add to cart buttons on archives" -msgstr "启用AJAX添加到购物车按钮在产品存档" - -# @ woocommerce -#: admin/settings/settings-init.php:518 -msgid "" -"The following options affect the fields available on the edit product page." -msgstr "下列选项影响编辑产品页面上的可用字段。" - -# @ woocommerce -#: admin/settings/settings-init.php:521 -msgid "Product Fields" -msgstr "产品字段" - -# @ woocommerce -#: admin/settings/settings-init.php:522 -msgid "Enable the SKU field for products" -msgstr "" - -#: admin/settings/settings-init.php:530 -msgid "" -"Enable the weight field for products (some shipping methods " -"may require this)" -msgstr "" - -#: admin/settings/settings-init.php:538 -msgid "" -"Enable the dimension fields for products (some shipping " -"methods may require this)" -msgstr "" - -#: admin/settings/settings-init.php:546 -msgid "" -"Show weight and dimension values on the Additional " -"Information tab" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:554 -msgid "Weight Unit" -msgstr "重量单位" - -# @ woocommerce -#: admin/settings/settings-init.php:555 -msgid "This controls what unit you will define weights in." -msgstr "这个控制你定义的重量单位" - -# @ woocommerce -#: admin/settings/settings-init.php:561 -msgid "kg" -msgstr "公斤" - -# @ woocommerce -#: admin/settings/settings-init.php:562 -msgid "g" -msgstr "克" - -# @ woocommerce -#: admin/settings/settings-init.php:563 -msgid "lbs" -msgstr "磅" - -#: admin/settings/settings-init.php:564 -msgid "oz" -msgstr "oz" - -# @ woocommerce -#: admin/settings/settings-init.php:570 -msgid "Dimensions Unit" -msgstr "尺寸单位" - -# @ woocommerce -#: admin/settings/settings-init.php:571 -msgid "This controls what unit you will define lengths in." -msgstr "这个控制你定义的长度单位" - -# @ woocommerce -#: admin/settings/settings-init.php:578 -msgid "cm" -msgstr "厘米" - -#: admin/settings/settings-init.php:579 -msgid "mm" -msgstr "毫米" - -# @ woocommerce -#: admin/settings/settings-init.php:580 -msgid "in" -msgstr "in" - -#: admin/settings/settings-init.php:581 -msgid "yd" -msgstr "yd" - -# @ woocommerce -#: admin/settings/settings-init.php:587 -msgid "Product Ratings" -msgstr "Product Ratings" - -# @ woocommerce -#: admin/settings/settings-init.php:588 -msgid "Enable ratings on reviews" -msgstr "在结帐上启用优惠券表单" - -#: admin/settings/settings-init.php:597 -msgid "Ratings are required to leave a review" -msgstr "评分需要发表评论" - -#: admin/settings/settings-init.php:606 -msgid "Show \"verified owner\" label for customer reviews" -msgstr "用户评论时显示 \"verified owner\" 标签" - -# @ woocommerce -#: admin/settings/settings-init.php:616 -msgid "Pricing Options" -msgstr "价格选项" - -#: admin/settings/settings-init.php:616 -msgid "The following options affect how prices are displayed on the frontend." -msgstr "下列选项影响价格在前端如何显示。" - -# @ woocommerce -#: admin/settings/settings-init.php:619 -msgid "Currency Position" -msgstr "货币位置" - -# @ woocommerce -#: admin/settings/settings-init.php:620 -msgid "This controls the position of the currency symbol." -msgstr "这控制货币符号的位置。" - -# @ woocommerce -#: admin/settings/settings-init.php:626 -msgid "Left" -msgstr "左" - -# @ woocommerce -#: admin/settings/settings-init.php:627 -msgid "Right" -msgstr "右" - -# @ woocommerce -#: admin/settings/settings-init.php:628 -msgid "Left (with space)" -msgstr "左(空间)" - -# @ woocommerce -#: admin/settings/settings-init.php:629 -msgid "Right (with space)" -msgstr "右(空间)" - -# @ woocommerce -#: admin/settings/settings-init.php:635 -msgid "Thousand Separator" -msgstr "千位分隔符" - -# @ woocommerce -#: admin/settings/settings-init.php:636 -msgid "This sets the thousand separator of displayed prices." -msgstr "这设置显示为千位分隔符的价格。" - -# @ woocommerce -#: admin/settings/settings-init.php:645 -msgid "Decimal Separator" -msgstr "小数分隔符" - -# @ woocommerce -#: admin/settings/settings-init.php:646 -msgid "This sets the decimal separator of displayed prices." -msgstr "这设置显示小数点分隔符的价格。" - -# @ woocommerce -#: admin/settings/settings-init.php:655 -msgid "Number of Decimals" -msgstr "小数点后的位数" - -# @ woocommerce -#: admin/settings/settings-init.php:656 -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "这设置显示价格中的小数点的位数。" - -#: admin/settings/settings-init.php:669 -msgid "Trailing Zeros" -msgstr "结尾零" - -#: admin/settings/settings-init.php:670 -msgid "" -"Remove zeros after the decimal point. e.g. $10.00 becomes " -"$10" -msgstr "删除小数点后的零。例如:$10.00变为$10" - -# @ woocommerce -#: admin/settings/settings-init.php:678 -msgid "Image Options" -msgstr "图像选项" - -# @ woocommerce -#: admin/settings/settings-init.php:678 -msgid "" -"These settings affect the actual dimensions of images in your catalog - the " -"display on the front-end will still be affected by CSS styles. After " -"changing these settings you may need to regenerate your " -"thumbnails." -msgstr "" -"这些设置会影响分类中图像的实际尺寸 -前端的显示仍将受到CSS样式影响。改变这些设" -"置后,你可能需要重新生成缩略图." - -# @ woocommerce -#: admin/settings/settings-init.php:681 -msgid "Catalog Images" -msgstr "分类图片" - -# @ woocommerce -#: admin/settings/settings-init.php:682 -msgid "This size is usually used in product listings" -msgstr "此大小通常用在产品清单" - -# @ woocommerce -#: admin/settings/settings-init.php:695 -msgid "Single Product Image" -msgstr "产品内页图像" - -# @ woocommerce -#: admin/settings/settings-init.php:696 -msgid "This is the size used by the main image on the product page." -msgstr "这大小是用于产品页面的主图像" - -# @ woocommerce -#: admin/settings/settings-init.php:709 -msgid "Product Thumbnails" -msgstr "产品缩略图" - -# @ woocommerce -#: admin/settings/settings-init.php:710 -msgid "" -"This size is usually used for the gallery of images on the product page." -msgstr "这个尺寸通常用于产品页上的图像画廊。" - -# @ woocommerce -#: admin/settings/settings-init.php:729 -msgid "Inventory Options" -msgstr "库存选项" - -# @ woocommerce -#: admin/settings/settings-init.php:732 -msgid "Manage Stock" -msgstr "管理库存?" - -# @ woocommerce -#: admin/settings/settings-init.php:733 -msgid "Enable stock management" -msgstr "启用库存管理" - -#: admin/settings/settings-init.php:740 -msgid "Hold Stock (minutes)" -msgstr "手动减少存货。" - -#: admin/settings/settings-init.php:741 -msgid "" -"Hold stock (for unpaid orders) for x minutes. When this limit is reached, " -"the pending order will be cancelled. Leave blank to disable." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:753 -msgid "Notifications" -msgstr "通知" - -# @ woocommerce -#: admin/settings/settings-init.php:754 -msgid "Enable low stock notifications" -msgstr "启用库存不足通知" - -# @ woocommerce -#: admin/settings/settings-init.php:762 -msgid "Enable out of stock notifications" -msgstr "启用库存脱销通知" - -# @ woocommerce -#: admin/settings/settings-init.php:770 -msgid "Notification Recipient" -msgstr "注册提醒" - -# @ woocommerce -#: admin/settings/settings-init.php:778 -msgid "Low Stock Threshold" -msgstr "库存不足限制" - -# @ woocommerce -#: admin/settings/settings-init.php:791 -msgid "Out Of Stock Threshold" -msgstr "库存脱销限制" - -# @ woocommerce -#: admin/settings/settings-init.php:804 -msgid "Out Of Stock Visibility" -msgstr "超过了库存能见度" - -# @ woocommerce -#: admin/settings/settings-init.php:805 -msgid "Hide out of stock items from the catalog" -msgstr "从分类隐藏库存脱销产品" - -#: admin/settings/settings-init.php:812 -msgid "Stock Display Format" -msgstr "库存显示格式" - -#: admin/settings/settings-init.php:813 -msgid "This controls how stock is displayed on the frontend." -msgstr "This controls how stock is displayed on the frontend." - -#: admin/settings/settings-init.php:819 -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "一直显示库存 e.g. \"12 in stock\"" - -#: admin/settings/settings-init.php:820 -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "库存低时显示 例如 \"Only 2 left in stock\" vs. \"In Stock\"" - -#: admin/settings/settings-init.php:821 -msgid "Never show stock amount" -msgstr "不显示库存" - -# @ woocommerce -#: admin/settings/settings-init.php:833 -#: admin/woocommerce-admin-settings.php:290 -msgid "Shipping Options" -msgstr "配送选项" - -# @ woocommerce -#: admin/settings/settings-init.php:836 -msgid "Shipping Calculations" -msgstr "运费计算" - -# @ woocommerce -#: admin/settings/settings-init.php:837 -msgid "Enable shipping" -msgstr "启用配送" - -# @ woocommerce -#: admin/settings/settings-init.php:845 -msgid "Enable the shipping calculator on the cart page" -msgstr "使购物车页上的配送计算器" - -#: admin/settings/settings-init.php:853 -msgid "Hide shipping costs until an address is entered" -msgstr "隐藏配送成本直到地址被输入" - -# @ woocommerce -#: admin/settings/settings-init.php:861 -msgid "Shipping Method Display" -msgstr "无效的送货方式。" - -#: admin/settings/settings-init.php:862 -msgid "" -"This controls how multiple shipping methods are displayed on the frontend." -msgstr "" -"This controls how multiple shipping methods are displayed on the frontend." - -#: admin/settings/settings-init.php:868 -msgid "Radio buttons" -msgstr "单选按钮" - -# @ woocommerce -#: admin/settings/settings-init.php:869 -msgid "Select box" -msgstr "Select box" - -# @ woocommerce -#: admin/settings/settings-init.php:875 -msgid "Shipping Destination" -msgstr "Shipping Destination" - -# @ woocommerce -#: admin/settings/settings-init.php:876 -msgid "Only ship to the users billing address" -msgstr "只运送到用户的帐单地址" - -# @ woocommerce -#: admin/settings/settings-init.php:884 -msgid "Ship to billing address by default" -msgstr "默认送货到账单地址" - -#: admin/settings/settings-init.php:892 -msgid "Collect shipping address even when not required" -msgstr "收集送货地址,甚至非必要时。" - -# @ woocommerce -#: admin/settings/settings-init.php:910 -#: admin/woocommerce-admin-settings.php:186 -#: admin/woocommerce-admin-settings.php:327 -msgid "Payment Gateways" -msgstr "支付网关" - -#: admin/settings/settings-init.php:910 -msgid "" -"Installed payment gateways are displayed below. Drag and drop payment " -"gateways to control their display order on the checkout." -msgstr "" -"Installierte Zahlungs-Gateways werden unten angezeigt. Drag & Drop Zahlungs-" -"Gateways, um ihre Anzeigenreihenfolge bei der Kasse zu ändern." - -# @ woocommerce -#: admin/settings/settings-init.php:928 -#: admin/woocommerce-admin-settings.php:220 -msgid "Tax Options" -msgstr "税选项" - -# @ woocommerce -#: admin/settings/settings-init.php:931 -msgid "Enable Taxes" -msgstr "Gesamte Steuern" - -# @ woocommerce -#: admin/settings/settings-init.php:932 -msgid "Enable taxes and tax calculations" -msgstr "启用税和所得税计算" - -#: admin/settings/settings-init.php:939 -msgid "Prices Entered With Tax" -msgstr "定义产品分类价格含税" - -#: admin/settings/settings-init.php:943 -msgid "" -"This option is important as it will affect how you input prices. Changing it " -"will not update existing products." -msgstr "" - -#: admin/settings/settings-init.php:945 -msgid "Yes, I will enter prices inclusive of tax" -msgstr "" - -#: admin/settings/settings-init.php:946 -msgid "No, I will enter prices exclusive of tax" -msgstr "" - -#: admin/settings/settings-init.php:951 -msgid "Calculate Tax Based On:" -msgstr "根据主题特性寻找主题。" - -#: admin/settings/settings-init.php:953 -msgid "This option determines which address is used to calculate tax." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:957 -msgid "Customer shipping address" -msgstr "顾客配送地址" - -# @ woocommerce -#: admin/settings/settings-init.php:958 -msgid "Customer billing address" -msgstr "顾客账单地址" - -# @ woocommerce -#: admin/settings/settings-init.php:959 admin/settings/settings-init.php:971 -msgid "Shop base address" -msgstr "店铺基本页面" - -# @ woocommerce -#: admin/settings/settings-init.php:964 -msgid "Default Customer Address:" -msgstr "顾客账单地址" - -#: admin/settings/settings-init.php:966 -msgid "" -"This option determines the customers default address (before they input " -"their own)." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:970 -msgid "No address" -msgstr "还没设置账单地址。" - -# @ woocommerce -#: admin/settings/settings-init.php:976 -msgid "Shipping Tax Class:" -msgstr "父级配送类型" - -#: admin/settings/settings-init.php:977 -msgid "" -"Optionally control which tax class shipping gets, or leave it so shipping " -"tax is based on the cart items themselves." -msgstr "" - -#: admin/settings/settings-init.php:982 -msgid "Shipping tax class based on cart items" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:987 -msgid "Rounding" -msgstr "" - -#: admin/settings/settings-init.php:988 -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:995 -msgid "Additional Tax Classes" -msgstr "附加税类" - -# @ woocommerce -#: admin/settings/settings-init.php:996 -msgid "" -"List additonal tax classes below (1 per line). This is in addition to the " -"default Standard Rate. Tax classes can be assigned to products." -msgstr "" - -#: admin/settings/settings-init.php:1000 -msgid "Reduced Rate%sZero Rate" -msgstr "降低费率 %s零费率" - -# @ woocommerce -#: admin/settings/settings-init.php:1004 -msgid "Display prices during cart/checkout:" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1009 -msgid "Including tax" -msgstr "税标签:" - -# @ woocommerce -#: admin/settings/settings-init.php:1010 -msgid "Excluding tax" -msgstr "成本,不含税" - -# @ woocommerce -#: admin/settings/settings-init.php:1022 -msgid "Email Sender Options" -msgstr "电子邮件发件人选项" - -# @ woocommerce -#: admin/settings/settings-init.php:1022 -msgid "" -"The following options affect the sender (email address and name) used in " -"WooCommerce emails." -msgstr "下列选项影响用于WooCommerce电子邮件的发件人(电子邮件地址和姓名)。" - -# @ woocommerce -#: admin/settings/settings-init.php:1025 -msgid "\"From\" Name" -msgstr "\"来自\"名称" - -# @ woocommerce -#: admin/settings/settings-init.php:1034 -msgid "\"From\" Email Address" -msgstr "\"来自\" email 地址" - -# @ woocommerce -#: admin/settings/settings-init.php:1047 -msgid "Email Template" -msgstr "电子邮件模板" - -# @ woocommerce -#: admin/settings/settings-init.php:1047 -msgid "" -"This section lets you customise the WooCommerce emails. Click here to preview your email template. For more " -"advanced control copy woocommerce/templates/emails/ to " -"yourtheme/woocommerce/emails/." -msgstr "" -"本节让你自定义WooCommerce的电子邮件。单击预" -"览你的邮件模板.对于更高级控制复制 woocommerce/templates/emails/yourtheme/woocommerce/emails/." - -# @ woocommerce -#: admin/settings/settings-init.php:1050 -msgid "Header Image" -msgstr "顶部图像" - -# @ woocommerce -#: admin/settings/settings-init.php:1051 -msgid "" -"Enter a URL to an image you want to show in the email's header. Upload your " -"image using the media uploader." -msgstr "" -"输入您想要显示在电子邮件的页眉上的图片的URL地址。上传图像使用的媒体上传." - -# @ woocommerce -#: admin/settings/settings-init.php:1059 -msgid "Email Footer Text" -msgstr "电子邮件页脚文本" - -# @ woocommerce -#: admin/settings/settings-init.php:1060 -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "出现在WooCommerce电子邮件的页脚文本。" - -# @ woocommerce -#: admin/settings/settings-init.php:1064 -msgid "Powered by WooCommerce" -msgstr "Powered by WooCommerce" - -# @ woocommerce -#: admin/settings/settings-init.php:1068 -msgid "Base Colour" -msgstr "基本颜色" - -# @ woocommerce -#: admin/settings/settings-init.php:1069 -msgid "" -"The base colour for WooCommerce email templates. Default #557da1." -msgstr "WooCommerce电子邮件模板的基本颜色。默认的 #557da1." - -# @ woocommerce -#: admin/settings/settings-init.php:1077 -msgid "Background Colour" -msgstr "背景颜色" - -# @ woocommerce -#: admin/settings/settings-init.php:1078 -msgid "" -"The background colour for WooCommerce email templates. Default " -"#f5f5f5." -msgstr "WooCommerce电子邮件模板的背景颜色。默认#eeeeee." - -# @ woocommerce -#: admin/settings/settings-init.php:1086 -msgid "Email Body Background Colour" -msgstr "Email 主体背景颜色" - -# @ woocommerce -#: admin/settings/settings-init.php:1087 -msgid "The main body background colour. Default #fdfdfd." -msgstr "主体背景颜色。默认#fdfdfd." - -# @ woocommerce -#: admin/settings/settings-init.php:1095 -msgid "Email Body Text Colour" -msgstr "Email 主题文本颜色" - -# @ woocommerce -#: admin/settings/settings-init.php:1096 -msgid "The main body text colour. Default #505050." -msgstr "主题文本颜色。默认#505050." - -# @ woocommerce -#: admin/settings/settings-payment-gateways.php:27 -#: admin/settings/settings-shipping-methods.php:29 -#: admin/woocommerce-admin-init.php:767 -#: admin/woocommerce-admin-taxonomies.php:27 -#: admin/woocommerce-admin-taxonomies.php:121 -msgid "Default" -msgstr "默认" - -# @ woocommerce -#: admin/settings/settings-payment-gateways.php:28 -msgid "Gateway" -msgstr "网关" - -#: admin/settings/settings-payment-gateways.php:45 -msgid "Gateway ID" -msgstr "网关ID" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:23 -msgid "Shipping Methods" -msgstr "送货方式" - -#: admin/settings/settings-shipping-methods.php:25 -msgid "Drag and drop methods to control their display order." -msgstr "拖放的方法来控制他们的显示顺序。" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:30 -msgid "Shipping Method" -msgstr "配送方式" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:46 -msgid "Method ID" -msgstr "方法ID" - -#: admin/settings/settings-tax-rates.php:29 -msgid "Tax Rates for the \"%s\" Class" -msgstr "线路税类" - -#: admin/settings/settings-tax-rates.php:30 -msgid "" -"Define tax rates for countries and states below. See here " -"for available alpha-2 country codes." -msgstr "" - -#: admin/settings/settings-tax-rates.php:36 -msgid "Country Code" -msgstr "2字母国家代码" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:36 -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "" - -#: admin/settings/settings-tax-rates.php:38 -msgid "State Code" -msgstr "州/县或地区代码" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:38 -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:40 -#: admin/settings/settings-tax-rates.php:217 -msgid "ZIP/Postcode" -msgstr "邮政编码" - -#: admin/settings/settings-tax-rates.php:40 -msgid "" -"Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all areas. Wildcards (*) can be used. Ranges for numeric " -"postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "" - -#: admin/settings/settings-tax-rates.php:42 -msgid "" -"Cities for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all cities." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:44 -msgid "Rate %" -msgstr "标准税率" - -#: admin/settings/settings-tax-rates.php:44 -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "输入4位小数的税率(百分比)。" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:46 -msgid "Tax Name" -msgstr "新分类目录名" - -#: admin/settings/settings-tax-rates.php:46 -msgid "Enter a name for this tax rate." -msgstr "" - -#: admin/settings/settings-tax-rates.php:48 -#: admin/settings/settings-tax-rates.php:217 -msgid "Priority" -msgstr "" - -#: admin/settings/settings-tax-rates.php:48 -msgid "" -"Choose a priority for this tax rate. Only 1 matching rate per priority will " -"be used. To define multiple tax rates for a single area you need to specify " -"a different priority per rate." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:50 -#: admin/settings/settings-tax-rates.php:217 -msgid "Compound" -msgstr "复合" - -#: admin/settings/settings-tax-rates.php:50 -msgid "" -"Choose whether or not this is a compound rate. Compound tax rates are " -"applied on top of other tax rates." -msgstr "选择无论如何这都是一个复利税率。复合税率适用其他税率之上。" - -#: admin/settings/settings-tax-rates.php:52 -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "选择税率这是否也被应用到配送。" - -#: admin/settings/settings-tax-rates.php:59 -msgid "Insert row" -msgstr "在下方插入行" - -#: admin/settings/settings-tax-rates.php:60 -msgid "Remove selected row(s)" -msgstr "复制该行" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:62 -msgid "Export CSV" -msgstr "导出率" - -#: admin/settings/settings-tax-rates.php:63 -msgid "Import CSV" -msgstr "导入附件" - -#: admin/settings/settings-tax-rates.php:163 -msgid "No row(s) selected" -msgstr "没有客户被选择" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Country Code" -msgstr "2字母国家代码" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "State Code" -msgstr "州/县或地区代码" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Rate %" -msgstr "评级" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Name" -msgstr "锚名称" - -#: admin/woocommerce-admin-attributes.php:77 -msgid "Please, provide an attribute name, slug and type." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:79 -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:81 -msgid "" -"Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:85 -#: admin/woocommerce-admin-attributes.php:90 -msgid "Slug “%s” is already in use. Change it, please." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:226 -msgid "Edit Attribute" -msgstr "编辑属性" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:236 -#: admin/woocommerce-admin-attributes.php:375 -msgid "Name for the attribute (shown on the front-end)." -msgstr "属性的名称(显示在前端)。" - -#: admin/woocommerce-admin-attributes.php:241 -#: admin/woocommerce-admin-attributes.php:307 -#: admin/woocommerce-admin-attributes.php:379 -msgid "Slug" -msgstr "Slug" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:245 -#: admin/woocommerce-admin-attributes.php:381 -msgid "" -"Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "独特slug/参考该属性;必须少于28个字符。" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:254 -#: admin/woocommerce-admin-attributes.php:387 -msgid "Select" -msgstr "选择" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:255 -#: admin/woocommerce-admin-attributes.php:388 -msgid "Text" -msgstr "文本" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:258 -#: admin/woocommerce-admin-attributes.php:391 -msgid "" -"Determines how you select attributes for products. Text " -"allows manual entry via the product page, whereas select " -"attribute terms can be defined from this section. If you plan on using an " -"attribute for variations use select." -msgstr "" -"确定你如何选择产品的属性。 文字允许通过产品页面手工录入,而" -"选择属性可以从本节中定义。如果你打算使用属性的变更,使用" -"选择。" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:263 -#: admin/woocommerce-admin-attributes.php:395 -msgid "Default sort order" -msgstr "新添订单" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:267 -#: admin/woocommerce-admin-attributes.php:335 -#: admin/woocommerce-admin-attributes.php:397 -msgid "Custom ordering" -msgstr "Benutzerdefinierte bestell position" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:269 -#: admin/woocommerce-admin-attributes.php:332 -#: admin/woocommerce-admin-attributes.php:399 -msgid "Term ID" -msgstr "条目 ID 无效" - -#: admin/woocommerce-admin-attributes.php:271 -#: admin/woocommerce-admin-attributes.php:401 -msgid "" -"Determines the sort order on the frontend for this attribute. If using " -"custom ordering, you can drag and drop the terms in this attribute" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:276 -msgid "Update" -msgstr "更新" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:309 -msgid "Order by" -msgstr "排序方式为:" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:310 -msgid "Terms" -msgstr "选项" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:355 -msgid "Configure terms" -msgstr "配置 选项" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:359 -msgid "No attributes currently exist." -msgstr "当前不存在任何属性。" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:369 -msgid "Add New Attribute" -msgstr "添加新属性" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:370 -msgid "" -"Attributes let you define extra product data, such as size or colour. You " -"can use these attributes in the shop sidebar using the \"layered nav\" " -"widgets. Please note: you cannot rename an attribute later on." -msgstr "" -"属性让你定义额外的产品数据,如大小或颜色。你可以使用这些属性在商店的侧边栏使" -"用\"layered nav\"小工具。请注意:你不能重命名属性。" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:404 -msgid "Add Attribute" -msgstr "添加属性" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:415 -msgid "Are you sure you want to delete this attribute?" -msgstr "你确定要删除这个属性吗?" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:26 -#: admin/woocommerce-admin-reports.php:30 -#: admin/woocommerce-admin-reports.php:75 -#: admin/woocommerce-admin-reports.php:91 -#: admin/woocommerce-admin-reports.php:102 -msgid "Overview" -msgstr "概览" - -#: admin/woocommerce-admin-content.php:29 -msgid "" -"Thank you for using WooCommerce :) Should you need help using or extending " -"WooCommerce please read the documentation. For further " -"assistance you can use the community forum or if you have " -"access, our support desk." -msgstr "" - -#: admin/woocommerce-admin-content.php:31 -msgid "" -"If you are having problems, or to assist us with support, please check the " -"status page to identify any problems with your configuration:" -msgstr "" -"Wenn Sie Probleme haben, oder uns mit Support unterstützen, überprüfen Sie " -"bitte die Status-Seite, um Probleme mit der Konfiguration zu identifizieren:" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:33 admin/woocommerce-admin-init.php:87 -#: admin/woocommerce-admin-status.php:26 -msgid "System Status" -msgstr "Systemstatus" - -#: admin/woocommerce-admin-content.php:35 -msgid "" -"If you come across a bug, or wish to contribute to the project you can also " -"get involved on GitHub." -msgstr "" -"如果你遇到一个错误,或者希望贡献项目,可以在GitHub上参与。" - -#: admin/woocommerce-admin-content.php:43 -msgid "" -"Here you can set up your store and customise it to fit your needs. The " -"sections available from the settings page include:" -msgstr "" -"在这里你可以设置你的商店和对其自定义以满足您的需求。从设置页面中可用的部分包" -"括:" - -#: admin/woocommerce-admin-content.php:44 -msgid "" -"General settings such as your shop base, currency, and script/styling " -"options which affect features used in your store." -msgstr "" -"常规设置,例如你的店铺的目标市场,货币,和脚本/样式选项,这些影响您的商店的功" -"能使用。" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:45 -#: admin/woocommerce-admin-settings.php:182 -msgid "Pages" -msgstr "页面" - -#: admin/woocommerce-admin-content.php:45 -msgid "" -"This is where important store page are defined. You can also set up other " -"pages (such as a Terms page) here." -msgstr "这是其中重要的商店页面定义。你还可以在这里设置其他网页(如条款页)。" - -#: admin/woocommerce-admin-content.php:46 -msgid "" -"Options for how things like price, images and weights appear in your product " -"catalog." -msgstr "设置显示在产品类别的价格,图片和重量。" - -#: admin/woocommerce-admin-content.php:47 -msgid "Options concerning stock and stock notices." -msgstr "关于库存和库存注意的选项。" - -#: admin/woocommerce-admin-content.php:48 -msgid "Options concerning tax, including international and local tax rates." -msgstr "关于税收,包括国际及本地税率的选项。" - -#: admin/woocommerce-admin-content.php:49 -msgid "" -"This is where shipping options are defined, and shipping methods are set up." -msgstr "这定义运输选项,并设置运输方式。" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:50 -msgid "Payment Methods" -msgstr "付款方式" - -#: admin/woocommerce-admin-content.php:50 -msgid "" -"This is where payment gateway options are defined, and individual payment " -"gateways are set up." -msgstr "这是支付网关选项已定义,并设置单个支付网关。" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:51 -#: admin/woocommerce-admin-settings.php:187 -msgid "Emails" -msgstr "电子邮件" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:51 -msgid "Here you can customise the way WooCommerce emails appear." -msgstr "在这里你可以自定义WooCommerce电子邮件出现方式。" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:52 -#: admin/woocommerce-admin-settings.php:188 -msgid "Integration" -msgstr "集成" - -#: admin/woocommerce-admin-content.php:52 -msgid "" -"The integration section contains options for third party services which " -"integrate with WooCommerce." -msgstr "集成部分包含第三方服务的内容选项集成到WooCommerce。" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:57 admin/woocommerce-admin-init.php:64 -msgid "Reports" -msgstr "报表" - -#: admin/woocommerce-admin-content.php:59 -msgid "" -"The reports section can be accessed from the left-hand navigation menu. Here " -"you can generate reports for sales and customers." -msgstr "" -"报告的部分,可以从左侧的导航菜单访问。在这里,你可以生成销售和客户报告。" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:60 -#: admin/woocommerce-admin-reports.php:27 -#: admin/woocommerce-admin-reports.php:986 -#: admin/woocommerce-admin-reports.php:1082 -#: admin/woocommerce-admin-reports.php:1199 -msgid "Sales" -msgstr "销售" - -#: admin/woocommerce-admin-content.php:60 -msgid "Reports for sales based on date, top sellers and top earners." -msgstr "为基于日期的最畅销和最赚钱销售报告" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:61 -msgid "Coupon usage reports." -msgstr "添加新优惠券" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:62 -#: admin/woocommerce-admin-reports.php:88 -msgid "Customers" -msgstr "顾客" - -#: admin/woocommerce-admin-content.php:62 -msgid "Customer reports, such as signups per day." -msgstr "客户报告,例如每天的注册情况等。" - -#: admin/woocommerce-admin-content.php:63 -msgid "Stock reports for low stock and out of stock items." -msgstr "Stock reports for low stock and out of stock items." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:68 -#: admin/woocommerce-admin-dashboard.php:142 -msgid "Orders" -msgstr "订单" - -#: admin/woocommerce-admin-content.php:70 -msgid "" -"The orders section can be accessed from the left-hand navigation menu. Here " -"you can view and manage customer orders." -msgstr "订单部分,可以从左侧的导航菜单访问。在这里你可以查看和管理客户的订单。" - -#: admin/woocommerce-admin-content.php:71 -msgid "" -"Orders can also be added from this section if you want to set them up for a " -"customer manually." -msgstr "订单也可以从本节为顾客手工添加,如果你想。" - -#: admin/woocommerce-admin-content.php:78 -msgid "" -"Coupons can be managed from this section. Once added, customers will be able " -"to enter coupon codes on the cart/checkout page. If a customer uses a coupon " -"code they will be viewable when viewing orders." -msgstr "" -"优惠券可以从本节管理。添加完毕后,客户将可以在购物车车/结帐页输入你添加的优惠" -"券代码。如果顾客使用了优惠券代码,他们可以在查看订单时看到。" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:82 -msgid "For more information:" -msgstr "欲了解更多信息:" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:83 admin/woocommerce-admin-init.php:62 -msgid "WooCommerce" -msgstr "WooCommerce
    商店设置" - -#: admin/woocommerce-admin-content.php:84 -msgid "Project on WordPress.org" -msgstr "http://codex.wordpress.org/zh-cn:Main_Page" - -#: admin/woocommerce-admin-content.php:85 -msgid "Project on Github" -msgstr "%2$s 对《%1$s》的评论" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:86 -msgid "WooCommerce Docs" -msgstr "WooCommerce 设置" - -#: admin/woocommerce-admin-content.php:87 -msgid "Official Extensions" -msgstr "" - -#: admin/woocommerce-admin-content.php:88 -msgid "Official Themes" -msgstr "“主题”页面" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:40 -msgid "Monthly Sales" -msgstr "每月销售" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:43 -msgid "WooCommerce Right Now" -msgstr "WooCommerce目前" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:44 -msgid "WooCommerce Recent Orders" -msgstr "WooCommerce最近订单" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:45 -msgid "WooCommerce Recent Reviews" -msgstr "WooCommerce最近评论" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:78 -msgid "Shop Content" -msgstr "店铺内容" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:84 -#: admin/woocommerce-admin-functions.php:194 -#: admin/woocommerce-admin-init.php:771 -#: admin/woocommerce-admin-reports.php:985 -#: admin/woocommerce-admin-reports.php:1081 -msgid "Product" -msgid_plural "Products" -msgstr[0] "商品" -msgstr[1] "商品" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:98 -msgid "Product Category" -msgid_plural "Product Categories" -msgstr[0] "商品分类" -msgstr[1] "商品分类" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:112 -msgid "Product Tag" -msgid_plural "Product Tags" -msgstr[0] "商品标签" -msgstr[1] "商品标签" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:126 -msgid "Attribute" -msgid_plural "Attributes" -msgstr[0] "属性" -msgstr[1] "属性" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:148 -msgid "Pending" -msgstr "待审" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:162 -msgid "On-Hold" -msgstr "保持" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:190 -msgid "Completed" -msgstr "已完成" - -#: admin/woocommerce-admin-dashboard.php:207 -msgid "You are using WooCommerce %s." -msgstr "你正在使用WooCommerce %s." - -#: admin/woocommerce-admin-dashboard.php:238 -msgid "l jS \\of F Y h:i:s A" -msgstr "l jS \\of F Y h:i:s A" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:239 -msgid "item" -msgid_plural "items" -msgstr[0] "item" -msgstr[1] "items" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:239 -msgid "Total:" -msgstr "总计:" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:245 -msgid "There are no product orders yet." -msgstr "这里还没有产品订单。" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:279 -msgid "out of 5" -msgstr "超出5" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:287 -msgid "There are no product reviews yet." -msgstr "还没有产品评论。" - -#: admin/woocommerce-admin-dashboard.php:428 -msgid "Sold" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:429 -msgid "Earned" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:184 -#: admin/woocommerce-admin-install.php:222 -msgid "Order Received" -msgstr "已收到订单" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:186 -msgid "" -"Thank you, we are now processing your order. Your order's details are below." -msgstr "谢谢你,我们正在处理您的订单。您的订单的详细信息如下。" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:188 -msgid "Order:" -msgstr "订单:" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:195 -msgid "Quantity" -msgstr "数量" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:208 -msgid "Order total:" -msgstr "订单总计" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:214 -msgid "Customer details" -msgstr "客户详情" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:220 -msgid "Billing address" -msgstr "账单地址" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:227 -msgid "Shipping address" -msgstr "送货地址" - -#: admin/woocommerce-admin-functions.php:459 -msgid "Could not compile woocommerce.less:" -msgstr "无法编译的woocommerce.less" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:480 -#: admin/woocommerce-admin-functions.php:481 -msgid "Mark processing" -msgstr "Ziel wird bearbeitet" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:483 -#: admin/woocommerce-admin-functions.php:484 -msgid "Mark completed" -msgstr "Ziel fertig gestellt " - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:521 -msgid "Order status changed by bulk edit:" -msgstr "Order status changed by bulk edit:" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:544 -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "订单 %s 状态改变" -msgstr[1] "订单 %s 状态改变" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:86 -msgid "WooCommerce Settings" -msgstr "WooCommerce 设置" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:87 -msgid "WooCommerce Status" -msgstr "WooCommerce Status" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:140 admin/woocommerce-admin-init.php:142 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "订单" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:446 -msgid "" -"Are you sure you want to remove the selected items? If you have previously " -"reduced this item's stock, or this order was submitted by a customer, you " -"will need to manually restore the item's stock." -msgstr "" - -#: admin/woocommerce-admin-init.php:447 -msgid "Please select some items." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:448 -msgid "Remove this item meta?" -msgstr "编辑这个项目的内联" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:449 -msgid "Remove this attribute?" -msgstr "删除这个属性?" - -#: admin/woocommerce-admin-init.php:457 -msgid "Enter a name for the new attribute term:" -msgstr "输入一个新的属性项的名称:" - -#: admin/woocommerce-admin-init.php:458 -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "" - -#: admin/woocommerce-admin-init.php:459 -msgid "" -"Calculate line taxes? This will calculate taxes based on the customers " -"country. If no billing/shipping is set it will use the store base country." -msgstr "" -"计算税?这将计算基于客户国家的税收。如果没有设置账单/配送,它将使用的商店目标" -"对象国家。" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:460 -msgid "" -"Copy billing information to shipping information? This will remove any " -"currently entered shipping information." -msgstr "复制账单信息,收货地址?这将删除任何当前输入送货信息。" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:461 -msgid "" -"Load the customer's billing information? This will remove any currently " -"entered billing information." -msgstr "加载客户的账单信息?这将删除任何当前输入账单信息。" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:462 -msgid "" -"Load the customer's shipping information? This will remove any currently " -"entered shipping information." -msgstr "加载客户的收货地址?这将删除任何当前输入送货信息。" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:466 -msgid "No customer selected" -msgstr "没有客户被选择" - -#: admin/woocommerce-admin-init.php:675 -msgid "Product updated. View Product" -msgstr "产品已更新查看产品" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:676 admin/woocommerce-admin-init.php:691 -#: admin/woocommerce-admin-init.php:706 -msgid "Custom field updated." -msgstr "自定义字段已更新。" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:677 admin/woocommerce-admin-init.php:692 -#: admin/woocommerce-admin-init.php:707 -msgid "Custom field deleted." -msgstr "自定义字段已删除" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:678 -msgid "Product updated." -msgstr "产品已更新。" - -#: admin/woocommerce-admin-init.php:679 -msgid "Product restored to revision from %s" -msgstr "产品恢复到修订%s" - -#: admin/woocommerce-admin-init.php:680 -msgid "Product published. View Product" -msgstr "产品已发布。查看产品" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:681 -msgid "Product saved." -msgstr "产品已保存。" - -#: admin/woocommerce-admin-init.php:682 -msgid "Product submitted. Preview Product" -msgstr "产品已提交。预览产品" - -#: admin/woocommerce-admin-init.php:683 -msgid "" -"Product scheduled for: %1$s. Preview Product" -msgstr "" -"产品计划为:%1$s. 预览产" -"品" - -#: admin/woocommerce-admin-init.php:684 admin/woocommerce-admin-init.php:699 -#: admin/woocommerce-admin-init.php:714 -msgid "M j, Y @ G:i" -msgstr "M j, Y @ G:i" - -#: admin/woocommerce-admin-init.php:685 -msgid "" -"Product draft updated. Preview Product" -msgstr "产品草案已更新。预览产品" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:690 admin/woocommerce-admin-init.php:693 -#: admin/woocommerce-admin-init.php:695 -msgid "Order updated." -msgstr "订单已更新。" - -#: admin/woocommerce-admin-init.php:694 -msgid "Order restored to revision from %s" -msgstr "订单恢复到修订从 %s" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:696 -msgid "Order saved." -msgstr "订单已保存。" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:697 -msgid "Order submitted." -msgstr "订单已提交。" - -#: admin/woocommerce-admin-init.php:698 -msgid "Order scheduled for: %1$s." -msgstr "订单计划为:%1$s." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:700 -msgid "Order draft updated." -msgstr "订单草案已更新。" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:705 admin/woocommerce-admin-init.php:708 -#: admin/woocommerce-admin-init.php:710 -msgid "Coupon updated." -msgstr "优惠券已更新。" - -#: admin/woocommerce-admin-init.php:709 -msgid "Coupon restored to revision from %s" -msgstr "优惠券从%s版本恢复" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:711 -msgid "Coupon saved." -msgstr "优惠券已保存。" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:712 -msgid "Coupon submitted." -msgstr "优惠券已提交。" - -#: admin/woocommerce-admin-init.php:713 -msgid "Coupon scheduled for: %1$s." -msgstr "优惠券计划为:%1$s." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:715 -msgid "Coupon draft updated." -msgstr "优惠券草案已更新。" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:732 -msgid "Order notes" -msgstr "订单备注" - -#: admin/woocommerce-admin-init.php:747 -msgid "" -"These settings control the permalinks used for products. These settings only " -"apply when not using \"default\" permalinks above." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:754 -msgctxt "default-slug" -msgid "shop" -msgstr "shop" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:755 -msgctxt "default-slug" -msgid "product" -msgstr "product" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:776 -msgid "Shop base" -msgstr "店铺基本页面" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:780 -msgid "Shop base with category" -msgstr "添加网店和分类目录地址" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:786 -msgid "Custom Base" -msgstr "自定义 URL" - -#: admin/woocommerce-admin-init.php:788 -msgid "" -"Enter a custom base to use. A base must be set or WordPress " -"will use default instead." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:816 -msgid "Product permalink base" -msgstr "产品相应页面" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:821 -msgid "Product category base" -msgstr "产品基本类别" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:828 -msgid "Product tag base" -msgstr "产品相应页面" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:835 -msgid "Product attribute base" -msgstr "产品相应页面" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:192 -msgctxt "page_slug" -msgid "shop" -msgstr "商店" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:192 -msgid "Shop" -msgstr "商店" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:195 -msgctxt "page_slug" -msgid "cart" -msgstr "购物车" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:195 -#: admin/woocommerce-admin-status.php:277 -msgid "Cart" -msgstr "购物车" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:198 -msgctxt "page_slug" -msgid "checkout" -msgstr "结账" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:201 -msgctxt "page_slug" -msgid "my-account" -msgstr "我的账户" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:201 -#: admin/woocommerce-admin-status.php:293 -msgid "My Account" -msgstr "我的帐户" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:207 -msgctxt "page_slug" -msgid "edit-address" -msgstr "编辑地址" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:207 -msgid "Edit My Address" -msgstr "编辑我的地址" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:210 -msgctxt "page_slug" -msgid "view-order" -msgstr "查看订单" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:210 -#: admin/woocommerce-admin-status.php:301 -msgid "View Order" -msgstr "查看订单" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:213 -msgctxt "page_slug" -msgid "change-password" -msgstr "改变密码" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:213 -#: admin/woocommerce-admin-status.php:305 -msgid "Change Password" -msgstr "修改密码" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:216 -msgctxt "page_slug" -msgid "logout" -msgstr "注销" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:216 -msgid "Logout" -msgstr "注销" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:219 -msgctxt "page_slug" -msgid "pay" -msgstr "支付" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:219 -msgid "Checkout → Pay" -msgstr "结账 → 付款" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:222 -msgctxt "page_slug" -msgid "order-received" -msgstr "订单已收到" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:36 -msgid "Sales by day" -msgstr "按天销售" - -#: admin/woocommerce-admin-reports.php:41 -msgid "Sales by month" -msgstr "按月销售" - -#: admin/woocommerce-admin-reports.php:46 -msgid "Taxes by month" -msgstr "Taxes by month" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:51 -msgid "Product Sales" -msgstr "产品销售" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:56 -msgid "Top sellers" -msgstr "热卖" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:61 -msgid "Top earners" -msgstr "最赚钱" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:66 -msgid "Sales by category" -msgstr "按天销售" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:81 -msgid "Discounts by coupon" -msgstr "添加新优惠券" - -#: admin/woocommerce-admin-reports.php:232 -#: admin/woocommerce-admin-reports.php:497 -#: admin/woocommerce-admin-reports.php:702 -#: admin/woocommerce-admin-reports.php:883 -msgid "Sales amount" -msgstr "销售金额" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:237 -#: admin/woocommerce-admin-reports.php:497 -#: admin/woocommerce-admin-reports.php:702 -#: admin/woocommerce-admin-reports.php:883 -msgid "Number of sales" -msgstr "销售数量" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:369 -msgid "Total sales" -msgstr "总销售" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:371 -#: admin/woocommerce-admin-reports.php:377 -#: admin/woocommerce-admin-reports.php:383 -#: admin/woocommerce-admin-reports.php:389 -#: admin/woocommerce-admin-reports.php:395 -#: admin/woocommerce-admin-reports.php:401 -#: admin/woocommerce-admin-reports.php:644 -#: admin/woocommerce-admin-reports.php:650 -#: admin/woocommerce-admin-reports.php:656 -#: admin/woocommerce-admin-reports.php:662 -#: admin/woocommerce-admin-reports.php:828 -#: admin/woocommerce-admin-reports.php:834 -#: admin/woocommerce-admin-reports.php:840 -#: admin/woocommerce-admin-reports.php:846 -#: admin/woocommerce-admin-reports.php:1364 -#: admin/woocommerce-admin-reports.php:1370 -#: admin/woocommerce-admin-reports.php:1376 -#: admin/woocommerce-admin-reports.php:1810 -#: admin/woocommerce-admin-reports.php:1816 -#: admin/woocommerce-admin-reports.php:1822 -#: admin/woocommerce-admin-reports.php:1828 -#: admin/woocommerce-admin-reports.php:1834 -#: admin/woocommerce-admin-reports.php:1840 -#: admin/woocommerce-admin-reports.php:2304 -#: admin/woocommerce-admin-reports.php:2315 -#: admin/woocommerce-admin-reports.php:2326 -msgid "n/a" -msgstr "暂无数据" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:375 -msgid "Total orders" -msgstr "总订单" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:377 -#: admin/woocommerce-admin-reports.php:650 -#: admin/woocommerce-admin-reports.php:834 -msgid "items" -msgstr "个项目" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:381 -msgid "Average order total" -msgstr "平均订单总额" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:387 -msgid "Average order items" -msgstr "平均订单项" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:393 -msgid "Discounts used" -msgstr "优惠已使用" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:399 -msgid "Total shipping costs" -msgstr "总运费" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:407 -msgid "This month's sales" -msgstr "按月销售" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1356 -msgid "From:" -msgstr "来自:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1356 -msgid "To:" -msgstr "到:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:821 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1229 -#: admin/woocommerce-admin-reports.php:1356 -#: admin/woocommerce-admin-reports.php:1489 -#: admin/woocommerce-admin-reports.php:2293 -#: admin/woocommerce-admin-reports.php:2476 -msgid "Show" -msgstr "显示" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:642 -msgid "Total sales in range" -msgstr "范围内总销售" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:648 -msgid "Total orders in range" -msgstr "在范围内的总订单" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:654 -msgid "Average order total in range" -msgstr "在范围内平均订单总额" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:660 -msgid "Average order items in range" -msgstr "在范围内的平均订单项" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:668 -msgid "Sales in range" -msgstr "范围内销售" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:815 -#: admin/woocommerce-admin-reports.php:2287 -msgid "Year:" -msgstr "年:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:826 -msgid "Total sales for year" -msgstr "一年总销售" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:832 -msgid "Total orders for year" -msgstr "年度总订单" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:838 -msgid "Average order total for year" -msgstr "平均每年订单总额" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:844 -msgid "Average order items for year" -msgstr "一年的平均订单项" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:852 -msgid "Monthly sales for year" -msgstr "今年每月销售" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1000 -msgid "Product does not exist" -msgstr "产品不存在" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1097 -msgid "Product no longer exists" -msgstr "产品不再存在" - -#: admin/woocommerce-admin-reports.php:1194 -msgid "Sales for %s:" -msgstr "出售 %s:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1198 -#: admin/woocommerce-admin-reports.php:2335 -msgid "Month" -msgstr "方法" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1219 -msgid "No sales :(" -msgstr "还没有销售 :(" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1362 -msgid "Total orders containing coupons" -msgstr "在范围内的总订单" - -#: admin/woocommerce-admin-reports.php:1368 -msgid "Percent of orders containing coupons" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1374 -msgid "Total coupon discount" -msgstr "添加新优惠券" - -#: admin/woocommerce-admin-reports.php:1383 -msgid "Most popular coupons" -msgstr "没有找到优惠券" - -#: admin/woocommerce-admin-reports.php:1393 -msgid "Used 1 time" -msgid_plural "Used %d times" -msgstr[0] "Used 1 time" -msgstr[1] "Used 1 time" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1396 -#: admin/woocommerce-admin-reports.php:1418 -msgid "No coupons found" -msgstr "没有找到优惠券" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1405 -msgid "Greatest discount amount" -msgstr "输入金额,例如2.99" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1415 -msgid "Discounted %s" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1474 -#: admin/woocommerce-admin-reports.php:2453 -msgid "Show:" -msgstr "显示" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1531 -msgid "Coupon" -msgstr "优惠券" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1614 -msgid "Top coupon" -msgstr "添加优惠券" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1622 -msgid "Worst coupon" -msgstr "添加优惠券" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1630 -msgid "Discount average" -msgstr "综合评级" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1638 -msgid "Discount median" -msgstr "购物返现" - -#: admin/woocommerce-admin-reports.php:1658 -msgid "Monthly discounts by coupon" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1808 -msgid "Total customers" -msgstr "合计客户" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1814 -msgid "Total customer sales" -msgstr "总顾客销售" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1820 -msgid "Total guest sales" -msgstr "总访客销售" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1826 -msgid "Total customer orders" -msgstr "合计客户订单" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1832 -msgid "Total guest orders" -msgstr "合计访客订单" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1838 -msgid "Average orders per customer" -msgstr "平均每个客户的订单" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1846 -msgid "Signups per day" -msgstr "每天注册数" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2067 -msgid "Low stock" -msgstr "库存不足" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2090 -#: admin/woocommerce-admin-reports.php:2129 -msgid "%d in stock" -msgid_plural "%d in stock" -msgstr[0] "库存%d " -msgstr[1] "库存%d " - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2095 -msgid "No products are low in stock." -msgstr "没有产品库存不足" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2127 -msgid "Marked out of stock" -msgstr "库存脱销限制" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2134 -msgid "No products are out in stock." -msgstr "没有产品脱销" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2298 -msgid "Total taxes for year" -msgstr "Total taxes for year" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2309 -msgid "Total product taxes for year" -msgstr "Total product taxes for year" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2320 -msgid "Total shipping tax for year" -msgstr "Total shipping tax for year" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2336 -msgid "Total Sales" -msgstr "Total Sales" - -#: admin/woocommerce-admin-reports.php:2336 -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "这是您“订单总计”栏内订单的总和。" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2337 -msgid "Total Shipping" -msgstr "Total Shipping" - -#: admin/woocommerce-admin-reports.php:2337 -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "这是您的订单内“运费总计“的总和。" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2338 -msgid "Total Product Taxes" -msgstr "Total Product Taxes" - -#: admin/woocommerce-admin-reports.php:2338 -msgid "This is the sum of the 'Cart Tax' field within your orders." -msgstr "这是您的订单“购物税款(Cart Tax)”总和。" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2339 -msgid "Total Shipping Taxes" -msgstr "Total Shipping Taxes" - -#: admin/woocommerce-admin-reports.php:2339 -msgid "This is the sum of the 'Shipping Tax' field within your orders." -msgstr "这是您的订单“运费税”的总和。" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2340 -msgid "Total Taxes" -msgstr "Total Taxes" - -#: admin/woocommerce-admin-reports.php:2340 -msgid "" -"This is the sum of the 'Cart Tax' and 'Shipping Tax' fields within your " -"orders." -msgstr "这是您的订单“购物税”“运费税”的总和。" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2341 -msgid "Net profit" -msgstr "Net profit" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2341 -msgid "Total sales minus shipping and tax." -msgstr "Total sales minus shipping and tax." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2386 -msgid "Toggle tax rows" -msgstr "切换税行" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2529 -msgid "Category" -msgstr "分类目录" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2632 -msgid "Top category" -msgstr "畅销类目" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2641 -msgid "Worst category" -msgstr "最差销售分类" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2649 -msgid "Category sales average" -msgstr "平均订单总额" - -#: admin/woocommerce-admin-reports.php:2660 -msgid "Category sales median" -msgstr "按天销售" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2680 -msgid "Monthly sales by category" -msgstr "商品分类小工具" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:45 -msgid "Action failed. Please refresh the page and retry." -msgstr "动作失败。请刷新页面然后重试。" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:162 -msgid "Your settings have been saved." -msgstr "你的设置已保存。" - -#: admin/woocommerce-admin-settings.php:208 -msgid "" -"More functionality and gateway options available via WC official extensions." -msgstr "" -"更多功能和网关选项可以通过WC 官方扩展." - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:226 -msgid "Tax Rates" -msgstr "税率" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:253 -msgid "Email Options" -msgstr "电子邮件收件人选项" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:386 -msgid "Save changes" -msgstr "保存变更" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:427 -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "离开这个页面,您所做的更改将丢失。" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:799 -msgid "Hard Crop" -msgstr "Hard Crop" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:824 -msgid "Select a page…" -msgstr "Select a page…" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:847 -msgid "Choose a country…" -msgstr "选择一个国家…" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:867 -msgid "Choose countries…" -msgstr "选择国家…" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:27 -#: admin/woocommerce-admin-status.php:622 -msgid "Tools" -msgstr "工具" - -#: admin/woocommerce-admin-status.php:62 -msgid "Please include this information when requesting support:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:63 -msgid "Download System Report File" -msgstr "下载并导入文件附件" - -#: admin/woocommerce-admin-status.php:71 -msgid "Environment" -msgstr "服务器环境" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:77 -msgid "Home URL" -msgstr "首页 URL" - -#: admin/woocommerce-admin-status.php:81 -msgid "Site URL" -msgstr "站点 URL" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:85 -msgid "WC Version" -msgstr "软件版本" - -#: admin/woocommerce-admin-status.php:89 -msgid "WC Database Version" -msgstr "更新到 %s 版本" - -#: admin/woocommerce-admin-status.php:93 -msgid "WP Version" -msgstr "软件版本" - -#: admin/woocommerce-admin-status.php:97 -msgid "Web Server Info" -msgstr "信息提示框的内容:" - -#: admin/woocommerce-admin-status.php:101 -msgid "PHP Version" -msgstr "PHP 版本" - -#: admin/woocommerce-admin-status.php:105 -msgid "MySQL Version" -msgstr "软件版本" - -#: admin/woocommerce-admin-status.php:109 -msgid "WP Memory Limit" -msgstr "WP内存限制" - -#: admin/woocommerce-admin-status.php:114 -msgid "" -"%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "" -"%s - 我们建议设置到至少64MB的内存。. 参考: 增加内存分配给PHP" - -#: admin/woocommerce-admin-status.php:121 -msgid "WP Debug Mode" -msgstr "WP 调试模式" - -#: admin/woocommerce-admin-status.php:125 -msgid "WP Max Upload Size" -msgstr "WP 最大上传大小" - -#: admin/woocommerce-admin-status.php:129 -msgid "PHP Post Max Size" -msgstr "服务器的 post_max_size" - -#: admin/woocommerce-admin-status.php:133 -msgid "PHP Time Limit" -msgstr "已达上传限制" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:137 -msgid "WC Logging" -msgstr "WC 日志" - -#: admin/woocommerce-admin-status.php:140 -msgid "Log directory is writable." -msgstr "日志目录是可写的。" - -#: admin/woocommerce-admin-status.php:142 -msgid "" -"Log directory (woocommerce/logs/) is not writable. Logging will " -"not be possible." -msgstr "日志目录 (woocommerce/logs/)不可写入。日志将无法创建。" - -#: admin/woocommerce-admin-status.php:149 -msgid "fsockopen/cURL" -msgstr "fsockopen/cURL" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:152 -msgid "Your server has fsockopen and cURL enabled." -msgstr "Your server has fsockopen and cURL enabled." - -#: admin/woocommerce-admin-status.php:154 -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "Your server has fsockopen enabled, cURL is disabled." - -#: admin/woocommerce-admin-status.php:156 -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "Your server has cURL enabled, fsockopen is disabled." - -#: admin/woocommerce-admin-status.php:160 -msgid "" -"Your server does not have fsockopen or cURL enabled - PayPal IPN and other " -"scripts which communicate with other servers will not work. Contact your " -"hosting provider." -msgstr "" -"Your server does not have fsockopen or cURL enabled - PayPal IPN and other " -"scripts which communicate with other servers will not work. Contact your " -"hosting provider." - -#: admin/woocommerce-admin-status.php:165 -msgid "SOAP Client" -msgstr "客户端ID" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:167 -msgid "Your server has the SOAP Client class enabled." -msgstr "" - -#: admin/woocommerce-admin-status.php:170 -msgid "" -"Your server does not have the SOAP Client class enabled - " -"some gateway plugins which use SOAP may not work as expected." -msgstr "" - -#: admin/woocommerce-admin-status.php:175 -msgid "WP Remote Post" -msgstr "WP远程发布项" - -#: admin/woocommerce-admin-status.php:186 -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "wp_remote_post() was successful - PayPal IPN is working." - -#: admin/woocommerce-admin-status.php:189 -msgid "" -"wp_remote_post() failed. PayPal IPN won't work with your server. Contact " -"your hosting provider. Error:" -msgstr "" -"wp_remote_post() failed. PayPal IPN won't work with your server. Contact " -"your hosting provider. Error:" - -#: admin/woocommerce-admin-status.php:192 -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "wp_remote_post() failed. PayPal IPN may not work with your server." - -#: admin/woocommerce-admin-status.php:215 -msgid "Plugins" -msgstr "插件" - -#: admin/woocommerce-admin-status.php:221 -msgid "Installed Plugins" -msgstr "已安装的插件" - -#: admin/woocommerce-admin-status.php:236 -msgid "by" -msgstr "by" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:236 -msgid "version" -msgstr "版本" - -#: admin/woocommerce-admin-status.php:259 -msgid "Force SSL" -msgstr "Force SSL" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:266 -msgid "WC Pages" -msgstr "可用的页面" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:273 -msgid "Shop Base" -msgstr "店铺基本页面" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:285 -msgid "Pay" -msgstr "付款" - -#: admin/woocommerce-admin-status.php:289 -msgid "Thanks" -msgstr "感谢页" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:297 -msgid "Edit Address" -msgstr "编辑地址" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:329 -msgid "Page not set" -msgstr "页面没有设置" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:339 -msgid "Page does not exist" -msgstr "连接不存在" - -#: admin/woocommerce-admin-status.php:344 -msgid "Page does not contain the shortcode: %s" -msgstr "页面不包含简码: %s" - -#: admin/woocommerce-admin-status.php:363 -msgid "WC Taxonomies" -msgstr "Core Taxonomies(核心分类法)" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:369 -msgid "Order Statuses" -msgstr "订单状态" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:379 -msgid "Product Types" -msgstr "显示全部产品类型" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:392 -msgid "Templates" -msgstr "模板" - -#: admin/woocommerce-admin-status.php:398 -msgid "Template Overrides" -msgstr "电子邮件模板" - -#: admin/woocommerce-admin-status.php:416 -msgid "No core overrides present in theme." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:510 -msgid "WC Transients" -msgstr "清除临时状态" - -#: admin/woocommerce-admin-status.php:511 -msgid "Clear transients" -msgstr "清除临时状态" - -#: admin/woocommerce-admin-status.php:512 -msgid "This tool will clear the product/shop transients cache." -msgstr "此工具会清除产品/商店临时缓存。" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:515 -msgid "Expired Transients" -msgstr "清除临时状态" - -#: admin/woocommerce-admin-status.php:516 -msgid "Clear expired transients" -msgstr "产品临时状态已清除" - -#: admin/woocommerce-admin-status.php:517 -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:520 -msgid "Term counts" -msgstr "术语" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:521 -msgid "Recount terms" -msgstr "选择条款" - -#: admin/woocommerce-admin-status.php:522 -msgid "" -"This tool will recount product terms - useful when changing your settings in " -"a way which hides products from the catalog." -msgstr "" - -#: admin/woocommerce-admin-status.php:525 -msgid "Capabilities" -msgstr "功能" - -#: admin/woocommerce-admin-status.php:526 -msgid "Reset capabilities" -msgstr "重置功能" - -#: admin/woocommerce-admin-status.php:527 -msgid "" -"This tool will reset the admin, customer and shop_manager roles to default. " -"Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "" -"此工具将重置管理员,顾客和shop_manager 角色为默认。如果你的用户不能访问所有的" -"WooCommerce管理页面请使用这个。" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:537 -msgid "Product Transients Cleared" -msgstr "产品临时状态已清除" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:578 -msgid "%d Transients Rows Cleared" -msgstr "产品 %d 临时状态已清除" - -#: admin/woocommerce-admin-status.php:586 -msgid "Roles successfully reset" -msgstr "角色成功重置" - -#: admin/woocommerce-admin-status.php:598 -msgid "Terms successfully recounted" -msgstr "插件激活成功。" - -#: admin/woocommerce-admin-status.php:607 -msgid "There was an error calling %s::%s" -msgstr "调用 %s::%s 出错" - -#: admin/woocommerce-admin-status.php:610 -msgid "There was an error calling %s" -msgstr "调用 %s 出错" - -#: admin/woocommerce-admin-taxonomies.php:25 -#: admin/woocommerce-admin-taxonomies.php:118 -msgid "Display type" -msgstr "显示类型:" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:29 -#: admin/woocommerce-admin-taxonomies.php:123 -msgid "Subcategories" -msgstr "显示子类别" - -#: admin/woocommerce-admin-taxonomies.php:30 -#: admin/woocommerce-admin-taxonomies.php:124 -msgid "Both" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:34 -#: admin/woocommerce-admin-taxonomies.php:129 -msgid "Thumbnail" -msgstr "缩略图" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:38 -#: admin/woocommerce-admin-taxonomies.php:134 -msgid "Upload/Add image" -msgstr "上传/添加图片" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:39 -#: admin/woocommerce-admin-taxonomies.php:135 -msgid "Remove image" -msgstr "删除图片" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:64 -#: admin/woocommerce-admin-taxonomies.php:156 -msgid "Use image" -msgstr "作为特色图像" - -#: admin/woocommerce-admin-taxonomies.php:222 -msgid "" -"Product categories for your store can be managed here. To change the order " -"of categories on the front-end you can drag and drop to sort them. To see " -"more categories listed click the \"screen options\" link at the top of the " -"page." -msgstr "" -"你店铺的产品类别在这里修改。要改变前端的类别排序,你可以通过拖拽来对他们重新" -"排序。要查看更多类别列表,单击页面顶部的\"屏幕选项\" 链接。" - -#: admin/woocommerce-admin-taxonomies.php:237 -msgid "" -"Shipping classes can be used to group products of similar type. These groups " -"can then be used by certain shipping methods to provide different rates to " -"different products." -msgstr "" -"送货类型可用于相似类型的产品组。这些组可以使用某些运输方式,不同的产品提供不" -"同的费率。" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:365 -msgid "Configure shipping class" -msgstr "配置送货类" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:26 -msgid "Billing Address" -msgstr "账单地址" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:27 -msgid "Shipping Address" -msgstr "配送地址" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:28 -msgid "Paying Customer?" -msgstr "付费客户?" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:29 -msgid "Completed Orders" -msgstr "Parent Orders" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:144 -msgid "Customer Billing Address" -msgstr "顾客账单地址" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:147 admin/woocommerce-admin-users.php:196 -msgid "First name" -msgstr "姓" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:151 admin/woocommerce-admin-users.php:200 -msgid "Last name" -msgstr "名" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:176 -msgid "Country or state code" -msgstr "州/县或地区代码" - -#: admin/woocommerce-admin-users.php:180 admin/woocommerce-admin-users.php:229 -msgid "2 letter Country code" -msgstr "2字母国家代码" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:183 -msgid "Telephone" -msgstr "电话" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:193 -msgid "Customer Shipping Address" -msgstr "顾客配送地址" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:225 -msgid "State/County or state code" -msgstr "州/县或地区代码" diff --git a/i18n/languages/woocommerce-admin.pot b/i18n/languages/woocommerce-admin.pot index 83293c446db..6d1eb37b99f 100644 --- a/i18n/languages/woocommerce-admin.pot +++ b/i18n/languages/woocommerce-admin.pot @@ -1,376 +1,442 @@ +# Copyright (C) 2014 WooThemes +# This file is distributed under the same license as the WooCommerce package. msgid "" msgstr "" -"Project-Id-Version: WooCommerce 2.1-beta-2 Admin\n" +"Project-Id-Version: WooCommerce 2.2.4 Admin\n" "Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-12-23 15:38:02+00:00\n" +"POT-Creation-Date: 2014-09-18 12:40:25+00:00\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"PO-Revision-Date: 2013-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2014-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" +"X-Generator: grunt-wp-i18n 0.4.8\n" -#: includes/admin/class-wc-admin-assets.php:65 -#: includes/admin/class-wc-admin-menus.php:47 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:45 -#: includes/admin/wc-admin-functions.php:19 +#. Plugin Name of the plugin/theme msgid "WooCommerce" msgstr "" -#: includes/admin/class-wc-admin-assets.php:108 +#: includes/admin/class-wc-admin-assets.php:106 msgid "Please enter in decimal (%s) format without thousand separators." msgstr "" +#: includes/admin/class-wc-admin-assets.php:107 +msgid "" +"Please enter in monetary decimal (%s) format without thousand separators " +"and currency symbols." +msgstr "" + +#: includes/admin/class-wc-admin-assets.php:108 +msgid "Please enter in country code with two capital letters." +msgstr "" + #: includes/admin/class-wc-admin-assets.php:109 -msgid "Please enter in monetary decimal (%s) format without thousand separators and currency symbols." -msgstr "" - -#: includes/admin/class-wc-admin-assets.php:136 -msgid "Are you sure you want to remove the selected items? If you have previously reduced this item's stock, or this order was submitted by a customer, you will need to manually restore the item's stock." -msgstr "" - -#: includes/admin/class-wc-admin-assets.php:137 -msgid "Please select some items." -msgstr "" - -#: includes/admin/class-wc-admin-assets.php:138 -msgid "Remove this item meta?" -msgstr "" - -#: includes/admin/class-wc-admin-assets.php:139 -msgid "Remove this attribute?" -msgstr "" - -#: includes/admin/class-wc-admin-assets.php:140 -#: includes/admin/class-wc-admin-attributes.php:239 -#: includes/admin/class-wc-admin-attributes.php:275 -#: includes/admin/class-wc-admin-attributes.php:307 -#: includes/admin/class-wc-admin-attributes.php:330 -#: includes/admin/class-wc-admin-attributes.php:374 -#: includes/admin/class-wc-admin-attributes.php:399 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:193 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:185 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:438 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:532 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:148 -#: includes/admin/settings/class-wc-settings-shipping.php:203 -msgid "Name" -msgstr "" - -#: includes/admin/class-wc-admin-assets.php:141 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:430 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:524 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:6 -msgid "Remove" +msgid "Please enter in a value less than the regular price." msgstr "" #: includes/admin/class-wc-admin-assets.php:142 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:431 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:525 -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:7 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:7 -msgid "Click to toggle" +msgid "" +"Are you sure you want to link all variations? This will create a new " +"variation for each and every possible combination of variation attributes " +"(max 50 per run)." msgstr "" #: includes/admin/class-wc-admin-assets.php:143 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:446 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:538 -msgid "Value(s)" -msgstr "" - -#: includes/admin/class-wc-admin-assets.php:144 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:539 -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "" - -#: includes/admin/class-wc-admin-assets.php:145 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:489 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:544 -msgid "Visible on the product page" -msgstr "" - -#: includes/admin/class-wc-admin-assets.php:146 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:502 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:550 -msgid "Used for variations" -msgstr "" - -#: includes/admin/class-wc-admin-assets.php:147 -msgid "Enter a name for the new attribute term:" -msgstr "" - -#: includes/admin/class-wc-admin-assets.php:148 -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "" - -#: includes/admin/class-wc-admin-assets.php:149 -msgid "Calculate line taxes? This will calculate taxes based on the customers country. If no billing/shipping is set it will use the store base country." -msgstr "" - -#: includes/admin/class-wc-admin-assets.php:150 -msgid "Copy billing information to shipping information? This will remove any currently entered shipping information." -msgstr "" - -#: includes/admin/class-wc-admin-assets.php:151 -msgid "Load the customer's billing information? This will remove any currently entered billing information." -msgstr "" - -#: includes/admin/class-wc-admin-assets.php:152 -msgid "Load the customer's shipping information? This will remove any currently entered shipping information." -msgstr "" - -#: includes/admin/class-wc-admin-assets.php:153 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:115 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:205 -#: includes/admin/views/html-bulk-edit-product.php:170 -#: includes/admin/views/html-quick-edit-product.php:128 -msgid "Featured" -msgstr "" - -#: includes/admin/class-wc-admin-assets.php:156 -msgid "No customer selected" -msgstr "" - -#: includes/admin/class-wc-admin-assets.php:182 -msgid "Could not grant access - the user may already have permission for this file or billing email is not set. Ensure the billing email is set, and the order has been saved." -msgstr "" - -#: includes/admin/class-wc-admin-assets.php:183 -msgid "Are you sure you want to revoke access to this download?" -msgstr "" - -#: includes/admin/class-wc-admin-assets.php:203 -msgid "Are you sure you want to link all variations? This will create a new variation for each and every possible combination of variation attributes (max 50 per run)." -msgstr "" - -#: includes/admin/class-wc-admin-assets.php:204 msgid "Enter a value" msgstr "" -#: includes/admin/class-wc-admin-assets.php:205 +#: includes/admin/class-wc-admin-assets.php:144 msgid "Enter a value (fixed or %)" msgstr "" -#: includes/admin/class-wc-admin-assets.php:206 +#: includes/admin/class-wc-admin-assets.php:145 msgid "Are you sure you want to delete all variations? This cannot be undone." msgstr "" -#: includes/admin/class-wc-admin-assets.php:207 +#: includes/admin/class-wc-admin-assets.php:146 msgid "Last warning, are you sure?" msgstr "" -#: includes/admin/class-wc-admin-assets.php:208 +#: includes/admin/class-wc-admin-assets.php:147 #: includes/admin/class-wc-admin-taxonomies.php:126 #: includes/admin/class-wc-admin-taxonomies.php:213 msgid "Choose an image" msgstr "" -#: includes/admin/class-wc-admin-assets.php:209 +#: includes/admin/class-wc-admin-assets.php:148 msgid "Set variation image" msgstr "" -#: includes/admin/class-wc-admin-assets.php:210 +#: includes/admin/class-wc-admin-assets.php:149 msgid "variation added" msgstr "" -#: includes/admin/class-wc-admin-assets.php:211 +#: includes/admin/class-wc-admin-assets.php:150 msgid "variations added" msgstr "" -#: includes/admin/class-wc-admin-assets.php:212 +#: includes/admin/class-wc-admin-assets.php:151 msgid "No variations added" msgstr "" -#: includes/admin/class-wc-admin-assets.php:213 +#: includes/admin/class-wc-admin-assets.php:152 msgid "Are you sure you want to remove this variation?" msgstr "" -#: includes/admin/class-wc-admin-attributes.php:82 +#: includes/admin/class-wc-admin-assets.php:166 +msgid "" +"Are you sure you want to remove the selected items? If you have previously " +"reduced this item's stock, or this order was submitted by a customer, you " +"will need to manually restore the item's stock." +msgstr "" + +#: includes/admin/class-wc-admin-assets.php:167 +msgid "Please select some items." +msgstr "" + +#: includes/admin/class-wc-admin-assets.php:168 +msgid "Are you sure you wish to process this refund? This action cannot be undone." +msgstr "" + +#: includes/admin/class-wc-admin-assets.php:169 +msgid "Are you sure you wish to delete this refund? This action cannot be undone." +msgstr "" + +#: includes/admin/class-wc-admin-assets.php:170 +msgid "" +"Are you sure you wish to delete this tax column? This action cannot be " +"undone." +msgstr "" + +#: includes/admin/class-wc-admin-assets.php:171 +msgid "Remove this item meta?" +msgstr "" + +#: includes/admin/class-wc-admin-assets.php:172 +msgid "Remove this attribute?" +msgstr "" + +#: includes/admin/class-wc-admin-assets.php:173 +#: includes/admin/class-wc-admin-attributes.php:237 +#: includes/admin/class-wc-admin-attributes.php:273 +#: includes/admin/class-wc-admin-attributes.php:305 +#: includes/admin/class-wc-admin-attributes.php:328 +#: includes/admin/class-wc-admin-attributes.php:372 +#: includes/admin/class-wc-admin-attributes.php:397 +#: includes/admin/class-wc-admin-post-types.php:109 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:193 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:452 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:552 +#: includes/admin/meta-boxes/views/html-variation-admin.php:169 +#: includes/admin/settings/class-wc-settings-shipping.php:202 +msgid "Name" +msgstr "" + +#: includes/admin/class-wc-admin-assets.php:174 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:444 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:544 +#: includes/admin/meta-boxes/views/html-variation-admin.php:6 +msgid "Remove" +msgstr "" + +#: includes/admin/class-wc-admin-assets.php:175 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:445 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:545 +#: includes/admin/meta-boxes/views/html-order-download-permission.php:7 +#: includes/admin/meta-boxes/views/html-variation-admin.php:7 +msgid "Click to toggle" +msgstr "" + +#: includes/admin/class-wc-admin-assets.php:176 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:460 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:558 +msgid "Value(s)" +msgstr "" + +#: includes/admin/class-wc-admin-assets.php:177 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:559 +msgid "Enter some text, or some attributes by pipe (|) separating values." +msgstr "" + +#: includes/admin/class-wc-admin-assets.php:178 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:504 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:564 +msgid "Visible on the product page" +msgstr "" + +#: includes/admin/class-wc-admin-assets.php:179 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:518 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:570 +msgid "Used for variations" +msgstr "" + +#: includes/admin/class-wc-admin-assets.php:180 +msgid "Enter a name for the new attribute term:" +msgstr "" + +#: includes/admin/class-wc-admin-assets.php:181 +msgid "Calculate totals based on order items, discounts, and shipping?" +msgstr "" + +#: includes/admin/class-wc-admin-assets.php:182 +msgid "" +"Calculate line taxes? This will calculate taxes based on the customers " +"country. If no billing/shipping is set it will use the store base country." +msgstr "" + +#: includes/admin/class-wc-admin-assets.php:183 +msgid "" +"Copy billing information to shipping information? This will remove any " +"currently entered shipping information." +msgstr "" + +#: includes/admin/class-wc-admin-assets.php:184 +msgid "" +"Load the customer's billing information? This will remove any currently " +"entered billing information." +msgstr "" + +#: includes/admin/class-wc-admin-assets.php:185 +msgid "" +"Load the customer's shipping information? This will remove any currently " +"entered shipping information." +msgstr "" + +#: includes/admin/class-wc-admin-assets.php:186 +#: includes/admin/class-wc-admin-post-types.php:122 +#: includes/admin/class-wc-admin-post-types.php:1958 +#: includes/admin/views/html-bulk-edit-product.php:181 +#: includes/admin/views/html-quick-edit-product.php:139 +msgid "Featured" +msgstr "" + +#: includes/admin/class-wc-admin-assets.php:189 +msgid "No customer selected" +msgstr "" + +#: includes/admin/class-wc-admin-assets.php:215 +msgid "" +"Could not grant access - the user may already have permission for this file " +"or billing email is not set. Ensure the billing email is set, and the order " +"has been saved." +msgstr "" + +#: includes/admin/class-wc-admin-assets.php:216 +msgid "Are you sure you want to revoke access to this download?" +msgstr "" + +#: includes/admin/class-wc-admin-assets.php:217 +msgid "You cannot add the same tax rate twice!" +msgstr "" + +#: includes/admin/class-wc-admin-assets.php:218 +msgid "" +"Your product has variations! Before changing the product type, it is a good " +"idea to delete the variations to avoid errors in the stock reports." +msgstr "" + +#: includes/admin/class-wc-admin-attributes.php:80 msgid "Please, provide an attribute name, slug and type." msgstr "" -#: includes/admin/class-wc-admin-attributes.php:84 +#: includes/admin/class-wc-admin-attributes.php:82 msgid "Slug “%s” is too long (28 characters max). Shorten it, please." msgstr "" -#: includes/admin/class-wc-admin-attributes.php:86 +#: includes/admin/class-wc-admin-attributes.php:84 msgid "Slug “%s” is not allowed because it is a reserved term. Change it, please." msgstr "" -#: includes/admin/class-wc-admin-attributes.php:91 -#: includes/admin/class-wc-admin-attributes.php:96 +#: includes/admin/class-wc-admin-attributes.php:89 +#: includes/admin/class-wc-admin-attributes.php:94 msgid "Slug “%s” is already in use. Change it, please." msgstr "" -#: includes/admin/class-wc-admin-attributes.php:233 +#: includes/admin/class-wc-admin-attributes.php:231 msgid "Edit Attribute" msgstr "" -#: includes/admin/class-wc-admin-attributes.php:243 -#: includes/admin/class-wc-admin-attributes.php:376 +#: includes/admin/class-wc-admin-attributes.php:241 +#: includes/admin/class-wc-admin-attributes.php:374 msgid "Name for the attribute (shown on the front-end)." msgstr "" -#: includes/admin/class-wc-admin-attributes.php:248 -#: includes/admin/class-wc-admin-attributes.php:308 -#: includes/admin/class-wc-admin-attributes.php:380 +#: includes/admin/class-wc-admin-attributes.php:246 +#: includes/admin/class-wc-admin-attributes.php:306 +#: includes/admin/class-wc-admin-attributes.php:378 msgid "Slug" msgstr "" -#: includes/admin/class-wc-admin-attributes.php:252 -#: includes/admin/class-wc-admin-attributes.php:382 +#: includes/admin/class-wc-admin-attributes.php:250 +#: includes/admin/class-wc-admin-attributes.php:380 msgid "Unique slug/reference for the attribute; must be shorter than 28 characters." msgstr "" -#: includes/admin/class-wc-admin-attributes.php:257 -#: includes/admin/class-wc-admin-attributes.php:309 -#: includes/admin/class-wc-admin-attributes.php:386 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:206 +#: includes/admin/class-wc-admin-attributes.php:255 +#: includes/admin/class-wc-admin-attributes.php:307 +#: includes/admin/class-wc-admin-attributes.php:384 +#: includes/admin/class-wc-admin-post-types.php:123 msgid "Type" msgstr "" -#: includes/admin/class-wc-admin-attributes.php:261 -#: includes/admin/class-wc-admin-attributes.php:388 +#: includes/admin/class-wc-admin-attributes.php:259 +#: includes/admin/class-wc-admin-attributes.php:386 msgid "Select" msgstr "" -#: includes/admin/class-wc-admin-attributes.php:262 -#: includes/admin/class-wc-admin-attributes.php:389 +#: includes/admin/class-wc-admin-attributes.php:260 +#: includes/admin/class-wc-admin-attributes.php:387 msgid "Text" msgstr "" -#: includes/admin/class-wc-admin-attributes.php:265 -#: includes/admin/class-wc-admin-attributes.php:392 -msgid "Determines how you select attributes for products. Under admin panel -> products -> product data -> attributes -> values, Text allows manual entry whereas select allows pre-configured terms in a drop-down list." +#: includes/admin/class-wc-admin-attributes.php:263 +#: includes/admin/class-wc-admin-attributes.php:390 +msgid "" +"Determines how you select attributes for products. Under admin panel -> " +"products -> product data -> attributes -> values, Text " +"allows manual entry whereas select allows pre-configured " +"terms in a drop-down list." msgstr "" -#: includes/admin/class-wc-admin-attributes.php:270 -#: includes/admin/class-wc-admin-attributes.php:396 +#: includes/admin/class-wc-admin-attributes.php:268 +#: includes/admin/class-wc-admin-attributes.php:394 msgid "Default sort order" msgstr "" -#: includes/admin/class-wc-admin-attributes.php:274 -#: includes/admin/class-wc-admin-attributes.php:336 -#: includes/admin/class-wc-admin-attributes.php:398 +#: includes/admin/class-wc-admin-attributes.php:272 +#: includes/admin/class-wc-admin-attributes.php:334 +#: includes/admin/class-wc-admin-attributes.php:396 msgid "Custom ordering" msgstr "" -#: includes/admin/class-wc-admin-attributes.php:276 -#: includes/admin/class-wc-admin-attributes.php:333 -#: includes/admin/class-wc-admin-attributes.php:400 +#: includes/admin/class-wc-admin-attributes.php:274 +#: includes/admin/class-wc-admin-attributes.php:331 +#: includes/admin/class-wc-admin-attributes.php:398 msgid "Term ID" msgstr "" -#: includes/admin/class-wc-admin-attributes.php:278 -#: includes/admin/class-wc-admin-attributes.php:402 -msgid "Determines the sort order of the terms on the frontend shop product pages. If using custom ordering, you can drag and drop the terms in this attribute." +#: includes/admin/class-wc-admin-attributes.php:276 +#: includes/admin/class-wc-admin-attributes.php:400 +msgid "" +"Determines the sort order of the terms on the frontend shop product pages. " +"If using custom ordering, you can drag and drop the terms in this attribute." msgstr "" -#: includes/admin/class-wc-admin-attributes.php:283 +#: includes/admin/class-wc-admin-attributes.php:281 msgid "Update" msgstr "" -#: includes/admin/class-wc-admin-attributes.php:299 -#: includes/admin/class-wc-admin-menus.php:49 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:104 +#: includes/admin/class-wc-admin-attributes.php:297 +#: includes/admin/class-wc-admin-menus.php:53 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:111 msgid "Attributes" msgstr "" -#: includes/admin/class-wc-admin-attributes.php:310 +#: includes/admin/class-wc-admin-attributes.php:308 msgid "Order by" msgstr "" -#: includes/admin/class-wc-admin-attributes.php:311 +#: includes/admin/class-wc-admin-attributes.php:309 msgid "Terms" msgstr "" -#: includes/admin/class-wc-admin-attributes.php:323 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:118 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:250 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:82 -#: includes/admin/reports/class-wc-report-customer-list.php:182 -#: includes/admin/reports/class-wc-report-stock.php:107 +#: includes/admin/class-wc-admin-attributes.php:321 +#: includes/admin/class-wc-admin-post-types.php:211 +#: includes/admin/class-wc-admin-post-types.php:1962 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:215 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:294 +#: includes/admin/meta-boxes/views/html-order-items.php:202 +#: includes/admin/reports/class-wc-report-customer-list.php:188 +#: includes/admin/reports/class-wc-report-stock.php:123 msgid "Edit" msgstr "" -#: includes/admin/class-wc-admin-attributes.php:323 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:44 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:55 -#: includes/admin/post-types/meta-boxes/views/html-product-download.php:6 -#: includes/admin/post-types/meta-boxes/views/html-product-variation-download.php:5 +#: includes/admin/class-wc-admin-attributes.php:321 +#: includes/admin/meta-boxes/class-wc-meta-box-product-images.php:44 +#: includes/admin/meta-boxes/class-wc-meta-box-product-images.php:56 +#: includes/admin/meta-boxes/views/html-product-download.php:6 +#: includes/admin/meta-boxes/views/html-product-variation-download.php:5 msgid "Delete" msgstr "" -#: includes/admin/class-wc-admin-attributes.php:356 +#: includes/admin/class-wc-admin-attributes.php:354 msgid "Configure terms" msgstr "" -#: includes/admin/class-wc-admin-attributes.php:360 +#: includes/admin/class-wc-admin-attributes.php:358 msgid "No attributes currently exist." msgstr "" -#: includes/admin/class-wc-admin-attributes.php:370 +#: includes/admin/class-wc-admin-attributes.php:368 msgid "Add New Attribute" msgstr "" -#: includes/admin/class-wc-admin-attributes.php:371 -msgid "Attributes let you define extra product data, such as size or colour. You can use these attributes in the shop sidebar using the \"layered nav\" widgets. Please note: you cannot rename an attribute later on." +#: includes/admin/class-wc-admin-attributes.php:369 +msgid "" +"Attributes let you define extra product data, such as size or colour. You " +"can use these attributes in the shop sidebar using the \"layered nav\" " +"widgets. Please note: you cannot rename an attribute later on." msgstr "" -#: includes/admin/class-wc-admin-attributes.php:405 +#: includes/admin/class-wc-admin-attributes.php:403 msgid "Add Attribute" msgstr "" -#: includes/admin/class-wc-admin-attributes.php:416 +#: includes/admin/class-wc-admin-attributes.php:414 msgid "Are you sure you want to delete this attribute?" msgstr "" -#: includes/admin/class-wc-admin-dashboard.php:34 +#: includes/admin/class-wc-admin-dashboard.php:35 msgid "WooCommerce Recent Reviews" msgstr "" -#: includes/admin/class-wc-admin-dashboard.php:37 -#: includes/admin/class-wc-admin-menus.php:80 +#: includes/admin/class-wc-admin-dashboard.php:38 +#: includes/admin/class-wc-admin-menus.php:84 msgid "WooCommerce Status" msgstr "" -#: includes/admin/class-wc-admin-dashboard.php:131 +#: includes/admin/class-wc-admin-dashboard.php:132 msgid "%s sales this month" msgstr "" -#: includes/admin/class-wc-admin-dashboard.php:138 +#: includes/admin/class-wc-admin-dashboard.php:139 msgid "%s top seller this month (sold %d)" msgstr "" -#: includes/admin/class-wc-admin-dashboard.php:144 +#: includes/admin/class-wc-admin-dashboard.php:145 msgid "%s order awaiting processing" msgid_plural "%s orders awaiting processing" msgstr[0] "" msgstr[1] "" -#: includes/admin/class-wc-admin-dashboard.php:149 +#: includes/admin/class-wc-admin-dashboard.php:150 msgid "%s order on-hold" msgid_plural "%s orders on-hold" msgstr[0] "" msgstr[1] "" -#: includes/admin/class-wc-admin-dashboard.php:154 +#: includes/admin/class-wc-admin-dashboard.php:155 msgid "%s product low in stock" msgid_plural "%s products low in stock" msgstr[0] "" msgstr[1] "" -#: includes/admin/class-wc-admin-dashboard.php:159 +#: includes/admin/class-wc-admin-dashboard.php:160 msgid "%s product out of stock" msgid_plural "%s products out of stock" msgstr[0] "" msgstr[1] "" -#: includes/admin/class-wc-admin-dashboard.php:192 +#: includes/admin/class-wc-admin-dashboard.php:193 msgid "out of 5" msgstr "" -#: includes/admin/class-wc-admin-dashboard.php:200 +#: includes/admin/class-wc-admin-dashboard.php:195 +msgid "reviewed by" +msgstr "" + +#: includes/admin/class-wc-admin-dashboard.php:201 msgid "There are no product reviews yet." msgstr "" @@ -403,7 +469,9 @@ msgid "Documentation" msgstr "" #: includes/admin/class-wc-admin-help.php:41 -msgid "Thank you for using WooCommerce :) Should you need help using or extending WooCommerce please read the documentation." +msgid "" +"Thank you for using WooCommerce :) Should you need help using or extending " +"WooCommerce please read the documentation." msgstr "" #: includes/admin/class-wc-admin-help.php:43 @@ -419,26 +487,32 @@ msgid "Support" msgstr "" #: includes/admin/class-wc-admin-help.php:52 -msgid "After reading the documentation, for further assistance you can use the community forum, or if you have access as a WooThemes customer, our support desk." +msgid "" +"After %sreading the documentation%s, for further assistance you can use our " +"%scommunity forum%s if you get stuck. For help with premium add-ons from " +"WooThemes, or if you are a WooThemes customer, you can %suse our helpdesk%s." msgstr "" #: includes/admin/class-wc-admin-help.php:54 -msgid "Before asking for help we recommend checking the status page to identify any problems with your configuration." +msgid "" +"Before asking for help we recommend checking the status page to identify " +"any problems with your configuration." msgstr "" #: includes/admin/class-wc-admin-help.php:56 #: includes/admin/class-wc-admin-help.php:67 -#: includes/admin/class-wc-admin-menus.php:80 -#: includes/admin/views/html-admin-page-status.php:5 +#: includes/admin/class-wc-admin-menus.php:84 +#: includes/admin/views/html-admin-page-status.php:16 +#: includes/admin/views/html-notice-template-check.php:14 msgid "System Status" msgstr "" #: includes/admin/class-wc-admin-help.php:56 -msgid "Community Support" +msgid "WooThemes Community Support" msgstr "" #: includes/admin/class-wc-admin-help.php:56 -msgid "Customer Support" +msgid "WooThemes Customer Support" msgstr "" #: includes/admin/class-wc-admin-help.php:62 @@ -446,37 +520,43 @@ msgid "Found a bug?" msgstr "" #: includes/admin/class-wc-admin-help.php:65 -msgid "If you find a bug within WooCommerce core you can create a ticket via Github issues. Ensure you read the contribution guide prior to submitting your report. Be as descriptive as possible and please include your system status report." +msgid "" +"If you find a bug within WooCommerce core you can create a ticket via Github issues. Ensure you read the contribution guide prior to submitting your report. Be as " +"descriptive as possible and please include your system " +"status report." msgstr "" #: includes/admin/class-wc-admin-help.php:67 msgid "Report a bug" msgstr "" -#: includes/admin/class-wc-admin-help.php:73 +#: includes/admin/class-wc-admin-help.php:72 msgid "For more information:" msgstr "" -#: includes/admin/class-wc-admin-help.php:74 +#: includes/admin/class-wc-admin-help.php:73 +#: includes/admin/class-wc-admin-welcome.php:49 msgid "About WooCommerce" msgstr "" +#: includes/admin/class-wc-admin-help.php:74 +msgid "WordPress.org Project" +msgstr "" + #: includes/admin/class-wc-admin-help.php:75 -msgid "Project on WordPress.org" +msgid "Github Project" msgstr "" #: includes/admin/class-wc-admin-help.php:76 -msgid "Project on Github" +msgid "Official Themes" msgstr "" #: includes/admin/class-wc-admin-help.php:77 msgid "Official Extensions" msgstr "" -#: includes/admin/class-wc-admin-help.php:78 -msgid "Official Themes" -msgstr "" - #: includes/admin/class-wc-admin-importers.php:32 msgid "WooCommerce Tax Rates (CSV)" msgstr "" @@ -485,35 +565,83 @@ msgstr "" msgid "Import tax rates to your store via a csv file." msgstr "" -#: includes/admin/class-wc-admin-menus.php:56 +#: includes/admin/class-wc-admin-menus.php:60 msgid "Reports" msgstr "" -#: includes/admin/class-wc-admin-menus.php:63 +#: includes/admin/class-wc-admin-menus.php:67 msgid "WooCommerce Settings" msgstr "" -#: includes/admin/class-wc-admin-menus.php:63 -#: includes/admin/class-wc-admin-welcome.php:209 -#: includes/admin/settings/class-wc-settings-checkout.php:277 -#: includes/admin/settings/class-wc-settings-shipping.php:241 -#: includes/admin/views/html-admin-page-status-report.php:269 +#: includes/admin/class-wc-admin-menus.php:67 +#: includes/admin/class-wc-admin-welcome.php:239 +#: includes/admin/settings/class-wc-settings-checkout.php:286 +#: includes/admin/settings/class-wc-settings-shipping.php:234 +#: includes/admin/views/html-admin-page-status-report.php:294 msgid "Settings" msgstr "" -#: includes/admin/class-wc-admin-menus.php:88 -#: includes/admin/views/html-admin-page-addons.php:4 +#: includes/admin/class-wc-admin-menus.php:92 +#: includes/admin/views/html-admin-page-addons.php:15 msgid "WooCommerce Add-ons/Extensions" msgstr "" -#: includes/admin/class-wc-admin-menus.php:88 +#: includes/admin/class-wc-admin-menus.php:92 msgid "Add-ons" msgstr "" -#: includes/admin/class-wc-admin-menus.php:126 -#: includes/admin/class-wc-admin-menus.php:128 -msgctxt "Admin menu name" -msgid "Orders" +#: includes/admin/class-wc-admin-meta-boxes.php:101 +msgid "Product Short Description" +msgstr "" + +#: includes/admin/class-wc-admin-meta-boxes.php:102 +#: includes/admin/settings/class-wc-settings-products.php:285 +#: includes/admin/views/html-bulk-edit-product.php:15 +#: includes/admin/views/html-quick-edit-product.php:15 +msgid "Product Data" +msgstr "" + +#: includes/admin/class-wc-admin-meta-boxes.php:103 +msgid "Product Gallery" +msgstr "" + +#: includes/admin/class-wc-admin-meta-boxes.php:107 +msgid "Order Data" +msgstr "" + +#: includes/admin/class-wc-admin-meta-boxes.php:108 +msgid "Order Items" +msgstr "" + +#: includes/admin/class-wc-admin-meta-boxes.php:109 +#: includes/admin/class-wc-admin-post-types.php:161 +msgid "Order Notes" +msgstr "" + +#: includes/admin/class-wc-admin-meta-boxes.php:110 +msgid "Downloadable Product Permissions" +msgstr "" + +#: includes/admin/class-wc-admin-meta-boxes.php:110 +msgid "" +"Note: Permissions for order items will automatically be granted when the " +"order status changes to processing/completed." +msgstr "" + +#: includes/admin/class-wc-admin-meta-boxes.php:111 +msgid "Order Actions" +msgstr "" + +#: includes/admin/class-wc-admin-meta-boxes.php:115 +msgid "Coupon Data" +msgstr "" + +#: includes/admin/class-wc-admin-meta-boxes.php:120 +msgid "Rating" +msgstr "" + +#: includes/admin/class-wc-admin-meta-boxes.php:156 +msgid "Reviews" msgstr "" #: includes/admin/class-wc-admin-permalink-settings.php:33 @@ -532,41 +660,22 @@ msgstr "" msgid "Product attribute base" msgstr "" -#: includes/admin/class-wc-admin-permalink-settings.php:65 -msgctxt "slug" -msgid "product-category" -msgstr "" - -#: includes/admin/class-wc-admin-permalink-settings.php:75 -msgctxt "slug" -msgid "product-tag" -msgstr "" - #: includes/admin/class-wc-admin-permalink-settings.php:93 -msgid "These settings control the permalinks used for products. These settings only apply when not using \"default\" permalinks above." -msgstr "" - -#: includes/admin/class-wc-admin-permalink-settings.php:100 -msgctxt "default-slug" -msgid "shop" -msgstr "" - -#: includes/admin/class-wc-admin-permalink-settings.php:101 -msgctxt "default-slug" -msgid "product" +msgid "" +"These settings control the permalinks used for products. These settings " +"only apply when not using \"default\" permalinks above." msgstr "" #: includes/admin/class-wc-admin-permalink-settings.php:113 #: includes/admin/class-wc-admin-taxonomies.php:91 #: includes/admin/class-wc-admin-taxonomies.php:180 -#: includes/admin/settings/class-wc-settings-checkout.php:226 -#: includes/admin/settings/class-wc-settings-shipping.php:202 -#: includes/admin/views/html-admin-page-status-report.php:70 +#: includes/admin/settings/class-wc-settings-checkout.php:229 +#: includes/admin/settings/class-wc-settings-shipping.php:201 msgid "Default" msgstr "" #: includes/admin/class-wc-admin-permalink-settings.php:117 -#: includes/admin/reports/class-wc-report-stock.php:137 +#: includes/admin/reports/class-wc-report-stock.php:152 msgid "Product" msgstr "" @@ -583,111 +692,591 @@ msgid "Custom Base" msgstr "" #: includes/admin/class-wc-admin-permalink-settings.php:134 -msgid "Enter a custom base to use. A base must be set or WordPress will use default instead." +msgid "" +"Enter a custom base to use. A base must be set or " +"WordPress will use default instead." msgstr "" -#: includes/admin/class-wc-admin-post-types.php:58 +#: includes/admin/class-wc-admin-post-types.php:108 +#: includes/admin/class-wc-admin-taxonomies.php:296 +msgid "Image" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:112 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:142 +#: includes/admin/meta-boxes/views/html-variation-admin.php:53 +#: includes/admin/views/html-quick-edit-product.php:22 +msgid "SKU" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:116 +#: includes/admin/class-wc-admin-reports.php:89 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:826 +#: includes/admin/reports/class-wc-report-stock.php:26 +#: includes/admin/reports/class-wc-report-stock.php:27 +msgid "Stock" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:119 +#: includes/admin/views/html-bulk-edit-product.php:21 +#: includes/admin/views/html-quick-edit-product.php:33 +msgid "Price" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:120 +#: includes/admin/reports/class-wc-report-sales-by-category.php:166 +msgid "Categories" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:121 +msgid "Tags" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:124 +#: includes/admin/class-wc-admin-post-types.php:162 +#: includes/admin/reports/class-wc-report-coupon-usage.php:327 +#: includes/admin/reports/class-wc-report-customers.php:209 +#: includes/admin/reports/class-wc-report-sales-by-category.php:240 +#: includes/admin/reports/class-wc-report-sales-by-date.php:185 +#: includes/admin/reports/class-wc-report-sales-by-product.php:329 +msgid "Date" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:137 +msgid "Code" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:138 +msgid "Coupon type" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:139 +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:66 +#: includes/admin/reports/class-wc-report-sales-by-date.php:348 +msgid "Coupon amount" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:140 +msgid "Description" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:141 +msgid "Product IDs" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:142 +msgid "Usage / Limit" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:143 +msgid "Expiry date" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:156 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:810 +#: includes/admin/settings/class-wc-settings-checkout.php:232 +#: includes/admin/settings/class-wc-settings-shipping.php:204 +msgid "Status" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:157 +msgid "Order" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:158 +msgid "Purchased" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:159 +msgid "Ship to" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:160 +msgid "Customer Message" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:163 +#: includes/admin/meta-boxes/views/html-order-items.php:56 +#: includes/admin/reports/class-wc-report-taxes-by-code.php:173 +msgid "Total" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:164 +#: includes/admin/meta-boxes/class-wc-meta-box-order-actions.php:35 +#: includes/admin/meta-boxes/views/html-order-items.php:200 +#: includes/admin/reports/class-wc-report-customer-list.php:250 +#: includes/admin/reports/class-wc-report-stock.php:156 +msgid "Actions" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:211 +msgid "Edit this item" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:212 +msgid "Edit this item inline" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:212 +msgid "Quick Edit" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:216 +#: includes/admin/class-wc-admin-post-types.php:367 +msgid "Restore this item from the Trash" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:216 +#: includes/admin/class-wc-admin-post-types.php:367 +msgid "Restore" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:218 +#: includes/admin/class-wc-admin-post-types.php:369 +msgid "Move this item to the Trash" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:218 +#: includes/admin/class-wc-admin-post-types.php:369 +msgid "Trash" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:222 +#: includes/admin/class-wc-admin-post-types.php:371 +msgid "Delete this item permanently" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:222 +#: includes/admin/class-wc-admin-post-types.php:371 +#: includes/admin/meta-boxes/class-wc-meta-box-order-actions.php:68 +msgid "Delete Permanently" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:228 +msgid "Preview “%s”" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:228 +msgid "Preview" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:230 +msgid "View “%s”" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:230 +#: includes/admin/class-wc-admin-post-types.php:620 +#: includes/admin/reports/class-wc-report-stock.php:130 +#: includes/admin/views/html-admin-page-status-logs.php:24 +msgid "View" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:280 +msgid "Grouped" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:282 +msgid "External/Affiliate" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:286 +#: includes/admin/class-wc-admin-post-types.php:1410 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:57 +#: includes/admin/meta-boxes/views/html-variation-admin.php:235 +msgid "Virtual" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:288 +#: includes/admin/class-wc-admin-post-types.php:1402 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:64 +#: includes/admin/meta-boxes/views/html-variation-admin.php:233 +msgid "Downloadable" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:290 +msgid "Simple" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:294 +msgid "Variable" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:317 +msgid "Toggle featured" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:319 +#: includes/admin/class-wc-admin-post-types.php:468 +#: includes/admin/class-wc-admin-post-types.php:528 +#: includes/admin/class-wc-admin-post-types.php:532 +#: includes/admin/views/html-admin-page-status-report.php:52 +#: includes/admin/views/html-admin-page-status-report.php:90 +#: includes/admin/views/html-admin-page-status-report.php:115 +#: includes/admin/views/html-admin-page-status-report.php:301 +#: includes/admin/views/html-admin-page-status-report.php:458 +#: includes/admin/views/html-admin-page-status-report.php:485 +#: includes/admin/views/html-bulk-edit-product.php:187 +#: includes/admin/views/html-bulk-edit-product.php:224 +#: includes/admin/views/html-bulk-edit-product.php:285 +msgid "Yes" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:321 +#: includes/admin/views/html-admin-page-status-report.php:52 +#: includes/admin/views/html-admin-page-status-report.php:90 +#: includes/admin/views/html-admin-page-status-report.php:115 +#: includes/admin/views/html-admin-page-status-report.php:301 +#: includes/admin/views/html-admin-page-status-report.php:458 +#: includes/admin/views/html-bulk-edit-product.php:188 +#: includes/admin/views/html-bulk-edit-product.php:225 +#: includes/admin/views/html-bulk-edit-product.php:286 +msgid "No" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:328 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:320 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:789 +#: includes/admin/reports/class-wc-report-stock.php:105 +#: includes/admin/views/html-bulk-edit-product.php:205 +#: includes/admin/views/html-quick-edit-product.php:148 +msgid "In stock" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:330 +#: includes/admin/class-wc-admin-reports.php:98 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:321 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:790 +#: includes/admin/reports/class-wc-report-stock.php:107 +#: includes/admin/views/html-bulk-edit-product.php:206 +#: includes/admin/views/html-quick-edit-product.php:149 +msgid "Out of stock" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:358 +msgid "Edit coupon" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:416 +msgid "%s / %s" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:418 +msgid "%s / ∞" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:454 +msgid "Unpublished" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:456 +msgid "Y/m/d g:i:s A" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:459 +msgid "Y/m/d" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:475 +msgid "%d item" +msgid_plural "%d items" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-wc-admin-post-types.php:509 +#: includes/admin/class-wc-admin-post-types.php:544 +msgid "Via" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:530 +msgid "plus %d other note" +msgid_plural "plus %d other notes" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-wc-admin-post-types.php:530 +msgid "%d note" +msgid_plural "%d notes" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-wc-admin-post-types.php:552 +msgid "Billing:" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:556 +msgid "Tel:" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:581 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:202 +msgid "Guest" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:585 +msgid "%s by %s" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:605 +msgid "Processing" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:613 +msgid "Complete" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:713 +msgid "Sort Products" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:1138 +#: includes/admin/class-wc-admin-post-types.php:1139 +msgid "Mark processing" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:1141 +#: includes/admin/class-wc-admin-post-types.php:1142 +msgid "Mark on-hold" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:1144 +#: includes/admin/class-wc-admin-post-types.php:1145 +msgid "Mark complete" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:1186 +msgid "Order status changed by bulk edit:" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:1208 +msgid "Order status changed." +msgid_plural "%s order statuses changed." +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-wc-admin-post-types.php:1362 +msgid "Show all product types" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:1375 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:40 +msgid "Grouped product" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:1378 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:41 +msgid "External/Affiliate product" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:1381 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:42 +msgid "Variable product" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:1384 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:39 +msgid "Simple product" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:1425 +msgid "Show all types" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:1453 +#: includes/admin/class-wc-admin-post-types.php:1475 +msgid "Show all customers" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:1632 msgid "Product updated. View Product" msgstr "" -#: includes/admin/class-wc-admin-post-types.php:59 -#: includes/admin/class-wc-admin-post-types.php:74 -#: includes/admin/class-wc-admin-post-types.php:89 +#: includes/admin/class-wc-admin-post-types.php:1633 +#: includes/admin/class-wc-admin-post-types.php:1648 +#: includes/admin/class-wc-admin-post-types.php:1663 msgid "Custom field updated." msgstr "" -#: includes/admin/class-wc-admin-post-types.php:60 -#: includes/admin/class-wc-admin-post-types.php:75 -#: includes/admin/class-wc-admin-post-types.php:90 +#: includes/admin/class-wc-admin-post-types.php:1634 +#: includes/admin/class-wc-admin-post-types.php:1649 +#: includes/admin/class-wc-admin-post-types.php:1664 msgid "Custom field deleted." msgstr "" -#: includes/admin/class-wc-admin-post-types.php:61 +#: includes/admin/class-wc-admin-post-types.php:1635 msgid "Product updated." msgstr "" -#: includes/admin/class-wc-admin-post-types.php:62 +#: includes/admin/class-wc-admin-post-types.php:1636 msgid "Product restored to revision from %s" msgstr "" -#: includes/admin/class-wc-admin-post-types.php:63 +#: includes/admin/class-wc-admin-post-types.php:1637 msgid "Product published. View Product" msgstr "" -#: includes/admin/class-wc-admin-post-types.php:64 +#: includes/admin/class-wc-admin-post-types.php:1638 msgid "Product saved." msgstr "" -#: includes/admin/class-wc-admin-post-types.php:65 +#: includes/admin/class-wc-admin-post-types.php:1639 msgid "Product submitted. Preview Product" msgstr "" -#: includes/admin/class-wc-admin-post-types.php:66 -msgid "Product scheduled for: %1$s. Preview Product" +#: includes/admin/class-wc-admin-post-types.php:1640 +msgid "" +"Product scheduled for: %1$s. Preview Product" msgstr "" -#: includes/admin/class-wc-admin-post-types.php:67 -#: includes/admin/class-wc-admin-post-types.php:82 -#: includes/admin/class-wc-admin-post-types.php:97 +#: includes/admin/class-wc-admin-post-types.php:1641 +#: includes/admin/class-wc-admin-post-types.php:1656 +#: includes/admin/class-wc-admin-post-types.php:1671 msgid "M j, Y @ G:i" msgstr "" -#: includes/admin/class-wc-admin-post-types.php:68 +#: includes/admin/class-wc-admin-post-types.php:1642 msgid "Product draft updated. Preview Product" msgstr "" -#: includes/admin/class-wc-admin-post-types.php:73 -#: includes/admin/class-wc-admin-post-types.php:76 -#: includes/admin/class-wc-admin-post-types.php:78 +#: includes/admin/class-wc-admin-post-types.php:1647 +#: includes/admin/class-wc-admin-post-types.php:1650 +#: includes/admin/class-wc-admin-post-types.php:1652 msgid "Order updated." msgstr "" -#: includes/admin/class-wc-admin-post-types.php:77 +#: includes/admin/class-wc-admin-post-types.php:1651 msgid "Order restored to revision from %s" msgstr "" -#: includes/admin/class-wc-admin-post-types.php:79 +#: includes/admin/class-wc-admin-post-types.php:1653 msgid "Order saved." msgstr "" -#: includes/admin/class-wc-admin-post-types.php:80 +#: includes/admin/class-wc-admin-post-types.php:1654 msgid "Order submitted." msgstr "" -#: includes/admin/class-wc-admin-post-types.php:81 +#: includes/admin/class-wc-admin-post-types.php:1655 msgid "Order scheduled for: %1$s." msgstr "" -#: includes/admin/class-wc-admin-post-types.php:83 +#: includes/admin/class-wc-admin-post-types.php:1657 msgid "Order draft updated." msgstr "" -#: includes/admin/class-wc-admin-post-types.php:88 -#: includes/admin/class-wc-admin-post-types.php:91 -#: includes/admin/class-wc-admin-post-types.php:93 +#: includes/admin/class-wc-admin-post-types.php:1662 +#: includes/admin/class-wc-admin-post-types.php:1665 +#: includes/admin/class-wc-admin-post-types.php:1667 msgid "Coupon updated." msgstr "" -#: includes/admin/class-wc-admin-post-types.php:92 +#: includes/admin/class-wc-admin-post-types.php:1666 msgid "Coupon restored to revision from %s" msgstr "" -#: includes/admin/class-wc-admin-post-types.php:94 +#: includes/admin/class-wc-admin-post-types.php:1668 msgid "Coupon saved." msgstr "" -#: includes/admin/class-wc-admin-post-types.php:95 +#: includes/admin/class-wc-admin-post-types.php:1669 msgid "Coupon submitted." msgstr "" -#: includes/admin/class-wc-admin-post-types.php:96 +#: includes/admin/class-wc-admin-post-types.php:1670 msgid "Coupon scheduled for: %1$s." msgstr "" -#: includes/admin/class-wc-admin-post-types.php:98 +#: includes/admin/class-wc-admin-post-types.php:1672 msgid "Coupon draft updated." msgstr "" +#: includes/admin/class-wc-admin-post-types.php:1854 +msgid "Product Image" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:1856 +msgid "Remove product image" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:1858 +#: includes/admin/class-wc-admin-post-types.php:1874 +#: includes/admin/class-wc-admin-post-types.php:1875 +msgid "Set product image" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:1890 +msgid "Product name" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:1893 +msgid "Coupon code" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:1906 +msgid "Description (optional)" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:1923 +msgid "Insert into %s" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:1924 +msgid "Uploaded to this %s" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:1947 +msgid "Catalog/search" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:1948 +#: includes/admin/views/html-bulk-edit-product.php:169 +#: includes/admin/views/html-quick-edit-product.php:126 +msgid "Catalog" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:1949 +#: includes/admin/views/html-bulk-edit-product.php:170 +#: includes/admin/views/html-quick-edit-product.php:127 +msgid "Search" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:1950 +#: includes/admin/views/html-bulk-edit-product.php:171 +#: includes/admin/views/html-quick-edit-product.php:128 +msgid "Hidden" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:1954 +msgid "Catalog visibility:" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:1970 +msgid "" +"Define the loops this product should be visible in. The product will still " +"be accessible directly." +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:1976 +msgid "Enable this option to feature this product." +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:1978 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:1981 +msgid "OK" +msgstr "" + +#: includes/admin/class-wc-admin-post-types.php:1982 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:177 +#: includes/admin/meta-boxes/views/html-order-items.php:236 +#: includes/admin/meta-boxes/views/html-order-items.php:275 +#: includes/admin/meta-boxes/views/html-order-items.php:295 +#: includes/admin/meta-boxes/views/html-order-items.php:350 +msgid "Cancel" +msgstr "" + #: includes/admin/class-wc-admin-profile.php:45 msgid "Customer Billing Address" msgstr "" @@ -704,45 +1293,45 @@ msgstr "" #: includes/admin/class-wc-admin-profile.php:56 #: includes/admin/class-wc-admin-profile.php:105 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:37 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:84 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:51 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:98 msgid "Company" msgstr "" #: includes/admin/class-wc-admin-profile.php:60 #: includes/admin/class-wc-admin-profile.php:109 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:41 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:88 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:55 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:102 msgid "Address 1" msgstr "" #: includes/admin/class-wc-admin-profile.php:64 #: includes/admin/class-wc-admin-profile.php:113 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:45 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:92 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:59 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:106 msgid "Address 2" msgstr "" #: includes/admin/class-wc-admin-profile.php:68 #: includes/admin/class-wc-admin-profile.php:117 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:49 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:96 -#: includes/admin/settings/class-wc-settings-tax.php:254 -#: includes/admin/settings/class-wc-settings-tax.php:381 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:63 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:110 +#: includes/admin/settings/class-wc-settings-tax.php:265 +#: includes/admin/settings/class-wc-settings-tax.php:392 msgid "City" msgstr "" #: includes/admin/class-wc-admin-profile.php:72 #: includes/admin/class-wc-admin-profile.php:121 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:53 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:100 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:67 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:114 msgid "Postcode" msgstr "" #: includes/admin/class-wc-admin-profile.php:76 #: includes/admin/class-wc-admin-profile.php:125 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:63 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:110 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:77 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:124 msgid "State/County" msgstr "" @@ -753,8 +1342,10 @@ msgstr "" #: includes/admin/class-wc-admin-profile.php:80 #: includes/admin/class-wc-admin-profile.php:129 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:57 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:104 +#: includes/admin/class-wc-admin-settings.php:578 +#: includes/admin/class-wc-admin-settings.php:603 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:71 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:118 msgid "Country" msgstr "" @@ -768,8 +1359,8 @@ msgid "Telephone" msgstr "" #: includes/admin/class-wc-admin-profile.php:88 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:67 -#: includes/admin/reports/class-wc-report-customer-list.php:239 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:81 +#: includes/admin/reports/class-wc-report-customer-list.php:245 msgid "Email" msgstr "" @@ -813,223 +1404,279 @@ msgstr "" msgid "Revoke API Key" msgstr "" -#: includes/admin/class-wc-admin-reports.php:46 -#: includes/admin/reports/class-wc-report-customer-list.php:241 +#: includes/admin/class-wc-admin-reports.php:43 +#: includes/admin/reports/class-wc-report-customer-list.php:247 msgid "Orders" msgstr "" -#: includes/admin/class-wc-admin-reports.php:49 +#: includes/admin/class-wc-admin-reports.php:46 msgid "Sales by date" msgstr "" -#: includes/admin/class-wc-admin-reports.php:55 +#: includes/admin/class-wc-admin-reports.php:52 msgid "Sales by product" msgstr "" -#: includes/admin/class-wc-admin-reports.php:61 +#: includes/admin/class-wc-admin-reports.php:58 msgid "Sales by category" msgstr "" -#: includes/admin/class-wc-admin-reports.php:67 +#: includes/admin/class-wc-admin-reports.php:64 msgid "Coupons by date" msgstr "" -#: includes/admin/class-wc-admin-reports.php:75 -#: includes/admin/reports/class-wc-report-customer-list.php:23 +#: includes/admin/class-wc-admin-reports.php:72 +#: includes/admin/reports/class-wc-report-customer-list.php:27 msgid "Customers" msgstr "" -#: includes/admin/class-wc-admin-reports.php:78 +#: includes/admin/class-wc-admin-reports.php:75 msgid "Customers vs. Guests" msgstr "" -#: includes/admin/class-wc-admin-reports.php:84 +#: includes/admin/class-wc-admin-reports.php:81 msgid "Customer List" msgstr "" #: includes/admin/class-wc-admin-reports.php:92 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:199 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:764 -#: includes/admin/reports/class-wc-report-stock.php:20 -#: includes/admin/reports/class-wc-report-stock.php:21 -msgid "Stock" -msgstr "" - -#: includes/admin/class-wc-admin-reports.php:95 msgid "Low in stock" msgstr "" -#: includes/admin/class-wc-admin-reports.php:101 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:366 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:302 -#: includes/admin/reports/class-wc-report-stock.php:93 -#: includes/admin/views/html-bulk-edit-product.php:195 -#: includes/admin/views/html-quick-edit-product.php:138 -msgid "Out of stock" -msgstr "" - -#: includes/admin/class-wc-admin-reports.php:107 +#: includes/admin/class-wc-admin-reports.php:104 msgid "Most Stocked" msgstr "" -#: includes/admin/class-wc-admin-reports.php:118 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:75 +#: includes/admin/class-wc-admin-reports.php:115 msgid "Taxes" msgstr "" -#: includes/admin/class-wc-admin-reports.php:121 +#: includes/admin/class-wc-admin-reports.php:118 msgid "Taxes by code" msgstr "" -#: includes/admin/class-wc-admin-reports.php:127 +#: includes/admin/class-wc-admin-reports.php:124 msgid "Taxes by date" msgstr "" -#: includes/admin/class-wc-admin-settings.php:52 +#: includes/admin/class-wc-admin-settings.php:57 msgid "Action failed. Please refresh the page and retry." msgstr "" -#: includes/admin/class-wc-admin-settings.php:63 +#: includes/admin/class-wc-admin-settings.php:68 msgid "Your settings have been saved." msgstr "" -#: includes/admin/class-wc-admin-settings.php:119 +#: includes/admin/class-wc-admin-settings.php:126 msgid "The changes you made will be lost if you navigate away from this page." msgstr "" -#: includes/admin/class-wc-admin-settings.php:466 +#: includes/admin/class-wc-admin-settings.php:519 +msgid "" +"The settings of this image size have been disabled because its values are " +"being overwritten by a filter." +msgstr "" + +#: includes/admin/class-wc-admin-settings.php:528 msgid "Hard Crop?" msgstr "" -#: includes/admin/class-wc-admin-settings.php:491 +#: includes/admin/class-wc-admin-settings.php:555 msgid "Select a page…" msgstr "" -#: includes/admin/class-wc-admin-settings.php:514 +#: includes/admin/class-wc-admin-settings.php:578 msgid "Choose a country…" msgstr "" -#: includes/admin/class-wc-admin-settings.php:538 +#: includes/admin/class-wc-admin-settings.php:603 msgid "Choose countries…" msgstr "" -#: includes/admin/class-wc-admin-settings.php:544 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:460 +#: includes/admin/class-wc-admin-settings.php:611 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:474 msgid "Select all" msgstr "" -#: includes/admin/class-wc-admin-settings.php:544 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:460 +#: includes/admin/class-wc-admin-settings.php:611 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:474 msgid "Select none" msgstr "" -#: includes/admin/class-wc-admin-status.php:52 +#: includes/admin/class-wc-admin-status.php:48 msgid "Product Transients Cleared" msgstr "" -#: includes/admin/class-wc-admin-status.php:93 +#: includes/admin/class-wc-admin-status.php:89 msgid "%d Transients Rows Cleared" msgstr "" -#: includes/admin/class-wc-admin-status.php:102 +#: includes/admin/class-wc-admin-status.php:98 msgid "Roles successfully reset" msgstr "" -#: includes/admin/class-wc-admin-status.php:114 +#: includes/admin/class-wc-admin-status.php:110 msgid "Terms successfully recounted" msgstr "" -#: includes/admin/class-wc-admin-status.php:125 +#: includes/admin/class-wc-admin-status.php:121 msgid "Sessions successfully cleared" msgstr "" -#: includes/admin/class-wc-admin-status.php:129 +#: includes/admin/class-wc-admin-status.php:125 msgid "All missing WooCommerce pages was installed successfully." msgstr "" -#: includes/admin/class-wc-admin-status.php:138 -msgid "There was an error calling %s::%s" +#: includes/admin/class-wc-admin-status.php:133 +msgid "Tax rates successfully deleted" msgstr "" #: includes/admin/class-wc-admin-status.php:141 +msgid "Translation update message hidden successfully!" +msgstr "" + +#: includes/admin/class-wc-admin-status.php:150 +msgid "There was an error calling %s::%s" +msgstr "" + +#: includes/admin/class-wc-admin-status.php:153 msgid "There was an error calling %s" msgstr "" -#: includes/admin/class-wc-admin-status.php:151 -msgid "Your changes have been saved." +#: includes/admin/class-wc-admin-status.php:165 +#: includes/admin/class-wc-admin-status.php:168 +#: includes/admin/class-wc-admin-status.php:171 +msgid "Failed to install/update the translation:" msgstr "" #: includes/admin/class-wc-admin-status.php:165 -msgid "WC Transients" +msgid "Seems you don't have permission to do this!" msgstr "" -#: includes/admin/class-wc-admin-status.php:166 -msgid "Clear transients" -msgstr "" - -#: includes/admin/class-wc-admin-status.php:167 -msgid "This tool will clear the product/shop transients cache." -msgstr "" - -#: includes/admin/class-wc-admin-status.php:170 -msgid "Expired Transients" +#: includes/admin/class-wc-admin-status.php:168 +msgid "" +"An authentication error occurred while updating the translation. Please try " +"again or configure your %sUpgrade Constants%s." msgstr "" #: includes/admin/class-wc-admin-status.php:171 -msgid "Clear expired transients" +msgid "Sorry but there is no translation available for your language =/" msgstr "" -#: includes/admin/class-wc-admin-status.php:172 -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "" - -#: includes/admin/class-wc-admin-status.php:175 -msgid "Term counts" -msgstr "" - -#: includes/admin/class-wc-admin-status.php:176 -msgid "Recount terms" -msgstr "" - -#: includes/admin/class-wc-admin-status.php:177 -msgid "This tool will recount product terms - useful when changing your settings in a way which hides products from the catalog." -msgstr "" - -#: includes/admin/class-wc-admin-status.php:180 -msgid "Capabilities" -msgstr "" - -#: includes/admin/class-wc-admin-status.php:181 -msgid "Reset capabilities" -msgstr "" - -#: includes/admin/class-wc-admin-status.php:182 -msgid "This tool will reset the admin, customer and shop_manager roles to default. Use this if your users cannot access all of the WooCommerce admin pages." +#: includes/admin/class-wc-admin-status.php:178 +msgid "Translations installed/updated successfully!" msgstr "" #: includes/admin/class-wc-admin-status.php:185 +msgid "Your changes have been saved." +msgstr "" + +#: includes/admin/class-wc-admin-status.php:199 +msgid "WC Transients" +msgstr "" + +#: includes/admin/class-wc-admin-status.php:200 +msgid "Clear transients" +msgstr "" + +#: includes/admin/class-wc-admin-status.php:201 +msgid "This tool will clear the product/shop transients cache." +msgstr "" + +#: includes/admin/class-wc-admin-status.php:204 +msgid "Expired Transients" +msgstr "" + +#: includes/admin/class-wc-admin-status.php:205 +msgid "Clear expired transients" +msgstr "" + +#: includes/admin/class-wc-admin-status.php:206 +msgid "This tool will clear ALL expired transients from WordPress." +msgstr "" + +#: includes/admin/class-wc-admin-status.php:209 +msgid "Term counts" +msgstr "" + +#: includes/admin/class-wc-admin-status.php:210 +msgid "Recount terms" +msgstr "" + +#: includes/admin/class-wc-admin-status.php:211 +msgid "" +"This tool will recount product terms - useful when changing your settings " +"in a way which hides products from the catalog." +msgstr "" + +#: includes/admin/class-wc-admin-status.php:214 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-wc-admin-status.php:215 +msgid "Reset capabilities" +msgstr "" + +#: includes/admin/class-wc-admin-status.php:216 +msgid "" +"This tool will reset the admin, customer and shop_manager roles to default. " +"Use this if your users cannot access all of the WooCommerce admin pages." +msgstr "" + +#: includes/admin/class-wc-admin-status.php:219 msgid "Customer Sessions" msgstr "" -#: includes/admin/class-wc-admin-status.php:186 +#: includes/admin/class-wc-admin-status.php:220 msgid "Clear all sessions" msgstr "" -#: includes/admin/class-wc-admin-status.php:187 -msgid "Warning This tool will delete all customer session data from the database, including any current live carts." +#: includes/admin/class-wc-admin-status.php:221 +msgid "" +"Warning: This tool will delete all customer " +"session data from the database, including any current live carts." msgstr "" -#: includes/admin/class-wc-admin-status.php:190 -#: includes/admin/views/html-notice-install.php:6 +#: includes/admin/class-wc-admin-status.php:224 +#: includes/admin/views/html-notice-install.php:14 msgid "Install WooCommerce Pages" msgstr "" -#: includes/admin/class-wc-admin-status.php:191 +#: includes/admin/class-wc-admin-status.php:225 msgid "Install pages" msgstr "" -#: includes/admin/class-wc-admin-status.php:192 -msgid "Note This tool will install all the missing WooCommerce pages. Pages already defined and set up will not be replaced." +#: includes/admin/class-wc-admin-status.php:226 +msgid "" +"Note: This tool will install all the missing " +"WooCommerce pages. Pages already defined and set up will not be replaced." +msgstr "" + +#: includes/admin/class-wc-admin-status.php:229 +msgid "Delete all WooCommerce tax rates" +msgstr "" + +#: includes/admin/class-wc-admin-status.php:230 +msgid "Delete ALL tax rates" +msgstr "" + +#: includes/admin/class-wc-admin-status.php:231 +msgid "" +"Note: This option will delete ALL of your " +"tax rates, use with caution." +msgstr "" + +#: includes/admin/class-wc-admin-status.php:237 +msgid "Translation Upgrade" +msgstr "" + +#: includes/admin/class-wc-admin-status.php:238 +msgid "Force Translation Upgrade" +msgstr "" + +#: includes/admin/class-wc-admin-status.php:239 +msgid "" +"Note: This option will force the translation " +"upgrade for your language if a translation is available." msgstr "" #: includes/admin/class-wc-admin-taxonomies.php:89 @@ -1039,9 +1686,9 @@ msgstr "" #: includes/admin/class-wc-admin-taxonomies.php:92 #: includes/admin/class-wc-admin-taxonomies.php:181 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:97 -#: includes/admin/settings/class-wc-settings-products.php:25 -#: includes/admin/views/html-admin-page-addons.php:15 +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:100 +#: includes/admin/settings/class-wc-settings-products.php:26 +#: includes/admin/views/html-admin-page-addons.php:27 msgid "Products" msgstr "" @@ -1057,6 +1704,7 @@ msgstr "" #: includes/admin/class-wc-admin-taxonomies.php:98 #: includes/admin/class-wc-admin-taxonomies.php:188 +#: includes/admin/class-wc-admin-taxonomies.php:328 msgid "Thumbnail" msgstr "" @@ -1076,290 +1724,221 @@ msgid "Use image" msgstr "" #: includes/admin/class-wc-admin-taxonomies.php:273 -msgid "Product categories for your store can be managed here. To change the order of categories on the front-end you can drag and drop to sort them. To see more categories listed click the \"screen options\" link at the top of the page." +msgid "" +"Product categories for your store can be managed here. To change the order " +"of categories on the front-end you can drag and drop to sort them. To see " +"more categories listed click the \"screen options\" link at the top of the " +"page." msgstr "" #: includes/admin/class-wc-admin-taxonomies.php:283 -msgid "Shipping classes can be used to group products of similar type. These groups can then be used by certain shipping methods to provide different rates to different products." +msgid "" +"Shipping classes can be used to group products of similar type. These " +"groups can then be used by certain shipping methods to provide different " +"rates to different products." msgstr "" -#: includes/admin/class-wc-admin-taxonomies.php:296 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:191 -msgid "Image" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:46 +#: includes/admin/class-wc-admin-welcome.php:50 msgid "Welcome to WooCommerce" msgstr "" -#: includes/admin/class-wc-admin-welcome.php:191 +#: includes/admin/class-wc-admin-welcome.php:221 msgid "Welcome to WooCommerce %s" msgstr "" -#: includes/admin/class-wc-admin-welcome.php:196 +#: includes/admin/class-wc-admin-welcome.php:226 msgid "Thanks, all done!" msgstr "" -#: includes/admin/class-wc-admin-welcome.php:198 +#: includes/admin/class-wc-admin-welcome.php:228 msgid "Thank you for updating to the latest version!" msgstr "" -#: includes/admin/class-wc-admin-welcome.php:200 +#: includes/admin/class-wc-admin-welcome.php:230 msgid "Thanks for installing!" msgstr "" -#: includes/admin/class-wc-admin-welcome.php:202 -msgid "%s WooCommerce %s is more powerful, stable, and secure than ever before. We hope you enjoy it." +#: includes/admin/class-wc-admin-welcome.php:232 +msgid "" +"%s WooCommerce %s is more powerful, stable and secure than ever before. We " +"hope you enjoy using it." msgstr "" -#: includes/admin/class-wc-admin-welcome.php:206 +#: includes/admin/class-wc-admin-welcome.php:236 msgid "Version %s" msgstr "" -#: includes/admin/class-wc-admin-welcome.php:210 +#: includes/admin/class-wc-admin-welcome.php:240 msgid "Docs" msgstr "" -#: includes/admin/class-wc-admin-welcome.php:217 +#: includes/admin/class-wc-admin-welcome.php:247 msgid "What's New" msgstr "" -#: includes/admin/class-wc-admin-welcome.php:219 +#: includes/admin/class-wc-admin-welcome.php:249 msgid "Credits" msgstr "" -#: includes/admin/class-wc-admin-welcome.php:240 -msgid "A new RESTful API developers will ❤" +#: includes/admin/class-wc-admin-welcome.php:251 +msgid "Translators" msgstr "" -#: includes/admin/class-wc-admin-welcome.php:243 -msgid "Access your data from 3rd party applications" +#: includes/admin/class-wc-admin-welcome.php:271 +msgid "Perform partial refunds on orders" msgstr "" -#: includes/admin/class-wc-admin-welcome.php:244 -msgid "Built on top of the WooCommerce API, and targetted directly at developers, the new REST API allows you to get data for Orders, Coupons, Customers, Products and Reports in both XML and JSON formats." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:248 -msgid "Authentication to keep data secure" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:249 -msgid "Authentication for the REST API is performed using HTTP Basic Auth if you have SSL enabled, or signed according to the OAuth 1.0a specification if you don't have SSL. Data is only available to authenticated users." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:254 -msgid "UI and reporting improvements" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:257 -msgid "WordPress 3.8 admin UI compatibility" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:258 -msgid "WooCommerce 2.1 has had its UI restyled to work with the new admin design in WordPress 3.8. All bitmap icons have been replaced with a custom, lightweight icon font for razor sharp clarity on retina devices as well as improved performance." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:261 -msgid "Simplified order UI" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:262 -msgid "The orders panel has seen significant improvement to both the totals panel, and line item display making editing new and existing orders a breeze." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:263 -msgid "Item meta has also been optimised and can now be viewed as HTML rather than stuck in a text input." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:266 -msgid "Improved Reporting" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:267 -msgid "Reports have been redesigned with new filtering capabilities, a new customer report showing orders/spending, and the ability to export CSVs." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:268 -msgid "The dashboard also has a new widget showing you an overview of current orders complete with sparklines for quick at-a-glance stats." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:273 -msgid "Separated integrations" +#: includes/admin/class-wc-admin-welcome.php:272 +msgid "" +"Store owners can now do partial refunds on orders; define the refund " +"amount, qty, and optionally restore inventory. If the gateway supports it, " +"the payment can be automatically refunded too!" msgstr "" #: includes/admin/class-wc-admin-welcome.php:276 -msgid "New separate plugins" +msgid "Updated order totals UI" msgstr "" #: includes/admin/class-wc-admin-welcome.php:277 -msgid "To make core more lean, some integrations have been removed and turned into dedicated plugins which you can install as and when you need them." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:280 -msgid "Google Analytics" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:281 -msgid "Add Google Analytics eCommerce tracking to your WooCommerce store." +msgid "" +"To support the partial refund functionality, the order items and totals " +"panels have been combined. As a result we have a simpler, more user " +"friendly order page." msgstr "" #: includes/admin/class-wc-admin-welcome.php:282 -#: includes/admin/class-wc-admin-welcome.php:287 -#: includes/admin/class-wc-admin-welcome.php:292 -#: includes/admin/class-wc-admin-welcome.php:297 -#: includes/admin/class-wc-admin-welcome.php:302 -msgid "Download" +msgid "WooCommerce REST API version 2" msgstr "" #: includes/admin/class-wc-admin-welcome.php:285 -msgid "Piwik" +msgid "Introducing PUT/POST/DELETE methods" msgstr "" #: includes/admin/class-wc-admin-welcome.php:286 -msgid "Integrate WooCommerce with Piwik and the WP-Piwik plugin." +msgid "" +"Update, delete and create orders, customers, products and coupons via the " +"API." +msgstr "" + +#: includes/admin/class-wc-admin-welcome.php:289 +msgid "Other enhancements" msgstr "" #: includes/admin/class-wc-admin-welcome.php:290 -msgid "ShareThis" +msgid "" +"Resources can now be ordered by any field you define for greater control " +"over returned results. v2 also introduces an endpoint for getting product " +"categories from your store." msgstr "" -#: includes/admin/class-wc-admin-welcome.php:291 -msgid "Add social network sharing buttons to products using ShareThis." +#: includes/admin/class-wc-admin-welcome.php:293 +msgid "Webhooks" msgstr "" -#: includes/admin/class-wc-admin-welcome.php:295 -msgid "Sharedaddy" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:296 -msgid "Add social network sharing buttons to products using Sharedaddy." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:300 -msgid "ShareYourCart" +#: includes/admin/class-wc-admin-welcome.php:294 +msgid "" +"Trigger webhooks during events such as when an order is created. Opens up " +"all kinds of external integration opportunities." msgstr "" #: includes/admin/class-wc-admin-welcome.php:301 -msgid "Let users share their carts for a discount using the ShareYourCart service." +msgid "Language pack downloader" msgstr "" -#: includes/admin/class-wc-admin-welcome.php:307 -msgid "Under the Hood" +#: includes/admin/class-wc-admin-welcome.php:302 +msgid "" +"Due to the size of PO and MO files, we have removed them from core and " +"included our \"Language Pack Downloader\". International users can download " +"and update their translation files easily from the dashboard." msgstr "" -#: includes/admin/class-wc-admin-welcome.php:311 -msgid "PayPal PDT support" +#: includes/admin/class-wc-admin-welcome.php:305 +msgid "Variation stock management" msgstr "" -#: includes/admin/class-wc-admin-welcome.php:312 -msgid "PayPal Data Transfer (PDT) is an alterntative for PayPal IPN which sends back the status of an order when a customer returns from PayPal." +#: includes/admin/class-wc-admin-welcome.php:306 +msgid "" +"You can now set stock management options (such as backorder support) at " +"variation level giving much greater control over stock." msgstr "" -#: includes/admin/class-wc-admin-welcome.php:316 -msgid "Stylesheet separation" +#: includes/admin/class-wc-admin-welcome.php:309 +msgid "Improved Payment Gateways" +msgstr "" + +#: includes/admin/class-wc-admin-welcome.php:310 +msgid "" +"The Payment Gateway API has been enhanced to support refunds and storing " +"transaction IDs." msgstr "" #: includes/admin/class-wc-admin-welcome.php:317 -msgid "Frontend styles have been split into separate appearance/layout/smallscreen stylesheets to help with selective customisation." +msgid "Join us at the inaugural WooCommerce Conference in San Francisco" msgstr "" -#: includes/admin/class-wc-admin-welcome.php:321 -msgid "New endpoints" +#: includes/admin/class-wc-admin-welcome.php:318 +msgid "" +"On the %s3rd and 4th%s of November 2014 WooCommerce creators WooThemes are " +"hosting an event dedicated to store owners & WordPress developers " +"wanting to learn the art of eCommerce using WooCommerce." msgstr "" -#: includes/admin/class-wc-admin-welcome.php:322 -msgid "Certain pages such as \"Pay\", \"Order Recieved\" and some account pages are now endpoints rather than pages to make checkout more reliable." +#: includes/admin/class-wc-admin-welcome.php:319 +msgid "Find out more & buy tickets" msgstr "" -#: includes/admin/class-wc-admin-welcome.php:328 -msgid "Default credit card form for gateways" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:329 -msgid "We've added a standardized, default credit card form for gateways to use if they support default_credit_card_form." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:333 -msgid "Coupon limits per customer" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:334 -msgid "Coupon usage limits can now be set per user (using email + ID) rather than global." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:338 -msgid "Streamlined new-account process" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:339 -msgid "During checkout, username and passwords are optional and can be automatically generated by WooCommerce." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:346 -msgid "Additional price display options" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:347 -msgid "Define whether prices should be shown incl. or excl. of tax on the frontend, and add an optional suffix." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:351 -msgid "Past order linking" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:352 -msgid "Admins now have the ability to link past orders to a customer (before they registered) by email address." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:356 -msgid "Review improvements" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:357 -msgid "We've added a new option to restrict reviews to logged in purchasers, and made ratings editable from the backend." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:364 +#: includes/admin/class-wc-admin-welcome.php:325 msgid "Go to WooCommerce Settings" msgstr "" -#: includes/admin/class-wc-admin-welcome.php:382 -msgid "WooCommerce is developed and maintained by a worldwide team of passionate individuals and backed by an awesome developer community. Want to see your name? Contribute to WooCommerce." +#: includes/admin/class-wc-admin-welcome.php:340 +msgid "" +"WooCommerce is developed and maintained by a worldwide team of passionate " +"individuals and backed by an awesome developer community. Want to see your " +"name? Contribute to WooCommerce." msgstr "" -#: includes/admin/class-wc-admin-welcome.php:408 +#: includes/admin/class-wc-admin-welcome.php:356 +msgid "" +"WooCommerce has been kindly translated into several other languages thanks " +"to our translation team. Want to see your name? Translate " +"WooCommerce." +msgstr "" + +#: includes/admin/class-wc-admin-welcome.php:405 msgid "View %s" msgstr "" -#: includes/admin/class-wc-admin.php:114 +#: includes/admin/class-wc-admin.php:118 msgid "HTML Email Template" msgstr "" -#: includes/admin/importers/class-wc-tax-rate-importer.php:103 -#: includes/admin/importers/class-wc-tax-rate-importer.php:190 -#: includes/admin/importers/class-wc-tax-rate-importer.php:230 -#: includes/admin/importers/class-wc-tax-rate-importer.php:245 +#: includes/admin/importers/class-wc-tax-rate-importer.php:102 +#: includes/admin/importers/class-wc-tax-rate-importer.php:193 +#: includes/admin/importers/class-wc-tax-rate-importer.php:233 +#: includes/admin/importers/class-wc-tax-rate-importer.php:248 msgid "Sorry, there has been an error." msgstr "" -#: includes/admin/importers/class-wc-tax-rate-importer.php:104 +#: includes/admin/importers/class-wc-tax-rate-importer.php:103 msgid "The file does not exist, please try again." msgstr "" -#: includes/admin/importers/class-wc-tax-rate-importer.php:191 +#: includes/admin/importers/class-wc-tax-rate-importer.php:194 msgid "The CSV is invalid." msgstr "" -#: includes/admin/importers/class-wc-tax-rate-importer.php:202 -msgid "Import complete - imported %s tax rates and skipped %s." +#: includes/admin/importers/class-wc-tax-rate-importer.php:205 +msgid "" +"Import complete - imported %s tax rates and skipped " +"%s." msgstr "" -#: includes/admin/importers/class-wc-tax-rate-importer.php:212 +#: includes/admin/importers/class-wc-tax-rate-importer.php:215 msgid "All done!" msgstr "" -#: includes/admin/importers/class-wc-tax-rate-importer.php:212 +#: includes/admin/importers/class-wc-tax-rate-importer.php:215 msgid "View Tax Rates" msgstr "" @@ -1367,2061 +1946,1725 @@ msgstr "" msgid "Import Tax Rates" msgstr "" -#: includes/admin/importers/class-wc-tax-rate-importer.php:285 -msgid "Hi there! Upload a CSV file containing tax rates to import the contents into your shop. Choose a .csv file to upload, then click \"Upload file and import\"." +#: includes/admin/importers/class-wc-tax-rate-importer.php:279 +msgid "" +"Hi there! Upload a CSV file containing tax rates to import the contents " +"into your shop. Choose a .csv file to upload, then click \"Upload file and " +"import\"." msgstr "" -#: includes/admin/importers/class-wc-tax-rate-importer.php:287 -msgid "Tax rates need to be defined with columns in a specific order (10 columns). Click here to download a sample." +#: includes/admin/importers/class-wc-tax-rate-importer.php:281 +msgid "" +"Tax rates need to be defined with columns in a specific order (10 columns). " +"Click here to download a sample." msgstr "" -#: includes/admin/importers/class-wc-tax-rate-importer.php:295 -msgid "Before you can upload your import file, you will need to fix the following error:" +#: includes/admin/importers/class-wc-tax-rate-importer.php:289 +msgid "" +"Before you can upload your import file, you will need to fix the following " +"error:" msgstr "" -#: includes/admin/importers/class-wc-tax-rate-importer.php:304 +#: includes/admin/importers/class-wc-tax-rate-importer.php:298 msgid "Choose a file from your computer:" msgstr "" -#: includes/admin/importers/class-wc-tax-rate-importer.php:310 +#: includes/admin/importers/class-wc-tax-rate-importer.php:304 msgid "Maximum size: %s" msgstr "" -#: includes/admin/importers/class-wc-tax-rate-importer.php:315 +#: includes/admin/importers/class-wc-tax-rate-importer.php:309 msgid "OR enter path to file:" msgstr "" -#: includes/admin/importers/class-wc-tax-rate-importer.php:322 +#: includes/admin/importers/class-wc-tax-rate-importer.php:316 msgid "Delimiter" msgstr "" -#: includes/admin/importers/class-wc-tax-rate-importer.php:328 +#: includes/admin/importers/class-wc-tax-rate-importer.php:322 msgid "Upload file and import" msgstr "" -#: includes/admin/post-types/class-wc-admin-cpt-product.php:83 -msgid "Product name" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:104 -msgid "Catalog/search" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:105 -#: includes/admin/views/html-bulk-edit-product.php:158 -#: includes/admin/views/html-quick-edit-product.php:115 -msgid "Catalog" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:106 -#: includes/admin/views/html-bulk-edit-product.php:159 -#: includes/admin/views/html-quick-edit-product.php:116 -msgid "Search" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:107 -#: includes/admin/views/html-bulk-edit-product.php:160 -#: includes/admin/views/html-quick-edit-product.php:117 -msgid "Hidden" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:111 -msgid "Catalog visibility:" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:126 -msgid "Define the loops this product should be visible in. The product will still be accessible directly." -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:132 -msgid "Enable this option to feature this product." -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:134 -msgid "Featured Product" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:137 -msgid "OK" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:138 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:169 -msgid "Cancel" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:196 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:135 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:53 -#: includes/admin/views/html-quick-edit-product.php:11 -msgid "SKU" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:201 -#: includes/admin/views/html-bulk-edit-product.php:10 -#: includes/admin/views/html-quick-edit-product.php:22 -msgid "Price" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:203 -#: includes/admin/reports/class-wc-report-sales-by-category.php:138 -msgid "Categories" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:204 -msgid "Tags" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:207 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:93 -#: includes/admin/reports/class-wc-report-coupon-usage.php:313 -#: includes/admin/reports/class-wc-report-customers.php:199 -#: includes/admin/reports/class-wc-report-sales-by-category.php:210 -#: includes/admin/reports/class-wc-report-sales-by-date.php:158 -#: includes/admin/reports/class-wc-report-sales-by-product.php:323 -msgid "Date" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:250 -msgid "Edit this item" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:251 -msgid "Edit this item inline" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:251 -msgid "Quick Edit" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:255 -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:111 -msgid "Restore this item from the Trash" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:255 -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:111 -msgid "Restore" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:257 -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:113 -msgid "Move this item to the Trash" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:257 -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:113 -msgid "Trash" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:259 -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:115 -msgid "Delete this item permanently" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:259 -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:115 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:64 -msgid "Delete Permanently" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:264 -msgid "Preview “%s”" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:264 -msgid "Preview" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:266 -msgid "View “%s”" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:266 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:296 -#: includes/admin/reports/class-wc-report-stock.php:114 -msgid "View" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:316 -msgid "Grouped" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:318 -msgid "External/Affiliate" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:322 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:513 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:51 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:214 -msgid "Virtual" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:324 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:506 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:58 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:212 -msgid "Downloadable" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:326 -msgid "Simple" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:330 -msgid "Variable" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:353 -msgid "Toggle featured" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:355 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:133 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:198 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:200 -#: includes/admin/views/html-admin-page-status-report.php:38 -#: includes/admin/views/html-admin-page-status-report.php:66 -#: includes/admin/views/html-admin-page-status-report.php:91 -#: includes/admin/views/html-admin-page-status-report.php:276 -#: includes/admin/views/html-bulk-edit-product.php:176 -#: includes/admin/views/html-bulk-edit-product.php:213 -msgid "Yes" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:357 -#: includes/admin/views/html-admin-page-status-report.php:38 -#: includes/admin/views/html-admin-page-status-report.php:66 -#: includes/admin/views/html-admin-page-status-report.php:91 -#: includes/admin/views/html-admin-page-status-report.php:276 -#: includes/admin/views/html-bulk-edit-product.php:177 -#: includes/admin/views/html-bulk-edit-product.php:214 -msgid "No" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:364 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:301 -#: includes/admin/reports/class-wc-report-stock.php:91 -#: includes/admin/views/html-bulk-edit-product.php:194 -#: includes/admin/views/html-quick-edit-product.php:137 -msgid "In stock" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:448 -msgid "Sort Products" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:468 -msgid "Show all product types" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:480 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:37 -msgid "Grouped product" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:483 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:38 -msgid "External/Affiliate product" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:486 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:39 -msgid "Variable product" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:489 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:36 -msgid "Simple product" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:53 -msgid "Coupon code" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:66 -msgid "Description (optional)" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:77 -msgid "Code" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:78 -msgid "Coupon type" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:79 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:66 -#: includes/admin/reports/class-wc-report-sales-by-date.php:320 -msgid "Coupon amount" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:80 -msgid "Description" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:81 -msgid "Product IDs" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:82 -msgid "Usage / Limit" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:83 -msgid "Expiry date" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:102 -msgid "Edit coupon" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:160 -msgid "%s / %s" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:162 -msgid "%s / ∞" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:208 -msgid "Show all types" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:86 -#: includes/admin/settings/class-wc-settings-checkout.php:229 -#: includes/admin/settings/class-wc-settings-shipping.php:205 -msgid "Status" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:87 -msgid "Order" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:88 -msgid "Purchased" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:89 -msgid "Ship to" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:91 -msgid "Customer Message" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:92 -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:101 -msgid "Order Notes" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:94 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:43 -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:62 -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:171 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:122 -msgid "Total" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:95 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:34 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:81 -#: includes/admin/reports/class-wc-report-customer-list.php:244 -#: includes/admin/reports/class-wc-report-stock.php:141 -msgid "Actions" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:119 -msgid "Unpublished" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:121 -msgid "Y/m/d g:i:s A" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:124 -msgid "Y/m/d" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:145 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:183 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:211 -msgid "Via" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:149 -msgid "%d item" -msgid_plural "%d items" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:200 -msgid "plus %d other note" -msgid_plural "plus %d other notes" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:218 -msgid "Billing:" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:221 -msgid "Tel:" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:240 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:261 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:169 -msgid "Guest" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:264 -msgid "%s by %s" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:283 -msgid "Processing" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:290 -msgid "Complete" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:382 -msgid "Show all statuses" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:401 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:426 -msgid "Show all customers" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:654 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:655 -msgid "Mark processing" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:657 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:658 -msgid "Mark on-hold" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:660 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:661 -msgid "Mark completed" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:702 -msgid "Order status changed by bulk edit:" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:724 -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/class-wc-admin-cpt.php:42 -msgid "Insert into %s" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt.php:43 -msgid "Uploaded to this %s" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:93 -msgid "Product Short Description" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:94 -#: includes/admin/settings/class-wc-settings-products.php:283 -#: includes/admin/views/html-bulk-edit-product.php:4 -#: includes/admin/views/html-quick-edit-product.php:4 -msgid "Product Data" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:95 -msgid "Product Gallery" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:98 -msgid "Order Data" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:99 -msgid "Order Items" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:100 -msgid "Order Totals" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:102 -msgid "Downloadable Product Permissions" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:102 -msgid "Note: Permissions for order items will automatically be granted when the order status changes to processing/completed." -msgstr "" - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:103 -msgid "Order Actions" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:106 -msgid "Coupon Data" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:111 -msgid "Rating" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:144 -msgid "Reviews" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:37 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:84 -#: includes/admin/settings/class-wc-settings-general.php:25 +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:37 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:91 +#: includes/admin/settings/class-wc-settings-general.php:28 msgid "General" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:42 +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:42 msgid "Usage Restriction" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:47 +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:47 msgid "Usage Limits" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:63 +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:63 msgid "Discount type" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:66 +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:66 msgid "Value of the coupon." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:69 +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:69 msgid "Allow free shipping" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:69 -msgid "Check this box if the coupon grants free shipping. The free shipping method must be enabled with the \"must use coupon\" setting." +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:69 +msgid "" +"Check this box if the coupon grants free shipping. The free " +"shipping method must be enabled with the \"must use coupon\" setting." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:72 +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:72 msgid "Apply before tax" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:72 +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:72 msgid "Check this box if the coupon should be applied before calculating cart tax." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:75 +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:75 msgid "Coupon expiry date" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:75 -msgctxt "placeholder" -msgid "YYYY-MM-DD" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:85 +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:85 msgid "Minimum spend" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:85 +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:85 msgid "No minimum" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:85 +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:85 msgid "This field allows you to set the minimum subtotal needed to use the coupon." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:88 +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:88 +msgid "Maximum spend" +msgstr "" + +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:88 +msgid "No maximum" +msgstr "" + +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:88 +msgid "" +"This field allows you to set the maximum subtotal allowed when using the " +"coupon." +msgstr "" + +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:91 msgid "Individual use only" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:88 -msgid "Check this box if the coupon cannot be used in conjunction with other coupons." +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:91 +msgid "" +"Check this box if the coupon cannot be used in conjunction with other " +"coupons." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:91 +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:94 msgid "Exclude sale items" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:91 -msgid "Check this box if the coupon should not apply to items on sale. Per-item coupons will only work if the item is not on sale. Per-cart coupons will only work if there are no sale items in the cart." +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:94 +msgid "" +"Check this box if the coupon should not apply to items on sale. Per-item " +"coupons will only work if the item is not on sale. Per-cart coupons will " +"only work if there are no sale items in the cart." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:98 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:95 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:585 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:602 -#: includes/admin/reports/class-wc-report-sales-by-product.php:177 +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:101 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:608 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:628 +#: includes/admin/meta-boxes/views/html-order-items.php:290 +#: includes/admin/reports/class-wc-report-sales-by-product.php:181 msgid "Search for a product…" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:111 -msgid "Products which need to be in the cart to use this coupon or, for \"Product Discounts\", which products are discounted." +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:116 +msgid "" +"Products which need to be in the cart to use this coupon or, for \"Product " +"Discounts\", which products are discounted." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:116 +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:121 msgid "Exclude products" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:117 +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:122 msgid "Search for a product…" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:130 -msgid "Products which must not be in the cart to use this coupon or, for \"Product Discounts\", which products are not discounted." +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:138 +msgid "" +"Products which must not be in the cart to use this coupon or, for \"Product " +"Discounts\", which products are not discounted." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:137 +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:145 msgid "Product categories" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:138 +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:146 msgid "Any category" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:146 -msgid "A product must be in this category for the coupon to remain valid or, for \"Product Discounts\", products in these categories will be discounted." +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:156 +msgid "" +"A product must be in this category for the coupon to remain valid or, for " +"\"Product Discounts\", products in these categories will be discounted." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:151 +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:161 msgid "Exclude categories" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:152 +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:162 msgid "No categories" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:160 -msgid "Product must not be in this category for the coupon to remain valid or, for \"Product Discounts\", products in these categories will not be discounted." +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:172 +msgid "" +"Product must not be in this category for the coupon to remain valid or, for " +"\"Product Discounts\", products in these categories will not be discounted." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:166 +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:178 msgid "Email restrictions" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:166 +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:178 msgid "No restrictions" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:166 -msgid "List of emails to check against the customer's billing email when an order is placed." +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:178 +msgid "" +"List of emails to check against the customer's billing email when an order " +"is placed. Separate email addresses with commas." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:178 +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:192 msgid "Usage limit per coupon" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:178 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:190 -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:178 +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:192 msgid "How many times this coupon can be used before it is void." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:184 +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:198 msgid "Limit usage to X items" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:184 -msgctxt "placeholder" -msgid "Apply to all qualifying items in cart" +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:198 +msgid "" +"The maximum number of individual items this coupon can apply to when using " +"product discounts. Leave blank to apply to all qualifying items in cart." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:184 -msgid "The maximum number of individual items this coupon can apply to when using product discounts. Leave blank to apply to all qualifying items in cart." -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:190 +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:204 msgid "Usage limit per user" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:190 -msgid "How many times this coupon can be used by an invidual user. Uses billing email for guests, and user ID for logged in users." +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:204 +msgid "" +"How many times this coupon can be used by an invidual user. Uses billing " +"email for guests, and user ID for logged in users." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:224 -msgid "Coupon code already exists - customers will use the latest coupon with this code." +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:241 +msgid "" +"Coupon code already exists - customers will use the latest coupon with this " +"code." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:35 +#: includes/admin/meta-boxes/class-wc-meta-box-order-actions.php:36 msgid "Resend order emails" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:51 -msgid "Generate Download Permissions" +#: includes/admin/meta-boxes/class-wc-meta-box-order-actions.php:52 +msgid "Generate download permissions" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:57 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:91 +#: includes/admin/meta-boxes/class-wc-meta-box-order-actions.php:59 +#: includes/admin/meta-boxes/views/html-order-items.php:212 msgid "Apply" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:66 +#: includes/admin/meta-boxes/class-wc-meta-box-order-actions.php:70 msgid "Move to Trash" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:71 +#: includes/admin/meta-boxes/class-wc-meta-box-order-actions.php:76 msgid "Save Order" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:71 +#: includes/admin/meta-boxes/class-wc-meta-box-order-actions.php:76 msgid "Save/update the order" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:29 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:76 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:43 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:90 msgid "First Name" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:33 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:80 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:47 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:94 msgid "Last Name" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:60 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:107 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:74 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:121 msgid "Select a country…" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:70 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:84 msgid "Phone" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:139 -msgid "Order Details" +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:160 +msgid "Order %s details" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:142 -msgid "Order number" +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:164 +msgid "Payment via %s" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:145 -msgid "Customer IP:" +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:177 +msgid "Customer IP" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:150 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:183 msgid "General Details" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:152 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:185 msgid "Order date:" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:153 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:186 msgid "h" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:153 -#: includes/admin/settings/class-wc-settings-products.php:311 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:186 +#: includes/admin/settings/class-wc-settings-products.php:313 msgid "m" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:156 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:189 msgid "Order status:" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:167 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:200 msgid "Customer:" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:182 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:215 msgid "Billing Details" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:188 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:190 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:267 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:269 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:221 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:223 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:300 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:302 msgid "Address" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:190 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:223 msgid "No billing address set." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:208 -msgid "Payment Method" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:213 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:241 msgid "Load billing address" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:230 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:260 msgid "Payment Method:" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:232 -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:33 -#: includes/admin/post-types/meta-boxes/views/html-order-shipping.php:12 -#: includes/admin/post-types/meta-boxes/views/html-order-tax.php:8 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:262 +#: includes/admin/meta-boxes/views/html-order-shipping.php:20 +#: includes/admin/views/html-admin-page-status-report.php:219 msgid "N/A" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:245 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:247 -#: includes/admin/post-types/meta-boxes/views/html-order-shipping.php:30 -#: includes/admin/post-types/meta-boxes/views/html-order-shipping.php:32 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:276 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:278 +#: includes/admin/meta-boxes/views/html-order-shipping.php:36 +#: includes/admin/meta-boxes/views/html-order-shipping.php:38 msgid "Other" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:261 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:285 +msgid "Transaction ID" +msgstr "" + +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:294 msgid "Shipping Details" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:269 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:302 msgid "No shipping address set." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:282 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:320 msgid "Customer Note" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:287 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:326 msgid "Load shipping address" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:287 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:326 msgid "Copy from billing" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:304 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:347 msgid "Customer Note:" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:305 +#: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:348 msgid "Customer's notes about the order" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-downloads.php:51 +#: includes/admin/meta-boxes/class-wc-meta-box-order-downloads.php:52 msgid "File %d" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-downloads.php:64 +#: includes/admin/meta-boxes/class-wc-meta-box-order-downloads.php:65 msgid "Search for a downloadable product…" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-downloads.php:65 +#: includes/admin/meta-boxes/class-wc-meta-box-order-downloads.php:66 msgid "Grant Access" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:33 -msgid "Item" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:38 -msgid "Tax Class" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:41 -msgid "Qty" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:46 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:111 -#: includes/admin/settings/class-wc-settings-tax.php:25 -#: includes/admin/settings/class-wc-settings-tax.php:548 -#: includes/admin/settings/class-wc-settings-tax.php:641 -msgid "Tax" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:83 -msgid "Delete Lines" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:85 -msgid "Stock Actions" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:86 -msgid "Reduce Line Stock" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:87 -msgid "Increase Line Stock" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:97 -msgid "Add item(s)" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:98 -msgid "Add fee" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:44 +#: includes/admin/meta-boxes/class-wc-meta-box-order-notes.php:50 msgid "added %s ago" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:45 +#: includes/admin/meta-boxes/class-wc-meta-box-order-notes.php:51 msgid "by %s" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:46 +#: includes/admin/meta-boxes/class-wc-meta-box-order-notes.php:52 msgid "Delete note" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:52 +#: includes/admin/meta-boxes/class-wc-meta-box-order-notes.php:59 msgid "There are no notes for this order yet." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:58 +#: includes/admin/meta-boxes/class-wc-meta-box-order-notes.php:65 msgid "Add note" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:58 -msgid "Add a note for your reference, or add a customer note (the user will be notified)." +#: includes/admin/meta-boxes/class-wc-meta-box-order-notes.php:65 +msgid "" +"Add a note for your reference, or add a customer note (the user will be " +"notified)." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:64 +#: includes/admin/meta-boxes/class-wc-meta-box-order-notes.php:71 msgid "Customer note" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:65 +#: includes/admin/meta-boxes/class-wc-meta-box-order-notes.php:72 msgid "Private note" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:67 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:563 +#: includes/admin/meta-boxes/class-wc-meta-box-order-notes.php:74 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:584 +#: includes/admin/meta-boxes/views/html-order-items.php:296 +#: includes/admin/meta-boxes/views/html-order-items.php:351 msgid "Add" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:31 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:62 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:94 -#: includes/admin/settings/class-wc-settings-shipping.php:25 -#: includes/admin/settings/class-wc-settings-tax.php:264 -#: includes/admin/settings/class-wc-settings-tax.php:381 -#: includes/admin/views/html-admin-page-addons.php:13 -msgid "Shipping" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:66 -msgid "+ Add shipping cost" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:66 -msgid "These are the shipping and handling costs for the order." -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:106 -msgid "+ Add tax row" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:106 -msgid "These rows contain taxes for this order. This allows you to display multiple or compound taxes rather than a single total." -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:113 -msgid "Order Discount" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:120 -msgid "Order Total" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:148 -msgid "Calculate Tax" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:150 -msgid "Calculate Total" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:42 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:45 msgid "Product Type" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:52 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:58 msgid "Virtual products are intangible and aren't shipped." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:59 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:65 msgid "Downloadable products give access to a file upon purchase." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:89 -#: includes/admin/settings/class-wc-settings-products.php:41 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:96 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:824 +#: includes/admin/settings/class-wc-settings-products.php:43 msgid "Inventory" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:99 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:101 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:828 +#: includes/admin/meta-boxes/views/html-order-items.php:139 +#: includes/admin/meta-boxes/views/html-order-shipping.php:14 +#: includes/admin/settings/class-wc-settings-shipping.php:25 +#: includes/admin/settings/class-wc-settings-tax.php:275 +#: includes/admin/settings/class-wc-settings-tax.php:392 +#: includes/admin/views/html-admin-page-addons.php:25 +msgid "Shipping" +msgstr "" + +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:106 msgid "Linked Products" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:109 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:116 msgid "Variations" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:114 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:121 msgid "Advanced" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:135 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:142 msgid "Stock Keeping Unit" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:135 -msgid "SKU refers to a Stock-keeping unit, a unique identifier for each distinct product and service that can be purchased." +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:142 +msgid "" +"SKU refers to a Stock-keeping unit, a unique identifier for each distinct " +"product and service that can be purchased." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:146 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:154 msgid "Product URL" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:146 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:154 msgid "Enter the external URL to the product." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:149 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:157 msgid "Button text" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:149 -msgctxt "placeholder" -msgid "Buy product" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:149 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:157 msgid "This text will be shown on the button linking to the external product." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:156 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:164 msgid "Regular Price" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:159 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:167 msgid "Sale Price" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:159 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:77 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:167 +#: includes/admin/meta-boxes/views/html-variation-admin.php:67 msgid "Schedule" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:166 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:174 msgid "Sale Price Dates" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:167 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:85 -msgctxt "placeholder" -msgid "From…" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:168 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:89 -msgctxt "placeholder" -msgid "To…" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:180 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:144 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:188 +#: includes/admin/meta-boxes/views/html-variation-admin.php:165 msgid "Downloadable Files" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:185 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:148 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:193 +#: includes/admin/meta-boxes/views/html-variation-admin.php:169 msgid "This is the name of the download shown to the customer." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:186 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:149 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:194 +#: includes/admin/meta-boxes/views/html-variation-admin.php:170 msgid "File URL" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:186 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:149 -msgid "This is the URL or absolute path to the file which customers will get access to." +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:194 +#: includes/admin/meta-boxes/views/html-variation-admin.php:170 +msgid "" +"This is the URL or absolute path to the file which customers will get " +"access to." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:201 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:164 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:220 +#: includes/admin/meta-boxes/views/html-variation-admin.php:200 msgid "Add File" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:221 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:229 msgid "Download Limit" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:221 -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:19 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:191 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:197 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:229 +#: includes/admin/meta-boxes/views/html-order-download-permission.php:19 +#: includes/admin/meta-boxes/views/html-variation-admin.php:212 +#: includes/admin/meta-boxes/views/html-variation-admin.php:218 msgid "Unlimited" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:221 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:190 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:229 +#: includes/admin/meta-boxes/views/html-variation-admin.php:211 msgid "Leave blank for unlimited re-downloads." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:227 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:770 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:235 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:836 msgid "Download Expiry" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:227 -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:23 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:235 +#: includes/admin/meta-boxes/views/html-order-download-permission.php:23 msgid "Never" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:227 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:196 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:235 +#: includes/admin/meta-boxes/views/html-variation-admin.php:217 msgid "Enter the number of days before a download link expires, or leave blank." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:233 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:241 msgid "Download Type" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:233 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:241 msgid "Choose a download type - this controls the schema." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:234 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:242 msgid "Standard Product" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:235 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:243 msgid "Application/Software" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:236 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:244 msgid "Music" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:248 -#: includes/admin/views/html-bulk-edit-product.php:58 -#: includes/admin/views/html-quick-edit-product.php:38 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:256 +#: includes/admin/views/html-bulk-edit-product.php:69 +#: includes/admin/views/html-quick-edit-product.php:49 msgid "Tax Status" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:249 -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:34 -#: includes/admin/views/html-bulk-edit-product.php:64 -#: includes/admin/views/html-quick-edit-product.php:43 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:257 +#: includes/admin/views/html-bulk-edit-product.php:75 +#: includes/admin/views/html-quick-edit-product.php:54 msgid "Taxable" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:250 -#: includes/admin/views/html-bulk-edit-product.php:65 -#: includes/admin/views/html-quick-edit-product.php:44 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:258 +#: includes/admin/views/html-bulk-edit-product.php:76 +#: includes/admin/views/html-quick-edit-product.php:55 msgid "Shipping only" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:251 -#: includes/admin/reports/class-wc-report-sales-by-category.php:167 -#: includes/admin/views/html-bulk-edit-product.php:66 -#: includes/admin/views/html-quick-edit-product.php:45 -msgid "None" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:256 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:733 -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:27 -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:39 -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:122 -#: includes/admin/settings/class-wc-settings-tax.php:122 -#: includes/admin/settings/class-wc-settings-tax.php:241 -#: includes/admin/views/html-bulk-edit-product.php:83 -#: includes/admin/views/html-quick-edit-product.php:61 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:264 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:773 +#: includes/admin/meta-boxes/views/html-order-items.php:20 +#: includes/admin/settings/class-wc-settings-tax.php:127 +#: includes/admin/settings/class-wc-settings-tax.php:252 +#: includes/admin/views/html-bulk-edit-product.php:94 +#: includes/admin/views/html-quick-edit-product.php:72 msgid "Standard" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:261 -#: includes/admin/settings/class-wc-settings-tax.php:381 -#: includes/admin/views/html-bulk-edit-product.php:77 -#: includes/admin/views/html-quick-edit-product.php:56 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:273 +#: includes/admin/settings/class-wc-settings-tax.php:392 +#: includes/admin/views/html-bulk-edit-product.php:88 +#: includes/admin/views/html-quick-edit-product.php:67 msgid "Tax Class" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:282 -#: includes/admin/views/html-bulk-edit-product.php:207 -#: includes/admin/views/html-quick-edit-product.php:153 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:294 +#: includes/admin/meta-boxes/views/html-variation-admin.php:239 +#: includes/admin/views/html-bulk-edit-product.php:218 +#: includes/admin/views/html-quick-edit-product.php:164 msgid "Manage stock?" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:282 -msgid "Enable stock management at product level (not needed if managing stock at variation level)" +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:294 +msgid "Enable stock management at product level" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:289 -#: includes/admin/views/html-bulk-edit-product.php:226 -#: includes/admin/views/html-bulk-edit-product.php:242 -#: includes/admin/views/html-quick-edit-product.php:157 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:301 +#: includes/admin/views/html-bulk-edit-product.php:237 +#: includes/admin/views/html-bulk-edit-product.php:253 +#: includes/admin/views/html-quick-edit-product.php:168 msgid "Stock Qty" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:289 -msgid "Stock quantity. If this is a variable product this value will be used to control stock for all variations, unless you define stock at variation level." +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:301 +msgid "" +"Stock quantity. If this is a variable product this value will be used to " +"control stock for all variations, unless you define stock at variation " +"level." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:300 -#: includes/admin/reports/class-wc-report-stock.php:140 -msgid "Stock status" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:303 -msgid "Controls whether or not the product is listed as \"in stock\" or \"out of stock\" on the frontend." -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:310 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:306 +#: includes/admin/meta-boxes/views/html-variation-admin.php:90 msgid "Allow Backorders?" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:311 -#: includes/admin/views/html-bulk-edit-product.php:253 -#: includes/admin/views/html-quick-edit-product.php:172 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:307 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:783 +#: includes/admin/views/html-bulk-edit-product.php:264 +#: includes/admin/views/html-quick-edit-product.php:183 msgid "Do not allow" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:312 -#: includes/admin/views/html-bulk-edit-product.php:254 -#: includes/admin/views/html-quick-edit-product.php:173 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:308 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:784 +#: includes/admin/views/html-bulk-edit-product.php:265 +#: includes/admin/views/html-quick-edit-product.php:184 msgid "Allow, but notify customer" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:313 -#: includes/admin/views/html-bulk-edit-product.php:255 -#: includes/admin/views/html-quick-edit-product.php:174 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:309 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:785 +#: includes/admin/views/html-bulk-edit-product.php:266 +#: includes/admin/views/html-quick-edit-product.php:185 msgid "Allow" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:314 -msgid "If managing stock, this controls whether or not backorders are allowed for this product and variations. If enabled, stock quantity can go below 0." +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:310 +msgid "" +"If managing stock, this controls whether or not backorders are allowed. If " +"enabled, stock quantity can go below 0." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:325 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:319 +#: includes/admin/meta-boxes/views/html-variation-admin.php:102 +#: includes/admin/reports/class-wc-report-stock.php:155 +msgid "Stock status" +msgstr "" + +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:322 +#: includes/admin/meta-boxes/views/html-variation-admin.php:102 +msgid "" +"Controls whether or not the product is listed as \"in stock\" or \"out of " +"stock\" on the frontend." +msgstr "" + +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:331 msgid "Sold Individually" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:325 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:331 msgid "Enable this to only allow one of this item to be bought in a single order" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:343 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:765 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:97 -#: includes/admin/views/html-bulk-edit-product.php:103 -#: includes/admin/views/html-quick-edit-product.php:84 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:350 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:832 +#: includes/admin/meta-boxes/views/html-variation-admin.php:118 +#: includes/admin/views/html-bulk-edit-product.php:114 +#: includes/admin/views/html-quick-edit-product.php:95 msgid "Weight" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:343 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:350 msgid "Weight in decimal form" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:348 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:356 msgid "Dimensions" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:350 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:766 -#: includes/admin/views/html-bulk-edit-product.php:143 -#: includes/admin/views/html-quick-edit-product.php:97 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:358 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:829 +#: includes/admin/views/html-bulk-edit-product.php:154 +#: includes/admin/views/html-quick-edit-product.php:108 msgid "Length" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:351 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:767 -#: includes/admin/views/html-bulk-edit-product.php:144 -#: includes/admin/views/html-quick-edit-product.php:98 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:359 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:830 +#: includes/admin/views/html-bulk-edit-product.php:155 +#: includes/admin/views/html-quick-edit-product.php:109 msgid "Width" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:352 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:768 -#: includes/admin/views/html-bulk-edit-product.php:145 -#: includes/admin/views/html-quick-edit-product.php:99 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:360 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:831 +#: includes/admin/views/html-bulk-edit-product.php:156 +#: includes/admin/views/html-quick-edit-product.php:110 msgid "Height" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:354 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:362 msgid "LxWxH in decimal form" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:371 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:383 msgid "No shipping class" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:377 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:389 msgid "Shipping class" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:377 -msgid "Shipping classes are used by certain shipping methods to group similar products." +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:389 +msgid "" +"Shipping classes are used by certain shipping methods to group similar " +"products." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:389 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:751 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:401 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:807 msgid "Close all" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:389 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:751 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:401 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:807 msgid "Expand all" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:448 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:462 msgid "Select terms" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:462 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:476 msgid "Add new" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:475 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:489 msgid "Pipe (|) separate terms" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:565 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:586 msgid "Custom product attribute" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:577 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:599 msgid "Save attributes" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:584 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:607 msgid "Up-Sells" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:599 -msgid "Up-sells are products which you recommend instead of the currently viewed product, for example, products that are more profitable or better quality or more expensive." +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:625 +msgid "" +"Up-sells are products which you recommend instead of the currently viewed " +"product, for example, products that are more profitable or better quality " +"or more expensive." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:601 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:627 msgid "Cross-Sells" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:616 -msgid "Cross-sells are products which you promote in the cart, based on the current product." +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:645 +msgid "" +"Cross-sells are products which you promote in the cart, based on the " +"current product." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:626 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:655 msgid "Choose a grouped product…" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:656 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:691 msgid "Grouping" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:656 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:691 msgid "Set this option to make this product part of a grouped product." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:676 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:711 msgid "Purchase Note" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:676 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:711 msgid "Enter an optional note to send the customer after purchase." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:683 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:718 msgid "Menu order" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:683 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:718 msgid "Custom ordering position." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:691 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:726 msgid "Enable reviews" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:743 -msgid "Before adding variations, add and save some attributes on the Attributes tab." +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:799 +msgid "" +"Before adding variations, add and save some attributes on the " +"Attributes tab." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:745 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:801 msgid "Learn more" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:752 -msgid "Bulk edit:" +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:809 +msgid "Choose a field to bulk edit…" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:754 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:811 msgid "Toggle "Enabled"" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:755 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:812 msgid "Toggle "Downloadable"" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:756 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:813 msgid "Toggle "Virtual"" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:757 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:814 msgid "Delete all variations" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:758 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:816 +msgid "Pricing" +msgstr "" + +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:817 msgid "Prices" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:759 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:818 msgid "Prices increase by (fixed amount or %)" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:760 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:819 msgid "Prices decrease by (fixed amount or %)" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:761 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:820 msgid "Sale prices" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:762 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:821 msgid "Sale prices increase by (fixed amount or %)" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:763 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:822 msgid "Sale prices decrease by (fixed amount or %)" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:769 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:825 +msgid "Toggle "Manage stock"" +msgstr "" + +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:834 +msgid "Downloadable products" +msgstr "" + +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:835 msgid "Download limit" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:773 -#: includes/admin/views/html-report-by-date.php:31 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:840 +#: includes/admin/views/html-report-by-date.php:37 msgid "Go" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:868 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:955 msgid "Add Variation" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:870 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:957 msgid "Link all variations" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:872 -msgid "Default selections:" +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:959 +msgid "Defaults" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:885 -#: includes/admin/settings/class-wc-settings-shipping.php:214 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:959 +msgid "These are the attributes that will be pre-selected on the frontend." +msgstr "" + +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:974 msgid "No default" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:989 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:1093 msgid "Product SKU must be unique." msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:1357 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:1499 msgid "Variation #%s of %s" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:44 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:55 +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:1543 +msgid "Variation SKU must be unique." +msgstr "" + +#: includes/admin/meta-boxes/class-wc-meta-box-product-images.php:44 +#: includes/admin/meta-boxes/class-wc-meta-box-product-images.php:56 msgid "Delete image" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:55 +#: includes/admin/meta-boxes/class-wc-meta-box-product-images.php:56 msgid "Add Images to Product Gallery" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:55 +#: includes/admin/meta-boxes/class-wc-meta-box-product-images.php:56 msgid "Add to gallery" msgstr "" -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:55 +#: includes/admin/meta-boxes/class-wc-meta-box-product-images.php:56 msgid "Add product gallery images" msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:6 +#: includes/admin/meta-boxes/views/html-order-download-permission.php:6 msgid "Revoke Access" msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:9 +#: includes/admin/meta-boxes/views/html-order-download-permission.php:9 msgid "%s: %s" msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:9 +#: includes/admin/meta-boxes/views/html-order-download-permission.php:9 msgid "Downloaded %s time" msgid_plural "Downloaded %s times" msgstr[0] "" msgstr[1] "" -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:16 +#: includes/admin/meta-boxes/views/html-order-download-permission.php:16 msgid "Downloads Remaining" msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:22 +#: includes/admin/meta-boxes/views/html-order-download-permission.php:22 msgid "Access Expires" msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:12 +#: includes/admin/meta-boxes/views/html-order-fee.php:13 msgid "Fee" msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:16 +#: includes/admin/meta-boxes/views/html-order-fee.php:16 msgid "Fee Name" msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:31 -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:136 -msgid "Tax class" -msgstr "" - -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:10 +#: includes/admin/meta-boxes/views/html-order-item.php:12 msgid "Product ID:" msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:13 +#: includes/admin/meta-boxes/views/html-order-item.php:15 +#: includes/admin/meta-boxes/views/html-order-item.php:17 msgid "Variation ID:" msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:16 +#: includes/admin/meta-boxes/views/html-order-item.php:17 +msgid "No longer exists" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-item.php:21 msgid "Product SKU:" msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:74 +#: includes/admin/meta-boxes/views/html-order-item.php:142 msgid "Add meta" msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:169 -msgid "Subtotal" -msgstr "" - -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:169 -msgid "Before pre-tax discounts." -msgstr "" - -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:171 +#: includes/admin/meta-boxes/views/html-order-item.php:189 +#: includes/admin/meta-boxes/views/html-order-item.php:232 msgid "After pre-tax discounts." msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-order-shipping.php:6 -msgid "Label" +#: includes/admin/meta-boxes/views/html-order-item.php:192 +#: includes/admin/meta-boxes/views/html-order-item.php:235 +msgid "Before pre-tax discounts." msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-order-shipping.php:11 +#: includes/admin/meta-boxes/views/html-order-items.php:50 +msgid "Item" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:54 +msgid "Qty" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:62 +#: includes/admin/meta-boxes/views/html-order-items.php:63 +#: includes/admin/reports/class-wc-report-taxes-by-code.php:124 +#: includes/admin/settings/class-wc-settings-tax.php:25 +#: includes/admin/settings/class-wc-settings-tax.php:561 +#: includes/admin/settings/class-wc-settings-tax.php:664 +msgid "Tax" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:139 +msgid "This is the shipping and handling total costs for the order." +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:159 +msgid "Order Discount" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:159 +msgid "This is the total discount applied after tax." +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:173 +msgid "Order Total" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:187 +msgid "Refunded" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:203 +msgid "Delete selected line item(s)" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:206 +msgid "Stock Actions" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:207 +msgid "Reduce line item stock" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:208 +msgid "Increase line item stock" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:216 +msgid "Add line item(s)" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:218 +msgid "To edit this order change the status back to \"Pending\"" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:218 +msgid "This order has been paid for and is no longer editable" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:221 +msgid "Add Tax" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:224 +#: includes/admin/meta-boxes/views/html-order-refund.php:14 +msgid "Refund" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:227 +msgid "Calculate Taxes" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:228 +msgid "Calculate Total" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:233 +msgid "Add product(s)" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:234 +msgid "Add fee" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:235 +msgid "Add shipping cost" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:237 +msgid "Save" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:243 +msgid "Restock refunded items" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:247 +msgid "Amount already refunded" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:251 +msgid "Total available to refund" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:255 +msgid "Refund amount" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:262 +msgid "Reason for refund (optional)" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:274 +msgid "Refund manually" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:286 +msgid "Add products" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:310 +msgid "Add tax" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:318 +msgid "Rate name" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:319 +msgid "Tax class" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:320 +msgid "Rate code" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:321 +#: includes/admin/settings/class-wc-settings-tax.php:392 +msgid "Rate %" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:342 +msgid "Or, enter tax rate ID:" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:343 +msgid "Optional" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-refund.php:16 +msgid "ID: " +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-shipping.php:17 +msgid "Shipping Name" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-shipping.php:19 msgid "Shipping Method" msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-order-tax.php:7 -msgid "Tax Rate" -msgstr "" - -#: includes/admin/post-types/meta-boxes/views/html-order-tax.php:17 -msgid "Sales Tax" -msgstr "" - -#: includes/admin/post-types/meta-boxes/views/html-order-tax.php:21 -msgid "Shipping Tax" -msgstr "" - -#: includes/admin/post-types/meta-boxes/views/html-product-download.php:3 -#: includes/admin/post-types/meta-boxes/views/html-product-variation-download.php:2 +#: includes/admin/meta-boxes/views/html-product-download.php:3 +#: includes/admin/meta-boxes/views/html-product-variation-download.php:2 msgid "File Name" msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-product-download.php:4 -#: includes/admin/post-types/meta-boxes/views/html-product-variation-download.php:3 +#: includes/admin/meta-boxes/views/html-product-download.php:4 +#: includes/admin/meta-boxes/views/html-product-variation-download.php:3 msgid "http://" msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-product-download.php:5 -#: includes/admin/post-types/meta-boxes/views/html-product-variation-download.php:4 +#: includes/admin/meta-boxes/views/html-product-download.php:5 +#: includes/admin/meta-boxes/views/html-product-variation-download.php:4 msgid "Choose file" msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-product-download.php:5 -#: includes/admin/post-types/meta-boxes/views/html-product-variation-download.php:4 +#: includes/admin/meta-boxes/views/html-product-download.php:5 +#: includes/admin/meta-boxes/views/html-product-variation-download.php:4 msgid "Insert file URL" msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:21 +#: includes/admin/meta-boxes/views/html-variation-admin.php:21 msgid "Any" msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:53 +#: includes/admin/meta-boxes/views/html-variation-admin.php:53 msgid "Enter a SKU for this variation or leave blank to use the parent product SKU." msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:64 -msgid "Stock Qty:" -msgstr "" - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:64 -msgid "Enter a quantity to enable stock management at variation level, or leave blank to use the parent product's options." -msgstr "" - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:73 +#: includes/admin/meta-boxes/views/html-variation-admin.php:63 msgid "Regular Price:" msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:74 +#: includes/admin/meta-boxes/views/html-variation-admin.php:64 msgid "Variation price (required)" msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:77 +#: includes/admin/meta-boxes/views/html-variation-admin.php:67 msgid "Sale Price:" msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:77 +#: includes/admin/meta-boxes/views/html-variation-admin.php:67 msgid "Cancel schedule" msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:84 +#: includes/admin/meta-boxes/views/html-variation-admin.php:74 msgid "Sale start date:" msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:88 +#: includes/admin/meta-boxes/views/html-variation-admin.php:78 msgid "Sale end date:" msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:97 -msgid "Enter a weight for this variation or leave blank to use the parent product weight." +#: includes/admin/meta-boxes/views/html-variation-admin.php:86 +msgid "Stock Qty:" msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:105 +#: includes/admin/meta-boxes/views/html-variation-admin.php:86 +msgid "" +"Enter a quantity to enable stock management at variation level, or leave " +"blank to use the parent product's options." +msgstr "" + +#: includes/admin/meta-boxes/views/html-variation-admin.php:118 +msgid "" +"Enter a weight for this variation or leave blank to use the parent product " +"weight." +msgstr "" + +#: includes/admin/meta-boxes/views/html-variation-admin.php:126 msgid "Dimensions (L×W×H)" msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:116 +#: includes/admin/meta-boxes/views/html-variation-admin.php:137 msgid "Shipping class:" msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:120 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:133 +#: includes/admin/meta-boxes/views/html-variation-admin.php:141 +#: includes/admin/meta-boxes/views/html-variation-admin.php:154 msgid "Same as parent" msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:131 +#: includes/admin/meta-boxes/views/html-variation-admin.php:152 msgid "Tax class:" msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:190 +#: includes/admin/meta-boxes/views/html-variation-admin.php:211 msgid "Download Limit:" msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:196 +#: includes/admin/meta-boxes/views/html-variation-admin.php:217 msgid "Download Expiry:" msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:210 -#: includes/admin/settings/class-wc-settings-checkout.php:269 -#: includes/admin/settings/class-wc-settings-shipping.php:235 -#: includes/admin/views/html-admin-page-status-tools.php:26 +#: includes/admin/meta-boxes/views/html-variation-admin.php:231 +#: includes/admin/settings/class-wc-settings-checkout.php:277 +#: includes/admin/settings/class-wc-settings-shipping.php:225 #: includes/admin/views/html-admin-page-status-tools.php:37 +#: includes/admin/views/html-admin-page-status-tools.php:48 +#: includes/admin/views/html-admin-page-status-tools.php:59 msgid "Enabled" msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:212 -msgid "Enable this option if access is given to a downloadable file upon purchase of a product" +#: includes/admin/meta-boxes/views/html-variation-admin.php:233 +msgid "" +"Enable this option if access is given to a downloadable file upon purchase " +"of a product" msgstr "" -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:214 +#: includes/admin/meta-boxes/views/html-variation-admin.php:235 msgid "Enable this option if a product is not shipped or there is no shipping cost" msgstr "" -#: includes/admin/reports/class-wc-admin-report.php:389 +#: includes/admin/meta-boxes/views/html-variation-admin.php:239 +msgid "Enable this option to enable stock management at variation level" +msgstr "" + +#: includes/admin/reports/class-wc-admin-report.php:418 msgid "Sold %s worth in the last %d days" msgstr "" -#: includes/admin/reports/class-wc-admin-report.php:391 +#: includes/admin/reports/class-wc-admin-report.php:420 msgid "Sold 1 item in the last %d days" msgid_plural "Sold %d items in the last %d days" msgstr[0] "" msgstr[1] "" -#: includes/admin/reports/class-wc-report-coupon-usage.php:69 +#: includes/admin/reports/class-wc-report-coupon-usage.php:79 msgid "%s discounts in total" msgstr "" -#: includes/admin/reports/class-wc-report-coupon-usage.php:75 +#: includes/admin/reports/class-wc-report-coupon-usage.php:85 msgid "%s coupons used in total" msgstr "" -#: includes/admin/reports/class-wc-report-coupon-usage.php:90 -#: includes/admin/reports/class-wc-report-customers.php:138 -#: includes/admin/reports/class-wc-report-sales-by-category.php:65 -#: includes/admin/reports/class-wc-report-sales-by-date.php:122 -#: includes/admin/reports/class-wc-report-sales-by-product.php:107 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:41 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:41 +#: includes/admin/reports/class-wc-report-coupon-usage.php:99 +#: includes/admin/reports/class-wc-report-customers.php:145 +#: includes/admin/reports/class-wc-report-sales-by-category.php:86 +#: includes/admin/reports/class-wc-report-sales-by-date.php:147 +#: includes/admin/reports/class-wc-report-sales-by-product.php:105 +#: includes/admin/reports/class-wc-report-taxes-by-code.php:47 +#: includes/admin/reports/class-wc-report-taxes-by-date.php:47 msgid "Year" msgstr "" -#: includes/admin/reports/class-wc-report-coupon-usage.php:91 -#: includes/admin/reports/class-wc-report-customers.php:139 -#: includes/admin/reports/class-wc-report-sales-by-category.php:66 -#: includes/admin/reports/class-wc-report-sales-by-date.php:123 -#: includes/admin/reports/class-wc-report-sales-by-product.php:108 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:42 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:42 +#: includes/admin/reports/class-wc-report-coupon-usage.php:100 +#: includes/admin/reports/class-wc-report-customers.php:146 +#: includes/admin/reports/class-wc-report-sales-by-category.php:87 +#: includes/admin/reports/class-wc-report-sales-by-date.php:148 +#: includes/admin/reports/class-wc-report-sales-by-product.php:106 +#: includes/admin/reports/class-wc-report-taxes-by-code.php:48 +#: includes/admin/reports/class-wc-report-taxes-by-date.php:48 msgid "Last Month" msgstr "" -#: includes/admin/reports/class-wc-report-coupon-usage.php:92 -#: includes/admin/reports/class-wc-report-customers.php:140 -#: includes/admin/reports/class-wc-report-sales-by-category.php:67 -#: includes/admin/reports/class-wc-report-sales-by-date.php:124 -#: includes/admin/reports/class-wc-report-sales-by-product.php:109 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:43 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:43 +#: includes/admin/reports/class-wc-report-coupon-usage.php:101 +#: includes/admin/reports/class-wc-report-customers.php:147 +#: includes/admin/reports/class-wc-report-sales-by-category.php:88 +#: includes/admin/reports/class-wc-report-sales-by-date.php:149 +#: includes/admin/reports/class-wc-report-sales-by-product.php:107 +#: includes/admin/reports/class-wc-report-taxes-by-code.php:49 +#: includes/admin/reports/class-wc-report-taxes-by-date.php:49 msgid "This Month" msgstr "" -#: includes/admin/reports/class-wc-report-coupon-usage.php:93 -#: includes/admin/reports/class-wc-report-customers.php:141 -#: includes/admin/reports/class-wc-report-sales-by-category.php:68 -#: includes/admin/reports/class-wc-report-sales-by-date.php:125 -#: includes/admin/reports/class-wc-report-sales-by-product.php:110 +#: includes/admin/reports/class-wc-report-coupon-usage.php:102 +#: includes/admin/reports/class-wc-report-customers.php:148 +#: includes/admin/reports/class-wc-report-sales-by-category.php:89 +#: includes/admin/reports/class-wc-report-sales-by-date.php:150 +#: includes/admin/reports/class-wc-report-sales-by-product.php:108 msgid "Last 7 Days" msgstr "" -#: includes/admin/reports/class-wc-report-coupon-usage.php:133 +#: includes/admin/reports/class-wc-report-coupon-usage.php:143 msgid "Filter by coupon" msgstr "" -#: includes/admin/reports/class-wc-report-coupon-usage.php:137 +#: includes/admin/reports/class-wc-report-coupon-usage.php:171 msgid "Choose coupons…" msgstr "" -#: includes/admin/reports/class-wc-report-coupon-usage.php:161 +#: includes/admin/reports/class-wc-report-coupon-usage.php:172 msgid "All coupons" msgstr "" -#: includes/admin/reports/class-wc-report-coupon-usage.php:166 -msgid "No used coupons found" -msgstr "" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:169 -#: includes/admin/reports/class-wc-report-sales-by-category.php:169 -#: includes/admin/reports/class-wc-report-sales-by-product.php:178 +#: includes/admin/reports/class-wc-report-coupon-usage.php:179 +#: includes/admin/reports/class-wc-report-sales-by-category.php:198 +#: includes/admin/reports/class-wc-report-sales-by-product.php:182 msgid "Show" msgstr "" -#: includes/admin/reports/class-wc-report-coupon-usage.php:184 +#: includes/admin/reports/class-wc-report-coupon-usage.php:192 +msgid "No used coupons found" +msgstr "" + +#: includes/admin/reports/class-wc-report-coupon-usage.php:197 msgid "Most Popular" msgstr "" -#: includes/admin/reports/class-wc-report-coupon-usage.php:226 -#: includes/admin/reports/class-wc-report-coupon-usage.php:273 +#: includes/admin/reports/class-wc-report-coupon-usage.php:239 +#: includes/admin/reports/class-wc-report-coupon-usage.php:287 msgid "No coupons found in range" msgstr "" -#: includes/admin/reports/class-wc-report-coupon-usage.php:231 +#: includes/admin/reports/class-wc-report-coupon-usage.php:244 msgid "Most Discount" msgstr "" -#: includes/admin/reports/class-wc-report-coupon-usage.php:316 -#: includes/admin/reports/class-wc-report-customers.php:202 -#: includes/admin/reports/class-wc-report-sales-by-category.php:213 -#: includes/admin/reports/class-wc-report-sales-by-date.php:162 -#: includes/admin/reports/class-wc-report-sales-by-product.php:326 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:29 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:29 -#: includes/admin/settings/class-wc-settings-tax.php:287 +#: includes/admin/reports/class-wc-report-coupon-usage.php:330 +#: includes/admin/reports/class-wc-report-customers.php:212 +#: includes/admin/reports/class-wc-report-sales-by-category.php:243 +#: includes/admin/reports/class-wc-report-sales-by-date.php:189 +#: includes/admin/reports/class-wc-report-sales-by-product.php:332 +#: includes/admin/reports/class-wc-report-taxes-by-code.php:36 +#: includes/admin/reports/class-wc-report-taxes-by-date.php:36 +#: includes/admin/settings/class-wc-settings-tax.php:363 msgid "Export CSV" msgstr "" -#: includes/admin/reports/class-wc-report-coupon-usage.php:407 +#: includes/admin/reports/class-wc-report-coupon-usage.php:422 msgid "Number of coupons used" msgstr "" -#: includes/admin/reports/class-wc-report-coupon-usage.php:415 +#: includes/admin/reports/class-wc-report-coupon-usage.php:430 msgid "Discount amount" msgstr "" -#: includes/admin/reports/class-wc-report-customer-list.php:22 +#: includes/admin/reports/class-wc-report-customer-list.php:26 msgid "Customer" msgstr "" -#: includes/admin/reports/class-wc-report-customer-list.php:32 +#: includes/admin/reports/class-wc-report-customer-list.php:36 msgid "No customers found." msgstr "" -#: includes/admin/reports/class-wc-report-customer-list.php:46 +#: includes/admin/reports/class-wc-report-customer-list.php:50 msgid "%s previous order linked" msgid_plural "%s previous orders linked" msgstr[0] "" msgstr[1] "" -#: includes/admin/reports/class-wc-report-customer-list.php:51 +#: includes/admin/reports/class-wc-report-customer-list.php:55 msgid "Search customers" msgstr "" -#: includes/admin/reports/class-wc-report-customer-list.php:188 +#: includes/admin/reports/class-wc-report-customer-list.php:194 msgid "View orders" msgstr "" -#: includes/admin/reports/class-wc-report-customer-list.php:212 +#: includes/admin/reports/class-wc-report-customer-list.php:220 msgid "Link previous orders" msgstr "" -#: includes/admin/reports/class-wc-report-customer-list.php:237 +#: includes/admin/reports/class-wc-report-customer-list.php:243 msgid "Name (Last, First)" msgstr "" -#: includes/admin/reports/class-wc-report-customer-list.php:238 +#: includes/admin/reports/class-wc-report-customer-list.php:244 msgid "Username" msgstr "" -#: includes/admin/reports/class-wc-report-customer-list.php:240 +#: includes/admin/reports/class-wc-report-customer-list.php:246 msgid "Location" msgstr "" -#: includes/admin/reports/class-wc-report-customer-list.php:242 +#: includes/admin/reports/class-wc-report-customer-list.php:248 msgid "Spent" msgstr "" -#: includes/admin/reports/class-wc-report-customer-list.php:243 +#: includes/admin/reports/class-wc-report-customer-list.php:249 msgid "Last order" msgstr "" -#: includes/admin/reports/class-wc-report-customers.php:15 +#: includes/admin/reports/class-wc-report-customers.php:23 msgid "%s signups in this period" msgstr "" -#: includes/admin/reports/class-wc-report-customers.php:83 +#: includes/admin/reports/class-wc-report-customers.php:91 msgid "Customer Sales" msgstr "" -#: includes/admin/reports/class-wc-report-customers.php:84 +#: includes/admin/reports/class-wc-report-customers.php:92 msgid "Guest Sales" msgstr "" -#: includes/admin/reports/class-wc-report-customers.php:93 -#: includes/admin/reports/class-wc-report-customers.php:289 +#: includes/admin/reports/class-wc-report-customers.php:101 +#: includes/admin/reports/class-wc-report-customers.php:300 msgid "Customer Orders" msgstr "" -#: includes/admin/reports/class-wc-report-customers.php:98 -#: includes/admin/reports/class-wc-report-customers.php:299 +#: includes/admin/reports/class-wc-report-customers.php:106 +#: includes/admin/reports/class-wc-report-customers.php:310 msgid "Guest Orders" msgstr "" -#: includes/admin/reports/class-wc-report-customers.php:117 +#: includes/admin/reports/class-wc-report-customers.php:125 msgid "orders" msgstr "" -#: includes/admin/reports/class-wc-report-customers.php:295 +#: includes/admin/reports/class-wc-report-customers.php:306 msgid "customer orders" msgstr "" -#: includes/admin/reports/class-wc-report-customers.php:305 +#: includes/admin/reports/class-wc-report-customers.php:316 msgid "guest orders" msgstr "" -#: includes/admin/reports/class-wc-report-customers.php:309 +#: includes/admin/reports/class-wc-report-customers.php:320 msgid "Signups" msgstr "" -#: includes/admin/reports/class-wc-report-customers.php:316 +#: includes/admin/reports/class-wc-report-customers.php:327 msgid "new users" msgstr "" -#: includes/admin/reports/class-wc-report-low-in-stock.php:19 +#: includes/admin/reports/class-wc-report-low-in-stock.php:22 msgid "No low in stock products found." msgstr "" -#: includes/admin/reports/class-wc-report-out-of-stock.php:19 +#: includes/admin/reports/class-wc-report-out-of-stock.php:22 msgid "No out of stock products found." msgstr "" -#: includes/admin/reports/class-wc-report-sales-by-category.php:47 +#: includes/admin/reports/class-wc-report-sales-by-category.php:69 msgid "%s sales in %s" msgstr "" -#: includes/admin/reports/class-wc-report-sales-by-category.php:168 +#: includes/admin/reports/class-wc-report-sales-by-category.php:182 +msgid "Select categories…" +msgstr "" + +#: includes/admin/reports/class-wc-report-sales-by-category.php:196 +msgid "None" +msgstr "" + +#: includes/admin/reports/class-wc-report-sales-by-category.php:197 msgid "All" msgstr "" -#: includes/admin/reports/class-wc-report-sales-by-category.php:228 +#: includes/admin/reports/class-wc-report-sales-by-category.php:259 msgid "← Choose a category to view stats" msgstr "" -#: includes/admin/reports/class-wc-report-sales-by-date.php:74 +#: includes/admin/reports/class-wc-report-sales-by-date.php:94 msgid "%s average daily sales" msgstr "" -#: includes/admin/reports/class-wc-report-sales-by-date.php:77 +#: includes/admin/reports/class-wc-report-sales-by-date.php:98 msgid "%s average monthly sales" msgstr "" -#: includes/admin/reports/class-wc-report-sales-by-date.php:82 +#: includes/admin/reports/class-wc-report-sales-by-date.php:103 msgid "%s sales in this period" msgstr "" -#: includes/admin/reports/class-wc-report-sales-by-date.php:92 +#: includes/admin/reports/class-wc-report-sales-by-date.php:115 msgid "%s orders placed" msgstr "" -#: includes/admin/reports/class-wc-report-sales-by-date.php:97 +#: includes/admin/reports/class-wc-report-sales-by-date.php:121 msgid "%s items purchased" msgstr "" -#: includes/admin/reports/class-wc-report-sales-by-date.php:102 +#: includes/admin/reports/class-wc-report-sales-by-date.php:127 msgid "%s charged for shipping" msgstr "" -#: includes/admin/reports/class-wc-report-sales-by-date.php:107 +#: includes/admin/reports/class-wc-report-sales-by-date.php:133 msgid "%s worth of coupons used" msgstr "" -#: includes/admin/reports/class-wc-report-sales-by-date.php:294 -#: includes/admin/reports/class-wc-report-sales-by-product.php:440 +#: includes/admin/reports/class-wc-report-sales-by-date.php:322 +#: includes/admin/reports/class-wc-report-sales-by-product.php:446 msgid "Number of items sold" msgstr "" -#: includes/admin/reports/class-wc-report-sales-by-date.php:302 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:113 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:109 +#: includes/admin/reports/class-wc-report-sales-by-date.php:330 +#: includes/admin/reports/class-wc-report-taxes-by-code.php:126 msgid "Number of orders" msgstr "" -#: includes/admin/reports/class-wc-report-sales-by-date.php:310 +#: includes/admin/reports/class-wc-report-sales-by-date.php:338 msgid "Average sales amount" msgstr "" -#: includes/admin/reports/class-wc-report-sales-by-date.php:330 +#: includes/admin/reports/class-wc-report-sales-by-date.php:358 msgid "Shipping amount" msgstr "" -#: includes/admin/reports/class-wc-report-sales-by-date.php:340 -#: includes/admin/reports/class-wc-report-sales-by-product.php:448 +#: includes/admin/reports/class-wc-report-sales-by-date.php:368 +#: includes/admin/reports/class-wc-report-sales-by-product.php:454 msgid "Sales amount" msgstr "" -#: includes/admin/reports/class-wc-report-sales-by-product.php:87 +#: includes/admin/reports/class-wc-report-sales-by-product.php:85 msgid "%s sales for the selected items" msgstr "" -#: includes/admin/reports/class-wc-report-sales-by-product.php:92 +#: includes/admin/reports/class-wc-report-sales-by-product.php:91 msgid "%s purchases for the selected items" msgstr "" -#: includes/admin/reports/class-wc-report-sales-by-product.php:138 +#: includes/admin/reports/class-wc-report-sales-by-product.php:137 msgid "Showing reports for:" msgstr "" -#: includes/admin/reports/class-wc-report-sales-by-product.php:164 +#: includes/admin/reports/class-wc-report-sales-by-product.php:169 msgid "Reset" msgstr "" -#: includes/admin/reports/class-wc-report-sales-by-product.php:173 +#: includes/admin/reports/class-wc-report-sales-by-product.php:177 msgid "Product Search" msgstr "" -#: includes/admin/reports/class-wc-report-sales-by-product.php:210 +#: includes/admin/reports/class-wc-report-sales-by-product.php:214 msgid "Top Sellers" msgstr "" -#: includes/admin/reports/class-wc-report-sales-by-product.php:245 -#: includes/admin/reports/class-wc-report-sales-by-product.php:285 +#: includes/admin/reports/class-wc-report-sales-by-product.php:250 +#: includes/admin/reports/class-wc-report-sales-by-product.php:290 msgid "No products found in range" msgstr "" -#: includes/admin/reports/class-wc-report-sales-by-product.php:250 +#: includes/admin/reports/class-wc-report-sales-by-product.php:255 msgid "Top Earners" msgstr "" -#: includes/admin/reports/class-wc-report-sales-by-product.php:341 +#: includes/admin/reports/class-wc-report-sales-by-product.php:348 msgid "← Choose a product to view stats" msgstr "" -#: includes/admin/reports/class-wc-report-stock.php:30 +#: includes/admin/reports/class-wc-report-stock.php:36 msgid "No products found." msgstr "" #: includes/admin/reports/class-wc-report-stock.php:138 +msgid "product" +msgstr "" + +#: includes/admin/reports/class-wc-report-stock.php:153 msgid "Parent" msgstr "" -#: includes/admin/reports/class-wc-report-stock.php:139 +#: includes/admin/reports/class-wc-report-stock.php:154 msgid "Units in stock" msgstr "" -#: includes/admin/reports/class-wc-report-taxes-by-code.php:112 +#: includes/admin/reports/class-wc-report-taxes-by-code.php:125 msgid "Rate" msgstr "" -#: includes/admin/reports/class-wc-report-taxes-by-code.php:114 +#: includes/admin/reports/class-wc-report-taxes-by-code.php:127 msgid "Tax Amount" msgstr "" -#: includes/admin/reports/class-wc-report-taxes-by-code.php:114 +#: includes/admin/reports/class-wc-report-taxes-by-code.php:127 msgid "This is the sum of the \"Tax Rows\" tax amount within your orders." msgstr "" -#: includes/admin/reports/class-wc-report-taxes-by-code.php:115 +#: includes/admin/reports/class-wc-report-taxes-by-code.php:128 msgid "Shipping Tax Amount" msgstr "" -#: includes/admin/reports/class-wc-report-taxes-by-code.php:115 +#: includes/admin/reports/class-wc-report-taxes-by-code.php:128 msgid "This is the sum of the \"Tax Rows\" shipping tax amount within your orders." msgstr "" -#: includes/admin/reports/class-wc-report-taxes-by-code.php:116 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:112 +#: includes/admin/reports/class-wc-report-taxes-by-code.php:129 +#: includes/admin/reports/class-wc-report-taxes-by-date.php:119 msgid "Total Tax" msgstr "" -#: includes/admin/reports/class-wc-report-taxes-by-code.php:116 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:112 +#: includes/admin/reports/class-wc-report-taxes-by-code.php:129 +#: includes/admin/reports/class-wc-report-taxes-by-date.php:119 msgid "This is the total tax for the rate (shipping tax + product tax)." msgstr "" -#: includes/admin/reports/class-wc-report-taxes-by-code.php:165 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:156 +#: includes/admin/reports/class-wc-report-taxes-by-code.php:182 +#: includes/admin/reports/class-wc-report-taxes-by-date.php:164 msgid "No taxes found in this period" msgstr "" -#: includes/admin/reports/class-wc-report-taxes-by-date.php:108 +#: includes/admin/reports/class-wc-report-taxes-by-date.php:115 msgid "Period" msgstr "" -#: includes/admin/reports/class-wc-report-taxes-by-date.php:110 +#: includes/admin/reports/class-wc-report-taxes-by-date.php:116 +msgid "Orders/refunds" +msgstr "" + +#: includes/admin/reports/class-wc-report-taxes-by-date.php:117 msgid "Total Sales" msgstr "" -#: includes/admin/reports/class-wc-report-taxes-by-date.php:110 +#: includes/admin/reports/class-wc-report-taxes-by-date.php:117 msgid "This is the sum of the 'Order Total' field within your orders." msgstr "" -#: includes/admin/reports/class-wc-report-taxes-by-date.php:111 +#: includes/admin/reports/class-wc-report-taxes-by-date.php:118 msgid "Total Shipping" msgstr "" -#: includes/admin/reports/class-wc-report-taxes-by-date.php:111 +#: includes/admin/reports/class-wc-report-taxes-by-date.php:118 msgid "This is the sum of the 'Shipping Total' field within your orders." msgstr "" -#: includes/admin/reports/class-wc-report-taxes-by-date.php:113 +#: includes/admin/reports/class-wc-report-taxes-by-date.php:120 msgid "Net profit" msgstr "" -#: includes/admin/reports/class-wc-report-taxes-by-date.php:113 +#: includes/admin/reports/class-wc-report-taxes-by-date.php:120 msgid "Total sales minus shipping and tax." msgstr "" -#: includes/admin/reports/class-wc-report-taxes-by-date.php:122 +#: includes/admin/reports/class-wc-report-taxes-by-date.php:153 msgid "Totals" msgstr "" -#: includes/admin/settings/class-wc-settings-accounts.php:25 +#: includes/admin/settings/class-wc-settings-accounts.php:26 msgid "Accounts" msgstr "" @@ -3430,7 +3673,9 @@ msgid "Account Pages" msgstr "" #: includes/admin/settings/class-wc-settings-accounts.php:41 -msgid "These pages need to be set so that WooCommerce knows where to send users to access account related functionality." +msgid "" +"These pages need to be set so that WooCommerce knows where to send users to " +"access account related functionality." msgstr "" #: includes/admin/settings/class-wc-settings-accounts.php:44 @@ -3438,8 +3683,8 @@ msgid "My Account Page" msgstr "" #: includes/admin/settings/class-wc-settings-accounts.php:45 -#: includes/admin/settings/class-wc-settings-checkout.php:113 -#: includes/admin/settings/class-wc-settings-checkout.php:124 +#: includes/admin/settings/class-wc-settings-checkout.php:115 +#: includes/admin/settings/class-wc-settings-checkout.php:126 msgid "Page contents:" msgstr "" @@ -3448,7 +3693,9 @@ msgid "My Account Endpoints" msgstr "" #: includes/admin/settings/class-wc-settings-accounts.php:56 -msgid "Endpoints are appended to your page URLs to handle specific actions on the accounts pages. They should be unique." +msgid "" +"Endpoints are appended to your page URLs to handle specific actions on the " +"accounts pages. They should be unique." msgstr "" #: includes/admin/settings/class-wc-settings-accounts.php:59 @@ -3488,7 +3735,9 @@ msgid "Logout" msgstr "" #: includes/admin/settings/class-wc-settings-accounts.php:96 -msgid "Endpoint for the triggering logout. You can add this to your menus via a custom link: yoursite.com/?customer-logout=true" +msgid "" +"Endpoint for the triggering logout. You can add this to your menus via a " +"custom link: yoursite.com/?customer-logout=true" msgstr "" #: includes/admin/settings/class-wc-settings-accounts.php:105 @@ -3523,122 +3772,127 @@ msgstr "" msgid "Automatically generate customer password" msgstr "" -#: includes/admin/settings/class-wc-settings-checkout.php:25 -#: includes/admin/settings/class-wc-settings-checkout.php:78 -#: includes/admin/views/html-admin-page-status-report.php:297 -msgid "Checkout" -msgstr "" - -#: includes/admin/settings/class-wc-settings-checkout.php:41 +#: includes/admin/settings/class-wc-settings-checkout.php:43 msgid "Checkout Options" msgstr "" -#: includes/admin/settings/class-wc-settings-checkout.php:65 +#: includes/admin/settings/class-wc-settings-checkout.php:67 msgid "Checkout Process" msgstr "" -#: includes/admin/settings/class-wc-settings-checkout.php:68 +#: includes/admin/settings/class-wc-settings-checkout.php:70 msgid "Coupons" msgstr "" -#: includes/admin/settings/class-wc-settings-checkout.php:69 +#: includes/admin/settings/class-wc-settings-checkout.php:71 msgid "Enable the use of coupons" msgstr "" -#: includes/admin/settings/class-wc-settings-checkout.php:73 +#: includes/admin/settings/class-wc-settings-checkout.php:75 msgid "Coupons can be applied from the cart and checkout pages." msgstr "" -#: includes/admin/settings/class-wc-settings-checkout.php:79 +#: includes/admin/settings/class-wc-settings-checkout.php:81 msgid "Enable guest checkout" msgstr "" -#: includes/admin/settings/class-wc-settings-checkout.php:80 +#: includes/admin/settings/class-wc-settings-checkout.php:82 msgid "Allows customers to checkout without creating an account." msgstr "" -#: includes/admin/settings/class-wc-settings-checkout.php:89 +#: includes/admin/settings/class-wc-settings-checkout.php:91 msgid "Force secure checkout" msgstr "" -#: includes/admin/settings/class-wc-settings-checkout.php:95 +#: includes/admin/settings/class-wc-settings-checkout.php:97 msgid "Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." msgstr "" -#: includes/admin/settings/class-wc-settings-checkout.php:99 -msgid "Un-force HTTPS when leaving the checkout" +#: includes/admin/settings/class-wc-settings-checkout.php:101 +msgid "Force HTTP when leaving the checkout" msgstr "" -#: includes/admin/settings/class-wc-settings-checkout.php:109 +#: includes/admin/settings/class-wc-settings-checkout.php:111 msgid "Checkout Pages" msgstr "" -#: includes/admin/settings/class-wc-settings-checkout.php:109 -msgid "These pages need to be set so that WooCommerce knows where to send users to checkout." +#: includes/admin/settings/class-wc-settings-checkout.php:111 +msgid "" +"These pages need to be set so that WooCommerce knows where to send users to " +"checkout." msgstr "" -#: includes/admin/settings/class-wc-settings-checkout.php:112 +#: includes/admin/settings/class-wc-settings-checkout.php:114 msgid "Cart Page" msgstr "" -#: includes/admin/settings/class-wc-settings-checkout.php:123 +#: includes/admin/settings/class-wc-settings-checkout.php:125 msgid "Checkout Page" msgstr "" -#: includes/admin/settings/class-wc-settings-checkout.php:134 +#: includes/admin/settings/class-wc-settings-checkout.php:136 msgid "Terms and Conditions" msgstr "" -#: includes/admin/settings/class-wc-settings-checkout.php:135 -msgid "If you define a \"Terms\" page the customer will be asked if they accept them when checking out." +#: includes/admin/settings/class-wc-settings-checkout.php:137 +msgid "" +"If you define a \"Terms\" page the customer will be asked if they accept " +"them when checking out." msgstr "" -#: includes/admin/settings/class-wc-settings-checkout.php:147 +#: includes/admin/settings/class-wc-settings-checkout.php:149 msgid "Checkout Endpoints" msgstr "" -#: includes/admin/settings/class-wc-settings-checkout.php:147 -msgid "Endpoints are appended to your page URLs to handle specific actions during the checkout process. They should be unique." +#: includes/admin/settings/class-wc-settings-checkout.php:149 +msgid "" +"Endpoints are appended to your page URLs to handle specific actions during " +"the checkout process. They should be unique." msgstr "" -#: includes/admin/settings/class-wc-settings-checkout.php:150 +#: includes/admin/settings/class-wc-settings-checkout.php:152 msgid "Pay" msgstr "" -#: includes/admin/settings/class-wc-settings-checkout.php:151 -#: includes/admin/settings/class-wc-settings-checkout.php:160 +#: includes/admin/settings/class-wc-settings-checkout.php:153 msgid "Endpoint for the Checkout → Pay page" msgstr "" -#: includes/admin/settings/class-wc-settings-checkout.php:159 +#: includes/admin/settings/class-wc-settings-checkout.php:161 msgid "Order Received" msgstr "" -#: includes/admin/settings/class-wc-settings-checkout.php:168 +#: includes/admin/settings/class-wc-settings-checkout.php:162 +msgid "Endpoint for the Checkout → Order Received page" +msgstr "" + +#: includes/admin/settings/class-wc-settings-checkout.php:170 msgid "Add Payment Method" msgstr "" -#: includes/admin/settings/class-wc-settings-checkout.php:169 +#: includes/admin/settings/class-wc-settings-checkout.php:171 msgid "Endpoint for the Checkout → Add Payment Method page" msgstr "" -#: includes/admin/settings/class-wc-settings-checkout.php:178 +#: includes/admin/settings/class-wc-settings-checkout.php:180 msgid "Payment Gateways" msgstr "" -#: includes/admin/settings/class-wc-settings-checkout.php:178 -msgid "Installed gateways are listed below. Drag and drop gateways to control their display order on the frontend." +#: includes/admin/settings/class-wc-settings-checkout.php:180 +msgid "" +"Installed gateways are listed below. Drag and drop gateways to control " +"their display order on the frontend." msgstr "" -#: includes/admin/settings/class-wc-settings-checkout.php:219 -msgid "Gateway Display" +#: includes/admin/settings/class-wc-settings-checkout.php:222 +msgid "Gateway Display Order" msgstr "" -#: includes/admin/settings/class-wc-settings-checkout.php:227 +#: includes/admin/settings/class-wc-settings-checkout.php:230 msgid "Gateway" msgstr "" -#: includes/admin/settings/class-wc-settings-checkout.php:228 +#: includes/admin/settings/class-wc-settings-checkout.php:231 msgid "Gateway ID" msgstr "" @@ -3646,1359 +3900,1586 @@ msgstr "" msgid "Emails" msgstr "" -#: includes/admin/settings/class-wc-settings-emails.php:40 +#: includes/admin/settings/class-wc-settings-emails.php:41 msgid "Email Options" msgstr "" -#: includes/admin/settings/class-wc-settings-emails.php:66 +#: includes/admin/settings/class-wc-settings-emails.php:68 msgid "Email Sender Options" msgstr "" -#: includes/admin/settings/class-wc-settings-emails.php:66 -msgid "The following options affect the sender (email address and name) used in WooCommerce emails." +#: includes/admin/settings/class-wc-settings-emails.php:68 +msgid "" +"The following options affect the sender (email address and name) used in " +"WooCommerce emails." msgstr "" -#: includes/admin/settings/class-wc-settings-emails.php:69 +#: includes/admin/settings/class-wc-settings-emails.php:71 msgid "\"From\" Name" msgstr "" -#: includes/admin/settings/class-wc-settings-emails.php:79 +#: includes/admin/settings/class-wc-settings-emails.php:81 msgid "\"From\" Email Address" msgstr "" -#: includes/admin/settings/class-wc-settings-emails.php:93 +#: includes/admin/settings/class-wc-settings-emails.php:95 msgid "Email Template" msgstr "" -#: includes/admin/settings/class-wc-settings-emails.php:93 -msgid "This section lets you customise the WooCommerce emails. Click here to preview your email template. For more advanced control copy woocommerce/templates/emails/ to yourtheme/woocommerce/emails/." +#: includes/admin/settings/class-wc-settings-emails.php:95 +msgid "" +"This section lets you customise the WooCommerce emails. Click here to preview your email template. For more " +"advanced control copy woocommerce/templates/emails/ to " +"yourtheme/woocommerce/emails/." msgstr "" -#: includes/admin/settings/class-wc-settings-emails.php:96 +#: includes/admin/settings/class-wc-settings-emails.php:98 msgid "Header Image" msgstr "" -#: includes/admin/settings/class-wc-settings-emails.php:97 -msgid "Enter a URL to an image you want to show in the email's header. Upload your image using the media uploader." +#: includes/admin/settings/class-wc-settings-emails.php:99 +msgid "" +"Enter a URL to an image you want to show in the email's header. Upload your " +"image using the media uploader." msgstr "" -#: includes/admin/settings/class-wc-settings-emails.php:106 +#: includes/admin/settings/class-wc-settings-emails.php:108 msgid "Email Footer Text" msgstr "" -#: includes/admin/settings/class-wc-settings-emails.php:107 +#: includes/admin/settings/class-wc-settings-emails.php:109 msgid "The text to appear in the footer of WooCommerce emails." msgstr "" -#: includes/admin/settings/class-wc-settings-emails.php:111 +#: includes/admin/settings/class-wc-settings-emails.php:113 msgid "Powered by WooCommerce" msgstr "" -#: includes/admin/settings/class-wc-settings-emails.php:116 +#: includes/admin/settings/class-wc-settings-emails.php:118 msgid "Base Colour" msgstr "" -#: includes/admin/settings/class-wc-settings-emails.php:117 -msgid "The base colour for WooCommerce email templates. Default #557da1." +#: includes/admin/settings/class-wc-settings-emails.php:119 +msgid "" +"The base colour for WooCommerce email templates. Default " +"#557da1." msgstr "" -#: includes/admin/settings/class-wc-settings-emails.php:126 +#: includes/admin/settings/class-wc-settings-emails.php:128 msgid "Background Colour" msgstr "" -#: includes/admin/settings/class-wc-settings-emails.php:127 -msgid "The background colour for WooCommerce email templates. Default #f5f5f5." +#: includes/admin/settings/class-wc-settings-emails.php:129 +msgid "" +"The background colour for WooCommerce email templates. Default " +"#f5f5f5." msgstr "" -#: includes/admin/settings/class-wc-settings-emails.php:136 +#: includes/admin/settings/class-wc-settings-emails.php:138 msgid "Email Body Background Colour" msgstr "" -#: includes/admin/settings/class-wc-settings-emails.php:137 +#: includes/admin/settings/class-wc-settings-emails.php:139 msgid "The main body background colour. Default #fdfdfd." msgstr "" -#: includes/admin/settings/class-wc-settings-emails.php:146 +#: includes/admin/settings/class-wc-settings-emails.php:148 msgid "Email Body Text Colour" msgstr "" -#: includes/admin/settings/class-wc-settings-emails.php:147 +#: includes/admin/settings/class-wc-settings-emails.php:149 msgid "The main body text colour. Default #505050." msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:48 +#: includes/admin/settings/class-wc-settings-general.php:54 msgid "General Options" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:51 +#: includes/admin/settings/class-wc-settings-general.php:57 msgid "Base Location" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:52 -msgid "This is the base location for your business. Tax rates will be based on this country." +#: includes/admin/settings/class-wc-settings-general.php:58 +msgid "" +"This is the base location for your business. Tax rates will be based on " +"this country." msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:61 +#: includes/admin/settings/class-wc-settings-general.php:67 msgid "Selling Location(s)" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:62 +#: includes/admin/settings/class-wc-settings-general.php:68 msgid "This option lets you limit which countries you are willing to sell to." msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:70 +#: includes/admin/settings/class-wc-settings-general.php:76 msgid "Sell to all countries" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:71 +#: includes/admin/settings/class-wc-settings-general.php:77 msgid "Sell to specific countries only" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:76 -#: includes/admin/settings/class-wc-settings-shipping.php:147 +#: includes/admin/settings/class-wc-settings-general.php:82 +#: includes/admin/settings/class-wc-settings-shipping.php:144 msgid "Specific Countries" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:85 +#: includes/admin/settings/class-wc-settings-general.php:91 msgid "Store Notice" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:86 +#: includes/admin/settings/class-wc-settings-general.php:92 msgid "Enable site-wide store notice text" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:93 +#: includes/admin/settings/class-wc-settings-general.php:99 msgid "Store Notice Text" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:96 -msgid "This is a demo store for testing purposes — no orders shall be fulfilled." +#: includes/admin/settings/class-wc-settings-general.php:102 +msgid "" +"This is a demo store for testing purposes — no orders shall be " +"fulfilled." msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:103 +#: includes/admin/settings/class-wc-settings-general.php:109 msgid "API" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:104 +#: includes/admin/settings/class-wc-settings-general.php:110 msgid "Enable the REST API" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:112 +#: includes/admin/settings/class-wc-settings-general.php:118 msgid "Currency Options" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:112 +#: includes/admin/settings/class-wc-settings-general.php:118 msgid "The following options affect how prices are displayed on the frontend." msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:115 +#: includes/admin/settings/class-wc-settings-general.php:121 msgid "Currency" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:116 -msgid "This controls what currency prices are listed at in the catalog and which currency gateways will take payments in." +#: includes/admin/settings/class-wc-settings-general.php:122 +msgid "" +"This controls what currency prices are listed at in the catalog and which " +"currency gateways will take payments in." msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:127 +#: includes/admin/settings/class-wc-settings-general.php:133 msgid "Currency Position" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:128 +#: includes/admin/settings/class-wc-settings-general.php:134 msgid "This controls the position of the currency symbol." msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:135 +#: includes/admin/settings/class-wc-settings-general.php:141 msgid "Left" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:136 +#: includes/admin/settings/class-wc-settings-general.php:142 msgid "Right" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:137 +#: includes/admin/settings/class-wc-settings-general.php:143 msgid "Left with space" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:138 +#: includes/admin/settings/class-wc-settings-general.php:144 msgid "Right with space" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:144 +#: includes/admin/settings/class-wc-settings-general.php:150 msgid "Thousand Separator" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:145 +#: includes/admin/settings/class-wc-settings-general.php:151 msgid "This sets the thousand separator of displayed prices." msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:154 +#: includes/admin/settings/class-wc-settings-general.php:160 msgid "Decimal Separator" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:155 +#: includes/admin/settings/class-wc-settings-general.php:161 msgid "This sets the decimal separator of displayed prices." msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:164 +#: includes/admin/settings/class-wc-settings-general.php:170 msgid "Number of Decimals" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:165 +#: includes/admin/settings/class-wc-settings-general.php:171 msgid "This sets the number of decimal points shown in displayed prices." msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:179 +#: includes/admin/settings/class-wc-settings-general.php:185 msgid "Styles and Scripts" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:184 +#: includes/admin/settings/class-wc-settings-general.php:190 msgid "Scripts" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:185 +#: includes/admin/settings/class-wc-settings-general.php:191 msgid "Enable Lightbox" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:188 -msgid "Include WooCommerce's lightbox. Product gallery images will open in a lightbox." +#: includes/admin/settings/class-wc-settings-general.php:194 +msgid "" +"Include WooCommerce's lightbox. Product gallery images will open in a " +"lightbox." msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:194 +#: includes/admin/settings/class-wc-settings-general.php:200 msgid "Enable enhanced country select boxes" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:199 +#: includes/admin/settings/class-wc-settings-general.php:205 msgid "This will enable a script allowing the country fields to be searchable." msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:217 +#: includes/admin/settings/class-wc-settings-general.php:223 msgid "Frontend Styles" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:237 +#: includes/admin/settings/class-wc-settings-general.php:253 msgid "Primary" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:237 +#: includes/admin/settings/class-wc-settings-general.php:253 msgid "Call to action buttons/price slider/layered nav UI" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:238 +#: includes/admin/settings/class-wc-settings-general.php:254 msgid "Secondary" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:238 +#: includes/admin/settings/class-wc-settings-general.php:254 msgid "Buttons and tabs" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:239 +#: includes/admin/settings/class-wc-settings-general.php:255 msgid "Highlight" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:239 +#: includes/admin/settings/class-wc-settings-general.php:255 msgid "Price labels and Sale Flashes" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:240 +#: includes/admin/settings/class-wc-settings-general.php:256 msgid "Content" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:240 +#: includes/admin/settings/class-wc-settings-general.php:256 msgid "Your themes page background - used for tab active states" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:241 +#: includes/admin/settings/class-wc-settings-general.php:257 msgid "Subtext" msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:241 +#: includes/admin/settings/class-wc-settings-general.php:257 msgid "Used for certain text and asides - breadcrumbs, small text etc." msgstr "" -#: includes/admin/settings/class-wc-settings-general.php:244 -msgid "To edit colours woocommerce/assets/css/woocommerce-base.less and woocommerce.css need to be writable. See the Codex for more information." +#: includes/admin/settings/class-wc-settings-general.php:260 +msgid "" +"To edit colours woocommerce/assets/css/woocommerce-base.less " +"and woocommerce.css need to be writable. See the Codex " +"for more information." msgstr "" -#: includes/admin/settings/class-wc-settings-integrations.php:25 +#: includes/admin/settings/class-wc-settings-general.php:312 +msgid "" +"Error saving the Frontend Styles, %s is not a valid color, please use only " +"valid colors code." +msgstr "" + +#: includes/admin/settings/class-wc-settings-integrations.php:26 msgid "Integration" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:40 +#: includes/admin/settings/class-wc-settings-products.php:42 msgid "Product Options" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:79 +#: includes/admin/settings/class-wc-settings-products.php:80 msgid "Inventory Options" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:82 +#: includes/admin/settings/class-wc-settings-products.php:83 msgid "Manage Stock" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:83 +#: includes/admin/settings/class-wc-settings-products.php:84 msgid "Enable stock management" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:90 +#: includes/admin/settings/class-wc-settings-products.php:91 msgid "Hold Stock (minutes)" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:91 -msgid "Hold stock (for unpaid orders) for x minutes. When this limit is reached, the pending order will be cancelled. Leave blank to disable." -msgstr "" - -#: includes/admin/settings/class-wc-settings-products.php:104 -msgid "Notifications" +#: includes/admin/settings/class-wc-settings-products.php:92 +msgid "" +"Hold stock (for unpaid orders) for x minutes. When this limit is reached, " +"the pending order will be cancelled. Leave blank to disable." msgstr "" #: includes/admin/settings/class-wc-settings-products.php:105 +msgid "Notifications" +msgstr "" + +#: includes/admin/settings/class-wc-settings-products.php:106 msgid "Enable low stock notifications" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:114 +#: includes/admin/settings/class-wc-settings-products.php:115 msgid "Enable out of stock notifications" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:123 +#: includes/admin/settings/class-wc-settings-products.php:124 msgid "Notification Recipient" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:132 +#: includes/admin/settings/class-wc-settings-products.php:133 msgid "Low Stock Threshold" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:146 +#: includes/admin/settings/class-wc-settings-products.php:147 msgid "Out Of Stock Threshold" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:160 +#: includes/admin/settings/class-wc-settings-products.php:161 msgid "Out Of Stock Visibility" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:161 +#: includes/admin/settings/class-wc-settings-products.php:162 msgid "Hide out of stock items from the catalog" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:168 +#: includes/admin/settings/class-wc-settings-products.php:169 msgid "Stock Display Format" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:169 +#: includes/admin/settings/class-wc-settings-products.php:170 msgid "This controls how stock is displayed on the frontend." msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:175 +#: includes/admin/settings/class-wc-settings-products.php:176 msgid "Always show stock e.g. \"12 in stock\"" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:176 +#: includes/admin/settings/class-wc-settings-products.php:177 msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:177 +#: includes/admin/settings/class-wc-settings-products.php:178 msgid "Never show stock amount" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:196 -msgid "Note: The shop page has children - child pages will not work if you enable this option." +#: includes/admin/settings/class-wc-settings-products.php:197 +msgid "" +"Note: The shop page has children - child pages will not work if you enable " +"this option." msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:200 +#: includes/admin/settings/class-wc-settings-products.php:202 msgid "Product Listings" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:203 +#: includes/admin/settings/class-wc-settings-products.php:205 msgid "Product Archive / Shop Page" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:204 -msgid "The base page can also be used in your product permalinks." +#: includes/admin/settings/class-wc-settings-products.php:206 +msgid "" +"The base page can also be used in your product " +"permalinks." msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:210 -msgid "This sets the base page of your shop - this is where your product archive will be." +#: includes/admin/settings/class-wc-settings-products.php:212 +msgid "" +"This sets the base page of your shop - this is where your product archive " +"will be." msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:214 +#: includes/admin/settings/class-wc-settings-products.php:216 msgid "Shop Page Display" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:215 +#: includes/admin/settings/class-wc-settings-products.php:217 msgid "This controls what is shown on the product archive." msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:222 -#: includes/admin/settings/class-wc-settings-products.php:238 -msgid "Show products" -msgstr "" - -#: includes/admin/settings/class-wc-settings-products.php:223 -#: includes/admin/settings/class-wc-settings-products.php:239 -msgid "Show subcategories" -msgstr "" - #: includes/admin/settings/class-wc-settings-products.php:224 #: includes/admin/settings/class-wc-settings-products.php:240 +msgid "Show products" +msgstr "" + +#: includes/admin/settings/class-wc-settings-products.php:225 +#: includes/admin/settings/class-wc-settings-products.php:241 +msgid "Show subcategories" +msgstr "" + +#: includes/admin/settings/class-wc-settings-products.php:226 +#: includes/admin/settings/class-wc-settings-products.php:242 msgid "Show both" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:230 +#: includes/admin/settings/class-wc-settings-products.php:232 msgid "Default Category Display" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:231 +#: includes/admin/settings/class-wc-settings-products.php:233 msgid "This controls what is shown on category archives." msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:246 +#: includes/admin/settings/class-wc-settings-products.php:248 msgid "Default Product Sorting" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:247 +#: includes/admin/settings/class-wc-settings-products.php:249 msgid "This controls the default sort order of the catalog." msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:254 +#: includes/admin/settings/class-wc-settings-products.php:256 msgid "Default sorting (custom ordering + name)" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:255 +#: includes/admin/settings/class-wc-settings-products.php:257 msgid "Popularity (sales)" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:256 +#: includes/admin/settings/class-wc-settings-products.php:258 msgid "Average Rating" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:257 +#: includes/admin/settings/class-wc-settings-products.php:259 msgid "Sort by most recent" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:258 +#: includes/admin/settings/class-wc-settings-products.php:260 msgid "Sort by price (asc)" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:259 +#: includes/admin/settings/class-wc-settings-products.php:261 msgid "Sort by price (desc)" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:265 +#: includes/admin/settings/class-wc-settings-products.php:267 msgid "Add to cart" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:266 +#: includes/admin/settings/class-wc-settings-products.php:268 msgid "Redirect to the cart page after successful addition" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:274 +#: includes/admin/settings/class-wc-settings-products.php:276 msgid "Enable AJAX add to cart buttons on archives" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:286 +#: includes/admin/settings/class-wc-settings-products.php:288 msgid "Weight Unit" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:287 +#: includes/admin/settings/class-wc-settings-products.php:289 msgid "This controls what unit you will define weights in." msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:294 +#: includes/admin/settings/class-wc-settings-products.php:296 msgid "kg" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:295 +#: includes/admin/settings/class-wc-settings-products.php:297 msgid "g" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:296 +#: includes/admin/settings/class-wc-settings-products.php:298 msgid "lbs" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:297 +#: includes/admin/settings/class-wc-settings-products.php:299 msgid "oz" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:303 +#: includes/admin/settings/class-wc-settings-products.php:305 msgid "Dimensions Unit" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:304 +#: includes/admin/settings/class-wc-settings-products.php:306 msgid "This controls what unit you will define lengths in." msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:312 +#: includes/admin/settings/class-wc-settings-products.php:314 msgid "cm" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:313 +#: includes/admin/settings/class-wc-settings-products.php:315 msgid "mm" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:314 +#: includes/admin/settings/class-wc-settings-products.php:316 msgid "in" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:315 +#: includes/admin/settings/class-wc-settings-products.php:317 msgid "yd" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:321 +#: includes/admin/settings/class-wc-settings-products.php:323 msgid "Product Ratings" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:322 +#: includes/admin/settings/class-wc-settings-products.php:324 msgid "Enable ratings on reviews" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:332 +#: includes/admin/settings/class-wc-settings-products.php:334 msgid "Ratings are required to leave a review" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:342 +#: includes/admin/settings/class-wc-settings-products.php:344 msgid "Show \"verified owner\" label for customer reviews" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:352 +#: includes/admin/settings/class-wc-settings-products.php:354 msgid "Only allow reviews from \"verified owners\"" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:363 +#: includes/admin/settings/class-wc-settings-products.php:365 msgid "Product Image Sizes" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:363 -msgid "These settings affect the actual dimensions of images in your catalog - the display on the front-end will still be affected by CSS styles. After changing these settings you may need to regenerate your thumbnails." +#: includes/admin/settings/class-wc-settings-products.php:365 +msgid "" +"These settings affect the actual dimensions of images in your catalog - the " +"display on the front-end will still be affected by CSS styles. After " +"changing these settings you may need to regenerate your " +"thumbnails." msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:366 +#: includes/admin/settings/class-wc-settings-products.php:368 msgid "Catalog Images" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:367 +#: includes/admin/settings/class-wc-settings-products.php:369 msgid "This size is usually used in product listings" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:380 +#: includes/admin/settings/class-wc-settings-products.php:382 msgid "Single Product Image" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:381 +#: includes/admin/settings/class-wc-settings-products.php:383 msgid "This is the size used by the main image on the product page." msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:394 +#: includes/admin/settings/class-wc-settings-products.php:396 msgid "Product Thumbnails" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:395 +#: includes/admin/settings/class-wc-settings-products.php:397 msgid "This size is usually used for the gallery of images on the product page." msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:409 +#: includes/admin/settings/class-wc-settings-products.php:411 msgid "Downloadable Products" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:412 +#: includes/admin/settings/class-wc-settings-products.php:414 msgid "File Download Method" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:413 -msgid "Forcing downloads will keep URLs hidden, but some servers may serve large files unreliably. If supported, X-Accel-Redirect/ X-Sendfile can be used to serve downloads instead (server requires mod_xsendfile)." -msgstr "" - -#: includes/admin/settings/class-wc-settings-products.php:421 -msgid "Force Downloads" -msgstr "" - -#: includes/admin/settings/class-wc-settings-products.php:422 -msgid "X-Accel-Redirect/X-Sendfile" +#: includes/admin/settings/class-wc-settings-products.php:415 +msgid "" +"Forcing downloads will keep URLs hidden, but some servers may serve large " +"files unreliably. If supported, X-Accel-Redirect/ " +"X-Sendfile can be used to serve downloads instead (server " +"requires mod_xsendfile)." msgstr "" #: includes/admin/settings/class-wc-settings-products.php:423 +msgid "Force Downloads" +msgstr "" + +#: includes/admin/settings/class-wc-settings-products.php:424 +msgid "X-Accel-Redirect/X-Sendfile" +msgstr "" + +#: includes/admin/settings/class-wc-settings-products.php:425 msgid "Redirect only" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:429 +#: includes/admin/settings/class-wc-settings-products.php:431 msgid "Access Restriction" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:430 +#: includes/admin/settings/class-wc-settings-products.php:432 msgid "Downloads require login" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:434 +#: includes/admin/settings/class-wc-settings-products.php:436 msgid "This setting does not apply to guest purchases." msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:440 +#: includes/admin/settings/class-wc-settings-products.php:442 msgid "Grant access to downloadable products after payment" msgstr "" -#: includes/admin/settings/class-wc-settings-products.php:444 -msgid "Enable this option to grant access to downloads when orders are \"processing\", rather than \"completed\"." +#: includes/admin/settings/class-wc-settings-products.php:446 +msgid "" +"Enable this option to grant access to downloads when orders are " +"\"processing\", rather than \"completed\"." msgstr "" -#: includes/admin/settings/class-wc-settings-shipping.php:41 -#: includes/admin/settings/class-wc-settings-shipping.php:67 +#: includes/admin/settings/class-wc-settings-shipping.php:42 +#: includes/admin/settings/class-wc-settings-shipping.php:69 msgid "Shipping Options" msgstr "" -#: includes/admin/settings/class-wc-settings-shipping.php:70 +#: includes/admin/settings/class-wc-settings-shipping.php:72 msgid "Shipping Calculations" msgstr "" -#: includes/admin/settings/class-wc-settings-shipping.php:71 +#: includes/admin/settings/class-wc-settings-shipping.php:73 msgid "Enable shipping" msgstr "" -#: includes/admin/settings/class-wc-settings-shipping.php:79 +#: includes/admin/settings/class-wc-settings-shipping.php:81 msgid "Enable the shipping calculator on the cart page" msgstr "" -#: includes/admin/settings/class-wc-settings-shipping.php:88 +#: includes/admin/settings/class-wc-settings-shipping.php:90 msgid "Hide shipping costs until an address is entered" msgstr "" -#: includes/admin/settings/class-wc-settings-shipping.php:97 +#: includes/admin/settings/class-wc-settings-shipping.php:99 msgid "Shipping Display Mode" msgstr "" -#: includes/admin/settings/class-wc-settings-shipping.php:98 +#: includes/admin/settings/class-wc-settings-shipping.php:100 msgid "This controls how multiple shipping methods are displayed on the frontend." msgstr "" -#: includes/admin/settings/class-wc-settings-shipping.php:103 +#: includes/admin/settings/class-wc-settings-shipping.php:105 msgid "Display shipping methods with \"radio\" buttons" msgstr "" -#: includes/admin/settings/class-wc-settings-shipping.php:104 +#: includes/admin/settings/class-wc-settings-shipping.php:106 msgid "Display shipping methods in a dropdown" msgstr "" -#: includes/admin/settings/class-wc-settings-shipping.php:111 +#: includes/admin/settings/class-wc-settings-shipping.php:113 msgid "Shipping Destination" msgstr "" -#: includes/admin/settings/class-wc-settings-shipping.php:112 -msgid "Ship to billing address by default" +#: includes/admin/settings/class-wc-settings-shipping.php:114 +msgid "This controls which shipping address is used by default." msgstr "" -#: includes/admin/settings/class-wc-settings-shipping.php:122 +#: includes/admin/settings/class-wc-settings-shipping.php:119 +msgid "Default to shipping address" +msgstr "" + +#: includes/admin/settings/class-wc-settings-shipping.php:120 +msgid "Default to billing address" +msgstr "" + +#: includes/admin/settings/class-wc-settings-shipping.php:121 msgid "Only ship to the users billing address" msgstr "" -#: includes/admin/settings/class-wc-settings-shipping.php:132 +#: includes/admin/settings/class-wc-settings-shipping.php:129 msgid "Restrict shipping to Location(s)" msgstr "" -#: includes/admin/settings/class-wc-settings-shipping.php:133 -msgid "Choose which countries you want to ship to, or choose to ship to all locations you sell to." +#: includes/admin/settings/class-wc-settings-shipping.php:130 +msgid "" +"Choose which countries you want to ship to, or choose to ship to all locations you sell to." msgstr "" -#: includes/admin/settings/class-wc-settings-shipping.php:140 +#: includes/admin/settings/class-wc-settings-shipping.php:137 msgid "Ship to all countries you sell to" msgstr "" -#: includes/admin/settings/class-wc-settings-shipping.php:141 +#: includes/admin/settings/class-wc-settings-shipping.php:138 msgid "Ship to all countries" msgstr "" -#: includes/admin/settings/class-wc-settings-shipping.php:142 +#: includes/admin/settings/class-wc-settings-shipping.php:139 msgid "Ship to specific countries only" msgstr "" -#: includes/admin/settings/class-wc-settings-shipping.php:197 +#: includes/admin/settings/class-wc-settings-shipping.php:196 msgid "Shipping Methods" msgstr "" -#: includes/admin/settings/class-wc-settings-shipping.php:204 +#: includes/admin/settings/class-wc-settings-shipping.php:203 msgid "ID" msgstr "" -#: includes/admin/settings/class-wc-settings-shipping.php:215 +#: includes/admin/settings/class-wc-settings-shipping.php:247 +msgid "Automatic" +msgstr "" + +#: includes/admin/settings/class-wc-settings-shipping.php:247 +msgid "The cheapest available shipping method will be selected by default." +msgstr "" + +#: includes/admin/settings/class-wc-settings-shipping.php:248 msgid "Drag and drop the above shipping methods to control their display order." msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:40 -#: includes/admin/settings/class-wc-settings-tax.php:68 +#: includes/admin/settings/class-wc-settings-tax.php:41 +#: includes/admin/settings/class-wc-settings-tax.php:73 msgid "Tax Options" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:41 +#: includes/admin/settings/class-wc-settings-tax.php:42 msgid "Standard Rates" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:49 +#: includes/admin/settings/class-wc-settings-tax.php:50 msgid "%s Rates" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:71 +#: includes/admin/settings/class-wc-settings-tax.php:76 msgid "Enable Taxes" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:72 +#: includes/admin/settings/class-wc-settings-tax.php:77 msgid "Enable taxes and tax calculations" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:79 +#: includes/admin/settings/class-wc-settings-tax.php:84 msgid "Prices Entered With Tax" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:83 -msgid "This option is important as it will affect how you input prices. Changing it will not update existing products." +#: includes/admin/settings/class-wc-settings-tax.php:88 +msgid "" +"This option is important as it will affect how you input prices. Changing " +"it will not update existing products." msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:85 +#: includes/admin/settings/class-wc-settings-tax.php:90 msgid "Yes, I will enter prices inclusive of tax" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:86 +#: includes/admin/settings/class-wc-settings-tax.php:91 msgid "No, I will enter prices exclusive of tax" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:91 +#: includes/admin/settings/class-wc-settings-tax.php:96 msgid "Calculate Tax Based On:" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:93 +#: includes/admin/settings/class-wc-settings-tax.php:98 msgid "This option determines which address is used to calculate tax." msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:97 +#: includes/admin/settings/class-wc-settings-tax.php:102 msgid "Customer shipping address" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:98 +#: includes/admin/settings/class-wc-settings-tax.php:103 msgid "Customer billing address" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:99 -#: includes/admin/settings/class-wc-settings-tax.php:111 +#: includes/admin/settings/class-wc-settings-tax.php:104 +#: includes/admin/settings/class-wc-settings-tax.php:116 msgid "Shop base address" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:104 +#: includes/admin/settings/class-wc-settings-tax.php:109 msgid "Default Customer Address:" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:106 -msgid "This option determines the customers default address (before they input their own)." +#: includes/admin/settings/class-wc-settings-tax.php:111 +msgid "" +"This option determines the customers default address (before they input " +"their own)." msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:110 +#: includes/admin/settings/class-wc-settings-tax.php:115 msgid "No address" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:116 +#: includes/admin/settings/class-wc-settings-tax.php:121 msgid "Shipping Tax Class:" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:117 -msgid "Optionally control which tax class shipping gets, or leave it so shipping tax is based on the cart items themselves." -msgstr "" - #: includes/admin/settings/class-wc-settings-tax.php:122 -msgid "Shipping tax class based on cart items" +msgid "" +"Optionally control which tax class shipping gets, or leave it so shipping " +"tax is based on the cart items themselves." msgstr "" #: includes/admin/settings/class-wc-settings-tax.php:127 +msgid "Shipping tax class based on cart items" +msgstr "" + +#: includes/admin/settings/class-wc-settings-tax.php:132 msgid "Rounding" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:128 +#: includes/admin/settings/class-wc-settings-tax.php:133 msgid "Round tax at subtotal level, instead of rounding per line" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:135 +#: includes/admin/settings/class-wc-settings-tax.php:140 msgid "Additional Tax Classes" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:136 -msgid "List additonal tax classes below (1 per line). This is in addition to the default Standard Rate. Tax classes can be assigned to products." +#: includes/admin/settings/class-wc-settings-tax.php:141 +msgid "" +"List additional tax classes below (1 per line). This is in addition to the " +"default Standard Rate. Tax classes can be assigned to products." msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:140 +#: includes/admin/settings/class-wc-settings-tax.php:145 msgid "Reduced Rate%sZero Rate" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:144 +#: includes/admin/settings/class-wc-settings-tax.php:149 msgid "Display prices in the shop:" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:149 -#: includes/admin/settings/class-wc-settings-tax.php:168 +#: includes/admin/settings/class-wc-settings-tax.php:154 +#: includes/admin/settings/class-wc-settings-tax.php:173 msgid "Including tax" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:150 -#: includes/admin/settings/class-wc-settings-tax.php:169 +#: includes/admin/settings/class-wc-settings-tax.php:155 +#: includes/admin/settings/class-wc-settings-tax.php:174 msgid "Excluding tax" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:155 +#: includes/admin/settings/class-wc-settings-tax.php:160 msgid "Price display suffix:" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:159 -msgid "Define text to show after your product prices. This could be, for example, \"inc. Vat\" to explain your pricing. You can also have prices substituted here using one of the following: {price_including_tax}, {price_excluding_tax}." +#: includes/admin/settings/class-wc-settings-tax.php:164 +msgid "" +"Define text to show after your product prices. This could be, for example, " +"\"inc. Vat\" to explain your pricing. You can also have prices substituted " +"here using one of the following: {price_including_tax}, " +"{price_excluding_tax}." msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:163 +#: includes/admin/settings/class-wc-settings-tax.php:168 msgid "Display prices during cart/checkout:" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:175 +#: includes/admin/settings/class-wc-settings-tax.php:180 msgid "Display tax totals:" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:180 +#: includes/admin/settings/class-wc-settings-tax.php:185 msgid "As a single total" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:181 +#: includes/admin/settings/class-wc-settings-tax.php:186 msgid "Itemized" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:241 +#: includes/admin/settings/class-wc-settings-tax.php:252 msgid "Tax Rates for the \"%s\" Class" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:242 -msgid "Define tax rates for countries and states below. See here for available alpha-2 country codes." +#: includes/admin/settings/class-wc-settings-tax.php:253 +msgid "" +"Define tax rates for countries and states below. See " +"here for available alpha-2 country codes." msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:248 +#: includes/admin/settings/class-wc-settings-tax.php:259 msgid "Country Code" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:248 +#: includes/admin/settings/class-wc-settings-tax.php:259 msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:250 +#: includes/admin/settings/class-wc-settings-tax.php:261 msgid "State Code" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:250 +#: includes/admin/settings/class-wc-settings-tax.php:261 msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:252 -#: includes/admin/settings/class-wc-settings-tax.php:381 +#: includes/admin/settings/class-wc-settings-tax.php:263 +#: includes/admin/settings/class-wc-settings-tax.php:392 msgid "ZIP/Postcode" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:252 -msgid "Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank to apply to all areas. Wildcards (*) can be used. Ranges for numeric postcodes (e.g. 12345-12350) will be expanded into individual postcodes." +#: includes/admin/settings/class-wc-settings-tax.php:263 +msgid "" +"Postcode for this rule. Semi-colon (;) separate multiple values. Leave " +"blank to apply to all areas. Wildcards (*) can be used. Ranges for numeric " +"postcodes (e.g. 12345-12350) will be expanded into individual postcodes." msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:254 -msgid "Cities for this rule. Semi-colon (;) separate multiple values. Leave blank to apply to all cities." +#: includes/admin/settings/class-wc-settings-tax.php:265 +msgid "" +"Cities for this rule. Semi-colon (;) separate multiple values. Leave blank " +"to apply to all cities." msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:256 +#: includes/admin/settings/class-wc-settings-tax.php:267 msgid "Rate %" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:256 +#: includes/admin/settings/class-wc-settings-tax.php:267 msgid "Enter a tax rate (percentage) to 4 decimal places." msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:258 +#: includes/admin/settings/class-wc-settings-tax.php:269 msgid "Tax Name" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:258 +#: includes/admin/settings/class-wc-settings-tax.php:269 msgid "Enter a name for this tax rate." msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:260 -#: includes/admin/settings/class-wc-settings-tax.php:381 +#: includes/admin/settings/class-wc-settings-tax.php:271 +#: includes/admin/settings/class-wc-settings-tax.php:392 msgid "Priority" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:260 -msgid "Choose a priority for this tax rate. Only 1 matching rate per priority will be used. To define multiple tax rates for a single area you need to specify a different priority per rate." +#: includes/admin/settings/class-wc-settings-tax.php:271 +msgid "" +"Choose a priority for this tax rate. Only 1 matching rate per priority will " +"be used. To define multiple tax rates for a single area you need to specify " +"a different priority per rate." msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:262 -#: includes/admin/settings/class-wc-settings-tax.php:381 +#: includes/admin/settings/class-wc-settings-tax.php:273 +#: includes/admin/settings/class-wc-settings-tax.php:392 msgid "Compound" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:262 -msgid "Choose whether or not this is a compound rate. Compound tax rates are applied on top of other tax rates." +#: includes/admin/settings/class-wc-settings-tax.php:273 +msgid "" +"Choose whether or not this is a compound rate. Compound tax rates are " +"applied on top of other tax rates." msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:264 +#: includes/admin/settings/class-wc-settings-tax.php:275 msgid "Choose whether or not this tax rate also gets applied to shipping." msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:271 +#: includes/admin/settings/class-wc-settings-tax.php:294 +msgid "Tax rate ID" +msgstr "" + +#: includes/admin/settings/class-wc-settings-tax.php:347 msgid "Insert row" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:272 +#: includes/admin/settings/class-wc-settings-tax.php:348 msgid "Remove selected row(s)" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:288 +#: includes/admin/settings/class-wc-settings-tax.php:364 msgid "Import CSV" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:374 +#: includes/admin/settings/class-wc-settings-tax.php:385 msgid "No row(s) selected" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:381 +#: includes/admin/settings/class-wc-settings-tax.php:392 msgid "Country Code" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:381 +#: includes/admin/settings/class-wc-settings-tax.php:392 msgid "State Code" msgstr "" -#: includes/admin/settings/class-wc-settings-tax.php:381 -msgid "Rate %" -msgstr "" - -#: includes/admin/settings/class-wc-settings-tax.php:381 +#: includes/admin/settings/class-wc-settings-tax.php:392 msgid "Tax Name" msgstr "" -#: includes/admin/views/html-admin-page-addons.php:5 +#: includes/admin/views/html-admin-page-addons.php:16 msgid "Browse all extensions" msgstr "" -#: includes/admin/views/html-admin-page-addons.php:6 +#: includes/admin/views/html-admin-page-addons.php:17 msgid "Browse themes" msgstr "" -#: includes/admin/views/html-admin-page-addons.php:11 +#: includes/admin/views/html-admin-page-addons.php:23 msgid "Popular" msgstr "" -#: includes/admin/views/html-admin-page-addons.php:12 +#: includes/admin/views/html-admin-page-addons.php:24 msgid "Gateways" msgstr "" -#: includes/admin/views/html-admin-page-addons.php:14 +#: includes/admin/views/html-admin-page-addons.php:26 msgid "Import/export" msgstr "" -#: includes/admin/views/html-admin-page-addons.php:16 +#: includes/admin/views/html-admin-page-addons.php:28 msgid "Marketing" msgstr "" -#: includes/admin/views/html-admin-page-addons.php:17 +#: includes/admin/views/html-admin-page-addons.php:29 +msgid "Accounting" +msgstr "" + +#: includes/admin/views/html-admin-page-addons.php:30 msgid "Free" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:2 -msgid "Please include this information when requesting support:" +#: includes/admin/views/html-admin-page-addons.php:31 +msgid "Third-party" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:3 +#: includes/admin/views/html-admin-page-addons.php:91 +msgid "" +"Our catalog of WooCommerce Extensions can be found on WooThemes.com here: " +"WooCommerce Extensions Catalog" +msgstr "" + +#: includes/admin/views/html-admin-page-status-logs.php:15 +msgid "Log file: %s (%s)" +msgstr "" + +#: includes/admin/views/html-admin-page-status-logs.php:33 +msgid "There are currently no logs to view." +msgstr "" + +#: includes/admin/views/html-admin-page-status-report.php:13 +msgid "" +"Please copy and paste this information in your ticket when contacting " +"support:" +msgstr "" + +#: includes/admin/views/html-admin-page-status-report.php:14 msgid "Get System Report" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:11 -msgid "Environment" +#: includes/admin/views/html-admin-page-status-report.php:17 +msgid "Copied!" msgstr "" #: includes/admin/views/html-admin-page-status-report.php:17 -msgid "Home URL" -msgstr "" - -#: includes/admin/views/html-admin-page-status-report.php:21 -msgid "Site URL" +msgid "Copy for Support" msgstr "" #: includes/admin/views/html-admin-page-status-report.php:25 +msgid "Environment" +msgstr "" + +#: includes/admin/views/html-admin-page-status-report.php:31 +msgid "Home URL" +msgstr "" + +#: includes/admin/views/html-admin-page-status-report.php:35 +msgid "Site URL" +msgstr "" + +#: includes/admin/views/html-admin-page-status-report.php:39 msgid "WC Version" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:29 +#: includes/admin/views/html-admin-page-status-report.php:43 msgid "WC Database Version" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:33 +#: includes/admin/views/html-admin-page-status-report.php:47 msgid "WP Version" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:37 +#: includes/admin/views/html-admin-page-status-report.php:51 msgid "WP Multisite Enabled" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:41 +#: includes/admin/views/html-admin-page-status-report.php:55 msgid "Web Server Info" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:45 +#: includes/admin/views/html-admin-page-status-report.php:59 msgid "PHP Version" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:49 +#: includes/admin/views/html-admin-page-status-report.php:63 msgid "MySQL Version" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:53 +#: includes/admin/views/html-admin-page-status-report.php:73 +msgid "WP Active Plugins" +msgstr "" + +#: includes/admin/views/html-admin-page-status-report.php:77 msgid "WP Memory Limit" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:58 -msgid "%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" +#: includes/admin/views/html-admin-page-status-report.php:82 +msgid "" +"%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:65 +#: includes/admin/views/html-admin-page-status-report.php:89 msgid "WP Debug Mode" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:69 +#: includes/admin/views/html-admin-page-status-report.php:93 msgid "WP Language" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:73 +#: includes/admin/views/html-admin-page-status-report.php:97 msgid "WP Max Upload Size" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:78 +#: includes/admin/views/html-admin-page-status-report.php:102 msgid "PHP Post Max Size" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:82 +#: includes/admin/views/html-admin-page-status-report.php:106 msgid "PHP Time Limit" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:86 +#: includes/admin/views/html-admin-page-status-report.php:110 msgid "PHP Max Input Vars" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:90 +#: includes/admin/views/html-admin-page-status-report.php:114 msgid "SUHOSIN Installed" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:95 +#: includes/admin/views/html-admin-page-status-report.php:119 msgid "WC Logging" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:98 -msgid "Log directory is writable." +#: includes/admin/views/html-admin-page-status-report.php:122 +msgid "Log directory (%s) is writable." msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:100 -msgid "Log directory (woocommerce/logs/) is not writable. Logging will not be possible." -msgstr "" - -#: includes/admin/views/html-admin-page-status-report.php:104 -msgid "Default Timezone" -msgstr "" - -#: includes/admin/views/html-admin-page-status-report.php:108 -msgid "Default timezone is %s - it should be UTC" -msgstr "" - -#: includes/admin/views/html-admin-page-status-report.php:110 -msgid "Default timezone is %s" -msgstr "" - -#: includes/admin/views/html-admin-page-status-report.php:118 -msgid "fsockopen/cURL" -msgstr "" - -#: includes/admin/views/html-admin-page-status-report.php:121 -msgid "Your server has fsockopen and cURL enabled." -msgstr "" - -#: includes/admin/views/html-admin-page-status-report.php:123 -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "" - -#: includes/admin/views/html-admin-page-status-report.php:125 -msgid "Your server has cURL enabled, fsockopen is disabled." +#: includes/admin/views/html-admin-page-status-report.php:124 +msgid "" +"Log directory (%s) is not writable. To allow logging, make " +"this writable or define a custom WC_LOG_DIR." msgstr "" #: includes/admin/views/html-admin-page-status-report.php:129 -msgid "Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider." +msgid "Default Timezone" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:134 +#: includes/admin/views/html-admin-page-status-report.php:133 +msgid "Default timezone is %s - it should be UTC" +msgstr "" + +#: includes/admin/views/html-admin-page-status-report.php:135 +msgid "Default timezone is %s" +msgstr "" + +#: includes/admin/views/html-admin-page-status-report.php:143 +msgid "fsockopen/cURL" +msgstr "" + +#: includes/admin/views/html-admin-page-status-report.php:146 +msgid "Your server has fsockopen and cURL enabled." +msgstr "" + +#: includes/admin/views/html-admin-page-status-report.php:148 +msgid "Your server has fsockopen enabled, cURL is disabled." +msgstr "" + +#: includes/admin/views/html-admin-page-status-report.php:150 +msgid "Your server has cURL enabled, fsockopen is disabled." +msgstr "" + +#: includes/admin/views/html-admin-page-status-report.php:154 +msgid "" +"Your server does not have fsockopen or cURL enabled - PayPal IPN and other " +"scripts which communicate with other servers will not work. Contact your " +"hosting provider." +msgstr "" + +#: includes/admin/views/html-admin-page-status-report.php:159 msgid "SOAP Client" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:136 +#: includes/admin/views/html-admin-page-status-report.php:161 msgid "Your server has the SOAP Client class enabled." msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:139 -msgid "Your server does not have the SOAP Client class enabled - some gateway plugins which use SOAP may not work as expected." +#: includes/admin/views/html-admin-page-status-report.php:164 +msgid "" +"Your server does not have the SOAP Client class enabled " +"- some gateway plugins which use SOAP may not work as expected." msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:144 +#: includes/admin/views/html-admin-page-status-report.php:169 msgid "WP Remote Post" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:155 +#: includes/admin/views/html-admin-page-status-report.php:180 msgid "wp_remote_post() was successful - PayPal IPN is working." msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:158 -msgid "wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:" +#: includes/admin/views/html-admin-page-status-report.php:183 +msgid "" +"wp_remote_post() failed. PayPal IPN won't work with your server. Contact " +"your hosting provider. Error:" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:161 +#: includes/admin/views/html-admin-page-status-report.php:186 msgid "wp_remote_post() failed. PayPal IPN may not work with your server." msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:184 +#: includes/admin/views/html-admin-page-status-report.php:209 msgid "Locale" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:200 +#: includes/admin/views/html-admin-page-status-report.php:225 msgid "Plugins" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:206 +#: includes/admin/views/html-admin-page-status-report.php:231 msgid "Installed Plugins" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:226 +#: includes/admin/views/html-admin-page-status-report.php:251 msgid "Visit plugin homepage" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:250 -#: includes/admin/views/html-admin-page-status-report.php:432 +#: includes/admin/views/html-admin-page-status-report.php:275 +#: includes/admin/views/html-admin-page-status-report.php:447 msgid "is available" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:253 +#: includes/admin/views/html-admin-page-status-report.php:278 msgid "by" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:253 +#: includes/admin/views/html-admin-page-status-report.php:278 msgid "version" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:275 +#: includes/admin/views/html-admin-page-status-report.php:300 msgid "Force SSL" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:282 +#: includes/admin/views/html-admin-page-status-report.php:307 msgid "WC Pages" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:289 -msgid "Shop Base" -msgstr "" - -#: includes/admin/views/html-admin-page-status-report.php:293 -msgid "Cart" -msgstr "" - -#: includes/admin/views/html-admin-page-status-report.php:301 -msgid "My Account" -msgstr "" - -#: includes/admin/views/html-admin-page-status-report.php:321 +#: includes/admin/views/html-admin-page-status-report.php:346 msgid "Page not set" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:331 +#: includes/admin/views/html-admin-page-status-report.php:356 msgid "Page does not exist" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:336 +#: includes/admin/views/html-admin-page-status-report.php:361 msgid "Page does not contain the shortcode: %s" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:355 +#: includes/admin/views/html-admin-page-status-report.php:380 msgid "WC Taxonomies" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:361 -msgid "Order Statuses" -msgstr "" - -#: includes/admin/views/html-admin-page-status-report.php:371 +#: includes/admin/views/html-admin-page-status-report.php:386 msgid "Product Types" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:384 +#: includes/admin/views/html-admin-page-status-report.php:399 msgid "Theme" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:421 +#: includes/admin/views/html-admin-page-status-report.php:436 msgid "Theme Name" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:427 +#: includes/admin/views/html-admin-page-status-report.php:442 msgid "Theme Version" msgstr "" -#: includes/admin/views/html-admin-page-status-report.php:436 -msgid "Author URL" -msgstr "" - -#: includes/admin/views/html-admin-page-status-report.php:445 -msgid "Templates" -msgstr "" - #: includes/admin/views/html-admin-page-status-report.php:451 -msgid "Template Overrides" +msgid "Theme Author URL" +msgstr "" + +#: includes/admin/views/html-admin-page-status-report.php:457 +msgid "Is Child Theme" +msgstr "" + +#: includes/admin/views/html-admin-page-status-report.php:465 +msgid "Parent Theme Name" +msgstr "" + +#: includes/admin/views/html-admin-page-status-report.php:469 +msgid "Parent Theme Version" +msgstr "" + +#: includes/admin/views/html-admin-page-status-report.php:473 +msgid "Parent Theme Author URL" +msgstr "" + +#: includes/admin/views/html-admin-page-status-report.php:480 +msgid "WooCommerce Support" msgstr "" #: includes/admin/views/html-admin-page-status-report.php:483 +msgid "Not Declared" +msgstr "" + +#: includes/admin/views/html-admin-page-status-report.php:493 +msgid "Templates" +msgstr "" + +#: includes/admin/views/html-admin-page-status-report.php:527 +msgid "" +"%s version %s is out of " +"date. The core version is %s" +msgstr "" + +#: includes/admin/views/html-admin-page-status-report.php:539 +#: includes/admin/views/html-admin-page-status-report.php:547 +msgid "Template Overrides" +msgstr "" + +#: includes/admin/views/html-admin-page-status-report.php:548 msgid "No overrides present in theme." msgstr "" -#: includes/admin/views/html-admin-page-status-tools.php:7 -#: includes/admin/views/html-admin-page-status.php:6 +#: includes/admin/views/html-admin-page-status-tools.php:18 +#: includes/admin/views/html-admin-page-status.php:17 msgid "Tools" msgstr "" -#: includes/admin/views/html-admin-page-status-tools.php:23 -msgid "Template Debug Mode" -msgstr "" - -#: includes/admin/views/html-admin-page-status-tools.php:29 -msgid "This tool will disable template overrides for logged-in administrators for debugging purposes." -msgstr "" - #: includes/admin/views/html-admin-page-status-tools.php:34 -msgid "Remove post types on uninstall" +msgid "Shipping Debug Mode" msgstr "" #: includes/admin/views/html-admin-page-status-tools.php:40 -msgid "This tool will delete all product and order post data when uninstalling via Plugins > Delete." +msgid "This tool will disable shipping rate caching." msgstr "" -#: includes/admin/views/html-admin-page-status-tools.php:47 +#: includes/admin/views/html-admin-page-status-tools.php:45 +msgid "Template Debug Mode" +msgstr "" + +#: includes/admin/views/html-admin-page-status-tools.php:51 +msgid "" +"This tool will disable template overrides for logged-in administrators for " +"debugging purposes." +msgstr "" + +#: includes/admin/views/html-admin-page-status-tools.php:56 +msgid "Remove post types on uninstall" +msgstr "" + +#: includes/admin/views/html-admin-page-status-tools.php:62 +msgid "" +"This tool will delete all product and order post data when uninstalling via " +"Plugins > Delete." +msgstr "" + +#: includes/admin/views/html-admin-page-status-tools.php:69 msgid "Save Changes" msgstr "" -#: includes/admin/views/html-admin-settings.php:20 +#: includes/admin/views/html-admin-page-status.php:18 +msgid "Logs" +msgstr "" + +#: includes/admin/views/html-admin-settings.php:31 msgid "Save changes" msgstr "" -#: includes/admin/views/html-bulk-edit-product.php:15 -#: includes/admin/views/html-bulk-edit-product.php:39 -#: includes/admin/views/html-bulk-edit-product.php:63 -#: includes/admin/views/html-bulk-edit-product.php:82 -#: includes/admin/views/html-bulk-edit-product.php:108 -#: includes/admin/views/html-bulk-edit-product.php:132 -#: includes/admin/views/html-bulk-edit-product.php:156 -#: includes/admin/views/html-bulk-edit-product.php:175 -#: includes/admin/views/html-bulk-edit-product.php:193 -#: includes/admin/views/html-bulk-edit-product.php:212 -#: includes/admin/views/html-bulk-edit-product.php:231 -#: includes/admin/views/html-bulk-edit-product.php:252 +#: includes/admin/views/html-bulk-edit-product.php:26 +#: includes/admin/views/html-bulk-edit-product.php:50 +#: includes/admin/views/html-bulk-edit-product.php:74 +#: includes/admin/views/html-bulk-edit-product.php:93 +#: includes/admin/views/html-bulk-edit-product.php:119 +#: includes/admin/views/html-bulk-edit-product.php:143 +#: includes/admin/views/html-bulk-edit-product.php:167 +#: includes/admin/views/html-bulk-edit-product.php:186 +#: includes/admin/views/html-bulk-edit-product.php:204 +#: includes/admin/views/html-bulk-edit-product.php:223 +#: includes/admin/views/html-bulk-edit-product.php:242 +#: includes/admin/views/html-bulk-edit-product.php:263 +#: includes/admin/views/html-bulk-edit-product.php:284 msgid "— No Change —" msgstr "" -#: includes/admin/views/html-bulk-edit-product.php:16 -#: includes/admin/views/html-bulk-edit-product.php:40 -#: includes/admin/views/html-bulk-edit-product.php:109 -#: includes/admin/views/html-bulk-edit-product.php:133 -#: includes/admin/views/html-bulk-edit-product.php:232 +#: includes/admin/views/html-bulk-edit-product.php:27 +#: includes/admin/views/html-bulk-edit-product.php:51 +#: includes/admin/views/html-bulk-edit-product.php:120 +#: includes/admin/views/html-bulk-edit-product.php:144 +#: includes/admin/views/html-bulk-edit-product.php:243 msgid "Change to:" msgstr "" -#: includes/admin/views/html-bulk-edit-product.php:17 -#: includes/admin/views/html-bulk-edit-product.php:41 +#: includes/admin/views/html-bulk-edit-product.php:28 +#: includes/admin/views/html-bulk-edit-product.php:52 msgid "Increase by (fixed amount or %):" msgstr "" -#: includes/admin/views/html-bulk-edit-product.php:18 -#: includes/admin/views/html-bulk-edit-product.php:42 +#: includes/admin/views/html-bulk-edit-product.php:29 +#: includes/admin/views/html-bulk-edit-product.php:53 msgid "Decrease by (fixed amount or %):" msgstr "" -#: includes/admin/views/html-bulk-edit-product.php:28 -#: includes/admin/views/html-bulk-edit-product.php:53 +#: includes/admin/views/html-bulk-edit-product.php:39 +#: includes/admin/views/html-bulk-edit-product.php:64 msgid "Enter price" msgstr "" -#: includes/admin/views/html-bulk-edit-product.php:34 -#: includes/admin/views/html-quick-edit-product.php:29 +#: includes/admin/views/html-bulk-edit-product.php:45 +#: includes/admin/views/html-quick-edit-product.php:40 msgid "Sale" msgstr "" -#: includes/admin/views/html-bulk-edit-product.php:43 +#: includes/admin/views/html-bulk-edit-product.php:54 msgid "Decrease regular price by (fixed amount or %):" msgstr "" -#: includes/admin/views/html-bulk-edit-product.php:127 -#: includes/admin/views/html-quick-edit-product.php:95 +#: includes/admin/views/html-bulk-edit-product.php:138 +#: includes/admin/views/html-quick-edit-product.php:106 msgid "L/W/H" msgstr "" -#: includes/admin/views/html-bulk-edit-product.php:151 -#: includes/admin/views/html-quick-edit-product.php:109 +#: includes/admin/views/html-bulk-edit-product.php:162 +#: includes/admin/views/html-quick-edit-product.php:120 msgid "Visibility" msgstr "" -#: includes/admin/views/html-bulk-edit-product.php:157 -#: includes/admin/views/html-quick-edit-product.php:114 +#: includes/admin/views/html-bulk-edit-product.php:168 +#: includes/admin/views/html-quick-edit-product.php:125 msgid "Catalog & search" msgstr "" -#: includes/admin/views/html-bulk-edit-product.php:188 -#: includes/admin/views/html-quick-edit-product.php:132 +#: includes/admin/views/html-bulk-edit-product.php:199 +#: includes/admin/views/html-quick-edit-product.php:143 msgid "In stock?" msgstr "" -#: includes/admin/views/html-bulk-edit-product.php:247 -#: includes/admin/views/html-quick-edit-product.php:167 +#: includes/admin/views/html-bulk-edit-product.php:258 +#: includes/admin/views/html-quick-edit-product.php:178 msgid "Backorders?" msgstr "" -#: includes/admin/views/html-notice-install.php:5 -msgid "Welcome to WooCommerce – You're almost ready to start selling :)" +#: includes/admin/views/html-bulk-edit-product.php:279 +msgid "Sold Individually?" msgstr "" -#: includes/admin/views/html-notice-install.php:6 +#: includes/admin/views/html-notice-install.php:13 +msgid "" +"Welcome to WooCommerce – You're almost ready to " +"start selling :)" +msgstr "" + +#: includes/admin/views/html-notice-install.php:14 msgid "Skip setup" msgstr "" -#: includes/admin/views/html-notice-theme-support.php:5 -msgid "Your theme does not declare WooCommerce support – if you encounter layout issues please read our integration guide or choose a WooCommerce theme :)" +#: includes/admin/views/html-notice-mijireh.php:20 +msgid "" +"The Mijireh payment gateway is deprecated – It is " +"recommended that you install the replacement Mijireh plugin from " +"WordPress.org as soon as possible. Mijireh will be removed from WC core " +"completely as part of a future update." msgstr "" -#: includes/admin/views/html-notice-theme-support.php:6 -msgid "Theme Integration Guide" +#: includes/admin/views/html-notice-mijireh.php:22 +msgid "Install the new Mijireh plugin" msgstr "" -#: includes/admin/views/html-notice-theme-support.php:6 +#: includes/admin/views/html-notice-template-check.php:13 +msgid "" +"Your theme has bundled outdated copies of WooCommerce template " +"files – if you encounter functionality issues on the " +"frontend this could the reason. Ensure you update or remove them (in " +"general we recommend only bundling the template files you actually need to " +"customize). See the system report for full details." +msgstr "" + +#: includes/admin/views/html-notice-template-check.php:14 +#: includes/admin/views/html-notice-theme-support.php:14 msgid "Hide this notice" msgstr "" -#: includes/admin/views/html-notice-update.php:5 -msgid "WooCommerce Data Update Required – We just need to update your install to the latest version" +#: includes/admin/views/html-notice-theme-support.php:13 +msgid "" +"Your theme does not declare WooCommerce support – if " +"you encounter layout issues please read our integration guide or choose a " +"WooCommerce theme :)" msgstr "" -#: includes/admin/views/html-notice-update.php:6 +#: includes/admin/views/html-notice-theme-support.php:14 +msgid "Theme Integration Guide" +msgstr "" + +#: includes/admin/views/html-notice-translation-upgrade.php:17 +msgid "" +"WooCommerce Translation Available – Install or " +"update your %s translation to version %s." +msgstr "" + +#: includes/admin/views/html-notice-translation-upgrade.php:21 +msgid "Update Translation" +msgstr "" + +#: includes/admin/views/html-notice-translation-upgrade.php:23 +msgid "Update translation" +msgstr "" + +#: includes/admin/views/html-notice-translation-upgrade.php:24 +msgid "Force Update Translation" +msgstr "" + +#: includes/admin/views/html-notice-translation-upgrade.php:26 +msgid "Hide This Message" +msgstr "" + +#: includes/admin/views/html-notice-update.php:13 +msgid "" +"WooCommerce Data Update Required – We just need to " +"update your install to the latest version" +msgstr "" + +#: includes/admin/views/html-notice-update.php:14 msgid "Run the updater" msgstr "" -#: includes/admin/views/html-notice-update.php:10 -msgid "It is strongly recommended that you backup your database before proceeding. Are you sure you wish to run the updater now?" +#: includes/admin/views/html-notice-update.php:18 +msgid "" +"It is strongly recommended that you backup your database before proceeding. " +"Are you sure you wish to run the updater now?" msgstr "" -#: includes/admin/views/html-quick-edit-product.php:24 +#: includes/admin/views/html-quick-edit-product.php:35 msgid "Regular price" msgstr "" -#: includes/admin/views/html-quick-edit-product.php:31 +#: includes/admin/views/html-quick-edit-product.php:42 msgid "Sale price" msgstr "" -#: includes/admin/views/html-report-by-date.php:16 +#: includes/admin/views/html-report-by-date.php:22 msgid "Custom:" msgstr "" -#: includes/admin/wc-admin-functions.php:193 +#: includes/admin/wc-admin-functions.php:198 msgid "Could not compile woocommerce.less:" msgstr "" + #. Plugin URI of the plugin/theme msgid "http://www.woothemes.com/woocommerce/" msgstr "" @@ -5014,3 +5495,115 @@ msgstr "" #. Author URI of the plugin/theme msgid "http://woothemes.com" msgstr "" + +#: includes/admin/class-wc-admin-menus.php:128 +#: includes/admin/class-wc-admin-menus.php:130 +msgctxt "Admin menu name" +msgid "Orders" +msgstr "" + +#: includes/admin/class-wc-admin-permalink-settings.php:65 +msgctxt "slug" +msgid "product-category" +msgstr "" + +#: includes/admin/class-wc-admin-permalink-settings.php:75 +msgctxt "slug" +msgid "product-tag" +msgstr "" + +#: includes/admin/class-wc-admin-permalink-settings.php:187 +msgctxt "slug" +msgid "product" +msgstr "" + +#: includes/admin/class-wc-admin-permalink-settings.php:100 +#: includes/admin/class-wc-admin-permalink-settings.php:200 +msgctxt "default-slug" +msgid "shop" +msgstr "" + +#: includes/admin/class-wc-admin-permalink-settings.php:101 +msgctxt "default-slug" +msgid "product" +msgstr "" + +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:75 +msgctxt "placeholder" +msgid "YYYY-MM-DD" +msgstr "" + +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:192 +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:204 +msgctxt "placeholder" +msgid "Unlimited usage" +msgstr "" + +#: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:198 +msgctxt "placeholder" +msgid "Apply to all qualifying items in cart" +msgstr "" + +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:157 +msgctxt "placeholder" +msgid "Buy product" +msgstr "" + +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:175 +#: includes/admin/meta-boxes/views/html-variation-admin.php:75 +msgctxt "placeholder" +msgid "From…" +msgstr "" + +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:176 +#: includes/admin/meta-boxes/views/html-variation-admin.php:79 +msgctxt "placeholder" +msgid "To…" +msgstr "" + +#: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:259 +#: includes/admin/views/html-bulk-edit-product.php:77 +#: includes/admin/views/html-quick-edit-product.php:56 +msgctxt "Tax status" +msgid "None" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-items.php:272 +msgctxt "Refund $amount" +msgid "Refund %s via %s" +msgstr "" + +#: includes/admin/meta-boxes/views/html-order-refund.php:16 +msgctxt "Ex: Refund - $date >by< $username" +msgid "by" +msgstr "" + +#: includes/admin/settings/class-wc-settings-checkout.php:26 +msgctxt "Settings tab label" +msgid "Checkout" +msgstr "" + +#: includes/admin/settings/class-wc-settings-checkout.php:80 +msgctxt "Settings group label" +msgid "Checkout" +msgstr "" + +#: includes/admin/views/html-admin-page-status-report.php:314 +msgctxt "Page setting" +msgid "Shop Base" +msgstr "" + +#: includes/admin/views/html-admin-page-status-report.php:318 +msgctxt "Page setting" +msgid "Cart" +msgstr "" + +#: includes/admin/views/html-admin-page-status-report.php:322 +msgctxt "Page setting" +msgid "Checkout" +msgstr "" + +#: includes/admin/views/html-admin-page-status-report.php:326 +msgctxt "Page setting" +msgid "My Account" +msgstr "" \ No newline at end of file diff --git a/i18n/languages/woocommerce-ar.po b/i18n/languages/woocommerce-ar.po deleted file mode 100644 index a4860465866..00000000000 --- a/i18n/languages/woocommerce-ar.po +++ /dev/null @@ -1,6452 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce 2.0.9 Front-end\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-04-29 16:02:06+00:00\n" -"PO-Revision-Date: 2013-06-09 08:49+0300\n" -"Last-Translator: Ali Mohammed Al-barrak \n" -"Language-Team: \n" -"Language: ar_SA\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" -"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" -"X-Poedit-Basepath: ../\n" -"X-Textdomain-Support: yes\n" -"X-Generator: Poedit 1.4.6\n" -"X-Poedit-SearchPath-0: .\n" - -#: assets/js/admin/editor_plugin_lang.php:5 -msgid "Insert Shortcode" -msgstr "أضف أختصار" - -#: assets/js/admin/editor_plugin_lang.php:6 -msgid "Product price/cart button" -msgstr "سعر المنتج \\ زر العربة" - -#: assets/js/admin/editor_plugin_lang.php:7 -msgid "Product by SKU/ID" -msgstr "منتج عبر المعرف" - -#: assets/js/admin/editor_plugin_lang.php:8 -msgid "Products by SKU/ID" -msgstr "منتجات عبر المعرف" - -#: assets/js/admin/editor_plugin_lang.php:9 -msgid "Product categories" -msgstr "قوائم المنتجات" - -#: assets/js/admin/editor_plugin_lang.php:10 -msgid "Products by category slug" -msgstr "المنتجات عبر الاسم اللطيف لقائمتها" - -#: assets/js/admin/editor_plugin_lang.php:11 -msgid "Recent products" -msgstr "أحدث المنتجات" - -#: assets/js/admin/editor_plugin_lang.php:12 -msgid "Featured products" -msgstr "المنتجات المميزة" - -#: assets/js/admin/editor_plugin_lang.php:13 -msgid "Shop Messages" -msgstr "رسائل التنبيه" - -#: assets/js/admin/editor_plugin_lang.php:14 -msgid "Pages" -msgstr "الصفحات" - -#: assets/js/admin/editor_plugin_lang.php:15 -#: classes/widgets/class-wc-widget-cart.php:61 -msgid "Cart" -msgstr "العربة" - -#: assets/js/admin/editor_plugin_lang.php:16 -msgid "Checkout" -msgstr "المحاسبة" - -#: assets/js/admin/editor_plugin_lang.php:17 -msgid "Order tracking" -msgstr "تتبع الطلب" - -#: assets/js/admin/editor_plugin_lang.php:18 -#: templates/checkout/thankyou.php:30 -msgid "My Account" -msgstr "حسابي" - -#: assets/js/admin/editor_plugin_lang.php:19 -msgid "Edit Address" -msgstr "تحرير العنوان" - -#: assets/js/admin/editor_plugin_lang.php:20 -msgid "Change Password" -msgstr "تغيير كلمة المرور" - -#: assets/js/admin/editor_plugin_lang.php:21 -#: woocommerce.php:1065 -#: woocommerce.php:1066 -msgid "View Order" -msgstr "عرض الطلب" - -#: assets/js/admin/editor_plugin_lang.php:22 -#: templates/checkout/thankyou.php:28 -#: templates/myaccount/my-orders.php:71 -msgid "Pay" -msgstr "الدفع" - -#: assets/js/admin/editor_plugin_lang.php:23 -msgid "Thankyou" -msgstr "شكر (بعد الشراء)" - -#: classes/abstracts/abstract-wc-email.php:431 -#: classes/emails/class-wc-email-customer-completed-order.php:135 -#: classes/emails/class-wc-email-customer-invoice.php:138 -#: classes/emails/class-wc-email-new-order.php:115 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:63 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:57 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:122 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:120 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:76 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:75 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:50 -msgid "Enable/Disable" -msgstr "تمكين\\تعطيل" - -#: classes/abstracts/abstract-wc-email.php:433 -#: classes/emails/class-wc-email-customer-completed-order.php:137 -#: classes/emails/class-wc-email-customer-invoice.php:140 -#: classes/emails/class-wc-email-new-order.php:117 -msgid "Enable this email notification" -msgstr "تمكين هذا التنبيه" - -#: classes/abstracts/abstract-wc-email.php:437 -#: classes/emails/class-wc-email-customer-invoice.php:144 -msgid "Email subject" -msgstr "نوان الرسالة" - -#: classes/abstracts/abstract-wc-email.php:439 -#: classes/abstracts/abstract-wc-email.php:446 -#: classes/emails/class-wc-email-customer-completed-order.php:143 -#: classes/emails/class-wc-email-customer-completed-order.php:150 -#: classes/emails/class-wc-email-customer-completed-order.php:157 -#: classes/emails/class-wc-email-customer-completed-order.php:164 -#: classes/emails/class-wc-email-customer-invoice.php:146 -#: classes/emails/class-wc-email-customer-invoice.php:153 -#: classes/emails/class-wc-email-customer-invoice.php:160 -#: classes/emails/class-wc-email-customer-invoice.php:167 -msgid "Defaults to %s" -msgstr "افتراضيا %s" - -#: classes/abstracts/abstract-wc-email.php:444 -#: classes/emails/class-wc-email-customer-invoice.php:151 -msgid "Email heading" -msgstr "رأس الرسالة" - -#: classes/abstracts/abstract-wc-email.php:451 -#: classes/emails/class-wc-email-customer-completed-order.php:169 -#: classes/emails/class-wc-email-customer-invoice.php:172 -#: classes/emails/class-wc-email-new-order.php:142 -msgid "Email type" -msgstr "نوع الرسالة" - -#: classes/abstracts/abstract-wc-email.php:453 -#: classes/emails/class-wc-email-customer-completed-order.php:171 -#: classes/emails/class-wc-email-customer-invoice.php:174 -#: classes/emails/class-wc-email-new-order.php:144 -msgid "Choose which format of email to send." -msgstr "حدد صيغة الرسالة المرسلة." - -#: classes/abstracts/abstract-wc-email.php:457 -#: classes/emails/class-wc-email-customer-completed-order.php:175 -#: classes/emails/class-wc-email-customer-invoice.php:178 -#: classes/emails/class-wc-email-new-order.php:148 -msgid "Plain text" -msgstr "نص عادي" - -#: classes/abstracts/abstract-wc-email.php:458 -#: classes/emails/class-wc-email-customer-completed-order.php:176 -#: classes/emails/class-wc-email-customer-invoice.php:179 -#: classes/emails/class-wc-email-new-order.php:149 -msgid "HTML" -msgstr "HTML" - -#: classes/abstracts/abstract-wc-email.php:459 -#: classes/emails/class-wc-email-customer-completed-order.php:177 -#: classes/emails/class-wc-email-customer-invoice.php:180 -#: classes/emails/class-wc-email-new-order.php:150 -msgid "Multipart" -msgstr "متعدد" - -#: classes/abstracts/abstract-wc-email.php:495 -#: classes/abstracts/abstract-wc-email.php:516 -msgid "Could not write to template file." -msgstr "لا يمكن تحرير قالب الرسالة." - -#: classes/abstracts/abstract-wc-email.php:543 -msgid "Template file copied to theme." -msgstr "قالب الرسالة نسخ للقالب الحالي." - -#: classes/abstracts/abstract-wc-email.php:552 -msgid "Template file deleted from theme." -msgstr "قالب الرسالة حذف من القالب الحالي." - -#: classes/abstracts/abstract-wc-email.php:560 -#: classes/abstracts/abstract-wc-integration.php:30 -#: classes/abstracts/abstract-wc-settings-api.php:39 -#: woocommerce.php:170 -msgid "Settings" -msgstr "الإعدادات" - -#: classes/abstracts/abstract-wc-email.php:572 -msgid "HTML template" -msgstr "قالب HTML" - -#: classes/abstracts/abstract-wc-email.php:573 -msgid "Plain text template" -msgstr "قالب نصي" - -#: classes/abstracts/abstract-wc-email.php:592 -msgid "Delete template file" -msgstr "حذف القالب" - -#: classes/abstracts/abstract-wc-email.php:595 -msgid "This template has been overridden by your theme and can be found in: %s." -msgstr "هذا القالب تم استبداله بواسطة القالب الخاص بك، يمكن أن تعدل ملف في قالبك من هنا: %s." - -#: classes/abstracts/abstract-wc-email.php:610 -msgid "Copy file to theme" -msgstr "أنسخ الملف لقالبك" - -#: classes/abstracts/abstract-wc-email.php:613 -msgid "To override and edit this email template copy %s to your theme folder: %s." -msgstr "استبدل وحرر قالب البريد عبر نسخ %s إلى قالبك في %s ثم تحريره." - -#: classes/abstracts/abstract-wc-email.php:624 -msgid "File was not found." -msgstr "الملف غير موجود" - -#: classes/abstracts/abstract-wc-email.php:649 -msgid "View template" -msgstr "شاهد القالب" - -#: classes/abstracts/abstract-wc-email.php:650 -msgid "Hide template" -msgstr "أخفي القالب" - -#: classes/abstracts/abstract-wc-email.php:661 -msgid "Are you sure you want to delete this template file?" -msgstr "هل بالفعل تريد حذف هذا القالب" - -#: classes/abstracts/abstract-wc-product.php:33 -msgid "The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class directly." -msgstr "The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class directly." - -#: classes/abstracts/abstract-wc-product.php:545 -#: classes/abstracts/abstract-wc-product.php:550 -#: classes/abstracts/abstract-wc-product.php:569 -msgid "In stock" -msgstr "متوفر" - -#: classes/abstracts/abstract-wc-product.php:550 -msgid "Only %s left in stock" -msgstr "باقي %s فقط" - -#: classes/abstracts/abstract-wc-product.php:553 -msgid "%s in stock" -msgstr "باقي %s" - -#: classes/abstracts/abstract-wc-product.php:560 -msgid "(backorders allowed)" -msgstr "(الطلبات المؤجلة ممكنة)" - -#: classes/abstracts/abstract-wc-product.php:566 -#: classes/abstracts/abstract-wc-product.php:579 -#: templates/cart/cart.php:76 -msgid "Available on backorder" -msgstr "متوفر (سيتأخر)" - -#: classes/abstracts/abstract-wc-product.php:572 -#: classes/abstracts/abstract-wc-product.php:582 -#: classes/abstracts/abstract-wc-product.php:586 -msgid "Out of stock" -msgstr "نفد" - -#: classes/abstracts/abstract-wc-product.php:846 -#: classes/abstracts/abstract-wc-product.php:852 -#: classes/class-wc-cart.php:1801 -#: classes/class-wc-order.php:891 -#: classes/class-wc-product-variable.php:274 -#: classes/class-wc-product-variable.php:283 -#: classes/class-wc-product-variation.php:246 -msgid "Free!" -msgstr "مجاني!" - -#: classes/abstracts/abstract-wc-product.php:870 -msgctxt "min_price" -msgid "From:" -msgstr "إبتداءً بـ" - -#: classes/abstracts/abstract-wc-product.php:959 -#: templates/single-product-reviews.php:28 -msgid "Rated %s out of 5" -msgstr "التقيم %s من 5" - -#: classes/abstracts/abstract-wc-product.php:961 -#: templates/single-product/review.php:27 -#: templates/single-product-reviews.php:28 -msgid "out of 5" -msgstr "من 5" - -#: classes/class-wc-cache-helper.php:92 -msgid "In order for database caching to work with WooCommerce you must add _wc_session_ to the \"Ignored Query Strings\" option in W3 Total Cache settings here." -msgstr "ليعمل تخزين الطلبات مؤقتافي قواعد البيانات في WooCommerce يجب أن تضيف _wc_session_ في \"Ignored Query Strings\" ( خيار لإضافة W3 Total Cache ) الموجودة here." - -#: classes/class-wc-cart.php:460 -msgid "Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in stock). Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "نأسف، ليس لدينا ما يكفي من \"%s\" في المخزن، تبقى (%s فقط). رجاء عدل عربتك وحاول مجددا. ونأسف مجددا على أي إزعاج." - -#: classes/class-wc-cart.php:479 -#: classes/class-wc-cart.php:488 -msgid "Sorry, we do not have enough \"%s\" in stock to fulfil your order (%s in stock). Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "نأسف، ليس لدينا ما يكفي من \"%s\" في المخزن، تبقى (%s فقط). رجاء عدل عربتك وحاول مجددا. ونأسف مجددا على أي إزعاج." - -#: classes/class-wc-cart.php:523 -msgid "Sorry, we do not have enough \"%s\" in stock to fulfil your order right now. Please try again in %d minutes or edit your cart and try again. We apologise for any inconvenience caused." -msgstr "نأسف، ليس لدينا ما يكفي من \"%s\" في المخزن حاليا، تبقى (%s فقط). رجاء عدل عربتك وحاول مجددا. ونأسف مجددا على أي إزعاج." - -#: classes/class-wc-cart.php:533 -msgid "Sorry, \"%s\" is not in stock. Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "نأسف، ليس لدينا ما يكفي من \"%s\" في المخزن. رجاء عدل عربتك وحاول مجددا. ونأسف مجددا على أي إزعاج." - -#: classes/class-wc-cart.php:845 -msgid "Sorry, "%s" cannot be purchased." -msgstr "نأسف، لكن "%s" لا يمكن بيعه." - -#: classes/class-wc-cart.php:852 -msgid "You cannot add "%s" to the cart because the product is out of stock." -msgstr "لا يمكن إضافة "%s" إلى عربتك لأنه نفد." - -#: classes/class-wc-cart.php:857 -msgid "You cannot add that amount of "%s" to the cart because there is not enough stock (%s remaining)." -msgstr "لا يمكن إضافة "%s" إلى عربتك لأن الكمية المتبقية أقل (بقي %s فقط)." - -#: classes/class-wc-cart.php:869 -#: classes/class-wc-cart.php:883 -#: classes/class-wc-cart.php:891 -#: templates/cart/mini-cart.php:68 -#: woocommerce-functions.php:497 -#: woocommerce.php:1210 -msgid "View Cart →" -msgstr "شاهد العربة ←" - -#: classes/class-wc-cart.php:869 -msgid "You already have this item in your cart." -msgstr "لقد أضفت هذا العنصر لعربتك بالفعل" - -#: classes/class-wc-cart.php:883 -#: classes/class-wc-cart.php:891 -msgid "%s You cannot add that amount to the cart — we have %s in stock and you already have %s in your cart." -msgstr "%s لا يمكن أن تضيف المزيد لعربتك —نحن نملك%s في المخزن، وأنت تملك %s في العربة." - -#: classes/class-wc-cart.php:1813 -msgid "via" -msgstr "عبر" - -#: classes/class-wc-checkout.php:64 -msgid "Account username" -msgstr "اسم المستخدم" - -#: classes/class-wc-checkout.php:65 -msgctxt "placeholder" -msgid "Username" -msgstr "اسم المستخدم" - -#: classes/class-wc-checkout.php:72 -msgid "Account password" -msgstr "كلمة المرور" - -#: classes/class-wc-checkout.php:73 -msgctxt "placeholder" -msgid "Password" -msgstr "كلمة المرور" - -#: classes/class-wc-checkout.php:79 -msgid "Confirm password" -msgstr "تأكيد كلمة المرور" - -#: classes/class-wc-checkout.php:80 -msgctxt "placeholder" -msgid "Confirm password" -msgstr "تأكيد كلمة المرور" - -#: classes/class-wc-checkout.php:89 -msgid "Order Notes" -msgstr "ملاحظات الطلب" - -#: classes/class-wc-checkout.php:90 -msgctxt "placeholder" -msgid "Notes about your order, e.g. special notes for delivery." -msgstr "ملاحظة حول الطلب، مثل معلومة عن التسليم." - -#: classes/class-wc-checkout.php:152 -msgid "Order – %s" -msgstr "الطلب – %s" - -#: classes/class-wc-checkout.php:152 -msgctxt "Order date parsed by strftime" -msgid "%b %d, %Y @ %I:%M %p" -msgstr "%d %b %Y @ %I:%M %p" - -#: classes/class-wc-checkout.php:278 -msgid "Backordered" -msgstr "كمية مؤجلة" - -#: classes/class-wc-checkout.php:388 -msgid "Sorry, your session has expired. Return to homepage →" -msgstr "نأسف، ولكن جلستك انتهت. عودة للرئيسية ←" - -#: classes/class-wc-checkout.php:440 -#: woocommerce-functions.php:1696 -msgid "is a required field." -msgstr "حقل مطلوب" - -#: classes/class-wc-checkout.php:453 -msgid "(%s) is not a valid postcode/ZIP." -msgstr "(%s) ليس رمز بريدي." - -#: classes/class-wc-checkout.php:474 -msgid "is not valid. Please enter one of the following:" -msgstr "قيمة خاطئة، أدخل من القيم التالية:" - -#: classes/class-wc-checkout.php:482 -msgid "is not a valid number." -msgstr "ليس رقما." - -#: classes/class-wc-checkout.php:489 -msgid "is not a valid email address." -msgstr "ليس بريدا إلكترونيا." - -#: classes/class-wc-checkout.php:545 -msgid "Please enter an account username." -msgstr "رجاء أدخل اسم المستخدم." - -#: classes/class-wc-checkout.php:549 -msgid "Invalid email/username." -msgstr "اسم مستخدم \\ بريد إلكتروني غير معروف." - -#: classes/class-wc-checkout.php:552 -msgid "An account is already registered with that username. Please choose another." -msgstr "هناك بالفعل حساب بهذا الاسم، رجاء أختر اسم آخر." - -#: classes/class-wc-checkout.php:562 -msgid "Please enter an account password." -msgstr "رجاء ادخل كلمة المرور." - -#: classes/class-wc-checkout.php:565 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:83 -#: woocommerce-functions.php:758 -#: woocommerce-functions.php:1626 -msgid "Passwords do not match." -msgstr "كلمة المرور غير صحيحة." - -#: classes/class-wc-checkout.php:569 -msgid "An account is already registered with your email address. Please login." -msgstr "أنت تملك حسابا بالفعل. رجاء سجل الدخول." - -#: classes/class-wc-checkout.php:575 -msgid "You must accept our Terms & Conditions." -msgstr "يجب أن تقبل الشروط والأحكام." - -#: classes/class-wc-checkout.php:584 -msgid "Invalid shipping method." -msgstr "طريقة شحن غير صحيحة." - -#: classes/class-wc-checkout.php:597 -msgid "Invalid payment method." -msgstr "طريقة دفع غير صحيحة؟" - -#: classes/class-wc-checkout.php:637 -#: woocommerce-functions.php:730 -#: woocommerce-functions.php:732 -#: woocommerce-functions.php:735 -#: woocommerce-functions.php:747 -#: woocommerce-functions.php:749 -#: woocommerce-functions.php:752 -#: woocommerce-functions.php:786 -msgid "ERROR" -msgstr "خطأ" - -#: classes/class-wc-checkout.php:637 -#: woocommerce-functions.php:786 -msgid "Couldn’t register you… please contact us if you continue to have problems." -msgstr "لا يمكن تسجيلك… رجاء تواصل معنا إذا استمرت المشكلة." - -#: classes/class-wc-countries.php:37 -msgid "Afghanistan" -msgstr "افغانستان" - -#: classes/class-wc-countries.php:38 -msgid "Åland Islands" -msgstr "جزر آلاند" - -#: classes/class-wc-countries.php:39 -msgid "Albania" -msgstr "ألبانيا" - -#: classes/class-wc-countries.php:40 -msgid "Algeria" -msgstr "ألجيريا" - -#: classes/class-wc-countries.php:41 -msgid "Andorra" -msgstr "أندورا" - -#: classes/class-wc-countries.php:42 -msgid "Angola" -msgstr "أنغولا" - -#: classes/class-wc-countries.php:43 -msgid "Anguilla" -msgstr "أنجويلا" - -#: classes/class-wc-countries.php:44 -msgid "Antarctica" -msgstr "القارة الجنوبية المتجمدة" - -#: classes/class-wc-countries.php:45 -msgid "Antigua and Barbuda" -msgstr "أنتيغوا وباربودا" - -#: classes/class-wc-countries.php:46 -msgid "Argentina" -msgstr "الأرجنتين" - -#: classes/class-wc-countries.php:47 -msgid "Armenia" -msgstr "أرمينيا" - -#: classes/class-wc-countries.php:48 -msgid "Aruba" -msgstr "أروبا" - -#: classes/class-wc-countries.php:49 -msgid "Australia" -msgstr "أستراليا" - -#: classes/class-wc-countries.php:50 -msgid "Austria" -msgstr "النمسا" - -#: classes/class-wc-countries.php:51 -msgid "Azerbaijan" -msgstr "أذربيجان" - -#: classes/class-wc-countries.php:52 -msgid "Bahamas" -msgstr "البهاما" - -#: classes/class-wc-countries.php:53 -msgid "Bahrain" -msgstr "البحرين" - -#: classes/class-wc-countries.php:54 -msgid "Bangladesh" -msgstr "بنغلاديش" - -#: classes/class-wc-countries.php:55 -msgid "Barbados" -msgstr "باربادوس" - -#: classes/class-wc-countries.php:56 -msgid "Belarus" -msgstr "بيلاروسيا" - -#: classes/class-wc-countries.php:57 -msgid "Belgium" -msgstr "بلجيكا" - -#: classes/class-wc-countries.php:58 -msgid "Belau" -msgstr "بالاو" - -#: classes/class-wc-countries.php:59 -msgid "Belize" -msgstr "بليز" - -#: classes/class-wc-countries.php:60 -msgid "Benin" -msgstr "بنين" - -#: classes/class-wc-countries.php:61 -msgid "Bermuda" -msgstr "جزر برمودا" - -#: classes/class-wc-countries.php:62 -msgid "Bhutan" -msgstr "بوتان" - -#: classes/class-wc-countries.php:63 -msgid "Bolivia" -msgstr "بوليفيا" - -#: classes/class-wc-countries.php:64 -msgid "Bonaire, Saint Eustatius and Saba" -msgstr "بونير وسانت أوستاتيوس وسابا" - -#: classes/class-wc-countries.php:65 -msgid "Bosnia and Herzegovina" -msgstr "البوسنة والهرسك" - -#: classes/class-wc-countries.php:66 -msgid "Botswana" -msgstr "بوتسوانا" - -#: classes/class-wc-countries.php:67 -msgid "Bouvet Island" -msgstr "جزيرة بوفيه" - -#: classes/class-wc-countries.php:68 -msgid "Brazil" -msgstr "البرازيل" - -#: classes/class-wc-countries.php:69 -msgid "British Indian Ocean Territory" -msgstr "إقليم المحيط الهندي البريطاني" - -#: classes/class-wc-countries.php:70 -msgid "British Virgin Islands" -msgstr "الجزر العذراء البريطانية" - -#: classes/class-wc-countries.php:71 -msgid "Brunei" -msgstr "بروناي" - -#: classes/class-wc-countries.php:72 -msgid "Bulgaria" -msgstr "بلغاريا" - -#: classes/class-wc-countries.php:73 -msgid "Burkina Faso" -msgstr "بوركينا فاسو" - -#: classes/class-wc-countries.php:74 -msgid "Burundi" -msgstr "بوروندي" - -#: classes/class-wc-countries.php:75 -msgid "Cambodia" -msgstr "كمبوديا" - -#: classes/class-wc-countries.php:76 -msgid "Cameroon" -msgstr "الكاميرون" - -#: classes/class-wc-countries.php:77 -msgid "Canada" -msgstr "كندا" - -#: classes/class-wc-countries.php:78 -msgid "Cape Verde" -msgstr "الرأس الأخضر" - -#: classes/class-wc-countries.php:79 -msgid "Cayman Islands" -msgstr "جزر كايمان" - -#: classes/class-wc-countries.php:80 -msgid "Central African Republic" -msgstr "جمهورية أفريقيا الوسطى" - -#: classes/class-wc-countries.php:81 -msgid "Chad" -msgstr "تشاد" - -#: classes/class-wc-countries.php:82 -msgid "Chile" -msgstr "تشيلي" - -#: classes/class-wc-countries.php:83 -msgid "China" -msgstr "الصين" - -#: classes/class-wc-countries.php:84 -msgid "Christmas Island" -msgstr "جزيرة كريسماس" - -#: classes/class-wc-countries.php:85 -msgid "Cocos (Keeling) Islands" -msgstr "جزر كوكوس (كيلينغ)" - -#: classes/class-wc-countries.php:86 -msgid "Colombia" -msgstr "كولومبيا" - -#: classes/class-wc-countries.php:87 -msgid "Comoros" -msgstr "جزر القمر" - -#: classes/class-wc-countries.php:88 -msgid "Congo (Brazzaville)" -msgstr "الكونغو (برازافيل)" - -#: classes/class-wc-countries.php:89 -msgid "Congo (Kinshasa)" -msgstr "الكونغو (كينشاسا)" - -#: classes/class-wc-countries.php:90 -msgid "Cook Islands" -msgstr "جزر كوك" - -#: classes/class-wc-countries.php:91 -msgid "Costa Rica" -msgstr "كوستاريكا" - -#: classes/class-wc-countries.php:92 -msgid "Croatia" -msgstr "كرواتيا" - -#: classes/class-wc-countries.php:93 -msgid "Cuba" -msgstr "كوبا" - -#: classes/class-wc-countries.php:94 -msgid "CuraÇao" -msgstr "كوراكاو" - -#: classes/class-wc-countries.php:95 -msgid "Cyprus" -msgstr "قبرص" - -#: classes/class-wc-countries.php:96 -msgid "Czech Republic" -msgstr "جمهورية التشيك" - -#: classes/class-wc-countries.php:97 -msgid "Denmark" -msgstr "الدنمارك" - -#: classes/class-wc-countries.php:98 -msgid "Djibouti" -msgstr "جيبوتي" - -#: classes/class-wc-countries.php:99 -msgid "Dominica" -msgstr "دومينيكا" - -#: classes/class-wc-countries.php:100 -msgid "Dominican Republic" -msgstr "جمهورية الدومينيكان" - -#: classes/class-wc-countries.php:101 -msgid "Ecuador" -msgstr "الاكوادور" - -#: classes/class-wc-countries.php:102 -msgid "Egypt" -msgstr "مصر" - -#: classes/class-wc-countries.php:103 -msgid "El Salvador" -msgstr "السلفادور" - -#: classes/class-wc-countries.php:104 -msgid "Equatorial Guinea" -msgstr "غينيا الاستوائية" - -#: classes/class-wc-countries.php:105 -msgid "Eritrea" -msgstr "إريتريا" - -#: classes/class-wc-countries.php:106 -msgid "Estonia" -msgstr "استونيا" - -#: classes/class-wc-countries.php:107 -msgid "Ethiopia" -msgstr "أثيوبيا" - -#: classes/class-wc-countries.php:108 -msgid "Falkland Islands" -msgstr "جزر فوكلاند" - -#: classes/class-wc-countries.php:109 -msgid "Faroe Islands" -msgstr "جزر فارو" - -#: classes/class-wc-countries.php:110 -msgid "Fiji" -msgstr "فيجي" - -#: classes/class-wc-countries.php:111 -msgid "Finland" -msgstr "فنلندا" - -#: classes/class-wc-countries.php:112 -msgid "France" -msgstr "فرنسا" - -#: classes/class-wc-countries.php:113 -msgid "French Guiana" -msgstr "جويانا الفرنسية" - -#: classes/class-wc-countries.php:114 -msgid "French Polynesia" -msgstr "بولينيزيا الفرنسية" - -#: classes/class-wc-countries.php:115 -msgid "French Southern Territories" -msgstr "الأقاليم الجنوبية الفرنسية" - -#: classes/class-wc-countries.php:116 -msgid "Gabon" -msgstr "الغابون" - -#: classes/class-wc-countries.php:117 -msgid "Gambia" -msgstr "غامبيا" - -#: classes/class-wc-countries.php:118 -#: i18n/states/US.php:23 -msgid "Georgia" -msgstr "جورجيا" - -#: classes/class-wc-countries.php:119 -msgid "Germany" -msgstr "ألمانيا" - -#: classes/class-wc-countries.php:120 -msgid "Ghana" -msgstr "غانا" - -#: classes/class-wc-countries.php:121 -msgid "Gibraltar" -msgstr "جبل طارق" - -#: classes/class-wc-countries.php:122 -msgid "Greece" -msgstr "يونان" - -#: classes/class-wc-countries.php:123 -msgid "Greenland" -msgstr "جرينلاند" - -#: classes/class-wc-countries.php:124 -msgid "Grenada" -msgstr "غرينادا" - -#: classes/class-wc-countries.php:125 -msgid "Guadeloupe" -msgstr "غوادلوب" - -#: classes/class-wc-countries.php:126 -msgid "Guatemala" -msgstr "غواتيمالا" - -#: classes/class-wc-countries.php:127 -msgid "Guernsey" -msgstr "غيرنسي" - -#: classes/class-wc-countries.php:128 -msgid "Guinea" -msgstr "غينيا" - -#: classes/class-wc-countries.php:129 -msgid "Guinea-Bissau" -msgstr "غينيا بيساو" - -#: classes/class-wc-countries.php:130 -msgid "Guyana" -msgstr "غيانا" - -#: classes/class-wc-countries.php:131 -msgid "Haiti" -msgstr "هايتي" - -#: classes/class-wc-countries.php:132 -msgid "Heard Island and McDonald Islands" -msgstr "جزيرة هيرد وجزر ماكدونالد" - -#: classes/class-wc-countries.php:133 -msgid "Honduras" -msgstr "هندوراس" - -#: classes/class-wc-countries.php:134 -msgid "Hong Kong" -msgstr "هونغ كونغ" - -#: classes/class-wc-countries.php:135 -msgid "Hungary" -msgstr "هنغاريا" - -#: classes/class-wc-countries.php:136 -msgid "Iceland" -msgstr "آيسلندا" - -#: classes/class-wc-countries.php:137 -msgid "India" -msgstr "الهند" - -#: classes/class-wc-countries.php:138 -msgid "Indonesia" -msgstr "أندونيسيا" - -#: classes/class-wc-countries.php:139 -msgid "Iran" -msgstr "إيران" - -#: classes/class-wc-countries.php:140 -msgid "Iraq" -msgstr "العراق" - -#: classes/class-wc-countries.php:141 -msgid "Republic of Ireland" -msgstr "جمهورية أيرلندا" - -#: classes/class-wc-countries.php:142 -msgid "Isle of Man" -msgstr "جزيرة مان" - -#: classes/class-wc-countries.php:143 -msgid "Israel" -msgstr "فلسطين المحتلة (إسرائيل)" - -#: classes/class-wc-countries.php:144 -msgid "Italy" -msgstr "إيطاليا" - -#: classes/class-wc-countries.php:145 -msgid "Ivory Coast" -msgstr "ساحل العاج" - -#: classes/class-wc-countries.php:146 -msgid "Jamaica" -msgstr "جامايكا" - -#: classes/class-wc-countries.php:147 -msgid "Japan" -msgstr "اليابان" - -#: classes/class-wc-countries.php:148 -msgid "Jersey" -msgstr "جيرزي" - -#: classes/class-wc-countries.php:149 -msgid "Jordan" -msgstr "الأردن" - -#: classes/class-wc-countries.php:150 -msgid "Kazakhstan" -msgstr "كازاخستان" - -#: classes/class-wc-countries.php:151 -msgid "Kenya" -msgstr "كينيا" - -#: classes/class-wc-countries.php:152 -msgid "Kiribati" -msgstr "كيريباتي" - -#: classes/class-wc-countries.php:153 -msgid "Kuwait" -msgstr "الكويت" - -#: classes/class-wc-countries.php:154 -msgid "Kyrgyzstan" -msgstr "قرغيزستان" - -#: classes/class-wc-countries.php:155 -msgid "Laos" -msgstr "لاوس" - -#: classes/class-wc-countries.php:156 -msgid "Latvia" -msgstr "لاتفيا" - -#: classes/class-wc-countries.php:157 -msgid "Lebanon" -msgstr "لبنان" - -#: classes/class-wc-countries.php:158 -msgid "Lesotho" -msgstr "ليسوتو" - -#: classes/class-wc-countries.php:159 -msgid "Liberia" -msgstr "ليبيريا" - -#: classes/class-wc-countries.php:160 -msgid "Libya" -msgstr "ليبيا" - -#: classes/class-wc-countries.php:161 -msgid "Liechtenstein" -msgstr "ليختنشتاين" - -#: classes/class-wc-countries.php:162 -msgid "Lithuania" -msgstr "ليتوانيا" - -#: classes/class-wc-countries.php:163 -msgid "Luxembourg" -msgstr "لوكسمبورغ" - -#: classes/class-wc-countries.php:164 -msgid "Macao S.A.R., China" -msgstr "ماكاو، الصين" - -#: classes/class-wc-countries.php:165 -msgid "Macedonia" -msgstr "مقدونيا" - -#: classes/class-wc-countries.php:166 -msgid "Madagascar" -msgstr "مدغشقر" - -#: classes/class-wc-countries.php:167 -msgid "Malawi" -msgstr "ملاوي" - -#: classes/class-wc-countries.php:168 -msgid "Malaysia" -msgstr "ماليزيا" - -#: classes/class-wc-countries.php:169 -msgid "Maldives" -msgstr "جزر المالديف" - -#: classes/class-wc-countries.php:170 -msgid "Mali" -msgstr "مالي" - -#: classes/class-wc-countries.php:171 -msgid "Malta" -msgstr "مالطا" - -#: classes/class-wc-countries.php:172 -msgid "Marshall Islands" -msgstr "جزر مارشال" - -#: classes/class-wc-countries.php:173 -msgid "Martinique" -msgstr "مارتينيك" - -#: classes/class-wc-countries.php:174 -msgid "Mauritania" -msgstr "موريتانيا" - -#: classes/class-wc-countries.php:175 -msgid "Mauritius" -msgstr "موريشيوس" - -#: classes/class-wc-countries.php:176 -msgid "Mayotte" -msgstr "مايوت" - -#: classes/class-wc-countries.php:177 -msgid "Mexico" -msgstr "المكسيك" - -#: classes/class-wc-countries.php:178 -msgid "Micronesia" -msgstr "ميكرونيزيا" - -#: classes/class-wc-countries.php:179 -msgid "Moldova" -msgstr "مولدوفا" - -#: classes/class-wc-countries.php:180 -msgid "Monaco" -msgstr "موناكو" - -#: classes/class-wc-countries.php:181 -msgid "Mongolia" -msgstr "منغوليا" - -#: classes/class-wc-countries.php:182 -msgid "Montenegro" -msgstr "الجبل الأسود" - -#: classes/class-wc-countries.php:183 -msgid "Montserrat" -msgstr "مونتسيرات" - -#: classes/class-wc-countries.php:184 -msgid "Morocco" -msgstr "المغرب" - -#: classes/class-wc-countries.php:185 -msgid "Mozambique" -msgstr "موزمبيق" - -#: classes/class-wc-countries.php:186 -msgid "Myanmar" -msgstr "ميانمار" - -#: classes/class-wc-countries.php:187 -msgid "Namibia" -msgstr "ناميبيا" - -#: classes/class-wc-countries.php:188 -msgid "Nauru" -msgstr "ناورو" - -#: classes/class-wc-countries.php:189 -msgid "Nepal" -msgstr "نيبال" - -#: classes/class-wc-countries.php:190 -msgid "Netherlands" -msgstr "هولندا" - -#: classes/class-wc-countries.php:191 -msgid "Netherlands Antilles" -msgstr "جزر الأنتيل الهولندية" - -#: classes/class-wc-countries.php:192 -msgid "New Caledonia" -msgstr "كاليدونيا الجديدة" - -#: classes/class-wc-countries.php:193 -msgid "New Zealand" -msgstr "نيوزيلندا" - -#: classes/class-wc-countries.php:194 -msgid "Nicaragua" -msgstr "نيكاراغوا" - -#: classes/class-wc-countries.php:195 -msgid "Niger" -msgstr "النيجر" - -#: classes/class-wc-countries.php:196 -msgid "Nigeria" -msgstr "نيجيريا" - -#: classes/class-wc-countries.php:197 -msgid "Niue" -msgstr "نيوي" - -#: classes/class-wc-countries.php:198 -msgid "Norfolk Island" -msgstr "جزيرة نورفولك" - -#: classes/class-wc-countries.php:199 -msgid "North Korea" -msgstr "كوريا الشمالية" - -#: classes/class-wc-countries.php:200 -msgid "Norway" -msgstr "النرويج" - -#: classes/class-wc-countries.php:201 -msgid "Oman" -msgstr "عمان" - -#: classes/class-wc-countries.php:202 -msgid "Pakistan" -msgstr "باكستان" - -#: classes/class-wc-countries.php:203 -msgid "Palestinian Territory" -msgstr "الأراضي الفلسطينية" - -#: classes/class-wc-countries.php:204 -msgid "Panama" -msgstr "بناما" - -#: classes/class-wc-countries.php:205 -msgid "Papua New Guinea" -msgstr "بابوا غينيا الجديدة" - -#: classes/class-wc-countries.php:206 -msgid "Paraguay" -msgstr "باراغواي" - -#: classes/class-wc-countries.php:207 -msgid "Peru" -msgstr "بيرو" - -#: classes/class-wc-countries.php:208 -msgid "Philippines" -msgstr "الفلبين" - -#: classes/class-wc-countries.php:209 -msgid "Pitcairn" -msgstr "بيتكيرن" - -#: classes/class-wc-countries.php:210 -msgid "Poland" -msgstr "بولندا" - -#: classes/class-wc-countries.php:211 -msgid "Portugal" -msgstr "البرتغال" - -#: classes/class-wc-countries.php:212 -msgid "Qatar" -msgstr "قطر" - -#: classes/class-wc-countries.php:213 -msgid "Reunion" -msgstr "ريونيون" - -#: classes/class-wc-countries.php:214 -msgid "Romania" -msgstr "رومانيا" - -#: classes/class-wc-countries.php:215 -msgid "Russia" -msgstr "روسيا" - -#: classes/class-wc-countries.php:216 -msgid "Rwanda" -msgstr "رواندا" - -#: classes/class-wc-countries.php:217 -msgid "Saint Barthélemy" -msgstr "سانت بارتيليمي" - -#: classes/class-wc-countries.php:218 -msgid "Saint Helena" -msgstr "سانت هيلينا" - -#: classes/class-wc-countries.php:219 -msgid "Saint Kitts and Nevis" -msgstr "سانت كيتس ونيفيس" - -#: classes/class-wc-countries.php:220 -msgid "Saint Lucia" -msgstr "سانت لوسيا" - -#: classes/class-wc-countries.php:221 -msgid "Saint Martin (French part)" -msgstr "سانت مارتن (الجزء الفرنسي)" - -#: classes/class-wc-countries.php:222 -msgid "Saint Martin (Dutch part)" -msgstr "سانت مارتن (الجزءالهولندي)" - -#: classes/class-wc-countries.php:223 -msgid "Saint Pierre and Miquelon" -msgstr "سان بيار وميكلون" - -#: classes/class-wc-countries.php:224 -msgid "Saint Vincent and the Grenadines" -msgstr "سانت فنسنت وجزر غرينادين" - -#: classes/class-wc-countries.php:225 -msgid "San Marino" -msgstr "سان مارينو" - -#: classes/class-wc-countries.php:226 -msgid "São Tomé and Príncipe" -msgstr "سان تومي وبرينسيبي" - -#: classes/class-wc-countries.php:227 -msgid "Saudi Arabia" -msgstr "السعودية" - -#: classes/class-wc-countries.php:228 -msgid "Senegal" -msgstr "السنغال" - -#: classes/class-wc-countries.php:229 -msgid "Serbia" -msgstr "صربيا" - -#: classes/class-wc-countries.php:230 -msgid "Seychelles" -msgstr "سيشيل" - -#: classes/class-wc-countries.php:231 -msgid "Sierra Leone" -msgstr "سيراليون" - -#: classes/class-wc-countries.php:232 -msgid "Singapore" -msgstr "سنغافورة" - -#: classes/class-wc-countries.php:233 -msgid "Slovakia" -msgstr "سلوفاكيا" - -#: classes/class-wc-countries.php:234 -msgid "Slovenia" -msgstr "سلوفينيا" - -#: classes/class-wc-countries.php:235 -msgid "Solomon Islands" -msgstr "جزر سليمان" - -#: classes/class-wc-countries.php:236 -msgid "Somalia" -msgstr "الصومال" - -#: classes/class-wc-countries.php:237 -msgid "South Africa" -msgstr "جنوب أفريقيا" - -#: classes/class-wc-countries.php:238 -msgid "South Georgia/Sandwich Islands" -msgstr "جورجيا الجنوبية وجزر ساندويتش" - -#: classes/class-wc-countries.php:239 -msgid "South Korea" -msgstr "كوريا الجنوبية" - -#: classes/class-wc-countries.php:240 -msgid "South Sudan" -msgstr "جنوب السودان" - -#: classes/class-wc-countries.php:241 -msgid "Spain" -msgstr "إسبانيا" - -#: classes/class-wc-countries.php:242 -msgid "Sri Lanka" -msgstr "سريلانكا" - -#: classes/class-wc-countries.php:243 -msgid "Sudan" -msgstr "السودان" - -#: classes/class-wc-countries.php:244 -msgid "Suriname" -msgstr "سورينام" - -#: classes/class-wc-countries.php:245 -msgid "Svalbard and Jan Mayen" -msgstr "سفالبارد" - -#: classes/class-wc-countries.php:246 -msgid "Swaziland" -msgstr "سوازيلاند" - -#: classes/class-wc-countries.php:247 -msgid "Sweden" -msgstr "السويد" - -#: classes/class-wc-countries.php:248 -msgid "Switzerland" -msgstr "سويسرا" - -#: classes/class-wc-countries.php:249 -msgid "Syria" -msgstr "سوريا" - -#: classes/class-wc-countries.php:250 -msgid "Taiwan" -msgstr "تايوان" - -#: classes/class-wc-countries.php:251 -msgid "Tajikistan" -msgstr "طاجيكستان" - -#: classes/class-wc-countries.php:252 -msgid "Tanzania" -msgstr "تنزانيا" - -#: classes/class-wc-countries.php:253 -msgid "Thailand" -msgstr "تايلاند" - -#: classes/class-wc-countries.php:254 -msgid "Timor-Leste" -msgstr "تيمور الشرقية" - -#: classes/class-wc-countries.php:255 -msgid "Togo" -msgstr "توغو" - -#: classes/class-wc-countries.php:256 -msgid "Tokelau" -msgstr "توكيلاو" - -#: classes/class-wc-countries.php:257 -msgid "Tonga" -msgstr "تونغا" - -#: classes/class-wc-countries.php:258 -msgid "Trinidad and Tobago" -msgstr "ترينيداد وتوباغو" - -#: classes/class-wc-countries.php:259 -msgid "Tunisia" -msgstr "نونس" - -#: classes/class-wc-countries.php:260 -msgid "Turkey" -msgstr "تركيا" - -#: classes/class-wc-countries.php:261 -msgid "Turkmenistan" -msgstr "تركمانستان" - -#: classes/class-wc-countries.php:262 -msgid "Turks and Caicos Islands" -msgstr "جزر تركس وكايكوس" - -#: classes/class-wc-countries.php:263 -msgid "Tuvalu" -msgstr "توفالو" - -#: classes/class-wc-countries.php:264 -msgid "Uganda" -msgstr "أوغندا" - -#: classes/class-wc-countries.php:265 -msgid "Ukraine" -msgstr "أوكرانيا" - -#: classes/class-wc-countries.php:266 -msgid "United Arab Emirates" -msgstr "الإمارات العربية المتحدة" - -#: classes/class-wc-countries.php:267 -msgid "United Kingdom" -msgstr "المملكة المتحدة" - -#: classes/class-wc-countries.php:268 -msgid "United States" -msgstr "الولايات المتحدة الأميريكية" - -#: classes/class-wc-countries.php:269 -msgid "Uruguay" -msgstr "أوروغواي" - -#: classes/class-wc-countries.php:270 -msgid "Uzbekistan" -msgstr "أوزبكستان" - -#: classes/class-wc-countries.php:271 -msgid "Vanuatu" -msgstr "فانواتو" - -#: classes/class-wc-countries.php:272 -msgid "Vatican" -msgstr "الفاتيكان" - -#: classes/class-wc-countries.php:273 -msgid "Venezuela" -msgstr "فنزويلا" - -#: classes/class-wc-countries.php:274 -msgid "Vietnam" -msgstr "فيتنام" - -#: classes/class-wc-countries.php:275 -msgid "Wallis and Futuna" -msgstr "واليس وفوتونا" - -#: classes/class-wc-countries.php:276 -msgid "Western Sahara" -msgstr "الصحراء الغربية" - -#: classes/class-wc-countries.php:277 -msgid "Western Samoa" -msgstr "ساموا الغربية" - -#: classes/class-wc-countries.php:278 -msgid "Yemen" -msgstr "اليمن" - -#: classes/class-wc-countries.php:279 -msgid "Zambia" -msgstr "زامبيا" - -#: classes/class-wc-countries.php:280 -msgid "Zimbabwe" -msgstr "زيمبابوي" - -#: classes/class-wc-countries.php:418 -msgid "to the" -msgstr "إلى" - -#: classes/class-wc-countries.php:419 -msgid "to" -msgstr "إلى" - -# Keep it empty (ZERO WIDTH SPACE) -#: classes/class-wc-countries.php:432 -msgid "the" -msgstr "​" - -#: classes/class-wc-countries.php:444 -msgid "VAT" -msgstr "ضريبة" - -#: classes/class-wc-countries.php:444 -msgid "Tax" -msgstr "ضربية" - -#: classes/class-wc-countries.php:457 -msgid "(incl. VAT)" -msgstr "(مع الضريبة)" - -#: classes/class-wc-countries.php:457 -msgid "(incl. tax)" -msgstr "(مع الضريبة)" - -#: classes/class-wc-countries.php:470 -msgid "(ex. VAT)" -msgstr "(بدون الضريبة)" - -#: classes/class-wc-countries.php:470 -msgid "(ex. tax)" -msgstr "(بدون الضريبة)" - -#: classes/class-wc-countries.php:678 -msgid "Country" -msgstr "الدولة" - -#: classes/class-wc-countries.php:683 -msgid "First Name" -msgstr "الاسم الأول" - -#: classes/class-wc-countries.php:688 -msgid "Last Name" -msgstr "العائلة" - -#: classes/class-wc-countries.php:694 -msgid "Company Name" -msgstr "اسم الشركة" - -#: classes/class-wc-countries.php:698 -msgid "Address" -msgstr "العنوان" - -#: classes/class-wc-countries.php:699 -msgctxt "placeholder" -msgid "Street address" -msgstr "الشارع" - -#: classes/class-wc-countries.php:707 -msgctxt "placeholder" -msgid "Apartment, suite, unit etc. (optional)" -msgstr "شقة، جناح، وحدة الخ (اختياري)" - -#: classes/class-wc-countries.php:715 -#: classes/class-wc-countries.php:716 -msgid "Town / City" -msgstr "المدينة" - -#: classes/class-wc-countries.php:725 -#: classes/class-wc-countries.php:726 -msgid "State / County" -msgstr "الولاية \\ المنطقة" - -#: classes/class-wc-countries.php:734 -#: classes/class-wc-countries.php:735 -#: templates/cart/shipping-calculator.php:80 -msgid "Postcode / Zip" -msgstr "الرمز البريدي" - -#: classes/class-wc-countries.php:774 -#: classes/class-wc-countries.php:784 -#: classes/class-wc-countries.php:804 -#: classes/class-wc-countries.php:859 -#: classes/class-wc-countries.php:883 -#: classes/class-wc-countries.php:933 -#: classes/class-wc-countries.php:957 -#: classes/class-wc-countries.php:998 -msgid "Province" -msgstr "المقاطعة" - -#: classes/class-wc-countries.php:790 -msgid "Canton" -msgstr "الإقليم" - -#: classes/class-wc-countries.php:799 -#: classes/class-wc-countries.php:939 -msgid "Municipality" -msgstr "البلدة" - -#: classes/class-wc-countries.php:846 -msgid "Town / District" -msgstr "المدينة \\ المنطقة" - -#: classes/class-wc-countries.php:849 -msgid "Region" -msgstr "المنطقة" - -#: classes/class-wc-countries.php:962 -msgid "Zip" -msgstr "الرمز بريدي" - -#: classes/class-wc-countries.php:965 -msgid "State" -msgstr "الولاية" - -#: classes/class-wc-countries.php:970 -msgid "Postcode" -msgstr "الروز البريدي" - -#: classes/class-wc-countries.php:973 -msgid "County" -msgstr "المحافظة" - -#: classes/class-wc-countries.php:1074 -msgid "Email Address" -msgstr "البريد الإلكتروني" - -#: classes/class-wc-countries.php:1080 -msgid "Phone" -msgstr "الهاتف" - -#: classes/class-wc-coupon.php:421 -msgid "Coupon code applied successfully." -msgstr "تم إضافة القسيمة" - -#: classes/class-wc-coupon.php:442 -msgid "Coupon is not valid." -msgstr "القسيمة غير صالح." - -#: classes/class-wc-coupon.php:445 -#: classes/class-wc-coupon.php:495 -msgid "Coupon does not exist!" -msgstr "القسيمة غير موجودة!" - -#: classes/class-wc-coupon.php:448 -msgid "Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from your order." -msgstr "نأسف، القسيمة \"%s\" غير صالحة - لقد تم إزالتها من طلبك." - -#: classes/class-wc-coupon.php:451 -msgid "Sorry, it seems the coupon \"%s\" is not yours - it has now been removed from your order." -msgstr "نأسف، لا يحق لك استخدام القسيمة \"%s\" - لقد تم إزالتها من طلبك." - -#: classes/class-wc-coupon.php:454 -msgid "Coupon code already applied!" -msgstr "القسيمة مستخدمة بالفعل!" - -#: classes/class-wc-coupon.php:457 -msgid "Sorry, coupon \"%s\" has already been applied and cannot be used in conjunction with other coupons." -msgstr "نأسف، القسيمة \"%s\" لا يمكن أن يستخدم معها قسائم أخرى." - -#: classes/class-wc-coupon.php:460 -msgid "Coupon usage limit has been reached." -msgstr "لقد نفذة القسيمة." - -#: classes/class-wc-coupon.php:463 -msgid "This coupon has expired." -msgstr "لقد انتهت صلاحية القسيمة" - -#: classes/class-wc-coupon.php:466 -msgid "The minimum spend for this coupon is %s." -msgstr "أقل سعر تطبق عليه هذه القسيمة هو %s" - -#: classes/class-wc-coupon.php:469 -msgid "Sorry, this coupon is not applicable to your cart contents." -msgstr "نأسف، لكن هذه القسيمة ليست لمحتويات عربك." - -#: classes/class-wc-coupon.php:472 -msgid "Sorry, this coupon is not valid for sale items." -msgstr "نأسف، لكن هذه القسيمة لا تطبق مع العناصر التي عليها خصومات." - -#: classes/class-wc-coupon.php:498 -msgid "Please enter a coupon code." -msgstr "رجاء أدخل رمز القسيمة" - -#: classes/class-wc-customer.php:628 -#: classes/class-wc-customer.php:638 -msgid "File %d" -msgstr "الملف %d:" - -#: classes/class-wc-emails.php:246 -msgid "Note" -msgstr "ملاحظة" - -#: classes/class-wc-emails.php:281 -msgid "Product low in stock" -msgstr "أحد المنتجات قريب من النفاد." - -#: classes/class-wc-emails.php:286 -#: classes/class-wc-emails.php:318 -#: classes/class-wc-emails.php:362 -msgid "Variation #%s of %s" -msgstr "النوع #%s من %s" - -#: classes/class-wc-emails.php:288 -#: classes/class-wc-emails.php:320 -#: classes/class-wc-emails.php:364 -msgid "Product #%s - %s" -msgstr "المنتج #%s - %s" - -#: classes/class-wc-emails.php:290 -msgid "is low in stock." -msgstr "أقترب من النفاد." - -#: classes/class-wc-emails.php:313 -msgid "Product out of stock" -msgstr "أحد المنتجات" - -#: classes/class-wc-emails.php:322 -msgid "is out of stock." -msgstr "نفذ" - -#: classes/class-wc-emails.php:357 -msgid "Product Backorder" -msgstr "طلبيات مؤجلة" - -#: classes/class-wc-emails.php:366 -msgid "%s units of %s have been backordered in order #%s." -msgstr "%s من %s غير موجودة في المخزن، وطلبت في الطلب#%s" - -#: classes/class-wc-order.php:283 -msgctxt "hash before order number" -msgid "#" -msgstr "#" - -#: classes/class-wc-order.php:886 -msgid " %svia %s" -msgstr " %sلوسيلة الشحن \"%s\"" - -#: classes/class-wc-order.php:950 -msgid "Cart Subtotal:" -msgstr "سعر العربة:" - -#: classes/class-wc-order.php:956 -msgid "Cart Discount:" -msgstr "خصم آخر:" - -#: classes/class-wc-order.php:962 -msgid "Shipping:" -msgstr "الشحن" - -#: classes/class-wc-order.php:998 -msgid "Order Discount:" -msgstr "الخصم الكلي:" - -#: classes/class-wc-order.php:1003 -msgid "Order Total:" -msgstr "السعر النهائي:" - -#: classes/class-wc-order.php:1017 -#: templates/cart/totals.php:105 -#: templates/checkout/review-order.php:104 -msgid "(Includes %s)" -msgstr "(يتضمن %s)" - -#: classes/class-wc-order.php:1168 -#: classes/class-wc-order.php:1170 -#: classes/class-wc-order.php:1173 -msgid "WooCommerce" -msgstr "WooCommerce" - -#: classes/class-wc-order.php:1220 -msgid "Order status changed from %s to %s." -msgstr "حالة تطلب تغيرت من %s إلى %s." - -#: classes/class-wc-order.php:1452 -#: woocommerce-ajax.php:1089 -#: woocommerce-ajax.php:1090 -msgid "Item #%s stock reduced from %s to %s." -msgstr "كمية العنصر #%s تغيرت من %s إلى %s." - -#: classes/class-wc-order.php:1464 -msgid "Order item stock reduced successfully." -msgstr "تم تعديل كمية المنتج." - -#: classes/class-wc-product-external.php:56 -msgid "Buy product" -msgstr "شراء المنتج" - -#: classes/class-wc-shortcodes.php:571 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:274 -#: templates/loop/add-to-cart.php:46 -#: templates/single-product/add-to-cart/grouped.php:45 -#: templates/single-product/add-to-cart/grouped.php:77 -#: templates/single-product/add-to-cart/simple.php:42 -#: templates/single-product/add-to-cart/variable.php:83 -msgid "Add to cart" -msgstr "إضافة للعربة" - -#: classes/emails/class-wc-email-customer-completed-order.php:24 -msgid "Completed order" -msgstr "طلب مكتمل" - -#: classes/emails/class-wc-email-customer-completed-order.php:25 -msgid "Order complete emails are sent to the customer when the order is marked complete and usual indicates that the order has been shipped." -msgstr "الطلب أكتمل، ترسل رسالة لبريد الزبون عند أكتمال الطلب تفيد بأنه تم شحنه." - -#: classes/emails/class-wc-email-customer-completed-order.php:27 -msgid "Your order is complete" -msgstr "طلبك اكتمل" - -#: classes/emails/class-wc-email-customer-completed-order.php:28 -msgid "Your {blogname} order from {order_date} is complete" -msgstr "طلب في {blogname} بتاريخ {order_date} أكتمل" - -#: classes/emails/class-wc-email-customer-completed-order.php:37 -msgid "Your order is complete - download your files" -msgstr "طلب أكتمل حمل الملفات" - -#: classes/emails/class-wc-email-customer-completed-order.php:38 -msgid "Your {blogname} order from {order_date} is complete - download your files" -msgstr "طلب في {blogname} بتاريخ {order_date} أكتمل - حمل الملفات" - -#: classes/emails/class-wc-email-customer-completed-order.php:141 -#: classes/emails/class-wc-email-new-order.php:128 -msgid "Subject" -msgstr "العنوان" - -#: classes/emails/class-wc-email-customer-completed-order.php:148 -#: classes/emails/class-wc-email-new-order.php:135 -msgid "Email Heading" -msgstr "رأس الرسالة" - -#: classes/emails/class-wc-email-customer-completed-order.php:155 -msgid "Subject (downloadable)" -msgstr "العنوان (به مرفقات)" - -#: classes/emails/class-wc-email-customer-completed-order.php:162 -msgid "Email Heading (downloadable)" -msgstr "رأس الرسالة (به مرفقات)" - -#: classes/emails/class-wc-email-customer-invoice.php:27 -msgid "Customer invoice" -msgstr "فاتور" - -#: classes/emails/class-wc-email-customer-invoice.php:28 -msgid "Customer invoice emails can be sent to the user containing order info and payment links." -msgstr "الفواتير ترسل للزبائن لتخبرهم عن معلومات الطلب وروابط طرق الدفع." - -#: classes/emails/class-wc-email-customer-invoice.php:33 -msgid "Invoice for order {order_number} from {order_date}" -msgstr "فاتورة الطلب {order_number} بتاريخ {order_date}" - -#: classes/emails/class-wc-email-customer-invoice.php:34 -msgid "Invoice for order {order_number}" -msgstr "فاتورة الطلب {order_number}" - -#: classes/emails/class-wc-email-customer-invoice.php:36 -msgid "Your {blogname} order from {order_date}" -msgstr "طلب في {blogname} بتاريخ {order_date}" - -#: classes/emails/class-wc-email-customer-invoice.php:37 -msgid "Order {order_number} details" -msgstr "معلومات الطلب {order_number}" - -#: classes/emails/class-wc-email-customer-invoice.php:158 -msgid "Email subject (paid)" -msgstr "عنوان الرسالة (مدفوع)" - -#: classes/emails/class-wc-email-customer-invoice.php:165 -msgid "Email heading (paid)" -msgstr "رأس الرسالة (مدفوع)" - -#: classes/emails/class-wc-email-customer-new-account.php:31 -msgid "New account" -msgstr "حساب جديد" - -#: classes/emails/class-wc-email-customer-new-account.php:32 -msgid "Customer new account emails are sent when a customer signs up via the checkout or My Account page." -msgstr "رسالة الحساب الجديد ترسل للزبائن عند تسجيلهم في الموقع عبر صفحة المحاسبة أو صفحة حسابي." - -#: classes/emails/class-wc-email-customer-new-account.php:37 -msgid "Your account on {blogname}" -msgstr "حسابك في {blogname}" - -#: classes/emails/class-wc-email-customer-new-account.php:38 -msgid "Welcome to {blogname}" -msgstr "مرحبا إلى" - -#: classes/emails/class-wc-email-customer-note.php:29 -msgid "Customer note" -msgstr "ملاحظات الزبون" - -#: classes/emails/class-wc-email-customer-note.php:30 -msgid "Customer note emails are sent when you add a note to an order." -msgstr "ملاحظات الزبون ترسل عندما تضيف ملاحظة لطلب معين" - -#: classes/emails/class-wc-email-customer-note.php:35 -msgid "Note added to your {blogname} order from {order_date}" -msgstr "ملاحظة على طلب في {blogname} الذي بتاريخ {order_date}" - -#: classes/emails/class-wc-email-customer-note.php:36 -msgid "A note has been added to your order" -msgstr "هناك ملاحظة أضيفت لطلبك" - -#: classes/emails/class-wc-email-customer-processing-order.php:24 -msgid "Processing order" -msgstr "جاري العمل على طلبك" - -#: classes/emails/class-wc-email-customer-processing-order.php:25 -msgid "This is an order notification sent to the customer after payment containing order details." -msgstr "هذه الرسالة ترسل للعميل بعد الدفع تحتوي معلومات الطلب" - -#: classes/emails/class-wc-email-customer-processing-order.php:27 -msgid "Thank you for your order" -msgstr "شكرا لك على شرائك" - -#: classes/emails/class-wc-email-customer-processing-order.php:28 -msgid "Your {blogname} order receipt from {order_date}" -msgstr "تم أستلام طلبك في {blogname} بتاريخ {order_date}" - -#: classes/emails/class-wc-email-customer-reset-password.php:36 -msgid "Reset password" -msgstr "أعادة تعيين كلمة المرور" - -#: classes/emails/class-wc-email-customer-reset-password.php:37 -msgid "Customer reset password emails are sent when a customer resets their password." -msgstr "ترسل هذه الرسالة للزبون عندما يعيد تعيين كلمة مروره" - -#: classes/emails/class-wc-email-customer-reset-password.php:42 -msgid "Password Reset for {blogname}" -msgstr "كلمة مرورك في {blogname}" - -#: classes/emails/class-wc-email-customer-reset-password.php:43 -msgid "Password Reset Instructions" -msgstr "تعليمات تغيير كلمة المرور" - -#: classes/emails/class-wc-email-new-order.php:24 -msgid "New order" -msgstr "طلب الجديد" - -#: classes/emails/class-wc-email-new-order.php:25 -msgid "New order emails are sent when an order is received/paid by a customer." -msgstr "هذه الرسالة ترسل للمسؤول عند ما يطلب زبون طلبا جديدا" - -#: classes/emails/class-wc-email-new-order.php:27 -msgid "New customer order" -msgstr "طلب جديد" - -#: classes/emails/class-wc-email-new-order.php:28 -msgid "[{blogname}] New customer order ({order_number}) - {order_date}" -msgstr " طلب جديد ل[{blogname}] ({order_number}) - {order_date}" - -#: classes/emails/class-wc-email-new-order.php:121 -msgid "Recipient(s)" -msgstr "المتلقين" - -#: classes/emails/class-wc-email-new-order.php:123 -msgid "Enter recipients (comma separated) for this email. Defaults to %s." -msgstr "أدخل البريد الإلكتروني لكل من متلقي الرسالة وعل الفصل بينهم بعلامة \";\". أفتراضيا %s." - -#: classes/emails/class-wc-email-new-order.php:130 -msgid "This controls the email subject line. Leave blank to use the default subject: %s." -msgstr "هنا يكون عنوان الرسالة. إذا تركته فارغ سنستخدم: %s." - -#: classes/emails/class-wc-email-new-order.php:137 -msgid "This controls the main heading contained within the email notification. Leave blank to use the default heading: %s." -msgstr "هنا العنوان الداخلي للرسالة. إذا تركته فارغ سنستخدم: %s." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:28 -msgid "Bacs" -msgstr "حوالة مصرفية" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:65 -msgid "Enable Bank Transfer" -msgstr "تمكين الحوالات المصرفية" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:69 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:63 -#: classes/gateways/cod/class-wc-gateway-cod.php:87 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:135 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:126 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:104 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:84 -msgid "Title" -msgstr "الاسم" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:71 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:65 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:137 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:128 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:83 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:58 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:106 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:86 -msgid "This controls the title which the user sees during checkout." -msgstr "هذا العنوان يراه الزبون عند أختيار الطريقة وقت المحاسبة." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:72 -msgid "Direct Bank Transfer" -msgstr "حوالة مصرفية مباشرة" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:76 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:70 -msgid "Customer Message" -msgstr "الوصف" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:78 -msgid "Give the customer instructions for paying via BACS, and let them know that their order won't be shipping until the money is received." -msgstr "أعطي زبائن معلومات عن كيفية الحوالة البنكية، وأخبرهم أن الطلب لن يشحن حتى يودع المال." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:79 -msgid "Make your payment directly into our bank account. Please use your Order ID as the payment reference. Your order wont be shipped until the funds have cleared in our account." -msgstr "أودع المال في حسابنا البنكي. رجاء أستخدم رقم الطلب كملاحظة أن أمكن. طلبك لن يشحن حنى نتأكد من وصول المال لحسابنا." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:82 -msgid "Account Details" -msgstr "معلومات الحساب" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:84 -msgid "Optionally enter your bank details below for customers to pay into." -msgstr "أختياريا أدخل معلومات الحساب هنا ليعرف الزبائن إلى أين يدفعون." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:88 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:163 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:203 -msgid "Account Name" -msgstr "اسم الحساب" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:94 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:164 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:204 -msgid "Account Number" -msgstr "رقم الحساب" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:100 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:165 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:205 -msgid "Sort Code" -msgstr "SortCode (للبنوك الأروبية)" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:106 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:166 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:206 -msgid "Bank Name" -msgstr "اسم البنك" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:112 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:167 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:207 -msgid "IBAN" -msgstr "رقم IBAN" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:117 -msgid "BIC (formerly Swift)" -msgstr "BIC (سويفت)" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:136 -msgid "BACS Payment" -msgstr "الدفع بالحوالة البنكية" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:137 -msgid "Allows payments by BACS (Bank Account Clearing System), more commonly known as direct bank/wire transfer." -msgstr "التحول عبر BACS. المعروف بالحوالة البنكية المباشرة" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:158 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:200 -msgid "Our Details" -msgstr "معلوماتنا" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:168 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:208 -msgid "BIC" -msgstr "BIC" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:234 -msgid "Awaiting BACS payment" -msgstr "بانتظار الدفع عبر البنك" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:28 -msgid "Cheque" -msgstr "شيك" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:59 -msgid "Enable Cheque Payment" -msgstr "تمكين الدفع بالشيكات" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:66 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:90 -msgid "Cheque Payment" -msgstr "الدفع بالشيكات" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:72 -msgid "Let the customer know the payee and where they should be sending the cheque to and that their order won't be shipping until you receive it." -msgstr "أخبر الزبائن بأنه يجب إرسال الشيك لبريدك مع رقم طلبهم، وأخبرهم أن الطلب لن يشحن حتى يصل المال." - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:73 -msgid "Please send your cheque to Store Name, Store Street, Store Town, Store State / County, Store Postcode." -msgstr "رجاء أرسل الشيك مع رقم الطلب إلى اسم المتجر، شارع المتجر، مدينة المتجر، دولة المتجر، رمز المتجر البريدي." - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:91 -msgid "Allows cheque payments. Why would you take cheques in this day and age? Well you probably wouldn't but it does allow you to make test purchases for testing order emails and the 'success' pages etc." -msgstr "الدفع بالشيك، لم يعد للدفع بالشيكات مجال في هذا الزمان، لكن ربما هناك ما يمنعك من الدفع بغيرها،أو تريد أن تستخدم هذه الطريقة لتجريب الرسائل الإلكترونية." - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:147 -msgid "Awaiting cheque payment" -msgstr "بانتظار الشيك" - -#: classes/gateways/cod/class-wc-gateway-cod.php:27 -#: classes/gateways/cod/class-wc-gateway-cod.php:54 -#: classes/gateways/cod/class-wc-gateway-cod.php:90 -msgid "Cash on Delivery" -msgstr "الدفع عند التسليم" - -#: classes/gateways/cod/class-wc-gateway-cod.php:55 -msgid "Have your customers pay with cash (or by other means) upon delivery." -msgstr "هل لديك زبائن يدفعون المال (أو غيره) مباشرة عند التسليم. (COD)" - -#: classes/gateways/cod/class-wc-gateway-cod.php:80 -msgid "Enable COD" -msgstr "تمكين COD" - -#: classes/gateways/cod/class-wc-gateway-cod.php:81 -msgid "Enable Cash on Delivery" -msgstr "تمكين الدفع عند الشحن" - -#: classes/gateways/cod/class-wc-gateway-cod.php:89 -msgid "Payment method title that the customer will see on your website." -msgstr "هذا العنوان يراه الزبون عند أختيار طريقة الدفع وقت المحاسبة." - -#: classes/gateways/cod/class-wc-gateway-cod.php:94 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:142 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:133 -#: woocommerce-template.php:751 -msgid "Description" -msgstr "الوصف" - -#: classes/gateways/cod/class-wc-gateway-cod.php:96 -msgid "Payment method description that the customer will see on your website." -msgstr "هذا الوصف يراها لزبائن في الموقع عند أختيار هذه الطريقة." - -#: classes/gateways/cod/class-wc-gateway-cod.php:97 -#: classes/gateways/cod/class-wc-gateway-cod.php:103 -msgid "Pay with cash upon delivery." -msgstr "الدفع عند التسليم مباشرة." - -#: classes/gateways/cod/class-wc-gateway-cod.php:100 -msgid "Instructions" -msgstr "تعليمات" - -#: classes/gateways/cod/class-wc-gateway-cod.php:102 -msgid "Instructions that will be added to the thank you page." -msgstr "هذه التعليمات ستضاف لصفحة الشكر بعد الطلب." - -#: classes/gateways/cod/class-wc-gateway-cod.php:106 -msgid "Enable for shipping methods" -msgstr "طرق الشحن المسموحة" - -#: classes/gateways/cod/class-wc-gateway-cod.php:111 -msgid "If COD is only available for certain methods, set it up here. Leave blank to enable for all methods." -msgstr "أذا كان COD متوفر في طرق دفع دون غيرها، حددها هنا. أتركه فارغ لقبول جميع الطرق." - -#: classes/gateways/cod/class-wc-gateway-cod.php:176 -msgid "Payment to be made upon delivery." -msgstr "الدفع سيتم عند التسليم" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:31 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:160 -msgid "Mijireh Checkout" -msgstr "خدمة Mijireh" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:107 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:285 -msgid "Mijireh error:" -msgstr "خطأ في Mijireh:" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:124 -msgid "Enable Mijireh Checkout" -msgstr "تمكين خدمة Mijireh:" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:128 -msgid "Access Key" -msgstr "رمز الوصول" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:130 -msgid "The Mijireh access key for your store." -msgstr "رمز الوصول (access key) لمتجرك عبر Mijireh." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:138 -msgid "Credit Card" -msgstr "بطاقة أئتمانية" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:144 -msgid "Pay securely with your credit card." -msgstr "أدفع بأمان عبر بطاقتك الائتمانية." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:145 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:135 -msgid "This controls the description which the user sees during checkout." -msgstr "هذا الوصف يراه زبائنك عند اختيارهم الدفع عبر البطاقة الائتمانية." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:164 -msgid "Get started with Mijireh Checkout" -msgstr "أبدأ باستخدام خدمات Mijireh:" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:165 -msgid "provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site. Mijireh supports a wide variety of payment gateways: Stripe, Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and more." -msgstr "توفر توافق تام مع PCI، وهي طريقة آمنة لنقل بيانات البطاقات الائتمانية لخدمات تلقي المال الخاصة لك، تمنحك تحكم كامل في الدفع ببساطة بينما تترك باقي الجهد لمحتوى موقعك. Mijireh يدعم عدة طرق تلقي مال: Stripe، Authorize.net، PayPal، eWay، SagePay، Braintree، PayLeap والمزيد" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:167 -msgid "Join for free" -msgstr "أنضم مجانا" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:167 -msgid "Learn more about WooCommerce and Mijireh" -msgstr "أعرف المزيد عن WooCommerce و Mijireh" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:171 -msgid "provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." -msgstr "توفر توافق تام مع PCI، وهي طريقة آمنة لنقل بيانات البطاقات الائتمانية لخدمات تلقي المال الخاصة لك، تمنحك تحكم كامل في الدفع ببساطة بينما تترك باقي الجهد لمحتوى موقعك." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:34 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:129 -msgid "PayPal" -msgstr "PayPal" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:91 -msgid "PayPal standard" -msgstr "PayPal القياسي" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:92 -msgid "PayPal standard works by sending the user to PayPal to enter their payment information." -msgstr "يعمل على توجيه الزبون إلى PayPal ليكتب بيانات الدفع هنا ثم يعاد إلى الموقع." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:104 -msgid "Gateway Disabled" -msgstr "طريقة الدفع معطلة." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:104 -msgid "PayPal does not support your store currency." -msgstr "PayPal غير مدعوم في دولتك." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:122 -msgid "Enable PayPal standard" -msgstr "تمكين PayPal القياسي" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:136 -msgid "Pay via PayPal; you can pay with your credit card if you don't have a PayPal account" -msgstr "بالشراء عبر PayPal، تستطيع استخدام البطاقة الائتمانية أذا كنت لا تملك حساب PayPal." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:139 -msgid "PayPal Email" -msgstr "بريدك الإلكتروني في PayPal" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:141 -msgid "Please enter your PayPal email address; this is needed in order to take payment." -msgstr "رجاء أدخل بريدك الإلكتروني في PayPal، هذا مطلوب ليتمكن الزبائن من الدفع لك." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:147 -msgid "Receiver Email" -msgstr "بريد التلقي" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:149 -msgid "If this differs from the email entered above, input your main receiver email for your PayPal account. This is used to validate IPN requests." -msgstr "يكون مختلف عن البريد في الأعلى، وهو يرسل رسائل IPN." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:155 -msgid "Invoice Prefix" -msgstr "بادئة الفواتير" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:157 -msgid "Please enter a prefix for your invoice numbers. If you use your PayPal account for multiple stores ensure this prefix is unique as PayPal will not allow orders with the same invoice number." -msgstr "بادئة الفواتير، معرفات فواتير PayPal يجب إلا تتكرر لهذا نستخدم معرف مكون من رقم الفاتورة وهذه البادئة. أجعلها مختلفة لكل موقع لك." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:162 -msgid "Submission method" -msgstr "طريقة الإرسال" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:164 -msgid "Use form submission method." -msgstr "أرسل البيانات عبر النموذج." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:165 -msgid "Enable this to post order data to PayPal via a form instead of using a redirect/querystring." -msgstr "فعل هذا الخيار لإرسال البيانات عبر النموذج بدل عن استخدام إعادة التحويل\\الروابط الطويلة" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:169 -msgid "Page Style" -msgstr "مظهر الصفحة" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:171 -msgid "Optionally enter the name of the page style you wish to use. These are defined within your PayPal account." -msgstr "اختيارياً أكتب اسم مظهر صفحة لاستخدامه، هذه المظاهر تعرف في موقع PayPal." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:174 -msgid "Optional" -msgstr "اختياري" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:177 -msgid "Shipping options" -msgstr "خيارات الشحن" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:182 -msgid "Shipping details" -msgstr "معلومات الشحن" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:184 -msgid "Send shipping details to PayPal instead of billing." -msgstr "أرسل ل PayPal بيانات الشحن عوضا عن بيانات المشتري." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:186 -msgid "PayPal allows us to send 1 address. If you are using PayPal for shipping labels you may prefer to send the shipping address rather than billing." -msgstr "يمكن للطلب أن يملك عوانين في حين يستقبل PayPal واحدا فقط. افتراضا ترسل بيانات المشتري لكن إذا علمت هذا الخيار سترسل بيانات الشحن." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:190 -msgid "Address override" -msgstr "تخطي العنوان" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:192 -msgid "Enable \"address_override\" to prevent address information from being changed." -msgstr "مكن \"address_override\" لمنع تغيير بيانات العنوان." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:193 -msgid "PayPal verifies addresses therefore this setting can cause errors (we recommend keeping it disabled)." -msgstr "PayPal يتحقق من العناوين لذلك قد يسبب هذا الخيار مشاكل (نحن نوصي بتعطيله)." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:197 -msgid "Gateway Testing" -msgstr "اختبار الدفع" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:202 -msgid "PayPal sandbox" -msgstr "صندوق اختبار PayPal" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:204 -msgid "Enable PayPal sandbox" -msgstr "تمكين صندوق اختبار PayPal" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:206 -msgid "PayPal sandbox can be used to test payments. Sign up for a developer account here." -msgstr "صندوق اختبار PayPal يمكنك من تجربة الدفع بدون تحويل أموال حقيقية، سجل حساب مطور من هنا here." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:209 -msgid "Debug Log" -msgstr "سجل المشاكل" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:211 -msgid "Enable logging" -msgstr "تمكين السجلات" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:213 -msgid "Log PayPal events, such as IPN requests, inside woocommerce/logs/paypal-%s.txt" -msgstr "سجل جميع عمليات PayPal، مثل طلبات IPN، في ملف woocommerce/logs/paypal-%s.txt." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:322 -msgid "Order %s" -msgstr "الطلب %s" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:332 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:386 -msgid "Shipping via" -msgstr "الشحن عبر" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:427 -msgid "Thank you for your order. We are now redirecting you to PayPal to make payment." -msgstr "شكرًا لك على طلبك. نحن الآن نرسلك ل PayPal لإكمال إجراءات الدفع." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:448 -msgid "Pay via PayPal" -msgstr "الشراء عبر PayPal" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:448 -msgid "Cancel order & restore cart" -msgstr "ألغي الطلب وأفرغ العربة" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:502 -msgid "Thank you for your order, please click the button below to pay with PayPal." -msgstr "شكرًا لك على طلبك. أضغط على الزر في اﻷسفل لإكمال إجراءات الدفع عبر PayPal." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:644 -msgid "Validation error: PayPal amounts do not match (gross %s)." -msgstr "خطأ في التحقق: مبلغ PayPal ليس مثل المتوقع (إجمالي %s)" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:655 -msgid "Validation error: PayPal IPN response from a different email address (%s)." -msgstr "خطأ في التحقق: رد IPN من بريد مختلف عن (%s)." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:673 -msgid "IPN payment completed" -msgstr "الدفع أكتمل" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:685 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:693 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:711 -msgid "Payment %s via IPN." -msgstr "الدفع (%s) عبر IPN" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:698 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:716 -msgid "Order refunded/reversed" -msgstr "طلب رد" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:699 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:717 -msgid "Order %s has been marked as refunded - PayPal reason code: %s" -msgstr "الطلب %s علم كمردود - رمز رد PayPal: %s" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:702 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:720 -msgid "Payment for order %s refunded/reversed" -msgstr "دفع الطلب %s تم إلغاءه" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:26 -msgid "Google Analytics" -msgstr "تحليلات Google" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:27 -msgid "Google Analytics is a free service offered by Google that generates detailed statistics about the visitors to a website." -msgstr "تحليلات Google هي خدمة مجانية مقدمة من Google تولد إحصائيات مفصلة عن زوار الموقع." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:63 -msgid "Google Analytics ID" -msgstr "معرفك (ID) في تحليلات Google" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:64 -msgid "Log into your google analytics account to find your ID. e.g. UA-XXXXX-X" -msgstr "أدخل لحسابك في تحليلات Google وأبحث معرفك. مثال UA-XXXXX-X" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:69 -msgid "Set Domain Name" -msgstr "تحديد الرابط" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:70 -msgid "(Optional) Sets the _setDomainName variable. See here for more information." -msgstr "(أختياري) حدد قيمة مخصصة للمتغير _setDomainName. لمزيد من المعلومات." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:75 -msgid "Tracking code" -msgstr "شفرة التتبع" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:76 -msgid "Add tracking code to your site's footer. You don't need to enable this if using a 3rd party analytics plugin." -msgstr "أضف شفرة التتبع لذيل الموقع. لن تحتاج هذا إذا كنت تستخدم إضافة تحليلات أخرى." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:82 -msgid "Add eCommerce tracking code to the thankyou page" -msgstr "أضف شفرة تتبع الأسواق الإلكترونية لصفحة الشكر." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:88 -msgid "Add event tracking code for add to cart actions" -msgstr "أضف شفرة تتبع الأحداث لإجراءات العربة." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:120 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:180 -#: woocommerce-ajax.php:1652 -msgid "Guest" -msgstr "ضيف" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:218 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:275 -#: templates/single-product/meta.php:19 -msgid "SKU:" -msgstr "الرمز التعريفي:" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:273 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:293 -#: woocommerce.php:982 -msgid "Products" -msgstr "المنتجات" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:294 -msgid "Add to Cart" -msgstr "إضافة للعربة" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:26 -msgid "ShareDaddy" -msgstr "ShareDaddy" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:27 -msgid "ShareDaddy is a sharing plugin bundled with JetPack." -msgstr "ShareDaddy هي إضافة نشر، جمعت عبر JetPack." - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:51 -msgid "Output ShareDaddy button?" -msgstr "عرض زر ShareDaddy?" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:52 -msgid "Enable this option to show the ShareDaddy button on the product page." -msgstr "مكن هذا الخيار ليعرض زر ShareDaddy في صفحة المنتج." - -#: classes/integrations/sharethis/class-wc-sharethis.php:29 -msgid "ShareThis" -msgstr "ShareThis" - -#: classes/integrations/sharethis/class-wc-sharethis.php:30 -msgid "ShareThis offers a sharing widget which will allow customers to share links to products with their friends." -msgstr "ShareThis هو مربع جانبي يعرض للزبائن روابط يستطيعون بها نشر المنتج لأصدقائهم." - -#: classes/integrations/sharethis/class-wc-sharethis.php:63 -msgid "ShareThis Publisher ID" -msgstr "معرف الناشر (ID) في ShareThis" - -#: classes/integrations/sharethis/class-wc-sharethis.php:64 -msgid "Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons on product pages." -msgstr "أدخل %1$s معرف الناشر (ID) في ShareThis%2$s الخاص بك لعرض أزرار النشر في صفحة المنتج." - -#: classes/integrations/sharethis/class-wc-sharethis.php:69 -msgid "ShareThis Code" -msgstr "شفرة ShareThis" - -#: classes/integrations/sharethis/class-wc-sharethis.php:70 -msgid "You can tweak the ShareThis code by editing this option." -msgstr "يمكنك تخصيص شفرة ShareThis عبر تعديل هذا الخيار." - -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:22 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:329 -msgid "ShareYourCart" -msgstr "ShareYourCart" - -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:23 -msgid "Increase your social media exposure by 10 percent! ShareYourCart helps you get more customers by motivating satisfied customers to talk with their friends about your products. For help with ShareYourCart view the documentation." -msgstr "زد شهرتك الاجتماعية مقابل 10 بالمئة! ShareYourCart يساعدك في زيادة زبائنك عبر تحفيز زبائنك لإخبار أصدقائهم عن منتجاتك. لمزيد من المعلومات عن ShareYourCart شاهد التوثيق." - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:328 -msgid "Share your cart settings" -msgstr "إعدادات أنشر عربك" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:342 -msgid "Button" -msgstr "الزر" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:343 -msgid "Customize Button" -msgstr "تخصيص الزر" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:351 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:352 -msgid "Documentation" -msgstr "التوثيق" - -#: classes/integrations/shareyourcart/views/admin-page.php:33 -msgid "Setup your ShareYourCart account" -msgstr "إعداد حسابك في ShareYourCart" - -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Create an account" -msgstr "أنشاء حساب" - -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Can't access your account?" -msgstr "لا تستطيع الدخول لحسابك؟" - -#: classes/integrations/shareyourcart/views/admin-page.php:100 -msgid "Configure" -msgstr "التكوين" - -#: classes/integrations/shareyourcart/views/admin-page.php:110 -#: classes/integrations/shareyourcart/views/button-settings-page.php:120 -msgid "Save changes" -msgstr "حفظ الإعدادات" - -#: classes/integrations/shareyourcart/views/button-settings-page.php:8 -#: classes/integrations/shareyourcart/views/button-settings-page.php:11 -msgid "Button style" -msgstr "مظهر الزر" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:25 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:85 -msgid "Flat Rate" -msgstr "سعر ثابت" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:27 -msgid "Flat rates let you define a standard rate per item, or per order." -msgstr "هذا يمكنك من تحديد سعر ثابت لكل عنصر أو طلب يشحن." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:78 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:52 -msgid "Enable this shipping method" -msgstr "تمكن طريقة الشحن" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:82 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:81 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:56 -msgid "Method Title" -msgstr "الاسم" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:89 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:63 -msgid "Availability" -msgstr "التوفر" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:93 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:148 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:104 -msgid "All allowed countries" -msgstr "متوفر لكل الدول" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:95 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:99 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:98 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:149 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:153 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:105 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:109 -msgid "Specific Countries" -msgstr "دول محددة" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:107 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:81 -msgid "Tax Status" -msgstr "حالة الضريبة" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:111 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:85 -msgid "Taxable" -msgstr "خاضع للضريبة" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:112 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:86 -msgid "None" -msgstr "بدون" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:116 -msgid "Cost per order" -msgstr "تكلفة كل الطلب" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:122 -msgid "Enter a cost (excluding tax) per order, e.g. 5.00. Leave blank to disable." -msgstr "أدخل تكلفة الشحن (بدون الضرائب) لكل طلب. مثل 5.00" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:128 -msgid "Additional Rates" -msgstr "قائمة الطرق" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:130 -msgid "Optional extra shipping options with additional costs (one per line): Option Name | Additional Cost | Per Cost Type (order, class, or item) Example: Priority Mail | 6.95 | order." -msgstr "اختياريًا يكمنك إضافة خيارات تكاليف إضافية (واحدة لكل سطر): اسم التكلفة | السعر | تطبق لكل (order , class, item)" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:133 -msgid "Option Name | Additional Cost | Per Cost Type (order, class, or item)" -msgstr "اسم التكلفة | السعر | تطبق لكل (order , class, item)" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:136 -msgid "Additional Costs" -msgstr "أسعار إضافية" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:138 -msgid "Additional costs can be added below - these will all be added to the per-order cost above." -msgstr "الأسعار الإضافية التالية ستضاف لسعر شحن كل طلب في الأعلى." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:141 -msgid "Costs Added..." -msgstr "تضاف لـ" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:145 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:94 -msgid "Per Order - charge shipping for the entire order as a whole" -msgstr "لكل طلب - تضاف على كل طلب بأكمله" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:146 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:95 -msgid "Per Item - charge shipping for each item individually" -msgstr "لكل عنصر - تضاف لكل عنصر موجود في الطلب" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:147 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:96 -msgid "Per Class - charge shipping for each shipping class in an order" -msgstr "لكل فئة - تضاف لكل فئة شحن موجودة في العربة" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:154 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:120 -msgid "Minimum Handling Fee" -msgstr "أقل عمولة للشحن" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:160 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:126 -msgid "Enter a minimum fee amount. Fee's less than this will be increased. Leave blank to disable." -msgstr "أدخل أقل قيمة للعمولة. العمولات الأقل من هذا الرقم ستزاد لتصل له. أتركه فارغ للتعطيل." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:479 -msgid "Costs" -msgstr "الأسعار" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:485 -#: woocommerce.php:891 -msgid "Shipping Class" -msgstr "فئة الشحن" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:486 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:100 -msgid "Cost" -msgstr "السعر" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:486 -msgid "Cost, excluding tax." -msgstr "السعر، بدون الضريبة." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:487 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:112 -msgid "Handling Fee" -msgstr "عمولة الشحن" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:487 -msgid "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -msgstr "عمولة الشحن بدون الضريبة. أدخل قيمة مثل: 2.50، أو نسبة مئوية مثل: 5%." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:492 -msgid "+ Add Cost" -msgstr "إضافة تسعيرة" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:492 -msgid "Delete selected costs" -msgstr "حذف الأسعار المحددة." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:498 -msgid "Any class" -msgstr "أي فئة" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:499 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:500 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:110 -#: templates/order/order-details.php:119 -#: templates/order/order-details.php:134 -msgid "N/A" -msgstr "ليس قيمة" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:518 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:548 -msgid "Select a class…" -msgstr "حدد فئة" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:523 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:524 -msgid "0.00" -msgstr "0.00" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:562 -msgid "Delete the selected rates?" -msgstr "حذف الأسعار المحددة؟" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:25 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:145 -msgid "Free Shipping" -msgstr "شحن مجاني" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:77 -msgid "Enable Free Shipping" -msgstr "تمكين الشحن المجاني" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:88 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:143 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:99 -msgid "Method availability" -msgstr "توفر الطريقة" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:106 -msgid "Free Shipping Requires..." -msgstr "متطلبات الشحن المجاني..." - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:111 -msgid "A valid free shipping coupon" -msgstr "قسيمة شحن مجاني" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:112 -msgid "A minimum order amount (defined below)" -msgstr "سعر أدنى للطلب (يحدد في الأسفل)" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:113 -msgid "A minimum order amount OR a coupon" -msgstr "سعر أدنى أو قسيمة" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:114 -msgid "A minimum order amount AND a coupon" -msgstr "سعر أدنى وقسيمة" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:118 -msgid "Minimum Order Amount" -msgstr "السعر الأدنى للطلب" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:124 -msgid "Users will need to spend this amount to get free shipping (if enabled above)." -msgstr "الزبائن يحتاجون إلى أن يطلبوا بهذا السعر للشحن المجاني (وفق الخيار السابق" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:29 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:59 -msgid "International Delivery" -msgstr "شحن دولي" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:30 -msgid "International delivery based on flat rate shipping." -msgstr "الشحن الدولي يكون بسعر ثابت للشحن." - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:68 -msgid "Selected countries" -msgstr "الدول المحددة فقط" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:69 -msgid "Excluding selected countries" -msgstr "الكل إلا الدول المحددة" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:73 -msgid "Countries" -msgstr "الدول" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:90 -msgid "Cost Added..." -msgstr "السعر لـ" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:106 -msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -msgstr "السعر بدون الضريبة. أدخل عدد مثل: 2.50" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:114 -msgid "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. Leave blank to disable." -msgstr "العمولة بدون الضريبة. أدخل قيمة مثل: 2.50، أو نسبة مئوية مثل: 5%." - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:25 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:107 -msgid "Local Delivery" -msgstr "شخن داخلي" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:98 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:78 -msgid "Enable" -msgstr "تمكين" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:100 -msgid "Enable local delivery" -msgstr "تمكين الشحن الدولي" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:111 -msgid "Fee Type" -msgstr "نوع العمولة" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:113 -msgid "How to calculate delivery charges" -msgstr "كيفية حساب الشحن الداخلي" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 -msgid "Fixed amount" -msgstr "سعر ثابت" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:117 -msgid "Percentage of cart total" -msgstr "نسبة مئوية للعربة" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:118 -msgid "Fixed amount per product" -msgstr "سعر ثابت لكل منتج" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:123 -msgid "Delivery Fee" -msgstr "عمولة الشحن" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:129 -msgid "What fee do you want to charge for local delivery, disregarded if you choose free. Leave blank to disable." -msgstr "ما هي العمولة التي تأخذها على الشحن الداخلي، تجاهله إذا كان الشحن مجاني. أتركه فارق للتعطيل" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:135 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:91 -msgid "Zip/Post Codes" -msgstr "الرموز البريدية" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:137 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:93 -msgid "What zip/post codes would you like to offer delivery to? Separate codes with a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -msgstr "أفصل بين الرموز البريدية بفاصلة \",\". يمكن استخدام النجمة للمجال مثل: P* سوف تقبل أي شيئ مكان النجمة كـ PE30" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:172 -msgid "Local delivery is a simple shipping method for delivering orders locally." -msgstr "الشحن الداخلي هو طريقة شحن عادية، لشحن الطلبات الداخلية." - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:25 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:87 -msgid "Local Pickup" -msgstr "استلام محلي" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:80 -msgid "Enable local pickup" -msgstr "تمكين الاستلام المحلي" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:117 -msgid "Apply base tax rate" -msgstr "حساب ضريبة المتجر" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:119 -msgid "When this shipping method is chosen, apply the base tax rate rather than for the customer's given address." -msgstr "الزبائن الذي يستلمون طلاباتهم من المحل، ستحسب ضرائب مشترياتهم وفق عنوان المحل بدل عنوانهم." - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:134 -msgid "Local pickup is a simple method which allows the customer to pick up their order themselves." -msgstr "الاستلام المحلي هو جعل الزبائن المحليين يأخذون طلباتهم بأنفسهم من المحل مباشرة." - -#: classes/shortcodes/class-wc-shortcode-cart.php:53 -#: woocommerce-functions.php:1701 -msgid "Please enter a valid postcode/ZIP." -msgstr "رجاء أدخل رمز بريدي صحيح" - -#: classes/shortcodes/class-wc-shortcode-cart.php:64 -#: classes/shortcodes/class-wc-shortcode-cart.php:70 -msgid "Shipping costs updated." -msgstr "تم تحديث أسعار الشحن." - -#: classes/shortcodes/class-wc-shortcode-checkout.php:45 -msgid "WooCommerce Config Error: The checkout thanks/pay pages are missing - these pages are required for the checkout to function correctly. Please configure the pages here." -msgstr "خطأ في تكوين WooCommerce: صفحتا الشكر والدفع غير موجودتان - هذه الصفحات مطلوبة لتعمل المحاسبة بشكل صحيح. رجاء كونهما هنا." - -#: classes/shortcodes/class-wc-shortcode-checkout.php:73 -msgid "The order totals have been updated. Please confirm your order by pressing the Place Order button at the bottom of the page." -msgstr "سعر طلبك تم إعادة حسابه. رجاء أكد طلبك عبر الضغط على زر تأكيد الطلب أسفل الصفحة." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:78 -#: woocommerce-functions.php:1623 -msgid "Please enter your password." -msgstr "رجاء أدخل كلمة المرور" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:93 -msgid "Your password has been reset." -msgstr "تم إعادة تعيين كلمة مرورك" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:93 -msgid "Log in" -msgstr "تسجيل الدخول" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:114 -msgid "Enter a username or e-mail address." -msgstr "أدخال اسم المستخدم أو البريد الإلكتروني" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:121 -msgid "There is no user registered with that email address." -msgstr "لا يوجد مستخدم مسجل بهذا البريد." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:136 -msgid "Invalid username or e-mail." -msgstr "اسم مستخدم أو بريد إلكتروني غير صحيح." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:150 -msgid "Password reset is not allowed for this user" -msgstr "كلمة المرور غيرت. ليست ممكن لهذا المستخدم" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:178 -msgid "Check your e-mail for the confirmation link." -msgstr "تأكد من بريدك لرابط التأكيد" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:198 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:203 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:210 -msgid "Invalid key" -msgstr "مفتاح خاطئ" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:51 -msgid "Please enter a valid order ID" -msgstr "رجاء أدخل رقم طلب صحيح" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:55 -msgid "Please enter a valid order email" -msgstr "رجاء أدخل بريد إلكتروني صحيح" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:74 -msgid "Sorry, we could not find that order id in our database." -msgstr "نأسف، الطلب غير موجود في قاعدة بياناتنا." - -#: classes/shortcodes/class-wc-shortcode-pay.php:64 -#: classes/shortcodes/class-wc-shortcode-pay.php:118 -msgid "Your order has already been paid for. Please contact us if you need assistance." -msgstr "طلبك مدفوع بالفعل. رجاء اتصل بنا أذا احتجت المساعدة." - -#: classes/shortcodes/class-wc-shortcode-pay.php:69 -#: classes/shortcodes/class-wc-shortcode-pay.php:125 -#: classes/shortcodes/class-wc-shortcode-view-order.php:51 -#: woocommerce-functions.php:909 -#: woocommerce-functions.php:989 -msgid "Invalid order." -msgstr "طلب خاطئ." - -#: classes/shortcodes/class-wc-shortcode-pay.php:90 -#: templates/checkout/thankyou.php:40 -#: templates/emails/customer-completed-order.php:18 -#: templates/emails/customer-invoice.php:22 -#: templates/emails/customer-note.php:22 -#: templates/emails/customer-processing-order.php:18 -msgid "Order:" -msgstr "الطلب:" - -#: classes/shortcodes/class-wc-shortcode-pay.php:94 -#: templates/checkout/thankyou.php:44 -msgid "Date:" -msgstr "التاريخ:" - -#: classes/shortcodes/class-wc-shortcode-pay.php:98 -#: templates/checkout/thankyou.php:48 -msgid "Total:" -msgstr "المجموع:" - -#: classes/shortcodes/class-wc-shortcode-pay.php:103 -#: templates/checkout/thankyou.php:53 -msgid "Payment method:" -msgstr "طريقة الدفع:" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:51 -msgid "My Account →" -msgstr "حسابي ←" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:58 -msgid "Order %s made on %s" -msgstr "الطلب %s بتاريخ %s" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:59 -msgid "Order status: %s" -msgstr "حالة الطلب: %s" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:65 -#: templates/order/tracking.php:31 -msgid "Order Updates" -msgstr "تحديثات الطلب" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:71 -msgid "l jS \\of F Y, h:ia" -msgstr "l j F Y، h:i:s a" - -#: classes/widgets/class-wc-widget-best-sellers.php:31 -msgid "Display a list of your best selling products on your site." -msgstr "عرض قائمة المنتجات الأكثر مبيعًا في هذا المتجر." - -#: classes/widgets/class-wc-widget-best-sellers.php:33 -msgid "WooCommerce Best Sellers" -msgstr "WooCommerce أفضل المبيعات" - -#: classes/widgets/class-wc-widget-best-sellers.php:71 -msgid "Best Sellers" -msgstr "أفضل المبيعات" - -#: classes/widgets/class-wc-widget-best-sellers.php:189 -#: classes/widgets/class-wc-widget-cart.php:109 -#: classes/widgets/class-wc-widget-featured-products.php:169 -#: classes/widgets/class-wc-widget-layered-nav.php:349 -#: classes/widgets/class-wc-widget-onsale.php:176 -#: classes/widgets/class-wc-widget-price-filter.php:179 -#: classes/widgets/class-wc-widget-product-categories.php:185 -#: classes/widgets/class-wc-widget-product-search.php:91 -#: classes/widgets/class-wc-widget-product-tag-cloud.php:101 -#: classes/widgets/class-wc-widget-random-products.php:134 -#: classes/widgets/class-wc-widget-recent-products.php:170 -#: classes/widgets/class-wc-widget-recent-reviews.php:158 -#: classes/widgets/class-wc-widget-recently-viewed.php:166 -#: classes/widgets/class-wc-widget-top-rated-products.php:156 -msgid "Title:" -msgstr "العنوان" - -#: classes/widgets/class-wc-widget-best-sellers.php:192 -#: classes/widgets/class-wc-widget-featured-products.php:172 -#: classes/widgets/class-wc-widget-onsale.php:179 -#: classes/widgets/class-wc-widget-random-products.php:139 -#: classes/widgets/class-wc-widget-recent-products.php:173 -#: classes/widgets/class-wc-widget-recent-reviews.php:161 -#: classes/widgets/class-wc-widget-recently-viewed.php:169 -#: classes/widgets/class-wc-widget-top-rated-products.php:159 -msgid "Number of products to show:" -msgstr "عدد المنتجات المعروضة" - -#: classes/widgets/class-wc-widget-best-sellers.php:196 -msgid "Hide free products" -msgstr "أخفاء المنتجات المجانية" - -#: classes/widgets/class-wc-widget-cart.php:33 -msgid "Display the user's Cart in the sidebar." -msgstr "عرض عربة الزبون في الشريط الجانبي" - -#: classes/widgets/class-wc-widget-cart.php:35 -msgid "WooCommerce Cart" -msgstr "العربة لـ WooCommerce" - -#: classes/widgets/class-wc-widget-cart.php:113 -msgid "Hide if cart is empty" -msgstr "أخفاء إذا كانت العربة فارغة" - -#: classes/widgets/class-wc-widget-featured-products.php:35 -msgid "Display a list of featured products on your site." -msgstr "عرض قائمة المنتجات المميزة في هذا المتجر." - -#: classes/widgets/class-wc-widget-featured-products.php:37 -msgid "WooCommerce Featured Products" -msgstr "المنتجات المميزة لـ WooCommerce" - -#: classes/widgets/class-wc-widget-featured-products.php:75 -msgid "Featured Products" -msgstr "المنتجات المميزة" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:31 -msgid "Shows active layered nav filters so users can see and deactivate them." -msgstr "عرض المرشحات المفعلة مع إمكانية تعطيلها. " - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:33 -msgid "WooCommerce Layered Nav Filters" -msgstr "قائمة المرشحات لـ WooCommerce" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:62 -msgid "Active filters" -msgstr "المرشحات المفعلة" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:93 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Remove filter" -msgstr "إزالة المرشح" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -msgid "Min" -msgstr "أدنى" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Max" -msgstr "أقصى" - -#: classes/widgets/class-wc-widget-layered-nav.php:31 -msgid "Shows a custom attribute in a widget which lets you narrow down the list of products when viewing product categories." -msgstr "مربع جانبي لصفة معينة يمكن الزوار من ترشيح المنتجات المعروضة وفق تلك الصفة." - -#: classes/widgets/class-wc-widget-layered-nav.php:33 -msgid "WooCommerce Layered Nav" -msgstr "محدد المنتجات لـ WooCommerce" - -#: classes/widgets/class-wc-widget-layered-nav.php:100 -msgid "Any %s" -msgstr "أي %s" - -#: classes/widgets/class-wc-widget-layered-nav.php:352 -msgid "Attribute:" -msgstr "الصفة:" - -#: classes/widgets/class-wc-widget-layered-nav.php:363 -msgid "Display Type:" -msgstr "نوع العرض" - -#: classes/widgets/class-wc-widget-layered-nav.php:365 -msgid "List" -msgstr "قائمة" - -#: classes/widgets/class-wc-widget-layered-nav.php:366 -msgid "Dropdown" -msgstr "قائمة منسدلة" - -#: classes/widgets/class-wc-widget-layered-nav.php:369 -msgid "Query Type:" -msgstr "نوع الترشيح" - -#: classes/widgets/class-wc-widget-layered-nav.php:371 -msgid "AND" -msgstr "و (جميع الخصائص)" - -#: classes/widgets/class-wc-widget-layered-nav.php:372 -msgid "OR" -msgstr "أو (أي من الخصائص)" - -#: classes/widgets/class-wc-widget-onsale.php:31 -msgid "Display a list of your on-sale products on your site." -msgstr "عرض قائمة بمنتجاتك المتوفرة للبيع" - -#: classes/widgets/class-wc-widget-onsale.php:33 -msgid "WooCommerce On-sale" -msgstr "منتجات للبيع لـ WooCommerce" - -#: classes/widgets/class-wc-widget-onsale.php:70 -msgid "On Sale" -msgstr "للبيع" - -#: classes/widgets/class-wc-widget-price-filter.php:33 -msgid "Shows a price filter slider in a widget which lets you narrow down the list of shown products when viewing product categories." -msgstr "مرشح لقائمة المنتجات المعروضة وفق سعر المتج." - -#: classes/widgets/class-wc-widget-price-filter.php:35 -msgid "WooCommerce Price Filter" -msgstr "مرشح السعر لـ WooCommerce" - -#: classes/widgets/class-wc-widget-price-filter.php:136 -msgid "Min price" -msgstr "أدنى سعر" - -#: classes/widgets/class-wc-widget-price-filter.php:137 -msgid "Max price" -msgstr "أقصى سعر" - -#: classes/widgets/class-wc-widget-price-filter.php:138 -msgid "Filter" -msgstr "ترشيح" - -#: classes/widgets/class-wc-widget-price-filter.php:140 -msgid "Price:" -msgstr "السعر:" - -#: classes/widgets/class-wc-widget-price-filter.php:162 -msgid "Filter by price" -msgstr "الترشيح بالسعر" - -#: classes/widgets/class-wc-widget-product-categories.php:33 -msgid "A list or dropdown of product categories." -msgstr "قائمة أو قائمة منسدلة بتصنيفات المنتجات." - -#: classes/widgets/class-wc-widget-product-categories.php:35 -msgid "WooCommerce Product Categories" -msgstr "تصنيفات المنتجات لـ WooCommerce" - -#: classes/widgets/class-wc-widget-product-categories.php:57 -#: woocommerce.php:821 -#: woocommerce.php:823 -msgid "Product Categories" -msgstr "تصنيفات المنتجات (الكتالوجات)" - -#: classes/widgets/class-wc-widget-product-categories.php:129 -msgid "No product categories exist." -msgstr "لا يوجد قوائم منتجات." - -#: classes/widgets/class-wc-widget-product-categories.php:188 -msgid "Order by:" -msgstr "ترتيب حسب:" - -#: classes/widgets/class-wc-widget-product-categories.php:190 -msgid "Category Order" -msgstr "ترتيب التصنيف" - -#: classes/widgets/class-wc-widget-product-categories.php:191 -#: templates/single-product-reviews.php:84 -#: woocommerce-ajax.php:1171 -msgid "Name" -msgstr "الاسم" - -#: classes/widgets/class-wc-widget-product-categories.php:195 -msgid "Show as dropdown" -msgstr "كرض كقائمة منسدلة" - -#: classes/widgets/class-wc-widget-product-categories.php:198 -msgid "Show post counts" -msgstr "عرض عدد المنتجات" - -#: classes/widgets/class-wc-widget-product-categories.php:201 -msgid "Show hierarchy" -msgstr "عرض الترتيب الشجري" - -#: classes/widgets/class-wc-widget-product-categories.php:204 -msgid "Only show children for the current category" -msgstr "عرض أبناء التصنيف الحالي فقط" - -#: classes/widgets/class-wc-widget-product-search.php:31 -msgid "A Search box for products only." -msgstr "صندوق بحث للمنتجات فقط." - -#: classes/widgets/class-wc-widget-product-search.php:33 -msgid "WooCommerce Product Search" -msgstr "البحث في المنتجات لـ WooCommerce" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:31 -msgid "Your most used product tags in cloud format." -msgstr "وسوم منتجاتك الأكثر استخداماً بشكل سحابة." - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:33 -msgid "WooCommerce Product Tags" -msgstr "معرض الوسوم لـ WooCommerce" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:58 -#: woocommerce.php:857 -#: woocommerce.php:859 -msgid "Product Tags" -msgstr "وسوم المنتجات" - -#: classes/widgets/class-wc-widget-random-products.php:24 -msgid "WooCommerce Random Products" -msgstr "منتجات عشوائية لـ WooCommerce" - -#: classes/widgets/class-wc-widget-random-products.php:27 -msgid "Display a list of random products on your site." -msgstr "عرض قائمة عشوائية من المنتجات في متجرك." - -#: classes/widgets/class-wc-widget-random-products.php:46 -msgid "Random Products" -msgstr "منتجات عشوائية" - -#: classes/widgets/class-wc-widget-random-products.php:145 -#: classes/widgets/class-wc-widget-recent-products.php:177 -msgid "Show hidden product variations" -msgstr "عرض الأنواع المخفية للمنتجات المتغيرة" - -#: classes/widgets/class-wc-widget-recent-products.php:31 -msgid "Display a list of your most recent products on your site." -msgstr "عرض قائمة بأحدث المنتجات في متجرك." - -#: classes/widgets/class-wc-widget-recent-products.php:33 -msgid "WooCommerce Recent Products" -msgstr "المنتجات الحديثة لـ WooCommerce" - -#: classes/widgets/class-wc-widget-recent-products.php:70 -msgid "New Products" -msgstr "وصل حديثا" - -#: classes/widgets/class-wc-widget-recent-reviews.php:31 -msgid "Display a list of your most recent reviews on your site." -msgstr "عرض قائمة لأحدث المراجعات قي موقعك." - -#: classes/widgets/class-wc-widget-recent-reviews.php:33 -msgid "WooCommerce Recent Reviews" -msgstr "المراجعات الحديثة لـ WooCommerce" - -#: classes/widgets/class-wc-widget-recent-reviews.php:71 -msgid "Recent Reviews" -msgstr "المراجعات الحديثة" - -#: classes/widgets/class-wc-widget-recent-reviews.php:97 -msgctxt "by comment author" -msgid "by %1$s" -msgstr "بواسطة %1$s" - -#: classes/widgets/class-wc-widget-recently-viewed.php:31 -msgid "Display a list of recently viewed products." -msgstr "عرض قائمة لآخر المنتجات مشاهدة." - -#: classes/widgets/class-wc-widget-recently-viewed.php:33 -msgid "WooCommerce Recently Viewed Products" -msgstr "آخر المنتجات مشاهدة لـ WooCommerce" - -#: classes/widgets/class-wc-widget-recently-viewed.php:76 -msgid "Recently viewed" -msgstr "مشاهد مؤخرًا" - -#: classes/widgets/class-wc-widget-top-rated-products.php:33 -msgid "Display a list of top rated products on your site." -msgstr "عرض قائمة لأفضل المنتجات تقييما في موقعك." - -#: classes/widgets/class-wc-widget-top-rated-products.php:35 -msgid "WooCommerce Top Rated Products" -msgstr "أفضل المنتجات تقييما لـ WooCommerce" - -#: classes/widgets/class-wc-widget-top-rated-products.php:72 -msgid "Top Rated Products" -msgstr "أفضل المنتجات تقيما" - -#: i18n/states/AU.php:13 -msgid "Australian Capital Territory" -msgstr "المقاطعة الأسترالية بأنتاركتيكا" - -#: i18n/states/AU.php:14 -msgid "New South Wales" -msgstr "نيوساوث ويلز" - -#: i18n/states/AU.php:15 -msgid "Northern Territory" -msgstr "الإقليم الشمالي" - -#: i18n/states/AU.php:16 -msgid "Queensland" -msgstr "كوينزلاند" - -#: i18n/states/AU.php:17 -msgid "South Australia" -msgstr "جنوب أستراليا" - -#: i18n/states/AU.php:18 -msgid "Tasmania" -msgstr "تسمانيا" - -#: i18n/states/AU.php:19 -msgid "Victoria" -msgstr "فيكتوريا" - -#: i18n/states/AU.php:20 -msgid "Western Australia" -msgstr "أستراليا الغربية" - -#: i18n/states/BR.php:13 -msgid "Acre" -msgstr "أكري" - -#: i18n/states/BR.php:14 -msgid "Alagoas" -msgstr "ألاغواس" - -#: i18n/states/BR.php:15 -msgid "Amapá" -msgstr "أمابا" - -#: i18n/states/BR.php:16 -msgid "Amazonas" -msgstr "الأمازون" - -#: i18n/states/BR.php:17 -msgid "Bahia" -msgstr "باهيا" - -#: i18n/states/BR.php:18 -msgid "Ceará" -msgstr "سيارا" - -#: i18n/states/BR.php:19 -msgid "Distrito Federal" -msgstr "ديستريتو فيديرال" - -#: i18n/states/BR.php:20 -msgid "Espírito Santo" -msgstr "إسبيريتو سانتو" - -#: i18n/states/BR.php:21 -msgid "Goiás" -msgstr "غوياس" - -#: i18n/states/BR.php:22 -msgid "Maranhão" -msgstr "مارانهاو" - -#: i18n/states/BR.php:23 -msgid "Mato Grosso" -msgstr "ماتو غروسو" - -#: i18n/states/BR.php:24 -msgid "Mato Grosso do Sul" -msgstr "ماتو غروسو دو سول" - -#: i18n/states/BR.php:25 -msgid "Minas Gerais" -msgstr "ميناس جيرايس" - -#: i18n/states/BR.php:26 -msgid "Pará" -msgstr "بارا" - -#: i18n/states/BR.php:27 -msgid "Paraíba" -msgstr "بارايبا" - -#: i18n/states/BR.php:28 -msgid "Paraná" -msgstr "بارانا" - -#: i18n/states/BR.php:29 -msgid "Pernambuco" -msgstr "بيرنامبوكو" - -#: i18n/states/BR.php:30 -msgid "Piauí" -msgstr "بياوي" - -#: i18n/states/BR.php:31 -msgid "Rio de Janeiro" -msgstr "ريو دي جانيرو" - -#: i18n/states/BR.php:32 -msgid "Rio Grande do Norte" -msgstr "ريو غراندي دو نورتي" - -#: i18n/states/BR.php:33 -msgid "Rio Grande do Sul" -msgstr "ريو غراندي دو سول" - -#: i18n/states/BR.php:34 -msgid "Rondônia" -msgstr "روندونيا" - -#: i18n/states/BR.php:35 -msgid "Roraima" -msgstr "رورايما" - -#: i18n/states/BR.php:36 -msgid "Santa Catarina" -msgstr "سانتا كاتارينا" - -#: i18n/states/BR.php:37 -msgid "São Paulo" -msgstr "ساو باولو" - -#: i18n/states/BR.php:38 -msgid "Sergipe" -msgstr "سيرجيبي" - -#: i18n/states/BR.php:39 -msgid "Tocantins" -msgstr "توكانتينس" - -#: i18n/states/CA.php:13 -msgid "Alberta" -msgstr "ألبرتا" - -#: i18n/states/CA.php:14 -msgid "British Columbia" -msgstr "كولومبيا البريطانية" - -#: i18n/states/CA.php:15 -msgid "Manitoba" -msgstr "مانيتوبا" - -#: i18n/states/CA.php:16 -msgid "New Brunswick" -msgstr "نيو برونزويك" - -#: i18n/states/CA.php:17 -msgid "Newfoundland" -msgstr "نيوفاوندلاند" - -#: i18n/states/CA.php:18 -msgid "Northwest Territories" -msgstr "الأقاليم الشمالية الغربية" - -#: i18n/states/CA.php:19 -msgid "Nova Scotia" -msgstr "نوفا سكوتيا" - -#: i18n/states/CA.php:20 -msgid "Nunavut" -msgstr "نونافوت" - -#: i18n/states/CA.php:21 -msgid "Ontario" -msgstr "أونتاريو" - -#: i18n/states/CA.php:22 -msgid "Prince Edward Island" -msgstr "جزيرة الأمير إدوارد" - -#: i18n/states/CA.php:23 -msgid "Quebec" -msgstr "كيبيك" - -#: i18n/states/CA.php:24 -msgid "Saskatchewan" -msgstr "ساسكاتشوان" - -#: i18n/states/CA.php:25 -msgid "Yukon Territory" -msgstr "إقليم يوكون" - -#: i18n/states/CN.php:13 -msgid "Yunnan / 云南" -msgstr "يوننان \\ 云南" - -#: i18n/states/CN.php:14 -msgid "Beijing / 北京" -msgstr "بكين \\ 北京" - -#: i18n/states/CN.php:15 -msgid "Tianjin / 天津" -msgstr "تيانجين \\ 天津" - -#: i18n/states/CN.php:16 -msgid "Hebei / 河北" -msgstr "هوبي \\ 河北" - -#: i18n/states/CN.php:17 -msgid "Shanxi / 山西" -msgstr "شانشي \\ 山西" - -#: i18n/states/CN.php:18 -msgid "Inner Mongolia / 內蒙古" -msgstr "منغوليا الداخلية \\ 內蒙古" - -#: i18n/states/CN.php:19 -msgid "Liaoning / 辽宁" -msgstr "لياونينغ \\ 辽宁" - -#: i18n/states/CN.php:20 -msgid "Jilin / 吉林" -msgstr "جيلين \\ 吉林" - -#: i18n/states/CN.php:21 -msgid "Heilongjiang / 黑龙江" -msgstr "هيلونغجيانغ \\ 黑龙江" - -#: i18n/states/CN.php:22 -msgid "Shanghai / 上海" -msgstr "شانغهاي \\ 上海" - -#: i18n/states/CN.php:23 -msgid "Jiangsu / 江苏" -msgstr "جيانغسو \\ 江苏" - -#: i18n/states/CN.php:24 -msgid "Zhejiang / 浙江" -msgstr "جيجيانغ \\ 浙江" - -#: i18n/states/CN.php:25 -msgid "Anhui / 安徽" -msgstr "آنهوي \\ 安徽" - -#: i18n/states/CN.php:26 -msgid "Fujian / 福建" -msgstr "فوجيان \\ 福建" - -#: i18n/states/CN.php:27 -msgid "Jiangxi / 江西" -msgstr "جيانغشي \\ 江西" - -#: i18n/states/CN.php:28 -msgid "Shandong / 山东" -msgstr "شاندونغ \\ 山东" - -#: i18n/states/CN.php:29 -msgid "Henan / 河南" -msgstr "خنان \\ 河南" - -#: i18n/states/CN.php:30 -msgid "Hubei / 湖北" -msgstr "هوبي \\ 湖北" - -#: i18n/states/CN.php:31 -msgid "Hunan / 湖南" -msgstr "هونان \\ 湖南" - -#: i18n/states/CN.php:32 -msgid "Guangdong / 广东" -msgstr "قوانغدونغ \\ 广东" - -#: i18n/states/CN.php:33 -msgid "Guangxi Zhuang / 广西壮族" -msgstr "قوانغشي \\ 广西壮族" - -#: i18n/states/CN.php:34 -msgid "Hainan / 海南" -msgstr "هاينان \\ 海南" - -#: i18n/states/CN.php:35 -msgid "Chongqing / 重庆" -msgstr "تشونغتشينغ \\ 重庆" - -#: i18n/states/CN.php:36 -msgid "Sichuan / 四川" -msgstr "سيتشوان \\ 四川" - -#: i18n/states/CN.php:37 -msgid "Guizhou / 贵州" -msgstr "قويتشو \\ 贵州" - -#: i18n/states/CN.php:38 -msgid "Shaanxi / 陕西" -msgstr "شانشي \\ 陕西" - -#: i18n/states/CN.php:39 -msgid "Gansu / 甘肃" -msgstr "قانسو \\ 甘肃" - -#: i18n/states/CN.php:40 -msgid "Qinghai / 青海" -msgstr "تشينغهاي \\ 青海" - -#: i18n/states/CN.php:41 -msgid "Ningxia Hui / 宁夏" -msgstr "نينغشيا \\ 宁夏" - -#: i18n/states/CN.php:42 -msgid "Macau / 澳门" -msgstr "ماكاو \\ 澳门" - -#: i18n/states/CN.php:43 -msgid "Tibet / 西藏" -msgstr "تبت \\ 西藏" - -#: i18n/states/CN.php:44 -msgid "Xinjiang / 新疆" -msgstr "شينجيانغ \\ 新疆" - -#: i18n/states/HK.php:13 -msgid "Hong Kong Island" -msgstr "جزيرة هونغ كونغ" - -#: i18n/states/HK.php:14 -msgid "Kowloon" -msgstr "كولون" - -#: i18n/states/HK.php:15 -msgid "New Territories" -msgstr "الأقاليم الجديدة" - -#: i18n/states/HU.php:13 -msgid "Bács-Kiskun" -msgstr "باتش-كيشكون" - -#: i18n/states/HU.php:14 -msgid "Békés" -msgstr "بكيش" - -#: i18n/states/HU.php:15 -msgid "Baranya" -msgstr "بارانيا" - -#: i18n/states/HU.php:16 -msgid "Borsod-Abaúj-Zemplén" -msgstr "بورسود-آبائوي-زمبلن" - -#: i18n/states/HU.php:17 -msgid "Budapest" -msgstr "بشت" - -#: i18n/states/HU.php:18 -msgid "Csongrád" -msgstr "تشونغراد" - -#: i18n/states/HU.php:19 -msgid "Fejér" -msgstr "فيير" - -#: i18n/states/HU.php:20 -msgid "Győr-Moson-Sopron" -msgstr "ديور-موشون-سوبرون" - -#: i18n/states/HU.php:21 -msgid "Hajdú-Bihar" -msgstr "هايدو-بيهار" - -#: i18n/states/HU.php:22 -msgid "Heves" -msgstr "هفش" - -#: i18n/states/HU.php:23 -msgid "Jász-Nagykun-Szolnok" -msgstr "ياس-نادكون-سولنك" - -#: i18n/states/HU.php:24 -msgid "Komárom-Esztergom" -msgstr "كوماروم-إستركوم" - -#: i18n/states/HU.php:25 -msgid "Nógrád" -msgstr "نوغراد" - -#: i18n/states/HU.php:26 -msgid "Pest" -msgstr "بشت" - -#: i18n/states/HU.php:27 -msgid "Somogy" -msgstr "شومود" - -#: i18n/states/HU.php:28 -msgid "Szabolcs-Szatmár-Bereg" -msgstr "سابولتش-ساتمار-بريغ" - -#: i18n/states/HU.php:29 -msgid "Tolna" -msgstr "تولنا" - -#: i18n/states/HU.php:30 -msgid "Vas" -msgstr "فاس" - -#: i18n/states/HU.php:31 -msgid "Veszprém" -msgstr "فسبرم" - -#: i18n/states/HU.php:32 -msgid "Zala" -msgstr "زاﻻ" - -#: i18n/states/HZ.php:13 -#: i18n/states/NZ.php:14 -msgid "Auckland" -msgstr "أوكلاند" - -#: i18n/states/HZ.php:14 -#: i18n/states/NZ.php:16 -msgid "Bay of Plenty" -msgstr "خليج بلنتي" - -#: i18n/states/HZ.php:15 -#: i18n/states/NZ.php:25 -msgid "Canterbury" -msgstr "كانتربيري" - -#: i18n/states/HZ.php:16 -#: i18n/states/NZ.php:18 -msgid "Hawke’s Bay" -msgstr "خليج هوكس" - -#: i18n/states/HZ.php:17 -#: i18n/states/NZ.php:19 -msgid "Manawatu-Wanganui" -msgstr "ماناواتو-وانجانوي" - -#: i18n/states/HZ.php:18 -#: i18n/states/NZ.php:22 -msgid "Marlborough" -msgstr "مارلبورو" - -#: i18n/states/HZ.php:19 -#: i18n/states/NZ.php:21 -msgid "Nelson" -msgstr "نيلسون" - -#: i18n/states/HZ.php:20 -#: i18n/states/NZ.php:13 -msgid "Northland" -msgstr "نورثلاند" - -#: i18n/states/HZ.php:21 -#: i18n/states/NZ.php:26 -msgid "Otago" -msgstr "أوتاجو" - -#: i18n/states/HZ.php:22 -#: i18n/states/NZ.php:27 -msgid "Southland" -msgstr "ساوثلاند" - -#: i18n/states/HZ.php:23 -#: i18n/states/NZ.php:17 -msgid "Taranaki" -msgstr "تاراناكي" - -#: i18n/states/HZ.php:24 -#: i18n/states/NZ.php:23 -msgid "Tasman" -msgstr "تاسمان" - -#: i18n/states/HZ.php:25 -#: i18n/states/NZ.php:15 -msgid "Waikato" -msgstr "وايكاتو" - -#: i18n/states/HZ.php:26 -#: i18n/states/NZ.php:20 -msgid "Wellington" -msgstr "ولينغتون" - -#: i18n/states/HZ.php:27 -#: i18n/states/NZ.php:24 -msgid "West Coast" -msgstr "الساحل الغربي" - -#: i18n/states/ID.php:13 -msgid "Daerah Istimewa Aceh" -msgstr "آتشيه" - -#: i18n/states/ID.php:14 -msgid "Sumatera Utara" -msgstr "سومطرة الشمالية" - -#: i18n/states/ID.php:15 -msgid "Sumatera Barat" -msgstr "سومطرة الغربية" - -#: i18n/states/ID.php:16 -msgid "Riau" -msgstr "رياو" - -#: i18n/states/ID.php:17 -msgid "Kepulauan Riau" -msgstr "جزر رياو" - -#: i18n/states/ID.php:18 -msgid "Jambi" -msgstr "جامبي" - -#: i18n/states/ID.php:19 -msgid "Sumatera Selatan" -msgstr "سومطرة الجنوبية" - -#: i18n/states/ID.php:20 -msgid "Bangka Belitung" -msgstr "بانجكا - بليتونج" - -#: i18n/states/ID.php:21 -msgid "Bengkulu" -msgstr "بنجكولو" - -#: i18n/states/ID.php:22 -msgid "Lampung" -msgstr "لامبونج" - -#: i18n/states/ID.php:23 -msgid "DKI Jakarta" -msgstr "جاكارتا" - -#: i18n/states/ID.php:24 -msgid "Jawa Barat" -msgstr "جاوة الغربية" - -#: i18n/states/ID.php:25 -msgid "Banten" -msgstr "بانتن" - -#: i18n/states/ID.php:26 -msgid "Jawa Tengah" -msgstr "جاوة الوسطى" - -#: i18n/states/ID.php:27 -msgid "Jawa Timur" -msgstr "جاوة الشرقية" - -#: i18n/states/ID.php:28 -msgid "Daerah Istimewa Yogyakarta" -msgstr "يوجياكرتا" - -#: i18n/states/ID.php:29 -msgid "Bali" -msgstr "بالي" - -#: i18n/states/ID.php:30 -msgid "Nusa Tenggara Barat" -msgstr "نوسا تنجارا غرب" - -#: i18n/states/ID.php:31 -msgid "Nusa Tenggara Timur" -msgstr "نوسا تنجارا شرق" - -#: i18n/states/ID.php:32 -msgid "Kalimantan Barat" -msgstr "كالمنتان الغربية" - -#: i18n/states/ID.php:33 -msgid "Kalimantan Tengah" -msgstr "كالمنتان الوسطى" - -#: i18n/states/ID.php:34 -msgid "Kalimantan Timur" -msgstr "كالمنتان الشرقية" - -#: i18n/states/ID.php:35 -msgid "Kalimantan Selatan" -msgstr "كاليمانتان الجنوبية" - -#: i18n/states/ID.php:36 -msgid "Kalimantan Utara" -msgstr "كاليمانتان الشمالية" - -#: i18n/states/ID.php:37 -msgid "Sulawesi Utara" -msgstr "سولاوسي الشمالية" - -#: i18n/states/ID.php:38 -msgid "Sulawesi Tengah" -msgstr "سولاوسي الوسطى" - -#: i18n/states/ID.php:39 -msgid "Sulawesi Tenggara" -msgstr "سولاوسي الجنوبية الشرقية" - -#: i18n/states/ID.php:40 -msgid "Sulawesi Barat" -msgstr "سولاوسي الغربية" - -#: i18n/states/ID.php:41 -msgid "Sulawesi Selatan" -msgstr "سولاوسي الجنوبية" - -#: i18n/states/ID.php:42 -msgid "Gorontalo" -msgstr "جورونتالو" - -#: i18n/states/ID.php:43 -msgid "Maluku" -msgstr "مالوكو" - -#: i18n/states/ID.php:44 -msgid "Maluku Utara" -msgstr "مالوكو شمالية" - -#: i18n/states/ID.php:45 -msgid "Papua" -msgstr "بابوا" - -#: i18n/states/ID.php:46 -msgid "Papua Barat" -msgstr "بابوا الغربية" - -#: i18n/states/IN.php:13 -msgid "Andra Pradesh" -msgstr "أندرا برديش" - -#: i18n/states/IN.php:14 -msgid "Arunachal Pradesh" -msgstr "أروناجل برديش" - -#: i18n/states/IN.php:15 -msgid "Assam" -msgstr "آسام" - -#: i18n/states/IN.php:16 -msgid "Bihar" -msgstr "بيهار" - -#: i18n/states/IN.php:17 -msgid "Chhattisgarh" -msgstr "شانديغار" - -#: i18n/states/IN.php:18 -msgid "Goa" -msgstr "غوا" - -#: i18n/states/IN.php:19 -msgid "Gujarat" -msgstr "غوجارات" - -#: i18n/states/IN.php:20 -msgid "Haryana" -msgstr "هاريانا" - -#: i18n/states/IN.php:21 -msgid "Himachal Pradesh" -msgstr "هيماجل برديش" - -#: i18n/states/IN.php:22 -msgid "Jammu and Kashmir" -msgstr "جامو وكشمير" - -#: i18n/states/IN.php:23 -msgid "Jharkhand" -msgstr "جهارخاند" - -#: i18n/states/IN.php:24 -msgid "Karnataka" -msgstr "كارناتاكا" - -#: i18n/states/IN.php:25 -msgid "Kerala" -msgstr "كيرلا" - -#: i18n/states/IN.php:26 -msgid "Madhya Pradesh" -msgstr "ماديا براديش" - -#: i18n/states/IN.php:27 -msgid "Maharashtra" -msgstr "ماهاراشترا" - -#: i18n/states/IN.php:28 -msgid "Manipur" -msgstr "مانيبور" - -#: i18n/states/IN.php:29 -msgid "Meghalaya" -msgstr "ميغالايا" - -#: i18n/states/IN.php:30 -msgid "Mizoram" -msgstr "ميزورام" - -#: i18n/states/IN.php:31 -msgid "Nagaland" -msgstr "ناجالاند" - -#: i18n/states/IN.php:32 -msgid "Orissa" -msgstr "أوريسا" - -#: i18n/states/IN.php:33 -msgid "Punjab" -msgstr "بنجاب" - -#: i18n/states/IN.php:34 -msgid "Rajasthan" -msgstr "راجستان" - -#: i18n/states/IN.php:35 -msgid "Sikkim" -msgstr "سيكيم" - -#: i18n/states/IN.php:36 -msgid "Tamil Nadu" -msgstr "تامل نادو" - -#: i18n/states/IN.php:37 -msgid "Tripura" -msgstr "ترايبورا" - -#: i18n/states/IN.php:38 -msgid "Uttaranchal" -msgstr "أوتاراخند" - -#: i18n/states/IN.php:39 -msgid "Uttar Pradesh" -msgstr "أتر برديش" - -#: i18n/states/IN.php:40 -msgid "West Bengal" -msgstr "بنغال الغربية" - -#: i18n/states/IN.php:41 -msgid "Andaman and Nicobar Islands" -msgstr "جزر أندمان ونيكوبار" - -#: i18n/states/IN.php:42 -msgid "Chandigarh" -msgstr "شانديغار" - -#: i18n/states/IN.php:43 -msgid "Dadar and Nagar Haveli" -msgstr "دادار وناغار هافيلي" - -#: i18n/states/IN.php:44 -msgid "Daman and Diu" -msgstr "دمن وديو" - -#: i18n/states/IN.php:45 -msgid "Delhi" -msgstr "دلهي" - -#: i18n/states/IN.php:46 -msgid "Lakshadeep" -msgstr "لكشديب" - -#: i18n/states/IN.php:47 -msgid "Pondicherry (Puducherry)" -msgstr "بونديتشيري" - -#: i18n/states/MY.php:13 -msgid "Johor" -msgstr "جوهر" - -#: i18n/states/MY.php:14 -msgid "Kedah" -msgstr "قدح" - -#: i18n/states/MY.php:15 -msgid "Kelantan" -msgstr "كلانتان" - -#: i18n/states/MY.php:16 -msgid "Melaka" -msgstr "ملاكا" - -#: i18n/states/MY.php:17 -msgid "Negeri Sembilan" -msgstr "نجري سمبيلن" - -#: i18n/states/MY.php:18 -msgid "Pahang" -msgstr "بهنج" - -#: i18n/states/MY.php:19 -msgid "Perak" -msgstr "براق" - -#: i18n/states/MY.php:20 -msgid "Perlis" -msgstr "برليس" - -#: i18n/states/MY.php:21 -msgid "Pulau Pinang" -msgstr "بينانج" - -#: i18n/states/MY.php:22 -msgid "Sabah" -msgstr "صباح" - -#: i18n/states/MY.php:23 -msgid "Sarawak" -msgstr "سراوق" - -#: i18n/states/MY.php:24 -msgid "Selangor" -msgstr "سلانغور" - -#: i18n/states/MY.php:25 -msgid "Terengganu" -msgstr "ترنجانو" - -#: i18n/states/MY.php:26 -msgid "W.P. Kuala Lumpur" -msgstr "كوالالمبور" - -#: i18n/states/MY.php:27 -msgid "W.P. Labuan" -msgstr "لابوان" - -#: i18n/states/MY.php:28 -msgid "W.P. Putrajaya" -msgstr "بوتراجايا" - -#: i18n/states/TH.php:13 -msgid "Amnat Charoen (อำนาจเจริญ)" -msgstr "أمنات تشاروين (อำนาจเจริญ)" - -#: i18n/states/TH.php:14 -msgid "Ang Thong (อ่างทอง)" -msgstr "أنغ ثونغ (อ่างทอง)" - -#: i18n/states/TH.php:15 -msgid "Ayutthaya (พระนครศรีอยุธยา)" -msgstr "أيوتثايا (พระนครศรีอยุธยา)" - -#: i18n/states/TH.php:16 -msgid "Bangkok (กรุงเทพมหานคร)" -msgstr "بانكوك (กรุงเทพมหานคร)" - -#: i18n/states/TH.php:17 -msgid "Bueng Kan (บึงกาฬ)" -msgstr "بيونق كان (บึงกาฬ)" - -#: i18n/states/TH.php:18 -msgid "Buri Ram (บุรีรัมย์)" -msgstr "بوري رام (บุรีรัมย์)" - -#: i18n/states/TH.php:19 -msgid "Chachoengsao (ฉะเชิงเทรา)" -msgstr "شاشوينغساو (ฉะเชิงเทรา)" - -#: i18n/states/TH.php:20 -msgid "Chai Nat (ชัยนาท)" -msgstr "تشاي نات (ชัยนาท)" - -#: i18n/states/TH.php:21 -msgid "Chaiyaphum (ชัยภูมิ)" -msgstr "تشايافوم (ชัยภูมิ)" - -#: i18n/states/TH.php:22 -msgid "Chanthaburi (จันทบุรี)" -msgstr "تشانثابوري (จันทบุรี)" - -#: i18n/states/TH.php:23 -msgid "Chiang Mai (เชียงใหม่)" -msgstr "شيانج ماي (เชียงใหม่)" - -#: i18n/states/TH.php:24 -msgid "Chiang Rai (เชียงราย)" -msgstr "شيانج راي (เชียงราย)" - -#: i18n/states/TH.php:25 -msgid "Chonburi (ชลบุรี)" -msgstr "تشونبوري (ชลบุรี)" - -#: i18n/states/TH.php:26 -msgid "Chumphon (ชุมพร)" -msgstr "شومفون (ชุมพร)" - -#: i18n/states/TH.php:27 -msgid "Kalasin (กาฬสินธุ์)" -msgstr "كالاسين (กาฬสินธุ์)" - -#: i18n/states/TH.php:28 -msgid "Kamphaeng Phet (กำแพงเพชร)" -msgstr "كامبينغ فيت (กำแพงเพชร)" - -#: i18n/states/TH.php:29 -msgid "Kanchanaburi (กาญจนบุรี)" -msgstr "كانشانابوري (กาญจนบุรี)" - -#: i18n/states/TH.php:30 -msgid "Khon Kaen (ขอนแก่น)" -msgstr "خون كاين (ขอนแก่น)" - -#: i18n/states/TH.php:31 -msgid "Krabi (กระบี่)" -msgstr "كرابي (กระบี่)" - -#: i18n/states/TH.php:32 -msgid "Lampang (ลำปาง)" -msgstr "لامبانغ (ลำปาง)" - -#: i18n/states/TH.php:33 -msgid "Lamphun (ลำพูน)" -msgstr "لامفون (ลำพูน)" - -#: i18n/states/TH.php:34 -msgid "Loei (เลย)" -msgstr "لووي (เลย)" - -#: i18n/states/TH.php:35 -msgid "Lopburi (ลพบุรี)" -msgstr "لوبوري (ลพบุรี)" - -#: i18n/states/TH.php:36 -msgid "Mae Hong Son (แม่ฮ่องสอน)" -msgstr "ماي هونغ سون (แม่ฮ่องสอน)" - -#: i18n/states/TH.php:37 -msgid "Maha Sarakham (มหาสารคาม)" -msgstr "مها ساراخام (มหาสารคาม)" - -#: i18n/states/TH.php:38 -msgid "Mukdahan (มุกดาหาร)" -msgstr "موكداهان (มุกดาหาร)" - -#: i18n/states/TH.php:39 -msgid "Nakhon Nayok (นครนายก)" -msgstr "ناخون نايوك (นครนายก)" - -#: i18n/states/TH.php:40 -msgid "Nakhon Pathom (นครปฐม)" -msgstr "ناخون باتوم (นครปฐม)" - -#: i18n/states/TH.php:41 -msgid "Nakhon Phanom (นครพนม)" -msgstr "ناخون فانوم (นครพนม)" - -#: i18n/states/TH.php:42 -msgid "Nakhon Ratchasima (นครราชสีมา)" -msgstr "ناخون راتشاسيما (นครราชสีมา)" - -#: i18n/states/TH.php:43 -msgid "Nakhon Sawan (นครสวรรค์)" -msgstr "ناخون ساوان (นครสวรรค์)" - -#: i18n/states/TH.php:44 -msgid "Nakhon Si Thammarat (นครศรีธรรมราช)" -msgstr "ناخون سي ثامارات (นครศรีธรรมราช)" - -#: i18n/states/TH.php:45 -msgid "Nan (น่าน)" -msgstr "نان (น่าน)" - -#: i18n/states/TH.php:46 -msgid "Narathiwat (นราธิวาส)" -msgstr "ناراثيوات (นราธิวาส)" - -#: i18n/states/TH.php:47 -msgid "Nong Bua Lam Phu (หนองบัวลำภู)" -msgstr "نونغ بوا لام فو (หนองบัวลำภู)" - -#: i18n/states/TH.php:48 -msgid "Nong Khai (หนองคาย)" -msgstr "نونغ خاي (หนองคาย)" - -#: i18n/states/TH.php:49 -msgid "Nonthaburi (นนทบุรี)" -msgstr "نونثابوري (นนทบุรี)" - -#: i18n/states/TH.php:50 -msgid "Pathum Thani (ปทุมธานี)" -msgstr "باثوم ثاني (ปทุมธานี)" - -#: i18n/states/TH.php:51 -msgid "Pattani (ปัตตานี)" -msgstr "باتاني (ปัตตานี)" - -#: i18n/states/TH.php:52 -msgid "Phang Nga (พังงา)" -msgstr "بان ناه (พังงา)" - -#: i18n/states/TH.php:53 -msgid "Phatthalung (พัทลุง)" -msgstr "فاتهالونج (พัทลุง)" - -#: i18n/states/TH.php:54 -msgid "Phayao (พะเยา)" -msgstr "فاياو (พะเยา)" - -#: i18n/states/TH.php:55 -msgid "Phetchabun (เพชรบูรณ์)" -msgstr "فيتشابون (เพชรบูรณ์)" - -#: i18n/states/TH.php:56 -msgid "Phetchaburi (เพชรบุรี)" -msgstr "فيتشابوري (เพชรบุรี)" - -#: i18n/states/TH.php:57 -msgid "Phichit (พิจิตร)" -msgstr "فيتشيت (พิจิตร)" - -#: i18n/states/TH.php:58 -msgid "Phitsanulok (พิษณุโลก)" -msgstr "فيتسانولوك (พิษณุโลก)" - -#: i18n/states/TH.php:59 -msgid "Phrae (แพร่)" -msgstr "فرا (แพร่)" - -#: i18n/states/TH.php:60 -msgid "Phuket (ภูเก็ต)" -msgstr "فوكيت (ภูเก็ต)" - -#: i18n/states/TH.php:61 -msgid "Prachin Buri (ปราจีนบุรี)" -msgstr "براشين بوري (ปราจีนบุรี)" - -#: i18n/states/TH.php:62 -msgid "Prachuap Khiri Khan (ประจวบคีรีขันธ์)" -msgstr "براشواب خيرى خان (ประจวบคีรีขันธ์)" - -#: i18n/states/TH.php:63 -msgid "Ranong (ระนอง)" -msgstr "رانونغ (ระนอง)" - -#: i18n/states/TH.php:64 -msgid "Ratchaburi (ราชบุรี)" -msgstr "راتشابورى (ราชบุรี)" - -#: i18n/states/TH.php:65 -msgid "Rayong (ระยอง)" -msgstr "رايونج (ระยอง)" - -#: i18n/states/TH.php:66 -msgid "Roi Et (ร้อยเอ็ด)" -msgstr "روي إت (ร้อยเอ็ด)" - -#: i18n/states/TH.php:67 -msgid "Sa Kaeo (สระแก้ว)" -msgstr "سا كايو (สระแก้ว)" - -#: i18n/states/TH.php:68 -msgid "Sakon Nakhon (สกลนคร)" -msgstr "ساكون ناخون (สกลนคร)" - -#: i18n/states/TH.php:69 -msgid "Samut Prakan (สมุทรปราการ)" -msgstr "ساموت براكان (สมุทรปราการ)" - -#: i18n/states/TH.php:70 -msgid "Samut Sakhon (สมุทรสาคร)" -msgstr "ساموت ساخون (สมุทรสาคร)" - -#: i18n/states/TH.php:71 -msgid "Samut Songkhram (สมุทรสงคราม)" -msgstr "ساموت سونغخرام (สมุทรสงคราม)" - -#: i18n/states/TH.php:72 -msgid "Saraburi (สระบุรี)" -msgstr "سارابوري (สระบุรี)" - -#: i18n/states/TH.php:73 -msgid "Satun (สตูล)" -msgstr "ساتون (สตูล)" - -#: i18n/states/TH.php:74 -msgid "Sing Buri (สิงห์บุรี)" -msgstr "سنغ بوري (สิงห์บุรี)" - -#: i18n/states/TH.php:75 -msgid "Sisaket (ศรีสะเกษ)" -msgstr "سيساكيت (ศรีสะเกษ)" - -#: i18n/states/TH.php:76 -msgid "Songkhla (สงขลา)" -msgstr "سونجخلا (สงขลา)" - -#: i18n/states/TH.php:77 -msgid "Sukhothai (สุโขทัย)" -msgstr "سوخوثاي (สุโขทัย)" - -#: i18n/states/TH.php:78 -msgid "Suphan Buri (สุพรรณบุรี)" -msgstr "سوفان بوري (สุพรรณบุรี)" - -#: i18n/states/TH.php:79 -msgid "Surat Thani (สุราษฎร์ธานี)" -msgstr "سورات ثاني (สุราษฎร์ธานี)" - -#: i18n/states/TH.php:80 -msgid "Surin (สุรินทร์)" -msgstr "سورين (สุรินทร์)" - -#: i18n/states/TH.php:81 -msgid "Tak (ตาก)" -msgstr "تاك (ตาก)" - -#: i18n/states/TH.php:82 -msgid "Trang (ตรัง)" -msgstr "ترانج (ตรัง)" - -#: i18n/states/TH.php:83 -msgid "Trat (ตราด)" -msgstr "ترات (ตราด)" - -#: i18n/states/TH.php:84 -msgid "Ubon Ratchathani (อุบลราชธานี)" -msgstr "أوبون راتشاثاني (อุบลราชธานี)" - -#: i18n/states/TH.php:85 -msgid "Udon Thani (อุดรธานี)" -msgstr "أودون ثاني (อุดรธานี)" - -#: i18n/states/TH.php:86 -msgid "Uthai Thani (อุทัยธานี)" -msgstr "اوتاي ثاني (อุทัยธานี)" - -#: i18n/states/TH.php:87 -msgid "Uttaradit (อุตรดิตถ์)" -msgstr "أوتاراديت (อุตรดิตถ์)" - -#: i18n/states/TH.php:88 -msgid "Yala (ยะลา)" -msgstr "يالا (ยะลา)" - -#: i18n/states/TH.php:89 -msgid "Yasothon (ยโสธร)" -msgstr "ياسوثون (ยโสธร)" - -#: i18n/states/US.php:13 -msgid "Alabama" -msgstr "ألاباما" - -#: i18n/states/US.php:14 -msgid "Alaska" -msgstr "ألاسكا" - -#: i18n/states/US.php:15 -msgid "Arizona" -msgstr "أريزونا" - -#: i18n/states/US.php:16 -msgid "Arkansas" -msgstr "أركنسو" - -#: i18n/states/US.php:17 -msgid "California" -msgstr "كاليفورنيا" - -#: i18n/states/US.php:18 -msgid "Colorado" -msgstr "كولورادو" - -#: i18n/states/US.php:19 -msgid "Connecticut" -msgstr "كونيتيكت" - -#: i18n/states/US.php:20 -msgid "Delaware" -msgstr "ديلاوير" - -#: i18n/states/US.php:21 -msgid "District Of Columbia" -msgstr "كولومبيا" - -#: i18n/states/US.php:22 -msgid "Florida" -msgstr "فلوريدا" - -#: i18n/states/US.php:24 -msgid "Hawaii" -msgstr "هاواي" - -#: i18n/states/US.php:25 -msgid "Idaho" -msgstr "ايداهو" - -#: i18n/states/US.php:26 -msgid "Illinois" -msgstr "إلينوي" - -#: i18n/states/US.php:27 -msgid "Indiana" -msgstr "إنديانا" - -#: i18n/states/US.php:28 -msgid "Iowa" -msgstr "أيوا" - -#: i18n/states/US.php:29 -msgid "Kansas" -msgstr "كانساس" - -#: i18n/states/US.php:30 -msgid "Kentucky" -msgstr "كنتاكي" - -#: i18n/states/US.php:31 -msgid "Louisiana" -msgstr "لويزيانا" - -#: i18n/states/US.php:32 -msgid "Maine" -msgstr "مين" - -#: i18n/states/US.php:33 -msgid "Maryland" -msgstr "ميريلاند" - -#: i18n/states/US.php:34 -msgid "Massachusetts" -msgstr "ماساتشوستس" - -#: i18n/states/US.php:35 -msgid "Michigan" -msgstr "ميشيغان" - -#: i18n/states/US.php:36 -msgid "Minnesota" -msgstr "مينيسوتا" - -#: i18n/states/US.php:37 -msgid "Mississippi" -msgstr "ميسيسيبي" - -#: i18n/states/US.php:38 -msgid "Missouri" -msgstr "ميزوري" - -#: i18n/states/US.php:39 -msgid "Montana" -msgstr "مونتانا" - -#: i18n/states/US.php:40 -msgid "Nebraska" -msgstr "نبراسكا" - -#: i18n/states/US.php:41 -msgid "Nevada" -msgstr "نيفادا" - -#: i18n/states/US.php:42 -msgid "New Hampshire" -msgstr "نيو هامبشاير" - -#: i18n/states/US.php:43 -msgid "New Jersey" -msgstr "نيو جيرسي" - -#: i18n/states/US.php:44 -msgid "New Mexico" -msgstr "نيو مكسيكو" - -#: i18n/states/US.php:45 -msgid "New York" -msgstr "نيويورك" - -#: i18n/states/US.php:46 -msgid "North Carolina" -msgstr "كارولاينا الشمالية" - -#: i18n/states/US.php:47 -msgid "North Dakota" -msgstr "داكوتا الشمالية" - -#: i18n/states/US.php:48 -msgid "Ohio" -msgstr "أوهايو" - -#: i18n/states/US.php:49 -msgid "Oklahoma" -msgstr "أوكلاهوما" - -#: i18n/states/US.php:50 -msgid "Oregon" -msgstr "أوريغون" - -#: i18n/states/US.php:51 -msgid "Pennsylvania" -msgstr "بنسلفانيا" - -#: i18n/states/US.php:52 -msgid "Rhode Island" -msgstr "رود ايلاند" - -#: i18n/states/US.php:53 -msgid "South Carolina" -msgstr "كارولينا الجنوبية" - -#: i18n/states/US.php:54 -msgid "South Dakota" -msgstr "داكوتا الجنوبية" - -#: i18n/states/US.php:55 -msgid "Tennessee" -msgstr "تينيسي" - -#: i18n/states/US.php:56 -msgid "Texas" -msgstr "تكساس" - -#: i18n/states/US.php:57 -msgid "Utah" -msgstr "يوتا" - -#: i18n/states/US.php:58 -msgid "Vermont" -msgstr "فيرمونت" - -#: i18n/states/US.php:59 -msgid "Virginia" -msgstr "فرجينيا" - -#: i18n/states/US.php:60 -msgid "Washington" -msgstr "واشنطن" - -#: i18n/states/US.php:61 -msgid "West Virginia" -msgstr "فرجينيا الغربية" - -#: i18n/states/US.php:62 -msgid "Wisconsin" -msgstr "ويسكونسن" - -#: i18n/states/US.php:63 -msgid "Wyoming" -msgstr "وايومنغ" - -#: i18n/states/US.php:64 -msgid "Armed Forces (AA)" -msgstr "القوات المسلحة (AA)" - -#: i18n/states/US.php:65 -msgid "Armed Forces (AE)" -msgstr "القوات المسلحة (AE)" - -#: i18n/states/US.php:66 -msgid "Armed Forces (AP)" -msgstr "القوات المسلحة (AP)" - -#: i18n/states/US.php:67 -msgid "American Samoa" -msgstr "ساموا الأمريكية" - -#: i18n/states/US.php:68 -msgid "Guam" -msgstr "غوام" - -#: i18n/states/US.php:69 -msgid "Northern Mariana Islands" -msgstr "جزر ماريانا الشمالية" - -#: i18n/states/US.php:70 -msgid "Puerto Rico" -msgstr "بورتوريكو" - -#: i18n/states/US.php:71 -msgid "US Minor Outlying Islands" -msgstr "جزر الولايات المتحدة البعيدة الصغيرة" - -#: i18n/states/US.php:72 -msgid "US Virgin Islands" -msgstr "جزر فيرجن الأمريكية" - -#: i18n/states/ZA.php:13 -msgid "Eastern Cape" -msgstr "كيب الشرقية" - -#: i18n/states/ZA.php:14 -msgid "Free State" -msgstr "فري ستيت" - -#: i18n/states/ZA.php:15 -msgid "Gauteng" -msgstr "غوتنغ" - -#: i18n/states/ZA.php:16 -msgid "KwaZulu-Natal" -msgstr "كوازولو ناتال" - -#: i18n/states/ZA.php:17 -msgid "Limpopo" -msgstr "ليمبوبو" - -#: i18n/states/ZA.php:18 -msgid "Mpumalanga" -msgstr "مبومالانجا" - -#: i18n/states/ZA.php:19 -msgid "Northern Cape" -msgstr "كيب الشمالية" - -#: i18n/states/ZA.php:20 -msgid "North West" -msgstr "الشمال الغربي" - -#: i18n/states/ZA.php:21 -msgid "Western Cape" -msgstr "كيب الغربية" - -#: i18n/strings.php:16 -msgid "pending" -msgstr "معلق" - -#: i18n/strings.php:17 -msgid "failed" -msgstr "فشل" - -#: i18n/strings.php:18 -msgid "on-hold" -msgstr "بانتظار الدفع" - -#: i18n/strings.php:19 -msgid "processing" -msgstr "جار العمل عليه" - -#: i18n/strings.php:20 -msgid "completed" -msgstr "مكتمل" - -#: i18n/strings.php:21 -msgid "refunded" -msgstr "مردود" - -#: i18n/strings.php:22 -msgid "cancelled" -msgstr "ملغى" - -#: templates/cart/cart-empty.php:14 -msgid "Your cart is currently empty." -msgstr "عربتك فارغة حاليا." - -#: templates/cart/cart-empty.php:18 -msgid "← Return To Shop" -msgstr "→ عودة للتسوق" - -#: templates/cart/cart.php:28 -#: templates/checkout/form-pay.php:19 -#: templates/checkout/review-order.php:21 -#: templates/emails/admin-new-order.php:22 -#: templates/emails/customer-completed-order.php:23 -#: templates/emails/customer-invoice.php:27 -#: templates/emails/customer-note.php:27 -#: templates/emails/customer-processing-order.php:23 -#: templates/order/order-details.php:20 -#: woocommerce.php:983 -msgid "Product" -msgstr "المنتج" - -#: templates/cart/cart.php:29 -#: templates/emails/admin-new-order.php:24 -#: templates/emails/customer-completed-order.php:25 -#: templates/emails/customer-invoice.php:29 -#: templates/emails/customer-note.php:29 -#: templates/emails/customer-processing-order.php:25 -msgid "Price" -msgstr "السعر" - -#: templates/cart/cart.php:30 -#: templates/emails/admin-new-order.php:23 -#: templates/emails/customer-completed-order.php:24 -#: templates/emails/customer-invoice.php:28 -#: templates/emails/customer-note.php:28 -#: templates/emails/customer-processing-order.php:24 -msgid "Quantity" -msgstr "الكمية" - -#: templates/cart/cart.php:31 -#: templates/checkout/review-order.php:22 -#: templates/myaccount/my-orders.php:35 -#: templates/order/order-details.php:21 -msgid "Total" -msgstr "المجموع" - -#: templates/cart/cart.php:47 -msgid "Remove this item" -msgstr "إزالة هذا العنصر" - -#: templates/cart/cart.php:100 -#: templates/single-product/add-to-cart/quantity.php:12 -msgctxt "Product quantity input tooltip" -msgid "Qty" -msgstr "الكمية" - -#: templates/cart/cart.php:127 -#: woocommerce.php:1096 -msgid "Coupon" -msgstr "قسيمة" - -#: templates/cart/cart.php:127 -#: templates/checkout/form-coupon.php:29 -msgid "Apply Coupon" -msgstr "تطبيق القسيمة" - -#: templates/cart/cart.php:134 -msgid "Update Cart" -msgstr "تحديث العربة" - -#: templates/cart/cart.php:134 -msgid "Proceed to Checkout →" -msgstr "أنتقال المحاسبة ←" - -#: templates/cart/cross-sells.php:38 -msgid "You may be interested in…" -msgstr "قد يهمك أيضا…" - -#: templates/cart/mini-cart.php:55 -msgid "No products in the cart." -msgstr "لا منتجات في العربة" - -#: templates/cart/mini-cart.php:63 -msgid "Subtotal" -msgstr "المجموع" - -#: templates/cart/mini-cart.php:69 -msgid "Checkout →" -msgstr "محاسبة ←" - -#: templates/cart/shipping-calculator.php:22 -msgid "Calculate Shipping" -msgstr "حساب الشحن" - -#: templates/cart/shipping-calculator.php:28 -#: woocommerce-template.php:1334 -msgid "Select a country…" -msgstr "اختر الدولة…" - -#: templates/cart/shipping-calculator.php:45 -#: templates/cart/shipping-calculator.php:51 -#: templates/cart/shipping-calculator.php:63 -msgid "State / county" -msgstr "المنطقة \\ الولاية" - -#: templates/cart/shipping-calculator.php:52 -#: woocommerce-template.php:1384 -msgid "Select a state…" -msgstr "اختر الولاية" - -#: templates/cart/shipping-calculator.php:72 -msgid "City" -msgstr "المدينة" - -#: templates/cart/shipping-calculator.php:85 -msgid "Update Totals" -msgstr "تحديث المجموع" - -#: templates/cart/shipping-methods.php:32 -msgid "Free" -msgstr "مجانا" - -#: templates/cart/shipping-methods.php:68 -msgid "Please fill in your details to see available shipping methods." -msgstr "رجاء أملء معلوماتك لترى طرق الشحن المتوفرة." - -#: templates/cart/shipping-methods.php:76 -#: templates/cart/totals.php:147 -msgid "Sorry, it seems that there are no available shipping methods for your location (%s)." -msgstr "للأسف يبدو أنه لا يوجد طرق شحن لمكانك (%s)." - -#: templates/cart/shipping-methods.php:76 -#: templates/cart/totals.php:147 -msgid "If you require assistance or wish to make alternate arrangements please contact us." -msgstr "إذا احتجت المساعدة، أو رغبت في طرح طرق بديلة رجاء اتصل بنا." - -#: templates/cart/totals.php:22 -msgid "Cart Totals" -msgstr "سعر العربة" - -#: templates/cart/totals.php:28 -#: templates/checkout/review-order.php:27 -msgid "Cart Subtotal" -msgstr "مجموع العربة" - -#: templates/cart/totals.php:35 -#: templates/checkout/review-order.php:34 -#: woocommerce.php:1690 -msgid "Cart Discount" -msgstr "خصم العربة" - -#: templates/cart/totals.php:35 -#: templates/cart/totals.php:83 -msgid "[Remove]" -msgstr "[إزالة]" - -#: templates/cart/totals.php:46 -#: templates/checkout/review-order.php:45 -msgid "Shipping" -msgstr "الشحن" - -#: templates/cart/totals.php:83 -#: templates/checkout/review-order.php:82 -msgid "Order Discount" -msgstr "خصم الطلب" - -#: templates/cart/totals.php:92 -#: templates/checkout/review-order.php:91 -msgid "Order Total" -msgstr "مجموع الطلب" - -#: templates/cart/totals.php:121 -msgid " (taxes estimated for %s)" -msgstr " (الضرائب المقدرة %s)" - -#: templates/cart/totals.php:123 -msgid "Note: Shipping and taxes are estimated%s and will be updated during checkout based on your billing and shipping information." -msgstr "ملاحظة: الشحن والضرائب تقريبية%s وسوف تحسب من جديد عند المحاسبة وفق المعلومات التي تعطيها عن عنوان الشحن." - -#: templates/cart/totals.php:135 -msgid "No shipping methods were found; please recalculate your shipping and enter your state/county and zip/postcode to ensure there are no other available methods for your location." -msgstr "لم يتم العثور على طرق شحن؛ رجاء ادخل منطقتك ورمزك البريدي للتأكد من توفر (أو عدم توفر) طرق شحن لمكانك." - -#: templates/checkout/cart-errors.php:16 -msgid "There are some issues with the items in your cart (shown above). Please go back to the cart page and resolve these issues before checking out." -msgstr "هناك بعض المشاكل في عربتك (التي في اﻷعلى). رجاء عد لصفحة العربة وحل هذه المشاكل قبل المحاسبة." - -#: templates/checkout/cart-errors.php:20 -msgid "← Return To Cart" -msgstr "→ عودة للعربة" - -#: templates/checkout/form-billing.php:17 -msgid "Billing & Shipping" -msgstr "الدفع والشحن" - -#: templates/checkout/form-billing.php:21 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:19 -#: templates/myaccount/my-address.php:25 -#: templates/order/order-details.php:115 -msgid "Billing Address" -msgstr "عنوان المشتري" - -#: templates/checkout/form-billing.php:42 -msgid "Create an account?" -msgstr "إنشاء حساب" - -#: templates/checkout/form-billing.php:51 -msgid "Create an account by entering the information below. If you are a returning customer please login at the top of the page." -msgstr "يمكنك إنشاء حساب عبر ملء بياناتك في الأسفل. إذا كنت زبون مسجل رجاء سجل دخولك في أعلى الصفحة." - -#: templates/checkout/form-checkout.php:20 -msgid "You must be logged in to checkout." -msgstr "يجب أن تسجل دخولك لتحاسب" - -#: templates/checkout/form-checkout.php:51 -msgid "Your order" -msgstr "طلبك" - -#: templates/checkout/form-coupon.php:17 -msgid "Have a coupon?" -msgstr "هل تمتلك قسيمة؟" - -#: templates/checkout/form-coupon.php:20 -msgid "Click here to enter your code" -msgstr "اضغط هنا لإدخال رمزها" - -#: templates/checkout/form-coupon.php:25 -msgid "Coupon code" -msgstr "رمز القسيمة" - -#: templates/checkout/form-login.php:14 -msgid "Returning customer?" -msgstr "هل أنت زبون مسجل؟؟" - -#: templates/checkout/form-login.php:17 -msgid "Click here to login" -msgstr "أضغط هنا لتسجيل الدخول" - -#: templates/checkout/form-login.php:22 -msgid "If you have shopped with us before, please enter your details in the boxes below. If you are a new customer please proceed to the Billing & Shipping section." -msgstr "إذا كنت تسوقت معنا من قبل، رجاء أملء المعلومات أدناه. وأذا كنت زبون جديد رجاء أنتقل لقسم الدفع والشحن." - -#: templates/checkout/form-pay.php:20 -msgid "Qty" -msgstr "الكمية" - -#: templates/checkout/form-pay.php:21 -msgid "Totals" -msgstr "المجموع" - -#: templates/checkout/form-pay.php:78 -msgid "Sorry, it seems that there are no available payment methods for your location. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "للأسف يبدو أنه لا يوجد طرق دفع متوفرة لمكانك، رجاء إذا احتجت المساعدة، أو رغبت في طرح طرق بديلة رجاء اتصل بنا." - -#: templates/checkout/form-pay.php:87 -msgid "Pay for order" -msgstr "دفع ثمن الطلب" - -#: templates/checkout/form-shipping.php:32 -msgid "Ship to billing address?" -msgstr "الشحن لعنوان المشتري؟" - -#: templates/checkout/form-shipping.php:35 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:20 -#: templates/order/order-details.php:130 -msgid "Shipping Address" -msgstr "عنوان الشحن" - -#: templates/checkout/form-shipping.php:59 -#: templates/single-product/tabs/additional-information.php:14 -#: woocommerce-template.php:759 -msgid "Additional Information" -msgstr "معلومات إضافية" - -#: templates/checkout/review-order.php:174 -msgid "Please fill in your details above to see available payment methods." -msgstr "رجاء إملء المعلومات في الأعلى لترى طرق الشحن المتوفرة." - -#: templates/checkout/review-order.php:176 -msgid "Sorry, it seems that there are no available payment methods for your state. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "للأسف يبدو أنه لا يوجد طرق دفع متوفرة لمنطقتك، رجاء إذا احتجت المساعدة، أو رغبت في طرح طرق بديلة رجاء اتصل بنا." - -#: templates/checkout/review-order.php:185 -msgid "Since your browser does not support JavaScript, or it is disabled, please ensure you click the Update Totals button before placing your order. You may be charged more than the amount stated above if you fail to do so." -msgstr "بما أن متصفحك لا يدعم جافاسكربت أو أنها معطلة، تأكد من ضغط زر تحديث المجموع قبل تأكيد طلبك. قد ترى رسوم مختلفة عن المحسوبة إذا لم تفعل ذلك." - -#: templates/checkout/review-order.php:185 -msgid "Update totals" -msgstr "تحديث المجموع" - -#: templates/checkout/review-order.php:192 -msgid "Place order" -msgstr "تأكيد الطلب" - -#: templates/checkout/review-order.php:199 -msgid "I have read and accept the" -msgstr "قرأت وأقبل" - -#: templates/checkout/review-order.php:199 -msgid "terms & conditions" -msgstr "الشروط والأحكام" - -#: templates/checkout/thankyou.php:18 -msgid "Unfortunately your order cannot be processed as the originating bank/merchant has declined your transaction." -msgstr "للأسف طلبك لا يمكن أن يعالج لأن البنك \\ التاجر الذي دفعت عبره رفض طلبك." - -#: templates/checkout/thankyou.php:22 -msgid "Please attempt your purchase again or go to your account page." -msgstr "رجاء أعد تقديم طلبك من جديد أو أذهب لصفحة الحساب." - -#: templates/checkout/thankyou.php:24 -msgid "Please attempt your purchase again." -msgstr "رجاء أعد تقديم طلبك من جديد" - -#: templates/checkout/thankyou.php:36 -#: templates/checkout/thankyou.php:67 -msgid "Thank you. Your order has been received." -msgstr "شكرا لك لقد مصلنا طلبك وجاري العمل عليه." - -#: templates/emails/admin-new-order.php:13 -#: templates/emails/plain/admin-new-order.php:13 -msgid "You have received an order from %s. Their order is as follows:" -msgstr "لقد ايتلمت طلب من %s. وطلبه كالتالي." - -#: templates/emails/admin-new-order.php:17 -msgid "Order: %s" -msgstr "الطلب: %s" - -#: templates/emails/admin-new-order.php:50 -#: templates/emails/customer-completed-order.php:51 -#: templates/emails/customer-note.php:55 -#: templates/emails/customer-processing-order.php:51 -#: templates/emails/plain/admin-new-order.php:38 -#: templates/order/order-details.php:97 -msgid "Customer details" -msgstr "معلومات الزبون" - -#: templates/emails/admin-new-order.php:53 -#: templates/emails/customer-completed-order.php:54 -#: templates/emails/customer-note.php:58 -#: templates/emails/customer-processing-order.php:54 -#: templates/emails/plain/admin-new-order.php:41 -#: templates/emails/plain/customer-completed-order.php:41 -#: templates/emails/plain/customer-note.php:49 -#: templates/emails/plain/customer-processing-order.php:41 -#: templates/order/order-details.php:101 -msgid "Email:" -msgstr "البريد الالكتروني:" - -#: templates/emails/admin-new-order.php:56 -#: templates/emails/customer-completed-order.php:57 -#: templates/emails/customer-note.php:61 -#: templates/emails/customer-processing-order.php:57 -#: templates/emails/plain/admin-new-order.php:44 -#: templates/emails/plain/customer-completed-order.php:44 -#: templates/emails/plain/customer-note.php:52 -#: templates/emails/plain/customer-processing-order.php:44 -msgid "Tel:" -msgstr "الهاتف:" - -#: templates/emails/customer-completed-order.php:14 -#: templates/emails/plain/customer-completed-order.php:13 -msgid "Hi there. Your recent order on %s has been completed. Your order details are shown below for your reference:" -msgstr "مرحبا بك. طلبك الأخير على %s أكتمل. معلومات طلبك معروضة في الأسفل لتراجعها:" - -#: templates/emails/customer-invoice.php:16 -#: templates/emails/plain/customer-invoice.php:14 -msgid "An order has been created for you on %s. To pay for this order please use the following link: %s" -msgstr "هناك طلب لك في %s. رجاء أتبع الرابط لتسدده: " - -#: templates/emails/customer-invoice.php:16 -msgid "pay" -msgstr "دفع" - -#: templates/emails/customer-new-account.php:14 -#: templates/emails/plain/customer-new-account.php:13 -msgid "Thanks for creating an account on %s. Your username is %s." -msgstr "شكرا لإنشاء حساب في %s. اسمك هو %s." - -#: templates/emails/customer-new-account.php:16 -#: templates/emails/plain/customer-new-account.php:15 -msgid "You can access your account area here: %s." -msgstr "تستطيع التحكم في حسابك من هنا: %s" - -#: templates/emails/customer-note.php:14 -#: templates/emails/plain/customer-note.php:13 -msgid "Hello, a note has just been added to your order:" -msgstr "مرحبا، هناك ملاحظة جديدة على طلبك:" - -#: templates/emails/customer-note.php:18 -#: templates/emails/plain/customer-note.php:21 -msgid "For your reference, your order details are shown below." -msgstr "للتذكير، معلومات طلبك موجودة أدناه." - -#: templates/emails/customer-processing-order.php:14 -#: templates/emails/plain/customer-processing-order.php:13 -msgid "Your order has been received and is now being processed. Your order details are shown below for your reference:" -msgstr "طلبك وصل وجاري العمل عليه. معلومات طلبك موجودة أدناه لتتذكرها:" - -#: templates/emails/customer-reset-password.php:14 -#: templates/emails/plain/customer-reset-password.php:13 -msgid "Someone requested that the password be reset for the following account:" -msgstr "هناك من أرسل طلب إعادة تعيين كلمة مرور للحساب التالي:" - -#: templates/emails/customer-reset-password.php:15 -#: templates/emails/plain/customer-reset-password.php:15 -msgid "Username: %s" -msgstr "اسم المستخدم: %s" - -#: templates/emails/customer-reset-password.php:16 -#: templates/emails/plain/customer-reset-password.php:16 -msgid "If this was a mistake, just ignore this email and nothing will happen." -msgstr "إذا كان هناك خطأ، فقط تجاهل هذا البريد ولن يحدث شيء." - -#: templates/emails/customer-reset-password.php:17 -#: templates/emails/plain/customer-reset-password.php:17 -msgid "To reset your password, visit the following address:" -msgstr "لإعادة تعيين كلمة مرورك، زر الرابط التالي" - -#: templates/emails/customer-reset-password.php:20 -msgid "Click here to reset your password" -msgstr "إضغط هنا لإعادة تعيين كلمة المرور" - -#: templates/emails/email-addresses.php:18 -#: templates/emails/plain/email-addresses.php:12 -msgid "Billing address" -msgstr "عنوان المشتري" - -#: templates/emails/email-addresses.php:28 -#: templates/emails/plain/email-addresses.php:17 -msgid "Shipping address" -msgstr "عنوان الشحن" - -#: templates/emails/email-order-items.php:47 -msgid "Download %d:" -msgstr "تحميل %s:" - -#: templates/emails/email-order-items.php:49 -msgid "Download:" -msgstr "تحميل:" - -#: templates/emails/plain/admin-new-order.php:19 -#: templates/emails/plain/customer-completed-order.php:19 -#: templates/emails/plain/customer-invoice.php:20 -#: templates/emails/plain/customer-note.php:27 -#: templates/emails/plain/customer-processing-order.php:19 -msgid "Order number: %s" -msgstr "رقم الطلب: %s" - -#: templates/emails/plain/admin-new-order.php:20 -#: templates/emails/plain/customer-completed-order.php:20 -#: templates/emails/plain/customer-invoice.php:21 -#: templates/emails/plain/customer-note.php:28 -#: templates/emails/plain/customer-processing-order.php:20 -msgid "Order date: %s" -msgstr "تاريخ الطلب: %s" - -#: templates/emails/plain/admin-new-order.php:20 -msgid "jS F Y" -msgstr "j F Y" - -#: templates/emails/plain/customer-completed-order.php:38 -#: templates/emails/plain/customer-note.php:46 -#: templates/emails/plain/customer-processing-order.php:38 -msgid "Your details" -msgstr "معلوماتك" - -#: templates/emails/plain/email-order-items.php:28 -msgid "Quantity: %s" -msgstr "الكمية: %s" - -#: templates/emails/plain/email-order-items.php:31 -msgid "Cost: %s" -msgstr "السعر: $s" - -#: templates/loop/add-to-cart.php:17 -#: templates/loop/add-to-cart.php:41 -#: templates/loop/add-to-cart.php:50 -msgid "Read More" -msgstr "إقرأ المزيد" - -#: templates/loop/add-to-cart.php:33 -msgid "Select options" -msgstr "اختر نوعك" - -#: templates/loop/add-to-cart.php:37 -msgid "View options" -msgstr "عرض الخيارات" - -#: templates/loop/no-products-found.php:14 -#: templates/loop-shop.php:40 -msgid "No products found which match your selection." -msgstr "لا يوجد منتجات توافق إختياراتك" - -#: templates/loop/orderby.php:21 -msgid "Default sorting" -msgstr "الترتيب الإفتراضي" - -#: templates/loop/orderby.php:22 -msgid "Sort by popularity" -msgstr "الشهرة" - -#: templates/loop/orderby.php:23 -msgid "Sort by average rating" -msgstr "التقييم" - -#: templates/loop/orderby.php:24 -msgid "Sort by newness" -msgstr "الحداثة" - -#: templates/loop/orderby.php:25 -msgid "Sort by price: low to high" -msgstr "السعر: الأدنى إلى الأعلى" - -#: templates/loop/orderby.php:26 -msgid "Sort by price: high to low" -msgstr "السعر: الأعلى إلى الأدنى" - -#: templates/loop/result-count.php:28 -msgid "Showing the single result" -msgstr "عرض نتتيجة واحدة" - -#: templates/loop/result-count.php:30 -msgid "Showing all %d results" -msgstr "عرض %d من النتائج" - -#: templates/loop/result-count.php:32 -msgctxt "%1$d = first, %2$d = last, %3$d = total" -msgid "Showing %1$d–%2$d of %3$d results" -msgstr "عرض من %1d إلى %2d من أصل %3d" - -#: templates/loop/sale-flash.php:16 -#: templates/single-product/sale-flash.php:16 -msgid "Sale!" -msgstr "عرض!" - -#: templates/myaccount/form-change-password.php:20 -#: templates/myaccount/form-lost-password.php:31 -msgid "New password" -msgstr "كلمة المرور الجديدة" - -#: templates/myaccount/form-change-password.php:24 -#: templates/myaccount/form-lost-password.php:35 -msgid "Re-enter new password" -msgstr "تأكيد كلمة المرور" - -#: templates/myaccount/form-change-password.php:29 -#: templates/myaccount/form-lost-password.php:45 -msgid "Save" -msgstr "حفظ" - -#: templates/myaccount/form-edit-address.php:43 -msgid "Save Address" -msgstr "حفظ العنوان" - -#: templates/myaccount/form-login.php:26 -#: templates/myaccount/form-login.php:40 -#: templates/shop/form-login.php:31 -msgid "Login" -msgstr "دخول" - -#: templates/myaccount/form-login.php:29 -#: templates/myaccount/form-lost-password.php:24 -#: templates/shop/form-login.php:20 -msgid "Username or email" -msgstr "اسم المستخدم أو البريد الإلكتروني" - -#: templates/myaccount/form-login.php:33 -#: templates/myaccount/form-login.php:85 -#: templates/shop/form-login.php:24 -msgid "Password" -msgstr "كلمة المرور" - -#: templates/myaccount/form-login.php:50 -#: templates/shop/form-login.php:33 -msgid "Lost Password?" -msgstr "أنسيت كلمة المرور؟" - -#: templates/myaccount/form-login.php:60 -#: templates/myaccount/form-login.php:101 -msgid "Register" -msgstr "تسجيل" - -#: templates/myaccount/form-login.php:66 -msgid "Username" -msgstr "اسم المستخدم" - -#: templates/myaccount/form-login.php:78 -#: templates/single-product-reviews.php:86 -msgid "Email" -msgstr "البريد الإلكتروني" - -#: templates/myaccount/form-login.php:89 -msgid "Re-enter password" -msgstr "تأكيد كلمة المرور" - -#: templates/myaccount/form-lost-password.php:22 -msgid "Lost your password? Please enter your username or email address. You will receive a link to create a new password via email." -msgstr "أنسيت كلمة مرورك؟ رجاء أدخل بريدك الإلكتروني أو اسم المستخدم. سوف تحصل على رابط تفعيل عبر البريد الإلكتروني." - -#: templates/myaccount/form-lost-password.php:28 -msgid "Enter a new password below." -msgstr "أدخل كلمة مرورك الجديدة أدناه:" - -#: templates/myaccount/form-lost-password.php:45 -msgid "Reset Password" -msgstr "إعادة تعيين كلمة المرور" - -#: templates/myaccount/my-account.php:19 -msgid "Hello, %s. From your account dashboard you can view your recent orders, manage your shipping and billing addresses and change your password." -msgstr "مرحبا، %s. من صفحة حسابك تستطيع مشاهدة طلباتك الحديثة، وإدارة عناوين الدفع والشحن، وتغير كلمة مرورك." - -#: templates/myaccount/my-address.php:17 -msgid "My Addresses" -msgstr "عناويني" - -#: templates/myaccount/my-address.php:23 -msgid "My Address" -msgstr "عنواني" - -#: templates/myaccount/my-address.php:35 -msgid "The following addresses will be used on the checkout page by default." -msgstr "العناوين التالية سوف تستخدم بشكل إفتراضي في صفحة المحاسبة." - -#: templates/myaccount/my-address.php:45 -#: woocommerce.php:951 -#: woocommerce.php:987 -#: woocommerce.php:1024 -#: woocommerce.php:1062 -#: woocommerce.php:1100 -msgid "Edit" -msgstr "تحرير" - -#: templates/myaccount/my-address.php:64 -msgid "You have not set up this type of address yet." -msgstr "أنت لم تعد هذا النوع من العناوين بعد." - -#: templates/myaccount/my-downloads.php:18 -msgid "Available downloads" -msgstr "التحميلات المتوفرة" - -#: templates/myaccount/my-downloads.php:27 -msgid "%s download remaining" -msgid_plural "%s downloads remaining" -msgstr[0] "نفذت مرات التحميل" -msgstr[1] "بقي تحميل واحد" -msgstr[2] "بقي تحميلان" -msgstr[3] "بقي %s مرات تحميل" -msgstr[4] "بقي %s مرة تحميل" -msgstr[5] "بقي %s مرات تحميل" - -#: templates/myaccount/my-orders.php:26 -msgid "Recent Orders" -msgstr "طلبات حديثة" - -#: templates/myaccount/my-orders.php:32 -#: woocommerce.php:1059 -msgid "Order" -msgstr "الطلب" - -#: templates/myaccount/my-orders.php:33 -msgid "Date" -msgstr "التاريخ" - -#: templates/myaccount/my-orders.php:34 -msgid "Status" -msgstr "الحالة" - -#: templates/myaccount/my-orders.php:62 -msgid "%s for %s item" -msgid_plural "%s for %s items" -msgstr[0] "​" -msgstr[1] "%s مقابل عنصر واحد" -msgstr[2] "%s مقاب عنصرين" -msgstr[3] "%s مقابل %s عناصر" -msgstr[4] "%s مقابل %s عنصرا" -msgstr[5] "%s مقابل %s عنصر" - -#: templates/myaccount/my-orders.php:77 -msgid "Cancel" -msgstr "إلغاء" - -#: templates/myaccount/my-orders.php:82 -msgid "View" -msgstr "عرض" - -#: templates/order/form-tracking.php:17 -msgid "To track your order please enter your Order ID in the box below and press return. This was given to you on your receipt and in the confirmation email you should have received." -msgstr "لتتبع طلبك رجاء أدخل رقم الطلب في الصندوق أدناه وأضغط \"إدخال\" من لوحة المفاتيح. فاتورة وستستلم بريد تأكيد." - -#: templates/order/form-tracking.php:19 -msgid "Order ID" -msgstr "رقم الطلب" - -#: templates/order/form-tracking.php:19 -msgid "Found in your order confirmation email." -msgstr "موجد في بريدك الإلكتروني." - -#: templates/order/form-tracking.php:20 -msgid "Billing Email" -msgstr "بريد المشتري" - -#: templates/order/form-tracking.php:20 -msgid "Email you used during checkout." -msgstr "البريد الذي استخدمته في المحاسبة." - -#: templates/order/form-tracking.php:23 -msgid "Track" -msgstr "تتبع" - -#: templates/order/order-details.php:16 -msgid "Order Details" -msgstr "معلومات الطلب" - -#: templates/order/order-details.php:64 -msgid "Download file%s" -msgstr "تحميل الملف" - -#: templates/order/order-details.php:90 -msgid "Order Again" -msgstr "الطلب مجدد" - -#: templates/order/order-details.php:102 -msgid "Telephone:" -msgstr "الهاتف:" - -#: templates/order/tracking.php:18 -msgid "Order %s which was made %s has the status “%s”" -msgstr "الطلب %s منذ %s حالته “%s”" - -#: templates/order/tracking.php:18 -msgid "ago" -msgstr "مضت" - -#: templates/order/tracking.php:20 -msgid "and was completed" -msgstr "وأكتمل منذ" - -#: templates/order/tracking.php:20 -msgid " ago" -msgstr " مضت " - -#: templates/shop/breadcrumb.php:63 -msgid "Products tagged “" -msgstr "المنتجات المعلمة ك“" - -#: templates/shop/breadcrumb.php:91 -#: templates/shop/breadcrumb.php:188 -msgid "Search results for “" -msgstr "نتائج البحث عن ldquo;" - -#: templates/shop/breadcrumb.php:146 -msgid "Error 404" -msgstr "خطأ 404" - -#: templates/shop/breadcrumb.php:192 -msgid "Posts tagged “" -msgstr "المنشورات المعلمة ك“" - -#: templates/shop/breadcrumb.php:197 -msgid "Author:" -msgstr "الكاتب:" - -#: templates/shop/breadcrumb.php:202 -msgid "Page" -msgstr "صفحة" - -#: templates/single-product/add-to-cart/variable.php:24 -msgid "Choose an option" -msgstr "حدد أحد الخيارات" - -#: templates/single-product/add-to-cart/variable.php:69 -msgid "Clear selection" -msgstr "ألغي التحديد" - -#: templates/single-product/meta.php:24 -msgid "Category:" -msgid_plural "Categories:" -msgstr[0] "التصنيف:" -msgstr[1] "التصنيف:" -msgstr[2] "تصنيفان:" -msgstr[3] "التصنيفات:" -msgstr[4] "التصنيفات:" -msgstr[5] "التصنيفات:" - -#: templates/single-product/meta.php:29 -msgid "Tag:" -msgid_plural "Tags:" -msgstr[0] "الوسوم:" -msgstr[1] "الوسم:" -msgstr[2] "وسمان:" -msgstr[3] "الوسوم:" -msgstr[4] "الوسوم:" -msgstr[5] "الوسوم:" - -#: templates/single-product/product-attributes.php:28 -msgid "Weight" -msgstr "الوزن" - -#: templates/single-product/product-attributes.php:37 -msgid "Dimensions" -msgstr "الأبعاد" - -#: templates/single-product/related.php:36 -msgid "Related Products" -msgstr "منتجات ذات صلة" - -#: templates/single-product/review.php:26 -msgid "Rated %d out of 5" -msgstr "التقييم %d من 5" - -#: templates/single-product/review.php:33 -msgid "Your comment is awaiting approval" -msgstr "تعليقك بانتظار الموافقة" - -#: templates/single-product/review.php:40 -msgid "verified owner" -msgstr "مالك موثوق" - -#: templates/single-product/tabs/description.php:14 -msgid "Product Description" -msgstr "وصف المنتج" - -#: templates/single-product/up-sells.php:39 -msgid "You may also like…" -msgstr "ربما تحب أيضا…" - -#: templates/single-product-reviews.php:30 -msgid "%s review for %s" -msgid_plural "%s reviews for %s" -msgstr[0] "لا مراجعات" -msgstr[1] "%0.0sمراجعة واحد ل%s" -msgstr[2] "%0.0sمراجعتان ل %s" -msgstr[3] "%s مراجعات ل %s" -msgstr[4] "%s مراجعتا ل %s" -msgstr[5] "%s مراجعة ل %s" - -#: templates/single-product-reviews.php:36 -#: templates/single-product-reviews.php:42 -msgid "Reviews" -msgstr "المراجعات" - -#: templates/single-product-reviews.php:58 -msgid " Previous" -msgstr " السابق" - -#: templates/single-product-reviews.php:59 -msgid "Next " -msgstr "التالي " - -#: templates/single-product-reviews.php:63 -msgid "Add Your Review" -msgstr "أضف مراجعتك" - -#: templates/single-product-reviews.php:63 -msgid "Add Review" -msgstr "إضافة مراجعة" - -#: templates/single-product-reviews.php:65 -msgid "Add a review" -msgstr "إضافة مراجعة" - -#: templates/single-product-reviews.php:69 -msgid "Be the first to review" -msgstr "كن أول مراجع" - -#: templates/single-product-reviews.php:71 -msgid "There are no reviews yet, would you like to submit yours?" -msgstr "لا يوجد مراجعات بعد، أتحب أن تضيف مراجعتك؟" - -#: templates/single-product-reviews.php:89 -msgid "Submit Review" -msgstr "إضافة مراجعة" - -#: templates/single-product-reviews.php:96 -msgid "Rating" -msgstr "التقييم" - -#: templates/single-product-reviews.php:97 -msgid "Rate…" -msgstr "تقييم…" - -#: templates/single-product-reviews.php:98 -msgid "Perfect" -msgstr "مثالي" - -#: templates/single-product-reviews.php:99 -msgid "Good" -msgstr "ممتاز" - -#: templates/single-product-reviews.php:100 -msgid "Average" -msgstr "متوسط" - -#: templates/single-product-reviews.php:101 -msgid "Not that bad" -msgstr "ليس سيء" - -#: templates/single-product-reviews.php:102 -msgid "Very Poor" -msgstr "ضعيف جدا" - -#: templates/single-product-reviews.php:107 -msgid "Your Review" -msgstr "مراجعتك" - -#: woocommerce-ajax.php:119 -msgid "Sorry, your session has expired." -msgstr "للأسف، جلستك انتهت." - -#: woocommerce-ajax.php:119 -msgid "Return to homepage →" -msgstr "عودة للرئيسية ←" - -#: woocommerce-ajax.php:256 -#: woocommerce-ajax.php:290 -#: woocommerce-ajax.php:313 -msgid "You do not have sufficient permissions to access this page." -msgstr "لا تملك الصلاحية الكافية للوصول لهذه الصفحة." - -#: woocommerce-ajax.php:258 -#: woocommerce-ajax.php:291 -#: woocommerce-ajax.php:314 -msgid "You have taken too long. Please go back and retry." -msgstr "لقد تأخر تنفيذ العملية أعد المحاولة." - -#: woocommerce-ajax.php:550 -msgid "Same as parent" -msgstr "مثل الأصلي" - -#: woocommerce-ajax.php:551 -msgid "Standard" -msgstr "قياسي" - -#: woocommerce-ajax.php:1098 -msgid "No products had their stock reduced - they may not have stock management enabled." -msgstr "لا يوجد منتجات تنقص كميتها - قد يكون مدير المخزن غير ممكن." - -#: woocommerce-ajax.php:1142 -#: woocommerce-ajax.php:1143 -msgid "Item #%s stock increased from %s to %s." -msgstr "كمية العنصر #%s زادة من %s إلى %s" - -#: woocommerce-ajax.php:1150 -msgid "No products had their stock increased - they may not have stock management enabled." -msgstr "لا يوجد منتجات زادت كميتها - قد يكون مدير المخزن غير ممكن." - -#: woocommerce-ajax.php:1171 -msgid "Value" -msgstr "القيمة" - -#: woocommerce-ajax.php:1485 -msgid "Delete note" -msgstr "حذف الملاحظة" - -#: woocommerce-core-functions.php:275 -msgid "%s – %s%s" -msgstr "%s – %s%s" - -#: woocommerce-core-functions.php:698 -msgid "Australian Dollars" -msgstr "دولار أسترالي" - -#: woocommerce-core-functions.php:699 -msgid "Brazilian Real" -msgstr "ريال برازيلي" - -#: woocommerce-core-functions.php:700 -msgid "Canadian Dollars" -msgstr "دولار كندي" - -#: woocommerce-core-functions.php:701 -msgid "Chinese Yuan" -msgstr "يوان صيني" - -#: woocommerce-core-functions.php:702 -msgid "Czech Koruna" -msgstr "كورونا تشيكية" - -#: woocommerce-core-functions.php:703 -msgid "Danish Krone" -msgstr "كرونة دانماركى" - -#: woocommerce-core-functions.php:704 -msgid "Euros" -msgstr "يورو" - -#: woocommerce-core-functions.php:705 -msgid "Hong Kong Dollar" -msgstr "دولار هونج كونج" - -#: woocommerce-core-functions.php:706 -msgid "Hungarian Forint" -msgstr "فورنت مجري" - -#: woocommerce-core-functions.php:707 -msgid "Indonesia Rupiah" -msgstr "روبية إندونيسية" - -#: woocommerce-core-functions.php:708 -msgid "Indian Rupee" -msgstr "روبيه هندي" - -#: woocommerce-core-functions.php:709 -msgid "Israeli Shekel" -msgstr "شيكل إسرائيلي" - -#: woocommerce-core-functions.php:710 -msgid "Japanese Yen" -msgstr "ين ياباني" - -#: woocommerce-core-functions.php:711 -msgid "South Korean Won" -msgstr "وون كوريا الجنوبية" - -#: woocommerce-core-functions.php:712 -msgid "Malaysian Ringgits" -msgstr "رينغيت ماليزي" - -#: woocommerce-core-functions.php:713 -msgid "Mexican Peso" -msgstr "بيزو مكسيكي" - -#: woocommerce-core-functions.php:714 -msgid "Norwegian Krone" -msgstr "كرونة نرويجية" - -#: woocommerce-core-functions.php:715 -msgid "New Zealand Dollar" -msgstr "دولار نيوزيلندى" - -#: woocommerce-core-functions.php:716 -msgid "Philippine Pesos" -msgstr "بيزو فلبيني" - -#: woocommerce-core-functions.php:717 -msgid "Polish Zloty" -msgstr "زلوتى بولندى" - -#: woocommerce-core-functions.php:718 -msgid "Pounds Sterling" -msgstr "جنيه استرليني" - -#: woocommerce-core-functions.php:719 -msgid "Romanian Leu" -msgstr "ليو روماني" - -#: woocommerce-core-functions.php:720 -msgid "Singapore Dollar" -msgstr "دولار سنغافورى" - -#: woocommerce-core-functions.php:721 -msgid "South African rand" -msgstr "راند جنوب أفريقي" - -#: woocommerce-core-functions.php:722 -msgid "Swedish Krona" -msgstr "كرونة سويدية" - -#: woocommerce-core-functions.php:723 -msgid "Swiss Franc" -msgstr "الفرنك السويسري" - -#: woocommerce-core-functions.php:724 -msgid "Taiwan New Dollars" -msgstr "دولار تايوان الجديد" - -#: woocommerce-core-functions.php:725 -msgid "Thai Baht" -msgstr "بات تايلندي" - -#: woocommerce-core-functions.php:726 -msgid "Turkish Lira" -msgstr "ليرة تركية" - -#: woocommerce-core-functions.php:727 -msgid "US Dollars" -msgstr "دولار أمريكي" - -#: woocommerce-core-functions.php:1215 -#: woocommerce-core-functions.php:1241 -msgid "Download Permissions Granted" -msgstr "تم إععطاء صلاحيات التحميل" - -#: woocommerce-core-functions.php:1365 -msgctxt "slug" -msgid "uncategorized" -msgstr "غير مصنف" - -#: woocommerce-core-functions.php:1554 -msgid "Select a category" -msgstr "حدد تصنيف" - -#: woocommerce-core-functions.php:1558 -msgid "Uncategorized" -msgstr "غير مصنف" - -#: woocommerce-core-functions.php:1930 -msgid "Customer" -msgstr "زبون" - -#: woocommerce-core-functions.php:1937 -msgid "Shop Manager" -msgstr "مدير للمتجر" - -#: woocommerce-core-functions.php:2494 -msgid "Unpaid order cancelled - time limit reached." -msgstr "طلب غير مدفوع ألغي - الوقت المحدد أنتهى." - -#: woocommerce-functions.php:226 -#: woocommerce-functions.php:271 -msgid "Cart updated." -msgstr "تحديث العربة" - -#: woocommerce-functions.php:257 -msgid "You can only have 1 %s in your cart." -msgstr "يمكنك أن تضع %s واحد فقط في عربك." - -#: woocommerce-functions.php:315 -#: woocommerce-functions.php:373 -msgid "Please choose product options…" -msgstr "رجاء حدد نوع المنتج… " - -#: woocommerce-functions.php:406 -msgid "Please choose the quantity of items you wish to add to your cart…" -msgstr "رجاء حدد الكمية التي تريد إضافتها لعربتك…" - -#: woocommerce-functions.php:413 -msgid "Please choose a product to add to your cart…" -msgstr "رجاء حدد منتج لتضيفه لعربتك…" - -#: woocommerce-functions.php:482 -msgid "Added "%s" to your cart." -msgstr "تمت إضافة "%s" لعربتك." - -#: woocommerce-functions.php:482 -msgid "" and "" -msgstr "" و "" - -#: woocommerce-functions.php:485 -msgid ""%s" was successfully added to your cart." -msgstr ""%s" أضيف لعبتك بنجاح." - -#: woocommerce-functions.php:493 -msgid "Continue Shopping →" -msgstr "متابعة التسوق ←" - -#: woocommerce-functions.php:660 -msgid "Username is required." -msgstr "اسم المستخدم مطلوب." - -#: woocommerce-functions.php:661 -#: woocommerce-functions.php:756 -msgid "Password is required." -msgstr "كلمة المرور مطلوبة." - -#: woocommerce-functions.php:730 -msgid "Please enter a username." -msgstr "رجاء أدخل اسم المستخدم." - -#: woocommerce-functions.php:732 -msgid "This username is invalid because it uses illegal characters. Please enter a valid username." -msgstr "اسم المستخدم يحوي حروف أو رموز ممنوعة، رجاء استخدم الحروف الانجليزية وشرطات فقط." - -#: woocommerce-functions.php:735 -msgid "This username is already registered, please choose another one." -msgstr "اسم المستخدم محجوز من قبل رجاء أختر اسم آخر." - -#: woocommerce-functions.php:747 -msgid "Please type your e-mail address." -msgstr "رجاء اكتب بريدك الالكتروني." - -#: woocommerce-functions.php:749 -msgid "The email address isn’t correct." -msgstr "البريد الالكتروني غير صحيح" - -#: woocommerce-functions.php:752 -msgid "This email is already registered, please choose another one." -msgstr "البريد الالكتروني محجوز من قبل رجاء أختر بريد آخر." - -#: woocommerce-functions.php:757 -msgid "Re-enter your password." -msgstr "اعد كتابة كلمة المرور" - -#: woocommerce-functions.php:762 -msgid "Anti-spam field was filled in." -msgstr "حقل مكافحة السبام خاطئ." - -#: woocommerce-functions.php:870 -msgid "The cart has been filled with the items from your previous order." -msgstr "عربتك تحوي عناصر طلب سابق." - -#: woocommerce-functions.php:896 -msgid "Order cancelled by customer." -msgstr "الطلب ألغي بواسطة الزبون." - -#: woocommerce-functions.php:899 -msgid "Your order was cancelled." -msgstr "طلبك ألغي." - -#: woocommerce-functions.php:905 -msgid "Your order is no longer pending and could not be cancelled. Please contact us if you need assistance." -msgstr "طلبك لم يعد معلق ولا يكمن إلغاؤه. رجاء أتصل بنا إذا أحتجت المساعدة." - -#: woocommerce-functions.php:940 -msgid "Invalid email address." -msgstr "بريد غير صحيح." - -#: woocommerce-functions.php:940 -#: woocommerce-functions.php:963 -#: woocommerce-functions.php:983 -#: woocommerce-functions.php:989 -#: woocommerce-functions.php:993 -#: woocommerce-functions.php:996 -#: woocommerce-functions.php:1026 -#: woocommerce-functions.php:1158 -msgid "Go to homepage →" -msgstr "عودة للرئيسية ←" - -#: woocommerce-functions.php:963 -msgid "Invalid download." -msgstr "تحميل غير موجود." - -#: woocommerce-functions.php:975 -msgid "You must be logged in to download files." -msgstr "يجب أن تسجل الدخول للتمكن من التحميل." - -#: woocommerce-functions.php:975 -msgid "Login →" -msgstr "تسجبل الدخول ←" - -#: woocommerce-functions.php:978 -msgid "This is not your download link." -msgstr "هذا الملف ليس لك." - -#: woocommerce-functions.php:983 -msgid "Product no longer exists." -msgstr "المنتج لم يعد موجود." - -#: woocommerce-functions.php:993 -msgid "Sorry, you have reached your download limit for this file" -msgstr "نأسف لكن أنتهى حد تحميلك لهذا الملف." - -#: woocommerce-functions.php:996 -msgid "Sorry, this download has expired" -msgstr "نأسف لكن أنتهى زمن تحميلك للملف." - -#: woocommerce-functions.php:1026 -msgid "No file defined" -msgstr "لم يحدد ملف" - -#: woocommerce-functions.php:1158 -msgid "File not found" -msgstr "الملف غير موجود" - -#: woocommerce-functions.php:1274 -msgid "New products" -msgstr "المنتجات الجديدة" - -#: woocommerce-functions.php:1282 -msgid "New products added to %s" -msgstr "منتجات جديدة في %s" - -#: woocommerce-functions.php:1290 -msgid "New products tagged %s" -msgstr "منتجات جديدة بالوسم %s" - -#: woocommerce-functions.php:1328 -msgid "You have taken too long. Please go back and refresh the page." -msgstr "لقد تأخر البحث، رجاء عد وقم بتحديث الصفحة." - -#: woocommerce-functions.php:1331 -msgid "Please rate the product." -msgstr "رجاء قيم المنتج." - -#: woocommerce-functions.php:1639 -msgid "Password changed successfully." -msgstr "كلمة المرور تغيرت بنجاح." - -#: woocommerce-functions.php:1715 -msgid "Address changed successfully." -msgstr "العنوان تغير بنجاح." - -#: woocommerce-template.php:200 -msgid "This is a demo store for testing purposes — no orders shall be fulfilled." -msgstr "هذا متجر تجريبي لتجريب العرض — الطلبات لن تلبى." - -#: woocommerce-template.php:219 -msgid "Search Results: “%s”" -msgstr "نتائج البحث: “%s”" - -#: woocommerce-template.php:222 -msgid " – Page %s" -msgstr " – صفحة %s" - -#: woocommerce-template.php:767 -msgid "Reviews (%d)" -msgstr "المراجعات (%d)" - -#: woocommerce-template.php:993 -msgctxt "breadcrumb" -msgid "Home" -msgstr "الرئيسية" - -#: woocommerce-template.php:1292 -#: woocommerce.php:1209 -msgid "required" -msgstr "مطلوب" - -#: woocommerce-template.php:1341 -msgid "Update country" -msgstr "تحديث الدولة" - -#: woocommerce-template.php:1496 -msgid "Search for:" -msgstr "بحث عن:" - -#: woocommerce-template.php:1497 -msgid "Search for products" -msgstr "البث في المنتجات" - -#: woocommerce-template.php:1498 -#: woocommerce.php:947 -msgid "Search" -msgstr "البحث" - -#: woocommerce.php:171 -msgid "Docs" -msgstr "التوثيق" - -#: woocommerce.php:172 -msgid "Premium Support" -msgstr "الدعم الممتاز" - -#: woocommerce.php:786 -msgctxt "slug" -msgid "product-category" -msgstr "product-category" - -#: woocommerce.php:787 -msgctxt "slug" -msgid "product-tag" -msgstr "product-tag" - -#: woocommerce.php:789 -msgctxt "slug" -msgid "product" -msgstr "product" - -#: woocommerce.php:824 -msgid "Product Category" -msgstr "تصنيف المنتج" - -#: woocommerce.php:825 -msgctxt "Admin menu name" -msgid "Categories" -msgstr "التصنيفات" - -#: woocommerce.php:826 -msgid "Search Product Categories" -msgstr "بحث في تصنيفات المنتجات" - -#: woocommerce.php:827 -msgid "All Product Categories" -msgstr "كل تصنيفات المنتجات" - -#: woocommerce.php:828 -msgid "Parent Product Category" -msgstr "تصنيف المنتج" - -#: woocommerce.php:829 -msgid "Parent Product Category:" -msgstr "تصنيف المنتجات الرئيسية." - -#: woocommerce.php:830 -msgid "Edit Product Category" -msgstr "تحرير تصنيف المنتجات" - -#: woocommerce.php:831 -msgid "Update Product Category" -msgstr "تحديث تصنيف المنتجات" - -#: woocommerce.php:832 -msgid "Add New Product Category" -msgstr "إضافة تصنيف منتجات جديد" - -#: woocommerce.php:833 -msgid "New Product Category Name" -msgstr "تصنيف منتجات جديد" - -#: woocommerce.php:860 -msgid "Product Tag" -msgstr "وسم منتجات" - -#: woocommerce.php:861 -msgctxt "Admin menu name" -msgid "Tags" -msgstr "الوسوم" - -#: woocommerce.php:862 -msgid "Search Product Tags" -msgstr "بحث عن وسوم المنتجات" - -#: woocommerce.php:863 -msgid "All Product Tags" -msgstr "كل وسوم المنتجات" - -#: woocommerce.php:864 -msgid "Parent Product Tag" -msgstr "وسم المنتجات الرئيسي" - -#: woocommerce.php:865 -msgid "Parent Product Tag:" -msgstr "وسم المنتجات الرئيسي:" - -#: woocommerce.php:866 -msgid "Edit Product Tag" -msgstr "تحرير وسم المنتجات" - -#: woocommerce.php:867 -msgid "Update Product Tag" -msgstr "تحديث وسم المنتجات" - -#: woocommerce.php:868 -msgid "Add New Product Tag" -msgstr "إضافة وسم منتجات جديد" - -#: woocommerce.php:869 -msgid "New Product Tag Name" -msgstr "وسم منتجات جديد" - -#: woocommerce.php:888 -#: woocommerce.php:890 -msgid "Shipping Classes" -msgstr "فئات الشحن" - -#: woocommerce.php:892 -msgctxt "Admin menu name" -msgid "Shipping Classes" -msgstr "فئات الشحن" - -#: woocommerce.php:893 -msgid "Search Shipping Classes" -msgstr "بحث عن فئات شحن" - -#: woocommerce.php:894 -msgid "All Shipping Classes" -msgstr "كل فئات الشحن" - -#: woocommerce.php:895 -msgid "Parent Shipping Class" -msgstr "فئة الشحن الرئيسية" - -#: woocommerce.php:896 -msgid "Parent Shipping Class:" -msgstr "فئة الشحن الرئيسية:" - -#: woocommerce.php:897 -msgid "Edit Shipping Class" -msgstr "تحرير فئة الشحن" - -#: woocommerce.php:898 -msgid "Update Shipping Class" -msgstr "تحديث فئة الشحن" - -#: woocommerce.php:899 -msgid "Add New Shipping Class" -msgstr "إضافة فئة شحن جديدة" - -#: woocommerce.php:900 -msgid "New Shipping Class Name" -msgstr "فئة شحن جديدة" - -#: woocommerce.php:948 -msgid "All" -msgstr "الكل" - -#: woocommerce.php:949 -#: woocommerce.php:950 -msgid "Parent" -msgstr "رئيسي" - -#: woocommerce.php:952 -msgid "Update" -msgstr "تحديث" - -#: woocommerce.php:953 -msgid "Add New" -msgstr "إضافة جديد" - -#: woocommerce.php:954 -msgid "New" -msgstr "جديد" - -#: woocommerce.php:984 -msgctxt "Admin menu name" -msgid "Products" -msgstr "المنتجات" - -#: woocommerce.php:985 -msgid "Add Product" -msgstr "إضافة منتج" - -#: woocommerce.php:986 -msgid "Add New Product" -msgstr "إضافة منتج جديد" - -#: woocommerce.php:988 -msgid "Edit Product" -msgstr "تحرير المنتج" - -#: woocommerce.php:989 -msgid "New Product" -msgstr "منتج جديد" - -#: woocommerce.php:990 -#: woocommerce.php:991 -msgid "View Product" -msgstr "عرض المنتج" - -#: woocommerce.php:992 -msgid "Search Products" -msgstr "بحث عن منتجات" - -#: woocommerce.php:993 -msgid "No Products found" -msgstr "لا يوجد منتجات" - -#: woocommerce.php:994 -msgid "No Products found in trash" -msgstr "لا يوجد منتجات في السلة" - -#: woocommerce.php:995 -msgid "Parent Product" -msgstr "المنتج الرئيسي" - -#: woocommerce.php:997 -msgid "This is where you can add new products to your store." -msgstr "هنا يمكنك إضافة منتجات جديدة" - -#: woocommerce.php:1020 -msgid "Variations" -msgstr "الصفات" - -#: woocommerce.php:1021 -msgid "Variation" -msgstr "صفة" - -#: woocommerce.php:1022 -msgid "Add Variation" -msgstr "إضافة صفة" - -#: woocommerce.php:1023 -msgid "Add New Variation" -msgstr "إضافة صفة جديدة" - -#: woocommerce.php:1025 -msgid "Edit Variation" -msgstr "تحرير الصفة" - -#: woocommerce.php:1026 -msgid "New Variation" -msgstr "صفة جديدة" - -#: woocommerce.php:1027 -#: woocommerce.php:1028 -msgid "View Variation" -msgstr "عرض الصفة" - -#: woocommerce.php:1029 -msgid "Search Variations" -msgstr "بحث في الصفات" - -#: woocommerce.php:1030 -msgid "No Variations found" -msgstr "لا يوجد صفات" - -#: woocommerce.php:1031 -msgid "No Variations found in trash" -msgstr "لا يوجد صفات في سلة المهملات" - -#: woocommerce.php:1032 -msgid "Parent Variation" -msgstr "الصفة الرئيسية" - -#: woocommerce.php:1049 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "الطلبات" - -#: woocommerce.php:1058 -msgid "Orders" -msgstr "الطلبات" - -#: woocommerce.php:1060 -msgid "Add Order" -msgstr "إضافة طلب" - -#: woocommerce.php:1061 -msgid "Add New Order" -msgstr "إضافة طلب جديد" - -#: woocommerce.php:1063 -msgid "Edit Order" -msgstr "تحرير الطلب" - -#: woocommerce.php:1064 -msgid "New Order" -msgstr "طلب جديد" - -#: woocommerce.php:1067 -msgid "Search Orders" -msgstr "بحث عن الطلبات" - -#: woocommerce.php:1068 -msgid "No Orders found" -msgstr "لا يوجد طلبات" - -#: woocommerce.php:1069 -msgid "No Orders found in trash" -msgstr "لا يوجد طلبات في سلة المهملات" - -#: woocommerce.php:1070 -msgid "Parent Orders" -msgstr "الطلبات الرئيسية" - -#: woocommerce.php:1073 -msgid "This is where store orders are stored." -msgstr "هنا توجد طلبات المتجر." - -#: woocommerce.php:1095 -msgid "Coupons" -msgstr "القسائم" - -#: woocommerce.php:1097 -msgctxt "Admin menu name" -msgid "Coupons" -msgstr "القسائم" - -#: woocommerce.php:1098 -msgid "Add Coupon" -msgstr "إضافة قسيمة" - -#: woocommerce.php:1099 -msgid "Add New Coupon" -msgstr "إضافة قسيمة جديدة" - -#: woocommerce.php:1101 -msgid "Edit Coupon" -msgstr "تحرير القسيمة" - -#: woocommerce.php:1102 -msgid "New Coupon" -msgstr "قسيمة جديدة" - -#: woocommerce.php:1103 -msgid "View Coupons" -msgstr "عرض القسائم" - -#: woocommerce.php:1104 -msgid "View Coupon" -msgstr "عرض القسيمة" - -#: woocommerce.php:1105 -msgid "Search Coupons" -msgstr "البحث عن القسائم" - -#: woocommerce.php:1106 -msgid "No Coupons found" -msgstr "لا يوجد قسائم" - -#: woocommerce.php:1107 -msgid "No Coupons found in trash" -msgstr "لا يوجد قسائم في سلة المهملات" - -#: woocommerce.php:1108 -msgid "Parent Coupon" -msgstr "القسيمة الرئيسية" - -#: woocommerce.php:1110 -msgid "This is where you can add new coupons that customers can use in your store." -msgstr "هنا يمكنك إضافة قسائم ليستخدمها زبائنك في المتجر." - -#: woocommerce.php:1206 -msgid "Select an option…" -msgstr "رجاء حدد خيار…" - -#: woocommerce.php:1207 -msgid "Please select a rating" -msgstr "رجاء قيم المنتج." - -#: woocommerce.php:1208 -msgid "Sorry, no products matched your selection. Please choose a different combination." -msgstr "للأسف لا يوجد منتجات تطابق أختياراتك، الرجاء اختيار مجموعة مختلفة." - -#: woocommerce.php:1691 -msgid "Cart % Discount" -msgstr "خصم مئوي للعربة" - -#: woocommerce.php:1692 -msgid "Product Discount" -msgstr "خصم قيمة للمنتج" - -#: woocommerce.php:1693 -msgid "Product % Discount" -msgstr "خصم مئوي للمنتج" - -#: woocommerce.php:1758 -msgid "Action failed. Please refresh the page and retry." -msgstr "فشل التنفيذ. الرجاء تحديث الصفحة وإعادة المحاولة." - diff --git a/i18n/languages/woocommerce-bg_BG.mo b/i18n/languages/woocommerce-bg_BG.mo deleted file mode 100644 index e5bc0e3e32c..00000000000 Binary files a/i18n/languages/woocommerce-bg_BG.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-bg_BG.po b/i18n/languages/woocommerce-bg_BG.po deleted file mode 100644 index d9d4e4967f3..00000000000 --- a/i18n/languages/woocommerce-bg_BG.po +++ /dev/null @@ -1,15786 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce v2.0.0\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-10-24 20:53+0200\n" -"PO-Revision-Date: 2013-10-26 21:44+0200\n" -"Last-Translator: Adrian Dimitrov \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Poedit 1.5.7\n" -"X-Poedit-Language: \n" -"X-Poedit-Country: \n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n" -"X-Poedit-Basepath: ../../\n" -"X-Poedit-Bookmarks: 526,-1,-1,-1,-1,-1,-1,-1,-1,-1\n" -"X-Poedit-SearchPath-0: .\n" -"X-Textdomain-Support: yes" - -# @ woocommerce -#: woocommerce-ajax.php:122 -msgid "Sorry, your session has expired." -msgstr "Съжаляваме, сесията ви е изтекла." - -# @ woocommerce -#: woocommerce-ajax.php:122 -msgid "Return to homepage →" -msgstr "Върни се към началната страница →" - -# @ woocommerce -#: woocommerce-ajax.php:262 woocommerce-ajax.php:296 woocommerce-ajax.php:319 -msgid "You do not have sufficient permissions to access this page." -msgstr "Нямате необходимите пермисии за да видите тази страница." - -# @ woocommerce -#: woocommerce-ajax.php:264 woocommerce-ajax.php:297 woocommerce-ajax.php:320 -msgid "You have taken too long. Please go back and retry." -msgstr "Изминало е прекалено много време. Моля, върнете се и опитайте отново." - -# @ woocommerce -#: woocommerce-ajax.php:556 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:119 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:132 -msgid "Same as parent" -msgstr "Също като родителя" - -# @ woocommerce -#: woocommerce-ajax.php:557 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:256 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:733 -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:27 -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:39 -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:120 -#: includes/admin/settings/class-wc-settings-tax.php:122 -#: includes/admin/settings/class-wc-settings-tax.php:241 -#: includes/admin/views/html-bulk-edit-product.php:83 -#: includes/admin/views/html-quick-edit-product.php:61 -msgid "Standard" -msgstr "Стандарт" - -# @ woocommerce -#: woocommerce-ajax.php:1044 woocommerce-ajax.php:1045 -#: includes/class-wc-order.php:1473 -#, php-format -msgid "Item #%s stock reduced from %s to %s." -msgstr "Наличността на продукт #%s намалена от %s на %s." - -# @ woocommerce -#: woocommerce-ajax.php:1053 -msgid "" -"No products had their stock reduced - they may not have stock management " -"enabled." -msgstr "" -"Няма намаляване в продуктите - възможно е продуктите да не използват " -"наличности." - -# @ woocommerce -#: woocommerce-ajax.php:1097 woocommerce-ajax.php:1098 -#, php-format -msgid "Item #%s stock increased from %s to %s." -msgstr "Наличността на продукта #%s увеличена от %s на %s." - -# @ woocommerce -#: woocommerce-ajax.php:1105 -msgid "" -"No products had their stock increased - they may not have stock management " -"enabled." -msgstr "" -"Няма увеличение в продуктите - възможно е продуктите да не използват " -"наличности." - -# @ woocommerce -#: woocommerce-ajax.php:1126 includes/admin/class-wc-admin-assets.php:130 -#: includes/admin/class-wc-admin-attributes.php:239 -#: includes/admin/class-wc-admin-attributes.php:275 -#: includes/admin/class-wc-admin-attributes.php:308 -#: includes/admin/class-wc-admin-attributes.php:331 -#: includes/admin/class-wc-admin-attributes.php:375 -#: includes/admin/class-wc-admin-attributes.php:400 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:194 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:185 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:438 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:532 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:147 -#: includes/admin/settings/class-wc-settings-shipping.php:203 -#: includes/widgets/class-wc-widget-product-categories.php:39 -#: templates/single-product-reviews.php:85 -msgid "Name" -msgstr "Име" - -# @ woocommerce -#: woocommerce-ajax.php:1126 -msgid "Value" -msgstr "Стойност" - -# @ woocommerce -#: woocommerce-ajax.php:1364 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:46 -msgid "Delete note" -msgstr "Изтриване бележка" - -# @ woocommerce -#: woocommerce-ajax.php:1531 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:242 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:263 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:169 -#: includes/integrations/google-analytics/class-wc-google-analytics.php:120 -#: includes/integrations/google-analytics/class-wc-google-analytics.php:180 -msgid "Guest" -msgstr "Гост" - -#: woocommerce.php:100 woocommerce.php:109 includes/class-wc-checkout.php:64 -#: includes/class-wc-checkout.php:73 includes/class-wc-emails.php:67 -#: includes/class-wc-emails.php:76 includes/class-wc-payment-gateways.php:46 -#: includes/class-wc-payment-gateways.php:55 includes/class-wc-shipping.php:64 -#: includes/class-wc-shipping.php:73 -msgid "Cheatin’ huh?" -msgstr "Правиме се на луди, а?" - -# @ woocommerce -#: woocommerce.php:181 includes/abstracts/abstract-wc-email.php:681 -#: includes/abstracts/abstract-wc-integration.php:30 -#: includes/abstracts/abstract-wc-settings-api.php:39 -#: includes/admin/class-wc-admin-menus.php:63 -#: includes/admin/class-wc-admin-welcome.php:153 -#: includes/admin/settings/class-wc-settings-checkout.php:268 -#: includes/admin/settings/class-wc-settings-shipping.php:241 -#: includes/admin/views/html-admin-page-status-report.php:264 -msgid "Settings" -msgstr "Настройки" - -# @ woocommerce -#: woocommerce.php:182 includes/admin/class-wc-admin-welcome.php:154 -msgid "Docs" -msgstr "Документация" - -#: woocommerce.php:183 -msgid "Premium Support" -msgstr "Платена поддръжка" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:5 -msgid "Insert Shortcode" -msgstr "Вмъкване на кратък код" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:6 -msgid "Product price/cart button" -msgstr "Бутон за цена/количка на продукта" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:7 -msgid "Product by SKU/ID" -msgstr "Продукт по SKU/ID" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:8 -msgid "Products by SKU/ID" -msgstr "Продукти по SKU/ID" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:9 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:137 -msgid "Product categories" -msgstr "Категории продукти" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:10 -msgid "Products by category slug" -msgstr "Кратко име на продуктовата категория" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:11 -msgid "Recent products" -msgstr "Нови продукти" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:12 -msgid "Featured products" -msgstr "Избрани продукти" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:13 -msgid "Shop Messages" -msgstr "Съобщения от магазина" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:14 -msgid "Order tracking" -msgstr "Проследяване на поръчка" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:15 includes/class-wc-install.php:225 -#: includes/admin/views/html-admin-page-status-report.php:296 -#: templates/checkout/thankyou.php:30 -msgid "My Account" -msgstr "Моят профил" - -# @ woocommerce -#: i18n/strings.php:16 -msgid "pending" -msgstr "изчакване" - -# @ woocommerce -#: i18n/strings.php:17 -msgid "failed" -msgstr "провалена" - -# @ woocommerce -#: i18n/strings.php:18 -msgid "on-hold" -msgstr "задържана" - -# @ woocommerce -#: i18n/strings.php:19 -msgid "processing" -msgstr "обработване" - -# @ woocommerce -#: i18n/strings.php:20 -msgid "completed" -msgstr "приключена" - -# @ woocommerce -#: i18n/strings.php:21 -msgid "refunded" -msgstr "върнати" - -# @ woocommerce -#: i18n/strings.php:22 -msgid "cancelled" -msgstr "отменена" - -# @ woocommerce -#: i18n/states/AU.php:13 -msgid "Australian Capital Territory" -msgstr "" - -# @ woocommerce -#: i18n/states/AU.php:14 -msgid "New South Wales" -msgstr "" - -# @ woocommerce -#: i18n/states/AU.php:15 -msgid "Northern Territory" -msgstr "" - -# @ woocommerce -#: i18n/states/AU.php:16 -msgid "Queensland" -msgstr "" - -# @ woocommerce -#: i18n/states/AU.php:17 -msgid "South Australia" -msgstr "" - -# @ woocommerce -#: i18n/states/AU.php:18 -msgid "Tasmania" -msgstr "" - -# @ woocommerce -#: i18n/states/AU.php:19 -msgid "Victoria" -msgstr "" - -# @ woocommerce -#: i18n/states/AU.php:20 -msgid "Western Australia" -msgstr "" - -#: i18n/states/BG.php:13 -msgid "Благоевград" -msgstr "" - -#: i18n/states/BG.php:14 -msgid "Бургас" -msgstr "" - -#: i18n/states/BG.php:15 -msgid "Варна" -msgstr "" - -#: i18n/states/BG.php:16 -msgid "Велико Търново" -msgstr "" - -#: i18n/states/BG.php:17 -msgid "Видин" -msgstr "" - -#: i18n/states/BG.php:18 -msgid "Враца" -msgstr "" - -#: i18n/states/BG.php:19 -msgid "Габрово" -msgstr "" - -#: i18n/states/BG.php:20 -msgid "Добрич" -msgstr "" - -#: i18n/states/BG.php:21 -msgid "Кърджали" -msgstr "" - -#: i18n/states/BG.php:22 -msgid "Кюстендил" -msgstr "" - -#: i18n/states/BG.php:23 -msgid "Ловеч" -msgstr "" - -#: i18n/states/BG.php:24 -msgid "Монтана" -msgstr "" - -#: i18n/states/BG.php:25 -msgid "Пазарджик" -msgstr "" - -#: i18n/states/BG.php:26 -msgid "Перник" -msgstr "" - -#: i18n/states/BG.php:27 -msgid "Плевен" -msgstr "" - -#: i18n/states/BG.php:28 -msgid "Пловдив" -msgstr "" - -#: i18n/states/BG.php:29 -msgid "Разград" -msgstr "" - -#: i18n/states/BG.php:30 -msgid "Русе" -msgstr "" - -#: i18n/states/BG.php:31 -msgid "Силистра" -msgstr "" - -#: i18n/states/BG.php:32 -msgid "Сливен" -msgstr "" - -#: i18n/states/BG.php:33 -msgid "Смолян" -msgstr "" - -#: i18n/states/BG.php:34 -msgid "София-област" -msgstr "" - -#: i18n/states/BG.php:35 -msgid "София-град" -msgstr "" - -#: i18n/states/BG.php:36 -msgid "Стара Загора" -msgstr "" - -#: i18n/states/BG.php:37 -msgid "Търговище" -msgstr "" - -#: i18n/states/BG.php:38 -msgid "Хасково" -msgstr "" - -#: i18n/states/BG.php:39 -msgid "Шумен" -msgstr "" - -#: i18n/states/BG.php:40 -msgid "Ямбол" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:13 -msgid "Acre" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:14 -msgid "Alagoas" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:15 -msgid "Amapá" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:16 -msgid "Amazonas" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:17 -msgid "Bahia" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:18 -msgid "Ceará" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:19 -msgid "Distrito Federal" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:20 -msgid "Espírito Santo" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:21 -msgid "Goiás" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:22 -msgid "Maranhão" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:23 -msgid "Mato Grosso" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:24 -msgid "Mato Grosso do Sul" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:25 -msgid "Minas Gerais" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:26 -msgid "Pará" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:27 -msgid "Paraíba" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:28 -msgid "Paraná" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:29 -msgid "Pernambuco" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:30 -msgid "Piauí" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:31 -msgid "Rio de Janeiro" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:32 -msgid "Rio Grande do Norte" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:33 -msgid "Rio Grande do Sul" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:34 -msgid "Rondônia" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:35 -msgid "Roraima" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:36 -msgid "Santa Catarina" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:37 -msgid "São Paulo" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:38 -msgid "Sergipe" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:39 -msgid "Tocantins" -msgstr "" - -# @ woocommerce -#: i18n/states/CA.php:13 -msgid "Alberta" -msgstr "" - -# @ woocommerce -#: i18n/states/CA.php:14 -msgid "British Columbia" -msgstr "" - -# @ woocommerce -#: i18n/states/CA.php:15 -msgid "Manitoba" -msgstr "" - -# @ woocommerce -#: i18n/states/CA.php:16 -msgid "New Brunswick" -msgstr "" - -# @ woocommerce -#: i18n/states/CA.php:17 -msgid "Newfoundland" -msgstr "" - -# @ woocommerce -#: i18n/states/CA.php:18 -msgid "Northwest Territories" -msgstr "" - -# @ woocommerce -#: i18n/states/CA.php:19 -msgid "Nova Scotia" -msgstr "" - -# @ woocommerce -#: i18n/states/CA.php:20 -msgid "Nunavut" -msgstr "" - -# @ woocommerce -#: i18n/states/CA.php:21 -msgid "Ontario" -msgstr "" - -# @ woocommerce -#: i18n/states/CA.php:22 -msgid "Prince Edward Island" -msgstr "" - -# @ woocommerce -#: i18n/states/CA.php:23 -msgid "Quebec" -msgstr "" - -# @ woocommerce -#: i18n/states/CA.php:24 -msgid "Saskatchewan" -msgstr "" - -# @ woocommerce -#: i18n/states/CA.php:25 -msgid "Yukon Territory" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:13 -msgid "Yunnan / 云南" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:14 -msgid "Beijing / 北京" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:15 -msgid "Tianjin / 天津" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:16 -msgid "Hebei / 河北" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:17 -msgid "Shanxi / 山西" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:18 -msgid "Inner Mongolia / 內蒙古" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:19 -msgid "Liaoning / 辽宁" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:20 -msgid "Jilin / 吉林" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:21 -msgid "Heilongjiang / 黑龙江" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:22 -msgid "Shanghai / 上海" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:23 -msgid "Jiangsu / 江苏" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:24 -msgid "Zhejiang / 浙江" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:25 -msgid "Anhui / 安徽" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:26 -msgid "Fujian / 福建" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:27 -msgid "Jiangxi / 江西" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:28 -msgid "Shandong / 山东" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:29 -msgid "Henan / 河南" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:30 -msgid "Hubei / 湖北" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:31 -msgid "Hunan / 湖南" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:32 -msgid "Guangdong / 广东" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:33 -msgid "Guangxi Zhuang / 广西壮族" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:34 -msgid "Hainan / 海南" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:35 -msgid "Chongqing / 重庆" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:36 -msgid "Sichuan / 四川" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:37 -msgid "Guizhou / 贵州" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:38 -msgid "Shaanxi / 陕西" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:39 -msgid "Gansu / 甘肃" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:40 -msgid "Qinghai / 青海" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:41 -msgid "Ningxia Hui / 宁夏" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:42 -msgid "Macau / 澳门" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:43 -msgid "Tibet / 西藏" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:44 -msgid "Xinjiang / 新疆" -msgstr "" - -#: i18n/states/ES.php:13 -msgid "A Coruña" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:14 -msgid "Álava" -msgstr "" - -#: i18n/states/ES.php:15 -msgid "Albacete" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:16 -msgid "Alicante" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:17 -msgid "Almería" -msgstr "" - -#: i18n/states/ES.php:18 -msgid "Asturias" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:19 -msgid "Ávila" -msgstr "" - -#: i18n/states/ES.php:20 -msgid "Badajoz" -msgstr "" - -#: i18n/states/ES.php:21 -msgid "Baleares" -msgstr "" - -#: i18n/states/ES.php:22 -msgid "Barcelona" -msgstr "" - -#: i18n/states/ES.php:23 -msgid "Burgos" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:24 -msgid "Cáceres" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:25 -msgid "Cádiz" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:26 -msgid "Cantabria" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:27 -msgid "Castellón" -msgstr "" - -#: i18n/states/ES.php:28 -msgid "Ceuta" -msgstr "" - -#: i18n/states/ES.php:29 -msgid "Ciudad Real" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:30 -msgid "Córdoba" -msgstr "" - -#: i18n/states/ES.php:31 -msgid "Cuenca" -msgstr "" - -#: i18n/states/ES.php:32 -msgid "Girona" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:33 -msgid "Granada" -msgstr "" - -#: i18n/states/ES.php:34 -msgid "Guadalajara" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:35 -msgid "Guipúzcoa" -msgstr "" - -#: i18n/states/ES.php:36 -msgid "Huelva" -msgstr "" - -#: i18n/states/ES.php:37 -msgid "Huesca" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:38 -msgid "Jaén" -msgstr "" - -#: i18n/states/ES.php:39 -msgid "La Rioja" -msgstr "" - -#: i18n/states/ES.php:40 -msgid "Las Palmas" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:41 -msgid "León" -msgstr "" - -#: i18n/states/ES.php:42 -msgid "Lleida" -msgstr "" - -#: i18n/states/ES.php:43 -msgid "Lugo" -msgstr "" - -#: i18n/states/ES.php:44 -msgid "Madrid" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:45 -msgid "Málaga" -msgstr "" - -#: i18n/states/ES.php:46 -msgid "Melilla" -msgstr "" - -#: i18n/states/ES.php:47 -msgid "Murcia" -msgstr "" - -#: i18n/states/ES.php:48 -msgid "Navarra" -msgstr "" - -#: i18n/states/ES.php:49 -msgid "Ourense" -msgstr "" - -#: i18n/states/ES.php:50 -msgid "Palencia" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:51 -msgid "Pontevedra" -msgstr "" - -#: i18n/states/ES.php:52 -msgid "Salamanca" -msgstr "" - -#: i18n/states/ES.php:53 -msgid "Santa Cruz de Tenerife" -msgstr "" - -#: i18n/states/ES.php:54 -msgid "Segovia" -msgstr "" - -#: i18n/states/ES.php:55 -msgid "Sevilla" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:56 -msgid "Soria" -msgstr "" - -#: i18n/states/ES.php:57 -msgid "Tarragona" -msgstr "" - -#: i18n/states/ES.php:58 -msgid "Teruel" -msgstr "" - -#: i18n/states/ES.php:59 -msgid "Toledo" -msgstr "" - -#: i18n/states/ES.php:60 -msgid "Valencia" -msgstr "" - -#: i18n/states/ES.php:61 -msgid "Valladolid" -msgstr "" - -#: i18n/states/ES.php:62 -msgid "Vizcaya" -msgstr "" - -#: i18n/states/ES.php:63 -msgid "Zamora" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:64 -msgid "Zaragoza" -msgstr "" - -# @ woocommerce -#: i18n/states/HK.php:13 -msgid "Hong Kong Island" -msgstr "" - -# @ woocommerce -#: i18n/states/HK.php:14 -msgid "Kowloon" -msgstr "" - -# @ woocommerce -#: i18n/states/HK.php:15 -msgid "New Territories" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:13 -msgid "Bács-Kiskun" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:14 -msgid "Békés" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:15 -msgid "Baranya" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:16 -msgid "Borsod-Abaúj-Zemplén" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:17 -msgid "Budapest" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:18 -msgid "Csongrád" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:19 -msgid "Fejér" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:20 -msgid "Győr-Moson-Sopron" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:21 -msgid "Hajdú-Bihar" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:22 -msgid "Heves" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:23 -msgid "Jász-Nagykun-Szolnok" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:24 -msgid "Komárom-Esztergom" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:25 -msgid "Nógrád" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:26 -msgid "Pest" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:27 -msgid "Somogy" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:28 -msgid "Szabolcs-Szatmár-Bereg" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:29 -msgid "Tolna" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:30 -msgid "Vas" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:31 -msgid "Veszprém" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:32 -msgid "Zala" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:13 i18n/states/NZ.php:14 -msgid "Auckland" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:14 i18n/states/NZ.php:16 -msgid "Bay of Plenty" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:15 i18n/states/NZ.php:25 -msgid "Canterbury" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:16 i18n/states/NZ.php:18 -msgid "Hawke’s Bay" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:17 i18n/states/NZ.php:19 -msgid "Manawatu-Wanganui" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:18 i18n/states/NZ.php:22 -msgid "Marlborough" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:19 i18n/states/NZ.php:21 -msgid "Nelson" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:20 i18n/states/NZ.php:13 -msgid "Northland" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:21 i18n/states/NZ.php:26 -msgid "Otago" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:22 i18n/states/NZ.php:27 -msgid "Southland" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:23 i18n/states/NZ.php:17 -msgid "Taranaki" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:24 i18n/states/NZ.php:23 -msgid "Tasman" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:25 i18n/states/NZ.php:15 -msgid "Waikato" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:26 i18n/states/NZ.php:20 -msgid "Wellington" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:27 i18n/states/NZ.php:24 -msgid "West Coast" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:13 -msgid "Daerah Istimewa Aceh" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:14 -msgid "Sumatera Utara" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:15 -msgid "Sumatera Barat" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:16 -msgid "Riau" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:17 -msgid "Kepulauan Riau" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:18 -msgid "Jambi" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:19 -msgid "Sumatera Selatan" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:20 -msgid "Bangka Belitung" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:21 -msgid "Bengkulu" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:22 -msgid "Lampung" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:23 -msgid "DKI Jakarta" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:24 -msgid "Jawa Barat" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:25 -msgid "Banten" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:26 -msgid "Jawa Tengah" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:27 -msgid "Jawa Timur" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:28 -msgid "Daerah Istimewa Yogyakarta" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:29 -msgid "Bali" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:30 -msgid "Nusa Tenggara Barat" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:31 -msgid "Nusa Tenggara Timur" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:32 -msgid "Kalimantan Barat" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:33 -msgid "Kalimantan Tengah" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:34 -msgid "Kalimantan Timur" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:35 -msgid "Kalimantan Selatan" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:36 -msgid "Kalimantan Utara" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:37 -msgid "Sulawesi Utara" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:38 -msgid "Sulawesi Tengah" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:39 -msgid "Sulawesi Tenggara" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:40 -msgid "Sulawesi Barat" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:41 -msgid "Sulawesi Selatan" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:42 -msgid "Gorontalo" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:43 -msgid "Maluku" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:44 -msgid "Maluku Utara" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:45 -msgid "Papua" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:46 -msgid "Papua Barat" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:13 -msgid "Andra Pradesh" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:14 -msgid "Arunachal Pradesh" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:15 -msgid "Assam" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:16 -msgid "Bihar" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:17 -msgid "Chhattisgarh" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:18 -msgid "Goa" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:19 -msgid "Gujarat" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:20 -msgid "Haryana" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:21 -msgid "Himachal Pradesh" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:22 -msgid "Jammu and Kashmir" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:23 -msgid "Jharkhand" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:24 -msgid "Karnataka" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:25 -msgid "Kerala" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:26 -msgid "Madhya Pradesh" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:27 -msgid "Maharashtra" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:28 -msgid "Manipur" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:29 -msgid "Meghalaya" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:30 -msgid "Mizoram" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:31 -msgid "Nagaland" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:32 -msgid "Orissa" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:33 -msgid "Punjab" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:34 -msgid "Rajasthan" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:35 -msgid "Sikkim" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:36 -msgid "Tamil Nadu" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:37 -msgid "Tripura" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:38 -msgid "Uttaranchal" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:39 -msgid "Uttar Pradesh" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:40 -msgid "West Bengal" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:41 -msgid "Andaman and Nicobar Islands" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:42 -msgid "Chandigarh" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:43 -msgid "Dadar and Nagar Haveli" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:44 -msgid "Daman and Diu" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:45 -msgid "Delhi" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:46 -msgid "Lakshadeep" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:47 -msgid "Pondicherry (Puducherry)" -msgstr "" - -# @ woocommerce -#: i18n/states/IT.php:13 -msgid "Agrigento" -msgstr "" - -#: i18n/states/IT.php:14 -msgid "Alessandria" -msgstr "" - -#: i18n/states/IT.php:15 -msgid "Ancona" -msgstr "" - -#: i18n/states/IT.php:16 -msgid "Aosta" -msgstr "" - -#: i18n/states/IT.php:17 -msgid "Arezzo" -msgstr "" - -#: i18n/states/IT.php:18 -msgid "Ascoli Piceno" -msgstr "" - -#: i18n/states/IT.php:19 -msgid "Asti" -msgstr "" - -# @ woocommerce -#: i18n/states/IT.php:20 -msgid "Avellino" -msgstr "" - -#: i18n/states/IT.php:21 -msgid "Bari" -msgstr "" - -#: i18n/states/IT.php:22 -msgid "Barletta-Andria-Trani" -msgstr "" - -#: i18n/states/IT.php:23 -msgid "Belluno" -msgstr "" - -# @ woocommerce -#: i18n/states/IT.php:24 -msgid "Benevento" -msgstr "" - -#: i18n/states/IT.php:25 -msgid "Bergamo" -msgstr "" - -#: i18n/states/IT.php:26 -msgid "Biella" -msgstr "" - -#: i18n/states/IT.php:27 -msgid "Bologna" -msgstr "" - -#: i18n/states/IT.php:28 -msgid "Bolzano" -msgstr "" - -#: i18n/states/IT.php:29 -msgid "Brescia" -msgstr "" - -#: i18n/states/IT.php:30 -msgid "Brindisi" -msgstr "" - -#: i18n/states/IT.php:31 -msgid "Cagliari" -msgstr "" - -#: i18n/states/IT.php:32 -msgid "Caltanissetta" -msgstr "" - -#: i18n/states/IT.php:33 -msgid "Campobasso" -msgstr "" - -#: i18n/states/IT.php:34 -msgid "Carbonia-Iglesias" -msgstr "" - -#: i18n/states/IT.php:35 -msgid "Caserta" -msgstr "" - -# @ woocommerce -#: i18n/states/IT.php:36 -msgid "Catania" -msgstr "" - -# @ woocommerce -#: i18n/states/IT.php:37 -msgid "Catanzaro" -msgstr "" - -#: i18n/states/IT.php:38 -msgid "Chieti" -msgstr "" - -# @ woocommerce -#: i18n/states/IT.php:39 -msgid "Como" -msgstr "" - -#: i18n/states/IT.php:40 -msgid "Cosenza" -msgstr "" - -#: i18n/states/IT.php:41 -msgid "Cremona" -msgstr "" - -#: i18n/states/IT.php:42 -msgid "Crotone" -msgstr "" - -#: i18n/states/IT.php:43 -msgid "Cuneo" -msgstr "" - -#: i18n/states/IT.php:44 -msgid "Enna" -msgstr "" - -# @ woocommerce -#: i18n/states/IT.php:45 -msgid "Fermo" -msgstr "" - -#: i18n/states/IT.php:46 -msgid "Ferrara" -msgstr "" - -#: i18n/states/IT.php:47 -msgid "Firenze" -msgstr "" - -#: i18n/states/IT.php:48 -msgid "Foggia" -msgstr "" - -#: i18n/states/IT.php:49 -msgid "Forlì-Cesena" -msgstr "" - -#: i18n/states/IT.php:50 -msgid "Frosinone" -msgstr "" - -#: i18n/states/IT.php:51 -msgid "Genova" -msgstr "" - -#: i18n/states/IT.php:52 -msgid "Gorizia" -msgstr "" - -# @ woocommerce -#: i18n/states/IT.php:53 -msgid "Grosseto" -msgstr "" - -#: i18n/states/IT.php:54 -msgid "Imperia" -msgstr "" - -# @ woocommerce -#: i18n/states/IT.php:55 -msgid "Isernia" -msgstr "" - -#: i18n/states/IT.php:56 -msgid "La Spezia" -msgstr "" - -#: i18n/states/IT.php:57 -msgid "L'Aquila" -msgstr "" - -# @ woocommerce -#: i18n/states/IT.php:58 -msgid "Latina" -msgstr "" - -#: i18n/states/IT.php:59 -msgid "Lecce" -msgstr "" - -#: i18n/states/IT.php:60 -msgid "Lecco" -msgstr "" - -#: i18n/states/IT.php:61 -msgid "Livorno" -msgstr "" - -#: i18n/states/IT.php:62 -msgid "Lodi" -msgstr "" - -#: i18n/states/IT.php:63 -msgid "Lucca" -msgstr "" - -#: i18n/states/IT.php:64 -msgid "Macerata" -msgstr "" - -# @ woocommerce -#: i18n/states/IT.php:65 -msgid "Mantova" -msgstr "" - -#: i18n/states/IT.php:66 -msgid "Massa-Carrara" -msgstr "" - -#: i18n/states/IT.php:67 -msgid "Matera" -msgstr "" - -#: i18n/states/IT.php:68 -msgid "Messina" -msgstr "" - -#: i18n/states/IT.php:69 -msgid "Milano" -msgstr "" - -#: i18n/states/IT.php:70 -msgid "Modena" -msgstr "" - -#: i18n/states/IT.php:71 -msgid "Monza e della Brianza" -msgstr "" - -#: i18n/states/IT.php:72 -msgid "Napoli" -msgstr "" - -#: i18n/states/IT.php:73 -msgid "Novara" -msgstr "" - -#: i18n/states/IT.php:74 -msgid "Nuoro" -msgstr "" - -#: i18n/states/IT.php:75 -msgid "Olbia-Tempio" -msgstr "" - -# @ woocommerce -#: i18n/states/IT.php:76 -msgid "Oristano" -msgstr "" - -# @ woocommerce -#: i18n/states/IT.php:77 -msgid "Padova" -msgstr "" - -#: i18n/states/IT.php:78 -msgid "Palermo" -msgstr "" - -#: i18n/states/IT.php:79 -msgid "Parma" -msgstr "" - -#: i18n/states/IT.php:80 -msgid "Pavia" -msgstr "" - -# @ woocommerce -#: i18n/states/IT.php:81 -msgid "Perugia" -msgstr "" - -#: i18n/states/IT.php:82 -msgid "Pesaro e Urbino" -msgstr "" - -#: i18n/states/IT.php:83 -msgid "Pescara" -msgstr "" - -#: i18n/states/IT.php:84 -msgid "Piacenza" -msgstr "" - -#: i18n/states/IT.php:85 -msgid "Pisa" -msgstr "" - -#: i18n/states/IT.php:86 -msgid "Pistoia" -msgstr "" - -#: i18n/states/IT.php:87 -msgid "Pordenone" -msgstr "" - -#: i18n/states/IT.php:88 -msgid "Potenza" -msgstr "" - -#: i18n/states/IT.php:89 -msgid "Prato" -msgstr "" - -#: i18n/states/IT.php:90 -msgid "Ragusa" -msgstr "" - -#: i18n/states/IT.php:91 -msgid "Ravenna" -msgstr "" - -#: i18n/states/IT.php:92 -msgid "Reggio Calabria" -msgstr "" - -#: i18n/states/IT.php:93 -msgid "Reggio Emilia" -msgstr "" - -#: i18n/states/IT.php:94 -msgid "Rieti" -msgstr "" - -#: i18n/states/IT.php:95 -msgid "Rimini" -msgstr "" - -# @ woocommerce -#: i18n/states/IT.php:96 -msgid "Roma" -msgstr "" - -#: i18n/states/IT.php:97 -msgid "Rovigo" -msgstr "" - -# @ woocommerce -#: i18n/states/IT.php:98 -msgid "Salerno" -msgstr "" - -#: i18n/states/IT.php:99 -msgid "Medio Campidano" -msgstr "" - -#: i18n/states/IT.php:100 -msgid "Sassari" -msgstr "" - -#: i18n/states/IT.php:101 -msgid "Savona" -msgstr "" - -#: i18n/states/IT.php:102 -msgid "Siena" -msgstr "" - -#: i18n/states/IT.php:103 -msgid "Siracusa" -msgstr "" - -#: i18n/states/IT.php:104 -msgid "Sondrio" -msgstr "" - -# @ woocommerce -#: i18n/states/IT.php:105 -msgid "Taranto" -msgstr "" - -#: i18n/states/IT.php:106 -msgid "Teramo" -msgstr "" - -#: i18n/states/IT.php:107 -msgid "Terni" -msgstr "" - -#: i18n/states/IT.php:108 -msgid "Torino" -msgstr "" - -#: i18n/states/IT.php:109 -msgid "Ogliastra" -msgstr "" - -# @ woocommerce -#: i18n/states/IT.php:110 -msgid "Trapani" -msgstr "" - -# @ woocommerce -#: i18n/states/IT.php:111 -msgid "Trento" -msgstr "" - -#: i18n/states/IT.php:112 -msgid "Treviso" -msgstr "" - -# @ woocommerce -#: i18n/states/IT.php:113 -msgid "Trieste" -msgstr "" - -#: i18n/states/IT.php:114 -msgid "Udine" -msgstr "" - -#: i18n/states/IT.php:115 -msgid "Varese" -msgstr "" - -# @ woocommerce -#: i18n/states/IT.php:116 -msgid "Venezia" -msgstr "" - -#: i18n/states/IT.php:117 -msgid "Verbano-Cusio-Ossola" -msgstr "" - -#: i18n/states/IT.php:118 -msgid "Vercelli" -msgstr "" - -#: i18n/states/IT.php:119 -msgid "Verona" -msgstr "" - -#: i18n/states/IT.php:120 -msgid "Vibo Valentia" -msgstr "" - -#: i18n/states/IT.php:121 -msgid "Vicenza" -msgstr "" - -#: i18n/states/IT.php:122 -msgid "Viterbo" -msgstr "" - -#: i18n/states/JP.php:13 -msgid "Hokkaido" -msgstr "" - -# @ woocommerce -#: i18n/states/JP.php:14 -msgid "Aomori" -msgstr "" - -#: i18n/states/JP.php:15 -msgid "Iwate" -msgstr "" - -#: i18n/states/JP.php:16 -msgid "Miyagi" -msgstr "" - -#: i18n/states/JP.php:17 -msgid "Akita" -msgstr "" - -#: i18n/states/JP.php:18 -msgid "Yamagata" -msgstr "" - -#: i18n/states/JP.php:19 -msgid "Fukushima" -msgstr "" - -#: i18n/states/JP.php:20 -msgid "Ibaraki" -msgstr "" - -#: i18n/states/JP.php:21 -msgid "Tochigi" -msgstr "" - -#: i18n/states/JP.php:22 -msgid "Gunma" -msgstr "" - -#: i18n/states/JP.php:23 -msgid "Saitama" -msgstr "" - -#: i18n/states/JP.php:24 -msgid "Chiba" -msgstr "" - -#: i18n/states/JP.php:25 -msgid "Tokyo" -msgstr "" - -#: i18n/states/JP.php:26 -msgid "Kanagawa" -msgstr "" - -#: i18n/states/JP.php:27 -msgid "Niigata" -msgstr "" - -#: i18n/states/JP.php:28 -msgid "Toyama" -msgstr "" - -#: i18n/states/JP.php:29 -msgid "Ishikawa" -msgstr "" - -#: i18n/states/JP.php:30 -msgid "Fukui" -msgstr "" - -#: i18n/states/JP.php:31 -msgid "Yamanashi" -msgstr "" - -# @ woocommerce -#: i18n/states/JP.php:32 -msgid "Nagano" -msgstr "" - -#: i18n/states/JP.php:33 -msgid "Gifu" -msgstr "" - -#: i18n/states/JP.php:34 -msgid "Shizuoka" -msgstr "" - -# @ woocommerce -#: i18n/states/JP.php:35 -msgid "Aichi" -msgstr "" - -# @ woocommerce -#: i18n/states/JP.php:36 -msgid "Mie" -msgstr "" - -# @ woocommerce -#: i18n/states/JP.php:37 -msgid "Shiga" -msgstr "" - -#: i18n/states/JP.php:38 -msgid "Kyouto" -msgstr "" - -#: i18n/states/JP.php:39 -msgid "Osaka" -msgstr "" - -#: i18n/states/JP.php:40 -msgid "Hyougo" -msgstr "" - -#: i18n/states/JP.php:41 -msgid "Nara" -msgstr "" - -#: i18n/states/JP.php:42 -msgid "Wakayama" -msgstr "" - -#: i18n/states/JP.php:43 -msgid "Tottori" -msgstr "" - -#: i18n/states/JP.php:44 -msgid "Shimane" -msgstr "" - -#: i18n/states/JP.php:45 -msgid "Okayama" -msgstr "" - -#: i18n/states/JP.php:46 -msgid "Hiroshima" -msgstr "" - -#: i18n/states/JP.php:47 -msgid "Yamaguchi" -msgstr "" - -#: i18n/states/JP.php:48 -msgid "Tokushima" -msgstr "" - -#: i18n/states/JP.php:49 -msgid "Kagawa" -msgstr "" - -#: i18n/states/JP.php:50 -msgid "Ehime" -msgstr "" - -#: i18n/states/JP.php:51 -msgid "Kochi" -msgstr "" - -#: i18n/states/JP.php:52 -msgid "Fukuoka" -msgstr "" - -#: i18n/states/JP.php:53 -msgid "Saga" -msgstr "" - -# @ woocommerce -#: i18n/states/JP.php:54 -msgid "Nagasaki" -msgstr "" - -#: i18n/states/JP.php:55 -msgid "Kumamoto" -msgstr "" - -#: i18n/states/JP.php:56 -msgid "Oita" -msgstr "" - -#: i18n/states/JP.php:57 -msgid "Miyazaki" -msgstr "" - -#: i18n/states/JP.php:58 -msgid "Kagoshima" -msgstr "" - -#: i18n/states/JP.php:59 -msgid "Okinawa" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:13 -msgid "Johor" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:14 -msgid "Kedah" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:15 -msgid "Kelantan" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:16 -msgid "Melaka" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:17 -msgid "Negeri Sembilan" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:18 -msgid "Pahang" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:19 -msgid "Perak" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:20 -msgid "Perlis" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:21 -msgid "Pulau Pinang" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:22 -msgid "Sabah" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:23 -msgid "Sarawak" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:24 -msgid "Selangor" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:25 -msgid "Terengganu" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:26 -msgid "W.P. Kuala Lumpur" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:27 -msgid "W.P. Labuan" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:28 -msgid "W.P. Putrajaya" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:13 -msgid "" -"Amnat Charoen (อำนาจเจร" -"ิญ)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:14 -msgid "Ang Thong (อ่างทอง)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:15 -msgid "" -"Ayutthaya (พระนครศรี" -"อยุธยา)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:16 -msgid "" -"Bangkok (กรุงเทพมห" -"านคร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:17 -msgid "Bueng Kan (บึงกาฬ)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:18 -msgid "" -"Buri Ram (บุรีรัมย์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:19 -msgid "" -"Chachoengsao (ฉะเชิงเทร" -"า)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:20 -msgid "Chai Nat (ชัยนาท)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:21 -msgid "Chaiyaphum (ชัยภูมิ)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:22 -msgid "Chanthaburi (จันทบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:23 -msgid "" -"Chiang Mai (เชียงใหม่)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:24 -msgid "Chiang Rai (เชียงราย)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:25 -msgid "Chonburi (ชลบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:26 -msgid "Chumphon (ชุมพร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:27 -msgid "" -"Kalasin (กาฬสินธุ์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:28 -msgid "" -"Kamphaeng Phet (กำแพงเพช" -"ร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:29 -msgid "" -"Kanchanaburi (กาญจนบุร" -"ี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:30 -msgid "Khon Kaen (ขอนแก่น)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:31 -msgid "Krabi (กระบี่)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:32 -msgid "Lampang (ลำปาง)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:33 -msgid "Lamphun (ลำพูน)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:34 -msgid "Loei (เลย)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:35 -msgid "Lopburi (ลพบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:36 -msgid "" -"Mae Hong Son (แม่ฮ่องสอ" -"น)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:37 -msgid "" -"Maha Sarakham (มหาสารคา" -"ม)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:38 -msgid "Mukdahan (มุกดาหาร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:39 -msgid "Nakhon Nayok (นครนายก)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:40 -msgid "Nakhon Pathom (นครปฐม)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:41 -msgid "Nakhon Phanom (นครพนม)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:42 -msgid "" -"Nakhon Ratchasima (นครราชสี" -"มา)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:43 -msgid "" -"Nakhon Sawan (นครสวรรค" -"์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:44 -msgid "" -"Nakhon Si Thammarat (นครศรีธร" -"รมราช)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:45 -msgid "Nan (น่าน)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:46 -msgid "Narathiwat (นราธิวาส)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:47 -msgid "" -"Nong Bua Lam Phu (หนองบัวล" -"ำภู)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:48 -msgid "Nong Khai (หนองคาย)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:49 -msgid "Nonthaburi (นนทบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:50 -msgid "Pathum Thani (ปทุมธานี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:51 -msgid "Pattani (ปัตตานี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:52 -msgid "Phang Nga (พังงา)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:53 -msgid "Phatthalung (พัทลุง)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:54 -msgid "Phayao (พะเยา)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:55 -msgid "" -"Phetchabun (เพชรบูรณ์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:56 -msgid "Phetchaburi (เพชรบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:57 -msgid "Phichit (พิจิตร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:58 -msgid "Phitsanulok (พิษณุโลก)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:59 -msgid "Phrae (แพร่)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:60 -msgid "Phuket (ภูเก็ต)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:61 -msgid "" -"Prachin Buri (ปราจีนบุร" -"ี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:62 -msgid "" -"Prachuap Khiri Khan (ประจวบคี" -"รีขันธ์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:63 -msgid "Ranong (ระนอง)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:64 -msgid "Ratchaburi (ราชบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:65 -msgid "Rayong (ระยอง)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:66 -msgid "Roi Et (ร้อยเอ็ด)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:67 -msgid "Sa Kaeo (สระแก้ว)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:68 -msgid "Sakon Nakhon (สกลนคร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:69 -msgid "" -"Samut Prakan (สมุทรปราก" -"าร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:70 -msgid "" -"Samut Sakhon (สมุทรสาค" -"ร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:71 -msgid "" -"Samut Songkhram (สมุทรสงค" -"ราม)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:72 -msgid "Saraburi (สระบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:73 -msgid "Satun (สตูล)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:74 -msgid "" -"Sing Buri (สิงห์บุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:75 -msgid "Sisaket (ศรีสะเกษ)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:76 -msgid "Songkhla (สงขลา)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:77 -msgid "Sukhothai (สุโขทัย)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:78 -msgid "" -"Suphan Buri (สุพรรณบุร" -"ี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:79 -msgid "" -"Surat Thani (สุราษฎร์ธ" -"านี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:80 -msgid "Surin (สุรินทร์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:81 -msgid "Tak (ตาก)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:82 -msgid "Trang (ตรัง)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:83 -msgid "Trat (ตราด)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:84 -msgid "" -"Ubon Ratchathani (อุบลราชธ" -"านี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:85 -msgid "Udon Thani (อุดรธานี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:86 -msgid "" -"Uthai Thani (อุทัยธานี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:87 -msgid "" -"Uttaradit (อุตรดิตถ์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:88 -msgid "Yala (ยะลา)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:89 -msgid "Yasothon (ยโสธร)" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:13 -msgid "Alabama" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:14 -msgid "Alaska" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:15 -msgid "Arizona" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:16 -msgid "Arkansas" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:17 -msgid "California" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:18 -msgid "Colorado" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:19 -msgid "Connecticut" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:20 -msgid "Delaware" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:21 -msgid "District Of Columbia" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:22 -msgid "Florida" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:23 includes/class-wc-countries.php:118 -msgid "Georgia" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:24 -msgid "Hawaii" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:25 -msgid "Idaho" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:26 -msgid "Illinois" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:27 -msgid "Indiana" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:28 -msgid "Iowa" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:29 -msgid "Kansas" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:30 -msgid "Kentucky" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:31 -msgid "Louisiana" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:32 -msgid "Maine" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:33 -msgid "Maryland" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:34 -msgid "Massachusetts" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:35 -msgid "Michigan" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:36 -msgid "Minnesota" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:37 -msgid "Mississippi" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:38 -msgid "Missouri" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:39 -msgid "Montana" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:40 -msgid "Nebraska" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:41 -msgid "Nevada" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:42 -msgid "New Hampshire" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:43 -msgid "New Jersey" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:44 -msgid "New Mexico" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:45 -msgid "New York" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:46 -msgid "North Carolina" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:47 -msgid "North Dakota" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:48 -msgid "Ohio" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:49 -msgid "Oklahoma" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:50 -msgid "Oregon" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:51 -msgid "Pennsylvania" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:52 -msgid "Rhode Island" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:53 -msgid "South Carolina" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:54 -msgid "South Dakota" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:55 -msgid "Tennessee" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:56 -msgid "Texas" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:57 -msgid "Utah" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:58 -msgid "Vermont" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:59 -msgid "Virginia" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:60 -msgid "Washington" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:61 -msgid "West Virginia" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:62 -msgid "Wisconsin" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:63 -msgid "Wyoming" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:64 -msgid "Armed Forces (AA)" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:65 -msgid "Armed Forces (AE)" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:66 -msgid "Armed Forces (AP)" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:67 -msgid "American Samoa" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:68 -msgid "Guam" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:69 -msgid "Northern Mariana Islands" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:70 -msgid "Puerto Rico" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:71 -msgid "US Minor Outlying Islands" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:72 -msgid "US Virgin Islands" -msgstr "" - -# @ woocommerce -#: i18n/states/ZA.php:13 -msgid "Eastern Cape" -msgstr "" - -# @ woocommerce -#: i18n/states/ZA.php:14 -msgid "Free State" -msgstr "" - -# @ woocommerce -#: i18n/states/ZA.php:15 -msgid "Gauteng" -msgstr "" - -# @ woocommerce -#: i18n/states/ZA.php:16 -msgid "KwaZulu-Natal" -msgstr "" - -# @ woocommerce -#: i18n/states/ZA.php:17 -msgid "Limpopo" -msgstr "" - -# @ woocommerce -#: i18n/states/ZA.php:18 -msgid "Mpumalanga" -msgstr "" - -# @ woocommerce -#: i18n/states/ZA.php:19 -msgid "Northern Cape" -msgstr "" - -# @ woocommerce -#: i18n/states/ZA.php:20 -msgid "North West" -msgstr "" - -# @ woocommerce -#: i18n/states/ZA.php:21 -msgid "Western Cape" -msgstr "" - -#: includes/class-wc-cache-helper.php:99 -#, php-format -msgid "" -"In order for database caching to work with WooCommerce you " -"must add _wc_session_ to the \"Ignored Query Strings\" option " -"in W3 Total Cache settings here." -msgstr "" - -#: includes/class-wc-cart.php:407 -msgid "An item which is no longer available was removed from your cart." -msgstr "Продукт който вече не е наличен, беше премахнат от вашата кошница." - -# @ woocommerce -#: includes/class-wc-cart.php:441 includes/class-wc-cart.php:460 -#: includes/class-wc-cart.php:469 -#, php-format -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -"Съжаляваме, нямаме достатъчно \"%s\" в наличност за да изпълним вашата " -"поръчка (%s налични. Моля редактирайте кошницата си отново. Извиняваме се за " -"всякакво създадено неудобство." - -# @ woocommerce -#: includes/class-wc-cart.php:504 -#, php-format -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfill your order right " -"now. Please try again in %d minutes or edit your cart and try again. We " -"apologise for any inconvenience caused." -msgstr "" -"Съжаляваме, нямаме достатъчно \"%s\" налично за да изпълним поръчката ви. " -"Моля опитайте след %d минути или редактирайте поръчката си и опитайте отново " -"Съжаляваме за причинаното неудобство." - -# @ woocommerce -#: includes/class-wc-cart.php:514 -#, php-format -msgid "" -"Sorry, \"%s\" is not in stock. Please edit your cart and try again. We " -"apologise for any inconvenience caused." -msgstr "" -"Съжаляваме, \"%s\" не е налично за да изпълним поръчката ви. Моля " -"редактирайте поръчката си и опитайте отново. Съжаляваме за причинаното " -"неудобство." - -# @ woocommerce -#: includes/class-wc-cart.php:813 -#, php-format -msgid "Sorry, "%s" cannot be purchased." -msgstr "Съжаляваме, "%s", но не може да бъде поръчван." - -# @ woocommerce -#: includes/class-wc-cart.php:820 -#, php-format -msgid "" -"You cannot add "%s" to the cart because the product is out of " -"stock." -msgstr "Не може да добавите "%s" към кошницата, защото е изчерпан." - -# @ woocommerce -#: includes/class-wc-cart.php:825 -#, php-format -msgid "" -"You cannot add that amount of "%s" to the cart because there is " -"not enough stock (%s remaining)." -msgstr "" -"Не може да добавите това количество от "%s" към кошницата, защото " -"няма достатъчно налично. Имаме само %s налични." - -# @ woocommerce -#: includes/class-wc-cart.php:837 includes/class-wc-cart.php:851 -#: includes/class-wc-cart.php:859 includes/wc-cart-functions.php:99 -#: templates/cart/mini-cart.php:64 -msgid "View Cart →" -msgstr "Преглед кошница →" - -# @ woocommerce -#: includes/class-wc-cart.php:837 -#, php-format -msgid "You cannot add another "%s" to your cart." -msgstr "Не може да добавите друг "%s" към вашата кошница" - -# @ woocommerce -#: includes/class-wc-cart.php:851 includes/class-wc-cart.php:859 -#, php-format -msgid "" -"%s You cannot add that amount to the " -"cart — we have %s in stock and you already have %s in your cart." -msgstr "" -"%s Не може да добавите това количество " -"към кошницата — имаме %s налични, а вие вече имате %s в кошницата." - -# @ woocommerce -#: includes/class-wc-cart.php:1456 includes/class-wc-order.php:795 -#: includes/class-wc-product-variable.php:247 -#: includes/class-wc-product-variable.php:253 -#: includes/class-wc-product-variation.php:312 -#: includes/abstracts/abstract-wc-product.php:897 -#: includes/abstracts/abstract-wc-product.php:903 -msgid "Free!" -msgstr "Безплатно!" - -# @ woocommerce -#: includes/class-wc-checkout.php:99 -msgid "Account username" -msgstr "Потребителско име" - -# @ woocommerce -#: includes/class-wc-checkout.php:101 -msgctxt "placeholder" -msgid "Username" -msgstr "Потребител" - -# @ woocommerce -#: includes/class-wc-checkout.php:108 -msgid "Account password" -msgstr "Парола" - -# @ woocommerce -#: includes/class-wc-checkout.php:110 -msgctxt "placeholder" -msgid "Password" -msgstr "Парола" - -# @ woocommerce -#: includes/class-wc-checkout.php:118 -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:97 -msgid "Order Notes" -msgstr "Бележки към поръчката" - -# @ woocommerce -#: includes/class-wc-checkout.php:119 -msgctxt "placeholder" -msgid "Notes about your order, e.g. special notes for delivery." -msgstr "Бележки по доставката, пр. специални указания за доставка." - -# @ woocommerce -#: includes/class-wc-checkout.php:178 -#, php-format -msgid "Order – %s" -msgstr "Поръчка – %s" - -# @ woocommerce -#: includes/class-wc-checkout.php:178 -msgctxt "Order date parsed by strftime" -msgid "%b %d, %Y @ %I:%M %p" -msgstr "%b %d, %Y @ %I:%M %p" - -# @ woocommerce -#: includes/class-wc-checkout.php:286 -msgid "Backordered" -msgstr "Продадена без наличност" - -# @ woocommerce -#: includes/class-wc-checkout.php:410 -#, php-format -msgid "" -"Sorry, your session has expired. Return to homepage →" -msgstr "" -"Съжаляваме, сесията ви е изтелка. Върнете се към началната " -"страница →" - -# @ woocommerce -#: includes/class-wc-checkout.php:485 includes/class-wc-form-handler.php:81 -msgid "is a required field." -msgstr "е задължително поле." - -# @ woocommerce -#: includes/class-wc-checkout.php:497 includes/class-wc-form-handler.php:91 -#: includes/shortcodes/class-wc-shortcode-cart.php:52 -msgid "Please enter a valid postcode/ZIP." -msgstr "Моля, въведете валиден пощенски код." - -# @ woocommerce -#: includes/class-wc-checkout.php:506 includes/class-wc-form-handler.php:100 -msgid "is not a valid phone number." -msgstr "не е валиден телефонен номер" - -# @ woocommerce -#: includes/class-wc-checkout.php:512 includes/class-wc-form-handler.php:106 -msgid "is not a valid email address." -msgstr "е невалиден email адрес." - -# @ woocommerce -#: includes/class-wc-checkout.php:527 -msgid "is not valid. Please enter one of the following:" -msgstr "не е валиден. Моля въведете едно от изброените:" - -# @ woocommerce -#: includes/class-wc-checkout.php:572 -msgid "You must accept our Terms & Conditions." -msgstr "Трябва да приемете Условията за ползване." - -#: includes/class-wc-checkout.php:577 -#, php-format -msgid "" -"Unfortunately we do not ship to %s. Please enter an " -"alternative shipping address." -msgstr "" -"За съжаление не доставяме до %s. Моля въведете алтернативен " -"адрес." - -# @ woocommerce -#: includes/class-wc-checkout.php:585 -msgid "Invalid shipping method." -msgstr "Невалиден метод за доставка." - -# @ woocommerce -#: includes/class-wc-checkout.php:598 -msgid "Invalid payment method." -msgstr "Невалиден метод за плащане." - -# @ woocommerce -#: includes/class-wc-comments.php:111 -msgid "You have taken too long. Please go back and refresh the page." -msgstr "Измина прекалено много време. Моля, върнете се и опреснете страницата." - -# @ woocommerce -#: includes/class-wc-comments.php:114 -msgid "Please rate the product." -msgstr "Моля, оценете този продукт." - -# @ woocommerce -#: includes/class-wc-countries.php:37 -msgid "Afghanistan" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:38 -msgid "Åland Islands" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:39 -msgid "Albania" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:40 -msgid "Algeria" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:41 -msgid "Andorra" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:42 -msgid "Angola" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:43 -msgid "Anguilla" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:44 -msgid "Antarctica" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:45 -msgid "Antigua and Barbuda" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:46 -msgid "Argentina" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:47 -msgid "Armenia" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:48 -msgid "Aruba" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:49 -msgid "Australia" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:50 -msgid "Austria" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:51 -msgid "Azerbaijan" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:52 -msgid "Bahamas" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:53 -msgid "Bahrain" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:54 -msgid "Bangladesh" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:55 -msgid "Barbados" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:56 -msgid "Belarus" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:57 -msgid "Belgium" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:58 -msgid "Belau" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:59 -msgid "Belize" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:60 -msgid "Benin" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:61 -msgid "Bermuda" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:62 -msgid "Bhutan" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:63 -msgid "Bolivia" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:64 -msgid "Bonaire, Saint Eustatius and Saba" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:65 -msgid "Bosnia and Herzegovina" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:66 -msgid "Botswana" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:67 -msgid "Bouvet Island" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:68 -msgid "Brazil" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:69 -msgid "British Indian Ocean Territory" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:70 -msgid "British Virgin Islands" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:71 -msgid "Brunei" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:72 -msgid "Bulgaria" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:73 -msgid "Burkina Faso" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:74 -msgid "Burundi" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:75 -msgid "Cambodia" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:76 -msgid "Cameroon" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:77 -msgid "Canada" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:78 -msgid "Cape Verde" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:79 -msgid "Cayman Islands" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:80 -msgid "Central African Republic" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:81 -msgid "Chad" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:82 -msgid "Chile" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:83 -msgid "China" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:84 -msgid "Christmas Island" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:85 -msgid "Cocos (Keeling) Islands" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:86 -msgid "Colombia" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:87 -msgid "Comoros" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:88 -msgid "Congo (Brazzaville)" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:89 -msgid "Congo (Kinshasa)" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:90 -msgid "Cook Islands" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:91 -msgid "Costa Rica" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:92 -msgid "Croatia" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:93 -msgid "Cuba" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:94 -msgid "CuraÇao" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:95 -msgid "Cyprus" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:96 -msgid "Czech Republic" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:97 -msgid "Denmark" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:98 -msgid "Djibouti" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:99 -msgid "Dominica" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:100 -msgid "Dominican Republic" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:101 -msgid "Ecuador" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:102 -msgid "Egypt" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:103 -msgid "El Salvador" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:104 -msgid "Equatorial Guinea" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:105 -msgid "Eritrea" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:106 -msgid "Estonia" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:107 -msgid "Ethiopia" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:108 -msgid "Falkland Islands" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:109 -msgid "Faroe Islands" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:110 -msgid "Fiji" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:111 -msgid "Finland" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:112 -msgid "France" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:113 -msgid "French Guiana" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:114 -msgid "French Polynesia" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:115 -msgid "French Southern Territories" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:116 -msgid "Gabon" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:117 -msgid "Gambia" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:119 -msgid "Germany" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:120 -msgid "Ghana" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:121 -msgid "Gibraltar" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:122 -msgid "Greece" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:123 -msgid "Greenland" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:124 -msgid "Grenada" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:125 -msgid "Guadeloupe" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:126 -msgid "Guatemala" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:127 -msgid "Guernsey" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:128 -msgid "Guinea" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:129 -msgid "Guinea-Bissau" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:130 -msgid "Guyana" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:131 -msgid "Haiti" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:132 -msgid "Heard Island and McDonald Islands" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:133 -msgid "Honduras" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:134 -msgid "Hong Kong" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:135 -msgid "Hungary" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:136 -msgid "Iceland" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:137 -msgid "India" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:138 -msgid "Indonesia" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:139 -msgid "Iran" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:140 -msgid "Iraq" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:141 -msgid "Republic of Ireland" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:142 -msgid "Isle of Man" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:143 -msgid "Israel" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:144 -msgid "Italy" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:145 -msgid "Ivory Coast" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:146 -msgid "Jamaica" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:147 -msgid "Japan" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:148 -msgid "Jersey" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:149 -msgid "Jordan" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:150 -msgid "Kazakhstan" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:151 -msgid "Kenya" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:152 -msgid "Kiribati" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:153 -msgid "Kuwait" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:154 -msgid "Kyrgyzstan" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:155 -msgid "Laos" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:156 -msgid "Latvia" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:157 -msgid "Lebanon" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:158 -msgid "Lesotho" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:159 -msgid "Liberia" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:160 -msgid "Libya" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:161 -msgid "Liechtenstein" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:162 -msgid "Lithuania" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:163 -msgid "Luxembourg" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:164 -msgid "Macao S.A.R., China" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:165 -msgid "Macedonia" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:166 -msgid "Madagascar" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:167 -msgid "Malawi" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:168 -msgid "Malaysia" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:169 -msgid "Maldives" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:170 -msgid "Mali" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:171 -msgid "Malta" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:172 -msgid "Marshall Islands" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:173 -msgid "Martinique" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:174 -msgid "Mauritania" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:175 -msgid "Mauritius" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:176 -msgid "Mayotte" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:177 -msgid "Mexico" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:178 -msgid "Micronesia" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:179 -msgid "Moldova" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:180 -msgid "Monaco" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:181 -msgid "Mongolia" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:182 -msgid "Montenegro" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:183 -msgid "Montserrat" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:184 -msgid "Morocco" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:185 -msgid "Mozambique" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:186 -msgid "Myanmar" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:187 -msgid "Namibia" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:188 -msgid "Nauru" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:189 -msgid "Nepal" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:190 -msgid "Netherlands" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:191 -msgid "Netherlands Antilles" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:192 -msgid "New Caledonia" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:193 -msgid "New Zealand" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:194 -msgid "Nicaragua" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:195 -msgid "Niger" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:196 -msgid "Nigeria" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:197 -msgid "Niue" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:198 -msgid "Norfolk Island" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:199 -msgid "North Korea" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:200 -msgid "Norway" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:201 -msgid "Oman" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:202 -msgid "Pakistan" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:203 -msgid "Palestinian Territory" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:204 -msgid "Panama" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:205 -msgid "Papua New Guinea" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:206 -msgid "Paraguay" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:207 -msgid "Peru" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:208 -msgid "Philippines" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:209 -msgid "Pitcairn" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:210 -msgid "Poland" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:211 -msgid "Portugal" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:212 -msgid "Qatar" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:213 -msgid "Reunion" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:214 -msgid "Romania" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:215 -msgid "Russia" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:216 -msgid "Rwanda" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:217 -msgid "Saint Barthélemy" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:218 -msgid "Saint Helena" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:219 -msgid "Saint Kitts and Nevis" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:220 -msgid "Saint Lucia" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:221 -msgid "Saint Martin (French part)" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:222 -msgid "Saint Martin (Dutch part)" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:223 -msgid "Saint Pierre and Miquelon" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:224 -msgid "Saint Vincent and the Grenadines" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:225 -msgid "San Marino" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:226 -msgid "São Tomé and Príncipe" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:227 -msgid "Saudi Arabia" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:228 -msgid "Senegal" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:229 -msgid "Serbia" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:230 -msgid "Seychelles" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:231 -msgid "Sierra Leone" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:232 -msgid "Singapore" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:233 -msgid "Slovakia" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:234 -msgid "Slovenia" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:235 -msgid "Solomon Islands" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:236 -msgid "Somalia" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:237 -msgid "South Africa" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:238 -msgid "South Georgia/Sandwich Islands" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:239 -msgid "South Korea" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:240 -msgid "South Sudan" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:241 -msgid "Spain" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:242 -msgid "Sri Lanka" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:243 -msgid "Sudan" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:244 -msgid "Suriname" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:245 -msgid "Svalbard and Jan Mayen" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:246 -msgid "Swaziland" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:247 -msgid "Sweden" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:248 -msgid "Switzerland" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:249 -msgid "Syria" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:250 -msgid "Taiwan" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:251 -msgid "Tajikistan" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:252 -msgid "Tanzania" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:253 -msgid "Thailand" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:254 -msgid "Timor-Leste" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:255 -msgid "Togo" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:256 -msgid "Tokelau" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:257 -msgid "Tonga" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:258 -msgid "Trinidad and Tobago" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:259 -msgid "Tunisia" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:260 -msgid "Turkey" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:261 -msgid "Turkmenistan" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:262 -msgid "Turks and Caicos Islands" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:263 -msgid "Tuvalu" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:264 -msgid "Uganda" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:265 -msgid "Ukraine" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:266 -msgid "United Arab Emirates" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:267 -msgid "United Kingdom (UK)" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:268 -msgid "United States (US)" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:269 -msgid "Uruguay" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:270 -msgid "Uzbekistan" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:271 -msgid "Vanuatu" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:272 -msgid "Vatican" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:273 -msgid "Venezuela" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:274 -msgid "Vietnam" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:275 -msgid "Wallis and Futuna" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:276 -msgid "Western Sahara" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:277 -msgid "Western Samoa" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:278 -msgid "Yemen" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:279 -msgid "Zambia" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:280 -msgid "Zimbabwe" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:486 -msgid "to the" -msgstr "към" - -# @ woocommerce -#: includes/class-wc-countries.php:487 -msgid "to" -msgstr "към" - -# @ woocommerce -#: includes/class-wc-countries.php:500 -msgid "the" -msgstr "" - -# @ woocommerce -#: includes/class-wc-countries.php:512 -msgid "VAT" -msgstr "ДДС" - -# @ woocommerce -#: includes/class-wc-countries.php:512 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:46 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:118 -#: includes/admin/settings/class-wc-settings-tax.php:25 -#: includes/admin/settings/class-wc-settings-tax.php:548 -#: includes/admin/settings/class-wc-settings-tax.php:641 -msgid "Tax" -msgstr "Такса" - -# @ woocommerce -#: includes/class-wc-countries.php:525 -msgid "(incl. VAT)" -msgstr "(вкл. ДДС)" - -# @ woocommerce -#: includes/class-wc-countries.php:525 -msgid "(incl. tax)" -msgstr "(вкл. такса)" - -# @ woocommerce -#: includes/class-wc-countries.php:538 -msgid "(ex. VAT)" -msgstr "(без ДДС)" - -# @ woocommerce -#: includes/class-wc-countries.php:538 -msgid "(ex. tax)" -msgstr "(без такса)" - -# @ woocommerce -#: includes/class-wc-countries.php:720 -#: includes/admin/class-wc-admin-profile.php:74 -#: includes/admin/class-wc-admin-profile.php:123 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:57 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:104 -msgid "Country" -msgstr "Държава" - -# @ woocommerce -#: includes/class-wc-countries.php:725 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:29 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:76 -msgid "First Name" -msgstr "Име" - -# @ woocommerce -#: includes/class-wc-countries.php:730 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:33 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:80 -msgid "Last Name" -msgstr "Фамилия" - -# @ woocommerce -#: includes/class-wc-countries.php:736 -msgid "Company Name" -msgstr "Име фирма" - -# @ woocommerce -#: includes/class-wc-countries.php:740 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:188 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:190 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:267 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:269 -msgid "Address" -msgstr "Адрес" - -# @ woocommerce -#: includes/class-wc-countries.php:741 -msgctxt "placeholder" -msgid "Street address" -msgstr "Улица" - -# @ woocommerce -#: includes/class-wc-countries.php:746 -msgctxt "placeholder" -msgid "Apartment, suite, unit etc. (optional)" -msgstr "Апартамент, номер, мерна единица и др. (по желание)" - -# @ woocommerce -#: includes/class-wc-countries.php:751 includes/class-wc-countries.php:752 -msgid "Town / City" -msgstr "Град" - -# @ woocommerce -#: includes/class-wc-countries.php:758 includes/class-wc-countries.php:759 -msgid "State / County" -msgstr "Страна" - -# @ woocommerce -#: includes/class-wc-countries.php:765 includes/class-wc-countries.php:766 -#: templates/cart/shipping-calculator.php:80 -msgid "Postcode / Zip" -msgstr "Пощенски код" - -# @ woocommerce -#: includes/class-wc-countries.php:809 includes/class-wc-countries.php:819 -#: includes/class-wc-countries.php:839 includes/class-wc-countries.php:900 -#: includes/class-wc-countries.php:919 includes/class-wc-countries.php:947 -#: includes/class-wc-countries.php:997 includes/class-wc-countries.php:1021 -#: includes/class-wc-countries.php:1062 -msgid "Province" -msgstr "Провинция" - -# @ woocommerce -#: includes/class-wc-countries.php:825 -msgid "Canton" -msgstr "Кантон" - -# @ woocommerce -#: includes/class-wc-countries.php:834 includes/class-wc-countries.php:1003 -msgid "Municipality" -msgstr "Община" - -# @ woocommerce -#: includes/class-wc-countries.php:887 -msgid "Town / District" -msgstr "Квартал" - -# @ woocommerce -#: includes/class-wc-countries.php:890 -msgid "Region" -msgstr "Район" - -# @ woocommerce -#: includes/class-wc-countries.php:895 includes/class-wc-countries.php:1037 -msgid "County" -msgstr "Държава" - -# @ woocommerce -#: includes/class-wc-countries.php:1026 -msgid "Zip" -msgstr "Код" - -# @ woocommerce -#: includes/class-wc-countries.php:1029 -msgid "State" -msgstr "Област (Щат)" - -# @ woocommerce -#: includes/class-wc-countries.php:1034 -#: includes/admin/class-wc-admin-profile.php:66 -#: includes/admin/class-wc-admin-profile.php:115 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:53 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:100 -msgid "Postcode" -msgstr "Пощенски код" - -# @ woocommerce -#: includes/class-wc-countries.php:1142 -msgid "Email Address" -msgstr "E-mail" - -# @ woocommerce -#: includes/class-wc-countries.php:1148 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:70 -msgid "Phone" -msgstr "Телефон" - -# @ woocommerce -#: includes/class-wc-coupon.php:566 -msgid "Coupon code applied successfully." -msgstr "Купонът е приложен успешно." - -# @ woocommerce -#: includes/class-wc-coupon.php:569 -msgid "Coupon code removed successfully." -msgstr "Купонът бе премахнат успешно." - -# @ woocommerce -#: includes/class-wc-coupon.php:590 -msgid "Coupon is not valid." -msgstr "Купонът е невалиден." - -# @ woocommerce -#: includes/class-wc-coupon.php:593 includes/class-wc-coupon.php:643 -msgid "Coupon does not exist!" -msgstr "Купона не съществува!" - -# @ woocommerce -#: includes/class-wc-coupon.php:596 -#, php-format -msgid "" -"Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from " -"your order." -msgstr "" -"Съжаяваме, купона \"%s\" е невалиден и беше премахнат от вашата поръчка." - -# @ woocommerce -#: includes/class-wc-coupon.php:599 -#, php-format -msgid "" -"Sorry, it seems the coupon \"%s\" is not yours - it has now been removed " -"from your order." -msgstr "" -"Съжаляваме, изглежда купона \"%s\" не е ваш и беше премахнат от вашата " -"поръчка." - -# @ woocommerce -#: includes/class-wc-coupon.php:602 -msgid "Coupon code already applied!" -msgstr "Купонът е вече приложен!" - -# @ woocommerce -#: includes/class-wc-coupon.php:605 -#, php-format -msgid "" -"Sorry, coupon \"%s\" has already been applied and cannot be used in " -"conjunction with other coupons." -msgstr "" -"Този купон \"%s\" е вече приложен и не може да бъде използван заедно с други " -"купони." - -# @ woocommerce -#: includes/class-wc-coupon.php:608 -msgid "Coupon usage limit has been reached." -msgstr "Лимита за употреба на купона е достигнат." - -# @ woocommerce -#: includes/class-wc-coupon.php:611 -msgid "This coupon has expired." -msgstr "Този купон е изтекъл." - -# @ woocommerce -#: includes/class-wc-coupon.php:614 -#, php-format -msgid "The minimum spend for this coupon is %s." -msgstr "Минималната сума на поръчката за този купон е %s." - -# @ woocommerce -#: includes/class-wc-coupon.php:617 -msgid "Sorry, this coupon is not applicable to your cart contents." -msgstr "" -"За съжаление този купон не може да бъде използван за продуктите от вашата " -"поръчка." - -# @ woocommerce -#: includes/class-wc-coupon.php:620 -msgid "Sorry, this coupon is not valid for sale items." -msgstr "Съжаляваме, този купон не е валиден за продуктите в разпродажба." - -# @ woocommerce -#: includes/class-wc-coupon.php:646 -msgid "Please enter a coupon code." -msgstr "Моля, въведете код на купона." - -# @ woocommerce -#: includes/class-wc-customer.php:629 includes/class-wc-customer.php:641 -#, php-format -msgid "File %d" -msgstr "Файл %d" - -# @ woocommerce -#: includes/class-wc-download-handler.php:37 -msgid "Invalid email address." -msgstr "Невалиден email адрес." - -# @ woocommerce -#: includes/class-wc-download-handler.php:37 -#: includes/class-wc-download-handler.php:61 -#: includes/class-wc-download-handler.php:81 -#: includes/class-wc-download-handler.php:87 -#: includes/class-wc-download-handler.php:91 -#: includes/class-wc-download-handler.php:94 -#: includes/class-wc-download-handler.php:137 -#: includes/class-wc-download-handler.php:267 -msgid "Go to homepage →" -msgstr "Обратно към началната страница →" - -# @ woocommerce -#: includes/class-wc-download-handler.php:61 -msgid "Invalid download." -msgstr "Невалидно сваляне." - -# @ woocommerce -#: includes/class-wc-download-handler.php:73 -msgid "You must be logged in to download files." -msgstr "Трябва да влезете в системата за да сваляте файлове." - -# @ woocommerce -#: includes/class-wc-download-handler.php:73 -msgid "Login →" -msgstr "Вход →" - -# @ woocommerce -#: includes/class-wc-download-handler.php:73 -msgid "Log in to Download Files" -msgstr "" - -# @ woocommerce -#: includes/class-wc-download-handler.php:76 -msgid "This is not your download link." -msgstr "Това не е валиден линк за сваляне." - -# @ woocommerce -#: includes/class-wc-download-handler.php:81 -msgid "Product no longer exists." -msgstr "Продукта вече не съществува" - -# @ woocommerce -#: includes/class-wc-download-handler.php:87 -#: includes/class-wc-form-handler.php:443 -#: includes/shortcodes/class-wc-shortcode-checkout.php:87 -#: includes/shortcodes/class-wc-shortcode-checkout.php:168 -#: includes/shortcodes/class-wc-shortcode-my-account.php:102 -#: includes/shortcodes/class-wc-shortcode-view-order.php:50 -msgid "Invalid order." -msgstr "Невалидна поръчка." - -# @ woocommerce -#: includes/class-wc-download-handler.php:91 -msgid "Sorry, you have reached your download limit for this file" -msgstr "Съжаляваме, достигнахте лимита за сваляне на този файл" - -# @ woocommerce -#: includes/class-wc-download-handler.php:94 -msgid "Sorry, this download has expired" -msgstr "Съжаляваме, това сваляне е изтекло" - -# @ woocommerce -#: includes/class-wc-download-handler.php:137 -msgid "No file defined" -msgstr "Няма зададен файл." - -# @ woocommerce -#: includes/class-wc-download-handler.php:267 -msgid "File not found" -msgstr "Файла не е намерен" - -# @ woocommerce -#: includes/class-wc-emails.php:289 -msgid "Note" -msgstr "Бележка" - -# @ woocommerce -#: includes/class-wc-emails.php:325 -msgid "Product low in stock" -msgstr "Има малко останало количество от продукта" - -# @ woocommerce -#: includes/class-wc-emails.php:330 includes/class-wc-emails.php:362 -#: includes/class-wc-emails.php:406 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:1361 -#, php-format -msgid "Variation #%s of %s" -msgstr "Вариация #%s от %s" - -# @ woocommerce -#: includes/class-wc-emails.php:332 includes/class-wc-emails.php:364 -#: includes/class-wc-emails.php:408 -#, php-format -msgid "Product #%s - %s" -msgstr "Продукт #%s - %s" - -# @ woocommerce -#: includes/class-wc-emails.php:334 -msgid "is low in stock." -msgstr "е с малко количество." - -# @ woocommerce -#: includes/class-wc-emails.php:357 -msgid "Product out of stock" -msgstr "Не е налично" - -# @ woocommerce -#: includes/class-wc-emails.php:366 -msgid "is out of stock." -msgstr "не е налично." - -# @ woocommerce -#: includes/class-wc-emails.php:401 -msgid "Product Backorder" -msgstr "Продукт поръчан без наличност" - -# @ woocommerce -#: includes/class-wc-emails.php:411 -#, php-format -msgid "%s units of %s have been backordered in order %s." -msgstr "%s бройки от %s са върнати от поръчката %s." - -# @ woocommerce -#: includes/class-wc-form-handler.php:118 -msgid "Address changed successfully." -msgstr "Адресът беше променен успешно." - -# @ woocommerce -#: includes/class-wc-form-handler.php:166 -msgid "Please enter your name." -msgstr "Моля, въведете вашето име." - -# @ woocommerce -#: includes/class-wc-form-handler.php:169 -#: includes/wc-customer-functions.php:46 -msgid "Please provide a valid email address." -msgstr "Моля дайте валиден email адрес." - -# @ woocommerce -#: includes/class-wc-form-handler.php:172 -msgid "This email address is already registered." -msgstr "Този email вече се използва, моля изберете друг." - -# @ woocommerce -#: includes/class-wc-form-handler.php:175 -msgid "Please re-enter your password." -msgstr "Моля, въведете отново вашата парола." - -# @ woocommerce -#: includes/class-wc-form-handler.php:178 -#: includes/class-wc-form-handler.php:716 -msgid "Passwords do not match." -msgstr "Паролите не съвпадат." - -# @ woocommerce -#: includes/class-wc-form-handler.php:191 -msgid "Account details changed successfully." -msgstr "Данните на профила бяха променени успешно." - -# @ woocommerce -#: includes/class-wc-form-handler.php:297 -#: includes/class-wc-form-handler.php:344 -msgid "Cart updated." -msgstr "Кошницата е обновена." - -# @ woocommerce -#: includes/class-wc-form-handler.php:328 -#, php-format -msgid "You can only have 1 %s in your cart." -msgstr "Имате само 1 %s в кошницата." - -# @ woocommerce -#: includes/class-wc-form-handler.php:406 -msgid "The cart has been filled with the items from your previous order." -msgstr "Кошницата съдържа продукти от предишната ви поръчка." - -# @ woocommerce -#: includes/class-wc-form-handler.php:430 -msgid "Order cancelled by customer." -msgstr "Поръчката е канселирана от клиента." - -# @ woocommerce -#: includes/class-wc-form-handler.php:433 -msgid "Your order was cancelled." -msgstr "Вашата поръчка беше канселирана." - -# @ woocommerce -#: includes/class-wc-form-handler.php:439 -msgid "" -"Your order is no longer pending and could not be cancelled. Please contact " -"us if you need assistance." -msgstr "" -"Вашата поръчка вече не е в статус изчакване и не може да бъде отказана. " -"Моля, свържете се с нас, ако имате нужда от съдействие." - -# @ woocommerce -#: includes/class-wc-form-handler.php:480 -#: includes/class-wc-form-handler.php:538 -msgid "Please choose product options…" -msgstr "Моля, изберете опции на продукта…" - -# @ woocommerce -#: includes/class-wc-form-handler.php:571 -msgid "" -"Please choose the quantity of items you wish to add to your cart…" -msgstr "" -"Моля изберете наличност за продуктите които искате да добавите към " -"кошницата…" - -# @ woocommerce -#: includes/class-wc-form-handler.php:578 -msgid "Please choose a product to add to your cart…" -msgstr "Моля, изберете продукт за да го добавите във вашата кошница…" - -# @ woocommerce -#: includes/class-wc-form-handler.php:635 -#: includes/class-wc-form-handler.php:637 -#: includes/class-wc-form-handler.php:645 -msgid "Error" -msgstr "Грешка" - -# @ woocommerce -#: includes/class-wc-form-handler.php:635 -msgid "Username is required." -msgstr "Потребилтеското име е задължително." - -# @ woocommerce -#: includes/class-wc-form-handler.php:637 -msgid "Password is required." -msgstr "Паролата е задължителна." - -# @ woocommerce -#: includes/class-wc-form-handler.php:645 -msgid "A user could not be found with this email address." -msgstr "Не може да се намери потребител с този email адрес." - -# @ woocommerce -#: includes/class-wc-form-handler.php:668 -#, php-format -msgid "You are now logged in as %s" -msgstr "Вие сте влезли с %s." - -# @ woocommerce -#: includes/class-wc-form-handler.php:711 -msgid "Please enter your password." -msgstr "Моля, въведете парола." - -# @ woocommerce -#: includes/class-wc-form-handler.php:732 -msgid "Your password has been reset." -msgstr "Вашата парола беше рестартирана." - -# @ woocommerce -#: includes/class-wc-form-handler.php:732 -msgid "Log in" -msgstr "Вход" - -# @ woocommerce -#: includes/class-wc-form-handler.php:756 -#: includes/wc-customer-functions.php:107 -msgid "ERROR" -msgstr "ГРЕШКА" - -# @ woocommerce -#: includes/class-wc-form-handler.php:756 -msgid "Anti-spam field was filled in." -msgstr "Полето за спам проверка трябва да се попълни." - -# @ woocommerce -#: includes/class-wc-install.php:209 -msgctxt "page_slug" -msgid "shop" -msgstr "magazin" - -# @ woocommerce -#: includes/class-wc-install.php:210 -msgid "Shop" -msgstr "Магазин" - -# @ woocommerce -#: includes/class-wc-install.php:214 -msgctxt "page_slug" -msgid "cart" -msgstr "koshnica" - -# @ woocommerce -#: includes/class-wc-install.php:215 -#: includes/admin/views/html-admin-page-status-report.php:288 -#: includes/widgets/class-wc-widget-cart.php:29 -#: includes/widgets/class-wc-widget-cart.php:57 -msgid "Cart" -msgstr "Кошница" - -# @ woocommerce -#: includes/class-wc-install.php:219 -msgctxt "page_slug" -msgid "checkout" -msgstr "porachka" - -# @ woocommerce -#: includes/class-wc-install.php:220 -#: includes/admin/settings/class-wc-settings-checkout.php:25 -#: includes/admin/settings/class-wc-settings-checkout.php:78 -#: includes/admin/views/html-admin-page-status-report.php:292 -msgid "Checkout" -msgstr "Поръчка" - -# @ woocommerce -#: includes/class-wc-install.php:224 -msgctxt "page_slug" -msgid "my-account" -msgstr "moyat-profil" - -# @ woocommerce -#: includes/class-wc-install.php:422 -#: includes/admin/reports/class-wc-report-customer-list.php:22 -msgid "Customer" -msgstr "Клиент" - -# @ woocommerce -#: includes/class-wc-install.php:429 -msgid "Shop Manager" -msgstr "Управление на магазин" - -# @ woocommerce -#: includes/class-wc-install.php:663 -msgid "What's new:" -msgstr "Какво ново:" - -# @ woocommerce -#: includes/class-wc-order.php:130 -msgctxt "hash before order number" -msgid "#" -msgstr "#" - -# @ woocommerce -#: includes/class-wc-order.php:790 -#, php-format -msgid " %svia %s" -msgstr " %svia %s" - -# @ woocommerce -#: includes/class-wc-order.php:853 -msgid "Cart Subtotal:" -msgstr "Кошница" - -# @ woocommerce -#: includes/class-wc-order.php:859 -msgid "Cart Discount:" -msgstr "Намаления на кошницата:" - -# @ woocommerce -#: includes/class-wc-order.php:865 -msgid "Shipping:" -msgstr "Доставка:" - -# @ woocommerce -#: includes/class-wc-order.php:910 -msgid "Order Discount:" -msgstr "Намаление на поръчката:" - -# @ woocommerce -#: includes/class-wc-order.php:915 -msgid "Order Total:" -msgstr "Общо:" - -# @ woocommerce -#: includes/class-wc-order.php:933 includes/wc-template-functions.php:1138 -#, php-format -msgid "(Includes %s)" -msgstr "(Включително %s)" - -# @ woocommerce -#: includes/class-wc-order.php:1170 includes/class-wc-order.php:1171 -#: includes/admin/class-wc-admin-assets.php:65 -#: includes/admin/class-wc-admin-menus.php:47 -#: includes/admin/wc-admin-functions.php:19 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:45 -msgid "WooCommerce" -msgstr "WooCommerce" - -# @ woocommerce -#: includes/class-wc-order.php:1224 -#, php-format -msgid "Order status changed from %s to %s." -msgstr "Статуса на поръчкате е променен от %s на %s." - -# @ woocommerce -#: includes/class-wc-order.php:1485 -msgid "Order item stock reduced successfully." -msgstr "Наличността на продукта в поръчката е намалена успешно." - -# @ woocommerce -#: includes/class-wc-post-types.php:62 includes/class-wc-post-types.php:64 -#: includes/widgets/class-wc-widget-product-categories.php:30 -msgid "Product Categories" -msgstr "Категории продукти" - -# @ woocommerce -#: includes/class-wc-post-types.php:65 -msgid "Product Category" -msgstr "Категория на продукт" - -# @ woocommerce -#: includes/class-wc-post-types.php:66 -msgctxt "Admin menu name" -msgid "Categories" -msgstr "Категории" - -# @ woocommerce -#: includes/class-wc-post-types.php:67 -msgid "Search Product Categories" -msgstr "Търси в категориите продукти" - -# @ woocommerce -#: includes/class-wc-post-types.php:68 -msgid "All Product Categories" -msgstr "Всички категории" - -# @ woocommerce -#: includes/class-wc-post-types.php:69 -msgid "Parent Product Category" -msgstr "Родителска категория продукти" - -# @ woocommerce -#: includes/class-wc-post-types.php:70 -msgid "Parent Product Category:" -msgstr "Родителска категория продукти:" - -# @ woocommerce -#: includes/class-wc-post-types.php:71 -msgid "Edit Product Category" -msgstr "Редактирай категорията на продукта" - -# @ woocommerce -#: includes/class-wc-post-types.php:72 -msgid "Update Product Category" -msgstr "Обнови категорията на продукта" - -# @ woocommerce -#: includes/class-wc-post-types.php:73 -msgid "Add New Product Category" -msgstr "Добави нова продуктова категория" - -# @ woocommerce -#: includes/class-wc-post-types.php:74 -msgid "New Product Category Name" -msgstr "Име на новата продуктова категория" - -# @ woocommerce -#: includes/class-wc-post-types.php:85 -#: includes/admin/class-wc-admin-permalink-settings.php:65 -#: includes/updates/woocommerce-update-2.0.php:49 -msgctxt "slug" -msgid "product-category" -msgstr "категория" - -# @ woocommerce -#: includes/class-wc-post-types.php:97 includes/class-wc-post-types.php:99 -#: includes/widgets/class-wc-widget-product-tag-cloud.php:27 -msgid "Product Tags" -msgstr "Етикети на продукта" - -# @ woocommerce -#: includes/class-wc-post-types.php:100 -msgid "Product Tag" -msgstr "Етикет на продукт" - -# @ woocommerce -#: includes/class-wc-post-types.php:101 -msgctxt "Admin menu name" -msgid "Tags" -msgstr "Етикети" - -# @ woocommerce -#: includes/class-wc-post-types.php:102 -msgid "Search Product Tags" -msgstr "Търси в етикетите" - -# @ woocommerce -#: includes/class-wc-post-types.php:103 -msgid "All Product Tags" -msgstr "Всички продуктови етикети" - -# @ woocommerce -#: includes/class-wc-post-types.php:104 -msgid "Parent Product Tag" -msgstr "Етикет на родителски продукт" - -# @ woocommerce -#: includes/class-wc-post-types.php:105 -msgid "Parent Product Tag:" -msgstr "Етикет на родителски продукт:" - -# @ woocommerce -#: includes/class-wc-post-types.php:106 -msgid "Edit Product Tag" -msgstr "Редактирай продуктовия етикет" - -# @ woocommerce -#: includes/class-wc-post-types.php:107 -msgid "Update Product Tag" -msgstr "Обнови продуктовия етикет" - -# @ woocommerce -#: includes/class-wc-post-types.php:108 -msgid "Add New Product Tag" -msgstr "Добави нов продуктов етикет" - -# @ woocommerce -#: includes/class-wc-post-types.php:109 -msgid "New Product Tag Name" -msgstr "Име на новия продуктов етикет" - -# @ woocommerce -#: includes/class-wc-post-types.php:120 -#: includes/admin/class-wc-admin-permalink-settings.php:75 -#: includes/updates/woocommerce-update-2.0.php:50 -msgctxt "slug" -msgid "product-tag" -msgstr "продукт-етикет" - -# @ woocommerce -#: includes/class-wc-post-types.php:131 includes/class-wc-post-types.php:133 -msgid "Shipping Classes" -msgstr "Класове доставка" - -# @ woocommerce -#: includes/class-wc-post-types.php:134 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:528 -msgid "Shipping Class" -msgstr "Клас доставка" - -# @ woocommerce -#: includes/class-wc-post-types.php:135 -msgctxt "Admin menu name" -msgid "Shipping Classes" -msgstr "Класове на доставка" - -# @ woocommerce -#: includes/class-wc-post-types.php:136 -msgid "Search Shipping Classes" -msgstr "Търси клас доставка" - -# @ woocommerce -#: includes/class-wc-post-types.php:137 -msgid "All Shipping Classes" -msgstr "Всички класове на доставка" - -# @ woocommerce -#: includes/class-wc-post-types.php:138 -msgid "Parent Shipping Class" -msgstr "Родителски клас доставка" - -# @ woocommerce -#: includes/class-wc-post-types.php:139 -msgid "Parent Shipping Class:" -msgstr "Родителски клас доставка:" - -# @ woocommerce -#: includes/class-wc-post-types.php:140 -msgid "Edit Shipping Class" -msgstr "Редактирай класа на доставка" - -# @ woocommerce -#: includes/class-wc-post-types.php:141 -msgid "Update Shipping Class" -msgstr "Обнови класа на доставка" - -# @ woocommerce -#: includes/class-wc-post-types.php:142 -msgid "Add New Shipping Class" -msgstr "Добави нов клас доставка" - -# @ woocommerce -#: includes/class-wc-post-types.php:143 -msgid "New Shipping Class Name" -msgstr "Име на новия клас доставка" - -# @ woocommerce -#: includes/class-wc-post-types.php:191 -#, php-format -msgid "Search %s" -msgstr "Търсене %s" - -#: includes/class-wc-post-types.php:192 -#, php-format -msgid "All %s" -msgstr "Всички %s" - -# @ woocommerce -#: includes/class-wc-post-types.php:193 -#, php-format -msgid "Parent %s" -msgstr "Родител %s" - -# @ woocommerce -#: includes/class-wc-post-types.php:194 -#, php-format -msgid "Parent %s:" -msgstr "Родител %s:" - -# @ default -# @ woocommerce -#: includes/class-wc-post-types.php:195 -#, php-format -msgid "Edit %s" -msgstr "Редактиране %s" - -# @ woocommerce -#: includes/class-wc-post-types.php:196 -#, php-format -msgid "Update %s" -msgstr "Обновяване %s" - -# @ woocommerce -#: includes/class-wc-post-types.php:197 -#, php-format -msgid "Add New %s" -msgstr "Добавяне нов %s" - -# @ woocommerce -#: includes/class-wc-post-types.php:198 -#, php-format -msgid "New %s" -msgstr "Нов %s" - -# @ woocommerce -#: includes/class-wc-post-types.php:234 -#: includes/updates/woocommerce-update-2.0.php:58 -msgctxt "slug" -msgid "product" -msgstr "продукт" - -# @ woocommerce -#: includes/class-wc-post-types.php:240 -#: includes/admin/class-wc-admin-taxonomies.php:93 -#: includes/admin/class-wc-admin-taxonomies.php:183 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:97 -#: includes/admin/settings/class-wc-settings-products.php:25 -#: includes/admin/views/html-admin-page-addons.php:15 -#: includes/integrations/google-analytics/class-wc-google-analytics.php:273 -#: includes/integrations/google-analytics/class-wc-google-analytics.php:293 -#: includes/widgets/class-wc-widget-products.php:27 -msgid "Products" -msgstr "Продукти" - -# @ woocommerce -#: includes/class-wc-post-types.php:241 -#: includes/admin/class-wc-admin-permalink-settings.php:117 -#: includes/admin/reports/class-wc-report-stock.php:137 -#: includes/admin/views/html-email-template-preview.php:8 -#: templates/cart/cart.php:27 templates/checkout/form-pay.php:19 -#: templates/checkout/review-order.php:18 -#: templates/emails/admin-new-order.php:22 -#: templates/emails/customer-completed-order.php:23 -#: templates/emails/customer-invoice.php:27 -#: templates/emails/customer-note.php:27 -#: templates/emails/customer-processing-order.php:23 -#: templates/order/order-details.php:20 -msgid "Product" -msgstr "Продукт" - -# @ woocommerce -#: includes/class-wc-post-types.php:242 -msgctxt "Admin menu name" -msgid "Products" -msgstr "Продукти" - -# @ woocommerce -#: includes/class-wc-post-types.php:243 -msgid "Add Product" -msgstr "Добави продукт" - -# @ woocommerce -#: includes/class-wc-post-types.php:244 -msgid "Add New Product" -msgstr "Добави нов продукт" - -# @ default -# @ woocommerce -#: includes/class-wc-post-types.php:245 includes/class-wc-post-types.php:297 -#: includes/class-wc-post-types.php:336 -#: includes/admin/class-wc-admin-attributes.php:324 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:118 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:251 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:82 -#: includes/admin/reports/class-wc-report-customer-list.php:181 -#: includes/admin/reports/class-wc-report-stock.php:107 -#: templates/myaccount/my-address.php:45 -msgid "Edit" -msgstr "Редактиране" - -# @ woocommerce -#: includes/class-wc-post-types.php:246 -msgid "Edit Product" -msgstr "Редактирай продукт" - -# @ woocommerce -#: includes/class-wc-post-types.php:247 -msgid "New Product" -msgstr "Нов продукт" - -# @ woocommerce -#: includes/class-wc-post-types.php:248 includes/class-wc-post-types.php:249 -msgid "View Product" -msgstr "Виж продукт" - -# @ woocommerce -#: includes/class-wc-post-types.php:250 -#: includes/widgets/class-wc-widget-product-search.php:27 -msgid "Search Products" -msgstr "Търси продукт" - -# @ woocommerce -#: includes/class-wc-post-types.php:251 -msgid "No Products found" -msgstr "Не са намерени продукти" - -# @ woocommerce -#: includes/class-wc-post-types.php:252 -msgid "No Products found in trash" -msgstr "Не са намерени продукти в кошчето" - -# @ woocommerce -#: includes/class-wc-post-types.php:253 -msgid "Parent Product" -msgstr "Родителски продукт" - -# @ woocommerce -#: includes/class-wc-post-types.php:255 -msgid "This is where you can add new products to your store." -msgstr "От тук се добавят нови продукти в магазина." - -# @ woocommerce -#: includes/class-wc-post-types.php:275 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:109 -msgid "Variations" -msgstr "Вариации" - -# @ woocommerce -#: includes/class-wc-post-types.php:283 -#: includes/admin/class-wc-admin-menus.php:126 -#: includes/admin/class-wc-admin-menus.php:128 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Поръчки" - -# @ woocommerce -#: includes/class-wc-post-types.php:293 -#: includes/admin/class-wc-admin-reports.php:46 -#: includes/admin/reports/class-wc-report-customer-list.php:241 -msgid "Orders" -msgstr "Поръчки" - -# @ woocommerce -#: includes/class-wc-post-types.php:294 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:87 -#: templates/myaccount/my-orders.php:32 -msgid "Order" -msgstr "Поръчка" - -# @ woocommerce -#: includes/class-wc-post-types.php:295 -msgid "Add Order" -msgstr "Добави поръчка" - -# @ woocommerce -#: includes/class-wc-post-types.php:296 -msgid "Add New Order" -msgstr "Добави нова поръчка" - -# @ woocommerce -#: includes/class-wc-post-types.php:298 -msgid "Edit Order" -msgstr "Редактирай поръчка" - -# @ woocommerce -#: includes/class-wc-post-types.php:299 -msgid "New Order" -msgstr "Нова поръчка" - -# @ woocommerce -#: includes/class-wc-post-types.php:300 includes/class-wc-post-types.php:301 -#: includes/admin/settings/class-wc-settings-accounts.php:59 -msgid "View Order" -msgstr "Виж поръчка" - -# @ woocommerce -#: includes/class-wc-post-types.php:302 -msgid "Search Orders" -msgstr "Търси поръчки" - -# @ woocommerce -#: includes/class-wc-post-types.php:303 -msgid "No Orders found" -msgstr "Не са намерени поръчки" - -# @ woocommerce -#: includes/class-wc-post-types.php:304 -msgid "No Orders found in trash" -msgstr "Не са намерени поръчки в коша" - -# @ woocommerce -#: includes/class-wc-post-types.php:305 -msgid "Parent Orders" -msgstr "Родителски поръчки" - -# @ woocommerce -#: includes/class-wc-post-types.php:308 -msgid "This is where store orders are stored." -msgstr "Тук се записват поръчките в магазина." - -# @ woocommerce -#: includes/class-wc-post-types.php:331 -#: includes/admin/settings/class-wc-settings-checkout.php:68 -msgid "Coupons" -msgstr "Купони" - -# @ woocommerce -#: includes/class-wc-post-types.php:332 templates/cart/cart.php:119 -msgid "Coupon" -msgstr "Купон" - -# @ woocommerce -#: includes/class-wc-post-types.php:333 -msgctxt "Admin menu name" -msgid "Coupons" -msgstr "Купони" - -# @ woocommerce -#: includes/class-wc-post-types.php:334 -msgid "Add Coupon" -msgstr "Добави купон" - -# @ woocommerce -#: includes/class-wc-post-types.php:335 -msgid "Add New Coupon" -msgstr "Добави нов купон" - -# @ woocommerce -#: includes/class-wc-post-types.php:337 -msgid "Edit Coupon" -msgstr "Редактирай купон" - -# @ woocommerce -#: includes/class-wc-post-types.php:338 -msgid "New Coupon" -msgstr "Нов купон" - -# @ woocommerce -#: includes/class-wc-post-types.php:339 -msgid "View Coupons" -msgstr "Виж купоните" - -# @ woocommerce -#: includes/class-wc-post-types.php:340 -msgid "View Coupon" -msgstr "Виж купона" - -# @ woocommerce -#: includes/class-wc-post-types.php:341 -msgid "Search Coupons" -msgstr "Търси купони" - -# @ woocommerce -#: includes/class-wc-post-types.php:342 -msgid "No Coupons found" -msgstr "Няма намерени купони" - -# @ woocommerce -#: includes/class-wc-post-types.php:343 -msgid "No Coupons found in trash" -msgstr "Няма намерени купони в коша" - -# @ woocommerce -#: includes/class-wc-post-types.php:344 -msgid "Parent Coupon" -msgstr "Родителски купон" - -# @ woocommerce -#: includes/class-wc-post-types.php:346 -msgid "" -"This is where you can add new coupons that customers can use in your store." -msgstr "Тук може да добавите нови купони за вашите потребители." - -# @ woocommerce -#: includes/class-wc-product-external.php:86 -msgid "Buy product" -msgstr "Купи продукт" - -# @ woocommerce -#: includes/class-wc-product-grouped.php:42 -msgid "View products" -msgstr "Преглед продукти" - -# @ woocommerce -#: includes/class-wc-product-simple.php:48 -#: includes/class-wc-product-variation.php:211 -#: includes/abstracts/abstract-wc-product.php:456 -#: includes/admin/settings/class-wc-settings-products.php:265 -#: includes/integrations/google-analytics/class-wc-google-analytics.php:274 -#: includes/integrations/google-analytics/class-wc-google-analytics.php:294 -msgid "Add to cart" -msgstr "Купи" - -# @ woocommerce -#: includes/class-wc-product-simple.php:48 -#: includes/class-wc-product-variation.php:211 -msgid "Read More" -msgstr "Прочети още" - -# @ woocommerce -#: includes/class-wc-product-variable.php:42 -msgid "Select options" -msgstr "Опции" - -#: includes/class-wc-product-variable.php:506 -msgid "" -"This variable product has no active variations and will not be published." -msgstr "Продуктът няма активни вариации и няма да бъде публикуван." - -# @ woocommerce -#: includes/class-wc-product-variation.php:491 -#, php-format -msgid "%s – %s%s" -msgstr "%s – %s%s" - -#: includes/class-wc-shortcodes.php:948 -msgid "" -"Use $args[\"posts_per_page\"] instead. Deprecated argument will be removed " -"in WC 2.2." -msgstr "" - -#: includes/wc-cart-functions.php:25 -msgid "This product is protected and cannot be purchased." -msgstr "Този продукт е защитен и не може да бъде поръчван." - -# @ woocommerce -#: includes/wc-cart-functions.php:84 -#, php-format -msgid "Added "%s" to your cart." -msgstr "Добавен "%s" към вашата кошница" - -# @ default -#: includes/wc-cart-functions.php:84 -msgid "" and "" -msgstr "" и "" - -# @ woocommerce -#: includes/wc-cart-functions.php:87 -#, php-format -msgid ""%s" was successfully added to your cart." -msgstr ""%s" беше успешно добавен в кошницата." - -# @ woocommerce -#: includes/wc-cart-functions.php:95 -msgid "Continue Shopping →" -msgstr "Продължи пазаруването" - -# @ woocommerce -#: includes/wc-core-functions.php:148 -msgid "Australian Dollars" -msgstr "" - -# @ woocommerce -#: includes/wc-core-functions.php:149 -msgid "Brazilian Real" -msgstr "" - -# @ woocommerce -#: includes/wc-core-functions.php:150 -msgid "Bulgarian Lev" -msgstr "Български лев" - -# @ woocommerce -#: includes/wc-core-functions.php:151 -msgid "Canadian Dollars" -msgstr "" - -# @ woocommerce -#: includes/wc-core-functions.php:152 -msgid "Chinese Yuan" -msgstr "" - -# @ woocommerce -#: includes/wc-core-functions.php:153 -msgid "Czech Koruna" -msgstr "" - -# @ woocommerce -#: includes/wc-core-functions.php:154 -msgid "Danish Krone" -msgstr "" - -# @ woocommerce -#: includes/wc-core-functions.php:155 -msgid "Euros" -msgstr "" - -# @ woocommerce -#: includes/wc-core-functions.php:156 -msgid "Hong Kong Dollar" -msgstr "" - -# @ woocommerce -#: includes/wc-core-functions.php:157 -msgid "Hungarian Forint" -msgstr "" - -# @ woocommerce -#: includes/wc-core-functions.php:158 -msgid "Indonesia Rupiah" -msgstr "" - -# @ woocommerce -#: includes/wc-core-functions.php:159 -msgid "Indian Rupee" -msgstr "" - -# @ woocommerce -#: includes/wc-core-functions.php:160 -msgid "Israeli Shekel" -msgstr "" - -# @ woocommerce -#: includes/wc-core-functions.php:161 -msgid "Japanese Yen" -msgstr "" - -# @ woocommerce -#: includes/wc-core-functions.php:162 -msgid "South Korean Won" -msgstr "" - -# @ woocommerce -#: includes/wc-core-functions.php:163 -msgid "Malaysian Ringgits" -msgstr "" - -# @ woocommerce -#: includes/wc-core-functions.php:164 -msgid "Mexican Peso" -msgstr "" - -# @ woocommerce -#: includes/wc-core-functions.php:165 -msgid "Norwegian Krone" -msgstr "" - -# @ woocommerce -#: includes/wc-core-functions.php:166 -msgid "New Zealand Dollar" -msgstr "" - -# @ woocommerce -#: includes/wc-core-functions.php:167 -msgid "Philippine Pesos" -msgstr "" - -# @ woocommerce -#: includes/wc-core-functions.php:168 -msgid "Polish Zloty" -msgstr "" - -# @ woocommerce -#: includes/wc-core-functions.php:169 -msgid "Pounds Sterling" -msgstr "" - -# @ woocommerce -#: includes/wc-core-functions.php:170 -msgid "Romanian Leu" -msgstr "" - -# @ woocommerce -#: includes/wc-core-functions.php:171 -msgid "Russian Ruble" -msgstr "" - -# @ woocommerce -#: includes/wc-core-functions.php:172 -msgid "Singapore Dollar" -msgstr "" - -# @ woocommerce -#: includes/wc-core-functions.php:173 -msgid "South African rand" -msgstr "" - -# @ woocommerce -#: includes/wc-core-functions.php:174 -msgid "Swedish Krona" -msgstr "" - -# @ woocommerce -#: includes/wc-core-functions.php:175 -msgid "Swiss Franc" -msgstr "" - -# @ woocommerce -#: includes/wc-core-functions.php:176 -msgid "Taiwan New Dollars" -msgstr "" - -# @ woocommerce -#: includes/wc-core-functions.php:177 -msgid "Thai Baht" -msgstr "" - -# @ woocommerce -#: includes/wc-core-functions.php:178 -msgid "Turkish Lira" -msgstr "" - -# @ woocommerce -#: includes/wc-core-functions.php:179 -msgid "US Dollars" -msgstr "" - -# @ woocommerce -#: includes/wc-core-functions.php:180 -msgid "Vietnamese Dong" -msgstr "" - -# @ woocommerce -#: includes/wc-coupon-functions.php:22 -msgid "Cart Discount" -msgstr "Отстъпка" - -# @ woocommerce -#: includes/wc-coupon-functions.php:23 -msgid "Cart % Discount" -msgstr "Намаление % на кошницата" - -# @ woocommerce -#: includes/wc-coupon-functions.php:24 -msgid "Product Discount" -msgstr "Продуктово намаление" - -# @ woocommerce -#: includes/wc-coupon-functions.php:25 -msgid "Product % Discount" -msgstr "Продукт % намаление" - -# @ woocommerce -#: includes/wc-customer-functions.php:49 -msgid "An account is already registered with your email address. Please login." -msgstr "Вече има регистриран профил с този email. Моля влезте." - -# @ woocommerce -#: includes/wc-customer-functions.php:59 -msgid "Please enter a valid account username." -msgstr "Моля въведете потребителско име." - -# @ woocommerce -#: includes/wc-customer-functions.php:62 -msgid "" -"An account is already registered with that username. Please choose another." -msgstr "" -"Вече има регистриран профил с това потребителско име. Моля изберете друг." - -# @ woocommerce -#: includes/wc-customer-functions.php:82 -msgid "Please enter an account password." -msgstr "Моля въведете парола за профила." - -# @ woocommerce -#: includes/wc-customer-functions.php:107 -msgid "" -"Couldn’t register you… please contact us if you continue to " -"have problems." -msgstr "" -"Не можахме да ви регистрираме. Моля, свъежете се с нас ако проблема " -"продължава." - -# @ woocommerce -#: includes/wc-order-functions.php:290 -msgid "Unpaid order cancelled - time limit reached." -msgstr "Неплатената поръчка е отказана, поради изтекла давност." - -# @ woocommerce -#: includes/wc-product-functions.php:302 -msgctxt "slug" -msgid "uncategorized" -msgstr "некатегоризирани" - -# @ woocommerce -#: includes/wc-template-functions.php:314 -#: includes/admin/settings/class-wc-settings-general.php:96 -msgid "" -"This is a demo store for testing purposes — no orders shall be " -"fulfilled." -msgstr "" -"Това е примерен магазин за тестови цели — поръчки няма да се " -"изпълняват." - -# @ woocommerce -#: includes/wc-template-functions.php:333 -#, php-format -msgid "Search Results: “%s”" -msgstr "Резултати от търсенето: “%s”" - -# @ woocommerce -#: includes/wc-template-functions.php:336 -#, php-format -msgid " – Page %s" -msgstr " – Страница %s" - -# @ woocommerce -#: includes/wc-template-functions.php:902 -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:76 -#: includes/gateways/bacs/class-wc-gateway-bacs.php:79 -#: includes/gateways/cheque/class-wc-gateway-cheque.php:65 -#: includes/gateways/cod/class-wc-gateway-cod.php:71 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:150 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:134 -msgid "Description" -msgstr "Описание" - -# @ woocommerce -#: includes/wc-template-functions.php:910 -#: templates/checkout/form-shipping.php:57 -#: templates/single-product/tabs/additional-information.php:14 -msgid "Additional Information" -msgstr "Допълнителна информация" - -# @ woocommerce -#: includes/wc-template-functions.php:918 -#, php-format -msgid "Reviews (%d)" -msgstr "Ревюта (%d)" - -#: includes/wc-template-functions.php:1008 -msgid "" -"Use $args argument as an array instead. Deprecated argument will be removed " -"in WC 2.2." -msgstr "" - -# @ woocommerce -#: includes/wc-template-functions.php:1115 -msgid "Free shipping coupon" -msgstr "Купон за безплатна доставка" - -# @ woocommerce -#: includes/wc-template-functions.php:1117 -msgid "[Remove]" -msgstr "[Премахни]" - -# @ woocommerce -#: includes/wc-template-functions.php:1171 -#: includes/admin/views/html-admin-page-addons.php:17 -msgid "Free" -msgstr "Безплатно" - -# @ woocommerce -#: includes/wc-template-functions.php:1279 -msgctxt "breadcrumb" -msgid "Home" -msgstr "Начало" - -# @ woocommerce -#: includes/wc-template-functions.php:1551 -msgid "Order Again" -msgstr "Поръчай отново" - -# @ woocommerce -#: includes/wc-template-functions.php:1640 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:60 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:107 -#: templates/cart/shipping-calculator.php:28 -msgid "Select a country…" -msgstr "Избери държава…" - -# @ woocommerce -#: includes/wc-template-functions.php:1647 -msgid "Update country" -msgstr "Обнови държава" - -# @ woocommerce -#: includes/wc-template-functions.php:1690 -#: templates/cart/shipping-calculator.php:52 -msgid "Select a state…" -msgstr "Избери щат…" - -# @ woocommerce -#: includes/wc-template-functions.php:1802 -msgid "Search for:" -msgstr "Търси за:" - -# @ woocommerce -#: includes/wc-template-functions.php:1803 -msgid "Search for products" -msgstr "Търсене на продукти" - -# @ woocommerce -#: includes/wc-template-functions.php:1830 -msgid "New products" -msgstr "Нови продукти" - -# @ woocommerce -#: includes/wc-template-functions.php:1838 -#, php-format -msgid "New products added to %s" -msgstr "Нови продукто добавени към %s" - -# @ woocommerce -#: includes/wc-template-functions.php:1846 -#, php-format -msgid "New products tagged %s" -msgstr "Нови маркирани продукти %s" - -# @ woocommerce -#: includes/wc-term-functions.php:88 -msgid "Select a category" -msgstr "Изберете категория" - -# @ woocommerce -#: includes/wc-term-functions.php:92 -msgid "Uncategorized" -msgstr "Некатегоризирани" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:552 -#: includes/emails/class-wc-email-customer-completed-order.php:137 -#: includes/emails/class-wc-email-new-order.php:117 -#: includes/gateways/bacs/class-wc-gateway-bacs.php:66 -#: includes/gateways/cheque/class-wc-gateway-cheque.php:52 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:130 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:121 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:76 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:65 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:50 -msgid "Enable/Disable" -msgstr "Включи/Изключи" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:554 -#: includes/emails/class-wc-email-customer-completed-order.php:139 -#: includes/emails/class-wc-email-new-order.php:119 -msgid "Enable this email notification" -msgstr "Включи уведомленията за този email" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:558 -#: includes/emails/class-wc-email-customer-invoice.php:143 -msgid "Email subject" -msgstr "Тема" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:560 -#: includes/abstracts/abstract-wc-email.php:567 -#: includes/emails/class-wc-email-customer-completed-order.php:145 -#: includes/emails/class-wc-email-customer-completed-order.php:152 -#: includes/emails/class-wc-email-customer-completed-order.php:159 -#: includes/emails/class-wc-email-customer-completed-order.php:166 -#: includes/emails/class-wc-email-customer-invoice.php:145 -#: includes/emails/class-wc-email-customer-invoice.php:152 -#: includes/emails/class-wc-email-customer-invoice.php:159 -#: includes/emails/class-wc-email-customer-invoice.php:166 -#, php-format -msgid "Defaults to %s" -msgstr "По подразбиране %s" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:565 -#: includes/emails/class-wc-email-customer-invoice.php:150 -msgid "Email heading" -msgstr "Заглавие" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:572 -#: includes/emails/class-wc-email-customer-completed-order.php:171 -#: includes/emails/class-wc-email-customer-invoice.php:171 -#: includes/emails/class-wc-email-new-order.php:144 -msgid "Email type" -msgstr "Тип" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:574 -#: includes/emails/class-wc-email-customer-completed-order.php:173 -#: includes/emails/class-wc-email-customer-invoice.php:173 -#: includes/emails/class-wc-email-new-order.php:146 -msgid "Choose which format of email to send." -msgstr "Избор формат на email за изпращане." - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:578 -#: includes/emails/class-wc-email-customer-completed-order.php:177 -#: includes/emails/class-wc-email-customer-invoice.php:177 -#: includes/emails/class-wc-email-new-order.php:150 -msgid "Plain text" -msgstr "Обикновен текст" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:579 -#: includes/emails/class-wc-email-customer-completed-order.php:178 -#: includes/emails/class-wc-email-customer-invoice.php:178 -#: includes/emails/class-wc-email-new-order.php:151 -msgid "HTML" -msgstr "" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:580 -#: includes/emails/class-wc-email-customer-completed-order.php:179 -#: includes/emails/class-wc-email-customer-invoice.php:179 -#: includes/emails/class-wc-email-new-order.php:152 -msgid "Multipart" -msgstr "" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:616 -#: includes/abstracts/abstract-wc-email.php:637 -msgid "Could not write to template file." -msgstr "Не е възможно записването на темплейт файла." - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:664 -msgid "Template file copied to theme." -msgstr "Темплейт файла е копиран в темата." - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:673 -msgid "Template file deleted from theme." -msgstr "Темплейт файла е изтрит от темата." - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:693 -msgid "HTML template" -msgstr "HTML шаблон" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:694 -msgid "Plain text template" -msgstr "Plain text шаблон" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:713 -msgid "Delete template file" -msgstr "Изтриване на шаблон" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:716 -#, php-format -msgid "" -"This template has been overridden by your theme and can be found in: " -"%s." -msgstr "" -"Този темплейт е препокрит от вашата тема и може да бъде намерен тук: " -"%s." - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:731 -msgid "Copy file to theme" -msgstr "Копиране файл в тема" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:734 -#, php-format -msgid "" -"To override and edit this email template copy %s to your theme " -"folder: %s." -msgstr "" -"За да препокриете и редактирате темплейта на email-а, копирайте %s в папката на темата: %s" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:745 -msgid "File was not found." -msgstr "Файла не е намерен" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:770 -msgid "View template" -msgstr "Преглед шаблон" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:771 -msgid "Hide template" -msgstr "Скриване на шаблон" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:782 -msgid "Are you sure you want to delete this template file?" -msgstr "Сигурни ли сте, че желаете да изтриете този шаблонен файл?" - -# @ woocommerce -#: includes/abstracts/abstract-wc-payment-gateway.php:201 -msgid "Card Number" -msgstr "Номер карта" - -#: includes/abstracts/abstract-wc-payment-gateway.php:205 -msgid "Expiry (MM/YY)" -msgstr "" - -# @ woocommerce -#: includes/abstracts/abstract-wc-payment-gateway.php:209 -msgid "Card Code" -msgstr "Код на карта" - -# @ woocommerce -#: includes/abstracts/abstract-wc-product.php:33 -msgid "" -"The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class " -"directly." -msgstr "" - -# @ woocommerce -#: includes/abstracts/abstract-wc-product.php:466 -msgid "Read more" -msgstr "Прочети още" - -# @ woocommerce -#: includes/abstracts/abstract-wc-product.php:572 -#: includes/abstracts/abstract-wc-product.php:577 -#: includes/abstracts/abstract-wc-product.php:596 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:365 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:301 -#: includes/admin/reports/class-wc-report-stock.php:91 -#: includes/admin/views/html-bulk-edit-product.php:194 -#: includes/admin/views/html-quick-edit-product.php:137 -msgid "In stock" -msgstr "Налично" - -# @ woocommerce -#: includes/abstracts/abstract-wc-product.php:577 -#, php-format -msgid "Only %s left in stock" -msgstr "Само %s са останали" - -# @ woocommerce -#: includes/abstracts/abstract-wc-product.php:580 -#, php-format -msgid "%s in stock" -msgstr "%s налични" - -# @ woocommerce -#: includes/abstracts/abstract-wc-product.php:587 -msgid "(backorders allowed)" -msgstr "(разрешено поръчване извън наличност)" - -# @ woocommerce -#: includes/abstracts/abstract-wc-product.php:593 -#: includes/abstracts/abstract-wc-product.php:606 templates/cart/cart.php:74 -msgid "Available on backorder" -msgstr "Разрешено за поръчка без наличност" - -# @ woocommerce -#: includes/abstracts/abstract-wc-product.php:599 -#: includes/abstracts/abstract-wc-product.php:609 -#: includes/abstracts/abstract-wc-product.php:613 -#: includes/admin/class-wc-admin-reports.php:101 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:367 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:302 -#: includes/admin/reports/class-wc-report-stock.php:93 -#: includes/admin/views/html-bulk-edit-product.php:195 -#: includes/admin/views/html-quick-edit-product.php:138 -msgid "Out of stock" -msgstr "Изчерпан" - -# @ woocommerce -#: includes/abstracts/abstract-wc-product.php:920 -msgctxt "min_price" -msgid "From:" -msgstr "От:" - -# @ woocommerce -#: includes/abstracts/abstract-wc-product.php:1028 -#: templates/single-product-reviews.php:28 -#, php-format -msgid "Rated %s out of 5" -msgstr "Оценено на %s от 5" - -# @ woocommerce -#: includes/abstracts/abstract-wc-product.php:1030 -#: includes/admin/class-wc-admin-dashboard.php:192 -#: templates/single-product-reviews.php:28 -#: templates/single-product/review.php:27 -msgid "out of 5" -msgstr "от 5" - -# @ woocommerce -#: includes/abstracts/abstract-wc-product.php:1342 -#, php-format -msgid "%s – %s" -msgstr "" - -#: includes/admin/class-wc-admin-assets.php:100 -msgid "" -"Please enter in decimal format without thousand separators and currency " -"symbols." -msgstr "Моля въведете цяло число, без разделители и знаци за валута." - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:126 -msgid "" -"Are you sure you want to remove the selected items? If you have previously " -"reduced this item's stock, or this order was submitted by a customer, you " -"will need to manually restore the item's stock." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:127 -msgid "Please select some items." -msgstr "Моля изберете някой продукт." - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:128 -msgid "Remove this item meta?" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:129 -msgid "Remove this attribute?" -msgstr "Премахване на този атрибут?" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:131 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:430 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:524 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:6 -msgid "Remove" -msgstr "Премахване" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:132 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:431 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:525 -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:7 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:7 -msgid "Click to toggle" -msgstr "Цъкни за маркиране" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:133 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:446 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:538 -msgid "Value(s)" -msgstr "Стойност(и)" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:134 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:539 -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "Въведете някакъв текст или атрибути отделени с (|)" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:135 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:489 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:544 -msgid "Visible on the product page" -msgstr "Да се визуализира на продуктовата страница" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:136 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:502 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:550 -msgid "Used for variations" -msgstr "Използван при вариации" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:137 -msgid "Enter a name for the new attribute term:" -msgstr "Въведете име на новия атрибут:" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:138 -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:139 -msgid "" -"Calculate line taxes? This will calculate taxes based on the customers " -"country. If no billing/shipping is set it will use the store base country." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:140 -msgid "" -"Copy billing information to shipping information? This will remove any " -"currently entered shipping information." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:141 -msgid "" -"Load the customer's billing information? This will remove any currently " -"entered billing information." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:142 -msgid "" -"Load the customer's shipping information? This will remove any currently " -"entered shipping information." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:143 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:115 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:206 -#: includes/admin/views/html-bulk-edit-product.php:170 -#: includes/admin/views/html-quick-edit-product.php:128 -msgid "Featured" -msgstr "Избрани" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:146 -msgid "No customer selected" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:185 -msgid "" -"Are you sure you want to link all variations? This will create a new " -"variation for each and every possible combination of variation attributes " -"(max 50 per run)." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:186 -msgid "Enter a value" -msgstr "Въведете стойност" - -#: includes/admin/class-wc-admin-assets.php:187 -msgid "Enter a value (fixed or %)" -msgstr "Въведете стойност (точна или %)" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:188 -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:189 -msgid "Last warning, are you sure?" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:190 -#: includes/admin/class-wc-admin-taxonomies.php:127 -#: includes/admin/class-wc-admin-taxonomies.php:215 -msgid "Choose an image" -msgstr "Избор на изображение" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:191 -msgid "Set variation image" -msgstr "Задай изображение на варияцията" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:192 -msgid "variation added" -msgstr "вариацията е добавена" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:193 -msgid "variations added" -msgstr "вариациите са добавени" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:194 -msgid "No variations added" -msgstr "Не са добавени вариации" - -# @ woocommerce -#: includes/admin/class-wc-admin-assets.php:195 -msgid "Are you sure you want to remove this variation?" -msgstr "Сигурни ли сте, че искате да премахнете тази вариация?" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:82 -msgid "Please, provide an attribute name, slug and type." -msgstr "Моля, въведете атрибут, кратко име и тип." - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:84 -#, php-format -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:86 -#, php-format -msgid "" -"Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:91 -#: includes/admin/class-wc-admin-attributes.php:96 -#, php-format -msgid "Slug “%s” is already in use. Change it, please." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:233 -msgid "Edit Attribute" -msgstr "Редакция атрибут" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:243 -#: includes/admin/class-wc-admin-attributes.php:377 -msgid "Name for the attribute (shown on the front-end)." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:248 -#: includes/admin/class-wc-admin-attributes.php:309 -#: includes/admin/class-wc-admin-attributes.php:381 -msgid "Slug" -msgstr "Кратко-име" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:252 -#: includes/admin/class-wc-admin-attributes.php:383 -msgid "" -"Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:257 -#: includes/admin/class-wc-admin-attributes.php:310 -#: includes/admin/class-wc-admin-attributes.php:387 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:207 -msgid "Type" -msgstr "Тип" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:261 -#: includes/admin/class-wc-admin-attributes.php:389 -msgid "Select" -msgstr "Избор" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:262 -#: includes/admin/class-wc-admin-attributes.php:390 -msgid "Text" -msgstr "Текст" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:265 -#: includes/admin/class-wc-admin-attributes.php:393 -msgid "" -"Determines how you select attributes for products. Text " -"allows manual entry via the product page, whereas select " -"attribute terms can be defined from this section. If you plan on using an " -"attribute for variations use select." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:270 -#: includes/admin/class-wc-admin-attributes.php:397 -msgid "Default sort order" -msgstr "Ред на сортиране по подразбиране" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:274 -#: includes/admin/class-wc-admin-attributes.php:337 -#: includes/admin/class-wc-admin-attributes.php:399 -msgid "Custom ordering" -msgstr "Потребителска подредба" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:276 -#: includes/admin/class-wc-admin-attributes.php:334 -#: includes/admin/class-wc-admin-attributes.php:401 -msgid "Term ID" -msgstr "Термин Номер" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:278 -#: includes/admin/class-wc-admin-attributes.php:403 -msgid "" -"Determines the sort order on the frontend for this attribute. If using " -"custom ordering, you can drag and drop the terms in this attribute" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:283 -msgid "Update" -msgstr "Обнови" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:300 -#: includes/admin/class-wc-admin-menus.php:49 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:104 -msgid "Attributes" -msgstr "Атрибути" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:311 -#: includes/widgets/class-wc-widget-products.php:51 -msgid "Order by" -msgstr "Подредба по" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:312 -msgid "Terms" -msgstr "Термин" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:324 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:44 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:104 -#: includes/admin/post-types/meta-boxes/views/html-product-download.php:6 -#: includes/admin/post-types/meta-boxes/views/html-product-variation-download.php:5 -msgid "Delete" -msgstr "Изтриване" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:357 -msgid "Configure terms" -msgstr "Настройка термини" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:361 -msgid "No attributes currently exist." -msgstr "В момента не съществуват атрибути." - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:371 -msgid "Add New Attribute" -msgstr "Добавяне на нов атрибут" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:372 -msgid "" -"Attributes let you define extra product data, such as size or colour. You " -"can use these attributes in the shop sidebar using the \"layered nav\" " -"widgets. Please note: you cannot rename an attribute later on." -msgstr "" -"Атрибутите ви дават възможност да добавяте допълнителна информация за " -"продуктите, като цвят, големина, дата. Може да използвате тези атрибути и " -"във филтрите в страничния панел на магазина. Моля имайте в предвид, че не " -"може да преименувате атрибутите си по-късно." - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:406 -msgid "Add Attribute" -msgstr "Добавяне на атрибут" - -# @ woocommerce -#: includes/admin/class-wc-admin-attributes.php:417 -msgid "Are you sure you want to delete this attribute?" -msgstr "Желаете ли да изтриете този атрибут?" - -# @ woocommerce -#: includes/admin/class-wc-admin-dashboard.php:34 -#: includes/widgets/class-wc-widget-recent-reviews.php:23 -msgid "WooCommerce Recent Reviews" -msgstr "WooCommerce скорошни отзиви" - -# @ woocommerce -#: includes/admin/class-wc-admin-dashboard.php:37 -#: includes/admin/class-wc-admin-menus.php:80 -msgid "WooCommerce Status" -msgstr "Статус на магазина (WooCommerce)" - -#: includes/admin/class-wc-admin-dashboard.php:131 -#, php-format -msgid "%s sales this month" -msgstr "%s от продажби този месец" - -#: includes/admin/class-wc-admin-dashboard.php:138 -#, php-format -msgid "%s top seller this month (sold %d)" -msgstr "%s бест-селъри този месец (продадени %d)" - -#: includes/admin/class-wc-admin-dashboard.php:144 -#, php-format -msgid "%s order awaiting processing" -msgid_plural "%s orders are awaiting processing" -msgstr[0] "%s поръчка очаква обработка" -msgstr[1] "%s поръчки очакват обработка" - -#: includes/admin/class-wc-admin-dashboard.php:149 -#, php-format -msgid "%s order are on-hold" -msgid_plural "%s orders are currently on-hold" -msgstr[0] "%s поръчка е задържана" -msgstr[1] "%s поръчки са задържани" - -# @ woocommerce -#: includes/admin/class-wc-admin-dashboard.php:154 -#, php-format -msgid "%s product low in stock" -msgid_plural "%s products are low in stock" -msgstr[0] "%s продукт в ниска наличност" -msgstr[1] "%s продукти в ниска наличност" - -# @ woocommerce -#: includes/admin/class-wc-admin-dashboard.php:159 -#, php-format -msgid "%s product out of stock" -msgid_plural "%s products are out of stock" -msgstr[0] "%s продукт е изчерпан" -msgstr[1] "%s продукти са изчерпани" - -# @ woocommerce -#: includes/admin/class-wc-admin-dashboard.php:200 -msgid "There are no product reviews yet." -msgstr "Все още няма ревюта." - -# @ woocommerce -#: includes/admin/class-wc-admin-duplicate-product.php:43 -msgid "Make a duplicate from this product" -msgstr "Дублицирай този продукт" - -# @ woocommerce -#: includes/admin/class-wc-admin-duplicate-product.php:44 -msgid "Duplicate" -msgstr "Дублициране" - -# @ woocommerce -#: includes/admin/class-wc-admin-duplicate-product.php:67 -msgid "Copy to a new draft" -msgstr "Копиране като нова чернова" - -# @ woocommerce -#: includes/admin/class-wc-admin-duplicate-product.php:77 -msgid "No product to duplicate has been supplied!" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-duplicate-product.php:99 -msgid "Product creation failed, could not find original product:" -msgstr "" -"Създаването на продукта не бе усшешно, не може да се намери оригинален такъв:" - -# @ woocommerce -#: includes/admin/class-wc-admin-duplicate-product.php:126 -msgid "(Copy)" -msgstr "(Копиране)" - -# @ default -#: includes/admin/class-wc-admin-help.php:38 -msgid "Documentation" -msgstr "Документация" - -#: includes/admin/class-wc-admin-help.php:41 -msgid "" -"Thank you for using WooCommerce :) Should you need help using or extending " -"WooCommerce please read the documentation." -msgstr "" -"Благодарим че използвате WooCommerce. Ако имате нужда от помощ в " -"използването, надграждането, персонализирането или друго, може да прочетете " -"нашата документация." - -# @ woocommerce -#: includes/admin/class-wc-admin-help.php:43 -msgid "WooCommerce Documentation" -msgstr "WooCommerce Документация" - -#: includes/admin/class-wc-admin-help.php:43 -msgid "Developer API Docs" -msgstr "API документация за разработчици" - -#: includes/admin/class-wc-admin-help.php:49 -msgid "Support" -msgstr "Подръжка" - -#: includes/admin/class-wc-admin-help.php:52 -#, php-format -msgid "" -"After reading the documentation, for further assistance " -"you can use the community forum, or if you have access as " -"a WooThemes customer, our support desk." -msgstr "" -"След като прочетете документацията, за бъдеща помощ, може " -"да използвате форумите, които се поддържат от обществото. " -"А ако имате достъп до WooThemes клиентската част - нашия борд " -"за подръжка." - -#: includes/admin/class-wc-admin-help.php:54 -msgid "" -"Before asking for help we recommend checking the status page to identify any " -"problems with your configuration." -msgstr "" -"Преди да отправяте заявки за помощ, съветваме да прегледате страницата " -"\"Система\" и да проверите за евентуални грешки, с вашата конфигурация, " -"които е отчела." - -# @ woocommerce -#: includes/admin/class-wc-admin-help.php:56 -#: includes/admin/class-wc-admin-help.php:67 -#: includes/admin/class-wc-admin-menus.php:80 -#: includes/admin/views/html-admin-page-status.php:5 -msgid "System Status" -msgstr "Система" - -#: includes/admin/class-wc-admin-help.php:56 -msgid "Community Support" -msgstr "Подръжка от общност" - -# @ woocommerce -#: includes/admin/class-wc-admin-help.php:56 -msgid "Customer Support" -msgstr "Подръжка за клиенти" - -#: includes/admin/class-wc-admin-help.php:62 -msgid "Found a bug?" -msgstr "Намерена е неизправност?" - -#: includes/admin/class-wc-admin-help.php:65 -#, php-format -msgid "" -"If you find a bug within WooCommerce core you can create a ticket via Github issues. Ensure you read the contribution guide prior to submitting your report. Be as descriptive " -"as possible and please include your system status report." -msgstr "" -"Ако намерите неизправност в WooCommerce разширението, може да създадете " -"билет Github issues. Уверете се, че сте прочели наръчник за настройките преди да заявите открития проблем. Бъдете " -"колкото се може по-описателни, и молим да включите системния " -"доклад." - -# @ woocommerce -#: includes/admin/class-wc-admin-help.php:67 -msgid "Report a bug" -msgstr "Доклад за неизправност" - -# @ woocommerce -#: includes/admin/class-wc-admin-help.php:73 -msgid "For more information:" -msgstr "За повече информация:" - -# @ woocommerce -#: includes/admin/class-wc-admin-help.php:74 -msgid "About WooCommerce" -msgstr "За WooCommerce" - -# @ woocommerce -#: includes/admin/class-wc-admin-help.php:75 -msgid "Project on WordPress.org" -msgstr "Проекта в WordPress.org" - -# @ woocommerce -#: includes/admin/class-wc-admin-help.php:76 -msgid "Project on Github" -msgstr "Проекта в GitHub" - -# @ woocommerce -#: includes/admin/class-wc-admin-help.php:77 -msgid "Official Extensions" -msgstr "Официални добавки" - -# @ woocommerce -#: includes/admin/class-wc-admin-help.php:78 -msgid "Official Themes" -msgstr "Официални теми" - -# @ woocommerce -#: includes/admin/class-wc-admin-importers.php:32 -msgid "WooCommerce Tax Rates (CSV)" -msgstr "WooCommerce такси (CSV)" - -# @ woocommerce -#: includes/admin/class-wc-admin-importers.php:32 -msgid "Import tax rates to your store via a csv file." -msgstr "Импорт на такси във вашият магазин, чрез csv файл." - -# @ woocommerce -#: includes/admin/class-wc-admin-menus.php:56 -msgid "Reports" -msgstr "Доклади" - -# @ woocommerce -#: includes/admin/class-wc-admin-menus.php:63 -msgid "WooCommerce Settings" -msgstr "WooCommerce настройки" - -# @ woocommerce -#: includes/admin/class-wc-admin-menus.php:88 -#: includes/admin/views/html-admin-page-addons.php:4 -msgid "WooCommerce Add-ons/Extensions" -msgstr "WooCommerce притурки и разширения" - -#: includes/admin/class-wc-admin-menus.php:88 -msgid "Add-ons" -msgstr "Притурки" - -# @ woocommerce -#: includes/admin/class-wc-admin-permalink-settings.php:33 -msgid "Product permalink base" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-permalink-settings.php:38 -msgid "Product category base" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-permalink-settings.php:45 -msgid "Product tag base" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-permalink-settings.php:52 -msgid "Product attribute base" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-permalink-settings.php:93 -msgid "" -"These settings control the permalinks used for products. These settings only " -"apply when not using \"default\" permalinks above." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-permalink-settings.php:100 -msgctxt "default-slug" -msgid "shop" -msgstr "magazin" - -# @ woocommerce -#: includes/admin/class-wc-admin-permalink-settings.php:101 -msgctxt "default-slug" -msgid "product" -msgstr "produkt" - -# @ woocommerce -# @ default -#: includes/admin/class-wc-admin-permalink-settings.php:113 -#: includes/admin/class-wc-admin-taxonomies.php:92 -#: includes/admin/class-wc-admin-taxonomies.php:182 -#: includes/admin/settings/class-wc-settings-checkout.php:217 -#: includes/admin/settings/class-wc-settings-shipping.php:202 -#: includes/admin/views/html-admin-page-status-report.php:81 -msgid "Default" -msgstr "По подразбиране" - -# @ woocommerce -#: includes/admin/class-wc-admin-permalink-settings.php:122 -msgid "Shop base" -msgstr "Основа на магазина" - -# @ woocommerce -#: includes/admin/class-wc-admin-permalink-settings.php:126 -msgid "Shop base with category" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-permalink-settings.php:132 -msgid "Custom Base" -msgstr "Потребителска основа на магазина" - -# @ woocommerce -#: includes/admin/class-wc-admin-permalink-settings.php:134 -msgid "" -"Enter a custom base to use. A base must be set or WordPress " -"will use default instead." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:58 -#, php-format -msgid "Product updated. View Product" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:59 -#: includes/admin/class-wc-admin-post-types.php:74 -#: includes/admin/class-wc-admin-post-types.php:89 -msgid "Custom field updated." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:60 -#: includes/admin/class-wc-admin-post-types.php:75 -#: includes/admin/class-wc-admin-post-types.php:90 -msgid "Custom field deleted." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:61 -msgid "Product updated." -msgstr "Продуктът е обновен." - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:62 -#, php-format -msgid "Product restored to revision from %s" -msgstr "Продуктът беше възстановен до ревизия %s" - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:63 -#, php-format -msgid "Product published. View Product" -msgstr "Продуктът е публикуван. Преглед продукт" - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:64 -msgid "Product saved." -msgstr "Продуктът е записан." - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:65 -#, php-format -msgid "Product submitted. Preview Product" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:66 -#, php-format -msgid "" -"Product scheduled for: %1$s. Preview Product" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:67 -#: includes/admin/class-wc-admin-post-types.php:82 -#: includes/admin/class-wc-admin-post-types.php:97 -msgid "M j, Y @ G:i" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:68 -#, php-format -msgid "" -"Product draft updated. Preview Product" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:73 -#: includes/admin/class-wc-admin-post-types.php:76 -#: includes/admin/class-wc-admin-post-types.php:78 -msgid "Order updated." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:77 -#, php-format -msgid "Order restored to revision from %s" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:79 -msgid "Order saved." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:80 -msgid "Order submitted." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:81 -#, php-format -msgid "Order scheduled for: %1$s." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:83 -msgid "Order draft updated." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:88 -#: includes/admin/class-wc-admin-post-types.php:91 -#: includes/admin/class-wc-admin-post-types.php:93 -msgid "Coupon updated." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:92 -#, php-format -msgid "Coupon restored to revision from %s" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:94 -msgid "Coupon saved." -msgstr "Купонт е записан" - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:95 -msgid "Coupon submitted." -msgstr "Купонът е пратен." - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:96 -#, php-format -msgid "Coupon scheduled for: %1$s." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-post-types.php:98 -msgid "Coupon draft updated." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-profile.php:39 -msgid "Customer Billing Address" -msgstr "Адрес" - -# @ woocommerce -#: includes/admin/class-wc-admin-profile.php:42 -#: includes/admin/class-wc-admin-profile.php:91 -#: templates/myaccount/form-edit-account.php:20 -msgid "First name" -msgstr "Име" - -# @ woocommerce -#: includes/admin/class-wc-admin-profile.php:46 -#: includes/admin/class-wc-admin-profile.php:95 -#: templates/myaccount/form-edit-account.php:24 -msgid "Last name" -msgstr "Фамилия" - -# @ woocommerce -#: includes/admin/class-wc-admin-profile.php:50 -#: includes/admin/class-wc-admin-profile.php:99 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:37 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:84 -msgid "Company" -msgstr "Компания" - -# @ woocommerce -#: includes/admin/class-wc-admin-profile.php:54 -#: includes/admin/class-wc-admin-profile.php:103 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:41 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:88 -msgid "Address 1" -msgstr "Адрес 1" - -# @ woocommerce -#: includes/admin/class-wc-admin-profile.php:58 -#: includes/admin/class-wc-admin-profile.php:107 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:45 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:92 -msgid "Address 2" -msgstr "Адрес 2" - -# @ woocommerce -#: includes/admin/class-wc-admin-profile.php:62 -#: includes/admin/class-wc-admin-profile.php:111 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:49 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:96 -#: includes/admin/settings/class-wc-settings-tax.php:254 -#: includes/admin/settings/class-wc-settings-tax.php:381 -#: templates/cart/shipping-calculator.php:72 -msgid "City" -msgstr "Град" - -# @ woocommerce -#: includes/admin/class-wc-admin-profile.php:70 -#: includes/admin/class-wc-admin-profile.php:119 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:63 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:110 -msgid "State/County" -msgstr "Община/Област" - -# @ woocommerce -#: includes/admin/class-wc-admin-profile.php:71 -msgid "Country or state code" -msgstr "Държава или код" - -# @ woocommerce -#: includes/admin/class-wc-admin-profile.php:75 -#: includes/admin/class-wc-admin-profile.php:124 -msgid "2 letter Country code" -msgstr "2 символен държавен код" - -# @ woocommerce -#: includes/admin/class-wc-admin-profile.php:78 -msgid "Telephone" -msgstr "Телефон" - -# @ woocommerce -#: includes/admin/class-wc-admin-profile.php:82 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:67 -#: includes/admin/reports/class-wc-report-customer-list.php:239 -#: templates/single-product-reviews.php:87 -msgid "Email" -msgstr "Email" - -# @ woocommerce -#: includes/admin/class-wc-admin-profile.php:88 -msgid "Customer Shipping Address" -msgstr "Адрес за доставка" - -# @ woocommerce -#: includes/admin/class-wc-admin-profile.php:120 -msgid "State/County or state code" -msgstr "Област или код." - -# @ woocommerce -#: includes/admin/class-wc-admin-reports.php:49 -msgid "Sales by date" -msgstr "Продажби по дата" - -# @ woocommerce -#: includes/admin/class-wc-admin-reports.php:55 -msgid "Sales by product" -msgstr "Продажби по продукт" - -# @ woocommerce -#: includes/admin/class-wc-admin-reports.php:61 -msgid "Sales by category" -msgstr "Продажби по категория" - -# @ woocommerce -#: includes/admin/class-wc-admin-reports.php:67 -msgid "Coupons by date" -msgstr "Купони по дата" - -# @ woocommerce -#: includes/admin/class-wc-admin-reports.php:75 -#: includes/admin/reports/class-wc-report-customer-list.php:23 -msgid "Customers" -msgstr "Клиенти" - -# @ woocommerce -#: includes/admin/class-wc-admin-reports.php:78 -msgid "Customers vs. Guests" -msgstr "Клиенти срещу Гости" - -# @ woocommerce -#: includes/admin/class-wc-admin-reports.php:84 -msgid "Customer List" -msgstr "Списък клиенти" - -# @ woocommerce -#: includes/admin/class-wc-admin-reports.php:92 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:200 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:766 -#: includes/admin/reports/class-wc-report-stock.php:20 -#: includes/admin/reports/class-wc-report-stock.php:21 -msgid "Stock" -msgstr "Наличност" - -# @ woocommerce -#: includes/admin/class-wc-admin-reports.php:95 -msgid "Low in stock" -msgstr "Ниска наличност" - -#: includes/admin/class-wc-admin-reports.php:107 -msgid "Most Stocked" -msgstr "Най-много бройки на склад" - -# @ woocommerce -#: includes/admin/class-wc-admin-reports.php:118 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:75 -msgid "Taxes" -msgstr "Такси" - -#: includes/admin/class-wc-admin-reports.php:121 -msgid "Taxes by code" -msgstr "" - -#: includes/admin/class-wc-admin-reports.php:127 -msgid "Taxes by date" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-settings.php:52 -msgid "Action failed. Please refresh the page and retry." -msgstr "Действието беше неуспешно. Моля опитайте отново." - -# @ woocommerce -#: includes/admin/class-wc-admin-settings.php:63 -msgid "Your settings have been saved." -msgstr "Настройките ви са записани." - -# @ woocommerce -#: includes/admin/class-wc-admin-settings.php:119 -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "" -"Промените които правите ще бъдат изгубени ако излезете от текущата страница." - -# @ woocommerce -#: includes/admin/class-wc-admin-settings.php:466 -msgid "Hard Crop?" -msgstr "Изрязване?" - -# @ woocommerce -#: includes/admin/class-wc-admin-settings.php:491 -msgid "Select a page…" -msgstr "Избор страница…" - -# @ woocommerce -#: includes/admin/class-wc-admin-settings.php:514 -msgid "Choose a country…" -msgstr "Избор на държава…" - -# @ woocommerce -#: includes/admin/class-wc-admin-settings.php:538 -msgid "Choose countries…" -msgstr "Избор на държави…" - -# @ woocommerce -#: includes/admin/class-wc-admin-settings.php:544 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:460 -msgid "Select all" -msgstr "Избори всичко" - -# @ woocommerce -#: includes/admin/class-wc-admin-settings.php:544 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:460 -msgid "Select none" -msgstr "Никой" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:52 -msgid "Product Transients Cleared" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:93 -#, php-format -msgid "%d Transients Rows Cleared" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:102 -msgid "Roles successfully reset" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:114 -msgid "Terms successfully recounted" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:133 -#, php-format -msgid "There was an error calling %s::%s" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:136 -#, php-format -msgid "There was an error calling %s" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:155 -msgid "WC Transients" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:156 -msgid "Clear transients" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:157 -msgid "This tool will clear the product/shop transients cache." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:160 -msgid "Expired Transients" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:161 -msgid "Clear expired transients" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:162 -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:165 -msgid "Term counts" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:166 -msgid "Recount terms" -msgstr "Преброяване на термините" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:167 -msgid "" -"This tool will recount product terms - useful when changing your settings in " -"a way which hides products from the catalog." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:170 -msgid "Capabilities" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:171 -msgid "Reset capabilities" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:172 -msgid "" -"This tool will reset the admin, customer and shop_manager roles to default. " -"Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:175 -msgid "Customer Sessions" -msgstr "Сесии на клиенти" - -# @ woocommerce -#: includes/admin/class-wc-admin-status.php:176 -msgid "Clear all sessions" -msgstr "Изтриване на всички сесии" - -#: includes/admin/class-wc-admin-status.php:177 -msgid "" -"Warning This tool will delete all customer " -"session data from the database, including any current live carts." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-taxonomies.php:90 -#: includes/admin/class-wc-admin-taxonomies.php:179 -#: includes/widgets/class-wc-widget-layered-nav.php:81 -msgid "Display type" -msgstr "Вид на изглед" - -# @ woocommerce -#: includes/admin/class-wc-admin-taxonomies.php:94 -#: includes/admin/class-wc-admin-taxonomies.php:184 -msgid "Subcategories" -msgstr "Подкатегории" - -# @ woocommerce -#: includes/admin/class-wc-admin-taxonomies.php:95 -#: includes/admin/class-wc-admin-taxonomies.php:185 -msgid "Both" -msgstr "Всичко" - -# @ woocommerce -#: includes/admin/class-wc-admin-taxonomies.php:99 -#: includes/admin/class-wc-admin-taxonomies.php:190 -msgid "Thumbnail" -msgstr "Картинка" - -# @ woocommerce -#: includes/admin/class-wc-admin-taxonomies.php:103 -#: includes/admin/class-wc-admin-taxonomies.php:195 -msgid "Upload/Add image" -msgstr "Качване/Добавяне изображение" - -# @ woocommerce -#: includes/admin/class-wc-admin-taxonomies.php:104 -#: includes/admin/class-wc-admin-taxonomies.php:196 -msgid "Remove image" -msgstr "Премахни изображение" - -# @ woocommerce -#: includes/admin/class-wc-admin-taxonomies.php:129 -#: includes/admin/class-wc-admin-taxonomies.php:217 -msgid "Use image" -msgstr "Използвай изображение" - -# @ woocommerce -#: includes/admin/class-wc-admin-taxonomies.php:275 -msgid "" -"Product categories for your store can be managed here. To change the order " -"of categories on the front-end you can drag and drop to sort them. To see " -"more categories listed click the \"screen options\" link at the top of the " -"page." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-taxonomies.php:285 -msgid "" -"Shipping classes can be used to group products of similar type. These groups " -"can then be used by certain shipping methods to provide different rates to " -"different products." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-taxonomies.php:298 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:192 -msgid "Image" -msgstr "Изображение" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:48 -msgid "Welcome to WooCommerce" -msgstr "Добре дошли в WooCommerce" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:135 -#, php-format -msgid "Welcome to WooCommerce %s" -msgstr "Добре дошли в WooCommerce %s" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:140 -msgid "Thanks, all done!" -msgstr "Добре, вичко приключи!" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:142 -msgid "Thank you for updating to the latest version!" -msgstr "Благодарим за обновяването!" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:144 -msgid "Thanks for installing!" -msgstr "Благодарим за инсталирането!" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:146 -#, php-format -msgid "" -"%s WooCommerce %s is more powerful, stable, and secure than ever before. We " -"hope you enjoy it." -msgstr "" -"%s WooCommerce %s е вече по мощтен, стабилен и сигурен. Надяваме се да му се " -"насладите." - -# @ default -#: includes/admin/class-wc-admin-welcome.php:150 -#, php-format -msgid "Version %s" -msgstr "Версия %s" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:161 -msgid "What's New" -msgstr "Какво ново" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:163 -msgid "Credits" -msgstr "Кредитиране" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:186 -msgid "Security in mind" -msgstr "Сигурност" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:190 -msgid "Sucuri Safe Plugin" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:191 -msgid "" -"You will be happy to learn that WooCommerce has been audited and certified " -"by the Sucuri Security team. Whilst there is not much to be seen visually to " -"understand the amount of work that went into this audit, rest assured that " -"your website is powered by one of the most powerful and stable eCommerce " -"plugins available." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:194 -msgid "A Smoother Admin Experience" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:200 -msgid "New Product Panel" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:201 -msgid "" -"We have revised the product data panel making it cleaner, more streamlined, " -"and more logical. Adding products is a breeze!" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:206 -msgid "Nicer Order Screens" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:207 -msgid "" -"Order pages have had a cleanup, with a more easily scannable interface. We " -"particularly like the new status icons!" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:212 -msgid "Multi-Download Support" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:213 -msgid "" -"Products can have multiple downloadable files - purchasers will get access " -"to all the files added." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:218 -msgid "Less Taxing Taxes" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:224 -msgid "New Tax Input Panel" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:225 -msgid "" -"The tax input pages have been streamlined to make inputting taxes simpler - " -"adding multiple taxes for a single jurisdiction is now much easier using the " -"priority system. There is also CSV import/export support." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:229 -msgid "Improved Tax Options" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:230 -msgid "" -"As requested by some users, we now support taxing the billing address " -"instead of shipping (optional), and we allow you to choose which tax class " -"applies to shipping." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:235 -msgid "Product Listing Improvements Customers Will Love" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:241 -msgid "New Sorting Options" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:242 -msgid "Customers can now sort products by popularity and ratings." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:247 -msgid "Better Pagination and Result Counts" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:248 -msgid "" -"Numbered pagination has been added to core, and we show the number of " -"results found above the listings." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:253 -msgid "Inline Star Rating Display" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:254 -msgid "" -"We have added star ratings to the catalog which are pulled from reviews." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:262 -msgid "Under the Hood" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:266 -msgid "New product classes" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:267 -msgid "" -"The product classes have been rewritten and are now factory based. Much more " -"extendable, and easier to query products using the new get_product() function." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:271 -msgid "Capability overhaul" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:272 -msgid "" -"More granular capabilities for admin/shop manager roles covering products, " -"orders and coupons." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:276 -msgid "API Improvements" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:277 -msgid "" -"WC-API now has real endpoints, and we've optimised the gateways " -"API significantly by only loading gateways when needed." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:283 -msgid "Cache-friendly cart widgets" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:284 -msgid "" -"Cart widgets and other \"fragments\" are now pulled in via AJAX - this works " -"wonders with static page caching." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:288 -msgid "Session handling" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:289 -msgid "" -"PHP SESSIONS have been a problem for many users in the past, so we've " -"developed our own handler using cookies and options to make these more " -"reliable." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:293 -msgid "Retina Ready" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:294 -msgid "All graphics within WC have been optimised for HiDPI displays." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:301 -msgid "Better stock handling" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:302 -msgid "" -"We have added an option to hold stock for unpaid orders (defaults to " -"60mins). When this time limit is reached, and the order is not paid for, " -"stock is released and the order is cancelled." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:306 -msgid "Improved Line-item storage" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:307 -msgid "" -"We have changed how order items get stored making them easier (and faster) " -"to access for reporting. Order items are no longer serialised within an " -"order - they are stored within their own table." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:311 -msgid "Autoload" -msgstr "Автоматично зареждане" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:312 -msgid "" -"We have setup autoloading for classes - this has dramatically reduced memory " -"usage in 2.0." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:319 -msgid "Go to WooCommerce Settings" -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:337 -msgid "" -"WooCommerce is developed and maintained by a worldwide team of passionate " -"individuals and backed by an awesome developer community. Want to see your " -"name? Contribute to WooCommerce." -msgstr "" - -# @ woocommerce -#: includes/admin/class-wc-admin-welcome.php:363 -#, php-format -msgid "View %s" -msgstr "Преглед %s" - -# @ woocommerce -#: includes/admin/class-wc-admin.php:112 -#: includes/admin/settings/class-wc-settings-checkout.php:159 -msgid "Order Received" -msgstr "Получена поръчка" - -# @ woocommerce -#: includes/admin/wc-admin-functions.php:192 -msgid "Could not compile woocommerce.less:" -msgstr "" - -# @ woocommerce -#: includes/admin/importers/class-wc-tax-rate-importer.php:103 -#: includes/admin/importers/class-wc-tax-rate-importer.php:190 -#: includes/admin/importers/class-wc-tax-rate-importer.php:230 -#: includes/admin/importers/class-wc-tax-rate-importer.php:245 -msgid "Sorry, there has been an error." -msgstr "Съжаляваме, станала е някаква грешка." - -# @ woocommerce -#: includes/admin/importers/class-wc-tax-rate-importer.php:104 -msgid "The file does not exist, please try again." -msgstr "Файлът не съществува, моля опитайте отново." - -# @ woocommerce -#: includes/admin/importers/class-wc-tax-rate-importer.php:191 -msgid "The CSV is invalid." -msgstr "CSV файла е невалиден." - -# @ woocommerce -#: includes/admin/importers/class-wc-tax-rate-importer.php:202 -#, php-format -msgid "" -"Import complete - imported %s tax rates and skipped " -"%s." -msgstr "" -"Импортирането приключи, %s записа и %s " -"пропуска." - -# @ woocommerce -#: includes/admin/importers/class-wc-tax-rate-importer.php:212 -msgid "All done!" -msgstr "Всичко приключи успешно!" - -# @ woocommerce -#: includes/admin/importers/class-wc-tax-rate-importer.php:212 -msgid "View Tax Rates" -msgstr "Преглед на таксите" - -# @ woocommerce -#: includes/admin/importers/class-wc-tax-rate-importer.php:263 -msgid "Import Tax Rates" -msgstr "Импорт на такси" - -# @ woocommerce -#: includes/admin/importers/class-wc-tax-rate-importer.php:286 -msgid "" -"Hi there! Upload a CSV file containing tax rates to import the contents into " -"your shop. Choose a .csv file to upload, then click \"Upload file and import" -"\"." -msgstr "" -"Качване на CSV файл, съдържащ таксите готови за импорт във вашият магазин. " -"Изберете .csv файл за качване и натиснете \"Качване и импортиране от файл\"." - -# @ woocommerce -#: includes/admin/importers/class-wc-tax-rate-importer.php:288 -#, php-format -msgid "" -"Tax rates need to be defined with columns in a specific order (10 columns). " -"Click here to download a sample." -msgstr "" -"Файлът с таксите трябва да бъде във формат от 10 колони в строго определен " -"ред. Примерен файл може да си изтеглите от тук." - -# @ default -#: includes/admin/importers/class-wc-tax-rate-importer.php:296 -msgid "" -"Before you can upload your import file, you will need to fix the following " -"error:" -msgstr "" - -# @ default -#: includes/admin/importers/class-wc-tax-rate-importer.php:305 -msgid "Choose a file from your computer:" -msgstr "Избор на файл от вашият компютър:" - -# @ default -#: includes/admin/importers/class-wc-tax-rate-importer.php:311 -#, php-format -msgid "Maximum size: %s" -msgstr "Максимален размер: %s" - -# @ woocommerce -#: includes/admin/importers/class-wc-tax-rate-importer.php:316 -msgid "OR enter path to file:" -msgstr "ИЛИ въведете път до файла:" - -# @ woocommerce -#: includes/admin/importers/class-wc-tax-rate-importer.php:323 -msgid "Delimiter" -msgstr "Разделител" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:83 -msgid "Product name" -msgstr "Име на продукт" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:104 -msgid "Catalog/search" -msgstr "Каталог/търсене" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:105 -#: includes/admin/views/html-bulk-edit-product.php:158 -#: includes/admin/views/html-quick-edit-product.php:115 -msgid "Catalog" -msgstr "Каталог" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:106 -#: includes/admin/views/html-bulk-edit-product.php:159 -#: includes/admin/views/html-quick-edit-product.php:116 -msgid "Search" -msgstr "Търси" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:107 -#: includes/admin/views/html-bulk-edit-product.php:160 -#: includes/admin/views/html-quick-edit-product.php:117 -msgid "Hidden" -msgstr "Скрит" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:111 -msgid "Catalog visibility:" -msgstr "Видимост на каталог:" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:126 -msgid "" -"Define the loops this product should be visible in. The product will still " -"be accessible directly." -msgstr "" -"Избиране на страниците в които ще се показва продукта. Продуктът все пак ще " -"продължи да се показва директно." - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:132 -msgid "Enable this option to feature this product." -msgstr "Изберете тази опция за да отличите този продукт." - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:134 -msgid "Featured Product" -msgstr "Отличени продукти" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:137 -msgid "OK" -msgstr "Добре" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:138 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:169 -#: templates/myaccount/my-orders.php:77 -msgid "Cancel" -msgstr "Отказ" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:197 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:135 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:52 -#: includes/admin/views/html-quick-edit-product.php:11 -msgid "SKU" -msgstr "SKU" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:202 -#: includes/admin/views/html-bulk-edit-product.php:10 -#: includes/admin/views/html-email-template-preview.php:10 -#: includes/admin/views/html-quick-edit-product.php:22 -#: includes/widgets/class-wc-widget-products.php:54 templates/cart/cart.php:28 -#: templates/emails/admin-new-order.php:24 -#: templates/emails/customer-completed-order.php:25 -#: templates/emails/customer-invoice.php:29 -#: templates/emails/customer-note.php:29 -#: templates/emails/customer-processing-order.php:25 -msgid "Price" -msgstr "Цена" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:204 -#: includes/admin/reports/class-wc-report-sales-by-category.php:138 -msgid "Categories" -msgstr "Категории" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:205 -msgid "Tags" -msgstr "Етикети" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:208 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:93 -#: includes/admin/reports/class-wc-report-coupon-usage.php:313 -#: includes/admin/reports/class-wc-report-customers.php:199 -#: includes/admin/reports/class-wc-report-sales-by-category.php:210 -#: includes/admin/reports/class-wc-report-sales-by-date.php:158 -#: includes/admin/reports/class-wc-report-sales-by-product.php:323 -#: includes/widgets/class-wc-widget-products.php:53 -#: templates/myaccount/my-orders.php:33 -msgid "Date" -msgstr "Дата" - -# @ default -#: includes/admin/post-types/class-wc-admin-cpt-product.php:251 -msgid "Edit this item" -msgstr "Редакиране на този продукт" - -# @ default -#: includes/admin/post-types/class-wc-admin-cpt-product.php:252 -msgid "Edit this item inline" -msgstr "Бързо редактиране на този продукт" - -# @ default -#: includes/admin/post-types/class-wc-admin-cpt-product.php:252 -msgid "Quick Edit" -msgstr "Бърза редакция" - -# @ default -#: includes/admin/post-types/class-wc-admin-cpt-product.php:256 -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:107 -msgid "Restore this item from the Trash" -msgstr "Върни този продукт от кошчето" - -# @ default -#: includes/admin/post-types/class-wc-admin-cpt-product.php:256 -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:107 -msgid "Restore" -msgstr "Връщане" - -# @ default -#: includes/admin/post-types/class-wc-admin-cpt-product.php:258 -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:109 -msgid "Move this item to the Trash" -msgstr "Премести този продукт в кошчето" - -# @ default -#: includes/admin/post-types/class-wc-admin-cpt-product.php:258 -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:109 -msgid "Trash" -msgstr "Кошче" - -# @ default -#: includes/admin/post-types/class-wc-admin-cpt-product.php:260 -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:111 -msgid "Delete this item permanently" -msgstr "Изтрий този продукт за постоянно" - -# @ default -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:260 -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:111 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:65 -msgid "Delete Permanently" -msgstr "Изтриване за постоянно" - -# @ default -#: includes/admin/post-types/class-wc-admin-cpt-product.php:265 -#, php-format -msgid "Preview “%s”" -msgstr "Предварителен преглед “%s”" - -# @ default -#: includes/admin/post-types/class-wc-admin-cpt-product.php:265 -msgid "Preview" -msgstr "Предварителен преглед" - -# @ default -#: includes/admin/post-types/class-wc-admin-cpt-product.php:267 -#, php-format -msgid "View “%s”" -msgstr "Преглед “%s”" - -# @ default -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:267 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:298 -#: includes/admin/reports/class-wc-report-stock.php:114 -#: templates/myaccount/my-orders.php:82 -msgid "View" -msgstr "Преглед" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:317 -msgid "Grouped" -msgstr "Групирани" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:319 -msgid "External/Affiliate" -msgstr "Външен/Афилейт" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:323 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:514 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:51 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:213 -msgid "Virtual" -msgstr "Виртуален" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:325 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:507 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:58 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:211 -msgid "Downloadable" -msgstr "За изтегляне" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:327 -msgid "Simple" -msgstr "Обикновен" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:331 -msgid "Variable" -msgstr "Вариация" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:354 -msgid "Toggle featured" -msgstr "Маркирай като избран" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:356 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:135 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:200 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:202 -#: includes/admin/views/html-admin-page-status-report.php:40 -#: includes/admin/views/html-admin-page-status-report.php:77 -#: includes/admin/views/html-admin-page-status-report.php:102 -#: includes/admin/views/html-admin-page-status-report.php:271 -#: includes/admin/views/html-bulk-edit-product.php:176 -#: includes/admin/views/html-bulk-edit-product.php:213 -msgid "Yes" -msgstr "Да" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:358 -#: includes/admin/views/html-admin-page-status-report.php:40 -#: includes/admin/views/html-admin-page-status-report.php:77 -#: includes/admin/views/html-admin-page-status-report.php:102 -#: includes/admin/views/html-admin-page-status-report.php:271 -#: includes/admin/views/html-bulk-edit-product.php:177 -#: includes/admin/views/html-bulk-edit-product.php:214 -msgid "No" -msgstr "Не" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:449 -msgid "Sort Products" -msgstr "Подредба на продукти" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:469 -msgid "Show all product types" -msgstr "Показване на всички типове" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:481 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:37 -msgid "Grouped product" -msgstr "Групиран продукт" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:484 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:38 -msgid "External/Affiliate product" -msgstr "Външен/Афилейт продукт" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:487 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:39 -msgid "Variable product" -msgstr "Продукт с вариации" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-product.php:490 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:36 -msgid "Simple product" -msgstr "Обикновен продукт" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:53 -#: templates/checkout/form-coupon.php:25 -msgid "Coupon code" -msgstr "Код на купона" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:73 -msgid "Code" -msgstr "Код" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:74 -msgid "Coupon type" -msgstr "Тип купон" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:75 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:66 -#: includes/admin/reports/class-wc-report-sales-by-date.php:320 -msgid "Coupon amount" -msgstr "Наличност на купони" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:77 -msgid "Product IDs" -msgstr "ID-та на продукти" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:78 -msgid "Usage / Limit" -msgstr "Използване / Лимит" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:79 -msgid "Expiry date" -msgstr "Дата на изтичане" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:98 -msgid "Edit coupon" -msgstr "Редакция купон" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:156 -#, php-format -msgid "%s / %s" -msgstr "" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:158 -#, php-format -msgid "%s / ∞" -msgstr "" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:204 -msgid "Show all types" -msgstr "Показване на всички типове" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:88 -msgid "Purchased" -msgstr "Поръчан" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:89 -msgid "Ship to" -msgstr "Доставка до" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:94 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:43 -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:62 -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:169 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:129 -#: templates/cart/cart.php:30 templates/checkout/review-order.php:19 -#: templates/myaccount/my-orders.php:35 templates/order/order-details.php:21 -msgid "Total" -msgstr "Общо" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:95 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:34 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:81 -#: includes/admin/reports/class-wc-report-customer-list.php:244 -#: includes/admin/reports/class-wc-report-stock.php:141 -msgid "Actions" -msgstr "Действия" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:119 -msgid "Unpublished" -msgstr "Непубликуван" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:121 -msgid "Y/m/d g:i:s A" -msgstr "" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:126 -msgid "Y/m/d" -msgstr "" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:147 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:185 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:213 -msgid "Via" -msgstr "чрез" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:151 -#, php-format -msgid "%d item" -msgid_plural "%d items" -msgstr[0] "%d артикул" -msgstr[1] "%d артикули" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:202 -#, php-format -msgid "plus %d other note" -msgid_plural "plus %d other notes" -msgstr[0] "плюс %d друа бележка" -msgstr[1] "плюс %d друи бележки" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:220 -msgid "Billing:" -msgstr "Фактуриране:" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:223 -#: templates/emails/admin-new-order.php:56 -#: templates/emails/customer-completed-order.php:57 -#: templates/emails/customer-note.php:61 -#: templates/emails/customer-processing-order.php:57 -#: templates/emails/plain/admin-new-order.php:45 -#: templates/emails/plain/customer-completed-order.php:44 -#: templates/emails/plain/customer-note.php:52 -#: templates/emails/plain/customer-processing-order.php:44 -msgid "Tel:" -msgstr "Тел.:" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:266 -#, php-format -msgid "%s by %s" -msgstr "%s от %s" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:285 -msgid "Processing" -msgstr "Обработка" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:292 -msgid "Complete" -msgstr "Завършен" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:384 -msgid "Show all statuses" -msgstr "Показване на всички статуси" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:403 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:428 -msgid "Show all customers" -msgstr "Показване на виски клиенти" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:645 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:646 -msgid "Mark processing" -msgstr "Маркирай като обработващи се" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:648 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:649 -msgid "Mark on-hold" -msgstr "Маркирай като задържан" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:651 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:652 -msgid "Mark completed" -msgstr "Маркирай като изпълнени" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:693 -msgid "Order status changed by bulk edit:" -msgstr "" - -# @ default -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:715 -#, php-format -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "" -msgstr[1] "" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt.php:44 -#, php-format -msgid "Insert into %s" -msgstr "Вмъкване към %s" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-cpt.php:45 -#, php-format -msgid "Uploaded to this %s" -msgstr "Качено към %s" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:89 -msgid "Product Short Description" -msgstr "Кратко описание на продукта" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:90 -#: includes/admin/settings/class-wc-settings-products.php:283 -#: includes/admin/views/html-bulk-edit-product.php:4 -#: includes/admin/views/html-quick-edit-product.php:4 -msgid "Product Data" -msgstr "Данни за продукт" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:91 -msgid "Product Gallery" -msgstr "Галерия на продукт" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:94 -msgid "Order Data" -msgstr "Дата на поръчка" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:95 -msgid "Order Items" -msgstr "Артикули в поръчката" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:96 -msgid "Order Totals" -msgstr "Обща стойност на поръчката" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:98 -msgid "Downloadable Product Permissions" -msgstr "Позволения на продуктите за изтегляне" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:98 -msgid "" -"Note: Permissions for order items will automatically be granted when the " -"order status changes to processing/completed." -msgstr "" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:99 -msgid "Order Actions" -msgstr "Действия на поръчката" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:102 -msgid "Coupon Data" -msgstr "Дата на купон" - -# @ woocommerce -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:133 -#: templates/single-product-reviews.php:36 -#: templates/single-product-reviews.php:42 -msgid "Reviews" -msgstr "Отзиви" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:37 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:84 -#: includes/admin/settings/class-wc-settings-general.php:25 -msgid "General" -msgstr "Основни" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:42 -msgid "Usage Restriction" -msgstr "Ограничения" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:47 -msgid "Usage Limits" -msgstr "Ограничение за използване" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:63 -msgid "Discount type" -msgstr "Тип намаление:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:66 -msgid "Value of the coupon." -msgstr "Стойност на купона." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:69 -msgid "Allow free shipping" -msgstr "Разреши безплатна доставка" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:69 -#, php-format -msgid "" -"Check this box if the coupon grants free shipping. The free " -"shipping method must be enabled with the \"must use coupon\" setting." -msgstr "" -"Изберете тази опция ако купонът предлага безплатна доставка. безплатната доставка трябва да бъде позволена с опция за изискване на " -"купон за безплатна доставка." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:72 -msgid "Apply before tax" -msgstr "Приложи преди таксуване" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:72 -msgid "" -"Check this box if the coupon should be applied before calculating cart tax." -msgstr "" -"Използвайте тази опция ако купонът трябва да бъде приложен перди начисляване " -"на таксите." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:75 -msgid "Coupon expiry date" -msgstr "Дата на изтичане на купона" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:75 -msgctxt "placeholder" -msgid "YYYY-MM-DD" -msgstr "ГГГГ-ММ-ДД" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:85 -msgid "Minimum spend" -msgstr "Минимално похарчване" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:85 -msgid "No minimum" -msgstr "Без минимум" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:85 -msgid "" -"This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:88 -msgid "Individual use only" -msgstr "Индивидуално ползване" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:88 -msgid "" -"Check this box if the coupon cannot be used in conjunction with other " -"coupons." -msgstr "" -"Изберете тази опция, ако желаете купонът да не може да бъде използван заедно " -"с други купони." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:91 -msgid "Exclude sale items" -msgstr "Пропусни продуктите в разпродажба" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:91 -msgid "" -"Check this box if the coupon should not apply to items on sale. Per-item " -"coupons will only work if the item is not on sale. Per-cart coupons will " -"only work if there are no sale items in the cart." -msgstr "" -"Изберете тази опция ако купонът не трябва да се прилага към продукти които " -"са в разпродажба. " - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:98 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:95 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:585 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:602 -#: includes/admin/reports/class-wc-report-sales-by-product.php:177 -msgid "Search for a product…" -msgstr "Търсене на продукт…" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:111 -msgid "" -"Products which need to be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are discounted." -msgstr "" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:116 -msgid "Exclude products" -msgstr "Пропускане на продукти" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:117 -msgid "Search for a product…" -msgstr "Търсене на продукт..." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:130 -msgid "" -"Products which must not be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are not discounted." -msgstr "" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:138 -msgid "Any category" -msgstr "Всички категории" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:146 -msgid "" -"A product must be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will be discounted." -msgstr "" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:151 -msgid "Exclude categories" -msgstr "Пропусни категории" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:152 -msgid "No categories" -msgstr "Без категории" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:160 -msgid "" -"Product must not be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will not be discounted." -msgstr "" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:166 -msgid "Email restrictions" -msgstr "Ограничения на email" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:166 -msgid "No restrictions" -msgstr "Без ограничение" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:166 -msgid "" -"List of emails to check against the customer's billing email when an order " -"is placed." -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:178 -msgid "Usage limit per coupon" -msgstr "Ограничаване използването на купон" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:178 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:190 -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "Неограничено използване" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:178 -msgid "How many times this coupon can be used before it is void." -msgstr "Колко пъти този купон може да бъде използван преди да стане невалиден." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:184 -msgid "Limit usage to X items" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:184 -msgctxt "placeholder" -msgid "Apply to all qualifying items in cart" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:184 -msgid "" -"The maximum number of individual items this coupon can apply to when using " -"product discounts. Leave blank to apply to all qualifying items in cart." -msgstr "" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:190 -msgid "Usage limit per user" -msgstr "Ограничения за потребител" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:190 -msgid "" -"How many times this coupon can be used by an invidual user. Uses billing " -"email for guests, and user ID for logged in users." -msgstr "" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:224 -msgid "" -"Coupon code already exists - customers will use the latest coupon with this " -"code." -msgstr "" -"Купонът вече съществува - клиентите ще използват обновения купон с този код." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:35 -msgid "Resend order emails" -msgstr "Изпрати повторно писмата за поръчките" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:52 -msgid "Generate Download Permissions" -msgstr "Генериране на права за изтегляне" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:58 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:91 -msgid "Apply" -msgstr "Приложи" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:67 -msgid "Move to Trash" -msgstr "Преместване в коша" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:72 -msgid "Save Order" -msgstr "Запазване" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:72 -msgid "Save/update the order" -msgstr "Запазване/обновяване на поръчка" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:139 -#: templates/order/order-details.php:16 -msgid "Order Details" -msgstr "Детайли за поръчката" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:142 -msgid "Order number" -msgstr "Номер поръчка" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:145 -msgid "Customer IP:" -msgstr "IP на клиент:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:150 -msgid "General Details" -msgstr "Основна информация" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:152 -msgid "Order date:" -msgstr "Поръчка дата:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:153 -msgid "h" -msgstr "ч" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:153 -#: includes/admin/settings/class-wc-settings-products.php:311 -msgid "m" -msgstr "м" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:156 -msgid "Order status:" -msgstr "Поръчка статус:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:167 -msgid "Customer:" -msgstr "" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:182 -msgid "Billing Details" -msgstr "Адрес за фактуриране" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:190 -msgid "No billing address set." -msgstr "Няма зададен адрес за фактуриране." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:208 -msgid "Payment Method" -msgstr "Начин за плащане" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:213 -msgid "Load billing address" -msgstr "Зареждане на адрес за фактуриране" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:230 -msgid "Payment Method:" -msgstr "Начин за плащане:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:232 -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:33 -#: includes/admin/post-types/meta-boxes/views/html-order-shipping.php:12 -#: includes/admin/post-types/meta-boxes/views/html-order-tax.php:8 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:542 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:543 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:103 -#: templates/order/order-details.php:119 templates/order/order-details.php:134 -msgid "N/A" -msgstr "Няма" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:245 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:247 -#: includes/admin/post-types/meta-boxes/views/html-order-shipping.php:30 -#: includes/admin/post-types/meta-boxes/views/html-order-shipping.php:32 -msgid "Other" -msgstr "Друго" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:261 -msgid "Shipping Details" -msgstr "Допълнение към доставката" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:269 -msgid "No shipping address set." -msgstr "Няма зададен адрес за доставка." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:282 -msgid "Customer Note" -msgstr "Клиентски бележка" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:287 -msgid "Load shipping address" -msgstr "Зареждане адрес за доставка" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:287 -msgid "Copy from billing" -msgstr "Копиране от фактурирането" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:304 -msgid "Customer Note:" -msgstr "Бележка от клиента:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:305 -msgid "Customer's notes about the order" -msgstr "" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-downloads.php:56 -msgid "Choose a downloadable product…" -msgstr "Избор на продукт за изтегляне…" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-downloads.php:85 -msgid "Grant Access" -msgstr "Даване на достъп" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-downloads.php:123 -msgid "" -"Could not grant access - the user may already have permission for this file " -"or billing email is not set. Ensure the billing email is set, and the order " -"has been saved." -msgstr "" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-downloads.php:146 -msgid "Are you sure you want to revoke access to this download?" -msgstr "" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:33 -msgid "Item" -msgstr "Артикул" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:38 -msgid "Tax Class" -msgstr "Клас и такса" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:41 -#: templates/checkout/form-pay.php:20 -msgid "Qty" -msgstr "Кол." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:83 -msgid "Delete Lines" -msgstr "Изтриване на ред" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:85 -msgid "Stock Actions" -msgstr "Действия с количества" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:86 -msgid "Reduce Line Stock" -msgstr "Намаляне" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:87 -msgid "Increase Line Stock" -msgstr "Увеличение" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:97 -msgid "Add item(s)" -msgstr "Добави продукти" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:98 -msgid "Add fee" -msgstr "Добави такса" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:44 -#, php-format -msgid "added %s ago" -msgstr "добавено преди %s" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:45 -#, php-format -msgid "by %s" -msgstr "от %s" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:52 -msgid "There are no notes for this order yet." -msgstr "Все още няма бележки по тази поръчка." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:58 -msgid "Add note" -msgstr "Добави бележка" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:64 -#: includes/emails/class-wc-email-customer-note.php:31 -msgid "Customer note" -msgstr "Клиентска бележка" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:65 -msgid "Private note" -msgstr "Лична бележка" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:67 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:563 -msgid "Add" -msgstr "Добавяне" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:31 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:62 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:94 -#: includes/admin/settings/class-wc-settings-shipping.php:25 -#: includes/admin/settings/class-wc-settings-tax.php:264 -#: includes/admin/settings/class-wc-settings-tax.php:381 -#: includes/admin/views/html-admin-page-addons.php:13 -#: templates/cart/cart-shipping.php:93 -msgid "Shipping" -msgstr "Доставка" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:66 -msgid "+ Add shipping cost" -msgstr "+ Добавяне на такса за доставка" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:66 -msgid "These are the shipping and handling costs for the order." -msgstr "" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:106 -msgid "+ Add tax row" -msgstr "+ Добави такса за реда" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:106 -msgid "" -"These rows contain taxes for this order. This allows you to display multiple " -"or compound taxes rather than a single total." -msgstr "" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:113 -msgid "Order Discount" -msgstr "Намаление за поръчката" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:120 -#: templates/cart/cart-totals.php:75 templates/checkout/review-order.php:79 -msgid "Order Total" -msgstr "ОБЩО:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:148 -msgid "Calculate Tax" -msgstr "Изчисли такса" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:150 -msgid "Calculate Total" -msgstr "Изчисляване на общо" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:42 -msgid "Product Type" -msgstr "Типове продукти" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:52 -msgid "Virtual products are intangible and aren't shipped." -msgstr "" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:59 -msgid "Downloadable products give access to a file upon purchase." -msgstr "" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:89 -#: includes/admin/settings/class-wc-settings-products.php:41 -msgid "Inventory" -msgstr "Инвентар" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:99 -msgid "Linked Products" -msgstr "Свързани продукти" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:114 -msgid "Advanced" -msgstr "Разширени" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:135 -msgid "Stock Keeping Unit" -msgstr "Уникален стоков номер" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:135 -msgid "" -"SKU refers to a Stock-keeping unit, a unique identifier for each distinct " -"product and service that can be purchased." -msgstr "" -"SKU означава продуктов код, уникален идентификатор за всеки отделен продукт " -"по който се осъществява пазаруването." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:146 -msgid "Product URL" -msgstr "URL на продукта" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:146 -msgid "Enter the external URL to the product." -msgstr "" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:149 -msgid "Button text" -msgstr "Текст на бутон" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:149 -msgctxt "placeholder" -msgid "Buy product" -msgstr "купи продукт" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:149 -msgid "This text will be shown on the button linking to the external product." -msgstr "" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:156 -msgid "Regular Price" -msgstr "Редовна цена" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:159 -msgid "Sale Price" -msgstr "Цена в разпродажба" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:159 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:76 -msgid "Schedule" -msgstr "Планиране" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:166 -msgid "Sale Price Dates" -msgstr "" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:167 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:84 -msgctxt "placeholder" -msgid "From…" -msgstr "От…" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:168 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:88 -msgctxt "placeholder" -msgid "To…" -msgstr "За…" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:180 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:143 -msgid "Downloadable Files" -msgstr "Изтеглени файлове" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:185 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:147 -msgid "This is the name of the download shown to the customer." -msgstr "" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:186 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:148 -msgid "File URL" -msgstr "Адрес на файла" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:186 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:148 -msgid "" -"This is the URL or absolute path to the file which customers will get access " -"to." -msgstr "" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:201 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:163 -msgid "Add File" -msgstr "Добавяне файл" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:221 -msgid "Download Limit" -msgstr "Лимит за изтегляния" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:221 -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:19 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:190 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:196 -msgid "Unlimited" -msgstr "Неограничено" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:221 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:189 -msgid "Leave blank for unlimited re-downloads." -msgstr "Оставете празно за неограничени изтегляния." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:227 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:772 -msgid "Download Expiry" -msgstr "Изтеглянията приключват" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:227 -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:23 -msgid "Never" -msgstr "Никога" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:227 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:195 -msgid "" -"Enter the number of days before a download link expires, or leave blank." -msgstr "" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:233 -msgid "Download Type" -msgstr "Тип на свалянето" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:233 -#, php-format -msgid "Choose a download type - this controls the schema." -msgstr "" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:234 -msgid "Standard Product" -msgstr "Стандартен продукт" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:235 -msgid "Application/Software" -msgstr "Софтуер и програми" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:236 -msgid "Music" -msgstr "Музика" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:248 -#: includes/admin/views/html-bulk-edit-product.php:58 -#: includes/admin/views/html-quick-edit-product.php:38 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:110 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:84 -msgid "Tax Status" -msgstr "Статус на такса" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:249 -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:34 -#: includes/admin/views/html-bulk-edit-product.php:64 -#: includes/admin/views/html-quick-edit-product.php:43 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:114 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:88 -msgid "Taxable" -msgstr "Таксуван" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:250 -#: includes/admin/views/html-bulk-edit-product.php:65 -#: includes/admin/views/html-quick-edit-product.php:44 -msgid "Shipping only" -msgstr "Само доставка" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:251 -#: includes/admin/reports/class-wc-report-sales-by-category.php:167 -#: includes/admin/views/html-bulk-edit-product.php:66 -#: includes/admin/views/html-quick-edit-product.php:45 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:115 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:89 -msgid "None" -msgstr "Нищо" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:261 -#: includes/admin/settings/class-wc-settings-tax.php:381 -#: includes/admin/views/html-bulk-edit-product.php:77 -#: includes/admin/views/html-quick-edit-product.php:56 -msgid "Tax Class" -msgstr "Клас на такса" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:282 -#: includes/admin/views/html-bulk-edit-product.php:207 -#: includes/admin/views/html-quick-edit-product.php:153 -msgid "Manage stock?" -msgstr "С наличности?" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:282 -msgid "" -"Enable stock management at product level (not needed if managing stock at " -"variation level)" -msgstr "" -"Разреши управлението на наличности на ниво придукт (не е необходимо ако се " -"използват наличностите на ниво вариация)" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:289 -#: includes/admin/views/html-bulk-edit-product.php:226 -#: includes/admin/views/html-bulk-edit-product.php:242 -#: includes/admin/views/html-quick-edit-product.php:157 -msgid "Stock Qty" -msgstr "Брой наличност" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:289 -msgid "" -"Stock quantity. If this is a variable product this value will be used to " -"control stock for all variations, unless you define stock at variation level." -msgstr "" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:300 -#: includes/admin/reports/class-wc-report-stock.php:140 -msgid "Stock status" -msgstr "Статус на наличност" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:303 -msgid "" -"Controls whether or not the product is listed as \"in stock\" or \"out of " -"stock\" on the frontend." -msgstr "" -"Контролира се дали продукта да бъде отбелязван като наличен или неналичен на " -"клиентската страница." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:310 -msgid "Allow Backorders?" -msgstr "Разреши връщания?" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:311 -#: includes/admin/views/html-bulk-edit-product.php:253 -#: includes/admin/views/html-quick-edit-product.php:172 -msgid "Do not allow" -msgstr "Не разешавай" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:312 -#: includes/admin/views/html-bulk-edit-product.php:254 -#: includes/admin/views/html-quick-edit-product.php:173 -msgid "Allow, but notify customer" -msgstr "Разреши, но с уведомление към клиента" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:313 -#: includes/admin/views/html-bulk-edit-product.php:255 -#: includes/admin/views/html-quick-edit-product.php:174 -msgid "Allow" -msgstr "Разреши" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:314 -msgid "" -"If managing stock, this controls whether or not backorders are allowed for " -"this product and variations. If enabled, stock quantity can go below 0." -msgstr "" -"Ако се управляват наличности, тази опция позволява да бъдат подавани заявки " -"за връщания на продукт и вариации. Ако е разрешено стоковата наличност може " -"да падне и под 0." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:325 -msgid "Sold Individually" -msgstr "Продавай разделно" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:325 -msgid "" -"Enable this to only allow one of this item to be bought in a single order" -msgstr "" -"Изберете тази опция, ако желаете само по един продукт да бъде купуван за " -"поръчка." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:343 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:767 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:96 -#: includes/admin/views/html-bulk-edit-product.php:103 -#: includes/admin/views/html-quick-edit-product.php:84 -#: templates/single-product/product-attributes.php:28 -msgid "Weight" -msgstr "Тегло" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:343 -msgid "Weight in decimal form" -msgstr "Тежест в десетичен формат" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:348 -#: templates/single-product/product-attributes.php:37 -msgid "Dimensions" -msgstr "Размери" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:350 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:768 -#: includes/admin/views/html-bulk-edit-product.php:143 -#: includes/admin/views/html-quick-edit-product.php:97 -msgid "Length" -msgstr "Дължина" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:351 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:769 -#: includes/admin/views/html-bulk-edit-product.php:144 -#: includes/admin/views/html-quick-edit-product.php:98 -msgid "Width" -msgstr "Ширина" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:352 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:770 -#: includes/admin/views/html-bulk-edit-product.php:145 -#: includes/admin/views/html-quick-edit-product.php:99 -msgid "Height" -msgstr "Височина" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:354 -msgid "LxWxH in decimal form" -msgstr "ДxШxВ в десетичен формат" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:371 -msgid "No shipping class" -msgstr "Няма клас на доставка" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:377 -msgid "Shipping class" -msgstr "Клас на доставка" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:377 -msgid "" -"Shipping classes are used by certain shipping methods to group similar " -"products." -msgstr "" -"Класовете за доставки се използват за някой методи при групирането на сходни " -"продукти." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:389 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:753 -msgid "Close all" -msgstr "Затвори всички" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:389 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:753 -msgid "Expand all" -msgstr "Открий всички" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:448 -msgid "Select terms" -msgstr "Избор термини" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:462 -msgid "Add new" -msgstr "Добавяне на нов" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:475 -msgid "Pipe (|) separate terms" -msgstr "Отвесна черта (|) за разделител на термините" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:565 -msgid "Custom product attribute" -msgstr "Потребителски атрибут за продукта" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:577 -msgid "Save attributes" -msgstr "Запис на атрибутите" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:584 -msgid "Up-Sells" -msgstr "По-скъпи продажби" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:599 -msgid "" -"Up-sells are products which you recommend instead of the currently viewed " -"product, for example, products that are more profitable or better quality or " -"more expensive." -msgstr "" -"\"По-скъпи продажби\" са предложения за покупка на продукти които са с по-" -"висока цена от този, пример за това са такива които са по-качествени или " -"удобни, но и по-скъпи." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:601 -msgid "Cross-Sells" -msgstr "Свързани продажби" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:616 -msgid "" -"Cross-sells are products which you promote in the cart, based on the current " -"product." -msgstr "" -"\"Свързани продажби\" са предложения за прокупка промотирани в страницата на " -"кошницата на базата на текущия продукт." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:626 -msgid "Choose a grouped product…" -msgstr "Изберете групиран продукт…" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:656 -msgid "Grouping" -msgstr "Групиране" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:656 -msgid "Set this option to make this product part of a grouped product." -msgstr "Изберете тази опция за да направите този продукт част от група." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:676 -msgid "Purchase Note" -msgstr "Бележка при поръчка" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:676 -msgid "Enter an optional note to send the customer after purchase." -msgstr "" -"Въведете по желание бележка която да бъде изпратена на клиента след покупка." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:683 -msgid "Menu order" -msgstr "Ред на менюто" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:683 -msgid "Custom ordering position." -msgstr "Потребителска подредба." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:691 -msgid "Enable reviews" -msgstr "Разрешаване на ревюта" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:744 -msgid "" -"Before adding variations, add and save some attributes on the " -"Attributes tab." -msgstr "" -"Преди да добавите варияция, добавете и запишете някои атрибути от " -"разделаАтрибути." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:746 -msgid "Learn more" -msgstr "Научи повече" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:754 -msgid "Bulk edit:" -msgstr "Групова редакция:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:756 -msgid "Toggle "Enabled"" -msgstr "Маркирай "Включен"" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:757 -msgid "Toggle "Downloadable"" -msgstr "Маркирай "За изтегляне"" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:758 -msgid "Toggle "Virtual"" -msgstr "Маркирай "Виртуален"" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:759 -msgid "Delete all variations" -msgstr "Изтриване на всички вариации" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:760 -msgid "Prices" -msgstr "Цени" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:761 -msgid "Prices increase by (fixed amount or %)" -msgstr "Увеличи с (фиксирана ставка или %)" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:762 -msgid "Prices decrease by (fixed amount or %)" -msgstr "Намали с (фиксирана ставка или %)" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:763 -msgid "Sale prices" -msgstr "Цени в разпродажба" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:764 -msgid "Sale prices increase by (fixed amount or %)" -msgstr "Увеличи с (фиксирана ставка или %)" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:765 -msgid "Sale prices decrease by (fixed amount or %)" -msgstr "Намали с (фиксирана ставка или %)" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:771 -msgid "Download limit" -msgstr "Лимит изтегляния" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:775 -#: includes/admin/views/html-report-by-date.php:31 -msgid "Go" -msgstr "Иди" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:872 -msgid "Add Variation" -msgstr "Добави вариация" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:874 -msgid "Link all variations" -msgstr "Свързване на всички варияции" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:876 -msgid "Default selections:" -msgstr "Избрани по подразбиране:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:889 -#: includes/admin/settings/class-wc-settings-shipping.php:214 -msgid "No default" -msgstr "Няма предефинирана" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:993 -msgid "Product SKU must be unique." -msgstr "Продуктовия SKU код трябва да е уникален." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:44 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:104 -msgid "Delete image" -msgstr "Изтриване на изображения" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:55 -msgid "Add product gallery images" -msgstr "Добави изображения за галерията на продукта" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:81 -msgid "Add Images to Product Gallery" -msgstr "Добави изображения към галерията на продукта" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:83 -msgid "Add to gallery" -msgstr "Добави към галерията" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:6 -msgid "Revoke Access" -msgstr "Преустанови достъп" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:9 -#, php-format -msgid "File %d: %s" -msgstr "Файл %d: %s" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:9 -#, php-format -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "Изтеглено %s път" -msgstr[1] "Изтеглено %s пъти" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:16 -msgid "Downloads Remaining" -msgstr "Оставащи изтегляния" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:22 -msgid "Access Expires" -msgstr "Достъпът изтича" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:12 -msgid "Fee" -msgstr "Такса" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:16 -msgid "Fee Name" -msgstr "Име на вноска" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:31 -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:134 -msgid "Tax class" -msgstr "Клас на такса" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:10 -msgid "Product ID:" -msgstr "Продукт ID:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:13 -msgid "Variation ID:" -msgstr "Варияция ID:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:16 -msgid "Product SKU:" -msgstr "Продукт SKU:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:74 -msgid "Add meta" -msgstr "Добавяне мета" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:167 -#: templates/cart/mini-cart.php:59 -msgid "Subtotal" -msgstr "Общо" - -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:167 -msgid "Before pre-tax discounts." -msgstr "Преди намаленията от таксите." - -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:169 -msgid "After pre-tax discounts." -msgstr "След намаленията на таксите" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-shipping.php:6 -msgid "Label" -msgstr "Етикет" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-shipping.php:11 -msgid "Shipping Method" -msgstr "Метод за доставка" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-shipping.php:39 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:566 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:567 -msgid "0.00" -msgstr "0.00" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-tax.php:7 -msgid "Tax Rate" -msgstr "Такса" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-tax.php:17 -msgid "Sales Tax" -msgstr "Такса разпродажба" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-order-tax.php:21 -msgid "Shipping Tax" -msgstr "Такса доставка" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-product-download.php:3 -#: includes/admin/post-types/meta-boxes/views/html-product-variation-download.php:2 -msgid "File Name" -msgstr "Име на файл" - -#: includes/admin/post-types/meta-boxes/views/html-product-download.php:4 -#: includes/admin/post-types/meta-boxes/views/html-product-variation-download.php:3 -msgid "http://" -msgstr "" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-product-download.php:5 -#: includes/admin/post-types/meta-boxes/views/html-product-variation-download.php:4 -msgid "Choose file" -msgstr "Избор файл" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-product-download.php:5 -#: includes/admin/post-types/meta-boxes/views/html-product-variation-download.php:4 -msgid "Insert file URL" -msgstr "Вмъкнете URL на файла" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:20 -msgid "Any" -msgstr "Всички" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:52 -msgid "" -"Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "" -"Въведи SKU на тази варияция или остави празно за да се използва оригиналното." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:63 -msgid "Stock Qty:" -msgstr "Брой наличност:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:63 -msgid "" -"Enter a quantity to enable stock management at variation level, or leave " -"blank to use the parent product's options." -msgstr "" -"Въведи брой за да се разрши управлението на наличности на ниво варияция, или " -"остави празно за да се използват оригиналните настройки." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:72 -msgid "Regular Price:" -msgstr "Редовна цена:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:73 -msgid "Variation price (required)" -msgstr "Цена на варияцията (задължително)" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:76 -msgid "Sale Price:" -msgstr "Цена в разпродажба:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:76 -msgid "Cancel schedule" -msgstr "Отмени планираното събитие" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:83 -msgid "Sale start date:" -msgstr "Разпродажбата започва на:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:87 -msgid "Sale end date:" -msgstr "Крайна дата на разпродажбата:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:96 -msgid "" -"Enter a weight for this variation or leave blank to use the parent product " -"weight." -msgstr "" -"Въведете тежест на тази варияция или оставете празно за да се използва " -"оригиналната." - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:104 -msgid "Dimensions (L×W×H)" -msgstr "Размери (Д×Ш×В)" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:115 -msgid "Shipping class:" -msgstr "Клас на доставка:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:130 -msgid "Tax class:" -msgstr "Клас на такса:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:189 -msgid "Download Limit:" -msgstr "Лимит за изтегляния:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:195 -msgid "Download Expiry:" -msgstr "Изтеглянията приключват:" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:209 -#: includes/admin/settings/class-wc-settings-checkout.php:260 -#: includes/admin/settings/class-wc-settings-shipping.php:235 -#: includes/admin/views/html-admin-page-status-tools.php:26 -#: includes/admin/views/html-admin-page-status-tools.php:37 -msgid "Enabled" -msgstr "Разрешен" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:211 -msgid "" -"Enable this option if access is given to a downloadable file upon purchase " -"of a product" -msgstr "" - -# @ woocommerce -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:213 -msgid "" -"Enable this option if a product is not shipped or there is no shipping cost" -msgstr "" - -#: includes/admin/reports/class-wc-admin-report.php:389 -#, php-format -msgid "Sold %s worth in the last %d days" -msgstr "" - -#: includes/admin/reports/class-wc-admin-report.php:391 -#, php-format -msgid "Sold 1 item in the last %d days" -msgid_plural "Sold %d items in the last %d days" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:69 -#, php-format -msgid "%s discounts in total" -msgstr "" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-coupon-usage.php:75 -#, php-format -msgid "%s coupons used in total" -msgstr "общо %s купона са използвани" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-coupon-usage.php:90 -#: includes/admin/reports/class-wc-report-customers.php:138 -#: includes/admin/reports/class-wc-report-sales-by-category.php:65 -#: includes/admin/reports/class-wc-report-sales-by-date.php:122 -#: includes/admin/reports/class-wc-report-sales-by-product.php:107 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:41 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:41 -msgid "Year" -msgstr "Година" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-coupon-usage.php:91 -#: includes/admin/reports/class-wc-report-customers.php:139 -#: includes/admin/reports/class-wc-report-sales-by-category.php:66 -#: includes/admin/reports/class-wc-report-sales-by-date.php:123 -#: includes/admin/reports/class-wc-report-sales-by-product.php:108 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:42 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:42 -msgid "Last Month" -msgstr "Последен месец" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-coupon-usage.php:92 -#: includes/admin/reports/class-wc-report-customers.php:140 -#: includes/admin/reports/class-wc-report-sales-by-category.php:67 -#: includes/admin/reports/class-wc-report-sales-by-date.php:124 -#: includes/admin/reports/class-wc-report-sales-by-product.php:109 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:43 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:43 -msgid "This Month" -msgstr "Този месец" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-coupon-usage.php:93 -#: includes/admin/reports/class-wc-report-customers.php:141 -#: includes/admin/reports/class-wc-report-sales-by-category.php:68 -#: includes/admin/reports/class-wc-report-sales-by-date.php:125 -#: includes/admin/reports/class-wc-report-sales-by-product.php:110 -msgid "Last 7 Days" -msgstr "Последните 7 дни" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-coupon-usage.php:133 -msgid "Filter by coupon" -msgstr "Филтър по купон" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-coupon-usage.php:137 -msgid "Choose coupons…" -msgstr "Избор на купони…" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-coupon-usage.php:161 -msgid "All coupons" -msgstr "Всички купони" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-coupon-usage.php:166 -msgid "No used coupons found" -msgstr "Не са намерени използвани купони" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-coupon-usage.php:169 -#: includes/admin/reports/class-wc-report-sales-by-category.php:169 -#: includes/admin/reports/class-wc-report-sales-by-product.php:178 -#: includes/widgets/class-wc-widget-products.php:41 -msgid "Show" -msgstr "Показване" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-coupon-usage.php:184 -msgid "Most Popular" -msgstr "Най-популярни" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-coupon-usage.php:226 -#: includes/admin/reports/class-wc-report-coupon-usage.php:273 -msgid "No coupons found in range" -msgstr "Няма намерени купони в периода" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-coupon-usage.php:231 -msgid "Most Discount" -msgstr "Най-намаляни" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-coupon-usage.php:316 -#: includes/admin/reports/class-wc-report-customers.php:202 -#: includes/admin/reports/class-wc-report-sales-by-category.php:213 -#: includes/admin/reports/class-wc-report-sales-by-date.php:162 -#: includes/admin/reports/class-wc-report-sales-by-product.php:326 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:29 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:29 -#: includes/admin/settings/class-wc-settings-tax.php:287 -msgid "Export CSV" -msgstr "Експорт към CSV" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-coupon-usage.php:407 -msgid "Number of coupons used" -msgstr "Брой използвани купони" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-coupon-usage.php:415 -msgid "Discount amount" -msgstr "Обща сума на отстъпките" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-customer-list.php:32 -msgid "No customers found." -msgstr "Не са намерени клиенти." - -#: includes/admin/reports/class-wc-report-customer-list.php:46 -#, php-format -msgid "%s previous order linked" -msgid_plural "%s previous orders linked" -msgstr[0] "" -msgstr[1] "" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-customer-list.php:51 -msgid "Search customers" -msgstr "Търсене на клиенти" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-customer-list.php:187 -msgid "View orders" -msgstr "Преглед поръчки" - -#: includes/admin/reports/class-wc-report-customer-list.php:211 -msgid "Link previous orders" -msgstr "Свържи предишни поръчки" - -#: includes/admin/reports/class-wc-report-customer-list.php:237 -msgid "Name (Last, First)" -msgstr "Име (Име, Фамилия)" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-customer-list.php:238 -#: templates/myaccount/form-login.php:57 -msgid "Username" -msgstr "Потребителско име" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-customer-list.php:240 -msgid "Location" -msgstr "Местонахождение" - -#: includes/admin/reports/class-wc-report-customer-list.php:242 -msgid "Spent" -msgstr "Похарчени" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-customer-list.php:243 -msgid "Last order" -msgstr "Последна поръчка" - -#: includes/admin/reports/class-wc-report-customers.php:15 -#, php-format -msgid "%s signups in this period" -msgstr "%s регистрации за период" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-customers.php:83 -msgid "Customer Sales" -msgstr "Продажби на регистрирани" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-customers.php:84 -msgid "Guest Sales" -msgstr "Продажби на анонимни" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-customers.php:93 -#: includes/admin/reports/class-wc-report-customers.php:289 -msgid "Customer Orders" -msgstr "Поръчки от регистрирани" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-customers.php:98 -#: includes/admin/reports/class-wc-report-customers.php:299 -msgid "Guest Orders" -msgstr "Поръчки от гости" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-customers.php:117 -msgid "orders" -msgstr "поръчки" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-customers.php:295 -msgid "customer orders" -msgstr "поръчки от регистрирани" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-customers.php:305 -msgid "guest orders" -msgstr "поръчки от анонимни" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-customers.php:309 -msgid "Signups" -msgstr "Регистрации" - -#: includes/admin/reports/class-wc-report-customers.php:316 -msgid "new users" -msgstr "нови потребители" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-low-in-stock.php:19 -msgid "No low in stock products found." -msgstr "Няма продукти с намалели бройки." - -# @ woocommerce -#: includes/admin/reports/class-wc-report-out-of-stock.php:19 -msgid "No out of stock products found." -msgstr "Не са намерени изчерпани продукти" - -#: includes/admin/reports/class-wc-report-sales-by-category.php:47 -#, php-format -msgid "%s sales in %s" -msgstr "%s продажби за %s" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-sales-by-category.php:168 -msgid "All" -msgstr "Всички" - -#: includes/admin/reports/class-wc-report-sales-by-category.php:228 -msgid "← Choose a category to view stats" -msgstr "← Избор на категория за преглед на статистиката" - -#: includes/admin/reports/class-wc-report-sales-by-date.php:74 -#, php-format -msgid "%s average daily sales" -msgstr "%s средно дневни продажби" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-sales-by-date.php:77 -#, php-format -msgid "%s average monthly sales" -msgstr "%s средно месечни продажби" - -#: includes/admin/reports/class-wc-report-sales-by-date.php:82 -#, php-format -msgid "%s sales in this period" -msgstr "%s продажби в този период" - -#: includes/admin/reports/class-wc-report-sales-by-date.php:92 -#, php-format -msgid "%s orders placed" -msgstr "%s заявени поръчки" - -#: includes/admin/reports/class-wc-report-sales-by-date.php:97 -#, php-format -msgid "%s items purchased" -msgstr "%s поръчани продукта" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-sales-by-date.php:102 -#, php-format -msgid "%s charged for shipping" -msgstr "%s готови за доставка" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-sales-by-date.php:107 -#, php-format -msgid "%s worth of coupons used" -msgstr "%s стойност от използвани купони" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-sales-by-date.php:294 -#: includes/admin/reports/class-wc-report-sales-by-product.php:440 -msgid "Number of items sold" -msgstr "Бройки от продукт са продадени" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-sales-by-date.php:302 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:120 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:109 -msgid "Number of orders" -msgstr "Брой поръчки" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-sales-by-date.php:310 -msgid "Average sales amount" -msgstr "Средна сума продажба" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-sales-by-date.php:330 -msgid "Shipping amount" -msgstr "Стойност на доставката" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-sales-by-date.php:340 -#: includes/admin/reports/class-wc-report-sales-by-product.php:448 -msgid "Sales amount" -msgstr "" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-sales-by-product.php:87 -#, php-format -msgid "%s sales for the selected items" -msgstr "%s продажби за избраните продукти" - -#: includes/admin/reports/class-wc-report-sales-by-product.php:92 -#, php-format -msgid "%s purchases for the selected items" -msgstr "" - -#: includes/admin/reports/class-wc-report-sales-by-product.php:138 -msgid "Showing reports for:" -msgstr "Показване на доклади за:" - -#: includes/admin/reports/class-wc-report-sales-by-product.php:164 -msgid "Reset" -msgstr "Рестартирай" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-sales-by-product.php:173 -msgid "Product Search" -msgstr "Търсене на продукт" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-sales-by-product.php:210 -msgid "Top Sellers" -msgstr "Бест-селъри" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-sales-by-product.php:245 -#: includes/admin/reports/class-wc-report-sales-by-product.php:285 -msgid "No products found in range" -msgstr "Не са намерени продукти в периода" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-sales-by-product.php:250 -msgid "Top Earners" -msgstr "Най-печеливши" - -#: includes/admin/reports/class-wc-report-sales-by-product.php:341 -msgid "← Choose a product to view stats" -msgstr "← Избор на продукт за преглед на статистика" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-stock.php:30 -msgid "No products found." -msgstr "Не са намерени продукти" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-stock.php:138 -msgid "Parent" -msgstr "Родителски" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-stock.php:139 -msgid "Units in stock" -msgstr "Бройки на склад" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-taxes-by-code.php:119 -msgid "Rate" -msgstr "Оценка" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-taxes-by-code.php:121 -msgid "Tax Amount" -msgstr "Стойност на такса" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-taxes-by-code.php:122 -msgid "Shipping Tax Amount" -msgstr "Такса за доставка" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-taxes-by-code.php:123 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:112 -msgid "Total Tax" -msgstr "Общо такси" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-taxes-by-code.php:155 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:156 -msgid "No taxes found in this period" -msgstr "Не са намерени такси за периода" - -#: includes/admin/reports/class-wc-report-taxes-by-date.php:108 -msgid "Period" -msgstr "Период" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-taxes-by-date.php:110 -msgid "Total Sales" -msgstr "Общо продажби" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-taxes-by-date.php:110 -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "Това е сумата от общата стойност на вашите поръчки." - -# @ woocommerce -#: includes/admin/reports/class-wc-report-taxes-by-date.php:111 -msgid "Total Shipping" -msgstr "Общо доставка" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-taxes-by-date.php:111 -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "Това е сумата от общата стойност на доставките за вашите доставки." - -# @ woocommerce -#: includes/admin/reports/class-wc-report-taxes-by-date.php:113 -msgid "Net profit" -msgstr "Не организации" - -# @ woocommerce -#: includes/admin/reports/class-wc-report-taxes-by-date.php:113 -msgid "Total sales minus shipping and tax." -msgstr "Общо продажби без доставка и такси." - -# @ woocommerce -#: includes/admin/reports/class-wc-report-taxes-by-date.php:122 -#: templates/checkout/form-pay.php:21 -msgid "Totals" -msgstr "Тотали" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-accounts.php:25 -msgid "Accounts" -msgstr "Профили" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-accounts.php:41 -msgid "Account Pages" -msgstr "Профилни страници" - -#: includes/admin/settings/class-wc-settings-accounts.php:41 -msgid "" -"These pages need to be set so that WooCommerce knows where to send users to " -"access account related functionality." -msgstr "" -"Тези страници е нужно да бъдат зададени в WooCommerce, за да се знае къде да " -"се препраща потребителя за различните функционалности." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-accounts.php:44 -msgid "My Account Page" -msgstr "Страница за моя профил" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-accounts.php:45 -#: includes/admin/settings/class-wc-settings-checkout.php:113 -#: includes/admin/settings/class-wc-settings-checkout.php:124 -msgid "Page contents:" -msgstr "Страницата съдържа:" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-accounts.php:56 -msgid "My Account Endpoints" -msgstr "Наставки за профилните страници" - -#: includes/admin/settings/class-wc-settings-accounts.php:56 -msgid "" -"Endpoints are appended to your page URLs to handle specific actions on the " -"accounts pages. They should be unique." -msgstr "" -"Наставките представляват малки части от текст които се добавят след URL " -"адреса с цел да се специфицира действието в процеса на поръчка. Те трябва да " -"бъдат уникални." - -#: includes/admin/settings/class-wc-settings-accounts.php:60 -msgid "Endpoint for the My Account → View Order page" -msgstr "Наставки за Моя профил → Страница за преглед на поръчка" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-accounts.php:68 -msgid "Edit Account" -msgstr "Редакция на профил" - -#: includes/admin/settings/class-wc-settings-accounts.php:69 -msgid "Endpoint for the My Account → Edit Account page" -msgstr "Наставки за Моя профил → Страница за редакция на профил" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-accounts.php:77 -msgid "Edit Address" -msgstr "Редакция на адрес" - -#: includes/admin/settings/class-wc-settings-accounts.php:78 -msgid "Endpoint for the My Account → Edit Address page" -msgstr "Наставки за Моя профил → Страница за редакция на адрес" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-accounts.php:86 -msgid "Lost Password" -msgstr "Изгубена парола" - -#: includes/admin/settings/class-wc-settings-accounts.php:87 -msgid "Endpoint for the My Account → Lost Password page" -msgstr "Наставки за Моя профил → Страница за изгубена парола" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-accounts.php:95 -msgid "Logout" -msgstr "Изход" - -#: includes/admin/settings/class-wc-settings-accounts.php:96 -msgid "" -"Endpoint for the triggering logout. You can add this to your menus via a " -"custom link: yoursite.com/?customer-logout=true" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-accounts.php:105 -msgid "Registration Options" -msgstr "Опции при регистрация" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-accounts.php:108 -msgid "Enable Registration" -msgstr "Позволи регистрациите" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-accounts.php:109 -msgid "Enable registration on the \"Checkout\" page" -msgstr "Даване на възможност за регистрация при поръчка" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-accounts.php:118 -msgid "Enable registration on the \"My Account\" page" -msgstr "Разреши регистрация от профилните страници" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-accounts.php:127 -msgid "Account Creation" -msgstr "Създаване на профил" - -#: includes/admin/settings/class-wc-settings-accounts.php:128 -msgid "Automatically generate username from customer email" -msgstr "Автоматично генерирай потребителското име от email-а на поръчката" - -#: includes/admin/settings/class-wc-settings-accounts.php:137 -msgid "Automatically generate customer password" -msgstr "Автоматично генериране на парола" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:41 -msgid "Checkout Options" -msgstr "Опции при плащането" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:65 -msgid "Checkout Process" -msgstr "Процес на поръчка" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:69 -msgid "Enable the use of coupons" -msgstr "Разреши използването на купони" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:73 -msgid "Coupons can be applied from the cart and checkout pages." -msgstr "" -"Купоните могат да бъдат приложени от страниците на кошницата и поръчката." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:79 -msgid "Enable guest checkout" -msgstr "Разрешаване на поръчки от анонимни" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:80 -msgid "Allows customers to checkout without creating an account." -msgstr "" -"Позволяване на клиентите да поръчват без да е необходимо да се регистрират." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:89 -msgid "Force secure checkout" -msgstr "Винаги използвай подсигурено поръчване" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:95 -msgid "" -"Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:99 -msgid "Un-force HTTPS when leaving the checkout" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:109 -msgid "Checkout Pages" -msgstr "Страница за поръчка" - -#: includes/admin/settings/class-wc-settings-checkout.php:109 -msgid "" -"These pages need to be set so that WooCommerce knows where to send users to " -"checkout." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:112 -msgid "Cart Page" -msgstr "Страница за кошницата" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:123 -msgid "Checkout Page" -msgstr "Страница за поръчка" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:134 -msgid "Terms and Conditions" -msgstr "Условията за ползване" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:135 -msgid "" -"If you define a \"Terms\" page the customer will be asked if they accept " -"them when checking out." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:147 -msgid "Checkout Endpoints" -msgstr "Наставки на страниците за поръчка" - -#: includes/admin/settings/class-wc-settings-checkout.php:147 -msgid "" -"Endpoints are appended to your page URLs to handle specific actions during " -"the checkout process. They should be unique." -msgstr "" -"Наставките представляват малки части от текст които се добавят след URL " -"адреса с цел да се специфицира действието в процеса на поръчка. Те трябва да " -"бъдат уникални." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:150 -#: templates/checkout/thankyou.php:28 templates/myaccount/my-orders.php:71 -msgid "Pay" -msgstr "Плати" - -#: includes/admin/settings/class-wc-settings-checkout.php:151 -#: includes/admin/settings/class-wc-settings-checkout.php:160 -msgid "Endpoint for the Checkout → Pay page" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:169 -msgid "Payment Gateways" -msgstr "Системи за разплащане" - -#: includes/admin/settings/class-wc-settings-checkout.php:169 -msgid "" -"Installed gateways are listed below. Drag and drop gateways to control their " -"display order on the frontend." -msgstr "" -"Списък с инсталираните методи за разплащане. С придърпване с мишката може да " -"се променя реда при показване на клиентската страница." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:210 -msgid "Gateway Display" -msgstr "Методи" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:218 -msgid "Gateway" -msgstr "Метод" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:219 -msgid "Gateway ID" -msgstr "Идент" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-checkout.php:220 -#: includes/admin/settings/class-wc-settings-shipping.php:205 -#: templates/myaccount/my-orders.php:34 -msgid "Status" -msgstr "Статус" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:25 -msgid "Emails" -msgstr "Email-и" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:40 -msgid "Email Options" -msgstr "Настройки на email" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:66 -msgid "Email Sender Options" -msgstr "Email настройки на изпращача" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:66 -msgid "" -"The following options affect the sender (email address and name) used in " -"WooCommerce emails." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:69 -msgid "\"From\" Name" -msgstr "\"От\" Име" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:79 -msgid "\"From\" Email Address" -msgstr "\"От\" Email адрес" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:93 -msgid "Email Template" -msgstr "Email шаблон" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:93 -#, php-format -msgid "" -"This section lets you customise the WooCommerce emails. Click here to preview your email template. For more " -"advanced control copy woocommerce/templates/emails/ to " -"yourtheme/woocommerce/emails/." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:96 -msgid "Header Image" -msgstr "Заглавна картинка" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:97 -#, php-format -msgid "" -"Enter a URL to an image you want to show in the email's header. Upload your " -"image using the media uploader." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:106 -msgid "Email Footer Text" -msgstr "Текст в долната част" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:107 -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:111 -msgid "Powered by WooCommerce" -msgstr "Задвижено от WooCommerce" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:116 -msgid "Base Colour" -msgstr "Основен цвят" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:117 -msgid "" -"The base colour for WooCommerce email templates. Default #557da1." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:126 -msgid "Background Colour" -msgstr "Цвят на фона" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:127 -msgid "" -"The background colour for WooCommerce email templates. Default " -"#f5f5f5." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:136 -msgid "Email Body Background Colour" -msgstr "Цвят на фона на съобщението" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:137 -msgid "The main body background colour. Default #fdfdfd." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:146 -msgid "Email Body Text Colour" -msgstr "Цвят на текста на основния цвят" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-emails.php:147 -msgid "The main body text colour. Default #505050." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:48 -msgid "General Options" -msgstr "Основни настройки" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:51 -msgid "Base Location" -msgstr "Седалище" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:52 -msgid "" -"This is the base location for your business. Tax rates will be based on this " -"country." -msgstr "" -"Това е централното седалище на вашият бизнес. Всички такси ще бъдат базирани " -"на тази страна." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:61 -msgid "Selling Location(s)" -msgstr "Продажба в" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:62 -msgid "This option lets you limit which countries you are willing to sell to." -msgstr "Това са държавите до които ще доставяте." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:70 -msgid "Sell to all countries" -msgstr "Продажба във всички държави" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:71 -msgid "Sell to specific countries only" -msgstr "Продажба само в определени държави" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:76 -#: includes/admin/settings/class-wc-settings-shipping.php:147 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:95 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:99 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:84 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:88 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:146 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:150 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:103 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:107 -msgid "Specific Countries" -msgstr "Само избрани държави" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:85 -msgid "Store Notice" -msgstr "Съобщения в магазина" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:86 -msgid "Enable site-wide store notice text" -msgstr "Включи съобщението за целия магазин" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:93 -msgid "Store Notice Text" -msgstr "Текст на съобщението" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:104 -msgid "Currency Options" -msgstr "Опции за валутата" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:104 -msgid "The following options affect how prices are displayed on the frontend." -msgstr "" -"Следните настройки се отнасят до това как да се презентират цените в " -"клиентската част." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:107 -msgid "Currency" -msgstr "Валута" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:108 -msgid "" -"This controls what currency prices are listed at in the catalog and which " -"currency gateways will take payments in." -msgstr "" -"Тази опция контролира в каква валута ще се показват цените в каталога, също " -"и валутата с която ще работят методите за разплащане." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:119 -msgid "Currency Position" -msgstr "Позиция на символа за валута" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:120 -msgid "This controls the position of the currency symbol." -msgstr "Контрол на позицията на знака за валутата." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:127 -msgid "Left" -msgstr "Ляво" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:128 -msgid "Right" -msgstr "Дясно" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:129 -msgid "Left with space" -msgstr "Ляво с интервал" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:130 -msgid "Right with space" -msgstr "Дясно с интервал" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:136 -msgid "Thousand Separator" -msgstr "Разделител на хилядите" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:137 -msgid "This sets the thousand separator of displayed prices." -msgstr "Символ с който ще бъдат разделяни хилядните в показаните цени." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:146 -msgid "Decimal Separator" -msgstr "Десетичен знак" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:147 -msgid "This sets the decimal separator of displayed prices." -msgstr "Символ с който ще бъдат разделяни нецелите цени при показването." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:156 -msgid "Number of Decimals" -msgstr "Дължина след запетаята" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:157 -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "Колко цифри след десетичния знак да бъдат показвани в цените." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:171 -msgid "Styles and Scripts" -msgstr "Стилове и скриптове" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:176 -msgid "Scripts" -msgstr "Скриптове" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:177 -msgid "Enable Lightbox" -msgstr "Включване на Lightbox" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:180 -msgid "" -"Include WooCommerce's lightbox. Product gallery images and the add review " -"form will open in a lightbox." -msgstr "" -"Използване на вградения в WooCommerce lightbox. Продуктовите галерии и " -"ревютата ще бъдат отваряни в lightbox." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:186 -msgid "Enable enhanced country select boxes" -msgstr "Включване на подобрения избор на държави" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:191 -msgid "This will enable a script allowing the country fields to be searchable." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:209 -msgid "Frontend Styles" -msgstr "Стилове на началната страница" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:229 -msgid "Primary" -msgstr "Първичен" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:229 -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:230 -msgid "Secondary" -msgstr "Вторичен" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:230 -msgid "Buttons and tabs" -msgstr "Бутони и табове" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:231 -msgid "Highlight" -msgstr "Откроен" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:231 -msgid "Price labels and Sale Flashes" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:232 -msgid "Content" -msgstr "Съдържание" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:232 -msgid "Your themes page background - used for tab active states" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:233 -msgid "Subtext" -msgstr "Подтекст" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:233 -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-general.php:236 -msgid "" -"To edit colours woocommerce/assets/css/woocommerce-base.less " -"and woocommerce.css need to be writable. See the Codex for more " -"information." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-integrations.php:25 -msgid "Integration" -msgstr "Интеграция" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:40 -msgid "Product Options" -msgstr "Настройки на продуктите" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:79 -msgid "Inventory Options" -msgstr "Настройки на инвентара" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:82 -msgid "Manage Stock" -msgstr "Управление на наличности" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:83 -msgid "Enable stock management" -msgstr "Позволи упревлението на наличности" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:90 -msgid "Hold Stock (minutes)" -msgstr "Задържане на стока (минути)" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:91 -msgid "" -"Hold stock (for unpaid orders) for x minutes. When this limit is reached, " -"the pending order will be cancelled. Leave blank to disable." -msgstr "" -"Задръж стоката (за неплатени поръчки) за Х минути. Когато лимитът е " -"достигнат, чакащите поръчки ще бъдат отказани. Оставете празно за изключване." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:104 -msgid "Notifications" -msgstr "Уведомления" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:105 -msgid "Enable low stock notifications" -msgstr "Включване на уведомления за ниска наличност" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:114 -msgid "Enable out of stock notifications" -msgstr "Включване на уведомления за изчерпана наличност" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:123 -msgid "Notification Recipient" -msgstr "Приемач на уведомленията" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:132 -msgid "Low Stock Threshold" -msgstr "Праг за ниска наличност" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:146 -msgid "Out Of Stock Threshold" -msgstr "Праг при изчерпване" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:160 -msgid "Out Of Stock Visibility" -msgstr "Видимост при изчерпване" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:161 -msgid "Hide out of stock items from the catalog" -msgstr "Скриване на изчерпаните продукти от каталога" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:168 -msgid "Stock Display Format" -msgstr "Формат за наличности" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:169 -msgid "This controls how stock is displayed on the frontend." -msgstr "Контрол как ще се презентира на клиентската страница." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:175 -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "Винаги да се показва наличността (пр. налични - 12)" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:176 -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "" -"Да се показва наличността само когато ниска (пр. Остават само 2) вместо " -"\"Налично\"" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:177 -msgid "Never show stock amount" -msgstr "Никога да не се показва наличността" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:196 -msgid "" -"Note: The shop page has children - child pages will not work if you enable " -"this option." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:200 -msgid "Product Listings" -msgstr "Списък с продуктите" - -#: includes/admin/settings/class-wc-settings-products.php:203 -msgid "Product Archive / Shop Page" -msgstr "Архивна /Основна страница" - -#: includes/admin/settings/class-wc-settings-products.php:204 -#, php-format -msgid "" -"The base page can also be used in your product permalinks." -msgstr "" -"Тази страница ще бъде използвана като база за вашите постоянни връзки." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:210 -msgid "" -"This sets the base page of your shop - this is where your product archive " -"will be." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:214 -msgid "Shop Page Display" -msgstr "Показване в архива" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:215 -msgid "This controls what is shown on the product archive." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:222 -#: includes/admin/settings/class-wc-settings-products.php:238 -msgid "Show products" -msgstr "Показване на продукти" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:223 -#: includes/admin/settings/class-wc-settings-products.php:239 -msgid "Show subcategories" -msgstr "Показване на подкатегории" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:224 -#: includes/admin/settings/class-wc-settings-products.php:240 -msgid "Show both" -msgstr "Покажи всички" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:230 -msgid "Default Category Display" -msgstr "Категория по подразбиране" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:231 -msgid "This controls what is shown on category archives." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:246 -msgid "Default Product Sorting" -msgstr "Сортиране по подразбиране" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:247 -msgid "This controls the default sort order of the catalog." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:254 -msgid "Default sorting (custom ordering + name)" -msgstr "Сортиране по подразбиране (потребителско подреждане + име)" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:255 -msgid "Popularity (sales)" -msgstr "Популярност (продажби)" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:256 -msgid "Average Rating" -msgstr "Среден рейтинг" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:257 -msgid "Sort by most recent" -msgstr "Подреди по най-скорошни" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:258 -msgid "Sort by price (asc)" -msgstr "Подредба по цена (възх.)" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:259 -msgid "Sort by price (desc)" -msgstr "Подредба по цена (низх.)" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:266 -msgid "Redirect to the cart page after successful addition" -msgstr "Прехвърли към страницата на кошницата след успешно добавяне на продукт" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:274 -msgid "Enable AJAX add to cart buttons on archives" -msgstr "Използвай AJAX при добавянето в кошницата" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:286 -msgid "Weight Unit" -msgstr "Мерна единица за тежест" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:287 -msgid "This controls what unit you will define weights in." -msgstr "От тук се контролира каква ще е мерната единица за тежест." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:294 -msgid "kg" -msgstr "кг." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:295 -msgid "g" -msgstr "г." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:296 -msgid "lbs" -msgstr "лб." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:297 -msgid "oz" -msgstr "оз." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:303 -msgid "Dimensions Unit" -msgstr "Мерни единици за размер" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:304 -msgid "This controls what unit you will define lengths in." -msgstr "Тази опция контроли какви мерни единици ще се използват." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:312 -msgid "cm" -msgstr "см." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:313 -msgid "mm" -msgstr "мм." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:314 -msgid "in" -msgstr "инч" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:315 -msgid "yd" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:321 -msgid "Product Ratings" -msgstr "Рейтинг на продукти" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:322 -msgid "Enable ratings on reviews" -msgstr "Разреши рейтинг в отзивите" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:332 -msgid "Ratings are required to leave a review" -msgstr "Рейтингите са задължителни за да се остави ревю" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:342 -msgid "Show \"verified owner\" label for customer reviews" -msgstr "Покажи \"проверен собственик\" маркер към ревютата" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:353 -msgid "Product Image Sizes" -msgstr "Размери на изображенията на продуктите" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:353 -#, php-format -msgid "" -"These settings affect the actual dimensions of images in your catalog - the " -"display on the front-end will still be affected by CSS styles. After " -"changing these settings you may need to regenerate your " -"thumbnails." -msgstr "" -"Тези настройки се отнасят актуалните размери на изображенията в каталога - " -"самото преоразмеряване ще си остане под въздействието на CSS стиловете. След " -"като промените тези настройки, вероятно ще е нужно да регенерирате картинките." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:356 -msgid "Catalog Images" -msgstr "Изображения на каталозите" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:357 -msgid "This size is usually used in product listings" -msgstr "Този размер обикновено се използва в списък с продукти" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:370 -msgid "Single Product Image" -msgstr "Изображение на единичен продукт" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:371 -msgid "This is the size used by the main image on the product page." -msgstr "" -"Този размер се използва от основното изображение на продуктовата страница." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:384 -msgid "Product Thumbnails" -msgstr "Картинки" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:385 -msgid "" -"This size is usually used for the gallery of images on the product page." -msgstr "" -"Този размер обикновено се използва за галериите на продуктовата страница." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:399 -msgid "Downloadable Products" -msgstr "Продукти за изтегляне" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:402 -msgid "File Download Method" -msgstr "Метод при изтегляне" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:403 -msgid "" -"Forcing downloads will keep URLs hidden, but some servers may serve large " -"files unreliably. If supported, X-Accel-Redirect/ X-" -"Sendfile can be used to serve downloads instead (server requires " -"mod_xsendfile)." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:411 -msgid "Force Downloads" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:412 -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:413 -msgid "Redirect only" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:419 -msgid "Access Restriction" -msgstr "Контрол на достъпа" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:420 -msgid "Downloads require login" -msgstr "Изтеглянията изискват авторизация" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:424 -msgid "This setting does not apply to guest purchases." -msgstr "Тази настройка не е приложима за поръчки от гости." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:430 -msgid "Grant access to downloadable products after payment" -msgstr "Дай достъп за сваляне на продукта след заплащане" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-products.php:434 -msgid "" -"Enable this option to grant access to downloads when orders are \"processing" -"\", rather than \"completed\"." -msgstr "" -"Използвайте тази настройка за да дадете достъп за сваляне когато поръчките " -"са в режим \"обработка\" вместо в \"приключен\"." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-shipping.php:41 -#: includes/admin/settings/class-wc-settings-shipping.php:67 -msgid "Shipping Options" -msgstr "Настройки за доставка" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-shipping.php:70 -msgid "Shipping Calculations" -msgstr "Изчисляване на доставката" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-shipping.php:71 -msgid "Enable shipping" -msgstr "Включи доставката" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-shipping.php:79 -msgid "Enable the shipping calculator on the cart page" -msgstr "Включване на калкулатора на страницата с кошницата" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-shipping.php:88 -msgid "Hide shipping costs until an address is entered" -msgstr "Скриване на ставките за доставка докато не се въведе адрес" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-shipping.php:97 -msgid "Shipping Display Mode" -msgstr "Визия на вида на доставката" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-shipping.php:98 -msgid "" -"This controls how multiple shipping methods are displayed on the frontend." -msgstr "" -"Как ще бъдат показвани методите за доставка, на клиентската част, когато са " -"повече от един." - -#: includes/admin/settings/class-wc-settings-shipping.php:103 -msgid "Display shipping methods with \"radio\" buttons" -msgstr "Показване на методите за доставка с радио бутони" - -#: includes/admin/settings/class-wc-settings-shipping.php:104 -msgid "Display shipping methods in a dropdown" -msgstr "Показване на методите за доставка, като падащ списък" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-shipping.php:111 -msgid "Shipping Destination" -msgstr "Дестинация за доставка" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-shipping.php:112 -msgid "Ship to billing address by default" -msgstr "По подразбиране да се доставя до адреса от фактурата" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-shipping.php:122 -msgid "Only ship to the users billing address" -msgstr "Доставките да стават само до адресите от фактурата" - -#: includes/admin/settings/class-wc-settings-shipping.php:132 -msgid "Restrict shipping to Location(s)" -msgstr "Дестинациите за доставка" - -#: includes/admin/settings/class-wc-settings-shipping.php:133 -#, php-format -msgid "" -"Choose which countries you want to ship to, or choose to ship to all locations you sell to." -msgstr "Избор на страните до които се доставя дестинации." - -#: includes/admin/settings/class-wc-settings-shipping.php:140 -msgid "Ship to all countries you sell to" -msgstr "Доставка до всички страни в които се продава" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-shipping.php:141 -msgid "Ship to all countries" -msgstr "Доставяне до всички държави" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-shipping.php:142 -msgid "Ship to specific countries only" -msgstr "Доставяне до определени държави" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-shipping.php:197 -msgid "Shipping Methods" -msgstr "Методи за доставка" - -#: includes/admin/settings/class-wc-settings-shipping.php:204 -msgid "ID" -msgstr "" - -#: includes/admin/settings/class-wc-settings-shipping.php:215 -msgid "" -"Drag and drop the above shipping methods to control their display order." -msgstr "" -"Контролирането на реда на показване може да се настройва, чрез влачене и " -"пускане с мишката." - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:40 -#: includes/admin/settings/class-wc-settings-tax.php:68 -msgid "Tax Options" -msgstr "Опции на таксите" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:41 -msgid "Standard Rates" -msgstr "Стандартни ставки" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:49 -#, php-format -msgid "%s Rates" -msgstr "%s ставки" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:71 -msgid "Enable Taxes" -msgstr "Включи такси" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:72 -msgid "Enable taxes and tax calculations" -msgstr "Разреши начисляването на такси" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:79 -msgid "Prices Entered With Tax" -msgstr "Цени с включени такси" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:83 -msgid "" -"This option is important as it will affect how you input prices. Changing it " -"will not update existing products." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:85 -msgid "Yes, I will enter prices inclusive of tax" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:86 -msgid "No, I will enter prices exclusive of tax" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:91 -msgid "Calculate Tax Based On:" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:93 -msgid "This option determines which address is used to calculate tax." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:97 -msgid "Customer shipping address" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:98 -msgid "Customer billing address" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:99 -#: includes/admin/settings/class-wc-settings-tax.php:111 -msgid "Shop base address" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:104 -msgid "Default Customer Address:" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:106 -msgid "" -"This option determines the customers default address (before they input " -"their own)." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:110 -msgid "No address" -msgstr "Без адрес" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:116 -msgid "Shipping Tax Class:" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:117 -msgid "" -"Optionally control which tax class shipping gets, or leave it so shipping " -"tax is based on the cart items themselves." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:122 -msgid "Shipping tax class based on cart items" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:127 -msgid "Rounding" -msgstr "Закръгляне" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:128 -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:135 -msgid "Additional Tax Classes" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:136 -msgid "" -"List additonal tax classes below (1 per line). This is in addition to the " -"default Standard Rate. Tax classes can be assigned to products." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:140 -#, php-format -msgid "Reduced Rate%sZero Rate" -msgstr "" - -#: includes/admin/settings/class-wc-settings-tax.php:144 -msgid "Display prices in the shop:" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:149 -#: includes/admin/settings/class-wc-settings-tax.php:168 -msgid "Including tax" -msgstr "Включително такси" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:150 -#: includes/admin/settings/class-wc-settings-tax.php:169 -msgid "Excluding tax" -msgstr "Пропускане на такси" - -#: includes/admin/settings/class-wc-settings-tax.php:155 -msgid "Price display suffix:" -msgstr "" - -#: includes/admin/settings/class-wc-settings-tax.php:159 -msgid "" -"Define text to show after your product prices. This could be, for example, " -"\"inc. Vat\" to explain your pricing. You can also have prices substituted " -"here using one of the following: {price_including_tax}, " -"{price_excluding_tax}." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:163 -msgid "Display prices during cart/checkout:" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:175 -msgid "Display tax totals:" -msgstr "Показване на таксите за общата поръчка:" - -#: includes/admin/settings/class-wc-settings-tax.php:180 -msgid "As a single total" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:181 -msgid "Itemized" -msgstr "По продукти" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:241 -#, php-format -msgid "Tax Rates for the \"%s\" Class" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:242 -#, php-format -msgid "" -"Define tax rates for countries and states below. See here " -"for available alpha-2 country codes." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:248 -msgid "Country Code" -msgstr "Държава Код" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:248 -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:250 -msgid "State Code" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:250 -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:252 -#: includes/admin/settings/class-wc-settings-tax.php:381 -msgid "ZIP/Postcode" -msgstr "Пощенски код/ZIP" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:252 -msgid "" -"Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all areas. Wildcards (*) can be used. Ranges for numeric " -"postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:254 -msgid "" -"Cities for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all cities." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:256 -msgid "Rate %" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:256 -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:258 -msgid "Tax Name" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:258 -msgid "Enter a name for this tax rate." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:260 -#: includes/admin/settings/class-wc-settings-tax.php:381 -msgid "Priority" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:260 -msgid "" -"Choose a priority for this tax rate. Only 1 matching rate per priority will " -"be used. To define multiple tax rates for a single area you need to specify " -"a different priority per rate." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:262 -#: includes/admin/settings/class-wc-settings-tax.php:381 -msgid "Compound" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:262 -msgid "" -"Choose whether or not this is a compound rate. Compound tax rates are " -"applied on top of other tax rates." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:264 -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:271 -msgid "Insert row" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:272 -msgid "Remove selected row(s)" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:288 -msgid "Import CSV" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:374 -msgid "No row(s) selected" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:381 -msgid "Country Code" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:381 -msgid "State Code" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:381 -msgid "Rate %" -msgstr "" - -# @ woocommerce -#: includes/admin/settings/class-wc-settings-tax.php:381 -msgid "Tax Name" -msgstr "" - -# @ woocommerce -#: includes/admin/views/html-admin-page-addons.php:5 -msgid "Browse all extensions" -msgstr "Всички притурки" - -#: includes/admin/views/html-admin-page-addons.php:6 -msgid "Browse themes" -msgstr "Преглед на теми" - -#: includes/admin/views/html-admin-page-addons.php:11 -msgid "Popular" -msgstr "Популярни" - -# @ woocommerce -#: includes/admin/views/html-admin-page-addons.php:12 -msgid "Gateways" -msgstr "Методи" - -#: includes/admin/views/html-admin-page-addons.php:14 -msgid "Import/export" -msgstr "Импорт/Експорт" - -# @ woocommerce -#: includes/admin/views/html-admin-page-addons.php:16 -msgid "Marketing" -msgstr "Маркетинг" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:3 -msgid "Please include this information when requesting support:" -msgstr "Моля включете следната информация при заявка за подръжка:" - -#: includes/admin/views/html-admin-page-status-report.php:4 -msgid "Get System Report" -msgstr "Изтеглете системен доклад" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:13 -msgid "Environment" -msgstr "Среда" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:19 -msgid "Home URL" -msgstr "Начален адрес" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:23 -msgid "Site URL" -msgstr "Адрес на сайта" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:27 -msgid "WC Version" -msgstr "WC версия" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:31 -msgid "WC Database Version" -msgstr "WC версия на БД" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:35 -msgid "WP Version" -msgstr "WP версия" - -#: includes/admin/views/html-admin-page-status-report.php:39 -msgid "WP Multisite Enabled" -msgstr "WP мултисайт" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:43 -msgid "Web Server Info" -msgstr "" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:47 -msgid "PHP Version" -msgstr "PHP версия" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:51 -msgid "MySQL Version" -msgstr "" - -#: includes/admin/views/html-admin-page-status-report.php:55 -msgid "PHP Locale" -msgstr "" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:64 -msgid "WP Memory Limit" -msgstr "" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:69 -#, php-format -msgid "" -"%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "" -"%s - Препоръчваме използването на поне 64MB. Вижте: Увеличаване на паметта в PHP" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:76 -msgid "WP Debug Mode" -msgstr "" - -#: includes/admin/views/html-admin-page-status-report.php:80 -msgid "WP Language" -msgstr "WP език" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:84 -msgid "WP Max Upload Size" -msgstr "WP максимален размер за качване" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:89 -msgid "PHP Post Max Size" -msgstr "" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:93 -msgid "PHP Time Limit" -msgstr "" - -#: includes/admin/views/html-admin-page-status-report.php:97 -msgid "PHP Max Input Vars" -msgstr "" - -#: includes/admin/views/html-admin-page-status-report.php:101 -msgid "SUHOSIN Installed" -msgstr "" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:106 -msgid "WC Logging" -msgstr "" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:109 -msgid "Log directory is writable." -msgstr "" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:111 -msgid "" -"Log directory (woocommerce/logs/) is not writable. Logging will " -"not be possible." -msgstr "" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:115 -msgid "Default Timezone" -msgstr "Часова зона по подразбиране" - -#: includes/admin/views/html-admin-page-status-report.php:119 -#, php-format -msgid "Default timezone is %s - it should be UTC" -msgstr "" - -#: includes/admin/views/html-admin-page-status-report.php:121 -#, php-format -msgid "Default timezone is %s" -msgstr "" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:129 -msgid "fsockopen/cURL" -msgstr "" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:132 -msgid "Your server has fsockopen and cURL enabled." -msgstr "" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:134 -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:136 -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:140 -msgid "" -"Your server does not have fsockopen or cURL enabled - PayPal IPN and other " -"scripts which communicate with other servers will not work. Contact your " -"hosting provider." -msgstr "" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:145 -msgid "SOAP Client" -msgstr "" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:147 -msgid "Your server has the SOAP Client class enabled." -msgstr "" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:150 -#, php-format -msgid "" -"Your server does not have the SOAP Client class enabled - " -"some gateway plugins which use SOAP may not work as expected." -msgstr "" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:155 -msgid "WP Remote Post" -msgstr "" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:166 -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:169 -msgid "" -"wp_remote_post() failed. PayPal IPN won't work with your server. Contact " -"your hosting provider. Error:" -msgstr "" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:172 -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:195 -msgid "Plugins" -msgstr "Притурки" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:201 -msgid "Installed Plugins" -msgstr "Инсталирани притурки" - -#: includes/admin/views/html-admin-page-status-report.php:221 -msgid "Visit plugin homepage" -msgstr "" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:245 -#: includes/admin/views/html-admin-page-status-report.php:427 -msgid "is available" -msgstr "налично" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:248 -msgid "by" -msgstr "от" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:248 -msgid "version" -msgstr "версия" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:270 -msgid "Force SSL" -msgstr "Задължително използвай SSL" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:277 -msgid "WC Pages" -msgstr "Страници на магазина" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:284 -msgid "Shop Base" -msgstr "Адрес до магазина" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:316 -msgid "Page not set" -msgstr "Не е зададена страница" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:326 -msgid "Page does not exist" -msgstr "Страницата не съществува" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:331 -#, php-format -msgid "Page does not contain the shortcode: %s" -msgstr "Страницата не съдържа краткия код: %s" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:350 -msgid "WC Taxonomies" -msgstr "WC таксономии" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:356 -msgid "Order Statuses" -msgstr "Статуси на поръчка" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:366 -msgid "Product Types" -msgstr "Типове продукти" - -#: includes/admin/views/html-admin-page-status-report.php:379 -msgid "Theme" -msgstr "Тема" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:416 -msgid "Theme Name" -msgstr "Име на темата" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:422 -msgid "Theme Version" -msgstr "Версия на темата" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:431 -msgid "Author URL" -msgstr "URL адрес на автора" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:440 -msgid "Templates" -msgstr "Темплейти" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-report.php:446 -msgid "Template Overrides" -msgstr "Препокриване на темплейт" - -#: includes/admin/views/html-admin-page-status-report.php:474 -msgid "No overrides present in theme." -msgstr "Няма препокривания на шаблони в темата." - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-tools.php:7 -#: includes/admin/views/html-admin-page-status.php:6 -msgid "Tools" -msgstr "Инструменти" - -# @ woocommerce -#: includes/admin/views/html-admin-page-status-tools.php:23 -msgid "Template Debug Mode" -msgstr "Проследяване на грешки в шаблона" - -#: includes/admin/views/html-admin-page-status-tools.php:29 -msgid "" -"This tool will disable template overrides for logged-in administrators for " -"debugging purposes." -msgstr "" - -#: includes/admin/views/html-admin-page-status-tools.php:34 -msgid "Remove post types on uninstall" -msgstr "Премахване на post types след деинсталация" - -#: includes/admin/views/html-admin-page-status-tools.php:40 -msgid "" -"This tool will delete all product and order post data when uninstalling via " -"Plugins > Delete." -msgstr "" - -# @ woocommerce -#: includes/admin/views/html-admin-settings.php:20 -#: templates/myaccount/form-edit-account.php:41 -msgid "Save changes" -msgstr "Запиши промените" - -# @ woocommerce -#: includes/admin/views/html-bulk-edit-product.php:15 -#: includes/admin/views/html-bulk-edit-product.php:39 -#: includes/admin/views/html-bulk-edit-product.php:63 -#: includes/admin/views/html-bulk-edit-product.php:82 -#: includes/admin/views/html-bulk-edit-product.php:108 -#: includes/admin/views/html-bulk-edit-product.php:132 -#: includes/admin/views/html-bulk-edit-product.php:156 -#: includes/admin/views/html-bulk-edit-product.php:175 -#: includes/admin/views/html-bulk-edit-product.php:193 -#: includes/admin/views/html-bulk-edit-product.php:212 -#: includes/admin/views/html-bulk-edit-product.php:231 -#: includes/admin/views/html-bulk-edit-product.php:252 -msgid "— No Change —" -msgstr "— Без промяна —" - -# @ woocommerce -#: includes/admin/views/html-bulk-edit-product.php:16 -#: includes/admin/views/html-bulk-edit-product.php:40 -#: includes/admin/views/html-bulk-edit-product.php:109 -#: includes/admin/views/html-bulk-edit-product.php:133 -#: includes/admin/views/html-bulk-edit-product.php:232 -msgid "Change to:" -msgstr "Промени на:" - -# @ woocommerce -#: includes/admin/views/html-bulk-edit-product.php:17 -#: includes/admin/views/html-bulk-edit-product.php:41 -msgid "Increase by (fixed amount or %):" -msgstr "Увеличи с (фиксирана ставка или %):" - -# @ woocommerce -#: includes/admin/views/html-bulk-edit-product.php:18 -#: includes/admin/views/html-bulk-edit-product.php:42 -msgid "Decrease by (fixed amount or %):" -msgstr "Намали с (фиксирана ставка или %):" - -# @ woocommerce -#: includes/admin/views/html-bulk-edit-product.php:28 -#: includes/admin/views/html-bulk-edit-product.php:53 -msgid "Enter price" -msgstr "Въвеждане на цена" - -# @ woocommerce -#: includes/admin/views/html-bulk-edit-product.php:34 -#: includes/admin/views/html-quick-edit-product.php:29 -msgid "Sale" -msgstr "Разпродажба" - -# @ woocommerce -#: includes/admin/views/html-bulk-edit-product.php:43 -msgid "Decrease regular price by (fixed amount or %):" -msgstr "Намаляне на редовната цена с (фиксирана ставка или %):" - -# @ woocommerce -#: includes/admin/views/html-bulk-edit-product.php:127 -#: includes/admin/views/html-quick-edit-product.php:95 -msgid "L/W/H" -msgstr "Д/Ш/В" - -# @ woocommerce -#: includes/admin/views/html-bulk-edit-product.php:151 -#: includes/admin/views/html-quick-edit-product.php:109 -msgid "Visibility" -msgstr "Видим" - -# @ woocommerce -#: includes/admin/views/html-bulk-edit-product.php:157 -#: includes/admin/views/html-quick-edit-product.php:114 -msgid "Catalog & search" -msgstr "Каталог и търсене" - -# @ woocommerce -#: includes/admin/views/html-bulk-edit-product.php:188 -#: includes/admin/views/html-quick-edit-product.php:132 -msgid "In stock?" -msgstr "В наличност?" - -# @ woocommerce -#: includes/admin/views/html-bulk-edit-product.php:247 -#: includes/admin/views/html-quick-edit-product.php:167 -msgid "Backorders?" -msgstr "Връщания?" - -# @ woocommerce -#: includes/admin/views/html-email-template-preview.php:1 -msgid "" -"Thank you, we are now processing your order. Your order's details are below." -msgstr "" -"Благодарим ви, в момента обработваме вашата заявка. Детайли по поръчката " -"може да видите по-долу." - -# @ woocommerce -#: includes/admin/views/html-email-template-preview.php:3 -#: includes/shortcodes/class-wc-shortcode-checkout.php:130 -#: templates/checkout/thankyou.php:40 -#: templates/emails/customer-completed-order.php:18 -#: templates/emails/customer-invoice.php:22 -#: templates/emails/customer-note.php:22 -#: templates/emails/customer-processing-order.php:18 -msgid "Order:" -msgstr "Поръчка:" - -# @ woocommerce -#: includes/admin/views/html-email-template-preview.php:9 -#: templates/cart/cart.php:29 templates/emails/admin-new-order.php:23 -#: templates/emails/customer-completed-order.php:24 -#: templates/emails/customer-invoice.php:28 -#: templates/emails/customer-note.php:28 -#: templates/emails/customer-processing-order.php:24 -msgid "Quantity" -msgstr "Количество" - -# @ woocommerce -#: includes/admin/views/html-email-template-preview.php:22 -msgid "Order total:" -msgstr "Общо за поръчка:" - -# @ woocommerce -#: includes/admin/views/html-email-template-preview.php:28 -#: templates/emails/admin-new-order.php:50 -#: templates/emails/customer-completed-order.php:51 -#: templates/emails/customer-note.php:55 -#: templates/emails/customer-processing-order.php:51 -#: templates/emails/plain/admin-new-order.php:39 -#: templates/order/order-details.php:97 -msgid "Customer details" -msgstr "Детайли за клиента" - -# @ woocommerce -#: includes/admin/views/html-email-template-preview.php:33 -#: templates/emails/email-addresses.php:18 -#: templates/emails/plain/email-addresses.php:12 -msgid "Billing address" -msgstr "Адрес" - -# @ woocommerce -#: includes/admin/views/html-email-template-preview.php:40 -#: templates/emails/email-addresses.php:28 -#: templates/emails/plain/email-addresses.php:17 -msgid "Shipping address" -msgstr "Адрес за доставка" - -# @ woocommerce -#: includes/admin/views/html-notice-install.php:6 -msgid "" -"Welcome to WooCommerce – You're almost ready to start " -"selling :)" -msgstr "" -"Добре дошли в WooCommerce – Вече сте почти готови да " -"започнете да продавате :)" - -# @ woocommerce -#: includes/admin/views/html-notice-install.php:7 -msgid "Install WooCommerce Pages" -msgstr "Създаване на WooCommerce системни страници" - -# @ woocommerce -#: includes/admin/views/html-notice-install.php:7 -msgid "Skip setup" -msgstr "Пропусни настройката" - -# @ woocommerce -#: includes/admin/views/html-notice-theme-support.php:6 -msgid "" -"Your theme does not declare WooCommerce support – if " -"you encounter layout issues please read our integration guide or choose a " -"WooCommerce theme :)" -msgstr "" -"Вашата текуща тема не е заявила че поддържа WooCommerce " -"– ако имате проблем с визуализацията на продукти, моля прочетете " -"нашите напътствия за интеграция или си изберете подходяща WooCommerce тема :)" - -# @ woocommerce -#: includes/admin/views/html-notice-theme-support.php:7 -msgid "Theme Integration Guide" -msgstr "Напътствия за интеграция на теми" - -# @ woocommerce -#: includes/admin/views/html-notice-theme-support.php:7 -msgid "Hide this notice" -msgstr "Скриване на това съобщение" - -# @ woocommerce -#: includes/admin/views/html-notice-update.php:6 -msgid "" -"WooCommerce Data Update Required – We just need to " -"update your install to the latest version" -msgstr "" -"Нужно е обновяване – Нужно е обновяване на вашата " -"инсталация към последна версия" - -# @ woocommerce -#: includes/admin/views/html-notice-update.php:7 -msgid "Run the updater" -msgstr "Стратиране на обновяването" - -# @ woocommerce -#: includes/admin/views/html-notice-update.php:12 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Препоръчително е да направите резервно копие на базата данни преди да " -"продължите. Желаете ли да стартирате обновяването сега?" - -# @ woocommerce -#: includes/admin/views/html-quick-edit-product.php:24 -msgid "Regular price" -msgstr "Редовна цена" - -# @ woocommerce -#: includes/admin/views/html-quick-edit-product.php:31 -msgid "Sale price" -msgstr "Цена в разпродажба" - -# @ woocommerce -#: includes/admin/views/html-report-by-date.php:16 -msgid "Custom:" -msgstr "Потребителски:" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-completed-order.php:26 -msgid "Completed order" -msgstr "Поръчката е приключена" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-completed-order.php:27 -msgid "" -"Order complete emails are sent to the customer when the order is marked " -"complete and usual indicates that the order has been shipped." -msgstr "" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-completed-order.php:29 -msgid "Your order is complete" -msgstr "Вашата поръчка беше завършена." - -# @ woocommerce -#: includes/emails/class-wc-email-customer-completed-order.php:30 -msgid "Your {site_title} order from {order_date} is complete" -msgstr "Вашата {site_title} поръчка от {order_date} е завършена" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-completed-order.php:39 -msgid "Your order is complete - download your files" -msgstr "Вашата поръчка е звършена - изтеглете вашите файлове" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-completed-order.php:40 -msgid "" -"Your {site_title} order from {order_date} is complete - download your files" -msgstr "" -"Вашата {site_title} поръчка от {order_date} е завършена - изтеглете вашите " -"файлове" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-completed-order.php:143 -#: includes/emails/class-wc-email-new-order.php:130 -msgid "Subject" -msgstr "Относно" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-completed-order.php:150 -#: includes/emails/class-wc-email-new-order.php:137 -msgid "Email Heading" -msgstr "Озаглавяване на email" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-completed-order.php:157 -msgid "Subject (downloadable)" -msgstr "Тема (за сваляне)" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-completed-order.php:164 -msgid "Email Heading (downloadable)" -msgstr "Email заглавие (за изтегляне)" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-invoice.php:29 -msgid "Customer invoice" -msgstr "Клиентска фактура" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-invoice.php:30 -msgid "" -"Customer invoice emails can be sent to the user containing order info and " -"payment links." -msgstr "" -"Клиентските фактури могат да бъдат изпратени до потребители указали данни в " -"своята поръчка." - -# @ woocommerce -#: includes/emails/class-wc-email-customer-invoice.php:35 -msgid "Invoice for order {order_number} from {order_date}" -msgstr "Активни филтри" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-invoice.php:36 -msgid "Invoice for order {order_number}" -msgstr "Фактура за поръчка {order_number}" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-invoice.php:38 -msgid "Your {site_title} order from {order_date}" -msgstr "Вашата {site_title} поръчка от {order_date}" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-invoice.php:39 -msgid "Order {order_number} details" -msgstr "Детайли към поръчка {order_number}" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-invoice.php:157 -msgid "Email subject (paid)" -msgstr "Тема на email (платено)" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-invoice.php:164 -msgid "Email heading (paid)" -msgstr "Заглавие на email (платено)" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-new-account.php:33 -msgid "New account" -msgstr "Нов профил" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-new-account.php:34 -msgid "" -"Customer new account emails are sent when a customer signs up via the " -"checkout or My Account page." -msgstr "" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-new-account.php:39 -msgid "Your account on {site_title}" -msgstr "Вашият профил в {site_title}" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-new-account.php:40 -msgid "Welcome to {site_title}" -msgstr "Добре дошли в {site_title}" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-note.php:32 -msgid "Customer note emails are sent when you add a note to an order." -msgstr "" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-note.php:37 -msgid "Note added to your {site_title} order from {order_date}" -msgstr "Бележката е добавена в {site_title} поръчка от {order_date}" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-note.php:38 -msgid "A note has been added to your order" -msgstr "Бележка беше добавена към вашата поръчка" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-processing-order.php:26 -msgid "Processing order" -msgstr "Поръчката се обработва" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-processing-order.php:27 -msgid "" -"This is an order notification sent to the customer after payment containing " -"order details." -msgstr "" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-processing-order.php:29 -msgid "Thank you for your order" -msgstr "Благодарим ви за вашата поръчка" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-processing-order.php:30 -msgid "Your {site_title} order receipt from {order_date}" -msgstr "Вашата {site_title} поръчка от {order_date}" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-reset-password.php:38 -msgid "Reset password" -msgstr "Рестартиране на парола" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-reset-password.php:39 -msgid "" -"Customer reset password emails are sent when a customer resets their " -"password." -msgstr "" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-reset-password.php:44 -msgid "Password Reset for {site_title}" -msgstr "Паролата е рестартирана за {site_title}" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-reset-password.php:45 -msgid "Password Reset Instructions" -msgstr "Инструкции за рестартиране на парола" - -# @ woocommerce -#: includes/emails/class-wc-email-new-order.php:26 -msgid "New order" -msgstr "Нова поръчка" - -#: includes/emails/class-wc-email-new-order.php:27 -msgid "New order emails are sent when an order is received." -msgstr "" -"Email от нови поръчки ще бъдат изпращани, когато пристигнат нови поръчки." - -# @ woocommerce -#: includes/emails/class-wc-email-new-order.php:29 -msgid "New customer order" -msgstr "Поръчка от нов клиент" - -# @ woocommerce -#: includes/emails/class-wc-email-new-order.php:30 -msgid "[{site_title}] New customer order ({order_number}) - {order_date}" -msgstr "[{site_title}] Нови клиентски поръчки ({order_number}) - {order_date}" - -# @ woocommerce -#: includes/emails/class-wc-email-new-order.php:123 -msgid "Recipient(s)" -msgstr "Получател(и)" - -# @ woocommerce -#: includes/emails/class-wc-email-new-order.php:125 -#, php-format -msgid "" -"Enter recipients (comma separated) for this email. Defaults to %s." -msgstr "" -"Въведете получатели (разделени със запетая) за този email. По подразбиране " -"%s." - -# @ woocommerce -#: includes/emails/class-wc-email-new-order.php:132 -#, php-format -msgid "" -"This controls the email subject line. Leave blank to use the default " -"subject: %s." -msgstr "" - -# @ woocommerce -#: includes/emails/class-wc-email-new-order.php:139 -#, php-format -msgid "" -"This controls the main heading contained within the email notification. " -"Leave blank to use the default heading: %s." -msgstr "" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:25 -msgid "BACS" -msgstr "ДБП" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:26 -msgid "" -"Allows payments by BACS, more commonly known as direct bank/wire transfer." -msgstr "" -"Позволява плащания чрез BACS/ДБП (Bank Account Clearing System/Директен " -"банков превод)." - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:68 -msgid "Enable Bank Transfer" -msgstr "Включи банковия превод" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:72 -#: includes/gateways/cheque/class-wc-gateway-cheque.php:58 -#: includes/gateways/cod/class-wc-gateway-cod.php:64 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:143 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:127 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:104 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:82 -#: includes/widgets/class-wc-widget-cart.php:30 -#: includes/widgets/class-wc-widget-layered-nav-filters.php:28 -#: includes/widgets/class-wc-widget-layered-nav.php:70 -#: includes/widgets/class-wc-widget-price-filter.php:30 -#: includes/widgets/class-wc-widget-product-categories.php:31 -#: includes/widgets/class-wc-widget-product-categories.php:36 -#: includes/widgets/class-wc-widget-product-search.php:28 -#: includes/widgets/class-wc-widget-product-tag-cloud.php:28 -#: includes/widgets/class-wc-widget-products.php:28 -#: includes/widgets/class-wc-widget-recent-reviews.php:28 -#: includes/widgets/class-wc-widget-recently-viewed.php:28 -#: includes/widgets/class-wc-widget-top-rated-products.php:30 -msgid "Title" -msgstr "Заглавие" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:74 -#: includes/gateways/cheque/class-wc-gateway-cheque.php:60 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:145 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:129 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:84 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:73 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:58 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:106 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:84 -msgid "This controls the title which the user sees during checkout." -msgstr "Контролира заглавието, което ще се използва при плащане." - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:75 -msgid "Direct Bank Transfer" -msgstr "Директен банков превод" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:81 -#: includes/gateways/cheque/class-wc-gateway-cheque.php:67 -#: includes/gateways/cod/class-wc-gateway-cod.php:66 -msgid "Payment method description that the customer will see on your checkout." -msgstr "" -"Описание на метода за плащане, който клиентите ви ще виждат на страницата за " -"поръчка." - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:82 -msgid "" -"Make your payment directly into our bank account. Please use your Order ID " -"as the payment reference. Your order won't be shipped until the funds have " -"cleared in our account." -msgstr "" -"Направете плащането директно в банковата си сметка. Моля използвайте ID-то " -"на поръчката като причина за плащане. Вашата поръчка няма да бъде изпратена " -"ако парите не са получени в нашата сметка." - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:86 -#: includes/gateways/cheque/class-wc-gateway-cheque.php:72 -#: includes/gateways/cod/class-wc-gateway-cod.php:78 -msgid "Instructions" -msgstr "Инструкции" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:88 -#: includes/gateways/cheque/class-wc-gateway-cheque.php:74 -msgid "Instructions that will be added to the thank you page and emails." -msgstr "Инструкциите ще бъдат добавени към благодарствената страница." - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:105 -msgid "Account Details" -msgstr "Детайли на профила" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:111 -msgid "Account Name" -msgstr "Име на профила" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:112 -#: includes/gateways/bacs/class-wc-gateway-bacs.php:253 -msgid "Account Number" -msgstr "Профил номер" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:113 -msgid "Bank Name" -msgstr "Име на банка" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:114 -#: includes/gateways/bacs/class-wc-gateway-bacs.php:257 -msgid "Sort Code" -msgstr "Код сортиране" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:115 -#: includes/gateways/bacs/class-wc-gateway-bacs.php:261 -msgid "IBAN" -msgstr "IBAN" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:116 -msgid "BIC / Swift" -msgstr "BIC (Swift)" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:121 -msgid "+ Add Account" -msgstr "+ Добави сметка" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:121 -msgid "Remove selected account(s)" -msgstr "Изтрий избраните сметки" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:240 -msgid "Our Bank Details" -msgstr "Нашите банкови данни" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:265 -msgid "BIC" -msgstr "BIC" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:295 -msgid "Awaiting BACS payment" -msgstr "Очаква BACS плащане" - -# @ woocommerce -#: includes/gateways/cheque/class-wc-gateway-cheque.php:25 -msgid "Cheque" -msgstr "Чек" - -# @ woocommerce -#: includes/gateways/cheque/class-wc-gateway-cheque.php:26 -msgid "" -"Allows cheque payments. Why would you take cheques in this day and age? Well " -"you probably wouldn't but it does allow you to make test purchases for " -"testing order emails and the 'success' pages etc." -msgstr "" -"Позволява плащане с чек. Защо бихте искали да приемате чекове тези години? " -"Най-вероятно не искате но ви позволяваме да го правите за тестове." - -# @ woocommerce -#: includes/gateways/cheque/class-wc-gateway-cheque.php:54 -msgid "Enable Cheque Payment" -msgstr "Включи плащането с чек" - -# @ woocommerce -#: includes/gateways/cheque/class-wc-gateway-cheque.php:61 -msgid "Cheque Payment" -msgstr "Плащане с чек" - -# @ woocommerce -#: includes/gateways/cheque/class-wc-gateway-cheque.php:68 -msgid "" -"Please send your cheque to Store Name, Store Street, Store Town, Store " -"State / County, Store Postcode." -msgstr "" -"Моля, изпратете вашият чек на Име на магазина, Улица на магазина, Град на " -"магазина, Щат на магазина/Държава, Пощенски код на магазина." - -# @ woocommerce -#: includes/gateways/cheque/class-wc-gateway-cheque.php:115 -msgid "Awaiting cheque payment" -msgstr "Очаква плащане с чек" - -# @ woocommerce -#: includes/gateways/cod/class-wc-gateway-cod.php:24 -#: includes/gateways/cod/class-wc-gateway-cod.php:67 -msgid "Cash on Delivery" -msgstr "Плащане при доставка" - -# @ woocommerce -#: includes/gateways/cod/class-wc-gateway-cod.php:25 -msgid "Have your customers pay with cash (or by other means) upon delivery." -msgstr "Клиентите ви плащат при получаване на поръчката." - -# @ woocommerce -#: includes/gateways/cod/class-wc-gateway-cod.php:57 -msgid "Enable COD" -msgstr "Включи плащане при доставка" - -# @ woocommerce -#: includes/gateways/cod/class-wc-gateway-cod.php:58 -msgid "Enable Cash on Delivery" -msgstr "Включи плащане при доставка" - -# @ woocommerce -#: includes/gateways/cod/class-wc-gateway-cod.php:73 -msgid "Payment method description that the customer will see on your website." -msgstr "Описание на метода за плащане, който клиентите ви ще виждат на сайта." - -# @ woocommerce -#: includes/gateways/cod/class-wc-gateway-cod.php:74 -#: includes/gateways/cod/class-wc-gateway-cod.php:81 -msgid "Pay with cash upon delivery." -msgstr "Плащане при доставка." - -# @ woocommerce -#: includes/gateways/cod/class-wc-gateway-cod.php:80 -msgid "Instructions that will be added to the thank you page." -msgstr "Инструкциите ще бъдат добавени към благодарствената ви страница." - -# @ woocommerce -#: includes/gateways/cod/class-wc-gateway-cod.php:85 -msgid "Enable for shipping methods" -msgstr "Включи за методи на доставка" - -# @ woocommerce -#: includes/gateways/cod/class-wc-gateway-cod.php:90 -msgid "" -"If COD is only available for certain methods, set it up here. Leave blank to " -"enable for all methods." -msgstr "" - -# @ woocommerce -#: includes/gateways/cod/class-wc-gateway-cod.php:94 -msgid "Select shipping methods" -msgstr "Избор на методи за доставка" - -# @ woocommerce -#: includes/gateways/cod/class-wc-gateway-cod.php:158 -msgid "Payment to be made upon delivery." -msgstr "Плащането да бъде направено при доставка." - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:31 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:168 -msgid "Mijireh Checkout" -msgstr "Mijireh Checkout" - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:108 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:293 -msgid "Mijireh error:" -msgstr "Mijireh грешка:" - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:132 -msgid "Enable Mijireh Checkout" -msgstr "Включи Mijireh Checkout" - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:136 -msgid "Access Key" -msgstr "Ключ за достъп" - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:138 -msgid "The Mijireh access key for your store." -msgstr "Mijireh ключа за достъпн за вашия магазин." - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:146 -msgid "Credit Card" -msgstr "Кредитна Карта" - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:152 -msgid "Pay securely with your credit card." -msgstr "Платете сигурно с вашата кредитна карта." - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:153 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:136 -msgid "This controls the description which the user sees during checkout." -msgstr "Контролира описанието, което потребителя вижда при плащане." - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:172 -msgid "Get started with Mijireh Checkout" -msgstr "Започни с Mijireh Checkout" - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:173 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site. Mijireh supports a wide variety of payment gateways: Stripe, " -"Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and more." -msgstr "" -"предоставя пълно PCI Compliant, сигурен начин да събирате и изпращате " -"информация за кредитни карти на вашия метод за плащане като запазите пълен " -"контрол върху дизайна на сайта си. Mijireh поддържа широко разнообразие от " -"методи за плащане: Stripe, Authorize.net, PayPal, eWay, SagePay, Braintree, " -"PayLeap, и други." - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:175 -msgid "Join for free" -msgstr "Запиши се безплатно" - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:175 -msgid "Learn more about WooCommerce and Mijireh" -msgstr "Научи повече за WooCommerce и Mijireh" - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:179 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site." -msgstr "" -"предоставя пълно PCI Compliant, сигурен начин да събирате и изпращате " -"информация за кредитни карти на вашия метод за плащане като запазите пълен " -"контрол върху дизайна на сайта си." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:34 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:130 -msgid "PayPal" -msgstr "PayPal" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:93 -msgid "PayPal standard" -msgstr "PayPal standard" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:94 -msgid "" -"PayPal standard works by sending the user to PayPal to enter their payment " -"information." -msgstr "" -"PayPal standard работи като изпраща потребителя в PayPal за да въведе " -"информацията си за плащане." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:106 -msgid "Gateway Disabled" -msgstr "Медота изключен" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:106 -msgid "PayPal does not support your store currency." -msgstr "PayPal не поддържа валутата на вашия магазин." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:123 -msgid "Enable PayPal standard" -msgstr "Включи Paypal standard" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:137 -msgid "" -"Pay via PayPal; you can pay with your credit card if you don't have a PayPal " -"account" -msgstr "" -"Плащане чрез PayPal; може да платите с вашата кредитна карта ако нямате " -"PayPal профил" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:140 -msgid "PayPal Email" -msgstr "PayPal Email" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:142 -msgid "" -"Please enter your PayPal email address; this is needed in order to take " -"payment." -msgstr "" -"Моля, въведете вашия PayPal email адрес; нужен е за да се направи плащането." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:148 -msgid "Receiver Email" -msgstr "Email на приемача" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:150 -msgid "" -"If this differs from the email entered above, input your main receiver email " -"for your PayPal account. This is used to validate IPN requests." -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:156 -msgid "PayPal Identity Token" -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:158 -msgid "" -"Optionally enable \"Payment Data Transfer\" (Profile > Website Payment " -"Preferences) and then copy your identity token here. This will allow " -"payments to be verified without the need for PayPal IPN." -msgstr "" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:161 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:194 -msgid "Optional" -msgstr "По желание" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:164 -msgid "Invoice Prefix" -msgstr "Префикс за фактура" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:166 -msgid "" -"Please enter a prefix for your invoice numbers. If you use your PayPal " -"account for multiple stores ensure this prefix is unique as PayPal will not " -"allow orders with the same invoice number." -msgstr "" -"Въведете представка за вашите номера на поръчки. Ако използвате вашa PayPal " -"сметка за няколко магазина, убедете се, че тази представка е уникална понеже " -"PayPal няма да одобри поръчки с еднакви номера." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:171 -msgid "Payment Action" -msgstr "Действие при плащане" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:173 -msgid "" -"Choose whether you wish to capture funds immediately or authorize payment " -"only." -msgstr "" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:177 -msgid "Capture" -msgstr "Прихващане" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:178 -msgid "Authorize" -msgstr "Авторизация" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:182 -msgid "Submission method" -msgstr "Начин на изпращане на информация" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:184 -msgid "Use form submission method." -msgstr "Използвай форма за изпращане на информация." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:185 -msgid "" -"Enable this to post order data to PayPal via a form instead of using a " -"redirect/querystring." -msgstr "" -"Включи за да изпратите информация за поръчката на PayPal чрез форма, а не " -"чрез пренасочване." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:189 -msgid "Page Style" -msgstr "Стил на стрницата" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:191 -msgid "" -"Optionally enter the name of the page style you wish to use. These are " -"defined within your PayPal account." -msgstr "" -"По избор, въведете име на стила на страница, който искате да ползвате. " -"Дефинират се във вашия PayPal профил." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:197 -msgid "Shipping options" -msgstr "Настройки за доставка" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:202 -msgid "Shipping details" -msgstr "Детайли на доставката" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:204 -msgid "Send shipping details to PayPal instead of billing." -msgstr "Изпратете информацията за доставка на PayPal, вместо на фактурата." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:206 -msgid "" -"PayPal allows us to send 1 address. If you are using PayPal for shipping " -"labels you may prefer to send the shipping address rather than billing." -msgstr "" -"PayPal ви позволява да изпратите 1 адрес. Ако използвате PayPal за етикети " -"за доставка, може би ще предпочитете да изпратите адреса за доставка, вместо " -"адреса на плащането." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:210 -msgid "Address override" -msgstr "Замяна на адреса" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:212 -msgid "" -"Enable \"address_override\" to prevent address information from being " -"changed." -msgstr "" -"Включете \"address_override\" за да предотвратите промяна на адресната " -"информация." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:213 -msgid "" -"PayPal verifies addresses therefore this setting can cause errors (we " -"recommend keeping it disabled)." -msgstr "" -"PayPal проверява адресите и за това тази настройка може да причини грешки " -"(препоръчваме да я държите изключена)." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:217 -msgid "Gateway Testing" -msgstr "Тестване на метода" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:222 -msgid "PayPal sandbox" -msgstr "PayPal sandbox" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:224 -msgid "Enable PayPal sandbox" -msgstr "Включи PayPal sandbox" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:226 -#, php-format -msgid "" -"PayPal sandbox can be used to test payments. Sign up for a developer account " -"here." -msgstr "" -"PayPal sandbox може да се използва за тестови плащания. Запишете се за " -"профил за разработчици от тук." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:229 -msgid "Debug Log" -msgstr "Лог за откриване на бъгове" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:231 -msgid "Enable logging" -msgstr "Включи логването" - -# @ default -#: includes/gateways/paypal/class-wc-gateway-paypal.php:233 -#, php-format -msgid "" -"Log PayPal events, such as IPN requests, inside woocommerce/logs/" -"paypal-%s.txt" -msgstr "" -"Записва PayPal събития, като IPN заявки, в woocommerce/logs/paypal-%s." -"txt" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:342 -#, php-format -msgid "Order %s" -msgstr "Поръчка %s" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:352 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:406 -msgid "Shipping via" -msgstr "Доставка чрез" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:446 -msgid "" -"Thank you for your order. We are now redirecting you to PayPal to make " -"payment." -msgstr "" -"Благодарим ви за вашата поръчка. Ще ви пренасочим към PayPal за да направите " -"плащането." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:471 -msgid "Pay via PayPal" -msgstr "Плати чрез PayPal" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:471 -msgid "Cancel order & restore cart" -msgstr "Отмени поръчката и възстанови кошницата" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:527 -msgid "" -"Thank you - your order is now pending payment. You should be automatically " -"redirected to PayPal to make payment." -msgstr "" -"Благодарим ви за вашата поръчка. Ще ви пренасочим към PayPal за да " -"осъществите заплащането." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:668 -#, php-format -msgid "Validation error: PayPal amounts do not match (gross %s)." -msgstr "Грешка при валидацията: PayPal количествата не съвпадат (бруто %s)." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:679 -#, php-format -msgid "" -"Validation error: PayPal IPN response from a different email address (%s)." -msgstr "" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:697 -msgid "IPN payment completed" -msgstr "IPN плащането завършено" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:700 -#, php-format -msgid "Payment pending: %s" -msgstr "Очакващи плащане: %s" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:712 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:720 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:737 -#, php-format -msgid "Payment %s via IPN." -msgstr "Плащане %s чрез IPN." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:725 -msgid "Order refunded/reversed" -msgstr "Поръчката е възстановена/отменена" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:726 -#, php-format -msgid "Order %s has been marked as refunded - PayPal reason code: %s" -msgstr "Поръчка %s е отбелязана като възстановена - PayPal код за причина: %s" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:729 -#, php-format -msgid "Payment for order %s refunded/reversed" -msgstr "Payment for order %s refunded/reversed" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:742 -msgid "Order reversed" -msgstr "Получена е поръчка" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:743 -#, php-format -msgid "" -"Order %s has been marked on-hold due to a reversal - PayPal reason code: %s" -msgstr "Поръчка %s е маркирана за изчавкане - PayPal код за причина: %s" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:746 -#, php-format -msgid "Payment for order %s reversed" -msgstr "Плащането за поръчката %s е възстановено" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:754 -msgid "Reversal Cancelled" -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:755 -#, php-format -msgid "" -"Order %s has had a reversal cancelled. Please check the status of payment " -"and update the order status accordingly." -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:758 -#, php-format -msgid "Reversal cancelled for order %s" -msgstr "" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:825 -#, php-format -msgid "Validation error: PayPal amounts do not match (amt %s)." -msgstr "" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:832 -msgid "PDT payment completed" -msgstr "IPN плащането завършено" - -# @ woocommerce -#: includes/integrations/google-analytics/class-wc-google-analytics.php:26 -msgid "Google Analytics" -msgstr "Google аналитикс" - -# @ woocommerce -#: includes/integrations/google-analytics/class-wc-google-analytics.php:27 -msgid "" -"Google Analytics is a free service offered by Google that generates detailed " -"statistics about the visitors to a website." -msgstr "" -"Google Analytics е безплатна услуга, предлагана от Google, която генерира " -"детайлни статистики за посетителите на вашият сайт." - -# @ woocommerce -#: includes/integrations/google-analytics/class-wc-google-analytics.php:63 -msgid "Google Analytics ID" -msgstr "Google аналитикс ID" - -# @ woocommerce -#: includes/integrations/google-analytics/class-wc-google-analytics.php:64 -msgid "" -"Log into your google analytics account to find your ID. e.g. UA-XXXXX-" -"X" -msgstr "" -"Влезте в Google Analytics за да видите вашето ID, пр. UA-XXXXX-X" - -# @ woocommerce -#: includes/integrations/google-analytics/class-wc-google-analytics.php:69 -msgid "Set Domain Name" -msgstr "Задаване на домейн" - -#: includes/integrations/google-analytics/class-wc-google-analytics.php:70 -#, php-format -msgid "" -"(Optional) Sets the _setDomainName variable. See " -"here for more information." -msgstr "" -"(По желание) Дефинира _setDomainName променливата. Вижте документацията за повече информация." - -# @ woocommerce -#: includes/integrations/google-analytics/class-wc-google-analytics.php:75 -msgid "Tracking code" -msgstr "Код за проследяване" - -# @ woocommerce -#: includes/integrations/google-analytics/class-wc-google-analytics.php:76 -msgid "" -"Add tracking code to your site's footer. You don't need to enable this if " -"using a 3rd party analytics plugin." -msgstr "" -"Добавете кода за проследяване във футъра на сайта си. Няма нужда да го " -"влючвате, ако ползвате външно разширение за analytics." - -# @ woocommerce -#: includes/integrations/google-analytics/class-wc-google-analytics.php:82 -msgid "Add eCommerce tracking code to the thankyou page" -msgstr "Добавете eCommerce код за проследяване на блаогдарствената страница" - -# @ woocommerce -#: includes/integrations/google-analytics/class-wc-google-analytics.php:88 -msgid "Add event tracking code for add to cart actions" -msgstr "Добавете код за следене към всички действия в кошницата" - -# @ woocommerce -#: includes/integrations/google-analytics/class-wc-google-analytics.php:218 -#: includes/integrations/google-analytics/class-wc-google-analytics.php:275 -#: templates/single-product/meta.php:20 -msgid "SKU:" -msgstr "SKU:" - -# @ woocommerce -#: includes/integrations/sharedaddy/class-wc-sharedaddy.php:26 -msgid "ShareDaddy" -msgstr "ShareDaddy" - -# @ woocommerce -#: includes/integrations/sharedaddy/class-wc-sharedaddy.php:27 -msgid "ShareDaddy is a sharing plugin bundled with JetPack." -msgstr "ShareDaddy е разширение за споделяне свързано с JetPack." - -# @ woocommerce -#: includes/integrations/sharedaddy/class-wc-sharedaddy.php:51 -msgid "Output ShareDaddy button?" -msgstr "Създай ShareDaddy бутон?" - -# @ woocommerce -#: includes/integrations/sharedaddy/class-wc-sharedaddy.php:52 -msgid "Enable this option to show the ShareDaddy button on the product page." -msgstr "" -"Включи тази опция за да визуализираш ShareDaddy бутона на продуктовата " -"страница." - -# @ woocommerce -#: includes/integrations/sharethis/class-wc-sharethis.php:29 -msgid "ShareThis" -msgstr "ShareThis" - -# @ woocommerce -#: includes/integrations/sharethis/class-wc-sharethis.php:30 -msgid "" -"ShareThis offers a sharing widget which will allow customers to share links " -"to products with their friends." -msgstr "" -"ShareThis предлага джаджа за споделяне, която позволява на клиентите ви да " -"споделят вашите продукти с приятели." - -# @ woocommerce -#: includes/integrations/sharethis/class-wc-sharethis.php:77 -msgid "ShareThis Publisher ID" -msgstr "ShareThis ID на издател" - -# @ woocommerce -#: includes/integrations/sharethis/class-wc-sharethis.php:78 -#, php-format -msgid "" -"Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons on " -"product pages." -msgstr "" -"Въведете вашият %1$sShareThis publisher ID%2$s за да покажете социалните " -"бутони на продуктовите страници." - -# @ woocommerce -#: includes/integrations/sharethis/class-wc-sharethis.php:83 -msgid "ShareThis Code" -msgstr "ShareThis код" - -# @ woocommerce -#: includes/integrations/sharethis/class-wc-sharethis.php:84 -msgid "You can tweak the ShareThis code by editing this option." -msgstr "Може да настроите ShareThis кода като редактирате тази настройка." - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:25 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:85 -msgid "Flat Rate" -msgstr "Фиксирана ставка" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:27 -msgid "Flat rates let you define a standard rate per item, or per order." -msgstr "" -"Фиксираните ставки ви позволяват да зададете стандартна ставка за продукт " -"или за поръчка." - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:78 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:52 -msgid "Enable this shipping method" -msgstr "Включи този метод за доставка" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:82 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:71 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:56 -msgid "Method Title" -msgstr "Заглавие на метода" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:89 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:63 -msgid "Availability" -msgstr "Наличност" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:94 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:83 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:145 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:102 -msgid "All allowed countries" -msgstr "Всички разрешени държави" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:106 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:95 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:80 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:157 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:114 -msgid "Select some countries" -msgstr "Избрани държави" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:119 -msgid "Cost per order" -msgstr "Цена за поръчка" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:122 -msgid "" -"Enter a cost (excluding tax) per order, e.g. 5.00. Leave blank to disable." -msgstr "Въведете цена за поръчка, пр. 5.00. Оставете празно за да изключите." - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:128 -msgid "Additional Rates" -msgstr "Допълнителни възможности за ставки" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:130 -msgid "" -"Optional extra shipping options with additional costs (one per line): Option " -"Name | Additional Cost [+- Percents] | Per Cost Type (order, class, or item) " -"Example: Priority Mail | 6.95 [+ 0.2%] | order." -msgstr "" -"По избор допълнителни настройки на доставката с допълнителна цена (една на " -"ред). Пример: Име на опцията|Цена|За поръчка (да или не). " -"Пример: Експресна доставка|6.95|да. Ако за поръчка е зададено " -"на Не, ще използва \"Тип калкулация\" настройката." - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:133 -msgid "" -"Option Name | Additional Cost [+- Percents%] | Per Cost Type (order, class, " -"or item)" -msgstr "" -"Име на доставчик | Такса [+- Процент%] | Вид ставка (order, class, или item)" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:136 -msgid "Additional Costs" -msgstr "Допълнителни начисления" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:138 -msgid "" -"Additional costs can be added below - these will all be added to the per-" -"order cost above." -msgstr "" -"Допълнителни такси могат да бъдат добавяни от тук - тези такси ще бъдат " -"добавяни към основните такси за поръчката." - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:141 -msgid "Costs Added..." -msgstr "Цените са добавени..." - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:145 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:97 -msgid "Per Order - charge shipping for the entire order as a whole" -msgstr "За поръчка - добави цента на доставката към цялата поръчка" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:146 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:98 -msgid "Per Item - charge shipping for each item individually" -msgstr "За продукт - добави цената за доставка към всеки продукт по отделно" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:147 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:99 -msgid "Per Class - charge shipping for each shipping class in an order" -msgstr "За клас - добави цената за доставк за всеки доставен клас в поръчката" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:154 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:120 -msgid "Minimum Handling Fee" -msgstr "Минимум такса за обработка" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:157 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:123 -msgid "" -"Enter a minimum fee amount. Fee's less than this will be increased. Leave " -"blank to disable." -msgstr "" -"Въведете минимална стойност на таксата. Такси с по-малка стойност ще бъдат " -"повишени. Оставете празно за да изключите." - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:522 -msgid "Costs" -msgstr "Цени" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:529 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:103 -msgid "Cost" -msgstr "Цена" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:529 -msgid "Cost, excluding tax." -msgstr "Разход, без таксата." - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:530 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:112 -msgid "Handling Fee" -msgstr "Такса обработка" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:530 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -msgstr "" -"Безплатно без таксата. Въведете количество, пр. 2.50, или процент, пр. 5%." - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:535 -msgid "+ Add Cost" -msgstr "+ Добавяне на цена" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:535 -msgid "Delete selected costs" -msgstr "Изтрий избраните цени" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:541 -msgid "Any class" -msgstr "Всеки клас" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:561 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:591 -msgid "Select a class…" -msgstr "Избери клас…" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:605 -msgid "Delete the selected rates?" -msgstr "Изтрий избраните цени?" - -# @ woocommerce -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:25 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:74 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:135 -msgid "Free Shipping" -msgstr "Безплатна доставка" - -# @ woocommerce -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:67 -msgid "Enable Free Shipping" -msgstr "Включи безплатната доставка" - -# @ woocommerce -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:78 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:140 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:97 -msgid "Method availability" -msgstr "Наличност на метода" - -# @ woocommerce -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:99 -msgid "Free Shipping Requires..." -msgstr "Изискване за безплатна доставка..." - -# @ woocommerce -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:104 -msgid "A valid free shipping coupon" -msgstr "Валиден купон за безплатна доставка" - -# @ woocommerce -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:105 -msgid "A minimum order amount (defined below)" -msgstr "Минимална сума за поръчката (дефинира се допълнително)" - -# @ woocommerce -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:106 -msgid "A minimum order amount OR a coupon" -msgstr "Минимална сума ИЛИ купон" - -# @ woocommerce -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:107 -msgid "A minimum order amount AND a coupon" -msgstr "Минимална сума И купон" - -# @ woocommerce -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:111 -msgid "Minimum Order Amount" -msgstr "Минимално количество на поръчката" - -# @ woocommerce -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:114 -msgid "" -"Users will need to spend this amount to get free shipping (if enabled above)." -msgstr "" -"Потребителите ще трябва да похарчат толкова за да получат безплатна " -"доставка. Оставете празно за да изключите." - -# @ woocommerce -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:29 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:59 -msgid "International Delivery" -msgstr "Международна доставка" - -# @ woocommerce -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:30 -msgid "International delivery based on flat rate shipping." -msgstr "Международна доставка базирана на фиксирана ставка." - -# @ woocommerce -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:68 -msgid "Selected countries" -msgstr "Избрани държави" - -# @ woocommerce -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:69 -msgid "Excluding selected countries" -msgstr "Изключи избраните държави" - -# @ woocommerce -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:73 -msgid "Countries" -msgstr "Държави" - -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:93 -msgid "Cost Added..." -msgstr "Цената са добавени" - -# @ woocommerce -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:106 -msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -msgstr "Цена без таксата. Въведете количество, пр. 2.50." - -# @ woocommerce -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:114 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. " -"Leave blank to disable." -msgstr "" -"Безплатно без такса. Въведете количество, пр. 2.50, или процент, пр. 5%. " -"Оставете празно за да изключите." - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:25 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:107 -msgid "Local Delivery" -msgstr "Местна доставка" - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:98 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:76 -msgid "Enable" -msgstr "Включи" - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:100 -msgid "Enable local delivery" -msgstr "Включи местната дотавка" - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:111 -msgid "Fee Type" -msgstr "Тип такса" - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:113 -msgid "How to calculate delivery charges" -msgstr "Как да смятаме такса доставка" - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 -msgid "Fixed amount" -msgstr "Фискирана ставка" - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:117 -msgid "Percentage of cart total" -msgstr "Процент от тотала на поръчката" - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:118 -msgid "Fixed amount per product" -msgstr "Фиксирана ставка за продукт" - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:123 -msgid "Delivery Fee" -msgstr "Такса доставка" - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:126 -msgid "" -"What fee do you want to charge for local delivery, disregarded if you choose " -"free. Leave blank to disable." -msgstr "" -"Каква такса искате да взимате от вашите клиенти за местна доставка. Не се " -"взима предвид ако изберете безплатна доставка. Оставете празно за да " -"изключите." - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:132 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:89 -msgid "Zip/Post Codes" -msgstr "Пощенски код" - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:134 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:91 -msgid "" -"What zip/post codes would you like to offer delivery to? Separate codes with " -"a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -msgstr "" -"До какви пощенски кодове желаете да предлагате доставка? Разделете със " -"запетая. Приемат се и маски (пр. P* ще позволи PE30, P4112 и др.)." - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:172 -msgid "" -"Local delivery is a simple shipping method for delivering orders locally." -msgstr "Местната доставка е прост метод за доставка на поръчки локално." - -# @ woocommerce -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:25 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:85 -msgid "Local Pickup" -msgstr "Взимане от магазина" - -# @ woocommerce -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:78 -msgid "Enable local pickup" -msgstr "Включи взимане от магазина" - -# @ woocommerce -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:129 -msgid "" -"Local pickup is a simple method which allows the customer to pick up their " -"order themselves." -msgstr "" -"Взимането от магазина е прост метод, който позволява на клиентите да взеат " -"поръчките си от магазина." - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-cart.php:67 -msgid "Shipping costs updated." -msgstr "Разходите за доставка обновени." - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-checkout.php:87 -#: includes/shortcodes/class-wc-shortcode-my-account.php:102 -#: includes/shortcodes/class-wc-shortcode-view-order.php:50 -msgid "My Account →" -msgstr "Моят профил →" - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-checkout.php:109 -#: includes/shortcodes/class-wc-shortcode-checkout.php:160 -#, php-format -msgid "" -"This order’s status is “%s”—it cannot be paid for. " -"Please contact us if you need assistance." -msgstr "" -"Статусът на поръчката е “%s”, и не може да бъде платен. Моля " -"свържете се с нас ако се нуждаете от помощ." - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-checkout.php:113 -#: includes/shortcodes/class-wc-shortcode-checkout.php:164 -msgid "Sorry, this order is invalid and cannot be paid for." -msgstr "Съжаляваме но тази поръчка не е валидна и не може да бъде платена." - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-checkout.php:134 -#: templates/checkout/thankyou.php:44 -msgid "Date:" -msgstr "Дата:" - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-checkout.php:138 -#: templates/checkout/thankyou.php:48 -msgid "Total:" -msgstr "Общо:" - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-checkout.php:143 -#: templates/checkout/thankyou.php:53 -msgid "Payment method:" -msgstr "Метод на плащане:" - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-checkout.php:233 -msgid "" -"The order totals have been updated. Please confirm your order by pressing " -"the Place Order button at the bottom of the page." -msgstr "Тоталите на поръчката бяха обновени. Моля, потвърдете ваата поръчка." - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-my-account.php:109 -#: templates/myaccount/view-order.php:13 -#, php-format -msgid "" -"Order %s made on %s" -msgstr "" -"Поръчка %s направена на %s" - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-my-account.php:110 -#: templates/myaccount/view-order.php:14 -#, php-format -msgid "Order status: %s" -msgstr "Статус поръчка: %s" - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-my-account.php:115 -#: templates/myaccount/view-order.php:20 templates/order/tracking.php:31 -msgid "Order Updates" -msgstr "Обновени поръчки" - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-my-account.php:121 -#: templates/myaccount/view-order.php:26 templates/order/tracking.php:37 -msgid "l jS \\o\\f F Y, h:ia" -msgstr "" - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-my-account.php:228 -msgid "Enter a username or e-mail address." -msgstr "Въведете потребилтеско име или email." - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-my-account.php:235 -msgid "There is no user registered with that email address." -msgstr "Няма регистриран профил с този email." - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-my-account.php:250 -msgid "Invalid username or e-mail." -msgstr "Невалидно потребителско име или email." - -# @ default -#: includes/shortcodes/class-wc-shortcode-my-account.php:264 -msgid "Password reset is not allowed for this user" -msgstr "Рестартирането на парола не е разрешено аз този потребител" - -# @ default -#: includes/shortcodes/class-wc-shortcode-my-account.php:292 -msgid "Check your e-mail for the confirmation link." -msgstr "Проверете вашият email адрес за потвърждаващата връзка" - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-my-account.php:312 -#: includes/shortcodes/class-wc-shortcode-my-account.php:317 -#: includes/shortcodes/class-wc-shortcode-my-account.php:324 -msgid "Invalid key" -msgstr "Невалиден ключ" - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-order-tracking.php:50 -msgid "Please enter a valid order ID" -msgstr "Моля, въведете валидно ID на поръчка" - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-order-tracking.php:54 -msgid "Please enter a valid order email" -msgstr "Моля, въведете валиден email за поръчка" - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-order-tracking.php:73 -msgid "Sorry, we could not find that order id in our database." -msgstr "Съжаляваме, не можем да намерим тази поръчка в базата данни." - -# @ woocommerce -#: includes/widgets/class-wc-widget-cart.php:23 -msgid "Display the user's Cart in the sidebar." -msgstr "Показва потребителската кошница в страничната лента." - -# @ woocommerce -#: includes/widgets/class-wc-widget-cart.php:25 -msgid "WooCommerce Cart" -msgstr "WooCommerce Кошница" - -# @ woocommerce -#: includes/widgets/class-wc-widget-cart.php:35 -msgid "Hide if cart is empty" -msgstr "Скрий ако кошницата е празна" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav-filters.php:21 -msgid "Shows active layered nav filters so users can see and deactivate them." -msgstr "" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav-filters.php:23 -msgid "WooCommerce Layered Nav Filters" -msgstr "Навигация на слоеве (WooCommerce)" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav-filters.php:27 -msgid "Active Filters" -msgstr "Активни филтри" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav-filters.php:84 -#: includes/widgets/class-wc-widget-layered-nav-filters.php:91 -#: includes/widgets/class-wc-widget-layered-nav-filters.php:96 -msgid "Remove filter" -msgstr "Премахване на филтър" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav-filters.php:91 -msgid "Min" -msgstr "Мин." - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav-filters.php:96 -msgid "Max" -msgstr "Макс." - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav.php:21 -msgid "" -"Shows a custom attribute in a widget which lets you narrow down the list of " -"products when viewing product categories." -msgstr "" -"Показва потребителски атреботи в джаджа, която позволява да стесните списъка " -"с продукти, когато разглеждате каталога." - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav.php:23 -msgid "WooCommerce Layered Nav" -msgstr "WooCommerce Навигация на слоеве" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav.php:69 -msgid "Filter by" -msgstr "Филтър" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav.php:75 -msgid "Attribute" -msgstr "Атрибут" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav.php:83 -msgid "List" -msgstr "Списък" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav.php:84 -msgid "Dropdown" -msgstr "Падащо меню" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav.php:90 -msgid "Query type" -msgstr "Тип заявка:" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav.php:92 -msgid "AND" -msgstr "И" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav.php:93 -msgid "OR" -msgstr "ИЛИ" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav.php:174 -#, php-format -msgid "Any %s" -msgstr "Всяка %s" - -# @ woocommerce -#: includes/widgets/class-wc-widget-price-filter.php:23 -msgid "" -"Shows a price filter slider in a widget which lets you narrow down the list " -"of shown products when viewing product categories." -msgstr "" -"Показвай ценови филтър в джаджа, която позволява да стесните търсените " -"продукти при разглеждане." - -# @ woocommerce -#: includes/widgets/class-wc-widget-price-filter.php:25 -msgid "WooCommerce Price Filter" -msgstr "WooCommerce Ценови филтър" - -# @ woocommerce -#: includes/widgets/class-wc-widget-price-filter.php:29 -msgid "Filter by price" -msgstr "Филтър по цена" - -# @ woocommerce -#: includes/widgets/class-wc-widget-price-filter.php:135 -msgid "Min price" -msgstr "Минимална цена" - -# @ woocommerce -#: includes/widgets/class-wc-widget-price-filter.php:136 -msgid "Max price" -msgstr "Максимална цена" - -# @ woocommerce -#: includes/widgets/class-wc-widget-price-filter.php:137 -msgid "Filter" -msgstr "Филтър" - -# @ woocommerce -#: includes/widgets/class-wc-widget-price-filter.php:139 -msgid "Price:" -msgstr "Цена:" - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-categories.php:24 -msgid "A list or dropdown of product categories." -msgstr "Падащ списък с категории продукти." - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-categories.php:26 -msgid "WooCommerce Product Categories" -msgstr "WooCommerce продуктови категории" - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-categories.php:38 -msgid "Category Order" -msgstr "Подредба на категориите" - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-categories.php:45 -msgid "Show as dropdown" -msgstr "Покажи като падащо меню" - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-categories.php:50 -msgid "Show post counts" -msgstr "Покажи броя постове" - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-categories.php:55 -msgid "Show hierarchy" -msgstr "Покажи йерархията" - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-categories.php:60 -msgid "Only show children for the current category" -msgstr "Показвай само деца на сегашната категория" - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-categories.php:156 -msgid "No product categories exist." -msgstr "Не съществуват продуктови категории." - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-search.php:21 -msgid "A Search box for products only." -msgstr "Търсене само за продукти." - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-search.php:23 -msgid "WooCommerce Product Search" -msgstr "WooCommerce продуктово търсене" - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-tag-cloud.php:21 -msgid "Your most used product tags in cloud format." -msgstr "Най използваните етикети под формата на облак." - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-tag-cloud.php:23 -msgid "WooCommerce Product Tags" -msgstr "WooCommerce продуктови етикети" - -# @ woocommerce -#: includes/widgets/class-wc-widget-products.php:21 -msgid "Display a list of your products on your site." -msgstr "Показвай списък на продуктите в разпродажба." - -# @ woocommerce -#: includes/widgets/class-wc-widget-products.php:23 -msgid "WooCommerce Products" -msgstr "WooCommerce продукти" - -# @ woocommerce -#: includes/widgets/class-wc-widget-products.php:36 -#: includes/widgets/class-wc-widget-recently-viewed.php:36 -#: includes/widgets/class-wc-widget-top-rated-products.php:38 -msgid "Number of products to show" -msgstr "Брой продукти за показване:" - -# @ woocommerce -#: includes/widgets/class-wc-widget-products.php:43 -msgid "All Products" -msgstr "Всички продукти" - -# @ woocommerce -#: includes/widgets/class-wc-widget-products.php:44 -msgid "Featured Products" -msgstr "Избрани продукти" - -# @ woocommerce -#: includes/widgets/class-wc-widget-products.php:45 -msgid "On-sale Products" -msgstr "Продукти в разпродажба" - -#: includes/widgets/class-wc-widget-products.php:55 -msgid "Random" -msgstr "Произволен" - -# @ woocommerce -#: includes/widgets/class-wc-widget-products.php:56 -msgid "Sales" -msgstr "Продажба" - -# @ woocommerce -#: includes/widgets/class-wc-widget-products.php:62 -msgctxt "Sorting order" -msgid "Order" -msgstr "Поръчка" - -#: includes/widgets/class-wc-widget-products.php:64 -msgid "ASC" -msgstr "Възх." - -#: includes/widgets/class-wc-widget-products.php:65 -msgid "DESC" -msgstr "Низх." - -# @ woocommerce -#: includes/widgets/class-wc-widget-products.php:71 -msgid "Hide free products" -msgstr "Скрий безплатните продукти" - -# @ woocommerce -#: includes/widgets/class-wc-widget-products.php:76 -msgid "Show hidden products" -msgstr "Показване на скрити продукти" - -# @ woocommerce -#: includes/widgets/class-wc-widget-recent-reviews.php:21 -msgid "Display a list of your most recent reviews on your site." -msgstr "Показва списък на най-новите ревюта на сайта ви." - -# @ woocommerce -#: includes/widgets/class-wc-widget-recent-reviews.php:27 -msgid "Recent Reviews" -msgstr "Нови ревюта" - -# @ woocommerce -#: includes/widgets/class-wc-widget-recent-reviews.php:36 -msgid "Number of reviews to show" -msgstr "Брой ревюта за показване:" - -# @ woocommerce -#: includes/widgets/class-wc-widget-recent-reviews.php:85 -#, php-format -msgctxt "by comment author" -msgid "by %1$s" -msgstr "от %1$s" - -# @ woocommerce -#: includes/widgets/class-wc-widget-recently-viewed.php:21 -msgid "Display a list of recently viewed products." -msgstr "Показва списък от наскоро прегледани продукти." - -# @ woocommerce -#: includes/widgets/class-wc-widget-recently-viewed.php:23 -msgid "WooCommerce Recently Viewed" -msgstr "WooCommerce скоро прегледани продукти" - -# @ woocommerce -#: includes/widgets/class-wc-widget-recently-viewed.php:27 -msgid "Recently Viewed Products" -msgstr "Скоро прегледани продукти" - -# @ woocommerce -#: includes/widgets/class-wc-widget-top-rated-products.php:23 -msgid "Display a list of your top rated products on your site." -msgstr "Показва списък от най-високо оценените продукти." - -# @ woocommerce -#: includes/widgets/class-wc-widget-top-rated-products.php:25 -msgid "WooCommerce Top Rated Products" -msgstr "WooCommerce продукти с най-висок рейтинг" - -# @ woocommerce -#: includes/widgets/class-wc-widget-top-rated-products.php:29 -msgid "Top Rated Products" -msgstr "Продукти с най-висок рейтинг" - -# @ woocommerce -#: templates/loop-shop.php:40 templates/loop/no-products-found.php:14 -msgid "No products found which match your selection." -msgstr "Не бяха намерени продукти, отговарящи на критериите ви." - -# @ woocommerce -#: templates/single-product-reviews.php:30 -#, php-format -msgid "%s review for %s" -msgid_plural "%s reviews for %s" -msgstr[0] "%s ревю за %s" -msgstr[1] "%s ревюта за %s" - -# @ woocommerce -#: templates/single-product-reviews.php:58 -msgid " Previous" -msgstr " Предишно" - -# @ woocommerce -#: templates/single-product-reviews.php:59 -msgid "Next " -msgstr "Следващо " - -# @ woocommerce -#: templates/single-product-reviews.php:63 -msgid "Add Review" -msgstr "Добави отзив" - -# @ woocommerce -#: templates/single-product-reviews.php:65 -msgid "Add a review" -msgstr "Добавете отзив" - -# @ woocommerce -#: templates/single-product-reviews.php:69 -msgid "Be the first to review" -msgstr "Напишете отзив първи" - -# @ woocommerce -#: templates/single-product-reviews.php:71 -#, php-format -msgid "There are no reviews yet, would you like to %s submit yours%s?" -msgstr "Все още няма отзиви за този продукт, желаете ли да %s дадете вашия %s?" - -# @ woocommerce -#: templates/single-product-reviews.php:71 -msgid "Add Your Review" -msgstr "Добавяне на ревю" - -#: templates/single-product-reviews.php:81 -#, php-format -msgid "Leave a Reply to %s" -msgstr "Остави отзив за %s" - -# @ woocommerce -#: templates/single-product-reviews.php:90 -msgid "Submit" -msgstr "Изпращане" - -# @ woocommerce -#: templates/single-product-reviews.php:97 -msgid "Your Rating" -msgstr "Вашата оценка" - -# @ woocommerce -#: templates/single-product-reviews.php:98 -msgid "Rate…" -msgstr "Оценка…" - -# @ woocommerce -#: templates/single-product-reviews.php:99 -msgid "Perfect" -msgstr "Перфектно" - -# @ woocommerce -#: templates/single-product-reviews.php:100 -msgid "Good" -msgstr "Добре" - -# @ woocommerce -#: templates/single-product-reviews.php:101 -msgid "Average" -msgstr "Средно" - -# @ woocommerce -#: templates/single-product-reviews.php:102 -msgid "Not that bad" -msgstr "Не-лошо" - -# @ woocommerce -#: templates/single-product-reviews.php:103 -msgid "Very Poor" -msgstr "Много лошо" - -# @ woocommerce -#: templates/single-product-reviews.php:108 -msgid "Your Review" -msgstr "Вашият отзив" - -# @ woocommerce -#: templates/cart/cart-empty.php:16 -msgid "Your cart is currently empty." -msgstr "Кошницата е празна." - -# @ woocommerce -#: templates/cart/cart-empty.php:20 -msgid "← Return To Shop" -msgstr "← Към магазина" - -# @ woocommerce -#: templates/cart/cart-shipping.php:16 -#, php-format -msgid "Shipping #%d" -msgstr "Доставка #%d" - -# @ woocommerce -#: templates/cart/cart-shipping.php:18 -msgid "Shipping and Handling" -msgstr "Доставка и вземане" - -# @ woocommerce -#: templates/cart/cart-shipping.php:55 -msgid "" -"No shipping methods were found; please recalculate your shipping or continue " -"to checkout and enter your full address to see if there is shipping " -"available to your location." -msgstr "" -"Не са намерени методи за доставка; моля, калкулирайте вашата доставка и " -"въведете вашият щат/държава и пощенски код за да сте сте сигурни, че няма " -"други валидни методи за доставка за вашата локация." - -# @ woocommerce -#: templates/cart/cart-shipping.php:59 -msgid "Please fill in your details to see available shipping methods." -msgstr "" -"Моля, попълнете вашата информация за да видите възможните методи за доставка." - -# @ woocommerce -#: templates/cart/cart-shipping.php:69 templates/cart/cart-shipping.php:77 -#, php-format -msgid "Sorry, shipping is unavailable %s." -msgstr "Съжаляваме, но доставките не са налични %s." - -# @ woocommerce -#: templates/cart/cart-shipping.php:69 templates/cart/cart-shipping.php:77 -msgid "" -"If you require assistance or wish to make alternate arrangements please " -"contact us." -msgstr "" -"Ако имате нужда от помощ или желаете да направите допълнителна уговорка, " -"свържете се с нас." - -# @ woocommerce -#: templates/cart/cart-totals.php:16 -msgid "Cart Totals" -msgstr "Общо" - -# @ woocommerce -#: templates/cart/cart-totals.php:21 templates/checkout/review-order.php:25 -msgid "Cart Subtotal" -msgstr "Кошница" - -# @ woocommerce -#: templates/cart/cart-totals.php:87 -#, php-format -msgid " (taxes estimated for %s)" -msgstr "(таксите възлизат на %s)" - -# @ woocommerce -#: templates/cart/cart-totals.php:90 -#, php-format -msgid "" -"Note: Shipping and taxes are estimated%s and will be updated during checkout " -"based on your billing and shipping information." -msgstr "" -" Забележка: Доставката и таксите са оценени на %s и ще бъдат обновени в " -"процеса на поръчка на базата на адреса за доставка." - -# @ woocommerce -#: templates/cart/cart.php:47 -msgid "Remove this item" -msgstr "Премахни този елемент" - -# @ woocommerce -#: templates/cart/cart.php:94 -#: templates/single-product/add-to-cart/quantity.php:12 -msgctxt "Product quantity input tooltip" -msgid "Qty" -msgstr "Кол." - -# @ woocommerce -#: templates/cart/cart.php:119 templates/checkout/form-coupon.php:29 -msgid "Apply Coupon" -msgstr "Приложи промо код" - -# @ woocommerce -#: templates/cart/cart.php:126 -msgid "Update Cart" -msgstr "Обнови кошницата" - -# @ woocommerce -#: templates/cart/cart.php:126 -msgid "Proceed to Checkout →" -msgstr "ПОРЪЧАЙ →" - -# @ woocommerce -#: templates/cart/cross-sells.php:38 -msgid "You may be interested in…" -msgstr "Може да се интересувате от…" - -# @ woocommerce -#: templates/cart/mini-cart.php:51 -msgid "No products in the cart." -msgstr "Нямате избрани продукти в кошницата." - -# @ woocommerce -#: templates/cart/mini-cart.php:65 -msgid "Checkout →" -msgstr "Поръчай →" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:22 -msgid "Calculate Shipping" -msgstr "Изчислете доставката" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:45 -#: templates/cart/shipping-calculator.php:51 -#: templates/cart/shipping-calculator.php:63 -msgid "State / county" -msgstr "Страна/Държава" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:85 -msgid "Update Totals" -msgstr "Обнови тоталите" - -# @ woocommerce -#: templates/checkout/cart-errors.php:16 -msgid "" -"There are some issues with the items in your cart (shown above). Please go " -"back to the cart page and resolve these issues before checking out." -msgstr "" -"Възникнаха проблеми с някои от продуктите в кошницата ви (показани отгоре). " -"Моля, върнете се на страницата с кошницата и разрешете тези проблеми преди " -"да поръчате." - -# @ woocommerce -#: templates/checkout/cart-errors.php:20 -msgid "← Return To Cart" -msgstr "← Връщане към кошницата" - -# @ woocommerce -#: templates/checkout/form-billing.php:17 -msgid "Billing & Shipping" -msgstr "Фактуриране и доставка" - -# @ woocommerce -#: templates/checkout/form-billing.php:21 -#: templates/myaccount/form-edit-address.php:14 -#: templates/myaccount/my-address.php:19 templates/myaccount/my-address.php:25 -#: templates/order/order-details.php:115 -msgid "Billing Address" -msgstr "Адрес" - -# @ woocommerce -#: templates/checkout/form-billing.php:40 -msgid "Create an account?" -msgstr "Създаване на профил?" - -# @ woocommerce -#: templates/checkout/form-billing.php:51 -msgid "" -"Create an account by entering the information below. If you are a returning " -"customer please login at the top of the page." -msgstr "" -"Създайте профил, като попълните информацията отдолу. Ако вече сте ни клиент, " -"моля влезте в системата." - -# @ woocommerce -#: templates/checkout/form-checkout.php:20 -msgid "You must be logged in to checkout." -msgstr "Трябва да сте влезли в акаунта си за да поръчате." - -# @ woocommerce -#: templates/checkout/form-checkout.php:51 -msgid "Your order" -msgstr "Вашата поръчка" - -# @ woocommerce -#: templates/checkout/form-coupon.php:17 -msgid "Have a coupon?" -msgstr "Имате купон?" - -# @ woocommerce -#: templates/checkout/form-coupon.php:20 -msgid "Click here to enter your code" -msgstr "Кликнете тук за да въведете кода" - -# @ woocommerce -#: templates/checkout/form-login.php:14 -msgid "Returning customer?" -msgstr "Завърнал се клиент?" - -# @ woocommerce -#: templates/checkout/form-login.php:17 -msgid "Click here to login" -msgstr "Кликнете тук за вход" - -# @ woocommerce -#: templates/checkout/form-login.php:22 -msgid "" -"If you have shopped with us before, please enter your details in the boxes " -"below. If you are a new customer please proceed to the Billing & " -"Shipping section." -msgstr "" -"Ако сте пазарували преди от нас, моля въведете информацията си отдолу. Ако " -"сте нов клиент, моля продължете към Фактуриране и доставка." - -# @ woocommerce -#: templates/checkout/form-pay.php:78 -msgid "" -"Sorry, it seems that there are no available payment methods for your " -"location. Please contact us if you require assistance or wish to make " -"alternate arrangements." -msgstr "" -"Съажаляваме, изглежда, че няма активни методи на плащане за вашата локация. " -"Свържете се с нас, ако имате нужда от помощ или искате да направите " -"допълнителни уговорки." - -# @ woocommerce -#: templates/checkout/form-pay.php:87 -msgid "Pay for order" -msgstr "Плати за поръчка" - -# @ woocommerce -#: templates/checkout/form-shipping.php:31 -msgid "Ship to a different address?" -msgstr "Изпрати до друг адрес?" - -# @ woocommerce -#: templates/checkout/review-order.php:150 -msgid "Please fill in your details above to see available payment methods." -msgstr "" -"Моля, въведете вашата информация за да видите възможните методи за плащане." - -# @ woocommerce -#: templates/checkout/review-order.php:152 -msgid "" -"Sorry, it seems that there are no available payment methods for your state. " -"Please contact us if you require assistance or wish to make alternate " -"arrangements." -msgstr "" -"Съжаляваме, изглежда че няма активни методи на плащане за вашия щат. " -"Свържете се с нас, ако имате нужда от помощ или за допълнителни уговорки." - -# @ woocommerce -#: templates/checkout/review-order.php:161 -msgid "" -"Since your browser does not support JavaScript, or it is disabled, please " -"ensure you click the Update Totals button before placing your " -"order. You may be charged more than the amount stated above if you fail to " -"do so." -msgstr "" -"Вашият браузър не поддържа JavaScript, или е изключен. Моля, уверете се, че " -"сте избрали Обновете тоталите бутона преди да пуснете поръчката си. " -"Може да бъдете таксувани повече ако не го направите." - -# @ woocommerce -#: templates/checkout/review-order.php:161 -msgid "Update totals" -msgstr "Обнови общата сума" - -# @ woocommerce -#: templates/checkout/review-order.php:168 -msgid "Place order" -msgstr "Поръчай" - -# @ woocommerce -#: templates/checkout/review-order.php:175 -msgid "I have read and accept the" -msgstr "Прочетох и приемам" - -# @ woocommerce -#: templates/checkout/review-order.php:175 -msgid "terms & conditions" -msgstr "условията за ползване" - -# @ woocommerce -#: templates/checkout/thankyou.php:18 -msgid "" -"Unfortunately your order cannot be processed as the originating bank/" -"merchant has declined your transaction." -msgstr "" -"За съжалени вашата поръчка не може да бъде обработена, тъй като банката/" -"търговеца отказа вашата транзакция." - -# @ woocommerce -#: templates/checkout/thankyou.php:22 -msgid "Please attempt your purchase again or go to your account page." -msgstr "" -"Моля, опитайте се да поръчате отново или се върнете на страницата на профила " -"ви." - -# @ woocommerce -#: templates/checkout/thankyou.php:24 -msgid "Please attempt your purchase again." -msgstr "Моля, опитайте да поръчате отново." - -# @ woocommerce -#: templates/checkout/thankyou.php:36 templates/checkout/thankyou.php:67 -msgid "Thank you. Your order has been received." -msgstr "Благодаря. Вашата поръчка беше получена." - -# @ woocommerce -#: templates/emails/admin-new-order.php:13 -#: templates/emails/plain/admin-new-order.php:13 -#, php-format -msgid "You have received an order from %s. Their order is as follows:" -msgstr "Получихте поръчка от %s. Следвана от:" - -# @ woocommerce -#: templates/emails/admin-new-order.php:17 -#, php-format -msgid "Order: %s" -msgstr "Поръчка: %s" - -# @ woocommerce -#: templates/emails/admin-new-order.php:53 -#: templates/emails/customer-completed-order.php:54 -#: templates/emails/customer-note.php:58 -#: templates/emails/customer-processing-order.php:54 -#: templates/emails/plain/admin-new-order.php:42 -#: templates/emails/plain/customer-completed-order.php:41 -#: templates/emails/plain/customer-note.php:49 -#: templates/emails/plain/customer-processing-order.php:41 -#: templates/order/order-details.php:101 -msgid "Email:" -msgstr "Email" - -# @ woocommerce -#: templates/emails/customer-completed-order.php:14 -#: templates/emails/plain/customer-completed-order.php:13 -#, php-format -msgid "" -"Hi there. Your recent order on %s has been completed. Your order details are " -"shown below for your reference:" -msgstr "" -"Здравейте. Вашата последна поръчка на %s беше успешна. По-долу ще видите " -"детайлите по нея:" - -# @ woocommerce -#: templates/emails/customer-invoice.php:16 -#: templates/emails/plain/customer-invoice.php:14 -#, php-format -msgid "" -"An order has been created for you on %s. To pay for this order please use " -"the following link: %s" -msgstr "" -"Има поръчка за вас на %s. За да платите тази поръчка, моля използвайте " -"следния линк: %s" - -# @ woocommerce -#: templates/emails/customer-invoice.php:16 -msgid "pay" -msgstr "плащане" - -# @ woocommerce -#: templates/emails/customer-new-account.php:14 -#: templates/emails/plain/customer-new-account.php:13 -#, php-format -msgid "" -"Thanks for creating an account on %s. Your username is %s." -msgstr "" -"Благодарим ви, че създадохте профил при %s. Вашето потребителско име е " -"%s." - -#: templates/emails/customer-new-account.php:18 -#, php-format -msgid "Your password has been automatically generated: %s" -msgstr "Вашата парола беше генерирана автоматично: %s" - -# @ woocommerce -#: templates/emails/customer-new-account.php:22 -#: templates/emails/plain/customer-new-account.php:18 -#, php-format -msgid "" -"You can access your account area to view your orders and change your " -"password here: %s." -msgstr "Може да влезете в акаунта си от тук: %s." - -# @ woocommerce -#: templates/emails/customer-note.php:14 -#: templates/emails/plain/customer-note.php:13 -msgid "Hello, a note has just been added to your order:" -msgstr "Здравейте, бележката беше добавена към вашата поръчка:" - -# @ woocommerce -#: templates/emails/customer-note.php:18 -#: templates/emails/plain/customer-note.php:21 -msgid "For your reference, your order details are shown below." -msgstr "За ваша информация, детайлите по поръчката са отдолу." - -# @ woocommerce -#: templates/emails/customer-processing-order.php:14 -#: templates/emails/plain/customer-processing-order.php:13 -msgid "" -"Your order has been received and is now being processed. Your order details " -"are shown below for your reference:" -msgstr "" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:14 -#: templates/emails/plain/customer-reset-password.php:13 -msgid "Someone requested that the password be reset for the following account:" -msgstr "" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:15 -#: templates/emails/plain/customer-reset-password.php:15 -#, php-format -msgid "Username: %s" -msgstr "Потребителско име: %s" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:16 -#: templates/emails/plain/customer-reset-password.php:16 -msgid "If this was a mistake, just ignore this email and nothing will happen." -msgstr "" -"Ако това е грешка, моля не вземайте този email в предвид и нищо няма да се " -"случи." - -# @ woocommerce -#: templates/emails/customer-reset-password.php:17 -#: templates/emails/plain/customer-reset-password.php:17 -msgid "To reset your password, visit the following address:" -msgstr "За да рестартирате вашата парола моля идете на следния адрес:" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:20 -msgid "Click here to reset your password" -msgstr "Кликнете тук за да рестартирате вашата парола" - -# @ woocommerce -#: templates/emails/email-order-items.php:42 -#, php-format -msgid "Download %d:" -msgstr "Сваляне %d:" - -# @ woocommerce -#: templates/emails/email-order-items.php:44 -msgid "Download:" -msgstr "Сваляне:" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:19 -#: templates/emails/plain/customer-completed-order.php:19 -#: templates/emails/plain/customer-invoice.php:20 -#: templates/emails/plain/customer-note.php:27 -#: templates/emails/plain/customer-processing-order.php:19 -#, php-format -msgid "Order number: %s" -msgstr "Номер поръчка: %s" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:20 -#, php-format -msgid "Order link: %s" -msgstr "Връзка към поръчката: %s" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:21 -#: templates/emails/plain/customer-completed-order.php:20 -#: templates/emails/plain/customer-invoice.php:21 -#: templates/emails/plain/customer-note.php:28 -#: templates/emails/plain/customer-processing-order.php:20 -#, php-format -msgid "Order date: %s" -msgstr "Дата на поръчката: %s" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:21 -msgid "jS F Y" -msgstr "jS F Y" - -# @ woocommerce -#: templates/emails/plain/customer-completed-order.php:38 -#: templates/emails/plain/customer-note.php:46 -#: templates/emails/plain/customer-processing-order.php:38 -msgid "Your details" -msgstr "Вашите детайли" - -# @ woocommerce -#: templates/emails/plain/customer-new-account.php:16 -#, php-format -msgid "Your password is %s." -msgstr "Вашата парола е %s" - -# @ woocommerce -#: templates/emails/plain/email-order-items.php:29 -#, php-format -msgid "Quantity: %s" -msgstr "Количество: %s" - -# @ woocommerce -#: templates/emails/plain/email-order-items.php:32 -#, php-format -msgid "Cost: %s" -msgstr "Цена: %s" - -# @ woocommerce -#: templates/loop/orderby.php:21 -msgid "Default sorting" -msgstr "Подредба по подразбиране" - -# @ woocommerce -#: templates/loop/orderby.php:22 -msgid "Sort by popularity" -msgstr "Сортиране по популярност" - -# @ woocommerce -#: templates/loop/orderby.php:23 -msgid "Sort by average rating" -msgstr "Сортиране по среден рейтинг" - -# @ woocommerce -#: templates/loop/orderby.php:24 -msgid "Sort by newness" -msgstr "Сортиране по хронология" - -# @ woocommerce -#: templates/loop/orderby.php:25 -msgid "Sort by price: low to high" -msgstr "Сортиране по цена: ниска към висока" - -# @ woocommerce -#: templates/loop/orderby.php:26 -msgid "Sort by price: high to low" -msgstr "Сортиране по цена: висока към ниска" - -# @ woocommerce -#: templates/loop/result-count.php:28 -msgid "Showing the single result" -msgstr "Показване на единичен резултат" - -# @ woocommerce -#: templates/loop/result-count.php:30 -#, php-format -msgid "Showing all %d results" -msgstr "Показване на %d резултата" - -# @ woocommerce -#: templates/loop/result-count.php:32 -#, php-format -msgctxt "%1$d = first, %2$d = last, %3$d = total" -msgid "Showing %1$d–%2$d of %3$d results" -msgstr "Показване %1$d–%2$d от %3$d резултати" - -# @ woocommerce -#: templates/loop/sale-flash.php:16 templates/single-product/sale-flash.php:16 -msgid "Sale!" -msgstr "Промо!" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:20 -#: templates/myaccount/form-lost-password.php:31 -msgid "New password" -msgstr "Нова парола" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:24 -#: templates/myaccount/form-lost-password.php:35 -msgid "Re-enter new password" -msgstr "Въведи отново новата парола" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:29 -#: templates/myaccount/form-lost-password.php:46 -msgid "Save" -msgstr "Запиши" - -# @ woocommerce -#: templates/myaccount/form-edit-account.php:28 -#: templates/myaccount/form-login.php:64 -msgid "Email address" -msgstr "Email адреси" - -#: templates/myaccount/form-edit-account.php:32 -msgid "Password (leave blank to leave unchanged)" -msgstr "Парола (оставете празно за да избегнете промяна)" - -# @ woocommerce -#: templates/myaccount/form-edit-account.php:36 -msgid "Confirm new password" -msgstr "Потвърдете новата парола" - -# @ woocommerce -#: templates/myaccount/form-edit-address.php:14 -#: templates/myaccount/my-address.php:20 templates/order/order-details.php:130 -msgid "Shipping Address" -msgstr "Адрес за Доставка" - -# @ woocommerce -#: templates/myaccount/form-edit-address.php:38 -msgid "Save Address" -msgstr "Запиши адреса" - -# @ woocommerce -#: templates/myaccount/form-login.php:26 templates/myaccount/form-login.php:40 -#: templates/shop/form-login.php:31 -msgid "Login" -msgstr "Вход" - -# @ woocommerce -#: templates/myaccount/form-login.php:30 -msgid "Username or email address" -msgstr "Потребителско име или email адрес" - -# @ woocommerce -#: templates/myaccount/form-login.php:34 templates/myaccount/form-login.php:69 -#: templates/shop/form-login.php:24 -msgid "Password" -msgstr "Парола" - -# @ woocommerce -#: templates/myaccount/form-login.php:40 templates/shop/form-login.php:33 -msgid "Lost Password?" -msgstr "Загубена парола?" - -# @ woocommerce -#: templates/myaccount/form-login.php:50 templates/myaccount/form-login.php:80 -msgid "Register" -msgstr "Регистрация" - -#: templates/myaccount/form-login.php:74 -msgid "Anti-spam" -msgstr "Анти-спам" - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:22 -msgid "" -"Lost your password? Please enter your username or email address. You will " -"receive a link to create a new password via email." -msgstr "" -"Изгубена парола? Въведете вашето потребителско име или email адрес, и ще " -"получите линк за възстановяване на паролата ви чрез email адрес." - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:24 -#: templates/shop/form-login.php:20 -msgid "Username or email" -msgstr "Потребителско име или email" - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:28 -msgid "Enter a new password below." -msgstr "Въведи отново новата парола." - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:46 -msgid "Reset Password" -msgstr "Загубена парола?" - -#: templates/myaccount/my-account.php:19 -#, php-format -msgid "Hello %s (not %s? Sign out)." -msgstr "Здрасти %s (not %s? Изход)." - -# @ woocommerce -#: templates/myaccount/my-account.php:25 -#, php-format -msgid "" -"From your account dashboard you can view your recent orders, manage your " -"shipping and billing addresses and edit your password and " -"account details." -msgstr "" -"От вашето контролно табло може да видите скорошните поръчки, да редактирате " -"вашите адреси за доставка и фактуриране или да смените вашата " -"парола и редактирате профил." - -# @ woocommerce -#: templates/myaccount/my-address.php:17 -msgid "My Addresses" -msgstr "Моите адреси" - -# @ woocommerce -#: templates/myaccount/my-address.php:23 -msgid "My Address" -msgstr "Моят адрес" - -# @ woocommerce -#: templates/myaccount/my-address.php:35 -msgid "The following addresses will be used on the checkout page by default." -msgstr "Следните адреси ще бъдат използвани за плащане по подразбиране." - -# @ woocommerce -#: templates/myaccount/my-address.php:64 -msgid "You have not set up this type of address yet." -msgstr "Все още не сте задали адрес за доставка." - -# @ woocommerce -#: templates/myaccount/my-downloads.php:18 -msgid "Available downloads" -msgstr "Налични за сваляне" - -# @ woocommerce -#: templates/myaccount/my-downloads.php:27 -#, php-format -msgid "%s download remaining" -msgid_plural "%s downloads remaining" -msgstr[0] "остава %s сваляне" -msgstr[1] "остасват %s сваляния" - -# @ woocommerce -#: templates/myaccount/my-orders.php:26 -msgid "Recent Orders" -msgstr "Скорошни поръчки" - -# @ woocommerce -#: templates/myaccount/my-orders.php:62 -#, php-format -msgid "%s for %s item" -msgid_plural "%s for %s items" -msgstr[0] "%s за %s продукт" -msgstr[1] "%s за %s продукти" - -# @ woocommerce -#: templates/order/form-tracking.php:17 -msgid "" -"To track your order please enter your Order ID in the box below and press " -"return. This was given to you on your receipt and in the confirmation email " -"you should have received." -msgstr "" -"За да проследите поръчката моля, въведете ID-то на поръчката в полето отдолу " -"и натеснете enter. Ще получите писмо за конфирмация на вашия адрес." - -# @ woocommerce -#: templates/order/form-tracking.php:19 -msgid "Order ID" -msgstr "Поръчка ID" - -# @ woocommerce -#: templates/order/form-tracking.php:19 -msgid "Found in your order confirmation email." -msgstr "Намерено в писмото за потвърждаване." - -# @ woocommerce -#: templates/order/form-tracking.php:20 -msgid "Billing Email" -msgstr "Email адрес за фактуриране" - -# @ woocommerce -#: templates/order/form-tracking.php:20 -msgid "Email you used during checkout." -msgstr "Email, използван при поръчката." - -# @ woocommerce -#: templates/order/form-tracking.php:23 -msgid "Track" -msgstr "Проследи" - -# @ woocommerce -#: templates/order/order-details.php:66 -#, php-format -msgid "Download file%s" -msgstr "Свали файла %s" - -# @ woocommerce -#: templates/order/order-details.php:102 -msgid "Telephone:" -msgstr "Телефон:" - -# @ woocommerce -#: templates/order/tracking.php:18 -#, php-format -msgid "Order %s which was made %s has the status “%s”" -msgstr "Поръчка %s направена %s е със статус “%s”" - -# @ woocommerce -#: templates/order/tracking.php:18 -msgid "ago" -msgstr "преди" - -# @ woocommerce -#: templates/order/tracking.php:20 -msgid "and was completed" -msgstr "и беше приключена" - -# @ woocommerce -#: templates/order/tracking.php:20 -msgid " ago" -msgstr " преди" - -# @ woocommerce -#: templates/shop/breadcrumb.php:63 -msgid "Products tagged “" -msgstr "Етикирани продукти “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:91 templates/shop/breadcrumb.php:188 -msgid "Search results for “" -msgstr "Резултати от търсенето на “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:146 -msgid "Error 404" -msgstr "Грешка 404" - -# @ woocommerce -#: templates/shop/breadcrumb.php:192 -msgid "Posts tagged “" -msgstr "Постове, етикирани “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:197 -msgid "Author:" -msgstr "Автор:" - -# @ woocommerce -#: templates/shop/breadcrumb.php:202 -msgid "Page" -msgstr "Страница" - -# @ woocommerce -#: templates/single-product/meta.php:20 -msgid "n/a" -msgstr "няма" - -# @ product_cat -#: templates/single-product/meta.php:24 -msgid "Category:" -msgid_plural "Categories:" -msgstr[0] "Категория:" -msgstr[1] "Категории:" - -# @ product_tag -#: templates/single-product/meta.php:26 -msgid "Tag:" -msgid_plural "Tags:" -msgstr[0] "Етикет:" -msgstr[1] "Етикети:" - -# @ woocommerce -#: templates/single-product/related.php:36 -msgid "Related Products" -msgstr "Свързани продукти" - -# @ woocommerce -#: templates/single-product/review.php:26 -#, php-format -msgid "Rated %d out of 5" -msgstr "Оценено на %d от 5" - -# @ woocommerce -#: templates/single-product/review.php:34 -msgid "Your comment is awaiting approval" -msgstr "Вашият коментар очаква удобрение" - -# @ woocommerce -#: templates/single-product/review.php:43 -msgid "verified owner" -msgstr "проверен" - -# @ woocommerce -#: templates/single-product/up-sells.php:39 -msgid "You may also like…" -msgstr "Може също да харесате…" - -# @ woocommerce -#: templates/single-product/add-to-cart/variable.php:25 -msgid "Choose an option" -msgstr "Изберете опция" - -# @ woocommerce -#: templates/single-product/add-to-cart/variable.php:73 -msgid "Clear selection" -msgstr "Изчисти избора" - -#: templates/single-product/add-to-cart/variable.php:103 -msgid "This product is currently out of stock and unavailable." -msgstr "В момента този продукт не е наличен." - -# @ woocommerce -#: templates/single-product/tabs/description.php:14 -msgid "Product Description" -msgstr "Описание на продукта:" - -# @ woocommerce -#~ msgid "Pages" -#~ msgstr "Страници" - -# @ woocommerce -#~ msgid "Change Password" -#~ msgstr "Промени парола" - -# @ woocommerce -#~ msgid "Thankyou" -#~ msgstr "Благодарим" - -# @ woocommerce -#, fuzzy -#~ msgid "" -#~ "Sorry, we do not have enough \"%s\" in stock to fulfil your order (%s in " -#~ "stock). Please edit your cart and try again. We apologise for any " -#~ "inconvenience caused." -#~ msgstr "" -#~ "Съжаляваме, нямаме достатъчно \"%s\" в наличност за да изпълним вашата " -#~ "поръчка (%s налични. Моля редактирайте кошницата си отново. Извиняваме се " -#~ "за всякакво създадено неудобство." - -# @ woocommerce -#~ msgid "You already have this item in your cart." -#~ msgstr "Вече имате този продукт в кошницата." - -# @ woocommerce -#~ msgid "via" -#~ msgstr "чрез" - -# @ woocommerce -#~ msgid "(%s) is not a valid postcode/ZIP." -#~ msgstr "(%s) е невалиден пощенски код." - -# @ woocommerce -#~ msgid "Invalid email/username." -#~ msgstr "Невалиден email/потребителско име." - -# @ woocommerce -#~ msgid "Samoa" -#~ msgstr "Самоа" - -# @ woocommerce -#~ msgid "Subtotal:" -#~ msgstr "Субтотал:" - -# @ woocommerce -#~ msgid "Bacs" -#~ msgstr "Bacs" - -# @ woocommerce -#~ msgid "" -#~ "Give the customer instructions for paying via BACS, and let them know " -#~ "that their order won't be shipping until the money is received." -#~ msgstr "" -#~ "Инструкции за клиентите ви за плащане чрез BACS. Уведомете ги, че " -#~ "поръчката им няма да бъде изпратена докато не са получени парите." - -# @ woocommerce -#~ msgid "Optionally enter your bank details below for customers to pay into." -#~ msgstr "По избор, въведете вашите банкови детайли за клиентите си." - -# @ woocommerce -#~ msgid "BACS Payment" -#~ msgstr "BACS Плащане" - -# @ woocommerce -#~ msgid "" -#~ "Let the customer know the payee and where they should be sending the " -#~ "cheque to and that their order won't be shipping until you receive it." -#~ msgstr "" -#~ "Позволява на клиента да знае кога трябва да изпрати чека и че неговата " -#~ "поръчка няма да бъде изпратена докато не е получен." - -# @ woocommerce -#~ msgid "Payment method title that the customer will see on your website." -#~ msgstr "" -#~ "Заглавие на метода за плащане, който клиентите ви ще виждат на вашия сайт." - -# @ woocommerce -#~ msgid "" -#~ "Thank you for your order, please click the button below to pay with " -#~ "PayPal." -#~ msgstr "" -#~ "Благодарности за вашата поръчка, моля натиснете бутона за да платите с " -#~ "PayPal." - -# @ woocommerce -#, fuzzy -#~ msgid "Add to Cart" -#~ msgstr "Купи" - -# @ woocommerce -# @ default -#~ msgid "ShareYourCart" -#~ msgstr "ShareYourCart" - -# @ default -#~ msgid "Share your cart settings" -#~ msgstr "Споделяне на количката" - -# @ default -#, fuzzy -#~ msgid "Button" -#~ msgstr "Текст на бутона" - -# @ default -#, fuzzy -#~ msgid "Customize Button" -#~ msgstr "Клиентски вход" - -# @ woocommerce -#~ msgid "Setup your ShareYourCart account" -#~ msgstr "Настройте вашият ShareYourCart акаунт" - -# @ woocommerce -#~ msgid "Create an account" -#~ msgstr "Създай акаунт" - -# @ woocommerce -#~ msgid "Can't access your account?" -#~ msgstr "Не може да влезете в акаунта си?" - -# @ woocommerce -#~ msgid "Configure" -#~ msgstr "Настрой" - -# @ woocommerce -#~ msgid "Button style" -#~ msgstr "Стил на бутона" - -# @ woocommerce -#~ msgid "Flat rate" -#~ msgstr "Фиксирана ставка" - -# @ woocommerce -#~ msgid "Flat Rates" -#~ msgstr "Фиксирани ставки" - -# @ woocommerce -#~ msgid "Default Cost" -#~ msgstr "Цена по подразбиране" - -# @ woocommerce -#~ msgid "Default Handling Fee" -#~ msgstr "Такса обработка по подразбиране" - -# @ woocommerce -#~ msgid "+ Add Flat Rate" -#~ msgstr "+ Добави фиксирана ставка" - -# @ woocommerce -#~ msgid "" -#~ "Add rates for shipping classes here — they will override the " -#~ "default costs defined above." -#~ msgstr "" -#~ "Добавя такси за доставни класове — ще презапишат стойностите по " -#~ "подразбиране дефинирани по-горе." - -# @ woocommerce -#, fuzzy -#~ msgid "Apply base tax rate" -#~ msgstr "Приложи преди таксите" - -# @ woocommerce -#~ msgid "Display a list of your best selling products on your site." -#~ msgstr "Покажи списък с най-продаваните продукти на сайта." - -# @ woocommerce -#~ msgid "WooCommerce Best Sellers" -#~ msgstr "WooCommerce Най-продавани" - -# @ woocommerce -#~ msgid "Title:" -#~ msgstr "Заглавие:" - -# @ woocommerce -#~ msgid "Display a list of featured products on your site." -#~ msgstr "Показва списък с избрани продукти." - -# @ woocommerce -#~ msgid "WooCommerce Featured Products" -#~ msgstr "WooCommerce Избрани продукти" - -# @ woocommerce -#~ msgid "Attribute:" -#~ msgstr "Атрибут:" - -# @ woocommerce -#~ msgid "Display Type:" -#~ msgstr "Начин на показване:" - -# @ woocommerce -#~ msgid "Display a login area and \"My Account\" links in the sidebar." -#~ msgstr "" -#~ "Показвай част за вход и връзки към \"My Account\" в страничната лента." - -# @ woocommerce -#~ msgid "Customer Login" -#~ msgstr "Клиентски вход" - -# @ woocommerce -#~ msgid "Welcome %s" -#~ msgstr "Добре дошъл/а %s" - -# @ woocommerce -#~ msgid "My account" -#~ msgstr "Моят акаунт" - -# @ woocommerce -#~ msgid "Change my password" -#~ msgstr "Промени моята парола" - -# @ woocommerce -#~ msgid "Lost password?" -#~ msgstr "Загубена парола?" - -# @ woocommerce -#~ msgid "Logged out title:" -#~ msgstr "Заглавие за изход:" - -# @ woocommerce -#~ msgid "Logged in title:" -#~ msgstr "Заглавие при вход:" - -# @ woocommerce -#~ msgid "WooCommerce On-sale" -#~ msgstr "WooCommerce Разпродажба" - -# @ woocommerce -#~ msgid "On Sale" -#~ msgstr "Разпродажба" - -# @ woocommerce -#~ msgid "Order by:" -#~ msgstr "Подреди по:" - -# @ woocommerce -#~ msgid "WooCommerce Random Products" -#~ msgstr "WooCommerce случайни продукти" - -# @ woocommerce -#~ msgid "Display a list of random products on your site." -#~ msgstr "Показва списък от случайни продукти на сайта ви." - -# @ woocommerce -#~ msgid "Random Products" -#~ msgstr "Случайни продукти" - -# @ woocommerce -#~ msgid "Display a list of your most recent products on your site." -#~ msgstr "Покажи списък от последните продукти на сайта ви." - -# @ woocommerce -#~ msgid "WooCommerce Recent Products" -#~ msgstr "WooCommerce последни продукти" - -# @ woocommerce -#~ msgid "Recently viewed" -#~ msgstr "Наскоро прегледани" - -# @ woocommerce -#~ msgid "" -#~ "Sorry, it seems that there are no available shipping methods for your " -#~ "state. Please contact us if you require assistance or wish to make " -#~ "alternate arrangements." -#~ msgstr "" -#~ "Съжаляваме, изглежда няма валидни методи за доставка за вашия щат. Моля, " -#~ "свържете се с нас за да получите помощ или за допълнителна уговорка." - -# @ woocommerce -#~ msgid "" -#~ "Sorry, it seems that there are no available shipping methods for your " -#~ "location (%s)." -#~ msgstr "" -#~ "Съжаляваме, изглежда няма валидни методи за доставка за вашата локация " -#~ "(%s)." - -# @ woocommerce -#~ msgid "View options" -#~ msgstr "Виж опциите" - -# @ woocommerce -#~ msgid "Re-enter password" -#~ msgstr "Въведи паролата отново" - -# @ woocommerce -#~ msgid "Please enter your username and password to login." -#~ msgstr "Моля, въведете потребителско име и парола за да влезете." - -# @ woocommerce -#~ msgid "" -#~ "This username is invalid because it uses illegal characters. Please enter " -#~ "a valid username." -#~ msgstr "" -#~ "Потребителското име е невалидно, защото съдържа неразрешени символи. " -#~ "Моля, въведете валидно потребителско име." - -# @ woocommerce -#~ msgid "This username is already registered, please choose another one." -#~ msgstr "Потребителското име вече е регистрирано, моля изберете друго." - -# @ woocommerce -#~ msgid "Please type your e-mail address." -#~ msgstr "Моля, въведете отново Email адреса си." - -# @ woocommerce -#~ msgid "The email address isn’t correct." -#~ msgstr "Email адреса е некоректен." - -# @ woocommerce -#~ msgid "Re-enter your password." -#~ msgstr "Въведете паролата си отново." - -# @ woocommerce -#~ msgid "required" -#~ msgstr "задължително" - -# @ woocommerce -#~ msgid "New" -#~ msgstr "Нов" - -# @ woocommerce -#~ msgid "Variation" -#~ msgstr "Вариация" - -# @ woocommerce -#~ msgid "Add New Variation" -#~ msgstr "Добави нова вариация" - -# @ woocommerce -#~ msgid "Edit Variation" -#~ msgstr "Редактирай вариация" - -# @ woocommerce -#~ msgid "New Variation" -#~ msgstr "Нова вариация" - -# @ woocommerce -#~ msgid "View Variation" -#~ msgstr "Виж вариация" - -# @ woocommerce -#~ msgid "Search Variations" -#~ msgstr "Търси вариация" - -# @ woocommerce -#~ msgid "No Variations found" -#~ msgstr "Не са намерени вариации" - -# @ woocommerce -#~ msgid "No Variations found in trash" -#~ msgstr "Не са намерени вариации в коша" - -# @ woocommerce -#~ msgid "Parent Variation" -#~ msgstr "Родителски вариации" - -# @ woocommerce -#~ msgid "Select an option…" -#~ msgstr "Избери опция…" - -# @ woocommerce -#, fuzzy -#~ msgid "Please select a rating" -#~ msgstr "Изтрий избраните ставки" diff --git a/i18n/languages/woocommerce-ca.mo b/i18n/languages/woocommerce-ca.mo deleted file mode 100644 index 0c9d245a137..00000000000 Binary files a/i18n/languages/woocommerce-ca.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-ca.po b/i18n/languages/woocommerce-ca.po deleted file mode 100644 index 720196e7ae6..00000000000 --- a/i18n/languages/woocommerce-ca.po +++ /dev/null @@ -1,14292 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce v2.0.0\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-04-02 08:22:54+00:00\n" -"PO-Revision-Date: 2013-04-26 15:56+0100\n" -"Last-Translator: luba lee \n" -"Language-Team: luba lee \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 1.5.5\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" -"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" -"X-Poedit-Basepath: ../../\n" -"X-Textdomain-Support: yes\n" -"Language: Catalan\n" -"X-Poedit-SearchPath-0: .\n" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:5 -msgid "Insert Shortcode" -msgstr "Insereix shortcode" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:6 -msgid "Product price/cart button" -msgstr "Preu del producte/botó del carret" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:7 -msgid "Product by SKU/ID" -msgstr "Referència del producte (SKU/ID)" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:8 -msgid "Products by SKU/ID" -msgstr "Referència dels productes (SKU/ID)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:116 -#: assets/js/admin/editor_plugin_lang.php:9 -msgid "Product categories" -msgstr "Categories de productes" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:10 -msgid "Products by category slug" -msgstr "Productes per categoria" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:11 -msgid "Recent products" -msgstr "Productes recents" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:12 -msgid "Featured products" -msgstr "Productes destacats" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:13 -msgid "Shop Messages" -msgstr "Missatges de la botiga" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:45 -#: admin/woocommerce-admin-settings.php:182 -#: assets/js/admin/editor_plugin_lang.php:14 -msgid "Pages" -msgstr "Pàgines" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:195 -#: admin/woocommerce-admin-status.php:277 -#: assets/js/admin/editor_plugin_lang.php:15 -#: classes/widgets/class-wc-widget-cart.php:61 -msgid "Cart" -msgstr "Carret" - -# @ woocommerce -#: admin/settings/settings-init.php:114 -#: admin/woocommerce-admin-install.php:198 -#: admin/woocommerce-admin-status.php:281 -#: assets/js/admin/editor_plugin_lang.php:16 -msgid "Checkout" -msgstr "Finalitzar compra" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:17 -msgid "Order tracking" -msgstr "Seguiment de la comanda" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:201 -#: admin/woocommerce-admin-status.php:293 -#: assets/js/admin/editor_plugin_lang.php:18 -#: templates/checkout/thankyou.php:30 -msgid "My Account" -msgstr "El meu compte" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:297 -#: assets/js/admin/editor_plugin_lang.php:19 -msgid "Edit Address" -msgstr "Editar adreça" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:213 -#: admin/woocommerce-admin-status.php:305 -#: assets/js/admin/editor_plugin_lang.php:20 -msgid "Change Password" -msgstr "Canviar contrasenya" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:210 -#: admin/woocommerce-admin-status.php:301 -#: assets/js/admin/editor_plugin_lang.php:21 woocommerce.php:1031 -#: woocommerce.php:1032 -msgid "View Order" -msgstr "Veure comanda" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:285 -#: assets/js/admin/editor_plugin_lang.php:22 -#: templates/checkout/thankyou.php:28 templates/myaccount/my-orders.php:71 -msgid "Pay" -msgstr "Pagar" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:23 -msgid "Thankyou" -msgstr "Gràcies" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:421 -#: classes/emails/class-wc-email-customer-completed-order.php:135 -#: classes/emails/class-wc-email-customer-invoice.php:138 -#: classes/emails/class-wc-email-new-order.php:115 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:63 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:57 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:158 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:119 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:77 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:75 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:52 -msgid "Enable/Disable" -msgstr "Activar/Desactivar" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:423 -#: classes/emails/class-wc-email-customer-completed-order.php:137 -#: classes/emails/class-wc-email-customer-invoice.php:140 -#: classes/emails/class-wc-email-new-order.php:117 -msgid "Enable this email notification" -msgstr "Activar aquesta notificació de correu" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:427 -#: classes/emails/class-wc-email-customer-invoice.php:144 -msgid "Email subject" -msgstr "Títol del correu" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:429 -#: classes/abstracts/abstract-wc-email.php:436 -#: classes/emails/class-wc-email-customer-completed-order.php:143 -#: classes/emails/class-wc-email-customer-completed-order.php:150 -#: classes/emails/class-wc-email-customer-completed-order.php:157 -#: classes/emails/class-wc-email-customer-completed-order.php:164 -#: classes/emails/class-wc-email-customer-invoice.php:146 -#: classes/emails/class-wc-email-customer-invoice.php:153 -#: classes/emails/class-wc-email-customer-invoice.php:160 -#: classes/emails/class-wc-email-customer-invoice.php:167 -#, php-format -msgid "Defaults to %s" -msgstr "Per defecte, %s" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:434 -#: classes/emails/class-wc-email-customer-invoice.php:151 -msgid "Email heading" -msgstr "Encapçalament del correu" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:441 -#: classes/emails/class-wc-email-customer-completed-order.php:169 -#: classes/emails/class-wc-email-customer-invoice.php:172 -#: classes/emails/class-wc-email-new-order.php:142 -msgid "Email type" -msgstr "Tipus de correu" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:443 -#: classes/emails/class-wc-email-customer-completed-order.php:171 -#: classes/emails/class-wc-email-customer-invoice.php:174 -#: classes/emails/class-wc-email-new-order.php:144 -msgid "Choose which format of email to send." -msgstr "Tria quin format d'email vols fer servir." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:447 -#: classes/emails/class-wc-email-customer-completed-order.php:175 -#: classes/emails/class-wc-email-customer-invoice.php:178 -#: classes/emails/class-wc-email-new-order.php:148 -msgid "Plain text" -msgstr "Text pla" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:448 -#: classes/emails/class-wc-email-customer-completed-order.php:176 -#: classes/emails/class-wc-email-customer-invoice.php:179 -#: classes/emails/class-wc-email-new-order.php:149 -msgid "HTML" -msgstr "HTML" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:449 -#: classes/emails/class-wc-email-customer-completed-order.php:177 -#: classes/emails/class-wc-email-customer-invoice.php:180 -#: classes/emails/class-wc-email-new-order.php:150 -msgid "Multipart" -msgstr "Multipart" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:485 -#: classes/abstracts/abstract-wc-email.php:506 -msgid "Could not write to template file." -msgstr "No s'ha pogut escriure a la plantilla." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:533 -msgid "Template file copied to theme." -msgstr "Arxiu de plantilla copiat al tema." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:542 -msgid "Template file deleted from theme." -msgstr "Arxiu de plantilla eliminat del tema." - -# @ woocommerce -#: admin/includes/welcome.php:146 admin/woocommerce-admin-content.php:41 -#: admin/woocommerce-admin-init.php:86 admin/woocommerce-admin-status.php:252 -#: classes/abstracts/abstract-wc-email.php:550 -#: classes/abstracts/abstract-wc-integration.php:30 -#: classes/abstracts/abstract-wc-settings-api.php:39 -msgid "Settings" -msgstr "Configuració" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:562 -msgid "HTML template" -msgstr "Plantilla d'HTML" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:563 -msgid "Plain text template" -msgstr "Plantilla de text pla" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:582 -msgid "Delete template file" -msgstr "Esborrar arxiu de plantilla" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:585 -#, php-format -msgid "" -"This template has been overridden by your theme and can be found in: " -"%s." -msgstr "" -"Aquesta plantilla ha estat sobreescrita pel teu tema i la pots trobar a: " -"%s." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:600 -msgid "Copy file to theme" -msgstr "Copia l'arxiu al tema" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:603 -#, php-format -msgid "" -"To override and edit this email template copy %s to your theme " -"folder: %s." -msgstr "" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:614 -msgid "File was not found." -msgstr "L'arxiu no s'ha trobat." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:639 -msgid "View template" -msgstr "Veure la plantilla" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:640 -msgid "Hide template" -msgstr "Amagar la plantilla" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:651 -msgid "Are you sure you want to delete this template file?" -msgstr "Esteu segurs que voleu llençar aquesta plantilla?" - -# @ woocommerce -#: admin/post-types/product.php:262 admin/post-types/product.php:641 -#: admin/post-types/product.php:928 -#: admin/post-types/writepanels/writepanel-product_data.php:231 -#: classes/abstracts/abstract-wc-product.php:545 -#: classes/abstracts/abstract-wc-product.php:550 -#: classes/abstracts/abstract-wc-product.php:569 -msgid "In stock" -msgstr "En estoc" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:550 -#, php-format -msgid "Only %s left in stock" -msgstr "Només en queden %s en estoc" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:553 -#, php-format -msgid "%s in stock" -msgstr "%s en estoc" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:560 -msgid "(backorders allowed)" -msgstr "(es permeten reserves)" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:566 -#: classes/abstracts/abstract-wc-product.php:579 templates/cart/cart.php:76 -msgid "Available on backorder" -msgstr "Disponible com a reserva" - -# @ woocommerce -#: admin/post-types/product.php:264 admin/post-types/product.php:642 -#: admin/post-types/product.php:929 -#: admin/post-types/writepanels/writepanel-product_data.php:232 -#: admin/woocommerce-admin-reports.php:2103 -#: classes/abstracts/abstract-wc-product.php:572 -#: classes/abstracts/abstract-wc-product.php:582 -#: classes/abstracts/abstract-wc-product.php:586 -msgid "Out of stock" -msgstr "Fora d'estoc" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:849 -#: classes/abstracts/abstract-wc-product.php:855 -#: classes/class-wc-cart.php:1743 classes/class-wc-order.php:863 -#: classes/class-wc-product-variable.php:274 -#: classes/class-wc-product-variable.php:283 -#: classes/class-wc-product-variation.php:246 -msgid "Free!" -msgstr "Gratuït" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:873 -msgctxt "min_price" -msgid "From:" -msgstr "A partir de:" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:965 -#: templates/single-product-reviews.php:43 -#, php-format -msgid "Rated %s out of 5" -msgstr "Puntuat amb %s de 5" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:279 -#: classes/abstracts/abstract-wc-product.php:967 -#: templates/single-product/review.php:27 -#: templates/single-product-reviews.php:43 -msgid "out of 5" -msgstr "de 5" - -# @ woocommerce -#: classes/class-wc-coupon.php:447 -#, php-format -msgid "" -"Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from " -"your order." -msgstr "" -"Ho sentim, sembla que el cupó \"%s\" no és vàlid - ha estat eliminat de la " -"vostra comanda." - -# @ woocommerce -#: classes/class-wc-coupon.php:450 -#, php-format -msgid "" -"Sorry, it seems the coupon \"%s\" is not yours - it has now been removed " -"from your order." -msgstr "" -"Ho sentim, sembla que el cupó \"%s\" no és vostre - ha estat eliminat de la " -"vostra comanda." - -# @ woocommerce -#: classes/class-wc-cart.php:464 -#, php-format -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -"Ho sentim, no tenim suficients \"%s\" en estoc per completar la vostra " -"comanda (%s en estoc). Sisplau, editeu el vostre carret i torneu a intentar-" -"ho. Ens sap greu que hi hagi hagut aquest inconvenient." - -# @ woocommerce -#: classes/class-wc-cart.php:483 classes/class-wc-cart.php:492 -#, php-format -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfil your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -"Ho sentim, no tenim suficients \"%s\" en estoc per completar la vostra " -"comanda (%s en estoc). Sisplau, editeu el vostre carret i torneu a intentar-" -"ho. Ens sap greu que hi hagi hagut aquest inconvenient." - -# @ woocommerce -#: classes/class-wc-cart.php:527 -#, php-format -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfil your order right now. " -"Please try again in %d minutes or edit your cart and try again. We apologise " -"for any inconvenience caused." -msgstr "" -"Ho sentim, ara mateix no tenim suficients \"%s\" en estoc per completar la " -"vostra comanda. Sisplau, editeu el vostre carret i torneu a intentar-ho en " -"%d minuts. Ens sap greu que hi hagi hagut aquest inconvenient." - -# @ woocommerce -#: classes/class-wc-cart.php:537 -#, php-format -msgid "" -"Sorry, \"%s\" is not in stock. Please edit your cart and try again. We " -"apologise for any inconvenience caused." -msgstr "" -"Ho sentim, no tenim \"%s\" en estoc. Sisplau, editeu el vostre carret i " -"torneu a intentar-ho. Ens sap greu que hi hagi hagut aquest inconvenient." - -# @ woocommerce -#: classes/class-wc-cart.php:818 -#, php-format -msgid "Sorry, "%s" cannot be purchased." -msgstr "Ho sentim, "%s" no es pot comprar." - -# @ woocommerce -#: classes/class-wc-cart.php:825 -#, php-format -msgid "" -"You cannot add "%s" to the cart because the product is out of " -"stock." -msgstr "No és possible afegir "%s" al carret perquè està esgotat." - -# @ woocommerce -#: classes/class-wc-cart.php:830 -#, php-format -msgid "" -"You cannot add that amount of "%s" to the cart because there is " -"not enough stock (%s remaining)." -msgstr "" -"No podeu afegir aquesta quantitat de "%s" al carret perquè no en " -"tenim suficients. En queden %s en estoc." - -# @ woocommerce -#: classes/class-wc-cart.php:842 classes/class-wc-cart.php:856 -#: classes/class-wc-cart.php:864 templates/cart/mini-cart.php:68 -#: woocommerce-functions.php:470 woocommerce.php:1176 -msgid "View Cart →" -msgstr "Veure el carret →" - -# @ woocommerce -#: classes/class-wc-cart.php:842 -msgid "You already have this item in your cart." -msgstr "Ja teniu aquest producte al carret." - -# @ woocommerce -#: classes/class-wc-cart.php:856 classes/class-wc-cart.php:864 -#, php-format -msgid "" -"%s You cannot add that amount to the " -"cart — we have %s in stock and you already have %s in your cart." -msgstr "" -"%s No podeu afegir aquesta quantitat al " -"carret — el nostre estoc és de %s i ja en teniu %s al vostre carret." - -# @ woocommerce -#: classes/class-wc-cart.php:1755 -msgid "via" -msgstr "via" - -# @ woocommerce -#: classes/class-wc-coupon.php:444 classes/class-wc-coupon.php:494 -msgid "Coupon does not exist!" -msgstr "El cupó no existeix!" - -# @ woocommerce -#: classes/class-wc-checkout.php:64 -msgid "Account username" -msgstr "Nom d'usuari" - -# @ woocommerce -#: classes/class-wc-checkout.php:65 -msgctxt "placeholder" -msgid "Username" -msgstr "Usuari" - -# @ woocommerce -#: classes/class-wc-checkout.php:72 classes/class-wc-checkout.php:79 -msgid "Account password" -msgstr "Contrasenya" - -# @ woocommerce -#: classes/class-wc-checkout.php:73 classes/class-wc-checkout.php:80 -msgctxt "placeholder" -msgid "Password" -msgstr "Contrasenya" - -# @ woocommerce -#: admin/post-types/shop_order.php:48 -#: admin/post-types/writepanels/writepanels-init.php:71 -#: classes/class-wc-checkout.php:89 -msgid "Order Notes" -msgstr "Notes de la comanda" - -# @ woocommerce -#: classes/class-wc-checkout.php:90 -msgctxt "placeholder" -msgid "Notes about your order, e.g. special notes for delivery." -msgstr "" -"Notes sobre la comanda, per exemple, instruccions especials de lliurament." - -# @ woocommerce -#: classes/class-wc-checkout.php:152 -#, php-format -msgid "Order – %s" -msgstr "Comanda – %s" - -# @ woocommerce -#: classes/class-wc-checkout.php:152 -#, php-format -msgctxt "Order date parsed by strftime" -msgid "%b %d, %Y @ %I:%M %p" -msgstr "" - -# @ woocommerce -#: classes/class-wc-checkout.php:276 -msgid "Backordered" -msgstr "Reservat, pendent d'entrega." - -# @ woocommerce -#: classes/class-wc-checkout.php:386 -#, php-format -msgid "" -"Sorry, your session has expired. Return to homepage →" -msgstr "" -"Ho sentim, la vostra sessió ha expirat. Torneu a la pàgina " -"d'inici →" - -# @ woocommerce -#: classes/class-wc-checkout.php:438 woocommerce-functions.php:1632 -msgid "is a required field." -msgstr "és un camp obligatori." - -# @ woocommerce -#: classes/class-wc-checkout.php:451 -#, php-format -msgid "(%s) is not a valid postcode/ZIP." -msgstr "(%s) no és un codi postal vàlid." - -# @ woocommerce -#: classes/class-wc-checkout.php:472 -msgid "is not valid. Please enter one of the following:" -msgstr "" - -# @ woocommerce -#: classes/class-wc-checkout.php:480 -msgid "is not a valid number." -msgstr "no és un número vàlid." - -# @ woocommerce -#: classes/class-wc-checkout.php:487 -msgid "is not a valid email address." -msgstr "no és una adreça de correu vàlida" - -# @ woocommerce -#: classes/class-wc-checkout.php:543 -msgid "Please enter an account username." -msgstr "Sisplau, entreu el vostre nom d'usuari." - -# @ woocommerce -#: classes/class-wc-checkout.php:547 -msgid "Invalid email/username." -msgstr "Email/usuari no vàlids." - -# @ woocommerce -#: classes/class-wc-checkout.php:550 -msgid "" -"An account is already registered with that username. Please choose another." -msgstr "" -"Ja hi ha un compte registrat amb aquest nom. Sisplau, trieu-ne un altre." - -# @ woocommerce -#: classes/class-wc-checkout.php:560 -msgid "Please enter an account password." -msgstr "Sisplau, entreu la vostra contrasenya." - -# @ woocommerce -#: classes/class-wc-checkout.php:563 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:85 -#: woocommerce-functions.php:731 woocommerce-functions.php:1562 -msgid "Passwords do not match." -msgstr "Les contrasenyes no coincideixen." - -# @ woocommerce -#: classes/class-wc-checkout.php:567 -msgid "An account is already registered with your email address. Please login." -msgstr "" -"Ja hi ha un compte amb aquest correu electrònic. Sisplau, inicieu la sessió." - -# @ woocommerce -#: classes/class-wc-checkout.php:573 -msgid "You must accept our Terms & Conditions." -msgstr "Heu d'acceptar les Condicions generals." - -# @ woocommerce -#: classes/class-wc-checkout.php:582 -msgid "Invalid shipping method." -msgstr "Mètode d'enviament no vàlid." - -# @ woocommerce -#: classes/class-wc-checkout.php:595 -msgid "Invalid payment method." -msgstr "Mètode de pagament no vàlid." - -# @ woocommerce -#: classes/class-wc-checkout.php:635 woocommerce-core-functions.php:2485 -#: woocommerce-core-functions.php:2488 woocommerce-functions.php:703 -#: woocommerce-functions.php:705 woocommerce-functions.php:708 -#: woocommerce-functions.php:720 woocommerce-functions.php:722 -#: woocommerce-functions.php:725 woocommerce-functions.php:759 -msgid "ERROR" -msgstr "ERROR" - -# @ woocommerce -#: classes/class-wc-checkout.php:635 woocommerce-functions.php:759 -msgid "" -"Couldn’t register you… please contact us if you continue to " -"have problems." -msgstr "" -"No ha estat possible registrar-vos… sisplau, contacteu-nos si seguiu " -"tenint problemes." - -# @ woocommerce -#: classes/class-wc-countries.php:37 -msgid "Afghanistan" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:38 -msgid "Åland Islands" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:39 -msgid "Albania" -msgstr "Albania" - -# @ woocommerce -#: classes/class-wc-countries.php:40 -msgid "Algeria" -msgstr "Algèria" - -# @ woocommerce -#: i18n/states/US.php:67 -msgid "American Samoa" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:41 -msgid "Andorra" -msgstr "Andorra" - -# @ woocommerce -#: classes/class-wc-countries.php:42 -msgid "Angola" -msgstr "Angola" - -# @ woocommerce -#: classes/class-wc-countries.php:43 -msgid "Anguilla" -msgstr "Anguilla" - -# @ woocommerce -#: classes/class-wc-countries.php:44 -msgid "Antarctica" -msgstr "Antàrtida" - -# @ woocommerce -#: classes/class-wc-countries.php:45 -msgid "Antigua and Barbuda" -msgstr "Antigua i Barbuda" - -# @ woocommerce -#: classes/class-wc-countries.php:46 -msgid "Argentina" -msgstr "Argentina" - -# @ woocommerce -#: classes/class-wc-countries.php:47 -msgid "Armenia" -msgstr "Armènia" - -# @ woocommerce -#: classes/class-wc-countries.php:48 -msgid "Aruba" -msgstr "Aruba" - -# @ woocommerce -#: classes/class-wc-countries.php:49 -msgid "Australia" -msgstr "Austràlia" - -# @ woocommerce -#: classes/class-wc-countries.php:50 -msgid "Austria" -msgstr "Àustria" - -# @ woocommerce -#: classes/class-wc-countries.php:51 -msgid "Azerbaijan" -msgstr "Azerbadjan" - -# @ woocommerce -#: classes/class-wc-countries.php:52 -msgid "Bahamas" -msgstr "Bahamas" - -# @ woocommerce -#: classes/class-wc-countries.php:53 -msgid "Bahrain" -msgstr "Bahrain" - -# @ woocommerce -#: classes/class-wc-countries.php:54 -msgid "Bangladesh" -msgstr "Bangladesh" - -# @ woocommerce -#: classes/class-wc-countries.php:55 -msgid "Barbados" -msgstr "Barbados" - -# @ woocommerce -#: classes/class-wc-countries.php:56 -msgid "Belarus" -msgstr "Belarus" - -# @ woocommerce -#: classes/class-wc-countries.php:57 -msgid "Belgium" -msgstr "Bèlgica" - -# @ woocommerce -#: classes/class-wc-countries.php:59 -msgid "Belize" -msgstr "Belize" - -# @ woocommerce -#: classes/class-wc-countries.php:60 -msgid "Benin" -msgstr "Benin" - -# @ woocommerce -#: classes/class-wc-countries.php:61 -msgid "Bermuda" -msgstr "Bermuda" - -# @ woocommerce -#: classes/class-wc-countries.php:62 -msgid "Bhutan" -msgstr "Bhutan" - -# @ woocommerce -#: classes/class-wc-countries.php:63 -msgid "Bolivia" -msgstr "Bolivia" - -# @ woocommerce -#: classes/class-wc-countries.php:64 -msgid "Bonaire, Saint Eustatius and Saba" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:65 -msgid "Bosnia and Herzegovina" -msgstr "Bòsnia i Herzegovina" - -# @ woocommerce -#: classes/class-wc-countries.php:66 -msgid "Botswana" -msgstr "Botswana" - -# @ woocommerce -#: classes/class-wc-countries.php:67 -msgid "Bouvet Island" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:68 -msgid "Brazil" -msgstr "Brasil" - -# @ woocommerce -#: classes/class-wc-countries.php:69 -msgid "British Indian Ocean Territory" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:70 -msgid "British Virgin Islands" -msgstr "British Virgin Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:71 -msgid "Brunei" -msgstr "Brunei" - -# @ woocommerce -#: classes/class-wc-countries.php:72 -msgid "Bulgaria" -msgstr "Bulgària" - -# @ woocommerce -#: classes/class-wc-countries.php:73 -msgid "Burkina Faso" -msgstr "Burkina Fasso" - -# @ woocommerce -#: classes/class-wc-countries.php:74 -msgid "Burundi" -msgstr "Burundi" - -# @ woocommerce -#: classes/class-wc-countries.php:75 -msgid "Cambodia" -msgstr "Cambodja" - -# @ woocommerce -#: classes/class-wc-countries.php:76 -msgid "Cameroon" -msgstr "Camerun" - -# @ woocommerce -#: classes/class-wc-countries.php:77 -msgid "Canada" -msgstr "Canadà" - -# @ woocommerce -#: classes/class-wc-countries.php:78 -msgid "Cape Verde" -msgstr "Cabo Verde" - -# @ woocommerce -#: classes/class-wc-countries.php:79 -msgid "Cayman Islands" -msgstr "Illes Caimàn" - -# @ woocommerce -#: classes/class-wc-countries.php:80 -msgid "Central African Republic" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:81 -msgid "Chad" -msgstr "Txad" - -# @ woocommerce -#: classes/class-wc-countries.php:82 -msgid "Chile" -msgstr "Chile" - -# @ woocommerce -#: classes/class-wc-countries.php:83 -msgid "China" -msgstr "Xina" - -# @ woocommerce -#: classes/class-wc-countries.php:84 -msgid "Christmas Island" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:85 -msgid "Cocos (Keeling) Islands" -msgstr "Cocos (Keeling) Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:86 -msgid "Colombia" -msgstr "Colòmbia" - -# @ woocommerce -#: classes/class-wc-countries.php:87 -msgid "Comoros" -msgstr "Comoros" - -# @ woocommerce -#: classes/class-wc-countries.php:88 -msgid "Congo (Brazzaville)" -msgstr "Congo (Brazzaville)" - -# @ woocommerce -#: classes/class-wc-countries.php:89 -msgid "Congo (Kinshasa)" -msgstr "Congo (Kinshasa)" - -# @ woocommerce -#: classes/class-wc-countries.php:90 -msgid "Cook Islands" -msgstr "Cook Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:91 -msgid "Costa Rica" -msgstr "Costa Rica" - -# @ woocommerce -#: classes/class-wc-countries.php:92 -msgid "Croatia" -msgstr "Croàcia" - -# @ woocommerce -#: classes/class-wc-countries.php:93 -msgid "Cuba" -msgstr "Cuba" - -# @ woocommerce -#: classes/class-wc-countries.php:94 -msgid "CuraÇao" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:95 -msgid "Cyprus" -msgstr "Xipre" - -# @ woocommerce -#: classes/class-wc-countries.php:96 -msgid "Czech Republic" -msgstr "República Txeca" - -# @ woocommerce -#: classes/class-wc-countries.php:97 -msgid "Denmark" -msgstr "Dinamarca" - -# @ woocommerce -#: classes/class-wc-countries.php:98 -msgid "Djibouti" -msgstr "Djibouti" - -# @ woocommerce -#: classes/class-wc-countries.php:99 -msgid "Dominica" -msgstr "Dominica" - -# @ woocommerce -#: classes/class-wc-countries.php:100 -msgid "Dominican Republic" -msgstr "República Dominicana" - -# @ woocommerce -#: classes/class-wc-countries.php:101 -msgid "Ecuador" -msgstr "Ecuador" - -# @ woocommerce -#: classes/class-wc-countries.php:102 -msgid "Egypt" -msgstr "Egipte" - -# @ woocommerce -#: classes/class-wc-countries.php:103 -msgid "El Salvador" -msgstr "El Salvador" - -# @ woocommerce -#: classes/class-wc-countries.php:104 -msgid "Equatorial Guinea" -msgstr "Guinea Equatorial" - -# @ woocommerce -#: classes/class-wc-countries.php:105 -msgid "Eritrea" -msgstr "Eritrea" - -# @ woocommerce -#: classes/class-wc-countries.php:106 -msgid "Estonia" -msgstr "Estònia" - -# @ woocommerce -#: classes/class-wc-countries.php:107 -msgid "Ethiopia" -msgstr "Etiòpia" - -# @ woocommerce -#: classes/class-wc-countries.php:108 -msgid "Falkland Islands" -msgstr "Illes Falkland" - -# @ woocommerce -#: classes/class-wc-countries.php:109 -msgid "Faroe Islands" -msgstr "Illes Faroe" - -# @ woocommerce -#: classes/class-wc-countries.php:110 -msgid "Fiji" -msgstr "Fidji" - -# @ woocommerce -#: classes/class-wc-countries.php:111 -msgid "Finland" -msgstr "Finlàndia" - -# @ woocommerce -#: classes/class-wc-countries.php:112 -msgid "France" -msgstr "França" - -# @ woocommerce -#: classes/class-wc-countries.php:113 -msgid "French Guiana" -msgstr "Guaiana Francesa" - -# @ woocommerce -#: classes/class-wc-countries.php:114 -msgid "French Polynesia" -msgstr "Polinèsia Francesa" - -# @ woocommerce -#: classes/class-wc-countries.php:115 -msgid "French Southern Territories" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:116 -msgid "Gabon" -msgstr "Gabon" - -# @ woocommerce -#: classes/class-wc-countries.php:117 -msgid "Gambia" -msgstr "Gàmbia" - -# @ woocommerce -#: classes/class-wc-countries.php:118 i18n/states/US.php:23 -msgid "Georgia" -msgstr "Georgia" - -# @ woocommerce -#: classes/class-wc-countries.php:119 -msgid "Germany" -msgstr "Alemanya" - -# @ woocommerce -#: classes/class-wc-countries.php:120 -msgid "Ghana" -msgstr "Ghana" - -# @ woocommerce -#: classes/class-wc-countries.php:121 -msgid "Gibraltar" -msgstr "Gibraltar" - -# @ woocommerce -#: classes/class-wc-countries.php:122 -msgid "Greece" -msgstr "Grècia" - -# @ woocommerce -#: classes/class-wc-countries.php:123 -msgid "Greenland" -msgstr "Groenlàndia" - -# @ woocommerce -#: classes/class-wc-countries.php:124 -msgid "Grenada" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:125 -msgid "Guadeloupe" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:68 -msgid "Guam" -msgstr "Guam" - -# @ woocommerce -#: classes/class-wc-countries.php:126 -msgid "Guatemala" -msgstr "Guatemala" - -# @ woocommerce -#: classes/class-wc-countries.php:127 -msgid "Guernsey" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:128 -msgid "Guinea" -msgstr "Guinea" - -# @ woocommerce -#: classes/class-wc-countries.php:129 -msgid "Guinea-Bissau" -msgstr "Guinea-Bissau" - -# @ woocommerce -#: classes/class-wc-countries.php:130 -msgid "Guyana" -msgstr "Guyana" - -# @ woocommerce -#: classes/class-wc-countries.php:131 -msgid "Haiti" -msgstr "Haití" - -# @ woocommerce -#: classes/class-wc-countries.php:132 -msgid "Heard Island and McDonald Islands" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:133 -msgid "Honduras" -msgstr "Hondures" - -# @ woocommerce -#: classes/class-wc-countries.php:134 -msgid "Hong Kong" -msgstr "Hong Kong" - -# @ woocommerce -#: classes/class-wc-countries.php:135 -msgid "Hungary" -msgstr "Hungria" - -# @ woocommerce -#: classes/class-wc-countries.php:136 -msgid "Iceland" -msgstr "Islàndia" - -# @ woocommerce -#: classes/class-wc-countries.php:137 -msgid "India" -msgstr "Índia" - -# @ woocommerce -#: classes/class-wc-countries.php:138 -msgid "Indonesia" -msgstr "Indonèsia" - -# @ woocommerce -#: classes/class-wc-countries.php:139 -msgid "Iran" -msgstr "Iràn" - -# @ woocommerce -#: classes/class-wc-countries.php:140 -msgid "Iraq" -msgstr "Iraq" - -# @ woocommerce -#: classes/class-wc-countries.php:141 -msgid "Republic of Ireland" -msgstr "Irlanda" - -# @ woocommerce -#: classes/class-wc-countries.php:142 -msgid "Isle of Man" -msgstr "Illa de Man" - -# @ woocommerce -#: classes/class-wc-countries.php:143 -msgid "Israel" -msgstr "Israel" - -# @ woocommerce -#: classes/class-wc-countries.php:144 -msgid "Italy" -msgstr "Itàlia" - -# @ woocommerce -#: classes/class-wc-countries.php:145 -msgid "Ivory Coast" -msgstr "Costa d'Ivori" - -# @ woocommerce -#: classes/class-wc-countries.php:146 -msgid "Jamaica" -msgstr "Jamaica" - -# @ woocommerce -#: classes/class-wc-countries.php:147 -msgid "Japan" -msgstr "Japó" - -# @ woocommerce -#: classes/class-wc-countries.php:148 -msgid "Jersey" -msgstr "Jersey" - -# @ woocommerce -#: classes/class-wc-countries.php:149 -msgid "Jordan" -msgstr "Jordània" - -# @ woocommerce -#: classes/class-wc-countries.php:150 -msgid "Kazakhstan" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:151 -msgid "Kenya" -msgstr "Kenya" - -# @ woocommerce -#: classes/class-wc-countries.php:152 -msgid "Kiribati" -msgstr "Kiribati" - -# @ woocommerce -#: classes/class-wc-countries.php:153 -msgid "Kuwait" -msgstr "Kuwait" - -# @ woocommerce -#: classes/class-wc-countries.php:154 -msgid "Kyrgyzstan" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:155 -msgid "Laos" -msgstr "Laos" - -# @ woocommerce -#: classes/class-wc-countries.php:156 -msgid "Latvia" -msgstr "Letonia" - -# @ woocommerce -#: classes/class-wc-countries.php:157 -msgid "Lebanon" -msgstr "Líban" - -# @ woocommerce -#: classes/class-wc-countries.php:158 -msgid "Lesotho" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:159 -msgid "Liberia" -msgstr "Libèria" - -# @ woocommerce -#: classes/class-wc-countries.php:160 -msgid "Libya" -msgstr "Líbia" - -# @ woocommerce -#: classes/class-wc-countries.php:161 -msgid "Liechtenstein" -msgstr "Liechtenstein" - -# @ woocommerce -#: classes/class-wc-countries.php:162 -msgid "Lithuania" -msgstr "Lituània" - -# @ woocommerce -#: classes/class-wc-countries.php:163 -msgid "Luxembourg" -msgstr "Luxemburg" - -# @ woocommerce -#: classes/class-wc-countries.php:164 -msgid "Macao S.A.R., China" -msgstr "Macau, Xina" - -# @ woocommerce -#: classes/class-wc-countries.php:165 -msgid "Macedonia" -msgstr "Macedònia" - -# @ woocommerce -#: classes/class-wc-countries.php:166 -msgid "Madagascar" -msgstr "Madagascar" - -# @ woocommerce -#: classes/class-wc-countries.php:167 -msgid "Malawi" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:168 -msgid "Malaysia" -msgstr "Malàisia" - -# @ woocommerce -#: classes/class-wc-countries.php:169 -msgid "Maldives" -msgstr "Maldives" - -# @ woocommerce -#: classes/class-wc-countries.php:170 -msgid "Mali" -msgstr "Mali" - -# @ woocommerce -#: classes/class-wc-countries.php:171 -msgid "Malta" -msgstr "Malta" - -# @ woocommerce -#: classes/class-wc-countries.php:172 -msgid "Marshall Islands" -msgstr "Illes Marshall" - -# @ woocommerce -#: classes/class-wc-countries.php:173 -msgid "Martinique" -msgstr "Martinica" - -# @ woocommerce -#: classes/class-wc-countries.php:174 -msgid "Mauritania" -msgstr "Mauritània" - -# @ woocommerce -#: classes/class-wc-countries.php:175 -msgid "Mauritius" -msgstr "Maurici" - -# @ woocommerce -#: classes/class-wc-countries.php:176 -msgid "Mayotte" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:177 -msgid "Mexico" -msgstr "Mèxic" - -# @ woocommerce -#: classes/class-wc-countries.php:178 -msgid "Micronesia" -msgstr "Micronèsia" - -# @ woocommerce -#: classes/class-wc-countries.php:179 -msgid "Moldova" -msgstr "Moldavia" - -# @ woocommerce -#: classes/class-wc-countries.php:180 -msgid "Monaco" -msgstr "Mònaco" - -# @ woocommerce -#: classes/class-wc-countries.php:181 -msgid "Mongolia" -msgstr "Mongolia" - -# @ woocommerce -#: classes/class-wc-countries.php:182 -msgid "Montenegro" -msgstr "Montenegro" - -# @ woocommerce -#: classes/class-wc-countries.php:183 -msgid "Montserrat" -msgstr "Montserrat" - -# @ woocommerce -#: classes/class-wc-countries.php:184 -msgid "Morocco" -msgstr "Marroc" - -# @ woocommerce -#: classes/class-wc-countries.php:185 -msgid "Mozambique" -msgstr "Moçambic" - -# @ woocommerce -#: classes/class-wc-countries.php:186 -msgid "Myanmar" -msgstr "Birmània" - -# @ woocommerce -#: classes/class-wc-countries.php:187 -msgid "Namibia" -msgstr "Namíbia" - -# @ woocommerce -#: classes/class-wc-countries.php:188 -msgid "Nauru" -msgstr "Nauru" - -# @ woocommerce -#: classes/class-wc-countries.php:189 -msgid "Nepal" -msgstr "Nepal" - -# @ woocommerce -#: classes/class-wc-countries.php:190 -msgid "Netherlands" -msgstr "Holanda" - -# @ woocommerce -#: classes/class-wc-countries.php:191 -msgid "Netherlands Antilles" -msgstr "Antilles Holandeses" - -# @ woocommerce -#: classes/class-wc-countries.php:192 -msgid "New Caledonia" -msgstr "Nova Caledonia" - -# @ woocommerce -#: classes/class-wc-countries.php:193 -msgid "New Zealand" -msgstr "Nova Zelanda" - -# @ woocommerce -#: classes/class-wc-countries.php:194 -msgid "Nicaragua" -msgstr "Nicaragua" - -# @ woocommerce -#: classes/class-wc-countries.php:195 -msgid "Niger" -msgstr "Níger" - -# @ woocommerce -#: classes/class-wc-countries.php:196 -msgid "Nigeria" -msgstr "Nigèria" - -# @ woocommerce -#: classes/class-wc-countries.php:197 -msgid "Niue" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:198 -msgid "Norfolk Island" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:199 -msgid "North Korea" -msgstr "Corea del Nord" - -# @ woocommerce -#: i18n/states/US.php:69 -msgid "Northern Mariana Islands" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:200 -msgid "Norway" -msgstr "Noruega" - -# @ woocommerce -#: classes/class-wc-countries.php:201 -msgid "Oman" -msgstr "Oman" - -# @ woocommerce -#: classes/class-wc-countries.php:202 -msgid "Pakistan" -msgstr "Pakistan" - -# @ woocommerce -#: classes/class-wc-countries.php:203 -msgid "Palestinian Territory" -msgstr "Palestina" - -# @ woocommerce -#: classes/class-wc-countries.php:204 -msgid "Panama" -msgstr "Panamà" - -# @ woocommerce -#: classes/class-wc-countries.php:205 -msgid "Papua New Guinea" -msgstr "Papúa Nova Guinea" - -# @ woocommerce -#: classes/class-wc-countries.php:206 -msgid "Paraguay" -msgstr "Paraguai" - -# @ woocommerce -#: classes/class-wc-countries.php:207 -msgid "Peru" -msgstr "Perú" - -# @ woocommerce -#: classes/class-wc-countries.php:208 -msgid "Philippines" -msgstr "Filipines" - -# @ woocommerce -#: classes/class-wc-countries.php:209 -msgid "Pitcairn" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:210 -msgid "Poland" -msgstr "Polònia" - -# @ woocommerce -#: classes/class-wc-countries.php:211 -msgid "Portugal" -msgstr "Portugal" - -# @ woocommerce -#: i18n/states/US.php:70 -msgid "Puerto Rico" -msgstr "Puerto Rico" - -# @ woocommerce -#: classes/class-wc-countries.php:212 -msgid "Qatar" -msgstr "Qatar" - -# @ woocommerce -#: classes/class-wc-countries.php:213 -msgid "Reunion" -msgstr "Reunió" - -# @ woocommerce -#: classes/class-wc-countries.php:214 -msgid "Romania" -msgstr "Rumania" - -# @ woocommerce -#: classes/class-wc-countries.php:215 -msgid "Russia" -msgstr "Rússia" - -# @ woocommerce -#: classes/class-wc-countries.php:216 -msgid "Rwanda" -msgstr "Ruanda" - -# @ woocommerce -#: classes/class-wc-countries.php:217 -msgid "Saint Barthélemy" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:218 -msgid "Saint Helena" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:219 -msgid "Saint Kitts and Nevis" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:220 -msgid "Saint Lucia" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:221 -msgid "Saint Martin (French part)" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:222 -msgid "Saint Martin (Dutch part)" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:223 -msgid "Saint Pierre and Miquelon" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:224 -msgid "Saint Vincent and the Grenadines" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:225 -msgid "Samoa" -msgstr "Samoa" - -# @ woocommerce -#: classes/class-wc-countries.php:226 -msgid "San Marino" -msgstr "San Marino" - -# @ woocommerce -#: classes/class-wc-countries.php:227 -msgid "São Tomé and Príncipe" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:228 -msgid "Saudi Arabia" -msgstr "Aràbia Saudita" - -# @ woocommerce -#: classes/class-wc-countries.php:229 -msgid "Senegal" -msgstr "Senegal" - -# @ woocommerce -#: classes/class-wc-countries.php:230 -msgid "Serbia" -msgstr "Sèrbia" - -# @ woocommerce -#: classes/class-wc-countries.php:231 -msgid "Seychelles" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:232 -msgid "Sierra Leone" -msgstr "Sierra Leone" - -# @ woocommerce -#: classes/class-wc-countries.php:233 -msgid "Singapore" -msgstr "Singapur" - -# @ woocommerce -#: classes/class-wc-countries.php:234 -msgid "Slovakia" -msgstr "Eslovàquia" - -# @ woocommerce -#: classes/class-wc-countries.php:235 -msgid "Slovenia" -msgstr "Eslovènia" - -# @ woocommerce -#: classes/class-wc-countries.php:236 -msgid "Solomon Islands" -msgstr "Illes Salomó" - -# @ woocommerce -#: classes/class-wc-countries.php:237 -msgid "Somalia" -msgstr "Somàlia" - -# @ woocommerce -#: classes/class-wc-countries.php:238 -msgid "South Africa" -msgstr "Sudàfrica" - -# @ woocommerce -#: classes/class-wc-countries.php:239 -msgid "South Georgia/Sandwich Islands" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:240 -msgid "South Korea" -msgstr "Corea del Sud" - -# @ woocommerce -#: classes/class-wc-countries.php:241 -msgid "South Sudan" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:242 -msgid "Spain" -msgstr "Espanya" - -# @ woocommerce -#: classes/class-wc-countries.php:243 -msgid "Sri Lanka" -msgstr "Sri Lanka" - -# @ woocommerce -#: classes/class-wc-countries.php:244 -msgid "Sudan" -msgstr "Sudan" - -# @ woocommerce -#: classes/class-wc-countries.php:245 -msgid "Suriname" -msgstr "Surinam" - -# @ woocommerce -#: classes/class-wc-countries.php:246 -msgid "Svalbard and Jan Mayen" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:247 -msgid "Swaziland" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:248 -msgid "Sweden" -msgstr "Suècia" - -# @ woocommerce -#: classes/class-wc-countries.php:249 -msgid "Switzerland" -msgstr "Suïssa" - -# @ woocommerce -#: classes/class-wc-countries.php:250 -msgid "Syria" -msgstr "Síria" - -# @ woocommerce -#: classes/class-wc-countries.php:251 -msgid "Taiwan" -msgstr "Taiwan" - -# @ woocommerce -#: classes/class-wc-countries.php:252 -msgid "Tajikistan" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:253 -msgid "Tanzania" -msgstr "Tanzània" - -# @ woocommerce -#: classes/class-wc-countries.php:254 -msgid "Thailand" -msgstr "Tailàndia" - -# @ woocommerce -#: classes/class-wc-countries.php:255 -msgid "Timor-Leste" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:256 -msgid "Togo" -msgstr "Togo" - -# @ woocommerce -#: classes/class-wc-countries.php:257 -msgid "Tokelau" -msgstr "Tokelau" - -# @ woocommerce -#: classes/class-wc-countries.php:258 -msgid "Tonga" -msgstr "Tonga" - -# @ woocommerce -#: classes/class-wc-countries.php:259 -msgid "Trinidad and Tobago" -msgstr "Trinidad i Tobago" - -# @ woocommerce -#: classes/class-wc-countries.php:260 -msgid "Tunisia" -msgstr "Tunísia" - -# @ woocommerce -#: classes/class-wc-countries.php:261 -msgid "Turkey" -msgstr "Turquia" - -# @ woocommerce -#: classes/class-wc-countries.php:262 -msgid "Turkmenistan" -msgstr "Turkmenistan" - -# @ woocommerce -#: classes/class-wc-countries.php:263 -msgid "Turks and Caicos Islands" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:264 -msgid "Tuvalu" -msgstr "Tuvalu" - -# @ woocommerce -#: i18n/states/US.php:71 -msgid "US Minor Outlying Islands" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:265 -msgid "Uganda" -msgstr "Uganda" - -# @ woocommerce -#: classes/class-wc-countries.php:266 -msgid "Ukraine" -msgstr "Ucraïna" - -# @ woocommerce -#: classes/class-wc-countries.php:267 -msgid "United Arab Emirates" -msgstr "Emirats Àrabs Units" - -# @ woocommerce -#: classes/class-wc-countries.php:268 -msgid "United Kingdom" -msgstr "Regne Unit" - -# @ woocommerce -#: classes/class-wc-countries.php:269 -msgid "United States" -msgstr "Estats Units" - -# @ woocommerce -#: classes/class-wc-countries.php:270 -msgid "Uruguay" -msgstr "Uruguai" - -# @ woocommerce -#: classes/class-wc-countries.php:271 -msgid "Uzbekistan" -msgstr "Uzbequistan" - -# @ woocommerce -#: classes/class-wc-countries.php:272 -msgid "Vanuatu" -msgstr "Vanuatu" - -# @ woocommerce -#: classes/class-wc-countries.php:273 -msgid "Vatican" -msgstr "Vaticà" - -# @ woocommerce -#: classes/class-wc-countries.php:274 -msgid "Venezuela" -msgstr "Veneçuela" - -# @ woocommerce -#: classes/class-wc-countries.php:275 -msgid "Vietnam" -msgstr "Vietnam" - -# @ woocommerce -#: classes/class-wc-countries.php:276 -msgid "Wallis and Futuna" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:277 -msgid "Western Sahara" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:278 -msgid "Yemen" -msgstr "Iemen" - -# @ woocommerce -#: classes/class-wc-countries.php:279 -msgid "Zambia" -msgstr "Zàmbia" - -# @ woocommerce -#: classes/class-wc-countries.php:280 -msgid "Zimbabwe" -msgstr "Zimbabwe" - -# @ woocommerce -#: classes/class-wc-countries.php:418 -msgid "to the" -msgstr "a" - -# @ woocommerce -#: classes/class-wc-countries.php:419 -msgid "to" -msgstr "a" - -# context ambiguu -#: classes/class-wc-countries.php:432 -msgid "the" -msgstr "el/la/els/les" - -# @ woocommerce -#: classes/class-wc-countries.php:444 -msgid "VAT" -msgstr "IVA" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:352 -#: admin/settings/settings-tax-rates.php:387 -#: admin/settings/settings-tax-rates.php:466 -#: admin/woocommerce-admin-content.php:48 -#: admin/woocommerce-admin-settings.php:184 classes/class-wc-countries.php:444 -#: templates/cart/totals.php:110 templates/checkout/review-order.php:113 -msgid "Tax" -msgstr "Impostos" - -# @ woocommerce -#: classes/class-wc-countries.php:457 -msgid "(incl. VAT)" -msgstr "(IVA inclòs)" - -# @ woocommerce -#: classes/class-wc-countries.php:457 -msgid "(incl. tax)" -msgstr "(imp. incl.)" - -# @ woocommerce -#: classes/class-wc-countries.php:470 -msgid "(ex. VAT)" -msgstr "(IVA no incl.)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:549 -#: classes/class-wc-countries.php:470 -msgid "(ex. tax)" -msgstr "(taxes no incl.)" - -# @ woocommerce -#: classes/class-wc-countries.php:694 classes/class-wc-countries.php:704 -#: classes/class-wc-countries.php:724 classes/class-wc-countries.php:779 -#: classes/class-wc-countries.php:803 classes/class-wc-countries.php:848 -#: classes/class-wc-countries.php:872 -msgid "Province" -msgstr "Província" - -# @ woocommerce -#: classes/class-wc-countries.php:710 -msgid "Canton" -msgstr "Cantó" - -# @ woocommerce -#: classes/class-wc-countries.php:719 classes/class-wc-countries.php:854 -msgid "Municipality" -msgstr "Municipi" - -# @ woocommerce -#: classes/class-wc-countries.php:766 -msgid "Town / District" -msgstr "Poble / Ciutat" - -# @ woocommerce -#: classes/class-wc-countries.php:769 -msgid "Region" -msgstr "Regió" - -# @ woocommerce -#: classes/class-wc-countries.php:877 -msgid "Zip" -msgstr "Codi postal" - -# @ woocommerce -#: classes/class-wc-countries.php:880 -msgid "State" -msgstr "Estat" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:168 -#: admin/post-types/writepanels/writepanel-order_data.php:258 -#: admin/woocommerce-admin-users.php:171 admin/woocommerce-admin-users.php:220 -#: classes/class-wc-countries.php:885 -#: templates/cart/shipping-calculator.php:68 -msgid "Postcode" -msgstr "Codi postal" - -# @ woocommerce -#: classes/class-wc-countries.php:888 -msgid "County" -msgstr "Província" - -# @ woocommerce -#: classes/class-wc-countries.php:920 classes/class-wc-countries.php:921 -#: classes/class-wc-countries.php:996 -#: templates/cart/shipping-calculator.php:68 -msgid "Postcode / Zip" -msgstr "Codi postal" - -# @ woocommerce -#: classes/class-wc-countries.php:925 classes/class-wc-countries.php:926 -#: classes/class-wc-countries.php:985 -msgid "Town / City" -msgstr "Poble / Ciutat" - -# @ woocommerce -#: classes/class-wc-countries.php:930 classes/class-wc-countries.php:931 -#: classes/class-wc-countries.php:991 -msgid "State / County" -msgstr "Estat / Província" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:172 -#: admin/post-types/writepanels/writepanel-order_data.php:262 -#: admin/woocommerce-admin-users.php:179 admin/woocommerce-admin-users.php:228 -#: classes/class-wc-countries.php:955 -msgid "Country" -msgstr "País" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:144 -#: admin/post-types/writepanels/writepanel-order_data.php:234 -#: classes/class-wc-countries.php:960 -msgid "First Name" -msgstr "Nom" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:148 -#: admin/post-types/writepanels/writepanel-order_data.php:238 -#: classes/class-wc-countries.php:965 -msgid "Last Name" -msgstr "Cognom" - -# @ woocommerce -#: classes/class-wc-countries.php:971 -msgid "Company Name" -msgstr "Empresa" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:193 -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#: admin/post-types/writepanels/writepanel-order_data.php:277 -#: admin/post-types/writepanels/writepanel-order_data.php:279 -#: classes/class-wc-countries.php:975 -msgid "Address" -msgstr "Adreça" - -# @ woocommerce -#: classes/class-wc-countries.php:976 -msgctxt "placeholder" -msgid "Street address" -msgstr "Carrer" - -# @ woocommerce -#: classes/class-wc-countries.php:981 -msgctxt "placeholder" -msgid "Apartment, suite, unit etc. (optional)" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:1038 -msgid "Email Address" -msgstr "Email" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:185 -#: classes/class-wc-countries.php:1044 -msgid "Phone" -msgstr "Telèfon" - -# @ woocommerce -#: classes/class-wc-coupon.php:459 -msgid "Coupon usage limit has been reached." -msgstr "Heu assolit el límit màxim de cupons." - -# @ woocommerce -#: classes/class-wc-coupon.php:462 -msgid "This coupon has expired." -msgstr "Aquest cupó ha expirat." - -# @ woocommerce -#: classes/class-wc-coupon.php:465 -#, php-format -msgid "The minimum spend for this coupon is %s." -msgstr "El mínim que heu de gastar per fer us d'aquest cupó és %s." - -# @ woocommerce -#: classes/class-wc-coupon.php:468 -msgid "Sorry, this coupon is not applicable to your cart contents." -msgstr "" - -# @ woocommerce -#: classes/class-wc-customer.php:628 classes/class-wc-customer.php:638 -#, php-format -msgid "File %d" -msgstr "Arxiu %d" - -# @ woocommerce -#: classes/class-wc-emails.php:246 -msgid "Note" -msgstr "Nota" - -# @ woocommerce -#: classes/class-wc-emails.php:281 -msgid "Product low in stock" -msgstr "Producte baix en estoc." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:623 -#: classes/class-wc-emails.php:286 classes/class-wc-emails.php:318 -#: classes/class-wc-emails.php:362 -#, php-format -msgid "Variation #%s of %s" -msgstr "Variació #%s de %s" - -# @ woocommerce -#: classes/class-wc-emails.php:288 classes/class-wc-emails.php:320 -#: classes/class-wc-emails.php:364 -#, php-format -msgid "Product #%s - %s" -msgstr "Producte #%s - %s" - -# @ woocommerce -#: classes/class-wc-emails.php:290 -msgid "is low in stock." -msgstr "és baix en estoc." - -# @ woocommerce -#: classes/class-wc-emails.php:313 -msgid "Product out of stock" -msgstr "Producte fora d'estoc." - -# @ woocommerce -#: classes/class-wc-emails.php:322 -msgid "is out of stock." -msgstr "està fora d'estoc." - -# @ woocommerce -#: classes/class-wc-emails.php:357 -msgid "Product Backorder" -msgstr "Reserva de producte" - -# @ woocommerce -#: classes/class-wc-emails.php:366 -#, php-format -msgid "%s units of %s have been backordered in order #%s." -msgstr "%s unitats de %s han estat reservades en la comanda #%s." - -# @ woocommerce -#: classes/class-wc-order.php:283 -msgctxt "hash before order number" -msgid "#" -msgstr "#" - -# @ woocommerce -#: classes/class-wc-order.php:858 -#, php-format -msgid " %svia %s" -msgstr " %svia %s" - -# @ woocommerce -#: classes/class-wc-order.php:923 -msgid "Cart Subtotal:" -msgstr "Subtotal del carret:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:499 -#: classes/class-wc-order.php:929 -msgid "Cart Discount:" -msgstr "Descompte de carret:" - -# @ woocommerce -#: classes/class-wc-order.php:935 -msgid "Shipping:" -msgstr "Enviament:" - -# @ woocommerce -#: classes/class-wc-order.php:980 -msgid "Subtotal:" -msgstr "Subtotal:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:507 -#: classes/class-wc-order.php:1006 -msgid "Order Discount:" -msgstr "Descompte de la comanda:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:653 -#: classes/class-wc-order.php:1011 -msgid "Order Total:" -msgstr "Total de la comanda:" - -# @ woocommerce -#: classes/class-wc-order.php:1034 templates/cart/totals.php:145 -#: templates/checkout/review-order.php:151 -#, php-format -msgid "(Includes %s)" -msgstr "" - -# @ woocommerce -#. translators: plugin header field 'Name' -#: admin/woocommerce-admin-content.php:83 admin/woocommerce-admin-init.php:62 -#: classes/class-wc-order.php:1183 classes/class-wc-order.php:1185 -#: classes/class-wc-order.php:1188 woocommerce.php:0 -msgid "WooCommerce" -msgstr "WooCommerce" - -# @ woocommerce -#: classes/class-wc-order.php:1235 -#, php-format -msgid "Order status changed from %s to %s." -msgstr "L'estat de la comanda ha canviat de %s a %s." - -# @ woocommerce -#: classes/class-wc-order.php:1461 woocommerce-ajax.php:1163 -#: woocommerce-ajax.php:1164 -#, php-format -msgid "Item #%s stock reduced from %s to %s." -msgstr "Article #%s, estoc reduït de %s a %s." - -# @ woocommerce -#: classes/class-wc-order.php:1473 -msgid "Order item stock reduced successfully." -msgstr "L'estoc del producte de la comanda s'ha reduït correctament." - -# @ woocommerce -#: classes/class-wc-product-external.php:56 -msgid "Buy product" -msgstr "Comprar producte" - -# @ woocommerce -#: admin/settings/settings-init.php:500 classes/class-wc-shortcodes.php:571 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:257 -#: templates/loop/add-to-cart.php:46 -#: templates/single-product/add-to-cart/grouped.php:45 -#: templates/single-product/add-to-cart/grouped.php:75 -#: templates/single-product/add-to-cart/simple.php:42 -#: templates/single-product/add-to-cart/variable.php:78 -msgid "Add to cart" -msgstr "Comprar" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:24 -msgid "Completed order" -msgstr "Comanda completada" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:25 -msgid "" -"Order complete emails are sent to the customer when the order is marked " -"complete and usual indicates that the order has been shipped." -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:27 -msgid "Your order is complete" -msgstr "La vostra comanda s'ha completat" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:28 -msgid "Your {blogname} order from {order_date} is complete" -msgstr "La vostra comanda de {blogname} del {order_date} està completada" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:37 -msgid "Your order is complete - download your files" -msgstr "La vostra comanda s'ha completat - descarregueu els arxius" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:38 -msgid "" -"Your {blogname} order from {order_date} is complete - download your files" -msgstr "" -"La vostra comanda de {blogname} del {order_date} està completada - " -"descarregueu els vostres arxius" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:141 -#: classes/emails/class-wc-email-new-order.php:128 -msgid "Subject" -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:148 -#: classes/emails/class-wc-email-new-order.php:135 -msgid "Email Heading" -msgstr "Encapçalament del correu" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:155 -msgid "Subject (downloadable)" -msgstr "Descarregable" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:162 -msgid "Email Heading (downloadable)" -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:27 -msgid "Customer invoice" -msgstr "Factura del client" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:28 -msgid "" -"Customer invoice emails can be sent to the user containing order info and " -"payment links." -msgstr "" -"Es pot enviar al client un correu amb la factura, amb els detalls de la " -"comanda i els enllaços per fer el pagament." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:33 -msgid "Invoice for order {order_number} from {order_date}" -msgstr "Factura de la comanda {order_number} del {order_date}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:34 -msgid "Invoice for order {order_number}" -msgstr "Factura per la comanda {order_number}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:36 -msgid "Your {blogname} order from {order_date}" -msgstr "La vostra comanda de {blogname} del {order_date}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:37 -msgid "Order {order_number} details" -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:158 -msgid "Email subject (paid)" -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:165 -msgid "Email heading (paid)" -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:31 -msgid "New account" -msgstr "Compte nou" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:32 -msgid "" -"Customer new account emails are sent when a customer signs up via the " -"checkout or My Account page." -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:37 -msgid "Your account on {blogname}" -msgstr "El teu compte a {blogname}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:38 -msgid "Welcome to {blogname}" -msgstr "Benvingut a {blogname}" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:62 -#: classes/emails/class-wc-email-customer-note.php:29 -msgid "Customer note" -msgstr "Nota del client" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:30 -msgid "Customer note emails are sent when you add a note to an order." -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:35 -msgid "Note added to your {blogname} order from {order_date}" -msgstr "" -"S'ha afegit una nota a la vostra comanda de {blogname} del {order_date}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:36 -msgid "A note has been added to your order" -msgstr "S'ha afegit una nota a la vostra comanda" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:24 -msgid "Processing order" -msgstr "Processant la comanda" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:25 -msgid "" -"This is an order notification sent to the customer after payment containing " -"order details." -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:27 -msgid "Thank you for your order" -msgstr "Gràcies per la vostra comanda" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:28 -msgid "Your {blogname} order receipt from {order_date}" -msgstr "Factura de la vostra comanda de {blogname} del {order_date}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:36 -msgid "Reset password" -msgstr "Canvieu la contrasenya" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:37 -msgid "" -"Customer reset password emails are sent when a customer resets their " -"password." -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:42 -msgid "Password Reset for {blogname}" -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:43 -msgid "Password Reset Instructions" -msgstr "Instruccions per canviar la contrasenya" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:24 -msgid "New order" -msgstr "Nova comanda" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:25 -msgid "New order emails are sent when an order is received/paid by a customer." -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:27 -msgid "New customer order" -msgstr "Nova comanda" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:28 -msgid "[{blogname}] New customer order ({order_number}) - {order_date}" -msgstr "[{blogname}] Nova comanda ({order_number}) - {order_date}" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:121 -msgid "Recipient(s)" -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:123 -#, php-format -msgid "" -"Enter recipients (comma separated) for this email. Defaults to %s." -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:130 -#, php-format -msgid "" -"This controls the email subject line. Leave blank to use the default " -"subject: %s." -msgstr "" -"Aquí hi va el títol del correu. Deixeu-ho en blanc per mostrar el títol per " -"defecte: %s." - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:137 -#, php-format -msgid "" -"This controls the main heading contained within the email notification. " -"Leave blank to use the default heading: %s." -msgstr "" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:28 -msgid "Bacs" -msgstr "BACS" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:65 -msgid "Enable Bank Transfer" -msgstr "Activar Transferència Bancaria" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:69 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:63 -#: classes/gateways/cod/class-wc-gateway-cod.php:87 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:171 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:125 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:104 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:84 -msgid "Title" -msgstr "Títol" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:71 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:65 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:173 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:127 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:85 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:83 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:60 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:106 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:86 -msgid "This controls the title which the user sees during checkout." -msgstr "" -"Això controla el títol que l'usuari veu durant la finalització de la comanda." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:72 -msgid "Direct Bank Transfer" -msgstr "Transferència Bancaria Directa" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:76 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:70 -msgid "Customer Message" -msgstr "Missatge del client" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:78 -msgid "" -"Give the customer instructions for paying via BACS, and let them know that " -"their order won't be shipping until the money is received." -msgstr "" -"Dóna instruccions al client per pagar amb BACS, i fes-li saber que la seva " -"comanda no s'enviarà fins que s'hagin rebut els diners." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:79 -msgid "" -"Make your payment directly into our bank account. Please use your Order ID " -"as the payment reference. Your order wont be shipped until the funds have " -"cleared in our account." -msgstr "" -"Feu el vostre pagament directament al nostre compte corrent. Sisplau, feu " -"servir l'identificador de la vostra comanda com a referència de pagament. La " -"vostra comanda no s'enviarà fins que no rebem els diners al nostre compte." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:82 -msgid "Account Details" -msgstr "Detalls del compte" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:84 -msgid "Optionally enter your bank details below for customers to pay into." -msgstr "" -"Opcionalment, entreu les vostres dades bancàries a continuació perquè els " -"vostres clients puguin pagar-vos." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:88 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:163 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:203 -msgid "Account Name" -msgstr "Nom del compte" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:94 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:164 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:204 -msgid "Account Number" -msgstr "Número de compte" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:100 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:165 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:205 -msgid "Sort Code" -msgstr "Codi de classificació" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:106 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:166 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:206 -msgid "Bank Name" -msgstr "Nom del banc" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:112 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:167 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:207 -msgid "IBAN" -msgstr "IBAN" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:117 -msgid "BIC (formerly Swift)" -msgstr "BIC (o Swift)" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:136 -msgid "BACS Payment" -msgstr "Pagament amb BACS" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:137 -msgid "" -"Allows payments by BACS (Bank Account Clearing System), more commonly known " -"as direct bank/wire transfer." -msgstr "" -"Es permet el pagament amb BACS (Bank Account Clearing System), més conegut " -"com a transferència bancaria." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:158 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:200 -msgid "Our Details" -msgstr "Les nostres dades" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:168 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:208 -msgid "BIC" -msgstr "BIC" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:234 -msgid "Awaiting BACS payment" -msgstr "Pendent de pagament amb BACS (transferència directa)" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:28 -msgid "Cheque" -msgstr "Xec" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:59 -msgid "Enable Cheque Payment" -msgstr "Permet el pagament amb xecs" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:66 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:90 -msgid "Cheque Payment" -msgstr "Pagament mitjançant xecs" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:72 -msgid "" -"Let the customer know the payee and where they should be sending the cheque " -"to and that their order won't be shipping until you receive it." -msgstr "" -"Feu saber al vostre client qui n'és el beneficiari i on han d'enviar el xec, " -"i que la comanda no s'enviarà fins que els diners no s'hagin rebut." - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:73 -msgid "" -"Please send your cheque to Store Name, Store Street, Store Town, Store " -"State / County, Store Postcode." -msgstr "" -"Sisplau, envieu el vostre xec a Nom de la Botiga, Carrer i número, Ciutat, " -"Província i codi postal i País." - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:91 -msgid "" -"Allows cheque payments. Why would you take cheques in this day and age? Well " -"you probably wouldn't but it does allow you to make test purchases for " -"testing order emails and the 'success' pages etc." -msgstr "" -"Permet els pagaments amb xecs. Per què hauríeu d'acceptar xecs en els temps " -"que corren? De fet no ho haurieu de fer, però d'aquesta manera podeu fer " -"compres de prova i veure els diferents correus de les comandes i que totes " -"les pàgines funcionen correctament." - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:147 -msgid "Awaiting cheque payment" -msgstr "Esperant el pagament amb xec" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:27 -#: classes/gateways/cod/class-wc-gateway-cod.php:54 -#: classes/gateways/cod/class-wc-gateway-cod.php:90 -msgid "Cash on Delivery" -msgstr "Pagament contra reemborsament" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:55 -msgid "Have your customers pay with cash (or by other means) upon delivery." -msgstr "" -"Permeteu que els vostres clients paguin en efectiu quan rebin la comanda." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:80 -msgid "Enable COD" -msgstr "Habilitar pagament a l'entrega" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:81 -msgid "Enable Cash on Delivery" -msgstr "Habilitar el pagament en efectiu a l'entrega de la comanda" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:89 -msgid "Payment method title that the customer will see on your website." -msgstr "Títol del mètode de pagament que el client veurà al vostre lloc web." - -# @ woocommerce -#: admin/post-types/shop_coupon.php:28 -#: classes/gateways/cod/class-wc-gateway-cod.php:94 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:178 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:132 -#: woocommerce-template.php:748 -msgid "Description" -msgstr "Detalls" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:96 -msgid "Payment method description that the customer will see on your website." -msgstr "" -"Descripció del mètode de pagament que el vostre client veurà al vostre lloc " -"web." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:100 -msgid "Instructions" -msgstr "Instruccions" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:102 -msgid "Instructions that will be added to the thank you page." -msgstr "Instruccions que s'afegiran a la pàgina d'agraïment." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:106 -msgid "Enable for shipping methods" -msgstr "Habilitar els mètodes d'enviament" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:111 -msgid "" -"If COD is only available for certain methods, set it up here. Leave blank to " -"enable for all methods." -msgstr "" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:176 -msgid "Payment to be made upon delivery." -msgstr "El pagament es farà quan a l'entrega del producte." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:31 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:196 -msgid "Mijireh Checkout" -msgstr "Mijireh Checkout" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:143 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:321 -msgid "Mijireh error:" -msgstr "Mijireh error:" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:160 -msgid "Enable Mijireh Checkout" -msgstr "Habilitar Mijireh Checkout" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:164 -msgid "Access Key" -msgstr "Clau d'accés" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:166 -msgid "The Mijireh access key for your store." -msgstr "La clau d'accés Mijireh per a la vostra botiga." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:174 -msgid "Credit Card" -msgstr "Targeta de crèdit" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:180 -msgid "Pay securely with you credit card." -msgstr "Pagueu amb seguretat amb la vostra targeta de crèdit." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:181 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:134 -msgid "This controls the description which the user sees during checkout." -msgstr "" -"Això controla la descripció que l'usuari veurà al finalitzar la comanda." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:200 -msgid "Get started with Mijireh Checkout" -msgstr "Comença amb Mijireh Checkout" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:201 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site. Mijireh supports a wide variety of payment gateways: Stripe, " -"Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and more." -msgstr "" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:203 -msgid "Join for free" -msgstr "Uneix-t'hi de forma gratuïta" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:203 -msgid "Learn more about WooCommerce and Mijireh" -msgstr "Aprèn més sobre WooCommerce i Mijireh" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:207 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site." -msgstr "" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:34 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:128 -msgid "PayPal" -msgstr "PayPal" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:90 -msgid "PayPal standard" -msgstr "PayPal estàndard" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:91 -msgid "" -"PayPal standard works by sending the user to PayPal to enter their payment " -"information." -msgstr "" -"PayPal estàndard funciona enviant l'usuari al servidor de PayPal per " -"introduir-hi la seva informació de pagament." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:103 -msgid "Gateway Disabled" -msgstr "Passarel·la desactivada" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:103 -msgid "PayPal does not support your store currency." -msgstr "Paypal no soporta la moneda de la vostra botiga." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:121 -msgid "Enable PayPal standard" -msgstr "Activar PayPal estàndard" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:135 -msgid "" -"Pay via PayPal; you can pay with your credit card if you don't have a PayPal " -"account" -msgstr "" -"Pagar a través de PayPal; podeu pagar amb la vostra targeta de crèdit si no " -"teniu un compte a PayPal." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:138 -msgid "PayPal Email" -msgstr "Email de PayPal" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:140 -msgid "" -"Please enter your PayPal email address; this is needed in order to take " -"payment." -msgstr "" -"Sisplau, introduïu el vostre email de PayPal; és necessari per tal de rebre " -"els pagaments." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:146 -msgid "Invoice Prefix" -msgstr "" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:153 -msgid "Submission method" -msgstr "Mètode d'enviament" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:155 -msgid "Use form submission method." -msgstr "Utilitzar el formulari d'enviament." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:156 -msgid "" -"Enable this to post order data to PayPal via a form instead of using a " -"redirect/querystring." -msgstr "" -"Habilitar això per publicar les dades de la comanda a PayPal a través d'un " -"formulari enlloc d'utilitzar un redireccionament / querystring." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:160 -msgid "Page Style" -msgstr "Estil de la pàgina" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:162 -msgid "" -"Optionally enter the name of the page style you wish to use. These are " -"defined within your PayPal account." -msgstr "" -"Opcionalment, ingresseu el nom de l'estil de la pàgina que voleu fer servir. " -"Estan definits al vostre compte de PayPal." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:168 -msgid "Shipping options" -msgstr "Opcions d'enviament" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:173 -msgid "Shipping details" -msgstr "Detalls de l'enviament" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:175 -msgid "Send shipping details to PayPal instead of billing." -msgstr "Enviar l'adreça d'enviament a PayPal enlloc de la de facturació." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:177 -msgid "" -"PayPal allows us to send 1 address. If you are using PayPal for shipping " -"labels you may prefer to send the shipping address rather than billing." -msgstr "" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:181 -msgid "Address override" -msgstr "Sobreescriure l'adreça" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:183 -msgid "" -"Enable \"address_override\" to prevent address information from being " -"changed." -msgstr "" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:184 -msgid "" -"PayPal verifies addresses therefore this setting can cause errors (we " -"recommend keeping it disabled)." -msgstr "" -"PayPal verifica les adreces, per tant, aquest ajustament pot causar errors " -"(recomanem mantenir-lo desactivat)." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:188 -msgid "Gateway Testing" -msgstr "" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:193 -msgid "PayPal sandbox" -msgstr "PayPal Sandbox (Plataforma de proves)" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:195 -msgid "Enable PayPal sandbox" -msgstr "Activar PayPal Sandbox" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:197 -#, php-format -msgid "" -"PayPal sandbox can be used to test payments. Sign up for a developer account " -"here." -msgstr "" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:200 -msgid "Debug Log" -msgstr "" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:202 -msgid "Enable logging" -msgstr "Habilitar logging" - -# @ default -#: classes/gateways/paypal/class-wc-gateway-paypal.php:204 -msgid "" -"Log PayPal events, such as IPN requests, inside woocommerce/logs/" -"paypal.txt" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:98 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:313 -#, php-format -msgid "Order %s" -msgstr "Comanda %s" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:323 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:373 -msgid "Shipping via" -msgstr "Enviament via" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:414 -msgid "" -"Thank you for your order. We are now redirecting you to PayPal to make " -"payment." -msgstr "" -"Gràcies per la vostra comanda. Ara us redirigirem cap a PayPal perquè pogueu " -"fer el vostre pagament." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:435 -msgid "Pay via PayPal" -msgstr "Pagar a través de PayPal" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:435 -msgid "Cancel order & restore cart" -msgstr "Cancel·lar la comanda & restablir el carret" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:489 -msgid "" -"Thank you for your order, please click the button below to pay with PayPal." -msgstr "" -"Gràcies per la vostra comanda, sisplau, feu clic al botó per pagar amb " -"PayPal." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:634 -#, php-format -msgid "Validation error: PayPal amounts do not match (gross %s)." -msgstr "" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:652 -msgid "IPN payment completed" -msgstr "Pagament IPN completat" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:664 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:672 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:690 -#, php-format -msgid "Payment %s via IPN." -msgstr "Pagament via %s IPN." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:677 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:695 -msgid "Order refunded/reversed" -msgstr "Comanda retornada" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:678 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:696 -#, php-format -msgid "Order %s has been marked as refunded - PayPal reason code: %s" -msgstr "" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:681 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:699 -#, php-format -msgid "Payment for order %s refunded/reversed" -msgstr "" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:26 -msgid "Google Analytics" -msgstr "Google Analytics" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:27 -msgid "" -"Google Analytics is a free service offered by Google that generates detailed " -"statistics about the visitors to a website." -msgstr "" -"Google Analytics és un servei gratuït ofert per Google que genera " -"estadístiques detallades sobre les persones que visiten el vostre lloc." - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:62 -msgid "Google Analytics ID" -msgstr "ID de Google Analytics" - -# woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:63 -msgid "" -"Log into your google analytics account to find your ID. e.g. UA-XXXXX-" -"X" -msgstr "" -"Inicia sessió al teu compte de Google Analytics per trobar la teva ID, per " -"exemple, UA-XXXXX-X" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:68 -msgid "Tracking code" -msgstr "Codi de seguiment" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:69 -msgid "" -"Add tracking code to your site's footer. You don't need to enable this if " -"using a 3rd party analytics plugin." -msgstr "" -"Afegir un codi de seguiment al peu del lloc web. No necessites activar-lo si " -"estas fent servir un altre plugin d'estadístiques." - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:75 -msgid "Add eCommerce tracking code to the thankyou page" -msgstr "Afegir el codi de seguiment d'eCommerce a la pàgina d'agraïment." - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:81 -msgid "Add event tracking code for add to cart actions" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:95 -#: admin/post-types/writepanels/writepanel-order_data.php:93 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:113 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:168 -#: woocommerce-ajax.php:1725 -msgid "Guest" -msgstr "Convidat" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:201 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:258 -#: templates/single-product/meta.php:19 -msgid "SKU:" -msgstr "SKU:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:74 -#: admin/woocommerce-admin-taxonomies.php:28 -#: admin/woocommerce-admin-taxonomies.php:122 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:256 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:276 -#: woocommerce.php:948 -msgid "Products" -msgstr "Productes" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:277 -msgid "Add to Cart" -msgstr "Comprar" - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:26 -msgid "ShareDaddy" -msgstr "ShareDaddy" - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:27 -msgid "ShareDaddy is a sharing plugin bundled with JetPack." -msgstr "ShareDaddy és un plugin per compartir que vé inclòs a JetPack." - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:51 -msgid "Output ShareDaddy button?" -msgstr "¿Mostrar el botó de ShareDaddy?" - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:52 -msgid "Enable this option to show the ShareDaddy button on the product page." -msgstr "" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:29 -msgid "ShareThis" -msgstr "" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:30 -msgid "" -"ShareThis offers a sharing widget which will allow customers to share links " -"to products with their friends." -msgstr "" -"ShareThis ofereix un widget que permet als cients compartir els enllaços " -"dels productes amb els seus amics." - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:63 -msgid "ShareThis Publisher ID" -msgstr "Número d'ID de ShareThis" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:64 -#, php-format -msgid "" -"Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons on " -"product pages." -msgstr "" -"Introdueix el %1$sNúmero d'ID de ShareThis%2$s per mostrar els botons de " -"compartir a les pàgines de producte." - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:69 -msgid "ShareThis Code" -msgstr "Codi de ShareThis" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:70 -msgid "You can tweak the ShareThis code by editing this option." -msgstr "Podeu modificar el codi de ShareThis editant-ne la opció." - -# @ woocommerce -# @ default -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:22 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:329 -msgid "ShareYourCart" -msgstr "ShareYourCart (Compartiu el vostre carret)" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:328 -msgid "Share your cart settings" -msgstr "" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:342 -msgid "Button" -msgstr "Text del botó" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:343 -msgid "Customize Button" -msgstr "Customitzar el botó" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:351 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:352 -msgid "Documentation" -msgstr "Documentació" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:33 -msgid "Setup your ShareYourCart account" -msgstr "Configurar el compte de ShareYourCart" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Create an account" -msgstr "Crear un nou compte" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Can't access your account?" -msgstr "No podeu accedir al vostre compte?" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:100 -msgid "Configure" -msgstr "Configurar" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:386 -#: classes/integrations/shareyourcart/views/admin-page.php:110 -#: classes/integrations/shareyourcart/views/button-settings-page.php:120 -msgid "Save changes" -msgstr "Guardar els canvis" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/button-settings-page.php:8 -#: classes/integrations/shareyourcart/views/button-settings-page.php:11 -msgid "Button style" -msgstr "Estil del botó" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:25 -msgid "Flat rate" -msgstr "Tarifa plana" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:28 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:461 -msgid "Flat Rates" -msgstr "Tarifes planes" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:29 -msgid "Flat rates let you define a standard rate per item, or per order." -msgstr "" -"Les tarifes planes us permeten definir una tarifa estàndard per producte, o " -"per comanda." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:79 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:54 -msgid "Enable this shipping method" -msgstr "Actvar aquest mètode d'enviament" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:83 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:81 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:58 -msgid "Method Title" -msgstr "Títol del mètode" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:86 -msgid "Flat Rate" -msgstr "Preu únic" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:90 -msgid "Cost per order" -msgstr "Cost per comanda" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:96 -msgid "" -"Enter a cost (excluding tax) per order, e.g. 5.00. Leave blank to disable." -msgstr "" -"Ingresseu un preu (impostos exclosos) per comanda, per exemple: 5.00. Deixeu " -"en blanc per deshabilitar." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:102 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:88 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:143 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:99 -msgid "Method availability" -msgstr "Disponibilitat del mètode" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:107 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:93 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:148 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:104 -msgid "All allowed countries" -msgstr "Tots els països permesos" - -# @ woocommerce -#: admin/settings/settings-init.php:68 admin/settings/settings-init.php:73 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:108 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:112 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:98 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:149 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:153 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:105 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:109 -msgid "Specific Countries" -msgstr "Països específics" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:120 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:83 -msgid "Calculation Type" -msgstr "Tipus de càlcul" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:124 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:87 -msgid "Per Order - charge shipping for the entire order as a whole" -msgstr "" -"Per comanda - els costos d'enviament són per a tota la comanda en general" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:125 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:88 -msgid "Per Item - charge shipping for each item individually" -msgstr "" -"Por artículo - els costos d'enviament són per a cada producte de forma " -"individual" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:126 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:89 -msgid "Per Class - charge shipping for each shipping class in an order" -msgstr "" -"Per classe - els costos d'enviament són per a cadascuna de les classes de la " -"comanda" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:178 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:130 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:93 -msgid "Tax Status" -msgstr "Estatus dels impostos" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:20 -#: admin/post-types/writepanels/writepanel-product_data.php:179 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:134 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:97 -msgid "Taxable" -msgstr "Subjecte a impostos" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:181 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:135 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:98 -msgid "None" -msgstr "Cap" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:139 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:102 -msgid "Default Cost" -msgstr "Cost predeterminat" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:145 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:108 -msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -msgstr "Cost excloent impostos. Entreu una quantitat, per exemple, 2,50" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:151 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:114 -msgid "Default Handling Fee" -msgstr "Despeses de gestió. Deixeu en blanc per desactivar." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:153 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:116 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. " -"Leave blank to disable." -msgstr "" -"Preu sense impostos. Introduïu una quantitat, per exemple 2,50, o un " -"percentatge, per exemple 5%. Deixeu en blanc per desactivar." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:159 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:122 -msgid "Minimum Fee" -msgstr "Tarifa mínima" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:165 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:128 -msgid "" -"Enter a minimum fee amount. Fee's less than this will be increased. Leave " -"blank to disable." -msgstr "" -"Entreu una tarifa mínima. Les tarifes menors que aquesta seran augmentades. " -"Deixeu en blanc per deshabilitar." - -# @ woocommerce -#: admin/settings/settings-init.php:833 -#: admin/woocommerce-admin-settings.php:290 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:171 -msgid "Shipping Options" -msgstr "Tipus d'enviament" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:173 -msgid "" -"Optional extra shipping options with additional costs (one per line). " -"Example: Option Name|Cost|Per-order (yes or no). Example: " -"Priority Mail|6.95|yes. If per-order is set to no, it will use " -"the \"Calculation Type\" setting." -msgstr "" -"Altres tipus opcionals d'enviaments (un per línia). Exemple: Nom de la " -"opció|Cost|Per comanda (si o no). Exemple: Correu prioritari|" -"6,95|si. Si \\\"per comanda\\\" s'ha establert com a \\\"no\\\", " -"utilitzarà les preferències del \"Tipus de càlcul\"." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:467 -#: woocommerce.php:857 -msgid "Shipping Class" -msgstr "Classes d'enviament" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:349 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:468 -msgid "Cost" -msgstr "Cost" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:468 -msgid "Cost, excluding tax." -msgstr "Cost, sense impostos." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:469 -msgid "Handling Fee" -msgstr "Despeses de gestió" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:469 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -msgstr "" -"Cost sense impostos. Poseu una quantitat, per exemple 2,50, o un tant per " -"cent, per exemple 5%." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:474 -msgid "+ Add Flat Rate" -msgstr "+ Afegir un preu únic" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:475 -msgid "" -"Add rates for shipping classes here — they will override the default " -"costs defined above." -msgstr "" -"Afegiu els costos de les classes d'enviament aquí — aquests " -"sobreescriuran els definits per defecte." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:475 -msgid "Delete selected rates" -msgstr "Esborrar els costos seleccionats" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:495 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:528 -msgid "Select a class…" -msgstr "Seleccioneu una classe…" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:500 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:501 -msgid "0.00" -msgstr "0,00" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:542 -msgid "Delete the selected rates?" -msgstr "Esborrar els costos seleccionats?" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:25 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:145 -msgid "Free Shipping" -msgstr "Enviament gratuït" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:77 -msgid "Enable Free Shipping" -msgstr "Activar l'enviament gratuït" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:106 -msgid "Free Shipping Requires..." -msgstr "L'enviament gratuït requereix…" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:19 -#: admin/post-types/writepanels/order-tax-html.php:8 -#: admin/post-types/writepanels/writepanel-order_data.php:558 -#: admin/post-types/writepanels/writepanel-order_data.php:663 -#: admin/woocommerce-admin-reports.php:1642 -#: admin/woocommerce-admin-reports.php:2655 -#: admin/woocommerce-admin-reports.php:2664 -#: admin/woocommerce-admin-users.php:90 admin/woocommerce-admin-users.php:112 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:110 -#: templates/order/order-details.php:110 templates/order/order-details.php:125 -msgid "N/A" -msgstr "N/A" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:111 -msgid "A valid free shipping coupon" -msgstr "Habilitar el cupó d'enviament gratuït" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:112 -msgid "A minimum order amount (defined below)" -msgstr "" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:113 -msgid "A minimum order amount OR a coupon" -msgstr "Quantitat mínima de comanda O cupó" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:114 -msgid "A minimum order amount AND a coupon" -msgstr "Quantitat mínima de comanda I cupó" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:118 -msgid "Minimum Order Amount" -msgstr "Quantitat mínima de comanda" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:124 -msgid "" -"Users will need to spend this amount to get free shipping (if enabled above)." -msgstr "" -"Els usuaris hauran de gastar aquesta quantitat per tenir l'enviament gratuït " -"(si l'heu habilitat)." - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:28 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:31 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:61 -msgid "International Delivery" -msgstr "Enviament internacional" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:32 -msgid "International delivery based on flat rate shipping." -msgstr "Enviament internacional basat en preu únic." - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:65 -msgid "Availability" -msgstr "Disponibilitat" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:70 -msgid "Selected countries" -msgstr "Països seleccionats" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:71 -msgid "Excluding selected countries" -msgstr "Excloent els països seleccionats" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:75 -msgid "Countries" -msgstr "Països" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:25 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:107 -msgid "Local Delivery" -msgstr "Enviaments locals" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:98 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:78 -msgid "Enable" -msgstr "Activar" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:100 -msgid "Enable local delivery" -msgstr "Activar l'enviament local" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:111 -msgid "Fee Type" -msgstr "Tipus de tarifa" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:113 -msgid "How to calculate delivery charges" -msgstr "Com calcular les despeses d'enviament" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 -msgid "Fixed amount" -msgstr "Quantitat fixa" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:117 -msgid "Percentage of cart total" -msgstr "Percentatge del total del carret" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:118 -msgid "Fixed amount per product" -msgstr "Quantitat fixa per producte" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:123 -msgid "Delivery Fee" -msgstr "Tarifa d'enviament" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:129 -msgid "" -"What fee do you want to charge for local delivery, disregarded if you choose " -"free. Leave blank to disable." -msgstr "" -"Quina quantitat voleu cobrar per als enviaments locals, encara que hagueu " -"triat enviament gratuït. Deixeu en blanc per deshabilitar." - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:135 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:91 -msgid "Zip/Post Codes" -msgstr "Codi postal" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:137 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:93 -msgid "" -"What zip/post codes would you like to offer delivery to? Separate codes with " -"a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -msgstr "" -"A quins codis postals voldríeu oferir les entregues? Separeu els codis amb " -"una coma. Accepta caràcters comodí, tipus * (asterisc)." - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:172 -msgid "" -"Local delivery is a simple shipping method for delivering orders locally." -msgstr "" -"L'enviament local és un mètode d'enviament simple per a comandes locals." - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:25 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:87 -msgid "Local Pickup" -msgstr "Recollida local" - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:80 -msgid "Enable local pickup" -msgstr "Habilitar recollida local" - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:117 -msgid "Apply base tax rate" -msgstr "Aplicar la base de l'impost" - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:119 -msgid "" -"When this shipping method is chosen, apply the base tax rate rather than for " -"the customer's given address." -msgstr "" - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:134 -msgid "" -"Local pickup is a simple method which allows the customer to pick up their " -"order themselves." -msgstr "" -"La recollida local és un mètode simple que permet als clients recollir les " -"seves comandes ells mateixos." - -# @ woocommerce -#: classes/class-wc-coupon.php:497 -msgid "Please enter a coupon code." -msgstr "Sisplau, entreu el codi del vostre cupó." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-cart.php:54 -#: woocommerce-functions.php:1637 -msgid "Please enter a valid postcode/ZIP." -msgstr "Sisplau, introduïu un codi postal vàlid." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-cart.php:65 -#: classes/shortcodes/class-wc-shortcode-cart.php:71 -msgid "Shipping costs updated." -msgstr "Costos d'enviament actualitzats." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-checkout.php:64 -msgid "" -"The order totals have been updated. Please confirm your order by pressing " -"the Place Order button at the bottom of the page." -msgstr "" -"El total de la comanda ha estat actualitzat. Sisplau, confirmeu-la amb el " -"botó de Comprar." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:80 -#: woocommerce-core-functions.php:2488 woocommerce-functions.php:1559 -msgid "Please enter your password." -msgstr "Sisplau, introduïu la vostra contrasenya." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:95 -msgid "Your password has been reset." -msgstr "La vostra contrasenya ha estat restablerta." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:95 -msgid "Log in" -msgstr "" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:116 -msgid "Enter a username or e-mail address." -msgstr "Sisplau, entreu el vostre nom d'usuari o la vostra adreça de correu." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:123 -msgid "There is no user registered with that email address." -msgstr "" -"No hi ha cap usuari registrat amb aquesta adreça. Sisplau, identifiqueu-vos." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:138 -msgid "Invalid username or e-mail." -msgstr "Email o usuari no vàlids." - -# @ default -#: classes/shortcodes/class-wc-shortcode-lost-password.php:152 -msgid "Password reset is not allowed for this user" -msgstr "" - -# @ default -#: classes/shortcodes/class-wc-shortcode-lost-password.php:180 -msgid "Check your e-mail for the confirmation link." -msgstr "Mireu el vostre correu per obtenir l'enllaç de confirmació." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:200 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:205 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:212 -msgid "Invalid key" -msgstr "Clau no vàlida." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:53 -msgid "Please enter a valid order ID" -msgstr "Sispalu, entreu un número de comanda vàlid" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:57 -msgid "Please enter a valid order email" -msgstr "Sisplau, entreu un email vàlid de comanda" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:76 -msgid "Sorry, we could not find that order id in our database." -msgstr "" -"Ho sentim, no hem pogut trobar aquesta comanda a la nostra base de dades." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:65 -#: classes/shortcodes/class-wc-shortcode-pay.php:118 -msgid "" -"Your order has already been paid for. Please contact us if you need " -"assistance." -msgstr "" -"La vostra comanda ja ha estat pagada. Sisplau, poseu-vos en contacte amb " -"nosaltres si necessiteu ajuda." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:70 -#: classes/shortcodes/class-wc-shortcode-pay.php:125 -#: classes/shortcodes/class-wc-shortcode-view-order.php:49 -#: woocommerce-functions.php:880 woocommerce-functions.php:959 -msgid "Invalid order." -msgstr "Comanda no vàlida." - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:188 -#: classes/shortcodes/class-wc-shortcode-pay.php:90 -#: templates/checkout/thankyou.php:40 -#: templates/emails/customer-completed-order.php:18 -#: templates/emails/customer-invoice.php:22 -#: templates/emails/customer-note.php:22 -#: templates/emails/customer-processing-order.php:18 -msgid "Order:" -msgstr "Comanda:" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:94 -#: templates/checkout/thankyou.php:44 -msgid "Date:" -msgstr "Data:" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:239 -#: classes/shortcodes/class-wc-shortcode-pay.php:98 -#: templates/checkout/thankyou.php:48 -msgid "Total:" -msgstr "Total:" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:103 -#: templates/checkout/thankyou.php:53 -msgid "Payment method:" -msgstr "Método de pagament:" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:49 -msgid "My Account →" -msgstr "El meu compte →" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:56 -#, php-format -msgid "" -"Order %s made on %s" -msgstr "" -"Comanda %s feta el %s" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:57 -#, php-format -msgid "Order status: %s" -msgstr "Estat de la comanda: %s" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:63 -#: templates/order/tracking.php:31 -msgid "Order Updates" -msgstr "Actualitzacions de la comanda" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:69 -msgid "l jS \\of F Y, h:ia" -msgstr "" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:31 -msgid "Display a list of your best selling products on your site." -msgstr "Mostrar una llista dels productes més venuts a la vostra web." - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:33 -msgid "WooCommerce Best Sellers" -msgstr "Els més venuts" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:71 -msgid "Best Sellers" -msgstr "Els més venuts" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:192 -#: classes/widgets/class-wc-widget-cart.php:115 -#: classes/widgets/class-wc-widget-featured-products.php:172 -#: classes/widgets/class-wc-widget-layered-nav.php:349 -#: classes/widgets/class-wc-widget-onsale.php:177 -#: classes/widgets/class-wc-widget-price-filter.php:179 -#: classes/widgets/class-wc-widget-product-categories.php:185 -#: classes/widgets/class-wc-widget-product-search.php:91 -#: classes/widgets/class-wc-widget-product-tag-cloud.php:101 -#: classes/widgets/class-wc-widget-random-products.php:133 -#: classes/widgets/class-wc-widget-recent-products.php:169 -#: classes/widgets/class-wc-widget-recent-reviews.php:158 -#: classes/widgets/class-wc-widget-recently-viewed.php:166 -#: classes/widgets/class-wc-widget-top-rated-products.php:159 -msgid "Title:" -msgstr "Títol:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:195 -#: classes/widgets/class-wc-widget-featured-products.php:175 -#: classes/widgets/class-wc-widget-onsale.php:180 -#: classes/widgets/class-wc-widget-random-products.php:138 -#: classes/widgets/class-wc-widget-recent-products.php:172 -#: classes/widgets/class-wc-widget-recent-reviews.php:161 -#: classes/widgets/class-wc-widget-recently-viewed.php:169 -#: classes/widgets/class-wc-widget-top-rated-products.php:162 -msgid "Number of products to show:" -msgstr "Número de productes que s'han de mostrar:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:199 -msgid "Hide free products" -msgstr "Ocultar els productes gratuïts" - -# @ woocommerce -#: classes/widgets/class-wc-widget-cart.php:33 -msgid "Display the user's Cart in the sidebar." -msgstr "Mostrar el carret de l'usuari a la barra lateral." - -# @ woocommerce -#: classes/widgets/class-wc-widget-cart.php:35 -msgid "WooCommerce Cart" -msgstr "Carret" - -# @ woocommerce -#: classes/widgets/class-wc-widget-cart.php:119 -msgid "Hide if cart is empty" -msgstr "Ocultar si el carret està buit" - -# @ woocommerce -#: classes/widgets/class-wc-widget-featured-products.php:35 -msgid "Display a list of featured products on your site." -msgstr "" -"Mostrar una llista de productes destacats que apareixen al vostre lloc." - -# @ woocommerce -#: classes/widgets/class-wc-widget-featured-products.php:37 -msgid "WooCommerce Featured Products" -msgstr "Productes destacats" - -# @ woocommerce -#: classes/widgets/class-wc-widget-featured-products.php:75 -msgid "Featured Products" -msgstr "Productes destacats" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:31 -msgid "Shows active layered nav filters so users can see and deactivate them." -msgstr "" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:33 -msgid "WooCommerce Layered Nav Filters" -msgstr "Navegació per capes de WooCommerce " - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:62 -msgid "Active filters" -msgstr "" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:93 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Remove filter" -msgstr "Eliminar imatge" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -msgid "Min" -msgstr "Mínim" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Max" -msgstr "Màxim" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:31 -msgid "" -"Shows a custom attribute in a widget which lets you narrow down the list of " -"products when viewing product categories." -msgstr "" -"Mostra un atribut personalitzat en un widget que permet reduïr la llista " -"dels productes quan es visualitzen per categories." - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:33 -msgid "WooCommerce Layered Nav" -msgstr "Navegació per capes de WooCommerce" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:100 -#, php-format -msgid "Any %s" -msgstr "Any %s" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:352 -msgid "Attribute:" -msgstr "Atribut:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:363 -msgid "Display Type:" -msgstr "Tipus de visualització:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:365 -msgid "List" -msgstr "Llista" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:366 -msgid "Dropdown" -msgstr "Llista desplegable" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:369 -msgid "Query Type:" -msgstr "Tipus de consulta:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:371 -msgid "AND" -msgstr "I" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:372 -msgid "OR" -msgstr "O" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:31 -msgid "Display a login area and \"My Account\" links in the sidebar." -msgstr "Mostrar l'àrea d'inici de sessió i \"Mi Cuenta\" a la barra lateral." - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:33 -msgid "WooCommerce Login" -msgstr "Iniciar sessió" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:59 -#: classes/widgets/class-wc-widget-login.php:223 -msgid "Customer Login" -msgstr "Entrar com a client" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:60 -#: classes/widgets/class-wc-widget-login.php:226 -#, php-format -msgid "Welcome %s" -msgstr "Benvingut %s" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:76 -msgid "My account" -msgstr "El meu compte" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:77 -msgid "Change my password" -msgstr "Canviar contrasenya" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:216 -#: classes/widgets/class-wc-widget-login.php:78 -msgid "Logout" -msgstr "Tancar sessió" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:116 -#: templates/myaccount/form-login.php:29 -#: templates/myaccount/form-lost-password.php:24 -#: templates/shop/form-login.php:20 -msgid "Username or email" -msgstr "Nom d'usuari o email" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:118 -#: templates/myaccount/form-login.php:33 templates/myaccount/form-login.php:85 -#: templates/shop/form-login.php:24 -msgid "Password" -msgstr "Contrasenya" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:120 woocommerce-functions.php:945 -msgid "Login →" -msgstr "Iniciar sessió →" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:120 -msgid "Lost password?" -msgstr "Heu perdut la vostra contrasenya?" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:222 -msgid "Logged out title:" -msgstr "Títol de sessió finalitzada:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:225 -msgid "Logged in title:" -msgstr "Títol d'inici de sessió:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-onsale.php:31 -msgid "Display a list of your on-sale products on your site." -msgstr "Mostrar una llista dels productes que estan d'oferta." - -# @ woocommerce -#: classes/widgets/class-wc-widget-onsale.php:33 -msgid "WooCommerce On-sale" -msgstr "Ofertes" - -# @ woocommerce -#: classes/widgets/class-wc-widget-onsale.php:70 -msgid "On Sale" -msgstr "Ofertes" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:33 -msgid "" -"Shows a price filter slider in a widget which lets you narrow down the list " -"of shown products when viewing product categories." -msgstr "" -"Mostra un control que filtra per preu, en un widget, quan s'està consultant " -"les categories de productes." - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:35 -msgid "WooCommerce Price Filter" -msgstr "Filtre de productes" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:136 -msgid "Min price" -msgstr "Preu mínim" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:137 -msgid "Max price" -msgstr "Preu màxim" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:138 -msgid "Filter" -msgstr "Filtre" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:140 -msgid "Price:" -msgstr "Preu:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:162 -msgid "Filter by price" -msgstr "Filtrar per preu" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:33 -msgid "A list or dropdown of product categories." -msgstr "Una llista o desplegable de les categories de productes." - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:35 -msgid "WooCommerce Product Categories" -msgstr "Categories de productes" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:57 -#: woocommerce.php:787 woocommerce.php:789 -msgid "Product Categories" -msgstr "Categories de productes" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:129 -msgid "No product categories exist." -msgstr "No existeixen categories de productes:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:188 -msgid "Order by:" -msgstr "Ordenar per:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:190 -msgid "Category Order" -msgstr "Ordre de categoria" - -# @ woocommerce -#: admin/post-types/product.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:372 -#: admin/post-types/writepanels/writepanel-product_data.php:451 -#: admin/woocommerce-admin-attributes.php:232 -#: admin/woocommerce-admin-attributes.php:268 -#: admin/woocommerce-admin-attributes.php:306 -#: admin/woocommerce-admin-attributes.php:329 -#: admin/woocommerce-admin-attributes.php:373 -#: admin/woocommerce-admin-attributes.php:398 -#: admin/woocommerce-admin-init.php:450 -#: classes/widgets/class-wc-widget-product-categories.php:191 -#: templates/single-product-reviews.php:99 woocommerce-ajax.php:1244 -msgid "Name" -msgstr "Nom" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:195 -msgid "Show as dropdown" -msgstr "Mostrar com a desplegable" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:198 -msgid "Show post counts" -msgstr "Mostrar número d'entrades" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:201 -msgid "Show hierarchy" -msgstr "Mostrar jerarquía" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:204 -msgid "Only show children for the current category" -msgstr "Mostrar només els fills de la categoria en qüestió" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-search.php:31 -msgid "A Search box for products only." -msgstr "Una caixa de cerca només de productes." - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-search.php:33 -msgid "WooCommerce Product Search" -msgstr "Cerca de productes" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-tag-cloud.php:31 -msgid "Your most used product tags in cloud format." -msgstr "Les etiquetes més utilitzades en format de núvol." - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-tag-cloud.php:33 -msgid "WooCommerce Product Tags" -msgstr "Etiquetes de producte" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-tag-cloud.php:58 -#: woocommerce.php:823 woocommerce.php:825 -msgid "Product Tags" -msgstr "Etiquetes de producte" - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:24 -msgid "WooCommerce Random Products" -msgstr "Productes a l'atzar" - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:27 -msgid "Display a list of random products on your site." -msgstr "Mostra una llista de productes a l'atzar." - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:46 -msgid "Random Products" -msgstr "Productes a l'atzar" - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:144 -#: classes/widgets/class-wc-widget-recent-products.php:176 -msgid "Show hidden product variations" -msgstr "Mostrar variacions ocultes del producte" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-products.php:31 -msgid "Display a list of your most recent products on your site." -msgstr "Mostrar una llista dels productes més recents." - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-products.php:33 -msgid "WooCommerce Recent Products" -msgstr "Productes recents" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-products.php:70 -msgid "New Products" -msgstr "Nous productes" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:31 -msgid "Display a list of your most recent reviews on your site." -msgstr "Mostrar una llista amb les últimes opinions." - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:45 -#: classes/widgets/class-wc-widget-recent-reviews.php:33 -msgid "WooCommerce Recent Reviews" -msgstr "Opinions recents" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:71 -msgid "Recent Reviews" -msgstr "Opinions recents" - -# @ woocommerce -#: templates/single-product/review.php:26 -#, php-format -msgid "Rated %d out of 5" -msgstr "Puntuat amb %d de 5" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:97 -#, php-format -msgctxt "by comment author" -msgid "by %1$s" -msgstr "per %1$s" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recently-viewed.php:31 -msgid "Display a list of recently viewed products." -msgstr "Mostrar una llista de productes vistos recentment." - -# @ woocommerce -#: classes/widgets/class-wc-widget-recently-viewed.php:33 -msgid "WooCommerce Recently Viewed Products" -msgstr "Productes vistos recentment " - -# @ woocommerce -#: classes/widgets/class-wc-widget-recently-viewed.php:76 -msgid "Recently viewed" -msgstr "Vistos recentment" - -# @ woocommerce -#: classes/widgets/class-wc-widget-top-rated-products.php:33 -msgid "Display a list of top rated products on your site." -msgstr "Mostrar una llista dels productes més ben valorats de la web." - -# @ woocommerce -#: classes/widgets/class-wc-widget-top-rated-products.php:35 -msgid "WooCommerce Top Rated Products" -msgstr "Els més ben valorats" - -# @ woocommerce -#: classes/widgets/class-wc-widget-top-rated-products.php:72 -msgid "Top Rated Products" -msgstr "Els més ben valorats" - -# @ woocommerce -#: i18n/states/AU.php:13 -msgid "Australian Capital Territory" -msgstr "" - -# @ woocommerce -#: i18n/states/AU.php:14 -msgid "New South Wales" -msgstr "" - -# @ woocommerce -#: i18n/states/AU.php:15 -msgid "Northern Territory" -msgstr "" - -# @ woocommerce -#: i18n/states/AU.php:16 -msgid "Queensland" -msgstr "" - -# @ woocommerce -#: i18n/states/AU.php:17 -msgid "South Australia" -msgstr "" - -# @ woocommerce -#: i18n/states/AU.php:18 -msgid "Tasmania" -msgstr "Tasmania" - -# @ woocommerce -#: i18n/states/AU.php:19 -msgid "Victoria" -msgstr "Victoria" - -# @ woocommerce -#: i18n/states/AU.php:20 -msgid "Western Australia" -msgstr "Western Australia" - -# @ woocommerce -#: i18n/states/BR.php:13 -msgid "Acre" -msgstr "Acre" - -# @ woocommerce -#: i18n/states/BR.php:14 -msgid "Alagoas" -msgstr "Alagoas" - -# @ woocommerce -#: i18n/states/BR.php:15 -msgid "Amapá" -msgstr "Amapá" - -# @ woocommerce -#: i18n/states/BR.php:16 -msgid "Amazonas" -msgstr "Amazonas" - -# @ woocommerce -#: i18n/states/BR.php:17 -msgid "Bahia" -msgstr "Bahia" - -# @ woocommerce -#: i18n/states/BR.php:18 -msgid "Ceará" -msgstr "Ceará" - -# @ woocommerce -#: i18n/states/BR.php:19 -msgid "Distrito Federal" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:20 -msgid "Espírito Santo" -msgstr "Espírito Santo" - -# @ woocommerce -#: i18n/states/BR.php:21 -msgid "Goiás" -msgstr "Goiás" - -# @ woocommerce -#: i18n/states/BR.php:22 -msgid "Maranhão" -msgstr "Maranhão" - -# @ woocommerce -#: i18n/states/BR.php:23 -msgid "Mato Grosso" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:24 -msgid "Mato Grosso do Sul" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:25 -msgid "Minas Gerais" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:26 -msgid "Pará" -msgstr "Pará" - -# @ woocommerce -#: i18n/states/BR.php:27 -msgid "Paraíba" -msgstr "Paraíba" - -# @ woocommerce -#: i18n/states/BR.php:28 -msgid "Paraná" -msgstr "Paraná" - -# @ woocommerce -#: i18n/states/BR.php:29 -msgid "Pernambuco" -msgstr "Pernambuco" - -# @ woocommerce -#: i18n/states/BR.php:30 -msgid "Piauí" -msgstr "Piauí" - -# @ woocommerce -#: i18n/states/BR.php:31 -msgid "Rio de Janeiro" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:32 -msgid "Rio Grande do Norte" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:33 -msgid "Rio Grande do Sul" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:34 -msgid "Rondônia" -msgstr "Rondônia" - -# @ woocommerce -#: i18n/states/BR.php:35 -msgid "Roraima" -msgstr "Roraima" - -# @ woocommerce -#: i18n/states/BR.php:36 -msgid "Santa Catarina" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:37 -msgid "São Paulo" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:38 -msgid "Sergipe" -msgstr "Sergipe" - -# @ woocommerce -#: i18n/states/BR.php:39 -msgid "Tocantins" -msgstr "Tocantins" - -# @ woocommerce -#: i18n/states/CA.php:13 -msgid "Alberta" -msgstr "Alberta" - -# @ woocommerce -#: i18n/states/CA.php:14 -msgid "British Columbia" -msgstr "British Columbia" - -# @ woocommerce -#: i18n/states/CA.php:15 -msgid "Manitoba" -msgstr "Manitoba" - -# @ woocommerce -#: i18n/states/CA.php:16 -msgid "New Brunswick" -msgstr "New Brunswick" - -# @ woocommerce -#: i18n/states/CA.php:17 -msgid "Newfoundland" -msgstr "Newfoundland" - -# @ woocommerce -#: i18n/states/CA.php:18 -msgid "Northwest Territories" -msgstr "Northwest Territories" - -# @ woocommerce -#: i18n/states/CA.php:19 -msgid "Nova Scotia" -msgstr "Nova Scotia" - -# @ woocommerce -#: i18n/states/CA.php:20 -msgid "Nunavut" -msgstr "Nunavut" - -# @ woocommerce -#: i18n/states/CA.php:21 -msgid "Ontario" -msgstr "Ontario" - -# @ woocommerce -#: i18n/states/CA.php:22 -msgid "Prince Edward Island" -msgstr "Prince Edward Island" - -# @ woocommerce -#: i18n/states/CA.php:23 -msgid "Quebec" -msgstr "Quebec" - -# @ woocommerce -#: i18n/states/CA.php:24 -msgid "Saskatchewan" -msgstr "Saskatchewan" - -# @ woocommerce -#: i18n/states/CA.php:25 -msgid "Yukon Territory" -msgstr "Yukon Territory" - -# @ woocommerce -#: i18n/states/CN.php:13 -msgid "Yunnan / 云南" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:14 -msgid "Beijing / 北京" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:15 -msgid "Tianjin / 天津" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:16 -msgid "Hebei / 河北" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:17 -msgid "Shanxi / 山西" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:18 -msgid "Inner Mongolia / 內蒙古" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:19 -msgid "Liaoning / 辽宁" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:20 -msgid "Jilin / 吉林" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:21 -msgid "Heilongjiang / 黑龙江" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:22 -msgid "Shanghai / 上海" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:23 -msgid "Jiangsu / 江苏" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:24 -msgid "Zhejiang / 浙江" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:25 -msgid "Anhui / 安徽" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:26 -msgid "Fujian / 福建" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:27 -msgid "Jiangxi / 江西" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:28 -msgid "Shandong / 山东" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:29 -msgid "Henan / 河南" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:30 -msgid "Hubei / 湖北" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:31 -msgid "Hunan / 湖南" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:32 -msgid "Guangdong / 广东" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:33 -msgid "Guangxi Zhuang / 广西壮族" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:34 -msgid "Hainan / 海南" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:35 -msgid "Chongqing / 重庆" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:36 -msgid "Sichuan / 四川" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:37 -msgid "Guizhou / 贵州" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:38 -msgid "Shaanxi / 陕西" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:39 -msgid "Gansu / 甘肃" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:40 -msgid "Qinghai / 青海" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:41 -msgid "Ningxia Hui / 宁夏" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:42 -msgid "Macau / 澳门" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:43 -msgid "Tibet / 西藏" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:44 -msgid "Xinjiang / 新疆" -msgstr "" - -# @ woocommerce -#: i18n/states/HK.php:13 -msgid "Hong Kong Island" -msgstr "Hong Kong Island" - -# @ woocommerce -#: i18n/states/HK.php:14 -msgid "Kowloon" -msgstr "Kowloon" - -# @ woocommerce -#: i18n/states/HK.php:15 -msgid "New Territories" -msgstr "Nuevos territorios" - -# @ woocommerce -#: i18n/states/HZ.php:13 -msgid "Auckland" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:14 -msgid "Bay of Plenty" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:15 -msgid "Canterbury" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:16 -msgid "Hawke’s Bay" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:17 -msgid "Manawatu-Wanganui" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:18 -msgid "Marlborough" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:19 -msgid "Nelson" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:20 -msgid "Northland" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:21 -msgid "Otago" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:22 -msgid "Southland" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:23 -msgid "Taranaki" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:24 -msgid "Tasman" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:25 -msgid "Waikato" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:26 -msgid "Wellington" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:27 -msgid "West Coast" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:13 -msgid "Andra Pradesh" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:14 -msgid "Arunachal Pradesh" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:15 -msgid "Assam" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:16 -msgid "Bihar" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:17 -msgid "Chhattisgarh" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:18 -msgid "Goa" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:19 -msgid "Gujarat" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:20 -msgid "Haryana" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:21 -msgid "Himachal Pradesh" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:22 -msgid "Jammu and Kashmir" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:23 -msgid "Jharkhand" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:24 -msgid "Karnataka" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:25 -msgid "Kerala" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:26 -msgid "Madhya Pradesh" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:27 -msgid "Maharashtra" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:28 -msgid "Manipur" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:29 -msgid "Meghalaya" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:30 -msgid "Mizoram" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:31 -msgid "Nagaland" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:32 -msgid "Orissa" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:33 -msgid "Punjab" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:34 -msgid "Rajasthan" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:35 -msgid "Sikkim" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:36 -msgid "Tamil Nadu" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:37 -msgid "Tripura" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:38 -msgid "Uttaranchal" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:39 -msgid "Uttar Pradesh" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:40 -msgid "West Bengal" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:41 -msgid "Andaman and Nicobar Islands" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:42 -msgid "Chandigarh" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:43 -msgid "Dadar and Nagar Haveli" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:44 -msgid "Daman and Diu" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:45 -msgid "Delhi" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:46 -msgid "Lakshadeep" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:47 -msgid "Pondicherry (Puducherry)" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:13 -msgid "Johor" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:14 -msgid "Kedah" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:15 -msgid "Kelantan" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:16 -msgid "Melaka" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:17 -msgid "Negeri Sembilan" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:18 -msgid "Pahang" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:19 -msgid "Perak" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:20 -msgid "Perlis" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:21 -msgid "Pulau Pinang" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:22 -msgid "Sabah" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:23 -msgid "Sarawak" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:24 -msgid "Selangor" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:25 -msgid "Terengganu" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:26 -msgid "W.P. Kuala Lumpur" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:27 -msgid "W.P. Labuan" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:28 -msgid "W.P. Putrajaya" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:13 -msgid "" -"Amnat Charoen (อำนาจเจร" -"ิญ)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:14 -msgid "Ang Thong (อ่างทอง)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:15 -msgid "" -"Ayutthaya (พระนครศรี" -"อยุธยา)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:16 -msgid "" -"Bangkok (กรุงเทพมห" -"านคร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:17 -msgid "Bueng Kan (บึงกาฬ)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:18 -msgid "" -"Buri Ram (บุรีรัมย์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:19 -msgid "" -"Chachoengsao (ฉะเชิงเทร" -"า)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:20 -msgid "Chai Nat (ชัยนาท)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:21 -msgid "Chaiyaphum (ชัยภูมิ)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:22 -msgid "Chanthaburi (จันทบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:23 -msgid "" -"Chiang Mai (เชียงใหม่)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:24 -msgid "Chiang Rai (เชียงราย)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:25 -msgid "Chonburi (ชลบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:26 -msgid "Chumphon (ชุมพร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:27 -msgid "" -"Kalasin (กาฬสินธุ์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:28 -msgid "" -"Kamphaeng Phet (กำแพงเพช" -"ร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:29 -msgid "" -"Kanchanaburi (กาญจนบุร" -"ี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:30 -msgid "Khon Kaen (ขอนแก่น)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:31 -msgid "Krabi (กระบี่)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:32 -msgid "Lampang (ลำปาง)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:33 -msgid "Lamphun (ลำพูน)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:34 -msgid "Loei (เลย)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:35 -msgid "Lopburi (ลพบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:36 -msgid "" -"Mae Hong Son (แม่ฮ่องสอ" -"น)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:37 -msgid "" -"Maha Sarakham (มหาสารคา" -"ม)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:38 -msgid "Mukdahan (มุกดาหาร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:39 -msgid "Nakhon Nayok (นครนายก)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:40 -msgid "Nakhon Pathom (นครปฐม)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:41 -msgid "Nakhon Phanom (นครพนม)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:42 -msgid "" -"Nakhon Ratchasima (นครราชสี" -"มา)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:43 -msgid "" -"Nakhon Sawan (นครสวรรค" -"์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:44 -msgid "" -"Nakhon Si Thammarat (นครศรีธร" -"รมราช)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:45 -msgid "Nan (น่าน)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:46 -msgid "Narathiwat (นราธิวาส)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:47 -msgid "" -"Nong Bua Lam Phu (หนองบัวล" -"ำภู)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:48 -msgid "Nong Khai (หนองคาย)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:49 -msgid "Nonthaburi (นนทบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:50 -msgid "Pathum Thani (ปทุมธานี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:51 -msgid "Pattani (ปัตตานี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:52 -msgid "Phang Nga (พังงา)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:53 -msgid "Phatthalung (พัทลุง)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:54 -msgid "Phayao (พะเยา)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:55 -msgid "" -"Phetchabun (เพชรบูรณ์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:56 -msgid "Phetchaburi (เพชรบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:57 -msgid "Phichit (พิจิตร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:58 -msgid "Phitsanulok (พิษณุโลก)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:59 -msgid "Phrae (แพร่)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:60 -msgid "Phuket (ภูเก็ต)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:61 -msgid "" -"Prachin Buri (ปราจีนบุร" -"ี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:62 -msgid "" -"Prachuap Khiri Khan (ประจวบคี" -"รีขันธ์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:63 -msgid "Ranong (ระนอง)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:64 -msgid "Ratchaburi (ราชบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:65 -msgid "Rayong (ระยอง)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:66 -msgid "Roi Et (ร้อยเอ็ด)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:67 -msgid "Sa Kaeo (สระแก้ว)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:68 -msgid "Sakon Nakhon (สกลนคร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:69 -msgid "" -"Samut Prakan (สมุทรปราก" -"าร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:70 -msgid "" -"Samut Sakhon (สมุทรสาค" -"ร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:71 -msgid "" -"Samut Songkhram (สมุทรสงค" -"ราม)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:72 -msgid "Saraburi (สระบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:73 -msgid "Satun (สตูล)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:74 -msgid "" -"Sing Buri (สิงห์บุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:75 -msgid "Sisaket (ศรีสะเกษ)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:76 -msgid "Songkhla (สงขลา)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:77 -msgid "Sukhothai (สุโขทัย)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:78 -msgid "" -"Suphan Buri (สุพรรณบุร" -"ี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:79 -msgid "" -"Surat Thani (สุราษฎร์ธ" -"านี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:80 -msgid "Surin (สุรินทร์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:81 -msgid "Tak (ตาก)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:82 -msgid "Trang (ตรัง)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:83 -msgid "Trat (ตราด)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:84 -msgid "" -"Ubon Ratchathani (อุบลราชธ" -"านี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:85 -msgid "Udon Thani (อุดรธานี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:86 -msgid "" -"Uthai Thani (อุทัยธานี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:87 -msgid "" -"Uttaradit (อุตรดิตถ์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:88 -msgid "Yala (ยะลา)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:89 -msgid "Yasothon (ยโสธร)" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:13 -msgid "Alabama" -msgstr "Alabama" - -# @ woocommerce -#: i18n/states/US.php:14 -msgid "Alaska" -msgstr "Alaska" - -# @ woocommerce -#: i18n/states/US.php:15 -msgid "Arizona" -msgstr "Arizona" - -# @ woocommerce -#: i18n/states/US.php:16 -msgid "Arkansas" -msgstr "Arkansas" - -# @ woocommerce -#: i18n/states/US.php:17 -msgid "California" -msgstr "California" - -# @ woocommerce -#: i18n/states/US.php:18 -msgid "Colorado" -msgstr "Colorado" - -# @ woocommerce -#: i18n/states/US.php:19 -msgid "Connecticut" -msgstr "Connecticut" - -# @ woocommerce -#: i18n/states/US.php:20 -msgid "Delaware" -msgstr "Delaware" - -# @ woocommerce -#: i18n/states/US.php:21 -msgid "District Of Columbia" -msgstr "District Of Columbia" - -# @ woocommerce -#: i18n/states/US.php:22 -msgid "Florida" -msgstr "Florida" - -# @ woocommerce -#: i18n/states/US.php:24 -msgid "Hawaii" -msgstr "Hawaii" - -# @ woocommerce -#: i18n/states/US.php:25 -msgid "Idaho" -msgstr "Idaho" - -# @ woocommerce -#: i18n/states/US.php:26 -msgid "Illinois" -msgstr "Illinois" - -# @ woocommerce -#: i18n/states/US.php:27 -msgid "Indiana" -msgstr "Indiana" - -# @ woocommerce -#: i18n/states/US.php:28 -msgid "Iowa" -msgstr "Iowa" - -# @ woocommerce -#: i18n/states/US.php:29 -msgid "Kansas" -msgstr "Kansas" - -# @ woocommerce -#: i18n/states/US.php:30 -msgid "Kentucky" -msgstr "Kentucky" - -# @ woocommerce -#: i18n/states/US.php:31 -msgid "Louisiana" -msgstr "Louisiana" - -# @ woocommerce -#: i18n/states/US.php:32 -msgid "Maine" -msgstr "Maine" - -# @ woocommerce -#: i18n/states/US.php:33 -msgid "Maryland" -msgstr "Maryland" - -# @ woocommerce -#: i18n/states/US.php:34 -msgid "Massachusetts" -msgstr "Massachusetts" - -# @ woocommerce -#: i18n/states/US.php:35 -msgid "Michigan" -msgstr "Michigan" - -# @ woocommerce -#: i18n/states/US.php:36 -msgid "Minnesota" -msgstr "Minnesota" - -# @ woocommerce -#: i18n/states/US.php:37 -msgid "Mississippi" -msgstr "Mississippi" - -# @ woocommerce -#: i18n/states/US.php:38 -msgid "Missouri" -msgstr "Missouri" - -# @ woocommerce -#: i18n/states/US.php:39 -msgid "Montana" -msgstr "Montana" - -# @ woocommerce -#: i18n/states/US.php:40 -msgid "Nebraska" -msgstr "Nebraska" - -# @ woocommerce -#: i18n/states/US.php:41 -msgid "Nevada" -msgstr "Nevada" - -# @ woocommerce -#: i18n/states/US.php:42 -msgid "New Hampshire" -msgstr "New Hampshire" - -# @ woocommerce -#: i18n/states/US.php:43 -msgid "New Jersey" -msgstr "New Jersey" - -# @ woocommerce -#: i18n/states/US.php:44 -msgid "New Mexico" -msgstr "New Mexico" - -# @ woocommerce -#: i18n/states/US.php:45 -msgid "New York" -msgstr "New York" - -# @ woocommerce -#: i18n/states/US.php:46 -msgid "North Carolina" -msgstr "North Carolina" - -# @ woocommerce -#: i18n/states/US.php:47 -msgid "North Dakota" -msgstr "North Dakota" - -# @ woocommerce -#: i18n/states/US.php:48 -msgid "Ohio" -msgstr "Ohio" - -# @ woocommerce -#: i18n/states/US.php:49 -msgid "Oklahoma" -msgstr "Oklahoma" - -# @ woocommerce -#: i18n/states/US.php:50 -msgid "Oregon" -msgstr "Oregon" - -# @ woocommerce -#: i18n/states/US.php:51 -msgid "Pennsylvania" -msgstr "Pennsylvania" - -# @ woocommerce -#: i18n/states/US.php:52 -msgid "Rhode Island" -msgstr "Rhode Island" - -# @ woocommerce -#: i18n/states/US.php:53 -msgid "South Carolina" -msgstr "South Carolina" - -# @ woocommerce -#: i18n/states/US.php:54 -msgid "South Dakota" -msgstr "South Dakota" - -# @ woocommerce -#: i18n/states/US.php:55 -msgid "Tennessee" -msgstr "Tennessee" - -# @ woocommerce -#: i18n/states/US.php:56 -msgid "Texas" -msgstr "Texas" - -# @ woocommerce -#: i18n/states/US.php:57 -msgid "Utah" -msgstr "Utah" - -# @ woocommerce -#: i18n/states/US.php:58 -msgid "Vermont" -msgstr "Vermont" - -# @ woocommerce -#: i18n/states/US.php:59 -msgid "Virginia" -msgstr "Virginia" - -# @ woocommerce -#: i18n/states/US.php:60 -msgid "Washington" -msgstr "Washington" - -# @ woocommerce -#: i18n/states/US.php:61 -msgid "West Virginia" -msgstr "West Virginia" - -# @ woocommerce -#: i18n/states/US.php:62 -msgid "Wisconsin" -msgstr "Wisconsin" - -# @ woocommerce -#: i18n/states/US.php:63 -msgid "Wyoming" -msgstr "Wyoming" - -# @ woocommerce -#: i18n/states/US.php:64 -msgid "Armed Forces (AA)" -msgstr "Forces Armades (USA)" - -# @ woocommerce -#: i18n/states/US.php:65 -msgid "Armed Forces (AE)" -msgstr "Forces Armades (AE)" - -# @ woocommerce -#: i18n/states/US.php:66 -msgid "Armed Forces (AP)" -msgstr "Forces Armades (AP)" - -# @ woocommerce -#: i18n/states/ZA.php:13 -msgid "Eastern Cape" -msgstr "" - -# @ woocommerce -#: i18n/states/ZA.php:14 -msgid "Free State" -msgstr "" - -# @ woocommerce -#: i18n/states/ZA.php:15 -msgid "Gauteng" -msgstr "" - -# @ woocommerce -#: i18n/states/ZA.php:16 -msgid "KwaZulu-Natal" -msgstr "" - -# @ woocommerce -#: i18n/states/ZA.php:17 -msgid "Limpopo" -msgstr "" - -# @ woocommerce -#: i18n/states/ZA.php:18 -msgid "Mpumalanga" -msgstr "" - -# @ woocommerce -#: i18n/states/ZA.php:19 -msgid "Northern Cape" -msgstr "" - -# @ woocommerce -#: i18n/states/ZA.php:20 -msgid "North West" -msgstr "" - -# @ woocommerce -#: i18n/states/ZA.php:21 -msgid "Western Cape" -msgstr "" - -# @ woocommerce -#: i18n/strings.php:16 -msgid "pending" -msgstr "pendent" - -# @ woocommerce -#: i18n/strings.php:17 -msgid "failed" -msgstr "ha fallat" - -# @ woocommerce -#: i18n/strings.php:18 -msgid "on-hold" -msgstr "en espera" - -# @ woocommerce -#: i18n/strings.php:19 -msgid "processing" -msgstr "processant" - -# @ woocommerce -#: i18n/strings.php:20 -msgid "completed" -msgstr "completat" - -# @ woocommerce -#: i18n/strings.php:21 -msgid "refunded" -msgstr "retornat" - -# @ woocommerce -#: i18n/strings.php:22 -msgid "cancelled" -msgstr "cancel·lat" - -# @ woocommerce -#: templates/loop/no-products-found.php:14 templates/loop-shop.php:40 -msgid "No products found which match your selection." -msgstr "No s'han trobat productes amb aquests crieteris." - -# @ woocommerce -#: admin/post-types/product.php:96 admin/post-types/product.php:568 -#: admin/post-types/product.php:787 admin/woocommerce-admin-functions.php:196 -#: templates/cart/cart.php:29 templates/emails/admin-new-order.php:24 -#: templates/emails/customer-completed-order.php:25 -#: templates/emails/customer-invoice.php:29 -#: templates/emails/customer-note.php:29 -#: templates/emails/customer-processing-order.php:25 -msgid "Price" -msgstr "Preu" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:195 templates/cart/cart.php:30 -#: templates/emails/admin-new-order.php:23 -#: templates/emails/customer-completed-order.php:24 -#: templates/emails/customer-invoice.php:28 -#: templates/emails/customer-note.php:28 -#: templates/emails/customer-processing-order.php:24 -msgid "Quantity" -msgstr "Quantitat" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:43 -#: admin/post-types/writepanels/order-item-html.php:110 -#: admin/woocommerce-admin-reports.php:1546 -#: admin/woocommerce-admin-reports.php:1599 -#: admin/woocommerce-admin-reports.php:2370 -#: admin/woocommerce-admin-reports.php:2539 -#: admin/woocommerce-admin-reports.php:2617 templates/cart/cart.php:31 -#: templates/checkout/review-order.php:22 templates/myaccount/my-orders.php:35 -#: templates/order/order-details.php:21 -msgid "Total" -msgstr "Total" - -# @ woocommerce -#: templates/cart/cart.php:47 -msgid "Remove this item" -msgstr "Treure l'article" - -# @ woocommerce -#: templates/cart/cart.php:100 -#: templates/single-product/add-to-cart/quantity.php:13 -msgctxt "Product quantity input tooltip" -msgid "Qty" -msgstr "Quant." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1531 templates/cart/cart.php:127 -#: woocommerce.php:1062 -msgid "Coupon" -msgstr "Cupó" - -# @ woocommerce -#: templates/cart/cart.php:127 templates/checkout/form-coupon.php:29 -msgid "Apply Coupon" -msgstr "Aplicar cupó" - -# @ woocommerce -#: templates/cart/cart.php:134 -msgid "Update Cart" -msgstr "Actualitzar carret" - -# @ woocommerce -#: templates/cart/cart.php:134 -msgid "Proceed to Checkout →" -msgstr "Finalitzar la compra →" - -# @ woocommerce -#: templates/cart/cross-sells.php:40 -msgid "You may be interested in…" -msgstr "Potser esteu interessats en això…" - -# @ woocommerce -#: templates/cart/cart-empty.php:14 -msgid "Your cart is currently empty." -msgstr "El carret està buit." - -# @ woocommerce -#: templates/cart/cart-empty.php:18 -msgid "← Return To Shop" -msgstr "← Tornar a la botiga" - -# @ woocommerce -#: templates/cart/mini-cart.php:55 -msgid "No products in the cart." -msgstr "No hi ha productes al carret." - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:112 -#: templates/cart/mini-cart.php:63 templates/cart/totals.php:92 -#: templates/checkout/review-order.php:93 -msgid "Subtotal" -msgstr "Subtotal" - -# @ woocommerce -#: templates/cart/mini-cart.php:69 -msgid "Checkout →" -msgstr "Finalitzar compra →" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:20 -msgid "Calculate Shipping" -msgstr "Calcular enviament" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:175 -#: admin/post-types/writepanels/writepanel-order_data.php:265 -#: templates/cart/shipping-calculator.php:24 woocommerce-template.php:1327 -msgid "Select a country…" -msgstr "Selecciona un país…" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:50 woocommerce-template.php:1377 -msgid "Select a state…" -msgstr "Selecciona un estat/província…" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:42 -#: templates/cart/shipping-calculator.php:50 -#: templates/cart/shipping-calculator.php:61 -msgid "State / county" -msgstr "Estat / Província" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:71 -msgid "Update Totals" -msgstr "Actualitzar totals" - -# @ woocommerce -#: templates/cart/shipping-methods.php:32 -msgid "Free" -msgstr "Gratuït" - -# @ woocommerce -#: templates/cart/shipping-methods.php:67 -msgid "Please fill in your details to see available shipping methods." -msgstr "" -"Sisplau, ompliu amb les vostres dades per veure quins mètodes d'enviament " -"estan disponibles." - -# @ woocommerce -#: templates/cart/shipping-methods.php:69 -msgid "" -"Sorry, it seems that there are no available shipping methods for your state. " -"Please contact us if you require assistance or wish to make alternate " -"arrangements." -msgstr "" -"Ho sentim, sembla ser que no hi ha mètodes d'enviament disponibles per a la " -"vostra ubicació. Sisplau, poseu-vos en contacte amb nosaltres si necessiteu " -"ajuda o voleu una alternativa." - -# @ woocommerce -#: templates/cart/totals.php:22 -msgid "Cart Totals" -msgstr "Total del carret" - -# @ woocommerce -#: templates/cart/totals.php:28 templates/checkout/review-order.php:27 -msgid "Cart Subtotal" -msgstr "Subtotal del carret" - -# @ woocommerce -#: templates/cart/totals.php:35 templates/checkout/review-order.php:34 -#: woocommerce.php:1655 -msgid "Cart Discount" -msgstr "Descuento del carret" - -# @ woocommerce -#: templates/cart/totals.php:35 templates/cart/totals.php:120 -msgid "[Remove]" -msgstr "[Eliminar]" - -# @ woocommerce -#: admin/post-types/shop_order.php:46 -#: admin/post-types/writepanels/writepanel-order_data.php:536 -#: admin/post-types/writepanels/writepanel-product_data.php:81 -#: admin/settings/settings-tax-rates.php:52 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-content.php:49 -#: admin/woocommerce-admin-settings.php:185 templates/cart/totals.php:46 -#: templates/checkout/review-order.php:45 -msgid "Shipping" -msgstr "Enviament" - -# @ woocommerce -#: templates/cart/totals.php:120 templates/checkout/review-order.php:124 -msgid "Order Discount" -msgstr "Descompte de comanda" - -# @ woocommerce -#: admin/post-types/shop_order.php:47 templates/cart/totals.php:129 -#: templates/checkout/review-order.php:133 -msgid "Order Total" -msgstr "Total de comanda" - -# @ woocommerce -#: templates/cart/totals.php:161 -#, php-format -msgid " (taxes estimated for %s)" -msgstr "(impostos estimats per %s)" - -# @ woocommerce -#: templates/cart/totals.php:163 -#, php-format -msgid "" -"Note: Shipping and taxes are estimated%s and will be updated during checkout " -"based on your billing and shipping information." -msgstr "" -"Nota: els costos d'enviament i els impostos són estimats%s i s'actualitzaran " -"en el procés de pagament, en base a les vostres dades de facturació i " -"enviament." - -# @ woocommerce -#: templates/cart/totals.php:175 -msgid "" -"No shipping methods were found; please recalculate your shipping and enter " -"your state/county and zip/postcode to ensure there are no other available " -"methods for your location." -msgstr "" -"No s'ha trobat cap mètode d'enviament; sisplau, torneu-lo a calcular i " -"entreu el vostre país, estat o província i codi postal per assegurar-vos que " -"no hi ha altres mètodes d'enviament disponibles." - -# @ woocommerce -#: templates/cart/totals.php:183 -#, php-format -msgid "" -"Sorry, it seems that there are no available shipping methods for your " -"location (%s)." -msgstr "" -"Ho sentim, sembla ser que no hi ha mètodes d'enviament disponibles per a la " -"vostra ubicació (%s)." - -# @ woocommerce -#: templates/cart/totals.php:185 -msgid "" -"If you require assistance or wish to make alternate arrangements please " -"contact us." -msgstr "" -"Si necessiteu assistència o voleu fer algun arranjament alternatiu, sisplau, " -"contacteu-nos." - -# @ woocommerce -#: templates/checkout/cart-errors.php:16 -msgid "" -"There are some issues with the items in your cart (shown above). Please go " -"back to the cart page and resolve these issues before checking out." -msgstr "" -"Hi ha alguns inconvenients amb els articles del vostre carret (es mostren a " -"dalt). Sisplau, comproveu-ho bé abans de finalitzar la compra." - -# @ woocommerce -#: templates/checkout/cart-errors.php:20 -msgid "← Return To Cart" -msgstr "← Tornar al carret" - -# @ woocommerce -#: templates/checkout/form-billing.php:17 -msgid "Billing & Shipping" -msgstr "Facturació & Enviaments" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:26 templates/checkout/form-billing.php:21 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:19 templates/myaccount/my-address.php:25 -#: templates/order/order-details.php:106 -msgid "Billing Address" -msgstr "Adreça de facturació" - -# @ woocommerce -#: templates/checkout/form-billing.php:42 -msgid "Create an account?" -msgstr "Crear un compte?" - -# @ woocommerce -#: templates/checkout/form-billing.php:51 -msgid "" -"Create an account by entering the information below. If you are a returning " -"customer please login at the top of the page." -msgstr "" -"Crear un compte introduïnt la informació a sota. Si ja sou clients, sisplau, " -"introduïu el vostre usuari i contrasenya." - -# @ woocommerce -#: templates/checkout/form-checkout.php:20 -msgid "You must be logged in to checkout." -msgstr "Heu d'iniciar sessió per poder finalitzar la comanda." - -# @ woocommerce -#: templates/checkout/form-checkout.php:51 -msgid "Your order" -msgstr "La vostra comanda" - -# @ woocommerce -#: templates/checkout/form-coupon.php:17 -msgid "Have a coupon?" -msgstr "Teniu un cupó?" - -# @ woocommerce -#: templates/checkout/form-coupon.php:20 -msgid "Click here to enter your code" -msgstr "Clic aquí per posar el codi" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:100 -#: templates/checkout/form-coupon.php:25 -msgid "Coupon code" -msgstr "Codi de cupó" - -# @ woocommerce -#: templates/checkout/form-login.php:17 -msgid "Click here to login" -msgstr "Feu clic aquí per iniciar sessió" - -# @ woocommerce -#: templates/checkout/form-login.php:22 -msgid "" -"If you have shopped with us before, please enter your details in the boxes " -"below. If you are a new customer please proceed to the Billing & " -"Shipping section." -msgstr "" -"Si ja sou clients nostres, sisplau, introduïu el vostre usuari i contrasenya " -"a continuació. Si és la primera vegada que compreu aquí, ompliu els camps " -"corresponents a l'adreça de facturació i d'enviament." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:347 -#: templates/checkout/form-pay.php:20 -msgid "Qty" -msgstr "Quant." - -# @ woocommerce -#: templates/checkout/form-pay.php:21 -msgid "Totals" -msgstr "Totals" - -# @ woocommerce -#: templates/checkout/form-pay.php:78 -msgid "" -"Sorry, it seems that there are no available payment methods for your " -"location. Please contact us if you require assistance or wish to make " -"alternate arrangements." -msgstr "" -"Ho sentim, sembla ser que no hi ha cap sistema de pagament disponible per a " -"la vostra localitat. Sisplau, poseu-vos en contacte amb nosaltres si " -"necessiteu ajuda o bé si voleu alguna alternativa." - -# @ woocommerce -#: templates/checkout/form-pay.php:87 -msgid "Pay for order" -msgstr "Pagar per comanda" - -# @ woocommerce -#: templates/checkout/form-shipping.php:32 -msgid "Ship to billing address?" -msgstr "Enviar a l'adreça de facturació?" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:27 -#: templates/checkout/form-shipping.php:35 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:20 templates/order/order-details.php:121 -msgid "Shipping Address" -msgstr "Adreça d'enviament" - -# @ woocommerce -#: templates/checkout/form-shipping.php:59 -#: templates/single-product/tabs/additional-information.php:14 -#: woocommerce-template.php:756 -msgid "Additional Information" -msgstr "Informació addicional" - -# @ woocommerce -#: templates/checkout/review-order.php:217 -msgid "Please fill in your details above to see available payment methods." -msgstr "" -"Sisplau, introduïu les vostres dades per veure els mètodes de pagament " -"disponibles." - -# @ woocommerce -#: templates/checkout/review-order.php:219 -msgid "" -"Sorry, it seems that there are no available payment methods for your state. " -"Please contact us if you require assistance or wish to make alternate " -"arrangements." -msgstr "" -"Ho sentim, sembla ser que no hi ha mètodes disponibles de pagament per a la " -"vostra ubicació. Sisplau, poseu-vos en contacte amb nosaltres si necessiteu " -"ajuda o bé si voleu una alternativa." - -# @ woocommerce -#: templates/checkout/review-order.php:228 -msgid "" -"Since your browser does not support JavaScript, or it is disabled, please " -"ensure you click the Update Totals button before placing your " -"order. You may be charged more than the amount stated above if you fail to " -"do so." -msgstr "" -"Com que el vostre navegador no suporta JavaScript, o el té deshabilitat, " -"sisplau, assegureu-vos de fer clic a Actualitzar totals abans de " -"fer la vostra comanda. Si no ho feu, pot ser que se us cobri més del compte." - -# @ woocommerce -#: templates/checkout/review-order.php:228 -msgid "Update totals" -msgstr "Actualitzar totals" - -# @ woocommerce -#: templates/checkout/review-order.php:234 -msgid "Place order" -msgstr "Realitzar comanda" - -# @ woocommerce -#: templates/checkout/review-order.php:238 -msgid "I have read and accept the" -msgstr "He llegit i accepto les " - -# @ woocommerce -#: templates/checkout/review-order.php:238 -msgid "terms & conditions" -msgstr "condicions generals" - -# @ woocommerce -#: templates/checkout/thankyou.php:18 -msgid "" -"Unfortunately your order cannot be processed as the originating bank/" -"merchant has declined your transaction." -msgstr "" -"Desafortunadament, la vostra comanda no pot ser processada, ja que el banc " -"ha declinat la transacció." - -# @ woocommerce -#: templates/checkout/thankyou.php:22 -msgid "Please attempt your purchase again or go to your account page." -msgstr "" -"Sisplau, torneu a provar la vostra compra o dirigiu-vos a la pàgina " -"corresponent al vostre compte." - -# @ woocommerce -#: templates/checkout/thankyou.php:24 -msgid "Please attempt your purchase again." -msgstr "Sisplau, torneu a provar la vostra compra." - -# @ woocommerce -#: templates/checkout/thankyou.php:36 templates/checkout/thankyou.php:67 -msgid "Thank you. Your order has been received." -msgstr "Gràcies. La vostra comanda ha estat rebuda." - -# @ woocommerce -#: templates/emails/admin-new-order.php:13 -#: templates/emails/plain/admin-new-order.php:13 -#, php-format -msgid "You have received an order from %s. Their order is as follows:" -msgstr "Heu rebut una comanda de %s. La comanda és la següent:" - -# @ woocommerce -#: templates/emails/admin-new-order.php:17 -#, php-format -msgid "Order: %s" -msgstr "Comanda: %s" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:214 -#: templates/emails/admin-new-order.php:50 -#: templates/emails/customer-completed-order.php:51 -#: templates/emails/customer-note.php:55 -#: templates/emails/customer-processing-order.php:51 -#: templates/emails/plain/admin-new-order.php:38 -#: templates/order/order-details.php:88 -msgid "Customer details" -msgstr "Dades del client" - -# @ woocommerce -#: admin/post-types/shop_order.php:101 templates/emails/admin-new-order.php:53 -#: templates/emails/customer-completed-order.php:54 -#: templates/emails/customer-note.php:58 -#: templates/emails/customer-processing-order.php:54 -#: templates/emails/plain/admin-new-order.php:41 -#: templates/emails/plain/customer-completed-order.php:41 -#: templates/emails/plain/customer-note.php:49 -#: templates/emails/plain/customer-processing-order.php:41 -#: templates/order/order-details.php:92 -msgid "Email:" -msgstr "Email:" - -# @ woocommerce -#: admin/post-types/shop_order.php:104 templates/emails/admin-new-order.php:56 -#: templates/emails/customer-completed-order.php:57 -#: templates/emails/customer-note.php:61 -#: templates/emails/customer-processing-order.php:57 -#: templates/emails/plain/admin-new-order.php:44 -#: templates/emails/plain/customer-completed-order.php:44 -#: templates/emails/plain/customer-note.php:52 -#: templates/emails/plain/customer-processing-order.php:44 -msgid "Tel:" -msgstr "Tel:" - -# @ woocommerce -#: templates/emails/customer-completed-order.php:14 -#: templates/emails/plain/customer-completed-order.php:13 -#, php-format -msgid "" -"Hi there. Your recent order on %s has been completed. Your order details are " -"shown below for your reference:" -msgstr "" -"La vostra comanda %s ha estat completada. Aquí en podeu veure els detalls " -"per tenir-ne referència:" - -# @ woocommerce -#: templates/emails/customer-invoice.php:16 -#: templates/emails/plain/customer-invoice.php:14 -#, php-format -msgid "" -"An order has been created for you on %s. To pay for this order please use " -"the following link: %s" -msgstr "" -"S'ha creat una nova comanda a %s. Per pagar-la, seguiu aquest enllaç, " -"sisplau: %s" - -# @ woocommerce -#: templates/emails/customer-invoice.php:16 -msgid "pay" -msgstr "pagar" - -# @ woocommerce -#: templates/emails/customer-new-account.php:14 -#: templates/emails/plain/customer-new-account.php:13 -#, php-format -msgid "" -"Thanks for creating an account on %s. Your username is %s." -msgstr "" -"Gràcies per crear un compte a %s. El vostre usuari és %s." - -# @ woocommerce -#: templates/emails/customer-new-account.php:16 -#: templates/emails/plain/customer-new-account.php:15 -#, php-format -msgid "You can access your account area here: %s." -msgstr "Podeu accedir al vostre compte aquí: %s." - -# @ woocommerce -#: templates/emails/customer-note.php:14 -#: templates/emails/plain/customer-note.php:13 -msgid "Hello, a note has just been added to your order:" -msgstr "Hola, s'acaba d'afegir una nota a la vostra comanda:" - -# @ woocommerce -#: templates/emails/customer-note.php:18 -#: templates/emails/plain/customer-note.php:21 -msgid "For your reference, your order details are shown below." -msgstr "" -"Per a la vostra referència, els detalls de la vostra comanda es mostren a " -"continuació." - -# @ woocommerce -#: templates/emails/customer-processing-order.php:14 -#: templates/emails/plain/customer-processing-order.php:13 -msgid "" -"Your order has been received and is now being processed. Your order details " -"are shown below for your reference:" -msgstr "" -"La vostra comanda ha estat rebuda i s'està processant. A continuació us en " -"mostrem les dades perquè en tingueu referència:" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:14 -#: templates/emails/plain/customer-reset-password.php:13 -msgid "Someone requested that the password be reset for the following account:" -msgstr "" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:15 -#: templates/emails/plain/customer-reset-password.php:15 -#, php-format -msgid "Username: %s" -msgstr "Nom d'usuari: %s" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:16 -#: templates/emails/plain/customer-reset-password.php:16 -msgid "If this was a mistake, just ignore this email and nothing will happen." -msgstr "" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:17 -#: templates/emails/plain/customer-reset-password.php:17 -msgid "To reset your password, visit the following address:" -msgstr "" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:20 -msgid "Click here to reset your password" -msgstr "Feu clic aquí per canviar la contrasenya" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:220 -#: templates/emails/email-addresses.php:18 -#: templates/emails/plain/email-addresses.php:12 -msgid "Billing address" -msgstr "Adreça de facturació" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:227 -#: templates/emails/email-addresses.php:28 -#: templates/emails/plain/email-addresses.php:17 -msgid "Shipping address" -msgstr "Adreça d'enviament" - -# @ woocommerce -#: templates/emails/email-order-items.php:40 -#, php-format -msgid "Download %d:" -msgstr "Descàrrega %d:" - -# @ woocommerce -#: templates/emails/email-order-items.php:42 -msgid "Download:" -msgstr "Descàrrega:" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:19 -#: templates/emails/plain/customer-completed-order.php:19 -#: templates/emails/plain/customer-invoice.php:20 -#: templates/emails/plain/customer-note.php:27 -#: templates/emails/plain/customer-processing-order.php:19 -#, php-format -msgid "Order number: %s" -msgstr "Número de comanda: %s" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:20 -#: templates/emails/plain/customer-completed-order.php:20 -#: templates/emails/plain/customer-invoice.php:21 -#: templates/emails/plain/customer-note.php:28 -#: templates/emails/plain/customer-processing-order.php:20 -#, php-format -msgid "Order date: %s" -msgstr "Data de comanda: %s" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:20 -msgid "jS F Y" -msgstr "" - -# @ woocommerce -#: templates/emails/plain/customer-completed-order.php:38 -#: templates/emails/plain/customer-note.php:46 -#: templates/emails/plain/customer-processing-order.php:38 -msgid "Your details" -msgstr "Les vostres dades:" - -# @ woocommerce -#: templates/emails/plain/email-order-items.php:28 -#, php-format -msgid "Quantity: %s" -msgstr "Quantitat: %s" - -# @ woocommerce -#: templates/emails/plain/email-order-items.php:31 -#, php-format -msgid "Cost: %s" -msgstr "Cost: %s" - -# @ woocommerce -#: templates/loop/add-to-cart.php:17 templates/loop/add-to-cart.php:41 -#: templates/loop/add-to-cart.php:50 -msgid "Read More" -msgstr "Llegir més" - -# @ woocommerce -#: templates/loop/add-to-cart.php:33 -msgid "Select options" -msgstr "Seleccionar" - -# @ woocommerce -#: templates/loop/add-to-cart.php:37 -msgid "View options" -msgstr "Veure opcions" - -# @ woocommerce -#: templates/loop/result-count.php:28 -msgid "Showing the single result" -msgstr "" - -# @ woocommerce -#: templates/loop/result-count.php:30 -#, php-format -msgid "Showing all %d results" -msgstr "Mostrant tots els %d resultats" - -# @ woocommerce -#: templates/loop/result-count.php:32 -#, php-format -msgctxt "%1$d = first, %2$d = last, %3$d = total" -msgid "Showing %1$d–%2$d of %3$d results" -msgstr "" - -# @ woocommerce -#: templates/loop/sale-flash.php:16 templates/single-product/sale-flash.php:16 -msgid "Sale!" -msgstr "Oferta!" - -# @ woocommerce -#: templates/loop/orderby.php:21 -msgid "Default sorting" -msgstr "Ordre predeterminat" - -# @ woocommerce -#: admin/settings/settings-init.php:462 -msgid "Sort by most recent" -msgstr "Ordenar per més recents" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:20 -#: templates/myaccount/form-lost-password.php:31 -msgid "New password" -msgstr "Nova contrasenya" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:24 -#: templates/myaccount/form-lost-password.php:35 -msgid "Re-enter new password" -msgstr "Torna a entrar la nova contrasenya" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:29 -#: templates/myaccount/form-lost-password.php:45 -msgid "Save" -msgstr "Guardar" - -# @ woocommerce -#: templates/myaccount/form-edit-address.php:43 -msgid "Save Address" -msgstr "Guardar adreça" - -# @ woocommerce -#: templates/myaccount/form-login.php:26 templates/myaccount/form-login.php:40 -#: templates/shop/form-login.php:31 -msgid "Login" -msgstr "Iniciar sessió" - -# @ woocommerce -#: templates/myaccount/form-login.php:50 templates/shop/form-login.php:33 -msgid "Lost Password?" -msgstr "Heu perdut la contrasenya?" - -# @ woocommerce -#: templates/myaccount/form-login.php:60 -#: templates/myaccount/form-login.php:101 -msgid "Register" -msgstr "Registrar-se" - -# @ woocommerce -#: templates/myaccount/form-login.php:66 -msgid "Username" -msgstr "Nom d'usuari" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:182 -#: admin/woocommerce-admin-users.php:187 templates/myaccount/form-login.php:78 -#: templates/single-product-reviews.php:101 -msgid "Email" -msgstr "Email" - -# @ woocommerce -#: templates/myaccount/form-login.php:89 -msgid "Re-enter password" -msgstr "Torneu a entrar la contrasenya" - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:22 -msgid "" -"Lost your password? Please enter your username or email address. You will " -"receive a link to create a new password via email." -msgstr "" - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:28 -msgid "Enter a new password below." -msgstr "Entreu una contrasenya nova." - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:45 -msgid "Reset Password" -msgstr "Heu perdut la vostra contrasenya?" - -# @ woocommerce -#: templates/myaccount/my-account.php:19 -#, php-format -msgid "" -"Hello, %s. From your account dashboard you can view your " -"recent orders, manage your shipping and billing addresses and change your password." -msgstr "" -"Hola, %s. Des d'aquesta pàgina podràs veure les teves " -"comandes recents, gestionar el seu enviament i facturació i canviar la teva contrasenya ." - -# @ woocommerce -#: templates/myaccount/my-address.php:17 -msgid "My Addresses" -msgstr "Les meves adreces" - -# @ woocommerce -#: templates/myaccount/my-address.php:23 -msgid "My Address" -msgstr "La meva adreça" - -# @ woocommerce -#: templates/myaccount/my-address.php:35 -msgid "The following addresses will be used on the checkout page by default." -msgstr "" -"Les següents adreces seran utilitzades, per defecte, a la pàgina de pagament." - -# @ default -# @ woocommerce -#: admin/post-types/product.php:151 -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#: admin/post-types/writepanels/writepanel-order_data.php:387 -#: admin/post-types/writepanels/writepanel-product_data.php:1043 -#: admin/woocommerce-admin-attributes.php:322 -#: templates/myaccount/my-address.php:45 woocommerce.php:917 -#: woocommerce.php:953 woocommerce.php:990 woocommerce.php:1028 -#: woocommerce.php:1066 -msgid "Edit" -msgstr "Editar" - -# @ woocommerce -#: templates/myaccount/my-address.php:64 -msgid "You have not set up this type of address yet." -msgstr "Encara no heu configurat aquest tipus d'adreça." - -# @ woocommerce -#: templates/myaccount/my-downloads.php:18 -msgid "Available downloads" -msgstr "Descàrregues disponibles" - -# @ woocommerce -#: templates/myaccount/my-downloads.php:27 -#, php-format -msgid "%s download remaining" -msgid_plural "%s downloads remaining" -msgstr[0] "Queda %s descàrrega" -msgstr[1] "Queden %s descàrregues" - -# @ woocommerce -#: templates/myaccount/my-orders.php:26 -msgid "Recent Orders" -msgstr "Comandes recents" - -# @ woocommerce -#: admin/post-types/shop_order.php:44 templates/myaccount/my-orders.php:32 -#: woocommerce.php:1025 -msgid "Order" -msgstr "Comanda" - -# @ woocommerce -#: admin/post-types/shop_order.php:43 -#: admin/settings/settings-payment-gateways.php:29 -#: admin/settings/settings-shipping-methods.php:31 -#: templates/myaccount/my-orders.php:34 -msgid "Status" -msgstr "Estat" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:138 -#: admin/post-types/writepanels/writepanel-product_data.php:1064 -#: templates/myaccount/my-orders.php:77 -msgid "Cancel" -msgstr "Cancel·lar" - -# @ default -# @ woocommerce -#: admin/post-types/product.php:167 admin/post-types/shop_order.php:171 -#: templates/myaccount/my-orders.php:82 -msgid "View" -msgstr "Veure" - -# @ woocommerce -#: templates/order/form-tracking.php:17 -msgid "" -"To track your order please enter your Order ID in the box below and press " -"return. This was given to you on your receipt and in the confirmation email " -"you should have received." -msgstr "" -"Per a fer el seguiment de la vostra comanda, introduïu-ne el número a la " -"casella corresponent i premeu el botó. Trobareu aquest número a la factura i " -"al correu de confirmació que se us van enviar per correu electrònic." - -# @ woocommerce -#: templates/order/form-tracking.php:19 -msgid "Order ID" -msgstr "Número de comanda" - -# @ woocommerce -#: templates/order/form-tracking.php:19 -msgid "Found in your order confirmation email." -msgstr "Al correu de confirmació de comanda." - -# @ woocommerce -#: templates/order/form-tracking.php:20 -msgid "Billing Email" -msgstr "Correu electrònic de facturació" - -# @ woocommerce -#: templates/order/form-tracking.php:20 -msgid "Email you used during checkout." -msgstr "El que heu fet servir per a comprar." - -# @ woocommerce -#: templates/order/form-tracking.php:23 -msgid "Track" -msgstr "Seguir" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:59 -#: templates/order/order-details.php:16 -msgid "Order Details" -msgstr "Detalls de comanda" - -# @ woocommerce -#: templates/order/order-details.php:57 -#, php-format -msgid "Download file %s →" -msgstr "Descarregar arxiu %s →" - -# @ woocommerce -#: templates/order/order-details.php:81 -msgid "Order Again" -msgstr "Tornar a demanar" - -# @ woocommerce -#: templates/order/order-details.php:93 -msgid "Telephone:" -msgstr "Telèfon:" - -# @ woocommerce -#: templates/order/tracking.php:18 -#, php-format -msgid "Order %s which was made %s has the status “%s”" -msgstr "La comanda %s realitzada %s està en estat “%s”" - -# @ woocommerce -#: templates/order/tracking.php:18 -msgid "ago" -msgstr "enrere" - -# @ woocommerce -#: templates/order/tracking.php:20 -msgid "and was completed" -msgstr "i ha estat completada" - -# @ woocommerce -#: templates/order/tracking.php:20 -msgid " ago" -msgstr " fa" - -# @ woocommerce -#: templates/shop/breadcrumb.php:66 -msgid "Products tagged “" -msgstr "Productes etiquetats “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:94 templates/shop/breadcrumb.php:196 -msgid "Search results for “" -msgstr "Resultats de la cerca “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:154 -msgid "Error 404" -msgstr "Error 404" - -# @ woocommerce -#: templates/shop/breadcrumb.php:200 -msgid "Posts tagged “" -msgstr "Entrades etiquetades “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:205 -msgid "Author:" -msgstr "Autor:" - -# @ woocommerce -#: templates/shop/breadcrumb.php:210 -msgid "Page" -msgstr "Pàgina" - -# @ woocommerce -#: templates/single-product/add-to-cart/variable.php:24 -msgid "Choose an option" -msgstr "Escollir una opció" - -# @ woocommerce -#: templates/single-product/add-to-cart/variable.php:64 -msgid "Clear selection" -msgstr "Esborrar la selecció" - -# @ product_cat -#: templates/single-product/meta.php:22 -msgid "Category:" -msgid_plural "Categories:" -msgstr[0] "Categoria:" -msgstr[1] "Categories:" - -# @ product_tag -#: templates/single-product/meta.php:24 -msgid "Tag:" -msgid_plural "Tags:" -msgstr[0] "Etiqueta:" -msgstr[1] "Etiquetes:" - -# @ woocommerce -#: admin/post-types/product.php:588 admin/post-types/product.php:837 -#: admin/post-types/writepanels/variation-admin-html.php:90 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:273 -#: templates/single-product/product-attributes.php:28 -msgid "Weight" -msgstr "Pes" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:284 -#: templates/single-product/product-attributes.php:37 -msgid "Dimensions" -msgstr "Dimensions" - -# @ woocommerce -#: templates/single-product/related.php:36 -msgid "Related Products" -msgstr "Productes relacionats" - -# @ woocommerce -#: templates/single-product/review.php:33 -msgid "Your comment is awaiting approval" -msgstr "El vostre comentari està pendent d'aprovació" - -# @ woocommerce -#: templates/single-product/review.php:40 -msgid "verified owner" -msgstr "propietari verificat" - -# @ woocommerce -#: templates/single-product/tabs/description.php:14 -msgid "Product Description" -msgstr "Detalls del producte" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:64 -#: templates/single-product-reviews.php:51 -#: templates/single-product-reviews.php:57 -msgid "Reviews" -msgstr "Opinions" - -# @ woocommerce -#: templates/single-product/up-sells.php:41 -msgid "You may also like…" -msgstr "També us recomanem…" - -# @ woocommerce -#: templates/single-product-reviews.php:45 -#, php-format -msgid "%s review for %s" -msgid_plural "%s reviews for %s" -msgstr[0] "%s valoració de %s" -msgstr[1] "%s valoracions de %s" - -# @ woocommerce -#: templates/single-product-reviews.php:73 -msgid " Previous" -msgstr " Anterior" - -# @ woocommerce -#: templates/single-product-reviews.php:74 -msgid "Next " -msgstr "Següent " - -# @ woocommerce -#: templates/single-product-reviews.php:78 -msgid "Add Review" -msgstr "Afegir opinió" - -# @ woocommerce -#: templates/single-product-reviews.php:80 -msgid "Add a review" -msgstr "Afegir opinió" - -# @ woocommerce -#: templates/single-product-reviews.php:84 -msgid "Be the first to review" -msgstr "Sigues el primer a opinar sobre" - -# @ woocommerce -#: templates/single-product-reviews.php:86 -msgid "" -"There are no reviews yet, would you like to submit yours?" -msgstr "" -"Encara no hi ha valoracions; t'agradaria deixar la teva opinió?" - -# @ woocommerce -#: templates/single-product-reviews.php:104 -msgid "Submit Review" -msgstr "Enviar opinió" - -# @ woocommerce -#: templates/single-product-reviews.php:111 -msgid "Rating" -msgstr "Qualificació" - -# @ woocommerce -#: templates/single-product-reviews.php:112 -msgid "Rate…" -msgstr "Valora…" - -# @ woocommerce -#: templates/single-product-reviews.php:113 -msgid "Perfect" -msgstr "Perfecte" - -# @ woocommerce -#: templates/single-product-reviews.php:114 -msgid "Good" -msgstr "Bo" - -# @ woocommerce -#: templates/single-product-reviews.php:115 -msgid "Average" -msgstr "Normal" - -# @ woocommerce -#: templates/single-product-reviews.php:116 -msgid "Not that bad" -msgstr "No està malament" - -# @ woocommerce -#: templates/single-product-reviews.php:117 -msgid "Very Poor" -msgstr "Molt pobre" - -# @ woocommerce -#: templates/single-product-reviews.php:122 -msgid "Your Review" -msgstr "La teva opinió" - -# @ woocommerce -#: woocommerce-ajax.php:111 -msgid "Please enter your username and password to login." -msgstr "Sisplau, entreu el vostre usuari i contrasenya." - -# @ woocommerce -#: woocommerce-ajax.php:191 -msgid "Sorry, your session has expired." -msgstr "Ho sentim, la sessió ha expirat." - -# @ woocommerce -#: woocommerce-ajax.php:191 -msgid "Return to homepage →" -msgstr "Tornar a la pàgina d'inici →" - -# @ woocommerce -#: woocommerce-ajax.php:332 woocommerce-ajax.php:366 woocommerce-ajax.php:389 -msgid "You do not have sufficient permissions to access this page." -msgstr "No teniu prou permisos per accedir a aquesta pàgina." - -# @ woocommerce -#: woocommerce-ajax.php:334 woocommerce-ajax.php:367 woocommerce-ajax.php:390 -msgid "You have taken too long. Please go back and retry." -msgstr "Ha passat massa estona. Sisplau, aneu enrere i torneu-ho a intentar." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:113 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:53 -#: woocommerce-ajax.php:626 -msgid "Same as parent" -msgstr "Igual que el pare" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:25 -#: admin/post-types/writepanels/order-item-html.php:91 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:54 -#: admin/post-types/writepanels/writepanel-product_data.php:186 -#: admin/settings/settings-init.php:982 -#: admin/settings/settings-tax-rates.php:29 -#: admin/woocommerce-admin-settings.php:226 woocommerce-ajax.php:627 -msgid "Standard" -msgstr "Estàndard" - -# @ woocommerce -#: woocommerce-ajax.php:1215 woocommerce-ajax.php:1216 -#, php-format -msgid "Item #%s stock increased from %s to %s." -msgstr "Article #%s estoc incrementat de %s a %s." - -# @ woocommerce -#: woocommerce-ajax.php:1244 -msgid "Value" -msgstr "Valor(s)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -#: woocommerce-ajax.php:1558 -msgid "Delete note" -msgstr "Esborrar nota" - -# @ woocommerce -#: woocommerce-core-functions.php:1189 woocommerce-core-functions.php:1215 -msgid "Download Permissions Granted" -msgstr "Permís de descàrrega concedit" - -# @ woocommerce -#: woocommerce-core-functions.php:1328 -msgctxt "slug" -msgid "uncategorized" -msgstr "Sense categoria" - -# @ woocommerce -#: woocommerce-core-functions.php:1517 -msgid "Select a category" -msgstr "Seleccioneu una categoria" - -# @ woocommerce -#: woocommerce-core-functions.php:1521 -msgid "Uncategorized" -msgstr "Sense categoria" - -# @ woocommerce -#: woocommerce-core-functions.php:1893 -msgid "Customer" -msgstr "Client" - -# @ woocommerce -#: woocommerce-core-functions.php:1900 -msgid "Shop Manager" -msgstr "Mànager de la botiga" - -# @ woocommerce -#: woocommerce-core-functions.php:2433 -msgid "Unpaid order cancelled - time limit reached." -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:2485 woocommerce-functions.php:703 -msgid "Please enter a username." -msgstr "Sisplau, entreu el nom d'usuari." - -# @ woocommerce -#: woocommerce-functions.php:208 woocommerce-functions.php:253 -msgid "Cart updated." -msgstr "Carret actualitzat." - -# @ woocommerce -#: woocommerce-functions.php:239 -#, php-format -msgid "You can only have 1 %s in your cart." -msgstr "Només podeu tenir 1 %s al vostre carret." - -# @ woocommerce -#: woocommerce-functions.php:296 woocommerce-functions.php:343 -msgid "Please choose product options…" -msgstr "Sisplau, escolliu les opcions pel vostre producte…" - -# @ woocommerce -#: woocommerce-functions.php:378 -msgid "" -"Please choose the quantity of items you wish to add to your cart…" -msgstr "" - -# @ woocommerce -#: woocommerce-functions.php:386 -msgid "Please choose a product to add to your cart…" -msgstr "Sisplau, trieu un producte per afegir al carret…" - -# @ woocommerce -#: woocommerce-functions.php:455 -#, php-format -msgid "Added "%s" to your cart." -msgstr "" - -# @ default -#: woocommerce-functions.php:455 -msgid "" and "" -msgstr "" - -# @ woocommerce -#: woocommerce-functions.php:458 -#, php-format -msgid ""%s" was successfully added to your cart." -msgstr ""%s" s'ha afegit al seu carret correctament." - -# @ woocommerce -#: woocommerce-functions.php:466 -msgid "Continue Shopping →" -msgstr "Seguir comprant →" - -# @ woocommerce -#: woocommerce-functions.php:633 -msgid "Username is required." -msgstr "Nom d'usuari obligatori." - -# @ woocommerce -#: woocommerce-functions.php:634 woocommerce-functions.php:729 -msgid "Password is required." -msgstr "Contrasenya obligatòria." - -# @ woocommerce -#: woocommerce-functions.php:705 -msgid "" -"This username is invalid because it uses illegal characters. Please enter a " -"valid username." -msgstr "" -"Aquest nom d'usuari no és vàlid perquè conté caràcters no admesos. Sisplau, " -"entreu un nom d'usuari vàlid." - -# @ woocommerce -#: woocommerce-functions.php:708 -msgid "This username is already registered, please choose another one." -msgstr "Aquest nom d'usuari ja existeix, sisplau, trieu-ne un altre." - -# @ woocommerce -#: woocommerce-functions.php:720 -msgid "Please type your e-mail address." -msgstr "Sisplau, poseu el vostre email." - -# @ woocommerce -#: woocommerce-functions.php:722 -msgid "The email address isn’t correct." -msgstr "L'adreça de correu electrònic no és correcta." - -# @ woocommerce -#: woocommerce-functions.php:725 -msgid "This email is already registered, please choose another one." -msgstr "Aquest correu ja ha estat registrat, sisplau, trieu-ne un altre." - -# @ woocommerce -#: woocommerce-functions.php:730 -msgid "Re-enter your password." -msgstr "Torneu a entrar la contrasenya." - -# @ woocommerce -#: woocommerce-functions.php:735 -msgid "Anti-spam field was filled in." -msgstr "El camp anti-spam està ple." - -# @ woocommerce -#: woocommerce-functions.php:841 -msgid "The cart has been filled with the items from your previous order." -msgstr "" -"S'ha omplert el carret amb els productes de la vostra comanda anterior." - -# @ woocommerce -#: woocommerce-functions.php:867 -msgid "Order cancelled by customer." -msgstr "Comanda cancel·lada pel client." - -# @ woocommerce -#: woocommerce-functions.php:870 -msgid "Your order was cancelled." -msgstr "S'ha cancel·lat la vostra comanda." - -# @ woocommerce -#: woocommerce-functions.php:876 -msgid "" -"Your order is no longer pending and could not be cancelled. Please contact " -"us if you need assistance." -msgstr "" -"La vostra comanda ja no està en enspera i no s'ha pogut cancel·lar. Sisplau, " -"poseu-vos en contacte amb nosaltres si necessiteu ajuda." - -# @ woocommerce -#: woocommerce-functions.php:911 -msgid "Invalid email address." -msgstr "Adreça de correo no vàlida." - -# @ woocommerce -#: woocommerce-functions.php:911 woocommerce-functions.php:933 -#: woocommerce-functions.php:953 woocommerce-functions.php:959 -#: woocommerce-functions.php:963 woocommerce-functions.php:966 -#: woocommerce-functions.php:996 woocommerce-functions.php:1099 -msgid "Go to homepage →" -msgstr "Anar a la pàgina d'inici →" - -# @ woocommerce -#: woocommerce-functions.php:933 -msgid "Invalid download." -msgstr "Descàrrega invàlida." - -# @ woocommerce -#: woocommerce-functions.php:945 -msgid "You must be logged in to download files." -msgstr "Heu d'haver iniciat la sessió per poder descarregar arxius." - -# @ woocommerce -#: woocommerce-functions.php:948 -msgid "This is not your download link." -msgstr "Aquest no és l'enllaç de descàrrega." - -# @ woocommerce -#: woocommerce-functions.php:953 -msgid "Product no longer exists." -msgstr "Aquest producte ja no existeix." - -# @ woocommerce -#: woocommerce-functions.php:963 -msgid "Sorry, you have reached your download limit for this file" -msgstr "" -"Ho sentim, heu arribat al vostre límit de descàrrega per a aquest arxiu." - -# @ woocommerce -#: woocommerce-functions.php:966 -msgid "Sorry, this download has expired" -msgstr "Ho sentim, aquesta descàrrega ha expirat." - -# @ woocommerce -#: woocommerce-functions.php:1099 -msgid "File not found" -msgstr "Arxiu no trobat." - -# @ woocommerce -#: woocommerce-functions.php:1209 -msgid "New products" -msgstr "Nous productes" - -# @ woocommerce -#: woocommerce-functions.php:1217 -#, php-format -msgid "New products added to %s" -msgstr "Nous productes afegits a %s" - -# @ woocommerce -#: woocommerce-functions.php:1225 -#, php-format -msgid "New products tagged %s" -msgstr "Nous productes etiquetats %s" - -# @ woocommerce -#: woocommerce-functions.php:1264 -msgid "You have taken too long. Please go back and refresh the page." -msgstr "Ha passat massa estona. Torneu enrere i actualitzeu la pàgina." - -# @ woocommerce -#: woocommerce-functions.php:1267 -msgid "Please rate the product." -msgstr "Sisplau, valoreu el producte." - -# @ woocommerce -#: admin/settings/settings-init.php:95 woocommerce-template.php:196 -msgid "" -"This is a demo store for testing purposes — no orders shall be " -"fulfilled." -msgstr "" -"Això és una botiga de mostra per poder fer proves — no es tramitaran " -"comandes." - -# @ woocommerce -#: woocommerce-template.php:215 -#, php-format -msgid "Search Results: “%s”" -msgstr "Resultats de la cerca: “%s”" - -# @ woocommerce -#: woocommerce-template.php:218 -#, php-format -msgid " – Page %s" -msgstr " – Pàgina %s" - -# @ woocommerce -#: woocommerce-template.php:990 -msgctxt "breadcrumb" -msgid "Home" -msgstr "Inici" - -# @ woocommerce -#: woocommerce-template.php:1288 woocommerce.php:1175 -msgid "required" -msgstr "" - -# @ woocommerce -#: woocommerce-template.php:1334 -msgid "Update country" -msgstr "Actualitzar país" - -# @ woocommerce -#: woocommerce-template.php:1489 -msgid "Search for:" -msgstr "Buscar per:" - -# @ woocommerce -#: woocommerce-template.php:1490 -msgid "Search for products" -msgstr "Buscar per productes" - -# @ woocommerce -#: admin/post-types/product.php:620 admin/post-types/product.php:893 -#: admin/post-types/writepanels/writepanel-product_data.php:1030 -#: woocommerce-template.php:1491 woocommerce.php:913 -msgid "Search" -msgstr "cerca" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:50 -#: admin/woocommerce-admin-init.php:895 woocommerce.php:752 -msgctxt "slug" -msgid "product-category" -msgstr "categoria-producte" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:51 -#: admin/woocommerce-admin-init.php:908 woocommerce.php:753 -msgctxt "slug" -msgid "product-tag" -msgstr "etiqueta-producte" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:59 woocommerce.php:755 -msgctxt "slug" -msgid "product" -msgstr "producte" - -# @ woocommerce -#: woocommerce.php:791 -msgctxt "Admin menu name" -msgid "Categories" -msgstr "Categories" - -# @ woocommerce -#: woocommerce.php:792 -msgid "Search Product Categories" -msgstr "Buscar categories de producte" - -# @ woocommerce -#: woocommerce.php:793 -msgid "All Product Categories" -msgstr "Totes les categories de producte" - -# @ woocommerce -#: woocommerce.php:794 -msgid "Parent Product Category" -msgstr "Categoria de producte pare" - -# @ woocommerce -#: woocommerce.php:795 -msgid "Parent Product Category:" -msgstr "Categoria de producte pare:" - -# @ woocommerce -#: woocommerce.php:796 -msgid "Edit Product Category" -msgstr "Editar categoria de producte" - -# @ woocommerce -#: woocommerce.php:797 -msgid "Update Product Category" -msgstr "Actualitzar categoria de producte" - -# @ woocommerce -#: woocommerce.php:798 -msgid "Add New Product Category" -msgstr "Afegir nova categoria de producte" - -# @ woocommerce -#: woocommerce.php:799 -msgid "New Product Category Name" -msgstr "Nom de la nova categoria de producte" - -# @ woocommerce -#: woocommerce.php:827 -msgctxt "Admin menu name" -msgid "Tags" -msgstr "Etiquetes" - -# @ woocommerce -#: woocommerce.php:828 -msgid "Search Product Tags" -msgstr "Buscar etiquetes de producte" - -# @ woocommerce -#: woocommerce.php:829 -msgid "All Product Tags" -msgstr "Totes les etiquetes de producte" - -# @ woocommerce -#: woocommerce.php:830 -msgid "Parent Product Tag" -msgstr "Etiqueta de producte pare" - -# @ woocommerce -#: woocommerce.php:831 -msgid "Parent Product Tag:" -msgstr "Etiqueta de producte pare:" - -# @ woocommerce -#: woocommerce.php:832 -msgid "Edit Product Tag" -msgstr "Editar etiqueta de producte" - -# @ woocommerce -#: woocommerce.php:833 -msgid "Update Product Tag" -msgstr "Actualitzar etiqueta de producte" - -# @ woocommerce -#: woocommerce.php:834 -msgid "Add New Product Tag" -msgstr "Afegir nova etiqueta de producte" - -# @ woocommerce -#: woocommerce.php:835 -msgid "New Product Tag Name" -msgstr "Nom de la nova etiqueta de producte" - -# @ woocommerce -#: woocommerce.php:854 woocommerce.php:856 -msgid "Shipping Classes" -msgstr "Classes d'enviament" - -# @ woocommerce -#: woocommerce.php:858 -msgctxt "Admin menu name" -msgid "Shipping Classes" -msgstr "Classes d'enviament" - -# @ woocommerce -#: woocommerce.php:859 -msgid "Search Shipping Classes" -msgstr "Buscar classes d'enviament" - -# @ woocommerce -#: woocommerce.php:860 -msgid "All Shipping Classes" -msgstr "Totes les classes d'enviament" - -# @ woocommerce -#: woocommerce.php:861 -msgid "Parent Shipping Class" -msgstr "Classe d'enviament del pare" - -# @ woocommerce -#: woocommerce.php:862 -msgid "Parent Shipping Class:" -msgstr "Classe d'enviament del pare:" - -# @ woocommerce -#: woocommerce.php:863 -msgid "Edit Shipping Class" -msgstr "Editar la classe d'enviament" - -# @ woocommerce -#: woocommerce.php:864 -msgid "Update Shipping Class" -msgstr "Actualitzar la classe d'enviament" - -# @ woocommerce -#: woocommerce.php:865 -msgid "Add New Shipping Class" -msgstr "Afegir una nova classe d'enviament" - -# @ woocommerce -#: woocommerce.php:866 -msgid "New Shipping Class Name" -msgstr "Nom de la nova classe d'enviament" - -# @ woocommerce -#: woocommerce.php:914 -#, fuzzy -msgid "All" -msgstr "Tots" - -# @ woocommerce -#: woocommerce.php:915 woocommerce.php:916 -msgid "Parent" -msgstr "Pare" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:276 woocommerce.php:918 -msgid "Update" -msgstr "Actualitzar" - -# @ woocommerce -#: woocommerce.php:919 -msgid "Add New" -msgstr "Afegir nou" - -# @ woocommerce -#: woocommerce.php:920 -msgid "New" -msgstr "Nou" - -# @ woocommerce -#: woocommerce.php:950 -msgctxt "Admin menu name" -msgid "Products" -msgstr "Productes" - -# @ woocommerce -#: woocommerce.php:951 -msgid "Add Product" -msgstr "Afegir producte" - -# @ woocommerce -#: woocommerce.php:952 -msgid "Add New Product" -msgstr "Afegir producte nou" - -# @ woocommerce -#: woocommerce.php:954 -msgid "Edit Product" -msgstr "Editar producte" - -# @ woocommerce -#: woocommerce.php:955 -msgid "New Product" -msgstr "Nou producte" - -# @ woocommerce -#: woocommerce.php:956 woocommerce.php:957 -msgid "View Product" -msgstr "Veure producte" - -# @ woocommerce -#: woocommerce.php:958 -msgid "Search Products" -msgstr "Buscar productes" - -# @ woocommerce -#: woocommerce.php:959 -msgid "No Products found" -msgstr "No s'han trobat productes" - -# @ woocommerce -#: woocommerce.php:960 -msgid "No Products found in trash" -msgstr "No hi ha productes a la paperera" - -# @ woocommerce -#: woocommerce.php:961 -msgid "Parent Product" -msgstr "Producte pare" - -# @ woocommerce -#: woocommerce.php:963 -msgid "This is where you can add new products to your store." -msgstr "Aquí és on pots afegir nous productes a la botiga." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -#: woocommerce.php:986 -msgid "Variations" -msgstr "Variacions" - -# @ woocommerce -#: woocommerce.php:987 -msgid "Variation" -msgstr "Variació" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:193 -#: woocommerce.php:988 -msgid "Add Variation" -msgstr "Afegir variació" - -# @ woocommerce -#: woocommerce.php:989 -msgid "Add New Variation" -msgstr "Afegir nova variació" - -# @ woocommerce -#: woocommerce.php:991 -msgid "Edit Variation" -msgstr "Editar variació" - -# @ woocommerce -#: woocommerce.php:992 -msgid "New Variation" -msgstr "Nova variació" - -# @ woocommerce -#: woocommerce.php:993 woocommerce.php:994 -msgid "View Variation" -msgstr "Veure variació" - -# @ woocommerce -#: woocommerce.php:995 -msgid "Search Variations" -msgstr "Buscar variació" - -# @ woocommerce -#: woocommerce.php:996 -msgid "No Variations found" -msgstr "No s'ha trobat cap variació" - -# @ woocommerce -#: woocommerce.php:997 -msgid "No Variations found in trash" -msgstr "No hi ha variacions a la paperera" - -# @ woocommerce -#: woocommerce.php:998 -msgid "Parent Variation" -msgstr "Variació pare" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:140 admin/woocommerce-admin-init.php:142 -#: woocommerce.php:1015 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Comandes" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:68 -#: admin/woocommerce-admin-dashboard.php:142 woocommerce.php:1024 -msgid "Orders" -msgstr "Comandes" - -# @ woocommerce -#: woocommerce.php:1026 -msgid "Add Order" -msgstr "Afegir comanda" - -# @ woocommerce -#: woocommerce.php:1027 -msgid "Add New Order" -msgstr "Afegir nova comanda" - -# @ woocommerce -#: woocommerce.php:1029 -msgid "Edit Order" -msgstr "Editar comanda" - -# @ woocommerce -#: woocommerce.php:1030 -msgid "New Order" -msgstr "Nova comanda" - -# @ woocommerce -#: woocommerce.php:1033 -msgid "Search Orders" -msgstr "Buscar comandes" - -# @ woocommerce -#: woocommerce.php:1034 -msgid "No Orders found" -msgstr "No s'han trobat comandes" - -# @ woocommerce -#: woocommerce.php:1035 -msgid "No Orders found in trash" -msgstr "No hi ha comandes a la paperera" - -# @ woocommerce -#: woocommerce.php:1036 -msgid "Parent Orders" -msgstr "Comandes pare" - -# @ woocommerce -#: woocommerce.php:1039 -msgid "This is where store orders are stored." -msgstr "Aquí és on es guarden les comandes" - -# @ woocommerce -#: admin/settings/settings-init.php:105 admin/woocommerce-admin-content.php:61 -#: admin/woocommerce-admin-content.php:76 -#: admin/woocommerce-admin-reports.php:72 woocommerce.php:1061 -msgid "Coupons" -msgstr "Cupons" - -# @ woocommerce -#: woocommerce.php:1063 -msgctxt "Admin menu name" -msgid "Coupons" -msgstr "Cupons" - -# @ woocommerce -#: woocommerce.php:1064 -msgid "Add Coupon" -msgstr "Afegir cupó" - -# @ woocommerce -#: woocommerce.php:1065 -msgid "Add New Coupon" -msgstr "Afegir nou cupó" - -# @ woocommerce -#: woocommerce.php:1067 -msgid "Edit Coupon" -msgstr "Editar cupó" - -# @ woocommerce -#: woocommerce.php:1068 -msgid "New Coupon" -msgstr "Nou cupó" - -# @ woocommerce -#: woocommerce.php:1069 -msgid "View Coupons" -msgstr "Veure cupons" - -# @ woocommerce -#: woocommerce.php:1070 -msgid "View Coupon" -msgstr "Veure cupó" - -# @ woocommerce -#: woocommerce.php:1071 -msgid "Search Coupons" -msgstr "Buscar cupons" - -# @ woocommerce -#: woocommerce.php:1072 -msgid "No Coupons found" -msgstr "No s'han trobat cupons" - -# @ woocommerce -#: woocommerce.php:1073 -msgid "No Coupons found in trash" -msgstr "No s'ha trobat cap cupó a la paperera" - -# @ woocommerce -#: woocommerce.php:1074 -msgid "Parent Coupon" -msgstr "Cupó pare" - -# @ woocommerce -#: woocommerce.php:1076 -msgid "" -"This is where you can add new coupons that customers can use in your store." -msgstr "" -"Aquí és on podeu afegir nous cupons que els vostres clients utilitzaran a la " -"botiga." - -# @ woocommerce -#: woocommerce.php:1172 -msgid "Select an option…" -msgstr "Seleccionar una opció…" - -# @ woocommerce -#: woocommerce.php:1173 -msgid "Please select a rating" -msgstr "Sisplau, valoreu el producte" - -# @ woocommerce -#: woocommerce.php:1174 -msgid "" -"Sorry, no products matched your selection. Please choose a different " -"combination." -msgstr "" -"Ho sentim, no hi ha productes que coincideixin amb aquesta sel·lecció. " -"Sisplau, trieu una altra combinació." - -# @ woocommerce -#: woocommerce.php:1656 -msgid "Cart % Discount" -msgstr "% de descompte de carret" - -# @ woocommerce -#: woocommerce.php:1657 -msgid "Product Discount" -msgstr "Descompte de producte" - -# @ woocommerce -#: woocommerce.php:1658 -msgid "Product % Discount" -msgstr "% de descompte de producte" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:45 woocommerce.php:1723 -msgid "Action failed. Please refresh the page and retry." -msgstr "Error. Sisplau, actualitzeu la pàgina i torneu-ho a intentar." - -# @ woocommerce -#: admin/importers/importers-init.php:13 -msgid "WooCommerce Tax Rates (CSV)" -msgstr "" - -# @ woocommerce -#: admin/importers/importers-init.php:13 -msgid "Import tax rates to your store via a csv file." -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:103 -#: admin/importers/tax-rates-importer.php:186 -#: admin/importers/tax-rates-importer.php:226 -#: admin/importers/tax-rates-importer.php:241 -msgid "Sorry, there has been an error." -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:104 -msgid "The file does not exist, please try again." -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:187 -msgid "The CSV is invalid." -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:198 -#, php-format -msgid "" -"Import complete - imported %s tax rates and skipped " -"%s." -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:208 -msgid "All done!" -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:208 -msgid "View Tax Rates" -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:259 -msgid "Import Tax Rates" -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:282 -msgid "" -"Hi there! Upload a CSV file containing tax rates to import the contents into " -"your shop. Choose a .csv file to upload, then click \"Upload file and import" -"\"." -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:284 -#, php-format -msgid "" -"Tax rates need to be defined with columns in a specific order (10 columns). " -"Click here to download a sample." -msgstr "" - -# @ default -#: admin/importers/tax-rates-importer.php:292 -msgid "" -"Before you can upload your import file, you will need to fix the following " -"error:" -msgstr "" - -# @ default -#: admin/importers/tax-rates-importer.php:301 -msgid "Choose a file from your computer:" -msgstr "" - -# @ default -#: admin/importers/tax-rates-importer.php:307 -#, php-format -msgid "Maximum size: %s" -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:312 -msgid "OR enter path to file:" -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:319 -msgid "Delimiter" -msgstr "" - -# @ default -#: admin/importers/tax-rates-importer.php:325 -msgid "Upload file and import" -msgstr "" - -# @ woocommerce -#: admin/includes/duplicate_product.php:23 -msgid "No product to duplicate has been supplied!" -msgstr "" - -# @ woocommerce -#: admin/includes/duplicate_product.php:43 -msgid "Product creation failed, could not find original product:" -msgstr "" - -# @ woocommerce -#: admin/includes/duplicate_product.php:89 -msgid "(Copy)" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-install.php:6 -msgid "" -"Welcome to WooCommerce – You're almost ready to start " -"selling :)" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-install.php:7 -msgid "Install WooCommerce Pages" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-install.php:7 -msgid "Skip setup" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-theme-support.php:6 -msgid "" -"Your theme does not declare WooCommerce support – if " -"you encounter layout issues please read our integration guide or choose a " -"WooCommerce theme :)" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-theme-support.php:7 -msgid "Theme Integration Guide" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-theme-support.php:7 -msgid "Hide this notice" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-update.php:6 -msgid "" -"Data Update Required – We just need to update your " -"install to the latest version" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-update.php:7 -msgid "Run the updater" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-update.php:12 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:180 -#: admin/woocommerce-admin-install.php:204 -msgctxt "page_slug" -msgid "lost-password" -msgstr "" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:180 -#: admin/woocommerce-admin-install.php:204 -#: admin/woocommerce-admin-status.php:309 -msgid "Lost Password" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:33 -msgid "Welcome to WooCommerce" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:128 -#, php-format -msgid "Welcome to WooCommerce %s" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:133 -msgid "Thanks, all done!" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:135 -msgid "Thank you for updating to the latest version!" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:137 -msgid "Thanks for installing!" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:139 -#, php-format -msgid "" -"%s WooCommerce %s is more powerful, stable, and secure than ever before. We " -"hope you enjoy it." -msgstr "" - -# @ default -#: admin/includes/welcome.php:143 -#, php-format -msgid "Version %s" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:147 -msgid "Docs" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:154 -msgid "What's New" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:156 -msgid "Credits" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:179 -msgid "Security in mind" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:183 -msgid "Sucuri Safe Plugin" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:184 -msgid "" -"You will be happy to learn that WooCommerce has been audited and certified " -"by the Sucuri Security team. Whilst there is not much to be seen visually to " -"understand the amount of work that went into this audit, rest assured that " -"your website is powered by one of the most powerful and stable eCommerce " -"plugins available." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:187 -msgid "A Smoother Admin Experience" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:193 -msgid "New Product Panel" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:194 -msgid "" -"We have revised the product data panel making it cleaner, more streamlined, " -"and more logical. Adding products is a breeze!" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:199 -msgid "Nicer Order Screens" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:200 -msgid "" -"Order pages have had a cleanup, with a more easily scannable interface. We " -"particularly like the new status icons!" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:205 -msgid "Multi-Download Support" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:206 -msgid "" -"Products can have multiple downloadable files - purchasers will get access " -"to all the files added." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:211 -msgid "Less Taxing Taxes" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:217 -msgid "New Tax Input Panel" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:218 -msgid "" -"The tax input pages have been streamlined to make inputting taxes simpler - " -"adding multiple taxes for a single jurisdiction is now much easier using the " -"priority system. There is also CSV import/export support." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:222 -msgid "Improved Tax Options" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:223 -msgid "" -"As requested by some users, we now support taxing the billing address " -"instead of shipping (optional), and we allow you to choose which tax class " -"applies to shipping." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:228 -msgid "Product Listing Improvements Customers Will Love" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:234 -msgid "New Sorting Options" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:235 -msgid "Customers can now sort products by popularity and ratings." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:240 -msgid "Better Pagination and Result Counts" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:241 -msgid "" -"Numbered pagination has been added to core, and we show the number of " -"results found above the listings." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:246 -msgid "Inline Star Rating Display" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:247 -msgid "" -"We have added star ratings to the catalog which are pulled from reviews." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:255 -msgid "Under the Hood" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:259 -msgid "New product classes" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:260 -msgid "" -"The product classes have been rewritten and are now factory based. Much more " -"extendable, and easier to query products using the new get_product() function." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:264 -msgid "Capability overhaul" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:265 -msgid "" -"More granular capabilities for admin/shop manager roles covering products, " -"orders and coupons." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:269 -msgid "API Improvements" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:270 -msgid "" -"WC-API now has real endpoints, and we've optimised the gateways " -"API significantly by only loading gateways when needed." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:276 -msgid "Cache-friendly cart widgets" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:277 -msgid "" -"Cart widgets and other \"fragments\" are now pulled in via AJAX - this works " -"wonders with static page caching." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:281 -msgid "Session handling" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:282 -msgid "" -"PHP SESSIONS have been a problem for many users in the past, so we've " -"developed our own handler using cookies and options to make these more " -"reliable." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:286 -msgid "Retina Ready" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:287 -msgid "All graphics within WC have been optimised for HiDPI displays." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:294 -msgid "Better stock handling" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:295 -msgid "" -"We have added an option to hold stock for unpaid orders (defaults to " -"60mins). When this time limit is reached, and the order is not paid for, " -"stock is released and the order is cancelled." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:299 -msgid "Improved Line-item storage" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:300 -msgid "" -"We have changed how order items get stored making them easier (and faster) " -"to access for reporting. Order items are no longer serialised within an " -"order - they are stored within their own table." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:304 -msgid "Autoload" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:305 -msgid "" -"We have setup autoloading for classes - this has dramatically reduced memory " -"usage in 2.0." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:312 -msgid "Go to WooCommerce Settings" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:330 -msgid "" -"WooCommerce is developed and maintained by a worldwide team of passionate " -"individuals and backed by an awesome developer community. Want to see your " -"name? Contribute to WooCommerce." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:356 -#, php-format -msgid "View %s" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:31 -msgid "Make a duplicate from this product" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:32 -msgid "Duplicate" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:61 -msgid "Copy to a new draft" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:86 admin/woocommerce-admin-taxonomies.php:297 -msgid "Image" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:91 admin/post-types/product.php:557 -#: admin/post-types/writepanels/variation-admin-html.php:46 -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#: admin/woocommerce-admin-reports.php:2083 -#: admin/woocommerce-admin-reports.php:2119 -msgid "SKU" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:94 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:83 -#: admin/woocommerce-admin-content.php:63 -#: admin/woocommerce-admin-reports.php:99 -msgid "Stock" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:98 -msgid "Categories" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:99 -msgid "Tags" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:100 admin/post-types/product.php:632 -#: admin/post-types/product.php:904 -#: admin/post-types/writepanels/writepanel-product_data.php:1040 -#: admin/woocommerce-admin-init.php:463 -msgid "Featured" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:101 admin/woocommerce-admin-attributes.php:250 -#: admin/woocommerce-admin-attributes.php:308 -#: admin/woocommerce-admin-attributes.php:385 -msgid "Type" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:102 admin/post-types/shop_order.php:50 -#: templates/myaccount/my-orders.php:33 -msgid "Date" -msgstr "Data" - -# @ default -#: admin/post-types/product.php:151 -msgid "Edit this item" -msgstr "" - -# @ default -#: admin/post-types/product.php:152 -msgid "Edit this item inline" -msgstr "" - -# @ default -#: admin/post-types/product.php:152 -msgid "Quick Edit" -msgstr "" - -# @ default -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore this item from the Trash" -msgstr "" - -# @ default -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore" -msgstr "" - -# @ default -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Move this item to the Trash" -msgstr "" - -# @ default -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Trash" -msgstr "" - -# @ default -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -msgid "Delete this item permanently" -msgstr "" - -# @ default -# @ woocommerce -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -#: admin/post-types/writepanels/writepanel-order_data.php:463 -msgid "Delete Permanently" -msgstr "" - -# @ default -#: admin/post-types/product.php:165 -#, php-format -msgid "Preview “%s”" -msgstr "" - -# @ default -#: admin/post-types/product.php:165 -msgid "Preview" -msgstr "" - -# @ default -#: admin/post-types/product.php:167 -#, php-format -msgid "View “%s”" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:214 -msgid "Grouped" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:216 -msgid "External/Affiliate" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:220 admin/post-types/product.php:407 -#: admin/post-types/writepanels/variation-admin-html.php:168 -#: admin/post-types/writepanels/writepanel-product_data.php:52 -msgid "Virtual" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:222 admin/post-types/product.php:403 -#: admin/post-types/writepanels/variation-admin-html.php:166 -#: admin/post-types/writepanels/writepanel-product_data.php:58 -msgid "Downloadable" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:224 -msgid "Simple" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:228 admin/post-types/product.php:387 -msgid "Variable" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:251 -msgid "Toggle featured" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:253 -msgid "yes" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:255 -msgid "no" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:373 -msgid "Show all product types" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:381 -#: admin/post-types/writepanels/writepanel-product_data.php:39 -msgid "Grouped product" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:383 -#: admin/post-types/writepanels/writepanel-product_data.php:40 -msgid "External/Affiliate product" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:385 -#: admin/post-types/writepanels/writepanel-product_data.php:38 -msgid "Simple product" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:399 -msgid "Show all sub-types" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:520 -#, php-format -msgid "[%s with SKU of %s]" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:526 -#, php-format -msgid "[%s with ID of %d]" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:552 admin/post-types/product.php:783 -#: admin/post-types/writepanels/writepanels-init.php:46 -#: admin/settings/settings-init.php:518 -msgid "Product Data" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:570 -msgid "Regular price" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:575 admin/post-types/product.php:811 -msgid "Sale" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:577 -msgid "Sale price" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:599 admin/post-types/product.php:861 -msgid "L/W/H" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:601 admin/post-types/product.php:877 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:85 -#: admin/post-types/writepanels/writepanel-product_data.php:286 -msgid "Length" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:602 admin/post-types/product.php:878 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:86 -#: admin/post-types/writepanels/writepanel-product_data.php:287 -#: admin/woocommerce-admin-settings.php:795 -msgid "Width" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:603 admin/post-types/product.php:879 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:87 -#: admin/post-types/writepanels/writepanel-product_data.php:288 -#: admin/woocommerce-admin-settings.php:797 -msgid "Height" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:613 admin/post-types/product.php:885 -msgid "Visibility" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:618 admin/post-types/product.php:891 -msgid "Catalog & search" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:619 admin/post-types/product.php:892 -#: admin/post-types/writepanels/writepanel-product_data.php:1029 -#: admin/woocommerce-admin-content.php:46 -#: admin/woocommerce-admin-settings.php:181 -msgid "Catalog" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:621 admin/post-types/product.php:894 -#: admin/post-types/writepanels/writepanel-product_data.php:1031 -msgid "Hidden" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:636 admin/post-types/product.php:922 -msgid "In stock?" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:657 admin/post-types/product.php:940 -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Manage stock?" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:661 admin/post-types/product.php:959 -#: admin/post-types/product.php:975 -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "Stock Qty" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:792 admin/post-types/product.php:816 -#: admin/post-types/product.php:842 admin/post-types/product.php:866 -#: admin/post-types/product.php:890 admin/post-types/product.php:909 -#: admin/post-types/product.php:927 admin/post-types/product.php:945 -#: admin/post-types/product.php:964 -msgid "— No Change —" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:793 admin/post-types/product.php:817 -#: admin/post-types/product.php:843 admin/post-types/product.php:867 -#: admin/post-types/product.php:965 -msgid "Change to:" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:794 admin/post-types/product.php:818 -msgid "Increase by (fixed amount or %):" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:795 admin/post-types/product.php:819 -msgid "Decrease by (fixed amount or %):" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:805 admin/post-types/product.php:830 -msgid "Enter price" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:820 -msgid "Decrease regular price by (fixed amount or %):" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:910 admin/post-types/product.php:946 -#: admin/post-types/shop_order.php:190 admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:260 -msgid "Yes" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:911 admin/post-types/product.php:947 -#: admin/post-types/shop_order.php:192 admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:260 -msgid "No" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:1175 -msgid "Sort Products" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:1214 -msgid "Insert into product" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:1215 -msgid "Uploaded to this product" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:25 -msgid "Code" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:26 -msgid "Coupon type" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:27 -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Coupon amount" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:29 -msgid "Product IDs" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:30 -msgid "Usage / Limit" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:31 -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "Expiry date" -msgstr "Data de caducitat" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:56 -msgid "Edit coupon" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:114 -#, php-format -msgid "%s / %s" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:116 -#, php-format -msgid "%s / ∞" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:149 admin/post-types/shop_order.php:282 -msgid "Show all statuses" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:45 -msgid "Billing" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:49 -msgid "Customer Notes" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:51 -#: admin/post-types/writepanels/writepanel-order_data.php:386 -#: admin/post-types/writepanels/writepanel-order_data.php:433 -msgid "Actions" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:98 -msgid "made by" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:114 admin/post-types/shop_order.php:123 -msgid "Via" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:131 -msgid "Unpublished" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:133 -msgid "Y/m/d g:i:s A" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:139 -#, php-format -msgid "%s ago" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:141 -msgid "Y/m/d" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:158 -#: admin/woocommerce-admin-dashboard.php:176 -msgid "Processing" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:165 -msgid "Complete" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:301 admin/post-types/shop_order.php:326 -msgid "Show all customers" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:6 -msgid "Revoke Access" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:7 -#: admin/post-types/writepanels/variation-admin-html.php:7 -#: admin/post-types/writepanels/writepanel-product_data.php:365 -#: admin/post-types/writepanels/writepanel-product_data.php:444 -#: admin/woocommerce-admin-init.php:452 -msgid "Click to toggle" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:9 -#, php-format -msgid "File %d: %s" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:9 -#, php-format -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "" -msgstr[1] "" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:16 -msgid "Downloads Remaining" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:19 -#: admin/post-types/writepanels/variation-admin-html.php:143 -#: admin/post-types/writepanels/variation-admin-html.php:151 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Unlimited" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:22 -msgid "Access Expires" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:23 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Never" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:10 -msgid "Fee Name" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:17 -#: admin/post-types/writepanels/order-item-html.php:84 -msgid "Tax class" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:9 -msgid "Product ID:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:12 -msgid "Variation ID:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:15 -msgid "Product SKU:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:33 -msgid "Add meta" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:6 -msgid "Tax Rate:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:16 -#: admin/post-types/writepanels/writepanel-order_data.php:627 -msgid "Sales Tax:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:20 -#: admin/post-types/writepanels/writepanel-order_data.php:635 -msgid "Shipping Tax:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:6 -#: admin/post-types/writepanels/writepanel-product_data.php:364 -#: admin/post-types/writepanels/writepanel-product_data.php:443 -#: admin/woocommerce-admin-init.php:451 -msgid "Remove" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:20 -msgid "Any" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:46 -msgid "" -"Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:57 -msgid "Stock Qty:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:57 -msgid "" -"Enter a quantity to enable stock management at variation level, or leave " -"blank to use the parent product's options." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:66 -msgid "Regular Price:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:67 -msgid "Variation price (required)" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:70 -msgid "Sale Price:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:70 -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Schedule" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:70 -msgid "Cancel schedule" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:77 -msgid "Sale start date:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:78 -#: admin/post-types/writepanels/writepanel-product_data.php:136 -msgctxt "placeholder" -msgid "From…" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:81 -msgid "Sale end date:" -msgstr "L'oferta acaba:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:82 -#: admin/post-types/writepanels/writepanel-product_data.php:137 -msgctxt "placeholder" -msgid "To…" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:90 -msgid "" -"Enter a weight for this variation or leave blank to use the parent product " -"weight." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:98 -msgid "Dimensions (L×W×H)" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:109 -msgid "Shipping class:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:124 -msgid "Tax class:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:135 -msgid "File paths:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:135 -msgid "" -"Enter one or more File Paths, one per line, to make this variation a " -"downloadable product, or leave blank." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:136 -#: admin/post-types/writepanels/writepanel-product_data.php:153 -msgid "File paths/URLs, one per line" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:137 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Choose a file" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:137 -msgid "Upload" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:137 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Insert file URL" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:142 -msgid "Download Limit:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:142 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Leave blank for unlimited re-downloads." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:150 -msgid "Download Expiry:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:150 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "" -"Enter the number of days before a download link expires, or leave blank." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:164 -msgid "Enabled" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:166 -msgid "" -"Enable this option if access is given to a downloadable file upon purchase " -"of a product" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:168 -msgid "" -"Enable this option if a product is not shipped or there is no shipping cost" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Coupon description" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Optionally enter a description for this coupon for your reference." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:42 -msgid "Discount type" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Enter an amount or percentage e.g. 2.99 or 15%" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "Enable free shipping" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -#, php-format -msgid "" -"Check this box if the coupon grants free shipping. The free " -"shipping method must be enabled with the \"must use coupon\" setting " -"checked." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "Individual use" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "" -"Check this box if the coupon cannot be used in conjunction with other " -"coupons." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "Apply before tax" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "" -"Check this box if the coupon should be applied before calculating cart tax." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "Exclude sale items" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "" -"Check this box if the coupon should not apply to items on sale. Per-item " -"coupons will only work if the item is not on sale. Per-cart coupons will " -"only work if there are no sale items in the cart." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "Minimum amount" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "No minimum" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "" -"This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:75 -#: admin/post-types/writepanels/writepanel-order_data.php:400 -#: admin/post-types/writepanels/writepanel-product_data.php:504 -#: admin/post-types/writepanels/writepanel-product_data.php:521 -#: admin/woocommerce-admin-reports.php:1229 -msgid "Search for a product…" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:89 -msgid "" -"Products which need to be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are discounted." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:94 -msgid "Exclude products" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:95 -msgid "Search for a product…" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:109 -msgid "" -"Products which must not be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are not discounted." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:117 -msgid "Any category" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:125 -msgid "" -"A product must be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will be discounted." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:130 -msgid "Exclude categories" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:131 -msgid "No categories" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:139 -msgid "" -"Product must not be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will not be discounted." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "Customer emails" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "Any customer" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "" -"Comma separate email addresses to restrict this coupon to specific billing " -"and user emails." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "Usage limit" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "How many times this coupon can be used before it is void." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgctxt "placeholder" -msgid "Never expire" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "The date this coupon will expire, YYYY-MM-DD." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:195 -msgid "" -"Coupon code already exists - customers will use the latest coupon with this " -"code." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:62 -msgid "Order number" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:67 -msgid "Customer IP:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:74 -msgid "General Details" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:76 -msgid "Order status:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:86 -msgid "Order Date:" -msgstr "Data de comanda:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:87 -msgid "h" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#: admin/settings/settings-init.php:577 -msgid "m" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:91 -msgid "Customer:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:131 -msgid "Customer Note:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:132 -msgid "Customer's notes about the order" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:140 -msgid "Billing Details" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:152 -#: admin/post-types/writepanels/writepanel-order_data.php:242 -#: admin/woocommerce-admin-users.php:155 admin/woocommerce-admin-users.php:204 -msgid "Company" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:156 -#: admin/post-types/writepanels/writepanel-order_data.php:246 -#: admin/woocommerce-admin-users.php:159 admin/woocommerce-admin-users.php:208 -msgid "Address 1" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:160 -#: admin/post-types/writepanels/writepanel-order_data.php:250 -#: admin/woocommerce-admin-users.php:163 admin/woocommerce-admin-users.php:212 -msgid "Address 2" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:164 -#: admin/post-types/writepanels/writepanel-order_data.php:254 -#: admin/settings/settings-tax-rates.php:42 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-users.php:167 admin/woocommerce-admin-users.php:216 -msgid "City" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:178 -#: admin/post-types/writepanels/writepanel-order_data.php:268 -#: admin/woocommerce-admin-users.php:175 admin/woocommerce-admin-users.php:224 -msgid "State/County" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:195 -msgid "No billing address set." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:208 -msgid "Load billing address" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:230 -msgid "Shipping Details" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "No shipping address set." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Load shipping address" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Copy from billing" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:339 -msgid "Item" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#: admin/post-types/writepanels/writepanel-product_data.php:191 -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Class" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:344 -msgid "Tax class for the line item" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:349 -msgid "Line subtotals are before pre-tax discounts, totals are after." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:388 -msgid "Delete Lines" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:390 -msgid "Stock Actions" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:391 -msgid "Reduce Line Stock" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:392 -msgid "Increase Line Stock" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:396 -#: admin/post-types/writepanels/writepanel-order_data.php:456 -msgid "Apply" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:402 -msgid "Add item(s)" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:403 -msgid "Add fee" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:434 -msgid "Resend order emails" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:465 -msgid "Move to Trash" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save Order" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save/update the order" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:495 -msgid "Discounts" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:499 -msgid "Discounts before tax - calculated by comparing subtotals to totals." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:507 -msgid "Discounts after tax - user defined." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:540 -msgid "Label:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:541 -msgid "The shipping title the customer sees" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:548 -msgid "Cost:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:556 -msgid "Method:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:578 -#: admin/post-types/writepanels/writepanel-order_data.php:580 -#: admin/post-types/writepanels/writepanel-order_data.php:679 -#: admin/post-types/writepanels/writepanel-order_data.php:681 -msgid "Other" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:594 -msgid "Tax Rows" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:619 -msgid "+ Add tax row" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:619 -msgid "" -"These rows contain taxes for this order. This allows you to display multiple " -"or compound taxes rather than a single total." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:623 -msgid "Tax Totals" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:627 -msgid "Total tax for line items + fees." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:649 -#: admin/post-types/writepanels/writepanels-init.php:70 -msgid "Order Totals" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:661 -msgid "Payment Method:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:692 -msgid "Calc taxes" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:694 -msgid "Calc totals" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:57 -msgid "Choose a downloadable product…" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:87 -msgid "Grant Access" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:125 -msgid "" -"Could not grant access - the user may already have permission for this file " -"or billing email is not set. Ensure the billing email is set, and the order " -"has been saved." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:148 -msgid "Are you sure you want to revoke access to this download?" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -#, php-format -msgid "added %s ago" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:50 -msgid "There are no notes for this order yet." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "Add note" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "" -"Add a note for your reference, or add a customer note (the user will be " -"notified)." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:63 -msgid "Private note" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:65 -#: admin/post-types/writepanels/writepanel-product_data.php:482 -msgid "Add" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations for variable products are defined here." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:65 -msgid "" -"Before adding variations, add and save some attributes on the " -"Attributes tab." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:67 -msgid "Learn more" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Close all" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Expand all" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:75 -msgid "Bulk edit:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:77 -msgid "Toggle "Enabled"" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:78 -msgid "Toggle "Downloadable"" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:79 -msgid "Toggle "Virtual"" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:80 -msgid "Delete all variations" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:81 -msgid "Prices" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:82 -msgid "Sale prices" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:88 -msgid "File Path" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:89 -msgid "Download limit" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:90 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Download Expiry" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:93 -msgid "Go" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:195 -msgid "Link all variations" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:197 -msgid "Default selections:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:210 -msgid "No default" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:293 -msgid "" -"Are you sure you want to link all variations? This will create a new " -"variation for each and every possible combination of variation attributes " -"(max 50 per run)." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:310 -msgid "variation added" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:312 -msgid "variations added" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:314 -msgid "No variations added" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:337 -msgid "Are you sure you want to remove this variation?" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:393 -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:396 -msgid "Last warning, are you sure?" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:433 -msgid "Enter a value" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:511 -#: admin/woocommerce-admin-taxonomies.php:62 -#: admin/woocommerce-admin-taxonomies.php:154 -msgid "Choose an image" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:513 -msgid "Set variation image" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:557 -msgid "Variable product" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:43 -msgid "Product Type" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:53 -msgid "Virtual products are intangible and aren't shipped." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:59 -msgid "Downloadable products give access to a file upon purchase." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:77 -#: admin/woocommerce-admin-content.php:44 -#: admin/woocommerce-admin-settings.php:180 -msgid "General" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:79 -#: admin/woocommerce-admin-content.php:47 -#: admin/woocommerce-admin-settings.php:183 -msgid "Inventory" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:83 -msgid "Linked Products" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:85 -#: admin/woocommerce-admin-attributes.php:298 -#: admin/woocommerce-admin-init.php:66 -msgid "Attributes" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:87 -msgid "Advanced" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "Stock Keeping Unit" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "" -"SKU refers to a Stock-keeping unit, a unique identifier for each distinct " -"product and service that can be purchased." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Product URL" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Enter the external URL to the product." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "Button text" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgctxt "placeholder" -msgid "Buy product" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "This text will be shown on the button linking to the external product." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:119 -msgid "Regular Price" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Sale Price" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:135 -msgid "Sale Price Dates" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:152 -msgid "File paths (one per line)" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Download Limit" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:180 -msgid "Shipping only" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Enable stock management at product level" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "" -"Stock quantity. If this is a variable product this value will be used to " -"control stock for all variations, unless you define stock at variation level." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:230 -msgid "Stock status" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:233 -msgid "" -"Controls whether or not the product is listed as \"in stock\" or \"out of " -"stock\" on the frontend." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:240 -msgid "Allow Backorders?" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:241 -msgid "Do not allow" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:242 -msgid "Allow, but notify customer" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:243 -msgid "Allow" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:244 -msgid "" -"If managing stock, this controls whether or not backorders are allowed for " -"this product and variations. If enabled, stock quantity can go below 0." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "Sold Individually" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "" -"Enable this to only allow one of this item to be bought in a single order" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:273 -msgid "Weight in decimal form" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:290 -msgid "LxWxH in decimal form" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:311 -msgid "No shipping class" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "Shipping class" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "" -"Shipping classes are used by certain shipping methods to group similar " -"products." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:380 -#: admin/post-types/writepanels/writepanel-product_data.php:457 -#: admin/woocommerce-admin-init.php:453 -msgid "Value(s)" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:382 -msgid "Select terms" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:394 -msgid "Select all" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:394 -msgid "Select none" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:396 -msgid "Add new" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:409 -msgid "Pipe separate terms" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:416 -#: admin/post-types/writepanels/writepanel-product_data.php:463 -#: admin/woocommerce-admin-init.php:455 -msgid "Visible on the product page" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:422 -#: admin/post-types/writepanels/writepanel-product_data.php:469 -#: admin/woocommerce-admin-init.php:456 -msgid "Used for variations" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:458 -#: admin/woocommerce-admin-init.php:454 -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:484 -msgid "Custom product attribute" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:496 -msgid "Save attributes" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:503 -msgid "Up-Sells" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:518 -msgid "" -"Up-sells are products which you recommend instead of the currently viewed " -"product, for example, products that are more profitable or better quality or " -"more expensive." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:520 -msgid "Cross-Sells" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:535 -msgid "" -"Cross-sells are products which you promote in the cart, based on the current " -"product." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:545 -msgid "Choose a grouped product…" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:571 -msgid "Grouping" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:571 -msgid "Set this option to make this product part of a grouped product." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:591 -msgid "Purchase Note" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:591 -msgid "Enter an optional note to send the customer after purchase." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:598 -msgid "Menu order" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:598 -msgid "Custom ordering position." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:606 -msgid "Enable reviews" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:695 -msgid "Product SKU must be unique." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1028 -msgid "Catalog/search" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1035 -msgid "Catalog visibility:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1051 -msgid "" -"Define the loops this product should be visible in. The product will still " -"be accessible directly." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1057 -msgid "Enable this option to feature this product." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1059 -msgid "Featured Product" -msgstr "Producte destacat" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1063 -msgid "OK" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -msgid "Delete image" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -#: admin/woocommerce-admin-attributes.php:322 -msgid "Delete" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:53 -msgid "Add product gallery images" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:79 -msgid "Add Images to Product Gallery" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:81 -msgid "Add to gallery" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:47 -msgid "Product Gallery" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:55 -msgid "Product Short Description" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:68 -msgid "Order Data" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "Order Items" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "" -"Note: if you edit quantities or remove items from the order you will need to " -"manually update stock levels." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "Downloadable Product Permissions" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "" -"Note: Permissions for order items will automatically be granted when the " -"order status changes to processing/completed." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:73 -msgid "Order Actions" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:81 -msgid "Coupon Data" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:101 -msgid "Product name" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:185 -msgid "Allow reviews." -msgstr "" - -# @ default -#: admin/post-types/writepanels/writepanels-init.php:186 -#, php-format -msgid "" -"Allow trackbacks and pingbacks on this " -"page." -msgstr "" - -# @ default -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:23 -msgid "Styles" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:43 -msgid "Primary" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:43 -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:44 -msgid "Secondary" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:44 -msgid "Buttons and tabs" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:45 -msgid "Highlight" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:45 -msgid "Price labels and Sale Flashes" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:46 -msgid "Content" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:46 -msgid "Your themes page background - used for tab active states" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:47 -msgid "Subtext" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:47 -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:51 -msgid "" -"To edit colours woocommerce/assets/css/woocommerce-base.less " -"and woocommerce.css need to be writable. See the Codex for more " -"information." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:18 -msgid "Localisation" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:19 -#, php-format -msgid "Use informal localisation for %s" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:33 -msgid "General Options" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:36 -msgid "Base Location" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:37 -msgid "" -"This is the base location for your business. Tax rates will be based on this " -"country." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:46 -msgid "Currency" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:47 -msgid "" -"This controls what currency prices are listed at in the catalog and which " -"currency gateways will take payments in." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:58 -msgid "Allowed Countries" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:59 -msgid "These are countries that you are willing to ship to." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:67 -msgid "All Countries" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:84 -msgid "Store Notice" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:85 -msgid "Enable site-wide store notice text" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:92 -msgid "Store Notice Text" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:102 -msgid "Cart, Checkout and Accounts" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:106 -msgid "Enable the use of coupons" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:110 -msgid "Coupons can be applied from the cart and checkout pages." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:115 -msgid "Enable guest checkout (no account required)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:123 -msgid "Enable customer note field on checkout" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:131 -msgid "Force secure checkout" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:137 -msgid "" -"Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:141 -msgid "Un-force HTTPS when leaving the checkout" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:150 -msgid "Registration" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:151 -msgid "Allow registration on the checkout page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:159 -msgid "Allow registration on the \"My Account\" page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:167 -msgid "Register using the email address for the username" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:175 -msgid "Customer Accounts" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:176 -msgid "Prevent customers from accessing WordPress admin" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:184 -msgid "Clear cart when logging out" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:192 -msgid "Allow customers to repurchase orders from their account page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:201 -msgid "Styles and Scripts" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:204 -msgid "Styling" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:205 -msgid "Enable WooCommerce CSS" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:216 -msgid "Scripts" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:217 -msgid "Enable Lightbox" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:220 -msgid "" -"Include WooCommerce's lightbox. Product gallery images and the add review " -"form will open in a lightbox." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:226 -msgid "Enable enhanced country select boxes" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:231 -msgid "This will enable a script allowing the country fields to be searchable." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:236 -msgid "Downloadable Products" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:239 -msgid "File Download Method" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:240 -msgid "" -"Forcing downloads will keep URLs hidden, but some servers may serve large " -"files unreliably. If supported, X-Accel-Redirect/ X-" -"Sendfile can be used to serve downloads instead (server requires " -"mod_xsendfile)." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:248 -msgid "Force Downloads" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:249 -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:250 -msgid "Redirect only" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:255 -msgid "Access Restriction" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:256 -msgid "Downloads require login" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:260 -msgid "This setting does not apply to guest purchases." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:265 -msgid "Grant access to downloadable products after payment" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:269 -msgid "" -"Enable this option to grant access to downloads when orders are \"processing" -"\", rather than \"completed\"." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:285 -msgid "" -"Note: The shop page has children - child pages will not work if you enable " -"this option." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:290 -msgid "Page Setup" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:292 -#, php-format -msgid "" -"Set up core WooCommerce pages here, for example the base page. The base page " -"can also be used in your %sproduct permalinks%s." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:297 -msgid "Shop Base Page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:298 -msgid "" -"This sets the base page of your shop - this is where your product archive " -"will be." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:308 -msgid "Base Page Title" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:309 -msgid "" -"This title to show on the shop base page. Leave blank to use the page title." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:318 -msgid "Terms Page ID" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:319 -msgid "" -"If you define a \"Terms\" page the customer will be asked if they accept " -"them when checking out." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:330 -msgid "Shop Pages" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:330 -msgid "" -"The following pages need selecting so that WooCommerce knows where they are. " -"These pages should have been created upon installation of the plugin, if not " -"you will need to create them." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:333 -msgid "Cart Page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:334 -msgid "Page contents: [woocommerce_cart]" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:344 -msgid "Checkout Page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:345 -msgid "Page contents: [woocommerce_checkout]" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:355 -msgid "Pay Page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:356 -msgid "Page contents: [woocommerce_pay] Parent: \"Checkout\"" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:366 -msgid "Thanks Page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:367 -msgid "Page contents: [woocommerce_thankyou] Parent: \"Checkout\"" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:377 -msgid "My Account Page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:378 -msgid "Page contents: [woocommerce_my_account]" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:388 -msgid "Edit Address Page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:389 -msgid "Page contents: [woocommerce_edit_address] Parent: \"My Account\"" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:399 -msgid "View Order Page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:400 -msgid "Page contents: [woocommerce_view_order] Parent: \"My Account\"" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:410 -msgid "Change Password Page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:411 -msgid "Page contents: [woocommerce_change_password] Parent: \"My Account\"" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:421 -msgid "Logout Page" -msgstr "Tancar sessió" - -# @ woocommerce -#: admin/settings/settings-init.php:422 -msgid "Parent: \"My Account\"" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:432 -msgid "Lost Password Page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:433 -msgid "Page contents: [woocommerce_lost_password] Parent: \"My Account\"" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:449 -msgid "Catalog Options" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:452 -msgid "Default Product Sorting" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:453 -msgid "This controls the default sort order of the catalog." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:459 -msgid "Default sorting (custom ordering + name)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:460 -msgid "Popularity (sales)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:461 -msgid "Average Rating" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:463 -msgid "Sort by price (asc)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:464 -msgid "Sort by price (desc)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:470 -msgid "Shop Page Display" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:471 -msgid "This controls what is shown on the product archive." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:477 admin/settings/settings-init.php:492 -msgid "Show products" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:478 admin/settings/settings-init.php:493 -msgid "Show subcategories" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:479 admin/settings/settings-init.php:494 -msgid "Show both" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:485 -msgid "Default Category Display" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:486 -msgid "This controls what is shown on category archives." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:501 -msgid "Redirect to the cart page after successful addition" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:509 -msgid "Enable AJAX add to cart buttons on archives" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:518 -msgid "" -"The following options affect the fields available on the edit product page." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:521 -msgid "Product Fields" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:522 -msgid "Enable the SKU field for products" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:530 -msgid "" -"Enable the weight field for products (some shipping methods " -"may require this)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:538 -msgid "" -"Enable the dimension fields for products (some shipping " -"methods may require this)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:546 -msgid "" -"Show weight and dimension values on the Additional " -"Information tab" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:554 -msgid "Weight Unit" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:555 -msgid "This controls what unit you will define weights in." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:561 -msgid "kg" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:562 -msgid "g" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:563 -msgid "lbs" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:564 -msgid "oz" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:570 -msgid "Dimensions Unit" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:571 -msgid "This controls what unit you will define lengths in." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:578 -msgid "cm" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:579 -msgid "mm" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:580 -msgid "in" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:581 -msgid "yd" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:587 -msgid "Product Ratings" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:588 -msgid "Enable ratings on reviews" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:597 -msgid "Ratings are required to leave a review" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:606 -msgid "Show \"verified owner\" label for customer reviews" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:616 -msgid "Pricing Options" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:616 -msgid "The following options affect how prices are displayed on the frontend." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:619 -msgid "Currency Position" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:620 -msgid "This controls the position of the currency symbol." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:626 -msgid "Left" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:627 -msgid "Right" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:628 -msgid "Left (with space)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:629 -msgid "Right (with space)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:635 -msgid "Thousand Separator" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:636 -msgid "This sets the thousand separator of displayed prices." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:645 -msgid "Decimal Separator" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:646 -msgid "This sets the decimal separator of displayed prices." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:655 -msgid "Number of Decimals" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:656 -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:669 -msgid "Trailing Zeros" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:670 -msgid "" -"Remove zeros after the decimal point. e.g. $10.00 becomes " -"$10" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:678 -msgid "Image Options" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:678 -#, php-format -msgid "" -"These settings affect the actual dimensions of images in your catalog - the " -"display on the front-end will still be affected by CSS styles. After " -"changing these settings you may need to regenerate your " -"thumbnails." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:681 -msgid "Catalog Images" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:682 -msgid "This size is usually used in product listings" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:695 -msgid "Single Product Image" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:696 -msgid "This is the size used by the main image on the product page." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:709 -msgid "Product Thumbnails" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:710 -msgid "" -"This size is usually used for the gallery of images on the product page." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:729 -msgid "Inventory Options" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:732 -msgid "Manage Stock" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:733 -msgid "Enable stock management" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:740 -msgid "Hold Stock (minutes)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:741 -msgid "" -"Hold stock (for unpaid orders) for x minutes. When this limit is reached, " -"the pending order will be cancelled. Leave blank to disable." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:753 -msgid "Notifications" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:754 -msgid "Enable low stock notifications" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:762 -msgid "Enable out of stock notifications" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:770 -msgid "Notification Recipient" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:778 -msgid "Low Stock Threshold" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:791 -msgid "Out Of Stock Threshold" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:804 -msgid "Out Of Stock Visibility" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:805 -msgid "Hide out of stock items from the catalog" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:812 -msgid "Stock Display Format" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:813 -msgid "This controls how stock is displayed on the frontend." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:819 -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:820 -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:821 -msgid "Never show stock amount" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:836 -msgid "Shipping Calculations" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:837 -msgid "Enable shipping" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:845 -msgid "Enable the shipping calculator on the cart page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:853 -msgid "Hide shipping costs until an address is entered" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:861 -msgid "Shipping Method Display" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:862 -msgid "" -"This controls how multiple shipping methods are displayed on the frontend." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:868 -msgid "Radio buttons" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:869 -msgid "Select box" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:875 -msgid "Shipping Destination" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:876 -msgid "Only ship to the users billing address" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:884 -msgid "Ship to billing address by default" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:892 -msgid "Collect shipping address even when not required" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:910 -#: admin/woocommerce-admin-settings.php:186 -#: admin/woocommerce-admin-settings.php:327 -msgid "Payment Gateways" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:910 -msgid "" -"Installed payment gateways are displayed below. Drag and drop payment " -"gateways to control their display order on the checkout." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:928 -#: admin/woocommerce-admin-settings.php:220 -msgid "Tax Options" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:931 -msgid "Enable Taxes" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:932 -msgid "Enable taxes and tax calculations" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:939 -msgid "Prices Entered With Tax" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:943 -msgid "" -"This option is important as it will affect how you input prices. Changing it " -"will not update existing products." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:945 -msgid "Yes, I will enter prices inclusive of tax" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:946 -msgid "No, I will enter prices exclusive of tax" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:951 -msgid "Calculate Tax Based On:" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:953 -msgid "This option determines which address is used to calculate tax." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:957 -msgid "Customer shipping address" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:958 -msgid "Customer billing address" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:959 admin/settings/settings-init.php:971 -msgid "Shop base address" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:964 -msgid "Default Customer Address:" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:966 -msgid "" -"This option determines the customers default address (before they input " -"their own)." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:970 -msgid "No address" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:976 -msgid "Shipping Tax Class:" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:977 -msgid "" -"Optionally control which tax class shipping gets, or leave it so shipping " -"tax is based on the cart items themselves." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:982 -msgid "Shipping tax class based on cart items" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:987 -msgid "Rounding" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:988 -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:995 -msgid "Additional Tax Classes" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:996 -msgid "" -"List additonal tax classes below (1 per line). This is in addition to the " -"default Standard Rate. Tax classes can be assigned to products." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1000 -#, php-format -msgid "Reduced Rate%sZero Rate" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1004 -msgid "Display prices during cart/checkout:" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1009 -msgid "Including tax" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1010 -msgid "Excluding tax" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1022 -msgid "Email Sender Options" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1022 -msgid "" -"The following options affect the sender (email address and name) used in " -"WooCommerce emails." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1025 -msgid "\"From\" Name" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1034 -msgid "\"From\" Email Address" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1047 -msgid "Email Template" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1047 -#, php-format -msgid "" -"This section lets you customise the WooCommerce emails. Click here to preview your email template. For more " -"advanced control copy woocommerce/templates/emails/ to " -"yourtheme/woocommerce/emails/." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1050 -msgid "Header Image" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1051 -#, php-format -msgid "" -"Enter a URL to an image you want to show in the email's header. Upload your " -"image using the media uploader." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1059 -msgid "Email Footer Text" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1060 -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1064 -msgid "Powered by WooCommerce" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1068 -msgid "Base Colour" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1069 -msgid "" -"The base colour for WooCommerce email templates. Default #557da1." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1077 -msgid "Background Colour" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1078 -msgid "" -"The background colour for WooCommerce email templates. Default " -"#f5f5f5." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1086 -msgid "Email Body Background Colour" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1087 -msgid "The main body background colour. Default #fdfdfd." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1095 -msgid "Email Body Text Colour" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1096 -msgid "The main body text colour. Default #505050." -msgstr "" - -# @ woocommerce -# @ default -#: admin/settings/settings-payment-gateways.php:27 -#: admin/settings/settings-shipping-methods.php:29 -#: admin/woocommerce-admin-init.php:767 -#: admin/woocommerce-admin-taxonomies.php:27 -#: admin/woocommerce-admin-taxonomies.php:121 -msgid "Default" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-payment-gateways.php:28 -msgid "Gateway" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-payment-gateways.php:45 -msgid "Gateway ID" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:23 -msgid "Shipping Methods" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:25 -msgid "Drag and drop methods to control their display order." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:30 -msgid "Shipping Method" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:46 -msgid "Method ID" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:29 -#, php-format -msgid "Tax Rates for the \"%s\" Class" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:30 -#, php-format -msgid "" -"Define tax rates for countries and states below. See here " -"for available alpha-2 country codes." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:36 -msgid "Country Code" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:36 -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:38 -msgid "State Code" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:38 -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:40 -#: admin/settings/settings-tax-rates.php:217 -msgid "ZIP/Postcode" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:40 -msgid "" -"Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all areas. Wildcards (*) can be used. Ranges for numeric " -"postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:42 -msgid "" -"Cities for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all cities." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:44 -msgid "Rate %" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:44 -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:46 -msgid "Tax Name" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:46 -msgid "Enter a name for this tax rate." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:48 -#: admin/settings/settings-tax-rates.php:217 -msgid "Priority" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:48 -msgid "" -"Choose a priority for this tax rate. Only 1 matching rate per priority will " -"be used. To define multiple tax rates for a single area you need to specify " -"a different priority per rate." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:50 -#: admin/settings/settings-tax-rates.php:217 -msgid "Compound" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:50 -msgid "" -"Choose whether or not this is a compound rate. Compound tax rates are " -"applied on top of other tax rates." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:52 -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:59 -msgid "Insert row" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:60 -msgid "Remove selected row(s)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:62 -msgid "Export CSV" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:63 -msgid "Import CSV" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:163 -msgid "No row(s) selected" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Country Code" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "State Code" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Rate %" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Name" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:77 -msgid "Please, provide an attribute name, slug and type." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:79 -#, php-format -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:81 -#, php-format -msgid "" -"Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:85 -#: admin/woocommerce-admin-attributes.php:90 -#, php-format -msgid "Slug “%s” is already in use. Change it, please." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:226 -msgid "Edit Attribute" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:236 -#: admin/woocommerce-admin-attributes.php:375 -msgid "Name for the attribute (shown on the front-end)." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:241 -#: admin/woocommerce-admin-attributes.php:307 -#: admin/woocommerce-admin-attributes.php:379 -msgid "Slug" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:245 -#: admin/woocommerce-admin-attributes.php:381 -msgid "" -"Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:254 -#: admin/woocommerce-admin-attributes.php:387 -msgid "Select" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:255 -#: admin/woocommerce-admin-attributes.php:388 -msgid "Text" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:258 -#: admin/woocommerce-admin-attributes.php:391 -msgid "" -"Determines how you select attributes for products. Text " -"allows manual entry via the product page, whereas select " -"attribute terms can be defined from this section. If you plan on using an " -"attribute for variations use select." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:263 -#: admin/woocommerce-admin-attributes.php:395 -msgid "Default sort order" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:267 -#: admin/woocommerce-admin-attributes.php:335 -#: admin/woocommerce-admin-attributes.php:397 -msgid "Custom ordering" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:269 -#: admin/woocommerce-admin-attributes.php:332 -#: admin/woocommerce-admin-attributes.php:399 -msgid "Term ID" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:271 -#: admin/woocommerce-admin-attributes.php:401 -msgid "" -"Determines the sort order on the frontend for this attribute. If using " -"custom ordering, you can drag and drop the terms in this attribute" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:309 -msgid "Order by" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:310 -msgid "Terms" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:355 -msgid "Configure terms" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:359 -msgid "No attributes currently exist." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:369 -msgid "Add New Attribute" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:370 -msgid "" -"Attributes let you define extra product data, such as size or colour. You " -"can use these attributes in the shop sidebar using the \"layered nav\" " -"widgets. Please note: you cannot rename an attribute later on." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:404 -msgid "Add Attribute" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:415 -msgid "Are you sure you want to delete this attribute?" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:26 -#: admin/woocommerce-admin-reports.php:30 -#: admin/woocommerce-admin-reports.php:75 -#: admin/woocommerce-admin-reports.php:91 -#: admin/woocommerce-admin-reports.php:102 -msgid "Overview" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:29 -#, php-format -msgid "" -"Thank you for using WooCommerce :) Should you need help using or extending " -"WooCommerce please read the documentation. For further " -"assistance you can use the community forum or if you have " -"access, our support desk." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:31 -msgid "" -"If you are having problems, or to assist us with support, please check the " -"status page to identify any problems with your configuration:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:33 admin/woocommerce-admin-init.php:87 -#: admin/woocommerce-admin-status.php:26 -msgid "System Status" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:35 -#, php-format -msgid "" -"If you come across a bug, or wish to contribute to the project you can also " -"get involved on GitHub." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:43 -msgid "" -"Here you can set up your store and customise it to fit your needs. The " -"sections available from the settings page include:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:44 -msgid "" -"General settings such as your shop base, currency, and script/styling " -"options which affect features used in your store." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:45 -msgid "" -"This is where important store page are defined. You can also set up other " -"pages (such as a Terms page) here." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:46 -msgid "" -"Options for how things like price, images and weights appear in your product " -"catalog." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:47 -msgid "Options concerning stock and stock notices." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:48 -msgid "Options concerning tax, including international and local tax rates." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:49 -msgid "" -"This is where shipping options are defined, and shipping methods are set up." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:50 -msgid "Payment Methods" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:50 -msgid "" -"This is where payment gateway options are defined, and individual payment " -"gateways are set up." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:51 -#: admin/woocommerce-admin-settings.php:187 -msgid "Emails" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:51 -msgid "Here you can customise the way WooCommerce emails appear." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:52 -#: admin/woocommerce-admin-settings.php:188 -msgid "Integration" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:52 -msgid "" -"The integration section contains options for third party services which " -"integrate with WooCommerce." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:57 admin/woocommerce-admin-init.php:64 -msgid "Reports" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:59 -msgid "" -"The reports section can be accessed from the left-hand navigation menu. Here " -"you can generate reports for sales and customers." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:60 -#: admin/woocommerce-admin-reports.php:27 -#: admin/woocommerce-admin-reports.php:986 -#: admin/woocommerce-admin-reports.php:1082 -#: admin/woocommerce-admin-reports.php:1199 -msgid "Sales" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:60 -msgid "Reports for sales based on date, top sellers and top earners." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:61 -msgid "Coupon usage reports." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:62 -#: admin/woocommerce-admin-reports.php:88 -msgid "Customers" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:62 -msgid "Customer reports, such as signups per day." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:63 -msgid "Stock reports for low stock and out of stock items." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:70 -msgid "" -"The orders section can be accessed from the left-hand navigation menu. Here " -"you can view and manage customer orders." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:71 -msgid "" -"Orders can also be added from this section if you want to set them up for a " -"customer manually." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:78 -msgid "" -"Coupons can be managed from this section. Once added, customers will be able " -"to enter coupon codes on the cart/checkout page. If a customer uses a coupon " -"code they will be viewable when viewing orders." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:82 -msgid "For more information:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:84 -msgid "Project on WordPress.org" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:85 -msgid "Project on Github" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:86 -msgid "WooCommerce Docs" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:87 -msgid "Official Extensions" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:88 -msgid "Official Themes" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:40 -msgid "Monthly Sales" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:43 -msgid "WooCommerce Right Now" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:44 -msgid "WooCommerce Recent Orders" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:78 -msgid "Shop Content" -msgstr "" - -# @ woocommerce -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:84 -#: admin/woocommerce-admin-functions.php:194 -#: admin/woocommerce-admin-init.php:771 -#: admin/woocommerce-admin-reports.php:985 -#: admin/woocommerce-admin-reports.php:1081 templates/cart/cart.php:28 -#: templates/checkout/form-pay.php:19 templates/checkout/review-order.php:21 -#: templates/emails/admin-new-order.php:22 -#: templates/emails/customer-completed-order.php:23 -#: templates/emails/customer-invoice.php:27 -#: templates/emails/customer-note.php:27 -#: templates/emails/customer-processing-order.php:23 -#: templates/order/order-details.php:20 woocommerce.php:949 -msgid "Product" -msgid_plural "Products" -msgstr[0] "Producte" -msgstr[1] "Productes" - -# @ woocommerce -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:98 woocommerce.php:790 -msgid "Product Category" -msgid_plural "Product Categories" -msgstr[0] "Categoria de producte" -msgstr[1] "Categories de productes" - -# @ woocommerce -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:112 woocommerce.php:826 -msgid "Product Tag" -msgid_plural "Product Tags" -msgstr[0] "Etiqueta de producte" -msgstr[1] "Etiquetes de producte" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:126 -msgid "Attribute" -msgid_plural "Attributes" -msgstr[0] "" -msgstr[1] "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:148 -msgid "Pending" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:162 -msgid "On-Hold" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:190 -msgid "Completed" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:207 -#, php-format -msgid "You are using WooCommerce %s." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:238 -msgid "l jS \\of F Y h:i:s A" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:239 -msgid "item" -msgid_plural "items" -msgstr[0] "" -msgstr[1] "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:245 -msgid "There are no product orders yet." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:287 -msgid "There are no product reviews yet." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:428 -msgid "Sold" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:429 -msgid "Earned" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:184 -#: admin/woocommerce-admin-install.php:222 -msgid "Order Received" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:186 -msgid "" -"Thank you, we are now processing your order. Your order's details are below." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:208 -msgid "Order total:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:459 -msgid "Could not compile woocommerce.less:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:480 -#: admin/woocommerce-admin-functions.php:481 -msgid "Mark processing" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:483 -#: admin/woocommerce-admin-functions.php:484 -msgid "Mark completed" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:521 -msgid "Order status changed by bulk edit:" -msgstr "" - -# @ default -#: admin/woocommerce-admin-functions.php:544 -#, php-format -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "" -msgstr[1] "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:86 -msgid "WooCommerce Settings" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:87 -msgid "WooCommerce Status" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:446 -msgid "" -"Are you sure you want to remove the selected items? If you have previously " -"reduced this item's stock, or this order was submitted by a customer, you " -"will need to manually restore the item's stock." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:447 -msgid "Please select some items." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:448 -msgid "Remove this item meta?" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:449 -msgid "Remove this attribute?" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:457 -msgid "Enter a name for the new attribute term:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:458 -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:459 -msgid "" -"Calculate line taxes? This will calculate taxes based on the customers " -"country. If no billing/shipping is set it will use the store base country." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:460 -msgid "" -"Copy billing information to shipping information? This will remove any " -"currently entered shipping information." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:461 -msgid "" -"Load the customer's billing information? This will remove any currently " -"entered billing information." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:462 -msgid "" -"Load the customer's shipping information? This will remove any currently " -"entered shipping information." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:466 -msgid "No customer selected" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:675 -#, php-format -msgid "Product updated. View Product" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:676 admin/woocommerce-admin-init.php:691 -#: admin/woocommerce-admin-init.php:706 -msgid "Custom field updated." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:677 admin/woocommerce-admin-init.php:692 -#: admin/woocommerce-admin-init.php:707 -msgid "Custom field deleted." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:678 -msgid "Product updated." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:679 -#, php-format -msgid "Product restored to revision from %s" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:680 -#, php-format -msgid "Product published. View Product" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:681 -msgid "Product saved." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:682 -#, php-format -msgid "Product submitted. Preview Product" -msgstr "" - -# woocommerce -#: admin/woocommerce-admin-init.php:683 -#, php-format -msgid "" -"Product scheduled for: %1$s. Preview Product" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:684 admin/woocommerce-admin-init.php:699 -#: admin/woocommerce-admin-init.php:714 -msgid "M j, Y @ G:i" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:685 -#, php-format -msgid "" -"Product draft updated. Preview Product" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:690 admin/woocommerce-admin-init.php:693 -#: admin/woocommerce-admin-init.php:695 -msgid "Order updated." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:694 -#, php-format -msgid "Order restored to revision from %s" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:696 -msgid "Order saved." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:697 -msgid "Order submitted." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:698 -#, php-format -msgid "Order scheduled for: %1$s." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:700 -msgid "Order draft updated." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:705 admin/woocommerce-admin-init.php:708 -#: admin/woocommerce-admin-init.php:710 -msgid "Coupon updated." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:709 -#, php-format -msgid "Coupon restored to revision from %s" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:711 -msgid "Coupon saved." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:712 -msgid "Coupon submitted." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:713 -#, php-format -msgid "Coupon scheduled for: %1$s." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:715 -msgid "Coupon draft updated." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:732 -msgid "Order notes" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:747 -msgid "" -"These settings control the permalinks used for products. These settings only " -"apply when not using \"default\" permalinks above." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:754 -msgctxt "default-slug" -msgid "shop" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:755 -msgctxt "default-slug" -msgid "product" -msgstr "producte" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:776 -msgid "Shop base" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:780 -msgid "Shop base with category" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:786 -msgid "Custom Base" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:788 -msgid "" -"Enter a custom base to use. A base must be set or WordPress " -"will use default instead." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:816 -msgid "Product permalink base" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:821 -msgid "Product category base" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:828 -msgid "Product tag base" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:835 -msgid "Product attribute base" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:192 -msgctxt "page_slug" -msgid "shop" -msgstr "botiga" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:192 -msgid "Shop" -msgstr "Botiga" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:195 -msgctxt "page_slug" -msgid "cart" -msgstr "carret" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:198 -msgctxt "page_slug" -msgid "checkout" -msgstr "finalitzar-comanda" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:201 -msgctxt "page_slug" -msgid "my-account" -msgstr "el-meu-compte" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:207 -msgctxt "page_slug" -msgid "edit-address" -msgstr "editar-adreca" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:207 -msgid "Edit My Address" -msgstr "Editar adreça" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:210 -msgctxt "page_slug" -msgid "view-order" -msgstr "veure-comanda" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:213 -msgctxt "page_slug" -msgid "change-password" -msgstr "canviar-contrasenya" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:216 -msgctxt "page_slug" -msgid "logout" -msgstr "tancar-sessio" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:219 -msgctxt "page_slug" -msgid "pay" -msgstr "pagar" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:219 -msgid "Checkout → Pay" -msgstr "Finalitzar comanda → Pagar" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:222 -msgctxt "page_slug" -msgid "order-received" -msgstr "comanda-rebuda" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:36 -msgid "Sales by day" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:41 -msgid "Sales by month" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:46 -msgid "Taxes by month" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:51 -msgid "Product Sales" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:56 -msgid "Top sellers" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:61 -msgid "Top earners" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:66 -msgid "Sales by category" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:81 -msgid "Discounts by coupon" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:232 -#: admin/woocommerce-admin-reports.php:497 -#: admin/woocommerce-admin-reports.php:702 -#: admin/woocommerce-admin-reports.php:883 -msgid "Sales amount" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:237 -#: admin/woocommerce-admin-reports.php:497 -#: admin/woocommerce-admin-reports.php:702 -#: admin/woocommerce-admin-reports.php:883 -msgid "Number of sales" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:369 -msgid "Total sales" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:371 -#: admin/woocommerce-admin-reports.php:377 -#: admin/woocommerce-admin-reports.php:383 -#: admin/woocommerce-admin-reports.php:389 -#: admin/woocommerce-admin-reports.php:395 -#: admin/woocommerce-admin-reports.php:401 -#: admin/woocommerce-admin-reports.php:644 -#: admin/woocommerce-admin-reports.php:650 -#: admin/woocommerce-admin-reports.php:656 -#: admin/woocommerce-admin-reports.php:662 -#: admin/woocommerce-admin-reports.php:828 -#: admin/woocommerce-admin-reports.php:834 -#: admin/woocommerce-admin-reports.php:840 -#: admin/woocommerce-admin-reports.php:846 -#: admin/woocommerce-admin-reports.php:1364 -#: admin/woocommerce-admin-reports.php:1370 -#: admin/woocommerce-admin-reports.php:1376 -#: admin/woocommerce-admin-reports.php:1810 -#: admin/woocommerce-admin-reports.php:1816 -#: admin/woocommerce-admin-reports.php:1822 -#: admin/woocommerce-admin-reports.php:1828 -#: admin/woocommerce-admin-reports.php:1834 -#: admin/woocommerce-admin-reports.php:1840 -#: admin/woocommerce-admin-reports.php:2304 -#: admin/woocommerce-admin-reports.php:2315 -#: admin/woocommerce-admin-reports.php:2326 -msgid "n/a" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:375 -msgid "Total orders" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:377 -#: admin/woocommerce-admin-reports.php:650 -#: admin/woocommerce-admin-reports.php:834 -msgid "items" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:381 -msgid "Average order total" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:387 -msgid "Average order items" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:393 -msgid "Discounts used" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:399 -msgid "Total shipping costs" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:407 -msgid "This month's sales" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1356 -msgid "From:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1356 -msgid "To:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:821 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1229 -#: admin/woocommerce-admin-reports.php:1356 -#: admin/woocommerce-admin-reports.php:1489 -#: admin/woocommerce-admin-reports.php:2293 -#: admin/woocommerce-admin-reports.php:2476 -msgid "Show" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:642 -msgid "Total sales in range" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:648 -msgid "Total orders in range" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:654 -msgid "Average order total in range" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:660 -msgid "Average order items in range" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:668 -msgid "Sales in range" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:815 -#: admin/woocommerce-admin-reports.php:2287 -msgid "Year:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:826 -msgid "Total sales for year" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:832 -msgid "Total orders for year" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:838 -msgid "Average order total for year" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:844 -msgid "Average order items for year" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:852 -msgid "Monthly sales for year" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1000 -msgid "Product does not exist" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1097 -msgid "Product no longer exists" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1194 -#, php-format -msgid "Sales for %s:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1198 -#: admin/woocommerce-admin-reports.php:2335 -msgid "Month" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1219 -msgid "No sales :(" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1362 -msgid "Total orders containing coupons" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1368 -msgid "Percent of orders containing coupons" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1374 -msgid "Total coupon discount" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1383 -msgid "Most popular coupons" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1393 -#, php-format -msgid "Used 1 time" -msgid_plural "Used %d times" -msgstr[0] "" -msgstr[1] "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1396 -#: admin/woocommerce-admin-reports.php:1418 -msgid "No coupons found" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1405 -msgid "Greatest discount amount" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1415 -#, php-format -msgid "Discounted %s" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1474 -#: admin/woocommerce-admin-reports.php:2453 -msgid "Show:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1614 -msgid "Top coupon" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1622 -msgid "Worst coupon" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1630 -msgid "Discount average" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1638 -msgid "Discount median" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1658 -msgid "Monthly discounts by coupon" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1808 -msgid "Total customers" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1814 -msgid "Total customer sales" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1820 -msgid "Total guest sales" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1826 -msgid "Total customer orders" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1832 -msgid "Total guest orders" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1838 -msgid "Average orders per customer" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1846 -msgid "Signups per day" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2067 -msgid "Low stock" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2090 -#: admin/woocommerce-admin-reports.php:2129 -#, php-format -msgid "%d in stock" -msgid_plural "%d in stock" -msgstr[0] "" -msgstr[1] "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2095 -msgid "No products are low in stock." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2127 -msgid "Marked out of stock" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2134 -msgid "No products are out in stock." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2298 -msgid "Total taxes for year" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2309 -msgid "Total product taxes for year" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2320 -msgid "Total shipping tax for year" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2336 -msgid "Total Sales" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2336 -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2337 -msgid "Total Shipping" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2337 -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2338 -msgid "Total Product Taxes" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2338 -msgid "This is the sum of the 'Cart Tax' field within your orders." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2339 -msgid "Total Shipping Taxes" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2339 -msgid "This is the sum of the 'Shipping Tax' field within your orders." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2340 -msgid "Total Taxes" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2340 -msgid "" -"This is the sum of the 'Cart Tax' and 'Shipping Tax' fields within your " -"orders." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2341 -msgid "Net profit" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2341 -msgid "Total sales minus shipping and tax." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2386 -msgid "Toggle tax rows" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2529 -msgid "Category" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2632 -msgid "Top category" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2641 -msgid "Worst category" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2649 -msgid "Category sales average" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2660 -msgid "Category sales median" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2680 -msgid "Monthly sales by category" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:162 -msgid "Your settings have been saved." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:208 -#, php-format -msgid "" -"More functionality and gateway options available via WC official extensions." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:226 -msgid "Tax Rates" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:253 -msgid "Email Options" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:427 -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:799 -msgid "Hard Crop" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:824 -msgid "Select a page…" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:847 -msgid "Choose a country…" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:867 -msgid "Choose countries…" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:27 -#: admin/woocommerce-admin-status.php:622 -msgid "Tools" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:62 -msgid "Please include this information when requesting support:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:63 -msgid "Download System Report File" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:71 -msgid "Environment" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:77 -msgid "Home URL" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:81 -msgid "Site URL" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:85 -msgid "WC Version" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:89 -msgid "WC Database Version" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:93 -msgid "WP Version" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:97 -msgid "Web Server Info" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:101 -msgid "PHP Version" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:105 -msgid "MySQL Version" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:109 -msgid "WP Memory Limit" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:114 -#, php-format -msgid "" -"%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:121 -msgid "WP Debug Mode" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:125 -msgid "WP Max Upload Size" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:129 -msgid "PHP Post Max Size" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:133 -msgid "PHP Time Limit" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:137 -msgid "WC Logging" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:140 -msgid "Log directory is writable." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:142 -msgid "" -"Log directory (woocommerce/logs/) is not writable. Logging will " -"not be possible." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:149 -msgid "fsockopen/cURL" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:152 -msgid "Your server has fsockopen and cURL enabled." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:154 -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:156 -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:160 -msgid "" -"Your server does not have fsockopen or cURL enabled - PayPal IPN and other " -"scripts which communicate with other servers will not work. Contact your " -"hosting provider." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:165 -msgid "SOAP Client" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:167 -msgid "Your server has the SOAP Client class enabled." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:170 -#, php-format -msgid "" -"Your server does not have the SOAP Client class enabled - " -"some gateway plugins which use SOAP may not work as expected." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:175 -msgid "WP Remote Post" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:186 -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:189 -msgid "" -"wp_remote_post() failed. PayPal IPN won't work with your server. Contact " -"your hosting provider. Error:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:192 -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:215 -msgid "Plugins" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:221 -msgid "Installed Plugins" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:236 -msgid "by" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:236 -msgid "version" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:259 -msgid "Force SSL" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:266 -msgid "WC Pages" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:273 -msgid "Shop Base" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:289 -msgid "Thanks" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:329 -msgid "Page not set" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:339 -msgid "Page does not exist" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:344 -#, php-format -msgid "Page does not contain the shortcode: %s" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:363 -msgid "WC Taxonomies" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:369 -msgid "Order Statuses" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:379 -msgid "Product Types" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:392 -msgid "Templates" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:398 -msgid "Template Overrides" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:416 -msgid "No core overrides present in theme." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:510 -msgid "WC Transients" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:511 -msgid "Clear transients" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:512 -msgid "This tool will clear the product/shop transients cache." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:515 -msgid "Expired Transients" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:516 -msgid "Clear expired transients" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:517 -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:520 -msgid "Term counts" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:521 -msgid "Recount terms" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:522 -msgid "" -"This tool will recount product terms - useful when changing your settings in " -"a way which hides products from the catalog." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:525 -msgid "Capabilities" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:526 -msgid "Reset capabilities" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:527 -msgid "" -"This tool will reset the admin, customer and shop_manager roles to default. " -"Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:537 -msgid "Product Transients Cleared" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:578 -#, php-format -msgid "%d Transients Rows Cleared" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:586 -msgid "Roles successfully reset" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:598 -msgid "Terms successfully recounted" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:607 -#, php-format -msgid "There was an error calling %s::%s" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:610 -#, php-format -msgid "There was an error calling %s" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:25 -#: admin/woocommerce-admin-taxonomies.php:118 -msgid "Display type" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:29 -#: admin/woocommerce-admin-taxonomies.php:123 -msgid "Subcategories" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:30 -#: admin/woocommerce-admin-taxonomies.php:124 -msgid "Both" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:34 -#: admin/woocommerce-admin-taxonomies.php:129 -msgid "Thumbnail" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:38 -#: admin/woocommerce-admin-taxonomies.php:134 -msgid "Upload/Add image" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:39 -#: admin/woocommerce-admin-taxonomies.php:135 -msgid "Remove image" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:64 -#: admin/woocommerce-admin-taxonomies.php:156 -msgid "Use image" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:222 -msgid "" -"Product categories for your store can be managed here. To change the order " -"of categories on the front-end you can drag and drop to sort them. To see " -"more categories listed click the \"screen options\" link at the top of the " -"page." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:237 -msgid "" -"Shipping classes can be used to group products of similar type. These groups " -"can then be used by certain shipping methods to provide different rates to " -"different products." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:365 -msgid "Configure shipping class" -msgstr "Configura la classe d'enviament" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:28 -msgid "Paying Customer?" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:29 -msgid "Completed Orders" -msgstr "Comandes completades" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:144 -msgid "Customer Billing Address" -msgstr "Adreça de facturació" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:147 admin/woocommerce-admin-users.php:196 -msgid "First name" -msgstr "Nom" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:151 admin/woocommerce-admin-users.php:200 -msgid "Last name" -msgstr "Cognom" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:176 -msgid "Country or state code" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:180 admin/woocommerce-admin-users.php:229 -msgid "2 letter Country code" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:183 -msgid "Telephone" -msgstr "Telèfon" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:193 -msgid "Customer Shipping Address" -msgstr "Adreça d'enviament" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:225 -msgid "State/County or state code" -msgstr "" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:33 -msgid "" -"The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class " -"directly." -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:58 -msgid "Belau" -msgstr "" - -# @ woocommerce -#: classes/class-wc-coupon.php:420 -msgid "Coupon code applied successfully." -msgstr "" - -# @ woocommerce -#: classes/class-wc-coupon.php:441 -msgid "Coupon is not valid." -msgstr "" - -# @ woocommerce -#: classes/class-wc-coupon.php:453 -msgid "Coupon code already applied!" -msgstr "" - -# @ woocommerce -#: classes/class-wc-coupon.php:456 -#, php-format -msgid "" -"Sorry, coupon \"%s\" has already been applied and cannot be used in " -"conjunction with other coupons." -msgstr "" - -# @ woocommerce -#: classes/class-wc-coupon.php:471 -msgid "Sorry, this coupon is not valid for sale items." -msgstr "" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:97 -#: classes/gateways/cod/class-wc-gateway-cod.php:103 -msgid "Pay with cash upon delivery." -msgstr "" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:148 -msgid "" -"Please enter a prefix for your invoice numbers. If you use your PayPal " -"account for multiple stores ensure this prefix is unique as PayPal will not " -"allow orders with the same invoice number." -msgstr "" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:165 -msgid "Optional" -msgstr "" - -# @ woocommerce -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:23 -msgid "" -"Increase your social media exposure by 10 percent! ShareYourCart helps you " -"get more customers by motivating satisfied customers to talk with their " -"friends about your products. For help with ShareYourCart view the documentation." -msgstr "" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:176 -msgid "Option Name|Cost|Per-order (yes or no)" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:13 -msgid "Bács-Kiskun" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:14 -msgid "Békés" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:15 -msgid "Baranya" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:16 -msgid "Borsod-Abaúj-Zemplén" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:17 -msgid "Budapest" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:18 -msgid "Csongrád" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:19 -msgid "Fejér" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:20 -msgid "Győr-Moson-Sopron" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:21 -msgid "Hajdú-Bihar" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:22 -msgid "Heves" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:23 -msgid "Jász-Nagykun-Szolnok" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:24 -msgid "Komárom-Esztergom" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:25 -msgid "Nógrád" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:26 -msgid "Pest" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:27 -msgid "Somogy" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:28 -msgid "Szabolcs-Szatmár-Bereg" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:29 -msgid "Tolna" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:30 -msgid "Vas" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:31 -msgid "Veszprém" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:32 -msgid "Zala" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:13 -msgid "Daerah Istimewa Aceh" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:14 -msgid "Sumatera Utara" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:15 -msgid "Sumatera Barat" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:16 -msgid "Riau" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:17 -msgid "Kepulauan Riau" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:18 -msgid "Jambi" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:19 -msgid "Sumatera Selatan" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:20 -msgid "Bangka Belitung" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:21 -msgid "Bengkulu" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:22 -msgid "Lampung" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:23 -msgid "DKI Jakarta" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:24 -msgid "Jawa Barat" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:25 -msgid "Banten" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:26 -msgid "Jawa Tengah" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:27 -msgid "Jawa Timur" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:28 -msgid "Daerah Istimewa Yogyakarta" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:29 -msgid "Bali" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:30 -msgid "Nusa Tenggara Barat" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:31 -msgid "Nusa Tenggara Timur" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:32 -msgid "Kalimantan Barat" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:33 -msgid "Kalimantan Tengah" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:34 -msgid "Kalimantan Timur" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:35 -msgid "Kalimantan Selatan" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:36 -msgid "Kalimantan Utara" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:37 -msgid "Sulawesi Utara" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:38 -msgid "Sulawesi Tengah" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:39 -msgid "Sulawesi Tenggara" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:40 -msgid "Sulawesi Barat" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:41 -msgid "Sulawesi Selatan" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:42 -msgid "Gorontalo" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:43 -msgid "Maluku" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:44 -msgid "Maluku Utara" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:45 -msgid "Papua" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:46 -msgid "Papua Barat" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:72 -msgid "US Virgin Islands" -msgstr "" - -# @ woocommerce -#: templates/checkout/form-login.php:14 -msgid "Returning customer?" -msgstr "Ja heu comprat abans?" - -# @ woocommerce -#: templates/loop/orderby.php:22 -msgid "Sort by popularity" -msgstr "Mostra per popularitat" - -# @ woocommerce -#: templates/loop/orderby.php:23 -msgid "Sort by average rating" -msgstr "Mostra per mitjana de valoració" - -# @ woocommerce -#: templates/loop/orderby.php:24 -msgid "Sort by newness" -msgstr "Mostra per novetat" - -# @ woocommerce -#: templates/loop/orderby.php:25 -msgid "Sort by price: low to high" -msgstr "Mostra per preu: de menor a major" - -# @ woocommerce -#: templates/loop/orderby.php:26 -msgid "Sort by price: high to low" -msgstr "Mostra per preu: de major a menor" - -# @ woocommerce -#: templates/myaccount/my-orders.php:62 -#, php-format -msgid "%s for %s item" -msgid_plural "%s for %s items" -msgstr[0] "" -msgstr[1] "" - -# @ woocommerce -#: templates/single-product-reviews.php:78 -msgid "Add Your Review" -msgstr "" - -# @ woocommerce -#: woocommerce-ajax.php:1172 -msgid "" -"No products had their stock reduced - they may not have stock management " -"enabled." -msgstr "" - -# @ woocommerce -#: woocommerce-ajax.php:1223 -msgid "" -"No products had their stock increased - they may not have stock management " -"enabled." -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:268 -#, php-format -msgid "%s – %s%s" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:675 -msgid "Australian Dollars" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:676 -msgid "Brazilian Real" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:677 -msgid "Canadian Dollars" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:678 -msgid "Chinese Yuan" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:679 -msgid "Czech Koruna" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:680 -msgid "Danish Krone" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:681 -msgid "Euros" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:682 -msgid "Hong Kong Dollar" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:683 -msgid "Hungarian Forint" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:684 -msgid "Indonesia Rupiah" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:685 -msgid "Israeli Shekel" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:686 -msgid "Japanese Yen" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:687 -msgid "Malaysian Ringgits" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:688 -msgid "Mexican Peso" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:689 -msgid "Norwegian Krone" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:690 -msgid "New Zealand Dollar" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:691 -msgid "Philippine Pesos" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:692 -msgid "Polish Zloty" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:693 -msgid "Pounds Sterling" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:694 -msgid "Romanian Leu" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:695 -msgid "Singapore Dollar" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:696 -msgid "South African rand" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:697 -msgid "Swedish Krona" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:698 -msgid "Swiss Franc" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:699 -msgid "Taiwan New Dollars" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:700 -msgid "Thai Baht" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:701 -msgid "Turkish Lira" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:702 -msgid "US Dollars" -msgstr "" - -# @ woocommerce -#: woocommerce-functions.php:996 -msgid "No file defined" -msgstr "" - -# @ woocommerce -#: woocommerce-functions.php:1575 -msgid "Password changed successfully." -msgstr "" - -# @ woocommerce -#: woocommerce-functions.php:1651 -msgid "Address changed successfully." -msgstr "" - -# @ woocommerce -#: woocommerce-template.php:764 -#, php-format -msgid "Reviews (%d)" -msgstr "Opinions (%d)" - -# @ woocommerce -#. translators: plugin header field 'PluginURI' -#: woocommerce.php:0 -msgid "http://www.woothemes.com/woocommerce/" -msgstr "" - -# @ woocommerce -#. translators: plugin header field 'Description' -#: woocommerce.php:0 -msgid "An e-commerce toolkit that helps you sell anything. Beautifully." -msgstr "" - -# @ woocommerce -#. translators: plugin header field 'Author' -#: woocommerce.php:0 -msgid "WooThemes" -msgstr "" - -# @ woocommerce -#. translators: plugin header field 'AuthorURI' -#: woocommerce.php:0 -msgid "http://woothemes.com" -msgstr "" - -# @ woocommerce -#. translators: plugin header field 'Version' -#: woocommerce.php:0 -msgid "2.0.0" -msgstr "" diff --git a/i18n/languages/woocommerce-cs_CZ.mo b/i18n/languages/woocommerce-cs_CZ.mo deleted file mode 100644 index 5e21a7eb002..00000000000 Binary files a/i18n/languages/woocommerce-cs_CZ.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-cs_CZ.po b/i18n/languages/woocommerce-cs_CZ.po deleted file mode 100644 index e2e3174658b..00000000000 --- a/i18n/languages/woocommerce-cs_CZ.po +++ /dev/null @@ -1,14813 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce v2.0.13\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-23 10:01+0100\n" -"PO-Revision-Date: 2013-10-17 22:19+0100\n" -"Last-Translator: Sergey Biryukov \n" -"Language-Team: Marek Rabas \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Poedit 1.5.7\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" -"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" -"X-Poedit-Basepath: .\n" -"X-Textdomain-Support: yes\n" -"X-Poedit-SearchPath-0: .\n" - -# @ woocommerce -#: i18n/strings.php:16 -msgid "pending" -msgstr "Čeká na vyřízení" - -# @ woocommerce -#: i18n/strings.php:17 -msgid "failed" -msgstr "Selhalo" - -# @ woocommerce -#: i18n/strings.php:18 -msgid "on-hold" -msgstr "Čeká na vyřízení" - -# @ woocommerce -#: i18n/strings.php:19 -msgid "processing" -msgstr "Zpracovává se" - -# @ woocommerce -#: i18n/strings.php:20 -msgid "completed" -msgstr "Dokončeno" - -# @ woocommerce -#: i18n/strings.php:21 -msgid "refunded" -msgstr "Vrácení peněz" - -# @ woocommerce -#: i18n/strings.php:22 -msgid "cancelled" -msgstr "Zrušeno" - -# @ woocommerce -#: woocommerce-core-functions.php:1938 -msgid "Customer" -msgstr "Zákazník" - -# @ woocommerce -#: woocommerce-core-functions.php:1945 -msgid "Shop Manager" -msgstr "Správce obchodu" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:52 woocommerce-template.php:1384 -msgid "Select a state…" -msgstr "Vyberte stát…" - -# @ woocommerce -#: woocommerce-functions.php:1330 -msgid "You have taken too long. Please go back and refresh the page." -msgstr "Trvalo Vám to příliš dlouho. Prosím, vraťte se zpět a obnovte stránku." - -# @ woocommerce -#: woocommerce-functions.php:1333 -msgid "Please rate the product." -msgstr "Ohodnoťte produkt, prosím." - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:279 -#: classes/abstracts/abstract-wc-product.php:966 -#: templates/single-product/review.php:27 -#: templates/single-product-reviews.php:28 -msgid "out of 5" -msgstr "z 5" - -# @ woocommerce -#: templates/single-product/review.php:33 -msgid "Your comment is awaiting approval" -msgstr "Váš komentář čeká na schválení" - -# @ woocommerce -#: woocommerce-functions.php:226 woocommerce-functions.php:271 -msgid "Cart updated." -msgstr "Košík aktualizován." - -# @ woocommerce -#: woocommerce-functions.php:315 woocommerce-functions.php:373 -msgid "Please choose product options…" -msgstr "Prosím zvolte možnosti produktu…" - -# @ woocommerce -#: woocommerce-functions.php:664 -msgid "Username is required." -msgstr "Uživatelské jméno je povinné." - -# @ woocommerce -#: woocommerce-functions.php:666 woocommerce-functions.php:758 -msgid "Password is required." -msgstr "Heslo je povinné." - -# @ woocommerce -#: woocommerce-functions.php:759 -msgid "Re-enter your password." -msgstr "Zadejte své heslo znovu, prosím." - -# @ woocommerce -#: classes/class-wc-checkout.php:570 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:83 -#: woocommerce-functions.php:760 woocommerce-functions.php:1628 -msgid "Passwords do not match." -msgstr "Hesla se neshodují." - -# @ woocommerce -#: woocommerce-functions.php:764 -msgid "Anti-spam field was filled in." -msgstr "Anti-spamové pole bylo vyplněno. Pro pokračování je nechte volné." - -# @ woocommerce -#: woocommerce-functions.php:898 -msgid "Order cancelled by customer." -msgstr "Zrušení objednávky zákazníkem." - -# @ woocommerce -#: woocommerce-functions.php:901 -msgid "Your order was cancelled." -msgstr "Vaše objednávka byla zrušena." - -# @ woocommerce -#: woocommerce-functions.php:907 -msgid "" -"Your order is no longer pending and could not be cancelled. Please contact " -"us if you need assistance." -msgstr "" -"Vaše objednávka již byla potvrzena a nejde zrušit. Neváhejte nás kontaktovat " -"v případě potřeby." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:69 -#: classes/shortcodes/class-wc-shortcode-pay.php:125 -#: classes/shortcodes/class-wc-shortcode-view-order.php:51 -#: woocommerce-functions.php:911 woocommerce-functions.php:991 -msgid "Invalid order." -msgstr "Neplatná objednávka." - -# @ woocommerce -#: admin/post-types/shop_order.php:95 -#: admin/post-types/writepanels/writepanel-order_data.php:93 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:120 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:180 -#: woocommerce-ajax.php:1654 -msgid "Guest" -msgstr "Neregistrovat se" - -# @ woocommerce -#: woocommerce-functions.php:1276 -msgid "New products" -msgstr "Nové produkty" - -# @ woocommerce -#: woocommerce-functions.php:1284 -#, php-format -msgid "New products added to %s" -msgstr "Nové produkty přidány do %s" - -# @ woocommerce -#: woocommerce-functions.php:1292 -#, php-format -msgid "New products tagged %s" -msgstr "Nové produkty se štítkem %s" - -# @ woocommerce -#: woocommerce-ajax.php:119 -msgid "Sorry, your session has expired." -msgstr "Omlouváme se, ale Vaše relace vypršela." - -# @ woocommerce -#: woocommerce-ajax.php:119 -msgid "Return to homepage →" -msgstr "Zpět na domovskou stránku →" - -# @ woocommerce -#: woocommerce-ajax.php:256 woocommerce-ajax.php:290 woocommerce-ajax.php:313 -msgid "You do not have sufficient permissions to access this page." -msgstr "Nemáte dostatečná oprávnění pro přístup k této stránce." - -# @ woocommerce -#: woocommerce-ajax.php:258 woocommerce-ajax.php:291 woocommerce-ajax.php:314 -msgid "You have taken too long. Please go back and retry." -msgstr "Trvalo Vám to příliš dlouho. Prosím, vraťte se zpět a zkuste to znovu." - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:10 -msgid "Product ID:" -msgstr "Produkt ID:" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:13 -msgid "Variation ID:" -msgstr "Číslo ID varianty:" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:16 -msgid "Product SKU:" -msgstr "Katalogové číslo produktu:" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:44 -msgid "Add meta" -msgstr "Přidat meta" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:523 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:524 -msgid "0.00" -msgstr "0" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -#, php-format -msgid "added %s ago" -msgstr "přidáno před %s" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -#: woocommerce-ajax.php:1487 -msgid "Delete note" -msgstr "Vymazat poznámku" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:190 -#: admin/woocommerce-admin-install.php:225 -msgid "Order Received" -msgstr "Přijaté objednávky" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:36 -msgid "A note has been added to your order" -msgstr "K Vaší objednávce byla přidána poznámka." - -# @ woocommerce -#: classes/class-wc-emails.php:281 -msgid "Product low in stock" -msgstr "Produkt má nízké skladové zásoby" - -# @ woocommerce -#: classes/class-wc-emails.php:290 -msgid "is low in stock." -msgstr "již dochází na skladě." - -# @ woocommerce -#: classes/class-wc-emails.php:313 -msgid "Product out of stock" -msgstr "Produkt není skladem" - -# @ woocommerce -#: classes/class-wc-emails.php:322 -msgid "is out of stock." -msgstr "není skladem." - -# @ woocommerce -#: classes/class-wc-emails.php:357 -msgid "Product Backorder" -msgstr "Nevyřízená objednávka" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:49 -#: admin/woocommerce-admin-init.php:885 woocommerce.php:786 -msgctxt "slug" -msgid "product-category" -msgstr "kategorie-produktu" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:50 -#: admin/woocommerce-admin-init.php:898 woocommerce.php:787 -msgctxt "slug" -msgid "product-tag" -msgstr "stitek-produktu" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:57 -#: woocommerce.php:821 woocommerce.php:823 -msgid "Product Categories" -msgstr "Kategorie produktů" - -# @ woocommerce -#: woocommerce.php:826 -msgid "Search Product Categories" -msgstr "Vyhledávat v kategoriích produktů" - -# @ woocommerce -#: woocommerce.php:827 -msgid "All Product Categories" -msgstr "Všechny kategorie produktů" - -# @ woocommerce -#: woocommerce.php:828 -msgid "Parent Product Category" -msgstr "Nadřazená kategorie produktu" - -# @ woocommerce -#: woocommerce.php:829 -msgid "Parent Product Category:" -msgstr "Nadřazená kategorie produktu:" - -# @ woocommerce -#: woocommerce.php:830 -msgid "Edit Product Category" -msgstr "Upravit kategorii produktu" - -# @ woocommerce -#: woocommerce.php:831 -msgid "Update Product Category" -msgstr "Aktualizovat kategorii produktu" - -# @ woocommerce -#: woocommerce.php:832 -msgid "Add New Product Category" -msgstr "Přidat novou kategorii produktu" - -# @ woocommerce -#: woocommerce.php:833 -msgid "New Product Category Name" -msgstr "Název nové kategorie produktu" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-tag-cloud.php:58 -#: woocommerce.php:857 woocommerce.php:859 -msgid "Product Tags" -msgstr "Štítky produktu" - -# @ woocommerce -#: woocommerce.php:862 -msgid "Search Product Tags" -msgstr "Vyhledávat ve štítcích produktů" - -# @ woocommerce -#: woocommerce.php:863 -msgid "All Product Tags" -msgstr "Všechny štítky produktů" - -# @ woocommerce -#: woocommerce.php:864 -msgid "Parent Product Tag" -msgstr "Nadřazený štítek produktu" - -# @ woocommerce -#: woocommerce.php:865 -msgid "Parent Product Tag:" -msgstr "Nadřazený štítek produktu:" - -# @ woocommerce -#: woocommerce.php:866 -msgid "Edit Product Tag" -msgstr "Upravit štítek produktu" - -# @ woocommerce -#: woocommerce.php:867 -msgid "Update Product Tag" -msgstr "Aktualizovat štítek produktu" - -# @ woocommerce -#: woocommerce.php:868 -msgid "Add New Product Tag" -msgstr "Přidat nový štítek produktu" - -# @ woocommerce -#: woocommerce.php:869 -msgid "New Product Tag Name" -msgstr "Název nového štítku produktu" - -# @ woocommerce -#: woocommerce.php:888 woocommerce.php:890 -msgid "Shipping Classes" -msgstr "Doručovací třídy" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:485 -#: woocommerce.php:891 -msgid "Shipping Class" -msgstr "Doručovací třída" - -# @ woocommerce -#: woocommerce.php:893 -msgid "Search Shipping Classes" -msgstr "Hledat v doručovacích třídách" - -# @ woocommerce -#: woocommerce.php:894 -msgid "All Shipping Classes" -msgstr "Včechny doručovací třídy" - -# @ woocommerce -#: woocommerce.php:895 -msgid "Parent Shipping Class" -msgstr "Nadřazená doručovací třída" - -# @ woocommerce -#: woocommerce.php:896 -msgid "Parent Shipping Class:" -msgstr "Nadřazená doručovací třída:" - -# @ woocommerce -#: woocommerce.php:897 -msgid "Edit Shipping Class" -msgstr "Upravit doručovací třídu" - -# @ woocommerce -#: woocommerce.php:898 -msgid "Update Shipping Class" -msgstr "Aktualizovat doručovací třídu" - -# @ woocommerce -#: woocommerce.php:899 -msgid "Add New Shipping Class" -msgstr "Přidat novou doručovací třídu" - -# @ woocommerce -#: woocommerce.php:900 -msgid "New Shipping Class Name" -msgstr "Název doručovací třídy" - -# @ woocommerce -#: admin/post-types/product.php:620 admin/post-types/product.php:895 -#: admin/post-types/writepanels/writepanel-product_data.php:1049 -#: woocommerce-template.php:1498 woocommerce.php:947 -msgid "Search" -msgstr "Hledání" - -# @ woocommerce -#: woocommerce.php:948 -msgid "All" -msgstr "Vše" - -# @ woocommerce -#: woocommerce.php:949 woocommerce.php:950 -msgid "Parent" -msgstr "Nadřazené" - -# @ default -# @ woocommerce -#: admin/post-types/product.php:151 -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#: admin/post-types/writepanels/writepanel-order_data.php:387 -#: admin/post-types/writepanels/writepanel-product_data.php:1062 -#: admin/woocommerce-admin-attributes.php:330 -#: templates/myaccount/my-address.php:45 woocommerce.php:951 -#: woocommerce.php:987 woocommerce.php:1024 woocommerce.php:1062 -#: woocommerce.php:1100 -msgid "Edit" -msgstr "Upravit" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:284 woocommerce.php:952 -msgid "Update" -msgstr "Aktualizovat" - -# @ woocommerce -#: woocommerce.php:953 -msgid "Add New" -msgstr "Přidat nový" - -# @ woocommerce -#: woocommerce.php:954 -msgid "New" -msgstr "Nový" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:74 -#: admin/woocommerce-admin-taxonomies.php:28 -#: admin/woocommerce-admin-taxonomies.php:122 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:273 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:293 -#: woocommerce.php:982 -msgid "Products" -msgstr "Produkty" - -# @ woocommerce -#: woocommerce.php:985 -msgid "Add Product" -msgstr "Přidat produkt" - -# @ woocommerce -#: woocommerce.php:986 -msgid "Add New Product" -msgstr "Přidat nový produkt" - -# @ woocommerce -#: woocommerce.php:988 -msgid "Edit Product" -msgstr "Upravit produkt" - -# @ woocommerce -#: woocommerce.php:989 -msgid "New Product" -msgstr "Nový produkt" - -# @ woocommerce -#: woocommerce.php:990 woocommerce.php:991 -msgid "View Product" -msgstr "Zobrazit produkt" - -# @ woocommerce -#: woocommerce.php:992 -msgid "Search Products" -msgstr "Hledat produkty" - -# @ woocommerce -#: woocommerce.php:993 -msgid "No Products found" -msgstr "Nenalezeny žádné produkty" - -# @ woocommerce -#: woocommerce.php:994 -msgid "No Products found in trash" -msgstr "Žádné produkty v koši" - -# @ woocommerce -#: woocommerce.php:995 -msgid "Parent Product" -msgstr "Nadřazený produkt" - -# @ woocommerce -#: woocommerce.php:997 -msgid "This is where you can add new products to your store." -msgstr "Na tomto místě můžete přidávat nové produkty do Vašeho obchodu." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -#: woocommerce.php:1020 -msgid "Variations" -msgstr "Varianty" - -# @ woocommerce -#: woocommerce.php:1021 -msgid "Variation" -msgstr "Varianta" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:194 -#: woocommerce.php:1022 -msgid "Add Variation" -msgstr "Přidat variantu" - -# @ woocommerce -#: woocommerce.php:1023 -msgid "Add New Variation" -msgstr "Přidat novou variantu" - -# @ woocommerce -#: woocommerce.php:1025 -msgid "Edit Variation" -msgstr "Upravit variantu" - -# @ woocommerce -#: woocommerce.php:1026 -msgid "New Variation" -msgstr "Nová varianta" - -# @ woocommerce -#: woocommerce.php:1027 woocommerce.php:1028 -msgid "View Variation" -msgstr "Zobrazit variantu" - -# @ woocommerce -#: woocommerce.php:1029 -msgid "Search Variations" -msgstr "Hledání varianty" - -# @ woocommerce -#: woocommerce.php:1030 -msgid "No Variations found" -msgstr "Nenalezeny žádné varianty" - -# @ woocommerce -#: woocommerce.php:1031 -msgid "No Variations found in trash" -msgstr "Nenalezeny žádné varianty v koši" - -# @ woocommerce -#: woocommerce.php:1032 -msgid "Parent Variation" -msgstr "Nadřazená varianta" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:68 -#: admin/woocommerce-admin-dashboard.php:142 woocommerce.php:1058 -msgid "Orders" -msgstr "Objednávky" - -# @ woocommerce -#: admin/post-types/shop_order.php:44 templates/myaccount/my-orders.php:32 -#: woocommerce.php:1059 -msgid "Order" -msgstr "Objednávka" - -# @ woocommerce -#: woocommerce.php:1060 -msgid "Add Order" -msgstr "Přidat objednávku" - -# @ woocommerce -#: woocommerce.php:1061 -msgid "Add New Order" -msgstr "Vložit novou objednávku" - -# @ woocommerce -#: woocommerce.php:1063 -msgid "Edit Order" -msgstr "Upravit objednávku" - -# @ woocommerce -#: woocommerce.php:1064 -msgid "New Order" -msgstr "Nová objednávka" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:213 -#: admin/woocommerce-admin-status.php:327 -#: assets/js/admin/editor_plugin_lang.php:21 woocommerce.php:1065 -#: woocommerce.php:1066 -msgid "View Order" -msgstr "Zobrazit objednávku" - -# @ woocommerce -#: woocommerce.php:1067 -msgid "Search Orders" -msgstr "Vyhledávání Objednávky" - -# @ woocommerce -#: woocommerce.php:1068 -msgid "No Orders found" -msgstr "Nenalezeny žádné objednávky" - -# @ woocommerce -#: woocommerce.php:1069 -msgid "No Orders found in trash" -msgstr "Nenalezeny žádné objednávky v koši" - -# @ woocommerce -#: woocommerce.php:1070 -msgid "Parent Orders" -msgstr "Nadřazené objednávky" - -# @ woocommerce -#: woocommerce.php:1073 -msgid "This is where store orders are stored." -msgstr "Toto je místo, kde jsou uloženy objednávky z obchodu." - -# @ woocommerce -#: admin/settings/settings-init.php:105 admin/woocommerce-admin-content.php:61 -#: admin/woocommerce-admin-content.php:76 -#: admin/woocommerce-admin-reports.php:63 woocommerce.php:1095 -msgid "Coupons" -msgstr "Slevové kupóny" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1547 templates/cart/cart.php:127 -#: woocommerce.php:1096 -msgid "Coupon" -msgstr "Slevový kupón" - -# @ woocommerce -#: woocommerce.php:1098 -msgid "Add Coupon" -msgstr "Přidat kupón" - -# @ woocommerce -#: woocommerce.php:1099 -msgid "Add New Coupon" -msgstr "Přidat nový kupón" - -# @ woocommerce -#: woocommerce.php:1101 -msgid "Edit Coupon" -msgstr "Upravit kupón" - -# @ woocommerce -#: woocommerce.php:1102 -msgid "New Coupon" -msgstr "Nový kupón" - -# @ woocommerce -#: woocommerce.php:1103 -msgid "View Coupons" -msgstr "Zobrazit kupóny" - -# @ woocommerce -#: woocommerce.php:1104 -msgid "View Coupon" -msgstr "Zobrazit kupón" - -# @ woocommerce -#: woocommerce.php:1105 -msgid "Search Coupons" -msgstr "Hledat kupón" - -# @ woocommerce -#: woocommerce.php:1106 -msgid "No Coupons found" -msgstr "Nenalezeny žádné kupóny" - -# @ woocommerce -#: woocommerce.php:1107 -msgid "No Coupons found in trash" -msgstr "Nenalezeny žádné kupóny v koši" - -# @ woocommerce -#: woocommerce.php:1108 -msgid "Parent Coupon" -msgstr "Nadřazený kupón" - -# @ woocommerce -#: woocommerce.php:1110 -msgid "" -"This is where you can add new coupons that customers can use in your store." -msgstr "" -"Zde můžete přidávat nové slevové kupóny, které mohou zákazníci využít ve " -"Vašem obchodě." - -# @ woocommerce -#: admin/woocommerce-admin-install.php:219 -msgid "Logout" -msgstr "Odhlášení" - -# @ woocommerce -#: templates/loop/sale-flash.php:16 templates/single-product/sale-flash.php:16 -msgid "Sale!" -msgstr "Sleva" - -# @ woocommerce -#: templates/loop/add-to-cart.php:17 templates/loop/add-to-cart.php:41 -#: templates/loop/add-to-cart.php:50 -msgid "Read More" -msgstr "Více…" - -# @ woocommerce -#: templates/loop/add-to-cart.php:33 -msgid "Select options" -msgstr "Výběr možností" - -# @ woocommerce -#: templates/loop/add-to-cart.php:37 -msgid "View options" -msgstr "Zobrazit možnosti" - -# @ woocommerce -#: admin/settings/settings-init.php:490 classes/class-wc-shortcodes.php:571 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:274 -#: templates/loop/add-to-cart.php:46 -#: templates/single-product/add-to-cart/grouped.php:45 -#: templates/single-product/add-to-cart/grouped.php:77 -#: templates/single-product/add-to-cart/simple.php:42 -#: templates/single-product/add-to-cart/variable.php:83 -msgid "Add to cart" -msgstr "Přidat do košíku" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:218 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:275 -#: templates/single-product/meta.php:19 -msgid "SKU:" -msgstr "Katalogové číslo:" - -# @ woocommerce -#: templates/single-product/add-to-cart/variable.php:24 -msgid "Choose an option" -msgstr "Vyberte možnost" - -# @ woocommerce -#: classes/class-wc-product-external.php:56 -msgid "Buy product" -msgstr "Koupit produkt" - -# @ woocommerce -#: templates/single-product-reviews.php:59 -msgid "Next " -msgstr "Další " - -# @ woocommerce -#: templates/single-product-reviews.php:58 -msgid " Previous" -msgstr " Předchozí" - -# @ woocommerce -#: admin/post-types/product.php:96 admin/post-types/product.php:568 -#: admin/post-types/product.php:789 admin/woocommerce-admin-functions.php:202 -#: templates/cart/cart.php:29 templates/emails/admin-new-order.php:24 -#: templates/emails/customer-completed-order.php:25 -#: templates/emails/customer-invoice.php:29 -#: templates/emails/customer-note.php:29 -#: templates/emails/customer-processing-order.php:25 -msgid "Price" -msgstr "Cena" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:28 -#: classes/gateways/cod/class-wc-gateway-cod.php:94 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:150 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:133 -#: woocommerce-template.php:751 -msgid "Description" -msgstr "Popis" - -# @ woocommerce -#: templates/checkout/form-shipping.php:59 -#: templates/single-product/tabs/additional-information.php:14 -#: woocommerce-template.php:759 -msgid "Additional Information" -msgstr "Další informace" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:64 -#: templates/single-product-reviews.php:36 -#: templates/single-product-reviews.php:42 -msgid "Reviews" -msgstr "Recenze" - -# @ woocommerce -#: templates/single-product/tabs/description.php:14 -msgid "Product Description" -msgstr "Popis produktu" - -# @ woocommerce -#: templates/single-product/related.php:36 -msgid "Related Products" -msgstr "Související produkty" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:22 -msgid "Calculate Shipping" -msgstr "Změnit zemi" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:175 -#: admin/post-types/writepanels/writepanel-order_data.php:265 -#: templates/cart/shipping-calculator.php:28 woocommerce-template.php:1334 -msgid "Select a country…" -msgstr "Vyberte zemi…" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:168 -#: admin/post-types/writepanels/writepanel-order_data.php:258 -#: admin/woocommerce-admin-users.php:171 admin/woocommerce-admin-users.php:220 -#: classes/class-wc-countries.php:970 -msgid "Postcode" -msgstr "PSČ" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:85 -msgid "Update Totals" -msgstr "Aktualizovat celkové částky" - -# @ woocommerce -#: templates/cart/totals.php:22 -msgid "Cart Totals" -msgstr "Celkem k platbě" - -# @ woocommerce -#: templates/cart/totals.php:28 templates/checkout/review-order.php:27 -msgid "Cart Subtotal" -msgstr "Mezisoučet" - -# @ woocommerce -#: templates/cart/totals.php:35 templates/checkout/review-order.php:34 -#: woocommerce.php:1690 -msgid "Cart Discount" -msgstr "Sleva na nákup" - -# @ woocommerce -#: templates/cart/totals.php:35 templates/cart/totals.php:83 -msgid "[Remove]" -msgstr "[Odstranit]" - -# @ woocommerce -#: admin/post-types/shop_order.php:46 -#: admin/post-types/writepanels/writepanel-order_data.php:539 -#: admin/post-types/writepanels/writepanel-product_data.php:81 -#: admin/settings/settings-tax-rates.php:52 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-content.php:49 -#: admin/woocommerce-admin-settings.php:187 templates/cart/totals.php:46 -#: templates/checkout/review-order.php:45 -msgid "Shipping" -msgstr "Doručení" - -# @ woocommerce -#: templates/cart/totals.php:83 templates/checkout/review-order.php:82 -msgid "Order Discount" -msgstr "Sleva na nákup" - -# @ woocommerce -#: admin/post-types/shop_order.php:47 templates/cart/totals.php:92 -#: templates/checkout/review-order.php:91 -msgid "Order Total" -msgstr "Cena celkem" - -# @ woocommerce -#: templates/cart/shipping-methods.php:76 templates/cart/totals.php:147 -#, php-format -msgid "" -"Sorry, it seems that there are no available shipping methods for your " -"location (%s)." -msgstr "" -"Omlouváme se, ale zdá se, že nejsou k dispozici žádné způsoby doručení pro " -"Váš stát (%s)." - -# @ woocommerce -#: templates/cart/shipping-methods.php:76 templates/cart/totals.php:147 -msgid "" -"If you require assistance or wish to make alternate arrangements please " -"contact us." -msgstr "" -"Pokud potřebujete naši pomoc nebo si přejete dohodnout se na jiném postupu, " -"neváhejte nás kontaktovat." - -# @ woocommerce -#: templates/myaccount/form-login.php:66 -msgid "Username" -msgstr "Uživatelské jméno" - -# @ woocommerce -#: templates/myaccount/form-login.php:33 templates/myaccount/form-login.php:85 -#: templates/shop/form-login.php:24 -msgid "Password" -msgstr "Heslo" - -# @ woocommerce -#: templates/myaccount/form-login.php:26 templates/myaccount/form-login.php:40 -#: templates/shop/form-login.php:31 -msgid "Login" -msgstr "Přihlášení" - -# @ woocommerce -#: templates/myaccount/form-login.php:50 templates/shop/form-login.php:33 -msgid "Lost Password?" -msgstr "Zapomněli jste heslo?" - -# @ woocommerce -#: templates/checkout/form-login.php:17 -msgid "Click here to login" -msgstr "Klikněte zde pro přihlášení" - -# @ woocommerce -#: woocommerce-template.php:993 -msgctxt "breadcrumb" -msgid "Home" -msgstr "Domů" - -# @ woocommerce -#: templates/shop/breadcrumb.php:63 -msgid "Products tagged “" -msgstr "Produkty se šítkem “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:91 templates/shop/breadcrumb.php:188 -msgid "Search results for “" -msgstr "Výsledky hledání pro výraz “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:146 -msgid "Error 404" -msgstr "Chyba 404 - Nenalezeno" - -# @ woocommerce -#: templates/shop/breadcrumb.php:192 -msgid "Posts tagged “" -msgstr "Příspěvky se štítkem “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:197 -msgid "Author:" -msgstr "Autor:" - -# @ woocommerce -#: templates/shop/breadcrumb.php:202 -msgid "Page" -msgstr "Stránka" - -# @ woocommerce -#: templates/single-product/up-sells.php:39 -msgid "You may also like…" -msgstr "Mohlo by se Vám líbit…" - -# @ woocommerce -#: templates/cart/cross-sells.php:38 -msgid "You may be interested in…" -msgstr "Mohlo by Vás zajímat…" - -# @ woocommerce -#: admin/settings/settings-init.php:95 woocommerce-template.php:200 -msgid "" -"This is a demo store for testing purposes — no orders shall be " -"fulfilled." -msgstr "" -"Toto je ukázkový obchod pro testovací účely. Objednávky nebudou vyžízeny." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:59 -#: templates/order/order-details.php:16 -msgid "Order Details" -msgstr "Podrobnosti o objednávce" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:347 -#: templates/checkout/form-pay.php:20 -msgid "Qty" -msgstr "Množství" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:349 -#: templates/checkout/form-pay.php:21 -msgid "Totals" -msgstr "Celkem" - -# @ woocommerce -#: classes/class-wc-order.php:949 -msgid "Cart Subtotal:" -msgstr "Mezisoučet:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:502 -#: classes/class-wc-order.php:955 -msgid "Cart Discount:" -msgstr "Sleva na nákup" - -# @ woocommerce -#: classes/class-wc-order.php:961 -msgid "Shipping:" -msgstr "Doručení:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:510 -#: classes/class-wc-order.php:997 -msgid "Order Discount:" -msgstr "Sleva na objednávku:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:656 -#: classes/class-wc-order.php:1002 -msgid "Order Total:" -msgstr "Cena celkem:" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:220 -#: templates/emails/admin-new-order.php:50 -#: templates/emails/customer-completed-order.php:51 -#: templates/emails/customer-note.php:55 -#: templates/emails/customer-processing-order.php:51 -#: templates/emails/plain/admin-new-order.php:38 -#: templates/order/order-details.php:97 -msgid "Customer details" -msgstr "Informace o zákazníkovi" - -# @ woocommerce -#: admin/post-types/shop_order.php:101 templates/emails/admin-new-order.php:53 -#: templates/emails/customer-completed-order.php:54 -#: templates/emails/customer-note.php:58 -#: templates/emails/customer-processing-order.php:54 -#: templates/emails/plain/admin-new-order.php:41 -#: templates/emails/plain/customer-completed-order.php:41 -#: templates/emails/plain/customer-note.php:49 -#: templates/emails/plain/customer-processing-order.php:41 -#: templates/order/order-details.php:101 -msgid "Email:" -msgstr "E-mail:" - -# @ woocommerce -#: templates/order/order-details.php:102 -msgid "Telephone:" -msgstr "Telefon:" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:27 -#: templates/checkout/form-shipping.php:35 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:20 templates/order/order-details.php:130 -msgid "Shipping Address" -msgstr "Doručovací adresa" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:19 -#: admin/post-types/writepanels/order-tax-html.php:8 -#: admin/post-types/writepanels/writepanel-order_data.php:561 -#: admin/post-types/writepanels/writepanel-order_data.php:666 -#: admin/woocommerce-admin-reports.php:1658 -#: admin/woocommerce-admin-reports.php:2671 -#: admin/woocommerce-admin-reports.php:2680 -#: admin/woocommerce-admin-users.php:90 admin/woocommerce-admin-users.php:112 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:499 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:500 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:110 -#: templates/order/order-details.php:119 templates/order/order-details.php:134 -msgid "N/A" -msgstr "-" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:26 templates/checkout/form-billing.php:21 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:19 templates/myaccount/my-address.php:25 -#: templates/order/order-details.php:115 -msgid "Billing Address" -msgstr "Fakturační adresa" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:85 -#: admin/woocommerce-admin-attributes.php:306 -#: admin/woocommerce-admin-init.php:66 -msgid "Attributes" -msgstr "Vlastnosti" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:234 -msgid "Edit Attribute" -msgstr "Upravit vlastnost" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:262 -#: admin/woocommerce-admin-attributes.php:395 -msgid "Select" -msgstr "Vybrat" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:263 -#: admin/woocommerce-admin-attributes.php:396 -msgid "Text" -msgstr "Text" - -# @ woocommerce -#: admin/post-types/product.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:376 -#: admin/post-types/writepanels/writepanel-product_data.php:470 -#: admin/woocommerce-admin-attributes.php:240 -#: admin/woocommerce-admin-attributes.php:276 -#: admin/woocommerce-admin-attributes.php:314 -#: admin/woocommerce-admin-attributes.php:337 -#: admin/woocommerce-admin-attributes.php:381 -#: admin/woocommerce-admin-attributes.php:406 -#: admin/woocommerce-admin-init.php:437 -#: classes/widgets/class-wc-widget-product-categories.php:191 -#: templates/single-product-reviews.php:84 woocommerce-ajax.php:1173 -msgid "Name" -msgstr "Jméno" - -# @ woocommerce -#: admin/post-types/product.php:101 admin/woocommerce-admin-attributes.php:258 -#: admin/woocommerce-admin-attributes.php:316 -#: admin/woocommerce-admin-attributes.php:393 -msgid "Type" -msgstr "Typ" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:318 -msgid "Terms" -msgstr "Podmínky" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:43 -#: admin/post-types/writepanels/writepanel-product_images.php:103 -#: admin/woocommerce-admin-attributes.php:330 -msgid "Delete" -msgstr "Vymazat" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:363 -msgid "Configure terms" -msgstr "Nastavení podmínek" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:367 -msgid "No attributes currently exist." -msgstr "Žádné vlastnosti v současné době neexistují." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:377 -msgid "Add New Attribute" -msgstr "Přidat novou vlastnost" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:378 -msgid "" -"Attributes let you define extra product data, such as size or colour. You " -"can use these attributes in the shop sidebar using the \"layered nav\" " -"widgets. Please note: you cannot rename an attribute later on." -msgstr "" -"Vlastnosti umožňují definovat další údaje o produktu, jako je například " -"velikost nebo barvu. Můžete použít tyto vlastnosti v obchodě na postranním " -"panelu pomocí widgetu \"layered nav\" . Upozornění: později nelze vlastnost " -"přejmenovat." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:266 -#: admin/woocommerce-admin-attributes.php:399 -msgid "" -"Determines how you select attributes for products. Text " -"allows manual entry via the product page, whereas select " -"attribute terms can be defined from this section. If you plan on using an " -"attribute for variations use select." -msgstr "" -"Zde určíte způsob výběru vlastností u produktů. Text " -"umožňuje ruční zadání na produktové stránce, zatímco volba vybrat vlastnost nabídne pouze volby určené v této sekci. Pokud plánujete " -"používat vlastnosti pro varianty, použijte volbu vybrat." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:412 -msgid "Add Attribute" -msgstr "Přidat vlastnost" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:423 -msgid "Are you sure you want to delete this attribute?" -msgstr "Jste si jisti, že chcete smazat tuto vlastnost?" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:78 -msgid "Shop Content" -msgstr "Obsah obchodu" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:148 -msgid "Pending" -msgstr "Čekající na vyřízení" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:162 -msgid "On-Hold" -msgstr "Čeká na vyřízení" - -# @ woocommerce -#: admin/post-types/shop_order.php:158 -#: admin/woocommerce-admin-dashboard.php:176 -msgid "Processing" -msgstr "Zpracovává se" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:190 -msgid "Completed" -msgstr "Dokončeno" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:40 -msgid "Monthly Sales" -msgstr "Měsíční tržby" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:239 -msgid "item" -msgid_plural "items" -msgstr[0] "kus" -msgstr[1] "kusy" -msgstr[2] "kusů" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:239 -#: classes/shortcodes/class-wc-shortcode-pay.php:98 -#: templates/checkout/thankyou.php:48 -msgid "Total:" -msgstr "Cena celkem:" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:287 -msgid "There are no product reviews yet." -msgstr "Zatím zde nejsou žádné recenze pro tento produkt." - -# @ woocommerce -#. translators: plugin header field 'Name' -#: admin/woocommerce-admin-content.php:83 admin/woocommerce-admin-init.php:62 -#: admin/woocommerce-admin-init.php:71 admin/woocommerce-admin-init.php:404 -#: classes/class-wc-order.php:1167 classes/class-wc-order.php:1169 -#: classes/class-wc-order.php:1172 woocommerce.php:0 -msgid "WooCommerce" -msgstr "E-shop" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:88 -msgid "WooCommerce Settings" -msgstr "Nastavení e-shopu" - -# @ woocommerce -#: admin/includes/welcome.php:153 admin/woocommerce-admin-content.php:41 -#: admin/woocommerce-admin-init.php:88 admin/woocommerce-admin-status.php:278 -#: classes/abstracts/abstract-wc-email.php:560 -#: classes/abstracts/abstract-wc-integration.php:30 -#: classes/abstracts/abstract-wc-settings-api.php:39 woocommerce.php:170 -msgid "Settings" -msgstr "Nastavení" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:57 admin/woocommerce-admin-init.php:64 -msgid "Reports" -msgstr "Zprávy" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:447 -msgid "" -"Copy billing information to shipping information? This will remove any " -"currently entered shipping information." -msgstr "" -"Kopírovat fakturační údaje do doručovacích údajů? Tím se přepíší aktuálně " -"zapsané doručovací údaje." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:448 -msgid "" -"Load the customer's billing information? This will remove any currently " -"entered billing information." -msgstr "" -"Načíst fakturační údaje zákazníka? Tím se přepíší aktuálně zapsané " -"fakturační údaje." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:449 -msgid "" -"Load the customer's shipping information? This will remove any currently " -"entered shipping information." -msgstr "" -"Načíst doručovací údaje zákazníka? Tím se přepíší aktuálně zapsané " -"doručovací údaje." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:386 -msgid "Select terms" -msgstr "Vyberte výrazy" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:453 -msgid "No customer selected" -msgstr "Není vybrán žádný zákazník" - -# @ woocommerce -#: admin/includes/duplicate_product.php:23 -msgid "No product to duplicate has been supplied!" -msgstr "Žádný produkt k duplikování nedodán." - -# @ woocommerce -#: admin/includes/duplicate_product.php:43 -msgid "Product creation failed, could not find original product:" -msgstr "Vytvoření produktu selhalo, původní produkt nebyl nalezen: " - -# @ woocommerce -#: admin/post-types/product.php:31 -msgid "Make a duplicate from this product" -msgstr "Udělat duplikát tohoto produktu" - -# @ woocommerce -#: admin/post-types/product.php:32 -msgid "Duplicate" -msgstr "Duplikát" - -# @ woocommerce -#: admin/post-types/product.php:61 -msgid "Copy to a new draft" -msgstr "Nový koncept kopírováním" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:195 -msgctxt "page_slug" -msgid "shop" -msgstr "obchod" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:195 -msgid "Shop" -msgstr "Obchod" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:198 -msgctxt "page_slug" -msgid "cart" -msgstr "košík" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:198 -#: admin/woocommerce-admin-status.php:303 -#: assets/js/admin/editor_plugin_lang.php:15 -#: classes/widgets/class-wc-widget-cart.php:61 -msgid "Cart" -msgstr "Košík" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:201 -msgctxt "page_slug" -msgid "checkout" -msgstr "pokladna" - -# @ woocommerce -#: admin/settings/settings-init.php:114 -#: admin/woocommerce-admin-install.php:201 -#: admin/woocommerce-admin-status.php:307 -#: assets/js/admin/editor_plugin_lang.php:16 -msgid "Checkout" -msgstr "Pokladna" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:204 -msgctxt "page_slug" -msgid "my-account" -msgstr "muj-ucet" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:204 -#: admin/woocommerce-admin-status.php:319 -#: assets/js/admin/editor_plugin_lang.php:18 -#: templates/checkout/thankyou.php:30 -msgid "My Account" -msgstr "Můj účet" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:210 -msgctxt "page_slug" -msgid "edit-address" -msgstr "upravit-adresu" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:210 -msgid "Edit My Address" -msgstr "Upravit moji adresu" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:213 -msgctxt "page_slug" -msgid "view-order" -msgstr "zobrazit-objednavku" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:216 -msgctxt "page_slug" -msgid "change-password" -msgstr "zmena-hesla" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:216 -#: admin/woocommerce-admin-status.php:331 -#: assets/js/admin/editor_plugin_lang.php:20 -msgid "Change Password" -msgstr "Změna hesla" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:222 -msgctxt "page_slug" -msgid "pay" -msgstr "zaplatit" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:222 -msgid "Checkout → Pay" -msgstr "K pokladně → zaplatit" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:225 -msgctxt "page_slug" -msgid "order-received" -msgstr "prijate-objednavky" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:26 -#: admin/woocommerce-admin-reports.php:26 -#: admin/woocommerce-admin-reports.php:66 -#: admin/woocommerce-admin-reports.php:82 -#: admin/woocommerce-admin-reports.php:93 -msgid "Overview" -msgstr "Přehled" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:32 -msgid "Sales by day" -msgstr "Denní třby" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:37 -msgid "Sales by month" -msgstr "Měsíční tržby" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:42 -msgid "Product Sales" -msgstr "Tržby produktů" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:47 -msgid "Top sellers" -msgstr "Nejprodávanější" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:52 -msgid "Top earners" -msgstr "Nejvíce vydělávající" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:380 -msgid "Total sales" -msgstr "Tržby celkem" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:382 -#: admin/woocommerce-admin-reports.php:388 -#: admin/woocommerce-admin-reports.php:394 -#: admin/woocommerce-admin-reports.php:400 -#: admin/woocommerce-admin-reports.php:406 -#: admin/woocommerce-admin-reports.php:412 -#: admin/woocommerce-admin-reports.php:655 -#: admin/woocommerce-admin-reports.php:661 -#: admin/woocommerce-admin-reports.php:667 -#: admin/woocommerce-admin-reports.php:673 -#: admin/woocommerce-admin-reports.php:839 -#: admin/woocommerce-admin-reports.php:845 -#: admin/woocommerce-admin-reports.php:851 -#: admin/woocommerce-admin-reports.php:857 -#: admin/woocommerce-admin-reports.php:1380 -#: admin/woocommerce-admin-reports.php:1386 -#: admin/woocommerce-admin-reports.php:1392 -#: admin/woocommerce-admin-reports.php:1826 -#: admin/woocommerce-admin-reports.php:1832 -#: admin/woocommerce-admin-reports.php:1838 -#: admin/woocommerce-admin-reports.php:1844 -#: admin/woocommerce-admin-reports.php:1850 -#: admin/woocommerce-admin-reports.php:1856 -#: admin/woocommerce-admin-reports.php:2320 -#: admin/woocommerce-admin-reports.php:2331 -#: admin/woocommerce-admin-reports.php:2342 -msgid "n/a" -msgstr "-" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:386 -msgid "Total orders" -msgstr "Celkový počet objednávek" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:392 -msgid "Average order total" -msgstr "Průměrná cena celkem" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:398 -msgid "Average order items" -msgstr "Průměrný počet položek objednávky" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1372 -msgid "From:" -msgstr "Od:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1372 -msgid "To:" -msgstr "Do:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:832 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1245 -#: admin/woocommerce-admin-reports.php:1372 -#: admin/woocommerce-admin-reports.php:1505 -#: admin/woocommerce-admin-reports.php:2309 -#: admin/woocommerce-admin-reports.php:2492 -msgid "Show" -msgstr "Zobrazit" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:653 -msgid "Total sales in range" -msgstr "Celkové tržby v rozsahu" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:659 -msgid "Total orders in range" -msgstr "Celkový počet objednávek v rozsahu" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:665 -msgid "Average order total in range" -msgstr "Průměrná celková cena objednávky v rozsahu" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:671 -msgid "Average order items in range" -msgstr "Průměrná cena položky v rozmezí" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:679 -msgid "Sales in range" -msgstr "Tržby v rozsahu" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:826 -#: admin/woocommerce-admin-reports.php:2303 -msgid "Year:" -msgstr "Rok:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:837 -msgid "Total sales for year" -msgstr "Celkové tržby za rok" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:843 -msgid "Total orders for year" -msgstr "Celkový počet objednávek za rok" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:849 -msgid "Average order total for year" -msgstr "Průměrná celková cena objednávky za rok" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:855 -msgid "Average order items for year" -msgstr "Průměrná cena položky za rok" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:863 -msgid "Monthly sales for year" -msgstr "Měsíční tržby za rok" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:60 -#: admin/woocommerce-admin-reports.php:23 -#: admin/woocommerce-admin-reports.php:997 -#: admin/woocommerce-admin-reports.php:1095 -#: admin/woocommerce-admin-reports.php:1214 -msgid "Sales" -msgstr "Tržby" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1011 -msgid "Product does not exist" -msgstr "Produkt neexistuje" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1110 -msgid "Product no longer exists" -msgstr "Produkt neexistuje" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1213 -#: admin/woocommerce-admin-reports.php:2351 -msgid "Month" -msgstr "Měsíc" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1235 -msgid "No sales :(" -msgstr "Žádné tržby" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1824 -msgid "Total customers" -msgstr "Celkový počet zákazníků" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1830 -msgid "Total customer sales" -msgstr "Celkové tržby registrovaných zákazníků" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1836 -msgid "Total guest sales" -msgstr "Celkové tržby neregistrovaných" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1842 -msgid "Total customer orders" -msgstr "Celkový počet objednávek registrovaných zákazníků" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1848 -msgid "Total guest orders" -msgstr "Celkový počet objednávek neregistrovaných" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1854 -msgid "Average orders per customer" -msgstr "Průměrný počet objednávek na zákazníka" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1862 -msgid "Signups per day" -msgstr "Počet přihlášení za den" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2083 -msgid "Low stock" -msgstr "Nízký stav skladu" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2111 -msgid "No products are low in stock." -msgstr "Žádné zboží nemá nízký stav na skladě." - -# @ woocommerce -#: admin/post-types/product.php:264 admin/post-types/product.php:642 -#: admin/post-types/product.php:931 -#: admin/post-types/writepanels/writepanel-product_data.php:232 -#: admin/woocommerce-admin-reports.php:2119 -#: classes/abstracts/abstract-wc-product.php:573 -#: classes/abstracts/abstract-wc-product.php:583 -#: classes/abstracts/abstract-wc-product.php:587 -msgid "Out of stock" -msgstr "Není skladem" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2150 -msgid "No products are out in stock." -msgstr "Všechny produkty jsou skladem." - -# @ woocommerce -#: admin/post-types/product.php:602 admin/post-types/product.php:880 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:85 -#: admin/post-types/writepanels/writepanel-product_data.php:287 -#: admin/woocommerce-admin-settings.php:797 -msgid "Width" -msgstr "Šířka" - -# @ woocommerce -#: admin/post-types/product.php:603 admin/post-types/product.php:881 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:86 -#: admin/post-types/writepanels/writepanel-product_data.php:288 -#: admin/woocommerce-admin-settings.php:799 -msgid "Height" -msgstr "Výška" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:801 -msgid "Hard Crop" -msgstr "Tvrdý ořez" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:849 -msgid "Choose a country…" -msgstr "Zvolte zemi…" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:869 -msgid "Choose countries…" -msgstr "Zvolte země…" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#: admin/post-types/writepanels/writepanel-product_data.php:191 -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Class" -msgstr "Daňová třída" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:44 -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "Zadejte sazbu daně (v procentech) na 4 desetinná místa" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:52 -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "Zvolte, zda má být tato daňová sazba použita také na poštovné." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:181 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:112 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:86 -msgid "None" -msgstr "Žádný" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:562 -msgid "Delete the selected rates?" -msgstr "Smazat vybrané sazby?" - -# @ woocommerce -#: admin/settings/settings-init.php:33 -msgid "General Options" -msgstr "Obecné možnosti" - -# @ woocommerce -#: admin/settings/settings-init.php:46 -msgid "Currency" -msgstr "Měna" - -# @ woocommerce -#: admin/settings/settings-init.php:47 -msgid "" -"This controls what currency prices are listed at in the catalog and which " -"currency gateways will take payments in." -msgstr "" -"Zde určíte v jaké měně jsou ceny v katalogu, a které měny bude používat " -"PayPal a další brány pro příchozí platby. Podívejte se na seznam " -"podporovaných PayPal měn ." - -# @ woocommerce -#: woocommerce-core-functions.php:703 -msgid "Danish Krone" -msgstr "Dánská koruna" - -# @ woocommerce -#: woocommerce-core-functions.php:706 -msgid "Hungarian Forint" -msgstr "Maďarský Forint" - -# @ woocommerce -#: woocommerce-core-functions.php:709 -msgid "Israeli Shekel" -msgstr "Izrael šekel" - -# @ woocommerce -#: woocommerce-core-functions.php:714 -msgid "Norwegian Krone" -msgstr "Norská koruna" - -# @ woocommerce -#: woocommerce-core-functions.php:716 -msgid "Philippine Pesos" -msgstr "Filipínské peso" - -# @ woocommerce -#: woocommerce-core-functions.php:717 -msgid "Polish Zloty" -msgstr "Polský zlotý" - -# @ woocommerce -#: woocommerce-core-functions.php:723 -msgid "Swedish Krona" -msgstr "Švédská koruna" - -# @ woocommerce -#: woocommerce-core-functions.php:724 -msgid "Swiss Franc" -msgstr "Švýcarský frank" - -# @ woocommerce -#: woocommerce-core-functions.php:725 -msgid "Taiwan New Dollars" -msgstr "Tchaj-wanské nové dolary" - -# @ woocommerce -#: woocommerce-core-functions.php:726 -msgid "Thai Baht" -msgstr "Thajský Baht" - -# @ woocommerce -#: admin/settings/settings-init.php:58 -msgid "Allowed Countries" -msgstr "Povolené země" - -# @ woocommerce -#: admin/settings/settings-init.php:59 -msgid "These are countries that you are willing to ship to." -msgstr "Jedná se o země, do kterých budete doručovat." - -# @ woocommerce -#: admin/settings/settings-init.php:67 -msgid "All Countries" -msgstr "Všechny země" - -# @ woocommerce -#: admin/settings/settings-init.php:68 admin/settings/settings-init.php:73 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:95 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:99 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:98 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:149 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:153 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:105 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:109 -msgid "Specific Countries" -msgstr "Vybrané země" - -# @ woocommerce -#: admin/settings/settings-init.php:175 -msgid "Customer Accounts" -msgstr "Účty zákazníků" - -# @ woocommerce -#: admin/settings/settings-init.php:184 -msgid "Clear cart when logging out" -msgstr "Vyprázdnit košík po odhlášení" - -# @ woocommerce -#: admin/settings/settings-init.php:176 -msgid "Prevent customers from accessing WordPress admin" -msgstr "Zamezit zákazníkům v přístupu do administrace WordPressu" - -# @ woocommerce -#: admin/settings/settings-init.php:204 -msgid "Styling" -msgstr "Styl obchodu" - -# @ woocommerce -#: admin/settings/settings-init.php:216 -msgid "Scripts" -msgstr "Skripty" - -# @ woocommerce -#: admin/settings/settings-init.php:240 -msgid "" -"Forcing downloads will keep URLs hidden, but some servers may serve large " -"files unreliably. If supported, X-Accel-Redirect/ X-" -"Sendfile can be used to serve downloads instead (server requires " -"mod_xsendfile)." -msgstr "" -"Vynucení stahování ukryje URL stahovaného souboru, ale stahování větších " -"souborů může být na některých serverech problematické. Namísto toho použijte " -"X-Accel-Redirect/ X-Sendfile, pokud je podporováno " -"(server vyžaduje PHP funkci mod_xsendfile)." - -# @ woocommerce -#: admin/settings/settings-init.php:248 -msgid "Force Downloads" -msgstr "Vynutit stažení" - -# @ woocommerce -#: admin/settings/settings-init.php:249 -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "X-Accel-Redirect/X-Sendfile" - -# @ woocommerce -#: admin/settings/settings-init.php:250 -msgid "Redirect only" -msgstr "Pouze přesměrování" - -# @ woocommerce -#: admin/settings/settings-init.php:18 -msgid "Localisation" -msgstr "Lokalizace" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:29 -msgid "ShareThis" -msgstr "ShareThis" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:63 -msgid "ShareThis Publisher ID" -msgstr "ID vydavatele ShareThis" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:64 -#, php-format -msgid "" -"Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons on " -"product pages." -msgstr "" -"Zadejte svoje %1$sShareThis publisher ID%2$s a objeví se volba Sdílet na " -"stránce produktu." - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:26 -msgid "Google Analytics" -msgstr "Google Analytics" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:63 -msgid "Google Analytics ID" -msgstr "Google Analytics ID" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:64 -msgid "" -"Log into your google analytics account to find your ID. e.g. UA-XXXXX-" -"X" -msgstr "" -"Přihlaste se ke svému účtu Google Analytics, kde zjistíte svoje ID (např. " -"UA-XXXXX-X)." - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:75 -msgid "Tracking code" -msgstr "Sledovací kód" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:76 -msgid "" -"Add tracking code to your site's footer. You don't need to enable this if " -"using a 3rd party analytics plugin." -msgstr "" -"Přidává standardní sledovací kód do zápatí webu. Tuto volbu vypněte, pokud " -"používáte plugin pro Google Analytics třetích stran." - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:82 -msgid "Add eCommerce tracking code to the thankyou page" -msgstr "Přidá eCommerce sledovací kód na \"Děkovné\" stránky." - -# @ woocommerce -#: admin/settings/settings-init.php:290 -msgid "Page Setup" -msgstr "Nastavení stránky" - -# @ woocommerce -#: admin/settings/settings-init.php:297 -msgid "Shop Base Page" -msgstr "Základní stránka obchodu" - -# @ woocommerce -#: admin/settings/settings-init.php:309 -msgid "" -"If you define a \"Terms\" page the customer will be asked if they accept " -"them when checking out." -msgstr "" -"Pokud máte nastavenou stránku s \"Obchodními podmínkami\", zákazník bude při " -"přechodu k pokladně vyzván, aby s nimi souhlasil." - -# @ woocommerce -#: admin/settings/settings-init.php:320 -msgid "Shop Pages" -msgstr "Stránky obchodu" - -# @ woocommerce -#: admin/settings/settings-init.php:323 -msgid "Cart Page" -msgstr "Stránka košíku" - -# @ woocommerce -#: admin/settings/settings-init.php:324 -msgid "Page contents: [woocommerce_cart]" -msgstr "Obsah strany: [woocommerce_cart]" - -# @ woocommerce -#: admin/settings/settings-init.php:334 -msgid "Checkout Page" -msgstr "Stránka pokladny" - -# @ woocommerce -#: admin/settings/settings-init.php:335 -msgid "Page contents: [woocommerce_checkout]" -msgstr "Obsah stránky: [woocommerce_checkout]" - -# @ woocommerce -#: admin/settings/settings-init.php:345 -msgid "Pay Page" -msgstr "Stránka plateb" - -# @ woocommerce -#: admin/settings/settings-init.php:346 -msgid "Page contents: [woocommerce_pay] Parent: \"Checkout\"" -msgstr "Obsah stránky: [woocommerce_pay], nadřazený: \"Pokladna\"" - -# @ woocommerce -#: admin/settings/settings-init.php:356 -msgid "Thanks Page" -msgstr "Děkovací stránka" - -# @ woocommerce -#: admin/settings/settings-init.php:357 -msgid "Page contents: [woocommerce_thankyou] Parent: \"Checkout\"" -msgstr "Obsah stránky: [woocommerce_thankyou], nadřazený: \"Pokladna\"" - -# @ woocommerce -#: admin/settings/settings-init.php:367 -msgid "My Account Page" -msgstr "Můj účet" - -# @ woocommerce -#: admin/settings/settings-init.php:368 -msgid "Page contents: [woocommerce_my_account]" -msgstr "Obsah stránky: [woocommerce_my_account]" - -# @ woocommerce -#: admin/settings/settings-init.php:378 -msgid "Edit Address Page" -msgstr "Upravit adresu stránky" - -# @ woocommerce -#: admin/settings/settings-init.php:379 -msgid "Page contents: [woocommerce_edit_address] Parent: \"My Account\"" -msgstr "Obsah stránky: [woocommerce_edit_address], nadřazený: \"Můj účet\"" - -# @ woocommerce -#: admin/settings/settings-init.php:389 -msgid "View Order Page" -msgstr "Zobrazit stránku objednávky" - -# @ woocommerce -#: admin/settings/settings-init.php:390 -msgid "Page contents: [woocommerce_view_order] Parent: \"My Account\"" -msgstr "Obsah stránky: [woocommerce_view_order], nadřazený: \"Můj účet\"" - -# @ woocommerce -#: admin/settings/settings-init.php:400 -msgid "Change Password Page" -msgstr "Stránka změny hesla" - -# @ woocommerce -#: admin/settings/settings-init.php:401 -msgid "Page contents: [woocommerce_change_password] Parent: \"My Account\"" -msgstr "Obsah stránky: [woocommerce_change_password], nadřazený: \"Můj účet\"" - -# @ woocommerce -#: admin/settings/settings-init.php:439 -msgid "Catalog Options" -msgstr "Možnosti katalogu" - -# @ woocommerce -#: admin/settings/settings-init.php:544 -msgid "Weight Unit" -msgstr "Jednotka hmotnosti" - -# @ woocommerce -#: admin/settings/settings-init.php:545 -msgid "This controls what unit you will define weights in." -msgstr "Zde určíte jednotky hmotnosti." - -# @ woocommerce -#: admin/settings/settings-init.php:551 -msgid "kg" -msgstr "kg" - -# @ woocommerce -#: admin/settings/settings-init.php:553 -msgid "lbs" -msgstr "lbs" - -# @ woocommerce -#: admin/settings/settings-init.php:560 -msgid "Dimensions Unit" -msgstr "Jendnotky rozměrů" - -# @ woocommerce -#: admin/settings/settings-init.php:561 -msgid "This controls what unit you will define lengths in." -msgstr "Zde určíte jednotky délkových rozměrů." - -# @ woocommerce -#: admin/settings/settings-init.php:568 -msgid "cm" -msgstr "cm" - -# @ woocommerce -#: admin/settings/settings-init.php:570 -msgid "in" -msgstr "palce" - -# @ woocommerce -#: admin/settings/settings-init.php:606 -msgid "Pricing Options" -msgstr "Cenové možnosti" - -# @ woocommerce -#: admin/settings/settings-init.php:609 -msgid "Currency Position" -msgstr "Měnové pozice" - -# @ woocommerce -#: admin/settings/settings-init.php:610 -msgid "This controls the position of the currency symbol." -msgstr "Určete pozici symbolu měny." - -# @ woocommerce -#: admin/settings/settings-init.php:616 -msgid "Left" -msgstr "Vlevo" - -# @ woocommerce -#: admin/settings/settings-init.php:617 -msgid "Right" -msgstr "Vpravo" - -# @ woocommerce -#: admin/settings/settings-init.php:618 -msgid "Left (with space)" -msgstr "Vlevo (s mezerou)" - -# @ woocommerce -#: admin/settings/settings-init.php:619 -msgid "Right (with space)" -msgstr "Vpravo (s mezerou)" - -# @ woocommerce -#: admin/settings/settings-init.php:626 -msgid "This sets the thousand separator of displayed prices." -msgstr "Nastavení oddělovače tisíců zobrazených cen." - -# @ woocommerce -#: admin/settings/settings-init.php:636 -msgid "This sets the decimal separator of displayed prices." -msgstr "Nastavení oddělovače desetinných míst zobrazených cen." - -# @ woocommerce -#: admin/settings/settings-init.php:646 -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "" -"Tím se nastaví počet desetinných míst ukazujících se u zobrazených cen." - -# @ woocommerce -#: admin/settings/settings-init.php:668 -msgid "Image Options" -msgstr "Volby obrázku" - -# @ woocommerce -#: admin/settings/settings-init.php:668 -#, php-format -msgid "" -"These settings affect the actual dimensions of images in your catalog - the " -"display on the front-end will still be affected by CSS styles. After " -"changing these settings you may need to regenerate your " -"thumbnails." -msgstr "" -"Tato nastavení ovlivňují skutečné rozměry obrázků v katalogu - zobrazení na " -"webu bude i nadále ovlivněno styly CSS. Po změně tohoto nastavení bude " -"potřebovat znovu vygenerovat náhledy - použijte plugin Regenerate thumbnails." - -# @ woocommerce -#: admin/settings/settings-init.php:671 -msgid "Catalog Images" -msgstr "Katalog obrázků" - -# @ woocommerce -#: admin/settings/settings-init.php:672 -msgid "This size is usually used in product listings" -msgstr "Tato velikost je obvykle používána u výpisu produktů" - -# @ woocommerce -#: admin/settings/settings-init.php:685 -msgid "Single Product Image" -msgstr "Základní obrázek zboží" - -# @ woocommerce -#: admin/settings/settings-init.php:686 -msgid "This is the size used by the main image on the product page." -msgstr "Toto je velikost používaná hlavním obrázkem na produktové stránce." - -# @ woocommerce -#: admin/settings/settings-init.php:699 -msgid "Product Thumbnails" -msgstr "Katalog Náhledů" - -# @ woocommerce -#: admin/settings/settings-init.php:700 -msgid "" -"This size is usually used for the gallery of images on the product page." -msgstr "" -"Tato velikost se obvykle používá pro Galerie obrázků na stránce produktu." - -# @ woocommerce -#: admin/settings/settings-init.php:719 -msgid "Inventory Options" -msgstr "Možnosti skladu" - -# @ woocommerce -#: admin/settings/settings-init.php:723 -msgid "Enable stock management" -msgstr "Povolit řízení sladových zásob" - -# @ woocommerce -#: admin/settings/settings-init.php:743 -msgid "Notifications" -msgstr "Upozornění" - -# @ woocommerce -#: admin/settings/settings-init.php:744 -msgid "Enable low stock notifications" -msgstr "Povolit upozorňování při nízkém stavu skladových zásob" - -# @ woocommerce -#: admin/settings/settings-init.php:752 -msgid "Enable out of stock notifications" -msgstr "Povolit upozorňování při vyčerpání skladových zásob" - -# @ woocommerce -#: admin/settings/settings-init.php:795 -msgid "Hide out of stock items from the catalog" -msgstr "Skrýt položky v katalogu, které nejsou na skladě" - -# @ woocommerce -#: admin/settings/settings-init.php:823 -#: admin/woocommerce-admin-settings.php:292 -msgid "Shipping Options" -msgstr "Možnosti doručení" - -# @ woocommerce -#: admin/settings/settings-init.php:827 -msgid "Enable shipping" -msgstr "Povolit doručení" - -# @ woocommerce -#: admin/settings/settings-init.php:835 -msgid "Enable the shipping calculator on the cart page" -msgstr "Povolit kalkulátor ceny doručení na stránce košíku" - -# @ woocommerce -#: admin/settings/settings-init.php:866 -msgid "Only ship to the users billing address" -msgstr "Doručovat pouze na fakturační adresu zákazníka" - -# @ woocommerce -#: admin/settings/settings-init.php:918 -#: admin/woocommerce-admin-settings.php:222 -msgid "Tax Options" -msgstr "Nastavení DPH" - -# @ woocommerce -#: admin/settings/settings-init.php:922 -msgid "Enable taxes and tax calculations" -msgstr "Povolit DPH a výpočet DPH" - -# @ woocommerce -#: admin/settings/settings-init.php:1012 -msgid "Email Sender Options" -msgstr "Nastavení odesílatele e-mailu" - -# @ woocommerce -#: admin/settings/settings-init.php:1041 -#, php-format -msgid "" -"Enter a URL to an image you want to show in the email's header. Upload your " -"image using the media uploader." -msgstr "" -"Zadejte URL adresu obrázku, který chcete zobrazit v záhlaví e-mailu. " -"Nahrajte svůj obázek pomocí nahrávače médií." - -# @ woocommerce -#: admin/settings/settings-init.php:1050 -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "Text se objeví v zápatí e-mailů (např. podpis, kontaktní údaje apod.)" - -# @ woocommerce -#: admin/settings/settings-init.php:1054 -msgid "Powered by WooCommerce" -msgstr "Využívá řešení WooCommerce" - -# @ woocommerce -#: admin/settings/settings-init.php:1059 -msgid "" -"The base colour for WooCommerce email templates. Default #557da1." -msgstr "" -"Základní barva na e-mailové šablony e-shopu. Výchozí je #557da1 ." - -# @ woocommerce -#: admin/settings/settings-init.php:1077 -msgid "The main body background colour. Default #fdfdfd." -msgstr "Barva pozadí hlavního oddílu e-malu. Výchozí je #fdfdfd ." - -# @ woocommerce -#: admin/settings/settings-init.php:1086 -msgid "The main body text colour. Default #505050." -msgstr "Barva textu hlavního oddílu e-mailu. Výchozí #505050 ." - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:45 woocommerce.php:1758 -msgid "Action failed. Please refresh the page and retry." -msgstr "Akce se nezdařila. Prosím obnovte stránku a zkuste to znovu." - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:164 -msgid "Your settings have been saved." -msgstr "Vaše nastavení bylo uloženo." - -# @ woocommerce -#: admin/includes/notice-install.php:7 -msgid "Skip setup" -msgstr "Přeskočit nastavení" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:77 -#: admin/woocommerce-admin-content.php:44 -#: admin/woocommerce-admin-settings.php:182 -msgid "General" -msgstr "Obecné" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:45 -#: admin/woocommerce-admin-settings.php:184 -#: assets/js/admin/editor_plugin_lang.php:14 -msgid "Pages" -msgstr "Stránky" - -# @ woocommerce -#: admin/post-types/product.php:619 admin/post-types/product.php:894 -#: admin/post-types/writepanels/writepanel-product_data.php:1048 -#: admin/woocommerce-admin-content.php:46 -#: admin/woocommerce-admin-settings.php:183 -msgid "Catalog" -msgstr "Katalog" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:79 -#: admin/woocommerce-admin-content.php:47 -#: admin/woocommerce-admin-settings.php:185 -msgid "Inventory" -msgstr "Sklad" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:352 -#: admin/settings/settings-tax-rates.php:387 -#: admin/settings/settings-tax-rates.php:475 -#: admin/woocommerce-admin-content.php:48 -#: admin/woocommerce-admin-settings.php:186 classes/class-wc-countries.php:444 -msgid "Tax" -msgstr "DPH" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:23 -msgid "Shipping Methods" -msgstr "Způsoby doručení" - -# @ woocommerce -#: admin/settings/settings-init.php:900 -#: admin/woocommerce-admin-settings.php:188 -#: admin/woocommerce-admin-settings.php:329 -msgid "Payment Gateways" -msgstr "Platební metody" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:51 -#: admin/woocommerce-admin-settings.php:189 -msgid "Emails" -msgstr "E-maily" - -# @ woocommerce -#: admin/settings/settings-payment-gateways.php:27 -#: admin/settings/settings-shipping-methods.php:29 -#: admin/woocommerce-admin-init.php:757 -#: admin/woocommerce-admin-taxonomies.php:27 -#: admin/woocommerce-admin-taxonomies.php:121 -msgid "Default" -msgstr "Výchozí" - -# @ woocommerce -#: admin/settings/settings-payment-gateways.php:28 -msgid "Gateway" -msgstr "Metoda" - -# @ woocommerce -#: admin/post-types/shop_order.php:43 -#: admin/settings/settings-payment-gateways.php:29 -#: admin/settings/settings-shipping-methods.php:31 -#: templates/myaccount/my-orders.php:34 -msgid "Status" -msgstr "Stav" - -# @ woocommerce -#: admin/settings/settings-payment-gateways.php:45 -msgid "Gateway ID" -msgstr "ID platební metody" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:388 -#: classes/integrations/shareyourcart/views/admin-page.php:110 -#: classes/integrations/shareyourcart/views/button-settings-page.php:120 -msgid "Save changes" -msgstr "Uložit změny" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:429 -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "Provedené změny budou ztraceny, pokud tuto stránku opustíte." - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:34 -#: admin/woocommerce-admin-taxonomies.php:129 -msgid "Thumbnail" -msgstr "Náhled" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:38 -#: admin/woocommerce-admin-taxonomies.php:134 -msgid "Upload/Add image" -msgstr "Nahrát / Přidat obrázek" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:39 -#: admin/woocommerce-admin-taxonomies.php:135 -msgid "Remove image" -msgstr "Odstranit obrázek" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:222 -msgid "" -"Product categories for your store can be managed here. To change the order " -"of categories on the front-end you can drag and drop to sort them. To see " -"more categories listed click the \"screen options\" link at the top of the " -"page." -msgstr "" -"Kategorie produktů pro váš obchod můžou být editovány zde. Chcete-li změnit " -"pořadí kategorií na webu, můžete je řadit pomocí drug&drop. Chcete-li " -"zobrazit více uvedených kategorií klikněte na odkaz \\ \\\"nastavení " -"zobrazení \" v horní části stránky." - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:237 -msgid "" -"Shipping classes can be used to group products of similar type. These groups " -"can then be used by certain shipping methods to provide different rates to " -"different products." -msgstr "" -"Doručovací třídy může být použity pro skupiny výrobků podobného typu. Tyto " -"skupiny pak mohou být použity některými ze způsobů přepravy pro poskytnutí " -"různých sazeb u různých výrobků." - -# @ woocommerce -#: admin/post-types/product.php:86 admin/woocommerce-admin-taxonomies.php:297 -msgid "Image" -msgstr "Obrázek" - -# @ woocommerce -#: admin/post-types/product.php:98 -msgid "Categories" -msgstr "Kategorie" - -# @ woocommerce -#: admin/post-types/product.php:99 -msgid "Tags" -msgstr "Štítky" - -# @ woocommerce -#: admin/post-types/product.php:100 admin/post-types/product.php:632 -#: admin/post-types/product.php:906 -#: admin/post-types/writepanels/writepanel-product_data.php:1059 -#: admin/woocommerce-admin-init.php:450 -msgid "Featured" -msgstr "Speciální nabídka" - -# @ woocommerce -#: admin/post-types/product.php:102 admin/post-types/shop_order.php:50 -#: templates/myaccount/my-orders.php:33 -msgid "Date" -msgstr "Datum" - -# @ woocommerce -#: admin/post-types/shop_order.php:131 -msgid "Unpublished" -msgstr "Nevydáno" - -# @ woocommerce -#: admin/post-types/shop_order.php:133 -msgid "Y/m/d g:i:s A" -msgstr "d. m. y g:i:s A" - -# @ woocommerce -#: admin/post-types/shop_order.php:139 -#, php-format -msgid "%s ago" -msgstr "před %s" - -# @ woocommerce -#: admin/post-types/shop_order.php:141 -msgid "Y/m/d" -msgstr "d. m. y" - -# @ woocommerce -#: admin/post-types/product.php:373 -msgid "Show all product types" -msgstr "Zobrazit všechny typy produktů" - -# @ woocommerce -#: admin/post-types/product.php:399 -msgid "Show all sub-types" -msgstr "Zobrazit všechny podtypy" - -# @ woocommerce -#: admin/post-types/product.php:222 admin/post-types/product.php:403 -#: admin/post-types/writepanels/variation-admin-html.php:174 -#: admin/post-types/writepanels/writepanel-product_data.php:58 -msgid "Downloadable" -msgstr "Ke stažení" - -# @ woocommerce -#: admin/post-types/product.php:220 admin/post-types/product.php:407 -#: admin/post-types/writepanels/variation-admin-html.php:176 -#: admin/post-types/writepanels/writepanel-product_data.php:52 -msgid "Virtual" -msgstr "Virtuální" - -# @ woocommerce -#: admin/post-types/product.php:520 -#, php-format -msgid "[%s with SKU of %s]" -msgstr "[%s s katalogový číslem %s]" - -# @ woocommerce -#: admin/post-types/product.php:526 -#, php-format -msgid "[%s with ID of %d]" -msgstr "[%s s číslem ID %d]" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:25 -msgid "Code" -msgstr "Kód" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:26 -msgid "Coupon type" -msgstr "Typ kupónu" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:27 -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Coupon amount" -msgstr "Hodnota kupónu" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:29 -msgid "Product IDs" -msgstr "Číslo ID produktu" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "Usage limit" -msgstr "Limit využití" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:31 -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "Expiry date" -msgstr "Datum platnosti" - -# @ woocommerce -#: admin/post-types/shop_order.php:45 -msgid "Billing" -msgstr "Fakturace" - -# @ woocommerce -#: admin/post-types/shop_order.php:51 -#: admin/post-types/writepanels/writepanel-order_data.php:386 -#: admin/post-types/writepanels/writepanel-order_data.php:433 -msgid "Actions" -msgstr "Akce objednávky" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:91 -msgid "Customer:" -msgstr "Zákazník:" - -# @ woocommerce -#: admin/post-types/shop_order.php:104 templates/emails/admin-new-order.php:56 -#: templates/emails/customer-completed-order.php:57 -#: templates/emails/customer-note.php:61 -#: templates/emails/customer-processing-order.php:57 -#: templates/emails/plain/admin-new-order.php:44 -#: templates/emails/plain/customer-completed-order.php:44 -#: templates/emails/plain/customer-note.php:52 -#: templates/emails/plain/customer-processing-order.php:44 -msgid "Tel:" -msgstr "Tel:" - -# @ woocommerce -#: admin/post-types/shop_order.php:165 -msgid "Complete" -msgstr "Dokončeno" - -# @ default -# @ woocommerce -#: admin/post-types/product.php:167 admin/post-types/shop_order.php:171 -#: templates/myaccount/my-orders.php:82 -msgid "View" -msgstr "Zobrazit" - -# @ woocommerce -#: admin/post-types/shop_order.php:282 -msgid "Show all statuses" -msgstr "Zobrazit všechny stavy" - -# @ woocommerce -#: admin/post-types/shop_order.php:301 admin/post-types/shop_order.php:326 -msgid "Show all customers" -msgstr "Zobrazit všechny zákazníky" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:42 -msgid "Discount type" -msgstr "Typ slevy" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "Individual use" -msgstr "Individuální použití" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "Apply before tax" -msgstr "Použít před daní" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "Enable free shipping" -msgstr "Povolit doručení zdarma" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:76 -msgid "Order status:" -msgstr "Stav objednávky:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:131 -msgid "Customer Note:" -msgstr "Poznámka zákazníka:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:132 -msgid "Customer's notes about the order" -msgstr "Poznámka zákazníka k objednávce:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:195 -msgid "No billing address set." -msgstr "Nebyla nastavena žádná fakturační adresa." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:144 -#: admin/post-types/writepanels/writepanel-order_data.php:234 -#: classes/class-wc-countries.php:683 -msgid "First Name" -msgstr "Křestní jméno" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:148 -#: admin/post-types/writepanels/writepanel-order_data.php:238 -#: classes/class-wc-countries.php:688 -msgid "Last Name" -msgstr "Příjmení" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:152 -#: admin/post-types/writepanels/writepanel-order_data.php:242 -#: admin/woocommerce-admin-users.php:155 admin/woocommerce-admin-users.php:204 -msgid "Company" -msgstr "Společnost" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:156 -#: admin/post-types/writepanels/writepanel-order_data.php:246 -#: admin/woocommerce-admin-users.php:159 admin/woocommerce-admin-users.php:208 -msgid "Address 1" -msgstr "Adresa 1" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:160 -#: admin/post-types/writepanels/writepanel-order_data.php:250 -#: admin/woocommerce-admin-users.php:163 admin/woocommerce-admin-users.php:212 -msgid "Address 2" -msgstr "Adresa 2" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:164 -#: admin/post-types/writepanels/writepanel-order_data.php:254 -#: admin/settings/settings-tax-rates.php:42 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-users.php:167 admin/woocommerce-admin-users.php:216 -#: templates/cart/shipping-calculator.php:72 -msgid "City" -msgstr "Město" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:172 -#: admin/post-types/writepanels/writepanel-order_data.php:262 -#: admin/woocommerce-admin-users.php:179 admin/woocommerce-admin-users.php:228 -#: classes/class-wc-countries.php:678 -msgid "Country" -msgstr "Země" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:178 -#: admin/post-types/writepanels/writepanel-order_data.php:268 -#: admin/woocommerce-admin-users.php:175 admin/woocommerce-admin-users.php:224 -msgid "State/County" -msgstr "Kraj" - -# @ woocommerce -#: classes/class-wc-countries.php:1074 -msgid "Email Address" -msgstr "E-mailová adresa" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "No shipping address set." -msgstr "Nebyla nastavena žádná doručovací adresa." - -# @ woocommerce -#: admin/post-types/product.php:91 admin/post-types/product.php:557 -#: admin/post-types/writepanels/variation-admin-html.php:52 -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#: admin/woocommerce-admin-reports.php:2099 -#: admin/woocommerce-admin-reports.php:2135 -msgid "SKU" -msgstr "Katalogové číslo" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:201 templates/cart/cart.php:30 -#: templates/emails/admin-new-order.php:23 -#: templates/emails/customer-completed-order.php:24 -#: templates/emails/customer-invoice.php:28 -#: templates/emails/customer-note.php:28 -#: templates/emails/customer-processing-order.php:24 -msgid "Quantity" -msgstr "Množství" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:486 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:100 -msgid "Cost" -msgstr "Náklady" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:6 -#: admin/post-types/writepanels/writepanel-product_data.php:368 -#: admin/post-types/writepanels/writepanel-product_data.php:462 -#: admin/woocommerce-admin-init.php:438 -msgid "Remove" -msgstr "Odstranit" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save Order" -msgstr "Uložit objednávku" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save/update the order" -msgstr "Uložit / aktualizovat objednávku" - -# @ default -# @ woocommerce -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -#: admin/post-types/writepanels/writepanel-order_data.php:463 -msgid "Delete Permanently" -msgstr "Trvale smazat" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:465 -msgid "Move to Trash" -msgstr "Přesunout do koše" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:552 -#: classes/class-wc-countries.php:470 -msgid "(ex. tax)" -msgstr "(bez DPH)" - -# @ woocommerce -#: classes/class-wc-order.php:1451 woocommerce-ajax.php:1091 -#: woocommerce-ajax.php:1092 -#, php-format -msgid "Item #%s stock reduced from %s to %s." -msgstr "Zásoby položky č. %s klesly z %s na %s." - -# @ woocommerce -#: woocommerce-ajax.php:1144 woocommerce-ajax.php:1145 -#, php-format -msgid "Item #%s stock increased from %s to %s." -msgstr "Zásoby položky č. %s vzrostly z %s na %s." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:50 -msgid "There are no notes for this order yet." -msgstr "Pro tuto objednávku nejsou k dispozici zatím žádné poznámky." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "Add note" -msgstr "Přidat poznámku" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "" -"Add a note for your reference, or add a customer note (the user will be " -"notified)." -msgstr "" -"Napište si vlastní poznámku, nebo přidejte poznámku zákazníka, kterou uvidí " -"ve své objednávce a na stránce pro sledování." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:62 -#: classes/emails/class-wc-email-customer-note.php:29 -msgid "Customer note" -msgstr "Poznámky zákazníka" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:63 -msgid "Private note" -msgstr "Soukromé poznámky" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:65 -#: admin/post-types/writepanels/writepanel-product_data.php:501 -msgid "Add" -msgstr "Přidat" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Download Limit" -msgstr "Limit pro stahování" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:150 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Leave blank for unlimited re-downloads." -msgstr "Nechte prázdné pro neomezené opětovné stahování." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations for variable products are defined here." -msgstr "Varianty pro produkty s variantami jsou definovány zde." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -msgid "Bulk edit:" -msgstr "Hromadné úpravy:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:80 -msgid "Prices" -msgstr "Ceny" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:81 -msgid "Sale prices" -msgstr "Ceny po slevě" - -# @ woocommerce -#: admin/post-types/product.php:94 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:82 -#: admin/woocommerce-admin-content.php:63 -#: admin/woocommerce-admin-reports.php:90 -msgid "Stock" -msgstr "Sklad" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:172 -msgid "Enabled" -msgstr "Povoleno" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:20 -msgid "Any" -msgstr "Jakýkoliv" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:52 -msgid "" -"Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "" -"Zadejte katalogové číslo produktu této varianty nebo ponechte prázdné a " -"použije se katalogové číslo nadřazeného produktu." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:63 -msgid "Stock Qty:" -msgstr "Skladem Množství:" - -# @ woocommerce -#: admin/post-types/product.php:588 admin/post-types/product.php:839 -#: admin/post-types/writepanels/variation-admin-html.php:96 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:83 -#: admin/post-types/writepanels/writepanel-product_data.php:273 -#: templates/single-product/product-attributes.php:28 -msgid "Weight" -msgstr "Hmotnost" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:96 -msgid "" -"Enter a weight for this variation or leave blank to use the parent product " -"weight." -msgstr "" -"Zadejte hmotnost této varianty nebo ponechte prázdné a použije se hmotnost " -"nadřazeného produktu." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:104 -msgid "Dimensions (L×W×H)" -msgstr "Rozměry (délka × šířka × výška)" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:141 -msgid "Price:" -msgstr "Cena:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:76 -msgid "Sale Price:" -msgstr "Cena po slevě:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:145 -msgid "Upload" -msgstr "Nahrát" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:150 -msgid "Download Limit:" -msgstr "Limit počtu stažení" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:19 -#: admin/post-types/writepanels/variation-admin-html.php:151 -#: admin/post-types/writepanels/variation-admin-html.php:159 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Unlimited" -msgstr "Neomezeně" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:211 -msgid "No default" -msgstr "žádná výchozí" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:196 -msgid "Link all variations" -msgstr "Spojit všechny varianty" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:344 -msgid "Are you sure you want to remove this variation?" -msgstr "Jste si jisti, že chcete odstranit tuto variantu?" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:564 -msgid "Variable product" -msgstr "Produkt s variantami" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:591 -msgid "Grouping" -msgstr "Seskupování" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Product URL" -msgstr "URL adresa produktu:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Enter the external URL to the product." -msgstr "Zadejte externí adresu URL k produktu." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:119 -msgid "Regular Price" -msgstr "Běžná cena" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Sale Price" -msgstr "Cena po slevě" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:135 -msgid "Sale Price Dates" -msgstr "Platnost ceny po slevě" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:284 -#: templates/single-product/product-attributes.php:37 -msgid "Dimensions" -msgstr "Rozměry" - -# @ woocommerce -#: admin/post-types/product.php:601 admin/post-types/product.php:879 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:286 -msgid "Length" -msgstr "Délka" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:178 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:107 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:81 -msgid "Tax Status" -msgstr "Stav zdanitelnosti" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:20 -#: admin/post-types/writepanels/writepanel-product_data.php:179 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:111 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:85 -msgid "Taxable" -msgstr "Zdanitelný" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:180 -msgid "Shipping only" -msgstr "Pouze poštovné" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:25 -#: admin/post-types/writepanels/order-item-html.php:96 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:53 -#: admin/post-types/writepanels/writepanel-product_data.php:186 -#: admin/settings/settings-init.php:972 -#: admin/settings/settings-tax-rates.php:29 -#: admin/woocommerce-admin-settings.php:228 woocommerce-ajax.php:551 -msgid "Standard" -msgstr "Standardní" - -# @ woocommerce -#: admin/post-types/product.php:657 admin/post-types/product.php:942 -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Manage stock?" -msgstr "Spravovat sklad?" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:230 -msgid "Stock status" -msgstr "Stav skladu" - -# @ woocommerce -#: admin/post-types/product.php:262 admin/post-types/product.php:641 -#: admin/post-types/product.php:930 -#: admin/post-types/writepanels/writepanel-product_data.php:231 -#: classes/abstracts/abstract-wc-product.php:546 -#: classes/abstracts/abstract-wc-product.php:551 -#: classes/abstracts/abstract-wc-product.php:570 -msgid "In stock" -msgstr "Skladem" - -# @ woocommerce -#: admin/post-types/product.php:661 admin/post-types/product.php:961 -#: admin/post-types/product.php:977 -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "Stock Qty" -msgstr "Množství skladem" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:240 -msgid "Allow Backorders?" -msgstr "" -"Povolit nákup na objednávku? (Zboží není skladem, musí se objednat od " -"dotavatele)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:241 -msgid "Do not allow" -msgstr "Nepovolit" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:242 -msgid "Allow, but notify customer" -msgstr "Povolit, ale informovat zákazníka" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:243 -msgid "Allow" -msgstr "Povolit" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:384 -#: admin/post-types/writepanels/writepanel-product_data.php:476 -#: admin/woocommerce-admin-init.php:440 -msgid "Value(s)" -msgstr "Hodnota(y)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:503 -msgid "Custom product attribute" -msgstr "Uživatelsky zadaná vlastnost produktu" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:522 -msgid "Up-Sells" -msgstr "Navyšovací prodej" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:537 -msgid "" -"Up-sells are products which you recommend instead of the currently viewed " -"product, for example, products that are more profitable or better quality or " -"more expensive." -msgstr "" -"Navyšovací prodej označuje snahu prodat dražší řešení zákazníkova problému, " -"např. vyšší model výrobku či pokročilejší verzi služby" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:539 -msgid "Cross-Sells" -msgstr "Doplňkový prodej" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:555 -msgid "" -"Cross-sells are products which you promote in the cart, based on the current " -"product." -msgstr "" -"Doplňkovým prodejem se označují aktivity, jejichž účelem je navýšit celkovou " -"objednávku zákazníka doporučením souvisejícího zboží. Za cross-selling tedy " -"například může být považováno jednání zahradníka, který vám k živým květinám " -"nabídne i hnojivo." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:565 -msgid "Choose a grouped product…" -msgstr "Vyberte seskupený produkt…" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:715 -msgid "Product SKU must be unique." -msgstr "Katalogové číslo produktu musí být unikátní." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:43 -msgid "Product Type" -msgstr "Typ produktu" - -# @ woocommerce -#: admin/post-types/product.php:385 -#: admin/post-types/writepanels/writepanel-product_data.php:38 -msgid "Simple product" -msgstr "Jednoduchý produkt" - -# @ woocommerce -#: admin/post-types/product.php:381 -#: admin/post-types/writepanels/writepanel-product_data.php:39 -msgid "Grouped product" -msgstr "Seskupený produkt" - -# @ woocommerce -#: admin/post-types/product.php:383 -#: admin/post-types/writepanels/writepanel-product_data.php:40 -msgid "External/Affiliate product" -msgstr "Externí / provizní produkt" - -# @ woocommerce -#: admin/post-types/product.php:621 admin/post-types/product.php:896 -#: admin/post-types/writepanels/writepanel-product_data.php:1050 -msgid "Hidden" -msgstr "Skrytý" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:176 -msgid "" -"Enable this option if a product is not shipped or there is no shipping cost" -msgstr "" -"Povolte tuto možnost pokud produkt nemůže být doručen nebo je jeho doručení " -"zdarma." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:174 -msgid "" -"Enable this option if access is given to a downloadable file upon purchase " -"of a product" -msgstr "" -"Povolte tuto možnost pokud chcete přidat soubor ke stažení dostupný po " -"nákupu produktu" - -# @ woocommerce -#: admin/post-types/product.php:552 admin/post-types/product.php:783 -#: admin/post-types/writepanels/writepanels-init.php:46 -#: admin/settings/settings-init.php:508 -msgid "Product Data" -msgstr "Údaje o produktu" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:68 -msgid "Order Data" -msgstr "Údaje o objednávce" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:652 -#: admin/post-types/writepanels/writepanels-init.php:70 -msgid "Order Totals" -msgstr "Celková částka objednávky" - -# @ woocommerce -#: admin/post-types/shop_order.php:48 -#: admin/post-types/writepanels/writepanels-init.php:71 -#: classes/class-wc-checkout.php:89 -msgid "Order Notes" -msgstr "Poznámky k objednávce" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:73 -msgid "Order Actions" -msgstr "Akce objednávky" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:81 -msgid "Coupon Data" -msgstr "Údaje kupónu" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:100 -#: templates/checkout/form-coupon.php:25 -msgid "Coupon code" -msgstr "Kód kupónu" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:101 -msgid "Product name" -msgstr "Název produktu" - -# @ woocommerce -#: classes/class-wc-cart.php:460 -#, php-format -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -"Omlouváme se, ale nemáme dost \"%s\" na skladě pro vyřízení objednávky (%s " -"na skladě). Upravte, prosím, Váš košík a zkuste to znovu. Omlouváme se za " -"způsobené nepříjemnosti." - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:851 -#: classes/abstracts/abstract-wc-product.php:857 -#: classes/class-wc-cart.php:1803 classes/class-wc-order.php:891 -#: classes/class-wc-product-variable.php:272 -#: classes/class-wc-product-variable.php:281 -#: classes/class-wc-product-variation.php:247 -msgid "Free!" -msgstr "Zdarma!" - -# @ woocommerce -#: classes/class-wc-cart.php:1815 -msgid "via" -msgstr "via" - -# @ woocommerce -#: classes/class-wc-coupon.php:445 classes/class-wc-coupon.php:495 -msgid "Coupon does not exist!" -msgstr "Kupón neexistuje!" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:193 -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#: admin/post-types/writepanels/writepanel-order_data.php:277 -#: admin/post-types/writepanels/writepanel-order_data.php:279 -#: classes/class-wc-countries.php:698 -msgid "Address" -msgstr "Adresa" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:185 -#: classes/class-wc-countries.php:1080 -msgid "Phone" -msgstr "Telefon" - -# @ woocommerce -#: templates/checkout/form-billing.php:42 -msgid "Create an account?" -msgstr "Založit účet?" - -# @ woocommerce -#: classes/class-wc-checkout.php:64 -msgid "Account username" -msgstr "Uživatelské jméno" - -# @ woocommerce -#: classes/class-wc-checkout.php:72 -msgid "Account password" -msgstr "Heslo k účtu" - -# @ woocommerce -#: classes/class-wc-checkout.php:388 -#, php-format -msgid "" -"Sorry, your session has expired. Return to homepage →" -msgstr "" -"Omlouváme se, ale Vaše relace vypršela. Vraťe se na domovskou " -"stránku →" - -# @ woocommerce -#: classes/class-wc-checkout.php:550 -msgid "Please enter an account username." -msgstr "Zadejte prosím uživatelské jméno k Vašemu účtu." - -# @ woocommerce -#: classes/class-wc-checkout.php:567 -msgid "Please enter an account password." -msgstr "Zadejte prosím heslo k účtu." - -# @ woocommerce -#: classes/class-wc-checkout.php:554 -msgid "Invalid email/username." -msgstr "Neplatný e-mail a/nebo uživatelské jméno." - -# @ woocommerce -#: classes/class-wc-checkout.php:557 -msgid "" -"An account is already registered with that username. Please choose another." -msgstr "" -"Účet s tímto uživatelským jménem je již registrován. Zvolte si prosím jiné." - -# @ woocommerce -#: classes/class-wc-checkout.php:574 -msgid "An account is already registered with your email address. Please login." -msgstr "" -"Účet na tuto e-mailovou adresu je již registrován. Přihlašte se prosím." - -# @ woocommerce -#: classes/class-wc-checkout.php:580 -msgid "You must accept our Terms & Conditions." -msgstr "Pro pokračování je nutné souhlasit s našimi obchodními podmínkami." - -# @ woocommerce -#: classes/class-wc-checkout.php:589 -msgid "Invalid shipping method." -msgstr "Neplatný způsob doručení." - -# @ woocommerce -#: classes/class-wc-checkout.php:602 -msgid "Invalid payment method." -msgstr "Neplatný způsob platby." - -# @ woocommerce -#: classes/class-wc-countries.php:41 -msgid "Andorra" -msgstr "Andorra" - -# @ woocommerce -#: classes/class-wc-countries.php:266 -msgid "United Arab Emirates" -msgstr "Spojené Arabské Emiráty" - -# @ woocommerce -#: classes/class-wc-countries.php:37 -msgid "Afghanistan" -msgstr "Afghanistán" - -# @ woocommerce -#: classes/class-wc-countries.php:45 -msgid "Antigua and Barbuda" -msgstr "Antigua a Barbuda" - -# @ woocommerce -#: classes/class-wc-countries.php:43 -msgid "Anguilla" -msgstr "Anguilla" - -# @ woocommerce -#: classes/class-wc-countries.php:39 -msgid "Albania" -msgstr "Albánie" - -# @ woocommerce -#: classes/class-wc-countries.php:47 -msgid "Armenia" -msgstr "Arménie" - -# @ woocommerce -#: classes/class-wc-countries.php:191 -msgid "Netherlands Antilles" -msgstr "Holandské ostrovy" - -# @ woocommerce -#: classes/class-wc-countries.php:42 -msgid "Angola" -msgstr "Angola" - -# @ woocommerce -#: classes/class-wc-countries.php:44 -msgid "Antarctica" -msgstr "Antarktida" - -# @ woocommerce -#: classes/class-wc-countries.php:46 -msgid "Argentina" -msgstr "Argentina" - -# @ woocommerce -#: i18n/states/US.php:67 -msgid "American Samoa" -msgstr "Americká Samoa" - -# @ woocommerce -#: classes/class-wc-countries.php:50 -msgid "Austria" -msgstr "Rakousko" - -# @ woocommerce -#: classes/class-wc-countries.php:49 -msgid "Australia" -msgstr "Austrálie" - -# @ woocommerce -#: classes/class-wc-countries.php:48 -msgid "Aruba" -msgstr "Aruba" - -# @ woocommerce -#: classes/class-wc-countries.php:51 -msgid "Azerbaijan" -msgstr "Azerbaidžán" - -# @ woocommerce -#: classes/class-wc-countries.php:65 -msgid "Bosnia and Herzegovina" -msgstr "Bosna a Herzegovina" - -# @ woocommerce -#: classes/class-wc-countries.php:55 -msgid "Barbados" -msgstr "Barbados" - -# @ woocommerce -#: classes/class-wc-countries.php:54 -msgid "Bangladesh" -msgstr "Bangladéš" - -# @ woocommerce -#: classes/class-wc-countries.php:57 -msgid "Belgium" -msgstr "Belgie" - -# @ woocommerce -#: classes/class-wc-countries.php:73 -msgid "Burkina Faso" -msgstr "Burkina Faso" - -# @ woocommerce -#: classes/class-wc-countries.php:72 -msgid "Bulgaria" -msgstr "Bulharsko" - -# @ woocommerce -#: classes/class-wc-countries.php:53 -msgid "Bahrain" -msgstr "Bahrain" - -# @ woocommerce -#: classes/class-wc-countries.php:74 -msgid "Burundi" -msgstr "Burundi" - -# @ woocommerce -#: classes/class-wc-countries.php:60 -msgid "Benin" -msgstr "Benin" - -# @ woocommerce -#: classes/class-wc-countries.php:61 -msgid "Bermuda" -msgstr "Bermudy" - -# @ woocommerce -#: classes/class-wc-countries.php:71 -msgid "Brunei" -msgstr "Brunej" - -# @ woocommerce -#: classes/class-wc-countries.php:63 -msgid "Bolivia" -msgstr "Bolívie" - -# @ woocommerce -#: classes/class-wc-countries.php:68 -msgid "Brazil" -msgstr "Brazílie" - -# @ woocommerce -#: classes/class-wc-countries.php:52 -msgid "Bahamas" -msgstr "Bahamy" - -# @ woocommerce -#: classes/class-wc-countries.php:62 -msgid "Bhutan" -msgstr "Bútán" - -# @ woocommerce -#: classes/class-wc-countries.php:66 -msgid "Botswana" -msgstr "Botswana" - -# @ woocommerce -#: classes/class-wc-countries.php:56 -msgid "Belarus" -msgstr "Bělorusko" - -# @ woocommerce -#: classes/class-wc-countries.php:59 -msgid "Belize" -msgstr "Belize" - -# @ woocommerce -#: classes/class-wc-countries.php:77 -msgid "Canada" -msgstr "Kanada" - -# @ woocommerce -#: classes/class-wc-countries.php:85 -msgid "Cocos (Keeling) Islands" -msgstr "Kokosové ostrovy" - -# @ woocommerce -#: classes/class-wc-countries.php:89 -msgid "Congo (Kinshasa)" -msgstr "Kongo (Kinšasa)" - -# @ woocommerce -#: classes/class-wc-countries.php:80 -msgid "Central African Republic" -msgstr "Střední Africká republika" - -# @ woocommerce -#: classes/class-wc-countries.php:88 -msgid "Congo (Brazzaville)" -msgstr "Kongo (Brazzaville)" - -# @ woocommerce -#: classes/class-wc-countries.php:248 -msgid "Switzerland" -msgstr "Švýcarsko" - -# @ woocommerce -#: classes/class-wc-countries.php:145 -msgid "Ivory Coast" -msgstr "Pobřeží slonoviny" - -# @ woocommerce -#: classes/class-wc-countries.php:90 -msgid "Cook Islands" -msgstr "Cookovy ostrovy" - -# @ woocommerce -#: classes/class-wc-countries.php:82 -msgid "Chile" -msgstr "Chile" - -# @ woocommerce -#: classes/class-wc-countries.php:76 -msgid "Cameroon" -msgstr "Camerun" - -# @ woocommerce -#: classes/class-wc-countries.php:83 -msgid "China" -msgstr "Čína" - -# @ woocommerce -#: classes/class-wc-countries.php:86 -msgid "Colombia" -msgstr "Kolumbie" - -# @ woocommerce -#: classes/class-wc-countries.php:91 -msgid "Costa Rica" -msgstr "Costa Rica" - -# @ woocommerce -#: classes/class-wc-countries.php:93 -msgid "Cuba" -msgstr "Kuba" - -# @ woocommerce -#: classes/class-wc-countries.php:78 -msgid "Cape Verde" -msgstr "Cape Verde" - -# @ woocommerce -#: classes/class-wc-countries.php:84 -msgid "Christmas Island" -msgstr "Vánoční ostrovy" - -# @ woocommerce -#: classes/class-wc-countries.php:95 -msgid "Cyprus" -msgstr "Kypr" - -# @ woocommerce -#: classes/class-wc-countries.php:96 -msgid "Czech Republic" -msgstr "Česká republika" - -# @ woocommerce -#: classes/class-wc-countries.php:119 -msgid "Germany" -msgstr "Německo" - -# @ woocommerce -#: classes/class-wc-countries.php:98 -msgid "Djibouti" -msgstr "Djibouti" - -# @ woocommerce -#: classes/class-wc-countries.php:97 -msgid "Denmark" -msgstr "Dánsko" - -# @ woocommerce -#: classes/class-wc-countries.php:99 -msgid "Dominica" -msgstr "Dominica" - -# @ woocommerce -#: classes/class-wc-countries.php:100 -msgid "Dominican Republic" -msgstr "Dominikánská Republika" - -# @ woocommerce -#: classes/class-wc-countries.php:40 -msgid "Algeria" -msgstr "Alžírsko" - -# @ woocommerce -#: classes/class-wc-countries.php:101 -msgid "Ecuador" -msgstr "Ekvádor" - -# @ woocommerce -#: classes/class-wc-countries.php:106 -msgid "Estonia" -msgstr "Estonsko" - -# @ woocommerce -#: classes/class-wc-countries.php:102 -msgid "Egypt" -msgstr "Egypt" - -# @ woocommerce -#: classes/class-wc-countries.php:276 -msgid "Western Sahara" -msgstr "Západní Sahara" - -# @ woocommerce -#: classes/class-wc-countries.php:105 -msgid "Eritrea" -msgstr "Eritrea" - -# @ woocommerce -#: classes/class-wc-countries.php:241 -msgid "Spain" -msgstr "Španělsko" - -# @ woocommerce -#: classes/class-wc-countries.php:107 -msgid "Ethiopia" -msgstr "Etiopie" - -# @ woocommerce -#: classes/class-wc-countries.php:111 -msgid "Finland" -msgstr "Finsko" - -# @ woocommerce -#: classes/class-wc-countries.php:110 -msgid "Fiji" -msgstr "Fiji" - -# @ woocommerce -#: classes/class-wc-countries.php:108 -msgid "Falkland Islands" -msgstr "Falklandské ostrovy" - -# @ woocommerce -#: classes/class-wc-countries.php:178 -msgid "Micronesia" -msgstr "Micronesia" - -# @ woocommerce -#: classes/class-wc-countries.php:109 -msgid "Faroe Islands" -msgstr "Faroe Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:112 -msgid "France" -msgstr "France" - -# @ woocommerce -#: classes/class-wc-countries.php:116 -msgid "Gabon" -msgstr "Gabon" - -# @ woocommerce -#: classes/class-wc-countries.php:267 -msgid "United Kingdom" -msgstr "United Kingdom" - -# @ woocommerce -#: classes/class-wc-countries.php:124 -msgid "Grenada" -msgstr "Grenada" - -# @ woocommerce -#: classes/class-wc-countries.php:118 i18n/states/US.php:23 -msgid "Georgia" -msgstr "Georgia" - -# @ woocommerce -#: classes/class-wc-countries.php:113 -msgid "French Guiana" -msgstr "French Guiana" - -# @ woocommerce -#: classes/class-wc-countries.php:127 -msgid "Guernsey" -msgstr "Guernsey" - -# @ woocommerce -#: classes/class-wc-countries.php:120 -msgid "Ghana" -msgstr "Ghana" - -# @ woocommerce -#: classes/class-wc-countries.php:121 -msgid "Gibraltar" -msgstr "Gibraltar" - -# @ woocommerce -#: classes/class-wc-countries.php:123 -msgid "Greenland" -msgstr "Greenland" - -# @ woocommerce -#: classes/class-wc-countries.php:117 -msgid "Gambia" -msgstr "Gambia" - -# @ woocommerce -#: classes/class-wc-countries.php:128 -msgid "Guinea" -msgstr "Guinea" - -# @ woocommerce -#: classes/class-wc-countries.php:125 -msgid "Guadeloupe" -msgstr "Guadeloupe" - -# @ woocommerce -#: classes/class-wc-countries.php:104 -msgid "Equatorial Guinea" -msgstr "Equatorial Guinea" - -# @ woocommerce -#: classes/class-wc-countries.php:122 -msgid "Greece" -msgstr "Greece" - -# @ woocommerce -#: classes/class-wc-countries.php:238 -msgid "South Georgia/Sandwich Islands" -msgstr "South Georgia/Sandwich Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:126 -msgid "Guatemala" -msgstr "Guatemala" - -# @ woocommerce -#: i18n/states/US.php:68 -msgid "Guam" -msgstr "Guam" - -# @ woocommerce -#: classes/class-wc-countries.php:129 -msgid "Guinea-Bissau" -msgstr "Guinea-Bissau" - -# @ woocommerce -#: classes/class-wc-countries.php:130 -msgid "Guyana" -msgstr "Guyana" - -# @ woocommerce -#: classes/class-wc-countries.php:133 -msgid "Honduras" -msgstr "Honduras" - -# @ woocommerce -#: classes/class-wc-countries.php:92 -msgid "Croatia" -msgstr "Croatia" - -# @ woocommerce -#: classes/class-wc-countries.php:131 -msgid "Haiti" -msgstr "Haiti" - -# @ woocommerce -#: classes/class-wc-countries.php:135 -msgid "Hungary" -msgstr "Hungary" - -# @ woocommerce -#: classes/class-wc-countries.php:138 -msgid "Indonesia" -msgstr "Indonesia" - -# @ woocommerce -#: classes/class-wc-countries.php:143 -msgid "Israel" -msgstr "Israel" - -# @ woocommerce -#: classes/class-wc-countries.php:142 -msgid "Isle of Man" -msgstr "Isle of Man" - -# @ woocommerce -#: classes/class-wc-countries.php:137 -msgid "India" -msgstr "India" - -# @ woocommerce -#: classes/class-wc-countries.php:69 -msgid "British Indian Ocean Territory" -msgstr "British Indian Ocean Territory" - -# @ woocommerce -#: classes/class-wc-countries.php:140 -msgid "Iraq" -msgstr "Iraq" - -# @ woocommerce -#: classes/class-wc-countries.php:139 -msgid "Iran" -msgstr "Iran" - -# @ woocommerce -#: classes/class-wc-countries.php:136 -msgid "Iceland" -msgstr "Iceland" - -# @ woocommerce -#: classes/class-wc-countries.php:144 -msgid "Italy" -msgstr "Italy" - -# @ woocommerce -#: classes/class-wc-countries.php:148 -msgid "Jersey" -msgstr "Jersey" - -# @ woocommerce -#: classes/class-wc-countries.php:146 -msgid "Jamaica" -msgstr "Jamaica" - -# @ woocommerce -#: classes/class-wc-countries.php:149 -msgid "Jordan" -msgstr "Jordan" - -# @ woocommerce -#: classes/class-wc-countries.php:147 -msgid "Japan" -msgstr "Japan" - -# @ woocommerce -#: classes/class-wc-countries.php:151 -msgid "Kenya" -msgstr "Kenya" - -# @ woocommerce -#: classes/class-wc-countries.php:154 -msgid "Kyrgyzstan" -msgstr "Kyrgyzstan" - -# @ woocommerce -#: classes/class-wc-countries.php:75 -msgid "Cambodia" -msgstr "Cambodia" - -# @ woocommerce -#: classes/class-wc-countries.php:152 -msgid "Kiribati" -msgstr "Kiribati" - -# @ woocommerce -#: classes/class-wc-countries.php:87 -msgid "Comoros" -msgstr "Comoros" - -# @ woocommerce -#: classes/class-wc-countries.php:219 -msgid "Saint Kitts and Nevis" -msgstr "Saint Kitts and Nevis" - -# @ woocommerce -#: classes/class-wc-countries.php:199 -msgid "North Korea" -msgstr "North Korea" - -# @ woocommerce -#: classes/class-wc-countries.php:239 -msgid "South Korea" -msgstr "South Korea" - -# @ woocommerce -#: classes/class-wc-countries.php:153 -msgid "Kuwait" -msgstr "Kuwait" - -# @ woocommerce -#: classes/class-wc-countries.php:79 -msgid "Cayman Islands" -msgstr "Cayman Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:150 -msgid "Kazakhstan" -msgstr "Kazakhstan" - -# @ woocommerce -#: classes/class-wc-countries.php:155 -msgid "Laos" -msgstr "Laos" - -# @ woocommerce -#: classes/class-wc-countries.php:157 -msgid "Lebanon" -msgstr "Lebanon" - -# @ woocommerce -#: classes/class-wc-countries.php:220 -msgid "Saint Lucia" -msgstr "Saint Lucia" - -# @ woocommerce -#: classes/class-wc-countries.php:161 -msgid "Liechtenstein" -msgstr "Liechtenstein" - -# @ woocommerce -#: classes/class-wc-countries.php:242 -msgid "Sri Lanka" -msgstr "Sri Lanka" - -# @ woocommerce -#: classes/class-wc-countries.php:159 -msgid "Liberia" -msgstr "Liberia" - -# @ woocommerce -#: classes/class-wc-countries.php:158 -msgid "Lesotho" -msgstr "Lesotho" - -# @ woocommerce -#: classes/class-wc-countries.php:162 -msgid "Lithuania" -msgstr "Lithuania" - -# @ woocommerce -#: classes/class-wc-countries.php:163 -msgid "Luxembourg" -msgstr "Luxembourg" - -# @ woocommerce -#: classes/class-wc-countries.php:156 -msgid "Latvia" -msgstr "Latvia" - -# @ woocommerce -#: classes/class-wc-countries.php:160 -msgid "Libya" -msgstr "Libya" - -# @ woocommerce -#: classes/class-wc-countries.php:184 -msgid "Morocco" -msgstr "Morocco" - -# @ woocommerce -#: classes/class-wc-countries.php:180 -msgid "Monaco" -msgstr "Monaco" - -# @ woocommerce -#: classes/class-wc-countries.php:179 -msgid "Moldova" -msgstr "Moldova" - -# @ woocommerce -#: classes/class-wc-countries.php:182 -msgid "Montenegro" -msgstr "Montenegro" - -# @ woocommerce -#: classes/class-wc-countries.php:221 -msgid "Saint Martin (French part)" -msgstr "Saint Martin (French part)" - -# @ woocommerce -#: classes/class-wc-countries.php:166 -msgid "Madagascar" -msgstr "Madagascar" - -# @ woocommerce -#: classes/class-wc-countries.php:172 -msgid "Marshall Islands" -msgstr "Marshall Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:165 -msgid "Macedonia" -msgstr "Macedonia" - -# @ woocommerce -#: classes/class-wc-countries.php:170 -msgid "Mali" -msgstr "Mali" - -# @ woocommerce -#: classes/class-wc-countries.php:186 -msgid "Myanmar" -msgstr "Myanmar" - -# @ woocommerce -#: classes/class-wc-countries.php:181 -msgid "Mongolia" -msgstr "Mongolia" - -# @ woocommerce -#: classes/class-wc-countries.php:164 -msgid "Macao S.A.R., China" -msgstr "Macao S.A.R., China" - -# @ woocommerce -#: i18n/states/US.php:69 -msgid "Northern Mariana Islands" -msgstr "Northern Mariana Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:173 -msgid "Martinique" -msgstr "Martinique" - -# @ woocommerce -#: classes/class-wc-countries.php:174 -msgid "Mauritania" -msgstr "Mauritania" - -# @ woocommerce -#: classes/class-wc-countries.php:183 -msgid "Montserrat" -msgstr "Montserrat" - -# @ woocommerce -#: classes/class-wc-countries.php:171 -msgid "Malta" -msgstr "Malta" - -# @ woocommerce -#: classes/class-wc-countries.php:175 -msgid "Mauritius" -msgstr "Mauritius" - -# @ woocommerce -#: classes/class-wc-countries.php:169 -msgid "Maldives" -msgstr "Maldives" - -# @ woocommerce -#: classes/class-wc-countries.php:167 -msgid "Malawi" -msgstr "Malawi" - -# @ woocommerce -#: classes/class-wc-countries.php:177 -msgid "Mexico" -msgstr "Mexico" - -# @ woocommerce -#: classes/class-wc-countries.php:168 -msgid "Malaysia" -msgstr "Malaysia" - -# @ woocommerce -#: classes/class-wc-countries.php:185 -msgid "Mozambique" -msgstr "Mozambique" - -# @ woocommerce -#: classes/class-wc-countries.php:187 -msgid "Namibia" -msgstr "Namibia" - -# @ woocommerce -#: classes/class-wc-countries.php:192 -msgid "New Caledonia" -msgstr "New Caledonia" - -# @ woocommerce -#: classes/class-wc-countries.php:195 -msgid "Niger" -msgstr "Niger" - -# @ woocommerce -#: classes/class-wc-countries.php:198 -msgid "Norfolk Island" -msgstr "Norfolk Island" - -# @ woocommerce -#: classes/class-wc-countries.php:196 -msgid "Nigeria" -msgstr "Nigeria" - -# @ woocommerce -#: classes/class-wc-countries.php:194 -msgid "Nicaragua" -msgstr "Nicaragua" - -# @ woocommerce -#: classes/class-wc-countries.php:190 -msgid "Netherlands" -msgstr "Netherlands" - -# @ woocommerce -#: classes/class-wc-countries.php:200 -msgid "Norway" -msgstr "Norway" - -# @ woocommerce -#: classes/class-wc-countries.php:189 -msgid "Nepal" -msgstr "Nepal" - -# @ woocommerce -#: classes/class-wc-countries.php:188 -msgid "Nauru" -msgstr "Nauru" - -# @ woocommerce -#: classes/class-wc-countries.php:197 -msgid "Niue" -msgstr "Niue" - -# @ woocommerce -#: classes/class-wc-countries.php:193 -msgid "New Zealand" -msgstr "New Zealand" - -# @ woocommerce -#: classes/class-wc-countries.php:201 -msgid "Oman" -msgstr "Oman" - -# @ woocommerce -#: classes/class-wc-countries.php:204 -msgid "Panama" -msgstr "Panama" - -# @ woocommerce -#: classes/class-wc-countries.php:207 -msgid "Peru" -msgstr "Peru" - -# @ woocommerce -#: classes/class-wc-countries.php:114 -msgid "French Polynesia" -msgstr "French Polynesia" - -# @ woocommerce -#: classes/class-wc-countries.php:205 -msgid "Papua New Guinea" -msgstr "Papua Nová Guinea" - -# @ woocommerce -#: classes/class-wc-countries.php:208 -msgid "Philippines" -msgstr "Filipíny" - -# @ woocommerce -#: classes/class-wc-countries.php:202 -msgid "Pakistan" -msgstr "Pákistán" - -# @ woocommerce -#: classes/class-wc-countries.php:210 -msgid "Poland" -msgstr "Polsko" - -# @ woocommerce -#: classes/class-wc-countries.php:223 -msgid "Saint Pierre and Miquelon" -msgstr "Saint Pierre a Miquelon" - -# @ woocommerce -#: classes/class-wc-countries.php:209 -msgid "Pitcairn" -msgstr "Pitcairn" - -# @ woocommerce -#: i18n/states/US.php:70 -msgid "Puerto Rico" -msgstr "Porto Rico" - -# @ woocommerce -#: classes/class-wc-countries.php:203 -msgid "Palestinian Territory" -msgstr "Palestinské Teritorium" - -# @ woocommerce -#: classes/class-wc-countries.php:211 -msgid "Portugal" -msgstr "Portugalsko" - -# @ woocommerce -#: classes/class-wc-countries.php:206 -msgid "Paraguay" -msgstr "Paraguay" - -# @ woocommerce -#: classes/class-wc-countries.php:212 -msgid "Qatar" -msgstr "Katar" - -# @ woocommerce -#: classes/class-wc-countries.php:213 -msgid "Reunion" -msgstr "Reunion" - -# @ woocommerce -#: classes/class-wc-countries.php:214 -msgid "Romania" -msgstr "Rumunsko" - -# @ woocommerce -#: classes/class-wc-countries.php:229 -msgid "Serbia" -msgstr "Srbsko" - -# @ woocommerce -#: classes/class-wc-countries.php:215 -msgid "Russia" -msgstr "Rusko" - -# @ woocommerce -#: classes/class-wc-countries.php:216 -msgid "Rwanda" -msgstr "Rwanda" - -# @ woocommerce -#: classes/class-wc-countries.php:227 -msgid "Saudi Arabia" -msgstr "Saudská Arábie" - -# @ woocommerce -#: classes/class-wc-countries.php:235 -msgid "Solomon Islands" -msgstr "Šalamounovy ostrovy" - -# @ woocommerce -#: classes/class-wc-countries.php:230 -msgid "Seychelles" -msgstr "Seyšely" - -# @ woocommerce -#: classes/class-wc-countries.php:243 -msgid "Sudan" -msgstr "Súdán" - -# @ woocommerce -#: classes/class-wc-countries.php:247 -msgid "Sweden" -msgstr "Švédsko" - -# @ woocommerce -#: classes/class-wc-countries.php:232 -msgid "Singapore" -msgstr "Singapur" - -# @ woocommerce -#: classes/class-wc-countries.php:218 -msgid "Saint Helena" -msgstr "Svatá Helena" - -# @ woocommerce -#: classes/class-wc-countries.php:234 -msgid "Slovenia" -msgstr "Slovinsko" - -# @ woocommerce -#: classes/class-wc-countries.php:245 -msgid "Svalbard and Jan Mayen" -msgstr "Svalbard a Jan Mayen" - -# @ woocommerce -#: classes/class-wc-countries.php:233 -msgid "Slovakia" -msgstr "Slovenská republika" - -# @ woocommerce -#: classes/class-wc-countries.php:231 -msgid "Sierra Leone" -msgstr "Sierra Leone" - -# @ woocommerce -#: classes/class-wc-countries.php:225 -msgid "San Marino" -msgstr "San Marino" - -# @ woocommerce -#: classes/class-wc-countries.php:228 -msgid "Senegal" -msgstr "Senegal" - -# @ woocommerce -#: classes/class-wc-countries.php:236 -msgid "Somalia" -msgstr "Somálsko" - -# @ woocommerce -#: classes/class-wc-countries.php:244 -msgid "Suriname" -msgstr "Surinam" - -# @ woocommerce -#: classes/class-wc-countries.php:103 -msgid "El Salvador" -msgstr "Salvador" - -# @ woocommerce -#: classes/class-wc-countries.php:249 -msgid "Syria" -msgstr "Sýrie" - -# @ woocommerce -#: classes/class-wc-countries.php:246 -msgid "Swaziland" -msgstr "Svazijsko" - -# @ woocommerce -#: classes/class-wc-countries.php:262 -msgid "Turks and Caicos Islands" -msgstr "Turks a Caicos" - -# @ woocommerce -#: classes/class-wc-countries.php:81 -msgid "Chad" -msgstr "Čad" - -# @ woocommerce -#: classes/class-wc-countries.php:115 -msgid "French Southern Territories" -msgstr "Francouzské Jižní Teritorium" - -# @ woocommerce -#: classes/class-wc-countries.php:255 -msgid "Togo" -msgstr "Togo" - -# @ woocommerce -#: classes/class-wc-countries.php:253 -msgid "Thailand" -msgstr "Thajsko" - -# @ woocommerce -#: classes/class-wc-countries.php:251 -msgid "Tajikistan" -msgstr "Tajikistan" - -# @ woocommerce -#: classes/class-wc-countries.php:256 -msgid "Tokelau" -msgstr "Tokelau" - -# @ woocommerce -#: classes/class-wc-countries.php:254 -msgid "Timor-Leste" -msgstr "Timor-Leste" - -# @ woocommerce -#: classes/class-wc-countries.php:261 -msgid "Turkmenistan" -msgstr "Turkmenistan" - -# @ woocommerce -#: classes/class-wc-countries.php:259 -msgid "Tunisia" -msgstr "Tunisko" - -# @ woocommerce -#: classes/class-wc-countries.php:257 -msgid "Tonga" -msgstr "Tonga" - -# @ woocommerce -#: classes/class-wc-countries.php:260 -msgid "Turkey" -msgstr "Turecko" - -# @ woocommerce -#: classes/class-wc-countries.php:258 -msgid "Trinidad and Tobago" -msgstr "Trinidad and Tobago" - -# @ woocommerce -#: classes/class-wc-countries.php:263 -msgid "Tuvalu" -msgstr "Tuvalu" - -# @ woocommerce -#: classes/class-wc-countries.php:250 -msgid "Taiwan" -msgstr "Taiwan" - -# @ woocommerce -#: classes/class-wc-countries.php:252 -msgid "Tanzania" -msgstr "Tanzanie" - -# @ woocommerce -#: classes/class-wc-countries.php:265 -msgid "Ukraine" -msgstr "Ukraina" - -# @ woocommerce -#: classes/class-wc-countries.php:264 -msgid "Uganda" -msgstr "Uganda" - -# @ woocommerce -#: i18n/states/US.php:71 -msgid "US Minor Outlying Islands" -msgstr "Jižní Georgia/Sandwich ostrovy" - -# @ woocommerce -#: classes/class-wc-countries.php:268 -msgid "United States" -msgstr "Spojené státy" - -# @ woocommerce -#: classes/class-wc-countries.php:269 -msgid "Uruguay" -msgstr "Uruguay" - -# @ woocommerce -#: classes/class-wc-countries.php:270 -msgid "Uzbekistan" -msgstr "Uzbekistan" - -# @ woocommerce -#: classes/class-wc-countries.php:272 -msgid "Vatican" -msgstr "Vatikán" - -# @ woocommerce -#: classes/class-wc-countries.php:224 -msgid "Saint Vincent and the Grenadines" -msgstr "Svatý Vincent a Grenadiny" - -# @ woocommerce -#: classes/class-wc-countries.php:273 -msgid "Venezuela" -msgstr "Venezuela" - -# @ woocommerce -#: classes/class-wc-countries.php:70 -msgid "British Virgin Islands" -msgstr "Britské Panenské ostrovy" - -# @ woocommerce -#: classes/class-wc-countries.php:274 -msgid "Vietnam" -msgstr "Vietnam" - -# @ woocommerce -#: classes/class-wc-countries.php:271 -msgid "Vanuatu" -msgstr "Vanuatu" - -# @ woocommerce -#: classes/class-wc-countries.php:275 -msgid "Wallis and Futuna" -msgstr "Wallis a Futuna" - -# @ woocommerce -#: classes/class-wc-countries.php:278 -msgid "Yemen" -msgstr "Jemen" - -# @ woocommerce -#: classes/class-wc-countries.php:176 -msgid "Mayotte" -msgstr "Mayotte" - -# @ woocommerce -#: classes/class-wc-countries.php:237 -msgid "South Africa" -msgstr "Jižní Afrika" - -# @ woocommerce -#: classes/class-wc-countries.php:279 -msgid "Zambia" -msgstr "Zambie" - -# @ woocommerce -#: classes/class-wc-countries.php:280 -msgid "Zimbabwe" -msgstr "Zimbabwe" - -# @ woocommerce -#: i18n/states/AU.php:13 -msgid "Australian Capital Territory" -msgstr "Teritorium hlavního města Austrálie" - -# @ woocommerce -#: i18n/states/AU.php:14 -msgid "New South Wales" -msgstr "Nový Jižní Wales" - -# @ woocommerce -#: i18n/states/AU.php:15 -msgid "Northern Territory" -msgstr "Severní teritorium" - -# @ woocommerce -#: i18n/states/AU.php:16 -msgid "Queensland" -msgstr "Queensland" - -# @ woocommerce -#: i18n/states/AU.php:17 -msgid "South Australia" -msgstr "Jižní Austrálie" - -# @ woocommerce -#: i18n/states/AU.php:18 -msgid "Tasmania" -msgstr "Tasmanie" - -# @ woocommerce -#: i18n/states/AU.php:19 -msgid "Victoria" -msgstr "Victoria" - -# @ woocommerce -#: i18n/states/AU.php:20 -msgid "Western Australia" -msgstr "Západní Austrálie" - -# @ woocommerce -#: i18n/states/BR.php:16 -msgid "Amazonas" -msgstr "Amazonie" - -# @ woocommerce -#: i18n/states/BR.php:13 -msgid "Acre" -msgstr "Acre" - -# @ woocommerce -#: i18n/states/BR.php:14 -msgid "Alagoas" -msgstr "Alagoas" - -# @ woocommerce -#: i18n/states/BR.php:15 -msgid "Amapá" -msgstr "Amapá" - -# @ woocommerce -#: i18n/states/BR.php:18 -msgid "Ceará" -msgstr "Ceará" - -# @ woocommerce -#: i18n/states/BR.php:22 -msgid "Maranhão" -msgstr "Maranhão" - -# @ woocommerce -#: i18n/states/BR.php:28 -msgid "Paraná" -msgstr "Paraná" - -# @ woocommerce -#: i18n/states/BR.php:29 -msgid "Pernambuco" -msgstr "Pernambuco" - -# @ woocommerce -#: i18n/states/BR.php:30 -msgid "Piauí" -msgstr "Piauí" - -# @ woocommerce -#: i18n/states/BR.php:34 -msgid "Rondônia" -msgstr "Rondônia" - -# @ woocommerce -#: i18n/states/BR.php:35 -msgid "Roraima" -msgstr "Roraima" - -# @ woocommerce -#: i18n/states/BR.php:38 -msgid "Sergipe" -msgstr "Sergipe" - -# @ woocommerce -#: i18n/states/BR.php:39 -msgid "Tocantins" -msgstr "Tocantins" - -# @ woocommerce -#: i18n/states/BR.php:26 -msgid "Pará" -msgstr "Pará" - -# @ woocommerce -#: i18n/states/BR.php:17 -msgid "Bahia" -msgstr "Bahia" - -# @ woocommerce -#: i18n/states/BR.php:21 -msgid "Goiás" -msgstr "Goiás" - -# @ woocommerce -#: i18n/states/CA.php:13 -msgid "Alberta" -msgstr "Alberta" - -# @ woocommerce -#: i18n/states/CA.php:14 -msgid "British Columbia" -msgstr "Britská Kolumbie" - -# @ woocommerce -#: i18n/states/CA.php:15 -msgid "Manitoba" -msgstr "Manitoba" - -# @ woocommerce -#: i18n/states/CA.php:16 -msgid "New Brunswick" -msgstr "Nový Brunswick" - -# @ woocommerce -#: i18n/states/CA.php:17 -msgid "Newfoundland" -msgstr "Newfoundland" - -# @ woocommerce -#: i18n/states/CA.php:18 -msgid "Northwest Territories" -msgstr "Severozápadní teritoria" - -# @ woocommerce -#: i18n/states/CA.php:19 -msgid "Nova Scotia" -msgstr "Nové Skotsko" - -# @ woocommerce -#: i18n/states/CA.php:20 -msgid "Nunavut" -msgstr "Nunavut" - -# @ woocommerce -#: i18n/states/CA.php:21 -msgid "Ontario" -msgstr "Ontario" - -# @ woocommerce -#: i18n/states/CA.php:22 -msgid "Prince Edward Island" -msgstr "Ostrov prince Edwarda" - -# @ woocommerce -#: i18n/states/CA.php:23 -msgid "Quebec" -msgstr "Quebec" - -# @ woocommerce -#: i18n/states/CA.php:24 -msgid "Saskatchewan" -msgstr "Saskatchewan" - -# @ woocommerce -#: i18n/states/CA.php:25 -msgid "Yukon Territory" -msgstr "Yukon" - -# @ woocommerce -#: i18n/states/US.php:13 -msgid "Alabama" -msgstr "Alabama" - -# @ woocommerce -#: i18n/states/US.php:14 -msgid "Alaska" -msgstr "Aljaška" - -# @ woocommerce -#: i18n/states/US.php:15 -msgid "Arizona" -msgstr "Arizona" - -# @ woocommerce -#: i18n/states/US.php:16 -msgid "Arkansas" -msgstr "Arkansas" - -# @ woocommerce -#: i18n/states/US.php:17 -msgid "California" -msgstr "Kalifornie" - -# @ woocommerce -#: i18n/states/US.php:18 -msgid "Colorado" -msgstr "Colorado" - -# @ woocommerce -#: i18n/states/US.php:19 -msgid "Connecticut" -msgstr "Connecticut" - -# @ woocommerce -#: i18n/states/US.php:20 -msgid "Delaware" -msgstr "Delaware" - -# @ woocommerce -#: i18n/states/US.php:21 -msgid "District Of Columbia" -msgstr "Území Kolumbie" - -# @ woocommerce -#: i18n/states/US.php:22 -msgid "Florida" -msgstr "Florida" - -# @ woocommerce -#: i18n/states/US.php:24 -msgid "Hawaii" -msgstr "Hawaii" - -# @ woocommerce -#: i18n/states/US.php:25 -msgid "Idaho" -msgstr "Idaho" - -# @ woocommerce -#: i18n/states/US.php:26 -msgid "Illinois" -msgstr "Illinois" - -# @ woocommerce -#: i18n/states/US.php:27 -msgid "Indiana" -msgstr "Indiana" - -# @ woocommerce -#: i18n/states/US.php:28 -msgid "Iowa" -msgstr "Iowa" - -# @ woocommerce -#: i18n/states/US.php:29 -msgid "Kansas" -msgstr "Kansas" - -# @ woocommerce -#: i18n/states/US.php:30 -msgid "Kentucky" -msgstr "Kentucky" - -# @ woocommerce -#: i18n/states/US.php:31 -msgid "Louisiana" -msgstr "Louisiana" - -# @ woocommerce -#: i18n/states/US.php:32 -msgid "Maine" -msgstr "Maine" - -# @ woocommerce -#: i18n/states/US.php:33 -msgid "Maryland" -msgstr "Maryland" - -# @ woocommerce -#: i18n/states/US.php:34 -msgid "Massachusetts" -msgstr "Massachusetts" - -# @ woocommerce -#: i18n/states/US.php:35 -msgid "Michigan" -msgstr "Michigan" - -# @ woocommerce -#: i18n/states/US.php:36 -msgid "Minnesota" -msgstr "Minnesota" - -# @ woocommerce -#: i18n/states/US.php:37 -msgid "Mississippi" -msgstr "Mississippi" - -# @ woocommerce -#: i18n/states/US.php:38 -msgid "Missouri" -msgstr "Missouri" - -# @ woocommerce -#: i18n/states/US.php:39 -msgid "Montana" -msgstr "Montana" - -# @ woocommerce -#: i18n/states/US.php:40 -msgid "Nebraska" -msgstr "Nebraska" - -# @ woocommerce -#: i18n/states/US.php:41 -msgid "Nevada" -msgstr "Nevada" - -# @ woocommerce -#: i18n/states/US.php:42 -msgid "New Hampshire" -msgstr "New Hampshire" - -# @ woocommerce -#: i18n/states/US.php:43 -msgid "New Jersey" -msgstr "New Jersey" - -# @ woocommerce -#: i18n/states/US.php:44 -msgid "New Mexico" -msgstr "New Mexico" - -# @ woocommerce -#: i18n/states/US.php:45 -msgid "New York" -msgstr "New York" - -# @ woocommerce -#: i18n/states/US.php:46 -msgid "North Carolina" -msgstr "North Carolina" - -# @ woocommerce -#: i18n/states/US.php:47 -msgid "North Dakota" -msgstr "North Dakota" - -# @ woocommerce -#: i18n/states/US.php:48 -msgid "Ohio" -msgstr "Ohio" - -# @ woocommerce -#: i18n/states/US.php:49 -msgid "Oklahoma" -msgstr "Oklahoma" - -# @ woocommerce -#: i18n/states/US.php:50 -msgid "Oregon" -msgstr "Oregon" - -# @ woocommerce -#: i18n/states/US.php:51 -msgid "Pennsylvania" -msgstr "Pennsylvania" - -# @ woocommerce -#: i18n/states/US.php:52 -msgid "Rhode Island" -msgstr "Rhode Island" - -# @ woocommerce -#: i18n/states/US.php:53 -msgid "South Carolina" -msgstr "Jižní Karolína" - -# @ woocommerce -#: i18n/states/US.php:54 -msgid "South Dakota" -msgstr "Jižní Dakota" - -# @ woocommerce -#: i18n/states/US.php:55 -msgid "Tennessee" -msgstr "Tennessee" - -# @ woocommerce -#: i18n/states/US.php:56 -msgid "Texas" -msgstr "Texas" - -# @ woocommerce -#: i18n/states/US.php:57 -msgid "Utah" -msgstr "Utah" - -# @ woocommerce -#: i18n/states/US.php:58 -msgid "Vermont" -msgstr "Vermont" - -# @ woocommerce -#: i18n/states/US.php:59 -msgid "Virginia" -msgstr "Virginia" - -# @ woocommerce -#: i18n/states/US.php:60 -msgid "Washington" -msgstr "Washington" - -# @ woocommerce -#: i18n/states/US.php:61 -msgid "West Virginia" -msgstr "Západní Virginia" - -# @ woocommerce -#: i18n/states/US.php:62 -msgid "Wisconsin" -msgstr "Wisconsin" - -# @ woocommerce -#: i18n/states/US.php:63 -msgid "Wyoming" -msgstr "Wyoming" - -# @ woocommerce -#: classes/class-wc-countries.php:418 -msgid "to the" -msgstr "pro" - -# @ woocommerce -#: classes/class-wc-countries.php:419 -msgid "to" -msgstr "pro" - -# @ woocommerce -#: classes/class-wc-countries.php:432 -msgid "the" -msgstr "ten" - -# @ woocommerce -#: classes/class-wc-countries.php:444 -msgid "VAT" -msgstr "DPH" - -# @ woocommerce -#: classes/class-wc-countries.php:470 -msgid "(ex. VAT)" -msgstr "(bez DPH)" - -# @ woocommerce -#: classes/class-wc-order.php:1219 -#, php-format -msgid "Order status changed from %s to %s." -msgstr "Stav objednávky se změnil z %s na %s." - -# @ woocommerce -#: classes/class-wc-order.php:1463 -msgid "Order item stock reduced successfully." -msgstr "Objednané zboží bylo úspěšně odepsáno ze skladu." - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:567 -#: classes/abstracts/abstract-wc-product.php:580 templates/cart/cart.php:76 -msgid "Available on backorder" -msgstr "Dostupné na objednávku." - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:964 -#: templates/single-product-reviews.php:28 -#, php-format -msgid "Rated %s out of 5" -msgstr "Hodnocení %s z 5" - -# @ woocommerce -#: woocommerce.php:1691 -msgid "Cart % Discount" -msgstr "Sleva na nákup %" - -# @ woocommerce -#: woocommerce.php:1692 -msgid "Product Discount" -msgstr "Sleva na produkt" - -# @ woocommerce -#: woocommerce.php:1693 -msgid "Product % Discount" -msgstr "Sleva na produkt %" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:431 -#: classes/emails/class-wc-email-customer-completed-order.php:135 -#: classes/emails/class-wc-email-customer-invoice.php:138 -#: classes/emails/class-wc-email-new-order.php:115 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:63 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:57 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:130 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:120 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:76 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:75 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:50 -msgid "Enable/Disable" -msgstr "Povolit / zakázat" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:65 -msgid "Enable Bank Transfer" -msgstr "Povolit bankovní převod" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:69 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:63 -#: classes/gateways/cod/class-wc-gateway-cod.php:87 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:143 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:126 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:104 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:84 -msgid "Title" -msgstr "Titulek" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:71 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:65 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:145 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:128 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:83 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:58 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:106 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:86 -msgid "This controls the title which the user sees during checkout." -msgstr "Titulek, který vidí uživatel během placení." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:72 -msgid "Direct Bank Transfer" -msgstr "Bankovním převodem" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:76 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:70 -msgid "Customer Message" -msgstr "Upřesňující pokyny" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:78 -msgid "" -"Give the customer instructions for paying via BACS, and let them know that " -"their order won't be shipping until the money is received." -msgstr "" -"Dejte zákazníkovi instrukce pro placení převodem (jak bude platba rozpoznána " -"- variabilní symbol / zpráva pro příjemce) a dejte mu vědět, že zboží nebude " -"expedováno dříve, než dorazí platba na Váš účet." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:79 -msgid "" -"Make your payment directly into our bank account. Please use your Order ID " -"as the payment reference. Your order wont be shipped until the funds have " -"cleared in our account." -msgstr "" -"Proveďte platbu přímo na náš bankovní účet. Prosím použijte číslo objednávky " -"jako variabilní symbol. Bez uvedení čísla objednávky není možné Vaší platbu " -"rozpoznat." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:88 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:163 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:203 -msgid "Account Name" -msgstr "Název účtu" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:94 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:164 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:204 -msgid "Account Number" -msgstr "Číslo účtu" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:100 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:165 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:205 -msgid "Sort Code" -msgstr "Sort Code (jen zahraničí)" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:106 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:166 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:206 -msgid "Bank Name" -msgstr "Název banky" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:112 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:167 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:207 -msgid "IBAN" -msgstr "IBAN" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:117 -msgid "BIC (formerly Swift)" -msgstr "BIC (dříve Swift)" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:136 -msgid "BACS Payment" -msgstr "Platba převodem na účet" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:137 -msgid "" -"Allows payments by BACS (Bank Account Clearing System), more commonly known " -"as direct bank/wire transfer." -msgstr "Umožňuje bezhotovostní platbu převodem na bankovní účet." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:158 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:200 -msgid "Our Details" -msgstr "Naše údaje" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:168 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:208 -msgid "BIC" -msgstr "BIC" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:234 -msgid "Awaiting BACS payment" -msgstr "Čeká na přijetí platby převodem." - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:59 -msgid "Enable Cheque Payment" -msgstr "Povolit platbu šekem" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:66 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:90 -msgid "Cheque Payment" -msgstr "Platba šekem" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:72 -msgid "" -"Let the customer know the payee and where they should be sending the cheque " -"to and that their order won't be shipping until you receive it." -msgstr "" -"Umožní nakupujícímu vidět údaje o prodávajícím. Objednávka nebude expedována " -"dokud Vám (prodávajícímu nepřijde platba." - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:91 -msgid "" -"Allows cheque payments. Why would you take cheques in this day and age? Well " -"you probably wouldn't but it does allow you to make test purchases for " -"testing order emails and the 'success' pages etc." -msgstr "Umožňuje platbu šekem." - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:147 -msgid "Awaiting cheque payment" -msgstr "Čeká na platbu šekem" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:91 -msgid "PayPal standard" -msgstr "PayPal standard" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:92 -msgid "" -"PayPal standard works by sending the user to PayPal to enter their payment " -"information." -msgstr "" -"PayPal standard přesměruje uživatele na stránku společnosti PayPal, kde " -"vloží své platební údaje." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:104 -msgid "Gateway Disabled" -msgstr "Metoda zakázána" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:104 -msgid "PayPal does not support your store currency." -msgstr "PayPal nepodporuje měnu Vašeho obchodu." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:122 -msgid "Enable PayPal standard" -msgstr "Povolit platbu pomocí PayPal standard" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:34 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:129 -msgid "PayPal" -msgstr "PayPal" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:153 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:135 -msgid "This controls the description which the user sees during checkout." -msgstr "Popis, který uvidí uživatel při placení u pokladny." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:136 -msgid "" -"Pay via PayPal; you can pay with your credit card if you don't have a PayPal " -"account" -msgstr "" -"Plaťte přes PayPal nebo můžete platit kreditní kartou, pokud nemáte PayPal " -"účet" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:139 -msgid "PayPal Email" -msgstr "PayPal E-mail" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:141 -msgid "" -"Please enter your PayPal email address; this is needed in order to take " -"payment." -msgstr "" -"Prosím, zadejte svou e-mailovou adresu spojenou s účtem PayPal, což je " -"nezbytné, aby platba proběhla." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:182 -msgid "Shipping details" -msgstr "Doručovací údaje" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:202 -msgid "PayPal sandbox" -msgstr "PayPal sandbox" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:204 -msgid "Enable PayPal sandbox" -msgstr "Povolit PayPal sandbox (= testovací mód, simulace platby)" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:426 -msgid "" -"Thank you for your order. We are now redirecting you to PayPal to make " -"payment." -msgstr "" -"Děkujeme Vám za Vaší objednávku. Nyní budete přesměrování na stránky " -"společnosti PayPal, kde provedete platbu." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:449 -msgid "Pay via PayPal" -msgstr "Zaplatit přes PayPal" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:449 -msgid "Cancel order & restore cart" -msgstr "Zrušit objednávku a vyprázdnit košík" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:503 -msgid "" -"Thank you for your order, please click the button below to pay with PayPal." -msgstr "" -"Děkujeme Vám za Vaší objednávku, prosím klikněte na tlačítko níže a zaplaťte " -"přes PayPal." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:676 -msgid "IPN payment completed" -msgstr "IPN platba dokončena" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:691 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:699 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:717 -#, php-format -msgid "Payment %s via IPN." -msgstr "Platba %s pomocí IPN (oznámení o platbě v reálném čase)." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:704 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:722 -msgid "Order refunded/reversed" -msgstr "Objednávka stornována / vrácené zboží" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:82 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:81 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:56 -msgid "Method Title" -msgstr "Název metody" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:25 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:85 -msgid "Flat Rate" -msgstr "Poštou při platbě předem" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:88 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:143 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:99 -msgid "Method availability" -msgstr "Dostupnost metody" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:93 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:148 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:104 -msgid "All allowed countries" -msgstr "Všechny povolené země" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:145 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:94 -msgid "Per Order - charge shipping for the entire order as a whole" -msgstr "Za objednávku - účtovat dopravné pro celou objednávku jako celku" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:146 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:95 -msgid "Per Item - charge shipping for each item individually" -msgstr "Za položku - účtovat dopravné pro každou položku zvlášť" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:147 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:96 -msgid "Per Class - charge shipping for each shipping class in an order" -msgstr "Za třídu - účtovat dopravné pro každou dopravní třídu v objednávce" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:106 -msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -msgstr "Náklady na poštovné v Kč bez daně. Zadejte částku, např. 120." - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:114 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. " -"Leave blank to disable." -msgstr "" -"Poplatek v Kč bez daně. Zadejte částku, např. 60, nebo v procentech, např. " -"5%. Nechte prázdné pro vypnutí možnosti." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:27 -msgid "Flat rates let you define a standard rate per item, or per order." -msgstr "Zde určíte základní sazbu na doručení za položku, nebo na objednávku." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:486 -msgid "Cost, excluding tax." -msgstr "Náklady bez DPH" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:487 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:112 -msgid "Handling Fee" -msgstr "Manipulační poplatek" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:487 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -msgstr "Poplatek bez daně. Zadejte částku, např. 120, nebo procento, např. 5%." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:518 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:548 -msgid "Select a class…" -msgstr "Zvolte třídu…" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:77 -msgid "Enable Free Shipping" -msgstr "Povolit doručení zdarma" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:25 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:145 -msgid "Free Shipping" -msgstr "Doručení zdarma" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:118 -msgid "Minimum Order Amount" -msgstr "Minimální objednané množství" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-cart.php:53 -#: woocommerce-functions.php:1703 -msgid "Please enter a valid postcode/ZIP." -msgstr "Zadejte prosím platné PSČ." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-cart.php:64 -#: classes/shortcodes/class-wc-shortcode-cart.php:70 -msgid "Shipping costs updated." -msgstr "Náklady na doručení aktualizovány." - -# @ woocommerce -#: templates/cart/cart-empty.php:14 -msgid "Your cart is currently empty." -msgstr "Váš košík je prázdný." - -# @ woocommerce -#: templates/cart/cart-empty.php:18 -msgid "← Return To Shop" -msgstr "← zpět do obchodu" - -# @ woocommerce -#: templates/cart/cart.php:47 -msgid "Remove this item" -msgstr "Odstranit tuto položku" - -# @ woocommerce -#: templates/cart/cart.php:127 templates/checkout/form-coupon.php:29 -msgid "Apply Coupon" -msgstr "Použít kupón" - -# @ woocommerce -#: templates/cart/cart.php:134 -msgid "Update Cart" -msgstr "Aktualizovat" - -# @ woocommerce -#: templates/cart/cart.php:134 -msgid "Proceed to Checkout →" -msgstr "Přejít do Pokladny →" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-checkout.php:73 -msgid "" -"The order totals have been updated. Please confirm your order by pressing " -"the Place Order button at the bottom of the page." -msgstr "" -"Celková cena objednávky byla aktualizována. Prosím potvrďte Vaši objednávku " -"tlačítkem \"Objednat\" dole na stránce." - -# @ woocommerce -#: templates/myaccount/my-account.php:19 -#, php-format -msgid "" -"Hello, %s. From your account dashboard you can view your " -"recent orders, manage your shipping and billing addresses and change your password." -msgstr "" -"Dobrý den, %s. Na hlavní stránce vašeho účtu si můžete " -"prohlédnout poslední objednávky, upravit možnosti doručení a fakturační " -"adresy a změnit heslo." - -# @ woocommerce -#: templates/myaccount/my-downloads.php:18 -msgid "Available downloads" -msgstr "K dispozici ke stažení" - -# @ woocommerce -#: templates/myaccount/my-orders.php:26 -msgid "Recent Orders" -msgstr "Nedávné objednávky" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:43 -#: admin/post-types/writepanels/order-item-html.php:115 -#: admin/woocommerce-admin-reports.php:1562 -#: admin/woocommerce-admin-reports.php:1615 -#: admin/woocommerce-admin-reports.php:2386 -#: admin/woocommerce-admin-reports.php:2555 -#: admin/woocommerce-admin-reports.php:2633 templates/cart/cart.php:31 -#: templates/checkout/review-order.php:22 templates/myaccount/my-orders.php:35 -#: templates/order/order-details.php:21 -msgid "Total" -msgstr "Cena celkem" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:311 -#: assets/js/admin/editor_plugin_lang.php:22 -#: templates/checkout/thankyou.php:28 templates/myaccount/my-orders.php:71 -msgid "Pay" -msgstr "Zaplatit" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:138 -#: admin/post-types/writepanels/writepanel-product_data.php:1083 -#: templates/myaccount/my-orders.php:77 -msgid "Cancel" -msgstr "Zrušit" - -# @ woocommerce -#: templates/myaccount/my-address.php:35 -msgid "The following addresses will be used on the checkout page by default." -msgstr "Následující adresy budou použity na stránce pokladny jako výchozí." - -# @ woocommerce -#: classes/class-wc-countries.php:965 -msgid "State" -msgstr "Kraj" - -# @ woocommerce -#: templates/myaccount/form-edit-address.php:43 -msgid "Save Address" -msgstr "Uložení adres" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:78 -#: woocommerce-functions.php:1625 -msgid "Please enter your password." -msgstr "Zadejte své heslo prosím." - -# @ woocommerce -#: templates/myaccount/form-change-password.php:20 -#: templates/myaccount/form-lost-password.php:31 -msgid "New password" -msgstr "Nové heslo" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:24 -#: templates/myaccount/form-lost-password.php:35 -msgid "Re-enter new password" -msgstr "Znovu zadejte nové heslo" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:29 -#: templates/myaccount/form-lost-password.php:45 -msgid "Save" -msgstr "Uložit" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:65 -#: templates/order/tracking.php:31 -msgid "Order Updates" -msgstr "Aktualizace objednávky" - -# @ woocommerce -#: templates/order/tracking.php:20 -msgid " ago" -msgstr "před" - -# @ woocommerce -#: templates/order/tracking.php:20 -msgid "and was completed" -msgstr "a byla dokončena" - -# @ woocommerce -#: templates/order/form-tracking.php:17 -msgid "" -"To track your order please enter your Order ID in the box below and press " -"return. This was given to you on your receipt and in the confirmation email " -"you should have received." -msgstr "" -"Chcete-li sledovat objednávku, zadejte prosím své číslo objednávky do " -"rámečku níže a stiskněte Enter. Číslo objednávky najdete na potvrzení " -"objednávky, které Vám bylo zasláno e-mailem." - -# @ woocommerce -#: templates/order/form-tracking.php:19 -msgid "Order ID" -msgstr "Číslo objednávky" - -# @ woocommerce -#: templates/order/form-tracking.php:19 -msgid "Found in your order confirmation email." -msgstr "Najdete v e-mailu s potvrzením objednávky." - -# @ woocommerce -#: templates/order/form-tracking.php:20 -msgid "Billing Email" -msgstr "Fakturační e-mail" - -# @ woocommerce -#: templates/order/form-tracking.php:20 -msgid "Email you used during checkout." -msgstr "E-mail, který jste použili při placení." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:64 -#: classes/shortcodes/class-wc-shortcode-pay.php:118 -msgid "" -"Your order has already been paid for. Please contact us if you need " -"assistance." -msgstr "" -"Vaše objednávka již byla zaplacena. Prosím, kontaktujte nás v případě pořeby." - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:194 -#: classes/shortcodes/class-wc-shortcode-pay.php:90 -#: templates/checkout/thankyou.php:40 -#: templates/emails/customer-completed-order.php:18 -#: templates/emails/customer-invoice.php:22 -#: templates/emails/customer-note.php:22 -#: templates/emails/customer-processing-order.php:18 -msgid "Order:" -msgstr "Objednávka:" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:94 -#: templates/checkout/thankyou.php:44 -msgid "Date:" -msgstr "Datum:" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:103 -#: templates/checkout/thankyou.php:53 -msgid "Payment method:" -msgstr "Způsob platby:" - -# @ woocommerce -#: templates/checkout/thankyou.php:18 -msgid "" -"Unfortunately your order cannot be processed as the originating bank/" -"merchant has declined your transaction." -msgstr "" -"Bohužel Vaše objednávka nemůže být zpracována kvůli odmítnutí transakce " -"bankou příp. obchodníkem." - -# @ woocommerce -#: templates/checkout/thankyou.php:22 -msgid "Please attempt your purchase again or go to your account page." -msgstr "Prosím, opakujte svůj nákup nebo přejděte na stránku svého účtu." - -# @ woocommerce -#: templates/checkout/thankyou.php:24 -msgid "Please attempt your purchase again." -msgstr "Prosím, opakujte svůj nákup." - -# @ woocommerce -#: templates/checkout/thankyou.php:36 templates/checkout/thankyou.php:67 -msgid "Thank you. Your order has been received." -msgstr "Děkujeme. Vaše objednávka byla přijata." - -# @ woocommerce -#: templates/loop/no-products-found.php:14 templates/loop-shop.php:40 -msgid "No products found which match your selection." -msgstr "Žádné zboží, které by odpovídalo Vašemu výběru, nebylo nalezeno." - -# @ woocommerce -#: templates/single-product-reviews.php:30 -#, php-format -msgid "%s review for %s" -msgid_plural "%s reviews for %s" -msgstr[0] "%s recenze k %s" -msgstr[1] "%s recenze k %s" -msgstr[2] "%s recenzí k %s" - -# @ woocommerce -#: templates/single-product-reviews.php:63 -msgid "Add Review" -msgstr "Přidat recenzi" - -# @ woocommerce -#: templates/single-product-reviews.php:65 -msgid "Add a review" -msgstr "Přidat recenzi" - -# @ woocommerce -#: templates/single-product-reviews.php:69 -msgid "Be the first to review" -msgstr "Buďte první, kdo napíše recenzi" - -# @ woocommerce -#: templates/single-product-reviews.php:71 -msgid "" -"There are no reviews yet, would you like to submit yours?" -msgstr "" -"Zatím zde nejsou žádné recenze. Chcete pomoci ostatním přidáním recenze? " -"Podělte se o Vaše " -"zkušenosti?" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:182 -#: admin/woocommerce-admin-users.php:187 templates/myaccount/form-login.php:78 -#: templates/single-product-reviews.php:86 -msgid "Email" -msgstr "E-mail" - -# @ woocommerce -#: templates/single-product-reviews.php:89 -msgid "Submit Review" -msgstr "Odeslat recenzi" - -# @ woocommerce -#: templates/single-product-reviews.php:96 -msgid "Rating" -msgstr "Hodnocení" - -# @ woocommerce -#: templates/single-product-reviews.php:98 -msgid "Perfect" -msgstr "Skvělý" - -# @ woocommerce -#: templates/single-product-reviews.php:99 -msgid "Good" -msgstr "Dobrý" - -# @ woocommerce -#: templates/single-product-reviews.php:100 -msgid "Average" -msgstr "Průměrný" - -# @ woocommerce -#: templates/single-product-reviews.php:101 -msgid "Not that bad" -msgstr "Ne tak špatný" - -# @ woocommerce -#: templates/single-product-reviews.php:102 -msgid "Very Poor" -msgstr "Velmi slabý" - -# @ woocommerce -#: templates/single-product-reviews.php:107 -msgid "Your Review" -msgstr "Vaše recenze" - -# @ woocommerce -#: templates/checkout/form-checkout.php:20 -msgid "You must be logged in to checkout." -msgstr "Abyste mohli zaplatit, musíte být přihlášeni." - -# @ woocommerce -#: templates/checkout/form-checkout.php:51 -msgid "Your order" -msgstr "Vaše objednávka" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:117 -#: templates/cart/mini-cart.php:63 -msgid "Subtotal" -msgstr "Mezisoučet" - -# @ woocommerce -#: templates/checkout/form-pay.php:78 -msgid "" -"Sorry, it seems that there are no available payment methods for your " -"location. Please contact us if you require assistance or wish to make " -"alternate arrangements." -msgstr "" -"Omlouváme se, ale zdá se, že nejsou k dispozici žádné platební metody pro " -"Váš region. Prosím, kontaktujte nás, pokud budete potřebovat pomoc, nebo k " -"dohodnutí se na náhradním řešení." - -# @ woocommerce -#: templates/checkout/form-pay.php:87 -msgid "Pay for order" -msgstr "Zaplatit objednávku" - -# @ woocommerce -#: templates/checkout/review-order.php:174 -msgid "Please fill in your details above to see available payment methods." -msgstr "" -"Výše prosím vyplňte své kontaktní údaje pro zobrazení dostupných platebních " -"metod." - -# @ woocommerce -#: templates/checkout/review-order.php:176 -msgid "" -"Sorry, it seems that there are no available payment methods for your state. " -"Please contact us if you require assistance or wish to make alternate " -"arrangements." -msgstr "" -"Omlouváme se, ale zdá se, že nejsou k dispozici žádné platební metody pro " -"Váš stát. Kontaktujte nás prosím, pokud budete potřebovat pomoc, nebo k " -"dohodnutí se na náhradním řešení." - -# @ woocommerce -#: templates/checkout/review-order.php:185 -msgid "" -"Since your browser does not support JavaScript, or it is disabled, please " -"ensure you click the Update Totals button before placing your " -"order. You may be charged more than the amount stated above if you fail to " -"do so." -msgstr "" -"Protože Váš prohlížeč nepodporuje JavaScript, nebo je zakázaný, prosím, " -"ujistěte se kliknutím na tlačítko Přepočítat před odesláním " -"objednávky. Pokud tak neučiníte, poplatky se mohou lišit od těch uvedených " -"výše." - -# @ woocommerce -#: templates/checkout/review-order.php:185 -msgid "Update totals" -msgstr "Přepočítat" - -# @ woocommerce -#: templates/checkout/review-order.php:192 -msgid "Place order" -msgstr "Objednat" - -# @ woocommerce -#: templates/checkout/review-order.php:199 -msgid "terms & conditions" -msgstr "Obchodními podmínkami" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:226 -#: templates/emails/email-addresses.php:18 -#: templates/emails/plain/email-addresses.php:12 -msgid "Billing address" -msgstr "Fakturační adresa" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:233 -#: templates/emails/email-addresses.php:28 -#: templates/emails/plain/email-addresses.php:17 -msgid "Shipping address" -msgstr "Doručovací adresa" - -# @ woocommerce -#: templates/emails/customer-note.php:14 -#: templates/emails/plain/customer-note.php:13 -msgid "Hello, a note has just been added to your order:" -msgstr "Dobrý den, do Vaší objednávky byla přidána poznámka:" - -# @ woocommerce -#: templates/emails/customer-note.php:18 -#: templates/emails/plain/customer-note.php:21 -msgid "For your reference, your order details are shown below." -msgstr "Zde je shrnutí Vaší objednávky pro Váš přehled:" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:192 -msgid "" -"Thank you, we are now processing your order. Your order's details are below." -msgstr "" -"Děkujeme Vám, Vaše objednávka se nyní zpracovává. Níže najdete údaje o " -"objednávce:" - -# @ woocommerce -#: templates/myaccount/form-login.php:60 -#: templates/myaccount/form-login.php:101 -msgid "Register" -msgstr "Registrovat se" - -# @ woocommerce -#: templates/myaccount/form-login.php:89 -msgid "Re-enter password" -msgstr "Znovu zadejte heslo" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:31 -msgid "Display a list of your best selling products on your site." -msgstr "Zobrazí seznam Vašich nejprodávanějších produktů." - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:33 -msgid "WooCommerce Best Sellers" -msgstr "E-shop - nejprodávanější" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:71 -msgid "Best Sellers" -msgstr "Nejprodávanější" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:191 -#: classes/widgets/class-wc-widget-cart.php:109 -#: classes/widgets/class-wc-widget-featured-products.php:169 -#: classes/widgets/class-wc-widget-layered-nav.php:352 -#: classes/widgets/class-wc-widget-onsale.php:178 -#: classes/widgets/class-wc-widget-price-filter.php:180 -#: classes/widgets/class-wc-widget-product-categories.php:185 -#: classes/widgets/class-wc-widget-product-search.php:91 -#: classes/widgets/class-wc-widget-product-tag-cloud.php:101 -#: classes/widgets/class-wc-widget-random-products.php:136 -#: classes/widgets/class-wc-widget-recent-products.php:172 -#: classes/widgets/class-wc-widget-recent-reviews.php:158 -#: classes/widgets/class-wc-widget-recently-viewed.php:168 -#: classes/widgets/class-wc-widget-top-rated-products.php:156 -msgid "Title:" -msgstr "Název:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:194 -#: classes/widgets/class-wc-widget-featured-products.php:172 -#: classes/widgets/class-wc-widget-onsale.php:181 -#: classes/widgets/class-wc-widget-random-products.php:141 -#: classes/widgets/class-wc-widget-recent-products.php:175 -#: classes/widgets/class-wc-widget-recent-reviews.php:161 -#: classes/widgets/class-wc-widget-recently-viewed.php:171 -#: classes/widgets/class-wc-widget-top-rated-products.php:159 -msgid "Number of products to show:" -msgstr "Počet produktů k zobrazení:" - -# @ woocommerce -#: templates/cart/mini-cart.php:55 -msgid "No products in the cart." -msgstr "Žádné produkty v košíku." - -# @ woocommerce -#: classes/class-wc-cart.php:869 classes/class-wc-cart.php:883 -#: classes/class-wc-cart.php:891 templates/cart/mini-cart.php:68 -#: woocommerce-functions.php:497 woocommerce.php:1210 -msgid "View Cart →" -msgstr "Zobrazit košík →" - -# @ woocommerce -#: templates/cart/mini-cart.php:69 -msgid "Checkout →" -msgstr "Pokladna →" - -# @ woocommerce -#: classes/widgets/class-wc-widget-featured-products.php:35 -msgid "Display a list of featured products on your site." -msgstr "Zobrazit seznam speciálních nabídek na Vašich stránkách." - -# @ woocommerce -#: classes/widgets/class-wc-widget-featured-products.php:37 -msgid "WooCommerce Featured Products" -msgstr "E-shop - speciální nabídka" - -# @ woocommerce -#: classes/widgets/class-wc-widget-featured-products.php:75 -msgid "Featured Products" -msgstr "Speciální nabídka" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:31 -msgid "" -"Shows a custom attribute in a widget which lets you narrow down the list of " -"products when viewing product categories." -msgstr "" -"Zobrazuje uživatelsky nastavenou vlastnost ve widgetu, který vám umožní " -"zúžit seznam produktů při prohlížení produktových kategorií." - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:33 -msgid "WooCommerce Layered Nav" -msgstr "E-shop - vrstvená navigace" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:355 -msgid "Attribute:" -msgstr "Vlastnost:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:372 -msgid "Query Type:" -msgstr "Typ požadavku:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:374 -msgid "AND" -msgstr "A" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:375 -msgid "OR" -msgstr "NEBO" - -# @ woocommerce -#: classes/widgets/class-wc-widget-onsale.php:31 -msgid "Display a list of your on-sale products on your site." -msgstr "Zobrazit seznam Vašich posledních produktů" - -# @ woocommerce -#: classes/widgets/class-wc-widget-onsale.php:33 -msgid "WooCommerce On-sale" -msgstr "E-shop - výprodej" - -# @ woocommerce -#: classes/widgets/class-wc-widget-onsale.php:70 -msgid "On Sale" -msgstr "Výprodej" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:33 -msgid "" -"Shows a price filter slider in a widget which lets you narrow down the list " -"of shown products when viewing product categories." -msgstr "" -"Zobrazit widget cenového filtru s posuvníkem, který Vám umožní specifikovat " -"cenové rozpětí vypsaných produktů dané kategorie." - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:35 -msgid "WooCommerce Price Filter" -msgstr "E-shop - cenový filtr" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:137 -msgid "Min price" -msgstr "Minimální cena" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:138 -msgid "Max price" -msgstr "Maximální cena" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:139 -msgid "Filter" -msgstr "Filtr" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:163 -msgid "Filter by price" -msgstr "Filtrovat podle ceny" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:33 -msgid "A list or dropdown of product categories." -msgstr "Seznam nebo rozbalovací nabídka kategorií produktů." - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:35 -msgid "WooCommerce Product Categories" -msgstr "E-shop - kategorie produktů" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:195 -msgid "Show as dropdown" -msgstr "Zobrazit jako rozbalovací nabídku" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:198 -msgid "Show post counts" -msgstr "Zobrazit počet příspěvků" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:201 -msgid "Show hierarchy" -msgstr "Zobrazit hierarchii" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-search.php:31 -msgid "A Search box for products only." -msgstr "Vyhledávací pole pouze pro produkty." - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-search.php:33 -msgid "WooCommerce Product Search" -msgstr "E-shop - vyhledávač produktů" - -# @ woocommerce -#: woocommerce-template.php:1496 -msgid "Search for:" -msgstr "Hledat:" - -# @ woocommerce -#: woocommerce-template.php:1497 -msgid "Search for products" -msgstr "Hledat produkty" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-tag-cloud.php:31 -msgid "Your most used product tags in cloud format." -msgstr "Vaše nejpoužívanější štítky produktů uspořádané do formátu oblaku." - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-tag-cloud.php:33 -msgid "WooCommerce Product Tags" -msgstr "E-shop - štítky produktu" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recently-viewed.php:31 -msgid "Display a list of recently viewed products." -msgstr "Zobrazit seznam naposledy prohlížených produktů." - -# @ woocommerce -#: classes/widgets/class-wc-widget-recently-viewed.php:33 -msgid "WooCommerce Recently Viewed Products" -msgstr "E-shop - naposledy prohlížené zboží" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recently-viewed.php:76 -msgid "Recently viewed" -msgstr "Nedávno zobrazené" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-products.php:31 -msgid "Display a list of your most recent products on your site." -msgstr "Zobrazit seznam Vašich nejnovějších produktů" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-products.php:33 -msgid "WooCommerce Recent Products" -msgstr "E-shop - nejnovější produkty" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-products.php:70 -msgid "New Products" -msgstr "Nové produkty" - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:147 -#: classes/widgets/class-wc-widget-recent-products.php:179 -msgid "Show hidden product variations" -msgstr "Zobrazit skryté varianty produktu" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:31 -msgid "Display a list of your most recent reviews on your site." -msgstr "Zobrazit seznam vašich nejnovějších recenzí na webu." - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:45 -#: classes/widgets/class-wc-widget-recent-reviews.php:33 -msgid "WooCommerce Recent Reviews" -msgstr "E-shop - nejnovější recenze" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:71 -msgid "Recent Reviews" -msgstr "Nedávné recenze" - -# @ woocommerce -#: classes/widgets/class-wc-widget-top-rated-products.php:33 -msgid "Display a list of top rated products on your site." -msgstr "Zobrazit seznam nejlépe hodnocených produktů na svých stránkách." - -# @ woocommerce -#: classes/widgets/class-wc-widget-top-rated-products.php:35 -msgid "WooCommerce Top Rated Products" -msgstr "E-shop - nejlépe hodnocené produkty" - -# @ woocommerce -#: classes/widgets/class-wc-widget-top-rated-products.php:72 -msgid "Top Rated Products" -msgstr "Nejlépe hodnocené produkty" - -# @ woocommerce -#: admin/post-types/shop_order.php:98 -msgid "made by" -msgstr "vytvořeno" - -# @ woocommerce -#: admin/post-types/shop_order.php:114 admin/post-types/shop_order.php:123 -msgid "Via" -msgstr "Přes" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:339 -msgid "Item" -msgstr "Položka" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:498 -msgid "Discounts" -msgstr "Slevy" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:20 -#: admin/post-types/writepanels/writepanel-order_data.php:638 -msgid "Shipping Tax:" -msgstr "DPH dopravy" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:597 -msgid "Tax Rows" -msgstr "Daňové řady" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:664 -msgid "Payment Method:" -msgstr "Platební metoda:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:76 -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Schedule" -msgstr "Plán" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:244 -#: admin/woocommerce-admin-attributes.php:383 -msgid "Name for the attribute (shown on the front-end)." -msgstr "Název pro vlastnost (viditelná na webu)." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:253 -#: admin/woocommerce-admin-attributes.php:389 -msgid "" -"Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "Unikátní zkratka/poznámka pro vlastnost; musí být kratší než 28 znaků." - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:228 -msgid "Tax Rates" -msgstr "Daňové sazby" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:50 -#: admin/settings/settings-tax-rates.php:217 -msgid "Compound" -msgstr "Složenina" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:50 -msgid "" -"Choose whether or not this is a compound rate. Compound tax rates are " -"applied on top of other tax rates." -msgstr "" -"Zvolte zda toto je či není složená sazba. Složené daňové sazby jsou " -"aplikovány nad jiné daňové sazby." - -# @ woocommerce -#: admin/settings/settings-init.php:874 -msgid "Ship to billing address by default" -msgstr "Zaslat na fakturační adresu ve výchozím nastavení" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:30 -msgid "" -"ShareThis offers a sharing widget which will allow customers to share links " -"to products with their friends." -msgstr "" -"ShareThis nabízí sdílecí widget, který umožní zákazníkům sdílet odkazy na " -"produkty se svými přáteli." - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:27 -msgid "" -"Google Analytics is a free service offered by Google that generates detailed " -"statistics about the visitors to a website." -msgstr "" -"Google Analytics je bezplatná služba nabízená společností Google, která " -"tvoří detailní statistiky o návštěvnících webových stránek." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:52 -#: admin/woocommerce-admin-settings.php:190 -msgid "Integration" -msgstr "Integrace" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:30 -msgid "Shipping Method" -msgstr "Doručovací metoda" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:46 -msgid "Method ID" -msgstr "Číslo metody" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:28 -msgid "Paying Customer?" -msgstr "Platící zákazník?" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:144 -msgid "Customer Billing Address" -msgstr "Fakturační adresa zákazníka" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:147 admin/woocommerce-admin-users.php:196 -msgid "First name" -msgstr "Křestní jméno" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:151 admin/woocommerce-admin-users.php:200 -msgid "Last name" -msgstr "Příjmení" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:183 -msgid "Telephone" -msgstr "Telefon" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:193 -msgid "Customer Shipping Address" -msgstr "Doručovací adresa zákazníka" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:225 -msgid "State/County or state code" -msgstr "Kód státu/země" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:180 admin/woocommerce-admin-users.php:229 -msgid "2 letter Country code" -msgstr "2 písmenný kód země" - -# @ woocommerce -#: classes/class-wc-checkout.php:445 woocommerce-functions.php:1698 -msgid "is a required field." -msgstr "je povinné pole" - -# @ woocommerce -#: classes/class-wc-checkout.php:487 -msgid "is not a valid number." -msgstr "není správné číslo." - -# @ woocommerce -#: classes/class-wc-checkout.php:494 -msgid "is not a valid email address." -msgstr "není správná e-mailová adresa." - -# @ woocommerce -#: classes/class-wc-countries.php:134 -msgid "Hong Kong" -msgstr "Hong Kong" - -# @ woocommerce -#: i18n/states/HK.php:13 -msgid "Hong Kong Island" -msgstr "Hong Kongské ostrovy" - -# @ woocommerce -#: i18n/states/HK.php:15 -msgid "New Territories" -msgstr "Nová území" - -# @ woocommerce -#: classes/class-wc-countries.php:774 classes/class-wc-countries.php:784 -#: classes/class-wc-countries.php:804 classes/class-wc-countries.php:859 -#: classes/class-wc-countries.php:883 classes/class-wc-countries.php:933 -#: classes/class-wc-countries.php:957 classes/class-wc-countries.php:998 -msgid "Province" -msgstr "Okres" - -# @ woocommerce -#: classes/class-wc-countries.php:799 classes/class-wc-countries.php:939 -msgid "Municipality" -msgstr "Obec" - -# @ woocommerce -#: classes/class-wc-countries.php:849 -msgid "Region" -msgstr "Kraj" - -# @ woocommerce -#: classes/class-wc-countries.php:962 -msgid "Zip" -msgstr "PSČ" - -# @ woocommerce -#: classes/class-wc-countries.php:973 -msgid "County" -msgstr "Kraj" - -# @ woocommerce -#: classes/class-wc-countries.php:694 -msgid "Company Name" -msgstr "Název firmy" - -# @ woocommerce -#: templates/emails/email-order-items.php:49 -msgid "Download:" -msgstr "Stáhnout:" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:875 -msgctxt "min_price" -msgid "From:" -msgstr "Od:" - -# @ woocommerce -#: templates/cart/totals.php:123 -#, php-format -msgid "" -"Note: Shipping and taxes are estimated%s and will be updated during checkout " -"based on your billing and shipping information." -msgstr "" -"Poznámka: Doprava a daně se dopočítávají%s a budou aktualizovány na základě " -"vašich fakturačních a doručovacích údajů v pokladně." - -# @ woocommerce -#: templates/checkout/form-coupon.php:17 -msgid "Have a coupon?" -msgstr "Máte kupón?" - -# @ woocommerce -#: templates/checkout/form-coupon.php:20 -msgid "Click here to enter your code" -msgstr "Klikněte zde a zadejte Váš kód" - -# @ woocommerce -#: classes/widgets/class-wc-widget-cart.php:113 -msgid "Hide if cart is empty" -msgstr "Schovat, pokud je košík prázdný" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:188 -msgid "Order by:" -msgstr "Seřadit podle:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:190 -msgid "Category Order" -msgstr "Kategorie objednávky" - -# @ woocommerce -#: woocommerce.php:1206 -msgid "Select an option…" -msgstr "Zvolte možnost…" - -# @ default -#: admin/post-types/product.php:152 -msgid "Edit this item inline" -msgstr "Upravit tuto položku" - -# @ default -#: admin/post-types/product.php:152 -msgid "Quick Edit" -msgstr "Rychlá úprava" - -# @ default -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore this item from the Trash" -msgstr "Obnovit tuto položku z koše" - -# @ default -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore" -msgstr "Obnovit" - -# @ default -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Move this item to the Trash" -msgstr "Přesunout tuto položku do koše" - -# @ default -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Trash" -msgstr "Koš" - -# @ default -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -msgid "Delete this item permanently" -msgstr "Smazat tuto položku trvale" - -# @ default -#: admin/post-types/product.php:165 -#, php-format -msgid "Preview “%s”" -msgstr "Náhled “%s”" - -# @ default -#: admin/post-types/product.php:165 -msgid "Preview" -msgstr "Náhled" - -# @ default -#: admin/post-types/product.php:167 -#, php-format -msgid "View “%s”" -msgstr "Zobrazit “%s”" - -# @ woocommerce -#: admin/post-types/product.php:214 -msgid "Grouped" -msgstr "Seskupeno" - -# @ woocommerce -#: admin/post-types/product.php:216 -msgid "External/Affiliate" -msgstr "Externí/Partnerský" - -# @ woocommerce -#: admin/post-types/product.php:224 -msgid "Simple" -msgstr "Jednoduchý" - -# @ woocommerce -#: admin/post-types/product.php:228 admin/post-types/product.php:387 -msgid "Variable" -msgstr "Proměnlivý" - -# @ woocommerce -#: admin/post-types/product.php:570 -msgid "Regular price" -msgstr "Běžná cena" - -# @ woocommerce -#: admin/post-types/product.php:575 admin/post-types/product.php:813 -msgid "Sale" -msgstr "Prodej" - -# @ woocommerce -#: admin/post-types/product.php:577 -msgid "Sale price" -msgstr "Prodejní cena" - -# @ woocommerce -#: admin/post-types/product.php:599 admin/post-types/product.php:863 -msgid "L/W/H" -msgstr "D/Š/V" - -# @ woocommerce -#: admin/post-types/product.php:613 admin/post-types/product.php:887 -msgid "Visibility" -msgstr "Viditelnost" - -# @ woocommerce -#: admin/post-types/product.php:618 admin/post-types/product.php:893 -msgid "Catalog & search" -msgstr "Katalog & hledání" - -# @ woocommerce -#: admin/post-types/product.php:636 admin/post-types/product.php:924 -msgid "In stock?" -msgstr "Skladem?" - -# @ woocommerce -#: admin/post-types/product.php:794 admin/post-types/product.php:818 -#: admin/post-types/product.php:844 admin/post-types/product.php:868 -#: admin/post-types/product.php:892 admin/post-types/product.php:911 -#: admin/post-types/product.php:929 admin/post-types/product.php:947 -#: admin/post-types/product.php:966 -msgid "— No Change —" -msgstr "— Beze změny —" - -# @ woocommerce -#: admin/post-types/product.php:795 admin/post-types/product.php:819 -#: admin/post-types/product.php:845 admin/post-types/product.php:869 -#: admin/post-types/product.php:967 -msgid "Change to:" -msgstr "Změnit na:" - -# @ woocommerce -#: admin/post-types/product.php:912 admin/post-types/product.php:948 -#: admin/post-types/shop_order.php:190 admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:286 -msgid "Yes" -msgstr "Ano" - -# @ woocommerce -#: admin/post-types/product.php:913 admin/post-types/product.php:949 -#: admin/post-types/shop_order.php:192 admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:286 -msgid "No" -msgstr "Ne" - -# @ woocommerce -#: admin/post-types/shop_order.php:49 -msgid "Customer Notes" -msgstr "Poznámky zákazníka" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:140 -msgid "Billing Details" -msgstr "Fakturační údaje" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:230 -msgid "Shipping Details" -msgstr "Doručovací údaje" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:344 -msgid "Tax class for the line item" -msgstr "Daňová třída pro položku v řádku" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:17 -#: admin/post-types/writepanels/order-item-html.php:89 -msgid "Tax class" -msgstr "Daňová třída" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:622 -msgid "" -"These rows contain taxes for this order. This allows you to display multiple " -"or compound taxes rather than a single total." -msgstr "" -"Tyto řádky obsahují daně pro tuto objednávku. To Vám umožní zobrazit " -"vícenásobné nebo složené daně spíše než jako jeden celek." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:622 -msgid "+ Add tax row" -msgstr "+ Přidat daň do řádku" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:626 -msgid "Tax Totals" -msgstr "Celkové daně" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:6 -msgid "Revoke Access" -msgstr "Zrušit přístup" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:7 -#: admin/post-types/writepanels/variation-admin-html.php:7 -#: admin/post-types/writepanels/writepanel-product_data.php:369 -#: admin/post-types/writepanels/writepanel-product_data.php:463 -#: admin/woocommerce-admin-init.php:439 -msgid "Click to toggle" -msgstr "Klikněte pro přepnutí" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:9 -#, php-format -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "Staženo %s krát" -msgstr[1] "Staženo %s krát" -msgstr[2] "Staženo %s krát" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:16 -msgid "Downloads Remaining" -msgstr "Zbývá ke stažení" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:22 -msgid "Access Expires" -msgstr "Přístup vyprší" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:23 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Never" -msgstr "Nikdy" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:57 -msgid "Choose a downloadable product…" -msgstr "Vyberte stažitelný produkt…" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:87 -msgid "Grant Access" -msgstr "Udělení přístupu" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:148 -msgid "Are you sure you want to revoke access to this download?" -msgstr "Jste si jistý(-á), že chcete zrušit přístup pro toto stažení?" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:73 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Close all" -msgstr "Zavřít vše" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:73 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Expand all" -msgstr "Rozbalit vše" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:115 -msgid "Shipping class:" -msgstr "Třída přepravy:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:119 -#: admin/post-types/writepanels/variation-admin-html.php:132 -#: woocommerce-ajax.php:550 -msgid "Same as parent" -msgstr "Stejně jako nadřazený" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:198 -msgid "Default selections:" -msgstr "Výchozí výběry:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:300 -msgid "" -"Are you sure you want to link all variations? This will create a new " -"variation for each and every possible combination of variation attributes " -"(max 50 per run)." -msgstr "" -"Jste si jisti, že chcete propojit všechny varianty? Tím se vytvoří nová " -"varianta pro každou možnou kombinaci variačních vlastností (max. 50 za běhu)." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:317 -msgid "variation added" -msgstr "varianta přidána" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:319 -msgid "variations added" -msgstr "varianty přidány" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:321 -msgid "No variations added" -msgstr "Varianty nepřidány" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:400 -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "" -"Jste si jisti, že chcete smazat všechny varianty? Toto nelze vrátit zpět." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:403 -msgid "Last warning, are you sure?" -msgstr "Poslední varování, jste si jisti?" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "Stock Keeping Unit" -msgstr "Reklamní vedení jednotky" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "Button text" -msgstr "Text tlačítka" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgctxt "placeholder" -msgid "Buy product" -msgstr "Koupit produkt" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "This text will be shown on the button linking to the external product." -msgstr "Tento text se zobrazí na tlačítku, které odkazuje na externí produkt." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:136 -msgctxt "placeholder" -msgid "From…" -msgstr "Od…" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:137 -msgctxt "placeholder" -msgid "To…" -msgstr "Pro…" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:611 -msgid "Purchase Note" -msgstr "Poznámka k nákupu" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:611 -msgid "Enter an optional note to send the customer after purchase." -msgstr "Zadejte libovolnou poznámku pro zaslání zákazníkovi po zakoupení." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:89 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Download Expiry" -msgstr "Vypršení možnosti stažení" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:158 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "" -"Enter the number of days before a download link expires, or leave blank." -msgstr "" -"Zadejte počet dní pro zobrazení aktivního odkazu pro stažení nebo ponechte " -"prázdné." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:398 -msgid "Select all" -msgstr "Vybrat vše" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:398 -msgid "Select none" -msgstr "Odznačit vše" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:427 -#: admin/post-types/writepanels/writepanel-product_data.php:482 -#: admin/woocommerce-admin-init.php:442 -msgid "Visible on the product page" -msgstr "Viditelné na stránce produktu" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:440 -#: admin/post-types/writepanels/writepanel-product_data.php:488 -#: admin/woocommerce-admin-init.php:443 -msgid "Used for variations" -msgstr "Použité pro variace" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:477 -#: admin/woocommerce-admin-init.php:441 -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "" -"Zadejte nějaký text, nebo některé vlastnosti za svislou čáru (|) oddělující " -"hodnoty." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:249 -#: admin/woocommerce-admin-attributes.php:315 -#: admin/woocommerce-admin-attributes.php:387 -msgid "Slug" -msgstr "Zkratka" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:44 -msgid "" -"General settings such as your shop base, currency, and script/styling " -"options which affect features used in your store." -msgstr "" -"Základní nastavení, jako je vaše provozovna obchodu, měna a skriptovací /" -"stylovací možnosti, které ovlivňují funkce používané ve vašem obchodě." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:45 -msgid "" -"This is where important store page are defined. You can also set up other " -"pages (such as a Terms page) here." -msgstr "" -"Toto je místo, kde jsou definovány důležité stránky obchodu. Můžete zde také " -"nastavit jiné stránky (například stránku s obchodními podmínkami)." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:46 -msgid "" -"Options for how things like price, images and weights appear in your product " -"catalog." -msgstr "" -"Možnosti, jak se objeví ve Vašem katalogu věci jako cena, obrázky a " -"hmotnosti." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:47 -msgid "Options concerning stock and stock notices." -msgstr "Volby týkající se skladu a skladových upozornění." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:48 -msgid "Options concerning tax, including international and local tax rates." -msgstr "" -"Volby týkající se daní, včetně mezinárodních a místních daňových sazeb." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:49 -msgid "" -"This is where shipping options are defined, and shipping methods are set up." -msgstr "" -"Toto je místo, kde jsou definovány volby pro přepravu a nastavení možností " -"přepravy." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:50 -msgid "Payment Methods" -msgstr "Platební metody" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:50 -msgid "" -"This is where payment gateway options are defined, and individual payment " -"gateways are set up." -msgstr "" -"Zde se nastavují možnosti pro platební brány a nastavení vlastních " -"platebních bran." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:51 -msgid "Here you can customise the way WooCommerce emails appear." -msgstr "Zde si můžete upravit způsob zobrazení WooCommerce e-mailů." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:52 -msgid "" -"The integration section contains options for third party services which " -"integrate with WooCommerce." -msgstr "" -"Integrační část obsahuje možnosti pro služby třetích stran, které se " -"integrují s WooCommerce." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:59 -msgid "" -"The reports section can be accessed from the left-hand navigation menu. Here " -"you can generate reports for sales and customers." -msgstr "" -"Sekce Zprávy může být přístupná v levém navigačním menu. Zde si můžete " -"vytvářet sestavy pro prodej a zákazníky." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:60 -msgid "Reports for sales based on date, top sellers and top earners." -msgstr "Zprávy pro prodej na základě data, nejprodávanější a nejvyšší příjmy." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:62 -#: admin/woocommerce-admin-reports.php:79 -msgid "Customers" -msgstr "Zákazníci" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:62 -msgid "Customer reports, such as signups per day." -msgstr "Zákaznické zprávy, jako jsou například registrace za den." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:70 -msgid "" -"The orders section can be accessed from the left-hand navigation menu. Here " -"you can view and manage customer orders." -msgstr "" -"Sekce Objednávky může být přístupná z levého navigačního menu. Zde si můžete " -"zobrazit a spravovat objednávky zákazníků." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:71 -msgid "" -"Orders can also be added from this section if you want to set them up for a " -"customer manually." -msgstr "" -"Objednávky mohou být také přidány v této sekci, pokud je chcete ručně " -"nastavit pro zákazníka." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:78 -msgid "" -"Coupons can be managed from this section. Once added, customers will be able " -"to enter coupon codes on the cart/checkout page. If a customer uses a coupon " -"code they will be viewable when viewing orders." -msgstr "" -"Kupony lze spravovat z této sekce. Po přidání budou mít zákazníci možnost " -"zadat kódy kuponů na stránce košíku. Pokud zákazník použije kupón bude možné " -"jej zobrazovat při prohlížení objednávek." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:82 -msgid "For more information:" -msgstr "Pro více informací:" - -# @ woocommerce -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:84 -#: admin/woocommerce-admin-functions.php:200 -#: admin/woocommerce-admin-init.php:761 -#: admin/woocommerce-admin-reports.php:996 -#: admin/woocommerce-admin-reports.php:1094 templates/cart/cart.php:28 -#: templates/checkout/form-pay.php:19 templates/checkout/review-order.php:21 -#: templates/emails/admin-new-order.php:22 -#: templates/emails/customer-completed-order.php:23 -#: templates/emails/customer-invoice.php:27 -#: templates/emails/customer-note.php:27 -#: templates/emails/customer-processing-order.php:23 -#: templates/order/order-details.php:20 woocommerce.php:983 -msgid "Product" -msgid_plural "Products" -msgstr[0] "Produkt" -msgstr[1] "Produkty" -msgstr[2] "Produktů" - -# @ woocommerce -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:98 woocommerce.php:824 -msgid "Product Category" -msgid_plural "Product Categories" -msgstr[0] "Kategorie produktů" -msgstr[1] "Kategorie produktů" -msgstr[2] "Kategorií produktů" - -# @ woocommerce -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:112 woocommerce.php:860 -msgid "Product Tag" -msgid_plural "Product Tags" -msgstr[0] "Štítek produktu" -msgstr[1] "Štítky produktu" -msgstr[2] "Štítků produktu" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:126 -msgid "Attribute" -msgid_plural "Attributes" -msgstr[0] "Vlastnost" -msgstr[1] "Vlastnosti" -msgstr[2] "Vlastností" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:207 -#, php-format -msgid "You are using WooCommerce %s." -msgstr "Používáte WooCommerce %s." - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:43 -msgid "WooCommerce Right Now" -msgstr "WooCommerce Aktuální přehled" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:44 -msgid "WooCommerce Recent Orders" -msgstr "WooCommerce Poslední objednávky" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:238 -msgid "l jS \\of F Y h:i:s A" -msgstr "l jS \\of F Y h:i:s A" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:245 -msgid "There are no product orders yet." -msgstr "Zatím zde nejsou žádné objednávky produktů." - -# @ woocommerce -#: admin/includes/notice-install.php:6 -msgid "" -"Welcome to WooCommerce – You're almost ready to start " -"selling :)" -msgstr "" -"Vítejte ve WooCommerce – Jste skoro připraveni začít " -"obchodovat :)" - -# @ woocommerce -#: admin/includes/notice-install.php:7 -msgid "Install WooCommerce Pages" -msgstr "Instalovat Woocommerce stránky" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:351 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:352 -msgid "Documentation" -msgstr "Dokumentace" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:436 -msgid "Remove this attribute?" -msgstr "Smazat tuto vlastnost?" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:446 -msgid "" -"Calculate line taxes? This will calculate taxes based on the customers " -"country. If no billing/shipping is set it will use the store base country." -msgstr "" -"Spočítat daňové řady? Toto spočítá daně na základě země zákazníka. Pokud " -"není nastavena fakturace/doprava bude použita výchozí země obchodu." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:665 -#, php-format -msgid "Product updated. View Product" -msgstr "Produkt aktualizován. Zobrazit produkt" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:666 admin/woocommerce-admin-init.php:681 -#: admin/woocommerce-admin-init.php:696 -msgid "Custom field updated." -msgstr "Uživatelské pole aktualizováno." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:667 admin/woocommerce-admin-init.php:682 -#: admin/woocommerce-admin-init.php:697 -msgid "Custom field deleted." -msgstr "Uživatelské pole smazáno." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:668 -msgid "Product updated." -msgstr "Produkt aktualizován." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:669 -#, php-format -msgid "Product restored to revision from %s" -msgstr "Produkt obnoven k revizi od %s" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:671 -msgid "Product saved." -msgstr "Produkt uložen." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:672 -#, php-format -msgid "Product submitted. Preview Product" -msgstr "Produkt potvrzen. Náhled produktu" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:673 -#, php-format -msgid "" -"Product scheduled for: %1$s. Preview Product" -msgstr "" -"Produkt naplánován na: %1$s. Náhled produktu" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:674 admin/woocommerce-admin-init.php:689 -#: admin/woocommerce-admin-init.php:704 -msgid "M j, Y @ G:i" -msgstr "M j, Y @ G:i" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:675 -#, php-format -msgid "" -"Product draft updated. Preview Product" -msgstr "" -"Koncept produktu aktualizován. Náhled " -"produktu" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:680 admin/woocommerce-admin-init.php:683 -#: admin/woocommerce-admin-init.php:685 -msgid "Order updated." -msgstr "Objednávka aktualizována." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:684 -#, php-format -msgid "Order restored to revision from %s" -msgstr "Objednávka obnovena k revizi od %s" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:686 -msgid "Order saved." -msgstr "Objednávka uložena." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:687 -msgid "Order submitted." -msgstr "Objednávka potvrzena." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:688 -#, php-format -msgid "Order scheduled for: %1$s." -msgstr "Objednávka naplánována na: %1$s." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:690 -msgid "Order draft updated." -msgstr "Koncept objednávky aktualizován." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:695 admin/woocommerce-admin-init.php:698 -#: admin/woocommerce-admin-init.php:700 -msgid "Coupon updated." -msgstr "Kupón aktualizován." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:699 -#, php-format -msgid "Coupon restored to revision from %s" -msgstr "Kupón obnoven k revizi od %s" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:701 -msgid "Coupon saved." -msgstr "Kupón uložen." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:702 -msgid "Coupon submitted." -msgstr "Kupón potvrzen." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:703 -#, php-format -msgid "Coupon scheduled for: %1$s." -msgstr "Kupón naplánován na: %1$s." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:705 -msgid "Coupon draft updated." -msgstr "Koncept kupónu aktualizován." - -# @ woocommerce -#: admin/settings/settings-init.php:201 -msgid "Styles and Scripts" -msgstr "Styly a skripty" - -# @ woocommerce -#: admin/settings/settings-init.php:285 -msgid "" -"Note: The shop page has children - child pages will not work if you enable " -"this option." -msgstr "" -"Poznámka: Stránky obchodu mají dětskou ochranu - vhodné stránky nebudou " -"fungovat, pokud povolíte tuto možnost." - -# @ woocommerce -#: admin/settings/settings-init.php:298 -msgid "" -"This sets the base page of your shop - this is where your product archive " -"will be." -msgstr "" -"Tímto se nastaví základní stránka Vašeho obchodu - to je místo, kde bude Váš " -"archiv produktů." - -# @ woocommerce -#: admin/settings/settings-init.php:320 -msgid "" -"The following pages need selecting so that WooCommerce knows where they are. " -"These pages should have been created upon installation of the plugin, if not " -"you will need to create them." -msgstr "" -"Následující stránky je potřeba vybrat tak, aby WooCommerce věděl, kde se " -"nacházejí. Tyto stránky by měly být vytvořeny po instalaci pluginu, pokud " -"ne, budete je muset vytvořit." - -# @ woocommerce -#: admin/settings/settings-init.php:552 -msgid "g" -msgstr "g" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#: admin/settings/settings-init.php:567 -msgid "m" -msgstr "m" - -# @ woocommerce -#: admin/settings/settings-init.php:569 -msgid "mm" -msgstr "mm" - -# @ woocommerce -#: admin/settings/settings-init.php:990 -#, php-format -msgid "Reduced Rate%sZero Rate" -msgstr "Snížená sazba%sNulová sazba" - -# @ woocommerce -#: admin/settings/settings-init.php:1012 -msgid "" -"The following options affect the sender (email address and name) used in " -"WooCommerce emails." -msgstr "" -"Následující volby ovlivňují odesílatele (e-mailovou adresu a jméno) " -"použitého ve WooCommerce e-mailech." - -# @ woocommerce -#: admin/settings/settings-init.php:1037 -#, php-format -msgid "" -"This section lets you customise the WooCommerce emails. Click here to preview your email template. For more " -"advanced control copy woocommerce/templates/emails/ to " -"yourtheme/woocommerce/emails/." -msgstr "" -"Tato část Vám umožňuje přizpůsobit Woocommerce e-maily. Zde klikněte pro náhled Vaší e-mailové šablony. Pro " -"pokročilejší nastavení zkopírujte woocommerce/templates/emails/ " -"do yourtheme/woocommerce/emails/." - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:26 -msgid "ShareDaddy" -msgstr "ShareDaddy" - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:27 -msgid "ShareDaddy is a sharing plugin bundled with JetPack." -msgstr "ShareDaddy je sdílecí plugin propojený s JetPackem." - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:51 -msgid "Output ShareDaddy button?" -msgstr "Výstup na tlačítko ShareDaddy?" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:210 -#, php-format -msgid "" -"More functionality and gateway options available via WC official extensions." -msgstr "" -"Další funkce a možnosti jsou dostupné přesWC oficiální rozšíření." - -# @ woocommerce -#: classes/class-wc-cart.php:869 -msgid "You already have this item in your cart." -msgstr "Tuto položku již máte ve Vašem košíku." - -# @ woocommerce -#: classes/class-wc-checkout.php:642 woocommerce-functions.php:732 -#: woocommerce-functions.php:734 woocommerce-functions.php:737 -#: woocommerce-functions.php:749 woocommerce-functions.php:751 -#: woocommerce-functions.php:754 woocommerce-functions.php:788 -msgid "ERROR" -msgstr "CHYBA" - -# @ woocommerce -#: classes/class-wc-countries.php:457 -msgid "(incl. VAT)" -msgstr "(včetně DPH)" - -# @ woocommerce -#: classes/class-wc-countries.php:457 -msgid "(incl. tax)" -msgstr "(včetně daně)" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:554 -#, php-format -msgid "%s in stock" -msgstr "%s skladem" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:561 -msgid "(backorders allowed)" -msgstr "(povoleno Na objednávku)" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:28 -msgid "Bacs" -msgstr "Převodem" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:28 -msgid "Cheque" -msgstr "Šek" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:73 -msgid "" -"Please send your cheque to Store Name, Store Street, Store Town, Store " -"State / County, Store Postcode." -msgstr "" -"Pošlete prosím Váš šek na adresu obchodu (Název obchodu, Ulice, Obec, PSČ, " -"Stát)." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:27 -#: classes/gateways/cod/class-wc-gateway-cod.php:54 -#: classes/gateways/cod/class-wc-gateway-cod.php:90 -msgid "Cash on Delivery" -msgstr "Hotově při doručení" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:55 -msgid "Have your customers pay with cash (or by other means) upon delivery." -msgstr "" -"Vaši zákazníci musí zaplatit v hotovosti (nebo jinými prostředky) při " -"doručení." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:80 -msgid "Enable COD" -msgstr "Povolení Hotově při doručení" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:89 -msgid "Payment method title that the customer will see on your website." -msgstr "Titulek platební metody, který zákazník uvidí na Vašich stránkách." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:96 -msgid "Payment method description that the customer will see on your website." -msgstr "Popis platební metody, který zákazník uvidí na Vašich stránkách." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:100 -msgid "Instructions" -msgstr "Instrukce" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:102 -msgid "Instructions that will be added to the thank you page." -msgstr "Instrukce, které budou přidány na děkovací stránku." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:176 -msgid "Payment to be made upon delivery." -msgstr "Platba k provedení při doručení." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:78 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:52 -msgid "Enable this shipping method" -msgstr "Povolit tento způsob dopravy" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:29 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:59 -msgid "International Delivery" -msgstr "Mezinárodní dodávka" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:30 -msgid "International delivery based on flat rate shipping." -msgstr "Mezinárodní dodávka založená na paušální dopravě." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:89 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:63 -msgid "Availability" -msgstr "Dostupnost" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:68 -msgid "Selected countries" -msgstr "Zvolené země" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:69 -msgid "Excluding selected countries" -msgstr "Bez vybraných zemí" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:73 -msgid "Countries" -msgstr "Země" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:25 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:107 -msgid "Local Delivery" -msgstr "Místní doručení" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:98 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:78 -msgid "Enable" -msgstr "Povolit" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:100 -msgid "Enable local delivery" -msgstr "Povolit místní doručení" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:111 -msgid "Fee Type" -msgstr "Typ poplatku" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:113 -msgid "How to calculate delivery charges" -msgstr "Jak vypočítat poplatky za doručení" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:172 -msgid "" -"Local delivery is a simple shipping method for delivering orders locally." -msgstr "" -"Místní doručení je jednoduchý způsob dopravy pro doručování objednávek v " -"místě." - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:25 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:87 -msgid "Local Pickup" -msgstr "Místní vyzvednutí" - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:80 -msgid "Enable local pickup" -msgstr "Povolit místní vyzvednutí" - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:134 -msgid "" -"Local pickup is a simple method which allows the customer to pick up their " -"order themselves." -msgstr "" -"Místní vyzvednutí je jednoduchý způsob, který umožňuje zákazníkům vyzvednout " -"si svou objednávku v obchodě." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:51 -msgid "My Account →" -msgstr "Můj účet →" - -# @ woocommerce -#: templates/cart/shipping-methods.php:68 -msgid "Please fill in your details to see available shipping methods." -msgstr "" -"Vyplňte prosím své kontaktní údaje pro zobrazení dosupných způsobů dopravy." - -# @ woocommerce -#: templates/checkout/cart-errors.php:16 -msgid "" -"There are some issues with the items in your cart (shown above). Please go " -"back to the cart page and resolve these issues before checking out." -msgstr "" -"Vyskytují se nějaké problémy s položkami ve Vašem košíku (viz výše). Vraťte " -"se prosím do košíku a odstraňte tyto problémy před odhlášením." - -# @ woocommerce -#: templates/checkout/cart-errors.php:20 -msgid "← Return To Cart" -msgstr "← Návrat do košíku" - -# @ woocommerce -#: templates/myaccount/my-address.php:23 -msgid "My Address" -msgstr "Moje adresa" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:100 -#, php-format -msgid "Any %s" -msgstr "Jakýkoliv %s" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:366 -msgid "Display Type:" -msgstr "Typ zobrazení:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:368 -msgid "List" -msgstr "Seznam" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:369 -msgid "Dropdown" -msgstr "Vyskakovací" - -# @ woocommerce -#: woocommerce-functions.php:732 -msgid "Please enter a username." -msgstr "Vložte prosím uživatelské jméno." - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:24 -msgid "WooCommerce Random Products" -msgstr "WooCommerce náhodné produkty" - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:27 -msgid "Display a list of random products on your site." -msgstr "Zobrazit na webu seznam náhodných produktů." - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:46 -msgid "Random Products" -msgstr "Náhodné produkty" - -# @ woocommerce -#: woocommerce-core-functions.php:1219 woocommerce-core-functions.php:1245 -msgid "Download Permissions Granted" -msgstr "Stáhnout udělené oprávnění" - -# @ woocommerce -#: woocommerce-core-functions.php:1562 -msgid "Select a category" -msgstr "Zvolte kategorii" - -# @ woocommerce -#: woocommerce-functions.php:257 -#, php-format -msgid "You can only have 1 %s in your cart." -msgstr "Můžete mít jen 1 %s v košíku." - -# @ woocommerce -#: woocommerce-functions.php:493 -msgid "Continue Shopping →" -msgstr "Pokračovat v nákupu →" - -# @ woocommerce -#: woocommerce-functions.php:734 -msgid "" -"This username is invalid because it uses illegal characters. Please enter a " -"valid username." -msgstr "" -"Toto uživatelské jméno není správné, protože byly použity nepovolené znaky. " -"Zvolte prosím správné uživatelské jméno." - -# @ woocommerce -#: woocommerce-functions.php:737 -msgid "This username is already registered, please choose another one." -msgstr "Toto uživatelské jméno je již zaregistrováno. Zvolte prosím jiné." - -# @ woocommerce -#: woocommerce-functions.php:749 -msgid "Please type your e-mail address." -msgstr "Napište prosím svou e-mailovou adresu." - -# @ woocommerce -#: woocommerce-functions.php:751 -msgid "The email address isn’t correct." -msgstr "E-mailová adresa není správná." - -# @ woocommerce -#: woocommerce-functions.php:754 -msgid "This email is already registered, please choose another one." -msgstr "Tato e-mailová adresa je již registrovaná. Zvolte prosím jinou." - -# @ woocommerce -#: woocommerce-functions.php:942 -msgid "Invalid email address." -msgstr "Špatná e-mailová adresa" - -# @ woocommerce -#: woocommerce-functions.php:942 woocommerce-functions.php:965 -#: woocommerce-functions.php:985 woocommerce-functions.php:991 -#: woocommerce-functions.php:995 woocommerce-functions.php:998 -#: woocommerce-functions.php:1028 woocommerce-functions.php:1160 -msgid "Go to homepage →" -msgstr "Vraťte se na hlavní stránku →" - -# @ woocommerce -#: woocommerce-functions.php:965 -msgid "Invalid download." -msgstr "Neplatné stažení." - -# @ woocommerce -#: woocommerce-functions.php:977 -msgid "You must be logged in to download files." -msgstr "Musíte být přihlášení pro stažení souborů." - -# @ woocommerce -#: woocommerce-functions.php:977 -msgid "Login →" -msgstr "Přihlásit se →" - -# @ woocommerce -#: woocommerce-functions.php:980 -msgid "This is not your download link." -msgstr "Toto není Váš odkaz pro stažení." - -# @ woocommerce -#: woocommerce-functions.php:995 -msgid "Sorry, you have reached your download limit for this file" -msgstr "Je nám líto, dosáhli jste limitu pro stažení tohoto souboru" - -# @ woocommerce -#: woocommerce-functions.php:998 -msgid "Sorry, this download has expired" -msgstr "Je nám líto, platnost pro stažení vypršela" - -# @ woocommerce -#: woocommerce-functions.php:1160 -msgid "File not found" -msgstr "Soubor nebyl nalezen" - -# @ woocommerce -#: woocommerce-template.php:1292 woocommerce.php:1209 -msgid "required" -msgstr "vyžadováno" - -# @ woocommerce -#. translators: plugin header field 'PluginURI' -#: woocommerce.php:0 -msgid "http://www.woothemes.com/woocommerce/" -msgstr "http://www.woothemes.com/woocommerce/" - -# @ woocommerce -#. translators: plugin header field 'Description' -#: woocommerce.php:0 -msgid "An e-commerce toolkit that helps you sell anything. Beautifully." -msgstr "E-commerce nástroj, který Vám pomůže prodat cokoliv. Nádherně." - -# @ woocommerce -#. translators: plugin header field 'Author' -#: woocommerce.php:0 -msgid "WooThemes" -msgstr "WooThemes" - -# @ woocommerce -#. translators: plugin header field 'AuthorURI' -#: woocommerce.php:0 -msgid "http://woothemes.com" -msgstr "http://woothemes.com" - -# @ woocommerce -#: admin/includes/duplicate_product.php:90 -msgid "(Copy)" -msgstr "(Kopírovat)" - -# @ woocommerce -#: admin/post-types/product.php:1183 -msgid "Sort Products" -msgstr "Seřadit produkty" - -# @ woocommerce -#: admin/post-types/shop_order.php:98 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:321 -#, php-format -msgid "Order %s" -msgstr "Objednávka %s" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "Minimum amount" -msgstr "Minimální částka" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "No minimum" -msgstr "Žádné minimum" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "" -"This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "" -"Toto pole Vám umožňuje nastavit minimální součet potřebný k použití kupónu." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:75 -#: admin/post-types/writepanels/writepanel-order_data.php:400 -#: admin/post-types/writepanels/writepanel-product_data.php:523 -#: admin/post-types/writepanels/writepanel-product_data.php:540 -#: admin/woocommerce-admin-reports.php:1245 -msgid "Search for a product…" -msgstr "Hledat produkt…" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:89 -msgid "" -"Products which need to be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are discounted." -msgstr "" -"Produkty, které musí být v košíku k použití tohoto kupónu, nebo pro " -"\"Produktové slevy\", které produkty jsou zlevněny." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:95 -msgid "Search for a product…" -msgstr "Hledat produkt..." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:109 -msgid "" -"Products which must not be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are not discounted." -msgstr "" -"Produkty, které nesmí být v košíku k použití tohoto kupónu nebo pro " -"\"Produktové slevy\", které produkty nejsou zlevněny." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:117 -msgid "Any category" -msgstr "Jakákoliv kategorie" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:125 -msgid "" -"A product must be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will be discounted." -msgstr "" -"Produkt musí být v této kategorii, aby kupón zůstal platný, nebo pro " -"\"Prouktové slevy\", produkty v těchto kategoriích budou zlevněny." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:131 -msgid "No categories" -msgstr "Žádné kategorie" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:139 -msgid "" -"Product must not be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will not be discounted." -msgstr "" -"Produkt nesmí být v této kategorii, aby kupón zůstal platný, nebo pro " -"\"Produktové slevy\", produkty v těchto kategoriích nebudou zlevněny." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "Neomezené použití" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgctxt "placeholder" -msgid "Never expire" -msgstr "Nikdy nevyprší" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:86 -msgid "Order Date:" -msgstr "Datum objednávky:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:87 -msgid "h" -msgstr "h" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:402 -msgid "Add item(s)" -msgstr "Přidat položku" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:64 -msgid "" -"Before adding variations, add and save some attributes on the " -"Attributes tab." -msgstr "" -"Před přidáním varianty přidejte a uložte nějaké vlastnosti v položce " -"Vlastnosti." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:66 -msgid "Learn more" -msgstr "Dozvědět se více" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:87 -msgid "File Path" -msgstr "Cesta k souboru" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:88 -msgid "Download limit" -msgstr "Limit stahování" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:130 -msgid "Tax class:" -msgstr "Daňová třída:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:440 -msgid "Enter a value" -msgstr "Vložte hodnotu" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:630 -#: classes/class-wc-emails.php:286 classes/class-wc-emails.php:318 -#: classes/class-wc-emails.php:362 -#, php-format -msgid "Variation #%s of %s" -msgstr "Varianta #%s z %s" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:53 -msgid "Virtual products are intangible and aren't shipped." -msgstr "Virtuální produkty jsou nehmotné a nejsou doručitelné." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:59 -msgid "Downloadable products give access to a file upon purchase." -msgstr "Produkty ke stažení poskytují přístup k souboru po nákupu." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:87 -msgid "Advanced" -msgstr "Pokročilý" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "" -"SKU refers to a Stock-keeping unit, a unique identifier for each distinct " -"product and service that can be purchased." -msgstr "" -"Katalogové číslo odkazuje na skladové jednotky, jedinečný identifikátor pro " -"každý jednotlivý produkt a službu, které lze zakoupit." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:273 -msgid "Weight in decimal form" -msgstr "Váha v desetinném tvaru" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:290 -msgid "LxWxH in decimal form" -msgstr "DxŠxV v desetinném tvaru" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "" -"Stock quantity. If this is a variable product this value will be used to " -"control stock for all variations, unless you define stock at variation level." -msgstr "" -"Skladové množství. Pokud jde o variantní produkt, tato hodnota bude použita " -"ke kontrole zásob pro všechny varianty, pokud nedefinujete sklad ve " -"variantní úrovni." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:233 -msgid "" -"Controls whether or not the product is listed as \"in stock\" or \"out of " -"stock\" on the frontend." -msgstr "" -"Určuje, zda je či není výrobek uvedený na webu jako \"skladem\" nebo \"není " -"skladem\"." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:244 -msgid "" -"If managing stock, this controls whether or not backorders are allowed for " -"this product and variations. If enabled, stock quantity can go below 0." -msgstr "" -"Toto ovládá zda povolit tento produkt a varianty na objednávku, pokud řídíte " -"skladové zásoby. Pokud je povoleno, může množství skladových zásob klesnout " -"pod 0." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:311 -msgid "No shipping class" -msgstr "Žádná doručovací třída" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "Shipping class" -msgstr "Doručovací třída" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "" -"Shipping classes are used by certain shipping methods to group similar " -"products." -msgstr "" -"Doručovací třídy jsou používány některými způsoby přepravy k seskupení " -"podobných produktů." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:400 -msgid "Add new" -msgstr "Přidat nový" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:618 -msgid "Menu order" -msgstr "Menu objednávek" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:618 -msgid "Custom ordering position." -msgstr "Umístění vlastního objednání." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:626 -msgid "Enable reviews" -msgstr "Povolit recenze" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1047 -msgid "Catalog/search" -msgstr "Katalog/Hledání" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1054 -msgid "Catalog visibility:" -msgstr "Viditelnost v katalogu:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1070 -msgid "" -"Define the loops this product should be visible in. The product will still " -"be accessible directly." -msgstr "" -"Definujte kde by tento produkt měl být vidět. Produkt bude i nadále " -"přístupný přímo." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1076 -msgid "Enable this option to feature this product." -msgstr "Povolte tuto možnost pro charakterizování tohoto produktu." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1078 -msgid "Featured Product" -msgstr "Nejlepší produkt" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1082 -msgid "OK" -msgstr "OK" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:55 -msgid "Product Short Description" -msgstr "Krátký popis produktu" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:185 -msgid "Allow reviews." -msgstr "Povolit recenze." - -# @ default -#: admin/post-types/writepanels/writepanels-init.php:186 -#, php-format -msgid "" -"Allow trackbacks and pingbacks on this " -"page." -msgstr "" -"Povolit zpětné odezvy a pingbacky na " -"této stránce." - -# @ default -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" -msgstr "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:23 -msgid "Styles" -msgstr "Styly" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:43 -msgid "Primary" -msgstr "Základní" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:43 -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "Akční tlačítka/cenový posuvník/rozhraní vrstvené navigace" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:44 -msgid "Secondary" -msgstr "Vedlejší" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:44 -msgid "Buttons and tabs" -msgstr "Tlačítka a karty" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:45 -msgid "Highlight" -msgstr "Zvýraznění" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:45 -msgid "Price labels and Sale Flashes" -msgstr "Cenovky a prodejní nápady" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:46 -msgid "Content" -msgstr "Obsah" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:46 -msgid "Your themes page background - used for tab active states" -msgstr "Pozadí stránky Vašeho témata - použité pro karty aktivních stavů" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:47 -msgid "Subtext" -msgstr "Podtext" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:47 -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "" -"Používá se pro některé texty a postranní panely - navigační cesty, malý text " -"atd." - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:51 -msgid "" -"To edit colours woocommerce/assets/css/woocommerce-base.less " -"and woocommerce.css need to be writable. See the Codex for more " -"information." -msgstr "" -"Chcete-li upravovat barvy, woocommerce/assets/css/woocommerce-base." -"less a woocommerce.css musí být zapisovatelné. Pro více " -"informací viz Codex." - -# @ woocommerce -#: admin/settings/settings-init.php:115 -msgid "Enable guest checkout (no account required)" -msgstr "Povolit pokladnu pro hosty (není vyžadován účet)" - -# @ woocommerce -#: admin/settings/settings-init.php:131 -msgid "Force secure checkout" -msgstr "Zapnout zabezpečení pokladny" - -# @ woocommerce -#: admin/settings/settings-init.php:141 -msgid "Un-force HTTPS when leaving the checkout" -msgstr "Vypnout HTTPS při odchodu z pokladny" - -# @ woocommerce -#: admin/settings/settings-init.php:150 -msgid "Registration" -msgstr "Registrace" - -# @ woocommerce -#: admin/settings/settings-init.php:226 -msgid "Enable enhanced country select boxes" -msgstr "Povolit výběrová pole rozšířených zemí" - -# @ woocommerce -#: admin/settings/settings-init.php:265 -msgid "Grant access to downloadable products after payment" -msgstr "Udělení přístupu ke stahovatelným výrobkům po zaplacení" - -# @ woocommerce -#: admin/settings/settings-init.php:443 -msgid "This controls the default sort order of the catalog." -msgstr "Toto ovládá výchozí třídění objednávky z katalogu." - -# @ woocommerce -#: templates/loop/orderby.php:21 -msgid "Default sorting" -msgstr "Výchozí třídění" - -# @ woocommerce -#: admin/settings/settings-init.php:452 -msgid "Sort by most recent" -msgstr "Třídit od nejaktuálnějších" - -# @ woocommerce -#: admin/settings/settings-init.php:468 admin/settings/settings-init.php:483 -msgid "Show subcategories" -msgstr "Zobrazit podkategorie" - -# @ woocommerce -#: admin/settings/settings-init.php:508 -msgid "" -"The following options affect the fields available on the edit product page." -msgstr "" -"Následující možnosti ovlivní pole, které jsou dostupné na editační stránce " -"produktu." - -# @ woocommerce -#: admin/settings/settings-init.php:554 -msgid "oz" -msgstr "unce" - -# @ woocommerce -#: admin/settings/settings-init.php:571 -msgid "yd" -msgstr "yard" - -# @ woocommerce -#: admin/settings/settings-init.php:577 -msgid "Product Ratings" -msgstr "Hodnocení produktu" - -# @ woocommerce -#: admin/settings/settings-init.php:587 -msgid "Ratings are required to leave a review" -msgstr "Hodnocení je vyžadováno pro zapsání recenze" - -# @ woocommerce -#: admin/settings/settings-init.php:596 -msgid "Show \"verified owner\" label for customer reviews" -msgstr "Zobrazit štítek \"ověřený zákazník\" u recenzí zákazníků" - -# @ woocommerce -#: admin/settings/settings-init.php:606 -msgid "The following options affect how prices are displayed on the frontend." -msgstr "Následující možnosti ovlivní jak budou na webu zobrazeny ceny." - -# @ woocommerce -#: admin/settings/settings-init.php:660 -msgid "" -"Remove zeros after the decimal point. e.g. $10.00 becomes " -"$10" -msgstr "" -"Odstranit nuly za desetinnou tečkou. např. místo $10.00 se " -"zobrazí $10" - -# @ woocommerce -#: admin/settings/settings-init.php:803 -msgid "This controls how stock is displayed on the frontend." -msgstr "Toto ovládá jak se stav skladu u produktu zobrazuje na webu." - -# @ woocommerce -#: admin/settings/settings-init.php:809 -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "Vždy zobrazit sklad např. \"12 skladem\"" - -# @ woocommerce -#: admin/settings/settings-init.php:810 -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "" -"Sklad zobrazit pouze při malém množství např. \"Pouze 2 skladem\" vs. " -"\"Skladem\"" - -# @ woocommerce -#: admin/settings/settings-init.php:811 -msgid "Never show stock amount" -msgstr "Nikdy nezobrazovat stav skladu" - -# @ woocommerce -#: admin/settings/settings-init.php:843 -msgid "Hide shipping costs until an address is entered" -msgstr "Schovat doručovací náklady dokud nebude vložená adresa" - -# @ woocommerce -#: admin/settings/settings-init.php:852 -msgid "" -"This controls how multiple shipping methods are displayed on the frontend." -msgstr "Tato volba určuje jak se více způsobů přepravy zobrazí na webu." - -# @ woocommerce -#: admin/settings/settings-init.php:858 -msgid "Radio buttons" -msgstr "Přepínače" - -# @ woocommerce -#: admin/settings/settings-init.php:859 -msgid "Select box" -msgstr "Výběrové políčko" - -# @ woocommerce -#: admin/settings/settings-init.php:865 -msgid "Shipping Destination" -msgstr "Cíl přepravy" - -# @ woocommerce -#: admin/settings/settings-init.php:882 -msgid "Collect shipping address even when not required" -msgstr "Shromažďovat dodací adresu, i když není vyžadováno" - -# @ woocommerce -#: admin/settings/settings-init.php:900 -msgid "" -"Installed payment gateways are displayed below. Drag and drop payment " -"gateways to control their display order on the checkout." -msgstr "" -"Instalované platební brány jsou zobrazeny níže. Přetáhnutím platební brány " -"ovládáte jejich pořadí zobrazení na pokladně." - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:25 -msgid "Drag and drop methods to control their display order." -msgstr "Chytněte a přetáhněte způsoby pro kontrolu jejich pořadí zobrazení." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:31 -msgid "" -"If you are having problems, or to assist us with support, please check the " -"status page to identify any problems with your configuration:" -msgstr "" -"Pokud máte problémy nebo nám chcete pomoci s podporou, zkontrolujte prosím " -"stránku stavu k identifikaci případných problémů s konfigurací:" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:33 admin/woocommerce-admin-init.php:89 -#: admin/woocommerce-admin-status.php:26 -msgid "System Status" -msgstr "Stav systému" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:35 -#, php-format -msgid "" -"If you come across a bug, or wish to contribute to the project you can also " -"get involved on GitHub." -msgstr "" -"Pokud narazíte na chybu, nebo chcete přispět k projektu, můžete se také zapojit na GitHub." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:43 -msgid "" -"Here you can set up your store and customise it to fit your needs. The " -"sections available from the settings page include:" -msgstr "" -"Zde si můžete nastavit Váš obchod a přizpůsobit jej tak, aby vyhovoval vašim " -"potřebám. Sekce k dispozici ze stránky nastavení obsahují:" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:63 -msgid "Stock reports for low stock and out of stock items." -msgstr "" -"Skladové reporty pro položky s nízkým stavem na skladě a nenaskladněné." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:248 -#: admin/woocommerce-admin-reports.php:508 -#: admin/woocommerce-admin-reports.php:713 -#: admin/woocommerce-admin-reports.php:894 -msgid "Number of sales" -msgstr "Počet prodejů" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:243 -#: admin/woocommerce-admin-reports.php:508 -#: admin/woocommerce-admin-reports.php:713 -#: admin/woocommerce-admin-reports.php:894 -msgid "Sales amount" -msgstr "Suma prodejů" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:473 -msgid "Could not compile woocommerce.less:" -msgstr "Nelze zkompilovat woocommerce.less:" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:494 -#: admin/woocommerce-admin-functions.php:495 -msgid "Mark processing" -msgstr "Značení se zpracovává" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:497 -#: admin/woocommerce-admin-functions.php:498 -msgid "Mark completed" -msgstr "Značení dokončeno" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:535 -msgid "Order status changed by bulk edit:" -msgstr "Stav objednávky se změnil hromadnou úpravou:" - -# @ default -#: admin/woocommerce-admin-functions.php:558 -#, php-format -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "%s stav objednávky se změnil." -msgstr[1] "%s stavy objednávky se změnily." -msgstr[2] "%s stavů objednávky se změnilo." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:89 -msgid "WooCommerce Status" -msgstr "WooCommerce Status" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:142 admin/woocommerce-admin-init.php:144 -#: woocommerce.php:1049 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Objednávky" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:444 -msgid "Enter a name for the new attribute term:" -msgstr "Zadejte název pro pojmenování nové vlastnosti:" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:670 -#, php-format -msgid "Product published. View Product" -msgstr "Product zveřejněn. Zobrazit Produkt" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:722 -msgid "Order notes" -msgstr "Seřadit poznámky" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:104 -msgid "Taxes by month" -msgstr "Daně za měsíc" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:388 -#: admin/woocommerce-admin-reports.php:661 -#: admin/woocommerce-admin-reports.php:845 -msgid "items" -msgstr "položky" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:404 -msgid "Discounts used" -msgstr "Použité slevy" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:410 -msgid "Total shipping costs" -msgstr "Celkové doručovací náklady" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1209 -#, php-format -msgid "Sales for %s:" -msgstr "Tržby za %s:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2106 -#: admin/woocommerce-admin-reports.php:2145 -#, php-format -msgid "%d in stock" -msgid_plural "%d in stock" -msgstr[0] "%d skladem" -msgstr[1] "%d skladem" -msgstr[2] "%d skladem" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2314 -msgid "Total taxes for year" -msgstr "Celkové daně za rok" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2325 -msgid "Total product taxes for year" -msgstr "Celkové produktové daně za rok" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2336 -msgid "Total shipping tax for year" -msgstr "Celkové přepravní daně za rok" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2352 -msgid "Total Sales" -msgstr "Celkový prodej" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2352 -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "" -"Toto je součet pole 'Celková částka objednávky' ve Vašich objednávkách." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2353 -msgid "Total Shipping" -msgstr "Celková přeprava" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2353 -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "" -"Toto je součet pole 'Celková částka za Dopravu' ve Vašich objednávkách." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2354 -msgid "Total Product Taxes" -msgstr "Celkové produktové daně" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2354 -msgid "This is the sum of the 'Cart Tax' field within your orders." -msgstr "Toto je součet pole 'Daň z košíku' ve Vašich objednávkách." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2355 -msgid "Total Shipping Taxes" -msgstr "Celkové přepravní daně" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2355 -msgid "This is the sum of the 'Shipping Tax' field within your orders." -msgstr "Toto je součet pole 'Daň z dopravy' ve Vašich objednávkách." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2356 -msgid "Total Taxes" -msgstr "Celkové daně" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2356 -msgid "" -"This is the sum of the 'Cart Tax' and 'Shipping Tax' fields within your " -"orders." -msgstr "" -"Toto je součet polí 'Daň z košíku' a 'Daň z dopravy' ve Vašich objednávkách." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2357 -msgid "Net profit" -msgstr "Čistý zisk" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2357 -msgid "Total sales minus shipping and tax." -msgstr "Celkové tržby mínus poštovné a daně." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2402 -msgid "Toggle tax rows" -msgstr "Přepnout daňové řady" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:826 -msgid "Select a page…" -msgstr "Zvolte stránku…" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:567 -msgid "This tool will clear the product/shop transients cache." -msgstr "Tento nástroj vymaže přechodnou mezipaměť produktu/obchodu." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:580 -msgid "Capabilities" -msgstr "Možnosti" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:582 -msgid "" -"This tool will reset the admin, customer and shop_manager roles to default. " -"Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "" -"Tento nástroj resetuje role admina, zákazníka a obchodního manažera do " -"výchozího nastavení. Použijte toto, pokud Vaši uživatelé nemohou získat " -"přístup ke všem administračním stránkám WooCommerce." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:597 -msgid "Product Transients Cleared" -msgstr "Přechody produktu vymazány" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:646 -msgid "Roles successfully reset" -msgstr "Role úspěšně resetovány" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:677 -#, php-format -msgid "There was an error calling %s::%s" -msgstr "Došlo k chybě %s::%s" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:680 -#, php-format -msgid "There was an error calling %s" -msgstr "Došlo k chybě %s" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:262 -msgid "by" -msgstr "od" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:262 -msgid "version" -msgstr "verze" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:77 -msgid "Home URL" -msgstr "Domácí URl" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:81 -msgid "Site URL" -msgstr "URl webu" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:285 -msgid "Force SSL" -msgstr "Zapnout SSL" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:355 -msgid "Page not set" -msgstr "Stránka není zvolena" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:370 -#, php-format -msgid "Page does not contain the shortcode: %s" -msgstr "Stránka neobsahuje shortcode: %s" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:101 -msgid "PHP Version" -msgstr "PHP verze" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:125 -msgid "WP Max Upload Size" -msgstr "WP Max nahrávací velikost" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:109 -msgid "WP Memory Limit" -msgstr "WP paměťový limit" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:114 -#, php-format -msgid "" -"%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "" -"%s - Doporučujeme nastavit velikost paměti alespoň na 64MB. Viz: Zvýšení paměti přidělené pro PHP" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:121 -msgid "WP Debug Mode" -msgstr "WP Ladící mód" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:137 -msgid "WC Logging" -msgstr "WC Protokolování" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:140 -msgid "Log directory is writable." -msgstr "Log adresář je zapisovatelný." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:142 -msgid "" -"Log directory (woocommerce/logs/) is not writable. Logging will " -"not be possible." -msgstr "" -"Log adresář (woocommerce/logs/) není zapisovatelný. Nebude " -"možné logovat." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:149 -msgid "fsockopen/cURL" -msgstr "fsockopen/cURL" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:152 -msgid "Your server has fsockopen and cURL enabled." -msgstr "Váš server má povoleno fsockopen a cURL." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:154 -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "Váš server nemá povoleno fsockopen a cURL." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:156 -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "Váš server má povoleno cURL, fsockopen není povolen." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:160 -msgid "" -"Your server does not have fsockopen or cURL enabled - PayPal IPN and other " -"scripts which communicate with other servers will not work. Contact your " -"hosting provider." -msgstr "" -"Váš server nemá povolen fsockopen nebo cURL - PayPal IPN a jiné skripty, " -"které komunikují s jinými servery nebudou fungovat. Kontaktujte svého " -"poskytovatele hostingu." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:186 -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "wp_remote_post() byla úspěšná - PayPal IPN je funkční." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:189 -msgid "" -"wp_remote_post() failed. PayPal IPN won't work with your server. Contact " -"your hosting provider. Error:" -msgstr "" -"wp_remote_post() se nezdařila. PayPal IPN nebude fungovat s Vaším serverem. " -"Kontaktujte Vašeho poskytovatele hostingu. Chyba:" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:192 -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "" -"wp_remote_post() se nezdařila. PayPal IPN nemůže fungovat s Vaším serverem." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:27 -#: admin/woocommerce-admin-status.php:692 -msgid "Tools" -msgstr "Nástroje" - -# @ woocommerce -#: classes/class-wc-coupon.php:448 -#, php-format -msgid "" -"Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from " -"your order." -msgstr "" -"Je nám líto, vypadá to, že kupón \"%s\" není platný - ten byl nyní odtraněn " -"z Vaší objednávky." - -# @ woocommerce -#: classes/class-wc-coupon.php:451 -#, php-format -msgid "" -"Sorry, it seems the coupon \"%s\" is not yours - it has now been removed " -"from your order." -msgstr "" -"Je nám líto, vypadá to, že kupón \"%s\" není Váš - ten byl nyní odstraněn z " -"Vaší objednávky." - -# @ woocommerce -#: classes/class-wc-cart.php:883 classes/class-wc-cart.php:891 -#, php-format -msgid "" -"%s You cannot add that amount to the " -"cart — we have %s in stock and you already have %s in your cart." -msgstr "" -"%s Nemůžete přidat takové množství do " -"košíku — máme %s skladem a Vy již máte %s ve Vašem košíku." - -# @ woocommerce -#: classes/class-wc-checkout.php:65 -msgctxt "placeholder" -msgid "Username" -msgstr "Uživatelské jméno" - -# @ woocommerce -#: classes/class-wc-checkout.php:73 -msgctxt "placeholder" -msgid "Password" -msgstr "Heslo" - -# @ woocommerce -#: classes/class-wc-checkout.php:90 -msgctxt "placeholder" -msgid "Notes about your order, e.g. special notes for delivery." -msgstr "Poznámky o Vaší objednávce, např. speciální požadavky pro doručení." - -# @ woocommerce -#: classes/class-wc-checkout.php:458 -#, php-format -msgid "(%s) is not a valid postcode/ZIP." -msgstr "(%s) není platné PSČ." - -# @ woocommerce -#: classes/class-wc-checkout.php:479 -msgid "is not valid. Please enter one of the following:" -msgstr "není platné. zadejte prosím z následujících:" - -# @ woocommerce -#: classes/class-wc-checkout.php:642 woocommerce-functions.php:788 -msgid "" -"Couldn’t register you… please contact us if you continue to " -"have problems." -msgstr "" -"Nelze Vás zaregistrovat… kontaktujte nás prosím, pokud budete mít i " -"nadále problémy." - -# @ woocommerce -#: classes/class-wc-checkout.php:152 -#, php-format -msgid "Order – %s" -msgstr "Objednávka – %s" - -# @ woocommerce -#: classes/class-wc-checkout.php:152 -#, php-format -msgctxt "Order date parsed by strftime" -msgid "%b %d, %Y @ %I:%M %p" -msgstr "%b %d, %Y @ %I:%M %p" - -# @ woocommerce -#: classes/class-wc-checkout.php:278 -msgid "Backordered" -msgstr "Objednáno" - -# @ woocommerce -#: classes/class-wc-countries.php:38 -msgid "Åland Islands" -msgstr "Åland Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:217 -msgid "Saint Barthélemy" -msgstr "Saint Barthélemy" - -# @ woocommerce -#: classes/class-wc-countries.php:226 -msgid "São Tomé and Príncipe" -msgstr "São Tomé and Príncipe" - -# @ woocommerce -#: i18n/states/BR.php:20 -msgid "Espírito Santo" -msgstr "Espírito Santo" - -# @ woocommerce -#: i18n/states/BR.php:27 -msgid "Paraíba" -msgstr "Paraíba" - -# @ woocommerce -#: i18n/states/HK.php:14 -msgid "Kowloon" -msgstr "Kowloon" - -# @ woocommerce -#: classes/class-wc-countries.php:790 -msgid "Canton" -msgstr "Kanton" - -# @ woocommerce -#: classes/class-wc-coupon.php:460 -msgid "Coupon usage limit has been reached." -msgstr "Limit použití kupónu byl dosažen." - -# @ woocommerce -#: classes/class-wc-coupon.php:463 -msgid "This coupon has expired." -msgstr "Platnost tohoto kupónu vypršela." - -# @ woocommerce -#: classes/class-wc-coupon.php:466 -#, php-format -msgid "The minimum spend for this coupon is %s." -msgstr "Minimální útrata pro tento kupón je %s." - -# @ woocommerce -#: classes/class-wc-emails.php:288 classes/class-wc-emails.php:320 -#: classes/class-wc-emails.php:364 -#, php-format -msgid "Product #%s - %s" -msgstr "Produkt #%s - %s" - -# @ woocommerce -#: classes/class-wc-emails.php:366 -#, php-format -msgid "%s units of %s have been backordered in order #%s." -msgstr "%s jednotek z %s bylo objednáno v objednávce #%s." - -# @ woocommerce -#: classes/class-wc-emails.php:246 -msgid "Note" -msgstr "Poznámka" - -# @ woocommerce -#: classes/class-wc-order.php:283 -msgctxt "hash before order number" -msgid "#" -msgstr "#" - -# @ woocommerce -#: classes/class-wc-order.php:886 -#, php-format -msgid " %svia %s" -msgstr " %spři %s" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:551 -#, php-format -msgid "Only %s left in stock" -msgstr "Jen %s skladem" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:82 -msgid "Account Details" -msgstr "Detaily účtu" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:84 -msgid "Optionally enter your bank details below for customers to pay into." -msgstr "Pro platby zákazníků volitelně zadejte níže své bankovní údaje." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:81 -msgid "Enable Cash on Delivery" -msgstr "Povolit platbu na dobírku" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:31 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:168 -msgid "Mijireh Checkout" -msgstr "Pokladna Mijireh" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:108 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:293 -msgid "Mijireh error:" -msgstr "Mijireh chyba:" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:132 -msgid "Enable Mijireh Checkout" -msgstr "Povolit pokladnu Mijireh" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:136 -msgid "Access Key" -msgstr "Přístupový klíč" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:138 -msgid "The Mijireh access key for your store." -msgstr "Přístupový klíč Mijireh pro Váš obchod." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:146 -msgid "Credit Card" -msgstr "Kreditní karta" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:172 -msgid "Get started with Mijireh Checkout" -msgstr "Začínáme s pokladnou Mijireh" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:173 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site. Mijireh supports a wide variety of payment gateways: Stripe, " -"Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and more." -msgstr "" -"poskytuje plně PCI RoHS, bezpečný způsob, jak sbírat a předávat údaje o " -"kreditní kartě Vaší platební bráně při udržení kontroly rozvržení Vašich " -"stránek. Mijireh podporuje širokou škálu platebních bran: Stripe, Authorize." -"net, PayPal, eWay, SagePay, Braintree, PayLeap, a další." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:175 -msgid "Join for free" -msgstr "Registrujte se zdarma" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:175 -msgid "Learn more about WooCommerce and Mijireh" -msgstr "Dozvědět se více o WooCommerce a Mijireh" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:179 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site." -msgstr "" -"poskytuje plně PCI RoHS, bezpečný způsob, jak sbírat a předávat údaje o " -"kreditní kartě Vaší platební bráně při udržení kontroly rozvržení Vašich " -"stránek." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:162 -msgid "Submission method" -msgstr "Metoda potvrzení" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:164 -msgid "Use form submission method." -msgstr "Použít metodu odeslání formuláře" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:165 -msgid "" -"Enable this to post order data to PayPal via a form instead of using a " -"redirect/querystring." -msgstr "" -"Povolit toto pro odeslání dat objednávky na PayPal prostřednictvím formuláře " -"namísto použití přesměrování / QueryString." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:169 -msgid "Page Style" -msgstr "Styl stránky" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:171 -msgid "" -"Optionally enter the name of the page style you wish to use. These are " -"defined within your PayPal account." -msgstr "" -"Volitelně zadejte název stylu stránky, který chcete použít. Ty jsou " -"definovány v rámci vašeho účtu PayPal." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:177 -msgid "Shipping options" -msgstr "Nastavení doručování" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:184 -msgid "Send shipping details to PayPal instead of billing." -msgstr "Poslat podrobnosti o dopravě na PayPal místo účtování." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:186 -msgid "" -"PayPal allows us to send 1 address. If you are using PayPal for shipping " -"labels you may prefer to send the shipping address rather than billing." -msgstr "" -"PayPal nám umožňuje posílat 1 adresu. Pokud používáte PayPal pro dopravní " -"štítky můžete raději poslat doručovací adresu spíše než fakturační." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:190 -msgid "Address override" -msgstr "Vynechat adresu" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:192 -msgid "" -"Enable \"address_override\" to prevent address information from being " -"changed." -msgstr "" -"Povolit \"address_override \", aby se zabránilo změnám adresních informací." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:193 -msgid "" -"PayPal verifies addresses therefore this setting can cause errors (we " -"recommend keeping it disabled)." -msgstr "" -"PayPal ověřuje adresy, proto toto nastavení může způsobit chyby " -"(doporučujeme ponechat zakázané)." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:197 -msgid "Gateway Testing" -msgstr "Testování brány" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:206 -#, php-format -msgid "" -"PayPal sandbox can be used to test payments. Sign up for a developer account " -"here." -msgstr "" -"PayPal sandbox může být použit k testování plateb. Přihlaste se k odběru " -"vývojáře účtu zde." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:209 -msgid "Debug Log" -msgstr "Ladící log" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:211 -msgid "Enable logging" -msgstr "Povolit přihlašování" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:331 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:385 -msgid "Shipping via" -msgstr "Doručení přes" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:705 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:723 -#, php-format -msgid "Order %s has been marked as refunded - PayPal reason code: %s" -msgstr "Objednávka %s byla označena jako vrácena - PayPal kód příčiny: %s" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:708 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:726 -#, php-format -msgid "Payment for order %s refunded/reversed" -msgstr "Platba za objednávku %s vrácena" - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:52 -msgid "Enable this option to show the ShareDaddy button on the product page." -msgstr "" -"Povolte tuto možnost pro zobrazení tlačítka ShareDaddy na produktové stránce." - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:69 -msgid "ShareThis Code" -msgstr "ShareThis Kód" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:70 -msgid "You can tweak the ShareThis code by editing this option." -msgstr "Můžete doladit ShareThis kód úpravou této možnosti." - -# @ woocommerce -# @ default -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:22 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:329 -msgid "ShareYourCart" -msgstr "ShareYourCart" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:33 -msgid "Setup your ShareYourCart account" -msgstr "Nastavit Váš ShareYourCart účet" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Create an account" -msgstr "Vytvořit účet" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Can't access your account?" -msgstr "Nemůžete se připojit do Vašeho účtu?" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:100 -msgid "Configure" -msgstr "Nastavit" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/button-settings-page.php:8 -#: classes/integrations/shareyourcart/views/button-settings-page.php:11 -msgid "Button style" -msgstr "Styl tlačítka" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:116 -msgid "Cost per order" -msgstr "Cena za objednávku" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:160 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:126 -msgid "" -"Enter a minimum fee amount. Fee's less than this will be increased. Leave " -"blank to disable." -msgstr "" -"Zadejte minimální výši poplatku. Menší výše poplatku než toto bude zvýšeno. " -"Ponechte prázdné pro vypnutí." - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 -msgid "Fixed amount" -msgstr "Pevná částka" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:117 -msgid "Percentage of cart total" -msgstr "Procento z celkového košíku" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:118 -msgid "Fixed amount per product" -msgstr "Pevná částka za produkt" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:123 -msgid "Delivery Fee" -msgstr "Doručovací poplatek" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:129 -msgid "" -"What fee do you want to charge for local delivery, disregarded if you choose " -"free. Leave blank to disable." -msgstr "" -"Jaký poplatek chcete účtovat pro místní doručení, nebere se v úvahu, pokud " -"vyberete zdarma. Ponechte prázdné pro vypnutí." - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:135 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:91 -msgid "Zip/Post Codes" -msgstr "PSČ kódy" - -# @ woocommerce -#: classes/class-wc-coupon.php:498 -msgid "Please enter a coupon code." -msgstr "Zadejte prosím kód kupónu" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:51 -msgid "Please enter a valid order ID" -msgstr "zadejte prosím platné ID objednávky" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:55 -msgid "Please enter a valid order email" -msgstr "Zadejte prosím platný e-mail pro objednání" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:74 -msgid "Sorry, we could not find that order id in our database." -msgstr "Je nám líto, nemůžeme nalézt ID objednávky v naší databázi." - -# @ woocommerce -#: woocommerce-template.php:219 -#, php-format -msgid "Search Results: “%s”" -msgstr "Výsledky hledání: “%s”" - -# @ woocommerce -#: woocommerce-template.php:222 -#, php-format -msgid " – Page %s" -msgstr " – Stránka %s" - -# @ woocommerce -#: templates/checkout/form-billing.php:17 -msgid "Billing & Shipping" -msgstr "Fakturace & Doprava" - -# @ woocommerce -#: templates/checkout/form-shipping.php:32 -msgid "Ship to billing address?" -msgstr "Doručit na fakturační adresu?" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:20 -msgid "jS F Y" -msgstr "j F Y" - -# @ woocommerce -#: templates/emails/customer-new-account.php:14 -#: templates/emails/plain/customer-new-account.php:13 -#, php-format -msgid "" -"Thanks for creating an account on %s. Your username is %s." -msgstr "" -"Děkujeme Vám za vytvoření účtu v e-shopu pro %s. Vaše uživatelské jméno je " -"%s." - -# @ woocommerce -#: templates/emails/customer-new-account.php:16 -#: templates/emails/plain/customer-new-account.php:15 -#, php-format -msgid "You can access your account area here: %s." -msgstr "Do Vašeho účtu můžete vstoupit zde : %s." - -# @ woocommerce -#: templates/order/order-details.php:90 -msgid "Order Again" -msgstr "Objednat znovu" - -# @ woocommerce -#: templates/order/tracking.php:18 -#, php-format -msgid "Order %s which was made %s has the status “%s”" -msgstr "Objednávka %s, která byla vytvořena %s má status “%s”" - -# @ woocommerce -#: templates/order/tracking.php:18 -msgid "ago" -msgstr "před" - -# @ woocommerce -#: templates/single-product/add-to-cart/variable.php:69 -msgid "Clear selection" -msgstr "Zrušit výběr" - -# @ woocommerce -#: templates/single-product/review.php:40 -msgid "verified owner" -msgstr "ověřený vlastník" - -# @ woocommerce -#: templates/single-product-reviews.php:97 -msgid "Rate…" -msgstr "Hodnotit…" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:198 -msgid "Hide free products" -msgstr "Schovat produkty zdarma" - -# @ woocommerce -#: classes/widgets/class-wc-widget-cart.php:33 -msgid "Display the user's Cart in the sidebar." -msgstr "Zobrazit uživatelův košík v postranní liště." - -# @ woocommerce -#: classes/widgets/class-wc-widget-cart.php:35 -msgid "WooCommerce Cart" -msgstr "WooCommerce košík" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:129 -msgid "No product categories exist." -msgstr "Neexistují žádné kategorie produktů." - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:97 -#, php-format -msgctxt "by comment author" -msgid "by %1$s" -msgstr "od %1$s" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:58 woocommerce.php:789 -msgctxt "slug" -msgid "product" -msgstr "produkt" - -# @ woocommerce -#: woocommerce-core-functions.php:1566 -msgid "Uncategorized" -msgstr "Nezařazeno" - -# @ woocommerce -#: woocommerce-functions.php:872 -msgid "The cart has been filled with the items from your previous order." -msgstr "Košík byl naplněn položkami z předchozí objednávky." - -# @ woocommerce -#: woocommerce-template.php:1341 -msgid "Update country" -msgstr "Aktualizovat zemi" - -# @ woocommerce -#: woocommerce.php:825 -msgctxt "Admin menu name" -msgid "Categories" -msgstr "Kategorie" - -# @ woocommerce -#: woocommerce.php:861 -msgctxt "Admin menu name" -msgid "Tags" -msgstr "Tagy" - -# @ woocommerce -#: woocommerce.php:892 -msgctxt "Admin menu name" -msgid "Shipping Classes" -msgstr "Doručovací třídy" - -# @ woocommerce -#: woocommerce.php:984 -msgctxt "Admin menu name" -msgid "Products" -msgstr "Produkty" - -# @ woocommerce -#: woocommerce.php:1097 -msgctxt "Admin menu name" -msgid "Coupons" -msgstr "Kupóny" - -# @ woocommerce -#: woocommerce.php:1207 -msgid "Please select a rating" -msgstr "Zvolte prosím hodnocení" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:208 -msgid "Load billing address" -msgstr "Načíst fakturační adresu" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Load shipping address" -msgstr "Načíst doručovací adresu" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Copy from billing" -msgstr "Kopírovat z fakturace" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:581 -#: admin/post-types/writepanels/writepanel-order_data.php:583 -#: admin/post-types/writepanels/writepanel-order_data.php:682 -#: admin/post-types/writepanels/writepanel-order_data.php:684 -msgid "Other" -msgstr "Jiné" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:544 -msgid "The shipping title the customer sees" -msgstr "Název doručení, které uvidí zákazník" - -# @ woocommerce -#: admin/settings/settings-init.php:151 -msgid "Allow registration on the checkout page" -msgstr "Povolit registraci na stránce pokladny" - -# @ woocommerce -#: admin/settings/settings-init.php:159 -msgid "Allow registration on the \"My Account\" page" -msgstr "Povolit registraci na stránce \"Můj účet\"" - -# @ woocommerce -#: admin/settings/settings-init.php:167 -msgid "Register using the email address for the username" -msgstr "Registrovat použitím e-mailové adresy jako uživatelské jméno" - -# @ woocommerce -#: admin/settings/settings-init.php:84 -msgid "Store Notice" -msgstr "Uchovávat oznámení" - -# @ woocommerce -#: admin/settings/settings-init.php:92 -msgid "Store Notice Text" -msgstr "Text pro uchovávání oznámení" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:214 -msgid "Order total:" -msgstr "Cleková částka objednávky:" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:395 -msgid "Order Statuses" -msgstr "Stavy objednávek" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:176 -msgid "Country or state code" -msgstr "Kód země/státu" - -# @ woocommerce -#: classes/class-wc-countries.php:141 -msgid "Republic of Ireland" -msgstr "Republic of Ireland" - -# @ woocommerce -#: i18n/states/BR.php:19 -msgid "Distrito Federal" -msgstr "Distrito Federal" - -# @ woocommerce -#: i18n/states/BR.php:32 -msgid "Rio Grande do Norte" -msgstr "Rio Grande do Norte" - -# @ woocommerce -#: i18n/states/BR.php:33 -msgid "Rio Grande do Sul" -msgstr "Rio Grande do Sul" - -# @ woocommerce -#: i18n/states/BR.php:36 -msgid "Santa Catarina" -msgstr "Santa Catarina" - -# @ woocommerce -#: i18n/states/BR.php:23 -msgid "Mato Grosso" -msgstr "Mato Grosso" - -# @ woocommerce -#: i18n/states/BR.php:24 -msgid "Mato Grosso do Sul" -msgstr "Mato Grosso do Sul" - -# @ woocommerce -#: i18n/states/BR.php:31 -msgid "Rio de Janeiro" -msgstr "Rio de Janeiro" - -# @ woocommerce -#: i18n/states/BR.php:37 -msgid "São Paulo" -msgstr "São Paulo" - -# @ woocommerce -#: i18n/states/BR.php:25 -msgid "Minas Gerais" -msgstr "Minas Gerais" - -# @ woocommerce -#: i18n/states/HZ.php:20 i18n/states/NZ.php:13 -msgid "Northland" -msgstr "Northland" - -# @ woocommerce -#: i18n/states/HZ.php:13 i18n/states/NZ.php:14 -msgid "Auckland" -msgstr "Auckland" - -# @ woocommerce -#: i18n/states/HZ.php:25 i18n/states/NZ.php:15 -msgid "Waikato" -msgstr "Waikato" - -# @ woocommerce -#: i18n/states/HZ.php:14 i18n/states/NZ.php:16 -msgid "Bay of Plenty" -msgstr "Bay of Plenty" - -# @ woocommerce -#: i18n/states/HZ.php:23 i18n/states/NZ.php:17 -msgid "Taranaki" -msgstr "Taranaki" - -# @ woocommerce -#: i18n/states/HZ.php:16 i18n/states/NZ.php:18 -msgid "Hawke’s Bay" -msgstr "Hawke’s Bay" - -# @ woocommerce -#: i18n/states/HZ.php:17 i18n/states/NZ.php:19 -msgid "Manawatu-Wanganui" -msgstr "Manawatu-Wanganui" - -# @ woocommerce -#: i18n/states/HZ.php:26 i18n/states/NZ.php:20 -msgid "Wellington" -msgstr "Wellington" - -# @ woocommerce -#: i18n/states/HZ.php:19 i18n/states/NZ.php:21 -msgid "Nelson" -msgstr "Nelson" - -# @ woocommerce -#: i18n/states/HZ.php:18 i18n/states/NZ.php:22 -msgid "Marlborough" -msgstr "Marlborough" - -# @ woocommerce -#: i18n/states/HZ.php:24 i18n/states/NZ.php:23 -msgid "Tasman" -msgstr "Tasman" - -# @ woocommerce -#: i18n/states/HZ.php:27 i18n/states/NZ.php:24 -msgid "West Coast" -msgstr "West Coast" - -# @ woocommerce -#: i18n/states/HZ.php:15 i18n/states/NZ.php:25 -msgid "Canterbury" -msgstr "Canterbury" - -# @ woocommerce -#: i18n/states/HZ.php:21 i18n/states/NZ.php:26 -msgid "Otago" -msgstr "Otago" - -# @ woocommerce -#: i18n/states/HZ.php:22 i18n/states/NZ.php:27 -msgid "Southland" -msgstr "Southland" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:155 -msgid "Invoice Prefix" -msgstr "Prefix faktury" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:647 -#, php-format -msgid "Validation error: PayPal amounts do not match (gross %s)." -msgstr "Chyba validace: PayPal částky neodpovídají (hrubá %s)." - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:88 -msgid "Add event tracking code for add to cart actions" -msgstr "Přidejte kód sledování události pro akce přidání do košíku" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:294 -msgid "Add to Cart" -msgstr "Přidat do košíku" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:58 -#, php-format -msgid "" -"Order %s made on %s" -msgstr "" -"Objednávka %s vytvořená %s" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:59 -#, php-format -msgid "Order status: %s" -msgstr "Stav objednávky: %s" - -# @ woocommerce -#: templates/checkout/form-billing.php:51 -msgid "" -"Create an account by entering the information below. If you are a returning " -"customer please login at the top of the page." -msgstr "" -"Vytvořit účet zadáním níže uvedených údajů. Pokud jste registrovaný " -"zákazník, přihlaste se prosím v horní části stránky." - -# @ woocommerce -#: templates/checkout/form-login.php:22 -msgid "" -"If you have shopped with us before, please enter your details in the boxes " -"below. If you are a new customer please proceed to the Billing & " -"Shipping section." -msgstr "" -"Pokud jste u nás nakupovali dříve, zadejte své údaje do polí níže. Pokud " -"jste nový zákazník přejděte prosím do sekce Fakturace & Doprava." - -# @ woocommerce -#: templates/myaccount/form-login.php:29 -#: templates/myaccount/form-lost-password.php:24 -#: templates/shop/form-login.php:20 -msgid "Username or email" -msgstr "Uživatelské jméno nebo e-mail" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:204 -msgid "Only show children for the current category" -msgstr "Pro aktuální kategorii pouze ukázat dětem" - -# @ woocommerce -#: admin/importers/importers-init.php:13 -msgid "WooCommerce Tax Rates (CSV)" -msgstr "Woocommerce Daňové Sazby (CSV)" - -# @ woocommerce -#: admin/importers/importers-init.php:13 -msgid "Import tax rates to your store via a csv file." -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:103 -#: admin/importers/tax-rates-importer.php:188 -#: admin/importers/tax-rates-importer.php:228 -#: admin/importers/tax-rates-importer.php:243 -msgid "Sorry, there has been an error." -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:104 -msgid "The file does not exist, please try again." -msgstr "Soubor neexistuje. Zkuste to prosím znovu." - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:189 -msgid "The CSV is invalid." -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:200 -#, php-format -msgid "" -"Import complete - imported %s tax rates and skipped " -"%s." -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:210 -msgid "All done!" -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:210 -msgid "View Tax Rates" -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:261 -msgid "Import Tax Rates" -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:284 -msgid "" -"Hi there! Upload a CSV file containing tax rates to import the contents into " -"your shop. Choose a .csv file to upload, then click \"Upload file and import" -"\"." -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:286 -#, php-format -msgid "" -"Tax rates need to be defined with columns in a specific order (10 columns). " -"Click here to download a sample." -msgstr "" - -# @ default -#: admin/importers/tax-rates-importer.php:294 -msgid "" -"Before you can upload your import file, you will need to fix the following " -"error:" -msgstr "" - -# @ default -#: admin/importers/tax-rates-importer.php:303 -msgid "Choose a file from your computer:" -msgstr "" - -# @ default -#: admin/importers/tax-rates-importer.php:309 -#, php-format -msgid "Maximum size: %s" -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:314 -msgid "OR enter path to file:" -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:321 -msgid "Delimiter" -msgstr "" - -# @ default -#: admin/importers/tax-rates-importer.php:327 -msgid "Upload file and import" -msgstr "Nahrát soubor a importovat" - -# @ woocommerce -#: admin/includes/notice-theme-support.php:6 -msgid "" -"Your theme does not declare WooCommerce support – if " -"you encounter layout issues please read our integration guide or choose a " -"WooCommerce theme :)" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-theme-support.php:7 -msgid "Theme Integration Guide" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-theme-support.php:7 -msgid "Hide this notice" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-update.php:6 -msgid "" -"Data Update Required – We just need to update your " -"install to the latest version" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-update.php:7 -msgid "Run the updater" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-update.php:12 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:179 -#: admin/woocommerce-admin-install.php:207 -msgctxt "page_slug" -msgid "lost-password" -msgstr "" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:179 -#: admin/woocommerce-admin-install.php:207 -#: admin/woocommerce-admin-status.php:335 -msgid "Lost Password" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:48 -msgid "Welcome to WooCommerce" -msgstr "Vítejte do Woocommerce" - -# @ woocommerce -#: admin/includes/welcome.php:135 -#, php-format -msgid "Welcome to WooCommerce %s" -msgstr "Vítejte do Woocommerce %s" - -# @ woocommerce -#: admin/includes/welcome.php:140 -msgid "Thanks, all done!" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:142 -msgid "Thank you for updating to the latest version!" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:144 -msgid "Thanks for installing!" -msgstr "Děkujeme za instalaci!" - -# @ woocommerce -#: admin/includes/welcome.php:146 -#, php-format -msgid "" -"%s WooCommerce %s is more powerful, stable, and secure than ever before. We " -"hope you enjoy it." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:150 -#, php-format -msgid "Version %s" -msgstr "Verze %s" - -# @ woocommerce -#: admin/includes/welcome.php:154 woocommerce.php:171 -msgid "Docs" -msgstr "Dokumety" - -# @ woocommerce -#: admin/includes/welcome.php:161 -msgid "What's New" -msgstr "Co je nového" - -# @ woocommerce -#: admin/includes/welcome.php:163 -msgid "Credits" -msgstr "Titulky" - -# @ woocommerce -#: admin/includes/welcome.php:186 -msgid "Security in mind" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:190 -msgid "Sucuri Safe Plugin" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:191 -msgid "" -"You will be happy to learn that WooCommerce has been audited and certified " -"by the Sucuri Security team. Whilst there is not much to be seen visually to " -"understand the amount of work that went into this audit, rest assured that " -"your website is powered by one of the most powerful and stable eCommerce " -"plugins available." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:194 -msgid "A Smoother Admin Experience" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:200 -msgid "New Product Panel" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:201 -msgid "" -"We have revised the product data panel making it cleaner, more streamlined, " -"and more logical. Adding products is a breeze!" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:206 -msgid "Nicer Order Screens" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:207 -msgid "" -"Order pages have had a cleanup, with a more easily scannable interface. We " -"particularly like the new status icons!" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:212 -msgid "Multi-Download Support" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:213 -msgid "" -"Products can have multiple downloadable files - purchasers will get access " -"to all the files added." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:218 -msgid "Less Taxing Taxes" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:224 -msgid "New Tax Input Panel" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:225 -msgid "" -"The tax input pages have been streamlined to make inputting taxes simpler - " -"adding multiple taxes for a single jurisdiction is now much easier using the " -"priority system. There is also CSV import/export support." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:229 -msgid "Improved Tax Options" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:230 -msgid "" -"As requested by some users, we now support taxing the billing address " -"instead of shipping (optional), and we allow you to choose which tax class " -"applies to shipping." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:235 -msgid "Product Listing Improvements Customers Will Love" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:241 -msgid "New Sorting Options" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:242 -msgid "Customers can now sort products by popularity and ratings." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:247 -msgid "Better Pagination and Result Counts" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:248 -msgid "" -"Numbered pagination has been added to core, and we show the number of " -"results found above the listings." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:253 -msgid "Inline Star Rating Display" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:254 -msgid "" -"We have added star ratings to the catalog which are pulled from reviews." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:262 -msgid "Under the Hood" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:266 -msgid "New product classes" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:267 -msgid "" -"The product classes have been rewritten and are now factory based. Much more " -"extendable, and easier to query products using the new get_product() function." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:271 -msgid "Capability overhaul" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:272 -msgid "" -"More granular capabilities for admin/shop manager roles covering products, " -"orders and coupons." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:276 -msgid "API Improvements" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:277 -msgid "" -"WC-API now has real endpoints, and we've optimised the gateways " -"API significantly by only loading gateways when needed." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:283 -msgid "Cache-friendly cart widgets" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:284 -msgid "" -"Cart widgets and other \"fragments\" are now pulled in via AJAX - this works " -"wonders with static page caching." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:288 -msgid "Session handling" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:289 -msgid "" -"PHP SESSIONS have been a problem for many users in the past, so we've " -"developed our own handler using cookies and options to make these more " -"reliable." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:293 -msgid "Retina Ready" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:294 -msgid "All graphics within WC have been optimised for HiDPI displays." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:301 -msgid "Better stock handling" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:302 -msgid "" -"We have added an option to hold stock for unpaid orders (defaults to " -"60mins). When this time limit is reached, and the order is not paid for, " -"stock is released and the order is cancelled." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:306 -msgid "Improved Line-item storage" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:307 -msgid "" -"We have changed how order items get stored making them easier (and faster) " -"to access for reporting. Order items are no longer serialised within an " -"order - they are stored within their own table." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:311 -msgid "Autoload" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:312 -msgid "" -"We have setup autoloading for classes - this has dramatically reduced memory " -"usage in 2.0." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:319 -msgid "Go to WooCommerce Settings" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:337 -msgid "" -"WooCommerce is developed and maintained by a worldwide team of passionate " -"individuals and backed by an awesome developer community. Want to see your " -"name? Contribute to WooCommerce." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:363 -#, php-format -msgid "View %s" -msgstr "" - -# @ default -#: admin/post-types/product.php:151 -msgid "Edit this item" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:251 -msgid "Toggle featured" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:253 -msgid "yes" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:255 -msgid "no" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:796 admin/post-types/product.php:820 -msgid "Increase by (fixed amount or %):" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:797 admin/post-types/product.php:821 -msgid "Decrease by (fixed amount or %):" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:807 admin/post-types/product.php:832 -msgid "Enter price" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:822 -msgid "Decrease regular price by (fixed amount or %):" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:1222 -msgid "Insert into product" -msgstr "Vložit do produktu" - -# @ woocommerce -#: admin/post-types/product.php:1223 -msgid "Uploaded to this product" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:30 -msgid "Usage / Limit" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:56 -msgid "Edit coupon" -msgstr "Editovat kupón" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:114 -#, php-format -msgid "%s / %s" -msgstr "%s / %s" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:116 -#, php-format -msgid "%s / ∞" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:9 -#, php-format -msgid "File %d: %s" -msgstr "Soubor %d: %s" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:10 -msgid "Fee Name" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:6 -msgid "Tax Rate:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:16 -#: admin/post-types/writepanels/writepanel-order_data.php:630 -msgid "Sales Tax:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:63 -msgid "" -"Enter a quantity to enable stock management at variation level, or leave " -"blank to use the parent product's options." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:72 -msgid "Regular Price:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:73 -msgid "Variation price (required)" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:76 -msgid "Cancel schedule" -msgstr "Zrušit plán" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:83 -msgid "Sale start date:" -msgstr "Datum začátku prodeje:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:87 -msgid "Sale end date:" -msgstr "Datum konce prodeje:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:143 -msgid "File paths:" -msgstr "Cesty souboru:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:143 -msgid "" -"Enter one or more File Paths, one per line, to make this variation a " -"downloadable product, or leave blank." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:144 -#: admin/post-types/writepanels/writepanel-product_data.php:153 -msgid "File paths/URLs, one per line" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:145 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Choose a file" -msgstr "Zvolte soubor" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:145 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Insert file URL" -msgstr "Vložte URL souboru" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:158 -msgid "Download Expiry:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Coupon description" -msgstr "Popis kupónu" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Optionally enter a description for this coupon for your reference." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -#, php-format -msgid "" -"Check this box if the coupon grants free shipping. The free " -"shipping method must be enabled with the \"must use coupon\" setting " -"checked." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "" -"Check this box if the coupon cannot be used in conjunction with other " -"coupons." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "" -"Check this box if the coupon should be applied before calculating cart tax." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "Exclude sale items" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "" -"Check this box if the coupon should not apply to items on sale. Per-item " -"coupons will only work if the item is not on sale. Per-cart coupons will " -"only work if there are no sale items in the cart." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:94 -msgid "Exclude products" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:116 -#: assets/js/admin/editor_plugin_lang.php:9 -msgid "Product categories" -msgstr "Kategorie produktu" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:130 -msgid "Exclude categories" -msgstr "Vyloučené kategorie" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "How many times this coupon can be used before it is void." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "The date this coupon will expire, YYYY-MM-DD." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:195 -msgid "" -"Coupon code already exists - customers will use the latest coupon with this " -"code." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:62 -msgid "Order number" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:67 -msgid "Customer IP:" -msgstr "IP zákazníka:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:74 -msgid "General Details" -msgstr "Hlavní detaily" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:349 -msgid "Line subtotals are before pre-tax discounts, totals are after." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:388 -msgid "Delete Lines" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:390 -msgid "Stock Actions" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:391 -msgid "Reduce Line Stock" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:392 -msgid "Increase Line Stock" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:396 -#: admin/post-types/writepanels/writepanel-order_data.php:456 -msgid "Apply" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:403 -msgid "Add fee" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:434 -msgid "Resend order emails" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:502 -msgid "Discounts before tax - calculated by comparing subtotals to totals." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:510 -msgid "Discounts after tax - user defined." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:543 -msgid "Label:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:551 -msgid "Cost:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:559 -msgid "Method:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:630 -msgid "Total tax for line items + fees." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:695 -msgid "Calc taxes" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:697 -msgid "Calc totals" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:125 -msgid "" -"Could not grant access - the user may already have permission for this file " -"or billing email is not set. Ensure the billing email is set, and the order " -"has been saved." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:76 -msgid "Toggle "Enabled"" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:77 -msgid "Toggle "Downloadable"" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:78 -msgid "Toggle "Virtual"" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:79 -msgid "Delete all variations" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:92 -msgid "Go" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:518 -#: admin/woocommerce-admin-taxonomies.php:62 -#: admin/woocommerce-admin-taxonomies.php:154 -msgid "Choose an image" -msgstr "Zvolit obrázek" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:520 -msgid "Set variation image" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:83 -msgid "Linked Products" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:152 -msgid "File paths (one per line)" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Enable stock management at product level" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "Sold Individually" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "" -"Enable this to only allow one of this item to be bought in a single order" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:515 -msgid "Save attributes" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:591 -msgid "Set this option to make this product part of a grouped product." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:43 -#: admin/post-types/writepanels/writepanel-product_images.php:103 -msgid "Delete image" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:54 -msgid "Add product gallery images" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:80 -msgid "Add Images to Product Gallery" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:82 -msgid "Add to gallery" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:47 -msgid "Product Gallery" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "Order Items" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "" -"Note: if you edit quantities or remove items from the order you will need to " -"manually update stock levels." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "Downloadable Product Permissions" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "" -"Note: Permissions for order items will automatically be granted when the " -"order status changes to processing/completed." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:19 -#, php-format -msgid "Use informal localisation for %s" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:36 -msgid "Base Location" -msgstr "Základní poloha" - -# @ woocommerce -#: admin/settings/settings-init.php:37 -msgid "" -"This is the base location for your business. Tax rates will be based on this " -"country." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:85 -msgid "Enable site-wide store notice text" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:102 -msgid "Cart, Checkout and Accounts" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:106 -msgid "Enable the use of coupons" -msgstr "Povolit použití kupónů" - -# @ woocommerce -#: admin/settings/settings-init.php:110 -msgid "Coupons can be applied from the cart and checkout pages." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:123 -msgid "Enable customer note field on checkout" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:137 -msgid "" -"Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:192 -msgid "Allow customers to repurchase orders from their account page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:205 -msgid "Enable WooCommerce CSS" -msgstr "Povolit Woocommerce CSS" - -# @ woocommerce -#: admin/settings/settings-init.php:217 -msgid "Enable Lightbox" -msgstr "Povolit LIghtbox" - -# @ woocommerce -#: admin/settings/settings-init.php:220 -msgid "" -"Include WooCommerce's lightbox. Product gallery images and the add review " -"form will open in a lightbox." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:231 -msgid "This will enable a script allowing the country fields to be searchable." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:236 -msgid "Downloadable Products" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:239 -msgid "File Download Method" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:255 -msgid "Access Restriction" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:256 -msgid "Downloads require login" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:260 -msgid "This setting does not apply to guest purchases." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:269 -msgid "" -"Enable this option to grant access to downloads when orders are \"processing" -"\", rather than \"completed\"." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:292 -#, php-format -msgid "" -"Set up core WooCommerce pages here, for example the base page. The base page " -"can also be used in your %sproduct permalinks%s." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:308 -msgid "Terms Page ID" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:411 -msgid "Logout Page" -msgstr "Stránka pro odhlášení" - -# @ woocommerce -#: admin/settings/settings-init.php:412 -msgid "Parent: \"My Account\"" -msgstr "Hlavní: \"Můj účet\"" - -# @ woocommerce -#: admin/settings/settings-init.php:422 -msgid "Lost Password Page" -msgstr "Stránka pro ztrátu hesla" - -# @ woocommerce -#: admin/settings/settings-init.php:423 -msgid "Page contents: [woocommerce_lost_password] Parent: \"My Account\"" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:442 -msgid "Default Product Sorting" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:449 -msgid "Default sorting (custom ordering + name)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:450 -msgid "Popularity (sales)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:451 -msgid "Average Rating" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:453 -msgid "Sort by price (asc)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:454 -msgid "Sort by price (desc)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:460 -msgid "Shop Page Display" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:461 -msgid "This controls what is shown on the product archive." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:467 admin/settings/settings-init.php:482 -msgid "Show products" -msgstr "Ukázat produkty" - -# @ woocommerce -#: admin/settings/settings-init.php:469 admin/settings/settings-init.php:484 -msgid "Show both" -msgstr "Ukázat obojí" - -# @ woocommerce -#: admin/settings/settings-init.php:475 -msgid "Default Category Display" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:476 -msgid "This controls what is shown on category archives." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:491 -msgid "Redirect to the cart page after successful addition" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:499 -msgid "Enable AJAX add to cart buttons on archives" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:511 -msgid "Product Fields" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:512 -msgid "Enable the SKU field for products" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:520 -msgid "" -"Enable the weight field for products (some shipping methods " -"may require this)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:528 -msgid "" -"Enable the dimension fields for products (some shipping " -"methods may require this)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:536 -msgid "" -"Show weight and dimension values on the Additional " -"Information tab" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:578 -msgid "Enable ratings on reviews" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:625 -msgid "Thousand Separator" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:635 -msgid "Decimal Separator" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:645 -msgid "Number of Decimals" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:659 -msgid "Trailing Zeros" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:722 -msgid "Manage Stock" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:730 -msgid "Hold Stock (minutes)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:731 -msgid "" -"Hold stock (for unpaid orders) for x minutes. When this limit is reached, " -"the pending order will be cancelled. Leave blank to disable." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:760 -msgid "Notification Recipient" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:768 -msgid "Low Stock Threshold" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:781 -msgid "Out Of Stock Threshold" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:794 -msgid "Out Of Stock Visibility" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:802 -msgid "Stock Display Format" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:826 -msgid "Shipping Calculations" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:851 -msgid "Shipping Method Display" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:921 -msgid "Enable Taxes" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:929 -msgid "Prices Entered With Tax" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:933 -msgid "" -"This option is important as it will affect how you input prices. Changing it " -"will not update existing products." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:935 -msgid "Yes, I will enter prices inclusive of tax" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:936 -msgid "No, I will enter prices exclusive of tax" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:941 -msgid "Calculate Tax Based On:" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:943 -msgid "This option determines which address is used to calculate tax." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:947 -msgid "Customer shipping address" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:948 -msgid "Customer billing address" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:949 admin/settings/settings-init.php:961 -msgid "Shop base address" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:954 -msgid "Default Customer Address:" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:956 -msgid "" -"This option determines the customers default address (before they input " -"their own)." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:960 -msgid "No address" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:966 -msgid "Shipping Tax Class:" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:967 -msgid "" -"Optionally control which tax class shipping gets, or leave it so shipping " -"tax is based on the cart items themselves." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:972 -msgid "Shipping tax class based on cart items" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:977 -msgid "Rounding" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:978 -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:985 -msgid "Additional Tax Classes" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:986 -msgid "" -"List additonal tax classes below (1 per line). This is in addition to the " -"default Standard Rate. Tax classes can be assigned to products." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:994 -msgid "Display prices during cart/checkout:" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:999 -msgid "Including tax" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1000 -msgid "Excluding tax" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1015 -msgid "\"From\" Name" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1024 -msgid "\"From\" Email Address" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1037 -msgid "Email Template" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1040 -msgid "Header Image" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1049 -msgid "Email Footer Text" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1058 -msgid "Base Colour" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1067 -msgid "Background Colour" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1068 -msgid "" -"The background colour for WooCommerce email templates. Default " -"#f5f5f5." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1076 -msgid "Email Body Background Colour" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1085 -msgid "Email Body Text Colour" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:29 -#, php-format -msgid "Tax Rates for the \"%s\" Class" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:30 -#, php-format -msgid "" -"Define tax rates for countries and states below. See here " -"for available alpha-2 country codes." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:36 -msgid "Country Code" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:36 -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:38 -msgid "State Code" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:38 -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:40 -#: admin/settings/settings-tax-rates.php:217 -msgid "ZIP/Postcode" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:40 -msgid "" -"Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all areas. Wildcards (*) can be used. Ranges for numeric " -"postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:42 -msgid "" -"Cities for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all cities." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:44 -msgid "Rate %" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:46 -msgid "Tax Name" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:46 -msgid "Enter a name for this tax rate." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:48 -#: admin/settings/settings-tax-rates.php:217 -msgid "Priority" -msgstr "Priorita" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:48 -msgid "" -"Choose a priority for this tax rate. Only 1 matching rate per priority will " -"be used. To define multiple tax rates for a single area you need to specify " -"a different priority per rate." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:59 -msgid "Insert row" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:60 -msgid "Remove selected row(s)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:62 -msgid "Export CSV" -msgstr "Export CSV" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:63 -msgid "Import CSV" -msgstr "Import CSV" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:163 -msgid "No row(s) selected" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Country Code" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "State Code" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Rate %" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Name" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:77 -msgid "Please, provide an attribute name, slug and type." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:79 -#, php-format -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:81 -#, php-format -msgid "" -"Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:86 -#: admin/woocommerce-admin-attributes.php:91 -#, php-format -msgid "Slug “%s” is already in use. Change it, please." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:271 -#: admin/woocommerce-admin-attributes.php:403 -msgid "Default sort order" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:275 -#: admin/woocommerce-admin-attributes.php:343 -#: admin/woocommerce-admin-attributes.php:405 -msgid "Custom ordering" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:277 -#: admin/woocommerce-admin-attributes.php:340 -#: admin/woocommerce-admin-attributes.php:407 -msgid "Term ID" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:279 -#: admin/woocommerce-admin-attributes.php:409 -msgid "" -"Determines the sort order on the frontend for this attribute. If using " -"custom ordering, you can drag and drop the terms in this attribute" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:317 -msgid "Order by" -msgstr "Seřadit podle" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:29 -#, php-format -msgid "" -"Thank you for using WooCommerce :) Should you need help using or extending " -"WooCommerce please read the documentation. For further " -"assistance you can use the community forum or if you have " -"access, our support desk." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:61 -msgid "Coupon usage reports." -msgstr "Reporty použití kupónu." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:84 -msgid "Project on WordPress.org" -msgstr "Projekt na Wordpress.org" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:85 -msgid "Project on Github" -msgstr "Projekt na Githubu" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:86 -msgid "WooCommerce Docs" -msgstr "Woocommerce dokumenty" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:87 -msgid "Official Extensions" -msgstr "Oficiální rozšíření" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:88 -msgid "Official Themes" -msgstr "Oficiální šablony" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:428 -msgid "Sold" -msgstr "Prodáno" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:429 -msgid "Earned" -msgstr "Vyděláno" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:433 -msgid "" -"Are you sure you want to remove the selected items? If you have previously " -"reduced this item's stock, or this order was submitted by a customer, you " -"will need to manually restore the item's stock." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:434 -msgid "Please select some items." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:435 -msgid "Remove this item meta?" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:445 -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:737 -msgid "" -"These settings control the permalinks used for products. These settings only " -"apply when not using \"default\" permalinks above." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:744 -msgctxt "default-slug" -msgid "shop" -msgstr "obchod" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:745 -msgctxt "default-slug" -msgid "product" -msgstr "produkt" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:766 -msgid "Shop base" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:770 -msgid "Shop base with category" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:776 -msgid "Custom Base" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:778 -msgid "" -"Enter a custom base to use. A base must be set or WordPress " -"will use default instead." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:806 -msgid "Product permalink base" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:811 -msgid "Product category base" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:818 -msgid "Product tag base" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:825 -msgid "Product attribute base" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:219 -msgctxt "page_slug" -msgid "logout" -msgstr "odhlásit" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:57 -msgid "Sales by category" -msgstr "Prodeje za kategorie" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:72 -msgid "Discounts by coupon" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:418 -msgid "This month's sales" -msgstr "Prodeje za tento měsíc" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1378 -msgid "Total orders containing coupons" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1384 -msgid "Percent of orders containing coupons" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1390 -msgid "Total coupon discount" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1399 -msgid "Most popular coupons" -msgstr "Nejpopulárnější kupóny" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1409 -#, php-format -msgid "Used 1 time" -msgid_plural "Used %d times" -msgstr[0] "Použito %d krát" -msgstr[1] "Použito %d krát" -msgstr[2] "Použito %d krát" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1412 -#: admin/woocommerce-admin-reports.php:1434 -msgid "No coupons found" -msgstr "Nenalezeny žádné kupóny" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1421 -msgid "Greatest discount amount" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1431 -#, php-format -msgid "Discounted %s" -msgstr "Zlevněno %s" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1490 -#: admin/woocommerce-admin-reports.php:2469 -msgid "Show:" -msgstr "Zobrazit:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1630 -msgid "Top coupon" -msgstr "Top kupóny" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1638 -msgid "Worst coupon" -msgstr "Nejhorší kupóny" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1646 -msgid "Discount average" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1654 -msgid "Discount median" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1674 -msgid "Monthly discounts by coupon" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2143 -msgid "Marked out of stock" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2545 -msgid "Category" -msgstr "Kategorie" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2648 -msgid "Top category" -msgstr "Top kategorie" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2657 -msgid "Worst category" -msgstr "Nejhorší kategorie" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2665 -msgid "Category sales average" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2676 -msgid "Category sales median" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2696 -msgid "Monthly sales by category" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:255 -msgid "Email Options" -msgstr "Možnosti emailu" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:62 -msgid "Please include this information when requesting support:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:63 -msgid "Download System Report File" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:71 -msgid "Environment" -msgstr "Prostředí" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:85 -msgid "WC Version" -msgstr "WC verze" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:89 -msgid "WC Database Version" -msgstr "WC verze databáze" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:93 -msgid "WP Version" -msgstr "WP verze" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:97 -msgid "Web Server Info" -msgstr "Web server info" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:105 -msgid "MySQL Version" -msgstr "MySQL verze" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:129 -msgid "PHP Post Max Size" -msgstr "PHP Post Max velikost" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:133 -msgid "PHP Time Limit" -msgstr "PHP Time Limit" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:165 -msgid "SOAP Client" -msgstr "SOAP Klient" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:167 -msgid "Your server has the SOAP Client class enabled." -msgstr "Váš server má povoleny třídy SOAP klienta." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:170 -#, php-format -msgid "" -"Your server does not have the SOAP Client class enabled - " -"some gateway plugins which use SOAP may not work as expected." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:175 -msgid "WP Remote Post" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:215 -msgid "Plugins" -msgstr "Pluginy" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:221 -msgid "Installed Plugins" -msgstr "Instalované pluginy" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:292 -msgid "WC Pages" -msgstr "WC stránky" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:299 -msgid "Shop Base" -msgstr "Sídlo obchodu" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:315 -msgid "Thanks" -msgstr "Díky" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:323 -#: assets/js/admin/editor_plugin_lang.php:19 -msgid "Edit Address" -msgstr "editovat adresu" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:365 -msgid "Page does not exist" -msgstr "Stránka neexistuje" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:389 -msgid "WC Taxonomies" -msgstr "WC taxonomie" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:405 -msgid "Product Types" -msgstr "Typy produktů" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:446 -msgid "Templates" -msgstr "Šablony" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:452 -msgid "Template Overrides" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:470 -msgid "No core overrides present in theme." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:565 -msgid "WC Transients" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:566 -msgid "Clear transients" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:570 -msgid "Expired Transients" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:571 -msgid "Clear expired transients" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:572 -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:575 -msgid "Term counts" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:576 -msgid "Recount terms" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:577 -msgid "" -"This tool will recount product terms - useful when changing your settings in " -"a way which hides products from the catalog." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:581 -msgid "Reset capabilities" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:638 -#, php-format -msgid "%d Transients Rows Cleared" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:658 -msgid "Terms successfully recounted" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:25 -#: admin/woocommerce-admin-taxonomies.php:118 -msgid "Display type" -msgstr "Typ zobrazení" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:29 -#: admin/woocommerce-admin-taxonomies.php:123 -msgid "Subcategories" -msgstr "Subkategorie" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:30 -#: admin/woocommerce-admin-taxonomies.php:124 -msgid "Both" -msgstr "Obojí" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:64 -#: admin/woocommerce-admin-taxonomies.php:156 -msgid "Use image" -msgstr "Použít obrázek" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:29 -msgid "Completed Orders" -msgstr "Vyřízené objednávky" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:5 -msgid "Insert Shortcode" -msgstr "Vložit Shortcode" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:6 -msgid "Product price/cart button" -msgstr "" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:7 -msgid "Product by SKU/ID" -msgstr "" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:8 -msgid "Products by SKU/ID" -msgstr "" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:10 -msgid "Products by category slug" -msgstr "" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:11 -msgid "Recent products" -msgstr "Poslední produkty" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:12 -msgid "Featured products" -msgstr "" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:13 -msgid "Shop Messages" -msgstr "Zprávy obchodu" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:17 -msgid "Order tracking" -msgstr "" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:23 -msgid "Thankyou" -msgstr "Děkujeme" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:433 -#: classes/emails/class-wc-email-customer-completed-order.php:137 -#: classes/emails/class-wc-email-customer-invoice.php:140 -#: classes/emails/class-wc-email-new-order.php:117 -msgid "Enable this email notification" -msgstr "" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:437 -#: classes/emails/class-wc-email-customer-invoice.php:144 -msgid "Email subject" -msgstr "Předmět emailu" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:439 -#: classes/abstracts/abstract-wc-email.php:446 -#: classes/emails/class-wc-email-customer-completed-order.php:143 -#: classes/emails/class-wc-email-customer-completed-order.php:150 -#: classes/emails/class-wc-email-customer-completed-order.php:157 -#: classes/emails/class-wc-email-customer-completed-order.php:164 -#: classes/emails/class-wc-email-customer-invoice.php:146 -#: classes/emails/class-wc-email-customer-invoice.php:153 -#: classes/emails/class-wc-email-customer-invoice.php:160 -#: classes/emails/class-wc-email-customer-invoice.php:167 -#, php-format -msgid "Defaults to %s" -msgstr "Výchozí pro %s" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:444 -#: classes/emails/class-wc-email-customer-invoice.php:151 -msgid "Email heading" -msgstr "Hlavička emailu" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:451 -#: classes/emails/class-wc-email-customer-completed-order.php:169 -#: classes/emails/class-wc-email-customer-invoice.php:172 -#: classes/emails/class-wc-email-new-order.php:142 -msgid "Email type" -msgstr "Typ e-mailu" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:453 -#: classes/emails/class-wc-email-customer-completed-order.php:171 -#: classes/emails/class-wc-email-customer-invoice.php:174 -#: classes/emails/class-wc-email-new-order.php:144 -msgid "Choose which format of email to send." -msgstr "Zvolte, který formát emailu má být odeslán." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:457 -#: classes/emails/class-wc-email-customer-completed-order.php:175 -#: classes/emails/class-wc-email-customer-invoice.php:178 -#: classes/emails/class-wc-email-new-order.php:148 -msgid "Plain text" -msgstr "Jednoduchý text" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:458 -#: classes/emails/class-wc-email-customer-completed-order.php:176 -#: classes/emails/class-wc-email-customer-invoice.php:179 -#: classes/emails/class-wc-email-new-order.php:149 -msgid "HTML" -msgstr "HTML" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:459 -#: classes/emails/class-wc-email-customer-completed-order.php:177 -#: classes/emails/class-wc-email-customer-invoice.php:180 -#: classes/emails/class-wc-email-new-order.php:150 -msgid "Multipart" -msgstr "" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:495 -#: classes/abstracts/abstract-wc-email.php:516 -msgid "Could not write to template file." -msgstr "Nelze zapsat do souboru šablony." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:543 -msgid "Template file copied to theme." -msgstr "Soubor šablony zkopírován do šablony." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:552 -msgid "Template file deleted from theme." -msgstr "Soubor šablony smazán z šablony." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:572 -msgid "HTML template" -msgstr "HTML šablona" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:573 -msgid "Plain text template" -msgstr "Jednoduchý text šablona" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:592 -msgid "Delete template file" -msgstr "Smazat soubor šablony" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:595 -#, php-format -msgid "" -"This template has been overridden by your theme and can be found in: " -"%s." -msgstr "" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:610 -msgid "Copy file to theme" -msgstr "Zkopírovat soubor do šablony" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:613 -#, php-format -msgid "" -"To override and edit this email template copy %s to your theme " -"folder: %s." -msgstr "" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:624 -msgid "File was not found." -msgstr "Soubor nebyl nalezen." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:649 -msgid "View template" -msgstr "Zobrazit šablonu" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:650 -msgid "Hide template" -msgstr "Skrýt šablonu" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:661 -msgid "Are you sure you want to delete this template file?" -msgstr "Opravdu chcete smazat tento soubor šablony?" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:33 -msgid "" -"The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class " -"directly." -msgstr "" - -# @ woocommerce -#: classes/class-wc-cart.php:479 classes/class-wc-cart.php:488 -#, php-format -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfil your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -"Požádované množství \"%s\" nemáme skladem (je skladem %s). Opravte množství " -"prosím." - -# @ woocommerce -#: classes/class-wc-cart.php:523 -#, php-format -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfil your order right now. " -"Please try again in %d minutes or edit your cart and try again. We apologise " -"for any inconvenience caused." -msgstr "" -"Požádované množství \"%s\" momentálně nemáme skladem. Zkuste prosím znovu za " -"%d minut nebo opravte množství." - -# @ woocommerce -#: classes/class-wc-cart.php:533 -#, php-format -msgid "" -"Sorry, \"%s\" is not in stock. Please edit your cart and try again. We " -"apologise for any inconvenience caused." -msgstr "\"%s\" nemáme skladem. Opravte obsah košíku prosím." - -# @ woocommerce -#: classes/class-wc-cart.php:845 -#, php-format -msgid "Sorry, "%s" cannot be purchased." -msgstr "" - -# @ woocommerce -#: classes/class-wc-cart.php:852 -#, php-format -msgid "" -"You cannot add "%s" to the cart because the product is out of " -"stock." -msgstr "" -"Není možné přidat "%s" do košíku, protože zboží není skladem." - -# @ woocommerce -#: classes/class-wc-cart.php:857 -#, php-format -msgid "" -"You cannot add that amount of "%s" to the cart because there is " -"not enough stock (%s remaining)." -msgstr "" -"Požádované množství \"%s\" není možné přidat do košíku (je skladem %s). " - -# @ woocommerce -#: classes/class-wc-countries.php:58 -msgid "Belau" -msgstr "Belau" - -# @ woocommerce -#: classes/class-wc-countries.php:64 -msgid "Bonaire, Saint Eustatius and Saba" -msgstr "Bonaire, Saint Eustatius a Saba" - -# @ woocommerce -#: classes/class-wc-countries.php:67 -msgid "Bouvet Island" -msgstr "Bouvet Island" - -# @ woocommerce -#: classes/class-wc-countries.php:94 -msgid "CuraÇao" -msgstr "CuraÇao" - -# @ woocommerce -#: classes/class-wc-countries.php:132 -msgid "Heard Island and McDonald Islands" -msgstr "Heard Island and McDonald Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:222 -msgid "Saint Martin (Dutch part)" -msgstr "Saint Martin (Dutch part)" - -# @ woocommerce -#: classes/class-wc-countries.php:240 -msgid "South Sudan" -msgstr "Jižní Súdán" - -# @ woocommerce -#: classes/class-wc-countries.php:846 -msgid "Town / District" -msgstr "Město / Čtvrť" - -# @ woocommerce -#: classes/class-wc-countries.php:734 classes/class-wc-countries.php:735 -#: templates/cart/shipping-calculator.php:80 -msgid "Postcode / Zip" -msgstr "PSČ / Zip" - -# @ woocommerce -#: classes/class-wc-countries.php:715 classes/class-wc-countries.php:716 -msgid "Town / City" -msgstr "Město" - -# @ woocommerce -#: classes/class-wc-countries.php:725 classes/class-wc-countries.php:726 -msgid "State / County" -msgstr "Stát" - -# @ woocommerce -#: classes/class-wc-countries.php:699 -msgctxt "placeholder" -msgid "Street address" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:707 -msgctxt "placeholder" -msgid "Apartment, suite, unit etc. (optional)" -msgstr "" - -# @ woocommerce -#: classes/class-wc-coupon.php:421 -msgid "Coupon code applied successfully." -msgstr "" - -# @ woocommerce -#: classes/class-wc-coupon.php:442 -msgid "Coupon is not valid." -msgstr "Kupón není platný" - -# @ woocommerce -#: classes/class-wc-coupon.php:454 -msgid "Coupon code already applied!" -msgstr "" - -# @ woocommerce -#: classes/class-wc-coupon.php:457 -#, php-format -msgid "" -"Sorry, coupon \"%s\" has already been applied and cannot be used in " -"conjunction with other coupons." -msgstr "" - -# @ woocommerce -#: classes/class-wc-coupon.php:469 -msgid "Sorry, this coupon is not applicable to your cart contents." -msgstr "" - -# @ woocommerce -#: classes/class-wc-coupon.php:472 -msgid "Sorry, this coupon is not valid for sale items." -msgstr "" - -# @ woocommerce -#: classes/class-wc-customer.php:628 classes/class-wc-customer.php:640 -#, php-format -msgid "File %d" -msgstr "Soubor %d" - -# @ woocommerce -#: classes/class-wc-order.php:1016 templates/cart/totals.php:105 -#: templates/checkout/review-order.php:104 -#, php-format -msgid "(Includes %s)" -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:24 -msgid "Completed order" -msgstr "Vyřízená objednávka" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:25 -msgid "" -"Order complete emails are sent to the customer when the order is marked " -"complete and usual indicates that the order has been shipped." -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:27 -msgid "Your order is complete" -msgstr "Vaše objednávka je vyřízena" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:28 -msgid "Your {blogname} order from {order_date} is complete" -msgstr "Vaše objednávka v eshopu {blogname} od {order_date} je vyřízena" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:37 -msgid "Your order is complete - download your files" -msgstr "Vaše objednávka je vyřízena - stáhněte si Vaše soubory" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:38 -msgid "" -"Your {blogname} order from {order_date} is complete - download your files" -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:141 -#: classes/emails/class-wc-email-new-order.php:128 -msgid "Subject" -msgstr "Předmět" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:148 -#: classes/emails/class-wc-email-new-order.php:135 -msgid "Email Heading" -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:155 -msgid "Subject (downloadable)" -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:162 -msgid "Email Heading (downloadable)" -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:27 -msgid "Customer invoice" -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:28 -msgid "" -"Customer invoice emails can be sent to the user containing order info and " -"payment links." -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:33 -msgid "Invoice for order {order_number} from {order_date}" -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:34 -msgid "Invoice for order {order_number}" -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:36 -msgid "Your {blogname} order from {order_date}" -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:37 -msgid "Order {order_number} details" -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:158 -msgid "Email subject (paid)" -msgstr "Předmět e-mailu (zaplaceno)" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:165 -msgid "Email heading (paid)" -msgstr "Hlavička e-mailu (zaplaceno)" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:31 -msgid "New account" -msgstr "Nový účet" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:32 -msgid "" -"Customer new account emails are sent when a customer signs up via the " -"checkout or My Account page." -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:37 -msgid "Your account on {blogname}" -msgstr "Váš učet na {blogname}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:38 -msgid "Welcome to {blogname}" -msgstr "Vítejte v obchodě {blogname}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:30 -msgid "Customer note emails are sent when you add a note to an order." -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:35 -msgid "Note added to your {blogname} order from {order_date}" -msgstr "" -"K Vaší objednávce v eshopu {blogname} od {order_date} byla přidána poznámka" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:24 -msgid "Processing order" -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:25 -msgid "" -"This is an order notification sent to the customer after payment containing " -"order details." -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:27 -msgid "Thank you for your order" -msgstr "Děkujeme Vám za Vaší objednávku" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:28 -msgid "Your {blogname} order receipt from {order_date}" -msgstr "Informace o Vaší objednávce v eshopu {blogname} od {order_date}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:36 -msgid "Reset password" -msgstr "Reset hesla" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:37 -msgid "" -"Customer reset password emails are sent when a customer resets their " -"password." -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:42 -msgid "Password Reset for {blogname}" -msgstr "Reset hesla pro {blogname}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:43 -msgid "Password Reset Instructions" -msgstr "Pokyny pro reset hesla" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:24 -msgid "New order" -msgstr "Nová objednávka" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:25 -msgid "New order emails are sent when an order is received/paid by a customer." -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:27 -msgid "New customer order" -msgstr "Nová zákaznická objednávka" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:28 -msgid "[{blogname}] New customer order ({order_number}) - {order_date}" -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:121 -msgid "Recipient(s)" -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:123 -#, php-format -msgid "" -"Enter recipients (comma separated) for this email. Defaults to %s." -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:130 -#, php-format -msgid "" -"This controls the email subject line. Leave blank to use the default " -"subject: %s." -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:137 -#, php-format -msgid "" -"This controls the main heading contained within the email notification. " -"Leave blank to use the default heading: %s." -msgstr "" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:97 -#: classes/gateways/cod/class-wc-gateway-cod.php:103 -msgid "Pay with cash upon delivery." -msgstr "Platba dobírkou." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:106 -msgid "Enable for shipping methods" -msgstr "" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:111 -msgid "" -"If COD is only available for certain methods, set it up here. Leave blank to " -"enable for all methods." -msgstr "" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:157 -msgid "" -"Please enter a prefix for your invoice numbers. If you use your PayPal " -"account for multiple stores ensure this prefix is unique as PayPal will not " -"allow orders with the same invoice number." -msgstr "" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:174 -msgid "Optional" -msgstr "Volitelné" - -# @ woocommerce -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:23 -msgid "" -"Increase your social media exposure by 10 percent! ShareYourCart helps you " -"get more customers by motivating satisfied customers to talk with their " -"friends about your products. For help with ShareYourCart view the documentation." -msgstr "" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:328 -msgid "Share your cart settings" -msgstr "Share your cart nastavení" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:342 -msgid "Button" -msgstr "Tlačítko" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:343 -msgid "Customize Button" -msgstr "Přizpůsobit tlačítko" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:122 -msgid "" -"Enter a cost (excluding tax) per order, e.g. 5.00. Leave blank to disable." -msgstr "" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:106 -msgid "Free Shipping Requires..." -msgstr "" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:111 -msgid "A valid free shipping coupon" -msgstr "" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:112 -msgid "A minimum order amount (defined below)" -msgstr "" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:113 -msgid "A minimum order amount OR a coupon" -msgstr "" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:114 -msgid "A minimum order amount AND a coupon" -msgstr "" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:124 -msgid "" -"Users will need to spend this amount to get free shipping (if enabled above)." -msgstr "" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:137 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:93 -msgid "" -"What zip/post codes would you like to offer delivery to? Separate codes with " -"a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -msgstr "" - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:117 -msgid "Apply base tax rate" -msgstr "" - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:119 -msgid "" -"When this shipping method is chosen, apply the base tax rate rather than for " -"the customer's given address." -msgstr "" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:93 -msgid "Your password has been reset." -msgstr "Vaše heslo bylo resetováno." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:93 -msgid "Log in" -msgstr "Přihlásit se" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:114 -msgid "Enter a username or e-mail address." -msgstr "Vložte uživatelské jméno nebo e-mail." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:121 -msgid "There is no user registered with that email address." -msgstr "Žádný uživatel s touto e-mailovou adresou neexistuje." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:136 -msgid "Invalid username or e-mail." -msgstr "Nesprávné uživatelské jméno nebo e-mail." - -# @ default -#: classes/shortcodes/class-wc-shortcode-lost-password.php:150 -msgid "Password reset is not allowed for this user" -msgstr "Reset hesla není povolen pro tohoto uživatele" - -# @ default -#: classes/shortcodes/class-wc-shortcode-lost-password.php:178 -msgid "Check your e-mail for the confirmation link." -msgstr "Zkontrolujte Váš e-mail pro potvrzovací odkaz." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:198 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:203 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:210 -msgid "Invalid key" -msgstr "Neplatný klíč" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:71 -msgid "l jS \\of F Y, h:ia" -msgstr "" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:31 -msgid "Shows active layered nav filters so users can see and deactivate them." -msgstr "" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:33 -msgid "WooCommerce Layered Nav Filters" -msgstr "WooCommerce vrstvené navigační filtry" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:62 -msgid "Active filters" -msgstr "Aktivovat filtry" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:93 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Remove filter" -msgstr "Odstranit filtr" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -msgid "Min" -msgstr "Min" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Max" -msgstr "Max" - -# @ woocommerce -#: i18n/states/CN.php:13 -msgid "Yunnan / 云南" -msgstr "Yunnan / 云南" - -# @ woocommerce -#: i18n/states/CN.php:14 -msgid "Beijing / 北京" -msgstr "Peking / 北京" - -# @ woocommerce -#: i18n/states/CN.php:15 -msgid "Tianjin / 天津" -msgstr "Tianjin / 天津" - -# @ woocommerce -#: i18n/states/CN.php:16 -msgid "Hebei / 河北" -msgstr "Hebei / 河北" - -# @ woocommerce -#: i18n/states/CN.php:17 -msgid "Shanxi / 山西" -msgstr "Shanxi / 山西" - -# @ woocommerce -#: i18n/states/CN.php:18 -msgid "Inner Mongolia / 內蒙古" -msgstr "Inner Mongolia / 內蒙古" - -# @ woocommerce -#: i18n/states/CN.php:19 -msgid "Liaoning / 辽宁" -msgstr "Liaoning / 辽宁" - -# @ woocommerce -#: i18n/states/CN.php:20 -msgid "Jilin / 吉林" -msgstr "Jilin / 吉林" - -# @ woocommerce -#: i18n/states/CN.php:21 -msgid "Heilongjiang / 黑龙江" -msgstr "Heilongjiang / 黑龙江" - -# @ woocommerce -#: i18n/states/CN.php:22 -msgid "Shanghai / 上海" -msgstr "Shanghai / 上海" - -# @ woocommerce -#: i18n/states/CN.php:23 -msgid "Jiangsu / 江苏" -msgstr "Jiangsu / 江苏" - -# @ woocommerce -#: i18n/states/CN.php:24 -msgid "Zhejiang / 浙江" -msgstr "Zhejiang / 浙江" - -# @ woocommerce -#: i18n/states/CN.php:25 -msgid "Anhui / 安徽" -msgstr "Anhui / 安徽" - -# @ woocommerce -#: i18n/states/CN.php:26 -msgid "Fujian / 福建" -msgstr "Fujian / 福建" - -# @ woocommerce -#: i18n/states/CN.php:27 -msgid "Jiangxi / 江西" -msgstr "Jiangxi / 江西" - -# @ woocommerce -#: i18n/states/CN.php:28 -msgid "Shandong / 山东" -msgstr "Shandong / 山东" - -# @ woocommerce -#: i18n/states/CN.php:29 -msgid "Henan / 河南" -msgstr "Henan / 河南" - -# @ woocommerce -#: i18n/states/CN.php:30 -msgid "Hubei / 湖北" -msgstr "Hubei / 湖北" - -# @ woocommerce -#: i18n/states/CN.php:31 -msgid "Hunan / 湖南" -msgstr "Hunan / 湖南" - -# @ woocommerce -#: i18n/states/CN.php:32 -msgid "Guangdong / 广东" -msgstr "Guangdong / 广东" - -# @ woocommerce -#: i18n/states/CN.php:33 -msgid "Guangxi Zhuang / 广西壮族" -msgstr "Guangxi Zhuang / 广西壮族" - -# @ woocommerce -#: i18n/states/CN.php:34 -msgid "Hainan / 海南" -msgstr "Hainan / 海南" - -# @ woocommerce -#: i18n/states/CN.php:35 -msgid "Chongqing / 重庆" -msgstr "Chongqing / 重庆" - -# @ woocommerce -#: i18n/states/CN.php:36 -msgid "Sichuan / 四川" -msgstr "Sichuan / 四川" - -# @ woocommerce -#: i18n/states/CN.php:37 -msgid "Guizhou / 贵州" -msgstr "Guizhou / 贵州" - -# @ woocommerce -#: i18n/states/CN.php:38 -msgid "Shaanxi / 陕西" -msgstr "Shaanxi / 陕西" - -# @ woocommerce -#: i18n/states/CN.php:39 -msgid "Gansu / 甘肃" -msgstr "Gansu / 甘肃" - -# @ woocommerce -#: i18n/states/CN.php:40 -msgid "Qinghai / 青海" -msgstr "Qinghai / 青海" - -# @ woocommerce -#: i18n/states/CN.php:41 -msgid "Ningxia Hui / 宁夏" -msgstr "Ningxia Hui / 宁夏" - -# @ woocommerce -#: i18n/states/CN.php:42 -msgid "Macau / 澳门" -msgstr "Macau / 澳门" - -# @ woocommerce -#: i18n/states/CN.php:43 -msgid "Tibet / 西藏" -msgstr "Tibet / 西藏" - -# @ woocommerce -#: i18n/states/CN.php:44 -msgid "Xinjiang / 新疆" -msgstr "Xinjiang / 新疆" - -# @ woocommerce -#: i18n/states/HU.php:13 -msgid "Bács-Kiskun" -msgstr "Bács-Kiskun" - -# @ woocommerce -#: i18n/states/HU.php:14 -msgid "Békés" -msgstr "Békés" - -# @ woocommerce -#: i18n/states/HU.php:15 -msgid "Baranya" -msgstr "Baranya" - -# @ woocommerce -#: i18n/states/HU.php:16 -msgid "Borsod-Abaúj-Zemplén" -msgstr "Borsod-Abaúj-Zemplén" - -# @ woocommerce -#: i18n/states/HU.php:17 -msgid "Budapest" -msgstr "Budapest" - -# @ woocommerce -#: i18n/states/HU.php:18 -msgid "Csongrád" -msgstr "Csongrád" - -# @ woocommerce -#: i18n/states/HU.php:19 -msgid "Fejér" -msgstr "Fejér" - -# @ woocommerce -#: i18n/states/HU.php:20 -msgid "Győr-Moson-Sopron" -msgstr "Győr-Moson-Sopron" - -# @ woocommerce -#: i18n/states/HU.php:21 -msgid "Hajdú-Bihar" -msgstr "Hajdú-Bihar" - -# @ woocommerce -#: i18n/states/HU.php:22 -msgid "Heves" -msgstr "Heves" - -# @ woocommerce -#: i18n/states/HU.php:23 -msgid "Jász-Nagykun-Szolnok" -msgstr "Jász-Nagykun-Szolnok" - -# @ woocommerce -#: i18n/states/HU.php:24 -msgid "Komárom-Esztergom" -msgstr "Komárom-Esztergom" - -# @ woocommerce -#: i18n/states/HU.php:25 -msgid "Nógrád" -msgstr "Nógrád" - -# @ woocommerce -#: i18n/states/HU.php:26 -msgid "Pest" -msgstr "Pest" - -# @ woocommerce -#: i18n/states/HU.php:27 -msgid "Somogy" -msgstr "Somogy" - -# @ woocommerce -#: i18n/states/HU.php:28 -msgid "Szabolcs-Szatmár-Bereg" -msgstr "Szabolcs-Szatmár-Bereg" - -# @ woocommerce -#: i18n/states/HU.php:29 -msgid "Tolna" -msgstr "Tolna" - -# @ woocommerce -#: i18n/states/HU.php:30 -msgid "Vas" -msgstr "Vas" - -# @ woocommerce -#: i18n/states/HU.php:31 -msgid "Veszprém" -msgstr "Veszprém" - -# @ woocommerce -#: i18n/states/HU.php:32 -msgid "Zala" -msgstr "Zala" - -# @ woocommerce -#: i18n/states/ID.php:13 -msgid "Daerah Istimewa Aceh" -msgstr "Daerah Istimewa Aceh" - -# @ woocommerce -#: i18n/states/ID.php:14 -msgid "Sumatera Utara" -msgstr "Sumatera Utara" - -# @ woocommerce -#: i18n/states/ID.php:15 -msgid "Sumatera Barat" -msgstr "Sumatera Barat" - -# @ woocommerce -#: i18n/states/ID.php:16 -msgid "Riau" -msgstr "Riau" - -# @ woocommerce -#: i18n/states/ID.php:17 -msgid "Kepulauan Riau" -msgstr "Kepulauan Riau" - -# @ woocommerce -#: i18n/states/ID.php:18 -msgid "Jambi" -msgstr "Jambi" - -# @ woocommerce -#: i18n/states/ID.php:19 -msgid "Sumatera Selatan" -msgstr "Sumatera Selatan" - -# @ woocommerce -#: i18n/states/ID.php:20 -msgid "Bangka Belitung" -msgstr "Bangka Belitung" - -# @ woocommerce -#: i18n/states/ID.php:21 -msgid "Bengkulu" -msgstr "Bengkulu" - -# @ woocommerce -#: i18n/states/ID.php:22 -msgid "Lampung" -msgstr "Lampung" - -# @ woocommerce -#: i18n/states/ID.php:23 -msgid "DKI Jakarta" -msgstr "DKI Jakarta" - -# @ woocommerce -#: i18n/states/ID.php:24 -msgid "Jawa Barat" -msgstr "Jawa Barat" - -# @ woocommerce -#: i18n/states/ID.php:25 -msgid "Banten" -msgstr "Banten" - -# @ woocommerce -#: i18n/states/ID.php:26 -msgid "Jawa Tengah" -msgstr "Jawa Tengah" - -# @ woocommerce -#: i18n/states/ID.php:27 -msgid "Jawa Timur" -msgstr "Jawa Timur" - -# @ woocommerce -#: i18n/states/ID.php:28 -msgid "Daerah Istimewa Yogyakarta" -msgstr "Daerah Istimewa Yogyakarta" - -# @ woocommerce -#: i18n/states/ID.php:29 -msgid "Bali" -msgstr "Bali" - -# @ woocommerce -#: i18n/states/ID.php:30 -msgid "Nusa Tenggara Barat" -msgstr "Nusa Tenggara Barat" - -# @ woocommerce -#: i18n/states/ID.php:31 -msgid "Nusa Tenggara Timur" -msgstr "Nusa Tenggara Timur" - -# @ woocommerce -#: i18n/states/ID.php:32 -msgid "Kalimantan Barat" -msgstr "Kalimantan Barat" - -# @ woocommerce -#: i18n/states/ID.php:33 -msgid "Kalimantan Tengah" -msgstr "Kalimantan Tengah" - -# @ woocommerce -#: i18n/states/ID.php:34 -msgid "Kalimantan Timur" -msgstr "Kalimantan Timur" - -# @ woocommerce -#: i18n/states/ID.php:35 -msgid "Kalimantan Selatan" -msgstr "Kalimantan Selatan" - -# @ woocommerce -#: i18n/states/ID.php:36 -msgid "Kalimantan Utara" -msgstr "Kalimantan Utara" - -# @ woocommerce -#: i18n/states/ID.php:37 -msgid "Sulawesi Utara" -msgstr "Sulawesi Utara" - -# @ woocommerce -#: i18n/states/ID.php:38 -msgid "Sulawesi Tengah" -msgstr "Sulawesi Tengah" - -# @ woocommerce -#: i18n/states/ID.php:39 -msgid "Sulawesi Tenggara" -msgstr "Sulawesi Tenggara" - -# @ woocommerce -#: i18n/states/ID.php:40 -msgid "Sulawesi Barat" -msgstr "Sulawesi Barat" - -# @ woocommerce -#: i18n/states/ID.php:41 -msgid "Sulawesi Selatan" -msgstr "Sulawesi Selatan" - -# @ woocommerce -#: i18n/states/ID.php:42 -msgid "Gorontalo" -msgstr "Gorontalo" - -# @ woocommerce -#: i18n/states/ID.php:43 -msgid "Maluku" -msgstr "Maluku" - -# @ woocommerce -#: i18n/states/ID.php:44 -msgid "Maluku Utara" -msgstr "Maluku Utara" - -# @ woocommerce -#: i18n/states/ID.php:45 -msgid "Papua" -msgstr "Papua" - -# @ woocommerce -#: i18n/states/ID.php:46 -msgid "Papua Barat" -msgstr "Papua Barat" - -# @ woocommerce -#: i18n/states/IN.php:13 -msgid "Andra Pradesh" -msgstr "Andra Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:14 -msgid "Arunachal Pradesh" -msgstr "Arunachal Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:15 -msgid "Assam" -msgstr "Assam" - -# @ woocommerce -#: i18n/states/IN.php:16 -msgid "Bihar" -msgstr "Bihar" - -# @ woocommerce -#: i18n/states/IN.php:17 -msgid "Chhattisgarh" -msgstr "Chhattisgarh" - -# @ woocommerce -#: i18n/states/IN.php:18 -msgid "Goa" -msgstr "Goa" - -# @ woocommerce -#: i18n/states/IN.php:19 -msgid "Gujarat" -msgstr "Gujarat" - -# @ woocommerce -#: i18n/states/IN.php:20 -msgid "Haryana" -msgstr "Haryana" - -# @ woocommerce -#: i18n/states/IN.php:21 -msgid "Himachal Pradesh" -msgstr "Himachal Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:22 -msgid "Jammu and Kashmir" -msgstr "Jammu and Kashmir" - -# @ woocommerce -#: i18n/states/IN.php:23 -msgid "Jharkhand" -msgstr "Jharkhand" - -# @ woocommerce -#: i18n/states/IN.php:24 -msgid "Karnataka" -msgstr "Karnataka" - -# @ woocommerce -#: i18n/states/IN.php:25 -msgid "Kerala" -msgstr "Kerala" - -# @ woocommerce -#: i18n/states/IN.php:26 -msgid "Madhya Pradesh" -msgstr "Madhya Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:27 -msgid "Maharashtra" -msgstr "Maharashtra" - -# @ woocommerce -#: i18n/states/IN.php:28 -msgid "Manipur" -msgstr "Manipur" - -# @ woocommerce -#: i18n/states/IN.php:29 -msgid "Meghalaya" -msgstr "Meghalaya" - -# @ woocommerce -#: i18n/states/IN.php:30 -msgid "Mizoram" -msgstr "Mizoram" - -# @ woocommerce -#: i18n/states/IN.php:31 -msgid "Nagaland" -msgstr "Nagaland" - -# @ woocommerce -#: i18n/states/IN.php:32 -msgid "Orissa" -msgstr "Orissa" - -# @ woocommerce -#: i18n/states/IN.php:33 -msgid "Punjab" -msgstr "Punjab" - -# @ woocommerce -#: i18n/states/IN.php:34 -msgid "Rajasthan" -msgstr "Rajasthan" - -# @ woocommerce -#: i18n/states/IN.php:35 -msgid "Sikkim" -msgstr "Sikkim" - -# @ woocommerce -#: i18n/states/IN.php:36 -msgid "Tamil Nadu" -msgstr "Tamil Nadu" - -# @ woocommerce -#: i18n/states/IN.php:37 -msgid "Tripura" -msgstr "Tripura" - -# @ woocommerce -#: i18n/states/IN.php:38 -msgid "Uttaranchal" -msgstr "Uttaranchal" - -# @ woocommerce -#: i18n/states/IN.php:39 -msgid "Uttar Pradesh" -msgstr "Uttar Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:40 -msgid "West Bengal" -msgstr "West Bengal" - -# @ woocommerce -#: i18n/states/IN.php:41 -msgid "Andaman and Nicobar Islands" -msgstr "Andaman and Nicobar Islands" - -# @ woocommerce -#: i18n/states/IN.php:42 -msgid "Chandigarh" -msgstr "Chandigarh" - -# @ woocommerce -#: i18n/states/IN.php:43 -msgid "Dadar and Nagar Haveli" -msgstr "Dadar and Nagar Haveli" - -# @ woocommerce -#: i18n/states/IN.php:44 -msgid "Daman and Diu" -msgstr "Daman and Diu" - -# @ woocommerce -#: i18n/states/IN.php:45 -msgid "Delhi" -msgstr "Delhi" - -# @ woocommerce -#: i18n/states/IN.php:46 -msgid "Lakshadeep" -msgstr "Lakshadeep" - -# @ woocommerce -#: i18n/states/IN.php:47 -msgid "Pondicherry (Puducherry)" -msgstr "Pondicherry (Puducherry)" - -# @ woocommerce -#: i18n/states/MY.php:13 -msgid "Johor" -msgstr "Johor" - -# @ woocommerce -#: i18n/states/MY.php:14 -msgid "Kedah" -msgstr "Kedah" - -# @ woocommerce -#: i18n/states/MY.php:15 -msgid "Kelantan" -msgstr "Kelantan" - -# @ woocommerce -#: i18n/states/MY.php:16 -msgid "Melaka" -msgstr "Melaka" - -# @ woocommerce -#: i18n/states/MY.php:17 -msgid "Negeri Sembilan" -msgstr "Negeri Sembilan" - -# @ woocommerce -#: i18n/states/MY.php:18 -msgid "Pahang" -msgstr "Pahang" - -# @ woocommerce -#: i18n/states/MY.php:19 -msgid "Perak" -msgstr "Perak" - -# @ woocommerce -#: i18n/states/MY.php:20 -msgid "Perlis" -msgstr "Perlis" - -# @ woocommerce -#: i18n/states/MY.php:21 -msgid "Pulau Pinang" -msgstr "Pulau Pinang" - -# @ woocommerce -#: i18n/states/MY.php:22 -msgid "Sabah" -msgstr "Sabah" - -# @ woocommerce -#: i18n/states/MY.php:23 -msgid "Sarawak" -msgstr "Sarawak" - -# @ woocommerce -#: i18n/states/MY.php:24 -msgid "Selangor" -msgstr "Selangor" - -# @ woocommerce -#: i18n/states/MY.php:25 -msgid "Terengganu" -msgstr "Terengganu" - -# @ woocommerce -#: i18n/states/MY.php:26 -msgid "W.P. Kuala Lumpur" -msgstr "W.P. Kuala Lumpur" - -# @ woocommerce -#: i18n/states/MY.php:27 -msgid "W.P. Labuan" -msgstr "W.P. Labuan" - -# @ woocommerce -#: i18n/states/MY.php:28 -msgid "W.P. Putrajaya" -msgstr "W.P. Putrajaya" - -# @ woocommerce -#: i18n/states/TH.php:13 -msgid "" -"Amnat Charoen (อำนาจเจร" -"ิญ)" -msgstr "" -"Amnat Charoen (อำนาจเจร" -"ิญ)" - -# @ woocommerce -#: i18n/states/TH.php:14 -msgid "Ang Thong (อ่างทอง)" -msgstr "Ang Thong (อ่างทอง)" - -# @ woocommerce -#: i18n/states/TH.php:15 -msgid "" -"Ayutthaya (พระนครศรี" -"อยุธยา)" -msgstr "" -"Ayutthaya (พระนครศรี" -"อยุธยา)" - -# @ woocommerce -#: i18n/states/TH.php:16 -msgid "" -"Bangkok (กรุงเทพมห" -"านคร)" -msgstr "" -"Bangkok (กรุงเทพมห" -"านคร)" - -# @ woocommerce -#: i18n/states/TH.php:17 -msgid "Bueng Kan (บึงกาฬ)" -msgstr "Bueng Kan (บึงกาฬ)" - -# @ woocommerce -#: i18n/states/TH.php:18 -msgid "" -"Buri Ram (บุรีรัมย์)" -msgstr "" -"Buri Ram (บุรีรัมย์)" - -# @ woocommerce -#: i18n/states/TH.php:19 -msgid "" -"Chachoengsao (ฉะเชิงเทร" -"า)" -msgstr "" -"Chachoengsao (ฉะเชิงเทร" -"า)" - -# @ woocommerce -#: i18n/states/TH.php:20 -msgid "Chai Nat (ชัยนาท)" -msgstr "Chai Nat (ชัยนาท)" - -# @ woocommerce -#: i18n/states/TH.php:21 -msgid "Chaiyaphum (ชัยภูมิ)" -msgstr "Chaiyaphum (ชัยภูมิ)" - -# @ woocommerce -#: i18n/states/TH.php:22 -msgid "Chanthaburi (จันทบุรี)" -msgstr "Chanthaburi (จันทบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:23 -msgid "" -"Chiang Mai (เชียงใหม่)" -msgstr "" -"Chiang Mai (เชียงใหม่)" - -# @ woocommerce -#: i18n/states/TH.php:24 -msgid "Chiang Rai (เชียงราย)" -msgstr "Chiang Rai (เชียงราย)" - -# @ woocommerce -#: i18n/states/TH.php:25 -msgid "Chonburi (ชลบุรี)" -msgstr "Chonburi (ชลบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:26 -msgid "Chumphon (ชุมพร)" -msgstr "Chumphon (ชุมพร)" - -# @ woocommerce -#: i18n/states/TH.php:27 -msgid "" -"Kalasin (กาฬสินธุ์)" -msgstr "" -"Kalasin (กาฬสินธุ์)" - -# @ woocommerce -#: i18n/states/TH.php:28 -msgid "" -"Kamphaeng Phet (กำแพงเพช" -"ร)" -msgstr "" -"Kamphaeng Phet (กำแพงเพช" -"ร)" - -# @ woocommerce -#: i18n/states/TH.php:29 -msgid "" -"Kanchanaburi (กาญจนบุร" -"ี)" -msgstr "" -"Kanchanaburi (กาญจนบุร" -"ี)" - -# @ woocommerce -#: i18n/states/TH.php:30 -msgid "Khon Kaen (ขอนแก่น)" -msgstr "Khon Kaen (ขอนแก่น)" - -# @ woocommerce -#: i18n/states/TH.php:31 -msgid "Krabi (กระบี่)" -msgstr "Krabi (กระบี่)" - -# @ woocommerce -#: i18n/states/TH.php:32 -msgid "Lampang (ลำปาง)" -msgstr "Lampang (ลำปาง)" - -# @ woocommerce -#: i18n/states/TH.php:33 -msgid "Lamphun (ลำพูน)" -msgstr "Lamphun (ลำพูน)" - -# @ woocommerce -#: i18n/states/TH.php:34 -msgid "Loei (เลย)" -msgstr "Loei (เลย)" - -# @ woocommerce -#: i18n/states/TH.php:35 -msgid "Lopburi (ลพบุรี)" -msgstr "Lopburi (ลพบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:36 -msgid "" -"Mae Hong Son (แม่ฮ่องสอ" -"น)" -msgstr "" -"Mae Hong Son (แม่ฮ่องสอ" -"น)" - -# @ woocommerce -#: i18n/states/TH.php:37 -msgid "" -"Maha Sarakham (มหาสารคา" -"ม)" -msgstr "" -"Maha Sarakham (มหาสารคา" -"ม)" - -# @ woocommerce -#: i18n/states/TH.php:38 -msgid "Mukdahan (มุกดาหาร)" -msgstr "Mukdahan (มุกดาหาร)" - -# @ woocommerce -#: i18n/states/TH.php:39 -msgid "Nakhon Nayok (นครนายก)" -msgstr "Nakhon Nayok (นครนายก)" - -# @ woocommerce -#: i18n/states/TH.php:40 -msgid "Nakhon Pathom (นครปฐม)" -msgstr "Nakhon Pathom (นครปฐม)" - -# @ woocommerce -#: i18n/states/TH.php:41 -msgid "Nakhon Phanom (นครพนม)" -msgstr "Nakhon Phanom (นครพนม)" - -# @ woocommerce -#: i18n/states/TH.php:42 -msgid "" -"Nakhon Ratchasima (นครราชสี" -"มา)" -msgstr "" -"Nakhon Ratchasima (นครราชสี" -"มา)" - -# @ woocommerce -#: i18n/states/TH.php:43 -msgid "" -"Nakhon Sawan (นครสวรรค" -"์)" -msgstr "" -"Nakhon Sawan (นครสวรรค" -"์)" - -# @ woocommerce -#: i18n/states/TH.php:44 -msgid "" -"Nakhon Si Thammarat (นครศรีธร" -"รมราช)" -msgstr "" -"Nakhon Si Thammarat (นครศรีธร" -"รมราช)" - -# @ woocommerce -#: i18n/states/TH.php:45 -msgid "Nan (น่าน)" -msgstr "Nan (น่าน)" - -# @ woocommerce -#: i18n/states/TH.php:46 -msgid "Narathiwat (นราธิวาส)" -msgstr "Narathiwat (นราธิวาส)" - -# @ woocommerce -#: i18n/states/TH.php:47 -msgid "" -"Nong Bua Lam Phu (หนองบัวล" -"ำภู)" -msgstr "" -"Nong Bua Lam Phu (หนองบัวล" -"ำภู)" - -# @ woocommerce -#: i18n/states/TH.php:48 -msgid "Nong Khai (หนองคาย)" -msgstr "Nong Khai (หนองคาย)" - -# @ woocommerce -#: i18n/states/TH.php:49 -msgid "Nonthaburi (นนทบุรี)" -msgstr "Nonthaburi (นนทบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:50 -msgid "Pathum Thani (ปทุมธานี)" -msgstr "" -"Pathum Thani (ปทุมธานี)" - -# @ woocommerce -#: i18n/states/TH.php:51 -msgid "Pattani (ปัตตานี)" -msgstr "Pattani (ปัตตานี)" - -# @ woocommerce -#: i18n/states/TH.php:52 -msgid "Phang Nga (พังงา)" -msgstr "Phang Nga (พังงา)" - -# @ woocommerce -#: i18n/states/TH.php:53 -msgid "Phatthalung (พัทลุง)" -msgstr "Phatthalung (พัทลุง)" - -# @ woocommerce -#: i18n/states/TH.php:54 -msgid "Phayao (พะเยา)" -msgstr "Phayao (พะเยา)" - -# @ woocommerce -#: i18n/states/TH.php:55 -msgid "" -"Phetchabun (เพชรบูรณ์)" -msgstr "" -"Phetchabun (เพชรบูรณ์)" - -# @ woocommerce -#: i18n/states/TH.php:56 -msgid "Phetchaburi (เพชรบุรี)" -msgstr "Phetchaburi (เพชรบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:57 -msgid "Phichit (พิจิตร)" -msgstr "Phichit (พิจิตร)" - -# @ woocommerce -#: i18n/states/TH.php:58 -msgid "Phitsanulok (พิษณุโลก)" -msgstr "Phitsanulok (พิษณุโลก)" - -# @ woocommerce -#: i18n/states/TH.php:59 -msgid "Phrae (แพร่)" -msgstr "Phrae (แพร่)" - -# @ woocommerce -#: i18n/states/TH.php:60 -msgid "Phuket (ภูเก็ต)" -msgstr "Phuket (ภูเก็ต)" - -# @ woocommerce -#: i18n/states/TH.php:61 -msgid "" -"Prachin Buri (ปราจีนบุร" -"ี)" -msgstr "" -"Prachin Buri (ปราจีนบุร" -"ี)" - -# @ woocommerce -#: i18n/states/TH.php:62 -msgid "" -"Prachuap Khiri Khan (ประจวบคี" -"รีขันธ์)" -msgstr "" -"Prachuap Khiri Khan (ประจวบคี" -"รีขันธ์)" - -# @ woocommerce -#: i18n/states/TH.php:63 -msgid "Ranong (ระนอง)" -msgstr "Ranong (ระนอง)" - -# @ woocommerce -#: i18n/states/TH.php:64 -msgid "Ratchaburi (ราชบุรี)" -msgstr "Ratchaburi (ราชบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:65 -msgid "Rayong (ระยอง)" -msgstr "Rayong (ระยอง)" - -# @ woocommerce -#: i18n/states/TH.php:66 -msgid "Roi Et (ร้อยเอ็ด)" -msgstr "Roi Et (ร้อยเอ็ด)" - -# @ woocommerce -#: i18n/states/TH.php:67 -msgid "Sa Kaeo (สระแก้ว)" -msgstr "Sa Kaeo (สระแก้ว)" - -# @ woocommerce -#: i18n/states/TH.php:68 -msgid "Sakon Nakhon (สกลนคร)" -msgstr "Sakon Nakhon (สกลนคร)" - -# @ woocommerce -#: i18n/states/TH.php:69 -msgid "" -"Samut Prakan (สมุทรปราก" -"าร)" -msgstr "" -"Samut Prakan (สมุทรปราก" -"าร)" - -# @ woocommerce -#: i18n/states/TH.php:70 -msgid "" -"Samut Sakhon (สมุทรสาค" -"ร)" -msgstr "" -"Samut Sakhon (สมุทรสาค" -"ร)" - -# @ woocommerce -#: i18n/states/TH.php:71 -msgid "" -"Samut Songkhram (สมุทรสงค" -"ราม)" -msgstr "" -"Samut Songkhram (สมุทรสงค" -"ราม)" - -# @ woocommerce -#: i18n/states/TH.php:72 -msgid "Saraburi (สระบุรี)" -msgstr "Saraburi (สระบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:73 -msgid "Satun (สตูล)" -msgstr "Satun (สตูล)" - -# @ woocommerce -#: i18n/states/TH.php:74 -msgid "" -"Sing Buri (สิงห์บุรี)" -msgstr "" -"Sing Buri (สิงห์บุรี)" - -# @ woocommerce -#: i18n/states/TH.php:75 -msgid "Sisaket (ศรีสะเกษ)" -msgstr "Sisaket (ศรีสะเกษ)" - -# @ woocommerce -#: i18n/states/TH.php:76 -msgid "Songkhla (สงขลา)" -msgstr "Songkhla (สงขลา)" - -# @ woocommerce -#: i18n/states/TH.php:77 -msgid "Sukhothai (สุโขทัย)" -msgstr "Sukhothai (สุโขทัย)" - -# @ woocommerce -#: i18n/states/TH.php:78 -msgid "" -"Suphan Buri (สุพรรณบุร" -"ี)" -msgstr "" -"Suphan Buri (สุพรรณบุร" -"ี)" - -# @ woocommerce -#: i18n/states/TH.php:79 -msgid "" -"Surat Thani (สุราษฎร์ธ" -"านี)" -msgstr "" -"Surat Thani (สุราษฎร์ธ" -"านี)" - -# @ woocommerce -#: i18n/states/TH.php:80 -msgid "Surin (สุรินทร์)" -msgstr "Surin (สุรินทร์)" - -# @ woocommerce -#: i18n/states/TH.php:81 -msgid "Tak (ตาก)" -msgstr "Tak (ตาก)" - -# @ woocommerce -#: i18n/states/TH.php:82 -msgid "Trang (ตรัง)" -msgstr "Trang (ตรัง)" - -# @ woocommerce -#: i18n/states/TH.php:83 -msgid "Trat (ตราด)" -msgstr "Trat (ตราด)" - -# @ woocommerce -#: i18n/states/TH.php:84 -msgid "" -"Ubon Ratchathani (อุบลราชธ" -"านี)" -msgstr "" -"Ubon Ratchathani (อุบลราชธ" -"านี)" - -# @ woocommerce -#: i18n/states/TH.php:85 -msgid "Udon Thani (อุดรธานี)" -msgstr "Udon Thani (อุดรธานี)" - -# @ woocommerce -#: i18n/states/TH.php:86 -msgid "" -"Uthai Thani (อุทัยธานี)" -msgstr "" -"Uthai Thani (อุทัยธานี)" - -# @ woocommerce -#: i18n/states/TH.php:87 -msgid "" -"Uttaradit (อุตรดิตถ์)" -msgstr "" -"Uttaradit (อุตรดิตถ์)" - -# @ woocommerce -#: i18n/states/TH.php:88 -msgid "Yala (ยะลา)" -msgstr "Yala (ยะลา)" - -# @ woocommerce -#: i18n/states/TH.php:89 -msgid "Yasothon (ยโสธร)" -msgstr "Yasothon (ยโสธร)" - -# @ woocommerce -#: i18n/states/US.php:64 -msgid "Armed Forces (AA)" -msgstr "Armed Forces (AA)" - -# @ woocommerce -#: i18n/states/US.php:65 -msgid "Armed Forces (AE)" -msgstr "Armed Forces (AE)" - -# @ woocommerce -#: i18n/states/US.php:66 -msgid "Armed Forces (AP)" -msgstr "Armed Forces (AP)" - -# @ woocommerce -#: i18n/states/US.php:72 -msgid "US Virgin Islands" -msgstr "US Virgin Islands" - -# @ woocommerce -#: i18n/states/ZA.php:13 -msgid "Eastern Cape" -msgstr "Eastern Cape" - -# @ woocommerce -#: i18n/states/ZA.php:14 -msgid "Free State" -msgstr "Svobodný stát" - -# @ woocommerce -#: i18n/states/ZA.php:15 -msgid "Gauteng" -msgstr "Gauteng" - -# @ woocommerce -#: i18n/states/ZA.php:16 -msgid "KwaZulu-Natal" -msgstr "KwaZulu-Natal" - -# @ woocommerce -#: i18n/states/ZA.php:17 -msgid "Limpopo" -msgstr "Limpopo" - -# @ woocommerce -#: i18n/states/ZA.php:18 -msgid "Mpumalanga" -msgstr "Mpumalanga" - -# @ woocommerce -#: i18n/states/ZA.php:19 -msgid "Northern Cape" -msgstr "Northern Cape" - -# @ woocommerce -#: i18n/states/ZA.php:20 -msgid "North West" -msgstr "North West" - -# @ woocommerce -#: i18n/states/ZA.php:21 -msgid "Western Cape" -msgstr "Western Cape" - -# @ woocommerce -#: templates/cart/cart.php:100 -#: templates/single-product/add-to-cart/quantity.php:12 -msgctxt "Product quantity input tooltip" -msgid "Qty" -msgstr "Množství" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:45 -#: templates/cart/shipping-calculator.php:51 -#: templates/cart/shipping-calculator.php:63 -msgid "State / county" -msgstr "Stát / země" - -# @ woocommerce -#: templates/cart/shipping-methods.php:32 -msgid "Free" -msgstr "Zdarma" - -# @ woocommerce -#: templates/cart/totals.php:121 -#, php-format -msgid " (taxes estimated for %s)" -msgstr " (daně odhadnuté na %s)" - -# @ woocommerce -#: templates/cart/totals.php:135 -msgid "" -"No shipping methods were found; please recalculate your shipping and enter " -"your state/county and zip/postcode to ensure there are no other available " -"methods for your location." -msgstr "" -"Nebyly zjištěny žádné způsoby dopravy; prosím přepočítejte dopravu a vložte " -"Vaší zemi a PSČ pro zjištění, že ve Vaší lokalitě nejsou žádné další " -"dostupné metody dopravy." - -# @ woocommerce -#: templates/checkout/form-login.php:14 -msgid "Returning customer?" -msgstr "Vracející se zákazník?" - -# @ woocommerce -#: templates/checkout/review-order.php:199 -msgid "I have read and accept the" -msgstr "Četl jsem a přijímám" - -# @ woocommerce -#: templates/emails/admin-new-order.php:13 -#: templates/emails/plain/admin-new-order.php:13 -#, php-format -msgid "You have received an order from %s. Their order is as follows:" -msgstr "Obdržel jste objednávku od %s. Pořadí je následující:" - -# @ woocommerce -#: templates/emails/admin-new-order.php:17 -#, php-format -msgid "Order: %s" -msgstr "Objednávka: %s" - -# @ woocommerce -#: templates/emails/customer-completed-order.php:14 -#: templates/emails/plain/customer-completed-order.php:13 -#, php-format -msgid "" -"Hi there. Your recent order on %s has been completed. Your order details are " -"shown below for your reference:" -msgstr "" -"Vaše poslední objednávka na %s byla dokončena. Detaily Vaší objednávky jsou " -"zobrazeny níže pro Váš přehled: " - -# @ woocommerce -#: templates/emails/customer-invoice.php:16 -#: templates/emails/plain/customer-invoice.php:14 -#, php-format -msgid "" -"An order has been created for you on %s. To pay for this order please use " -"the following link: %s" -msgstr "" -"Objednávka byla pro Vás vytvořena na %s. Pro zaplacení této objednávky " -"prosím použijte následující odkaz: %s." - -# @ woocommerce -#: templates/emails/customer-invoice.php:16 -msgid "pay" -msgstr "zaplatit" - -# @ woocommerce -#: templates/emails/customer-processing-order.php:14 -#: templates/emails/plain/customer-processing-order.php:13 -msgid "" -"Your order has been received and is now being processed. Your order details " -"are shown below for your reference:" -msgstr "" -"Vaše objednávka byla přijata a nyní je v procesu vyřizování. Detaily Vaší " -"objednávky jsou zobrazeny níže pro Váš přehled:" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:14 -#: templates/emails/plain/customer-reset-password.php:13 -msgid "Someone requested that the password be reset for the following account:" -msgstr "" -"Někdo požádal, aby bylo heslo resetováno pro následující uživatelský účet:" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:15 -#: templates/emails/plain/customer-reset-password.php:15 -#, php-format -msgid "Username: %s" -msgstr "Uživatel: %s" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:16 -#: templates/emails/plain/customer-reset-password.php:16 -msgid "If this was a mistake, just ignore this email and nothing will happen." -msgstr "Pokud je tento e-mail chybný, ignorujte jej prosím, nic se nestane." - -# @ woocommerce -#: templates/emails/customer-reset-password.php:17 -#: templates/emails/plain/customer-reset-password.php:17 -msgid "To reset your password, visit the following address:" -msgstr "Pro reset Vašeho hesla navštivte následující adresu:" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:20 -msgid "Click here to reset your password" -msgstr "Klikněte zde pro reset Vašeho hesla" - -# @ woocommerce -#: templates/emails/email-order-items.php:47 -#, php-format -msgid "Download %d:" -msgstr "Stáhnout %d:" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:19 -#: templates/emails/plain/customer-completed-order.php:19 -#: templates/emails/plain/customer-invoice.php:20 -#: templates/emails/plain/customer-note.php:27 -#: templates/emails/plain/customer-processing-order.php:19 -#, php-format -msgid "Order number: %s" -msgstr "Číslo objednávky: %s" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:20 -#: templates/emails/plain/customer-completed-order.php:20 -#: templates/emails/plain/customer-invoice.php:21 -#: templates/emails/plain/customer-note.php:28 -#: templates/emails/plain/customer-processing-order.php:20 -#, php-format -msgid "Order date: %s" -msgstr "Datum objednávky: %s" - -# @ woocommerce -#: templates/emails/plain/customer-completed-order.php:38 -#: templates/emails/plain/customer-note.php:46 -#: templates/emails/plain/customer-processing-order.php:38 -msgid "Your details" -msgstr "Vaše detaily" - -# @ woocommerce -#: templates/emails/plain/email-order-items.php:28 -#, php-format -msgid "Quantity: %s" -msgstr "Množství: %s" - -# @ woocommerce -#: templates/emails/plain/email-order-items.php:31 -#, php-format -msgid "Cost: %s" -msgstr "Cena: %s" - -# @ woocommerce -#: templates/loop/orderby.php:22 -msgid "Sort by popularity" -msgstr "Seřadit podle oblíbenosti" - -# @ woocommerce -#: templates/loop/orderby.php:23 -msgid "Sort by average rating" -msgstr "Sřadit podle průměrného hodnocení" - -# @ woocommerce -#: templates/loop/orderby.php:24 -msgid "Sort by newness" -msgstr "Seřadit podle stáří" - -# @ woocommerce -#: templates/loop/orderby.php:25 -msgid "Sort by price: low to high" -msgstr "Seřadit podle ceny: od nejnižší k nejvyšší" - -# @ woocommerce -#: templates/loop/orderby.php:26 -msgid "Sort by price: high to low" -msgstr "Sřadit podle ceny: od nejvyšší k nejnižší" - -# @ woocommerce -#: templates/loop/result-count.php:28 -msgid "Showing the single result" -msgstr "Zobrazení jediného výsledku" - -# @ woocommerce -#: templates/loop/result-count.php:30 -#, php-format -msgid "Showing all %d results" -msgstr "Zobrazení všech %d výsledků" - -# @ woocommerce -#: templates/loop/result-count.php:32 -#, php-format -msgctxt "%1$d = first, %2$d = last, %3$d = total" -msgid "Showing %1$d–%2$d of %3$d results" -msgstr "Zobrazení %1$d–%2$d z %3$d výsledků" - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:22 -msgid "" -"Lost your password? Please enter your username or email address. You will " -"receive a link to create a new password via email." -msgstr "" -"Zapomněli jste heslo? Vložte prosím vaše uživatelské jméno nebo e-mailovou " -"adresu. E-mailem obdržíte odkaz pro vytvoření nového hesla." - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:28 -msgid "Enter a new password below." -msgstr "Vložte níže nové heslo." - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:45 -msgid "Reset Password" -msgstr "Resetovat heslo" - -# @ woocommerce -#: templates/myaccount/my-address.php:17 -msgid "My Addresses" -msgstr "Moje adresa" - -# @ woocommerce -#: templates/myaccount/my-address.php:64 -msgid "You have not set up this type of address yet." -msgstr "Ještě jste nenastavil tento typ adresy." - -# @ woocommerce -#: templates/myaccount/my-downloads.php:27 -#, php-format -msgid "%s download remaining" -msgid_plural "%s downloads remaining" -msgstr[0] "%s stažení zbývá" -msgstr[1] "%s stažení zbývá" -msgstr[2] "%s stažení zbývá" - -# @ woocommerce -#: templates/myaccount/my-orders.php:62 -#, php-format -msgid "%s for %s item" -msgid_plural "%s for %s items" -msgstr[0] "%s za %s položku" -msgstr[1] "%s za %s položky" -msgstr[2] "%s za %s položek" - -# @ woocommerce -#: templates/order/form-tracking.php:23 -msgid "Track" -msgstr "Sledovat" - -# @ woocommerce -#: templates/single-product/meta.php:24 -msgid "Category:" -msgid_plural "Categories:" -msgstr[0] "Kategorie:" -msgstr[1] "Kategorie:" -msgstr[2] "Kategorií:" - -# @ woocommerce -#: templates/single-product/meta.php:29 -msgid "Tag:" -msgid_plural "Tags:" -msgstr[0] "Štítek:" -msgstr[1] "Štítky:" -msgstr[2] "Štítků:" - -# @ woocommerce -#: templates/single-product/review.php:26 -#, php-format -msgid "Rated %d out of 5" -msgstr "Hodnoceno %d z 5" - -# @ woocommerce -#: templates/single-product-reviews.php:63 -msgid "Add Your Review" -msgstr "Přidat Vaše hodnocení" - -# @ woocommerce -#: woocommerce-ajax.php:1100 -msgid "" -"No products had their stock reduced - they may not have stock management " -"enabled." -msgstr "" - -# @ woocommerce -#: woocommerce-ajax.php:1152 -msgid "" -"No products had their stock increased - they may not have stock management " -"enabled." -msgstr "" - -# @ woocommerce -#: woocommerce-ajax.php:1173 -msgid "Value" -msgstr "Hodnota" - -# @ woocommerce -#: woocommerce-core-functions.php:275 -#, php-format -msgid "%s – %s%s" -msgstr "%s – %s%s" - -# @ woocommerce -#: woocommerce-core-functions.php:698 -msgid "Australian Dollars" -msgstr "Australské Dolary" - -# @ woocommerce -#: woocommerce-core-functions.php:699 -msgid "Brazilian Real" -msgstr "Brazilský Real" - -# @ woocommerce -#: woocommerce-core-functions.php:700 -msgid "Canadian Dollars" -msgstr "Kanadské Dolary" - -# @ woocommerce -#: woocommerce-core-functions.php:701 -msgid "Chinese Yuan" -msgstr "Čínský Yuan" - -# @ woocommerce -#: woocommerce-core-functions.php:702 -msgid "Czech Koruna" -msgstr "Česká Koruna" - -# @ woocommerce -#: woocommerce-core-functions.php:704 -msgid "Euros" -msgstr "Eura" - -# @ woocommerce -#: woocommerce-core-functions.php:705 -msgid "Hong Kong Dollar" -msgstr "Hong Kong Dollar" - -# @ woocommerce -#: woocommerce-core-functions.php:707 -msgid "Indonesia Rupiah" -msgstr "Indonesia Rupiah" - -# @ woocommerce -#: woocommerce-core-functions.php:710 -msgid "Japanese Yen" -msgstr "Japonský Yen" - -# @ woocommerce -#: woocommerce-core-functions.php:712 -msgid "Malaysian Ringgits" -msgstr "Malaysian Ringgits" - -# @ woocommerce -#: woocommerce-core-functions.php:713 -msgid "Mexican Peso" -msgstr "Mexické Peso" - -# @ woocommerce -#: woocommerce-core-functions.php:715 -msgid "New Zealand Dollar" -msgstr "Novozélandský Dolar" - -# @ woocommerce -#: woocommerce-core-functions.php:718 -msgid "Pounds Sterling" -msgstr "libra" - -# @ woocommerce -#: woocommerce-core-functions.php:719 -msgid "Romanian Leu" -msgstr "Rumunský leu" - -# @ woocommerce -#: woocommerce-core-functions.php:721 -msgid "Singapore Dollar" -msgstr "Singapurský Dolar" - -# @ woocommerce -#: woocommerce-core-functions.php:722 -msgid "South African rand" -msgstr "Jihoafrický rand" - -# @ woocommerce -#: woocommerce-core-functions.php:727 -msgid "Turkish Lira" -msgstr "Turecká Lira" - -# @ woocommerce -#: woocommerce-core-functions.php:728 -msgid "US Dollars" -msgstr "Americké Dolary" - -# @ woocommerce -#: woocommerce-core-functions.php:1369 -msgctxt "slug" -msgid "uncategorized" -msgstr "nezeřazené" - -# @ woocommerce -#: woocommerce-core-functions.php:2502 -msgid "Unpaid order cancelled - time limit reached." -msgstr "Nezaplacená objednávka zrušena - vypršel časový limit." - -# @ woocommerce -#: woocommerce-functions.php:406 -msgid "" -"Please choose the quantity of items you wish to add to your cart…" -msgstr "" -"Zvolte prosím množství položek, které si přejete přidat do košíku…" - -# @ woocommerce -#: woocommerce-functions.php:413 -msgid "Please choose a product to add to your cart…" -msgstr "Zvolte prosím produkt pro přidání do Vašeho košíku…" - -# @ woocommerce -#: woocommerce-functions.php:482 -#, php-format -msgid "Added "%s" to your cart." -msgstr "Přidáno "%s" do Vašeho košíku." - -# @ woocommerce -#: woocommerce-functions.php:482 -msgid "" and "" -msgstr "" a "" - -# @ woocommerce -#: woocommerce-functions.php:485 -#, php-format -msgid ""%s" was successfully added to your cart." -msgstr ""%s" bylo úspěšně přidáno do košíku." - -# @ woocommerce -#: woocommerce-functions.php:985 -msgid "Product no longer exists." -msgstr "Produkt již neexistuje." - -# @ woocommerce -#: woocommerce-functions.php:1028 -msgid "No file defined" -msgstr "Žádný soubor definován" - -# @ woocommerce -#: woocommerce-functions.php:1641 -msgid "Password changed successfully." -msgstr "Heslo úspěšně změněno." - -# @ woocommerce -#: woocommerce-functions.php:1717 -msgid "Address changed successfully." -msgstr "Adresa úspěšně změněna." - -# @ woocommerce -#: woocommerce-template.php:767 -#, php-format -msgid "Reviews (%d)" -msgstr "Hodnocení (%d)" - -# @ woocommerce -#: woocommerce.php:1208 -msgid "" -"Sorry, no products matched your selection. Please choose a different " -"combination." -msgstr "" -"Omlouváme se, žádné produkty neodpovídají Vašemu výběru. Zvolte prosím jinou " -"kombinaci." - -# @ woocommerce -#: admin/post-types/shop_coupon.php:149 -msgid "Show all types" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Value of the coupon." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "Email restrictions" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "No restrictions" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "" -"List of emails to check against the customer's billing email when an order " -"is placed." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:413 -msgid "Pipe (|) separate terms" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:259 -msgid "is available" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:418 -msgid "Theme" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:424 -msgid "Theme Name" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:431 -msgid "Theme Version" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:437 -msgid "Author URL" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:585 -msgid "Customer Sessions" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:586 -msgid "Clear all sessions" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:587 -msgid "" -"Warning This tool will delete all customer " -"session data from the database, including any current live carts." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:365 -msgid "Edit Class" -msgstr "" - -# @ woocommerce -#: classes/class-wc-cache-helper.php:92 -#, php-format -msgid "" -"In order for database caching to work with WooCommerce you " -"must add _wc_session_ to the \"Ignored Query Strings\" option " -"in W3 Total Cache settings here." -msgstr "" - -# @ woocommerce -#: classes/class-wc-checkout.php:79 -msgid "Confirm password" -msgstr "" - -# @ woocommerce -#: classes/class-wc-checkout.php:80 -msgctxt "placeholder" -msgid "Confirm password" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:277 -msgid "Western Samoa" -msgstr "" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:152 -msgid "Pay securely with your credit card." -msgstr "" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:147 -msgid "Receiver Email" -msgstr "" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:149 -msgid "" -"If this differs from the email entered above, input your main receiver email " -"for your PayPal account. This is used to validate IPN requests." -msgstr "" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:213 -#, php-format -msgid "" -"Log PayPal events, such as IPN requests, inside woocommerce/logs/" -"paypal-%s.txt" -msgstr "" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:658 -#, php-format -msgid "" -"Validation error: PayPal IPN response from a different email address (%s)." -msgstr "" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:679 -#, php-format -msgid "Payment pending: %s" -msgstr "" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:69 -msgid "Set Domain Name" -msgstr "" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:70 -#, php-format -msgid "" -"(Optional) Sets the _setDomainName variable. See " -"here for more information." -msgstr "" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:128 -msgid "Additional Rates" -msgstr "" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:130 -msgid "" -"Optional extra shipping options with additional costs (one per line): Option " -"Name | Additional Cost | Per Cost Type (order, class, or item) Example: " -"Priority Mail | 6.95 | order." -msgstr "" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:133 -msgid "Option Name | Additional Cost | Per Cost Type (order, class, or item)" -msgstr "" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:136 -msgid "Additional Costs" -msgstr "" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:138 -msgid "" -"Additional costs can be added below - these will all be added to the per-" -"order cost above." -msgstr "" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:141 -msgid "Costs Added..." -msgstr "" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:154 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:120 -msgid "Minimum Handling Fee" -msgstr "" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:479 -msgid "Costs" -msgstr "" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:492 -msgid "+ Add Cost" -msgstr "" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:492 -msgid "Delete selected costs" -msgstr "" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:498 -msgid "Any class" -msgstr "" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:90 -msgid "Cost Added..." -msgstr "" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-checkout.php:45 -#, php-format -msgid "" -"WooCommerce Config Error: The checkout thanks/pay pages are missing - these " -"pages are required for the checkout to function correctly. Please configure " -"the pages here." -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:13 -msgid "A Coruña" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:14 -msgid "Álava" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:15 -msgid "Albacete" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:16 -msgid "Alicante" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:17 -msgid "Almería" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:18 -msgid "Asturias" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:19 -msgid "Ávila" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:20 -msgid "Badajoz" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:21 -msgid "Baleares" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:22 -msgid "Barcelona" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:23 -msgid "Burgos" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:24 -msgid "Cáceres" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:25 -msgid "Cádiz" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:26 -msgid "Cantabria" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:27 -msgid "Castellón" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:28 -msgid "Ceuta" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:29 -msgid "Ciudad Real" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:30 -msgid "Córdoba" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:31 -msgid "Cuenca" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:32 -msgid "Girona" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:33 -msgid "Granada" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:34 -msgid "Guadalajara" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:35 -msgid "Guipúzcoa" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:36 -msgid "Huelva" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:37 -msgid "Huesca" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:38 -msgid "Jaén" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:39 -msgid "La Rioja" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:40 -msgid "Las Palmas" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:41 -msgid "León" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:42 -msgid "Lleida" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:43 -msgid "Lugo" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:44 -msgid "Madrid" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:45 -msgid "Málaga" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:46 -msgid "Melilla" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:47 -msgid "Murcia" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:48 -msgid "Navarra" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:49 -msgid "Ourense" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:50 -msgid "Palencia" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:51 -msgid "Pontevedra" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:52 -msgid "Salamanca" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:53 -msgid "Santa Cruz de Tenerife" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:54 -msgid "Segovia" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:55 -msgid "Sevilla" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:56 -msgid "Soria" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:57 -msgid "Tarragona" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:58 -msgid "Teruel" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:59 -msgid "Toledo" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:60 -msgid "Valencia" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:61 -msgid "Valladolid" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:62 -msgid "Vizcaya" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:63 -msgid "Zamora" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:64 -msgid "Zaragoza" -msgstr "" - -# @ woocommerce -#: templates/order/order-details.php:64 -#, php-format -msgid "Download file%s" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:708 -msgid "Indian Rupee" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:711 -msgid "South Korean Won" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:720 -msgid "Russian Ruble" -msgstr "" - -# @ woocommerce -#: woocommerce-functions.php:664 woocommerce-functions.php:666 -#: woocommerce-functions.php:674 -msgid "Error" -msgstr "" - -# @ woocommerce -#: woocommerce-functions.php:674 -msgid "A user could not be found with this email address." -msgstr "" - -# @ woocommerce -#. translators: plugin header field 'Version' -#: woocommerce.php:0 -msgid "2.0.13" -msgstr "" - -# @ woocommerce -#: woocommerce.php:172 -msgid "Premium Support" -msgstr "" diff --git a/i18n/languages/woocommerce-da_DK.mo b/i18n/languages/woocommerce-da_DK.mo deleted file mode 100644 index 6c9d1803efe..00000000000 Binary files a/i18n/languages/woocommerce-da_DK.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-da_DK.po b/i18n/languages/woocommerce-da_DK.po deleted file mode 100644 index 5f08767d00a..00000000000 --- a/i18n/languages/woocommerce-da_DK.po +++ /dev/null @@ -1,13650 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce v2.0.0\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-01-09 09:36:51+00:00\n" -"PO-Revision-Date: 2013-11-24 09:18:10-0600\n" -"Last-Translator: Daniel Carlsen \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Poedit 1.5.7\n" -"X-Poedit-Language: \n" -"X-Poedit-Country: \n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n" -"X-Poedit-Basepath: ../../\n" -"X-Poedit-Bookmarks: \n" -"X-Poedit-SearchPath-0: .\n" -"X-Textdomain-Support: yes" - -#: assets/js/admin/editor_plugin_lang.php:5 -#@ woocommerce -msgid "Insert Shortcode" -msgstr "Indsæt shortcode" - -#: assets/js/admin/editor_plugin_lang.php:6 -#, fuzzy -#@ woocommerce -msgid "Product price/cart button" -msgstr "Produktbeskrivelse" - -#: assets/js/admin/editor_plugin_lang.php:7 -#, fuzzy -#@ woocommerce -msgid "Product by SKU/ID" -msgstr "Produkt varenummer:" - -#: assets/js/admin/editor_plugin_lang.php:8 -#, fuzzy -#@ woocommerce -msgid "Products by SKU/ID" -msgstr "Produkt varenummer:" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:116 -#: assets/js/admin/editor_plugin_lang.php:9 -#, fuzzy -#@ woocommerce -msgid "Product categories" -msgstr "Produktkategorier" - -#: assets/js/admin/editor_plugin_lang.php:10 -#, fuzzy -#@ woocommerce -msgid "Products by category slug" -msgstr "Produkt kategori slug" - -#: assets/js/admin/editor_plugin_lang.php:11 -#, fuzzy -#@ woocommerce -msgid "Recent products" -msgstr "Nye produkter" - -#: assets/js/admin/editor_plugin_lang.php:12 -#, fuzzy -#@ woocommerce -msgid "Featured products" -msgstr "Udvalgte produkter" - -#: assets/js/admin/editor_plugin_lang.php:13 -#, fuzzy -#@ woocommerce -msgid "Shop Messages" -msgstr "Butik side" - -#: admin/woocommerce-admin-content.php:45 -#: admin/woocommerce-admin-settings.php:182 -#: assets/js/admin/editor_plugin_lang.php:14 -#@ woocommerce -msgid "Pages" -msgstr "Sider" - -#: admin/woocommerce-admin-install.php:195 -#: admin/woocommerce-admin-status.php:277 -#: assets/js/admin/editor_plugin_lang.php:15 -#: classes/widgets/class-wc-widget-cart.php:61 -#@ woocommerce -msgid "Cart" -msgstr "Kurv" - -#: admin/settings/settings-init.php:114 -#: admin/woocommerce-admin-install.php:198 -#: admin/woocommerce-admin-status.php:281 -#: assets/js/admin/editor_plugin_lang.php:16 -#@ woocommerce -msgid "Checkout" -msgstr "Kasse" - -#: assets/js/admin/editor_plugin_lang.php:17 -#, fuzzy -#@ woocommerce -msgid "Order tracking" -msgstr "ordre-tracking" - -#: admin/woocommerce-admin-install.php:201 -#: admin/woocommerce-admin-status.php:293 -#: assets/js/admin/editor_plugin_lang.php:18 -#: templates/checkout/thankyou.php:30 -#@ woocommerce -msgid "My Account" -msgstr "Min konto" - -#: admin/woocommerce-admin-status.php:297 -#: assets/js/admin/editor_plugin_lang.php:19 -#, fuzzy -#@ woocommerce -msgid "Edit Address" -msgstr "Rediger min adresse" - -#: admin/woocommerce-admin-install.php:213 -#: admin/woocommerce-admin-status.php:305 -#: assets/js/admin/editor_plugin_lang.php:20 -#@ woocommerce -msgid "Change Password" -msgstr "Skift adgangskode" - -#: admin/woocommerce-admin-install.php:210 -#: admin/woocommerce-admin-status.php:301 -#: assets/js/admin/editor_plugin_lang.php:21 woocommerce.php:1031 -#: woocommerce.php:1032 -#@ woocommerce -msgid "View Order" -msgstr "Vis ordre" - -#: admin/woocommerce-admin-status.php:285 -#: assets/js/admin/editor_plugin_lang.php:22 -#: templates/checkout/thankyou.php:28 templates/myaccount/my-orders.php:71 -#@ woocommerce -msgid "Pay" -msgstr "Betal" - -#: assets/js/admin/editor_plugin_lang.php:23 -#@ woocommerce -msgid "Thankyou" -msgstr "Tak" - -#: classes/abstracts/abstract-wc-email.php:421 -#: classes/emails/class-wc-email-customer-completed-order.php:135 -#: classes/emails/class-wc-email-customer-invoice.php:138 -#: classes/emails/class-wc-email-new-order.php:115 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:63 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:57 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:158 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:119 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:77 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:75 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:52 -#@ woocommerce -msgid "Enable/Disable" -msgstr "Aktiver/Deaktiver" - -#: classes/abstracts/abstract-wc-email.php:423 -#: classes/emails/class-wc-email-customer-completed-order.php:137 -#: classes/emails/class-wc-email-customer-invoice.php:140 -#: classes/emails/class-wc-email-new-order.php:117 -#, fuzzy -#@ woocommerce -msgid "Enable this email notification" -msgstr "Aktiver lav lagerstatus meddelelser" - -#: classes/abstracts/abstract-wc-email.php:427 -#: classes/emails/class-wc-email-customer-invoice.php:144 -#, fuzzy -#@ woocommerce -msgid "Email subject" -msgstr "E-mails" - -#: classes/abstracts/abstract-wc-email.php:429 -#: classes/abstracts/abstract-wc-email.php:436 -#: classes/emails/class-wc-email-customer-completed-order.php:143 -#: classes/emails/class-wc-email-customer-completed-order.php:150 -#: classes/emails/class-wc-email-customer-completed-order.php:157 -#: classes/emails/class-wc-email-customer-completed-order.php:164 -#: classes/emails/class-wc-email-customer-invoice.php:146 -#: classes/emails/class-wc-email-customer-invoice.php:153 -#: classes/emails/class-wc-email-customer-invoice.php:160 -#: classes/emails/class-wc-email-customer-invoice.php:167 -#, php-format -#@ woocommerce -msgid "Defaults to %s" -msgstr "Standard er %s" - -#: classes/abstracts/abstract-wc-email.php:434 -#: classes/emails/class-wc-email-customer-invoice.php:151 -#, fuzzy -#@ woocommerce -msgid "Email heading" -msgstr "E-mail forhåndsvisning" - -#: classes/abstracts/abstract-wc-email.php:441 -#: classes/emails/class-wc-email-customer-completed-order.php:169 -#: classes/emails/class-wc-email-customer-invoice.php:172 -#: classes/emails/class-wc-email-new-order.php:142 -#, fuzzy -#@ woocommerce -msgid "Email type" -msgstr "E-mail template" - -#: classes/abstracts/abstract-wc-email.php:443 -#: classes/emails/class-wc-email-customer-completed-order.php:171 -#: classes/emails/class-wc-email-customer-invoice.php:174 -#: classes/emails/class-wc-email-new-order.php:144 -#@ woocommerce -msgid "Choose which format of email to send." -msgstr "Vælg hvilken type e-mail, du vil sende." - -#: classes/abstracts/abstract-wc-email.php:447 -#: classes/emails/class-wc-email-customer-completed-order.php:175 -#: classes/emails/class-wc-email-customer-invoice.php:178 -#: classes/emails/class-wc-email-new-order.php:148 -#@ woocommerce -msgid "Plain text" -msgstr "Ren tekst" - -#: classes/abstracts/abstract-wc-email.php:448 -#: classes/emails/class-wc-email-customer-completed-order.php:176 -#: classes/emails/class-wc-email-customer-invoice.php:179 -#: classes/emails/class-wc-email-new-order.php:149 -#@ woocommerce -msgid "HTML" -msgstr "HTML" - -#: classes/abstracts/abstract-wc-email.php:449 -#: classes/emails/class-wc-email-customer-completed-order.php:177 -#: classes/emails/class-wc-email-customer-invoice.php:180 -#: classes/emails/class-wc-email-new-order.php:150 -#@ woocommerce -msgid "Multipart" -msgstr "Multipart" - -#: classes/abstracts/abstract-wc-email.php:485 -#: classes/abstracts/abstract-wc-email.php:506 -#@ woocommerce -msgid "Could not write to template file." -msgstr "Kunne ikke skrive til skabelonfil." - -#: classes/abstracts/abstract-wc-email.php:533 -#@ woocommerce -msgid "Template file copied to theme." -msgstr "Skabelonfil kopieret til tema." - -#: classes/abstracts/abstract-wc-email.php:542 -#@ woocommerce -msgid "Template file deleted from theme." -msgstr "Skabelonfil slettet fra tema." - -#: admin/includes/welcome.php:146 admin/woocommerce-admin-content.php:41 -#: admin/woocommerce-admin-init.php:86 admin/woocommerce-admin-status.php:252 -#: classes/abstracts/abstract-wc-email.php:550 -#: classes/abstracts/abstract-wc-integration.php:30 -#: classes/abstracts/abstract-wc-settings-api.php:39 -#@ woocommerce -msgid "Settings" -msgstr "Indstillinger" - -#: classes/abstracts/abstract-wc-email.php:562 -#, fuzzy -#@ woocommerce -msgid "HTML template" -msgstr "E-mail template" - -#: classes/abstracts/abstract-wc-email.php:563 -#, fuzzy -#@ woocommerce -msgid "Plain text template" -msgstr "E-mail template" - -#: classes/abstracts/abstract-wc-email.php:582 -#, fuzzy -#@ woocommerce -msgid "Delete template file" -msgstr "Slet produkt" - -#: classes/abstracts/abstract-wc-email.php:585 -#, php-format -#@ woocommerce -msgid "This template has been overridden by your theme and can be found in: %s." -msgstr "Denne skabelon er blevet overskrevet af dit tema og kan derfor blive fundet i %s." - -#: classes/abstracts/abstract-wc-email.php:600 -#@ woocommerce -msgid "Copy file to theme" -msgstr "Kopier fil til tema" - -#: classes/abstracts/abstract-wc-email.php:603 -#, php-format -#@ woocommerce -msgid "To override and edit this email template copy %s to your theme folder: %s." -msgstr "For at overskrive og redigere denne e-mailskabelon kopier %s til din temafolder: %s." - -#: classes/abstracts/abstract-wc-email.php:614 -#, fuzzy -#@ woocommerce -msgid "File was not found." -msgstr "Filen blev ikke fundet" - -#: classes/abstracts/abstract-wc-email.php:639 -#, fuzzy -#@ woocommerce -msgid "View template" -msgstr "E-mail template" - -#: classes/abstracts/abstract-wc-email.php:640 -#, fuzzy -#@ woocommerce -msgid "Hide template" -msgstr "E-mail template" - -#: classes/abstracts/abstract-wc-email.php:651 -#, fuzzy -#@ woocommerce -msgid "Are you sure you want to delete this template file?" -msgstr "Er du sikker på, at du vil slette denne egenskab?" - -#: admin/post-types/product.php:262 admin/post-types/product.php:641 -#: admin/post-types/product.php:928 -#: admin/post-types/writepanels/writepanel-product_data.php:231 -#: classes/abstracts/abstract-wc-product.php:545 -#: classes/abstracts/abstract-wc-product.php:550 -#: classes/abstracts/abstract-wc-product.php:569 -#@ woocommerce -msgid "In stock" -msgstr "På lager" - -#: classes/abstracts/abstract-wc-product.php:550 -#, php-format -#@ woocommerce -msgid "Only %s left in stock" -msgstr "Kun %s tilbage på lager" - -#: classes/abstracts/abstract-wc-product.php:553 -#, php-format -#@ woocommerce -msgid "%s in stock" -msgstr "%s på lager" - -#: classes/abstracts/abstract-wc-product.php:560 -#@ woocommerce -msgid "(backorders allowed)" -msgstr "(restordrer tilladt)" - -#: classes/abstracts/abstract-wc-product.php:566 -#: classes/abstracts/abstract-wc-product.php:579 templates/cart/cart.php:76 -#@ woocommerce -msgid "Available on backorder" -msgstr "Findes på restordre" - -#: admin/post-types/product.php:264 admin/post-types/product.php:642 -#: admin/post-types/product.php:929 -#: admin/post-types/writepanels/writepanel-product_data.php:232 -#: admin/woocommerce-admin-reports.php:2103 -#: classes/abstracts/abstract-wc-product.php:572 -#: classes/abstracts/abstract-wc-product.php:582 -#: classes/abstracts/abstract-wc-product.php:586 -#@ woocommerce -msgid "Out of stock" -msgstr "Ikke på lager" - -#: classes/abstracts/abstract-wc-product.php:849 -#: classes/abstracts/abstract-wc-product.php:855 -#: classes/class-wc-cart.php:1743 classes/class-wc-order.php:863 -#: classes/class-wc-product-variable.php:274 -#: classes/class-wc-product-variable.php:283 -#: classes/class-wc-product-variation.php:246 -#@ woocommerce -msgid "Free!" -msgstr "Gratis!" - -#: classes/abstracts/abstract-wc-product.php:873 -#@ woocommerce -msgctxt "min_price" -msgid "From:" -msgstr "Fra:" - -#: classes/abstracts/abstract-wc-product.php:965 -#: templates/single-product-reviews.php:43 -#, php-format -#@ woocommerce -msgid "Rated %s out of 5" -msgstr "Vurderet %s ud af 5" - -#: admin/woocommerce-admin-dashboard.php:279 -#: classes/abstracts/abstract-wc-product.php:967 -#: templates/single-product/review.php:27 -#: templates/single-product-reviews.php:43 -#@ woocommerce -msgid "out of 5" -msgstr "ud af 5" - -#: classes/class-wc-coupon.php:447 -#, php-format -#@ woocommerce -msgid "Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from your order." -msgstr "Beklager, det lader til at kupon \"%s\" er ugyldig - den er nu fjernet fra din ordre." - -#: classes/class-wc-coupon.php:450 -#, php-format -#@ woocommerce -msgid "Sorry, it seems the coupon \"%s\" is not yours - it has now been removed from your order." -msgstr "Beklager, det ser ud til, at kuponen \"%s\" ikke er din - den er nu blevet fjernet fra din ordre." - -#: classes/class-wc-cart.php:464 -#, php-format -#@ woocommerce -msgid "Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in stock). Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Beklager, vi har ikke nok \"%s\" på lager til at opfylde din bestilling (%s på lager). Rediger venligst din kurv og prøv igen. Vi undskylder for ulejligheden." - -#: classes/class-wc-cart.php:483 classes/class-wc-cart.php:492 -#, fuzzy, php-format -#@ woocommerce -msgid "Sorry, we do not have enough \"%s\" in stock to fulfil your order (%s in stock). Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Beklager, vi har ikke nok \"%s\" på lager til at opfylde din bestilling (%s på lager). Rediger venligst din kurv og prøv igen. Vi undskylder for ulejligheden." - -#: classes/class-wc-cart.php:527 -#, fuzzy, php-format -#@ woocommerce -msgid "Sorry, we do not have enough \"%s\" in stock to fulfil your order right now. Please try again in %d minutes or edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Beklager, vi har ikke nok \"%s\" på lager til at opfylde din bestilling. Rediger venligst din kurv og prøv igen. Vi undskylder for ulejligheden." - -#: classes/class-wc-cart.php:537 -#, fuzzy, php-format -#@ woocommerce -msgid "Sorry, \"%s\" is not in stock. Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Beklager, vi har ikke nok \"%s\" på lager til at opfylde din bestilling. Rediger venligst din kurv og prøv igen. Vi undskylder for ulejligheden." - -#: classes/class-wc-cart.php:818 -#, fuzzy, php-format -#@ woocommerce -msgid "Sorry, "%s" cannot be purchased." -msgstr "Dette produkt kan ikke købes." - -#: classes/class-wc-cart.php:825 -#, fuzzy, php-format -#@ woocommerce -msgid "You cannot add "%s" to the cart because the product is out of stock." -msgstr "Du kan ikke tilføje dette produkt til kurven, da det ikke er på lager." - -#: classes/class-wc-cart.php:830 -#, fuzzy, php-format -#@ woocommerce -msgid "You cannot add that amount of "%s" to the cart because there is not enough stock (%s remaining)." -msgstr "Du kan ikke tilføje den mængde til kurven, da der ikke er nok på lager. Vi har %s på lager." - -#: classes/class-wc-cart.php:842 classes/class-wc-cart.php:856 -#: classes/class-wc-cart.php:864 templates/cart/mini-cart.php:68 -#: woocommerce-functions.php:470 woocommerce.php:1176 -#@ woocommerce -msgid "View Cart →" -msgstr "Vis kurv →" - -#: classes/class-wc-cart.php:842 -#@ woocommerce -msgid "You already have this item in your cart." -msgstr "Du har allerede dette produkt i din kurv." - -#: classes/class-wc-cart.php:856 classes/class-wc-cart.php:864 -#, php-format -#@ woocommerce -msgid "%s You cannot add that amount to the cart — we have %s in stock and you already have %s in your cart." -msgstr "%s Du kan ikke tilføje den mængde til kurven — Vi har %s på lager, og du har allerede %s i din kurv." - -#: classes/class-wc-cart.php:1755 -#@ woocommerce -msgid "via" -msgstr "via" - -#: classes/class-wc-coupon.php:444 classes/class-wc-coupon.php:494 -#@ woocommerce -msgid "Coupon does not exist!" -msgstr "Kupon eksisterer ikke!" - -#: classes/class-wc-checkout.php:64 -#@ woocommerce -msgid "Account username" -msgstr "Konto brugernavn" - -#: classes/class-wc-checkout.php:65 -#@ woocommerce -msgctxt "placeholder" -msgid "Username" -msgstr "Brugernavn" - -#: classes/class-wc-checkout.php:72 classes/class-wc-checkout.php:79 -#@ woocommerce -msgid "Account password" -msgstr "Konto adgangskode" - -#: classes/class-wc-checkout.php:73 classes/class-wc-checkout.php:80 -#@ woocommerce -msgctxt "placeholder" -msgid "Password" -msgstr "Adgangskode" - -#: admin/post-types/shop_order.php:48 -#: admin/post-types/writepanels/writepanels-init.php:71 -#: classes/class-wc-checkout.php:89 -#@ woocommerce -msgid "Order Notes" -msgstr "Ordrebemærkninger" - -#: classes/class-wc-checkout.php:90 -#@ woocommerce -msgctxt "placeholder" -msgid "Notes about your order, e.g. special notes for delivery." -msgstr "Bemærkninger omkring din ordre, fx særlige bemærkninger til levering." - -#: classes/class-wc-checkout.php:152 -#, php-format -#@ woocommerce -msgid "Order – %s" -msgstr "Ordre – %s" - -#: classes/class-wc-checkout.php:152 -#, php-format -#@ woocommerce -msgctxt "Order date parsed by strftime" -msgid "%b %d, %Y @ %I:%M %p" -msgstr "%b %d, %Y @ %I:%M %p" - -#: classes/class-wc-checkout.php:276 -#@ woocommerce -msgid "Backordered" -msgstr "Restordre" - -#: classes/class-wc-checkout.php:386 -#, php-format -#@ woocommerce -msgid "Sorry, your session has expired. Return to homepage →" -msgstr "Beklager, din session er udløbet. Tilbage til forsiden →" - -#: classes/class-wc-checkout.php:438 woocommerce-functions.php:1632 -#@ woocommerce -msgid "is a required field." -msgstr "er et påkrævet felt." - -#: classes/class-wc-checkout.php:451 -#, php-format -#@ woocommerce -msgid "(%s) is not a valid postcode/ZIP." -msgstr "(%s) er ikke et gyldigt postnummer." - -#: classes/class-wc-checkout.php:472 -#@ woocommerce -msgid "is not valid. Please enter one of the following:" -msgstr "er ikke gyldigt. Vær venlig at indtaste en af følgende:" - -#: classes/class-wc-checkout.php:480 -#@ woocommerce -msgid "is not a valid number." -msgstr "er ikke et gyldigt nummer." - -#: classes/class-wc-checkout.php:487 -#@ woocommerce -msgid "is not a valid email address." -msgstr "er ikke en gyldig e-mail adresse." - -#: classes/class-wc-checkout.php:543 -#@ woocommerce -msgid "Please enter an account username." -msgstr "Indtast venligst et konto brugernavn." - -#: classes/class-wc-checkout.php:547 -#@ woocommerce -msgid "Invalid email/username." -msgstr "Ugyldig e-mail/brugernavn." - -#: classes/class-wc-checkout.php:550 -#@ woocommerce -msgid "An account is already registered with that username. Please choose another." -msgstr "En konto er allerede registreret med dette brugernavn. Vælg venligst et andet." - -#: classes/class-wc-checkout.php:560 -#@ woocommerce -msgid "Please enter an account password." -msgstr "Indtast venligst en konto adgangskode." - -#: classes/class-wc-checkout.php:563 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:85 -#: woocommerce-functions.php:731 woocommerce-functions.php:1562 -#@ woocommerce -msgid "Passwords do not match." -msgstr "Adgangskode matchede ikke." - -#: classes/class-wc-checkout.php:567 -#@ woocommerce -msgid "An account is already registered with your email address. Please login." -msgstr "En konto er allerede registreret med din e-mail adresse. Log venligst ind." - -#: classes/class-wc-checkout.php:573 -#@ woocommerce -msgid "You must accept our Terms & Conditions." -msgstr "Du skal acceptere vores betingelser & vilkår." - -#: classes/class-wc-checkout.php:582 -#@ woocommerce -msgid "Invalid shipping method." -msgstr "Ugyldig forsendelsesmetode." - -#: classes/class-wc-checkout.php:595 -#@ woocommerce -msgid "Invalid payment method." -msgstr "Ugyldig betalingsmetode." - -#: classes/class-wc-checkout.php:635 woocommerce-core-functions.php:2485 -#: woocommerce-core-functions.php:2488 woocommerce-functions.php:703 -#: woocommerce-functions.php:705 woocommerce-functions.php:708 -#: woocommerce-functions.php:720 woocommerce-functions.php:722 -#: woocommerce-functions.php:725 woocommerce-functions.php:759 -#@ woocommerce -msgid "ERROR" -msgstr "FEJL" - -#: classes/class-wc-checkout.php:635 woocommerce-functions.php:759 -#@ woocommerce -msgid "Couldn’t register you… please contact us if you continue to have problems." -msgstr "Kunne ikke registrere dig ... kontakt os, hvis du fortsat har problemer." - -#: classes/class-wc-countries.php:37 -#@ woocommerce -msgid "Afghanistan" -msgstr "Afghanistan" - -#: classes/class-wc-countries.php:38 -#@ woocommerce -msgid "Åland Islands" -msgstr "Åland Islands" - -#: classes/class-wc-countries.php:39 -#@ woocommerce -msgid "Albania" -msgstr "Albanien" - -#: classes/class-wc-countries.php:40 -#@ woocommerce -msgid "Algeria" -msgstr "Algeriet" - -#: i18n/states/US.php:67 -#@ woocommerce -msgid "American Samoa" -msgstr "Amerikansk Samoa" - -#: classes/class-wc-countries.php:41 -#@ woocommerce -msgid "Andorra" -msgstr "Andorra" - -#: classes/class-wc-countries.php:42 -#@ woocommerce -msgid "Angola" -msgstr "Angola" - -#: classes/class-wc-countries.php:43 -#@ woocommerce -msgid "Anguilla" -msgstr "Anguilla" - -#: classes/class-wc-countries.php:44 -#@ woocommerce -msgid "Antarctica" -msgstr "Antarktis" - -#: classes/class-wc-countries.php:45 -#@ woocommerce -msgid "Antigua and Barbuda" -msgstr "Antigua og Barbuda" - -#: classes/class-wc-countries.php:46 -#@ woocommerce -msgid "Argentina" -msgstr "Argentina" - -#: classes/class-wc-countries.php:47 -#@ woocommerce -msgid "Armenia" -msgstr "Armenien" - -#: classes/class-wc-countries.php:48 -#@ woocommerce -msgid "Aruba" -msgstr "Aruba" - -#: classes/class-wc-countries.php:49 -#@ woocommerce -msgid "Australia" -msgstr "Australien" - -#: classes/class-wc-countries.php:50 -#@ woocommerce -msgid "Austria" -msgstr "Østrig" - -#: classes/class-wc-countries.php:51 -#@ woocommerce -msgid "Azerbaijan" -msgstr "Aserbajdsjan" - -#: classes/class-wc-countries.php:52 -#@ woocommerce -msgid "Bahamas" -msgstr "Bahamas" - -#: classes/class-wc-countries.php:53 -#@ woocommerce -msgid "Bahrain" -msgstr "Bahrain" - -#: classes/class-wc-countries.php:54 -#@ woocommerce -msgid "Bangladesh" -msgstr "Bangladesh" - -#: classes/class-wc-countries.php:55 -#@ woocommerce -msgid "Barbados" -msgstr "Barbados" - -#: classes/class-wc-countries.php:56 -#@ woocommerce -msgid "Belarus" -msgstr "Hviderusland" - -#: classes/class-wc-countries.php:57 -#@ woocommerce -msgid "Belgium" -msgstr "Belgien" - -#: classes/class-wc-countries.php:59 -#@ woocommerce -msgid "Belize" -msgstr "Belize" - -#: classes/class-wc-countries.php:60 -#@ woocommerce -msgid "Benin" -msgstr "Benin" - -#: classes/class-wc-countries.php:61 -#@ woocommerce -msgid "Bermuda" -msgstr "Bermuda" - -#: classes/class-wc-countries.php:62 -#@ woocommerce -msgid "Bhutan" -msgstr "Bhutan" - -#: classes/class-wc-countries.php:63 -#@ woocommerce -msgid "Bolivia" -msgstr "Bolivia" - -#: classes/class-wc-countries.php:64 -#@ woocommerce -msgid "Bonaire, Saint Eustatius and Saba" -msgstr "Bonaire, Saint Eustatius og Saba" - -#: classes/class-wc-countries.php:65 -#@ woocommerce -msgid "Bosnia and Herzegovina" -msgstr "Bosnien og Hercegovina" - -#: classes/class-wc-countries.php:66 -#@ woocommerce -msgid "Botswana" -msgstr "Botswana" - -#: classes/class-wc-countries.php:67 -#, fuzzy -#@ woocommerce -msgid "Bouvet Island" -msgstr "Rhode Island" - -#: classes/class-wc-countries.php:68 -#@ woocommerce -msgid "Brazil" -msgstr "Brasilien" - -#: classes/class-wc-countries.php:69 -#@ woocommerce -msgid "British Indian Ocean Territory" -msgstr "Britisk Indisk Ocean Territorium " - -#: classes/class-wc-countries.php:70 -#@ woocommerce -msgid "British Virgin Islands" -msgstr "Britiske Jomfruøer" - -#: classes/class-wc-countries.php:71 -#@ woocommerce -msgid "Brunei" -msgstr "Brunei" - -#: classes/class-wc-countries.php:72 -#@ woocommerce -msgid "Bulgaria" -msgstr "Bulgarien" - -#: classes/class-wc-countries.php:73 -#@ woocommerce -msgid "Burkina Faso" -msgstr "Burkina Faso" - -#: classes/class-wc-countries.php:74 -#@ woocommerce -msgid "Burundi" -msgstr "Burundi" - -#: classes/class-wc-countries.php:75 -#@ woocommerce -msgid "Cambodia" -msgstr "Cambodja" - -#: classes/class-wc-countries.php:76 -#@ woocommerce -msgid "Cameroon" -msgstr "Cameroun" - -#: classes/class-wc-countries.php:77 -#@ woocommerce -msgid "Canada" -msgstr "Canada" - -#: classes/class-wc-countries.php:78 -#@ woocommerce -msgid "Cape Verde" -msgstr "Kap Verde" - -#: classes/class-wc-countries.php:79 -#@ woocommerce -msgid "Cayman Islands" -msgstr "Caymanøerne" - -#: classes/class-wc-countries.php:80 -#@ woocommerce -msgid "Central African Republic" -msgstr "Centralafrikanske Republik" - -#: classes/class-wc-countries.php:81 -#@ woocommerce -msgid "Chad" -msgstr "Tchad" - -#: classes/class-wc-countries.php:82 -#@ woocommerce -msgid "Chile" -msgstr "Chile" - -#: classes/class-wc-countries.php:83 -#@ woocommerce -msgid "China" -msgstr "Kina" - -#: classes/class-wc-countries.php:84 -#@ woocommerce -msgid "Christmas Island" -msgstr "Juleøen" - -#: classes/class-wc-countries.php:85 -#@ woocommerce -msgid "Cocos (Keeling) Islands" -msgstr "Cocosøerne (Keelingøerne)" - -#: classes/class-wc-countries.php:86 -#@ woocommerce -msgid "Colombia" -msgstr "Colombia" - -#: classes/class-wc-countries.php:87 -#@ woocommerce -msgid "Comoros" -msgstr "Comorerne" - -#: classes/class-wc-countries.php:88 -#@ woocommerce -msgid "Congo (Brazzaville)" -msgstr "Congo (Brazzaville)" - -#: classes/class-wc-countries.php:89 -#@ woocommerce -msgid "Congo (Kinshasa)" -msgstr "Congo (Kinshasa)" - -#: classes/class-wc-countries.php:90 -#@ woocommerce -msgid "Cook Islands" -msgstr "Cookøerne" - -#: classes/class-wc-countries.php:91 -#@ woocommerce -msgid "Costa Rica" -msgstr "Costa Rica" - -#: classes/class-wc-countries.php:92 -#@ woocommerce -msgid "Croatia" -msgstr "Kroatien" - -#: classes/class-wc-countries.php:93 -#@ woocommerce -msgid "Cuba" -msgstr "Cuba" - -#: classes/class-wc-countries.php:94 -#@ woocommerce -msgid "CuraÇao" -msgstr "CuraÇao" - -#: classes/class-wc-countries.php:95 -#@ woocommerce -msgid "Cyprus" -msgstr "Cypern" - -#: classes/class-wc-countries.php:96 -#@ woocommerce -msgid "Czech Republic" -msgstr "Den Tjekkiske Republik" - -#: classes/class-wc-countries.php:97 -#@ woocommerce -msgid "Denmark" -msgstr "Danmark" - -#: classes/class-wc-countries.php:98 -#@ woocommerce -msgid "Djibouti" -msgstr "Djibouti" - -#: classes/class-wc-countries.php:99 -#@ woocommerce -msgid "Dominica" -msgstr "Dominica" - -#: classes/class-wc-countries.php:100 -#@ woocommerce -msgid "Dominican Republic" -msgstr "Den Dominikanske Republik" - -#: classes/class-wc-countries.php:101 -#@ woocommerce -msgid "Ecuador" -msgstr "Ecuador" - -#: classes/class-wc-countries.php:102 -#@ woocommerce -msgid "Egypt" -msgstr "Egypten" - -#: classes/class-wc-countries.php:103 -#@ woocommerce -msgid "El Salvador" -msgstr "El Salvador" - -#: classes/class-wc-countries.php:104 -#@ woocommerce -msgid "Equatorial Guinea" -msgstr "Ækvatorial Guinea" - -#: classes/class-wc-countries.php:105 -#@ woocommerce -msgid "Eritrea" -msgstr "Eritrea" - -#: classes/class-wc-countries.php:106 -#@ woocommerce -msgid "Estonia" -msgstr "Estland" - -#: classes/class-wc-countries.php:107 -#@ woocommerce -msgid "Ethiopia" -msgstr "Etiopien" - -#: classes/class-wc-countries.php:108 -#@ woocommerce -msgid "Falkland Islands" -msgstr "Falklandsøerne" - -#: classes/class-wc-countries.php:109 -#@ woocommerce -msgid "Faroe Islands" -msgstr "Færøerne" - -#: classes/class-wc-countries.php:110 -#@ woocommerce -msgid "Fiji" -msgstr "Fiji" - -#: classes/class-wc-countries.php:111 -#@ woocommerce -msgid "Finland" -msgstr "Finland" - -#: classes/class-wc-countries.php:112 -#@ woocommerce -msgid "France" -msgstr "Frankrig" - -#: classes/class-wc-countries.php:113 -#@ woocommerce -msgid "French Guiana" -msgstr "Fransk Guiana" - -#: classes/class-wc-countries.php:114 -#@ woocommerce -msgid "French Polynesia" -msgstr "Fransk Polynesien" - -#: classes/class-wc-countries.php:115 -#@ woocommerce -msgid "French Southern Territories" -msgstr "Franske sydlige territorier" - -#: classes/class-wc-countries.php:116 -#@ woocommerce -msgid "Gabon" -msgstr "Gabon" - -#: classes/class-wc-countries.php:117 -#@ woocommerce -msgid "Gambia" -msgstr "Gambia" - -#: classes/class-wc-countries.php:118 i18n/states/US.php:23 -#@ woocommerce -msgid "Georgia" -msgstr "Georgien" - -#: classes/class-wc-countries.php:119 -#@ woocommerce -msgid "Germany" -msgstr "Tyskland" - -#: classes/class-wc-countries.php:120 -#@ woocommerce -msgid "Ghana" -msgstr "Ghana" - -#: classes/class-wc-countries.php:121 -#@ woocommerce -msgid "Gibraltar" -msgstr "Gibraltar" - -#: classes/class-wc-countries.php:122 -#@ woocommerce -msgid "Greece" -msgstr "Grækenland" - -#: classes/class-wc-countries.php:123 -#@ woocommerce -msgid "Greenland" -msgstr "Grønland" - -#: classes/class-wc-countries.php:124 -#@ woocommerce -msgid "Grenada" -msgstr "Grenada" - -#: classes/class-wc-countries.php:125 -#@ woocommerce -msgid "Guadeloupe" -msgstr "Guadeloupe" - -#: i18n/states/US.php:68 -#@ woocommerce -msgid "Guam" -msgstr "Guam" - -#: classes/class-wc-countries.php:126 -#@ woocommerce -msgid "Guatemala" -msgstr "Guatemala" - -#: classes/class-wc-countries.php:127 -#@ woocommerce -msgid "Guernsey" -msgstr "Guernsey" - -#: classes/class-wc-countries.php:128 -#@ woocommerce -msgid "Guinea" -msgstr "Guinea" - -#: classes/class-wc-countries.php:129 -#@ woocommerce -msgid "Guinea-Bissau" -msgstr "Guinea-Bissau" - -#: classes/class-wc-countries.php:130 -#@ woocommerce -msgid "Guyana" -msgstr "Guyana" - -#: classes/class-wc-countries.php:131 -#@ woocommerce -msgid "Haiti" -msgstr "Haiti" - -#: classes/class-wc-countries.php:132 -#@ woocommerce -msgid "Heard Island and McDonald Islands" -msgstr "Heard Island og McDonald Islands" - -#: classes/class-wc-countries.php:133 -#@ woocommerce -msgid "Honduras" -msgstr "Honduras" - -#: classes/class-wc-countries.php:134 -#@ woocommerce -msgid "Hong Kong" -msgstr "Hong Kong" - -#: classes/class-wc-countries.php:135 -#@ woocommerce -msgid "Hungary" -msgstr "Ungarn" - -#: classes/class-wc-countries.php:136 -#@ woocommerce -msgid "Iceland" -msgstr "Island" - -#: classes/class-wc-countries.php:137 -#@ woocommerce -msgid "India" -msgstr "Indien" - -#: classes/class-wc-countries.php:138 -#@ woocommerce -msgid "Indonesia" -msgstr "Indonesien" - -#: classes/class-wc-countries.php:139 -#@ woocommerce -msgid "Iran" -msgstr "Iran" - -#: classes/class-wc-countries.php:140 -#@ woocommerce -msgid "Iraq" -msgstr "Irak" - -#: classes/class-wc-countries.php:141 -#@ woocommerce -msgid "Republic of Ireland" -msgstr "Republic of Ireland" - -#: classes/class-wc-countries.php:142 -#@ woocommerce -msgid "Isle of Man" -msgstr "Øen Man" - -#: classes/class-wc-countries.php:143 -#@ woocommerce -msgid "Israel" -msgstr "Israel" - -#: classes/class-wc-countries.php:144 -#@ woocommerce -msgid "Italy" -msgstr "Italien" - -#: classes/class-wc-countries.php:145 -#@ woocommerce -msgid "Ivory Coast" -msgstr "Elfenbenskysten" - -#: classes/class-wc-countries.php:146 -#@ woocommerce -msgid "Jamaica" -msgstr "Jamaica" - -#: classes/class-wc-countries.php:147 -#@ woocommerce -msgid "Japan" -msgstr "Japan" - -#: classes/class-wc-countries.php:148 -#@ woocommerce -msgid "Jersey" -msgstr "Jersey" - -#: classes/class-wc-countries.php:149 -#@ woocommerce -msgid "Jordan" -msgstr "Jordan" - -#: classes/class-wc-countries.php:150 -#@ woocommerce -msgid "Kazakhstan" -msgstr "Kasakhstan" - -#: classes/class-wc-countries.php:151 -#@ woocommerce -msgid "Kenya" -msgstr "Kenya" - -#: classes/class-wc-countries.php:152 -#@ woocommerce -msgid "Kiribati" -msgstr "Kiribati" - -#: classes/class-wc-countries.php:153 -#@ woocommerce -msgid "Kuwait" -msgstr "Kuwait" - -#: classes/class-wc-countries.php:154 -#@ woocommerce -msgid "Kyrgyzstan" -msgstr "Kirgisistan" - -#: classes/class-wc-countries.php:155 -#@ woocommerce -msgid "Laos" -msgstr "Laos" - -#: classes/class-wc-countries.php:156 -#@ woocommerce -msgid "Latvia" -msgstr "Letland" - -#: classes/class-wc-countries.php:157 -#@ woocommerce -msgid "Lebanon" -msgstr "Libanon" - -#: classes/class-wc-countries.php:158 -#@ woocommerce -msgid "Lesotho" -msgstr "Lesotho" - -#: classes/class-wc-countries.php:159 -#@ woocommerce -msgid "Liberia" -msgstr "Liberia" - -#: classes/class-wc-countries.php:160 -#@ woocommerce -msgid "Libya" -msgstr "Libyen" - -#: classes/class-wc-countries.php:161 -#@ woocommerce -msgid "Liechtenstein" -msgstr "Liechtenstein" - -#: classes/class-wc-countries.php:162 -#@ woocommerce -msgid "Lithuania" -msgstr "Litauen" - -#: classes/class-wc-countries.php:163 -#@ woocommerce -msgid "Luxembourg" -msgstr "Luxemborg" - -#: classes/class-wc-countries.php:164 -#@ woocommerce -msgid "Macao S.A.R., China" -msgstr "Macao S.A.R., Kina" - -#: classes/class-wc-countries.php:165 -#@ woocommerce -msgid "Macedonia" -msgstr "Makedonien" - -#: classes/class-wc-countries.php:166 -#@ woocommerce -msgid "Madagascar" -msgstr "Madagaskar" - -#: classes/class-wc-countries.php:167 -#@ woocommerce -msgid "Malawi" -msgstr "Malawi" - -#: classes/class-wc-countries.php:168 -#@ woocommerce -msgid "Malaysia" -msgstr "Malaysia" - -#: classes/class-wc-countries.php:169 -#@ woocommerce -msgid "Maldives" -msgstr "Maldiverne" - -#: classes/class-wc-countries.php:170 -#@ woocommerce -msgid "Mali" -msgstr "Mali" - -#: classes/class-wc-countries.php:171 -#@ woocommerce -msgid "Malta" -msgstr "Malta" - -#: classes/class-wc-countries.php:172 -#@ woocommerce -msgid "Marshall Islands" -msgstr "Marshalløerne" - -#: classes/class-wc-countries.php:173 -#@ woocommerce -msgid "Martinique" -msgstr "Martinique" - -#: classes/class-wc-countries.php:174 -#@ woocommerce -msgid "Mauritania" -msgstr "Mauretanien" - -#: classes/class-wc-countries.php:175 -#@ woocommerce -msgid "Mauritius" -msgstr "Mauritius" - -#: classes/class-wc-countries.php:176 -#@ woocommerce -msgid "Mayotte" -msgstr "Mayotte" - -#: classes/class-wc-countries.php:177 -#@ woocommerce -msgid "Mexico" -msgstr "Mexico" - -#: classes/class-wc-countries.php:178 -#@ woocommerce -msgid "Micronesia" -msgstr "Mikronesien" - -#: classes/class-wc-countries.php:179 -#@ woocommerce -msgid "Moldova" -msgstr "Moldova" - -#: classes/class-wc-countries.php:180 -#@ woocommerce -msgid "Monaco" -msgstr "Monaco" - -#: classes/class-wc-countries.php:181 -#@ woocommerce -msgid "Mongolia" -msgstr "Mongoliet" - -#: classes/class-wc-countries.php:182 -#@ woocommerce -msgid "Montenegro" -msgstr "Montenegro" - -#: classes/class-wc-countries.php:183 -#@ woocommerce -msgid "Montserrat" -msgstr "Montserrat" - -#: classes/class-wc-countries.php:184 -#@ woocommerce -msgid "Morocco" -msgstr "Marokko" - -#: classes/class-wc-countries.php:185 -#@ woocommerce -msgid "Mozambique" -msgstr "Mozambique" - -#: classes/class-wc-countries.php:186 -#@ woocommerce -msgid "Myanmar" -msgstr "Myanmar" - -#: classes/class-wc-countries.php:187 -#@ woocommerce -msgid "Namibia" -msgstr "Namibia" - -#: classes/class-wc-countries.php:188 -#@ woocommerce -msgid "Nauru" -msgstr "Nauru" - -#: classes/class-wc-countries.php:189 -#@ woocommerce -msgid "Nepal" -msgstr "Nepal" - -#: classes/class-wc-countries.php:190 -#@ woocommerce -msgid "Netherlands" -msgstr "Holland" - -#: classes/class-wc-countries.php:191 -#@ woocommerce -msgid "Netherlands Antilles" -msgstr "De Nederlandske Antiller" - -#: classes/class-wc-countries.php:192 -#@ woocommerce -msgid "New Caledonia" -msgstr "Ny Kaledonien" - -#: classes/class-wc-countries.php:193 -#@ woocommerce -msgid "New Zealand" -msgstr "New Zealand" - -#: classes/class-wc-countries.php:194 -#@ woocommerce -msgid "Nicaragua" -msgstr "Nicaragua" - -#: classes/class-wc-countries.php:195 -#@ woocommerce -msgid "Niger" -msgstr "Niger" - -#: classes/class-wc-countries.php:196 -#@ woocommerce -msgid "Nigeria" -msgstr "Nigeria" - -#: classes/class-wc-countries.php:197 -#@ woocommerce -msgid "Niue" -msgstr "Niue" - -#: classes/class-wc-countries.php:198 -#@ woocommerce -msgid "Norfolk Island" -msgstr "Norfolk Øen" - -#: classes/class-wc-countries.php:199 -#@ woocommerce -msgid "North Korea" -msgstr "Nordkorea" - -#: i18n/states/US.php:69 -#@ woocommerce -msgid "Northern Mariana Islands" -msgstr "Nordmarianerne" - -#: classes/class-wc-countries.php:200 -#@ woocommerce -msgid "Norway" -msgstr "Norge" - -#: classes/class-wc-countries.php:201 -#@ woocommerce -msgid "Oman" -msgstr "Oman" - -#: classes/class-wc-countries.php:202 -#@ woocommerce -msgid "Pakistan" -msgstr "Pakistan" - -#: classes/class-wc-countries.php:203 -#@ woocommerce -msgid "Palestinian Territory" -msgstr "Det Palæstinensiske Selvstyreområde" - -#: classes/class-wc-countries.php:204 -#@ woocommerce -msgid "Panama" -msgstr "Panama" - -#: classes/class-wc-countries.php:205 -#@ woocommerce -msgid "Papua New Guinea" -msgstr "Papua Ny Guinea" - -#: classes/class-wc-countries.php:206 -#@ woocommerce -msgid "Paraguay" -msgstr "Paraguay" - -#: classes/class-wc-countries.php:207 -#@ woocommerce -msgid "Peru" -msgstr "Peru" - -#: classes/class-wc-countries.php:208 -#@ woocommerce -msgid "Philippines" -msgstr "Filippinerne" - -#: classes/class-wc-countries.php:209 -#@ woocommerce -msgid "Pitcairn" -msgstr "Pitcairn" - -#: classes/class-wc-countries.php:210 -#@ woocommerce -msgid "Poland" -msgstr "Polen" - -#: classes/class-wc-countries.php:211 -#@ woocommerce -msgid "Portugal" -msgstr "Portugal" - -#: i18n/states/US.php:70 -#@ woocommerce -msgid "Puerto Rico" -msgstr "Puerto Rico" - -#: classes/class-wc-countries.php:212 -#@ woocommerce -msgid "Qatar" -msgstr "Qatar" - -#: classes/class-wc-countries.php:213 -#@ woocommerce -msgid "Reunion" -msgstr "Reunion" - -#: classes/class-wc-countries.php:214 -#@ woocommerce -msgid "Romania" -msgstr "Rumænien" - -#: classes/class-wc-countries.php:215 -#@ woocommerce -msgid "Russia" -msgstr "Rusland" - -#: classes/class-wc-countries.php:216 -#@ woocommerce -msgid "Rwanda" -msgstr "Rwanda" - -#: classes/class-wc-countries.php:217 -#@ woocommerce -msgid "Saint Barthélemy" -msgstr "Saint Barthélemy" - -#: classes/class-wc-countries.php:218 -#@ woocommerce -msgid "Saint Helena" -msgstr "Sankt Helena" - -#: classes/class-wc-countries.php:219 -#@ woocommerce -msgid "Saint Kitts and Nevis" -msgstr "Sankt Kitts og Nevis" - -#: classes/class-wc-countries.php:220 -#@ woocommerce -msgid "Saint Lucia" -msgstr "Sankt Lucia" - -#: classes/class-wc-countries.php:221 -#@ woocommerce -msgid "Saint Martin (French part)" -msgstr "Sankt Martin (fransk del)" - -#: classes/class-wc-countries.php:222 -#, fuzzy -#@ woocommerce -msgid "Saint Martin (Dutch part)" -msgstr "Sankt Martin (fransk del)" - -#: classes/class-wc-countries.php:223 -#@ woocommerce -msgid "Saint Pierre and Miquelon" -msgstr "Sankt Pierre og Miquelon" - -#: classes/class-wc-countries.php:224 -#@ woocommerce -msgid "Saint Vincent and the Grenadines" -msgstr "Sankt Vincent og Grenadinerne" - -#: classes/class-wc-countries.php:225 -#@ woocommerce -msgid "Samoa" -msgstr "Samoa" - -#: classes/class-wc-countries.php:226 -#@ woocommerce -msgid "San Marino" -msgstr "San Marino" - -#: classes/class-wc-countries.php:227 -#@ woocommerce -msgid "São Tomé and Príncipe" -msgstr "São Tomé and Príncipe" - -#: classes/class-wc-countries.php:228 -#@ woocommerce -msgid "Saudi Arabia" -msgstr "Saudi Arabien" - -#: classes/class-wc-countries.php:229 -#@ woocommerce -msgid "Senegal" -msgstr "Senegal" - -#: classes/class-wc-countries.php:230 -#@ woocommerce -msgid "Serbia" -msgstr "Serbien" - -#: classes/class-wc-countries.php:231 -#@ woocommerce -msgid "Seychelles" -msgstr "Seychellerne" - -#: classes/class-wc-countries.php:232 -#@ woocommerce -msgid "Sierra Leone" -msgstr "Sierra Leone" - -#: classes/class-wc-countries.php:233 -#@ woocommerce -msgid "Singapore" -msgstr "Singapore" - -#: classes/class-wc-countries.php:234 -#@ woocommerce -msgid "Slovakia" -msgstr "Slovakiet" - -#: classes/class-wc-countries.php:235 -#@ woocommerce -msgid "Slovenia" -msgstr "Slovenien" - -#: classes/class-wc-countries.php:236 -#@ woocommerce -msgid "Solomon Islands" -msgstr "Salomonøerne" - -#: classes/class-wc-countries.php:237 -#@ woocommerce -msgid "Somalia" -msgstr "Somalia" - -#: classes/class-wc-countries.php:238 -#@ woocommerce -msgid "South Africa" -msgstr "Sydafrika" - -#: classes/class-wc-countries.php:239 -#@ woocommerce -msgid "South Georgia/Sandwich Islands" -msgstr "Syd Georgien/Sandwichøerne" - -#: classes/class-wc-countries.php:240 -#@ woocommerce -msgid "South Korea" -msgstr "Sydkorea" - -#: classes/class-wc-countries.php:241 -#, fuzzy -#@ woocommerce -msgid "South Sudan" -msgstr "South Carolina" - -#: classes/class-wc-countries.php:242 -#@ woocommerce -msgid "Spain" -msgstr "Spanien" - -#: classes/class-wc-countries.php:243 -#@ woocommerce -msgid "Sri Lanka" -msgstr "Sri Lanka" - -#: classes/class-wc-countries.php:244 -#@ woocommerce -msgid "Sudan" -msgstr "Sudan" - -#: classes/class-wc-countries.php:245 -#@ woocommerce -msgid "Suriname" -msgstr "Surinam" - -#: classes/class-wc-countries.php:246 -#@ woocommerce -msgid "Svalbard and Jan Mayen" -msgstr "Svalbard og Jan Mayen" - -#: classes/class-wc-countries.php:247 -#@ woocommerce -msgid "Swaziland" -msgstr "Swaziland" - -#: classes/class-wc-countries.php:248 -#@ woocommerce -msgid "Sweden" -msgstr "Sverige" - -#: classes/class-wc-countries.php:249 -#@ woocommerce -msgid "Switzerland" -msgstr "Schweiz" - -#: classes/class-wc-countries.php:250 -#@ woocommerce -msgid "Syria" -msgstr "Syrien" - -#: classes/class-wc-countries.php:251 -#@ woocommerce -msgid "Taiwan" -msgstr "Taiwan" - -#: classes/class-wc-countries.php:252 -#@ woocommerce -msgid "Tajikistan" -msgstr "Tadsjikistan" - -#: classes/class-wc-countries.php:253 -#@ woocommerce -msgid "Tanzania" -msgstr "Tanzania" - -#: classes/class-wc-countries.php:254 -#@ woocommerce -msgid "Thailand" -msgstr "Thailand" - -#: classes/class-wc-countries.php:255 -#@ woocommerce -msgid "Timor-Leste" -msgstr "Timor-Leste" - -#: classes/class-wc-countries.php:256 -#@ woocommerce -msgid "Togo" -msgstr "Togo" - -#: classes/class-wc-countries.php:257 -#@ woocommerce -msgid "Tokelau" -msgstr "Tokelau" - -#: classes/class-wc-countries.php:258 -#@ woocommerce -msgid "Tonga" -msgstr "Tonga" - -#: classes/class-wc-countries.php:259 -#@ woocommerce -msgid "Trinidad and Tobago" -msgstr "Trinidad og Tobago" - -#: classes/class-wc-countries.php:260 -#@ woocommerce -msgid "Tunisia" -msgstr "Tunesien" - -#: classes/class-wc-countries.php:261 -#@ woocommerce -msgid "Turkey" -msgstr "Tyrkiet" - -#: classes/class-wc-countries.php:262 -#@ woocommerce -msgid "Turkmenistan" -msgstr "Turkmenistan" - -#: classes/class-wc-countries.php:263 -#@ woocommerce -msgid "Turks and Caicos Islands" -msgstr "Turks- og Caicosøerne" - -#: classes/class-wc-countries.php:264 -#@ woocommerce -msgid "Tuvalu" -msgstr "Tuvalu" - -#: i18n/states/US.php:71 -#@ woocommerce -msgid "US Minor Outlying Islands" -msgstr "Amerikanske Mindre Oversøiske Øer" - -#: classes/class-wc-countries.php:265 -#@ woocommerce -msgid "Uganda" -msgstr "Uganda" - -#: classes/class-wc-countries.php:266 -#@ woocommerce -msgid "Ukraine" -msgstr "Ukraine" - -#: classes/class-wc-countries.php:267 -#@ woocommerce -msgid "United Arab Emirates" -msgstr "De Forenede Arabiske Emirater" - -#: classes/class-wc-countries.php:268 -#@ woocommerce -msgid "United Kingdom" -msgstr "Storbritannien" - -#: classes/class-wc-countries.php:269 -#@ woocommerce -msgid "United States" -msgstr "Amerikas Forenede Stater" - -#: classes/class-wc-countries.php:270 -#@ woocommerce -msgid "Uruguay" -msgstr "Uruguay" - -#: classes/class-wc-countries.php:271 -#@ woocommerce -msgid "Uzbekistan" -msgstr "Usbekistan" - -#: classes/class-wc-countries.php:272 -#@ woocommerce -msgid "Vanuatu" -msgstr "Vanuatu" - -#: classes/class-wc-countries.php:273 -#@ woocommerce -msgid "Vatican" -msgstr "Vatikanet" - -#: classes/class-wc-countries.php:274 -#@ woocommerce -msgid "Venezuela" -msgstr "Venezuela" - -#: classes/class-wc-countries.php:275 -#@ woocommerce -msgid "Vietnam" -msgstr "Vietnam" - -#: classes/class-wc-countries.php:276 -#@ woocommerce -msgid "Wallis and Futuna" -msgstr "Wallis og Futuna" - -#: classes/class-wc-countries.php:277 -#@ woocommerce -msgid "Western Sahara" -msgstr "Vestsahara" - -#: classes/class-wc-countries.php:278 -#@ woocommerce -msgid "Yemen" -msgstr "Yemen" - -#: classes/class-wc-countries.php:279 -#@ woocommerce -msgid "Zambia" -msgstr "Zambia" - -#: classes/class-wc-countries.php:280 -#@ woocommerce -msgid "Zimbabwe" -msgstr "Zimbabwe" - -#: classes/class-wc-countries.php:418 -#@ woocommerce -msgid "to the" -msgstr "til" - -#: classes/class-wc-countries.php:419 -#@ woocommerce -msgid "to" -msgstr "til" - -#: classes/class-wc-countries.php:432 -#@ woocommerce -msgid "the" -msgstr " " - -#: classes/class-wc-countries.php:444 -#@ woocommerce -msgid "VAT" -msgstr "Moms" - -#: admin/post-types/writepanels/writepanel-order_data.php:352 -#: admin/settings/settings-tax-rates.php:387 -#: admin/settings/settings-tax-rates.php:466 -#: admin/woocommerce-admin-content.php:48 -#: admin/woocommerce-admin-settings.php:184 classes/class-wc-countries.php:444 -#: templates/cart/totals.php:110 templates/checkout/review-order.php:113 -#@ woocommerce -msgid "Tax" -msgstr "Moms" - -#: classes/class-wc-countries.php:457 -#@ woocommerce -msgid "(incl. VAT)" -msgstr "(inkl. Moms)" - -#: classes/class-wc-countries.php:457 -#@ woocommerce -msgid "(incl. tax)" -msgstr "(inkl. Moms)" - -#: classes/class-wc-countries.php:470 -#@ woocommerce -msgid "(ex. VAT)" -msgstr "(ekskl. Moms)" - -#: admin/post-types/writepanels/writepanel-order_data.php:549 -#: classes/class-wc-countries.php:470 -#@ woocommerce -msgid "(ex. tax)" -msgstr "(ekskl. moms)" - -#: classes/class-wc-countries.php:694 classes/class-wc-countries.php:704 -#: classes/class-wc-countries.php:724 classes/class-wc-countries.php:779 -#: classes/class-wc-countries.php:803 classes/class-wc-countries.php:848 -#: classes/class-wc-countries.php:872 -#@ woocommerce -msgid "Province" -msgstr "Provins" - -#: classes/class-wc-countries.php:710 -#@ woocommerce -msgid "Canton" -msgstr "Canton" - -#: classes/class-wc-countries.php:719 classes/class-wc-countries.php:854 -#@ woocommerce -msgid "Municipality" -msgstr "Kommune" - -#: classes/class-wc-countries.php:766 -#, fuzzy -#@ woocommerce -msgid "Town / District" -msgstr "By/Distrikt" - -#: classes/class-wc-countries.php:769 -#@ woocommerce -msgid "Region" -msgstr "Region" - -#: classes/class-wc-countries.php:877 -#@ woocommerce -msgid "Zip" -msgstr "Zip" - -#: classes/class-wc-countries.php:880 -#@ woocommerce -msgid "State" -msgstr "Stat" - -#: admin/post-types/writepanels/writepanel-order_data.php:168 -#: admin/post-types/writepanels/writepanel-order_data.php:258 -#: admin/woocommerce-admin-users.php:171 admin/woocommerce-admin-users.php:220 -#: classes/class-wc-countries.php:885 -#: templates/cart/shipping-calculator.php:68 -#@ woocommerce -msgid "Postcode" -msgstr "Postnummer" - -#: classes/class-wc-countries.php:888 -#@ woocommerce -msgid "County" -msgstr "Land" - -#: classes/class-wc-countries.php:920 classes/class-wc-countries.php:921 -#: classes/class-wc-countries.php:996 -#: templates/cart/shipping-calculator.php:68 -#@ woocommerce -msgid "Postcode / Zip" -msgstr "Postnummer" - -#: classes/class-wc-countries.php:925 classes/class-wc-countries.php:926 -#: classes/class-wc-countries.php:985 -#@ woocommerce -msgid "Town / City" -msgstr "By" - -#: classes/class-wc-countries.php:930 classes/class-wc-countries.php:931 -#: classes/class-wc-countries.php:991 -#@ woocommerce -msgid "State / County" -msgstr "Land" - -#: admin/post-types/writepanels/writepanel-order_data.php:172 -#: admin/post-types/writepanels/writepanel-order_data.php:262 -#: admin/woocommerce-admin-users.php:179 admin/woocommerce-admin-users.php:228 -#: classes/class-wc-countries.php:955 -#@ woocommerce -msgid "Country" -msgstr "Land" - -#: admin/post-types/writepanels/writepanel-order_data.php:144 -#: admin/post-types/writepanels/writepanel-order_data.php:234 -#: classes/class-wc-countries.php:960 -#@ woocommerce -msgid "First Name" -msgstr "Fornavn" - -#: admin/post-types/writepanels/writepanel-order_data.php:148 -#: admin/post-types/writepanels/writepanel-order_data.php:238 -#: classes/class-wc-countries.php:965 -#@ woocommerce -msgid "Last Name" -msgstr "Efternavn" - -#: classes/class-wc-countries.php:971 -#@ woocommerce -msgid "Company Name" -msgstr "Firmanavn" - -#: admin/post-types/writepanels/writepanel-order_data.php:193 -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#: admin/post-types/writepanels/writepanel-order_data.php:277 -#: admin/post-types/writepanels/writepanel-order_data.php:279 -#: classes/class-wc-countries.php:975 -#@ woocommerce -msgid "Address" -msgstr "Adresse" - -#: classes/class-wc-countries.php:976 -#@ woocommerce -msgctxt "placeholder" -msgid "Street address" -msgstr "Adresse" - -#: classes/class-wc-countries.php:981 -#@ woocommerce -msgctxt "placeholder" -msgid "Apartment, suite, unit etc. (optional)" -msgstr "Lejlighed, stue, enhed etc. (valgfri)" - -#: classes/class-wc-countries.php:1038 -#@ woocommerce -msgid "Email Address" -msgstr "E-mailadresse" - -#: admin/post-types/writepanels/writepanel-order_data.php:185 -#: classes/class-wc-countries.php:1044 -#@ woocommerce -msgid "Phone" -msgstr "Telefon" - -#: classes/class-wc-coupon.php:459 -#@ woocommerce -msgid "Coupon usage limit has been reached." -msgstr "Loftet for brugen af denne kupon er blevet nået." - -#: classes/class-wc-coupon.php:462 -#@ woocommerce -msgid "This coupon has expired." -msgstr "Denne kupon er udløbet." - -#: classes/class-wc-coupon.php:465 -#, php-format -#@ woocommerce -msgid "The minimum spend for this coupon is %s." -msgstr "Minimumsforbruget for denne kupon er %s." - -#: classes/class-wc-coupon.php:468 -#@ woocommerce -msgid "Sorry, this coupon is not applicable to your cart contents." -msgstr "Beklager, denne kupon er ikke anvendelig for indholdet i din kurv." - -#: classes/class-wc-customer.php:628 classes/class-wc-customer.php:638 -#, fuzzy, php-format -#@ woocommerce -msgid "File %d" -msgstr "Filsti" - -#: classes/class-wc-emails.php:246 -#@ woocommerce -msgid "Note" -msgstr "Bemærkning" - -#: classes/class-wc-emails.php:281 -#@ woocommerce -msgid "Product low in stock" -msgstr "Produkt har lav lagerstatus" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:623 -#: classes/class-wc-emails.php:286 classes/class-wc-emails.php:318 -#: classes/class-wc-emails.php:362 -#, php-format -#@ woocommerce -msgid "Variation #%s of %s" -msgstr "Variant #%s af %s" - -#: classes/class-wc-emails.php:288 classes/class-wc-emails.php:320 -#: classes/class-wc-emails.php:364 -#, php-format -#@ woocommerce -msgid "Product #%s - %s" -msgstr "Produkt #%s - %s" - -#: classes/class-wc-emails.php:290 -#@ woocommerce -msgid "is low in stock." -msgstr "har lav lagerstatus." - -#: classes/class-wc-emails.php:313 -#@ woocommerce -msgid "Product out of stock" -msgstr "produkt ikke på lager" - -#: classes/class-wc-emails.php:322 -#@ woocommerce -msgid "is out of stock." -msgstr "er ikke på lager" - -#: classes/class-wc-emails.php:357 -#@ woocommerce -msgid "Product Backorder" -msgstr "Produkt restordre" - -#: classes/class-wc-emails.php:366 -#, php-format -#@ woocommerce -msgid "%s units of %s have been backordered in order #%s." -msgstr "%s enheder af %s er i restordre i bestillingen #%s." - -#: classes/class-wc-order.php:283 -#@ woocommerce -msgctxt "hash before order number" -msgid "#" -msgstr "#" - -#: classes/class-wc-order.php:858 -#, php-format -#@ woocommerce -msgid " %svia %s" -msgstr " %svia %s" - -#: classes/class-wc-order.php:923 -#@ woocommerce -msgid "Cart Subtotal:" -msgstr "Indkøbskurv subtotal:" - -#: admin/post-types/writepanels/writepanel-order_data.php:499 -#: classes/class-wc-order.php:929 -#@ woocommerce -msgid "Cart Discount:" -msgstr "Kuv rabat:" - -#: classes/class-wc-order.php:935 -#@ woocommerce -msgid "Shipping:" -msgstr "Fragt:" - -#: classes/class-wc-order.php:980 -#@ woocommerce -msgid "Subtotal:" -msgstr "Subtotal:" - -#: admin/post-types/writepanels/writepanel-order_data.php:507 -#: classes/class-wc-order.php:1006 -#@ woocommerce -msgid "Order Discount:" -msgstr "Ordrerabat:" - -#: admin/post-types/writepanels/writepanel-order_data.php:653 -#: classes/class-wc-order.php:1011 -#@ woocommerce -msgid "Order Total:" -msgstr "Ordre total:" - -#: classes/class-wc-order.php:1034 templates/cart/totals.php:145 -#: templates/checkout/review-order.php:151 -#, php-format -#@ woocommerce -msgid "(Includes %s)" -msgstr "(Inkluderer %s)" - -#. translators: plugin header field 'Name' -#: admin/woocommerce-admin-content.php:83 admin/woocommerce-admin-init.php:62 -#: classes/class-wc-order.php:1183 classes/class-wc-order.php:1185 -#: classes/class-wc-order.php:1188 woocommerce.php:0 -#@ woocommerce -msgid "WooCommerce" -msgstr "WooCommerce" - -#: classes/class-wc-order.php:1235 -#, php-format -#@ woocommerce -msgid "Order status changed from %s to %s." -msgstr "Ordrestatus ændret fra %s til %s." - -#: classes/class-wc-order.php:1461 woocommerce-ajax.php:1163 -#: woocommerce-ajax.php:1164 -#, php-format -#@ woocommerce -msgid "Item #%s stock reduced from %s to %s." -msgstr "Produkt #%s lager reduceret fra %s til %s." - -#: classes/class-wc-order.php:1473 -#@ woocommerce -msgid "Order item stock reduced successfully." -msgstr "Ordreprodukters lagerstatus reduceret korrekt." - -#: classes/class-wc-product-external.php:56 -#@ woocommerce -msgid "Buy product" -msgstr "Køb produkt" - -#: admin/settings/settings-init.php:500 classes/class-wc-shortcodes.php:571 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:257 -#: templates/loop/add-to-cart.php:46 -#: templates/single-product/add-to-cart/grouped.php:45 -#: templates/single-product/add-to-cart/grouped.php:75 -#: templates/single-product/add-to-cart/simple.php:42 -#: templates/single-product/add-to-cart/variable.php:78 -#@ woocommerce -msgid "Add to cart" -msgstr "Tilføj til kurv" - -#: classes/emails/class-wc-email-customer-completed-order.php:24 -#@ woocommerce -msgid "Completed order" -msgstr "Afsluttet ordre" - -#: classes/emails/class-wc-email-customer-completed-order.php:25 -#@ woocommerce -msgid "Order complete emails are sent to the customer when the order is marked complete and usual indicates that the order has been shipped." -msgstr "Ordre afsluttet e-mails bliver sendt til kunden, når ordren er markeret som afsluttet, hvilket sædvanligvis indikerer, at ordren er blevet afsendt." - -#: classes/emails/class-wc-email-customer-completed-order.php:27 -#@ woocommerce -msgid "Your order is complete" -msgstr "Din ordre blev gennemført" - -#: classes/emails/class-wc-email-customer-completed-order.php:28 -#@ woocommerce -msgid "Your {blogname} order from {order_date} is complete" -msgstr "Din {blogname}-ordre fra {order_date} er afsluttet" - -#: classes/emails/class-wc-email-customer-completed-order.php:37 -#, fuzzy -#@ woocommerce -msgid "Your order is complete - download your files" -msgstr "din ordre blev gennemført. Dine ordredetaljer er nedenfor:" - -#: classes/emails/class-wc-email-customer-completed-order.php:38 -#@ woocommerce -msgid "Your {blogname} order from {order_date} is complete - download your files" -msgstr "Din {blogname}-ordre fra {order_date} er afsluttet - download dine filer" - -#: classes/emails/class-wc-email-customer-completed-order.php:141 -#: classes/emails/class-wc-email-new-order.php:128 -#@ woocommerce -msgid "Subject" -msgstr "Emne" - -#: classes/emails/class-wc-email-customer-completed-order.php:148 -#: classes/emails/class-wc-email-new-order.php:135 -#, fuzzy -#@ woocommerce -msgid "Email Heading" -msgstr "E-mail forhåndsvisning" - -#: classes/emails/class-wc-email-customer-completed-order.php:155 -#, fuzzy -#@ woocommerce -msgid "Subject (downloadable)" -msgstr "Kan downloades" - -#: classes/emails/class-wc-email-customer-completed-order.php:162 -#@ woocommerce -msgid "Email Heading (downloadable)" -msgstr "E-mail overskrift (kan downloades)" - -#: classes/emails/class-wc-email-customer-invoice.php:27 -#, fuzzy -#@ woocommerce -msgid "Customer invoice" -msgstr "Kunde bemærkning" - -#: classes/emails/class-wc-email-customer-invoice.php:28 -#, fuzzy -#@ woocommerce -msgid "Customer invoice emails can be sent to the user containing order info and payment links." -msgstr "E-mail ordren til kunden. Ubetalte ordrer vil inkludere et betalingslink." - -#: classes/emails/class-wc-email-customer-invoice.php:33 -#@ woocommerce -msgid "Invoice for order {order_number} from {order_date}" -msgstr "Kvittering for ordre {order_number} fra {order_date}" - -#: classes/emails/class-wc-email-customer-invoice.php:34 -#@ woocommerce -msgid "Invoice for order {order_number}" -msgstr "Faktura for ordre %s" - -#: classes/emails/class-wc-email-customer-invoice.php:36 -#@ woocommerce -msgid "Your {blogname} order from {order_date}" -msgstr "Din {blogname}-ordre fra {order_date}" - -#: classes/emails/class-wc-email-customer-invoice.php:37 -#@ woocommerce -msgid "Order {order_number} details" -msgstr "Ordre {order_number} detaljer" - -#: classes/emails/class-wc-email-customer-invoice.php:158 -#@ woocommerce -msgid "Email subject (paid)" -msgstr "E-mail emne (betalt)" - -#: classes/emails/class-wc-email-customer-invoice.php:165 -#@ woocommerce -msgid "Email heading (paid)" -msgstr "E-mail overskrift (betalt)" - -#: classes/emails/class-wc-email-customer-new-account.php:31 -#@ woocommerce -msgid "New account" -msgstr "Min konto" - -#: classes/emails/class-wc-email-customer-new-account.php:32 -#@ woocommerce -msgid "Customer new account emails are sent when a customer signs up via the checkout or My Account page." -msgstr "Ny kundekonto e-mails bliver sendt når en kunde registrerer sig via checkout eller Min Profil-siden." - -#: classes/emails/class-wc-email-customer-new-account.php:37 -#, fuzzy -#@ woocommerce -msgid "Your account on {blogname}" -msgstr "Din konto på %s" - -#: classes/emails/class-wc-email-customer-new-account.php:38 -#, fuzzy -#@ woocommerce -msgid "Welcome to {blogname}" -msgstr "Velkommen til %s" - -#: admin/post-types/writepanels/writepanel-order_notes.php:62 -#: classes/emails/class-wc-email-customer-note.php:29 -#@ woocommerce -msgid "Customer note" -msgstr "Kunde bemærkning" - -#: classes/emails/class-wc-email-customer-note.php:30 -#@ woocommerce -msgid "Customer note emails are sent when you add a note to an order." -msgstr "Kundenote e-mails bliver sendt når du tilføjer en note til en ordre." - -#: classes/emails/class-wc-email-customer-note.php:35 -#@ woocommerce -msgid "Note added to your {blogname} order from {order_date}" -msgstr "Note tilføjet til din {blogname}-ordre fra {order_date}" - -#: classes/emails/class-wc-email-customer-note.php:36 -#@ woocommerce -msgid "A note has been added to your order" -msgstr "En bemærkning blev tilføjet til din ordre" - -#: classes/emails/class-wc-email-customer-processing-order.php:24 -#, fuzzy -#@ woocommerce -msgid "Processing order" -msgstr "Behandler" - -#: classes/emails/class-wc-email-customer-processing-order.php:25 -#@ woocommerce -msgid "This is an order notification sent to the customer after payment containing order details." -msgstr "Dette er en ordrenotifikation med ordredetaljer, som sendes til kunden efter betaling." - -#: classes/emails/class-wc-email-customer-processing-order.php:27 -#@ woocommerce -msgid "Thank you for your order" -msgstr "Tak for din ordre" - -#: classes/emails/class-wc-email-customer-processing-order.php:28 -#@ woocommerce -msgid "Your {blogname} order receipt from {order_date}" -msgstr "Din {blogname}-ordrefaktura fra {order_date}" - -#: classes/emails/class-wc-email-customer-reset-password.php:36 -#@ woocommerce -msgid "Reset password" -msgstr "Nulstil adgangskode" - -#: classes/emails/class-wc-email-customer-reset-password.php:37 -#@ woocommerce -msgid "Customer reset password emails are sent when a customer resets their password." -msgstr "Kunde nulstil password e-mails bliver sendt når en kunde nulstiller sit password." - -#: classes/emails/class-wc-email-customer-reset-password.php:42 -#@ woocommerce -msgid "Password Reset for {blogname}" -msgstr "Nulstil passwrod til {blogname}" - -#: classes/emails/class-wc-email-customer-reset-password.php:43 -#, fuzzy -#@ woocommerce -msgid "Password Reset Instructions" -msgstr "Instruktioner" - -#: classes/emails/class-wc-email-new-order.php:24 -#@ woocommerce -msgid "New order" -msgstr "Ny ordre" - -#: classes/emails/class-wc-email-new-order.php:25 -#@ woocommerce -msgid "New order emails are sent when an order is received/paid by a customer." -msgstr "Ny ordre e-mails bliver sendt når en ordre er modtaget/betalt af en kunde." - -#: classes/emails/class-wc-email-new-order.php:27 -#@ woocommerce -msgid "New customer order" -msgstr "Ny kundeordre" - -#: classes/emails/class-wc-email-new-order.php:28 -#@ woocommerce -msgid "[{blogname}] New customer order ({order_number}) - {order_date}" -msgstr "[{blogname}] Ny kunde ordre ({order_number}) - {order_date}" - -#: classes/emails/class-wc-email-new-order.php:121 -#@ woocommerce -msgid "Recipient(s)" -msgstr "Modtager(e)" - -#: classes/emails/class-wc-email-new-order.php:123 -#, php-format -#@ woocommerce -msgid "Enter recipients (comma separated) for this email. Defaults to %s." -msgstr "Indtast modtagere (separeret med kommaer) for denne e-mail. Defaults to %s." - -#: classes/emails/class-wc-email-new-order.php:130 -#, fuzzy, php-format -#@ woocommerce -msgid "This controls the email subject line. Leave blank to use the default subject: %s." -msgstr "Fremgår i produkt tag URL'er. Efterlad blank for at anvende standard slug'en." - -#: classes/emails/class-wc-email-new-order.php:137 -#, php-format -#@ woocommerce -msgid "This controls the main heading contained within the email notification. Leave blank to use the default heading: %s." -msgstr "Dette styrer hovedoverskrift indeholdt i e-mail-meddelelse. Lad feltet være tomt for at bruge standard overskrift: %s ." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:28 -#@ woocommerce -msgid "Bacs" -msgstr "Bacs" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:65 -#@ woocommerce -msgid "Enable Bank Transfer" -msgstr "Tillad bankoverførsel" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:69 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:63 -#: classes/gateways/cod/class-wc-gateway-cod.php:87 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:171 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:125 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:104 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:84 -#@ woocommerce -msgid "Title" -msgstr "Titel" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:71 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:65 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:173 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:127 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:85 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:83 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:60 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:106 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:86 -#@ woocommerce -msgid "This controls the title which the user sees during checkout." -msgstr "Dette kontrolerer titlen, som kunden ser under kassen." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:72 -#@ woocommerce -msgid "Direct Bank Transfer" -msgstr "Direkte bankoverførsel" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:76 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:70 -#@ woocommerce -msgid "Customer Message" -msgstr "Kunde besked" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:78 -#@ woocommerce -msgid "Give the customer instructions for paying via BACS, and let them know that their order won't be shipping until the money is received." -msgstr "Giv kunden instruktioner for betaling via BACS og underret dem om, at deres ordre ikke vil blive sendt, før betalingen er modtaget." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:79 -#@ woocommerce -msgid "Make your payment directly into our bank account. Please use your Order ID as the payment reference. Your order wont be shipped until the funds have cleared in our account." -msgstr "Betal direkte til vores bankkonto. Benyt venligst dit ordre ID som betalingsreference. Din ordre vil ikke blive sendt, før betalingen er godkendt på vores konto." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:82 -#@ woocommerce -msgid "Account Details" -msgstr "Kontodetaljer" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:84 -#@ woocommerce -msgid "Optionally enter your bank details below for customers to pay into." -msgstr "Du kan valgfrit indtaste dine bankoplysninger nedenfor, som kunder kan indbetale til." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:88 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:163 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:203 -#@ woocommerce -msgid "Account Name" -msgstr "Kontonavn" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:94 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:164 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:204 -#@ woocommerce -msgid "Account Number" -msgstr "Kontonummer" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:100 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:165 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:205 -#@ woocommerce -msgid "Sort Code" -msgstr "Registreringsnummer" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:106 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:166 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:206 -#@ woocommerce -msgid "Bank Name" -msgstr "Banknavn" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:112 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:167 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:207 -#@ woocommerce -msgid "IBAN" -msgstr "IBAN" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:117 -#@ woocommerce -msgid "BIC (formerly Swift)" -msgstr "BIC (tidligere Swift)" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:136 -#@ woocommerce -msgid "BACS Payment" -msgstr "BACS Betaling" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:137 -#@ woocommerce -msgid "Allows payments by BACS (Bank Account Clearing System), more commonly known as direct bank/wire transfer." -msgstr "Tillad betalinger via BACS (Bank Account Clearing System), bedre kendt som direkte bank/bankoverførsel." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:158 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:200 -#@ woocommerce -msgid "Our Details" -msgstr "Vores oplysninger" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:168 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:208 -#@ woocommerce -msgid "BIC" -msgstr "BIC" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:234 -#@ woocommerce -msgid "Awaiting BACS payment" -msgstr "Afventer BACS betaling" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:28 -#@ woocommerce -msgid "Cheque" -msgstr "Check" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:59 -#@ woocommerce -msgid "Enable Cheque Payment" -msgstr "Aktiver checkbetaling" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:66 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:90 -#@ woocommerce -msgid "Cheque Payment" -msgstr "Checkbetaling" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:72 -#@ woocommerce -msgid "Let the customer know the payee and where they should be sending the cheque to and that their order won't be shipping until you receive it." -msgstr "Lad kunden kende betalingsmodtageren og hvor de skal sende checks til, og at deres ordre ikke vil blive sendt, før du modtager betalingen." - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:73 -#@ woocommerce -msgid "Please send your cheque to Store Name, Store Street, Store Town, Store State / County, Store Postcode." -msgstr "Send venligst din check til Butiksnavn, butiksadresse, butiksby, butiks stat/land, butikspostnummer." - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:91 -#@ woocommerce -msgid "Allows cheque payments. Why would you take cheques in this day and age? Well you probably wouldn't but it does allow you to make test purchases for testing order emails and the 'success' pages etc." -msgstr "Tillad checkbetaling. Hvorfor vil du modtage checks i dag? Det vil du nok heller ikke, men det tillader dig at lave testbestillinger for at teste ordre e-mails og \"succes\" sider osv." - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:147 -#@ woocommerce -msgid "Awaiting cheque payment" -msgstr "Afventer checkbetaling" - -#: classes/gateways/cod/class-wc-gateway-cod.php:27 -#: classes/gateways/cod/class-wc-gateway-cod.php:54 -#: classes/gateways/cod/class-wc-gateway-cod.php:90 -#@ woocommerce -msgid "Cash on Delivery" -msgstr "Efterkrav" - -#: classes/gateways/cod/class-wc-gateway-cod.php:55 -#@ woocommerce -msgid "Have your customers pay with cash (or by other means) upon delivery." -msgstr "Få dine kunder til at betale kontant (eller på anden måde) ved levering." - -#: classes/gateways/cod/class-wc-gateway-cod.php:80 -#@ woocommerce -msgid "Enable COD" -msgstr "Aktiver efterkrav" - -#: classes/gateways/cod/class-wc-gateway-cod.php:81 -#@ woocommerce -msgid "Enable Cash on Delivery" -msgstr "Aktiver kontant ved levering" - -#: classes/gateways/cod/class-wc-gateway-cod.php:89 -#@ woocommerce -msgid "Payment method title that the customer will see on your website." -msgstr "Betalingsmetode titel som kunden vil se på din hjemmeside." - -#: admin/post-types/shop_coupon.php:28 -#: classes/gateways/cod/class-wc-gateway-cod.php:94 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:178 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:132 -#: woocommerce-template.php:748 -#@ woocommerce -msgid "Description" -msgstr "Beskrivelse" - -#: classes/gateways/cod/class-wc-gateway-cod.php:96 -#@ woocommerce -msgid "Payment method description that the customer will see on your website." -msgstr "Betalingsmetodebeskrivelse som kunden vil se på din hjemmeside." - -#: classes/gateways/cod/class-wc-gateway-cod.php:100 -#@ woocommerce -msgid "Instructions" -msgstr "Instruktioner" - -#: classes/gateways/cod/class-wc-gateway-cod.php:102 -#@ woocommerce -msgid "Instructions that will be added to the thank you page." -msgstr "Instruktioner som vil blive tilføjet takkesiden." - -#: classes/gateways/cod/class-wc-gateway-cod.php:106 -#, fuzzy -#@ woocommerce -msgid "Enable for shipping methods" -msgstr "Aktiver denne forsendelsesmetode" - -#: classes/gateways/cod/class-wc-gateway-cod.php:111 -#@ woocommerce -msgid "If COD is only available for certain methods, set it up here. Leave blank to enable for all methods." -msgstr "Hvis COD er ​​kun tilgængelig for visse metoder, sæt det op her. Lad feltet være tomt for at aktivere for alle metoder." - -#: classes/gateways/cod/class-wc-gateway-cod.php:176 -#@ woocommerce -msgid "Payment to be made upon delivery." -msgstr "Betaling foregår ved levering." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:31 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:196 -#@ woocommerce -msgid "Mijireh Checkout" -msgstr "Mijireh Checkout" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:143 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:321 -#@ woocommerce -msgid "Mijireh error:" -msgstr "Mijireh fejl:" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:160 -#@ woocommerce -msgid "Enable Mijireh Checkout" -msgstr "Aktiver Mijireh Checkout" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:164 -#@ woocommerce -msgid "Access Key" -msgstr "Adgangsnøgle" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:166 -#@ woocommerce -msgid "The Mijireh access key for your store." -msgstr "Mijireh adgangsnøglen for din butik." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:174 -#@ woocommerce -msgid "Credit Card" -msgstr "Kreditkort" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:180 -#@ woocommerce -msgid "Pay securely with you credit card." -msgstr "Betal sikkert med dit kreditkort." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:181 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:134 -#@ woocommerce -msgid "This controls the description which the user sees during checkout." -msgstr "Dette kontrollerer beskrivelsen som kunden ser under kassen." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:200 -#@ woocommerce -msgid "Get started with Mijireh Checkout" -msgstr "Kom i gang med Mijireh Checkout" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:201 -#@ woocommerce -msgid "provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site. Mijireh supports a wide variety of payment gateways: Stripe, Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and more." -msgstr "giver en fuldt PCI Compliant, sikker måde at indsamle og fremsende kreditkort data til din betalingsgateway og samtidig holde dig i kontrol over udformningen af ​​dit websted. Mijireh understøtter en bred vifte af betaling gateways: Stripe, Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap og meget mere." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:203 -#@ woocommerce -msgid "Join for free" -msgstr "Tilmeld dig gratis" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:203 -#@ woocommerce -msgid "Learn more about WooCommerce and Mijireh" -msgstr "Lær mere om WooCommerce og Mijireh" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:207 -#@ woocommerce -msgid "provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." -msgstr "giver en fuldt PCI Compliant, sikker måde at indsamle og fremsende kreditkort data til din betalingsgateway og samtidig holde dig i kontrol over udformningen af ​​dit websted." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:34 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:128 -#@ woocommerce -msgid "PayPal" -msgstr "PayPal" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:90 -#@ woocommerce -msgid "PayPal standard" -msgstr "PayPal standard" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:91 -#@ woocommerce -msgid "PayPal standard works by sending the user to PayPal to enter their payment information." -msgstr "PayPal Standard virker ved at sende kunden til PayPal for at indtaste deres betalingsinformationer." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:103 -#@ woocommerce -msgid "Gateway Disabled" -msgstr "Gateway deaktiveret" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:103 -#@ woocommerce -msgid "PayPal does not support your store currency." -msgstr "PayPal understøtter ikke din butiksvaluta." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:121 -#@ woocommerce -msgid "Enable PayPal standard" -msgstr "Aktiver PayPal standard" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:135 -#@ woocommerce -msgid "Pay via PayPal; you can pay with your credit card if you don't have a PayPal account" -msgstr "Betal via PayPal; Du kan betale med dit kreditkort, hvis du ikke har en PayPal konto" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:138 -#@ woocommerce -msgid "PayPal Email" -msgstr "PayPal e-mail" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:140 -#@ woocommerce -msgid "Please enter your PayPal email address; this is needed in order to take payment." -msgstr "Indtast venligst din PayPal e-mail adresse; dette er nødvendigt for at modtage betaling." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:146 -#@ woocommerce -msgid "Invoice Prefix" -msgstr "Faktura præfiks" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:153 -#@ woocommerce -msgid "Submission method" -msgstr "Indsendelsesmetode" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:155 -#@ woocommerce -msgid "Use form submission method." -msgstr "Brug formularafsendelses metode." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:156 -#@ woocommerce -msgid "Enable this to post order data to PayPal via a form instead of using a redirect/querystring." -msgstr "Aktiver denne for at sende ordredata til PayPal via en formular i stedet for brug af omdirigering/querystring." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:160 -#@ woocommerce -msgid "Page Style" -msgstr "Side style" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:162 -#@ woocommerce -msgid "Optionally enter the name of the page style you wish to use. These are defined within your PayPal account." -msgstr "Eventuelt angiv navnet på den side-style du ønsker at bruge. Disse er defineret i din PayPal konto." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:168 -#@ woocommerce -msgid "Shipping options" -msgstr "Leveringsmuligheder" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:173 -#@ woocommerce -msgid "Shipping details" -msgstr "Forsendelsesoplysninger" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:175 -#@ woocommerce -msgid "Send shipping details to PayPal instead of billing." -msgstr "Send forsendelsesoplysninger til PayPal i stedet for faktureringsoplysninger." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:177 -#@ woocommerce -msgid "PayPal allows us to send 1 address. If you are using PayPal for shipping labels you may prefer to send the shipping address rather than billing." -msgstr "PayPal tillader os at sende 1 adresse. Hvis du anvender PayPal til forsendelsesetiketter foretrækker du måske at sende forsendelsesadressen frem for faktureringsadressen." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:181 -#@ woocommerce -msgid "Address override" -msgstr "Overskriv adresse" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:183 -#@ woocommerce -msgid "Enable \"address_override\" to prevent address information from being changed." -msgstr "Aktiver \"adresse_overskrivning\" for at forhindre at adresseinformation bliver ændret." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:184 -#@ woocommerce -msgid "PayPal verifies addresses therefore this setting can cause errors (we recommend keeping it disabled)." -msgstr "PayPal verificere adresser, derfor kan denne indstilling forsage fejl (vi anbefaler, at den er deaktiveret)." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:188 -#@ woocommerce -msgid "Gateway Testing" -msgstr "Gateway Testing" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:193 -#@ woocommerce -msgid "PayPal sandbox" -msgstr "PayPal sandbox" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:195 -#@ woocommerce -msgid "Enable PayPal sandbox" -msgstr "Aktiver PayPal sandbox" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:197 -#, php-format -#@ woocommerce -msgid "PayPal sandbox can be used to test payments. Sign up for a developer account here." -msgstr "PayPal sandbox kan anvendes til at teste betalinger. Opret en udviklerkonto her." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:200 -#@ woocommerce -msgid "Debug Log" -msgstr "Fejlret log" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:202 -#@ woocommerce -msgid "Enable logging" -msgstr "Aktiver logning" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:204 -#@ default -msgid "Log PayPal events, such as IPN requests, inside woocommerce/logs/paypal.txt" -msgstr "Log PayPal hændelser, såsom IPN forespørgsler, i woocommerce/logs/paypal.txt" - -#: admin/post-types/shop_order.php:98 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:313 -#, php-format -#@ woocommerce -msgid "Order %s" -msgstr "Ordre %s" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:323 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:373 -#@ woocommerce -msgid "Shipping via" -msgstr "Forsendelse via" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:414 -#@ woocommerce -msgid "Thank you for your order. We are now redirecting you to PayPal to make payment." -msgstr "Tak for din bestilling. Vi omdirirgerer dig nu til PayPal for at gennemføre betalingen." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:435 -#@ woocommerce -msgid "Pay via PayPal" -msgstr "Betal via PayPal" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:435 -#@ woocommerce -msgid "Cancel order & restore cart" -msgstr "Annuler ordre og gendan kurv" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:489 -#@ woocommerce -msgid "Thank you for your order, please click the button below to pay with PayPal." -msgstr "Tak for din bestilling, klik venligst på knappen nedenfor for at betale med PayPal." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:634 -#, php-format -#@ woocommerce -msgid "Validation error: PayPal amounts do not match (gross %s)." -msgstr "Valideringsfejl: PayPal-beløb svarer ikke til (gross %s)." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:652 -#@ woocommerce -msgid "IPN payment completed" -msgstr "IPN betaling gennemført" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:664 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:672 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:690 -#, php-format -#@ woocommerce -msgid "Payment %s via IPN." -msgstr "Betaling %s via IPN." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:677 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:695 -#@ woocommerce -msgid "Order refunded/reversed" -msgstr "Ordre refunderet/taget tilbage" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:678 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:696 -#, php-format -#@ woocommerce -msgid "Order %s has been marked as refunded - PayPal reason code: %s" -msgstr "Ordre %s er blevet markeret som refunderet - PayPal årsagskode: %s" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:681 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:699 -#, php-format -#@ woocommerce -msgid "Payment for order %s refunded/reversed" -msgstr "Betaling for ordre %s refunderet/taget tilbage" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:26 -#@ woocommerce -msgid "Google Analytics" -msgstr "Google Analytics" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:27 -#@ woocommerce -msgid "Google Analytics is a free service offered by Google that generates detailed statistics about the visitors to a website." -msgstr "Google Analytics er en gratis service leveret af Google, som genererer detaljeret statistik omkring besøg på en hjemmeside.." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:62 -#@ woocommerce -msgid "Google Analytics ID" -msgstr "Google Analytics ID" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:63 -#@ woocommerce -msgid "Log into your google analytics account to find your ID. e.g. UA-XXXXX-X" -msgstr "Log ind på din Google Analytics konto for at finde dit ID. Fx UA-XXXXX-X" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:68 -#@ woocommerce -msgid "Tracking code" -msgstr "Tracking kode" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:69 -#@ woocommerce -msgid "Add tracking code to your site's footer. You don't need to enable this if using a 3rd party analytics plugin." -msgstr "Tilføj tracking kode til din sides footer. Du behøver ikke aktivere dette, hvis du bruger et tredjeparts Analytics plugin." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:75 -#@ woocommerce -msgid "Add eCommerce tracking code to the thankyou page" -msgstr "Tilføj eCommerce tracking kode til takkesiden" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:81 -#@ woocommerce -msgid "Add event tracking code for add to cart actions" -msgstr "Tilføj begivenhed sporingskoden for tilføj til indkøbskurv handlinger" - -#: admin/post-types/shop_order.php:95 -#: admin/post-types/writepanels/writepanel-order_data.php:93 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:113 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:168 -#: woocommerce-ajax.php:1725 -#@ woocommerce -msgid "Guest" -msgstr "Gæst" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:201 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:258 -#: templates/single-product/meta.php:19 -#@ woocommerce -msgid "SKU:" -msgstr "Varenummer:" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:74 -#: admin/woocommerce-admin-taxonomies.php:28 -#: admin/woocommerce-admin-taxonomies.php:122 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:256 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:276 -#: woocommerce.php:948 -#@ woocommerce -msgid "Products" -msgstr "Produkter" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:277 -#@ woocommerce -msgid "Add to Cart" -msgstr "Tilføj til kurv" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:26 -#@ woocommerce -msgid "ShareDaddy" -msgstr "ShareDaddy" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:27 -#@ woocommerce -msgid "ShareDaddy is a sharing plugin bundled with JetPack." -msgstr "ShareDaddy er et delingsplugin bundtet med JetPack." - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:51 -#@ woocommerce -msgid "Output ShareDaddy button?" -msgstr "Vis ShareDaddy knap?" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:52 -#@ woocommerce -msgid "Enable this option to show the ShareDaddy button on the product page." -msgstr "Aktiver denne indstilling for at vise ShareDaddy knappen på produktsiden." - -#: classes/integrations/sharethis/class-wc-sharethis.php:29 -#@ woocommerce -msgid "ShareThis" -msgstr "ShareThis" - -#: classes/integrations/sharethis/class-wc-sharethis.php:30 -#@ woocommerce -msgid "ShareThis offers a sharing widget which will allow customers to share links to products with their friends." -msgstr "ShareThis tilbyder en delings widget, som tillader kunder at dele produktlinks til deres venner." - -#: classes/integrations/sharethis/class-wc-sharethis.php:63 -#@ woocommerce -msgid "ShareThis Publisher ID" -msgstr "ShareThis udgiver ID" - -#: classes/integrations/sharethis/class-wc-sharethis.php:64 -#, php-format -#@ woocommerce -msgid "Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons on product pages." -msgstr "Angiv dit %1$sShareThis udgiver ID%2$s for at vise delingsknapper på produktsider." - -#: classes/integrations/sharethis/class-wc-sharethis.php:69 -#@ woocommerce -msgid "ShareThis Code" -msgstr "Del denne kode" - -#: classes/integrations/sharethis/class-wc-sharethis.php:70 -#@ woocommerce -msgid "You can tweak the ShareThis code by editing this option." -msgstr "Du kan justere ShareThis koden ved at redigere denne instilling.." - -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:22 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:329 -#@ woocommerce -#@ default -msgid "ShareYourCart" -msgstr "Del din kurv" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:328 -#@ default -msgid "Share your cart settings" -msgstr "Del dine kurvindstillinger" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:342 -#, fuzzy -#@ default -msgid "Button" -msgstr "Knap tekst" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:343 -#, fuzzy -#@ default -msgid "Customize Button" -msgstr "Kunde log ind" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:351 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:352 -#@ default -msgid "Documentation" -msgstr "Dokumentation" - -#: classes/integrations/shareyourcart/views/admin-page.php:33 -#@ woocommerce -msgid "Setup your ShareYourCart account" -msgstr "Opret din ShareYourCart konto" - -#: classes/integrations/shareyourcart/views/admin-page.php:35 -#@ woocommerce -msgid "Create an account" -msgstr "Opret en konto" - -#: classes/integrations/shareyourcart/views/admin-page.php:35 -#@ woocommerce -msgid "Can't access your account?" -msgstr "Kan du ikke få adgang til din konto?" - -#: classes/integrations/shareyourcart/views/admin-page.php:100 -#@ woocommerce -msgid "Configure" -msgstr "Konfigurer" - -#: admin/woocommerce-admin-settings.php:386 -#: classes/integrations/shareyourcart/views/admin-page.php:110 -#: classes/integrations/shareyourcart/views/button-settings-page.php:120 -#@ woocommerce -msgid "Save changes" -msgstr "Gem ændringer" - -#: classes/integrations/shareyourcart/views/button-settings-page.php:8 -#: classes/integrations/shareyourcart/views/button-settings-page.php:11 -#@ woocommerce -msgid "Button style" -msgstr "Button style" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:25 -#@ woocommerce -msgid "Flat rate" -msgstr "Fast sats" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:28 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:461 -#@ woocommerce -msgid "Flat Rates" -msgstr "Faste satser" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:29 -#@ woocommerce -msgid "Flat rates let you define a standard rate per item, or per order." -msgstr "Faste satser lader dig definere en standard sats pr. produkt eller pr ordre." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:79 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:54 -#@ woocommerce -msgid "Enable this shipping method" -msgstr "Aktiver denne forsendelsesmetode" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:83 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:81 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:58 -#@ woocommerce -msgid "Method Title" -msgstr "Metodetitel" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:86 -#@ woocommerce -msgid "Flat Rate" -msgstr "Fast sats" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:90 -#@ woocommerce -msgid "Cost per order" -msgstr "Pris pr. ordre" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:96 -#, fuzzy -#@ woocommerce -msgid "Enter a cost (excluding tax) per order, e.g. 5.00. Leave blank to disable." -msgstr "Gebyr ekskl. moms. Angiv et beløb, fx 2,50, eller en procentdel, fx 5%. Efterlad blank for at deaktivere." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:102 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:88 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:143 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:99 -#@ woocommerce -msgid "Method availability" -msgstr "Metodetilgængelighed" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:107 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:93 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:148 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:104 -#@ woocommerce -msgid "All allowed countries" -msgstr "Alle tilladte lande" - -#: admin/settings/settings-init.php:68 admin/settings/settings-init.php:73 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:108 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:112 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:98 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:149 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:153 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:105 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:109 -#@ woocommerce -msgid "Specific Countries" -msgstr "Specificer lande" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:120 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:83 -#@ woocommerce -msgid "Calculation Type" -msgstr "Beregningstype" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:124 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:87 -#@ woocommerce -msgid "Per Order - charge shipping for the entire order as a whole" -msgstr "Pr. ordre - opkræv forsendelse for hele ordren som en helhed" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:125 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:88 -#@ woocommerce -msgid "Per Item - charge shipping for each item individually" -msgstr "Pr. produkt - opkræv forsendelse for hvert enkelt produkt individuelt" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:126 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:89 -#@ woocommerce -msgid "Per Class - charge shipping for each shipping class in an order" -msgstr "Pr. klasse - opkræv forsendelses for hver forsendelsesklasse i en ordre" - -#: admin/post-types/writepanels/writepanel-product_data.php:178 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:130 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:93 -#@ woocommerce -msgid "Tax Status" -msgstr "Momsstatus" - -#: admin/post-types/writepanels/order-fee-html.php:20 -#: admin/post-types/writepanels/writepanel-product_data.php:179 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:134 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:97 -#@ woocommerce -msgid "Taxable" -msgstr "Momspligtig" - -#: admin/post-types/writepanels/writepanel-product_data.php:181 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:135 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:98 -#@ woocommerce -msgid "None" -msgstr "Ingen" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:139 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:102 -#@ woocommerce -msgid "Default Cost" -msgstr "Standardomkostninger" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:145 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:108 -#@ woocommerce -msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -msgstr "Omkostninger ekskl. moms. Angiv et beløb, fx 2,50." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:151 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:114 -#@ woocommerce -msgid "Default Handling Fee" -msgstr "Standard ekspeditionsgebyr" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:153 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:116 -#@ woocommerce -msgid "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. Leave blank to disable." -msgstr "Gebyr ekskl. moms. Angiv et beløb, fx 2,50, eller en procentdel, fx 5%. Efterlad blank for at deaktivere." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:159 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:122 -#@ woocommerce -msgid "Minimum Fee" -msgstr "Minimumsgebyr" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:165 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:128 -#@ woocommerce -msgid "Enter a minimum fee amount. Fee's less than this will be increased. Leave blank to disable." -msgstr "Angiv et minimums gebyrbeløb. Gebyr mindre end denne vil blive øget. Efterlad blank for at deaktivere." - -#: admin/settings/settings-init.php:833 -#: admin/woocommerce-admin-settings.php:290 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:171 -#@ woocommerce -msgid "Shipping Options" -msgstr "Forsendelsesmuligheder" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:173 -#@ woocommerce -msgid "Optional extra shipping options with additional costs (one per line). Example: Option Name|Cost|Per-order (yes or no). Example: Priority Mail|6.95|yes. If per-order is set to no, it will use the \"Calculation Type\" setting." -msgstr "Valgfri ekstra forsendelsesindstillinger med ekstra omkostninger (én pr linje). Eksempel: Indstillingsnavn|Pris|Pris er pr. ordre (yes eller no). Eksempel: Prioriteret Post|6,95|yes. Hvis pr. ordre er sat til no, vil \"Beregningstype\" indstillingen blive anvendt." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:467 -#: woocommerce.php:857 -#@ woocommerce -msgid "Shipping Class" -msgstr "Forsendelsesklasse" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:468 -#@ woocommerce -msgid "Cost" -msgstr "Omkostninger" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:468 -#@ woocommerce -msgid "Cost, excluding tax." -msgstr "Omkostning ekskl. moms" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:469 -#@ woocommerce -msgid "Handling Fee" -msgstr "Ekspeditionsgebyr" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:469 -#@ woocommerce -msgid "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -msgstr "Gebyr ekskl. moms. Angiv et beløb, fx 2,50, eller en procentdel, fx 5%." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:474 -#@ woocommerce -msgid "+ Add Flat Rate" -msgstr "+ Tilføj fast sats" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:475 -#@ woocommerce -msgid "Add rates for shipping classes here — they will override the default costs defined above." -msgstr "Tilføj satser for forsendelsesklasser her — disse vil overskrive standard omkostningerne defineret ovenfor." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:475 -#@ woocommerce -msgid "Delete selected rates" -msgstr "Slet valgte satser?" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:495 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:528 -#@ woocommerce -msgid "Select a class…" -msgstr "Vælg en klasse…" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:500 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:501 -#@ woocommerce -msgid "0.00" -msgstr "0,00" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:542 -#@ woocommerce -msgid "Delete the selected rates?" -msgstr "Slet valgte satser?" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:25 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:145 -#@ woocommerce -msgid "Free Shipping" -msgstr "Fri fragt" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:77 -#@ woocommerce -msgid "Enable Free Shipping" -msgstr "Aktiver Fri fragt" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:106 -#@ woocommerce -msgid "Free Shipping Requires..." -msgstr "Fri fragt kræver ..." - -#: admin/post-types/writepanels/order-fee-html.php:19 -#: admin/post-types/writepanels/order-tax-html.php:8 -#: admin/post-types/writepanels/writepanel-order_data.php:558 -#: admin/post-types/writepanels/writepanel-order_data.php:663 -#: admin/woocommerce-admin-reports.php:1642 -#: admin/woocommerce-admin-reports.php:2655 -#: admin/woocommerce-admin-reports.php:2664 -#: admin/woocommerce-admin-users.php:90 admin/woocommerce-admin-users.php:112 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:110 -#: templates/order/order-details.php:110 templates/order/order-details.php:125 -#@ woocommerce -msgid "N/A" -msgstr "N/A" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:111 -#, fuzzy -#@ woocommerce -msgid "A valid free shipping coupon" -msgstr "Aktiver fri fragt" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:112 -#@ woocommerce -msgid "A minimum order amount (defined below)" -msgstr "Et minimum ordrebeløb (defineret nedenfor)" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:113 -#, fuzzy -#@ woocommerce -msgid "A minimum order amount OR a coupon" -msgstr "Minimums ordrebeløb" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:114 -#, fuzzy -#@ woocommerce -msgid "A minimum order amount AND a coupon" -msgstr "Minimums ordrebeløb" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:118 -#@ woocommerce -msgid "Minimum Order Amount" -msgstr "Minimums ordrebeløb" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:124 -#, fuzzy -#@ woocommerce -msgid "Users will need to spend this amount to get free shipping (if enabled above)." -msgstr "Kunder skal bruge dette beløb for at opnå fri fragt. Efterlad blank for at deaktivere." - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:28 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:31 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:61 -#@ woocommerce -msgid "International Delivery" -msgstr "International levering" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:32 -#@ woocommerce -msgid "International delivery based on flat rate shipping." -msgstr "International levering baseret på fast sats forsendelse." - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:65 -#@ woocommerce -msgid "Availability" -msgstr "Tilgængelighed" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:70 -#@ woocommerce -msgid "Selected countries" -msgstr " Valgte lande" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:71 -#@ woocommerce -msgid "Excluding selected countries" -msgstr "Eksklusive valgte lande" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:75 -#@ woocommerce -msgid "Countries" -msgstr "Lande" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:25 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:107 -#@ woocommerce -msgid "Local Delivery" -msgstr "Lokal levering" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:98 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:78 -#@ woocommerce -msgid "Enable" -msgstr "Aktiver" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:100 -#@ woocommerce -msgid "Enable local delivery" -msgstr "Aktiver lokal levering" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:111 -#@ woocommerce -msgid "Fee Type" -msgstr "Gebyr type" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:113 -#@ woocommerce -msgid "How to calculate delivery charges" -msgstr "Hvordan forsendelsesomkostninger beregnes" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 -#@ woocommerce -msgid "Fixed amount" -msgstr "Fast beløb" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:117 -#@ woocommerce -msgid "Percentage of cart total" -msgstr "Procentdel af kurv total" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:118 -#@ woocommerce -msgid "Fixed amount per product" -msgstr "Fast beløb pr. produkt" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:123 -#@ woocommerce -msgid "Delivery Fee" -msgstr "Leveringsgebyr" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:129 -#@ woocommerce -msgid "What fee do you want to charge for local delivery, disregarded if you choose free. Leave blank to disable." -msgstr "Hvilket gebyr vil du opkræve for lokal levering? Tilsidesæt hvis du vælger, at det skal være gratis. Efterlad blank for at deaktivere." - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:135 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:91 -#@ woocommerce -msgid "Zip/Post Codes" -msgstr "Post/zip numre" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:137 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:93 -#, fuzzy -#@ woocommerce -msgid "What zip/post codes would you like to offer delivery to? Separate codes with a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -msgstr "Hvilke zip/postnumre vil du tilbyde levering til? Separer koder med et kommategn." - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:172 -#@ woocommerce -msgid "Local delivery is a simple shipping method for delivering orders locally." -msgstr "Lokal levering er en simpel forsendelsesmetode til at levere ordre lokalt." - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:25 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:87 -#@ woocommerce -msgid "Local Pickup" -msgstr "Lokal afhentning" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:80 -#@ woocommerce -msgid "Enable local pickup" -msgstr "Aktiver lokal afhentning" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:117 -#, fuzzy -#@ woocommerce -msgid "Apply base tax rate" -msgstr "Anvend før moms" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:119 -#@ woocommerce -msgid "When this shipping method is chosen, apply the base tax rate rather than for the customer's given address." -msgstr "Når denne leveringsmetode er valgt, brug den almindelig afgiftsrate snarere end den, der svarer til kundens givne adresse." - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:134 -#@ woocommerce -msgid "Local pickup is a simple method which allows the customer to pick up their order themselves." -msgstr "Lokal afhentning er en simpel metode som tillader kunder selv at afhente deres ordre." - -#: classes/class-wc-coupon.php:497 -#@ woocommerce -msgid "Please enter a coupon code." -msgstr "Indtast venligst en kuponkode." - -#: classes/shortcodes/class-wc-shortcode-cart.php:54 -#: woocommerce-functions.php:1637 -#@ woocommerce -msgid "Please enter a valid postcode/ZIP." -msgstr "Angiv venligst et gyldigt postnummer/ZIP." - -#: classes/shortcodes/class-wc-shortcode-cart.php:65 -#: classes/shortcodes/class-wc-shortcode-cart.php:71 -#@ woocommerce -msgid "Shipping costs updated." -msgstr "Forsendelsesomkostninger opdateret." - -#: classes/shortcodes/class-wc-shortcode-checkout.php:64 -#@ woocommerce -msgid "The order totals have been updated. Please confirm your order by pressing the Place Order button at the bottom of the page." -msgstr "Ordretotalerne er blevet opdateret. Bekræft venligst ordren ved at klikke på knappen, Placer ordre, i bunden af siden." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:80 -#: woocommerce-core-functions.php:2488 woocommerce-functions.php:1559 -#@ woocommerce -msgid "Please enter your password." -msgstr "Indtast venligst din adgangskode." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:95 -#, fuzzy -#@ woocommerce -msgid "Your password has been reset." -msgstr "Dine indstillinger er blevet gemt." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:95 -#@ woocommerce -msgid "Log in" -msgstr "Log ind" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:116 -#, fuzzy -#@ woocommerce -msgid "Enter a username or e-mail address." -msgstr "Angiv venligst din e-mailadresse" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:123 -#, fuzzy -#@ woocommerce -msgid "There is no user registered with that email address." -msgstr "En konto er allerede registreret med din e-mail adresse. Log venligst ind." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:138 -#, fuzzy -#@ woocommerce -msgid "Invalid username or e-mail." -msgstr "Ugyldig e-mail/brugernavn." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:152 -#@ default -msgid "Password reset is not allowed for this user" -msgstr "Nulstilling af password er ikke tilladt for denne bruger" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:180 -#, fuzzy -#@ default -msgid "Check your e-mail for the confirmation link." -msgstr "Findes i din bekræftelses e-mail." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:200 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:205 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:212 -#, fuzzy -#@ woocommerce -msgid "Invalid key" -msgstr "Ugyldig bestilling." - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:53 -#@ woocommerce -msgid "Please enter a valid order ID" -msgstr "Indtast venligst et gyldigt ordre-ID" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:57 -#@ woocommerce -msgid "Please enter a valid order email" -msgstr "Indtast venligst en gyldig ordre e-mail" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:76 -#@ woocommerce -msgid "Sorry, we could not find that order id in our database." -msgstr "Beklager, vi kunne ikke finde det ordre-ID i vores database." - -#: classes/shortcodes/class-wc-shortcode-pay.php:65 -#: classes/shortcodes/class-wc-shortcode-pay.php:118 -#@ woocommerce -msgid "Your order has already been paid for. Please contact us if you need assistance." -msgstr "Din ordre er allerede betalt. Kontakt os venligst hvis du behøver assistance" - -#: classes/shortcodes/class-wc-shortcode-pay.php:70 -#: classes/shortcodes/class-wc-shortcode-pay.php:125 -#: classes/shortcodes/class-wc-shortcode-view-order.php:49 -#: woocommerce-functions.php:880 woocommerce-functions.php:959 -#@ woocommerce -msgid "Invalid order." -msgstr "Ugyldig bestilling." - -#: admin/woocommerce-admin-functions.php:188 -#: classes/shortcodes/class-wc-shortcode-pay.php:90 -#: templates/checkout/thankyou.php:40 -#: templates/emails/customer-completed-order.php:18 -#: templates/emails/customer-invoice.php:22 -#: templates/emails/customer-note.php:22 -#: templates/emails/customer-processing-order.php:18 -#@ woocommerce -msgid "Order:" -msgstr "Ordre:" - -#: classes/shortcodes/class-wc-shortcode-pay.php:94 -#: templates/checkout/thankyou.php:44 -#@ woocommerce -msgid "Date:" -msgstr "Dato:" - -#: admin/woocommerce-admin-dashboard.php:239 -#: classes/shortcodes/class-wc-shortcode-pay.php:98 -#: templates/checkout/thankyou.php:48 -#@ woocommerce -msgid "Total:" -msgstr "Total:" - -#: classes/shortcodes/class-wc-shortcode-pay.php:103 -#: templates/checkout/thankyou.php:53 -#@ woocommerce -msgid "Payment method:" -msgstr "Betalingsmetode:" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:49 -#@ woocommerce -msgid "My Account →" -msgstr "Min konto →" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:56 -#, fuzzy, php-format -#@ woocommerce -msgid "Order %s made on %s" -msgstr "Ordre %s foretaget %s" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:57 -#, fuzzy, php-format -#@ woocommerce -msgid "Order status: %s" -msgstr ". Ordrestatus: %s" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:63 -#: templates/order/tracking.php:31 -#@ woocommerce -msgid "Order Updates" -msgstr "Ordreopdateringer" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:69 -#, fuzzy -#@ woocommerce -msgid "l jS \\of F Y, h:ia" -msgstr "l jS \\of F Y h:i:s A" - -#: classes/widgets/class-wc-widget-best-sellers.php:31 -#@ woocommerce -msgid "Display a list of your best selling products on your site." -msgstr "Vis en liste med dine bedst sælgende produkter på din side." - -#: classes/widgets/class-wc-widget-best-sellers.php:33 -#@ woocommerce -msgid "WooCommerce Best Sellers" -msgstr "WooCommerce Best Sellers" - -#: classes/widgets/class-wc-widget-best-sellers.php:71 -#@ woocommerce -msgid "Best Sellers" -msgstr "Best Sellers" - -#: classes/widgets/class-wc-widget-best-sellers.php:192 -#: classes/widgets/class-wc-widget-cart.php:115 -#: classes/widgets/class-wc-widget-featured-products.php:172 -#: classes/widgets/class-wc-widget-layered-nav.php:349 -#: classes/widgets/class-wc-widget-onsale.php:177 -#: classes/widgets/class-wc-widget-price-filter.php:179 -#: classes/widgets/class-wc-widget-product-categories.php:185 -#: classes/widgets/class-wc-widget-product-search.php:91 -#: classes/widgets/class-wc-widget-product-tag-cloud.php:101 -#: classes/widgets/class-wc-widget-random-products.php:133 -#: classes/widgets/class-wc-widget-recent-products.php:169 -#: classes/widgets/class-wc-widget-recent-reviews.php:158 -#: classes/widgets/class-wc-widget-recently-viewed.php:166 -#: classes/widgets/class-wc-widget-top-rated-products.php:159 -#@ woocommerce -msgid "Title:" -msgstr "Titel:" - -#: classes/widgets/class-wc-widget-best-sellers.php:195 -#: classes/widgets/class-wc-widget-featured-products.php:175 -#: classes/widgets/class-wc-widget-onsale.php:180 -#: classes/widgets/class-wc-widget-random-products.php:138 -#: classes/widgets/class-wc-widget-recent-products.php:172 -#: classes/widgets/class-wc-widget-recent-reviews.php:161 -#: classes/widgets/class-wc-widget-recently-viewed.php:169 -#: classes/widgets/class-wc-widget-top-rated-products.php:162 -#@ woocommerce -msgid "Number of products to show:" -msgstr "Antal af produkter at vise:" - -#: classes/widgets/class-wc-widget-best-sellers.php:199 -#@ woocommerce -msgid "Hide free products" -msgstr "Skjul gratis produkter" - -#: classes/widgets/class-wc-widget-cart.php:33 -#@ woocommerce -msgid "Display the user's Cart in the sidebar." -msgstr "Vis brugerens kurv i sidebaren." - -#: classes/widgets/class-wc-widget-cart.php:35 -#@ woocommerce -msgid "WooCommerce Cart" -msgstr "WooCommerce kurv" - -#: classes/widgets/class-wc-widget-cart.php:119 -#@ woocommerce -msgid "Hide if cart is empty" -msgstr "Skjul hvis kurven er tom" - -#: classes/widgets/class-wc-widget-featured-products.php:35 -#@ woocommerce -msgid "Display a list of featured products on your site." -msgstr "Vis en liste med udvalgte produkter på din side." - -#: classes/widgets/class-wc-widget-featured-products.php:37 -#@ woocommerce -msgid "WooCommerce Featured Products" -msgstr "WooCommerce Udvalgte Produkter" - -#: classes/widgets/class-wc-widget-featured-products.php:75 -#@ woocommerce -msgid "Featured Products" -msgstr "Udvalgte produkter" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:31 -#@ woocommerce -msgid "Shows active layered nav filters so users can see and deactivate them." -msgstr "Viser aktive lag nav filtre, så brugerne kan se og deaktivere dem." - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:33 -#, fuzzy -#@ woocommerce -msgid "WooCommerce Layered Nav Filters" -msgstr "WooCommerce Lagdelt Navigation" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:62 -#@ woocommerce -msgid "Active filters" -msgstr "Aktive filtre" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:93 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -#, fuzzy -#@ woocommerce -msgid "Remove filter" -msgstr "Fjern billede" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#, fuzzy -#@ woocommerce -msgid "Min" -msgstr "in" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -#, fuzzy -#@ woocommerce -msgid "Max" -msgstr "Moms" - -#: classes/widgets/class-wc-widget-layered-nav.php:31 -#@ woocommerce -msgid "Shows a custom attribute in a widget which lets you narrow down the list of products when viewing product categories." -msgstr "Viser en brugerdefineret egenskab i en widget, som lader dig indsnævre liste af produkter, når du ser produktkategorier." - -#: classes/widgets/class-wc-widget-layered-nav.php:33 -#@ woocommerce -msgid "WooCommerce Layered Nav" -msgstr "WooCommerce Lagdelt Navigation" - -#: classes/widgets/class-wc-widget-layered-nav.php:100 -#, php-format -#@ woocommerce -msgid "Any %s" -msgstr "Vilkårlig %s" - -#: classes/widgets/class-wc-widget-layered-nav.php:352 -#@ woocommerce -msgid "Attribute:" -msgstr "Egenskab:" - -#: classes/widgets/class-wc-widget-layered-nav.php:363 -#@ woocommerce -msgid "Display Type:" -msgstr "Visningstype:" - -#: classes/widgets/class-wc-widget-layered-nav.php:365 -#@ woocommerce -msgid "List" -msgstr "Liste" - -#: classes/widgets/class-wc-widget-layered-nav.php:366 -#@ woocommerce -msgid "Dropdown" -msgstr "Dropdown" - -#: classes/widgets/class-wc-widget-layered-nav.php:369 -#@ woocommerce -msgid "Query Type:" -msgstr "Forespørgselstype" - -#: classes/widgets/class-wc-widget-layered-nav.php:371 -#@ woocommerce -msgid "AND" -msgstr "OG" - -#: classes/widgets/class-wc-widget-layered-nav.php:372 -#@ woocommerce -msgid "OR" -msgstr "ELLER" - -#: classes/widgets/class-wc-widget-login.php:31 -#@ woocommerce -msgid "Display a login area and \"My Account\" links in the sidebar." -msgstr "Vis et \"log ind\"-område og \"Min konto\" links i sidepanel." - -#: classes/widgets/class-wc-widget-login.php:33 -#@ woocommerce -msgid "WooCommerce Login" -msgstr "WooCommerce log ind" - -#: classes/widgets/class-wc-widget-login.php:59 -#: classes/widgets/class-wc-widget-login.php:223 -#@ woocommerce -msgid "Customer Login" -msgstr "Kunde log ind" - -#: classes/widgets/class-wc-widget-login.php:60 -#: classes/widgets/class-wc-widget-login.php:226 -#, php-format -#@ woocommerce -msgid "Welcome %s" -msgstr "Velkommen %s" - -#: classes/widgets/class-wc-widget-login.php:76 -#@ woocommerce -msgid "My account" -msgstr "Min konto" - -#: classes/widgets/class-wc-widget-login.php:77 -#@ woocommerce -msgid "Change my password" -msgstr "Skift min adgangskode" - -#: admin/woocommerce-admin-install.php:216 -#: classes/widgets/class-wc-widget-login.php:78 -#@ woocommerce -msgid "Logout" -msgstr "Log af" - -#: classes/widgets/class-wc-widget-login.php:116 -#: templates/myaccount/form-login.php:29 -#: templates/myaccount/form-lost-password.php:24 -#: templates/shop/form-login.php:20 -#, fuzzy -#@ woocommerce -msgid "Username or email" -msgstr "Brugernavn" - -#: classes/widgets/class-wc-widget-login.php:118 -#: templates/myaccount/form-login.php:33 templates/myaccount/form-login.php:85 -#: templates/shop/form-login.php:24 -#@ woocommerce -msgid "Password" -msgstr "Adgangskode" - -#: classes/widgets/class-wc-widget-login.php:120 woocommerce-functions.php:945 -#@ woocommerce -msgid "Login →" -msgstr "Log ind →" - -#: classes/widgets/class-wc-widget-login.php:120 -#@ woocommerce -msgid "Lost password?" -msgstr "Glemt adgangskode?" - -#: classes/widgets/class-wc-widget-login.php:222 -#@ woocommerce -msgid "Logged out title:" -msgstr "Logget ud titel:" - -#: classes/widgets/class-wc-widget-login.php:225 -#@ woocommerce -msgid "Logged in title:" -msgstr "Logget ind titel:" - -#: classes/widgets/class-wc-widget-onsale.php:31 -#@ woocommerce -msgid "Display a list of your on-sale products on your site." -msgstr "Vis en liste med varer på tilbud på din side." - -#: classes/widgets/class-wc-widget-onsale.php:33 -#@ woocommerce -msgid "WooCommerce On-sale" -msgstr "WooCommerce på tilbud" - -#: classes/widgets/class-wc-widget-onsale.php:70 -#@ woocommerce -msgid "On Sale" -msgstr "På tilbud" - -#: classes/widgets/class-wc-widget-price-filter.php:33 -#@ woocommerce -msgid "Shows a price filter slider in a widget which lets you narrow down the list of shown products when viewing product categories." -msgstr "Viser en prisfilter slider i en widget, som lader dig indsnævre listen af viste produkter, når du ser produktkategorier." - -#: classes/widgets/class-wc-widget-price-filter.php:35 -#@ woocommerce -msgid "WooCommerce Price Filter" -msgstr "WooCommerce prissortering" - -#: classes/widgets/class-wc-widget-price-filter.php:136 -#@ woocommerce -msgid "Min price" -msgstr "Mindstepris" - -#: classes/widgets/class-wc-widget-price-filter.php:137 -#@ woocommerce -msgid "Max price" -msgstr "Maks. pris" - -#: classes/widgets/class-wc-widget-price-filter.php:138 -#@ woocommerce -msgid "Filter" -msgstr "Sorter" - -#: classes/widgets/class-wc-widget-price-filter.php:140 -#@ woocommerce -msgid "Price:" -msgstr "Pris:" - -#: classes/widgets/class-wc-widget-price-filter.php:162 -#@ woocommerce -msgid "Filter by price" -msgstr "Sorter efter pris" - -#: classes/widgets/class-wc-widget-product-categories.php:33 -#@ woocommerce -msgid "A list or dropdown of product categories." -msgstr "En liste eller dropdown af produktkategorier." - -#: classes/widgets/class-wc-widget-product-categories.php:35 -#@ woocommerce -msgid "WooCommerce Product Categories" -msgstr "WooCommerce produktkategorier" - -#: classes/widgets/class-wc-widget-product-categories.php:57 -#: woocommerce.php:787 woocommerce.php:789 -#@ woocommerce -msgid "Product Categories" -msgstr "Produktkategorier" - -#: classes/widgets/class-wc-widget-product-categories.php:129 -#@ woocommerce -msgid "No product categories exist." -msgstr "Der eksisterer ingen produktkategorier." - -#: classes/widgets/class-wc-widget-product-categories.php:188 -#@ woocommerce -msgid "Order by:" -msgstr "Sorter efter:" - -#: classes/widgets/class-wc-widget-product-categories.php:190 -#@ woocommerce -msgid "Category Order" -msgstr "Kategorisortering" - -#: admin/post-types/product.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:372 -#: admin/post-types/writepanels/writepanel-product_data.php:451 -#: admin/woocommerce-admin-attributes.php:232 -#: admin/woocommerce-admin-attributes.php:268 -#: admin/woocommerce-admin-attributes.php:306 -#: admin/woocommerce-admin-attributes.php:329 -#: admin/woocommerce-admin-attributes.php:373 -#: admin/woocommerce-admin-attributes.php:398 -#: admin/woocommerce-admin-init.php:450 -#: classes/widgets/class-wc-widget-product-categories.php:191 -#: templates/single-product-reviews.php:99 woocommerce-ajax.php:1244 -#@ woocommerce -msgid "Name" -msgstr "Navn" - -#: classes/widgets/class-wc-widget-product-categories.php:195 -#@ woocommerce -msgid "Show as dropdown" -msgstr "Vis som dropdown" - -#: classes/widgets/class-wc-widget-product-categories.php:198 -#@ woocommerce -msgid "Show post counts" -msgstr "Vis indlægsoptælling" - -#: classes/widgets/class-wc-widget-product-categories.php:201 -#@ woocommerce -msgid "Show hierarchy" -msgstr "Vis hierarki" - -#: classes/widgets/class-wc-widget-product-categories.php:204 -#, fuzzy -#@ woocommerce -msgid "Only show children for the current category" -msgstr "Vis kun underkateorier af den aktuelle kategori " - -#: classes/widgets/class-wc-widget-product-search.php:31 -#@ woocommerce -msgid "A Search box for products only." -msgstr "Et søgefelt udelukkende for produkter." - -#: classes/widgets/class-wc-widget-product-search.php:33 -#@ woocommerce -msgid "WooCommerce Product Search" -msgstr "WooCommerce produktsøgning" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:31 -#@ woocommerce -msgid "Your most used product tags in cloud format." -msgstr "Dine mest anvendte produkt nøgleord i cloud form." - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:33 -#@ woocommerce -msgid "WooCommerce Product Tags" -msgstr "WooCommerce Produkt Nøgleord" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:58 -#: woocommerce.php:823 woocommerce.php:825 -#@ woocommerce -msgid "Product Tags" -msgstr "Produkt tags" - -#: classes/widgets/class-wc-widget-random-products.php:24 -#@ woocommerce -msgid "WooCommerce Random Products" -msgstr "WooCommerce tilfældige produkter" - -#: classes/widgets/class-wc-widget-random-products.php:27 -#@ woocommerce -msgid "Display a list of random products on your site." -msgstr "Vis en liste med tilfældige produkter på din side." - -#: classes/widgets/class-wc-widget-random-products.php:46 -#@ woocommerce -msgid "Random Products" -msgstr "Tilfældige produkter" - -#: classes/widgets/class-wc-widget-random-products.php:144 -#: classes/widgets/class-wc-widget-recent-products.php:176 -#@ woocommerce -msgid "Show hidden product variations" -msgstr "Vis skjulte produktvarianter" - -#: classes/widgets/class-wc-widget-recent-products.php:31 -#@ woocommerce -msgid "Display a list of your most recent products on your site." -msgstr "Vis en liste med dine seneste produkter på din side." - -#: classes/widgets/class-wc-widget-recent-products.php:33 -#@ woocommerce -msgid "WooCommerce Recent Products" -msgstr "WooCommerce seneste produkter" - -#: classes/widgets/class-wc-widget-recent-products.php:70 -#@ woocommerce -msgid "New Products" -msgstr "Nye Produkter" - -#: classes/widgets/class-wc-widget-recent-reviews.php:31 -#@ woocommerce -msgid "Display a list of your most recent reviews on your site." -msgstr "Vis en liste med dine seneste anmeldelser på din side." - -#: admin/woocommerce-admin-dashboard.php:45 -#: classes/widgets/class-wc-widget-recent-reviews.php:33 -#@ woocommerce -msgid "WooCommerce Recent Reviews" -msgstr "WooCommerce seneste anmeldelser" - -#: classes/widgets/class-wc-widget-recent-reviews.php:71 -#@ woocommerce -msgid "Recent Reviews" -msgstr "Seneste anmeldelser" - -#: templates/single-product/review.php:26 -#, fuzzy, php-format -#@ woocommerce -msgid "Rated %d out of 5" -msgstr "Vurderet %s ud af 5" - -#: classes/widgets/class-wc-widget-recent-reviews.php:97 -#, php-format -#@ woocommerce -msgctxt "by comment author" -msgid "by %1$s" -msgstr "af %1$s" - -#: classes/widgets/class-wc-widget-recently-viewed.php:31 -#@ woocommerce -msgid "Display a list of recently viewed products." -msgstr "Vis en liste med seneste viste produkter." - -#: classes/widgets/class-wc-widget-recently-viewed.php:33 -#@ woocommerce -msgid "WooCommerce Recently Viewed Products" -msgstr "WooCommerce seneste viste produkter" - -#: classes/widgets/class-wc-widget-recently-viewed.php:76 -#@ woocommerce -msgid "Recently viewed" -msgstr "Seneste viste" - -#: classes/widgets/class-wc-widget-top-rated-products.php:33 -#@ woocommerce -msgid "Display a list of top rated products on your site." -msgstr "Vis en liste med de bedst bedømte produkter på din side." - -#: classes/widgets/class-wc-widget-top-rated-products.php:35 -#@ woocommerce -msgid "WooCommerce Top Rated Products" -msgstr "WooCommerce bedst bedømte produkter" - -#: classes/widgets/class-wc-widget-top-rated-products.php:72 -#@ woocommerce -msgid "Top Rated Products" -msgstr "Bedst bedømte produkter" - -#: i18n/states/AU.php:13 -#@ woocommerce -msgid "Australian Capital Territory" -msgstr "Australsk kapital territorium (ACT)" - -#: i18n/states/AU.php:14 -#@ woocommerce -msgid "New South Wales" -msgstr "New South Wales" - -#: i18n/states/AU.php:15 -#@ woocommerce -msgid "Northern Territory" -msgstr "Nordlige territorium" - -#: i18n/states/AU.php:16 -#@ woocommerce -msgid "Queensland" -msgstr "Queensland" - -#: i18n/states/AU.php:17 -#@ woocommerce -msgid "South Australia" -msgstr "Sydaustralien" - -#: i18n/states/AU.php:18 -#@ woocommerce -msgid "Tasmania" -msgstr "Tasmanien" - -#: i18n/states/AU.php:19 -#@ woocommerce -msgid "Victoria" -msgstr "Victoria" - -#: i18n/states/AU.php:20 -#@ woocommerce -msgid "Western Australia" -msgstr "Vestaustralien" - -#: i18n/states/BR.php:13 -#@ woocommerce -msgid "Acre" -msgstr "Acre" - -#: i18n/states/BR.php:14 -#@ woocommerce -msgid "Alagoas" -msgstr "Alagoas" - -#: i18n/states/BR.php:15 -#@ woocommerce -msgid "Amapá" -msgstr "Amapá" - -#: i18n/states/BR.php:16 -#@ woocommerce -msgid "Amazonas" -msgstr "Amazonas" - -#: i18n/states/BR.php:17 -#@ woocommerce -msgid "Bahia" -msgstr "Bahia" - -#: i18n/states/BR.php:18 -#@ woocommerce -msgid "Ceará" -msgstr "Ceará" - -#: i18n/states/BR.php:19 -#, fuzzy -#@ woocommerce -msgid "Distrito Federal" -msgstr "Føderale Distrikt" - -#: i18n/states/BR.php:20 -#@ woocommerce -msgid "Espírito Santo" -msgstr "Espírito Santo" - -#: i18n/states/BR.php:21 -#@ woocommerce -msgid "Goiás" -msgstr "Goiás" - -#: i18n/states/BR.php:22 -#@ woocommerce -msgid "Maranhão" -msgstr "Maranhão" - -#: i18n/states/BR.php:23 -#, fuzzy -#@ woocommerce -msgid "Mato Grosso" -msgstr "Mato Grosso" - -#: i18n/states/BR.php:24 -#, fuzzy -#@ woocommerce -msgid "Mato Grosso do Sul" -msgstr "Mato Grosso do Sul" - -#: i18n/states/BR.php:25 -#, fuzzy -#@ woocommerce -msgid "Minas Gerais" -msgstr "Minas Gerais" - -#: i18n/states/BR.php:26 -#@ woocommerce -msgid "Pará" -msgstr "Pará" - -#: i18n/states/BR.php:27 -#@ woocommerce -msgid "Paraíba" -msgstr "Paraíba" - -#: i18n/states/BR.php:28 -#@ woocommerce -msgid "Paraná" -msgstr "Paraná" - -#: i18n/states/BR.php:29 -#@ woocommerce -msgid "Pernambuco" -msgstr "Pernambuco" - -#: i18n/states/BR.php:30 -#@ woocommerce -msgid "Piauí" -msgstr "Piauí" - -#: i18n/states/BR.php:31 -#, fuzzy -#@ woocommerce -msgid "Rio de Janeiro" -msgstr "Rio de Janeiro" - -#: i18n/states/BR.php:32 -#, fuzzy -#@ woocommerce -msgid "Rio Grande do Norte" -msgstr "Rio Grande do Norte" - -#: i18n/states/BR.php:33 -#, fuzzy -#@ woocommerce -msgid "Rio Grande do Sul" -msgstr "Rio Grande do Sul" - -#: i18n/states/BR.php:34 -#@ woocommerce -msgid "Rondônia" -msgstr "Rondônia" - -#: i18n/states/BR.php:35 -#@ woocommerce -msgid "Roraima" -msgstr "Roraima" - -#: i18n/states/BR.php:36 -#, fuzzy -#@ woocommerce -msgid "Santa Catarina" -msgstr "Santa Catarina" - -#: i18n/states/BR.php:37 -#, fuzzy -#@ woocommerce -msgid "São Paulo" -msgstr "São Paulo" - -#: i18n/states/BR.php:38 -#@ woocommerce -msgid "Sergipe" -msgstr "Sergipe" - -#: i18n/states/BR.php:39 -#@ woocommerce -msgid "Tocantins" -msgstr "Tocantins" - -#: i18n/states/CA.php:13 -#@ woocommerce -msgid "Alberta" -msgstr "Alberta" - -#: i18n/states/CA.php:14 -#@ woocommerce -msgid "British Columbia" -msgstr "Britisk Columbia" - -#: i18n/states/CA.php:15 -#@ woocommerce -msgid "Manitoba" -msgstr "Manitoba" - -#: i18n/states/CA.php:16 -#@ woocommerce -msgid "New Brunswick" -msgstr "New Brunswick" - -#: i18n/states/CA.php:17 -#@ woocommerce -msgid "Newfoundland" -msgstr "Newfoundland" - -#: i18n/states/CA.php:18 -#@ woocommerce -msgid "Northwest Territories" -msgstr "Nordvest Territorierne (NWT)" - -#: i18n/states/CA.php:19 -#@ woocommerce -msgid "Nova Scotia" -msgstr "Halifax" - -#: i18n/states/CA.php:20 -#@ woocommerce -msgid "Nunavut" -msgstr "Nunavut" - -#: i18n/states/CA.php:21 -#@ woocommerce -msgid "Ontario" -msgstr "Ontario" - -#: i18n/states/CA.php:22 -#@ woocommerce -msgid "Prince Edward Island" -msgstr "Prins Edward Øen" - -#: i18n/states/CA.php:23 -#@ woocommerce -msgid "Quebec" -msgstr "Quebec" - -#: i18n/states/CA.php:24 -#@ woocommerce -msgid "Saskatchewan" -msgstr "Saskatchewan" - -#: i18n/states/CA.php:25 -#@ woocommerce -msgid "Yukon Territory" -msgstr "Yukon Territoriet" - -#: i18n/states/CN.php:13 -#@ woocommerce -msgid "Yunnan / 云南" -msgstr "Yunnan / 云南" - -#: i18n/states/CN.php:14 -#@ woocommerce -msgid "Beijing / 北京" -msgstr "Beijing / 北京" - -#: i18n/states/CN.php:15 -#@ woocommerce -msgid "Tianjin / 天津" -msgstr "Tianjin / 天津" - -#: i18n/states/CN.php:16 -#@ woocommerce -msgid "Hebei / 河北" -msgstr "Hebei / 河北" - -#: i18n/states/CN.php:17 -#@ woocommerce -msgid "Shanxi / 山西" -msgstr "Shanxi / 山西" - -#: i18n/states/CN.php:18 -#@ woocommerce -msgid "Inner Mongolia / 內蒙古" -msgstr "Inner Mongolia / 內蒙古" - -#: i18n/states/CN.php:19 -#@ woocommerce -msgid "Liaoning / 辽宁" -msgstr "Liaoning / 辽宁" - -#: i18n/states/CN.php:20 -#@ woocommerce -msgid "Jilin / 吉林" -msgstr "Jilin / 吉林" - -#: i18n/states/CN.php:21 -#@ woocommerce -msgid "Heilongjiang / 黑龙江" -msgstr "Heilongjiang / 黑龙江" - -#: i18n/states/CN.php:22 -#@ woocommerce -msgid "Shanghai / 上海" -msgstr "Shanghai / 上海" - -#: i18n/states/CN.php:23 -#@ woocommerce -msgid "Jiangsu / 江苏" -msgstr "Jiangsu / 江苏" - -#: i18n/states/CN.php:24 -#@ woocommerce -msgid "Zhejiang / 浙江" -msgstr "Zhejiang / 浙江" - -#: i18n/states/CN.php:25 -#@ woocommerce -msgid "Anhui / 安徽" -msgstr "Anhui / 安徽" - -#: i18n/states/CN.php:26 -#@ woocommerce -msgid "Fujian / 福建" -msgstr "Fujian / 福建" - -#: i18n/states/CN.php:27 -#@ woocommerce -msgid "Jiangxi / 江西" -msgstr "Jiangxi / 江西" - -#: i18n/states/CN.php:28 -#@ woocommerce -msgid "Shandong / 山东" -msgstr "Shandong / 山东" - -#: i18n/states/CN.php:29 -#@ woocommerce -msgid "Henan / 河南" -msgstr "Henan / 河南" - -#: i18n/states/CN.php:30 -#@ woocommerce -msgid "Hubei / 湖北" -msgstr "Hubei / 湖北" - -#: i18n/states/CN.php:31 -#@ woocommerce -msgid "Hunan / 湖南" -msgstr "Hunan / 湖南" - -#: i18n/states/CN.php:32 -#@ woocommerce -msgid "Guangdong / 广东" -msgstr "Guangdong / 广东" - -#: i18n/states/CN.php:33 -#@ woocommerce -msgid "Guangxi Zhuang / 广西壮族" -msgstr "Guangxi Zhuang / 广西壮族" - -#: i18n/states/CN.php:34 -#@ woocommerce -msgid "Hainan / 海南" -msgstr "Hainan / 海南" - -#: i18n/states/CN.php:35 -#@ woocommerce -msgid "Chongqing / 重庆" -msgstr "Chongqing / 重庆" - -#: i18n/states/CN.php:36 -#@ woocommerce -msgid "Sichuan / 四川" -msgstr "Sichuan / 四川" - -#: i18n/states/CN.php:37 -#@ woocommerce -msgid "Guizhou / 贵州" -msgstr "Guizhou / 贵州" - -#: i18n/states/CN.php:38 -#@ woocommerce -msgid "Shaanxi / 陕西" -msgstr "Shaanxi / 陕西" - -#: i18n/states/CN.php:39 -#@ woocommerce -msgid "Gansu / 甘肃" -msgstr "Gansu / 甘肃" - -#: i18n/states/CN.php:40 -#@ woocommerce -msgid "Qinghai / 青海" -msgstr "Qinghai / 青海" - -#: i18n/states/CN.php:41 -#@ woocommerce -msgid "Ningxia Hui / 宁夏" -msgstr "Ningxia Hui / 宁夏" - -#: i18n/states/CN.php:42 -#@ woocommerce -msgid "Macau / 澳门" -msgstr "Macau / 澳门" - -#: i18n/states/CN.php:43 -#@ woocommerce -msgid "Tibet / 西藏" -msgstr "Tibet / 西藏" - -#: i18n/states/CN.php:44 -#@ woocommerce -msgid "Xinjiang / 新疆" -msgstr "Xinjiang / 新疆" - -#: i18n/states/HK.php:13 -#@ woocommerce -msgid "Hong Kong Island" -msgstr "Hong Kong Øen" - -#: i18n/states/HK.php:14 -#@ woocommerce -msgid "Kowloon" -msgstr "Kowloon" - -#: i18n/states/HK.php:15 -#@ woocommerce -msgid "New Territories" -msgstr "Nye Territorier" - -#: i18n/states/HZ.php:13 -#, fuzzy -#@ woocommerce -msgid "Auckland" -msgstr "Island" - -#: i18n/states/HZ.php:14 -#@ woocommerce -msgid "Bay of Plenty" -msgstr "Bay of Plenty" - -#: i18n/states/HZ.php:15 -#@ woocommerce -msgid "Canterbury" -msgstr "Canterbury" - -#: i18n/states/HZ.php:16 -#@ woocommerce -msgid "Hawke’s Bay" -msgstr "Hawke’s Bay" - -#: i18n/states/HZ.php:17 -#@ woocommerce -msgid "Manawatu-Wanganui" -msgstr "Manawatu-Wanganui" - -#: i18n/states/HZ.php:18 -#@ woocommerce -msgid "Marlborough" -msgstr "Marlborough" - -#: i18n/states/HZ.php:19 -#@ woocommerce -msgid "Nelson" -msgstr "Nelson" - -#: i18n/states/HZ.php:20 -#, fuzzy -#@ woocommerce -msgid "Northland" -msgstr "Holland" - -#: i18n/states/HZ.php:21 -#@ woocommerce -msgid "Otago" -msgstr "Otago" - -#: i18n/states/HZ.php:22 -#, fuzzy -#@ woocommerce -msgid "Southland" -msgstr "Polen" - -#: i18n/states/HZ.php:23 -#@ woocommerce -msgid "Taranaki" -msgstr "Taranaki" - -#: i18n/states/HZ.php:24 -#, fuzzy -#@ woocommerce -msgid "Tasman" -msgstr "Tasmanien" - -#: i18n/states/HZ.php:25 -#@ woocommerce -msgid "Waikato" -msgstr "Waikato" - -#: i18n/states/HZ.php:26 -#, fuzzy -#@ woocommerce -msgid "Wellington" -msgstr "Washington" - -#: i18n/states/HZ.php:27 -#, fuzzy -#@ woocommerce -msgid "West Coast" -msgstr "Standardomkostninger" - -#: i18n/states/IN.php:13 -#@ woocommerce -msgid "Andra Pradesh" -msgstr "Andra Pradesh" - -#: i18n/states/IN.php:14 -#@ woocommerce -msgid "Arunachal Pradesh" -msgstr "Arunachal Pradesh" - -#: i18n/states/IN.php:15 -#@ woocommerce -msgid "Assam" -msgstr "Assam" - -#: i18n/states/IN.php:16 -#@ woocommerce -msgid "Bihar" -msgstr "Bihar" - -#: i18n/states/IN.php:17 -#@ woocommerce -msgid "Chhattisgarh" -msgstr "Chhattisgarh" - -#: i18n/states/IN.php:18 -#, fuzzy -#@ woocommerce -msgid "Goa" -msgstr "Georgien" - -#: i18n/states/IN.php:19 -#@ woocommerce -msgid "Gujarat" -msgstr "Gujarat" - -#: i18n/states/IN.php:20 -#, fuzzy -#@ woocommerce -msgid "Haryana" -msgstr "Guyana" - -#: i18n/states/IN.php:21 -#@ woocommerce -msgid "Himachal Pradesh" -msgstr "Himachal Pradesh" - -#: i18n/states/IN.php:22 -#@ woocommerce -msgid "Jammu and Kashmir" -msgstr "Jammu and Kashmir" - -#: i18n/states/IN.php:23 -#@ woocommerce -msgid "Jharkhand" -msgstr "Jharkhand" - -#: i18n/states/IN.php:24 -#@ woocommerce -msgid "Karnataka" -msgstr "Karnataka" - -#: i18n/states/IN.php:25 -#, fuzzy -#@ woocommerce -msgid "Kerala" -msgstr "Generel" - -#: i18n/states/IN.php:26 -#@ woocommerce -msgid "Madhya Pradesh" -msgstr "Madhya Pradesh" - -#: i18n/states/IN.php:27 -#@ woocommerce -msgid "Maharashtra" -msgstr "Maharashtra" - -#: i18n/states/IN.php:28 -#@ woocommerce -msgid "Manipur" -msgstr "Manipur" - -#: i18n/states/IN.php:29 -#, fuzzy -#@ woocommerce -msgid "Meghalaya" -msgstr "Malaysia" - -#: i18n/states/IN.php:30 -#@ woocommerce -msgid "Mizoram" -msgstr "Mizoram" - -#: i18n/states/IN.php:31 -#, fuzzy -#@ woocommerce -msgid "Nagaland" -msgstr "New Zealand" - -#: i18n/states/IN.php:32 -#@ woocommerce -msgid "Orissa" -msgstr "Orissa" - -#: i18n/states/IN.php:33 -#@ woocommerce -msgid "Punjab" -msgstr "Punjab" - -#: i18n/states/IN.php:34 -#@ woocommerce -msgid "Rajasthan" -msgstr "Rajasthan" - -#: i18n/states/IN.php:35 -#@ woocommerce -msgid "Sikkim" -msgstr "Sikkim" - -#: i18n/states/IN.php:36 -#@ woocommerce -msgid "Tamil Nadu" -msgstr "Tamil Nadu" - -#: i18n/states/IN.php:37 -#@ woocommerce -msgid "Tripura" -msgstr "Tripura" - -#: i18n/states/IN.php:38 -#@ woocommerce -msgid "Uttaranchal" -msgstr "Uttaranchal" - -#: i18n/states/IN.php:39 -#@ woocommerce -msgid "Uttar Pradesh" -msgstr "Uttar Pradesh" - -#: i18n/states/IN.php:40 -#@ woocommerce -msgid "West Bengal" -msgstr "West Bengal" - -#: i18n/states/IN.php:41 -#, fuzzy -#@ woocommerce -msgid "Andaman and Nicobar Islands" -msgstr "Turks- og Caicosøerne" - -#: i18n/states/IN.php:42 -#, fuzzy -#@ woocommerce -msgid "Chandigarh" -msgstr "Ændre" - -#: i18n/states/IN.php:43 -#@ woocommerce -msgid "Dadar and Nagar Haveli" -msgstr "Dadar and Nagar Haveli" - -#: i18n/states/IN.php:44 -#@ woocommerce -msgid "Daman and Diu" -msgstr "Daman and Diu" - -#: i18n/states/IN.php:45 -#@ woocommerce -msgid "Delhi" -msgstr "Delhi" - -#: i18n/states/IN.php:46 -#@ woocommerce -msgid "Lakshadeep" -msgstr "Lakshadeep" - -#: i18n/states/IN.php:47 -#@ woocommerce -msgid "Pondicherry (Puducherry)" -msgstr "Pondicherry (Puducherry)" - -#: i18n/states/MY.php:13 -#@ woocommerce -msgid "Johor" -msgstr "Johor" - -#: i18n/states/MY.php:14 -#@ woocommerce -msgid "Kedah" -msgstr "Kedah" - -#: i18n/states/MY.php:15 -#@ woocommerce -msgid "Kelantan" -msgstr "Kelantan" - -#: i18n/states/MY.php:16 -#@ woocommerce -msgid "Melaka" -msgstr "Melaka" - -#: i18n/states/MY.php:17 -#@ woocommerce -msgid "Negeri Sembilan" -msgstr "Negeri Sembilan" - -#: i18n/states/MY.php:18 -#, fuzzy -#@ woocommerce -msgid "Pahang" -msgstr "Ændre" - -#: i18n/states/MY.php:19 -#@ woocommerce -msgid "Perak" -msgstr "Perak" - -#: i18n/states/MY.php:20 -#@ woocommerce -msgid "Perlis" -msgstr "Perlis" - -#: i18n/states/MY.php:21 -#@ woocommerce -msgid "Pulau Pinang" -msgstr "Pulau Pinang" - -#: i18n/states/MY.php:22 -#@ woocommerce -msgid "Sabah" -msgstr "Sabah" - -#: i18n/states/MY.php:23 -#@ woocommerce -msgid "Sarawak" -msgstr "Sarawak" - -#: i18n/states/MY.php:24 -#@ woocommerce -msgid "Selangor" -msgstr "Selangor" - -#: i18n/states/MY.php:25 -#@ woocommerce -msgid "Terengganu" -msgstr "Terengganu" - -#: i18n/states/MY.php:26 -#@ woocommerce -msgid "W.P. Kuala Lumpur" -msgstr "W.P. Kuala Lumpur" - -#: i18n/states/MY.php:27 -#@ woocommerce -msgid "W.P. Labuan" -msgstr "W.P. Labuan" - -#: i18n/states/MY.php:28 -#@ woocommerce -msgid "W.P. Putrajaya" -msgstr "W.P. Putrajaya" - -#: i18n/states/TH.php:13 -#@ woocommerce -msgid "Amnat Charoen (อำนาจเจริญ)" -msgstr "Amnat Charoen (อำนาจเจริญ)" - -#: i18n/states/TH.php:14 -#@ woocommerce -msgid "Ang Thong (อ่างทอง)" -msgstr "Ang Thong (อ่างทอง)" - -#: i18n/states/TH.php:15 -#@ woocommerce -msgid "Ayutthaya (พระนครศรีอยุธยา)" -msgstr "Ayutthaya (พระนครศรีอยุธยา)" - -#: i18n/states/TH.php:16 -#@ woocommerce -msgid "Bangkok (กรุงเทพมหานคร)" -msgstr "Bangkok (กรุงเทพมหานคร)" - -#: i18n/states/TH.php:17 -#@ woocommerce -msgid "Bueng Kan (บึงกาฬ)" -msgstr "Bueng Kan (บึงกาฬ)" - -#: i18n/states/TH.php:18 -#@ woocommerce -msgid "Buri Ram (บุรีรัมย์)" -msgstr "Buri Ram (บุรีรัมย์)" - -#: i18n/states/TH.php:19 -#@ woocommerce -msgid "Chachoengsao (ฉะเชิงเทรา)" -msgstr "Chachoengsao (ฉะเชิงเทรา)" - -#: i18n/states/TH.php:20 -#@ woocommerce -msgid "Chai Nat (ชัยนาท)" -msgstr "Chai Nat (ชัยนาท)" - -#: i18n/states/TH.php:21 -#@ woocommerce -msgid "Chaiyaphum (ชัยภูมิ)" -msgstr "Chaiyaphum (ชัยภูมิ)" - -#: i18n/states/TH.php:22 -#@ woocommerce -msgid "Chanthaburi (จันทบุรี)" -msgstr "Chanthaburi (จันทบุรี)" - -#: i18n/states/TH.php:23 -#@ woocommerce -msgid "Chiang Mai (เชียงใหม่)" -msgstr "Chiang Mai (เชียงใหม่)" - -#: i18n/states/TH.php:24 -#@ woocommerce -msgid "Chiang Rai (เชียงราย)" -msgstr "Chiang Rai (เชียงราย)" - -#: i18n/states/TH.php:25 -#@ woocommerce -msgid "Chonburi (ชลบุรี)" -msgstr "Chonburi (ชลบุรี)" - -#: i18n/states/TH.php:26 -#@ woocommerce -msgid "Chumphon (ชุมพร)" -msgstr "Chumphon (ชุมพร)" - -#: i18n/states/TH.php:27 -#@ woocommerce -msgid "Kalasin (กาฬสินธุ์)" -msgstr "Kalasin (กาฬสินธุ์)" - -#: i18n/states/TH.php:28 -#@ woocommerce -msgid "Kamphaeng Phet (กำแพงเพชร)" -msgstr "Kamphaeng Phet (กำแพงเพชร)" - -#: i18n/states/TH.php:29 -#@ woocommerce -msgid "Kanchanaburi (กาญจนบุรี)" -msgstr "Kanchanaburi (กาญจนบุรี)" - -#: i18n/states/TH.php:30 -#@ woocommerce -msgid "Khon Kaen (ขอนแก่น)" -msgstr "Khon Kaen (ขอนแก่น)" - -#: i18n/states/TH.php:31 -#@ woocommerce -msgid "Krabi (กระบี่)" -msgstr "Krabi (กระบี่)" - -#: i18n/states/TH.php:32 -#@ woocommerce -msgid "Lampang (ลำปาง)" -msgstr "Lampang (ลำปาง)" - -#: i18n/states/TH.php:33 -#@ woocommerce -msgid "Lamphun (ลำพูน)" -msgstr "Lamphun (ลำพูน)" - -#: i18n/states/TH.php:34 -#@ woocommerce -msgid "Loei (เลย)" -msgstr "Loei (เลย)" - -#: i18n/states/TH.php:35 -#@ woocommerce -msgid "Lopburi (ลพบุรี)" -msgstr "Lopburi (ลพบุรี)" - -#: i18n/states/TH.php:36 -#@ woocommerce -msgid "Mae Hong Son (แม่ฮ่องสอน)" -msgstr "Mae Hong Son (แม่ฮ่องสอน)" - -#: i18n/states/TH.php:37 -#@ woocommerce -msgid "Maha Sarakham (มหาสารคาม)" -msgstr "Maha Sarakham (มหาสารคาม)" - -#: i18n/states/TH.php:38 -#@ woocommerce -msgid "Mukdahan (มุกดาหาร)" -msgstr "Mukdahan (มุกดาหาร)" - -#: i18n/states/TH.php:39 -#@ woocommerce -msgid "Nakhon Nayok (นครนายก)" -msgstr "Nakhon Nayok (นครนายก)" - -#: i18n/states/TH.php:40 -#@ woocommerce -msgid "Nakhon Pathom (นครปฐม)" -msgstr "Nakhon Pathom (นครปฐม)" - -#: i18n/states/TH.php:41 -#@ woocommerce -msgid "Nakhon Phanom (นครพนม)" -msgstr "Nakhon Phanom (นครพนม)" - -#: i18n/states/TH.php:42 -#@ woocommerce -msgid "Nakhon Ratchasima (นครราชสีมา)" -msgstr "Nakhon Ratchasima (นครราชสีมา)" - -#: i18n/states/TH.php:43 -#@ woocommerce -msgid "Nakhon Sawan (นครสวรรค์)" -msgstr "Nakhon Sawan (นครสวรรค์)" - -#: i18n/states/TH.php:44 -#@ woocommerce -msgid "Nakhon Si Thammarat (นครศรีธรรมราช)" -msgstr "Nakhon Si Thammarat (นครศรีธรรมราช)" - -#: i18n/states/TH.php:45 -#@ woocommerce -msgid "Nan (น่าน)" -msgstr "Nan (น่าน)" - -#: i18n/states/TH.php:46 -#@ woocommerce -msgid "Narathiwat (นราธิวาส)" -msgstr "Narathiwat (นราธิวาส)" - -#: i18n/states/TH.php:47 -#@ woocommerce -msgid "Nong Bua Lam Phu (หนองบัวลำภู)" -msgstr "Nong Bua Lam Phu (หนองบัวลำภู)" - -#: i18n/states/TH.php:48 -#@ woocommerce -msgid "Nong Khai (หนองคาย)" -msgstr "Nong Khai (หนองคาย)" - -#: i18n/states/TH.php:49 -#@ woocommerce -msgid "Nonthaburi (นนทบุรี)" -msgstr "Nonthaburi (นนทบุรี)" - -#: i18n/states/TH.php:50 -#@ woocommerce -msgid "Pathum Thani (ปทุมธานี)" -msgstr "Pathum Thani (ปทุมธานี)" - -#: i18n/states/TH.php:51 -#@ woocommerce -msgid "Pattani (ปัตตานี)" -msgstr "Pattani (ปัตตานี)" - -#: i18n/states/TH.php:52 -#@ woocommerce -msgid "Phang Nga (พังงา)" -msgstr "Phang Nga (พังงา)" - -#: i18n/states/TH.php:53 -#@ woocommerce -msgid "Phatthalung (พัทลุง)" -msgstr "Phatthalung (พัทลุง)" - -#: i18n/states/TH.php:54 -#@ woocommerce -msgid "Phayao (พะเยา)" -msgstr "Phayao (พะเยา)" - -#: i18n/states/TH.php:55 -#@ woocommerce -msgid "Phetchabun (เพชรบูรณ์)" -msgstr "Phetchabun (เพชรบูรณ์)" - -#: i18n/states/TH.php:56 -#@ woocommerce -msgid "Phetchaburi (เพชรบุรี)" -msgstr "Phetchaburi (เพชรบุรี)" - -#: i18n/states/TH.php:57 -#@ woocommerce -msgid "Phichit (พิจิตร)" -msgstr "Phichit (พิจิตร)" - -#: i18n/states/TH.php:58 -#@ woocommerce -msgid "Phitsanulok (พิษณุโลก)" -msgstr "Phitsanulok (พิษณุโลก)" - -#: i18n/states/TH.php:59 -#@ woocommerce -msgid "Phrae (แพร่)" -msgstr "Phrae (แพร่)" - -#: i18n/states/TH.php:60 -#@ woocommerce -msgid "Phuket (ภูเก็ต)" -msgstr "Phuket (ภูเก็ต)" - -#: i18n/states/TH.php:61 -#@ woocommerce -msgid "Prachin Buri (ปราจีนบุรี)" -msgstr "Prachin Buri (ปราจีนบุรี)" - -#: i18n/states/TH.php:62 -#@ woocommerce -msgid "Prachuap Khiri Khan (ประจวบคีรีขันธ์)" -msgstr "Prachuap Khiri Khan (ประจวบคีรีขันธ์)" - -#: i18n/states/TH.php:63 -#@ woocommerce -msgid "Ranong (ระนอง)" -msgstr "Ranong (ระนอง)" - -#: i18n/states/TH.php:64 -#@ woocommerce -msgid "Ratchaburi (ราชบุรี)" -msgstr "Ratchaburi (ราชบุรี)" - -#: i18n/states/TH.php:65 -#@ woocommerce -msgid "Rayong (ระยอง)" -msgstr "Rayong (ระยอง)" - -#: i18n/states/TH.php:66 -#@ woocommerce -msgid "Roi Et (ร้อยเอ็ด)" -msgstr "Roi Et (ร้อยเอ็ด)" - -#: i18n/states/TH.php:67 -#@ woocommerce -msgid "Sa Kaeo (สระแก้ว)" -msgstr "Sa Kaeo (สระแก้ว)" - -#: i18n/states/TH.php:68 -#@ woocommerce -msgid "Sakon Nakhon (สกลนคร)" -msgstr "Sakon Nakhon (สกลนคร)" - -#: i18n/states/TH.php:69 -#@ woocommerce -msgid "Samut Prakan (สมุทรปราการ)" -msgstr "Samut Prakan (สมุทรปราการ)" - -#: i18n/states/TH.php:70 -#@ woocommerce -msgid "Samut Sakhon (สมุทรสาคร)" -msgstr "Samut Sakhon (สมุทรสาคร)" - -#: i18n/states/TH.php:71 -#@ woocommerce -msgid "Samut Songkhram (สมุทรสงคราม)" -msgstr "Samut Songkhram (สมุทรสงคราม)" - -#: i18n/states/TH.php:72 -#@ woocommerce -msgid "Saraburi (สระบุรี)" -msgstr "Saraburi (สระบุรี)" - -#: i18n/states/TH.php:73 -#@ woocommerce -msgid "Satun (สตูล)" -msgstr "Satun (สตูล)" - -#: i18n/states/TH.php:74 -#@ woocommerce -msgid "Sing Buri (สิงห์บุรี)" -msgstr "Sing Buri (สิงห์บุรี)" - -#: i18n/states/TH.php:75 -#@ woocommerce -msgid "Sisaket (ศรีสะเกษ)" -msgstr "Sisaket (ศรีสะเกษ)" - -#: i18n/states/TH.php:76 -#@ woocommerce -msgid "Songkhla (สงขลา)" -msgstr "Songkhla (สงขลา)" - -#: i18n/states/TH.php:77 -#@ woocommerce -msgid "Sukhothai (สุโขทัย)" -msgstr "Sukhothai (สุโขทัย)" - -#: i18n/states/TH.php:78 -#@ woocommerce -msgid "Suphan Buri (สุพรรณบุรี)" -msgstr "Suphan Buri (สุพรรณบุรี)" - -#: i18n/states/TH.php:79 -#@ woocommerce -msgid "Surat Thani (สุราษฎร์ธานี)" -msgstr "Surat Thani (สุราษฎร์ธานี)" - -#: i18n/states/TH.php:80 -#@ woocommerce -msgid "Surin (สุรินทร์)" -msgstr "Surin (สุรินทร์)" - -#: i18n/states/TH.php:81 -#@ woocommerce -msgid "Tak (ตาก)" -msgstr "Tak (ตาก)" - -#: i18n/states/TH.php:82 -#@ woocommerce -msgid "Trang (ตรัง)" -msgstr "Trang (ตรัง)" - -#: i18n/states/TH.php:83 -#@ woocommerce -msgid "Trat (ตราด)" -msgstr "Trat (ตราด)" - -#: i18n/states/TH.php:84 -#@ woocommerce -msgid "Ubon Ratchathani (อุบลราชธานี)" -msgstr "Ubon Ratchathani (อุบลราชธานี)" - -#: i18n/states/TH.php:85 -#@ woocommerce -msgid "Udon Thani (อุดรธานี)" -msgstr "Udon Thani (อุดรธานี)" - -#: i18n/states/TH.php:86 -#@ woocommerce -msgid "Uthai Thani (อุทัยธานี)" -msgstr "Uthai Thani (อุทัยธานี)" - -#: i18n/states/TH.php:87 -#@ woocommerce -msgid "Uttaradit (อุตรดิตถ์)" -msgstr "Uttaradit (อุตรดิตถ์)" - -#: i18n/states/TH.php:88 -#@ woocommerce -msgid "Yala (ยะลา)" -msgstr "Yala (ยะลา)" - -#: i18n/states/TH.php:89 -#@ woocommerce -msgid "Yasothon (ยโสธร)" -msgstr "Yasothon (ยโสธร)" - -#: i18n/states/US.php:13 -#@ woocommerce -msgid "Alabama" -msgstr "Alabama" - -#: i18n/states/US.php:14 -#@ woocommerce -msgid "Alaska" -msgstr "Alaska" - -#: i18n/states/US.php:15 -#@ woocommerce -msgid "Arizona" -msgstr "Arizona" - -#: i18n/states/US.php:16 -#@ woocommerce -msgid "Arkansas" -msgstr "Arkansas" - -#: i18n/states/US.php:17 -#@ woocommerce -msgid "California" -msgstr "Californien" - -#: i18n/states/US.php:18 -#@ woocommerce -msgid "Colorado" -msgstr "Colorado" - -#: i18n/states/US.php:19 -#@ woocommerce -msgid "Connecticut" -msgstr "Connecticut" - -#: i18n/states/US.php:20 -#@ woocommerce -msgid "Delaware" -msgstr "Delaware" - -#: i18n/states/US.php:21 -#@ woocommerce -msgid "District Of Columbia" -msgstr "Bydelen Colombia" - -#: i18n/states/US.php:22 -#@ woocommerce -msgid "Florida" -msgstr "Florida" - -#: i18n/states/US.php:24 -#@ woocommerce -msgid "Hawaii" -msgstr "Hawaii" - -#: i18n/states/US.php:25 -#@ woocommerce -msgid "Idaho" -msgstr "Idaho" - -#: i18n/states/US.php:26 -#@ woocommerce -msgid "Illinois" -msgstr "Illinois" - -#: i18n/states/US.php:27 -#@ woocommerce -msgid "Indiana" -msgstr "Indiana" - -#: i18n/states/US.php:28 -#@ woocommerce -msgid "Iowa" -msgstr "Iowa" - -#: i18n/states/US.php:29 -#@ woocommerce -msgid "Kansas" -msgstr "Kansas" - -#: i18n/states/US.php:30 -#@ woocommerce -msgid "Kentucky" -msgstr "Kentucky" - -#: i18n/states/US.php:31 -#@ woocommerce -msgid "Louisiana" -msgstr "Louisiana" - -#: i18n/states/US.php:32 -#@ woocommerce -msgid "Maine" -msgstr "Maine" - -#: i18n/states/US.php:33 -#@ woocommerce -msgid "Maryland" -msgstr "Maryland" - -#: i18n/states/US.php:34 -#@ woocommerce -msgid "Massachusetts" -msgstr "Massachusetts" - -#: i18n/states/US.php:35 -#@ woocommerce -msgid "Michigan" -msgstr "Michigan" - -#: i18n/states/US.php:36 -#@ woocommerce -msgid "Minnesota" -msgstr "Minnesota" - -#: i18n/states/US.php:37 -#@ woocommerce -msgid "Mississippi" -msgstr "Mississippi" - -#: i18n/states/US.php:38 -#@ woocommerce -msgid "Missouri" -msgstr "Missouri" - -#: i18n/states/US.php:39 -#@ woocommerce -msgid "Montana" -msgstr "Montana" - -#: i18n/states/US.php:40 -#@ woocommerce -msgid "Nebraska" -msgstr "Nebraska" - -#: i18n/states/US.php:41 -#@ woocommerce -msgid "Nevada" -msgstr "Nevada" - -#: i18n/states/US.php:42 -#@ woocommerce -msgid "New Hampshire" -msgstr "New Hampshire" - -#: i18n/states/US.php:43 -#@ woocommerce -msgid "New Jersey" -msgstr "New Jersey" - -#: i18n/states/US.php:44 -#@ woocommerce -msgid "New Mexico" -msgstr "New Mexico" - -#: i18n/states/US.php:45 -#@ woocommerce -msgid "New York" -msgstr "New York" - -#: i18n/states/US.php:46 -#@ woocommerce -msgid "North Carolina" -msgstr "North Carolina" - -#: i18n/states/US.php:47 -#@ woocommerce -msgid "North Dakota" -msgstr "North Dakota" - -#: i18n/states/US.php:48 -#@ woocommerce -msgid "Ohio" -msgstr "Ohio" - -#: i18n/states/US.php:49 -#@ woocommerce -msgid "Oklahoma" -msgstr "Oklahoma" - -#: i18n/states/US.php:50 -#@ woocommerce -msgid "Oregon" -msgstr "Oregon" - -#: i18n/states/US.php:51 -#@ woocommerce -msgid "Pennsylvania" -msgstr "Pennsylvania" - -#: i18n/states/US.php:52 -#@ woocommerce -msgid "Rhode Island" -msgstr "Rhode Island" - -#: i18n/states/US.php:53 -#@ woocommerce -msgid "South Carolina" -msgstr "South Carolina" - -#: i18n/states/US.php:54 -#@ woocommerce -msgid "South Dakota" -msgstr "South Dakota" - -#: i18n/states/US.php:55 -#@ woocommerce -msgid "Tennessee" -msgstr "Tennessee" - -#: i18n/states/US.php:56 -#@ woocommerce -msgid "Texas" -msgstr "Texas" - -#: i18n/states/US.php:57 -#@ woocommerce -msgid "Utah" -msgstr "Utah" - -#: i18n/states/US.php:58 -#@ woocommerce -msgid "Vermont" -msgstr "Vermont" - -#: i18n/states/US.php:59 -#@ woocommerce -msgid "Virginia" -msgstr "Virginia" - -#: i18n/states/US.php:60 -#@ woocommerce -msgid "Washington" -msgstr "Washington" - -#: i18n/states/US.php:61 -#@ woocommerce -msgid "West Virginia" -msgstr "West Virginia" - -#: i18n/states/US.php:62 -#@ woocommerce -msgid "Wisconsin" -msgstr "Wisconsin" - -#: i18n/states/US.php:63 -#@ woocommerce -msgid "Wyoming" -msgstr "Wyoming" - -#: i18n/states/US.php:64 -#, fuzzy -#@ woocommerce -msgid "Armed Forces (AA)" -msgstr "Amerikanske Væbnede Styrker" - -#: i18n/states/US.php:65 -#, fuzzy -#@ woocommerce -msgid "Armed Forces (AE)" -msgstr "Amerikanske Væbnede Styrker" - -#: i18n/states/US.php:66 -#, fuzzy -#@ woocommerce -msgid "Armed Forces (AP)" -msgstr "Amerikanske Væbnede Styrker" - -#: i18n/states/ZA.php:13 -#@ woocommerce -msgid "Eastern Cape" -msgstr "Eastern Cape" - -#: i18n/states/ZA.php:14 -#, fuzzy -#@ woocommerce -msgid "Free State" -msgstr "Stat" - -#: i18n/states/ZA.php:15 -#@ woocommerce -msgid "Gauteng" -msgstr "Gauteng" - -#: i18n/states/ZA.php:16 -#@ woocommerce -msgid "KwaZulu-Natal" -msgstr "KwaZulu-Natal" - -#: i18n/states/ZA.php:17 -#@ woocommerce -msgid "Limpopo" -msgstr "Limpopo" - -#: i18n/states/ZA.php:18 -#@ woocommerce -msgid "Mpumalanga" -msgstr "Mpumalanga" - -#: i18n/states/ZA.php:19 -#, fuzzy -#@ woocommerce -msgid "Northern Cape" -msgstr "Nordlige territorium" - -#: i18n/states/ZA.php:20 -#, fuzzy -#@ woocommerce -msgid "North West" -msgstr "Nordkorea" - -#: i18n/states/ZA.php:21 -#, fuzzy -#@ woocommerce -msgid "Western Cape" -msgstr "Vestsahara" - -#: i18n/strings.php:16 -#@ woocommerce -msgid "pending" -msgstr "afventer" - -#: i18n/strings.php:17 -#@ woocommerce -msgid "failed" -msgstr "fejlede" - -#: i18n/strings.php:18 -#@ woocommerce -msgid "on-hold" -msgstr "i bero" - -#: i18n/strings.php:19 -#@ woocommerce -msgid "processing" -msgstr "behandler" - -#: i18n/strings.php:20 -#@ woocommerce -msgid "completed" -msgstr "fuldført" - -#: i18n/strings.php:21 -#@ woocommerce -msgid "refunded" -msgstr "refunderet" - -#: i18n/strings.php:22 -#@ woocommerce -msgid "cancelled" -msgstr "annulleret" - -#: templates/loop/no-products-found.php:14 templates/loop-shop.php:40 -#@ woocommerce -msgid "No products found which match your selection." -msgstr "Ingen produkter matchede dine valg." - -#: admin/post-types/product.php:96 admin/post-types/product.php:568 -#: admin/post-types/product.php:787 admin/woocommerce-admin-functions.php:196 -#: templates/cart/cart.php:29 templates/emails/admin-new-order.php:24 -#: templates/emails/customer-completed-order.php:25 -#: templates/emails/customer-invoice.php:29 -#: templates/emails/customer-note.php:29 -#: templates/emails/customer-processing-order.php:25 -#@ woocommerce -msgid "Price" -msgstr "Pris" - -#: admin/woocommerce-admin-functions.php:195 templates/cart/cart.php:30 -#: templates/emails/admin-new-order.php:23 -#: templates/emails/customer-completed-order.php:24 -#: templates/emails/customer-invoice.php:28 -#: templates/emails/customer-note.php:28 -#: templates/emails/customer-processing-order.php:24 -#@ woocommerce -msgid "Quantity" -msgstr "Antal" - -#: admin/post-types/writepanels/order-fee-html.php:43 -#: admin/post-types/writepanels/order-item-html.php:110 -#: admin/woocommerce-admin-reports.php:1546 -#: admin/woocommerce-admin-reports.php:1599 -#: admin/woocommerce-admin-reports.php:2370 -#: admin/woocommerce-admin-reports.php:2539 -#: admin/woocommerce-admin-reports.php:2617 templates/cart/cart.php:31 -#: templates/checkout/review-order.php:22 templates/myaccount/my-orders.php:35 -#: templates/order/order-details.php:21 -#@ woocommerce -msgid "Total" -msgstr "Total" - -#: templates/cart/cart.php:47 -#@ woocommerce -msgid "Remove this item" -msgstr "Fjern dette produkt" - -#: templates/cart/cart.php:100 -#: templates/single-product/add-to-cart/quantity.php:13 -#, fuzzy -#@ woocommerce -msgctxt "Product quantity input tooltip" -msgid "Qty" -msgstr "Stk" - -#: admin/woocommerce-admin-reports.php:1531 templates/cart/cart.php:127 -#: woocommerce.php:1062 -#@ woocommerce -msgid "Coupon" -msgstr "Kupon" - -#: templates/cart/cart.php:127 templates/checkout/form-coupon.php:29 -#@ woocommerce -msgid "Apply Coupon" -msgstr "Anvend kupon" - -#: templates/cart/cart.php:134 -#@ woocommerce -msgid "Update Cart" -msgstr "Opdater indkøbskurv" - -#: templates/cart/cart.php:134 -#@ woocommerce -msgid "Proceed to Checkout →" -msgstr "Gå til kassen →" - -#: templates/cart/cross-sells.php:40 -#@ woocommerce -msgid "You may be interested in…" -msgstr "Du kan også være interesseret i…" - -#: templates/cart/cart-empty.php:14 -#@ woocommerce -msgid "Your cart is currently empty." -msgstr "Din indkøbskurv er tom." - -#: templates/cart/cart-empty.php:18 -#@ woocommerce -msgid "← Return To Shop" -msgstr "← Tilbage til butik" - -#: templates/cart/mini-cart.php:55 -#@ woocommerce -msgid "No products in the cart." -msgstr "Ingen produkter i kurven." - -#: admin/post-types/writepanels/order-item-html.php:112 -#: templates/cart/mini-cart.php:63 templates/cart/totals.php:92 -#: templates/checkout/review-order.php:93 -#@ woocommerce -msgid "Subtotal" -msgstr "Subtotal" - -#: templates/cart/mini-cart.php:69 -#@ woocommerce -msgid "Checkout →" -msgstr "Til Kasse" - -#: templates/cart/shipping-calculator.php:20 -#@ woocommerce -msgid "Calculate Shipping" -msgstr "Beregn forsendelse" - -#: admin/post-types/writepanels/writepanel-order_data.php:175 -#: admin/post-types/writepanels/writepanel-order_data.php:265 -#: templates/cart/shipping-calculator.php:24 woocommerce-template.php:1327 -#@ woocommerce -msgid "Select a country…" -msgstr "Vælg et land…" - -#: templates/cart/shipping-calculator.php:50 woocommerce-template.php:1377 -#@ woocommerce -msgid "Select a state…" -msgstr "Vælg en stat…" - -#: templates/cart/shipping-calculator.php:42 -#: templates/cart/shipping-calculator.php:50 -#: templates/cart/shipping-calculator.php:61 -#@ woocommerce -msgid "State / county" -msgstr "Land" - -#: templates/cart/shipping-calculator.php:71 -#@ woocommerce -msgid "Update Totals" -msgstr "Opdateringstotaler" - -#: templates/cart/shipping-methods.php:32 -#@ woocommerce -msgid "Free" -msgstr "Gratis" - -#: templates/cart/shipping-methods.php:67 -#@ woocommerce -msgid "Please fill in your details to see available shipping methods." -msgstr "Udfyld venligst dine oplysninger for at se mulige forsendelsesmetoder." - -#: templates/cart/shipping-methods.php:69 -#@ woocommerce -msgid "Sorry, it seems that there are no available shipping methods for your state. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "Beklager, det ser ud til, at der ikke er en mulig forsendelsesmetode til din stat. Kontakt os venligst hvis du behøver assistance eller ønsker at lave en alternativ aftale." - -#: templates/cart/totals.php:22 -#@ woocommerce -msgid "Cart Totals" -msgstr "Indkøbskurv totaler" - -#: templates/cart/totals.php:28 templates/checkout/review-order.php:27 -#@ woocommerce -msgid "Cart Subtotal" -msgstr "Indkøbskurv subtotal" - -#: templates/cart/totals.php:35 templates/checkout/review-order.php:34 -#: woocommerce.php:1655 -#@ woocommerce -msgid "Cart Discount" -msgstr "Indkøbskurv rabat" - -#: templates/cart/totals.php:35 templates/cart/totals.php:120 -#@ woocommerce -msgid "[Remove]" -msgstr "[Fjern]" - -#: admin/post-types/shop_order.php:46 -#: admin/post-types/writepanels/writepanel-order_data.php:536 -#: admin/post-types/writepanels/writepanel-product_data.php:81 -#: admin/settings/settings-tax-rates.php:52 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-content.php:49 -#: admin/woocommerce-admin-settings.php:185 templates/cart/totals.php:46 -#: templates/checkout/review-order.php:45 -#@ woocommerce -msgid "Shipping" -msgstr "Fragt" - -#: templates/cart/totals.php:120 templates/checkout/review-order.php:124 -#@ woocommerce -msgid "Order Discount" -msgstr "Ordrerabat" - -#: admin/post-types/shop_order.php:47 templates/cart/totals.php:129 -#: templates/checkout/review-order.php:133 -#@ woocommerce -msgid "Order Total" -msgstr "Ordre total" - -#: templates/cart/totals.php:161 -#, php-format -#@ woocommerce -msgid " (taxes estimated for %s)" -msgstr "(moms anslået for %s )" - -#: templates/cart/totals.php:163 -#, php-format -#@ woocommerce -msgid "Note: Shipping and taxes are estimated%s and will be updated during checkout based on your billing and shipping information." -msgstr "Bemærk: Forsendelse og moms er estimeret%s og vil blive opdateret ved kassen baseret på din fakturerings- og forsendelsesinformation." - -#: templates/cart/totals.php:175 -#, fuzzy -#@ woocommerce -msgid "No shipping methods were found; please recalculate your shipping and enter your state/county and zip/postcode to ensure there are no other available methods for your location." -msgstr "Ingen forsendelsesmetode blev fundet; Lav venligst en beregning på forsendelsen igen og angiv dit land/din stat og postnummer/zip igen for at sikre at der ikke er andre tilgængelige metoder til din location." - -#: templates/cart/totals.php:183 -#, php-format -#@ woocommerce -msgid "Sorry, it seems that there are no available shipping methods for your location (%s)." -msgstr "Beklager, det ser ud til, at der ikke er nogen tilgængelige forsendelsesmetoder til din lokation (%s)." - -#: templates/cart/totals.php:185 -#@ woocommerce -msgid "If you require assistance or wish to make alternate arrangements please contact us." -msgstr "Kontakt os venligst hvis du behøver assistance eller ønsker at lave en alternativ aftale." - -#: templates/checkout/cart-errors.php:16 -#@ woocommerce -msgid "There are some issues with the items in your cart (shown above). Please go back to the cart page and resolve these issues before checking out." -msgstr "Der er nogle problemer med produkterne i din kurv (vist ovenfor). Gå venligst tilbage til kurvsiden for at løse disse problemer før du går til kassen." - -#: templates/checkout/cart-errors.php:20 -#@ woocommerce -msgid "← Return To Cart" -msgstr "← Tilbage til kurv" - -#: templates/checkout/form-billing.php:17 -#@ woocommerce -msgid "Billing & Shipping" -msgstr "Fakturering & forsendelse" - -#: admin/woocommerce-admin-users.php:26 templates/checkout/form-billing.php:21 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:19 templates/myaccount/my-address.php:25 -#: templates/order/order-details.php:106 -#@ woocommerce -msgid "Billing Address" -msgstr "Faktureringsadresse" - -#: templates/checkout/form-billing.php:42 -#@ woocommerce -msgid "Create an account?" -msgstr "Opret en konto?" - -#: templates/checkout/form-billing.php:51 -#, fuzzy -#@ woocommerce -msgid "Create an account by entering the information below. If you are a returning customer please login at the top of the page." -msgstr "Opret en konto ved at udfylde informationerne nedenfor. Hvis du er en tilbagevendende kunde, log da venligst ind med dit brugernavn i toppen af siden." - -#: templates/checkout/form-checkout.php:20 -#@ woocommerce -msgid "You must be logged in to checkout." -msgstr "Du skal være logget ind for at gå til kassen." - -#: templates/checkout/form-checkout.php:51 -#@ woocommerce -msgid "Your order" -msgstr "Din ordre" - -#: templates/checkout/form-coupon.php:17 -#@ woocommerce -msgid "Have a coupon?" -msgstr "Har du en kupon?" - -#: templates/checkout/form-coupon.php:20 -#@ woocommerce -msgid "Click here to enter your code" -msgstr "Klik her for at indtaste din kode" - -#: admin/post-types/writepanels/writepanels-init.php:100 -#: templates/checkout/form-coupon.php:25 -#@ woocommerce -msgid "Coupon code" -msgstr "Kuponkode" - -#: templates/checkout/form-login.php:17 -#@ woocommerce -msgid "Click here to login" -msgstr "Klik her for at logge ind" - -#: templates/checkout/form-login.php:22 -#, fuzzy -#@ woocommerce -msgid "If you have shopped with us before, please enter your details in the boxes below. If you are a new customer please proceed to the Billing & Shipping section." -msgstr "Hvis du har handlet hos os før, indtast da dit brugernavn og adgangskode i boksene nedenfor. Hvis du er ny kunde skal du fortsætte til fakturerings- og forsendelsessektionen." - -#: admin/post-types/writepanels/writepanel-order_data.php:347 -#: templates/checkout/form-pay.php:20 -#@ woocommerce -msgid "Qty" -msgstr "Stk" - -#: templates/checkout/form-pay.php:21 -#@ woocommerce -msgid "Totals" -msgstr "Totaler" - -#: templates/checkout/form-pay.php:78 -#@ woocommerce -msgid "Sorry, it seems that there are no available payment methods for your location. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "Beklager, det ser ud til, at der ikke er en tilgængelig betalingsmetode for din location. Kontakt os venligst hvis du behøver assistance eller ønsker at lave en alternativ aftale." - -#: templates/checkout/form-pay.php:87 -#@ woocommerce -msgid "Pay for order" -msgstr "Betal for ordre" - -#: templates/checkout/form-shipping.php:32 -#@ woocommerce -msgid "Ship to billing address?" -msgstr "Send til faktureringsadresse?" - -#: admin/woocommerce-admin-users.php:27 -#: templates/checkout/form-shipping.php:35 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:20 templates/order/order-details.php:121 -#@ woocommerce -msgid "Shipping Address" -msgstr "Leveringsadresse " - -#: templates/checkout/form-shipping.php:59 -#: templates/single-product/tabs/additional-information.php:14 -#: woocommerce-template.php:756 -#@ woocommerce -msgid "Additional Information" -msgstr "Yderligere Information" - -#: templates/checkout/review-order.php:217 -#@ woocommerce -msgid "Please fill in your details above to see available payment methods." -msgstr "Udfyld venligst oplysningerne ovenfor for at se mulige betalingsmetoder." - -#: templates/checkout/review-order.php:219 -#@ woocommerce -msgid "Sorry, it seems that there are no available payment methods for your state. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "Beklager, det ser ud til, at der ikke er en tilgængelig betalingsmetode for din stat. Kontakt os venligst hvis du behøver assistance eller ønsker at lave en alternativ aftale." - -#: templates/checkout/review-order.php:228 -#@ woocommerce -msgid "Since your browser does not support JavaScript, or it is disabled, please ensure you click the Update Totals button before placing your order. You may be charged more than the amount stated above if you fail to do so." -msgstr "Siden din browser ikke understøtter JavaScript, eller det er deaktiveret, skal du sikre dig, at du trykker på Opdater totaler knappen før afgivelsen af din ordre. Du risikerer at blive opkrævet mere end det anførte beløb, hvis du ikke trykker på knappen." - -#: templates/checkout/review-order.php:228 -#@ woocommerce -msgid "Update totals" -msgstr "Opdateringstotaler" - -#: templates/checkout/review-order.php:234 -#@ woocommerce -msgid "Place order" -msgstr "Afgiv ordre" - -#: templates/checkout/review-order.php:238 -#@ woocommerce -msgid "I have read and accept the" -msgstr "Jeg accepterer" - -#: templates/checkout/review-order.php:238 -#@ woocommerce -msgid "terms & conditions" -msgstr "vilkår & betingelser" - -#: templates/checkout/thankyou.php:18 -#@ woocommerce -msgid "Unfortunately your order cannot be processed as the originating bank/merchant has declined your transaction." -msgstr "Beklageligvis kan din ordre ikke behandles, da den afgivende bank/forretning har afslået din transaktion." - -#: templates/checkout/thankyou.php:22 -#@ woocommerce -msgid "Please attempt your purchase again or go to your account page." -msgstr "Forsøg venligst at gennemføre købet igen eller gå til din kontoside." - -#: templates/checkout/thankyou.php:24 -#@ woocommerce -msgid "Please attempt your purchase again." -msgstr "Forsøg venligst at gennemføre købet igen." - -#: templates/checkout/thankyou.php:36 templates/checkout/thankyou.php:67 -#@ woocommerce -msgid "Thank you. Your order has been received." -msgstr "Tak. Din ordre er modtaget." - -#: templates/emails/admin-new-order.php:13 -#: templates/emails/plain/admin-new-order.php:13 -#, fuzzy, php-format -#@ woocommerce -msgid "You have received an order from %s. Their order is as follows:" -msgstr "Du har modtaget en ordre fra" - -#: templates/emails/admin-new-order.php:17 -#, fuzzy, php-format -#@ woocommerce -msgid "Order: %s" -msgstr "Ordre %s" - -#: admin/woocommerce-admin-functions.php:214 -#: templates/emails/admin-new-order.php:50 -#: templates/emails/customer-completed-order.php:51 -#: templates/emails/customer-note.php:55 -#: templates/emails/customer-processing-order.php:51 -#: templates/emails/plain/admin-new-order.php:38 -#: templates/order/order-details.php:88 -#@ woocommerce -msgid "Customer details" -msgstr "Kundeoplysninger" - -#: admin/post-types/shop_order.php:101 templates/emails/admin-new-order.php:53 -#: templates/emails/customer-completed-order.php:54 -#: templates/emails/customer-note.php:58 -#: templates/emails/customer-processing-order.php:54 -#: templates/emails/plain/admin-new-order.php:41 -#: templates/emails/plain/customer-completed-order.php:41 -#: templates/emails/plain/customer-note.php:49 -#: templates/emails/plain/customer-processing-order.php:41 -#: templates/order/order-details.php:92 -#@ woocommerce -msgid "Email:" -msgstr "E-mail:" - -#: admin/post-types/shop_order.php:104 templates/emails/admin-new-order.php:56 -#: templates/emails/customer-completed-order.php:57 -#: templates/emails/customer-note.php:61 -#: templates/emails/customer-processing-order.php:57 -#: templates/emails/plain/admin-new-order.php:44 -#: templates/emails/plain/customer-completed-order.php:44 -#: templates/emails/plain/customer-note.php:52 -#: templates/emails/plain/customer-processing-order.php:44 -#@ woocommerce -msgid "Tel:" -msgstr "Tlf:" - -#: templates/emails/customer-completed-order.php:14 -#: templates/emails/plain/customer-completed-order.php:13 -#, fuzzy, php-format -#@ woocommerce -msgid "Hi there. Your recent order on %s has been completed. Your order details are shown below for your reference:" -msgstr "din ordre blev gennemført. Dine ordredetaljer er nedenfor:" - -#: templates/emails/customer-invoice.php:16 -#: templates/emails/plain/customer-invoice.php:14 -#, fuzzy, php-format -#@ woocommerce -msgid "An order has been created for you on %s. To pay for this order please use the following link: %s" -msgstr "En ordre er blevet oprettet for dig på “%s”. For at betale for denne ordre, så benyt venligst følgende link: Betal" - -#: templates/emails/customer-invoice.php:16 -#, fuzzy -#@ woocommerce -msgid "pay" -msgstr "betal" - -#: templates/emails/customer-new-account.php:14 -#: templates/emails/plain/customer-new-account.php:13 -#, php-format -#@ woocommerce -msgid "Thanks for creating an account on %s. Your username is %s." -msgstr "Tak fordi du oprettede en konto på %s. Dit brugernavn er %s." - -#: templates/emails/customer-new-account.php:16 -#: templates/emails/plain/customer-new-account.php:15 -#, php-format -#@ woocommerce -msgid "You can access your account area here: %s." -msgstr "Du kan logge ind på dit kontoområde her: %s." - -#: templates/emails/customer-note.php:14 -#: templates/emails/plain/customer-note.php:13 -#@ woocommerce -msgid "Hello, a note has just been added to your order:" -msgstr "Hej, en bemærkning blev tilføjet til din ordre:" - -#: templates/emails/customer-note.php:18 -#: templates/emails/plain/customer-note.php:21 -#@ woocommerce -msgid "For your reference, your order details are shown below." -msgstr "Til din orientering, er dine ordre detaljer vist nedenfor." - -#: templates/emails/customer-processing-order.php:14 -#: templates/emails/plain/customer-processing-order.php:13 -#@ woocommerce -msgid "Your order has been received and is now being processed. Your order details are shown below for your reference:" -msgstr "Din ordre er modtaget og bliver nu behandlet. Dine ordredetaljer er vist nedenfor:" - -#: templates/emails/customer-reset-password.php:14 -#: templates/emails/plain/customer-reset-password.php:13 -#@ woocommerce -msgid "Someone requested that the password be reset for the following account:" -msgstr "Nogen anmodede om at få nulstillet passwordet for den følgende konto:" - -#: templates/emails/customer-reset-password.php:15 -#: templates/emails/plain/customer-reset-password.php:15 -#, fuzzy, php-format -#@ woocommerce -msgid "Username: %s" -msgstr "Brugernavn" - -#: templates/emails/customer-reset-password.php:16 -#: templates/emails/plain/customer-reset-password.php:16 -#@ woocommerce -msgid "If this was a mistake, just ignore this email and nothing will happen." -msgstr "Hvis dette var en fejl, skal du blot ignorere denne e-mail, så vil der ikke ske noget." - -#: templates/emails/customer-reset-password.php:17 -#: templates/emails/plain/customer-reset-password.php:17 -#@ woocommerce -msgid "To reset your password, visit the following address:" -msgstr "For at nulstille dit password, besøg den følgende adresse:" - -#: templates/emails/customer-reset-password.php:20 -#, fuzzy -#@ woocommerce -msgid "Click here to reset your password" -msgstr "Klik her for at indtaste din kode" - -#: admin/woocommerce-admin-functions.php:220 -#: templates/emails/email-addresses.php:18 -#: templates/emails/plain/email-addresses.php:12 -#@ woocommerce -msgid "Billing address" -msgstr "Faktureringsadresse" - -#: admin/woocommerce-admin-functions.php:227 -#: templates/emails/email-addresses.php:28 -#: templates/emails/plain/email-addresses.php:17 -#@ woocommerce -msgid "Shipping address" -msgstr "Leveringsadresse" - -#: templates/emails/email-order-items.php:40 -#, fuzzy, php-format -#@ woocommerce -msgid "Download %d:" -msgstr "Download:" - -#: templates/emails/email-order-items.php:42 -#@ woocommerce -msgid "Download:" -msgstr "Download:" - -#: templates/emails/plain/admin-new-order.php:19 -#: templates/emails/plain/customer-completed-order.php:19 -#: templates/emails/plain/customer-invoice.php:20 -#: templates/emails/plain/customer-note.php:27 -#: templates/emails/plain/customer-processing-order.php:19 -#, fuzzy, php-format -#@ woocommerce -msgid "Order number: %s" -msgstr "Ordre %s" - -#: templates/emails/plain/admin-new-order.php:20 -#: templates/emails/plain/customer-completed-order.php:20 -#: templates/emails/plain/customer-invoice.php:21 -#: templates/emails/plain/customer-note.php:28 -#: templates/emails/plain/customer-processing-order.php:20 -#, fuzzy, php-format -#@ woocommerce -msgid "Order date: %s" -msgstr "Ordreopdateringer" - -#: templates/emails/plain/admin-new-order.php:20 -#@ woocommerce -msgid "jS F Y" -msgstr "jS FY" - -#: templates/emails/plain/customer-completed-order.php:38 -#: templates/emails/plain/customer-note.php:46 -#: templates/emails/plain/customer-processing-order.php:38 -#, fuzzy -#@ woocommerce -msgid "Your details" -msgstr "Vores oplysninger" - -#: templates/emails/plain/email-order-items.php:28 -#, fuzzy, php-format -#@ woocommerce -msgid "Quantity: %s" -msgstr "Antal" - -#: templates/emails/plain/email-order-items.php:31 -#, fuzzy, php-format -#@ woocommerce -msgid "Cost: %s" -msgstr "Omkostninger" - -#: templates/loop/add-to-cart.php:17 templates/loop/add-to-cart.php:41 -#: templates/loop/add-to-cart.php:50 -#@ woocommerce -msgid "Read More" -msgstr "Læs mere" - -#: templates/loop/add-to-cart.php:33 -#@ woocommerce -msgid "Select options" -msgstr "Vælg indstillinger" - -#: templates/loop/add-to-cart.php:37 -#@ woocommerce -msgid "View options" -msgstr "Se indstillinger" - -#: templates/loop/result-count.php:28 -#@ woocommerce -msgid "Showing the single result" -msgstr "Viser det enkelte resultat" - -#: templates/loop/result-count.php:30 -#, fuzzy, php-format -#@ woocommerce -msgid "Showing all %d results" -msgstr "Vis alle undertyper" - -#: templates/loop/result-count.php:32 -#, php-format -#@ woocommerce -msgctxt "%1$d = first, %2$d = last, %3$d = total" -msgid "Showing %1$d–%2$d of %3$d results" -msgstr "Viser %1$d–%2$d of %3$d resultater" - -#: templates/loop/sale-flash.php:16 templates/single-product/sale-flash.php:16 -#@ woocommerce -msgid "Sale!" -msgstr "Tilbud!" - -#: templates/loop/orderby.php:21 -#@ woocommerce -msgid "Default sorting" -msgstr "Almindelig sortering" - -#: admin/settings/settings-init.php:462 -#@ woocommerce -msgid "Sort by most recent" -msgstr "Sorter efter seneste" - -#: templates/myaccount/form-change-password.php:20 -#: templates/myaccount/form-lost-password.php:31 -#@ woocommerce -msgid "New password" -msgstr "Ny adgangskode" - -#: templates/myaccount/form-change-password.php:24 -#: templates/myaccount/form-lost-password.php:35 -#@ woocommerce -msgid "Re-enter new password" -msgstr "Indtast ny adgangskode igen" - -#: templates/myaccount/form-change-password.php:29 -#: templates/myaccount/form-lost-password.php:45 -#@ woocommerce -msgid "Save" -msgstr "Gem" - -#: templates/myaccount/form-edit-address.php:43 -#@ woocommerce -msgid "Save Address" -msgstr "Gem adresse" - -#: templates/myaccount/form-login.php:26 templates/myaccount/form-login.php:40 -#: templates/shop/form-login.php:31 -#@ woocommerce -msgid "Login" -msgstr "Log ind" - -#: templates/myaccount/form-login.php:50 templates/shop/form-login.php:33 -#@ woocommerce -msgid "Lost Password?" -msgstr "Glemt adgangskode?" - -#: templates/myaccount/form-login.php:60 -#: templates/myaccount/form-login.php:101 -#@ woocommerce -msgid "Register" -msgstr "Registrer" - -#: templates/myaccount/form-login.php:66 -#@ woocommerce -msgid "Username" -msgstr "Brugernavn" - -#: admin/post-types/writepanels/writepanel-order_data.php:182 -#: admin/woocommerce-admin-users.php:187 templates/myaccount/form-login.php:78 -#: templates/single-product-reviews.php:101 -#@ woocommerce -msgid "Email" -msgstr "E-mail" - -#: templates/myaccount/form-login.php:89 -#@ woocommerce -msgid "Re-enter password" -msgstr "Indtast adgangskode igen" - -#: templates/myaccount/form-lost-password.php:22 -#@ woocommerce -msgid "Lost your password? Please enter your username or email address. You will receive a link to create a new password via email." -msgstr "Mistet dit password? Vær venlig at indtaste dit brugernavn eller e-mailadresse. Du vil modtage et link til at skabe et nyt password via e-mail." - -#: templates/myaccount/form-lost-password.php:28 -#, fuzzy -#@ woocommerce -msgid "Enter a new password below." -msgstr "Indtast ny adgangskode igen" - -#: templates/myaccount/form-lost-password.php:45 -#, fuzzy -#@ woocommerce -msgid "Reset Password" -msgstr "Glemt adgangskode?" - -#: templates/myaccount/my-account.php:19 -#, php-format -#@ woocommerce -msgid "Hello, %s. From your account dashboard you can view your recent orders, manage your shipping and billing addresses and change your password." -msgstr "Hej, %s. Fra dit kontoinstrumentpanel kan du se dine seneste ordrer, administrere dine fakturerings- og leveringsadresser og ændre din adgangskode." - -#: templates/myaccount/my-address.php:17 -#, fuzzy -#@ woocommerce -msgid "My Addresses" -msgstr "Min adresse" - -#: templates/myaccount/my-address.php:23 -#@ woocommerce -msgid "My Address" -msgstr "Min adresse" - -#: templates/myaccount/my-address.php:35 -#@ woocommerce -msgid "The following addresses will be used on the checkout page by default." -msgstr "Følgende adresser vil blive anvendt ved kassen som standard." - -#: admin/post-types/product.php:151 -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#: admin/post-types/writepanels/writepanel-order_data.php:387 -#: admin/post-types/writepanels/writepanel-product_data.php:1043 -#: admin/woocommerce-admin-attributes.php:322 -#: templates/myaccount/my-address.php:45 woocommerce.php:917 -#: woocommerce.php:953 woocommerce.php:990 woocommerce.php:1028 -#: woocommerce.php:1066 -#@ default -#@ woocommerce -msgid "Edit" -msgstr "Rediger" - -#: templates/myaccount/my-address.php:64 -#, fuzzy -#@ woocommerce -msgid "You have not set up this type of address yet." -msgstr "Du har ikke angivet en leveringsadresse endnu." - -#: templates/myaccount/my-downloads.php:18 -#@ woocommerce -msgid "Available downloads" -msgstr "Tilgængelige downloads" - -#: templates/myaccount/my-downloads.php:27 -#, fuzzy, php-format -#@ woocommerce -msgid "%s download remaining" -msgid_plural "%s downloads remaining" -msgstr[0] "%s downloads tilbage" -msgstr[1] "%s downloads tilbage" - -#: templates/myaccount/my-orders.php:26 -#@ woocommerce -msgid "Recent Orders" -msgstr "Seneste ordrer" - -#: admin/post-types/shop_order.php:44 templates/myaccount/my-orders.php:32 -#: woocommerce.php:1025 -#@ woocommerce -msgid "Order" -msgstr "Ordre" - -#: admin/post-types/shop_order.php:43 -#: admin/settings/settings-payment-gateways.php:29 -#: admin/settings/settings-shipping-methods.php:31 -#: templates/myaccount/my-orders.php:34 -#@ woocommerce -msgid "Status" -msgstr "Status" - -#: admin/post-types/writepanels/writepanel-product_data.php:138 -#: admin/post-types/writepanels/writepanel-product_data.php:1064 -#: templates/myaccount/my-orders.php:77 -#@ woocommerce -msgid "Cancel" -msgstr "Annuler" - -#: admin/post-types/product.php:167 admin/post-types/shop_order.php:171 -#: templates/myaccount/my-orders.php:82 -#@ default -#@ woocommerce -msgid "View" -msgstr "Vis" - -#: templates/order/form-tracking.php:17 -#@ woocommerce -msgid "To track your order please enter your Order ID in the box below and press return. This was given to you on your receipt and in the confirmation email you should have received." -msgstr "For at følge din ordre skal du angive dit ordre ID samt din e-mail i boksene nedenfor og trykke på \"Enter\". Dette blev givet til dig på din kvittering og i bekræftelses e-mailen du burde have modtaget." - -#: templates/order/form-tracking.php:19 -#@ woocommerce -msgid "Order ID" -msgstr "Ordre ID" - -#: templates/order/form-tracking.php:19 -#@ woocommerce -msgid "Found in your order confirmation email." -msgstr "Findes i din bekræftelses e-mail." - -#: templates/order/form-tracking.php:20 -#@ woocommerce -msgid "Billing Email" -msgstr "fakturerings e-mail " - -#: templates/order/form-tracking.php:20 -#@ woocommerce -msgid "Email you used during checkout." -msgstr "E-mail du bruge ved kassen." - -#: templates/order/form-tracking.php:23 -#, fuzzy -#@ woocommerce -msgid "Track" -msgstr "Følg\"" - -#: admin/post-types/writepanels/writepanel-order_data.php:59 -#: templates/order/order-details.php:16 -#@ woocommerce -msgid "Order Details" -msgstr "Ordre detaljer" - -#: templates/order/order-details.php:57 -#, fuzzy, php-format -#@ woocommerce -msgid "Download file %s →" -msgstr "Download fil →" - -#: templates/order/order-details.php:81 -#@ woocommerce -msgid "Order Again" -msgstr "Bestil igen" - -#: templates/order/order-details.php:93 -#@ woocommerce -msgid "Telephone:" -msgstr "Telefon:" - -#: templates/order/tracking.php:18 -#, php-format -#@ woocommerce -msgid "Order %s which was made %s has the status “%s”" -msgstr "Ordre %s som blev foretaget %s har status “%s”" - -#: templates/order/tracking.php:18 -#@ woocommerce -msgid "ago" -msgstr "siden" - -#: templates/order/tracking.php:20 -#@ woocommerce -msgid "and was completed" -msgstr "og blev gennemført" - -#: templates/order/tracking.php:20 -#@ woocommerce -msgid " ago" -msgstr "siden" - -#: templates/shop/breadcrumb.php:66 -#@ woocommerce -msgid "Products tagged “" -msgstr "Taggede produkter “" - -#: templates/shop/breadcrumb.php:94 templates/shop/breadcrumb.php:196 -#@ woocommerce -msgid "Search results for “" -msgstr "Søgeresultater for “" - -#: templates/shop/breadcrumb.php:154 -#@ woocommerce -msgid "Error 404" -msgstr "Fejl 404" - -#: templates/shop/breadcrumb.php:200 -#@ woocommerce -msgid "Posts tagged “" -msgstr "Taggede posts “" - -#: templates/shop/breadcrumb.php:205 -#@ woocommerce -msgid "Author:" -msgstr "Forfatter:" - -#: templates/shop/breadcrumb.php:210 -#@ woocommerce -msgid "Page" -msgstr "Side" - -#: templates/single-product/add-to-cart/variable.php:24 -#@ woocommerce -msgid "Choose an option" -msgstr "Vælg en indstilling" - -#: templates/single-product/add-to-cart/variable.php:64 -#@ woocommerce -msgid "Clear selection" -msgstr "Klar markering" - -#: templates/single-product/meta.php:22 -#, fuzzy -#@ product_cat -msgid "Category:" -msgid_plural "Categories:" -msgstr[0] "Kategori:" -msgstr[1] "Kategori:" - -#: templates/single-product/meta.php:24 -#@ product_tag -msgid "Tag:" -msgid_plural "Tags:" -msgstr[0] "Tag:" -msgstr[1] "Tags:" - -#: admin/post-types/product.php:588 admin/post-types/product.php:837 -#: admin/post-types/writepanels/variation-admin-html.php:90 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:273 -#: templates/single-product/product-attributes.php:28 -#@ woocommerce -msgid "Weight" -msgstr "Vægt" - -#: admin/post-types/writepanels/writepanel-product_data.php:284 -#: templates/single-product/product-attributes.php:37 -#@ woocommerce -msgid "Dimensions" -msgstr "Dimensioner" - -#: templates/single-product/related.php:36 -#@ woocommerce -msgid "Related Products" -msgstr "Relaterede produkter" - -#: templates/single-product/review.php:33 -#@ woocommerce -msgid "Your comment is awaiting approval" -msgstr "Din kommentar afventer godkendelse" - -#: templates/single-product/review.php:40 -#@ woocommerce -msgid "verified owner" -msgstr "verificeret ejer" - -#: templates/single-product/tabs/description.php:14 -#@ woocommerce -msgid "Product Description" -msgstr "Produktbeskrivelse" - -#: admin/post-types/writepanels/writepanels-init.php:64 -#: templates/single-product-reviews.php:51 -#: templates/single-product-reviews.php:57 -#@ woocommerce -msgid "Reviews" -msgstr "Anmeldelser" - -#: templates/single-product/up-sells.php:41 -#@ woocommerce -msgid "You may also like…" -msgstr "Du kunne også være interesseret i…" - -#: templates/single-product-reviews.php:45 -#, php-format -#@ woocommerce -msgid "%s review for %s" -msgid_plural "%s reviews for %s" -msgstr[0] "%s anmeldelse af %s" -msgstr[1] "%s anmeldelser af %s" - -#: templates/single-product-reviews.php:73 -#@ woocommerce -msgid " Previous" -msgstr " Forrige" - -#: templates/single-product-reviews.php:74 -#@ woocommerce -msgid "Next " -msgstr "Næste " - -#: templates/single-product-reviews.php:78 -#@ woocommerce -msgid "Add Review" -msgstr "Tilføj anmeldelse" - -#: templates/single-product-reviews.php:80 -#@ woocommerce -msgid "Add a review" -msgstr "Tilføj en anmeldelse" - -#: templates/single-product-reviews.php:84 -#@ woocommerce -msgid "Be the first to review" -msgstr "Bliv den første til at give en anmeldelse af" - -#: templates/single-product-reviews.php:86 -#@ woocommerce -msgid "There are no reviews yet, would you like to submit yours?" -msgstr "Der er ingen anmeldelser endnu, kunne du tænke dig at indsende din?" - -#: templates/single-product-reviews.php:104 -#@ woocommerce -msgid "Submit Review" -msgstr "Tilføj anmeldelse" - -#: templates/single-product-reviews.php:111 -#@ woocommerce -msgid "Rating" -msgstr "Bedømmelse" - -#: templates/single-product-reviews.php:112 -#@ woocommerce -msgid "Rate…" -msgstr "Rate…" - -#: templates/single-product-reviews.php:113 -#@ woocommerce -msgid "Perfect" -msgstr "Perfekt" - -#: templates/single-product-reviews.php:114 -#@ woocommerce -msgid "Good" -msgstr "God" - -#: templates/single-product-reviews.php:115 -#@ woocommerce -msgid "Average" -msgstr "Middelmådig" - -#: templates/single-product-reviews.php:116 -#@ woocommerce -msgid "Not that bad" -msgstr "Ikke så dårlig" - -#: templates/single-product-reviews.php:117 -#@ woocommerce -msgid "Very Poor" -msgstr "Meget dårlig" - -#: templates/single-product-reviews.php:122 -#@ woocommerce -msgid "Your Review" -msgstr "Din anmeldelse" - -#: woocommerce-ajax.php:111 -#@ woocommerce -msgid "Please enter your username and password to login." -msgstr "Vær venlig at indtaste dit brugernavn og password for at logge ind." - -#: woocommerce-ajax.php:191 -#@ woocommerce -msgid "Sorry, your session has expired." -msgstr "Beklager, din session er udløbet." - -#: woocommerce-ajax.php:191 -#@ woocommerce -msgid "Return to homepage →" -msgstr "Tilbage til forsiden →" - -#: woocommerce-ajax.php:332 woocommerce-ajax.php:366 woocommerce-ajax.php:389 -#@ woocommerce -msgid "You do not have sufficient permissions to access this page." -msgstr "Du har ikke de nødvendige rettigheder til at se denne side." - -#: woocommerce-ajax.php:334 woocommerce-ajax.php:367 woocommerce-ajax.php:390 -#@ woocommerce -msgid "You have taken too long. Please go back and retry." -msgstr "Du har brugt for lang tid. Gå venligst tilbage og prøv igen." - -#: admin/post-types/writepanels/variation-admin-html.php:113 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:53 -#: woocommerce-ajax.php:626 -#@ woocommerce -msgid "Same as parent" -msgstr "Samme som forælder" - -#: admin/post-types/writepanels/order-fee-html.php:25 -#: admin/post-types/writepanels/order-item-html.php:91 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:54 -#: admin/post-types/writepanels/writepanel-product_data.php:186 -#: admin/settings/settings-init.php:982 -#: admin/settings/settings-tax-rates.php:29 -#: admin/woocommerce-admin-settings.php:226 woocommerce-ajax.php:627 -#@ woocommerce -msgid "Standard" -msgstr "Standard" - -#: woocommerce-ajax.php:1215 woocommerce-ajax.php:1216 -#, php-format -#@ woocommerce -msgid "Item #%s stock increased from %s to %s." -msgstr "Produkt #%s lager øget fra %s til %s." - -#: woocommerce-ajax.php:1244 -#, fuzzy -#@ woocommerce -msgid "Value" -msgstr "Værdi(er)" - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -#: woocommerce-ajax.php:1558 -#@ woocommerce -msgid "Delete note" -msgstr "Slet bemærkning" - -#: woocommerce-core-functions.php:1189 woocommerce-core-functions.php:1215 -#@ woocommerce -msgid "Download Permissions Granted" -msgstr "Downloadtilladelse givet" - -#: woocommerce-core-functions.php:1328 -#, fuzzy -#@ woocommerce -msgctxt "slug" -msgid "uncategorized" -msgstr "Kategorier" - -#: woocommerce-core-functions.php:1517 -#@ woocommerce -msgid "Select a category" -msgstr "Vælg en kategori" - -#: woocommerce-core-functions.php:1521 -#@ woocommerce -msgid "Uncategorized" -msgstr "Ikke kategoriseret" - -#: woocommerce-core-functions.php:1893 -#@ woocommerce -msgid "Customer" -msgstr "Kunde" - -#: woocommerce-core-functions.php:1900 -#@ woocommerce -msgid "Shop Manager" -msgstr "Butiksadministrator" - -#: woocommerce-core-functions.php:2433 -#@ woocommerce -msgid "Unpaid order cancelled - time limit reached." -msgstr "Ubetalt ordre annulleret - tidsgrænse nået." - -#: woocommerce-core-functions.php:2485 woocommerce-functions.php:703 -#@ woocommerce -msgid "Please enter a username." -msgstr "Indtast venligst et brugernavn." - -#: woocommerce-functions.php:208 woocommerce-functions.php:253 -#@ woocommerce -msgid "Cart updated." -msgstr "Indkøbskurv opdateret." - -#: woocommerce-functions.php:239 -#, php-format -#@ woocommerce -msgid "You can only have 1 %s in your cart." -msgstr "Du kan kun have 1 %s i din kurv.." - -#: woocommerce-functions.php:296 woocommerce-functions.php:343 -#@ woocommerce -msgid "Please choose product options…" -msgstr "Vælg venligst produktindstillinger…" - -#: woocommerce-functions.php:378 -#@ woocommerce -msgid "Please choose the quantity of items you wish to add to your cart…" -msgstr "Vælg venligst mængden af elementer, som du vil tilføje til din cart…" - -#: woocommerce-functions.php:386 -#, fuzzy -#@ woocommerce -msgid "Please choose a product to add to your cart…" -msgstr "Vælg venligst et produkt…" - -#: woocommerce-functions.php:455 -#, php-format -#@ woocommerce -msgid "Added "%s" to your cart." -msgstr "Tilføjede "%s" til din kurv." - -#: woocommerce-functions.php:455 -#@ default -msgid "" and "" -msgstr "" og "" - -#: woocommerce-functions.php:458 -#, php-format -#@ woocommerce -msgid ""%s" was successfully added to your cart." -msgstr ""%s" blev tilføjet til din kurv." - -#: woocommerce-functions.php:466 -#@ woocommerce -msgid "Continue Shopping →" -msgstr "Fortsæt med at handle →" - -#: woocommerce-functions.php:633 -#@ woocommerce -msgid "Username is required." -msgstr "Brugernavn er påkrævet." - -#: woocommerce-functions.php:634 woocommerce-functions.php:729 -#@ woocommerce -msgid "Password is required." -msgstr "Adgangskode er påkrævet." - -#: woocommerce-functions.php:705 -#@ woocommerce -msgid "This username is invalid because it uses illegal characters. Please enter a valid username." -msgstr "Brugernavnet er ugyldigt grundet brug af ugyldige karakterer. Angiv venligst et gyldigt brugernavn." - -#: woocommerce-functions.php:708 -#@ woocommerce -msgid "This username is already registered, please choose another one." -msgstr "Dette brugernavn er allerede registreret. Vælg venligst et andet." - -#: woocommerce-functions.php:720 -#@ woocommerce -msgid "Please type your e-mail address." -msgstr "Angiv venligst din e-mailadresse" - -#: woocommerce-functions.php:722 -#@ woocommerce -msgid "The email address isn’t correct." -msgstr "E-mailadressen er ikke korrekt." - -#: woocommerce-functions.php:725 -#@ woocommerce -msgid "This email is already registered, please choose another one." -msgstr "Denne e-mail er allerede registreret. Vælg venligst en anden." - -#: woocommerce-functions.php:730 -#@ woocommerce -msgid "Re-enter your password." -msgstr "Indtast din adgangskode igen." - -#: woocommerce-functions.php:735 -#@ woocommerce -msgid "Anti-spam field was filled in." -msgstr "Anti-span felt blev udfyldt." - -#: woocommerce-functions.php:841 -#@ woocommerce -msgid "The cart has been filled with the items from your previous order." -msgstr "Kurven er blevet fyldt med produkter fra dine tidligere ordrer." - -#: woocommerce-functions.php:867 -#@ woocommerce -msgid "Order cancelled by customer." -msgstr "Ordren blev annulleret af kunden." - -#: woocommerce-functions.php:870 -#@ woocommerce -msgid "Your order was cancelled." -msgstr "Din ordre blev annulleret." - -#: woocommerce-functions.php:876 -#@ woocommerce -msgid "Your order is no longer pending and could not be cancelled. Please contact us if you need assistance." -msgstr "Din ordre er ikke længere afventende og kan ikke annuleres. Kontakt og venligst hvis du har brug for assistance." - -#: woocommerce-functions.php:911 -#@ woocommerce -msgid "Invalid email address." -msgstr "Ugyldig e-mailadresse." - -#: woocommerce-functions.php:911 woocommerce-functions.php:933 -#: woocommerce-functions.php:953 woocommerce-functions.php:959 -#: woocommerce-functions.php:963 woocommerce-functions.php:966 -#: woocommerce-functions.php:996 woocommerce-functions.php:1099 -#@ woocommerce -msgid "Go to homepage →" -msgstr "Gå til forsiden →" - -#: woocommerce-functions.php:933 -#@ woocommerce -msgid "Invalid download." -msgstr "Ugyldig download." - -#: woocommerce-functions.php:945 -#@ woocommerce -msgid "You must be logged in to download files." -msgstr "Du skal være logget ind for at downloade filer." - -#: woocommerce-functions.php:948 -#@ woocommerce -msgid "This is not your download link." -msgstr "Dette er ikke dit downloadlink." - -#: woocommerce-functions.php:953 -#@ woocommerce -msgid "Product no longer exists." -msgstr ".Produkt eksisterer ikke længere" - -#: woocommerce-functions.php:963 -#@ woocommerce -msgid "Sorry, you have reached your download limit for this file" -msgstr "Beklager, du har nået din downloadgrænse for denne fil" - -#: woocommerce-functions.php:966 -#@ woocommerce -msgid "Sorry, this download has expired" -msgstr "Beklager, denne download er udløbet." - -#: woocommerce-functions.php:1099 -#@ woocommerce -msgid "File not found" -msgstr "Filen blev ikke fundet" - -#: woocommerce-functions.php:1209 -#@ woocommerce -msgid "New products" -msgstr "Nye produkter" - -#: woocommerce-functions.php:1217 -#, php-format -#@ woocommerce -msgid "New products added to %s" -msgstr "Nye produkter tilføjet til %s" - -#: woocommerce-functions.php:1225 -#, php-format -#@ woocommerce -msgid "New products tagged %s" -msgstr "Nye produkter tagged %s" - -#: woocommerce-functions.php:1264 -#@ woocommerce -msgid "You have taken too long. Please go back and refresh the page." -msgstr "Du har brugt for lang tid. Gå venligst tilbage og opdater siden." - -#: woocommerce-functions.php:1267 -#@ woocommerce -msgid "Please rate the product." -msgstr "Bedøm venligst produktet." - -#: admin/settings/settings-init.php:95 woocommerce-template.php:196 -#@ woocommerce -msgid "This is a demo store for testing purposes — no orders shall be fulfilled." -msgstr "Dette er en demobutik til testformål — ingen ordrer vil blive opfyldt." - -#: woocommerce-template.php:215 -#, php-format -#@ woocommerce -msgid "Search Results: “%s”" -msgstr "Søgeresultater: “%s”" - -#: woocommerce-template.php:218 -#, php-format -#@ woocommerce -msgid " – Page %s" -msgstr " – Side %s" - -#: woocommerce-template.php:990 -#@ woocommerce -msgctxt "breadcrumb" -msgid "Home" -msgstr "Hjem" - -#: woocommerce-template.php:1288 woocommerce.php:1175 -#@ woocommerce -msgid "required" -msgstr "påkrævet" - -#: woocommerce-template.php:1334 -#@ woocommerce -msgid "Update country" -msgstr "Opdater land" - -#: woocommerce-template.php:1489 -#@ woocommerce -msgid "Search for:" -msgstr "Søg efter:" - -#: woocommerce-template.php:1490 -#@ woocommerce -msgid "Search for products" -msgstr "Søg efter produkter" - -#: admin/post-types/product.php:620 admin/post-types/product.php:893 -#: admin/post-types/writepanels/writepanel-product_data.php:1030 -#: woocommerce-template.php:1491 woocommerce.php:913 -#@ woocommerce -msgid "Search" -msgstr "Søg" - -#: admin/includes/updates/woocommerce-update-2.0.php:50 -#: admin/woocommerce-admin-init.php:895 woocommerce.php:752 -#@ woocommerce -msgctxt "slug" -msgid "product-category" -msgstr "produkt-kategori" - -#: admin/includes/updates/woocommerce-update-2.0.php:51 -#: admin/woocommerce-admin-init.php:908 woocommerce.php:753 -#@ woocommerce -msgctxt "slug" -msgid "product-tag" -msgstr "produkt-tag" - -#: admin/includes/updates/woocommerce-update-2.0.php:59 woocommerce.php:755 -#@ woocommerce -msgctxt "slug" -msgid "product" -msgstr "produkt" - -#: woocommerce.php:791 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Categories" -msgstr "Kategorier" - -#: woocommerce.php:792 -#@ woocommerce -msgid "Search Product Categories" -msgstr "Søg produktkategorier" - -#: woocommerce.php:793 -#@ woocommerce -msgid "All Product Categories" -msgstr "Alle produktkategorier" - -#: woocommerce.php:794 -#@ woocommerce -msgid "Parent Product Category" -msgstr "Forælder Produkt Kategori" - -#: woocommerce.php:795 -#@ woocommerce -msgid "Parent Product Category:" -msgstr "Forælder Produkt Kategori:" - -#: woocommerce.php:796 -#@ woocommerce -msgid "Edit Product Category" -msgstr "Rediger produktkategori" - -#: woocommerce.php:797 -#@ woocommerce -msgid "Update Product Category" -msgstr "Opdater produktkategori" - -#: woocommerce.php:798 -#@ woocommerce -msgid "Add New Product Category" -msgstr "Tilføj ny produktkategori" - -#: woocommerce.php:799 -#@ woocommerce -msgid "New Product Category Name" -msgstr "Nyt produktkategori navn" - -#: woocommerce.php:827 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Tags" -msgstr "Tags" - -#: woocommerce.php:828 -#@ woocommerce -msgid "Search Product Tags" -msgstr "Søg Produkt Nøgleord" - -#: woocommerce.php:829 -#@ woocommerce -msgid "All Product Tags" -msgstr "Alle Produkt Nøgleord" - -#: woocommerce.php:830 -#@ woocommerce -msgid "Parent Product Tag" -msgstr "Forælder produkt tag" - -#: woocommerce.php:831 -#@ woocommerce -msgid "Parent Product Tag:" -msgstr "Forælder produkt tag:" - -#: woocommerce.php:832 -#@ woocommerce -msgid "Edit Product Tag" -msgstr "Rediger produkt tag" - -#: woocommerce.php:833 -#@ woocommerce -msgid "Update Product Tag" -msgstr "Opdater produkt tag" - -#: woocommerce.php:834 -#@ woocommerce -msgid "Add New Product Tag" -msgstr "Tilføj nyt produkt tag" - -#: woocommerce.php:835 -#@ woocommerce -msgid "New Product Tag Name" -msgstr "Nyt produkt tag navn" - -#: woocommerce.php:854 woocommerce.php:856 -#@ woocommerce -msgid "Shipping Classes" -msgstr "Forsendelsesklasser" - -#: woocommerce.php:858 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Shipping Classes" -msgstr "Forsendelse Klasser" - -#: woocommerce.php:859 -#@ woocommerce -msgid "Search Shipping Classes" -msgstr "Søg forsendelsesklasse" - -#: woocommerce.php:860 -#@ woocommerce -msgid "All Shipping Classes" -msgstr "Alle forsendelsesklasser" - -#: woocommerce.php:861 -#@ woocommerce -msgid "Parent Shipping Class" -msgstr "Forælder Fragt Kategori" - -#: woocommerce.php:862 -#@ woocommerce -msgid "Parent Shipping Class:" -msgstr "Forælder Fragt Kategori:" - -#: woocommerce.php:863 -#@ woocommerce -msgid "Edit Shipping Class" -msgstr "Rediger Forsendelsesklasse" - -#: woocommerce.php:864 -#@ woocommerce -msgid "Update Shipping Class" -msgstr "Opdater forsendelsesklasse" - -#: woocommerce.php:865 -#@ woocommerce -msgid "Add New Shipping Class" -msgstr "Tilføj ny forsendelsesklasse" - -#: woocommerce.php:866 -#@ woocommerce -msgid "New Shipping Class Name" -msgstr "Nyt forsendelsesklasse navn" - -#: woocommerce.php:914 -#@ woocommerce -msgid "All" -msgstr "Alle" - -#: woocommerce.php:915 woocommerce.php:916 -#@ woocommerce -msgid "Parent" -msgstr "Forælder" - -#: admin/woocommerce-admin-attributes.php:276 woocommerce.php:918 -#@ woocommerce -msgid "Update" -msgstr "Opdater" - -#: woocommerce.php:919 -#@ woocommerce -msgid "Add New" -msgstr "Tilføj ny" - -#: woocommerce.php:920 -#@ woocommerce -msgid "New" -msgstr "Ny" - -#: woocommerce.php:950 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Products" -msgstr "Produkter" - -#: woocommerce.php:951 -#@ woocommerce -msgid "Add Product" -msgstr "Tilføj produkt" - -#: woocommerce.php:952 -#@ woocommerce -msgid "Add New Product" -msgstr "Tilføj nyt produkt" - -#: woocommerce.php:954 -#@ woocommerce -msgid "Edit Product" -msgstr "Rediger produkt" - -#: woocommerce.php:955 -#@ woocommerce -msgid "New Product" -msgstr "Nyt produkt" - -#: woocommerce.php:956 woocommerce.php:957 -#@ woocommerce -msgid "View Product" -msgstr "Vis produkt" - -#: woocommerce.php:958 -#@ woocommerce -msgid "Search Products" -msgstr "Produktsøgning" - -#: woocommerce.php:959 -#@ woocommerce -msgid "No Products found" -msgstr "Ingen produkter fundet" - -#: woocommerce.php:960 -#@ woocommerce -msgid "No Products found in trash" -msgstr "Ingen produkter fundet i papirkurven" - -#: woocommerce.php:961 -#@ woocommerce -msgid "Parent Product" -msgstr "Forælder Produkt" - -#: woocommerce.php:963 -#@ woocommerce -msgid "This is where you can add new products to your store." -msgstr "Her kan du tilføje nye produkter til din butik." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -#: woocommerce.php:986 -#@ woocommerce -msgid "Variations" -msgstr "Varianter" - -#: woocommerce.php:987 -#@ woocommerce -msgid "Variation" -msgstr "Variant" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:193 -#: woocommerce.php:988 -#@ woocommerce -msgid "Add Variation" -msgstr "Tilføj variant" - -#: woocommerce.php:989 -#@ woocommerce -msgid "Add New Variation" -msgstr "Tilføj ny variant" - -#: woocommerce.php:991 -#@ woocommerce -msgid "Edit Variation" -msgstr "Rediger variant" - -#: woocommerce.php:992 -#@ woocommerce -msgid "New Variation" -msgstr "Ny variant" - -#: woocommerce.php:993 woocommerce.php:994 -#@ woocommerce -msgid "View Variation" -msgstr "Vis variant" - -#: woocommerce.php:995 -#@ woocommerce -msgid "Search Variations" -msgstr "Variantsøgning" - -#: woocommerce.php:996 -#@ woocommerce -msgid "No Variations found" -msgstr "Ingen varianter fundet" - -#: woocommerce.php:997 -#@ woocommerce -msgid "No Variations found in trash" -msgstr "Ingen varianter fundet i papirkurven" - -#: woocommerce.php:998 -#@ woocommerce -msgid "Parent Variation" -msgstr "Forælder Variant" - -#: admin/woocommerce-admin-init.php:140 admin/woocommerce-admin-init.php:142 -#: woocommerce.php:1015 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Ordrer" - -#: admin/woocommerce-admin-content.php:68 -#: admin/woocommerce-admin-dashboard.php:142 woocommerce.php:1024 -#@ woocommerce -msgid "Orders" -msgstr "Ordrer" - -#: woocommerce.php:1026 -#@ woocommerce -msgid "Add Order" -msgstr "Tilføj ordre" - -#: woocommerce.php:1027 -#@ woocommerce -msgid "Add New Order" -msgstr "Tilføj ny ordre" - -#: woocommerce.php:1029 -#@ woocommerce -msgid "Edit Order" -msgstr "Rediger ordre" - -#: woocommerce.php:1030 -#@ woocommerce -msgid "New Order" -msgstr "Ny ordre" - -#: woocommerce.php:1033 -#@ woocommerce -msgid "Search Orders" -msgstr "Ordresøgning" - -#: woocommerce.php:1034 -#@ woocommerce -msgid "No Orders found" -msgstr "Ingen ordre fundet" - -#: woocommerce.php:1035 -#@ woocommerce -msgid "No Orders found in trash" -msgstr "Ingen ordre fundet i papirkurven" - -#: woocommerce.php:1036 -#@ woocommerce -msgid "Parent Orders" -msgstr "Forælder ordrer" - -#: woocommerce.php:1039 -#@ woocommerce -msgid "This is where store orders are stored." -msgstr "Her gemmes butiksordrer" - -#: admin/settings/settings-init.php:105 admin/woocommerce-admin-content.php:61 -#: admin/woocommerce-admin-content.php:76 -#: admin/woocommerce-admin-reports.php:72 woocommerce.php:1061 -#@ woocommerce -msgid "Coupons" -msgstr "Kuponer" - -#: woocommerce.php:1063 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Coupons" -msgstr "Kuponer" - -#: woocommerce.php:1064 -#@ woocommerce -msgid "Add Coupon" -msgstr "Tilføj kupon" - -#: woocommerce.php:1065 -#@ woocommerce -msgid "Add New Coupon" -msgstr "Tilføj ny kupon" - -#: woocommerce.php:1067 -#@ woocommerce -msgid "Edit Coupon" -msgstr "Rediger kupon" - -#: woocommerce.php:1068 -#@ woocommerce -msgid "New Coupon" -msgstr "Ny kupon" - -#: woocommerce.php:1069 -#@ woocommerce -msgid "View Coupons" -msgstr "Vis kuponer" - -#: woocommerce.php:1070 -#@ woocommerce -msgid "View Coupon" -msgstr "Vis kupon" - -#: woocommerce.php:1071 -#@ woocommerce -msgid "Search Coupons" -msgstr "Kuponsøgning" - -#: woocommerce.php:1072 -#@ woocommerce -msgid "No Coupons found" -msgstr "Ingen kuponer findet" - -#: woocommerce.php:1073 -#@ woocommerce -msgid "No Coupons found in trash" -msgstr "Ingen kuponer fundet i papirkurven" - -#: woocommerce.php:1074 -#@ woocommerce -msgid "Parent Coupon" -msgstr "Forælder Kupon" - -#: woocommerce.php:1076 -#@ woocommerce -msgid "This is where you can add new coupons that customers can use in your store." -msgstr "Her kan du tilføje nye kuponer, som kunder kan bruge i din butik." - -#: woocommerce.php:1172 -#, fuzzy -#@ woocommerce -msgid "Select an option…" -msgstr "Vælg et land…" - -#: woocommerce.php:1173 -#, fuzzy -#@ woocommerce -msgid "Please select a rating" -msgstr "Slet valgte satser?" - -#: woocommerce.php:1174 -#@ woocommerce -msgid "Sorry, no products matched your selection. Please choose a different combination." -msgstr "Beklager, ingen produkter svarede til dit valg. Vælg venligst en anden kombination." - -#: woocommerce.php:1656 -#@ woocommerce -msgid "Cart % Discount" -msgstr "Indkøbskurv % rabat" - -#: woocommerce.php:1657 -#@ woocommerce -msgid "Product Discount" -msgstr "Produktrabat" - -#: woocommerce.php:1658 -#@ woocommerce -msgid "Product % Discount" -msgstr "Produkt % rabat" - -#: admin/woocommerce-admin-settings.php:45 woocommerce.php:1723 -#@ woocommerce -msgid "Action failed. Please refresh the page and retry." -msgstr "Handling mislykkedes. Opdater siden og prøv venligst igen." - -#: admin/importers/importers-init.php:13 -#@ woocommerce -msgid "WooCommerce Tax Rates (CSV)" -msgstr "WooCommerce skattesatser (CSV)" - -#: admin/importers/importers-init.php:13 -#@ woocommerce -msgid "Import tax rates to your store via a csv file." -msgstr "Importer skattesatser til din butik via en csv-fil." - -#: admin/importers/tax-rates-importer.php:103 -#: admin/importers/tax-rates-importer.php:186 -#: admin/importers/tax-rates-importer.php:226 -#: admin/importers/tax-rates-importer.php:241 -#@ woocommerce -msgid "Sorry, there has been an error." -msgstr "Baklger, der er sket en fejl." - -#: admin/importers/tax-rates-importer.php:104 -#@ woocommerce -msgid "The file does not exist, please try again." -msgstr "Filen eksiterer ikke, prøv venligst igen." - -#: admin/importers/tax-rates-importer.php:187 -#@ woocommerce -msgid "The CSV is invalid." -msgstr "CSV er ugyldig." - -#: admin/importers/tax-rates-importer.php:198 -#, php-format -#@ woocommerce -msgid "Import complete - imported %s tax rates and skipped %s." -msgstr "Import komplet - importeret %s skattesatser og skipped %s." - -#: admin/importers/tax-rates-importer.php:208 -#@ woocommerce -msgid "All done!" -msgstr "Færdig!" - -#: admin/importers/tax-rates-importer.php:208 -#@ woocommerce -msgid "View Tax Rates" -msgstr "Se Afgiftssatser" - -#: admin/importers/tax-rates-importer.php:259 -#@ woocommerce -msgid "Import Tax Rates" -msgstr "Importer Afgiftssatser" - -#: admin/importers/tax-rates-importer.php:282 -#@ woocommerce -msgid "Hi there! Upload a CSV file containing tax rates to import the contents into your shop. Choose a .csv file to upload, then click \"Upload file and import\"." -msgstr "Hej! Upload en CSV-fil, der indeholder skattesatser til at importere indholdet i din butik. Vælg en. Csv-fil at uploade og klik på "Upload fil og import"." - -#: admin/importers/tax-rates-importer.php:284 -#, php-format -#@ woocommerce -msgid "Tax rates need to be defined with columns in a specific order (10 columns). Click here to download a sample." -msgstr "Skattesatser skal defineres med kolonner i en bestemt rækkefølge (10 kolonner). Klik her for at downloade en prøve ." - -#: admin/importers/tax-rates-importer.php:292 -#@ default -msgid "Before you can upload your import file, you will need to fix the following error:" -msgstr "Før du kan uploade din import fil, er du nødt til at rette følgende fejl:" - -#: admin/importers/tax-rates-importer.php:301 -#@ default -msgid "Choose a file from your computer:" -msgstr "Vælg en fil fra din computer:" - -#: admin/importers/tax-rates-importer.php:307 -#, php-format -#@ default -msgid "Maximum size: %s" -msgstr "Maximum størrelse: %s" - -#: admin/importers/tax-rates-importer.php:312 -#@ woocommerce -msgid "OR enter path to file:" -msgstr "Eller indtast stien til filen:" - -#: admin/importers/tax-rates-importer.php:319 -#@ woocommerce -msgid "Delimiter" -msgstr "Afgræns" - -#: admin/importers/tax-rates-importer.php:325 -#@ default -msgid "Upload file and import" -msgstr "Upload fil og importer" - -#: admin/includes/duplicate_product.php:23 -#@ woocommerce -msgid "No product to duplicate has been supplied!" -msgstr "Intet produkt at duplikere er blevet leveret!" - -#: admin/includes/duplicate_product.php:43 -#@ woocommerce -msgid "Product creation failed, could not find original product:" -msgstr "Produkt oprettelse mislykkedes, kunne ikke finde oprindelige produkt:" - -#: admin/includes/duplicate_product.php:89 -#@ woocommerce -msgid "(Copy)" -msgstr "(kopi)" - -#: admin/includes/notice-install.php:6 -#@ woocommerce -msgid "Welcome to WooCommerce – You're almost ready to start selling :)" -msgstr "Velkommen til WooCommerce – Du er næsten klar til at begynde at sælge :)" - -#: admin/includes/notice-install.php:7 -#@ woocommerce -msgid "Install WooCommerce Pages" -msgstr "Installer WooCommerce sider" - -#: admin/includes/notice-install.php:7 -#@ woocommerce -msgid "Skip setup" -msgstr "Spring setup over" - -#: admin/includes/notice-theme-support.php:6 -#@ woocommerce -msgid "Your theme does not declare WooCommerce support – if you encounter layout issues please read our integration guide or choose a WooCommerce theme :)" -msgstr "Dit tema har ikke WooCommerce support - hvis du støder på layout spørgsmål kan du læse vores integrations vejledning, eller vælg et WooCommerce tema :)" - -#: admin/includes/notice-theme-support.php:7 -#@ woocommerce -msgid "Theme Integration Guide" -msgstr "Tema Integration Guide" - -#: admin/includes/notice-theme-support.php:7 -#@ woocommerce -msgid "Hide this notice" -msgstr "Skjul denne meddelelse" - -#: admin/includes/notice-update.php:6 -#@ woocommerce -msgid "Data Update Required – We just need to update your install to the latest version" -msgstr "Data opdatering krævet. – Vi skal bare opdatere din installation til den nyeste version" - -#: admin/includes/notice-update.php:7 -#@ woocommerce -msgid "Run the updater" -msgstr "Kør updater" - -#: admin/includes/notice-update.php:12 -#@ woocommerce -msgid "It is strongly recommended that you backup your database before proceeding. Are you sure you wish to run the updater now?" -msgstr "Det anbefales kraftigt, at du sikkerhedskopiere din database før du fortsætter. Er du sikker på, du ønsker at køre opdateringsprogrammet nu?" - -#: admin/includes/updates/woocommerce-update-2.0.php:180 -#: admin/woocommerce-admin-install.php:204 -#@ woocommerce -msgctxt "page_slug" -msgid "lost-password" -msgstr "mistet-password" - -#: admin/includes/updates/woocommerce-update-2.0.php:180 -#: admin/woocommerce-admin-install.php:204 -#: admin/woocommerce-admin-status.php:309 -#@ woocommerce -msgid "Lost Password" -msgstr "Mistet password" - -#: admin/includes/welcome.php:33 -#@ woocommerce -msgid "Welcome to WooCommerce" -msgstr "Velkommen til WooCommerce" - -#: admin/includes/welcome.php:128 -#, php-format -#@ woocommerce -msgid "Welcome to WooCommerce %s" -msgstr "Velkommen til WooCommerce %s" - -#: admin/includes/welcome.php:133 -#@ woocommerce -msgid "Thanks, all done!" -msgstr "Tak, alt er færdigt!" - -#: admin/includes/welcome.php:135 -#@ woocommerce -msgid "Thank you for updating to the latest version!" -msgstr "Tak for at opdatere til den nyeste version!" - -#: admin/includes/welcome.php:137 -#@ woocommerce -msgid "Thanks for installing!" -msgstr "Tak for installationen!" - -#: admin/includes/welcome.php:139 -#, php-format -#@ woocommerce -msgid "%s WooCommerce %s is more powerful, stable, and secure than ever before. We hope you enjoy it." -msgstr "%s WooCommerce % er mere kraftfuld, stabil og sikker end nogensinde før. Vi håber du nyder det." - -#: admin/includes/welcome.php:143 -#, php-format -#@ default -msgid "Version %s" -msgstr "Version %s" - -#: admin/includes/welcome.php:147 -#@ woocommerce -msgid "Docs" -msgstr "Docs" - -#: admin/includes/welcome.php:154 -#@ woocommerce -msgid "What's New" -msgstr "Hvad er nyt" - -#: admin/includes/welcome.php:156 -#@ woocommerce -msgid "Credits" -msgstr "Credits" - -#: admin/includes/welcome.php:179 -#@ woocommerce -msgid "Security in mind" -msgstr "Sikkerhed i tankerne" - -#: admin/includes/welcome.php:183 -#@ woocommerce -msgid "Sucuri Safe Plugin" -msgstr "Sucuri Safe Plugin" - -#: admin/includes/welcome.php:184 -#@ woocommerce -msgid "You will be happy to learn that WooCommerce has been audited and certified by the Sucuri Security team. Whilst there is not much to be seen visually to understand the amount of work that went into this audit, rest assured that your website is powered by one of the most powerful and stable eCommerce plugins available." -msgstr "Du vil blive glad for at erfare, at WooCommerce er auditeret og certificeret af Sucuri Security team. Mens der er ikke er meget at se visuelt, skal du forstå den mængde arbejde, der gik til denne revision, forvisset om, at dit websted er drevet af en af ​​de mest kraftfulde og stabile eCommerce plugins til rådighed." - -#: admin/includes/welcome.php:187 -#@ woocommerce -msgid "A Smoother Admin Experience" -msgstr "En flottere admin oplevelse" - -#: admin/includes/welcome.php:193 -#@ woocommerce -msgid "New Product Panel" -msgstr "Nyt produkt Panel" - -#: admin/includes/welcome.php:194 -#@ woocommerce -msgid "We have revised the product data panel making it cleaner, more streamlined, and more logical. Adding products is a breeze!" -msgstr "Vi har revideret det produkt data panel gør det renere, mere strømlinet og mere logisk. Tilføjelse af produkter er en brise!" - -#: admin/includes/welcome.php:199 -#@ woocommerce -msgid "Nicer Order Screens" -msgstr "Flottere Ordre interface" - -#: admin/includes/welcome.php:200 -#@ woocommerce -msgid "Order pages have had a cleanup, with a more easily scannable interface. We particularly like the new status icons!" -msgstr "Ordre sider har fået en oprydning, med et lettere interface. Vi kan særligt lide de nye status ikoner!" - -#: admin/includes/welcome.php:205 -#@ woocommerce -msgid "Multi-Download Support" -msgstr "Multi-Download Support" - -#: admin/includes/welcome.php:206 -#@ woocommerce -msgid "Products can have multiple downloadable files - purchasers will get access to all the files added." -msgstr "Produkter kan have flere filer til download - købere får adgang til alle de filer tilføjet." - -#: admin/includes/welcome.php:211 -#@ woocommerce -msgid "Less Taxing Taxes" -msgstr "Less Taxing Taxes" - -#: admin/includes/welcome.php:217 -#@ woocommerce -msgid "New Tax Input Panel" -msgstr "Ny skat Input Panel" - -#: admin/includes/welcome.php:218 -#@ woocommerce -msgid "The tax input pages have been streamlined to make inputting taxes simpler - adding multiple taxes for a single jurisdiction is now much easier using the priority system. There is also CSV import/export support." -msgstr "De skattemæssige input sider er blevet strømlinet for at gøre indlæsning af skatter enklere - at tilføje flere skatter for en enkelt jurisdiktion er nu meget lettere at bruge systemet med prioritet. Der er også CSV import / eksport support." - -#: admin/includes/welcome.php:222 -#@ woocommerce -msgid "Improved Tax Options" -msgstr "Forbedrede Skat instillinger" - -#: admin/includes/welcome.php:223 -#@ woocommerce -msgid "As requested by some users, we now support taxing the billing address instead of shipping (optional), and we allow you to choose which tax class applies to shipping." -msgstr "Som ønsket af nogle brugere, støtter vi nu beskatte faktureringsadresse stedet for forsendelse (valgfrit), og vi giver dig mulighed for at vælge, hvilket skattecenter klasse omfatter shipping." - -#: admin/includes/welcome.php:228 -#@ woocommerce -msgid "Product Listing Improvements Customers Will Love" -msgstr "Produkt visnings Forbedringer kunderne vil elske" - -#: admin/includes/welcome.php:234 -#@ woocommerce -msgid "New Sorting Options" -msgstr "Nye sorteringsmuligheder" - -#: admin/includes/welcome.php:235 -#@ woocommerce -msgid "Customers can now sort products by popularity and ratings." -msgstr "Kunderne kan nu sortere produkterne efter popularitet og ratings." - -#: admin/includes/welcome.php:240 -#@ woocommerce -msgid "Better Pagination and Result Counts" -msgstr "Bedre Pagination og Result Counts" - -#: admin/includes/welcome.php:241 -#@ woocommerce -msgid "Numbered pagination has been added to core, and we show the number of results found above the listings." -msgstr "Nummereret paginering er blevet tilføjet til kernen, og vi viser antallet af resultater fundet over produktvisning." - -#: admin/includes/welcome.php:246 -#@ woocommerce -msgid "Inline Star Rating Display" -msgstr "Inline Stjernetildeling Display" - -#: admin/includes/welcome.php:247 -#@ woocommerce -msgid "We have added star ratings to the catalog which are pulled from reviews." -msgstr "Vi har tilføjet stjerneklassifikationer til kataloget, som er trukket fra vurderinger." - -#: admin/includes/welcome.php:255 -#@ woocommerce -msgid "Under the Hood" -msgstr "Under the Hood" - -#: admin/includes/welcome.php:259 -#@ woocommerce -msgid "New product classes" -msgstr "Nyt produkt klasser" - -#: admin/includes/welcome.php:260 -#@ woocommerce -msgid "The product classes have been rewritten and are now factory based. Much more extendable, and easier to query products using the new get_product() function." -msgstr "Produktet klasser er blevet omskrevet og nu fabrik baseret. Meget lettere at udvide, og lettere at forespørge produkter ved hjælp af den nye get_product() funktion." - -#: admin/includes/welcome.php:264 -#@ woocommerce -msgid "Capability overhaul" -msgstr "Capability eftersyn" - -#: admin/includes/welcome.php:265 -#@ woocommerce -msgid "More granular capabilities for admin/shop manager roles covering products, orders and coupons." -msgstr "Mere kornede kapaciteter til admin / shop lederroller dækker produkter, ordrer og kuponer." - -#: admin/includes/welcome.php:269 -#@ woocommerce -msgid "API Improvements" -msgstr "API Forbedringer" - -#: admin/includes/welcome.php:270 -#@ woocommerce -msgid "WC-API now has real endpoints, and we've optimised the gateways API significantly by only loading gateways when needed." -msgstr "WC-API nu har reelle endpoints, og vi har optimeret gateways API betydeligt ved kun at indlæse gateways når det er nødvendigt." - -#: admin/includes/welcome.php:276 -#@ woocommerce -msgid "Cache-friendly cart widgets" -msgstr "Cache-venlige cart widgets" - -#: admin/includes/welcome.php:277 -#@ woocommerce -msgid "Cart widgets and other \"fragments\" are now pulled in via AJAX - this works wonders with static page caching." -msgstr "Indkøbskurv widgets og andre \"dele\" er nu trukket ind via AJAX - det virker vidunderligt med statisk side caching." - -#: admin/includes/welcome.php:281 -#@ woocommerce -msgid "Session handling" -msgstr "Session håndtering" - -#: admin/includes/welcome.php:282 -#@ woocommerce -msgid "PHP SESSIONS have been a problem for many users in the past, so we've developed our own handler using cookies and options to make these more reliable." -msgstr "PHP SESSIONS have været et problem for mange brugere i fortiden, så vi har udviklet vores egen handleren ved brug af cookies og muligheder for at gøre disse mere pålidelige." - -#: admin/includes/welcome.php:286 -#@ woocommerce -msgid "Retina Ready" -msgstr "Retina Ready" - -#: admin/includes/welcome.php:287 -#@ woocommerce -msgid "All graphics within WC have been optimised for HiDPI displays." -msgstr "Alle grafik inden WC er optimeret til HiDPI skærme." - -#: admin/includes/welcome.php:294 -#@ woocommerce -msgid "Better stock handling" -msgstr "Bedre lagerhåndtering" - -#: admin/includes/welcome.php:295 -#@ woocommerce -msgid "We have added an option to hold stock for unpaid orders (defaults to 60mins). When this time limit is reached, and the order is not paid for, stock is released and the order is cancelled." -msgstr "Vi har tilføjet en mulighed for at holde bestanden for ubetalte ordrer (som standard 60mins). Når denne frist er nået, og ordren ikke er betalt for, er lager frigivet og ordren er annulleret." - -#: admin/includes/welcome.php:299 -#@ woocommerce -msgid "Improved Line-item storage" -msgstr "Forbedret Line-post opbevaring" - -#: admin/includes/welcome.php:300 -#@ woocommerce -msgid "We have changed how order items get stored making them easier (and faster) to access for reporting. Order items are no longer serialised within an order - they are stored within their own table." -msgstr "Vi har ændret, hvordan ordre bliver gemt, som gør dem lettere (og hurtigere) at få adgang til ved rapportering. Bestillings varer ikke længere føljeton inden en ordre - de er gemt i deres egen tabel." - -#: admin/includes/welcome.php:304 -#@ woocommerce -msgid "Autoload" -msgstr "Autoload" - -#: admin/includes/welcome.php:305 -#@ woocommerce -msgid "We have setup autoloading for classes - this has dramatically reduced memory usage in 2.0." -msgstr "Vi har setup automatisk indlæsning af klasser - det har dramatisk reduceret brug af hukommelse i 2,0." - -#: admin/includes/welcome.php:312 -#@ woocommerce -msgid "Go to WooCommerce Settings" -msgstr "Gå til WooCommerce Indstillinger" - -#: admin/includes/welcome.php:330 -#@ woocommerce -msgid "WooCommerce is developed and maintained by a worldwide team of passionate individuals and backed by an awesome developer community. Want to see your name? Contribute to WooCommerce." -msgstr "WooCommerce er udviklet og vedligeholdt af et verdensomspændende team af passionerede individer og bakkes op af fantastiske udvikler i samfundet. Vil du se dit navn? Contribute to WooCommerce." - -#: admin/includes/welcome.php:356 -#, php-format -#@ woocommerce -msgid "View %s" -msgstr "Vis %s" - -#: admin/post-types/product.php:31 -#@ woocommerce -msgid "Make a duplicate from this product" -msgstr "Lav en kopi af dette produkt" - -#: admin/post-types/product.php:32 -#@ woocommerce -msgid "Duplicate" -msgstr "Dupliker" - -#: admin/post-types/product.php:61 -#@ woocommerce -msgid "Copy to a new draft" -msgstr "Kopier til et nyt udkast" - -#: admin/post-types/product.php:86 admin/woocommerce-admin-taxonomies.php:297 -#@ woocommerce -msgid "Image" -msgstr "Billede" - -#: admin/post-types/product.php:91 admin/post-types/product.php:557 -#: admin/post-types/writepanels/variation-admin-html.php:46 -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#: admin/woocommerce-admin-reports.php:2083 -#: admin/woocommerce-admin-reports.php:2119 -#@ woocommerce -msgid "SKU" -msgstr "Varer nr" - -#: admin/post-types/product.php:94 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:83 -#: admin/woocommerce-admin-content.php:63 -#: admin/woocommerce-admin-reports.php:99 -#@ woocommerce -msgid "Stock" -msgstr "Lagerbeholdning" - -#: admin/post-types/product.php:98 -#@ woocommerce -msgid "Categories" -msgstr "Kategorier" - -#: admin/post-types/product.php:99 -#@ woocommerce -msgid "Tags" -msgstr "Tags" - -#: admin/post-types/product.php:100 admin/post-types/product.php:632 -#: admin/post-types/product.php:904 -#: admin/post-types/writepanels/writepanel-product_data.php:1040 -#: admin/woocommerce-admin-init.php:463 -#@ woocommerce -msgid "Featured" -msgstr "Udvalgte" - -#: admin/post-types/product.php:101 admin/woocommerce-admin-attributes.php:250 -#: admin/woocommerce-admin-attributes.php:308 -#: admin/woocommerce-admin-attributes.php:385 -#@ woocommerce -msgid "Type" -msgstr "Type" - -#: admin/post-types/product.php:102 admin/post-types/shop_order.php:50 -#: templates/myaccount/my-orders.php:33 -#@ woocommerce -msgid "Date" -msgstr "Dato" - -#: admin/post-types/product.php:151 -#@ default -msgid "Edit this item" -msgstr "Rediger dette emne" - -#: admin/post-types/product.php:152 -#@ default -msgid "Edit this item inline" -msgstr "Edit this item inline" - -#: admin/post-types/product.php:152 -#@ default -msgid "Quick Edit" -msgstr "Hurtig redigering" - -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -#@ default -msgid "Restore this item from the Trash" -msgstr "Gendan dette element fra papirkurven" - -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -#@ default -msgid "Restore" -msgstr "Gendan" - -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -#@ default -msgid "Move this item to the Trash" -msgstr "Flyt dette emne til papirkurven" - -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -#@ default -msgid "Trash" -msgstr "Papirkurv" - -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -#@ default -msgid "Delete this item permanently" -msgstr "Slet dette element permanent" - -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -#: admin/post-types/writepanels/writepanel-order_data.php:463 -#@ default -#@ woocommerce -msgid "Delete Permanently" -msgstr "Slet Permanent" - -#: admin/post-types/product.php:165 -#, php-format -#@ default -msgid "Preview “%s”" -msgstr "Vis “%s”" - -#: admin/post-types/product.php:165 -#@ default -msgid "Preview" -msgstr "Eksempel" - -#: admin/post-types/product.php:167 -#, php-format -#@ default -msgid "View “%s”" -msgstr "Vis “%s”" - -#: admin/post-types/product.php:214 -#@ woocommerce -msgid "Grouped" -msgstr "Grupperet" - -#: admin/post-types/product.php:216 -#@ woocommerce -msgid "External/Affiliate" -msgstr "Ekstern / Affiliate" - -#: admin/post-types/product.php:220 admin/post-types/product.php:407 -#: admin/post-types/writepanels/variation-admin-html.php:168 -#: admin/post-types/writepanels/writepanel-product_data.php:52 -#@ woocommerce -msgid "Virtual" -msgstr "Virtual" - -#: admin/post-types/product.php:222 admin/post-types/product.php:403 -#: admin/post-types/writepanels/variation-admin-html.php:166 -#: admin/post-types/writepanels/writepanel-product_data.php:58 -#@ woocommerce -msgid "Downloadable" -msgstr "Downloadable" - -#: admin/post-types/product.php:224 -#@ woocommerce -msgid "Simple" -msgstr "Simpelt" - -#: admin/post-types/product.php:228 admin/post-types/product.php:387 -#@ woocommerce -msgid "Variable" -msgstr "Variabel" - -#: admin/post-types/product.php:251 -#@ woocommerce -msgid "Toggle featured" -msgstr "Toggle featured" - -#: admin/post-types/product.php:253 -#@ woocommerce -msgid "yes" -msgstr "ja" - -#: admin/post-types/product.php:255 -#@ woocommerce -msgid "no" -msgstr "nej" - -#: admin/post-types/product.php:373 -#@ woocommerce -msgid "Show all product types" -msgstr "Vis alle produkttyper" - -#: admin/post-types/product.php:381 -#: admin/post-types/writepanels/writepanel-product_data.php:39 -#@ woocommerce -msgid "Grouped product" -msgstr "Grupperet produkt" - -#: admin/post-types/product.php:383 -#: admin/post-types/writepanels/writepanel-product_data.php:40 -#@ woocommerce -msgid "External/Affiliate product" -msgstr "Ekstern / Affiliate produkt" - -#: admin/post-types/product.php:385 -#: admin/post-types/writepanels/writepanel-product_data.php:38 -#@ woocommerce -msgid "Simple product" -msgstr "Simpelt produkt" - -#: admin/post-types/product.php:399 -#@ woocommerce -msgid "Show all sub-types" -msgstr "Vis alle sub-typer" - -#: admin/post-types/product.php:520 -#, php-format -#@ woocommerce -msgid "[%s with SKU of %s]" -msgstr "[%s med varenr %s]" - -#: admin/post-types/product.php:526 -#, php-format -#@ woocommerce -msgid "[%s with ID of %d]" -msgstr "[%s med ID %d]" - -#: admin/post-types/product.php:552 admin/post-types/product.php:783 -#: admin/post-types/writepanels/writepanels-init.php:46 -#: admin/settings/settings-init.php:518 -#@ woocommerce -msgid "Product Data" -msgstr "Produktdata" - -#: admin/post-types/product.php:570 -#@ woocommerce -msgid "Regular price" -msgstr "Standardpris" - -#: admin/post-types/product.php:575 admin/post-types/product.php:811 -#@ woocommerce -msgid "Sale" -msgstr "Udsalg" - -#: admin/post-types/product.php:577 -#@ woocommerce -msgid "Sale price" -msgstr "Udsalgspris" - -#: admin/post-types/product.php:599 admin/post-types/product.php:861 -#@ woocommerce -msgid "L/W/H" -msgstr "L/W/H" - -#: admin/post-types/product.php:601 admin/post-types/product.php:877 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:85 -#: admin/post-types/writepanels/writepanel-product_data.php:286 -#@ woocommerce -msgid "Length" -msgstr "Længde" - -#: admin/post-types/product.php:602 admin/post-types/product.php:878 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:86 -#: admin/post-types/writepanels/writepanel-product_data.php:287 -#: admin/woocommerce-admin-settings.php:795 -#@ woocommerce -msgid "Width" -msgstr "Bredde" - -#: admin/post-types/product.php:603 admin/post-types/product.php:879 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:87 -#: admin/post-types/writepanels/writepanel-product_data.php:288 -#: admin/woocommerce-admin-settings.php:797 -#@ woocommerce -msgid "Height" -msgstr "Højde" - -#: admin/post-types/product.php:613 admin/post-types/product.php:885 -#@ woocommerce -msgid "Visibility" -msgstr "Synlighed" - -#: admin/post-types/product.php:618 admin/post-types/product.php:891 -#@ woocommerce -msgid "Catalog & search" -msgstr "Katalog & søg" - -#: admin/post-types/product.php:619 admin/post-types/product.php:892 -#: admin/post-types/writepanels/writepanel-product_data.php:1029 -#: admin/woocommerce-admin-content.php:46 -#: admin/woocommerce-admin-settings.php:181 -#@ woocommerce -msgid "Catalog" -msgstr "Katalog" - -#: admin/post-types/product.php:621 admin/post-types/product.php:894 -#: admin/post-types/writepanels/writepanel-product_data.php:1031 -#@ woocommerce -msgid "Hidden" -msgstr "Skjult" - -#: admin/post-types/product.php:636 admin/post-types/product.php:922 -#@ woocommerce -msgid "In stock?" -msgstr "På lager?" - -#: admin/post-types/product.php:657 admin/post-types/product.php:940 -#: admin/post-types/writepanels/writepanel-product_data.php:212 -#@ woocommerce -msgid "Manage stock?" -msgstr "Kontroller lager?" - -#: admin/post-types/product.php:661 admin/post-types/product.php:959 -#: admin/post-types/product.php:975 -#: admin/post-types/writepanels/writepanel-product_data.php:219 -#@ woocommerce -msgid "Stock Qty" -msgstr "Lager Antal" - -#: admin/post-types/product.php:792 admin/post-types/product.php:816 -#: admin/post-types/product.php:842 admin/post-types/product.php:866 -#: admin/post-types/product.php:890 admin/post-types/product.php:909 -#: admin/post-types/product.php:927 admin/post-types/product.php:945 -#: admin/post-types/product.php:964 -#@ woocommerce -msgid "— No Change —" -msgstr "— Ingen ændringer —" - -#: admin/post-types/product.php:793 admin/post-types/product.php:817 -#: admin/post-types/product.php:843 admin/post-types/product.php:867 -#: admin/post-types/product.php:965 -#@ woocommerce -msgid "Change to:" -msgstr "Ændrer til:" - -#: admin/post-types/product.php:794 admin/post-types/product.php:818 -#@ woocommerce -msgid "Increase by (fixed amount or %):" -msgstr "øg med (fast beløb eller %):" - -#: admin/post-types/product.php:795 admin/post-types/product.php:819 -#@ woocommerce -msgid "Decrease by (fixed amount or %):" -msgstr "Sæt ned med (fast beløb eller %):" - -#: admin/post-types/product.php:805 admin/post-types/product.php:830 -#@ woocommerce -msgid "Enter price" -msgstr "Indtast pris" - -#: admin/post-types/product.php:820 -#@ woocommerce -msgid "Decrease regular price by (fixed amount or %):" -msgstr "Nedsæt almindelige pris med (fast beløb eller %):" - -#: admin/post-types/product.php:910 admin/post-types/product.php:946 -#: admin/post-types/shop_order.php:190 admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:260 -#@ woocommerce -msgid "Yes" -msgstr "Ja" - -#: admin/post-types/product.php:911 admin/post-types/product.php:947 -#: admin/post-types/shop_order.php:192 admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:260 -#@ woocommerce -msgid "No" -msgstr "Nej" - -#: admin/post-types/product.php:1175 -#@ woocommerce -msgid "Sort Products" -msgstr "Sorter produkter" - -#: admin/post-types/product.php:1214 -#@ woocommerce -msgid "Insert into product" -msgstr "Indsæt i produktet" - -#: admin/post-types/product.php:1215 -#@ woocommerce -msgid "Uploaded to this product" -msgstr "Uploadet til dette produkt" - -#: admin/post-types/shop_coupon.php:25 -#@ woocommerce -msgid "Code" -msgstr "Kode" - -#: admin/post-types/shop_coupon.php:26 -#@ woocommerce -msgid "Coupon type" -msgstr "Kupontype" - -#: admin/post-types/shop_coupon.php:27 -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -#@ woocommerce -msgid "Coupon amount" -msgstr "Kuponbeløb" - -#: admin/post-types/shop_coupon.php:29 -#@ woocommerce -msgid "Product IDs" -msgstr "Produkt ID'er" - -#: admin/post-types/shop_coupon.php:30 -#@ woocommerce -msgid "Usage / Limit" -msgstr "Forbrug / Grænse" - -#: admin/post-types/shop_coupon.php:31 -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -#@ woocommerce -msgid "Expiry date" -msgstr "Udløbsdato" - -#: admin/post-types/shop_coupon.php:56 -#@ woocommerce -msgid "Edit coupon" -msgstr "Rediger kupon" - -#: admin/post-types/shop_coupon.php:114 -#, php-format -#@ woocommerce -msgid "%s / %s" -msgstr "%s / %s" - -#: admin/post-types/shop_coupon.php:116 -#, php-format -#@ woocommerce -msgid "%s / ∞" -msgstr "%s / ∞" - -#: admin/post-types/shop_coupon.php:149 admin/post-types/shop_order.php:282 -#@ woocommerce -msgid "Show all statuses" -msgstr "Vis alle statusser" - -#: admin/post-types/shop_order.php:45 -#@ woocommerce -msgid "Billing" -msgstr "Regning" - -#: admin/post-types/shop_order.php:49 -#@ woocommerce -msgid "Customer Notes" -msgstr "Kundenoter" - -#: admin/post-types/shop_order.php:51 -#: admin/post-types/writepanels/writepanel-order_data.php:386 -#: admin/post-types/writepanels/writepanel-order_data.php:433 -#@ woocommerce -msgid "Actions" -msgstr "Handlinger" - -#: admin/post-types/shop_order.php:98 -#@ woocommerce -msgid "made by" -msgstr "lavet af" - -#: admin/post-types/shop_order.php:114 admin/post-types/shop_order.php:123 -#@ woocommerce -msgid "Via" -msgstr "Via" - -#: admin/post-types/shop_order.php:131 -#@ woocommerce -msgid "Unpublished" -msgstr "Ikke-offentliggjort" - -#: admin/post-types/shop_order.php:133 -#@ woocommerce -msgid "Y/m/d g:i:s A" -msgstr "Y/m/d g:i:s A" - -#: admin/post-types/shop_order.php:139 -#, php-format -#@ woocommerce -msgid "%s ago" -msgstr "%s siden" - -#: admin/post-types/shop_order.php:141 -#@ woocommerce -msgid "Y/m/d" -msgstr "Y/m/d" - -#: admin/post-types/shop_order.php:158 -#: admin/woocommerce-admin-dashboard.php:176 -#@ woocommerce -msgid "Processing" -msgstr "Behanlder" - -#: admin/post-types/shop_order.php:165 -#@ woocommerce -msgid "Complete" -msgstr "Afsluttet" - -#: admin/post-types/shop_order.php:301 admin/post-types/shop_order.php:326 -#@ woocommerce -msgid "Show all customers" -msgstr "Vis alle kunder" - -#: admin/post-types/writepanels/order-download-permission-html.php:6 -#@ woocommerce -msgid "Revoke Access" -msgstr "Genskab adgang" - -#: admin/post-types/writepanels/order-download-permission-html.php:7 -#: admin/post-types/writepanels/variation-admin-html.php:7 -#: admin/post-types/writepanels/writepanel-product_data.php:365 -#: admin/post-types/writepanels/writepanel-product_data.php:444 -#: admin/woocommerce-admin-init.php:452 -#@ woocommerce -msgid "Click to toggle" -msgstr "Klik for at skifte" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -#, php-format -#@ woocommerce -msgid "File %d: %s" -msgstr "Filen %d: %s" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -#, php-format -#@ woocommerce -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "Downloaded %s gang" -msgstr[1] "Downloadet %s gange" - -#: admin/post-types/writepanels/order-download-permission-html.php:16 -#@ woocommerce -msgid "Downloads Remaining" -msgstr "Downloads tilbage" - -#: admin/post-types/writepanels/order-download-permission-html.php:19 -#: admin/post-types/writepanels/variation-admin-html.php:143 -#: admin/post-types/writepanels/variation-admin-html.php:151 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -#@ woocommerce -msgid "Unlimited" -msgstr "Ubegrænset" - -#: admin/post-types/writepanels/order-download-permission-html.php:22 -#@ woocommerce -msgid "Access Expires" -msgstr "Adgang udløber" - -#: admin/post-types/writepanels/order-download-permission-html.php:23 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -#@ woocommerce -msgid "Never" -msgstr "Aldrig" - -#: admin/post-types/writepanels/order-fee-html.php:10 -#@ woocommerce -msgid "Fee Name" -msgstr "Gebyr navn" - -#: admin/post-types/writepanels/order-fee-html.php:17 -#: admin/post-types/writepanels/order-item-html.php:84 -#@ woocommerce -msgid "Tax class" -msgstr "Skatteklasse" - -#: admin/post-types/writepanels/order-item-html.php:9 -#@ woocommerce -msgid "Product ID:" -msgstr "Produkt ID:" - -#: admin/post-types/writepanels/order-item-html.php:12 -#@ woocommerce -msgid "Variation ID:" -msgstr "Variation ID:" - -#: admin/post-types/writepanels/order-item-html.php:15 -#@ woocommerce -msgid "Product SKU:" -msgstr "Produkt varenr:" - -#: admin/post-types/writepanels/order-item-html.php:33 -#@ woocommerce -msgid "Add meta" -msgstr "Tilføj meta" - -#: admin/post-types/writepanels/order-tax-html.php:6 -#@ woocommerce -msgid "Tax Rate:" -msgstr "Skat:" - -#: admin/post-types/writepanels/order-tax-html.php:16 -#: admin/post-types/writepanels/writepanel-order_data.php:627 -#@ woocommerce -msgid "Sales Tax:" -msgstr "Skat:" - -#: admin/post-types/writepanels/order-tax-html.php:20 -#: admin/post-types/writepanels/writepanel-order_data.php:635 -#@ woocommerce -msgid "Shipping Tax:" -msgstr "Fragt moms:" - -#: admin/post-types/writepanels/variation-admin-html.php:6 -#: admin/post-types/writepanels/writepanel-product_data.php:364 -#: admin/post-types/writepanels/writepanel-product_data.php:443 -#: admin/woocommerce-admin-init.php:451 -#@ woocommerce -msgid "Remove" -msgstr "Fjern" - -#: admin/post-types/writepanels/variation-admin-html.php:20 -#@ woocommerce -msgid "Any" -msgstr "Vilkårlig" - -#: admin/post-types/writepanels/variation-admin-html.php:46 -#@ woocommerce -msgid "Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "Indtast et varenr for denne variation eller lad feltet stå tomt for at bruge den samme som forælder produktet." - -#: admin/post-types/writepanels/variation-admin-html.php:57 -#@ woocommerce -msgid "Stock Qty:" -msgstr "Lager Antal:" - -#: admin/post-types/writepanels/variation-admin-html.php:57 -#@ woocommerce -msgid "Enter a quantity to enable stock management at variation level, or leave blank to use the parent product's options." -msgstr "Indtast en mængde for at aktivere lagerstyring på variation niveau eller lad feltet stå tomt for at bruge forælder produktets muligheder." - -#: admin/post-types/writepanels/variation-admin-html.php:66 -#@ woocommerce -msgid "Regular Price:" -msgstr "Standardpris:" - -#: admin/post-types/writepanels/variation-admin-html.php:67 -#@ woocommerce -msgid "Variation price (required)" -msgstr "Variation pris (påkrævet)" - -#: admin/post-types/writepanels/variation-admin-html.php:70 -#@ woocommerce -msgid "Sale Price:" -msgstr "Udsalgspris:" - -#: admin/post-types/writepanels/variation-admin-html.php:70 -#: admin/post-types/writepanels/writepanel-product_data.php:125 -#@ woocommerce -msgid "Schedule" -msgstr "Planlæg" - -#: admin/post-types/writepanels/variation-admin-html.php:70 -#@ woocommerce -msgid "Cancel schedule" -msgstr "Annuller planlægning" - -#: admin/post-types/writepanels/variation-admin-html.php:77 -#@ woocommerce -msgid "Sale start date:" -msgstr "Udsalg begynder den:" - -#: admin/post-types/writepanels/variation-admin-html.php:78 -#: admin/post-types/writepanels/writepanel-product_data.php:136 -#@ woocommerce -msgctxt "placeholder" -msgid "From…" -msgstr "Fra…" - -#: admin/post-types/writepanels/variation-admin-html.php:81 -#@ woocommerce -msgid "Sale end date:" -msgstr "Udsalg slutter den:" - -#: admin/post-types/writepanels/variation-admin-html.php:82 -#: admin/post-types/writepanels/writepanel-product_data.php:137 -#@ woocommerce -msgctxt "placeholder" -msgid "To…" -msgstr "Til…" - -#: admin/post-types/writepanels/variation-admin-html.php:90 -#@ woocommerce -msgid "Enter a weight for this variation or leave blank to use the parent product weight." -msgstr "Indtast en vægt for denne variation eller lad feltet stå tomt for at bruge forælder produktets vægt." - -#: admin/post-types/writepanels/variation-admin-html.php:98 -#@ woocommerce -msgid "Dimensions (L×W×H)" -msgstr "Mål (L×W×H)" - -#: admin/post-types/writepanels/variation-admin-html.php:109 -#@ woocommerce -msgid "Shipping class:" -msgstr "Forsendelse klasse:" - -#: admin/post-types/writepanels/variation-admin-html.php:124 -#@ woocommerce -msgid "Tax class:" -msgstr "Skat klasse:" - -#: admin/post-types/writepanels/variation-admin-html.php:135 -#@ woocommerce -msgid "File paths:" -msgstr "Filstier:" - -#: admin/post-types/writepanels/variation-admin-html.php:135 -#@ woocommerce -msgid "Enter one or more File Paths, one per line, to make this variation a downloadable product, or leave blank." -msgstr "Indtast en eller flere filstier, én per linje, for at gøre denne variation et download produkt, eller lad feltet stå tomt." - -#: admin/post-types/writepanels/variation-admin-html.php:136 -#: admin/post-types/writepanels/writepanel-product_data.php:153 -#@ woocommerce -msgid "File paths/URLs, one per line" -msgstr "Fil stier / webadresser, én per linje" - -#: admin/post-types/writepanels/variation-admin-html.php:137 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -#@ woocommerce -msgid "Choose a file" -msgstr "Vælg en fil" - -#: admin/post-types/writepanels/variation-admin-html.php:137 -#@ woocommerce -msgid "Upload" -msgstr "Upload" - -#: admin/post-types/writepanels/variation-admin-html.php:137 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -#@ woocommerce -msgid "Insert file URL" -msgstr "Indsæt fil-URL" - -#: admin/post-types/writepanels/variation-admin-html.php:142 -#@ woocommerce -msgid "Download Limit:" -msgstr "Downloadgrænse:" - -#: admin/post-types/writepanels/variation-admin-html.php:142 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -#@ woocommerce -msgid "Leave blank for unlimited re-downloads." -msgstr "Lad stå for ubegrænset re-downloads." - -#: admin/post-types/writepanels/variation-admin-html.php:150 -#@ woocommerce -msgid "Download Expiry:" -msgstr "Download udløber:" - -#: admin/post-types/writepanels/variation-admin-html.php:150 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -#@ woocommerce -msgid "Enter the number of days before a download link expires, or leave blank." -msgstr "Indtast antallet af dage til et download-link udløber, ellers lad stå tom." - -#: admin/post-types/writepanels/variation-admin-html.php:164 -#@ woocommerce -msgid "Enabled" -msgstr "Aktiveret" - -#: admin/post-types/writepanels/variation-admin-html.php:166 -#@ woocommerce -msgid "Enable this option if access is given to a downloadable file upon purchase of a product" -msgstr "Aktivér dette hvis der gives adgang til en download fil ved køb af et produkt" - -#: admin/post-types/writepanels/variation-admin-html.php:168 -#@ woocommerce -msgid "Enable this option if a product is not shipped or there is no shipping cost" -msgstr "Aktiver denne indstilling hvis et produkt ikke skal sendes, eller der ingen fragt omkostninger er" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -#@ woocommerce -msgid "Coupon description" -msgstr "Kuponbeskrivelse" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -#@ woocommerce -msgid "Optionally enter a description for this coupon for your reference." -msgstr "Indtast eventuelt en beskrivelse af denne kupon til din reference." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:42 -#@ woocommerce -msgid "Discount type" -msgstr "Tilbudstype" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -#@ woocommerce -msgid "Enter an amount or percentage e.g. 2.99 or 15%" -msgstr "Indtast et beløb eller procent fx 2,99 eller 15%" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -#@ woocommerce -msgid "Enable free shipping" -msgstr "Aktiver fri fragt" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -#, php-format -#@ woocommerce -msgid "Check this box if the coupon grants free shipping. The free shipping method must be enabled with the \"must use coupon\" setting checked." -msgstr "Afkryds dette felt hvis kuponen giver gratis forsendelse. Den gratis forsendelse Metode skal være aktiveret med \"kan bruge kupon\" indstilling markeret." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -#@ woocommerce -msgid "Individual use" -msgstr "Individuel brug" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -#@ woocommerce -msgid "Check this box if the coupon cannot be used in conjunction with other coupons." -msgstr "Afkryds dette felt hvis kuponen ikke kan bruges i forbindelse med andre kuponer." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -#@ woocommerce -msgid "Apply before tax" -msgstr "indsæt før skat" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -#@ woocommerce -msgid "Check this box if the coupon should be applied before calculating cart tax." -msgstr "Afkryds dette felt hvis kuponen bør anvendes før beregningen indkøbskurv skat." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -#@ woocommerce -msgid "Exclude sale items" -msgstr "Udeluk tilbuds varer" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -#@ woocommerce -msgid "Check this box if the coupon should not apply to items on sale. Per-item coupons will only work if the item is not on sale. Per-cart coupons will only work if there are no sale items in the cart." -msgstr "Afkryds dette felt hvis kuponen ikke bør gælde for varer på tilbud. Per-item kuponer vil kun fungere, hvis varen ikke er på tilbud. Per-cart kuponer vil kun fungere, hvis der ikke er nogen tilbuds varer i indkøbskurven." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -#@ woocommerce -msgid "Minimum amount" -msgstr "Minimumsbeløb" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -#@ woocommerce -msgid "No minimum" -msgstr "Ingen minimum" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -#@ woocommerce -msgid "This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "Dette felt giver dig mulighed for at indstille minimum subtotal for at bruge kuponen." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:75 -#: admin/post-types/writepanels/writepanel-order_data.php:400 -#: admin/post-types/writepanels/writepanel-product_data.php:504 -#: admin/post-types/writepanels/writepanel-product_data.php:521 -#: admin/woocommerce-admin-reports.php:1229 -#@ woocommerce -msgid "Search for a product…" -msgstr "Søg efter et produkt…" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:89 -#@ woocommerce -msgid "Products which need to be in the cart to use this coupon or, for \"Product Discounts\", which products are discounted." -msgstr "Produkter, som skal være i kurven for at bruge denne kupon eller for \"Produkt rabat\" hvilke produkter der er på tilbud." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:94 -#@ woocommerce -msgid "Exclude products" -msgstr "Udeluk produkter" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:95 -#@ woocommerce -msgid "Search for a product…" -msgstr "Søg efter et produkt ..." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:109 -#@ woocommerce -msgid "Products which must not be in the cart to use this coupon or, for \"Product Discounts\", which products are not discounted." -msgstr "Produkter, der ikke må være i kurven for at bruge denne kupon eller for \"Produkt rabatter\" hvilke produkter der ikke er på tilbud." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:117 -#@ woocommerce -msgid "Any category" -msgstr "Enhver kategori" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:125 -#@ woocommerce -msgid "A product must be in this category for the coupon to remain valid or, for \"Product Discounts\", products in these categories will be discounted." -msgstr "Et produkt skal være i denne kategori for kuponen fortsat skal være gyldigt, eller for \"Produkt rabatter\" produkter i disse kategorier vil blive diskonteret." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:130 -#@ woocommerce -msgid "Exclude categories" -msgstr "Udeluk kategorier" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:131 -#@ woocommerce -msgid "No categories" -msgstr "Ingen kategorier" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:139 -#@ woocommerce -msgid "Product must not be in this category for the coupon to remain valid or, for \"Product Discounts\", products in these categories will not be discounted." -msgstr "Produktet må ikke være i denne kategori for kuponen fortsat skal være gyldig, eller for \"Produkt rabatter\" produkter i disse kategorier, vil ikke blive diskonteret." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -#@ woocommerce -msgid "Customer emails" -msgstr "Kunde emails" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -#@ woocommerce -msgid "Any customer" -msgstr "Enhver kunde" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -#@ woocommerce -msgid "Comma separate email addresses to restrict this coupon to specific billing and user emails." -msgstr "Komma separat e-mail adresser for at begrænse denne kupon til specifikke fakturering og bruger e-mails." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -#@ woocommerce -msgid "Usage limit" -msgstr "Brugsgrænse" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -#@ woocommerce -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "Ubegrænset forbrug" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -#@ woocommerce -msgid "How many times this coupon can be used before it is void." -msgstr "Hvor mange gange denne kupon kan bruges, før den er ugyldig." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -#@ woocommerce -msgctxt "placeholder" -msgid "Never expire" -msgstr "Udløber aldrig" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -#@ woocommerce -msgid "The date this coupon will expire, YYYY-MM-DD." -msgstr "Den dato denne kupon udløber, YYYY-MM-DD." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:195 -#@ woocommerce -msgid "Coupon code already exists - customers will use the latest coupon with this code." -msgstr "Kupon kode eksisterer allerede - kunderne vil bruge den nyeste kupon med denne kode." - -#: admin/post-types/writepanels/writepanel-order_data.php:62 -#@ woocommerce -msgid "Order number" -msgstr "Ordrenummer" - -#: admin/post-types/writepanels/writepanel-order_data.php:67 -#@ woocommerce -msgid "Customer IP:" -msgstr "Kundens IP:" - -#: admin/post-types/writepanels/writepanel-order_data.php:74 -#@ woocommerce -msgid "General Details" -msgstr "Generelle detaljer" - -#: admin/post-types/writepanels/writepanel-order_data.php:76 -#@ woocommerce -msgid "Order status:" -msgstr "Ordrestatus:" - -#: admin/post-types/writepanels/writepanel-order_data.php:86 -#@ woocommerce -msgid "Order Date:" -msgstr "Ordredato:" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#@ woocommerce -msgid "h" -msgstr "h" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#: admin/settings/settings-init.php:577 -#@ woocommerce -msgid "m" -msgstr "m" - -#: admin/post-types/writepanels/writepanel-order_data.php:91 -#@ woocommerce -msgid "Customer:" -msgstr "Kunde:" - -#: admin/post-types/writepanels/writepanel-order_data.php:131 -#@ woocommerce -msgid "Customer Note:" -msgstr "Kundenote:" - -#: admin/post-types/writepanels/writepanel-order_data.php:132 -#@ woocommerce -msgid "Customer's notes about the order" -msgstr "Kundens noter omkring ordren" - -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#@ woocommerce -msgid "Billing Details" -msgstr "Faktureringsdetaljer" - -#: admin/post-types/writepanels/writepanel-order_data.php:152 -#: admin/post-types/writepanels/writepanel-order_data.php:242 -#: admin/woocommerce-admin-users.php:155 admin/woocommerce-admin-users.php:204 -#@ woocommerce -msgid "Company" -msgstr "Firma" - -#: admin/post-types/writepanels/writepanel-order_data.php:156 -#: admin/post-types/writepanels/writepanel-order_data.php:246 -#: admin/woocommerce-admin-users.php:159 admin/woocommerce-admin-users.php:208 -#@ woocommerce -msgid "Address 1" -msgstr "Adresse 1" - -#: admin/post-types/writepanels/writepanel-order_data.php:160 -#: admin/post-types/writepanels/writepanel-order_data.php:250 -#: admin/woocommerce-admin-users.php:163 admin/woocommerce-admin-users.php:212 -#@ woocommerce -msgid "Address 2" -msgstr "Adresse 2" - -#: admin/post-types/writepanels/writepanel-order_data.php:164 -#: admin/post-types/writepanels/writepanel-order_data.php:254 -#: admin/settings/settings-tax-rates.php:42 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-users.php:167 admin/woocommerce-admin-users.php:216 -#@ woocommerce -msgid "City" -msgstr "By" - -#: admin/post-types/writepanels/writepanel-order_data.php:178 -#: admin/post-types/writepanels/writepanel-order_data.php:268 -#: admin/woocommerce-admin-users.php:175 admin/woocommerce-admin-users.php:224 -#@ woocommerce -msgid "State/County" -msgstr "Land" - -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#@ woocommerce -msgid "No billing address set." -msgstr "Ingen faktureringsadresse er beskrevet." - -#: admin/post-types/writepanels/writepanel-order_data.php:208 -#@ woocommerce -msgid "Load billing address" -msgstr "Load faktureringsadresse" - -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#@ woocommerce -msgid "Shipping Details" -msgstr "Leveringsdetaljer" - -#: admin/post-types/writepanels/writepanel-order_data.php:279 -#@ woocommerce -msgid "No shipping address set." -msgstr "Ingen leveringsadresse er beskrevet." - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -#@ woocommerce -msgid "Load shipping address" -msgstr "Load leveringsadresse" - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -#@ woocommerce -msgid "Copy from billing" -msgstr "Kopier fra fakturering" - -#: admin/post-types/writepanels/writepanel-order_data.php:339 -#@ woocommerce -msgid "Item" -msgstr "Element" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#: admin/post-types/writepanels/writepanel-product_data.php:191 -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Tax Class" -msgstr "Skatte gruppe" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#@ woocommerce -msgid "Tax class for the line item" -msgstr "Tax class for the line item" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -#@ woocommerce -msgid "Line subtotals are before pre-tax discounts, totals are after." -msgstr "Line subtotals are before pre-tax discounts, totals are after." - -#: admin/post-types/writepanels/writepanel-order_data.php:388 -#@ woocommerce -msgid "Delete Lines" -msgstr "Slet Linjer" - -#: admin/post-types/writepanels/writepanel-order_data.php:390 -#@ woocommerce -msgid "Stock Actions" -msgstr "Lager handlinger" - -#: admin/post-types/writepanels/writepanel-order_data.php:391 -#@ woocommerce -msgid "Reduce Line Stock" -msgstr "Reducer Linje Lager" - -#: admin/post-types/writepanels/writepanel-order_data.php:392 -#@ woocommerce -msgid "Increase Line Stock" -msgstr "Forøg Linje Lager" - -#: admin/post-types/writepanels/writepanel-order_data.php:396 -#: admin/post-types/writepanels/writepanel-order_data.php:456 -#@ woocommerce -msgid "Apply" -msgstr "Anvend" - -#: admin/post-types/writepanels/writepanel-order_data.php:402 -#@ woocommerce -msgid "Add item(s)" -msgstr "Tilføj element(er)" - -#: admin/post-types/writepanels/writepanel-order_data.php:403 -#@ woocommerce -msgid "Add fee" -msgstr "Tilføj gebyr" - -#: admin/post-types/writepanels/writepanel-order_data.php:434 -#@ woocommerce -msgid "Resend order emails" -msgstr "Gensend ordre e-mails" - -#: admin/post-types/writepanels/writepanel-order_data.php:465 -#@ woocommerce -msgid "Move to Trash" -msgstr "Flyt til papirkurv" - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -#@ woocommerce -msgid "Save Order" -msgstr "Gem ordre" - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -#@ woocommerce -msgid "Save/update the order" -msgstr "Gem/opdater ordren" - -#: admin/post-types/writepanels/writepanel-order_data.php:495 -#@ woocommerce -msgid "Discounts" -msgstr "Tilbud" - -#: admin/post-types/writepanels/writepanel-order_data.php:499 -#@ woocommerce -msgid "Discounts before tax - calculated by comparing subtotals to totals." -msgstr "Rabatter før skat - beregnet ved at sammenligne subtotaler med den samlede total." - -#: admin/post-types/writepanels/writepanel-order_data.php:507 -#@ woocommerce -msgid "Discounts after tax - user defined." -msgstr "Rabatter efter skat - Brugerdefineret." - -#: admin/post-types/writepanels/writepanel-order_data.php:540 -#@ woocommerce -msgid "Label:" -msgstr "Label:" - -#: admin/post-types/writepanels/writepanel-order_data.php:541 -#@ woocommerce -msgid "The shipping title the customer sees" -msgstr "Fragt titel kunden ser" - -#: admin/post-types/writepanels/writepanel-order_data.php:548 -#@ woocommerce -msgid "Cost:" -msgstr "Pris:" - -#: admin/post-types/writepanels/writepanel-order_data.php:556 -#@ woocommerce -msgid "Method:" -msgstr "Metode:" - -#: admin/post-types/writepanels/writepanel-order_data.php:578 -#: admin/post-types/writepanels/writepanel-order_data.php:580 -#: admin/post-types/writepanels/writepanel-order_data.php:679 -#: admin/post-types/writepanels/writepanel-order_data.php:681 -#@ woocommerce -msgid "Other" -msgstr "Andet" - -#: admin/post-types/writepanels/writepanel-order_data.php:594 -#@ woocommerce -msgid "Tax Rows" -msgstr "Skat Rækker" - -#: admin/post-types/writepanels/writepanel-order_data.php:619 -#@ woocommerce -msgid "+ Add tax row" -msgstr "+ Tilføj skat række" - -#: admin/post-types/writepanels/writepanel-order_data.php:619 -#@ woocommerce -msgid "These rows contain taxes for this order. This allows you to display multiple or compound taxes rather than a single total." -msgstr "Disse rækker indeholder skat for denne ordre. Dette giver dig mulighed for at vise flere eller sammensatte afgifter, end en enkelt total." - -#: admin/post-types/writepanels/writepanel-order_data.php:623 -#@ woocommerce -msgid "Tax Totals" -msgstr "Skat Total" - -#: admin/post-types/writepanels/writepanel-order_data.php:627 -#@ woocommerce -msgid "Total tax for line items + fees." -msgstr "Samlet skat for linjeposter + gebyrer." - -#: admin/post-types/writepanels/writepanel-order_data.php:649 -#: admin/post-types/writepanels/writepanels-init.php:70 -#@ woocommerce -msgid "Order Totals" -msgstr "Ordre total" - -#: admin/post-types/writepanels/writepanel-order_data.php:661 -#@ woocommerce -msgid "Payment Method:" -msgstr "Betalingsmetode" - -#: admin/post-types/writepanels/writepanel-order_data.php:692 -#@ woocommerce -msgid "Calc taxes" -msgstr "Beregn skatter" - -#: admin/post-types/writepanels/writepanel-order_data.php:694 -#@ woocommerce -msgid "Calc totals" -msgstr "Beregn totaler" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:57 -#@ woocommerce -msgid "Choose a downloadable product…" -msgstr "Vælg en download produkt…" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:87 -#@ woocommerce -msgid "Grant Access" -msgstr "Giv adgang" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:125 -#@ woocommerce -msgid "Could not grant access - the user may already have permission for this file or billing email is not set. Ensure the billing email is set, and the order has been saved." -msgstr "Kunne ikke adgang - brugeren har måske allerede tilladelse til denne fil eller fakturerings email er ikke indstillet. Sørg for fakturerings email er indstillet, og ordren er blevet gemt." - -#: admin/post-types/writepanels/writepanel-order_downloads.php:148 -#@ woocommerce -msgid "Are you sure you want to revoke access to this download?" -msgstr "Er du sikker på du vil tilbagekalde adgang til denne download?" - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -#, php-format -#@ woocommerce -msgid "added %s ago" -msgstr "tilføjede %s siden" - -#: admin/post-types/writepanels/writepanel-order_notes.php:50 -#@ woocommerce -msgid "There are no notes for this order yet." -msgstr "Der er ingen noter til denne ordre endnu." - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -#@ woocommerce -msgid "Add note" -msgstr "Tilføj note" - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -#@ woocommerce -msgid "Add a note for your reference, or add a customer note (the user will be notified)." -msgstr "Tilføj en note til din reference, eller tilføj en kunde note (brugeren vil blive underrettet)." - -#: admin/post-types/writepanels/writepanel-order_notes.php:63 -#@ woocommerce -msgid "Private note" -msgstr "Privat note" - -#: admin/post-types/writepanels/writepanel-order_notes.php:65 -#: admin/post-types/writepanels/writepanel-product_data.php:482 -#@ woocommerce -msgid "Add" -msgstr "Tilføj" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -#@ woocommerce -msgid "Variations for variable products are defined here." -msgstr "Variationer for variable produkter er defineret her." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:65 -#@ woocommerce -msgid "Before adding variations, add and save some attributes on the Attributes tab." -msgstr "Før du tilføjer variationer, tilføj og gem nogle egenskaber på fanen Egenskaber." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:67 -#@ woocommerce -msgid "Learn more" -msgstr "Lær mere" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -#@ woocommerce -msgid "Close all" -msgstr "Luk alle" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -#@ woocommerce -msgid "Expand all" -msgstr "Udvid alle" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:75 -#@ woocommerce -msgid "Bulk edit:" -msgstr "Masseredigering:" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:77 -#@ woocommerce -msgid "Toggle "Enabled"" -msgstr "Toggle "Enabled"" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:78 -#@ woocommerce -msgid "Toggle "Downloadable"" -msgstr "Toggle "Downloadable"" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:79 -#@ woocommerce -msgid "Toggle "Virtual"" -msgstr "Toggle "Virtual"" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:80 -#@ woocommerce -msgid "Delete all variations" -msgstr "Slet alle variationer" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:81 -#@ woocommerce -msgid "Prices" -msgstr "Priser" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:82 -#@ woocommerce -msgid "Sale prices" -msgstr "Tilbudspriser" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:88 -#@ woocommerce -msgid "File Path" -msgstr "File Path" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:89 -#@ woocommerce -msgid "Download limit" -msgstr "Download grænse" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:90 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -#@ woocommerce -msgid "Download Expiry" -msgstr "Download udløber" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:93 -#@ woocommerce -msgid "Go" -msgstr "Go" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:195 -#@ woocommerce -msgid "Link all variations" -msgstr "Link alle variationer" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:197 -#@ woocommerce -msgid "Default selections:" -msgstr "Standard valg:" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:210 -#@ woocommerce -msgid "No default" -msgstr "Ingen standard" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:293 -#@ woocommerce -msgid "Are you sure you want to link all variations? This will create a new variation for each and every possible combination of variation attributes (max 50 per run)." -msgstr "Er du sikker på, du vil linke alle variationer? Dette vil skabe en ny variant for hver eneste mulige kombination af variantegenskaberne (max 50 pr gang)." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:310 -#@ woocommerce -msgid "variation added" -msgstr "variation tilføjet" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:312 -#@ woocommerce -msgid "variations added" -msgstr "variationer tilføjet" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:314 -#@ woocommerce -msgid "No variations added" -msgstr "Ingen variationer tilføjet" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:337 -#@ woocommerce -msgid "Are you sure you want to remove this variation?" -msgstr "Er du sikker på du vil fjerne denne variant?" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:393 -#@ woocommerce -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "Er du sikker på, at du vil slette alle variationer? Dette kan ikke fortrydes." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:396 -#@ woocommerce -msgid "Last warning, are you sure?" -msgstr "Sidste advarsel, er du sikker?" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:433 -#@ woocommerce -msgid "Enter a value" -msgstr "Indtast en værdi" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:511 -#: admin/woocommerce-admin-taxonomies.php:62 -#: admin/woocommerce-admin-taxonomies.php:154 -#@ woocommerce -msgid "Choose an image" -msgstr "Vælg et billede" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:513 -#@ woocommerce -msgid "Set variation image" -msgstr "Indstil variation billede" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:557 -#@ woocommerce -msgid "Variable product" -msgstr "Variabelt produkt" - -#: admin/post-types/writepanels/writepanel-product_data.php:43 -#@ woocommerce -msgid "Product Type" -msgstr "Produkttype" - -#: admin/post-types/writepanels/writepanel-product_data.php:53 -#@ woocommerce -msgid "Virtual products are intangible and aren't shipped." -msgstr "Virtuelle produkter er uhåndgribelige og sendes ikke." - -#: admin/post-types/writepanels/writepanel-product_data.php:59 -#@ woocommerce -msgid "Downloadable products give access to a file upon purchase." -msgstr "Download produkter giver adgang til en fil ved køb." - -#: admin/post-types/writepanels/writepanel-product_data.php:77 -#: admin/woocommerce-admin-content.php:44 -#: admin/woocommerce-admin-settings.php:180 -#@ woocommerce -msgid "General" -msgstr "Generalt" - -#: admin/post-types/writepanels/writepanel-product_data.php:79 -#: admin/woocommerce-admin-content.php:47 -#: admin/woocommerce-admin-settings.php:183 -#@ woocommerce -msgid "Inventory" -msgstr "Lagerliste" - -#: admin/post-types/writepanels/writepanel-product_data.php:83 -#@ woocommerce -msgid "Linked Products" -msgstr "Linkede produkter" - -#: admin/post-types/writepanels/writepanel-product_data.php:85 -#: admin/woocommerce-admin-attributes.php:298 -#: admin/woocommerce-admin-init.php:66 -#@ woocommerce -msgid "Attributes" -msgstr "Egenskaber" - -#: admin/post-types/writepanels/writepanel-product_data.php:87 -#@ woocommerce -msgid "Advanced" -msgstr "Avanceret" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#@ woocommerce -msgid "Stock Keeping Unit" -msgstr "Stock Keeping Unit" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#@ woocommerce -msgid "SKU refers to a Stock-keeping unit, a unique identifier for each distinct product and service that can be purchased." -msgstr "SKU refererer til en Stock-Keeping Unit, en unik identifikation for hvert enkelt produkt og service, der kan købes." - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -#@ woocommerce -msgid "Product URL" -msgstr "Produkt URL" - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -#@ woocommerce -msgid "Enter the external URL to the product." -msgstr "Indtast den eksterne webadresse til produktet." - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -#@ woocommerce -msgid "Button text" -msgstr "Tekst på knap" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -#@ woocommerce -msgctxt "placeholder" -msgid "Buy product" -msgstr "Køb produkt" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -#@ woocommerce -msgid "This text will be shown on the button linking to the external product." -msgstr "Denne tekst vil blive vist på knappen der linker til eksterne produkt." - -#: admin/post-types/writepanels/writepanel-product_data.php:119 -#@ woocommerce -msgid "Regular Price" -msgstr "Normal pris" - -#: admin/post-types/writepanels/writepanel-product_data.php:125 -#@ woocommerce -msgid "Sale Price" -msgstr "Udsalgspris" - -#: admin/post-types/writepanels/writepanel-product_data.php:135 -#@ woocommerce -msgid "Sale Price Dates" -msgstr "Udsalgspris Datoer" - -#: admin/post-types/writepanels/writepanel-product_data.php:152 -#@ woocommerce -msgid "File paths (one per line)" -msgstr "Filstier (en pr linje)" - -#: admin/post-types/writepanels/writepanel-product_data.php:158 -#@ woocommerce -msgid "Download Limit" -msgstr "Download begrænsning" - -#: admin/post-types/writepanels/writepanel-product_data.php:180 -#@ woocommerce -msgid "Shipping only" -msgstr "Kun Forsendelse" - -#: admin/post-types/writepanels/writepanel-product_data.php:212 -#@ woocommerce -msgid "Enable stock management at product level" -msgstr "Aktiver lagerstyring på produktniveau" - -#: admin/post-types/writepanels/writepanel-product_data.php:219 -#@ woocommerce -msgid "Stock quantity. If this is a variable product this value will be used to control stock for all variations, unless you define stock at variation level." -msgstr "Lagerbeholdning. Hvis dette er et variabelt produkt vil denne værdi vil blive brugt til at kontrollere antallet for alle varianter, med mindre du definere lager ved variation niveau." - -#: admin/post-types/writepanels/writepanel-product_data.php:230 -#@ woocommerce -msgid "Stock status" -msgstr "Lager status" - -#: admin/post-types/writepanels/writepanel-product_data.php:233 -#@ woocommerce -msgid "Controls whether or not the product is listed as \"in stock\" or \"out of stock\" on the frontend." -msgstr "Tjekker, hvorvidt produktet er anført som \"på lager\" eller \"ikke på lager\" ude på shoppen." - -#: admin/post-types/writepanels/writepanel-product_data.php:240 -#@ woocommerce -msgid "Allow Backorders?" -msgstr "Tillad Restordrer?" - -#: admin/post-types/writepanels/writepanel-product_data.php:241 -#@ woocommerce -msgid "Do not allow" -msgstr "Tillad ikke" - -#: admin/post-types/writepanels/writepanel-product_data.php:242 -#@ woocommerce -msgid "Allow, but notify customer" -msgstr "Tillad, men giv kunden besked" - -#: admin/post-types/writepanels/writepanel-product_data.php:243 -#@ woocommerce -msgid "Allow" -msgstr "Tillad" - -#: admin/post-types/writepanels/writepanel-product_data.php:244 -#@ woocommerce -msgid "If managing stock, this controls whether or not backorders are allowed for this product and variations. If enabled, stock quantity can go below 0." -msgstr "Hvis du bruger lagerstyring, kontrollere denne om restordrer eller ej er tilladt for dette produkt og variationer. Hvis aktiveret, kan lager mængde gå under 0." - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -#@ woocommerce -msgid "Sold Individually" -msgstr "Solgt Individuelt" - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -#@ woocommerce -msgid "Enable this to only allow one of this item to be bought in a single order" -msgstr "Aktivér dette for kun at tillade én af dette produkt kan købes i en enkelt ordre" - -#: admin/post-types/writepanels/writepanel-product_data.php:273 -#@ woocommerce -msgid "Weight in decimal form" -msgstr "Vægt i decimal form," - -#: admin/post-types/writepanels/writepanel-product_data.php:290 -#@ woocommerce -msgid "LxWxH in decimal form" -msgstr "LxBxH i decimal form," - -#: admin/post-types/writepanels/writepanel-product_data.php:311 -#@ woocommerce -msgid "No shipping class" -msgstr "Ingen forsendelses klasse" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -#@ woocommerce -msgid "Shipping class" -msgstr "Forsendelses klasse" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -#@ woocommerce -msgid "Shipping classes are used by certain shipping methods to group similar products." -msgstr "Forsendelse klasser anvendes af visse forsendelses metoder til at gruppere lignende produkter." - -#: admin/post-types/writepanels/writepanel-product_data.php:380 -#: admin/post-types/writepanels/writepanel-product_data.php:457 -#: admin/woocommerce-admin-init.php:453 -#@ woocommerce -msgid "Value(s)" -msgstr "Værdi(er)" - -#: admin/post-types/writepanels/writepanel-product_data.php:382 -#@ woocommerce -msgid "Select terms" -msgstr "Vælg vilkår" - -#: admin/post-types/writepanels/writepanel-product_data.php:394 -#@ woocommerce -msgid "Select all" -msgstr "Vælg alle" - -#: admin/post-types/writepanels/writepanel-product_data.php:394 -#@ woocommerce -msgid "Select none" -msgstr "Vælg ingen" - -#: admin/post-types/writepanels/writepanel-product_data.php:396 -#@ woocommerce -msgid "Add new" -msgstr "Tilføj ny" - -#: admin/post-types/writepanels/writepanel-product_data.php:409 -#@ woocommerce -msgid "Pipe separate terms" -msgstr "Pipe separate vilkår" - -#: admin/post-types/writepanels/writepanel-product_data.php:416 -#: admin/post-types/writepanels/writepanel-product_data.php:463 -#: admin/woocommerce-admin-init.php:455 -#@ woocommerce -msgid "Visible on the product page" -msgstr "Synlig på produktsiden" - -#: admin/post-types/writepanels/writepanel-product_data.php:422 -#: admin/post-types/writepanels/writepanel-product_data.php:469 -#: admin/woocommerce-admin-init.php:456 -#@ woocommerce -msgid "Used for variations" -msgstr "Bruges til variationer" - -#: admin/post-types/writepanels/writepanel-product_data.php:458 -#: admin/woocommerce-admin-init.php:454 -#@ woocommerce -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "Indtast en tekst eller nogle egenskaber, røret (|) adskiller værdier." - -#: admin/post-types/writepanels/writepanel-product_data.php:484 -#@ woocommerce -msgid "Custom product attribute" -msgstr "Brugerdefineret produkt egenskab" - -#: admin/post-types/writepanels/writepanel-product_data.php:496 -#@ woocommerce -msgid "Save attributes" -msgstr "Gem egenskaber" - -#: admin/post-types/writepanels/writepanel-product_data.php:503 -#@ woocommerce -msgid "Up-Sells" -msgstr "Up-Sells" - -#: admin/post-types/writepanels/writepanel-product_data.php:518 -#@ woocommerce -msgid "Up-sells are products which you recommend instead of the currently viewed product, for example, products that are more profitable or better quality or more expensive." -msgstr "Op-sælger er produkter, som du anbefaler i stedet for det aktuelt viste produkt, for eksempel, produkter, der er mere rentable eller bedre kvalitet eller dyrere." - -#: admin/post-types/writepanels/writepanel-product_data.php:520 -#@ woocommerce -msgid "Cross-Sells" -msgstr "Cross-Sells" - -#: admin/post-types/writepanels/writepanel-product_data.php:535 -#@ woocommerce -msgid "Cross-sells are products which you promote in the cart, based on the current product." -msgstr "Cross-sælger er produkter, som du fremhæver i kurven, baseret på det aktuelle produkt." - -#: admin/post-types/writepanels/writepanel-product_data.php:545 -#@ woocommerce -msgid "Choose a grouped product…" -msgstr "Vælg et grupperet produkt…" - -#: admin/post-types/writepanels/writepanel-product_data.php:571 -#@ woocommerce -msgid "Grouping" -msgstr "Gruppering" - -#: admin/post-types/writepanels/writepanel-product_data.php:571 -#@ woocommerce -msgid "Set this option to make this product part of a grouped product." -msgstr "Sæt denne indstilling for at lave dette produkt til en del af et grupperet produkt." - -#: admin/post-types/writepanels/writepanel-product_data.php:591 -#@ woocommerce -msgid "Purchase Note" -msgstr "Købs Note" - -#: admin/post-types/writepanels/writepanel-product_data.php:591 -#@ woocommerce -msgid "Enter an optional note to send the customer after purchase." -msgstr "Indtast en valgfri note til at sende kunden efter købet." - -#: admin/post-types/writepanels/writepanel-product_data.php:598 -#@ woocommerce -msgid "Menu order" -msgstr "Menu ordre" - -#: admin/post-types/writepanels/writepanel-product_data.php:598 -#@ woocommerce -msgid "Custom ordering position." -msgstr "Custom ordering position." - -#: admin/post-types/writepanels/writepanel-product_data.php:606 -#@ woocommerce -msgid "Enable reviews" -msgstr "Aktiver anmeldelser" - -#: admin/post-types/writepanels/writepanel-product_data.php:695 -#@ woocommerce -msgid "Product SKU must be unique." -msgstr "Produkt varenr. skal være unikt." - -#: admin/post-types/writepanels/writepanel-product_data.php:1028 -#@ woocommerce -msgid "Catalog/search" -msgstr "Katalog/søg" - -#: admin/post-types/writepanels/writepanel-product_data.php:1035 -#@ woocommerce -msgid "Catalog visibility:" -msgstr "Catalog synlighed:" - -#: admin/post-types/writepanels/writepanel-product_data.php:1051 -#@ woocommerce -msgid "Define the loops this product should be visible in. The product will still be accessible directly." -msgstr "Definer de loops dette produkt skal være synlige i. Produktet vil stadig være tilgængelig direkte." - -#: admin/post-types/writepanels/writepanel-product_data.php:1057 -#@ woocommerce -msgid "Enable this option to feature this product." -msgstr "Aktiver denne indstilling for at dette produkt bliver \\\"Udvalgt\\\"" - -#: admin/post-types/writepanels/writepanel-product_data.php:1059 -#@ woocommerce -msgid "Featured Product" -msgstr "Udvalgt produkt" - -#: admin/post-types/writepanels/writepanel-product_data.php:1063 -#@ woocommerce -msgid "OK" -msgstr "OK" - -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -#@ woocommerce -msgid "Delete image" -msgstr "Slet billede" - -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -#: admin/woocommerce-admin-attributes.php:322 -#@ woocommerce -msgid "Delete" -msgstr "Slet" - -#: admin/post-types/writepanels/writepanel-product_images.php:53 -#@ woocommerce -msgid "Add product gallery images" -msgstr "Tilføj produkt galleri billeder" - -#: admin/post-types/writepanels/writepanel-product_images.php:79 -#@ woocommerce -msgid "Add Images to Product Gallery" -msgstr "Tilføj billeder til Produkt Galleri" - -#: admin/post-types/writepanels/writepanel-product_images.php:81 -#@ woocommerce -msgid "Add to gallery" -msgstr "Tilføj til galleri" - -#: admin/post-types/writepanels/writepanels-init.php:47 -#@ woocommerce -msgid "Product Gallery" -msgstr "Produkt Galleri" - -#: admin/post-types/writepanels/writepanels-init.php:55 -#@ woocommerce -msgid "Product Short Description" -msgstr "Produkt Kort beskrivelse" - -#: admin/post-types/writepanels/writepanels-init.php:68 -#@ woocommerce -msgid "Order Data" -msgstr "Ordredata" - -#: admin/post-types/writepanels/writepanels-init.php:69 -#@ woocommerce -msgid "Order Items" -msgstr "Bestil Produkter" - -#: admin/post-types/writepanels/writepanels-init.php:69 -#@ woocommerce -msgid "Note: if you edit quantities or remove items from the order you will need to manually update stock levels." -msgstr "Bemærk: Hvis du redigerer mængder eller fjerner elementer fra ordren, bliver du nødt til manuelt at opdatere lagerbeholdningen." - -#: admin/post-types/writepanels/writepanels-init.php:72 -#@ woocommerce -msgid "Downloadable Product Permissions" -msgstr "Download - Produkt Tilladelser" - -#: admin/post-types/writepanels/writepanels-init.php:72 -#@ woocommerce -msgid "Note: Permissions for order items will automatically be granted when the order status changes to processing/completed." -msgstr "Bemærk: Tilladelser for ordrevarer vil automatisk blive ydet, når ordren status ændres til igang/afsluttet." - -#: admin/post-types/writepanels/writepanels-init.php:73 -#@ woocommerce -msgid "Order Actions" -msgstr "Ordre Handlinger" - -#: admin/post-types/writepanels/writepanels-init.php:81 -#@ woocommerce -msgid "Coupon Data" -msgstr "Kupon data" - -#: admin/post-types/writepanels/writepanels-init.php:101 -#@ woocommerce -msgid "Product name" -msgstr "Produktnavn" - -#: admin/post-types/writepanels/writepanels-init.php:185 -#@ woocommerce -msgid "Allow reviews." -msgstr "Tillad vurderinger." - -#: admin/post-types/writepanels/writepanels-init.php:186 -#, php-format -#@ default -msgid "Allow trackbacks and pingbacks on this page." -msgstr "Allow trackbacks and pingbacks on this page." - -#: admin/post-types/writepanels/writepanels-init.php:186 -#@ default -msgid "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" -msgstr "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" - -#: admin/settings/settings-frontend-styles.php:23 -#@ woocommerce -msgid "Styles" -msgstr "Styles" - -#: admin/settings/settings-frontend-styles.php:43 -#@ woocommerce -msgid "Primary" -msgstr "Primær" - -#: admin/settings/settings-frontend-styles.php:43 -#@ woocommerce -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "Call to action knapper /price slider/layered nav UI" - -#: admin/settings/settings-frontend-styles.php:44 -#@ woocommerce -msgid "Secondary" -msgstr "Sekundær" - -#: admin/settings/settings-frontend-styles.php:44 -#@ woocommerce -msgid "Buttons and tabs" -msgstr "Knapper og faner" - -#: admin/settings/settings-frontend-styles.php:45 -#@ woocommerce -msgid "Highlight" -msgstr "Fremhæv" - -#: admin/settings/settings-frontend-styles.php:45 -#@ woocommerce -msgid "Price labels and Sale Flashes" -msgstr "Prismærker og salgs mærker" - -#: admin/settings/settings-frontend-styles.php:46 -#@ woocommerce -msgid "Content" -msgstr "Indhold" - -#: admin/settings/settings-frontend-styles.php:46 -#@ woocommerce -msgid "Your themes page background - used for tab active states" -msgstr "Dit temas sidebaggrund - bruges til fanen aktiv stater" - -#: admin/settings/settings-frontend-styles.php:47 -#@ woocommerce -msgid "Subtext" -msgstr "Undertekst" - -#: admin/settings/settings-frontend-styles.php:47 -#@ woocommerce -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "Bruges til visse tekst og sidebemærkninger - brødkrummer, lille tekst osv." - -#: admin/settings/settings-frontend-styles.php:51 -#@ woocommerce -msgid "To edit colours woocommerce/assets/css/woocommerce-base.less and woocommerce.css need to be writable. See the Codex for more information." -msgstr "To edit colours woocommerce/assets/css/woocommerce-base.less and woocommerce.css need to be writable. See the Codex for more information." - -#: admin/settings/settings-init.php:18 -#@ woocommerce -msgid "Localisation" -msgstr "Lokalisering" - -#: admin/settings/settings-init.php:19 -#, php-format -#@ woocommerce -msgid "Use informal localisation for %s" -msgstr "Brug uformel lokalisering for %s" - -#: admin/settings/settings-init.php:33 -#@ woocommerce -msgid "General Options" -msgstr "Generelle indstillinger" - -#: admin/settings/settings-init.php:36 -#@ woocommerce -msgid "Base Location" -msgstr "Placering" - -#: admin/settings/settings-init.php:37 -#@ woocommerce -msgid "This is the base location for your business. Tax rates will be based on this country." -msgstr "Dette er placering af din virksomhed. Skattesatser vil være baseret på dette land." - -#: admin/settings/settings-init.php:46 -#@ woocommerce -msgid "Currency" -msgstr "Valuta" - -#: admin/settings/settings-init.php:47 -#@ woocommerce -msgid "This controls what currency prices are listed at in the catalog and which currency gateways will take payments in." -msgstr "Dette styrer hvilke valuta priserne er anført i, på shoppen, og hvilken valuta gateways vil tage betalinger i." - -#: admin/settings/settings-init.php:58 -#@ woocommerce -msgid "Allowed Countries" -msgstr "Tilladte Lande" - -#: admin/settings/settings-init.php:59 -#@ woocommerce -msgid "These are countries that you are willing to ship to." -msgstr "Det er lande, som du er villig til at sende til." - -#: admin/settings/settings-init.php:67 -#@ woocommerce -msgid "All Countries" -msgstr "Alle lande" - -#: admin/settings/settings-init.php:84 -#@ woocommerce -msgid "Store Notice" -msgstr "Store Notice" - -#: admin/settings/settings-init.php:85 -#@ woocommerce -msgid "Enable site-wide store notice text" -msgstr "Aktiver general butik varsel tekst" - -#: admin/settings/settings-init.php:92 -#@ woocommerce -msgid "Store Notice Text" -msgstr "Shop Notice Text" - -#: admin/settings/settings-init.php:102 -#@ woocommerce -msgid "Cart, Checkout and Accounts" -msgstr "Kurv, checkud og kontoer" - -#: admin/settings/settings-init.php:106 -#@ woocommerce -msgid "Enable the use of coupons" -msgstr "Aktivere brugen af ​​kuponer" - -#: admin/settings/settings-init.php:110 -#@ woocommerce -msgid "Coupons can be applied from the cart and checkout pages." -msgstr "Kuponer kan anvendes fra kurv og checkout sider." - -#: admin/settings/settings-init.php:115 -#@ woocommerce -msgid "Enable guest checkout (no account required)" -msgstr "Aktiver gæste checkud (ingen konto påkrævet)" - -#: admin/settings/settings-init.php:123 -#@ woocommerce -msgid "Enable customer note field on checkout" -msgstr "Aktiver kunde notat felt på checkout" - -#: admin/settings/settings-init.php:131 -#@ woocommerce -msgid "Force secure checkout" -msgstr "Tving sikker checkud" - -#: admin/settings/settings-init.php:137 -#@ woocommerce -msgid "Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -msgstr "Tving SSL (HTTPS) på checkud sider (et SSL-certifikat er påkrævet)." - -#: admin/settings/settings-init.php:141 -#@ woocommerce -msgid "Un-force HTTPS when leaving the checkout" -msgstr "Un-force HTTPS, når de forlader kassen" - -#: admin/settings/settings-init.php:150 -#@ woocommerce -msgid "Registration" -msgstr "Registrering" - -#: admin/settings/settings-init.php:151 -#@ woocommerce -msgid "Allow registration on the checkout page" -msgstr "Tillad registrering på checkud side" - -#: admin/settings/settings-init.php:159 -#@ woocommerce -msgid "Allow registration on the \"My Account\" page" -msgstr "Tillad registrering på \"Min Konto\" siden" - -#: admin/settings/settings-init.php:167 -#@ woocommerce -msgid "Register using the email address for the username" -msgstr "Registrer vha. e-mail-adresse til brugernavnet" - -#: admin/settings/settings-init.php:175 -#@ woocommerce -msgid "Customer Accounts" -msgstr "Kunde Konti" - -#: admin/settings/settings-init.php:176 -#@ woocommerce -msgid "Prevent customers from accessing WordPress admin" -msgstr "Forhindre kunderne i at få adgang WordPress admin" - -#: admin/settings/settings-init.php:184 -#@ woocommerce -msgid "Clear cart when logging out" -msgstr "Ryd kurv når du logger ud" - -#: admin/settings/settings-init.php:192 -#@ woocommerce -msgid "Allow customers to repurchase orders from their account page" -msgstr "Tillad kunderne at genkøbe ordrer fra deres konto side" - -#: admin/settings/settings-init.php:201 -#@ woocommerce -msgid "Styles and Scripts" -msgstr "Styles and Scripts" - -#: admin/settings/settings-init.php:204 -#@ woocommerce -msgid "Styling" -msgstr "Styling" - -#: admin/settings/settings-init.php:205 -#@ woocommerce -msgid "Enable WooCommerce CSS" -msgstr "Aktiver WooCommerce CSS" - -#: admin/settings/settings-init.php:216 -#@ woocommerce -msgid "Scripts" -msgstr "Scripts" - -#: admin/settings/settings-init.php:217 -#@ woocommerce -msgid "Enable Lightbox" -msgstr "Aktiver Lightbox" - -#: admin/settings/settings-init.php:220 -#@ woocommerce -msgid "Include WooCommerce's lightbox. Product gallery images and the add review form will open in a lightbox." -msgstr "Medtag WooCommerce s lightbox. Produkt galleri billeder og tilføj anmeldelse formular vil åbne i et lightbox." - -#: admin/settings/settings-init.php:226 -#@ woocommerce -msgid "Enable enhanced country select boxes" -msgstr "Aktiver forbedret vælg land bokse" - -#: admin/settings/settings-init.php:231 -#@ woocommerce -msgid "This will enable a script allowing the country fields to be searchable." -msgstr "Dette vil give et script tilladelse til \\\"vælg land\\\" feltet at være søgbare." - -#: admin/settings/settings-init.php:236 -#@ woocommerce -msgid "Downloadable Products" -msgstr "Download produkter" - -#: admin/settings/settings-init.php:239 -#@ woocommerce -msgid "File Download Method" -msgstr "Metoden til download" - -#: admin/settings/settings-init.php:240 -#@ woocommerce -msgid "Forcing downloads will keep URLs hidden, but some servers may serve large files unreliably. If supported, X-Accel-Redirect/ X-Sendfile can be used to serve downloads instead (server requires mod_xsendfile)." -msgstr "Forcing downloads will keep URLs hidden, but some servers may serve large files unreliably. If supported, X-Accel-Redirect/ X-Sendfile can be used to serve downloads instead (server requires mod_xsendfile)." - -#: admin/settings/settings-init.php:248 -#@ woocommerce -msgid "Force Downloads" -msgstr "Tving Downloads" - -#: admin/settings/settings-init.php:249 -#@ woocommerce -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "X-Accel-Redirect/X-Sendfile" - -#: admin/settings/settings-init.php:250 -#@ woocommerce -msgid "Redirect only" -msgstr "Omdiriger kun" - -#: admin/settings/settings-init.php:255 -#@ woocommerce -msgid "Access Restriction" -msgstr "Adgangsbegrænsning" - -#: admin/settings/settings-init.php:256 -#@ woocommerce -msgid "Downloads require login" -msgstr "Downloads kræver login" - -#: admin/settings/settings-init.php:260 -#@ woocommerce -msgid "This setting does not apply to guest purchases." -msgstr "Denne indstilling gælder ikke for gæste køb." - -#: admin/settings/settings-init.php:265 -#@ woocommerce -msgid "Grant access to downloadable products after payment" -msgstr "Giv adgang til download produkter efter betaling" - -#: admin/settings/settings-init.php:269 -#@ woocommerce -msgid "Enable this option to grant access to downloads when orders are \"processing\", rather than \"completed\"." -msgstr "Aktiver denne indstilling for at give adgang til downloads, når ordrerne er \"behandles\", snarer end \"gennemført\".." - -#: admin/settings/settings-init.php:285 -#@ woocommerce -msgid "Note: The shop page has children - child pages will not work if you enable this option." -msgstr "Bemærk: Shop siden har \\\"børne sider\\\" - Børne sider fungerer ikke, hvis du aktiverer denne indstilling." - -#: admin/settings/settings-init.php:290 -#@ woocommerce -msgid "Page Setup" -msgstr "Sideopsætning" - -#: admin/settings/settings-init.php:292 -#, php-format -#@ woocommerce -msgid "Set up core WooCommerce pages here, for example the base page. The base page can also be used in your %sproduct permalinks%s." -msgstr "Opsæt core WooCommerce sider her, for eksempel grund siden. Grund siden kan også bruges i din %sproduct permalinks%s." - -#: admin/settings/settings-init.php:297 -#@ woocommerce -msgid "Shop Base Page" -msgstr "Shop Base Side" - -#: admin/settings/settings-init.php:298 -#@ woocommerce -msgid "This sets the base page of your shop - this is where your product archive will be." -msgstr "Dette sætter grund siden i din butik - det er her dit produkt arkiv vil være." - -#: admin/settings/settings-init.php:308 -#@ woocommerce -msgid "Base Page Title" -msgstr "Grundside Title" - -#: admin/settings/settings-init.php:309 -#@ woocommerce -msgid "This title to show on the shop base page. Leave blank to use the page title." -msgstr "Denne titel skal vises på butikkens grund side. Lad feltet være tomt for at bruge sidens titel." - -#: admin/settings/settings-init.php:318 -#@ woocommerce -msgid "Terms Page ID" -msgstr "Betingelser Side ID" - -#: admin/settings/settings-init.php:319 -#@ woocommerce -msgid "If you define a \"Terms\" page the customer will be asked if they accept them when checking out." -msgstr "Hvis du definerer en \"Betingelser\" side vil kunden bliver spurgt, om de accepterer dem, når de går gennem checkud" - -#: admin/settings/settings-init.php:330 -#@ woocommerce -msgid "Shop Pages" -msgstr "Shop Side" - -#: admin/settings/settings-init.php:330 -#@ woocommerce -msgid "The following pages need selecting so that WooCommerce knows where they are. These pages should have been created upon installation of the plugin, if not you will need to create them." -msgstr "De følgende sider skal vælges, så WooCommerce ved, hvor de er. Disse sider burde have været oprettet ved installation af plugin, hvis ikke du bliver nødt til at oprette dem." - -#: admin/settings/settings-init.php:333 -#@ woocommerce -msgid "Cart Page" -msgstr "Kurv Side" - -#: admin/settings/settings-init.php:334 -#@ woocommerce -msgid "Page contents: [woocommerce_cart]" -msgstr "Sideindhold: [woocommerce_cart]" - -#: admin/settings/settings-init.php:344 -#@ woocommerce -msgid "Checkout Page" -msgstr "Checkud Side" - -#: admin/settings/settings-init.php:345 -#@ woocommerce -msgid "Page contents: [woocommerce_checkout]" -msgstr "Sideindhold: [woocommerce_checkout]" - -#: admin/settings/settings-init.php:355 -#@ woocommerce -msgid "Pay Page" -msgstr "Betalings side" - -#: admin/settings/settings-init.php:356 -#@ woocommerce -msgid "Page contents: [woocommerce_pay] Parent: \"Checkout\"" -msgstr "Sideindhold: [woocommerce_pay] Forældre: \"Checkout\"" - -#: admin/settings/settings-init.php:366 -#@ woocommerce -msgid "Thanks Page" -msgstr "Tak for ordren Side" - -#: admin/settings/settings-init.php:367 -#@ woocommerce -msgid "Page contents: [woocommerce_thankyou] Parent: \"Checkout\"" -msgstr "Sideindhold: [woocommerce_thankyou] Forældre: \"Checkout\"" - -#: admin/settings/settings-init.php:377 -#@ woocommerce -msgid "My Account Page" -msgstr "Min konto side" - -#: admin/settings/settings-init.php:378 -#@ woocommerce -msgid "Page contents: [woocommerce_my_account]" -msgstr "Sideindhold: [woocommerce_my_account]" - -#: admin/settings/settings-init.php:388 -#@ woocommerce -msgid "Edit Address Page" -msgstr "Rediger adresse Side" - -#: admin/settings/settings-init.php:389 -#@ woocommerce -msgid "Page contents: [woocommerce_edit_address] Parent: \"My Account\"" -msgstr "Sideindhold: [woocommerce_edit_address] Forældre: \"Min konto\"" - -#: admin/settings/settings-init.php:399 -#@ woocommerce -msgid "View Order Page" -msgstr "Vis ordre side" - -#: admin/settings/settings-init.php:400 -#@ woocommerce -msgid "Page contents: [woocommerce_view_order] Parent: \"My Account\"" -msgstr "Sideindhold: [woocommerce_view_order] Forældre: \"Min konto\"" - -#: admin/settings/settings-init.php:410 -#@ woocommerce -msgid "Change Password Page" -msgstr "Skift adgangskode side" - -#: admin/settings/settings-init.php:411 -#@ woocommerce -msgid "Page contents: [woocommerce_change_password] Parent: \"My Account\"" -msgstr "Sideindhold: [woocommerce_change_password] Forældre: \"Min Konto\"" - -#: admin/settings/settings-init.php:421 -#@ woocommerce -msgid "Logout Page" -msgstr "Log ud Side" - -#: admin/settings/settings-init.php:422 -#@ woocommerce -msgid "Parent: \"My Account\"" -msgstr "Forældre: \"Min konto\"" - -#: admin/settings/settings-init.php:432 -#@ woocommerce -msgid "Lost Password Page" -msgstr "Mistet kodeord Side" - -#: admin/settings/settings-init.php:433 -#@ woocommerce -msgid "Page contents: [woocommerce_lost_password] Parent: \"My Account\"" -msgstr "Sideindhold: [woocommerce_lost_password] Forældre: \"Min Konto\"" - -#: admin/settings/settings-init.php:449 -#@ woocommerce -msgid "Catalog Options" -msgstr "Katalog Indstillinger" - -#: admin/settings/settings-init.php:452 -#@ woocommerce -msgid "Default Product Sorting" -msgstr "Standard Produktet Sortering" - -#: admin/settings/settings-init.php:453 -#@ woocommerce -msgid "This controls the default sort order of the catalog." -msgstr "Dette styrer standard sorteringsrækkefølge af kataloget." - -#: admin/settings/settings-init.php:459 -#@ woocommerce -msgid "Default sorting (custom ordering + name)" -msgstr "Standard sortering (brugerdefineret orden + navn)" - -#: admin/settings/settings-init.php:460 -#@ woocommerce -msgid "Popularity (sales)" -msgstr "Popularitet (salg)" - -#: admin/settings/settings-init.php:461 -#@ woocommerce -msgid "Average Rating" -msgstr "Gennemsnitlig Rating" - -#: admin/settings/settings-init.php:463 -#@ woocommerce -msgid "Sort by price (asc)" -msgstr "Sorter efter pris (Stigende)" - -#: admin/settings/settings-init.php:464 -#@ woocommerce -msgid "Sort by price (desc)" -msgstr "Sorter efter pris (faldende)" - -#: admin/settings/settings-init.php:470 -#@ woocommerce -msgid "Shop Page Display" -msgstr "Shop Sidevisning" - -#: admin/settings/settings-init.php:471 -#@ woocommerce -msgid "This controls what is shown on the product archive." -msgstr "Dette styrer, hvad der vises på produktet arkiv sider." - -#: admin/settings/settings-init.php:477 admin/settings/settings-init.php:492 -#@ woocommerce -msgid "Show products" -msgstr "Vis produkter" - -#: admin/settings/settings-init.php:478 admin/settings/settings-init.php:493 -#@ woocommerce -msgid "Show subcategories" -msgstr "Vis underkategorier" - -#: admin/settings/settings-init.php:479 admin/settings/settings-init.php:494 -#@ woocommerce -msgid "Show both" -msgstr "Vis begge" - -#: admin/settings/settings-init.php:485 -#@ woocommerce -msgid "Default Category Display" -msgstr "Standard Kategori visning" - -#: admin/settings/settings-init.php:486 -#@ woocommerce -msgid "This controls what is shown on category archives." -msgstr "Dette styrer, hvad der vises på kategori arkiver." - -#: admin/settings/settings-init.php:501 -#@ woocommerce -msgid "Redirect to the cart page after successful addition" -msgstr "Omdiriger til indkøbskurv siden efter succesfuld tilføjelse" - -#: admin/settings/settings-init.php:509 -#@ woocommerce -msgid "Enable AJAX add to cart buttons on archives" -msgstr "Aktiver AJAX tilføj til indkøbskurv knapper på arkiver" - -#: admin/settings/settings-init.php:518 -#@ woocommerce -msgid "The following options affect the fields available on the edit product page." -msgstr "Følgende indstillinger påvirker felterne tilgængelige på rediger produkt side." - -#: admin/settings/settings-init.php:521 -#@ woocommerce -msgid "Product Fields" -msgstr "Produkt Felter" - -#: admin/settings/settings-init.php:522 -#@ woocommerce -msgid "Enable the SKU field for products" -msgstr "Aktiver varer nr. felt for produkter" - -#: admin/settings/settings-init.php:530 -#@ woocommerce -msgid "Enable the weight field for products (some shipping methods may require this)" -msgstr "Aktiver vægt felt for produkter (nogle fragt metoder kan kræve dette)" - -#: admin/settings/settings-init.php:538 -#@ woocommerce -msgid "Enable the dimension fields for products (some shipping methods may require this)" -msgstr "Aktiver dimensionsfelterne felterne for produkter (nogle fragt metoder kan kræve dette)" - -#: admin/settings/settings-init.php:546 -#@ woocommerce -msgid "Show weight and dimension values on the Additional Information tab" -msgstr "Vis vægt og dimensioner værdier på fanen Yderligere oplysninger" - -#: admin/settings/settings-init.php:554 -#@ woocommerce -msgid "Weight Unit" -msgstr "Vægtenhed" - -#: admin/settings/settings-init.php:555 -#@ woocommerce -msgid "This controls what unit you will define weights in." -msgstr "Dette styrer, hvad enhed, du vil definere vægte i." - -#: admin/settings/settings-init.php:561 -#@ woocommerce -msgid "kg" -msgstr "kg" - -#: admin/settings/settings-init.php:562 -#@ woocommerce -msgid "g" -msgstr "g" - -#: admin/settings/settings-init.php:563 -#@ woocommerce -msgid "lbs" -msgstr "lbs" - -#: admin/settings/settings-init.php:564 -#@ woocommerce -msgid "oz" -msgstr "oz" - -#: admin/settings/settings-init.php:570 -#@ woocommerce -msgid "Dimensions Unit" -msgstr "Mål enhed" - -#: admin/settings/settings-init.php:571 -#@ woocommerce -msgid "This controls what unit you will define lengths in." -msgstr "Dette styrer, hvad enhed, du vil definere længder i." - -#: admin/settings/settings-init.php:578 -#@ woocommerce -msgid "cm" -msgstr "cm" - -#: admin/settings/settings-init.php:579 -#@ woocommerce -msgid "mm" -msgstr "mm" - -#: admin/settings/settings-init.php:580 -#@ woocommerce -msgid "in" -msgstr "i" - -#: admin/settings/settings-init.php:581 -#@ woocommerce -msgid "yd" -msgstr "m" - -#: admin/settings/settings-init.php:587 -#@ woocommerce -msgid "Product Ratings" -msgstr "Produkt Ratings" - -#: admin/settings/settings-init.php:588 -#@ woocommerce -msgid "Enable ratings on reviews" -msgstr "Aktiver ratings på anmeldelser" - -#: admin/settings/settings-init.php:597 -#@ woocommerce -msgid "Ratings are required to leave a review" -msgstr "Ratings er krævet for at skrive en anmeldelse" - -#: admin/settings/settings-init.php:606 -#@ woocommerce -msgid "Show \"verified owner\" label for customer reviews" -msgstr "Vis \"Bekræftet kunde\" label på kundeanmeldelser" - -#: admin/settings/settings-init.php:616 -#@ woocommerce -msgid "Pricing Options" -msgstr "Prismuligheder" - -#: admin/settings/settings-init.php:616 -#@ woocommerce -msgid "The following options affect how prices are displayed on the frontend." -msgstr "Følgende indstillinger påvirker, hvordan priserne vises på frontend." - -#: admin/settings/settings-init.php:619 -#@ woocommerce -msgid "Currency Position" -msgstr "Valutaposition" - -#: admin/settings/settings-init.php:620 -#@ woocommerce -msgid "This controls the position of the currency symbol." -msgstr "Dette styrer positionen af ​​valuta symbol." - -#: admin/settings/settings-init.php:626 -#@ woocommerce -msgid "Left" -msgstr "Venstre" - -#: admin/settings/settings-init.php:627 -#@ woocommerce -msgid "Right" -msgstr "Højre" - -#: admin/settings/settings-init.php:628 -#@ woocommerce -msgid "Left (with space)" -msgstr "Venstre (med mellemrum)" - -#: admin/settings/settings-init.php:629 -#@ woocommerce -msgid "Right (with space)" -msgstr "Højre (med mellemrum)" - -#: admin/settings/settings-init.php:635 -#@ woocommerce -msgid "Thousand Separator" -msgstr "Tusind Separator" - -#: admin/settings/settings-init.php:636 -#@ woocommerce -msgid "This sets the thousand separator of displayed prices." -msgstr "Dette indstiller tusind separator af de viste priser." - -#: admin/settings/settings-init.php:645 -#@ woocommerce -msgid "Decimal Separator" -msgstr "Decimal Separator" - -#: admin/settings/settings-init.php:646 -#@ woocommerce -msgid "This sets the decimal separator of displayed prices." -msgstr "Dette indstiller decimalseparator af de viste priser." - -#: admin/settings/settings-init.php:655 -#@ woocommerce -msgid "Number of Decimals" -msgstr "Antal decimaler" - -#: admin/settings/settings-init.php:656 -#@ woocommerce -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "Dette indstiller det antal decimaler vist i de viste priser." - -#: admin/settings/settings-init.php:669 -#@ woocommerce -msgid "Trailing Zeros" -msgstr "Efterfølgende nuller" - -#: admin/settings/settings-init.php:670 -#@ woocommerce -msgid "Remove zeros after the decimal point. e.g. $10.00 becomes $10" -msgstr "Fjern nuller efter kommaet. fx $10.00 bliver $10" - -#: admin/settings/settings-init.php:678 -#@ woocommerce -msgid "Image Options" -msgstr "Billedindstillinger" - -#: admin/settings/settings-init.php:678 -#, php-format -#@ woocommerce -msgid "These settings affect the actual dimensions of images in your catalog - the display on the front-end will still be affected by CSS styles. After changing these settings you may need to regenerate your thumbnails." -msgstr "Disse indstillinger påvirker de faktiske dimensioner af billeder i dit katalog - displayet på front-end, vil blive påvirket af CSS. Når du ændrer disse indstillinger, du måske nødt til at regenerate your thumbnails." - -#: admin/settings/settings-init.php:681 -#@ woocommerce -msgid "Catalog Images" -msgstr "Katalog billeder" - -#: admin/settings/settings-init.php:682 -#@ woocommerce -msgid "This size is usually used in product listings" -msgstr "Denne størrelse er normalt brugt i produktlister" - -#: admin/settings/settings-init.php:695 -#@ woocommerce -msgid "Single Product Image" -msgstr "Single Produktbillede" - -#: admin/settings/settings-init.php:696 -#@ woocommerce -msgid "This is the size used by the main image on the product page." -msgstr "Dette er den størrelse, der anvendes ved det primære billede på produktsiden." - -#: admin/settings/settings-init.php:709 -#@ woocommerce -msgid "Product Thumbnails" -msgstr "Produkt Thumbnails" - -#: admin/settings/settings-init.php:710 -#@ woocommerce -msgid "This size is usually used for the gallery of images on the product page." -msgstr "Denne størrelse er normalt brugt til galleri af billeder på produktsiden." - -#: admin/settings/settings-init.php:729 -#@ woocommerce -msgid "Inventory Options" -msgstr "Lager Indstillinger" - -#: admin/settings/settings-init.php:732 -#@ woocommerce -msgid "Manage Stock" -msgstr "Administrer Lager" - -#: admin/settings/settings-init.php:733 -#@ woocommerce -msgid "Enable stock management" -msgstr "Aktiver lagerstyring" - -#: admin/settings/settings-init.php:740 -#@ woocommerce -msgid "Hold Stock (minutes)" -msgstr "Hold Lager (minutter)" - -#: admin/settings/settings-init.php:741 -#@ woocommerce -msgid "Hold stock (for unpaid orders) for x minutes. When this limit is reached, the pending order will be cancelled. Leave blank to disable." -msgstr "Hold lager (for ubetalte ordrer) for x antal minutter. Når denne grænse er nået, vil den verserende ordre blive annulleret. Lad stå tomt for at deaktivere." - -#: admin/settings/settings-init.php:753 -#@ woocommerce -msgid "Notifications" -msgstr "Bemærkninger" - -#: admin/settings/settings-init.php:754 -#@ woocommerce -msgid "Enable low stock notifications" -msgstr "Aktiver lavt lager meddelelser" - -#: admin/settings/settings-init.php:762 -#@ woocommerce -msgid "Enable out of stock notifications" -msgstr "Aktiver udsolgt meddelelser" - -#: admin/settings/settings-init.php:770 -#@ woocommerce -msgid "Notification Recipient" -msgstr "Notifikation Modtager" - -#: admin/settings/settings-init.php:778 -#@ woocommerce -msgid "Low Stock Threshold" -msgstr "Lav lagerbeholdning" - -#: admin/settings/settings-init.php:791 -#@ woocommerce -msgid "Out Of Stock Threshold" -msgstr "Udsolgt vare" - -#: admin/settings/settings-init.php:804 -#@ woocommerce -msgid "Out Of Stock Visibility" -msgstr "Ikke på lager Synlighed" - -#: admin/settings/settings-init.php:805 -#@ woocommerce -msgid "Hide out of stock items from the catalog" -msgstr "Skjul udsolgte varer fra kataloget" - -#: admin/settings/settings-init.php:812 -#@ woocommerce -msgid "Stock Display Format" -msgstr "Lager visnings Format" - -#: admin/settings/settings-init.php:813 -#@ woocommerce -msgid "This controls how stock is displayed on the frontend." -msgstr "Dette styrer hvordan lagerbeholdningen vises på frontend." - -#: admin/settings/settings-init.php:819 -#@ woocommerce -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "Vis altid lager fx \"12 på lager\"" - -#: admin/settings/settings-init.php:820 -#@ woocommerce -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "Vis kun lager, ved lavt antal fx \"Kun 2 på lager\" vs. \"På lager\"" - -#: admin/settings/settings-init.php:821 -#@ woocommerce -msgid "Never show stock amount" -msgstr "Vis aldrig antal på lager" - -#: admin/settings/settings-init.php:836 -#@ woocommerce -msgid "Shipping Calculations" -msgstr "Fragt beregning" - -#: admin/settings/settings-init.php:837 -#@ woocommerce -msgid "Enable shipping" -msgstr "Aktiver forsendelse" - -#: admin/settings/settings-init.php:845 -#@ woocommerce -msgid "Enable the shipping calculator on the cart page" -msgstr "Aktiver fragt beregner på indkøbskurv siden" - -#: admin/settings/settings-init.php:853 -#@ woocommerce -msgid "Hide shipping costs until an address is entered" -msgstr "Skjul forsendelsesomkostninger indtil en adresse er indtastet" - -#: admin/settings/settings-init.php:861 -#@ woocommerce -msgid "Shipping Method Display" -msgstr "Forsendelses Metode Display" - -#: admin/settings/settings-init.php:862 -#@ woocommerce -msgid "This controls how multiple shipping methods are displayed on the frontend." -msgstr "Dette styrer, hvordan flere fragt metoder vises på frontend." - -#: admin/settings/settings-init.php:868 -#@ woocommerce -msgid "Radio buttons" -msgstr "Radio-knapper" - -#: admin/settings/settings-init.php:869 -#@ woocommerce -msgid "Select box" -msgstr "Vælg kasse" - -#: admin/settings/settings-init.php:875 -#@ woocommerce -msgid "Shipping Destination" -msgstr "Forsendelses Destination" - -#: admin/settings/settings-init.php:876 -#@ woocommerce -msgid "Only ship to the users billing address" -msgstr "Send kun til brugernes faktureringsadresse" - -#: admin/settings/settings-init.php:884 -#@ woocommerce -msgid "Ship to billing address by default" -msgstr "Send til faktureringsadresse som standard" - -#: admin/settings/settings-init.php:892 -#@ woocommerce -msgid "Collect shipping address even when not required" -msgstr "Medtag fragt adresse, selv når det ikke kræves" - -#: admin/settings/settings-init.php:910 -#: admin/woocommerce-admin-settings.php:186 -#: admin/woocommerce-admin-settings.php:327 -#@ woocommerce -msgid "Payment Gateways" -msgstr "Betalings Gateways" - -#: admin/settings/settings-init.php:910 -#@ woocommerce -msgid "Installed payment gateways are displayed below. Drag and drop payment gateways to control their display order on the checkout." -msgstr "Installerede betalingsgateways vises nedenfor. Træk og slip betalingsgateways for at styre visnings rækkefølge ved checkud." - -#: admin/settings/settings-init.php:928 -#: admin/woocommerce-admin-settings.php:220 -#@ woocommerce -msgid "Tax Options" -msgstr "Moms Indstillinger" - -#: admin/settings/settings-init.php:931 -#@ woocommerce -msgid "Enable Taxes" -msgstr "Aktiver Skatter" - -#: admin/settings/settings-init.php:932 -#@ woocommerce -msgid "Enable taxes and tax calculations" -msgstr "Aktiver skatter og skatte beregninger" - -#: admin/settings/settings-init.php:939 -#@ woocommerce -msgid "Prices Entered With Tax" -msgstr "Priserne indtastes med moms" - -#: admin/settings/settings-init.php:943 -#@ woocommerce -msgid "This option is important as it will affect how you input prices. Changing it will not update existing products." -msgstr "Denne indstilling er vigtig, da det vil påvirke, hvordan du indtaster priser. Ændring vil ikke opdatere eksisterende produkter." - -#: admin/settings/settings-init.php:945 -#@ woocommerce -msgid "Yes, I will enter prices inclusive of tax" -msgstr "Ja, jeg vil indtaste priser inklusive moms" - -#: admin/settings/settings-init.php:946 -#@ woocommerce -msgid "No, I will enter prices exclusive of tax" -msgstr "Nej, jeg vil indtaste priser eksklusive moms" - -#: admin/settings/settings-init.php:951 -#@ woocommerce -msgid "Calculate Tax Based On:" -msgstr "Beregn skat baseret på:" - -#: admin/settings/settings-init.php:953 -#@ woocommerce -msgid "This option determines which address is used to calculate tax." -msgstr "Denne indstilling bestemmer, hvilken adresse der bruges til at beregne skatten." - -#: admin/settings/settings-init.php:957 -#@ woocommerce -msgid "Customer shipping address" -msgstr "Kundens leveringsadresse" - -#: admin/settings/settings-init.php:958 -#@ woocommerce -msgid "Customer billing address" -msgstr "Kundens faktureringsadresse" - -#: admin/settings/settings-init.php:959 admin/settings/settings-init.php:971 -#@ woocommerce -msgid "Shop base address" -msgstr "Shop basisadresse" - -#: admin/settings/settings-init.php:964 -#@ woocommerce -msgid "Default Customer Address:" -msgstr "Standard Kunde Adresse:" - -#: admin/settings/settings-init.php:966 -#@ woocommerce -msgid "This option determines the customers default address (before they input their own)." -msgstr "Denne indstilling bestemmer kundernes standard-adresse (før de indtaste deres egen)." - -#: admin/settings/settings-init.php:970 -#@ woocommerce -msgid "No address" -msgstr "Ingen adresse" - -#: admin/settings/settings-init.php:976 -#@ woocommerce -msgid "Shipping Tax Class:" -msgstr "Forsendelse skat klasse:" - -#: admin/settings/settings-init.php:977 -#@ woocommerce -msgid "Optionally control which tax class shipping gets, or leave it so shipping tax is based on the cart items themselves." -msgstr "Optionally control which tax class shipping gets, or leave it so shipping tax is based on the cart items themselves." - -#: admin/settings/settings-init.php:982 -#@ woocommerce -msgid "Shipping tax class based on cart items" -msgstr "Forsendelse skatteklasse baseret på indkøbskurvens indhold" - -#: admin/settings/settings-init.php:987 -#@ woocommerce -msgid "Rounding" -msgstr "Afrunding" - -#: admin/settings/settings-init.php:988 -#@ woocommerce -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "Afrund skat på subtotal niveau i stedet for afrunding pr linje" - -#: admin/settings/settings-init.php:995 -#@ woocommerce -msgid "Additional Tax Classes" -msgstr "Ekstra skatte Klasser" - -#: admin/settings/settings-init.php:996 -#@ woocommerce -msgid "List additonal tax classes below (1 per line). This is in addition to the default Standard Rate. Tax classes can be assigned to products." -msgstr "List yderligere skatte klasser nedenfor (1 per linje). Dette er et tillæg til standard Standard Rate . Skat klasser kan tildeles produkter." - -#: admin/settings/settings-init.php:1000 -#, php-format -#@ woocommerce -msgid "Reduced Rate%sZero Rate" -msgstr "Reduceret Rate%sNul Rate" - -#: admin/settings/settings-init.php:1004 -#@ woocommerce -msgid "Display prices during cart/checkout:" -msgstr "Vis priser i kurv / Checkout:" - -#: admin/settings/settings-init.php:1009 -#@ woocommerce -msgid "Including tax" -msgstr "Incl. moms" - -#: admin/settings/settings-init.php:1010 -#@ woocommerce -msgid "Excluding tax" -msgstr "Excl. moms" - -#: admin/settings/settings-init.php:1022 -#@ woocommerce -msgid "Email Sender Options" -msgstr "E-mail afsender Indstillinger" - -#: admin/settings/settings-init.php:1022 -#@ woocommerce -msgid "The following options affect the sender (email address and name) used in WooCommerce emails." -msgstr "Følgende indstillinger påvirker afsender (e-mail-adresse og navn), der anvendes i WooCommerce e-mails." - -#: admin/settings/settings-init.php:1025 -#@ woocommerce -msgid "\"From\" Name" -msgstr "\"Fra\" Navn" - -#: admin/settings/settings-init.php:1034 -#@ woocommerce -msgid "\"From\" Email Address" -msgstr "\"Fra\" email-adresse" - -#: admin/settings/settings-init.php:1047 -#@ woocommerce -msgid "Email Template" -msgstr "E-mail-skabelon" - -#: admin/settings/settings-init.php:1047 -#, php-format -#@ woocommerce -msgid "This section lets you customise the WooCommerce emails. Click here to preview your email template. For more advanced control copy woocommerce/templates/emails/ to yourtheme/woocommerce/emails/." -msgstr "This section lets you customise the WooCommerce emails. Click here to preview your email template. For more advanced control copy woocommerce/templates/emails/ to yourtheme/woocommerce/emails/." - -#: admin/settings/settings-init.php:1050 -#@ woocommerce -msgid "Header Image" -msgstr "Header billede" - -#: admin/settings/settings-init.php:1051 -#, php-format -#@ woocommerce -msgid "Enter a URL to an image you want to show in the email's header. Upload your image using the media uploader." -msgstr "Indtast en URL til et billede, du ønsker at vise i e-mailen header. Upload dit billede ved hjælp af media uploader." - -#: admin/settings/settings-init.php:1059 -#@ woocommerce -msgid "Email Footer Text" -msgstr "Email Footer Text" - -#: admin/settings/settings-init.php:1060 -#@ woocommerce -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "Den tekst, der vises i bunden af ​​WooCommerce e-mails." - -#: admin/settings/settings-init.php:1064 -#@ woocommerce -msgid "Powered by WooCommerce" -msgstr "Drevet af WooCommerce" - -#: admin/settings/settings-init.php:1068 -#@ woocommerce -msgid "Base Colour" -msgstr "Grund Farve" - -#: admin/settings/settings-init.php:1069 -#@ woocommerce -msgid "The base colour for WooCommerce email templates. Default #557da1." -msgstr "Grundfarven for WooCommerce e-mail skabeloner. Standard #557da1 ." - -#: admin/settings/settings-init.php:1077 -#@ woocommerce -msgid "Background Colour" -msgstr "Baggrunds Farve" - -#: admin/settings/settings-init.php:1078 -#@ woocommerce -msgid "The background colour for WooCommerce email templates. Default #f5f5f5." -msgstr "Baggrundsfarven til WooCommerce e-mail skabeloner. Standard #f5f5f5 ." - -#: admin/settings/settings-init.php:1086 -#@ woocommerce -msgid "Email Body Background Colour" -msgstr "Email body baggrundsfarve" - -#: admin/settings/settings-init.php:1087 -#@ woocommerce -msgid "The main body background colour. Default #fdfdfd." -msgstr "Hoved baggrundsfarve. Standard #fdfdfd ." - -#: admin/settings/settings-init.php:1095 -#@ woocommerce -msgid "Email Body Text Colour" -msgstr "Email Brødtekst Farve" - -#: admin/settings/settings-init.php:1096 -#@ woocommerce -msgid "The main body text colour. Default #505050." -msgstr "Brødtekst farve. Standard #505050 ." - -#: admin/settings/settings-payment-gateways.php:27 -#: admin/settings/settings-shipping-methods.php:29 -#: admin/woocommerce-admin-init.php:767 -#: admin/woocommerce-admin-taxonomies.php:27 -#: admin/woocommerce-admin-taxonomies.php:121 -#@ woocommerce -#@ default -msgid "Default" -msgstr "Standard" - -#: admin/settings/settings-payment-gateways.php:28 -#@ woocommerce -msgid "Gateway" -msgstr "Gateway" - -#: admin/settings/settings-payment-gateways.php:45 -#@ woocommerce -msgid "Gateway ID" -msgstr "Gateway-id" - -#: admin/settings/settings-shipping-methods.php:23 -#@ woocommerce -msgid "Shipping Methods" -msgstr "Forsendelse Metoder" - -#: admin/settings/settings-shipping-methods.php:25 -#@ woocommerce -msgid "Drag and drop methods to control their display order." -msgstr "Træk og slip på de forskellige for at indstille deres rækkefølge." - -#: admin/settings/settings-shipping-methods.php:30 -#@ woocommerce -msgid "Shipping Method" -msgstr "Forsendelse Metode" - -#: admin/settings/settings-shipping-methods.php:46 -#@ woocommerce -msgid "Method ID" -msgstr "Metode ID" - -#: admin/settings/settings-tax-rates.php:29 -#, php-format -#@ woocommerce -msgid "Tax Rates for the \"%s\" Class" -msgstr "Afgiftssatser for \"%s\" Class" - -#: admin/settings/settings-tax-rates.php:30 -#, php-format -#@ woocommerce -msgid "Define tax rates for countries and states below. See here for available alpha-2 country codes." -msgstr "Definer skattesatser for lande og stater nedenfor. See here efter tilgængelige alfa-2-landekoder." - -#: admin/settings/settings-tax-rates.php:36 -#@ woocommerce -msgid "Country Code" -msgstr "Landekode" - -#: admin/settings/settings-tax-rates.php:36 -#@ woocommerce -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "En 2-cifret landekode, fx DK. Lad stå tom for at gælde for alle." - -#: admin/settings/settings-tax-rates.php:38 -#@ woocommerce -msgid "State Code" -msgstr "State Code" - -#: admin/settings/settings-tax-rates.php:38 -#@ woocommerce -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "En 2-cifret stat kode, fx AL. Lad stå tom for at gælde for alle." - -#: admin/settings/settings-tax-rates.php:40 -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "ZIP/Postcode" -msgstr "Postnr" - -#: admin/settings/settings-tax-rates.php:40 -#@ woocommerce -msgid "Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank to apply to all areas. Wildcards (*) can be used. Ranges for numeric postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "Postnummer for denne regel. Semikolon (;) adskil flere værdier. Lad stå tom til at gælde for alle områder. Wildcards (*) kan anvendes. Intervaller for numeriske postnumre (fx 12.345-12.350) vil blive udvidet i de enkelte postnumre." - -#: admin/settings/settings-tax-rates.php:42 -#@ woocommerce -msgid "Cities for this rule. Semi-colon (;) separate multiple values. Leave blank to apply to all cities." -msgstr "Byer for denne regel. Semikolon (;) adskiller flere værdier. Lad stå tom for at gælde for alle byer." - -#: admin/settings/settings-tax-rates.php:44 -#@ woocommerce -msgid "Rate %" -msgstr "Rate %" - -#: admin/settings/settings-tax-rates.php:44 -#@ woocommerce -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "Indtast en skattesats (procent) to 4 decimal places." - -#: admin/settings/settings-tax-rates.php:46 -#@ woocommerce -msgid "Tax Name" -msgstr "Skat Navn" - -#: admin/settings/settings-tax-rates.php:46 -#@ woocommerce -msgid "Enter a name for this tax rate." -msgstr "Indtast et navn til denne skattesats." - -#: admin/settings/settings-tax-rates.php:48 -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Priority" -msgstr "Prioritet" - -#: admin/settings/settings-tax-rates.php:48 -#@ woocommerce -msgid "Choose a priority for this tax rate. Only 1 matching rate per priority will be used. To define multiple tax rates for a single area you need to specify a different priority per rate." -msgstr "Vælg en prioritet for denne skattesats. Kun 1 matchende per prioritet vil blive anvendt. For at definere flere skattesatser for et enkelt område, du har brug for at angive en anden prioritet pr sats." - -#: admin/settings/settings-tax-rates.php:50 -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Compound" -msgstr "Forbindelse" - -#: admin/settings/settings-tax-rates.php:50 -#@ woocommerce -msgid "Choose whether or not this is a compound rate. Compound tax rates are applied on top of other tax rates." -msgstr "Vælge, hvorvidt dette er en sammensat rate. Sammensatte skattesatser anvendes oven på andre skattesatser." - -#: admin/settings/settings-tax-rates.php:52 -#@ woocommerce -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "Vælg, om denne skattesats også bliver anvendt på forsendelse." - -#: admin/settings/settings-tax-rates.php:59 -#@ woocommerce -msgid "Insert row" -msgstr "Indsæt række" - -#: admin/settings/settings-tax-rates.php:60 -#@ woocommerce -msgid "Remove selected row(s)" -msgstr "Fjern valgt række (r)" - -#: admin/settings/settings-tax-rates.php:62 -#@ woocommerce -msgid "Export CSV" -msgstr "Eksporter CSV" - -#: admin/settings/settings-tax-rates.php:63 -#@ woocommerce -msgid "Import CSV" -msgstr "Importer CSV" - -#: admin/settings/settings-tax-rates.php:163 -#@ woocommerce -msgid "No row(s) selected" -msgstr "Inten række (r) valgt" - -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Country Code" -msgstr "Landekode" - -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "State Code" -msgstr "State Code" - -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Rate %" -msgstr "Rate %" - -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Tax Name" -msgstr "Skat Navn" - -#: admin/woocommerce-admin-attributes.php:77 -#@ woocommerce -msgid "Please, provide an attribute name, slug and type." -msgstr "Please, provide an attribute name, slug and type." - -#: admin/woocommerce-admin-attributes.php:79 -#, php-format -#@ woocommerce -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "Slug “%s” is too long (28 characters max). Shorten it, please." - -#: admin/woocommerce-admin-attributes.php:81 -#, php-format -#@ woocommerce -msgid "Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "Slug “%s” is not allowed because it is a reserved term. Change it, please." - -#: admin/woocommerce-admin-attributes.php:85 -#: admin/woocommerce-admin-attributes.php:90 -#, php-format -#@ woocommerce -msgid "Slug “%s” is already in use. Change it, please." -msgstr "Slug \\\"%s” er allerede i brug. Skift det, tak." - -#: admin/woocommerce-admin-attributes.php:226 -#@ woocommerce -msgid "Edit Attribute" -msgstr "Rediger Egenskab" - -#: admin/woocommerce-admin-attributes.php:236 -#: admin/woocommerce-admin-attributes.php:375 -#@ woocommerce -msgid "Name for the attribute (shown on the front-end)." -msgstr "Navn for egenskab (vist på front-end)." - -#: admin/woocommerce-admin-attributes.php:241 -#: admin/woocommerce-admin-attributes.php:307 -#: admin/woocommerce-admin-attributes.php:379 -#@ woocommerce -msgid "Slug" -msgstr "Slug" - -#: admin/woocommerce-admin-attributes.php:245 -#: admin/woocommerce-admin-attributes.php:381 -#@ woocommerce -msgid "Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "Unik slug / reference for egenskab, skal være kortere end 28 tegn." - -#: admin/woocommerce-admin-attributes.php:254 -#: admin/woocommerce-admin-attributes.php:387 -#@ woocommerce -msgid "Select" -msgstr "Vælg" - -#: admin/woocommerce-admin-attributes.php:255 -#: admin/woocommerce-admin-attributes.php:388 -#@ woocommerce -msgid "Text" -msgstr "Tekst" - -#: admin/woocommerce-admin-attributes.php:258 -#: admin/woocommerce-admin-attributes.php:391 -#@ woocommerce -msgid "Determines how you select attributes for products. Text allows manual entry via the product page, whereas select attribute terms can be defined from this section. If you plan on using an attribute for variations use select." -msgstr "Bestemmer, hvordan du vælger egenskaber for produkterne. Tekst giver mulighed for manuel indtastning via produktsiden, hvorimod Vælg tilknyttet kan defineres fra dette afsnit. Hvis du planlægger at bruge en egenskab for variationer brug vælg." - -#: admin/woocommerce-admin-attributes.php:263 -#: admin/woocommerce-admin-attributes.php:395 -#@ woocommerce -msgid "Default sort order" -msgstr "Standard sorteringsrækkefølge" - -#: admin/woocommerce-admin-attributes.php:267 -#: admin/woocommerce-admin-attributes.php:335 -#: admin/woocommerce-admin-attributes.php:397 -#@ woocommerce -msgid "Custom ordering" -msgstr "Tilpasset sortering" - -#: admin/woocommerce-admin-attributes.php:269 -#: admin/woocommerce-admin-attributes.php:332 -#: admin/woocommerce-admin-attributes.php:399 -#@ woocommerce -msgid "Term ID" -msgstr "Term-id" - -#: admin/woocommerce-admin-attributes.php:271 -#: admin/woocommerce-admin-attributes.php:401 -#@ woocommerce -msgid "Determines the sort order on the frontend for this attribute. If using custom ordering, you can drag and drop the terms in this attribute" -msgstr "Bestemmer sorteringsrækkefølgen på frontend for denne egenskab. Hvis du bruger brugerdefinerede sortering, kan du trække og slippe vilkårene i denne egenskab" - -#: admin/woocommerce-admin-attributes.php:309 -#@ woocommerce -msgid "Order by" -msgstr "Sortér efter" - -#: admin/woocommerce-admin-attributes.php:310 -#@ woocommerce -msgid "Terms" -msgstr "Betingelser" - -#: admin/woocommerce-admin-attributes.php:355 -#@ woocommerce -msgid "Configure terms" -msgstr "Konfigurer vilkår" - -#: admin/woocommerce-admin-attributes.php:359 -#@ woocommerce -msgid "No attributes currently exist." -msgstr "Ingen egenskaber findes i øjeblikket." - -#: admin/woocommerce-admin-attributes.php:369 -#@ woocommerce -msgid "Add New Attribute" -msgstr "Tilføj ny egenskab" - -#: admin/woocommerce-admin-attributes.php:370 -#@ woocommerce -msgid "Attributes let you define extra product data, such as size or colour. You can use these attributes in the shop sidebar using the \"layered nav\" widgets. Please note: you cannot rename an attribute later on." -msgstr "Egenskab lader dig definere ekstra produktdata, såsom størrelse eller farve. Du kan bruge disse egenskaber i butikkens sidebar ved hjælp af \"layered nav\" widgets. Bemærk: du kan ikke omdøbe en attribut senere." - -#: admin/woocommerce-admin-attributes.php:404 -#@ woocommerce -msgid "Add Attribute" -msgstr "Tilføj Egenskab" - -#: admin/woocommerce-admin-attributes.php:415 -#@ woocommerce -msgid "Are you sure you want to delete this attribute?" -msgstr "Er du sikker på du vil slette denne Egenskab?" - -#: admin/woocommerce-admin-content.php:26 -#: admin/woocommerce-admin-reports.php:30 -#: admin/woocommerce-admin-reports.php:75 -#: admin/woocommerce-admin-reports.php:91 -#: admin/woocommerce-admin-reports.php:102 -#@ woocommerce -msgid "Overview" -msgstr "Oversigt" - -#: admin/woocommerce-admin-content.php:29 -#, php-format -#@ woocommerce -msgid "Thank you for using WooCommerce :) Should you need help using or extending WooCommerce please read the documentation. For further assistance you can use the community forum or if you have access, our support desk." -msgstr "Tak fordi du bruger WooCommerce :) Hvis du har brug for hjælp eller udvide WooCommerce kan du Læse dokumentationen. For further assistance you can use the community forum or if you have access, our support desk." - -#: admin/woocommerce-admin-content.php:31 -#@ woocommerce -msgid "If you are having problems, or to assist us with support, please check the status page to identify any problems with your configuration:" -msgstr "Hvis du har problemer, eller for at hjælpe os med support, kan du kontrollere status for at afdække eventuelle problemer med din konfiguration:" - -#: admin/woocommerce-admin-content.php:33 admin/woocommerce-admin-init.php:87 -#: admin/woocommerce-admin-status.php:26 -#@ woocommerce -msgid "System Status" -msgstr "System status" - -#: admin/woocommerce-admin-content.php:35 -#, php-format -#@ woocommerce -msgid "If you come across a bug, or wish to contribute to the project you can also get involved on GitHub." -msgstr "Hvis du støder på en fejl eller ønsker at bidrage til projektet, kan du også get involved on GitHub." - -#: admin/woocommerce-admin-content.php:43 -#@ woocommerce -msgid "Here you can set up your store and customise it to fit your needs. The sections available from the settings page include:" -msgstr "Her kan du instille din shop og tilpasse den til dine behov. Afsnittene er tilgængelige fra siden indstillinger incl.:" - -#: admin/woocommerce-admin-content.php:44 -#@ woocommerce -msgid "General settings such as your shop base, currency, and script/styling options which affect features used in your store." -msgstr "Generelle indstillinger, f.eks din shop grund side, valuta, og script / styling muligheder, som påvirker funktioner, der anvendes i din butik." - -#: admin/woocommerce-admin-content.php:45 -#@ woocommerce -msgid "This is where important store page are defined. You can also set up other pages (such as a Terms page) here." -msgstr "Det er her vigtige shop sider er defineret. Du kan også oprette andre sider (som f.eks Vilkår side), her." - -#: admin/woocommerce-admin-content.php:46 -#@ woocommerce -msgid "Options for how things like price, images and weights appear in your product catalog." -msgstr "Instillinger for, hvordan ting som pris, billeder og vægt vises i din butik." - -#: admin/woocommerce-admin-content.php:47 -#@ woocommerce -msgid "Options concerning stock and stock notices." -msgstr "Instillinger vedrørende lager og lager beskeder." - -#: admin/woocommerce-admin-content.php:48 -#@ woocommerce -msgid "Options concerning tax, including international and local tax rates." -msgstr "Instillinger vedrørende skat, herunder internationale og lokale skattesatser." - -#: admin/woocommerce-admin-content.php:49 -#@ woocommerce -msgid "This is where shipping options are defined, and shipping methods are set up." -msgstr "Det er her fragt muligheder er defineret, og fragt metoder er sat op." - -#: admin/woocommerce-admin-content.php:50 -#@ woocommerce -msgid "Payment Methods" -msgstr "Betalingsmetoder" - -#: admin/woocommerce-admin-content.php:50 -#@ woocommerce -msgid "This is where payment gateway options are defined, and individual payment gateways are set up." -msgstr "Det er her betalingsgateway muligheder er defineret , og de enkelte betalingsgateways er sat op." - -#: admin/woocommerce-admin-content.php:51 -#: admin/woocommerce-admin-settings.php:187 -#@ woocommerce -msgid "Emails" -msgstr "Emails" - -#: admin/woocommerce-admin-content.php:51 -#@ woocommerce -msgid "Here you can customise the way WooCommerce emails appear." -msgstr "Her kan du tilpasse den måde WooCommerce emails vises." - -#: admin/woocommerce-admin-content.php:52 -#: admin/woocommerce-admin-settings.php:188 -#@ woocommerce -msgid "Integration" -msgstr "Integration" - -#: admin/woocommerce-admin-content.php:52 -#@ woocommerce -msgid "The integration section contains options for third party services which integrate with WooCommerce." -msgstr "Integrations afsnitet indeholder muligheder for tredjeparts-tjenester, der integrerer med WooCommerce." - -#: admin/woocommerce-admin-content.php:57 admin/woocommerce-admin-init.php:64 -#@ woocommerce -msgid "Reports" -msgstr "Rapporter" - -#: admin/woocommerce-admin-content.php:59 -#@ woocommerce -msgid "The reports section can be accessed from the left-hand navigation menu. Here you can generate reports for sales and customers." -msgstr "Rapport sektion kan tilgås fra venstre navigationsmenu. Her kan du generere rapporter for salg og kunder." - -#: admin/woocommerce-admin-content.php:60 -#: admin/woocommerce-admin-reports.php:27 -#: admin/woocommerce-admin-reports.php:986 -#: admin/woocommerce-admin-reports.php:1082 -#: admin/woocommerce-admin-reports.php:1199 -#@ woocommerce -msgid "Sales" -msgstr "Salg" - -#: admin/woocommerce-admin-content.php:60 -#@ woocommerce -msgid "Reports for sales based on date, top sellers and top earners." -msgstr "Rapporter for salg baseret på dato, top sælgere og topforhandlere." - -#: admin/woocommerce-admin-content.php:61 -#@ woocommerce -msgid "Coupon usage reports." -msgstr "Brug asf kuponer rapporter." - -#: admin/woocommerce-admin-content.php:62 -#: admin/woocommerce-admin-reports.php:88 -#@ woocommerce -msgid "Customers" -msgstr "Kunder" - -#: admin/woocommerce-admin-content.php:62 -#@ woocommerce -msgid "Customer reports, such as signups per day." -msgstr "Kunde rapporter, såsom tilmeldinger pr. dag." - -#: admin/woocommerce-admin-content.php:63 -#@ woocommerce -msgid "Stock reports for low stock and out of stock items." -msgstr "Lager rapporter for lav mængde og udsolgte varer." - -#: admin/woocommerce-admin-content.php:70 -#@ woocommerce -msgid "The orders section can be accessed from the left-hand navigation menu. Here you can view and manage customer orders." -msgstr "Ordre sektion kan tilgås fra venstre navigationsmenu. Her kan du se og håndtere kundernes ordrer." - -#: admin/woocommerce-admin-content.php:71 -#@ woocommerce -msgid "Orders can also be added from this section if you want to set them up for a customer manually." -msgstr "Ordrer kan også tilføjes fra dette afsnit, hvis du ønsker at sætte dem op for en kunde manuelt." - -#: admin/woocommerce-admin-content.php:78 -#@ woocommerce -msgid "Coupons can be managed from this section. Once added, customers will be able to enter coupon codes on the cart/checkout page. If a customer uses a coupon code they will be viewable when viewing orders." -msgstr "Kuponer kan styres fra dette afsnit. Når den er tilføjet, vil kunderne være i stand til at indtaste kupon koder i indkøbskurven / ved kassen. Hvis en kunde benytter en kupon kode, de vil være synlige, når du ser en ordre." - -#: admin/woocommerce-admin-content.php:82 -#@ woocommerce -msgid "For more information:" -msgstr "For mere information:" - -#: admin/woocommerce-admin-content.php:84 -#@ woocommerce -msgid "Project on WordPress.org" -msgstr "Project on WordPress.org" - -#: admin/woocommerce-admin-content.php:85 -#@ woocommerce -msgid "Project on Github" -msgstr "Projekt på Github" - -#: admin/woocommerce-admin-content.php:86 -#@ woocommerce -msgid "WooCommerce Docs" -msgstr "WooCommerce Docs" - -#: admin/woocommerce-admin-content.php:87 -#@ woocommerce -msgid "Official Extensions" -msgstr "Officielle Udvidelser" - -#: admin/woocommerce-admin-content.php:88 -#@ woocommerce -msgid "Official Themes" -msgstr "Officielle Temaer" - -#: admin/woocommerce-admin-dashboard.php:40 -#@ woocommerce -msgid "Monthly Sales" -msgstr "Månedlige Salg" - -#: admin/woocommerce-admin-dashboard.php:43 -#@ woocommerce -msgid "WooCommerce Right Now" -msgstr "WooCommerce lige nu" - -#: admin/woocommerce-admin-dashboard.php:44 -#@ woocommerce -msgid "WooCommerce Recent Orders" -msgstr "WooCommerce seneste ordrer" - -#: admin/woocommerce-admin-dashboard.php:78 -#@ woocommerce -msgid "Shop Content" -msgstr "Shop Indhold" - -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:84 -#: admin/woocommerce-admin-functions.php:194 -#: admin/woocommerce-admin-init.php:771 -#: admin/woocommerce-admin-reports.php:985 -#: admin/woocommerce-admin-reports.php:1081 templates/cart/cart.php:28 -#: templates/checkout/form-pay.php:19 templates/checkout/review-order.php:21 -#: templates/emails/admin-new-order.php:22 -#: templates/emails/customer-completed-order.php:23 -#: templates/emails/customer-invoice.php:27 -#: templates/emails/customer-note.php:27 -#: templates/emails/customer-processing-order.php:23 -#: templates/order/order-details.php:20 woocommerce.php:949 -#@ woocommerce -msgid "Product" -msgid_plural "Products" -msgstr[0] "Produkt" -msgstr[1] "Produkter" - -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:98 woocommerce.php:790 -#@ woocommerce -msgid "Product Category" -msgid_plural "Product Categories" -msgstr[0] "Produktkategori" -msgstr[1] "Produktkategorier" - -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:112 woocommerce.php:826 -#@ woocommerce -msgid "Product Tag" -msgid_plural "Product Tags" -msgstr[0] "Produkt Tag" -msgstr[1] "Produkt-tags" - -#: admin/woocommerce-admin-dashboard.php:126 -#@ woocommerce -msgid "Attribute" -msgid_plural "Attributes" -msgstr[0] "Egenskab" -msgstr[1] "Egenskaber" - -#: admin/woocommerce-admin-dashboard.php:148 -#@ woocommerce -msgid "Pending" -msgstr "Afventer" - -#: admin/woocommerce-admin-dashboard.php:162 -#@ woocommerce -msgid "On-Hold" -msgstr "On-Hold" - -#: admin/woocommerce-admin-dashboard.php:190 -#@ woocommerce -msgid "Completed" -msgstr "Afsluttet" - -#: admin/woocommerce-admin-dashboard.php:207 -#, php-format -#@ woocommerce -msgid "You are using WooCommerce %s." -msgstr "Du bruger WooCommerce %s." - -#: admin/woocommerce-admin-dashboard.php:238 -#@ woocommerce -msgid "l jS \\of F Y h:i:s A" -msgstr "l jS \\of F Y h:i:s A" - -#: admin/woocommerce-admin-dashboard.php:239 -#@ woocommerce -msgid "item" -msgid_plural "items" -msgstr[0] "Emne" -msgstr[1] "emner" - -#: admin/woocommerce-admin-dashboard.php:245 -#@ woocommerce -msgid "There are no product orders yet." -msgstr "Der er ingen produkt ordrer endnu." - -#: admin/woocommerce-admin-dashboard.php:287 -#@ woocommerce -msgid "There are no product reviews yet." -msgstr "Der er endnu ingen produkt anmeldelser." - -#: admin/woocommerce-admin-dashboard.php:428 -#@ woocommerce -msgid "Sold" -msgstr "Solgt" - -#: admin/woocommerce-admin-dashboard.php:429 -#@ woocommerce -msgid "Earned" -msgstr "Optjent" - -#: admin/woocommerce-admin-functions.php:184 -#: admin/woocommerce-admin-install.php:222 -#@ woocommerce -msgid "Order Received" -msgstr "Ordre modtaget" - -#: admin/woocommerce-admin-functions.php:186 -#@ woocommerce -msgid "Thank you, we are now processing your order. Your order's details are below." -msgstr "Tak, vi behandler nu din ordre. Din ordres detaljer er nedenfor." - -#: admin/woocommerce-admin-functions.php:208 -#@ woocommerce -msgid "Order total:" -msgstr "Ordre i alt:" - -#: admin/woocommerce-admin-functions.php:459 -#@ woocommerce -msgid "Could not compile woocommerce.less:" -msgstr "Could not compile woocommerce.less:" - -#: admin/woocommerce-admin-functions.php:480 -#: admin/woocommerce-admin-functions.php:481 -#@ woocommerce -msgid "Mark processing" -msgstr "Marker som behandles" - -#: admin/woocommerce-admin-functions.php:483 -#: admin/woocommerce-admin-functions.php:484 -#@ woocommerce -msgid "Mark completed" -msgstr "Marker som afsluttet" - -#: admin/woocommerce-admin-functions.php:521 -#@ woocommerce -msgid "Order status changed by bulk edit:" -msgstr "Ordrestatus ændret ved bulk edit:" - -#: admin/woocommerce-admin-functions.php:544 -#, php-format -#@ default -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "Ordrestatus ændret." -msgstr[1] "%s ordrestatusser ændret." - -#: admin/woocommerce-admin-init.php:86 -#@ woocommerce -msgid "WooCommerce Settings" -msgstr "WooCommerce Indstillinger" - -#: admin/woocommerce-admin-init.php:87 -#@ woocommerce -msgid "WooCommerce Status" -msgstr "WooCommerce status" - -#: admin/woocommerce-admin-init.php:446 -#@ woocommerce -msgid "Are you sure you want to remove the selected items? If you have previously reduced this item's stock, or this order was submitted by a customer, you will need to manually restore the item's stock." -msgstr "Er du sikker på du vil fjerne de valgte emner? Hvis du tidligere har reduceret lager for denne varer, eller denne ordre er fra en kunde, bliver du nødt til manuelt at rette varens lager." - -#: admin/woocommerce-admin-init.php:447 -#@ woocommerce -msgid "Please select some items." -msgstr "Vælg nogle emner." - -#: admin/woocommerce-admin-init.php:448 -#@ woocommerce -msgid "Remove this item meta?" -msgstr "Fjern denne vares meta?" - -#: admin/woocommerce-admin-init.php:449 -#@ woocommerce -msgid "Remove this attribute?" -msgstr "Fjern denne egenskab?" - -#: admin/woocommerce-admin-init.php:457 -#@ woocommerce -msgid "Enter a name for the new attribute term:" -msgstr "Indtast et navn til den nye egenskab:" - -#: admin/woocommerce-admin-init.php:458 -#@ woocommerce -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "Beregn totaler baseret på varer, rabatter og forsendelse?" - -#: admin/woocommerce-admin-init.php:459 -#@ woocommerce -msgid "Calculate line taxes? This will calculate taxes based on the customers country. If no billing/shipping is set it will use the store base country." -msgstr "Calculate line taxes? This will calculate taxes based on the customers country. If no billing/shipping is set it will use the store base country." - -#: admin/woocommerce-admin-init.php:460 -#@ woocommerce -msgid "Copy billing information to shipping information? This will remove any currently entered shipping information." -msgstr "Kopier faktura information til fragt oplysninger? Dette vil fjerne enhver nuværende indtastet forsendelse oplysninger." - -#: admin/woocommerce-admin-init.php:461 -#@ woocommerce -msgid "Load the customer's billing information? This will remove any currently entered billing information." -msgstr "Indlæs kundens faktureringsoplysninger? Dette vil fjerne nuværende indtastet faktureringsoplysninger." - -#: admin/woocommerce-admin-init.php:462 -#@ woocommerce -msgid "Load the customer's shipping information? This will remove any currently entered shipping information." -msgstr "Indlæs kundens fragt oplysninger? Dette vil fjerne nuværende indtastet forsendelse oplysninger." - -#: admin/woocommerce-admin-init.php:466 -#@ woocommerce -msgid "No customer selected" -msgstr "Ingen kunde valgt" - -#: admin/woocommerce-admin-init.php:675 -#, php-format -#@ woocommerce -msgid "Product updated. View Product" -msgstr "Produkt opdateret. Vis Produkt" - -#: admin/woocommerce-admin-init.php:676 admin/woocommerce-admin-init.php:691 -#: admin/woocommerce-admin-init.php:706 -#@ woocommerce -msgid "Custom field updated." -msgstr "Brugerdefineret felt opdateret." - -#: admin/woocommerce-admin-init.php:677 admin/woocommerce-admin-init.php:692 -#: admin/woocommerce-admin-init.php:707 -#@ woocommerce -msgid "Custom field deleted." -msgstr "Brugerdefineret felt slettet." - -#: admin/woocommerce-admin-init.php:678 -#@ woocommerce -msgid "Product updated." -msgstr "Produkt opdateret." - -#: admin/woocommerce-admin-init.php:679 -#, php-format -#@ woocommerce -msgid "Product restored to revision from %s" -msgstr "Produkt gendannet til revision fra %s" - -#: admin/woocommerce-admin-init.php:680 -#, php-format -#@ woocommerce -msgid "Product published. View Product" -msgstr "Produkt offentliggjort.Vis Produkt" - -#: admin/woocommerce-admin-init.php:681 -#@ woocommerce -msgid "Product saved." -msgstr "Produkt gemt." - -#: admin/woocommerce-admin-init.php:682 -#, php-format -#@ woocommerce -msgid "Product submitted. Preview Product" -msgstr "Produkt gemt. Vis Produkt" - -#: admin/woocommerce-admin-init.php:683 -#, php-format -#@ woocommerce -msgid "Product scheduled for: %1$s. Preview Product" -msgstr "Produkt planlagt %1$s. Vis Produkt" - -#: admin/woocommerce-admin-init.php:684 admin/woocommerce-admin-init.php:699 -#: admin/woocommerce-admin-init.php:714 -#@ woocommerce -msgid "M j, Y @ G:i" -msgstr "M j, Y @ G:i" - -#: admin/woocommerce-admin-init.php:685 -#, php-format -#@ woocommerce -msgid "Product draft updated. Preview Product" -msgstr "Produkt udkast opdateret. Vis Produkt" - -#: admin/woocommerce-admin-init.php:690 admin/woocommerce-admin-init.php:693 -#: admin/woocommerce-admin-init.php:695 -#@ woocommerce -msgid "Order updated." -msgstr "Ordre opdateret." - -#: admin/woocommerce-admin-init.php:694 -#, php-format -#@ woocommerce -msgid "Order restored to revision from %s" -msgstr "Ordre gendannet fra revision fra %s" - -#: admin/woocommerce-admin-init.php:696 -#@ woocommerce -msgid "Order saved." -msgstr "Ordre gemt." - -#: admin/woocommerce-admin-init.php:697 -#@ woocommerce -msgid "Order submitted." -msgstr "Ordre afgivet." - -#: admin/woocommerce-admin-init.php:698 -#, php-format -#@ woocommerce -msgid "Order scheduled for: %1$s." -msgstr "Ordre planlagt %1$s." - -#: admin/woocommerce-admin-init.php:700 -#@ woocommerce -msgid "Order draft updated." -msgstr "Ordre udkast opdateret." - -#: admin/woocommerce-admin-init.php:705 admin/woocommerce-admin-init.php:708 -#: admin/woocommerce-admin-init.php:710 -#@ woocommerce -msgid "Coupon updated." -msgstr "Kupon opdateret." - -#: admin/woocommerce-admin-init.php:709 -#, php-format -#@ woocommerce -msgid "Coupon restored to revision from %s" -msgstr "Kupon gendannet til revision fra %s" - -#: admin/woocommerce-admin-init.php:711 -#@ woocommerce -msgid "Coupon saved." -msgstr "Kupon gemt." - -#: admin/woocommerce-admin-init.php:712 -#@ woocommerce -msgid "Coupon submitted." -msgstr "Kupon indsendt." - -#: admin/woocommerce-admin-init.php:713 -#, php-format -#@ woocommerce -msgid "Coupon scheduled for: %1$s." -msgstr "Kupon planlagt: %1$s." - -#: admin/woocommerce-admin-init.php:715 -#@ woocommerce -msgid "Coupon draft updated." -msgstr "Kupon udkast opdateret." - -#: admin/woocommerce-admin-init.php:732 -#@ woocommerce -msgid "Order notes" -msgstr "Ordre noter" - -#: admin/woocommerce-admin-init.php:747 -#@ woocommerce -msgid "These settings control the permalinks used for products. These settings only apply when not using \"default\" permalinks above." -msgstr "Disse indstillinger styrer permalinks der anvendes til produkter. Disse indstillinger gælder kun, når not using \"default\" permalinks above." - -#: admin/woocommerce-admin-init.php:754 -#@ woocommerce -msgctxt "default-slug" -msgid "shop" -msgstr "butik" - -#: admin/woocommerce-admin-init.php:755 -#@ woocommerce -msgctxt "default-slug" -msgid "product" -msgstr "produkt" - -#: admin/woocommerce-admin-init.php:776 -#@ woocommerce -msgid "Shop base" -msgstr "Shop grundside" - -#: admin/woocommerce-admin-init.php:780 -#@ woocommerce -msgid "Shop base with category" -msgstr "Shop grundside med kategori" - -#: admin/woocommerce-admin-init.php:786 -#@ woocommerce -msgid "Custom Base" -msgstr "Brugerdefineret base" - -#: admin/woocommerce-admin-init.php:788 -#@ woocommerce -msgid "Enter a custom base to use. A base must be set or WordPress will use default instead." -msgstr "Indtast en brugerdefineret base du vil bruge. En base skal indstilles ellers vil WordPress anvende standard i stedet." - -#: admin/woocommerce-admin-init.php:816 -#@ woocommerce -msgid "Product permalink base" -msgstr "Produkt permalink base" - -#: admin/woocommerce-admin-init.php:821 -#@ woocommerce -msgid "Product category base" -msgstr "Produktkategori base" - -#: admin/woocommerce-admin-init.php:828 -#@ woocommerce -msgid "Product tag base" -msgstr "Produkt tag base" - -#: admin/woocommerce-admin-init.php:835 -#@ woocommerce -msgid "Product attribute base" -msgstr "Produkt egenskab base" - -#: admin/woocommerce-admin-install.php:192 -#@ woocommerce -msgctxt "page_slug" -msgid "shop" -msgstr "butik" - -#: admin/woocommerce-admin-install.php:192 -#@ woocommerce -msgid "Shop" -msgstr "Shop" - -#: admin/woocommerce-admin-install.php:195 -#@ woocommerce -msgctxt "page_slug" -msgid "cart" -msgstr "kurv" - -#: admin/woocommerce-admin-install.php:198 -#@ woocommerce -msgctxt "page_slug" -msgid "checkout" -msgstr "kassen" - -#: admin/woocommerce-admin-install.php:201 -#@ woocommerce -msgctxt "page_slug" -msgid "my-account" -msgstr "min-konto" - -#: admin/woocommerce-admin-install.php:207 -#@ woocommerce -msgctxt "page_slug" -msgid "edit-address" -msgstr "rediger-adresse" - -#: admin/woocommerce-admin-install.php:207 -#@ woocommerce -msgid "Edit My Address" -msgstr "Rediger min adresse" - -#: admin/woocommerce-admin-install.php:210 -#@ woocommerce -msgctxt "page_slug" -msgid "view-order" -msgstr "vis-ordre" - -#: admin/woocommerce-admin-install.php:213 -#@ woocommerce -msgctxt "page_slug" -msgid "change-password" -msgstr "aendre-password" - -#: admin/woocommerce-admin-install.php:216 -#@ woocommerce -msgctxt "page_slug" -msgid "logout" -msgstr "logud" - -#: admin/woocommerce-admin-install.php:219 -#@ woocommerce -msgctxt "page_slug" -msgid "pay" -msgstr "betal" - -#: admin/woocommerce-admin-install.php:219 -#@ woocommerce -msgid "Checkout → Pay" -msgstr "Kassen → Betal" - -#: admin/woocommerce-admin-install.php:222 -#@ woocommerce -msgctxt "page_slug" -msgid "order-received" -msgstr "ordre-modtaget" - -#: admin/woocommerce-admin-reports.php:36 -#@ woocommerce -msgid "Sales by day" -msgstr "Salg pr dag" - -#: admin/woocommerce-admin-reports.php:41 -#@ woocommerce -msgid "Sales by month" -msgstr "Salg pr måned" - -#: admin/woocommerce-admin-reports.php:46 -#@ woocommerce -msgid "Taxes by month" -msgstr "Skatter pr måned" - -#: admin/woocommerce-admin-reports.php:51 -#@ woocommerce -msgid "Product Sales" -msgstr "Produktsalg" - -#: admin/woocommerce-admin-reports.php:56 -#@ woocommerce -msgid "Top sellers" -msgstr "Top sælgere" - -#: admin/woocommerce-admin-reports.php:61 -#@ woocommerce -msgid "Top earners" -msgstr "Topforhandlere" - -#: admin/woocommerce-admin-reports.php:66 -#@ woocommerce -msgid "Sales by category" -msgstr "Salg pr kategori" - -#: admin/woocommerce-admin-reports.php:81 -#@ woocommerce -msgid "Discounts by coupon" -msgstr "Rabatter pr kupon" - -#: admin/woocommerce-admin-reports.php:232 -#: admin/woocommerce-admin-reports.php:497 -#: admin/woocommerce-admin-reports.php:702 -#: admin/woocommerce-admin-reports.php:883 -#@ woocommerce -msgid "Sales amount" -msgstr "Salgs beløb" - -#: admin/woocommerce-admin-reports.php:237 -#: admin/woocommerce-admin-reports.php:497 -#: admin/woocommerce-admin-reports.php:702 -#: admin/woocommerce-admin-reports.php:883 -#@ woocommerce -msgid "Number of sales" -msgstr "Antal salg" - -#: admin/woocommerce-admin-reports.php:369 -#@ woocommerce -msgid "Total sales" -msgstr "Det samlede salg" - -#: admin/woocommerce-admin-reports.php:371 -#: admin/woocommerce-admin-reports.php:377 -#: admin/woocommerce-admin-reports.php:383 -#: admin/woocommerce-admin-reports.php:389 -#: admin/woocommerce-admin-reports.php:395 -#: admin/woocommerce-admin-reports.php:401 -#: admin/woocommerce-admin-reports.php:644 -#: admin/woocommerce-admin-reports.php:650 -#: admin/woocommerce-admin-reports.php:656 -#: admin/woocommerce-admin-reports.php:662 -#: admin/woocommerce-admin-reports.php:828 -#: admin/woocommerce-admin-reports.php:834 -#: admin/woocommerce-admin-reports.php:840 -#: admin/woocommerce-admin-reports.php:846 -#: admin/woocommerce-admin-reports.php:1364 -#: admin/woocommerce-admin-reports.php:1370 -#: admin/woocommerce-admin-reports.php:1376 -#: admin/woocommerce-admin-reports.php:1810 -#: admin/woocommerce-admin-reports.php:1816 -#: admin/woocommerce-admin-reports.php:1822 -#: admin/woocommerce-admin-reports.php:1828 -#: admin/woocommerce-admin-reports.php:1834 -#: admin/woocommerce-admin-reports.php:1840 -#: admin/woocommerce-admin-reports.php:2304 -#: admin/woocommerce-admin-reports.php:2315 -#: admin/woocommerce-admin-reports.php:2326 -#@ woocommerce -msgid "n/a" -msgstr "n / a" - -#: admin/woocommerce-admin-reports.php:375 -#@ woocommerce -msgid "Total orders" -msgstr "Samlede ordrer" - -#: admin/woocommerce-admin-reports.php:377 -#: admin/woocommerce-admin-reports.php:650 -#: admin/woocommerce-admin-reports.php:834 -#@ woocommerce -msgid "items" -msgstr "emner" - -#: admin/woocommerce-admin-reports.php:381 -#@ woocommerce -msgid "Average order total" -msgstr "Gennemsnitlig samlede bestilling" - -#: admin/woocommerce-admin-reports.php:387 -#@ woocommerce -msgid "Average order items" -msgstr "Gennemsnitlig ordre emner" - -#: admin/woocommerce-admin-reports.php:393 -#@ woocommerce -msgid "Discounts used" -msgstr "Rabatter anvendt" - -#: admin/woocommerce-admin-reports.php:399 -#@ woocommerce -msgid "Total shipping costs" -msgstr "Samlet forsendelsesomkostninger" - -#: admin/woocommerce-admin-reports.php:407 -#@ woocommerce -msgid "This month's sales" -msgstr "Denne måneds salg" - -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1356 -#@ woocommerce -msgid "From:" -msgstr "Fra:" - -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1356 -#@ woocommerce -msgid "To:" -msgstr "Til:" - -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:821 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1229 -#: admin/woocommerce-admin-reports.php:1356 -#: admin/woocommerce-admin-reports.php:1489 -#: admin/woocommerce-admin-reports.php:2293 -#: admin/woocommerce-admin-reports.php:2476 -#@ woocommerce -msgid "Show" -msgstr "Vis" - -#: admin/woocommerce-admin-reports.php:642 -#@ woocommerce -msgid "Total sales in range" -msgstr "Det samlede salg i området" - -#: admin/woocommerce-admin-reports.php:648 -#@ woocommerce -msgid "Total orders in range" -msgstr "Samlede ordrer i intervallet" - -#: admin/woocommerce-admin-reports.php:654 -#@ woocommerce -msgid "Average order total in range" -msgstr "Gennemsnitlig samlet ordre inden for rammen" - -#: admin/woocommerce-admin-reports.php:660 -#@ woocommerce -msgid "Average order items in range" -msgstr "Gennemsnitlige ordrestørrelse i området" - -#: admin/woocommerce-admin-reports.php:668 -#@ woocommerce -msgid "Sales in range" -msgstr "Salget inden for området" - -#: admin/woocommerce-admin-reports.php:815 -#: admin/woocommerce-admin-reports.php:2287 -#@ woocommerce -msgid "Year:" -msgstr "År:" - -#: admin/woocommerce-admin-reports.php:826 -#@ woocommerce -msgid "Total sales for year" -msgstr "Det samlede salg for år" - -#: admin/woocommerce-admin-reports.php:832 -#@ woocommerce -msgid "Total orders for year" -msgstr "Samlede ordrer for år" - -#: admin/woocommerce-admin-reports.php:838 -#@ woocommerce -msgid "Average order total for year" -msgstr "Gennemsnitlig ordre samlet for år" - -#: admin/woocommerce-admin-reports.php:844 -#@ woocommerce -msgid "Average order items for year" -msgstr "Gennemsnitlig ordre emner for år" - -#: admin/woocommerce-admin-reports.php:852 -#@ woocommerce -msgid "Monthly sales for year" -msgstr "Månedlige salg for år" - -#: admin/woocommerce-admin-reports.php:1000 -#@ woocommerce -msgid "Product does not exist" -msgstr "Produktet findes ikke" - -#: admin/woocommerce-admin-reports.php:1097 -#@ woocommerce -msgid "Product no longer exists" -msgstr "Produktet findes ikke længere" - -#: admin/woocommerce-admin-reports.php:1194 -#, php-format -#@ woocommerce -msgid "Sales for %s:" -msgstr "Salg %s:" - -#: admin/woocommerce-admin-reports.php:1198 -#: admin/woocommerce-admin-reports.php:2335 -#@ woocommerce -msgid "Month" -msgstr "Måned" - -#: admin/woocommerce-admin-reports.php:1219 -#@ woocommerce -msgid "No sales :(" -msgstr "Ingen salg: (" - -#: admin/woocommerce-admin-reports.php:1362 -#@ woocommerce -msgid "Total orders containing coupons" -msgstr "Samlede ordrer indeholdende kuponer" - -#: admin/woocommerce-admin-reports.php:1368 -#@ woocommerce -msgid "Percent of orders containing coupons" -msgstr "Procent af ordrer indeholdende kuponer" - -#: admin/woocommerce-admin-reports.php:1374 -#@ woocommerce -msgid "Total coupon discount" -msgstr "Samlet kupon rabat" - -#: admin/woocommerce-admin-reports.php:1383 -#@ woocommerce -msgid "Most popular coupons" -msgstr "Mest populære kuponer" - -#: admin/woocommerce-admin-reports.php:1393 -#, php-format -#@ woocommerce -msgid "Used 1 time" -msgid_plural "Used %d times" -msgstr[0] "Bruges 1 gang" -msgstr[1] "Brugt %d gange" - -#: admin/woocommerce-admin-reports.php:1396 -#: admin/woocommerce-admin-reports.php:1418 -#@ woocommerce -msgid "No coupons found" -msgstr "Ingen kuponer fundet" - -#: admin/woocommerce-admin-reports.php:1405 -#@ woocommerce -msgid "Greatest discount amount" -msgstr "Største rabat beløb" - -#: admin/woocommerce-admin-reports.php:1415 -#, php-format -#@ woocommerce -msgid "Discounted %s" -msgstr "Rabat %s" - -#: admin/woocommerce-admin-reports.php:1474 -#: admin/woocommerce-admin-reports.php:2453 -#@ woocommerce -msgid "Show:" -msgstr "Vis:" - -#: admin/woocommerce-admin-reports.php:1614 -#@ woocommerce -msgid "Top coupon" -msgstr "Top kupon" - -#: admin/woocommerce-admin-reports.php:1622 -#@ woocommerce -msgid "Worst coupon" -msgstr "Værste kupon" - -#: admin/woocommerce-admin-reports.php:1630 -#@ woocommerce -msgid "Discount average" -msgstr "Rabat gennemsnit" - -#: admin/woocommerce-admin-reports.php:1638 -#@ woocommerce -msgid "Discount median" -msgstr "Discount median" - -#: admin/woocommerce-admin-reports.php:1658 -#@ woocommerce -msgid "Monthly discounts by coupon" -msgstr "Månedlige rabatter pr. kupon" - -#: admin/woocommerce-admin-reports.php:1808 -#@ woocommerce -msgid "Total customers" -msgstr "Samlet kunder" - -#: admin/woocommerce-admin-reports.php:1814 -#@ woocommerce -msgid "Total customer sales" -msgstr "Det samlede salg til kunder" - -#: admin/woocommerce-admin-reports.php:1820 -#@ woocommerce -msgid "Total guest sales" -msgstr "Samlet gæste salg" - -#: admin/woocommerce-admin-reports.php:1826 -#@ woocommerce -msgid "Total customer orders" -msgstr "Samlet kundeordrer" - -#: admin/woocommerce-admin-reports.php:1832 -#@ woocommerce -msgid "Total guest orders" -msgstr "Samlet gæste ordrer" - -#: admin/woocommerce-admin-reports.php:1838 -#@ woocommerce -msgid "Average orders per customer" -msgstr "Gennemsnitlige ordrer per kunde" - -#: admin/woocommerce-admin-reports.php:1846 -#@ woocommerce -msgid "Signups per day" -msgstr "Tilmeldinger per dag" - -#: admin/woocommerce-admin-reports.php:2067 -#@ woocommerce -msgid "Low stock" -msgstr "Lavt antal på lager" - -#: admin/woocommerce-admin-reports.php:2090 -#: admin/woocommerce-admin-reports.php:2129 -#, php-format -#@ woocommerce -msgid "%d in stock" -msgid_plural "%d in stock" -msgstr[0] "%d på lager" -msgstr[1] "%d på lager" - -#: admin/woocommerce-admin-reports.php:2095 -#@ woocommerce -msgid "No products are low in stock." -msgstr "Ingen produkter har lavt antal på lager." - -#: admin/woocommerce-admin-reports.php:2127 -#@ woocommerce -msgid "Marked out of stock" -msgstr "Markeret som ikke på lager" - -#: admin/woocommerce-admin-reports.php:2134 -#@ woocommerce -msgid "No products are out in stock." -msgstr "Ingen produkter er ikke på lager." - -#: admin/woocommerce-admin-reports.php:2298 -#@ woocommerce -msgid "Total taxes for year" -msgstr "Samlede skatter for året" - -#: admin/woocommerce-admin-reports.php:2309 -#@ woocommerce -msgid "Total product taxes for year" -msgstr "Samlede produkt skatter for året" - -#: admin/woocommerce-admin-reports.php:2320 -#@ woocommerce -msgid "Total shipping tax for year" -msgstr "Samlet fragt skat for året" - -#: admin/woocommerce-admin-reports.php:2336 -#@ woocommerce -msgid "Total Sales" -msgstr "Samlet salg" - -#: admin/woocommerce-admin-reports.php:2336 -#@ woocommerce -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "Det er summen af ​​feltet 'Order Total' inden i dine ordrer." - -#: admin/woocommerce-admin-reports.php:2337 -#@ woocommerce -msgid "Total Shipping" -msgstr "Samlet forsendelse" - -#: admin/woocommerce-admin-reports.php:2337 -#@ woocommerce -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "Det er summen af ​​feltet 'Fragt Total' i dine ordrer." - -#: admin/woocommerce-admin-reports.php:2338 -#@ woocommerce -msgid "Total Product Taxes" -msgstr "Samlede produkt Skatter" - -#: admin/woocommerce-admin-reports.php:2338 -#@ woocommerce -msgid "This is the sum of the 'Cart Tax' field within your orders." -msgstr "Det er summen af ​​feltet 'Indkøbskurv skat' i dine ordrer." - -#: admin/woocommerce-admin-reports.php:2339 -#@ woocommerce -msgid "Total Shipping Taxes" -msgstr "Samlet fragt Skatter" - -#: admin/woocommerce-admin-reports.php:2339 -#@ woocommerce -msgid "This is the sum of the 'Shipping Tax' field within your orders." -msgstr "Det er summen af ​​feltet 'Fragt skat' i dine ordrer." - -#: admin/woocommerce-admin-reports.php:2340 -#@ woocommerce -msgid "Total Taxes" -msgstr "Samlede skatter" - -#: admin/woocommerce-admin-reports.php:2340 -#@ woocommerce -msgid "This is the sum of the 'Cart Tax' and 'Shipping Tax' fields within your orders." -msgstr "This is the sum of the 'Cart Tax' and 'Shipping Tax' fields within your orders." - -#: admin/woocommerce-admin-reports.php:2341 -#@ woocommerce -msgid "Net profit" -msgstr "Nettoresultat" - -#: admin/woocommerce-admin-reports.php:2341 -#@ woocommerce -msgid "Total sales minus shipping and tax." -msgstr "Samlede salg minus fragt og moms." - -#: admin/woocommerce-admin-reports.php:2386 -#@ woocommerce -msgid "Toggle tax rows" -msgstr "Toggle tax rows" - -#: admin/woocommerce-admin-reports.php:2529 -#@ woocommerce -msgid "Category" -msgstr "Kategori" - -#: admin/woocommerce-admin-reports.php:2632 -#@ woocommerce -msgid "Top category" -msgstr "Top kategori" - -#: admin/woocommerce-admin-reports.php:2641 -#@ woocommerce -msgid "Worst category" -msgstr "Værste kategori" - -#: admin/woocommerce-admin-reports.php:2649 -#@ woocommerce -msgid "Category sales average" -msgstr "Kategori salg gennemsnit" - -#: admin/woocommerce-admin-reports.php:2660 -#@ woocommerce -msgid "Category sales median" -msgstr "Category sales median" - -#: admin/woocommerce-admin-reports.php:2680 -#@ woocommerce -msgid "Monthly sales by category" -msgstr "Månedlige salg pr kategori" - -#: admin/woocommerce-admin-settings.php:162 -#@ woocommerce -msgid "Your settings have been saved." -msgstr "Dine indstillinger er blevet gemt." - -#: admin/woocommerce-admin-settings.php:208 -#, php-format -#@ woocommerce -msgid "More functionality and gateway options available via WC official extensions." -msgstr "More functionality and gateway options available via WC official extensions." - -#: admin/woocommerce-admin-settings.php:226 -#@ woocommerce -msgid "Tax Rates" -msgstr "Afgiftssatser" - -#: admin/woocommerce-admin-settings.php:253 -#@ woocommerce -msgid "Email Options" -msgstr "E-mail-indstillinger" - -#: admin/woocommerce-admin-settings.php:427 -#@ woocommerce -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "De ændringer, du har foretaget, vil gå tabt, hvis du navigere væk fra denne side." - -#: admin/woocommerce-admin-settings.php:799 -#@ woocommerce -msgid "Hard Crop" -msgstr "Hard Crop" - -#: admin/woocommerce-admin-settings.php:824 -#@ woocommerce -msgid "Select a page…" -msgstr "Vælg en side…" - -#: admin/woocommerce-admin-settings.php:847 -#@ woocommerce -msgid "Choose a country…" -msgstr "Vælg et land…" - -#: admin/woocommerce-admin-settings.php:867 -#@ woocommerce -msgid "Choose countries…" -msgstr "Vælg lande…" - -#: admin/woocommerce-admin-status.php:27 -#: admin/woocommerce-admin-status.php:622 -#@ woocommerce -msgid "Tools" -msgstr "Værktøjer" - -#: admin/woocommerce-admin-status.php:62 -#@ woocommerce -msgid "Please include this information when requesting support:" -msgstr "Inkluder venligst disse oplysninger, når du kontakter support:" - -#: admin/woocommerce-admin-status.php:63 -#@ woocommerce -msgid "Download System Report File" -msgstr "Download System Raport Fil" - -#: admin/woocommerce-admin-status.php:71 -#@ woocommerce -msgid "Environment" -msgstr "Miljø" - -#: admin/woocommerce-admin-status.php:77 -#@ woocommerce -msgid "Home URL" -msgstr "Start-URL" - -#: admin/woocommerce-admin-status.php:81 -#@ woocommerce -msgid "Site URL" -msgstr "Site URL" - -#: admin/woocommerce-admin-status.php:85 -#@ woocommerce -msgid "WC Version" -msgstr "WC Version" - -#: admin/woocommerce-admin-status.php:89 -#@ woocommerce -msgid "WC Database Version" -msgstr "WC Database Version" - -#: admin/woocommerce-admin-status.php:93 -#@ woocommerce -msgid "WP Version" -msgstr "WP Version" - -#: admin/woocommerce-admin-status.php:97 -#@ woocommerce -msgid "Web Server Info" -msgstr "Web Server Info" - -#: admin/woocommerce-admin-status.php:101 -#@ woocommerce -msgid "PHP Version" -msgstr "PHP Version" - -#: admin/woocommerce-admin-status.php:105 -#@ woocommerce -msgid "MySQL Version" -msgstr "MySQL version" - -#: admin/woocommerce-admin-status.php:109 -#@ woocommerce -msgid "WP Memory Limit" -msgstr "WP Memory Limit" - -#: admin/woocommerce-admin-status.php:114 -#, php-format -#@ woocommerce -msgid "%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" - -#: admin/woocommerce-admin-status.php:121 -#@ woocommerce -msgid "WP Debug Mode" -msgstr "WP Debug mode" - -#: admin/woocommerce-admin-status.php:125 -#@ woocommerce -msgid "WP Max Upload Size" -msgstr "WP Max Upload Size" - -#: admin/woocommerce-admin-status.php:129 -#@ woocommerce -msgid "PHP Post Max Size" -msgstr "PHP Post Max Size" - -#: admin/woocommerce-admin-status.php:133 -#@ woocommerce -msgid "PHP Time Limit" -msgstr "PHP Time Limit" - -#: admin/woocommerce-admin-status.php:137 -#@ woocommerce -msgid "WC Logging" -msgstr "WC Logging" - -#: admin/woocommerce-admin-status.php:140 -#@ woocommerce -msgid "Log directory is writable." -msgstr "Log directory is writable." - -#: admin/woocommerce-admin-status.php:142 -#@ woocommerce -msgid "Log directory (woocommerce/logs/) is not writable. Logging will not be possible." -msgstr "Log directory (woocommerce/logs/) is not writable. Logging will not be possible." - -#: admin/woocommerce-admin-status.php:149 -#@ woocommerce -msgid "fsockopen/cURL" -msgstr "fsockopen/cURL" - -#: admin/woocommerce-admin-status.php:152 -#@ woocommerce -msgid "Your server has fsockopen and cURL enabled." -msgstr "Your server has fsockopen and cURL enabled." - -#: admin/woocommerce-admin-status.php:154 -#@ woocommerce -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "Your server has fsockopen enabled, cURL is disabled." - -#: admin/woocommerce-admin-status.php:156 -#@ woocommerce -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "Your server has cURL enabled, fsockopen is disabled." - -#: admin/woocommerce-admin-status.php:160 -#@ woocommerce -msgid "Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider." -msgstr "Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider." - -#: admin/woocommerce-admin-status.php:165 -#@ woocommerce -msgid "SOAP Client" -msgstr "SOAP Client" - -#: admin/woocommerce-admin-status.php:167 -#@ woocommerce -msgid "Your server has the SOAP Client class enabled." -msgstr "Your server has the SOAP Client class enabled." - -#: admin/woocommerce-admin-status.php:170 -#, php-format -#@ woocommerce -msgid "Your server does not have the SOAP Client class enabled - some gateway plugins which use SOAP may not work as expected." -msgstr "Your server does not have the SOAP Client class enabled - some gateway plugins which use SOAP may not work as expected." - -#: admin/woocommerce-admin-status.php:175 -#@ woocommerce -msgid "WP Remote Post" -msgstr "WP Remote Post" - -#: admin/woocommerce-admin-status.php:186 -#@ woocommerce -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "wp_remote_post() was successful - PayPal IPN is working." - -#: admin/woocommerce-admin-status.php:189 -#@ woocommerce -msgid "wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:" -msgstr "wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:" - -#: admin/woocommerce-admin-status.php:192 -#@ woocommerce -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "wp_remote_post() failed. PayPal IPN may not work with your server." - -#: admin/woocommerce-admin-status.php:215 -#@ woocommerce -msgid "Plugins" -msgstr "Plugins" - -#: admin/woocommerce-admin-status.php:221 -#@ woocommerce -msgid "Installed Plugins" -msgstr "Installed Plugins" - -#: admin/woocommerce-admin-status.php:236 -#@ woocommerce -msgid "by" -msgstr "af" - -#: admin/woocommerce-admin-status.php:236 -#@ woocommerce -msgid "version" -msgstr "udgave" - -#: admin/woocommerce-admin-status.php:259 -#@ woocommerce -msgid "Force SSL" -msgstr "Force SSL" - -#: admin/woocommerce-admin-status.php:266 -#@ woocommerce -msgid "WC Pages" -msgstr "WC Sider" - -#: admin/woocommerce-admin-status.php:273 -#@ woocommerce -msgid "Shop Base" -msgstr "Shop Base" - -#: admin/woocommerce-admin-status.php:289 -#@ woocommerce -msgid "Thanks" -msgstr "Tak" - -#: admin/woocommerce-admin-status.php:329 -#@ woocommerce -msgid "Page not set" -msgstr "Side ikke indstillet" - -#: admin/woocommerce-admin-status.php:339 -#@ woocommerce -msgid "Page does not exist" -msgstr "Side findes ikke" - -#: admin/woocommerce-admin-status.php:344 -#, php-format -#@ woocommerce -msgid "Page does not contain the shortcode: %s" -msgstr "Side indeholder ikke shortcode: %s" - -#: admin/woocommerce-admin-status.php:363 -#@ woocommerce -msgid "WC Taxonomies" -msgstr "WC Taxonomies" - -#: admin/woocommerce-admin-status.php:369 -#@ woocommerce -msgid "Order Statuses" -msgstr "Ordrestatusser" - -#: admin/woocommerce-admin-status.php:379 -#@ woocommerce -msgid "Product Types" -msgstr "Produkttyper" - -#: admin/woocommerce-admin-status.php:392 -#@ woocommerce -msgid "Templates" -msgstr "Skabeloner" - -#: admin/woocommerce-admin-status.php:398 -#@ woocommerce -msgid "Template Overrides" -msgstr "Template Overrides" - -#: admin/woocommerce-admin-status.php:416 -#@ woocommerce -msgid "No core overrides present in theme." -msgstr "No core overrides present in theme." - -#: admin/woocommerce-admin-status.php:510 -#@ woocommerce -msgid "WC Transients" -msgstr "WC Transients" - -#: admin/woocommerce-admin-status.php:511 -#@ woocommerce -msgid "Clear transients" -msgstr "Clear transients" - -#: admin/woocommerce-admin-status.php:512 -#@ woocommerce -msgid "This tool will clear the product/shop transients cache." -msgstr "This tool will clear the product/shop transients cache." - -#: admin/woocommerce-admin-status.php:515 -#@ woocommerce -msgid "Expired Transients" -msgstr "Expired Transients" - -#: admin/woocommerce-admin-status.php:516 -#@ woocommerce -msgid "Clear expired transients" -msgstr "Clear expired transients" - -#: admin/woocommerce-admin-status.php:517 -#@ woocommerce -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "This tool will clear ALL expired transients from Wordpress." - -#: admin/woocommerce-admin-status.php:520 -#@ woocommerce -msgid "Term counts" -msgstr "Term counts" - -#: admin/woocommerce-admin-status.php:521 -#@ woocommerce -msgid "Recount terms" -msgstr "Recount terms" - -#: admin/woocommerce-admin-status.php:522 -#@ woocommerce -msgid "This tool will recount product terms - useful when changing your settings in a way which hides products from the catalog." -msgstr "This tool will recount product terms - useful when changing your settings in a way which hides products from the catalog." - -#: admin/woocommerce-admin-status.php:525 -#@ woocommerce -msgid "Capabilities" -msgstr "Capabilities" - -#: admin/woocommerce-admin-status.php:526 -#@ woocommerce -msgid "Reset capabilities" -msgstr "Nulstil kapaciteter" - -#: admin/woocommerce-admin-status.php:527 -#@ woocommerce -msgid "This tool will reset the admin, customer and shop_manager roles to default. Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "This tool will reset the admin, customer and shop_manager roles to default. Use this if your users cannot access all of the WooCommerce admin pages." - -#: admin/woocommerce-admin-status.php:537 -#@ woocommerce -msgid "Product Transients Cleared" -msgstr "Product Transients Cleared" - -#: admin/woocommerce-admin-status.php:578 -#, php-format -#@ woocommerce -msgid "%d Transients Rows Cleared" -msgstr "%d Transients Rows Cleared" - -#: admin/woocommerce-admin-status.php:586 -#@ woocommerce -msgid "Roles successfully reset" -msgstr "Roles successfully reset" - -#: admin/woocommerce-admin-status.php:598 -#@ woocommerce -msgid "Terms successfully recounted" -msgstr "Terms successfully recounted" - -#: admin/woocommerce-admin-status.php:607 -#, php-format -#@ woocommerce -msgid "There was an error calling %s::%s" -msgstr "Der var en fejl ved %s::%s" - -#: admin/woocommerce-admin-status.php:610 -#, php-format -#@ woocommerce -msgid "There was an error calling %s" -msgstr "Der var en fejl at kalde %s" - -#: admin/woocommerce-admin-taxonomies.php:25 -#: admin/woocommerce-admin-taxonomies.php:118 -#@ woocommerce -msgid "Display type" -msgstr "Display type" - -#: admin/woocommerce-admin-taxonomies.php:29 -#: admin/woocommerce-admin-taxonomies.php:123 -#@ woocommerce -msgid "Subcategories" -msgstr "Underkategorier" - -#: admin/woocommerce-admin-taxonomies.php:30 -#: admin/woocommerce-admin-taxonomies.php:124 -#@ woocommerce -msgid "Both" -msgstr "Begge" - -#: admin/woocommerce-admin-taxonomies.php:34 -#: admin/woocommerce-admin-taxonomies.php:129 -#@ woocommerce -msgid "Thumbnail" -msgstr "Thumbnail" - -#: admin/woocommerce-admin-taxonomies.php:38 -#: admin/woocommerce-admin-taxonomies.php:134 -#@ woocommerce -msgid "Upload/Add image" -msgstr "Upload / Tilføj billede" - -#: admin/woocommerce-admin-taxonomies.php:39 -#: admin/woocommerce-admin-taxonomies.php:135 -#@ woocommerce -msgid "Remove image" -msgstr "Fjern billede" - -#: admin/woocommerce-admin-taxonomies.php:64 -#: admin/woocommerce-admin-taxonomies.php:156 -#@ woocommerce -msgid "Use image" -msgstr "Brug billede" - -#: admin/woocommerce-admin-taxonomies.php:222 -#@ woocommerce -msgid "Product categories for your store can be managed here. To change the order of categories on the front-end you can drag and drop to sort them. To see more categories listed click the \"screen options\" link at the top of the page." -msgstr "Produktkategorier til din butik kan styres her. Hvis du vil ændre rækkefølgen af ​​kategorier på front-end kan du trække og slippe for at sortere dem. Hvis du vil se flere kategorier, klik på \"screen options\" linket øverst på siden." - -#: admin/woocommerce-admin-taxonomies.php:237 -#@ woocommerce -msgid "Shipping classes can be used to group products of similar type. These groups can then be used by certain shipping methods to provide different rates to different products." -msgstr "Forsendelse klasser kan bruges til at gruppere produkter af samme type. Disse grupper kan derefter anvendes af disse fragt metoder for at give forskellige rater til forskellige produkter." - -#: admin/woocommerce-admin-taxonomies.php:365 -#@ woocommerce -msgid "Configure shipping class" -msgstr "Konfigurer fragt klasse" - -#: admin/woocommerce-admin-users.php:28 -#@ woocommerce -msgid "Paying Customer?" -msgstr "Betalende kunde?" - -#: admin/woocommerce-admin-users.php:29 -#@ woocommerce -msgid "Completed Orders" -msgstr "Fuldførte ordrer" - -#: admin/woocommerce-admin-users.php:144 -#@ woocommerce -msgid "Customer Billing Address" -msgstr "Kunde Faktureringsadresse" - -#: admin/woocommerce-admin-users.php:147 admin/woocommerce-admin-users.php:196 -#@ woocommerce -msgid "First name" -msgstr "Fornavn" - -#: admin/woocommerce-admin-users.php:151 admin/woocommerce-admin-users.php:200 -#@ woocommerce -msgid "Last name" -msgstr "Efternavn" - -#: admin/woocommerce-admin-users.php:176 -#@ woocommerce -msgid "Country or state code" -msgstr "Land eller stat kode" - -#: admin/woocommerce-admin-users.php:180 admin/woocommerce-admin-users.php:229 -#@ woocommerce -msgid "2 letter Country code" -msgstr "2 bogstaver for landekoden" - -#: admin/woocommerce-admin-users.php:183 -#@ woocommerce -msgid "Telephone" -msgstr "Telefon" - -#: admin/woocommerce-admin-users.php:193 -#@ woocommerce -msgid "Customer Shipping Address" -msgstr "Kundens leveringsadresse" - -#: admin/woocommerce-admin-users.php:225 -#@ woocommerce -msgid "State/County or state code" -msgstr "Stat / amt eller stat kode" - -#: classes/abstracts/abstract-wc-product.php:33 -#@ woocommerce -msgid "The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class directly." -msgstr "The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class directly." - -#: classes/class-wc-countries.php:58 -#@ woocommerce -msgid "Belau" -msgstr "Belau" - -#: classes/class-wc-coupon.php:420 -#@ woocommerce -msgid "Coupon code applied successfully." -msgstr "Kuponkode anvendt med succes." - -#: classes/class-wc-coupon.php:441 -#@ woocommerce -msgid "Coupon is not valid." -msgstr "Kupon er ikke gyldig." - -#: classes/class-wc-coupon.php:453 -#@ woocommerce -msgid "Coupon code already applied!" -msgstr "Kuponkode anvendes allerede!" - -#: classes/class-wc-coupon.php:456 -#, php-format -#@ woocommerce -msgid "Sorry, coupon \"%s\" has already been applied and cannot be used in conjunction with other coupons." -msgstr "Beklager, kupon \"%s\" er allerede blevet anvendt, og kan ikke anvendes sammen med andre kuponer." - -#: classes/class-wc-coupon.php:471 -#@ woocommerce -msgid "Sorry, this coupon is not valid for sale items." -msgstr "Beklager, denne kupon er ikke gyldig for varer på tilbud." - -#: classes/gateways/cod/class-wc-gateway-cod.php:97 -#: classes/gateways/cod/class-wc-gateway-cod.php:103 -#@ woocommerce -msgid "Pay with cash upon delivery." -msgstr "Betal med kontanter ved levering." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:148 -#@ woocommerce -msgid "Please enter a prefix for your invoice numbers. If you use your PayPal account for multiple stores ensure this prefix is unique as PayPal will not allow orders with the same invoice number." -msgstr "Please enter a prefix for your invoice numbers. If you use your PayPal account for multiple stores ensure this prefix is unique as PayPal will not allow orders with the same invoice number." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:165 -#@ woocommerce -msgid "Optional" -msgstr "Valgfri" - -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:23 -#@ woocommerce -msgid "Increase your social media exposure by 10 percent! ShareYourCart helps you get more customers by motivating satisfied customers to talk with their friends about your products. For help with ShareYourCart view the documentation." -msgstr "Increase your social media exposure by 10 percent! ShareYourCart helps you get more customers by motivating satisfied customers to talk with their friends about your products. For help with ShareYourCart view the documentation." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:176 -#@ woocommerce -msgid "Option Name|Cost|Per-order (yes or no)" -msgstr "Option Name|Cost|Per-order (yes or no)" - -#: i18n/states/HU.php:13 -#@ woocommerce -msgid "Bács-Kiskun" -msgstr "Bács-Kiskun" - -#: i18n/states/HU.php:14 -#@ woocommerce -msgid "Békés" -msgstr "Békés" - -#: i18n/states/HU.php:15 -#@ woocommerce -msgid "Baranya" -msgstr "Baranya" - -#: i18n/states/HU.php:16 -#@ woocommerce -msgid "Borsod-Abaúj-Zemplén" -msgstr "Borsod-Abaúj-Zemplén" - -#: i18n/states/HU.php:17 -#@ woocommerce -msgid "Budapest" -msgstr "Budapest" - -#: i18n/states/HU.php:18 -#@ woocommerce -msgid "Csongrád" -msgstr "Csongrád" - -#: i18n/states/HU.php:19 -#@ woocommerce -msgid "Fejér" -msgstr "Fejér" - -#: i18n/states/HU.php:20 -#@ woocommerce -msgid "Győr-Moson-Sopron" -msgstr "Győr-Moson-Sopron" - -#: i18n/states/HU.php:21 -#@ woocommerce -msgid "Hajdú-Bihar" -msgstr "Hajdú-Bihar" - -#: i18n/states/HU.php:22 -#@ woocommerce -msgid "Heves" -msgstr "Heves" - -#: i18n/states/HU.php:23 -#@ woocommerce -msgid "Jász-Nagykun-Szolnok" -msgstr "Jász-Nagykun-Szolnok" - -#: i18n/states/HU.php:24 -#@ woocommerce -msgid "Komárom-Esztergom" -msgstr "Komárom-Esztergom" - -#: i18n/states/HU.php:25 -#@ woocommerce -msgid "Nógrád" -msgstr "Nógrád" - -#: i18n/states/HU.php:26 -#@ woocommerce -msgid "Pest" -msgstr "Pest" - -#: i18n/states/HU.php:27 -#@ woocommerce -msgid "Somogy" -msgstr "Somogy" - -#: i18n/states/HU.php:28 -#@ woocommerce -msgid "Szabolcs-Szatmár-Bereg" -msgstr "Szabolcs-Szatmár-Bereg" - -#: i18n/states/HU.php:29 -#@ woocommerce -msgid "Tolna" -msgstr "Tolna" - -#: i18n/states/HU.php:30 -#@ woocommerce -msgid "Vas" -msgstr "Vas" - -#: i18n/states/HU.php:31 -#@ woocommerce -msgid "Veszprém" -msgstr "Veszprém" - -#: i18n/states/HU.php:32 -#@ woocommerce -msgid "Zala" -msgstr "Zala" - -#: i18n/states/ID.php:13 -#@ woocommerce -msgid "Daerah Istimewa Aceh" -msgstr "Daerah Istimewa Aceh" - -#: i18n/states/ID.php:14 -#@ woocommerce -msgid "Sumatera Utara" -msgstr "Sumatera Utara" - -#: i18n/states/ID.php:15 -#@ woocommerce -msgid "Sumatera Barat" -msgstr "Sumatera Barat" - -#: i18n/states/ID.php:16 -#@ woocommerce -msgid "Riau" -msgstr "Riau" - -#: i18n/states/ID.php:17 -#@ woocommerce -msgid "Kepulauan Riau" -msgstr "Kepulauan Riau" - -#: i18n/states/ID.php:18 -#@ woocommerce -msgid "Jambi" -msgstr "Jambi" - -#: i18n/states/ID.php:19 -#@ woocommerce -msgid "Sumatera Selatan" -msgstr "Sumatera Selatan" - -#: i18n/states/ID.php:20 -#@ woocommerce -msgid "Bangka Belitung" -msgstr "Bangka Belitung" - -#: i18n/states/ID.php:21 -#@ woocommerce -msgid "Bengkulu" -msgstr "Bengkulu" - -#: i18n/states/ID.php:22 -#@ woocommerce -msgid "Lampung" -msgstr "Lampung" - -#: i18n/states/ID.php:23 -#@ woocommerce -msgid "DKI Jakarta" -msgstr "DKI Jakarta" - -#: i18n/states/ID.php:24 -#@ woocommerce -msgid "Jawa Barat" -msgstr "Jawa Barat" - -#: i18n/states/ID.php:25 -#@ woocommerce -msgid "Banten" -msgstr "Banten" - -#: i18n/states/ID.php:26 -#@ woocommerce -msgid "Jawa Tengah" -msgstr "Jawa Tengah" - -#: i18n/states/ID.php:27 -#@ woocommerce -msgid "Jawa Timur" -msgstr "Jawa Timur" - -#: i18n/states/ID.php:28 -#@ woocommerce -msgid "Daerah Istimewa Yogyakarta" -msgstr "Daerah Istimewa Yogyakarta" - -#: i18n/states/ID.php:29 -#@ woocommerce -msgid "Bali" -msgstr "Bali" - -#: i18n/states/ID.php:30 -#@ woocommerce -msgid "Nusa Tenggara Barat" -msgstr "Nusa Tenggara Barat" - -#: i18n/states/ID.php:31 -#@ woocommerce -msgid "Nusa Tenggara Timur" -msgstr "Nusa Tenggara Timur" - -#: i18n/states/ID.php:32 -#@ woocommerce -msgid "Kalimantan Barat" -msgstr "Kalimantan Barat" - -#: i18n/states/ID.php:33 -#@ woocommerce -msgid "Kalimantan Tengah" -msgstr "Kalimantan Tengah" - -#: i18n/states/ID.php:34 -#@ woocommerce -msgid "Kalimantan Timur" -msgstr "Kalimantan Timur" - -#: i18n/states/ID.php:35 -#@ woocommerce -msgid "Kalimantan Selatan" -msgstr "Kalimantan Selatan" - -#: i18n/states/ID.php:36 -#@ woocommerce -msgid "Kalimantan Utara" -msgstr "Kalimantan Utara" - -#: i18n/states/ID.php:37 -#@ woocommerce -msgid "Sulawesi Utara" -msgstr "Sulawesi Utara" - -#: i18n/states/ID.php:38 -#@ woocommerce -msgid "Sulawesi Tengah" -msgstr "Sulawesi Tengah" - -#: i18n/states/ID.php:39 -#@ woocommerce -msgid "Sulawesi Tenggara" -msgstr "Sulawesi Tenggara" - -#: i18n/states/ID.php:40 -#@ woocommerce -msgid "Sulawesi Barat" -msgstr "Sulawesi Barat" - -#: i18n/states/ID.php:41 -#@ woocommerce -msgid "Sulawesi Selatan" -msgstr "Sulawesi Selatan" - -#: i18n/states/ID.php:42 -#@ woocommerce -msgid "Gorontalo" -msgstr "Gorontalo" - -#: i18n/states/ID.php:43 -#@ woocommerce -msgid "Maluku" -msgstr "Maluku" - -#: i18n/states/ID.php:44 -#@ woocommerce -msgid "Maluku Utara" -msgstr "Maluku Utara" - -#: i18n/states/ID.php:45 -#@ woocommerce -msgid "Papua" -msgstr "Papua" - -#: i18n/states/ID.php:46 -#@ woocommerce -msgid "Papua Barat" -msgstr "Papua Barat" - -#: i18n/states/US.php:72 -#@ woocommerce -msgid "US Virgin Islands" -msgstr "US Virgin Islands" - -#: templates/checkout/form-login.php:14 -#@ woocommerce -msgid "Returning customer?" -msgstr "Tilbagevendende kunde?" - -#: templates/loop/orderby.php:22 -#@ woocommerce -msgid "Sort by popularity" -msgstr "Sorter efter popularitet" - -#: templates/loop/orderby.php:23 -#@ woocommerce -msgid "Sort by average rating" -msgstr "Sorter efter gennemsnitlig bedømmelse" - -#: templates/loop/orderby.php:24 -#@ woocommerce -msgid "Sort by newness" -msgstr "Sorter efter nyeste" - -#: templates/loop/orderby.php:25 -#@ woocommerce -msgid "Sort by price: low to high" -msgstr "Sorter efter pris: lav til høj" - -#: templates/loop/orderby.php:26 -#@ woocommerce -msgid "Sort by price: high to low" -msgstr "Sorter efter pris: høj til lav" - -#: templates/myaccount/my-orders.php:62 -#, php-format -#@ woocommerce -msgid "%s for %s item" -msgid_plural "%s for %s items" -msgstr[0] "%s for %s emne" -msgstr[1] "%s for %s emner" - -#: templates/single-product-reviews.php:78 -#@ woocommerce -msgid "Add Your Review" -msgstr "Tilføj din anmeldelse" - -#: woocommerce-ajax.php:1172 -#@ woocommerce -msgid "No products had their stock reduced - they may not have stock management enabled." -msgstr "Ingen produkter fik deres lager reduceret - de må ikke have lagerstyring aktiveret." - -#: woocommerce-ajax.php:1223 -#@ woocommerce -msgid "No products had their stock increased - they may not have stock management enabled." -msgstr "Ingen produkter havde deres lager op justeret - de må ikke have lagerstyring aktiveret." - -#: woocommerce-core-functions.php:268 -#, php-format -#@ woocommerce -msgid "%s – %s%s" -msgstr "%s – %s%s" - -#: woocommerce-core-functions.php:675 -#@ woocommerce -msgid "Australian Dollars" -msgstr "Australian Dollars" - -#: woocommerce-core-functions.php:676 -#@ woocommerce -msgid "Brazilian Real" -msgstr "Brazilian Real" - -#: woocommerce-core-functions.php:677 -#@ woocommerce -msgid "Canadian Dollars" -msgstr "Canadian Dollars" - -#: woocommerce-core-functions.php:678 -#@ woocommerce -msgid "Chinese Yuan" -msgstr "Chinese Yuan" - -#: woocommerce-core-functions.php:679 -#@ woocommerce -msgid "Czech Koruna" -msgstr "Czech Koruna" - -#: woocommerce-core-functions.php:680 -#@ woocommerce -msgid "Danish Krone" -msgstr "Danske kroner" - -#: woocommerce-core-functions.php:681 -#@ woocommerce -msgid "Euros" -msgstr "Euro" - -#: woocommerce-core-functions.php:682 -#@ woocommerce -msgid "Hong Kong Dollar" -msgstr "Hong Kong Dollar" - -#: woocommerce-core-functions.php:683 -#@ woocommerce -msgid "Hungarian Forint" -msgstr "Hungarian Forint" - -#: woocommerce-core-functions.php:684 -#@ woocommerce -msgid "Indonesia Rupiah" -msgstr "Indonesia Rupiah" - -#: woocommerce-core-functions.php:685 -#@ woocommerce -msgid "Israeli Shekel" -msgstr "Israeli Shekel" - -#: woocommerce-core-functions.php:686 -#@ woocommerce -msgid "Japanese Yen" -msgstr "Japanese Yen" - -#: woocommerce-core-functions.php:687 -#@ woocommerce -msgid "Malaysian Ringgits" -msgstr "Malaysian Ringgits" - -#: woocommerce-core-functions.php:688 -#@ woocommerce -msgid "Mexican Peso" -msgstr "Mexican Peso" - -#: woocommerce-core-functions.php:689 -#@ woocommerce -msgid "Norwegian Krone" -msgstr "Norske Krone" - -#: woocommerce-core-functions.php:690 -#@ woocommerce -msgid "New Zealand Dollar" -msgstr "New Zealand dollar" - -#: woocommerce-core-functions.php:691 -#@ woocommerce -msgid "Philippine Pesos" -msgstr "Philippine Pesos" - -#: woocommerce-core-functions.php:692 -#@ woocommerce -msgid "Polish Zloty" -msgstr "Polish Zloty" - -#: woocommerce-core-functions.php:693 -#@ woocommerce -msgid "Pounds Sterling" -msgstr "Pounds Sterling" - -#: woocommerce-core-functions.php:694 -#@ woocommerce -msgid "Romanian Leu" -msgstr "Romanian Leu" - -#: woocommerce-core-functions.php:695 -#@ woocommerce -msgid "Singapore Dollar" -msgstr "Singapore Dollar" - -#: woocommerce-core-functions.php:696 -#@ woocommerce -msgid "South African rand" -msgstr "South African rand" - -#: woocommerce-core-functions.php:697 -#@ woocommerce -msgid "Swedish Krona" -msgstr "Swedish Krona" - -#: woocommerce-core-functions.php:698 -#@ woocommerce -msgid "Swiss Franc" -msgstr "Swiss Franc" - -#: woocommerce-core-functions.php:699 -#@ woocommerce -msgid "Taiwan New Dollars" -msgstr "Taiwan New Dollars" - -#: woocommerce-core-functions.php:700 -#@ woocommerce -msgid "Thai Baht" -msgstr "Thai Baht" - -#: woocommerce-core-functions.php:701 -#@ woocommerce -msgid "Turkish Lira" -msgstr "Turkish Lira" - -#: woocommerce-core-functions.php:702 -#@ woocommerce -msgid "US Dollars" -msgstr "US Dollars" - -#: woocommerce-functions.php:996 -#@ woocommerce -msgid "No file defined" -msgstr "Ingen fil defineret" - -#: woocommerce-functions.php:1575 -#@ woocommerce -msgid "Password changed successfully." -msgstr "Password ændret." - -#: woocommerce-functions.php:1651 -#@ woocommerce -msgid "Address changed successfully." -msgstr "Adresse ændret." - -#: woocommerce-template.php:764 -#, php-format -#@ woocommerce -msgid "Reviews (%d)" -msgstr "Anmeldelser (%d)" - -#. translators: plugin header field 'PluginURI' -#: woocommerce.php:0 -#@ woocommerce -msgid "http://www.woothemes.com/woocommerce/" -msgstr "http://www.woothemes.com/woocommerce/" - -#. translators: plugin header field 'Description' -#: woocommerce.php:0 -#@ woocommerce -msgid "An e-commerce toolkit that helps you sell anything. Beautifully." -msgstr "En e-handel toolkit, der hjælper dig med at sælge noget. Smukt." - -#. translators: plugin header field 'Author' -#: woocommerce.php:0 -#@ woocommerce -msgid "WooThemes" -msgstr "WooThemes" - -#. translators: plugin header field 'AuthorURI' -#: woocommerce.php:0 -#@ woocommerce -msgid "http://woothemes.com" -msgstr "http://woothemes.com" - -#. translators: plugin header field 'Version' -#: woocommerce.php:0 -#@ woocommerce -msgid "2.0.0" -msgstr "2.0.0" - diff --git a/i18n/languages/woocommerce-de_CH.mo b/i18n/languages/woocommerce-de_CH.mo deleted file mode 100644 index 37566417960..00000000000 Binary files a/i18n/languages/woocommerce-de_CH.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-de_CH.po b/i18n/languages/woocommerce-de_CH.po deleted file mode 100644 index ff2b52acb9f..00000000000 --- a/i18n/languages/woocommerce-de_CH.po +++ /dev/null @@ -1,6932 +0,0 @@ -# Translation of WooCommerce Core in German -# This file is distributed under the same license as the WooCommerce Core package. -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce 2.0.9 Admin\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-05-10 11:38:26+00:00\n" -"PO-Revision-Date: 2013-06-06 19:35+0100\n" -"Last-Translator: Birgit Olzem \n" -"Language-Team: Inpsyde GmbH \n" -"Language: german\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Poedit 1.5.5\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2\n" -"X-Poedit-Basepath: ../../../\n" - -#: classes/widgets/class-wc-widget-random-products.php:46 -msgid "Random Products" -msgstr "Zufällige Produkte" - -#: classes/widgets/class-wc-widget-random-products.php:145 -#: classes/widgets/class-wc-widget-recent-products.php:177 -msgid "Show hidden product variations" -msgstr "Zeige versteckte Produktvarianten" - -#: classes/widgets/class-wc-widget-recent-products.php:31 -msgid "Display a list of your most recent products on your site." -msgstr "" -"Zeigt eine Liste der erst kürzlich erschienenen Produkte auf Ihrer Seite an." - -#: classes/widgets/class-wc-widget-recent-products.php:33 -msgid "WooCommerce Recent Products" -msgstr "WooCommerce Neueste Produkte" - -#: classes/widgets/class-wc-widget-recent-products.php:70 -msgid "New Products" -msgstr "Neue Produkte" - -#: classes/widgets/class-wc-widget-recent-reviews.php:31 -msgid "Display a list of your most recent reviews on your site." -msgstr "" -"Stellt eine Übersicht der kürzlich abgegebenen Rezensionen auf Ihrer Seite " -"bereit." - -#: classes/widgets/class-wc-widget-recent-reviews.php:33 -msgid "WooCommerce Recent Reviews" -msgstr "WooCommerce Neueste Bewertungen" - -#: classes/widgets/class-wc-widget-recent-reviews.php:71 -msgid "Recent Reviews" -msgstr "Neue Bewertungen" - -#: classes/widgets/class-wc-widget-recent-reviews.php:97 -msgctxt "by comment author" -msgid "by %1$s" -msgstr "von %1$s" - -#: classes/widgets/class-wc-widget-recently-viewed.php:31 -msgid "Display a list of recently viewed products." -msgstr "Gib eine Liste der kürzlich angesehenen Produkte aus." - -#: classes/widgets/class-wc-widget-recently-viewed.php:33 -msgid "WooCommerce Recently Viewed Products" -msgstr "WooCommerce Produktverlauf" - -#: classes/widgets/class-wc-widget-recently-viewed.php:76 -msgid "Recently viewed" -msgstr "Zuletzt angesehen" - -#: classes/widgets/class-wc-widget-top-rated-products.php:33 -msgid "Display a list of top rated products on your site." -msgstr "Zeige eine Liste der als am besten bewerteten Produkte an." - -#: classes/widgets/class-wc-widget-top-rated-products.php:35 -msgid "WooCommerce Top Rated Products" -msgstr "WooCommerce Bestbewertete Produkte" - -#: classes/widgets/class-wc-widget-top-rated-products.php:72 -msgid "Top Rated Products" -msgstr "Bestbewertete Produkte" - -#: i18n/states/AU.php:13 -msgid "Australian Capital Territory" -msgstr "Australisches Hauptstadtterritorium" - -#: i18n/states/AU.php:14 -msgid "New South Wales" -msgstr "Neusüdwales" - -#: i18n/states/AU.php:15 -msgid "Northern Territory" -msgstr "Nordterritorium" - -#: i18n/states/AU.php:16 -msgid "Queensland" -msgstr "Queensland" - -#: i18n/states/AU.php:17 -msgid "South Australia" -msgstr "Südaustralien" - -#: i18n/states/AU.php:18 -msgid "Tasmania" -msgstr "Tasmanien" - -#: i18n/states/AU.php:19 -msgid "Victoria" -msgstr "Victoria" - -#: i18n/states/AU.php:20 -msgid "Western Australia" -msgstr "Westaustralien" - -#: i18n/states/BR.php:13 -msgid "Acre" -msgstr "Acre" - -#: i18n/states/BR.php:14 -msgid "Alagoas" -msgstr "Alagoas" - -#: i18n/states/BR.php:15 -msgid "Amapá" -msgstr "Amapá" - -#: i18n/states/BR.php:16 -msgid "Amazonas" -msgstr "Amazonas" - -#: i18n/states/BR.php:17 -msgid "Bahia" -msgstr "Bahia" - -#: i18n/states/BR.php:18 -msgid "Ceará" -msgstr "Ceará" - -#: i18n/states/BR.php:19 -msgid "Distrito Federal" -msgstr "Distrito Federal" - -#: i18n/states/BR.php:20 -msgid "Espírito Santo" -msgstr "Espírito Santo" - -#: i18n/states/BR.php:21 -msgid "Goiás" -msgstr "Goiás" - -#: i18n/states/BR.php:22 -msgid "Maranhão" -msgstr "Maranhão" - -#: i18n/states/BR.php:23 -msgid "Mato Grosso" -msgstr "Mato Grosso" - -#: i18n/states/BR.php:24 -msgid "Mato Grosso do Sul" -msgstr "Mato Grosso do Sul" - -#: i18n/states/BR.php:25 -msgid "Minas Gerais" -msgstr "Minas Gerais" - -#: i18n/states/BR.php:26 -msgid "Pará" -msgstr "Pará" - -#: i18n/states/BR.php:27 -msgid "Paraíba" -msgstr "Paraíba" - -#: i18n/states/BR.php:28 -msgid "Paraná" -msgstr "Paraná" - -#: i18n/states/BR.php:29 -msgid "Pernambuco" -msgstr "Pernambuco" - -#: i18n/states/BR.php:30 -msgid "Piauí" -msgstr "Piauí" - -#: i18n/states/BR.php:31 -msgid "Rio de Janeiro" -msgstr "Rio de Janeiro" - -#: i18n/states/BR.php:32 -msgid "Rio Grande do Norte" -msgstr "Rio Grande do Norte" - -#: i18n/states/BR.php:33 -msgid "Rio Grande do Sul" -msgstr "Rio Grande do Sul" - -#: i18n/states/BR.php:34 -msgid "Rondônia" -msgstr "Rondônia" - -#: i18n/states/BR.php:35 -msgid "Roraima" -msgstr "Roraima" - -#: i18n/states/BR.php:36 -msgid "Santa Catarina" -msgstr "Santa Catarina" - -#: i18n/states/BR.php:37 -msgid "São Paulo" -msgstr "São Paulo" - -#: i18n/states/BR.php:38 -msgid "Sergipe" -msgstr "Sergipe" - -#: i18n/states/BR.php:39 -msgid "Tocantins" -msgstr "Tocantins" - -#: i18n/states/CA.php:13 -msgid "Alberta" -msgstr "Alberta" - -#: i18n/states/CA.php:14 -msgid "British Columbia" -msgstr "Britisch-Kolumbien" - -#: i18n/states/CA.php:15 -msgid "Manitoba" -msgstr "Manitoba" - -#: i18n/states/CA.php:16 -msgid "New Brunswick" -msgstr "New Brunswick" - -#: i18n/states/CA.php:17 -msgid "Newfoundland" -msgstr "Neufundland" - -#: i18n/states/CA.php:18 -msgid "Northwest Territories" -msgstr "Nordwest-Territorien" - -#: i18n/states/CA.php:19 -msgid "Nova Scotia" -msgstr "Neuschottland" - -#: i18n/states/CA.php:20 -msgid "Nunavut" -msgstr "Nunavut" - -#: i18n/states/CA.php:21 -msgid "Ontario" -msgstr "Ontario" - -#: i18n/states/CA.php:22 -msgid "Prince Edward Island" -msgstr "Prinz-Edward-Insel" - -#: i18n/states/CA.php:23 -msgid "Quebec" -msgstr "Quebec" - -#: i18n/states/CA.php:24 -msgid "Saskatchewan" -msgstr "Saskatchewan" - -#: i18n/states/CA.php:25 -msgid "Yukon Territory" -msgstr "Yukon" - -#: i18n/states/CN.php:13 -msgid "Yunnan / 云南" -msgstr "Yunnan / 云南" - -#: i18n/states/CN.php:14 -msgid "Beijing / 北京" -msgstr "Peking (Beijing) / 北京" - -#: i18n/states/CN.php:15 -msgid "Tianjin / 天津" -msgstr "Tianjin / 天津" - -#: i18n/states/CN.php:16 -msgid "Hebei / 河北" -msgstr "Hebei / 河北" - -#: i18n/states/CN.php:17 -msgid "Shanxi / 山西" -msgstr "Shanxi / 山西" - -#: i18n/states/CN.php:18 -msgid "Inner Mongolia / 內蒙古" -msgstr "Innere Mongolei / 內蒙古" - -#: i18n/states/CN.php:19 -msgid "Liaoning / 辽宁" -msgstr "Liaoning / 辽宁" - -#: i18n/states/CN.php:20 -msgid "Jilin / 吉林" -msgstr "Jilin / 吉林" - -#: i18n/states/CN.php:21 -msgid "Heilongjiang / 黑龙江" -msgstr "Heilongjiang / 黑龙江" - -#: i18n/states/CN.php:22 -msgid "Shanghai / 上海" -msgstr "Shanghai / 上海" - -#: i18n/states/CN.php:23 -msgid "Jiangsu / 江苏" -msgstr "Jiangsu / 江苏" - -#: i18n/states/CN.php:24 -msgid "Zhejiang / 浙江" -msgstr "Zhejiang / 浙江" - -#: i18n/states/CN.php:25 -msgid "Anhui / 安徽" -msgstr "Anhui / 安徽" - -#: i18n/states/CN.php:26 -msgid "Fujian / 福建" -msgstr "Fujian / 福建" - -#: i18n/states/CN.php:27 -msgid "Jiangxi / 江西" -msgstr "Jiangxi / 江西" - -#: i18n/states/CN.php:28 -msgid "Shandong / 山东" -msgstr "Shandong / 山东" - -#: i18n/states/CN.php:29 -msgid "Henan / 河南" -msgstr "Henan / 河南" - -#: i18n/states/CN.php:30 -msgid "Hubei / 湖北" -msgstr "Hubei / 湖北" - -#: i18n/states/CN.php:31 -msgid "Hunan / 湖南" -msgstr "Hunan / 湖南" - -#: i18n/states/CN.php:32 -msgid "Guangdong / 广东" -msgstr "Guangdong / 广东" - -#: i18n/states/CN.php:33 -msgid "Guangxi Zhuang / 广西壮族" -msgstr "Guangxi Zhuang / 广西壮族" - -#: i18n/states/CN.php:34 -msgid "Hainan / 海南" -msgstr "Hainan / 海南" - -#: i18n/states/CN.php:35 -msgid "Chongqing / 重庆" -msgstr "Chongqing / 重庆" - -#: i18n/states/CN.php:36 -msgid "Sichuan / 四川" -msgstr "Sichuan / 四川" - -#: i18n/states/CN.php:37 -msgid "Guizhou / 贵州" -msgstr "Guizhou / 贵州" - -#: i18n/states/CN.php:38 -msgid "Shaanxi / 陕西" -msgstr "Shaanxi / 陕西" - -#: i18n/states/CN.php:39 -msgid "Gansu / 甘肃" -msgstr "Gansu / 甘肃" - -#: i18n/states/CN.php:40 -msgid "Qinghai / 青海" -msgstr "Qinghai / 青海" - -#: i18n/states/CN.php:41 -msgid "Ningxia Hui / 宁夏" -msgstr "Ningxia Hui / 宁夏" - -#: i18n/states/CN.php:42 -msgid "Macau / 澳门" -msgstr "Macau / 澳门" - -#: i18n/states/CN.php:43 -msgid "Tibet / 西藏" -msgstr "Tibet / 西藏" - -#: i18n/states/CN.php:44 -msgid "Xinjiang / 新疆" -msgstr "Xinjiang / 新疆" - -#: i18n/states/HK.php:13 -msgid "Hong Kong Island" -msgstr "Hong Kong Island" - -#: i18n/states/HK.php:14 -msgid "Kowloon" -msgstr "Kowloon" - -#: i18n/states/HK.php:15 -msgid "New Territories" -msgstr "New Territories" - -#: i18n/states/HU.php:13 -msgid "Bács-Kiskun" -msgstr "Bács-Kiskun" - -#: i18n/states/HU.php:14 -msgid "Békés" -msgstr "Békés" - -#: i18n/states/HU.php:15 -msgid "Baranya" -msgstr "Baranya" - -#: i18n/states/HU.php:16 -msgid "Borsod-Abaúj-Zemplén" -msgstr "Borsod-Abaúj-Zemplén" - -#: i18n/states/HU.php:17 -msgid "Budapest" -msgstr "Budapest" - -#: i18n/states/HU.php:18 -msgid "Csongrád" -msgstr "Csongrád" - -#: i18n/states/HU.php:19 -msgid "Fejér" -msgstr "Fejér" - -#: i18n/states/HU.php:20 -msgid "Győr-Moson-Sopron" -msgstr "Győr-Moson-Sopron" - -#: i18n/states/HU.php:21 -msgid "Hajdú-Bihar" -msgstr "Hajdú-Bihar" - -#: i18n/states/HU.php:22 -msgid "Heves" -msgstr "Heves" - -#: i18n/states/HU.php:23 -msgid "Jász-Nagykun-Szolnok" -msgstr "Jász-Nagykun-Szolnok" - -#: i18n/states/HU.php:24 -msgid "Komárom-Esztergom" -msgstr "Komárom-Esztergom" - -#: i18n/states/HU.php:25 -msgid "Nógrád" -msgstr "Nógrád" - -#: i18n/states/HU.php:26 -msgid "Pest" -msgstr "Pest" - -#: i18n/states/HU.php:27 -msgid "Somogy" -msgstr "Somogy" - -#: i18n/states/HU.php:28 -msgid "Szabolcs-Szatmár-Bereg" -msgstr "Szabolcs-Szatmár-Bereg" - -#: i18n/states/HU.php:29 -msgid "Tolna" -msgstr "Tolna" - -#: i18n/states/HU.php:30 -msgid "Vas" -msgstr "Vas" - -#: i18n/states/HU.php:31 -msgid "Veszprém" -msgstr "Veszprém" - -#: i18n/states/HU.php:32 -msgid "Zala" -msgstr "Zala" - -#: i18n/states/HZ.php:13 i18n/states/NZ.php:14 -msgid "Auckland" -msgstr "Auckland" - -#: i18n/states/HZ.php:14 i18n/states/NZ.php:16 -msgid "Bay of Plenty" -msgstr "Bay of Plenty" - -#: i18n/states/HZ.php:15 i18n/states/NZ.php:25 -msgid "Canterbury" -msgstr "Canterbury" - -#: i18n/states/HZ.php:16 i18n/states/NZ.php:18 -msgid "Hawke’s Bay" -msgstr "Hawke’s Bay" - -#: i18n/states/HZ.php:17 i18n/states/NZ.php:19 -msgid "Manawatu-Wanganui" -msgstr "Manawatu-Wanganui" - -#: i18n/states/HZ.php:18 i18n/states/NZ.php:22 -msgid "Marlborough" -msgstr "Marlborough" - -#: i18n/states/HZ.php:19 i18n/states/NZ.php:21 -msgid "Nelson" -msgstr "Nelson" - -#: i18n/states/HZ.php:20 i18n/states/NZ.php:13 -msgid "Northland" -msgstr "Northland" - -#: i18n/states/HZ.php:21 i18n/states/NZ.php:26 -msgid "Otago" -msgstr "Otago" - -#: i18n/states/HZ.php:22 i18n/states/NZ.php:27 -msgid "Southland" -msgstr "Southland" - -#: i18n/states/HZ.php:23 i18n/states/NZ.php:17 -msgid "Taranaki" -msgstr "Taranaki" - -#: i18n/states/HZ.php:24 i18n/states/NZ.php:23 -msgid "Tasman" -msgstr "Tasman" - -#: i18n/states/HZ.php:25 i18n/states/NZ.php:15 -msgid "Waikato" -msgstr "Waikato" - -#: i18n/states/HZ.php:26 i18n/states/NZ.php:20 -msgid "Wellington" -msgstr "Wellington" - -#: i18n/states/HZ.php:27 i18n/states/NZ.php:24 -msgid "West Coast" -msgstr "West Coast" - -#: i18n/states/ID.php:13 -msgid "Daerah Istimewa Aceh" -msgstr "Daerah Istimewa Aceh" - -#: i18n/states/ID.php:14 -msgid "Sumatera Utara" -msgstr "Sumatera Utara" - -#: i18n/states/ID.php:15 -msgid "Sumatera Barat" -msgstr "Sumatera Barat" - -#: i18n/states/ID.php:16 -msgid "Riau" -msgstr "Riau" - -#: i18n/states/ID.php:17 -msgid "Kepulauan Riau" -msgstr "Kepulauan Riau" - -#: i18n/states/ID.php:18 -msgid "Jambi" -msgstr "Jambi" - -#: i18n/states/ID.php:19 -msgid "Sumatera Selatan" -msgstr "Sumatera Selatan" - -#: i18n/states/ID.php:20 -msgid "Bangka Belitung" -msgstr "Bangka Belitung" - -#: i18n/states/ID.php:21 -msgid "Bengkulu" -msgstr "Bengkulu" - -#: i18n/states/ID.php:22 -msgid "Lampung" -msgstr "Lampung" - -#: i18n/states/ID.php:23 -msgid "DKI Jakarta" -msgstr "DKI Jakarta" - -#: i18n/states/ID.php:24 -msgid "Jawa Barat" -msgstr "Jawa Barat" - -#: i18n/states/ID.php:25 -msgid "Banten" -msgstr "Banten" - -#: i18n/states/ID.php:26 -msgid "Jawa Tengah" -msgstr "Jawa Tengah" - -#: i18n/states/ID.php:27 -msgid "Jawa Timur" -msgstr "Jawa Timur" - -#: i18n/states/ID.php:28 -msgid "Daerah Istimewa Yogyakarta" -msgstr "Daerah Istimewa Yogyakarta" - -#: i18n/states/ID.php:29 -msgid "Bali" -msgstr "Bali" - -#: i18n/states/ID.php:30 -msgid "Nusa Tenggara Barat" -msgstr "Nusa Tenggara Barat" - -#: i18n/states/ID.php:31 -msgid "Nusa Tenggara Timur" -msgstr "Nusa Tenggara Timur" - -#: i18n/states/ID.php:32 -msgid "Kalimantan Barat" -msgstr "Kalimantan Barat" - -#: i18n/states/ID.php:33 -msgid "Kalimantan Tengah" -msgstr "Kalimantan Tengah" - -#: i18n/states/ID.php:34 -msgid "Kalimantan Timur" -msgstr "Kalimantan Timur" - -#: i18n/states/ID.php:35 -msgid "Kalimantan Selatan" -msgstr "Kalimantan Selatan" - -#: i18n/states/ID.php:36 -msgid "Kalimantan Utara" -msgstr "Kalimantan Utara" - -#: i18n/states/ID.php:37 -msgid "Sulawesi Utara" -msgstr "Sulawesi Utara" - -#: i18n/states/ID.php:38 -msgid "Sulawesi Tengah" -msgstr "Sulawesi Tengah" - -#: i18n/states/ID.php:39 -msgid "Sulawesi Tenggara" -msgstr "Sulawesi Tenggara" - -#: i18n/states/ID.php:40 -msgid "Sulawesi Barat" -msgstr "Sulawesi Barat" - -#: i18n/states/ID.php:41 -msgid "Sulawesi Selatan" -msgstr "Sulawesi Selatan" - -#: i18n/states/ID.php:42 -msgid "Gorontalo" -msgstr "Gorontalo" - -#: i18n/states/ID.php:43 -msgid "Maluku" -msgstr "Maluku" - -#: i18n/states/ID.php:44 -msgid "Maluku Utara" -msgstr "Maluku Utara" - -#: i18n/states/ID.php:45 -msgid "Papua" -msgstr "Papua" - -#: i18n/states/ID.php:46 -msgid "Papua Barat" -msgstr "Papua Barat" - -#: i18n/states/IN.php:13 -msgid "Andra Pradesh" -msgstr "Andra Pradesh" - -#: i18n/states/IN.php:14 -msgid "Arunachal Pradesh" -msgstr "Arunachal Pradesh" - -#: i18n/states/IN.php:15 -msgid "Assam" -msgstr "Assam" - -#: i18n/states/IN.php:16 -msgid "Bihar" -msgstr "Bihar" - -#: i18n/states/IN.php:17 -msgid "Chhattisgarh" -msgstr "Chhattisgarh" - -#: i18n/states/IN.php:18 -msgid "Goa" -msgstr "Goa" - -#: i18n/states/IN.php:19 -msgid "Gujarat" -msgstr "Gujarat" - -#: i18n/states/IN.php:20 -msgid "Haryana" -msgstr "Haryana" - -#: i18n/states/IN.php:21 -msgid "Himachal Pradesh" -msgstr "Himachal Pradesh" - -#: i18n/states/IN.php:22 -msgid "Jammu and Kashmir" -msgstr "Jammu and Kashmir" - -#: i18n/states/IN.php:23 -msgid "Jharkhand" -msgstr "Jharkhand" - -#: i18n/states/IN.php:24 -msgid "Karnataka" -msgstr "Karnataka" - -#: i18n/states/IN.php:25 -msgid "Kerala" -msgstr "Kerala" - -#: i18n/states/IN.php:26 -msgid "Madhya Pradesh" -msgstr "Madhya Pradesh" - -#: i18n/states/IN.php:27 -msgid "Maharashtra" -msgstr "Maharashtra" - -#: i18n/states/IN.php:28 -msgid "Manipur" -msgstr "Manipur" - -#: i18n/states/IN.php:29 -msgid "Meghalaya" -msgstr "Meghalaya" - -#: i18n/states/IN.php:30 -msgid "Mizoram" -msgstr "Mizoram" - -#: i18n/states/IN.php:31 -msgid "Nagaland" -msgstr "Nagaland" - -#: i18n/states/IN.php:32 -msgid "Orissa" -msgstr "Orissa" - -#: i18n/states/IN.php:33 -msgid "Punjab" -msgstr "Punjab" - -#: i18n/states/IN.php:34 -msgid "Rajasthan" -msgstr "Rajasthan" - -#: i18n/states/IN.php:35 -msgid "Sikkim" -msgstr "Sikkim" - -#: i18n/states/IN.php:36 -msgid "Tamil Nadu" -msgstr "Tamil Nadu" - -#: i18n/states/IN.php:37 -msgid "Tripura" -msgstr "Tripura" - -#: i18n/states/IN.php:38 -msgid "Uttaranchal" -msgstr "Uttaranchal" - -#: i18n/states/IN.php:39 -msgid "Uttar Pradesh" -msgstr "Uttar Pradesh" - -#: i18n/states/IN.php:40 -msgid "West Bengal" -msgstr "West Bengal" - -#: i18n/states/IN.php:41 -msgid "Andaman and Nicobar Islands" -msgstr "Andaman and Nicobar Islands" - -#: i18n/states/IN.php:42 -msgid "Chandigarh" -msgstr "Chandigarh" - -#: i18n/states/IN.php:43 -msgid "Dadar and Nagar Haveli" -msgstr "Dadar and Nagar Haveli" - -#: i18n/states/IN.php:44 -msgid "Daman and Diu" -msgstr "Daman and Diu" - -#: i18n/states/IN.php:45 -msgid "Delhi" -msgstr "Delhi" - -#: i18n/states/IN.php:46 -msgid "Lakshadeep" -msgstr "Lakshadeep" - -#: i18n/states/IN.php:47 -msgid "Pondicherry (Puducherry)" -msgstr "Pondicherry (Puducherry)" - -#: i18n/states/MY.php:13 -msgid "Johor" -msgstr "Johor" - -#: i18n/states/MY.php:14 -msgid "Kedah" -msgstr "Kedah" - -#: i18n/states/MY.php:15 -msgid "Kelantan" -msgstr "Kelantan" - -#: i18n/states/MY.php:16 -msgid "Melaka" -msgstr "Melaka" - -#: i18n/states/MY.php:17 -msgid "Negeri Sembilan" -msgstr "Negeri Sembilan" - -#: i18n/states/MY.php:18 -msgid "Pahang" -msgstr "Pahang" - -#: i18n/states/MY.php:19 -msgid "Perak" -msgstr "Perak" - -#: i18n/states/MY.php:20 -msgid "Perlis" -msgstr "Perlis" - -#: i18n/states/MY.php:21 -msgid "Pulau Pinang" -msgstr "Pulau Pinang" - -#: i18n/states/MY.php:22 -msgid "Sabah" -msgstr "Sabah" - -#: i18n/states/MY.php:23 -msgid "Sarawak" -msgstr "Sarawak" - -#: i18n/states/MY.php:24 -msgid "Selangor" -msgstr "Selangor" - -#: i18n/states/MY.php:25 -msgid "Terengganu" -msgstr "Terengganu" - -#: i18n/states/MY.php:26 -msgid "W.P. Kuala Lumpur" -msgstr "W.P. Kuala Lumpur" - -#: i18n/states/MY.php:27 -msgid "W.P. Labuan" -msgstr "W.P. Labuan" - -#: i18n/states/MY.php:28 -msgid "W.P. Putrajaya" -msgstr "W.P. Putrajaya" - -#: i18n/states/TH.php:13 -msgid "" -"Amnat Charoen (อำนาจเจร" -"ิญ)" -msgstr "" -"Amnat Charoen (อำนาจเจร" -"ิญ)" - -#: i18n/states/TH.php:14 -msgid "Ang Thong (อ่างทอง)" -msgstr "Ang Thong (อ่างทอง)" - -#: i18n/states/TH.php:15 -msgid "" -"Ayutthaya (พระนครศรี" -"อยุธยา)" -msgstr "" -"Ayutthaya (พระนครศรี" -"อยุธยา)" - -#: i18n/states/TH.php:16 -msgid "" -"Bangkok (กรุงเทพมห" -"านคร)" -msgstr "" -"Bangkok (กรุงเทพมห" -"านคร)" - -#: i18n/states/TH.php:17 -msgid "Bueng Kan (บึงกาฬ)" -msgstr "Bueng Kan (บึงกาฬ)" - -#: i18n/states/TH.php:18 -msgid "" -"Buri Ram (บุรีรัมย์)" -msgstr "" -"Buri Ram (บุรีรัมย์)" - -#: i18n/states/TH.php:19 -msgid "" -"Chachoengsao (ฉะเชิงเทร" -"า)" -msgstr "" -"Chachoengsao (ฉะเชิงเทร" -"า)" - -#: i18n/states/TH.php:20 -msgid "Chai Nat (ชัยนาท)" -msgstr "Chai Nat (ชัยนาท)" - -#: i18n/states/TH.php:21 -msgid "Chaiyaphum (ชัยภูมิ)" -msgstr "Chaiyaphum (ชัยภูมิ)" - -#: i18n/states/TH.php:22 -msgid "Chanthaburi (จันทบุรี)" -msgstr "Chanthaburi (จันทบุรี)" - -#: i18n/states/TH.php:23 -msgid "" -"Chiang Mai (เชียงใหม่)" -msgstr "" -"Chiang Mai (เชียงใหม่)" - -#: i18n/states/TH.php:24 -msgid "Chiang Rai (เชียงราย)" -msgstr "Chiang Rai (เชียงราย)" - -#: i18n/states/TH.php:25 -msgid "Chonburi (ชลบุรี)" -msgstr "Chonburi (ชลบุรี)" - -#: i18n/states/TH.php:26 -msgid "Chumphon (ชุมพร)" -msgstr "Chumphon (ชุมพร)" - -#: i18n/states/TH.php:27 -msgid "" -"Kalasin (กาฬสินธุ์)" -msgstr "" -"Kalasin (กาฬสินธุ์)" - -#: i18n/states/TH.php:28 -msgid "" -"Kamphaeng Phet (กำแพงเพช" -"ร)" -msgstr "" -"Kamphaeng Phet (กำแพงเพช" -"ร)" - -#: i18n/states/TH.php:29 -msgid "" -"Kanchanaburi (กาญจนบุร" -"ี)" -msgstr "" -"Kanchanaburi (กาญจนบุร" -"ี)" - -#: i18n/states/TH.php:30 -msgid "Khon Kaen (ขอนแก่น)" -msgstr "Khon Kaen (ขอนแก่น)" - -#: i18n/states/TH.php:31 -msgid "Krabi (กระบี่)" -msgstr "Krabi (กระบี่)" - -#: i18n/states/TH.php:32 -msgid "Lampang (ลำปาง)" -msgstr "Lampang (ลำปาง)" - -#: i18n/states/TH.php:33 -msgid "Lamphun (ลำพูน)" -msgstr "Lamphun (ลำพูน)" - -#: i18n/states/TH.php:34 -msgid "Loei (เลย)" -msgstr "Loei (เลย)" - -#: i18n/states/TH.php:35 -msgid "Lopburi (ลพบุรี)" -msgstr "Lopburi (ลพบุรี)" - -#: i18n/states/TH.php:36 -msgid "" -"Mae Hong Son (แม่ฮ่องสอ" -"น)" -msgstr "" -"Mae Hong Son (แม่ฮ่องสอ" -"น)" - -#: i18n/states/TH.php:37 -msgid "" -"Maha Sarakham (มหาสารคา" -"ม)" -msgstr "" -"Maha Sarakham (มหาสารคา" -"ม)" - -#: i18n/states/TH.php:38 -msgid "Mukdahan (มุกดาหาร)" -msgstr "Mukdahan (มุกดาหาร)" - -#: i18n/states/TH.php:39 -msgid "Nakhon Nayok (นครนายก)" -msgstr "Nakhon Nayok (นครนายก)" - -#: i18n/states/TH.php:40 -msgid "Nakhon Pathom (นครปฐม)" -msgstr "Nakhon Pathom (นครปฐม)" - -#: i18n/states/TH.php:41 -msgid "Nakhon Phanom (นครพนม)" -msgstr "Nakhon Phanom (นครพนม)" - -#: i18n/states/TH.php:42 -msgid "" -"Nakhon Ratchasima (นครราชสี" -"มา)" -msgstr "" -"Nakhon Ratchasima (นครราชสี" -"มา)" - -#: i18n/states/TH.php:43 -msgid "" -"Nakhon Sawan (นครสวรรค" -"์)" -msgstr "" -"Nakhon Sawan (นครสวรรค" -"์)" - -#: i18n/states/TH.php:44 -msgid "" -"Nakhon Si Thammarat (นครศรีธร" -"รมราช)" -msgstr "" -"Nakhon Si Thammarat (นครศรีธร" -"รมราช)" - -#: i18n/states/TH.php:45 -msgid "Nan (น่าน)" -msgstr "Nan (น่าน)" - -#: i18n/states/TH.php:46 -msgid "Narathiwat (นราธิวาส)" -msgstr "Narathiwat (นราธิวาส)" - -#: i18n/states/TH.php:47 -msgid "" -"Nong Bua Lam Phu (หนองบัวล" -"ำภู)" -msgstr "" -"Nong Bua Lam Phu (หนองบัวล" -"ำภู)" - -#: i18n/states/TH.php:48 -msgid "Nong Khai (หนองคาย)" -msgstr "Nong Khai (หนองคาย)" - -#: i18n/states/TH.php:49 -msgid "Nonthaburi (นนทบุรี)" -msgstr "Nonthaburi (นนทบุรี)" - -#: i18n/states/TH.php:50 -msgid "Pathum Thani (ปทุมธานี)" -msgstr "" -"Pathum Thani (ปทุมธานี)" - -#: i18n/states/TH.php:51 -msgid "Pattani (ปัตตานี)" -msgstr "Pattani (ปัตตานี)" - -#: i18n/states/TH.php:52 -msgid "Phang Nga (พังงา)" -msgstr "Phang Nga (พังงา)" - -#: i18n/states/TH.php:53 -msgid "Phatthalung (พัทลุง)" -msgstr "Phatthalung (พัทลุง)" - -#: i18n/states/TH.php:54 -msgid "Phayao (พะเยา)" -msgstr "Phayao (พะเยา)" - -#: i18n/states/TH.php:55 -msgid "" -"Phetchabun (เพชรบูรณ์)" -msgstr "" -"Phetchabun (เพชรบูรณ์)" - -#: i18n/states/TH.php:56 -msgid "Phetchaburi (เพชรบุรี)" -msgstr "Phetchaburi (เพชรบุรี)" - -#: i18n/states/TH.php:57 -msgid "Phichit (พิจิตร)" -msgstr "Phichit (พิจิตร)" - -#: i18n/states/TH.php:58 -msgid "Phitsanulok (พิษณุโลก)" -msgstr "Phitsanulok (พิษณุโลก)" - -#: i18n/states/TH.php:59 -msgid "Phrae (แพร่)" -msgstr "Phrae (แพร่)" - -#: i18n/states/TH.php:60 -msgid "Phuket (ภูเก็ต)" -msgstr "Phuket (ภูเก็ต)" - -#: i18n/states/TH.php:61 -msgid "" -"Prachin Buri (ปราจีนบุร" -"ี)" -msgstr "" -"Prachin Buri (ปราจีนบุร" -"ี)" - -#: i18n/states/TH.php:62 -msgid "" -"Prachuap Khiri Khan (ประจวบคี" -"รีขันธ์)" -msgstr "" -"Prachuap Khiri Khan (ประจวบคี" -"รีขันธ์)" - -#: i18n/states/TH.php:63 -msgid "Ranong (ระนอง)" -msgstr "Ranong (ระนอง)" - -#: i18n/states/TH.php:64 -msgid "Ratchaburi (ราชบุรี)" -msgstr "Ratchaburi (ราชบุรี)" - -#: i18n/states/TH.php:65 -msgid "Rayong (ระยอง)" -msgstr "Rayong (ระยอง)" - -#: i18n/states/TH.php:66 -msgid "Roi Et (ร้อยเอ็ด)" -msgstr "Roi Et (ร้อยเอ็ด)" - -#: i18n/states/TH.php:67 -msgid "Sa Kaeo (สระแก้ว)" -msgstr "Sa Kaeo (สระแก้ว)" - -#: i18n/states/TH.php:68 -msgid "Sakon Nakhon (สกลนคร)" -msgstr "Sakon Nakhon (สกลนคร)" - -#: i18n/states/TH.php:69 -msgid "" -"Samut Prakan (สมุทรปราก" -"าร)" -msgstr "" -"Samut Prakan (สมุทรปราก" -"าร)" - -#: i18n/states/TH.php:70 -msgid "" -"Samut Sakhon (สมุทรสาค" -"ร)" -msgstr "" -"Samut Sakhon (สมุทรสาค" -"ร)" - -#: i18n/states/TH.php:71 -msgid "" -"Samut Songkhram (สมุทรสงค" -"ราม)" -msgstr "" -"Samut Songkhram (สมุทรสงค" -"ราม)" - -#: i18n/states/TH.php:72 -msgid "Saraburi (สระบุรี)" -msgstr "Saraburi (สระบุรี)" - -#: i18n/states/TH.php:73 -msgid "Satun (สตูล)" -msgstr "Satun (สตูล)" - -#: i18n/states/TH.php:74 -msgid "" -"Sing Buri (สิงห์บุรี)" -msgstr "" -"Sing Buri (สิงห์บุรี)" - -#: i18n/states/TH.php:75 -msgid "Sisaket (ศรีสะเกษ)" -msgstr "Sisaket (ศรีสะเกษ)" - -#: i18n/states/TH.php:76 -msgid "Songkhla (สงขลา)" -msgstr "Songkhla (สงขลา)" - -#: i18n/states/TH.php:77 -msgid "Sukhothai (สุโขทัย)" -msgstr "Sukhothai (สุโขทัย)" - -#: i18n/states/TH.php:78 -msgid "" -"Suphan Buri (สุพรรณบุร" -"ี)" -msgstr "" -"Suphan Buri (สุพรรณบุร" -"ี)" - -#: i18n/states/TH.php:79 -msgid "" -"Surat Thani (สุราษฎร์ธ" -"านี)" -msgstr "" -"Surat Thani (สุราษฎร์ธ" -"านี)" - -#: i18n/states/TH.php:80 -msgid "Surin (สุรินทร์)" -msgstr "Surin (สุรินทร์)" - -#: i18n/states/TH.php:81 -msgid "Tak (ตาก)" -msgstr "Tak (ตาก)" - -#: i18n/states/TH.php:82 -msgid "Trang (ตรัง)" -msgstr "Trang (ตรัง)" - -#: i18n/states/TH.php:83 -msgid "Trat (ตราด)" -msgstr "Trat (ตราด)" - -#: i18n/states/TH.php:84 -msgid "" -"Ubon Ratchathani (อุบลราชธ" -"านี)" -msgstr "" -"Ubon Ratchathani (อุบลราชธ" -"านี)" - -#: i18n/states/TH.php:85 -msgid "Udon Thani (อุดรธานี)" -msgstr "Udon Thani (อุดรธานี)" - -#: i18n/states/TH.php:86 -msgid "" -"Uthai Thani (อุทัยธานี)" -msgstr "" -"Uthai Thani (อุทัยธานี)" - -#: i18n/states/TH.php:87 -msgid "" -"Uttaradit (อุตรดิตถ์)" -msgstr "" -"Uttaradit (อุตรดิตถ์)" - -#: i18n/states/TH.php:88 -msgid "Yala (ยะลา)" -msgstr "Yala (ยะลา)" - -#: i18n/states/TH.php:89 -msgid "Yasothon (ยโสธร)" -msgstr "Yasothon (ยโสธร)" - -#: i18n/states/US.php:13 -msgid "Alabama" -msgstr "Alabama" - -#: i18n/states/US.php:14 -msgid "Alaska" -msgstr "Alaska" - -#: i18n/states/US.php:15 -msgid "Arizona" -msgstr "Arizona" - -#: i18n/states/US.php:16 -msgid "Arkansas" -msgstr "Arkansas" - -#: i18n/states/US.php:17 -msgid "California" -msgstr "Kalifornien" - -#: i18n/states/US.php:18 -msgid "Colorado" -msgstr "Colorado" - -#: i18n/states/US.php:19 -msgid "Connecticut" -msgstr "Connecticut" - -#: i18n/states/US.php:20 -msgid "Delaware" -msgstr "Delaware" - -#: i18n/states/US.php:21 -msgid "District Of Columbia" -msgstr "District Of Columbia" - -#: i18n/states/US.php:22 -msgid "Florida" -msgstr "Florida" - -#: i18n/states/US.php:24 -msgid "Hawaii" -msgstr "Hawaii" - -#: i18n/states/US.php:25 -msgid "Idaho" -msgstr "Idaho" - -#: i18n/states/US.php:26 -msgid "Illinois" -msgstr "Illinois" - -#: i18n/states/US.php:27 -msgid "Indiana" -msgstr "Indiana" - -#: i18n/states/US.php:28 -msgid "Iowa" -msgstr "Iowa" - -#: i18n/states/US.php:29 -msgid "Kansas" -msgstr "Kansas" - -#: i18n/states/US.php:30 -msgid "Kentucky" -msgstr "Kentucky" - -#: i18n/states/US.php:31 -msgid "Louisiana" -msgstr "Louisiana" - -#: i18n/states/US.php:32 -msgid "Maine" -msgstr "Maine" - -#: i18n/states/US.php:33 -msgid "Maryland" -msgstr "Maryland" - -#: i18n/states/US.php:34 -msgid "Massachusetts" -msgstr "Massachusetts" - -#: i18n/states/US.php:35 -msgid "Michigan" -msgstr "Michigan" - -#: i18n/states/US.php:36 -msgid "Minnesota" -msgstr "Minnesota" - -#: i18n/states/US.php:37 -msgid "Mississippi" -msgstr "Mississippi" - -#: i18n/states/US.php:38 -msgid "Missouri" -msgstr "Missouri" - -#: i18n/states/US.php:39 -msgid "Montana" -msgstr "Montana" - -#: i18n/states/US.php:40 -msgid "Nebraska" -msgstr "Nebraska" - -#: i18n/states/US.php:41 -msgid "Nevada" -msgstr "Nevada" - -#: i18n/states/US.php:42 -msgid "New Hampshire" -msgstr "New Hampshire" - -#: i18n/states/US.php:43 -msgid "New Jersey" -msgstr "New Jersey" - -#: i18n/states/US.php:44 -msgid "New Mexico" -msgstr "New Mexico" - -#: i18n/states/US.php:45 -msgid "New York" -msgstr "New York" - -#: i18n/states/US.php:46 -msgid "North Carolina" -msgstr "North Carolina" - -#: i18n/states/US.php:47 -msgid "North Dakota" -msgstr "North Dakota" - -#: i18n/states/US.php:48 -msgid "Ohio" -msgstr "Ohio" - -#: i18n/states/US.php:49 -msgid "Oklahoma" -msgstr "Oklahoma" - -#: i18n/states/US.php:50 -msgid "Oregon" -msgstr "Oregon" - -#: i18n/states/US.php:51 -msgid "Pennsylvania" -msgstr "Pennsylvania" - -#: i18n/states/US.php:52 -msgid "Rhode Island" -msgstr "Rhode Island" - -#: i18n/states/US.php:53 -msgid "South Carolina" -msgstr "South Carolina" - -#: i18n/states/US.php:54 -msgid "South Dakota" -msgstr "South Dakota" - -#: i18n/states/US.php:55 -msgid "Tennessee" -msgstr "Tennessee" - -#: i18n/states/US.php:56 -msgid "Texas" -msgstr "Texas" - -#: i18n/states/US.php:57 -msgid "Utah" -msgstr "Utah" - -#: i18n/states/US.php:58 -msgid "Vermont" -msgstr "Vermont" - -#: i18n/states/US.php:59 -msgid "Virginia" -msgstr "Virginia" - -#: i18n/states/US.php:60 -msgid "Washington" -msgstr "Washington" - -#: i18n/states/US.php:61 -msgid "West Virginia" -msgstr "West Virginia" - -#: i18n/states/US.php:62 -msgid "Wisconsin" -msgstr "Wisconsin" - -#: i18n/states/US.php:63 -msgid "Wyoming" -msgstr "Wyoming" - -#: i18n/states/US.php:64 -msgid "Armed Forces (AA)" -msgstr "Armed Forces (AA)" - -#: i18n/states/US.php:65 -msgid "Armed Forces (AE)" -msgstr "Armed Forces (AE)" - -#: i18n/states/US.php:66 -msgid "Armed Forces (AP)" -msgstr "Armed Forces (AP)" - -#: i18n/states/US.php:67 -msgid "American Samoa" -msgstr "Amerikanisch-Samoa" - -#: i18n/states/US.php:68 -msgid "Guam" -msgstr "Guam" - -#: i18n/states/US.php:69 -msgid "Northern Mariana Islands" -msgstr "Nördliche Marianen" - -#: i18n/states/US.php:70 -msgid "Puerto Rico" -msgstr "Puerto Rico" - -#: i18n/states/US.php:71 -msgid "US Minor Outlying Islands" -msgstr "USA (Kleinere Inselbesitzungen der USA)" - -#: i18n/states/US.php:72 -msgid "US Virgin Islands" -msgstr "US Virgin Islands" - -#: i18n/states/ZA.php:13 -msgid "Eastern Cape" -msgstr "Ostkap" - -#: i18n/states/ZA.php:14 -msgid "Free State" -msgstr "Freistaat" - -#: i18n/states/ZA.php:15 -msgid "Gauteng" -msgstr "Gauteng" - -#: i18n/states/ZA.php:16 -msgid "KwaZulu-Natal" -msgstr "KwaZulu-Natal" - -#: i18n/states/ZA.php:17 -msgid "Limpopo" -msgstr "Limpopo" - -#: i18n/states/ZA.php:18 -msgid "Mpumalanga" -msgstr "Mpumalanga" - -#: i18n/states/ZA.php:19 -msgid "Northern Cape" -msgstr "Nordkap" - -#: i18n/states/ZA.php:20 -msgid "North West" -msgstr "Nord West" - -#: i18n/states/ZA.php:21 -msgid "Western Cape" -msgstr "Westkap" - -#: i18n/strings.php:16 -msgid "pending" -msgstr "ausstehend" - -#: i18n/strings.php:17 -msgid "failed" -msgstr "fehlgeschlagen" - -#: i18n/strings.php:18 -msgid "on-hold" -msgstr "Zurückgestellt" - -#: i18n/strings.php:19 -msgid "processing" -msgstr "in Arbeit" - -#: i18n/strings.php:20 -msgid "completed" -msgstr "Fertig" - -#: i18n/strings.php:21 -msgid "refunded" -msgstr "Erstattet" - -#: i18n/strings.php:22 -msgid "cancelled" -msgstr "Abgebrochen" - -#: templates/cart/cart-empty.php:14 -msgid "Your cart is currently empty." -msgstr "Ihr Warenkorb ist gegenwärtig leer." - -#: templates/cart/cart-empty.php:18 -msgid "← Return To Shop" -msgstr "← Zurück zum Shop" - -#: templates/cart/cart.php:28 templates/checkout/form-pay.php:19 -#: templates/checkout/review-order.php:21 -#: templates/emails/admin-new-order.php:22 -#: templates/emails/customer-completed-order.php:23 -#: templates/emails/customer-invoice.php:27 -#: templates/emails/customer-note.php:27 -#: templates/emails/customer-processing-order.php:23 -#: templates/order/order-details.php:20 woocommerce.php:983 -msgid "Product" -msgstr "Produkt" - -#: templates/cart/cart.php:29 templates/emails/admin-new-order.php:24 -#: templates/emails/customer-completed-order.php:25 -#: templates/emails/customer-invoice.php:29 -#: templates/emails/customer-note.php:29 -#: templates/emails/customer-processing-order.php:25 -msgid "Price" -msgstr "Preis" - -#: templates/cart/cart.php:30 templates/emails/admin-new-order.php:23 -#: templates/emails/customer-completed-order.php:24 -#: templates/emails/customer-invoice.php:28 -#: templates/emails/customer-note.php:28 -#: templates/emails/customer-processing-order.php:24 -msgid "Quantity" -msgstr "Anzahl" - -#: templates/cart/cart.php:31 templates/checkout/review-order.php:22 -#: templates/myaccount/my-orders.php:35 templates/order/order-details.php:21 -msgid "Total" -msgstr "Summe" - -#: templates/cart/cart.php:47 -msgid "Remove this item" -msgstr "Dieses Produkt entfernen" - -#: templates/cart/cart.php:100 -#: templates/single-product/add-to-cart/quantity.php:12 -msgctxt "Product quantity input tooltip" -msgid "Qty" -msgstr "Menge" - -#: templates/cart/cart.php:127 woocommerce.php:1096 -msgid "Coupon" -msgstr "Gutschein" - -#: templates/cart/cart.php:127 templates/checkout/form-coupon.php:29 -msgid "Apply Coupon" -msgstr "Gutschein anwenden" - -#: templates/cart/cart.php:134 -msgid "Update Cart" -msgstr "Warenkorb aktualisieren" - -#: templates/cart/cart.php:134 -msgid "Proceed to Checkout →" -msgstr "Weiter zur Kasse →" - -#: templates/cart/cross-sells.php:38 -msgid "You may be interested in…" -msgstr "Sind Sie vielleicht interessiert an…" - -#: templates/cart/mini-cart.php:55 -msgid "No products in the cart." -msgstr "Es befinden sich keine Produkte im Warenkorb." - -#: templates/cart/mini-cart.php:63 -msgid "Subtotal" -msgstr "Zwischensumme" - -#: templates/cart/mini-cart.php:69 -msgid "Checkout →" -msgstr "Kasse →" - -#: templates/cart/shipping-calculator.php:22 -msgid "Calculate Shipping" -msgstr "Lieferkosten berechnen" - -#: templates/cart/shipping-calculator.php:28 woocommerce-template.php:1334 -msgid "Select a country…" -msgstr "Land auswählen…" - -#: templates/cart/shipping-calculator.php:45 -#: templates/cart/shipping-calculator.php:51 -#: templates/cart/shipping-calculator.php:63 -msgid "State / county" -msgstr "Staat / Bezirk" - -#: templates/cart/shipping-calculator.php:52 woocommerce-template.php:1384 -msgid "Select a state…" -msgstr "Kanton auswählen…" - -#: templates/cart/shipping-calculator.php:72 -msgid "City" -msgstr "Ort" - -#: templates/cart/shipping-calculator.php:85 -msgid "Update Totals" -msgstr "Betrag aktualisieren" - -#: templates/cart/shipping-methods.php:32 -msgid "Free" -msgstr "Frei" - -#: templates/cart/shipping-methods.php:68 -msgid "Please fill in your details to see available shipping methods." -msgstr "Bitte geben Sie Ihre Details ein um verfügbare Versandarten zu sehen." - -#: templates/cart/shipping-methods.php:76 templates/cart/totals.php:147 -msgid "" -"Sorry, it seems that there are no available shipping methods for your " -"location (%s)." -msgstr "" -"Entschuldigen Sie, aber für Ihren Standort ist kein Versand möglich (%s)." - -#: templates/cart/shipping-methods.php:76 templates/cart/totals.php:147 -msgid "" -"If you require assistance or wish to make alternate arrangements please " -"contact us." -msgstr "" -"Wenn Sie Hilfe benötigen oder weitergehende Absprachen treffen möchten, " -"nehmen Sie bitte Kontakt mit uns auf." - -#: templates/cart/totals.php:22 -msgid "Cart Totals" -msgstr "Warenkorb Summe" - -#: templates/cart/totals.php:28 templates/checkout/review-order.php:27 -msgid "Cart Subtotal" -msgstr "Warenkorb Zwischensumme" - -#: templates/cart/totals.php:35 templates/checkout/review-order.php:34 -#: woocommerce.php:1690 -msgid "Cart Discount" -msgstr "Warenkorb Rabatt" - -#: templates/cart/totals.php:35 templates/cart/totals.php:83 -msgid "[Remove]" -msgstr "[Entfernen]" - -#: templates/cart/totals.php:46 templates/checkout/review-order.php:45 -msgid "Shipping" -msgstr "Versand" - -#: templates/cart/totals.php:83 templates/checkout/review-order.php:82 -msgid "Order Discount" -msgstr "Bestellrabatt" - -#: templates/cart/totals.php:92 templates/checkout/review-order.php:91 -msgid "Order Total" -msgstr "Bestellung gesamt" - -#: templates/cart/totals.php:121 -msgid " (taxes estimated for %s)" -msgstr "(Steuer geschätzt auf %s)" - -#: templates/cart/totals.php:123 -msgid "" -"Note: Shipping and taxes are estimated%s and will be updated during checkout " -"based on your billing and shipping information." -msgstr "" -"Hinweis: Versandkosten und Steuern werden geschätzt%s und werden während des " -"Kaufprozesses aktualisiert, basierend auf ihren Rechnungs- und " -"Versandinformationen" - -#: templates/cart/totals.php:135 -msgid "" -"No shipping methods were found; please recalculate your shipping and enter " -"your state/county and zip/postcode to ensure there are no other available " -"methods for your location." -msgstr "" -"Keine Versandkosten Methoden gefunden. Bitte geben Sie Ihren Staat / Bezirk " -"und Ihre Postleitzahl ein, um die Versandkosten neu zu berechnen und sicher " -"zu stellen, dass keine weiteren Methoden für Ihren Wohnort verfügbar sind. " - -#: templates/checkout/cart-errors.php:16 -msgid "" -"There are some issues with the items in your cart (shown above). Please go " -"back to the cart page and resolve these issues before checking out." -msgstr "" -"Es gibt einige Probleme mit Ihrer Bestellung im Warenkorb (oben angezeigt). " -"Bitte gehen Sie zurück auf die Warenkorb Seite und lösen Sie diese Probleme " -"vor dem Kauf." - -#: templates/checkout/cart-errors.php:20 -msgid "← Return To Cart" -msgstr "← Zum Warenkorb zurückkehren" - -#: templates/checkout/form-billing.php:17 -msgid "Billing & Shipping" -msgstr "Rechnung & Versand" - -#: templates/checkout/form-billing.php:21 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:19 templates/myaccount/my-address.php:25 -#: templates/order/order-details.php:115 -msgid "Billing Address" -msgstr "Rechnungsadresse" - -#: templates/checkout/form-billing.php:42 -msgid "Create an account?" -msgstr "Kundenkonto anlegen?" - -#: templates/checkout/form-billing.php:51 -msgid "" -"Create an account by entering the information below. If you are a returning " -"customer please login at the top of the page." -msgstr "" -"Erstellen Sie ein Konto indem Sie die Informationen unten eingeben. Sind Sie " -"ein wiederkehrender Besucher so melden Sie sich bitte oben mit Ihren Daten " -"ein." - -#: templates/checkout/form-checkout.php:20 -msgid "You must be logged in to checkout." -msgstr "Bitte loggen Sie sich ein, um die Bestellung abschliessen zu können." - -#: templates/checkout/form-checkout.php:51 -msgid "Your order" -msgstr "Ihre Bestellung" - -#: templates/checkout/form-coupon.php:17 -msgid "Have a coupon?" -msgstr "Haben Sie einen Gutschein?" - -#: templates/checkout/form-coupon.php:20 -msgid "Click here to enter your code" -msgstr "Klicken Sie bitte hier um Ihren Code einzutragen" - -#: templates/checkout/form-coupon.php:25 -msgid "Coupon code" -msgstr "Gutschein-Code" - -#: templates/checkout/form-login.php:14 -msgid "Returning customer?" -msgstr "Wiederkehrender Kunde?" - -#: templates/checkout/form-login.php:17 -msgid "Click here to login" -msgstr "Klicken Sie hier, um sich einzuloggen" - -#: templates/checkout/form-login.php:22 -msgid "" -"If you have shopped with us before, please enter your details in the boxes " -"below. If you are a new customer please proceed to the Billing & " -"Shipping section." -msgstr "" -"Falls Sie bereits bei uns gekauft haben, geben Sie bitte Ihre Details in den " -"Boxen unten ein. Falls Sie ein neuer Kunde sind, füllen Sie bitte die " -"Zahlungs- und Versandangaben aus. " - -#: templates/checkout/form-pay.php:20 -msgid "Qty" -msgstr "Menge" - -#: templates/checkout/form-pay.php:21 -msgid "Totals" -msgstr "Summe" - -#: templates/checkout/form-pay.php:78 -msgid "" -"Sorry, it seems that there are no available payment methods for your " -"location. Please contact us if you require assistance or wish to make " -"alternate arrangements." -msgstr "" -"Entschuldigung, aber es sind keine Zahlungsarten für Ihr Land verfügbar. " -"Bitte kontaktieren Sie uns für weitere Hilfe oder wenn Sie alternative " -"Absprachen treffen möchten." - -#: templates/checkout/form-pay.php:87 -msgid "Pay for order" -msgstr "Für Bestellung bezahlen" - -#: templates/checkout/form-shipping.php:32 -msgid "Ship to billing address?" -msgstr "Zur Rechnungsadresse schicken?" - -#: templates/checkout/form-shipping.php:35 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:20 templates/order/order-details.php:130 -msgid "Shipping Address" -msgstr "Lieferadresse" - -#: templates/checkout/form-shipping.php:59 -#: templates/single-product/tabs/additional-information.php:14 -#: woocommerce-template.php:759 -msgid "Additional Information" -msgstr "Zusätzliche Informationen" - -#: templates/checkout/review-order.php:174 -msgid "Please fill in your details above to see available payment methods." -msgstr "" -"Bitte füllen Sie die Angaben oben aus, um die verfügbaren Zahlungsarten " -"abzurufen." - -#: templates/checkout/review-order.php:176 -msgid "" -"Sorry, it seems that there are no available payment methods for your state. " -"Please contact us if you require assistance or wish to make alternate " -"arrangements." -msgstr "" -"Entschuldigung, aber es sind keine Zahlungsarten für Ihren Kanton/Region " -"verfügbar. Bitte kontaktieren Sie uns für weitere Hilfe oder wenn Sie " -"alternative Absprachen treffen möchten." - -#: templates/checkout/review-order.php:185 -msgid "" -"Since your browser does not support JavaScript, or it is disabled, please " -"ensure you click the Update Totals button before placing your " -"order. You may be charged more than the amount stated above if you fail to " -"do so." -msgstr "" -"Sollte Ihr Browser kein JavaScript unterstützen, oder wenn dieses " -"deaktiviert wurde, stellen Sie bitte sicher, das Sie den Button " -"Gesamtbetrag aktualisieren klicken, bevor Sie Ihre Bestellung " -"abschicken. Wenn Sie das nicht tun, könnte es möglich sein, das Sie mehr " -"bezahlen müssen, als oben angegeben ist." - -#: templates/checkout/review-order.php:185 -msgid "Update totals" -msgstr "Gesamtbetrag aktualisieren" - -#: templates/checkout/review-order.php:192 -msgid "Place order" -msgstr "Bestellung abschicken" - -#: templates/checkout/review-order.php:199 -msgid "I have read and accept the" -msgstr "Gelesen und akzeptiert" - -#: templates/checkout/review-order.php:199 -msgid "terms & conditions" -msgstr "Liefer- und Zahlungsbedingungen (AGB)" - -#: templates/checkout/thankyou.php:18 -msgid "" -"Unfortunately your order cannot be processed as the originating bank/" -"merchant has declined your transaction." -msgstr "" -"Unglücklicherweise kann Ihre Bestellung nicht weiter verarbeitet werden, da " -"Ihre ausführende Bank/Händler die Transaktion abgelehnt hat." - -#: templates/checkout/thankyou.php:22 -msgid "Please attempt your purchase again or go to your account page." -msgstr "" -"Bitte versuchen Sie den Kauf nocheinmal oder gehen Sie zurück zu Ihrem " -"Kundenkonto." - -#: templates/checkout/thankyou.php:24 -msgid "Please attempt your purchase again." -msgstr "Bitte versuchen Sie Ihren Kauf erneut auszuführen." - -#: templates/checkout/thankyou.php:36 templates/checkout/thankyou.php:67 -msgid "Thank you. Your order has been received." -msgstr "Vielen Dank. Ihre Bestellung wurde empfangen." - -#: templates/emails/admin-new-order.php:13 -#: templates/emails/plain/admin-new-order.php:13 -msgid "You have received an order from %s. Their order is as follows:" -msgstr "Sie haben eine Bestellung von %s. Die Bestellung ist wie folgt: " - -#: templates/emails/admin-new-order.php:17 -msgid "Order: %s" -msgstr "Bestellung: %s" - -#: templates/emails/admin-new-order.php:50 -#: templates/emails/customer-completed-order.php:51 -#: templates/emails/customer-note.php:55 -#: templates/emails/customer-processing-order.php:51 -#: templates/emails/plain/admin-new-order.php:38 -#: templates/order/order-details.php:97 -msgid "Customer details" -msgstr "Angaben zum Kunden" - -#: templates/emails/admin-new-order.php:53 -#: templates/emails/customer-completed-order.php:54 -#: templates/emails/customer-note.php:58 -#: templates/emails/customer-processing-order.php:54 -#: templates/emails/plain/admin-new-order.php:41 -#: templates/emails/plain/customer-completed-order.php:41 -#: templates/emails/plain/customer-note.php:49 -#: templates/emails/plain/customer-processing-order.php:41 -#: templates/order/order-details.php:101 -msgid "Email:" -msgstr "E-Mail:" - -#: templates/emails/admin-new-order.php:56 -#: templates/emails/customer-completed-order.php:57 -#: templates/emails/customer-note.php:61 -#: templates/emails/customer-processing-order.php:57 -#: templates/emails/plain/admin-new-order.php:44 -#: templates/emails/plain/customer-completed-order.php:44 -#: templates/emails/plain/customer-note.php:52 -#: templates/emails/plain/customer-processing-order.php:44 -msgid "Tel:" -msgstr "Tel.:" - -#: templates/emails/customer-completed-order.php:14 -#: templates/emails/plain/customer-completed-order.php:13 -msgid "" -"Hi there. Your recent order on %s has been completed. Your order details are " -"shown below for your reference:" -msgstr "" -"Ihre letzte Bestellung auf %s ist nun vollständig. Ihre Bestelldetails " -"werden unten zur Kontrolle angezeigt:" - -#: templates/emails/customer-invoice.php:16 -#: templates/emails/plain/customer-invoice.php:14 -msgid "" -"An order has been created for you on %s. To pay for this order please use " -"the following link: %s" -msgstr "" -"Ihre Bestellung wurde zusammengestellt für Sie auf %s. Um diese Bestellung " -"zu bezahlen klicken Sie bitte folgenden Link: %s." - -#: templates/emails/customer-invoice.php:16 -msgid "pay" -msgstr "zahlen" - -#: templates/emails/customer-new-account.php:14 -#: templates/emails/plain/customer-new-account.php:13 -msgid "" -"Thanks for creating an account on %s. Your username is %s." -msgstr "" -"Vielen Dank, dass Sie ein Konto auf %s erstellt haben. Ihr Benutzername ist " -"%s." - -#: templates/emails/customer-new-account.php:16 -#: templates/emails/plain/customer-new-account.php:15 -msgid "You can access your account area here: %s." -msgstr "Sie können auf Ihr Kundenkonto hier zugreifen: %s." - -#: templates/emails/customer-note.php:14 -#: templates/emails/plain/customer-note.php:13 -msgid "Hello, a note has just been added to your order:" -msgstr "Hallo, Ihrer Bestellung wurde soeben ein Hinweis hinzugefügt:" - -#: templates/emails/customer-note.php:18 -#: templates/emails/plain/customer-note.php:21 -msgid "For your reference, your order details are shown below." -msgstr "Zu Ihrer Kontrolle, hier noch einmal Ihre Bestelldetails." - -#: templates/emails/customer-processing-order.php:14 -#: templates/emails/plain/customer-processing-order.php:13 -msgid "" -"Your order has been received and is now being processed. Your order details " -"are shown below for your reference:" -msgstr "" -"Ihre Bestellung ist bei uns eingegangen und wird nun bearbeitet. Ihre " -"Bestelldetails werden unten zur Kontrolle angezeigt:" - -#: templates/emails/customer-reset-password.php:14 -#: templates/emails/plain/customer-reset-password.php:13 -msgid "Someone requested that the password be reset for the following account:" -msgstr "" -"Jemand hat die Zurücksetzen des Passworts für folgendes Konto beantragt: " - -#: templates/emails/customer-reset-password.php:15 -#: templates/emails/plain/customer-reset-password.php:15 -msgid "Username: %s" -msgstr "Benutzername: %s" - -#: templates/emails/customer-reset-password.php:16 -#: templates/emails/plain/customer-reset-password.php:16 -msgid "If this was a mistake, just ignore this email and nothing will happen." -msgstr "" -"Falls Sie diese E-Mail irrtümlich erhalten haben, ignorieren Sie diese " -"bitte. Nichts wird weiterhin passieren. " - -#: templates/emails/customer-reset-password.php:17 -#: templates/emails/plain/customer-reset-password.php:17 -msgid "To reset your password, visit the following address:" -msgstr "Um Ihr Passwort zurückzusetzen besuchen Sie folgende Seite: " - -#: templates/emails/customer-reset-password.php:20 -msgid "Click here to reset your password" -msgstr "Klicken Sie hier um das Passwort zurückzusetzen" - -#: templates/emails/email-addresses.php:18 -#: templates/emails/plain/email-addresses.php:12 -msgid "Billing address" -msgstr "Rechnungsadresse" - -#: templates/emails/email-addresses.php:28 -#: templates/emails/plain/email-addresses.php:17 -msgid "Shipping address" -msgstr "Lieferadresse" - -#: templates/emails/email-order-items.php:47 -msgid "Download %d:" -msgstr "Download %d:" - -#: templates/emails/email-order-items.php:49 -msgid "Download:" -msgstr "Download:" - -#: templates/emails/plain/admin-new-order.php:19 -#: templates/emails/plain/customer-completed-order.php:19 -#: templates/emails/plain/customer-invoice.php:20 -#: templates/emails/plain/customer-note.php:27 -#: templates/emails/plain/customer-processing-order.php:19 -msgid "Order number: %s" -msgstr "Bestellnummer: %s" - -#: templates/emails/plain/admin-new-order.php:20 -#: templates/emails/plain/customer-completed-order.php:20 -#: templates/emails/plain/customer-invoice.php:21 -#: templates/emails/plain/customer-note.php:28 -#: templates/emails/plain/customer-processing-order.php:20 -msgid "Order date: %s" -msgstr "Bestelldatum: %s" - -#: templates/emails/plain/admin-new-order.php:20 -msgid "jS F Y" -msgstr "d. F Y" - -#: templates/emails/plain/customer-completed-order.php:38 -#: templates/emails/plain/customer-note.php:46 -#: templates/emails/plain/customer-processing-order.php:38 -msgid "Your details" -msgstr "Ihre Details" - -#: templates/emails/plain/email-order-items.php:28 -msgid "Quantity: %s" -msgstr "Menge: %s" - -#: templates/emails/plain/email-order-items.php:31 -msgid "Cost: %s" -msgstr "Kosten: %s" - -#: templates/loop/add-to-cart.php:17 templates/loop/add-to-cart.php:41 -#: templates/loop/add-to-cart.php:50 -msgid "Read More" -msgstr "Weiterlesen" - -#: templates/loop/add-to-cart.php:33 -msgid "Select options" -msgstr "Ausführung auswählen" - -#: templates/loop/add-to-cart.php:37 -msgid "View options" -msgstr "Optionen anzeigen" - -#: templates/loop/no-products-found.php:14 templates/loop-shop.php:40 -msgid "No products found which match your selection." -msgstr "Es wurden keine Produkte gefunden, die Ihrer Auswahl entsprechen." - -#: templates/loop/orderby.php:21 -msgid "Default sorting" -msgstr "Standardsortierung" - -#: templates/loop/orderby.php:22 -msgid "Sort by popularity" -msgstr "Nach Beliebtheit sortieren" - -#: templates/loop/orderby.php:23 -msgid "Sort by average rating" -msgstr "Nach Durchschnittsbewertung sortieren" - -#: templates/loop/orderby.php:24 -msgid "Sort by newness" -msgstr "Nach Neuheit sortieren" - -#: templates/loop/orderby.php:25 -msgid "Sort by price: low to high" -msgstr "Nach Preis sortieren: niedrig zu hoch" - -#: templates/loop/orderby.php:26 -msgid "Sort by price: high to low" -msgstr "Nach Preis sortieren: hoch zu niedrig" - -#: templates/loop/result-count.php:28 -msgid "Showing the single result" -msgstr "Das Einzelergebnis anzeigen" - -#: templates/loop/result-count.php:30 -msgid "Showing all %d results" -msgstr "Alle %d Ergebnisse anzeigen" - -#: templates/loop/result-count.php:32 -msgctxt "%1$d = first, %2$d = last, %3$d = total" -msgid "Showing %1$d–%2$d of %3$d results" -msgstr "%1$d–%2$d von %3$d Ergebnisse anzeigen" - -#: templates/loop/sale-flash.php:16 templates/single-product/sale-flash.php:16 -msgid "Sale!" -msgstr "Angebot!" - -#: templates/myaccount/form-change-password.php:20 -#: templates/myaccount/form-lost-password.php:31 -msgid "New password" -msgstr "Neues Passwort" - -#: templates/myaccount/form-change-password.php:24 -#: templates/myaccount/form-lost-password.php:35 -msgid "Re-enter new password" -msgstr "Neues Passwort bestätigen" - -#: templates/myaccount/form-change-password.php:29 -#: templates/myaccount/form-lost-password.php:45 -msgid "Save" -msgstr "Speichern" - -#: templates/myaccount/form-edit-address.php:43 -msgid "Save Address" -msgstr "Adresse speichern" - -#: templates/myaccount/form-login.php:26 templates/myaccount/form-login.php:40 -#: templates/shop/form-login.php:31 -msgid "Login" -msgstr "Login" - -#: templates/myaccount/form-login.php:29 -#: templates/myaccount/form-lost-password.php:24 -#: templates/shop/form-login.php:20 -msgid "Username or email" -msgstr "Benutzername oder E-Mail" - -#: templates/myaccount/form-login.php:33 templates/myaccount/form-login.php:85 -#: templates/shop/form-login.php:24 -msgid "Password" -msgstr "Passwort" - -#: templates/myaccount/form-login.php:50 templates/shop/form-login.php:33 -msgid "Lost Password?" -msgstr "Passwort vergessen?" - -#: templates/myaccount/form-login.php:60 -#: templates/myaccount/form-login.php:101 -msgid "Register" -msgstr "Anmelden" - -#: templates/myaccount/form-login.php:66 -msgid "Username" -msgstr "Benutzername" - -#: templates/myaccount/form-login.php:78 -#: templates/single-product-reviews.php:86 -msgid "Email" -msgstr "E-Mail" - -#: templates/myaccount/form-login.php:89 -msgid "Re-enter password" -msgstr "Passwort bestätigen" - -#: templates/myaccount/form-lost-password.php:22 -msgid "" -"Lost your password? Please enter your username or email address. You will " -"receive a link to create a new password via email." -msgstr "" -"Haben Sie Ihr Passwort verloren? Bitte geben Sie Ihren Benutzernamen oder E-" -"Mailadresse ein. Sie erhalten einen Link per E-Mail, womit Sie sich ein " -"neues Passwort erstellen können. " - -#: templates/myaccount/form-lost-password.php:28 -msgid "Enter a new password below." -msgstr "Geben Sie ein neues Passwort ein." - -#: templates/myaccount/form-lost-password.php:45 -msgid "Reset Password" -msgstr "Passwort zurücksetzen" - -#: templates/myaccount/my-account.php:19 -msgid "" -"Hello, %s. From your account dashboard you can view your " -"recent orders, manage your shipping and billing addresses and change your password." -msgstr "" -"Hallo, %s. Mit Ihrem Konto haben Sie die Möglichkeit Ihre " -"vergangenen Bestellungen abzurufen, Ihre Liefer- und Rechnungsadresse zu " -"verwalten und Ihr Passwort zu ändern." - -#: templates/myaccount/my-address.php:17 -msgid "My Addresses" -msgstr "Meine Adressen" - -#: templates/myaccount/my-address.php:23 -msgid "My Address" -msgstr "Meine Adresse" - -#: templates/myaccount/my-address.php:35 -msgid "The following addresses will be used on the checkout page by default." -msgstr "" -"Die folgenden Adressen werden in der Bestellabwicklung als Voreinstellung " -"genutzt." - -#: templates/myaccount/my-address.php:45 woocommerce.php:951 -#: woocommerce.php:987 woocommerce.php:1024 woocommerce.php:1062 -#: woocommerce.php:1100 -msgid "Edit" -msgstr "Bearbeiten" - -#: templates/myaccount/my-address.php:64 -msgid "You have not set up this type of address yet." -msgstr "Sie haben bisher keine Adresse dieser Art erstellt." - -#: templates/myaccount/my-downloads.php:18 -msgid "Available downloads" -msgstr "Verfügbare Downloads" - -#: templates/myaccount/my-downloads.php:27 -msgid "%s download remaining" -msgid_plural "%s downloads remaining" -msgstr[0] "%s Download verfügbar" -msgstr[1] "%s Downloads verfügbar" - -#: templates/myaccount/my-orders.php:26 -msgid "Recent Orders" -msgstr "Zurückliegende Bestellungen" - -#: templates/myaccount/my-orders.php:32 woocommerce.php:1059 -msgid "Order" -msgstr "Bestellung" - -#: templates/myaccount/my-orders.php:33 -msgid "Date" -msgstr "Datum" - -#: templates/myaccount/my-orders.php:34 -msgid "Status" -msgstr "Status" - -#: templates/myaccount/my-orders.php:62 -msgid "%s for %s item" -msgid_plural "%s for %s items" -msgstr[0] "%s für %s Posten" -msgstr[1] "%s für %s Posten" - -#: templates/myaccount/my-orders.php:77 -msgid "Cancel" -msgstr "Abbrechen" - -#: templates/myaccount/my-orders.php:82 -msgid "View" -msgstr "Anzeigen" - -#: templates/order/form-tracking.php:17 -msgid "" -"To track your order please enter your Order ID in the box below and press " -"return. This was given to you on your receipt and in the confirmation email " -"you should have received." -msgstr "" -"Um den Stand Ihrer Bestellung zu verfolgen, geben Sie bitte Ihre Bestell-ID " -"in das Feld unten ein und bestätigen mit Enter. Die Bestell-ID finden Sie in " -"der Auftragsbestätigung bzw. Bestätigungsmail, welche Sie dazu erhalten " -"haben." - -#: templates/order/form-tracking.php:19 -msgid "Order ID" -msgstr "Bestell-ID" - -#: templates/order/form-tracking.php:19 -msgid "Found in your order confirmation email." -msgstr "Gefunden in Ihrer Bestellbestätigungsmail." - -#: templates/order/form-tracking.php:20 -msgid "Billing Email" -msgstr "E-Mail-Rechnung" - -#: templates/order/form-tracking.php:20 -msgid "Email you used during checkout." -msgstr "Die E-Mail welche Sie bei der Bestellabwicklung verwendet haben." - -#: templates/order/form-tracking.php:23 -msgid "Track" -msgstr "verfolgen" - -#: templates/order/order-details.php:16 -msgid "Order Details" -msgstr "Details der Bestellung" - -#: templates/order/order-details.php:64 -msgid "Download file%s" -msgstr "Datei %s herunterladen" - -#: templates/order/order-details.php:90 -msgid "Order Again" -msgstr "Wieder bestellen" - -#: templates/order/order-details.php:102 -msgid "Telephone:" -msgstr "Telefon:" - -#: templates/order/tracking.php:18 -msgid "Order %s which was made %s has the status “%s”" -msgstr "" -"Bestellung %s welche vor %s erstellt wurde, hat den Status “%s”" - -#: templates/order/tracking.php:18 -msgid "ago" -msgstr " " - -#: templates/order/tracking.php:20 -msgid "and was completed" -msgstr "und wurde abgeschlossen vor" - -#: templates/order/tracking.php:20 -msgid " ago" -msgstr " " - -#: templates/shop/breadcrumb.php:63 -msgid "Products tagged “" -msgstr "Produkte verschlagwortet “" - -#: templates/shop/breadcrumb.php:91 templates/shop/breadcrumb.php:188 -msgid "Search results for “" -msgstr "Suchergebnisse für “" - -#: templates/shop/breadcrumb.php:146 -msgid "Error 404" -msgstr "Fehler 404" - -#: templates/shop/breadcrumb.php:192 -msgid "Posts tagged “" -msgstr "Produkt verschlagwortet “" - -#: templates/shop/breadcrumb.php:197 -msgid "Author:" -msgstr "Autor:" - -#: templates/shop/breadcrumb.php:202 -msgid "Page" -msgstr "Seite" - -#: templates/single-product/add-to-cart/variable.php:24 -msgid "Choose an option" -msgstr "Wählen Sie eine Ausführung" - -#: templates/single-product/add-to-cart/variable.php:69 -msgid "Clear selection" -msgstr "Auswahl aufheben" - -#: templates/single-product/meta.php:24 -msgid "Category:" -msgid_plural "Categories:" -msgstr[0] "Kategorie:" -msgstr[1] "Kategorien:" - -#: templates/single-product/meta.php:29 -msgid "Tag:" -msgid_plural "Tags:" -msgstr[0] "Schlüsselwort:" -msgstr[1] "Schlüsselworte:" - -#: templates/single-product/product-attributes.php:28 -msgid "Weight" -msgstr "Gewicht" - -#: templates/single-product/product-attributes.php:37 -msgid "Dimensions" -msgstr "Abmessungen" - -#: templates/single-product/related.php:36 -msgid "Related Products" -msgstr "Ähnliche Produkte" - -#: templates/single-product/review.php:26 -msgid "Rated %d out of 5" -msgstr "bewertet %d von 5" - -#: templates/single-product/review.php:33 -msgid "Your comment is awaiting approval" -msgstr "Ihr Kommentar wartet auf Freischaltung" - -#: templates/single-product/review.php:40 -msgid "verified owner" -msgstr "Verifizierter Besitzer" - -#: templates/single-product/tabs/description.php:14 -msgid "Product Description" -msgstr "Produktbeschreibung" - -#: templates/single-product/up-sells.php:39 -msgid "You may also like…" -msgstr "Das könnte Ihnen auch gefallen…" - -#: templates/single-product-reviews.php:30 -msgid "%s review for %s" -msgid_plural "%s reviews for %s" -msgstr[0] "%s Bewertung für %s" -msgstr[1] "%s Bewertungen für %s" - -#: templates/single-product-reviews.php:36 -#: templates/single-product-reviews.php:42 -msgid "Reviews" -msgstr "Bewertungen" - -#: templates/single-product-reviews.php:58 -msgid " Previous" -msgstr " Vorherige Seite" - -#: templates/single-product-reviews.php:59 -msgid "Next " -msgstr "Nächste Seite " - -#: templates/single-product-reviews.php:63 -msgid "Add Your Review" -msgstr "Eigene Bewertung eingeben" - -#: templates/single-product-reviews.php:63 -msgid "Add Review" -msgstr "Bewertung abgeben" - -#: templates/single-product-reviews.php:65 -msgid "Add a review" -msgstr "Fügen Sie Ihre Bewertung hinzu" - -#: templates/single-product-reviews.php:69 -msgid "Be the first to review" -msgstr "Seien Sie der erste Rezensent von" - -#: templates/single-product-reviews.php:71 -msgid "" -"There are no reviews yet, would you like to submit yours?" -msgstr "" -"Es gibt bisher noch keine Bewertungen. Wollen Sie Ihre jetzt übermitteln?" - -#: templates/single-product-reviews.php:89 -msgid "Submit Review" -msgstr "Bewertung senden" - -#: templates/single-product-reviews.php:96 -msgid "Rating" -msgstr "Einstufung" - -#: templates/single-product-reviews.php:97 -msgid "Rate…" -msgstr "Bewertung…" - -#: templates/single-product-reviews.php:98 -msgid "Perfect" -msgstr "Ausgezeichnet" - -#: templates/single-product-reviews.php:99 -msgid "Good" -msgstr "Gut" - -#: templates/single-product-reviews.php:100 -msgid "Average" -msgstr "Durchschnittlich" - -#: templates/single-product-reviews.php:101 -msgid "Not that bad" -msgstr "Nicht ganz schlecht" - -#: templates/single-product-reviews.php:102 -msgid "Very Poor" -msgstr "Sehr schlecht" - -#: templates/single-product-reviews.php:107 -msgid "Your Review" -msgstr "Ihre Bewertung" - -#: woocommerce-ajax.php:119 -msgid "Sorry, your session has expired." -msgstr "Entschuldigung, aber Ihre Sitzung ist abgelaufen." - -#: woocommerce-ajax.php:119 -msgid "Return to homepage →" -msgstr "Zurück zur Startseite →" - -#: woocommerce-ajax.php:256 woocommerce-ajax.php:290 woocommerce-ajax.php:313 -msgid "You do not have sufficient permissions to access this page." -msgstr "" -"Sie haben nicht die erforderlichen Rechte, um auf diese Seite zuzugreifen." - -#: woocommerce-ajax.php:258 woocommerce-ajax.php:291 woocommerce-ajax.php:314 -msgid "You have taken too long. Please go back and retry." -msgstr "" -"Sie haben das Zeitlimit überschritten. Bitte gehen Sie zurück und versuchen " -"Sie es erneut." - -#: woocommerce-ajax.php:550 -msgid "Same as parent" -msgstr "Gleich wie Eltern" - -#: woocommerce-ajax.php:551 -msgid "Standard" -msgstr "Standard" - -#: woocommerce-ajax.php:1098 -msgid "" -"No products had their stock reduced - they may not have stock management " -"enabled." -msgstr "" -"Keine Produkte wurden im Lager reduziert - es kann sein, dass keine " -"Lagerverwaltung aktiviert ist." - -#: woocommerce-ajax.php:1142 woocommerce-ajax.php:1143 -msgid "Item #%s stock increased from %s to %s." -msgstr "Lagerbestand von Produkt #%s erhöht von %s auf %s." - -#: woocommerce-ajax.php:1150 -msgid "" -"No products had their stock increased - they may not have stock management " -"enabled." -msgstr "" -"Keine Produkte wurden im Lager erhöht - es kann sein, dass keine " -"Lagerverwaltung aktiviert ist." - -#: woocommerce-ajax.php:1171 -msgid "Value" -msgstr "Wert" - -#: woocommerce-ajax.php:1485 -msgid "Delete note" -msgstr "Hinweis löschen" - -#: woocommerce-core-functions.php:275 -msgid "%s – %s%s" -msgstr "%s – %s%s" - -#: woocommerce-core-functions.php:698 -msgid "Australian Dollars" -msgstr "Australischer Dollar" - -#: woocommerce-core-functions.php:699 -msgid "Brazilian Real" -msgstr "Brasilianischer Real" - -#: woocommerce-core-functions.php:700 -msgid "Canadian Dollars" -msgstr "Kanadischer Dollar" - -#: woocommerce-core-functions.php:701 -msgid "Chinese Yuan" -msgstr "Chinesischer Yuan" - -#: woocommerce-core-functions.php:702 -msgid "Czech Koruna" -msgstr "Czeschicher Koruna" - -#: woocommerce-core-functions.php:703 -msgid "Danish Krone" -msgstr "Dänische Kronen" - -#: woocommerce-core-functions.php:704 -msgid "Euros" -msgstr "Euros" - -#: woocommerce-core-functions.php:705 -msgid "Hong Kong Dollar" -msgstr "Hong Kong Dollar" - -#: woocommerce-core-functions.php:706 -msgid "Hungarian Forint" -msgstr "Ungarische Forint" - -#: woocommerce-core-functions.php:707 -msgid "Indonesia Rupiah" -msgstr "Indonesia Rupiah" - -#: woocommerce-core-functions.php:708 -msgid "Indian Rupee" -msgstr "Indian Rupee" - -#: woocommerce-core-functions.php:709 -msgid "Israeli Shekel" -msgstr "Israelische Schekel" - -#: woocommerce-core-functions.php:710 -msgid "Japanese Yen" -msgstr "JapanischerYen" - -#: woocommerce-core-functions.php:711 -msgid "South Korean Won" -msgstr "Südkoreanischer Won" - -#: woocommerce-core-functions.php:712 -msgid "Malaysian Ringgits" -msgstr "Malaysische Ringgits" - -#: woocommerce-core-functions.php:713 -msgid "Mexican Peso" -msgstr "Mexikanischer Peso" - -#: woocommerce-core-functions.php:714 -msgid "Norwegian Krone" -msgstr "Norwegische Kronen" - -#: woocommerce-core-functions.php:715 -msgid "New Zealand Dollar" -msgstr "Neuseeländischer Dollar" - -#: woocommerce-core-functions.php:716 -msgid "Philippine Pesos" -msgstr "Philippinische Peso" - -#: woocommerce-core-functions.php:717 -msgid "Polish Zloty" -msgstr "Polnische Zloty" - -#: woocommerce-core-functions.php:718 -msgid "Pounds Sterling" -msgstr "Pfund Sterling" - -#: woocommerce-core-functions.php:719 -msgid "Romanian Leu" -msgstr "Romänischer Leu" - -#: woocommerce-core-functions.php:720 -msgid "Singapore Dollar" -msgstr "Singapur Dollar" - -#: woocommerce-core-functions.php:721 -msgid "South African rand" -msgstr "Südafrikanischer Rand" - -#: woocommerce-core-functions.php:722 -msgid "Swedish Krona" -msgstr "Schwedische Kronen" - -#: woocommerce-core-functions.php:723 -msgid "Swiss Franc" -msgstr "Schweizer Franken" - -#: woocommerce-core-functions.php:724 -msgid "Taiwan New Dollars" -msgstr "Neuer Taiwan Dollar" - -#: woocommerce-core-functions.php:725 -msgid "Thai Baht" -msgstr "Thailändische Baht" - -#: woocommerce-core-functions.php:726 -msgid "Turkish Lira" -msgstr "Türkische Lira" - -#: woocommerce-core-functions.php:727 -msgid "US Dollars" -msgstr "US Dollar" - -#: woocommerce-core-functions.php:1215 woocommerce-core-functions.php:1241 -msgid "Download Permissions Granted" -msgstr "Downloadberechtigungen Erteilt" - -#: woocommerce-core-functions.php:1365 -msgctxt "slug" -msgid "uncategorized" -msgstr "unkategorisiert" - -#: woocommerce-core-functions.php:1554 -msgid "Select a category" -msgstr "Wählen Sie eine Kategorie" - -#: woocommerce-core-functions.php:1558 -msgid "Uncategorized" -msgstr "Ohne Kategorie" - -#: woocommerce-core-functions.php:1930 -msgid "Customer" -msgstr "Kunde" - -#: woocommerce-core-functions.php:1937 -msgid "Shop Manager" -msgstr "Shop-Manager" - -#: woocommerce-core-functions.php:2494 -msgid "Unpaid order cancelled - time limit reached." -msgstr "Unbezahlte Bestellungen abgebrochen - Zeitlimit erreicht" - -#: woocommerce-functions.php:226 woocommerce-functions.php:271 -msgid "Cart updated." -msgstr "Warenkorb aktualisiert." - -#: woocommerce-functions.php:257 -msgid "You can only have 1 %s in your cart." -msgstr "Sie dürfen nur 1 %s in ihrem Warenkorb haben." - -#: woocommerce-functions.php:315 woocommerce-functions.php:373 -msgid "Please choose product options…" -msgstr "Bitte wählen Sie die Produktoptionen…" - -#: woocommerce-functions.php:406 -msgid "" -"Please choose the quantity of items you wish to add to your cart…" -msgstr "" -"Bitte wählen Sie die Menge der Posten, die Sie Ihrem Warenkorb hinzufügen " -"möchten…" - -#: woocommerce-functions.php:413 -msgid "Please choose a product to add to your cart…" -msgstr "" -"Bitte wählen Sie ein Produkt, um es Ihrem Warenkorb hinzuzufügen…" - -#: woocommerce-functions.php:482 -msgid "Added "%s" to your cart." -msgstr ""%s" wurde dem Warenkorb hinzugefügt." - -#: woocommerce-functions.php:482 -msgid "" and "" -msgstr "" und "" - -#: woocommerce-functions.php:485 -msgid ""%s" was successfully added to your cart." -msgstr ""%s" wurde erfolgreich Ihrem Warenkorb hinzugefügt." - -#: woocommerce-functions.php:493 -msgid "Continue Shopping →" -msgstr "Einkauf fortfahren →" - -#: woocommerce-functions.php:660 -msgid "Username is required." -msgstr "Benutzername wird benötigt." - -#: woocommerce-functions.php:661 woocommerce-functions.php:756 -msgid "Password is required." -msgstr "Passwort wird benötigt." - -#: woocommerce-functions.php:730 -msgid "Please enter a username." -msgstr "Bitte geben Sie einen Benutzernamen ein." - -#: woocommerce-functions.php:732 -msgid "" -"This username is invalid because it uses illegal characters. Please enter a " -"valid username." -msgstr "" -"Der Benutzername ist ungültig, da es ungültige Zeichen verwendet. Bitte " -"geben Sie einen gültigen Benutzernamen ein. " - -#: woocommerce-functions.php:735 -msgid "This username is already registered, please choose another one." -msgstr "" -"Dieser Benutzername wurde schon registriert. Bitte wählen Sei einen anderen." - -#: woocommerce-functions.php:747 -msgid "Please type your e-mail address." -msgstr "Bitte geben Sie Ihre E-Mail Adresse ein." - -#: woocommerce-functions.php:749 -msgid "The email address isn’t correct." -msgstr "Die E-Mail Adresse ist nicht korrekt." - -#: woocommerce-functions.php:752 -msgid "This email is already registered, please choose another one." -msgstr "" -"Diese E-Mail wurde für eine Registrierung schon verwendet. Bitte wählen Sie " -"eine andere." - -#: woocommerce-functions.php:757 -msgid "Re-enter your password." -msgstr "Passwort bestätigen." - -#: woocommerce-functions.php:762 -msgid "Anti-spam field was filled in." -msgstr "Antispamfeld wurde ausgefüllt." - -#: woocommerce-functions.php:870 -msgid "The cart has been filled with the items from your previous order." -msgstr "" -"Ihr Warenkorb wurde mit den Artikeln aus ihrer vorherigen Bestellung gefüllt." - -#: woocommerce-functions.php:896 -msgid "Order cancelled by customer." -msgstr "Bestellung wurde durch den Kunden abgebrochen." - -#: woocommerce-functions.php:899 -msgid "Your order was cancelled." -msgstr "Ihre Bestellung wurde abgebrochen." - -#: woocommerce-functions.php:905 -msgid "" -"Your order is no longer pending and could not be cancelled. Please contact " -"us if you need assistance." -msgstr "" -"Ihre Bestellung hat die Warteschleife bereits verlassen und konnte daher " -"nicht mehr abgebrochen werden. Bitte kontaktieren Sie uns, wenn Sie weitere " -"Hilfestellung benötigen." - -#: woocommerce-functions.php:940 -msgid "Invalid email address." -msgstr "Ungültige E-Mail Adresse." - -#: woocommerce-functions.php:940 woocommerce-functions.php:963 -#: woocommerce-functions.php:983 woocommerce-functions.php:989 -#: woocommerce-functions.php:993 woocommerce-functions.php:996 -#: woocommerce-functions.php:1026 woocommerce-functions.php:1158 -msgid "Go to homepage →" -msgstr "Zur Startseite gehen →" - -#: woocommerce-functions.php:963 -msgid "Invalid download." -msgstr "fehlerhafter download." - -#: woocommerce-functions.php:975 -msgid "You must be logged in to download files." -msgstr "Sie müssen angemeldet sein, um Dateien herunterzuladen." - -#: woocommerce-functions.php:975 -msgid "Login →" -msgstr "Login →" - -#: woocommerce-functions.php:978 -msgid "This is not your download link." -msgstr "Dies ist nicht Ihr Download Link." - -#: woocommerce-functions.php:983 -msgid "Product no longer exists." -msgstr "Dieses Produkt existiert nicht mehr." - -#: woocommerce-functions.php:993 -msgid "Sorry, you have reached your download limit for this file" -msgstr "Tut uns leid, Sie haben Ihr Download-Limit für diese Datei erreicht." - -#: woocommerce-functions.php:996 -msgid "Sorry, this download has expired" -msgstr "Verzeihung, dieser Download ist abgelaufen." - -#: woocommerce-functions.php:1026 -msgid "No file defined" -msgstr "Keine Datei definiert" - -#: woocommerce-functions.php:1158 -msgid "File not found" -msgstr "Datei nicht gefunden" - -#: woocommerce-functions.php:1274 -msgid "New products" -msgstr "Neue Produkte" - -#: woocommerce-functions.php:1282 -msgid "New products added to %s" -msgstr "Neue Produkte hinzugefügt zu %s" - -#: woocommerce-functions.php:1290 -msgid "New products tagged %s" -msgstr "Neue Produkte verschlagwortet %s" - -#: woocommerce-functions.php:1328 -msgid "You have taken too long. Please go back and refresh the page." -msgstr "" -"Sie haben zu lange gebraucht. Bitte gehen Sie zurück und aktualisieren Sie " -"die Seite." - -#: woocommerce-functions.php:1331 -msgid "Please rate the product." -msgstr "Bitte bewerten Sie das Produkt." - -#: woocommerce-functions.php:1639 -msgid "Password changed successfully." -msgstr "Passwort wurde erfolgreich geändert." - -#: woocommerce-functions.php:1715 -msgid "Address changed successfully." -msgstr "Adresse wurde erfolgreich geändert." - -#: woocommerce-template.php:200 -msgid "" -"This is a demo store for testing purposes — no orders shall be " -"fulfilled." -msgstr "" -"Dies ist ein für Testzwecke aufgesetzter Demo-Shop — Bestellungen " -"werden nicht ausgeführt." - -#: woocommerce-template.php:219 -msgid "Search Results: “%s”" -msgstr "Such Ergebnisse: “%s”" - -#: woocommerce-template.php:222 -msgid " – Page %s" -msgstr " – Seite %s" - -#: woocommerce-template.php:767 -msgid "Reviews (%d)" -msgstr "Bewertungen (%d)" - -#: woocommerce-template.php:993 -msgctxt "breadcrumb" -msgid "Home" -msgstr "Startseite" - -#: woocommerce-template.php:1292 woocommerce.php:1209 -msgid "required" -msgstr "benötigt" - -#: woocommerce-template.php:1341 -msgid "Update country" -msgstr "Land aktualisieren" - -#: woocommerce-template.php:1496 -msgid "Search for:" -msgstr "Suche nach:" - -#: woocommerce-template.php:1497 -msgid "Search for products" -msgstr "Suche nach Produkten" - -#: woocommerce-template.php:1498 woocommerce.php:947 -msgid "Search" -msgstr "Suche" - -#: woocommerce.php:171 -msgid "Docs" -msgstr "Doku" - -#: woocommerce.php:172 -msgid "Premium Support" -msgstr "Premium Support" - -#: woocommerce.php:786 -msgctxt "slug" -msgid "product-category" -msgstr "produkt-kategorie" - -#: woocommerce.php:787 -msgctxt "slug" -msgid "product-tag" -msgstr "produkt-schlagwort" - -#: woocommerce.php:789 -msgctxt "slug" -msgid "product" -msgstr "Produkt" - -#: woocommerce.php:824 -msgid "Product Category" -msgstr "Produkt Kategorie" - -#: woocommerce.php:825 -msgctxt "Admin menu name" -msgid "Categories" -msgstr "Kategorien" - -#: woocommerce.php:826 -msgid "Search Product Categories" -msgstr "Produktkategorien durchsuchen" - -#: woocommerce.php:827 -msgid "All Product Categories" -msgstr "Alle Produktkategorien" - -#: woocommerce.php:828 -msgid "Parent Product Category" -msgstr "Übergeordnete Produktkategorie" - -#: woocommerce.php:829 -msgid "Parent Product Category:" -msgstr "Übergeordnete Produktkategorie:" - -#: woocommerce.php:830 -msgid "Edit Product Category" -msgstr "Produktkategorie bearbeiten" - -#: woocommerce.php:831 -msgid "Update Product Category" -msgstr "Produktkategorie aktualisieren" - -#: woocommerce.php:832 -msgid "Add New Product Category" -msgstr "Produktkategorie hinzufügen" - -#: woocommerce.php:833 -msgid "New Product Category Name" -msgstr "Neuer Produktkategoriename" - -#: woocommerce.php:860 -msgid "Product Tag" -msgstr "Produkt Schlüsselwort" - -#: woocommerce.php:861 -msgctxt "Admin menu name" -msgid "Tags" -msgstr "Schlagworte" - -#: woocommerce.php:862 -msgid "Search Product Tags" -msgstr "Produktschlagwörter durchsuchen" - -#: woocommerce.php:863 -msgid "All Product Tags" -msgstr "Alle Produktschlagwörter" - -#: woocommerce.php:864 -msgid "Parent Product Tag" -msgstr "Übergeordnetes Produktschlagwort" - -#: woocommerce.php:865 -msgid "Parent Product Tag:" -msgstr "Übergeordnetes Produktschlagwort:" - -#: woocommerce.php:866 -msgid "Edit Product Tag" -msgstr "Produktschlagwort bearbeiten" - -#: woocommerce.php:867 -msgid "Update Product Tag" -msgstr "Produktschlagwort aktualisieren" - -#: woocommerce.php:868 -msgid "Add New Product Tag" -msgstr "Neues Produktschlagwort hinzufügen" - -#: woocommerce.php:869 -msgid "New Product Tag Name" -msgstr "Neuer Produktschlagwortname" - -#: woocommerce.php:888 woocommerce.php:890 -msgid "Shipping Classes" -msgstr "Versandklassen" - -#: woocommerce.php:892 -msgctxt "Admin menu name" -msgid "Shipping Classes" -msgstr "Versandklassen" - -#: woocommerce.php:893 -msgid "Search Shipping Classes" -msgstr "Suche Versandklassen" - -#: woocommerce.php:894 -msgid "All Shipping Classes" -msgstr "Alle Versandklassen" - -#: woocommerce.php:895 -msgid "Parent Shipping Class" -msgstr "Übergeordnete Versandklasse" - -#: woocommerce.php:896 -msgid "Parent Shipping Class:" -msgstr "Übergeordnete Versandklasse:" - -#: woocommerce.php:897 -msgid "Edit Shipping Class" -msgstr "Bearbeite Versandklasse" - -#: woocommerce.php:898 -msgid "Update Shipping Class" -msgstr "Aktualisiere Versandklasse" - -#: woocommerce.php:899 -msgid "Add New Shipping Class" -msgstr "Neue Versandklasse hinzufügen" - -#: woocommerce.php:900 -msgid "New Shipping Class Name" -msgstr "Neuer Versandklassenname" - -#: woocommerce.php:948 -msgid "All" -msgstr "Alle" - -#: woocommerce.php:949 woocommerce.php:950 -msgid "Parent" -msgstr "Vorgänger" - -#: woocommerce.php:952 -msgid "Update" -msgstr "Aktualisieren" - -#: woocommerce.php:953 -msgid "Add New" -msgstr "Hinzufügen" - -#: woocommerce.php:954 -msgid "New" -msgstr "Neu" - -#: woocommerce.php:984 -msgctxt "Admin menu name" -msgid "Products" -msgstr "Produkte" - -#: woocommerce.php:985 -msgid "Add Product" -msgstr "Produkt hinzufügen" - -#: woocommerce.php:986 -msgid "Add New Product" -msgstr "Neues Produkt hinzufügen" - -#: woocommerce.php:988 -msgid "Edit Product" -msgstr "Produkt bearbeiten" - -#: woocommerce.php:989 -msgid "New Product" -msgstr "Neues Produkt" - -#: woocommerce.php:990 woocommerce.php:991 -msgid "View Product" -msgstr "Produkt anzeigen" - -#: woocommerce.php:992 -msgid "Search Products" -msgstr "Produkte suchen" - -#: woocommerce.php:993 -msgid "No Products found" -msgstr "Keine Produkte gefunden" - -#: woocommerce.php:994 -msgid "No Products found in trash" -msgstr "Keine Produkte im Papierkorb gefunden" - -#: woocommerce.php:995 -msgid "Parent Product" -msgstr "Übergeordnetes Produkt" - -#: woocommerce.php:997 -msgid "This is where you can add new products to your store." -msgstr "Hier können Sie neue Produkte zu Ihrem Shop hinzufügen." - -#: woocommerce.php:1020 -msgid "Variations" -msgstr "Varianten" - -#: woocommerce.php:1021 -msgid "Variation" -msgstr "Variante" - -#: woocommerce.php:1022 -msgid "Add Variation" -msgstr "Variante hinzufügen" - -#: woocommerce.php:1023 -msgid "Add New Variation" -msgstr "Neue Variante hinzufügen" - -#: woocommerce.php:1025 -msgid "Edit Variation" -msgstr "Variante bearbeiten" - -#: woocommerce.php:1026 -msgid "New Variation" -msgstr "Neue Variante" - -#: woocommerce.php:1027 woocommerce.php:1028 -msgid "View Variation" -msgstr "Variante anzeigen" - -#: woocommerce.php:1029 -msgid "Search Variations" -msgstr "Varianten durchsuchen" - -#: woocommerce.php:1030 -msgid "No Variations found" -msgstr "Keine Varianten gefunden" - -#: woocommerce.php:1031 -msgid "No Variations found in trash" -msgstr "Keine Varianten im Papierkorb gefunden" - -#: woocommerce.php:1032 -msgid "Parent Variation" -msgstr "Übergeordnete Variante" - -#: woocommerce.php:1049 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Bestellungen" - -#: woocommerce.php:1058 -msgid "Orders" -msgstr "Bestellungen" - -#: woocommerce.php:1060 -msgid "Add Order" -msgstr "Bestellung hinzufügen" - -#: woocommerce.php:1061 -msgid "Add New Order" -msgstr "Neue Bestellung hinzufügen" - -#: woocommerce.php:1063 -msgid "Edit Order" -msgstr "Bestellung bearbeiten" - -#: woocommerce.php:1064 -msgid "New Order" -msgstr "Neue Bestellung" - -#: woocommerce.php:1067 -msgid "Search Orders" -msgstr "Bestellungen suchen" - -#: woocommerce.php:1068 -msgid "No Orders found" -msgstr "Keine Bestellungen gefunden" - -#: woocommerce.php:1069 -msgid "No Orders found in trash" -msgstr "Keine Bestellungen im Papierkorb gefunden" - -#: woocommerce.php:1070 -msgid "Parent Orders" -msgstr "Übergeordnete Bestellungen" - -#: woocommerce.php:1073 -msgid "This is where store orders are stored." -msgstr "Hier werden die Bestellungen des Shops gespeichert." - -#: woocommerce.php:1095 -msgid "Coupons" -msgstr "Gutscheine" - -#: woocommerce.php:1097 -msgctxt "Admin menu name" -msgid "Coupons" -msgstr "Gutscheine" - -#: woocommerce.php:1098 -msgid "Add Coupon" -msgstr "Gutschein hinzufügen" - -#: woocommerce.php:1099 -msgid "Add New Coupon" -msgstr "Neuen Gutschein hinzufügen" - -#: woocommerce.php:1101 -msgid "Edit Coupon" -msgstr "Gutschein bearbeiten" - -#: woocommerce.php:1102 -msgid "New Coupon" -msgstr "Neuer Gutschein" - -#: woocommerce.php:1103 -msgid "View Coupons" -msgstr "Gutscheine anzeigen" - -#: woocommerce.php:1104 -msgid "View Coupon" -msgstr "Gutschein anzeigen" - -#: woocommerce.php:1105 -msgid "Search Coupons" -msgstr "Gutschein suchen" - -#: woocommerce.php:1106 -msgid "No Coupons found" -msgstr "Keine Gutscheine gefunden" - -#: woocommerce.php:1107 -msgid "No Coupons found in trash" -msgstr "Keine Gutscheine im Papierkorb gefunden" - -#: woocommerce.php:1108 -msgid "Parent Coupon" -msgstr "Übergeordneter Gutschein" - -#: woocommerce.php:1110 -msgid "" -"This is where you can add new coupons that customers can use in your store." -msgstr "" -"Hier können Sie neue Gutscheine hinzufügen, die Ihre Kunden in Ihrem " -"Onlineshop verwenden können." - -#: woocommerce.php:1206 -msgid "Select an option…" -msgstr "Wählen Sie eine Option…" - -#: woocommerce.php:1207 -msgid "Please select a rating" -msgstr "Bitte wählen Sie eine Bewertung" - -#: woocommerce.php:1208 -msgid "" -"Sorry, no products matched your selection. Please choose a different " -"combination." -msgstr "" -"Bedaure, keine Produkte entsprechen Ihrer Auswahl. Bitte wählen Sie eine " -"andere Kombination." - -#: woocommerce.php:1691 -msgid "Cart % Discount" -msgstr "Warenkorb % Rabatt" - -#: woocommerce.php:1692 -msgid "Product Discount" -msgstr "Produktrabatt" - -#: woocommerce.php:1693 -msgid "Product % Discount" -msgstr "Produkt % Rabatt" - -#: woocommerce.php:1758 -msgid "Action failed. Please refresh the page and retry." -msgstr "Vorgang fehlgeschlagen. Bitte Seite neu laden und erneut probieren." - -#: assets/js/admin/editor_plugin_lang.php:5 -msgid "Insert Shortcode" -msgstr "Shortcode einfügen" - -#: assets/js/admin/editor_plugin_lang.php:6 -msgid "Product price/cart button" -msgstr "Produkt Preis / Warenkorb Button" - -#: assets/js/admin/editor_plugin_lang.php:7 -msgid "Product by SKU/ID" -msgstr "Produkt nach SKU/ID" - -#: assets/js/admin/editor_plugin_lang.php:8 -msgid "Products by SKU/ID" -msgstr "Produkte nach SKU/ID" - -#: assets/js/admin/editor_plugin_lang.php:9 -msgid "Product categories" -msgstr "Produkt Kategorien" - -#: assets/js/admin/editor_plugin_lang.php:10 -msgid "Products by category slug" -msgstr "Produkte nach Kategorie Pfad" - -#: assets/js/admin/editor_plugin_lang.php:11 -msgid "Recent products" -msgstr "neueste Produkte" - -#: assets/js/admin/editor_plugin_lang.php:12 -msgid "Featured products" -msgstr "hervorgehobene Produkte" - -#: assets/js/admin/editor_plugin_lang.php:13 -msgid "Shop Messages" -msgstr "Shop Nachrichten" - -#: assets/js/admin/editor_plugin_lang.php:14 -msgid "Pages" -msgstr "Seiten" - -#: assets/js/admin/editor_plugin_lang.php:15 -#: classes/widgets/class-wc-widget-cart.php:61 -msgid "Cart" -msgstr "Warenkorb" - -#: assets/js/admin/editor_plugin_lang.php:16 -msgid "Checkout" -msgstr "Kasse" - -#: assets/js/admin/editor_plugin_lang.php:17 -msgid "Order tracking" -msgstr "Bestellung nachverfolgen" - -#: assets/js/admin/editor_plugin_lang.php:18 -#: templates/checkout/thankyou.php:30 -msgid "My Account" -msgstr "Mein Konto" - -#: assets/js/admin/editor_plugin_lang.php:19 -msgid "Edit Address" -msgstr "Adresse ändern" - -#: assets/js/admin/editor_plugin_lang.php:20 -msgid "Change Password" -msgstr "Passwort ändern" - -#: assets/js/admin/editor_plugin_lang.php:21 woocommerce.php:1065 -#: woocommerce.php:1066 -msgid "View Order" -msgstr "Bestellung ansehen" - -#: assets/js/admin/editor_plugin_lang.php:22 -#: templates/checkout/thankyou.php:28 templates/myaccount/my-orders.php:71 -msgid "Pay" -msgstr "Bezahlen" - -#: assets/js/admin/editor_plugin_lang.php:23 -msgid "Thankyou" -msgstr "Dankeschön" - -#: classes/abstracts/abstract-wc-email.php:431 -#: classes/emails/class-wc-email-customer-completed-order.php:135 -#: classes/emails/class-wc-email-customer-invoice.php:138 -#: classes/emails/class-wc-email-new-order.php:115 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:63 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:57 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:122 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:120 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:76 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:75 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:50 -msgid "Enable/Disable" -msgstr "Aktivieren/Deaktivieren" - -#: classes/abstracts/abstract-wc-email.php:433 -#: classes/emails/class-wc-email-customer-completed-order.php:137 -#: classes/emails/class-wc-email-customer-invoice.php:140 -#: classes/emails/class-wc-email-new-order.php:117 -msgid "Enable this email notification" -msgstr "Diese E-Mail-Benachrichtigung aktivieren" - -#: classes/abstracts/abstract-wc-email.php:437 -#: classes/emails/class-wc-email-customer-invoice.php:144 -msgid "Email subject" -msgstr "E-Mailbetreff" - -#: classes/abstracts/abstract-wc-email.php:439 -#: classes/abstracts/abstract-wc-email.php:446 -#: classes/emails/class-wc-email-customer-completed-order.php:143 -#: classes/emails/class-wc-email-customer-completed-order.php:150 -#: classes/emails/class-wc-email-customer-completed-order.php:157 -#: classes/emails/class-wc-email-customer-completed-order.php:164 -#: classes/emails/class-wc-email-customer-invoice.php:146 -#: classes/emails/class-wc-email-customer-invoice.php:153 -#: classes/emails/class-wc-email-customer-invoice.php:160 -#: classes/emails/class-wc-email-customer-invoice.php:167 -msgid "Defaults to %s" -msgstr "Standards zu %s" - -#: classes/abstracts/abstract-wc-email.php:444 -#: classes/emails/class-wc-email-customer-invoice.php:151 -msgid "Email heading" -msgstr "E-Mail Kopfzeile" - -#: classes/abstracts/abstract-wc-email.php:451 -#: classes/emails/class-wc-email-customer-completed-order.php:169 -#: classes/emails/class-wc-email-customer-invoice.php:172 -#: classes/emails/class-wc-email-new-order.php:142 -msgid "Email type" -msgstr "E-Mail Typ" - -#: classes/abstracts/abstract-wc-email.php:453 -#: classes/emails/class-wc-email-customer-completed-order.php:171 -#: classes/emails/class-wc-email-customer-invoice.php:174 -#: classes/emails/class-wc-email-new-order.php:144 -msgid "Choose which format of email to send." -msgstr "Format auswählen, in dem die E-Mails gesendet werden" - -#: classes/abstracts/abstract-wc-email.php:457 -#: classes/emails/class-wc-email-customer-completed-order.php:175 -#: classes/emails/class-wc-email-customer-invoice.php:178 -#: classes/emails/class-wc-email-new-order.php:148 -msgid "Plain text" -msgstr "Klartext" - -#: classes/abstracts/abstract-wc-email.php:458 -#: classes/emails/class-wc-email-customer-completed-order.php:176 -#: classes/emails/class-wc-email-customer-invoice.php:179 -#: classes/emails/class-wc-email-new-order.php:149 -msgid "HTML" -msgstr "HTML" - -#: classes/abstracts/abstract-wc-email.php:459 -#: classes/emails/class-wc-email-customer-completed-order.php:177 -#: classes/emails/class-wc-email-customer-invoice.php:180 -#: classes/emails/class-wc-email-new-order.php:150 -msgid "Multipart" -msgstr "Multipart" - -#: classes/abstracts/abstract-wc-email.php:495 -#: classes/abstracts/abstract-wc-email.php:516 -msgid "Could not write to template file." -msgstr "Konnte nicht in die Template Datei schreiben" - -#: classes/abstracts/abstract-wc-email.php:543 -msgid "Template file copied to theme." -msgstr "Template Datei zum Theme kopiert" - -#: classes/abstracts/abstract-wc-email.php:552 -msgid "Template file deleted from theme." -msgstr "Template Datei im Theme gelöscht" - -#: classes/abstracts/abstract-wc-email.php:560 -#: classes/abstracts/abstract-wc-integration.php:30 -#: classes/abstracts/abstract-wc-settings-api.php:39 woocommerce.php:170 -msgid "Settings" -msgstr "Einstellungen" - -#: classes/abstracts/abstract-wc-email.php:572 -msgid "HTML template" -msgstr "HTML Template" - -#: classes/abstracts/abstract-wc-email.php:573 -msgid "Plain text template" -msgstr "Klartext Template" - -#: classes/abstracts/abstract-wc-email.php:592 -msgid "Delete template file" -msgstr "Template Datei löschen" - -#: classes/abstracts/abstract-wc-email.php:595 -msgid "" -"This template has been overridden by your theme and can be found in: " -"%s." -msgstr "" -"Dieses Template wurde vom Theme überschrieben und kann in %s " -"gefunden werden." - -#: classes/abstracts/abstract-wc-email.php:610 -msgid "Copy file to theme" -msgstr "Datei zum Theme kopieren" - -#: classes/abstracts/abstract-wc-email.php:613 -msgid "" -"To override and edit this email template copy %s to your theme " -"folder: %s." -msgstr "" -"Um das E-Mail Template zu überschreiben und bearbeiten %s in " -"den Theme Ordner %s kopieren. " - -#: classes/abstracts/abstract-wc-email.php:624 -msgid "File was not found." -msgstr "Datei wurde nicht gefunden" - -#: classes/abstracts/abstract-wc-email.php:649 -msgid "View template" -msgstr "Zeige Template" - -#: classes/abstracts/abstract-wc-email.php:650 -msgid "Hide template" -msgstr "Template ausblenden" - -#: classes/abstracts/abstract-wc-email.php:661 -msgid "Are you sure you want to delete this template file?" -msgstr "Sind Sie sich sicher diese Template Datei zu löschen?" - -#: classes/abstracts/abstract-wc-product.php:33 -msgid "" -"The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class " -"directly." -msgstr "" -"Die WC_Product ist nun abstrakt. Nutzen Sie get_product()" -" um die Instanz zu initiieren anstatt die Klasse direkt aufzurufen. " - -#: classes/abstracts/abstract-wc-product.php:545 -#: classes/abstracts/abstract-wc-product.php:550 -#: classes/abstracts/abstract-wc-product.php:569 -msgid "In stock" -msgstr "Auf Lager" - -#: classes/abstracts/abstract-wc-product.php:550 -msgid "Only %s left in stock" -msgstr "Es sind nur noch %s auf Lager" - -#: classes/abstracts/abstract-wc-product.php:553 -msgid "%s in stock" -msgstr "%s auf Lager" - -#: classes/abstracts/abstract-wc-product.php:560 -msgid "(backorders allowed)" -msgstr "(Nachbestellungen erlaubt)" - -#: classes/abstracts/abstract-wc-product.php:566 -#: classes/abstracts/abstract-wc-product.php:579 templates/cart/cart.php:76 -msgid "Available on backorder" -msgstr "Verfügbar bei Nachlieferung" - -#: classes/abstracts/abstract-wc-product.php:572 -#: classes/abstracts/abstract-wc-product.php:582 -#: classes/abstracts/abstract-wc-product.php:586 -msgid "Out of stock" -msgstr "Nicht vorrätig." - -#: classes/abstracts/abstract-wc-product.php:846 -#: classes/abstracts/abstract-wc-product.php:852 -#: classes/class-wc-cart.php:1801 classes/class-wc-order.php:891 -#: classes/class-wc-product-variable.php:274 -#: classes/class-wc-product-variable.php:283 -#: classes/class-wc-product-variation.php:246 -msgid "Free!" -msgstr "Kostenlos!" - -#: classes/abstracts/abstract-wc-product.php:870 -msgctxt "min_price" -msgid "From:" -msgstr "Von:" - -#: classes/abstracts/abstract-wc-product.php:959 -#: templates/single-product-reviews.php:28 -msgid "Rated %s out of 5" -msgstr "Bewertet mit %s von 5" - -#: classes/abstracts/abstract-wc-product.php:961 -#: templates/single-product/review.php:27 -#: templates/single-product-reviews.php:28 -msgid "out of 5" -msgstr "aus 5" - -#: classes/class-wc-cache-helper.php:92 -msgid "" -"In order for database caching to work with WooCommerce you " -"must add _wc_session_ to the \"Ignored Query Strings\" option " -"in W3 Total Cache settings here." -msgstr "" -"Um WooCommere mit Datenbank Caching kompatibel zu machen, " -"müssen Sie _wc_session_ zu den \"Ignorierten Query Strings\" " -"Optionen in den W3 Total Cache Einstellungen hier ändern." - -#: classes/class-wc-cart.php:460 -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -"Entschuldigung, wir haben nicht ausreichend \"%s\" auf Lager, um Ihre " -"Bestellung auszuführen (%s auf Lager). Bitte bearbeiten Sie Ihren Warenkorb " -"und versuchen Sie es erneut. Wir bedauern die Unannehmlichkeiten die " -"hierdurch verursacht wurden." - -#: classes/class-wc-cart.php:479 classes/class-wc-cart.php:488 -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfil your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -"Bedaura, wir haben nicht genug \"%s\" auf Lager, um Ihre Bestellung " -"auszuführen (%s auf Lager). Bitte bearbeiten Sie Ihren Warenkorb und " -"versuchen es erneut. Wir bitten diese Unannehmlichkeit zu entschuldigen." - -#: classes/class-wc-cart.php:523 -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfil your order right now. " -"Please try again in %d minutes or edit your cart and try again. We apologise " -"for any inconvenience caused." -msgstr "" -"Bedaure, wir haben nicht genug \"%s\" auf Lager um Ihre Bestellung " -"vollständig zu erfüllen. Bitte versuchen Sie es erneut in %d Minuten oder " -"bearbeiten Sie Ihren Warenkorb um die Bestellung abzuschliessen. Wir bitten " -"diese Unannehmlichkeiten zu entschuldigen." - -#: classes/class-wc-cart.php:533 -msgid "" -"Sorry, \"%s\" is not in stock. Please edit your cart and try again. We " -"apologise for any inconvenience caused." -msgstr "" -"Bedaure, \"%s\" ist nicht auf Lager. Bitte bearbeiten Sie Ihren Warenkorb " -"und versuchen es erneut. Wir bitten diese Unannehmlichkeiten zu " -"entschuldigen." - -#: classes/class-wc-cart.php:845 -msgid "Sorry, "%s" cannot be purchased." -msgstr "Bedaure, "%s" kann nicht bestellt werden." - -#: classes/class-wc-cart.php:852 -msgid "" -"You cannot add "%s" to the cart because the product is out of " -"stock." -msgstr "" -"Sie können "%s" nicht Ihrem Warenkorb hinzufügen weil das Produkt " -"derzeit nicht auf Lager ist. " - -#: classes/class-wc-cart.php:857 -msgid "" -"You cannot add that amount of "%s" to the cart because there is " -"not enough stock (%s remaining)." -msgstr "" -"Sie können diese Menge von "%s" nicht dem Warenkorb hinzufügen, " -"weil nicht genug davon auf Lager ist. (%s vorhanden)" - -#: classes/class-wc-cart.php:869 classes/class-wc-cart.php:883 -#: classes/class-wc-cart.php:891 templates/cart/mini-cart.php:68 -#: woocommerce-functions.php:497 woocommerce.php:1210 -msgid "View Cart →" -msgstr "Warenkorb anzeigen →" - -#: classes/class-wc-cart.php:869 -msgid "You already have this item in your cart." -msgstr "Sie haben diese Ware schon in ihrem Warenkorb." - -#: classes/class-wc-cart.php:883 classes/class-wc-cart.php:891 -msgid "" -"%s You cannot add that amount to the " -"cart — we have %s in stock and you already have %s in your cart." -msgstr "" -"%s Es ist nicht möglich, diese Menge in " -"den Warenkorb zu legen - wir haben %s auf Lager und Sie haben bereits %s in " -"Ihrem Warenkorb." - -#: classes/class-wc-cart.php:1813 -msgid "via" -msgstr "über" - -#: classes/class-wc-checkout.php:64 -msgid "Account username" -msgstr "Konto-Benutzername" - -#: classes/class-wc-checkout.php:65 -msgctxt "placeholder" -msgid "Username" -msgstr "Benutzername" - -#: classes/class-wc-checkout.php:72 -msgid "Account password" -msgstr "Konto-Passwort" - -#: classes/class-wc-checkout.php:73 -msgctxt "placeholder" -msgid "Password" -msgstr "Passwort" - -#: classes/class-wc-checkout.php:79 -msgid "Confirm password" -msgstr "Passwort bestätigen" - -#: classes/class-wc-checkout.php:80 -msgctxt "placeholder" -msgid "Confirm password" -msgstr "Passwort bestätigen" - -#: classes/class-wc-checkout.php:89 -msgid "Order Notes" -msgstr "Hinweise zur Bestellung" - -#: classes/class-wc-checkout.php:90 -msgctxt "placeholder" -msgid "Notes about your order, e.g. special notes for delivery." -msgstr "" -"Hinweise für ihre Bestellungen, z.B.: besondere Hinweise für die Lieferung." - -#: classes/class-wc-checkout.php:152 -msgid "Order – %s" -msgstr "Bestellung – %s" - -#: classes/class-wc-checkout.php:152 -msgctxt "Order date parsed by strftime" -msgid "%b %d, %Y @ %I:%M %p" -msgstr "%d %b %Y um %H:%M" - -#: classes/class-wc-checkout.php:278 -msgid "Backordered" -msgstr "Rückständig" - -#: classes/class-wc-checkout.php:388 -msgid "" -"Sorry, your session has expired. Return to homepage →" -msgstr "" -"Entschuldigung, aber Ihre Sitzung ist abgelaufen. Zurück zur " -"Startseite →" - -#: classes/class-wc-checkout.php:440 woocommerce-functions.php:1696 -msgid "is a required field." -msgstr "ist ein Pflichtfeld." - -#: classes/class-wc-checkout.php:453 -msgid "(%s) is not a valid postcode/ZIP." -msgstr "(%s) ist keine valide Postleitzahl." - -#: classes/class-wc-checkout.php:474 -msgid "is not valid. Please enter one of the following:" -msgstr "ist nicht gültig. Bitte geben sie eins der Folgenden ein:" - -#: classes/class-wc-checkout.php:482 -msgid "is not a valid number." -msgstr "ist keine valide Nummer." - -#: classes/class-wc-checkout.php:489 -msgid "is not a valid email address." -msgstr "ist keine valide E-Mail Adresse." - -#: classes/class-wc-checkout.php:545 -msgid "Please enter an account username." -msgstr "Bitte geben Sie einen Benutzernamen für das Konto ein." - -#: classes/class-wc-checkout.php:549 -msgid "Invalid email/username." -msgstr "E-Mail/Benutzername ungültig." - -#: classes/class-wc-checkout.php:552 -msgid "" -"An account is already registered with that username. Please choose another." -msgstr "" -"Ein Kundenkonto mit diesem Benutzernamen existiert bereits. Bitte wählen Sie " -"einen anderen aus." - -#: classes/class-wc-checkout.php:562 -msgid "Please enter an account password." -msgstr "Bitte geben Sie ein Passwort für das Konto ein." - -#: classes/class-wc-checkout.php:565 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:83 -#: woocommerce-functions.php:758 woocommerce-functions.php:1626 -msgid "Passwords do not match." -msgstr "Passwörter stimmen nicht überein." - -#: classes/class-wc-checkout.php:569 -msgid "An account is already registered with your email address. Please login." -msgstr "" -"Ein Kundenkonto mit Ihrer E-Mailadresse ist bereits registriert. Bitte " -"loggen Sie sich ein." - -#: classes/class-wc-checkout.php:575 -msgid "You must accept our Terms & Conditions." -msgstr "" -"Die Zustimmung zu unseren Allgemeinen Geschäftsbedingungen (AGB) ist " -"erforderlich." - -#: classes/class-wc-checkout.php:584 -msgid "Invalid shipping method." -msgstr "Ungültige Versandart." - -#: classes/class-wc-checkout.php:597 -msgid "Invalid payment method." -msgstr "Ungültige Bezahlart." - -#: classes/class-wc-checkout.php:637 woocommerce-functions.php:730 -#: woocommerce-functions.php:732 woocommerce-functions.php:735 -#: woocommerce-functions.php:747 woocommerce-functions.php:749 -#: woocommerce-functions.php:752 woocommerce-functions.php:786 -msgid "ERROR" -msgstr "FEHLER" - -#: classes/class-wc-checkout.php:637 woocommerce-functions.php:786 -msgid "" -"Couldn’t register you… please contact us if you continue to " -"have problems." -msgstr "" -"Konnte Sie nicht registrieren… bitte kontaktieren Sie uns, wenn Sie " -"weiterhin Probleme haben." - -#: classes/class-wc-countries.php:37 -msgid "Afghanistan" -msgstr "Afghanistan" - -#: classes/class-wc-countries.php:38 -msgid "Åland Islands" -msgstr "Åland" - -#: classes/class-wc-countries.php:39 -msgid "Albania" -msgstr "Albanien" - -#: classes/class-wc-countries.php:40 -msgid "Algeria" -msgstr "Algerien" - -#: classes/class-wc-countries.php:41 -msgid "Andorra" -msgstr "Andorra" - -#: classes/class-wc-countries.php:42 -msgid "Angola" -msgstr "Angola" - -#: classes/class-wc-countries.php:43 -msgid "Anguilla" -msgstr "Anguilla" - -#: classes/class-wc-countries.php:44 -msgid "Antarctica" -msgstr "Antarktika" - -#: classes/class-wc-countries.php:45 -msgid "Antigua and Barbuda" -msgstr "Antigua und Barbuda" - -#: classes/class-wc-countries.php:46 -msgid "Argentina" -msgstr "Argentinien" - -#: classes/class-wc-countries.php:47 -msgid "Armenia" -msgstr "Armenien" - -#: classes/class-wc-countries.php:48 -msgid "Aruba" -msgstr "Aruba" - -#: classes/class-wc-countries.php:49 -msgid "Australia" -msgstr "Australien" - -#: classes/class-wc-countries.php:50 -msgid "Austria" -msgstr "Österreich" - -#: classes/class-wc-countries.php:51 -msgid "Azerbaijan" -msgstr "Aserbaidschan" - -#: classes/class-wc-countries.php:52 -msgid "Bahamas" -msgstr "Bahamas" - -#: classes/class-wc-countries.php:53 -msgid "Bahrain" -msgstr "Bahrain" - -#: classes/class-wc-countries.php:54 -msgid "Bangladesh" -msgstr "Bangladesch" - -#: classes/class-wc-countries.php:55 -msgid "Barbados" -msgstr "Barbados" - -#: classes/class-wc-countries.php:56 -msgid "Belarus" -msgstr "Belarus" - -#: classes/class-wc-countries.php:57 -msgid "Belgium" -msgstr "Belgien" - -#: classes/class-wc-countries.php:58 -msgid "Belau" -msgstr "Belau" - -#: classes/class-wc-countries.php:59 -msgid "Belize" -msgstr "Belize" - -#: classes/class-wc-countries.php:60 -msgid "Benin" -msgstr "Benin" - -#: classes/class-wc-countries.php:61 -msgid "Bermuda" -msgstr "Bermuda" - -#: classes/class-wc-countries.php:62 -msgid "Bhutan" -msgstr "Bhutan" - -#: classes/class-wc-countries.php:63 -msgid "Bolivia" -msgstr "Bolivien" - -#: classes/class-wc-countries.php:64 -msgid "Bonaire, Saint Eustatius and Saba" -msgstr "Bonaire, Saint Eustatius and Saba" - -#: classes/class-wc-countries.php:65 -msgid "Bosnia and Herzegovina" -msgstr "Bosnien und Herzegowina" - -#: classes/class-wc-countries.php:66 -msgid "Botswana" -msgstr "Botswana" - -#: classes/class-wc-countries.php:67 -msgid "Bouvet Island" -msgstr "Bouvet Island" - -#: classes/class-wc-countries.php:68 -msgid "Brazil" -msgstr "Brasilien" - -#: classes/class-wc-countries.php:69 -msgid "British Indian Ocean Territory" -msgstr "Britisches Territorium im Indischen Ozean" - -#: classes/class-wc-countries.php:70 -msgid "British Virgin Islands" -msgstr "Britische Jungferninseln" - -#: classes/class-wc-countries.php:71 -msgid "Brunei" -msgstr "Brunei" - -#: classes/class-wc-countries.php:72 -msgid "Bulgaria" -msgstr "Bulgarien" - -#: classes/class-wc-countries.php:73 -msgid "Burkina Faso" -msgstr "Burkina Faso" - -#: classes/class-wc-countries.php:74 -msgid "Burundi" -msgstr "Burundi" - -#: classes/class-wc-countries.php:75 -msgid "Cambodia" -msgstr "Kambodscha" - -#: classes/class-wc-countries.php:76 -msgid "Cameroon" -msgstr "Kamerun" - -#: classes/class-wc-countries.php:77 -msgid "Canada" -msgstr "Kanada" - -#: classes/class-wc-countries.php:78 -msgid "Cape Verde" -msgstr "Kap Verde" - -#: classes/class-wc-countries.php:79 -msgid "Cayman Islands" -msgstr "Kaimaninseln" - -#: classes/class-wc-countries.php:80 -msgid "Central African Republic" -msgstr "Zentralafrikanische Republik" - -#: classes/class-wc-countries.php:81 -msgid "Chad" -msgstr "Tschad" - -#: classes/class-wc-countries.php:82 -msgid "Chile" -msgstr "Chile" - -#: classes/class-wc-countries.php:83 -msgid "China" -msgstr "China" - -#: classes/class-wc-countries.php:84 -msgid "Christmas Island" -msgstr "Weihnachtsinsel" - -#: classes/class-wc-countries.php:85 -msgid "Cocos (Keeling) Islands" -msgstr "Kokosinseln" - -#: classes/class-wc-countries.php:86 -msgid "Colombia" -msgstr "Kolumbien" - -#: classes/class-wc-countries.php:87 -msgid "Comoros" -msgstr "Komoren" - -#: classes/class-wc-countries.php:88 -msgid "Congo (Brazzaville)" -msgstr "Kongo-Brazzaville" - -#: classes/class-wc-countries.php:89 -msgid "Congo (Kinshasa)" -msgstr "Kongo-Kinshasa" - -#: classes/class-wc-countries.php:90 -msgid "Cook Islands" -msgstr "Cookinseln" - -#: classes/class-wc-countries.php:91 -msgid "Costa Rica" -msgstr "Costa Rica" - -#: classes/class-wc-countries.php:92 -msgid "Croatia" -msgstr "Kroatien" - -#: classes/class-wc-countries.php:93 -msgid "Cuba" -msgstr "Kuba" - -#: classes/class-wc-countries.php:94 -msgid "CuraÇao" -msgstr "CuraÇao" - -#: classes/class-wc-countries.php:95 -msgid "Cyprus" -msgstr "Zypern" - -#: classes/class-wc-countries.php:96 -msgid "Czech Republic" -msgstr "Tschechien" - -#: classes/class-wc-countries.php:97 -msgid "Denmark" -msgstr "Dänemark" - -#: classes/class-wc-countries.php:98 -msgid "Djibouti" -msgstr "Dschibuti" - -#: classes/class-wc-countries.php:99 -msgid "Dominica" -msgstr "Dominica" - -#: classes/class-wc-countries.php:100 -msgid "Dominican Republic" -msgstr "Dominikanische Republik" - -#: classes/class-wc-countries.php:101 -msgid "Ecuador" -msgstr "Ecuador" - -#: classes/class-wc-countries.php:102 -msgid "Egypt" -msgstr "Ägypten" - -#: classes/class-wc-countries.php:103 -msgid "El Salvador" -msgstr "El Salvador" - -#: classes/class-wc-countries.php:104 -msgid "Equatorial Guinea" -msgstr "Äquatorialguinea" - -#: classes/class-wc-countries.php:105 -msgid "Eritrea" -msgstr "Eritrea" - -#: classes/class-wc-countries.php:106 -msgid "Estonia" -msgstr "Estland" - -#: classes/class-wc-countries.php:107 -msgid "Ethiopia" -msgstr "Äthiopien" - -#: classes/class-wc-countries.php:108 -msgid "Falkland Islands" -msgstr "Falklandinseln" - -#: classes/class-wc-countries.php:109 -msgid "Faroe Islands" -msgstr "Färöer" - -#: classes/class-wc-countries.php:110 -msgid "Fiji" -msgstr "Fidschi" - -#: classes/class-wc-countries.php:111 -msgid "Finland" -msgstr "Finnland" - -#: classes/class-wc-countries.php:112 -msgid "France" -msgstr "Frankreich" - -#: classes/class-wc-countries.php:113 -msgid "French Guiana" -msgstr "Französisch-Guayana" - -#: classes/class-wc-countries.php:114 -msgid "French Polynesia" -msgstr "Französisch-Polynesien" - -#: classes/class-wc-countries.php:115 -msgid "French Southern Territories" -msgstr "Französische Süd- und Antarktisgebiete" - -#: classes/class-wc-countries.php:116 -msgid "Gabon" -msgstr "Gabun" - -#: classes/class-wc-countries.php:117 -msgid "Gambia" -msgstr "Gambia" - -#: classes/class-wc-countries.php:118 i18n/states/US.php:23 -msgid "Georgia" -msgstr "Georgien" - -#: classes/class-wc-countries.php:119 -msgid "Germany" -msgstr "Deutschland" - -#: classes/class-wc-countries.php:120 -msgid "Ghana" -msgstr "Ghana" - -#: classes/class-wc-countries.php:121 -msgid "Gibraltar" -msgstr "Gibraltar" - -#: classes/class-wc-countries.php:122 -msgid "Greece" -msgstr "Griechenland" - -#: classes/class-wc-countries.php:123 -msgid "Greenland" -msgstr "Grönland" - -#: classes/class-wc-countries.php:124 -msgid "Grenada" -msgstr "Grenada" - -#: classes/class-wc-countries.php:125 -msgid "Guadeloupe" -msgstr "Guadeloupe" - -#: classes/class-wc-countries.php:126 -msgid "Guatemala" -msgstr "Guatemala" - -#: classes/class-wc-countries.php:127 -msgid "Guernsey" -msgstr "Guernsey" - -#: classes/class-wc-countries.php:128 -msgid "Guinea" -msgstr "Guinea" - -#: classes/class-wc-countries.php:129 -msgid "Guinea-Bissau" -msgstr "Guinea-Bissau" - -#: classes/class-wc-countries.php:130 -msgid "Guyana" -msgstr "Guyana" - -#: classes/class-wc-countries.php:131 -msgid "Haiti" -msgstr "Haiti" - -#: classes/class-wc-countries.php:132 -msgid "Heard Island and McDonald Islands" -msgstr "Heard Island and McDonald Islands" - -#: classes/class-wc-countries.php:133 -msgid "Honduras" -msgstr "Honduras" - -#: classes/class-wc-countries.php:134 -msgid "Hong Kong" -msgstr "Hong Kong" - -#: classes/class-wc-countries.php:135 -msgid "Hungary" -msgstr "Ungarn" - -#: classes/class-wc-countries.php:136 -msgid "Iceland" -msgstr "Island" - -#: classes/class-wc-countries.php:137 -msgid "India" -msgstr "Indien" - -#: classes/class-wc-countries.php:138 -msgid "Indonesia" -msgstr "Indonesien" - -#: classes/class-wc-countries.php:139 -msgid "Iran" -msgstr "Iran" - -#: classes/class-wc-countries.php:140 -msgid "Iraq" -msgstr "Irak" - -#: classes/class-wc-countries.php:141 -msgid "Republic of Ireland" -msgstr "Republic of Ireland" - -#: classes/class-wc-countries.php:142 -msgid "Isle of Man" -msgstr "Isle of Man" - -#: classes/class-wc-countries.php:143 -msgid "Israel" -msgstr "Israel" - -#: classes/class-wc-countries.php:144 -msgid "Italy" -msgstr "Italien" - -#: classes/class-wc-countries.php:145 -msgid "Ivory Coast" -msgstr "Elfenbeinküste" - -#: classes/class-wc-countries.php:146 -msgid "Jamaica" -msgstr "Jamaika" - -#: classes/class-wc-countries.php:147 -msgid "Japan" -msgstr "Japan" - -#: classes/class-wc-countries.php:148 -msgid "Jersey" -msgstr "Jersey" - -#: classes/class-wc-countries.php:149 -msgid "Jordan" -msgstr "Jordanien" - -#: classes/class-wc-countries.php:150 -msgid "Kazakhstan" -msgstr "Kasachstan" - -#: classes/class-wc-countries.php:151 -msgid "Kenya" -msgstr "Kenia" - -#: classes/class-wc-countries.php:152 -msgid "Kiribati" -msgstr "Kiribati" - -#: classes/class-wc-countries.php:153 -msgid "Kuwait" -msgstr "Kuwait" - -#: classes/class-wc-countries.php:154 -msgid "Kyrgyzstan" -msgstr "Kirgisistan" - -#: classes/class-wc-countries.php:155 -msgid "Laos" -msgstr "Laos" - -#: classes/class-wc-countries.php:156 -msgid "Latvia" -msgstr "Lettland" - -#: classes/class-wc-countries.php:157 -msgid "Lebanon" -msgstr "Libanon" - -#: classes/class-wc-countries.php:158 -msgid "Lesotho" -msgstr "Lesotho" - -#: classes/class-wc-countries.php:159 -msgid "Liberia" -msgstr "Liberia" - -#: classes/class-wc-countries.php:160 -msgid "Libya" -msgstr "Libyen" - -#: classes/class-wc-countries.php:161 -msgid "Liechtenstein" -msgstr "Liechtenstein" - -#: classes/class-wc-countries.php:162 -msgid "Lithuania" -msgstr "Litauen" - -#: classes/class-wc-countries.php:163 -msgid "Luxembourg" -msgstr "Luxemburg" - -#: classes/class-wc-countries.php:164 -msgid "Macao S.A.R., China" -msgstr "Macao, China" - -#: classes/class-wc-countries.php:165 -msgid "Macedonia" -msgstr "Mazedonien" - -#: classes/class-wc-countries.php:166 -msgid "Madagascar" -msgstr "Madagaskar" - -#: classes/class-wc-countries.php:167 -msgid "Malawi" -msgstr "Malawi" - -#: classes/class-wc-countries.php:168 -msgid "Malaysia" -msgstr "Malaysia" - -#: classes/class-wc-countries.php:169 -msgid "Maldives" -msgstr "Malediven" - -#: classes/class-wc-countries.php:170 -msgid "Mali" -msgstr "Mali" - -#: classes/class-wc-countries.php:171 -msgid "Malta" -msgstr "Malta" - -#: classes/class-wc-countries.php:172 -msgid "Marshall Islands" -msgstr "Marshallinseln" - -#: classes/class-wc-countries.php:173 -msgid "Martinique" -msgstr "Martinique" - -#: classes/class-wc-countries.php:174 -msgid "Mauritania" -msgstr "Mauretanien" - -#: classes/class-wc-countries.php:175 -msgid "Mauritius" -msgstr "Mauritius" - -#: classes/class-wc-countries.php:176 -msgid "Mayotte" -msgstr "Mayotte" - -#: classes/class-wc-countries.php:177 -msgid "Mexico" -msgstr "Mexiko" - -#: classes/class-wc-countries.php:178 -msgid "Micronesia" -msgstr "Mikronesien" - -#: classes/class-wc-countries.php:179 -msgid "Moldova" -msgstr "Moldawien" - -#: classes/class-wc-countries.php:180 -msgid "Monaco" -msgstr "Monaco" - -#: classes/class-wc-countries.php:181 -msgid "Mongolia" -msgstr "Mongolei" - -#: classes/class-wc-countries.php:182 -msgid "Montenegro" -msgstr "Montenegro" - -#: classes/class-wc-countries.php:183 -msgid "Montserrat" -msgstr "Montserrat" - -#: classes/class-wc-countries.php:184 -msgid "Morocco" -msgstr "Marokko" - -#: classes/class-wc-countries.php:185 -msgid "Mozambique" -msgstr "Mosambik" - -#: classes/class-wc-countries.php:186 -msgid "Myanmar" -msgstr "Myanmar" - -#: classes/class-wc-countries.php:187 -msgid "Namibia" -msgstr "Namibia" - -#: classes/class-wc-countries.php:188 -msgid "Nauru" -msgstr "Nauru" - -#: classes/class-wc-countries.php:189 -msgid "Nepal" -msgstr "Nepal" - -#: classes/class-wc-countries.php:190 -msgid "Netherlands" -msgstr "Niederlande" - -#: classes/class-wc-countries.php:191 -msgid "Netherlands Antilles" -msgstr "Niederländische Antillen" - -#: classes/class-wc-countries.php:192 -msgid "New Caledonia" -msgstr "Neukaledonien" - -#: classes/class-wc-countries.php:193 -msgid "New Zealand" -msgstr "Neuseeland" - -#: classes/class-wc-countries.php:194 -msgid "Nicaragua" -msgstr "Nicaragua" - -#: classes/class-wc-countries.php:195 -msgid "Niger" -msgstr "Niger" - -#: classes/class-wc-countries.php:196 -msgid "Nigeria" -msgstr "Nigeria" - -#: classes/class-wc-countries.php:197 -msgid "Niue" -msgstr "Niue" - -#: classes/class-wc-countries.php:198 -msgid "Norfolk Island" -msgstr "Norfolkinsel" - -#: classes/class-wc-countries.php:199 -msgid "North Korea" -msgstr "Nordkorea" - -#: classes/class-wc-countries.php:200 -msgid "Norway" -msgstr "Norwegen" - -#: classes/class-wc-countries.php:201 -msgid "Oman" -msgstr "Oman" - -#: classes/class-wc-countries.php:202 -msgid "Pakistan" -msgstr "Pakistan" - -#: classes/class-wc-countries.php:203 -msgid "Palestinian Territory" -msgstr "Palästinensisches Territorium" - -#: classes/class-wc-countries.php:204 -msgid "Panama" -msgstr "Panama" - -#: classes/class-wc-countries.php:205 -msgid "Papua New Guinea" -msgstr "Papua-Neuguinea" - -#: classes/class-wc-countries.php:206 -msgid "Paraguay" -msgstr "Paraguay" - -#: classes/class-wc-countries.php:207 -msgid "Peru" -msgstr "Peru" - -#: classes/class-wc-countries.php:208 -msgid "Philippines" -msgstr "Philippinen" - -#: classes/class-wc-countries.php:209 -msgid "Pitcairn" -msgstr "Pitcairn" - -#: classes/class-wc-countries.php:210 -msgid "Poland" -msgstr "Polen" - -#: classes/class-wc-countries.php:211 -msgid "Portugal" -msgstr "Portugal" - -#: classes/class-wc-countries.php:212 -msgid "Qatar" -msgstr "Katar" - -#: classes/class-wc-countries.php:213 -msgid "Reunion" -msgstr "Réunion" - -#: classes/class-wc-countries.php:214 -msgid "Romania" -msgstr "Rumänien" - -#: classes/class-wc-countries.php:215 -msgid "Russia" -msgstr "Russland" - -#: classes/class-wc-countries.php:216 -msgid "Rwanda" -msgstr "Rwanda" - -#: classes/class-wc-countries.php:217 -msgid "Saint Barthélemy" -msgstr "Saint Barthélemy" - -#: classes/class-wc-countries.php:218 -msgid "Saint Helena" -msgstr "St. Helena" - -#: classes/class-wc-countries.php:219 -msgid "Saint Kitts and Nevis" -msgstr "St. Kitts und Nevis" - -#: classes/class-wc-countries.php:220 -msgid "Saint Lucia" -msgstr "Sankt Lucia" - -#: classes/class-wc-countries.php:221 -msgid "Saint Martin (French part)" -msgstr "Saint-Martin" - -#: classes/class-wc-countries.php:222 -msgid "Saint Martin (Dutch part)" -msgstr "Saint Martin (Dutch part)" - -#: classes/class-wc-countries.php:223 -msgid "Saint Pierre and Miquelon" -msgstr "Saint-Pierre und Miquelon" - -#: classes/class-wc-countries.php:224 -msgid "Saint Vincent and the Grenadines" -msgstr "St. Vincent und die Grenadinen" - -#: classes/class-wc-countries.php:225 -msgid "San Marino" -msgstr "San Marino" - -#: classes/class-wc-countries.php:226 -msgid "São Tomé and Príncipe" -msgstr "São Tomé and Príncipe" - -#: classes/class-wc-countries.php:227 -msgid "Saudi Arabia" -msgstr "Saudi-Arabien" - -#: classes/class-wc-countries.php:228 -msgid "Senegal" -msgstr "Senegal" - -#: classes/class-wc-countries.php:229 -msgid "Serbia" -msgstr "Serbien" - -#: classes/class-wc-countries.php:230 -msgid "Seychelles" -msgstr "Seychellen" - -#: classes/class-wc-countries.php:231 -msgid "Sierra Leone" -msgstr "Sierra Leone" - -#: classes/class-wc-countries.php:232 -msgid "Singapore" -msgstr "Singapur" - -#: classes/class-wc-countries.php:233 -msgid "Slovakia" -msgstr "Slowakei" - -#: classes/class-wc-countries.php:234 -msgid "Slovenia" -msgstr "Slowenien" - -#: classes/class-wc-countries.php:235 -msgid "Solomon Islands" -msgstr "Salomonen" - -#: classes/class-wc-countries.php:236 -msgid "Somalia" -msgstr "Somalia" - -#: classes/class-wc-countries.php:237 -msgid "South Africa" -msgstr "Südafrika" - -#: classes/class-wc-countries.php:238 -msgid "South Georgia/Sandwich Islands" -msgstr "Südgeorgien / Sandwich-Inseln" - -#: classes/class-wc-countries.php:239 -msgid "South Korea" -msgstr "Südkorea" - -#: classes/class-wc-countries.php:240 -msgid "South Sudan" -msgstr "South Sudan" - -#: classes/class-wc-countries.php:241 -msgid "Spain" -msgstr "Spanien" - -#: classes/class-wc-countries.php:242 -msgid "Sri Lanka" -msgstr "Sri Lanka" - -#: classes/class-wc-countries.php:243 -msgid "Sudan" -msgstr "Sudan" - -#: classes/class-wc-countries.php:244 -msgid "Suriname" -msgstr "Suriname" - -#: classes/class-wc-countries.php:245 -msgid "Svalbard and Jan Mayen" -msgstr "Spitzbergen" - -#: classes/class-wc-countries.php:246 -msgid "Swaziland" -msgstr "Swasiland" - -#: classes/class-wc-countries.php:247 -msgid "Sweden" -msgstr "Schweden" - -#: classes/class-wc-countries.php:248 -msgid "Switzerland" -msgstr "Schweiz" - -#: classes/class-wc-countries.php:249 -msgid "Syria" -msgstr "Syrien" - -#: classes/class-wc-countries.php:250 -msgid "Taiwan" -msgstr "Taiwan, China" - -#: classes/class-wc-countries.php:251 -msgid "Tajikistan" -msgstr "Tadschikistan" - -#: classes/class-wc-countries.php:252 -msgid "Tanzania" -msgstr "Tansania" - -#: classes/class-wc-countries.php:253 -msgid "Thailand" -msgstr "Thailand" - -#: classes/class-wc-countries.php:254 -msgid "Timor-Leste" -msgstr "Osttimor" - -#: classes/class-wc-countries.php:255 -msgid "Togo" -msgstr "Togo" - -#: classes/class-wc-countries.php:256 -msgid "Tokelau" -msgstr "Tokelau" - -#: classes/class-wc-countries.php:257 -msgid "Tonga" -msgstr "Tonga" - -#: classes/class-wc-countries.php:258 -msgid "Trinidad and Tobago" -msgstr "Trinidad und Tobago" - -#: classes/class-wc-countries.php:259 -msgid "Tunisia" -msgstr "Tunesien" - -#: classes/class-wc-countries.php:260 -msgid "Turkey" -msgstr "Türkei" - -#: classes/class-wc-countries.php:261 -msgid "Turkmenistan" -msgstr "Turkmenistan" - -#: classes/class-wc-countries.php:262 -msgid "Turks and Caicos Islands" -msgstr "Turks- und Caicosinseln" - -#: classes/class-wc-countries.php:263 -msgid "Tuvalu" -msgstr "Tuvalu" - -#: classes/class-wc-countries.php:264 -msgid "Uganda" -msgstr "Uganda" - -#: classes/class-wc-countries.php:265 -msgid "Ukraine" -msgstr "Ukraine" - -#: classes/class-wc-countries.php:266 -msgid "United Arab Emirates" -msgstr "Vereinigte Arabische Emirates" - -#: classes/class-wc-countries.php:267 -msgid "United Kingdom" -msgstr "Vereinigtes Königreich" - -#: classes/class-wc-countries.php:268 -msgid "United States" -msgstr "Vereinigte Staaten" - -#: classes/class-wc-countries.php:269 -msgid "Uruguay" -msgstr "Uruguay" - -#: classes/class-wc-countries.php:270 -msgid "Uzbekistan" -msgstr "Usbekistan" - -#: classes/class-wc-countries.php:271 -msgid "Vanuatu" -msgstr "Vanuatu" - -#: classes/class-wc-countries.php:272 -msgid "Vatican" -msgstr "Vatikan" - -#: classes/class-wc-countries.php:273 -msgid "Venezuela" -msgstr "Venezuela" - -#: classes/class-wc-countries.php:274 -msgid "Vietnam" -msgstr "Vietnam" - -#: classes/class-wc-countries.php:275 -msgid "Wallis and Futuna" -msgstr "Wallis und Futuna" - -#: classes/class-wc-countries.php:276 -msgid "Western Sahara" -msgstr "Westsahara" - -#: classes/class-wc-countries.php:277 -msgid "Western Samoa" -msgstr "Western Samoa" - -#: classes/class-wc-countries.php:278 -msgid "Yemen" -msgstr "Jemen" - -#: classes/class-wc-countries.php:279 -msgid "Zambia" -msgstr "Sambia" - -#: classes/class-wc-countries.php:280 -msgid "Zimbabwe" -msgstr "Simbabwe" - -#: classes/class-wc-countries.php:418 -msgid "to the" -msgstr "zum" - -#: classes/class-wc-countries.php:419 -msgid "to" -msgstr "nach" - -#: classes/class-wc-countries.php:432 -msgid "the" -msgstr "das" - -#: classes/class-wc-countries.php:444 -msgid "VAT" -msgstr "MwSt." - -#: classes/class-wc-countries.php:444 -msgid "Tax" -msgstr "Mehrwertsteuer" - -#: classes/class-wc-countries.php:457 -msgid "(incl. VAT)" -msgstr "(inkl. MwSt)" - -#: classes/class-wc-countries.php:457 -msgid "(incl. tax)" -msgstr "(inkl. Steuer)" - -#: classes/class-wc-countries.php:470 -msgid "(ex. VAT)" -msgstr "(exkl. MwSt.)" - -#: classes/class-wc-countries.php:470 -msgid "(ex. tax)" -msgstr "(exkl. Mehrwertsteuer)" - -#: classes/class-wc-countries.php:678 -msgid "Country" -msgstr "Land" - -#: classes/class-wc-countries.php:683 -msgid "First Name" -msgstr "Vorname" - -#: classes/class-wc-countries.php:688 -msgid "Last Name" -msgstr "Nachname" - -#: classes/class-wc-countries.php:694 -msgid "Company Name" -msgstr "Firmenname" - -#: classes/class-wc-countries.php:698 -msgid "Address" -msgstr "Adresse" - -#: classes/class-wc-countries.php:699 -msgctxt "placeholder" -msgid "Street address" -msgstr "Strasse" - -#: classes/class-wc-countries.php:707 -msgctxt "placeholder" -msgid "Apartment, suite, unit etc. (optional)" -msgstr "Appartement, Wohnung, Einheit etc. (option" - -#: classes/class-wc-countries.php:715 classes/class-wc-countries.php:716 -msgid "Town / City" -msgstr "Ort / Stadt" - -#: classes/class-wc-countries.php:725 classes/class-wc-countries.php:726 -msgid "State / County" -msgstr "Staat / Land" - -#: classes/class-wc-countries.php:734 classes/class-wc-countries.php:735 -#: templates/cart/shipping-calculator.php:80 -msgid "Postcode / Zip" -msgstr "Postleitzahl" - -#: classes/class-wc-countries.php:774 classes/class-wc-countries.php:784 -#: classes/class-wc-countries.php:804 classes/class-wc-countries.php:859 -#: classes/class-wc-countries.php:883 classes/class-wc-countries.php:933 -#: classes/class-wc-countries.php:957 classes/class-wc-countries.php:998 -msgid "Province" -msgstr "Provinz" - -#: classes/class-wc-countries.php:790 -msgid "Canton" -msgstr "Kanton" - -#: classes/class-wc-countries.php:799 classes/class-wc-countries.php:939 -msgid "Municipality" -msgstr "Gemeinde" - -#: classes/class-wc-countries.php:846 -msgid "Town / District" -msgstr "Stadt / Bezirk" - -#: classes/class-wc-countries.php:849 -msgid "Region" -msgstr "Region" - -#: classes/class-wc-countries.php:962 -msgid "Zip" -msgstr "PLZ" - -#: classes/class-wc-countries.php:965 -msgid "State" -msgstr "Kanton" - -#: classes/class-wc-countries.php:970 -msgid "Postcode" -msgstr "Postleitzahl" - -#: classes/class-wc-countries.php:973 -msgid "County" -msgstr "Land" - -#: classes/class-wc-countries.php:1074 -msgid "Email Address" -msgstr "E-Mail-Adresse" - -#: classes/class-wc-countries.php:1080 -msgid "Phone" -msgstr "Telefon" - -#: classes/class-wc-coupon.php:421 -msgid "Coupon code applied successfully." -msgstr "Coupon Code erfolgreich angewendet." - -#: classes/class-wc-coupon.php:442 -msgid "Coupon is not valid." -msgstr "Coupon ist nicht gültig." - -#: classes/class-wc-coupon.php:445 classes/class-wc-coupon.php:495 -msgid "Coupon does not exist!" -msgstr "Gutschein existiert nicht!" - -#: classes/class-wc-coupon.php:448 -msgid "" -"Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from " -"your order." -msgstr "" -"Entschuldigung, der Coupon \"%s\" scheint ungültig zu sein - er wurde jetzt " -"aus ihrer Bestellung entfernt." - -#: classes/class-wc-coupon.php:451 -msgid "" -"Sorry, it seems the coupon \"%s\" is not yours - it has now been removed " -"from your order." -msgstr "" -"Tut uns leid, aber es scheint so, der Coupon \"%s\" gehört nicht zu Ihnen - " -"Er wurde von Ihrer Bestellung entfernt." - -#: classes/class-wc-coupon.php:454 -msgid "Coupon code already applied!" -msgstr "Coupon Code wurde bereits angewendet." - -#: classes/class-wc-coupon.php:457 -msgid "" -"Sorry, coupon \"%s\" has already been applied and cannot be used in " -"conjunction with other coupons." -msgstr "" -"Bedaure, Coupon \"%s\" wurde bereits angewendet und kann nicht in Verbindung " -"mit anderen Coupons genutzt werden." - -#: classes/class-wc-coupon.php:460 -msgid "Coupon usage limit has been reached." -msgstr "Das Coupon Benutzungslimit ist erreicht." - -#: classes/class-wc-coupon.php:463 -msgid "This coupon has expired." -msgstr "Dieser Coupon ist abgelaufen." - -#: classes/class-wc-coupon.php:466 -msgid "The minimum spend for this coupon is %s." -msgstr "Der Minimalbetrag für diesen Coupon ist %s." - -#: classes/class-wc-coupon.php:469 -msgid "Sorry, this coupon is not applicable to your cart contents." -msgstr "Bedaure, dieser Coupon ist nicht auf Ihren Warenkorb Inhalt anwendbar." - -#: classes/class-wc-coupon.php:472 -msgid "Sorry, this coupon is not valid for sale items." -msgstr "Bedaure, dieser Coupon ist nicht gültig für Angebotsposten." - -#: classes/class-wc-coupon.php:498 -msgid "Please enter a coupon code." -msgstr "Bitte Coupon Code eingeben." - -#: classes/class-wc-customer.php:628 classes/class-wc-customer.php:638 -msgid "File %d" -msgstr "Datei %d" - -#: classes/class-wc-emails.php:246 -msgid "Note" -msgstr "Notiz" - -#: classes/class-wc-emails.php:281 -msgid "Product low in stock" -msgstr "Produkt bald nicht mehr vorrätig" - -#: classes/class-wc-emails.php:286 classes/class-wc-emails.php:318 -#: classes/class-wc-emails.php:362 -msgid "Variation #%s of %s" -msgstr "Variation #%s von %s" - -#: classes/class-wc-emails.php:288 classes/class-wc-emails.php:320 -#: classes/class-wc-emails.php:364 -msgid "Product #%s - %s" -msgstr "Produkt #%s - %s" - -#: classes/class-wc-emails.php:290 -msgid "is low in stock." -msgstr "hat einen niedrigen Lagerbestand." - -#: classes/class-wc-emails.php:313 -msgid "Product out of stock" -msgstr "Produkt ist nicht vorrätig." - -#: classes/class-wc-emails.php:322 -msgid "is out of stock." -msgstr "ist nicht vorrätig." - -#: classes/class-wc-emails.php:357 -msgid "Product Backorder" -msgstr "Produkt Lieferrückstand" - -#: classes/class-wc-emails.php:366 -msgid "%s units of %s have been backordered in order #%s." -msgstr "%s Einheiten von %s wurden vorgemerkt in der Bestellung #%s." - -#: classes/class-wc-order.php:283 -msgctxt "hash before order number" -msgid "#" -msgstr "#" - -#: classes/class-wc-order.php:886 -msgid " %svia %s" -msgstr " %svia %s" - -#: classes/class-wc-order.php:950 -msgid "Cart Subtotal:" -msgstr "Warenkorb Zwischensumme:" - -#: classes/class-wc-order.php:956 -msgid "Cart Discount:" -msgstr "Warenkorbrabatt" - -#: classes/class-wc-order.php:962 -msgid "Shipping:" -msgstr "Lieferung:" - -#: classes/class-wc-order.php:998 -msgid "Order Discount:" -msgstr "Bestellungsrabatt:" - -#: classes/class-wc-order.php:1003 -msgid "Order Total:" -msgstr "Gesamtsumme:" - -#: classes/class-wc-order.php:1017 templates/cart/totals.php:105 -#: templates/checkout/review-order.php:104 -msgid "(Includes %s)" -msgstr "(Enthält %s)" - -#: classes/class-wc-order.php:1168 classes/class-wc-order.php:1170 -#: classes/class-wc-order.php:1173 -msgid "WooCommerce" -msgstr "WooCommerce" - -#: classes/class-wc-order.php:1220 -msgid "Order status changed from %s to %s." -msgstr "Status der Bestellung von %s auf %s geändert." - -#: classes/class-wc-order.php:1452 woocommerce-ajax.php:1089 -#: woocommerce-ajax.php:1090 -msgid "Item #%s stock reduced from %s to %s." -msgstr "Lagerbestand des Produkts #%s reduziert von %s auf %s." - -#: classes/class-wc-order.php:1464 -msgid "Order item stock reduced successfully." -msgstr "Lagerbestand der bestellten Produkte erfolgreich reduziert." - -#: classes/class-wc-product-external.php:56 -msgid "Buy product" -msgstr "Produkt kaufen" - -#: classes/class-wc-shortcodes.php:571 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:274 -#: templates/loop/add-to-cart.php:46 -#: templates/single-product/add-to-cart/grouped.php:45 -#: templates/single-product/add-to-cart/grouped.php:77 -#: templates/single-product/add-to-cart/simple.php:42 -#: templates/single-product/add-to-cart/variable.php:83 -msgid "Add to cart" -msgstr "In den Warenkorb" - -#: classes/emails/class-wc-email-customer-completed-order.php:24 -msgid "Completed order" -msgstr "Bestellung abgeschlossen" - -#: classes/emails/class-wc-email-customer-completed-order.php:25 -msgid "" -"Order complete emails are sent to the customer when the order is marked " -"complete and usual indicates that the order has been shipped." -msgstr "" -"Bestellbestätigungen werden an den Kunden gesendet, wenn die Bestellung als " -"abgeschlossen markiert wurde. Dies ist dann auch ein Zeichen, dass die " -"Bestellung versendet wurde. " - -#: classes/emails/class-wc-email-customer-completed-order.php:27 -msgid "Your order is complete" -msgstr "Ihre Bestellung ist abgeschlossen." - -#: classes/emails/class-wc-email-customer-completed-order.php:28 -msgid "Your {blogname} order from {order_date} is complete" -msgstr "Ihre {blogname} Bestellung vom {order_date} ist abgeschlossen." - -#: classes/emails/class-wc-email-customer-completed-order.php:37 -msgid "Your order is complete - download your files" -msgstr "Ihre Bestellung ist abgeschlossen - laden Sie die Dateien herunter" - -#: classes/emails/class-wc-email-customer-completed-order.php:38 -msgid "" -"Your {blogname} order from {order_date} is complete - download your files" -msgstr "" -"Ihre {blogname} Bestellung vom {order_date} ist abgeschlossen - laden Sie " -"die Dateien herunter" - -#: classes/emails/class-wc-email-customer-completed-order.php:141 -#: classes/emails/class-wc-email-new-order.php:128 -msgid "Subject" -msgstr "Betreff" - -#: classes/emails/class-wc-email-customer-completed-order.php:148 -#: classes/emails/class-wc-email-new-order.php:135 -msgid "Email Heading" -msgstr "E-Mail Kopfzeile" - -#: classes/emails/class-wc-email-customer-completed-order.php:155 -msgid "Subject (downloadable)" -msgstr "Betreff (herunterladbar)" - -#: classes/emails/class-wc-email-customer-completed-order.php:162 -msgid "Email Heading (downloadable)" -msgstr "E-Mail Kopfzeilen (herunterladbar)" - -#: classes/emails/class-wc-email-customer-invoice.php:27 -msgid "Customer invoice" -msgstr "Kundenrechnung" - -#: classes/emails/class-wc-email-customer-invoice.php:28 -msgid "" -"Customer invoice emails can be sent to the user containing order info and " -"payment links." -msgstr "" -"E-Mails mit Kundenrechnungen können zum Kunden gesendet werden, diese " -"beinhalten Bestelldetails und Zahlungslinks." - -#: classes/emails/class-wc-email-customer-invoice.php:33 -msgid "Invoice for order {order_number} from {order_date}" -msgstr "Rechnung für Bestellung {order_number} vom {order_date}" - -#: classes/emails/class-wc-email-customer-invoice.php:34 -msgid "Invoice for order {order_number}" -msgstr "Rechnung für Bestellung {order_number}" - -#: classes/emails/class-wc-email-customer-invoice.php:36 -msgid "Your {blogname} order from {order_date}" -msgstr "Ihre {blogname} Bestellung vom {order_date}" - -#: classes/emails/class-wc-email-customer-invoice.php:37 -msgid "Order {order_number} details" -msgstr "Bestellung {order_number} details" - -#: classes/emails/class-wc-email-customer-invoice.php:158 -msgid "Email subject (paid)" -msgstr "E-Mail Betreff (bezahlt)" - -#: classes/emails/class-wc-email-customer-invoice.php:165 -msgid "Email heading (paid)" -msgstr "E-Mail Kopfzeile (bezahlt)" - -#: classes/emails/class-wc-email-customer-new-account.php:31 -msgid "New account" -msgstr "Neues Konto" - -#: classes/emails/class-wc-email-customer-new-account.php:32 -msgid "" -"Customer new account emails are sent when a customer signs up via the " -"checkout or My Account page." -msgstr "" -"E-Mail an neue Kunden werden gesendet, wenn diese auf der " -"Zahlungsbestätigungsseite oder Mein Konto ein neues Konto angelegt haben." - -#: classes/emails/class-wc-email-customer-new-account.php:37 -msgid "Your account on {blogname}" -msgstr "Ihr Kundenkonto bei {blogname}" - -#: classes/emails/class-wc-email-customer-new-account.php:38 -msgid "Welcome to {blogname}" -msgstr "Willkommen zu {blogname}" - -#: classes/emails/class-wc-email-customer-note.php:29 -msgid "Customer note" -msgstr "Kundenmitteilung" - -#: classes/emails/class-wc-email-customer-note.php:30 -msgid "Customer note emails are sent when you add a note to an order." -msgstr "" -"Kundenbenachrichtungen per E-Mail werden gesendet, wenn Sie eine Notiz an " -"der Bestellung hinzufügen." - -#: classes/emails/class-wc-email-customer-note.php:35 -msgid "Note added to your {blogname} order from {order_date}" -msgstr "Notiz zu Ihrer Bestellung vom {order_date} auf {blogname}" - -#: classes/emails/class-wc-email-customer-note.php:36 -msgid "A note has been added to your order" -msgstr "Ihrer Bestellung wurde ein Hinweis hinzugefügt" - -#: classes/emails/class-wc-email-customer-processing-order.php:24 -msgid "Processing order" -msgstr "Bestellung in Bearbeitung" - -#: classes/emails/class-wc-email-customer-processing-order.php:25 -msgid "" -"This is an order notification sent to the customer after payment containing " -"order details." -msgstr "" -"Diese Bestellbenachrichtung wird dem Kunden mit Details der Bestellung nach " -"der Zahlung gesendet." - -#: classes/emails/class-wc-email-customer-processing-order.php:27 -msgid "Thank you for your order" -msgstr "Vielen Dan für Ihre Bestellung" - -#: classes/emails/class-wc-email-customer-processing-order.php:28 -msgid "Your {blogname} order receipt from {order_date}" -msgstr "Ihre {blogname} Bestellbestätigung vom {order_date}" - -#: classes/emails/class-wc-email-customer-reset-password.php:36 -msgid "Reset password" -msgstr "Passwort zurücksetzen" - -#: classes/emails/class-wc-email-customer-reset-password.php:37 -msgid "" -"Customer reset password emails are sent when a customer resets their " -"password." -msgstr "" -"Kunden erhalten eine E-Mail zum Passwort zurücksetzen, wenn sie ein neues " -"Passwort angefordert haben. " - -#: classes/emails/class-wc-email-customer-reset-password.php:42 -msgid "Password Reset for {blogname}" -msgstr "Passwort Zurücksetzen für {blogname}" - -#: classes/emails/class-wc-email-customer-reset-password.php:43 -msgid "Password Reset Instructions" -msgstr "Anleitung zum Passwort zurücksetzen" - -#: classes/emails/class-wc-email-new-order.php:24 -msgid "New order" -msgstr "Neue Bestellung" - -#: classes/emails/class-wc-email-new-order.php:25 -msgid "New order emails are sent when an order is received/paid by a customer." -msgstr "" -"E-Mails für neue Bestellungen werden gesendet, wenn eine Bestellung " -"eingegangen bzw. vom Kunden bezahlt wurde. " - -#: classes/emails/class-wc-email-new-order.php:27 -msgid "New customer order" -msgstr "Neue Kunden Bestellung" - -#: classes/emails/class-wc-email-new-order.php:28 -msgid "[{blogname}] New customer order ({order_number}) - {order_date}" -msgstr "[{blogname}] Neue Kunden Bestellung ({order_number}) - {order_date}" - -#: classes/emails/class-wc-email-new-order.php:121 -msgid "Recipient(s)" -msgstr "Empfänger" - -#: classes/emails/class-wc-email-new-order.php:123 -msgid "" -"Enter recipients (comma separated) for this email. Defaults to %s." -msgstr "" -"Geben Sie (kommasepariert) die Empfänger für die E-Mail ein. Standards zu " -"%s." - -#: classes/emails/class-wc-email-new-order.php:130 -msgid "" -"This controls the email subject line. Leave blank to use the default " -"subject: %s." -msgstr "" -"Dies kontrolliert die E-Mail Betreffzeile. Lassen Sie dies leer für den " -"Standardbetreff: %s." - -#: classes/emails/class-wc-email-new-order.php:137 -msgid "" -"This controls the main heading contained within the email notification. " -"Leave blank to use the default heading: %s." -msgstr "" -"Dies kontrolliert den Hauptkopfzeile in der E-Mailbenachrichtigung. Leer " -"lassen für die Standardkopfzeile: %s." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:28 -msgid "Bacs" -msgstr "Überweisung" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:65 -msgid "Enable Bank Transfer" -msgstr "Überweisung aktivieren" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:69 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:63 -#: classes/gateways/cod/class-wc-gateway-cod.php:87 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:135 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:126 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:104 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:84 -msgid "Title" -msgstr "Bezeichnung" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:71 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:65 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:137 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:128 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:83 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:58 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:106 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:86 -msgid "This controls the title which the user sees during checkout." -msgstr " " - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:72 -msgid "Direct Bank Transfer" -msgstr "Überweisung" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:76 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:70 -msgid "Customer Message" -msgstr "Kundennachricht" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:78 -msgid "" -"Give the customer instructions for paying via BACS, and let them know that " -"their order won't be shipping until the money is received." -msgstr "" -"Informieren Sie den Kunden über Ihre Zahlungsmodalitäten für die " -"Rechnungsbegleichung per Überweisung und achten Sie darauf anzugeben, das " -"die Bestellung erst ausgeführt wird, nachdem das Geld überwiesen wurde." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:79 -msgid "" -"Make your payment directly into our bank account. Please use your Order ID " -"as the payment reference. Your order wont be shipped until the funds have " -"cleared in our account." -msgstr "" -"Zahlen Sie direkt per Überweisung an uns. Bitte geben Sie Ihre " -"Auftragsnummer im Verwendungszweck an. Ihre Bestellung wird erst nach Erhalt " -"des Rechnungsbetrages an Sie ausgeliefert." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:82 -msgid "Account Details" -msgstr "Benutzerkonto details" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:84 -msgid "Optionally enter your bank details below for customers to pay into." -msgstr "" -"Geben Sie optional Ihre Bankdaten unten an die, die Kunden zum bezahlen " -"nutzen können. " - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:88 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:163 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:203 -msgid "Account Name" -msgstr "Kontobezeichnung" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:94 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:164 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:204 -msgid "Account Number" -msgstr "Kontonummer" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:100 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:165 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:205 -msgid "Sort Code" -msgstr "Bankleitzahl" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:106 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:166 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:206 -msgid "Bank Name" -msgstr "Name der Bank" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:112 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:167 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:207 -msgid "IBAN" -msgstr "IBAN" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:117 -msgid "BIC (formerly Swift)" -msgstr "BIC/SWIFT" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:136 -msgid "BACS Payment" -msgstr "Zahlung per Überweisung" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:137 -msgid "" -"Allows payments by BACS (Bank Account Clearing System), more commonly known " -"as direct bank/wire transfer." -msgstr "Erlauben Sie Zahlungen per Überweisung" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:158 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:200 -msgid "Our Details" -msgstr "Unsere Angaben" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:168 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:208 -msgid "BIC" -msgstr "BIC" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:234 -msgid "Awaiting BACS payment" -msgstr "Erwarte Überweisung" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:28 -msgid "Cheque" -msgstr "Scheck" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:59 -msgid "Enable Cheque Payment" -msgstr "Bezahlung per Scheck aktivieren" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:66 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:90 -msgid "Cheque Payment" -msgstr "Bezahlung per Scheck" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:72 -msgid "" -"Let the customer know the payee and where they should be sending the cheque " -"to and that their order won't be shipping until you receive it." -msgstr "" -"Informieren Sie den Kunden über den Scheckbegünstigten und wohin der Scheck " -"zu senden ist und das die Lieferung erst nach Erhalt desselben erfolgt." - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:73 -msgid "" -"Please send your cheque to Store Name, Store Street, Store Town, Store " -"State / County, Store Postcode." -msgstr " " - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:91 -msgid "" -"Allows cheque payments. Why would you take cheques in this day and age? Well " -"you probably wouldn't but it does allow you to make test purchases for " -"testing order emails and the 'success' pages etc." -msgstr "Erlauben Sie die Bezahlung per Scheck." - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:147 -msgid "Awaiting cheque payment" -msgstr "Erwarte Zahlung per Scheck" - -#: classes/gateways/cod/class-wc-gateway-cod.php:27 -#: classes/gateways/cod/class-wc-gateway-cod.php:54 -#: classes/gateways/cod/class-wc-gateway-cod.php:90 -msgid "Cash on Delivery" -msgstr "Per Nachnahme" - -#: classes/gateways/cod/class-wc-gateway-cod.php:55 -msgid "Have your customers pay with cash (or by other means) upon delivery." -msgstr "" -"Wollen ihre Kunden per Nachnahme bei der Auslieferung zahlen (Bar oder über " -"andere Zahlungsmethoden)?" - -#: classes/gateways/cod/class-wc-gateway-cod.php:80 -msgid "Enable COD" -msgstr "Per Nachnahme aktivieren" - -#: classes/gateways/cod/class-wc-gateway-cod.php:81 -msgid "Enable Cash on Delivery" -msgstr "Per Nachnahme aktivieren" - -#: classes/gateways/cod/class-wc-gateway-cod.php:89 -msgid "Payment method title that the customer will see on your website." -msgstr "" -"Der Titel der Zahlungsweise, welchen der Kunde auf ihrer Webseite sehen " -"sehen wird." - -#: classes/gateways/cod/class-wc-gateway-cod.php:94 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:142 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:133 -#: woocommerce-template.php:751 -msgid "Description" -msgstr "Beschreibung" - -#: classes/gateways/cod/class-wc-gateway-cod.php:96 -msgid "Payment method description that the customer will see on your website." -msgstr "" -"Beschreibung der Zahlungsweise welche der Kunde auf ihrer Webseite sehen " -"wird." - -#: classes/gateways/cod/class-wc-gateway-cod.php:97 -#: classes/gateways/cod/class-wc-gateway-cod.php:103 -msgid "Pay with cash upon delivery." -msgstr "per Nachnahme zahlen" - -#: classes/gateways/cod/class-wc-gateway-cod.php:100 -msgid "Instructions" -msgstr "Anweisungen" - -#: classes/gateways/cod/class-wc-gateway-cod.php:102 -msgid "Instructions that will be added to the thank you page." -msgstr "Anweisungen, die der Danke-Seite hinzugefügt werden" - -#: classes/gateways/cod/class-wc-gateway-cod.php:106 -msgid "Enable for shipping methods" -msgstr "für Versandmethoden verfügbar machen" - -#: classes/gateways/cod/class-wc-gateway-cod.php:111 -msgid "" -"If COD is only available for certain methods, set it up here. Leave blank to " -"enable for all methods." -msgstr "" -"Falls die Zahlung per Nachnahme nur für bestimmte Versandmethoden möglich " -"ist, bitte hier erfassen. Leer lassen, um dies für alle Versandmethoden " -"verfügbar zu machen." - -#: classes/gateways/cod/class-wc-gateway-cod.php:176 -msgid "Payment to be made upon delivery." -msgstr "Zahlung, die bei Anlieferung gemacht wird." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:31 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:160 -msgid "Mijireh Checkout" -msgstr "Mijireh Checkout" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:107 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:285 -msgid "Mijireh error:" -msgstr "Mijireh Fehler:" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:124 -msgid "Enable Mijireh Checkout" -msgstr "Mijireh Checkout aktivieren" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:128 -msgid "Access Key" -msgstr "Zugangsschlüssel" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:130 -msgid "The Mijireh access key for your store." -msgstr "Der Mijireh Zugangsschlüssel für ihren Shop." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:138 -msgid "Credit Card" -msgstr "Kreditkarte" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:144 -msgid "Pay securely with your credit card." -msgstr "Zahlen Sie sicher mit Ihrer Kreditkarte." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:145 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:135 -msgid "This controls the description which the user sees during checkout." -msgstr "" -"Beschreibungstext, den der Benutzer bei der Auswahl dieser Zahlungsmethode " -"sieht." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:164 -msgid "Get started with Mijireh Checkout" -msgstr "Erste Schritte mit Mijireh Checkout" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:165 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site. Mijireh supports a wide variety of payment gateways: Stripe, " -"Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and more." -msgstr "" -"stellt einen voll PCI konforme, sicheren Weg zur Verfügung, um " -"Kreditkartendaten zu sammeln und zu ihrem Payment Gateway zu übertragen und " -"lässt ihnen die Kontrolle über das Design Ihrer Seite. Mijireh unterstützt " -"eine grosse Auswahl an Zahlungsschnittstellen: Stripe, Authorize.net, PayPal, " -"eWay, SagePay, Braintree, PayLeap, und mehr." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:167 -msgid "Join for free" -msgstr "Kostenlos Anmelden" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:167 -msgid "Learn more about WooCommerce and Mijireh" -msgstr "Mehr über WooCommerce und Mijireh" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:171 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site." -msgstr "" -"stellt einen voll PCI konforme, sicheren Weg zur Verfügung, um " -"Kreditkartendaten zu sammeln und zu ihrem Payment Gateway zu übertragen und " -"lässt ihnen die Kontrolle über das Design Ihrer Seite. " - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:34 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:129 -msgid "PayPal" -msgstr "PayPal" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:91 -msgid "PayPal standard" -msgstr "PayPal-Standard" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:92 -msgid "" -"PayPal standard works by sending the user to PayPal to enter their payment " -"information." -msgstr "" -"PayPal-Standard leitet den Benutzer an PayPal weiter, um die " -"Zahlungsinformationen einzugeben." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:104 -msgid "Gateway Disabled" -msgstr "Gateway deaktiviert" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:104 -msgid "PayPal does not support your store currency." -msgstr "PayPal bietet keine Unterstützung für Ihr Währung an." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:122 -msgid "Enable PayPal standard" -msgstr "Aktiviere PayPal-Standard" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:136 -msgid "" -"Pay via PayPal; you can pay with your credit card if you don't have a PayPal " -"account" -msgstr "" -"Zahlung über PayPal; Sie können mit Ihrer Kreditkarte bezahlen, wenn Sie " -"über kein PayPal-Konto verfügen." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:139 -msgid "PayPal Email" -msgstr "PayPal E-Mail" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:141 -msgid "" -"Please enter your PayPal email address; this is needed in order to take " -"payment." -msgstr "" -"Bitte geben Sie Ihre PayPal E-Mailadresse ein; diese wird benötigt, um die " -"Bezahlung abschliessen zu können." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:147 -msgid "Receiver Email" -msgstr "Empfänger E-Mail" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:149 -msgid "" -"If this differs from the email entered above, input your main receiver email " -"for your PayPal account. This is used to validate IPN requests." -msgstr "" -"Falls dies unterschiedlich ist zu der E-Mail, die oben eingegeben wurde, " -"geben Sie bitte Ihre Hauptempfangs-Adresse für Ihren PayPal Account ein. " -"Diese E-Mail Adresse wird genutzt, um die IPN zu validieren." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:155 -msgid "Invoice Prefix" -msgstr "Rechnungspräfix" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:157 -msgid "" -"Please enter a prefix for your invoice numbers. If you use your PayPal " -"account for multiple stores ensure this prefix is unique as PayPal will not " -"allow orders with the same invoice number." -msgstr "" -"Bitte geben Sie einen Präfix für Ihre Rechnungsnummern ein. Falls Sie Ihren " -"PayPal Account für mehrere Shops verwenden, stellen Sie bitte sicher, dass " -"der Präfix einzigartig ist, sonst wird PayPal keine Bestellungen mit der " -"identischen Rechnungsnummer akzeptieren. " - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:162 -msgid "Submission method" -msgstr "Eingabemethode" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:164 -msgid "Use form submission method." -msgstr "Verwenden Sie Eingabemethode-Formular." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:165 -msgid "" -"Enable this to post order data to PayPal via a form instead of using a " -"redirect/querystring." -msgstr "" -"Aktivieren Sie diese Option, um Daten an PayPal über ein Formular anstatt " -"redirect/querystring zu nutzen." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:169 -msgid "Page Style" -msgstr "Seitenstil" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:171 -msgid "" -"Optionally enter the name of the page style you wish to use. These are " -"defined within your PayPal account." -msgstr "" -"Optional können Sie den Namen des gewünschten Seitenstils eingeben. Dies " -"wird innerhalb Ihres PayPal Kontos definiert." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:174 -msgid "Optional" -msgstr "Optional" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:177 -msgid "Shipping options" -msgstr "Versandoptionen" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:182 -msgid "Shipping details" -msgstr "Versanddetails" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:184 -msgid "Send shipping details to PayPal instead of billing." -msgstr "Senden Versanddetails zu PayPal anstatt der Rechnung." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:186 -msgid "" -"PayPal allows us to send 1 address. If you are using PayPal for shipping " -"labels you may prefer to send the shipping address rather than billing." -msgstr "" -"PayPal ermöglicht es uns eine Adresse zu senden. Wenn Sie PayPal für Versand-" -"Etiketten nutzen dann mögen Sie es vielleicht vorziehen, die Lieferadresse " -"anstatt der Rechnung zu schicken." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:190 -msgid "Address override" -msgstr "Adresse Überschreibung" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:192 -msgid "" -"Enable \"address_override\" to prevent address information from being " -"changed." -msgstr "" -"Aktivieren Sie \"address_override\", damit Adressinformationen nicht " -"geändert werden können." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:193 -msgid "" -"PayPal verifies addresses therefore this setting can cause errors (we " -"recommend keeping it disabled)." -msgstr "" -"PayPal verifiziert Adressen, daher kann bei dieser Einstellung Fehler " -"auftreten (wir empfehlen, dass Sie es deaktiviert lassen)." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:197 -msgid "Gateway Testing" -msgstr "Gateway Testen" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:202 -msgid "PayPal sandbox" -msgstr "PayPal-Testumgebung" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:204 -msgid "Enable PayPal sandbox" -msgstr "PayPal-Testumgebung aktivieren" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:206 -msgid "" -"PayPal sandbox can be used to test payments. Sign up for a developer account " -"here." -msgstr "" -"PayPal Sandbox kann verwendet werden, um Zahlungen zu testen. Melden Sie " -"sich für einen Entwickler-Account hier." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:209 -msgid "Debug Log" -msgstr "Debug Log" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:211 -msgid "Enable logging" -msgstr "Logging aktivieren" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:213 -msgid "" -"Log PayPal events, such as IPN requests, inside woocommerce/logs/" -"paypal-%s.txt" -msgstr "" -"PayPal Events aufzeichnen, als IPN Anforderungen innerhalb von " -"woocommerce/logs/paypal-%s.txt" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:322 -msgid "Order %s" -msgstr "Bestellung %s" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:332 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:386 -msgid "Shipping via" -msgstr "Versand via" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:427 -msgid "" -"Thank you for your order. We are now redirecting you to PayPal to make " -"payment." -msgstr "" -"Vielen Dank für Ihre Bestellung. Sie werden nun zu PayPal weitergeleitet, um " -"die Bezahlung vorzunehmen." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:448 -msgid "Pay via PayPal" -msgstr "Bezahlen über PayPal" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:448 -msgid "Cancel order & restore cart" -msgstr "Bestellung abbrechen & Warenkorb zurücksetzen" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:502 -msgid "" -"Thank you for your order, please click the button below to pay with PayPal." -msgstr "" -"Vielen Dank für Ihre Bestellung, bitte klicken Sie auf den Button unten, um " -"mit PayPal zu bezahlen." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:644 -msgid "Validation error: PayPal amounts do not match (gross %s)." -msgstr "Validierungsfehler: Paypal Beträge passen nicht. (Brutto %s)." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:655 -msgid "" -"Validation error: PayPal IPN response from a different email address (%s)." -msgstr "" -"Validierungsfehler: PayPal IPN Rückgabe von unterschiedlichen E-Mail " -"Adressen (%s)." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:673 -msgid "IPN payment completed" -msgstr "IPN-Zahlung vollständig" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:685 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:693 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:711 -msgid "Payment %s via IPN." -msgstr "Zahlung %s über IPN." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:698 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:716 -msgid "Order refunded/reversed" -msgstr "Bestellungen zurückerstattet / storniert" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:699 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:717 -msgid "Order %s has been marked as refunded - PayPal reason code: %s" -msgstr "" -"Bestellung %s wurde als zurückerstattet markiert - PayPal Ursachencode: %s" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:702 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:720 -msgid "Payment for order %s refunded/reversed" -msgstr "Die Bezahlung der Bestellung %s wurde zurückerstattet" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:26 -msgid "Google Analytics" -msgstr "Google Analytics" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:27 -msgid "" -"Google Analytics is a free service offered by Google that generates detailed " -"statistics about the visitors to a website." -msgstr "" -"Google Analytics ist einer freier Webservice von Google, mit welchem " -"detaillierte Statistiken über die Besucher der Webseite erstellt werden " -"können." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:63 -msgid "Google Analytics ID" -msgstr "Google Analytics ID" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:64 -msgid "" -"Log into your google analytics account to find your ID. e.g. UA-XXXXX-" -"X" -msgstr "" -"Bei Google Analytics anmelden, um die ID zu finden, z.B.: UA-XXXXX-X" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:69 -msgid "Set Domain Name" -msgstr "Domainnamen setzen" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:70 -msgid "" -"(Optional) Sets the _setDomainName variable. See " -"here for more information." -msgstr "" -"(Optional) Setzt die _setDomainName Variable. hier klicken für weitere Informationen" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:75 -msgid "Tracking code" -msgstr "Sendungsnummer" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:76 -msgid "" -"Add tracking code to your site's footer. You don't need to enable this if " -"using a 3rd party analytics plugin." -msgstr "" -"Tracking-Code in den Footer einfügen. Sie müssen dies nicht aktivieren, wenn " -"Sie bereits ein anderes Statistiktool einsetzen." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:82 -msgid "Add eCommerce tracking code to the thankyou page" -msgstr "eCommerce Tracking-Code auf der Danke-Seite hinzufügen" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:88 -msgid "Add event tracking code for add to cart actions" -msgstr "Eine Eventnachverfolgung per Code an die Warenkorbaktionen binden" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:120 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:180 -#: woocommerce-ajax.php:1652 -msgid "Guest" -msgstr "Gast" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:218 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:275 -#: templates/single-product/meta.php:19 -msgid "SKU:" -msgstr "ArtNr.:" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:273 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:293 -#: woocommerce.php:982 -msgid "Products" -msgstr "Produkte" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:294 -msgid "Add to Cart" -msgstr "Zum Warenkorb hinzufügen" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:26 -msgid "ShareDaddy" -msgstr "ShareDaddy" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:27 -msgid "ShareDaddy is a sharing plugin bundled with JetPack." -msgstr "ShareDaddy ist ein Sharing Plugin zusammen mit JetPack." - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:51 -msgid "Output ShareDaddy button?" -msgstr "ShareDaddy Schaltfläche anzeigen?" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:52 -msgid "Enable this option to show the ShareDaddy button on the product page." -msgstr "" -"Aktivieren Sie diese Option, um den ShareDaddy Button auf der Produkt-Seite " -"zu zeigen." - -#: classes/integrations/sharethis/class-wc-sharethis.php:29 -msgid "ShareThis" -msgstr "ShareThis" - -#: classes/integrations/sharethis/class-wc-sharethis.php:30 -msgid "" -"ShareThis offers a sharing widget which will allow customers to share links " -"to products with their friends." -msgstr "" -"ShareThis stellt ein Widget zu Verfügung, welchen den Benutzern erlaubt, " -"einfach Links zu den Produkten mit seinen Freunden zu teilen." - -#: classes/integrations/sharethis/class-wc-sharethis.php:63 -msgid "ShareThis Publisher ID" -msgstr "Ihre ShareThis-ID" - -#: classes/integrations/sharethis/class-wc-sharethis.php:64 -msgid "" -"Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons on " -"product pages." -msgstr "" -"Geben Sie Ihre %1$sShareThis publisher ID%2$s ein, um Buttons für soziale " -"Netzwerke auf Produktseiten einzublenden." - -#: classes/integrations/sharethis/class-wc-sharethis.php:69 -msgid "ShareThis Code" -msgstr "ShareThis Code" - -#: classes/integrations/sharethis/class-wc-sharethis.php:70 -msgid "You can tweak the ShareThis code by editing this option." -msgstr "Sie können den ShareThis Code einstellen beim editieren dieser Option." - -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:22 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:329 -msgid "ShareYourCart" -msgstr "ShareYourCart" - -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:23 -msgid "" -"Increase your social media exposure by 10 percent! ShareYourCart helps you " -"get more customers by motivating satisfied customers to talk with their " -"friends about your products. For help with ShareYourCart view the documentation." -msgstr "" -"Erhöhen Sie Ihre Social Media Sichtbarkeit um 10 Prozent! ShareYourCart " -"hilft Ihnen mehr Kunden zu gewinnen durch Motivierung bestehender Kunden, " -"die ihren Freunden Produkte empfehlen. Für weitere Hilfe zu ShareYourCart " -"schauen Sie sich die Dokumentation an. " - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:328 -msgid "Share your cart settings" -msgstr "Share your cart Einstellungen" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:342 -msgid "Button" -msgstr "Schaltfläche" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:343 -msgid "Customize Button" -msgstr "Schaltfläche anpassen" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:351 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:352 -msgid "Documentation" -msgstr "Dokumentation" - -#: classes/integrations/shareyourcart/views/admin-page.php:33 -msgid "Setup your ShareYourCart account" -msgstr "Richten Sie ihr ShareYourCart Konto ein" - -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Create an account" -msgstr "Benutzerkonto erstellen" - -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Can't access your account?" -msgstr "Sie können in Ihr Konto nicht einloggen?" - -#: classes/integrations/shareyourcart/views/admin-page.php:100 -msgid "Configure" -msgstr "Konfigurieren" - -#: classes/integrations/shareyourcart/views/admin-page.php:110 -#: classes/integrations/shareyourcart/views/button-settings-page.php:120 -msgid "Save changes" -msgstr "Änderungen speichern" - -#: classes/integrations/shareyourcart/views/button-settings-page.php:8 -#: classes/integrations/shareyourcart/views/button-settings-page.php:11 -msgid "Button style" -msgstr "Button Stil" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:25 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:85 -msgid "Flat Rate" -msgstr "Flat Rate" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:27 -msgid "Flat rates let you define a standard rate per item, or per order." -msgstr "" -"Mit Versandkostenpauschalen können Sie Standardbeträge pro Produkt oder pro " -"Bestellung definieren." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:78 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:52 -msgid "Enable this shipping method" -msgstr "Aktiviere diese Versandmethode" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:82 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:81 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:56 -msgid "Method Title" -msgstr "Bezeichnung" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:89 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:63 -msgid "Availability" -msgstr "Verfügbarkeit der Versandart" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:93 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:148 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:104 -msgid "All allowed countries" -msgstr "Alle zugelassenen Länder" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:95 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:99 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:98 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:149 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:153 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:105 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:109 -msgid "Specific Countries" -msgstr "Ausgewählte Länder" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:107 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:81 -msgid "Tax Status" -msgstr "Versteuerung" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:111 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:85 -msgid "Taxable" -msgstr "zu versteuern" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:112 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:86 -msgid "None" -msgstr "Keine" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:116 -msgid "Cost per order" -msgstr "Kosten pro Bestellung" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:122 -msgid "" -"Enter a cost (excluding tax) per order, e.g. 5.00. Leave blank to disable." -msgstr "" -"Geben Sie die Kosten (exklusive Steuer) pro Bestellung ein. bspw. 5.00. Leer " -"lassen zum deaktivieren. " - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:128 -msgid "Additional Rates" -msgstr "Weitere Raten" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:130 -msgid "" -"Optional extra shipping options with additional costs (one per line): Option " -"Name | Additional Cost | Per Cost Type (order, class, or item) Example: " -"Priority Mail | 6.95 | order." -msgstr "" -"Optionale extra Versandoptionen mit zusätzlichen Kosten (eine pro Zeile): " -"Option Name | zusätzliche Kosten | Pro Kostentyp (order, class oder item) " -"Beispiel: Express Zustellung | 6.95 | order." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:133 -msgid "Option Name | Additional Cost | Per Cost Type (order, class, or item)" -msgstr "" -"Option Name | zusätzliche Kosten | Pro Kostentyp (order, class oder item)" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:136 -msgid "Additional Costs" -msgstr "zusätzliche Kosten" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:138 -msgid "" -"Additional costs can be added below - these will all be added to the per-" -"order cost above." -msgstr "" -"Zusätzliche Kosten können unten hinzugefügt werden - diese werden zu allen " -"Pro-Bestellung-Kosten oben hinzugefügt." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:141 -msgid "Costs Added..." -msgstr "Kosten hinzugefügt…" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:145 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:94 -msgid "Per Order - charge shipping for the entire order as a whole" -msgstr "Pro Bestellung - berechne Versandkosten für die komplette Bestellung" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:146 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:95 -msgid "Per Item - charge shipping for each item individually" -msgstr "Pro Position - berechne Versandkosten für jede Position individuell" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:147 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:96 -msgid "Per Class - charge shipping for each shipping class in an order" -msgstr "" -"Pro Klasse - berechne den Versand für jede Versandklasse in einer Bestellung" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:154 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:120 -msgid "Minimum Handling Fee" -msgstr "Mindestwert Bearbeitungsgebühr" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:160 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:126 -msgid "" -"Enter a minimum fee amount. Fee's less than this will be increased. Leave " -"blank to disable." -msgstr "" -"Geben Sie einen Betrag für die Mindestgebühr ein. Gebühren weniger als " -"dieser Betrag werden erhöht. Leer lassen um zu deaktivieren." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:479 -msgid "Costs" -msgstr "Kosten" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:485 -#: woocommerce.php:891 -msgid "Shipping Class" -msgstr "Versandklasse" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:486 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:100 -msgid "Cost" -msgstr "Preis" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:486 -msgid "Cost, excluding tax." -msgstr "Kosten, exkl. Steuern." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:487 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:112 -msgid "Handling Fee" -msgstr "Bearbeitungsgebühr" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:487 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -msgstr "" -"Gebühr ohne Steuer. Geben sie einen Betrag an, z.B.: 2,50, oder einen " -"Prozentsatz, z.B.: 5%" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:492 -msgid "+ Add Cost" -msgstr "+ Kosten hinzufügen" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:492 -msgid "Delete selected costs" -msgstr "Selektierte Kosten löschen" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:498 -msgid "Any class" -msgstr "Jede Klasse" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:499 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:500 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:110 -#: templates/order/order-details.php:119 templates/order/order-details.php:134 -msgid "N/A" -msgstr "nicht lieferbar" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:518 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:548 -msgid "Select a class…" -msgstr "Wählen Sie eine Klasse…" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:523 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:524 -msgid "0.00" -msgstr "0.00" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:562 -msgid "Delete the selected rates?" -msgstr "Die gewählten Gebühren löschen?" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:25 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:145 -msgid "Free Shipping" -msgstr "Kostenloser Versand" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:77 -msgid "Enable Free Shipping" -msgstr "Kostenlosen Versand aktivieren" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:88 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:143 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:99 -msgid "Method availability" -msgstr "Verfügbarkeit der Versandart" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:106 -msgid "Free Shipping Requires..." -msgstr "Versandkostenfrei benötigt…" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:111 -msgid "A valid free shipping coupon" -msgstr "einen gültigen Versandkostenfrei-Coupon" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:112 -msgid "A minimum order amount (defined below)" -msgstr "Mindesbestellwert (unten definiert)" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:113 -msgid "A minimum order amount OR a coupon" -msgstr "Mindestbestelltwert ODER einen Coupon" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:114 -msgid "A minimum order amount AND a coupon" -msgstr "Mindestbestellwert UND einen Coupon" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:118 -msgid "Minimum Order Amount" -msgstr "Untergrenze Bestellsumme" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:124 -msgid "" -"Users will need to spend this amount to get free shipping (if enabled above)." -msgstr "" -"Benutzer müssen diesen Betrag ausgeben, um versandkostenfrei zu bestellen " -"(falls oben aktiviert)" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:29 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:59 -msgid "International Delivery" -msgstr "Internationaler Versand" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:30 -msgid "International delivery based on flat rate shipping." -msgstr "Internationaler Versand basierend auf Pauschalbeträgen." - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:68 -msgid "Selected countries" -msgstr "Ausgewählte Länder" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:69 -msgid "Excluding selected countries" -msgstr "Ausgewählte Länder ausschliessen" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:73 -msgid "Countries" -msgstr "Länder" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:90 -msgid "Cost Added..." -msgstr "Kosten hinzugefügt…" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:106 -msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -msgstr "Kosten exklusive Mehrwertsteuer. Geben Sie einen Wert ein, z.B. 2.50." - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:114 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. " -"Leave blank to disable." -msgstr "" -"Gebühr exklusive Mehrwertsteuer. Geben Sie einen Wert ein, z.B. 2.50, oder " -"einen Prozentsatz, z.B. 5%. Zum Deaktivieren leer lassen." - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:25 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:107 -msgid "Local Delivery" -msgstr "Lokaler Versand" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:98 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:78 -msgid "Enable" -msgstr "Aktivieren" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:100 -msgid "Enable local delivery" -msgstr "Lokalen Versand aktivieren" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:111 -msgid "Fee Type" -msgstr "Gebührenart" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:113 -msgid "How to calculate delivery charges" -msgstr "Wie sollen die Versandkosten berechnet werden" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 -msgid "Fixed amount" -msgstr "Fester Betrag" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:117 -msgid "Percentage of cart total" -msgstr "Prozentual vom Gesamtbetrag" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:118 -msgid "Fixed amount per product" -msgstr "Fester Betrag pro Produkt" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:123 -msgid "Delivery Fee" -msgstr "Versandgebühr" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:129 -msgid "" -"What fee do you want to charge for local delivery, disregarded if you choose " -"free. Leave blank to disable." -msgstr "" -"Welche Gebühr wollen Sie für die lokale Auslieferung verlangen, bleibt " -"unberücksichtigt, wenn Sie kostenlos wählen. Leer lassen um zu deaktivieren." - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:135 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:91 -msgid "Zip/Post Codes" -msgstr "PLZ" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:137 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:93 -msgid "" -"What zip/post codes would you like to offer delivery to? Separate codes with " -"a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -msgstr "" -"In welchen Postleitzahlenbereich wollen Sie anbieten zu liefern? Separieren " -"Sie die Codes mit einem Komma. Platzhalter werden aktzeptiert bspw. 54*" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:172 -msgid "" -"Local delivery is a simple shipping method for delivering orders locally." -msgstr "" -"Lokaler Versand ist eine Versandmethode Bestellungen lokal zu versenden." - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:25 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:87 -msgid "Local Pickup" -msgstr "Abholung vor Ort" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:80 -msgid "Enable local pickup" -msgstr "Abholung vor Ort aktivieren" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:117 -msgid "Apply base tax rate" -msgstr "Basis Mehrwertsteuer anwenden" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:119 -msgid "" -"When this shipping method is chosen, apply the base tax rate rather than for " -"the customer's given address." -msgstr "" -"Wenn diese Versandmethode ausgewählt ist, wird die Basis Mehrwertsteuer " -"anstatt der Rate basierend auf der Kundenadresse angewendet. " - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:134 -msgid "" -"Local pickup is a simple method which allows the customer to pick up their " -"order themselves." -msgstr "" -"Abholung vor Ort ist eine einfache Methode, die dem Kunden erlaubt seine " -"Bestellung selber abzuholen." - -#: classes/shortcodes/class-wc-shortcode-cart.php:53 -#: woocommerce-functions.php:1701 -msgid "Please enter a valid postcode/ZIP." -msgstr "Bitte geben Sie eine gültige Postleitzahl/PLZ ein." - -#: classes/shortcodes/class-wc-shortcode-cart.php:64 -#: classes/shortcodes/class-wc-shortcode-cart.php:70 -msgid "Shipping costs updated." -msgstr "Versandkosten aktualisiert." - -#: classes/shortcodes/class-wc-shortcode-checkout.php:45 -msgid "" -"WooCommerce Config Error: The checkout thanks/pay pages are missing - these " -"pages are required for the checkout to function correctly. Please configure " -"the pages here." -msgstr "" -"WooCommerce Konfigurationsfehler: Die Seiten für die Bestellbestätigung bzw. " -"Zahlung erfolgt fehlen. Diese Seiten werden benötigt, um den Bestellvorgang " -"korrekt abzuwickeln. Bitte konfigurieren Sie diese Seiten hier." - -#: classes/shortcodes/class-wc-shortcode-checkout.php:73 -msgid "" -"The order totals have been updated. Please confirm your order by pressing " -"the Place Order button at the bottom of the page." -msgstr "" -"Der Gesamtbetrag der Bestellung wurde aktualisiert. Bitte bestätigen Sie " -"Ihre Bestellung, indem Sie den Bestellung ausführen-Button am Ende der Seite " -"klicken." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:78 -#: woocommerce-functions.php:1623 -msgid "Please enter your password." -msgstr "Bitte geben Sie Ihr Passwort ein." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:93 -msgid "Your password has been reset." -msgstr "Ihr Passwort wurde zurückgesetzt." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:93 -msgid "Log in" -msgstr "Anmelden" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:114 -msgid "Enter a username or e-mail address." -msgstr "Geben Sie Ihren Benutzernamen oder E-Mailadresse ein" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:121 -msgid "There is no user registered with that email address." -msgstr "Es ist kein Benutzer mit dieser E-Mailadresse registriert." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:136 -msgid "Invalid username or e-mail." -msgstr "Ungültiger Benutzername oder E-Mail" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:150 -msgid "Password reset is not allowed for this user" -msgstr "Für diesen Benutzer ist es nicht erlaubt das Passwort zurückzusetzen." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:178 -msgid "Check your e-mail for the confirmation link." -msgstr "" -"Bitte überprüfen Sie Ihren Posteingang. Sie haben eine E-Mail mit einem " -"Bestätigungslink erhalten." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:198 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:203 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:210 -msgid "Invalid key" -msgstr "Ungültiger Schlüssel" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:51 -msgid "Please enter a valid order ID" -msgstr "Bitte geben Sie eine gültige Bestellnummer ein." - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:55 -msgid "Please enter a valid order email" -msgstr "Bitte geben Sie eine gültige Bestell E-Mailadresse ein" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:74 -msgid "Sorry, we could not find that order id in our database." -msgstr "" -"Entschuldigung, wir konnten diese Bestellung nicht in unserer Datenbank " -"finden." - -#: classes/shortcodes/class-wc-shortcode-pay.php:64 -#: classes/shortcodes/class-wc-shortcode-pay.php:118 -msgid "" -"Your order has already been paid for. Please contact us if you need " -"assistance." -msgstr "" -"Ihre Bestellung wurde bereits bezahlt. Bitte nehmen Sie mit uns Kontakt auf, " -"wenn Sie Hilfe benötigen." - -#: classes/shortcodes/class-wc-shortcode-pay.php:69 -#: classes/shortcodes/class-wc-shortcode-pay.php:125 -#: classes/shortcodes/class-wc-shortcode-view-order.php:51 -#: woocommerce-functions.php:909 woocommerce-functions.php:989 -msgid "Invalid order." -msgstr "Ungültige Bestellung." - -#: classes/shortcodes/class-wc-shortcode-pay.php:90 -#: templates/checkout/thankyou.php:40 -#: templates/emails/customer-completed-order.php:18 -#: templates/emails/customer-invoice.php:22 -#: templates/emails/customer-note.php:22 -#: templates/emails/customer-processing-order.php:18 -msgid "Order:" -msgstr "Bestellung:" - -#: classes/shortcodes/class-wc-shortcode-pay.php:94 -#: templates/checkout/thankyou.php:44 -msgid "Date:" -msgstr "Datum:" - -#: classes/shortcodes/class-wc-shortcode-pay.php:98 -#: templates/checkout/thankyou.php:48 -msgid "Total:" -msgstr "Gesamt:" - -#: classes/shortcodes/class-wc-shortcode-pay.php:103 -#: templates/checkout/thankyou.php:53 -msgid "Payment method:" -msgstr "Zahlungsart:" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:51 -msgid "My Account →" -msgstr "Mein Konto →" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:58 -msgid "" -"Order %s made on %s" -msgstr "" -"Bestellung %s stellt auf %s" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:59 -msgid "Order status: %s" -msgstr "Bestellstatus: %s" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:65 -#: templates/order/tracking.php:31 -msgid "Order Updates" -msgstr "Aktualisierungen zur Bestellung" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:71 -msgid "l jS \\of F Y, h:ia" -msgstr "l jS \\of F Y, h:ia" - -#: classes/widgets/class-wc-widget-best-sellers.php:31 -msgid "Display a list of your best selling products on your site." -msgstr "Zeigt die Liste Ihrer Verkaufsschlager auf Ihrer Seite." - -#: classes/widgets/class-wc-widget-best-sellers.php:33 -msgid "WooCommerce Best Sellers" -msgstr "WooCommerce Verkaufsschlager" - -#: classes/widgets/class-wc-widget-best-sellers.php:71 -msgid "Best Sellers" -msgstr "Verkaufsschlager" - -#: classes/widgets/class-wc-widget-best-sellers.php:189 -#: classes/widgets/class-wc-widget-cart.php:109 -#: classes/widgets/class-wc-widget-featured-products.php:169 -#: classes/widgets/class-wc-widget-layered-nav.php:349 -#: classes/widgets/class-wc-widget-onsale.php:176 -#: classes/widgets/class-wc-widget-price-filter.php:179 -#: classes/widgets/class-wc-widget-product-categories.php:185 -#: classes/widgets/class-wc-widget-product-search.php:91 -#: classes/widgets/class-wc-widget-product-tag-cloud.php:101 -#: classes/widgets/class-wc-widget-random-products.php:134 -#: classes/widgets/class-wc-widget-recent-products.php:170 -#: classes/widgets/class-wc-widget-recent-reviews.php:158 -#: classes/widgets/class-wc-widget-recently-viewed.php:166 -#: classes/widgets/class-wc-widget-top-rated-products.php:156 -msgid "Title:" -msgstr "Bezeichnung:" - -#: classes/widgets/class-wc-widget-best-sellers.php:192 -#: classes/widgets/class-wc-widget-featured-products.php:172 -#: classes/widgets/class-wc-widget-onsale.php:179 -#: classes/widgets/class-wc-widget-random-products.php:139 -#: classes/widgets/class-wc-widget-recent-products.php:173 -#: classes/widgets/class-wc-widget-recent-reviews.php:161 -#: classes/widgets/class-wc-widget-recently-viewed.php:169 -#: classes/widgets/class-wc-widget-top-rated-products.php:159 -msgid "Number of products to show:" -msgstr "Anzahl der Produkte, die angezeigt werden sollen:" - -#: classes/widgets/class-wc-widget-best-sellers.php:196 -msgid "Hide free products" -msgstr "Kostenlose Produkte verbergen" - -#: classes/widgets/class-wc-widget-cart.php:33 -msgid "Display the user's Cart in the sidebar." -msgstr "Zeige den Warenkorb des Benutzers in der Sidebar." - -#: classes/widgets/class-wc-widget-cart.php:35 -msgid "WooCommerce Cart" -msgstr "WooCommerce Warenkorb" - -#: classes/widgets/class-wc-widget-cart.php:113 -msgid "Hide if cart is empty" -msgstr "Ausblenden wenn Warenkorb leer ist" - -#: classes/widgets/class-wc-widget-featured-products.php:35 -msgid "Display a list of featured products on your site." -msgstr "Gibt eine Übersicht empfohlener Produkte auf Ihrer Seite aus." - -#: classes/widgets/class-wc-widget-featured-products.php:37 -msgid "WooCommerce Featured Products" -msgstr "WooCommerce Empfohlene Produkte" - -#: classes/widgets/class-wc-widget-featured-products.php:75 -msgid "Featured Products" -msgstr "Empfohlene Produkte" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:31 -msgid "Shows active layered nav filters so users can see and deactivate them." -msgstr "" -"Zeige aktive überlagernde Nav Filter, so dass die Benutzer diese sehen und " -"deaktivieren können." - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:33 -msgid "WooCommerce Layered Nav Filters" -msgstr "WooCommerce überlagernde Nav Filter" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:62 -msgid "Active filters" -msgstr "Aktive Filter" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:93 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Remove filter" -msgstr "Filter entfernen" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -msgid "Min" -msgstr "Min" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Max" -msgstr "Max" - -#: classes/widgets/class-wc-widget-layered-nav.php:31 -msgid "" -"Shows a custom attribute in a widget which lets you narrow down the list of " -"products when viewing product categories." -msgstr "" -"Zeigt ein benutzerdefiniertes Attribut in einem Widget an, welches die " -"angezeigte Produktübersicht eingrenzt, wenn man Produktkategorien betrachtet." - -#: classes/widgets/class-wc-widget-layered-nav.php:33 -msgid "WooCommerce Layered Nav" -msgstr "WooCommerce Layer-Navigation" - -#: classes/widgets/class-wc-widget-layered-nav.php:100 -msgid "Any %s" -msgstr "Beliebige %s" - -#: classes/widgets/class-wc-widget-layered-nav.php:352 -msgid "Attribute:" -msgstr "Attribut:" - -#: classes/widgets/class-wc-widget-layered-nav.php:363 -msgid "Display Type:" -msgstr "Art der Anzeige:" - -#: classes/widgets/class-wc-widget-layered-nav.php:365 -msgid "List" -msgstr "Liste" - -#: classes/widgets/class-wc-widget-layered-nav.php:366 -msgid "Dropdown" -msgstr "Dropdown" - -#: classes/widgets/class-wc-widget-layered-nav.php:369 -msgid "Query Type:" -msgstr "Abfrage-Typ:" - -#: classes/widgets/class-wc-widget-layered-nav.php:371 -msgid "AND" -msgstr "UND" - -#: classes/widgets/class-wc-widget-layered-nav.php:372 -msgid "OR" -msgstr "ODER" - -#: classes/widgets/class-wc-widget-onsale.php:31 -msgid "Display a list of your on-sale products on your site." -msgstr "Liste der Produkte im Ausverkauf anzeigen." - -#: classes/widgets/class-wc-widget-onsale.php:33 -msgid "WooCommerce On-sale" -msgstr "WooCommerce Sonderangebot" - -#: classes/widgets/class-wc-widget-onsale.php:70 -msgid "On Sale" -msgstr "Sonderangebot" - -#: classes/widgets/class-wc-widget-price-filter.php:33 -msgid "" -"Shows a price filter slider in a widget which lets you narrow down the list " -"of shown products when viewing product categories." -msgstr "" -"Zeigt einen Preisfilter-Schieberegler in einem Widget an, mit welchem Sie " -"die angezeigten Produkte eingrenzen können, wenn Sie bestimmte " -"Produktkategorien betrachten." - -#: classes/widgets/class-wc-widget-price-filter.php:35 -msgid "WooCommerce Price Filter" -msgstr "WooCommerce Preisfilter" - -#: classes/widgets/class-wc-widget-price-filter.php:136 -msgid "Min price" -msgstr "Min. Preis" - -#: classes/widgets/class-wc-widget-price-filter.php:137 -msgid "Max price" -msgstr "Max Preis" - -#: classes/widgets/class-wc-widget-price-filter.php:138 -msgid "Filter" -msgstr "Eingrenzen" - -#: classes/widgets/class-wc-widget-price-filter.php:140 -msgid "Price:" -msgstr "Preis:" - -#: classes/widgets/class-wc-widget-price-filter.php:162 -msgid "Filter by price" -msgstr "Preisfilter" - -#: classes/widgets/class-wc-widget-product-categories.php:33 -msgid "A list or dropdown of product categories." -msgstr "Eine Liste oder Drop-down-Menü der Produktkategorien" - -#: classes/widgets/class-wc-widget-product-categories.php:35 -msgid "WooCommerce Product Categories" -msgstr "WooCommerce Produkt-Kategorien" - -#: classes/widgets/class-wc-widget-product-categories.php:57 -#: woocommerce.php:821 woocommerce.php:823 -msgid "Product Categories" -msgstr "Produktkategorien" - -#: classes/widgets/class-wc-widget-product-categories.php:129 -msgid "No product categories exist." -msgstr "Es existieren keine Produktkategorien." - -#: classes/widgets/class-wc-widget-product-categories.php:188 -msgid "Order by:" -msgstr "Sortiert nach:" - -#: classes/widgets/class-wc-widget-product-categories.php:190 -msgid "Category Order" -msgstr "Kategoriesortierung" - -#: classes/widgets/class-wc-widget-product-categories.php:191 -#: templates/single-product-reviews.php:84 woocommerce-ajax.php:1171 -msgid "Name" -msgstr "Name" - -#: classes/widgets/class-wc-widget-product-categories.php:195 -msgid "Show as dropdown" -msgstr "Als Drop-down-Menü anzeigen" - -#: classes/widgets/class-wc-widget-product-categories.php:198 -msgid "Show post counts" -msgstr "Produktmenge anzeigen" - -#: classes/widgets/class-wc-widget-product-categories.php:201 -msgid "Show hierarchy" -msgstr "Hierarchie anzeigen" - -#: classes/widgets/class-wc-widget-product-categories.php:204 -msgid "Only show children for the current category" -msgstr "Zeige nur Kinder der aktuellen Kategorie" - -#: classes/widgets/class-wc-widget-product-search.php:31 -msgid "A Search box for products only." -msgstr "Ein Suchfeld nur für Produkte." - -#: classes/widgets/class-wc-widget-product-search.php:33 -msgid "WooCommerce Product Search" -msgstr "WooCommerce Produkt-Suche" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:31 -msgid "Your most used product tags in cloud format." -msgstr "" -"Ihre am häufigsten verwendeten Produktschlagwörter als Wolke dargestellt." - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:33 -msgid "WooCommerce Product Tags" -msgstr "WooCommerce Produkt-Schlagwörter" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:58 -#: woocommerce.php:857 woocommerce.php:859 -msgid "Product Tags" -msgstr "Produkt Schlagwörter" - -#: classes/widgets/class-wc-widget-random-products.php:24 -msgid "WooCommerce Random Products" -msgstr "WooCommerce Zufällige Produkte" - -#: classes/widgets/class-wc-widget-random-products.php:27 -msgid "Display a list of random products on your site." -msgstr "Zeige eine Liste von zufälligen Produkten auf ihrer Seite." diff --git a/i18n/languages/woocommerce-de_DE.mo b/i18n/languages/woocommerce-de_DE.mo deleted file mode 100644 index 19d2b89b06f..00000000000 Binary files a/i18n/languages/woocommerce-de_DE.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-de_DE.po b/i18n/languages/woocommerce-de_DE.po deleted file mode 100644 index 2ae1e0da731..00000000000 --- a/i18n/languages/woocommerce-de_DE.po +++ /dev/null @@ -1,6932 +0,0 @@ -# Translation of WooCommerce Core in German -# This file is distributed under the same license as the WooCommerce Core package. -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce 2.0.9 Admin\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-05-10 11:38:26+00:00\n" -"PO-Revision-Date: 2013-06-06 19:35+0100\n" -"Last-Translator: Birgit Olzem \n" -"Language-Team: Inpsyde GmbH \n" -"Language: german\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Poedit 1.5.5\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2\n" -"X-Poedit-Basepath: ../../../\n" - -#: classes/widgets/class-wc-widget-random-products.php:46 -msgid "Random Products" -msgstr "Zufällige Produkte" - -#: classes/widgets/class-wc-widget-random-products.php:145 -#: classes/widgets/class-wc-widget-recent-products.php:177 -msgid "Show hidden product variations" -msgstr "Zeige versteckte Produktvarianten" - -#: classes/widgets/class-wc-widget-recent-products.php:31 -msgid "Display a list of your most recent products on your site." -msgstr "" -"Zeigt eine Liste der erst kürzlich erschienenen Produkte auf Ihrer Seite an." - -#: classes/widgets/class-wc-widget-recent-products.php:33 -msgid "WooCommerce Recent Products" -msgstr "WooCommerce Neueste Produkte" - -#: classes/widgets/class-wc-widget-recent-products.php:70 -msgid "New Products" -msgstr "Neue Produkte" - -#: classes/widgets/class-wc-widget-recent-reviews.php:31 -msgid "Display a list of your most recent reviews on your site." -msgstr "" -"Stellt eine Übersicht der kürzlich abgegebenen Rezensionen auf Ihrer Seite " -"bereit." - -#: classes/widgets/class-wc-widget-recent-reviews.php:33 -msgid "WooCommerce Recent Reviews" -msgstr "WooCommerce Neueste Bewertungen" - -#: classes/widgets/class-wc-widget-recent-reviews.php:71 -msgid "Recent Reviews" -msgstr "Neue Bewertungen" - -#: classes/widgets/class-wc-widget-recent-reviews.php:97 -msgctxt "by comment author" -msgid "by %1$s" -msgstr "von %1$s" - -#: classes/widgets/class-wc-widget-recently-viewed.php:31 -msgid "Display a list of recently viewed products." -msgstr "Gib eine Liste der kürzlich angesehenen Produkte aus." - -#: classes/widgets/class-wc-widget-recently-viewed.php:33 -msgid "WooCommerce Recently Viewed Products" -msgstr "WooCommerce Produktverlauf" - -#: classes/widgets/class-wc-widget-recently-viewed.php:76 -msgid "Recently viewed" -msgstr "Zuletzt angesehen" - -#: classes/widgets/class-wc-widget-top-rated-products.php:33 -msgid "Display a list of top rated products on your site." -msgstr "Zeige eine Liste der als am besten bewerteten Produkte an." - -#: classes/widgets/class-wc-widget-top-rated-products.php:35 -msgid "WooCommerce Top Rated Products" -msgstr "WooCommerce Bestbewertete Produkte" - -#: classes/widgets/class-wc-widget-top-rated-products.php:72 -msgid "Top Rated Products" -msgstr "Bestbewertete Produkte" - -#: i18n/states/AU.php:13 -msgid "Australian Capital Territory" -msgstr "Australisches Hauptstadtterritorium" - -#: i18n/states/AU.php:14 -msgid "New South Wales" -msgstr "Neusüdwales" - -#: i18n/states/AU.php:15 -msgid "Northern Territory" -msgstr "Nordterritorium" - -#: i18n/states/AU.php:16 -msgid "Queensland" -msgstr "Queensland" - -#: i18n/states/AU.php:17 -msgid "South Australia" -msgstr "Südaustralien" - -#: i18n/states/AU.php:18 -msgid "Tasmania" -msgstr "Tasmanien" - -#: i18n/states/AU.php:19 -msgid "Victoria" -msgstr "Victoria" - -#: i18n/states/AU.php:20 -msgid "Western Australia" -msgstr "Westaustralien" - -#: i18n/states/BR.php:13 -msgid "Acre" -msgstr "Acre" - -#: i18n/states/BR.php:14 -msgid "Alagoas" -msgstr "Alagoas" - -#: i18n/states/BR.php:15 -msgid "Amapá" -msgstr "Amapá" - -#: i18n/states/BR.php:16 -msgid "Amazonas" -msgstr "Amazonas" - -#: i18n/states/BR.php:17 -msgid "Bahia" -msgstr "Bahia" - -#: i18n/states/BR.php:18 -msgid "Ceará" -msgstr "Ceará" - -#: i18n/states/BR.php:19 -msgid "Distrito Federal" -msgstr "Distrito Federal" - -#: i18n/states/BR.php:20 -msgid "Espírito Santo" -msgstr "Espírito Santo" - -#: i18n/states/BR.php:21 -msgid "Goiás" -msgstr "Goiás" - -#: i18n/states/BR.php:22 -msgid "Maranhão" -msgstr "Maranhão" - -#: i18n/states/BR.php:23 -msgid "Mato Grosso" -msgstr "Mato Grosso" - -#: i18n/states/BR.php:24 -msgid "Mato Grosso do Sul" -msgstr "Mato Grosso do Sul" - -#: i18n/states/BR.php:25 -msgid "Minas Gerais" -msgstr "Minas Gerais" - -#: i18n/states/BR.php:26 -msgid "Pará" -msgstr "Pará" - -#: i18n/states/BR.php:27 -msgid "Paraíba" -msgstr "Paraíba" - -#: i18n/states/BR.php:28 -msgid "Paraná" -msgstr "Paraná" - -#: i18n/states/BR.php:29 -msgid "Pernambuco" -msgstr "Pernambuco" - -#: i18n/states/BR.php:30 -msgid "Piauí" -msgstr "Piauí" - -#: i18n/states/BR.php:31 -msgid "Rio de Janeiro" -msgstr "Rio de Janeiro" - -#: i18n/states/BR.php:32 -msgid "Rio Grande do Norte" -msgstr "Rio Grande do Norte" - -#: i18n/states/BR.php:33 -msgid "Rio Grande do Sul" -msgstr "Rio Grande do Sul" - -#: i18n/states/BR.php:34 -msgid "Rondônia" -msgstr "Rondônia" - -#: i18n/states/BR.php:35 -msgid "Roraima" -msgstr "Roraima" - -#: i18n/states/BR.php:36 -msgid "Santa Catarina" -msgstr "Santa Catarina" - -#: i18n/states/BR.php:37 -msgid "São Paulo" -msgstr "São Paulo" - -#: i18n/states/BR.php:38 -msgid "Sergipe" -msgstr "Sergipe" - -#: i18n/states/BR.php:39 -msgid "Tocantins" -msgstr "Tocantins" - -#: i18n/states/CA.php:13 -msgid "Alberta" -msgstr "Alberta" - -#: i18n/states/CA.php:14 -msgid "British Columbia" -msgstr "Britisch-Kolumbien" - -#: i18n/states/CA.php:15 -msgid "Manitoba" -msgstr "Manitoba" - -#: i18n/states/CA.php:16 -msgid "New Brunswick" -msgstr "New Brunswick" - -#: i18n/states/CA.php:17 -msgid "Newfoundland" -msgstr "Neufundland" - -#: i18n/states/CA.php:18 -msgid "Northwest Territories" -msgstr "Nordwest-Territorien" - -#: i18n/states/CA.php:19 -msgid "Nova Scotia" -msgstr "Neuschottland" - -#: i18n/states/CA.php:20 -msgid "Nunavut" -msgstr "Nunavut" - -#: i18n/states/CA.php:21 -msgid "Ontario" -msgstr "Ontario" - -#: i18n/states/CA.php:22 -msgid "Prince Edward Island" -msgstr "Prinz-Edward-Insel" - -#: i18n/states/CA.php:23 -msgid "Quebec" -msgstr "Quebec" - -#: i18n/states/CA.php:24 -msgid "Saskatchewan" -msgstr "Saskatchewan" - -#: i18n/states/CA.php:25 -msgid "Yukon Territory" -msgstr "Yukon" - -#: i18n/states/CN.php:13 -msgid "Yunnan / 云南" -msgstr "Yunnan / 云南" - -#: i18n/states/CN.php:14 -msgid "Beijing / 北京" -msgstr "Peking (Beijing) / 北京" - -#: i18n/states/CN.php:15 -msgid "Tianjin / 天津" -msgstr "Tianjin / 天津" - -#: i18n/states/CN.php:16 -msgid "Hebei / 河北" -msgstr "Hebei / 河北" - -#: i18n/states/CN.php:17 -msgid "Shanxi / 山西" -msgstr "Shanxi / 山西" - -#: i18n/states/CN.php:18 -msgid "Inner Mongolia / 內蒙古" -msgstr "Innere Mongolei / 內蒙古" - -#: i18n/states/CN.php:19 -msgid "Liaoning / 辽宁" -msgstr "Liaoning / 辽宁" - -#: i18n/states/CN.php:20 -msgid "Jilin / 吉林" -msgstr "Jilin / 吉林" - -#: i18n/states/CN.php:21 -msgid "Heilongjiang / 黑龙江" -msgstr "Heilongjiang / 黑龙江" - -#: i18n/states/CN.php:22 -msgid "Shanghai / 上海" -msgstr "Shanghai / 上海" - -#: i18n/states/CN.php:23 -msgid "Jiangsu / 江苏" -msgstr "Jiangsu / 江苏" - -#: i18n/states/CN.php:24 -msgid "Zhejiang / 浙江" -msgstr "Zhejiang / 浙江" - -#: i18n/states/CN.php:25 -msgid "Anhui / 安徽" -msgstr "Anhui / 安徽" - -#: i18n/states/CN.php:26 -msgid "Fujian / 福建" -msgstr "Fujian / 福建" - -#: i18n/states/CN.php:27 -msgid "Jiangxi / 江西" -msgstr "Jiangxi / 江西" - -#: i18n/states/CN.php:28 -msgid "Shandong / 山东" -msgstr "Shandong / 山东" - -#: i18n/states/CN.php:29 -msgid "Henan / 河南" -msgstr "Henan / 河南" - -#: i18n/states/CN.php:30 -msgid "Hubei / 湖北" -msgstr "Hubei / 湖北" - -#: i18n/states/CN.php:31 -msgid "Hunan / 湖南" -msgstr "Hunan / 湖南" - -#: i18n/states/CN.php:32 -msgid "Guangdong / 广东" -msgstr "Guangdong / 广东" - -#: i18n/states/CN.php:33 -msgid "Guangxi Zhuang / 广西壮族" -msgstr "Guangxi Zhuang / 广西壮族" - -#: i18n/states/CN.php:34 -msgid "Hainan / 海南" -msgstr "Hainan / 海南" - -#: i18n/states/CN.php:35 -msgid "Chongqing / 重庆" -msgstr "Chongqing / 重庆" - -#: i18n/states/CN.php:36 -msgid "Sichuan / 四川" -msgstr "Sichuan / 四川" - -#: i18n/states/CN.php:37 -msgid "Guizhou / 贵州" -msgstr "Guizhou / 贵州" - -#: i18n/states/CN.php:38 -msgid "Shaanxi / 陕西" -msgstr "Shaanxi / 陕西" - -#: i18n/states/CN.php:39 -msgid "Gansu / 甘肃" -msgstr "Gansu / 甘肃" - -#: i18n/states/CN.php:40 -msgid "Qinghai / 青海" -msgstr "Qinghai / 青海" - -#: i18n/states/CN.php:41 -msgid "Ningxia Hui / 宁夏" -msgstr "Ningxia Hui / 宁夏" - -#: i18n/states/CN.php:42 -msgid "Macau / 澳门" -msgstr "Macau / 澳门" - -#: i18n/states/CN.php:43 -msgid "Tibet / 西藏" -msgstr "Tibet / 西藏" - -#: i18n/states/CN.php:44 -msgid "Xinjiang / 新疆" -msgstr "Xinjiang / 新疆" - -#: i18n/states/HK.php:13 -msgid "Hong Kong Island" -msgstr "Hong Kong Island" - -#: i18n/states/HK.php:14 -msgid "Kowloon" -msgstr "Kowloon" - -#: i18n/states/HK.php:15 -msgid "New Territories" -msgstr "New Territories" - -#: i18n/states/HU.php:13 -msgid "Bács-Kiskun" -msgstr "Bács-Kiskun" - -#: i18n/states/HU.php:14 -msgid "Békés" -msgstr "Békés" - -#: i18n/states/HU.php:15 -msgid "Baranya" -msgstr "Baranya" - -#: i18n/states/HU.php:16 -msgid "Borsod-Abaúj-Zemplén" -msgstr "Borsod-Abaúj-Zemplén" - -#: i18n/states/HU.php:17 -msgid "Budapest" -msgstr "Budapest" - -#: i18n/states/HU.php:18 -msgid "Csongrád" -msgstr "Csongrád" - -#: i18n/states/HU.php:19 -msgid "Fejér" -msgstr "Fejér" - -#: i18n/states/HU.php:20 -msgid "Győr-Moson-Sopron" -msgstr "Győr-Moson-Sopron" - -#: i18n/states/HU.php:21 -msgid "Hajdú-Bihar" -msgstr "Hajdú-Bihar" - -#: i18n/states/HU.php:22 -msgid "Heves" -msgstr "Heves" - -#: i18n/states/HU.php:23 -msgid "Jász-Nagykun-Szolnok" -msgstr "Jász-Nagykun-Szolnok" - -#: i18n/states/HU.php:24 -msgid "Komárom-Esztergom" -msgstr "Komárom-Esztergom" - -#: i18n/states/HU.php:25 -msgid "Nógrád" -msgstr "Nógrád" - -#: i18n/states/HU.php:26 -msgid "Pest" -msgstr "Pest" - -#: i18n/states/HU.php:27 -msgid "Somogy" -msgstr "Somogy" - -#: i18n/states/HU.php:28 -msgid "Szabolcs-Szatmár-Bereg" -msgstr "Szabolcs-Szatmár-Bereg" - -#: i18n/states/HU.php:29 -msgid "Tolna" -msgstr "Tolna" - -#: i18n/states/HU.php:30 -msgid "Vas" -msgstr "Vas" - -#: i18n/states/HU.php:31 -msgid "Veszprém" -msgstr "Veszprém" - -#: i18n/states/HU.php:32 -msgid "Zala" -msgstr "Zala" - -#: i18n/states/HZ.php:13 i18n/states/NZ.php:14 -msgid "Auckland" -msgstr "Auckland" - -#: i18n/states/HZ.php:14 i18n/states/NZ.php:16 -msgid "Bay of Plenty" -msgstr "Bay of Plenty" - -#: i18n/states/HZ.php:15 i18n/states/NZ.php:25 -msgid "Canterbury" -msgstr "Canterbury" - -#: i18n/states/HZ.php:16 i18n/states/NZ.php:18 -msgid "Hawke’s Bay" -msgstr "Hawke’s Bay" - -#: i18n/states/HZ.php:17 i18n/states/NZ.php:19 -msgid "Manawatu-Wanganui" -msgstr "Manawatu-Wanganui" - -#: i18n/states/HZ.php:18 i18n/states/NZ.php:22 -msgid "Marlborough" -msgstr "Marlborough" - -#: i18n/states/HZ.php:19 i18n/states/NZ.php:21 -msgid "Nelson" -msgstr "Nelson" - -#: i18n/states/HZ.php:20 i18n/states/NZ.php:13 -msgid "Northland" -msgstr "Northland" - -#: i18n/states/HZ.php:21 i18n/states/NZ.php:26 -msgid "Otago" -msgstr "Otago" - -#: i18n/states/HZ.php:22 i18n/states/NZ.php:27 -msgid "Southland" -msgstr "Southland" - -#: i18n/states/HZ.php:23 i18n/states/NZ.php:17 -msgid "Taranaki" -msgstr "Taranaki" - -#: i18n/states/HZ.php:24 i18n/states/NZ.php:23 -msgid "Tasman" -msgstr "Tasman" - -#: i18n/states/HZ.php:25 i18n/states/NZ.php:15 -msgid "Waikato" -msgstr "Waikato" - -#: i18n/states/HZ.php:26 i18n/states/NZ.php:20 -msgid "Wellington" -msgstr "Wellington" - -#: i18n/states/HZ.php:27 i18n/states/NZ.php:24 -msgid "West Coast" -msgstr "West Coast" - -#: i18n/states/ID.php:13 -msgid "Daerah Istimewa Aceh" -msgstr "Daerah Istimewa Aceh" - -#: i18n/states/ID.php:14 -msgid "Sumatera Utara" -msgstr "Sumatera Utara" - -#: i18n/states/ID.php:15 -msgid "Sumatera Barat" -msgstr "Sumatera Barat" - -#: i18n/states/ID.php:16 -msgid "Riau" -msgstr "Riau" - -#: i18n/states/ID.php:17 -msgid "Kepulauan Riau" -msgstr "Kepulauan Riau" - -#: i18n/states/ID.php:18 -msgid "Jambi" -msgstr "Jambi" - -#: i18n/states/ID.php:19 -msgid "Sumatera Selatan" -msgstr "Sumatera Selatan" - -#: i18n/states/ID.php:20 -msgid "Bangka Belitung" -msgstr "Bangka Belitung" - -#: i18n/states/ID.php:21 -msgid "Bengkulu" -msgstr "Bengkulu" - -#: i18n/states/ID.php:22 -msgid "Lampung" -msgstr "Lampung" - -#: i18n/states/ID.php:23 -msgid "DKI Jakarta" -msgstr "DKI Jakarta" - -#: i18n/states/ID.php:24 -msgid "Jawa Barat" -msgstr "Jawa Barat" - -#: i18n/states/ID.php:25 -msgid "Banten" -msgstr "Banten" - -#: i18n/states/ID.php:26 -msgid "Jawa Tengah" -msgstr "Jawa Tengah" - -#: i18n/states/ID.php:27 -msgid "Jawa Timur" -msgstr "Jawa Timur" - -#: i18n/states/ID.php:28 -msgid "Daerah Istimewa Yogyakarta" -msgstr "Daerah Istimewa Yogyakarta" - -#: i18n/states/ID.php:29 -msgid "Bali" -msgstr "Bali" - -#: i18n/states/ID.php:30 -msgid "Nusa Tenggara Barat" -msgstr "Nusa Tenggara Barat" - -#: i18n/states/ID.php:31 -msgid "Nusa Tenggara Timur" -msgstr "Nusa Tenggara Timur" - -#: i18n/states/ID.php:32 -msgid "Kalimantan Barat" -msgstr "Kalimantan Barat" - -#: i18n/states/ID.php:33 -msgid "Kalimantan Tengah" -msgstr "Kalimantan Tengah" - -#: i18n/states/ID.php:34 -msgid "Kalimantan Timur" -msgstr "Kalimantan Timur" - -#: i18n/states/ID.php:35 -msgid "Kalimantan Selatan" -msgstr "Kalimantan Selatan" - -#: i18n/states/ID.php:36 -msgid "Kalimantan Utara" -msgstr "Kalimantan Utara" - -#: i18n/states/ID.php:37 -msgid "Sulawesi Utara" -msgstr "Sulawesi Utara" - -#: i18n/states/ID.php:38 -msgid "Sulawesi Tengah" -msgstr "Sulawesi Tengah" - -#: i18n/states/ID.php:39 -msgid "Sulawesi Tenggara" -msgstr "Sulawesi Tenggara" - -#: i18n/states/ID.php:40 -msgid "Sulawesi Barat" -msgstr "Sulawesi Barat" - -#: i18n/states/ID.php:41 -msgid "Sulawesi Selatan" -msgstr "Sulawesi Selatan" - -#: i18n/states/ID.php:42 -msgid "Gorontalo" -msgstr "Gorontalo" - -#: i18n/states/ID.php:43 -msgid "Maluku" -msgstr "Maluku" - -#: i18n/states/ID.php:44 -msgid "Maluku Utara" -msgstr "Maluku Utara" - -#: i18n/states/ID.php:45 -msgid "Papua" -msgstr "Papua" - -#: i18n/states/ID.php:46 -msgid "Papua Barat" -msgstr "Papua Barat" - -#: i18n/states/IN.php:13 -msgid "Andra Pradesh" -msgstr "Andra Pradesh" - -#: i18n/states/IN.php:14 -msgid "Arunachal Pradesh" -msgstr "Arunachal Pradesh" - -#: i18n/states/IN.php:15 -msgid "Assam" -msgstr "Assam" - -#: i18n/states/IN.php:16 -msgid "Bihar" -msgstr "Bihar" - -#: i18n/states/IN.php:17 -msgid "Chhattisgarh" -msgstr "Chhattisgarh" - -#: i18n/states/IN.php:18 -msgid "Goa" -msgstr "Goa" - -#: i18n/states/IN.php:19 -msgid "Gujarat" -msgstr "Gujarat" - -#: i18n/states/IN.php:20 -msgid "Haryana" -msgstr "Haryana" - -#: i18n/states/IN.php:21 -msgid "Himachal Pradesh" -msgstr "Himachal Pradesh" - -#: i18n/states/IN.php:22 -msgid "Jammu and Kashmir" -msgstr "Jammu and Kashmir" - -#: i18n/states/IN.php:23 -msgid "Jharkhand" -msgstr "Jharkhand" - -#: i18n/states/IN.php:24 -msgid "Karnataka" -msgstr "Karnataka" - -#: i18n/states/IN.php:25 -msgid "Kerala" -msgstr "Kerala" - -#: i18n/states/IN.php:26 -msgid "Madhya Pradesh" -msgstr "Madhya Pradesh" - -#: i18n/states/IN.php:27 -msgid "Maharashtra" -msgstr "Maharashtra" - -#: i18n/states/IN.php:28 -msgid "Manipur" -msgstr "Manipur" - -#: i18n/states/IN.php:29 -msgid "Meghalaya" -msgstr "Meghalaya" - -#: i18n/states/IN.php:30 -msgid "Mizoram" -msgstr "Mizoram" - -#: i18n/states/IN.php:31 -msgid "Nagaland" -msgstr "Nagaland" - -#: i18n/states/IN.php:32 -msgid "Orissa" -msgstr "Orissa" - -#: i18n/states/IN.php:33 -msgid "Punjab" -msgstr "Punjab" - -#: i18n/states/IN.php:34 -msgid "Rajasthan" -msgstr "Rajasthan" - -#: i18n/states/IN.php:35 -msgid "Sikkim" -msgstr "Sikkim" - -#: i18n/states/IN.php:36 -msgid "Tamil Nadu" -msgstr "Tamil Nadu" - -#: i18n/states/IN.php:37 -msgid "Tripura" -msgstr "Tripura" - -#: i18n/states/IN.php:38 -msgid "Uttaranchal" -msgstr "Uttaranchal" - -#: i18n/states/IN.php:39 -msgid "Uttar Pradesh" -msgstr "Uttar Pradesh" - -#: i18n/states/IN.php:40 -msgid "West Bengal" -msgstr "West Bengal" - -#: i18n/states/IN.php:41 -msgid "Andaman and Nicobar Islands" -msgstr "Andaman and Nicobar Islands" - -#: i18n/states/IN.php:42 -msgid "Chandigarh" -msgstr "Chandigarh" - -#: i18n/states/IN.php:43 -msgid "Dadar and Nagar Haveli" -msgstr "Dadar and Nagar Haveli" - -#: i18n/states/IN.php:44 -msgid "Daman and Diu" -msgstr "Daman and Diu" - -#: i18n/states/IN.php:45 -msgid "Delhi" -msgstr "Delhi" - -#: i18n/states/IN.php:46 -msgid "Lakshadeep" -msgstr "Lakshadeep" - -#: i18n/states/IN.php:47 -msgid "Pondicherry (Puducherry)" -msgstr "Pondicherry (Puducherry)" - -#: i18n/states/MY.php:13 -msgid "Johor" -msgstr "Johor" - -#: i18n/states/MY.php:14 -msgid "Kedah" -msgstr "Kedah" - -#: i18n/states/MY.php:15 -msgid "Kelantan" -msgstr "Kelantan" - -#: i18n/states/MY.php:16 -msgid "Melaka" -msgstr "Melaka" - -#: i18n/states/MY.php:17 -msgid "Negeri Sembilan" -msgstr "Negeri Sembilan" - -#: i18n/states/MY.php:18 -msgid "Pahang" -msgstr "Pahang" - -#: i18n/states/MY.php:19 -msgid "Perak" -msgstr "Perak" - -#: i18n/states/MY.php:20 -msgid "Perlis" -msgstr "Perlis" - -#: i18n/states/MY.php:21 -msgid "Pulau Pinang" -msgstr "Pulau Pinang" - -#: i18n/states/MY.php:22 -msgid "Sabah" -msgstr "Sabah" - -#: i18n/states/MY.php:23 -msgid "Sarawak" -msgstr "Sarawak" - -#: i18n/states/MY.php:24 -msgid "Selangor" -msgstr "Selangor" - -#: i18n/states/MY.php:25 -msgid "Terengganu" -msgstr "Terengganu" - -#: i18n/states/MY.php:26 -msgid "W.P. Kuala Lumpur" -msgstr "W.P. Kuala Lumpur" - -#: i18n/states/MY.php:27 -msgid "W.P. Labuan" -msgstr "W.P. Labuan" - -#: i18n/states/MY.php:28 -msgid "W.P. Putrajaya" -msgstr "W.P. Putrajaya" - -#: i18n/states/TH.php:13 -msgid "" -"Amnat Charoen (อำนาจเจร" -"ิญ)" -msgstr "" -"Amnat Charoen (อำนาจเจร" -"ิญ)" - -#: i18n/states/TH.php:14 -msgid "Ang Thong (อ่างทอง)" -msgstr "Ang Thong (อ่างทอง)" - -#: i18n/states/TH.php:15 -msgid "" -"Ayutthaya (พระนครศรี" -"อยุธยา)" -msgstr "" -"Ayutthaya (พระนครศรี" -"อยุธยา)" - -#: i18n/states/TH.php:16 -msgid "" -"Bangkok (กรุงเทพมห" -"านคร)" -msgstr "" -"Bangkok (กรุงเทพมห" -"านคร)" - -#: i18n/states/TH.php:17 -msgid "Bueng Kan (บึงกาฬ)" -msgstr "Bueng Kan (บึงกาฬ)" - -#: i18n/states/TH.php:18 -msgid "" -"Buri Ram (บุรีรัมย์)" -msgstr "" -"Buri Ram (บุรีรัมย์)" - -#: i18n/states/TH.php:19 -msgid "" -"Chachoengsao (ฉะเชิงเทร" -"า)" -msgstr "" -"Chachoengsao (ฉะเชิงเทร" -"า)" - -#: i18n/states/TH.php:20 -msgid "Chai Nat (ชัยนาท)" -msgstr "Chai Nat (ชัยนาท)" - -#: i18n/states/TH.php:21 -msgid "Chaiyaphum (ชัยภูมิ)" -msgstr "Chaiyaphum (ชัยภูมิ)" - -#: i18n/states/TH.php:22 -msgid "Chanthaburi (จันทบุรี)" -msgstr "Chanthaburi (จันทบุรี)" - -#: i18n/states/TH.php:23 -msgid "" -"Chiang Mai (เชียงใหม่)" -msgstr "" -"Chiang Mai (เชียงใหม่)" - -#: i18n/states/TH.php:24 -msgid "Chiang Rai (เชียงราย)" -msgstr "Chiang Rai (เชียงราย)" - -#: i18n/states/TH.php:25 -msgid "Chonburi (ชลบุรี)" -msgstr "Chonburi (ชลบุรี)" - -#: i18n/states/TH.php:26 -msgid "Chumphon (ชุมพร)" -msgstr "Chumphon (ชุมพร)" - -#: i18n/states/TH.php:27 -msgid "" -"Kalasin (กาฬสินธุ์)" -msgstr "" -"Kalasin (กาฬสินธุ์)" - -#: i18n/states/TH.php:28 -msgid "" -"Kamphaeng Phet (กำแพงเพช" -"ร)" -msgstr "" -"Kamphaeng Phet (กำแพงเพช" -"ร)" - -#: i18n/states/TH.php:29 -msgid "" -"Kanchanaburi (กาญจนบุร" -"ี)" -msgstr "" -"Kanchanaburi (กาญจนบุร" -"ี)" - -#: i18n/states/TH.php:30 -msgid "Khon Kaen (ขอนแก่น)" -msgstr "Khon Kaen (ขอนแก่น)" - -#: i18n/states/TH.php:31 -msgid "Krabi (กระบี่)" -msgstr "Krabi (กระบี่)" - -#: i18n/states/TH.php:32 -msgid "Lampang (ลำปาง)" -msgstr "Lampang (ลำปาง)" - -#: i18n/states/TH.php:33 -msgid "Lamphun (ลำพูน)" -msgstr "Lamphun (ลำพูน)" - -#: i18n/states/TH.php:34 -msgid "Loei (เลย)" -msgstr "Loei (เลย)" - -#: i18n/states/TH.php:35 -msgid "Lopburi (ลพบุรี)" -msgstr "Lopburi (ลพบุรี)" - -#: i18n/states/TH.php:36 -msgid "" -"Mae Hong Son (แม่ฮ่องสอ" -"น)" -msgstr "" -"Mae Hong Son (แม่ฮ่องสอ" -"น)" - -#: i18n/states/TH.php:37 -msgid "" -"Maha Sarakham (มหาสารคา" -"ม)" -msgstr "" -"Maha Sarakham (มหาสารคา" -"ม)" - -#: i18n/states/TH.php:38 -msgid "Mukdahan (มุกดาหาร)" -msgstr "Mukdahan (มุกดาหาร)" - -#: i18n/states/TH.php:39 -msgid "Nakhon Nayok (นครนายก)" -msgstr "Nakhon Nayok (นครนายก)" - -#: i18n/states/TH.php:40 -msgid "Nakhon Pathom (นครปฐม)" -msgstr "Nakhon Pathom (นครปฐม)" - -#: i18n/states/TH.php:41 -msgid "Nakhon Phanom (นครพนม)" -msgstr "Nakhon Phanom (นครพนม)" - -#: i18n/states/TH.php:42 -msgid "" -"Nakhon Ratchasima (นครราชสี" -"มา)" -msgstr "" -"Nakhon Ratchasima (นครราชสี" -"มา)" - -#: i18n/states/TH.php:43 -msgid "" -"Nakhon Sawan (นครสวรรค" -"์)" -msgstr "" -"Nakhon Sawan (นครสวรรค" -"์)" - -#: i18n/states/TH.php:44 -msgid "" -"Nakhon Si Thammarat (นครศรีธร" -"รมราช)" -msgstr "" -"Nakhon Si Thammarat (นครศรีธร" -"รมราช)" - -#: i18n/states/TH.php:45 -msgid "Nan (น่าน)" -msgstr "Nan (น่าน)" - -#: i18n/states/TH.php:46 -msgid "Narathiwat (นราธิวาส)" -msgstr "Narathiwat (นราธิวาส)" - -#: i18n/states/TH.php:47 -msgid "" -"Nong Bua Lam Phu (หนองบัวล" -"ำภู)" -msgstr "" -"Nong Bua Lam Phu (หนองบัวล" -"ำภู)" - -#: i18n/states/TH.php:48 -msgid "Nong Khai (หนองคาย)" -msgstr "Nong Khai (หนองคาย)" - -#: i18n/states/TH.php:49 -msgid "Nonthaburi (นนทบุรี)" -msgstr "Nonthaburi (นนทบุรี)" - -#: i18n/states/TH.php:50 -msgid "Pathum Thani (ปทุมธานี)" -msgstr "" -"Pathum Thani (ปทุมธานี)" - -#: i18n/states/TH.php:51 -msgid "Pattani (ปัตตานี)" -msgstr "Pattani (ปัตตานี)" - -#: i18n/states/TH.php:52 -msgid "Phang Nga (พังงา)" -msgstr "Phang Nga (พังงา)" - -#: i18n/states/TH.php:53 -msgid "Phatthalung (พัทลุง)" -msgstr "Phatthalung (พัทลุง)" - -#: i18n/states/TH.php:54 -msgid "Phayao (พะเยา)" -msgstr "Phayao (พะเยา)" - -#: i18n/states/TH.php:55 -msgid "" -"Phetchabun (เพชรบูรณ์)" -msgstr "" -"Phetchabun (เพชรบูรณ์)" - -#: i18n/states/TH.php:56 -msgid "Phetchaburi (เพชรบุรี)" -msgstr "Phetchaburi (เพชรบุรี)" - -#: i18n/states/TH.php:57 -msgid "Phichit (พิจิตร)" -msgstr "Phichit (พิจิตร)" - -#: i18n/states/TH.php:58 -msgid "Phitsanulok (พิษณุโลก)" -msgstr "Phitsanulok (พิษณุโลก)" - -#: i18n/states/TH.php:59 -msgid "Phrae (แพร่)" -msgstr "Phrae (แพร่)" - -#: i18n/states/TH.php:60 -msgid "Phuket (ภูเก็ต)" -msgstr "Phuket (ภูเก็ต)" - -#: i18n/states/TH.php:61 -msgid "" -"Prachin Buri (ปราจีนบุร" -"ี)" -msgstr "" -"Prachin Buri (ปราจีนบุร" -"ี)" - -#: i18n/states/TH.php:62 -msgid "" -"Prachuap Khiri Khan (ประจวบคี" -"รีขันธ์)" -msgstr "" -"Prachuap Khiri Khan (ประจวบคี" -"รีขันธ์)" - -#: i18n/states/TH.php:63 -msgid "Ranong (ระนอง)" -msgstr "Ranong (ระนอง)" - -#: i18n/states/TH.php:64 -msgid "Ratchaburi (ราชบุรี)" -msgstr "Ratchaburi (ราชบุรี)" - -#: i18n/states/TH.php:65 -msgid "Rayong (ระยอง)" -msgstr "Rayong (ระยอง)" - -#: i18n/states/TH.php:66 -msgid "Roi Et (ร้อยเอ็ด)" -msgstr "Roi Et (ร้อยเอ็ด)" - -#: i18n/states/TH.php:67 -msgid "Sa Kaeo (สระแก้ว)" -msgstr "Sa Kaeo (สระแก้ว)" - -#: i18n/states/TH.php:68 -msgid "Sakon Nakhon (สกลนคร)" -msgstr "Sakon Nakhon (สกลนคร)" - -#: i18n/states/TH.php:69 -msgid "" -"Samut Prakan (สมุทรปราก" -"าร)" -msgstr "" -"Samut Prakan (สมุทรปราก" -"าร)" - -#: i18n/states/TH.php:70 -msgid "" -"Samut Sakhon (สมุทรสาค" -"ร)" -msgstr "" -"Samut Sakhon (สมุทรสาค" -"ร)" - -#: i18n/states/TH.php:71 -msgid "" -"Samut Songkhram (สมุทรสงค" -"ราม)" -msgstr "" -"Samut Songkhram (สมุทรสงค" -"ราม)" - -#: i18n/states/TH.php:72 -msgid "Saraburi (สระบุรี)" -msgstr "Saraburi (สระบุรี)" - -#: i18n/states/TH.php:73 -msgid "Satun (สตูล)" -msgstr "Satun (สตูล)" - -#: i18n/states/TH.php:74 -msgid "" -"Sing Buri (สิงห์บุรี)" -msgstr "" -"Sing Buri (สิงห์บุรี)" - -#: i18n/states/TH.php:75 -msgid "Sisaket (ศรีสะเกษ)" -msgstr "Sisaket (ศรีสะเกษ)" - -#: i18n/states/TH.php:76 -msgid "Songkhla (สงขลา)" -msgstr "Songkhla (สงขลา)" - -#: i18n/states/TH.php:77 -msgid "Sukhothai (สุโขทัย)" -msgstr "Sukhothai (สุโขทัย)" - -#: i18n/states/TH.php:78 -msgid "" -"Suphan Buri (สุพรรณบุร" -"ี)" -msgstr "" -"Suphan Buri (สุพรรณบุร" -"ี)" - -#: i18n/states/TH.php:79 -msgid "" -"Surat Thani (สุราษฎร์ธ" -"านี)" -msgstr "" -"Surat Thani (สุราษฎร์ธ" -"านี)" - -#: i18n/states/TH.php:80 -msgid "Surin (สุรินทร์)" -msgstr "Surin (สุรินทร์)" - -#: i18n/states/TH.php:81 -msgid "Tak (ตาก)" -msgstr "Tak (ตาก)" - -#: i18n/states/TH.php:82 -msgid "Trang (ตรัง)" -msgstr "Trang (ตรัง)" - -#: i18n/states/TH.php:83 -msgid "Trat (ตราด)" -msgstr "Trat (ตราด)" - -#: i18n/states/TH.php:84 -msgid "" -"Ubon Ratchathani (อุบลราชธ" -"านี)" -msgstr "" -"Ubon Ratchathani (อุบลราชธ" -"านี)" - -#: i18n/states/TH.php:85 -msgid "Udon Thani (อุดรธานี)" -msgstr "Udon Thani (อุดรธานี)" - -#: i18n/states/TH.php:86 -msgid "" -"Uthai Thani (อุทัยธานี)" -msgstr "" -"Uthai Thani (อุทัยธานี)" - -#: i18n/states/TH.php:87 -msgid "" -"Uttaradit (อุตรดิตถ์)" -msgstr "" -"Uttaradit (อุตรดิตถ์)" - -#: i18n/states/TH.php:88 -msgid "Yala (ยะลา)" -msgstr "Yala (ยะลา)" - -#: i18n/states/TH.php:89 -msgid "Yasothon (ยโสธร)" -msgstr "Yasothon (ยโสธร)" - -#: i18n/states/US.php:13 -msgid "Alabama" -msgstr "Alabama" - -#: i18n/states/US.php:14 -msgid "Alaska" -msgstr "Alaska" - -#: i18n/states/US.php:15 -msgid "Arizona" -msgstr "Arizona" - -#: i18n/states/US.php:16 -msgid "Arkansas" -msgstr "Arkansas" - -#: i18n/states/US.php:17 -msgid "California" -msgstr "Kalifornien" - -#: i18n/states/US.php:18 -msgid "Colorado" -msgstr "Colorado" - -#: i18n/states/US.php:19 -msgid "Connecticut" -msgstr "Connecticut" - -#: i18n/states/US.php:20 -msgid "Delaware" -msgstr "Delaware" - -#: i18n/states/US.php:21 -msgid "District Of Columbia" -msgstr "District Of Columbia" - -#: i18n/states/US.php:22 -msgid "Florida" -msgstr "Florida" - -#: i18n/states/US.php:24 -msgid "Hawaii" -msgstr "Hawaii" - -#: i18n/states/US.php:25 -msgid "Idaho" -msgstr "Idaho" - -#: i18n/states/US.php:26 -msgid "Illinois" -msgstr "Illinois" - -#: i18n/states/US.php:27 -msgid "Indiana" -msgstr "Indiana" - -#: i18n/states/US.php:28 -msgid "Iowa" -msgstr "Iowa" - -#: i18n/states/US.php:29 -msgid "Kansas" -msgstr "Kansas" - -#: i18n/states/US.php:30 -msgid "Kentucky" -msgstr "Kentucky" - -#: i18n/states/US.php:31 -msgid "Louisiana" -msgstr "Louisiana" - -#: i18n/states/US.php:32 -msgid "Maine" -msgstr "Maine" - -#: i18n/states/US.php:33 -msgid "Maryland" -msgstr "Maryland" - -#: i18n/states/US.php:34 -msgid "Massachusetts" -msgstr "Massachusetts" - -#: i18n/states/US.php:35 -msgid "Michigan" -msgstr "Michigan" - -#: i18n/states/US.php:36 -msgid "Minnesota" -msgstr "Minnesota" - -#: i18n/states/US.php:37 -msgid "Mississippi" -msgstr "Mississippi" - -#: i18n/states/US.php:38 -msgid "Missouri" -msgstr "Missouri" - -#: i18n/states/US.php:39 -msgid "Montana" -msgstr "Montana" - -#: i18n/states/US.php:40 -msgid "Nebraska" -msgstr "Nebraska" - -#: i18n/states/US.php:41 -msgid "Nevada" -msgstr "Nevada" - -#: i18n/states/US.php:42 -msgid "New Hampshire" -msgstr "New Hampshire" - -#: i18n/states/US.php:43 -msgid "New Jersey" -msgstr "New Jersey" - -#: i18n/states/US.php:44 -msgid "New Mexico" -msgstr "New Mexico" - -#: i18n/states/US.php:45 -msgid "New York" -msgstr "New York" - -#: i18n/states/US.php:46 -msgid "North Carolina" -msgstr "North Carolina" - -#: i18n/states/US.php:47 -msgid "North Dakota" -msgstr "North Dakota" - -#: i18n/states/US.php:48 -msgid "Ohio" -msgstr "Ohio" - -#: i18n/states/US.php:49 -msgid "Oklahoma" -msgstr "Oklahoma" - -#: i18n/states/US.php:50 -msgid "Oregon" -msgstr "Oregon" - -#: i18n/states/US.php:51 -msgid "Pennsylvania" -msgstr "Pennsylvania" - -#: i18n/states/US.php:52 -msgid "Rhode Island" -msgstr "Rhode Island" - -#: i18n/states/US.php:53 -msgid "South Carolina" -msgstr "South Carolina" - -#: i18n/states/US.php:54 -msgid "South Dakota" -msgstr "South Dakota" - -#: i18n/states/US.php:55 -msgid "Tennessee" -msgstr "Tennessee" - -#: i18n/states/US.php:56 -msgid "Texas" -msgstr "Texas" - -#: i18n/states/US.php:57 -msgid "Utah" -msgstr "Utah" - -#: i18n/states/US.php:58 -msgid "Vermont" -msgstr "Vermont" - -#: i18n/states/US.php:59 -msgid "Virginia" -msgstr "Virginia" - -#: i18n/states/US.php:60 -msgid "Washington" -msgstr "Washington" - -#: i18n/states/US.php:61 -msgid "West Virginia" -msgstr "West Virginia" - -#: i18n/states/US.php:62 -msgid "Wisconsin" -msgstr "Wisconsin" - -#: i18n/states/US.php:63 -msgid "Wyoming" -msgstr "Wyoming" - -#: i18n/states/US.php:64 -msgid "Armed Forces (AA)" -msgstr "Armed Forces (AA)" - -#: i18n/states/US.php:65 -msgid "Armed Forces (AE)" -msgstr "Armed Forces (AE)" - -#: i18n/states/US.php:66 -msgid "Armed Forces (AP)" -msgstr "Armed Forces (AP)" - -#: i18n/states/US.php:67 -msgid "American Samoa" -msgstr "Amerikanisch-Samoa" - -#: i18n/states/US.php:68 -msgid "Guam" -msgstr "Guam" - -#: i18n/states/US.php:69 -msgid "Northern Mariana Islands" -msgstr "Nördliche Marianen" - -#: i18n/states/US.php:70 -msgid "Puerto Rico" -msgstr "Puerto Rico" - -#: i18n/states/US.php:71 -msgid "US Minor Outlying Islands" -msgstr "USA (Kleinere Inselbesitzungen der USA)" - -#: i18n/states/US.php:72 -msgid "US Virgin Islands" -msgstr "US Virgin Islands" - -#: i18n/states/ZA.php:13 -msgid "Eastern Cape" -msgstr "Ostkap" - -#: i18n/states/ZA.php:14 -msgid "Free State" -msgstr "Freistaat" - -#: i18n/states/ZA.php:15 -msgid "Gauteng" -msgstr "Gauteng" - -#: i18n/states/ZA.php:16 -msgid "KwaZulu-Natal" -msgstr "KwaZulu-Natal" - -#: i18n/states/ZA.php:17 -msgid "Limpopo" -msgstr "Limpopo" - -#: i18n/states/ZA.php:18 -msgid "Mpumalanga" -msgstr "Mpumalanga" - -#: i18n/states/ZA.php:19 -msgid "Northern Cape" -msgstr "Nordkap" - -#: i18n/states/ZA.php:20 -msgid "North West" -msgstr "Nord West" - -#: i18n/states/ZA.php:21 -msgid "Western Cape" -msgstr "Westkap" - -#: i18n/strings.php:16 -msgid "pending" -msgstr "ausstehend" - -#: i18n/strings.php:17 -msgid "failed" -msgstr "fehlgeschlagen" - -#: i18n/strings.php:18 -msgid "on-hold" -msgstr "Zurückgestellt" - -#: i18n/strings.php:19 -msgid "processing" -msgstr "in Arbeit" - -#: i18n/strings.php:20 -msgid "completed" -msgstr "Fertig" - -#: i18n/strings.php:21 -msgid "refunded" -msgstr "Erstattet" - -#: i18n/strings.php:22 -msgid "cancelled" -msgstr "Abgebrochen" - -#: templates/cart/cart-empty.php:14 -msgid "Your cart is currently empty." -msgstr "Ihr Warenkorb ist gegenwärtig leer." - -#: templates/cart/cart-empty.php:18 -msgid "← Return To Shop" -msgstr "← Zurück zum Shop" - -#: templates/cart/cart.php:28 templates/checkout/form-pay.php:19 -#: templates/checkout/review-order.php:21 -#: templates/emails/admin-new-order.php:22 -#: templates/emails/customer-completed-order.php:23 -#: templates/emails/customer-invoice.php:27 -#: templates/emails/customer-note.php:27 -#: templates/emails/customer-processing-order.php:23 -#: templates/order/order-details.php:20 woocommerce.php:983 -msgid "Product" -msgstr "Produkt" - -#: templates/cart/cart.php:29 templates/emails/admin-new-order.php:24 -#: templates/emails/customer-completed-order.php:25 -#: templates/emails/customer-invoice.php:29 -#: templates/emails/customer-note.php:29 -#: templates/emails/customer-processing-order.php:25 -msgid "Price" -msgstr "Preis" - -#: templates/cart/cart.php:30 templates/emails/admin-new-order.php:23 -#: templates/emails/customer-completed-order.php:24 -#: templates/emails/customer-invoice.php:28 -#: templates/emails/customer-note.php:28 -#: templates/emails/customer-processing-order.php:24 -msgid "Quantity" -msgstr "Anzahl" - -#: templates/cart/cart.php:31 templates/checkout/review-order.php:22 -#: templates/myaccount/my-orders.php:35 templates/order/order-details.php:21 -msgid "Total" -msgstr "Summe" - -#: templates/cart/cart.php:47 -msgid "Remove this item" -msgstr "Dieses Produkt entfernen" - -#: templates/cart/cart.php:100 -#: templates/single-product/add-to-cart/quantity.php:12 -msgctxt "Product quantity input tooltip" -msgid "Qty" -msgstr "Menge" - -#: templates/cart/cart.php:127 woocommerce.php:1096 -msgid "Coupon" -msgstr "Gutschein" - -#: templates/cart/cart.php:127 templates/checkout/form-coupon.php:29 -msgid "Apply Coupon" -msgstr "Gutschein anwenden" - -#: templates/cart/cart.php:134 -msgid "Update Cart" -msgstr "Warenkorb aktualisieren" - -#: templates/cart/cart.php:134 -msgid "Proceed to Checkout →" -msgstr "Weiter zur Kasse →" - -#: templates/cart/cross-sells.php:38 -msgid "You may be interested in…" -msgstr "Sind Sie vielleicht interessiert an…" - -#: templates/cart/mini-cart.php:55 -msgid "No products in the cart." -msgstr "Es befinden sich keine Produkte im Warenkorb." - -#: templates/cart/mini-cart.php:63 -msgid "Subtotal" -msgstr "Zwischensumme" - -#: templates/cart/mini-cart.php:69 -msgid "Checkout →" -msgstr "Kasse →" - -#: templates/cart/shipping-calculator.php:22 -msgid "Calculate Shipping" -msgstr "Lieferkosten berechnen" - -#: templates/cart/shipping-calculator.php:28 woocommerce-template.php:1334 -msgid "Select a country…" -msgstr "Land auswählen…" - -#: templates/cart/shipping-calculator.php:45 -#: templates/cart/shipping-calculator.php:51 -#: templates/cart/shipping-calculator.php:63 -msgid "State / county" -msgstr "Staat / Bezirk" - -#: templates/cart/shipping-calculator.php:52 woocommerce-template.php:1384 -msgid "Select a state…" -msgstr "Bundesland auswählen…" - -#: templates/cart/shipping-calculator.php:72 -msgid "City" -msgstr "Ort" - -#: templates/cart/shipping-calculator.php:85 -msgid "Update Totals" -msgstr "Betrag aktualisieren" - -#: templates/cart/shipping-methods.php:32 -msgid "Free" -msgstr "Frei" - -#: templates/cart/shipping-methods.php:68 -msgid "Please fill in your details to see available shipping methods." -msgstr "Bitte geben Sie Ihre Details ein um verfügbare Versandarten zu sehen." - -#: templates/cart/shipping-methods.php:76 templates/cart/totals.php:147 -msgid "" -"Sorry, it seems that there are no available shipping methods for your " -"location (%s)." -msgstr "" -"Entschuldigen Sie, aber für Ihren Standort ist kein Versand möglich (%s)." - -#: templates/cart/shipping-methods.php:76 templates/cart/totals.php:147 -msgid "" -"If you require assistance or wish to make alternate arrangements please " -"contact us." -msgstr "" -"Wenn Sie Hilfe benötigen oder weitergehende Absprachen treffen möchten, " -"nehmen Sie bitte Kontakt mit uns auf." - -#: templates/cart/totals.php:22 -msgid "Cart Totals" -msgstr "Warenkorb Summe" - -#: templates/cart/totals.php:28 templates/checkout/review-order.php:27 -msgid "Cart Subtotal" -msgstr "Warenkorb Zwischensumme" - -#: templates/cart/totals.php:35 templates/checkout/review-order.php:34 -#: woocommerce.php:1690 -msgid "Cart Discount" -msgstr "Warenkorb Rabatt" - -#: templates/cart/totals.php:35 templates/cart/totals.php:83 -msgid "[Remove]" -msgstr "[Entfernen]" - -#: templates/cart/totals.php:46 templates/checkout/review-order.php:45 -msgid "Shipping" -msgstr "Versand" - -#: templates/cart/totals.php:83 templates/checkout/review-order.php:82 -msgid "Order Discount" -msgstr "Bestellrabatt" - -#: templates/cart/totals.php:92 templates/checkout/review-order.php:91 -msgid "Order Total" -msgstr "Bestellung gesamt" - -#: templates/cart/totals.php:121 -msgid " (taxes estimated for %s)" -msgstr "(Steuer geschätzt auf %s)" - -#: templates/cart/totals.php:123 -msgid "" -"Note: Shipping and taxes are estimated%s and will be updated during checkout " -"based on your billing and shipping information." -msgstr "" -"Hinweis: Versandkosten und Steuern werden geschätzt%s und werden während des " -"Kaufprozesses aktualisiert, basierend auf ihren Rechnungs- und " -"Versandinformationen" - -#: templates/cart/totals.php:135 -msgid "" -"No shipping methods were found; please recalculate your shipping and enter " -"your state/county and zip/postcode to ensure there are no other available " -"methods for your location." -msgstr "" -"Keine Versandkosten Methoden gefunden. Bitte geben Sie Ihren Staat / Bezirk " -"und Ihre Postleitzahl ein, um die Versandkosten neu zu berechnen und sicher " -"zu stellen, dass keine weiteren Methoden für Ihren Wohnort verfügbar sind. " - -#: templates/checkout/cart-errors.php:16 -msgid "" -"There are some issues with the items in your cart (shown above). Please go " -"back to the cart page and resolve these issues before checking out." -msgstr "" -"Es gibt einige Probleme mit Ihrer Bestellung im Warenkorb (oben angezeigt). " -"Bitte gehen Sie zurück auf die Warenkorb Seite und lösen Sie diese Probleme " -"vor dem Kauf." - -#: templates/checkout/cart-errors.php:20 -msgid "← Return To Cart" -msgstr "← Zum Warenkorb zurückkehren" - -#: templates/checkout/form-billing.php:17 -msgid "Billing & Shipping" -msgstr "Rechnung & Versand" - -#: templates/checkout/form-billing.php:21 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:19 templates/myaccount/my-address.php:25 -#: templates/order/order-details.php:115 -msgid "Billing Address" -msgstr "Rechnungsadresse" - -#: templates/checkout/form-billing.php:42 -msgid "Create an account?" -msgstr "Kundenkonto anlegen?" - -#: templates/checkout/form-billing.php:51 -msgid "" -"Create an account by entering the information below. If you are a returning " -"customer please login at the top of the page." -msgstr "" -"Erstellen Sie ein Konto indem Sie die Informationen unten eingeben. Sind Sie " -"ein wiederkehrender Besucher so melden Sie sich bitte oben mit Ihren Daten " -"ein." - -#: templates/checkout/form-checkout.php:20 -msgid "You must be logged in to checkout." -msgstr "Bitte loggen Sie sich ein, um die Bestellung abschließen zu können." - -#: templates/checkout/form-checkout.php:51 -msgid "Your order" -msgstr "Ihre Bestellung" - -#: templates/checkout/form-coupon.php:17 -msgid "Have a coupon?" -msgstr "Haben Sie einen Gutschein?" - -#: templates/checkout/form-coupon.php:20 -msgid "Click here to enter your code" -msgstr "Klicken Sie bitte hier um Ihren Code einzutragen" - -#: templates/checkout/form-coupon.php:25 -msgid "Coupon code" -msgstr "Gutschein-Code" - -#: templates/checkout/form-login.php:14 -msgid "Returning customer?" -msgstr "Wiederkehrender Kunde?" - -#: templates/checkout/form-login.php:17 -msgid "Click here to login" -msgstr "Klicken Sie hier, um sich einzuloggen" - -#: templates/checkout/form-login.php:22 -msgid "" -"If you have shopped with us before, please enter your details in the boxes " -"below. If you are a new customer please proceed to the Billing & " -"Shipping section." -msgstr "" -"Falls Sie bereits bei uns gekauft haben, geben Sie bitte Ihre Details in den " -"Boxen unten ein. Falls Sie ein neuer Kunde sind, füllen Sie bitte die " -"Zahlungs- und Versandangaben aus. " - -#: templates/checkout/form-pay.php:20 -msgid "Qty" -msgstr "Menge" - -#: templates/checkout/form-pay.php:21 -msgid "Totals" -msgstr "Summe" - -#: templates/checkout/form-pay.php:78 -msgid "" -"Sorry, it seems that there are no available payment methods for your " -"location. Please contact us if you require assistance or wish to make " -"alternate arrangements." -msgstr "" -"Entschuldigung, aber es sind keine Zahlungsarten für Ihr Land verfügbar. " -"Bitte kontaktieren Sie uns für weitere Hilfe oder wenn Sie alternative " -"Absprachen treffen möchten." - -#: templates/checkout/form-pay.php:87 -msgid "Pay for order" -msgstr "Für Bestellung bezahlen" - -#: templates/checkout/form-shipping.php:32 -msgid "Ship to billing address?" -msgstr "Zur Rechnungsadresse schicken?" - -#: templates/checkout/form-shipping.php:35 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:20 templates/order/order-details.php:130 -msgid "Shipping Address" -msgstr "Lieferadresse" - -#: templates/checkout/form-shipping.php:59 -#: templates/single-product/tabs/additional-information.php:14 -#: woocommerce-template.php:759 -msgid "Additional Information" -msgstr "Zusätzliche Informationen" - -#: templates/checkout/review-order.php:174 -msgid "Please fill in your details above to see available payment methods." -msgstr "" -"Bitte füllen Sie die Angaben oben aus, um die verfügbaren Zahlungsarten " -"abzurufen." - -#: templates/checkout/review-order.php:176 -msgid "" -"Sorry, it seems that there are no available payment methods for your state. " -"Please contact us if you require assistance or wish to make alternate " -"arrangements." -msgstr "" -"Entschuldigung, aber es sind keine Zahlungsarten für Ihr Bundesland/Region " -"verfügbar. Bitte kontaktieren Sie uns für weitere Hilfe oder wenn Sie " -"alternative Absprachen treffen möchten." - -#: templates/checkout/review-order.php:185 -msgid "" -"Since your browser does not support JavaScript, or it is disabled, please " -"ensure you click the Update Totals button before placing your " -"order. You may be charged more than the amount stated above if you fail to " -"do so." -msgstr "" -"Sollte Ihr Browser kein JavaScript unterstützen, oder wenn dieses " -"deaktiviert wurde, stellen Sie bitte sicher, das Sie den Button " -"Gesamtbetrag aktualisieren klicken, bevor Sie Ihre Bestellung " -"abschicken. Wenn Sie das nicht tun, könnte es möglich sein, das Sie mehr " -"bezahlen müssen, als oben angegeben ist." - -#: templates/checkout/review-order.php:185 -msgid "Update totals" -msgstr "Gesamtbetrag aktualisieren" - -#: templates/checkout/review-order.php:192 -msgid "Place order" -msgstr "Bestellung abschicken" - -#: templates/checkout/review-order.php:199 -msgid "I have read and accept the" -msgstr "Gelesen und akzeptiert" - -#: templates/checkout/review-order.php:199 -msgid "terms & conditions" -msgstr "Liefer- und Zahlungsbedingungen (AGB)" - -#: templates/checkout/thankyou.php:18 -msgid "" -"Unfortunately your order cannot be processed as the originating bank/" -"merchant has declined your transaction." -msgstr "" -"Unglücklicherweise kann Ihre Bestellung nicht weiter verarbeitet werden, da " -"Ihre ausführende Bank/Händler die Transaktion abgelehnt hat." - -#: templates/checkout/thankyou.php:22 -msgid "Please attempt your purchase again or go to your account page." -msgstr "" -"Bitte versuchen Sie den Kauf nocheinmal oder gehen Sie zurück zu Ihrem " -"Kundenkonto." - -#: templates/checkout/thankyou.php:24 -msgid "Please attempt your purchase again." -msgstr "Bitte versuchen Sie Ihren Kauf erneut auszuführen." - -#: templates/checkout/thankyou.php:36 templates/checkout/thankyou.php:67 -msgid "Thank you. Your order has been received." -msgstr "Vielen Dank. Ihre Bestellung wurde empfangen." - -#: templates/emails/admin-new-order.php:13 -#: templates/emails/plain/admin-new-order.php:13 -msgid "You have received an order from %s. Their order is as follows:" -msgstr "Sie haben eine Bestellung von %s. Die Bestellung ist wie folgt: " - -#: templates/emails/admin-new-order.php:17 -msgid "Order: %s" -msgstr "Bestellung: %s" - -#: templates/emails/admin-new-order.php:50 -#: templates/emails/customer-completed-order.php:51 -#: templates/emails/customer-note.php:55 -#: templates/emails/customer-processing-order.php:51 -#: templates/emails/plain/admin-new-order.php:38 -#: templates/order/order-details.php:97 -msgid "Customer details" -msgstr "Angaben zum Kunden" - -#: templates/emails/admin-new-order.php:53 -#: templates/emails/customer-completed-order.php:54 -#: templates/emails/customer-note.php:58 -#: templates/emails/customer-processing-order.php:54 -#: templates/emails/plain/admin-new-order.php:41 -#: templates/emails/plain/customer-completed-order.php:41 -#: templates/emails/plain/customer-note.php:49 -#: templates/emails/plain/customer-processing-order.php:41 -#: templates/order/order-details.php:101 -msgid "Email:" -msgstr "E-Mail:" - -#: templates/emails/admin-new-order.php:56 -#: templates/emails/customer-completed-order.php:57 -#: templates/emails/customer-note.php:61 -#: templates/emails/customer-processing-order.php:57 -#: templates/emails/plain/admin-new-order.php:44 -#: templates/emails/plain/customer-completed-order.php:44 -#: templates/emails/plain/customer-note.php:52 -#: templates/emails/plain/customer-processing-order.php:44 -msgid "Tel:" -msgstr "Tel.:" - -#: templates/emails/customer-completed-order.php:14 -#: templates/emails/plain/customer-completed-order.php:13 -msgid "" -"Hi there. Your recent order on %s has been completed. Your order details are " -"shown below for your reference:" -msgstr "" -"Ihre letzte Bestellung auf %s ist nun vollständig. Ihre Bestelldetails " -"werden unten zur Kontrolle angezeigt:" - -#: templates/emails/customer-invoice.php:16 -#: templates/emails/plain/customer-invoice.php:14 -msgid "" -"An order has been created for you on %s. To pay for this order please use " -"the following link: %s" -msgstr "" -"Ihre Bestellung wurde zusammengestellt für Sie auf %s. Um diese Bestellung " -"zu bezahlen klicken Sie bitte folgenden Link: %s." - -#: templates/emails/customer-invoice.php:16 -msgid "pay" -msgstr "zahlen" - -#: templates/emails/customer-new-account.php:14 -#: templates/emails/plain/customer-new-account.php:13 -msgid "" -"Thanks for creating an account on %s. Your username is %s." -msgstr "" -"Vielen Dank, dass Sie ein Konto auf %s erstellt haben. Ihr Benutzername ist " -"%s." - -#: templates/emails/customer-new-account.php:16 -#: templates/emails/plain/customer-new-account.php:15 -msgid "You can access your account area here: %s." -msgstr "Sie können auf Ihr Kundenkonto hier zugreifen: %s." - -#: templates/emails/customer-note.php:14 -#: templates/emails/plain/customer-note.php:13 -msgid "Hello, a note has just been added to your order:" -msgstr "Hallo, Ihrer Bestellung wurde soeben ein Hinweis hinzugefügt:" - -#: templates/emails/customer-note.php:18 -#: templates/emails/plain/customer-note.php:21 -msgid "For your reference, your order details are shown below." -msgstr "Zu Ihrer Kontrolle, hier noch einmal Ihre Bestelldetails." - -#: templates/emails/customer-processing-order.php:14 -#: templates/emails/plain/customer-processing-order.php:13 -msgid "" -"Your order has been received and is now being processed. Your order details " -"are shown below for your reference:" -msgstr "" -"Ihre Bestellung ist bei uns eingegangen und wird nun bearbeitet. Ihre " -"Bestelldetails werden unten zur Kontrolle angezeigt:" - -#: templates/emails/customer-reset-password.php:14 -#: templates/emails/plain/customer-reset-password.php:13 -msgid "Someone requested that the password be reset for the following account:" -msgstr "" -"Jemand hat die Zurücksetzen des Passworts für folgendes Konto beantragt: " - -#: templates/emails/customer-reset-password.php:15 -#: templates/emails/plain/customer-reset-password.php:15 -msgid "Username: %s" -msgstr "Benutzername: %s" - -#: templates/emails/customer-reset-password.php:16 -#: templates/emails/plain/customer-reset-password.php:16 -msgid "If this was a mistake, just ignore this email and nothing will happen." -msgstr "" -"Falls Sie diese E-Mail irrtümlich erhalten haben, ignorieren Sie diese " -"bitte. Nichts wird weiterhin passieren. " - -#: templates/emails/customer-reset-password.php:17 -#: templates/emails/plain/customer-reset-password.php:17 -msgid "To reset your password, visit the following address:" -msgstr "Um Ihr Passwort zurückzusetzen besuchen Sie folgende Seite: " - -#: templates/emails/customer-reset-password.php:20 -msgid "Click here to reset your password" -msgstr "Klicken Sie hier um das Passwort zurückzusetzen" - -#: templates/emails/email-addresses.php:18 -#: templates/emails/plain/email-addresses.php:12 -msgid "Billing address" -msgstr "Rechnungsadresse" - -#: templates/emails/email-addresses.php:28 -#: templates/emails/plain/email-addresses.php:17 -msgid "Shipping address" -msgstr "Lieferadresse" - -#: templates/emails/email-order-items.php:47 -msgid "Download %d:" -msgstr "Download %d:" - -#: templates/emails/email-order-items.php:49 -msgid "Download:" -msgstr "Download:" - -#: templates/emails/plain/admin-new-order.php:19 -#: templates/emails/plain/customer-completed-order.php:19 -#: templates/emails/plain/customer-invoice.php:20 -#: templates/emails/plain/customer-note.php:27 -#: templates/emails/plain/customer-processing-order.php:19 -msgid "Order number: %s" -msgstr "Bestellnummer: %s" - -#: templates/emails/plain/admin-new-order.php:20 -#: templates/emails/plain/customer-completed-order.php:20 -#: templates/emails/plain/customer-invoice.php:21 -#: templates/emails/plain/customer-note.php:28 -#: templates/emails/plain/customer-processing-order.php:20 -msgid "Order date: %s" -msgstr "Bestelldatum: %s" - -#: templates/emails/plain/admin-new-order.php:20 -msgid "jS F Y" -msgstr "d. F Y" - -#: templates/emails/plain/customer-completed-order.php:38 -#: templates/emails/plain/customer-note.php:46 -#: templates/emails/plain/customer-processing-order.php:38 -msgid "Your details" -msgstr "Ihre Details" - -#: templates/emails/plain/email-order-items.php:28 -msgid "Quantity: %s" -msgstr "Menge: %s" - -#: templates/emails/plain/email-order-items.php:31 -msgid "Cost: %s" -msgstr "Kosten: %s" - -#: templates/loop/add-to-cart.php:17 templates/loop/add-to-cart.php:41 -#: templates/loop/add-to-cart.php:50 -msgid "Read More" -msgstr "Weiterlesen" - -#: templates/loop/add-to-cart.php:33 -msgid "Select options" -msgstr "Ausführung auswählen" - -#: templates/loop/add-to-cart.php:37 -msgid "View options" -msgstr "Optionen anzeigen" - -#: templates/loop/no-products-found.php:14 templates/loop-shop.php:40 -msgid "No products found which match your selection." -msgstr "Es wurden keine Produkte gefunden, die Ihrer Auswahl entsprechen." - -#: templates/loop/orderby.php:21 -msgid "Default sorting" -msgstr "Standardsortierung" - -#: templates/loop/orderby.php:22 -msgid "Sort by popularity" -msgstr "Nach Beliebtheit sortieren" - -#: templates/loop/orderby.php:23 -msgid "Sort by average rating" -msgstr "Nach Durchschnittsbewertung sortieren" - -#: templates/loop/orderby.php:24 -msgid "Sort by newness" -msgstr "Nach Neuheit sortieren" - -#: templates/loop/orderby.php:25 -msgid "Sort by price: low to high" -msgstr "Nach Preis sortieren: niedrig zu hoch" - -#: templates/loop/orderby.php:26 -msgid "Sort by price: high to low" -msgstr "Nach Preis sortieren: hoch zu niedrig" - -#: templates/loop/result-count.php:28 -msgid "Showing the single result" -msgstr "Das Einzelergebnis anzeigen" - -#: templates/loop/result-count.php:30 -msgid "Showing all %d results" -msgstr "Alle %d Ergebnisse anzeigen" - -#: templates/loop/result-count.php:32 -msgctxt "%1$d = first, %2$d = last, %3$d = total" -msgid "Showing %1$d–%2$d of %3$d results" -msgstr "%1$d–%2$d von %3$d Ergebnisse anzeigen" - -#: templates/loop/sale-flash.php:16 templates/single-product/sale-flash.php:16 -msgid "Sale!" -msgstr "Angebot!" - -#: templates/myaccount/form-change-password.php:20 -#: templates/myaccount/form-lost-password.php:31 -msgid "New password" -msgstr "Neues Passwort" - -#: templates/myaccount/form-change-password.php:24 -#: templates/myaccount/form-lost-password.php:35 -msgid "Re-enter new password" -msgstr "Neues Passwort bestätigen" - -#: templates/myaccount/form-change-password.php:29 -#: templates/myaccount/form-lost-password.php:45 -msgid "Save" -msgstr "Speichern" - -#: templates/myaccount/form-edit-address.php:43 -msgid "Save Address" -msgstr "Adresse speichern" - -#: templates/myaccount/form-login.php:26 templates/myaccount/form-login.php:40 -#: templates/shop/form-login.php:31 -msgid "Login" -msgstr "Login" - -#: templates/myaccount/form-login.php:29 -#: templates/myaccount/form-lost-password.php:24 -#: templates/shop/form-login.php:20 -msgid "Username or email" -msgstr "Benutzername oder E-Mail" - -#: templates/myaccount/form-login.php:33 templates/myaccount/form-login.php:85 -#: templates/shop/form-login.php:24 -msgid "Password" -msgstr "Passwort" - -#: templates/myaccount/form-login.php:50 templates/shop/form-login.php:33 -msgid "Lost Password?" -msgstr "Passwort vergessen?" - -#: templates/myaccount/form-login.php:60 -#: templates/myaccount/form-login.php:101 -msgid "Register" -msgstr "Anmelden" - -#: templates/myaccount/form-login.php:66 -msgid "Username" -msgstr "Benutzername" - -#: templates/myaccount/form-login.php:78 -#: templates/single-product-reviews.php:86 -msgid "Email" -msgstr "E-Mail" - -#: templates/myaccount/form-login.php:89 -msgid "Re-enter password" -msgstr "Passwort bestätigen" - -#: templates/myaccount/form-lost-password.php:22 -msgid "" -"Lost your password? Please enter your username or email address. You will " -"receive a link to create a new password via email." -msgstr "" -"Haben Sie Ihr Passwort verloren? Bitte geben Sie Ihren Benutzernamen oder E-" -"Mailadresse ein. Sie erhalten einen Link per E-Mail, womit Sie sich ein " -"neues Passwort erstellen können. " - -#: templates/myaccount/form-lost-password.php:28 -msgid "Enter a new password below." -msgstr "Geben Sie ein neues Passwort ein." - -#: templates/myaccount/form-lost-password.php:45 -msgid "Reset Password" -msgstr "Passwort zurücksetzen" - -#: templates/myaccount/my-account.php:19 -msgid "" -"Hello, %s. From your account dashboard you can view your " -"recent orders, manage your shipping and billing addresses and change your password." -msgstr "" -"Hallo, %s. Mit Ihrem Konto haben Sie die Möglichkeit Ihre " -"vergangenen Bestellungen abzurufen, Ihre Liefer- und Rechnungsadresse zu " -"verwalten und Ihr Passwort zu ändern." - -#: templates/myaccount/my-address.php:17 -msgid "My Addresses" -msgstr "Meine Adressen" - -#: templates/myaccount/my-address.php:23 -msgid "My Address" -msgstr "Meine Adresse" - -#: templates/myaccount/my-address.php:35 -msgid "The following addresses will be used on the checkout page by default." -msgstr "" -"Die folgenden Adressen werden in der Bestellabwicklung als Voreinstellung " -"genutzt." - -#: templates/myaccount/my-address.php:45 woocommerce.php:951 -#: woocommerce.php:987 woocommerce.php:1024 woocommerce.php:1062 -#: woocommerce.php:1100 -msgid "Edit" -msgstr "Bearbeiten" - -#: templates/myaccount/my-address.php:64 -msgid "You have not set up this type of address yet." -msgstr "Sie haben bisher keine Adresse dieser Art erstellt." - -#: templates/myaccount/my-downloads.php:18 -msgid "Available downloads" -msgstr "Verfügbare Downloads" - -#: templates/myaccount/my-downloads.php:27 -msgid "%s download remaining" -msgid_plural "%s downloads remaining" -msgstr[0] "%s Download verfügbar" -msgstr[1] "%s Downloads verfügbar" - -#: templates/myaccount/my-orders.php:26 -msgid "Recent Orders" -msgstr "Zurückliegende Bestellungen" - -#: templates/myaccount/my-orders.php:32 woocommerce.php:1059 -msgid "Order" -msgstr "Bestellung" - -#: templates/myaccount/my-orders.php:33 -msgid "Date" -msgstr "Datum" - -#: templates/myaccount/my-orders.php:34 -msgid "Status" -msgstr "Status" - -#: templates/myaccount/my-orders.php:62 -msgid "%s for %s item" -msgid_plural "%s for %s items" -msgstr[0] "%s für %s Posten" -msgstr[1] "%s für %s Posten" - -#: templates/myaccount/my-orders.php:77 -msgid "Cancel" -msgstr "Abbrechen" - -#: templates/myaccount/my-orders.php:82 -msgid "View" -msgstr "Anzeigen" - -#: templates/order/form-tracking.php:17 -msgid "" -"To track your order please enter your Order ID in the box below and press " -"return. This was given to you on your receipt and in the confirmation email " -"you should have received." -msgstr "" -"Um den Stand Ihrer Bestellung zu verfolgen, geben Sie bitte Ihre Bestell-ID " -"in das Feld unten ein und bestätigen mit Enter. Die Bestell-ID finden Sie in " -"der Auftragsbestätigung bzw. Bestätigungsmail, welche Sie dazu erhalten " -"haben." - -#: templates/order/form-tracking.php:19 -msgid "Order ID" -msgstr "Bestell-ID" - -#: templates/order/form-tracking.php:19 -msgid "Found in your order confirmation email." -msgstr "Gefunden in Ihrer Bestellbestätigungsmail." - -#: templates/order/form-tracking.php:20 -msgid "Billing Email" -msgstr "E-Mail-Rechnung" - -#: templates/order/form-tracking.php:20 -msgid "Email you used during checkout." -msgstr "Die E-Mail welche Sie bei der Bestellabwicklung verwendet haben." - -#: templates/order/form-tracking.php:23 -msgid "Track" -msgstr "verfolgen" - -#: templates/order/order-details.php:16 -msgid "Order Details" -msgstr "Details der Bestellung" - -#: templates/order/order-details.php:64 -msgid "Download file%s" -msgstr "Datei %s herunterladen" - -#: templates/order/order-details.php:90 -msgid "Order Again" -msgstr "Wieder bestellen" - -#: templates/order/order-details.php:102 -msgid "Telephone:" -msgstr "Telefon:" - -#: templates/order/tracking.php:18 -msgid "Order %s which was made %s has the status “%s”" -msgstr "" -"Bestellung %s welche vor %s erstellt wurde, hat den Status “%s”" - -#: templates/order/tracking.php:18 -msgid "ago" -msgstr " " - -#: templates/order/tracking.php:20 -msgid "and was completed" -msgstr "und wurde abgeschlossen vor" - -#: templates/order/tracking.php:20 -msgid " ago" -msgstr " " - -#: templates/shop/breadcrumb.php:63 -msgid "Products tagged “" -msgstr "Produkte verschlagwortet “" - -#: templates/shop/breadcrumb.php:91 templates/shop/breadcrumb.php:188 -msgid "Search results for “" -msgstr "Suchergebnisse für “" - -#: templates/shop/breadcrumb.php:146 -msgid "Error 404" -msgstr "Fehler 404" - -#: templates/shop/breadcrumb.php:192 -msgid "Posts tagged “" -msgstr "Produkt verschlagwortet “" - -#: templates/shop/breadcrumb.php:197 -msgid "Author:" -msgstr "Autor:" - -#: templates/shop/breadcrumb.php:202 -msgid "Page" -msgstr "Seite" - -#: templates/single-product/add-to-cart/variable.php:24 -msgid "Choose an option" -msgstr "Wählen Sie eine Ausführung" - -#: templates/single-product/add-to-cart/variable.php:69 -msgid "Clear selection" -msgstr "Auswahl aufheben" - -#: templates/single-product/meta.php:24 -msgid "Category:" -msgid_plural "Categories:" -msgstr[0] "Kategorie:" -msgstr[1] "Kategorien:" - -#: templates/single-product/meta.php:29 -msgid "Tag:" -msgid_plural "Tags:" -msgstr[0] "Schlüsselwort:" -msgstr[1] "Schlüsselworte:" - -#: templates/single-product/product-attributes.php:28 -msgid "Weight" -msgstr "Gewicht" - -#: templates/single-product/product-attributes.php:37 -msgid "Dimensions" -msgstr "Abmessungen" - -#: templates/single-product/related.php:36 -msgid "Related Products" -msgstr "Ähnliche Produkte" - -#: templates/single-product/review.php:26 -msgid "Rated %d out of 5" -msgstr "bewertet %d von 5" - -#: templates/single-product/review.php:33 -msgid "Your comment is awaiting approval" -msgstr "Ihr Kommentar wartet auf Freischaltung" - -#: templates/single-product/review.php:40 -msgid "verified owner" -msgstr "Verifizierter Besitzer" - -#: templates/single-product/tabs/description.php:14 -msgid "Product Description" -msgstr "Produktbeschreibung" - -#: templates/single-product/up-sells.php:39 -msgid "You may also like…" -msgstr "Das könnte Ihnen auch gefallen…" - -#: templates/single-product-reviews.php:30 -msgid "%s review for %s" -msgid_plural "%s reviews for %s" -msgstr[0] "%s Bewertung für %s" -msgstr[1] "%s Bewertungen für %s" - -#: templates/single-product-reviews.php:36 -#: templates/single-product-reviews.php:42 -msgid "Reviews" -msgstr "Bewertungen" - -#: templates/single-product-reviews.php:58 -msgid " Previous" -msgstr " Vorherige Seite" - -#: templates/single-product-reviews.php:59 -msgid "Next " -msgstr "Nächste Seite " - -#: templates/single-product-reviews.php:63 -msgid "Add Your Review" -msgstr "Eigene Bewertung eingeben" - -#: templates/single-product-reviews.php:63 -msgid "Add Review" -msgstr "Bewertung abgeben" - -#: templates/single-product-reviews.php:65 -msgid "Add a review" -msgstr "Fügen Sie Ihre Bewertung hinzu" - -#: templates/single-product-reviews.php:69 -msgid "Be the first to review" -msgstr "Seien Sie der erste Rezensent von" - -#: templates/single-product-reviews.php:71 -msgid "" -"There are no reviews yet, would you like to submit yours?" -msgstr "" -"Es gibt bisher noch keine Bewertungen. Wollen Sie Ihre jetzt übermitteln?" - -#: templates/single-product-reviews.php:89 -msgid "Submit Review" -msgstr "Bewertung senden" - -#: templates/single-product-reviews.php:96 -msgid "Rating" -msgstr "Einstufung" - -#: templates/single-product-reviews.php:97 -msgid "Rate…" -msgstr "Bewertung…" - -#: templates/single-product-reviews.php:98 -msgid "Perfect" -msgstr "Ausgezeichnet" - -#: templates/single-product-reviews.php:99 -msgid "Good" -msgstr "Gut" - -#: templates/single-product-reviews.php:100 -msgid "Average" -msgstr "Durchschnittlich" - -#: templates/single-product-reviews.php:101 -msgid "Not that bad" -msgstr "Nicht ganz schlecht" - -#: templates/single-product-reviews.php:102 -msgid "Very Poor" -msgstr "Sehr schlecht" - -#: templates/single-product-reviews.php:107 -msgid "Your Review" -msgstr "Ihre Bewertung" - -#: woocommerce-ajax.php:119 -msgid "Sorry, your session has expired." -msgstr "Entschuldigung, aber Ihre Sitzung ist abgelaufen." - -#: woocommerce-ajax.php:119 -msgid "Return to homepage →" -msgstr "Zurück zur Startseite →" - -#: woocommerce-ajax.php:256 woocommerce-ajax.php:290 woocommerce-ajax.php:313 -msgid "You do not have sufficient permissions to access this page." -msgstr "" -"Sie haben nicht die erforderlichen Rechte, um auf diese Seite zuzugreifen." - -#: woocommerce-ajax.php:258 woocommerce-ajax.php:291 woocommerce-ajax.php:314 -msgid "You have taken too long. Please go back and retry." -msgstr "" -"Sie haben das Zeitlimit überschritten. Bitte gehen Sie zurück und versuchen " -"Sie es erneut." - -#: woocommerce-ajax.php:550 -msgid "Same as parent" -msgstr "Gleich wie Eltern" - -#: woocommerce-ajax.php:551 -msgid "Standard" -msgstr "Standard" - -#: woocommerce-ajax.php:1098 -msgid "" -"No products had their stock reduced - they may not have stock management " -"enabled." -msgstr "" -"Keine Produkte wurden im Lager reduziert - es kann sein, dass keine " -"Lagerverwaltung aktiviert ist." - -#: woocommerce-ajax.php:1142 woocommerce-ajax.php:1143 -msgid "Item #%s stock increased from %s to %s." -msgstr "Lagerbestand von Produkt #%s erhöht von %s auf %s." - -#: woocommerce-ajax.php:1150 -msgid "" -"No products had their stock increased - they may not have stock management " -"enabled." -msgstr "" -"Keine Produkte wurden im Lager erhöht - es kann sein, dass keine " -"Lagerverwaltung aktiviert ist." - -#: woocommerce-ajax.php:1171 -msgid "Value" -msgstr "Wert" - -#: woocommerce-ajax.php:1485 -msgid "Delete note" -msgstr "Hinweis löschen" - -#: woocommerce-core-functions.php:275 -msgid "%s – %s%s" -msgstr "%s – %s%s" - -#: woocommerce-core-functions.php:698 -msgid "Australian Dollars" -msgstr "Australischer Dollar" - -#: woocommerce-core-functions.php:699 -msgid "Brazilian Real" -msgstr "Brasilianischer Real" - -#: woocommerce-core-functions.php:700 -msgid "Canadian Dollars" -msgstr "Kanadischer Dollar" - -#: woocommerce-core-functions.php:701 -msgid "Chinese Yuan" -msgstr "Chinesischer Yuan" - -#: woocommerce-core-functions.php:702 -msgid "Czech Koruna" -msgstr "Czeschicher Koruna" - -#: woocommerce-core-functions.php:703 -msgid "Danish Krone" -msgstr "Dänische Kronen" - -#: woocommerce-core-functions.php:704 -msgid "Euros" -msgstr "Euros" - -#: woocommerce-core-functions.php:705 -msgid "Hong Kong Dollar" -msgstr "Hong Kong Dollar" - -#: woocommerce-core-functions.php:706 -msgid "Hungarian Forint" -msgstr "Ungarische Forint" - -#: woocommerce-core-functions.php:707 -msgid "Indonesia Rupiah" -msgstr "Indonesia Rupiah" - -#: woocommerce-core-functions.php:708 -msgid "Indian Rupee" -msgstr "Indian Rupee" - -#: woocommerce-core-functions.php:709 -msgid "Israeli Shekel" -msgstr "Israelische Schekel" - -#: woocommerce-core-functions.php:710 -msgid "Japanese Yen" -msgstr "JapanischerYen" - -#: woocommerce-core-functions.php:711 -msgid "South Korean Won" -msgstr "Südkoreanischer Won" - -#: woocommerce-core-functions.php:712 -msgid "Malaysian Ringgits" -msgstr "Malaysische Ringgits" - -#: woocommerce-core-functions.php:713 -msgid "Mexican Peso" -msgstr "Mexikanischer Peso" - -#: woocommerce-core-functions.php:714 -msgid "Norwegian Krone" -msgstr "Norwegische Kronen" - -#: woocommerce-core-functions.php:715 -msgid "New Zealand Dollar" -msgstr "Neuseeländischer Dollar" - -#: woocommerce-core-functions.php:716 -msgid "Philippine Pesos" -msgstr "Philippinische Peso" - -#: woocommerce-core-functions.php:717 -msgid "Polish Zloty" -msgstr "Polnische Zloty" - -#: woocommerce-core-functions.php:718 -msgid "Pounds Sterling" -msgstr "Pfund Sterling" - -#: woocommerce-core-functions.php:719 -msgid "Romanian Leu" -msgstr "Romänischer Leu" - -#: woocommerce-core-functions.php:720 -msgid "Singapore Dollar" -msgstr "Singapur Dollar" - -#: woocommerce-core-functions.php:721 -msgid "South African rand" -msgstr "Südafrikanischer Rand" - -#: woocommerce-core-functions.php:722 -msgid "Swedish Krona" -msgstr "Schwedische Kronen" - -#: woocommerce-core-functions.php:723 -msgid "Swiss Franc" -msgstr "Schweizer Franken" - -#: woocommerce-core-functions.php:724 -msgid "Taiwan New Dollars" -msgstr "Neuer Taiwan Dollar" - -#: woocommerce-core-functions.php:725 -msgid "Thai Baht" -msgstr "Thailändische Baht" - -#: woocommerce-core-functions.php:726 -msgid "Turkish Lira" -msgstr "Türkische Lira" - -#: woocommerce-core-functions.php:727 -msgid "US Dollars" -msgstr "US Dollar" - -#: woocommerce-core-functions.php:1215 woocommerce-core-functions.php:1241 -msgid "Download Permissions Granted" -msgstr "Downloadberechtigungen Erteilt" - -#: woocommerce-core-functions.php:1365 -msgctxt "slug" -msgid "uncategorized" -msgstr "unkategorisiert" - -#: woocommerce-core-functions.php:1554 -msgid "Select a category" -msgstr "Wählen Sie eine Kategorie" - -#: woocommerce-core-functions.php:1558 -msgid "Uncategorized" -msgstr "Ohne Kategorie" - -#: woocommerce-core-functions.php:1930 -msgid "Customer" -msgstr "Kunde" - -#: woocommerce-core-functions.php:1937 -msgid "Shop Manager" -msgstr "Shop-Manager" - -#: woocommerce-core-functions.php:2494 -msgid "Unpaid order cancelled - time limit reached." -msgstr "Unbezahlte Bestellungen abgebrochen - Zeitlimit erreicht" - -#: woocommerce-functions.php:226 woocommerce-functions.php:271 -msgid "Cart updated." -msgstr "Warenkorb aktualisiert." - -#: woocommerce-functions.php:257 -msgid "You can only have 1 %s in your cart." -msgstr "Sie dürfen nur 1 %s in ihrem Warenkorb haben." - -#: woocommerce-functions.php:315 woocommerce-functions.php:373 -msgid "Please choose product options…" -msgstr "Bitte wählen Sie die Produktoptionen…" - -#: woocommerce-functions.php:406 -msgid "" -"Please choose the quantity of items you wish to add to your cart…" -msgstr "" -"Bitte wählen Sie die Menge der Posten, die Sie Ihrem Warenkorb hinzufügen " -"möchten…" - -#: woocommerce-functions.php:413 -msgid "Please choose a product to add to your cart…" -msgstr "" -"Bitte wählen Sie ein Produkt, um es Ihrem Warenkorb hinzuzufügen…" - -#: woocommerce-functions.php:482 -msgid "Added "%s" to your cart." -msgstr ""%s" wurde dem Warenkorb hinzugefügt." - -#: woocommerce-functions.php:482 -msgid "" and "" -msgstr "" und "" - -#: woocommerce-functions.php:485 -msgid ""%s" was successfully added to your cart." -msgstr ""%s" wurde erfolgreich Ihrem Warenkorb hinzugefügt." - -#: woocommerce-functions.php:493 -msgid "Continue Shopping →" -msgstr "Einkauf fortfahren →" - -#: woocommerce-functions.php:660 -msgid "Username is required." -msgstr "Benutzername wird benötigt." - -#: woocommerce-functions.php:661 woocommerce-functions.php:756 -msgid "Password is required." -msgstr "Passwort wird benötigt." - -#: woocommerce-functions.php:730 -msgid "Please enter a username." -msgstr "Bitte geben Sie einen Benutzernamen ein." - -#: woocommerce-functions.php:732 -msgid "" -"This username is invalid because it uses illegal characters. Please enter a " -"valid username." -msgstr "" -"Der Benutzername ist ungültig, da es ungültige Zeichen verwendet. Bitte " -"geben Sie einen gültigen Benutzernamen ein. " - -#: woocommerce-functions.php:735 -msgid "This username is already registered, please choose another one." -msgstr "" -"Dieser Benutzername wurde schon registriert. Bitte wählen Sei einen anderen." - -#: woocommerce-functions.php:747 -msgid "Please type your e-mail address." -msgstr "Bitte geben Sie Ihre E-Mail Adresse ein." - -#: woocommerce-functions.php:749 -msgid "The email address isn’t correct." -msgstr "Die E-Mail Adresse ist nicht korrekt." - -#: woocommerce-functions.php:752 -msgid "This email is already registered, please choose another one." -msgstr "" -"Diese E-Mail wurde für eine Registrierung schon verwendet. Bitte wählen Sie " -"eine andere." - -#: woocommerce-functions.php:757 -msgid "Re-enter your password." -msgstr "Passwort bestätigen." - -#: woocommerce-functions.php:762 -msgid "Anti-spam field was filled in." -msgstr "Antispamfeld wurde ausgefüllt." - -#: woocommerce-functions.php:870 -msgid "The cart has been filled with the items from your previous order." -msgstr "" -"Ihr Warenkorb wurde mit den Artikeln aus ihrer vorherigen Bestellung gefüllt." - -#: woocommerce-functions.php:896 -msgid "Order cancelled by customer." -msgstr "Bestellung wurde durch den Kunden abgebrochen." - -#: woocommerce-functions.php:899 -msgid "Your order was cancelled." -msgstr "Ihre Bestellung wurde abgebrochen." - -#: woocommerce-functions.php:905 -msgid "" -"Your order is no longer pending and could not be cancelled. Please contact " -"us if you need assistance." -msgstr "" -"Ihre Bestellung hat die Warteschleife bereits verlassen und konnte daher " -"nicht mehr abgebrochen werden. Bitte kontaktieren Sie uns, wenn Sie weitere " -"Hilfestellung benötigen." - -#: woocommerce-functions.php:940 -msgid "Invalid email address." -msgstr "Ungültige E-Mail Adresse." - -#: woocommerce-functions.php:940 woocommerce-functions.php:963 -#: woocommerce-functions.php:983 woocommerce-functions.php:989 -#: woocommerce-functions.php:993 woocommerce-functions.php:996 -#: woocommerce-functions.php:1026 woocommerce-functions.php:1158 -msgid "Go to homepage →" -msgstr "Zur Startseite gehen →" - -#: woocommerce-functions.php:963 -msgid "Invalid download." -msgstr "fehlerhafter download." - -#: woocommerce-functions.php:975 -msgid "You must be logged in to download files." -msgstr "Sie müssen angemeldet sein, um Dateien herunterzuladen." - -#: woocommerce-functions.php:975 -msgid "Login →" -msgstr "Login →" - -#: woocommerce-functions.php:978 -msgid "This is not your download link." -msgstr "Dies ist nicht Ihr Download Link." - -#: woocommerce-functions.php:983 -msgid "Product no longer exists." -msgstr "Dieses Produkt existiert nicht mehr." - -#: woocommerce-functions.php:993 -msgid "Sorry, you have reached your download limit for this file" -msgstr "Tut uns leid, Sie haben Ihr Download-Limit für diese Datei erreicht." - -#: woocommerce-functions.php:996 -msgid "Sorry, this download has expired" -msgstr "Verzeihung, dieser Download ist abgelaufen." - -#: woocommerce-functions.php:1026 -msgid "No file defined" -msgstr "Keine Datei definiert" - -#: woocommerce-functions.php:1158 -msgid "File not found" -msgstr "Datei nicht gefunden" - -#: woocommerce-functions.php:1274 -msgid "New products" -msgstr "Neue Produkte" - -#: woocommerce-functions.php:1282 -msgid "New products added to %s" -msgstr "Neue Produkte hinzugefügt zu %s" - -#: woocommerce-functions.php:1290 -msgid "New products tagged %s" -msgstr "Neue Produkte verschlagwortet %s" - -#: woocommerce-functions.php:1328 -msgid "You have taken too long. Please go back and refresh the page." -msgstr "" -"Sie haben zu lange gebraucht. Bitte gehen Sie zurück und aktualisieren Sie " -"die Seite." - -#: woocommerce-functions.php:1331 -msgid "Please rate the product." -msgstr "Bitte bewerten Sie das Produkt." - -#: woocommerce-functions.php:1639 -msgid "Password changed successfully." -msgstr "Passwort wurde erfolgreich geändert." - -#: woocommerce-functions.php:1715 -msgid "Address changed successfully." -msgstr "Adresse wurde erfolgreich geändert." - -#: woocommerce-template.php:200 -msgid "" -"This is a demo store for testing purposes — no orders shall be " -"fulfilled." -msgstr "" -"Dies ist ein für Testzwecke aufgesetzter Demo-Shop — Bestellungen " -"werden nicht ausgeführt." - -#: woocommerce-template.php:219 -msgid "Search Results: “%s”" -msgstr "Such Ergebnisse: “%s”" - -#: woocommerce-template.php:222 -msgid " – Page %s" -msgstr " – Seite %s" - -#: woocommerce-template.php:767 -msgid "Reviews (%d)" -msgstr "Bewertungen (%d)" - -#: woocommerce-template.php:993 -msgctxt "breadcrumb" -msgid "Home" -msgstr "Startseite" - -#: woocommerce-template.php:1292 woocommerce.php:1209 -msgid "required" -msgstr "benötigt" - -#: woocommerce-template.php:1341 -msgid "Update country" -msgstr "Land aktualisieren" - -#: woocommerce-template.php:1496 -msgid "Search for:" -msgstr "Suche nach:" - -#: woocommerce-template.php:1497 -msgid "Search for products" -msgstr "Suche nach Produkten" - -#: woocommerce-template.php:1498 woocommerce.php:947 -msgid "Search" -msgstr "Suche" - -#: woocommerce.php:171 -msgid "Docs" -msgstr "Doku" - -#: woocommerce.php:172 -msgid "Premium Support" -msgstr "Premium Support" - -#: woocommerce.php:786 -msgctxt "slug" -msgid "product-category" -msgstr "produkt-kategorie" - -#: woocommerce.php:787 -msgctxt "slug" -msgid "product-tag" -msgstr "produkt-schlagwort" - -#: woocommerce.php:789 -msgctxt "slug" -msgid "product" -msgstr "Produkt" - -#: woocommerce.php:824 -msgid "Product Category" -msgstr "Produkt Kategorie" - -#: woocommerce.php:825 -msgctxt "Admin menu name" -msgid "Categories" -msgstr "Kategorien" - -#: woocommerce.php:826 -msgid "Search Product Categories" -msgstr "Produktkategorien durchsuchen" - -#: woocommerce.php:827 -msgid "All Product Categories" -msgstr "Alle Produktkategorien" - -#: woocommerce.php:828 -msgid "Parent Product Category" -msgstr "Übergeordnete Produktkategorie" - -#: woocommerce.php:829 -msgid "Parent Product Category:" -msgstr "Übergeordnete Produktkategorie:" - -#: woocommerce.php:830 -msgid "Edit Product Category" -msgstr "Produktkategorie bearbeiten" - -#: woocommerce.php:831 -msgid "Update Product Category" -msgstr "Produktkategorie aktualisieren" - -#: woocommerce.php:832 -msgid "Add New Product Category" -msgstr "Produktkategorie hinzufügen" - -#: woocommerce.php:833 -msgid "New Product Category Name" -msgstr "Neuer Produktkategoriename" - -#: woocommerce.php:860 -msgid "Product Tag" -msgstr "Produkt Schlüsselwort" - -#: woocommerce.php:861 -msgctxt "Admin menu name" -msgid "Tags" -msgstr "Schlagworte" - -#: woocommerce.php:862 -msgid "Search Product Tags" -msgstr "Produktschlagwörter durchsuchen" - -#: woocommerce.php:863 -msgid "All Product Tags" -msgstr "Alle Produktschlagwörter" - -#: woocommerce.php:864 -msgid "Parent Product Tag" -msgstr "Übergeordnetes Produktschlagwort" - -#: woocommerce.php:865 -msgid "Parent Product Tag:" -msgstr "Übergeordnetes Produktschlagwort:" - -#: woocommerce.php:866 -msgid "Edit Product Tag" -msgstr "Produktschlagwort bearbeiten" - -#: woocommerce.php:867 -msgid "Update Product Tag" -msgstr "Produktschlagwort aktualisieren" - -#: woocommerce.php:868 -msgid "Add New Product Tag" -msgstr "Neues Produktschlagwort hinzufügen" - -#: woocommerce.php:869 -msgid "New Product Tag Name" -msgstr "Neuer Produktschlagwortname" - -#: woocommerce.php:888 woocommerce.php:890 -msgid "Shipping Classes" -msgstr "Versandklassen" - -#: woocommerce.php:892 -msgctxt "Admin menu name" -msgid "Shipping Classes" -msgstr "Versandklassen" - -#: woocommerce.php:893 -msgid "Search Shipping Classes" -msgstr "Suche Versandklassen" - -#: woocommerce.php:894 -msgid "All Shipping Classes" -msgstr "Alle Versandklassen" - -#: woocommerce.php:895 -msgid "Parent Shipping Class" -msgstr "Übergeordnete Versandklasse" - -#: woocommerce.php:896 -msgid "Parent Shipping Class:" -msgstr "Übergeordnete Versandklasse:" - -#: woocommerce.php:897 -msgid "Edit Shipping Class" -msgstr "Bearbeite Versandklasse" - -#: woocommerce.php:898 -msgid "Update Shipping Class" -msgstr "Aktualisiere Versandklasse" - -#: woocommerce.php:899 -msgid "Add New Shipping Class" -msgstr "Neue Versandklasse hinzufügen" - -#: woocommerce.php:900 -msgid "New Shipping Class Name" -msgstr "Neuer Versandklassenname" - -#: woocommerce.php:948 -msgid "All" -msgstr "Alle" - -#: woocommerce.php:949 woocommerce.php:950 -msgid "Parent" -msgstr "Vorgänger" - -#: woocommerce.php:952 -msgid "Update" -msgstr "Aktualisieren" - -#: woocommerce.php:953 -msgid "Add New" -msgstr "Hinzufügen" - -#: woocommerce.php:954 -msgid "New" -msgstr "Neu" - -#: woocommerce.php:984 -msgctxt "Admin menu name" -msgid "Products" -msgstr "Produkte" - -#: woocommerce.php:985 -msgid "Add Product" -msgstr "Produkt hinzufügen" - -#: woocommerce.php:986 -msgid "Add New Product" -msgstr "Neues Produkt hinzufügen" - -#: woocommerce.php:988 -msgid "Edit Product" -msgstr "Produkt bearbeiten" - -#: woocommerce.php:989 -msgid "New Product" -msgstr "Neues Produkt" - -#: woocommerce.php:990 woocommerce.php:991 -msgid "View Product" -msgstr "Produkt anzeigen" - -#: woocommerce.php:992 -msgid "Search Products" -msgstr "Produkte suchen" - -#: woocommerce.php:993 -msgid "No Products found" -msgstr "Keine Produkte gefunden" - -#: woocommerce.php:994 -msgid "No Products found in trash" -msgstr "Keine Produkte im Papierkorb gefunden" - -#: woocommerce.php:995 -msgid "Parent Product" -msgstr "Übergeordnetes Produkt" - -#: woocommerce.php:997 -msgid "This is where you can add new products to your store." -msgstr "Hier können Sie neue Produkte zu Ihrem Shop hinzufügen." - -#: woocommerce.php:1020 -msgid "Variations" -msgstr "Varianten" - -#: woocommerce.php:1021 -msgid "Variation" -msgstr "Variante" - -#: woocommerce.php:1022 -msgid "Add Variation" -msgstr "Variante hinzufügen" - -#: woocommerce.php:1023 -msgid "Add New Variation" -msgstr "Neue Variante hinzufügen" - -#: woocommerce.php:1025 -msgid "Edit Variation" -msgstr "Variante bearbeiten" - -#: woocommerce.php:1026 -msgid "New Variation" -msgstr "Neue Variante" - -#: woocommerce.php:1027 woocommerce.php:1028 -msgid "View Variation" -msgstr "Variante anzeigen" - -#: woocommerce.php:1029 -msgid "Search Variations" -msgstr "Varianten durchsuchen" - -#: woocommerce.php:1030 -msgid "No Variations found" -msgstr "Keine Varianten gefunden" - -#: woocommerce.php:1031 -msgid "No Variations found in trash" -msgstr "Keine Varianten im Papierkorb gefunden" - -#: woocommerce.php:1032 -msgid "Parent Variation" -msgstr "Übergeordnete Variante" - -#: woocommerce.php:1049 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Bestellungen" - -#: woocommerce.php:1058 -msgid "Orders" -msgstr "Bestellungen" - -#: woocommerce.php:1060 -msgid "Add Order" -msgstr "Bestellung hinzufügen" - -#: woocommerce.php:1061 -msgid "Add New Order" -msgstr "Neue Bestellung hinzufügen" - -#: woocommerce.php:1063 -msgid "Edit Order" -msgstr "Bestellung bearbeiten" - -#: woocommerce.php:1064 -msgid "New Order" -msgstr "Neue Bestellung" - -#: woocommerce.php:1067 -msgid "Search Orders" -msgstr "Bestellungen suchen" - -#: woocommerce.php:1068 -msgid "No Orders found" -msgstr "Keine Bestellungen gefunden" - -#: woocommerce.php:1069 -msgid "No Orders found in trash" -msgstr "Keine Bestellungen im Papierkorb gefunden" - -#: woocommerce.php:1070 -msgid "Parent Orders" -msgstr "Übergeordnete Bestellungen" - -#: woocommerce.php:1073 -msgid "This is where store orders are stored." -msgstr "Hier werden die Bestellungen des Shops gespeichert." - -#: woocommerce.php:1095 -msgid "Coupons" -msgstr "Gutscheine" - -#: woocommerce.php:1097 -msgctxt "Admin menu name" -msgid "Coupons" -msgstr "Gutscheine" - -#: woocommerce.php:1098 -msgid "Add Coupon" -msgstr "Gutschein hinzufügen" - -#: woocommerce.php:1099 -msgid "Add New Coupon" -msgstr "Neuen Gutschein hinzufügen" - -#: woocommerce.php:1101 -msgid "Edit Coupon" -msgstr "Gutschein bearbeiten" - -#: woocommerce.php:1102 -msgid "New Coupon" -msgstr "Neuer Gutschein" - -#: woocommerce.php:1103 -msgid "View Coupons" -msgstr "Gutscheine anzeigen" - -#: woocommerce.php:1104 -msgid "View Coupon" -msgstr "Gutschein anzeigen" - -#: woocommerce.php:1105 -msgid "Search Coupons" -msgstr "Gutschein suchen" - -#: woocommerce.php:1106 -msgid "No Coupons found" -msgstr "Keine Gutscheine gefunden" - -#: woocommerce.php:1107 -msgid "No Coupons found in trash" -msgstr "Keine Gutscheine im Papierkorb gefunden" - -#: woocommerce.php:1108 -msgid "Parent Coupon" -msgstr "Übergeordneter Gutschein" - -#: woocommerce.php:1110 -msgid "" -"This is where you can add new coupons that customers can use in your store." -msgstr "" -"Hier können Sie neue Gutscheine hinzufügen, die Ihre Kunden in Ihrem " -"Onlineshop verwenden können." - -#: woocommerce.php:1206 -msgid "Select an option…" -msgstr "Wählen Sie eine Option…" - -#: woocommerce.php:1207 -msgid "Please select a rating" -msgstr "Bitte wählen Sie eine Bewertung" - -#: woocommerce.php:1208 -msgid "" -"Sorry, no products matched your selection. Please choose a different " -"combination." -msgstr "" -"Bedaure, keine Produkte entsprechen Ihrer Auswahl. Bitte wählen Sie eine " -"andere Kombination." - -#: woocommerce.php:1691 -msgid "Cart % Discount" -msgstr "Warenkorb % Rabatt" - -#: woocommerce.php:1692 -msgid "Product Discount" -msgstr "Produktrabatt" - -#: woocommerce.php:1693 -msgid "Product % Discount" -msgstr "Produkt % Rabatt" - -#: woocommerce.php:1758 -msgid "Action failed. Please refresh the page and retry." -msgstr "Vorgang fehlgeschlagen. Bitte Seite neu laden und erneut probieren." - -#: assets/js/admin/editor_plugin_lang.php:5 -msgid "Insert Shortcode" -msgstr "Shortcode einfügen" - -#: assets/js/admin/editor_plugin_lang.php:6 -msgid "Product price/cart button" -msgstr "Produkt Preis / Warenkorb Button" - -#: assets/js/admin/editor_plugin_lang.php:7 -msgid "Product by SKU/ID" -msgstr "Produkt nach SKU/ID" - -#: assets/js/admin/editor_plugin_lang.php:8 -msgid "Products by SKU/ID" -msgstr "Produkte nach SKU/ID" - -#: assets/js/admin/editor_plugin_lang.php:9 -msgid "Product categories" -msgstr "Produkt Kategorien" - -#: assets/js/admin/editor_plugin_lang.php:10 -msgid "Products by category slug" -msgstr "Produkte nach Kategorie Pfad" - -#: assets/js/admin/editor_plugin_lang.php:11 -msgid "Recent products" -msgstr "neueste Produkte" - -#: assets/js/admin/editor_plugin_lang.php:12 -msgid "Featured products" -msgstr "hervorgehobene Produkte" - -#: assets/js/admin/editor_plugin_lang.php:13 -msgid "Shop Messages" -msgstr "Shop Nachrichten" - -#: assets/js/admin/editor_plugin_lang.php:14 -msgid "Pages" -msgstr "Seiten" - -#: assets/js/admin/editor_plugin_lang.php:15 -#: classes/widgets/class-wc-widget-cart.php:61 -msgid "Cart" -msgstr "Warenkorb" - -#: assets/js/admin/editor_plugin_lang.php:16 -msgid "Checkout" -msgstr "Kasse" - -#: assets/js/admin/editor_plugin_lang.php:17 -msgid "Order tracking" -msgstr "Bestellung nachverfolgen" - -#: assets/js/admin/editor_plugin_lang.php:18 -#: templates/checkout/thankyou.php:30 -msgid "My Account" -msgstr "Mein Konto" - -#: assets/js/admin/editor_plugin_lang.php:19 -msgid "Edit Address" -msgstr "Adresse ändern" - -#: assets/js/admin/editor_plugin_lang.php:20 -msgid "Change Password" -msgstr "Passwort ändern" - -#: assets/js/admin/editor_plugin_lang.php:21 woocommerce.php:1065 -#: woocommerce.php:1066 -msgid "View Order" -msgstr "Bestellung ansehen" - -#: assets/js/admin/editor_plugin_lang.php:22 -#: templates/checkout/thankyou.php:28 templates/myaccount/my-orders.php:71 -msgid "Pay" -msgstr "Bezahlen" - -#: assets/js/admin/editor_plugin_lang.php:23 -msgid "Thankyou" -msgstr "Dankeschön" - -#: classes/abstracts/abstract-wc-email.php:431 -#: classes/emails/class-wc-email-customer-completed-order.php:135 -#: classes/emails/class-wc-email-customer-invoice.php:138 -#: classes/emails/class-wc-email-new-order.php:115 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:63 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:57 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:122 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:120 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:76 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:75 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:50 -msgid "Enable/Disable" -msgstr "Aktivieren/Deaktivieren" - -#: classes/abstracts/abstract-wc-email.php:433 -#: classes/emails/class-wc-email-customer-completed-order.php:137 -#: classes/emails/class-wc-email-customer-invoice.php:140 -#: classes/emails/class-wc-email-new-order.php:117 -msgid "Enable this email notification" -msgstr "Diese E-Mail-Benachrichtigung aktivieren" - -#: classes/abstracts/abstract-wc-email.php:437 -#: classes/emails/class-wc-email-customer-invoice.php:144 -msgid "Email subject" -msgstr "E-Mailbetreff" - -#: classes/abstracts/abstract-wc-email.php:439 -#: classes/abstracts/abstract-wc-email.php:446 -#: classes/emails/class-wc-email-customer-completed-order.php:143 -#: classes/emails/class-wc-email-customer-completed-order.php:150 -#: classes/emails/class-wc-email-customer-completed-order.php:157 -#: classes/emails/class-wc-email-customer-completed-order.php:164 -#: classes/emails/class-wc-email-customer-invoice.php:146 -#: classes/emails/class-wc-email-customer-invoice.php:153 -#: classes/emails/class-wc-email-customer-invoice.php:160 -#: classes/emails/class-wc-email-customer-invoice.php:167 -msgid "Defaults to %s" -msgstr "Standards zu %s" - -#: classes/abstracts/abstract-wc-email.php:444 -#: classes/emails/class-wc-email-customer-invoice.php:151 -msgid "Email heading" -msgstr "E-Mail Kopfzeile" - -#: classes/abstracts/abstract-wc-email.php:451 -#: classes/emails/class-wc-email-customer-completed-order.php:169 -#: classes/emails/class-wc-email-customer-invoice.php:172 -#: classes/emails/class-wc-email-new-order.php:142 -msgid "Email type" -msgstr "E-Mail Typ" - -#: classes/abstracts/abstract-wc-email.php:453 -#: classes/emails/class-wc-email-customer-completed-order.php:171 -#: classes/emails/class-wc-email-customer-invoice.php:174 -#: classes/emails/class-wc-email-new-order.php:144 -msgid "Choose which format of email to send." -msgstr "Format auswählen, in dem die E-Mails gesendet werden" - -#: classes/abstracts/abstract-wc-email.php:457 -#: classes/emails/class-wc-email-customer-completed-order.php:175 -#: classes/emails/class-wc-email-customer-invoice.php:178 -#: classes/emails/class-wc-email-new-order.php:148 -msgid "Plain text" -msgstr "Klartext" - -#: classes/abstracts/abstract-wc-email.php:458 -#: classes/emails/class-wc-email-customer-completed-order.php:176 -#: classes/emails/class-wc-email-customer-invoice.php:179 -#: classes/emails/class-wc-email-new-order.php:149 -msgid "HTML" -msgstr "HTML" - -#: classes/abstracts/abstract-wc-email.php:459 -#: classes/emails/class-wc-email-customer-completed-order.php:177 -#: classes/emails/class-wc-email-customer-invoice.php:180 -#: classes/emails/class-wc-email-new-order.php:150 -msgid "Multipart" -msgstr "Multipart" - -#: classes/abstracts/abstract-wc-email.php:495 -#: classes/abstracts/abstract-wc-email.php:516 -msgid "Could not write to template file." -msgstr "Konnte nicht in die Template Datei schreiben" - -#: classes/abstracts/abstract-wc-email.php:543 -msgid "Template file copied to theme." -msgstr "Template Datei zum Theme kopiert" - -#: classes/abstracts/abstract-wc-email.php:552 -msgid "Template file deleted from theme." -msgstr "Template Datei im Theme gelöscht" - -#: classes/abstracts/abstract-wc-email.php:560 -#: classes/abstracts/abstract-wc-integration.php:30 -#: classes/abstracts/abstract-wc-settings-api.php:39 woocommerce.php:170 -msgid "Settings" -msgstr "Einstellungen" - -#: classes/abstracts/abstract-wc-email.php:572 -msgid "HTML template" -msgstr "HTML Template" - -#: classes/abstracts/abstract-wc-email.php:573 -msgid "Plain text template" -msgstr "Klartext Template" - -#: classes/abstracts/abstract-wc-email.php:592 -msgid "Delete template file" -msgstr "Template Datei löschen" - -#: classes/abstracts/abstract-wc-email.php:595 -msgid "" -"This template has been overridden by your theme and can be found in: " -"%s." -msgstr "" -"Dieses Template wurde vom Theme überschrieben und kann in %s " -"gefunden werden." - -#: classes/abstracts/abstract-wc-email.php:610 -msgid "Copy file to theme" -msgstr "Datei zum Theme kopieren" - -#: classes/abstracts/abstract-wc-email.php:613 -msgid "" -"To override and edit this email template copy %s to your theme " -"folder: %s." -msgstr "" -"Um das E-Mail Template zu überschreiben und bearbeiten %s in " -"den Theme Ordner %s kopieren. " - -#: classes/abstracts/abstract-wc-email.php:624 -msgid "File was not found." -msgstr "Datei wurde nicht gefunden" - -#: classes/abstracts/abstract-wc-email.php:649 -msgid "View template" -msgstr "Zeige Template" - -#: classes/abstracts/abstract-wc-email.php:650 -msgid "Hide template" -msgstr "Template ausblenden" - -#: classes/abstracts/abstract-wc-email.php:661 -msgid "Are you sure you want to delete this template file?" -msgstr "Sind Sie sich sicher diese Template Datei zu löschen?" - -#: classes/abstracts/abstract-wc-product.php:33 -msgid "" -"The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class " -"directly." -msgstr "" -"Die WC_Product ist nun abstrakt. Nutzen Sie get_product()" -" um die Instanz zu initiieren anstatt die Klasse direkt aufzurufen. " - -#: classes/abstracts/abstract-wc-product.php:545 -#: classes/abstracts/abstract-wc-product.php:550 -#: classes/abstracts/abstract-wc-product.php:569 -msgid "In stock" -msgstr "Auf Lager" - -#: classes/abstracts/abstract-wc-product.php:550 -msgid "Only %s left in stock" -msgstr "Es sind nur noch %s auf Lager" - -#: classes/abstracts/abstract-wc-product.php:553 -msgid "%s in stock" -msgstr "%s auf Lager" - -#: classes/abstracts/abstract-wc-product.php:560 -msgid "(backorders allowed)" -msgstr "(Nachbestellungen erlaubt)" - -#: classes/abstracts/abstract-wc-product.php:566 -#: classes/abstracts/abstract-wc-product.php:579 templates/cart/cart.php:76 -msgid "Available on backorder" -msgstr "Verfügbar bei Nachlieferung" - -#: classes/abstracts/abstract-wc-product.php:572 -#: classes/abstracts/abstract-wc-product.php:582 -#: classes/abstracts/abstract-wc-product.php:586 -msgid "Out of stock" -msgstr "Nicht vorrätig." - -#: classes/abstracts/abstract-wc-product.php:846 -#: classes/abstracts/abstract-wc-product.php:852 -#: classes/class-wc-cart.php:1801 classes/class-wc-order.php:891 -#: classes/class-wc-product-variable.php:274 -#: classes/class-wc-product-variable.php:283 -#: classes/class-wc-product-variation.php:246 -msgid "Free!" -msgstr "Kostenlos!" - -#: classes/abstracts/abstract-wc-product.php:870 -msgctxt "min_price" -msgid "From:" -msgstr "Von:" - -#: classes/abstracts/abstract-wc-product.php:959 -#: templates/single-product-reviews.php:28 -msgid "Rated %s out of 5" -msgstr "Bewertet mit %s von 5" - -#: classes/abstracts/abstract-wc-product.php:961 -#: templates/single-product/review.php:27 -#: templates/single-product-reviews.php:28 -msgid "out of 5" -msgstr "aus 5" - -#: classes/class-wc-cache-helper.php:92 -msgid "" -"In order for database caching to work with WooCommerce you " -"must add _wc_session_ to the \"Ignored Query Strings\" option " -"in W3 Total Cache settings here." -msgstr "" -"Um WooCommere mit Datenbank Caching kompatibel zu machen, " -"müssen Sie _wc_session_ zu den \"Ignorierten Query Strings\" " -"Optionen in den W3 Total Cache Einstellungen hier ändern." - -#: classes/class-wc-cart.php:460 -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -"Entschuldigung, wir haben nicht ausreichend \"%s\" auf Lager, um Ihre " -"Bestellung auszuführen (%s auf Lager). Bitte bearbeiten Sie Ihren Warenkorb " -"und versuchen Sie es erneut. Wir bedauern die Unannehmlichkeiten die " -"hierdurch verursacht wurden." - -#: classes/class-wc-cart.php:479 classes/class-wc-cart.php:488 -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfil your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -"Bedaura, wir haben nicht genug \"%s\" auf Lager, um Ihre Bestellung " -"auszuführen (%s auf Lager). Bitte bearbeiten Sie Ihren Warenkorb und " -"versuchen es erneut. Wir bitten diese Unannehmlichkeit zu entschuldigen." - -#: classes/class-wc-cart.php:523 -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfil your order right now. " -"Please try again in %d minutes or edit your cart and try again. We apologise " -"for any inconvenience caused." -msgstr "" -"Bedaure, wir haben nicht genug \"%s\" auf Lager um Ihre Bestellung " -"vollständig zu erfüllen. Bitte versuchen Sie es erneut in %d Minuten oder " -"bearbeiten Sie Ihren Warenkorb um die Bestellung abzuschließen. Wir bitten " -"diese Unannehmlichkeiten zu entschuldigen." - -#: classes/class-wc-cart.php:533 -msgid "" -"Sorry, \"%s\" is not in stock. Please edit your cart and try again. We " -"apologise for any inconvenience caused." -msgstr "" -"Bedaure, \"%s\" ist nicht auf Lager. Bitte bearbeiten Sie Ihren Warenkorb " -"und versuchen es erneut. Wir bitten diese Unannehmlichkeiten zu " -"entschuldigen." - -#: classes/class-wc-cart.php:845 -msgid "Sorry, "%s" cannot be purchased." -msgstr "Bedaure, "%s" kann nicht bestellt werden." - -#: classes/class-wc-cart.php:852 -msgid "" -"You cannot add "%s" to the cart because the product is out of " -"stock." -msgstr "" -"Sie können "%s" nicht Ihrem Warenkorb hinzufügen weil das Produkt " -"derzeit nicht auf Lager ist. " - -#: classes/class-wc-cart.php:857 -msgid "" -"You cannot add that amount of "%s" to the cart because there is " -"not enough stock (%s remaining)." -msgstr "" -"Sie können diese Menge von "%s" nicht dem Warenkorb hinzufügen, " -"weil nicht genug davon auf Lager ist. (%s vorhanden)" - -#: classes/class-wc-cart.php:869 classes/class-wc-cart.php:883 -#: classes/class-wc-cart.php:891 templates/cart/mini-cart.php:68 -#: woocommerce-functions.php:497 woocommerce.php:1210 -msgid "View Cart →" -msgstr "Warenkorb anzeigen →" - -#: classes/class-wc-cart.php:869 -msgid "You already have this item in your cart." -msgstr "Sie haben diese Ware schon in ihrem Warenkorb." - -#: classes/class-wc-cart.php:883 classes/class-wc-cart.php:891 -msgid "" -"%s You cannot add that amount to the " -"cart — we have %s in stock and you already have %s in your cart." -msgstr "" -"%s Es ist nicht möglich, diese Menge in " -"den Warenkorb zu legen - wir haben %s auf Lager und Sie haben bereits %s in " -"Ihrem Warenkorb." - -#: classes/class-wc-cart.php:1813 -msgid "via" -msgstr "über" - -#: classes/class-wc-checkout.php:64 -msgid "Account username" -msgstr "Konto-Benutzername" - -#: classes/class-wc-checkout.php:65 -msgctxt "placeholder" -msgid "Username" -msgstr "Benutzername" - -#: classes/class-wc-checkout.php:72 -msgid "Account password" -msgstr "Konto-Passwort" - -#: classes/class-wc-checkout.php:73 -msgctxt "placeholder" -msgid "Password" -msgstr "Passwort" - -#: classes/class-wc-checkout.php:79 -msgid "Confirm password" -msgstr "Passwort bestätigen" - -#: classes/class-wc-checkout.php:80 -msgctxt "placeholder" -msgid "Confirm password" -msgstr "Passwort bestätigen" - -#: classes/class-wc-checkout.php:89 -msgid "Order Notes" -msgstr "Hinweise zur Bestellung" - -#: classes/class-wc-checkout.php:90 -msgctxt "placeholder" -msgid "Notes about your order, e.g. special notes for delivery." -msgstr "" -"Hinweise für ihre Bestellungen, z.B.: besondere Hinweise für die Lieferung." - -#: classes/class-wc-checkout.php:152 -msgid "Order – %s" -msgstr "Bestellung – %s" - -#: classes/class-wc-checkout.php:152 -msgctxt "Order date parsed by strftime" -msgid "%b %d, %Y @ %I:%M %p" -msgstr "%d %b %Y um %H:%M" - -#: classes/class-wc-checkout.php:278 -msgid "Backordered" -msgstr "Rückständig" - -#: classes/class-wc-checkout.php:388 -msgid "" -"Sorry, your session has expired. Return to homepage →" -msgstr "" -"Entschuldigung, aber Ihre Sitzung ist abgelaufen. Zurück zur " -"Startseite →" - -#: classes/class-wc-checkout.php:440 woocommerce-functions.php:1696 -msgid "is a required field." -msgstr "ist ein Pflichtfeld." - -#: classes/class-wc-checkout.php:453 -msgid "(%s) is not a valid postcode/ZIP." -msgstr "(%s) ist keine valide Postleitzahl." - -#: classes/class-wc-checkout.php:474 -msgid "is not valid. Please enter one of the following:" -msgstr "ist nicht gültig. Bitte geben sie eins der Folgenden ein:" - -#: classes/class-wc-checkout.php:482 -msgid "is not a valid number." -msgstr "ist keine valide Nummer." - -#: classes/class-wc-checkout.php:489 -msgid "is not a valid email address." -msgstr "ist keine valide E-Mail Adresse." - -#: classes/class-wc-checkout.php:545 -msgid "Please enter an account username." -msgstr "Bitte geben Sie einen Benutzernamen für das Konto ein." - -#: classes/class-wc-checkout.php:549 -msgid "Invalid email/username." -msgstr "E-Mail/Benutzername ungültig." - -#: classes/class-wc-checkout.php:552 -msgid "" -"An account is already registered with that username. Please choose another." -msgstr "" -"Ein Kundenkonto mit diesem Benutzernamen existiert bereits. Bitte wählen Sie " -"einen anderen aus." - -#: classes/class-wc-checkout.php:562 -msgid "Please enter an account password." -msgstr "Bitte geben Sie ein Passwort für das Konto ein." - -#: classes/class-wc-checkout.php:565 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:83 -#: woocommerce-functions.php:758 woocommerce-functions.php:1626 -msgid "Passwords do not match." -msgstr "Passwörter stimmen nicht überein." - -#: classes/class-wc-checkout.php:569 -msgid "An account is already registered with your email address. Please login." -msgstr "" -"Ein Kundenkonto mit Ihrer E-Mailadresse ist bereits registriert. Bitte " -"loggen Sie sich ein." - -#: classes/class-wc-checkout.php:575 -msgid "You must accept our Terms & Conditions." -msgstr "" -"Die Zustimmung zu unseren Allgemeinen Geschäftsbedingungen (AGB) ist " -"erforderlich." - -#: classes/class-wc-checkout.php:584 -msgid "Invalid shipping method." -msgstr "Ungültige Versandart." - -#: classes/class-wc-checkout.php:597 -msgid "Invalid payment method." -msgstr "Ungültige Bezahlart." - -#: classes/class-wc-checkout.php:637 woocommerce-functions.php:730 -#: woocommerce-functions.php:732 woocommerce-functions.php:735 -#: woocommerce-functions.php:747 woocommerce-functions.php:749 -#: woocommerce-functions.php:752 woocommerce-functions.php:786 -msgid "ERROR" -msgstr "FEHLER" - -#: classes/class-wc-checkout.php:637 woocommerce-functions.php:786 -msgid "" -"Couldn’t register you… please contact us if you continue to " -"have problems." -msgstr "" -"Konnte Sie nicht registrieren… bitte kontaktieren Sie uns, wenn Sie " -"weiterhin Probleme haben." - -#: classes/class-wc-countries.php:37 -msgid "Afghanistan" -msgstr "Afghanistan" - -#: classes/class-wc-countries.php:38 -msgid "Åland Islands" -msgstr "Åland" - -#: classes/class-wc-countries.php:39 -msgid "Albania" -msgstr "Albanien" - -#: classes/class-wc-countries.php:40 -msgid "Algeria" -msgstr "Algerien" - -#: classes/class-wc-countries.php:41 -msgid "Andorra" -msgstr "Andorra" - -#: classes/class-wc-countries.php:42 -msgid "Angola" -msgstr "Angola" - -#: classes/class-wc-countries.php:43 -msgid "Anguilla" -msgstr "Anguilla" - -#: classes/class-wc-countries.php:44 -msgid "Antarctica" -msgstr "Antarktika" - -#: classes/class-wc-countries.php:45 -msgid "Antigua and Barbuda" -msgstr "Antigua und Barbuda" - -#: classes/class-wc-countries.php:46 -msgid "Argentina" -msgstr "Argentinien" - -#: classes/class-wc-countries.php:47 -msgid "Armenia" -msgstr "Armenien" - -#: classes/class-wc-countries.php:48 -msgid "Aruba" -msgstr "Aruba" - -#: classes/class-wc-countries.php:49 -msgid "Australia" -msgstr "Australien" - -#: classes/class-wc-countries.php:50 -msgid "Austria" -msgstr "Österreich" - -#: classes/class-wc-countries.php:51 -msgid "Azerbaijan" -msgstr "Aserbaidschan" - -#: classes/class-wc-countries.php:52 -msgid "Bahamas" -msgstr "Bahamas" - -#: classes/class-wc-countries.php:53 -msgid "Bahrain" -msgstr "Bahrain" - -#: classes/class-wc-countries.php:54 -msgid "Bangladesh" -msgstr "Bangladesch" - -#: classes/class-wc-countries.php:55 -msgid "Barbados" -msgstr "Barbados" - -#: classes/class-wc-countries.php:56 -msgid "Belarus" -msgstr "Belarus" - -#: classes/class-wc-countries.php:57 -msgid "Belgium" -msgstr "Belgien" - -#: classes/class-wc-countries.php:58 -msgid "Belau" -msgstr "Belau" - -#: classes/class-wc-countries.php:59 -msgid "Belize" -msgstr "Belize" - -#: classes/class-wc-countries.php:60 -msgid "Benin" -msgstr "Benin" - -#: classes/class-wc-countries.php:61 -msgid "Bermuda" -msgstr "Bermuda" - -#: classes/class-wc-countries.php:62 -msgid "Bhutan" -msgstr "Bhutan" - -#: classes/class-wc-countries.php:63 -msgid "Bolivia" -msgstr "Bolivien" - -#: classes/class-wc-countries.php:64 -msgid "Bonaire, Saint Eustatius and Saba" -msgstr "Bonaire, Saint Eustatius and Saba" - -#: classes/class-wc-countries.php:65 -msgid "Bosnia and Herzegovina" -msgstr "Bosnien und Herzegowina" - -#: classes/class-wc-countries.php:66 -msgid "Botswana" -msgstr "Botswana" - -#: classes/class-wc-countries.php:67 -msgid "Bouvet Island" -msgstr "Bouvet Island" - -#: classes/class-wc-countries.php:68 -msgid "Brazil" -msgstr "Brasilien" - -#: classes/class-wc-countries.php:69 -msgid "British Indian Ocean Territory" -msgstr "Britisches Territorium im Indischen Ozean" - -#: classes/class-wc-countries.php:70 -msgid "British Virgin Islands" -msgstr "Britische Jungferninseln" - -#: classes/class-wc-countries.php:71 -msgid "Brunei" -msgstr "Brunei" - -#: classes/class-wc-countries.php:72 -msgid "Bulgaria" -msgstr "Bulgarien" - -#: classes/class-wc-countries.php:73 -msgid "Burkina Faso" -msgstr "Burkina Faso" - -#: classes/class-wc-countries.php:74 -msgid "Burundi" -msgstr "Burundi" - -#: classes/class-wc-countries.php:75 -msgid "Cambodia" -msgstr "Kambodscha" - -#: classes/class-wc-countries.php:76 -msgid "Cameroon" -msgstr "Kamerun" - -#: classes/class-wc-countries.php:77 -msgid "Canada" -msgstr "Kanada" - -#: classes/class-wc-countries.php:78 -msgid "Cape Verde" -msgstr "Kap Verde" - -#: classes/class-wc-countries.php:79 -msgid "Cayman Islands" -msgstr "Kaimaninseln" - -#: classes/class-wc-countries.php:80 -msgid "Central African Republic" -msgstr "Zentralafrikanische Republik" - -#: classes/class-wc-countries.php:81 -msgid "Chad" -msgstr "Tschad" - -#: classes/class-wc-countries.php:82 -msgid "Chile" -msgstr "Chile" - -#: classes/class-wc-countries.php:83 -msgid "China" -msgstr "China" - -#: classes/class-wc-countries.php:84 -msgid "Christmas Island" -msgstr "Weihnachtsinsel" - -#: classes/class-wc-countries.php:85 -msgid "Cocos (Keeling) Islands" -msgstr "Kokosinseln" - -#: classes/class-wc-countries.php:86 -msgid "Colombia" -msgstr "Kolumbien" - -#: classes/class-wc-countries.php:87 -msgid "Comoros" -msgstr "Komoren" - -#: classes/class-wc-countries.php:88 -msgid "Congo (Brazzaville)" -msgstr "Kongo-Brazzaville" - -#: classes/class-wc-countries.php:89 -msgid "Congo (Kinshasa)" -msgstr "Kongo-Kinshasa" - -#: classes/class-wc-countries.php:90 -msgid "Cook Islands" -msgstr "Cookinseln" - -#: classes/class-wc-countries.php:91 -msgid "Costa Rica" -msgstr "Costa Rica" - -#: classes/class-wc-countries.php:92 -msgid "Croatia" -msgstr "Kroatien" - -#: classes/class-wc-countries.php:93 -msgid "Cuba" -msgstr "Kuba" - -#: classes/class-wc-countries.php:94 -msgid "CuraÇao" -msgstr "CuraÇao" - -#: classes/class-wc-countries.php:95 -msgid "Cyprus" -msgstr "Zypern" - -#: classes/class-wc-countries.php:96 -msgid "Czech Republic" -msgstr "Tschechien" - -#: classes/class-wc-countries.php:97 -msgid "Denmark" -msgstr "Dänemark" - -#: classes/class-wc-countries.php:98 -msgid "Djibouti" -msgstr "Dschibuti" - -#: classes/class-wc-countries.php:99 -msgid "Dominica" -msgstr "Dominica" - -#: classes/class-wc-countries.php:100 -msgid "Dominican Republic" -msgstr "Dominikanische Republik" - -#: classes/class-wc-countries.php:101 -msgid "Ecuador" -msgstr "Ecuador" - -#: classes/class-wc-countries.php:102 -msgid "Egypt" -msgstr "Ägypten" - -#: classes/class-wc-countries.php:103 -msgid "El Salvador" -msgstr "El Salvador" - -#: classes/class-wc-countries.php:104 -msgid "Equatorial Guinea" -msgstr "Äquatorialguinea" - -#: classes/class-wc-countries.php:105 -msgid "Eritrea" -msgstr "Eritrea" - -#: classes/class-wc-countries.php:106 -msgid "Estonia" -msgstr "Estland" - -#: classes/class-wc-countries.php:107 -msgid "Ethiopia" -msgstr "Äthiopien" - -#: classes/class-wc-countries.php:108 -msgid "Falkland Islands" -msgstr "Falklandinseln" - -#: classes/class-wc-countries.php:109 -msgid "Faroe Islands" -msgstr "Färöer" - -#: classes/class-wc-countries.php:110 -msgid "Fiji" -msgstr "Fidschi" - -#: classes/class-wc-countries.php:111 -msgid "Finland" -msgstr "Finnland" - -#: classes/class-wc-countries.php:112 -msgid "France" -msgstr "Frankreich" - -#: classes/class-wc-countries.php:113 -msgid "French Guiana" -msgstr "Französisch-Guayana" - -#: classes/class-wc-countries.php:114 -msgid "French Polynesia" -msgstr "Französisch-Polynesien" - -#: classes/class-wc-countries.php:115 -msgid "French Southern Territories" -msgstr "Französische Süd- und Antarktisgebiete" - -#: classes/class-wc-countries.php:116 -msgid "Gabon" -msgstr "Gabun" - -#: classes/class-wc-countries.php:117 -msgid "Gambia" -msgstr "Gambia" - -#: classes/class-wc-countries.php:118 i18n/states/US.php:23 -msgid "Georgia" -msgstr "Georgien" - -#: classes/class-wc-countries.php:119 -msgid "Germany" -msgstr "Deutschland" - -#: classes/class-wc-countries.php:120 -msgid "Ghana" -msgstr "Ghana" - -#: classes/class-wc-countries.php:121 -msgid "Gibraltar" -msgstr "Gibraltar" - -#: classes/class-wc-countries.php:122 -msgid "Greece" -msgstr "Griechenland" - -#: classes/class-wc-countries.php:123 -msgid "Greenland" -msgstr "Grönland" - -#: classes/class-wc-countries.php:124 -msgid "Grenada" -msgstr "Grenada" - -#: classes/class-wc-countries.php:125 -msgid "Guadeloupe" -msgstr "Guadeloupe" - -#: classes/class-wc-countries.php:126 -msgid "Guatemala" -msgstr "Guatemala" - -#: classes/class-wc-countries.php:127 -msgid "Guernsey" -msgstr "Guernsey" - -#: classes/class-wc-countries.php:128 -msgid "Guinea" -msgstr "Guinea" - -#: classes/class-wc-countries.php:129 -msgid "Guinea-Bissau" -msgstr "Guinea-Bissau" - -#: classes/class-wc-countries.php:130 -msgid "Guyana" -msgstr "Guyana" - -#: classes/class-wc-countries.php:131 -msgid "Haiti" -msgstr "Haiti" - -#: classes/class-wc-countries.php:132 -msgid "Heard Island and McDonald Islands" -msgstr "Heard Island and McDonald Islands" - -#: classes/class-wc-countries.php:133 -msgid "Honduras" -msgstr "Honduras" - -#: classes/class-wc-countries.php:134 -msgid "Hong Kong" -msgstr "Hong Kong" - -#: classes/class-wc-countries.php:135 -msgid "Hungary" -msgstr "Ungarn" - -#: classes/class-wc-countries.php:136 -msgid "Iceland" -msgstr "Island" - -#: classes/class-wc-countries.php:137 -msgid "India" -msgstr "Indien" - -#: classes/class-wc-countries.php:138 -msgid "Indonesia" -msgstr "Indonesien" - -#: classes/class-wc-countries.php:139 -msgid "Iran" -msgstr "Iran" - -#: classes/class-wc-countries.php:140 -msgid "Iraq" -msgstr "Irak" - -#: classes/class-wc-countries.php:141 -msgid "Republic of Ireland" -msgstr "Republic of Ireland" - -#: classes/class-wc-countries.php:142 -msgid "Isle of Man" -msgstr "Isle of Man" - -#: classes/class-wc-countries.php:143 -msgid "Israel" -msgstr "Israel" - -#: classes/class-wc-countries.php:144 -msgid "Italy" -msgstr "Italien" - -#: classes/class-wc-countries.php:145 -msgid "Ivory Coast" -msgstr "Elfenbeinküste" - -#: classes/class-wc-countries.php:146 -msgid "Jamaica" -msgstr "Jamaika" - -#: classes/class-wc-countries.php:147 -msgid "Japan" -msgstr "Japan" - -#: classes/class-wc-countries.php:148 -msgid "Jersey" -msgstr "Jersey" - -#: classes/class-wc-countries.php:149 -msgid "Jordan" -msgstr "Jordanien" - -#: classes/class-wc-countries.php:150 -msgid "Kazakhstan" -msgstr "Kasachstan" - -#: classes/class-wc-countries.php:151 -msgid "Kenya" -msgstr "Kenia" - -#: classes/class-wc-countries.php:152 -msgid "Kiribati" -msgstr "Kiribati" - -#: classes/class-wc-countries.php:153 -msgid "Kuwait" -msgstr "Kuwait" - -#: classes/class-wc-countries.php:154 -msgid "Kyrgyzstan" -msgstr "Kirgisistan" - -#: classes/class-wc-countries.php:155 -msgid "Laos" -msgstr "Laos" - -#: classes/class-wc-countries.php:156 -msgid "Latvia" -msgstr "Lettland" - -#: classes/class-wc-countries.php:157 -msgid "Lebanon" -msgstr "Libanon" - -#: classes/class-wc-countries.php:158 -msgid "Lesotho" -msgstr "Lesotho" - -#: classes/class-wc-countries.php:159 -msgid "Liberia" -msgstr "Liberia" - -#: classes/class-wc-countries.php:160 -msgid "Libya" -msgstr "Libyen" - -#: classes/class-wc-countries.php:161 -msgid "Liechtenstein" -msgstr "Liechtenstein" - -#: classes/class-wc-countries.php:162 -msgid "Lithuania" -msgstr "Litauen" - -#: classes/class-wc-countries.php:163 -msgid "Luxembourg" -msgstr "Luxemburg" - -#: classes/class-wc-countries.php:164 -msgid "Macao S.A.R., China" -msgstr "Macao, China" - -#: classes/class-wc-countries.php:165 -msgid "Macedonia" -msgstr "Mazedonien" - -#: classes/class-wc-countries.php:166 -msgid "Madagascar" -msgstr "Madagaskar" - -#: classes/class-wc-countries.php:167 -msgid "Malawi" -msgstr "Malawi" - -#: classes/class-wc-countries.php:168 -msgid "Malaysia" -msgstr "Malaysia" - -#: classes/class-wc-countries.php:169 -msgid "Maldives" -msgstr "Malediven" - -#: classes/class-wc-countries.php:170 -msgid "Mali" -msgstr "Mali" - -#: classes/class-wc-countries.php:171 -msgid "Malta" -msgstr "Malta" - -#: classes/class-wc-countries.php:172 -msgid "Marshall Islands" -msgstr "Marshallinseln" - -#: classes/class-wc-countries.php:173 -msgid "Martinique" -msgstr "Martinique" - -#: classes/class-wc-countries.php:174 -msgid "Mauritania" -msgstr "Mauretanien" - -#: classes/class-wc-countries.php:175 -msgid "Mauritius" -msgstr "Mauritius" - -#: classes/class-wc-countries.php:176 -msgid "Mayotte" -msgstr "Mayotte" - -#: classes/class-wc-countries.php:177 -msgid "Mexico" -msgstr "Mexiko" - -#: classes/class-wc-countries.php:178 -msgid "Micronesia" -msgstr "Mikronesien" - -#: classes/class-wc-countries.php:179 -msgid "Moldova" -msgstr "Moldawien" - -#: classes/class-wc-countries.php:180 -msgid "Monaco" -msgstr "Monaco" - -#: classes/class-wc-countries.php:181 -msgid "Mongolia" -msgstr "Mongolei" - -#: classes/class-wc-countries.php:182 -msgid "Montenegro" -msgstr "Montenegro" - -#: classes/class-wc-countries.php:183 -msgid "Montserrat" -msgstr "Montserrat" - -#: classes/class-wc-countries.php:184 -msgid "Morocco" -msgstr "Marokko" - -#: classes/class-wc-countries.php:185 -msgid "Mozambique" -msgstr "Mosambik" - -#: classes/class-wc-countries.php:186 -msgid "Myanmar" -msgstr "Myanmar" - -#: classes/class-wc-countries.php:187 -msgid "Namibia" -msgstr "Namibia" - -#: classes/class-wc-countries.php:188 -msgid "Nauru" -msgstr "Nauru" - -#: classes/class-wc-countries.php:189 -msgid "Nepal" -msgstr "Nepal" - -#: classes/class-wc-countries.php:190 -msgid "Netherlands" -msgstr "Niederlande" - -#: classes/class-wc-countries.php:191 -msgid "Netherlands Antilles" -msgstr "Niederländische Antillen" - -#: classes/class-wc-countries.php:192 -msgid "New Caledonia" -msgstr "Neukaledonien" - -#: classes/class-wc-countries.php:193 -msgid "New Zealand" -msgstr "Neuseeland" - -#: classes/class-wc-countries.php:194 -msgid "Nicaragua" -msgstr "Nicaragua" - -#: classes/class-wc-countries.php:195 -msgid "Niger" -msgstr "Niger" - -#: classes/class-wc-countries.php:196 -msgid "Nigeria" -msgstr "Nigeria" - -#: classes/class-wc-countries.php:197 -msgid "Niue" -msgstr "Niue" - -#: classes/class-wc-countries.php:198 -msgid "Norfolk Island" -msgstr "Norfolkinsel" - -#: classes/class-wc-countries.php:199 -msgid "North Korea" -msgstr "Nordkorea" - -#: classes/class-wc-countries.php:200 -msgid "Norway" -msgstr "Norwegen" - -#: classes/class-wc-countries.php:201 -msgid "Oman" -msgstr "Oman" - -#: classes/class-wc-countries.php:202 -msgid "Pakistan" -msgstr "Pakistan" - -#: classes/class-wc-countries.php:203 -msgid "Palestinian Territory" -msgstr "Palästinensisches Territorium" - -#: classes/class-wc-countries.php:204 -msgid "Panama" -msgstr "Panama" - -#: classes/class-wc-countries.php:205 -msgid "Papua New Guinea" -msgstr "Papua-Neuguinea" - -#: classes/class-wc-countries.php:206 -msgid "Paraguay" -msgstr "Paraguay" - -#: classes/class-wc-countries.php:207 -msgid "Peru" -msgstr "Peru" - -#: classes/class-wc-countries.php:208 -msgid "Philippines" -msgstr "Philippinen" - -#: classes/class-wc-countries.php:209 -msgid "Pitcairn" -msgstr "Pitcairn" - -#: classes/class-wc-countries.php:210 -msgid "Poland" -msgstr "Polen" - -#: classes/class-wc-countries.php:211 -msgid "Portugal" -msgstr "Portugal" - -#: classes/class-wc-countries.php:212 -msgid "Qatar" -msgstr "Katar" - -#: classes/class-wc-countries.php:213 -msgid "Reunion" -msgstr "Réunion" - -#: classes/class-wc-countries.php:214 -msgid "Romania" -msgstr "Rumänien" - -#: classes/class-wc-countries.php:215 -msgid "Russia" -msgstr "Russland" - -#: classes/class-wc-countries.php:216 -msgid "Rwanda" -msgstr "Rwanda" - -#: classes/class-wc-countries.php:217 -msgid "Saint Barthélemy" -msgstr "Saint Barthélemy" - -#: classes/class-wc-countries.php:218 -msgid "Saint Helena" -msgstr "St. Helena" - -#: classes/class-wc-countries.php:219 -msgid "Saint Kitts and Nevis" -msgstr "St. Kitts und Nevis" - -#: classes/class-wc-countries.php:220 -msgid "Saint Lucia" -msgstr "Sankt Lucia" - -#: classes/class-wc-countries.php:221 -msgid "Saint Martin (French part)" -msgstr "Saint-Martin" - -#: classes/class-wc-countries.php:222 -msgid "Saint Martin (Dutch part)" -msgstr "Saint Martin (Dutch part)" - -#: classes/class-wc-countries.php:223 -msgid "Saint Pierre and Miquelon" -msgstr "Saint-Pierre und Miquelon" - -#: classes/class-wc-countries.php:224 -msgid "Saint Vincent and the Grenadines" -msgstr "St. Vincent und die Grenadinen" - -#: classes/class-wc-countries.php:225 -msgid "San Marino" -msgstr "San Marino" - -#: classes/class-wc-countries.php:226 -msgid "São Tomé and Príncipe" -msgstr "São Tomé and Príncipe" - -#: classes/class-wc-countries.php:227 -msgid "Saudi Arabia" -msgstr "Saudi-Arabien" - -#: classes/class-wc-countries.php:228 -msgid "Senegal" -msgstr "Senegal" - -#: classes/class-wc-countries.php:229 -msgid "Serbia" -msgstr "Serbien" - -#: classes/class-wc-countries.php:230 -msgid "Seychelles" -msgstr "Seychellen" - -#: classes/class-wc-countries.php:231 -msgid "Sierra Leone" -msgstr "Sierra Leone" - -#: classes/class-wc-countries.php:232 -msgid "Singapore" -msgstr "Singapur" - -#: classes/class-wc-countries.php:233 -msgid "Slovakia" -msgstr "Slowakei" - -#: classes/class-wc-countries.php:234 -msgid "Slovenia" -msgstr "Slowenien" - -#: classes/class-wc-countries.php:235 -msgid "Solomon Islands" -msgstr "Salomonen" - -#: classes/class-wc-countries.php:236 -msgid "Somalia" -msgstr "Somalia" - -#: classes/class-wc-countries.php:237 -msgid "South Africa" -msgstr "Südafrika" - -#: classes/class-wc-countries.php:238 -msgid "South Georgia/Sandwich Islands" -msgstr "Südgeorgien / Sandwich-Inseln" - -#: classes/class-wc-countries.php:239 -msgid "South Korea" -msgstr "Südkorea" - -#: classes/class-wc-countries.php:240 -msgid "South Sudan" -msgstr "South Sudan" - -#: classes/class-wc-countries.php:241 -msgid "Spain" -msgstr "Spanien" - -#: classes/class-wc-countries.php:242 -msgid "Sri Lanka" -msgstr "Sri Lanka" - -#: classes/class-wc-countries.php:243 -msgid "Sudan" -msgstr "Sudan" - -#: classes/class-wc-countries.php:244 -msgid "Suriname" -msgstr "Suriname" - -#: classes/class-wc-countries.php:245 -msgid "Svalbard and Jan Mayen" -msgstr "Spitzbergen" - -#: classes/class-wc-countries.php:246 -msgid "Swaziland" -msgstr "Swasiland" - -#: classes/class-wc-countries.php:247 -msgid "Sweden" -msgstr "Schweden" - -#: classes/class-wc-countries.php:248 -msgid "Switzerland" -msgstr "Schweiz" - -#: classes/class-wc-countries.php:249 -msgid "Syria" -msgstr "Syrien" - -#: classes/class-wc-countries.php:250 -msgid "Taiwan" -msgstr "Taiwan, China" - -#: classes/class-wc-countries.php:251 -msgid "Tajikistan" -msgstr "Tadschikistan" - -#: classes/class-wc-countries.php:252 -msgid "Tanzania" -msgstr "Tansania" - -#: classes/class-wc-countries.php:253 -msgid "Thailand" -msgstr "Thailand" - -#: classes/class-wc-countries.php:254 -msgid "Timor-Leste" -msgstr "Osttimor" - -#: classes/class-wc-countries.php:255 -msgid "Togo" -msgstr "Togo" - -#: classes/class-wc-countries.php:256 -msgid "Tokelau" -msgstr "Tokelau" - -#: classes/class-wc-countries.php:257 -msgid "Tonga" -msgstr "Tonga" - -#: classes/class-wc-countries.php:258 -msgid "Trinidad and Tobago" -msgstr "Trinidad und Tobago" - -#: classes/class-wc-countries.php:259 -msgid "Tunisia" -msgstr "Tunesien" - -#: classes/class-wc-countries.php:260 -msgid "Turkey" -msgstr "Türkei" - -#: classes/class-wc-countries.php:261 -msgid "Turkmenistan" -msgstr "Turkmenistan" - -#: classes/class-wc-countries.php:262 -msgid "Turks and Caicos Islands" -msgstr "Turks- und Caicosinseln" - -#: classes/class-wc-countries.php:263 -msgid "Tuvalu" -msgstr "Tuvalu" - -#: classes/class-wc-countries.php:264 -msgid "Uganda" -msgstr "Uganda" - -#: classes/class-wc-countries.php:265 -msgid "Ukraine" -msgstr "Ukraine" - -#: classes/class-wc-countries.php:266 -msgid "United Arab Emirates" -msgstr "Vereinigte Arabische Emirates" - -#: classes/class-wc-countries.php:267 -msgid "United Kingdom" -msgstr "Vereinigtes Königreich" - -#: classes/class-wc-countries.php:268 -msgid "United States" -msgstr "Vereinigte Staaten" - -#: classes/class-wc-countries.php:269 -msgid "Uruguay" -msgstr "Uruguay" - -#: classes/class-wc-countries.php:270 -msgid "Uzbekistan" -msgstr "Usbekistan" - -#: classes/class-wc-countries.php:271 -msgid "Vanuatu" -msgstr "Vanuatu" - -#: classes/class-wc-countries.php:272 -msgid "Vatican" -msgstr "Vatikan" - -#: classes/class-wc-countries.php:273 -msgid "Venezuela" -msgstr "Venezuela" - -#: classes/class-wc-countries.php:274 -msgid "Vietnam" -msgstr "Vietnam" - -#: classes/class-wc-countries.php:275 -msgid "Wallis and Futuna" -msgstr "Wallis und Futuna" - -#: classes/class-wc-countries.php:276 -msgid "Western Sahara" -msgstr "Westsahara" - -#: classes/class-wc-countries.php:277 -msgid "Western Samoa" -msgstr "Western Samoa" - -#: classes/class-wc-countries.php:278 -msgid "Yemen" -msgstr "Jemen" - -#: classes/class-wc-countries.php:279 -msgid "Zambia" -msgstr "Sambia" - -#: classes/class-wc-countries.php:280 -msgid "Zimbabwe" -msgstr "Simbabwe" - -#: classes/class-wc-countries.php:418 -msgid "to the" -msgstr "zum" - -#: classes/class-wc-countries.php:419 -msgid "to" -msgstr "nach" - -#: classes/class-wc-countries.php:432 -msgid "the" -msgstr "das" - -#: classes/class-wc-countries.php:444 -msgid "VAT" -msgstr "MwSt." - -#: classes/class-wc-countries.php:444 -msgid "Tax" -msgstr "Mehrwertsteuer" - -#: classes/class-wc-countries.php:457 -msgid "(incl. VAT)" -msgstr "(inkl. MwSt)" - -#: classes/class-wc-countries.php:457 -msgid "(incl. tax)" -msgstr "(inkl. Steuer)" - -#: classes/class-wc-countries.php:470 -msgid "(ex. VAT)" -msgstr "(exkl. MwSt.)" - -#: classes/class-wc-countries.php:470 -msgid "(ex. tax)" -msgstr "(exkl. Mehrwertsteuer)" - -#: classes/class-wc-countries.php:678 -msgid "Country" -msgstr "Land" - -#: classes/class-wc-countries.php:683 -msgid "First Name" -msgstr "Vorname" - -#: classes/class-wc-countries.php:688 -msgid "Last Name" -msgstr "Nachname" - -#: classes/class-wc-countries.php:694 -msgid "Company Name" -msgstr "Firmenname" - -#: classes/class-wc-countries.php:698 -msgid "Address" -msgstr "Adresse" - -#: classes/class-wc-countries.php:699 -msgctxt "placeholder" -msgid "Street address" -msgstr "Straße" - -#: classes/class-wc-countries.php:707 -msgctxt "placeholder" -msgid "Apartment, suite, unit etc. (optional)" -msgstr "Appartement, Wohnung, Einheit etc. (option" - -#: classes/class-wc-countries.php:715 classes/class-wc-countries.php:716 -msgid "Town / City" -msgstr "Ort / Stadt" - -#: classes/class-wc-countries.php:725 classes/class-wc-countries.php:726 -msgid "State / County" -msgstr "Staat / Land" - -#: classes/class-wc-countries.php:734 classes/class-wc-countries.php:735 -#: templates/cart/shipping-calculator.php:80 -msgid "Postcode / Zip" -msgstr "Postleitzahl" - -#: classes/class-wc-countries.php:774 classes/class-wc-countries.php:784 -#: classes/class-wc-countries.php:804 classes/class-wc-countries.php:859 -#: classes/class-wc-countries.php:883 classes/class-wc-countries.php:933 -#: classes/class-wc-countries.php:957 classes/class-wc-countries.php:998 -msgid "Province" -msgstr "Provinz" - -#: classes/class-wc-countries.php:790 -msgid "Canton" -msgstr "Kanton" - -#: classes/class-wc-countries.php:799 classes/class-wc-countries.php:939 -msgid "Municipality" -msgstr "Gemeinde" - -#: classes/class-wc-countries.php:846 -msgid "Town / District" -msgstr "Stadt / Bezirk" - -#: classes/class-wc-countries.php:849 -msgid "Region" -msgstr "Region" - -#: classes/class-wc-countries.php:962 -msgid "Zip" -msgstr "PLZ" - -#: classes/class-wc-countries.php:965 -msgid "State" -msgstr "Bundesland" - -#: classes/class-wc-countries.php:970 -msgid "Postcode" -msgstr "Postleitzahl" - -#: classes/class-wc-countries.php:973 -msgid "County" -msgstr "Land" - -#: classes/class-wc-countries.php:1074 -msgid "Email Address" -msgstr "E-Mail-Adresse" - -#: classes/class-wc-countries.php:1080 -msgid "Phone" -msgstr "Telefon" - -#: classes/class-wc-coupon.php:421 -msgid "Coupon code applied successfully." -msgstr "Coupon Code erfolgreich angewendet." - -#: classes/class-wc-coupon.php:442 -msgid "Coupon is not valid." -msgstr "Coupon ist nicht gültig." - -#: classes/class-wc-coupon.php:445 classes/class-wc-coupon.php:495 -msgid "Coupon does not exist!" -msgstr "Gutschein existiert nicht!" - -#: classes/class-wc-coupon.php:448 -msgid "" -"Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from " -"your order." -msgstr "" -"Entschuldigung, der Coupon \"%s\" scheint ungültig zu sein - er wurde jetzt " -"aus ihrer Bestellung entfernt." - -#: classes/class-wc-coupon.php:451 -msgid "" -"Sorry, it seems the coupon \"%s\" is not yours - it has now been removed " -"from your order." -msgstr "" -"Tut uns leid, aber es scheint so, der Coupon \"%s\" gehört nicht zu Ihnen - " -"Er wurde von Ihrer Bestellung entfernt." - -#: classes/class-wc-coupon.php:454 -msgid "Coupon code already applied!" -msgstr "Coupon Code wurde bereits angewendet." - -#: classes/class-wc-coupon.php:457 -msgid "" -"Sorry, coupon \"%s\" has already been applied and cannot be used in " -"conjunction with other coupons." -msgstr "" -"Bedaure, Coupon \"%s\" wurde bereits angewendet und kann nicht in Verbindung " -"mit anderen Coupons genutzt werden." - -#: classes/class-wc-coupon.php:460 -msgid "Coupon usage limit has been reached." -msgstr "Das Coupon Benutzungslimit ist erreicht." - -#: classes/class-wc-coupon.php:463 -msgid "This coupon has expired." -msgstr "Dieser Coupon ist abgelaufen." - -#: classes/class-wc-coupon.php:466 -msgid "The minimum spend for this coupon is %s." -msgstr "Der Minimalbetrag für diesen Coupon ist %s." - -#: classes/class-wc-coupon.php:469 -msgid "Sorry, this coupon is not applicable to your cart contents." -msgstr "Bedaure, dieser Coupon ist nicht auf Ihren Warenkorb Inhalt anwendbar." - -#: classes/class-wc-coupon.php:472 -msgid "Sorry, this coupon is not valid for sale items." -msgstr "Bedaure, dieser Coupon ist nicht gültig für Angebotsposten." - -#: classes/class-wc-coupon.php:498 -msgid "Please enter a coupon code." -msgstr "Bitte Coupon Code eingeben." - -#: classes/class-wc-customer.php:628 classes/class-wc-customer.php:638 -msgid "File %d" -msgstr "Datei %d" - -#: classes/class-wc-emails.php:246 -msgid "Note" -msgstr "Notiz" - -#: classes/class-wc-emails.php:281 -msgid "Product low in stock" -msgstr "Produkt bald nicht mehr vorrätig" - -#: classes/class-wc-emails.php:286 classes/class-wc-emails.php:318 -#: classes/class-wc-emails.php:362 -msgid "Variation #%s of %s" -msgstr "Variation #%s von %s" - -#: classes/class-wc-emails.php:288 classes/class-wc-emails.php:320 -#: classes/class-wc-emails.php:364 -msgid "Product #%s - %s" -msgstr "Produkt #%s - %s" - -#: classes/class-wc-emails.php:290 -msgid "is low in stock." -msgstr "hat einen niedrigen Lagerbestand." - -#: classes/class-wc-emails.php:313 -msgid "Product out of stock" -msgstr "Produkt ist nicht vorrätig." - -#: classes/class-wc-emails.php:322 -msgid "is out of stock." -msgstr "ist nicht vorrätig." - -#: classes/class-wc-emails.php:357 -msgid "Product Backorder" -msgstr "Produkt Lieferrückstand" - -#: classes/class-wc-emails.php:366 -msgid "%s units of %s have been backordered in order #%s." -msgstr "%s Einheiten von %s wurden vorgemerkt in der Bestellung #%s." - -#: classes/class-wc-order.php:283 -msgctxt "hash before order number" -msgid "#" -msgstr "#" - -#: classes/class-wc-order.php:886 -msgid " %svia %s" -msgstr " %svia %s" - -#: classes/class-wc-order.php:950 -msgid "Cart Subtotal:" -msgstr "Warenkorb Zwischensumme:" - -#: classes/class-wc-order.php:956 -msgid "Cart Discount:" -msgstr "Warenkorbrabatt" - -#: classes/class-wc-order.php:962 -msgid "Shipping:" -msgstr "Lieferung:" - -#: classes/class-wc-order.php:998 -msgid "Order Discount:" -msgstr "Bestellungsrabatt:" - -#: classes/class-wc-order.php:1003 -msgid "Order Total:" -msgstr "Gesamtsumme:" - -#: classes/class-wc-order.php:1017 templates/cart/totals.php:105 -#: templates/checkout/review-order.php:104 -msgid "(Includes %s)" -msgstr "(Enthält %s)" - -#: classes/class-wc-order.php:1168 classes/class-wc-order.php:1170 -#: classes/class-wc-order.php:1173 -msgid "WooCommerce" -msgstr "WooCommerce" - -#: classes/class-wc-order.php:1220 -msgid "Order status changed from %s to %s." -msgstr "Status der Bestellung von %s auf %s geändert." - -#: classes/class-wc-order.php:1452 woocommerce-ajax.php:1089 -#: woocommerce-ajax.php:1090 -msgid "Item #%s stock reduced from %s to %s." -msgstr "Lagerbestand des Produkts #%s reduziert von %s auf %s." - -#: classes/class-wc-order.php:1464 -msgid "Order item stock reduced successfully." -msgstr "Lagerbestand der bestellten Produkte erfolgreich reduziert." - -#: classes/class-wc-product-external.php:56 -msgid "Buy product" -msgstr "Produkt kaufen" - -#: classes/class-wc-shortcodes.php:571 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:274 -#: templates/loop/add-to-cart.php:46 -#: templates/single-product/add-to-cart/grouped.php:45 -#: templates/single-product/add-to-cart/grouped.php:77 -#: templates/single-product/add-to-cart/simple.php:42 -#: templates/single-product/add-to-cart/variable.php:83 -msgid "Add to cart" -msgstr "In den Warenkorb" - -#: classes/emails/class-wc-email-customer-completed-order.php:24 -msgid "Completed order" -msgstr "Bestellung abgeschlossen" - -#: classes/emails/class-wc-email-customer-completed-order.php:25 -msgid "" -"Order complete emails are sent to the customer when the order is marked " -"complete and usual indicates that the order has been shipped." -msgstr "" -"Bestellbestätigungen werden an den Kunden gesendet, wenn die Bestellung als " -"abgeschlossen markiert wurde. Dies ist dann auch ein Zeichen, dass die " -"Bestellung versendet wurde. " - -#: classes/emails/class-wc-email-customer-completed-order.php:27 -msgid "Your order is complete" -msgstr "Ihre Bestellung ist abgeschlossen." - -#: classes/emails/class-wc-email-customer-completed-order.php:28 -msgid "Your {blogname} order from {order_date} is complete" -msgstr "Ihre {blogname} Bestellung vom {order_date} ist abgeschlossen." - -#: classes/emails/class-wc-email-customer-completed-order.php:37 -msgid "Your order is complete - download your files" -msgstr "Ihre Bestellung ist abgeschlossen - laden Sie die Dateien herunter" - -#: classes/emails/class-wc-email-customer-completed-order.php:38 -msgid "" -"Your {blogname} order from {order_date} is complete - download your files" -msgstr "" -"Ihre {blogname} Bestellung vom {order_date} ist abgeschlossen - laden Sie " -"die Dateien herunter" - -#: classes/emails/class-wc-email-customer-completed-order.php:141 -#: classes/emails/class-wc-email-new-order.php:128 -msgid "Subject" -msgstr "Betreff" - -#: classes/emails/class-wc-email-customer-completed-order.php:148 -#: classes/emails/class-wc-email-new-order.php:135 -msgid "Email Heading" -msgstr "E-Mail Kopfzeile" - -#: classes/emails/class-wc-email-customer-completed-order.php:155 -msgid "Subject (downloadable)" -msgstr "Betreff (herunterladbar)" - -#: classes/emails/class-wc-email-customer-completed-order.php:162 -msgid "Email Heading (downloadable)" -msgstr "E-Mail Kopfzeilen (herunterladbar)" - -#: classes/emails/class-wc-email-customer-invoice.php:27 -msgid "Customer invoice" -msgstr "Kundenrechnung" - -#: classes/emails/class-wc-email-customer-invoice.php:28 -msgid "" -"Customer invoice emails can be sent to the user containing order info and " -"payment links." -msgstr "" -"E-Mails mit Kundenrechnungen können zum Kunden gesendet werden, diese " -"beinhalten Bestelldetails und Zahlungslinks." - -#: classes/emails/class-wc-email-customer-invoice.php:33 -msgid "Invoice for order {order_number} from {order_date}" -msgstr "Rechnung für Bestellung {order_number} vom {order_date}" - -#: classes/emails/class-wc-email-customer-invoice.php:34 -msgid "Invoice for order {order_number}" -msgstr "Rechnung für Bestellung {order_number}" - -#: classes/emails/class-wc-email-customer-invoice.php:36 -msgid "Your {blogname} order from {order_date}" -msgstr "Ihre {blogname} Bestellung vom {order_date}" - -#: classes/emails/class-wc-email-customer-invoice.php:37 -msgid "Order {order_number} details" -msgstr "Bestellung {order_number} details" - -#: classes/emails/class-wc-email-customer-invoice.php:158 -msgid "Email subject (paid)" -msgstr "E-Mail Betreff (bezahlt)" - -#: classes/emails/class-wc-email-customer-invoice.php:165 -msgid "Email heading (paid)" -msgstr "E-Mail Kopfzeile (bezahlt)" - -#: classes/emails/class-wc-email-customer-new-account.php:31 -msgid "New account" -msgstr "Neues Konto" - -#: classes/emails/class-wc-email-customer-new-account.php:32 -msgid "" -"Customer new account emails are sent when a customer signs up via the " -"checkout or My Account page." -msgstr "" -"E-Mail an neue Kunden werden gesendet, wenn diese auf der " -"Zahlungsbestätigungsseite oder Mein Konto ein neues Konto angelegt haben." - -#: classes/emails/class-wc-email-customer-new-account.php:37 -msgid "Your account on {blogname}" -msgstr "Ihr Kundenkonto bei {blogname}" - -#: classes/emails/class-wc-email-customer-new-account.php:38 -msgid "Welcome to {blogname}" -msgstr "Willkommen zu {blogname}" - -#: classes/emails/class-wc-email-customer-note.php:29 -msgid "Customer note" -msgstr "Kundenmitteilung" - -#: classes/emails/class-wc-email-customer-note.php:30 -msgid "Customer note emails are sent when you add a note to an order." -msgstr "" -"Kundenbenachrichtungen per E-Mail werden gesendet, wenn Sie eine Notiz an " -"der Bestellung hinzufügen." - -#: classes/emails/class-wc-email-customer-note.php:35 -msgid "Note added to your {blogname} order from {order_date}" -msgstr "Notiz zu Ihrer Bestellung vom {order_date} auf {blogname}" - -#: classes/emails/class-wc-email-customer-note.php:36 -msgid "A note has been added to your order" -msgstr "Ihrer Bestellung wurde ein Hinweis hinzugefügt" - -#: classes/emails/class-wc-email-customer-processing-order.php:24 -msgid "Processing order" -msgstr "Bestellung in Bearbeitung" - -#: classes/emails/class-wc-email-customer-processing-order.php:25 -msgid "" -"This is an order notification sent to the customer after payment containing " -"order details." -msgstr "" -"Diese Bestellbenachrichtung wird dem Kunden mit Details der Bestellung nach " -"der Zahlung gesendet." - -#: classes/emails/class-wc-email-customer-processing-order.php:27 -msgid "Thank you for your order" -msgstr "Vielen Dan für Ihre Bestellung" - -#: classes/emails/class-wc-email-customer-processing-order.php:28 -msgid "Your {blogname} order receipt from {order_date}" -msgstr "Ihre {blogname} Bestellbestätigung vom {order_date}" - -#: classes/emails/class-wc-email-customer-reset-password.php:36 -msgid "Reset password" -msgstr "Passwort zurücksetzen" - -#: classes/emails/class-wc-email-customer-reset-password.php:37 -msgid "" -"Customer reset password emails are sent when a customer resets their " -"password." -msgstr "" -"Kunden erhalten eine E-Mail zum Passwort zurücksetzen, wenn sie ein neues " -"Passwort angefordert haben. " - -#: classes/emails/class-wc-email-customer-reset-password.php:42 -msgid "Password Reset for {blogname}" -msgstr "Passwort Zurücksetzen für {blogname}" - -#: classes/emails/class-wc-email-customer-reset-password.php:43 -msgid "Password Reset Instructions" -msgstr "Anleitung zum Passwort zurücksetzen" - -#: classes/emails/class-wc-email-new-order.php:24 -msgid "New order" -msgstr "Neue Bestellung" - -#: classes/emails/class-wc-email-new-order.php:25 -msgid "New order emails are sent when an order is received/paid by a customer." -msgstr "" -"E-Mails für neue Bestellungen werden gesendet, wenn eine Bestellung " -"eingegangen bzw. vom Kunden bezahlt wurde. " - -#: classes/emails/class-wc-email-new-order.php:27 -msgid "New customer order" -msgstr "Neue Kunden Bestellung" - -#: classes/emails/class-wc-email-new-order.php:28 -msgid "[{blogname}] New customer order ({order_number}) - {order_date}" -msgstr "[{blogname}] Neue Kunden Bestellung ({order_number}) - {order_date}" - -#: classes/emails/class-wc-email-new-order.php:121 -msgid "Recipient(s)" -msgstr "Empfänger" - -#: classes/emails/class-wc-email-new-order.php:123 -msgid "" -"Enter recipients (comma separated) for this email. Defaults to %s." -msgstr "" -"Geben Sie (kommasepariert) die Empfänger für die E-Mail ein. Standards zu " -"%s." - -#: classes/emails/class-wc-email-new-order.php:130 -msgid "" -"This controls the email subject line. Leave blank to use the default " -"subject: %s." -msgstr "" -"Dies kontrolliert die E-Mail Betreffzeile. Lassen Sie dies leer für den " -"Standardbetreff: %s." - -#: classes/emails/class-wc-email-new-order.php:137 -msgid "" -"This controls the main heading contained within the email notification. " -"Leave blank to use the default heading: %s." -msgstr "" -"Dies kontrolliert den Hauptkopfzeile in der E-Mailbenachrichtigung. Leer " -"lassen für die Standardkopfzeile: %s." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:28 -msgid "Bacs" -msgstr "Überweisung" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:65 -msgid "Enable Bank Transfer" -msgstr "Überweisung aktivieren" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:69 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:63 -#: classes/gateways/cod/class-wc-gateway-cod.php:87 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:135 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:126 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:104 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:84 -msgid "Title" -msgstr "Bezeichnung" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:71 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:65 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:137 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:128 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:83 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:58 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:106 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:86 -msgid "This controls the title which the user sees during checkout." -msgstr " " - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:72 -msgid "Direct Bank Transfer" -msgstr "Überweisung" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:76 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:70 -msgid "Customer Message" -msgstr "Kundennachricht" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:78 -msgid "" -"Give the customer instructions for paying via BACS, and let them know that " -"their order won't be shipping until the money is received." -msgstr "" -"Informieren Sie den Kunden über Ihre Zahlungsmodalitäten für die " -"Rechnungsbegleichung per Überweisung und achten Sie darauf anzugeben, das " -"die Bestellung erst ausgeführt wird, nachdem das Geld überwiesen wurde." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:79 -msgid "" -"Make your payment directly into our bank account. Please use your Order ID " -"as the payment reference. Your order wont be shipped until the funds have " -"cleared in our account." -msgstr "" -"Zahlen Sie direkt per Überweisung an uns. Bitte geben Sie Ihre " -"Auftragsnummer im Verwendungszweck an. Ihre Bestellung wird erst nach Erhalt " -"des Rechnungsbetrages an Sie ausgeliefert." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:82 -msgid "Account Details" -msgstr "Benutzerkonto details" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:84 -msgid "Optionally enter your bank details below for customers to pay into." -msgstr "" -"Geben Sie optional Ihre Bankdaten unten an die, die Kunden zum bezahlen " -"nutzen können. " - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:88 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:163 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:203 -msgid "Account Name" -msgstr "Kontobezeichnung" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:94 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:164 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:204 -msgid "Account Number" -msgstr "Kontonummer" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:100 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:165 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:205 -msgid "Sort Code" -msgstr "Bankleitzahl" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:106 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:166 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:206 -msgid "Bank Name" -msgstr "Name der Bank" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:112 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:167 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:207 -msgid "IBAN" -msgstr "IBAN" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:117 -msgid "BIC (formerly Swift)" -msgstr "BIC/SWIFT" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:136 -msgid "BACS Payment" -msgstr "Zahlung per Überweisung" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:137 -msgid "" -"Allows payments by BACS (Bank Account Clearing System), more commonly known " -"as direct bank/wire transfer." -msgstr "Erlauben Sie Zahlungen per Überweisung" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:158 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:200 -msgid "Our Details" -msgstr "Unsere Angaben" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:168 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:208 -msgid "BIC" -msgstr "BIC" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:234 -msgid "Awaiting BACS payment" -msgstr "Erwarte Überweisung" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:28 -msgid "Cheque" -msgstr "Scheck" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:59 -msgid "Enable Cheque Payment" -msgstr "Bezahlung per Scheck aktivieren" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:66 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:90 -msgid "Cheque Payment" -msgstr "Bezahlung per Scheck" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:72 -msgid "" -"Let the customer know the payee and where they should be sending the cheque " -"to and that their order won't be shipping until you receive it." -msgstr "" -"Informieren Sie den Kunden über den Scheckbegünstigten und wohin der Scheck " -"zu senden ist und das die Lieferung erst nach Erhalt desselben erfolgt." - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:73 -msgid "" -"Please send your cheque to Store Name, Store Street, Store Town, Store " -"State / County, Store Postcode." -msgstr " " - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:91 -msgid "" -"Allows cheque payments. Why would you take cheques in this day and age? Well " -"you probably wouldn't but it does allow you to make test purchases for " -"testing order emails and the 'success' pages etc." -msgstr "Erlauben Sie die Bezahlung per Scheck." - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:147 -msgid "Awaiting cheque payment" -msgstr "Erwarte Zahlung per Scheck" - -#: classes/gateways/cod/class-wc-gateway-cod.php:27 -#: classes/gateways/cod/class-wc-gateway-cod.php:54 -#: classes/gateways/cod/class-wc-gateway-cod.php:90 -msgid "Cash on Delivery" -msgstr "Per Nachnahme" - -#: classes/gateways/cod/class-wc-gateway-cod.php:55 -msgid "Have your customers pay with cash (or by other means) upon delivery." -msgstr "" -"Wollen ihre Kunden per Nachnahme bei der Auslieferung zahlen (Bar oder über " -"andere Zahlungsmethoden)?" - -#: classes/gateways/cod/class-wc-gateway-cod.php:80 -msgid "Enable COD" -msgstr "Per Nachnahme aktivieren" - -#: classes/gateways/cod/class-wc-gateway-cod.php:81 -msgid "Enable Cash on Delivery" -msgstr "Per Nachnahme aktivieren" - -#: classes/gateways/cod/class-wc-gateway-cod.php:89 -msgid "Payment method title that the customer will see on your website." -msgstr "" -"Der Titel der Zahlungsweise, welchen der Kunde auf ihrer Webseite sehen " -"sehen wird." - -#: classes/gateways/cod/class-wc-gateway-cod.php:94 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:142 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:133 -#: woocommerce-template.php:751 -msgid "Description" -msgstr "Beschreibung" - -#: classes/gateways/cod/class-wc-gateway-cod.php:96 -msgid "Payment method description that the customer will see on your website." -msgstr "" -"Beschreibung der Zahlungsweise welche der Kunde auf ihrer Webseite sehen " -"wird." - -#: classes/gateways/cod/class-wc-gateway-cod.php:97 -#: classes/gateways/cod/class-wc-gateway-cod.php:103 -msgid "Pay with cash upon delivery." -msgstr "per Nachnahme zahlen" - -#: classes/gateways/cod/class-wc-gateway-cod.php:100 -msgid "Instructions" -msgstr "Anweisungen" - -#: classes/gateways/cod/class-wc-gateway-cod.php:102 -msgid "Instructions that will be added to the thank you page." -msgstr "Anweisungen, die der Danke-Seite hinzugefügt werden" - -#: classes/gateways/cod/class-wc-gateway-cod.php:106 -msgid "Enable for shipping methods" -msgstr "für Versandmethoden verfügbar machen" - -#: classes/gateways/cod/class-wc-gateway-cod.php:111 -msgid "" -"If COD is only available for certain methods, set it up here. Leave blank to " -"enable for all methods." -msgstr "" -"Falls die Zahlung per Nachnahme nur für bestimmte Versandmethoden möglich " -"ist, bitte hier erfassen. Leer lassen, um dies für alle Versandmethoden " -"verfügbar zu machen." - -#: classes/gateways/cod/class-wc-gateway-cod.php:176 -msgid "Payment to be made upon delivery." -msgstr "Zahlung, die bei Anlieferung gemacht wird." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:31 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:160 -msgid "Mijireh Checkout" -msgstr "Mijireh Checkout" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:107 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:285 -msgid "Mijireh error:" -msgstr "Mijireh Fehler:" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:124 -msgid "Enable Mijireh Checkout" -msgstr "Mijireh Checkout aktivieren" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:128 -msgid "Access Key" -msgstr "Zugangsschlüssel" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:130 -msgid "The Mijireh access key for your store." -msgstr "Der Mijireh Zugangsschlüssel für ihren Shop." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:138 -msgid "Credit Card" -msgstr "Kreditkarte" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:144 -msgid "Pay securely with your credit card." -msgstr "Zahlen Sie sicher mit Ihrer Kreditkarte." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:145 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:135 -msgid "This controls the description which the user sees during checkout." -msgstr "" -"Beschreibungstext, den der Benutzer bei der Auswahl dieser Zahlungsmethode " -"sieht." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:164 -msgid "Get started with Mijireh Checkout" -msgstr "Erste Schritte mit Mijireh Checkout" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:165 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site. Mijireh supports a wide variety of payment gateways: Stripe, " -"Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and more." -msgstr "" -"stellt einen voll PCI konforme, sicheren Weg zur Verfügung, um " -"Kreditkartendaten zu sammeln und zu ihrem Payment Gateway zu übertragen und " -"lässt ihnen die Kontrolle über das Design Ihrer Seite. Mijireh unterstützt " -"eine große Auswahl an Zahlungsschnittstellen: Stripe, Authorize.net, PayPal, " -"eWay, SagePay, Braintree, PayLeap, und mehr." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:167 -msgid "Join for free" -msgstr "Kostenlos Anmelden" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:167 -msgid "Learn more about WooCommerce and Mijireh" -msgstr "Mehr über WooCommerce und Mijireh" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:171 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site." -msgstr "" -"stellt einen voll PCI konforme, sicheren Weg zur Verfügung, um " -"Kreditkartendaten zu sammeln und zu ihrem Payment Gateway zu übertragen und " -"lässt ihnen die Kontrolle über das Design Ihrer Seite. " - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:34 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:129 -msgid "PayPal" -msgstr "PayPal" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:91 -msgid "PayPal standard" -msgstr "PayPal-Standard" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:92 -msgid "" -"PayPal standard works by sending the user to PayPal to enter their payment " -"information." -msgstr "" -"PayPal-Standard leitet den Benutzer an PayPal weiter, um die " -"Zahlungsinformationen einzugeben." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:104 -msgid "Gateway Disabled" -msgstr "Gateway deaktiviert" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:104 -msgid "PayPal does not support your store currency." -msgstr "PayPal bietet keine Unterstützung für Ihr Währung an." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:122 -msgid "Enable PayPal standard" -msgstr "Aktiviere PayPal-Standard" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:136 -msgid "" -"Pay via PayPal; you can pay with your credit card if you don't have a PayPal " -"account" -msgstr "" -"Zahlung über PayPal; Sie können mit Ihrer Kreditkarte bezahlen, wenn Sie " -"über kein PayPal-Konto verfügen." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:139 -msgid "PayPal Email" -msgstr "PayPal E-Mail" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:141 -msgid "" -"Please enter your PayPal email address; this is needed in order to take " -"payment." -msgstr "" -"Bitte geben Sie Ihre PayPal E-Mailadresse ein; diese wird benötigt, um die " -"Bezahlung abschließen zu können." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:147 -msgid "Receiver Email" -msgstr "Empfänger E-Mail" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:149 -msgid "" -"If this differs from the email entered above, input your main receiver email " -"for your PayPal account. This is used to validate IPN requests." -msgstr "" -"Falls dies unterschiedlich ist zu der E-Mail, die oben eingegeben wurde, " -"geben Sie bitte Ihre Hauptempfangs-Adresse für Ihren PayPal Account ein. " -"Diese E-Mail Adresse wird genutzt, um die IPN zu validieren." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:155 -msgid "Invoice Prefix" -msgstr "Rechnungspräfix" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:157 -msgid "" -"Please enter a prefix for your invoice numbers. If you use your PayPal " -"account for multiple stores ensure this prefix is unique as PayPal will not " -"allow orders with the same invoice number." -msgstr "" -"Bitte geben Sie einen Präfix für Ihre Rechnungsnummern ein. Falls Sie Ihren " -"PayPal Account für mehrere Shops verwenden, stellen Sie bitte sicher, dass " -"der Präfix einzigartig ist, sonst wird PayPal keine Bestellungen mit der " -"identischen Rechnungsnummer akzeptieren. " - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:162 -msgid "Submission method" -msgstr "Eingabemethode" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:164 -msgid "Use form submission method." -msgstr "Verwenden Sie Eingabemethode-Formular." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:165 -msgid "" -"Enable this to post order data to PayPal via a form instead of using a " -"redirect/querystring." -msgstr "" -"Aktivieren Sie diese Option, um Daten an PayPal über ein Formular anstatt " -"redirect/querystring zu nutzen." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:169 -msgid "Page Style" -msgstr "Seitenstil" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:171 -msgid "" -"Optionally enter the name of the page style you wish to use. These are " -"defined within your PayPal account." -msgstr "" -"Optional können Sie den Namen des gewünschten Seitenstils eingeben. Dies " -"wird innerhalb Ihres PayPal Kontos definiert." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:174 -msgid "Optional" -msgstr "Optional" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:177 -msgid "Shipping options" -msgstr "Versandoptionen" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:182 -msgid "Shipping details" -msgstr "Versanddetails" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:184 -msgid "Send shipping details to PayPal instead of billing." -msgstr "Senden Versanddetails zu PayPal anstatt der Rechnung." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:186 -msgid "" -"PayPal allows us to send 1 address. If you are using PayPal for shipping " -"labels you may prefer to send the shipping address rather than billing." -msgstr "" -"PayPal ermöglicht es uns eine Adresse zu senden. Wenn Sie PayPal für Versand-" -"Etiketten nutzen dann mögen Sie es vielleicht vorziehen, die Lieferadresse " -"anstatt der Rechnung zu schicken." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:190 -msgid "Address override" -msgstr "Adresse Überschreibung" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:192 -msgid "" -"Enable \"address_override\" to prevent address information from being " -"changed." -msgstr "" -"Aktivieren Sie \"address_override\", damit Adressinformationen nicht " -"geändert werden können." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:193 -msgid "" -"PayPal verifies addresses therefore this setting can cause errors (we " -"recommend keeping it disabled)." -msgstr "" -"PayPal verifiziert Adressen, daher kann bei dieser Einstellung Fehler " -"auftreten (wir empfehlen, dass Sie es deaktiviert lassen)." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:197 -msgid "Gateway Testing" -msgstr "Gateway Testen" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:202 -msgid "PayPal sandbox" -msgstr "PayPal-Testumgebung" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:204 -msgid "Enable PayPal sandbox" -msgstr "PayPal-Testumgebung aktivieren" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:206 -msgid "" -"PayPal sandbox can be used to test payments. Sign up for a developer account " -"here." -msgstr "" -"PayPal Sandbox kann verwendet werden, um Zahlungen zu testen. Melden Sie " -"sich für einen Entwickler-Account hier." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:209 -msgid "Debug Log" -msgstr "Debug Log" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:211 -msgid "Enable logging" -msgstr "Logging aktivieren" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:213 -msgid "" -"Log PayPal events, such as IPN requests, inside woocommerce/logs/" -"paypal-%s.txt" -msgstr "" -"PayPal Events aufzeichnen, als IPN Anforderungen innerhalb von " -"woocommerce/logs/paypal-%s.txt" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:322 -msgid "Order %s" -msgstr "Bestellung %s" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:332 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:386 -msgid "Shipping via" -msgstr "Versand via" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:427 -msgid "" -"Thank you for your order. We are now redirecting you to PayPal to make " -"payment." -msgstr "" -"Vielen Dank für Ihre Bestellung. Sie werden nun zu PayPal weitergeleitet, um " -"die Bezahlung vorzunehmen." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:448 -msgid "Pay via PayPal" -msgstr "Bezahlen über PayPal" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:448 -msgid "Cancel order & restore cart" -msgstr "Bestellung abbrechen & Warenkorb zurücksetzen" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:502 -msgid "" -"Thank you for your order, please click the button below to pay with PayPal." -msgstr "" -"Vielen Dank für Ihre Bestellung, bitte klicken Sie auf den Button unten, um " -"mit PayPal zu bezahlen." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:644 -msgid "Validation error: PayPal amounts do not match (gross %s)." -msgstr "Validierungsfehler: Paypal Beträge passen nicht. (Brutto %s)." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:655 -msgid "" -"Validation error: PayPal IPN response from a different email address (%s)." -msgstr "" -"Validierungsfehler: PayPal IPN Rückgabe von unterschiedlichen E-Mail " -"Adressen (%s)." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:673 -msgid "IPN payment completed" -msgstr "IPN-Zahlung vollständig" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:685 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:693 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:711 -msgid "Payment %s via IPN." -msgstr "Zahlung %s über IPN." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:698 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:716 -msgid "Order refunded/reversed" -msgstr "Bestellungen zurückerstattet / storniert" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:699 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:717 -msgid "Order %s has been marked as refunded - PayPal reason code: %s" -msgstr "" -"Bestellung %s wurde als zurückerstattet markiert - PayPal Ursachencode: %s" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:702 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:720 -msgid "Payment for order %s refunded/reversed" -msgstr "Die Bezahlung der Bestellung %s wurde zurückerstattet" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:26 -msgid "Google Analytics" -msgstr "Google Analytics" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:27 -msgid "" -"Google Analytics is a free service offered by Google that generates detailed " -"statistics about the visitors to a website." -msgstr "" -"Google Analytics ist einer freier Webservice von Google, mit welchem " -"detaillierte Statistiken über die Besucher der Webseite erstellt werden " -"können." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:63 -msgid "Google Analytics ID" -msgstr "Google Analytics ID" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:64 -msgid "" -"Log into your google analytics account to find your ID. e.g. UA-XXXXX-" -"X" -msgstr "" -"Bei Google Analytics anmelden, um die ID zu finden, z.B.: UA-XXXXX-X" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:69 -msgid "Set Domain Name" -msgstr "Domainnamen setzen" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:70 -msgid "" -"(Optional) Sets the _setDomainName variable. See " -"here for more information." -msgstr "" -"(Optional) Setzt die _setDomainName Variable. hier klicken für weitere Informationen" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:75 -msgid "Tracking code" -msgstr "Sendungsnummer" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:76 -msgid "" -"Add tracking code to your site's footer. You don't need to enable this if " -"using a 3rd party analytics plugin." -msgstr "" -"Tracking-Code in den Footer einfügen. Sie müssen dies nicht aktivieren, wenn " -"Sie bereits ein anderes Statistiktool einsetzen." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:82 -msgid "Add eCommerce tracking code to the thankyou page" -msgstr "eCommerce Tracking-Code auf der Danke-Seite hinzufügen" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:88 -msgid "Add event tracking code for add to cart actions" -msgstr "Eine Eventnachverfolgung per Code an die Warenkorbaktionen binden" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:120 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:180 -#: woocommerce-ajax.php:1652 -msgid "Guest" -msgstr "Gast" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:218 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:275 -#: templates/single-product/meta.php:19 -msgid "SKU:" -msgstr "ArtNr.:" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:273 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:293 -#: woocommerce.php:982 -msgid "Products" -msgstr "Produkte" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:294 -msgid "Add to Cart" -msgstr "Zum Warenkorb hinzufügen" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:26 -msgid "ShareDaddy" -msgstr "ShareDaddy" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:27 -msgid "ShareDaddy is a sharing plugin bundled with JetPack." -msgstr "ShareDaddy ist ein Sharing Plugin zusammen mit JetPack." - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:51 -msgid "Output ShareDaddy button?" -msgstr "ShareDaddy Schaltfläche anzeigen?" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:52 -msgid "Enable this option to show the ShareDaddy button on the product page." -msgstr "" -"Aktivieren Sie diese Option, um den ShareDaddy Button auf der Produkt-Seite " -"zu zeigen." - -#: classes/integrations/sharethis/class-wc-sharethis.php:29 -msgid "ShareThis" -msgstr "ShareThis" - -#: classes/integrations/sharethis/class-wc-sharethis.php:30 -msgid "" -"ShareThis offers a sharing widget which will allow customers to share links " -"to products with their friends." -msgstr "" -"ShareThis stellt ein Widget zu Verfügung, welchen den Benutzern erlaubt, " -"einfach Links zu den Produkten mit seinen Freunden zu teilen." - -#: classes/integrations/sharethis/class-wc-sharethis.php:63 -msgid "ShareThis Publisher ID" -msgstr "Ihre ShareThis-ID" - -#: classes/integrations/sharethis/class-wc-sharethis.php:64 -msgid "" -"Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons on " -"product pages." -msgstr "" -"Geben Sie Ihre %1$sShareThis publisher ID%2$s ein, um Buttons für soziale " -"Netzwerke auf Produktseiten einzublenden." - -#: classes/integrations/sharethis/class-wc-sharethis.php:69 -msgid "ShareThis Code" -msgstr "ShareThis Code" - -#: classes/integrations/sharethis/class-wc-sharethis.php:70 -msgid "You can tweak the ShareThis code by editing this option." -msgstr "Sie können den ShareThis Code einstellen beim editieren dieser Option." - -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:22 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:329 -msgid "ShareYourCart" -msgstr "ShareYourCart" - -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:23 -msgid "" -"Increase your social media exposure by 10 percent! ShareYourCart helps you " -"get more customers by motivating satisfied customers to talk with their " -"friends about your products. For help with ShareYourCart view the documentation." -msgstr "" -"Erhöhen Sie Ihre Social Media Sichtbarkeit um 10 Prozent! ShareYourCart " -"hilft Ihnen mehr Kunden zu gewinnen durch Motivierung bestehender Kunden, " -"die ihren Freunden Produkte empfehlen. Für weitere Hilfe zu ShareYourCart " -"schauen Sie sich die Dokumentation an. " - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:328 -msgid "Share your cart settings" -msgstr "Share your cart Einstellungen" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:342 -msgid "Button" -msgstr "Schaltfläche" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:343 -msgid "Customize Button" -msgstr "Schaltfläche anpassen" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:351 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:352 -msgid "Documentation" -msgstr "Dokumentation" - -#: classes/integrations/shareyourcart/views/admin-page.php:33 -msgid "Setup your ShareYourCart account" -msgstr "Richten Sie ihr ShareYourCart Konto ein" - -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Create an account" -msgstr "Benutzerkonto erstellen" - -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Can't access your account?" -msgstr "Sie können in Ihr Konto nicht einloggen?" - -#: classes/integrations/shareyourcart/views/admin-page.php:100 -msgid "Configure" -msgstr "Konfigurieren" - -#: classes/integrations/shareyourcart/views/admin-page.php:110 -#: classes/integrations/shareyourcart/views/button-settings-page.php:120 -msgid "Save changes" -msgstr "Änderungen speichern" - -#: classes/integrations/shareyourcart/views/button-settings-page.php:8 -#: classes/integrations/shareyourcart/views/button-settings-page.php:11 -msgid "Button style" -msgstr "Button Stil" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:25 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:85 -msgid "Flat Rate" -msgstr "Flat Rate" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:27 -msgid "Flat rates let you define a standard rate per item, or per order." -msgstr "" -"Mit Versandkostenpauschalen können Sie Standardbeträge pro Produkt oder pro " -"Bestellung definieren." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:78 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:52 -msgid "Enable this shipping method" -msgstr "Aktiviere diese Versandmethode" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:82 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:81 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:56 -msgid "Method Title" -msgstr "Bezeichnung" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:89 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:63 -msgid "Availability" -msgstr "Verfügbarkeit der Versandart" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:93 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:148 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:104 -msgid "All allowed countries" -msgstr "Alle zugelassenen Länder" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:95 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:99 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:98 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:149 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:153 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:105 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:109 -msgid "Specific Countries" -msgstr "Ausgewählte Länder" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:107 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:81 -msgid "Tax Status" -msgstr "Versteuerung" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:111 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:85 -msgid "Taxable" -msgstr "zu versteuern" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:112 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:86 -msgid "None" -msgstr "Keine" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:116 -msgid "Cost per order" -msgstr "Kosten pro Bestellung" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:122 -msgid "" -"Enter a cost (excluding tax) per order, e.g. 5.00. Leave blank to disable." -msgstr "" -"Geben Sie die Kosten (exklusive Steuer) pro Bestellung ein. bspw. 5.00. Leer " -"lassen zum deaktivieren. " - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:128 -msgid "Additional Rates" -msgstr "Weitere Raten" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:130 -msgid "" -"Optional extra shipping options with additional costs (one per line): Option " -"Name | Additional Cost | Per Cost Type (order, class, or item) Example: " -"Priority Mail | 6.95 | order." -msgstr "" -"Optionale extra Versandoptionen mit zusätzlichen Kosten (eine pro Zeile): " -"Option Name | zusätzliche Kosten | Pro Kostentyp (order, class oder item) " -"Beispiel: Express Zustellung | 6.95 | order." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:133 -msgid "Option Name | Additional Cost | Per Cost Type (order, class, or item)" -msgstr "" -"Option Name | zusätzliche Kosten | Pro Kostentyp (order, class oder item)" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:136 -msgid "Additional Costs" -msgstr "zusätzliche Kosten" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:138 -msgid "" -"Additional costs can be added below - these will all be added to the per-" -"order cost above." -msgstr "" -"Zusätzliche Kosten können unten hinzugefügt werden - diese werden zu allen " -"Pro-Bestellung-Kosten oben hinzugefügt." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:141 -msgid "Costs Added..." -msgstr "Kosten hinzugefügt…" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:145 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:94 -msgid "Per Order - charge shipping for the entire order as a whole" -msgstr "Pro Bestellung - berechne Versandkosten für die komplette Bestellung" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:146 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:95 -msgid "Per Item - charge shipping for each item individually" -msgstr "Pro Position - berechne Versandkosten für jede Position individuell" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:147 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:96 -msgid "Per Class - charge shipping for each shipping class in an order" -msgstr "" -"Pro Klasse - berechne den Versand für jede Versandklasse in einer Bestellung" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:154 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:120 -msgid "Minimum Handling Fee" -msgstr "Mindestwert Bearbeitungsgebühr" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:160 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:126 -msgid "" -"Enter a minimum fee amount. Fee's less than this will be increased. Leave " -"blank to disable." -msgstr "" -"Geben Sie einen Betrag für die Mindestgebühr ein. Gebühren weniger als " -"dieser Betrag werden erhöht. Leer lassen um zu deaktivieren." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:479 -msgid "Costs" -msgstr "Kosten" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:485 -#: woocommerce.php:891 -msgid "Shipping Class" -msgstr "Versandklasse" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:486 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:100 -msgid "Cost" -msgstr "Preis" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:486 -msgid "Cost, excluding tax." -msgstr "Kosten, exkl. Steuern." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:487 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:112 -msgid "Handling Fee" -msgstr "Bearbeitungsgebühr" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:487 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -msgstr "" -"Gebühr ohne Steuer. Geben sie einen Betrag an, z.B.: 2,50, oder einen " -"Prozentsatz, z.B.: 5%" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:492 -msgid "+ Add Cost" -msgstr "+ Kosten hinzufügen" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:492 -msgid "Delete selected costs" -msgstr "Selektierte Kosten löschen" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:498 -msgid "Any class" -msgstr "Jede Klasse" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:499 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:500 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:110 -#: templates/order/order-details.php:119 templates/order/order-details.php:134 -msgid "N/A" -msgstr "nicht lieferbar" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:518 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:548 -msgid "Select a class…" -msgstr "Wählen Sie eine Klasse…" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:523 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:524 -msgid "0.00" -msgstr "0.00" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:562 -msgid "Delete the selected rates?" -msgstr "Die gewählten Gebühren löschen?" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:25 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:145 -msgid "Free Shipping" -msgstr "Kostenloser Versand" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:77 -msgid "Enable Free Shipping" -msgstr "Kostenlosen Versand aktivieren" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:88 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:143 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:99 -msgid "Method availability" -msgstr "Verfügbarkeit der Versandart" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:106 -msgid "Free Shipping Requires..." -msgstr "Versandkostenfrei benötigt…" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:111 -msgid "A valid free shipping coupon" -msgstr "einen gültigen Versandkostenfrei-Coupon" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:112 -msgid "A minimum order amount (defined below)" -msgstr "Mindesbestellwert (unten definiert)" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:113 -msgid "A minimum order amount OR a coupon" -msgstr "Mindestbestelltwert ODER einen Coupon" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:114 -msgid "A minimum order amount AND a coupon" -msgstr "Mindestbestellwert UND einen Coupon" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:118 -msgid "Minimum Order Amount" -msgstr "Untergrenze Bestellsumme" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:124 -msgid "" -"Users will need to spend this amount to get free shipping (if enabled above)." -msgstr "" -"Benutzer müssen diesen Betrag ausgeben, um versandkostenfrei zu bestellen " -"(falls oben aktiviert)" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:29 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:59 -msgid "International Delivery" -msgstr "Internationaler Versand" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:30 -msgid "International delivery based on flat rate shipping." -msgstr "Internationaler Versand basierend auf Pauschalbeträgen." - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:68 -msgid "Selected countries" -msgstr "Ausgewählte Länder" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:69 -msgid "Excluding selected countries" -msgstr "Ausgewählte Länder ausschließen" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:73 -msgid "Countries" -msgstr "Länder" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:90 -msgid "Cost Added..." -msgstr "Kosten hinzugefügt…" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:106 -msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -msgstr "Kosten exklusive Mehrwertsteuer. Geben Sie einen Wert ein, z.B. 2.50." - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:114 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. " -"Leave blank to disable." -msgstr "" -"Gebühr exklusive Mehrwertsteuer. Geben Sie einen Wert ein, z.B. 2.50, oder " -"einen Prozentsatz, z.B. 5%. Zum Deaktivieren leer lassen." - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:25 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:107 -msgid "Local Delivery" -msgstr "Lokaler Versand" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:98 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:78 -msgid "Enable" -msgstr "Aktivieren" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:100 -msgid "Enable local delivery" -msgstr "Lokalen Versand aktivieren" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:111 -msgid "Fee Type" -msgstr "Gebührenart" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:113 -msgid "How to calculate delivery charges" -msgstr "Wie sollen die Versandkosten berechnet werden" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 -msgid "Fixed amount" -msgstr "Fester Betrag" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:117 -msgid "Percentage of cart total" -msgstr "Prozentual vom Gesamtbetrag" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:118 -msgid "Fixed amount per product" -msgstr "Fester Betrag pro Produkt" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:123 -msgid "Delivery Fee" -msgstr "Versandgebühr" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:129 -msgid "" -"What fee do you want to charge for local delivery, disregarded if you choose " -"free. Leave blank to disable." -msgstr "" -"Welche Gebühr wollen Sie für die lokale Auslieferung verlangen, bleibt " -"unberücksichtigt, wenn Sie kostenlos wählen. Leer lassen um zu deaktivieren." - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:135 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:91 -msgid "Zip/Post Codes" -msgstr "PLZ" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:137 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:93 -msgid "" -"What zip/post codes would you like to offer delivery to? Separate codes with " -"a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -msgstr "" -"In welchen Postleitzahlenbereich wollen Sie anbieten zu liefern? Separieren " -"Sie die Codes mit einem Komma. Platzhalter werden aktzeptiert bspw. 54*" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:172 -msgid "" -"Local delivery is a simple shipping method for delivering orders locally." -msgstr "" -"Lokaler Versand ist eine Versandmethode Bestellungen lokal zu versenden." - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:25 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:87 -msgid "Local Pickup" -msgstr "Abholung vor Ort" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:80 -msgid "Enable local pickup" -msgstr "Abholung vor Ort aktivieren" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:117 -msgid "Apply base tax rate" -msgstr "Basis Mehrwertsteuer anwenden" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:119 -msgid "" -"When this shipping method is chosen, apply the base tax rate rather than for " -"the customer's given address." -msgstr "" -"Wenn diese Versandmethode ausgewählt ist, wird die Basis Mehrwertsteuer " -"anstatt der Rate basierend auf der Kundenadresse angewendet. " - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:134 -msgid "" -"Local pickup is a simple method which allows the customer to pick up their " -"order themselves." -msgstr "" -"Abholung vor Ort ist eine einfache Methode, die dem Kunden erlaubt seine " -"Bestellung selber abzuholen." - -#: classes/shortcodes/class-wc-shortcode-cart.php:53 -#: woocommerce-functions.php:1701 -msgid "Please enter a valid postcode/ZIP." -msgstr "Bitte geben Sie eine gültige Postleitzahl/PLZ ein." - -#: classes/shortcodes/class-wc-shortcode-cart.php:64 -#: classes/shortcodes/class-wc-shortcode-cart.php:70 -msgid "Shipping costs updated." -msgstr "Versandkosten aktualisiert." - -#: classes/shortcodes/class-wc-shortcode-checkout.php:45 -msgid "" -"WooCommerce Config Error: The checkout thanks/pay pages are missing - these " -"pages are required for the checkout to function correctly. Please configure " -"the pages here." -msgstr "" -"WooCommerce Konfigurationsfehler: Die Seiten für die Bestellbestätigung bzw. " -"Zahlung erfolgt fehlen. Diese Seiten werden benötigt, um den Bestellvorgang " -"korrekt abzuwickeln. Bitte konfigurieren Sie diese Seiten hier." - -#: classes/shortcodes/class-wc-shortcode-checkout.php:73 -msgid "" -"The order totals have been updated. Please confirm your order by pressing " -"the Place Order button at the bottom of the page." -msgstr "" -"Der Gesamtbetrag der Bestellung wurde aktualisiert. Bitte bestätigen Sie " -"Ihre Bestellung, indem Sie den Bestellung ausführen-Button am Ende der Seite " -"klicken." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:78 -#: woocommerce-functions.php:1623 -msgid "Please enter your password." -msgstr "Bitte geben Sie Ihr Passwort ein." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:93 -msgid "Your password has been reset." -msgstr "Ihr Passwort wurde zurückgesetzt." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:93 -msgid "Log in" -msgstr "Anmelden" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:114 -msgid "Enter a username or e-mail address." -msgstr "Geben Sie Ihren Benutzernamen oder E-Mailadresse ein" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:121 -msgid "There is no user registered with that email address." -msgstr "Es ist kein Benutzer mit dieser E-Mailadresse registriert." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:136 -msgid "Invalid username or e-mail." -msgstr "Ungültiger Benutzername oder E-Mail" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:150 -msgid "Password reset is not allowed for this user" -msgstr "Für diesen Benutzer ist es nicht erlaubt das Passwort zurückzusetzen." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:178 -msgid "Check your e-mail for the confirmation link." -msgstr "" -"Bitte überprüfen Sie Ihren Posteingang. Sie haben eine E-Mail mit einem " -"Bestätigungslink erhalten." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:198 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:203 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:210 -msgid "Invalid key" -msgstr "Ungültiger Schlüssel" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:51 -msgid "Please enter a valid order ID" -msgstr "Bitte geben Sie eine gültige Bestellnummer ein." - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:55 -msgid "Please enter a valid order email" -msgstr "Bitte geben Sie eine gültige Bestell E-Mailadresse ein" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:74 -msgid "Sorry, we could not find that order id in our database." -msgstr "" -"Entschuldigung, wir konnten diese Bestellung nicht in unserer Datenbank " -"finden." - -#: classes/shortcodes/class-wc-shortcode-pay.php:64 -#: classes/shortcodes/class-wc-shortcode-pay.php:118 -msgid "" -"Your order has already been paid for. Please contact us if you need " -"assistance." -msgstr "" -"Ihre Bestellung wurde bereits bezahlt. Bitte nehmen Sie mit uns Kontakt auf, " -"wenn Sie Hilfe benötigen." - -#: classes/shortcodes/class-wc-shortcode-pay.php:69 -#: classes/shortcodes/class-wc-shortcode-pay.php:125 -#: classes/shortcodes/class-wc-shortcode-view-order.php:51 -#: woocommerce-functions.php:909 woocommerce-functions.php:989 -msgid "Invalid order." -msgstr "Ungültige Bestellung." - -#: classes/shortcodes/class-wc-shortcode-pay.php:90 -#: templates/checkout/thankyou.php:40 -#: templates/emails/customer-completed-order.php:18 -#: templates/emails/customer-invoice.php:22 -#: templates/emails/customer-note.php:22 -#: templates/emails/customer-processing-order.php:18 -msgid "Order:" -msgstr "Bestellung:" - -#: classes/shortcodes/class-wc-shortcode-pay.php:94 -#: templates/checkout/thankyou.php:44 -msgid "Date:" -msgstr "Datum:" - -#: classes/shortcodes/class-wc-shortcode-pay.php:98 -#: templates/checkout/thankyou.php:48 -msgid "Total:" -msgstr "Gesamt:" - -#: classes/shortcodes/class-wc-shortcode-pay.php:103 -#: templates/checkout/thankyou.php:53 -msgid "Payment method:" -msgstr "Zahlungsart:" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:51 -msgid "My Account →" -msgstr "Mein Konto →" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:58 -msgid "" -"Order %s made on %s" -msgstr "" -"Bestellung %s stellt auf %s" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:59 -msgid "Order status: %s" -msgstr "Bestellstatus: %s" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:65 -#: templates/order/tracking.php:31 -msgid "Order Updates" -msgstr "Aktualisierungen zur Bestellung" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:71 -msgid "l jS \\of F Y, h:ia" -msgstr "l jS \\of F Y, h:ia" - -#: classes/widgets/class-wc-widget-best-sellers.php:31 -msgid "Display a list of your best selling products on your site." -msgstr "Zeigt die Liste Ihrer Verkaufsschlager auf Ihrer Seite." - -#: classes/widgets/class-wc-widget-best-sellers.php:33 -msgid "WooCommerce Best Sellers" -msgstr "WooCommerce Verkaufsschlager" - -#: classes/widgets/class-wc-widget-best-sellers.php:71 -msgid "Best Sellers" -msgstr "Verkaufsschlager" - -#: classes/widgets/class-wc-widget-best-sellers.php:189 -#: classes/widgets/class-wc-widget-cart.php:109 -#: classes/widgets/class-wc-widget-featured-products.php:169 -#: classes/widgets/class-wc-widget-layered-nav.php:349 -#: classes/widgets/class-wc-widget-onsale.php:176 -#: classes/widgets/class-wc-widget-price-filter.php:179 -#: classes/widgets/class-wc-widget-product-categories.php:185 -#: classes/widgets/class-wc-widget-product-search.php:91 -#: classes/widgets/class-wc-widget-product-tag-cloud.php:101 -#: classes/widgets/class-wc-widget-random-products.php:134 -#: classes/widgets/class-wc-widget-recent-products.php:170 -#: classes/widgets/class-wc-widget-recent-reviews.php:158 -#: classes/widgets/class-wc-widget-recently-viewed.php:166 -#: classes/widgets/class-wc-widget-top-rated-products.php:156 -msgid "Title:" -msgstr "Bezeichnung:" - -#: classes/widgets/class-wc-widget-best-sellers.php:192 -#: classes/widgets/class-wc-widget-featured-products.php:172 -#: classes/widgets/class-wc-widget-onsale.php:179 -#: classes/widgets/class-wc-widget-random-products.php:139 -#: classes/widgets/class-wc-widget-recent-products.php:173 -#: classes/widgets/class-wc-widget-recent-reviews.php:161 -#: classes/widgets/class-wc-widget-recently-viewed.php:169 -#: classes/widgets/class-wc-widget-top-rated-products.php:159 -msgid "Number of products to show:" -msgstr "Anzahl der Produkte, die angezeigt werden sollen:" - -#: classes/widgets/class-wc-widget-best-sellers.php:196 -msgid "Hide free products" -msgstr "Kostenlose Produkte verbergen" - -#: classes/widgets/class-wc-widget-cart.php:33 -msgid "Display the user's Cart in the sidebar." -msgstr "Zeige den Warenkorb des Benutzers in der Sidebar." - -#: classes/widgets/class-wc-widget-cart.php:35 -msgid "WooCommerce Cart" -msgstr "WooCommerce Warenkorb" - -#: classes/widgets/class-wc-widget-cart.php:113 -msgid "Hide if cart is empty" -msgstr "Ausblenden wenn Warenkorb leer ist" - -#: classes/widgets/class-wc-widget-featured-products.php:35 -msgid "Display a list of featured products on your site." -msgstr "Gibt eine Übersicht empfohlener Produkte auf Ihrer Seite aus." - -#: classes/widgets/class-wc-widget-featured-products.php:37 -msgid "WooCommerce Featured Products" -msgstr "WooCommerce Empfohlene Produkte" - -#: classes/widgets/class-wc-widget-featured-products.php:75 -msgid "Featured Products" -msgstr "Empfohlene Produkte" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:31 -msgid "Shows active layered nav filters so users can see and deactivate them." -msgstr "" -"Zeige aktive überlagernde Nav Filter, so dass die Benutzer diese sehen und " -"deaktivieren können." - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:33 -msgid "WooCommerce Layered Nav Filters" -msgstr "WooCommerce überlagernde Nav Filter" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:62 -msgid "Active filters" -msgstr "Aktive Filter" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:93 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Remove filter" -msgstr "Filter entfernen" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -msgid "Min" -msgstr "Min" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Max" -msgstr "Max" - -#: classes/widgets/class-wc-widget-layered-nav.php:31 -msgid "" -"Shows a custom attribute in a widget which lets you narrow down the list of " -"products when viewing product categories." -msgstr "" -"Zeigt ein benutzerdefiniertes Attribut in einem Widget an, welches die " -"angezeigte Produktübersicht eingrenzt, wenn man Produktkategorien betrachtet." - -#: classes/widgets/class-wc-widget-layered-nav.php:33 -msgid "WooCommerce Layered Nav" -msgstr "WooCommerce Layer-Navigation" - -#: classes/widgets/class-wc-widget-layered-nav.php:100 -msgid "Any %s" -msgstr "Beliebige %s" - -#: classes/widgets/class-wc-widget-layered-nav.php:352 -msgid "Attribute:" -msgstr "Attribut:" - -#: classes/widgets/class-wc-widget-layered-nav.php:363 -msgid "Display Type:" -msgstr "Art der Anzeige:" - -#: classes/widgets/class-wc-widget-layered-nav.php:365 -msgid "List" -msgstr "Liste" - -#: classes/widgets/class-wc-widget-layered-nav.php:366 -msgid "Dropdown" -msgstr "Dropdown" - -#: classes/widgets/class-wc-widget-layered-nav.php:369 -msgid "Query Type:" -msgstr "Abfrage-Typ:" - -#: classes/widgets/class-wc-widget-layered-nav.php:371 -msgid "AND" -msgstr "UND" - -#: classes/widgets/class-wc-widget-layered-nav.php:372 -msgid "OR" -msgstr "ODER" - -#: classes/widgets/class-wc-widget-onsale.php:31 -msgid "Display a list of your on-sale products on your site." -msgstr "Liste der Produkte im Ausverkauf anzeigen." - -#: classes/widgets/class-wc-widget-onsale.php:33 -msgid "WooCommerce On-sale" -msgstr "WooCommerce Sonderangebot" - -#: classes/widgets/class-wc-widget-onsale.php:70 -msgid "On Sale" -msgstr "Sonderangebot" - -#: classes/widgets/class-wc-widget-price-filter.php:33 -msgid "" -"Shows a price filter slider in a widget which lets you narrow down the list " -"of shown products when viewing product categories." -msgstr "" -"Zeigt einen Preisfilter-Schieberegler in einem Widget an, mit welchem Sie " -"die angezeigten Produkte eingrenzen können, wenn Sie bestimmte " -"Produktkategorien betrachten." - -#: classes/widgets/class-wc-widget-price-filter.php:35 -msgid "WooCommerce Price Filter" -msgstr "WooCommerce Preisfilter" - -#: classes/widgets/class-wc-widget-price-filter.php:136 -msgid "Min price" -msgstr "Min. Preis" - -#: classes/widgets/class-wc-widget-price-filter.php:137 -msgid "Max price" -msgstr "Max Preis" - -#: classes/widgets/class-wc-widget-price-filter.php:138 -msgid "Filter" -msgstr "Eingrenzen" - -#: classes/widgets/class-wc-widget-price-filter.php:140 -msgid "Price:" -msgstr "Preis:" - -#: classes/widgets/class-wc-widget-price-filter.php:162 -msgid "Filter by price" -msgstr "Preisfilter" - -#: classes/widgets/class-wc-widget-product-categories.php:33 -msgid "A list or dropdown of product categories." -msgstr "Eine Liste oder Drop-down-Menü der Produktkategorien" - -#: classes/widgets/class-wc-widget-product-categories.php:35 -msgid "WooCommerce Product Categories" -msgstr "WooCommerce Produkt-Kategorien" - -#: classes/widgets/class-wc-widget-product-categories.php:57 -#: woocommerce.php:821 woocommerce.php:823 -msgid "Product Categories" -msgstr "Produktkategorien" - -#: classes/widgets/class-wc-widget-product-categories.php:129 -msgid "No product categories exist." -msgstr "Es existieren keine Produktkategorien." - -#: classes/widgets/class-wc-widget-product-categories.php:188 -msgid "Order by:" -msgstr "Sortiert nach:" - -#: classes/widgets/class-wc-widget-product-categories.php:190 -msgid "Category Order" -msgstr "Kategoriesortierung" - -#: classes/widgets/class-wc-widget-product-categories.php:191 -#: templates/single-product-reviews.php:84 woocommerce-ajax.php:1171 -msgid "Name" -msgstr "Name" - -#: classes/widgets/class-wc-widget-product-categories.php:195 -msgid "Show as dropdown" -msgstr "Als Drop-down-Menü anzeigen" - -#: classes/widgets/class-wc-widget-product-categories.php:198 -msgid "Show post counts" -msgstr "Produktmenge anzeigen" - -#: classes/widgets/class-wc-widget-product-categories.php:201 -msgid "Show hierarchy" -msgstr "Hierarchie anzeigen" - -#: classes/widgets/class-wc-widget-product-categories.php:204 -msgid "Only show children for the current category" -msgstr "Zeige nur Kinder der aktuellen Kategorie" - -#: classes/widgets/class-wc-widget-product-search.php:31 -msgid "A Search box for products only." -msgstr "Ein Suchfeld nur für Produkte." - -#: classes/widgets/class-wc-widget-product-search.php:33 -msgid "WooCommerce Product Search" -msgstr "WooCommerce Produkt-Suche" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:31 -msgid "Your most used product tags in cloud format." -msgstr "" -"Ihre am häufigsten verwendeten Produktschlagwörter als Wolke dargestellt." - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:33 -msgid "WooCommerce Product Tags" -msgstr "WooCommerce Produkt-Schlagwörter" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:58 -#: woocommerce.php:857 woocommerce.php:859 -msgid "Product Tags" -msgstr "Produkt Schlagwörter" - -#: classes/widgets/class-wc-widget-random-products.php:24 -msgid "WooCommerce Random Products" -msgstr "WooCommerce Zufällige Produkte" - -#: classes/widgets/class-wc-widget-random-products.php:27 -msgid "Display a list of random products on your site." -msgstr "Zeige eine Liste von zufälligen Produkten auf ihrer Seite." diff --git a/i18n/languages/woocommerce-en_GB.mo b/i18n/languages/woocommerce-en_GB.mo deleted file mode 100644 index 70aad712c0e..00000000000 Binary files a/i18n/languages/woocommerce-en_GB.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-en_GB.po b/i18n/languages/woocommerce-en_GB.po deleted file mode 100644 index 45c735624ac..00000000000 --- a/i18n/languages/woocommerce-en_GB.po +++ /dev/null @@ -1,13736 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce v2.0.0\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-01-09 09:36:51+00:00\n" -"PO-Revision-Date: 2013-03-04 09:30:48+0000\n" -"Last-Translator: Ramon van Belzen \n" -"Language-Team: WooThemes\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Poedit 1.5.5\n" -"X-Poedit-Language: \n" -"X-Poedit-Country: \n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n" -"X-Poedit-Basepath: \n" -"X-Poedit-Bookmarks: \n" -"X-Poedit-SearchPath-0: .\n" -"X-Textdomain-Support: yes" - -#: assets/js/admin/editor_plugin_lang.php:5 -#@ woocommerce -msgid "Insert Shortcode" -msgstr "" - -#: assets/js/admin/editor_plugin_lang.php:6 -#@ woocommerce -msgid "Product price/cart button" -msgstr "Product price/basket button" - -#: assets/js/admin/editor_plugin_lang.php:7 -#@ woocommerce -msgid "Product by SKU/ID" -msgstr "" - -#: assets/js/admin/editor_plugin_lang.php:8 -#@ woocommerce -msgid "Products by SKU/ID" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:116 -#: assets/js/admin/editor_plugin_lang.php:9 -#@ woocommerce -msgid "Product categories" -msgstr "" - -#: assets/js/admin/editor_plugin_lang.php:10 -#@ woocommerce -msgid "Products by category slug" -msgstr "" - -#: assets/js/admin/editor_plugin_lang.php:11 -#@ woocommerce -msgid "Recent products" -msgstr "" - -#: assets/js/admin/editor_plugin_lang.php:12 -#@ woocommerce -msgid "Featured products" -msgstr "" - -#: assets/js/admin/editor_plugin_lang.php:13 -#@ woocommerce -msgid "Shop Messages" -msgstr "" - -#: admin/woocommerce-admin-content.php:45 -#: admin/woocommerce-admin-settings.php:182 -#: assets/js/admin/editor_plugin_lang.php:14 -#@ woocommerce -msgid "Pages" -msgstr "" - -#: admin/woocommerce-admin-install.php:195 -#: admin/woocommerce-admin-status.php:277 -#: assets/js/admin/editor_plugin_lang.php:15 -#: classes/widgets/class-wc-widget-cart.php:61 -#@ woocommerce -msgid "Cart" -msgstr "Basket" - -#: admin/settings/settings-init.php:114 -#: admin/woocommerce-admin-install.php:198 -#: admin/woocommerce-admin-status.php:281 -#: assets/js/admin/editor_plugin_lang.php:16 -#@ woocommerce -msgid "Checkout" -msgstr "" - -#: assets/js/admin/editor_plugin_lang.php:17 -#@ woocommerce -msgid "Order tracking" -msgstr "" - -#: admin/woocommerce-admin-install.php:201 -#: admin/woocommerce-admin-status.php:293 -#: assets/js/admin/editor_plugin_lang.php:18 -#: templates/checkout/thankyou.php:30 -#@ woocommerce -msgid "My Account" -msgstr "" - -#: admin/woocommerce-admin-status.php:297 -#: assets/js/admin/editor_plugin_lang.php:19 -#@ woocommerce -msgid "Edit Address" -msgstr "" - -#: admin/woocommerce-admin-install.php:213 -#: admin/woocommerce-admin-status.php:305 -#: assets/js/admin/editor_plugin_lang.php:20 -#@ woocommerce -msgid "Change Password" -msgstr "" - -#: admin/woocommerce-admin-install.php:210 -#: admin/woocommerce-admin-status.php:301 -#: assets/js/admin/editor_plugin_lang.php:21 -#: woocommerce.php:1031 -#: woocommerce.php:1032 -#@ woocommerce -msgid "View Order" -msgstr "" - -#: admin/woocommerce-admin-status.php:285 -#: assets/js/admin/editor_plugin_lang.php:22 -#: templates/checkout/thankyou.php:28 -#: templates/myaccount/my-orders.php:71 -#@ woocommerce -msgid "Pay" -msgstr "" - -#: assets/js/admin/editor_plugin_lang.php:23 -#@ woocommerce -msgid "Thankyou" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:421 -#: classes/emails/class-wc-email-customer-completed-order.php:135 -#: classes/emails/class-wc-email-customer-invoice.php:138 -#: classes/emails/class-wc-email-new-order.php:115 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:63 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:57 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:158 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:119 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:77 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:75 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:52 -#@ woocommerce -msgid "Enable/Disable" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:423 -#: classes/emails/class-wc-email-customer-completed-order.php:137 -#: classes/emails/class-wc-email-customer-invoice.php:140 -#: classes/emails/class-wc-email-new-order.php:117 -#@ woocommerce -msgid "Enable this email notification" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:427 -#: classes/emails/class-wc-email-customer-invoice.php:144 -#@ woocommerce -msgid "Email subject" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:429 -#: classes/abstracts/abstract-wc-email.php:436 -#: classes/emails/class-wc-email-customer-completed-order.php:143 -#: classes/emails/class-wc-email-customer-completed-order.php:150 -#: classes/emails/class-wc-email-customer-completed-order.php:157 -#: classes/emails/class-wc-email-customer-completed-order.php:164 -#: classes/emails/class-wc-email-customer-invoice.php:146 -#: classes/emails/class-wc-email-customer-invoice.php:153 -#: classes/emails/class-wc-email-customer-invoice.php:160 -#: classes/emails/class-wc-email-customer-invoice.php:167 -#, php-format -#@ woocommerce -msgid "Defaults to %s" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:434 -#: classes/emails/class-wc-email-customer-invoice.php:151 -#@ woocommerce -msgid "Email heading" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:441 -#: classes/emails/class-wc-email-customer-completed-order.php:169 -#: classes/emails/class-wc-email-customer-invoice.php:172 -#: classes/emails/class-wc-email-new-order.php:142 -#@ woocommerce -msgid "Email type" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:443 -#: classes/emails/class-wc-email-customer-completed-order.php:171 -#: classes/emails/class-wc-email-customer-invoice.php:174 -#: classes/emails/class-wc-email-new-order.php:144 -#@ woocommerce -msgid "Choose which format of email to send." -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:447 -#: classes/emails/class-wc-email-customer-completed-order.php:175 -#: classes/emails/class-wc-email-customer-invoice.php:178 -#: classes/emails/class-wc-email-new-order.php:148 -#@ woocommerce -msgid "Plain text" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:448 -#: classes/emails/class-wc-email-customer-completed-order.php:176 -#: classes/emails/class-wc-email-customer-invoice.php:179 -#: classes/emails/class-wc-email-new-order.php:149 -#@ woocommerce -msgid "HTML" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:449 -#: classes/emails/class-wc-email-customer-completed-order.php:177 -#: classes/emails/class-wc-email-customer-invoice.php:180 -#: classes/emails/class-wc-email-new-order.php:150 -#@ woocommerce -msgid "Multipart" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:485 -#: classes/abstracts/abstract-wc-email.php:506 -#@ woocommerce -msgid "Could not write to template file." -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:533 -#@ woocommerce -msgid "Template file copied to theme." -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:542 -#@ woocommerce -msgid "Template file deleted from theme." -msgstr "" - -#: admin/includes/welcome.php:146 -#: admin/woocommerce-admin-content.php:41 -#: admin/woocommerce-admin-init.php:86 -#: admin/woocommerce-admin-status.php:252 -#: classes/abstracts/abstract-wc-email.php:550 -#: classes/abstracts/abstract-wc-integration.php:30 -#: classes/abstracts/abstract-wc-settings-api.php:39 -#@ woocommerce -msgid "Settings" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:562 -#@ woocommerce -msgid "HTML template" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:563 -#@ woocommerce -msgid "Plain text template" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:582 -#@ woocommerce -msgid "Delete template file" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:585 -#, php-format -#@ woocommerce -msgid "This template has been overridden by your theme and can be found in: %s." -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:600 -#@ woocommerce -msgid "Copy file to theme" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:603 -#, php-format -#@ woocommerce -msgid "To override and edit this email template copy %s to your theme folder: %s." -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:614 -#@ woocommerce -msgid "File was not found." -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:639 -#@ woocommerce -msgid "View template" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:640 -#@ woocommerce -msgid "Hide template" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:651 -#@ woocommerce -msgid "Are you sure you want to delete this template file?" -msgstr "" - -#: admin/post-types/product.php:262 -#: admin/post-types/product.php:641 -#: admin/post-types/product.php:928 -#: admin/post-types/writepanels/writepanel-product_data.php:231 -#: classes/abstracts/abstract-wc-product.php:545 -#: classes/abstracts/abstract-wc-product.php:550 -#: classes/abstracts/abstract-wc-product.php:569 -#@ woocommerce -msgid "In stock" -msgstr "" - -#: classes/abstracts/abstract-wc-product.php:550 -#, php-format -#@ woocommerce -msgid "Only %s left in stock" -msgstr "" - -#: classes/abstracts/abstract-wc-product.php:553 -#, php-format -#@ woocommerce -msgid "%s in stock" -msgstr "" - -#: classes/abstracts/abstract-wc-product.php:560 -#@ woocommerce -msgid "(backorders allowed)" -msgstr "" - -#: classes/abstracts/abstract-wc-product.php:566 -#: classes/abstracts/abstract-wc-product.php:579 -#: templates/cart/cart.php:76 -#@ woocommerce -msgid "Available on backorder" -msgstr "" - -#: admin/post-types/product.php:264 -#: admin/post-types/product.php:642 -#: admin/post-types/product.php:929 -#: admin/post-types/writepanels/writepanel-product_data.php:232 -#: admin/woocommerce-admin-reports.php:2103 -#: classes/abstracts/abstract-wc-product.php:572 -#: classes/abstracts/abstract-wc-product.php:582 -#: classes/abstracts/abstract-wc-product.php:586 -#@ woocommerce -msgid "Out of stock" -msgstr "" - -#: classes/abstracts/abstract-wc-product.php:849 -#: classes/abstracts/abstract-wc-product.php:855 -#: classes/class-wc-cart.php:1743 -#: classes/class-wc-order.php:863 -#: classes/class-wc-product-variable.php:274 -#: classes/class-wc-product-variable.php:283 -#: classes/class-wc-product-variation.php:246 -#@ woocommerce -msgid "Free!" -msgstr "" - -#: classes/abstracts/abstract-wc-product.php:873 -#@ woocommerce -msgctxt "min_price" -msgid "From:" -msgstr "" - -#: classes/abstracts/abstract-wc-product.php:965 -#: templates/single-product-reviews.php:43 -#, php-format -#@ woocommerce -msgid "Rated %s out of 5" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:279 -#: classes/abstracts/abstract-wc-product.php:967 -#: templates/single-product/review.php:27 -#: templates/single-product-reviews.php:43 -#@ woocommerce -msgid "out of 5" -msgstr "" - -#: classes/class-wc-coupon.php:447 -#, php-format -#@ woocommerce -msgid "Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from your order." -msgstr "" - -#: classes/class-wc-coupon.php:450 -#, php-format -#@ woocommerce -msgid "Sorry, it seems the coupon \"%s\" is not yours - it has now been removed from your order." -msgstr "" - -#: classes/class-wc-cart.php:464 -#, php-format -#@ woocommerce -msgid "Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in stock). Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in stock). Please edit your basket and try again. We apologise for any inconvenience caused." - -#: classes/class-wc-cart.php:483 -#: classes/class-wc-cart.php:492 -#, php-format -#@ woocommerce -msgid "Sorry, we do not have enough \"%s\" in stock to fulfil your order (%s in stock). Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Sorry, we do not have enough \"%s\" in stock to fulfil your order (%s in stock). Please edit your basket and try again. We apologise for any inconvenience caused." - -#: classes/class-wc-cart.php:527 -#, php-format -#@ woocommerce -msgid "Sorry, we do not have enough \"%s\" in stock to fulfil your order right now. Please try again in %d minutes or edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Sorry, we do not have enough \"%s\" in stock to fulfil your order right now. Please try again in %d minutes or edit your basket and try again. We apologise for any inconvenience caused." - -#: classes/class-wc-cart.php:537 -#, php-format -#@ woocommerce -msgid "Sorry, \"%s\" is not in stock. Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Sorry, \"%s\" is not in stock. Please edit your basket and try again. We apologise for any inconvenience caused." - -#: classes/class-wc-cart.php:818 -#, php-format -#@ woocommerce -msgid "Sorry, "%s" cannot be purchased." -msgstr "" - -#: classes/class-wc-cart.php:825 -#, php-format -#@ woocommerce -msgid "You cannot add "%s" to the cart because the product is out of stock." -msgstr "You cannot add "%s" to the basket because the product is out of stock." - -#: classes/class-wc-cart.php:830 -#, php-format -#@ woocommerce -msgid "You cannot add that amount of "%s" to the cart because there is not enough stock (%s remaining)." -msgstr "You cannot add that amount of "%s" to the basket because there is not enough stock (%s remaining)." - -#: classes/class-wc-cart.php:842 -#: classes/class-wc-cart.php:856 -#: classes/class-wc-cart.php:864 -#: templates/cart/mini-cart.php:68 -#: woocommerce-functions.php:470 -#: woocommerce.php:1176 -#@ woocommerce -msgid "View Cart →" -msgstr "View Basket →" - -#: classes/class-wc-cart.php:842 -#@ woocommerce -msgid "You already have this item in your cart." -msgstr "You already have this item in your basket." - -#: classes/class-wc-cart.php:856 -#: classes/class-wc-cart.php:864 -#, php-format -#@ woocommerce -msgid "%s You cannot add that amount to the cart — we have %s in stock and you already have %s in your cart." -msgstr "%s You cannot add that amount to the basket — we have %s in stock and you already have %s in your basket." - -#: classes/class-wc-cart.php:1755 -#@ woocommerce -msgid "via" -msgstr "" - -#: classes/class-wc-coupon.php:444 -#: classes/class-wc-coupon.php:494 -#@ woocommerce -msgid "Coupon does not exist!" -msgstr "" - -#: classes/class-wc-checkout.php:64 -#@ woocommerce -msgid "Account username" -msgstr "" - -#: classes/class-wc-checkout.php:65 -#@ woocommerce -msgctxt "placeholder" -msgid "Username" -msgstr "" - -#: classes/class-wc-checkout.php:72 -#: classes/class-wc-checkout.php:79 -#@ woocommerce -msgid "Account password" -msgstr "" - -#: classes/class-wc-checkout.php:73 -#: classes/class-wc-checkout.php:80 -#@ woocommerce -msgctxt "placeholder" -msgid "Password" -msgstr "" - -#: admin/post-types/shop_order.php:48 -#: admin/post-types/writepanels/writepanels-init.php:71 -#: classes/class-wc-checkout.php:89 -#@ woocommerce -msgid "Order Notes" -msgstr "" - -#: classes/class-wc-checkout.php:90 -#@ woocommerce -msgctxt "placeholder" -msgid "Notes about your order, e.g. special notes for delivery." -msgstr "" - -#: classes/class-wc-checkout.php:152 -#, php-format -#@ woocommerce -msgid "Order – %s" -msgstr "" - -#: classes/class-wc-checkout.php:152 -#, php-format -#@ woocommerce -msgctxt "Order date parsed by strftime" -msgid "%b %d, %Y @ %I:%M %p" -msgstr "" - -#: classes/class-wc-checkout.php:276 -#@ woocommerce -msgid "Backordered" -msgstr "" - -#: classes/class-wc-checkout.php:386 -#, php-format -#@ woocommerce -msgid "Sorry, your session has expired. Return to homepage →" -msgstr "" - -#: classes/class-wc-checkout.php:438 -#: woocommerce-functions.php:1632 -#@ woocommerce -msgid "is a required field." -msgstr "" - -#: classes/class-wc-checkout.php:451 -#, php-format -#@ woocommerce -msgid "(%s) is not a valid postcode/ZIP." -msgstr "" - -#: classes/class-wc-checkout.php:472 -#@ woocommerce -msgid "is not valid. Please enter one of the following:" -msgstr "" - -#: classes/class-wc-checkout.php:480 -#@ woocommerce -msgid "is not a valid number." -msgstr "" - -#: classes/class-wc-checkout.php:487 -#@ woocommerce -msgid "is not a valid email address." -msgstr "" - -#: classes/class-wc-checkout.php:543 -#@ woocommerce -msgid "Please enter an account username." -msgstr "" - -#: classes/class-wc-checkout.php:547 -#@ woocommerce -msgid "Invalid email/username." -msgstr "" - -#: classes/class-wc-checkout.php:550 -#@ woocommerce -msgid "An account is already registered with that username. Please choose another." -msgstr "" - -#: classes/class-wc-checkout.php:560 -#@ woocommerce -msgid "Please enter an account password." -msgstr "" - -#: classes/class-wc-checkout.php:563 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:85 -#: woocommerce-functions.php:731 -#: woocommerce-functions.php:1562 -#@ woocommerce -msgid "Passwords do not match." -msgstr "" - -#: classes/class-wc-checkout.php:567 -#@ woocommerce -msgid "An account is already registered with your email address. Please login." -msgstr "" - -#: classes/class-wc-checkout.php:573 -#@ woocommerce -msgid "You must accept our Terms & Conditions." -msgstr "" - -#: classes/class-wc-checkout.php:582 -#@ woocommerce -msgid "Invalid shipping method." -msgstr "" - -#: classes/class-wc-checkout.php:595 -#@ woocommerce -msgid "Invalid payment method." -msgstr "" - -#: classes/class-wc-checkout.php:635 -#: woocommerce-core-functions.php:2485 -#: woocommerce-core-functions.php:2488 -#: woocommerce-functions.php:703 -#: woocommerce-functions.php:705 -#: woocommerce-functions.php:708 -#: woocommerce-functions.php:720 -#: woocommerce-functions.php:722 -#: woocommerce-functions.php:725 -#: woocommerce-functions.php:759 -#@ woocommerce -msgid "ERROR" -msgstr "" - -#: classes/class-wc-checkout.php:635 -#: woocommerce-functions.php:759 -#@ woocommerce -msgid "Couldn’t register you… please contact us if you continue to have problems." -msgstr "" - -#: classes/class-wc-countries.php:37 -#@ woocommerce -msgid "Afghanistan" -msgstr "" - -#: classes/class-wc-countries.php:38 -#@ woocommerce -msgid "Åland Islands" -msgstr "" - -#: classes/class-wc-countries.php:39 -#@ woocommerce -msgid "Albania" -msgstr "" - -#: classes/class-wc-countries.php:40 -#@ woocommerce -msgid "Algeria" -msgstr "" - -#: i18n/states/US.php:67 -#@ woocommerce -msgid "American Samoa" -msgstr "" - -#: classes/class-wc-countries.php:41 -#@ woocommerce -msgid "Andorra" -msgstr "" - -#: classes/class-wc-countries.php:42 -#@ woocommerce -msgid "Angola" -msgstr "" - -#: classes/class-wc-countries.php:43 -#@ woocommerce -msgid "Anguilla" -msgstr "" - -#: classes/class-wc-countries.php:44 -#@ woocommerce -msgid "Antarctica" -msgstr "" - -#: classes/class-wc-countries.php:45 -#@ woocommerce -msgid "Antigua and Barbuda" -msgstr "" - -#: classes/class-wc-countries.php:46 -#@ woocommerce -msgid "Argentina" -msgstr "" - -#: classes/class-wc-countries.php:47 -#@ woocommerce -msgid "Armenia" -msgstr "" - -#: classes/class-wc-countries.php:48 -#@ woocommerce -msgid "Aruba" -msgstr "" - -#: classes/class-wc-countries.php:49 -#@ woocommerce -msgid "Australia" -msgstr "" - -#: classes/class-wc-countries.php:50 -#@ woocommerce -msgid "Austria" -msgstr "" - -#: classes/class-wc-countries.php:51 -#@ woocommerce -msgid "Azerbaijan" -msgstr "" - -#: classes/class-wc-countries.php:52 -#@ woocommerce -msgid "Bahamas" -msgstr "" - -#: classes/class-wc-countries.php:53 -#@ woocommerce -msgid "Bahrain" -msgstr "" - -#: classes/class-wc-countries.php:54 -#@ woocommerce -msgid "Bangladesh" -msgstr "" - -#: classes/class-wc-countries.php:55 -#@ woocommerce -msgid "Barbados" -msgstr "" - -#: classes/class-wc-countries.php:56 -#@ woocommerce -msgid "Belarus" -msgstr "" - -#: classes/class-wc-countries.php:57 -#@ woocommerce -msgid "Belgium" -msgstr "" - -#: classes/class-wc-countries.php:59 -#@ woocommerce -msgid "Belize" -msgstr "" - -#: classes/class-wc-countries.php:60 -#@ woocommerce -msgid "Benin" -msgstr "" - -#: classes/class-wc-countries.php:61 -#@ woocommerce -msgid "Bermuda" -msgstr "" - -#: classes/class-wc-countries.php:62 -#@ woocommerce -msgid "Bhutan" -msgstr "" - -#: classes/class-wc-countries.php:63 -#@ woocommerce -msgid "Bolivia" -msgstr "" - -#: classes/class-wc-countries.php:64 -#@ woocommerce -msgid "Bonaire, Saint Eustatius and Saba" -msgstr "" - -#: classes/class-wc-countries.php:65 -#@ woocommerce -msgid "Bosnia and Herzegovina" -msgstr "" - -#: classes/class-wc-countries.php:66 -#@ woocommerce -msgid "Botswana" -msgstr "" - -#: classes/class-wc-countries.php:67 -#@ woocommerce -msgid "Bouvet Island" -msgstr "" - -#: classes/class-wc-countries.php:68 -#@ woocommerce -msgid "Brazil" -msgstr "" - -#: classes/class-wc-countries.php:69 -#@ woocommerce -msgid "British Indian Ocean Territory" -msgstr "" - -#: classes/class-wc-countries.php:70 -#@ woocommerce -msgid "British Virgin Islands" -msgstr "" - -#: classes/class-wc-countries.php:71 -#@ woocommerce -msgid "Brunei" -msgstr "" - -#: classes/class-wc-countries.php:72 -#@ woocommerce -msgid "Bulgaria" -msgstr "" - -#: classes/class-wc-countries.php:73 -#@ woocommerce -msgid "Burkina Faso" -msgstr "" - -#: classes/class-wc-countries.php:74 -#@ woocommerce -msgid "Burundi" -msgstr "" - -#: classes/class-wc-countries.php:75 -#@ woocommerce -msgid "Cambodia" -msgstr "" - -#: classes/class-wc-countries.php:76 -#@ woocommerce -msgid "Cameroon" -msgstr "" - -#: classes/class-wc-countries.php:77 -#@ woocommerce -msgid "Canada" -msgstr "" - -#: classes/class-wc-countries.php:78 -#@ woocommerce -msgid "Cape Verde" -msgstr "" - -#: classes/class-wc-countries.php:79 -#@ woocommerce -msgid "Cayman Islands" -msgstr "" - -#: classes/class-wc-countries.php:80 -#@ woocommerce -msgid "Central African Republic" -msgstr "" - -#: classes/class-wc-countries.php:81 -#@ woocommerce -msgid "Chad" -msgstr "" - -#: classes/class-wc-countries.php:82 -#@ woocommerce -msgid "Chile" -msgstr "" - -#: classes/class-wc-countries.php:83 -#@ woocommerce -msgid "China" -msgstr "" - -#: classes/class-wc-countries.php:84 -#@ woocommerce -msgid "Christmas Island" -msgstr "" - -#: classes/class-wc-countries.php:85 -#@ woocommerce -msgid "Cocos (Keeling) Islands" -msgstr "" - -#: classes/class-wc-countries.php:86 -#@ woocommerce -msgid "Colombia" -msgstr "" - -#: classes/class-wc-countries.php:87 -#@ woocommerce -msgid "Comoros" -msgstr "" - -#: classes/class-wc-countries.php:88 -#@ woocommerce -msgid "Congo (Brazzaville)" -msgstr "" - -#: classes/class-wc-countries.php:89 -#@ woocommerce -msgid "Congo (Kinshasa)" -msgstr "" - -#: classes/class-wc-countries.php:90 -#@ woocommerce -msgid "Cook Islands" -msgstr "" - -#: classes/class-wc-countries.php:91 -#@ woocommerce -msgid "Costa Rica" -msgstr "" - -#: classes/class-wc-countries.php:92 -#@ woocommerce -msgid "Croatia" -msgstr "" - -#: classes/class-wc-countries.php:93 -#@ woocommerce -msgid "Cuba" -msgstr "" - -#: classes/class-wc-countries.php:94 -#@ woocommerce -msgid "CuraÇao" -msgstr "" - -#: classes/class-wc-countries.php:95 -#@ woocommerce -msgid "Cyprus" -msgstr "" - -#: classes/class-wc-countries.php:96 -#@ woocommerce -msgid "Czech Republic" -msgstr "" - -#: classes/class-wc-countries.php:97 -#@ woocommerce -msgid "Denmark" -msgstr "" - -#: classes/class-wc-countries.php:98 -#@ woocommerce -msgid "Djibouti" -msgstr "" - -#: classes/class-wc-countries.php:99 -#@ woocommerce -msgid "Dominica" -msgstr "" - -#: classes/class-wc-countries.php:100 -#@ woocommerce -msgid "Dominican Republic" -msgstr "" - -#: classes/class-wc-countries.php:101 -#@ woocommerce -msgid "Ecuador" -msgstr "" - -#: classes/class-wc-countries.php:102 -#@ woocommerce -msgid "Egypt" -msgstr "" - -#: classes/class-wc-countries.php:103 -#@ woocommerce -msgid "El Salvador" -msgstr "" - -#: classes/class-wc-countries.php:104 -#@ woocommerce -msgid "Equatorial Guinea" -msgstr "" - -#: classes/class-wc-countries.php:105 -#@ woocommerce -msgid "Eritrea" -msgstr "" - -#: classes/class-wc-countries.php:106 -#@ woocommerce -msgid "Estonia" -msgstr "" - -#: classes/class-wc-countries.php:107 -#@ woocommerce -msgid "Ethiopia" -msgstr "" - -#: classes/class-wc-countries.php:108 -#@ woocommerce -msgid "Falkland Islands" -msgstr "" - -#: classes/class-wc-countries.php:109 -#@ woocommerce -msgid "Faroe Islands" -msgstr "" - -#: classes/class-wc-countries.php:110 -#@ woocommerce -msgid "Fiji" -msgstr "" - -#: classes/class-wc-countries.php:111 -#@ woocommerce -msgid "Finland" -msgstr "" - -#: classes/class-wc-countries.php:112 -#@ woocommerce -msgid "France" -msgstr "" - -#: classes/class-wc-countries.php:113 -#@ woocommerce -msgid "French Guiana" -msgstr "" - -#: classes/class-wc-countries.php:114 -#@ woocommerce -msgid "French Polynesia" -msgstr "" - -#: classes/class-wc-countries.php:115 -#@ woocommerce -msgid "French Southern Territories" -msgstr "" - -#: classes/class-wc-countries.php:116 -#@ woocommerce -msgid "Gabon" -msgstr "" - -#: classes/class-wc-countries.php:117 -#@ woocommerce -msgid "Gambia" -msgstr "" - -#: classes/class-wc-countries.php:118 -#: i18n/states/US.php:23 -#@ woocommerce -msgid "Georgia" -msgstr "" - -#: classes/class-wc-countries.php:119 -#@ woocommerce -msgid "Germany" -msgstr "" - -#: classes/class-wc-countries.php:120 -#@ woocommerce -msgid "Ghana" -msgstr "" - -#: classes/class-wc-countries.php:121 -#@ woocommerce -msgid "Gibraltar" -msgstr "" - -#: classes/class-wc-countries.php:122 -#@ woocommerce -msgid "Greece" -msgstr "" - -#: classes/class-wc-countries.php:123 -#@ woocommerce -msgid "Greenland" -msgstr "" - -#: classes/class-wc-countries.php:124 -#@ woocommerce -msgid "Grenada" -msgstr "" - -#: classes/class-wc-countries.php:125 -#@ woocommerce -msgid "Guadeloupe" -msgstr "" - -#: i18n/states/US.php:68 -#@ woocommerce -msgid "Guam" -msgstr "" - -#: classes/class-wc-countries.php:126 -#@ woocommerce -msgid "Guatemala" -msgstr "" - -#: classes/class-wc-countries.php:127 -#@ woocommerce -msgid "Guernsey" -msgstr "" - -#: classes/class-wc-countries.php:128 -#@ woocommerce -msgid "Guinea" -msgstr "" - -#: classes/class-wc-countries.php:129 -#@ woocommerce -msgid "Guinea-Bissau" -msgstr "" - -#: classes/class-wc-countries.php:130 -#@ woocommerce -msgid "Guyana" -msgstr "" - -#: classes/class-wc-countries.php:131 -#@ woocommerce -msgid "Haiti" -msgstr "" - -#: classes/class-wc-countries.php:132 -#@ woocommerce -msgid "Heard Island and McDonald Islands" -msgstr "" - -#: classes/class-wc-countries.php:133 -#@ woocommerce -msgid "Honduras" -msgstr "" - -#: classes/class-wc-countries.php:134 -#@ woocommerce -msgid "Hong Kong" -msgstr "" - -#: classes/class-wc-countries.php:135 -#@ woocommerce -msgid "Hungary" -msgstr "" - -#: classes/class-wc-countries.php:136 -#@ woocommerce -msgid "Iceland" -msgstr "" - -#: classes/class-wc-countries.php:137 -#@ woocommerce -msgid "India" -msgstr "" - -#: classes/class-wc-countries.php:138 -#@ woocommerce -msgid "Indonesia" -msgstr "" - -#: classes/class-wc-countries.php:139 -#@ woocommerce -msgid "Iran" -msgstr "" - -#: classes/class-wc-countries.php:140 -#@ woocommerce -msgid "Iraq" -msgstr "" - -#: classes/class-wc-countries.php:141 -#@ woocommerce -msgid "Republic of Ireland" -msgstr "" - -#: classes/class-wc-countries.php:142 -#@ woocommerce -msgid "Isle of Man" -msgstr "" - -#: classes/class-wc-countries.php:143 -#@ woocommerce -msgid "Israel" -msgstr "" - -#: classes/class-wc-countries.php:144 -#@ woocommerce -msgid "Italy" -msgstr "" - -#: classes/class-wc-countries.php:145 -#@ woocommerce -msgid "Ivory Coast" -msgstr "" - -#: classes/class-wc-countries.php:146 -#@ woocommerce -msgid "Jamaica" -msgstr "" - -#: classes/class-wc-countries.php:147 -#@ woocommerce -msgid "Japan" -msgstr "" - -#: classes/class-wc-countries.php:148 -#@ woocommerce -msgid "Jersey" -msgstr "" - -#: classes/class-wc-countries.php:149 -#@ woocommerce -msgid "Jordan" -msgstr "" - -#: classes/class-wc-countries.php:150 -#@ woocommerce -msgid "Kazakhstan" -msgstr "" - -#: classes/class-wc-countries.php:151 -#@ woocommerce -msgid "Kenya" -msgstr "" - -#: classes/class-wc-countries.php:152 -#@ woocommerce -msgid "Kiribati" -msgstr "" - -#: classes/class-wc-countries.php:153 -#@ woocommerce -msgid "Kuwait" -msgstr "" - -#: classes/class-wc-countries.php:154 -#@ woocommerce -msgid "Kyrgyzstan" -msgstr "" - -#: classes/class-wc-countries.php:155 -#@ woocommerce -msgid "Laos" -msgstr "" - -#: classes/class-wc-countries.php:156 -#@ woocommerce -msgid "Latvia" -msgstr "" - -#: classes/class-wc-countries.php:157 -#@ woocommerce -msgid "Lebanon" -msgstr "" - -#: classes/class-wc-countries.php:158 -#@ woocommerce -msgid "Lesotho" -msgstr "" - -#: classes/class-wc-countries.php:159 -#@ woocommerce -msgid "Liberia" -msgstr "" - -#: classes/class-wc-countries.php:160 -#@ woocommerce -msgid "Libya" -msgstr "" - -#: classes/class-wc-countries.php:161 -#@ woocommerce -msgid "Liechtenstein" -msgstr "" - -#: classes/class-wc-countries.php:162 -#@ woocommerce -msgid "Lithuania" -msgstr "" - -#: classes/class-wc-countries.php:163 -#@ woocommerce -msgid "Luxembourg" -msgstr "" - -#: classes/class-wc-countries.php:164 -#@ woocommerce -msgid "Macao S.A.R., China" -msgstr "" - -#: classes/class-wc-countries.php:165 -#@ woocommerce -msgid "Macedonia" -msgstr "" - -#: classes/class-wc-countries.php:166 -#@ woocommerce -msgid "Madagascar" -msgstr "" - -#: classes/class-wc-countries.php:167 -#@ woocommerce -msgid "Malawi" -msgstr "" - -#: classes/class-wc-countries.php:168 -#@ woocommerce -msgid "Malaysia" -msgstr "" - -#: classes/class-wc-countries.php:169 -#@ woocommerce -msgid "Maldives" -msgstr "" - -#: classes/class-wc-countries.php:170 -#@ woocommerce -msgid "Mali" -msgstr "" - -#: classes/class-wc-countries.php:171 -#@ woocommerce -msgid "Malta" -msgstr "" - -#: classes/class-wc-countries.php:172 -#@ woocommerce -msgid "Marshall Islands" -msgstr "" - -#: classes/class-wc-countries.php:173 -#@ woocommerce -msgid "Martinique" -msgstr "" - -#: classes/class-wc-countries.php:174 -#@ woocommerce -msgid "Mauritania" -msgstr "" - -#: classes/class-wc-countries.php:175 -#@ woocommerce -msgid "Mauritius" -msgstr "" - -#: classes/class-wc-countries.php:176 -#@ woocommerce -msgid "Mayotte" -msgstr "" - -#: classes/class-wc-countries.php:177 -#@ woocommerce -msgid "Mexico" -msgstr "" - -#: classes/class-wc-countries.php:178 -#@ woocommerce -msgid "Micronesia" -msgstr "" - -#: classes/class-wc-countries.php:179 -#@ woocommerce -msgid "Moldova" -msgstr "" - -#: classes/class-wc-countries.php:180 -#@ woocommerce -msgid "Monaco" -msgstr "" - -#: classes/class-wc-countries.php:181 -#@ woocommerce -msgid "Mongolia" -msgstr "" - -#: classes/class-wc-countries.php:182 -#@ woocommerce -msgid "Montenegro" -msgstr "" - -#: classes/class-wc-countries.php:183 -#@ woocommerce -msgid "Montserrat" -msgstr "" - -#: classes/class-wc-countries.php:184 -#@ woocommerce -msgid "Morocco" -msgstr "" - -#: classes/class-wc-countries.php:185 -#@ woocommerce -msgid "Mozambique" -msgstr "" - -#: classes/class-wc-countries.php:186 -#@ woocommerce -msgid "Myanmar" -msgstr "" - -#: classes/class-wc-countries.php:187 -#@ woocommerce -msgid "Namibia" -msgstr "" - -#: classes/class-wc-countries.php:188 -#@ woocommerce -msgid "Nauru" -msgstr "" - -#: classes/class-wc-countries.php:189 -#@ woocommerce -msgid "Nepal" -msgstr "" - -#: classes/class-wc-countries.php:190 -#@ woocommerce -msgid "Netherlands" -msgstr "" - -#: classes/class-wc-countries.php:191 -#@ woocommerce -msgid "Netherlands Antilles" -msgstr "" - -#: classes/class-wc-countries.php:192 -#@ woocommerce -msgid "New Caledonia" -msgstr "" - -#: classes/class-wc-countries.php:193 -#@ woocommerce -msgid "New Zealand" -msgstr "" - -#: classes/class-wc-countries.php:194 -#@ woocommerce -msgid "Nicaragua" -msgstr "" - -#: classes/class-wc-countries.php:195 -#@ woocommerce -msgid "Niger" -msgstr "" - -#: classes/class-wc-countries.php:196 -#@ woocommerce -msgid "Nigeria" -msgstr "" - -#: classes/class-wc-countries.php:197 -#@ woocommerce -msgid "Niue" -msgstr "" - -#: classes/class-wc-countries.php:198 -#@ woocommerce -msgid "Norfolk Island" -msgstr "" - -#: classes/class-wc-countries.php:199 -#@ woocommerce -msgid "North Korea" -msgstr "" - -#: i18n/states/US.php:69 -#@ woocommerce -msgid "Northern Mariana Islands" -msgstr "" - -#: classes/class-wc-countries.php:200 -#@ woocommerce -msgid "Norway" -msgstr "" - -#: classes/class-wc-countries.php:201 -#@ woocommerce -msgid "Oman" -msgstr "" - -#: classes/class-wc-countries.php:202 -#@ woocommerce -msgid "Pakistan" -msgstr "" - -#: classes/class-wc-countries.php:203 -#@ woocommerce -msgid "Palestinian Territory" -msgstr "" - -#: classes/class-wc-countries.php:204 -#@ woocommerce -msgid "Panama" -msgstr "" - -#: classes/class-wc-countries.php:205 -#@ woocommerce -msgid "Papua New Guinea" -msgstr "" - -#: classes/class-wc-countries.php:206 -#@ woocommerce -msgid "Paraguay" -msgstr "" - -#: classes/class-wc-countries.php:207 -#@ woocommerce -msgid "Peru" -msgstr "" - -#: classes/class-wc-countries.php:208 -#@ woocommerce -msgid "Philippines" -msgstr "" - -#: classes/class-wc-countries.php:209 -#@ woocommerce -msgid "Pitcairn" -msgstr "" - -#: classes/class-wc-countries.php:210 -#@ woocommerce -msgid "Poland" -msgstr "" - -#: classes/class-wc-countries.php:211 -#@ woocommerce -msgid "Portugal" -msgstr "" - -#: i18n/states/US.php:70 -#@ woocommerce -msgid "Puerto Rico" -msgstr "" - -#: classes/class-wc-countries.php:212 -#@ woocommerce -msgid "Qatar" -msgstr "" - -#: classes/class-wc-countries.php:213 -#@ woocommerce -msgid "Reunion" -msgstr "" - -#: classes/class-wc-countries.php:214 -#@ woocommerce -msgid "Romania" -msgstr "" - -#: classes/class-wc-countries.php:215 -#@ woocommerce -msgid "Russia" -msgstr "" - -#: classes/class-wc-countries.php:216 -#@ woocommerce -msgid "Rwanda" -msgstr "" - -#: classes/class-wc-countries.php:217 -#@ woocommerce -msgid "Saint Barthélemy" -msgstr "" - -#: classes/class-wc-countries.php:218 -#@ woocommerce -msgid "Saint Helena" -msgstr "" - -#: classes/class-wc-countries.php:219 -#@ woocommerce -msgid "Saint Kitts and Nevis" -msgstr "" - -#: classes/class-wc-countries.php:220 -#@ woocommerce -msgid "Saint Lucia" -msgstr "" - -#: classes/class-wc-countries.php:221 -#@ woocommerce -msgid "Saint Martin (French part)" -msgstr "" - -#: classes/class-wc-countries.php:222 -#@ woocommerce -msgid "Saint Martin (Dutch part)" -msgstr "" - -#: classes/class-wc-countries.php:223 -#@ woocommerce -msgid "Saint Pierre and Miquelon" -msgstr "" - -#: classes/class-wc-countries.php:224 -#@ woocommerce -msgid "Saint Vincent and the Grenadines" -msgstr "" - -#: classes/class-wc-countries.php:225 -#@ woocommerce -msgid "Samoa" -msgstr "" - -#: classes/class-wc-countries.php:226 -#@ woocommerce -msgid "San Marino" -msgstr "" - -#: classes/class-wc-countries.php:227 -#@ woocommerce -msgid "São Tomé and Príncipe" -msgstr "" - -#: classes/class-wc-countries.php:228 -#@ woocommerce -msgid "Saudi Arabia" -msgstr "" - -#: classes/class-wc-countries.php:229 -#@ woocommerce -msgid "Senegal" -msgstr "" - -#: classes/class-wc-countries.php:230 -#@ woocommerce -msgid "Serbia" -msgstr "" - -#: classes/class-wc-countries.php:231 -#@ woocommerce -msgid "Seychelles" -msgstr "" - -#: classes/class-wc-countries.php:232 -#@ woocommerce -msgid "Sierra Leone" -msgstr "" - -#: classes/class-wc-countries.php:233 -#@ woocommerce -msgid "Singapore" -msgstr "" - -#: classes/class-wc-countries.php:234 -#@ woocommerce -msgid "Slovakia" -msgstr "" - -#: classes/class-wc-countries.php:235 -#@ woocommerce -msgid "Slovenia" -msgstr "" - -#: classes/class-wc-countries.php:236 -#@ woocommerce -msgid "Solomon Islands" -msgstr "" - -#: classes/class-wc-countries.php:237 -#@ woocommerce -msgid "Somalia" -msgstr "" - -#: classes/class-wc-countries.php:238 -#@ woocommerce -msgid "South Africa" -msgstr "" - -#: classes/class-wc-countries.php:239 -#@ woocommerce -msgid "South Georgia/Sandwich Islands" -msgstr "" - -#: classes/class-wc-countries.php:240 -#@ woocommerce -msgid "South Korea" -msgstr "" - -#: classes/class-wc-countries.php:241 -#@ woocommerce -msgid "South Sudan" -msgstr "" - -#: classes/class-wc-countries.php:242 -#@ woocommerce -msgid "Spain" -msgstr "" - -#: classes/class-wc-countries.php:243 -#@ woocommerce -msgid "Sri Lanka" -msgstr "" - -#: classes/class-wc-countries.php:244 -#@ woocommerce -msgid "Sudan" -msgstr "" - -#: classes/class-wc-countries.php:245 -#@ woocommerce -msgid "Suriname" -msgstr "" - -#: classes/class-wc-countries.php:246 -#@ woocommerce -msgid "Svalbard and Jan Mayen" -msgstr "" - -#: classes/class-wc-countries.php:247 -#@ woocommerce -msgid "Swaziland" -msgstr "" - -#: classes/class-wc-countries.php:248 -#@ woocommerce -msgid "Sweden" -msgstr "" - -#: classes/class-wc-countries.php:249 -#@ woocommerce -msgid "Switzerland" -msgstr "" - -#: classes/class-wc-countries.php:250 -#@ woocommerce -msgid "Syria" -msgstr "" - -#: classes/class-wc-countries.php:251 -#@ woocommerce -msgid "Taiwan" -msgstr "" - -#: classes/class-wc-countries.php:252 -#@ woocommerce -msgid "Tajikistan" -msgstr "" - -#: classes/class-wc-countries.php:253 -#@ woocommerce -msgid "Tanzania" -msgstr "" - -#: classes/class-wc-countries.php:254 -#@ woocommerce -msgid "Thailand" -msgstr "" - -#: classes/class-wc-countries.php:255 -#@ woocommerce -msgid "Timor-Leste" -msgstr "" - -#: classes/class-wc-countries.php:256 -#@ woocommerce -msgid "Togo" -msgstr "" - -#: classes/class-wc-countries.php:257 -#@ woocommerce -msgid "Tokelau" -msgstr "" - -#: classes/class-wc-countries.php:258 -#@ woocommerce -msgid "Tonga" -msgstr "" - -#: classes/class-wc-countries.php:259 -#@ woocommerce -msgid "Trinidad and Tobago" -msgstr "" - -#: classes/class-wc-countries.php:260 -#@ woocommerce -msgid "Tunisia" -msgstr "" - -#: classes/class-wc-countries.php:261 -#@ woocommerce -msgid "Turkey" -msgstr "" - -#: classes/class-wc-countries.php:262 -#@ woocommerce -msgid "Turkmenistan" -msgstr "" - -#: classes/class-wc-countries.php:263 -#@ woocommerce -msgid "Turks and Caicos Islands" -msgstr "" - -#: classes/class-wc-countries.php:264 -#@ woocommerce -msgid "Tuvalu" -msgstr "" - -#: i18n/states/US.php:71 -#@ woocommerce -msgid "US Minor Outlying Islands" -msgstr "" - -#: classes/class-wc-countries.php:265 -#@ woocommerce -msgid "Uganda" -msgstr "" - -#: classes/class-wc-countries.php:266 -#@ woocommerce -msgid "Ukraine" -msgstr "" - -#: classes/class-wc-countries.php:267 -#@ woocommerce -msgid "United Arab Emirates" -msgstr "" - -#: classes/class-wc-countries.php:268 -#@ woocommerce -msgid "United Kingdom" -msgstr "" - -#: classes/class-wc-countries.php:269 -#@ woocommerce -msgid "United States" -msgstr "" - -#: classes/class-wc-countries.php:270 -#@ woocommerce -msgid "Uruguay" -msgstr "" - -#: classes/class-wc-countries.php:271 -#@ woocommerce -msgid "Uzbekistan" -msgstr "" - -#: classes/class-wc-countries.php:272 -#@ woocommerce -msgid "Vanuatu" -msgstr "" - -#: classes/class-wc-countries.php:273 -#@ woocommerce -msgid "Vatican" -msgstr "" - -#: classes/class-wc-countries.php:274 -#@ woocommerce -msgid "Venezuela" -msgstr "" - -#: classes/class-wc-countries.php:275 -#@ woocommerce -msgid "Vietnam" -msgstr "" - -#: classes/class-wc-countries.php:276 -#@ woocommerce -msgid "Wallis and Futuna" -msgstr "" - -#: classes/class-wc-countries.php:277 -#@ woocommerce -msgid "Western Sahara" -msgstr "" - -#: classes/class-wc-countries.php:278 -#@ woocommerce -msgid "Yemen" -msgstr "" - -#: classes/class-wc-countries.php:279 -#@ woocommerce -msgid "Zambia" -msgstr "" - -#: classes/class-wc-countries.php:280 -#@ woocommerce -msgid "Zimbabwe" -msgstr "" - -#: classes/class-wc-countries.php:418 -#@ woocommerce -msgid "to the" -msgstr "" - -#: classes/class-wc-countries.php:419 -#@ woocommerce -msgid "to" -msgstr "" - -#: classes/class-wc-countries.php:432 -#@ woocommerce -msgid "the" -msgstr "" - -#: classes/class-wc-countries.php:444 -#@ woocommerce -msgid "VAT" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:352 -#: admin/settings/settings-tax-rates.php:387 -#: admin/settings/settings-tax-rates.php:466 -#: admin/woocommerce-admin-content.php:48 -#: admin/woocommerce-admin-settings.php:184 -#: classes/class-wc-countries.php:444 -#: templates/cart/totals.php:110 -#: templates/checkout/review-order.php:113 -#@ woocommerce -msgid "Tax" -msgstr "" - -#: classes/class-wc-countries.php:457 -#@ woocommerce -msgid "(incl. VAT)" -msgstr "" - -#: classes/class-wc-countries.php:457 -#@ woocommerce -msgid "(incl. tax)" -msgstr "" - -#: classes/class-wc-countries.php:470 -#@ woocommerce -msgid "(ex. VAT)" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:549 -#: classes/class-wc-countries.php:470 -#@ woocommerce -msgid "(ex. tax)" -msgstr "" - -#: classes/class-wc-countries.php:694 -#: classes/class-wc-countries.php:704 -#: classes/class-wc-countries.php:724 -#: classes/class-wc-countries.php:779 -#: classes/class-wc-countries.php:803 -#: classes/class-wc-countries.php:848 -#: classes/class-wc-countries.php:872 -#@ woocommerce -msgid "Province" -msgstr "" - -#: classes/class-wc-countries.php:710 -#@ woocommerce -msgid "Canton" -msgstr "" - -#: classes/class-wc-countries.php:719 -#: classes/class-wc-countries.php:854 -#@ woocommerce -msgid "Municipality" -msgstr "" - -#: classes/class-wc-countries.php:766 -#@ woocommerce -msgid "Town / District" -msgstr "" - -#: classes/class-wc-countries.php:769 -#@ woocommerce -msgid "Region" -msgstr "" - -#: classes/class-wc-countries.php:877 -#@ woocommerce -msgid "Zip" -msgstr "" - -#: classes/class-wc-countries.php:880 -#@ woocommerce -msgid "State" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:168 -#: admin/post-types/writepanels/writepanel-order_data.php:258 -#: admin/woocommerce-admin-users.php:171 -#: admin/woocommerce-admin-users.php:220 -#: classes/class-wc-countries.php:885 -#: templates/cart/shipping-calculator.php:68 -#@ woocommerce -msgid "Postcode" -msgstr "" - -#: classes/class-wc-countries.php:888 -#@ woocommerce -msgid "County" -msgstr "" - -#: classes/class-wc-countries.php:920 -#: classes/class-wc-countries.php:921 -#: classes/class-wc-countries.php:996 -#: templates/cart/shipping-calculator.php:68 -#@ woocommerce -msgid "Postcode / Zip" -msgstr "" - -#: classes/class-wc-countries.php:925 -#: classes/class-wc-countries.php:926 -#: classes/class-wc-countries.php:985 -#@ woocommerce -msgid "Town / City" -msgstr "" - -#: classes/class-wc-countries.php:930 -#: classes/class-wc-countries.php:931 -#: classes/class-wc-countries.php:991 -#@ woocommerce -msgid "State / County" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:172 -#: admin/post-types/writepanels/writepanel-order_data.php:262 -#: admin/woocommerce-admin-users.php:179 -#: admin/woocommerce-admin-users.php:228 -#: classes/class-wc-countries.php:955 -#@ woocommerce -msgid "Country" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:144 -#: admin/post-types/writepanels/writepanel-order_data.php:234 -#: classes/class-wc-countries.php:960 -#@ woocommerce -msgid "First Name" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:148 -#: admin/post-types/writepanels/writepanel-order_data.php:238 -#: classes/class-wc-countries.php:965 -#@ woocommerce -msgid "Last Name" -msgstr "" - -#: classes/class-wc-countries.php:971 -#@ woocommerce -msgid "Company Name" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:193 -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#: admin/post-types/writepanels/writepanel-order_data.php:277 -#: admin/post-types/writepanels/writepanel-order_data.php:279 -#: classes/class-wc-countries.php:975 -#@ woocommerce -msgid "Address" -msgstr "" - -#: classes/class-wc-countries.php:976 -#@ woocommerce -msgctxt "placeholder" -msgid "Street address" -msgstr "" - -#: classes/class-wc-countries.php:981 -#@ woocommerce -msgctxt "placeholder" -msgid "Apartment, suite, unit etc. (optional)" -msgstr "" - -#: classes/class-wc-countries.php:1038 -#@ woocommerce -msgid "Email Address" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:185 -#: classes/class-wc-countries.php:1044 -#@ woocommerce -msgid "Phone" -msgstr "" - -#: classes/class-wc-coupon.php:459 -#@ woocommerce -msgid "Coupon usage limit has been reached." -msgstr "" - -#: classes/class-wc-coupon.php:462 -#@ woocommerce -msgid "This coupon has expired." -msgstr "" - -#: classes/class-wc-coupon.php:465 -#, php-format -#@ woocommerce -msgid "The minimum spend for this coupon is %s." -msgstr "" - -#: classes/class-wc-coupon.php:468 -#@ woocommerce -msgid "Sorry, this coupon is not applicable to your cart contents." -msgstr "Sorry, this coupon is not applicable to your basket contents." - -#: classes/class-wc-customer.php:628 -#: classes/class-wc-customer.php:638 -#, php-format -#@ woocommerce -msgid "File %d" -msgstr "" - -#: classes/class-wc-emails.php:246 -#@ woocommerce -msgid "Note" -msgstr "" - -#: classes/class-wc-emails.php:281 -#@ woocommerce -msgid "Product low in stock" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:623 -#: classes/class-wc-emails.php:286 -#: classes/class-wc-emails.php:318 -#: classes/class-wc-emails.php:362 -#, php-format -#@ woocommerce -msgid "Variation #%s of %s" -msgstr "" - -#: classes/class-wc-emails.php:288 -#: classes/class-wc-emails.php:320 -#: classes/class-wc-emails.php:364 -#, php-format -#@ woocommerce -msgid "Product #%s - %s" -msgstr "" - -#: classes/class-wc-emails.php:290 -#@ woocommerce -msgid "is low in stock." -msgstr "" - -#: classes/class-wc-emails.php:313 -#@ woocommerce -msgid "Product out of stock" -msgstr "" - -#: classes/class-wc-emails.php:322 -#@ woocommerce -msgid "is out of stock." -msgstr "" - -#: classes/class-wc-emails.php:357 -#@ woocommerce -msgid "Product Backorder" -msgstr "" - -#: classes/class-wc-emails.php:366 -#, php-format -#@ woocommerce -msgid "%s units of %s have been backordered in order #%s." -msgstr "" - -#: classes/class-wc-order.php:283 -#@ woocommerce -msgctxt "hash before order number" -msgid "#" -msgstr "" - -#: classes/class-wc-order.php:858 -#, php-format -#@ woocommerce -msgid " %svia %s" -msgstr "" - -#: classes/class-wc-order.php:923 -#@ woocommerce -msgid "Cart Subtotal:" -msgstr "Basket Subtotal:" - -#: admin/post-types/writepanels/writepanel-order_data.php:499 -#: classes/class-wc-order.php:929 -#@ woocommerce -msgid "Cart Discount:" -msgstr "Basket Discount:" - -#: classes/class-wc-order.php:935 -#@ woocommerce -msgid "Shipping:" -msgstr "" - -#: classes/class-wc-order.php:980 -#@ woocommerce -msgid "Subtotal:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:507 -#: classes/class-wc-order.php:1006 -#@ woocommerce -msgid "Order Discount:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:653 -#: classes/class-wc-order.php:1011 -#@ woocommerce -msgid "Order Total:" -msgstr "" - -#: classes/class-wc-order.php:1034 -#: templates/cart/totals.php:145 -#: templates/checkout/review-order.php:151 -#, php-format -#@ woocommerce -msgid "(Includes %s)" -msgstr "" - -#. translators: plugin header field 'Name' -#: admin/woocommerce-admin-content.php:83 -#: admin/woocommerce-admin-init.php:62 -#: classes/class-wc-order.php:1183 -#: classes/class-wc-order.php:1185 -#: classes/class-wc-order.php:1188 -#: woocommerce.php:0 -#@ woocommerce -msgid "WooCommerce" -msgstr "" - -#: classes/class-wc-order.php:1235 -#, php-format -#@ woocommerce -msgid "Order status changed from %s to %s." -msgstr "" - -#: classes/class-wc-order.php:1461 -#: woocommerce-ajax.php:1163 -#: woocommerce-ajax.php:1164 -#, php-format -#@ woocommerce -msgid "Item #%s stock reduced from %s to %s." -msgstr "" - -#: classes/class-wc-order.php:1473 -#@ woocommerce -msgid "Order item stock reduced successfully." -msgstr "" - -#: classes/class-wc-product-external.php:56 -#@ woocommerce -msgid "Buy product" -msgstr "" - -#: admin/settings/settings-init.php:500 -#: classes/class-wc-shortcodes.php:571 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:257 -#: templates/loop/add-to-cart.php:46 -#: templates/single-product/add-to-cart/grouped.php:45 -#: templates/single-product/add-to-cart/grouped.php:75 -#: templates/single-product/add-to-cart/simple.php:42 -#: templates/single-product/add-to-cart/variable.php:78 -#@ woocommerce -msgid "Add to cart" -msgstr "Add to basket" - -#: classes/emails/class-wc-email-customer-completed-order.php:24 -#@ woocommerce -msgid "Completed order" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:25 -#@ woocommerce -msgid "Order complete emails are sent to the customer when the order is marked complete and usual indicates that the order has been shipped." -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:27 -#@ woocommerce -msgid "Your order is complete" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:28 -#@ woocommerce -msgid "Your {blogname} order from {order_date} is complete" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:37 -#@ woocommerce -msgid "Your order is complete - download your files" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:38 -#@ woocommerce -msgid "Your {blogname} order from {order_date} is complete - download your files" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:141 -#: classes/emails/class-wc-email-new-order.php:128 -#@ woocommerce -msgid "Subject" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:148 -#: classes/emails/class-wc-email-new-order.php:135 -#@ woocommerce -msgid "Email Heading" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:155 -#@ woocommerce -msgid "Subject (downloadable)" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:162 -#@ woocommerce -msgid "Email Heading (downloadable)" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:27 -#@ woocommerce -msgid "Customer invoice" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:28 -#@ woocommerce -msgid "Customer invoice emails can be sent to the user containing order info and payment links." -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:33 -#@ woocommerce -msgid "Invoice for order {order_number} from {order_date}" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:34 -#@ woocommerce -msgid "Invoice for order {order_number}" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:36 -#@ woocommerce -msgid "Your {blogname} order from {order_date}" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:37 -#@ woocommerce -msgid "Order {order_number} details" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:158 -#@ woocommerce -msgid "Email subject (paid)" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:165 -#@ woocommerce -msgid "Email heading (paid)" -msgstr "" - -#: classes/emails/class-wc-email-customer-new-account.php:31 -#@ woocommerce -msgid "New account" -msgstr "" - -#: classes/emails/class-wc-email-customer-new-account.php:32 -#@ woocommerce -msgid "Customer new account emails are sent when a customer signs up via the checkout or My Account page." -msgstr "" - -#: classes/emails/class-wc-email-customer-new-account.php:37 -#@ woocommerce -msgid "Your account on {blogname}" -msgstr "" - -#: classes/emails/class-wc-email-customer-new-account.php:38 -#@ woocommerce -msgid "Welcome to {blogname}" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_notes.php:62 -#: classes/emails/class-wc-email-customer-note.php:29 -#@ woocommerce -msgid "Customer note" -msgstr "" - -#: classes/emails/class-wc-email-customer-note.php:30 -#@ woocommerce -msgid "Customer note emails are sent when you add a note to an order." -msgstr "" - -#: classes/emails/class-wc-email-customer-note.php:35 -#@ woocommerce -msgid "Note added to your {blogname} order from {order_date}" -msgstr "" - -#: classes/emails/class-wc-email-customer-note.php:36 -#@ woocommerce -msgid "A note has been added to your order" -msgstr "" - -#: classes/emails/class-wc-email-customer-processing-order.php:24 -#@ woocommerce -msgid "Processing order" -msgstr "" - -#: classes/emails/class-wc-email-customer-processing-order.php:25 -#@ woocommerce -msgid "This is an order notification sent to the customer after payment containing order details." -msgstr "" - -#: classes/emails/class-wc-email-customer-processing-order.php:27 -#@ woocommerce -msgid "Thank you for your order" -msgstr "" - -#: classes/emails/class-wc-email-customer-processing-order.php:28 -#@ woocommerce -msgid "Your {blogname} order receipt from {order_date}" -msgstr "" - -#: classes/emails/class-wc-email-customer-reset-password.php:36 -#@ woocommerce -msgid "Reset password" -msgstr "" - -#: classes/emails/class-wc-email-customer-reset-password.php:37 -#@ woocommerce -msgid "Customer reset password emails are sent when a customer resets their password." -msgstr "" - -#: classes/emails/class-wc-email-customer-reset-password.php:42 -#@ woocommerce -msgid "Password Reset for {blogname}" -msgstr "" - -#: classes/emails/class-wc-email-customer-reset-password.php:43 -#@ woocommerce -msgid "Password Reset Instructions" -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:24 -#@ woocommerce -msgid "New order" -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:25 -#@ woocommerce -msgid "New order emails are sent when an order is received/paid by a customer." -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:27 -#@ woocommerce -msgid "New customer order" -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:28 -#@ woocommerce -msgid "[{blogname}] New customer order ({order_number}) - {order_date}" -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:121 -#@ woocommerce -msgid "Recipient(s)" -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:123 -#, php-format -#@ woocommerce -msgid "Enter recipients (comma separated) for this email. Defaults to %s." -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:130 -#, php-format -#@ woocommerce -msgid "This controls the email subject line. Leave blank to use the default subject: %s." -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:137 -#, php-format -#@ woocommerce -msgid "This controls the main heading contained within the email notification. Leave blank to use the default heading: %s." -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:28 -#@ woocommerce -msgid "Bacs" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:65 -#@ woocommerce -msgid "Enable Bank Transfer" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:69 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:63 -#: classes/gateways/cod/class-wc-gateway-cod.php:87 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:171 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:125 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:104 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:84 -#@ woocommerce -msgid "Title" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:71 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:65 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:173 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:127 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:85 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:83 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:60 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:106 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:86 -#@ woocommerce -msgid "This controls the title which the user sees during checkout." -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:72 -#@ woocommerce -msgid "Direct Bank Transfer" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:76 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:70 -#@ woocommerce -msgid "Customer Message" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:78 -#@ woocommerce -msgid "Give the customer instructions for paying via BACS, and let them know that their order won't be shipping until the money is received." -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:79 -#@ woocommerce -msgid "Make your payment directly into our bank account. Please use your Order ID as the payment reference. Your order wont be shipped until the funds have cleared in our account." -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:82 -#@ woocommerce -msgid "Account Details" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:84 -#@ woocommerce -msgid "Optionally enter your bank details below for customers to pay into." -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:88 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:163 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:203 -#@ woocommerce -msgid "Account Name" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:94 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:164 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:204 -#@ woocommerce -msgid "Account Number" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:100 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:165 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:205 -#@ woocommerce -msgid "Sort Code" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:106 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:166 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:206 -#@ woocommerce -msgid "Bank Name" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:112 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:167 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:207 -#@ woocommerce -msgid "IBAN" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:117 -#@ woocommerce -msgid "BIC (formerly Swift)" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:136 -#@ woocommerce -msgid "BACS Payment" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:137 -#@ woocommerce -msgid "Allows payments by BACS (Bank Account Clearing System), more commonly known as direct bank/wire transfer." -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:158 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:200 -#@ woocommerce -msgid "Our Details" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:168 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:208 -#@ woocommerce -msgid "BIC" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:234 -#@ woocommerce -msgid "Awaiting BACS payment" -msgstr "" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:28 -#@ woocommerce -msgid "Cheque" -msgstr "" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:59 -#@ woocommerce -msgid "Enable Cheque Payment" -msgstr "" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:66 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:90 -#@ woocommerce -msgid "Cheque Payment" -msgstr "" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:72 -#@ woocommerce -msgid "Let the customer know the payee and where they should be sending the cheque to and that their order won't be shipping until you receive it." -msgstr "" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:73 -#@ woocommerce -msgid "Please send your cheque to Store Name, Store Street, Store Town, Store State / County, Store Postcode." -msgstr "" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:91 -#@ woocommerce -msgid "Allows cheque payments. Why would you take cheques in this day and age? Well you probably wouldn't but it does allow you to make test purchases for testing order emails and the 'success' pages etc." -msgstr "" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:147 -#@ woocommerce -msgid "Awaiting cheque payment" -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:27 -#: classes/gateways/cod/class-wc-gateway-cod.php:54 -#: classes/gateways/cod/class-wc-gateway-cod.php:90 -#@ woocommerce -msgid "Cash on Delivery" -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:55 -#@ woocommerce -msgid "Have your customers pay with cash (or by other means) upon delivery." -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:80 -#@ woocommerce -msgid "Enable COD" -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:81 -#@ woocommerce -msgid "Enable Cash on Delivery" -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:89 -#@ woocommerce -msgid "Payment method title that the customer will see on your website." -msgstr "" - -#: admin/post-types/shop_coupon.php:28 -#: classes/gateways/cod/class-wc-gateway-cod.php:94 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:178 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:132 -#: woocommerce-template.php:748 -#@ woocommerce -msgid "Description" -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:96 -#@ woocommerce -msgid "Payment method description that the customer will see on your website." -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:100 -#@ woocommerce -msgid "Instructions" -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:102 -#@ woocommerce -msgid "Instructions that will be added to the thank you page." -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:106 -#@ woocommerce -msgid "Enable for shipping methods" -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:111 -#@ woocommerce -msgid "If COD is only available for certain methods, set it up here. Leave blank to enable for all methods." -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:176 -#@ woocommerce -msgid "Payment to be made upon delivery." -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:31 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:196 -#@ woocommerce -msgid "Mijireh Checkout" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:143 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:321 -#@ woocommerce -msgid "Mijireh error:" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:160 -#@ woocommerce -msgid "Enable Mijireh Checkout" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:164 -#@ woocommerce -msgid "Access Key" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:166 -#@ woocommerce -msgid "The Mijireh access key for your store." -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:174 -#@ woocommerce -msgid "Credit Card" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:180 -#@ woocommerce -msgid "Pay securely with you credit card." -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:181 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:134 -#@ woocommerce -msgid "This controls the description which the user sees during checkout." -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:200 -#@ woocommerce -msgid "Get started with Mijireh Checkout" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:201 -#@ woocommerce -msgid "provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site. Mijireh supports a wide variety of payment gateways: Stripe, Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and more." -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:203 -#@ woocommerce -msgid "Join for free" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:203 -#@ woocommerce -msgid "Learn more about WooCommerce and Mijireh" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:207 -#@ woocommerce -msgid "provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:34 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:128 -#@ woocommerce -msgid "PayPal" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:90 -#@ woocommerce -msgid "PayPal standard" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:91 -#@ woocommerce -msgid "PayPal standard works by sending the user to PayPal to enter their payment information." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:103 -#@ woocommerce -msgid "Gateway Disabled" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:103 -#@ woocommerce -msgid "PayPal does not support your store currency." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:121 -#@ woocommerce -msgid "Enable PayPal standard" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:135 -#@ woocommerce -msgid "Pay via PayPal; you can pay with your credit card if you don't have a PayPal account" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:138 -#@ woocommerce -msgid "PayPal Email" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:140 -#@ woocommerce -msgid "Please enter your PayPal email address; this is needed in order to take payment." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:146 -#@ woocommerce -msgid "Invoice Prefix" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:153 -#@ woocommerce -msgid "Submission method" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:155 -#@ woocommerce -msgid "Use form submission method." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:156 -#@ woocommerce -msgid "Enable this to post order data to PayPal via a form instead of using a redirect/querystring." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:160 -#@ woocommerce -msgid "Page Style" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:162 -#@ woocommerce -msgid "Optionally enter the name of the page style you wish to use. These are defined within your PayPal account." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:168 -#@ woocommerce -msgid "Shipping options" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:173 -#@ woocommerce -msgid "Shipping details" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:175 -#@ woocommerce -msgid "Send shipping details to PayPal instead of billing." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:177 -#@ woocommerce -msgid "PayPal allows us to send 1 address. If you are using PayPal for shipping labels you may prefer to send the shipping address rather than billing." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:181 -#@ woocommerce -msgid "Address override" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:183 -#@ woocommerce -msgid "Enable \"address_override\" to prevent address information from being changed." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:184 -#@ woocommerce -msgid "PayPal verifies addresses therefore this setting can cause errors (we recommend keeping it disabled)." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:188 -#@ woocommerce -msgid "Gateway Testing" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:193 -#@ woocommerce -msgid "PayPal sandbox" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:195 -#@ woocommerce -msgid "Enable PayPal sandbox" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:197 -#, php-format -#@ woocommerce -msgid "PayPal sandbox can be used to test payments. Sign up for a developer account here." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:200 -#@ woocommerce -msgid "Debug Log" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:202 -#@ woocommerce -msgid "Enable logging" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:204 -#@ default -msgid "Log PayPal events, such as IPN requests, inside woocommerce/logs/paypal.txt" -msgstr "" - -#: admin/post-types/shop_order.php:98 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:313 -#, php-format -#@ woocommerce -msgid "Order %s" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:323 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:373 -#@ woocommerce -msgid "Shipping via" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:414 -#@ woocommerce -msgid "Thank you for your order. We are now redirecting you to PayPal to make payment." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:435 -#@ woocommerce -msgid "Pay via PayPal" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:435 -#@ woocommerce -msgid "Cancel order & restore cart" -msgstr "Cancel order & restore basket" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:489 -#@ woocommerce -msgid "Thank you for your order, please click the button below to pay with PayPal." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:634 -#, php-format -#@ woocommerce -msgid "Validation error: PayPal amounts do not match (gross %s)." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:652 -#@ woocommerce -msgid "IPN payment completed" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:664 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:672 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:690 -#, php-format -#@ woocommerce -msgid "Payment %s via IPN." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:677 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:695 -#@ woocommerce -msgid "Order refunded/reversed" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:678 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:696 -#, php-format -#@ woocommerce -msgid "Order %s has been marked as refunded - PayPal reason code: %s" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:681 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:699 -#, php-format -#@ woocommerce -msgid "Payment for order %s refunded/reversed" -msgstr "" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:26 -#@ woocommerce -msgid "Google Analytics" -msgstr "" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:27 -#@ woocommerce -msgid "Google Analytics is a free service offered by Google that generates detailed statistics about the visitors to a website." -msgstr "" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:62 -#@ woocommerce -msgid "Google Analytics ID" -msgstr "" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:63 -#@ woocommerce -msgid "Log into your google analytics account to find your ID. e.g. UA-XXXXX-X" -msgstr "" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:68 -#@ woocommerce -msgid "Tracking code" -msgstr "" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:69 -#@ woocommerce -msgid "Add tracking code to your site's footer. You don't need to enable this if using a 3rd party analytics plugin." -msgstr "" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:75 -#@ woocommerce -msgid "Add eCommerce tracking code to the thankyou page" -msgstr "" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:81 -#@ woocommerce -msgid "Add event tracking code for add to cart actions" -msgstr "Add event tracking code for add to basket actions" - -#: admin/post-types/shop_order.php:95 -#: admin/post-types/writepanels/writepanel-order_data.php:93 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:113 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:168 -#: woocommerce-ajax.php:1725 -#@ woocommerce -msgid "Guest" -msgstr "" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:201 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:258 -#: templates/single-product/meta.php:19 -#@ woocommerce -msgid "SKU:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:74 -#: admin/woocommerce-admin-taxonomies.php:28 -#: admin/woocommerce-admin-taxonomies.php:122 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:256 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:276 -#: woocommerce.php:948 -#@ woocommerce -msgid "Products" -msgstr "" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:277 -#@ woocommerce -msgid "Add to Cart" -msgstr "Add to Basket" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:26 -#@ woocommerce -msgid "ShareDaddy" -msgstr "" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:27 -#@ woocommerce -msgid "ShareDaddy is a sharing plugin bundled with JetPack." -msgstr "" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:51 -#@ woocommerce -msgid "Output ShareDaddy button?" -msgstr "" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:52 -#@ woocommerce -msgid "Enable this option to show the ShareDaddy button on the product page." -msgstr "" - -#: classes/integrations/sharethis/class-wc-sharethis.php:29 -#@ woocommerce -msgid "ShareThis" -msgstr "" - -#: classes/integrations/sharethis/class-wc-sharethis.php:30 -#@ woocommerce -msgid "ShareThis offers a sharing widget which will allow customers to share links to products with their friends." -msgstr "" - -#: classes/integrations/sharethis/class-wc-sharethis.php:63 -#@ woocommerce -msgid "ShareThis Publisher ID" -msgstr "" - -#: classes/integrations/sharethis/class-wc-sharethis.php:64 -#, php-format -#@ woocommerce -msgid "Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons on product pages." -msgstr "" - -#: classes/integrations/sharethis/class-wc-sharethis.php:69 -#@ woocommerce -msgid "ShareThis Code" -msgstr "" - -#: classes/integrations/sharethis/class-wc-sharethis.php:70 -#@ woocommerce -msgid "You can tweak the ShareThis code by editing this option." -msgstr "" - -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:22 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:329 -#@ woocommerce -#@ default -msgid "ShareYourCart" -msgstr "" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:328 -#@ default -msgid "Share your cart settings" -msgstr "" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:342 -#@ default -msgid "Button" -msgstr "" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:343 -#@ default -msgid "Customize Button" -msgstr "" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:351 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:352 -#@ default -msgid "Documentation" -msgstr "" - -#: classes/integrations/shareyourcart/views/admin-page.php:33 -#@ woocommerce -msgid "Setup your ShareYourCart account" -msgstr "" - -#: classes/integrations/shareyourcart/views/admin-page.php:35 -#@ woocommerce -msgid "Create an account" -msgstr "" - -#: classes/integrations/shareyourcart/views/admin-page.php:35 -#@ woocommerce -msgid "Can't access your account?" -msgstr "" - -#: classes/integrations/shareyourcart/views/admin-page.php:100 -#@ woocommerce -msgid "Configure" -msgstr "" - -#: admin/woocommerce-admin-settings.php:386 -#: classes/integrations/shareyourcart/views/admin-page.php:110 -#: classes/integrations/shareyourcart/views/button-settings-page.php:120 -#@ woocommerce -msgid "Save changes" -msgstr "" - -#: classes/integrations/shareyourcart/views/button-settings-page.php:8 -#: classes/integrations/shareyourcart/views/button-settings-page.php:11 -#@ woocommerce -msgid "Button style" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:25 -#@ woocommerce -msgid "Flat rate" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:28 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:461 -#@ woocommerce -msgid "Flat Rates" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:29 -#@ woocommerce -msgid "Flat rates let you define a standard rate per item, or per order." -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:79 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:54 -#@ woocommerce -msgid "Enable this shipping method" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:83 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:81 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:58 -#@ woocommerce -msgid "Method Title" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:86 -#@ woocommerce -msgid "Flat Rate" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:90 -#@ woocommerce -msgid "Cost per order" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:96 -#@ woocommerce -msgid "Enter a cost (excluding tax) per order, e.g. 5.00. Leave blank to disable." -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:102 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:88 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:143 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:99 -#@ woocommerce -msgid "Method availability" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:107 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:93 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:148 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:104 -#@ woocommerce -msgid "All allowed countries" -msgstr "" - -#: admin/settings/settings-init.php:68 -#: admin/settings/settings-init.php:73 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:108 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:112 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:98 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:149 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:153 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:105 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:109 -#@ woocommerce -msgid "Specific Countries" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:120 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:83 -#@ woocommerce -msgid "Calculation Type" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:124 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:87 -#@ woocommerce -msgid "Per Order - charge shipping for the entire order as a whole" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:125 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:88 -#@ woocommerce -msgid "Per Item - charge shipping for each item individually" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:126 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:89 -#@ woocommerce -msgid "Per Class - charge shipping for each shipping class in an order" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:178 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:130 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:93 -#@ woocommerce -msgid "Tax Status" -msgstr "" - -#: admin/post-types/writepanels/order-fee-html.php:20 -#: admin/post-types/writepanels/writepanel-product_data.php:179 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:134 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:97 -#@ woocommerce -msgid "Taxable" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:181 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:135 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:98 -#@ woocommerce -msgid "None" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:139 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:102 -#@ woocommerce -msgid "Default Cost" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:145 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:108 -#@ woocommerce -msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:151 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:114 -#@ woocommerce -msgid "Default Handling Fee" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:153 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:116 -#@ woocommerce -msgid "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. Leave blank to disable." -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:159 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:122 -#@ woocommerce -msgid "Minimum Fee" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:165 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:128 -#@ woocommerce -msgid "Enter a minimum fee amount. Fee's less than this will be increased. Leave blank to disable." -msgstr "" - -#: admin/settings/settings-init.php:833 -#: admin/woocommerce-admin-settings.php:290 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:171 -#@ woocommerce -msgid "Shipping Options" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:173 -#@ woocommerce -msgid "Optional extra shipping options with additional costs (one per line). Example: Option Name|Cost|Per-order (yes or no). Example: Priority Mail|6.95|yes. If per-order is set to no, it will use the \"Calculation Type\" setting." -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:467 -#: woocommerce.php:857 -#@ woocommerce -msgid "Shipping Class" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:468 -#@ woocommerce -msgid "Cost" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:468 -#@ woocommerce -msgid "Cost, excluding tax." -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:469 -#@ woocommerce -msgid "Handling Fee" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:469 -#@ woocommerce -msgid "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:474 -#@ woocommerce -msgid "+ Add Flat Rate" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:475 -#@ woocommerce -msgid "Add rates for shipping classes here — they will override the default costs defined above." -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:475 -#@ woocommerce -msgid "Delete selected rates" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:495 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:528 -#@ woocommerce -msgid "Select a class…" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:500 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:501 -#@ woocommerce -msgid "0.00" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:542 -#@ woocommerce -msgid "Delete the selected rates?" -msgstr "" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:25 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:145 -#@ woocommerce -msgid "Free Shipping" -msgstr "" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:77 -#@ woocommerce -msgid "Enable Free Shipping" -msgstr "" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:106 -#@ woocommerce -msgid "Free Shipping Requires..." -msgstr "" - -#: admin/post-types/writepanels/order-fee-html.php:19 -#: admin/post-types/writepanels/order-tax-html.php:8 -#: admin/post-types/writepanels/writepanel-order_data.php:558 -#: admin/post-types/writepanels/writepanel-order_data.php:663 -#: admin/woocommerce-admin-reports.php:1642 -#: admin/woocommerce-admin-reports.php:2655 -#: admin/woocommerce-admin-reports.php:2664 -#: admin/woocommerce-admin-users.php:90 -#: admin/woocommerce-admin-users.php:112 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:110 -#: templates/order/order-details.php:110 -#: templates/order/order-details.php:125 -#@ woocommerce -msgid "N/A" -msgstr "" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:111 -#@ woocommerce -msgid "A valid free shipping coupon" -msgstr "" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:112 -#@ woocommerce -msgid "A minimum order amount (defined below)" -msgstr "" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:113 -#@ woocommerce -msgid "A minimum order amount OR a coupon" -msgstr "" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:114 -#@ woocommerce -msgid "A minimum order amount AND a coupon" -msgstr "" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:118 -#@ woocommerce -msgid "Minimum Order Amount" -msgstr "" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:124 -#@ woocommerce -msgid "Users will need to spend this amount to get free shipping (if enabled above)." -msgstr "" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:28 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:31 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:61 -#@ woocommerce -msgid "International Delivery" -msgstr "" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:32 -#@ woocommerce -msgid "International delivery based on flat rate shipping." -msgstr "" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:65 -#@ woocommerce -msgid "Availability" -msgstr "" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:70 -#@ woocommerce -msgid "Selected countries" -msgstr "" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:71 -#@ woocommerce -msgid "Excluding selected countries" -msgstr "" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:75 -#@ woocommerce -msgid "Countries" -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:25 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:107 -#@ woocommerce -msgid "Local Delivery" -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:98 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:78 -#@ woocommerce -msgid "Enable" -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:100 -#@ woocommerce -msgid "Enable local delivery" -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:111 -#@ woocommerce -msgid "Fee Type" -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:113 -#@ woocommerce -msgid "How to calculate delivery charges" -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 -#@ woocommerce -msgid "Fixed amount" -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:117 -#@ woocommerce -msgid "Percentage of cart total" -msgstr "Percentage of basket total" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:118 -#@ woocommerce -msgid "Fixed amount per product" -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:123 -#@ woocommerce -msgid "Delivery Fee" -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:129 -#@ woocommerce -msgid "What fee do you want to charge for local delivery, disregarded if you choose free. Leave blank to disable." -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:135 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:91 -#@ woocommerce -msgid "Zip/Post Codes" -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:137 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:93 -#@ woocommerce -msgid "What zip/post codes would you like to offer delivery to? Separate codes with a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:172 -#@ woocommerce -msgid "Local delivery is a simple shipping method for delivering orders locally." -msgstr "" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:25 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:87 -#@ woocommerce -msgid "Local Pickup" -msgstr "" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:80 -#@ woocommerce -msgid "Enable local pickup" -msgstr "" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:117 -#@ woocommerce -msgid "Apply base tax rate" -msgstr "" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:119 -#@ woocommerce -msgid "When this shipping method is chosen, apply the base tax rate rather than for the customer's given address." -msgstr "" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:134 -#@ woocommerce -msgid "Local pickup is a simple method which allows the customer to pick up their order themselves." -msgstr "" - -#: classes/class-wc-coupon.php:497 -#@ woocommerce -msgid "Please enter a coupon code." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-cart.php:54 -#: woocommerce-functions.php:1637 -#@ woocommerce -msgid "Please enter a valid postcode/ZIP." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-cart.php:65 -#: classes/shortcodes/class-wc-shortcode-cart.php:71 -#@ woocommerce -msgid "Shipping costs updated." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-checkout.php:64 -#@ woocommerce -msgid "The order totals have been updated. Please confirm your order by pressing the Place Order button at the bottom of the page." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:80 -#: woocommerce-core-functions.php:2488 -#: woocommerce-functions.php:1559 -#@ woocommerce -msgid "Please enter your password." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:95 -#@ woocommerce -msgid "Your password has been reset." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:95 -#@ woocommerce -msgid "Log in" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:116 -#@ woocommerce -msgid "Enter a username or e-mail address." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:123 -#@ woocommerce -msgid "There is no user registered with that email address." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:138 -#@ woocommerce -msgid "Invalid username or e-mail." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:152 -#@ default -msgid "Password reset is not allowed for this user" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:180 -#@ default -msgid "Check your e-mail for the confirmation link." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:200 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:205 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:212 -#@ woocommerce -msgid "Invalid key" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:53 -#@ woocommerce -msgid "Please enter a valid order ID" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:57 -#@ woocommerce -msgid "Please enter a valid order email" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:76 -#@ woocommerce -msgid "Sorry, we could not find that order id in our database." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-pay.php:65 -#: classes/shortcodes/class-wc-shortcode-pay.php:118 -#@ woocommerce -msgid "Your order has already been paid for. Please contact us if you need assistance." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-pay.php:70 -#: classes/shortcodes/class-wc-shortcode-pay.php:125 -#: classes/shortcodes/class-wc-shortcode-view-order.php:49 -#: woocommerce-functions.php:880 -#: woocommerce-functions.php:959 -#@ woocommerce -msgid "Invalid order." -msgstr "" - -#: admin/woocommerce-admin-functions.php:188 -#: classes/shortcodes/class-wc-shortcode-pay.php:90 -#: templates/checkout/thankyou.php:40 -#: templates/emails/customer-completed-order.php:18 -#: templates/emails/customer-invoice.php:22 -#: templates/emails/customer-note.php:22 -#: templates/emails/customer-processing-order.php:18 -#@ woocommerce -msgid "Order:" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-pay.php:94 -#: templates/checkout/thankyou.php:44 -#@ woocommerce -msgid "Date:" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:239 -#: classes/shortcodes/class-wc-shortcode-pay.php:98 -#: templates/checkout/thankyou.php:48 -#@ woocommerce -msgid "Total:" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-pay.php:103 -#: templates/checkout/thankyou.php:53 -#@ woocommerce -msgid "Payment method:" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:49 -#@ woocommerce -msgid "My Account →" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:56 -#, php-format -#@ woocommerce -msgid "Order %s made on %s" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:57 -#, php-format -#@ woocommerce -msgid "Order status: %s" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:63 -#: templates/order/tracking.php:31 -#@ woocommerce -msgid "Order Updates" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:69 -#@ woocommerce -msgid "l jS \\of F Y, h:ia" -msgstr "" - -#: classes/widgets/class-wc-widget-best-sellers.php:31 -#@ woocommerce -msgid "Display a list of your best selling products on your site." -msgstr "" - -#: classes/widgets/class-wc-widget-best-sellers.php:33 -#@ woocommerce -msgid "WooCommerce Best Sellers" -msgstr "" - -#: classes/widgets/class-wc-widget-best-sellers.php:71 -#@ woocommerce -msgid "Best Sellers" -msgstr "" - -#: classes/widgets/class-wc-widget-best-sellers.php:192 -#: classes/widgets/class-wc-widget-cart.php:115 -#: classes/widgets/class-wc-widget-featured-products.php:172 -#: classes/widgets/class-wc-widget-layered-nav.php:349 -#: classes/widgets/class-wc-widget-onsale.php:177 -#: classes/widgets/class-wc-widget-price-filter.php:179 -#: classes/widgets/class-wc-widget-product-categories.php:185 -#: classes/widgets/class-wc-widget-product-search.php:91 -#: classes/widgets/class-wc-widget-product-tag-cloud.php:101 -#: classes/widgets/class-wc-widget-random-products.php:133 -#: classes/widgets/class-wc-widget-recent-products.php:169 -#: classes/widgets/class-wc-widget-recent-reviews.php:158 -#: classes/widgets/class-wc-widget-recently-viewed.php:166 -#: classes/widgets/class-wc-widget-top-rated-products.php:159 -#@ woocommerce -msgid "Title:" -msgstr "" - -#: classes/widgets/class-wc-widget-best-sellers.php:195 -#: classes/widgets/class-wc-widget-featured-products.php:175 -#: classes/widgets/class-wc-widget-onsale.php:180 -#: classes/widgets/class-wc-widget-random-products.php:138 -#: classes/widgets/class-wc-widget-recent-products.php:172 -#: classes/widgets/class-wc-widget-recent-reviews.php:161 -#: classes/widgets/class-wc-widget-recently-viewed.php:169 -#: classes/widgets/class-wc-widget-top-rated-products.php:162 -#@ woocommerce -msgid "Number of products to show:" -msgstr "" - -#: classes/widgets/class-wc-widget-best-sellers.php:199 -#@ woocommerce -msgid "Hide free products" -msgstr "" - -#: classes/widgets/class-wc-widget-cart.php:33 -#@ woocommerce -msgid "Display the user's Cart in the sidebar." -msgstr "Display the user's Basket in the sidebar." - -#: classes/widgets/class-wc-widget-cart.php:35 -#@ woocommerce -msgid "WooCommerce Cart" -msgstr "WooCommerce Basket" - -#: classes/widgets/class-wc-widget-cart.php:119 -#@ woocommerce -msgid "Hide if cart is empty" -msgstr "Hide if basket is empty" - -#: classes/widgets/class-wc-widget-featured-products.php:35 -#@ woocommerce -msgid "Display a list of featured products on your site." -msgstr "" - -#: classes/widgets/class-wc-widget-featured-products.php:37 -#@ woocommerce -msgid "WooCommerce Featured Products" -msgstr "" - -#: classes/widgets/class-wc-widget-featured-products.php:75 -#@ woocommerce -msgid "Featured Products" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:31 -#@ woocommerce -msgid "Shows active layered nav filters so users can see and deactivate them." -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:33 -#@ woocommerce -msgid "WooCommerce Layered Nav Filters" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:62 -#@ woocommerce -msgid "Active filters" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:93 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -#@ woocommerce -msgid "Remove filter" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#@ woocommerce -msgid "Min" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -#@ woocommerce -msgid "Max" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav.php:31 -#@ woocommerce -msgid "Shows a custom attribute in a widget which lets you narrow down the list of products when viewing product categories." -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav.php:33 -#@ woocommerce -msgid "WooCommerce Layered Nav" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav.php:100 -#, php-format -#@ woocommerce -msgid "Any %s" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav.php:352 -#@ woocommerce -msgid "Attribute:" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav.php:363 -#@ woocommerce -msgid "Display Type:" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav.php:365 -#@ woocommerce -msgid "List" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav.php:366 -#@ woocommerce -msgid "Dropdown" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav.php:369 -#@ woocommerce -msgid "Query Type:" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav.php:371 -#@ woocommerce -msgid "AND" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav.php:372 -#@ woocommerce -msgid "OR" -msgstr "" - -#: classes/widgets/class-wc-widget-login.php:31 -#@ woocommerce -msgid "Display a login area and \"My Account\" links in the sidebar." -msgstr "" - -#: classes/widgets/class-wc-widget-login.php:33 -#@ woocommerce -msgid "WooCommerce Login" -msgstr "" - -#: classes/widgets/class-wc-widget-login.php:59 -#: classes/widgets/class-wc-widget-login.php:223 -#@ woocommerce -msgid "Customer Login" -msgstr "" - -#: classes/widgets/class-wc-widget-login.php:60 -#: classes/widgets/class-wc-widget-login.php:226 -#, php-format -#@ woocommerce -msgid "Welcome %s" -msgstr "" - -#: classes/widgets/class-wc-widget-login.php:76 -#@ woocommerce -msgid "My account" -msgstr "" - -#: classes/widgets/class-wc-widget-login.php:77 -#@ woocommerce -msgid "Change my password" -msgstr "" - -#: admin/woocommerce-admin-install.php:216 -#: classes/widgets/class-wc-widget-login.php:78 -#@ woocommerce -msgid "Logout" -msgstr "" - -#: classes/widgets/class-wc-widget-login.php:116 -#: templates/myaccount/form-login.php:29 -#: templates/myaccount/form-lost-password.php:24 -#: templates/shop/form-login.php:20 -#@ woocommerce -msgid "Username or email" -msgstr "" - -#: classes/widgets/class-wc-widget-login.php:118 -#: templates/myaccount/form-login.php:33 -#: templates/myaccount/form-login.php:85 -#: templates/shop/form-login.php:24 -#@ woocommerce -msgid "Password" -msgstr "" - -#: classes/widgets/class-wc-widget-login.php:120 -#: woocommerce-functions.php:945 -#@ woocommerce -msgid "Login →" -msgstr "" - -#: classes/widgets/class-wc-widget-login.php:120 -#@ woocommerce -msgid "Lost password?" -msgstr "" - -#: classes/widgets/class-wc-widget-login.php:222 -#@ woocommerce -msgid "Logged out title:" -msgstr "" - -#: classes/widgets/class-wc-widget-login.php:225 -#@ woocommerce -msgid "Logged in title:" -msgstr "" - -#: classes/widgets/class-wc-widget-onsale.php:31 -#@ woocommerce -msgid "Display a list of your on-sale products on your site." -msgstr "" - -#: classes/widgets/class-wc-widget-onsale.php:33 -#@ woocommerce -msgid "WooCommerce On-sale" -msgstr "" - -#: classes/widgets/class-wc-widget-onsale.php:70 -#@ woocommerce -msgid "On Sale" -msgstr "" - -#: classes/widgets/class-wc-widget-price-filter.php:33 -#@ woocommerce -msgid "Shows a price filter slider in a widget which lets you narrow down the list of shown products when viewing product categories." -msgstr "" - -#: classes/widgets/class-wc-widget-price-filter.php:35 -#@ woocommerce -msgid "WooCommerce Price Filter" -msgstr "" - -#: classes/widgets/class-wc-widget-price-filter.php:136 -#@ woocommerce -msgid "Min price" -msgstr "" - -#: classes/widgets/class-wc-widget-price-filter.php:137 -#@ woocommerce -msgid "Max price" -msgstr "" - -#: classes/widgets/class-wc-widget-price-filter.php:138 -#@ woocommerce -msgid "Filter" -msgstr "" - -#: classes/widgets/class-wc-widget-price-filter.php:140 -#@ woocommerce -msgid "Price:" -msgstr "" - -#: classes/widgets/class-wc-widget-price-filter.php:162 -#@ woocommerce -msgid "Filter by price" -msgstr "" - -#: classes/widgets/class-wc-widget-product-categories.php:33 -#@ woocommerce -msgid "A list or dropdown of product categories." -msgstr "" - -#: classes/widgets/class-wc-widget-product-categories.php:35 -#@ woocommerce -msgid "WooCommerce Product Categories" -msgstr "" - -#: classes/widgets/class-wc-widget-product-categories.php:57 -#: woocommerce.php:787 -#: woocommerce.php:789 -#@ woocommerce -msgid "Product Categories" -msgstr "" - -#: classes/widgets/class-wc-widget-product-categories.php:129 -#@ woocommerce -msgid "No product categories exist." -msgstr "" - -#: classes/widgets/class-wc-widget-product-categories.php:188 -#@ woocommerce -msgid "Order by:" -msgstr "" - -#: classes/widgets/class-wc-widget-product-categories.php:190 -#@ woocommerce -msgid "Category Order" -msgstr "" - -#: admin/post-types/product.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:372 -#: admin/post-types/writepanels/writepanel-product_data.php:451 -#: admin/woocommerce-admin-attributes.php:232 -#: admin/woocommerce-admin-attributes.php:268 -#: admin/woocommerce-admin-attributes.php:306 -#: admin/woocommerce-admin-attributes.php:329 -#: admin/woocommerce-admin-attributes.php:373 -#: admin/woocommerce-admin-attributes.php:398 -#: admin/woocommerce-admin-init.php:450 -#: classes/widgets/class-wc-widget-product-categories.php:191 -#: templates/single-product-reviews.php:99 -#: woocommerce-ajax.php:1244 -#@ woocommerce -msgid "Name" -msgstr "" - -#: classes/widgets/class-wc-widget-product-categories.php:195 -#@ woocommerce -msgid "Show as dropdown" -msgstr "" - -#: classes/widgets/class-wc-widget-product-categories.php:198 -#@ woocommerce -msgid "Show post counts" -msgstr "" - -#: classes/widgets/class-wc-widget-product-categories.php:201 -#@ woocommerce -msgid "Show hierarchy" -msgstr "" - -#: classes/widgets/class-wc-widget-product-categories.php:204 -#@ woocommerce -msgid "Only show children for the current category" -msgstr "" - -#: classes/widgets/class-wc-widget-product-search.php:31 -#@ woocommerce -msgid "A Search box for products only." -msgstr "" - -#: classes/widgets/class-wc-widget-product-search.php:33 -#@ woocommerce -msgid "WooCommerce Product Search" -msgstr "" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:31 -#@ woocommerce -msgid "Your most used product tags in cloud format." -msgstr "" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:33 -#@ woocommerce -msgid "WooCommerce Product Tags" -msgstr "" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:58 -#: woocommerce.php:823 -#: woocommerce.php:825 -#@ woocommerce -msgid "Product Tags" -msgstr "" - -#: classes/widgets/class-wc-widget-random-products.php:24 -#@ woocommerce -msgid "WooCommerce Random Products" -msgstr "" - -#: classes/widgets/class-wc-widget-random-products.php:27 -#@ woocommerce -msgid "Display a list of random products on your site." -msgstr "" - -#: classes/widgets/class-wc-widget-random-products.php:46 -#@ woocommerce -msgid "Random Products" -msgstr "" - -#: classes/widgets/class-wc-widget-random-products.php:144 -#: classes/widgets/class-wc-widget-recent-products.php:176 -#@ woocommerce -msgid "Show hidden product variations" -msgstr "" - -#: classes/widgets/class-wc-widget-recent-products.php:31 -#@ woocommerce -msgid "Display a list of your most recent products on your site." -msgstr "" - -#: classes/widgets/class-wc-widget-recent-products.php:33 -#@ woocommerce -msgid "WooCommerce Recent Products" -msgstr "" - -#: classes/widgets/class-wc-widget-recent-products.php:70 -#@ woocommerce -msgid "New Products" -msgstr "" - -#: classes/widgets/class-wc-widget-recent-reviews.php:31 -#@ woocommerce -msgid "Display a list of your most recent reviews on your site." -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:45 -#: classes/widgets/class-wc-widget-recent-reviews.php:33 -#@ woocommerce -msgid "WooCommerce Recent Reviews" -msgstr "" - -#: classes/widgets/class-wc-widget-recent-reviews.php:71 -#@ woocommerce -msgid "Recent Reviews" -msgstr "" - -#: templates/single-product/review.php:26 -#, php-format -#@ woocommerce -msgid "Rated %d out of 5" -msgstr "" - -#: classes/widgets/class-wc-widget-recent-reviews.php:97 -#, php-format -#@ woocommerce -msgctxt "by comment author" -msgid "by %1$s" -msgstr "" - -#: classes/widgets/class-wc-widget-recently-viewed.php:31 -#@ woocommerce -msgid "Display a list of recently viewed products." -msgstr "" - -#: classes/widgets/class-wc-widget-recently-viewed.php:33 -#@ woocommerce -msgid "WooCommerce Recently Viewed Products" -msgstr "" - -#: classes/widgets/class-wc-widget-recently-viewed.php:76 -#@ woocommerce -msgid "Recently viewed" -msgstr "" - -#: classes/widgets/class-wc-widget-top-rated-products.php:33 -#@ woocommerce -msgid "Display a list of top rated products on your site." -msgstr "" - -#: classes/widgets/class-wc-widget-top-rated-products.php:35 -#@ woocommerce -msgid "WooCommerce Top Rated Products" -msgstr "" - -#: classes/widgets/class-wc-widget-top-rated-products.php:72 -#@ woocommerce -msgid "Top Rated Products" -msgstr "" - -#: i18n/states/AU.php:13 -#@ woocommerce -msgid "Australian Capital Territory" -msgstr "" - -#: i18n/states/AU.php:14 -#@ woocommerce -msgid "New South Wales" -msgstr "" - -#: i18n/states/AU.php:15 -#@ woocommerce -msgid "Northern Territory" -msgstr "" - -#: i18n/states/AU.php:16 -#@ woocommerce -msgid "Queensland" -msgstr "" - -#: i18n/states/AU.php:17 -#@ woocommerce -msgid "South Australia" -msgstr "" - -#: i18n/states/AU.php:18 -#@ woocommerce -msgid "Tasmania" -msgstr "" - -#: i18n/states/AU.php:19 -#@ woocommerce -msgid "Victoria" -msgstr "" - -#: i18n/states/AU.php:20 -#@ woocommerce -msgid "Western Australia" -msgstr "" - -#: i18n/states/BR.php:13 -#@ woocommerce -msgid "Acre" -msgstr "" - -#: i18n/states/BR.php:14 -#@ woocommerce -msgid "Alagoas" -msgstr "" - -#: i18n/states/BR.php:15 -#@ woocommerce -msgid "Amapá" -msgstr "" - -#: i18n/states/BR.php:16 -#@ woocommerce -msgid "Amazonas" -msgstr "" - -#: i18n/states/BR.php:17 -#@ woocommerce -msgid "Bahia" -msgstr "" - -#: i18n/states/BR.php:18 -#@ woocommerce -msgid "Ceará" -msgstr "" - -#: i18n/states/BR.php:19 -#@ woocommerce -msgid "Distrito Federal" -msgstr "" - -#: i18n/states/BR.php:20 -#@ woocommerce -msgid "Espírito Santo" -msgstr "" - -#: i18n/states/BR.php:21 -#@ woocommerce -msgid "Goiás" -msgstr "" - -#: i18n/states/BR.php:22 -#@ woocommerce -msgid "Maranhão" -msgstr "" - -#: i18n/states/BR.php:23 -#@ woocommerce -msgid "Mato Grosso" -msgstr "" - -#: i18n/states/BR.php:24 -#@ woocommerce -msgid "Mato Grosso do Sul" -msgstr "" - -#: i18n/states/BR.php:25 -#@ woocommerce -msgid "Minas Gerais" -msgstr "" - -#: i18n/states/BR.php:26 -#@ woocommerce -msgid "Pará" -msgstr "" - -#: i18n/states/BR.php:27 -#@ woocommerce -msgid "Paraíba" -msgstr "" - -#: i18n/states/BR.php:28 -#@ woocommerce -msgid "Paraná" -msgstr "" - -#: i18n/states/BR.php:29 -#@ woocommerce -msgid "Pernambuco" -msgstr "" - -#: i18n/states/BR.php:30 -#@ woocommerce -msgid "Piauí" -msgstr "" - -#: i18n/states/BR.php:31 -#@ woocommerce -msgid "Rio de Janeiro" -msgstr "" - -#: i18n/states/BR.php:32 -#@ woocommerce -msgid "Rio Grande do Norte" -msgstr "" - -#: i18n/states/BR.php:33 -#@ woocommerce -msgid "Rio Grande do Sul" -msgstr "" - -#: i18n/states/BR.php:34 -#@ woocommerce -msgid "Rondônia" -msgstr "" - -#: i18n/states/BR.php:35 -#@ woocommerce -msgid "Roraima" -msgstr "" - -#: i18n/states/BR.php:36 -#@ woocommerce -msgid "Santa Catarina" -msgstr "" - -#: i18n/states/BR.php:37 -#@ woocommerce -msgid "São Paulo" -msgstr "" - -#: i18n/states/BR.php:38 -#@ woocommerce -msgid "Sergipe" -msgstr "" - -#: i18n/states/BR.php:39 -#@ woocommerce -msgid "Tocantins" -msgstr "" - -#: i18n/states/CA.php:13 -#@ woocommerce -msgid "Alberta" -msgstr "" - -#: i18n/states/CA.php:14 -#@ woocommerce -msgid "British Columbia" -msgstr "" - -#: i18n/states/CA.php:15 -#@ woocommerce -msgid "Manitoba" -msgstr "" - -#: i18n/states/CA.php:16 -#@ woocommerce -msgid "New Brunswick" -msgstr "" - -#: i18n/states/CA.php:17 -#@ woocommerce -msgid "Newfoundland" -msgstr "" - -#: i18n/states/CA.php:18 -#@ woocommerce -msgid "Northwest Territories" -msgstr "" - -#: i18n/states/CA.php:19 -#@ woocommerce -msgid "Nova Scotia" -msgstr "" - -#: i18n/states/CA.php:20 -#@ woocommerce -msgid "Nunavut" -msgstr "" - -#: i18n/states/CA.php:21 -#@ woocommerce -msgid "Ontario" -msgstr "" - -#: i18n/states/CA.php:22 -#@ woocommerce -msgid "Prince Edward Island" -msgstr "" - -#: i18n/states/CA.php:23 -#@ woocommerce -msgid "Quebec" -msgstr "" - -#: i18n/states/CA.php:24 -#@ woocommerce -msgid "Saskatchewan" -msgstr "" - -#: i18n/states/CA.php:25 -#@ woocommerce -msgid "Yukon Territory" -msgstr "" - -#: i18n/states/CN.php:13 -#@ woocommerce -msgid "Yunnan / 云南" -msgstr "" - -#: i18n/states/CN.php:14 -#@ woocommerce -msgid "Beijing / 北京" -msgstr "" - -#: i18n/states/CN.php:15 -#@ woocommerce -msgid "Tianjin / 天津" -msgstr "" - -#: i18n/states/CN.php:16 -#@ woocommerce -msgid "Hebei / 河北" -msgstr "" - -#: i18n/states/CN.php:17 -#@ woocommerce -msgid "Shanxi / 山西" -msgstr "" - -#: i18n/states/CN.php:18 -#@ woocommerce -msgid "Inner Mongolia / 內蒙古" -msgstr "" - -#: i18n/states/CN.php:19 -#@ woocommerce -msgid "Liaoning / 辽宁" -msgstr "" - -#: i18n/states/CN.php:20 -#@ woocommerce -msgid "Jilin / 吉林" -msgstr "" - -#: i18n/states/CN.php:21 -#@ woocommerce -msgid "Heilongjiang / 黑龙江" -msgstr "" - -#: i18n/states/CN.php:22 -#@ woocommerce -msgid "Shanghai / 上海" -msgstr "" - -#: i18n/states/CN.php:23 -#@ woocommerce -msgid "Jiangsu / 江苏" -msgstr "" - -#: i18n/states/CN.php:24 -#@ woocommerce -msgid "Zhejiang / 浙江" -msgstr "" - -#: i18n/states/CN.php:25 -#@ woocommerce -msgid "Anhui / 安徽" -msgstr "" - -#: i18n/states/CN.php:26 -#@ woocommerce -msgid "Fujian / 福建" -msgstr "" - -#: i18n/states/CN.php:27 -#@ woocommerce -msgid "Jiangxi / 江西" -msgstr "" - -#: i18n/states/CN.php:28 -#@ woocommerce -msgid "Shandong / 山东" -msgstr "" - -#: i18n/states/CN.php:29 -#@ woocommerce -msgid "Henan / 河南" -msgstr "" - -#: i18n/states/CN.php:30 -#@ woocommerce -msgid "Hubei / 湖北" -msgstr "" - -#: i18n/states/CN.php:31 -#@ woocommerce -msgid "Hunan / 湖南" -msgstr "" - -#: i18n/states/CN.php:32 -#@ woocommerce -msgid "Guangdong / 广东" -msgstr "" - -#: i18n/states/CN.php:33 -#@ woocommerce -msgid "Guangxi Zhuang / 广西壮族" -msgstr "" - -#: i18n/states/CN.php:34 -#@ woocommerce -msgid "Hainan / 海南" -msgstr "" - -#: i18n/states/CN.php:35 -#@ woocommerce -msgid "Chongqing / 重庆" -msgstr "" - -#: i18n/states/CN.php:36 -#@ woocommerce -msgid "Sichuan / 四川" -msgstr "" - -#: i18n/states/CN.php:37 -#@ woocommerce -msgid "Guizhou / 贵州" -msgstr "" - -#: i18n/states/CN.php:38 -#@ woocommerce -msgid "Shaanxi / 陕西" -msgstr "" - -#: i18n/states/CN.php:39 -#@ woocommerce -msgid "Gansu / 甘肃" -msgstr "" - -#: i18n/states/CN.php:40 -#@ woocommerce -msgid "Qinghai / 青海" -msgstr "" - -#: i18n/states/CN.php:41 -#@ woocommerce -msgid "Ningxia Hui / 宁夏" -msgstr "" - -#: i18n/states/CN.php:42 -#@ woocommerce -msgid "Macau / 澳门" -msgstr "" - -#: i18n/states/CN.php:43 -#@ woocommerce -msgid "Tibet / 西藏" -msgstr "" - -#: i18n/states/CN.php:44 -#@ woocommerce -msgid "Xinjiang / 新疆" -msgstr "" - -#: i18n/states/HK.php:13 -#@ woocommerce -msgid "Hong Kong Island" -msgstr "" - -#: i18n/states/HK.php:14 -#@ woocommerce -msgid "Kowloon" -msgstr "" - -#: i18n/states/HK.php:15 -#@ woocommerce -msgid "New Territories" -msgstr "" - -#: i18n/states/HZ.php:13 -#@ woocommerce -msgid "Auckland" -msgstr "" - -#: i18n/states/HZ.php:14 -#@ woocommerce -msgid "Bay of Plenty" -msgstr "" - -#: i18n/states/HZ.php:15 -#@ woocommerce -msgid "Canterbury" -msgstr "" - -#: i18n/states/HZ.php:16 -#@ woocommerce -msgid "Hawke’s Bay" -msgstr "" - -#: i18n/states/HZ.php:17 -#@ woocommerce -msgid "Manawatu-Wanganui" -msgstr "" - -#: i18n/states/HZ.php:18 -#@ woocommerce -msgid "Marlborough" -msgstr "" - -#: i18n/states/HZ.php:19 -#@ woocommerce -msgid "Nelson" -msgstr "" - -#: i18n/states/HZ.php:20 -#@ woocommerce -msgid "Northland" -msgstr "" - -#: i18n/states/HZ.php:21 -#@ woocommerce -msgid "Otago" -msgstr "" - -#: i18n/states/HZ.php:22 -#@ woocommerce -msgid "Southland" -msgstr "" - -#: i18n/states/HZ.php:23 -#@ woocommerce -msgid "Taranaki" -msgstr "" - -#: i18n/states/HZ.php:24 -#@ woocommerce -msgid "Tasman" -msgstr "" - -#: i18n/states/HZ.php:25 -#@ woocommerce -msgid "Waikato" -msgstr "" - -#: i18n/states/HZ.php:26 -#@ woocommerce -msgid "Wellington" -msgstr "" - -#: i18n/states/HZ.php:27 -#@ woocommerce -msgid "West Coast" -msgstr "" - -#: i18n/states/IN.php:13 -#@ woocommerce -msgid "Andra Pradesh" -msgstr "" - -#: i18n/states/IN.php:14 -#@ woocommerce -msgid "Arunachal Pradesh" -msgstr "" - -#: i18n/states/IN.php:15 -#@ woocommerce -msgid "Assam" -msgstr "" - -#: i18n/states/IN.php:16 -#@ woocommerce -msgid "Bihar" -msgstr "" - -#: i18n/states/IN.php:17 -#@ woocommerce -msgid "Chhattisgarh" -msgstr "" - -#: i18n/states/IN.php:18 -#@ woocommerce -msgid "Goa" -msgstr "" - -#: i18n/states/IN.php:19 -#@ woocommerce -msgid "Gujarat" -msgstr "" - -#: i18n/states/IN.php:20 -#@ woocommerce -msgid "Haryana" -msgstr "" - -#: i18n/states/IN.php:21 -#@ woocommerce -msgid "Himachal Pradesh" -msgstr "" - -#: i18n/states/IN.php:22 -#@ woocommerce -msgid "Jammu and Kashmir" -msgstr "" - -#: i18n/states/IN.php:23 -#@ woocommerce -msgid "Jharkhand" -msgstr "" - -#: i18n/states/IN.php:24 -#@ woocommerce -msgid "Karnataka" -msgstr "" - -#: i18n/states/IN.php:25 -#@ woocommerce -msgid "Kerala" -msgstr "" - -#: i18n/states/IN.php:26 -#@ woocommerce -msgid "Madhya Pradesh" -msgstr "" - -#: i18n/states/IN.php:27 -#@ woocommerce -msgid "Maharashtra" -msgstr "" - -#: i18n/states/IN.php:28 -#@ woocommerce -msgid "Manipur" -msgstr "" - -#: i18n/states/IN.php:29 -#@ woocommerce -msgid "Meghalaya" -msgstr "" - -#: i18n/states/IN.php:30 -#@ woocommerce -msgid "Mizoram" -msgstr "" - -#: i18n/states/IN.php:31 -#@ woocommerce -msgid "Nagaland" -msgstr "" - -#: i18n/states/IN.php:32 -#@ woocommerce -msgid "Orissa" -msgstr "" - -#: i18n/states/IN.php:33 -#@ woocommerce -msgid "Punjab" -msgstr "" - -#: i18n/states/IN.php:34 -#@ woocommerce -msgid "Rajasthan" -msgstr "" - -#: i18n/states/IN.php:35 -#@ woocommerce -msgid "Sikkim" -msgstr "" - -#: i18n/states/IN.php:36 -#@ woocommerce -msgid "Tamil Nadu" -msgstr "" - -#: i18n/states/IN.php:37 -#@ woocommerce -msgid "Tripura" -msgstr "" - -#: i18n/states/IN.php:38 -#@ woocommerce -msgid "Uttaranchal" -msgstr "" - -#: i18n/states/IN.php:39 -#@ woocommerce -msgid "Uttar Pradesh" -msgstr "" - -#: i18n/states/IN.php:40 -#@ woocommerce -msgid "West Bengal" -msgstr "" - -#: i18n/states/IN.php:41 -#@ woocommerce -msgid "Andaman and Nicobar Islands" -msgstr "" - -#: i18n/states/IN.php:42 -#@ woocommerce -msgid "Chandigarh" -msgstr "" - -#: i18n/states/IN.php:43 -#@ woocommerce -msgid "Dadar and Nagar Haveli" -msgstr "" - -#: i18n/states/IN.php:44 -#@ woocommerce -msgid "Daman and Diu" -msgstr "" - -#: i18n/states/IN.php:45 -#@ woocommerce -msgid "Delhi" -msgstr "" - -#: i18n/states/IN.php:46 -#@ woocommerce -msgid "Lakshadeep" -msgstr "" - -#: i18n/states/IN.php:47 -#@ woocommerce -msgid "Pondicherry (Puducherry)" -msgstr "" - -#: i18n/states/MY.php:13 -#@ woocommerce -msgid "Johor" -msgstr "" - -#: i18n/states/MY.php:14 -#@ woocommerce -msgid "Kedah" -msgstr "" - -#: i18n/states/MY.php:15 -#@ woocommerce -msgid "Kelantan" -msgstr "" - -#: i18n/states/MY.php:16 -#@ woocommerce -msgid "Melaka" -msgstr "" - -#: i18n/states/MY.php:17 -#@ woocommerce -msgid "Negeri Sembilan" -msgstr "" - -#: i18n/states/MY.php:18 -#@ woocommerce -msgid "Pahang" -msgstr "" - -#: i18n/states/MY.php:19 -#@ woocommerce -msgid "Perak" -msgstr "" - -#: i18n/states/MY.php:20 -#@ woocommerce -msgid "Perlis" -msgstr "" - -#: i18n/states/MY.php:21 -#@ woocommerce -msgid "Pulau Pinang" -msgstr "" - -#: i18n/states/MY.php:22 -#@ woocommerce -msgid "Sabah" -msgstr "" - -#: i18n/states/MY.php:23 -#@ woocommerce -msgid "Sarawak" -msgstr "" - -#: i18n/states/MY.php:24 -#@ woocommerce -msgid "Selangor" -msgstr "" - -#: i18n/states/MY.php:25 -#@ woocommerce -msgid "Terengganu" -msgstr "" - -#: i18n/states/MY.php:26 -#@ woocommerce -msgid "W.P. Kuala Lumpur" -msgstr "" - -#: i18n/states/MY.php:27 -#@ woocommerce -msgid "W.P. Labuan" -msgstr "" - -#: i18n/states/MY.php:28 -#@ woocommerce -msgid "W.P. Putrajaya" -msgstr "" - -#: i18n/states/TH.php:13 -#@ woocommerce -msgid "Amnat Charoen (อำนาจเจริญ)" -msgstr "" - -#: i18n/states/TH.php:14 -#@ woocommerce -msgid "Ang Thong (อ่างทอง)" -msgstr "" - -#: i18n/states/TH.php:15 -#@ woocommerce -msgid "Ayutthaya (พระนครศรีอยุธยา)" -msgstr "" - -#: i18n/states/TH.php:16 -#@ woocommerce -msgid "Bangkok (กรุงเทพมหานคร)" -msgstr "" - -#: i18n/states/TH.php:17 -#@ woocommerce -msgid "Bueng Kan (บึงกาฬ)" -msgstr "" - -#: i18n/states/TH.php:18 -#@ woocommerce -msgid "Buri Ram (บุรีรัมย์)" -msgstr "" - -#: i18n/states/TH.php:19 -#@ woocommerce -msgid "Chachoengsao (ฉะเชิงเทรา)" -msgstr "" - -#: i18n/states/TH.php:20 -#@ woocommerce -msgid "Chai Nat (ชัยนาท)" -msgstr "" - -#: i18n/states/TH.php:21 -#@ woocommerce -msgid "Chaiyaphum (ชัยภูมิ)" -msgstr "" - -#: i18n/states/TH.php:22 -#@ woocommerce -msgid "Chanthaburi (จันทบุรี)" -msgstr "" - -#: i18n/states/TH.php:23 -#@ woocommerce -msgid "Chiang Mai (เชียงใหม่)" -msgstr "" - -#: i18n/states/TH.php:24 -#@ woocommerce -msgid "Chiang Rai (เชียงราย)" -msgstr "" - -#: i18n/states/TH.php:25 -#@ woocommerce -msgid "Chonburi (ชลบุรี)" -msgstr "" - -#: i18n/states/TH.php:26 -#@ woocommerce -msgid "Chumphon (ชุมพร)" -msgstr "" - -#: i18n/states/TH.php:27 -#@ woocommerce -msgid "Kalasin (กาฬสินธุ์)" -msgstr "" - -#: i18n/states/TH.php:28 -#@ woocommerce -msgid "Kamphaeng Phet (กำแพงเพชร)" -msgstr "" - -#: i18n/states/TH.php:29 -#@ woocommerce -msgid "Kanchanaburi (กาญจนบุรี)" -msgstr "" - -#: i18n/states/TH.php:30 -#@ woocommerce -msgid "Khon Kaen (ขอนแก่น)" -msgstr "" - -#: i18n/states/TH.php:31 -#@ woocommerce -msgid "Krabi (กระบี่)" -msgstr "" - -#: i18n/states/TH.php:32 -#@ woocommerce -msgid "Lampang (ลำปาง)" -msgstr "" - -#: i18n/states/TH.php:33 -#@ woocommerce -msgid "Lamphun (ลำพูน)" -msgstr "" - -#: i18n/states/TH.php:34 -#@ woocommerce -msgid "Loei (เลย)" -msgstr "" - -#: i18n/states/TH.php:35 -#@ woocommerce -msgid "Lopburi (ลพบุรี)" -msgstr "" - -#: i18n/states/TH.php:36 -#@ woocommerce -msgid "Mae Hong Son (แม่ฮ่องสอน)" -msgstr "" - -#: i18n/states/TH.php:37 -#@ woocommerce -msgid "Maha Sarakham (มหาสารคาม)" -msgstr "" - -#: i18n/states/TH.php:38 -#@ woocommerce -msgid "Mukdahan (มุกดาหาร)" -msgstr "" - -#: i18n/states/TH.php:39 -#@ woocommerce -msgid "Nakhon Nayok (นครนายก)" -msgstr "" - -#: i18n/states/TH.php:40 -#@ woocommerce -msgid "Nakhon Pathom (นครปฐม)" -msgstr "" - -#: i18n/states/TH.php:41 -#@ woocommerce -msgid "Nakhon Phanom (นครพนม)" -msgstr "" - -#: i18n/states/TH.php:42 -#@ woocommerce -msgid "Nakhon Ratchasima (นครราชสีมา)" -msgstr "" - -#: i18n/states/TH.php:43 -#@ woocommerce -msgid "Nakhon Sawan (นครสวรรค์)" -msgstr "" - -#: i18n/states/TH.php:44 -#@ woocommerce -msgid "Nakhon Si Thammarat (นครศรีธรรมราช)" -msgstr "" - -#: i18n/states/TH.php:45 -#@ woocommerce -msgid "Nan (น่าน)" -msgstr "" - -#: i18n/states/TH.php:46 -#@ woocommerce -msgid "Narathiwat (นราธิวาส)" -msgstr "" - -#: i18n/states/TH.php:47 -#@ woocommerce -msgid "Nong Bua Lam Phu (หนองบัวลำภู)" -msgstr "" - -#: i18n/states/TH.php:48 -#@ woocommerce -msgid "Nong Khai (หนองคาย)" -msgstr "" - -#: i18n/states/TH.php:49 -#@ woocommerce -msgid "Nonthaburi (นนทบุรี)" -msgstr "" - -#: i18n/states/TH.php:50 -#@ woocommerce -msgid "Pathum Thani (ปทุมธานี)" -msgstr "" - -#: i18n/states/TH.php:51 -#@ woocommerce -msgid "Pattani (ปัตตานี)" -msgstr "" - -#: i18n/states/TH.php:52 -#@ woocommerce -msgid "Phang Nga (พังงา)" -msgstr "" - -#: i18n/states/TH.php:53 -#@ woocommerce -msgid "Phatthalung (พัทลุง)" -msgstr "" - -#: i18n/states/TH.php:54 -#@ woocommerce -msgid "Phayao (พะเยา)" -msgstr "" - -#: i18n/states/TH.php:55 -#@ woocommerce -msgid "Phetchabun (เพชรบูรณ์)" -msgstr "" - -#: i18n/states/TH.php:56 -#@ woocommerce -msgid "Phetchaburi (เพชรบุรี)" -msgstr "" - -#: i18n/states/TH.php:57 -#@ woocommerce -msgid "Phichit (พิจิตร)" -msgstr "" - -#: i18n/states/TH.php:58 -#@ woocommerce -msgid "Phitsanulok (พิษณุโลก)" -msgstr "" - -#: i18n/states/TH.php:59 -#@ woocommerce -msgid "Phrae (แพร่)" -msgstr "" - -#: i18n/states/TH.php:60 -#@ woocommerce -msgid "Phuket (ภูเก็ต)" -msgstr "" - -#: i18n/states/TH.php:61 -#@ woocommerce -msgid "Prachin Buri (ปราจีนบุรี)" -msgstr "" - -#: i18n/states/TH.php:62 -#@ woocommerce -msgid "Prachuap Khiri Khan (ประจวบคีรีขันธ์)" -msgstr "" - -#: i18n/states/TH.php:63 -#@ woocommerce -msgid "Ranong (ระนอง)" -msgstr "" - -#: i18n/states/TH.php:64 -#@ woocommerce -msgid "Ratchaburi (ราชบุรี)" -msgstr "" - -#: i18n/states/TH.php:65 -#@ woocommerce -msgid "Rayong (ระยอง)" -msgstr "" - -#: i18n/states/TH.php:66 -#@ woocommerce -msgid "Roi Et (ร้อยเอ็ด)" -msgstr "" - -#: i18n/states/TH.php:67 -#@ woocommerce -msgid "Sa Kaeo (สระแก้ว)" -msgstr "" - -#: i18n/states/TH.php:68 -#@ woocommerce -msgid "Sakon Nakhon (สกลนคร)" -msgstr "" - -#: i18n/states/TH.php:69 -#@ woocommerce -msgid "Samut Prakan (สมุทรปราการ)" -msgstr "" - -#: i18n/states/TH.php:70 -#@ woocommerce -msgid "Samut Sakhon (สมุทรสาคร)" -msgstr "" - -#: i18n/states/TH.php:71 -#@ woocommerce -msgid "Samut Songkhram (สมุทรสงคราม)" -msgstr "" - -#: i18n/states/TH.php:72 -#@ woocommerce -msgid "Saraburi (สระบุรี)" -msgstr "" - -#: i18n/states/TH.php:73 -#@ woocommerce -msgid "Satun (สตูล)" -msgstr "" - -#: i18n/states/TH.php:74 -#@ woocommerce -msgid "Sing Buri (สิงห์บุรี)" -msgstr "" - -#: i18n/states/TH.php:75 -#@ woocommerce -msgid "Sisaket (ศรีสะเกษ)" -msgstr "" - -#: i18n/states/TH.php:76 -#@ woocommerce -msgid "Songkhla (สงขลา)" -msgstr "" - -#: i18n/states/TH.php:77 -#@ woocommerce -msgid "Sukhothai (สุโขทัย)" -msgstr "" - -#: i18n/states/TH.php:78 -#@ woocommerce -msgid "Suphan Buri (สุพรรณบุรี)" -msgstr "" - -#: i18n/states/TH.php:79 -#@ woocommerce -msgid "Surat Thani (สุราษฎร์ธานี)" -msgstr "" - -#: i18n/states/TH.php:80 -#@ woocommerce -msgid "Surin (สุรินทร์)" -msgstr "" - -#: i18n/states/TH.php:81 -#@ woocommerce -msgid "Tak (ตาก)" -msgstr "" - -#: i18n/states/TH.php:82 -#@ woocommerce -msgid "Trang (ตรัง)" -msgstr "" - -#: i18n/states/TH.php:83 -#@ woocommerce -msgid "Trat (ตราด)" -msgstr "" - -#: i18n/states/TH.php:84 -#@ woocommerce -msgid "Ubon Ratchathani (อุบลราชธานี)" -msgstr "" - -#: i18n/states/TH.php:85 -#@ woocommerce -msgid "Udon Thani (อุดรธานี)" -msgstr "" - -#: i18n/states/TH.php:86 -#@ woocommerce -msgid "Uthai Thani (อุทัยธานี)" -msgstr "" - -#: i18n/states/TH.php:87 -#@ woocommerce -msgid "Uttaradit (อุตรดิตถ์)" -msgstr "" - -#: i18n/states/TH.php:88 -#@ woocommerce -msgid "Yala (ยะลา)" -msgstr "" - -#: i18n/states/TH.php:89 -#@ woocommerce -msgid "Yasothon (ยโสธร)" -msgstr "" - -#: i18n/states/US.php:13 -#@ woocommerce -msgid "Alabama" -msgstr "" - -#: i18n/states/US.php:14 -#@ woocommerce -msgid "Alaska" -msgstr "" - -#: i18n/states/US.php:15 -#@ woocommerce -msgid "Arizona" -msgstr "" - -#: i18n/states/US.php:16 -#@ woocommerce -msgid "Arkansas" -msgstr "" - -#: i18n/states/US.php:17 -#@ woocommerce -msgid "California" -msgstr "" - -#: i18n/states/US.php:18 -#@ woocommerce -msgid "Colorado" -msgstr "" - -#: i18n/states/US.php:19 -#@ woocommerce -msgid "Connecticut" -msgstr "" - -#: i18n/states/US.php:20 -#@ woocommerce -msgid "Delaware" -msgstr "" - -#: i18n/states/US.php:21 -#@ woocommerce -msgid "District Of Columbia" -msgstr "" - -#: i18n/states/US.php:22 -#@ woocommerce -msgid "Florida" -msgstr "" - -#: i18n/states/US.php:24 -#@ woocommerce -msgid "Hawaii" -msgstr "" - -#: i18n/states/US.php:25 -#@ woocommerce -msgid "Idaho" -msgstr "" - -#: i18n/states/US.php:26 -#@ woocommerce -msgid "Illinois" -msgstr "" - -#: i18n/states/US.php:27 -#@ woocommerce -msgid "Indiana" -msgstr "" - -#: i18n/states/US.php:28 -#@ woocommerce -msgid "Iowa" -msgstr "" - -#: i18n/states/US.php:29 -#@ woocommerce -msgid "Kansas" -msgstr "" - -#: i18n/states/US.php:30 -#@ woocommerce -msgid "Kentucky" -msgstr "" - -#: i18n/states/US.php:31 -#@ woocommerce -msgid "Louisiana" -msgstr "" - -#: i18n/states/US.php:32 -#@ woocommerce -msgid "Maine" -msgstr "" - -#: i18n/states/US.php:33 -#@ woocommerce -msgid "Maryland" -msgstr "" - -#: i18n/states/US.php:34 -#@ woocommerce -msgid "Massachusetts" -msgstr "" - -#: i18n/states/US.php:35 -#@ woocommerce -msgid "Michigan" -msgstr "" - -#: i18n/states/US.php:36 -#@ woocommerce -msgid "Minnesota" -msgstr "" - -#: i18n/states/US.php:37 -#@ woocommerce -msgid "Mississippi" -msgstr "" - -#: i18n/states/US.php:38 -#@ woocommerce -msgid "Missouri" -msgstr "" - -#: i18n/states/US.php:39 -#@ woocommerce -msgid "Montana" -msgstr "" - -#: i18n/states/US.php:40 -#@ woocommerce -msgid "Nebraska" -msgstr "" - -#: i18n/states/US.php:41 -#@ woocommerce -msgid "Nevada" -msgstr "" - -#: i18n/states/US.php:42 -#@ woocommerce -msgid "New Hampshire" -msgstr "" - -#: i18n/states/US.php:43 -#@ woocommerce -msgid "New Jersey" -msgstr "" - -#: i18n/states/US.php:44 -#@ woocommerce -msgid "New Mexico" -msgstr "" - -#: i18n/states/US.php:45 -#@ woocommerce -msgid "New York" -msgstr "" - -#: i18n/states/US.php:46 -#@ woocommerce -msgid "North Carolina" -msgstr "" - -#: i18n/states/US.php:47 -#@ woocommerce -msgid "North Dakota" -msgstr "" - -#: i18n/states/US.php:48 -#@ woocommerce -msgid "Ohio" -msgstr "" - -#: i18n/states/US.php:49 -#@ woocommerce -msgid "Oklahoma" -msgstr "" - -#: i18n/states/US.php:50 -#@ woocommerce -msgid "Oregon" -msgstr "" - -#: i18n/states/US.php:51 -#@ woocommerce -msgid "Pennsylvania" -msgstr "" - -#: i18n/states/US.php:52 -#@ woocommerce -msgid "Rhode Island" -msgstr "" - -#: i18n/states/US.php:53 -#@ woocommerce -msgid "South Carolina" -msgstr "" - -#: i18n/states/US.php:54 -#@ woocommerce -msgid "South Dakota" -msgstr "" - -#: i18n/states/US.php:55 -#@ woocommerce -msgid "Tennessee" -msgstr "" - -#: i18n/states/US.php:56 -#@ woocommerce -msgid "Texas" -msgstr "" - -#: i18n/states/US.php:57 -#@ woocommerce -msgid "Utah" -msgstr "" - -#: i18n/states/US.php:58 -#@ woocommerce -msgid "Vermont" -msgstr "" - -#: i18n/states/US.php:59 -#@ woocommerce -msgid "Virginia" -msgstr "" - -#: i18n/states/US.php:60 -#@ woocommerce -msgid "Washington" -msgstr "" - -#: i18n/states/US.php:61 -#@ woocommerce -msgid "West Virginia" -msgstr "" - -#: i18n/states/US.php:62 -#@ woocommerce -msgid "Wisconsin" -msgstr "" - -#: i18n/states/US.php:63 -#@ woocommerce -msgid "Wyoming" -msgstr "" - -#: i18n/states/US.php:64 -#@ woocommerce -msgid "Armed Forces (AA)" -msgstr "" - -#: i18n/states/US.php:65 -#@ woocommerce -msgid "Armed Forces (AE)" -msgstr "" - -#: i18n/states/US.php:66 -#@ woocommerce -msgid "Armed Forces (AP)" -msgstr "" - -#: i18n/states/ZA.php:13 -#@ woocommerce -msgid "Eastern Cape" -msgstr "" - -#: i18n/states/ZA.php:14 -#@ woocommerce -msgid "Free State" -msgstr "" - -#: i18n/states/ZA.php:15 -#@ woocommerce -msgid "Gauteng" -msgstr "" - -#: i18n/states/ZA.php:16 -#@ woocommerce -msgid "KwaZulu-Natal" -msgstr "" - -#: i18n/states/ZA.php:17 -#@ woocommerce -msgid "Limpopo" -msgstr "" - -#: i18n/states/ZA.php:18 -#@ woocommerce -msgid "Mpumalanga" -msgstr "" - -#: i18n/states/ZA.php:19 -#@ woocommerce -msgid "Northern Cape" -msgstr "" - -#: i18n/states/ZA.php:20 -#@ woocommerce -msgid "North West" -msgstr "" - -#: i18n/states/ZA.php:21 -#@ woocommerce -msgid "Western Cape" -msgstr "" - -#: i18n/strings.php:16 -#@ woocommerce -msgid "pending" -msgstr "" - -#: i18n/strings.php:17 -#@ woocommerce -msgid "failed" -msgstr "" - -#: i18n/strings.php:18 -#@ woocommerce -msgid "on-hold" -msgstr "" - -#: i18n/strings.php:19 -#@ woocommerce -msgid "processing" -msgstr "" - -#: i18n/strings.php:20 -#@ woocommerce -msgid "completed" -msgstr "" - -#: i18n/strings.php:21 -#@ woocommerce -msgid "refunded" -msgstr "" - -#: i18n/strings.php:22 -#@ woocommerce -msgid "cancelled" -msgstr "" - -#: templates/loop/no-products-found.php:14 -#: templates/loop-shop.php:40 -#@ woocommerce -msgid "No products found which match your selection." -msgstr "" - -#: admin/post-types/product.php:96 -#: admin/post-types/product.php:568 -#: admin/post-types/product.php:787 -#: admin/woocommerce-admin-functions.php:196 -#: templates/cart/cart.php:29 -#: templates/emails/admin-new-order.php:24 -#: templates/emails/customer-completed-order.php:25 -#: templates/emails/customer-invoice.php:29 -#: templates/emails/customer-note.php:29 -#: templates/emails/customer-processing-order.php:25 -#@ woocommerce -msgid "Price" -msgstr "" - -#: admin/woocommerce-admin-functions.php:195 -#: templates/cart/cart.php:30 -#: templates/emails/admin-new-order.php:23 -#: templates/emails/customer-completed-order.php:24 -#: templates/emails/customer-invoice.php:28 -#: templates/emails/customer-note.php:28 -#: templates/emails/customer-processing-order.php:24 -#@ woocommerce -msgid "Quantity" -msgstr "" - -#: admin/post-types/writepanels/order-fee-html.php:43 -#: admin/post-types/writepanels/order-item-html.php:110 -#: admin/woocommerce-admin-reports.php:1546 -#: admin/woocommerce-admin-reports.php:1599 -#: admin/woocommerce-admin-reports.php:2370 -#: admin/woocommerce-admin-reports.php:2539 -#: admin/woocommerce-admin-reports.php:2617 -#: templates/cart/cart.php:31 -#: templates/checkout/review-order.php:22 -#: templates/myaccount/my-orders.php:35 -#: templates/order/order-details.php:21 -#@ woocommerce -msgid "Total" -msgstr "" - -#: templates/cart/cart.php:47 -#@ woocommerce -msgid "Remove this item" -msgstr "" - -#: templates/cart/cart.php:100 -#: templates/single-product/add-to-cart/quantity.php:13 -#@ woocommerce -msgctxt "Product quantity input tooltip" -msgid "Qty" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1531 -#: templates/cart/cart.php:127 -#: woocommerce.php:1062 -#@ woocommerce -msgid "Coupon" -msgstr "" - -#: templates/cart/cart.php:127 -#: templates/checkout/form-coupon.php:29 -#@ woocommerce -msgid "Apply Coupon" -msgstr "" - -#: templates/cart/cart.php:134 -#@ woocommerce -msgid "Update Cart" -msgstr "Update Basket" - -#: templates/cart/cart.php:134 -#@ woocommerce -msgid "Proceed to Checkout →" -msgstr "" - -#: templates/cart/cross-sells.php:40 -#@ woocommerce -msgid "You may be interested in…" -msgstr "" - -#: templates/cart/cart-empty.php:14 -#@ woocommerce -msgid "Your cart is currently empty." -msgstr "Your basket is currently empty." - -#: templates/cart/cart-empty.php:18 -#@ woocommerce -msgid "← Return To Shop" -msgstr "" - -#: templates/cart/mini-cart.php:55 -#@ woocommerce -msgid "No products in the cart." -msgstr "No products in the basket." - -#: admin/post-types/writepanels/order-item-html.php:112 -#: templates/cart/mini-cart.php:63 -#: templates/cart/totals.php:92 -#: templates/checkout/review-order.php:93 -#@ woocommerce -msgid "Subtotal" -msgstr "" - -#: templates/cart/mini-cart.php:69 -#@ woocommerce -msgid "Checkout →" -msgstr "" - -#: templates/cart/shipping-calculator.php:20 -#@ woocommerce -msgid "Calculate Shipping" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:175 -#: admin/post-types/writepanels/writepanel-order_data.php:265 -#: templates/cart/shipping-calculator.php:24 -#: woocommerce-template.php:1327 -#@ woocommerce -msgid "Select a country…" -msgstr "" - -#: templates/cart/shipping-calculator.php:50 -#: woocommerce-template.php:1377 -#@ woocommerce -msgid "Select a state…" -msgstr "" - -#: templates/cart/shipping-calculator.php:42 -#: templates/cart/shipping-calculator.php:50 -#: templates/cart/shipping-calculator.php:61 -#, fuzzy -#@ woocommerce -msgid "State / county" -msgstr "" - -#: templates/cart/shipping-calculator.php:71 -#@ woocommerce -msgid "Update Totals" -msgstr "" - -#: templates/cart/shipping-methods.php:32 -#@ woocommerce -msgid "Free" -msgstr "" - -#: templates/cart/shipping-methods.php:67 -#@ woocommerce -msgid "Please fill in your details to see available shipping methods." -msgstr "" - -#: templates/cart/shipping-methods.php:69 -#@ woocommerce -msgid "Sorry, it seems that there are no available shipping methods for your state. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "" - -#: templates/cart/totals.php:22 -#@ woocommerce -msgid "Cart Totals" -msgstr "Basket Totals" - -#: templates/cart/totals.php:28 -#: templates/checkout/review-order.php:27 -#@ woocommerce -msgid "Cart Subtotal" -msgstr "Basket Subtotal" - -#: templates/cart/totals.php:35 -#: templates/checkout/review-order.php:34 -#: woocommerce.php:1655 -#@ woocommerce -msgid "Cart Discount" -msgstr "Basket Discount" - -#: templates/cart/totals.php:35 -#: templates/cart/totals.php:120 -#@ woocommerce -msgid "[Remove]" -msgstr "" - -#: admin/post-types/shop_order.php:46 -#: admin/post-types/writepanels/writepanel-order_data.php:536 -#: admin/post-types/writepanels/writepanel-product_data.php:81 -#: admin/settings/settings-tax-rates.php:52 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-content.php:49 -#: admin/woocommerce-admin-settings.php:185 -#: templates/cart/totals.php:46 -#: templates/checkout/review-order.php:45 -#@ woocommerce -msgid "Shipping" -msgstr "" - -#: templates/cart/totals.php:120 -#: templates/checkout/review-order.php:124 -#@ woocommerce -msgid "Order Discount" -msgstr "" - -#: admin/post-types/shop_order.php:47 -#: templates/cart/totals.php:129 -#: templates/checkout/review-order.php:133 -#@ woocommerce -msgid "Order Total" -msgstr "" - -#: templates/cart/totals.php:161 -#, php-format -#@ woocommerce -msgid " (taxes estimated for %s)" -msgstr "" - -#: templates/cart/totals.php:163 -#, php-format -#@ woocommerce -msgid "Note: Shipping and taxes are estimated%s and will be updated during checkout based on your billing and shipping information." -msgstr "" - -#: templates/cart/totals.php:175 -#@ woocommerce -msgid "No shipping methods were found; please recalculate your shipping and enter your state/county and zip/postcode to ensure there are no other available methods for your location." -msgstr "" - -#: templates/cart/totals.php:183 -#, php-format -#@ woocommerce -msgid "Sorry, it seems that there are no available shipping methods for your location (%s)." -msgstr "" - -#: templates/cart/totals.php:185 -#@ woocommerce -msgid "If you require assistance or wish to make alternate arrangements please contact us." -msgstr "" - -#: templates/checkout/cart-errors.php:16 -#@ woocommerce -msgid "There are some issues with the items in your cart (shown above). Please go back to the cart page and resolve these issues before checking out." -msgstr "There are some issues with the items in your basket (shown above). Please go back to the basket page and resolve these issues before checking out." - -#: templates/checkout/cart-errors.php:20 -#@ woocommerce -msgid "← Return To Cart" -msgstr "← Return To Basket" - -#: templates/checkout/form-billing.php:17 -#@ woocommerce -msgid "Billing & Shipping" -msgstr "" - -#: admin/woocommerce-admin-users.php:26 -#: templates/checkout/form-billing.php:21 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:19 -#: templates/myaccount/my-address.php:25 -#: templates/order/order-details.php:106 -#@ woocommerce -msgid "Billing Address" -msgstr "" - -#: templates/checkout/form-billing.php:42 -#@ woocommerce -msgid "Create an account?" -msgstr "" - -#: templates/checkout/form-billing.php:51 -#@ woocommerce -msgid "Create an account by entering the information below. If you are a returning customer please login at the top of the page." -msgstr "" - -#: templates/checkout/form-checkout.php:20 -#@ woocommerce -msgid "You must be logged in to checkout." -msgstr "" - -#: templates/checkout/form-checkout.php:51 -#@ woocommerce -msgid "Your order" -msgstr "" - -#: templates/checkout/form-coupon.php:17 -#@ woocommerce -msgid "Have a coupon?" -msgstr "" - -#: templates/checkout/form-coupon.php:20 -#@ woocommerce -msgid "Click here to enter your code" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:100 -#: templates/checkout/form-coupon.php:25 -#@ woocommerce -msgid "Coupon code" -msgstr "" - -#: templates/checkout/form-login.php:17 -#@ woocommerce -msgid "Click here to login" -msgstr "" - -#: templates/checkout/form-login.php:22 -#@ woocommerce -msgid "If you have shopped with us before, please enter your details in the boxes below. If you are a new customer please proceed to the Billing & Shipping section." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:347 -#: templates/checkout/form-pay.php:20 -#@ woocommerce -msgid "Qty" -msgstr "" - -#: templates/checkout/form-pay.php:21 -#@ woocommerce -msgid "Totals" -msgstr "" - -#: templates/checkout/form-pay.php:78 -#@ woocommerce -msgid "Sorry, it seems that there are no available payment methods for your location. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "" - -#: templates/checkout/form-pay.php:87 -#@ woocommerce -msgid "Pay for order" -msgstr "" - -#: templates/checkout/form-shipping.php:32 -#@ woocommerce -msgid "Ship to billing address?" -msgstr "" - -#: admin/woocommerce-admin-users.php:27 -#: templates/checkout/form-shipping.php:35 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:20 -#: templates/order/order-details.php:121 -#@ woocommerce -msgid "Shipping Address" -msgstr "" - -#: templates/checkout/form-shipping.php:59 -#: templates/single-product/tabs/additional-information.php:14 -#: woocommerce-template.php:756 -#@ woocommerce -msgid "Additional Information" -msgstr "" - -#: templates/checkout/review-order.php:217 -#@ woocommerce -msgid "Please fill in your details above to see available payment methods." -msgstr "" - -#: templates/checkout/review-order.php:219 -#@ woocommerce -msgid "Sorry, it seems that there are no available payment methods for your state. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "" - -#: templates/checkout/review-order.php:228 -#@ woocommerce -msgid "Since your browser does not support JavaScript, or it is disabled, please ensure you click the Update Totals button before placing your order. You may be charged more than the amount stated above if you fail to do so." -msgstr "" - -#: templates/checkout/review-order.php:228 -#@ woocommerce -msgid "Update totals" -msgstr "" - -#: templates/checkout/review-order.php:234 -#@ woocommerce -msgid "Place order" -msgstr "" - -#: templates/checkout/review-order.php:238 -#@ woocommerce -msgid "I have read and accept the" -msgstr "" - -#: templates/checkout/review-order.php:238 -#@ woocommerce -msgid "terms & conditions" -msgstr "" - -#: templates/checkout/thankyou.php:18 -#@ woocommerce -msgid "Unfortunately your order cannot be processed as the originating bank/merchant has declined your transaction." -msgstr "" - -#: templates/checkout/thankyou.php:22 -#@ woocommerce -msgid "Please attempt your purchase again or go to your account page." -msgstr "" - -#: templates/checkout/thankyou.php:24 -#@ woocommerce -msgid "Please attempt your purchase again." -msgstr "" - -#: templates/checkout/thankyou.php:36 -#: templates/checkout/thankyou.php:67 -#@ woocommerce -msgid "Thank you. Your order has been received." -msgstr "" - -#: templates/emails/admin-new-order.php:13 -#: templates/emails/plain/admin-new-order.php:13 -#, php-format -#@ woocommerce -msgid "You have received an order from %s. Their order is as follows:" -msgstr "" - -#: templates/emails/admin-new-order.php:17 -#, php-format -#@ woocommerce -msgid "Order: %s" -msgstr "" - -#: admin/woocommerce-admin-functions.php:214 -#: templates/emails/admin-new-order.php:50 -#: templates/emails/customer-completed-order.php:51 -#: templates/emails/customer-note.php:55 -#: templates/emails/customer-processing-order.php:51 -#: templates/emails/plain/admin-new-order.php:38 -#: templates/order/order-details.php:88 -#@ woocommerce -msgid "Customer details" -msgstr "" - -#: admin/post-types/shop_order.php:101 -#: templates/emails/admin-new-order.php:53 -#: templates/emails/customer-completed-order.php:54 -#: templates/emails/customer-note.php:58 -#: templates/emails/customer-processing-order.php:54 -#: templates/emails/plain/admin-new-order.php:41 -#: templates/emails/plain/customer-completed-order.php:41 -#: templates/emails/plain/customer-note.php:49 -#: templates/emails/plain/customer-processing-order.php:41 -#: templates/order/order-details.php:92 -#@ woocommerce -msgid "Email:" -msgstr "" - -#: admin/post-types/shop_order.php:104 -#: templates/emails/admin-new-order.php:56 -#: templates/emails/customer-completed-order.php:57 -#: templates/emails/customer-note.php:61 -#: templates/emails/customer-processing-order.php:57 -#: templates/emails/plain/admin-new-order.php:44 -#: templates/emails/plain/customer-completed-order.php:44 -#: templates/emails/plain/customer-note.php:52 -#: templates/emails/plain/customer-processing-order.php:44 -#@ woocommerce -msgid "Tel:" -msgstr "" - -#: templates/emails/customer-completed-order.php:14 -#: templates/emails/plain/customer-completed-order.php:13 -#, php-format -#@ woocommerce -msgid "Hi there. Your recent order on %s has been completed. Your order details are shown below for your reference:" -msgstr "" - -#: templates/emails/customer-invoice.php:16 -#: templates/emails/plain/customer-invoice.php:14 -#, php-format -#@ woocommerce -msgid "An order has been created for you on %s. To pay for this order please use the following link: %s" -msgstr "" - -#: templates/emails/customer-invoice.php:16 -#@ woocommerce -msgid "pay" -msgstr "" - -#: templates/emails/customer-new-account.php:14 -#: templates/emails/plain/customer-new-account.php:13 -#, php-format -#@ woocommerce -msgid "Thanks for creating an account on %s. Your username is %s." -msgstr "" - -#: templates/emails/customer-new-account.php:16 -#: templates/emails/plain/customer-new-account.php:15 -#, php-format -#@ woocommerce -msgid "You can access your account area here: %s." -msgstr "" - -#: templates/emails/customer-note.php:14 -#: templates/emails/plain/customer-note.php:13 -#@ woocommerce -msgid "Hello, a note has just been added to your order:" -msgstr "" - -#: templates/emails/customer-note.php:18 -#: templates/emails/plain/customer-note.php:21 -#@ woocommerce -msgid "For your reference, your order details are shown below." -msgstr "" - -#: templates/emails/customer-processing-order.php:14 -#: templates/emails/plain/customer-processing-order.php:13 -#@ woocommerce -msgid "Your order has been received and is now being processed. Your order details are shown below for your reference:" -msgstr "" - -#: templates/emails/customer-reset-password.php:14 -#: templates/emails/plain/customer-reset-password.php:13 -#@ woocommerce -msgid "Someone requested that the password be reset for the following account:" -msgstr "" - -#: templates/emails/customer-reset-password.php:15 -#: templates/emails/plain/customer-reset-password.php:15 -#, php-format -#@ woocommerce -msgid "Username: %s" -msgstr "" - -#: templates/emails/customer-reset-password.php:16 -#: templates/emails/plain/customer-reset-password.php:16 -#@ woocommerce -msgid "If this was a mistake, just ignore this email and nothing will happen." -msgstr "" - -#: templates/emails/customer-reset-password.php:17 -#: templates/emails/plain/customer-reset-password.php:17 -#@ woocommerce -msgid "To reset your password, visit the following address:" -msgstr "" - -#: templates/emails/customer-reset-password.php:20 -#@ woocommerce -msgid "Click here to reset your password" -msgstr "" - -#: admin/woocommerce-admin-functions.php:220 -#: templates/emails/email-addresses.php:18 -#: templates/emails/plain/email-addresses.php:12 -#@ woocommerce -msgid "Billing address" -msgstr "" - -#: admin/woocommerce-admin-functions.php:227 -#: templates/emails/email-addresses.php:28 -#: templates/emails/plain/email-addresses.php:17 -#@ woocommerce -msgid "Shipping address" -msgstr "" - -#: templates/emails/email-order-items.php:40 -#, php-format -#@ woocommerce -msgid "Download %d:" -msgstr "" - -#: templates/emails/email-order-items.php:42 -#@ woocommerce -msgid "Download:" -msgstr "" - -#: templates/emails/plain/admin-new-order.php:19 -#: templates/emails/plain/customer-completed-order.php:19 -#: templates/emails/plain/customer-invoice.php:20 -#: templates/emails/plain/customer-note.php:27 -#: templates/emails/plain/customer-processing-order.php:19 -#, php-format -#@ woocommerce -msgid "Order number: %s" -msgstr "" - -#: templates/emails/plain/admin-new-order.php:20 -#: templates/emails/plain/customer-completed-order.php:20 -#: templates/emails/plain/customer-invoice.php:21 -#: templates/emails/plain/customer-note.php:28 -#: templates/emails/plain/customer-processing-order.php:20 -#, php-format -#@ woocommerce -msgid "Order date: %s" -msgstr "" - -#: templates/emails/plain/admin-new-order.php:20 -#@ woocommerce -msgid "jS F Y" -msgstr "" - -#: templates/emails/plain/customer-completed-order.php:38 -#: templates/emails/plain/customer-note.php:46 -#: templates/emails/plain/customer-processing-order.php:38 -#@ woocommerce -msgid "Your details" -msgstr "" - -#: templates/emails/plain/email-order-items.php:28 -#, php-format -#@ woocommerce -msgid "Quantity: %s" -msgstr "" - -#: templates/emails/plain/email-order-items.php:31 -#, php-format -#@ woocommerce -msgid "Cost: %s" -msgstr "" - -#: templates/loop/add-to-cart.php:17 -#: templates/loop/add-to-cart.php:41 -#: templates/loop/add-to-cart.php:50 -#@ woocommerce -msgid "Read More" -msgstr "" - -#: templates/loop/add-to-cart.php:33 -#@ woocommerce -msgid "Select options" -msgstr "" - -#: templates/loop/add-to-cart.php:37 -#@ woocommerce -msgid "View options" -msgstr "" - -#: templates/loop/result-count.php:28 -#@ woocommerce -msgid "Showing the single result" -msgstr "" - -#: templates/loop/result-count.php:30 -#, php-format -#@ woocommerce -msgid "Showing all %d results" -msgstr "" - -#: templates/loop/result-count.php:32 -#, php-format -#@ woocommerce -msgctxt "%1$d = first, %2$d = last, %3$d = total" -msgid "Showing %1$d–%2$d of %3$d results" -msgstr "" - -#: templates/loop/sale-flash.php:16 -#: templates/single-product/sale-flash.php:16 -#@ woocommerce -msgid "Sale!" -msgstr "" - -#: templates/loop/orderby.php:21 -#@ woocommerce -msgid "Default sorting" -msgstr "" - -#: admin/settings/settings-init.php:462 -#@ woocommerce -msgid "Sort by most recent" -msgstr "" - -#: templates/myaccount/form-change-password.php:20 -#: templates/myaccount/form-lost-password.php:31 -#@ woocommerce -msgid "New password" -msgstr "" - -#: templates/myaccount/form-change-password.php:24 -#: templates/myaccount/form-lost-password.php:35 -#@ woocommerce -msgid "Re-enter new password" -msgstr "" - -#: templates/myaccount/form-change-password.php:29 -#: templates/myaccount/form-lost-password.php:45 -#@ woocommerce -msgid "Save" -msgstr "" - -#: templates/myaccount/form-edit-address.php:43 -#@ woocommerce -msgid "Save Address" -msgstr "" - -#: templates/myaccount/form-login.php:26 -#: templates/myaccount/form-login.php:40 -#: templates/shop/form-login.php:31 -#@ woocommerce -msgid "Login" -msgstr "" - -#: templates/myaccount/form-login.php:50 -#: templates/shop/form-login.php:33 -#@ woocommerce -msgid "Lost Password?" -msgstr "" - -#: templates/myaccount/form-login.php:60 -#: templates/myaccount/form-login.php:101 -#@ woocommerce -msgid "Register" -msgstr "" - -#: templates/myaccount/form-login.php:66 -#@ woocommerce -msgid "Username" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:182 -#: admin/woocommerce-admin-users.php:187 -#: templates/myaccount/form-login.php:78 -#: templates/single-product-reviews.php:101 -#@ woocommerce -msgid "Email" -msgstr "" - -#: templates/myaccount/form-login.php:89 -#@ woocommerce -msgid "Re-enter password" -msgstr "" - -#: templates/myaccount/form-lost-password.php:22 -#@ woocommerce -msgid "Lost your password? Please enter your username or email address. You will receive a link to create a new password via email." -msgstr "" - -#: templates/myaccount/form-lost-password.php:28 -#@ woocommerce -msgid "Enter a new password below." -msgstr "" - -#: templates/myaccount/form-lost-password.php:45 -#@ woocommerce -msgid "Reset Password" -msgstr "" - -#: templates/myaccount/my-account.php:19 -#, php-format -#@ woocommerce -msgid "Hello, %s. From your account dashboard you can view your recent orders, manage your shipping and billing addresses and change your password." -msgstr "" - -#: templates/myaccount/my-address.php:17 -#@ woocommerce -msgid "My Addresses" -msgstr "" - -#: templates/myaccount/my-address.php:23 -#@ woocommerce -msgid "My Address" -msgstr "" - -#: templates/myaccount/my-address.php:35 -#@ woocommerce -msgid "The following addresses will be used on the checkout page by default." -msgstr "" - -#: admin/post-types/product.php:151 -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#: admin/post-types/writepanels/writepanel-order_data.php:387 -#: admin/post-types/writepanels/writepanel-product_data.php:1043 -#: admin/woocommerce-admin-attributes.php:322 -#: templates/myaccount/my-address.php:45 -#: woocommerce.php:917 -#: woocommerce.php:953 -#: woocommerce.php:990 -#: woocommerce.php:1028 -#: woocommerce.php:1066 -#@ default -#@ woocommerce -msgid "Edit" -msgstr "" - -#: templates/myaccount/my-address.php:64 -#@ woocommerce -msgid "You have not set up this type of address yet." -msgstr "" - -#: templates/myaccount/my-downloads.php:18 -#@ woocommerce -msgid "Available downloads" -msgstr "" - -#: templates/myaccount/my-downloads.php:27 -#, php-format -#@ woocommerce -msgid "%s download remaining" -msgid_plural "%s downloads remaining" -msgstr[0] "" -msgstr[1] "" - -#: templates/myaccount/my-orders.php:26 -#@ woocommerce -msgid "Recent Orders" -msgstr "" - -#: admin/post-types/shop_order.php:44 -#: templates/myaccount/my-orders.php:32 -#: woocommerce.php:1025 -#@ woocommerce -msgid "Order" -msgstr "" - -#: admin/post-types/shop_order.php:43 -#: admin/settings/settings-payment-gateways.php:29 -#: admin/settings/settings-shipping-methods.php:31 -#: templates/myaccount/my-orders.php:34 -#@ woocommerce -msgid "Status" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:138 -#: admin/post-types/writepanels/writepanel-product_data.php:1064 -#: templates/myaccount/my-orders.php:77 -#@ woocommerce -msgid "Cancel" -msgstr "" - -#: admin/post-types/product.php:167 -#: admin/post-types/shop_order.php:171 -#: templates/myaccount/my-orders.php:82 -#@ default -#@ woocommerce -msgid "View" -msgstr "" - -#: templates/order/form-tracking.php:17 -#@ woocommerce -msgid "To track your order please enter your Order ID in the box below and press return. This was given to you on your receipt and in the confirmation email you should have received." -msgstr "" - -#: templates/order/form-tracking.php:19 -#@ woocommerce -msgid "Order ID" -msgstr "" - -#: templates/order/form-tracking.php:19 -#@ woocommerce -msgid "Found in your order confirmation email." -msgstr "" - -#: templates/order/form-tracking.php:20 -#@ woocommerce -msgid "Billing Email" -msgstr "" - -#: templates/order/form-tracking.php:20 -#@ woocommerce -msgid "Email you used during checkout." -msgstr "" - -#: templates/order/form-tracking.php:23 -#@ woocommerce -msgid "Track" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:59 -#: templates/order/order-details.php:16 -#@ woocommerce -msgid "Order Details" -msgstr "" - -#: templates/order/order-details.php:57 -#, php-format -#@ woocommerce -msgid "Download file %s →" -msgstr "" - -#: templates/order/order-details.php:81 -#@ woocommerce -msgid "Order Again" -msgstr "" - -#: templates/order/order-details.php:93 -#@ woocommerce -msgid "Telephone:" -msgstr "" - -#: templates/order/tracking.php:18 -#, php-format -#@ woocommerce -msgid "Order %s which was made %s has the status “%s”" -msgstr "" - -#: templates/order/tracking.php:18 -#@ woocommerce -msgid "ago" -msgstr "" - -#: templates/order/tracking.php:20 -#@ woocommerce -msgid "and was completed" -msgstr "" - -#: templates/order/tracking.php:20 -#@ woocommerce -msgid " ago" -msgstr "" - -#: templates/shop/breadcrumb.php:66 -#@ woocommerce -msgid "Products tagged “" -msgstr "" - -#: templates/shop/breadcrumb.php:94 -#: templates/shop/breadcrumb.php:196 -#@ woocommerce -msgid "Search results for “" -msgstr "" - -#: templates/shop/breadcrumb.php:154 -#@ woocommerce -msgid "Error 404" -msgstr "" - -#: templates/shop/breadcrumb.php:200 -#@ woocommerce -msgid "Posts tagged “" -msgstr "" - -#: templates/shop/breadcrumb.php:205 -#@ woocommerce -msgid "Author:" -msgstr "" - -#: templates/shop/breadcrumb.php:210 -#@ woocommerce -msgid "Page" -msgstr "" - -#: templates/single-product/add-to-cart/variable.php:24 -#@ woocommerce -msgid "Choose an option" -msgstr "" - -#: templates/single-product/add-to-cart/variable.php:64 -#@ woocommerce -msgid "Clear selection" -msgstr "" - -#: templates/single-product/meta.php:22 -#@ product_cat -msgid "Category:" -msgid_plural "Categories:" -msgstr[0] "" -msgstr[1] "" - -#: templates/single-product/meta.php:24 -#@ product_tag -msgid "Tag:" -msgid_plural "Tags:" -msgstr[0] "" -msgstr[1] "" - -#: admin/post-types/product.php:588 -#: admin/post-types/product.php:837 -#: admin/post-types/writepanels/variation-admin-html.php:90 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:273 -#: templates/single-product/product-attributes.php:28 -#@ woocommerce -msgid "Weight" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:284 -#: templates/single-product/product-attributes.php:37 -#@ woocommerce -msgid "Dimensions" -msgstr "" - -#: templates/single-product/related.php:36 -#@ woocommerce -msgid "Related Products" -msgstr "" - -#: templates/single-product/review.php:33 -#@ woocommerce -msgid "Your comment is awaiting approval" -msgstr "" - -#: templates/single-product/review.php:40 -#@ woocommerce -msgid "verified owner" -msgstr "" - -#: templates/single-product/tabs/description.php:14 -#@ woocommerce -msgid "Product Description" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:64 -#: templates/single-product-reviews.php:51 -#: templates/single-product-reviews.php:57 -#@ woocommerce -msgid "Reviews" -msgstr "" - -#: templates/single-product/up-sells.php:41 -#@ woocommerce -msgid "You may also like…" -msgstr "" - -#: templates/single-product-reviews.php:45 -#, php-format -#@ woocommerce -msgid "%s review for %s" -msgid_plural "%s reviews for %s" -msgstr[0] "" -msgstr[1] "" - -#: templates/single-product-reviews.php:73 -#@ woocommerce -msgid " Previous" -msgstr "" - -#: templates/single-product-reviews.php:74 -#@ woocommerce -msgid "Next " -msgstr "" - -#: templates/single-product-reviews.php:78 -#@ woocommerce -msgid "Add Review" -msgstr "" - -#: templates/single-product-reviews.php:80 -#@ woocommerce -msgid "Add a review" -msgstr "" - -#: templates/single-product-reviews.php:84 -#@ woocommerce -msgid "Be the first to review" -msgstr "" - -#: templates/single-product-reviews.php:86 -#@ woocommerce -msgid "There are no reviews yet, would you like to submit yours?" -msgstr "" - -#: templates/single-product-reviews.php:104 -#@ woocommerce -msgid "Submit Review" -msgstr "" - -#: templates/single-product-reviews.php:111 -#@ woocommerce -msgid "Rating" -msgstr "" - -#: templates/single-product-reviews.php:112 -#@ woocommerce -msgid "Rate…" -msgstr "" - -#: templates/single-product-reviews.php:113 -#@ woocommerce -msgid "Perfect" -msgstr "" - -#: templates/single-product-reviews.php:114 -#@ woocommerce -msgid "Good" -msgstr "" - -#: templates/single-product-reviews.php:115 -#@ woocommerce -msgid "Average" -msgstr "" - -#: templates/single-product-reviews.php:116 -#@ woocommerce -msgid "Not that bad" -msgstr "" - -#: templates/single-product-reviews.php:117 -#@ woocommerce -msgid "Very Poor" -msgstr "" - -#: templates/single-product-reviews.php:122 -#@ woocommerce -msgid "Your Review" -msgstr "" - -#: woocommerce-ajax.php:111 -#@ woocommerce -msgid "Please enter your username and password to login." -msgstr "" - -#: woocommerce-ajax.php:191 -#@ woocommerce -msgid "Sorry, your session has expired." -msgstr "" - -#: woocommerce-ajax.php:191 -#@ woocommerce -msgid "Return to homepage →" -msgstr "" - -#: woocommerce-ajax.php:332 -#: woocommerce-ajax.php:366 -#: woocommerce-ajax.php:389 -#@ woocommerce -msgid "You do not have sufficient permissions to access this page." -msgstr "" - -#: woocommerce-ajax.php:334 -#: woocommerce-ajax.php:367 -#: woocommerce-ajax.php:390 -#@ woocommerce -msgid "You have taken too long. Please go back and retry." -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:113 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:53 -#: woocommerce-ajax.php:626 -#@ woocommerce -msgid "Same as parent" -msgstr "" - -#: admin/post-types/writepanels/order-fee-html.php:25 -#: admin/post-types/writepanels/order-item-html.php:91 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:54 -#: admin/post-types/writepanels/writepanel-product_data.php:186 -#: admin/settings/settings-init.php:982 -#: admin/settings/settings-tax-rates.php:29 -#: admin/woocommerce-admin-settings.php:226 -#: woocommerce-ajax.php:627 -#@ woocommerce -msgid "Standard" -msgstr "" - -#: woocommerce-ajax.php:1215 -#: woocommerce-ajax.php:1216 -#, php-format -#@ woocommerce -msgid "Item #%s stock increased from %s to %s." -msgstr "" - -#: woocommerce-ajax.php:1244 -#@ woocommerce -msgid "Value" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -#: woocommerce-ajax.php:1558 -#@ woocommerce -msgid "Delete note" -msgstr "" - -#: woocommerce-core-functions.php:1189 -#: woocommerce-core-functions.php:1215 -#@ woocommerce -msgid "Download Permissions Granted" -msgstr "" - -#: woocommerce-core-functions.php:1328 -#@ woocommerce -msgctxt "slug" -msgid "uncategorized" -msgstr "" - -#: woocommerce-core-functions.php:1517 -#@ woocommerce -msgid "Select a category" -msgstr "" - -#: woocommerce-core-functions.php:1521 -#@ woocommerce -msgid "Uncategorized" -msgstr "" - -#: woocommerce-core-functions.php:1893 -#@ woocommerce -msgid "Customer" -msgstr "" - -#: woocommerce-core-functions.php:1900 -#@ woocommerce -msgid "Shop Manager" -msgstr "" - -#: woocommerce-core-functions.php:2433 -#@ woocommerce -msgid "Unpaid order cancelled - time limit reached." -msgstr "" - -#: woocommerce-core-functions.php:2485 -#: woocommerce-functions.php:703 -#@ woocommerce -msgid "Please enter a username." -msgstr "" - -#: woocommerce-functions.php:208 -#: woocommerce-functions.php:253 -#@ woocommerce -msgid "Cart updated." -msgstr "Basket updated." - -#: woocommerce-functions.php:239 -#, php-format -#@ woocommerce -msgid "You can only have 1 %s in your cart." -msgstr "You can only have 1 %s in your basket." - -#: woocommerce-functions.php:296 -#: woocommerce-functions.php:343 -#@ woocommerce -msgid "Please choose product options…" -msgstr "" - -#: woocommerce-functions.php:378 -#@ woocommerce -msgid "Please choose the quantity of items you wish to add to your cart…" -msgstr "Please choose the quantity of items you wish to add to your basket…" - -#: woocommerce-functions.php:386 -#@ woocommerce -msgid "Please choose a product to add to your cart…" -msgstr "Please choose a product to add to your basket…" - -#: woocommerce-functions.php:455 -#, php-format -#@ woocommerce -msgid "Added "%s" to your cart." -msgstr "Added "%s" to your basket." - -#: woocommerce-functions.php:455 -#@ default -msgid "" and "" -msgstr "" - -#: woocommerce-functions.php:458 -#, php-format -#@ woocommerce -msgid ""%s" was successfully added to your cart." -msgstr ""%s" was successfully added to your basket." - -#: woocommerce-functions.php:466 -#@ woocommerce -msgid "Continue Shopping →" -msgstr "" - -#: woocommerce-functions.php:633 -#@ woocommerce -msgid "Username is required." -msgstr "" - -#: woocommerce-functions.php:634 -#: woocommerce-functions.php:729 -#@ woocommerce -msgid "Password is required." -msgstr "" - -#: woocommerce-functions.php:705 -#@ woocommerce -msgid "This username is invalid because it uses illegal characters. Please enter a valid username." -msgstr "" - -#: woocommerce-functions.php:708 -#@ woocommerce -msgid "This username is already registered, please choose another one." -msgstr "" - -#: woocommerce-functions.php:720 -#@ woocommerce -msgid "Please type your e-mail address." -msgstr "" - -#: woocommerce-functions.php:722 -#@ woocommerce -msgid "The email address isn’t correct." -msgstr "" - -#: woocommerce-functions.php:725 -#@ woocommerce -msgid "This email is already registered, please choose another one." -msgstr "" - -#: woocommerce-functions.php:730 -#@ woocommerce -msgid "Re-enter your password." -msgstr "" - -#: woocommerce-functions.php:735 -#@ woocommerce -msgid "Anti-spam field was filled in." -msgstr "" - -#: woocommerce-functions.php:841 -#@ woocommerce -msgid "The cart has been filled with the items from your previous order." -msgstr "The basket has been filled with the items from your previous order." - -#: woocommerce-functions.php:867 -#@ woocommerce -msgid "Order cancelled by customer." -msgstr "" - -#: woocommerce-functions.php:870 -#@ woocommerce -msgid "Your order was cancelled." -msgstr "" - -#: woocommerce-functions.php:876 -#@ woocommerce -msgid "Your order is no longer pending and could not be cancelled. Please contact us if you need assistance." -msgstr "" - -#: woocommerce-functions.php:911 -#@ woocommerce -msgid "Invalid email address." -msgstr "" - -#: woocommerce-functions.php:911 -#: woocommerce-functions.php:933 -#: woocommerce-functions.php:953 -#: woocommerce-functions.php:959 -#: woocommerce-functions.php:963 -#: woocommerce-functions.php:966 -#: woocommerce-functions.php:996 -#: woocommerce-functions.php:1099 -#@ woocommerce -msgid "Go to homepage →" -msgstr "" - -#: woocommerce-functions.php:933 -#@ woocommerce -msgid "Invalid download." -msgstr "" - -#: woocommerce-functions.php:945 -#@ woocommerce -msgid "You must be logged in to download files." -msgstr "" - -#: woocommerce-functions.php:948 -#@ woocommerce -msgid "This is not your download link." -msgstr "" - -#: woocommerce-functions.php:953 -#@ woocommerce -msgid "Product no longer exists." -msgstr "" - -#: woocommerce-functions.php:963 -#@ woocommerce -msgid "Sorry, you have reached your download limit for this file" -msgstr "" - -#: woocommerce-functions.php:966 -#@ woocommerce -msgid "Sorry, this download has expired" -msgstr "" - -#: woocommerce-functions.php:1099 -#@ woocommerce -msgid "File not found" -msgstr "" - -#: woocommerce-functions.php:1209 -#@ woocommerce -msgid "New products" -msgstr "" - -#: woocommerce-functions.php:1217 -#, php-format -#@ woocommerce -msgid "New products added to %s" -msgstr "" - -#: woocommerce-functions.php:1225 -#, php-format -#@ woocommerce -msgid "New products tagged %s" -msgstr "" - -#: woocommerce-functions.php:1264 -#@ woocommerce -msgid "You have taken too long. Please go back and refresh the page." -msgstr "" - -#: woocommerce-functions.php:1267 -#@ woocommerce -msgid "Please rate the product." -msgstr "" - -#: admin/settings/settings-init.php:95 -#: woocommerce-template.php:196 -#@ woocommerce -msgid "This is a demo store for testing purposes — no orders shall be fulfilled." -msgstr "" - -#: woocommerce-template.php:215 -#, php-format -#@ woocommerce -msgid "Search Results: “%s”" -msgstr "" - -#: woocommerce-template.php:218 -#, php-format -#@ woocommerce -msgid " – Page %s" -msgstr "" - -#: woocommerce-template.php:990 -#@ woocommerce -msgctxt "breadcrumb" -msgid "Home" -msgstr "" - -#: woocommerce-template.php:1288 -#: woocommerce.php:1175 -#@ woocommerce -msgid "required" -msgstr "" - -#: woocommerce-template.php:1334 -#@ woocommerce -msgid "Update country" -msgstr "" - -#: woocommerce-template.php:1489 -#@ woocommerce -msgid "Search for:" -msgstr "" - -#: woocommerce-template.php:1490 -#@ woocommerce -msgid "Search for products" -msgstr "" - -#: admin/post-types/product.php:620 -#: admin/post-types/product.php:893 -#: admin/post-types/writepanels/writepanel-product_data.php:1030 -#: woocommerce-template.php:1491 -#: woocommerce.php:913 -#@ woocommerce -msgid "Search" -msgstr "" - -#: admin/includes/updates/woocommerce-update-2.0.php:50 -#: admin/woocommerce-admin-init.php:895 -#: woocommerce.php:752 -#@ woocommerce -msgctxt "slug" -msgid "product-category" -msgstr "" - -#: admin/includes/updates/woocommerce-update-2.0.php:51 -#: admin/woocommerce-admin-init.php:908 -#: woocommerce.php:753 -#@ woocommerce -msgctxt "slug" -msgid "product-tag" -msgstr "" - -#: admin/includes/updates/woocommerce-update-2.0.php:59 -#: woocommerce.php:755 -#@ woocommerce -msgctxt "slug" -msgid "product" -msgstr "" - -#: woocommerce.php:791 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Categories" -msgstr "" - -#: woocommerce.php:792 -#@ woocommerce -msgid "Search Product Categories" -msgstr "" - -#: woocommerce.php:793 -#@ woocommerce -msgid "All Product Categories" -msgstr "" - -#: woocommerce.php:794 -#@ woocommerce -msgid "Parent Product Category" -msgstr "" - -#: woocommerce.php:795 -#@ woocommerce -msgid "Parent Product Category:" -msgstr "" - -#: woocommerce.php:796 -#@ woocommerce -msgid "Edit Product Category" -msgstr "" - -#: woocommerce.php:797 -#@ woocommerce -msgid "Update Product Category" -msgstr "" - -#: woocommerce.php:798 -#@ woocommerce -msgid "Add New Product Category" -msgstr "" - -#: woocommerce.php:799 -#@ woocommerce -msgid "New Product Category Name" -msgstr "" - -#: woocommerce.php:827 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Tags" -msgstr "" - -#: woocommerce.php:828 -#@ woocommerce -msgid "Search Product Tags" -msgstr "" - -#: woocommerce.php:829 -#@ woocommerce -msgid "All Product Tags" -msgstr "" - -#: woocommerce.php:830 -#@ woocommerce -msgid "Parent Product Tag" -msgstr "" - -#: woocommerce.php:831 -#@ woocommerce -msgid "Parent Product Tag:" -msgstr "" - -#: woocommerce.php:832 -#@ woocommerce -msgid "Edit Product Tag" -msgstr "" - -#: woocommerce.php:833 -#@ woocommerce -msgid "Update Product Tag" -msgstr "" - -#: woocommerce.php:834 -#@ woocommerce -msgid "Add New Product Tag" -msgstr "" - -#: woocommerce.php:835 -#@ woocommerce -msgid "New Product Tag Name" -msgstr "" - -#: woocommerce.php:854 -#: woocommerce.php:856 -#@ woocommerce -msgid "Shipping Classes" -msgstr "" - -#: woocommerce.php:858 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Shipping Classes" -msgstr "" - -#: woocommerce.php:859 -#@ woocommerce -msgid "Search Shipping Classes" -msgstr "" - -#: woocommerce.php:860 -#@ woocommerce -msgid "All Shipping Classes" -msgstr "" - -#: woocommerce.php:861 -#@ woocommerce -msgid "Parent Shipping Class" -msgstr "" - -#: woocommerce.php:862 -#@ woocommerce -msgid "Parent Shipping Class:" -msgstr "" - -#: woocommerce.php:863 -#@ woocommerce -msgid "Edit Shipping Class" -msgstr "" - -#: woocommerce.php:864 -#@ woocommerce -msgid "Update Shipping Class" -msgstr "" - -#: woocommerce.php:865 -#@ woocommerce -msgid "Add New Shipping Class" -msgstr "" - -#: woocommerce.php:866 -#@ woocommerce -msgid "New Shipping Class Name" -msgstr "" - -#: woocommerce.php:914 -#@ woocommerce -msgid "All" -msgstr "" - -#: woocommerce.php:915 -#: woocommerce.php:916 -#@ woocommerce -msgid "Parent" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:276 -#: woocommerce.php:918 -#@ woocommerce -msgid "Update" -msgstr "" - -#: woocommerce.php:919 -#@ woocommerce -msgid "Add New" -msgstr "" - -#: woocommerce.php:920 -#@ woocommerce -msgid "New" -msgstr "" - -#: woocommerce.php:950 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Products" -msgstr "" - -#: woocommerce.php:951 -#@ woocommerce -msgid "Add Product" -msgstr "" - -#: woocommerce.php:952 -#@ woocommerce -msgid "Add New Product" -msgstr "" - -#: woocommerce.php:954 -#@ woocommerce -msgid "Edit Product" -msgstr "" - -#: woocommerce.php:955 -#@ woocommerce -msgid "New Product" -msgstr "" - -#: woocommerce.php:956 -#: woocommerce.php:957 -#@ woocommerce -msgid "View Product" -msgstr "" - -#: woocommerce.php:958 -#@ woocommerce -msgid "Search Products" -msgstr "" - -#: woocommerce.php:959 -#@ woocommerce -msgid "No Products found" -msgstr "" - -#: woocommerce.php:960 -#@ woocommerce -msgid "No Products found in trash" -msgstr "" - -#: woocommerce.php:961 -#@ woocommerce -msgid "Parent Product" -msgstr "" - -#: woocommerce.php:963 -#@ woocommerce -msgid "This is where you can add new products to your store." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -#: woocommerce.php:986 -#@ woocommerce -msgid "Variations" -msgstr "" - -#: woocommerce.php:987 -#@ woocommerce -msgid "Variation" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:193 -#: woocommerce.php:988 -#@ woocommerce -msgid "Add Variation" -msgstr "" - -#: woocommerce.php:989 -#@ woocommerce -msgid "Add New Variation" -msgstr "" - -#: woocommerce.php:991 -#@ woocommerce -msgid "Edit Variation" -msgstr "" - -#: woocommerce.php:992 -#@ woocommerce -msgid "New Variation" -msgstr "" - -#: woocommerce.php:993 -#: woocommerce.php:994 -#@ woocommerce -msgid "View Variation" -msgstr "" - -#: woocommerce.php:995 -#@ woocommerce -msgid "Search Variations" -msgstr "" - -#: woocommerce.php:996 -#@ woocommerce -msgid "No Variations found" -msgstr "" - -#: woocommerce.php:997 -#@ woocommerce -msgid "No Variations found in trash" -msgstr "" - -#: woocommerce.php:998 -#@ woocommerce -msgid "Parent Variation" -msgstr "" - -#: admin/woocommerce-admin-init.php:140 -#: admin/woocommerce-admin-init.php:142 -#: woocommerce.php:1015 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Orders" -msgstr "" - -#: admin/woocommerce-admin-content.php:68 -#: admin/woocommerce-admin-dashboard.php:142 -#: woocommerce.php:1024 -#@ woocommerce -msgid "Orders" -msgstr "" - -#: woocommerce.php:1026 -#@ woocommerce -msgid "Add Order" -msgstr "" - -#: woocommerce.php:1027 -#@ woocommerce -msgid "Add New Order" -msgstr "" - -#: woocommerce.php:1029 -#@ woocommerce -msgid "Edit Order" -msgstr "" - -#: woocommerce.php:1030 -#@ woocommerce -msgid "New Order" -msgstr "" - -#: woocommerce.php:1033 -#@ woocommerce -msgid "Search Orders" -msgstr "" - -#: woocommerce.php:1034 -#@ woocommerce -msgid "No Orders found" -msgstr "" - -#: woocommerce.php:1035 -#@ woocommerce -msgid "No Orders found in trash" -msgstr "" - -#: woocommerce.php:1036 -#@ woocommerce -msgid "Parent Orders" -msgstr "" - -#: woocommerce.php:1039 -#@ woocommerce -msgid "This is where store orders are stored." -msgstr "" - -#: admin/settings/settings-init.php:105 -#: admin/woocommerce-admin-content.php:61 -#: admin/woocommerce-admin-content.php:76 -#: admin/woocommerce-admin-reports.php:72 -#: woocommerce.php:1061 -#@ woocommerce -msgid "Coupons" -msgstr "" - -#: woocommerce.php:1063 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Coupons" -msgstr "" - -#: woocommerce.php:1064 -#@ woocommerce -msgid "Add Coupon" -msgstr "" - -#: woocommerce.php:1065 -#@ woocommerce -msgid "Add New Coupon" -msgstr "" - -#: woocommerce.php:1067 -#@ woocommerce -msgid "Edit Coupon" -msgstr "" - -#: woocommerce.php:1068 -#@ woocommerce -msgid "New Coupon" -msgstr "" - -#: woocommerce.php:1069 -#@ woocommerce -msgid "View Coupons" -msgstr "" - -#: woocommerce.php:1070 -#@ woocommerce -msgid "View Coupon" -msgstr "" - -#: woocommerce.php:1071 -#@ woocommerce -msgid "Search Coupons" -msgstr "" - -#: woocommerce.php:1072 -#@ woocommerce -msgid "No Coupons found" -msgstr "" - -#: woocommerce.php:1073 -#@ woocommerce -msgid "No Coupons found in trash" -msgstr "" - -#: woocommerce.php:1074 -#@ woocommerce -msgid "Parent Coupon" -msgstr "" - -#: woocommerce.php:1076 -#@ woocommerce -msgid "This is where you can add new coupons that customers can use in your store." -msgstr "" - -#: woocommerce.php:1172 -#@ woocommerce -msgid "Select an option…" -msgstr "" - -#: woocommerce.php:1173 -#@ woocommerce -msgid "Please select a rating" -msgstr "" - -#: woocommerce.php:1174 -#@ woocommerce -msgid "Sorry, no products matched your selection. Please choose a different combination." -msgstr "" - -#: woocommerce.php:1656 -#@ woocommerce -msgid "Cart % Discount" -msgstr "Basket % Discount" - -#: woocommerce.php:1657 -#@ woocommerce -msgid "Product Discount" -msgstr "" - -#: woocommerce.php:1658 -#@ woocommerce -msgid "Product % Discount" -msgstr "" - -#: admin/woocommerce-admin-settings.php:45 -#: woocommerce.php:1723 -#@ woocommerce -msgid "Action failed. Please refresh the page and retry." -msgstr "" - -#: admin/importers/importers-init.php:13 -#@ woocommerce -msgid "WooCommerce Tax Rates (CSV)" -msgstr "" - -#: admin/importers/importers-init.php:13 -#@ woocommerce -msgid "Import tax rates to your store via a csv file." -msgstr "" - -#: admin/importers/tax-rates-importer.php:103 -#: admin/importers/tax-rates-importer.php:186 -#: admin/importers/tax-rates-importer.php:226 -#: admin/importers/tax-rates-importer.php:241 -#@ woocommerce -msgid "Sorry, there has been an error." -msgstr "" - -#: admin/importers/tax-rates-importer.php:104 -#@ woocommerce -msgid "The file does not exist, please try again." -msgstr "" - -#: admin/importers/tax-rates-importer.php:187 -#@ woocommerce -msgid "The CSV is invalid." -msgstr "" - -#: admin/importers/tax-rates-importer.php:198 -#, php-format -#@ woocommerce -msgid "Import complete - imported %s tax rates and skipped %s." -msgstr "" - -#: admin/importers/tax-rates-importer.php:208 -#@ woocommerce -msgid "All done!" -msgstr "" - -#: admin/importers/tax-rates-importer.php:208 -#@ woocommerce -msgid "View Tax Rates" -msgstr "" - -#: admin/importers/tax-rates-importer.php:259 -#@ woocommerce -msgid "Import Tax Rates" -msgstr "" - -#: admin/importers/tax-rates-importer.php:282 -#@ woocommerce -msgid "Hi there! Upload a CSV file containing tax rates to import the contents into your shop. Choose a .csv file to upload, then click \"Upload file and import\"." -msgstr "" - -#: admin/importers/tax-rates-importer.php:284 -#, php-format -#@ woocommerce -msgid "Tax rates need to be defined with columns in a specific order (10 columns). Click here to download a sample." -msgstr "" - -#: admin/importers/tax-rates-importer.php:292 -#@ default -msgid "Before you can upload your import file, you will need to fix the following error:" -msgstr "" - -#: admin/importers/tax-rates-importer.php:301 -#@ default -msgid "Choose a file from your computer:" -msgstr "" - -#: admin/importers/tax-rates-importer.php:307 -#, php-format -#@ default -msgid "Maximum size: %s" -msgstr "" - -#: admin/importers/tax-rates-importer.php:312 -#@ woocommerce -msgid "OR enter path to file:" -msgstr "" - -#: admin/importers/tax-rates-importer.php:319 -#@ woocommerce -msgid "Delimiter" -msgstr "" - -#: admin/importers/tax-rates-importer.php:325 -#@ default -msgid "Upload file and import" -msgstr "" - -#: admin/includes/duplicate_product.php:23 -#@ woocommerce -msgid "No product to duplicate has been supplied!" -msgstr "" - -#: admin/includes/duplicate_product.php:43 -#@ woocommerce -msgid "Product creation failed, could not find original product:" -msgstr "" - -#: admin/includes/duplicate_product.php:89 -#@ woocommerce -msgid "(Copy)" -msgstr "" - -#: admin/includes/notice-install.php:6 -#@ woocommerce -msgid "Welcome to WooCommerce – You're almost ready to start selling :)" -msgstr "" - -#: admin/includes/notice-install.php:7 -#@ woocommerce -msgid "Install WooCommerce Pages" -msgstr "" - -#: admin/includes/notice-install.php:7 -#@ woocommerce -msgid "Skip setup" -msgstr "" - -#: admin/includes/notice-theme-support.php:6 -#@ woocommerce -msgid "Your theme does not declare WooCommerce support – if you encounter layout issues please read our integration guide or choose a WooCommerce theme :)" -msgstr "" - -#: admin/includes/notice-theme-support.php:7 -#@ woocommerce -msgid "Theme Integration Guide" -msgstr "" - -#: admin/includes/notice-theme-support.php:7 -#@ woocommerce -msgid "Hide this notice" -msgstr "" - -#: admin/includes/notice-update.php:6 -#@ woocommerce -msgid "Data Update Required – We just need to update your install to the latest version" -msgstr "" - -#: admin/includes/notice-update.php:7 -#@ woocommerce -msgid "Run the updater" -msgstr "" - -#: admin/includes/notice-update.php:12 -#@ woocommerce -msgid "It is strongly recommended that you backup your database before proceeding. Are you sure you wish to run the updater now?" -msgstr "" - -#: admin/includes/updates/woocommerce-update-2.0.php:180 -#: admin/woocommerce-admin-install.php:204 -#@ woocommerce -msgctxt "page_slug" -msgid "lost-password" -msgstr "" - -#: admin/includes/updates/woocommerce-update-2.0.php:180 -#: admin/woocommerce-admin-install.php:204 -#: admin/woocommerce-admin-status.php:309 -#@ woocommerce -msgid "Lost Password" -msgstr "" - -#: admin/includes/welcome.php:33 -#@ woocommerce -msgid "Welcome to WooCommerce" -msgstr "" - -#: admin/includes/welcome.php:128 -#, php-format -#@ woocommerce -msgid "Welcome to WooCommerce %s" -msgstr "" - -#: admin/includes/welcome.php:133 -#@ woocommerce -msgid "Thanks, all done!" -msgstr "" - -#: admin/includes/welcome.php:135 -#@ woocommerce -msgid "Thank you for updating to the latest version!" -msgstr "" - -#: admin/includes/welcome.php:137 -#@ woocommerce -msgid "Thanks for installing!" -msgstr "" - -#: admin/includes/welcome.php:139 -#, php-format -#@ woocommerce -msgid "%s WooCommerce %s is more powerful, stable, and secure than ever before. We hope you enjoy it." -msgstr "" - -#: admin/includes/welcome.php:143 -#, php-format -#@ default -msgid "Version %s" -msgstr "" - -#: admin/includes/welcome.php:147 -#@ woocommerce -msgid "Docs" -msgstr "" - -#: admin/includes/welcome.php:154 -#@ woocommerce -msgid "What's New" -msgstr "" - -#: admin/includes/welcome.php:156 -#@ woocommerce -msgid "Credits" -msgstr "" - -#: admin/includes/welcome.php:179 -#@ woocommerce -msgid "Security in mind" -msgstr "" - -#: admin/includes/welcome.php:183 -#@ woocommerce -msgid "Sucuri Safe Plugin" -msgstr "" - -#: admin/includes/welcome.php:184 -#@ woocommerce -msgid "You will be happy to learn that WooCommerce has been audited and certified by the Sucuri Security team. Whilst there is not much to be seen visually to understand the amount of work that went into this audit, rest assured that your website is powered by one of the most powerful and stable eCommerce plugins available." -msgstr "" - -#: admin/includes/welcome.php:187 -#@ woocommerce -msgid "A Smoother Admin Experience" -msgstr "" - -#: admin/includes/welcome.php:193 -#@ woocommerce -msgid "New Product Panel" -msgstr "" - -#: admin/includes/welcome.php:194 -#@ woocommerce -msgid "We have revised the product data panel making it cleaner, more streamlined, and more logical. Adding products is a breeze!" -msgstr "" - -#: admin/includes/welcome.php:199 -#@ woocommerce -msgid "Nicer Order Screens" -msgstr "" - -#: admin/includes/welcome.php:200 -#@ woocommerce -msgid "Order pages have had a cleanup, with a more easily scannable interface. We particularly like the new status icons!" -msgstr "" - -#: admin/includes/welcome.php:205 -#@ woocommerce -msgid "Multi-Download Support" -msgstr "" - -#: admin/includes/welcome.php:206 -#@ woocommerce -msgid "Products can have multiple downloadable files - purchasers will get access to all the files added." -msgstr "" - -#: admin/includes/welcome.php:211 -#@ woocommerce -msgid "Less Taxing Taxes" -msgstr "" - -#: admin/includes/welcome.php:217 -#@ woocommerce -msgid "New Tax Input Panel" -msgstr "" - -#: admin/includes/welcome.php:218 -#@ woocommerce -msgid "The tax input pages have been streamlined to make inputting taxes simpler - adding multiple taxes for a single jurisdiction is now much easier using the priority system. There is also CSV import/export support." -msgstr "" - -#: admin/includes/welcome.php:222 -#@ woocommerce -msgid "Improved Tax Options" -msgstr "" - -#: admin/includes/welcome.php:223 -#@ woocommerce -msgid "As requested by some users, we now support taxing the billing address instead of shipping (optional), and we allow you to choose which tax class applies to shipping." -msgstr "" - -#: admin/includes/welcome.php:228 -#@ woocommerce -msgid "Product Listing Improvements Customers Will Love" -msgstr "" - -#: admin/includes/welcome.php:234 -#@ woocommerce -msgid "New Sorting Options" -msgstr "" - -#: admin/includes/welcome.php:235 -#@ woocommerce -msgid "Customers can now sort products by popularity and ratings." -msgstr "" - -#: admin/includes/welcome.php:240 -#@ woocommerce -msgid "Better Pagination and Result Counts" -msgstr "" - -#: admin/includes/welcome.php:241 -#@ woocommerce -msgid "Numbered pagination has been added to core, and we show the number of results found above the listings." -msgstr "" - -#: admin/includes/welcome.php:246 -#@ woocommerce -msgid "Inline Star Rating Display" -msgstr "" - -#: admin/includes/welcome.php:247 -#@ woocommerce -msgid "We have added star ratings to the catalog which are pulled from reviews." -msgstr "" - -#: admin/includes/welcome.php:255 -#@ woocommerce -msgid "Under the Hood" -msgstr "" - -#: admin/includes/welcome.php:259 -#@ woocommerce -msgid "New product classes" -msgstr "" - -#: admin/includes/welcome.php:260 -#@ woocommerce -msgid "The product classes have been rewritten and are now factory based. Much more extendable, and easier to query products using the new get_product() function." -msgstr "" - -#: admin/includes/welcome.php:264 -#@ woocommerce -msgid "Capability overhaul" -msgstr "" - -#: admin/includes/welcome.php:265 -#@ woocommerce -msgid "More granular capabilities for admin/shop manager roles covering products, orders and coupons." -msgstr "" - -#: admin/includes/welcome.php:269 -#@ woocommerce -msgid "API Improvements" -msgstr "" - -#: admin/includes/welcome.php:270 -#@ woocommerce -msgid "WC-API now has real endpoints, and we've optimised the gateways API significantly by only loading gateways when needed." -msgstr "" - -#: admin/includes/welcome.php:276 -#@ woocommerce -msgid "Cache-friendly cart widgets" -msgstr "" - -#: admin/includes/welcome.php:277 -#@ woocommerce -msgid "Cart widgets and other \"fragments\" are now pulled in via AJAX - this works wonders with static page caching." -msgstr "" - -#: admin/includes/welcome.php:281 -#@ woocommerce -msgid "Session handling" -msgstr "" - -#: admin/includes/welcome.php:282 -#@ woocommerce -msgid "PHP SESSIONS have been a problem for many users in the past, so we've developed our own handler using cookies and options to make these more reliable." -msgstr "" - -#: admin/includes/welcome.php:286 -#@ woocommerce -msgid "Retina Ready" -msgstr "" - -#: admin/includes/welcome.php:287 -#@ woocommerce -msgid "All graphics within WC have been optimised for HiDPI displays." -msgstr "" - -#: admin/includes/welcome.php:294 -#@ woocommerce -msgid "Better stock handling" -msgstr "" - -#: admin/includes/welcome.php:295 -#@ woocommerce -msgid "We have added an option to hold stock for unpaid orders (defaults to 60mins). When this time limit is reached, and the order is not paid for, stock is released and the order is cancelled." -msgstr "" - -#: admin/includes/welcome.php:299 -#@ woocommerce -msgid "Improved Line-item storage" -msgstr "" - -#: admin/includes/welcome.php:300 -#@ woocommerce -msgid "We have changed how order items get stored making them easier (and faster) to access for reporting. Order items are no longer serialised within an order - they are stored within their own table." -msgstr "" - -#: admin/includes/welcome.php:304 -#@ woocommerce -msgid "Autoload" -msgstr "" - -#: admin/includes/welcome.php:305 -#@ woocommerce -msgid "We have setup autoloading for classes - this has dramatically reduced memory usage in 2.0." -msgstr "" - -#: admin/includes/welcome.php:312 -#@ woocommerce -msgid "Go to WooCommerce Settings" -msgstr "" - -#: admin/includes/welcome.php:330 -#@ woocommerce -msgid "WooCommerce is developed and maintained by a worldwide team of passionate individuals and backed by an awesome developer community. Want to see your name? Contribute to WooCommerce." -msgstr "" - -#: admin/includes/welcome.php:356 -#, php-format -#@ woocommerce -msgid "View %s" -msgstr "" - -#: admin/post-types/product.php:31 -#@ woocommerce -msgid "Make a duplicate from this product" -msgstr "" - -#: admin/post-types/product.php:32 -#@ woocommerce -msgid "Duplicate" -msgstr "" - -#: admin/post-types/product.php:61 -#@ woocommerce -msgid "Copy to a new draft" -msgstr "" - -#: admin/post-types/product.php:86 -#: admin/woocommerce-admin-taxonomies.php:297 -#@ woocommerce -msgid "Image" -msgstr "" - -#: admin/post-types/product.php:91 -#: admin/post-types/product.php:557 -#: admin/post-types/writepanels/variation-admin-html.php:46 -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#: admin/woocommerce-admin-reports.php:2083 -#: admin/woocommerce-admin-reports.php:2119 -#@ woocommerce -msgid "SKU" -msgstr "" - -#: admin/post-types/product.php:94 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:83 -#: admin/woocommerce-admin-content.php:63 -#: admin/woocommerce-admin-reports.php:99 -#@ woocommerce -msgid "Stock" -msgstr "" - -#: admin/post-types/product.php:98 -#@ woocommerce -msgid "Categories" -msgstr "" - -#: admin/post-types/product.php:99 -#@ woocommerce -msgid "Tags" -msgstr "" - -#: admin/post-types/product.php:100 -#: admin/post-types/product.php:632 -#: admin/post-types/product.php:904 -#: admin/post-types/writepanels/writepanel-product_data.php:1040 -#: admin/woocommerce-admin-init.php:463 -#@ woocommerce -msgid "Featured" -msgstr "" - -#: admin/post-types/product.php:101 -#: admin/woocommerce-admin-attributes.php:250 -#: admin/woocommerce-admin-attributes.php:308 -#: admin/woocommerce-admin-attributes.php:385 -#@ woocommerce -msgid "Type" -msgstr "" - -#: admin/post-types/product.php:102 -#: admin/post-types/shop_order.php:50 -#: templates/myaccount/my-orders.php:33 -#@ woocommerce -msgid "Date" -msgstr "" - -#: admin/post-types/product.php:151 -#@ default -msgid "Edit this item" -msgstr "" - -#: admin/post-types/product.php:152 -#@ default -msgid "Edit this item inline" -msgstr "" - -#: admin/post-types/product.php:152 -#@ default -msgid "Quick Edit" -msgstr "" - -#: admin/post-types/product.php:156 -#: admin/post-types/shop_coupon.php:65 -#@ default -msgid "Restore this item from the Trash" -msgstr "" - -#: admin/post-types/product.php:156 -#: admin/post-types/shop_coupon.php:65 -#@ default -msgid "Restore" -msgstr "" - -#: admin/post-types/product.php:158 -#: admin/post-types/shop_coupon.php:67 -#@ default -msgid "Move this item to the Trash" -msgstr "" - -#: admin/post-types/product.php:158 -#: admin/post-types/shop_coupon.php:67 -#@ default -msgid "Trash" -msgstr "" - -#: admin/post-types/product.php:160 -#: admin/post-types/shop_coupon.php:69 -#@ default -msgid "Delete this item permanently" -msgstr "" - -#: admin/post-types/product.php:160 -#: admin/post-types/shop_coupon.php:69 -#: admin/post-types/writepanels/writepanel-order_data.php:463 -#@ default -#@ woocommerce -msgid "Delete Permanently" -msgstr "" - -#: admin/post-types/product.php:165 -#, php-format -#@ default -msgid "Preview “%s”" -msgstr "" - -#: admin/post-types/product.php:165 -#@ default -msgid "Preview" -msgstr "" - -#: admin/post-types/product.php:167 -#, php-format -#@ default -msgid "View “%s”" -msgstr "" - -#: admin/post-types/product.php:214 -#@ woocommerce -msgid "Grouped" -msgstr "" - -#: admin/post-types/product.php:216 -#@ woocommerce -msgid "External/Affiliate" -msgstr "" - -#: admin/post-types/product.php:220 -#: admin/post-types/product.php:407 -#: admin/post-types/writepanels/variation-admin-html.php:168 -#: admin/post-types/writepanels/writepanel-product_data.php:52 -#@ woocommerce -msgid "Virtual" -msgstr "" - -#: admin/post-types/product.php:222 -#: admin/post-types/product.php:403 -#: admin/post-types/writepanels/variation-admin-html.php:166 -#: admin/post-types/writepanels/writepanel-product_data.php:58 -#@ woocommerce -msgid "Downloadable" -msgstr "" - -#: admin/post-types/product.php:224 -#@ woocommerce -msgid "Simple" -msgstr "" - -#: admin/post-types/product.php:228 -#: admin/post-types/product.php:387 -#@ woocommerce -msgid "Variable" -msgstr "" - -#: admin/post-types/product.php:251 -#@ woocommerce -msgid "Toggle featured" -msgstr "" - -#: admin/post-types/product.php:253 -#@ woocommerce -msgid "yes" -msgstr "" - -#: admin/post-types/product.php:255 -#@ woocommerce -msgid "no" -msgstr "" - -#: admin/post-types/product.php:373 -#@ woocommerce -msgid "Show all product types" -msgstr "" - -#: admin/post-types/product.php:381 -#: admin/post-types/writepanels/writepanel-product_data.php:39 -#@ woocommerce -msgid "Grouped product" -msgstr "" - -#: admin/post-types/product.php:383 -#: admin/post-types/writepanels/writepanel-product_data.php:40 -#@ woocommerce -msgid "External/Affiliate product" -msgstr "" - -#: admin/post-types/product.php:385 -#: admin/post-types/writepanels/writepanel-product_data.php:38 -#@ woocommerce -msgid "Simple product" -msgstr "" - -#: admin/post-types/product.php:399 -#@ woocommerce -msgid "Show all sub-types" -msgstr "" - -#: admin/post-types/product.php:520 -#, php-format -#@ woocommerce -msgid "[%s with SKU of %s]" -msgstr "" - -#: admin/post-types/product.php:526 -#, php-format -#@ woocommerce -msgid "[%s with ID of %d]" -msgstr "" - -#: admin/post-types/product.php:552 -#: admin/post-types/product.php:783 -#: admin/post-types/writepanels/writepanels-init.php:46 -#: admin/settings/settings-init.php:518 -#@ woocommerce -msgid "Product Data" -msgstr "" - -#: admin/post-types/product.php:570 -#@ woocommerce -msgid "Regular price" -msgstr "" - -#: admin/post-types/product.php:575 -#: admin/post-types/product.php:811 -#@ woocommerce -msgid "Sale" -msgstr "" - -#: admin/post-types/product.php:577 -#@ woocommerce -msgid "Sale price" -msgstr "" - -#: admin/post-types/product.php:599 -#: admin/post-types/product.php:861 -#@ woocommerce -msgid "L/W/H" -msgstr "" - -#: admin/post-types/product.php:601 -#: admin/post-types/product.php:877 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:85 -#: admin/post-types/writepanels/writepanel-product_data.php:286 -#@ woocommerce -msgid "Length" -msgstr "" - -#: admin/post-types/product.php:602 -#: admin/post-types/product.php:878 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:86 -#: admin/post-types/writepanels/writepanel-product_data.php:287 -#: admin/woocommerce-admin-settings.php:795 -#@ woocommerce -msgid "Width" -msgstr "" - -#: admin/post-types/product.php:603 -#: admin/post-types/product.php:879 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:87 -#: admin/post-types/writepanels/writepanel-product_data.php:288 -#: admin/woocommerce-admin-settings.php:797 -#@ woocommerce -msgid "Height" -msgstr "" - -#: admin/post-types/product.php:613 -#: admin/post-types/product.php:885 -#@ woocommerce -msgid "Visibility" -msgstr "" - -#: admin/post-types/product.php:618 -#: admin/post-types/product.php:891 -#@ woocommerce -msgid "Catalog & search" -msgstr "" - -#: admin/post-types/product.php:619 -#: admin/post-types/product.php:892 -#: admin/post-types/writepanels/writepanel-product_data.php:1029 -#: admin/woocommerce-admin-content.php:46 -#: admin/woocommerce-admin-settings.php:181 -#@ woocommerce -msgid "Catalog" -msgstr "" - -#: admin/post-types/product.php:621 -#: admin/post-types/product.php:894 -#: admin/post-types/writepanels/writepanel-product_data.php:1031 -#@ woocommerce -msgid "Hidden" -msgstr "" - -#: admin/post-types/product.php:636 -#: admin/post-types/product.php:922 -#@ woocommerce -msgid "In stock?" -msgstr "" - -#: admin/post-types/product.php:657 -#: admin/post-types/product.php:940 -#: admin/post-types/writepanels/writepanel-product_data.php:212 -#@ woocommerce -msgid "Manage stock?" -msgstr "" - -#: admin/post-types/product.php:661 -#: admin/post-types/product.php:959 -#: admin/post-types/product.php:975 -#: admin/post-types/writepanels/writepanel-product_data.php:219 -#@ woocommerce -msgid "Stock Qty" -msgstr "" - -#: admin/post-types/product.php:792 -#: admin/post-types/product.php:816 -#: admin/post-types/product.php:842 -#: admin/post-types/product.php:866 -#: admin/post-types/product.php:890 -#: admin/post-types/product.php:909 -#: admin/post-types/product.php:927 -#: admin/post-types/product.php:945 -#: admin/post-types/product.php:964 -#@ woocommerce -msgid "— No Change —" -msgstr "" - -#: admin/post-types/product.php:793 -#: admin/post-types/product.php:817 -#: admin/post-types/product.php:843 -#: admin/post-types/product.php:867 -#: admin/post-types/product.php:965 -#@ woocommerce -msgid "Change to:" -msgstr "" - -#: admin/post-types/product.php:794 -#: admin/post-types/product.php:818 -#@ woocommerce -msgid "Increase by (fixed amount or %):" -msgstr "" - -#: admin/post-types/product.php:795 -#: admin/post-types/product.php:819 -#@ woocommerce -msgid "Decrease by (fixed amount or %):" -msgstr "" - -#: admin/post-types/product.php:805 -#: admin/post-types/product.php:830 -#@ woocommerce -msgid "Enter price" -msgstr "" - -#: admin/post-types/product.php:820 -#@ woocommerce -msgid "Decrease regular price by (fixed amount or %):" -msgstr "" - -#: admin/post-types/product.php:910 -#: admin/post-types/product.php:946 -#: admin/post-types/shop_order.php:190 -#: admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:260 -#@ woocommerce -msgid "Yes" -msgstr "" - -#: admin/post-types/product.php:911 -#: admin/post-types/product.php:947 -#: admin/post-types/shop_order.php:192 -#: admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:260 -#@ woocommerce -msgid "No" -msgstr "" - -#: admin/post-types/product.php:1175 -#@ woocommerce -msgid "Sort Products" -msgstr "" - -#: admin/post-types/product.php:1214 -#@ woocommerce -msgid "Insert into product" -msgstr "" - -#: admin/post-types/product.php:1215 -#@ woocommerce -msgid "Uploaded to this product" -msgstr "" - -#: admin/post-types/shop_coupon.php:25 -#@ woocommerce -msgid "Code" -msgstr "" - -#: admin/post-types/shop_coupon.php:26 -#@ woocommerce -msgid "Coupon type" -msgstr "" - -#: admin/post-types/shop_coupon.php:27 -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -#@ woocommerce -msgid "Coupon amount" -msgstr "" - -#: admin/post-types/shop_coupon.php:29 -#@ woocommerce -msgid "Product IDs" -msgstr "" - -#: admin/post-types/shop_coupon.php:30 -#@ woocommerce -msgid "Usage / Limit" -msgstr "" - -#: admin/post-types/shop_coupon.php:31 -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -#@ woocommerce -msgid "Expiry date" -msgstr "" - -#: admin/post-types/shop_coupon.php:56 -#@ woocommerce -msgid "Edit coupon" -msgstr "" - -#: admin/post-types/shop_coupon.php:114 -#, php-format -#@ woocommerce -msgid "%s / %s" -msgstr "" - -#: admin/post-types/shop_coupon.php:116 -#, php-format -#@ woocommerce -msgid "%s / ∞" -msgstr "" - -#: admin/post-types/shop_coupon.php:149 -#: admin/post-types/shop_order.php:282 -#@ woocommerce -msgid "Show all statuses" -msgstr "" - -#: admin/post-types/shop_order.php:45 -#@ woocommerce -msgid "Billing" -msgstr "" - -#: admin/post-types/shop_order.php:49 -#@ woocommerce -msgid "Customer Notes" -msgstr "" - -#: admin/post-types/shop_order.php:51 -#: admin/post-types/writepanels/writepanel-order_data.php:386 -#: admin/post-types/writepanels/writepanel-order_data.php:433 -#@ woocommerce -msgid "Actions" -msgstr "" - -#: admin/post-types/shop_order.php:98 -#@ woocommerce -msgid "made by" -msgstr "" - -#: admin/post-types/shop_order.php:114 -#: admin/post-types/shop_order.php:123 -#@ woocommerce -msgid "Via" -msgstr "" - -#: admin/post-types/shop_order.php:131 -#@ woocommerce -msgid "Unpublished" -msgstr "" - -#: admin/post-types/shop_order.php:133 -#@ woocommerce -msgid "Y/m/d g:i:s A" -msgstr "" - -#: admin/post-types/shop_order.php:139 -#, php-format -#@ woocommerce -msgid "%s ago" -msgstr "" - -#: admin/post-types/shop_order.php:141 -#@ woocommerce -msgid "Y/m/d" -msgstr "" - -#: admin/post-types/shop_order.php:158 -#: admin/woocommerce-admin-dashboard.php:176 -#@ woocommerce -msgid "Processing" -msgstr "" - -#: admin/post-types/shop_order.php:165 -#@ woocommerce -msgid "Complete" -msgstr "" - -#: admin/post-types/shop_order.php:301 -#: admin/post-types/shop_order.php:326 -#@ woocommerce -msgid "Show all customers" -msgstr "" - -#: admin/post-types/writepanels/order-download-permission-html.php:6 -#@ woocommerce -msgid "Revoke Access" -msgstr "" - -#: admin/post-types/writepanels/order-download-permission-html.php:7 -#: admin/post-types/writepanels/variation-admin-html.php:7 -#: admin/post-types/writepanels/writepanel-product_data.php:365 -#: admin/post-types/writepanels/writepanel-product_data.php:444 -#: admin/woocommerce-admin-init.php:452 -#@ woocommerce -msgid "Click to toggle" -msgstr "" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -#, php-format -#@ woocommerce -msgid "File %d: %s" -msgstr "" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -#, php-format -#@ woocommerce -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "" -msgstr[1] "" - -#: admin/post-types/writepanels/order-download-permission-html.php:16 -#@ woocommerce -msgid "Downloads Remaining" -msgstr "" - -#: admin/post-types/writepanels/order-download-permission-html.php:19 -#: admin/post-types/writepanels/variation-admin-html.php:143 -#: admin/post-types/writepanels/variation-admin-html.php:151 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -#@ woocommerce -msgid "Unlimited" -msgstr "" - -#: admin/post-types/writepanels/order-download-permission-html.php:22 -#@ woocommerce -msgid "Access Expires" -msgstr "" - -#: admin/post-types/writepanels/order-download-permission-html.php:23 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -#@ woocommerce -msgid "Never" -msgstr "" - -#: admin/post-types/writepanels/order-fee-html.php:10 -#@ woocommerce -msgid "Fee Name" -msgstr "" - -#: admin/post-types/writepanels/order-fee-html.php:17 -#: admin/post-types/writepanels/order-item-html.php:84 -#@ woocommerce -msgid "Tax class" -msgstr "" - -#: admin/post-types/writepanels/order-item-html.php:9 -#@ woocommerce -msgid "Product ID:" -msgstr "" - -#: admin/post-types/writepanels/order-item-html.php:12 -#@ woocommerce -msgid "Variation ID:" -msgstr "" - -#: admin/post-types/writepanels/order-item-html.php:15 -#@ woocommerce -msgid "Product SKU:" -msgstr "" - -#: admin/post-types/writepanels/order-item-html.php:33 -#@ woocommerce -msgid "Add meta" -msgstr "" - -#: admin/post-types/writepanels/order-tax-html.php:6 -#@ woocommerce -msgid "Tax Rate:" -msgstr "" - -#: admin/post-types/writepanels/order-tax-html.php:16 -#: admin/post-types/writepanels/writepanel-order_data.php:627 -#@ woocommerce -msgid "Sales Tax:" -msgstr "" - -#: admin/post-types/writepanels/order-tax-html.php:20 -#: admin/post-types/writepanels/writepanel-order_data.php:635 -#@ woocommerce -msgid "Shipping Tax:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:6 -#: admin/post-types/writepanels/writepanel-product_data.php:364 -#: admin/post-types/writepanels/writepanel-product_data.php:443 -#: admin/woocommerce-admin-init.php:451 -#@ woocommerce -msgid "Remove" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:20 -#@ woocommerce -msgid "Any" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:46 -#@ woocommerce -msgid "Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:57 -#@ woocommerce -msgid "Stock Qty:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:57 -#@ woocommerce -msgid "Enter a quantity to enable stock management at variation level, or leave blank to use the parent product's options." -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:66 -#@ woocommerce -msgid "Regular Price:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:67 -#@ woocommerce -msgid "Variation price (required)" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:70 -#@ woocommerce -msgid "Sale Price:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:70 -#: admin/post-types/writepanels/writepanel-product_data.php:125 -#@ woocommerce -msgid "Schedule" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:70 -#@ woocommerce -msgid "Cancel schedule" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:77 -#@ woocommerce -msgid "Sale start date:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:78 -#: admin/post-types/writepanels/writepanel-product_data.php:136 -#@ woocommerce -msgctxt "placeholder" -msgid "From…" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:81 -#@ woocommerce -msgid "Sale end date:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:82 -#: admin/post-types/writepanels/writepanel-product_data.php:137 -#@ woocommerce -msgctxt "placeholder" -msgid "To…" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:90 -#@ woocommerce -msgid "Enter a weight for this variation or leave blank to use the parent product weight." -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:98 -#@ woocommerce -msgid "Dimensions (L×W×H)" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:109 -#@ woocommerce -msgid "Shipping class:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:124 -#@ woocommerce -msgid "Tax class:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:135 -#@ woocommerce -msgid "File paths:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:135 -#@ woocommerce -msgid "Enter one or more File Paths, one per line, to make this variation a downloadable product, or leave blank." -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:136 -#: admin/post-types/writepanels/writepanel-product_data.php:153 -#@ woocommerce -msgid "File paths/URLs, one per line" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:137 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -#@ woocommerce -msgid "Choose a file" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:137 -#@ woocommerce -msgid "Upload" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:137 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -#@ woocommerce -msgid "Insert file URL" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:142 -#@ woocommerce -msgid "Download Limit:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:142 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -#@ woocommerce -msgid "Leave blank for unlimited re-downloads." -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:150 -#@ woocommerce -msgid "Download Expiry:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:150 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -#@ woocommerce -msgid "Enter the number of days before a download link expires, or leave blank." -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:164 -#@ woocommerce -msgid "Enabled" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:166 -#@ woocommerce -msgid "Enable this option if access is given to a downloadable file upon purchase of a product" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:168 -#@ woocommerce -msgid "Enable this option if a product is not shipped or there is no shipping cost" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -#@ woocommerce -msgid "Coupon description" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -#@ woocommerce -msgid "Optionally enter a description for this coupon for your reference." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:42 -#@ woocommerce -msgid "Discount type" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -#@ woocommerce -msgid "Enter an amount or percentage e.g. 2.99 or 15%" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -#@ woocommerce -msgid "Enable free shipping" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -#, php-format -#@ woocommerce -msgid "Check this box if the coupon grants free shipping. The free shipping method must be enabled with the \"must use coupon\" setting checked." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -#@ woocommerce -msgid "Individual use" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -#@ woocommerce -msgid "Check this box if the coupon cannot be used in conjunction with other coupons." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -#@ woocommerce -msgid "Apply before tax" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -#@ woocommerce -msgid "Check this box if the coupon should be applied before calculating cart tax." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -#@ woocommerce -msgid "Exclude sale items" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -#@ woocommerce -msgid "Check this box if the coupon should not apply to items on sale. Per-item coupons will only work if the item is not on sale. Per-cart coupons will only work if there are no sale items in the cart." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -#@ woocommerce -msgid "Minimum amount" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -#@ woocommerce -msgid "No minimum" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -#@ woocommerce -msgid "This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:75 -#: admin/post-types/writepanels/writepanel-order_data.php:400 -#: admin/post-types/writepanels/writepanel-product_data.php:504 -#: admin/post-types/writepanels/writepanel-product_data.php:521 -#: admin/woocommerce-admin-reports.php:1229 -#@ woocommerce -msgid "Search for a product…" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:89 -#@ woocommerce -msgid "Products which need to be in the cart to use this coupon or, for \"Product Discounts\", which products are discounted." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:94 -#@ woocommerce -msgid "Exclude products" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:95 -#@ woocommerce -msgid "Search for a product…" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:109 -#@ woocommerce -msgid "Products which must not be in the cart to use this coupon or, for \"Product Discounts\", which products are not discounted." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:117 -#@ woocommerce -msgid "Any category" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:125 -#@ woocommerce -msgid "A product must be in this category for the coupon to remain valid or, for \"Product Discounts\", products in these categories will be discounted." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:130 -#@ woocommerce -msgid "Exclude categories" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:131 -#@ woocommerce -msgid "No categories" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:139 -#@ woocommerce -msgid "Product must not be in this category for the coupon to remain valid or, for \"Product Discounts\", products in these categories will not be discounted." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -#@ woocommerce -msgid "Customer emails" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -#@ woocommerce -msgid "Any customer" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -#@ woocommerce -msgid "Comma separate email addresses to restrict this coupon to specific billing and user emails." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -#@ woocommerce -msgid "Usage limit" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -#@ woocommerce -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -#@ woocommerce -msgid "How many times this coupon can be used before it is void." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -#@ woocommerce -msgctxt "placeholder" -msgid "Never expire" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -#@ woocommerce -msgid "The date this coupon will expire, YYYY-MM-DD." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:195 -#@ woocommerce -msgid "Coupon code already exists - customers will use the latest coupon with this code." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:62 -#@ woocommerce -msgid "Order number" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:67 -#@ woocommerce -msgid "Customer IP:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:74 -#@ woocommerce -msgid "General Details" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:76 -#@ woocommerce -msgid "Order status:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:86 -#@ woocommerce -msgid "Order Date:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#@ woocommerce -msgid "h" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#: admin/settings/settings-init.php:577 -#@ woocommerce -msgid "m" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:91 -#@ woocommerce -msgid "Customer:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:131 -#@ woocommerce -msgid "Customer Note:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:132 -#@ woocommerce -msgid "Customer's notes about the order" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#@ woocommerce -msgid "Billing Details" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:152 -#: admin/post-types/writepanels/writepanel-order_data.php:242 -#: admin/woocommerce-admin-users.php:155 -#: admin/woocommerce-admin-users.php:204 -#@ woocommerce -msgid "Company" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:156 -#: admin/post-types/writepanels/writepanel-order_data.php:246 -#: admin/woocommerce-admin-users.php:159 -#: admin/woocommerce-admin-users.php:208 -#@ woocommerce -msgid "Address 1" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:160 -#: admin/post-types/writepanels/writepanel-order_data.php:250 -#: admin/woocommerce-admin-users.php:163 -#: admin/woocommerce-admin-users.php:212 -#@ woocommerce -msgid "Address 2" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:164 -#: admin/post-types/writepanels/writepanel-order_data.php:254 -#: admin/settings/settings-tax-rates.php:42 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-users.php:167 -#: admin/woocommerce-admin-users.php:216 -#@ woocommerce -msgid "City" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:178 -#: admin/post-types/writepanels/writepanel-order_data.php:268 -#: admin/woocommerce-admin-users.php:175 -#: admin/woocommerce-admin-users.php:224 -#@ woocommerce -msgid "State/County" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#@ woocommerce -msgid "No billing address set." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:208 -#@ woocommerce -msgid "Load billing address" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#@ woocommerce -msgid "Shipping Details" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:279 -#@ woocommerce -msgid "No shipping address set." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -#@ woocommerce -msgid "Load shipping address" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -#@ woocommerce -msgid "Copy from billing" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:339 -#@ woocommerce -msgid "Item" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#: admin/post-types/writepanels/writepanel-product_data.php:191 -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Tax Class" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#@ woocommerce -msgid "Tax class for the line item" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -#@ woocommerce -msgid "Line subtotals are before pre-tax discounts, totals are after." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:388 -#@ woocommerce -msgid "Delete Lines" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:390 -#@ woocommerce -msgid "Stock Actions" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:391 -#@ woocommerce -msgid "Reduce Line Stock" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:392 -#@ woocommerce -msgid "Increase Line Stock" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:396 -#: admin/post-types/writepanels/writepanel-order_data.php:456 -#@ woocommerce -msgid "Apply" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:402 -#@ woocommerce -msgid "Add item(s)" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:403 -#@ woocommerce -msgid "Add fee" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:434 -#@ woocommerce -msgid "Resend order emails" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:465 -#@ woocommerce -msgid "Move to Trash" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -#@ woocommerce -msgid "Save Order" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -#@ woocommerce -msgid "Save/update the order" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:495 -#@ woocommerce -msgid "Discounts" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:499 -#@ woocommerce -msgid "Discounts before tax - calculated by comparing subtotals to totals." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:507 -#@ woocommerce -msgid "Discounts after tax - user defined." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:540 -#@ woocommerce -msgid "Label:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:541 -#@ woocommerce -msgid "The shipping title the customer sees" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:548 -#@ woocommerce -msgid "Cost:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:556 -#@ woocommerce -msgid "Method:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:578 -#: admin/post-types/writepanels/writepanel-order_data.php:580 -#: admin/post-types/writepanels/writepanel-order_data.php:679 -#: admin/post-types/writepanels/writepanel-order_data.php:681 -#@ woocommerce -msgid "Other" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:594 -#@ woocommerce -msgid "Tax Rows" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:619 -#@ woocommerce -msgid "+ Add tax row" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:619 -#@ woocommerce -msgid "These rows contain taxes for this order. This allows you to display multiple or compound taxes rather than a single total." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:623 -#@ woocommerce -msgid "Tax Totals" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:627 -#@ woocommerce -msgid "Total tax for line items + fees." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:649 -#: admin/post-types/writepanels/writepanels-init.php:70 -#@ woocommerce -msgid "Order Totals" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:661 -#@ woocommerce -msgid "Payment Method:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:692 -#@ woocommerce -msgid "Calc taxes" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:694 -#@ woocommerce -msgid "Calc totals" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:57 -#@ woocommerce -msgid "Choose a downloadable product…" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:87 -#@ woocommerce -msgid "Grant Access" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:125 -#@ woocommerce -msgid "Could not grant access - the user may already have permission for this file or billing email is not set. Ensure the billing email is set, and the order has been saved." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:148 -#@ woocommerce -msgid "Are you sure you want to revoke access to this download?" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -#, php-format -#@ woocommerce -msgid "added %s ago" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_notes.php:50 -#@ woocommerce -msgid "There are no notes for this order yet." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -#@ woocommerce -msgid "Add note" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -#@ woocommerce -msgid "Add a note for your reference, or add a customer note (the user will be notified)." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_notes.php:63 -#@ woocommerce -msgid "Private note" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_notes.php:65 -#: admin/post-types/writepanels/writepanel-product_data.php:482 -#@ woocommerce -msgid "Add" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -#@ woocommerce -msgid "Variations for variable products are defined here." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:65 -#@ woocommerce -msgid "Before adding variations, add and save some attributes on the Attributes tab." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:67 -#@ woocommerce -msgid "Learn more" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -#@ woocommerce -msgid "Close all" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -#@ woocommerce -msgid "Expand all" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:75 -#@ woocommerce -msgid "Bulk edit:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:77 -#@ woocommerce -msgid "Toggle "Enabled"" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:78 -#@ woocommerce -msgid "Toggle "Downloadable"" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:79 -#@ woocommerce -msgid "Toggle "Virtual"" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:80 -#@ woocommerce -msgid "Delete all variations" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:81 -#@ woocommerce -msgid "Prices" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:82 -#@ woocommerce -msgid "Sale prices" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:88 -#@ woocommerce -msgid "File Path" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:89 -#@ woocommerce -msgid "Download limit" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:90 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -#@ woocommerce -msgid "Download Expiry" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:93 -#@ woocommerce -msgid "Go" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:195 -#@ woocommerce -msgid "Link all variations" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:197 -#@ woocommerce -msgid "Default selections:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:210 -#@ woocommerce -msgid "No default" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:293 -#@ woocommerce -msgid "Are you sure you want to link all variations? This will create a new variation for each and every possible combination of variation attributes (max 50 per run)." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:310 -#@ woocommerce -msgid "variation added" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:312 -#@ woocommerce -msgid "variations added" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:314 -#@ woocommerce -msgid "No variations added" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:337 -#@ woocommerce -msgid "Are you sure you want to remove this variation?" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:393 -#@ woocommerce -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:396 -#@ woocommerce -msgid "Last warning, are you sure?" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:433 -#@ woocommerce -msgid "Enter a value" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:511 -#: admin/woocommerce-admin-taxonomies.php:62 -#: admin/woocommerce-admin-taxonomies.php:154 -#@ woocommerce -msgid "Choose an image" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:513 -#@ woocommerce -msgid "Set variation image" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:557 -#@ woocommerce -msgid "Variable product" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:43 -#@ woocommerce -msgid "Product Type" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:53 -#@ woocommerce -msgid "Virtual products are intangible and aren't shipped." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:59 -#@ woocommerce -msgid "Downloadable products give access to a file upon purchase." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:77 -#: admin/woocommerce-admin-content.php:44 -#: admin/woocommerce-admin-settings.php:180 -#@ woocommerce -msgid "General" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:79 -#: admin/woocommerce-admin-content.php:47 -#: admin/woocommerce-admin-settings.php:183 -#@ woocommerce -msgid "Inventory" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:83 -#@ woocommerce -msgid "Linked Products" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:85 -#: admin/woocommerce-admin-attributes.php:298 -#: admin/woocommerce-admin-init.php:66 -#@ woocommerce -msgid "Attributes" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:87 -#@ woocommerce -msgid "Advanced" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#@ woocommerce -msgid "Stock Keeping Unit" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#@ woocommerce -msgid "SKU refers to a Stock-keeping unit, a unique identifier for each distinct product and service that can be purchased." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -#@ woocommerce -msgid "Product URL" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -#@ woocommerce -msgid "Enter the external URL to the product." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -#@ woocommerce -msgid "Button text" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -#@ woocommerce -msgctxt "placeholder" -msgid "Buy product" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -#@ woocommerce -msgid "This text will be shown on the button linking to the external product." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:119 -#@ woocommerce -msgid "Regular Price" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:125 -#@ woocommerce -msgid "Sale Price" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:135 -#@ woocommerce -msgid "Sale Price Dates" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:152 -#@ woocommerce -msgid "File paths (one per line)" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:158 -#@ woocommerce -msgid "Download Limit" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:180 -#@ woocommerce -msgid "Shipping only" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:212 -#@ woocommerce -msgid "Enable stock management at product level" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:219 -#@ woocommerce -msgid "Stock quantity. If this is a variable product this value will be used to control stock for all variations, unless you define stock at variation level." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:230 -#@ woocommerce -msgid "Stock status" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:233 -#@ woocommerce -msgid "Controls whether or not the product is listed as \"in stock\" or \"out of stock\" on the frontend." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:240 -#@ woocommerce -msgid "Allow Backorders?" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:241 -#@ woocommerce -msgid "Do not allow" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:242 -#@ woocommerce -msgid "Allow, but notify customer" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:243 -#@ woocommerce -msgid "Allow" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:244 -#@ woocommerce -msgid "If managing stock, this controls whether or not backorders are allowed for this product and variations. If enabled, stock quantity can go below 0." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -#@ woocommerce -msgid "Sold Individually" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -#@ woocommerce -msgid "Enable this to only allow one of this item to be bought in a single order" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:273 -#@ woocommerce -msgid "Weight in decimal form" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:290 -#@ woocommerce -msgid "LxWxH in decimal form" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:311 -#@ woocommerce -msgid "No shipping class" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -#@ woocommerce -msgid "Shipping class" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -#@ woocommerce -msgid "Shipping classes are used by certain shipping methods to group similar products." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:380 -#: admin/post-types/writepanels/writepanel-product_data.php:457 -#: admin/woocommerce-admin-init.php:453 -#@ woocommerce -msgid "Value(s)" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:382 -#@ woocommerce -msgid "Select terms" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:394 -#@ woocommerce -msgid "Select all" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:394 -#@ woocommerce -msgid "Select none" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:396 -#@ woocommerce -msgid "Add new" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:409 -#@ woocommerce -msgid "Pipe separate terms" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:416 -#: admin/post-types/writepanels/writepanel-product_data.php:463 -#: admin/woocommerce-admin-init.php:455 -#@ woocommerce -msgid "Visible on the product page" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:422 -#: admin/post-types/writepanels/writepanel-product_data.php:469 -#: admin/woocommerce-admin-init.php:456 -#@ woocommerce -msgid "Used for variations" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:458 -#: admin/woocommerce-admin-init.php:454 -#@ woocommerce -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:484 -#@ woocommerce -msgid "Custom product attribute" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:496 -#@ woocommerce -msgid "Save attributes" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:503 -#@ woocommerce -msgid "Up-Sells" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:518 -#@ woocommerce -msgid "Up-sells are products which you recommend instead of the currently viewed product, for example, products that are more profitable or better quality or more expensive." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:520 -#@ woocommerce -msgid "Cross-Sells" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:535 -#@ woocommerce -msgid "Cross-sells are products which you promote in the cart, based on the current product." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:545 -#@ woocommerce -msgid "Choose a grouped product…" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:571 -#@ woocommerce -msgid "Grouping" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:571 -#@ woocommerce -msgid "Set this option to make this product part of a grouped product." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:591 -#@ woocommerce -msgid "Purchase Note" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:591 -#@ woocommerce -msgid "Enter an optional note to send the customer after purchase." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:598 -#@ woocommerce -msgid "Menu order" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:598 -#@ woocommerce -msgid "Custom ordering position." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:606 -#@ woocommerce -msgid "Enable reviews" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:695 -#@ woocommerce -msgid "Product SKU must be unique." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:1028 -#@ woocommerce -msgid "Catalog/search" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:1035 -#@ woocommerce -msgid "Catalog visibility:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:1051 -#@ woocommerce -msgid "Define the loops this product should be visible in. The product will still be accessible directly." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:1057 -#@ woocommerce -msgid "Enable this option to feature this product." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:1059 -#@ woocommerce -msgid "Featured Product" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:1063 -#@ woocommerce -msgid "OK" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -#@ woocommerce -msgid "Delete image" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -#: admin/woocommerce-admin-attributes.php:322 -#@ woocommerce -msgid "Delete" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_images.php:53 -#@ woocommerce -msgid "Add product gallery images" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_images.php:79 -#@ woocommerce -msgid "Add Images to Product Gallery" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_images.php:81 -#@ woocommerce -msgid "Add to gallery" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:47 -#@ woocommerce -msgid "Product Gallery" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:55 -#@ woocommerce -msgid "Product Short Description" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:68 -#@ woocommerce -msgid "Order Data" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:69 -#@ woocommerce -msgid "Order Items" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:69 -#@ woocommerce -msgid "Note: if you edit quantities or remove items from the order you will need to manually update stock levels." -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:72 -#@ woocommerce -msgid "Downloadable Product Permissions" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:72 -#@ woocommerce -msgid "Note: Permissions for order items will automatically be granted when the order status changes to processing/completed." -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:73 -#@ woocommerce -msgid "Order Actions" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:81 -#@ woocommerce -msgid "Coupon Data" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:101 -#@ woocommerce -msgid "Product name" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:185 -#@ woocommerce -msgid "Allow reviews." -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:186 -#, php-format -#@ default -msgid "Allow trackbacks and pingbacks on this page." -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:186 -#@ default -msgid "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:23 -#@ woocommerce -msgid "Styles" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:43 -#@ woocommerce -msgid "Primary" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:43 -#@ woocommerce -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:44 -#@ woocommerce -msgid "Secondary" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:44 -#@ woocommerce -msgid "Buttons and tabs" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:45 -#@ woocommerce -msgid "Highlight" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:45 -#@ woocommerce -msgid "Price labels and Sale Flashes" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:46 -#@ woocommerce -msgid "Content" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:46 -#@ woocommerce -msgid "Your themes page background - used for tab active states" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:47 -#@ woocommerce -msgid "Subtext" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:47 -#@ woocommerce -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "" - -#: admin/settings/settings-frontend-styles.php:51 -#@ woocommerce -msgid "To edit colours woocommerce/assets/css/woocommerce-base.less and woocommerce.css need to be writable. See the Codex for more information." -msgstr "" - -#: admin/settings/settings-init.php:18 -#@ woocommerce -msgid "Localisation" -msgstr "" - -#: admin/settings/settings-init.php:19 -#, php-format -#@ woocommerce -msgid "Use informal localisation for %s" -msgstr "" - -#: admin/settings/settings-init.php:33 -#@ woocommerce -msgid "General Options" -msgstr "" - -#: admin/settings/settings-init.php:36 -#@ woocommerce -msgid "Base Location" -msgstr "" - -#: admin/settings/settings-init.php:37 -#@ woocommerce -msgid "This is the base location for your business. Tax rates will be based on this country." -msgstr "" - -#: admin/settings/settings-init.php:46 -#@ woocommerce -msgid "Currency" -msgstr "" - -#: admin/settings/settings-init.php:47 -#@ woocommerce -msgid "This controls what currency prices are listed at in the catalog and which currency gateways will take payments in." -msgstr "" - -#: admin/settings/settings-init.php:58 -#@ woocommerce -msgid "Allowed Countries" -msgstr "" - -#: admin/settings/settings-init.php:59 -#@ woocommerce -msgid "These are countries that you are willing to ship to." -msgstr "" - -#: admin/settings/settings-init.php:67 -#@ woocommerce -msgid "All Countries" -msgstr "" - -#: admin/settings/settings-init.php:84 -#@ woocommerce -msgid "Store Notice" -msgstr "" - -#: admin/settings/settings-init.php:85 -#@ woocommerce -msgid "Enable site-wide store notice text" -msgstr "" - -#: admin/settings/settings-init.php:92 -#@ woocommerce -msgid "Store Notice Text" -msgstr "" - -#: admin/settings/settings-init.php:102 -#@ woocommerce -msgid "Cart, Checkout and Accounts" -msgstr "" - -#: admin/settings/settings-init.php:106 -#@ woocommerce -msgid "Enable the use of coupons" -msgstr "" - -#: admin/settings/settings-init.php:110 -#@ woocommerce -msgid "Coupons can be applied from the cart and checkout pages." -msgstr "" - -#: admin/settings/settings-init.php:115 -#@ woocommerce -msgid "Enable guest checkout (no account required)" -msgstr "" - -#: admin/settings/settings-init.php:123 -#@ woocommerce -msgid "Enable customer note field on checkout" -msgstr "" - -#: admin/settings/settings-init.php:131 -#@ woocommerce -msgid "Force secure checkout" -msgstr "" - -#: admin/settings/settings-init.php:137 -#@ woocommerce -msgid "Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -msgstr "" - -#: admin/settings/settings-init.php:141 -#@ woocommerce -msgid "Un-force HTTPS when leaving the checkout" -msgstr "" - -#: admin/settings/settings-init.php:150 -#@ woocommerce -msgid "Registration" -msgstr "" - -#: admin/settings/settings-init.php:151 -#@ woocommerce -msgid "Allow registration on the checkout page" -msgstr "" - -#: admin/settings/settings-init.php:159 -#@ woocommerce -msgid "Allow registration on the \"My Account\" page" -msgstr "" - -#: admin/settings/settings-init.php:167 -#@ woocommerce -msgid "Register using the email address for the username" -msgstr "" - -#: admin/settings/settings-init.php:175 -#@ woocommerce -msgid "Customer Accounts" -msgstr "" - -#: admin/settings/settings-init.php:176 -#@ woocommerce -msgid "Prevent customers from accessing WordPress admin" -msgstr "" - -#: admin/settings/settings-init.php:184 -#@ woocommerce -msgid "Clear cart when logging out" -msgstr "" - -#: admin/settings/settings-init.php:192 -#@ woocommerce -msgid "Allow customers to repurchase orders from their account page" -msgstr "" - -#: admin/settings/settings-init.php:201 -#@ woocommerce -msgid "Styles and Scripts" -msgstr "" - -#: admin/settings/settings-init.php:204 -#@ woocommerce -msgid "Styling" -msgstr "" - -#: admin/settings/settings-init.php:205 -#@ woocommerce -msgid "Enable WooCommerce CSS" -msgstr "" - -#: admin/settings/settings-init.php:216 -#@ woocommerce -msgid "Scripts" -msgstr "" - -#: admin/settings/settings-init.php:217 -#@ woocommerce -msgid "Enable Lightbox" -msgstr "" - -#: admin/settings/settings-init.php:220 -#@ woocommerce -msgid "Include WooCommerce's lightbox. Product gallery images and the add review form will open in a lightbox." -msgstr "" - -#: admin/settings/settings-init.php:226 -#@ woocommerce -msgid "Enable enhanced country select boxes" -msgstr "" - -#: admin/settings/settings-init.php:231 -#@ woocommerce -msgid "This will enable a script allowing the country fields to be searchable." -msgstr "" - -#: admin/settings/settings-init.php:236 -#@ woocommerce -msgid "Downloadable Products" -msgstr "" - -#: admin/settings/settings-init.php:239 -#@ woocommerce -msgid "File Download Method" -msgstr "" - -#: admin/settings/settings-init.php:240 -#@ woocommerce -msgid "Forcing downloads will keep URLs hidden, but some servers may serve large files unreliably. If supported, X-Accel-Redirect/ X-Sendfile can be used to serve downloads instead (server requires mod_xsendfile)." -msgstr "" - -#: admin/settings/settings-init.php:248 -#@ woocommerce -msgid "Force Downloads" -msgstr "" - -#: admin/settings/settings-init.php:249 -#@ woocommerce -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "" - -#: admin/settings/settings-init.php:250 -#@ woocommerce -msgid "Redirect only" -msgstr "" - -#: admin/settings/settings-init.php:255 -#@ woocommerce -msgid "Access Restriction" -msgstr "" - -#: admin/settings/settings-init.php:256 -#@ woocommerce -msgid "Downloads require login" -msgstr "" - -#: admin/settings/settings-init.php:260 -#@ woocommerce -msgid "This setting does not apply to guest purchases." -msgstr "" - -#: admin/settings/settings-init.php:265 -#@ woocommerce -msgid "Grant access to downloadable products after payment" -msgstr "" - -#: admin/settings/settings-init.php:269 -#@ woocommerce -msgid "Enable this option to grant access to downloads when orders are \"processing\", rather than \"completed\"." -msgstr "" - -#: admin/settings/settings-init.php:285 -#@ woocommerce -msgid "Note: The shop page has children - child pages will not work if you enable this option." -msgstr "" - -#: admin/settings/settings-init.php:290 -#@ woocommerce -msgid "Page Setup" -msgstr "" - -#: admin/settings/settings-init.php:292 -#, php-format -#@ woocommerce -msgid "Set up core WooCommerce pages here, for example the base page. The base page can also be used in your %sproduct permalinks%s." -msgstr "" - -#: admin/settings/settings-init.php:297 -#@ woocommerce -msgid "Shop Base Page" -msgstr "" - -#: admin/settings/settings-init.php:298 -#@ woocommerce -msgid "This sets the base page of your shop - this is where your product archive will be." -msgstr "" - -#: admin/settings/settings-init.php:308 -#@ woocommerce -msgid "Base Page Title" -msgstr "" - -#: admin/settings/settings-init.php:309 -#@ woocommerce -msgid "This title to show on the shop base page. Leave blank to use the page title." -msgstr "" - -#: admin/settings/settings-init.php:318 -#@ woocommerce -msgid "Terms Page ID" -msgstr "" - -#: admin/settings/settings-init.php:319 -#@ woocommerce -msgid "If you define a \"Terms\" page the customer will be asked if they accept them when checking out." -msgstr "" - -#: admin/settings/settings-init.php:330 -#@ woocommerce -msgid "Shop Pages" -msgstr "" - -#: admin/settings/settings-init.php:330 -#@ woocommerce -msgid "The following pages need selecting so that WooCommerce knows where they are. These pages should have been created upon installation of the plugin, if not you will need to create them." -msgstr "" - -#: admin/settings/settings-init.php:333 -#@ woocommerce -msgid "Cart Page" -msgstr "" - -#: admin/settings/settings-init.php:334 -#@ woocommerce -msgid "Page contents: [woocommerce_cart]" -msgstr "" - -#: admin/settings/settings-init.php:344 -#@ woocommerce -msgid "Checkout Page" -msgstr "" - -#: admin/settings/settings-init.php:345 -#@ woocommerce -msgid "Page contents: [woocommerce_checkout]" -msgstr "" - -#: admin/settings/settings-init.php:355 -#@ woocommerce -msgid "Pay Page" -msgstr "" - -#: admin/settings/settings-init.php:356 -#@ woocommerce -msgid "Page contents: [woocommerce_pay] Parent: \"Checkout\"" -msgstr "" - -#: admin/settings/settings-init.php:366 -#@ woocommerce -msgid "Thanks Page" -msgstr "" - -#: admin/settings/settings-init.php:367 -#@ woocommerce -msgid "Page contents: [woocommerce_thankyou] Parent: \"Checkout\"" -msgstr "" - -#: admin/settings/settings-init.php:377 -#@ woocommerce -msgid "My Account Page" -msgstr "" - -#: admin/settings/settings-init.php:378 -#@ woocommerce -msgid "Page contents: [woocommerce_my_account]" -msgstr "" - -#: admin/settings/settings-init.php:388 -#@ woocommerce -msgid "Edit Address Page" -msgstr "" - -#: admin/settings/settings-init.php:389 -#@ woocommerce -msgid "Page contents: [woocommerce_edit_address] Parent: \"My Account\"" -msgstr "" - -#: admin/settings/settings-init.php:399 -#@ woocommerce -msgid "View Order Page" -msgstr "" - -#: admin/settings/settings-init.php:400 -#@ woocommerce -msgid "Page contents: [woocommerce_view_order] Parent: \"My Account\"" -msgstr "" - -#: admin/settings/settings-init.php:410 -#@ woocommerce -msgid "Change Password Page" -msgstr "" - -#: admin/settings/settings-init.php:411 -#@ woocommerce -msgid "Page contents: [woocommerce_change_password] Parent: \"My Account\"" -msgstr "" - -#: admin/settings/settings-init.php:421 -#@ woocommerce -msgid "Logout Page" -msgstr "" - -#: admin/settings/settings-init.php:422 -#@ woocommerce -msgid "Parent: \"My Account\"" -msgstr "" - -#: admin/settings/settings-init.php:432 -#@ woocommerce -msgid "Lost Password Page" -msgstr "" - -#: admin/settings/settings-init.php:433 -#@ woocommerce -msgid "Page contents: [woocommerce_lost_password] Parent: \"My Account\"" -msgstr "" - -#: admin/settings/settings-init.php:449 -#@ woocommerce -msgid "Catalog Options" -msgstr "" - -#: admin/settings/settings-init.php:452 -#@ woocommerce -msgid "Default Product Sorting" -msgstr "" - -#: admin/settings/settings-init.php:453 -#@ woocommerce -msgid "This controls the default sort order of the catalog." -msgstr "" - -#: admin/settings/settings-init.php:459 -#@ woocommerce -msgid "Default sorting (custom ordering + name)" -msgstr "" - -#: admin/settings/settings-init.php:460 -#@ woocommerce -msgid "Popularity (sales)" -msgstr "" - -#: admin/settings/settings-init.php:461 -#@ woocommerce -msgid "Average Rating" -msgstr "" - -#: admin/settings/settings-init.php:463 -#@ woocommerce -msgid "Sort by price (asc)" -msgstr "" - -#: admin/settings/settings-init.php:464 -#@ woocommerce -msgid "Sort by price (desc)" -msgstr "" - -#: admin/settings/settings-init.php:470 -#@ woocommerce -msgid "Shop Page Display" -msgstr "" - -#: admin/settings/settings-init.php:471 -#@ woocommerce -msgid "This controls what is shown on the product archive." -msgstr "" - -#: admin/settings/settings-init.php:477 -#: admin/settings/settings-init.php:492 -#@ woocommerce -msgid "Show products" -msgstr "" - -#: admin/settings/settings-init.php:478 -#: admin/settings/settings-init.php:493 -#@ woocommerce -msgid "Show subcategories" -msgstr "" - -#: admin/settings/settings-init.php:479 -#: admin/settings/settings-init.php:494 -#@ woocommerce -msgid "Show both" -msgstr "" - -#: admin/settings/settings-init.php:485 -#@ woocommerce -msgid "Default Category Display" -msgstr "" - -#: admin/settings/settings-init.php:486 -#@ woocommerce -msgid "This controls what is shown on category archives." -msgstr "" - -#: admin/settings/settings-init.php:501 -#@ woocommerce -msgid "Redirect to the cart page after successful addition" -msgstr "" - -#: admin/settings/settings-init.php:509 -#@ woocommerce -msgid "Enable AJAX add to cart buttons on archives" -msgstr "" - -#: admin/settings/settings-init.php:518 -#@ woocommerce -msgid "The following options affect the fields available on the edit product page." -msgstr "" - -#: admin/settings/settings-init.php:521 -#@ woocommerce -msgid "Product Fields" -msgstr "" - -#: admin/settings/settings-init.php:522 -#@ woocommerce -msgid "Enable the SKU field for products" -msgstr "" - -#: admin/settings/settings-init.php:530 -#@ woocommerce -msgid "Enable the weight field for products (some shipping methods may require this)" -msgstr "" - -#: admin/settings/settings-init.php:538 -#@ woocommerce -msgid "Enable the dimension fields for products (some shipping methods may require this)" -msgstr "" - -#: admin/settings/settings-init.php:546 -#@ woocommerce -msgid "Show weight and dimension values on the Additional Information tab" -msgstr "" - -#: admin/settings/settings-init.php:554 -#@ woocommerce -msgid "Weight Unit" -msgstr "" - -#: admin/settings/settings-init.php:555 -#@ woocommerce -msgid "This controls what unit you will define weights in." -msgstr "" - -#: admin/settings/settings-init.php:561 -#@ woocommerce -msgid "kg" -msgstr "" - -#: admin/settings/settings-init.php:562 -#@ woocommerce -msgid "g" -msgstr "" - -#: admin/settings/settings-init.php:563 -#@ woocommerce -msgid "lbs" -msgstr "" - -#: admin/settings/settings-init.php:564 -#@ woocommerce -msgid "oz" -msgstr "" - -#: admin/settings/settings-init.php:570 -#@ woocommerce -msgid "Dimensions Unit" -msgstr "" - -#: admin/settings/settings-init.php:571 -#@ woocommerce -msgid "This controls what unit you will define lengths in." -msgstr "" - -#: admin/settings/settings-init.php:578 -#@ woocommerce -msgid "cm" -msgstr "" - -#: admin/settings/settings-init.php:579 -#@ woocommerce -msgid "mm" -msgstr "" - -#: admin/settings/settings-init.php:580 -#@ woocommerce -msgid "in" -msgstr "" - -#: admin/settings/settings-init.php:581 -#@ woocommerce -msgid "yd" -msgstr "" - -#: admin/settings/settings-init.php:587 -#@ woocommerce -msgid "Product Ratings" -msgstr "" - -#: admin/settings/settings-init.php:588 -#@ woocommerce -msgid "Enable ratings on reviews" -msgstr "" - -#: admin/settings/settings-init.php:597 -#@ woocommerce -msgid "Ratings are required to leave a review" -msgstr "" - -#: admin/settings/settings-init.php:606 -#@ woocommerce -msgid "Show \"verified owner\" label for customer reviews" -msgstr "" - -#: admin/settings/settings-init.php:616 -#@ woocommerce -msgid "Pricing Options" -msgstr "" - -#: admin/settings/settings-init.php:616 -#@ woocommerce -msgid "The following options affect how prices are displayed on the frontend." -msgstr "" - -#: admin/settings/settings-init.php:619 -#@ woocommerce -msgid "Currency Position" -msgstr "" - -#: admin/settings/settings-init.php:620 -#@ woocommerce -msgid "This controls the position of the currency symbol." -msgstr "" - -#: admin/settings/settings-init.php:626 -#@ woocommerce -msgid "Left" -msgstr "" - -#: admin/settings/settings-init.php:627 -#@ woocommerce -msgid "Right" -msgstr "" - -#: admin/settings/settings-init.php:628 -#@ woocommerce -msgid "Left (with space)" -msgstr "" - -#: admin/settings/settings-init.php:629 -#@ woocommerce -msgid "Right (with space)" -msgstr "" - -#: admin/settings/settings-init.php:635 -#@ woocommerce -msgid "Thousand Separator" -msgstr "" - -#: admin/settings/settings-init.php:636 -#@ woocommerce -msgid "This sets the thousand separator of displayed prices." -msgstr "" - -#: admin/settings/settings-init.php:645 -#@ woocommerce -msgid "Decimal Separator" -msgstr "" - -#: admin/settings/settings-init.php:646 -#@ woocommerce -msgid "This sets the decimal separator of displayed prices." -msgstr "" - -#: admin/settings/settings-init.php:655 -#@ woocommerce -msgid "Number of Decimals" -msgstr "" - -#: admin/settings/settings-init.php:656 -#@ woocommerce -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "" - -#: admin/settings/settings-init.php:669 -#@ woocommerce -msgid "Trailing Zeros" -msgstr "" - -#: admin/settings/settings-init.php:670 -#@ woocommerce -msgid "Remove zeros after the decimal point. e.g. $10.00 becomes $10" -msgstr "" - -#: admin/settings/settings-init.php:678 -#@ woocommerce -msgid "Image Options" -msgstr "" - -#: admin/settings/settings-init.php:678 -#, php-format -#@ woocommerce -msgid "These settings affect the actual dimensions of images in your catalog - the display on the front-end will still be affected by CSS styles. After changing these settings you may need to regenerate your thumbnails." -msgstr "" - -#: admin/settings/settings-init.php:681 -#@ woocommerce -msgid "Catalog Images" -msgstr "" - -#: admin/settings/settings-init.php:682 -#@ woocommerce -msgid "This size is usually used in product listings" -msgstr "" - -#: admin/settings/settings-init.php:695 -#@ woocommerce -msgid "Single Product Image" -msgstr "" - -#: admin/settings/settings-init.php:696 -#@ woocommerce -msgid "This is the size used by the main image on the product page." -msgstr "" - -#: admin/settings/settings-init.php:709 -#@ woocommerce -msgid "Product Thumbnails" -msgstr "" - -#: admin/settings/settings-init.php:710 -#@ woocommerce -msgid "This size is usually used for the gallery of images on the product page." -msgstr "" - -#: admin/settings/settings-init.php:729 -#@ woocommerce -msgid "Inventory Options" -msgstr "" - -#: admin/settings/settings-init.php:732 -#@ woocommerce -msgid "Manage Stock" -msgstr "" - -#: admin/settings/settings-init.php:733 -#@ woocommerce -msgid "Enable stock management" -msgstr "" - -#: admin/settings/settings-init.php:740 -#@ woocommerce -msgid "Hold Stock (minutes)" -msgstr "" - -#: admin/settings/settings-init.php:741 -#@ woocommerce -msgid "Hold stock (for unpaid orders) for x minutes. When this limit is reached, the pending order will be cancelled. Leave blank to disable." -msgstr "" - -#: admin/settings/settings-init.php:753 -#@ woocommerce -msgid "Notifications" -msgstr "" - -#: admin/settings/settings-init.php:754 -#@ woocommerce -msgid "Enable low stock notifications" -msgstr "" - -#: admin/settings/settings-init.php:762 -#@ woocommerce -msgid "Enable out of stock notifications" -msgstr "" - -#: admin/settings/settings-init.php:770 -#@ woocommerce -msgid "Notification Recipient" -msgstr "" - -#: admin/settings/settings-init.php:778 -#@ woocommerce -msgid "Low Stock Threshold" -msgstr "" - -#: admin/settings/settings-init.php:791 -#@ woocommerce -msgid "Out Of Stock Threshold" -msgstr "" - -#: admin/settings/settings-init.php:804 -#@ woocommerce -msgid "Out Of Stock Visibility" -msgstr "" - -#: admin/settings/settings-init.php:805 -#@ woocommerce -msgid "Hide out of stock items from the catalog" -msgstr "" - -#: admin/settings/settings-init.php:812 -#@ woocommerce -msgid "Stock Display Format" -msgstr "" - -#: admin/settings/settings-init.php:813 -#@ woocommerce -msgid "This controls how stock is displayed on the frontend." -msgstr "" - -#: admin/settings/settings-init.php:819 -#@ woocommerce -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "" - -#: admin/settings/settings-init.php:820 -#@ woocommerce -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "" - -#: admin/settings/settings-init.php:821 -#@ woocommerce -msgid "Never show stock amount" -msgstr "" - -#: admin/settings/settings-init.php:836 -#@ woocommerce -msgid "Shipping Calculations" -msgstr "" - -#: admin/settings/settings-init.php:837 -#@ woocommerce -msgid "Enable shipping" -msgstr "" - -#: admin/settings/settings-init.php:845 -#@ woocommerce -msgid "Enable the shipping calculator on the cart page" -msgstr "" - -#: admin/settings/settings-init.php:853 -#@ woocommerce -msgid "Hide shipping costs until an address is entered" -msgstr "" - -#: admin/settings/settings-init.php:861 -#@ woocommerce -msgid "Shipping Method Display" -msgstr "" - -#: admin/settings/settings-init.php:862 -#@ woocommerce -msgid "This controls how multiple shipping methods are displayed on the frontend." -msgstr "" - -#: admin/settings/settings-init.php:868 -#@ woocommerce -msgid "Radio buttons" -msgstr "" - -#: admin/settings/settings-init.php:869 -#@ woocommerce -msgid "Select box" -msgstr "" - -#: admin/settings/settings-init.php:875 -#@ woocommerce -msgid "Shipping Destination" -msgstr "" - -#: admin/settings/settings-init.php:876 -#@ woocommerce -msgid "Only ship to the users billing address" -msgstr "" - -#: admin/settings/settings-init.php:884 -#@ woocommerce -msgid "Ship to billing address by default" -msgstr "" - -#: admin/settings/settings-init.php:892 -#@ woocommerce -msgid "Collect shipping address even when not required" -msgstr "" - -#: admin/settings/settings-init.php:910 -#: admin/woocommerce-admin-settings.php:186 -#: admin/woocommerce-admin-settings.php:327 -#@ woocommerce -msgid "Payment Gateways" -msgstr "" - -#: admin/settings/settings-init.php:910 -#@ woocommerce -msgid "Installed payment gateways are displayed below. Drag and drop payment gateways to control their display order on the checkout." -msgstr "" - -#: admin/settings/settings-init.php:928 -#: admin/woocommerce-admin-settings.php:220 -#@ woocommerce -msgid "Tax Options" -msgstr "" - -#: admin/settings/settings-init.php:931 -#@ woocommerce -msgid "Enable Taxes" -msgstr "" - -#: admin/settings/settings-init.php:932 -#@ woocommerce -msgid "Enable taxes and tax calculations" -msgstr "" - -#: admin/settings/settings-init.php:939 -#@ woocommerce -msgid "Prices Entered With Tax" -msgstr "" - -#: admin/settings/settings-init.php:943 -#@ woocommerce -msgid "This option is important as it will affect how you input prices. Changing it will not update existing products." -msgstr "" - -#: admin/settings/settings-init.php:945 -#@ woocommerce -msgid "Yes, I will enter prices inclusive of tax" -msgstr "" - -#: admin/settings/settings-init.php:946 -#@ woocommerce -msgid "No, I will enter prices exclusive of tax" -msgstr "" - -#: admin/settings/settings-init.php:951 -#@ woocommerce -msgid "Calculate Tax Based On:" -msgstr "" - -#: admin/settings/settings-init.php:953 -#@ woocommerce -msgid "This option determines which address is used to calculate tax." -msgstr "" - -#: admin/settings/settings-init.php:957 -#@ woocommerce -msgid "Customer shipping address" -msgstr "" - -#: admin/settings/settings-init.php:958 -#@ woocommerce -msgid "Customer billing address" -msgstr "" - -#: admin/settings/settings-init.php:959 -#: admin/settings/settings-init.php:971 -#@ woocommerce -msgid "Shop base address" -msgstr "" - -#: admin/settings/settings-init.php:964 -#@ woocommerce -msgid "Default Customer Address:" -msgstr "" - -#: admin/settings/settings-init.php:966 -#@ woocommerce -msgid "This option determines the customers default address (before they input their own)." -msgstr "" - -#: admin/settings/settings-init.php:970 -#@ woocommerce -msgid "No address" -msgstr "" - -#: admin/settings/settings-init.php:976 -#@ woocommerce -msgid "Shipping Tax Class:" -msgstr "" - -#: admin/settings/settings-init.php:977 -#@ woocommerce -msgid "Optionally control which tax class shipping gets, or leave it so shipping tax is based on the cart items themselves." -msgstr "" - -#: admin/settings/settings-init.php:982 -#@ woocommerce -msgid "Shipping tax class based on cart items" -msgstr "" - -#: admin/settings/settings-init.php:987 -#@ woocommerce -msgid "Rounding" -msgstr "" - -#: admin/settings/settings-init.php:988 -#@ woocommerce -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "" - -#: admin/settings/settings-init.php:995 -#@ woocommerce -msgid "Additional Tax Classes" -msgstr "" - -#: admin/settings/settings-init.php:996 -#@ woocommerce -msgid "List additonal tax classes below (1 per line). This is in addition to the default Standard Rate. Tax classes can be assigned to products." -msgstr "" - -#: admin/settings/settings-init.php:1000 -#, php-format -#@ woocommerce -msgid "Reduced Rate%sZero Rate" -msgstr "" - -#: admin/settings/settings-init.php:1004 -#@ woocommerce -msgid "Display prices during cart/checkout:" -msgstr "" - -#: admin/settings/settings-init.php:1009 -#@ woocommerce -msgid "Including tax" -msgstr "" - -#: admin/settings/settings-init.php:1010 -#@ woocommerce -msgid "Excluding tax" -msgstr "" - -#: admin/settings/settings-init.php:1022 -#@ woocommerce -msgid "Email Sender Options" -msgstr "" - -#: admin/settings/settings-init.php:1022 -#@ woocommerce -msgid "The following options affect the sender (email address and name) used in WooCommerce emails." -msgstr "" - -#: admin/settings/settings-init.php:1025 -#@ woocommerce -msgid "\"From\" Name" -msgstr "" - -#: admin/settings/settings-init.php:1034 -#@ woocommerce -msgid "\"From\" Email Address" -msgstr "" - -#: admin/settings/settings-init.php:1047 -#@ woocommerce -msgid "Email Template" -msgstr "" - -#: admin/settings/settings-init.php:1047 -#, php-format -#@ woocommerce -msgid "This section lets you customise the WooCommerce emails. Click here to preview your email template. For more advanced control copy woocommerce/templates/emails/ to yourtheme/woocommerce/emails/." -msgstr "" - -#: admin/settings/settings-init.php:1050 -#@ woocommerce -msgid "Header Image" -msgstr "" - -#: admin/settings/settings-init.php:1051 -#, php-format -#@ woocommerce -msgid "Enter a URL to an image you want to show in the email's header. Upload your image using the media uploader." -msgstr "" - -#: admin/settings/settings-init.php:1059 -#@ woocommerce -msgid "Email Footer Text" -msgstr "" - -#: admin/settings/settings-init.php:1060 -#@ woocommerce -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "" - -#: admin/settings/settings-init.php:1064 -#@ woocommerce -msgid "Powered by WooCommerce" -msgstr "" - -#: admin/settings/settings-init.php:1068 -#@ woocommerce -msgid "Base Colour" -msgstr "" - -#: admin/settings/settings-init.php:1069 -#@ woocommerce -msgid "The base colour for WooCommerce email templates. Default #557da1." -msgstr "" - -#: admin/settings/settings-init.php:1077 -#@ woocommerce -msgid "Background Colour" -msgstr "" - -#: admin/settings/settings-init.php:1078 -#@ woocommerce -msgid "The background colour for WooCommerce email templates. Default #f5f5f5." -msgstr "" - -#: admin/settings/settings-init.php:1086 -#@ woocommerce -msgid "Email Body Background Colour" -msgstr "" - -#: admin/settings/settings-init.php:1087 -#@ woocommerce -msgid "The main body background colour. Default #fdfdfd." -msgstr "" - -#: admin/settings/settings-init.php:1095 -#@ woocommerce -msgid "Email Body Text Colour" -msgstr "" - -#: admin/settings/settings-init.php:1096 -#@ woocommerce -msgid "The main body text colour. Default #505050." -msgstr "" - -#: admin/settings/settings-payment-gateways.php:27 -#: admin/settings/settings-shipping-methods.php:29 -#: admin/woocommerce-admin-init.php:767 -#: admin/woocommerce-admin-taxonomies.php:27 -#: admin/woocommerce-admin-taxonomies.php:121 -#@ woocommerce -#@ default -msgid "Default" -msgstr "" - -#: admin/settings/settings-payment-gateways.php:28 -#@ woocommerce -msgid "Gateway" -msgstr "" - -#: admin/settings/settings-payment-gateways.php:45 -#@ woocommerce -msgid "Gateway ID" -msgstr "" - -#: admin/settings/settings-shipping-methods.php:23 -#@ woocommerce -msgid "Shipping Methods" -msgstr "" - -#: admin/settings/settings-shipping-methods.php:25 -#@ woocommerce -msgid "Drag and drop methods to control their display order." -msgstr "" - -#: admin/settings/settings-shipping-methods.php:30 -#@ woocommerce -msgid "Shipping Method" -msgstr "" - -#: admin/settings/settings-shipping-methods.php:46 -#@ woocommerce -msgid "Method ID" -msgstr "" - -#: admin/settings/settings-tax-rates.php:29 -#, php-format -#@ woocommerce -msgid "Tax Rates for the \"%s\" Class" -msgstr "" - -#: admin/settings/settings-tax-rates.php:30 -#, php-format -#@ woocommerce -msgid "Define tax rates for countries and states below. See here for available alpha-2 country codes." -msgstr "" - -#: admin/settings/settings-tax-rates.php:36 -#@ woocommerce -msgid "Country Code" -msgstr "" - -#: admin/settings/settings-tax-rates.php:36 -#@ woocommerce -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "" - -#: admin/settings/settings-tax-rates.php:38 -#@ woocommerce -msgid "State Code" -msgstr "" - -#: admin/settings/settings-tax-rates.php:38 -#@ woocommerce -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "" - -#: admin/settings/settings-tax-rates.php:40 -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "ZIP/Postcode" -msgstr "" - -#: admin/settings/settings-tax-rates.php:40 -#@ woocommerce -msgid "Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank to apply to all areas. Wildcards (*) can be used. Ranges for numeric postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "" - -#: admin/settings/settings-tax-rates.php:42 -#@ woocommerce -msgid "Cities for this rule. Semi-colon (;) separate multiple values. Leave blank to apply to all cities." -msgstr "" - -#: admin/settings/settings-tax-rates.php:44 -#@ woocommerce -msgid "Rate %" -msgstr "" - -#: admin/settings/settings-tax-rates.php:44 -#@ woocommerce -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "" - -#: admin/settings/settings-tax-rates.php:46 -#@ woocommerce -msgid "Tax Name" -msgstr "" - -#: admin/settings/settings-tax-rates.php:46 -#@ woocommerce -msgid "Enter a name for this tax rate." -msgstr "" - -#: admin/settings/settings-tax-rates.php:48 -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Priority" -msgstr "" - -#: admin/settings/settings-tax-rates.php:48 -#@ woocommerce -msgid "Choose a priority for this tax rate. Only 1 matching rate per priority will be used. To define multiple tax rates for a single area you need to specify a different priority per rate." -msgstr "" - -#: admin/settings/settings-tax-rates.php:50 -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Compound" -msgstr "" - -#: admin/settings/settings-tax-rates.php:50 -#@ woocommerce -msgid "Choose whether or not this is a compound rate. Compound tax rates are applied on top of other tax rates." -msgstr "" - -#: admin/settings/settings-tax-rates.php:52 -#@ woocommerce -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "" - -#: admin/settings/settings-tax-rates.php:59 -#@ woocommerce -msgid "Insert row" -msgstr "" - -#: admin/settings/settings-tax-rates.php:60 -#@ woocommerce -msgid "Remove selected row(s)" -msgstr "" - -#: admin/settings/settings-tax-rates.php:62 -#@ woocommerce -msgid "Export CSV" -msgstr "" - -#: admin/settings/settings-tax-rates.php:63 -#@ woocommerce -msgid "Import CSV" -msgstr "" - -#: admin/settings/settings-tax-rates.php:163 -#@ woocommerce -msgid "No row(s) selected" -msgstr "" - -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Country Code" -msgstr "" - -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "State Code" -msgstr "" - -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Rate %" -msgstr "" - -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Tax Name" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:77 -#@ woocommerce -msgid "Please, provide an attribute name, slug and type." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:79 -#, php-format -#@ woocommerce -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:81 -#, php-format -#@ woocommerce -msgid "Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:85 -#: admin/woocommerce-admin-attributes.php:90 -#, php-format -#@ woocommerce -msgid "Slug “%s” is already in use. Change it, please." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:226 -#@ woocommerce -msgid "Edit Attribute" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:236 -#: admin/woocommerce-admin-attributes.php:375 -#@ woocommerce -msgid "Name for the attribute (shown on the front-end)." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:241 -#: admin/woocommerce-admin-attributes.php:307 -#: admin/woocommerce-admin-attributes.php:379 -#@ woocommerce -msgid "Slug" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:245 -#: admin/woocommerce-admin-attributes.php:381 -#@ woocommerce -msgid "Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:254 -#: admin/woocommerce-admin-attributes.php:387 -#@ woocommerce -msgid "Select" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:255 -#: admin/woocommerce-admin-attributes.php:388 -#@ woocommerce -msgid "Text" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:258 -#: admin/woocommerce-admin-attributes.php:391 -#@ woocommerce -msgid "Determines how you select attributes for products. Under admin panel -> products -> product data -> attributes -> values, Text allows manual entry whereas select allows pre-configured terms in a drop-down list." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:263 -#: admin/woocommerce-admin-attributes.php:395 -#@ woocommerce -msgid "Default sort order" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:267 -#: admin/woocommerce-admin-attributes.php:335 -#: admin/woocommerce-admin-attributes.php:397 -#@ woocommerce -msgid "Custom ordering" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:269 -#: admin/woocommerce-admin-attributes.php:332 -#: admin/woocommerce-admin-attributes.php:399 -#@ woocommerce -msgid "Term ID" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:271 -#: admin/woocommerce-admin-attributes.php:401 -#@ woocommerce -msgid "Determines the sort order of the terms on the frontend shop product pages. If using custom ordering, you can drag and drop the terms in this attribute." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:309 -#@ woocommerce -msgid "Order by" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:310 -#@ woocommerce -msgid "Terms" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:355 -#@ woocommerce -msgid "Configure terms" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:359 -#@ woocommerce -msgid "No attributes currently exist." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:369 -#@ woocommerce -msgid "Add New Attribute" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:370 -#@ woocommerce -msgid "Attributes let you define extra product data, such as size or colour. You can use these attributes in the shop sidebar using the \"layered nav\" widgets. Please note: you cannot rename an attribute later on." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:404 -#@ woocommerce -msgid "Add Attribute" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:415 -#@ woocommerce -msgid "Are you sure you want to delete this attribute?" -msgstr "" - -#: admin/woocommerce-admin-content.php:26 -#: admin/woocommerce-admin-reports.php:30 -#: admin/woocommerce-admin-reports.php:75 -#: admin/woocommerce-admin-reports.php:91 -#: admin/woocommerce-admin-reports.php:102 -#@ woocommerce -msgid "Overview" -msgstr "" - -#: admin/woocommerce-admin-content.php:29 -#, php-format -#@ woocommerce -msgid "Thank you for using WooCommerce :) Should you need help using or extending WooCommerce please read the documentation. For further assistance you can use the community forum or if you have access, our support desk." -msgstr "" - -#: admin/woocommerce-admin-content.php:31 -#@ woocommerce -msgid "If you are having problems, or to assist us with support, please check the status page to identify any problems with your configuration:" -msgstr "" - -#: admin/woocommerce-admin-content.php:33 -#: admin/woocommerce-admin-init.php:87 -#: admin/woocommerce-admin-status.php:26 -#@ woocommerce -msgid "System Status" -msgstr "" - -#: admin/woocommerce-admin-content.php:35 -#, php-format -#@ woocommerce -msgid "If you come across a bug, or wish to contribute to the project you can also get involved on GitHub." -msgstr "" - -#: admin/woocommerce-admin-content.php:43 -#@ woocommerce -msgid "Here you can set up your store and customise it to fit your needs. The sections available from the settings page include:" -msgstr "" - -#: admin/woocommerce-admin-content.php:44 -#@ woocommerce -msgid "General settings such as your shop base, currency, and script/styling options which affect features used in your store." -msgstr "" - -#: admin/woocommerce-admin-content.php:45 -#@ woocommerce -msgid "This is where important store page are defined. You can also set up other pages (such as a Terms page) here." -msgstr "" - -#: admin/woocommerce-admin-content.php:46 -#@ woocommerce -msgid "Options for how things like price, images and weights appear in your product catalog." -msgstr "" - -#: admin/woocommerce-admin-content.php:47 -#@ woocommerce -msgid "Options concerning stock and stock notices." -msgstr "" - -#: admin/woocommerce-admin-content.php:48 -#@ woocommerce -msgid "Options concerning tax, including international and local tax rates." -msgstr "" - -#: admin/woocommerce-admin-content.php:49 -#@ woocommerce -msgid "This is where shipping options are defined, and shipping methods are set up." -msgstr "" - -#: admin/woocommerce-admin-content.php:50 -#@ woocommerce -msgid "Payment Methods" -msgstr "" - -#: admin/woocommerce-admin-content.php:50 -#@ woocommerce -msgid "This is where payment gateway options are defined, and individual payment gateways are set up." -msgstr "" - -#: admin/woocommerce-admin-content.php:51 -#: admin/woocommerce-admin-settings.php:187 -#@ woocommerce -msgid "Emails" -msgstr "" - -#: admin/woocommerce-admin-content.php:51 -#@ woocommerce -msgid "Here you can customise the way WooCommerce emails appear." -msgstr "" - -#: admin/woocommerce-admin-content.php:52 -#: admin/woocommerce-admin-settings.php:188 -#@ woocommerce -msgid "Integration" -msgstr "" - -#: admin/woocommerce-admin-content.php:52 -#@ woocommerce -msgid "The integration section contains options for third party services which integrate with WooCommerce." -msgstr "" - -#: admin/woocommerce-admin-content.php:57 -#: admin/woocommerce-admin-init.php:64 -#@ woocommerce -msgid "Reports" -msgstr "" - -#: admin/woocommerce-admin-content.php:59 -#@ woocommerce -msgid "The reports section can be accessed from the left-hand navigation menu. Here you can generate reports for sales and customers." -msgstr "" - -#: admin/woocommerce-admin-content.php:60 -#: admin/woocommerce-admin-reports.php:27 -#: admin/woocommerce-admin-reports.php:986 -#: admin/woocommerce-admin-reports.php:1082 -#: admin/woocommerce-admin-reports.php:1199 -#@ woocommerce -msgid "Sales" -msgstr "" - -#: admin/woocommerce-admin-content.php:60 -#@ woocommerce -msgid "Reports for sales based on date, top sellers and top earners." -msgstr "" - -#: admin/woocommerce-admin-content.php:61 -#@ woocommerce -msgid "Coupon usage reports." -msgstr "" - -#: admin/woocommerce-admin-content.php:62 -#: admin/woocommerce-admin-reports.php:88 -#@ woocommerce -msgid "Customers" -msgstr "" - -#: admin/woocommerce-admin-content.php:62 -#@ woocommerce -msgid "Customer reports, such as signups per day." -msgstr "" - -#: admin/woocommerce-admin-content.php:63 -#@ woocommerce -msgid "Stock reports for low stock and out of stock items." -msgstr "" - -#: admin/woocommerce-admin-content.php:70 -#@ woocommerce -msgid "The orders section can be accessed from the left-hand navigation menu. Here you can view and manage customer orders." -msgstr "" - -#: admin/woocommerce-admin-content.php:71 -#@ woocommerce -msgid "Orders can also be added from this section if you want to set them up for a customer manually." -msgstr "" - -#: admin/woocommerce-admin-content.php:78 -#@ woocommerce -msgid "Coupons can be managed from this section. Once added, customers will be able to enter coupon codes on the cart/checkout page. If a customer uses a coupon code they will be viewable when viewing orders." -msgstr "" - -#: admin/woocommerce-admin-content.php:82 -#@ woocommerce -msgid "For more information:" -msgstr "" - -#: admin/woocommerce-admin-content.php:84 -#@ woocommerce -msgid "Project on WordPress.org" -msgstr "" - -#: admin/woocommerce-admin-content.php:85 -#@ woocommerce -msgid "Project on Github" -msgstr "" - -#: admin/woocommerce-admin-content.php:86 -#@ woocommerce -msgid "WooCommerce Docs" -msgstr "" - -#: admin/woocommerce-admin-content.php:87 -#@ woocommerce -msgid "Official Extensions" -msgstr "" - -#: admin/woocommerce-admin-content.php:88 -#@ woocommerce -msgid "Official Themes" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:40 -#@ woocommerce -msgid "Monthly Sales" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:43 -#@ woocommerce -msgid "WooCommerce Right Now" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:44 -#@ woocommerce -msgid "WooCommerce Recent Orders" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:78 -#@ woocommerce -msgid "Shop Content" -msgstr "" - -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:84 -#: admin/woocommerce-admin-functions.php:194 -#: admin/woocommerce-admin-init.php:771 -#: admin/woocommerce-admin-reports.php:985 -#: admin/woocommerce-admin-reports.php:1081 -#: templates/cart/cart.php:28 -#: templates/checkout/form-pay.php:19 -#: templates/checkout/review-order.php:21 -#: templates/emails/admin-new-order.php:22 -#: templates/emails/customer-completed-order.php:23 -#: templates/emails/customer-invoice.php:27 -#: templates/emails/customer-note.php:27 -#: templates/emails/customer-processing-order.php:23 -#: templates/order/order-details.php:20 -#: woocommerce.php:949 -#@ woocommerce -msgid "Product" -msgid_plural "Products" -msgstr[0] "" -msgstr[1] "" - -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:98 -#: woocommerce.php:790 -#@ woocommerce -msgid "Product Category" -msgid_plural "Product Categories" -msgstr[0] "" -msgstr[1] "" - -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:112 -#: woocommerce.php:826 -#@ woocommerce -msgid "Product Tag" -msgid_plural "Product Tags" -msgstr[0] "" -msgstr[1] "" - -#: admin/woocommerce-admin-dashboard.php:126 -#@ woocommerce -msgid "Attribute" -msgid_plural "Attributes" -msgstr[0] "" -msgstr[1] "" - -#: admin/woocommerce-admin-dashboard.php:148 -#@ woocommerce -msgid "Pending" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:162 -#@ woocommerce -msgid "On-Hold" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:190 -#@ woocommerce -msgid "Completed" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:207 -#, php-format -#@ woocommerce -msgid "You are using WooCommerce %s." -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:238 -#@ woocommerce -msgid "l jS \\of F Y h:i:s A" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:239 -#@ woocommerce -msgid "item" -msgid_plural "items" -msgstr[0] "" -msgstr[1] "" - -#: admin/woocommerce-admin-dashboard.php:245 -#@ woocommerce -msgid "There are no product orders yet." -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:287 -#@ woocommerce -msgid "There are no product reviews yet." -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:428 -#@ woocommerce -msgid "Sold" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:429 -#@ woocommerce -msgid "Earned" -msgstr "" - -#: admin/woocommerce-admin-functions.php:184 -#: admin/woocommerce-admin-install.php:222 -#@ woocommerce -msgid "Order Received" -msgstr "" - -#: admin/woocommerce-admin-functions.php:186 -#@ woocommerce -msgid "Thank you, we are now processing your order. Your order's details are below." -msgstr "" - -#: admin/woocommerce-admin-functions.php:208 -#@ woocommerce -msgid "Order total:" -msgstr "" - -#: admin/woocommerce-admin-functions.php:459 -#@ woocommerce -msgid "Could not compile woocommerce.less:" -msgstr "" - -#: admin/woocommerce-admin-functions.php:480 -#: admin/woocommerce-admin-functions.php:481 -#@ woocommerce -msgid "Mark processing" -msgstr "" - -#: admin/woocommerce-admin-functions.php:483 -#: admin/woocommerce-admin-functions.php:484 -#@ woocommerce -msgid "Mark completed" -msgstr "" - -#: admin/woocommerce-admin-functions.php:521 -#@ woocommerce -msgid "Order status changed by bulk edit:" -msgstr "" - -#: admin/woocommerce-admin-functions.php:544 -#, php-format -#@ default -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "" -msgstr[1] "" - -#: admin/woocommerce-admin-init.php:86 -#@ woocommerce -msgid "WooCommerce Settings" -msgstr "" - -#: admin/woocommerce-admin-init.php:87 -#@ woocommerce -msgid "WooCommerce Status" -msgstr "" - -#: admin/woocommerce-admin-init.php:446 -#@ woocommerce -msgid "Are you sure you want to remove the selected items? If you have previously reduced this item's stock, or this order was submitted by a customer, you will need to manually restore the item's stock." -msgstr "" - -#: admin/woocommerce-admin-init.php:447 -#@ woocommerce -msgid "Please select some items." -msgstr "" - -#: admin/woocommerce-admin-init.php:448 -#@ woocommerce -msgid "Remove this item meta?" -msgstr "" - -#: admin/woocommerce-admin-init.php:449 -#@ woocommerce -msgid "Remove this attribute?" -msgstr "" - -#: admin/woocommerce-admin-init.php:457 -#@ woocommerce -msgid "Enter a name for the new attribute term:" -msgstr "" - -#: admin/woocommerce-admin-init.php:458 -#@ woocommerce -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "" - -#: admin/woocommerce-admin-init.php:459 -#@ woocommerce -msgid "Calculate line taxes? This will calculate taxes based on the customers country. If no billing/shipping is set it will use the store base country." -msgstr "" - -#: admin/woocommerce-admin-init.php:460 -#@ woocommerce -msgid "Copy billing information to shipping information? This will remove any currently entered shipping information." -msgstr "" - -#: admin/woocommerce-admin-init.php:461 -#@ woocommerce -msgid "Load the customer's billing information? This will remove any currently entered billing information." -msgstr "" - -#: admin/woocommerce-admin-init.php:462 -#@ woocommerce -msgid "Load the customer's shipping information? This will remove any currently entered shipping information." -msgstr "" - -#: admin/woocommerce-admin-init.php:466 -#@ woocommerce -msgid "No customer selected" -msgstr "" - -#: admin/woocommerce-admin-init.php:675 -#, php-format -#@ woocommerce -msgid "Product updated. View Product" -msgstr "" - -#: admin/woocommerce-admin-init.php:676 -#: admin/woocommerce-admin-init.php:691 -#: admin/woocommerce-admin-init.php:706 -#@ woocommerce -msgid "Custom field updated." -msgstr "" - -#: admin/woocommerce-admin-init.php:677 -#: admin/woocommerce-admin-init.php:692 -#: admin/woocommerce-admin-init.php:707 -#@ woocommerce -msgid "Custom field deleted." -msgstr "" - -#: admin/woocommerce-admin-init.php:678 -#@ woocommerce -msgid "Product updated." -msgstr "" - -#: admin/woocommerce-admin-init.php:679 -#, php-format -#@ woocommerce -msgid "Product restored to revision from %s" -msgstr "" - -#: admin/woocommerce-admin-init.php:680 -#, php-format -#@ woocommerce -msgid "Product published. View Product" -msgstr "" - -#: admin/woocommerce-admin-init.php:681 -#@ woocommerce -msgid "Product saved." -msgstr "" - -#: admin/woocommerce-admin-init.php:682 -#, php-format -#@ woocommerce -msgid "Product submitted. Preview Product" -msgstr "" - -#: admin/woocommerce-admin-init.php:683 -#, php-format -#@ woocommerce -msgid "Product scheduled for: %1$s. Preview Product" -msgstr "" - -#: admin/woocommerce-admin-init.php:684 -#: admin/woocommerce-admin-init.php:699 -#: admin/woocommerce-admin-init.php:714 -#@ woocommerce -msgid "M j, Y @ G:i" -msgstr "" - -#: admin/woocommerce-admin-init.php:685 -#, php-format -#@ woocommerce -msgid "Product draft updated. Preview Product" -msgstr "" - -#: admin/woocommerce-admin-init.php:690 -#: admin/woocommerce-admin-init.php:693 -#: admin/woocommerce-admin-init.php:695 -#@ woocommerce -msgid "Order updated." -msgstr "" - -#: admin/woocommerce-admin-init.php:694 -#, php-format -#@ woocommerce -msgid "Order restored to revision from %s" -msgstr "" - -#: admin/woocommerce-admin-init.php:696 -#@ woocommerce -msgid "Order saved." -msgstr "" - -#: admin/woocommerce-admin-init.php:697 -#@ woocommerce -msgid "Order submitted." -msgstr "" - -#: admin/woocommerce-admin-init.php:698 -#, php-format -#@ woocommerce -msgid "Order scheduled for: %1$s." -msgstr "" - -#: admin/woocommerce-admin-init.php:700 -#@ woocommerce -msgid "Order draft updated." -msgstr "" - -#: admin/woocommerce-admin-init.php:705 -#: admin/woocommerce-admin-init.php:708 -#: admin/woocommerce-admin-init.php:710 -#@ woocommerce -msgid "Coupon updated." -msgstr "" - -#: admin/woocommerce-admin-init.php:709 -#, php-format -#@ woocommerce -msgid "Coupon restored to revision from %s" -msgstr "" - -#: admin/woocommerce-admin-init.php:711 -#@ woocommerce -msgid "Coupon saved." -msgstr "" - -#: admin/woocommerce-admin-init.php:712 -#@ woocommerce -msgid "Coupon submitted." -msgstr "" - -#: admin/woocommerce-admin-init.php:713 -#, php-format -#@ woocommerce -msgid "Coupon scheduled for: %1$s." -msgstr "" - -#: admin/woocommerce-admin-init.php:715 -#@ woocommerce -msgid "Coupon draft updated." -msgstr "" - -#: admin/woocommerce-admin-init.php:732 -#@ woocommerce -msgid "Order notes" -msgstr "" - -#: admin/woocommerce-admin-init.php:747 -#@ woocommerce -msgid "These settings control the permalinks used for products. These settings only apply when not using \"default\" permalinks above." -msgstr "" - -#: admin/woocommerce-admin-init.php:754 -#@ woocommerce -msgctxt "default-slug" -msgid "shop" -msgstr "" - -#: admin/woocommerce-admin-init.php:755 -#@ woocommerce -msgctxt "default-slug" -msgid "product" -msgstr "" - -#: admin/woocommerce-admin-init.php:776 -#@ woocommerce -msgid "Shop base" -msgstr "" - -#: admin/woocommerce-admin-init.php:780 -#@ woocommerce -msgid "Shop base with category" -msgstr "" - -#: admin/woocommerce-admin-init.php:786 -#@ woocommerce -msgid "Custom Base" -msgstr "" - -#: admin/woocommerce-admin-init.php:788 -#@ woocommerce -msgid "Enter a custom base to use. A base must be set or WordPress will use default instead." -msgstr "" - -#: admin/woocommerce-admin-init.php:816 -#@ woocommerce -msgid "Product permalink base" -msgstr "" - -#: admin/woocommerce-admin-init.php:821 -#@ woocommerce -msgid "Product category base" -msgstr "" - -#: admin/woocommerce-admin-init.php:828 -#@ woocommerce -msgid "Product tag base" -msgstr "" - -#: admin/woocommerce-admin-init.php:835 -#@ woocommerce -msgid "Product attribute base" -msgstr "" - -#: admin/woocommerce-admin-install.php:192 -#@ woocommerce -msgctxt "page_slug" -msgid "shop" -msgstr "" - -#: admin/woocommerce-admin-install.php:192 -#@ woocommerce -msgid "Shop" -msgstr "" - -#: admin/woocommerce-admin-install.php:195 -#@ woocommerce -msgctxt "page_slug" -msgid "cart" -msgstr "" - -#: admin/woocommerce-admin-install.php:198 -#@ woocommerce -msgctxt "page_slug" -msgid "checkout" -msgstr "" - -#: admin/woocommerce-admin-install.php:201 -#@ woocommerce -msgctxt "page_slug" -msgid "my-account" -msgstr "" - -#: admin/woocommerce-admin-install.php:207 -#@ woocommerce -msgctxt "page_slug" -msgid "edit-address" -msgstr "" - -#: admin/woocommerce-admin-install.php:207 -#@ woocommerce -msgid "Edit My Address" -msgstr "" - -#: admin/woocommerce-admin-install.php:210 -#@ woocommerce -msgctxt "page_slug" -msgid "view-order" -msgstr "" - -#: admin/woocommerce-admin-install.php:213 -#@ woocommerce -msgctxt "page_slug" -msgid "change-password" -msgstr "" - -#: admin/woocommerce-admin-install.php:216 -#@ woocommerce -msgctxt "page_slug" -msgid "logout" -msgstr "" - -#: admin/woocommerce-admin-install.php:219 -#@ woocommerce -msgctxt "page_slug" -msgid "pay" -msgstr "" - -#: admin/woocommerce-admin-install.php:219 -#@ woocommerce -msgid "Checkout → Pay" -msgstr "" - -#: admin/woocommerce-admin-install.php:222 -#@ woocommerce -msgctxt "page_slug" -msgid "order-received" -msgstr "" - -#: admin/woocommerce-admin-reports.php:36 -#@ woocommerce -msgid "Sales by day" -msgstr "" - -#: admin/woocommerce-admin-reports.php:41 -#@ woocommerce -msgid "Sales by month" -msgstr "" - -#: admin/woocommerce-admin-reports.php:46 -#@ woocommerce -msgid "Taxes by month" -msgstr "" - -#: admin/woocommerce-admin-reports.php:51 -#@ woocommerce -msgid "Product Sales" -msgstr "" - -#: admin/woocommerce-admin-reports.php:56 -#@ woocommerce -msgid "Top sellers" -msgstr "" - -#: admin/woocommerce-admin-reports.php:61 -#@ woocommerce -msgid "Top earners" -msgstr "" - -#: admin/woocommerce-admin-reports.php:66 -#@ woocommerce -msgid "Sales by category" -msgstr "" - -#: admin/woocommerce-admin-reports.php:81 -#@ woocommerce -msgid "Discounts by coupon" -msgstr "" - -#: admin/woocommerce-admin-reports.php:232 -#: admin/woocommerce-admin-reports.php:497 -#: admin/woocommerce-admin-reports.php:702 -#: admin/woocommerce-admin-reports.php:883 -#@ woocommerce -msgid "Sales amount" -msgstr "" - -#: admin/woocommerce-admin-reports.php:237 -#: admin/woocommerce-admin-reports.php:497 -#: admin/woocommerce-admin-reports.php:702 -#: admin/woocommerce-admin-reports.php:883 -#@ woocommerce -msgid "Number of sales" -msgstr "" - -#: admin/woocommerce-admin-reports.php:369 -#@ woocommerce -msgid "Total sales" -msgstr "" - -#: admin/woocommerce-admin-reports.php:371 -#: admin/woocommerce-admin-reports.php:377 -#: admin/woocommerce-admin-reports.php:383 -#: admin/woocommerce-admin-reports.php:389 -#: admin/woocommerce-admin-reports.php:395 -#: admin/woocommerce-admin-reports.php:401 -#: admin/woocommerce-admin-reports.php:644 -#: admin/woocommerce-admin-reports.php:650 -#: admin/woocommerce-admin-reports.php:656 -#: admin/woocommerce-admin-reports.php:662 -#: admin/woocommerce-admin-reports.php:828 -#: admin/woocommerce-admin-reports.php:834 -#: admin/woocommerce-admin-reports.php:840 -#: admin/woocommerce-admin-reports.php:846 -#: admin/woocommerce-admin-reports.php:1364 -#: admin/woocommerce-admin-reports.php:1370 -#: admin/woocommerce-admin-reports.php:1376 -#: admin/woocommerce-admin-reports.php:1810 -#: admin/woocommerce-admin-reports.php:1816 -#: admin/woocommerce-admin-reports.php:1822 -#: admin/woocommerce-admin-reports.php:1828 -#: admin/woocommerce-admin-reports.php:1834 -#: admin/woocommerce-admin-reports.php:1840 -#: admin/woocommerce-admin-reports.php:2304 -#: admin/woocommerce-admin-reports.php:2315 -#: admin/woocommerce-admin-reports.php:2326 -#@ woocommerce -msgid "n/a" -msgstr "" - -#: admin/woocommerce-admin-reports.php:375 -#@ woocommerce -msgid "Total orders" -msgstr "" - -#: admin/woocommerce-admin-reports.php:377 -#: admin/woocommerce-admin-reports.php:650 -#: admin/woocommerce-admin-reports.php:834 -#@ woocommerce -msgid "items" -msgstr "" - -#: admin/woocommerce-admin-reports.php:381 -#@ woocommerce -msgid "Average order total" -msgstr "" - -#: admin/woocommerce-admin-reports.php:387 -#@ woocommerce -msgid "Average order items" -msgstr "" - -#: admin/woocommerce-admin-reports.php:393 -#@ woocommerce -msgid "Discounts used" -msgstr "" - -#: admin/woocommerce-admin-reports.php:399 -#@ woocommerce -msgid "Total shipping costs" -msgstr "" - -#: admin/woocommerce-admin-reports.php:407 -#@ woocommerce -msgid "This month's sales" -msgstr "" - -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1356 -#@ woocommerce -msgid "From:" -msgstr "" - -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1356 -#@ woocommerce -msgid "To:" -msgstr "" - -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:821 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1229 -#: admin/woocommerce-admin-reports.php:1356 -#: admin/woocommerce-admin-reports.php:1489 -#: admin/woocommerce-admin-reports.php:2293 -#: admin/woocommerce-admin-reports.php:2476 -#@ woocommerce -msgid "Show" -msgstr "" - -#: admin/woocommerce-admin-reports.php:642 -#@ woocommerce -msgid "Total sales in range" -msgstr "" - -#: admin/woocommerce-admin-reports.php:648 -#@ woocommerce -msgid "Total orders in range" -msgstr "" - -#: admin/woocommerce-admin-reports.php:654 -#@ woocommerce -msgid "Average order total in range" -msgstr "" - -#: admin/woocommerce-admin-reports.php:660 -#@ woocommerce -msgid "Average order items in range" -msgstr "" - -#: admin/woocommerce-admin-reports.php:668 -#@ woocommerce -msgid "Sales in range" -msgstr "" - -#: admin/woocommerce-admin-reports.php:815 -#: admin/woocommerce-admin-reports.php:2287 -#@ woocommerce -msgid "Year:" -msgstr "" - -#: admin/woocommerce-admin-reports.php:826 -#@ woocommerce -msgid "Total sales for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:832 -#@ woocommerce -msgid "Total orders for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:838 -#@ woocommerce -msgid "Average order total for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:844 -#@ woocommerce -msgid "Average order items for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:852 -#@ woocommerce -msgid "Monthly sales for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1000 -#@ woocommerce -msgid "Product does not exist" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1097 -#@ woocommerce -msgid "Product no longer exists" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1194 -#, php-format -#@ woocommerce -msgid "Sales for %s:" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1198 -#: admin/woocommerce-admin-reports.php:2335 -#@ woocommerce -msgid "Month" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1219 -#@ woocommerce -msgid "No sales :(" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1362 -#@ woocommerce -msgid "Total orders containing coupons" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1368 -#@ woocommerce -msgid "Percent of orders containing coupons" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1374 -#@ woocommerce -msgid "Total coupon discount" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1383 -#@ woocommerce -msgid "Most popular coupons" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1393 -#, php-format -#@ woocommerce -msgid "Used 1 time" -msgid_plural "Used %d times" -msgstr[0] "" -msgstr[1] "" - -#: admin/woocommerce-admin-reports.php:1396 -#: admin/woocommerce-admin-reports.php:1418 -#@ woocommerce -msgid "No coupons found" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1405 -#@ woocommerce -msgid "Greatest discount amount" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1415 -#, php-format -#@ woocommerce -msgid "Discounted %s" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1474 -#: admin/woocommerce-admin-reports.php:2453 -#@ woocommerce -msgid "Show:" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1614 -#@ woocommerce -msgid "Top coupon" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1622 -#@ woocommerce -msgid "Worst coupon" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1630 -#@ woocommerce -msgid "Discount average" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1638 -#@ woocommerce -msgid "Discount median" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1658 -#@ woocommerce -msgid "Monthly discounts by coupon" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1808 -#@ woocommerce -msgid "Total customers" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1814 -#@ woocommerce -msgid "Total customer sales" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1820 -#@ woocommerce -msgid "Total guest sales" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1826 -#@ woocommerce -msgid "Total customer orders" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1832 -#@ woocommerce -msgid "Total guest orders" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1838 -#@ woocommerce -msgid "Average orders per customer" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1846 -#@ woocommerce -msgid "Signups per day" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2067 -#@ woocommerce -msgid "Low stock" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2090 -#: admin/woocommerce-admin-reports.php:2129 -#, php-format -#@ woocommerce -msgid "%d in stock" -msgid_plural "%d in stock" -msgstr[0] "" -msgstr[1] "" - -#: admin/woocommerce-admin-reports.php:2095 -#@ woocommerce -msgid "No products are low in stock." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2127 -#@ woocommerce -msgid "Marked out of stock" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2134 -#@ woocommerce -msgid "No products are out in stock." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2298 -#@ woocommerce -msgid "Total taxes for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2309 -#@ woocommerce -msgid "Total product taxes for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2320 -#@ woocommerce -msgid "Total shipping tax for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2336 -#@ woocommerce -msgid "Total Sales" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2336 -#@ woocommerce -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2337 -#@ woocommerce -msgid "Total Shipping" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2337 -#@ woocommerce -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2338 -#@ woocommerce -msgid "Total Product Taxes" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2338 -#@ woocommerce -msgid "This is the sum of the 'Cart Tax' field within your orders." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2339 -#@ woocommerce -msgid "Total Shipping Taxes" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2339 -#@ woocommerce -msgid "This is the sum of the 'Shipping Tax' field within your orders." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2340 -#@ woocommerce -msgid "Total Taxes" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2340 -#@ woocommerce -msgid "This is the sum of the 'Cart Tax' and 'Shipping Tax' fields within your orders." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2341 -#@ woocommerce -msgid "Net profit" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2341 -#@ woocommerce -msgid "Total sales minus shipping and tax." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2386 -#@ woocommerce -msgid "Toggle tax rows" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2529 -#@ woocommerce -msgid "Category" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2632 -#@ woocommerce -msgid "Top category" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2641 -#@ woocommerce -msgid "Worst category" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2649 -#@ woocommerce -msgid "Category sales average" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2660 -#@ woocommerce -msgid "Category sales median" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2680 -#@ woocommerce -msgid "Monthly sales by category" -msgstr "" - -#: admin/woocommerce-admin-settings.php:162 -#@ woocommerce -msgid "Your settings have been saved." -msgstr "" - -#: admin/woocommerce-admin-settings.php:208 -#, php-format -#@ woocommerce -msgid "More functionality and gateway options available via WC official extensions." -msgstr "" - -#: admin/woocommerce-admin-settings.php:226 -#@ woocommerce -msgid "Tax Rates" -msgstr "" - -#: admin/woocommerce-admin-settings.php:253 -#@ woocommerce -msgid "Email Options" -msgstr "" - -#: admin/woocommerce-admin-settings.php:427 -#@ woocommerce -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "" - -#: admin/woocommerce-admin-settings.php:799 -#@ woocommerce -msgid "Hard Crop" -msgstr "" - -#: admin/woocommerce-admin-settings.php:824 -#@ woocommerce -msgid "Select a page…" -msgstr "" - -#: admin/woocommerce-admin-settings.php:847 -#@ woocommerce -msgid "Choose a country…" -msgstr "" - -#: admin/woocommerce-admin-settings.php:867 -#@ woocommerce -msgid "Choose countries…" -msgstr "" - -#: admin/woocommerce-admin-status.php:27 -#: admin/woocommerce-admin-status.php:622 -#@ woocommerce -msgid "Tools" -msgstr "" - -#: admin/woocommerce-admin-status.php:62 -#@ woocommerce -msgid "Please include this information when requesting support:" -msgstr "" - -#: admin/woocommerce-admin-status.php:63 -#@ woocommerce -msgid "Download System Report File" -msgstr "" - -#: admin/woocommerce-admin-status.php:71 -#@ woocommerce -msgid "Environment" -msgstr "" - -#: admin/woocommerce-admin-status.php:77 -#@ woocommerce -msgid "Home URL" -msgstr "" - -#: admin/woocommerce-admin-status.php:81 -#@ woocommerce -msgid "Site URL" -msgstr "" - -#: admin/woocommerce-admin-status.php:85 -#@ woocommerce -msgid "WC Version" -msgstr "" - -#: admin/woocommerce-admin-status.php:89 -#@ woocommerce -msgid "WC Database Version" -msgstr "" - -#: admin/woocommerce-admin-status.php:93 -#@ woocommerce -msgid "WP Version" -msgstr "" - -#: admin/woocommerce-admin-status.php:97 -#@ woocommerce -msgid "Web Server Info" -msgstr "" - -#: admin/woocommerce-admin-status.php:101 -#@ woocommerce -msgid "PHP Version" -msgstr "" - -#: admin/woocommerce-admin-status.php:105 -#@ woocommerce -msgid "MySQL Version" -msgstr "" - -#: admin/woocommerce-admin-status.php:109 -#@ woocommerce -msgid "WP Memory Limit" -msgstr "" - -#: admin/woocommerce-admin-status.php:114 -#, php-format -#@ woocommerce -msgid "%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "" - -#: admin/woocommerce-admin-status.php:121 -#@ woocommerce -msgid "WP Debug Mode" -msgstr "" - -#: admin/woocommerce-admin-status.php:125 -#@ woocommerce -msgid "WP Max Upload Size" -msgstr "" - -#: admin/woocommerce-admin-status.php:129 -#@ woocommerce -msgid "PHP Post Max Size" -msgstr "" - -#: admin/woocommerce-admin-status.php:133 -#@ woocommerce -msgid "PHP Time Limit" -msgstr "" - -#: admin/woocommerce-admin-status.php:137 -#@ woocommerce -msgid "WC Logging" -msgstr "" - -#: admin/woocommerce-admin-status.php:140 -#@ woocommerce -msgid "Log directory is writable." -msgstr "" - -#: admin/woocommerce-admin-status.php:142 -#@ woocommerce -msgid "Log directory (woocommerce/logs/) is not writable. Logging will not be possible." -msgstr "" - -#: admin/woocommerce-admin-status.php:149 -#@ woocommerce -msgid "fsockopen/cURL" -msgstr "" - -#: admin/woocommerce-admin-status.php:152 -#@ woocommerce -msgid "Your server has fsockopen and cURL enabled." -msgstr "" - -#: admin/woocommerce-admin-status.php:154 -#@ woocommerce -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "" - -#: admin/woocommerce-admin-status.php:156 -#@ woocommerce -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "" - -#: admin/woocommerce-admin-status.php:160 -#@ woocommerce -msgid "Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider." -msgstr "" - -#: admin/woocommerce-admin-status.php:165 -#@ woocommerce -msgid "SOAP Client" -msgstr "" - -#: admin/woocommerce-admin-status.php:167 -#@ woocommerce -msgid "Your server has the SOAP Client class enabled." -msgstr "" - -#: admin/woocommerce-admin-status.php:170 -#, php-format -#@ woocommerce -msgid "Your server does not have the SOAP Client class enabled - some gateway plugins which use SOAP may not work as expected." -msgstr "" - -#: admin/woocommerce-admin-status.php:175 -#@ woocommerce -msgid "WP Remote Post" -msgstr "" - -#: admin/woocommerce-admin-status.php:186 -#@ woocommerce -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "" - -#: admin/woocommerce-admin-status.php:189 -#@ woocommerce -msgid "wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:" -msgstr "" - -#: admin/woocommerce-admin-status.php:192 -#@ woocommerce -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "" - -#: admin/woocommerce-admin-status.php:215 -#@ woocommerce -msgid "Plugins" -msgstr "" - -#: admin/woocommerce-admin-status.php:221 -#@ woocommerce -msgid "Installed Plugins" -msgstr "" - -#: admin/woocommerce-admin-status.php:236 -#@ woocommerce -msgid "by" -msgstr "" - -#: admin/woocommerce-admin-status.php:236 -#@ woocommerce -msgid "version" -msgstr "" - -#: admin/woocommerce-admin-status.php:259 -#@ woocommerce -msgid "Force SSL" -msgstr "" - -#: admin/woocommerce-admin-status.php:266 -#@ woocommerce -msgid "WC Pages" -msgstr "" - -#: admin/woocommerce-admin-status.php:273 -#@ woocommerce -msgid "Shop Base" -msgstr "" - -#: admin/woocommerce-admin-status.php:289 -#@ woocommerce -msgid "Thanks" -msgstr "" - -#: admin/woocommerce-admin-status.php:329 -#@ woocommerce -msgid "Page not set" -msgstr "" - -#: admin/woocommerce-admin-status.php:339 -#@ woocommerce -msgid "Page does not exist" -msgstr "" - -#: admin/woocommerce-admin-status.php:344 -#, php-format -#@ woocommerce -msgid "Page does not contain the shortcode: %s" -msgstr "" - -#: admin/woocommerce-admin-status.php:363 -#@ woocommerce -msgid "WC Taxonomies" -msgstr "" - -#: admin/woocommerce-admin-status.php:369 -#@ woocommerce -msgid "Order Statuses" -msgstr "" - -#: admin/woocommerce-admin-status.php:379 -#@ woocommerce -msgid "Product Types" -msgstr "" - -#: admin/woocommerce-admin-status.php:392 -#@ woocommerce -msgid "Templates" -msgstr "" - -#: admin/woocommerce-admin-status.php:398 -#@ woocommerce -msgid "Template Overrides" -msgstr "" - -#: admin/woocommerce-admin-status.php:416 -#@ woocommerce -msgid "No core overrides present in theme." -msgstr "" - -#: admin/woocommerce-admin-status.php:510 -#@ woocommerce -msgid "WC Transients" -msgstr "" - -#: admin/woocommerce-admin-status.php:511 -#@ woocommerce -msgid "Clear transients" -msgstr "" - -#: admin/woocommerce-admin-status.php:512 -#@ woocommerce -msgid "This tool will clear the product/shop transients cache." -msgstr "" - -#: admin/woocommerce-admin-status.php:515 -#@ woocommerce -msgid "Expired Transients" -msgstr "" - -#: admin/woocommerce-admin-status.php:516 -#@ woocommerce -msgid "Clear expired transients" -msgstr "" - -#: admin/woocommerce-admin-status.php:517 -#@ woocommerce -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "" - -#: admin/woocommerce-admin-status.php:520 -#@ woocommerce -msgid "Term counts" -msgstr "" - -#: admin/woocommerce-admin-status.php:521 -#@ woocommerce -msgid "Recount terms" -msgstr "" - -#: admin/woocommerce-admin-status.php:522 -#@ woocommerce -msgid "This tool will recount product terms - useful when changing your settings in a way which hides products from the catalog." -msgstr "" - -#: admin/woocommerce-admin-status.php:525 -#@ woocommerce -msgid "Capabilities" -msgstr "" - -#: admin/woocommerce-admin-status.php:526 -#@ woocommerce -msgid "Reset capabilities" -msgstr "" - -#: admin/woocommerce-admin-status.php:527 -#@ woocommerce -msgid "This tool will reset the admin, customer and shop_manager roles to default. Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "" - -#: admin/woocommerce-admin-status.php:537 -#@ woocommerce -msgid "Product Transients Cleared" -msgstr "" - -#: admin/woocommerce-admin-status.php:578 -#, php-format -#@ woocommerce -msgid "%d Transients Rows Cleared" -msgstr "" - -#: admin/woocommerce-admin-status.php:586 -#@ woocommerce -msgid "Roles successfully reset" -msgstr "" - -#: admin/woocommerce-admin-status.php:598 -#@ woocommerce -msgid "Terms successfully recounted" -msgstr "" - -#: admin/woocommerce-admin-status.php:607 -#, php-format -#@ woocommerce -msgid "There was an error calling %s::%s" -msgstr "" - -#: admin/woocommerce-admin-status.php:610 -#, php-format -#@ woocommerce -msgid "There was an error calling %s" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:25 -#: admin/woocommerce-admin-taxonomies.php:118 -#@ woocommerce -msgid "Display type" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:29 -#: admin/woocommerce-admin-taxonomies.php:123 -#@ woocommerce -msgid "Subcategories" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:30 -#: admin/woocommerce-admin-taxonomies.php:124 -#@ woocommerce -msgid "Both" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:34 -#: admin/woocommerce-admin-taxonomies.php:129 -#@ woocommerce -msgid "Thumbnail" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:38 -#: admin/woocommerce-admin-taxonomies.php:134 -#@ woocommerce -msgid "Upload/Add image" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:39 -#: admin/woocommerce-admin-taxonomies.php:135 -#@ woocommerce -msgid "Remove image" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:64 -#: admin/woocommerce-admin-taxonomies.php:156 -#@ woocommerce -msgid "Use image" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:222 -#@ woocommerce -msgid "Product categories for your store can be managed here. To change the order of categories on the front-end you can drag and drop to sort them. To see more categories listed click the \"screen options\" link at the top of the page." -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:237 -#@ woocommerce -msgid "Shipping classes can be used to group products of similar type. These groups can then be used by certain shipping methods to provide different rates to different products." -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:365 -#@ woocommerce -msgid "Configure shipping class" -msgstr "" - -#: admin/woocommerce-admin-users.php:28 -#@ woocommerce -msgid "Paying Customer?" -msgstr "" - -#: admin/woocommerce-admin-users.php:29 -#@ woocommerce -msgid "Completed Orders" -msgstr "" - -#: admin/woocommerce-admin-users.php:144 -#@ woocommerce -msgid "Customer Billing Address" -msgstr "" - -#: admin/woocommerce-admin-users.php:147 -#: admin/woocommerce-admin-users.php:196 -#@ woocommerce -msgid "First name" -msgstr "" - -#: admin/woocommerce-admin-users.php:151 -#: admin/woocommerce-admin-users.php:200 -#@ woocommerce -msgid "Last name" -msgstr "" - -#: admin/woocommerce-admin-users.php:176 -#@ woocommerce -msgid "Country or state code" -msgstr "" - -#: admin/woocommerce-admin-users.php:180 -#: admin/woocommerce-admin-users.php:229 -#@ woocommerce -msgid "2 letter Country code" -msgstr "" - -#: admin/woocommerce-admin-users.php:183 -#@ woocommerce -msgid "Telephone" -msgstr "" - -#: admin/woocommerce-admin-users.php:193 -#@ woocommerce -msgid "Customer Shipping Address" -msgstr "" - -#: admin/woocommerce-admin-users.php:225 -#@ woocommerce -msgid "State/County or state code" -msgstr "" - -#: classes/abstracts/abstract-wc-product.php:33 -#@ woocommerce -msgid "The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class directly." -msgstr "" - -#: classes/class-wc-countries.php:58 -#@ woocommerce -msgid "Belau" -msgstr "" - -#: classes/class-wc-coupon.php:420 -#@ woocommerce -msgid "Coupon code applied successfully." -msgstr "" - -#: classes/class-wc-coupon.php:441 -#@ woocommerce -msgid "Coupon is not valid." -msgstr "" - -#: classes/class-wc-coupon.php:453 -#@ woocommerce -msgid "Coupon code already applied!" -msgstr "" - -#: classes/class-wc-coupon.php:456 -#, php-format -#@ woocommerce -msgid "Sorry, coupon \"%s\" has already been applied and cannot be used in conjunction with other coupons." -msgstr "" - -#: classes/class-wc-coupon.php:471 -#@ woocommerce -msgid "Sorry, this coupon is not valid for sale items." -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:97 -#: classes/gateways/cod/class-wc-gateway-cod.php:103 -#@ woocommerce -msgid "Pay with cash upon delivery." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:148 -#@ woocommerce -msgid "Please enter a prefix for your invoice numbers. If you use your PayPal account for multiple stores ensure this prefix is unique as PayPal will not allow orders with the same invoice number." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:165 -#@ woocommerce -msgid "Optional" -msgstr "" - -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:23 -#@ woocommerce -msgid "Increase your social media exposure by 10 percent! ShareYourCart helps you get more customers by motivating satisfied customers to talk with their friends about your products. For help with ShareYourCart view the documentation." -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:176 -#@ woocommerce -msgid "Option Name|Cost|Per-order (yes or no)" -msgstr "" - -#: i18n/states/HU.php:13 -#@ woocommerce -msgid "Bács-Kiskun" -msgstr "" - -#: i18n/states/HU.php:14 -#@ woocommerce -msgid "Békés" -msgstr "" - -#: i18n/states/HU.php:15 -#@ woocommerce -msgid "Baranya" -msgstr "" - -#: i18n/states/HU.php:16 -#@ woocommerce -msgid "Borsod-Abaúj-Zemplén" -msgstr "" - -#: i18n/states/HU.php:17 -#@ woocommerce -msgid "Budapest" -msgstr "" - -#: i18n/states/HU.php:18 -#@ woocommerce -msgid "Csongrád" -msgstr "" - -#: i18n/states/HU.php:19 -#@ woocommerce -msgid "Fejér" -msgstr "" - -#: i18n/states/HU.php:20 -#@ woocommerce -msgid "Győr-Moson-Sopron" -msgstr "" - -#: i18n/states/HU.php:21 -#@ woocommerce -msgid "Hajdú-Bihar" -msgstr "" - -#: i18n/states/HU.php:22 -#@ woocommerce -msgid "Heves" -msgstr "" - -#: i18n/states/HU.php:23 -#@ woocommerce -msgid "Jász-Nagykun-Szolnok" -msgstr "" - -#: i18n/states/HU.php:24 -#@ woocommerce -msgid "Komárom-Esztergom" -msgstr "" - -#: i18n/states/HU.php:25 -#@ woocommerce -msgid "Nógrád" -msgstr "" - -#: i18n/states/HU.php:26 -#@ woocommerce -msgid "Pest" -msgstr "" - -#: i18n/states/HU.php:27 -#@ woocommerce -msgid "Somogy" -msgstr "" - -#: i18n/states/HU.php:28 -#@ woocommerce -msgid "Szabolcs-Szatmár-Bereg" -msgstr "" - -#: i18n/states/HU.php:29 -#@ woocommerce -msgid "Tolna" -msgstr "" - -#: i18n/states/HU.php:30 -#@ woocommerce -msgid "Vas" -msgstr "" - -#: i18n/states/HU.php:31 -#@ woocommerce -msgid "Veszprém" -msgstr "" - -#: i18n/states/HU.php:32 -#@ woocommerce -msgid "Zala" -msgstr "" - -#: i18n/states/ID.php:13 -#@ woocommerce -msgid "Daerah Istimewa Aceh" -msgstr "" - -#: i18n/states/ID.php:14 -#@ woocommerce -msgid "Sumatera Utara" -msgstr "" - -#: i18n/states/ID.php:15 -#@ woocommerce -msgid "Sumatera Barat" -msgstr "" - -#: i18n/states/ID.php:16 -#@ woocommerce -msgid "Riau" -msgstr "" - -#: i18n/states/ID.php:17 -#@ woocommerce -msgid "Kepulauan Riau" -msgstr "" - -#: i18n/states/ID.php:18 -#@ woocommerce -msgid "Jambi" -msgstr "" - -#: i18n/states/ID.php:19 -#@ woocommerce -msgid "Sumatera Selatan" -msgstr "" - -#: i18n/states/ID.php:20 -#@ woocommerce -msgid "Bangka Belitung" -msgstr "" - -#: i18n/states/ID.php:21 -#@ woocommerce -msgid "Bengkulu" -msgstr "" - -#: i18n/states/ID.php:22 -#@ woocommerce -msgid "Lampung" -msgstr "" - -#: i18n/states/ID.php:23 -#@ woocommerce -msgid "DKI Jakarta" -msgstr "" - -#: i18n/states/ID.php:24 -#@ woocommerce -msgid "Jawa Barat" -msgstr "" - -#: i18n/states/ID.php:25 -#@ woocommerce -msgid "Banten" -msgstr "" - -#: i18n/states/ID.php:26 -#@ woocommerce -msgid "Jawa Tengah" -msgstr "" - -#: i18n/states/ID.php:27 -#@ woocommerce -msgid "Jawa Timur" -msgstr "" - -#: i18n/states/ID.php:28 -#@ woocommerce -msgid "Daerah Istimewa Yogyakarta" -msgstr "" - -#: i18n/states/ID.php:29 -#@ woocommerce -msgid "Bali" -msgstr "" - -#: i18n/states/ID.php:30 -#@ woocommerce -msgid "Nusa Tenggara Barat" -msgstr "" - -#: i18n/states/ID.php:31 -#@ woocommerce -msgid "Nusa Tenggara Timur" -msgstr "" - -#: i18n/states/ID.php:32 -#@ woocommerce -msgid "Kalimantan Barat" -msgstr "" - -#: i18n/states/ID.php:33 -#@ woocommerce -msgid "Kalimantan Tengah" -msgstr "" - -#: i18n/states/ID.php:34 -#@ woocommerce -msgid "Kalimantan Timur" -msgstr "" - -#: i18n/states/ID.php:35 -#@ woocommerce -msgid "Kalimantan Selatan" -msgstr "" - -#: i18n/states/ID.php:36 -#@ woocommerce -msgid "Kalimantan Utara" -msgstr "" - -#: i18n/states/ID.php:37 -#@ woocommerce -msgid "Sulawesi Utara" -msgstr "" - -#: i18n/states/ID.php:38 -#@ woocommerce -msgid "Sulawesi Tengah" -msgstr "" - -#: i18n/states/ID.php:39 -#@ woocommerce -msgid "Sulawesi Tenggara" -msgstr "" - -#: i18n/states/ID.php:40 -#@ woocommerce -msgid "Sulawesi Barat" -msgstr "" - -#: i18n/states/ID.php:41 -#@ woocommerce -msgid "Sulawesi Selatan" -msgstr "" - -#: i18n/states/ID.php:42 -#@ woocommerce -msgid "Gorontalo" -msgstr "" - -#: i18n/states/ID.php:43 -#@ woocommerce -msgid "Maluku" -msgstr "" - -#: i18n/states/ID.php:44 -#@ woocommerce -msgid "Maluku Utara" -msgstr "" - -#: i18n/states/ID.php:45 -#@ woocommerce -msgid "Papua" -msgstr "" - -#: i18n/states/ID.php:46 -#@ woocommerce -msgid "Papua Barat" -msgstr "" - -#: i18n/states/US.php:72 -#@ woocommerce -msgid "US Virgin Islands" -msgstr "" - -#: templates/checkout/form-login.php:14 -#@ woocommerce -msgid "Returning customer?" -msgstr "" - -#: templates/loop/orderby.php:22 -#@ woocommerce -msgid "Sort by popularity" -msgstr "" - -#: templates/loop/orderby.php:23 -#@ woocommerce -msgid "Sort by average rating" -msgstr "" - -#: templates/loop/orderby.php:24 -#@ woocommerce -msgid "Sort by newness" -msgstr "" - -#: templates/loop/orderby.php:25 -#@ woocommerce -msgid "Sort by price: low to high" -msgstr "" - -#: templates/loop/orderby.php:26 -#@ woocommerce -msgid "Sort by price: high to low" -msgstr "" - -#: templates/myaccount/my-orders.php:62 -#, php-format -#@ woocommerce -msgid "%s for %s item" -msgid_plural "%s for %s items" -msgstr[0] "" -msgstr[1] "" - -#: templates/single-product-reviews.php:78 -#@ woocommerce -msgid "Add Your Review" -msgstr "" - -#: woocommerce-ajax.php:1172 -#@ woocommerce -msgid "No products had their stock reduced - they may not have stock management enabled." -msgstr "" - -#: woocommerce-ajax.php:1223 -#@ woocommerce -msgid "No products had their stock increased - they may not have stock management enabled." -msgstr "" - -#: woocommerce-core-functions.php:268 -#, php-format -#@ woocommerce -msgid "%s – %s%s" -msgstr "" - -#: woocommerce-core-functions.php:675 -#@ woocommerce -msgid "Australian Dollars" -msgstr "" - -#: woocommerce-core-functions.php:676 -#@ woocommerce -msgid "Brazilian Real" -msgstr "" - -#: woocommerce-core-functions.php:677 -#@ woocommerce -msgid "Canadian Dollars" -msgstr "" - -#: woocommerce-core-functions.php:678 -#@ woocommerce -msgid "Chinese Yuan" -msgstr "" - -#: woocommerce-core-functions.php:679 -#@ woocommerce -msgid "Czech Koruna" -msgstr "" - -#: woocommerce-core-functions.php:680 -#@ woocommerce -msgid "Danish Krone" -msgstr "" - -#: woocommerce-core-functions.php:681 -#@ woocommerce -msgid "Euros" -msgstr "" - -#: woocommerce-core-functions.php:682 -#@ woocommerce -msgid "Hong Kong Dollar" -msgstr "" - -#: woocommerce-core-functions.php:683 -#@ woocommerce -msgid "Hungarian Forint" -msgstr "" - -#: woocommerce-core-functions.php:684 -#@ woocommerce -msgid "Indonesia Rupiah" -msgstr "" - -#: woocommerce-core-functions.php:685 -#@ woocommerce -msgid "Israeli Shekel" -msgstr "" - -#: woocommerce-core-functions.php:686 -#@ woocommerce -msgid "Japanese Yen" -msgstr "" - -#: woocommerce-core-functions.php:687 -#@ woocommerce -msgid "Malaysian Ringgits" -msgstr "" - -#: woocommerce-core-functions.php:688 -#@ woocommerce -msgid "Mexican Peso" -msgstr "" - -#: woocommerce-core-functions.php:689 -#@ woocommerce -msgid "Norwegian Krone" -msgstr "" - -#: woocommerce-core-functions.php:690 -#@ woocommerce -msgid "New Zealand Dollar" -msgstr "" - -#: woocommerce-core-functions.php:691 -#@ woocommerce -msgid "Philippine Pesos" -msgstr "" - -#: woocommerce-core-functions.php:692 -#@ woocommerce -msgid "Polish Zloty" -msgstr "" - -#: woocommerce-core-functions.php:693 -#@ woocommerce -msgid "Pounds Sterling" -msgstr "" - -#: woocommerce-core-functions.php:694 -#@ woocommerce -msgid "Romanian Leu" -msgstr "" - -#: woocommerce-core-functions.php:695 -#@ woocommerce -msgid "Singapore Dollar" -msgstr "" - -#: woocommerce-core-functions.php:696 -#@ woocommerce -msgid "South African rand" -msgstr "" - -#: woocommerce-core-functions.php:697 -#@ woocommerce -msgid "Swedish Krona" -msgstr "" - -#: woocommerce-core-functions.php:698 -#@ woocommerce -msgid "Swiss Franc" -msgstr "" - -#: woocommerce-core-functions.php:699 -#@ woocommerce -msgid "Taiwan New Dollars" -msgstr "" - -#: woocommerce-core-functions.php:700 -#@ woocommerce -msgid "Thai Baht" -msgstr "" - -#: woocommerce-core-functions.php:701 -#@ woocommerce -msgid "Turkish Lira" -msgstr "" - -#: woocommerce-core-functions.php:702 -#@ woocommerce -msgid "US Dollars" -msgstr "" - -#: woocommerce-functions.php:996 -#@ woocommerce -msgid "No file defined" -msgstr "" - -#: woocommerce-functions.php:1575 -#@ woocommerce -msgid "Password changed successfully." -msgstr "" - -#: woocommerce-functions.php:1651 -#@ woocommerce -msgid "Address changed successfully." -msgstr "" - -#: woocommerce-template.php:764 -#, php-format -#@ woocommerce -msgid "Reviews (%d)" -msgstr "" - -#. translators: plugin header field 'PluginURI' -#: woocommerce.php:0 -#@ woocommerce -msgid "http://www.woothemes.com/woocommerce/" -msgstr "" - -#. translators: plugin header field 'Description' -#: woocommerce.php:0 -#@ woocommerce -msgid "An e-commerce toolkit that helps you sell anything. Beautifully." -msgstr "" - -#. translators: plugin header field 'Author' -#: woocommerce.php:0 -#@ woocommerce -msgid "WooThemes" -msgstr "" - -#. translators: plugin header field 'AuthorURI' -#: woocommerce.php:0 -#@ woocommerce -msgid "http://woothemes.com" -msgstr "" - -#. translators: plugin header field 'Version' -#: woocommerce.php:0 -#@ woocommerce -msgid "2.0.0" -msgstr "" - diff --git a/i18n/languages/woocommerce-es_ES.mo b/i18n/languages/woocommerce-es_ES.mo deleted file mode 100644 index 6c4e2d4773a..00000000000 Binary files a/i18n/languages/woocommerce-es_ES.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-es_ES.po b/i18n/languages/woocommerce-es_ES.po deleted file mode 100644 index ffd0a26e532..00000000000 --- a/i18n/languages/woocommerce-es_ES.po +++ /dev/null @@ -1,8984 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce v2.0.8\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-10-03 01:54:35+00:00\n" -"PO-Revision-Date: 2013-10-02 23:09-0300\n" -"Last-Translator: Renato Covarrubias \n" -"Language-Team: \n" -"Language: Spanish\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Poedit 1.5.4\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" -"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" -"X-Poedit-Basepath: ../../\n" -"X-Textdomain-Support: yes\n" -"X-Poedit-SearchPath-0: .\n" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:5 -msgid "Insert Shortcode" -msgstr "Insertar shortcode" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:6 -msgid "Product price/cart button" -msgstr "Botón de Precio de Producto / Carrito" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:7 -msgid "Product by SKU/ID" -msgstr "Producto por código/ID" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:8 -msgid "Products by SKU/ID" -msgstr "Productos por código/ID" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:9 -msgid "Product categories" -msgstr "Categorias de los Productos" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:10 -msgid "Products by category slug" -msgstr "Productos por Categoría" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:11 -msgid "Recent products" -msgstr "Productos recientes" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:12 -msgid "Featured products" -msgstr "Productos destacados " - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:13 -msgid "Shop Messages" -msgstr "Mensajes de Tienda" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:14 -msgid "Pages" -msgstr "Páginas" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:15 includes/class-wc-install.php:214 -#: includes/widgets/class-wc-widget-cart.php:29 -#: includes/widgets/class-wc-widget-cart.php:57 -msgid "Cart" -msgstr "Carrito" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:16 includes/class-wc-install.php:219 -msgid "Checkout" -msgstr "Finalizar compra" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:17 -msgid "Order tracking" -msgstr "Seguimiento de Pedido" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:18 includes/class-wc-install.php:224 -#: templates/checkout/thankyou.php:30 -msgid "My Account" -msgstr "Mi cuenta" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:19 -msgid "Edit Address" -msgstr "Editar Dirección " - -# @ woocommerce -#: i18n/states/AU.php:13 -msgid "Australian Capital Territory" -msgstr "Australian Capital Territory" - -# @ woocommerce -#: i18n/states/AU.php:14 -msgid "New South Wales" -msgstr "New South Wales" - -# @ woocommerce -#: i18n/states/AU.php:15 -msgid "Northern Territory" -msgstr "Northern Territory" - -# @ woocommerce -#: i18n/states/AU.php:16 -msgid "Queensland" -msgstr "Queensland" - -# @ woocommerce -#: i18n/states/AU.php:17 -msgid "South Australia" -msgstr "South Australia" - -# @ woocommerce -#: i18n/states/AU.php:18 -msgid "Tasmania" -msgstr "Tasmania" - -# @ woocommerce -#: i18n/states/AU.php:19 -msgid "Victoria" -msgstr "Victoria" - -# @ woocommerce -#: i18n/states/AU.php:20 -msgid "Western Australia" -msgstr "Western Australia" - -#: i18n/states/BG.php:13 -msgid "Благоевград" -msgstr "Blagoevgrad" - -#: i18n/states/BG.php:14 -msgid "Бургас" -msgstr "Burgas" - -#: i18n/states/BG.php:15 -msgid "Варна" -msgstr "Varna" - -#: i18n/states/BG.php:16 -msgid "Велико Търново" -msgstr "Veliko Tarnovo" - -#: i18n/states/BG.php:17 -msgid "Видин" -msgstr "Vidin" - -#: i18n/states/BG.php:18 -msgid "Враца" -msgstr "Vratsa" - -#: i18n/states/BG.php:19 -msgid "Габрово" -msgstr "Gabrovo" - -#: i18n/states/BG.php:20 -msgid "Добрич" -msgstr "Dobrich" - -#: i18n/states/BG.php:21 -msgid "Кърджали" -msgstr "Kardzali" - -#: i18n/states/BG.php:22 -msgid "Кюстендил" -msgstr "Kyustendil" - -#: i18n/states/BG.php:23 -msgid "Ловеч" -msgstr "Lòvech" - -#: i18n/states/BG.php:24 -msgid "Монтана" -msgstr "Montana" - -#: i18n/states/BG.php:25 -msgid "Пазарджик" -msgstr "Pazardzhik" - -#: i18n/states/BG.php:26 -msgid "Перник" -msgstr "Pernik" - -#: i18n/states/BG.php:27 -msgid "Плевен" -msgstr "Pleven" - -#: i18n/states/BG.php:28 -msgid "Пловдив" -msgstr "Plovdiv" - -#: i18n/states/BG.php:29 -msgid "Разград" -msgstr "Razgrad" - -#: i18n/states/BG.php:30 -msgid "Русе" -msgstr "Ruse" - -#: i18n/states/BG.php:31 -msgid "Силистра" -msgstr "Silistra" - -#: i18n/states/BG.php:32 -msgid "Сливен" -msgstr "Sliven" - -#: i18n/states/BG.php:33 -msgid "Смолян" -msgstr "Smolyan" - -#: i18n/states/BG.php:34 -msgid "София-област" -msgstr "Provincia de Sofía" - -#: i18n/states/BG.php:35 -msgid "София-град" -msgstr "Sofía" - -#: i18n/states/BG.php:36 -msgid "Стара Загора" -msgstr "Stara Zagora" - -#: i18n/states/BG.php:37 -msgid "Търговище" -msgstr "Tărgovište" - -#: i18n/states/BG.php:38 -msgid "Хасково" -msgstr "Haskovo" - -#: i18n/states/BG.php:39 -msgid "Шумен" -msgstr "Shumen" - -#: i18n/states/BG.php:40 -msgid "Ямбол" -msgstr "Yambol" - -# @ woocommerce -#: i18n/states/BR.php:13 -msgid "Acre" -msgstr "Acre" - -# @ woocommerce -#: i18n/states/BR.php:14 -msgid "Alagoas" -msgstr "Alagoas" - -# @ woocommerce -#: i18n/states/BR.php:15 -msgid "Amapá" -msgstr "Amapá" - -# @ woocommerce -#: i18n/states/BR.php:16 -msgid "Amazonas" -msgstr "Amazonas" - -# @ woocommerce -#: i18n/states/BR.php:17 -msgid "Bahia" -msgstr "Bahia" - -# @ woocommerce -#: i18n/states/BR.php:18 -msgid "Ceará" -msgstr "Ceará" - -# @ woocommerce -#: i18n/states/BR.php:19 -msgid "Distrito Federal" -msgstr "Distrito Federal" - -# @ woocommerce -#: i18n/states/BR.php:20 -msgid "Espírito Santo" -msgstr "Espírito Santo" - -# @ woocommerce -#: i18n/states/BR.php:21 -msgid "Goiás" -msgstr "Goiás" - -# @ woocommerce -#: i18n/states/BR.php:22 -msgid "Maranhão" -msgstr "Maranhão" - -# @ woocommerce -#: i18n/states/BR.php:23 -msgid "Mato Grosso" -msgstr "Mato Grosso" - -# @ woocommerce -#: i18n/states/BR.php:24 -msgid "Mato Grosso do Sul" -msgstr "Mato Grosso del Sur" - -# @ woocommerce -#: i18n/states/BR.php:25 -msgid "Minas Gerais" -msgstr "Minas Gerais" - -# @ woocommerce -#: i18n/states/BR.php:26 -msgid "Pará" -msgstr "Pará" - -# @ woocommerce -#: i18n/states/BR.php:27 -msgid "Paraíba" -msgstr "Paraíba" - -# @ woocommerce -#: i18n/states/BR.php:28 -msgid "Paraná" -msgstr "Paraná" - -# @ woocommerce -#: i18n/states/BR.php:29 -msgid "Pernambuco" -msgstr "Pernambuco" - -# @ woocommerce -#: i18n/states/BR.php:30 -msgid "Piauí" -msgstr "Piauí" - -# @ woocommerce -#: i18n/states/BR.php:31 -msgid "Rio de Janeiro" -msgstr "Rio de Janeiro" - -# @ woocommerce -#: i18n/states/BR.php:32 -msgid "Rio Grande do Norte" -msgstr "Río Grande del Norte" - -# @ woocommerce -#: i18n/states/BR.php:33 -msgid "Rio Grande do Sul" -msgstr "Río Grande del Sur" - -# @ woocommerce -#: i18n/states/BR.php:34 -msgid "Rondônia" -msgstr "Rondônia" - -# @ woocommerce -#: i18n/states/BR.php:35 -msgid "Roraima" -msgstr "Roraima" - -# @ woocommerce -#: i18n/states/BR.php:36 -msgid "Santa Catarina" -msgstr "Santa Catarina" - -# @ woocommerce -#: i18n/states/BR.php:37 -msgid "São Paulo" -msgstr "São Paulo" - -# @ woocommerce -#: i18n/states/BR.php:38 -msgid "Sergipe" -msgstr "Sergipe" - -# @ woocommerce -#: i18n/states/BR.php:39 -msgid "Tocantins" -msgstr "Tocantins" - -# @ woocommerce -#: i18n/states/CA.php:13 -msgid "Alberta" -msgstr "Alberta" - -# @ woocommerce -#: i18n/states/CA.php:14 -msgid "British Columbia" -msgstr "British Columbia" - -# @ woocommerce -#: i18n/states/CA.php:15 -msgid "Manitoba" -msgstr "Manitoba" - -# @ woocommerce -#: i18n/states/CA.php:16 -msgid "New Brunswick" -msgstr "New Brunswick" - -# @ woocommerce -#: i18n/states/CA.php:17 -msgid "Newfoundland" -msgstr "Newfoundland" - -# @ woocommerce -#: i18n/states/CA.php:18 -msgid "Northwest Territories" -msgstr "Northwest Territories" - -# @ woocommerce -#: i18n/states/CA.php:19 -msgid "Nova Scotia" -msgstr "Nova Scotia" - -# @ woocommerce -#: i18n/states/CA.php:20 -msgid "Nunavut" -msgstr "Nunavut" - -# @ woocommerce -#: i18n/states/CA.php:21 -msgid "Ontario" -msgstr "Ontario" - -# @ woocommerce -#: i18n/states/CA.php:22 -msgid "Prince Edward Island" -msgstr "Prince Edward Island" - -# @ woocommerce -#: i18n/states/CA.php:23 -msgid "Quebec" -msgstr "Quebec" - -# @ woocommerce -#: i18n/states/CA.php:24 -msgid "Saskatchewan" -msgstr "Saskatchewan" - -# @ woocommerce -#: i18n/states/CA.php:25 -msgid "Yukon Territory" -msgstr "Yukon Territory" - -# @ woocommerce -#: i18n/states/CN.php:13 -msgid "Yunnan / 云南" -msgstr "Yunnan / 云南" - -# @ woocommerce -#: i18n/states/CN.php:14 -msgid "Beijing / 北京" -msgstr "Beijing / 北京" - -# @ woocommerce -#: i18n/states/CN.php:15 -msgid "Tianjin / 天津" -msgstr "Tianjin / 天津" - -# @ woocommerce -#: i18n/states/CN.php:16 -msgid "Hebei / 河北" -msgstr "Hebei / 河北" - -# @ woocommerce -#: i18n/states/CN.php:17 -msgid "Shanxi / 山西" -msgstr "Shanxi / 山西" - -# @ woocommerce -#: i18n/states/CN.php:18 -msgid "Inner Mongolia / 內蒙古" -msgstr "Inner Mongolia / 內蒙古" - -# @ woocommerce -#: i18n/states/CN.php:19 -msgid "Liaoning / 辽宁" -msgstr "Liaoning / 辽宁" - -# @ woocommerce -#: i18n/states/CN.php:20 -msgid "Jilin / 吉林" -msgstr "Jilin / 吉林" - -# @ woocommerce -#: i18n/states/CN.php:21 -msgid "Heilongjiang / 黑龙江" -msgstr "Heilongjiang / 黑龙江" - -# @ woocommerce -#: i18n/states/CN.php:22 -msgid "Shanghai / 上海" -msgstr "Shanghai / 上海" - -# @ woocommerce -#: i18n/states/CN.php:23 -msgid "Jiangsu / 江苏" -msgstr "Jiangsu / 江苏" - -# @ woocommerce -#: i18n/states/CN.php:24 -msgid "Zhejiang / 浙江" -msgstr "Zhejiang / 浙江" - -# @ woocommerce -#: i18n/states/CN.php:25 -msgid "Anhui / 安徽" -msgstr "Anhui / 安徽" - -# @ woocommerce -#: i18n/states/CN.php:26 -msgid "Fujian / 福建" -msgstr "Fujian / 福建" - -# @ woocommerce -#: i18n/states/CN.php:27 -msgid "Jiangxi / 江西" -msgstr "Jiangxi / 江西" - -# @ woocommerce -#: i18n/states/CN.php:28 -msgid "Shandong / 山东" -msgstr "Shandong / 山东" - -# @ woocommerce -#: i18n/states/CN.php:29 -msgid "Henan / 河南" -msgstr "Henan / 河南" - -# @ woocommerce -#: i18n/states/CN.php:30 -msgid "Hubei / 湖北" -msgstr "Hubei / 湖北" - -# @ woocommerce -#: i18n/states/CN.php:31 -msgid "Hunan / 湖南" -msgstr "Hunan / 湖南" - -# @ woocommerce -#: i18n/states/CN.php:32 -msgid "Guangdong / 广东" -msgstr "Guangdong / 广东" - -# @ woocommerce -#: i18n/states/CN.php:33 -msgid "Guangxi Zhuang / 广西壮族" -msgstr "Guangxi Zhuang / 广西壮族" - -# @ woocommerce -#: i18n/states/CN.php:34 -msgid "Hainan / 海南" -msgstr "Hainan / 海南" - -# @ woocommerce -#: i18n/states/CN.php:35 -msgid "Chongqing / 重庆" -msgstr "Chongqing / 重庆" - -# @ woocommerce -#: i18n/states/CN.php:36 -msgid "Sichuan / 四川" -msgstr "Sichuan / 四川" - -# @ woocommerce -#: i18n/states/CN.php:37 -msgid "Guizhou / 贵州" -msgstr "Guizhou / 贵州" - -# @ woocommerce -#: i18n/states/CN.php:38 -msgid "Shaanxi / 陕西" -msgstr "Shaanxi / 陕西" - -# @ woocommerce -#: i18n/states/CN.php:39 -msgid "Gansu / 甘肃" -msgstr "Gansu / 甘肃" - -# @ woocommerce -#: i18n/states/CN.php:40 -msgid "Qinghai / 青海" -msgstr "Qinghai / 青海" - -# @ woocommerce -#: i18n/states/CN.php:41 -msgid "Ningxia Hui / 宁夏" -msgstr "Ningxia Hui / 宁夏" - -# @ woocommerce -#: i18n/states/CN.php:42 -msgid "Macau / 澳门" -msgstr "Macau / 澳门" - -# @ woocommerce -#: i18n/states/CN.php:43 -msgid "Tibet / 西藏" -msgstr "Tibet / 西藏" - -# @ woocommerce -#: i18n/states/CN.php:44 -msgid "Xinjiang / 新疆" -msgstr "Xinjiang / 新疆" - -#: i18n/states/ES.php:13 -msgid "A Coruña" -msgstr "A Coruña" - -# @ woocommerce -#: i18n/states/ES.php:14 -msgid "Álava" -msgstr "Álava" - -#: i18n/states/ES.php:15 -msgid "Albacete" -msgstr "Albacete" - -# @ woocommerce -#: i18n/states/ES.php:16 -msgid "Alicante" -msgstr "Alicante" - -# @ woocommerce -#: i18n/states/ES.php:17 -msgid "Almería" -msgstr "Almería" - -#: i18n/states/ES.php:18 -msgid "Asturias" -msgstr "Asturias" - -# @ woocommerce -#: i18n/states/ES.php:19 -msgid "Ávila" -msgstr "Ávila" - -#: i18n/states/ES.php:20 -msgid "Badajoz" -msgstr "Badajoz" - -#: i18n/states/ES.php:21 -msgid "Baleares" -msgstr "Baleares" - -#: i18n/states/ES.php:22 -msgid "Barcelona" -msgstr "Barcelona" - -#: i18n/states/ES.php:23 -msgid "Burgos" -msgstr "Burgos" - -# @ woocommerce -#: i18n/states/ES.php:24 -msgid "Cáceres" -msgstr "Cáceres" - -# @ woocommerce -#: i18n/states/ES.php:25 -msgid "Cádiz" -msgstr "Cádiz" - -# @ woocommerce -#: i18n/states/ES.php:26 -msgid "Cantabria" -msgstr "Cantabria" - -# @ woocommerce -#: i18n/states/ES.php:27 -msgid "Castellón" -msgstr "Castellón" - -#: i18n/states/ES.php:28 -msgid "Ceuta" -msgstr "Ceuta" - -#: i18n/states/ES.php:29 -msgid "Ciudad Real" -msgstr "Ceuta" - -# @ woocommerce -#: i18n/states/ES.php:30 -msgid "Córdoba" -msgstr "Córdoba" - -#: i18n/states/ES.php:31 -msgid "Cuenca" -msgstr "Cuenca" - -#: i18n/states/ES.php:32 -msgid "Girona" -msgstr "Gerona" - -# @ woocommerce -#: i18n/states/ES.php:33 -msgid "Granada" -msgstr "Granada" - -# @ woocommerce -#: i18n/states/ES.php:34 -msgid "Guadalajara" -msgstr "Guadalajara" - -# @ woocommerce -#: i18n/states/ES.php:35 -msgid "Guipúzcoa" -msgstr "Guipúzcoa" - -#: i18n/states/ES.php:36 -msgid "Huelva" -msgstr "Huelva" - -#: i18n/states/ES.php:37 -msgid "Huesca" -msgstr "Huesca" - -# @ woocommerce -#: i18n/states/ES.php:38 -msgid "Jaén" -msgstr "Jaén" - -#: i18n/states/ES.php:39 -msgid "La Rioja" -msgstr "La Rioja" - -#: i18n/states/ES.php:40 -msgid "Las Palmas" -msgstr "Las Palmas" - -# @ woocommerce -#: i18n/states/ES.php:41 -msgid "León" -msgstr "León" - -#: i18n/states/ES.php:42 -msgid "Lleida" -msgstr "Lérida" - -#: i18n/states/ES.php:43 -msgid "Lugo" -msgstr "Lugo" - -#: i18n/states/ES.php:44 -msgid "Madrid" -msgstr "Madrid" - -# @ woocommerce -#: i18n/states/ES.php:45 -msgid "Málaga" -msgstr "Málaga" - -#: i18n/states/ES.php:46 -msgid "Melilla" -msgstr "Melilla" - -#: i18n/states/ES.php:47 -msgid "Murcia" -msgstr "Murcia" - -#: i18n/states/ES.php:48 -msgid "Navarra" -msgstr "Navarra" - -#: i18n/states/ES.php:49 -msgid "Ourense" -msgstr "Orense" - -#: i18n/states/ES.php:50 -msgid "Palencia" -msgstr "Palencia" - -# @ woocommerce -#: i18n/states/ES.php:51 -msgid "Pontevedra" -msgstr "Pontevedra" - -#: i18n/states/ES.php:52 -msgid "Salamanca" -msgstr "Salamanca" - -#: i18n/states/ES.php:53 -msgid "Santa Cruz de Tenerife" -msgstr "Santa Cruz de Tenerife" - -#: i18n/states/ES.php:54 -msgid "Segovia" -msgstr "Segovia" - -#: i18n/states/ES.php:55 -msgid "Sevilla" -msgstr "Sevilla" - -# @ woocommerce -#: i18n/states/ES.php:56 -msgid "Soria" -msgstr "Soria" - -#: i18n/states/ES.php:57 -msgid "Tarragona" -msgstr "Tarragona" - -#: i18n/states/ES.php:58 -msgid "Teruel" -msgstr "Teruel" - -#: i18n/states/ES.php:59 -msgid "Toledo" -msgstr "Toledo" - -#: i18n/states/ES.php:60 -msgid "Valencia" -msgstr "Valencia" - -#: i18n/states/ES.php:61 -msgid "Valladolid" -msgstr "Valladolid" - -#: i18n/states/ES.php:62 -msgid "Vizcaya" -msgstr "Vizcaya" - -#: i18n/states/ES.php:63 -msgid "Zamora" -msgstr "Zamora" - -# @ woocommerce -#: i18n/states/ES.php:64 -msgid "Zaragoza" -msgstr "Zaragoza" - -# @ woocommerce -#: i18n/states/HK.php:13 -msgid "Hong Kong Island" -msgstr "Isla de Hong Kong" - -# @ woocommerce -#: i18n/states/HK.php:14 -msgid "Kowloon" -msgstr "Kowloon" - -# @ woocommerce -#: i18n/states/HK.php:15 -msgid "New Territories" -msgstr "Nuevos territorios" - -# @ woocommerce -#: i18n/states/HU.php:13 -msgid "Bács-Kiskun" -msgstr "Bács-Kiskun" - -# @ woocommerce -#: i18n/states/HU.php:14 -msgid "Békés" -msgstr "Békés" - -# @ woocommerce -#: i18n/states/HU.php:15 -msgid "Baranya" -msgstr "Baranya" - -# @ woocommerce -#: i18n/states/HU.php:16 -msgid "Borsod-Abaúj-Zemplén" -msgstr "Borsod-Abaúj-Zemplén" - -# @ woocommerce -#: i18n/states/HU.php:17 -msgid "Budapest" -msgstr "Budapest" - -# @ woocommerce -#: i18n/states/HU.php:18 -msgid "Csongrád" -msgstr "Csongrád" - -# @ woocommerce -#: i18n/states/HU.php:19 -msgid "Fejér" -msgstr "Fejér" - -# @ woocommerce -#: i18n/states/HU.php:20 -msgid "Győr-Moson-Sopron" -msgstr "Győr-Moson-Sopron" - -# @ woocommerce -#: i18n/states/HU.php:21 -msgid "Hajdú-Bihar" -msgstr "Hajdú-Bihar" - -# @ woocommerce -#: i18n/states/HU.php:22 -msgid "Heves" -msgstr "Heves" - -# @ woocommerce -#: i18n/states/HU.php:23 -msgid "Jász-Nagykun-Szolnok" -msgstr "Jász-Nagykun-Szolnok" - -# @ woocommerce -#: i18n/states/HU.php:24 -msgid "Komárom-Esztergom" -msgstr "Komárom-Esztergom" - -# @ woocommerce -#: i18n/states/HU.php:25 -msgid "Nógrád" -msgstr "Nógrád" - -# @ woocommerce -#: i18n/states/HU.php:26 -msgid "Pest" -msgstr "Pest" - -# @ woocommerce -#: i18n/states/HU.php:27 -msgid "Somogy" -msgstr "Somogy" - -# @ woocommerce -#: i18n/states/HU.php:28 -msgid "Szabolcs-Szatmár-Bereg" -msgstr "Szabolcs-Szatmár-Bereg" - -# @ woocommerce -#: i18n/states/HU.php:29 -msgid "Tolna" -msgstr "Tolna" - -# @ woocommerce -#: i18n/states/HU.php:30 -msgid "Vas" -msgstr "Vas" - -# @ woocommerce -#: i18n/states/HU.php:31 -msgid "Veszprém" -msgstr "Veszprém" - -# @ woocommerce -#: i18n/states/HU.php:32 -msgid "Zala" -msgstr "Zala" - -# @ woocommerce -#: i18n/states/HZ.php:13 i18n/states/NZ.php:14 -msgid "Auckland" -msgstr "Auckland" - -# @ woocommerce -#: i18n/states/HZ.php:14 i18n/states/NZ.php:16 -msgid "Bay of Plenty" -msgstr "Bay of Plenty" - -# @ woocommerce -#: i18n/states/HZ.php:15 i18n/states/NZ.php:25 -msgid "Canterbury" -msgstr "Canterbury" - -# @ woocommerce -#: i18n/states/HZ.php:16 i18n/states/NZ.php:18 -msgid "Hawke’s Bay" -msgstr "Bahía de Hawke" - -# @ woocommerce -#: i18n/states/HZ.php:17 i18n/states/NZ.php:19 -msgid "Manawatu-Wanganui" -msgstr "Manawatu-Wanganui" - -# @ woocommerce -#: i18n/states/HZ.php:18 i18n/states/NZ.php:22 -msgid "Marlborough" -msgstr "Marlborough" - -# @ woocommerce -#: i18n/states/HZ.php:19 i18n/states/NZ.php:21 -msgid "Nelson" -msgstr "Nelson" - -# @ woocommerce -#: i18n/states/HZ.php:20 i18n/states/NZ.php:13 -msgid "Northland" -msgstr "Northland" - -# @ woocommerce -#: i18n/states/HZ.php:21 i18n/states/NZ.php:26 -msgid "Otago" -msgstr "Otago" - -# @ woocommerce -#: i18n/states/HZ.php:22 i18n/states/NZ.php:27 -msgid "Southland" -msgstr "Southland" - -# @ woocommerce -#: i18n/states/HZ.php:23 i18n/states/NZ.php:17 -msgid "Taranaki" -msgstr "Taranaki" - -# @ woocommerce -#: i18n/states/HZ.php:24 i18n/states/NZ.php:23 -msgid "Tasman" -msgstr "Tasman" - -# @ woocommerce -#: i18n/states/HZ.php:25 i18n/states/NZ.php:15 -msgid "Waikato" -msgstr "Waikato" - -# @ woocommerce -#: i18n/states/HZ.php:26 i18n/states/NZ.php:20 -msgid "Wellington" -msgstr "Wellington" - -# @ woocommerce -#: i18n/states/HZ.php:27 i18n/states/NZ.php:24 -msgid "West Coast" -msgstr "Costa Oeste" - -# @ woocommerce -#: i18n/states/ID.php:13 -msgid "Daerah Istimewa Aceh" -msgstr "Daerah Istimewa Aceh" - -# @ woocommerce -#: i18n/states/ID.php:14 -msgid "Sumatera Utara" -msgstr "Sumatra Septentrional" - -# @ woocommerce -#: i18n/states/ID.php:15 -msgid "Sumatera Barat" -msgstr "Sumatra Occidental" - -# @ woocommerce -#: i18n/states/ID.php:16 -msgid "Riau" -msgstr "Riau" - -# @ woocommerce -#: i18n/states/ID.php:17 -msgid "Kepulauan Riau" -msgstr "Kepulauan Riau" - -# @ woocommerce -#: i18n/states/ID.php:18 -msgid "Jambi" -msgstr "Jambi" - -# @ woocommerce -#: i18n/states/ID.php:19 -msgid "Sumatera Selatan" -msgstr "Sumatra Meridional" - -# @ woocommerce -#: i18n/states/ID.php:20 -msgid "Bangka Belitung" -msgstr "Bangka Belitung" - -# @ woocommerce -#: i18n/states/ID.php:21 -msgid "Bengkulu" -msgstr "Bengkulu" - -# @ woocommerce -#: i18n/states/ID.php:22 -msgid "Lampung" -msgstr "Lampung" - -# @ woocommerce -#: i18n/states/ID.php:23 -msgid "DKI Jakarta" -msgstr "DKI Jakarta" - -# @ woocommerce -#: i18n/states/ID.php:24 -msgid "Jawa Barat" -msgstr "Jawa Barat" - -# @ woocommerce -#: i18n/states/ID.php:25 -msgid "Banten" -msgstr "Banten" - -# @ woocommerce -#: i18n/states/ID.php:26 -msgid "Jawa Tengah" -msgstr "Jawa Tengah" - -# @ woocommerce -#: i18n/states/ID.php:27 -msgid "Jawa Timur" -msgstr "Jawa Timur" - -# @ woocommerce -#: i18n/states/ID.php:28 -msgid "Daerah Istimewa Yogyakarta" -msgstr "Yogyakarta" - -# @ woocommerce -#: i18n/states/ID.php:29 -msgid "Bali" -msgstr "Bali" - -# @ woocommerce -#: i18n/states/ID.php:30 -msgid "Nusa Tenggara Barat" -msgstr "Nusatenggara Occidental" - -# @ woocommerce -#: i18n/states/ID.php:31 -msgid "Nusa Tenggara Timur" -msgstr "Nusatenggara Oriental" - -# @ woocommerce -#: i18n/states/ID.php:32 -msgid "Kalimantan Barat" -msgstr "Borneo Occidental" - -# @ woocommerce -#: i18n/states/ID.php:33 -msgid "Kalimantan Tengah" -msgstr "Borneo Central" - -# @ woocommerce -#: i18n/states/ID.php:34 -msgid "Kalimantan Timur" -msgstr "Kalimantan Oriental" - -# @ woocommerce -#: i18n/states/ID.php:35 -msgid "Kalimantan Selatan" -msgstr "Borneo Meridional" - -# @ woocommerce -#: i18n/states/ID.php:36 -msgid "Kalimantan Utara" -msgstr "Borneo del Norte" - -# @ woocommerce -#: i18n/states/ID.php:37 -msgid "Sulawesi Utara" -msgstr "Célebes Septentrional" - -# @ woocommerce -#: i18n/states/ID.php:38 -msgid "Sulawesi Tengah" -msgstr "Célebes Central" - -# @ woocommerce -#: i18n/states/ID.php:39 -msgid "Sulawesi Tenggara" -msgstr "Célebes Suroriental" - -# @ woocommerce -#: i18n/states/ID.php:40 -msgid "Sulawesi Barat" -msgstr "Célebes Occidental" - -# @ woocommerce -#: i18n/states/ID.php:41 -msgid "Sulawesi Selatan" -msgstr "Célebes Meridional" - -# @ woocommerce -#: i18n/states/ID.php:42 -msgid "Gorontalo" -msgstr "Gorontalo" - -# @ woocommerce -#: i18n/states/ID.php:43 -msgid "Maluku" -msgstr "Las islas Molucas " - -# @ woocommerce -#: i18n/states/ID.php:44 -msgid "Maluku Utara" -msgstr "Molucas septentrionales" - -# @ woocommerce -#: i18n/states/ID.php:45 -msgid "Papua" -msgstr "Papua" - -# @ woocommerce -#: i18n/states/ID.php:46 -msgid "Papua Barat" -msgstr "Provincia de Papúa Occidental" - -# @ woocommerce -#: i18n/states/IN.php:13 -msgid "Andra Pradesh" -msgstr "Andra Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:14 -msgid "Arunachal Pradesh" -msgstr "Arunachal Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:15 -msgid "Assam" -msgstr "Assam" - -# @ woocommerce -#: i18n/states/IN.php:16 -msgid "Bihar" -msgstr "Bihar" - -# @ woocommerce -#: i18n/states/IN.php:17 -msgid "Chhattisgarh" -msgstr "Chhattisgarh" - -# @ woocommerce -#: i18n/states/IN.php:18 -msgid "Goa" -msgstr "Goa" - -# @ woocommerce -#: i18n/states/IN.php:19 -msgid "Gujarat" -msgstr "Gujarat" - -# @ woocommerce -#: i18n/states/IN.php:20 -msgid "Haryana" -msgstr "Haryana" - -# @ woocommerce -#: i18n/states/IN.php:21 -msgid "Himachal Pradesh" -msgstr "Himachal Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:22 -msgid "Jammu and Kashmir" -msgstr "Jammu and Kashmir" - -# @ woocommerce -#: i18n/states/IN.php:23 -msgid "Jharkhand" -msgstr "Jharkhand" - -# @ woocommerce -#: i18n/states/IN.php:24 -msgid "Karnataka" -msgstr "Karnataka" - -# @ woocommerce -#: i18n/states/IN.php:25 -msgid "Kerala" -msgstr "Kerala" - -# @ woocommerce -#: i18n/states/IN.php:26 -msgid "Madhya Pradesh" -msgstr "Madhya Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:27 -msgid "Maharashtra" -msgstr "Maharashtra" - -# @ woocommerce -#: i18n/states/IN.php:28 -msgid "Manipur" -msgstr "Manipur" - -# @ woocommerce -#: i18n/states/IN.php:29 -msgid "Meghalaya" -msgstr "Meghalaya" - -# @ woocommerce -#: i18n/states/IN.php:30 -msgid "Mizoram" -msgstr "Mizoram" - -# @ woocommerce -#: i18n/states/IN.php:31 -msgid "Nagaland" -msgstr "Nagaland" - -# @ woocommerce -#: i18n/states/IN.php:32 -msgid "Orissa" -msgstr "Orissa" - -# @ woocommerce -#: i18n/states/IN.php:33 -msgid "Punjab" -msgstr "Punjab" - -# @ woocommerce -#: i18n/states/IN.php:34 -msgid "Rajasthan" -msgstr "Rajasthan" - -# @ woocommerce -#: i18n/states/IN.php:35 -msgid "Sikkim" -msgstr "Sikkim" - -# @ woocommerce -#: i18n/states/IN.php:36 -msgid "Tamil Nadu" -msgstr "Tamil Nadu" - -# @ woocommerce -#: i18n/states/IN.php:37 -msgid "Tripura" -msgstr "Tripura" - -# @ woocommerce -#: i18n/states/IN.php:38 -msgid "Uttaranchal" -msgstr "Uttaranchal" - -# @ woocommerce -#: i18n/states/IN.php:39 -msgid "Uttar Pradesh" -msgstr "Uttar Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:40 -msgid "West Bengal" -msgstr "West Bengal" - -# @ woocommerce -#: i18n/states/IN.php:41 -msgid "Andaman and Nicobar Islands" -msgstr "Islas Andaman y Nicobar" - -# @ woocommerce -#: i18n/states/IN.php:42 -msgid "Chandigarh" -msgstr "Chandigarh" - -# @ woocommerce -#: i18n/states/IN.php:43 -msgid "Dadar and Nagar Haveli" -msgstr "Dadar and Nagar Haveli" - -# @ woocommerce -#: i18n/states/IN.php:44 -msgid "Daman and Diu" -msgstr "Daman and Diu" - -# @ woocommerce -#: i18n/states/IN.php:45 -msgid "Delhi" -msgstr "Delhi" - -# @ woocommerce -#: i18n/states/IN.php:46 -msgid "Lakshadeep" -msgstr "Lakshadeep" - -# @ woocommerce -#: i18n/states/IN.php:47 -msgid "Pondicherry (Puducherry)" -msgstr "Pondicherry (Puducherry)" - -#: i18n/states/JP.php:13 -msgid "Hokkaido" -msgstr "Hokkaidō" - -# @ woocommerce -#: i18n/states/JP.php:14 -msgid "Aomori" -msgstr "Aomori" - -#: i18n/states/JP.php:15 -msgid "Iwate" -msgstr "Iwate" - -#: i18n/states/JP.php:16 -msgid "Miyagi" -msgstr "Miyagi" - -#: i18n/states/JP.php:17 -msgid "Akita" -msgstr "Akita" - -#: i18n/states/JP.php:18 -msgid "Yamagata" -msgstr "Yamagata" - -#: i18n/states/JP.php:19 -msgid "Fukushima" -msgstr "Fukushima" - -#: i18n/states/JP.php:20 -msgid "Ibaraki" -msgstr "Ibaraki" - -#: i18n/states/JP.php:21 -msgid "Tochigi" -msgstr "Tochigi" - -#: i18n/states/JP.php:22 -msgid "Gunma" -msgstr "Gunma" - -#: i18n/states/JP.php:23 -msgid "Saitama" -msgstr "Saitama" - -#: i18n/states/JP.php:24 -msgid "Chiba" -msgstr "Chiba" - -#: i18n/states/JP.php:25 -msgid "Tokyo" -msgstr "Tokyo" - -#: i18n/states/JP.php:26 -msgid "Kanagawa" -msgstr "Kanagawa" - -#: i18n/states/JP.php:27 -msgid "Niigata" -msgstr "Niigata" - -#: i18n/states/JP.php:28 -msgid "Toyama" -msgstr "Toyama" - -#: i18n/states/JP.php:29 -msgid "Ishikawa" -msgstr "Ishikawa" - -#: i18n/states/JP.php:30 -msgid "Fukui" -msgstr "Fukui" - -#: i18n/states/JP.php:31 -msgid "Yamanashi" -msgstr "Yamanashi" - -# @ woocommerce -#: i18n/states/JP.php:32 -msgid "Nagano" -msgstr "Nagano" - -#: i18n/states/JP.php:33 -msgid "Gifu" -msgstr "Gifu" - -#: i18n/states/JP.php:34 -msgid "Shizuoka" -msgstr "Shizuoka" - -# @ woocommerce -#: i18n/states/JP.php:35 -msgid "Aichi" -msgstr "Aichi" - -# @ woocommerce -#: i18n/states/JP.php:36 -msgid "Mie" -msgstr "Mie" - -# @ woocommerce -#: i18n/states/JP.php:37 -msgid "Shiga" -msgstr "Shiga" - -#: i18n/states/JP.php:38 -msgid "Kyouto" -msgstr "Kioto" - -#: i18n/states/JP.php:39 -msgid "Osaka" -msgstr "Osaka" - -#: i18n/states/JP.php:40 -msgid "Hyougo" -msgstr "Hyōgo" - -#: i18n/states/JP.php:41 -msgid "Nara" -msgstr "Nara" - -#: i18n/states/JP.php:42 -msgid "Wakayama" -msgstr "Wakayama" - -#: i18n/states/JP.php:43 -msgid "Tottori" -msgstr "Tottori" - -#: i18n/states/JP.php:44 -msgid "Shimane" -msgstr "Shimane" - -#: i18n/states/JP.php:45 -msgid "Okayama" -msgstr "Okayama" - -#: i18n/states/JP.php:46 -msgid "Hiroshima" -msgstr "Hiroshima" - -#: i18n/states/JP.php:47 -msgid "Yamaguchi" -msgstr "Yamaguchi" - -#: i18n/states/JP.php:48 -msgid "Tokushima" -msgstr "Tokushima" - -#: i18n/states/JP.php:49 -msgid "Kagawa" -msgstr "Kagawa" - -#: i18n/states/JP.php:50 -msgid "Ehime" -msgstr "Ehime" - -#: i18n/states/JP.php:51 -msgid "Kochi" -msgstr "Cochín" - -#: i18n/states/JP.php:52 -msgid "Fukuoka" -msgstr "Fukuoka" - -#: i18n/states/JP.php:53 -msgid "Saga" -msgstr "Saga" - -# @ woocommerce -#: i18n/states/JP.php:54 -msgid "Nagasaki" -msgstr "Nagasaki" - -#: i18n/states/JP.php:55 -msgid "Kumamoto" -msgstr "Kumamoto" - -#: i18n/states/JP.php:56 -msgid "Oita" -msgstr "Ōita" - -#: i18n/states/JP.php:57 -msgid "Miyazaki" -msgstr "Miyazaki" - -#: i18n/states/JP.php:58 -msgid "Kagoshima" -msgstr "Kagoshima" - -#: i18n/states/JP.php:59 -msgid "Okinawa" -msgstr "Okinawa" - -# @ woocommerce -#: i18n/states/MY.php:13 -msgid "Johor" -msgstr "Johor" - -# @ woocommerce -#: i18n/states/MY.php:14 -msgid "Kedah" -msgstr "Kedah" - -# @ woocommerce -#: i18n/states/MY.php:15 -msgid "Kelantan" -msgstr "Kelantan" - -# @ woocommerce -#: i18n/states/MY.php:16 -msgid "Melaka" -msgstr "Melaka" - -# @ woocommerce -#: i18n/states/MY.php:17 -msgid "Negeri Sembilan" -msgstr "Negeri Sembilan" - -# @ woocommerce -#: i18n/states/MY.php:18 -msgid "Pahang" -msgstr "Pahang" - -# @ woocommerce -#: i18n/states/MY.php:19 -msgid "Perak" -msgstr "Perak" - -# @ woocommerce -#: i18n/states/MY.php:20 -msgid "Perlis" -msgstr "Perlis" - -# @ woocommerce -#: i18n/states/MY.php:21 -msgid "Pulau Pinang" -msgstr "Pulau Pinang" - -# @ woocommerce -#: i18n/states/MY.php:22 -msgid "Sabah" -msgstr "Sabah" - -# @ woocommerce -#: i18n/states/MY.php:23 -msgid "Sarawak" -msgstr "Sarawak" - -# @ woocommerce -#: i18n/states/MY.php:24 -msgid "Selangor" -msgstr "Selangor" - -# @ woocommerce -#: i18n/states/MY.php:25 -msgid "Terengganu" -msgstr "Terengganu" - -# @ woocommerce -#: i18n/states/MY.php:26 -msgid "W.P. Kuala Lumpur" -msgstr "W.P. Kuala Lumpur" - -# @ woocommerce -#: i18n/states/MY.php:27 -msgid "W.P. Labuan" -msgstr "W.P. Labuan" - -# @ woocommerce -#: i18n/states/MY.php:28 -msgid "W.P. Putrajaya" -msgstr "W.P. Putrajaya" - -# @ woocommerce -#: i18n/states/TH.php:13 -msgid "" -"Amnat Charoen (อำนาจเจร" -"ิญ)" -msgstr "" -"Amnat Charoen (อำนาจเจร" -"ิญ)" - -# @ woocommerce -#: i18n/states/TH.php:14 -msgid "Ang Thong (อ่างทอง)" -msgstr "Ang Thong (อ่างทอง)" - -# @ woocommerce -#: i18n/states/TH.php:15 -msgid "" -"Ayutthaya (พระนครศรี" -"อยุธยา)" -msgstr "" -"Ayutthaya (พระนครศรี" -"อยุธยา)" - -# @ woocommerce -#: i18n/states/TH.php:16 -msgid "" -"Bangkok (กรุงเทพมห" -"านคร)" -msgstr "" -"Bangkok (กรุงเทพมห" -"านคร)" - -# @ woocommerce -#: i18n/states/TH.php:17 -msgid "Bueng Kan (บึงกาฬ)" -msgstr "Bueng Kan (บึงกาฬ)" - -# @ woocommerce -#: i18n/states/TH.php:18 -msgid "" -"Buri Ram (บุรีรัมย์)" -msgstr "" -"Buri Ram (บุรีรัมย์)" - -# @ woocommerce -#: i18n/states/TH.php:19 -msgid "" -"Chachoengsao (ฉะเชิงเทร" -"า)" -msgstr "" -"Chachoengsao (ฉะเชิงเทร" -"า)" - -# @ woocommerce -#: i18n/states/TH.php:20 -msgid "Chai Nat (ชัยนาท)" -msgstr "Chai Nat (ชัยนาท)" - -# @ woocommerce -#: i18n/states/TH.php:21 -msgid "Chaiyaphum (ชัยภูมิ)" -msgstr "Chaiyaphum (ชัยภูมิ)" - -# @ woocommerce -#: i18n/states/TH.php:22 -msgid "Chanthaburi (จันทบุรี)" -msgstr "Chanthaburi (จันทบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:23 -msgid "" -"Chiang Mai (เชียงใหม่)" -msgstr "" -"Chiang Mai (เชียงใหม่)" - -# @ woocommerce -#: i18n/states/TH.php:24 -msgid "Chiang Rai (เชียงราย)" -msgstr "Chiang Rai (เชียงราย)" - -# @ woocommerce -#: i18n/states/TH.php:25 -msgid "Chonburi (ชลบุรี)" -msgstr "Chonburi (ชลบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:26 -msgid "Chumphon (ชุมพร)" -msgstr "Chumphon (ชุมพร)" - -# @ woocommerce -#: i18n/states/TH.php:27 -msgid "" -"Kalasin (กาฬสินธุ์)" -msgstr "" -"Kalasin (กาฬสินธุ์)" - -# @ woocommerce -#: i18n/states/TH.php:28 -msgid "" -"Kamphaeng Phet (กำแพงเพช" -"ร)" -msgstr "" -"Kamphaeng Phet (กำแพงเพช" -"ร)" - -# @ woocommerce -#: i18n/states/TH.php:29 -msgid "" -"Kanchanaburi (กาญจนบุร" -"ี)" -msgstr "" -"Kanchanaburi (กาญจนบุร" -"ี)" - -# @ woocommerce -#: i18n/states/TH.php:30 -msgid "Khon Kaen (ขอนแก่น)" -msgstr "Khon Kaen (ขอนแก่น)" - -# @ woocommerce -#: i18n/states/TH.php:31 -msgid "Krabi (กระบี่)" -msgstr "Krabi (กระบี่)" - -# @ woocommerce -#: i18n/states/TH.php:32 -msgid "Lampang (ลำปาง)" -msgstr "Lampang (ลำปาง)" - -# @ woocommerce -#: i18n/states/TH.php:33 -msgid "Lamphun (ลำพูน)" -msgstr "Lamphun (ลำพูน)" - -# @ woocommerce -#: i18n/states/TH.php:34 -msgid "Loei (เลย)" -msgstr "Loei (เลย)" - -# @ woocommerce -#: i18n/states/TH.php:35 -msgid "Lopburi (ลพบุรี)" -msgstr "Lopburi (ลพบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:36 -msgid "" -"Mae Hong Son (แม่ฮ่องสอ" -"น)" -msgstr "" -"Mae Hong Son (แม่ฮ่องสอ" -"น)" - -# @ woocommerce -#: i18n/states/TH.php:37 -msgid "" -"Maha Sarakham (มหาสารคา" -"ม)" -msgstr "" -"Maha Sarakham (มหาสารคา" -"ม)" - -# @ woocommerce -#: i18n/states/TH.php:38 -msgid "Mukdahan (มุกดาหาร)" -msgstr "Mukdahan (มุกดาหาร)" - -# @ woocommerce -#: i18n/states/TH.php:39 -msgid "Nakhon Nayok (นครนายก)" -msgstr "Nakhon Nayok (นครนายก)" - -# @ woocommerce -#: i18n/states/TH.php:40 -msgid "Nakhon Pathom (นครปฐม)" -msgstr "Nakhon Pathom (นครปฐม)" - -# @ woocommerce -#: i18n/states/TH.php:41 -msgid "Nakhon Phanom (นครพนม)" -msgstr "Nakhon Phanom (นครพนม)" - -# @ woocommerce -#: i18n/states/TH.php:42 -msgid "" -"Nakhon Ratchasima (นครราชสี" -"มา)" -msgstr "" -"Nakhon Ratchasima (นครราชสี" -"มา)" - -# @ woocommerce -#: i18n/states/TH.php:43 -msgid "" -"Nakhon Sawan (นครสวรรค" -"์)" -msgstr "" -"Nakhon Sawan (นครสวรรค" -"์)" - -# @ woocommerce -#: i18n/states/TH.php:44 -msgid "" -"Nakhon Si Thammarat (นครศรีธร" -"รมราช)" -msgstr "" -"Nakhon Si Thammarat (นครศรีธร" -"รมราช)" - -# @ woocommerce -#: i18n/states/TH.php:45 -msgid "Nan (น่าน)" -msgstr "Nan (น่าน)" - -# @ woocommerce -#: i18n/states/TH.php:46 -msgid "Narathiwat (นราธิวาส)" -msgstr "Narathiwat (นราธิวาส)" - -# @ woocommerce -#: i18n/states/TH.php:47 -msgid "" -"Nong Bua Lam Phu (หนองบัวล" -"ำภู)" -msgstr "" -"Nong Bua Lam Phu (หนองบัวล" -"ำภู)" - -# @ woocommerce -#: i18n/states/TH.php:48 -msgid "Nong Khai (หนองคาย)" -msgstr "Nong Khai (หนองคาย)" - -# @ woocommerce -#: i18n/states/TH.php:49 -msgid "Nonthaburi (นนทบุรี)" -msgstr "Nonthaburi (นนทบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:50 -msgid "Pathum Thani (ปทุมธานี)" -msgstr "" -"Pathum Thani (ปทุมธานี)" - -# @ woocommerce -#: i18n/states/TH.php:51 -msgid "Pattani (ปัตตานี)" -msgstr "Pattani (ปัตตานี)" - -# @ woocommerce -#: i18n/states/TH.php:52 -msgid "Phang Nga (พังงา)" -msgstr "Phang Nga (พังงา)" - -# @ woocommerce -#: i18n/states/TH.php:53 -msgid "Phatthalung (พัทลุง)" -msgstr "Phatthalung (พัทลุง)" - -# @ woocommerce -#: i18n/states/TH.php:54 -msgid "Phayao (พะเยา)" -msgstr "Phayao (พะเยา)" - -# @ woocommerce -#: i18n/states/TH.php:55 -msgid "" -"Phetchabun (เพชรบูรณ์)" -msgstr "" -"Phetchabun (เพชรบูรณ์)" - -# @ woocommerce -#: i18n/states/TH.php:56 -msgid "Phetchaburi (เพชรบุรี)" -msgstr "Phetchaburi (เพชรบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:57 -msgid "Phichit (พิจิตร)" -msgstr "Phichit (พิจิตร)" - -# @ woocommerce -#: i18n/states/TH.php:58 -msgid "Phitsanulok (พิษณุโลก)" -msgstr "Phitsanulok (พิษณุโลก)" - -# @ woocommerce -#: i18n/states/TH.php:59 -msgid "Phrae (แพร่)" -msgstr "Phrae (แพร่)" - -# @ woocommerce -#: i18n/states/TH.php:60 -msgid "Phuket (ภูเก็ต)" -msgstr "Phuket (ภูเก็ต)" - -# @ woocommerce -#: i18n/states/TH.php:61 -msgid "" -"Prachin Buri (ปราจีนบุร" -"ี)" -msgstr "" -"Prachin Buri (ปราจีนบุร" -"ี)" - -# @ woocommerce -#: i18n/states/TH.php:62 -msgid "" -"Prachuap Khiri Khan (ประจวบคี" -"รีขันธ์)" -msgstr "" -"Prachuap Khiri Khan (ประจวบคี" -"รีขันธ์)" - -# @ woocommerce -#: i18n/states/TH.php:63 -msgid "Ranong (ระนอง)" -msgstr "Ranong (ระนอง)" - -# @ woocommerce -#: i18n/states/TH.php:64 -msgid "Ratchaburi (ราชบุรี)" -msgstr "Ratchaburi (ราชบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:65 -msgid "Rayong (ระยอง)" -msgstr "Rayong (ระยอง)" - -# @ woocommerce -#: i18n/states/TH.php:66 -msgid "Roi Et (ร้อยเอ็ด)" -msgstr "Roi Et (ร้อยเอ็ด)" - -# @ woocommerce -#: i18n/states/TH.php:67 -msgid "Sa Kaeo (สระแก้ว)" -msgstr "Sa Kaeo (สระแก้ว)" - -# @ woocommerce -#: i18n/states/TH.php:68 -msgid "Sakon Nakhon (สกลนคร)" -msgstr "Sakon Nakhon (สกลนคร)" - -# @ woocommerce -#: i18n/states/TH.php:69 -msgid "" -"Samut Prakan (สมุทรปราก" -"าร)" -msgstr "" -"Samut Prakan (สมุทรปราก" -"าร)" - -# @ woocommerce -#: i18n/states/TH.php:70 -msgid "" -"Samut Sakhon (สมุทรสาค" -"ร)" -msgstr "" -"Samut Sakhon (สมุทรสาค" -"ร)" - -# @ woocommerce -#: i18n/states/TH.php:71 -msgid "" -"Samut Songkhram (สมุทรสงค" -"ราม)" -msgstr "" -"Samut Songkhram (สมุทรสงค" -"ราม)" - -# @ woocommerce -#: i18n/states/TH.php:72 -msgid "Saraburi (สระบุรี)" -msgstr "Saraburi (สระบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:73 -msgid "Satun (สตูล)" -msgstr "Satun (สตูล)" - -# @ woocommerce -#: i18n/states/TH.php:74 -msgid "" -"Sing Buri (สิงห์บุรี)" -msgstr "" -"Sing Buri (สิงห์บุรี)" - -# @ woocommerce -#: i18n/states/TH.php:75 -msgid "Sisaket (ศรีสะเกษ)" -msgstr "Sisaket (ศรีสะเกษ)" - -# @ woocommerce -#: i18n/states/TH.php:76 -msgid "Songkhla (สงขลา)" -msgstr "Songkhla (สงขลา)" - -# @ woocommerce -#: i18n/states/TH.php:77 -msgid "Sukhothai (สุโขทัย)" -msgstr "Sukhothai (สุโขทัย)" - -# @ woocommerce -#: i18n/states/TH.php:78 -msgid "" -"Suphan Buri (สุพรรณบุร" -"ี)" -msgstr "" -"Suphan Buri (สุพรรณบุร" -"ี)" - -# @ woocommerce -#: i18n/states/TH.php:79 -msgid "" -"Surat Thani (สุราษฎร์ธ" -"านี)" -msgstr "" -"Surat Thani (สุราษฎร์ธ" -"านี)" - -# @ woocommerce -#: i18n/states/TH.php:80 -msgid "Surin (สุรินทร์)" -msgstr "Surin (สุรินทร์)" - -# @ woocommerce -#: i18n/states/TH.php:81 -msgid "Tak (ตาก)" -msgstr "Tak (ตาก)" - -# @ woocommerce -#: i18n/states/TH.php:82 -msgid "Trang (ตรัง)" -msgstr "Trang (ตรัง)" - -# @ woocommerce -#: i18n/states/TH.php:83 -msgid "Trat (ตราด)" -msgstr "Trat (ตราด)" - -# @ woocommerce -#: i18n/states/TH.php:84 -msgid "" -"Ubon Ratchathani (อุบลราชธ" -"านี)" -msgstr "" -"Ubon Ratchathani (อุบลราชธ" -"านี)" - -# @ woocommerce -#: i18n/states/TH.php:85 -msgid "Udon Thani (อุดรธานี)" -msgstr "Udon Thani (อุดรธานี)" - -# @ woocommerce -#: i18n/states/TH.php:86 -msgid "" -"Uthai Thani (อุทัยธานี)" -msgstr "" -"Uthai Thani (อุทัยธานี)" - -# @ woocommerce -#: i18n/states/TH.php:87 -msgid "" -"Uttaradit (อุตรดิตถ์)" -msgstr "" -"Uttaradit (อุตรดิตถ์)" - -# @ woocommerce -#: i18n/states/TH.php:88 -msgid "Yala (ยะลา)" -msgstr "Yala (ยะลา)" - -# @ woocommerce -#: i18n/states/TH.php:89 -msgid "Yasothon (ยโสธร)" -msgstr "Yasothon (ยโสธร)" - -# @ woocommerce -#: i18n/states/US.php:13 -msgid "Alabama" -msgstr "Alabama" - -# @ woocommerce -#: i18n/states/US.php:14 -msgid "Alaska" -msgstr "Alaska" - -# @ woocommerce -#: i18n/states/US.php:15 -msgid "Arizona" -msgstr "Arizona" - -# @ woocommerce -#: i18n/states/US.php:16 -msgid "Arkansas" -msgstr "Arkansas" - -# @ woocommerce -#: i18n/states/US.php:17 -msgid "California" -msgstr "California" - -# @ woocommerce -#: i18n/states/US.php:18 -msgid "Colorado" -msgstr "Colorado" - -# @ woocommerce -#: i18n/states/US.php:19 -msgid "Connecticut" -msgstr "Connecticut" - -# @ woocommerce -#: i18n/states/US.php:20 -msgid "Delaware" -msgstr "Delaware" - -# @ woocommerce -#: i18n/states/US.php:21 -msgid "District Of Columbia" -msgstr "District Of Columbia" - -# @ woocommerce -#: i18n/states/US.php:22 -msgid "Florida" -msgstr "Florida" - -# @ woocommerce -#: i18n/states/US.php:23 includes/class-wc-countries.php:118 -msgid "Georgia" -msgstr "Georgia" - -# @ woocommerce -#: i18n/states/US.php:24 -msgid "Hawaii" -msgstr "Hawaii" - -# @ woocommerce -#: i18n/states/US.php:25 -msgid "Idaho" -msgstr "Idaho" - -# @ woocommerce -#: i18n/states/US.php:26 -msgid "Illinois" -msgstr "Illinois" - -# @ woocommerce -#: i18n/states/US.php:27 -msgid "Indiana" -msgstr "Indiana" - -# @ woocommerce -#: i18n/states/US.php:28 -msgid "Iowa" -msgstr "Iowa" - -# @ woocommerce -#: i18n/states/US.php:29 -msgid "Kansas" -msgstr "Kansas" - -# @ woocommerce -#: i18n/states/US.php:30 -msgid "Kentucky" -msgstr "Kentucky" - -# @ woocommerce -#: i18n/states/US.php:31 -msgid "Louisiana" -msgstr "Louisiana" - -# @ woocommerce -#: i18n/states/US.php:32 -msgid "Maine" -msgstr "Maine" - -# @ woocommerce -#: i18n/states/US.php:33 -msgid "Maryland" -msgstr "Maryland" - -# @ woocommerce -#: i18n/states/US.php:34 -msgid "Massachusetts" -msgstr "Massachusetts" - -# @ woocommerce -#: i18n/states/US.php:35 -msgid "Michigan" -msgstr "Michigan" - -# @ woocommerce -#: i18n/states/US.php:36 -msgid "Minnesota" -msgstr "Minnesota" - -# @ woocommerce -#: i18n/states/US.php:37 -msgid "Mississippi" -msgstr "Mississippi" - -# @ woocommerce -#: i18n/states/US.php:38 -msgid "Missouri" -msgstr "Missouri" - -# @ woocommerce -#: i18n/states/US.php:39 -msgid "Montana" -msgstr "Montana" - -# @ woocommerce -#: i18n/states/US.php:40 -msgid "Nebraska" -msgstr "Nebraska" - -# @ woocommerce -#: i18n/states/US.php:41 -msgid "Nevada" -msgstr "Nevada" - -# @ woocommerce -#: i18n/states/US.php:42 -msgid "New Hampshire" -msgstr "New Hampshire" - -# @ woocommerce -#: i18n/states/US.php:43 -msgid "New Jersey" -msgstr "New Jersey" - -# @ woocommerce -#: i18n/states/US.php:44 -msgid "New Mexico" -msgstr "New Mexico" - -# @ woocommerce -#: i18n/states/US.php:45 -msgid "New York" -msgstr "New York" - -# @ woocommerce -#: i18n/states/US.php:46 -msgid "North Carolina" -msgstr "North Carolina" - -# @ woocommerce -#: i18n/states/US.php:47 -msgid "North Dakota" -msgstr "North Dakota" - -# @ woocommerce -#: i18n/states/US.php:48 -msgid "Ohio" -msgstr "Ohio" - -# @ woocommerce -#: i18n/states/US.php:49 -msgid "Oklahoma" -msgstr "Oklahoma" - -# @ woocommerce -#: i18n/states/US.php:50 -msgid "Oregon" -msgstr "Oregon" - -# @ woocommerce -#: i18n/states/US.php:51 -msgid "Pennsylvania" -msgstr "Pennsylvania" - -# @ woocommerce -#: i18n/states/US.php:52 -msgid "Rhode Island" -msgstr "Rhode Island" - -# @ woocommerce -#: i18n/states/US.php:53 -msgid "South Carolina" -msgstr "South Carolina" - -# @ woocommerce -#: i18n/states/US.php:54 -msgid "South Dakota" -msgstr "South Dakota" - -# @ woocommerce -#: i18n/states/US.php:55 -msgid "Tennessee" -msgstr "Tennessee" - -# @ woocommerce -#: i18n/states/US.php:56 -msgid "Texas" -msgstr "Texas" - -# @ woocommerce -#: i18n/states/US.php:57 -msgid "Utah" -msgstr "Utah" - -# @ woocommerce -#: i18n/states/US.php:58 -msgid "Vermont" -msgstr "Vermont" - -# @ woocommerce -#: i18n/states/US.php:59 -msgid "Virginia" -msgstr "Virginia" - -# @ woocommerce -#: i18n/states/US.php:60 -msgid "Washington" -msgstr "Washington" - -# @ woocommerce -#: i18n/states/US.php:61 -msgid "West Virginia" -msgstr "West Virginia" - -# @ woocommerce -#: i18n/states/US.php:62 -msgid "Wisconsin" -msgstr "Wisconsin" - -# @ woocommerce -#: i18n/states/US.php:63 -msgid "Wyoming" -msgstr "Wyoming" - -# @ woocommerce -#: i18n/states/US.php:64 -msgid "Armed Forces (AA)" -msgstr "Fuerzas Armadas (AA)" - -# @ woocommerce -#: i18n/states/US.php:65 -msgid "Armed Forces (AE)" -msgstr "Fuerzas Armadas US" - -# @ woocommerce -#: i18n/states/US.php:66 -msgid "Armed Forces (AP)" -msgstr "Fuerzas Armadas US" - -# @ woocommerce -#: i18n/states/US.php:67 -msgid "American Samoa" -msgstr "American Samoa" - -# @ woocommerce -#: i18n/states/US.php:68 -msgid "Guam" -msgstr "Guam" - -# @ woocommerce -#: i18n/states/US.php:69 -msgid "Northern Mariana Islands" -msgstr "Islas Marianas del Norte" - -# @ woocommerce -#: i18n/states/US.php:70 -msgid "Puerto Rico" -msgstr "Puerto Rico" - -# @ woocommerce -#: i18n/states/US.php:71 -msgid "US Minor Outlying Islands" -msgstr "Islas Ultramarinas Menores de Estados Unidos" - -# @ woocommerce -#: i18n/states/US.php:72 -msgid "US Virgin Islands" -msgstr "Islas Vírgenes de los Estados Unidos" - -# @ woocommerce -#: i18n/states/ZA.php:13 -msgid "Eastern Cape" -msgstr "Cabo del Este" - -# @ woocommerce -#: i18n/states/ZA.php:14 -msgid "Free State" -msgstr "Estado Libre" - -# @ woocommerce -#: i18n/states/ZA.php:15 -msgid "Gauteng" -msgstr "Gauteng" - -# @ woocommerce -#: i18n/states/ZA.php:16 -msgid "KwaZulu-Natal" -msgstr "KwaZulu-Natal" - -# @ woocommerce -#: i18n/states/ZA.php:17 -msgid "Limpopo" -msgstr "Limpopo" - -# @ woocommerce -#: i18n/states/ZA.php:18 -msgid "Mpumalanga" -msgstr "Mpumalanga" - -# @ woocommerce -#: i18n/states/ZA.php:19 -msgid "Northern Cape" -msgstr "Provincia Septentrional del Cabo" - -# @ woocommerce -#: i18n/states/ZA.php:20 -msgid "North West" -msgstr "Noroeste" - -# @ woocommerce -#: i18n/states/ZA.php:21 -msgid "Western Cape" -msgstr "Provincia Occidental del Cabo" - -# @ woocommerce -#: i18n/strings.php:16 -msgid "pending" -msgstr "pendiente" - -# @ woocommerce -#: i18n/strings.php:17 -msgid "failed" -msgstr "falló" - -# @ woocommerce -#: i18n/strings.php:18 -msgid "on-hold" -msgstr "en espera" - -# @ woocommerce -#: i18n/strings.php:19 -msgid "processing" -msgstr "procesando" - -# @ woocommerce -#: i18n/strings.php:20 -msgid "completed" -msgstr "completado" - -# @ woocommerce -#: i18n/strings.php:21 -msgid "refunded" -msgstr "devuelto" - -# @ woocommerce -#: i18n/strings.php:22 -msgid "cancelled" -msgstr "cancelado" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:552 -#: includes/emails/class-wc-email-customer-completed-order.php:137 -#: includes/emails/class-wc-email-new-order.php:117 -#: includes/gateways/bacs/class-wc-gateway-bacs.php:66 -#: includes/gateways/cheque/class-wc-gateway-cheque.php:52 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:130 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:121 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:76 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:75 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:50 -msgid "Enable/Disable" -msgstr "Habilitar/Deshabilitar" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:554 -#: includes/emails/class-wc-email-customer-completed-order.php:139 -#: includes/emails/class-wc-email-new-order.php:119 -msgid "Enable this email notification" -msgstr "Habilitar esta notificación por correo electrónico" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:558 -#: includes/emails/class-wc-email-customer-invoice.php:143 -msgid "Email subject" -msgstr "Asunto de Correo Electrónico" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:560 -#: includes/abstracts/abstract-wc-email.php:567 -#: includes/emails/class-wc-email-customer-completed-order.php:145 -#: includes/emails/class-wc-email-customer-completed-order.php:152 -#: includes/emails/class-wc-email-customer-completed-order.php:159 -#: includes/emails/class-wc-email-customer-completed-order.php:166 -#: includes/emails/class-wc-email-customer-invoice.php:145 -#: includes/emails/class-wc-email-customer-invoice.php:152 -#: includes/emails/class-wc-email-customer-invoice.php:159 -#: includes/emails/class-wc-email-customer-invoice.php:166 -msgid "Defaults to %s" -msgstr "Predeterminado %s" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:565 -#: includes/emails/class-wc-email-customer-invoice.php:150 -msgid "Email heading" -msgstr "Encabezado de Correo Electrónico" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:572 -#: includes/emails/class-wc-email-customer-completed-order.php:171 -#: includes/emails/class-wc-email-customer-invoice.php:171 -#: includes/emails/class-wc-email-new-order.php:144 -msgid "Email type" -msgstr "Tipo de Correo Electrónico" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:574 -#: includes/emails/class-wc-email-customer-completed-order.php:173 -#: includes/emails/class-wc-email-customer-invoice.php:173 -#: includes/emails/class-wc-email-new-order.php:146 -msgid "Choose which format of email to send." -msgstr "Elije el formato en el que se enviarán los mensajes." - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:578 -#: includes/emails/class-wc-email-customer-completed-order.php:177 -#: includes/emails/class-wc-email-customer-invoice.php:177 -#: includes/emails/class-wc-email-new-order.php:150 -msgid "Plain text" -msgstr "Texto sin formato" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:579 -#: includes/emails/class-wc-email-customer-completed-order.php:178 -#: includes/emails/class-wc-email-customer-invoice.php:178 -#: includes/emails/class-wc-email-new-order.php:151 -msgid "HTML" -msgstr "HTML" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:580 -#: includes/emails/class-wc-email-customer-completed-order.php:179 -#: includes/emails/class-wc-email-customer-invoice.php:179 -#: includes/emails/class-wc-email-new-order.php:152 -msgid "Multipart" -msgstr "Múltiples partes" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:616 -#: includes/abstracts/abstract-wc-email.php:637 -msgid "Could not write to template file." -msgstr "No se pudo escribir en el archivo de plantilla." - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:664 -msgid "Template file copied to theme." -msgstr "Archivo de plantilla copiado en el tema." - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:673 -msgid "Template file deleted from theme." -msgstr "Archivo de plantilla eliminado del tema." - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:681 -#: includes/abstracts/abstract-wc-integration.php:30 -#: includes/abstracts/abstract-wc-settings-api.php:39 woocommerce.php:180 -msgid "Settings" -msgstr "Configuración" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:693 -msgid "HTML template" -msgstr "Plantilla HTML" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:694 -msgid "Plain text template" -msgstr "Plantilla de texto sin formato" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:713 -msgid "Delete template file" -msgstr "Eliminar archivo de plantilla" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:716 -msgid "" -"This template has been overridden by your theme and can be found in: " -"%s." -msgstr "" -"Esta plantilla ha sido sobreescrita por tu tema y puede encontrarse en: " -"%s." - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:731 -msgid "Copy file to theme" -msgstr "Copiar archivo al tema" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:734 -msgid "" -"To override and edit this email template copy %s to your theme " -"folder: %s." -msgstr "" -"Para sobreescribir y editar esta plantilla de correo electrónico, copia " -"%s a la carpeta de tu tema: %s." - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:745 -msgid "File was not found." -msgstr "El archivo no fué encontrado." - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:770 -msgid "View template" -msgstr "Ver plantilla" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:771 -msgid "Hide template" -msgstr "Ocultar plantilla " - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:782 -msgid "Are you sure you want to delete this template file?" -msgstr "¿Estás seguro que deseas eliminar este archivo de plantilla?" - -#: includes/abstracts/abstract-wc-payment-gateway.php:201 -msgid "Card Number" -msgstr "Número de Tarjeta" - -#: includes/abstracts/abstract-wc-payment-gateway.php:205 -msgid "Expiry (MM/YY)" -msgstr "Expiración (MM/AA)" - -# @ woocommerce -#: includes/abstracts/abstract-wc-payment-gateway.php:209 -msgid "Card Code" -msgstr "Código de Tarjeta" - -# @ woocommerce -#: includes/abstracts/abstract-wc-product.php:33 -msgid "" -"The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class " -"directly." -msgstr "" -"La clase de WC_Product ahora es abstracta. Utiliza " -"get_product() para iniciar una instancia de un producto en vez " -"de llamar la clase directamente." - -# @ woocommerce -#: includes/abstracts/abstract-wc-product.php:456 -#: includes/class-wc-product-simple.php:48 -#: includes/class-wc-product-variation.php:211 -#: includes/integrations/google-analytics/class-wc-google-analytics.php:274 -#: includes/integrations/google-analytics/class-wc-google-analytics.php:294 -msgid "Add to cart" -msgstr "Añadir al carrito" - -# @ woocommerce -#: includes/abstracts/abstract-wc-product.php:466 -msgid "Read more" -msgstr "Leer más" - -# @ woocommerce -#: includes/abstracts/abstract-wc-product.php:572 -#: includes/abstracts/abstract-wc-product.php:577 -#: includes/abstracts/abstract-wc-product.php:596 -msgid "In stock" -msgstr "En existencia" - -# @ woocommerce -#: includes/abstracts/abstract-wc-product.php:577 -msgid "Only %s left in stock" -msgstr "Sólo quedan %s en existencia" - -# @ woocommerce -#: includes/abstracts/abstract-wc-product.php:580 -msgid "%s in stock" -msgstr "%s en existencia" - -# @ woocommerce -#: includes/abstracts/abstract-wc-product.php:587 -msgid "(backorders allowed)" -msgstr "(pedidos pendientes permitidos)" - -# @ woocommerce -#: includes/abstracts/abstract-wc-product.php:593 -#: includes/abstracts/abstract-wc-product.php:606 templates/cart/cart.php:74 -msgid "Available on backorder" -msgstr "Disponible para reservar" - -# @ woocommerce -#: includes/abstracts/abstract-wc-product.php:599 -#: includes/abstracts/abstract-wc-product.php:609 -#: includes/abstracts/abstract-wc-product.php:613 -msgid "Out of stock" -msgstr "Sin existencia" - -# @ woocommerce -#: includes/abstracts/abstract-wc-product.php:897 -#: includes/abstracts/abstract-wc-product.php:903 -#: includes/class-wc-cart.php:1864 includes/class-wc-order.php:757 -#: includes/class-wc-product-variable.php:247 -#: includes/class-wc-product-variable.php:253 -#: includes/class-wc-product-variation.php:294 -msgid "Free!" -msgstr "¡Gratis!" - -# @ woocommerce -#: includes/abstracts/abstract-wc-product.php:920 -msgctxt "min_price" -msgid "From:" -msgstr "De:" - -# @ woocommerce -#: includes/abstracts/abstract-wc-product.php:1028 -#: templates/single-product-reviews.php:28 -msgid "Rated %s out of 5" -msgstr "Calificación de %s de 5" - -# @ woocommerce -#: includes/abstracts/abstract-wc-product.php:1030 -#: templates/single-product/review.php:27 -#: templates/single-product-reviews.php:28 -msgid "out of 5" -msgstr "de 5" - -# @ woocommerce -#: includes/abstracts/abstract-wc-product.php:1342 -msgid "%s – %s" -msgstr "%s – %s" - -# @ woocommerce -#: includes/class-wc-cache-helper.php:99 -msgid "" -"In order for database caching to work with WooCommerce you " -"must add _wc_session_ to the \"Ignored Query Strings\" option " -"in W3 Total Cache settings here." -msgstr "" -"Para que el cache de base de datos funcione con " -"WooCommerce, debes agregar _wc_session_ a la opción de " -"\"Ignored Query Strings\" en la configuración de W3 Total Cache aquí." - -#: includes/class-wc-cart.php:475 -msgid "An item which is no longer available was removed from your cart." -msgstr "Un artículo que ya no está disponible fue eliminado de tu carrito." - -# @ woocommerce -#: includes/class-wc-cart.php:509 includes/class-wc-cart.php:528 -#: includes/class-wc-cart.php:537 -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -"Lo sentimos, no tenemos suficientes \"%s\" en existencia para completar tu " -"pedido (%s en stock). Por favor, edita tu carrito y vuelve a intentarlo. Nos " -"disculpamos por cualquier inconveniente causado." - -# @ woocommerce -#: includes/class-wc-cart.php:572 -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfill your order right " -"now. Please try again in %d minutes or edit your cart and try again. We " -"apologise for any inconvenience caused." -msgstr "" -"Lo sentimos, no tenemos suficientes \"%s\" en existencia para completar tu " -"pedido ahora. Por favor inténtalo de nuevo en %d minutos o edite su carrito " -"e inténtalo de nuevo. Nos disculpamos por cualquier inconveniente causado." - -# @ woocommerce -#: includes/class-wc-cart.php:582 -msgid "" -"Sorry, \"%s\" is not in stock. Please edit your cart and try again. We " -"apologise for any inconvenience caused." -msgstr "" -"Lo sentimos, \"%s\" no está en existencia. Por favor, edita tu carrito y " -"vuelve a intentarlo. Nos disculpamos por cualquier inconveniente causado." - -# @ woocommerce -#: includes/class-wc-cart.php:883 -msgid "Sorry, "%s" cannot be purchased." -msgstr "Lo sentimos, "%s" no puede ser comprado." - -# @ woocommerce -#: includes/class-wc-cart.php:890 -msgid "" -"You cannot add "%s" to the cart because the product is out of " -"stock." -msgstr "" -"No se puede agregar "%s" al carrito de compras porque este " -"producto está agotado." - -# @ woocommerce -#: includes/class-wc-cart.php:895 -msgid "" -"You cannot add that amount of "%s" to the cart because there is " -"not enough stock (%s remaining)." -msgstr "" -"No se puede agragar esa cantidad de "%s" al carrito por que no hay " -"suficientes en existencia (%s restantes). " - -# @ woocommerce -#: includes/class-wc-cart.php:907 includes/class-wc-cart.php:921 -#: includes/class-wc-cart.php:929 includes/class-wc-frontend-scripts.php:136 -#: includes/wc-cart-functions.php:99 templates/cart/mini-cart.php:64 -msgid "View Cart →" -msgstr "Ver Carrito →" - -# @ woocommerce -#: includes/class-wc-cart.php:907 -msgid "You already have this item in your cart." -msgstr "Ya tienes este producto en tu carrito." - -# @ woocommerce -#: includes/class-wc-cart.php:921 includes/class-wc-cart.php:929 -msgid "" -"%s You cannot add that amount to the " -"cart — we have %s in stock and you already have %s in your cart." -msgstr "" -"%s No puedes agregar esa cantidad al " -"carrito — tenemos %s disponibles y tu ya tienes %s en tu carrito." - -#: includes/class-wc-checkout.php:64 includes/class-wc-checkout.php:73 -#: includes/class-wc-emails.php:67 includes/class-wc-emails.php:76 -#: includes/class-wc-payment-gateways.php:46 -#: includes/class-wc-payment-gateways.php:55 includes/class-wc-shipping.php:64 -#: includes/class-wc-shipping.php:73 woocommerce.php:100 woocommerce.php:109 -msgid "Cheatin’ huh?" -msgstr "Haciendo trampa?" - -# @ woocommerce -#: includes/class-wc-checkout.php:99 -msgid "Account username" -msgstr "Nombre de ususario" - -# @ woocommerce -#: includes/class-wc-checkout.php:101 -msgctxt "placeholder" -msgid "Username" -msgstr "Usuario" - -# @ woocommerce -#: includes/class-wc-checkout.php:108 -msgid "Account password" -msgstr "Contraseña de la cuenta" - -# @ woocommerce -#: includes/class-wc-checkout.php:110 -msgctxt "placeholder" -msgid "Password" -msgstr "Contraseña" - -# @ woocommerce -#: includes/class-wc-checkout.php:118 -msgid "Order Notes" -msgstr "Notas del pedido" - -# @ woocommerce -#: includes/class-wc-checkout.php:119 -msgctxt "placeholder" -msgid "Notes about your order, e.g. special notes for delivery." -msgstr "Notas sobre tu pedido, ej. notas especiales para el envío." - -# @ woocommerce -#: includes/class-wc-checkout.php:178 -msgid "Order – %s" -msgstr "Orden – %s" - -# @ woocommerce -#: includes/class-wc-checkout.php:178 -msgctxt "Order date parsed by strftime" -msgid "%b %d, %Y @ %I:%M %p" -msgstr "%b %d, %Y @ %I:%M %p" - -# @ woocommerce -#: includes/class-wc-checkout.php:286 -msgid "Backordered" -msgstr "Pedido pendiente" - -# @ woocommerce -#: includes/class-wc-checkout.php:410 -msgid "" -"Sorry, your session has expired. Return to homepage →" -msgstr "" -"Lo sentimos, tu sesíón ha expirado. Vuelve a la página " -"inicial →" - -# @ woocommerce -#: includes/class-wc-checkout.php:482 includes/class-wc-form-handler.php:81 -msgid "is a required field." -msgstr "es un campo requerido." - -# @ woocommerce -#: includes/class-wc-checkout.php:494 includes/class-wc-form-handler.php:91 -#: includes/shortcodes/class-wc-shortcode-cart.php:52 -msgid "Please enter a valid postcode/ZIP." -msgstr "Por favor, introduce un código postal válido." - -# @ woocommerce -#: includes/class-wc-checkout.php:503 includes/class-wc-form-handler.php:100 -msgid "is not a valid phone number." -msgstr "no es un número telefónico válido." - -# @ woocommerce -#: includes/class-wc-checkout.php:509 includes/class-wc-form-handler.php:106 -msgid "is not a valid email address." -msgstr "no es una dirección de email válida" - -# @ woocommerce -#: includes/class-wc-checkout.php:524 -msgid "is not valid. Please enter one of the following:" -msgstr "no es valido. Por favor ingresa uno de los siguientes:" - -# @ woocommerce -#: includes/class-wc-checkout.php:569 -msgid "You must accept our Terms & Conditions." -msgstr "Tienes que aceptar nuestros Términos & Condiciones." - -#: includes/class-wc-checkout.php:574 -msgid "" -"Unfortunately we do not ship to %s. Please enter an " -"alternative shipping address." -msgstr "" -"Lamentablemente no enviamos a %s. Por favor ingrese una " -"dirección de entrega alternativa." - -# @ woocommerce -#: includes/class-wc-checkout.php:582 -msgid "Invalid shipping method." -msgstr "Método de envío no válido." - -# @ woocommerce -#: includes/class-wc-checkout.php:595 -msgid "Invalid payment method." -msgstr "Método de pago no válido." - -# @ woocommerce -#: includes/class-wc-comments.php:111 -msgid "You have taken too long. Please go back and refresh the page." -msgstr "Ha tardado demasiado tiempo. Vuelva atrás y actualice la página." - -# @ woocommerce -#: includes/class-wc-comments.php:114 -msgid "Please rate the product." -msgstr "Por favor califique el producto." - -# @ woocommerce -#: includes/class-wc-countries.php:37 -msgid "Afghanistan" -msgstr "Afghanistan" - -# @ woocommerce -#: includes/class-wc-countries.php:38 -msgid "Åland Islands" -msgstr "Åland Islands" - -# @ woocommerce -#: includes/class-wc-countries.php:39 -msgid "Albania" -msgstr "Albania" - -# @ woocommerce -#: includes/class-wc-countries.php:40 -msgid "Algeria" -msgstr "Algeria" - -# @ woocommerce -#: includes/class-wc-countries.php:41 -msgid "Andorra" -msgstr "Andorra" - -# @ woocommerce -#: includes/class-wc-countries.php:42 -msgid "Angola" -msgstr "Angola" - -# @ woocommerce -#: includes/class-wc-countries.php:43 -msgid "Anguilla" -msgstr "Anguilla" - -# @ woocommerce -#: includes/class-wc-countries.php:44 -msgid "Antarctica" -msgstr "Antarctica" - -# @ woocommerce -#: includes/class-wc-countries.php:45 -msgid "Antigua and Barbuda" -msgstr "Antigua and Barbuda" - -# @ woocommerce -#: includes/class-wc-countries.php:46 -msgid "Argentina" -msgstr "Argentina" - -# @ woocommerce -#: includes/class-wc-countries.php:47 -msgid "Armenia" -msgstr "Armenia" - -# @ woocommerce -#: includes/class-wc-countries.php:48 -msgid "Aruba" -msgstr "Aruba" - -# @ woocommerce -#: includes/class-wc-countries.php:49 -msgid "Australia" -msgstr "Australia" - -# @ woocommerce -#: includes/class-wc-countries.php:50 -msgid "Austria" -msgstr "Austria" - -# @ woocommerce -#: includes/class-wc-countries.php:51 -msgid "Azerbaijan" -msgstr "Azerbaijan" - -# @ woocommerce -#: includes/class-wc-countries.php:52 -msgid "Bahamas" -msgstr "Bahamas" - -# @ woocommerce -#: includes/class-wc-countries.php:53 -msgid "Bahrain" -msgstr "Bahrain" - -# @ woocommerce -#: includes/class-wc-countries.php:54 -msgid "Bangladesh" -msgstr "Bangladesh" - -# @ woocommerce -#: includes/class-wc-countries.php:55 -msgid "Barbados" -msgstr "Barbados" - -# @ woocommerce -#: includes/class-wc-countries.php:56 -msgid "Belarus" -msgstr "Belarus" - -# @ woocommerce -#: includes/class-wc-countries.php:57 -msgid "Belgium" -msgstr "Belgium" - -# @ woocommerce -#: includes/class-wc-countries.php:58 -msgid "Belau" -msgstr "Belau" - -# @ woocommerce -#: includes/class-wc-countries.php:59 -msgid "Belize" -msgstr "Belize" - -# @ woocommerce -#: includes/class-wc-countries.php:60 -msgid "Benin" -msgstr "Benin" - -# @ woocommerce -#: includes/class-wc-countries.php:61 -msgid "Bermuda" -msgstr "Bermuda" - -# @ woocommerce -#: includes/class-wc-countries.php:62 -msgid "Bhutan" -msgstr "Bhutan" - -# @ woocommerce -#: includes/class-wc-countries.php:63 -msgid "Bolivia" -msgstr "Bolivia" - -# @ woocommerce -#: includes/class-wc-countries.php:64 -msgid "Bonaire, Saint Eustatius and Saba" -msgstr "Bonaire, San Eustaquio y Saba" - -# @ woocommerce -#: includes/class-wc-countries.php:65 -msgid "Bosnia and Herzegovina" -msgstr "Bosnia and Herzegovina" - -# @ woocommerce -#: includes/class-wc-countries.php:66 -msgid "Botswana" -msgstr "Botswana" - -# @ woocommerce -#: includes/class-wc-countries.php:67 -msgid "Bouvet Island" -msgstr "Isla Bouvet" - -# @ woocommerce -#: includes/class-wc-countries.php:68 -msgid "Brazil" -msgstr "Brasil" - -# @ woocommerce -#: includes/class-wc-countries.php:69 -msgid "British Indian Ocean Territory" -msgstr "Territorio Británico del Océano Índico" - -# @ woocommerce -#: includes/class-wc-countries.php:70 -msgid "British Virgin Islands" -msgstr "Islas Vírgenes Británicas" - -# @ woocommerce -#: includes/class-wc-countries.php:71 -msgid "Brunei" -msgstr "Brunéi" - -# @ woocommerce -#: includes/class-wc-countries.php:72 -msgid "Bulgaria" -msgstr "Bulgaria" - -# @ woocommerce -#: includes/class-wc-countries.php:73 -msgid "Burkina Faso" -msgstr "Burkina Faso" - -# @ woocommerce -#: includes/class-wc-countries.php:74 -msgid "Burundi" -msgstr "Burundi" - -# @ woocommerce -#: includes/class-wc-countries.php:75 -msgid "Cambodia" -msgstr "Cambodia" - -# @ woocommerce -#: includes/class-wc-countries.php:76 -msgid "Cameroon" -msgstr "Cameroon" - -# @ woocommerce -#: includes/class-wc-countries.php:77 -msgid "Canada" -msgstr "Canadá" - -# @ woocommerce -#: includes/class-wc-countries.php:78 -msgid "Cape Verde" -msgstr "Cape Verde" - -# @ woocommerce -#: includes/class-wc-countries.php:79 -msgid "Cayman Islands" -msgstr "Islas Caimán" - -# @ woocommerce -#: includes/class-wc-countries.php:80 -msgid "Central African Republic" -msgstr "República Centroafricana" - -# @ woocommerce -#: includes/class-wc-countries.php:81 -msgid "Chad" -msgstr "Chad" - -# @ woocommerce -#: includes/class-wc-countries.php:82 -msgid "Chile" -msgstr "Chile" - -# @ woocommerce -#: includes/class-wc-countries.php:83 -msgid "China" -msgstr "China" - -# @ woocommerce -#: includes/class-wc-countries.php:84 -msgid "Christmas Island" -msgstr "Isla de Navidad" - -# @ woocommerce -#: includes/class-wc-countries.php:85 -msgid "Cocos (Keeling) Islands" -msgstr "Islas Cocos" - -# @ woocommerce -#: includes/class-wc-countries.php:86 -msgid "Colombia" -msgstr "Colombia" - -# @ woocommerce -#: includes/class-wc-countries.php:87 -msgid "Comoros" -msgstr "Comoras" - -# @ woocommerce -#: includes/class-wc-countries.php:88 -msgid "Congo (Brazzaville)" -msgstr "Congo (Brazzaville)" - -# @ woocommerce -#: includes/class-wc-countries.php:89 -msgid "Congo (Kinshasa)" -msgstr "Congo (Kinshasa)" - -# @ woocommerce -#: includes/class-wc-countries.php:90 -msgid "Cook Islands" -msgstr "Islas Cook" - -# @ woocommerce -#: includes/class-wc-countries.php:91 -msgid "Costa Rica" -msgstr "Costa Rica" - -# @ woocommerce -#: includes/class-wc-countries.php:92 -msgid "Croatia" -msgstr "Croacia" - -# @ woocommerce -#: includes/class-wc-countries.php:93 -msgid "Cuba" -msgstr "Cuba" - -# @ woocommerce -#: includes/class-wc-countries.php:94 -msgid "CuraÇao" -msgstr "CuraÇao" - -# @ woocommerce -#: includes/class-wc-countries.php:95 -msgid "Cyprus" -msgstr "Chipre" - -# @ woocommerce -#: includes/class-wc-countries.php:96 -msgid "Czech Republic" -msgstr "República Checa" - -# @ woocommerce -#: includes/class-wc-countries.php:97 -msgid "Denmark" -msgstr "Dinamarca" - -# @ woocommerce -#: includes/class-wc-countries.php:98 -msgid "Djibouti" -msgstr "Djibouti" - -# @ woocommerce -#: includes/class-wc-countries.php:99 -msgid "Dominica" -msgstr "Dominica" - -# @ woocommerce -#: includes/class-wc-countries.php:100 -msgid "Dominican Republic" -msgstr "República Dominicana" - -# @ woocommerce -#: includes/class-wc-countries.php:101 -msgid "Ecuador" -msgstr "Ecuador" - -# @ woocommerce -#: includes/class-wc-countries.php:102 -msgid "Egypt" -msgstr "Egipto" - -# @ woocommerce -#: includes/class-wc-countries.php:103 -msgid "El Salvador" -msgstr "El Salvador" - -# @ woocommerce -#: includes/class-wc-countries.php:104 -msgid "Equatorial Guinea" -msgstr "Guinea Ecuatorial" - -# @ woocommerce -#: includes/class-wc-countries.php:105 -msgid "Eritrea" -msgstr "Eritrea" - -# @ woocommerce -#: includes/class-wc-countries.php:106 -msgid "Estonia" -msgstr "Estonia" - -# @ woocommerce -#: includes/class-wc-countries.php:107 -msgid "Ethiopia" -msgstr "Etiopía" - -# @ woocommerce -#: includes/class-wc-countries.php:108 -msgid "Falkland Islands" -msgstr "islas Malvinas" - -# @ woocommerce -#: includes/class-wc-countries.php:109 -msgid "Faroe Islands" -msgstr "Islas Feroe" - -# @ woocommerce -#: includes/class-wc-countries.php:110 -msgid "Fiji" -msgstr "Fiyi" - -# @ woocommerce -#: includes/class-wc-countries.php:111 -msgid "Finland" -msgstr "Finlandia" - -# @ woocommerce -#: includes/class-wc-countries.php:112 -msgid "France" -msgstr "Francia" - -# @ woocommerce -#: includes/class-wc-countries.php:113 -msgid "French Guiana" -msgstr "Guayana Francesa" - -# @ woocommerce -#: includes/class-wc-countries.php:114 -msgid "French Polynesia" -msgstr "Polinesia Francesa" - -# @ woocommerce -#: includes/class-wc-countries.php:115 -msgid "French Southern Territories" -msgstr "Territorios Francéses del Sur" - -# @ woocommerce -#: includes/class-wc-countries.php:116 -msgid "Gabon" -msgstr "Gabón" - -# @ woocommerce -#: includes/class-wc-countries.php:117 -msgid "Gambia" -msgstr "Gambia" - -# @ woocommerce -#: includes/class-wc-countries.php:119 -msgid "Germany" -msgstr "Alemania" - -# @ woocommerce -#: includes/class-wc-countries.php:120 -msgid "Ghana" -msgstr "Ghana" - -# @ woocommerce -#: includes/class-wc-countries.php:121 -msgid "Gibraltar" -msgstr "Gibraltar" - -# @ woocommerce -#: includes/class-wc-countries.php:122 -msgid "Greece" -msgstr "Grecia" - -# @ woocommerce -#: includes/class-wc-countries.php:123 -msgid "Greenland" -msgstr "Groenlandia" - -# @ woocommerce -#: includes/class-wc-countries.php:124 -msgid "Grenada" -msgstr "Granada" - -# @ woocommerce -#: includes/class-wc-countries.php:125 -msgid "Guadeloupe" -msgstr "Guadalupe" - -# @ woocommerce -#: includes/class-wc-countries.php:126 -msgid "Guatemala" -msgstr "Guatemala" - -# @ woocommerce -#: includes/class-wc-countries.php:127 -msgid "Guernsey" -msgstr "Guernsey" - -# @ woocommerce -#: includes/class-wc-countries.php:128 -msgid "Guinea" -msgstr "Guinea" - -# @ woocommerce -#: includes/class-wc-countries.php:129 -msgid "Guinea-Bissau" -msgstr "Guinea-Bisáu" - -# @ woocommerce -#: includes/class-wc-countries.php:130 -msgid "Guyana" -msgstr "Guyana" - -# @ woocommerce -#: includes/class-wc-countries.php:131 -msgid "Haiti" -msgstr "Haití" - -# @ woocommerce -#: includes/class-wc-countries.php:132 -msgid "Heard Island and McDonald Islands" -msgstr "Islas Heard y McDonald" - -# @ woocommerce -#: includes/class-wc-countries.php:133 -msgid "Honduras" -msgstr "Honduras" - -# @ woocommerce -#: includes/class-wc-countries.php:134 -msgid "Hong Kong" -msgstr "Hong Kong" - -# @ woocommerce -#: includes/class-wc-countries.php:135 -msgid "Hungary" -msgstr "Hungría" - -# @ woocommerce -#: includes/class-wc-countries.php:136 -msgid "Iceland" -msgstr "Islandia" - -# @ woocommerce -#: includes/class-wc-countries.php:137 -msgid "India" -msgstr "India" - -# @ woocommerce -#: includes/class-wc-countries.php:138 -msgid "Indonesia" -msgstr "Indonesia" - -# @ woocommerce -#: includes/class-wc-countries.php:139 -msgid "Iran" -msgstr "Irán" - -# @ woocommerce -#: includes/class-wc-countries.php:140 -msgid "Iraq" -msgstr "Irak" - -# @ woocommerce -#: includes/class-wc-countries.php:141 -msgid "Republic of Ireland" -msgstr "Irlanda" - -# @ woocommerce -#: includes/class-wc-countries.php:142 -msgid "Isle of Man" -msgstr "Isla de Man" - -# @ woocommerce -#: includes/class-wc-countries.php:143 -msgid "Israel" -msgstr "Israel" - -# @ woocommerce -#: includes/class-wc-countries.php:144 -msgid "Italy" -msgstr "Italia" - -# @ woocommerce -#: includes/class-wc-countries.php:145 -msgid "Ivory Coast" -msgstr "Costa de Marfil" - -# @ woocommerce -#: includes/class-wc-countries.php:146 -msgid "Jamaica" -msgstr "Jamaica" - -# @ woocommerce -#: includes/class-wc-countries.php:147 -msgid "Japan" -msgstr "Japón" - -# @ woocommerce -#: includes/class-wc-countries.php:148 -msgid "Jersey" -msgstr "Jersey" - -# @ woocommerce -#: includes/class-wc-countries.php:149 -msgid "Jordan" -msgstr "Jordania" - -# @ woocommerce -#: includes/class-wc-countries.php:150 -msgid "Kazakhstan" -msgstr "Kazajistán" - -# @ woocommerce -#: includes/class-wc-countries.php:151 -msgid "Kenya" -msgstr "Kenia" - -# @ woocommerce -#: includes/class-wc-countries.php:152 -msgid "Kiribati" -msgstr "Kiribati" - -# @ woocommerce -#: includes/class-wc-countries.php:153 -msgid "Kuwait" -msgstr "Kuwait" - -# @ woocommerce -#: includes/class-wc-countries.php:154 -msgid "Kyrgyzstan" -msgstr "Kirguistán" - -# @ woocommerce -#: includes/class-wc-countries.php:155 -msgid "Laos" -msgstr "Laos" - -# @ woocommerce -#: includes/class-wc-countries.php:156 -msgid "Latvia" -msgstr "Letonia" - -# @ woocommerce -#: includes/class-wc-countries.php:157 -msgid "Lebanon" -msgstr "Líbano" - -# @ woocommerce -#: includes/class-wc-countries.php:158 -msgid "Lesotho" -msgstr "Lesoto" - -# @ woocommerce -#: includes/class-wc-countries.php:159 -msgid "Liberia" -msgstr "Liberia" - -# @ woocommerce -#: includes/class-wc-countries.php:160 -msgid "Libya" -msgstr "Libia" - -# @ woocommerce -#: includes/class-wc-countries.php:161 -msgid "Liechtenstein" -msgstr "Liechtenstein" - -# @ woocommerce -#: includes/class-wc-countries.php:162 -msgid "Lithuania" -msgstr "Lituania" - -# @ woocommerce -#: includes/class-wc-countries.php:163 -msgid "Luxembourg" -msgstr "Luxemburgo" - -# @ woocommerce -#: includes/class-wc-countries.php:164 -msgid "Macao S.A.R., China" -msgstr "Macao" - -# @ woocommerce -#: includes/class-wc-countries.php:165 -msgid "Macedonia" -msgstr "República de Macedonia" - -# @ woocommerce -#: includes/class-wc-countries.php:166 -msgid "Madagascar" -msgstr "Madagascar" - -# @ woocommerce -#: includes/class-wc-countries.php:167 -msgid "Malawi" -msgstr "Malaui" - -# @ woocommerce -#: includes/class-wc-countries.php:168 -msgid "Malaysia" -msgstr "Malasia" - -# @ woocommerce -#: includes/class-wc-countries.php:169 -msgid "Maldives" -msgstr "Maldivas" - -# @ woocommerce -#: includes/class-wc-countries.php:170 -msgid "Mali" -msgstr "Malí" - -# @ woocommerce -#: includes/class-wc-countries.php:171 -msgid "Malta" -msgstr "Malta" - -# @ woocommerce -#: includes/class-wc-countries.php:172 -msgid "Marshall Islands" -msgstr "Islas Marshall" - -# @ woocommerce -#: includes/class-wc-countries.php:173 -msgid "Martinique" -msgstr "Martinica" - -# @ woocommerce -#: includes/class-wc-countries.php:174 -msgid "Mauritania" -msgstr "Mauritania" - -# @ woocommerce -#: includes/class-wc-countries.php:175 -msgid "Mauritius" -msgstr "Mauricio" - -# @ woocommerce -#: includes/class-wc-countries.php:176 -msgid "Mayotte" -msgstr "Mayotte" - -# @ woocommerce -#: includes/class-wc-countries.php:177 -msgid "Mexico" -msgstr "México" - -# @ woocommerce -#: includes/class-wc-countries.php:178 -msgid "Micronesia" -msgstr "Micronesia" - -# @ woocommerce -#: includes/class-wc-countries.php:179 -msgid "Moldova" -msgstr "Moldavia" - -# @ woocommerce -#: includes/class-wc-countries.php:180 -msgid "Monaco" -msgstr "Mónaco" - -# @ woocommerce -#: includes/class-wc-countries.php:181 -msgid "Mongolia" -msgstr "Mongolia" - -# @ woocommerce -#: includes/class-wc-countries.php:182 -msgid "Montenegro" -msgstr "Montenegro" - -# @ woocommerce -#: includes/class-wc-countries.php:183 -msgid "Montserrat" -msgstr "Montserrat" - -# @ woocommerce -#: includes/class-wc-countries.php:184 -msgid "Morocco" -msgstr "Marruecos" - -# @ woocommerce -#: includes/class-wc-countries.php:185 -msgid "Mozambique" -msgstr "Mozambique" - -# @ woocommerce -#: includes/class-wc-countries.php:186 -msgid "Myanmar" -msgstr "Birmania" - -# @ woocommerce -#: includes/class-wc-countries.php:187 -msgid "Namibia" -msgstr "Namibia" - -# @ woocommerce -#: includes/class-wc-countries.php:188 -msgid "Nauru" -msgstr "Nauru" - -# @ woocommerce -#: includes/class-wc-countries.php:189 -msgid "Nepal" -msgstr "Nepal" - -# @ woocommerce -#: includes/class-wc-countries.php:190 -msgid "Netherlands" -msgstr "Países Bajos" - -# @ woocommerce -#: includes/class-wc-countries.php:191 -msgid "Netherlands Antilles" -msgstr "Antillas Neerlandesas" - -# @ woocommerce -#: includes/class-wc-countries.php:192 -msgid "New Caledonia" -msgstr "Nueva Caledonia" - -# @ woocommerce -#: includes/class-wc-countries.php:193 -msgid "New Zealand" -msgstr "Nueva Zelanda" - -# @ woocommerce -#: includes/class-wc-countries.php:194 -msgid "Nicaragua" -msgstr "Nicaragua" - -# @ woocommerce -#: includes/class-wc-countries.php:195 -msgid "Niger" -msgstr "Níger" - -# @ woocommerce -#: includes/class-wc-countries.php:196 -msgid "Nigeria" -msgstr "Nigeria" - -# @ woocommerce -#: includes/class-wc-countries.php:197 -msgid "Niue" -msgstr "Niue" - -# @ woocommerce -#: includes/class-wc-countries.php:198 -msgid "Norfolk Island" -msgstr "Isla Norfolk" - -# @ woocommerce -#: includes/class-wc-countries.php:199 -msgid "North Korea" -msgstr "Corea del Norte" - -# @ woocommerce -#: includes/class-wc-countries.php:200 -msgid "Norway" -msgstr "Noruega" - -# @ woocommerce -#: includes/class-wc-countries.php:201 -msgid "Oman" -msgstr "Omán" - -# @ woocommerce -#: includes/class-wc-countries.php:202 -msgid "Pakistan" -msgstr "Pakistán" - -# @ woocommerce -#: includes/class-wc-countries.php:203 -msgid "Palestinian Territory" -msgstr "Territorios Palestinos" - -# @ woocommerce -#: includes/class-wc-countries.php:204 -msgid "Panama" -msgstr "Panamá" - -# @ woocommerce -#: includes/class-wc-countries.php:205 -msgid "Papua New Guinea" -msgstr "Papúa Nueva Guinea" - -# @ woocommerce -#: includes/class-wc-countries.php:206 -msgid "Paraguay" -msgstr "Paraguay" - -# @ woocommerce -#: includes/class-wc-countries.php:207 -msgid "Peru" -msgstr "Perú" - -# @ woocommerce -#: includes/class-wc-countries.php:208 -msgid "Philippines" -msgstr "Filipinas" - -# @ woocommerce -#: includes/class-wc-countries.php:209 -msgid "Pitcairn" -msgstr "Islas Pitcairn" - -# @ woocommerce -#: includes/class-wc-countries.php:210 -msgid "Poland" -msgstr "Polonia" - -# @ woocommerce -#: includes/class-wc-countries.php:211 -msgid "Portugal" -msgstr "Portugal" - -# @ woocommerce -#: includes/class-wc-countries.php:212 -msgid "Qatar" -msgstr "Catar" - -# @ woocommerce -#: includes/class-wc-countries.php:213 -msgid "Reunion" -msgstr "Reunión" - -# @ woocommerce -#: includes/class-wc-countries.php:214 -msgid "Romania" -msgstr "Rumania" - -# @ woocommerce -#: includes/class-wc-countries.php:215 -msgid "Russia" -msgstr "Rusia" - -# @ woocommerce -#: includes/class-wc-countries.php:216 -msgid "Rwanda" -msgstr "Ruanda" - -# @ woocommerce -#: includes/class-wc-countries.php:217 -msgid "Saint Barthélemy" -msgstr "San Bartolomé" - -# @ woocommerce -#: includes/class-wc-countries.php:218 -msgid "Saint Helena" -msgstr "Isla Santa Elena" - -# @ woocommerce -#: includes/class-wc-countries.php:219 -msgid "Saint Kitts and Nevis" -msgstr "San Cristóbal y Nieves" - -# @ woocommerce -#: includes/class-wc-countries.php:220 -msgid "Saint Lucia" -msgstr "Santa Lucía" - -# @ woocommerce -#: includes/class-wc-countries.php:221 -msgid "Saint Martin (French part)" -msgstr "San Martín (parte de Francia)" - -# @ woocommerce -#: includes/class-wc-countries.php:222 -msgid "Saint Martin (Dutch part)" -msgstr "San Martín (parte de Holanda)" - -# @ woocommerce -#: includes/class-wc-countries.php:223 -msgid "Saint Pierre and Miquelon" -msgstr "San Pedro y Miquelón" - -# @ woocommerce -#: includes/class-wc-countries.php:224 -msgid "Saint Vincent and the Grenadines" -msgstr "San Vicente y las Granadinas" - -# @ woocommerce -#: includes/class-wc-countries.php:225 -msgid "San Marino" -msgstr "San Marino" - -# @ woocommerce -#: includes/class-wc-countries.php:226 -msgid "São Tomé and Príncipe" -msgstr "Santo Tomé y Príncipe" - -# @ woocommerce -#: includes/class-wc-countries.php:227 -msgid "Saudi Arabia" -msgstr "Arabia Saudita" - -# @ woocommerce -#: includes/class-wc-countries.php:228 -msgid "Senegal" -msgstr "Senegal" - -# @ woocommerce -#: includes/class-wc-countries.php:229 -msgid "Serbia" -msgstr "Serbia" - -# @ woocommerce -#: includes/class-wc-countries.php:230 -msgid "Seychelles" -msgstr "Seychelles" - -# @ woocommerce -#: includes/class-wc-countries.php:231 -msgid "Sierra Leone" -msgstr "Sierra Leona" - -# @ woocommerce -#: includes/class-wc-countries.php:232 -msgid "Singapore" -msgstr "Singapur" - -# @ woocommerce -#: includes/class-wc-countries.php:233 -msgid "Slovakia" -msgstr "Eslovaquia" - -# @ woocommerce -#: includes/class-wc-countries.php:234 -msgid "Slovenia" -msgstr "Eslovenia" - -# @ woocommerce -#: includes/class-wc-countries.php:235 -msgid "Solomon Islands" -msgstr "Islas Salomón" - -# @ woocommerce -#: includes/class-wc-countries.php:236 -msgid "Somalia" -msgstr "Somalia" - -# @ woocommerce -#: includes/class-wc-countries.php:237 -msgid "South Africa" -msgstr "Sudáfrica" - -# @ woocommerce -#: includes/class-wc-countries.php:238 -msgid "South Georgia/Sandwich Islands" -msgstr "Islas Georgias y Sandwich del Sur" - -# @ woocommerce -#: includes/class-wc-countries.php:239 -msgid "South Korea" -msgstr "Corea del Sur" - -# @ woocommerce -#: includes/class-wc-countries.php:240 -msgid "South Sudan" -msgstr "Sudán del Sur" - -# @ woocommerce -#: includes/class-wc-countries.php:241 -msgid "Spain" -msgstr "España" - -# @ woocommerce -#: includes/class-wc-countries.php:242 -msgid "Sri Lanka" -msgstr "Sri Lanka" - -# @ woocommerce -#: includes/class-wc-countries.php:243 -msgid "Sudan" -msgstr "Sudán" - -# @ woocommerce -#: includes/class-wc-countries.php:244 -msgid "Suriname" -msgstr "Surinam" - -# @ woocommerce -#: includes/class-wc-countries.php:245 -msgid "Svalbard and Jan Mayen" -msgstr "Svalbard y Jan Mayen" - -# @ woocommerce -#: includes/class-wc-countries.php:246 -msgid "Swaziland" -msgstr "Suazilandia" - -# @ woocommerce -#: includes/class-wc-countries.php:247 -msgid "Sweden" -msgstr "Suecia" - -# @ woocommerce -#: includes/class-wc-countries.php:248 -msgid "Switzerland" -msgstr "Suiza" - -# @ woocommerce -#: includes/class-wc-countries.php:249 -msgid "Syria" -msgstr "Siria" - -# @ woocommerce -#: includes/class-wc-countries.php:250 -msgid "Taiwan" -msgstr "Taiwan" - -# @ woocommerce -#: includes/class-wc-countries.php:251 -msgid "Tajikistan" -msgstr "Tayikistán" - -# @ woocommerce -#: includes/class-wc-countries.php:252 -msgid "Tanzania" -msgstr "Tanzania" - -# @ woocommerce -#: includes/class-wc-countries.php:253 -msgid "Thailand" -msgstr "Tailandia" - -# @ woocommerce -#: includes/class-wc-countries.php:254 -msgid "Timor-Leste" -msgstr "Timor Oriental" - -# @ woocommerce -#: includes/class-wc-countries.php:255 -msgid "Togo" -msgstr "Togo" - -# @ woocommerce -#: includes/class-wc-countries.php:256 -msgid "Tokelau" -msgstr "Tokelau" - -# @ woocommerce -#: includes/class-wc-countries.php:257 -msgid "Tonga" -msgstr "Tonga" - -# @ woocommerce -#: includes/class-wc-countries.php:258 -msgid "Trinidad and Tobago" -msgstr "Trinidad y Tobago" - -# @ woocommerce -#: includes/class-wc-countries.php:259 -msgid "Tunisia" -msgstr "Túnez" - -# @ woocommerce -#: includes/class-wc-countries.php:260 -msgid "Turkey" -msgstr "Turquía" - -# @ woocommerce -#: includes/class-wc-countries.php:261 -msgid "Turkmenistan" -msgstr "Turkmenistán" - -# @ woocommerce -#: includes/class-wc-countries.php:262 -msgid "Turks and Caicos Islands" -msgstr "Islas Turcas y Caicos" - -# @ woocommerce -#: includes/class-wc-countries.php:263 -msgid "Tuvalu" -msgstr "Tuvalu" - -# @ woocommerce -#: includes/class-wc-countries.php:264 -msgid "Uganda" -msgstr "Uganda" - -# @ woocommerce -#: includes/class-wc-countries.php:265 -msgid "Ukraine" -msgstr "Ucrania" - -# @ woocommerce -#: includes/class-wc-countries.php:266 -msgid "United Arab Emirates" -msgstr "Emiratos Árabes Unidos" - -# @ woocommerce -#: includes/class-wc-countries.php:267 -msgid "United Kingdom (UK)" -msgstr "Reino Unido (UK)" - -# @ woocommerce -#: includes/class-wc-countries.php:268 -msgid "United States (US)" -msgstr "Estados Unidos (US)" - -# @ woocommerce -#: includes/class-wc-countries.php:269 -msgid "Uruguay" -msgstr "Uruguay" - -# @ woocommerce -#: includes/class-wc-countries.php:270 -msgid "Uzbekistan" -msgstr "Uzbekistán" - -# @ woocommerce -#: includes/class-wc-countries.php:271 -msgid "Vanuatu" -msgstr "Vanuatu" - -# @ woocommerce -#: includes/class-wc-countries.php:272 -msgid "Vatican" -msgstr "Ciudad del Vaticano" - -# @ woocommerce -#: includes/class-wc-countries.php:273 -msgid "Venezuela" -msgstr "Venezuela" - -# @ woocommerce -#: includes/class-wc-countries.php:274 -msgid "Vietnam" -msgstr "Vietnam" - -# @ woocommerce -#: includes/class-wc-countries.php:275 -msgid "Wallis and Futuna" -msgstr "Wallis y Futuna" - -# @ woocommerce -#: includes/class-wc-countries.php:276 -msgid "Western Sahara" -msgstr "Sahara Occidental" - -# @ woocommerce -#: includes/class-wc-countries.php:277 -msgid "Western Samoa" -msgstr "Samoa Occidental" - -# @ woocommerce -#: includes/class-wc-countries.php:278 -msgid "Yemen" -msgstr "Yemen" - -# @ woocommerce -#: includes/class-wc-countries.php:279 -msgid "Zambia" -msgstr "Zambia" - -# @ woocommerce -#: includes/class-wc-countries.php:280 -msgid "Zimbabwe" -msgstr "Zimbabue" - -# @ woocommerce -#: includes/class-wc-countries.php:485 -msgid "to the" -msgstr "al" - -# @ woocommerce -#: includes/class-wc-countries.php:486 -msgid "to" -msgstr "a" - -# @ woocommerce -#: includes/class-wc-countries.php:499 -msgid "the" -msgstr "el/la/los" - -# @ woocommerce -#: includes/class-wc-countries.php:511 -msgid "VAT" -msgstr "IVA" - -# @ woocommerce -#: includes/class-wc-countries.php:511 -msgid "Tax" -msgstr "Impuesto" - -# @ woocommerce -#: includes/class-wc-countries.php:524 -msgid "(incl. VAT)" -msgstr "(IVA incluído)" - -# @ woocommerce -#: includes/class-wc-countries.php:524 -msgid "(incl. tax)" -msgstr "(impuesto incluido)" - -# @ woocommerce -#: includes/class-wc-countries.php:537 -msgid "(ex. VAT)" -msgstr "(IVA no incluído)" - -# @ woocommerce -#: includes/class-wc-countries.php:537 -msgid "(ex. tax)" -msgstr "(sin impuestos)" - -# @ woocommerce -#: includes/class-wc-countries.php:718 -msgid "Country" -msgstr "País" - -# @ woocommerce -#: includes/class-wc-countries.php:723 -msgid "First Name" -msgstr "Nombre " - -# @ woocommerce -#: includes/class-wc-countries.php:728 -msgid "Last Name" -msgstr "Apellido" - -# @ woocommerce -#: includes/class-wc-countries.php:734 -msgid "Company Name" -msgstr "Nombre de la Empresa" - -# @ woocommerce -#: includes/class-wc-countries.php:738 -msgid "Address" -msgstr "Dirección" - -# @ woocommerce -#: includes/class-wc-countries.php:739 -msgctxt "placeholder" -msgid "Street address" -msgstr "Dirección Física" - -# @ woocommerce -#: includes/class-wc-countries.php:744 -msgctxt "placeholder" -msgid "Apartment, suite, unit etc. (optional)" -msgstr "Apartamento, habitación, unidad, etc (opcional)" - -# @ woocommerce -#: includes/class-wc-countries.php:749 includes/class-wc-countries.php:750 -msgid "Town / City" -msgstr "Pueblo / Ciudad" - -# @ woocommerce -#: includes/class-wc-countries.php:756 includes/class-wc-countries.php:757 -msgid "State / County" -msgstr "Estado / País" - -# @ woocommerce -#: includes/class-wc-countries.php:763 includes/class-wc-countries.php:764 -#: templates/cart/shipping-calculator.php:80 -msgid "Postcode / Zip" -msgstr "Código Postal / Zip" - -# @ woocommerce -#: includes/class-wc-countries.php:807 includes/class-wc-countries.php:817 -#: includes/class-wc-countries.php:837 includes/class-wc-countries.php:892 -#: includes/class-wc-countries.php:911 includes/class-wc-countries.php:939 -#: includes/class-wc-countries.php:989 includes/class-wc-countries.php:1013 -#: includes/class-wc-countries.php:1054 -msgid "Province" -msgstr "Provincia" - -# @ woocommerce -#: includes/class-wc-countries.php:823 -msgid "Canton" -msgstr "Cantón" - -# @ woocommerce -#: includes/class-wc-countries.php:832 includes/class-wc-countries.php:995 -msgid "Municipality" -msgstr "Municipio" - -# @ woocommerce -#: includes/class-wc-countries.php:879 -msgid "Town / District" -msgstr "Pueblo / Distrito" - -# @ woocommerce -#: includes/class-wc-countries.php:882 -msgid "Region" -msgstr "Región" - -# @ woocommerce -#: includes/class-wc-countries.php:887 includes/class-wc-countries.php:1029 -msgid "County" -msgstr "País" - -# @ woocommerce -#: includes/class-wc-countries.php:1018 -msgid "Zip" -msgstr "Zip" - -# @ woocommerce -#: includes/class-wc-countries.php:1021 -msgid "State" -msgstr "Estado / Región" - -# @ woocommerce -#: includes/class-wc-countries.php:1026 -msgid "Postcode" -msgstr "Código postal" - -# @ woocommerce -#: includes/class-wc-countries.php:1134 -msgid "Email Address" -msgstr "Dirección de Email" - -# @ woocommerce -#: includes/class-wc-countries.php:1140 -msgid "Phone" -msgstr "Teléfono" - -# @ woocommerce -#: includes/class-wc-coupon.php:451 -msgid "Coupon code applied successfully." -msgstr "El codigo de cupón ha sido aplicado exitosamente." - -# @ woocommerce -#: includes/class-wc-coupon.php:454 -msgid "Coupon code removed successfully." -msgstr "El codigo de cupón ha sido eliminado exitosamente." - -# @ woocommerce -#: includes/class-wc-coupon.php:475 -msgid "Coupon is not valid." -msgstr "El cupón no es válido." - -# @ woocommerce -#: includes/class-wc-coupon.php:478 includes/class-wc-coupon.php:528 -msgid "Coupon does not exist!" -msgstr "¡El cupón no existe!" - -# @ woocommerce -#: includes/class-wc-coupon.php:481 -msgid "" -"Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from " -"your order." -msgstr "" -"Lo sentimos, parece que el cupón \"%s\" es inválido - ha sido quitado de tu " -"orden. " - -# @ woocommerce -#: includes/class-wc-coupon.php:484 -msgid "" -"Sorry, it seems the coupon \"%s\" is not yours - it has now been removed " -"from your order." -msgstr "" -"Lo sentimos, parece que el cupón \"%s\" no es tuyo - se ha eliminado de tu " -"pedido." - -# @ woocommerce -#: includes/class-wc-coupon.php:487 -msgid "Coupon code already applied!" -msgstr "El codigo de cupón ya ha sido aplicado!" - -# @ woocommerce -#: includes/class-wc-coupon.php:490 -msgid "" -"Sorry, coupon \"%s\" has already been applied and cannot be used in " -"conjunction with other coupons." -msgstr "" -"Lo sentimos, el cupón \"%s\" ya ha sifo aplicado y no puede ser utilizado en " -"conjunto con otros cupones." - -# @ woocommerce -#: includes/class-wc-coupon.php:493 -msgid "Coupon usage limit has been reached." -msgstr "Se ha alcanzado el límite de uso de cupones." - -# @ woocommerce -#: includes/class-wc-coupon.php:496 -msgid "This coupon has expired." -msgstr "Este cupón ha expirado." - -# @ woocommerce -#: includes/class-wc-coupon.php:499 -msgid "The minimum spend for this coupon is %s." -msgstr "El monto mínimo para comprar con este cupón es %s." - -# @ woocommerce -#: includes/class-wc-coupon.php:502 -msgid "Sorry, this coupon is not applicable to your cart contents." -msgstr "Lo sentimos, este cupón no es aplicable al contenido de tu carro." - -# @ woocommerce -#: includes/class-wc-coupon.php:505 -msgid "Sorry, this coupon is not valid for sale items." -msgstr "Lo sentimos, este cupón no es válido para productos en descuento." - -# @ woocommerce -#: includes/class-wc-coupon.php:531 -msgid "Please enter a coupon code." -msgstr "Por favor, ingrese un código de cupón." - -# @ woocommerce -#: includes/class-wc-customer.php:629 includes/class-wc-customer.php:641 -msgid "File %d" -msgstr "Archivo %d" - -# @ woocommerce -#: includes/class-wc-download-handler.php:37 -msgid "Invalid email address." -msgstr "Dirección de email inválida." - -# @ woocommerce -#: includes/class-wc-download-handler.php:37 -#: includes/class-wc-download-handler.php:61 -#: includes/class-wc-download-handler.php:81 -#: includes/class-wc-download-handler.php:87 -#: includes/class-wc-download-handler.php:91 -#: includes/class-wc-download-handler.php:94 -#: includes/class-wc-download-handler.php:137 -#: includes/class-wc-download-handler.php:267 -msgid "Go to homepage →" -msgstr "Ir a la página de inicio →" - -# @ woocommerce -#: includes/class-wc-download-handler.php:61 -msgid "Invalid download." -msgstr "Descarga inválida." - -# @ woocommerce -#: includes/class-wc-download-handler.php:73 -msgid "You must be logged in to download files." -msgstr "Debes haber iniciado sesión para descargar archivos." - -# @ woocommerce -#: includes/class-wc-download-handler.php:73 -msgid "Login →" -msgstr "Iniciar sesión →" - -# @ woocommerce -#: includes/class-wc-download-handler.php:73 -msgid "Log in to Download Files" -msgstr "Iniciar sesión para Descargar Archivos" - -# @ woocommerce -#: includes/class-wc-download-handler.php:76 -msgid "This is not your download link." -msgstr "Este no es tu enlace de descarga." - -# @ woocommerce -#: includes/class-wc-download-handler.php:81 -msgid "Product no longer exists." -msgstr "El producto ya no existe." - -# @ woocommerce -#: includes/class-wc-download-handler.php:87 -#: includes/class-wc-form-handler.php:443 -#: includes/shortcodes/class-wc-shortcode-checkout.php:87 -#: includes/shortcodes/class-wc-shortcode-checkout.php:168 -#: includes/shortcodes/class-wc-shortcode-my-account.php:102 -#: includes/shortcodes/class-wc-shortcode-view-order.php:50 -msgid "Invalid order." -msgstr "Pedido no válido." - -# @ woocommerce -#: includes/class-wc-download-handler.php:91 -msgid "Sorry, you have reached your download limit for this file" -msgstr "" -"Lo sentimos, usted ha alcanzado su limite de descarga para este archivo." - -# @ woocommerce -#: includes/class-wc-download-handler.php:94 -msgid "Sorry, this download has expired" -msgstr "Lo sentimos, esta descarga ha expirado" - -# @ woocommerce -#: includes/class-wc-download-handler.php:137 -msgid "No file defined" -msgstr "Archivo no definido" - -# @ woocommerce -#: includes/class-wc-download-handler.php:267 -msgid "File not found" -msgstr "Archivo no encontrado" - -# @ woocommerce -#: includes/class-wc-emails.php:289 -msgid "Note" -msgstr "Nota" - -# @ woocommerce -#: includes/class-wc-emails.php:325 -msgid "Product low in stock" -msgstr "Producto bajo en existencia" - -# @ woocommerce -#: includes/class-wc-emails.php:330 includes/class-wc-emails.php:362 -#: includes/class-wc-emails.php:406 -msgid "Variation #%s of %s" -msgstr "Variación #%s de %s" - -# @ woocommerce -#: includes/class-wc-emails.php:332 includes/class-wc-emails.php:364 -#: includes/class-wc-emails.php:408 -msgid "Product #%s - %s" -msgstr "Producto #%s - %s" - -# @ woocommerce -#: includes/class-wc-emails.php:334 -msgid "is low in stock." -msgstr "es bajo en existencia" - -# @ woocommerce -#: includes/class-wc-emails.php:357 -msgid "Product out of stock" -msgstr "Producto sin existencia" - -# @ woocommerce -#: includes/class-wc-emails.php:366 -msgid "is out of stock." -msgstr "no tiene existencia." - -# @ woocommerce -#: includes/class-wc-emails.php:401 -msgid "Product Backorder" -msgstr "Pedido Pendiente del Producto" - -# @ woocommerce -#: includes/class-wc-emails.php:411 -msgid "%s units of %s have been backordered in order %s." -msgstr "%s unidades de %s han sido pre-ordenadas en el pedido %s." - -# @ woocommerce -#: includes/class-wc-form-handler.php:118 -msgid "Address changed successfully." -msgstr "Dirección cambiada correctamente." - -# @ woocommerce -#: includes/class-wc-form-handler.php:166 -msgid "Please enter your name." -msgstr "Por favor ingrese su nombre." - -# @ woocommerce -#: includes/class-wc-form-handler.php:169 -#: includes/wc-customer-functions.php:46 -msgid "Please provide a valid email address." -msgstr "Por favor ingrese una direccion de correo electrónica válida." - -# @ woocommerce -#: includes/class-wc-form-handler.php:172 -msgid "This email address is already registered." -msgstr "Este email ya ha sido registrado." - -# @ woocommerce -#: includes/class-wc-form-handler.php:175 -msgid "Please re-enter your password." -msgstr "Por favor reingrese su contraseña." - -# @ woocommerce -#: includes/class-wc-form-handler.php:178 -#: includes/class-wc-form-handler.php:716 -msgid "Passwords do not match." -msgstr "Las contraseñas no coinciden." - -# @ woocommerce -#: includes/class-wc-form-handler.php:191 -msgid "Account details changed successfully." -msgstr "Detalles de la cuenta cambiados correctamente." - -# @ woocommerce -#: includes/class-wc-form-handler.php:297 -#: includes/class-wc-form-handler.php:344 -msgid "Cart updated." -msgstr "Carrito actualizado." - -# @ woocommerce -#: includes/class-wc-form-handler.php:328 -msgid "You can only have 1 %s in your cart." -msgstr "Solo puede tener 1 %s en su carrito." - -# @ woocommerce -#: includes/class-wc-form-handler.php:406 -msgid "The cart has been filled with the items from your previous order." -msgstr "El carrito ha sido llenado con artículos de tus pedidos anteriores." - -# @ woocommerce -#: includes/class-wc-form-handler.php:430 -msgid "Order cancelled by customer." -msgstr "Pedido cancelado por el cliente." - -# @ woocommerce -#: includes/class-wc-form-handler.php:433 -msgid "Your order was cancelled." -msgstr "Su pedido fue cancelado." - -# @ woocommerce -#: includes/class-wc-form-handler.php:439 -msgid "" -"Your order is no longer pending and could not be cancelled. Please contact " -"us if you need assistance." -msgstr "" -"Su pedido ya no está en espera y no puede ser cancelado. Por favor, póngase " -"en contacto con nosotros si necesita ayuda." - -# @ woocommerce -#: includes/class-wc-form-handler.php:480 -#: includes/class-wc-form-handler.php:538 -msgid "Please choose product options…" -msgstr "Por favor, elija las opciones del producto…" - -# @ woocommerce -#: includes/class-wc-form-handler.php:571 -msgid "" -"Please choose the quantity of items you wish to add to your cart…" -msgstr "" -"Por favor escoge la cantidad de articulos que deseas agregar a tu " -"carrito…" - -# @ woocommerce -#: includes/class-wc-form-handler.php:578 -msgid "Please choose a product to add to your cart…" -msgstr "Por favor, elija un producto para agregar a su carrito…" - -# @ woocommerce -#: includes/class-wc-form-handler.php:635 -#: includes/class-wc-form-handler.php:637 -#: includes/class-wc-form-handler.php:645 -msgid "Error" -msgstr "Error" - -# @ woocommerce -#: includes/class-wc-form-handler.php:635 -msgid "Username is required." -msgstr "Nombre de usuario requerido." - -# @ woocommerce -#: includes/class-wc-form-handler.php:637 -msgid "Password is required." -msgstr "Se requiere contraseña." - -# @ woocommerce -#: includes/class-wc-form-handler.php:645 -msgid "A user could not be found with this email address." -msgstr "No hay ningun usuario registrado con esa dirección de correo." - -# @ woocommerce -#: includes/class-wc-form-handler.php:668 -msgid "You are now logged in as %s" -msgstr "Está autenticado como %s" - -# @ woocommerce -#: includes/class-wc-form-handler.php:711 -msgid "Please enter your password." -msgstr "Por favor, introduce tu contraseña." - -# @ woocommerce -#: includes/class-wc-form-handler.php:726 -msgid "Your password has been reset." -msgstr "Su contraseña ha sido reajustada." - -# @ woocommerce -#: includes/class-wc-form-handler.php:726 -msgid "Log in" -msgstr "Ingresar" - -# @ woocommerce -#: includes/class-wc-form-handler.php:750 -#: includes/wc-customer-functions.php:107 -msgid "ERROR" -msgstr "ERROR" - -# @ woocommerce -#: includes/class-wc-form-handler.php:750 -msgid "Anti-spam field was filled in." -msgstr "El campo Anti-spam fue rellenado." - -# @ woocommerce -#: includes/class-wc-frontend-scripts.php:107 -msgid "Please select a rating" -msgstr "Por favor seleccione una puntuación" - -# @ woocommerce -#: includes/class-wc-frontend-scripts.php:114 -#: includes/wc-template-functions.php:1591 -msgid "required" -msgstr "requerido" - -# @ woocommerce -#: includes/class-wc-frontend-scripts.php:142 -msgid "" -"Sorry, no products matched your selection. Please choose a different " -"combination." -msgstr "" -"Lo sentimos, no hay productos que igualen tu selección. Por favor escoge una " -"combinación diferente." - -# @ woocommerce -#: includes/class-wc-frontend-scripts.php:147 -msgid "Select an option…" -msgstr "Selecciona una opción…" - -# @ woocommerce -#: includes/class-wc-install.php:208 -msgctxt "page_slug" -msgid "shop" -msgstr "tienda" - -# @ woocommerce -#: includes/class-wc-install.php:209 -msgid "Shop" -msgstr "Tienda" - -# @ woocommerce -#: includes/class-wc-install.php:213 -msgctxt "page_slug" -msgid "cart" -msgstr "carrito" - -# @ woocommerce -#: includes/class-wc-install.php:218 -msgctxt "page_slug" -msgid "checkout" -msgstr "finalizar-comprar" - -# @ woocommerce -#: includes/class-wc-install.php:223 -msgctxt "page_slug" -msgid "my-account" -msgstr "mi-cuenta" - -# @ woocommerce -#: includes/class-wc-install.php:421 -msgid "Customer" -msgstr "Cliente" - -# @ woocommerce -#: includes/class-wc-install.php:428 -msgid "Shop Manager" -msgstr "Manager de la Tienda" - -# @ woocommerce -#: includes/class-wc-install.php:662 -msgid "What's new:" -msgstr "¿Qué hay de nuevo?" - -# @ woocommerce -#: includes/class-wc-order.php:130 -msgctxt "hash before order number" -msgid "#" -msgstr "#" - -# @ woocommerce -#: includes/class-wc-order.php:752 -msgid " %svia %s" -msgstr " %svia %s" - -# @ woocommerce -#: includes/class-wc-order.php:815 -msgid "Cart Subtotal:" -msgstr "Subtotal del Carrito:" - -# @ woocommerce -#: includes/class-wc-order.php:821 -msgid "Cart Discount:" -msgstr "Descuento en el carrito:" - -# @ woocommerce -#: includes/class-wc-order.php:827 -msgid "Shipping:" -msgstr "Envío:" - -# @ woocommerce -#: includes/class-wc-order.php:872 -msgid "Order Discount:" -msgstr "Descuento del Pedido:" - -# @ woocommerce -#: includes/class-wc-order.php:877 -msgid "Order Total:" -msgstr "Total del Pedido:" - -# @ woocommerce -#: includes/class-wc-order.php:895 includes/wc-template-functions.php:1136 -msgid "(Includes %s)" -msgstr "(Incluidos %s)" - -# @ woocommerce -#: includes/class-wc-order.php:1132 includes/class-wc-order.php:1133 -msgid "WooCommerce" -msgstr "WooCommerce" - -# @ woocommerce -#: includes/class-wc-order.php:1186 -msgid "Order status changed from %s to %s." -msgstr "El estado del pedido ha cambiado de %s a %s." - -# @ woocommerce -#: includes/class-wc-order.php:1435 woocommerce-ajax.php:1044 -#: woocommerce-ajax.php:1045 -msgid "Item #%s stock reduced from %s to %s." -msgstr "Artículo #%s redujo en existencia de %s a %s." - -# @ woocommerce -#: includes/class-wc-order.php:1447 -msgid "Order item stock reduced successfully." -msgstr "La existencia del artículo reducido con éxito." - -# @ woocommerce -#: includes/class-wc-post-types.php:60 includes/class-wc-post-types.php:62 -#: includes/widgets/class-wc-widget-product-categories.php:30 -msgid "Product Categories" -msgstr "Categorias de los productos" - -# @ woocommerce -#: includes/class-wc-post-types.php:63 -msgid "Product Category" -msgstr "Categoría de producto" - -# @ woocommerce -#: includes/class-wc-post-types.php:64 -msgctxt "Admin menu name" -msgid "Categories" -msgstr "Categorías" - -# @ woocommerce -#: includes/class-wc-post-types.php:65 -msgid "Search Product Categories" -msgstr "Buscar Categorías de Producto" - -# @ woocommerce -#: includes/class-wc-post-types.php:66 -msgid "All Product Categories" -msgstr "Todas las Categorías de Producto" - -# @ woocommerce -#: includes/class-wc-post-types.php:67 -msgid "Parent Product Category" -msgstr "Categoría de Producto Padre" - -# @ woocommerce -#: includes/class-wc-post-types.php:68 -msgid "Parent Product Category:" -msgstr "Categoría de Producto Padre:" - -# @ woocommerce -#: includes/class-wc-post-types.php:69 -msgid "Edit Product Category" -msgstr "Editar Categoría de Producto" - -# @ woocommerce -#: includes/class-wc-post-types.php:70 -msgid "Update Product Category" -msgstr "Actualizar Categoría de Producto" - -# @ woocommerce -#: includes/class-wc-post-types.php:71 -msgid "Add New Product Category" -msgstr "Añadir Nueva Categoría de Producto" - -# @ woocommerce -#: includes/class-wc-post-types.php:72 -msgid "New Product Category Name" -msgstr "Nuevo Nombre de Categoría de Producto" - -# @ woocommerce -#: includes/class-wc-post-types.php:83 -#: includes/updates/woocommerce-update-2.0.php:49 -msgctxt "slug" -msgid "product-category" -msgstr "categoria-producto" - -# @ woocommerce -#: includes/class-wc-post-types.php:95 includes/class-wc-post-types.php:97 -#: includes/widgets/class-wc-widget-product-tag-cloud.php:27 -msgid "Product Tags" -msgstr "Etiquetas del producto" - -# @ woocommerce -#: includes/class-wc-post-types.php:98 -msgid "Product Tag" -msgstr "Etiqueta de producto" - -# @ woocommerce -#: includes/class-wc-post-types.php:99 -msgctxt "Admin menu name" -msgid "Tags" -msgstr "Etiquetas" - -# @ woocommerce -#: includes/class-wc-post-types.php:100 -msgid "Search Product Tags" -msgstr "Buscar Etiquetas de Producto" - -# @ woocommerce -#: includes/class-wc-post-types.php:101 -msgid "All Product Tags" -msgstr "Todas las Etiquetas de Producto" - -# @ woocommerce -#: includes/class-wc-post-types.php:102 -msgid "Parent Product Tag" -msgstr "Etiqueta de Producto Padre" - -# @ woocommerce -#: includes/class-wc-post-types.php:103 -msgid "Parent Product Tag:" -msgstr "Etiqueta de Producto Padre:" - -# @ woocommerce -#: includes/class-wc-post-types.php:104 -msgid "Edit Product Tag" -msgstr "Editar Etiqueta de Producto" - -# @ woocommerce -#: includes/class-wc-post-types.php:105 -msgid "Update Product Tag" -msgstr "Actualizar Etiqueta de Producto" - -# @ woocommerce -#: includes/class-wc-post-types.php:106 -msgid "Add New Product Tag" -msgstr "Añadir Nueva Etiqueta de Producto" - -# @ woocommerce -#: includes/class-wc-post-types.php:107 -msgid "New Product Tag Name" -msgstr "Nuevo Nombre de Etiqueta de Producto" - -# @ woocommerce -#: includes/class-wc-post-types.php:118 -#: includes/updates/woocommerce-update-2.0.php:50 -msgctxt "slug" -msgid "product-tag" -msgstr "etiqueta-producto" - -# @ woocommerce -#: includes/class-wc-post-types.php:129 includes/class-wc-post-types.php:131 -msgid "Shipping Classes" -msgstr "Clases de envío" - -# @ woocommerce -#: includes/class-wc-post-types.php:132 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:525 -msgid "Shipping Class" -msgstr "Clase de envío" - -# @ woocommerce -#: includes/class-wc-post-types.php:133 -msgctxt "Admin menu name" -msgid "Shipping Classes" -msgstr "Tipos de envíos" - -# @ woocommerce -#: includes/class-wc-post-types.php:134 -msgid "Search Shipping Classes" -msgstr "Buscar clases de envío" - -# @ woocommerce -#: includes/class-wc-post-types.php:135 -msgid "All Shipping Classes" -msgstr "Todas las clases de envío" - -# @ woocommerce -#: includes/class-wc-post-types.php:136 -msgid "Parent Shipping Class" -msgstr "Clases de envío superior" - -# @ woocommerce -#: includes/class-wc-post-types.php:137 -msgid "Parent Shipping Class:" -msgstr "Clase de envío superior:" - -# @ woocommerce -#: includes/class-wc-post-types.php:138 -msgid "Edit Shipping Class" -msgstr "Editar clase de envío" - -# @ woocommerce -#: includes/class-wc-post-types.php:139 -msgid "Update Shipping Class" -msgstr "Actualizar clase de envío" - -# @ woocommerce -#: includes/class-wc-post-types.php:140 -msgid "Add New Shipping Class" -msgstr "Agregar una nueva clase de envío" - -# @ woocommerce -#: includes/class-wc-post-types.php:141 -msgid "New Shipping Class Name" -msgstr "Nueva nombre de clase de envío" - -# @ woocommerce -#: includes/class-wc-post-types.php:189 -msgid "Search %s" -msgstr "Buscar %s" - -#: includes/class-wc-post-types.php:190 -msgid "All %s" -msgstr "Todos %s" - -# @ woocommerce -#: includes/class-wc-post-types.php:191 -msgid "Parent %s" -msgstr "Padre %s" - -# @ woocommerce -#: includes/class-wc-post-types.php:192 -msgid "Parent %s:" -msgstr "Padre %s:" - -# @ default -# @ woocommerce -#: includes/class-wc-post-types.php:193 -msgid "Edit %s" -msgstr "Editar %s" - -# @ woocommerce -#: includes/class-wc-post-types.php:194 -msgid "Update %s" -msgstr "Actualizar %s" - -# @ woocommerce -#: includes/class-wc-post-types.php:195 -msgid "Add New %s" -msgstr "Añadir Nuevo %s" - -# @ woocommerce -#: includes/class-wc-post-types.php:196 -msgid "New %s" -msgstr "Nuevo %s" - -# @ woocommerce -#: includes/class-wc-post-types.php:232 -#: includes/updates/woocommerce-update-2.0.php:58 -msgctxt "slug" -msgid "product" -msgstr "producto" - -# @ woocommerce -#: includes/class-wc-post-types.php:238 -#: includes/integrations/google-analytics/class-wc-google-analytics.php:273 -#: includes/integrations/google-analytics/class-wc-google-analytics.php:293 -#: includes/widgets/class-wc-widget-products.php:27 -msgid "Products" -msgstr "Productos" - -# @ woocommerce -#: includes/class-wc-post-types.php:239 templates/cart/cart.php:27 -#: templates/checkout/form-pay.php:19 templates/checkout/review-order.php:18 -#: templates/emails/admin-new-order.php:22 -#: templates/emails/customer-completed-order.php:23 -#: templates/emails/customer-invoice.php:27 -#: templates/emails/customer-note.php:27 -#: templates/emails/customer-processing-order.php:23 -#: templates/order/order-details.php:20 -msgid "Product" -msgstr "Producto" - -# @ woocommerce -#: includes/class-wc-post-types.php:240 -msgctxt "Admin menu name" -msgid "Products" -msgstr "Productos" - -# @ woocommerce -#: includes/class-wc-post-types.php:241 -msgid "Add Product" -msgstr "Añadir Producto" - -# @ woocommerce -#: includes/class-wc-post-types.php:242 -msgid "Add New Product" -msgstr "Añadir Nuevo Producto" - -# @ default -# @ woocommerce -#: includes/class-wc-post-types.php:243 includes/class-wc-post-types.php:295 -#: includes/class-wc-post-types.php:334 templates/myaccount/my-address.php:45 -msgid "Edit" -msgstr "Editar" - -# @ woocommerce -#: includes/class-wc-post-types.php:244 -msgid "Edit Product" -msgstr "Editar Producto" - -# @ woocommerce -#: includes/class-wc-post-types.php:245 -msgid "New Product" -msgstr "Nuevo Producto" - -# @ woocommerce -#: includes/class-wc-post-types.php:246 includes/class-wc-post-types.php:247 -msgid "View Product" -msgstr "Ver Producto" - -# @ woocommerce -#: includes/class-wc-post-types.php:248 -#: includes/widgets/class-wc-widget-product-search.php:27 -msgid "Search Products" -msgstr "Buscar Productos" - -# @ woocommerce -#: includes/class-wc-post-types.php:249 -msgid "No Products found" -msgstr "No se han encontrado Productos" - -# @ woocommerce -#: includes/class-wc-post-types.php:250 -msgid "No Products found in trash" -msgstr "No se han encontrado Productos en la papelera" - -# @ woocommerce -#: includes/class-wc-post-types.php:251 -msgid "Parent Product" -msgstr "Producto Padre" - -# @ woocommerce -#: includes/class-wc-post-types.php:253 -msgid "This is where you can add new products to your store." -msgstr "Aquí es donde puedes añadir nuevos productos en tu tienda." - -# @ woocommerce -#: includes/class-wc-post-types.php:273 -msgid "Variations" -msgstr "Variaciones" - -# @ woocommerce -#: includes/class-wc-post-types.php:281 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Pedidos" - -# @ woocommerce -#: includes/class-wc-post-types.php:291 -msgid "Orders" -msgstr "Pedidos" - -# @ woocommerce -#: includes/class-wc-post-types.php:292 -#: includes/widgets/class-wc-widget-products.php:62 -#: templates/myaccount/my-orders.php:32 -msgid "Order" -msgstr "Pedido" - -# @ woocommerce -#: includes/class-wc-post-types.php:293 -msgid "Add Order" -msgstr "Añadir Pedido" - -# @ woocommerce -#: includes/class-wc-post-types.php:294 -msgid "Add New Order" -msgstr "Añadir nuevo pedido" - -# @ woocommerce -#: includes/class-wc-post-types.php:296 -msgid "Edit Order" -msgstr "Editar Pedido" - -# @ woocommerce -#: includes/class-wc-post-types.php:297 -msgid "New Order" -msgstr "Nuevo pedido" - -# @ woocommerce -#: includes/class-wc-post-types.php:298 includes/class-wc-post-types.php:299 -msgid "View Order" -msgstr "Ver Pedido" - -# @ woocommerce -#: includes/class-wc-post-types.php:300 -msgid "Search Orders" -msgstr "Buscar Pedidos" - -# @ woocommerce -#: includes/class-wc-post-types.php:301 -msgid "No Orders found" -msgstr "No se encontraron Pedidos" - -# @ woocommerce -#: includes/class-wc-post-types.php:302 -msgid "No Orders found in trash" -msgstr "No se encontraron Pedidos en la papelera" - -# @ woocommerce -#: includes/class-wc-post-types.php:303 -msgid "Parent Orders" -msgstr "Pedidos Padre" - -# @ woocommerce -#: includes/class-wc-post-types.php:306 -msgid "This is where store orders are stored." -msgstr "Aquí es donde se guardan los pedidos de la tienda." - -# @ woocommerce -#: includes/class-wc-post-types.php:329 -msgid "Coupons" -msgstr "Cupones" - -# @ woocommerce -#: includes/class-wc-post-types.php:330 templates/cart/cart.php:119 -msgid "Coupon" -msgstr "Cupón" - -# @ woocommerce -#: includes/class-wc-post-types.php:331 -msgctxt "Admin menu name" -msgid "Coupons" -msgstr "Cupones" - -# @ woocommerce -#: includes/class-wc-post-types.php:332 -msgid "Add Coupon" -msgstr "Añadir Cupón" - -# @ woocommerce -#: includes/class-wc-post-types.php:333 -msgid "Add New Coupon" -msgstr "Añadir Nuevo Cupón" - -# @ woocommerce -#: includes/class-wc-post-types.php:335 -msgid "Edit Coupon" -msgstr "Editar cupón" - -# @ woocommerce -#: includes/class-wc-post-types.php:336 -msgid "New Coupon" -msgstr "Nuevo Cupón" - -# @ woocommerce -#: includes/class-wc-post-types.php:337 -msgid "View Coupons" -msgstr "Ver Cupones" - -# @ woocommerce -#: includes/class-wc-post-types.php:338 -msgid "View Coupon" -msgstr "Ver Cupón" - -# @ woocommerce -#: includes/class-wc-post-types.php:339 -msgid "Search Coupons" -msgstr "Buscar Cupones" - -# @ woocommerce -#: includes/class-wc-post-types.php:340 -msgid "No Coupons found" -msgstr "Ningún cupón encontrado" - -# @ woocommerce -#: includes/class-wc-post-types.php:341 -msgid "No Coupons found in trash" -msgstr "Ningún cupón encontrado en la basura" - -# @ woocommerce -#: includes/class-wc-post-types.php:342 -msgid "Parent Coupon" -msgstr "Cupón Padre" - -# @ woocommerce -#: includes/class-wc-post-types.php:344 -msgid "" -"This is where you can add new coupons that customers can use in your store." -msgstr "" -"Aquí es donde puede agregar nuevos cupones que los clientes pueden utilizar " -"en su tienda." - -# @ woocommerce -#: includes/class-wc-product-external.php:86 -msgid "Buy product" -msgstr "Comprar producto" - -# @ woocommerce -#: includes/class-wc-product-grouped.php:42 -msgid "View products" -msgstr "Ver productos" - -# @ woocommerce -#: includes/class-wc-product-simple.php:48 -#: includes/class-wc-product-variation.php:211 -msgid "Read More" -msgstr "Leer más" - -# @ woocommerce -#: includes/class-wc-product-variable.php:42 -msgid "Select options" -msgstr "Seleccionar opciones" - -#: includes/class-wc-product-variable.php:508 -msgid "" -"This variable product has no active variations and will not be published." -msgstr "" -"Este producto variable no tiene variaciones activas y no puede ser publicado." - -# @ woocommerce -#: includes/class-wc-product-variation.php:473 -msgid "%s – %s%s" -msgstr "%s – %s%s" - -#: includes/class-wc-shortcodes.php:942 -msgid "" -"Use $args[\"posts_per_page\"] instead. Deprecated argument will be removed " -"in WC 2.2." -msgstr "" -"Use $args[\"posts_per_page\"]. Argumento deprecado será eliminado en WC 2.2." - -# @ woocommerce -#: includes/emails/class-wc-email-customer-completed-order.php:26 -msgid "Completed order" -msgstr "Orden Completada" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-completed-order.php:27 -msgid "" -"Order complete emails are sent to the customer when the order is marked " -"complete and usual indicates that the order has been shipped." -msgstr "" -"Las notificaciones de pedido completado se envían al cliente cuando el " -"pedido es marcado como \"completado\" e indican que el pedido ha sido " -"enviado o está listo para recoger." - -# @ woocommerce -#: includes/emails/class-wc-email-customer-completed-order.php:29 -msgid "Your order is complete" -msgstr "Su orden está completada" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-completed-order.php:30 -msgid "Your {blogname} order from {order_date} is complete" -msgstr "Tu orden de {blogname} de la fecha {order_date} está completo" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-completed-order.php:39 -msgid "Your order is complete - download your files" -msgstr "Su pedido se ha completado - descarga tus archivos" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-completed-order.php:40 -msgid "" -"Your {blogname} order from {order_date} is complete - download your files" -msgstr "" -"Tu orden de {blogname} de la fecha {order_date} está completado - descarga " -"tus ficheros" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-completed-order.php:143 -#: includes/emails/class-wc-email-new-order.php:130 -msgid "Subject" -msgstr "Asunto" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-completed-order.php:150 -#: includes/emails/class-wc-email-new-order.php:137 -msgid "Email Heading" -msgstr "Encabezado de Correo Electrónico" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-completed-order.php:157 -msgid "Subject (downloadable)" -msgstr "Asunto (producto descargable)" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-completed-order.php:164 -msgid "Email Heading (downloadable)" -msgstr "Encabezado de Correo Electrónico (producto descargable)" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-invoice.php:29 -msgid "Customer invoice" -msgstr "Factura del Cliente" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-invoice.php:30 -msgid "" -"Customer invoice emails can be sent to the user containing order info and " -"payment links." -msgstr "" -"Las facturas que contienen los detalles del pedido y enlaces para realizar " -"el pago pueden enviarse al cliente." - -# @ woocommerce -#: includes/emails/class-wc-email-customer-invoice.php:35 -msgid "Invoice for order {order_number} from {order_date}" -msgstr "Factura para la orden # {order_number} de {order_date}" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-invoice.php:36 -msgid "Invoice for order {order_number}" -msgstr "Factura para la orden # {order_number}" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-invoice.php:38 -msgid "Your {blogname} order from {order_date}" -msgstr "Tu orden de {blogname} de la fecha {order_date}" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-invoice.php:39 -msgid "Order {order_number} details" -msgstr "Detalles de la orden # {order_number}" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-invoice.php:157 -msgid "Email subject (paid)" -msgstr "Asunto (pagado)" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-invoice.php:164 -msgid "Email heading (paid)" -msgstr "Encabezado (pagado)" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-new-account.php:33 -msgid "New account" -msgstr "Nueva cuenta" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-new-account.php:34 -msgid "" -"Customer new account emails are sent when a customer signs up via the " -"checkout or My Account page." -msgstr "" -"Los mensajes de nueva cuenta son enviados cuando un cliente se registra a " -"través de las página \"Finalizar compra\" o \"Mi cuenta\"." - -# @ woocommerce -#: includes/emails/class-wc-email-customer-new-account.php:39 -msgid "Your account on {blogname}" -msgstr "Tu cuenta en {blogname}" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-new-account.php:40 -msgid "Welcome to {blogname}" -msgstr "Bienvenido a {blogname}" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-note.php:31 -msgid "Customer note" -msgstr "Nota para el cliente" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-note.php:32 -msgid "Customer note emails are sent when you add a note to an order." -msgstr "" -"Las notas de los clientes son enviadas cuando agregas una nota a un pedido." - -# @ woocommerce -#: includes/emails/class-wc-email-customer-note.php:37 -msgid "Note added to your {blogname} order from {order_date}" -msgstr "Nota agregada a tu orden de {blogname} de la fecha {order_date}" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-note.php:38 -msgid "A note has been added to your order" -msgstr "Una nota ha sido añadida a tu pedido" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-processing-order.php:26 -msgid "Processing order" -msgstr "Procesando tu Orden" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-processing-order.php:27 -msgid "" -"This is an order notification sent to the customer after payment containing " -"order details." -msgstr "" -"Esto es una notificación de pedido que se envía al cliente después del pago " -"del pedido." - -# @ woocommerce -#: includes/emails/class-wc-email-customer-processing-order.php:29 -msgid "Thank you for your order" -msgstr "Gracias por tu orden" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-processing-order.php:30 -msgid "Your {blogname} order receipt from {order_date}" -msgstr "Tu recibo de orden de {blogname} de la fecha {order_date}" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-reset-password.php:38 -msgid "Reset password" -msgstr "Restablecer contraseña" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-reset-password.php:39 -msgid "" -"Customer reset password emails are sent when a customer resets their " -"password." -msgstr "" -"Los mensajes para restablecer contraseña se envían cuando un cliente " -"restablece su contraseña." - -# @ woocommerce -#: includes/emails/class-wc-email-customer-reset-password.php:44 -msgid "Password Reset for {blogname}" -msgstr "Cambiar contraseña para {blogname}" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-reset-password.php:45 -msgid "Password Reset Instructions" -msgstr "Instrucciones para reestablecer la contraseña" - -# @ woocommerce -#: includes/emails/class-wc-email-new-order.php:26 -msgid "New order" -msgstr "Nuevo pedido" - -# @ woocommerce -#: includes/emails/class-wc-email-new-order.php:27 -msgid "New order emails are sent when an order is received." -msgstr "" -"Los mensajes de nuevo pedido son enviados cuando un pedido es recibido." - -# @ woocommerce -#: includes/emails/class-wc-email-new-order.php:29 -msgid "New customer order" -msgstr "Nuevo pedido de un cliente" - -# @ woocommerce -#: includes/emails/class-wc-email-new-order.php:30 -msgid "[{blogname}] New customer order ({order_number}) - {order_date}" -msgstr "[{blogname}] Nueva orden de Cliente ({order_number}) - {order_date}" - -# @ woocommerce -#: includes/emails/class-wc-email-new-order.php:123 -msgid "Recipient(s)" -msgstr "Destinatario(s)" - -# @ woocommerce -#: includes/emails/class-wc-email-new-order.php:125 -msgid "" -"Enter recipients (comma separated) for this email. Defaults to %s." -msgstr "" -"Introduce las direcciones (separadas por comas) a las que se enviarán " -"notificaciones. Predeterminado a %s." - -# @ woocommerce -#: includes/emails/class-wc-email-new-order.php:132 -msgid "" -"This controls the email subject line. Leave blank to use the default " -"subject: %s." -msgstr "" -"Esto controla la linea de asunto del correo electrónico. Dejan en blanco " -"para utilizar el asunto por defect: %s." - -# @ woocommerce -#: includes/emails/class-wc-email-new-order.php:139 -msgid "" -"This controls the main heading contained within the email notification. " -"Leave blank to use the default heading: %s." -msgstr "" -"Esto controla el contenido del encabezado del mensaje de notificación. Dejar " -"en blanco para usar el predeterminado: %s." - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:25 -msgid "BACS" -msgstr "BACS" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:26 -msgid "" -"Allows payments by BACS, more commonly known as direct bank/wire transfer." -msgstr "Permite el pago mediante transferencia bancaria." - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:68 -msgid "Enable Bank Transfer" -msgstr "Habilitar transferencia bancaria" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:72 -#: includes/gateways/cheque/class-wc-gateway-cheque.php:58 -#: includes/gateways/cod/class-wc-gateway-cod.php:64 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:143 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:127 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:104 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:82 -#: includes/widgets/class-wc-widget-cart.php:30 -#: includes/widgets/class-wc-widget-layered-nav-filters.php:28 -#: includes/widgets/class-wc-widget-layered-nav.php:70 -#: includes/widgets/class-wc-widget-price-filter.php:30 -#: includes/widgets/class-wc-widget-product-categories.php:31 -#: includes/widgets/class-wc-widget-product-categories.php:36 -#: includes/widgets/class-wc-widget-product-search.php:28 -#: includes/widgets/class-wc-widget-product-tag-cloud.php:28 -#: includes/widgets/class-wc-widget-products.php:28 -#: includes/widgets/class-wc-widget-recent-reviews.php:28 -#: includes/widgets/class-wc-widget-recently-viewed.php:28 -#: includes/widgets/class-wc-widget-top-rated-products.php:30 -msgid "Title" -msgstr "Título" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:74 -#: includes/gateways/cheque/class-wc-gateway-cheque.php:60 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:145 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:129 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:84 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:83 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:58 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:106 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:84 -msgid "This controls the title which the user sees during checkout." -msgstr "" -"Esto controla el título que el usuario ve durante la finalización de la " -"compra." - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:75 -msgid "Direct Bank Transfer" -msgstr "Transferencia Bancaria Directa" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:79 -#: includes/gateways/cheque/class-wc-gateway-cheque.php:65 -#: includes/gateways/cod/class-wc-gateway-cod.php:71 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:150 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:134 -#: includes/wc-template-functions.php:902 -msgid "Description" -msgstr "Descripción" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:81 -#: includes/gateways/cheque/class-wc-gateway-cheque.php:67 -#: includes/gateways/cod/class-wc-gateway-cod.php:66 -msgid "Payment method description that the customer will see on your checkout." -msgstr "Descripción del método de pago que el cliente verá en el sitio web." - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:82 -msgid "" -"Make your payment directly into our bank account. Please use your Order ID " -"as the payment reference. Your order won't be shipped until the funds have " -"cleared in our account." -msgstr "" -"Realice su pago directamente en nuestra cuenta bancaria. Por favor use su " -"identificador de pedido como referencia de pago. Su pedido no será enviado " -"hasta que los fondos hayan sido recibidos en nuestra cuenta." - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:86 -#: includes/gateways/cheque/class-wc-gateway-cheque.php:72 -#: includes/gateways/cod/class-wc-gateway-cod.php:78 -msgid "Instructions" -msgstr "Instrucciones" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:88 -#: includes/gateways/cheque/class-wc-gateway-cheque.php:74 -msgid "Instructions that will be added to the thank you page and emails." -msgstr "" -"Instrucciones que se añadirán a la página de agradecimiento y correos " -"electrónicos." - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:105 -msgid "Account Details" -msgstr "Detalles de la cuenta" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:111 -msgid "Account Name" -msgstr "Nombre de la cuenta" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:112 -#: includes/gateways/bacs/class-wc-gateway-bacs.php:253 -msgid "Account Number" -msgstr "Número de cuenta" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:113 -msgid "Bank Name" -msgstr "Nombre del banco" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:114 -#: includes/gateways/bacs/class-wc-gateway-bacs.php:257 -msgid "Sort Code" -msgstr "Tipo de Cuenta" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:115 -#: includes/gateways/bacs/class-wc-gateway-bacs.php:261 -msgid "IBAN" -msgstr "RUN" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:116 -msgid "BIC / Swift" -msgstr "BIC / Swift" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:121 -msgid "+ Add Account" -msgstr "+ Agregar cuenta" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:121 -msgid "Remove selected account(s)" -msgstr "Eliminar cuenta(s) seleccionada(s)" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:240 -msgid "Our Bank Details" -msgstr "Nuestros Detalles Bancarios" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:265 -msgid "BIC" -msgstr "BIC" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:295 -msgid "Awaiting BACS payment" -msgstr "Pendientes de pago" - -# @ woocommerce -#: includes/gateways/cheque/class-wc-gateway-cheque.php:25 -msgid "Cheque" -msgstr "Cheque" - -# @ woocommerce -#: includes/gateways/cheque/class-wc-gateway-cheque.php:26 -msgid "" -"Allows cheque payments. Why would you take cheques in this day and age? Well " -"you probably wouldn't but it does allow you to make test purchases for " -"testing order emails and the 'success' pages etc." -msgstr "" -"Permite pagos con cheques. Los cheques son un sistema antiguo. Te " -"recomendamos que no habilites esta opción. En todo caso, podrías utilizarla " -"para hacer pruebas." - -# @ woocommerce -#: includes/gateways/cheque/class-wc-gateway-cheque.php:54 -msgid "Enable Cheque Payment" -msgstr "Permite el pago de cheques" - -# @ woocommerce -#: includes/gateways/cheque/class-wc-gateway-cheque.php:61 -msgid "Cheque Payment" -msgstr "Pago mediante cheques" - -# @ woocommerce -#: includes/gateways/cheque/class-wc-gateway-cheque.php:68 -msgid "" -"Please send your cheque to Store Name, Store Street, Store Town, Store " -"State / County, Store Postcode." -msgstr "" -"Por favor envíe su cheque a Nombre de la tienda, dirección, localidad, " -"Estado / provincia, código postal." - -# @ woocommerce -#: includes/gateways/cheque/class-wc-gateway-cheque.php:115 -msgid "Awaiting cheque payment" -msgstr "Esperando pago de cheque" - -# @ woocommerce -#: includes/gateways/cod/class-wc-gateway-cod.php:24 -#: includes/gateways/cod/class-wc-gateway-cod.php:67 -msgid "Cash on Delivery" -msgstr "Pago en entrega" - -# @ woocommerce -#: includes/gateways/cod/class-wc-gateway-cod.php:25 -msgid "Have your customers pay with cash (or by other means) upon delivery." -msgstr "" -"Permite que sus clientes paguen en efectivo (o por otros medios) cuando se " -"entrega el producto." - -# @ woocommerce -#: includes/gateways/cod/class-wc-gateway-cod.php:57 -msgid "Enable COD" -msgstr "Habilitar contraentrega" - -# @ woocommerce -#: includes/gateways/cod/class-wc-gateway-cod.php:58 -msgid "Enable Cash on Delivery" -msgstr "Habilitar pago en entrega" - -# @ woocommerce -#: includes/gateways/cod/class-wc-gateway-cod.php:73 -msgid "Payment method description that the customer will see on your website." -msgstr "Descripción del método de pago que el cliente verá en el sitio web." - -# @ woocommerce -#: includes/gateways/cod/class-wc-gateway-cod.php:74 -#: includes/gateways/cod/class-wc-gateway-cod.php:81 -msgid "Pay with cash upon delivery." -msgstr "Pagar con efectivo al momento de entrega." - -# @ woocommerce -#: includes/gateways/cod/class-wc-gateway-cod.php:80 -msgid "Instructions that will be added to the thank you page." -msgstr "Instrucciones que se añadirán a la página de agradecimiento." - -# @ woocommerce -#: includes/gateways/cod/class-wc-gateway-cod.php:85 -msgid "Enable for shipping methods" -msgstr "Habilitar para métodos de envío" - -# @ woocommerce -#: includes/gateways/cod/class-wc-gateway-cod.php:90 -msgid "" -"If COD is only available for certain methods, set it up here. Leave blank to " -"enable for all methods." -msgstr "" -"Si desea que sólo esté disponible para ciertos métodos de envío, " -"establézcalo aquí. Déjelo en blanco para habilitarlo para todos los métodos." - -# @ woocommerce -#: includes/gateways/cod/class-wc-gateway-cod.php:155 -msgid "Payment to be made upon delivery." -msgstr "Pagos que se harán al entregar el producto." - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:31 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:168 -msgid "Mijireh Checkout" -msgstr "Mijireh Checkout" - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:108 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:293 -msgid "Mijireh error:" -msgstr "Mijireh error:" - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:132 -msgid "Enable Mijireh Checkout" -msgstr "Habilitar Mijireh Checkout" - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:136 -msgid "Access Key" -msgstr "Clave de acceso" - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:138 -msgid "The Mijireh access key for your store." -msgstr "La clave de acceso Mijireh para su tienda." - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:146 -msgid "Credit Card" -msgstr "Tarjeta de Crédito" - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:152 -msgid "Pay securely with your credit card." -msgstr "Pague con seguridad con su tarjeta de crédito." - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:153 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:136 -msgid "This controls the description which the user sees during checkout." -msgstr "" -"Ésto controla la descripción que los usuarios verán durante la finalización " -"de la compra." - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:172 -msgid "Get started with Mijireh Checkout" -msgstr "Comience con Mijireh Checkout" - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:173 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site. Mijireh supports a wide variety of payment gateways: Stripe, " -"Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and more." -msgstr "" -"proporciona un completo cumplimiento de las industrias de tarjetas de pago, " -"camino seguro para recoger y transmitir datos de tarjetas de crédito a su " -"pasarela de pago, manteniendo el diseño de su sitio. Mijireh soporta una " -"amplia variedad de pasarelas de pago: Stripe, Authorize.net, PayPal, eWay, " -"SagePay, Braintree, PayLeap, y más." - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:175 -msgid "Join for free" -msgstr "Únete gratis" - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:175 -msgid "Learn more about WooCommerce and Mijireh" -msgstr "Aprender más acerca de WooCommerce and Mijireh" - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:179 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site." -msgstr "" -"provee una manera que obedece estándares PCI, haciendolo una manera segura " -"para colectar y transmitir datos de tarjeta de credito a su pasarela de pago " -"mientras mantiene el control del diseño de su sitio." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:34 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:130 -msgid "PayPal" -msgstr "PayPal" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:93 -msgid "PayPal standard" -msgstr "PayPal estándar" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:94 -msgid "" -"PayPal standard works by sending the user to PayPal to enter their payment " -"information." -msgstr "" -"PayPal estándar funciona mandando al usuario a PayPal para introducir la " -"información del pago." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:106 -msgid "Gateway Disabled" -msgstr "Pasarela desactivada" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:106 -msgid "PayPal does not support your store currency." -msgstr "Paypal no soporta la moneda establecida" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:123 -msgid "Enable PayPal standard" -msgstr "Habilitar PayPal estándar" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:137 -msgid "" -"Pay via PayPal; you can pay with your credit card if you don't have a PayPal " -"account" -msgstr "" -"Pagar a través de PayPal, usted puede pagar con su tarjeta de crédito si no " -"tiene una cuenta de PayPal" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:140 -msgid "PayPal Email" -msgstr "Dirección de PayPal" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:142 -msgid "" -"Please enter your PayPal email address; this is needed in order to take " -"payment." -msgstr "" -"Por favor, introduzca su dirección de correo electrónico de PayPal, esto es " -"necesario con el fin de recibir el pago." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:148 -msgid "Receiver Email" -msgstr "Correo electrónico del receptor" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:150 -msgid "" -"If this differs from the email entered above, input your main receiver email " -"for your PayPal account. This is used to validate IPN requests." -msgstr "" -"Si éste no es el correo electrónico introducido antes, introduzca la " -"dirección de correo electrónico principal de su cuenta PayPal. Ésto se " -"utiliza para validar las solicitudes de IPN." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:156 -msgid "PayPal Identity Token" -msgstr "Código Identificación PayPal" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:158 -msgid "" -"Optionally enable \"Payment Data Transfer\" (Profile > Website Payment " -"Preferences) and then copy your identity token here. This will allow " -"payments to be verified without the need for PayPal IPN." -msgstr "" -"Opcionalmente permitir \"Transferencia de datos de pago\" (Perfil > " -"Preferencias de Pago) y luego copiar su código de identidad aquí. Esto " -"permitirá que los pagos que puedan verificar sin la necesidad de PayPal IPN." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:161 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:194 -msgid "Optional" -msgstr "Opcional" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:164 -msgid "Invoice Prefix" -msgstr "Prefijo de factura" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:166 -msgid "" -"Please enter a prefix for your invoice numbers. If you use your PayPal " -"account for multiple stores ensure this prefix is unique as PayPal will not " -"allow orders with the same invoice number." -msgstr "" -"Por favor, introduzca un prefijo para los números de factura. Si usted " -"utiliza su cuenta de PayPal para múltiples tiendas asegúrese de que éste " -"prefijo es único ya que PayPal no permite hacer los pedidos con el mismo " -"número de factura." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:171 -msgid "Payment Action" -msgstr "Método de pago" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:173 -msgid "" -"Choose whether you wish to capture funds immediately or authorize payment " -"only." -msgstr "" -"Elija si desea capturar fondos inmediatamente o autorizar el pago únicamente." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:177 -msgid "Capture" -msgstr "Captura" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:178 -msgid "Authorize" -msgstr "Autorización" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:182 -msgid "Submission method" -msgstr "Método de envío de la información" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:184 -msgid "Use form submission method." -msgstr "Utilizar el método de formulario de envío." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:185 -msgid "" -"Enable this to post order data to PayPal via a form instead of using a " -"redirect/querystring." -msgstr "" -"Habilite esto para enviar los datos del pedido a PayPal mediante un " -"formulario en lugar de utilizar un redireccionamiento." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:189 -msgid "Page Style" -msgstr "Estilo de la página" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:191 -msgid "" -"Optionally enter the name of the page style you wish to use. These are " -"defined within your PayPal account." -msgstr "" -"Opcionalmente ingrese el nombre del estilo de la página que desea utilizar. " -"Estos están definidos en su cuenta de PayPal." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:197 -msgid "Shipping options" -msgstr "Opciones de envío" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:202 -msgid "Shipping details" -msgstr "Detalles del envío" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:204 -msgid "Send shipping details to PayPal instead of billing." -msgstr "Enviar los datos de envío a PayPal en lugar de los de facturación." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:206 -msgid "" -"PayPal allows us to send 1 address. If you are using PayPal for shipping " -"labels you may prefer to send the shipping address rather than billing." -msgstr "" -"PayPal permite enviar una sóla dirección. Si utiliza PayPal para etiquetas " -"de envío puede que usted prefiera enviar la dirección de envío en vez de la " -"de facturación." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:210 -msgid "Address override" -msgstr "Sobreescribir la dirección" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:212 -msgid "" -"Enable \"address_override\" to prevent address information from being " -"changed." -msgstr "" -"Habilita \"address_override\" para prevenir que la información de dirección " -"sea cambiada." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:213 -msgid "" -"PayPal verifies addresses therefore this setting can cause errors (we " -"recommend keeping it disabled)." -msgstr "" -"PayPal verifica las direcciones por lo que este ajuste puede causar errores " -"(recomendamos mantenerlo desactivado)." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:217 -msgid "Gateway Testing" -msgstr "Probar pasarela" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:222 -msgid "PayPal sandbox" -msgstr "PayPal Sandbox" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:224 -msgid "Enable PayPal sandbox" -msgstr "Habilitar PayPal sandbox" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:226 -msgid "" -"PayPal sandbox can be used to test payments. Sign up for a developer account " -"here." -msgstr "" -"PayPal sandbox puede ser usado para probar pagos. Regístrate para obtener " -"una cuenta de desarrollador aquí." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:229 -msgid "Debug Log" -msgstr "Registro de depuración" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:231 -msgid "Enable logging" -msgstr "Habilitar registro" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:233 -msgid "" -"Log PayPal events, such as IPN requests, inside woocommerce/logs/" -"paypal-%s.txt" -msgstr "" -"Registrar los eventos de PayPal, como las solicitudes IPN, en " -"woocommerce/logs/paypal-%s.txt" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:342 -msgid "Order %s" -msgstr "Orden %s" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:352 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:406 -msgid "Shipping via" -msgstr "Envío mediante" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:446 -msgid "" -"Thank you for your order. We are now redirecting you to PayPal to make " -"payment." -msgstr "" -"Gracias por su pedido. Ahora le estamos redirigiendo a PayPal para efectuar " -"el pago." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:471 -msgid "Pay via PayPal" -msgstr "Pagar a través de PayPal" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:471 -msgid "Cancel order & restore cart" -msgstr "Cancelar pedido & restablecer carrito" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:527 -msgid "" -"Thank you - your order is now pending payment. You should be automatically " -"redirected to PayPal to make payment." -msgstr "" -"Gracias por su pedido, su orden está a la espera del pago. Será " -"automáticamente redirigido a PayPal para efectuar el pago." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:668 -msgid "Validation error: PayPal amounts do not match (gross %s)." -msgstr "Error de Validación: El monto de PayPal no es igual (gross %s)." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:679 -msgid "" -"Validation error: PayPal IPN response from a different email address (%s)." -msgstr "" -"Error de validación: La repsuesta de Paypal IPN de una dirección de correo " -"diferente (%s)." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:697 -msgid "IPN payment completed" -msgstr "Pago IPN completado" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:700 -msgid "Payment pending: %s" -msgstr "Pendiente de pago: %s" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:712 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:720 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:737 -msgid "Payment %s via IPN." -msgstr "Pago a través de %s IPN." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:725 -msgid "Order refunded/reversed" -msgstr "Pedido devuelto/regresado" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:726 -msgid "Order %s has been marked as refunded - PayPal reason code: %s" -msgstr "" -"La orden %s ha sido marcada como reembolsada - codigo de razón de PayPal: %s" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:729 -msgid "Payment for order %s refunded/reversed" -msgstr "Pago para orden %s ha sido reembolsado." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:742 -msgid "Order reversed" -msgstr "Pedido anulado" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:743 -msgid "" -"Order %s has been marked on-hold due to a reversal - PayPal reason code: %s" -msgstr "" -"Orden %s ha sido marcada como en-espera por una anulación - Codigo de razón " -"de PayPal: %s" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:746 -msgid "Payment for order %s reversed" -msgstr "Pago para orden %s ha sido anulado" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:754 -msgid "Reversal Cancelled" -msgstr "Cancelación anulada" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:755 -msgid "" -"Order %s has had a reversal cancelled. Please check the status of payment " -"and update the order status accordingly." -msgstr "" -"Orden %s tiene una cancelación anulada. Por favor verifique el estado del " -"pago y actualice el estado de la orden." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:758 -msgid "Reversal cancelled for order %s" -msgstr "Cancelación anulada para orden %s" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:825 -msgid "Validation error: PayPal amounts do not match (amt %s)." -msgstr "Error de Validación: El monto de PayPal no es igual (monto %s)." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:832 -msgid "PDT payment completed" -msgstr "Pago PDT completado" - -# @ woocommerce -#: includes/integrations/google-analytics/class-wc-google-analytics.php:26 -msgid "Google Analytics" -msgstr "Google Analytics" - -# @ woocommerce -#: includes/integrations/google-analytics/class-wc-google-analytics.php:27 -msgid "" -"Google Analytics is a free service offered by Google that generates detailed " -"statistics about the visitors to a website." -msgstr "" -"Google Analytics es un servicio gratuito ofrecido por Google que genera " -"estadísticas detalladas sobre las personas que visitan su sitio." - -# @ woocommerce -#: includes/integrations/google-analytics/class-wc-google-analytics.php:63 -msgid "Google Analytics ID" -msgstr "ID de Google Analytics" - -# @ woocommerce -#: includes/integrations/google-analytics/class-wc-google-analytics.php:64 -msgid "" -"Log into your google analytics account to find your ID. e.g. UA-XXXXX-" -"X" -msgstr "" -"Inicia sesión en tu cuenta de Google Analytics para encontrar su ID. por " -"ejemplo, UA-XXXXX-X" - -# @ woocommerce -#: includes/integrations/google-analytics/class-wc-google-analytics.php:69 -msgid "Set Domain Name" -msgstr "Establecer nombre de dominio" - -# @ woocommerce -#: includes/integrations/google-analytics/class-wc-google-analytics.php:70 -msgid "" -"(Optional) Sets the _setDomainName variable. See " -"here for more information." -msgstr "" -"(Opcional) Establece la variable _setDomainName. Vea más información aquí." - -# @ woocommerce -#: includes/integrations/google-analytics/class-wc-google-analytics.php:75 -msgid "Tracking code" -msgstr "Código de seguimiento" - -# @ woocommerce -#: includes/integrations/google-analytics/class-wc-google-analytics.php:76 -msgid "" -"Add tracking code to your site's footer. You don't need to enable this if " -"using a 3rd party analytics plugin." -msgstr "" -"Agregar un código de seguimiento al pie de tu sitio. No necesitas activar " -"esto si estás usando otro plugin de estadísticas." - -# @ woocommerce -#: includes/integrations/google-analytics/class-wc-google-analytics.php:82 -msgid "Add eCommerce tracking code to the thankyou page" -msgstr "" -"Añadir el código de seguimiento eCommerce a la página de agradecimiento" - -# @ woocommerce -#: includes/integrations/google-analytics/class-wc-google-analytics.php:88 -msgid "Add event tracking code for add to cart actions" -msgstr "" -"Añadir código de seguimiento de eventos para añadir a las acciones de compra" - -# @ woocommerce -#: includes/integrations/google-analytics/class-wc-google-analytics.php:120 -#: includes/integrations/google-analytics/class-wc-google-analytics.php:180 -#: woocommerce-ajax.php:1531 -msgid "Guest" -msgstr "Invitado" - -# @ woocommerce -#: includes/integrations/google-analytics/class-wc-google-analytics.php:218 -#: includes/integrations/google-analytics/class-wc-google-analytics.php:275 -#: templates/single-product/meta.php:20 -msgid "SKU:" -msgstr "Código:" - -# @ woocommerce -#: includes/integrations/sharedaddy/class-wc-sharedaddy.php:26 -msgid "ShareDaddy" -msgstr "ShareDaddy" - -# @ woocommerce -#: includes/integrations/sharedaddy/class-wc-sharedaddy.php:27 -msgid "ShareDaddy is a sharing plugin bundled with JetPack." -msgstr "ShareDaddy es un plugin para compartir incluido en JetPack." - -# @ woocommerce -#: includes/integrations/sharedaddy/class-wc-sharedaddy.php:51 -msgid "Output ShareDaddy button?" -msgstr "¿Mostrar el botón ShareDaddy?" - -# @ woocommerce -#: includes/integrations/sharedaddy/class-wc-sharedaddy.php:52 -msgid "Enable this option to show the ShareDaddy button on the product page." -msgstr "" -"Habilite esta opción para mostrar el botón ShareDaddy en la página del " -"producto." - -# @ woocommerce -#: includes/integrations/sharethis/class-wc-sharethis.php:29 -msgid "ShareThis" -msgstr "ShareThis" - -# @ woocommerce -#: includes/integrations/sharethis/class-wc-sharethis.php:30 -msgid "" -"ShareThis offers a sharing widget which will allow customers to share links " -"to products with their friends." -msgstr "" -"ShareThis ofrece un widget que permite a los clientes compartir enlaces de " -"los productos con sus amigos." - -# @ woocommerce -#: includes/integrations/sharethis/class-wc-sharethis.php:63 -msgid "ShareThis Publisher ID" -msgstr "ID de editor de ShareThis" - -# @ woocommerce -#: includes/integrations/sharethis/class-wc-sharethis.php:64 -msgid "" -"Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons on " -"product pages." -msgstr "" -"Ingresa tu %1$sID de editor en ShareThis%2$s para mostrar los botones de " -"compartir en las páginas de producto." - -# @ woocommerce -#: includes/integrations/sharethis/class-wc-sharethis.php:69 -msgid "ShareThis Code" -msgstr "Código de ShareThis" - -# @ woocommerce -#: includes/integrations/sharethis/class-wc-sharethis.php:70 -msgid "You can tweak the ShareThis code by editing this option." -msgstr "Puedes modificar el código ShareThis editando esta opción." - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:25 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:85 -msgid "Flat Rate" -msgstr "Precio único" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:27 -msgid "Flat rates let you define a standard rate per item, or per order." -msgstr "" -"Las tarifas planas permiten definir una tarifa estándar por artículo, o por " -"pedido." - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:78 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:52 -msgid "Enable this shipping method" -msgstr "Habilitar este método de envío" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:82 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:81 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:56 -msgid "Method Title" -msgstr "Título del método" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:89 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:63 -msgid "Availability" -msgstr "Disponibilidad" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:94 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:93 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:145 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:102 -msgid "All allowed countries" -msgstr "Todos los países permitidos" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:95 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:99 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:94 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:98 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:146 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:150 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:103 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:107 -msgid "Specific Countries" -msgstr "Países específicos" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:107 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:81 -msgid "Tax Status" -msgstr "Impuestos" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:111 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:85 -msgid "Taxable" -msgstr "Sujeto a impuestos" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:112 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:86 -msgid "None" -msgstr "Ninguno" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:116 -msgid "Cost per order" -msgstr "Coste por pedido" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:119 -msgid "" -"Enter a cost (excluding tax) per order, e.g. 5.00. Leave blank to disable." -msgstr "" -"Ingrese un costo (excluyendo impuesto) por pedido, ej. 5.00. Dejar en blanco " -"para deshabilitar." - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:125 -msgid "Additional Rates" -msgstr "Tarifas Adicionales" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:127 -msgid "" -"Optional extra shipping options with additional costs (one per line): Option " -"Name | Additional Cost [+- Percents] | Per Cost Type (order, class, or item) " -"Example: Priority Mail | 6.95 [+ 0.2%] | order." -msgstr "" -"Opciones de envío adicionales con costo adicional (uno por línea): Nombre de " -"la opción | Costo adicional [+- Porcentaje%] | Por tipo de costo (pedido " -"[order], clase [class] o producto [item]) Ejemplo: Envío rápido | " -"6.95 [+0.2%] | order ." - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:130 -msgid "" -"Option Name | Additional Cost [+- Percents%] | Per Cost Type (order, class, " -"or item)" -msgstr "" -"Nombre de la opción | Costo adicional [+- Porcentaje%] | Por tipo de costo " -"(pedido [order], clase [class] o producto [item])" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:133 -msgid "Additional Costs" -msgstr "Costes adicionales" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:135 -msgid "" -"Additional costs can be added below - these will all be added to the per-" -"order cost above." -msgstr "" -"Los costes adicionales se pueden agregar más abajo - éstos se añadirán al " -"coste por pedido de arriba." - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:138 -msgid "Costs Added..." -msgstr "Costes añadidos..." - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:142 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:94 -msgid "Per Order - charge shipping for the entire order as a whole" -msgstr "Por pedido - los gastos de envío son para todo el pedido en conjunto" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:143 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:95 -msgid "Per Item - charge shipping for each item individually" -msgstr "" -"Por artículo - los gastos de envío son para cada artículo del pedido de " -"forma individual" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:144 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:96 -msgid "Per Class - charge shipping for each shipping class in an order" -msgstr "" -"Por clase - los gastos de envío son para cada clase de envío en el pedido" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:151 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:117 -msgid "Minimum Handling Fee" -msgstr "Monto mínimo por manipulación" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:154 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:120 -msgid "" -"Enter a minimum fee amount. Fee's less than this will be increased. Leave " -"blank to disable." -msgstr "" -"Ingrese una tarifa mínima. Las tarifas menores que ésta serán aumentadas. " -"Dejar en blanco para deshabilitar." - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:519 -msgid "Costs" -msgstr "Costes" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:526 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:100 -msgid "Cost" -msgstr "Coste" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:526 -msgid "Cost, excluding tax." -msgstr "Coste, sin impuestos." - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:527 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:109 -msgid "Handling Fee" -msgstr "Gastos de Gestión" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:527 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -msgstr "" -"Coste sin impuestos. Ingrese un monto, p.ej. 2.50, o un porcentaje, p.ej. 5%." - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:532 -msgid "+ Add Cost" -msgstr "+ Añadir costo" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:532 -msgid "Delete selected costs" -msgstr "Eliminar costes seleccionados" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:538 -msgid "Any class" -msgstr "Cualquier clase" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:539 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:540 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:110 -#: templates/order/order-details.php:119 templates/order/order-details.php:134 -msgid "N/A" -msgstr "N/D" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:558 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:588 -msgid "Select a class…" -msgstr "Seleccione una clase…" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:563 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:564 -msgid "0.00" -msgstr "0.00" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:602 -msgid "Delete the selected rates?" -msgstr "Borrar las tasas seleccionadas?" - -# @ woocommerce -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:25 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:84 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:142 -msgid "Free Shipping" -msgstr "Envío gratuito" - -# @ woocommerce -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:77 -msgid "Enable Free Shipping" -msgstr "Habilitar envío gratuito" - -# @ woocommerce -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:88 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:140 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:97 -msgid "Method availability" -msgstr "Disponibilidad del método" - -# @ woocommerce -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:106 -msgid "Free Shipping Requires..." -msgstr "El Envío Gratuito Requiere..." - -# @ woocommerce -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:111 -msgid "A valid free shipping coupon" -msgstr "Un envío de cupón gratis " - -# @ woocommerce -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:112 -msgid "A minimum order amount (defined below)" -msgstr "Una cantidad mínima de pedido (definida a continuación)" - -# @ woocommerce -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:113 -msgid "A minimum order amount OR a coupon" -msgstr "Una cantidad mínima de pedido O un cupón" - -# @ woocommerce -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:114 -msgid "A minimum order amount AND a coupon" -msgstr "Un monto mínimo de compra y un cupón" - -# @ woocommerce -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:118 -msgid "Minimum Order Amount" -msgstr "Cantidad mínima de pedido" - -# @ woocommerce -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:121 -msgid "" -"Users will need to spend this amount to get free shipping (if enabled above)." -msgstr "" -"Los usuarios tendrán que gastar esta cantidad para obtener el envío gratis. " -"(Dejar en blanco para deshabilitar)." - -# @ woocommerce -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:29 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:59 -msgid "International Delivery" -msgstr "Envío internacional" - -# @ woocommerce -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:30 -msgid "International delivery based on flat rate shipping." -msgstr "Envío internacional basado en precios únicos de envío." - -# @ woocommerce -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:68 -msgid "Selected countries" -msgstr "Seleccione países" - -# @ woocommerce -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:69 -msgid "Excluding selected countries" -msgstr "Excluyendo los países seleccionados" - -# @ woocommerce -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:73 -msgid "Countries" -msgstr "Países" - -# @ woocommerce -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:90 -msgid "Cost Added..." -msgstr "Costo añadido..." - -# @ woocommerce -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:103 -msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -msgstr "Coste sin impuestos. Introduzca una cantidad, p. ej. 2.50." - -# @ woocommerce -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:111 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. " -"Leave blank to disable." -msgstr "" -"Precio excluyendo impuestos. Introduzca una cantidad, p. ej. 2.50, o un " -"porcentaje, p. ej. 5%. Dejar en blanco para desactivar." - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:25 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:107 -msgid "Local Delivery" -msgstr "Envío locale" - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:98 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:76 -msgid "Enable" -msgstr "Habilitar" - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:100 -msgid "Enable local delivery" -msgstr "Habilitar envío local" - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:111 -msgid "Fee Type" -msgstr "Tipo de tarifa" - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:113 -msgid "How to calculate delivery charges" -msgstr "Cómo calcular los cargos por envío" - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 -msgid "Fixed amount" -msgstr "Monto fijo" - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:117 -msgid "Percentage of cart total" -msgstr "Porcentaje del total del carrito" - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:118 -msgid "Fixed amount per product" -msgstr "Monto fijo por producto" - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:123 -msgid "Delivery Fee" -msgstr "Tarifa de entrega" - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:126 -msgid "" -"What fee do you want to charge for local delivery, disregarded if you choose " -"free. Leave blank to disable." -msgstr "" -"Qué tarifa desea cobrar para entregas locales, aunque haya elegido gratis. " -"Dejar en blanco para deshabilitar." - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:132 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:89 -msgid "Zip/Post Codes" -msgstr "Código Postal" - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:134 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:91 -msgid "" -"What zip/post codes would you like to offer delivery to? Separate codes with " -"a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -msgstr "" -"¿A qué código postal desearía ofrecer las entregas? Separar códigos con una " -"coma." - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:169 -msgid "" -"Local delivery is a simple shipping method for delivering orders locally." -msgstr "" -"El envío local es un método de entrega simple que lleva los pedidos en la " -"misma ciudad." - -# @ woocommerce -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:25 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:85 -msgid "Local Pickup" -msgstr "Recogida local" - -# @ woocommerce -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:78 -msgid "Enable local pickup" -msgstr "Habilitar recogida local" - -# @ woocommerce -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:126 -msgid "" -"Local pickup is a simple method which allows the customer to pick up their " -"order themselves." -msgstr "" -"La recogida local es un método simple que permite a los clientes recoger sus " -"pedidos ellos mismos." - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-cart.php:67 -msgid "Shipping costs updated." -msgstr "Costes de envío actualizados." - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-checkout.php:87 -#: includes/shortcodes/class-wc-shortcode-my-account.php:102 -#: includes/shortcodes/class-wc-shortcode-view-order.php:50 -msgid "My Account →" -msgstr "Mi cuenta →" - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-checkout.php:109 -#: includes/shortcodes/class-wc-shortcode-checkout.php:160 -msgid "" -"This order’s status is “%s”—it cannot be paid for. " -"Please contact us if you need assistance." -msgstr "" -"El estado de su pedido es \"%s\", que no se pudo pagar. Por favor, póngase " -"en contacto con nosotros si necesita ayuda." - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-checkout.php:113 -#: includes/shortcodes/class-wc-shortcode-checkout.php:164 -msgid "Sorry, this order is invalid and cannot be paid for." -msgstr "Lo sentimos, esta orden no es válida y no puede ser pagada." - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-checkout.php:130 -#: templates/checkout/thankyou.php:40 -#: templates/emails/customer-completed-order.php:18 -#: templates/emails/customer-invoice.php:22 -#: templates/emails/customer-note.php:22 -#: templates/emails/customer-processing-order.php:18 -msgid "Order:" -msgstr "Pedido:" - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-checkout.php:134 -#: templates/checkout/thankyou.php:44 -msgid "Date:" -msgstr "Fecha:" - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-checkout.php:138 -#: templates/checkout/thankyou.php:48 -msgid "Total:" -msgstr "Total:" - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-checkout.php:143 -#: templates/checkout/thankyou.php:53 -msgid "Payment method:" -msgstr "Método de pago:" - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-checkout.php:233 -msgid "" -"The order totals have been updated. Please confirm your order by pressing " -"the Place Order button at the bottom of the page." -msgstr "" -"El total del pedido ha sido actualizado. Por favor confirme su pedido " -"pulsando el botón de Pedido en la parte inferior de la página." - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-my-account.php:109 -#: templates/myaccount/view-order.php:13 -msgid "" -"Order %s made on %s" -msgstr "" -"Pedido %s hecho en %s" - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-my-account.php:110 -#: templates/myaccount/view-order.php:14 -msgid "Order status: %s" -msgstr "Estado del pedido: %s" - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-my-account.php:115 -#: templates/myaccount/view-order.php:20 templates/order/tracking.php:31 -msgid "Order Updates" -msgstr "Actualizaciones del Pedido" - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-my-account.php:121 -#: templates/myaccount/view-order.php:26 templates/order/tracking.php:37 -msgid "l jS \\o\\f F Y, h:ia" -msgstr "l j \\d\\e F \\d\\e Y, h:ia" - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-my-account.php:228 -msgid "Enter a username or e-mail address." -msgstr "Ingresa un usuario o contraseña." - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-my-account.php:235 -msgid "There is no user registered with that email address." -msgstr "No hay ningun usuario registrado con esa dirección de correo." - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-my-account.php:250 -msgid "Invalid username or e-mail." -msgstr "Email o usuario no válidos." - -# @ default -#: includes/shortcodes/class-wc-shortcode-my-account.php:264 -msgid "Password reset is not allowed for this user" -msgstr "El reajuste de la contraseña no es permitido por este usuario." - -# @ default -#: includes/shortcodes/class-wc-shortcode-my-account.php:292 -msgid "Check your e-mail for the confirmation link." -msgstr "Revise su e-mail para el enlace de confirmación." - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-my-account.php:312 -#: includes/shortcodes/class-wc-shortcode-my-account.php:317 -#: includes/shortcodes/class-wc-shortcode-my-account.php:324 -msgid "Invalid key" -msgstr "Llave invalida" - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-order-tracking.php:50 -msgid "Please enter a valid order ID" -msgstr "Por favor, ingrese un ID de Orden válido" - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-order-tracking.php:54 -msgid "Please enter a valid order email" -msgstr "Por favor, ingrese un email de orden válido" - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-order-tracking.php:73 -msgid "Sorry, we could not find that order id in our database." -msgstr "" -"Lamentablemente no pudimos encontrar ese ID de orden en nuestra base de " -"datos." - -#: includes/wc-cart-functions.php:25 -msgid "This product is protected and cannot be purchased." -msgstr "Este producto está protegido y no puede ser comprado." - -# @ woocommerce -#: includes/wc-cart-functions.php:84 -msgid "Added "%s" to your cart." -msgstr "Se agregó "%s" a tu carrito." - -# @ woocommerce -#: includes/wc-cart-functions.php:84 -msgid "" and "" -msgstr "" y "" - -# @ woocommerce -#: includes/wc-cart-functions.php:87 -msgid ""%s" was successfully added to your cart." -msgstr ""%s" fue añadido a su carrito con éxito." - -# @ woocommerce -#: includes/wc-cart-functions.php:95 -msgid "Continue Shopping →" -msgstr "Seguir comprando →" - -# @ woocommerce -#: includes/wc-core-functions.php:148 -msgid "Australian Dollars" -msgstr "Dólares australianos" - -# @ woocommerce -#: includes/wc-core-functions.php:149 -msgid "Brazilian Real" -msgstr "Real Brasileño" - -# @ woocommerce -#: includes/wc-core-functions.php:150 -msgid "Bulgarian Lev" -msgstr "Lev Búlgaro" - -# @ woocommerce -#: includes/wc-core-functions.php:151 -msgid "Canadian Dollars" -msgstr "Dólares Canadienses" - -# @ woocommerce -#: includes/wc-core-functions.php:152 -msgid "Chinese Yuan" -msgstr "Yuan chino" - -# @ woocommerce -#: includes/wc-core-functions.php:153 -msgid "Czech Koruna" -msgstr "Corona Checa" - -# @ woocommerce -#: includes/wc-core-functions.php:154 -msgid "Danish Krone" -msgstr "Corona Danesa" - -# @ woocommerce -#: includes/wc-core-functions.php:155 -msgid "Euros" -msgstr "Euros" - -# @ woocommerce -#: includes/wc-core-functions.php:156 -msgid "Hong Kong Dollar" -msgstr "Dólar de Hong Kong" - -# @ woocommerce -#: includes/wc-core-functions.php:157 -msgid "Hungarian Forint" -msgstr "Florín Húngaro" - -# @ woocommerce -#: includes/wc-core-functions.php:158 -msgid "Indonesia Rupiah" -msgstr "Rupia Indonesia" - -# @ woocommerce -#: includes/wc-core-functions.php:159 -msgid "Indian Rupee" -msgstr "Rupia india" - -# @ woocommerce -#: includes/wc-core-functions.php:160 -msgid "Israeli Shekel" -msgstr "Shekel Israelí" - -# @ woocommerce -#: includes/wc-core-functions.php:161 -msgid "Japanese Yen" -msgstr "Yen Japonés" - -# @ woocommerce -#: includes/wc-core-functions.php:162 -msgid "South Korean Won" -msgstr "Corea del Sur ganó" - -# @ woocommerce -#: includes/wc-core-functions.php:163 -msgid "Malaysian Ringgits" -msgstr "Ringgits de Malasia" - -# @ woocommerce -#: includes/wc-core-functions.php:164 -msgid "Mexican Peso" -msgstr "Peso Mexicano" - -# @ woocommerce -#: includes/wc-core-functions.php:165 -msgid "Norwegian Krone" -msgstr "Corona Noruega" - -# @ woocommerce -#: includes/wc-core-functions.php:166 -msgid "New Zealand Dollar" -msgstr "Dólar de Nueva Zelanda" - -# @ woocommerce -#: includes/wc-core-functions.php:167 -msgid "Philippine Pesos" -msgstr "Pesos Filipinos" - -# @ woocommerce -#: includes/wc-core-functions.php:168 -msgid "Polish Zloty" -msgstr "Zloty Polaco" - -# @ woocommerce -#: includes/wc-core-functions.php:169 -msgid "Pounds Sterling" -msgstr "Libras Esterlinas" - -# @ woocommerce -#: includes/wc-core-functions.php:170 -msgid "Romanian Leu" -msgstr "Leu Rumano" - -# @ woocommerce -#: includes/wc-core-functions.php:171 -msgid "Russian Ruble" -msgstr "Rublo Ruso" - -# @ woocommerce -#: includes/wc-core-functions.php:172 -msgid "Singapore Dollar" -msgstr "Dolar de Singapúr" - -# @ woocommerce -#: includes/wc-core-functions.php:173 -msgid "South African rand" -msgstr "Rand Sudafricano" - -# @ woocommerce -#: includes/wc-core-functions.php:174 -msgid "Swedish Krona" -msgstr "Corona Sueca" - -# @ woocommerce -#: includes/wc-core-functions.php:175 -msgid "Swiss Franc" -msgstr "Franco Suizo" - -# @ woocommerce -#: includes/wc-core-functions.php:176 -msgid "Taiwan New Dollars" -msgstr "Nuevo Dólar Taiwanés" - -# @ woocommerce -#: includes/wc-core-functions.php:177 -msgid "Thai Baht" -msgstr "Baht Tailandés" - -# @ woocommerce -#: includes/wc-core-functions.php:178 -msgid "Turkish Lira" -msgstr "Lira de Turkía" - -# @ woocommerce -#: includes/wc-core-functions.php:179 -msgid "US Dollars" -msgstr "Dolar Americano" - -# @ woocommerce -#: includes/wc-core-functions.php:180 -msgid "Vietnamese Dong" -msgstr "Dong Vietnamita" - -# @ woocommerce -#: includes/wc-coupon-functions.php:22 -msgid "Cart Discount" -msgstr "Descuento de Carrito" - -# @ woocommerce -#: includes/wc-coupon-functions.php:23 -msgid "Cart % Discount" -msgstr "Descuento % Carrito" - -# @ woocommerce -#: includes/wc-coupon-functions.php:24 -msgid "Product Discount" -msgstr "Descuento de Producto" - -# @ woocommerce -#: includes/wc-coupon-functions.php:25 -msgid "Product % Discount" -msgstr "% de descuento en el producto" - -# @ woocommerce -#: includes/wc-customer-functions.php:49 -msgid "An account is already registered with your email address. Please login." -msgstr "" -"Ya ha sido registrada una cuenta con esta dirección de email. Por favor, " -"regístrate." - -# @ woocommerce -#: includes/wc-customer-functions.php:59 -msgid "Please enter a valid account username." -msgstr "Por favor ingrese el nombre de usuario válido." - -# @ woocommerce -#: includes/wc-customer-functions.php:62 -msgid "" -"An account is already registered with that username. Please choose another." -msgstr "" -"Ya ha sido registrada una cuenta con ese nombre de usuario. Por favor, elige " -"otro." - -# @ woocommerce -#: includes/wc-customer-functions.php:82 -msgid "Please enter an account password." -msgstr "Por favor, ingresa la contraseña de tu cuenta." - -# @ woocommerce -#: includes/wc-customer-functions.php:107 -msgid "" -"Couldn’t register you… please contact us if you continue to " -"have problems." -msgstr "" -"No te pudimos registrar; por favor contáctanos si continúas teniendo " -"problemas." - -# @ woocommerce -#: includes/wc-order-functions.php:290 -msgid "Unpaid order cancelled - time limit reached." -msgstr "" -"La orden sin pagar ha sido cancelada - se ha llegado al limite de tiempo." - -# @ woocommerce -#: includes/wc-product-functions.php:302 -msgctxt "slug" -msgid "uncategorized" -msgstr "sin categorizar" - -# @ woocommerce -#: includes/wc-template-functions.php:314 -msgid "" -"This is a demo store for testing purposes — no orders shall be " -"fulfilled." -msgstr "" -"Esta es una tienda de demostración para propósitos de prueba — no hay " -"pedidos que se cumplan." - -# @ woocommerce -#: includes/wc-template-functions.php:333 -msgid "Search Results: “%s”" -msgstr "Resultado de búsqueda: “%s”" - -# @ woocommerce -#: includes/wc-template-functions.php:336 -msgid " – Page %s" -msgstr " – Página %s" - -# @ woocommerce -#: includes/wc-template-functions.php:910 -#: templates/checkout/form-shipping.php:57 -#: templates/single-product/tabs/additional-information.php:14 -msgid "Additional Information" -msgstr "Información adicional" - -# @ woocommerce -#: includes/wc-template-functions.php:918 -msgid "Reviews (%d)" -msgstr "Comentarios (%d)" - -#: includes/wc-template-functions.php:1008 -msgid "" -"Use $args argument as an array instead. Deprecated argument will be removed " -"in WC 2.2." -msgstr "" -"Use argumento $args como un arreglo. El argumento deprecado será eliminado " -"en WC 2.2." - -# @ woocommerce -#: includes/wc-template-functions.php:1113 -msgid "Free shipping coupon" -msgstr "Cupón para envío gratis" - -# @ woocommerce -#: includes/wc-template-functions.php:1115 -msgid "[Remove]" -msgstr "[Eliminar]" - -# @ woocommerce -#: includes/wc-template-functions.php:1169 -msgid "Free" -msgstr "Gratis!" - -# @ woocommerce -#: includes/wc-template-functions.php:1277 -msgctxt "breadcrumb" -msgid "Home" -msgstr "Inicio" - -# @ woocommerce -#: includes/wc-template-functions.php:1549 -msgid "Order Again" -msgstr "Pedir nuevamente" - -# @ woocommerce -#: includes/wc-template-functions.php:1638 -#: templates/cart/shipping-calculator.php:28 -msgid "Select a country…" -msgstr "Selecciona un país…" - -# @ woocommerce -#: includes/wc-template-functions.php:1645 -msgid "Update country" -msgstr "Actualizar país" - -# @ woocommerce -#: includes/wc-template-functions.php:1688 -#: templates/cart/shipping-calculator.php:52 -msgid "Select a state…" -msgstr "Selecciona un estado/província…" - -# @ woocommerce -#: includes/wc-template-functions.php:1800 -msgid "Search for:" -msgstr "Buscar por:" - -# @ woocommerce -#: includes/wc-template-functions.php:1801 -msgid "Search for products" -msgstr "Buscar por productos" - -# @ woocommerce -#: includes/wc-template-functions.php:1802 -msgid "Search" -msgstr "Búsqueda" - -# @ woocommerce -#: includes/wc-template-functions.php:1828 -msgid "New products" -msgstr "Nuevos productos" - -# @ woocommerce -#: includes/wc-template-functions.php:1836 -msgid "New products added to %s" -msgstr "Nuevos productos añadidos a %s" - -# @ woocommerce -#: includes/wc-template-functions.php:1844 -msgid "New products tagged %s" -msgstr "Nuevos productos etiquetados %s" - -# @ woocommerce -#: includes/wc-term-functions.php:88 -msgid "Select a category" -msgstr "Seleccione una categoría" - -# @ woocommerce -#: includes/wc-term-functions.php:92 -msgid "Uncategorized" -msgstr "Sin categorizar" - -# @ woocommerce -#: includes/widgets/class-wc-widget-cart.php:23 -msgid "Display the user's Cart in the sidebar." -msgstr "Mostrar el carrito del usuario en la barra lateral (sidebar)." - -# @ woocommerce -#: includes/widgets/class-wc-widget-cart.php:25 -msgid "WooCommerce Cart" -msgstr "Carrito WooCommerce" - -# @ woocommerce -#: includes/widgets/class-wc-widget-cart.php:35 -msgid "Hide if cart is empty" -msgstr "Ocultar si el carrito está vacío" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav-filters.php:21 -msgid "Shows active layered nav filters so users can see and deactivate them." -msgstr "" -"Muestra filtros de navegación en capas activos para que los usuarios puedan " -"ver y desactivarlos." - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav-filters.php:23 -msgid "WooCommerce Layered Nav Filters" -msgstr "Capa de Filtros de Navegación WooCommerce" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav-filters.php:27 -msgid "Active Filters" -msgstr "Filtros Activos" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav-filters.php:84 -#: includes/widgets/class-wc-widget-layered-nav-filters.php:91 -#: includes/widgets/class-wc-widget-layered-nav-filters.php:96 -msgid "Remove filter" -msgstr "Eliminar filtro" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav-filters.php:91 -msgid "Min" -msgstr "Min" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav-filters.php:96 -msgid "Max" -msgstr "Max" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav.php:21 -msgid "" -"Shows a custom attribute in a widget which lets you narrow down the list of " -"products when viewing product categories." -msgstr "" -"Muestra un atributo personalizado en un widget que te permite reducir la " -"lista de los productos durante la visualización de las categorías de " -"productos." - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav.php:23 -msgid "WooCommerce Layered Nav" -msgstr "Capa de Navegación WooCommerce" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav.php:69 -msgid "Filter by" -msgstr "Filtrado por" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav.php:75 -msgid "Attribute" -msgstr "Atributo" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav.php:81 -msgid "Display type" -msgstr "Mostrar tipo" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav.php:83 -msgid "List" -msgstr "Lista" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav.php:84 -msgid "Dropdown" -msgstr "Lista desplegable" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav.php:90 -msgid "Query type" -msgstr "Tipo de consulta" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav.php:92 -msgid "AND" -msgstr "Y" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav.php:93 -msgid "OR" -msgstr "O" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav.php:174 -msgid "Any %s" -msgstr "Cualquiera %s" - -# @ woocommerce -#: includes/widgets/class-wc-widget-price-filter.php:23 -msgid "" -"Shows a price filter slider in a widget which lets you narrow down the list " -"of shown products when viewing product categories." -msgstr "" -"Muestra un control deslizante del filtro de precios en un widget que te " -"permite reducir la lista de productos que se muestran durante la " -"visualización de las categorías de productos." - -# @ woocommerce -#: includes/widgets/class-wc-widget-price-filter.php:25 -msgid "WooCommerce Price Filter" -msgstr "Filtro de Precios WooCommerce" - -# @ woocommerce -#: includes/widgets/class-wc-widget-price-filter.php:29 -msgid "Filter by price" -msgstr "Filtrar por precio" - -# @ woocommerce -#: includes/widgets/class-wc-widget-price-filter.php:135 -msgid "Min price" -msgstr "Precio mínimo" - -# @ woocommerce -#: includes/widgets/class-wc-widget-price-filter.php:136 -msgid "Max price" -msgstr "Precio máximo" - -# @ woocommerce -#: includes/widgets/class-wc-widget-price-filter.php:137 -msgid "Filter" -msgstr "Filtro" - -# @ woocommerce -#: includes/widgets/class-wc-widget-price-filter.php:139 -msgid "Price:" -msgstr "Precio:" - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-categories.php:24 -msgid "A list or dropdown of product categories." -msgstr "Una lista o desplegable de categorías de productos." - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-categories.php:26 -msgid "WooCommerce Product Categories" -msgstr "Categorías de Productos WooCommerce" - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-categories.php:38 -msgid "Category Order" -msgstr "Orden de categoría" - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-categories.php:39 -#: templates/single-product-reviews.php:85 woocommerce-ajax.php:1126 -msgid "Name" -msgstr "Nombre" - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-categories.php:45 -msgid "Show as dropdown" -msgstr "Mostrar como desplegable" - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-categories.php:50 -msgid "Show post counts" -msgstr "Mostrar número de entradas" - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-categories.php:55 -msgid "Show hierarchy" -msgstr "Mostrar jerarquía" - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-categories.php:60 -msgid "Only show children for the current category" -msgstr "Mostrar solo subcategorías de la categoría actual" - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-categories.php:156 -msgid "No product categories exist." -msgstr "No existen categorías de producto." - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-search.php:21 -msgid "A Search box for products only." -msgstr "Una caja de búsqueda sólo para productos." - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-search.php:23 -msgid "WooCommerce Product Search" -msgstr "Búsqueda de Producto WooCommerce" - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-tag-cloud.php:21 -msgid "Your most used product tags in cloud format." -msgstr "Sus etiquetas de productos más utilizadas en formato de nube." - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-tag-cloud.php:23 -msgid "WooCommerce Product Tags" -msgstr "Etiquetas de productos WooCommerce" - -# @ woocommerce -#: includes/widgets/class-wc-widget-products.php:21 -msgid "Display a list of your products on your site." -msgstr "Mostrar una lista de sus productos en su sitio" - -# @ woocommerce -#: includes/widgets/class-wc-widget-products.php:23 -msgid "WooCommerce Products" -msgstr "Productos WooCommerce" - -# @ woocommerce -#: includes/widgets/class-wc-widget-products.php:36 -#: includes/widgets/class-wc-widget-recently-viewed.php:36 -#: includes/widgets/class-wc-widget-top-rated-products.php:38 -msgid "Number of products to show" -msgstr "Número de productos para mostrar" - -# @ woocommerce -#: includes/widgets/class-wc-widget-products.php:41 -msgid "Show" -msgstr "Mostrar" - -# @ woocommerce -#: includes/widgets/class-wc-widget-products.php:43 -msgid "All Products" -msgstr "Todos los Productos" - -# @ woocommerce -#: includes/widgets/class-wc-widget-products.php:44 -msgid "Featured Products" -msgstr "Productos Destacados" - -# @ woocommerce -#: includes/widgets/class-wc-widget-products.php:45 -msgid "On-sale Products" -msgstr "Productos en venta" - -# @ woocommerce -#: includes/widgets/class-wc-widget-products.php:51 -msgid "Order by" -msgstr "Ordenar por" - -# @ woocommerce -#: includes/widgets/class-wc-widget-products.php:53 -#: templates/myaccount/my-orders.php:33 -msgid "Date" -msgstr "Fecha" - -# @ woocommerce -#: includes/widgets/class-wc-widget-products.php:54 templates/cart/cart.php:28 -#: templates/emails/admin-new-order.php:24 -#: templates/emails/customer-completed-order.php:25 -#: templates/emails/customer-invoice.php:29 -#: templates/emails/customer-note.php:29 -#: templates/emails/customer-processing-order.php:25 -msgid "Price" -msgstr "Precio" - -#: includes/widgets/class-wc-widget-products.php:55 -msgid "Random" -msgstr "Aleatorio" - -# @ woocommerce -#: includes/widgets/class-wc-widget-products.php:56 -msgid "Sales" -msgstr "Ventas" - -#: includes/widgets/class-wc-widget-products.php:64 -msgid "ASC" -msgstr "Asc" - -#: includes/widgets/class-wc-widget-products.php:65 -msgid "DESC" -msgstr "Desc" - -# @ woocommerce -#: includes/widgets/class-wc-widget-products.php:71 -msgid "Hide free products" -msgstr "Ocultar productos gratis" - -# @ woocommerce -#: includes/widgets/class-wc-widget-products.php:76 -msgid "Show hidden products" -msgstr "Mostrar productos ocultos" - -# @ woocommerce -#: includes/widgets/class-wc-widget-recent-reviews.php:21 -msgid "Display a list of your most recent reviews on your site." -msgstr "Mostrar una lista de los comentarios más recientes en su web." - -# @ woocommerce -#: includes/widgets/class-wc-widget-recent-reviews.php:23 -msgid "WooCommerce Recent Reviews" -msgstr "Comentarios recientes WooCommerce" - -# @ woocommerce -#: includes/widgets/class-wc-widget-recent-reviews.php:27 -msgid "Recent Reviews" -msgstr "Comentarios Recientes" - -# @ woocommerce -#: includes/widgets/class-wc-widget-recent-reviews.php:36 -msgid "Number of reviews to show" -msgstr "Número de comentarios a mostrar" - -# @ woocommerce -#: includes/widgets/class-wc-widget-recent-reviews.php:85 -msgctxt "by comment author" -msgid "by %1$s" -msgstr "por %1$s" - -# @ woocommerce -#: includes/widgets/class-wc-widget-recently-viewed.php:21 -msgid "Display a list of recently viewed products." -msgstr "Mostrar una lista de productos vistos recientemente." - -# @ woocommerce -#: includes/widgets/class-wc-widget-recently-viewed.php:23 -msgid "WooCommerce Recently Viewed" -msgstr "Productos vistos recientemente WooCommerce" - -# @ woocommerce -#: includes/widgets/class-wc-widget-recently-viewed.php:27 -msgid "Recently Viewed Products" -msgstr "Productos vistos recientemente " - -# @ woocommerce -#: includes/widgets/class-wc-widget-top-rated-products.php:23 -msgid "Display a list of your top rated products on your site." -msgstr "Mostrar una lista de los productos mejor valorados en su web." - -# @ woocommerce -#: includes/widgets/class-wc-widget-top-rated-products.php:25 -msgid "WooCommerce Top Rated Products" -msgstr "Productos Mejor Valorados WooCommerce " - -# @ woocommerce -#: includes/widgets/class-wc-widget-top-rated-products.php:29 -msgid "Top Rated Products" -msgstr "Productos Mejor Valorados" - -# @ woocommerce -#: templates/cart/cart-empty.php:16 -msgid "Your cart is currently empty." -msgstr "Tu carrito esta vacío." - -# @ woocommerce -#: templates/cart/cart-empty.php:20 -msgid "← Return To Shop" -msgstr "← Volver A la Tienda" - -# @ woocommerce -#: templates/cart/cart-shipping.php:16 -msgid "Shipping #%d" -msgstr "Envío #%d" - -# @ woocommerce -#: templates/cart/cart-shipping.php:18 -msgid "Shipping and Handling" -msgstr "Envío y Manejo" - -# @ woocommerce -#: templates/cart/cart-shipping.php:55 -msgid "" -"No shipping methods were found; please recalculate your shipping or continue " -"to checkout and enter your full address to see if there is shipping " -"available to your location." -msgstr "" -"No se encontraron métodos de envío, por favor recalcule su envío y ponga su " -"estado/provincia y código postal para asegurarse que no hay otros métodos de " -"envío disponibles." - -# @ woocommerce -#: templates/cart/cart-shipping.php:59 -msgid "Please fill in your details to see available shipping methods." -msgstr "" -"Por favor rellene sus detalles para conocer los métodos de envío disponibles." - -# @ woocommerce -#: templates/cart/cart-shipping.php:69 templates/cart/cart-shipping.php:77 -msgid "Sorry, shipping is unavailable %s." -msgstr "Lo sentimos, el envío no está disponible para %s." - -# @ woocommerce -#: templates/cart/cart-shipping.php:69 templates/cart/cart-shipping.php:77 -msgid "" -"If you require assistance or wish to make alternate arrangements please " -"contact us." -msgstr "" -"Si necesita ayuda o desea hacer arreglos alternativos por favor póngase en " -"contacto con nosotros." - -# @ woocommerce -#: templates/cart/cart-shipping.php:93 -msgid "Shipping" -msgstr "Envío" - -# @ woocommerce -#: templates/cart/cart-totals.php:16 -msgid "Cart Totals" -msgstr "Total del Carrito" - -# @ woocommerce -#: templates/cart/cart-totals.php:21 templates/checkout/review-order.php:25 -msgid "Cart Subtotal" -msgstr "Subtotal del carrito" - -# @ woocommerce -#: templates/cart/cart-totals.php:75 templates/checkout/review-order.php:79 -msgid "Order Total" -msgstr "Total del pedido" - -# @ woocommerce -#: templates/cart/cart-totals.php:87 -msgid " (taxes estimated for %s)" -msgstr "(impuestos estimados para %s)" - -# @ woocommerce -#: templates/cart/cart-totals.php:90 -msgid "" -"Note: Shipping and taxes are estimated%s and will be updated during checkout " -"based on your billing and shipping information." -msgstr "" -"Nota: los costos de envío e impuestos son estimados%s y serán actualizados " -"en el proceso de pago basándose en su información de facturación y dirección " -"de envío." - -# @ woocommerce -#: templates/cart/cart.php:29 templates/emails/admin-new-order.php:23 -#: templates/emails/customer-completed-order.php:24 -#: templates/emails/customer-invoice.php:28 -#: templates/emails/customer-note.php:28 -#: templates/emails/customer-processing-order.php:24 -msgid "Quantity" -msgstr "Cantidad" - -# @ woocommerce -#: templates/cart/cart.php:30 templates/checkout/review-order.php:19 -#: templates/myaccount/my-orders.php:35 templates/order/order-details.php:21 -msgid "Total" -msgstr "Total" - -# @ woocommerce -#: templates/cart/cart.php:47 -msgid "Remove this item" -msgstr "Borrar este artículo" - -# @ woocommerce -#: templates/cart/cart.php:94 -#: templates/single-product/add-to-cart/quantity.php:12 -msgctxt "Product quantity input tooltip" -msgid "Qty" -msgstr "Cantidad" - -# @ woocommerce -#: templates/cart/cart.php:119 templates/checkout/form-coupon.php:29 -msgid "Apply Coupon" -msgstr "Aplicar cupón" - -# @ woocommerce -#: templates/cart/cart.php:126 -msgid "Update Cart" -msgstr "Actualizar carrito" - -# @ woocommerce -#: templates/cart/cart.php:126 -msgid "Proceed to Checkout →" -msgstr "Finalizar Compra →" - -# @ woocommerce -#: templates/cart/cross-sells.php:38 -msgid "You may be interested in…" -msgstr "Usted puede estar interesado en…" - -# @ woocommerce -#: templates/cart/mini-cart.php:51 -msgid "No products in the cart." -msgstr "No hay productos en el carrito." - -# @ woocommerce -#: templates/cart/mini-cart.php:59 -msgid "Subtotal" -msgstr "Subtotal" - -# @ woocommerce -#: templates/cart/mini-cart.php:65 -msgid "Checkout →" -msgstr "Finalizar compra →" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:22 -msgid "Calculate Shipping" -msgstr "Calcular Envío" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:45 -#: templates/cart/shipping-calculator.php:51 -#: templates/cart/shipping-calculator.php:63 -msgid "State / county" -msgstr "Estado / Provincia" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:72 -msgid "City" -msgstr "Ciudad" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:85 -msgid "Update Totals" -msgstr "Actualizar Totales" - -# @ woocommerce -#: templates/checkout/cart-errors.php:16 -msgid "" -"There are some issues with the items in your cart (shown above). Please go " -"back to the cart page and resolve these issues before checking out." -msgstr "" -"Hay algunos inconvenientes con los artículos en su carrito (mostrados " -"arriba). Por favor regrese al carrito y resuelva los inconvenientes antes de " -"pasar a pagar." - -# @ woocommerce -#: templates/checkout/cart-errors.php:20 -msgid "← Return To Cart" -msgstr "← Regresar al carrito" - -# @ woocommerce -#: templates/checkout/form-billing.php:17 -msgid "Billing & Shipping" -msgstr "Facturación & Envíos" - -# @ woocommerce -#: templates/checkout/form-billing.php:21 -#: templates/myaccount/form-edit-address.php:14 -#: templates/myaccount/my-address.php:19 templates/myaccount/my-address.php:25 -#: templates/order/order-details.php:115 -msgid "Billing Address" -msgstr "Dirección de Facturación" - -# @ woocommerce -#: templates/checkout/form-billing.php:40 -msgid "Create an account?" -msgstr "Crear una cuenta?" - -# @ woocommerce -#: templates/checkout/form-billing.php:51 -msgid "" -"Create an account by entering the information below. If you are a returning " -"customer please login at the top of the page." -msgstr "" -"Crea tu cuenta al ingresar tu información. Si eres un cliente por favor " -"ingresa usando tu nombre de usuario en la parte superior de la página." - -# @ woocommerce -#: templates/checkout/form-checkout.php:20 -msgid "You must be logged in to checkout." -msgstr "Debe iniciar sesión para realizar el pago" - -# @ woocommerce -#: templates/checkout/form-checkout.php:51 -msgid "Your order" -msgstr "Su pedido" - -# @ woocommerce -#: templates/checkout/form-coupon.php:17 -msgid "Have a coupon?" -msgstr "¿Tiene un cupón?" - -# @ woocommerce -#: templates/checkout/form-coupon.php:20 -msgid "Click here to enter your code" -msgstr "Clic aquí para ingresar su código" - -# @ woocommerce -#: templates/checkout/form-coupon.php:25 -msgid "Coupon code" -msgstr "Código de cupón" - -# @ woocommerce -#: templates/checkout/form-login.php:14 -msgid "Returning customer?" -msgstr "Cliente retornando?" - -# @ woocommerce -#: templates/checkout/form-login.php:17 -msgid "Click here to login" -msgstr "Haga clic aquí para ingresar" - -# @ woocommerce -#: templates/checkout/form-login.php:22 -msgid "" -"If you have shopped with us before, please enter your details in the boxes " -"below. If you are a new customer please proceed to the Billing & " -"Shipping section." -msgstr "" -"Si has comprado antes con nosotros, por favor ingrese su nombre de usuario y " -"contraseña en siguientes cuadros. Si eres un cliente nuevo, por favor sigue " -"a la sección de facturación y envío." - -# @ woocommerce -#: templates/checkout/form-pay.php:20 -msgid "Qty" -msgstr "Cantidad" - -# @ woocommerce -#: templates/checkout/form-pay.php:21 -msgid "Totals" -msgstr "Totales" - -# @ woocommerce -#: templates/checkout/form-pay.php:78 -msgid "" -"Sorry, it seems that there are no available payment methods for your " -"location. Please contact us if you require assistance or wish to make " -"alternate arrangements." -msgstr "" -"Lo sentimos, parece que no existen métodos de pago disponibles para su " -"ubicación. Por favor, póngase en contacto con nosotros si necesita ayuda o " -"desea hacer arreglos alternativos." - -# @ woocommerce -#: templates/checkout/form-pay.php:87 -msgid "Pay for order" -msgstr "Pagar por el pedido" - -# @ woocommerce -#: templates/checkout/form-shipping.php:31 -msgid "Ship to a different address?" -msgstr "¿Enviar a una dirección diferente?" - -# @ woocommerce -#: templates/checkout/review-order.php:150 -msgid "Please fill in your details above to see available payment methods." -msgstr "" -"Por favor, introduzca sus datos arriba para ver los métodos de pago " -"disponibles." - -# @ woocommerce -#: templates/checkout/review-order.php:152 -msgid "" -"Sorry, it seems that there are no available payment methods for your state. " -"Please contact us if you require assistance or wish to make alternate " -"arrangements." -msgstr "" -"Lo sentimos, parece que no existen métodos de pago disponibles para su " -"estado. Por favor, póngase en contacto con nosotros si necesita ayuda o " -"desea hacer arreglos alternativos." - -# @ woocommerce -#: templates/checkout/review-order.php:161 -msgid "" -"Since your browser does not support JavaScript, or it is disabled, please " -"ensure you click the Update Totals button before placing your " -"order. You may be charged more than the amount stated above if you fail to " -"do so." -msgstr "" -"Debido a que su navegador no soporta JavaScript o lo tiene deshabilitado, " -"por favor asegúrese de hacer clic en el botón Update Totals antes " -"de realizar su pedido. Se le podría cobrar más de la cantidad indicada " -"arriba, si no lo hace." - -# @ woocommerce -#: templates/checkout/review-order.php:161 -msgid "Update totals" -msgstr "Actualizar totales" - -# @ woocommerce -#: templates/checkout/review-order.php:168 -msgid "Place order" -msgstr "Realizar el pedido" - -# @ woocommerce -#: templates/checkout/review-order.php:175 -msgid "I have read and accept the" -msgstr "He leído y acepto los" - -# @ woocommerce -#: templates/checkout/review-order.php:175 -msgid "terms & conditions" -msgstr "términos y condiciones" - -# @ woocommerce -#: templates/checkout/thankyou.php:18 -msgid "" -"Unfortunately your order cannot be processed as the originating bank/" -"merchant has declined your transaction." -msgstr "" -"Desafortunadamente su pedido no puede ser procesado ya que el banco ha " -"declinado su transacción." - -# @ woocommerce -#: templates/checkout/thankyou.php:22 -msgid "Please attempt your purchase again or go to your account page." -msgstr "" -"Por favor intente de nuevo su compra o diríjase a la página de su cuenta." - -# @ woocommerce -#: templates/checkout/thankyou.php:24 -msgid "Please attempt your purchase again." -msgstr "Por favor intente de nuevo su compra." - -# @ woocommerce -#: templates/checkout/thankyou.php:28 templates/myaccount/my-orders.php:71 -msgid "Pay" -msgstr "Pagar" - -# @ woocommerce -#: templates/checkout/thankyou.php:36 templates/checkout/thankyou.php:67 -msgid "Thank you. Your order has been received." -msgstr "Gracias. Su pedido ha sido recibido." - -# @ woocommerce -#: templates/emails/admin-new-order.php:13 -#: templates/emails/plain/admin-new-order.php:13 -msgid "You have received an order from %s. Their order is as follows:" -msgstr "Ha recibido un pedido de %s. La orden es la siguiente:" - -# @ woocommerce -#: templates/emails/admin-new-order.php:17 -msgid "Order: %s" -msgstr "Orden: %s" - -# @ woocommerce -#: templates/emails/admin-new-order.php:50 -#: templates/emails/customer-completed-order.php:51 -#: templates/emails/customer-note.php:55 -#: templates/emails/customer-processing-order.php:51 -#: templates/emails/plain/admin-new-order.php:39 -#: templates/order/order-details.php:97 -msgid "Customer details" -msgstr "Datos del cliente" - -# @ woocommerce -#: templates/emails/admin-new-order.php:53 -#: templates/emails/customer-completed-order.php:54 -#: templates/emails/customer-note.php:58 -#: templates/emails/customer-processing-order.php:54 -#: templates/emails/plain/admin-new-order.php:42 -#: templates/emails/plain/customer-completed-order.php:41 -#: templates/emails/plain/customer-note.php:49 -#: templates/emails/plain/customer-processing-order.php:41 -#: templates/order/order-details.php:101 -msgid "Email:" -msgstr "Email:" - -# @ woocommerce -#: templates/emails/admin-new-order.php:56 -#: templates/emails/customer-completed-order.php:57 -#: templates/emails/customer-note.php:61 -#: templates/emails/customer-processing-order.php:57 -#: templates/emails/plain/admin-new-order.php:45 -#: templates/emails/plain/customer-completed-order.php:44 -#: templates/emails/plain/customer-note.php:52 -#: templates/emails/plain/customer-processing-order.php:44 -msgid "Tel:" -msgstr "Tel:" - -# @ woocommerce -#: templates/emails/customer-completed-order.php:14 -#: templates/emails/plain/customer-completed-order.php:13 -msgid "" -"Hi there. Your recent order on %s has been completed. Your order details are " -"shown below for your reference:" -msgstr "" -"Hola. Tu orden reciente del %s ha sido completado. Los detalles de tu pedido " -"son los siguientes para tu referencia:" - -# @ woocommerce -#: templates/emails/customer-invoice.php:16 -#: templates/emails/plain/customer-invoice.php:14 -msgid "" -"An order has been created for you on %s. To pay for this order please use " -"the following link: %s" -msgstr "" -"Un pedido ha sido creado para usted en “%s”. Para pagar este " -"pedido por favor usa el siguiente enlace: Pagar" - -# @ woocommerce -#: templates/emails/customer-invoice.php:16 -msgid "pay" -msgstr "pagar" - -# @ woocommerce -#: templates/emails/customer-new-account.php:14 -#: templates/emails/plain/customer-new-account.php:13 -msgid "" -"Thanks for creating an account on %s. Your username is %s." -msgstr "Gracias por crear una cuenta en %s. Su usuario es %s." - -#: templates/emails/customer-new-account.php:18 -msgid "Your password has been automatically generated: %s" -msgstr "Su contraseña fue automáticamente generada: %s" - -# @ woocommerce -#: templates/emails/customer-new-account.php:22 -#: templates/emails/plain/customer-new-account.php:18 -msgid "" -"You can access your account area to view your orders and change your " -"password here: %s." -msgstr "" -"Usted puede acceder a su cuenta a ver sus pedidos y cambiar su contraseña " -"aquí: %s." - -# @ woocommerce -#: templates/emails/customer-note.php:14 -#: templates/emails/plain/customer-note.php:13 -msgid "Hello, a note has just been added to your order:" -msgstr "Hola, una nota acaba de ser añadida a su pedido:" - -# @ woocommerce -#: templates/emails/customer-note.php:18 -#: templates/emails/plain/customer-note.php:21 -msgid "For your reference, your order details are shown below." -msgstr "" -"Para su referencia, los detalles de su pedido se muestran a continuación." - -# @ woocommerce -#: templates/emails/customer-processing-order.php:14 -#: templates/emails/plain/customer-processing-order.php:13 -msgid "" -"Your order has been received and is now being processed. Your order details " -"are shown below for your reference:" -msgstr "" -"Tu orden ha sido recibida y está siendo procesada. Los detalles de tu orden " -"son mostrados para tu referencia:" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:14 -#: templates/emails/plain/customer-reset-password.php:13 -msgid "Someone requested that the password be reset for the following account:" -msgstr "" -"Alguien ha solicitado que la contraseña sea reajustada para la siguiente " -"cuenta:" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:15 -#: templates/emails/plain/customer-reset-password.php:15 -msgid "Username: %s" -msgstr "Nombre de Usuario: %s" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:16 -#: templates/emails/plain/customer-reset-password.php:16 -msgid "If this was a mistake, just ignore this email and nothing will happen." -msgstr "Si esto fue un error, por favor ignora este correo y nada sucederá." - -# @ woocommerce -#: templates/emails/customer-reset-password.php:17 -#: templates/emails/plain/customer-reset-password.php:17 -msgid "To reset your password, visit the following address:" -msgstr "Para reajustar tu contraseña, por favor visita la siguiente dirección:" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:20 -msgid "Click here to reset your password" -msgstr "Haz clic aquí para reajustar tu contraseña" - -# @ woocommerce -#: templates/emails/email-addresses.php:18 -#: templates/emails/plain/email-addresses.php:12 -msgid "Billing address" -msgstr "Dirección de facturación" - -# @ woocommerce -#: templates/emails/email-addresses.php:28 -#: templates/emails/plain/email-addresses.php:17 -msgid "Shipping address" -msgstr "Dirección de envío" - -# @ woocommerce -#: templates/emails/email-order-items.php:42 -msgid "Download %d:" -msgstr "Descarga %d:" - -# @ woocommerce -#: templates/emails/email-order-items.php:44 -msgid "Download:" -msgstr "Descarga:" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:19 -#: templates/emails/plain/customer-completed-order.php:19 -#: templates/emails/plain/customer-invoice.php:20 -#: templates/emails/plain/customer-note.php:27 -#: templates/emails/plain/customer-processing-order.php:19 -msgid "Order number: %s" -msgstr "Orden número: %s" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:20 -msgid "Order link: %s" -msgstr "Enlace de Orden: %s" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:21 -#: templates/emails/plain/customer-completed-order.php:20 -#: templates/emails/plain/customer-invoice.php:21 -#: templates/emails/plain/customer-note.php:28 -#: templates/emails/plain/customer-processing-order.php:20 -msgid "Order date: %s" -msgstr "Fecha de la Orden: %s" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:21 -msgid "jS F Y" -msgstr "jS F Y" - -# @ woocommerce -#: templates/emails/plain/customer-completed-order.php:38 -#: templates/emails/plain/customer-note.php:46 -#: templates/emails/plain/customer-processing-order.php:38 -msgid "Your details" -msgstr "Tus Detalles" - -# @ woocommerce -#: templates/emails/plain/customer-new-account.php:16 -msgid "Your password is %s." -msgstr "Su contraseña es %s." - -# @ woocommerce -#: templates/emails/plain/email-order-items.php:29 -msgid "Quantity: %s" -msgstr "Cantidad: %s" - -# @ woocommerce -#: templates/emails/plain/email-order-items.php:32 -msgid "Cost: %s" -msgstr "Costo: %s" - -# @ woocommerce -#: templates/loop/no-products-found.php:14 templates/loop-shop.php:40 -msgid "No products found which match your selection." -msgstr "No se encontraron productos que concuerden con la selección." - -# @ woocommerce -#: templates/loop/orderby.php:21 -msgid "Default sorting" -msgstr "Orden predeterminado" - -# @ woocommerce -#: templates/loop/orderby.php:22 -msgid "Sort by popularity" -msgstr "Ordenar por popularidad" - -# @ woocommerce -#: templates/loop/orderby.php:23 -msgid "Sort by average rating" -msgstr "Ordenar por puntuación" - -# @ woocommerce -#: templates/loop/orderby.php:24 -msgid "Sort by newness" -msgstr "Odenar por novedades" - -# @ woocommerce -#: templates/loop/orderby.php:25 -msgid "Sort by price: low to high" -msgstr "Ordenar por precio: bajo a alto" - -# @ woocommerce -#: templates/loop/orderby.php:26 -msgid "Sort by price: high to low" -msgstr "Ordenar por precio: alto a bajo" - -# @ woocommerce -#: templates/loop/result-count.php:28 -msgid "Showing the single result" -msgstr "Mostrando el único resultado" - -# @ woocommerce -#: templates/loop/result-count.php:30 -msgid "Showing all %d results" -msgstr "Mostrar los %d resultados" - -# @ woocommerce -#: templates/loop/result-count.php:32 -msgctxt "%1$d = first, %2$d = last, %3$d = total" -msgid "Showing %1$d–%2$d of %3$d results" -msgstr "Mostrando %1$d–%2$d de %3$d resultados" - -# @ woocommerce -#: templates/loop/sale-flash.php:16 templates/single-product/sale-flash.php:16 -msgid "Sale!" -msgstr "Rebajado!" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:20 -#: templates/myaccount/form-lost-password.php:31 -msgid "New password" -msgstr "Nueva contraseña" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:24 -#: templates/myaccount/form-lost-password.php:35 -msgid "Re-enter new password" -msgstr "Vuelve a insertar tu nueva contraseña" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:29 -#: templates/myaccount/form-lost-password.php:46 -msgid "Save" -msgstr "Guardar" - -# @ woocommerce -#: templates/myaccount/form-edit-account.php:20 -msgid "First name" -msgstr "Primer Nombre" - -# @ woocommerce -#: templates/myaccount/form-edit-account.php:24 -msgid "Last name" -msgstr "Apellido" - -# @ woocommerce -#: templates/myaccount/form-edit-account.php:28 -#: templates/myaccount/form-login.php:64 -msgid "Email address" -msgstr "Dirección de Correo Electrónico" - -#: templates/myaccount/form-edit-account.php:32 -msgid "Password (leave blank to leave unchanged)" -msgstr "Contraseña (deje en blanco para dejar sin cambios)" - -# @ woocommerce -#: templates/myaccount/form-edit-account.php:36 -msgid "Confirm new password" -msgstr "Confirmar nueva contraseña" - -# @ woocommerce -#: templates/myaccount/form-edit-account.php:41 -msgid "Save changes" -msgstr "Guardar los cambios" - -# @ woocommerce -#: templates/myaccount/form-edit-address.php:14 -#: templates/myaccount/my-address.php:20 templates/order/order-details.php:130 -msgid "Shipping Address" -msgstr "Dirección de Envío" - -# @ woocommerce -#: templates/myaccount/form-edit-address.php:38 -msgid "Save Address" -msgstr "Guardar Dirección" - -# @ woocommerce -#: templates/myaccount/form-login.php:26 templates/myaccount/form-login.php:40 -#: templates/shop/form-login.php:31 -msgid "Login" -msgstr "Identificarse" - -# @ woocommerce -#: templates/myaccount/form-login.php:30 -msgid "Username or email address" -msgstr "Nombre de Usuario o correo electrónico" - -# @ woocommerce -#: templates/myaccount/form-login.php:34 templates/myaccount/form-login.php:69 -#: templates/shop/form-login.php:24 -msgid "Password" -msgstr "Contraseña" - -# @ woocommerce -#: templates/myaccount/form-login.php:40 templates/shop/form-login.php:33 -msgid "Lost Password?" -msgstr "¿Perdió su Contraseña?" - -# @ woocommerce -#: templates/myaccount/form-login.php:50 templates/myaccount/form-login.php:80 -msgid "Register" -msgstr "Registrar" - -# @ woocommerce -#: templates/myaccount/form-login.php:57 -msgid "Username" -msgstr "Nombre de Usuario" - -#: templates/myaccount/form-login.php:74 -msgid "Anti-spam" -msgstr "Anti-spam" - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:22 -msgid "" -"Lost your password? Please enter your username or email address. You will " -"receive a link to create a new password via email." -msgstr "" -"Perdistes tu constraseña? Por favor ingresa tu nombre de usuario o correo " -"electronico. Recibirás un enlace para crear una contraseña nueva por correo " -"electronico. " - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:24 -#: templates/shop/form-login.php:20 -msgid "Username or email" -msgstr "Nombre de Usuario o correo electrónico" - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:28 -msgid "Enter a new password below." -msgstr "Ingrese una nueva contraseña." - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:46 -msgid "Reset Password" -msgstr "Reajustar Contraseña" - -#: templates/myaccount/my-account.php:19 -msgid "Hello %s (not %s? Sign out)." -msgstr "Hola %s (no %s? Cerrar sesión)." - -# @ woocommerce -#: templates/myaccount/my-account.php:25 -msgid "" -"From your account dashboard you can view your recent orders, manage your " -"shipping and billing addresses and edit your password and " -"account details." -msgstr "" -"Desde la página de cuenta, usted puede ver sus pedidos recientes, gestionar " -"su dirección de envío, dirección de facturación y cambiar su " -"contraseña ." - -# @ woocommerce -#: templates/myaccount/my-address.php:17 -msgid "My Addresses" -msgstr "Mis direcciónes" - -# @ woocommerce -#: templates/myaccount/my-address.php:23 -msgid "My Address" -msgstr "Mi dirección" - -# @ woocommerce -#: templates/myaccount/my-address.php:35 -msgid "The following addresses will be used on the checkout page by default." -msgstr "" -"Las siguientes direcciones seran utilizadas por defecto en la página de pago." - -# @ woocommerce -#: templates/myaccount/my-address.php:64 -msgid "You have not set up this type of address yet." -msgstr "Aún no has configurado este tipo de dirección." - -# @ woocommerce -#: templates/myaccount/my-downloads.php:18 -msgid "Available downloads" -msgstr "Descargas disponibles" - -# @ woocommerce -#: templates/myaccount/my-downloads.php:27 -msgid "%s download remaining" -msgid_plural "%s downloads remaining" -msgstr[0] "%s descarga pendiente" -msgstr[1] "%s descargas pendientes" - -# @ woocommerce -#: templates/myaccount/my-orders.php:26 -msgid "Recent Orders" -msgstr "Pedidos Recientes" - -# @ woocommerce -#: templates/myaccount/my-orders.php:34 -msgid "Status" -msgstr "Estado" - -# @ woocommerce -#: templates/myaccount/my-orders.php:62 -msgid "%s for %s item" -msgid_plural "%s for %s items" -msgstr[0] "%s por %s item" -msgstr[1] "%s por %s items" - -# @ woocommerce -#: templates/myaccount/my-orders.php:77 -msgid "Cancel" -msgstr "Cancelar" - -# @ default -# @ woocommerce -#: templates/myaccount/my-orders.php:82 -msgid "View" -msgstr "Ver" - -# @ woocommerce -#: templates/order/form-tracking.php:17 -msgid "" -"To track your order please enter your Order ID in the box below and press " -"return. This was given to you on your receipt and in the confirmation email " -"you should have received." -msgstr "" -"Para el seguimiento de su pedido, por favor ingrese su ID de pedido en el " -"cuadro de abajo y pulse Intro. Esto se le envió en su recibo y en el correo " -"electrónico de confirmación que debe ha recibido." - -# @ woocommerce -#: templates/order/form-tracking.php:19 -msgid "Order ID" -msgstr "ID de pedido" - -# @ woocommerce -#: templates/order/form-tracking.php:19 -msgid "Found in your order confirmation email." -msgstr "Encontrado en el email de confirmación de pedido" - -# @ woocommerce -#: templates/order/form-tracking.php:20 -msgid "Billing Email" -msgstr "Correo electrónico de facturación" - -# @ woocommerce -#: templates/order/form-tracking.php:20 -msgid "Email you used during checkout." -msgstr "Correo electrónico que utilizó durante el pago." - -# @ woocommerce -#: templates/order/form-tracking.php:23 -msgid "Track" -msgstr "Serguir" - -# @ woocommerce -#: templates/order/order-details.php:16 -msgid "Order Details" -msgstr "Detalles del pedido" - -# @ woocommerce -#: templates/order/order-details.php:66 -msgid "Download file%s" -msgstr "Descargar archivo%s" - -# @ woocommerce -#: templates/order/order-details.php:102 -msgid "Telephone:" -msgstr "Teléfono:" - -# @ woocommerce -#: templates/order/tracking.php:18 -msgid "Order %s which was made %s has the status “%s”" -msgstr "Orden %s que fue realizada %s está en estado “%s”" - -# @ woocommerce -#: templates/order/tracking.php:18 -msgid "ago" -msgstr "atrás" - -# @ woocommerce -#: templates/order/tracking.php:20 -msgid "and was completed" -msgstr "y se completó" - -# @ woocommerce -#: templates/order/tracking.php:20 -msgid " ago" -msgstr " hace" - -# @ woocommerce -#: templates/shop/breadcrumb.php:63 -msgid "Products tagged “" -msgstr "Productos etiquetados “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:91 templates/shop/breadcrumb.php:188 -msgid "Search results for “" -msgstr "Resultados de la búsqueda para “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:146 -msgid "Error 404" -msgstr "Error 404" - -# @ woocommerce -#: templates/shop/breadcrumb.php:192 -msgid "Posts tagged “" -msgstr "Entradas etiquetadas “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:197 -msgid "Author:" -msgstr "Autor:" - -# @ woocommerce -#: templates/shop/breadcrumb.php:202 -msgid "Page" -msgstr "Página" - -# @ woocommerce -#: templates/single-product/add-to-cart/variable.php:25 -msgid "Choose an option" -msgstr "Escoge una opción" - -# @ woocommerce -#: templates/single-product/add-to-cart/variable.php:73 -msgid "Clear selection" -msgstr "Limpiar selección" - -#: templates/single-product/add-to-cart/variable.php:99 -msgid "This product is currently out of stock and unavailable." -msgstr "No existe disponibilidad de este producto ni está disponible." - -# @ woocommerce -#: templates/single-product/meta.php:20 -msgid "n/a" -msgstr "Sin datos" - -# @ woocommerce -#: templates/single-product/meta.php:24 -msgid "Category:" -msgid_plural "Categories:" -msgstr[0] "Categoría:" -msgstr[1] "Categorías:" - -# @ woocommerce -#: templates/single-product/meta.php:26 -msgid "Tag:" -msgid_plural "Tags:" -msgstr[0] "Etiqueta:" -msgstr[1] "Etiquetas:" - -# @ woocommerce -#: templates/single-product/product-attributes.php:28 -msgid "Weight" -msgstr "Peso" - -# @ woocommerce -#: templates/single-product/product-attributes.php:37 -msgid "Dimensions" -msgstr "Dimensiones" - -# @ woocommerce -#: templates/single-product/related.php:36 -msgid "Related Products" -msgstr "Productos Relacionados" - -# @ woocommerce -#: templates/single-product/review.php:26 -msgid "Rated %d out of 5" -msgstr "Calificación %d de 5" - -# @ woocommerce -#: templates/single-product/review.php:34 -msgid "Your comment is awaiting approval" -msgstr "Su comentario está pendiente de aprobación" - -# @ woocommerce -#: templates/single-product/review.php:43 -msgid "verified owner" -msgstr "usuario registrado" - -# @ woocommerce -#: templates/single-product/tabs/description.php:14 -msgid "Product Description" -msgstr "Descripción del Producto" - -# @ woocommerce -#: templates/single-product/up-sells.php:39 -msgid "You may also like…" -msgstr "También le recomendamos…" - -# @ woocommerce -#: templates/single-product-reviews.php:30 -msgid "%s review for %s" -msgid_plural "%s reviews for %s" -msgstr[0] "%s revisión para %s" -msgstr[1] "%s revisiones para %s" - -# @ woocommerce -#: templates/single-product-reviews.php:36 -#: templates/single-product-reviews.php:42 -msgid "Reviews" -msgstr "Comentarios" - -# @ woocommerce -#: templates/single-product-reviews.php:58 -msgid " Previous" -msgstr " Anterior" - -# @ woocommerce -#: templates/single-product-reviews.php:59 -msgid "Next " -msgstr "Siguiente " - -# @ woocommerce -#: templates/single-product-reviews.php:63 -msgid "Add Review" -msgstr "Añadir Comentario" - -# @ woocommerce -#: templates/single-product-reviews.php:65 -msgid "Add a review" -msgstr "Añadir un comentario" - -# @ woocommerce -#: templates/single-product-reviews.php:69 -msgid "Be the first to review" -msgstr "Sé el primero en opinar" - -# @ woocommerce -#: templates/single-product-reviews.php:71 -msgid "There are no reviews yet, would you like to %s submit yours%s?" -msgstr "" -"Todavía no hay comentarios, sin embargo, le gustaría %s dejar su opinión%s?" - -# @ woocommerce -#: templates/single-product-reviews.php:71 -msgid "Add Your Review" -msgstr "Agregar tu reseña" - -#: templates/single-product-reviews.php:81 -msgid "Leave a Reply to %s" -msgstr "Deja un comentario para %s" - -# @ woocommerce -#: templates/single-product-reviews.php:87 -msgid "Email" -msgstr "Email" - -# @ woocommerce -#: templates/single-product-reviews.php:90 -msgid "Submit" -msgstr "Enviar" - -# @ woocommerce -#: templates/single-product-reviews.php:97 -msgid "Your Rating" -msgstr "Su Puntuación" - -# @ woocommerce -#: templates/single-product-reviews.php:98 -msgid "Rate…" -msgstr "Tarifa…" - -# @ woocommerce -#: templates/single-product-reviews.php:99 -msgid "Perfect" -msgstr "Perfecto" - -# @ woocommerce -#: templates/single-product-reviews.php:100 -msgid "Good" -msgstr "Bueno" - -# @ woocommerce -#: templates/single-product-reviews.php:101 -msgid "Average" -msgstr "Normal" - -# @ woocommerce -#: templates/single-product-reviews.php:102 -msgid "Not that bad" -msgstr "No está tan mal" - -# @ woocommerce -#: templates/single-product-reviews.php:103 -msgid "Very Poor" -msgstr "Muy Pobre" - -# @ woocommerce -#: templates/single-product-reviews.php:108 -msgid "Your Review" -msgstr "Su opinion" - -# @ woocommerce -#: woocommerce-ajax.php:122 -msgid "Sorry, your session has expired." -msgstr "Lo sentimos, su sesión ha caducado." - -# @ woocommerce -#: woocommerce-ajax.php:122 -msgid "Return to homepage →" -msgstr "Volver a la página de inicio →" - -# @ woocommerce -#: woocommerce-ajax.php:262 woocommerce-ajax.php:296 woocommerce-ajax.php:319 -msgid "You do not have sufficient permissions to access this page." -msgstr "No tienes permisos suficientes para acceder a esta página." - -# @ woocommerce -#: woocommerce-ajax.php:264 woocommerce-ajax.php:297 woocommerce-ajax.php:320 -msgid "You have taken too long. Please go back and retry." -msgstr "" -"Has tardado demasiado tiempo. Por favor vuelve atràs y intentalo de nuevo." - -# @ woocommerce -#: woocommerce-ajax.php:556 -msgid "Same as parent" -msgstr "Igual que el superior" - -# @ woocommerce -#: woocommerce-ajax.php:557 -msgid "Standard" -msgstr "Estándar" - -# @ woocommerce -#: woocommerce-ajax.php:1053 -msgid "" -"No products had their stock reduced - they may not have stock management " -"enabled." -msgstr "" -"No se reducieron los inventario de producto - puede ser que no esté " -"habilitado el manejo de inventarios." - -# @ woocommerce -#: woocommerce-ajax.php:1097 woocommerce-ajax.php:1098 -msgid "Item #%s stock increased from %s to %s." -msgstr "Artículo #%s stock incrementado de %s a %s." - -# @ woocommerce -#: woocommerce-ajax.php:1105 -msgid "" -"No products had their stock increased - they may not have stock management " -"enabled." -msgstr "" -"No se incrementaron los inventarios de productos - puede ser que no tenga el " -"manejo de inventarios habilitado." - -# @ woocommerce -#: woocommerce-ajax.php:1126 -msgid "Value" -msgstr "Valor" - -# @ woocommerce -#: woocommerce-ajax.php:1364 -msgid "Delete note" -msgstr "Borrar nota" - -# @ woocommerce -#: woocommerce.php:181 -msgid "Docs" -msgstr "Docs" - -# @ woocommerce -#: woocommerce.php:182 -msgid "Premium Support" -msgstr "Soporte Premium" diff --git a/i18n/languages/woocommerce-et.mo b/i18n/languages/woocommerce-et.mo deleted file mode 100644 index 746796e1b96..00000000000 Binary files a/i18n/languages/woocommerce-et.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-et.po b/i18n/languages/woocommerce-et.po deleted file mode 100644 index 47c7a55651b..00000000000 --- a/i18n/languages/woocommerce-et.po +++ /dev/null @@ -1,7382 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce 2.1-X Front-end\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-10-03 01:54:35+00:00\n" -"PO-Revision-Date: 2013-11-12 16:14+0200\n" -"Last-Translator: Illimar Tambek \n" -"Language-Team: Divid \n" -"Language: et\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.5.7\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Poedit-SourceCharset: UTF-8\n" - -#: assets/js/admin/editor_plugin_lang.php:5 -msgid "Insert Shortcode" -msgstr "Sisesta lühikood" - -#: assets/js/admin/editor_plugin_lang.php:6 -msgid "Product price/cart button" -msgstr "Toote hinna/ostukorvi nupp" - -#: assets/js/admin/editor_plugin_lang.php:7 -msgid "Product by SKU/ID" -msgstr "Toode tootekoodi alusel" - -#: assets/js/admin/editor_plugin_lang.php:8 -msgid "Products by SKU/ID" -msgstr "Tooted tootekoodi alusel" - -#: assets/js/admin/editor_plugin_lang.php:9 -msgid "Product categories" -msgstr "Tootekategooriad" - -#: assets/js/admin/editor_plugin_lang.php:10 -msgid "Products by category slug" -msgstr "Tootekategooriad püsiviite alusel" - -#: assets/js/admin/editor_plugin_lang.php:11 -msgid "Recent products" -msgstr "Uusimad tooted" - -#: assets/js/admin/editor_plugin_lang.php:12 -msgid "Featured products" -msgstr "Esiletõstetud tooted" - -#: assets/js/admin/editor_plugin_lang.php:13 -msgid "Shop Messages" -msgstr "Poe sõnumid" - -#: assets/js/admin/editor_plugin_lang.php:14 -msgid "Pages" -msgstr "Lehed" - -#: assets/js/admin/editor_plugin_lang.php:15 includes/class-wc-install.php:214 -#: includes/widgets/class-wc-widget-cart.php:29 -#: includes/widgets/class-wc-widget-cart.php:57 -msgid "Cart" -msgstr "Ostukorv" - -#: assets/js/admin/editor_plugin_lang.php:16 includes/class-wc-install.php:219 -msgid "Checkout" -msgstr "Kassa" - -#: assets/js/admin/editor_plugin_lang.php:17 -msgid "Order tracking" -msgstr "Tellimuse jälgimine" - -#: assets/js/admin/editor_plugin_lang.php:18 includes/class-wc-install.php:224 -#: templates/checkout/thankyou.php:30 -msgid "My Account" -msgstr "Minu konto" - -#: assets/js/admin/editor_plugin_lang.php:19 -msgid "Edit Address" -msgstr "Muuda aadressi" - -#: i18n/states/AU.php:13 -msgid "Australian Capital Territory" -msgstr "Australian Capital Territory" - -#: i18n/states/AU.php:14 -msgid "New South Wales" -msgstr "New South Wales" - -#: i18n/states/AU.php:15 -msgid "Northern Territory" -msgstr "Northern Territory" - -#: i18n/states/AU.php:16 -msgid "Queensland" -msgstr "Queensland" - -#: i18n/states/AU.php:17 -msgid "South Australia" -msgstr "Lõuna-Austraalia" - -#: i18n/states/AU.php:18 -msgid "Tasmania" -msgstr "Tasmaania" - -#: i18n/states/AU.php:19 -msgid "Victoria" -msgstr "Victoria" - -#: i18n/states/AU.php:20 -msgid "Western Australia" -msgstr "Western Australia" - -#: i18n/states/BG.php:13 -msgid "Благоевград" -msgstr "Благоевград" - -#: i18n/states/BG.php:14 -msgid "Бургас" -msgstr "Бургас" - -#: i18n/states/BG.php:15 -msgid "Варна" -msgstr "Варна" - -#: i18n/states/BG.php:16 -msgid "Велико Търново" -msgstr "Велико Търново" - -#: i18n/states/BG.php:17 -msgid "Видин" -msgstr "Видин" - -#: i18n/states/BG.php:18 -msgid "Враца" -msgstr "Враца" - -#: i18n/states/BG.php:19 -msgid "Габрово" -msgstr "Габрово" - -#: i18n/states/BG.php:20 -msgid "Добрич" -msgstr "Добрич" - -#: i18n/states/BG.php:21 -msgid "Кърджали" -msgstr "Кърджали" - -#: i18n/states/BG.php:22 -msgid "Кюстендил" -msgstr "Кюстендил" - -#: i18n/states/BG.php:23 -msgid "Ловеч" -msgstr "Ловеч" - -#: i18n/states/BG.php:24 -msgid "Монтана" -msgstr "Монтана" - -#: i18n/states/BG.php:25 -msgid "Пазарджик" -msgstr "Пазарджик" - -#: i18n/states/BG.php:26 -msgid "Перник" -msgstr "Перник" - -#: i18n/states/BG.php:27 -msgid "Плевен" -msgstr "Плевен" - -#: i18n/states/BG.php:28 -msgid "Пловдив" -msgstr "Пловдив" - -#: i18n/states/BG.php:29 -msgid "Разград" -msgstr "Разград" - -#: i18n/states/BG.php:30 -msgid "Русе" -msgstr "Русе" - -#: i18n/states/BG.php:31 -msgid "Силистра" -msgstr "Силистра" - -#: i18n/states/BG.php:32 -msgid "Сливен" -msgstr "Сливен" - -#: i18n/states/BG.php:33 -msgid "Смолян" -msgstr "Смолян" - -#: i18n/states/BG.php:34 -msgid "София-област" -msgstr "София-област" - -#: i18n/states/BG.php:35 -msgid "София-град" -msgstr "София-град" - -#: i18n/states/BG.php:36 -msgid "Стара Загора" -msgstr "Стара Загора" - -#: i18n/states/BG.php:37 -msgid "Търговище" -msgstr "Търговище" - -#: i18n/states/BG.php:38 -msgid "Хасково" -msgstr "Хасково" - -#: i18n/states/BG.php:39 -msgid "Шумен" -msgstr "Шумен" - -#: i18n/states/BG.php:40 -msgid "Ямбол" -msgstr "Ямбол" - -#: i18n/states/BR.php:13 -msgid "Acre" -msgstr "Aaker" - -#: i18n/states/BR.php:14 -msgid "Alagoas" -msgstr "Alagoas" - -#: i18n/states/BR.php:15 -msgid "Amapá" -msgstr "Amapá" - -#: i18n/states/BR.php:16 -msgid "Amazonas" -msgstr "Amazonas" - -#: i18n/states/BR.php:17 -msgid "Bahia" -msgstr "Bahia" - -#: i18n/states/BR.php:18 -msgid "Ceará" -msgstr "Ceará" - -#: i18n/states/BR.php:19 -msgid "Distrito Federal" -msgstr "Distrito Federal" - -#: i18n/states/BR.php:20 -msgid "Espírito Santo" -msgstr "Espírito Santo" - -#: i18n/states/BR.php:21 -msgid "Goiás" -msgstr "Goiás" - -#: i18n/states/BR.php:22 -msgid "Maranhão" -msgstr "Maranhão" - -#: i18n/states/BR.php:23 -msgid "Mato Grosso" -msgstr "Mato Grosso" - -#: i18n/states/BR.php:24 -msgid "Mato Grosso do Sul" -msgstr "Mato Grosso do Sul" - -#: i18n/states/BR.php:25 -msgid "Minas Gerais" -msgstr "Minas Gerais" - -#: i18n/states/BR.php:26 -msgid "Pará" -msgstr "Pará" - -#: i18n/states/BR.php:27 -msgid "Paraíba" -msgstr "Paraíba" - -#: i18n/states/BR.php:28 -msgid "Paraná" -msgstr "Paraná" - -#: i18n/states/BR.php:29 -msgid "Pernambuco" -msgstr "Pernambuco" - -#: i18n/states/BR.php:30 -msgid "Piauí" -msgstr "Piauí" - -#: i18n/states/BR.php:31 -msgid "Rio de Janeiro" -msgstr "Rio de Janeiro" - -#: i18n/states/BR.php:32 -msgid "Rio Grande do Norte" -msgstr "Rio Grande do Norte" - -#: i18n/states/BR.php:33 -msgid "Rio Grande do Sul" -msgstr "Rio Grande do Sul" - -#: i18n/states/BR.php:34 -msgid "Rondônia" -msgstr "Rondônia" - -#: i18n/states/BR.php:35 -msgid "Roraima" -msgstr "Roraima" - -#: i18n/states/BR.php:36 -msgid "Santa Catarina" -msgstr "Santa Catarina" - -#: i18n/states/BR.php:37 -msgid "São Paulo" -msgstr "São Paulo" - -#: i18n/states/BR.php:38 -msgid "Sergipe" -msgstr "Sergipe" - -#: i18n/states/BR.php:39 -msgid "Tocantins" -msgstr "Tocantins" - -#: i18n/states/CA.php:13 -msgid "Alberta" -msgstr "Alberta" - -#: i18n/states/CA.php:14 -msgid "British Columbia" -msgstr "British Columbia" - -#: i18n/states/CA.php:15 -msgid "Manitoba" -msgstr "Manitoba" - -#: i18n/states/CA.php:16 -msgid "New Brunswick" -msgstr "New Brunswick" - -#: i18n/states/CA.php:17 -msgid "Newfoundland" -msgstr "Newfoundlandi" - -#: i18n/states/CA.php:18 -msgid "Northwest Territories" -msgstr "Northwest Territories" - -#: i18n/states/CA.php:19 -msgid "Nova Scotia" -msgstr "Nova Scotia" - -#: i18n/states/CA.php:20 -msgid "Nunavut" -msgstr "Nunavut" - -#: i18n/states/CA.php:21 -msgid "Ontario" -msgstr "Ontario" - -#: i18n/states/CA.php:22 -msgid "Prince Edward Island" -msgstr "Prints Edwardi saar" - -#: i18n/states/CA.php:23 -msgid "Quebec" -msgstr "Quebec" - -#: i18n/states/CA.php:24 -msgid "Saskatchewan" -msgstr "Saskatchewan" - -#: i18n/states/CA.php:25 -msgid "Yukon Territory" -msgstr "Yukon Territory" - -#: i18n/states/CN.php:13 -msgid "Yunnan / 云南" -msgstr "Yunnan / 云南" - -#: i18n/states/CN.php:14 -msgid "Beijing / 北京" -msgstr "Beijing / 北京" - -#: i18n/states/CN.php:15 -msgid "Tianjin / 天津" -msgstr "Tianjin / 天津" - -#: i18n/states/CN.php:16 -msgid "Hebei / 河北" -msgstr "Hebei / 河北" - -#: i18n/states/CN.php:17 -msgid "Shanxi / 山西" -msgstr "Shanxi / 山西" - -#: i18n/states/CN.php:18 -msgid "Inner Mongolia / 內蒙古" -msgstr "Inner Mongolia / 内蒙古" - -#: i18n/states/CN.php:19 -msgid "Liaoning / 辽宁" -msgstr "Liaoning / 辽宁" - -#: i18n/states/CN.php:20 -msgid "Jilin / 吉林" -msgstr "Jilin / 吉林" - -#: i18n/states/CN.php:21 -msgid "Heilongjiang / 黑龙江" -msgstr "Heilongjiang / 黑龙江" - -#: i18n/states/CN.php:22 -msgid "Shanghai / 上海" -msgstr "Shanghai / 上海" - -#: i18n/states/CN.php:23 -msgid "Jiangsu / 江苏" -msgstr "Jiangsu / 江苏" - -#: i18n/states/CN.php:24 -msgid "Zhejiang / 浙江" -msgstr "Zhejiang / 浙江" - -#: i18n/states/CN.php:25 -msgid "Anhui / 安徽" -msgstr "Anhui / 安徽" - -#: i18n/states/CN.php:26 -msgid "Fujian / 福建" -msgstr "Fujian / 福建" - -#: i18n/states/CN.php:27 -msgid "Jiangxi / 江西" -msgstr "Jiangxi / 江西" - -#: i18n/states/CN.php:28 -msgid "Shandong / 山东" -msgstr "Shandong / 山东" - -#: i18n/states/CN.php:29 -msgid "Henan / 河南" -msgstr "Henan / 河南" - -#: i18n/states/CN.php:30 -msgid "Hubei / 湖北" -msgstr "Hubei / 湖北" - -#: i18n/states/CN.php:31 -msgid "Hunan / 湖南" -msgstr "Hunan / 湖南" - -#: i18n/states/CN.php:32 -msgid "Guangdong / 广东" -msgstr "Guangdong / 广东" - -#: i18n/states/CN.php:33 -msgid "Guangxi Zhuang / 广西壮族" -msgstr "Guangxi Zhuang / 广西 壮族" - -#: i18n/states/CN.php:34 -msgid "Hainan / 海南" -msgstr "Hainan / 海南" - -#: i18n/states/CN.php:35 -msgid "Chongqing / 重庆" -msgstr "Chongqing / 重庆" - -#: i18n/states/CN.php:36 -msgid "Sichuan / 四川" -msgstr "Sichuan / 四川" - -#: i18n/states/CN.php:37 -msgid "Guizhou / 贵州" -msgstr "Guizhou / 贵州" - -#: i18n/states/CN.php:38 -msgid "Shaanxi / 陕西" -msgstr "Shaanxi / 陕西" - -#: i18n/states/CN.php:39 -msgid "Gansu / 甘肃" -msgstr "Gansu / 甘肃" - -#: i18n/states/CN.php:40 -msgid "Qinghai / 青海" -msgstr "Qinghai / 青海" - -#: i18n/states/CN.php:41 -msgid "Ningxia Hui / 宁夏" -msgstr "Ningxia Hui / 宁夏" - -#: i18n/states/CN.php:42 -msgid "Macau / 澳门" -msgstr "Macau / 澳门" - -#: i18n/states/CN.php:43 -msgid "Tibet / 西藏" -msgstr "Tiibet / 西藏" - -#: i18n/states/CN.php:44 -msgid "Xinjiang / 新疆" -msgstr "Xinjiang / 新疆" - -#: i18n/states/ES.php:13 -msgid "A Coruña" -msgstr "A Coruña" - -#: i18n/states/ES.php:14 -msgid "Álava" -msgstr "Álava" - -#: i18n/states/ES.php:15 -msgid "Albacete" -msgstr "Albacete" - -#: i18n/states/ES.php:16 -msgid "Alicante" -msgstr "Alicante" - -#: i18n/states/ES.php:17 -msgid "Almería" -msgstr "Almería" - -#: i18n/states/ES.php:18 -msgid "Asturias" -msgstr "Astuuria" - -#: i18n/states/ES.php:19 -msgid "Ávila" -msgstr "Ávila" - -#: i18n/states/ES.php:20 -msgid "Badajoz" -msgstr "Badajoz" - -#: i18n/states/ES.php:21 -msgid "Baleares" -msgstr "Baleaaride" - -#: i18n/states/ES.php:22 -msgid "Barcelona" -msgstr "Barcelona" - -#: i18n/states/ES.php:23 -msgid "Burgos" -msgstr "Burgos" - -#: i18n/states/ES.php:24 -msgid "Cáceres" -msgstr "Cáceres" - -#: i18n/states/ES.php:25 -msgid "Cádiz" -msgstr "Cádiz" - -#: i18n/states/ES.php:26 -msgid "Cantabria" -msgstr "Cantabria" - -#: i18n/states/ES.php:27 -msgid "Castellón" -msgstr "Castellón" - -#: i18n/states/ES.php:28 -msgid "Ceuta" -msgstr "Ceuta" - -#: i18n/states/ES.php:29 -msgid "Ciudad Real" -msgstr "Ciudad Real" - -#: i18n/states/ES.php:30 -msgid "Córdoba" -msgstr "Córdoba" - -#: i18n/states/ES.php:31 -msgid "Cuenca" -msgstr "Cuenca" - -#: i18n/states/ES.php:32 -msgid "Girona" -msgstr "Girona" - -#: i18n/states/ES.php:33 -msgid "Granada" -msgstr "Granada" - -#: i18n/states/ES.php:34 -msgid "Guadalajara" -msgstr "Guadalajara" - -#: i18n/states/ES.php:35 -msgid "Guipúzcoa" -msgstr "Guipúzcoa" - -#: i18n/states/ES.php:36 -msgid "Huelva" -msgstr "Huelva" - -#: i18n/states/ES.php:37 -msgid "Huesca" -msgstr "Huesca" - -#: i18n/states/ES.php:38 -msgid "Jaén" -msgstr "Jaén" - -#: i18n/states/ES.php:39 -msgid "La Rioja" -msgstr "La Rioja" - -#: i18n/states/ES.php:40 -msgid "Las Palmas" -msgstr "Las Palmas" - -#: i18n/states/ES.php:41 -msgid "León" -msgstr "León" - -#: i18n/states/ES.php:42 -msgid "Lleida" -msgstr "Lleida" - -#: i18n/states/ES.php:43 -msgid "Lugo" -msgstr "Lugo" - -#: i18n/states/ES.php:44 -msgid "Madrid" -msgstr "Madrid" - -#: i18n/states/ES.php:45 -msgid "Málaga" -msgstr "Malaga" - -#: i18n/states/ES.php:46 -msgid "Melilla" -msgstr "Melilla" - -#: i18n/states/ES.php:47 -msgid "Murcia" -msgstr "Murcia" - -#: i18n/states/ES.php:48 -msgid "Navarra" -msgstr "Navarra" - -#: i18n/states/ES.php:49 -msgid "Ourense" -msgstr "Ourense" - -#: i18n/states/ES.php:50 -msgid "Palencia" -msgstr "Palencia" - -#: i18n/states/ES.php:51 -msgid "Pontevedra" -msgstr "Pontevedra" - -#: i18n/states/ES.php:52 -msgid "Salamanca" -msgstr "Salamanca" - -#: i18n/states/ES.php:53 -msgid "Santa Cruz de Tenerife" -msgstr "Santa Cruz de Tenerife" - -#: i18n/states/ES.php:54 -msgid "Segovia" -msgstr "Segovia" - -#: i18n/states/ES.php:55 -msgid "Sevilla" -msgstr "Sevilla" - -#: i18n/states/ES.php:56 -msgid "Soria" -msgstr "Soria" - -#: i18n/states/ES.php:57 -msgid "Tarragona" -msgstr "Tarragona" - -#: i18n/states/ES.php:58 -msgid "Teruel" -msgstr "Teruel" - -#: i18n/states/ES.php:59 -msgid "Toledo" -msgstr "Toledo" - -#: i18n/states/ES.php:60 -msgid "Valencia" -msgstr "Valencia" - -#: i18n/states/ES.php:61 -msgid "Valladolid" -msgstr "Valladolid" - -#: i18n/states/ES.php:62 -msgid "Vizcaya" -msgstr "Vizcaya" - -#: i18n/states/ES.php:63 -msgid "Zamora" -msgstr "Zamora" - -#: i18n/states/ES.php:64 -msgid "Zaragoza" -msgstr "Zaragoza" - -#: i18n/states/HK.php:13 -msgid "Hong Kong Island" -msgstr "Hongkongi saar" - -#: i18n/states/HK.php:14 -msgid "Kowloon" -msgstr "Kowloon" - -#: i18n/states/HK.php:15 -msgid "New Territories" -msgstr "New Territories" - -#: i18n/states/HU.php:13 -msgid "Bács-Kiskun" -msgstr "Bács-Kiskun" - -#: i18n/states/HU.php:14 -msgid "Békés" -msgstr "Békés" - -#: i18n/states/HU.php:15 -msgid "Baranya" -msgstr "Baranya" - -#: i18n/states/HU.php:16 -msgid "Borsod-Abaúj-Zemplén" -msgstr "Borsod-Abaúj-Zemplén" - -#: i18n/states/HU.php:17 -msgid "Budapest" -msgstr "Budapest" - -#: i18n/states/HU.php:18 -msgid "Csongrád" -msgstr "Csongrád" - -#: i18n/states/HU.php:19 -msgid "Fejér" -msgstr "Fejér" - -#: i18n/states/HU.php:20 -msgid "Győr-Moson-Sopron" -msgstr "Győr-Moson-Sopron" - -#: i18n/states/HU.php:21 -msgid "Hajdú-Bihar" -msgstr "Hajdú-Bihar" - -#: i18n/states/HU.php:22 -msgid "Heves" -msgstr "Heves" - -#: i18n/states/HU.php:23 -msgid "Jász-Nagykun-Szolnok" -msgstr "Jász-Nagykun-Szolnok" - -#: i18n/states/HU.php:24 -msgid "Komárom-Esztergom" -msgstr "Komárom-Esztergom" - -#: i18n/states/HU.php:25 -msgid "Nógrád" -msgstr "Nógrád" - -#: i18n/states/HU.php:26 -msgid "Pest" -msgstr "Pest" - -#: i18n/states/HU.php:27 -msgid "Somogy" -msgstr "Somogy" - -#: i18n/states/HU.php:28 -msgid "Szabolcs-Szatmár-Bereg" -msgstr "Szabolcs-Szatmár-Bereg" - -#: i18n/states/HU.php:29 -msgid "Tolna" -msgstr "Tolna" - -#: i18n/states/HU.php:30 -msgid "Vas" -msgstr "Vas" - -#: i18n/states/HU.php:31 -msgid "Veszprém" -msgstr "Veszprém" - -#: i18n/states/HU.php:32 -msgid "Zala" -msgstr "Zala" - -#: i18n/states/HZ.php:13 i18n/states/NZ.php:14 -msgid "Auckland" -msgstr "Auckland" - -#: i18n/states/HZ.php:14 i18n/states/NZ.php:16 -msgid "Bay of Plenty" -msgstr "Bay of Plenty" - -#: i18n/states/HZ.php:15 i18n/states/NZ.php:25 -msgid "Canterbury" -msgstr "Canterbury" - -#: i18n/states/HZ.php:16 i18n/states/NZ.php:18 -msgid "Hawke’s Bay" -msgstr "Hawke 's Bay" - -#: i18n/states/HZ.php:17 i18n/states/NZ.php:19 -msgid "Manawatu-Wanganui" -msgstr "Manawatu-Wanganui" - -#: i18n/states/HZ.php:18 i18n/states/NZ.php:22 -msgid "Marlborough" -msgstr "Marlborough" - -#: i18n/states/HZ.php:19 i18n/states/NZ.php:21 -msgid "Nelson" -msgstr "Nelson" - -#: i18n/states/HZ.php:20 i18n/states/NZ.php:13 -msgid "Northland" -msgstr "Põhjamaa" - -#: i18n/states/HZ.php:21 i18n/states/NZ.php:26 -msgid "Otago" -msgstr "Otago" - -#: i18n/states/HZ.php:22 i18n/states/NZ.php:27 -msgid "Southland" -msgstr "Southland" - -#: i18n/states/HZ.php:23 i18n/states/NZ.php:17 -msgid "Taranaki" -msgstr "Taranaki" - -#: i18n/states/HZ.php:24 i18n/states/NZ.php:23 -msgid "Tasman" -msgstr "Tasman" - -#: i18n/states/HZ.php:25 i18n/states/NZ.php:15 -msgid "Waikato" -msgstr "Waikato" - -#: i18n/states/HZ.php:26 i18n/states/NZ.php:20 -msgid "Wellington" -msgstr "Wellington" - -#: i18n/states/HZ.php:27 i18n/states/NZ.php:24 -msgid "West Coast" -msgstr "West Coast" - -#: i18n/states/ID.php:13 -msgid "Daerah Istimewa Aceh" -msgstr "Daerah Istimewa Aceh" - -#: i18n/states/ID.php:14 -msgid "Sumatera Utara" -msgstr "Sumatera Utara" - -#: i18n/states/ID.php:15 -msgid "Sumatera Barat" -msgstr "Sumatera Barat" - -#: i18n/states/ID.php:16 -msgid "Riau" -msgstr "Riau" - -#: i18n/states/ID.php:17 -msgid "Kepulauan Riau" -msgstr "Kepulauan Riau" - -#: i18n/states/ID.php:18 -msgid "Jambi" -msgstr "Jambi" - -#: i18n/states/ID.php:19 -msgid "Sumatera Selatan" -msgstr "Sumatera Selatan" - -#: i18n/states/ID.php:20 -msgid "Bangka Belitung" -msgstr "Bangka Belitung" - -#: i18n/states/ID.php:21 -msgid "Bengkulu" -msgstr "Bengkulu" - -#: i18n/states/ID.php:22 -msgid "Lampung" -msgstr "Lampung" - -#: i18n/states/ID.php:23 -msgid "DKI Jakarta" -msgstr "DKI Jakarta" - -#: i18n/states/ID.php:24 -msgid "Jawa Barat" -msgstr "Jawa Barat" - -#: i18n/states/ID.php:25 -msgid "Banten" -msgstr "Banten" - -#: i18n/states/ID.php:26 -msgid "Jawa Tengah" -msgstr "Jawa Tengah" - -#: i18n/states/ID.php:27 -msgid "Jawa Timur" -msgstr "Jawa Timur" - -#: i18n/states/ID.php:28 -msgid "Daerah Istimewa Yogyakarta" -msgstr "Daerah Istimewa Yogyakarta" - -#: i18n/states/ID.php:29 -msgid "Bali" -msgstr "Bali" - -#: i18n/states/ID.php:30 -msgid "Nusa Tenggara Barat" -msgstr "Nusa Tenggara Barat" - -#: i18n/states/ID.php:31 -msgid "Nusa Tenggara Timur" -msgstr "Nusa Tenggara Timur" - -#: i18n/states/ID.php:32 -msgid "Kalimantan Barat" -msgstr "Kalimantan Barat" - -#: i18n/states/ID.php:33 -msgid "Kalimantan Tengah" -msgstr "Kalimantan Tengah" - -#: i18n/states/ID.php:34 -msgid "Kalimantan Timur" -msgstr "Kalimantan Timur" - -#: i18n/states/ID.php:35 -msgid "Kalimantan Selatan" -msgstr "Kalimantan Selatan" - -#: i18n/states/ID.php:36 -msgid "Kalimantan Utara" -msgstr "Kalimantan Utara" - -#: i18n/states/ID.php:37 -msgid "Sulawesi Utara" -msgstr "Sulawesi Utara" - -#: i18n/states/ID.php:38 -msgid "Sulawesi Tengah" -msgstr "Sulawesi Tengah" - -#: i18n/states/ID.php:39 -msgid "Sulawesi Tenggara" -msgstr "Sulawesi Tenggara" - -#: i18n/states/ID.php:40 -msgid "Sulawesi Barat" -msgstr "Sulawesi Barat" - -#: i18n/states/ID.php:41 -msgid "Sulawesi Selatan" -msgstr "Sulawesi Selatan" - -#: i18n/states/ID.php:42 -msgid "Gorontalo" -msgstr "Gorontalo" - -#: i18n/states/ID.php:43 -msgid "Maluku" -msgstr "Maluku" - -#: i18n/states/ID.php:44 -msgid "Maluku Utara" -msgstr "Maluku Utara" - -#: i18n/states/ID.php:45 -msgid "Papua" -msgstr "Papua" - -#: i18n/states/ID.php:46 -msgid "Papua Barat" -msgstr "Papua Barat" - -#: i18n/states/IN.php:13 -msgid "Andra Pradesh" -msgstr "Andra Pradesh" - -#: i18n/states/IN.php:14 -msgid "Arunachal Pradesh" -msgstr "Arunachal Pradesh" - -#: i18n/states/IN.php:15 -msgid "Assam" -msgstr "Assam" - -#: i18n/states/IN.php:16 -msgid "Bihar" -msgstr "Bihar" - -#: i18n/states/IN.php:17 -msgid "Chhattisgarh" -msgstr "Chhattisgarh" - -#: i18n/states/IN.php:18 -msgid "Goa" -msgstr "Goa" - -#: i18n/states/IN.php:19 -msgid "Gujarat" -msgstr "Gujarat" - -#: i18n/states/IN.php:20 -msgid "Haryana" -msgstr "Haryana" - -#: i18n/states/IN.php:21 -msgid "Himachal Pradesh" -msgstr "Himachal Pradesh" - -#: i18n/states/IN.php:22 -msgid "Jammu and Kashmir" -msgstr "Jammu ja Kashmiri" - -#: i18n/states/IN.php:23 -msgid "Jharkhand" -msgstr "Jharkhand" - -#: i18n/states/IN.php:24 -msgid "Karnataka" -msgstr "Karnataka" - -#: i18n/states/IN.php:25 -msgid "Kerala" -msgstr "Kerala" - -#: i18n/states/IN.php:26 -msgid "Madhya Pradesh" -msgstr "Madhya Pradesh" - -#: i18n/states/IN.php:27 -msgid "Maharashtra" -msgstr "Maharashtra" - -#: i18n/states/IN.php:28 -msgid "Manipur" -msgstr "Manipur" - -#: i18n/states/IN.php:29 -msgid "Meghalaya" -msgstr "Meghālaya" - -#: i18n/states/IN.php:30 -msgid "Mizoram" -msgstr "Mizoram" - -#: i18n/states/IN.php:31 -msgid "Nagaland" -msgstr "Nagaland" - -#: i18n/states/IN.php:32 -msgid "Orissa" -msgstr "Orissa" - -#: i18n/states/IN.php:33 -msgid "Punjab" -msgstr "Punjab" - -#: i18n/states/IN.php:34 -msgid "Rajasthan" -msgstr "Rajasthan" - -#: i18n/states/IN.php:35 -msgid "Sikkim" -msgstr "Sikkim" - -#: i18n/states/IN.php:36 -msgid "Tamil Nadu" -msgstr "Tamil Nadu" - -#: i18n/states/IN.php:37 -msgid "Tripura" -msgstr "Tripura" - -#: i18n/states/IN.php:38 -msgid "Uttaranchal" -msgstr "Uttaranchal" - -#: i18n/states/IN.php:39 -msgid "Uttar Pradesh" -msgstr "Uttar Pradesh" - -#: i18n/states/IN.php:40 -msgid "West Bengal" -msgstr "West Bengal" - -#: i18n/states/IN.php:41 -msgid "Andaman and Nicobar Islands" -msgstr "Andamani ja Nicobarid" - -#: i18n/states/IN.php:42 -msgid "Chandigarh" -msgstr "Chandigarh" - -#: i18n/states/IN.php:43 -msgid "Dadar and Nagar Haveli" -msgstr "Dadar ja Nagar Haveli" - -#: i18n/states/IN.php:44 -msgid "Daman and Diu" -msgstr "Daman ja Diu" - -#: i18n/states/IN.php:45 -msgid "Delhi" -msgstr "Delhi" - -#: i18n/states/IN.php:46 -msgid "Lakshadeep" -msgstr "Lakshadeep" - -#: i18n/states/IN.php:47 -msgid "Pondicherry (Puducherry)" -msgstr "Pondicherry (Puducherry)" - -#: i18n/states/JP.php:13 -msgid "Hokkaido" -msgstr "Hokkaido" - -#: i18n/states/JP.php:14 -msgid "Aomori" -msgstr "Aomori" - -#: i18n/states/JP.php:15 -msgid "Iwate" -msgstr "Iwate" - -#: i18n/states/JP.php:16 -msgid "Miyagi" -msgstr "Miyagi" - -#: i18n/states/JP.php:17 -msgid "Akita" -msgstr "Akita" - -#: i18n/states/JP.php:18 -msgid "Yamagata" -msgstr "Yamagata" - -#: i18n/states/JP.php:19 -msgid "Fukushima" -msgstr "Fukushima" - -#: i18n/states/JP.php:20 -msgid "Ibaraki" -msgstr "Ibaraki" - -#: i18n/states/JP.php:21 -msgid "Tochigi" -msgstr "Tochigi" - -#: i18n/states/JP.php:22 -msgid "Gunma" -msgstr "Gunma" - -#: i18n/states/JP.php:23 -msgid "Saitama" -msgstr "Saitama" - -#: i18n/states/JP.php:24 -msgid "Chiba" -msgstr "Chiba" - -#: i18n/states/JP.php:25 -msgid "Tokyo" -msgstr "Tokyo" - -#: i18n/states/JP.php:26 -msgid "Kanagawa" -msgstr "Kanagawa" - -#: i18n/states/JP.php:27 -msgid "Niigata" -msgstr "Niigata" - -#: i18n/states/JP.php:28 -msgid "Toyama" -msgstr "Toyama" - -#: i18n/states/JP.php:29 -msgid "Ishikawa" -msgstr "Ishikawa" - -#: i18n/states/JP.php:30 -msgid "Fukui" -msgstr "Fukui" - -#: i18n/states/JP.php:31 -msgid "Yamanashi" -msgstr "Yamanashi" - -#: i18n/states/JP.php:32 -msgid "Nagano" -msgstr "Nagano" - -#: i18n/states/JP.php:33 -msgid "Gifu" -msgstr "Gifu" - -#: i18n/states/JP.php:34 -msgid "Shizuoka" -msgstr "Shizuoka" - -#: i18n/states/JP.php:35 -msgid "Aichi" -msgstr "Aichi" - -#: i18n/states/JP.php:36 -msgid "Mie" -msgstr "Mie" - -#: i18n/states/JP.php:37 -msgid "Shiga" -msgstr "Shiga" - -#: i18n/states/JP.php:38 -msgid "Kyouto" -msgstr "Kyouto" - -#: i18n/states/JP.php:39 -msgid "Osaka" -msgstr "Osaka" - -#: i18n/states/JP.php:40 -msgid "Hyougo" -msgstr "Hyougo" - -#: i18n/states/JP.php:41 -msgid "Nara" -msgstr "Nara" - -#: i18n/states/JP.php:42 -msgid "Wakayama" -msgstr "Wakayama" - -#: i18n/states/JP.php:43 -msgid "Tottori" -msgstr "Tottori" - -#: i18n/states/JP.php:44 -msgid "Shimane" -msgstr "Shimane" - -#: i18n/states/JP.php:45 -msgid "Okayama" -msgstr "Okayama" - -#: i18n/states/JP.php:46 -msgid "Hiroshima" -msgstr "Hiroshima" - -#: i18n/states/JP.php:47 -msgid "Yamaguchi" -msgstr "Yamaguchi" - -#: i18n/states/JP.php:48 -msgid "Tokushima" -msgstr "Tokushima" - -#: i18n/states/JP.php:49 -msgid "Kagawa" -msgstr "Kagawa" - -#: i18n/states/JP.php:50 -msgid "Ehime" -msgstr "Ehime" - -#: i18n/states/JP.php:51 -msgid "Kochi" -msgstr "Kochi" - -#: i18n/states/JP.php:52 -msgid "Fukuoka" -msgstr "Fukuoka" - -#: i18n/states/JP.php:53 -msgid "Saga" -msgstr "Saaga" - -#: i18n/states/JP.php:54 -msgid "Nagasaki" -msgstr "Nagasaki" - -#: i18n/states/JP.php:55 -msgid "Kumamoto" -msgstr "Kumamoto" - -#: i18n/states/JP.php:56 -msgid "Oita" -msgstr "Oita" - -#: i18n/states/JP.php:57 -msgid "Miyazaki" -msgstr "Miyazaki" - -#: i18n/states/JP.php:58 -msgid "Kagoshima" -msgstr "Kagoshima" - -#: i18n/states/JP.php:59 -msgid "Okinawa" -msgstr "Okinawa" - -#: i18n/states/MY.php:13 -msgid "Johor" -msgstr "Johor" - -#: i18n/states/MY.php:14 -msgid "Kedah" -msgstr "Kedah" - -#: i18n/states/MY.php:15 -msgid "Kelantan" -msgstr "Kelantan" - -#: i18n/states/MY.php:16 -msgid "Melaka" -msgstr "Melaka" - -#: i18n/states/MY.php:17 -msgid "Negeri Sembilan" -msgstr "Negeri Sembilan" - -#: i18n/states/MY.php:18 -msgid "Pahang" -msgstr "Pahangi" - -#: i18n/states/MY.php:19 -msgid "Perak" -msgstr "Perakin" - -#: i18n/states/MY.php:20 -msgid "Perlis" -msgstr "Perlis" - -#: i18n/states/MY.php:21 -msgid "Pulau Pinang" -msgstr "Pulau Pinang" - -#: i18n/states/MY.php:22 -msgid "Sabah" -msgstr "Sabah" - -#: i18n/states/MY.php:23 -msgid "Sarawak" -msgstr "Sarawak" - -#: i18n/states/MY.php:24 -msgid "Selangor" -msgstr "Selangor" - -#: i18n/states/MY.php:25 -msgid "Terengganu" -msgstr "Terengganu" - -#: i18n/states/MY.php:26 -msgid "W.P. Kuala Lumpur" -msgstr "WP Kuala Lumpur" - -#: i18n/states/MY.php:27 -msgid "W.P. Labuan" -msgstr "WP Labuan" - -#: i18n/states/MY.php:28 -msgid "W.P. Putrajaya" -msgstr "WP Putrajaya" - -#: i18n/states/TH.php:13 -msgid "" -"Amnat Charoen (อำนาจเจร" -"ิญ)" -msgstr "Amnat Charoen (อำนาจเจริญ)" - -#: i18n/states/TH.php:14 -msgid "Ang Thong (อ่างทอง)" -msgstr "Ang Thong (อ่างทอง)" - -#: i18n/states/TH.php:15 -msgid "" -"Ayutthaya (พระนครศรี" -"อยุธยา)" -msgstr "Ayutthaya" - -#: i18n/states/TH.php:16 -msgid "" -"Bangkok (กรุงเทพมห" -"านคร)" -msgstr "Bangkok (กรุงเทพ มหา น ค ร)" - -#: i18n/states/TH.php:17 -msgid "Bueng Kan (บึงกาฬ)" -msgstr "Bueng Kan (บึงกาฬ)" - -#: i18n/states/TH.php:18 -msgid "" -"Buri Ram (บุรีรัมย์)" -msgstr "Buri Ram (บุรีรัมย์)" - -#: i18n/states/TH.php:19 -msgid "" -"Chachoengsao (ฉะเชิงเทร" -"า)" -msgstr "Chachoengsao (ฉะเชิงเทรา)" - -#: i18n/states/TH.php:20 -msgid "Chai Nat (ชัยนาท)" -msgstr "Chai Nat (ชัยนาท)" - -#: i18n/states/TH.php:21 -msgid "Chaiyaphum (ชัยภูมิ)" -msgstr "Chaiyaphum (ชัยภูมิ)" - -#: i18n/states/TH.php:22 -msgid "Chanthaburi (จันทบุรี)" -msgstr "Chanthaburi (จันทบุรี)" - -#: i18n/states/TH.php:23 -msgid "" -"Chiang Mai (เชียงใหม่)" -msgstr "Chiang Mai (เชียงใหม่)" - -#: i18n/states/TH.php:24 -msgid "Chiang Rai (เชียงราย)" -msgstr "Chiang Rai (เชียงราย)" - -#: i18n/states/TH.php:25 -msgid "Chonburi (ชลบุรี)" -msgstr "Chonburi (ชลบุรี)" - -#: i18n/states/TH.php:26 -msgid "Chumphon (ชุมพร)" -msgstr "Chumphon (ชุมพร)" - -#: i18n/states/TH.php:27 -msgid "" -"Kalasin (กาฬสินธุ์)" -msgstr "Kalasin (กาฬสินธุ์)" - -#: i18n/states/TH.php:28 -msgid "" -"Kamphaeng Phet (กำแพงเพช" -"ร)" -msgstr "Kamphaeng Phet (กำแพงเพชร)" - -#: i18n/states/TH.php:29 -msgid "" -"Kanchanaburi (กาญจนบุร" -"ี)" -msgstr "Kanchanaburi (กาญจนบุรี)" - -#: i18n/states/TH.php:30 -msgid "Khon Kaen (ขอนแก่น)" -msgstr "Khon Kaen (ขอนแก่น)" - -#: i18n/states/TH.php:31 -msgid "Krabi (กระบี่)" -msgstr "Krabi (กระบี่)" - -#: i18n/states/TH.php:32 -msgid "Lampang (ลำปาง)" -msgstr "Lampang (ลำปาง)" - -#: i18n/states/TH.php:33 -msgid "Lamphun (ลำพูน)" -msgstr "Lamphun (ลำพูน)" - -#: i18n/states/TH.php:34 -msgid "Loei (เลย)" -msgstr "Loei (เลย)" - -#: i18n/states/TH.php:35 -msgid "Lopburi (ลพบุรี)" -msgstr "Lopburi (ลพบุรี)" - -#: i18n/states/TH.php:36 -msgid "" -"Mae Hong Son (แม่ฮ่องสอ" -"น)" -msgstr "Mae Hong Son (แม่ฮ่องสอน)" - -#: i18n/states/TH.php:37 -msgid "" -"Maha Sarakham (มหาสารคา" -"ม)" -msgstr "Maha Sarakham (มหาสารคาม)" - -#: i18n/states/TH.php:38 -msgid "Mukdahan (มุกดาหาร)" -msgstr "Mukdahan (มุกดาหาร)" - -#: i18n/states/TH.php:39 -msgid "Nakhon Nayok (นครนายก)" -msgstr "Nakhon Nayok (นครนายก)" - -#: i18n/states/TH.php:40 -msgid "Nakhon Pathom (นครปฐม)" -msgstr "Nakhon Pathom (นครปฐม)" - -#: i18n/states/TH.php:41 -msgid "Nakhon Phanom (นครพนม)" -msgstr "Nakhon Phanom (นครพนม)" - -#: i18n/states/TH.php:42 -msgid "" -"Nakhon Ratchasima (นครราชสี" -"มา)" -msgstr "Nakhon Ratchasima (นครราชสีมา)" - -#: i18n/states/TH.php:43 -msgid "" -"Nakhon Sawan (นครสวรรค" -"์)" -msgstr "Nakhon Sawan (นครสวรรค์)" - -#: i18n/states/TH.php:44 -msgid "" -"Nakhon Si Thammarat (นครศรีธร" -"รมราช)" -msgstr "Nakhon Si Thammarat (นคร ศรี ธรรม ร & # 3634; ช)" - -#: i18n/states/TH.php:45 -msgid "Nan (น่าน)" -msgstr "Nan (น่าน)" - -#: i18n/states/TH.php:46 -msgid "Narathiwat (นราธิวาส)" -msgstr "Narathiwat (นราธิวาส)" - -#: i18n/states/TH.php:47 -msgid "" -"Nong Bua Lam Phu (หนองบัวล" -"ำภู)" -msgstr "Nong Bua Lam Phu (หนองบัวลำภู)" - -#: i18n/states/TH.php:48 -msgid "Nong Khai (หนองคาย)" -msgstr "Nong Khai (หนองคาย)" - -#: i18n/states/TH.php:49 -msgid "Nonthaburi (นนทบุรี)" -msgstr "Nonthaburi (นนทบุรี)" - -#: i18n/states/TH.php:50 -msgid "Pathum Thani (ปทุมธานี)" -msgstr "Pathum Thani (ปทุมธานี)" - -#: i18n/states/TH.php:51 -msgid "Pattani (ปัตตานี)" -msgstr "Pattani (ปัตตานี)" - -#: i18n/states/TH.php:52 -msgid "Phang Nga (พังงา)" -msgstr "Phang Nga (พังงา)" - -#: i18n/states/TH.php:53 -msgid "Phatthalung (พัทลุง)" -msgstr "Phatthalung (พัทลุง)" - -#: i18n/states/TH.php:54 -msgid "Phayao (พะเยา)" -msgstr "Phayao (พะเยา)" - -#: i18n/states/TH.php:55 -msgid "" -"Phetchabun (เพชรบูรณ์)" -msgstr "Phetchabun (เพชรบูรณ์)" - -#: i18n/states/TH.php:56 -msgid "Phetchaburi (เพชรบุรี)" -msgstr "Phetchaburi (เพชรบุรี)" - -#: i18n/states/TH.php:57 -msgid "Phichit (พิจิตร)" -msgstr "Phichit (พิจิตร)" - -#: i18n/states/TH.php:58 -msgid "Phitsanulok (พิษณุโลก)" -msgstr "Phitsanulok (พิษณุโลก)" - -#: i18n/states/TH.php:59 -msgid "Phrae (แพร่)" -msgstr "Phrae (แพร่)" - -#: i18n/states/TH.php:60 -msgid "Phuket (ภูเก็ต)" -msgstr "Phuket (ภูเก็ต)" - -#: i18n/states/TH.php:61 -msgid "" -"Prachin Buri (ปราจีนบุร" -"ี)" -msgstr "Prachin Buri (ปราจีนบุรี)" - -#: i18n/states/TH.php:62 -msgid "" -"Prachuap Khiri Khan (ประจวบคี" -"รีขันธ์)" -msgstr "Prachuap Khiri Khan" - -#: i18n/states/TH.php:63 -msgid "Ranong (ระนอง)" -msgstr "Ranong (ระนอง)" - -#: i18n/states/TH.php:64 -msgid "Ratchaburi (ราชบุรี)" -msgstr "Ratchaburi (ราชบุรี)" - -#: i18n/states/TH.php:65 -msgid "Rayong (ระยอง)" -msgstr "Rayong (ระยอง)" - -#: i18n/states/TH.php:66 -msgid "Roi Et (ร้อยเอ็ด)" -msgstr "Roi Et (ร้อยเอ็ด)" - -#: i18n/states/TH.php:67 -msgid "Sa Kaeo (สระแก้ว)" -msgstr "Sa Kaeo (สระแก้ว)" - -#: i18n/states/TH.php:68 -msgid "Sakon Nakhon (สกลนคร)" -msgstr "Sakon Nakhon (สกลนคร)" - -#: i18n/states/TH.php:69 -msgid "" -"Samut Prakan (สมุทรปราก" -"าร)" -msgstr "Samut Prakan (สมุทรปราการ)" - -#: i18n/states/TH.php:70 -msgid "" -"Samut Sakhon (สมุทรสาค" -"ร)" -msgstr "Samut Sakhon (สมุทรสาคร)" - -#: i18n/states/TH.php:71 -msgid "" -"Samut Songkhram (สมุทรสงค" -"ราม)" -msgstr "Samut Songkhram (สมุทรสงคราม)" - -#: i18n/states/TH.php:72 -msgid "Saraburi (สระบุรี)" -msgstr "Saraburi (สระบุรี)" - -#: i18n/states/TH.php:73 -msgid "Satun (สตูล)" -msgstr "Satun (สตูล)" - -#: i18n/states/TH.php:74 -msgid "" -"Sing Buri (สิงห์บุรี)" -msgstr "Sing Buri (สิงห์บุรี)" - -#: i18n/states/TH.php:75 -msgid "Sisaket (ศรีสะเกษ)" -msgstr "Sisaket (ศรีสะเกษ)" - -#: i18n/states/TH.php:76 -msgid "Songkhla (สงขลา)" -msgstr "Songkhla (สงขลา)" - -#: i18n/states/TH.php:77 -msgid "Sukhothai (สุโขทัย)" -msgstr "Sukhothai (สุโขทัย)" - -#: i18n/states/TH.php:78 -msgid "" -"Suphan Buri (สุพรรณบุร" -"ี)" -msgstr "Suphan Buri (สุพรรณบุรี)" - -#: i18n/states/TH.php:79 -msgid "" -"Surat Thani (สุราษฎร์ธ" -"านี)" -msgstr "Surat Thani (สุราษฎร์ธานี ;)" - -#: i18n/states/TH.php:80 -msgid "Surin (สุรินทร์)" -msgstr "Surin (สุรินทร์)" - -#: i18n/states/TH.php:81 -msgid "Tak (ตาก)" -msgstr "Tak (ตาก)" - -#: i18n/states/TH.php:82 -msgid "Trang (ตรัง)" -msgstr "Trang (ตรัง)" - -#: i18n/states/TH.php:83 -msgid "Trat (ตราด)" -msgstr "Trat (ตราด)" - -#: i18n/states/TH.php:84 -msgid "" -"Ubon Ratchathani (อุบลราชธ" -"านี)" -msgstr "Ubon Ratchathani (อุบลราชธานี)" - -#: i18n/states/TH.php:85 -msgid "Udon Thani (อุดรธานี)" -msgstr "Udon Thani (อุดรธานี)" - -#: i18n/states/TH.php:86 -msgid "" -"Uthai Thani (อุทัยธานี)" -msgstr "Uthai Thani (อุทัยธานี)" - -#: i18n/states/TH.php:87 -msgid "" -"Uttaradit (อุตรดิตถ์)" -msgstr "Uttaradit (อุตรดิตถ์)" - -#: i18n/states/TH.php:88 -msgid "Yala (ยะลา)" -msgstr "Yala (ยะลา)" - -#: i18n/states/TH.php:89 -msgid "Yasothon (ยโสธร)" -msgstr "Yasothon (ยโสธร)" - -#: i18n/states/US.php:13 -msgid "Alabama" -msgstr "Alabama" - -#: i18n/states/US.php:14 -msgid "Alaska" -msgstr "Alaska" - -#: i18n/states/US.php:15 -msgid "Arizona" -msgstr "Arizona" - -#: i18n/states/US.php:16 -msgid "Arkansas" -msgstr "Arkansas" - -#: i18n/states/US.php:17 -msgid "California" -msgstr "California" - -#: i18n/states/US.php:18 -msgid "Colorado" -msgstr "Colorado" - -#: i18n/states/US.php:19 -msgid "Connecticut" -msgstr "Connecticut" - -#: i18n/states/US.php:20 -msgid "Delaware" -msgstr "Delaware" - -#: i18n/states/US.php:21 -msgid "District Of Columbia" -msgstr "District of Columbia" - -#: i18n/states/US.php:22 -msgid "Florida" -msgstr "Florida" - -#: i18n/states/US.php:23 includes/class-wc-countries.php:118 -msgid "Georgia" -msgstr "Gruusia" - -#: i18n/states/US.php:24 -msgid "Hawaii" -msgstr "Hawaii" - -#: i18n/states/US.php:25 -msgid "Idaho" -msgstr "Idaho" - -#: i18n/states/US.php:26 -msgid "Illinois" -msgstr "Illinois" - -#: i18n/states/US.php:27 -msgid "Indiana" -msgstr "Indiana" - -#: i18n/states/US.php:28 -msgid "Iowa" -msgstr "Iowa" - -#: i18n/states/US.php:29 -msgid "Kansas" -msgstr "Kansas" - -#: i18n/states/US.php:30 -msgid "Kentucky" -msgstr "Kentucky" - -#: i18n/states/US.php:31 -msgid "Louisiana" -msgstr "Louisiana" - -#: i18n/states/US.php:32 -msgid "Maine" -msgstr "Maine" - -#: i18n/states/US.php:33 -msgid "Maryland" -msgstr "Maryland" - -#: i18n/states/US.php:34 -msgid "Massachusetts" -msgstr "Massachusetts" - -#: i18n/states/US.php:35 -msgid "Michigan" -msgstr "Michigan" - -#: i18n/states/US.php:36 -msgid "Minnesota" -msgstr "Minnesota" - -#: i18n/states/US.php:37 -msgid "Mississippi" -msgstr "Mississippi" - -#: i18n/states/US.php:38 -msgid "Missouri" -msgstr "Missouri" - -#: i18n/states/US.php:39 -msgid "Montana" -msgstr "Montana" - -#: i18n/states/US.php:40 -msgid "Nebraska" -msgstr "Nebraska" - -#: i18n/states/US.php:41 -msgid "Nevada" -msgstr "Nevada" - -#: i18n/states/US.php:42 -msgid "New Hampshire" -msgstr "New Hampshire" - -#: i18n/states/US.php:43 -msgid "New Jersey" -msgstr "New Jersey" - -#: i18n/states/US.php:44 -msgid "New Mexico" -msgstr "New Mexico" - -#: i18n/states/US.php:45 -msgid "New York" -msgstr "New York" - -#: i18n/states/US.php:46 -msgid "North Carolina" -msgstr "Põhja-Carolina" - -#: i18n/states/US.php:47 -msgid "North Dakota" -msgstr "Põhja-Dakota" - -#: i18n/states/US.php:48 -msgid "Ohio" -msgstr "Ohio" - -#: i18n/states/US.php:49 -msgid "Oklahoma" -msgstr "Oklahoma" - -#: i18n/states/US.php:50 -msgid "Oregon" -msgstr "Oregon" - -#: i18n/states/US.php:51 -msgid "Pennsylvania" -msgstr "Pennsylvania" - -#: i18n/states/US.php:52 -msgid "Rhode Island" -msgstr "Rhode Island" - -#: i18n/states/US.php:53 -msgid "South Carolina" -msgstr "Lõuna-Carolina" - -#: i18n/states/US.php:54 -msgid "South Dakota" -msgstr "Lõuna-Dakota" - -#: i18n/states/US.php:55 -msgid "Tennessee" -msgstr "Tennessee" - -#: i18n/states/US.php:56 -msgid "Texas" -msgstr "Texas" - -#: i18n/states/US.php:57 -msgid "Utah" -msgstr "Utah" - -#: i18n/states/US.php:58 -msgid "Vermont" -msgstr "Vermont" - -#: i18n/states/US.php:59 -msgid "Virginia" -msgstr "Virginia" - -#: i18n/states/US.php:60 -msgid "Washington" -msgstr "Washington" - -#: i18n/states/US.php:61 -msgid "West Virginia" -msgstr "Lääne-Virginia" - -#: i18n/states/US.php:62 -msgid "Wisconsin" -msgstr "Wisconsin" - -#: i18n/states/US.php:63 -msgid "Wyoming" -msgstr "Wyoming" - -#: i18n/states/US.php:64 -msgid "Armed Forces (AA)" -msgstr "Relvajõudude (AA)" - -#: i18n/states/US.php:65 -msgid "Armed Forces (AE)" -msgstr "Relvajõudude (AE)" - -#: i18n/states/US.php:66 -msgid "Armed Forces (AP)" -msgstr "Relvajõudude (AP)" - -#: i18n/states/US.php:67 -msgid "American Samoa" -msgstr "Ameerika Samoa" - -#: i18n/states/US.php:68 -msgid "Guam" -msgstr "Guam" - -#: i18n/states/US.php:69 -msgid "Northern Mariana Islands" -msgstr "Põhja-Mariaanid" - -#: i18n/states/US.php:70 -msgid "Puerto Rico" -msgstr "Puerto Rico" - -#: i18n/states/US.php:71 -msgid "US Minor Outlying Islands" -msgstr " Ühendriikide hajasaared" - -#: i18n/states/US.php:72 -msgid "US Virgin Islands" -msgstr "USA Neitsisaared" - -#: i18n/states/ZA.php:13 -msgid "Eastern Cape" -msgstr "Eastern Cape" - -#: i18n/states/ZA.php:14 -msgid "Free State" -msgstr "Free State" - -#: i18n/states/ZA.php:15 -msgid "Gauteng" -msgstr "Gauteng" - -#: i18n/states/ZA.php:16 -msgid "KwaZulu-Natal" -msgstr "KwaZulu-Natal" - -#: i18n/states/ZA.php:17 -msgid "Limpopo" -msgstr "Limpopo" - -#: i18n/states/ZA.php:18 -msgid "Mpumalanga" -msgstr "Mpumalanga" - -#: i18n/states/ZA.php:19 -msgid "Northern Cape" -msgstr "Northern Cape" - -#: i18n/states/ZA.php:20 -msgid "North West" -msgstr "North West" - -#: i18n/states/ZA.php:21 -msgid "Western Cape" -msgstr "Western Cape" - -#: i18n/strings.php:16 -msgid "pending" -msgstr "maksmata" - -#: i18n/strings.php:17 -msgid "failed" -msgstr "makse ebaõnnestunud" - -#: i18n/strings.php:18 -msgid "on-hold" -msgstr "ootel" - -#: i18n/strings.php:19 -msgid "processing" -msgstr "töötluses" - -#: i18n/strings.php:20 -msgid "completed" -msgstr "täidetud" - -#: i18n/strings.php:21 -msgid "refunded" -msgstr "tagasi makstud" - -#: i18n/strings.php:22 -msgid "cancelled" -msgstr "tühistatud" - -#: includes/abstracts/abstract-wc-email.php:552 -#: includes/emails/class-wc-email-customer-completed-order.php:137 -#: includes/emails/class-wc-email-new-order.php:117 -#: includes/gateways/bacs/class-wc-gateway-bacs.php:66 -#: includes/gateways/cheque/class-wc-gateway-cheque.php:52 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:130 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:121 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:76 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:75 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:50 -msgid "Enable/Disable" -msgstr "Luba/Keela" - -#: includes/abstracts/abstract-wc-email.php:554 -#: includes/emails/class-wc-email-customer-completed-order.php:139 -#: includes/emails/class-wc-email-new-order.php:119 -msgid "Enable this email notification" -msgstr "Lülita see e-posti teel saadetav teavitus sisse" - -#: includes/abstracts/abstract-wc-email.php:558 -#: includes/emails/class-wc-email-customer-invoice.php:143 -msgid "Email subject" -msgstr "E-kirja teema" - -#: includes/abstracts/abstract-wc-email.php:560 -#: includes/abstracts/abstract-wc-email.php:567 -#: includes/emails/class-wc-email-customer-completed-order.php:145 -#: includes/emails/class-wc-email-customer-completed-order.php:152 -#: includes/emails/class-wc-email-customer-completed-order.php:159 -#: includes/emails/class-wc-email-customer-completed-order.php:166 -#: includes/emails/class-wc-email-customer-invoice.php:145 -#: includes/emails/class-wc-email-customer-invoice.php:152 -#: includes/emails/class-wc-email-customer-invoice.php:159 -#: includes/emails/class-wc-email-customer-invoice.php:166 -msgid "Defaults to %s" -msgstr "Vaikimisi %s" - -#: includes/abstracts/abstract-wc-email.php:565 -#: includes/emails/class-wc-email-customer-invoice.php:150 -msgid "Email heading" -msgstr "E-kirja pealkiri" - -#: includes/abstracts/abstract-wc-email.php:572 -#: includes/emails/class-wc-email-customer-completed-order.php:171 -#: includes/emails/class-wc-email-customer-invoice.php:171 -#: includes/emails/class-wc-email-new-order.php:144 -msgid "Email type" -msgstr "E-kirja tüüp" - -#: includes/abstracts/abstract-wc-email.php:574 -#: includes/emails/class-wc-email-customer-completed-order.php:173 -#: includes/emails/class-wc-email-customer-invoice.php:173 -#: includes/emails/class-wc-email-new-order.php:146 -msgid "Choose which format of email to send." -msgstr "Vali, millises formaadis soovid e-kirju saata." - -#: includes/abstracts/abstract-wc-email.php:578 -#: includes/emails/class-wc-email-customer-completed-order.php:177 -#: includes/emails/class-wc-email-customer-invoice.php:177 -#: includes/emails/class-wc-email-new-order.php:150 -msgid "Plain text" -msgstr "Ainult tekst" - -#: includes/abstracts/abstract-wc-email.php:579 -#: includes/emails/class-wc-email-customer-completed-order.php:178 -#: includes/emails/class-wc-email-customer-invoice.php:178 -#: includes/emails/class-wc-email-new-order.php:151 -msgid "HTML" -msgstr "HTML" - -#: includes/abstracts/abstract-wc-email.php:580 -#: includes/emails/class-wc-email-customer-completed-order.php:179 -#: includes/emails/class-wc-email-customer-invoice.php:179 -#: includes/emails/class-wc-email-new-order.php:152 -msgid "Multipart" -msgstr "Mitmeosaline (Multipart)" - -#: includes/abstracts/abstract-wc-email.php:616 -#: includes/abstracts/abstract-wc-email.php:637 -msgid "Could not write to template file." -msgstr "Ajutist faili ei õnnestunud kirjutada." - -#: includes/abstracts/abstract-wc-email.php:664 -msgid "Template file copied to theme." -msgstr "Malli fail kopeeriti teemasse." - -#: includes/abstracts/abstract-wc-email.php:673 -msgid "Template file deleted from theme." -msgstr "Malli fail kustutati teemast." - -#: includes/abstracts/abstract-wc-email.php:681 -#: includes/abstracts/abstract-wc-integration.php:30 -#: includes/abstracts/abstract-wc-settings-api.php:39 woocommerce.php:180 -msgid "Settings" -msgstr "Seaded" - -#: includes/abstracts/abstract-wc-email.php:693 -msgid "HTML template" -msgstr "HTML mall" - -#: includes/abstracts/abstract-wc-email.php:694 -msgid "Plain text template" -msgstr "Tekstimall" - -#: includes/abstracts/abstract-wc-email.php:713 -msgid "Delete template file" -msgstr "Kustuta mallifail" - -#: includes/abstracts/abstract-wc-email.php:716 -msgid "" -"This template has been overridden by your theme and can be found in: " -"%s." -msgstr "" -"See mallifail on sinu teema poolt üle kirjutatud ja selle leiab siit: " -"%s." - -#: includes/abstracts/abstract-wc-email.php:731 -msgid "Copy file to theme" -msgstr "Kopeeri mall teemasse" - -#: includes/abstracts/abstract-wc-email.php:734 -msgid "" -"To override and edit this email template copy %s to your theme " -"folder: %s." -msgstr "" -"Selle e-kirja malli ülekirjutamiseks kopeeri %s oma teema " -"kausta: %s." - -#: includes/abstracts/abstract-wc-email.php:745 -msgid "File was not found." -msgstr "Faili ei leitud." - -#: includes/abstracts/abstract-wc-email.php:770 -msgid "View template" -msgstr "Vaata malli" - -#: includes/abstracts/abstract-wc-email.php:771 -msgid "Hide template" -msgstr "Peida mall" - -#: includes/abstracts/abstract-wc-email.php:782 -msgid "Are you sure you want to delete this template file?" -msgstr "Oled kindel, et soovid selle mallifaili kustutada?" - -#: includes/abstracts/abstract-wc-payment-gateway.php:201 -msgid "Card Number" -msgstr "Kaardi number" - -#: includes/abstracts/abstract-wc-payment-gateway.php:205 -msgid "Expiry (MM/YY)" -msgstr "Aegumiskuupäev (KK/AA)" - -#: includes/abstracts/abstract-wc-payment-gateway.php:209 -msgid "Card Code" -msgstr "Kaardi kood" - -#: includes/abstracts/abstract-wc-product.php:33 -msgid "" -"The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class " -"directly." -msgstr "" -"WC_Product klass on nüüd abstraktne. Selle klassi otsekutsumise " -"asemel kasuta toote instantsi loomiseks funktsiooni get_product()." - -#: includes/abstracts/abstract-wc-product.php:456 -#: includes/class-wc-product-simple.php:48 -#: includes/class-wc-product-variation.php:211 -#: includes/integrations/google-analytics/class-wc-google-analytics.php:274 -#: includes/integrations/google-analytics/class-wc-google-analytics.php:294 -msgid "Add to cart" -msgstr "Lisa korvi" - -#: includes/abstracts/abstract-wc-product.php:466 -msgid "Read more" -msgstr "Loe edasi" - -#: includes/abstracts/abstract-wc-product.php:572 -#: includes/abstracts/abstract-wc-product.php:577 -#: includes/abstracts/abstract-wc-product.php:596 -msgid "In stock" -msgstr "Laos" - -#: includes/abstracts/abstract-wc-product.php:577 -msgid "Only %s left in stock" -msgstr "Ainult %s laos" - -#: includes/abstracts/abstract-wc-product.php:580 -msgid "%s in stock" -msgstr "%s laos" - -#: includes/abstracts/abstract-wc-product.php:587 -msgid "(backorders allowed)" -msgstr "(järeltellimused on lubatud)" - -#: includes/abstracts/abstract-wc-product.php:593 -#: includes/abstracts/abstract-wc-product.php:606 templates/cart/cart.php:74 -msgid "Available on backorder" -msgstr "Saadaval järeltellimisel" - -#: includes/abstracts/abstract-wc-product.php:599 -#: includes/abstracts/abstract-wc-product.php:609 -#: includes/abstracts/abstract-wc-product.php:613 -msgid "Out of stock" -msgstr "Otsas" - -#: includes/abstracts/abstract-wc-product.php:897 -#: includes/abstracts/abstract-wc-product.php:903 -#: includes/class-wc-cart.php:1864 includes/class-wc-order.php:757 -#: includes/class-wc-product-variable.php:247 -#: includes/class-wc-product-variable.php:253 -#: includes/class-wc-product-variation.php:294 -msgid "Free!" -msgstr "Tasuta!" - -#: includes/abstracts/abstract-wc-product.php:920 -msgctxt "min_price" -msgid "From:" -msgstr "Alates:" - -#: includes/abstracts/abstract-wc-product.php:1028 -#: templates/single-product-reviews.php:28 -msgid "Rated %s out of 5" -msgstr "Hinnanguga %s / 5" - -#: includes/abstracts/abstract-wc-product.php:1030 -#: templates/single-product/review.php:27 -#: templates/single-product-reviews.php:28 -msgid "out of 5" -msgstr "5-st" - -#: includes/abstracts/abstract-wc-product.php:1342 -msgid "%s – %s" -msgstr "%s – %s" - -#: includes/class-wc-cache-helper.php:99 -msgid "" -"In order for database caching to work with WooCommerce you " -"must add _wc_session_ to the \"Ignored Query Strings\" option " -"in W3 Total Cache settings here." -msgstr "" -"Selleks, et andmebaasi puhverdamine töötaks " -"WooCommerce'iga, pead lisama _wc_session_ \"Ignored Query " -"Strings\" valikusse W3 Total Cache seadetes siin." - -#: includes/class-wc-cart.php:475 -msgid "An item which is no longer available was removed from your cart." -msgstr "Üks toode, mida pole enam saadaval, eemaldati sinu ostukorvist." - -#: includes/class-wc-cart.php:509 includes/class-wc-cart.php:528 -#: includes/class-wc-cart.php:537 -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -"Vabadust, aga meil ei ole sinu tellimuse täitmiseks laos piisavalt toodet " -"\"%s\" (%s laos). Palun muuda koguseid oma ostukorvis ja proovi uuesti. Me " -"vabandame võimaliku ebamugavuse pärast." - -#: includes/class-wc-cart.php:572 -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfill your order right " -"now. Please try again in %d minutes or edit your cart and try again. We " -"apologise for any inconvenience caused." -msgstr "" -"Vabadust, aga meil ei ole sinu tellimuse koheseks täitmiseks piisavalt " -"toodet \"%s\" laos. Palun proovi uuesti %d minuti pärast või muuda " -"ostukorvis koguseid ja proovi siis uuesti. Me vabandame võimaliku " -"ebamugavuse pärast." - -#: includes/class-wc-cart.php:582 -msgid "" -"Sorry, \"%s\" is not in stock. Please edit your cart and try again. We " -"apologise for any inconvenience caused." -msgstr "" -"Vabandust, toodet \"%s\" ei ole laos. Palun muuda oma ostukorvi sisu ja " -"proovi uuesti. Me vabandame võimaliku ebamugavuse pärast." - -#: includes/class-wc-cart.php:883 -msgid "Sorry, "%s" cannot be purchased." -msgstr "Vabandust, toodet "%s" ei saa osta." - -#: includes/class-wc-cart.php:890 -msgid "" -"You cannot add "%s" to the cart because the product is out of " -"stock." -msgstr "" -"Sa ei saa lisada toodet "%s" ostukorvi, kuna seda ei ole laos." - -#: includes/class-wc-cart.php:895 -msgid "" -"You cannot add that amount of "%s" to the cart because there is " -"not enough stock (%s remaining)." -msgstr "" -"Sa ei saa lisada toodet "%s" soovitud koguses ostukorvi, kuna seda " -"ei ole laos piisavalt (%s järgi)." - -#: includes/class-wc-cart.php:907 includes/class-wc-cart.php:921 -#: includes/class-wc-cart.php:929 includes/class-wc-frontend-scripts.php:136 -#: includes/wc-cart-functions.php:99 templates/cart/mini-cart.php:64 -msgid "View Cart →" -msgstr "Vaata ostukorvi →" - -#: includes/class-wc-cart.php:907 -msgid "You already have this item in your cart." -msgstr "See toode on juba sinu ostukorvis." - -#: includes/class-wc-cart.php:921 includes/class-wc-cart.php:929 -msgid "" -"%s You cannot add that amount to the " -"cart — we have %s in stock and you already have %s in your cart." -msgstr "" -"%s Sa ei saa lisada soovitud kogust " -"ostukorvi — meil on laos %s ja sinu ostukorvis on juba %s." - -#: includes/class-wc-checkout.php:64 includes/class-wc-checkout.php:73 -#: includes/class-wc-emails.php:67 includes/class-wc-emails.php:76 -#: includes/class-wc-payment-gateways.php:46 -#: includes/class-wc-payment-gateways.php:55 includes/class-wc-shipping.php:64 -#: includes/class-wc-shipping.php:73 woocommerce.php:100 woocommerce.php:109 -msgid "Cheatin’ huh?" -msgstr "Üritad tõmmata?" - -#: includes/class-wc-checkout.php:99 -msgid "Account username" -msgstr "Konto kasutajanimi" - -#: includes/class-wc-checkout.php:101 -msgctxt "placeholder" -msgid "Username" -msgstr "Kasutajanimi" - -#: includes/class-wc-checkout.php:108 -msgid "Account password" -msgstr "Konto parool" - -#: includes/class-wc-checkout.php:110 -msgctxt "placeholder" -msgid "Password" -msgstr "Parool" - -#: includes/class-wc-checkout.php:118 -msgid "Order Notes" -msgstr "Tellimuse märkused" - -#: includes/class-wc-checkout.php:119 -msgctxt "placeholder" -msgid "Notes about your order, e.g. special notes for delivery." -msgstr "Märkused sinu tellmuse kohta, näiteks juhised kohaletoimetamise kohta." - -#: includes/class-wc-checkout.php:178 -msgid "Order – %s" -msgstr "Tellimus – %s" - -#: includes/class-wc-checkout.php:178 -msgctxt "Order date parsed by strftime" -msgid "%b %d, %Y @ %I:%M %p" -msgstr "%d %b %Y @ %k:%M" - -#: includes/class-wc-checkout.php:286 -msgid "Backordered" -msgstr "Järeltellimusel" - -#: includes/class-wc-checkout.php:410 -msgid "" -"Sorry, your session has expired. Return to homepage →" -msgstr "Sinu sessioon on aegunud. Tagasi avalehele →" - -#: includes/class-wc-checkout.php:482 includes/class-wc-form-handler.php:81 -msgid "is a required field." -msgstr "on nõutud väli." - -#: includes/class-wc-checkout.php:494 includes/class-wc-form-handler.php:91 -#: includes/shortcodes/class-wc-shortcode-cart.php:52 -msgid "Please enter a valid postcode/ZIP." -msgstr "Palun sisesta korrektne postiindeks." - -#: includes/class-wc-checkout.php:503 includes/class-wc-form-handler.php:100 -msgid "is not a valid phone number." -msgstr "ei ole korrektne telefoninumber." - -#: includes/class-wc-checkout.php:509 includes/class-wc-form-handler.php:106 -msgid "is not a valid email address." -msgstr "ei ole korrektne e-posti aadress." - -#: includes/class-wc-checkout.php:524 -msgid "is not valid. Please enter one of the following:" -msgstr "ei ole kehtiv. Palun sisesta üks neist:" - -#: includes/class-wc-checkout.php:569 -msgid "You must accept our Terms & Conditions." -msgstr "Pead nõustuma meie tingimusega. " - -#: includes/class-wc-checkout.php:574 -msgid "" -"Unfortunately we do not ship to %s. Please enter an " -"alternative shipping address." -msgstr "" -"Kahjuks me ei tarni piirkonda %s. Palun sisesta teistsugune " -"tarneaadress." - -#: includes/class-wc-checkout.php:582 -msgid "Invalid shipping method." -msgstr "Vigane tarneviis." - -#: includes/class-wc-checkout.php:595 -msgid "Invalid payment method." -msgstr "Vigane makseviis." - -#: includes/class-wc-comments.php:111 -msgid "You have taken too long. Please go back and refresh the page." -msgstr "" -"Sul on läinud toimingu tegemiseks liiga palju aega. Palun mine tagasi ja " -"värskenda lehte." - -#: includes/class-wc-comments.php:114 -msgid "Please rate the product." -msgstr "Palun hinda seda toodet." - -#: includes/class-wc-countries.php:37 -msgid "Afghanistan" -msgstr "Afganistan" - -#: includes/class-wc-countries.php:38 -msgid "Åland Islands" -msgstr "Ahvenamaa" - -#: includes/class-wc-countries.php:39 -msgid "Albania" -msgstr "Albaania" - -#: includes/class-wc-countries.php:40 -msgid "Algeria" -msgstr "Alžeeria" - -#: includes/class-wc-countries.php:41 -msgid "Andorra" -msgstr "Andorra" - -#: includes/class-wc-countries.php:42 -msgid "Angola" -msgstr "Angola" - -#: includes/class-wc-countries.php:43 -msgid "Anguilla" -msgstr "Anguilla" - -#: includes/class-wc-countries.php:44 -msgid "Antarctica" -msgstr "Antarktika" - -#: includes/class-wc-countries.php:45 -msgid "Antigua and Barbuda" -msgstr "Antigua ja Barbuda" - -#: includes/class-wc-countries.php:46 -msgid "Argentina" -msgstr "Argentiina" - -#: includes/class-wc-countries.php:47 -msgid "Armenia" -msgstr "Armeenia" - -#: includes/class-wc-countries.php:48 -msgid "Aruba" -msgstr "Aruuba" - -#: includes/class-wc-countries.php:49 -msgid "Australia" -msgstr "Austraalia" - -#: includes/class-wc-countries.php:50 -msgid "Austria" -msgstr "Austria" - -#: includes/class-wc-countries.php:51 -msgid "Azerbaijan" -msgstr "Aserbaidžaan" - -#: includes/class-wc-countries.php:52 -msgid "Bahamas" -msgstr "Bahama" - -#: includes/class-wc-countries.php:53 -msgid "Bahrain" -msgstr "Bahrein" - -#: includes/class-wc-countries.php:54 -msgid "Bangladesh" -msgstr "Bangladesh" - -#: includes/class-wc-countries.php:55 -msgid "Barbados" -msgstr "Barbados" - -#: includes/class-wc-countries.php:56 -msgid "Belarus" -msgstr "Valgevene" - -#: includes/class-wc-countries.php:57 -msgid "Belgium" -msgstr "Belgia" - -#: includes/class-wc-countries.php:58 -msgid "Belau" -msgstr "Belau" - -#: includes/class-wc-countries.php:59 -msgid "Belize" -msgstr "Belize" - -#: includes/class-wc-countries.php:60 -msgid "Benin" -msgstr "Benin" - -#: includes/class-wc-countries.php:61 -msgid "Bermuda" -msgstr "Bermuda" - -#: includes/class-wc-countries.php:62 -msgid "Bhutan" -msgstr "Bhutan" - -#: includes/class-wc-countries.php:63 -msgid "Bolivia" -msgstr "Boliivia" - -#: includes/class-wc-countries.php:64 -msgid "Bonaire, Saint Eustatius and Saba" -msgstr "Bonaire, Saint Eustatius ja Saba" - -#: includes/class-wc-countries.php:65 -msgid "Bosnia and Herzegovina" -msgstr "Bosnia ja Hertsegoviina" - -#: includes/class-wc-countries.php:66 -msgid "Botswana" -msgstr "Botswana" - -#: includes/class-wc-countries.php:67 -msgid "Bouvet Island" -msgstr "Bouvet 'saar" - -#: includes/class-wc-countries.php:68 -msgid "Brazil" -msgstr "Brasiilia" - -#: includes/class-wc-countries.php:69 -msgid "British Indian Ocean Territory" -msgstr "Briti India ookeani ala" - -#: includes/class-wc-countries.php:70 -msgid "British Virgin Islands" -msgstr "Briti Neitsisaared" - -#: includes/class-wc-countries.php:71 -msgid "Brunei" -msgstr "Brunei" - -#: includes/class-wc-countries.php:72 -msgid "Bulgaria" -msgstr "Bulgaaria" - -#: includes/class-wc-countries.php:73 -msgid "Burkina Faso" -msgstr "Burkina Faso" - -#: includes/class-wc-countries.php:74 -msgid "Burundi" -msgstr "Burundi" - -#: includes/class-wc-countries.php:75 -msgid "Cambodia" -msgstr "Kambodža" - -#: includes/class-wc-countries.php:76 -msgid "Cameroon" -msgstr "Kamerun" - -#: includes/class-wc-countries.php:77 -msgid "Canada" -msgstr "Kanada" - -#: includes/class-wc-countries.php:78 -msgid "Cape Verde" -msgstr "Cape Verde" - -#: includes/class-wc-countries.php:79 -msgid "Cayman Islands" -msgstr "Kaimanisaared" - -#: includes/class-wc-countries.php:80 -msgid "Central African Republic" -msgstr "Kesk-Aafrika Vabariik" - -#: includes/class-wc-countries.php:81 -msgid "Chad" -msgstr "Chad" - -#: includes/class-wc-countries.php:82 -msgid "Chile" -msgstr "Tšiili" - -#: includes/class-wc-countries.php:83 -msgid "China" -msgstr "Hiina" - -#: includes/class-wc-countries.php:84 -msgid "Christmas Island" -msgstr "Jõulusaar" - -#: includes/class-wc-countries.php:85 -msgid "Cocos (Keeling) Islands" -msgstr "Kookossaared (Keelingi saared)" - -#: includes/class-wc-countries.php:86 -msgid "Colombia" -msgstr "Kolumbia" - -#: includes/class-wc-countries.php:87 -msgid "Comoros" -msgstr "Komoorid" - -#: includes/class-wc-countries.php:88 -msgid "Congo (Brazzaville)" -msgstr "Kongo (Brazzaville)" - -#: includes/class-wc-countries.php:89 -msgid "Congo (Kinshasa)" -msgstr "Kongo (Kinshasa)" - -#: includes/class-wc-countries.php:90 -msgid "Cook Islands" -msgstr "Cooki saared" - -#: includes/class-wc-countries.php:91 -msgid "Costa Rica" -msgstr "Costa Rica" - -#: includes/class-wc-countries.php:92 -msgid "Croatia" -msgstr "Horvaatia" - -#: includes/class-wc-countries.php:93 -msgid "Cuba" -msgstr "Kuuba" - -#: includes/class-wc-countries.php:94 -msgid "CuraÇao" -msgstr "Curaçao" - -#: includes/class-wc-countries.php:95 -msgid "Cyprus" -msgstr "Küpros" - -#: includes/class-wc-countries.php:96 -msgid "Czech Republic" -msgstr "Tšehhi Vabariik" - -#: includes/class-wc-countries.php:97 -msgid "Denmark" -msgstr "Taani" - -#: includes/class-wc-countries.php:98 -msgid "Djibouti" -msgstr "Djibouti" - -#: includes/class-wc-countries.php:99 -msgid "Dominica" -msgstr "Dominica" - -#: includes/class-wc-countries.php:100 -msgid "Dominican Republic" -msgstr "Dominikaani Vabariik" - -#: includes/class-wc-countries.php:101 -msgid "Ecuador" -msgstr "Ecuador" - -#: includes/class-wc-countries.php:102 -msgid "Egypt" -msgstr "Egiptus" - -#: includes/class-wc-countries.php:103 -msgid "El Salvador" -msgstr "El Salvador" - -#: includes/class-wc-countries.php:104 -msgid "Equatorial Guinea" -msgstr "Ekvatoriaal-Guinea" - -#: includes/class-wc-countries.php:105 -msgid "Eritrea" -msgstr "Eritrea" - -#: includes/class-wc-countries.php:106 -msgid "Estonia" -msgstr "Eesti" - -#: includes/class-wc-countries.php:107 -msgid "Ethiopia" -msgstr "Etioopia" - -#: includes/class-wc-countries.php:108 -msgid "Falkland Islands" -msgstr "Falklandi saared" - -#: includes/class-wc-countries.php:109 -msgid "Faroe Islands" -msgstr "Fääri saared" - -#: includes/class-wc-countries.php:110 -msgid "Fiji" -msgstr "Fidži" - -#: includes/class-wc-countries.php:111 -msgid "Finland" -msgstr "Soome" - -#: includes/class-wc-countries.php:112 -msgid "France" -msgstr "Prantsusmaa" - -#: includes/class-wc-countries.php:113 -msgid "French Guiana" -msgstr "Prantsuse Guajaana" - -#: includes/class-wc-countries.php:114 -msgid "French Polynesia" -msgstr "Prantsuse Polüneesia" - -#: includes/class-wc-countries.php:115 -msgid "French Southern Territories" -msgstr "Prantsuse Lõunaalad" - -#: includes/class-wc-countries.php:116 -msgid "Gabon" -msgstr "Gabon" - -#: includes/class-wc-countries.php:117 -msgid "Gambia" -msgstr "Gambia" - -#: includes/class-wc-countries.php:119 -msgid "Germany" -msgstr "Saksamaa" - -#: includes/class-wc-countries.php:120 -msgid "Ghana" -msgstr "Ghana" - -#: includes/class-wc-countries.php:121 -msgid "Gibraltar" -msgstr "Gibraltar" - -#: includes/class-wc-countries.php:122 -msgid "Greece" -msgstr "Kreeka" - -#: includes/class-wc-countries.php:123 -msgid "Greenland" -msgstr "Gröönimaa" - -#: includes/class-wc-countries.php:124 -msgid "Grenada" -msgstr "Grenada" - -#: includes/class-wc-countries.php:125 -msgid "Guadeloupe" -msgstr "Guadeloupe" - -#: includes/class-wc-countries.php:126 -msgid "Guatemala" -msgstr "Guatemala" - -#: includes/class-wc-countries.php:127 -msgid "Guernsey" -msgstr "Guernsey" - -#: includes/class-wc-countries.php:128 -msgid "Guinea" -msgstr "Guinea" - -#: includes/class-wc-countries.php:129 -msgid "Guinea-Bissau" -msgstr "Guinea-Bissau" - -#: includes/class-wc-countries.php:130 -msgid "Guyana" -msgstr "Guyana" - -#: includes/class-wc-countries.php:131 -msgid "Haiti" -msgstr "Haiti" - -#: includes/class-wc-countries.php:132 -msgid "Heard Island and McDonald Islands" -msgstr "Heardi ja McDonaldi saared" - -#: includes/class-wc-countries.php:133 -msgid "Honduras" -msgstr "Honduras" - -#: includes/class-wc-countries.php:134 -msgid "Hong Kong" -msgstr "Hongkong" - -#: includes/class-wc-countries.php:135 -msgid "Hungary" -msgstr "Ungari" - -#: includes/class-wc-countries.php:136 -msgid "Iceland" -msgstr "Island" - -#: includes/class-wc-countries.php:137 -msgid "India" -msgstr "India" - -#: includes/class-wc-countries.php:138 -msgid "Indonesia" -msgstr "Indoneesia" - -#: includes/class-wc-countries.php:139 -msgid "Iran" -msgstr "Iraan" - -#: includes/class-wc-countries.php:140 -msgid "Iraq" -msgstr "Iraak" - -#: includes/class-wc-countries.php:141 -msgid "Republic of Ireland" -msgstr "Iirimaa" - -#: includes/class-wc-countries.php:142 -msgid "Isle of Man" -msgstr "Isle of Man" - -#: includes/class-wc-countries.php:143 -msgid "Israel" -msgstr "iIsrael" - -#: includes/class-wc-countries.php:144 -msgid "Italy" -msgstr "Itaalia" - -#: includes/class-wc-countries.php:145 -msgid "Ivory Coast" -msgstr "Elevandiluurannik" - -#: includes/class-wc-countries.php:146 -msgid "Jamaica" -msgstr "Jamaika" - -#: includes/class-wc-countries.php:147 -msgid "Japan" -msgstr "Jaapan" - -#: includes/class-wc-countries.php:148 -msgid "Jersey" -msgstr "Jersey" - -#: includes/class-wc-countries.php:149 -msgid "Jordan" -msgstr "Jordan" - -#: includes/class-wc-countries.php:150 -msgid "Kazakhstan" -msgstr "Kasahstan" - -#: includes/class-wc-countries.php:151 -msgid "Kenya" -msgstr "Kenya" - -#: includes/class-wc-countries.php:152 -msgid "Kiribati" -msgstr "Kiribati" - -#: includes/class-wc-countries.php:153 -msgid "Kuwait" -msgstr "Kuveit" - -#: includes/class-wc-countries.php:154 -msgid "Kyrgyzstan" -msgstr "Kõrgõzstan" - -#: includes/class-wc-countries.php:155 -msgid "Laos" -msgstr "Laos" - -#: includes/class-wc-countries.php:156 -msgid "Latvia" -msgstr "Läti" - -#: includes/class-wc-countries.php:157 -msgid "Lebanon" -msgstr "Liibanon" - -#: includes/class-wc-countries.php:158 -msgid "Lesotho" -msgstr "Lesotho" - -#: includes/class-wc-countries.php:159 -msgid "Liberia" -msgstr "Libeeria" - -#: includes/class-wc-countries.php:160 -msgid "Libya" -msgstr "Liibüa" - -#: includes/class-wc-countries.php:161 -msgid "Liechtenstein" -msgstr "Liechtenstein" - -#: includes/class-wc-countries.php:162 -msgid "Lithuania" -msgstr "Leedu" - -#: includes/class-wc-countries.php:163 -msgid "Luxembourg" -msgstr "Luksemburg" - -#: includes/class-wc-countries.php:164 -msgid "Macao S.A.R., China" -msgstr "Aomeni erihalduspiirkond, Hiina" - -#: includes/class-wc-countries.php:165 -msgid "Macedonia" -msgstr "Makedoonia" - -#: includes/class-wc-countries.php:166 -msgid "Madagascar" -msgstr "Madagaskar" - -#: includes/class-wc-countries.php:167 -msgid "Malawi" -msgstr "Malawi" - -#: includes/class-wc-countries.php:168 -msgid "Malaysia" -msgstr "Malaisia" - -#: includes/class-wc-countries.php:169 -msgid "Maldives" -msgstr "Maldiivid" - -#: includes/class-wc-countries.php:170 -msgid "Mali" -msgstr "Mali" - -#: includes/class-wc-countries.php:171 -msgid "Malta" -msgstr "Malta" - -#: includes/class-wc-countries.php:172 -msgid "Marshall Islands" -msgstr "Marshalli saared" - -#: includes/class-wc-countries.php:173 -msgid "Martinique" -msgstr "Martinique" - -#: includes/class-wc-countries.php:174 -msgid "Mauritania" -msgstr "Mauritaania" - -#: includes/class-wc-countries.php:175 -msgid "Mauritius" -msgstr "Mauritius" - -#: includes/class-wc-countries.php:176 -msgid "Mayotte" -msgstr "Mayotte" - -#: includes/class-wc-countries.php:177 -msgid "Mexico" -msgstr "Mehhiko" - -#: includes/class-wc-countries.php:178 -msgid "Micronesia" -msgstr "Mikroneesia" - -#: includes/class-wc-countries.php:179 -msgid "Moldova" -msgstr "Moldova" - -#: includes/class-wc-countries.php:180 -msgid "Monaco" -msgstr "Monaco" - -#: includes/class-wc-countries.php:181 -msgid "Mongolia" -msgstr "Mongoolia" - -#: includes/class-wc-countries.php:182 -msgid "Montenegro" -msgstr "Montenegro" - -#: includes/class-wc-countries.php:183 -msgid "Montserrat" -msgstr "Montserrat" - -#: includes/class-wc-countries.php:184 -msgid "Morocco" -msgstr "Maroko" - -#: includes/class-wc-countries.php:185 -msgid "Mozambique" -msgstr "Mosambiik" - -#: includes/class-wc-countries.php:186 -msgid "Myanmar" -msgstr "Myanmar" - -#: includes/class-wc-countries.php:187 -msgid "Namibia" -msgstr "Namiibia" - -#: includes/class-wc-countries.php:188 -msgid "Nauru" -msgstr "Nauru" - -#: includes/class-wc-countries.php:189 -msgid "Nepal" -msgstr "Nepal" - -#: includes/class-wc-countries.php:190 -msgid "Netherlands" -msgstr "Holland" - -#: includes/class-wc-countries.php:191 -msgid "Netherlands Antilles" -msgstr "Hollandi Antillid" - -#: includes/class-wc-countries.php:192 -msgid "New Caledonia" -msgstr "Uus-Kaledoonia" - -#: includes/class-wc-countries.php:193 -msgid "New Zealand" -msgstr "Uus-Meremaa" - -#: includes/class-wc-countries.php:194 -msgid "Nicaragua" -msgstr "Nicaragua" - -#: includes/class-wc-countries.php:195 -msgid "Niger" -msgstr "Niger" - -#: includes/class-wc-countries.php:196 -msgid "Nigeria" -msgstr "Nigeeria" - -#: includes/class-wc-countries.php:197 -msgid "Niue" -msgstr "Niue" - -#: includes/class-wc-countries.php:198 -msgid "Norfolk Island" -msgstr "Norfolk Island" - -#: includes/class-wc-countries.php:199 -msgid "North Korea" -msgstr "Põhja-Korea" - -#: includes/class-wc-countries.php:200 -msgid "Norway" -msgstr "Norra" - -#: includes/class-wc-countries.php:201 -msgid "Oman" -msgstr "Oman" - -#: includes/class-wc-countries.php:202 -msgid "Pakistan" -msgstr "Pakistan" - -#: includes/class-wc-countries.php:203 -msgid "Palestinian Territory" -msgstr "Palestiina" - -#: includes/class-wc-countries.php:204 -msgid "Panama" -msgstr "Panama" - -#: includes/class-wc-countries.php:205 -msgid "Papua New Guinea" -msgstr "Paapua Uus-Guinea" - -#: includes/class-wc-countries.php:206 -msgid "Paraguay" -msgstr "Paraguai" - -#: includes/class-wc-countries.php:207 -msgid "Peru" -msgstr "Peruu" - -#: includes/class-wc-countries.php:208 -msgid "Philippines" -msgstr "Filipiinid" - -#: includes/class-wc-countries.php:209 -msgid "Pitcairn" -msgstr "Pitcairn" - -#: includes/class-wc-countries.php:210 -msgid "Poland" -msgstr "Poola" - -#: includes/class-wc-countries.php:211 -msgid "Portugal" -msgstr "Portugal" - -#: includes/class-wc-countries.php:212 -msgid "Qatar" -msgstr "Katar" - -#: includes/class-wc-countries.php:213 -msgid "Reunion" -msgstr "Reunion" - -#: includes/class-wc-countries.php:214 -msgid "Romania" -msgstr "Rumeenia" - -#: includes/class-wc-countries.php:215 -msgid "Russia" -msgstr "Venemaa" - -#: includes/class-wc-countries.php:216 -msgid "Rwanda" -msgstr "Rwanda" - -#: includes/class-wc-countries.php:217 -msgid "Saint Barthélemy" -msgstr "Saint Barthélemy" - -#: includes/class-wc-countries.php:218 -msgid "Saint Helena" -msgstr "Saint Helena" - -#: includes/class-wc-countries.php:219 -msgid "Saint Kitts and Nevis" -msgstr "Saint Kitts ja Nevis" - -#: includes/class-wc-countries.php:220 -msgid "Saint Lucia" -msgstr "Saint Lucia" - -#: includes/class-wc-countries.php:221 -msgid "Saint Martin (French part)" -msgstr "Saint Martin (Prantsuse osa)" - -#: includes/class-wc-countries.php:222 -msgid "Saint Martin (Dutch part)" -msgstr "Saint Martin (Hollandi osa)" - -#: includes/class-wc-countries.php:223 -msgid "Saint Pierre and Miquelon" -msgstr "Saint-Pierre ja Miquelon" - -#: includes/class-wc-countries.php:224 -msgid "Saint Vincent and the Grenadines" -msgstr "Saint Vincent ja Grenadiinid" - -#: includes/class-wc-countries.php:225 -msgid "San Marino" -msgstr "San Marino" - -#: includes/class-wc-countries.php:226 -msgid "São Tomé and Príncipe" -msgstr "São Tomé ja Príncipe" - -#: includes/class-wc-countries.php:227 -msgid "Saudi Arabia" -msgstr "Saudi Araabia" - -#: includes/class-wc-countries.php:228 -msgid "Senegal" -msgstr "Senegal" - -#: includes/class-wc-countries.php:229 -msgid "Serbia" -msgstr "Serbia" - -#: includes/class-wc-countries.php:230 -msgid "Seychelles" -msgstr "Seišellid" - -#: includes/class-wc-countries.php:231 -msgid "Sierra Leone" -msgstr "Sierra Leone" - -#: includes/class-wc-countries.php:232 -msgid "Singapore" -msgstr "Singapur" - -#: includes/class-wc-countries.php:233 -msgid "Slovakia" -msgstr "Slovakkia" - -#: includes/class-wc-countries.php:234 -msgid "Slovenia" -msgstr "Sloveenia" - -#: includes/class-wc-countries.php:235 -msgid "Solomon Islands" -msgstr "Saalomoni saared" - -#: includes/class-wc-countries.php:236 -msgid "Somalia" -msgstr "Somaalia" - -#: includes/class-wc-countries.php:237 -msgid "South Africa" -msgstr "Lõuna-Aafrika Vabariik" - -#: includes/class-wc-countries.php:238 -msgid "South Georgia/Sandwich Islands" -msgstr "Lõuna-Georgia / Sandwichi saared" - -#: includes/class-wc-countries.php:239 -msgid "South Korea" -msgstr "Lõuna-Korea" - -#: includes/class-wc-countries.php:240 -msgid "South Sudan" -msgstr "Lõuna-Sudaan" - -#: includes/class-wc-countries.php:241 -msgid "Spain" -msgstr "Hispaania" - -#: includes/class-wc-countries.php:242 -msgid "Sri Lanka" -msgstr "Sri Lanka" - -#: includes/class-wc-countries.php:243 -msgid "Sudan" -msgstr "Sudaani" - -#: includes/class-wc-countries.php:244 -msgid "Suriname" -msgstr "Suriname" - -#: includes/class-wc-countries.php:245 -msgid "Svalbard and Jan Mayen" -msgstr "Svalbard ja Jan Mayen" - -#: includes/class-wc-countries.php:246 -msgid "Swaziland" -msgstr "Svaasimaa" - -#: includes/class-wc-countries.php:247 -msgid "Sweden" -msgstr "Rootsi" - -#: includes/class-wc-countries.php:248 -msgid "Switzerland" -msgstr "Šveits" - -#: includes/class-wc-countries.php:249 -msgid "Syria" -msgstr "Süüria" - -#: includes/class-wc-countries.php:250 -msgid "Taiwan" -msgstr "Taiwan" - -#: includes/class-wc-countries.php:251 -msgid "Tajikistan" -msgstr "Tadžikistan" - -#: includes/class-wc-countries.php:252 -msgid "Tanzania" -msgstr "Tansaania" - -#: includes/class-wc-countries.php:253 -msgid "Thailand" -msgstr "Tai" - -#: includes/class-wc-countries.php:254 -msgid "Timor-Leste" -msgstr "Ida-Timor" - -#: includes/class-wc-countries.php:255 -msgid "Togo" -msgstr "Togo" - -#: includes/class-wc-countries.php:256 -msgid "Tokelau" -msgstr "Tokelau" - -#: includes/class-wc-countries.php:257 -msgid "Tonga" -msgstr "Tonga" - -#: includes/class-wc-countries.php:258 -msgid "Trinidad and Tobago" -msgstr "Trinidad ja Tobago" - -#: includes/class-wc-countries.php:259 -msgid "Tunisia" -msgstr "Tuneesia" - -#: includes/class-wc-countries.php:260 -msgid "Turkey" -msgstr "Türgi" - -#: includes/class-wc-countries.php:261 -msgid "Turkmenistan" -msgstr "Turkmenistan" - -#: includes/class-wc-countries.php:262 -msgid "Turks and Caicos Islands" -msgstr "Turks ja Caicos" - -#: includes/class-wc-countries.php:263 -msgid "Tuvalu" -msgstr "Tuvalu" - -#: includes/class-wc-countries.php:264 -msgid "Uganda" -msgstr "Uganda" - -#: includes/class-wc-countries.php:265 -msgid "Ukraine" -msgstr "Ukraina" - -#: includes/class-wc-countries.php:266 -msgid "United Arab Emirates" -msgstr "Araabia Ühendemiraadid" - -#: includes/class-wc-countries.php:267 -msgid "United Kingdom (UK)" -msgstr "Ühendkuningriik (UK)" - -#: includes/class-wc-countries.php:268 -msgid "United States (US)" -msgstr "Ameerika Ühendriigid (US)" - -#: includes/class-wc-countries.php:269 -msgid "Uruguay" -msgstr "Uruguay" - -#: includes/class-wc-countries.php:270 -msgid "Uzbekistan" -msgstr "Usbekistan" - -#: includes/class-wc-countries.php:271 -msgid "Vanuatu" -msgstr "Vanuatu" - -#: includes/class-wc-countries.php:272 -msgid "Vatican" -msgstr "Vatikan" - -#: includes/class-wc-countries.php:273 -msgid "Venezuela" -msgstr "Venetsueela" - -#: includes/class-wc-countries.php:274 -msgid "Vietnam" -msgstr "Vietnam" - -#: includes/class-wc-countries.php:275 -msgid "Wallis and Futuna" -msgstr "Wallis ja Futuna" - -#: includes/class-wc-countries.php:276 -msgid "Western Sahara" -msgstr "Lääne-Saharas" - -#: includes/class-wc-countries.php:277 -msgid "Western Samoa" -msgstr "Lääne-Samoa" - -#: includes/class-wc-countries.php:278 -msgid "Yemen" -msgstr "Jeemen" - -#: includes/class-wc-countries.php:279 -msgid "Zambia" -msgstr "Sambia" - -#: includes/class-wc-countries.php:280 -msgid "Zimbabwe" -msgstr "Zimbabwe" - -#: includes/class-wc-countries.php:485 -msgid "to the" -msgstr "->" - -#: includes/class-wc-countries.php:486 -msgid "to" -msgstr "->" - -#: includes/class-wc-countries.php:499 -msgid "the" -msgstr "-" - -#: includes/class-wc-countries.php:511 -msgid "VAT" -msgstr "KM" - -#: includes/class-wc-countries.php:511 -msgid "Tax" -msgstr "Maks" - -#: includes/class-wc-countries.php:524 -msgid "(incl. VAT)" -msgstr "(sis. KM)" - -#: includes/class-wc-countries.php:524 -msgid "(incl. tax)" -msgstr "(maksudega)" - -#: includes/class-wc-countries.php:537 -msgid "(ex. VAT)" -msgstr "(ei sis. KM)" - -#: includes/class-wc-countries.php:537 -msgid "(ex. tax)" -msgstr "(maksudeta)" - -#: includes/class-wc-countries.php:718 -msgid "Country" -msgstr "Riik" - -#: includes/class-wc-countries.php:723 -msgid "First Name" -msgstr "Eesnimi" - -#: includes/class-wc-countries.php:728 -msgid "Last Name" -msgstr "Perenimi" - -#: includes/class-wc-countries.php:734 -msgid "Company Name" -msgstr "Ettevõtte nimi" - -#: includes/class-wc-countries.php:738 -msgid "Address" -msgstr "Aadress" - -#: includes/class-wc-countries.php:739 -msgctxt "placeholder" -msgid "Street address" -msgstr "Tänava aadress" - -#: includes/class-wc-countries.php:744 -msgctxt "placeholder" -msgid "Apartment, suite, unit etc. (optional)" -msgstr "Korter, sviit, üksus vms. (valikuline)" - -#: includes/class-wc-countries.php:749 includes/class-wc-countries.php:750 -msgid "Town / City" -msgstr "Linn/Alev/Küla" - -#: includes/class-wc-countries.php:756 includes/class-wc-countries.php:757 -msgid "State / County" -msgstr "Maakond" - -#: includes/class-wc-countries.php:763 includes/class-wc-countries.php:764 -#: templates/cart/shipping-calculator.php:80 -msgid "Postcode / Zip" -msgstr "Postiindeks" - -#: includes/class-wc-countries.php:807 includes/class-wc-countries.php:817 -#: includes/class-wc-countries.php:837 includes/class-wc-countries.php:892 -#: includes/class-wc-countries.php:911 includes/class-wc-countries.php:939 -#: includes/class-wc-countries.php:989 includes/class-wc-countries.php:1013 -#: includes/class-wc-countries.php:1054 -msgid "Province" -msgstr "Provints" - -#: includes/class-wc-countries.php:823 -msgid "Canton" -msgstr "Kanton" - -#: includes/class-wc-countries.php:832 includes/class-wc-countries.php:995 -msgid "Municipality" -msgstr "Omavalitsus" - -#: includes/class-wc-countries.php:879 -msgid "Town / District" -msgstr "Linn/Alev/Küla" - -#: includes/class-wc-countries.php:882 -msgid "Region" -msgstr "Regioon" - -#: includes/class-wc-countries.php:887 includes/class-wc-countries.php:1029 -msgid "County" -msgstr "County" - -#: includes/class-wc-countries.php:1018 -msgid "Zip" -msgstr "Postiindeks" - -#: includes/class-wc-countries.php:1021 -msgid "State" -msgstr "Maakond" - -#: includes/class-wc-countries.php:1026 -msgid "Postcode" -msgstr "Postiindeks" - -#: includes/class-wc-countries.php:1134 -msgid "Email Address" -msgstr "E-posti aadress" - -#: includes/class-wc-countries.php:1140 -msgid "Phone" -msgstr "Telefon" - -#: includes/class-wc-coupon.php:451 -msgid "Coupon code applied successfully." -msgstr "Kupongi kood rakendati edukalt." - -#: includes/class-wc-coupon.php:454 -msgid "Coupon code removed successfully." -msgstr "Kupongi kood eemaldati edukalt." - -#: includes/class-wc-coupon.php:475 -msgid "Coupon is not valid." -msgstr "Kupong ei kehti." - -#: includes/class-wc-coupon.php:478 includes/class-wc-coupon.php:528 -msgid "Coupon does not exist!" -msgstr "Kupongi ei ole olemas!" - -#: includes/class-wc-coupon.php:481 -msgid "" -"Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from " -"your order." -msgstr "" -"Vabandame, aga kupong \"%s\" ei kehti - see on nüüd sinu tellimuselt " -"eemaldatud." - -#: includes/class-wc-coupon.php:484 -msgid "" -"Sorry, it seems the coupon \"%s\" is not yours - it has now been removed " -"from your order." -msgstr "" -"Vabandame, aga kupong \"%s\" ei kuulu sulle - see on nüüd sinu tellimuselt " -"eemaldatud." - -#: includes/class-wc-coupon.php:487 -msgid "Coupon code already applied!" -msgstr "Kupongi kood on juba rakendatud!" - -#: includes/class-wc-coupon.php:490 -msgid "" -"Sorry, coupon \"%s\" has already been applied and cannot be used in " -"conjunction with other coupons." -msgstr "" -"Vabandame, kupong \"%s\" on juba rakendatud ja seda ei saa kasutada koos " -"koos teiste kupongitega." - -#: includes/class-wc-coupon.php:493 -msgid "Coupon usage limit has been reached." -msgstr "Kunpongi kasutamise piirmäär on saavutatud." - -#: includes/class-wc-coupon.php:496 -msgid "This coupon has expired." -msgstr "Kupong on kehtivuse kaotanud." - -#: includes/class-wc-coupon.php:499 -msgid "The minimum spend for this coupon is %s." -msgstr "Minimaalne ostusumma selle kupongi kasutamiseks on %s." - -#: includes/class-wc-coupon.php:502 -msgid "Sorry, this coupon is not applicable to your cart contents." -msgstr "Vabandame, see kupong ei kehti sinu korvis olevatele toodetele." - -#: includes/class-wc-coupon.php:505 -msgid "Sorry, this coupon is not valid for sale items." -msgstr "Vabandame, see kupong ei kehti allahindlusega toodetele." - -#: includes/class-wc-coupon.php:531 -msgid "Please enter a coupon code." -msgstr "Palun sisesta kupongi kood." - -#: includes/class-wc-customer.php:629 includes/class-wc-customer.php:641 -msgid "File %d" -msgstr "Fail %d" - -#: includes/class-wc-download-handler.php:37 -msgid "Invalid email address." -msgstr "Vigane e-posti aadress:" - -#: includes/class-wc-download-handler.php:37 -#: includes/class-wc-download-handler.php:61 -#: includes/class-wc-download-handler.php:81 -#: includes/class-wc-download-handler.php:87 -#: includes/class-wc-download-handler.php:91 -#: includes/class-wc-download-handler.php:94 -#: includes/class-wc-download-handler.php:137 -#: includes/class-wc-download-handler.php:267 -msgid "Go to homepage →" -msgstr "Mine avalehel →" - -#: includes/class-wc-download-handler.php:61 -msgid "Invalid download." -msgstr "Vigane allalaadimine." - -#: includes/class-wc-download-handler.php:73 -msgid "You must be logged in to download files." -msgstr "Failide allalaadmiseks pead olema sisse logitud." - -#: includes/class-wc-download-handler.php:73 -msgid "Login →" -msgstr "Logi sisse →" - -#: includes/class-wc-download-handler.php:73 -msgid "Log in to Download Files" -msgstr "Failide allalaadimiseks logi sisse" - -#: includes/class-wc-download-handler.php:76 -msgid "This is not your download link." -msgstr "See ei ole sinu allalaadimise link." - -#: includes/class-wc-download-handler.php:81 -msgid "Product no longer exists." -msgstr "Toodet enam ei eksisteeri." - -#: includes/class-wc-download-handler.php:87 -#: includes/class-wc-form-handler.php:443 -#: includes/shortcodes/class-wc-shortcode-checkout.php:87 -#: includes/shortcodes/class-wc-shortcode-checkout.php:168 -#: includes/shortcodes/class-wc-shortcode-my-account.php:102 -#: includes/shortcodes/class-wc-shortcode-view-order.php:50 -msgid "Invalid order." -msgstr "Vigane tellimus." - -#: includes/class-wc-download-handler.php:91 -msgid "Sorry, you have reached your download limit for this file" -msgstr "Vabandame, sa oled ära kasutanud kõik oma allalaadmise korrad" - -#: includes/class-wc-download-handler.php:94 -msgid "Sorry, this download has expired" -msgstr "Vabandame, allalaadimine on kehtetu" - -#: includes/class-wc-download-handler.php:137 -msgid "No file defined" -msgstr "Fail on määramata." - -#: includes/class-wc-download-handler.php:267 -msgid "File not found" -msgstr "Faili ei leitud" - -#: includes/class-wc-emails.php:289 -msgid "Note" -msgstr "Märkus" - -#: includes/class-wc-emails.php:325 -msgid "Product low in stock" -msgstr "Toodet on laos vähe järgi" - -#: includes/class-wc-emails.php:330 includes/class-wc-emails.php:362 -#: includes/class-wc-emails.php:406 -msgid "Variation #%s of %s" -msgstr "Variatsioon nr. #%s / %s" - -#: includes/class-wc-emails.php:332 includes/class-wc-emails.php:364 -#: includes/class-wc-emails.php:408 -msgid "Product #%s - %s" -msgstr "Toode #%s - %s" - -#: includes/class-wc-emails.php:334 -msgid "is low in stock." -msgstr "on laus vähe järgi." - -#: includes/class-wc-emails.php:357 -msgid "Product out of stock" -msgstr "Toode on laost otsas" - -#: includes/class-wc-emails.php:366 -msgid "is out of stock." -msgstr "omn laost otsas" - -#: includes/class-wc-emails.php:401 -msgid "Product Backorder" -msgstr "Toote järeltellimus" - -#: includes/class-wc-emails.php:411 -msgid "%s units of %s have been backordered in order %s." -msgstr "%s ühikut tootest %s tellimusel %s on järeltellimusel." - -#: includes/class-wc-form-handler.php:118 -msgid "Address changed successfully." -msgstr "Addressi muudeti edukalt." - -#: includes/class-wc-form-handler.php:166 -msgid "Please enter your name." -msgstr "Palun sisesta oma nimi." - -#: includes/class-wc-form-handler.php:169 -#: includes/wc-customer-functions.php:46 -msgid "Please provide a valid email address." -msgstr "Palun sisesta korrektne e-posti aadress." - -#: includes/class-wc-form-handler.php:172 -msgid "This email address is already registered." -msgstr "See e-postiaadress on juba registreeritud." - -#: includes/class-wc-form-handler.php:175 -msgid "Please re-enter your password." -msgstr "Palun sisesta parool uuesti." - -#: includes/class-wc-form-handler.php:178 -#: includes/class-wc-form-handler.php:716 -msgid "Passwords do not match." -msgstr "Paroolid ei klapi." - -#: includes/class-wc-form-handler.php:191 -msgid "Account details changed successfully." -msgstr "Konto andmeid muudeti edukalt." - -#: includes/class-wc-form-handler.php:297 -#: includes/class-wc-form-handler.php:344 -msgid "Cart updated." -msgstr "Ostukrovi uuendati." - -#: includes/class-wc-form-handler.php:328 -msgid "You can only have 1 %s in your cart." -msgstr "Sinu ostukorvis on ainult 1 %s." - -#: includes/class-wc-form-handler.php:406 -msgid "The cart has been filled with the items from your previous order." -msgstr "Ostukorvi pandi samad tooted, mis olid eelneval tellimusel." - -#: includes/class-wc-form-handler.php:430 -msgid "Order cancelled by customer." -msgstr "Klient tühistas tellimuse" - -#: includes/class-wc-form-handler.php:433 -msgid "Your order was cancelled." -msgstr "Sinu tellimus tühistati." - -#: includes/class-wc-form-handler.php:439 -msgid "" -"Your order is no longer pending and could not be cancelled. Please contact " -"us if you need assistance." -msgstr "" -"Sinu tellimus ei ole enam maksmise ootel ja seda ei saa tühistada. Palun " -"võta meiega ühendust, kui vajad veel abi." - -#: includes/class-wc-form-handler.php:480 -#: includes/class-wc-form-handler.php:538 -msgid "Please choose product options…" -msgstr "Palun vali toote valikutest…" - -#: includes/class-wc-form-handler.php:571 -msgid "" -"Please choose the quantity of items you wish to add to your cart…" -msgstr "Palun määra kogus, mida soovid oma ostukorvi lisada…" - -#: includes/class-wc-form-handler.php:578 -msgid "Please choose a product to add to your cart…" -msgstr "Palun vali toode, mida soovid ostukrovi lisada…" - -#: includes/class-wc-form-handler.php:635 -#: includes/class-wc-form-handler.php:637 -#: includes/class-wc-form-handler.php:645 -msgid "Error" -msgstr "Viga" - -#: includes/class-wc-form-handler.php:635 -msgid "Username is required." -msgstr "Kasutajanimi on nõutud." - -#: includes/class-wc-form-handler.php:637 -msgid "Password is required." -msgstr "Parool on nõutud." - -#: includes/class-wc-form-handler.php:645 -msgid "A user could not be found with this email address." -msgstr "Sellise e-posti aadressiga kasutajat ei leitud." - -#: includes/class-wc-form-handler.php:668 -msgid "You are now logged in as %s" -msgstr "Oled nüüd sisse logitud kasutajana %s" - -#: includes/class-wc-form-handler.php:711 -msgid "Please enter your password." -msgstr "Palun sisesta oma parool." - -#: includes/class-wc-form-handler.php:726 -msgid "Your password has been reset." -msgstr "Sinu parool on lähtestatud." - -#: includes/class-wc-form-handler.php:726 -msgid "Log in" -msgstr "Logi sisse" - -#: includes/class-wc-form-handler.php:750 -#: includes/wc-customer-functions.php:107 -msgid "ERROR" -msgstr "VIGA" - -#: includes/class-wc-form-handler.php:750 -msgid "Anti-spam field was filled in." -msgstr "Rämpsuvastane väli täidetid." - -#: includes/class-wc-frontend-scripts.php:107 -msgid "Please select a rating" -msgstr "Palun vali hinnang" - -#: includes/class-wc-frontend-scripts.php:114 -#: includes/wc-template-functions.php:1591 -msgid "required" -msgstr "nõutav" - -#: includes/class-wc-frontend-scripts.php:142 -msgid "" -"Sorry, no products matched your selection. Please choose a different " -"combination." -msgstr "" -"Vabandame, sinu valikule ei vasta ükski toode. Palun proovi teistsugust " -"kombinatsiooni." - -#: includes/class-wc-frontend-scripts.php:147 -msgid "Select an option…" -msgstr "Vali…" - -#: includes/class-wc-install.php:208 -msgctxt "page_slug" -msgid "shop" -msgstr "pood" - -#: includes/class-wc-install.php:209 -msgid "Shop" -msgstr "Pood" - -#: includes/class-wc-install.php:213 -msgctxt "page_slug" -msgid "cart" -msgstr "ostukorv" - -#: includes/class-wc-install.php:218 -msgctxt "page_slug" -msgid "checkout" -msgstr "kassa" - -#: includes/class-wc-install.php:223 -msgctxt "page_slug" -msgid "my-account" -msgstr "minu-konto" - -#: includes/class-wc-install.php:421 -msgid "Customer" -msgstr "Klient" - -#: includes/class-wc-install.php:428 -msgid "Shop Manager" -msgstr "Poe haldur" - -#: includes/class-wc-install.php:662 -msgid "What's new:" -msgstr "Mida on uut:" - -#: includes/class-wc-order.php:130 -msgctxt "hash before order number" -msgid "#" -msgstr "#" - -#: includes/class-wc-order.php:752 -msgid " %svia %s" -msgstr " %s-- %s" - -#: includes/class-wc-order.php:815 -msgid "Cart Subtotal:" -msgstr "Vahesumma:" - -#: includes/class-wc-order.php:821 -msgid "Cart Discount:" -msgstr "Ostukorvi allahindlus:" - -#: includes/class-wc-order.php:827 -msgid "Shipping:" -msgstr "Transport:" - -#: includes/class-wc-order.php:872 -msgid "Order Discount:" -msgstr "Tellimuse allahindlus:" - -#: includes/class-wc-order.php:877 -msgid "Order Total:" -msgstr "Tellimus kokku:" - -#: includes/class-wc-order.php:895 includes/wc-template-functions.php:1136 -msgid "(Includes %s)" -msgstr "(Sisaldab %s)" - -#: includes/class-wc-order.php:1132 includes/class-wc-order.php:1133 -msgid "WooCommerce" -msgstr "WooCommerce" - -#: includes/class-wc-order.php:1186 -msgid "Order status changed from %s to %s." -msgstr "Tellimuse olekut muudeti %s olekust %s olekusse." - -#: includes/class-wc-order.php:1435 woocommerce-ajax.php:1044 -#: woocommerce-ajax.php:1045 -msgid "Item #%s stock reduced from %s to %s." -msgstr "Toote #%s laoseisu vähendati %s pealt tasemel %s. " - -#: includes/class-wc-order.php:1447 -msgid "Order item stock reduced successfully." -msgstr "Tellimusel oleva toote laoseisu vähendatid edukalt." - -#: includes/class-wc-post-types.php:60 includes/class-wc-post-types.php:62 -#: includes/widgets/class-wc-widget-product-categories.php:30 -msgid "Product Categories" -msgstr "Tootekategooriad" - -#: includes/class-wc-post-types.php:63 -msgid "Product Category" -msgstr "Tootekategooria" - -#: includes/class-wc-post-types.php:64 -msgctxt "Admin menu name" -msgid "Categories" -msgstr "Kategooriad" - -#: includes/class-wc-post-types.php:65 -msgid "Search Product Categories" -msgstr "Otsi tootekategooriatest" - -#: includes/class-wc-post-types.php:66 -msgid "All Product Categories" -msgstr "Kõik tootekategooriad" - -#: includes/class-wc-post-types.php:67 -msgid "Parent Product Category" -msgstr "Peakategooria" - -#: includes/class-wc-post-types.php:68 -msgid "Parent Product Category:" -msgstr "Peakategooria:" - -#: includes/class-wc-post-types.php:69 -msgid "Edit Product Category" -msgstr "Muuda tootekategooriat" - -#: includes/class-wc-post-types.php:70 -msgid "Update Product Category" -msgstr "Uuenda tootekategooriat" - -#: includes/class-wc-post-types.php:71 -msgid "Add New Product Category" -msgstr "Lisa uus tootekategooria" - -#: includes/class-wc-post-types.php:72 -msgid "New Product Category Name" -msgstr "Uue tootekategooria nimi" - -#: includes/class-wc-post-types.php:83 -#: includes/updates/woocommerce-update-2.0.php:49 -msgctxt "slug" -msgid "product-category" -msgstr "tootekategooria" - -#: includes/class-wc-post-types.php:95 includes/class-wc-post-types.php:97 -#: includes/widgets/class-wc-widget-product-tag-cloud.php:27 -msgid "Product Tags" -msgstr "Tootesildid" - -#: includes/class-wc-post-types.php:98 -msgid "Product Tag" -msgstr "Tootesilt" - -#: includes/class-wc-post-types.php:99 -msgctxt "Admin menu name" -msgid "Tags" -msgstr "Sildid" - -#: includes/class-wc-post-types.php:100 -msgid "Search Product Tags" -msgstr "Otsi toote siltide hulgast" - -#: includes/class-wc-post-types.php:101 -msgid "All Product Tags" -msgstr "Kõik tootesildid" - -#: includes/class-wc-post-types.php:102 -msgid "Parent Product Tag" -msgstr "Ülemsilt" - -#: includes/class-wc-post-types.php:103 -msgid "Parent Product Tag:" -msgstr "Ülemsilt:" - -#: includes/class-wc-post-types.php:104 -msgid "Edit Product Tag" -msgstr "Muuda tootesilti" - -#: includes/class-wc-post-types.php:105 -msgid "Update Product Tag" -msgstr "Uuenda tootesilti" - -#: includes/class-wc-post-types.php:106 -msgid "Add New Product Tag" -msgstr "Lisa uus tootesilt" - -#: includes/class-wc-post-types.php:107 -msgid "New Product Tag Name" -msgstr "Uue tootesildi nimi" - -#: includes/class-wc-post-types.php:118 -#: includes/updates/woocommerce-update-2.0.php:50 -msgctxt "slug" -msgid "product-tag" -msgstr "tootesilt" - -#: includes/class-wc-post-types.php:129 includes/class-wc-post-types.php:131 -msgid "Shipping Classes" -msgstr "Tarneklassid" - -#: includes/class-wc-post-types.php:132 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:525 -msgid "Shipping Class" -msgstr "Tarneklass" - -#: includes/class-wc-post-types.php:133 -msgctxt "Admin menu name" -msgid "Shipping Classes" -msgstr "Tarneklassid" - -#: includes/class-wc-post-types.php:134 -msgid "Search Shipping Classes" -msgstr "Otsi tarneklassidest" - -#: includes/class-wc-post-types.php:135 -msgid "All Shipping Classes" -msgstr "Kõik tarneklassid" - -#: includes/class-wc-post-types.php:136 -msgid "Parent Shipping Class" -msgstr "Peamine tarneklass" - -#: includes/class-wc-post-types.php:137 -msgid "Parent Shipping Class:" -msgstr "Peamine tarneklass:" - -#: includes/class-wc-post-types.php:138 -msgid "Edit Shipping Class" -msgstr "Muuda tarneklass" - -#: includes/class-wc-post-types.php:139 -msgid "Update Shipping Class" -msgstr "Uuenda tarneklassi" - -#: includes/class-wc-post-types.php:140 -msgid "Add New Shipping Class" -msgstr "Lisa uus tarneklass" - -#: includes/class-wc-post-types.php:141 -msgid "New Shipping Class Name" -msgstr "Uue tarneklassi nimi" - -#: includes/class-wc-post-types.php:189 -msgid "Search %s" -msgstr "Otsi %s" - -#: includes/class-wc-post-types.php:190 -msgid "All %s" -msgstr "Kõik %s" - -#: includes/class-wc-post-types.php:191 -msgid "Parent %s" -msgstr "Ülemine %s" - -#: includes/class-wc-post-types.php:192 -msgid "Parent %s:" -msgstr "Ülemine %s:" - -#: includes/class-wc-post-types.php:193 -msgid "Edit %s" -msgstr "Muuda %s" - -#: includes/class-wc-post-types.php:194 -msgid "Update %s" -msgstr "Uuenda %s" - -#: includes/class-wc-post-types.php:195 -msgid "Add New %s" -msgstr "Lisa uus %s" - -#: includes/class-wc-post-types.php:196 -msgid "New %s" -msgstr "Uus %s" - -#: includes/class-wc-post-types.php:232 -#: includes/updates/woocommerce-update-2.0.php:58 -msgctxt "slug" -msgid "product" -msgstr "toode" - -#: includes/class-wc-post-types.php:238 -#: includes/integrations/google-analytics/class-wc-google-analytics.php:273 -#: includes/integrations/google-analytics/class-wc-google-analytics.php:293 -#: includes/widgets/class-wc-widget-products.php:27 -msgid "Products" -msgstr "Tooted" - -#: includes/class-wc-post-types.php:239 templates/cart/cart.php:27 -#: templates/checkout/form-pay.php:19 templates/checkout/review-order.php:18 -#: templates/emails/admin-new-order.php:22 -#: templates/emails/customer-completed-order.php:23 -#: templates/emails/customer-invoice.php:27 -#: templates/emails/customer-note.php:27 -#: templates/emails/customer-processing-order.php:23 -#: templates/order/order-details.php:20 -msgid "Product" -msgstr "Toode" - -#: includes/class-wc-post-types.php:240 -msgctxt "Admin menu name" -msgid "Products" -msgstr "Tooted" - -#: includes/class-wc-post-types.php:241 -msgid "Add Product" -msgstr "Lisa toode" - -#: includes/class-wc-post-types.php:242 -msgid "Add New Product" -msgstr "Lisa uus toode" - -#: includes/class-wc-post-types.php:243 includes/class-wc-post-types.php:295 -#: includes/class-wc-post-types.php:334 templates/myaccount/my-address.php:45 -msgid "Edit" -msgstr "Muuda" - -#: includes/class-wc-post-types.php:244 -msgid "Edit Product" -msgstr "Muuda toodet" - -#: includes/class-wc-post-types.php:245 -msgid "New Product" -msgstr "Uus toode" - -#: includes/class-wc-post-types.php:246 includes/class-wc-post-types.php:247 -msgid "View Product" -msgstr "Vaata toodet" - -#: includes/class-wc-post-types.php:248 -#: includes/widgets/class-wc-widget-product-search.php:27 -msgid "Search Products" -msgstr "Otsi toodetest" - -#: includes/class-wc-post-types.php:249 -msgid "No Products found" -msgstr "Tooteid ei leitud" - -#: includes/class-wc-post-types.php:250 -msgid "No Products found in trash" -msgstr "Prügikastis ei ole tooteid" - -#: includes/class-wc-post-types.php:251 -msgid "Parent Product" -msgstr "Peatoode" - -#: includes/class-wc-post-types.php:253 -msgid "This is where you can add new products to your store." -msgstr "Siit saad oma poodi lisada uusi tooteid." - -#: includes/class-wc-post-types.php:273 -msgid "Variations" -msgstr "Variatsioonid" - -#: includes/class-wc-post-types.php:281 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Tellimused" - -#: includes/class-wc-post-types.php:291 -msgid "Orders" -msgstr "Tellimused" - -#: includes/class-wc-post-types.php:292 -#: includes/widgets/class-wc-widget-products.php:62 -#: templates/myaccount/my-orders.php:32 -msgid "Order" -msgstr "Tellimus" - -#: includes/class-wc-post-types.php:293 -msgid "Add Order" -msgstr "Lisa tellimus" - -#: includes/class-wc-post-types.php:294 -msgid "Add New Order" -msgstr "Lisa uus tellimus" - -#: includes/class-wc-post-types.php:296 -msgid "Edit Order" -msgstr "Muuda tellimust" - -#: includes/class-wc-post-types.php:297 -msgid "New Order" -msgstr "Uus tellimus" - -#: includes/class-wc-post-types.php:298 includes/class-wc-post-types.php:299 -msgid "View Order" -msgstr "Vaata tellimust" - -#: includes/class-wc-post-types.php:300 -msgid "Search Orders" -msgstr "Otsi tellimustest" - -#: includes/class-wc-post-types.php:301 -msgid "No Orders found" -msgstr "Tellimusi ei leitud" - -#: includes/class-wc-post-types.php:302 -msgid "No Orders found in trash" -msgstr "Prügikastis pole tellimusi." - -#: includes/class-wc-post-types.php:303 -msgid "Parent Orders" -msgstr "Peatellimused" - -#: includes/class-wc-post-types.php:306 -msgid "This is where store orders are stored." -msgstr "Siia salvestatakse tellimused." - -#: includes/class-wc-post-types.php:329 -msgid "Coupons" -msgstr "Kupongid" - -#: includes/class-wc-post-types.php:330 templates/cart/cart.php:119 -msgid "Coupon" -msgstr "Kupong" - -#: includes/class-wc-post-types.php:331 -msgctxt "Admin menu name" -msgid "Coupons" -msgstr "Kupongid" - -#: includes/class-wc-post-types.php:332 -msgid "Add Coupon" -msgstr "Lisa kupong" - -#: includes/class-wc-post-types.php:333 -msgid "Add New Coupon" -msgstr "Lisa uus kupong" - -#: includes/class-wc-post-types.php:335 -msgid "Edit Coupon" -msgstr "Muuda kupongi" - -#: includes/class-wc-post-types.php:336 -msgid "New Coupon" -msgstr "Uus kupong" - -#: includes/class-wc-post-types.php:337 -msgid "View Coupons" -msgstr "Vaata kuponge" - -#: includes/class-wc-post-types.php:338 -msgid "View Coupon" -msgstr "Vaata kupongi" - -#: includes/class-wc-post-types.php:339 -msgid "Search Coupons" -msgstr "Otsi kupongidest" - -#: includes/class-wc-post-types.php:340 -msgid "No Coupons found" -msgstr "Kuponge ei leitud" - -#: includes/class-wc-post-types.php:341 -msgid "No Coupons found in trash" -msgstr "Prügikastis pole kuponge." - -#: includes/class-wc-post-types.php:342 -msgid "Parent Coupon" -msgstr "Peakupong" - -#: includes/class-wc-post-types.php:344 -msgid "" -"This is where you can add new coupons that customers can use in your store." -msgstr "" -"Siit saad lisada uusi kuponge, mida külastajad sinu poes kasutada saavad." - -#: includes/class-wc-product-external.php:86 -msgid "Buy product" -msgstr "Osta toode" - -#: includes/class-wc-product-grouped.php:42 -msgid "View products" -msgstr "Vaata tooteid" - -#: includes/class-wc-product-simple.php:48 -#: includes/class-wc-product-variation.php:211 -msgid "Read More" -msgstr "Loe edasi" - -#: includes/class-wc-product-variable.php:42 -msgid "Select options" -msgstr "Vali" - -#: includes/class-wc-product-variable.php:508 -msgid "" -"This variable product has no active variations and will not be published." -msgstr "" -"Sellel varieeruval tootel ei ole aktiivseid variatsioone, mistõttu seda ei " -"avaldata." - -#: includes/class-wc-product-variation.php:473 -msgid "%s – %s%s" -msgstr "%s – %s%s" - -#: includes/class-wc-shortcodes.php:942 -msgid "" -"Use $args[\"posts_per_page\"] instead. Deprecated argument will be removed " -"in WC 2.2." -msgstr "" -"Kasuta hoopis $args[\"posts_per_page\"]. Aegunud argument eemaldatakse " -"versioonis WC 2.2." - -#: includes/emails/class-wc-email-customer-completed-order.php:26 -msgid "Completed order" -msgstr "Tellimus täidetud" - -#: includes/emails/class-wc-email-customer-completed-order.php:27 -msgid "" -"Order complete emails are sent to the customer when the order is marked " -"complete and usual indicates that the order has been shipped." -msgstr "" -"Kliendile saadetakse e-kiri kui tellimus märgitakse täidetuks. Tavaliselt " -"tähendab see seda, et tellimus on teele pandud." - -#: includes/emails/class-wc-email-customer-completed-order.php:29 -msgid "Your order is complete" -msgstr "Sinu tellimus on täidetud" - -#: includes/emails/class-wc-email-customer-completed-order.php:30 -msgid "Your {blogname} order from {order_date} is complete" -msgstr "Sinu {blogname} tellimus kuupäevaga {order_date} on täidetud." - -#: includes/emails/class-wc-email-customer-completed-order.php:39 -msgid "Your order is complete - download your files" -msgstr "Sinu tellimus on täidetud - laadi oma failid alla" - -#: includes/emails/class-wc-email-customer-completed-order.php:40 -msgid "" -"Your {blogname} order from {order_date} is complete - download your files" -msgstr "" -"Sinu {blogname} tellimus kuupäevaga {order_date} on täidetud - lae oma " -"failid alla" - -#: includes/emails/class-wc-email-customer-completed-order.php:143 -#: includes/emails/class-wc-email-new-order.php:130 -msgid "Subject" -msgstr "Teema" - -#: includes/emails/class-wc-email-customer-completed-order.php:150 -#: includes/emails/class-wc-email-new-order.php:137 -msgid "Email Heading" -msgstr "E-kirja pealkiri" - -#: includes/emails/class-wc-email-customer-completed-order.php:157 -msgid "Subject (downloadable)" -msgstr "Teema (allalaaditav)" - -#: includes/emails/class-wc-email-customer-completed-order.php:164 -msgid "Email Heading (downloadable)" -msgstr "E-kirja pealkiri (allalaaditav)" - -#: includes/emails/class-wc-email-customer-invoice.php:29 -msgid "Customer invoice" -msgstr "Kliendi arve" - -#: includes/emails/class-wc-email-customer-invoice.php:30 -msgid "" -"Customer invoice emails can be sent to the user containing order info and " -"payment links." -msgstr "" -"Kliendile saab saata e-posti teel arve, mis sisaldab tellimuse infot ja " -"maksevõimalusi." - -#: includes/emails/class-wc-email-customer-invoice.php:35 -msgid "Invoice for order {order_number} from {order_date}" -msgstr "Arve tellimusele {order_number}, kuupäevaga {order_date}" - -#: includes/emails/class-wc-email-customer-invoice.php:36 -msgid "Invoice for order {order_number}" -msgstr "Arve tellimuse {order_number} eest" - -#: includes/emails/class-wc-email-customer-invoice.php:38 -msgid "Your {blogname} order from {order_date}" -msgstr "Sinu {blogname} tellimus kuupäevaga {order_date}" - -#: includes/emails/class-wc-email-customer-invoice.php:39 -msgid "Order {order_number} details" -msgstr "Tellimuse {order_number} andmed" - -#: includes/emails/class-wc-email-customer-invoice.php:157 -msgid "Email subject (paid)" -msgstr "E-kirja teema (makstud)" - -#: includes/emails/class-wc-email-customer-invoice.php:164 -msgid "Email heading (paid)" -msgstr "E-kirja pealkiri (makstud)" - -#: includes/emails/class-wc-email-customer-new-account.php:33 -msgid "New account" -msgstr "Uus konto" - -#: includes/emails/class-wc-email-customer-new-account.php:34 -msgid "" -"Customer new account emails are sent when a customer signs up via the " -"checkout or My Account page." -msgstr "" -"Kliendile saadetakse e-kiri, kui ta registreerub Minu Konto lehe kaudu." - -#: includes/emails/class-wc-email-customer-new-account.php:39 -msgid "Your account on {blogname}" -msgstr "Sinu {blogname} konto" - -#: includes/emails/class-wc-email-customer-new-account.php:40 -msgid "Welcome to {blogname}" -msgstr "Tere tulemast {blogname} poodi" - -#: includes/emails/class-wc-email-customer-note.php:31 -msgid "Customer note" -msgstr "Märkus kliendile" - -#: includes/emails/class-wc-email-customer-note.php:32 -msgid "Customer note emails are sent when you add a note to an order." -msgstr "" -"Kliendile saadetakse e-kiri, kui sa lisad tellimusele kliendile nähtava " -"märkme." - -#: includes/emails/class-wc-email-customer-note.php:37 -msgid "Note added to your {blogname} order from {order_date}" -msgstr "Sinu {blogname} tellimusele kuupäevaga {order_date} on lisatud märkus" - -#: includes/emails/class-wc-email-customer-note.php:38 -msgid "A note has been added to your order" -msgstr "Sinu tellimusele on lisatud märkus" - -#: includes/emails/class-wc-email-customer-processing-order.php:26 -msgid "Processing order" -msgstr "Tellimust töödeldakse" - -#: includes/emails/class-wc-email-customer-processing-order.php:27 -msgid "" -"This is an order notification sent to the customer after payment containing " -"order details." -msgstr "" -"See on teade tellimuse kohta, mis saadetakse kliendile pärast seda, kui ta " -"on tellimuse eest maksnud." - -#: includes/emails/class-wc-email-customer-processing-order.php:29 -msgid "Thank you for your order" -msgstr "Täname tellimuse eest" - -#: includes/emails/class-wc-email-customer-processing-order.php:30 -msgid "Your {blogname} order receipt from {order_date}" -msgstr "Sinu {blogname} tellimuse kviitung kuupäevaga {order_date}" - -#: includes/emails/class-wc-email-customer-reset-password.php:38 -msgid "Reset password" -msgstr "Lähtesta parool" - -#: includes/emails/class-wc-email-customer-reset-password.php:39 -msgid "" -"Customer reset password emails are sent when a customer resets their " -"password." -msgstr "Kliendile saadetakse e-kiri, kui ta lähtestab oma parooli." - -#: includes/emails/class-wc-email-customer-reset-password.php:44 -msgid "Password Reset for {blogname}" -msgstr "{blogname} parooli lähtestamine" - -#: includes/emails/class-wc-email-customer-reset-password.php:45 -msgid "Password Reset Instructions" -msgstr "Parooli lähtestamise juhised" - -#: includes/emails/class-wc-email-new-order.php:26 -msgid "New order" -msgstr "Uus tellimus" - -#: includes/emails/class-wc-email-new-order.php:27 -msgid "New order emails are sent when an order is received." -msgstr "Uue tellimuse saamisel saadetakse tellimuse kohta välja e-kiri." - -#: includes/emails/class-wc-email-new-order.php:29 -msgid "New customer order" -msgstr "Uus kliendi tellimus" - -#: includes/emails/class-wc-email-new-order.php:30 -msgid "[{blogname}] New customer order ({order_number}) - {order_date}" -msgstr "[{blogname}] Uus tellimus ({order_number}) - {order_date}" - -#: includes/emails/class-wc-email-new-order.php:123 -msgid "Recipient(s)" -msgstr "Saaja(d)" - -#: includes/emails/class-wc-email-new-order.php:125 -msgid "" -"Enter recipients (comma separated) for this email. Defaults to %s." -msgstr "" -"Sisesta selle e-kirja saajad (komadega eraldatult). Vaikimisi saaja(d) on " -"%s." - -#: includes/emails/class-wc-email-new-order.php:132 -msgid "" -"This controls the email subject line. Leave blank to use the default " -"subject: %s." -msgstr "" -"E-kirja teema. Jäta tühjaks, kui soovid kasutada vaikimisi väärtust: " -"%s." - -#: includes/emails/class-wc-email-new-order.php:139 -msgid "" -"This controls the main heading contained within the email notification. " -"Leave blank to use the default heading: %s." -msgstr "" -"Peamine pealkiri e-kirja sees. Jäta tühjaks kui soovid kasutada vaikimisi " -"väärtust: %s." - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:25 -msgid "BACS" -msgstr "Pangaülekanne" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:26 -msgid "" -"Allows payments by BACS, more commonly known as direct bank/wire transfer." -msgstr "Luba tellimuste eest maksmine pangaülekandega." - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:68 -msgid "Enable Bank Transfer" -msgstr "Luba pangaülekanne" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:72 -#: includes/gateways/cheque/class-wc-gateway-cheque.php:58 -#: includes/gateways/cod/class-wc-gateway-cod.php:64 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:143 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:127 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:104 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:82 -#: includes/widgets/class-wc-widget-cart.php:30 -#: includes/widgets/class-wc-widget-layered-nav-filters.php:28 -#: includes/widgets/class-wc-widget-layered-nav.php:70 -#: includes/widgets/class-wc-widget-price-filter.php:30 -#: includes/widgets/class-wc-widget-product-categories.php:31 -#: includes/widgets/class-wc-widget-product-categories.php:36 -#: includes/widgets/class-wc-widget-product-search.php:28 -#: includes/widgets/class-wc-widget-product-tag-cloud.php:28 -#: includes/widgets/class-wc-widget-products.php:28 -#: includes/widgets/class-wc-widget-recent-reviews.php:28 -#: includes/widgets/class-wc-widget-recently-viewed.php:28 -#: includes/widgets/class-wc-widget-top-rated-products.php:30 -msgid "Title" -msgstr "Pealkiri" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:74 -#: includes/gateways/cheque/class-wc-gateway-cheque.php:60 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:145 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:129 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:84 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:83 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:58 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:106 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:84 -msgid "This controls the title which the user sees during checkout." -msgstr "Siin saad määrata, millist nimetust näeb kasutaja kassas." - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:75 -msgid "Direct Bank Transfer" -msgstr "Pangaülekanne" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:79 -#: includes/gateways/cheque/class-wc-gateway-cheque.php:65 -#: includes/gateways/cod/class-wc-gateway-cod.php:71 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:150 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:134 -#: includes/wc-template-functions.php:902 -msgid "Description" -msgstr "Kirjeldus" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:81 -#: includes/gateways/cheque/class-wc-gateway-cheque.php:67 -#: includes/gateways/cod/class-wc-gateway-cod.php:66 -msgid "Payment method description that the customer will see on your checkout." -msgstr "Makseviisi kirjeldus, mida klient kassas näeb." - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:82 -msgid "" -"Make your payment directly into our bank account. Please use your Order ID " -"as the payment reference. Your order won't be shipped until the funds have " -"cleared in our account." -msgstr "" -"Tee ülekanne meie pangakontole. Palun kasuta selgituses tellimuse numbrit. " -"Sinu tellimust ei lähetata enne, kui raha on jõudnud meie kontole." - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:86 -#: includes/gateways/cheque/class-wc-gateway-cheque.php:72 -#: includes/gateways/cod/class-wc-gateway-cod.php:78 -msgid "Instructions" -msgstr "Juhised" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:88 -#: includes/gateways/cheque/class-wc-gateway-cheque.php:74 -msgid "Instructions that will be added to the thank you page and emails." -msgstr "Juhised, mis lisatakse aitäh-lehele ja e-kirjadele." - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:105 -msgid "Account Details" -msgstr "Konto andmed" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:111 -msgid "Account Name" -msgstr "Konto nimi" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:112 -#: includes/gateways/bacs/class-wc-gateway-bacs.php:253 -msgid "Account Number" -msgstr "Konto number" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:113 -msgid "Bank Name" -msgstr "Panga nimi" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:114 -#: includes/gateways/bacs/class-wc-gateway-bacs.php:257 -msgid "Sort Code" -msgstr "Panga kood" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:115 -#: includes/gateways/bacs/class-wc-gateway-bacs.php:261 -msgid "IBAN" -msgstr "IBAN" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:116 -msgid "BIC / Swift" -msgstr "SWIFT/BIC" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:121 -msgid "+ Add Account" -msgstr "+ Lisa konto" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:121 -msgid "Remove selected account(s)" -msgstr "Eemalda valitud konto(d)" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:240 -msgid "Our Bank Details" -msgstr "Meie panga andmed" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:265 -msgid "BIC" -msgstr "BIC" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:295 -msgid "Awaiting BACS payment" -msgstr "Ootame pangaülekandega maksmist" - -#: includes/gateways/cheque/class-wc-gateway-cheque.php:25 -msgid "Cheque" -msgstr "Tšekk" - -#: includes/gateways/cheque/class-wc-gateway-cheque.php:26 -msgid "" -"Allows cheque payments. Why would you take cheques in this day and age? Well " -"you probably wouldn't but it does allow you to make test purchases for " -"testing order emails and the 'success' pages etc." -msgstr "" -"Luba tellimuste eest tšekiga maksmist. Aga tegelikult - miks sa peaksid " -"tänapäeval tšekkide abil maksmist taluma? Ilmselt ei peagi, aga see " -"võimaldab sul testida, kuidas tellimuse protsess, e-kirjad jms. töötavad." - -#: includes/gateways/cheque/class-wc-gateway-cheque.php:54 -msgid "Enable Cheque Payment" -msgstr "Luba tšekiga maksmine" - -#: includes/gateways/cheque/class-wc-gateway-cheque.php:61 -msgid "Cheque Payment" -msgstr "Tšekk" - -#: includes/gateways/cheque/class-wc-gateway-cheque.php:68 -msgid "" -"Please send your cheque to Store Name, Store Street, Store Town, Store " -"State / County, Store Postcode." -msgstr "Palun saada tšekk aadressile: Poe nimi, aadress, riik, postiindeks." - -#: includes/gateways/cheque/class-wc-gateway-cheque.php:115 -msgid "Awaiting cheque payment" -msgstr "Ootame tšekiga maksmist" - -#: includes/gateways/cod/class-wc-gateway-cod.php:24 -#: includes/gateways/cod/class-wc-gateway-cod.php:67 -msgid "Cash on Delivery" -msgstr "Tasumine kohaletoimetamisel" - -#: includes/gateways/cod/class-wc-gateway-cod.php:25 -msgid "Have your customers pay with cash (or by other means) upon delivery." -msgstr "Luba klientidel tasuda sularahas (või muul moel) kauba kättesaamisel." - -#: includes/gateways/cod/class-wc-gateway-cod.php:57 -msgid "Enable COD" -msgstr "Luba tasumine kohaletoimetamisel" - -#: includes/gateways/cod/class-wc-gateway-cod.php:58 -msgid "Enable Cash on Delivery" -msgstr "Tasumine kättesaamisel" - -#: includes/gateways/cod/class-wc-gateway-cod.php:73 -msgid "Payment method description that the customer will see on your website." -msgstr "Makseviisi kirjeldus, mida klient sinu kodulehel näeb." - -#: includes/gateways/cod/class-wc-gateway-cod.php:74 -#: includes/gateways/cod/class-wc-gateway-cod.php:81 -msgid "Pay with cash upon delivery." -msgstr "Maksa sularahas, kui saad kauba kätte." - -#: includes/gateways/cod/class-wc-gateway-cod.php:80 -msgid "Instructions that will be added to the thank you page." -msgstr "Juhised, mis lisatakse aitäh-lehele." - -#: includes/gateways/cod/class-wc-gateway-cod.php:85 -msgid "Enable for shipping methods" -msgstr "Luba tarneviisidele" - -#: includes/gateways/cod/class-wc-gateway-cod.php:90 -msgid "" -"If COD is only available for certain methods, set it up here. Leave blank to " -"enable for all methods." -msgstr "" -"Kui tasumine kättesaamisel on kasutatav ainult mõnede tarneviiside korral, " -"seadista need siin. Jäta tühjaks, kui soovid lubada seda kõikide " -"tarneviiside korral." - -#: includes/gateways/cod/class-wc-gateway-cod.php:155 -msgid "Payment to be made upon delivery." -msgstr "Tasumine toimub kättesaamisel." - -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:31 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:168 -msgid "Mijireh Checkout" -msgstr "Mijireh Checkout" - -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:108 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:293 -msgid "Mijireh error:" -msgstr "Mijirehi viga:" - -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:132 -msgid "Enable Mijireh Checkout" -msgstr "Luba Mijireh Checkout" - -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:136 -msgid "Access Key" -msgstr "Ligipääsuvõti" - -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:138 -msgid "The Mijireh access key for your store." -msgstr "Sinu poe Mijireh ligipääsuvõti (access key)." - -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:146 -msgid "Credit Card" -msgstr "Krediitkaart" - -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:152 -msgid "Pay securely with your credit card." -msgstr "Maksa turvaliselt krediitkaardi abil." - -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:153 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:136 -msgid "This controls the description which the user sees during checkout." -msgstr "Kirjeldus, mida klient kassas näeb." - -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:172 -msgid "Get started with Mijireh Checkout" -msgstr "Alusta Mijireh Checkouti kasutamist" - -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:173 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site. Mijireh supports a wide variety of payment gateways: Stripe, " -"Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and more." -msgstr "" -"võimaldab täielikult PCI nõuetele vastavat, turvalist viisi " -"krediitkaardiandmete kogumiseks ja oma maksete töötlejale edastamiseks, " -"samal ajal kui sina saad täielikult kontrollida oma lehe kujundust. Mijireh " -"toetab paljusid maksete töötlejaid: Stripe, Authorize.net, PayPal, eWay, " -"SagePay, Braintree, PayLeap jne." - -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:175 -msgid "Join for free" -msgstr "Liitu tasuta" - -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:175 -msgid "Learn more about WooCommerce and Mijireh" -msgstr "Uuri rohkem WooCommerce'i ja Mijirehi kohta" - -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:179 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site." -msgstr "" -"võimaldab täielikult PCI nõuetele vastavat, turvalist viisi " -"krediitkaardiandmete kogumiseks ja oma maksete töötlejale edastamiseks, " -"samal ajal kui sina saad täielikult kontrollida oma lehe kujundust." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:34 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:130 -msgid "PayPal" -msgstr "PayPal" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:93 -msgid "PayPal standard" -msgstr "PayPal standard" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:94 -msgid "" -"PayPal standard works by sending the user to PayPal to enter their payment " -"information." -msgstr "" -"PayPal stanardi kasutamisel saadetakse klient maksmiseks PayPali lehele." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:106 -msgid "Gateway Disabled" -msgstr "Makseviis on välja lülitatud" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:106 -msgid "PayPal does not support your store currency." -msgstr "PayPal ei toeta sinu poe valuutat." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:123 -msgid "Enable PayPal standard" -msgstr "Luba PayPal standard" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:137 -msgid "" -"Pay via PayPal; you can pay with your credit card if you don't have a PayPal " -"account" -msgstr "" -"Maksa PayPali abil. Kui sul ei ole PayPali kontot, saad maksta oma " -"krediitkaardiga." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:140 -msgid "PayPal Email" -msgstr "PayPali e-post" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:142 -msgid "" -"Please enter your PayPal email address; this is needed in order to take " -"payment." -msgstr "" -"Palun sisesta oma PayPali e-posti aadress; seda on tarvis maksete " -"vastuvõtmiseks." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:148 -msgid "Receiver Email" -msgstr "Saaja e-post" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:150 -msgid "" -"If this differs from the email entered above, input your main receiver email " -"for your PayPal account. This is used to validate IPN requests." -msgstr "" -"Kui see erineb ülalpool sisestatud e-posti aadressist, sisesta oma PayPali " -"konto peamise saaja e-posti aadress. Seda kasutatakse IPN-päringute " -"valideerimiseks." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:156 -msgid "PayPal Identity Token" -msgstr "PayPali identifitseerimistunnus" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:158 -msgid "" -"Optionally enable \"Payment Data Transfer\" (Profile > Website Payment " -"Preferences) and then copy your identity token here. This will allow " -"payments to be verified without the need for PayPal IPN." -msgstr "" -"Valikuliselt võid lubada \"Payment Data Transfer\" (Profile > Website " -"Payment Preferences) ja siis kopeerida oma identifitseerimistunnuse siia. " -"See võimaldab maksete kinnitamist ilma, et peaks kasutama PayPal IPNi." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:161 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:194 -msgid "Optional" -msgstr "Valikuline" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:164 -msgid "Invoice Prefix" -msgstr "Arve prefiks" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:166 -msgid "" -"Please enter a prefix for your invoice numbers. If you use your PayPal " -"account for multiple stores ensure this prefix is unique as PayPal will not " -"allow orders with the same invoice number." -msgstr "" -"Palun sisesta arve numbri prefiks. Kui sa kasutad oma PayPali kontot mitme " -"erineva poe jaoks, siis veendu, et see prefiks on unikaalne, kuna PayPal ei " -"luba mitut sama numbriga tellimust." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:171 -msgid "Payment Action" -msgstr "Makse tegevus" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:173 -msgid "" -"Choose whether you wish to capture funds immediately or authorize payment " -"only." -msgstr "" -"Vali, kas soovid kohe kontolt raha võtta või lihtsalt makset autoriseerida." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:177 -msgid "Capture" -msgstr "Võta raha" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:178 -msgid "Authorize" -msgstr "Autoriseeri" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:182 -msgid "Submission method" -msgstr "Edastamise meetod" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:184 -msgid "Use form submission method." -msgstr "Kasuta vormi edastamise meetodit." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:185 -msgid "" -"Enable this to post order data to PayPal via a form instead of using a " -"redirect/querystring." -msgstr "" -"Kasuta seda varianti, kui soovida tellimuse andmeid PayPali postitada selle " -"asemel, et kasutada ümbersuunamist või päringu parameetreid." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:189 -msgid "Page Style" -msgstr "Lehe stiil" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:191 -msgid "" -"Optionally enter the name of the page style you wish to use. These are " -"defined within your PayPal account." -msgstr "" -"Valikuline - sisesta lehe stiili nimi, mida soovid kasutada. Need on " -"defineeritud sinu PayPali kontol." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:197 -msgid "Shipping options" -msgstr "Transpordi seaded" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:202 -msgid "Shipping details" -msgstr "Transpordi üksikasjad" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:204 -msgid "Send shipping details to PayPal instead of billing." -msgstr "Saada PayPali tarneinfo makseinfo asemel." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:206 -msgid "" -"PayPal allows us to send 1 address. If you are using PayPal for shipping " -"labels you may prefer to send the shipping address rather than billing." -msgstr "" -"PayPali on võimalik saata vaid 1 aadress. Kui sa kasutad PayPali " -"tarnekleepsude jaoks, siis ilmselt tahad sa neile saata tarneaadressi, mitte " -"arveaadressi." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:210 -msgid "Address override" -msgstr "Aadressi ülekirjutamine" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:212 -msgid "" -"Enable \"address_override\" to prevent address information from being " -"changed." -msgstr "" -"Lülita \"address_override\" sisse, et kaitsta aadressi infot muutmise eest." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:213 -msgid "" -"PayPal verifies addresses therefore this setting can cause errors (we " -"recommend keeping it disabled)." -msgstr "" -"PayPal kontrollib aadresse, mistõttu see valik võib põhjustada vigu (me " -"soovitame hoida see valik välja lülitatuna)." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:217 -msgid "Gateway Testing" -msgstr "Makseviisi testimine" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:222 -msgid "PayPal sandbox" -msgstr "PayPali liivakast" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:224 -msgid "Enable PayPal sandbox" -msgstr "Lülita PayPali liivakast sisse" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:226 -msgid "" -"PayPal sandbox can be used to test payments. Sign up for a developer account " -"here." -msgstr "" -"PayPali liivakasti saab kasutada maksete testimiseks. Selleks loo endale siin arendaja konto." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:229 -msgid "Debug Log" -msgstr "Vealogi" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:231 -msgid "Enable logging" -msgstr "Lülita logimine sisse" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:233 -msgid "" -"Log PayPal events, such as IPN requests, inside woocommerce/logs/" -"paypal-%s.txt" -msgstr "" -"Logi PayPali sündmused, näiteks IPN-päringud, faili woocommerce/logs/" -"paypal-%s.txt" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:342 -msgid "Order %s" -msgstr "Tellimus %s" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:352 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:406 -msgid "Shipping via" -msgstr "Tarneviis" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:446 -msgid "" -"Thank you for your order. We are now redirecting you to PayPal to make " -"payment." -msgstr "Täname tellimuse eest. Me suuname sind nüüd maksmiseks PayPali." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:471 -msgid "Pay via PayPal" -msgstr "Maksa PayPaliga" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:471 -msgid "Cancel order & restore cart" -msgstr "Tühista tellimus & taasta ostukorv" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:527 -msgid "" -"Thank you - your order is now pending payment. You should be automatically " -"redirected to PayPal to make payment." -msgstr "" -"Aitäh - sinu tellimus ootab nüüd maksmist. Sind peaks brauser nüüd " -"automaatselt maksmiseks PayPali suunama." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:668 -msgid "Validation error: PayPal amounts do not match (gross %s)." -msgstr "Valideerimise viga: PayPali summad ei kattu (bruto %s)." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:679 -msgid "" -"Validation error: PayPal IPN response from a different email address (%s)." -msgstr "" -"Valideerimise viga: PayPali IPN vastus tuli teiselt e-posti aadressilt (%s)." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:697 -msgid "IPN payment completed" -msgstr "IPN-makse on sooritatud" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:700 -msgid "Payment pending: %s" -msgstr "Makse ootel: %s" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:712 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:720 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:737 -msgid "Payment %s via IPN." -msgstr "Makse %s IPNi kaudu" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:725 -msgid "Order refunded/reversed" -msgstr "Tellimus tühistatud/tagastatud" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:726 -msgid "Order %s has been marked as refunded - PayPal reason code: %s" -msgstr "Tellimus %s on märgitud tagasi makstuks - PayPali põhjuse kood: %s." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:729 -msgid "Payment for order %s refunded/reversed" -msgstr "Makse tellimuse %s eest on tagastatud/tagasi pööratud" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:742 -msgid "Order reversed" -msgstr "Tellimus tagastatud" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:743 -msgid "" -"Order %s has been marked on-hold due to a reversal - PayPal reason code: %s" -msgstr "" -"Tellimus %s on pandud ootele kuna makse tagastati - PayPali põhjuse kood: %s" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:746 -msgid "Payment for order %s reversed" -msgstr "Makse tellimuse %s eest tagastatud" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:754 -msgid "Reversal Cancelled" -msgstr "Tagasimaksmine tühistatud" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:755 -msgid "" -"Order %s has had a reversal cancelled. Please check the status of payment " -"and update the order status accordingly." -msgstr "" -"Tellimusel %s on tagasimaksmine tühistatud. Palun kontrolli makse laekumist " -"ja uuenda vastavalt sellele tellimuse olekut." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:758 -msgid "Reversal cancelled for order %s" -msgstr "Tellimuse %s tagasimaksmine tühistatud" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:825 -msgid "Validation error: PayPal amounts do not match (amt %s)." -msgstr "Valideerimise viga: PayPali summad ei kattu (summa %s)." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:832 -msgid "PDT payment completed" -msgstr "PDT-makse sooritatud" - -#: includes/integrations/google-analytics/class-wc-google-analytics.php:26 -msgid "Google Analytics" -msgstr "Google Analytics" - -#: includes/integrations/google-analytics/class-wc-google-analytics.php:27 -msgid "" -"Google Analytics is a free service offered by Google that generates detailed " -"statistics about the visitors to a website." -msgstr "" -"Google Analytics on tasuta teenus, mida pakub Google ja mis koostab lehe " -"külastajate kohta põhjaliku statistika." - -#: includes/integrations/google-analytics/class-wc-google-analytics.php:63 -msgid "Google Analytics ID" -msgstr "Google Analytics ID" - -#: includes/integrations/google-analytics/class-wc-google-analytics.php:64 -msgid "" -"Log into your google analytics account to find your ID. e.g. UA-XXXXX-" -"X" -msgstr "" -"Oma ID leidmiseks logi oma Google Analyticsi kontole sisse. ID on midagi " -"sarnast: UA-XXXXX-X" - -#: includes/integrations/google-analytics/class-wc-google-analytics.php:69 -msgid "Set Domain Name" -msgstr "Määra domeeninimi" - -#: includes/integrations/google-analytics/class-wc-google-analytics.php:70 -msgid "" -"(Optional) Sets the _setDomainName variable. See " -"here for more information." -msgstr "" -"(Valikuline) Määrab _setDomainName muutuja. Rohkem infot siin." - -#: includes/integrations/google-analytics/class-wc-google-analytics.php:75 -msgid "Tracking code" -msgstr "Jälgimiskood" - -#: includes/integrations/google-analytics/class-wc-google-analytics.php:76 -msgid "" -"Add tracking code to your site's footer. You don't need to enable this if " -"using a 3rd party analytics plugin." -msgstr "" -"Lisa jälgimiskood oma lehe jalusesse. Sa ei pea seda kasutama, kui kasutad " -"juba mõne kolmanda osapoole analüütika pluginat." - -#: includes/integrations/google-analytics/class-wc-google-analytics.php:82 -msgid "Add eCommerce tracking code to the thankyou page" -msgstr "Lisa eCommerce'i jälgimise kood aitäh-lehele" - -#: includes/integrations/google-analytics/class-wc-google-analytics.php:88 -msgid "Add event tracking code for add to cart actions" -msgstr "Lisa sündmuste jälgimise kood ostukorvi lisamise nupule" - -#: includes/integrations/google-analytics/class-wc-google-analytics.php:120 -#: includes/integrations/google-analytics/class-wc-google-analytics.php:180 -#: woocommerce-ajax.php:1531 -msgid "Guest" -msgstr "Külaline" - -#: includes/integrations/google-analytics/class-wc-google-analytics.php:218 -#: includes/integrations/google-analytics/class-wc-google-analytics.php:275 -#: templates/single-product/meta.php:20 -msgid "SKU:" -msgstr "Tootekood:" - -#: includes/integrations/sharedaddy/class-wc-sharedaddy.php:26 -msgid "ShareDaddy" -msgstr "ShareDaddy" - -#: includes/integrations/sharedaddy/class-wc-sharedaddy.php:27 -msgid "ShareDaddy is a sharing plugin bundled with JetPack." -msgstr "ShareDaddy on jagamise plugin, mis on kaasas JetPackiga" - -#: includes/integrations/sharedaddy/class-wc-sharedaddy.php:51 -msgid "Output ShareDaddy button?" -msgstr "Näita ShareDaddy nuppu?" - -#: includes/integrations/sharedaddy/class-wc-sharedaddy.php:52 -msgid "Enable this option to show the ShareDaddy button on the product page." -msgstr "Lülita see sisse, et näidata toote lehel ShareDaddy nuppu." - -#: includes/integrations/sharethis/class-wc-sharethis.php:29 -msgid "ShareThis" -msgstr "ShareThis" - -#: includes/integrations/sharethis/class-wc-sharethis.php:30 -msgid "" -"ShareThis offers a sharing widget which will allow customers to share links " -"to products with their friends." -msgstr "" -"ShareThis pakub jagamise vidinat, mis laseb klientidel oma sõpradega jagada " -"viiteid sinu toodetele." - -#: includes/integrations/sharethis/class-wc-sharethis.php:63 -msgid "ShareThis Publisher ID" -msgstr "ShareDaddy kirjastaja ID" - -#: includes/integrations/sharethis/class-wc-sharethis.php:64 -msgid "" -"Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons on " -"product pages." -msgstr "" -"Sisesta oma %1$sShareThis kirjastaja ID%2$s, et näidata sotsiaalse jagamise " -"nuppe toodete lehtedel." - -#: includes/integrations/sharethis/class-wc-sharethis.php:69 -msgid "ShareThis Code" -msgstr "ShareThis kood" - -#: includes/integrations/sharethis/class-wc-sharethis.php:70 -msgid "You can tweak the ShareThis code by editing this option." -msgstr "Seda valikut muutes saad ShareThis koodi mudida." - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:25 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:85 -msgid "Flat Rate" -msgstr "Fikseeritud maksumus" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:27 -msgid "Flat rates let you define a standard rate per item, or per order." -msgstr "" -"Fikseeritud maksumused lasevad sul määrata standartseid transpordikulusid " -"toote või tellimuse kohta." - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:78 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:52 -msgid "Enable this shipping method" -msgstr "Kasuta seda tarneviisi" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:82 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:81 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:56 -msgid "Method Title" -msgstr "Tarneviisi pealkiri" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:89 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:63 -msgid "Availability" -msgstr "Saadavus" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:94 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:93 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:145 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:102 -msgid "All allowed countries" -msgstr "Kõik lubatud riigid" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:95 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:99 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:94 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:98 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:146 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:150 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:103 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:107 -msgid "Specific Countries" -msgstr "Valitud riigid" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:107 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:81 -msgid "Tax Status" -msgstr "Maksustamine" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:111 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:85 -msgid "Taxable" -msgstr "Maksustatav" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:112 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:86 -msgid "None" -msgstr "-" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:116 -msgid "Cost per order" -msgstr "Maksumus tellimuse kohta" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:119 -msgid "" -"Enter a cost (excluding tax) per order, e.g. 5.00. Leave blank to disable." -msgstr "" -"Sisesta maksumus (ilma maksudeta) tellimuse kohta, näiteks 5.00. Jäta " -"tühjaks, et mitte kasutada." - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:125 -msgid "Additional Rates" -msgstr "Lisatasud" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:127 -msgid "" -"Optional extra shipping options with additional costs (one per line): Option " -"Name | Additional Cost [+- Percents] | Per Cost Type (order, class, or item) " -"Example: Priority Mail | 6.95 [+ 0.2%] | order." -msgstr "" -"Valikuline - lisavõimalused tarneviisidele koos lisatasudega (üks rea " -"kohta): Lisavaliku nimetus | Lisatasu [+- protsenti] | Kulutüüp (order, " -"class või item) Näide: Lennupost | 6.95 [+ 0.2%] | order." - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:130 -msgid "" -"Option Name | Additional Cost [+- Percents%] | Per Cost Type (order, class, " -"or item)" -msgstr "" -"Lisavaliku nimetus | Lisatasu [+- protsenti] | Kulutüüp (order, class või " -"item)" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:133 -msgid "Additional Costs" -msgstr "Lisatasud:" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:135 -msgid "" -"Additional costs can be added below - these will all be added to the per-" -"order cost above." -msgstr "" -"Lisatasusid saab lisada allpool - need lisatakse ülaltoodud " -"tellimusepõhisele hinnale." - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:138 -msgid "Costs Added..." -msgstr "Lisatasusid rakendatakse…" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:142 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:94 -msgid "Per Order - charge shipping for the entire order as a whole" -msgstr "Tellimuse kohta - tasu arvestatakse terve tellimuse kohta" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:143 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:95 -msgid "Per Item - charge shipping for each item individually" -msgstr "Toote kohta - iga toote eest võetakse eraldi transporditasu" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:144 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:96 -msgid "Per Class - charge shipping for each shipping class in an order" -msgstr "" -"Klassi kohta - iga transpordiklassi eest tellimusel võetakse eraldi tasu" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:151 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:117 -msgid "Minimum Handling Fee" -msgstr "Minimaalne käsitlustasu" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:154 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:120 -msgid "" -"Enter a minimum fee amount. Fee's less than this will be increased. Leave " -"blank to disable." -msgstr "" -"Sisesta minimaalne tasu. Tasud, mis on sellest väiksemad, tehakse suuremaks. " -"Jäta tühjaks, et mitte kasutada." - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:519 -msgid "Costs" -msgstr "Tasud" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:526 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:100 -msgid "Cost" -msgstr "Tasu" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:526 -msgid "Cost, excluding tax." -msgstr "Tasu ilma maksudeta" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:527 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:109 -msgid "Handling Fee" -msgstr "Käsitlustasu" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:527 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -msgstr "" -"Tasu ilma maksudeta. Sisesta summa, näiteks 2.50, või protsent, näiteks 5%." - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:532 -msgid "+ Add Cost" -msgstr "+ Lisa tasu" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:532 -msgid "Delete selected costs" -msgstr "Kustuta valitud tasud" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:538 -msgid "Any class" -msgstr "Ükskõik milline" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:539 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:540 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:110 -#: templates/order/order-details.php:119 templates/order/order-details.php:134 -msgid "N/A" -msgstr "pole saadaval" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:558 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:588 -msgid "Select a class…" -msgstr "Vali klass…" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:563 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:564 -msgid "0.00" -msgstr "0,00" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:602 -msgid "Delete the selected rates?" -msgstr "Kustuta valitud tasud?" - -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:25 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:84 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:142 -msgid "Free Shipping" -msgstr "Tasuta transport" - -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:77 -msgid "Enable Free Shipping" -msgstr "Luba tasuta transport" - -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:88 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:140 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:97 -msgid "Method availability" -msgstr "Tarneviisi saadavus" - -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:106 -msgid "Free Shipping Requires..." -msgstr "Tasuta transpordi jaoks on vajalik…" - -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:111 -msgid "A valid free shipping coupon" -msgstr "Kehtiv tasuta transpordi kupong" - -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:112 -msgid "A minimum order amount (defined below)" -msgstr "Minimaalne tellimuse summa (määratud allpool)" - -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:113 -msgid "A minimum order amount OR a coupon" -msgstr "Minimaalne tellimuse summa VÕI kupong" - -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:114 -msgid "A minimum order amount AND a coupon" -msgstr "Minimaalne tellimuse summa JA kupong" - -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:118 -msgid "Minimum Order Amount" -msgstr "Minimaalne tellimuse summa" - -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:121 -msgid "" -"Users will need to spend this amount to get free shipping (if enabled above)." -msgstr "" -"Kasutajad peavad ostma vähemalt selle summa eest, et saada tasuta transporti " -"(kui see on ülalpool sisse lülitatud)." - -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:29 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:59 -msgid "International Delivery" -msgstr "Rahvusvaheline transport" - -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:30 -msgid "International delivery based on flat rate shipping." -msgstr "Rahvusvaheline transport põhineb fikseeritud maksumusega transpordil." - -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:68 -msgid "Selected countries" -msgstr "Valitud riigid" - -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:69 -msgid "Excluding selected countries" -msgstr "Kõik, välja arvatud valitud riigid" - -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:73 -msgid "Countries" -msgstr "Riigid" - -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:90 -msgid "Cost Added..." -msgstr "Tasu lisatakse…" - -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:103 -msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -msgstr "Tasu ilma maksudeta. Sisesta summa, näiteks 2.50." - -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:111 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. " -"Leave blank to disable." -msgstr "" -"Tasu ilma maksudeta. Sisesta summa, näiteks 2.50, või protsent, näiteks 5%. " -"Jäta tühjaks, et mitte kasutada." - -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:25 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:107 -msgid "Local Delivery" -msgstr "Kohalik transport" - -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:98 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:76 -msgid "Enable" -msgstr "Luba" - -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:100 -msgid "Enable local delivery" -msgstr "Luba kohalik transport" - -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:111 -msgid "Fee Type" -msgstr "Tasu liik" - -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:113 -msgid "How to calculate delivery charges" -msgstr "Kuidas arvutada transpordikulusid" - -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 -msgid "Fixed amount" -msgstr "Kindel summa" - -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:117 -msgid "Percentage of cart total" -msgstr "Protsent ostukorvi maksumusest" - -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:118 -msgid "Fixed amount per product" -msgstr "Kindel summa toote kohta" - -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:123 -msgid "Delivery Fee" -msgstr "Kohaletoimetamise tasu" - -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:126 -msgid "" -"What fee do you want to charge for local delivery, disregarded if you choose " -"free. Leave blank to disable." -msgstr "" -"Millist summat soovid sa küsida kohaliku transpordi eest. Kui oled valinud " -"tasuta transpordi, siis seda eiratakse. Jäta tühjaks, kui sa ei soovi seda " -"kasutada." - -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:132 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:89 -msgid "Zip/Post Codes" -msgstr "Postiindeks" - -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:134 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:91 -msgid "" -"What zip/post codes would you like to offer delivery to? Separate codes with " -"a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -msgstr "" -"Millistele postiindeksitele soovid transporti pakkuda? Eralda indeksid " -"komaga. Võid kasutada ka tärne, näiteks P* lubab kasutada postiindeksit PE30." - -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:169 -msgid "" -"Local delivery is a simple shipping method for delivering orders locally." -msgstr "" -"Kohalik transport in lihtne tarneviis tellimuste kohalikuks " -"kohaletoimetamiseks." - -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:25 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:85 -msgid "Local Pickup" -msgstr "Tulen ise järgi" - -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:78 -msgid "Enable local pickup" -msgstr "Luba ise järgi tulemine" - -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:126 -msgid "" -"Local pickup is a simple method which allows the customer to pick up their " -"order themselves." -msgstr "" -"Ise järgi tulemine on lihtne tarneviis, mis võimaldab klientidel oma " -"tellimusele ise järgi tulla." - -#: includes/shortcodes/class-wc-shortcode-cart.php:67 -msgid "Shipping costs updated." -msgstr "Transpordikulusi uuendati." - -#: includes/shortcodes/class-wc-shortcode-checkout.php:87 -#: includes/shortcodes/class-wc-shortcode-my-account.php:102 -#: includes/shortcodes/class-wc-shortcode-view-order.php:50 -msgid "My Account →" -msgstr "Minu konto →" - -#: includes/shortcodes/class-wc-shortcode-checkout.php:109 -#: includes/shortcodes/class-wc-shortcode-checkout.php:160 -msgid "" -"This order’s status is “%s”—it cannot be paid for. " -"Please contact us if you need assistance." -msgstr "" -"Selle tellimuse olek on “%s”—selle eest ei saa maksta. " -"Palun võta meiega ühendust, kui vajad veel abi." - -#: includes/shortcodes/class-wc-shortcode-checkout.php:113 -#: includes/shortcodes/class-wc-shortcode-checkout.php:164 -msgid "Sorry, this order is invalid and cannot be paid for." -msgstr "Vabandame, see tellimus on kehtetu ja selle eest ei saa maksta." - -#: includes/shortcodes/class-wc-shortcode-checkout.php:130 -#: templates/checkout/thankyou.php:40 -#: templates/emails/customer-completed-order.php:18 -#: templates/emails/customer-invoice.php:22 -#: templates/emails/customer-note.php:22 -#: templates/emails/customer-processing-order.php:18 -msgid "Order:" -msgstr "Tellimus:" - -#: includes/shortcodes/class-wc-shortcode-checkout.php:134 -#: templates/checkout/thankyou.php:44 -msgid "Date:" -msgstr "Kuupäev:" - -#: includes/shortcodes/class-wc-shortcode-checkout.php:138 -#: templates/checkout/thankyou.php:48 -msgid "Total:" -msgstr "Kokku:" - -#: includes/shortcodes/class-wc-shortcode-checkout.php:143 -#: templates/checkout/thankyou.php:53 -msgid "Payment method:" -msgstr "Makseviis:" - -#: includes/shortcodes/class-wc-shortcode-checkout.php:233 -msgid "" -"The order totals have been updated. Please confirm your order by pressing " -"the Place Order button at the bottom of the page." -msgstr "" -"Tellimuse summad on uuendatud. Palun kinnita oma tellimus vajutades lehe " -"lõpus olevale Esita tellimus nupule." - -#: includes/shortcodes/class-wc-shortcode-my-account.php:109 -#: templates/myaccount/view-order.php:13 -msgid "" -"Order %s made on %s" -msgstr "" -"Tellimus %s tehti %s" - -#: includes/shortcodes/class-wc-shortcode-my-account.php:110 -#: templates/myaccount/view-order.php:14 -msgid "Order status: %s" -msgstr "Tellimuse olek: %s" - -#: includes/shortcodes/class-wc-shortcode-my-account.php:115 -#: templates/myaccount/view-order.php:20 templates/order/tracking.php:31 -msgid "Order Updates" -msgstr "Tellimuse uuendused" - -#: includes/shortcodes/class-wc-shortcode-my-account.php:121 -#: templates/myaccount/view-order.php:26 templates/order/tracking.php:37 -msgid "l jS \\o\\f F Y, h:ia" -msgstr "l j. F Y H:i:s" - -#: includes/shortcodes/class-wc-shortcode-my-account.php:228 -msgid "Enter a username or e-mail address." -msgstr "Sisesta kasutajanimi või e-posti aadress." - -#: includes/shortcodes/class-wc-shortcode-my-account.php:235 -msgid "There is no user registered with that email address." -msgstr "Sellise e-posti aadressiga kasutajat ei ole registreeritud." - -#: includes/shortcodes/class-wc-shortcode-my-account.php:250 -msgid "Invalid username or e-mail." -msgstr "Vigane kasutajanimi või e-posti aadress." - -#: includes/shortcodes/class-wc-shortcode-my-account.php:264 -msgid "Password reset is not allowed for this user" -msgstr "Selle kasutaja puhul ei ole parooli lähtestamine lubatud" - -#: includes/shortcodes/class-wc-shortcode-my-account.php:292 -msgid "Check your e-mail for the confirmation link." -msgstr "Kontrolli oma e-posti, sinna peaks olema tulnud kinnituslink." - -#: includes/shortcodes/class-wc-shortcode-my-account.php:312 -#: includes/shortcodes/class-wc-shortcode-my-account.php:317 -#: includes/shortcodes/class-wc-shortcode-my-account.php:324 -msgid "Invalid key" -msgstr "Vigane võti" - -#: includes/shortcodes/class-wc-shortcode-order-tracking.php:50 -msgid "Please enter a valid order ID" -msgstr "Palun sisesta korrektne tellimuse ID" - -#: includes/shortcodes/class-wc-shortcode-order-tracking.php:54 -msgid "Please enter a valid order email" -msgstr "Palun sisesta korrektne tellimuse e-posti aadress" - -#: includes/shortcodes/class-wc-shortcode-order-tracking.php:73 -msgid "Sorry, we could not find that order id in our database." -msgstr "" -"Vabandame, me ei suutnud sellist tellimuse id-d oma andmebaasist leida." - -#: includes/wc-cart-functions.php:25 -msgid "This product is protected and cannot be purchased." -msgstr "See toode on kaitstud ja seda ei saa osta." - -#: includes/wc-cart-functions.php:84 -msgid "Added "%s" to your cart." -msgstr ""%s" lisati su korvi." - -#: includes/wc-cart-functions.php:84 -msgid "" and "" -msgstr "" ja "" - -#: includes/wc-cart-functions.php:87 -msgid ""%s" was successfully added to your cart." -msgstr ""%s" lisati su korvi." - -#: includes/wc-cart-functions.php:95 -msgid "Continue Shopping →" -msgstr "Jätka ostmist →" - -#: includes/wc-core-functions.php:148 -msgid "Australian Dollars" -msgstr "Austraalia dollar" - -#: includes/wc-core-functions.php:149 -msgid "Brazilian Real" -msgstr "Brasiilia reaal" - -#: includes/wc-core-functions.php:150 -msgid "Bulgarian Lev" -msgstr "Bulgaaria leev" - -#: includes/wc-core-functions.php:151 -msgid "Canadian Dollars" -msgstr "Kanada dollarit" - -#: includes/wc-core-functions.php:152 -msgid "Chinese Yuan" -msgstr "Hiina jüaani" - -#: includes/wc-core-functions.php:153 -msgid "Czech Koruna" -msgstr "Tšehhi kroon" - -#: includes/wc-core-functions.php:154 -msgid "Danish Krone" -msgstr "Taani kroon" - -#: includes/wc-core-functions.php:155 -msgid "Euros" -msgstr "Euro" - -#: includes/wc-core-functions.php:156 -msgid "Hong Kong Dollar" -msgstr "Hongkongi dollar" - -#: includes/wc-core-functions.php:157 -msgid "Hungarian Forint" -msgstr "Ungari forint" - -#: includes/wc-core-functions.php:158 -msgid "Indonesia Rupiah" -msgstr "Indoneesia ruupia" - -#: includes/wc-core-functions.php:159 -msgid "Indian Rupee" -msgstr "India ruupia" - -#: includes/wc-core-functions.php:160 -msgid "Israeli Shekel" -msgstr "Iisraeli uus seekel" - -#: includes/wc-core-functions.php:161 -msgid "Japanese Yen" -msgstr "Jaapani jeen" - -#: includes/wc-core-functions.php:162 -msgid "South Korean Won" -msgstr "Lõuna-Korea vonn" - -#: includes/wc-core-functions.php:163 -msgid "Malaysian Ringgits" -msgstr "Malaisia ​​Ringgits" - -#: includes/wc-core-functions.php:164 -msgid "Mexican Peso" -msgstr "Mehhiko peeso" - -#: includes/wc-core-functions.php:165 -msgid "Norwegian Krone" -msgstr "Norra kroon" - -#: includes/wc-core-functions.php:166 -msgid "New Zealand Dollar" -msgstr "Uus-Meremaa dollar" - -#: includes/wc-core-functions.php:167 -msgid "Philippine Pesos" -msgstr "Filipiini peesot" - -#: includes/wc-core-functions.php:168 -msgid "Polish Zloty" -msgstr "Poola zlott" - -#: includes/wc-core-functions.php:169 -msgid "Pounds Sterling" -msgstr "Naelsterling" - -#: includes/wc-core-functions.php:170 -msgid "Romanian Leu" -msgstr "Rumeenia leud" - -#: includes/wc-core-functions.php:171 -msgid "Russian Ruble" -msgstr "Venemaa rubla" - -#: includes/wc-core-functions.php:172 -msgid "Singapore Dollar" -msgstr "Singapuri dollar" - -#: includes/wc-core-functions.php:173 -msgid "South African rand" -msgstr "Lõuna-Aafrika rand" - -#: includes/wc-core-functions.php:174 -msgid "Swedish Krona" -msgstr "Rootsi kroon" - -#: includes/wc-core-functions.php:175 -msgid "Swiss Franc" -msgstr "Šveitsi frank" - -#: includes/wc-core-functions.php:176 -msgid "Taiwan New Dollars" -msgstr "Taiwan New dollarit" - -#: includes/wc-core-functions.php:177 -msgid "Thai Baht" -msgstr "Tai baht" - -#: includes/wc-core-functions.php:178 -msgid "Turkish Lira" -msgstr "Türgi liir" - -#: includes/wc-core-functions.php:179 -msgid "US Dollars" -msgstr "USA dollarit" - -#: includes/wc-core-functions.php:180 -msgid "Vietnamese Dong" -msgstr "Vietnami dong" - -#: includes/wc-coupon-functions.php:22 -msgid "Cart Discount" -msgstr "Ostukorvi allahindlus" - -#: includes/wc-coupon-functions.php:23 -msgid "Cart % Discount" -msgstr "Ostukorvi allahindluse %" - -#: includes/wc-coupon-functions.php:24 -msgid "Product Discount" -msgstr "Toote allahindlus" - -#: includes/wc-coupon-functions.php:25 -msgid "Product % Discount" -msgstr "Toote allahindluse %" - -#: includes/wc-customer-functions.php:49 -msgid "An account is already registered with your email address. Please login." -msgstr "" -"Selle e-posti aadressiga konto on juba registreeritud. Palun logi sisse." - -#: includes/wc-customer-functions.php:59 -msgid "Please enter a valid account username." -msgstr "Palun sisesta korrektne kasutajanimi" - -#: includes/wc-customer-functions.php:62 -msgid "" -"An account is already registered with that username. Please choose another." -msgstr "" -"Selle kasutajanimega konto on juba registreeritud. Palun vali teistsugune " -"kasutajanimi." - -#: includes/wc-customer-functions.php:82 -msgid "Please enter an account password." -msgstr "Palun sisesta parool" - -#: includes/wc-customer-functions.php:107 -msgid "" -"Couldn’t register you… please contact us if you continue to " -"have problems." -msgstr "" -"Registreerimine ebaõnnestus… kui sul on jätkuvalt probleeme, võta " -"palun meiega ühendust." - -#: includes/wc-order-functions.php:290 -msgid "Unpaid order cancelled - time limit reached." -msgstr "Maksmata tellimus tühistati - aja piirmäär ületati." - -#: includes/wc-product-functions.php:302 -msgctxt "slug" -msgid "uncategorized" -msgstr "maaratlemata" - -#: includes/wc-template-functions.php:314 -msgid "" -"This is a demo store for testing purposes — no orders shall be " -"fulfilled." -msgstr "See on näidispood testimise jaoks — ühtegi tellimust ei täideta." - -#: includes/wc-template-functions.php:333 -msgid "Search Results: “%s”" -msgstr "Otsingutulemused: “%s”" - -#: includes/wc-template-functions.php:336 -msgid " – Page %s" -msgstr " – Leht %s" - -#: includes/wc-template-functions.php:910 -#: templates/checkout/form-shipping.php:57 -#: templates/single-product/tabs/additional-information.php:14 -msgid "Additional Information" -msgstr "Lisainfo" - -#: includes/wc-template-functions.php:918 -msgid "Reviews (%d)" -msgstr "Ülevaated (%d)" - -#: includes/wc-template-functions.php:1008 -msgid "" -"Use $args argument as an array instead. Deprecated argument will be removed " -"in WC 2.2." -msgstr "" -"Kasuta hoopis $args argumenti massiivina. Vananenud argument eemaldatakse " -"versioonis WC 2.2." - -#: includes/wc-template-functions.php:1113 -msgid "Free shipping coupon" -msgstr "Tasuta transpordi kupong" - -#: includes/wc-template-functions.php:1115 -msgid "[Remove]" -msgstr "[Kustuta]" - -#: includes/wc-template-functions.php:1169 -msgid "Free" -msgstr "Tasuta" - -#: includes/wc-template-functions.php:1277 -msgctxt "breadcrumb" -msgid "Home" -msgstr "Esileht" - -#: includes/wc-template-functions.php:1549 -msgid "Order Again" -msgstr "Telli uuesti" - -#: includes/wc-template-functions.php:1638 -#: templates/cart/shipping-calculator.php:28 -msgid "Select a country…" -msgstr "Vali riik…" - -#: includes/wc-template-functions.php:1645 -msgid "Update country" -msgstr "Uuenda riiki" - -#: includes/wc-template-functions.php:1688 -#: templates/cart/shipping-calculator.php:52 -msgid "Select a state…" -msgstr "Vali maakond…" - -#: includes/wc-template-functions.php:1800 -msgid "Search for:" -msgstr "Otsi:" - -#: includes/wc-template-functions.php:1801 -msgid "Search for products" -msgstr "Otsi toodetest" - -#: includes/wc-template-functions.php:1802 -msgid "Search" -msgstr "Otsi" - -#: includes/wc-template-functions.php:1828 -msgid "New products" -msgstr "Uued tooted" - -#: includes/wc-template-functions.php:1836 -msgid "New products added to %s" -msgstr "Uued tooted lisati %s" - -#: includes/wc-template-functions.php:1844 -msgid "New products tagged %s" -msgstr "Uutele toodetele pandi sildid %s" - -#: includes/wc-term-functions.php:88 -msgid "Select a category" -msgstr "Vali kategooria" - -#: includes/wc-term-functions.php:92 -msgid "Uncategorized" -msgstr "Määratlemata" - -#: includes/widgets/class-wc-widget-cart.php:23 -msgid "Display the user's Cart in the sidebar." -msgstr "Näita kasutaja ostukorvi küljepaanil." - -#: includes/widgets/class-wc-widget-cart.php:25 -msgid "WooCommerce Cart" -msgstr "WooCommerce'i ostukorv" - -#: includes/widgets/class-wc-widget-cart.php:35 -msgid "Hide if cart is empty" -msgstr "Ära näita tühja ostukorvi" - -#: includes/widgets/class-wc-widget-layered-nav-filters.php:21 -msgid "Shows active layered nav filters so users can see and deactivate them." -msgstr "" -"Näitab aktiivseid kihilise navigatsiooni filtreid, et kasutajad saaksid neid " -"näha ja välja lülitada." - -#: includes/widgets/class-wc-widget-layered-nav-filters.php:23 -msgid "WooCommerce Layered Nav Filters" -msgstr "WooCommerce'i kihilise navigatsiooni filtrid" - -#: includes/widgets/class-wc-widget-layered-nav-filters.php:27 -msgid "Active Filters" -msgstr "Aktiivsed filtrid" - -#: includes/widgets/class-wc-widget-layered-nav-filters.php:84 -#: includes/widgets/class-wc-widget-layered-nav-filters.php:91 -#: includes/widgets/class-wc-widget-layered-nav-filters.php:96 -msgid "Remove filter" -msgstr "Eemalda filter" - -#: includes/widgets/class-wc-widget-layered-nav-filters.php:91 -msgid "Min" -msgstr "Minimaalne" - -#: includes/widgets/class-wc-widget-layered-nav-filters.php:96 -msgid "Max" -msgstr "Maksimum" - -#: includes/widgets/class-wc-widget-layered-nav.php:21 -msgid "" -"Shows a custom attribute in a widget which lets you narrow down the list of " -"products when viewing product categories." -msgstr "" -"Näitab vabalt valitud omadust vidinas. Võimaldab tooteid selle omaduse järgi " -"filtreerida." - -#: includes/widgets/class-wc-widget-layered-nav.php:23 -msgid "WooCommerce Layered Nav" -msgstr "WooCommerce'i kihtidega navigatsioon" - -#: includes/widgets/class-wc-widget-layered-nav.php:69 -msgid "Filter by" -msgstr "Filtreeri" - -#: includes/widgets/class-wc-widget-layered-nav.php:75 -msgid "Attribute" -msgstr "Omadus" - -#: includes/widgets/class-wc-widget-layered-nav.php:81 -msgid "Display type" -msgstr "Esitlusviis" - -#: includes/widgets/class-wc-widget-layered-nav.php:83 -msgid "List" -msgstr "Nimekiri" - -#: includes/widgets/class-wc-widget-layered-nav.php:84 -msgid "Dropdown" -msgstr "Rippmenüü" - -#: includes/widgets/class-wc-widget-layered-nav.php:90 -msgid "Query type" -msgstr "Päringu tüüp" - -#: includes/widgets/class-wc-widget-layered-nav.php:92 -msgid "AND" -msgstr "JA" - -#: includes/widgets/class-wc-widget-layered-nav.php:93 -msgid "OR" -msgstr "VÕI" - -#: includes/widgets/class-wc-widget-layered-nav.php:174 -msgid "Any %s" -msgstr "Ükskõik milline %s" - -#: includes/widgets/class-wc-widget-price-filter.php:23 -msgid "" -"Shows a price filter slider in a widget which lets you narrow down the list " -"of shown products when viewing product categories." -msgstr "" -"Näitab hinnafiltrit, mille abil saab tootekategooriat vaadates filtreerida " -"tooteid hinna alusel." - -#: includes/widgets/class-wc-widget-price-filter.php:25 -msgid "WooCommerce Price Filter" -msgstr "WooCommerce'i hinnafilter" - -#: includes/widgets/class-wc-widget-price-filter.php:29 -msgid "Filter by price" -msgstr "Filtreeri hinna alusel" - -#: includes/widgets/class-wc-widget-price-filter.php:135 -msgid "Min price" -msgstr "Minimaalne hind" - -#: includes/widgets/class-wc-widget-price-filter.php:136 -msgid "Max price" -msgstr "Maksimaalne hind" - -#: includes/widgets/class-wc-widget-price-filter.php:137 -msgid "Filter" -msgstr "Filtreeri" - -#: includes/widgets/class-wc-widget-price-filter.php:139 -msgid "Price:" -msgstr "Hind:" - -#: includes/widgets/class-wc-widget-product-categories.php:24 -msgid "A list or dropdown of product categories." -msgstr "Nimekiri või rippmenüü tootekategooriatega." - -#: includes/widgets/class-wc-widget-product-categories.php:26 -msgid "WooCommerce Product Categories" -msgstr "WooCommerce'i tootekategooriad" - -#: includes/widgets/class-wc-widget-product-categories.php:38 -msgid "Category Order" -msgstr "Kategooria järjestus" - -#: includes/widgets/class-wc-widget-product-categories.php:39 -#: templates/single-product-reviews.php:85 woocommerce-ajax.php:1126 -msgid "Name" -msgstr "Nimi" - -#: includes/widgets/class-wc-widget-product-categories.php:45 -msgid "Show as dropdown" -msgstr "Näita rippmenüüna" - -#: includes/widgets/class-wc-widget-product-categories.php:50 -msgid "Show post counts" -msgstr "Näita postituste arvu" - -#: includes/widgets/class-wc-widget-product-categories.php:55 -msgid "Show hierarchy" -msgstr "Näita hierarhiat" - -#: includes/widgets/class-wc-widget-product-categories.php:60 -msgid "Only show children for the current category" -msgstr "Näita ainult käesoleva kategooria alamkategooriaid" - -#: includes/widgets/class-wc-widget-product-categories.php:156 -msgid "No product categories exist." -msgstr "Tootekategooriaid ei ole veel." - -#: includes/widgets/class-wc-widget-product-search.php:21 -msgid "A Search box for products only." -msgstr "Ainult toodetele mõeldud otsingukast." - -#: includes/widgets/class-wc-widget-product-search.php:23 -msgid "WooCommerce Product Search" -msgstr "WooCommerce'i toodete otsing" - -#: includes/widgets/class-wc-widget-product-tag-cloud.php:21 -msgid "Your most used product tags in cloud format." -msgstr "Sinu enim kasutatud tootesildid pilveformaadis." - -#: includes/widgets/class-wc-widget-product-tag-cloud.php:23 -msgid "WooCommerce Product Tags" -msgstr "WooCommerce'i tootesildid" - -#: includes/widgets/class-wc-widget-products.php:21 -msgid "Display a list of your products on your site." -msgstr "Näita oma lehele toodete nimekirja." - -#: includes/widgets/class-wc-widget-products.php:23 -msgid "WooCommerce Products" -msgstr "WooCommerce'i tooted" - -#: includes/widgets/class-wc-widget-products.php:36 -#: includes/widgets/class-wc-widget-recently-viewed.php:36 -#: includes/widgets/class-wc-widget-top-rated-products.php:38 -msgid "Number of products to show" -msgstr "Näidatavate toodete arv:" - -#: includes/widgets/class-wc-widget-products.php:41 -msgid "Show" -msgstr "Näita" - -#: includes/widgets/class-wc-widget-products.php:43 -msgid "All Products" -msgstr "Kõik tooted" - -#: includes/widgets/class-wc-widget-products.php:44 -msgid "Featured Products" -msgstr "Esiletõstetud tooted" - -#: includes/widgets/class-wc-widget-products.php:45 -msgid "On-sale Products" -msgstr "Allahindlusgea tooted" - -#: includes/widgets/class-wc-widget-products.php:51 -msgid "Order by" -msgstr "Järjesta" - -#: includes/widgets/class-wc-widget-products.php:53 -#: templates/myaccount/my-orders.php:33 -msgid "Date" -msgstr "Kuupäev" - -#: includes/widgets/class-wc-widget-products.php:54 templates/cart/cart.php:28 -#: templates/emails/admin-new-order.php:24 -#: templates/emails/customer-completed-order.php:25 -#: templates/emails/customer-invoice.php:29 -#: templates/emails/customer-note.php:29 -#: templates/emails/customer-processing-order.php:25 -msgid "Price" -msgstr "Hind" - -#: includes/widgets/class-wc-widget-products.php:55 -msgid "Random" -msgstr "Juhuslik" - -#: includes/widgets/class-wc-widget-products.php:56 -msgid "Sales" -msgstr "Müük" - -#: includes/widgets/class-wc-widget-products.php:64 -msgid "ASC" -msgstr "Kasvav" - -#: includes/widgets/class-wc-widget-products.php:65 -msgid "DESC" -msgstr "Kahanev" - -#: includes/widgets/class-wc-widget-products.php:71 -msgid "Hide free products" -msgstr "Peida tasuta tooted" - -#: includes/widgets/class-wc-widget-products.php:76 -msgid "Show hidden products" -msgstr "Näita tasuta tooteid" - -#: includes/widgets/class-wc-widget-recent-reviews.php:21 -msgid "Display a list of your most recent reviews on your site." -msgstr "Näita oma lehel nimekirja värskeimate ülevaadetega." - -#: includes/widgets/class-wc-widget-recent-reviews.php:23 -msgid "WooCommerce Recent Reviews" -msgstr "WooCommerce'i värsked ülevaated" - -#: includes/widgets/class-wc-widget-recent-reviews.php:27 -msgid "Recent Reviews" -msgstr "Värsked ülevaated" - -#: includes/widgets/class-wc-widget-recent-reviews.php:36 -msgid "Number of reviews to show" -msgstr "Näidatavate ülevaadete arv:" - -#: includes/widgets/class-wc-widget-recent-reviews.php:85 -msgctxt "by comment author" -msgid "by %1$s" -msgstr "kirjutas %1$s" - -#: includes/widgets/class-wc-widget-recently-viewed.php:21 -msgid "Display a list of recently viewed products." -msgstr "Näita nimekirja hiljuti ülevaate saanud toodetega." - -#: includes/widgets/class-wc-widget-recently-viewed.php:23 -msgid "WooCommerce Recently Viewed" -msgstr "WooCommerce'i hiljuti ülevaadatud" - -#: includes/widgets/class-wc-widget-recently-viewed.php:27 -msgid "Recently Viewed Products" -msgstr "Hiljuti ülevaate saanud tooted" - -#: includes/widgets/class-wc-widget-top-rated-products.php:23 -msgid "Display a list of your top rated products on your site." -msgstr "Näita oma lehel nimekirja kõrgeimalt hinnatud toodetega." - -#: includes/widgets/class-wc-widget-top-rated-products.php:25 -msgid "WooCommerce Top Rated Products" -msgstr "WooCommerce'i kõrgeimalt hinnatud tooted" - -#: includes/widgets/class-wc-widget-top-rated-products.php:29 -msgid "Top Rated Products" -msgstr "Kõrgeimalt hinnatud tooted" - -#: templates/cart/cart-empty.php:16 -msgid "Your cart is currently empty." -msgstr "Sinu ostukorv on hetkel tühi." - -#: templates/cart/cart-empty.php:20 -msgid "← Return To Shop" -msgstr "← Tagasi poodi" - -#: templates/cart/cart-shipping.php:16 -msgid "Shipping #%d" -msgstr "Tarne #%d" - -#: templates/cart/cart-shipping.php:18 -msgid "Shipping and Handling" -msgstr "Transport ja käsitlus" - -#: templates/cart/cart-shipping.php:55 -msgid "" -"No shipping methods were found; please recalculate your shipping or continue " -"to checkout and enter your full address to see if there is shipping " -"available to your location." -msgstr "" -"Sobivaid tarneviise ei leidunud; palun arvuta transpordikulud uuesti või " -"mine edasi kassasse ja sisesta oma täielik aadress, et näha, kas sinu " -"piirkonda kohaletoimetamine on võimalik." - -#: templates/cart/cart-shipping.php:59 -msgid "Please fill in your details to see available shipping methods." -msgstr "Palun sisesta oma andmed, et näha transpordivõimalusi." - -#: templates/cart/cart-shipping.php:69 templates/cart/cart-shipping.php:77 -msgid "Sorry, shipping is unavailable %s." -msgstr "Vabandame, tarne ei ole saadaval %s." - -#: templates/cart/cart-shipping.php:69 templates/cart/cart-shipping.php:77 -msgid "" -"If you require assistance or wish to make alternate arrangements please " -"contact us." -msgstr "Kui vajad tuge või soovid teha erikokkulepet, võta meiega ühendust." - -#: templates/cart/cart-shipping.php:93 -msgid "Shipping" -msgstr "Transport" - -#: templates/cart/cart-totals.php:16 -msgid "Cart Totals" -msgstr "Ostukorvi summa" - -#: templates/cart/cart-totals.php:21 templates/checkout/review-order.php:25 -msgid "Cart Subtotal" -msgstr "Ostukorvi vahesumma" - -#: templates/cart/cart-totals.php:75 templates/checkout/review-order.php:79 -msgid "Order Total" -msgstr "Tellimus kokku" - -#: templates/cart/cart-totals.php:87 -msgid " (taxes estimated for %s)" -msgstr "(makse hinnanguliselt %s)" - -#: templates/cart/cart-totals.php:90 -msgid "" -"Note: Shipping and taxes are estimated%s and will be updated during checkout " -"based on your billing and shipping information." -msgstr "" -"Märkus: Transpordi- ja maksukulud on hinnangulised%s ja need arvutatakse " -"kassas uuesti tuginedes sinu arve- ja tarneaadressile." - -#: templates/cart/cart.php:29 templates/emails/admin-new-order.php:23 -#: templates/emails/customer-completed-order.php:24 -#: templates/emails/customer-invoice.php:28 -#: templates/emails/customer-note.php:28 -#: templates/emails/customer-processing-order.php:24 -msgid "Quantity" -msgstr "Kogus" - -#: templates/cart/cart.php:30 templates/checkout/review-order.php:19 -#: templates/myaccount/my-orders.php:35 templates/order/order-details.php:21 -msgid "Total" -msgstr "Kokku" - -#: templates/cart/cart.php:47 -msgid "Remove this item" -msgstr "Eemalda see toode" - -#: templates/cart/cart.php:94 -#: templates/single-product/add-to-cart/quantity.php:12 -msgctxt "Product quantity input tooltip" -msgid "Qty" -msgstr "Kogus" - -#: templates/cart/cart.php:119 templates/checkout/form-coupon.php:29 -msgid "Apply Coupon" -msgstr "Kasuta kupongi" - -#: templates/cart/cart.php:126 -msgid "Update Cart" -msgstr "Uuenda ostukorvi" - -#: templates/cart/cart.php:126 -msgid "Proceed to Checkout →" -msgstr "Edasi kassasse →" - -#: templates/cart/cross-sells.php:38 -msgid "You may be interested in…" -msgstr "Sulle võib huvi pakkuda…" - -#: templates/cart/mini-cart.php:51 -msgid "No products in the cart." -msgstr "Ostukorvis ei ole tooteid." - -#: templates/cart/mini-cart.php:59 -msgid "Subtotal" -msgstr "Vahesumma" - -#: templates/cart/mini-cart.php:65 -msgid "Checkout →" -msgstr "Kassa →" - -#: templates/cart/shipping-calculator.php:22 -msgid "Calculate Shipping" -msgstr "Arvuta transpordikulud" - -#: templates/cart/shipping-calculator.php:45 -#: templates/cart/shipping-calculator.php:51 -#: templates/cart/shipping-calculator.php:63 -msgid "State / county" -msgstr "Maakond" - -#: templates/cart/shipping-calculator.php:72 -msgid "City" -msgstr "Linn" - -#: templates/cart/shipping-calculator.php:85 -msgid "Update Totals" -msgstr "Uuenda summasid" - -#: templates/checkout/cart-errors.php:16 -msgid "" -"There are some issues with the items in your cart (shown above). Please go " -"back to the cart page and resolve these issues before checking out." -msgstr "" -"Sinu korvis olevate toodetega on mõningad probleemid (näidatud allpool). " -"Palun mine tagasi ostukorvi lehele ja lahenda need probleemid enne, kui " -"tuled kassasse." - -#: templates/checkout/cart-errors.php:20 -msgid "← Return To Cart" -msgstr "← Tagasi ostukorvi" - -#: templates/checkout/form-billing.php:17 -msgid "Billing & Shipping" -msgstr "Arveldus & transport" - -#: templates/checkout/form-billing.php:21 -#: templates/myaccount/form-edit-address.php:14 -#: templates/myaccount/my-address.php:19 templates/myaccount/my-address.php:25 -#: templates/order/order-details.php:115 -msgid "Billing Address" -msgstr "Arveaadress" - -#: templates/checkout/form-billing.php:40 -msgid "Create an account?" -msgstr "Loo konto?" - -#: templates/checkout/form-billing.php:51 -msgid "" -"Create an account by entering the information below. If you are a returning " -"customer please login at the top of the page." -msgstr "" -"Loo endale konto sisestades enda andmed allolevale vormile. Kui sa oled juba " -"klient, siis palun logi lehe ülaosas oleva vormi kaudu sisse." - -#: templates/checkout/form-checkout.php:20 -msgid "You must be logged in to checkout." -msgstr "Kassasse minekuks pead olema sisse logitud." - -#: templates/checkout/form-checkout.php:51 -msgid "Your order" -msgstr "Sinu tellimus" - -#: templates/checkout/form-coupon.php:17 -msgid "Have a coupon?" -msgstr "On sul kupong?" - -#: templates/checkout/form-coupon.php:20 -msgid "Click here to enter your code" -msgstr "Kliki siia, et sisestada oma kood" - -#: templates/checkout/form-coupon.php:25 -msgid "Coupon code" -msgstr "Kupongi kood" - -#: templates/checkout/form-login.php:14 -msgid "Returning customer?" -msgstr "Oled juba klient?" - -#: templates/checkout/form-login.php:17 -msgid "Click here to login" -msgstr "Sisse logimiseks kliki siia" - -#: templates/checkout/form-login.php:22 -msgid "" -"If you have shopped with us before, please enter your details in the boxes " -"below. If you are a new customer please proceed to the Billing & " -"Shipping section." -msgstr "" -"Kui sa oled meilt varem ostnud, siis sisesta oma andmed allolevatesse " -"kastidesse. Kui sa oled uus klient, siis palun liigu edasi arvelduse ja " -"transpordi infot sisestama." - -#: templates/checkout/form-pay.php:20 -msgid "Qty" -msgstr "Kogus" - -#: templates/checkout/form-pay.php:21 -msgid "Totals" -msgstr "Kokku" - -#: templates/checkout/form-pay.php:78 -msgid "" -"Sorry, it seems that there are no available payment methods for your " -"location. Please contact us if you require assistance or wish to make " -"alternate arrangements." -msgstr "" -"Vabandame - tundub, et sinu asukoha jaoks ei ole sobivaid makseviise. Kui sa " -"vajad abi või soovid teha erikokkulepet, võta palun meiega ühendust." - -#: templates/checkout/form-pay.php:87 -msgid "Pay for order" -msgstr "Maksa tellimuse eest" - -#: templates/checkout/form-shipping.php:31 -msgid "Ship to a different address?" -msgstr "Saada teisele aadressile?" - -#: templates/checkout/review-order.php:150 -msgid "Please fill in your details above to see available payment methods." -msgstr "Palun sisesta ülal oma andmed, et näha maksevõimalusi." - -#: templates/checkout/review-order.php:152 -msgid "" -"Sorry, it seems that there are no available payment methods for your state. " -"Please contact us if you require assistance or wish to make alternate " -"arrangements." -msgstr "" -"Vabandame - tundub, et sinu maakonna/osariigi jaoks ei ole sobivaid " -"makseviise. Kui sa vajad abi või soovid teha erikokkulepet, võta palun " -"meiega ühendust." - -#: templates/checkout/review-order.php:161 -msgid "" -"Since your browser does not support JavaScript, or it is disabled, please " -"ensure you click the Update Totals button before placing your " -"order. You may be charged more than the amount stated above if you fail to " -"do so." -msgstr "" -"Kuna sinu brauser ei toeta Javascripti või see on välja lülitatud, siis " -"palun veendu, et sa vajutad Uuenda ostukorvi nuppu enne, kui esitad " -"oma tellimuse. Kui sa seda ei tee, siis võib juhtuda, et sinult võetakse " -"rohkem raha, kui ülal välja toodud." - -#: templates/checkout/review-order.php:161 -msgid "Update totals" -msgstr "Uuenda summasid" - -#: templates/checkout/review-order.php:168 -msgid "Place order" -msgstr "Esita tellimus" - -#: templates/checkout/review-order.php:175 -msgid "I have read and accept the" -msgstr "Olen lugenud ja nõustun" - -#: templates/checkout/review-order.php:175 -msgid "terms & conditions" -msgstr "kasutustingimustega" - -#: templates/checkout/thankyou.php:18 -msgid "" -"Unfortunately your order cannot be processed as the originating bank/" -"merchant has declined your transaction." -msgstr "" -"Kahjuks ei õnnestu sinu tellimust töödelda, kuna pank või kaupmees keeldus " -"tehingu sooritamisest." - -#: templates/checkout/thankyou.php:22 -msgid "Please attempt your purchase again or go to your account page." -msgstr "Palun proovi oma ostu uuesti sooritada või mine oma konto lehele." - -#: templates/checkout/thankyou.php:24 -msgid "Please attempt your purchase again." -msgstr "Palun proovi ostu uuesti sooritada." - -#: templates/checkout/thankyou.php:28 templates/myaccount/my-orders.php:71 -msgid "Pay" -msgstr "Maksa" - -#: templates/checkout/thankyou.php:36 templates/checkout/thankyou.php:67 -msgid "Thank you. Your order has been received." -msgstr "Aitäh! Sinu tellimus on vastu võetud." - -#: templates/emails/admin-new-order.php:13 -#: templates/emails/plain/admin-new-order.php:13 -msgid "You have received an order from %s. Their order is as follows:" -msgstr "Sulle on tehtud tellimus kliendilt %s. Tellimus on järgmine:" - -#: templates/emails/admin-new-order.php:17 -msgid "Order: %s" -msgstr "Tellimus: %s" - -#: templates/emails/admin-new-order.php:50 -#: templates/emails/customer-completed-order.php:51 -#: templates/emails/customer-note.php:55 -#: templates/emails/customer-processing-order.php:51 -#: templates/emails/plain/admin-new-order.php:39 -#: templates/order/order-details.php:97 -msgid "Customer details" -msgstr "Kliendi andmed" - -#: templates/emails/admin-new-order.php:53 -#: templates/emails/customer-completed-order.php:54 -#: templates/emails/customer-note.php:58 -#: templates/emails/customer-processing-order.php:54 -#: templates/emails/plain/admin-new-order.php:42 -#: templates/emails/plain/customer-completed-order.php:41 -#: templates/emails/plain/customer-note.php:49 -#: templates/emails/plain/customer-processing-order.php:41 -#: templates/order/order-details.php:101 -msgid "Email:" -msgstr "E-post:" - -#: templates/emails/admin-new-order.php:56 -#: templates/emails/customer-completed-order.php:57 -#: templates/emails/customer-note.php:61 -#: templates/emails/customer-processing-order.php:57 -#: templates/emails/plain/admin-new-order.php:45 -#: templates/emails/plain/customer-completed-order.php:44 -#: templates/emails/plain/customer-note.php:52 -#: templates/emails/plain/customer-processing-order.php:44 -msgid "Tel:" -msgstr "Tel:" - -#: templates/emails/customer-completed-order.php:14 -#: templates/emails/plain/customer-completed-order.php:13 -msgid "" -"Hi there. Your recent order on %s has been completed. Your order details are " -"shown below for your reference:" -msgstr "" -"Hei. Sinu hiljutine %s tellimus on nüüd täidetud. Siin on tellimuse andmed:" - -#: templates/emails/customer-invoice.php:16 -#: templates/emails/plain/customer-invoice.php:14 -msgid "" -"An order has been created for you on %s. To pay for this order please use " -"the following link: %s" -msgstr "" -"Sulle on tehtud lehel %s tellimus. Tellimuse eest maksmiseks kasuta palun " -"järgnevat linki: %s" - -#: templates/emails/customer-invoice.php:16 -msgid "pay" -msgstr "maksa" - -#: templates/emails/customer-new-account.php:14 -#: templates/emails/plain/customer-new-account.php:13 -msgid "" -"Thanks for creating an account on %s. Your username is %s." -msgstr "" -"Aitäh, et lõid endale %s konto.Sinu kasutajanimi on %s." - -#: templates/emails/customer-new-account.php:18 -msgid "Your password has been automatically generated: %s" -msgstr "Sulle genereeriti automaatselt parool: %s" - -#: templates/emails/customer-new-account.php:22 -#: templates/emails/plain/customer-new-account.php:18 -msgid "" -"You can access your account area to view your orders and change your " -"password here: %s." -msgstr "" -"Oma tellimuste vaatamiseks ja parooli muutmiseks saad oma kontole ligi siit: " -"%s." - -#: templates/emails/customer-note.php:14 -#: templates/emails/plain/customer-note.php:13 -msgid "Hello, a note has just been added to your order:" -msgstr "Tere, sinu tellimusele lisati just märkus:" - -#: templates/emails/customer-note.php:18 -#: templates/emails/plain/customer-note.php:21 -msgid "For your reference, your order details are shown below." -msgstr "Sinu tellimuse andmed on näidatud allpool." - -#: templates/emails/customer-processing-order.php:14 -#: templates/emails/plain/customer-processing-order.php:13 -msgid "" -"Your order has been received and is now being processed. Your order details " -"are shown below for your reference:" -msgstr "" -"Sinu tellimus on vastu võetud ja sellega tegeletakse. Allpool on näha sinu " -"tellimuse andmed:" - -#: templates/emails/customer-reset-password.php:14 -#: templates/emails/plain/customer-reset-password.php:13 -msgid "Someone requested that the password be reset for the following account:" -msgstr "Keegi palus järgmise kasutaja parooli ära vahetada:" - -#: templates/emails/customer-reset-password.php:15 -#: templates/emails/plain/customer-reset-password.php:15 -msgid "Username: %s" -msgstr "Kasutajanimi: %s" - -#: templates/emails/customer-reset-password.php:16 -#: templates/emails/plain/customer-reset-password.php:16 -msgid "If this was a mistake, just ignore this email and nothing will happen." -msgstr "" -"Kui see oli viga, siis lihtsalt ignoreeri seda sõnumit ja midagi ei juhtu." - -#: templates/emails/customer-reset-password.php:17 -#: templates/emails/plain/customer-reset-password.php:17 -msgid "To reset your password, visit the following address:" -msgstr "Parooli vahetamiseks külasta järgnevat aadressi:" - -#: templates/emails/customer-reset-password.php:20 -msgid "Click here to reset your password" -msgstr "Parooli vahetamiseks kliki siia" - -#: templates/emails/email-addresses.php:18 -#: templates/emails/plain/email-addresses.php:12 -msgid "Billing address" -msgstr "Muuda arveaadressi" - -#: templates/emails/email-addresses.php:28 -#: templates/emails/plain/email-addresses.php:17 -msgid "Shipping address" -msgstr "Tarneaadress" - -#: templates/emails/email-order-items.php:42 -msgid "Download %d:" -msgstr "Laadi alla %d:" - -#: templates/emails/email-order-items.php:44 -msgid "Download:" -msgstr "Laadi alla:" - -#: templates/emails/plain/admin-new-order.php:19 -#: templates/emails/plain/customer-completed-order.php:19 -#: templates/emails/plain/customer-invoice.php:20 -#: templates/emails/plain/customer-note.php:27 -#: templates/emails/plain/customer-processing-order.php:19 -msgid "Order number: %s" -msgstr "Tellimuse number: %s" - -#: templates/emails/plain/admin-new-order.php:20 -msgid "Order link: %s" -msgstr "Tellimuse viide: %s" - -#: templates/emails/plain/admin-new-order.php:21 -#: templates/emails/plain/customer-completed-order.php:20 -#: templates/emails/plain/customer-invoice.php:21 -#: templates/emails/plain/customer-note.php:28 -#: templates/emails/plain/customer-processing-order.php:20 -msgid "Order date: %s" -msgstr "Tellimuse kuupäev: %s" - -#: templates/emails/plain/admin-new-order.php:21 -msgid "jS F Y" -msgstr "j. M Y" - -#: templates/emails/plain/customer-completed-order.php:38 -#: templates/emails/plain/customer-note.php:46 -#: templates/emails/plain/customer-processing-order.php:38 -msgid "Your details" -msgstr "Sinu andmed" - -#: templates/emails/plain/customer-new-account.php:16 -msgid "Your password is %s." -msgstr "Sinu parool on %s." - -#: templates/emails/plain/email-order-items.php:29 -msgid "Quantity: %s" -msgstr "Kogus: %s" - -#: templates/emails/plain/email-order-items.php:32 -msgid "Cost: %s" -msgstr "Kulu: %s" - -#: templates/loop/no-products-found.php:14 templates/loop-shop.php:40 -msgid "No products found which match your selection." -msgstr "Sinu valikutele vastavaid tooteid ei leidu." - -#: templates/loop/orderby.php:21 -msgid "Default sorting" -msgstr "Vaikimisi järjestus" - -#: templates/loop/orderby.php:22 -msgid "Sort by popularity" -msgstr "Järjesta populaarsuse alusel" - -#: templates/loop/orderby.php:23 -msgid "Sort by average rating" -msgstr "Järjesta keskmise hinnangu järgi" - -#: templates/loop/orderby.php:24 -msgid "Sort by newness" -msgstr "Järjesta uudsuse alusel" - -#: templates/loop/orderby.php:25 -msgid "Sort by price: low to high" -msgstr "Järjesta hinna alusel: odavamast kallimani" - -#: templates/loop/orderby.php:26 -msgid "Sort by price: high to low" -msgstr "Järjesta hinna alusel: kallimast odavamani" - -#: templates/loop/result-count.php:28 -msgid "Showing the single result" -msgstr "Näitan ainukest tulemust" - -#: templates/loop/result-count.php:30 -msgid "Showing all %d results" -msgstr "Näitan kõiki %d tulemust" - -#: templates/loop/result-count.php:32 -msgctxt "%1$d = first, %2$d = last, %3$d = total" -msgid "Showing %1$d–%2$d of %3$d results" -msgstr "Näitan %1$d–%2$d / %3$d tulemusest" - -#: templates/loop/sale-flash.php:16 templates/single-product/sale-flash.php:16 -msgid "Sale!" -msgstr "Allahindlus!" - -#: templates/myaccount/form-change-password.php:20 -#: templates/myaccount/form-lost-password.php:31 -msgid "New password" -msgstr "Uus parool" - -#: templates/myaccount/form-change-password.php:24 -#: templates/myaccount/form-lost-password.php:35 -msgid "Re-enter new password" -msgstr "Sisesta uus parool teist korda" - -#: templates/myaccount/form-change-password.php:29 -#: templates/myaccount/form-lost-password.php:46 -msgid "Save" -msgstr "Salvesta" - -#: templates/myaccount/form-edit-account.php:20 -msgid "First name" -msgstr "Eesnimi" - -#: templates/myaccount/form-edit-account.php:24 -msgid "Last name" -msgstr "Perenimi" - -#: templates/myaccount/form-edit-account.php:28 -#: templates/myaccount/form-login.php:64 -msgid "Email address" -msgstr "E-posti aadress:" - -#: templates/myaccount/form-edit-account.php:32 -msgid "Password (leave blank to leave unchanged)" -msgstr "Parool (jäta tühjaks, kui ei soovi muuta)" - -#: templates/myaccount/form-edit-account.php:36 -msgid "Confirm new password" -msgstr "Sisesta enda uus parool veel kord" - -#: templates/myaccount/form-edit-account.php:41 -msgid "Save changes" -msgstr "Salvesta muudatused" - -#: templates/myaccount/form-edit-address.php:14 -#: templates/myaccount/my-address.php:20 templates/order/order-details.php:130 -msgid "Shipping Address" -msgstr "Tarneaadress" - -#: templates/myaccount/form-edit-address.php:38 -msgid "Save Address" -msgstr "Salvesta aadress" - -#: templates/myaccount/form-login.php:26 templates/myaccount/form-login.php:40 -#: templates/shop/form-login.php:31 -msgid "Login" -msgstr "Logi sisse" - -#: templates/myaccount/form-login.php:30 -msgid "Username or email address" -msgstr "Kasutajanimi või e-posti aadress" - -#: templates/myaccount/form-login.php:34 templates/myaccount/form-login.php:69 -#: templates/shop/form-login.php:24 -msgid "Password" -msgstr "Parool" - -#: templates/myaccount/form-login.php:40 templates/shop/form-login.php:33 -msgid "Lost Password?" -msgstr "Parool kadunud?" - -#: templates/myaccount/form-login.php:50 templates/myaccount/form-login.php:80 -msgid "Register" -msgstr "Registreeru" - -#: templates/myaccount/form-login.php:57 -msgid "Username" -msgstr "Kasutajanimi" - -#: templates/myaccount/form-login.php:74 -msgid "Anti-spam" -msgstr "Rämpsutõrje" - -#: templates/myaccount/form-lost-password.php:22 -msgid "" -"Lost your password? Please enter your username or email address. You will " -"receive a link to create a new password via email." -msgstr "" -"Kaotasid või unustasid parooli? Palun sisesta oma kasutajanimi või e-posti " -"aadress. Sulle saadetakse kiri lingiga, mille abil saad endale uue parooli " -"määrata." - -#: templates/myaccount/form-lost-password.php:24 -#: templates/shop/form-login.php:20 -msgid "Username or email" -msgstr "Kasutajanimi või e-posti aadress" - -#: templates/myaccount/form-lost-password.php:28 -msgid "Enter a new password below." -msgstr "Sisesta enda uus parool." - -#: templates/myaccount/form-lost-password.php:46 -msgid "Reset Password" -msgstr "Lähtesta parool" - -#: templates/myaccount/my-account.php:19 -msgid "Hello %s (not %s? Sign out)." -msgstr "Hello %s (ei ole %s? Logi välja)." - -#: templates/myaccount/my-account.php:25 -msgid "" -"From your account dashboard you can view your recent orders, manage your " -"shipping and billing addresses and edit your password and " -"account details." -msgstr "" -"Oma konto töölaualt saad näha oma viimaseid tellimusi, muuta arvelduse ja " -"transpordi aadresse ning muuta oma parooli ja konto andmeid." - -#: templates/myaccount/my-address.php:17 -msgid "My Addresses" -msgstr "Minu aadressid" - -#: templates/myaccount/my-address.php:23 -msgid "My Address" -msgstr "Minu aadress" - -#: templates/myaccount/my-address.php:35 -msgid "The following addresses will be used on the checkout page by default." -msgstr "Järgnevaid aadresse kasutatakse kassas." - -#: templates/myaccount/my-address.php:64 -msgid "You have not set up this type of address yet." -msgstr "Sa ei ole veel seda tüüpi aadressi sisestanud." - -#: templates/myaccount/my-downloads.php:18 -msgid "Available downloads" -msgstr "Saadavalolevad allalaadimised" - -#: templates/myaccount/my-downloads.php:27 -msgid "%s download remaining" -msgid_plural "%s downloads remaining" -msgstr[0] "%s allalaadimine alles" -msgstr[1] "%s allalaadimist alles" - -#: templates/myaccount/my-orders.php:26 -msgid "Recent Orders" -msgstr "Hiljutised tellimused" - -#: templates/myaccount/my-orders.php:34 -msgid "Status" -msgstr "Olek" - -#: templates/myaccount/my-orders.php:62 -msgid "%s for %s item" -msgid_plural "%s for %s items" -msgstr[0] "%s %s toote eest" -msgstr[1] "%s %s toote eest" - -#: templates/myaccount/my-orders.php:77 -msgid "Cancel" -msgstr "Tühista" - -#: templates/myaccount/my-orders.php:82 -msgid "View" -msgstr "Vaata" - -#: templates/order/form-tracking.php:17 -msgid "" -"To track your order please enter your Order ID in the box below and press " -"return. This was given to you on your receipt and in the confirmation email " -"you should have received." -msgstr "" -"Oma tellimuse jälgimiseks sisesta palun oma tellimuse ID allolevasse kasti " -"ja vajuta sisestusklahvi. Tellimuse ID leiad oma kviitungilt, mille said " -"tellimuse kinnitusega e-posti teel. " - -#: templates/order/form-tracking.php:19 -msgid "Order ID" -msgstr "Tellimuse ID" - -#: templates/order/form-tracking.php:19 -msgid "Found in your order confirmation email." -msgstr "Selle leiad oma tellimuse kinnituse e-kirjast." - -#: templates/order/form-tracking.php:20 -msgid "Billing Email" -msgstr "Arve e-post" - -#: templates/order/form-tracking.php:20 -msgid "Email you used during checkout." -msgstr "E-posti aadress, mida kasutasid kassas." - -#: templates/order/form-tracking.php:23 -msgid "Track" -msgstr "Jälgi" - -#: templates/order/order-details.php:16 -msgid "Order Details" -msgstr "Tellimuse andmed" - -#: templates/order/order-details.php:66 -msgid "Download file%s" -msgstr "Laadi alla fail%s" - -#: templates/order/order-details.php:102 -msgid "Telephone:" -msgstr "Telefon:" - -#: templates/order/tracking.php:18 -msgid "Order %s which was made %s has the status “%s”" -msgstr "Tellimus %s, mis tehti kuupäeval %s, on olekuga “%s”" - -#: templates/order/tracking.php:18 -msgid "ago" -msgstr "tagasi" - -#: templates/order/tracking.php:20 -msgid "and was completed" -msgstr "ja täideti" - -#: templates/order/tracking.php:20 -msgid " ago" -msgstr "tagasi" - -#: templates/shop/breadcrumb.php:63 -msgid "Products tagged “" -msgstr "Tooted siltidega: “" - -#: templates/shop/breadcrumb.php:91 templates/shop/breadcrumb.php:188 -msgid "Search results for “" -msgstr "Tulemused otsingule “" - -#: templates/shop/breadcrumb.php:146 -msgid "Error 404" -msgstr "Viga 404" - -#: templates/shop/breadcrumb.php:192 -msgid "Posts tagged “" -msgstr "Postitused siltidega: %s" - -#: templates/shop/breadcrumb.php:197 -msgid "Author:" -msgstr "Autor:" - -#: templates/shop/breadcrumb.php:202 -msgid "Page" -msgstr "Leht" - -#: templates/single-product/add-to-cart/variable.php:25 -msgid "Choose an option" -msgstr "Vali" - -#: templates/single-product/add-to-cart/variable.php:73 -msgid "Clear selection" -msgstr "Tühista valik" - -#: templates/single-product/add-to-cart/variable.php:99 -msgid "This product is currently out of stock and unavailable." -msgstr "Seda toodet ei ole hetkel laos ja pole seetõttu saadaval." - -#: templates/single-product/meta.php:20 -msgid "n/a" -msgstr "pole saadaval" - -#: templates/single-product/meta.php:24 -msgid "Category:" -msgid_plural "Categories:" -msgstr[0] "Kategooria:" -msgstr[1] "Kategooriad:" - -#: templates/single-product/meta.php:26 -msgid "Tag:" -msgid_plural "Tags:" -msgstr[0] "Silt:" -msgstr[1] "Sildid:" - -#: templates/single-product/product-attributes.php:28 -msgid "Weight" -msgstr "Kaal" - -#: templates/single-product/product-attributes.php:37 -msgid "Dimensions" -msgstr "Mõõtmed" - -#: templates/single-product/related.php:36 -msgid "Related Products" -msgstr "Seotud tooted" - -#: templates/single-product/review.php:26 -msgid "Rated %d out of 5" -msgstr "Hinnang: %d / 5" - -#: templates/single-product/review.php:34 -msgid "Your comment is awaiting approval" -msgstr "Sinu kommentaar ootab modereerimist" - -#: templates/single-product/review.php:43 -msgid "verified owner" -msgstr "toote omanik" - -#: templates/single-product/tabs/description.php:14 -msgid "Product Description" -msgstr "Toote kirjeldus" - -#: templates/single-product/up-sells.php:39 -msgid "You may also like…" -msgstr "Sulle võib meeldida ka…" - -#: templates/single-product-reviews.php:30 -msgid "%s review for %s" -msgid_plural "%s reviews for %s" -msgstr[0] "%s ülevaade tootele %s" -msgstr[1] "%s ülevaadet tootele %s" - -#: templates/single-product-reviews.php:36 -#: templates/single-product-reviews.php:42 -msgid "Reviews" -msgstr "Ülevaated" - -#: templates/single-product-reviews.php:58 -msgid " Previous" -msgstr " eelmine" - -#: templates/single-product-reviews.php:59 -msgid "Next " -msgstr "Järgmine " - -#: templates/single-product-reviews.php:63 -msgid "Add Review" -msgstr "Lisa ülevaade" - -#: templates/single-product-reviews.php:65 -msgid "Add a review" -msgstr "Lisa ülevaade" - -#: templates/single-product-reviews.php:69 -msgid "Be the first to review" -msgstr "Ole esimene, kes kirjutab ülevaate tootele" - -#: templates/single-product-reviews.php:71 -msgid "There are no reviews yet, would you like to %s submit yours%s?" -msgstr "" -"Selle toote kohta veel ülevaateid ei ole. Kas sooviksid %s kirjutada ülevaate" -"%s?" - -#: templates/single-product-reviews.php:71 -msgid "Add Your Review" -msgstr "Lisa oma ülevaade" - -#: templates/single-product-reviews.php:81 -msgid "Leave a Reply to %s" -msgstr "Vasta %s-le" - -#: templates/single-product-reviews.php:87 -msgid "Email" -msgstr "E-post" - -#: templates/single-product-reviews.php:90 -msgid "Submit" -msgstr "Sisesta" - -#: templates/single-product-reviews.php:97 -msgid "Your Rating" -msgstr "Sinu hinnang" - -#: templates/single-product-reviews.php:98 -msgid "Rate…" -msgstr "Hinda…" - -#: templates/single-product-reviews.php:99 -msgid "Perfect" -msgstr "Ideaalne" - -#: templates/single-product-reviews.php:100 -msgid "Good" -msgstr "Hea" - -#: templates/single-product-reviews.php:101 -msgid "Average" -msgstr "Keskmine" - -#: templates/single-product-reviews.php:102 -msgid "Not that bad" -msgstr "Pole paha" - -#: templates/single-product-reviews.php:103 -msgid "Very Poor" -msgstr "Väga nõrk" - -#: templates/single-product-reviews.php:108 -msgid "Your Review" -msgstr "Sinu ülevaade" - -#: woocommerce-ajax.php:122 -msgid "Sorry, your session has expired." -msgstr "Vabandame, sinu sessioon on aegunud." - -#: woocommerce-ajax.php:122 -msgid "Return to homepage →" -msgstr "Tagasi avalehele →" - -#: woocommerce-ajax.php:262 woocommerce-ajax.php:296 woocommerce-ajax.php:319 -msgid "You do not have sufficient permissions to access this page." -msgstr "Sul ei ole selle lehe vaatamiseks piisavalt õigusi." - -#: woocommerce-ajax.php:264 woocommerce-ajax.php:297 woocommerce-ajax.php:320 -msgid "You have taken too long. Please go back and retry." -msgstr "Sul läks liiga kaua aega. Palun mine tagasi ja proovi uuesti." - -#: woocommerce-ajax.php:556 -msgid "Same as parent" -msgstr "Sama, mis ülemine" - -#: woocommerce-ajax.php:557 -msgid "Standard" -msgstr "Standardne" - -#: woocommerce-ajax.php:1053 -msgid "" -"No products had their stock reduced - they may not have stock management " -"enabled." -msgstr "" -"Laoseisu ei vähendatud ühelgi tootel - võibolla ei ole neil toodetel " -"laoseisu haldus sisse lülitatud." - -#: woocommerce-ajax.php:1097 woocommerce-ajax.php:1098 -msgid "Item #%s stock increased from %s to %s." -msgstr "Toote #%s laoseisu vähendati %s pealt tasemele %s." - -#: woocommerce-ajax.php:1105 -msgid "" -"No products had their stock increased - they may not have stock management " -"enabled." -msgstr "" -"Laoseisu ei suurendatud ühelgi tootel - võibolla ei ole neil toodetel " -"laoseisu haldus sisse lülitatud." - -#: woocommerce-ajax.php:1126 -msgid "Value" -msgstr "Väärtus" - -#: woocommerce-ajax.php:1364 -msgid "Delete note" -msgstr "Kustuta märkus" - -#: woocommerce.php:181 -msgid "Docs" -msgstr "Dokumentatsioon" - -#: woocommerce.php:182 -msgid "Premium Support" -msgstr "Preemium-tugi" - -#, fuzzy -#~ msgid "Download Permissions Granted" -#~ msgstr "Lae alla arve PDF" - -#, fuzzy -#~ msgid "View options" -#~ msgstr "Flashi sätted" diff --git a/i18n/languages/woocommerce-fi.mo b/i18n/languages/woocommerce-fi.mo deleted file mode 100644 index ed63d6fdf9f..00000000000 Binary files a/i18n/languages/woocommerce-fi.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-fi.po b/i18n/languages/woocommerce-fi.po deleted file mode 100644 index 2d05738f911..00000000000 --- a/i18n/languages/woocommerce-fi.po +++ /dev/null @@ -1,8388 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce 2.0.20 Front-end\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-11-24 19:28:50+00:00\n" -"PO-Revision-Date: 2013-12-01 16:04+0200\n" -"Last-Translator: Arhi Paivarinta \n" -"Language-Team: Arhi Paivarinta \n" -"Language: fi\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Textdomain-Support: yes\n" -"X-Generator: Poedit 1.5.7\n" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:5 -msgid "Insert Shortcode" -msgstr "Kirjoita lyhytkoodi ('shortcode')" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:6 -msgid "Product price/cart button" -msgstr "Tuotteen hinta/ ostoskorin painike" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:7 -msgid "Product by SKU/ID" -msgstr "Tuotetunnuksen mukaan (SKU/ID)" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:8 -msgid "Products by SKU/ID" -msgstr "Tuotetunnuksen mukaan (SKU/ID)" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:9 -msgid "Product categories" -msgstr "Osastot" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:10 -msgid "Products by category slug" -msgstr "Osaston polkutunnuksen mukaan" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:11 -msgid "Recent products" -msgstr "Uudet tuotteet" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:12 -msgid "Featured products" -msgstr "Esitelyssä tuotteet" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:13 -msgid "Shop Messages" -msgstr "Kaupan viestit" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:14 -msgid "Pages" -msgstr "Sivut" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:15 -#: classes/widgets/class-wc-widget-cart.php:61 -msgid "Cart" -msgstr "Ostoskori" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:16 -msgid "Checkout" -msgstr "Kassa" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:17 -msgid "Order tracking" -msgstr "Tilauksen seuraaminen" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:18 -#: templates/checkout/thankyou.php:30 -msgid "My Account" -msgstr "Oma tili" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:19 -msgid "Edit Address" -msgstr "Muokkaa osoitetta" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:20 -msgid "Change Password" -msgstr "Vaihda salasana" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:21 woocommerce.php:1068 -#: woocommerce.php:1069 -msgid "View Order" -msgstr "Tarkastele tilausta" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:22 -#: templates/checkout/thankyou.php:28 templates/myaccount/my-orders.php:71 -msgid "Pay" -msgstr "Maksa" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:23 -msgid "Thankyou" -msgstr "Kiitos" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:433 -#: classes/emails/class-wc-email-customer-completed-order.php:135 -#: classes/emails/class-wc-email-customer-invoice.php:141 -#: classes/emails/class-wc-email-new-order.php:115 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:63 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:57 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:130 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:120 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:76 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:75 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:50 -msgid "Enable/Disable" -msgstr "Ota käyttöön/poista käytöstä" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:435 -#: classes/emails/class-wc-email-customer-completed-order.php:137 -#: classes/emails/class-wc-email-customer-invoice.php:143 -#: classes/emails/class-wc-email-new-order.php:117 -msgid "Enable this email notification" -msgstr "Ota käyttöön tämä sähköposti-ilmoitus" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:439 -#: classes/emails/class-wc-email-customer-invoice.php:147 -msgid "Email subject" -msgstr "Sähköpostin aihe" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:441 -#: classes/abstracts/abstract-wc-email.php:448 -#: classes/emails/class-wc-email-customer-completed-order.php:143 -#: classes/emails/class-wc-email-customer-completed-order.php:150 -#: classes/emails/class-wc-email-customer-completed-order.php:157 -#: classes/emails/class-wc-email-customer-completed-order.php:164 -#: classes/emails/class-wc-email-customer-invoice.php:149 -#: classes/emails/class-wc-email-customer-invoice.php:156 -#: classes/emails/class-wc-email-customer-invoice.php:163 -#: classes/emails/class-wc-email-customer-invoice.php:170 -msgid "Defaults to %s" -msgstr "Oletus %s" -"%s." -msgstr "" -"Teema käyttää korvaavaa pohjaa (mallinetta). Se on täällä: %s." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:612 -msgid "Copy file to theme" -msgstr "Kopioi tiedostio teeman hakemistoon" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:615 -msgid "" -"To override and edit this email template copy %s to your theme " -"folder: %s." -msgstr "" -"Tämä pohja ohitetaan, kun %s kopioidaan teeman hakemistoon: " -"%s. Malline on muokattavissa siellä." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:626 -msgid "File was not found." -msgstr "Tiedostoa ei löytynyt" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:651 -msgid "View template" -msgstr "Näytä pohja (malline)" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:652 -msgid "Hide template" -msgstr "Piilota pohja (malline)" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:663 -msgid "Are you sure you want to delete this template file?" -msgstr "Oletko varma, että haluat poistaa tämän pohjan?" - -#: classes/abstracts/abstract-wc-product.php:33 -msgid "" -"The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class " -"directly." -msgstr "" -"Koodi WC_Product luokka on nyt abstrakti. Käytä " -"get_product() koodia kun haluat kutsua tuotetta (instantiate an " -"instance of a product). Älä kutsu tätä luokkaa suoraan." - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:546 -#: classes/abstracts/abstract-wc-product.php:551 -#: classes/abstracts/abstract-wc-product.php:570 -msgid "In stock" -msgstr "Varastossa" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:551 -msgid "Only %s left in stock" -msgstr "Vain %s varastossa" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:554 -msgid "%s in stock" -msgstr "%s varastossa" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:561 -msgid "(backorders allowed)" -msgstr "(jälkitoimitus sallitaan)" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:567 -#: classes/abstracts/abstract-wc-product.php:580 templates/cart/cart.php:76 -msgid "Available on backorder" -msgstr "Ei varastossa, vain jälkitoimituksena" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:573 -#: classes/abstracts/abstract-wc-product.php:583 -#: classes/abstracts/abstract-wc-product.php:587 -msgid "Out of stock" -msgstr "Varasto loppu" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:851 -#: classes/abstracts/abstract-wc-product.php:857 -#: classes/class-wc-cart.php:1785 classes/class-wc-order.php:891 -#: classes/class-wc-product-variable.php:272 -#: classes/class-wc-product-variable.php:281 -#: classes/class-wc-product-variation.php:247 -msgid "Free!" -msgstr "Maksuton!" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:875 -msgctxt "min_price" -msgid "From:" -msgstr "Alkaen:" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:964 -#: templates/single-product-reviews.php:28 -msgid "Rated %s out of 5" -msgstr "Arvostelu tuotteesta: %s / 5" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:966 -#: templates/single-product/review.php:27 -#: templates/single-product-reviews.php:28 -msgid "out of 5" -msgstr "/ 5" - -#: classes/class-wc-cache-helper.php:92 -msgid "" -"In order for database caching to work with WooCommerce you " -"must add _wc_session_ to the \"Ignored Query Strings\" option " -"in W3 Total Cache settings here." -msgstr "" -"Jotta W3 Total Cache lisäosan tietokanta välimuisti / database " -"caching toimisi WooCommercen kanssa, on _wc_session_lisättävä \"Ignored Query Strings\" kohtaan lisäosan asetuksissa täällä." - -# @ woocommerce -#: classes/class-wc-cart.php:459 -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -"Varastossa ei ole tarpeeksi '%s' tuotetta. Voimme korkeintaan toimittaa " -"varastossa olevat %s kpl. Ole hyvä ja muokkaa tilausta ja yritä uudelleen. " -"Pahoittelemme aiheutunutta haittaa." - -# @ woocommerce -#: classes/class-wc-cart.php:478 classes/class-wc-cart.php:487 -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfil your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -"Varastossa ei ole tarpeeksi '%s' tuotetta. Voimme korkeintaan toimittaa " -"varastossa olevat %s kpl. Ole hyvä ja muokkaa tilausta ja yritä uudelleen. " -"Pahoittelemme aiheutunutta haittaa." - -# @ woocommerce -#: classes/class-wc-cart.php:522 -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfil your order right now. " -"Please try again in %d minutes or edit your cart and try again. We apologise " -"for any inconvenience caused." -msgstr "" -"Varastossa ei ole tarpeeksi '%s' tuotetta joten emme voi nyt täyttää " -"tilausta. Ole hyvä ja yritä uudelleen %d minuutin kuluttua tai muokkaa " -"tilausta ja yritä uudelleen. Pahoittelemme aiheutunutta haittaa." - -# @ woocommerce -#: classes/class-wc-cart.php:532 -msgid "" -"Sorry, \"%s\" is not in stock. Please edit your cart and try again. We " -"apologise for any inconvenience caused." -msgstr "" -"'%s' ei ole varastossa. Muokkaa tilausta ja yritä uudelleen, ole hyvä. " -"Pahoittelemme aiheutunutta haittaa." - -# @ woocommerce -#: classes/class-wc-cart.php:846 -msgid "Sorry, "%s" cannot be purchased." -msgstr "Pahoittelemme, "%s" tuotetta ei ole mahdollista ostaa." - -# @ woocommerce -#: classes/class-wc-cart.php:853 -msgid "" -"You cannot add "%s" to the cart because the product is out of " -"stock." -msgstr "" -""%s" ei voi lisätä ostoskoriin, koska tuote on loppunut varastosta." - -# @ woocommerce -#: classes/class-wc-cart.php:858 -msgid "" -"You cannot add that amount of "%s" to the cart because there is " -"not enough stock (%s remaining)." -msgstr "" -"Lisää ostoskoriin vähemmän "%s" tuotetta, koska sitä on varastossa " -"vain %s kappaletta." - -# @ woocommerce -#: classes/class-wc-cart.php:870 classes/class-wc-cart.php:884 -#: classes/class-wc-cart.php:892 templates/cart/mini-cart.php:68 -#: woocommerce-functions.php:503 woocommerce.php:1212 -msgid "View Cart →" -msgstr "Katso ostoskori →" - -# @ woocommerce -#: classes/class-wc-cart.php:870 -msgid "You already have this item in your cart." -msgstr "Tuote on jo ostoskorissa." - -# @ woocommerce -#: classes/class-wc-cart.php:884 classes/class-wc-cart.php:892 -msgid "" -"%s You cannot add that amount to the " -"cart — we have %s in stock and you already have %s in your cart." -msgstr "" -"%s Lisää ostoskoriin vähemmän tuotetta, " -"koska sitä on varastossa vain %s kappaletta ja olet jo lisännyt ostoskoriin " -"%s kpl." - -# @ woocommerce -#: classes/class-wc-cart.php:1797 -msgid "via" -msgstr "kuljetustapa" - -# @ woocommerce -#: classes/class-wc-checkout.php:64 -msgid "Account username" -msgstr "Asiakastilin käyttäjätunnus" - -# @ woocommerce -#: classes/class-wc-checkout.php:65 -msgctxt "placeholder" -msgid "Username" -msgstr "Käyttäjätunnus" - -# @ woocommerce -#: classes/class-wc-checkout.php:72 -msgid "Account password" -msgstr "Asiakastilin salasana" - -# @ woocommerce -#: classes/class-wc-checkout.php:73 -msgctxt "placeholder" -msgid "Password" -msgstr "Salasana" - -# @ woocommerce -#: classes/class-wc-checkout.php:79 -msgid "Confirm password" -msgstr "Vahvista salasana" - -# @ woocommerce -#: classes/class-wc-checkout.php:80 -msgctxt "placeholder" -msgid "Confirm password" -msgstr "Vahvista salasana" - -# @ woocommerce -#: classes/class-wc-checkout.php:89 -msgid "Order Notes" -msgstr "Tilauksen kommentit" - -# @ woocommerce -#: classes/class-wc-checkout.php:90 -msgctxt "placeholder" -msgid "Notes about your order, e.g. special notes for delivery." -msgstr "Kommentti koskien tilausta, esim. koskien toimitusta." - -# @ woocommerce -#: classes/class-wc-checkout.php:152 -msgid "Order – %s" -msgstr "Tilaus – %s" - -# @ woocommerce -#: classes/class-wc-checkout.php:152 -msgctxt "Order date parsed by strftime" -msgid "%b %d, %Y @ %I:%M %p" -msgstr "%d %b %Y @ %k:%M" - -# @ woocommerce -#: classes/class-wc-checkout.php:278 -msgid "Backordered" -msgstr "Jälkitoimitus" - -# @ woocommerce -#: classes/class-wc-checkout.php:388 -msgid "" -"Sorry, your session has expired. Return to homepage →" -msgstr "Istunto on umpeutunut. Palaa etusivulle →" - -# @ woocommerce -#: classes/class-wc-checkout.php:445 woocommerce-functions.php:1708 -msgid "is a required field." -msgstr "on vaadittu tieto." - -# @ woocommerce -#: classes/class-wc-checkout.php:458 -msgid "(%s) is not a valid postcode/ZIP." -msgstr "(%s) ei ole kelvollinen postinumero" - -# @ woocommerce -#: classes/class-wc-checkout.php:479 -msgid "is not valid. Please enter one of the following:" -msgstr "ei ole kelvollinen. Ole hyvä, syötä joku näistä:" - -# @ woocommerce -#: classes/class-wc-checkout.php:487 -msgid "is not a valid number." -msgstr "ei ole kelvollinen numero." - -# @ woocommerce -#: classes/class-wc-checkout.php:494 -msgid "is not a valid email address." -msgstr "ei ole kelvollinen sähköpostiosoite." - -# @ woocommerce -#: classes/class-wc-checkout.php:550 -msgid "Please enter an account username." -msgstr "Asiakastilin käyttäjätunnus" - -# @ woocommerce -#: classes/class-wc-checkout.php:554 -msgid "Invalid email/username." -msgstr "Sähköposti tai salasana ei kelpaa." - -# @ woocommerce -#: classes/class-wc-checkout.php:557 -msgid "" -"An account is already registered with that username. Please choose another." -msgstr "Käyttäjätunnus on varattu. Ole hyvä, valitse toinen." - -# @ woocommerce -#: classes/class-wc-checkout.php:567 -msgid "Please enter an account password." -msgstr "Anna salasana" - -# @ woocommerce -#: classes/class-wc-checkout.php:570 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:83 -#: woocommerce-functions.php:766 woocommerce-functions.php:1638 -msgid "Passwords do not match." -msgstr "Salasanat poikkeavat toisistaan." - -# @ woocommerce -#: classes/class-wc-checkout.php:574 -msgid "An account is already registered with your email address. Please login." -msgstr "" -"Samalle sähköpostiosoitteelle on jo rekisteröity tili. Ole hyvä, kirjaudu " -"sisään." - -# @ woocommerce -#: classes/class-wc-checkout.php:580 -msgid "You must accept our Terms & Conditions." -msgstr "Pyydämme hyväksymään Tilaus- ja sopimusehtomme. Kiitos." - -# @ woocommerce -#: classes/class-wc-checkout.php:589 -msgid "Invalid shipping method." -msgstr "Toimitustapa ei kelpaa." - -# @ woocommerce -#: classes/class-wc-checkout.php:602 -msgid "Invalid payment method." -msgstr "Maksutapa ei kelpaa." - -# @ woocommerce -#: classes/class-wc-checkout.php:642 woocommerce-functions.php:738 -#: woocommerce-functions.php:740 woocommerce-functions.php:743 -#: woocommerce-functions.php:755 woocommerce-functions.php:757 -#: woocommerce-functions.php:760 woocommerce-functions.php:794 -msgid "ERROR" -msgstr "VIRHE" - -# @ woocommerce -#: classes/class-wc-checkout.php:642 woocommerce-functions.php:794 -msgid "" -"Couldn’t register you… please contact us if you continue to " -"have problems." -msgstr "" -"Rekisteröinti epäonnistui... – Ota yhteyttä, jos tilanne toistuu etkä pääse " -"sen ohi." - -# @ woocommerce -#: classes/class-wc-countries.php:37 -msgid "Afghanistan" -msgstr "Afganistan" - -# @ woocommerce -#: classes/class-wc-countries.php:38 -msgid "Åland Islands" -msgstr "Ahvenanmaa" - -# @ woocommerce -#: classes/class-wc-countries.php:39 -msgid "Albania" -msgstr "Albania" - -# @ woocommerce -#: classes/class-wc-countries.php:40 -msgid "Algeria" -msgstr "Algeria" - -# @ woocommerce -#: classes/class-wc-countries.php:41 -msgid "Andorra" -msgstr "Andorra" - -# @ woocommerce -#: classes/class-wc-countries.php:42 -msgid "Angola" -msgstr "Angola" - -# @ woocommerce -#: classes/class-wc-countries.php:43 -msgid "Anguilla" -msgstr "Anguilla" - -# @ woocommerce -#: classes/class-wc-countries.php:44 -msgid "Antarctica" -msgstr "Antarktis" - -# @ woocommerce -#: classes/class-wc-countries.php:45 -msgid "Antigua and Barbuda" -msgstr "Antigua ja Barbuda" - -# @ woocommerce -#: classes/class-wc-countries.php:46 -msgid "Argentina" -msgstr "Argentiina" - -# @ woocommerce -#: classes/class-wc-countries.php:47 -msgid "Armenia" -msgstr "Armenia" - -# @ woocommerce -#: classes/class-wc-countries.php:48 -msgid "Aruba" -msgstr "Aruba" - -# @ woocommerce -#: classes/class-wc-countries.php:49 -msgid "Australia" -msgstr "Australia" - -# @ woocommerce -#: classes/class-wc-countries.php:50 -msgid "Austria" -msgstr "Itävalta" - -# @ woocommerce -#: classes/class-wc-countries.php:51 -msgid "Azerbaijan" -msgstr "Azerbaidžan" - -# @ woocommerce -#: classes/class-wc-countries.php:52 -msgid "Bahamas" -msgstr "Bahama" - -# @ woocommerce -#: classes/class-wc-countries.php:53 -msgid "Bahrain" -msgstr "Bahrain" - -# @ woocommerce -#: classes/class-wc-countries.php:54 -msgid "Bangladesh" -msgstr "Bangladesh" - -# @ woocommerce -#: classes/class-wc-countries.php:55 -msgid "Barbados" -msgstr "Barbados" - -# @ woocommerce -#: classes/class-wc-countries.php:56 -msgid "Belarus" -msgstr "Valko-Venäjä" - -# @ woocommerce -#: classes/class-wc-countries.php:57 -msgid "Belgium" -msgstr "Belgia" - -# @ woocommerce -#: classes/class-wc-countries.php:58 -msgid "Belau" -msgstr "Palau" - -# @ woocommerce -#: classes/class-wc-countries.php:59 -msgid "Belize" -msgstr "Belize" - -# @ woocommerce -#: classes/class-wc-countries.php:60 -msgid "Benin" -msgstr "Benin" - -# @ woocommerce -#: classes/class-wc-countries.php:61 -msgid "Bermuda" -msgstr "Bermuda" - -# @ woocommerce -#: classes/class-wc-countries.php:62 -msgid "Bhutan" -msgstr "Bhutan" - -# @ woocommerce -#: classes/class-wc-countries.php:63 -msgid "Bolivia" -msgstr "Bolivia" - -# @ woocommerce -#: classes/class-wc-countries.php:64 -msgid "Bonaire, Saint Eustatius and Saba" -msgstr "Bonaire, Saint Eustatius and Saba" - -# @ woocommerce -#: classes/class-wc-countries.php:65 -msgid "Bosnia and Herzegovina" -msgstr "Bosnia ja Hertsegovina" - -# @ woocommerce -#: classes/class-wc-countries.php:66 -msgid "Botswana" -msgstr "Botswana" - -# @ woocommerce -#: classes/class-wc-countries.php:67 -msgid "Bouvet Island" -msgstr "Bouvet Island" - -# @ woocommerce -#: classes/class-wc-countries.php:68 -msgid "Brazil" -msgstr "Brasilia" - -# @ woocommerce -#: classes/class-wc-countries.php:69 -msgid "British Indian Ocean Territory" -msgstr "Brittiläinen Intian valtameren alue" - -# @ woocommerce -#: classes/class-wc-countries.php:70 -msgid "British Virgin Islands" -msgstr "Brittiläiset Neitsytsaaret" - -# @ woocommerce -#: classes/class-wc-countries.php:71 -msgid "Brunei" -msgstr "Brunei" - -# @ woocommerce -#: classes/class-wc-countries.php:72 -msgid "Bulgaria" -msgstr "Bulgaria" - -# @ woocommerce -#: classes/class-wc-countries.php:73 -msgid "Burkina Faso" -msgstr "Burkina Faso" - -# @ woocommerce -#: classes/class-wc-countries.php:74 -msgid "Burundi" -msgstr "Burundi" - -# @ woocommerce -#: classes/class-wc-countries.php:75 -msgid "Cambodia" -msgstr "Kambodza" - -# @ woocommerce -#: classes/class-wc-countries.php:76 -msgid "Cameroon" -msgstr "Kamerun" - -# @ woocommerce -#: classes/class-wc-countries.php:77 -msgid "Canada" -msgstr "Kanada" - -# @ woocommerce -#: classes/class-wc-countries.php:78 -msgid "Cape Verde" -msgstr "Kap Verde" - -# @ woocommerce -#: classes/class-wc-countries.php:79 -msgid "Cayman Islands" -msgstr "Caymansaaret" - -# @ woocommerce -#: classes/class-wc-countries.php:80 -msgid "Central African Republic" -msgstr "Keski-Afrikan tasavalta" - -# @ woocommerce -#: classes/class-wc-countries.php:81 -msgid "Chad" -msgstr "Chad" - -# @ woocommerce -#: classes/class-wc-countries.php:82 -msgid "Chile" -msgstr "Chile" - -# @ woocommerce -#: classes/class-wc-countries.php:83 -msgid "China" -msgstr "Kiina" - -# @ woocommerce -#: classes/class-wc-countries.php:84 -msgid "Christmas Island" -msgstr "Joulusaari" - -# @ woocommerce -#: classes/class-wc-countries.php:85 -msgid "Cocos (Keeling) Islands" -msgstr "Kookossaaret" - -# @ woocommerce -#: classes/class-wc-countries.php:86 -msgid "Colombia" -msgstr "Kolumbia" - -# @ woocommerce -#: classes/class-wc-countries.php:87 -msgid "Comoros" -msgstr "Komorit" - -# @ woocommerce -#: classes/class-wc-countries.php:88 -msgid "Congo (Brazzaville)" -msgstr "Kongo (Brazzaville)" - -# @ woocommerce -#: classes/class-wc-countries.php:89 -msgid "Congo (Kinshasa)" -msgstr "Kongo (Kinshasa)" - -# @ woocommerce -#: classes/class-wc-countries.php:90 -msgid "Cook Islands" -msgstr "Cookinsaaret" - -# @ woocommerce -#: classes/class-wc-countries.php:91 -msgid "Costa Rica" -msgstr "Costa Rica" - -# @ woocommerce -#: classes/class-wc-countries.php:92 -msgid "Croatia" -msgstr "Kroatia" - -# @ woocommerce -#: classes/class-wc-countries.php:93 -msgid "Cuba" -msgstr "Kuuba" - -# @ woocommerce -#: classes/class-wc-countries.php:94 -msgid "CuraÇao" -msgstr "CuraÇao" - -# @ woocommerce -#: classes/class-wc-countries.php:95 -msgid "Cyprus" -msgstr "Kypros" - -# @ woocommerce -#: classes/class-wc-countries.php:96 -msgid "Czech Republic" -msgstr "Tsekki" - -# @ woocommerce -#: classes/class-wc-countries.php:97 -msgid "Denmark" -msgstr "Tanska" - -# @ woocommerce -#: classes/class-wc-countries.php:98 -msgid "Djibouti" -msgstr "Djibouti" - -# @ woocommerce -#: classes/class-wc-countries.php:99 -msgid "Dominica" -msgstr "Dominica" - -# @ woocommerce -#: classes/class-wc-countries.php:100 -msgid "Dominican Republic" -msgstr "Dominikaaninen tasavalta" - -# @ woocommerce -#: classes/class-wc-countries.php:101 -msgid "Ecuador" -msgstr "Ecuador" - -# @ woocommerce -#: classes/class-wc-countries.php:102 -msgid "Egypt" -msgstr "Egypti" - -# @ woocommerce -#: classes/class-wc-countries.php:103 -msgid "El Salvador" -msgstr "El Salvador" - -# @ woocommerce -#: classes/class-wc-countries.php:104 -msgid "Equatorial Guinea" -msgstr "Päiväntasaajan Guinea" - -# @ woocommerce -#: classes/class-wc-countries.php:105 -msgid "Eritrea" -msgstr "Eritrea" - -# @ woocommerce -#: classes/class-wc-countries.php:106 -msgid "Estonia" -msgstr "Viro" - -# @ woocommerce -#: classes/class-wc-countries.php:107 -msgid "Ethiopia" -msgstr "Etiopia" - -# @ woocommerce -#: classes/class-wc-countries.php:108 -msgid "Falkland Islands" -msgstr "Falklandinsaaret" - -# @ woocommerce -#: classes/class-wc-countries.php:109 -msgid "Faroe Islands" -msgstr "Färsaaret" - -# @ woocommerce -#: classes/class-wc-countries.php:110 -msgid "Fiji" -msgstr "Fidži" - -# @ woocommerce -#: classes/class-wc-countries.php:111 -msgid "Finland" -msgstr "Suomi" - -# @ woocommerce -#: classes/class-wc-countries.php:112 -msgid "France" -msgstr "Ranska" - -# @ woocommerce -#: classes/class-wc-countries.php:113 -msgid "French Guiana" -msgstr "Ranskan Guayana" - -# @ woocommerce -#: classes/class-wc-countries.php:114 -msgid "French Polynesia" -msgstr "Ranskan Polynesia" - -# @ woocommerce -#: classes/class-wc-countries.php:115 -msgid "French Southern Territories" -msgstr "Ranskan eteläiset alueet" - -# @ woocommerce -#: classes/class-wc-countries.php:116 -msgid "Gabon" -msgstr "Gabon" - -# @ woocommerce -#: classes/class-wc-countries.php:117 -msgid "Gambia" -msgstr "Gambia" - -# @ woocommerce -#: classes/class-wc-countries.php:118 i18n/states/US.php:23 -msgid "Georgia" -msgstr "Georgia" - -# @ woocommerce -#: classes/class-wc-countries.php:119 -msgid "Germany" -msgstr "Saksa" - -# @ woocommerce -#: classes/class-wc-countries.php:120 -msgid "Ghana" -msgstr "Ghana" - -# @ woocommerce -#: classes/class-wc-countries.php:121 -msgid "Gibraltar" -msgstr "Gibraltar" - -# @ woocommerce -#: classes/class-wc-countries.php:122 -msgid "Greece" -msgstr "Kreikka" - -# @ woocommerce -#: classes/class-wc-countries.php:123 -msgid "Greenland" -msgstr "Grönlanti" - -# @ woocommerce -#: classes/class-wc-countries.php:124 -msgid "Grenada" -msgstr "Grenada" - -# @ woocommerce -#: classes/class-wc-countries.php:125 -msgid "Guadeloupe" -msgstr "Guadeloupe" - -# @ woocommerce -#: classes/class-wc-countries.php:126 -msgid "Guatemala" -msgstr "Guatemala" - -# @ woocommerce -#: classes/class-wc-countries.php:127 -msgid "Guernsey" -msgstr "Guernsey" - -# @ woocommerce -#: classes/class-wc-countries.php:128 -msgid "Guinea" -msgstr "Guinea" - -# @ woocommerce -#: classes/class-wc-countries.php:129 -msgid "Guinea-Bissau" -msgstr "Guinea-Bissaun" - -# @ woocommerce -#: classes/class-wc-countries.php:130 -msgid "Guyana" -msgstr "Guyana" - -# @ woocommerce -#: classes/class-wc-countries.php:131 -msgid "Haiti" -msgstr "Haiti" - -# @ woocommerce -#: classes/class-wc-countries.php:132 -msgid "Heard Island and McDonald Islands" -msgstr "Heard Island ja McDonald Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:133 -msgid "Honduras" -msgstr "Honduras" - -# @ woocommerce -#: classes/class-wc-countries.php:134 -msgid "Hong Kong" -msgstr "Hong Kong" - -# @ woocommerce -#: classes/class-wc-countries.php:135 -msgid "Hungary" -msgstr "Unkari" - -# @ woocommerce -#: classes/class-wc-countries.php:136 -msgid "Iceland" -msgstr "Islanti" - -# @ woocommerce -#: classes/class-wc-countries.php:137 -msgid "India" -msgstr "Intia" - -# @ woocommerce -#: classes/class-wc-countries.php:138 -msgid "Indonesia" -msgstr "Indonesia" - -# @ woocommerce -#: classes/class-wc-countries.php:139 -msgid "Iran" -msgstr "Iran" - -# @ woocommerce -#: classes/class-wc-countries.php:140 -msgid "Iraq" -msgstr "Irak" - -# @ woocommerce -#: classes/class-wc-countries.php:141 -msgid "Republic of Ireland" -msgstr "Irlanti" - -# @ woocommerce -#: classes/class-wc-countries.php:142 -msgid "Isle of Man" -msgstr "Isle of Man" - -# @ woocommerce -#: classes/class-wc-countries.php:143 -msgid "Israel" -msgstr "Israel" - -# @ woocommerce -#: classes/class-wc-countries.php:144 -msgid "Italy" -msgstr "Italia" - -# @ woocommerce -#: classes/class-wc-countries.php:145 -msgid "Ivory Coast" -msgstr "Norsunluurannikko" - -# @ woocommerce -#: classes/class-wc-countries.php:146 -msgid "Jamaica" -msgstr "Jamaika" - -# @ woocommerce -#: classes/class-wc-countries.php:147 -msgid "Japan" -msgstr "Japani" - -# @ woocommerce -#: classes/class-wc-countries.php:148 -msgid "Jersey" -msgstr "Jersey" - -# @ woocommerce -#: classes/class-wc-countries.php:149 -msgid "Jordan" -msgstr "Jordan" - -# @ woocommerce -#: classes/class-wc-countries.php:150 -msgid "Kazakhstan" -msgstr "Kazakstan" - -# @ woocommerce -#: classes/class-wc-countries.php:151 -msgid "Kenya" -msgstr "Kenia" - -# @ woocommerce -#: classes/class-wc-countries.php:152 -msgid "Kiribati" -msgstr "Kiribati" - -# @ woocommerce -#: classes/class-wc-countries.php:153 -msgid "Kuwait" -msgstr "Kuwait" - -# @ woocommerce -#: classes/class-wc-countries.php:154 -msgid "Kyrgyzstan" -msgstr "Kirgisia" - -# @ woocommerce -#: classes/class-wc-countries.php:155 -msgid "Laos" -msgstr "Laos" - -# @ woocommerce -#: classes/class-wc-countries.php:156 -msgid "Latvia" -msgstr "Latvia" - -# @ woocommerce -#: classes/class-wc-countries.php:157 -msgid "Lebanon" -msgstr "Libanon" - -# @ woocommerce -#: classes/class-wc-countries.php:158 -msgid "Lesotho" -msgstr "Lesotho" - -# @ woocommerce -#: classes/class-wc-countries.php:159 -msgid "Liberia" -msgstr "Liberia" - -# @ woocommerce -#: classes/class-wc-countries.php:160 -msgid "Libya" -msgstr "Libya" - -# @ woocommerce -#: classes/class-wc-countries.php:161 -msgid "Liechtenstein" -msgstr "Liechtenstein" - -# @ woocommerce -#: classes/class-wc-countries.php:162 -msgid "Lithuania" -msgstr "Liettua" - -# @ woocommerce -#: classes/class-wc-countries.php:163 -msgid "Luxembourg" -msgstr "Luxembourg" - -# @ woocommerce -#: classes/class-wc-countries.php:164 -msgid "Macao S.A.R., China" -msgstr "Macao S.A.R., Kiina" - -# @ woocommerce -#: classes/class-wc-countries.php:165 -msgid "Macedonia" -msgstr "Makedonia" - -# @ woocommerce -#: classes/class-wc-countries.php:166 -msgid "Madagascar" -msgstr "Madagascar" - -# @ woocommerce -#: classes/class-wc-countries.php:167 -msgid "Malawi" -msgstr "Malawi" - -# @ woocommerce -#: classes/class-wc-countries.php:168 -msgid "Malaysia" -msgstr "Malesia" - -# @ woocommerce -#: classes/class-wc-countries.php:169 -msgid "Maldives" -msgstr "Malediivit" - -# @ woocommerce -#: classes/class-wc-countries.php:170 -msgid "Mali" -msgstr "Mali" - -# @ woocommerce -#: classes/class-wc-countries.php:171 -msgid "Malta" -msgstr "Malta" - -# @ woocommerce -#: classes/class-wc-countries.php:172 -msgid "Marshall Islands" -msgstr "Marshallinsaaret" - -# @ woocommerce -#: classes/class-wc-countries.php:173 -msgid "Martinique" -msgstr "Martinique" - -# @ woocommerce -#: classes/class-wc-countries.php:174 -msgid "Mauritania" -msgstr "Mauritania" - -# @ woocommerce -#: classes/class-wc-countries.php:175 -msgid "Mauritius" -msgstr "Mauritius" - -# @ woocommerce -#: classes/class-wc-countries.php:176 -msgid "Mayotte" -msgstr "Mayotte" - -# @ woocommerce -#: classes/class-wc-countries.php:177 -msgid "Mexico" -msgstr "Meksiko" - -# @ woocommerce -#: classes/class-wc-countries.php:178 -msgid "Micronesia" -msgstr "Mikronesia" - -# @ woocommerce -#: classes/class-wc-countries.php:179 -msgid "Moldova" -msgstr "Moldova" - -# @ woocommerce -#: classes/class-wc-countries.php:180 -msgid "Monaco" -msgstr "Monaco" - -# @ woocommerce -#: classes/class-wc-countries.php:181 -msgid "Mongolia" -msgstr "Mongolia" - -# @ woocommerce -#: classes/class-wc-countries.php:182 -msgid "Montenegro" -msgstr "Montenegro" - -# @ woocommerce -#: classes/class-wc-countries.php:183 -msgid "Montserrat" -msgstr "Montserrat" - -# @ woocommerce -#: classes/class-wc-countries.php:184 -msgid "Morocco" -msgstr "Marokko" - -# @ woocommerce -#: classes/class-wc-countries.php:185 -msgid "Mozambique" -msgstr "Mozambique" - -# @ woocommerce -#: classes/class-wc-countries.php:186 -msgid "Myanmar" -msgstr "Myanmar" - -# @ woocommerce -#: classes/class-wc-countries.php:187 -msgid "Namibia" -msgstr "Namibia" - -# @ woocommerce -#: classes/class-wc-countries.php:188 -msgid "Nauru" -msgstr "Nauru" - -# @ woocommerce -#: classes/class-wc-countries.php:189 -msgid "Nepal" -msgstr "Nepal" - -# @ woocommerce -#: classes/class-wc-countries.php:190 -msgid "Netherlands" -msgstr "Hollanti" - -# @ woocommerce -#: classes/class-wc-countries.php:191 -msgid "Netherlands Antilles" -msgstr "Alankomaiden Antillit" - -# @ woocommerce -#: classes/class-wc-countries.php:192 -msgid "New Caledonia" -msgstr "Uusi-Kaledonia" - -# @ woocommerce -#: classes/class-wc-countries.php:193 -msgid "New Zealand" -msgstr "Uusi-Seelanti" - -# @ woocommerce -#: classes/class-wc-countries.php:194 -msgid "Nicaragua" -msgstr "Nicaragua" - -# @ woocommerce -#: classes/class-wc-countries.php:195 -msgid "Niger" -msgstr "Niger" - -# @ woocommerce -#: classes/class-wc-countries.php:196 -msgid "Nigeria" -msgstr "Nigeria" - -# @ woocommerce -#: classes/class-wc-countries.php:197 -msgid "Niue" -msgstr "Niue" - -# @ woocommerce -#: classes/class-wc-countries.php:198 -msgid "Norfolk Island" -msgstr "Norfolkinsaari" - -# @ woocommerce -#: classes/class-wc-countries.php:199 -msgid "North Korea" -msgstr "Pohjois-Korea" - -# @ woocommerce -#: classes/class-wc-countries.php:200 -msgid "Norway" -msgstr "Norja" - -# @ woocommerce -#: classes/class-wc-countries.php:201 -msgid "Oman" -msgstr "Oman" - -# @ woocommerce -#: classes/class-wc-countries.php:202 -msgid "Pakistan" -msgstr "Pakistan" - -# @ woocommerce -#: classes/class-wc-countries.php:203 -msgid "Palestinian Territory" -msgstr "Palestiinalaisalue" - -# @ woocommerce -#: classes/class-wc-countries.php:204 -msgid "Panama" -msgstr "Panama" - -# @ woocommerce -#: classes/class-wc-countries.php:205 -msgid "Papua New Guinea" -msgstr "Papua-Uusi-Guinea" - -# @ woocommerce -#: classes/class-wc-countries.php:206 -msgid "Paraguay" -msgstr "Paraguay" - -# @ woocommerce -#: classes/class-wc-countries.php:207 -msgid "Peru" -msgstr "Peru" - -# @ woocommerce -#: classes/class-wc-countries.php:208 -msgid "Philippines" -msgstr "Filippiinit" - -# @ woocommerce -#: classes/class-wc-countries.php:209 -msgid "Pitcairn" -msgstr "Pitcairn" - -# @ woocommerce -#: classes/class-wc-countries.php:210 -msgid "Poland" -msgstr "Puola" - -# @ woocommerce -#: classes/class-wc-countries.php:211 -msgid "Portugal" -msgstr "Portugali" - -# @ woocommerce -#: classes/class-wc-countries.php:212 -msgid "Qatar" -msgstr "Qatar" - -# @ woocommerce -#: classes/class-wc-countries.php:213 -msgid "Reunion" -msgstr "Réunion" - -# @ woocommerce -#: classes/class-wc-countries.php:214 -msgid "Romania" -msgstr "Romania" - -# @ woocommerce -#: classes/class-wc-countries.php:215 -msgid "Russia" -msgstr "Venäjä" - -# @ woocommerce -#: classes/class-wc-countries.php:216 -msgid "Rwanda" -msgstr "Ruanda" - -# @ woocommerce -#: classes/class-wc-countries.php:217 -msgid "Saint Barthélemy" -msgstr "Saint Barthélemy" - -# @ woocommerce -#: classes/class-wc-countries.php:218 -msgid "Saint Helena" -msgstr "Saint Helena" - -# @ woocommerce -#: classes/class-wc-countries.php:219 -msgid "Saint Kitts and Nevis" -msgstr "Saint Kitts ja Nevis" - -# @ woocommerce -#: classes/class-wc-countries.php:220 -msgid "Saint Lucia" -msgstr "Saint Lucia" - -# @ woocommerce -#: classes/class-wc-countries.php:221 -msgid "Saint Martin (French part)" -msgstr "Saint-Martin (ranskalainen osa)" - -# @ woocommerce -#: classes/class-wc-countries.php:222 -msgid "Saint Martin (Dutch part)" -msgstr "Saint Martin (Hollannin osa)" - -# @ woocommerce -#: classes/class-wc-countries.php:223 -msgid "Saint Pierre and Miquelon" -msgstr "Saint Pierre ja Miquelon" - -# @ woocommerce -#: classes/class-wc-countries.php:224 -msgid "Saint Vincent and the Grenadines" -msgstr "Saint Vincent ja Grenadiinit" - -# @ woocommerce -#: classes/class-wc-countries.php:225 -msgid "San Marino" -msgstr "San Marino" - -# @ woocommerce -#: classes/class-wc-countries.php:226 -msgid "São Tomé and Príncipe" -msgstr "Sao Tome ja Principe" - -# @ woocommerce -#: classes/class-wc-countries.php:227 -msgid "Saudi Arabia" -msgstr "Saudi-Arabia" - -# @ woocommerce -#: classes/class-wc-countries.php:228 -msgid "Senegal" -msgstr "Senegal" - -# @ woocommerce -#: classes/class-wc-countries.php:229 -msgid "Serbia" -msgstr "Serbia" - -# @ woocommerce -#: classes/class-wc-countries.php:230 -msgid "Seychelles" -msgstr "Seychellit" - -# @ woocommerce -#: classes/class-wc-countries.php:231 -msgid "Sierra Leone" -msgstr "Sierra Leone" - -# @ woocommerce -#: classes/class-wc-countries.php:232 -msgid "Singapore" -msgstr "Singapore" - -# @ woocommerce -#: classes/class-wc-countries.php:233 -msgid "Slovakia" -msgstr "Slovakia" - -# @ woocommerce -#: classes/class-wc-countries.php:234 -msgid "Slovenia" -msgstr "Slovenia" - -# @ woocommerce -#: classes/class-wc-countries.php:235 -msgid "Solomon Islands" -msgstr "Salomonsaaret" - -# @ woocommerce -#: classes/class-wc-countries.php:236 -msgid "Somalia" -msgstr "Somalia" - -# @ woocommerce -#: classes/class-wc-countries.php:237 -msgid "South Africa" -msgstr "Etelä-Afrikka" - -# @ woocommerce -#: classes/class-wc-countries.php:238 -msgid "South Georgia/Sandwich Islands" -msgstr "Etelä-Georgia ja Sandwichsaaret" - -# @ woocommerce -#: classes/class-wc-countries.php:239 -msgid "South Korea" -msgstr "Etelä-Korea" - -# @ woocommerce -#: classes/class-wc-countries.php:240 -msgid "South Sudan" -msgstr "Etelä-Sudan" - -# @ woocommerce -#: classes/class-wc-countries.php:241 -msgid "Spain" -msgstr "Espanja" - -# @ woocommerce -#: classes/class-wc-countries.php:242 -msgid "Sri Lanka" -msgstr "Sri Lanka" - -# @ woocommerce -#: classes/class-wc-countries.php:243 -msgid "Sudan" -msgstr "Sudan" - -# @ woocommerce -#: classes/class-wc-countries.php:244 -msgid "Suriname" -msgstr "Surinam" - -# @ woocommerce -#: classes/class-wc-countries.php:245 -msgid "Svalbard and Jan Mayen" -msgstr "Svalbard ja Jan Mayen" - -# @ woocommerce -#: classes/class-wc-countries.php:246 -msgid "Swaziland" -msgstr "Swazimaa" - -# @ woocommerce -#: classes/class-wc-countries.php:247 -msgid "Sweden" -msgstr "Ruotsi" - -# @ woocommerce -#: classes/class-wc-countries.php:248 -msgid "Switzerland" -msgstr "Sveitsi" - -# @ woocommerce -#: classes/class-wc-countries.php:249 -msgid "Syria" -msgstr "Syyria" - -# @ woocommerce -#: classes/class-wc-countries.php:250 -msgid "Taiwan" -msgstr "Taiwan" - -# @ woocommerce -#: classes/class-wc-countries.php:251 -msgid "Tajikistan" -msgstr "Tadžikistan" - -# @ woocommerce -#: classes/class-wc-countries.php:252 -msgid "Tanzania" -msgstr "Tansania" - -# @ woocommerce -#: classes/class-wc-countries.php:253 -msgid "Thailand" -msgstr "Thaimaa" - -# @ woocommerce -#: classes/class-wc-countries.php:254 -msgid "Timor-Leste" -msgstr "Itä-Timor" - -# @ woocommerce -#: classes/class-wc-countries.php:255 -msgid "Togo" -msgstr "Togo" - -# @ woocommerce -#: classes/class-wc-countries.php:256 -msgid "Tokelau" -msgstr "Tokelau" - -# @ woocommerce -#: classes/class-wc-countries.php:257 -msgid "Tonga" -msgstr "Tonga" - -# @ woocommerce -#: classes/class-wc-countries.php:258 -msgid "Trinidad and Tobago" -msgstr "Trinidad ja Tobago" - -# @ woocommerce -#: classes/class-wc-countries.php:259 -msgid "Tunisia" -msgstr "Tunisia" - -# @ woocommerce -#: classes/class-wc-countries.php:260 -msgid "Turkey" -msgstr "Turkki" - -# @ woocommerce -#: classes/class-wc-countries.php:261 -msgid "Turkmenistan" -msgstr "Turkmenistan" - -# @ woocommerce -#: classes/class-wc-countries.php:262 -msgid "Turks and Caicos Islands" -msgstr "Turks- ja Caicossaaret" - -# @ woocommerce -#: classes/class-wc-countries.php:263 -msgid "Tuvalu" -msgstr "Tuvalu" - -# @ woocommerce -#: classes/class-wc-countries.php:264 -msgid "Uganda" -msgstr "Uganda" - -# @ woocommerce -#: classes/class-wc-countries.php:265 -msgid "Ukraine" -msgstr "Ukraina" - -# @ woocommerce -#: classes/class-wc-countries.php:266 -msgid "United Arab Emirates" -msgstr "Yhdistyneet Arabiemiirikunnat" - -# @ woocommerce -#: classes/class-wc-countries.php:267 -msgid "United Kingdom" -msgstr "Yhdistynyt kuningaskunta (Iso-Britannia)" - -# @ woocommerce -#: classes/class-wc-countries.php:268 -msgid "United States" -msgstr "Yhdysvallat" - -# @ woocommerce -#: classes/class-wc-countries.php:269 -msgid "Uruguay" -msgstr "Uruguay" - -# @ woocommerce -#: classes/class-wc-countries.php:270 -msgid "Uzbekistan" -msgstr "Uzbekistan" - -# @ woocommerce -#: classes/class-wc-countries.php:271 -msgid "Vanuatu" -msgstr "Vanuatu" - -# @ woocommerce -#: classes/class-wc-countries.php:272 -msgid "Vatican" -msgstr "Vatikaani" - -# @ woocommerce -#: classes/class-wc-countries.php:273 -msgid "Venezuela" -msgstr "Venezuela" - -# @ woocommerce -#: classes/class-wc-countries.php:274 -msgid "Vietnam" -msgstr "Vietnam" - -# @ woocommerce -#: classes/class-wc-countries.php:275 -msgid "Wallis and Futuna" -msgstr "Wallis and Futuna" - -# @ woocommerce -#: classes/class-wc-countries.php:276 -msgid "Western Sahara" -msgstr "Länsi-Sahara" - -# @ woocommerce -#: classes/class-wc-countries.php:277 -msgid "Western Samoa" -msgstr "Länsi-Samoa" - -# @ woocommerce -#: classes/class-wc-countries.php:278 -msgid "Yemen" -msgstr "Yemen" - -# @ woocommerce -#: classes/class-wc-countries.php:279 -msgid "Zambia" -msgstr "Sambia" - -# @ woocommerce -#: classes/class-wc-countries.php:280 -msgid "Zimbabwe" -msgstr "Zimbabwe" - -# @ woocommerce -#: classes/class-wc-countries.php:418 -msgid "to the" -msgstr "->" - -# @ woocommerce -#: classes/class-wc-countries.php:419 -msgid "to" -msgstr "->" - -# @ woocommerce -#: classes/class-wc-countries.php:432 -msgid "the" -msgstr "-" - -# @ woocommerce -#: classes/class-wc-countries.php:444 -msgid "VAT" -msgstr "alv./VAT" - -# @ woocommerce -#: classes/class-wc-countries.php:444 -msgid "Tax" -msgstr "Verot" - -# @ woocommerce -#: classes/class-wc-countries.php:457 -msgid "(incl. VAT)" -msgstr "(sis. alv.)" - -# @ woocommerce -#: classes/class-wc-countries.php:457 -msgid "(incl. tax)" -msgstr "(verollinen)" - -# @ woocommerce -#: classes/class-wc-countries.php:470 -msgid "(ex. VAT)" -msgstr "(ei sis. alv.)" - -# @ woocommerce -#: classes/class-wc-countries.php:470 -msgid "(ex. tax)" -msgstr "(veroton)" - -# @ woocommerce -#: classes/class-wc-countries.php:678 -msgid "Country" -msgstr "Maa" - -# @ woocommerce -#: classes/class-wc-countries.php:683 -msgid "First Name" -msgstr "Etunimi" - -# @ woocommerce -#: classes/class-wc-countries.php:688 -msgid "Last Name" -msgstr "Sukunimi" - -# @ woocommerce -#: classes/class-wc-countries.php:694 -msgid "Company Name" -msgstr "Yrityksen nimi" - -# @ woocommerce -#: classes/class-wc-countries.php:698 -msgid "Address" -msgstr "Osoite" - -# @ woocommerce -#: classes/class-wc-countries.php:699 -msgctxt "placeholder" -msgid "Street address" -msgstr "Katuosoite" - -#: classes/class-wc-countries.php:707 -msgctxt "placeholder" -msgid "Apartment, suite, unit etc. (optional)" -msgstr "Huoneisto, PL tms. (valinnainen)" - -# @ woocommerce -#: classes/class-wc-countries.php:715 classes/class-wc-countries.php:716 -msgid "Town / City" -msgstr "Kaupunki" - -# @ woocommerce -#: classes/class-wc-countries.php:725 classes/class-wc-countries.php:726 -msgid "State / County" -msgstr "Lääni / alue ym." - -# @ woocommerce -#: classes/class-wc-countries.php:734 classes/class-wc-countries.php:735 -#: templates/cart/shipping-calculator.php:80 -msgid "Postcode / Zip" -msgstr "Postinumero" - -# @ woocommerce -#: classes/class-wc-countries.php:774 classes/class-wc-countries.php:784 -#: classes/class-wc-countries.php:804 classes/class-wc-countries.php:859 -#: classes/class-wc-countries.php:883 classes/class-wc-countries.php:933 -#: classes/class-wc-countries.php:957 classes/class-wc-countries.php:998 -msgid "Province" -msgstr "Provinssi" - -# @ woocommerce -#: classes/class-wc-countries.php:790 -msgid "Canton" -msgstr "Piirikunta" - -# @ woocommerce -#: classes/class-wc-countries.php:799 classes/class-wc-countries.php:939 -msgid "Municipality" -msgstr "Kunta" - -# @ woocommerce -#: classes/class-wc-countries.php:846 -msgid "Town / District" -msgstr "Kaupunki / alue" - -# @ woocommerce -#: classes/class-wc-countries.php:849 -msgid "Region" -msgstr "Alue" - -# @ woocommerce -#: classes/class-wc-countries.php:962 -msgid "Zip" -msgstr "Postinumero" - -# @ woocommerce -#: classes/class-wc-countries.php:965 -msgid "State" -msgstr "Osavaltio" - -# @ woocommerce -#: classes/class-wc-countries.php:970 -msgid "Postcode" -msgstr "Postinumero" - -# @ woocommerce -#: classes/class-wc-countries.php:973 -msgid "County" -msgstr "Kunta" - -# @ woocommerce -#: classes/class-wc-countries.php:1074 -msgid "Email Address" -msgstr "Sähköpostiosoite" - -# @ woocommerce -#: classes/class-wc-countries.php:1080 -msgid "Phone" -msgstr "Puhelin" - -# @ woocommerce -#: classes/class-wc-coupon.php:421 -msgid "Coupon code applied successfully." -msgstr "Alennuskoodi otettiin käyttöön." - -# @ woocommerce -#: classes/class-wc-coupon.php:442 -msgid "Coupon is not valid." -msgstr "Kuponki ei ole kelvollinen." - -# @ woocommerce -#: classes/class-wc-coupon.php:445 classes/class-wc-coupon.php:495 -msgid "Coupon does not exist!" -msgstr "Kuponkia ei ole olemassa!" - -# @ woocommerce -#: classes/class-wc-coupon.php:448 -msgid "" -"Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from " -"your order." -msgstr "" -"Pahoittelemme, kuponki '%s' ei kelpaa – se on nyt irrotettu tilauksesta." - -# @ woocommerce -#: classes/class-wc-coupon.php:451 -msgid "" -"Sorry, it seems the coupon \"%s\" is not yours - it has now been removed " -"from your order." -msgstr "" -"Pahoittelemme, kuponki '%s' ei liity tiliisi – se on nyt irrotettu " -"tilauksesta." - -# @ woocommerce -#: classes/class-wc-coupon.php:454 -msgid "Coupon code already applied!" -msgstr "Alennuskoodi on jo käytetty!" - -#: classes/class-wc-coupon.php:457 -msgid "" -"Sorry, coupon \"%s\" has already been applied and cannot be used in " -"conjunction with other coupons." -msgstr "" -"Pahoittelemme, \"%s\" kuponki on jo asetettu ja sitä ei voi käyttää muun " -"kupongin kanssa." - -# @ woocommerce -#: classes/class-wc-coupon.php:460 -msgid "Coupon usage limit has been reached." -msgstr "Kupongin käyttöraja on saavutettu." - -# @ woocommerce -#: classes/class-wc-coupon.php:463 -msgid "This coupon has expired." -msgstr "Kupongin voimassaolo on päättynyt." - -# @ woocommerce -#: classes/class-wc-coupon.php:466 -msgid "The minimum spend for this coupon is %s." -msgstr "Kupongin (hyväksymisen) minimiostos on %s." - -# @ woocommerce -#: classes/class-wc-coupon.php:469 -msgid "Sorry, this coupon is not applicable to your cart contents." -msgstr "" -"Pahoittelemme, kuponkia ei voi käyttää ostoskorissa oleville tuotteille." - -# @ woocommerce -#: classes/class-wc-coupon.php:472 -msgid "Sorry, this coupon is not valid for sale items." -msgstr "Pahoittelemme, kuponkia ei voi käyttää tarjoustuotteille." - -# @ woocommerce -#: classes/class-wc-coupon.php:498 -msgid "Please enter a coupon code." -msgstr "Kirjoita kupongin koodi, ole hyvä" - -# @ woocommerce -#: classes/class-wc-customer.php:637 classes/class-wc-customer.php:649 -msgid "File %d" -msgstr "Tiedosto %d" - -# @ woocommerce -#: classes/class-wc-emails.php:246 -msgid "Note" -msgstr "Kommentit" - -# @ woocommerce -#: classes/class-wc-emails.php:282 -msgid "Product low in stock" -msgstr "Tuotetta on vain vähän varastossa." - -# @ woocommerce -#: classes/class-wc-emails.php:287 classes/class-wc-emails.php:319 -#: classes/class-wc-emails.php:363 -msgid "Variation #%s of %s" -msgstr "Muunnelma nro.%s / %s" - -# @ woocommerce -#: classes/class-wc-emails.php:289 classes/class-wc-emails.php:321 -#: classes/class-wc-emails.php:365 -msgid "Product #%s - %s" -msgstr "Tuote nro. %s - %s" - -# @ woocommerce -#: classes/class-wc-emails.php:291 -msgid "is low in stock." -msgstr "on vain vähän varastossa." - -# @ woocommerce -#: classes/class-wc-emails.php:314 -msgid "Product out of stock" -msgstr "Tuote on loppunut varastosta" - -# @ woocommerce -#: classes/class-wc-emails.php:323 -msgid "is out of stock." -msgstr "on loppunut varastosta." - -# @ woocommerce -#: classes/class-wc-emails.php:358 -msgid "Product Backorder" -msgstr "Tuotteen jälkitoimitus" - -# @ woocommerce -#: classes/class-wc-emails.php:367 -msgid "%s units of %s have been backordered in order #%s." -msgstr "%s kpl tuotetta %s jälkitoimituksella, tilauksessa %s." - -# @ woocommerce -#: classes/class-wc-order.php:283 -msgctxt "hash before order number" -msgid "#" -msgstr "nro." - -# @ woocommerce -#: classes/class-wc-order.php:886 -msgid " %svia %s" -msgstr " %s-- %s" - -# @ woocommerce -#: classes/class-wc-order.php:949 -msgid "Cart Subtotal:" -msgstr "Välisumma:" - -# @ woocommerce -#: classes/class-wc-order.php:955 -msgid "Cart Discount:" -msgstr "Ostoskorin alennus:" - -# @ woocommerce -#: classes/class-wc-order.php:961 -msgid "Shipping:" -msgstr "Toimitus:" - -# @ woocommerce -#: classes/class-wc-order.php:997 -msgid "Order Discount:" -msgstr "Tilauksen alennus:" - -# @ woocommerce -#: classes/class-wc-order.php:1002 -msgid "Order Total:" -msgstr "Tilaus yhteensä:" - -# @ woocommerce -#: classes/class-wc-order.php:1016 templates/cart/totals.php:105 -#: templates/checkout/review-order.php:104 -msgid "(Includes %s)" -msgstr "(Sisältää %s)" - -# @ woocommerce -#: classes/class-wc-order.php:1169 classes/class-wc-order.php:1171 -#: classes/class-wc-order.php:1174 -msgid "WooCommerce" -msgstr "WooCommerce" - -# @ woocommerce -#: classes/class-wc-order.php:1221 -msgid "Order status changed from %s to %s." -msgstr "Tilaus vaihtui %s -tilasta %s -tilaan." - -# @ woocommerce -#: classes/class-wc-order.php:1460 woocommerce-ajax.php:1093 -#: woocommerce-ajax.php:1094 -msgid "Item #%s stock reduced from %s to %s." -msgstr "Tuotteen #%s varastoa vähennetty määrästä %s määrään %s." - -# @ woocommerce -#: classes/class-wc-order.php:1472 -msgid "Order item stock reduced successfully." -msgstr "Tilauksessa olevien tuotteiden vähennys varastosta onnistui." - -# @ woocommerce -#: classes/class-wc-product-external.php:56 -msgid "Buy product" -msgstr "Osta tuote" - -# @ woocommerce -#: classes/class-wc-shortcodes.php:572 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:270 -#: templates/loop/add-to-cart.php:46 -#: templates/single-product/add-to-cart/grouped.php:45 -#: templates/single-product/add-to-cart/grouped.php:77 -#: templates/single-product/add-to-cart/simple.php:44 -#: templates/single-product/add-to-cart/variable.php:83 -msgid "Add to cart" -msgstr "Lisää ostoskoriin" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:24 -msgid "Completed order" -msgstr "Tilaus valmis" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:25 -msgid "" -"Order complete emails are sent to the customer when the order is marked " -"complete and usual indicates that the order has been shipped." -msgstr "" -"Kun tuote on merkitty 'valmis', niin sähköposti on lähetetty asiakkaalle. " -"Yleensä se tarkoittaa myös, että tuote on toimitettu (tai luovutettu " -"kuljetukseen)." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:27 -msgid "Your order is complete" -msgstr "Tilaus on valmis" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:28 -msgid "Your {blogname} order from {order_date} is complete" -msgstr "Tilaus {blogname} verkkokaupassa, tehty pvm. {order_date} on valmis" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:37 -msgid "Your order is complete - download your files" -msgstr "Tilaus on valmis – tiedostot voi ladata" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:38 -msgid "" -"Your {blogname} order from {order_date} is complete - download your files" -msgstr "" -"Tilaus {blogname} verkkokaupassa, tehty pvm. {order_date} on valmis – " -"tiedostot voi ladata" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:141 -#: classes/emails/class-wc-email-new-order.php:128 -msgid "Subject" -msgstr "Aihe" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:148 -#: classes/emails/class-wc-email-new-order.php:135 -msgid "Email Heading" -msgstr "Sähköpostin otsikko" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:155 -msgid "Subject (downloadable)" -msgstr "Aihe (ladattava tiedosto)" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:162 -msgid "Email Heading (downloadable)" -msgstr "Sähköpostin otsikko (ladattava tiedosto)" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:27 -msgid "Customer invoice" -msgstr "Lasku asiakkaalle" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:28 -msgid "" -"Customer invoice emails can be sent to the user containing order info and " -"payment links." -msgstr "" -"Asiakkaalle voidaan lähettää sähköpostilla lasku jossa on tilauksen tiedot " -"ja linkki tilauksen maksamiseen. " - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:33 -msgid "Invoice for order {order_number} from {order_date}" -msgstr "Lasku tilaukselle nro. {order_number} joka on tehty pvm. {order_date}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:34 -msgid "Invoice for order {order_number}" -msgstr "Lasku tilaukselle nro. {order_number}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:36 -msgid "Your {blogname} order from {order_date}" -msgstr "Tilaus {blogname} verkkokaupassa, joka on tehty pvm. {order_date}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:37 -msgid "Order {order_number} details" -msgstr "Tilauksen {order_number} tiedot" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:161 -msgid "Email subject (paid)" -msgstr "Sähköpostin aihe (maksettu)" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:168 -msgid "Email heading (paid)" -msgstr "Sähköpostin otsikko (maksettu)" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:31 -msgid "New account" -msgstr "Uusi tili" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:32 -msgid "" -"Customer new account emails are sent when a customer signs up via the " -"checkout or My Account page." -msgstr "" -"Asiakkaalle lähetetään 'uusi tili' -sähköpostiviesti kun hän rekisteröityy " -"kassasivulla tai Oma tili -sivulla." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:37 -msgid "Your account on {blogname}" -msgstr "Tili {blogname} verkkokaupassa" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:38 -msgid "Welcome to {blogname}" -msgstr "Tervetuloa {blogname} verkkokauppaan" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:29 -msgid "Customer note" -msgstr "Kommentti asiakkaalle" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:30 -msgid "Customer note emails are sent when you add a note to an order." -msgstr "" -"Asiakkaalle lähetetään ilmoitus, jos kauppias lisää kommentin tilauksen " -"tietoihin" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:35 -msgid "Note added to your {blogname} order from {order_date}" -msgstr "" -"Kommentti on lisätty {blogname} verkkokaupassa {order_date} tehtyyn " -"tilaukseen" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:36 -msgid "A note has been added to your order" -msgstr "Tilaukseesi on lisätty kommentti" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:24 -msgid "Processing order" -msgstr "Tilausta käsitellään" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:25 -msgid "" -"This is an order notification sent to the customer after payment containing " -"order details." -msgstr "" -"Kun asiakas on maksanut tilauksen, hänelle lähetetään ilmoitus tilauksesta " -"sekä tilauksen tiedot." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:27 -msgid "Thank you for your order" -msgstr "Kiitos tilauksesta" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:28 -msgid "Your {blogname} order receipt from {order_date}" -msgstr "Kuitti {blogname} verkkokaupasta, tilaus pvm. {order_date}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:36 -msgid "Reset password" -msgstr "Salasanan palautus" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:37 -msgid "" -"Customer reset password emails are sent when a customer resets their " -"password." -msgstr "Asiakkaalle lähetetään sähköposti kun hän haluaa palauttaa salasanan" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:42 -msgid "Password Reset for {blogname}" -msgstr "Salasanan palautus {blogname} verkkokaupassa" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:43 -msgid "Password Reset Instructions" -msgstr "Ohjeet salasanan palautukselle" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:24 -msgid "New order" -msgstr "Uusi tilaus" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:25 -msgid "New order emails are sent when an order is received." -msgstr "Asiakkaalle lähetetään sähköposti kun tilaus on saapunut." - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:27 -msgid "New customer order" -msgstr "Uusi tilaus" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:28 -msgid "[{blogname}] New customer order ({order_number}) - {order_date}" -msgstr "[{blogname}] Uusi tilaus asiakkaalta ({order_number}) - {order_date}" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:121 -msgid "Recipient(s)" -msgstr "Vastaanottaja(t)" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:123 -msgid "" -"Enter recipients (comma separated) for this email. Defaults to %s." -msgstr "" -"Kirjoita tämän viestin vastaanottajat. Erota pilkulla. Oletus %s." - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:130 -msgid "" -"This controls the email subject line. Leave blank to use the default " -"subject: %s." -msgstr "" -"Tässä asetetaan sähköpostin 'Aihe'. Kun tyhjä, käytetään oletusta: %s." - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:137 -msgid "" -"This controls the main heading contained within the email notification. " -"Leave blank to use the default heading: %s." -msgstr "" -"Tässä asetetaan sähköpostin viestiosan (=tekstin) otsikko. Kun tyhjä, " -"käytetään oletusta: %s." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:28 -msgid "Bacs" -msgstr "Tilisiirto" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:65 -msgid "Enable Bank Transfer" -msgstr "Ota käyttöön tilisiirto" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:69 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:63 -#: classes/gateways/cod/class-wc-gateway-cod.php:87 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:143 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:126 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:104 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:82 -msgid "Title" -msgstr "Otsikko" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:71 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:65 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:145 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:128 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:83 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:58 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:106 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:84 -msgid "This controls the title which the user sees during checkout." -msgstr "Kirjoita tähän tieto josta käyttäjä tunnistaa maksutavan." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:72 -msgid "Direct Bank Transfer" -msgstr "Pankkisiirto, SEPA-maksu" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:76 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:70 -msgid "Customer Message" -msgstr "Tiedotus asiakkaalle" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:78 -msgid "" -"Give the customer instructions for paying via BACS, and let them know that " -"their order won't be shipping until the money is received." -msgstr "" -"Anna asiakkaalle ohjeet maksaa tuotteet tilisiirtona. Ilmoita myös, että " -"tavarat toimitetaan vasta kun suoritus näkyy myyjän tilillä." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:79 -msgid "" -"Make your payment directly into our bank account. Please use your Order ID " -"as the payment reference. Your order wont be shipped until the funds have " -"cleared in our account." -msgstr "" -"Maksa myyjän pankkitilille, numero ABC.... Kirjoita viestikenttään tilauksen " -"numero. Tuotteet lähetetään sen jälkeen, kun suoritus näkyy myyjän tilillä." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:82 -msgid "Account Details" -msgstr "Tilin tiedot" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:84 -msgid "Optionally enter your bank details below for customers to pay into." -msgstr "Lisäksi, kirjoita alle maksun saajan (tämän kaupan) tilitiedot." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:88 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:163 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:203 -msgid "Account Name" -msgstr "Pankkitilin (haltijan) nimi" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:94 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:164 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:204 -msgid "Account Number" -msgstr "Pankkitilin numero" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:100 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:165 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:205 -msgid "Sort Code" -msgstr "Lajittelukoodi (Sort Code)" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:106 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:166 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:206 -msgid "Bank Name" -msgstr "Pankin nimi" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:112 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:167 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:207 -msgid "IBAN" -msgstr "IBAN" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:117 -msgid "BIC (formerly Swift)" -msgstr "BIC (aiemmin SWIFT)" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:136 -msgid "BACS Payment" -msgstr "Maksu pankkitilille" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:137 -msgid "" -"Allows payments by BACS (Bank Account Clearing System), more commonly known " -"as direct bank/wire transfer." -msgstr "" -"Maksu suoritetaan pankkisiirtona, lähes poikkeuksetta ennakkomaksuna. " -"Ulkomaankaupassa nimellä: Wire Transfer ja Bank Transfer." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:158 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:200 -msgid "Our Details" -msgstr "Tiedot maksua varten" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:168 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:208 -msgid "BIC" -msgstr "BIC" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:234 -msgid "Awaiting BACS payment" -msgstr "Odottaa tilisiirtoa" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:28 -msgid "Cheque" -msgstr "Shekki" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:59 -msgid "Enable Cheque Payment" -msgstr "Ota käyttöön shekillä (sekki) maksaminen" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:66 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:90 -msgid "Cheque Payment" -msgstr "Shekillä maksaminen" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:72 -msgid "" -"Let the customer know the payee and where they should be sending the cheque " -"to and that their order won't be shipping until you receive it." -msgstr "" -"Anna asiakkaalle tarvittavat tiedot: maksun saaja, osoite johon shekki tulee " -"lähettää. Ilmoita myös, että tavarat lähetetään vasta kun shekki on saapunut " -"tai se on lunastettu." - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:73 -msgid "" -"Please send your cheque to Store Name, Store Street, Store Town, Store " -"State / County, Store Postcode." -msgstr "" -"Ole hyvä ja lähetä shekki osoitteella: Kaupan nimi, kaupan katu, kaupan " -"kaupunki, kaupan lääni/alue/osavaltio/provinssi, kaupan postinumero." - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:91 -msgid "" -"Allows cheque payments. Why would you take cheques in this day and age? Well " -"you probably wouldn't but it does allow you to make test purchases for " -"testing order emails and the 'success' pages etc." -msgstr "" -"Maksu suoritetaan shekillä. Miksi hyväksyisit shekkejä enää tähän " -"maailmanaikaan? No todennäkölisesti et hyväksyisikään, mutta tämä antaa " -"sinun tehdä testiostoksia testataksesi tilaussähköposteja ja järjestelmän " -"toimivuutta." - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:147 -msgid "Awaiting cheque payment" -msgstr "Odottaa shekkimaksua" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:27 -#: classes/gateways/cod/class-wc-gateway-cod.php:54 -#: classes/gateways/cod/class-wc-gateway-cod.php:90 -msgid "Cash on Delivery" -msgstr "Maksu toimitettaessa" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:55 -msgid "Have your customers pay with cash (or by other means) upon delivery." -msgstr "" -"Maksu suoritetaan käteisellä (tai muilla tavoilla) kun tuote toimitetaan." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:80 -msgid "Enable COD" -msgstr "Ota käyttöön/poista käytöstä" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:81 -msgid "Enable Cash on Delivery" -msgstr "Ota käyttöön Maksu toimitettaessa -maksutapa." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:89 -msgid "Payment method title that the customer will see on your website." -msgstr "Kirjoita tähän tieto josta käyttäjä tunnistaa maksutavan." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:94 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:150 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:133 -#: woocommerce-template.php:751 -msgid "Description" -msgstr "Kuvaus" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:96 -msgid "Payment method description that the customer will see on your website." -msgstr "Maksutavan kuvaus jonka asiakas näkee kassalla." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:97 -#: classes/gateways/cod/class-wc-gateway-cod.php:103 -msgid "Pay with cash upon delivery." -msgstr "Maksu toimituksen yhteydessä." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:100 -msgid "Instructions" -msgstr "Ohjeet" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:102 -msgid "Instructions that will be added to the thank you page." -msgstr "Ohjeet jotka lisätään Kiitos-sivulle." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:106 -msgid "Enable for shipping methods" -msgstr "Ota käyttöön toimitustavoille" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:111 -msgid "" -"If COD is only available for certain methods, set it up here. Leave blank to " -"enable for all methods." -msgstr "" -"Tässä kohdistetaan 'Maksu toimitettaessa' -toimitustapa vain tietyille " -"toimitustavoille. Kun tyhjä, käytössä kaikille tavoille." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:176 -msgid "Payment to be made upon delivery." -msgstr "" -"Maksu toimituksen yhteydessä. Hyväksytään käteinen, mielellään tasaraha, " -"maksukortit: aa, bb, cc, jne." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:31 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:168 -msgid "Mijireh Checkout" -msgstr "Mijireh Checkout" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:108 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:293 -msgid "Mijireh error:" -msgstr "Mijireh virhe:" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:132 -msgid "Enable Mijireh Checkout" -msgstr "Ota käyttöön Mijireh Checkout -maksutapa." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:136 -msgid "Access Key" -msgstr "Pääsyavain (Access Key)." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:138 -msgid "The Mijireh access key for your store." -msgstr "Mijireh palvelusta saatu 'Access key' tälle verkkokaupalle." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:146 -msgid "Credit Card" -msgstr "Luottokortti" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:152 -msgid "Pay securely with your credit card." -msgstr "Maksa turvallisesti luottokortilla." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:153 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:135 -msgid "This controls the description which the user sees during checkout." -msgstr "Maksutavan kuvaus jonka asiakas näkee kassalla." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:172 -msgid "Get started with Mijireh Checkout" -msgstr "Tutustu Mijireh Checkout -palveluun" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:173 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site. Mijireh supports a wide variety of payment gateways: Stripe, " -"Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and more." -msgstr "" -"tarjoaa 'PCI Compliant' edellytykset täyttävän (PCI Compliant, PCI " -"DSS=Payment Card Industry Data Security Standard) tavan ottaa vastaan ja " -"siirtää luottokortin tiedot maksukäytävään JA hallita maksussa käytetyn " -"sivun ulkoasua. Mijireh tukee useita maksukäytäviä: Stripe, Authorize.net, " -"PayPal, eWay, SagePay, Braintree, PayLeap, jne." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:175 -msgid "Join for free" -msgstr "Liity maksutta" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:175 -msgid "Learn more about WooCommerce and Mijireh" -msgstr "Lue lisää WooCommerce ja Mijireh" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:179 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site." -msgstr "" -"tarjoaa 'PCI Compliant' edellytykset täyttävän tavan ottaa vastaan ja " -"siirtää luottokortin tiedot maksukäytävään JA hallita maksussa käytetyn " -"sivun ulkoasua." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:34 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:129 -msgid "PayPal" -msgstr "PayPal" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:91 -msgid "PayPal standard" -msgstr "PayPal Standard" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:92 -msgid "" -"PayPal standard works by sending the user to PayPal to enter their payment " -"information." -msgstr "" -"Maksu suoritetaan PayPal Standard -maksukäytävän kautta. Asiakas voi maksaa " -"luottokortilla tai PayPal-tililtä. Asiakas siirtyy PayPal'in sivulle " -"maksamaan. Sivu on useilla kielillä (esim. englanti) mutta ei suomeksi." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:104 -msgid "Gateway Disabled" -msgstr "Maksukäytävä ei ole käytössä" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:104 -msgid "PayPal does not support your store currency." -msgstr "PayPal ei tue verkkokauppasi käyttämää valuuttaa." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:122 -msgid "Enable PayPal standard" -msgstr "Ota käyttöön PayPal Standard -maksutapa" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:136 -msgid "" -"Pay via PayPal; you can pay with your credit card if you don't have a PayPal " -"account" -msgstr "" -"Maksu PayPal-palvelussa. Voit maksaa luottokortilla, PayPal-tiliä ei " -"tarvita. Voit myös maksaa PayPal-tililtäsi." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:139 -msgid "PayPal Email" -msgstr "PayPal-sähköposti" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:141 -msgid "" -"Please enter your PayPal email address; this is needed in order to take " -"payment." -msgstr "" -"Syötä PayPal-tilisi sähköpostiosoite; tämä tarvitaan maksun " -"vastaanottamiseen." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:147 -msgid "Receiver Email" -msgstr "Vastaanotto s-postiosoite" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:149 -msgid "" -"If this differs from the email entered above, input your main receiver email " -"for your PayPal account. This is used to validate IPN requests." -msgstr "" -"Jos tämä poikkeaa yllä annetusta s-postiosoitteesta, kirjoita PayPal-tilin " -"viestien vastaanottamiseen käytettävä sähköpostiosoite. Käytetään IPN-" -"viestien todentamiseen." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:155 -msgid "Invoice Prefix" -msgstr "Maksun etuliite" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:157 -msgid "" -"Please enter a prefix for your invoice numbers. If you use your PayPal " -"account for multiple stores ensure this prefix is unique as PayPal will not " -"allow orders with the same invoice number." -msgstr "" -"Aseta etuliite laskuille. Jos myyt usean verkkokaupan kautta ja maksut " -"ohjataan samalle PayPal-tilille niin varmista että etuliite on toisista " -"poikkeava. PayPal ei salli laskuja joilla on sama numero. " - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:162 -msgid "Submission method" -msgstr "Lähetystapa" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:164 -msgid "Use form submission method." -msgstr "Käytä lomake (Form submission) -lähetystapaa." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:165 -msgid "" -"Enable this to post order data to PayPal via a form instead of using a " -"redirect/querystring." -msgstr "" -"Ota tämä käyttöön jos tiedot siirretään PayPal-palveluun lomakkeella eikä " -"edelleenohjauksella/verkko-osoitepolussa (redirect/querystring)." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:169 -msgid "Page Style" -msgstr "Sivun tyyli" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:171 -msgid "" -"Optionally enter the name of the page style you wish to use. These are " -"defined within your PayPal account." -msgstr "" -"Kirjoita sen sivun tyyli jota käytetään. Ne ovat PayPal-tilissä. Valinnainen." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:174 -msgid "Optional" -msgstr "Valinnainen" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:177 -msgid "Shipping options" -msgstr "Toimitustapa valinnat" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:182 -msgid "Shipping details" -msgstr "Toimituksen tiedot" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:184 -msgid "Send shipping details to PayPal instead of billing." -msgstr "Lähetä toimitustiedot PayPal-palveluun, ei laskutustietoja." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:186 -msgid "" -"PayPal allows us to send 1 address. If you are using PayPal for shipping " -"labels you may prefer to send the shipping address rather than billing." -msgstr "" -"PayPal sallii vain yhden (1) osoitteen. Jos osoitelaput tulostetaan PayPal-" -"palvelussa, voi toimitusosoitteen lähettäminen olla tarpeen." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:190 -msgid "Address override" -msgstr "Osoitteen korvaaminen" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:192 -msgid "" -"Enable \"address_override\" to prevent address information from being " -"changed." -msgstr "" -"Ota käyttöön 'Osoitteen korvaamattomuus' (address_override) jolla estetään " -"osoitetietojen muuttaminen." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:193 -msgid "" -"PayPal verifies addresses therefore this setting can cause errors (we " -"recommend keeping it disabled)." -msgstr "" -"PayPal tarkastaa osoitteet ja siksi tämä asetus voi tuottaa virheitä. " -"Suositus: ei oteta käyttöön." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:197 -msgid "Gateway Testing" -msgstr "Maksukäytävän testaaminen" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:202 -msgid "PayPal sandbox" -msgstr "PayPal-hiekkalaatikko" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:204 -msgid "Enable PayPal sandbox" -msgstr "Ota käyttöön PayPal sandbox (hiekkalaatikko)" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:206 -msgid "" -"PayPal sandbox can be used to test payments. Sign up for a developer account " -"here." -msgstr "" -"PayPal sandbox (hiekkalaatikko) -palvelua voi käyttää toimivuuden kokeiluun. " -"Kehittäjän tilin (developer account) voi avata täällä." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:209 -msgid "Debug Log" -msgstr "Testaustilan loki" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:211 -msgid "Enable logging" -msgstr "Ota käyttöön loki" - -# @ default -#: classes/gateways/paypal/class-wc-gateway-paypal.php:213 -msgid "" -"Log PayPal events, such as IPN requests, inside woocommerce/logs/" -"paypal-%s.txt" -msgstr "" -"Kirjaa PayPal-tapahtumat, kuten IPN-viestit tähän tiedostoon: " -"woocommerce/logs/paypal-%s.txt" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:322 -msgid "Order %s" -msgstr "Järjestä %s" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:332 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:386 -msgid "Shipping via" -msgstr "Toimitustapa" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:427 -msgid "" -"Thank you for your order. We are now redirecting you to PayPal to make " -"payment." -msgstr "Kiitos tilauksestasi! Ohjaamme sinut nyt PayPaliin maksamista varten." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:450 -msgid "Pay via PayPal" -msgstr "Maksa PayPal-pavelun kautta" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:450 -msgid "Cancel order & restore cart" -msgstr "Peruuta tilaus & palauta ostoskori" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:504 -msgid "" -"Thank you for your order, please click the button below to pay with PayPal." -msgstr "" -"Kiitos tilauksestasi! Maksa painamalla alla olevaa painiketta - käyt " -"PayPal'in sivulla." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:649 -msgid "Validation error: PayPal amounts do not match (gross %s)." -msgstr "Tarkastusvirhe: PayPal-summat eivät täsmää (brutto %s)" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:660 -msgid "" -"Validation error: PayPal IPN response from a different email address (%s)." -msgstr "" -"Tarkastusvirhe: PayPal-IPN-vastausviesti eri sähköpostiosoitteesta (%s)." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:678 -msgid "IPN payment completed" -msgstr "IPN-viesti: maksu suoritettu" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:681 -msgid "Payment pending: %s" -msgstr "Maksua odotetaan: %s" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:693 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:701 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:718 -msgid "Payment %s via IPN." -msgstr "Maksu %s PayPalin IPN-viesti" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:706 -msgid "Order refunded/reversed" -msgstr "Tilaus hyvitetty/peruutettu" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:707 -msgid "Order %s has been marked as refunded - PayPal reason code: %s" -msgstr "" -"Tilaus %s on merkitty hyvitetyksi (takaisin asiakkaalle) – PayPal-" -"selityskoodi: %s" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:710 -msgid "Payment for order %s refunded/reversed" -msgstr "Tilauksen %s maksu on hyvitetty/peruutettu" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:723 -msgid "Order reversed" -msgstr "Tilaus peruutettu" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:724 -msgid "" -"Order %s has been marked on-hold due to a reversal - PayPal reason code: %s" -msgstr "" -"Tilaus %s on merkitty odottavaksi perumisen takia – PayPal-selityskoodi: %s" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:727 -msgid "Payment for order %s reversed" -msgstr "Tilauksen %s maksu on hyvitetty/peruutettu" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:735 -msgid "Reversal Cancelled" -msgstr "Peruutus peruttu" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:736 -msgid "" -"Order %s has had a reversal cancelled. Please check the status of payment " -"and update the order status accordingly." -msgstr "" -"Tilausta %s koskeva peruutus on peruutettu. Tarkasta maksun tila ja päivitä " -"tilauksen tila vastaamaan tilannetta." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:739 -msgid "Reversal cancelled for order %s" -msgstr "Tilauksen %s peruutus on peruutettu" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:26 -msgid "Google Analytics" -msgstr "Google Analytics" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:27 -msgid "" -"Google Analytics is a free service offered by Google that generates detailed " -"statistics about the visitors to a website." -msgstr "" -"Google Analytics on Googlen ilmainen palvelu. Sen avulla voi saada " -"tilastotietoja sivustolla kävijöistä ja heidän liikkeistään sivustolla. " -"Kävijöitä ei voi tunnistaa." - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:63 -msgid "Google Analytics ID" -msgstr "Google Analytics ID" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:64 -msgid "" -"Log into your google analytics account to find your ID. e.g. UA-XXXXX-" -"X" -msgstr "" -"Etsi Google Analytics tilistäsi sen ID-numero. Esim. UA-XXXXX-X. Syötä se kenttään." - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:69 -msgid "Set Domain Name" -msgstr "Aseta verkkotunnus" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:70 -msgid "" -"(Optional) Sets the _setDomainName variable. See " -"here for more information." -msgstr "" -"(Valinnainen) Asettaa _setDomainName muuttujan. Lisätietoja täällä." - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:75 -msgid "Tracking code" -msgstr "Seurantakoodi" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:76 -msgid "" -"Add tracking code to your site's footer. You don't need to enable this if " -"using a 3rd party analytics plugin." -msgstr "" -"Seurantakoodi lisätään sivuston alatunnisteeseen. – Tätä ei tarvita jos joku " -"lisäosa on jo sijoittanut vastaavan seurantakoodin." - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:82 -msgid "Add eCommerce tracking code to the thankyou page" -msgstr "Lisää eCommerce-seurantakoodi Kiitos-sivulle" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:88 -msgid "Add event tracking code for add to cart actions" -msgstr "Lisää tapahtumanseurantakoodi 'lisää ostoskoriin' tapahtumiin" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:120 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:178 -#: woocommerce-ajax.php:1654 -msgid "Guest" -msgstr "Vieras" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:214 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:271 -#: templates/single-product/meta.php:19 -msgid "SKU:" -msgstr "tuotetunnus (SKU)" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:269 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:289 -#: woocommerce.php:985 -msgid "Products" -msgstr "Tuotteet" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:290 -msgid "Add to Cart" -msgstr "Lisää ostoskoriin" - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:26 -msgid "ShareDaddy" -msgstr "ShareDaddy" - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:27 -msgid "ShareDaddy is a sharing plugin bundled with JetPack." -msgstr "ShareDaddy on 'jakamis' lisäosa joka tulee JetPack:in mukana." - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:51 -msgid "Output ShareDaddy button?" -msgstr "Näytä ShareDaddy-painike?" - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:52 -msgid "Enable this option to show the ShareDaddy button on the product page." -msgstr "Ota käyttöön ShareDaddy-painike tästä." - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:29 -msgid "ShareThis" -msgstr "ShareThis" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:30 -msgid "" -"ShareThis offers a sharing widget which will allow customers to share links " -"to products with their friends." -msgstr "" -"ShareThis vimpaimella voi jakaa tuotteen linkin kavereille ja sosiaalisiin " -"medioihin." - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:77 -msgid "ShareThis Publisher ID" -msgstr "ShareThis-julkaisijan ID" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:78 -msgid "" -"Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons on " -"product pages." -msgstr "" -"Kun syötät %1$sShareThis publisher ID%2$s kenttään, niin 'jaa' painikkeet " -"näytetään tuotesivuilla." - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:83 -msgid "ShareThis Code" -msgstr "ShareThis-koodi" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:84 -msgid "You can tweak the ShareThis code by editing this option." -msgstr "ShareThis-koodia voi muuttaa muokkaamalla tätä." - -# @ woocommerce -# @ default -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:22 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:329 -msgid "ShareYourCart" -msgstr "ShareYourCart" - -# @ woocommerce -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:23 -msgid "" -"Increase your social media exposure by 10 percent! ShareYourCart helps you " -"get more customers by motivating satisfied customers to talk with their " -"friends about your products. For help with ShareYourCart view the documentation." -msgstr "" -"Kasvata näkyvyyttä sosiaalisissa medioissa 10 prosenttia! ShareYourCart " -"auttaa uusien asiakkaiden hankinnassa koska se motivoi tyytyväisiä " -"asiakkaita kertomaan tuttavilleen tuotteista. Tutustu aiheeseen lisää täällä." - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:328 -msgid "Share your cart settings" -msgstr "Jaa ostoskorisi sisältö" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:342 -msgid "Button" -msgstr "Painike" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:343 -msgid "Customize Button" -msgstr "Mukauta painike" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:351 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:352 -msgid "Documentation" -msgstr "Ohjeet" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:33 -msgid "Setup your ShareYourCart account" -msgstr "Tee (setup) ShareYourCart-tili" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Create an account" -msgstr "Luo tili" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Can't access your account?" -msgstr "Etkö voi käyttää tiliäsi?" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:100 -msgid "Configure" -msgstr "Muokkaa asetuksia" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:110 -#: classes/integrations/shareyourcart/views/button-settings-page.php:120 -msgid "Save changes" -msgstr "Tallenna muutokset" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/button-settings-page.php:8 -#: classes/integrations/shareyourcart/views/button-settings-page.php:11 -msgid "Button style" -msgstr "Painikkeen tyyli" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:25 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:85 -msgid "Flat Rate" -msgstr "Kiinteä toimituskulu" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:27 -msgid "Flat rates let you define a standard rate per item, or per order." -msgstr "" -"Kun kiinteä toimituskulu, sen voi laskea kohdistettuna koko tilaukselle tai " -"kohdistettuna erikseen jokaiselle tuotteelle tai toimitusluokalle." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:78 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:52 -msgid "Enable this shipping method" -msgstr "Ota käyttöön tämä toimitustapa" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:82 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:81 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:56 -msgid "Method Title" -msgstr "Toimitustavan otsikko" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:89 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:63 -msgid "Availability" -msgstr "Saatavuus" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:93 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:148 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:102 -msgid "All allowed countries" -msgstr "Kaikkiin maihin" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:95 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:99 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:98 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:149 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:153 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:103 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:107 -msgid "Specific Countries" -msgstr "Määritellyt maat" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:107 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:81 -msgid "Tax Status" -msgstr "Verotus" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:111 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:85 -msgid "Taxable" -msgstr "Verotettava" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:112 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:86 -msgid "None" -msgstr "Ei mitään" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:116 -msgid "Cost per order" -msgstr "Hinta/tilaus" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:122 -msgid "" -"Enter a cost (excluding tax) per order, e.g. 5.00. Leave blank to disable." -msgstr "Aseta hinta / tilaus (ilman veroa), esim. 5,00. Kun tyhjä, ei käytetä." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:128 -msgid "Additional Rates" -msgstr "Muut toimitusvalinnat" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:130 -msgid "" -"Optional extra shipping options with additional costs (one per line): Option " -"Name | Additional Cost | Per Cost Type (order, class, or item) Example: " -"Priority Mail | 6.95 | order." -msgstr "" -"Valinnainen: muut toimitusvalinnat ja niiden hinnat, kukin omalle riville: " -"Toimitusvalinnan nimi | Lisähinta | Hinnan kohdistus (tilaus, luokka, tai " -"tuote). Esimerkki: Kirje 500g, 1.luokka | 3.00 | order. Suom. " -"huom. ei ole kokeiltu onko suomi korvattava englannilla: tilaus=>order; " -"luokka=>class; tuote=>item" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:133 -msgid "Option Name | Additional Cost | Per Cost Type (order, class, or item)" -msgstr "" -"Toimitusvalinnan nimi | Lisähinta | Hinnan kohdistus (tilaus, luokka tai " -"tuote)." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:136 -msgid "Additional Costs" -msgstr "Lisämaksut" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:138 -msgid "" -"Additional costs can be added below - these will all be added to the per-" -"order cost above." -msgstr "" -"Lisämaksuja voi lisätä tässä. Nämä kaikki lisätään tilauskohtaiseen hintaan " -"(joka asetetaan yllä)." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:141 -msgid "Costs Added..." -msgstr "Lisämaksut kohdistetaan..." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:145 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:94 -msgid "Per Order - charge shipping for the entire order as a whole" -msgstr "Koko tilaus – laske toimituskulut (könttänä) koko tilaukselle" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:146 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:95 -msgid "Per Item - charge shipping for each item individually" -msgstr "" -"Tuote kerrallaan – laske toimituskulu tilauksen jokaiselle tuotteelle " -"erikseen" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:147 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:96 -msgid "Per Class - charge shipping for each shipping class in an order" -msgstr "" -"Toimitusluokka kerrallaan – laske toimituskulu jokaiselle toimitusluokalle " -"erikseen" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:154 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:120 -msgid "Minimum Handling Fee" -msgstr "Pienin käsittelymaksu" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:160 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:126 -msgid "" -"Enter a minimum fee amount. Fee's less than this will be increased. Leave " -"blank to disable." -msgstr "" -"Kirjoita pienin veloitettava maksu. Tätä pienemmät korotetaan. Kun tyhjä, ei " -"käytetä." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:479 -msgid "Costs" -msgstr "Maksut" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:485 -#: woocommerce.php:891 -msgid "Shipping Class" -msgstr "Toimitusluokka" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:486 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:100 -msgid "Cost" -msgstr "Hinta" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:486 -msgid "Cost, excluding tax." -msgstr "Toimituskulu ilman veroja." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:487 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:112 -msgid "Handling Fee" -msgstr "Käsittelykulut" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:487 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -msgstr "Kulut ilman veroja. Syötä määrä, esim. 2.50, tai prosentti, esim. 5%." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:492 -msgid "+ Add Cost" -msgstr "+ Lisää maksu" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:492 -msgid "Delete selected costs" -msgstr "Poista valitut maksut" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:498 -msgid "Any class" -msgstr "Mikä tahansa luokka" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:499 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:500 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:110 -#: templates/order/order-details.php:119 templates/order/order-details.php:134 -msgid "N/A" -msgstr "Ei saatavilla/-tietoa" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:518 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:548 -msgid "Select a class…" -msgstr "Valitse toimitusluokka..." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:523 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:524 -msgid "0.00" -msgstr "0.00" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:562 -msgid "Delete the selected rates?" -msgstr "Poistetaanko valitut veroluokat?" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:25 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:145 -msgid "Free Shipping" -msgstr "Maksuton toimitus" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:77 -msgid "Enable Free Shipping" -msgstr "Ota käyttöön tämä toimitustapa" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:88 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:143 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:97 -msgid "Method availability" -msgstr "Toimitustapa käytettävissä" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:106 -msgid "Free Shipping Requires..." -msgstr "Maksuton toimitus edellyttää" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:111 -msgid "A valid free shipping coupon" -msgstr "Kelvollinen 'Maksuton toimitus' -kuponki" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:112 -msgid "A minimum order amount (defined below)" -msgstr "Pienin hyväksyttävä tilaus (asetettu alla)" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:113 -msgid "A minimum order amount OR a coupon" -msgstr "Pienin hyväksyttävä tilaus TAI kuponki" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:114 -msgid "A minimum order amount AND a coupon" -msgstr "Pienin hyväksyttävä tilaus JA kuponki" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:118 -msgid "Minimum Order Amount" -msgstr "Pienin hyväksyttävä tilaus (€)" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:124 -msgid "" -"Users will need to spend this amount to get free shipping (if enabled above)." -msgstr "" -"Maksuton toimitus vain silloin kun asiakkaan tilaus on vähintään näin suuri " -"(jos otettu käyttöön yllä)." - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:29 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:59 -msgid "International Delivery" -msgstr "Kansainvälinen toimitus" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:30 -msgid "International delivery based on flat rate shipping." -msgstr "" -"Kiinteä toimituskulu muihin maihin. Eri maihin voi asettaa eri hinnan, jne." - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:68 -msgid "Selected countries" -msgstr "Kaikkiin valittuihin maihin" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:69 -msgid "Excluding selected countries" -msgstr "Muihin paitsi valittuihin maihin" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:73 -msgid "Countries" -msgstr "Maat" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:90 -msgid "Cost Added..." -msgstr "Lisämaksut kohdistetaan..." - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:106 -msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -msgstr "Toimituskulu ilman veroja. Syötä määrä, esim. 2.50 (€)." - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:114 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. " -"Leave blank to disable." -msgstr "" -"Hinta ilman veroja. Syötä määrä, esim. 2.50 tai prosentti, esim. 5%. Jos " -"tyhjä, ei käytetä." - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:25 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:107 -msgid "Local Delivery" -msgstr "Toimitus lähialueelle" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:98 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:76 -msgid "Enable" -msgstr "Ota käyttöön" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:100 -msgid "Enable local delivery" -msgstr "Ota käyttöön tämä toimitustapa" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:111 -msgid "Fee Type" -msgstr "Laskeminen" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:113 -msgid "How to calculate delivery charges" -msgstr "Kuinka toimitusmaksu lasketaan" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 -msgid "Fixed amount" -msgstr "Kiinteä maksu" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:117 -msgid "Percentage of cart total" -msgstr "Prosenttiosuus ostoskorin kokonaismäärästä" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:118 -msgid "Fixed amount per product" -msgstr "Kiinteä maksu jokaisesta tuotteesta" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:123 -msgid "Delivery Fee" -msgstr "Toimitusmaksu" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:129 -msgid "" -"What fee do you want to charge for local delivery, disregarded if you choose " -"free. Leave blank to disable." -msgstr "" -"Kirjoita lähialueelle toimituksesta valoitettava hinta. Ei huomioida jos " -"maksuton toimitus. Kun tyhjä, ei käytetä." - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:135 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:89 -msgid "Zip/Post Codes" -msgstr "Postinumerot" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:137 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:91 -msgid "" -"What zip/post codes would you like to offer delivery to? Separate codes with " -"a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -msgstr "" -"Luettele postinumerot, joiden alueelle 'Toimitus lähialueelle' on " -"mahdollinen. Erota pilkulla. Jokerimerkit hyväksytään, esim. P* hyväksyy " -"PE30, jne." - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:172 -msgid "" -"Local delivery is a simple shipping method for delivering orders locally." -msgstr "" -"Toimitus lähialueelle voi olla miellyttävä ja edullinen palvelu asiakkaalle " -"joka toimii esim. samassa kaupungissa." - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:25 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:85 -msgid "Local Pickup" -msgstr "Nouto" - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:78 -msgid "Enable local pickup" -msgstr "Ota käyttöön tämä toimitustapa" - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:126 -msgid "" -"Local pickup is a simple method which allows the customer to pick up their " -"order themselves." -msgstr "" -"Nouto voi olla miellyttävä ja edullinen palvelu asiakkaalle joka haluaa " -"tuotteet viivytyksettä ja kykenee noutamaan tuotteet." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-cart.php:53 -#: woocommerce-functions.php:1713 -msgid "Please enter a valid postcode/ZIP." -msgstr "Syötä kelvollinen postinumero." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-cart.php:64 -#: classes/shortcodes/class-wc-shortcode-cart.php:70 -msgid "Shipping costs updated." -msgstr "Toimituskulut päivitetty." - -#: classes/shortcodes/class-wc-shortcode-checkout.php:45 -msgid "" -"WooCommerce Config Error: The checkout thanks/pay pages are missing - these " -"pages are required for the checkout to function correctly. Please configure " -"the pages here." -msgstr "" -"WooCommercen asetuksissa virhe: Kassan kiitos/maksu sivut puuttuvat – nämä " -"sivut tarvitaan jotta kassa toiminto toimii oikein. Tee tarvittavat " -"asetukset täällä." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-checkout.php:73 -msgid "" -"The order totals have been updated. Please confirm your order by pressing " -"the Place Order button at the bottom of the page." -msgstr "" -"Tilauksen loppusummat päivitetty. Tee tilaus painamalla Lähetä tilaus -" -"painiketta sivun alaosassa." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:78 -#: woocommerce-functions.php:1635 -msgid "Please enter your password." -msgstr "Anna salasana, ole hyvä." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:93 -msgid "Your password has been reset." -msgstr "Salasana on palautettu" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:93 -msgid "Log in" -msgstr "Kirjaudu sisään" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:114 -msgid "Enter a username or e-mail address." -msgstr "" -"Kirjoita käyttäjätunnus tai sähköpostiosoite (jolla on rekisteröidytty)." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:121 -msgid "There is no user registered with that email address." -msgstr "Annettu sähköposti ei ole liitetty kenenkään asiakastietoihin." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:136 -msgid "Invalid username or e-mail." -msgstr "Käyttäjätunnus tai sähköposti ei kelpaa." - -# @ default -#: classes/shortcodes/class-wc-shortcode-lost-password.php:150 -msgid "Password reset is not allowed for this user" -msgstr "Salasanaa ei voi palauttaa tälle käyttäjälle." - -# @ default -#: classes/shortcodes/class-wc-shortcode-lost-password.php:178 -msgid "Check your e-mail for the confirmation link." -msgstr "Katso saapuneet sähköpostit. Paina vahvistuslinkkiä." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:198 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:203 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:210 -msgid "Invalid key" -msgstr "Avain ei kelpaa" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:51 -msgid "Please enter a valid order ID" -msgstr "Kirjoita kelvollinen tilausnumero (ID)" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:55 -msgid "Please enter a valid order email" -msgstr "Kirjoita kelvollinen tilauksen sähköpostiosoite" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:74 -msgid "Sorry, we could not find that order id in our database." -msgstr "Pahoittelemme. Tilausnumeroa ei löytynyt tietokannasta." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:64 -#: classes/shortcodes/class-wc-shortcode-pay.php:118 -msgid "" -"Your order has already been paid for. Please contact us if you need " -"assistance." -msgstr "" -"Tilaus on jo maksettu. Epäselvässä tapauksessa ota meihin yhteyttä, " -"selvitämme asian." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:69 -#: classes/shortcodes/class-wc-shortcode-pay.php:125 -#: classes/shortcodes/class-wc-shortcode-view-order.php:51 -#: woocommerce-functions.php:917 woocommerce-functions.php:997 -msgid "Invalid order." -msgstr "Tilaus ei kelpaa." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:90 -#: templates/checkout/thankyou.php:40 -#: templates/emails/customer-completed-order.php:18 -#: templates/emails/customer-invoice.php:22 -#: templates/emails/customer-note.php:22 -#: templates/emails/customer-processing-order.php:18 -msgid "Order:" -msgstr "Tilaus:" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:94 -#: templates/checkout/thankyou.php:44 -msgid "Date:" -msgstr "Päivämäärä:" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:98 -#: templates/checkout/thankyou.php:48 -msgid "Total:" -msgstr "Yhteensä:" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:103 -#: templates/checkout/thankyou.php:53 -msgid "Payment method:" -msgstr "Maksutapa:" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:51 -msgid "My Account →" -msgstr "Oma tili →" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:58 -msgid "" -"Order %s made on %s" -msgstr "" -"Tilaus %sjoka luotu %s" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:59 -msgid "Order status: %s" -msgstr "Tilauksen tila: %s" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:65 -#: templates/order/tracking.php:31 -msgid "Order Updates" -msgstr "Tilauksen päivitykset" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:71 -#: templates/order/tracking.php:37 -msgid "l jS \\o\\f F Y, h:ia" -msgstr "l j. F Y H:i:s" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:31 -msgid "Display a list of your best selling products on your site." -msgstr "Näytä eniten myytyjen tuotteiden lista." - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:33 -msgid "WooCommerce Best Sellers" -msgstr "WooCommercen Eniten myydyt" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:71 -msgid "Best Sellers" -msgstr "Eniten myydyt" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:191 -#: classes/widgets/class-wc-widget-cart.php:109 -#: classes/widgets/class-wc-widget-featured-products.php:169 -#: classes/widgets/class-wc-widget-layered-nav.php:352 -#: classes/widgets/class-wc-widget-onsale.php:178 -#: classes/widgets/class-wc-widget-price-filter.php:183 -#: classes/widgets/class-wc-widget-product-categories.php:185 -#: classes/widgets/class-wc-widget-product-search.php:91 -#: classes/widgets/class-wc-widget-product-tag-cloud.php:101 -#: classes/widgets/class-wc-widget-random-products.php:136 -#: classes/widgets/class-wc-widget-recent-products.php:172 -#: classes/widgets/class-wc-widget-recent-reviews.php:159 -#: classes/widgets/class-wc-widget-recently-viewed.php:168 -#: classes/widgets/class-wc-widget-top-rated-products.php:156 -msgid "Title:" -msgstr "Otsikko:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:194 -#: classes/widgets/class-wc-widget-featured-products.php:172 -#: classes/widgets/class-wc-widget-onsale.php:181 -#: classes/widgets/class-wc-widget-random-products.php:141 -#: classes/widgets/class-wc-widget-recent-products.php:175 -#: classes/widgets/class-wc-widget-recent-reviews.php:162 -#: classes/widgets/class-wc-widget-recently-viewed.php:171 -#: classes/widgets/class-wc-widget-top-rated-products.php:159 -msgid "Number of products to show:" -msgstr "Näytetään tuotteita kpl:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:198 -msgid "Hide free products" -msgstr "Piilota maksuttomat tuotteet" - -# @ woocommerce -#: classes/widgets/class-wc-widget-cart.php:33 -msgid "Display the user's Cart in the sidebar." -msgstr "Näytä käyttäjän ostoskori sivupalkissa." - -# @ woocommerce -#: classes/widgets/class-wc-widget-cart.php:35 -msgid "WooCommerce Cart" -msgstr "WooCommercen Ostoskori" - -# @ woocommerce -#: classes/widgets/class-wc-widget-cart.php:113 -msgid "Hide if cart is empty" -msgstr "Piilota ostoskori jos tyhjä" - -# @ woocommerce -#: classes/widgets/class-wc-widget-featured-products.php:35 -msgid "Display a list of featured products on your site." -msgstr "Näytä esittelyssä olevien tuotteiden lista." - -# @ woocommerce -#: classes/widgets/class-wc-widget-featured-products.php:37 -msgid "WooCommerce Featured Products" -msgstr "WooCommercen Esitelyssä tuotteet" - -# @ woocommerce -#: classes/widgets/class-wc-widget-featured-products.php:75 -msgid "Featured Products" -msgstr "Esitelyssä olevat tuotteet" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:31 -msgid "Shows active layered nav filters so users can see and deactivate them." -msgstr "" -"Näyttää 'Ominaisuuksilla haku' -vimpaimen käytössä olevat suodattimet. " -"Käyttäjä voi silloin ottaa suodattimen pois käytöstä." - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:33 -msgid "WooCommerce Layered Nav Filters" -msgstr "WooCommerce 'Omin. haku' -suodattimet" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:62 -msgid "Active filters" -msgstr "Käytössä suodattimet" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:93 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Remove filter" -msgstr "Poista suodatin" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -msgid "Min" -msgstr "Min" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Max" -msgstr "Max" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:31 -msgid "" -"Shows a custom attribute in a widget which lets you narrow down the list of " -"products when viewing product categories." -msgstr "" -"Mukautetut ominaisuudet näytetään vimpaimessa jonka tehtävä on rajata hakua " -"tuotteen ominaisuuksien pohjalta, kun selataan osastoa." - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:33 -msgid "WooCommerce Layered Nav" -msgstr "WooCommercen Ominaisuuksilla haku" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:100 -msgid "Any %s" -msgstr "Mikä tahansa %s" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:355 -msgid "Attribute:" -msgstr "Ominaisuus:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:366 -msgid "Display Type:" -msgstr "Esitystapa:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:368 -msgid "List" -msgstr "Lista" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:369 -msgid "Dropdown" -msgstr "Pudotusvalikko" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:372 -msgid "Query Type:" -msgstr "Kyselyn tapa:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:374 -msgid "AND" -msgstr "JA" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:375 -msgid "OR" -msgstr "TAI" - -# @ woocommerce -#: classes/widgets/class-wc-widget-onsale.php:31 -msgid "Display a list of your on-sale products on your site." -msgstr "Näytä alennettujen tuotteiden lista." - -# @ woocommerce -#: classes/widgets/class-wc-widget-onsale.php:33 -msgid "WooCommerce On-sale" -msgstr "WooCommercen Alennusmyynti" - -# @ woocommerce -#: classes/widgets/class-wc-widget-onsale.php:70 -msgid "On Sale" -msgstr "Alennuksessa" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:33 -msgid "" -"Shows a price filter slider in a widget which lets you narrow down the list " -"of shown products when viewing product categories." -msgstr "" -"Liukusäädin näytetään vimpaimessa jonka avulla on mahdollista rajata " -"tuotteita hinnan mukaan, kun selataan osastoa." - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:35 -msgid "WooCommerce Price Filter" -msgstr "WooCommercen Hintahaarukka" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:140 -msgid "Min price" -msgstr "Minimihinta" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:141 -msgid "Max price" -msgstr "Maksimihinta" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:142 -msgid "Filter" -msgstr "Suodatin" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:144 -msgid "Price:" -msgstr "Hinta:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:166 -msgid "Filter by price" -msgstr "Etsi hinnan mukaan" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:33 -msgid "A list or dropdown of product categories." -msgstr "Osastojen lista tai pudotusvalikko" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:35 -msgid "WooCommerce Product Categories" -msgstr "WooCommercen Osastot" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:57 -#: woocommerce.php:821 woocommerce.php:823 -msgid "Product Categories" -msgstr "Osastot" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:129 -msgid "No product categories exist." -msgstr "Osastoja ei ole asetettu" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:188 -msgid "Order by:" -msgstr "Järjestä:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:190 -msgid "Category Order" -msgstr "Osastojen järjestys" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:191 -#: templates/single-product-reviews.php:84 woocommerce-ajax.php:1175 -msgid "Name" -msgstr "Nimi" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:195 -msgid "Show as dropdown" -msgstr "Näytä pudotusvalikkona" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:198 -msgid "Show post counts" -msgstr "Näytä 'osastossa on' (kpl)" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:201 -msgid "Show hierarchy" -msgstr "Näytä hierarkia" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:204 -msgid "Only show children for the current category" -msgstr "Näytä alempi taso vain valitulle osastolle" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-search.php:31 -msgid "A Search box for products only." -msgstr "Kenttä tuotteiden etsimistä varten." - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-search.php:33 -msgid "WooCommerce Product Search" -msgstr "WooCommercen Tuotehaku" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-tag-cloud.php:31 -msgid "Your most used product tags in cloud format." -msgstr "Eniten käytetyt (tuote)avainsanat, esitys pilvenä." - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-tag-cloud.php:33 -msgid "WooCommerce Product Tags" -msgstr "WooCommercen Tuoteavainsanat" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-tag-cloud.php:58 -#: woocommerce.php:857 woocommerce.php:859 -msgid "Product Tags" -msgstr "Avainsanat tuotteelle" - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:24 -msgid "WooCommerce Random Products" -msgstr "WooCommercen Satunnaiset tuotteet" - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:27 -msgid "Display a list of random products on your site." -msgstr "Näytä satunnaisesti valittuja tuotteita." - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:46 -msgid "Random Products" -msgstr "Satunnaiset tuotteet" - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:147 -#: classes/widgets/class-wc-widget-recent-products.php:179 -msgid "Show hidden product variations" -msgstr "Näytä piilotetut (tuote)muunnelmat" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-products.php:31 -msgid "Display a list of your most recent products on your site." -msgstr "Näytä viimeksi lisättyjen tuotteiden lista." - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-products.php:33 -msgid "WooCommerce Recent Products" -msgstr "WooCommercen Uudet tuotteet" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-products.php:70 -msgid "New Products" -msgstr "Uudet tuotteet" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:31 -msgid "Display a list of your most recent reviews on your site." -msgstr "Näytä tuoreimmat tuotearviot lista." - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:33 -msgid "WooCommerce Recent Reviews" -msgstr "WooCommercen Uudet tuotearviot" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:71 -msgid "Recent Reviews" -msgstr "Tuoreimmat tuotearviot" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:97 -msgctxt "by comment author" -msgid "by %1$s" -msgstr "kirjoittaja %1$s" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recently-viewed.php:31 -msgid "Display a list of recently viewed products." -msgstr "Näytä viimeksi katsotut tuotteet lista." - -# @ woocommerce -#: classes/widgets/class-wc-widget-recently-viewed.php:33 -msgid "WooCommerce Recently Viewed Products" -msgstr "WooCommercen Viimeksi katsotut tuotteet" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recently-viewed.php:76 -msgid "Recently viewed" -msgstr "Viimeksi katsotut" - -# @ woocommerce -#: classes/widgets/class-wc-widget-top-rated-products.php:33 -msgid "Display a list of top rated products on your site." -msgstr "Näytä parhaimmiksi arvioidut tuotteet lista." - -# @ woocommerce -#: classes/widgets/class-wc-widget-top-rated-products.php:35 -msgid "WooCommerce Top Rated Products" -msgstr "WooCommercen Parhaaksi arvioidut tuotteet" - -# @ woocommerce -#: classes/widgets/class-wc-widget-top-rated-products.php:72 -msgid "Top Rated Products" -msgstr "Parhaaksi arvioidut tuotteet" - -# @ woocommerce -#: i18n/states/AU.php:13 -msgid "Australian Capital Territory" -msgstr "Australian Capital Territory" - -# @ woocommerce -#: i18n/states/AU.php:14 -msgid "New South Wales" -msgstr "New South Wales" - -# @ woocommerce -#: i18n/states/AU.php:15 -msgid "Northern Territory" -msgstr "Northern Territory" - -# @ woocommerce -#: i18n/states/AU.php:16 -msgid "Queensland" -msgstr "Queensland" - -# @ woocommerce -#: i18n/states/AU.php:17 -msgid "South Australia" -msgstr "Etelä-Australia" - -# @ woocommerce -#: i18n/states/AU.php:18 -msgid "Tasmania" -msgstr "Tasmania" - -# @ woocommerce -#: i18n/states/AU.php:19 -msgid "Victoria" -msgstr "Victoria" - -# @ woocommerce -#: i18n/states/AU.php:20 -msgid "Western Australia" -msgstr "Länsi-Australia" - -# @ woocommerce -#: i18n/states/BR.php:13 -msgid "Acre" -msgstr "Akko" - -# @ woocommerce -#: i18n/states/BR.php:14 -msgid "Alagoas" -msgstr "Alagoas" - -# @ woocommerce -#: i18n/states/BR.php:15 -msgid "Amapá" -msgstr "Amapá" - -# @ woocommerce -#: i18n/states/BR.php:16 -msgid "Amazonas" -msgstr "Amazonas" - -# @ woocommerce -#: i18n/states/BR.php:17 -msgid "Bahia" -msgstr "Bahia" - -# @ woocommerce -#: i18n/states/BR.php:18 -msgid "Ceará" -msgstr "Ceará" - -# @ woocommerce -#: i18n/states/BR.php:19 -msgid "Distrito Federal" -msgstr "Distrito Federal" - -# @ woocommerce -#: i18n/states/BR.php:20 -msgid "Espírito Santo" -msgstr "Espirito Santo" - -# @ woocommerce -#: i18n/states/BR.php:21 -msgid "Goiás" -msgstr "Goiás" - -# @ woocommerce -#: i18n/states/BR.php:22 -msgid "Maranhão" -msgstr "Maranhão" - -# @ woocommerce -#: i18n/states/BR.php:23 -msgid "Mato Grosso" -msgstr "Mato Grosso" - -# @ woocommerce -#: i18n/states/BR.php:24 -msgid "Mato Grosso do Sul" -msgstr "Mato Grosso do Sul" - -# @ woocommerce -#: i18n/states/BR.php:25 -msgid "Minas Gerais" -msgstr "Minas Gerais" - -# @ woocommerce -#: i18n/states/BR.php:26 -msgid "Pará" -msgstr "Pará" - -# @ woocommerce -#: i18n/states/BR.php:27 -msgid "Paraíba" -msgstr "Paraíba" - -# @ woocommerce -#: i18n/states/BR.php:28 -msgid "Paraná" -msgstr "Paraná" - -# @ woocommerce -#: i18n/states/BR.php:29 -msgid "Pernambuco" -msgstr "Pernambuco" - -# @ woocommerce -#: i18n/states/BR.php:30 -msgid "Piauí" -msgstr "Piauí" - -# @ woocommerce -#: i18n/states/BR.php:31 -msgid "Rio de Janeiro" -msgstr "Rio de Janeiro" - -# @ woocommerce -#: i18n/states/BR.php:32 -msgid "Rio Grande do Norte" -msgstr "Rio Grande do Norte" - -# @ woocommerce -#: i18n/states/BR.php:33 -msgid "Rio Grande do Sul" -msgstr "Rio Grande do Sul" - -# @ woocommerce -#: i18n/states/BR.php:34 -msgid "Rondônia" -msgstr "Rondônia" - -# @ woocommerce -#: i18n/states/BR.php:35 -msgid "Roraima" -msgstr "Roraima" - -# @ woocommerce -#: i18n/states/BR.php:36 -msgid "Santa Catarina" -msgstr "Santa Catarin" - -# @ woocommerce -#: i18n/states/BR.php:37 -msgid "São Paulo" -msgstr "São Paulo" - -# @ woocommerce -#: i18n/states/BR.php:38 -msgid "Sergipe" -msgstr "Sergipe" - -# @ woocommerce -#: i18n/states/BR.php:39 -msgid "Tocantins" -msgstr "Tocantins" - -# @ woocommerce -#: i18n/states/CA.php:13 -msgid "Alberta" -msgstr "Alberta" - -# @ woocommerce -#: i18n/states/CA.php:14 -msgid "British Columbia" -msgstr "British Columbia" - -# @ woocommerce -#: i18n/states/CA.php:15 -msgid "Manitoba" -msgstr "Manitoba" - -# @ woocommerce -#: i18n/states/CA.php:16 -msgid "New Brunswick" -msgstr "New Brunswick" - -# @ woocommerce -#: i18n/states/CA.php:17 -msgid "Newfoundland" -msgstr "Newfoundland" - -# @ woocommerce -#: i18n/states/CA.php:18 -msgid "Northwest Territories" -msgstr "Luoteisterritoriot" - -# @ woocommerce -#: i18n/states/CA.php:19 -msgid "Nova Scotia" -msgstr "Nova Scotia" - -# @ woocommerce -#: i18n/states/CA.php:20 -msgid "Nunavut" -msgstr "Nunavut" - -# @ woocommerce -#: i18n/states/CA.php:21 -msgid "Ontario" -msgstr "Ontario" - -# @ woocommerce -#: i18n/states/CA.php:22 -msgid "Prince Edward Island" -msgstr "Prince Edward Island" - -# @ woocommerce -#: i18n/states/CA.php:23 -msgid "Quebec" -msgstr "Quebec" - -# @ woocommerce -#: i18n/states/CA.php:24 -msgid "Saskatchewan" -msgstr "Saskatchewan" - -# @ woocommerce -#: i18n/states/CA.php:25 -msgid "Yukon Territory" -msgstr "Yukon" - -#: i18n/states/CN.php:13 -msgid "Yunnan / 云南" -msgstr "Yunnan / 云南" - -#: i18n/states/CN.php:14 -msgid "Beijing / 北京" -msgstr "Peking / 北京" - -#: i18n/states/CN.php:15 -msgid "Tianjin / 天津" -msgstr "Tianjin / 天津" - -#: i18n/states/CN.php:16 -msgid "Hebei / 河北" -msgstr "Hubei / 河北" - -#: i18n/states/CN.php:17 -msgid "Shanxi / 山西" -msgstr "Shanxi / 山西" - -#: i18n/states/CN.php:18 -msgid "Inner Mongolia / 內蒙古" -msgstr "Sisä-Mongolia / 內蒙古" - -#: i18n/states/CN.php:19 -msgid "Liaoning / 辽宁" -msgstr "Liaoning / 辽宁" - -#: i18n/states/CN.php:20 -msgid "Jilin / 吉林" -msgstr "Jilin / 吉林" - -#: i18n/states/CN.php:21 -msgid "Heilongjiang / 黑龙江" -msgstr "Heilongjiang / 黑龙江" - -#: i18n/states/CN.php:22 -msgid "Shanghai / 上海" -msgstr "Shanghai / 上海" - -#: i18n/states/CN.php:23 -msgid "Jiangsu / 江苏" -msgstr "Jiangsu / 江苏" - -#: i18n/states/CN.php:24 -msgid "Zhejiang / 浙江" -msgstr "Zhejiang / 浙江" - -#: i18n/states/CN.php:25 -msgid "Anhui / 安徽" -msgstr "Anhui / 安徽" - -#: i18n/states/CN.php:26 -msgid "Fujian / 福建" -msgstr "Fujian / 福建" - -#: i18n/states/CN.php:27 -msgid "Jiangxi / 江西" -msgstr "Jiangxi / 江西" - -#: i18n/states/CN.php:28 -msgid "Shandong / 山东" -msgstr "Shandong / 山东" - -#: i18n/states/CN.php:29 -msgid "Henan / 河南" -msgstr "Henan / 河南" - -#: i18n/states/CN.php:30 -msgid "Hubei / 湖北" -msgstr "Hubei / 湖北" - -#: i18n/states/CN.php:31 -msgid "Hunan / 湖南" -msgstr "Hunan / 湖南" - -#: i18n/states/CN.php:32 -msgid "Guangdong / 广东" -msgstr "Guangdong (Kanton)/ 广东" - -#: i18n/states/CN.php:33 -msgid "Guangxi Zhuang / 广西壮族" -msgstr "Guangxi / 广西壮族" - -#: i18n/states/CN.php:34 -msgid "Hainan / 海南" -msgstr "Hainan / 海南" - -#: i18n/states/CN.php:35 -msgid "Chongqing / 重庆" -msgstr "Chongqing / 重庆" - -#: i18n/states/CN.php:36 -msgid "Sichuan / 四川" -msgstr "Sichuan / 四川" - -#: i18n/states/CN.php:37 -msgid "Guizhou / 贵州" -msgstr "Guizhou / 贵州" - -#: i18n/states/CN.php:38 -msgid "Shaanxi / 陕西" -msgstr "Shaanxi / 陕西" - -#: i18n/states/CN.php:39 -msgid "Gansu / 甘肃" -msgstr "Gansu / 甘肃" - -#: i18n/states/CN.php:40 -msgid "Qinghai / 青海" -msgstr "Qinghai / 青海" - -#: i18n/states/CN.php:41 -msgid "Ningxia Hui / 宁夏" -msgstr "Ningxia / 宁夏" - -#: i18n/states/CN.php:42 -msgid "Macau / 澳门" -msgstr "Macao / 澳门" - -#: i18n/states/CN.php:43 -msgid "Tibet / 西藏" -msgstr "Tiibet / 西藏" - -#: i18n/states/CN.php:44 -msgid "Xinjiang / 新疆" -msgstr "Xinjiang / 新疆" - -#: i18n/states/ES.php:13 -msgid "A Coruña" -msgstr "A Coruña" - -# @ woocommerce -#: i18n/states/ES.php:14 -msgid "Álava" -msgstr "Álava" - -#: i18n/states/ES.php:15 -msgid "Albacete" -msgstr "Albacete" - -#: i18n/states/ES.php:16 -msgid "Alicante" -msgstr "Alicante" - -# @ woocommerce -#: i18n/states/ES.php:17 -msgid "Almería" -msgstr "Almería" - -#: i18n/states/ES.php:18 -msgid "Asturias" -msgstr "Asturias" - -# @ woocommerce -#: i18n/states/ES.php:19 -msgid "Ávila" -msgstr "Ávila" - -#: i18n/states/ES.php:20 -msgid "Badajoz" -msgstr "Badajoz" - -#: i18n/states/ES.php:21 -msgid "Baleares" -msgstr "Baleares" - -#: i18n/states/ES.php:22 -msgid "Barcelona" -msgstr "Barcelona" - -#: i18n/states/ES.php:23 -msgid "Burgos" -msgstr "Burgos" - -# @ woocommerce -#: i18n/states/ES.php:24 -msgid "Cáceres" -msgstr "Cáceres" - -# @ woocommerce -#: i18n/states/ES.php:25 -msgid "Cádiz" -msgstr "Cádiz" - -# @ woocommerce -#: i18n/states/ES.php:26 -msgid "Cantabria" -msgstr "Cantabria" - -# @ woocommerce -#: i18n/states/ES.php:27 -msgid "Castellón" -msgstr "Castellón" - -#: i18n/states/ES.php:28 -msgid "Ceuta" -msgstr "Ceuta" - -#: i18n/states/ES.php:29 -msgid "Ciudad Real" -msgstr "Ciudad Real" - -# @ woocommerce -#: i18n/states/ES.php:30 -msgid "Córdoba" -msgstr "Córdoba" - -#: i18n/states/ES.php:31 -msgid "Cuenca" -msgstr "Cuenca" - -#: i18n/states/ES.php:32 -msgid "Girona" -msgstr "Girona" - -# @ woocommerce -#: i18n/states/ES.php:33 -msgid "Granada" -msgstr "Granada" - -#: i18n/states/ES.php:34 -msgid "Guadalajara" -msgstr "Guadalajara" - -# @ woocommerce -#: i18n/states/ES.php:35 -msgid "Guipúzcoa" -msgstr "Guipúzcoa" - -#: i18n/states/ES.php:36 -msgid "Huelva" -msgstr "Huelva" - -#: i18n/states/ES.php:37 -msgid "Huesca" -msgstr "Huesca" - -# @ woocommerce -#: i18n/states/ES.php:38 -msgid "Jaén" -msgstr "Jaén" - -#: i18n/states/ES.php:39 -msgid "La Rioja" -msgstr "La Rioja" - -#: i18n/states/ES.php:40 -msgid "Las Palmas" -msgstr "Las Palmas" - -# @ woocommerce -#: i18n/states/ES.php:41 -msgid "León" -msgstr "León" - -#: i18n/states/ES.php:42 -msgid "Lleida" -msgstr "Lleida" - -#: i18n/states/ES.php:43 -msgid "Lugo" -msgstr "Lugo" - -#: i18n/states/ES.php:44 -msgid "Madrid" -msgstr "Madrid" - -# @ woocommerce -#: i18n/states/ES.php:45 -msgid "Málaga" -msgstr "Málaga" - -#: i18n/states/ES.php:46 -msgid "Melilla" -msgstr "Melilla" - -#: i18n/states/ES.php:47 -msgid "Murcia" -msgstr "Murcia" - -#: i18n/states/ES.php:48 -msgid "Navarra" -msgstr "Navarra" - -#: i18n/states/ES.php:49 -msgid "Ourense" -msgstr "Ourense" - -#: i18n/states/ES.php:50 -msgid "Palencia" -msgstr "Palencia" - -# @ woocommerce -#: i18n/states/ES.php:51 -msgid "Pontevedra" -msgstr "Pontevedra" - -#: i18n/states/ES.php:52 -msgid "Salamanca" -msgstr "Palencia" - -#: i18n/states/ES.php:53 -msgid "Santa Cruz de Tenerife" -msgstr "Santa Cruz de Tenerife" - -#: i18n/states/ES.php:54 -msgid "Segovia" -msgstr "Segovia" - -#: i18n/states/ES.php:55 -msgid "Sevilla" -msgstr "Sevilla" - -# @ woocommerce -#: i18n/states/ES.php:56 -msgid "Soria" -msgstr "Soria" - -#: i18n/states/ES.php:57 -msgid "Tarragona" -msgstr "Tarragona" - -#: i18n/states/ES.php:58 -msgid "Teruel" -msgstr "Teruel" - -#: i18n/states/ES.php:59 -msgid "Toledo" -msgstr "Toledo" - -#: i18n/states/ES.php:60 -msgid "Valencia" -msgstr "Valencia" - -#: i18n/states/ES.php:61 -msgid "Valladolid" -msgstr "Valladolid" - -#: i18n/states/ES.php:62 -msgid "Vizcaya" -msgstr "Vizcaya" - -#: i18n/states/ES.php:63 -msgid "Zamora" -msgstr "Zamora" - -# @ woocommerce -#: i18n/states/ES.php:64 -msgid "Zaragoza" -msgstr "Zaragoza" - -# @ woocommerce -#: i18n/states/HK.php:13 -msgid "Hong Kong Island" -msgstr "Hong Kong saari" - -# @ woocommerce -#: i18n/states/HK.php:14 -msgid "Kowloon" -msgstr "Kowloon" - -# @ woocommerce -#: i18n/states/HK.php:15 -msgid "New Territories" -msgstr "Uudet territoriot" - -#: i18n/states/HU.php:13 -msgid "Bács-Kiskun" -msgstr "Bács-Kiskun" - -#: i18n/states/HU.php:14 -msgid "Békés" -msgstr "Békés" - -# @ woocommerce -#: i18n/states/HU.php:15 -msgid "Baranya" -msgstr "Baranya" - -#: i18n/states/HU.php:16 -msgid "Borsod-Abaúj-Zemplén" -msgstr "Borsod-Abaúj-Zemplén" - -#: i18n/states/HU.php:17 -msgid "Budapest" -msgstr "Budapest" - -#: i18n/states/HU.php:18 -msgid "Csongrád" -msgstr "Csongrád" - -#: i18n/states/HU.php:19 -msgid "Fejér" -msgstr "Fejér" - -#: i18n/states/HU.php:20 -msgid "Győr-Moson-Sopron" -msgstr "Győr-Moson-Sopron" - -#: i18n/states/HU.php:21 -msgid "Hajdú-Bihar" -msgstr "Hajdú-Bihar" - -#: i18n/states/HU.php:22 -msgid "Heves" -msgstr "Heves" - -#: i18n/states/HU.php:23 -msgid "Jász-Nagykun-Szolnok" -msgstr "Jász-Nagykun-Szolnok" - -#: i18n/states/HU.php:24 -msgid "Komárom-Esztergom" -msgstr "Komárom-Esztergom" - -#: i18n/states/HU.php:25 -msgid "Nógrád" -msgstr "Nógrád" - -#: i18n/states/HU.php:26 -msgid "Pest" -msgstr "Pest" - -#: i18n/states/HU.php:27 -msgid "Somogy" -msgstr "Somogy" - -#: i18n/states/HU.php:28 -msgid "Szabolcs-Szatmár-Bereg" -msgstr "Szabolcs-Szatmár-Bereg" - -#: i18n/states/HU.php:29 -msgid "Tolna" -msgstr "Tolna" - -#: i18n/states/HU.php:30 -msgid "Vas" -msgstr "Vas" - -#: i18n/states/HU.php:31 -msgid "Veszprém" -msgstr "Veszprém" - -#: i18n/states/HU.php:32 -msgid "Zala" -msgstr "Zala" - -# @ woocommerce -#: i18n/states/HZ.php:13 i18n/states/NZ.php:14 -msgid "Auckland" -msgstr "Auckland" - -# @ woocommerce -#: i18n/states/HZ.php:14 i18n/states/NZ.php:16 -msgid "Bay of Plenty" -msgstr "Bay of Plenty" - -# @ woocommerce -#: i18n/states/HZ.php:15 i18n/states/NZ.php:25 -msgid "Canterbury" -msgstr "Canterbury" - -# @ woocommerce -#: i18n/states/HZ.php:16 i18n/states/NZ.php:18 -msgid "Hawke’s Bay" -msgstr "Hawke’s Bay" - -# @ woocommerce -#: i18n/states/HZ.php:17 i18n/states/NZ.php:19 -msgid "Manawatu-Wanganui" -msgstr "Manawatu-Wanganui" - -# @ woocommerce -#: i18n/states/HZ.php:18 i18n/states/NZ.php:22 -msgid "Marlborough" -msgstr "Marlborough" - -# @ woocommerce -#: i18n/states/HZ.php:19 i18n/states/NZ.php:21 -msgid "Nelson" -msgstr "Nelson" - -# @ woocommerce -#: i18n/states/HZ.php:20 i18n/states/NZ.php:13 -msgid "Northland" -msgstr "Northland" - -# @ woocommerce -#: i18n/states/HZ.php:21 i18n/states/NZ.php:26 -msgid "Otago" -msgstr "Otago" - -# @ woocommerce -#: i18n/states/HZ.php:22 i18n/states/NZ.php:27 -msgid "Southland" -msgstr "Southland" - -# @ woocommerce -#: i18n/states/HZ.php:23 i18n/states/NZ.php:17 -msgid "Taranaki" -msgstr "Taranaki" - -# @ woocommerce -#: i18n/states/HZ.php:24 i18n/states/NZ.php:23 -msgid "Tasman" -msgstr "Tasman" - -# @ woocommerce -#: i18n/states/HZ.php:25 i18n/states/NZ.php:15 -msgid "Waikato" -msgstr "Waikato" - -# @ woocommerce -#: i18n/states/HZ.php:26 i18n/states/NZ.php:20 -msgid "Wellington" -msgstr "Wellington" - -# @ woocommerce -#: i18n/states/HZ.php:27 i18n/states/NZ.php:24 -msgid "West Coast" -msgstr "West Coast" - -#: i18n/states/ID.php:13 -msgid "Daerah Istimewa Aceh" -msgstr "Aceh" - -#: i18n/states/ID.php:14 -msgid "Sumatera Utara" -msgstr "Länsi-Sumatra" - -#: i18n/states/ID.php:15 -msgid "Sumatera Barat" -msgstr "Länsi-Sumatra" - -#: i18n/states/ID.php:16 -msgid "Riau" -msgstr "Riau" - -#: i18n/states/ID.php:17 -msgid "Kepulauan Riau" -msgstr "Riausaaret" - -# @ woocommerce -#: i18n/states/ID.php:18 -msgid "Jambi" -msgstr "Jambi" - -#: i18n/states/ID.php:19 -msgid "Sumatera Selatan" -msgstr "Etelä-Sumatra" - -#: i18n/states/ID.php:20 -msgid "Bangka Belitung" -msgstr "Bangka-Belitung" - -#: i18n/states/ID.php:21 -msgid "Bengkulu" -msgstr "Bengkulu" - -#: i18n/states/ID.php:22 -msgid "Lampung" -msgstr "Lampung" - -#: i18n/states/ID.php:23 -msgid "DKI Jakarta" -msgstr "Jakarta" - -#: i18n/states/ID.php:24 -msgid "Jawa Barat" -msgstr "Länsi-Jaava" - -#: i18n/states/ID.php:25 -msgid "Banten" -msgstr "Banten" - -#: i18n/states/ID.php:26 -msgid "Jawa Tengah" -msgstr "Keski-Jaava" - -#: i18n/states/ID.php:27 -msgid "Jawa Timur" -msgstr "Itä-Jaava" - -#: i18n/states/ID.php:28 -msgid "Daerah Istimewa Yogyakarta" -msgstr "Yogyakarta" - -#: i18n/states/ID.php:29 -msgid "Bali" -msgstr "Bali" - -#: i18n/states/ID.php:30 -msgid "Nusa Tenggara Barat" -msgstr "Läntinen Nusa Tenggara" - -#: i18n/states/ID.php:31 -msgid "Nusa Tenggara Timur" -msgstr "Itäinen Nusa Tenggara" - -#: i18n/states/ID.php:32 -msgid "Kalimantan Barat" -msgstr "Länsi-Kalimantan" - -#: i18n/states/ID.php:33 -msgid "Kalimantan Tengah" -msgstr "Keski-Kalimantan" - -#: i18n/states/ID.php:34 -msgid "Kalimantan Timur" -msgstr "Itä-Kalimantan" - -#: i18n/states/ID.php:35 -msgid "Kalimantan Selatan" -msgstr "Etelä-Kalimantan" - -# @ woocommerce -#: i18n/states/ID.php:36 -msgid "Kalimantan Utara" -msgstr "Pohjois-Kalimantan" - -#: i18n/states/ID.php:37 -msgid "Sulawesi Utara" -msgstr "Pohjois-Sulawesi" - -#: i18n/states/ID.php:38 -msgid "Sulawesi Tengah" -msgstr "Keski-Sulawesi" - -#: i18n/states/ID.php:39 -msgid "Sulawesi Tenggara" -msgstr "Kaakkois-Sulawesi" - -#: i18n/states/ID.php:40 -msgid "Sulawesi Barat" -msgstr "Länsi-Sulawesi" - -#: i18n/states/ID.php:41 -msgid "Sulawesi Selatan" -msgstr "Etelä-Sulawesi" - -#: i18n/states/ID.php:42 -msgid "Gorontalo" -msgstr "Gorontalo" - -#: i18n/states/ID.php:43 -msgid "Maluku" -msgstr "Molukit" - -#: i18n/states/ID.php:44 -msgid "Maluku Utara" -msgstr "Pohjois-Molukit" - -#: i18n/states/ID.php:45 -msgid "Papua" -msgstr "Papua" - -#: i18n/states/ID.php:46 -msgid "Papua Barat" -msgstr "Länsi-Papua" - -#: i18n/states/IN.php:13 -msgid "Andra Pradesh" -msgstr "Andra Pradesh" - -#: i18n/states/IN.php:14 -msgid "Arunachal Pradesh" -msgstr "Arunachal Pradesh" - -#: i18n/states/IN.php:15 -msgid "Assam" -msgstr "Assam" - -#: i18n/states/IN.php:16 -msgid "Bihar" -msgstr "Bihar" - -#: i18n/states/IN.php:17 -msgid "Chhattisgarh" -msgstr "Chhattisgarh" - -# @ woocommerce -#: i18n/states/IN.php:18 -msgid "Goa" -msgstr "Goa" - -#: i18n/states/IN.php:19 -msgid "Gujarat" -msgstr "Gujarat" - -# @ woocommerce -#: i18n/states/IN.php:20 -msgid "Haryana" -msgstr "Haryana" - -#: i18n/states/IN.php:21 -msgid "Himachal Pradesh" -msgstr "Himachal Pradesh" - -#: i18n/states/IN.php:22 -msgid "Jammu and Kashmir" -msgstr "Jammu ja Kashmir" - -#: i18n/states/IN.php:23 -msgid "Jharkhand" -msgstr "Jharkhand" - -#: i18n/states/IN.php:24 -msgid "Karnataka" -msgstr "Karnataka" - -# @ woocommerce -#: i18n/states/IN.php:25 -msgid "Kerala" -msgstr "Kerala" - -#: i18n/states/IN.php:26 -msgid "Madhya Pradesh" -msgstr "Madhya Pradesh" - -#: i18n/states/IN.php:27 -msgid "Maharashtra" -msgstr "Maharashtra" - -#: i18n/states/IN.php:28 -msgid "Manipur" -msgstr "Manipur" - -# @ woocommerce -#: i18n/states/IN.php:29 -msgid "Meghalaya" -msgstr "Meghalaya" - -#: i18n/states/IN.php:30 -msgid "Mizoram" -msgstr "Mizoram" - -# @ woocommerce -#: i18n/states/IN.php:31 -msgid "Nagaland" -msgstr "Nagaland" - -#: i18n/states/IN.php:32 -msgid "Orissa" -msgstr "Orissa" - -#: i18n/states/IN.php:33 -msgid "Punjab" -msgstr "Punjab" - -#: i18n/states/IN.php:34 -msgid "Rajasthan" -msgstr "Rajasthan" - -#: i18n/states/IN.php:35 -msgid "Sikkim" -msgstr "Sikkim" - -#: i18n/states/IN.php:36 -msgid "Tamil Nadu" -msgstr "Tamil Nadu" - -#: i18n/states/IN.php:37 -msgid "Tripura" -msgstr "Tripura" - -#: i18n/states/IN.php:38 -msgid "Uttaranchal" -msgstr "Uttarakhand" - -#: i18n/states/IN.php:39 -msgid "Uttar Pradesh" -msgstr "Uttar Pradesh" - -#: i18n/states/IN.php:40 -msgid "West Bengal" -msgstr "Länsi-Bengali" - -# @ woocommerce -#: i18n/states/IN.php:41 -msgid "Andaman and Nicobar Islands" -msgstr "Andaman ja Nicobar Islands" - -# @ woocommerce -#: i18n/states/IN.php:42 -msgid "Chandigarh" -msgstr "Chandigarh" - -#: i18n/states/IN.php:43 -msgid "Dadar and Nagar Haveli" -msgstr "Dadra ja Nagar Haveli" - -#: i18n/states/IN.php:44 -msgid "Daman and Diu" -msgstr "Daman ja Diu" - -#: i18n/states/IN.php:45 -msgid "Delhi" -msgstr "Delhi" - -#: i18n/states/IN.php:46 -msgid "Lakshadeep" -msgstr "Lakshadweep" - -#: i18n/states/IN.php:47 -msgid "Pondicherry (Puducherry)" -msgstr "Pondicherry" - -#: i18n/states/MY.php:13 -msgid "Johor" -msgstr "Johor" - -#: i18n/states/MY.php:14 -msgid "Kedah" -msgstr "Kedah" - -#: i18n/states/MY.php:15 -msgid "Kelantan" -msgstr "Kelantan" - -#: i18n/states/MY.php:16 -msgid "Melaka" -msgstr "Melaka" - -#: i18n/states/MY.php:17 -msgid "Negeri Sembilan" -msgstr "Negeri Sembilan" - -# @ woocommerce -#: i18n/states/MY.php:18 -msgid "Pahang" -msgstr "Pahang" - -#: i18n/states/MY.php:19 -msgid "Perak" -msgstr "Perak" - -#: i18n/states/MY.php:20 -msgid "Perlis" -msgstr "Perlis" - -#: i18n/states/MY.php:21 -msgid "Pulau Pinang" -msgstr "Pulau Pinang" - -#: i18n/states/MY.php:22 -msgid "Sabah" -msgstr "Sabah" - -#: i18n/states/MY.php:23 -msgid "Sarawak" -msgstr "Sarawak" - -#: i18n/states/MY.php:24 -msgid "Selangor" -msgstr "Selangor" - -#: i18n/states/MY.php:25 -msgid "Terengganu" -msgstr "Terengganu" - -#: i18n/states/MY.php:26 -msgid "W.P. Kuala Lumpur" -msgstr "W.P. Kuala Lumpur" - -#: i18n/states/MY.php:27 -msgid "W.P. Labuan" -msgstr "W.P. Labuan" - -#: i18n/states/MY.php:28 -msgid "W.P. Putrajaya" -msgstr "W.P. Putrajaya" - -#: i18n/states/TH.php:13 -msgid "" -"Amnat Charoen (อำนาจเจร" -"ิญ)" -msgstr "" -"Amnat Charoen (อำนาจเจร" -"ิญ)" - -#: i18n/states/TH.php:14 -msgid "Ang Thong (อ่างทอง)" -msgstr "Ang Thong (อ่างทอง)" - -#: i18n/states/TH.php:15 -msgid "" -"Ayutthaya (พระนครศรี" -"อยุธยา)" -msgstr "" -"Ayutthaya (พระนครศรี" -"อยุธยา)" - -#: i18n/states/TH.php:16 -msgid "" -"Bangkok (กรุงเทพมห" -"านคร)" -msgstr "" -"Bangkok (กรุงเทพมห" -"านคร)" - -#: i18n/states/TH.php:17 -msgid "Bueng Kan (บึงกาฬ)" -msgstr "Bueng Kan (บึงกาฬ)" - -#: i18n/states/TH.php:18 -msgid "" -"Buri Ram (บุรีรัมย์)" -msgstr "" -"Buri Ram (บุรีรัมย์)" - -#: i18n/states/TH.php:19 -msgid "" -"Chachoengsao (ฉะเชิงเทร" -"า)" -msgstr "" -"Chachoengsao (ฉะเชิงเทร" -"า)" - -#: i18n/states/TH.php:20 -msgid "Chai Nat (ชัยนาท)" -msgstr "Chai Nat (ชัยนาท)" - -#: i18n/states/TH.php:21 -msgid "Chaiyaphum (ชัยภูมิ)" -msgstr "Chaiyaphum (ชัยภูมิ)" - -#: i18n/states/TH.php:22 -msgid "Chanthaburi (จันทบุรี)" -msgstr "Chanthaburi (จันทบุรี)" - -#: i18n/states/TH.php:23 -msgid "" -"Chiang Mai (เชียงใหม่)" -msgstr "" -"Chiang Mai (เชียงใหม่)" - -#: i18n/states/TH.php:24 -msgid "Chiang Rai (เชียงราย)" -msgstr "Chiang Rai (เชียงราย)" - -#: i18n/states/TH.php:25 -msgid "Chonburi (ชลบุรี)" -msgstr "Chonburi (ชลบุรี)" - -#: i18n/states/TH.php:26 -msgid "Chumphon (ชุมพร)" -msgstr "Chumphon (ชุมพร)" - -#: i18n/states/TH.php:27 -msgid "" -"Kalasin (กาฬสินธุ์)" -msgstr "" -"Kalasin (กาฬสินธุ์)" - -#: i18n/states/TH.php:28 -msgid "" -"Kamphaeng Phet (กำแพงเพช" -"ร)" -msgstr "" -"Kamphaeng Phet (กำแพงเพช" -"ร)" - -#: i18n/states/TH.php:29 -msgid "" -"Kanchanaburi (กาญจนบุร" -"ี)" -msgstr "" -"Kanchanaburi (กาญจนบุร" -"ี)" - -#: i18n/states/TH.php:30 -msgid "Khon Kaen (ขอนแก่น)" -msgstr "Khon Kaen (ขอนแก่น)" - -#: i18n/states/TH.php:31 -msgid "Krabi (กระบี่)" -msgstr "Krabi (กระบี่)" - -#: i18n/states/TH.php:32 -msgid "Lampang (ลำปาง)" -msgstr "Lampang (ลำปาง)" - -#: i18n/states/TH.php:33 -msgid "Lamphun (ลำพูน)" -msgstr "Lamphun (ลำพูน)" - -#: i18n/states/TH.php:34 -msgid "Loei (เลย)" -msgstr "Loei (เลย)" - -#: i18n/states/TH.php:35 -msgid "Lopburi (ลพบุรี)" -msgstr "Lopburi (ลพบุรี)" - -#: i18n/states/TH.php:36 -msgid "" -"Mae Hong Son (แม่ฮ่องสอ" -"น)" -msgstr "" -"Mae Hong Son (แม่ฮ่องสอ" -"น)" - -#: i18n/states/TH.php:37 -msgid "" -"Maha Sarakham (มหาสารคา" -"ม)" -msgstr "" -"Maha Sarakham (มหาสารคา" -"ม)" - -#: i18n/states/TH.php:38 -msgid "Mukdahan (มุกดาหาร)" -msgstr "Mukdahan (มุกดาหาร)" - -#: i18n/states/TH.php:39 -msgid "Nakhon Nayok (นครนายก)" -msgstr "Nakhon Nayok (นครนายก)" - -#: i18n/states/TH.php:40 -msgid "Nakhon Pathom (นครปฐม)" -msgstr "Nakhon Pathom (นครปฐม)" - -#: i18n/states/TH.php:41 -msgid "Nakhon Phanom (นครพนม)" -msgstr "Nakhon Phanom (นครพนม)" - -#: i18n/states/TH.php:42 -msgid "" -"Nakhon Ratchasima (นครราชสี" -"มา)" -msgstr "" -"Nakhon Ratchasima (นครราชสี" -"มา)" - -#: i18n/states/TH.php:43 -msgid "" -"Nakhon Sawan (นครสวรรค" -"์)" -msgstr "" -"Nakhon Sawan (นครสวรรค" -"์)" - -#: i18n/states/TH.php:44 -msgid "" -"Nakhon Si Thammarat (นครศรีธร" -"รมราช)" -msgstr "" -"Nakhon Si Thammarat (นครศรีธร" -"รมราช)" - -#: i18n/states/TH.php:45 -msgid "Nan (น่าน)" -msgstr "Nan (น่าน)" - -#: i18n/states/TH.php:46 -msgid "Narathiwat (นราธิวาส)" -msgstr "Narathiwat (นราธิวาส)" - -#: i18n/states/TH.php:47 -msgid "" -"Nong Bua Lam Phu (หนองบัวล" -"ำภู)" -msgstr "" -"Nong Bua Lam Phu (หนองบัวล" -"ำภู)" - -#: i18n/states/TH.php:48 -msgid "Nong Khai (หนองคาย)" -msgstr "Nong Khai (หนองคาย)" - -#: i18n/states/TH.php:49 -msgid "Nonthaburi (นนทบุรี)" -msgstr "Nonthaburi (นนทบุรี)" - -#: i18n/states/TH.php:50 -msgid "Pathum Thani (ปทุมธานี)" -msgstr "" -"Pathum Thani (ปทุมธานี)" - -#: i18n/states/TH.php:51 -msgid "Pattani (ปัตตานี)" -msgstr "Pattani (ปัตตานี)" - -#: i18n/states/TH.php:52 -msgid "Phang Nga (พังงา)" -msgstr "Phang Nga (พังงา)" - -#: i18n/states/TH.php:53 -msgid "Phatthalung (พัทลุง)" -msgstr "Phatthalung (พัทลุง)" - -#: i18n/states/TH.php:54 -msgid "Phayao (พะเยา)" -msgstr "Phayao (พะเยา)" - -#: i18n/states/TH.php:55 -msgid "" -"Phetchabun (เพชรบูรณ์)" -msgstr "" -"Phetchabun (เพชรบูรณ์)" - -#: i18n/states/TH.php:56 -msgid "Phetchaburi (เพชรบุรี)" -msgstr "Phetchaburi (เพชรบุรี)" - -#: i18n/states/TH.php:57 -msgid "Phichit (พิจิตร)" -msgstr "Phichit (พิจิตร)" - -#: i18n/states/TH.php:58 -msgid "Phitsanulok (พิษณุโลก)" -msgstr "Phitsanulok (พิษณุโลก)" - -#: i18n/states/TH.php:59 -msgid "Phrae (แพร่)" -msgstr "Phrae (แพร่)" - -#: i18n/states/TH.php:60 -msgid "Phuket (ภูเก็ต)" -msgstr "Phuket (ภูเก็ต)" - -#: i18n/states/TH.php:61 -msgid "" -"Prachin Buri (ปราจีนบุร" -"ี)" -msgstr "" -"Prachin Buri (ปราจีนบุร" -"ี)" - -#: i18n/states/TH.php:62 -msgid "" -"Prachuap Khiri Khan (ประจวบคี" -"รีขันธ์)" -msgstr "" -"Prachuap Khiri Khan (ประจวบคี" -"รีขันธ์)" - -#: i18n/states/TH.php:63 -msgid "Ranong (ระนอง)" -msgstr "Ranong (ระนอง)" - -#: i18n/states/TH.php:64 -msgid "Ratchaburi (ราชบุรี)" -msgstr "Ratchaburi (ราชบุรี)" - -#: i18n/states/TH.php:65 -msgid "Rayong (ระยอง)" -msgstr "Rayong (ระยอง)" - -#: i18n/states/TH.php:66 -msgid "Roi Et (ร้อยเอ็ด)" -msgstr "Roi Et (ร้อยเอ็ด)" - -#: i18n/states/TH.php:67 -msgid "Sa Kaeo (สระแก้ว)" -msgstr "Sa Kaeo (สระแก้ว)" - -#: i18n/states/TH.php:68 -msgid "Sakon Nakhon (สกลนคร)" -msgstr "Sakon Nakhon (สกลนคร)" - -#: i18n/states/TH.php:69 -msgid "" -"Samut Prakan (สมุทรปราก" -"าร)" -msgstr "" -"Samut Prakan (สมุทรปราก" -"าร)" - -#: i18n/states/TH.php:70 -msgid "" -"Samut Sakhon (สมุทรสาค" -"ร)" -msgstr "" -"Samut Sakhon (สมุทรสาค" -"ร)" - -#: i18n/states/TH.php:71 -msgid "" -"Samut Songkhram (สมุทรสงค" -"ราม)" -msgstr "" -"Samut Songkhram (สมุทรสงค" -"ราม)" - -#: i18n/states/TH.php:72 -msgid "Saraburi (สระบุรี)" -msgstr "Saraburi (สระบุรี)" - -#: i18n/states/TH.php:73 -msgid "Satun (สตูล)" -msgstr "Satun (สตูล)" - -#: i18n/states/TH.php:74 -msgid "" -"Sing Buri (สิงห์บุรี)" -msgstr "" -"Sing Buri (สิงห์บุรี)" - -#: i18n/states/TH.php:75 -msgid "Sisaket (ศรีสะเกษ)" -msgstr "Sisaket (ศรีสะเกษ)" - -#: i18n/states/TH.php:76 -msgid "Songkhla (สงขลา)" -msgstr "Songkhla (สงขลา)" - -#: i18n/states/TH.php:77 -msgid "Sukhothai (สุโขทัย)" -msgstr "Sukhothai (สุโขทัย)" - -#: i18n/states/TH.php:78 -msgid "" -"Suphan Buri (สุพรรณบุร" -"ี)" -msgstr "" -"Suphan Buri (สุพรรณบุร" -"ี)" - -#: i18n/states/TH.php:79 -msgid "" -"Surat Thani (สุราษฎร์ธ" -"านี)" -msgstr "" -"Surat Thani (สุราษฎร์ธ" -"านี)" - -#: i18n/states/TH.php:80 -msgid "Surin (สุรินทร์)" -msgstr "Surin (สุรินทร์)" - -#: i18n/states/TH.php:81 -msgid "Tak (ตาก)" -msgstr "Tak (ตาก)" - -#: i18n/states/TH.php:82 -msgid "Trang (ตรัง)" -msgstr "Trang (ตรัง)" - -#: i18n/states/TH.php:83 -msgid "Trat (ตราด)" -msgstr "Trat (ตราด)" - -#: i18n/states/TH.php:84 -msgid "" -"Ubon Ratchathani (อุบลราชธ" -"านี)" -msgstr "" -"Ubon Ratchathani (อุบลราชธ" -"านี)" - -#: i18n/states/TH.php:85 -msgid "Udon Thani (อุดรธานี)" -msgstr "Udon Thani (อุดรธานี)" - -#: i18n/states/TH.php:86 -msgid "" -"Uthai Thani (อุทัยธานี)" -msgstr "" -"Uthai Thani (อุทัยธานี)" - -#: i18n/states/TH.php:87 -msgid "" -"Uttaradit (อุตรดิตถ์)" -msgstr "" -"Uttaradit (อุตรดิตถ์)" - -#: i18n/states/TH.php:88 -msgid "Yala (ยะลา)" -msgstr "Yala (ยะลา)" - -#: i18n/states/TH.php:89 -msgid "Yasothon (ยโสธร)" -msgstr "Yasothon (ยโสธร)" - -# @ woocommerce -#: i18n/states/US.php:13 -msgid "Alabama" -msgstr "Alabama" - -# @ woocommerce -#: i18n/states/US.php:14 -msgid "Alaska" -msgstr "Alaska" - -# @ woocommerce -#: i18n/states/US.php:15 -msgid "Arizona" -msgstr "Arizona" - -# @ woocommerce -#: i18n/states/US.php:16 -msgid "Arkansas" -msgstr "Arkansas" - -# @ woocommerce -#: i18n/states/US.php:17 -msgid "California" -msgstr "Kalifornia" - -# @ woocommerce -#: i18n/states/US.php:18 -msgid "Colorado" -msgstr "Colorado" - -# @ woocommerce -#: i18n/states/US.php:19 -msgid "Connecticut" -msgstr "Connecticut" - -# @ woocommerce -#: i18n/states/US.php:20 -msgid "Delaware" -msgstr "Delaware" - -# @ woocommerce -#: i18n/states/US.php:21 -msgid "District Of Columbia" -msgstr "District of Columbia" - -# @ woocommerce -#: i18n/states/US.php:22 -msgid "Florida" -msgstr "Florida" - -# @ woocommerce -#: i18n/states/US.php:24 -msgid "Hawaii" -msgstr "Havaiji" - -# @ woocommerce -#: i18n/states/US.php:25 -msgid "Idaho" -msgstr "Idaho" - -# @ woocommerce -#: i18n/states/US.php:26 -msgid "Illinois" -msgstr "Illinois" - -# @ woocommerce -#: i18n/states/US.php:27 -msgid "Indiana" -msgstr "Indiana" - -# @ woocommerce -#: i18n/states/US.php:28 -msgid "Iowa" -msgstr "Iowa" - -# @ woocommerce -#: i18n/states/US.php:29 -msgid "Kansas" -msgstr "Kansas" - -# @ woocommerce -#: i18n/states/US.php:30 -msgid "Kentucky" -msgstr "Kentucky" - -# @ woocommerce -#: i18n/states/US.php:31 -msgid "Louisiana" -msgstr "Louisiana" - -# @ woocommerce -#: i18n/states/US.php:32 -msgid "Maine" -msgstr "Maine" - -# @ woocommerce -#: i18n/states/US.php:33 -msgid "Maryland" -msgstr "Maryland" - -# @ woocommerce -#: i18n/states/US.php:34 -msgid "Massachusetts" -msgstr "Massachusetts" - -# @ woocommerce -#: i18n/states/US.php:35 -msgid "Michigan" -msgstr "Michigan" - -# @ woocommerce -#: i18n/states/US.php:36 -msgid "Minnesota" -msgstr "Minnesota" - -# @ woocommerce -#: i18n/states/US.php:37 -msgid "Mississippi" -msgstr "Mississippi" - -# @ woocommerce -#: i18n/states/US.php:38 -msgid "Missouri" -msgstr "Missouri" - -# @ woocommerce -#: i18n/states/US.php:39 -msgid "Montana" -msgstr "Montana" - -# @ woocommerce -#: i18n/states/US.php:40 -msgid "Nebraska" -msgstr "Nebraska" - -# @ woocommerce -#: i18n/states/US.php:41 -msgid "Nevada" -msgstr "Nevada" - -# @ woocommerce -#: i18n/states/US.php:42 -msgid "New Hampshire" -msgstr "New Hampshire" - -# @ woocommerce -#: i18n/states/US.php:43 -msgid "New Jersey" -msgstr "New Jersey" - -# @ woocommerce -#: i18n/states/US.php:44 -msgid "New Mexico" -msgstr "New Mexico" - -# @ woocommerce -#: i18n/states/US.php:45 -msgid "New York" -msgstr "New York" - -# @ woocommerce -#: i18n/states/US.php:46 -msgid "North Carolina" -msgstr "North Carolina" - -# @ woocommerce -#: i18n/states/US.php:47 -msgid "North Dakota" -msgstr "Pohjois-Dakota" - -# @ woocommerce -#: i18n/states/US.php:48 -msgid "Ohio" -msgstr "Ohio" - -# @ woocommerce -#: i18n/states/US.php:49 -msgid "Oklahoma" -msgstr "Oklahoma" - -# @ woocommerce -#: i18n/states/US.php:50 -msgid "Oregon" -msgstr "Oregon" - -# @ woocommerce -#: i18n/states/US.php:51 -msgid "Pennsylvania" -msgstr "Pennsylvania" - -# @ woocommerce -#: i18n/states/US.php:52 -msgid "Rhode Island" -msgstr "Rhode Island" - -# @ woocommerce -#: i18n/states/US.php:53 -msgid "South Carolina" -msgstr "Etelä-Carolina" - -# @ woocommerce -#: i18n/states/US.php:54 -msgid "South Dakota" -msgstr "Etelä-Dakota" - -# @ woocommerce -#: i18n/states/US.php:55 -msgid "Tennessee" -msgstr "Tennessee" - -# @ woocommerce -#: i18n/states/US.php:56 -msgid "Texas" -msgstr "Texas" - -# @ woocommerce -#: i18n/states/US.php:57 -msgid "Utah" -msgstr "Utah" - -# @ woocommerce -#: i18n/states/US.php:58 -msgid "Vermont" -msgstr "Vermont" - -# @ woocommerce -#: i18n/states/US.php:59 -msgid "Virginia" -msgstr "Virginia" - -# @ woocommerce -#: i18n/states/US.php:60 -msgid "Washington" -msgstr "Washington" - -# @ woocommerce -#: i18n/states/US.php:61 -msgid "West Virginia" -msgstr "West Virginia" - -# @ woocommerce -#: i18n/states/US.php:62 -msgid "Wisconsin" -msgstr "Wisconsin" - -# @ woocommerce -#: i18n/states/US.php:63 -msgid "Wyoming" -msgstr "Wyoming" - -# @ woocommerce -#: i18n/states/US.php:64 -msgid "Armed Forces (AA)" -msgstr "Armed Forces (AA)" - -# @ woocommerce -#: i18n/states/US.php:65 -msgid "Armed Forces (AE)" -msgstr "Armed Forces (AE)" - -# @ woocommerce -#: i18n/states/US.php:66 -msgid "Armed Forces (AP)" -msgstr "Armed Forces (AP)" - -# @ woocommerce -#: i18n/states/US.php:67 -msgid "American Samoa" -msgstr "Amerikan Samoa" - -# @ woocommerce -#: i18n/states/US.php:68 -msgid "Guam" -msgstr "Guam" - -# @ woocommerce -#: i18n/states/US.php:69 -msgid "Northern Mariana Islands" -msgstr "Pohjois-Mariaanit" - -# @ woocommerce -#: i18n/states/US.php:70 -msgid "Puerto Rico" -msgstr "Puerto Rico" - -# @ woocommerce -#: i18n/states/US.php:71 -msgid "US Minor Outlying Islands" -msgstr "Yhdysvaltain pienet erillissaaret" - -# @ woocommerce -#: i18n/states/US.php:72 -msgid "US Virgin Islands" -msgstr "Yhdysvaltain Neitsytsaaret" - -#: i18n/states/ZA.php:13 -msgid "Eastern Cape" -msgstr "Eastern Cape" - -# @ woocommerce -#: i18n/states/ZA.php:14 -msgid "Free State" -msgstr "Free State" - -#: i18n/states/ZA.php:15 -msgid "Gauteng" -msgstr "Gauteng" - -#: i18n/states/ZA.php:16 -msgid "KwaZulu-Natal" -msgstr "KwaZulu-Natal" - -#: i18n/states/ZA.php:17 -msgid "Limpopo" -msgstr "Limpopo" - -#: i18n/states/ZA.php:18 -msgid "Mpumalanga" -msgstr "Mpumalanga" - -# @ woocommerce -#: i18n/states/ZA.php:19 -msgid "Northern Cape" -msgstr "Northern Cape" - -# @ woocommerce -#: i18n/states/ZA.php:20 -msgid "North West" -msgstr "North West" - -# @ woocommerce -#: i18n/states/ZA.php:21 -msgid "Western Cape" -msgstr "Western Cape" - -# @ woocommerce -#: i18n/strings.php:16 -msgid "pending" -msgstr "odottaa" - -# @ woocommerce -#: i18n/strings.php:17 -msgid "failed" -msgstr "epäonnistui" - -# @ woocommerce -#: i18n/strings.php:18 -msgid "on-hold" -msgstr "jonossa" - -# @ woocommerce -#: i18n/strings.php:19 -msgid "processing" -msgstr "käsittelyssä" - -# @ woocommerce -#: i18n/strings.php:20 -msgid "completed" -msgstr "valmis" - -# @ woocommerce -#: i18n/strings.php:21 -msgid "refunded" -msgstr "hyvitetty" - -# @ woocommerce -#: i18n/strings.php:22 -msgid "cancelled" -msgstr "peruttu" - -# @ woocommerce -#: templates/cart/cart-empty.php:14 -msgid "Your cart is currently empty." -msgstr "Ostoskori on tyhjä." - -# @ woocommerce -#: templates/cart/cart-empty.php:18 -msgid "← Return To Shop" -msgstr "← Palaa kauppaan" - -# @ woocommerce -#: templates/cart/cart.php:28 templates/checkout/form-pay.php:19 -#: templates/checkout/review-order.php:21 -#: templates/emails/admin-new-order.php:22 -#: templates/emails/customer-completed-order.php:23 -#: templates/emails/customer-invoice.php:27 -#: templates/emails/customer-note.php:27 -#: templates/emails/customer-processing-order.php:23 -#: templates/order/order-details.php:20 woocommerce.php:986 -msgid "Product" -msgstr "Tuote" - -# @ woocommerce -#: templates/cart/cart.php:29 templates/emails/admin-new-order.php:24 -#: templates/emails/customer-completed-order.php:25 -#: templates/emails/customer-invoice.php:29 -#: templates/emails/customer-note.php:29 -#: templates/emails/customer-processing-order.php:25 -msgid "Price" -msgstr "Hinta" - -# @ woocommerce -#: templates/cart/cart.php:30 templates/emails/admin-new-order.php:23 -#: templates/emails/customer-completed-order.php:24 -#: templates/emails/customer-invoice.php:28 -#: templates/emails/customer-note.php:28 -#: templates/emails/customer-processing-order.php:24 -msgid "Quantity" -msgstr "Määrä" - -# @ woocommerce -#: templates/cart/cart.php:31 templates/checkout/review-order.php:22 -#: templates/myaccount/my-orders.php:35 templates/order/order-details.php:21 -msgid "Total" -msgstr "Yhteensä" - -# @ woocommerce -#: templates/cart/cart.php:47 -msgid "Remove this item" -msgstr "Poista tämä tuote" - -# @ woocommerce -#: templates/cart/cart.php:100 -#: templates/single-product/add-to-cart/quantity.php:12 -msgctxt "Product quantity input tooltip" -msgid "Qty" -msgstr "Määrä" - -# @ woocommerce -#: templates/cart/cart.php:127 woocommerce.php:1099 -msgid "Coupon" -msgstr "Kuponki" - -# @ woocommerce -#: templates/cart/cart.php:127 templates/checkout/form-coupon.php:29 -msgid "Apply Coupon" -msgstr "Käytä kuponki" - -# @ woocommerce -#: templates/cart/cart.php:134 -msgid "Update Cart" -msgstr "Päivitä ostoskori" - -# @ woocommerce -#: templates/cart/cart.php:134 -msgid "Proceed to Checkout →" -msgstr "Siirry kassalle →" - -# @ woocommerce -#: templates/cart/cross-sells.php:38 -msgid "You may be interested in…" -msgstr "Saatat olla kiinnostunut..." - -# @ woocommerce -#: templates/cart/mini-cart.php:55 -msgid "No products in the cart." -msgstr "Ostoskori on tyhjä." - -# @ woocommerce -#: templates/cart/mini-cart.php:63 -msgid "Subtotal" -msgstr "Välisumma" - -# @ woocommerce -#: templates/cart/mini-cart.php:69 -msgid "Checkout →" -msgstr "Kassalle →" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:22 -msgid "Calculate Shipping" -msgstr "Laske toimituskulut" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:28 woocommerce-template.php:1336 -msgid "Select a country…" -msgstr "Valitse maa..." - -# @ woocommerce -#: templates/cart/shipping-calculator.php:45 -#: templates/cart/shipping-calculator.php:51 -#: templates/cart/shipping-calculator.php:63 -msgid "State / county" -msgstr "Lääni / alue ym." - -# @ woocommerce -#: templates/cart/shipping-calculator.php:52 woocommerce-template.php:1386 -msgid "Select a state…" -msgstr "Valitse alue..." - -#: templates/cart/shipping-calculator.php:72 -msgid "City" -msgstr "Kaupunki" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:85 -msgid "Update Totals" -msgstr "Päivitä muutokset" - -# @ woocommerce -#: templates/cart/shipping-methods.php:32 -msgid "Free" -msgstr "Maksuton" - -# @ woocommerce -#: templates/cart/shipping-methods.php:68 -msgid "Please fill in your details to see available shipping methods." -msgstr "" -"Kirjoita vähintään toimitusosoite. Sen jälkeen voit valita toimitustavan." - -# @ woocommerce -#: templates/cart/shipping-methods.php:76 templates/cart/totals.php:147 -msgid "" -"Sorry, it seems that there are no available shipping methods for your " -"location (%s)." -msgstr "" -"Pahoittelemme, sopivaa (ennalta asetettua) toimitustapaa ei löytynyt (%s) " -"kohteeseen." - -# @ woocommerce -#: templates/cart/shipping-methods.php:76 templates/cart/totals.php:147 -msgid "" -"If you require assistance or wish to make alternate arrangements please " -"contact us." -msgstr "" -"Ole hyvä ja ota yhteyttä, jos tarvitset ohjeita tai haluat keskustella mitä " -"voisi olla tehtävissä." - -# @ woocommerce -#: templates/cart/totals.php:22 -msgid "Cart Totals" -msgstr "Ostoskori yhteensä" - -# @ woocommerce -#: templates/cart/totals.php:28 templates/checkout/review-order.php:27 -msgid "Cart Subtotal" -msgstr "Välisumma" - -# @ woocommerce -#: templates/cart/totals.php:35 templates/checkout/review-order.php:34 -#: woocommerce.php:1691 -msgid "Cart Discount" -msgstr "Alennus ostoskorissa" - -# @ woocommerce -#: templates/cart/totals.php:35 templates/cart/totals.php:83 -msgid "[Remove]" -msgstr "[Poista]" - -# @ woocommerce -#: templates/cart/totals.php:46 templates/checkout/review-order.php:45 -msgid "Shipping" -msgstr "Toimitus" - -# @ woocommerce -#: templates/cart/totals.php:83 templates/checkout/review-order.php:82 -msgid "Order Discount" -msgstr "Tilauksen alennus" - -# @ woocommerce -#: templates/cart/totals.php:92 templates/checkout/review-order.php:91 -msgid "Order Total" -msgstr "Tilaus yhteensä" - -# @ woocommerce -#: templates/cart/totals.php:121 -msgid " (taxes estimated for %s)" -msgstr "(arvio veroista %s)" - -# @ woocommerce -#: templates/cart/totals.php:123 -msgid "" -"Note: Shipping and taxes are estimated%s and will be updated during checkout " -"based on your billing and shipping information." -msgstr "" -"Huomaa: toimituskulut sekä verot ovat arvioita%s ja ne päivitetään kassalla " -"laskutus- ja toimitusosoitetietojen perusteella." - -# @ woocommerce -#: templates/cart/totals.php:135 -msgid "" -"No shipping methods were found; please recalculate your shipping and enter " -"your state/county and zip/postcode to ensure there are no other available " -"methods for your location." -msgstr "" -"Sopivaa toimitustapaa ei löytynyt. Syötä tiedot uudelleen ja varmista että " -"alue/maa sekä postinumero on syötetty oikein. Yritä laskea toimituskulut " -"uudelleen." - -# @ woocommerce -#: templates/checkout/cart-errors.php:16 -msgid "" -"There are some issues with the items in your cart (shown above). Please go " -"back to the cart page and resolve these issues before checking out." -msgstr "" -"Ostoskorissa olevissa tuotteissa on jotain selvitettävää. Ole hyvä ja palaa " -"ostoskoriin ja pyri selvittämään asiat ennen kassalle siirtymistä." - -# @ woocommerce -#: templates/checkout/cart-errors.php:20 -msgid "← Return To Cart" -msgstr "← Takaisin ostoskoriin" - -# @ woocommerce -#: templates/checkout/form-billing.php:17 -msgid "Billing & Shipping" -msgstr "Laskutus & Toimitus" - -# @ woocommerce -#: templates/checkout/form-billing.php:21 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:19 templates/myaccount/my-address.php:25 -#: templates/order/order-details.php:115 -msgid "Billing Address" -msgstr "Laskutusosoite" - -# @ woocommerce -#: templates/checkout/form-billing.php:42 -msgid "Create an account?" -msgstr "Rekisteröidy?" - -# @ woocommerce -#: templates/checkout/form-billing.php:51 -msgid "" -"Create an account by entering the information below. If you are a returning " -"customer please login at the top of the page." -msgstr "" -"Tee tili. Aloita kirjoittamalla alle pyydetyt tiedot. Jos olet jo " -"rekisteröitynyt, ole hyvä ja kirjaudu sisään – kentät ovat sivun yläreunassa." - -# @ woocommerce -#: templates/checkout/form-checkout.php:20 -msgid "You must be logged in to checkout." -msgstr "Vain sisäänkirjautuneena pääset kassalle. Kirjaudu sisään, ole hyvä." - -# @ woocommerce -#: templates/checkout/form-checkout.php:51 -msgid "Your order" -msgstr "Tilauksesi" - -# @ woocommerce -#: templates/checkout/form-coupon.php:17 -msgid "Have a coupon?" -msgstr "Onko sinulla kuponki?" - -# @ woocommerce -#: templates/checkout/form-coupon.php:20 -msgid "Click here to enter your code" -msgstr "Paina tästä ja kirjoita kuponkikoodi" - -# @ woocommerce -#: templates/checkout/form-coupon.php:25 -msgid "Coupon code" -msgstr "Kupongin koodi" - -#: templates/checkout/form-login.php:14 -msgid "Returning customer?" -msgstr "Palaava asiakas?" - -# @ woocommerce -#: templates/checkout/form-login.php:17 -msgid "Click here to login" -msgstr "Kirjaudu tästä" - -# @ woocommerce -#: templates/checkout/form-login.php:22 -msgid "" -"If you have shopped with us before, please enter your details in the boxes " -"below. If you are a new customer please proceed to the Billing & " -"Shipping section." -msgstr "" -"Jos olet ostanut tästä kaupasta aiemmin, syötä käyttäjätunnus ja salasana " -"alla oleviin kenttiin. Jos olet uusi asiakas, jatka Maksutavat & " -"Postitus -näyttöön." - -# @ woocommerce -#: templates/checkout/form-pay.php:20 -msgid "Qty" -msgstr "Määrä" - -# @ woocommerce -#: templates/checkout/form-pay.php:21 -msgid "Totals" -msgstr "Yhteensä" - -# @ woocommerce -#: templates/checkout/form-pay.php:78 -msgid "" -"Sorry, it seems that there are no available payment methods for your " -"location. Please contact us if you require assistance or wish to make " -"alternate arrangements." -msgstr "" -"Pahoittelemme, (ennalta asetetut) maksutavat eivät ole käytettävissä tässä " -"sijainnissa. Ole hyvä ja ota yhteyttä, jos tarvitset ohjeita tai haluat " -"keskustella mitä voisi olla tehtävissä." - -# @ woocommerce -#: templates/checkout/form-pay.php:87 -msgid "Pay for order" -msgstr "Maksa tilaus" - -# @ woocommerce -#: templates/checkout/form-shipping.php:32 -msgid "Ship to billing address?" -msgstr "Toimitus laskutusosoitteeseen?" - -# @ woocommerce -#: templates/checkout/form-shipping.php:35 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:20 templates/order/order-details.php:130 -msgid "Shipping Address" -msgstr "Toimitusosoite" - -# @ woocommerce -#: templates/checkout/form-shipping.php:59 -#: templates/single-product/tabs/additional-information.php:14 -#: woocommerce-template.php:759 -msgid "Additional Information" -msgstr "Lisätiedot" - -# @ woocommerce -#: templates/checkout/review-order.php:174 -msgid "Please fill in your details above to see available payment methods." -msgstr "Kirjoita vähintään toimitusosoite. Sen jälkeen voit valita maksutavan." - -# @ woocommerce -#: templates/checkout/review-order.php:176 -msgid "" -"Sorry, it seems that there are no available payment methods for your state. " -"Please contact us if you require assistance or wish to make alternate " -"arrangements." -msgstr "" -"Pahoittelemme, (ennalta asetetut) maksutavat eivät ole käytettävissä tällä " -"alueella. Ole hyvä ja ota yhteyttä, jos tarvitset ohjeita tai haluat " -"keskustella mitä voisi olla tehtävissä." - -# @ woocommerce -#: templates/checkout/review-order.php:185 -msgid "" -"Since your browser does not support JavaScript, or it is disabled, please " -"ensure you click the Update Totals button before placing your " -"order. You may be charged more than the amount stated above if you fail to " -"do so." -msgstr "" -"Selaimesi ei tue JavaScriptiä tai sen käyttö on estetty. Paina Laske " -"uudelleen painiketta ennen tilauksen jatkamista. Muuten veloitettu " -"rahamäärä voi olla virheellinen, jopa liian suuri." - -# @ woocommerce -#: templates/checkout/review-order.php:185 -msgid "Update totals" -msgstr "Laske uudelleen" - -# @ woocommerce -#: templates/checkout/review-order.php:192 -msgid "Place order" -msgstr "Lähetä tilaus" - -# @ woocommerce -#: templates/checkout/review-order.php:199 -msgid "I have read and accept the" -msgstr "Olen lukenut ja hyväksyn" - -# @ woocommerce -#: templates/checkout/review-order.php:199 -msgid "terms & conditions" -msgstr "Tilaus-/Sopimusehdot" - -# @ woocommerce -#: templates/checkout/thankyou.php:18 -msgid "" -"Unfortunately your order cannot be processed as the originating bank/" -"merchant has declined your transaction." -msgstr "" -"Valittevasti tilausta ei voi käsitellä, koska pankkisi on estänyt maksun." - -# @ woocommerce -#: templates/checkout/thankyou.php:22 -msgid "Please attempt your purchase again or go to your account page." -msgstr "Yritä maksaa uudelleen tai siirry asiakastilisi sivulle." - -# @ woocommerce -#: templates/checkout/thankyou.php:24 -msgid "Please attempt your purchase again." -msgstr "Yritä maksaa uudelleen, ole hyvä." - -# @ woocommerce -#: templates/checkout/thankyou.php:36 templates/checkout/thankyou.php:67 -msgid "Thank you. Your order has been received." -msgstr "Kiitos. Tilaus on otettu vastaan." - -# @ woocommerce -#: templates/emails/admin-new-order.php:13 -#: templates/emails/plain/admin-new-order.php:13 -msgid "You have received an order from %s. Their order is as follows:" -msgstr "Tilaus on saapunut asiakkaalta %s. Se on tässä:" - -# @ woocommerce -#: templates/emails/admin-new-order.php:17 -msgid "Order: %s" -msgstr "Tilaus: %s" - -# @ woocommerce -#: templates/emails/admin-new-order.php:50 -#: templates/emails/customer-completed-order.php:51 -#: templates/emails/customer-note.php:55 -#: templates/emails/customer-processing-order.php:51 -#: templates/emails/plain/admin-new-order.php:38 -#: templates/order/order-details.php:97 -msgid "Customer details" -msgstr "Asiakkaan tiedot" - -# @ woocommerce -#: templates/emails/admin-new-order.php:53 -#: templates/emails/customer-completed-order.php:54 -#: templates/emails/customer-note.php:58 -#: templates/emails/customer-processing-order.php:54 -#: templates/emails/plain/admin-new-order.php:41 -#: templates/emails/plain/customer-completed-order.php:41 -#: templates/emails/plain/customer-note.php:49 -#: templates/emails/plain/customer-processing-order.php:41 -#: templates/order/order-details.php:101 -msgid "Email:" -msgstr "Sähköposti:" - -# @ woocommerce -#: templates/emails/admin-new-order.php:56 -#: templates/emails/customer-completed-order.php:57 -#: templates/emails/customer-note.php:61 -#: templates/emails/customer-processing-order.php:57 -#: templates/emails/plain/admin-new-order.php:44 -#: templates/emails/plain/customer-completed-order.php:44 -#: templates/emails/plain/customer-note.php:52 -#: templates/emails/plain/customer-processing-order.php:44 -msgid "Tel:" -msgstr "Puh:" - -# @ woocommerce -#: templates/emails/customer-completed-order.php:14 -#: templates/emails/plain/customer-completed-order.php:13 -msgid "" -"Hi there. Your recent order on %s has been completed. Your order details are " -"shown below for your reference:" -msgstr "Hei! Tilaus %s on valmis. Tilauksen tiedot ovat tässä:" - -# @ woocommerce -#: templates/emails/customer-invoice.php:16 -#: templates/emails/plain/customer-invoice.php:14 -msgid "" -"An order has been created for you on %s. To pay for this order please use " -"the following link: %s" -msgstr "" -"Verkkokaupassa %s on tehty tilaus. Voit aloittaa tilauksen maksamisen " -"painamalla linkkiä: %s" - -# @ woocommerce -#: templates/emails/customer-invoice.php:16 -msgid "pay" -msgstr "maksa" - -# @ woocommerce -#: templates/emails/customer-new-account.php:14 -#: templates/emails/plain/customer-new-account.php:13 -msgid "" -"Thanks for creating an account on %s. Your username is %s." -msgstr "Kiitos tilin luomisesta %s. Käyttäjätunnus on %s." - -# @ woocommerce -#: templates/emails/customer-new-account.php:16 -#: templates/emails/plain/customer-new-account.php:15 -msgid "You can access your account area here: %s." -msgstr "Tilin tiedot ovat täällä: %s." - -# @ woocommerce -#: templates/emails/customer-note.php:14 -#: templates/emails/plain/customer-note.php:13 -msgid "Hello, a note has just been added to your order:" -msgstr "Hei, tilaukseen on lisätty kommentti:" - -# @ woocommerce -#: templates/emails/customer-note.php:18 -#: templates/emails/plain/customer-note.php:21 -msgid "For your reference, your order details are shown below." -msgstr "Tiedoksi: Tilauksen tiedot alla." - -# @ woocommerce -#: templates/emails/customer-processing-order.php:14 -#: templates/emails/plain/customer-processing-order.php:13 -msgid "" -"Your order has been received and is now being processed. Your order details " -"are shown below for your reference:" -msgstr "" -"Tilaus on vastaanotettu ja sitä käsitellään. Tilauksen tiedot ovat tässä: " - -# @ woocommerce -#: templates/emails/customer-reset-password.php:14 -#: templates/emails/plain/customer-reset-password.php:13 -msgid "Someone requested that the password be reset for the following account:" -msgstr "Joku on lähettänyt pyynnön palauttaa salasana tähän tiliin:" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:15 -#: templates/emails/plain/customer-reset-password.php:15 -msgid "Username: %s" -msgstr "Käyttäjätunnus: %s" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:16 -#: templates/emails/plain/customer-reset-password.php:16 -msgid "If this was a mistake, just ignore this email and nothing will happen." -msgstr "" -"Jos tämä on vahinko, jätä huomioimatta tämä viesti ja mitään ei tapahdu." - -# @ woocommerce -#: templates/emails/customer-reset-password.php:17 -#: templates/emails/plain/customer-reset-password.php:17 -msgid "To reset your password, visit the following address:" -msgstr "Kun haluat palauttaa salasanan, mene seuraavaan osoitteeseen:" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:20 -msgid "Click here to reset your password" -msgstr "Kun haluat palauttaa salasanan, paina tästä." - -# @ woocommerce -#: templates/emails/email-addresses.php:18 -#: templates/emails/plain/email-addresses.php:12 -msgid "Billing address" -msgstr "Laskutusosoite" - -# @ woocommerce -#: templates/emails/email-addresses.php:28 -#: templates/emails/plain/email-addresses.php:17 -msgid "Shipping address" -msgstr "Toimitusosoite" - -# @ woocommerce -#: templates/emails/email-order-items.php:34 -msgid "This product is no longer available" -msgstr "Tuotetta ei enää ole." - -# @ woocommerce -#: templates/emails/email-order-items.php:76 -msgid "Download %d:" -msgstr "Lataus %d:" - -# @ woocommerce -#: templates/emails/email-order-items.php:78 -msgid "Download:" -msgstr "Lataa:" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:19 -#: templates/emails/plain/customer-completed-order.php:19 -#: templates/emails/plain/customer-invoice.php:20 -#: templates/emails/plain/customer-note.php:27 -#: templates/emails/plain/customer-processing-order.php:19 -msgid "Order number: %s" -msgstr "Tilausnumero: %s" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:20 -#: templates/emails/plain/customer-completed-order.php:20 -#: templates/emails/plain/customer-invoice.php:21 -#: templates/emails/plain/customer-note.php:28 -#: templates/emails/plain/customer-processing-order.php:20 -msgid "Order date: %s" -msgstr "Tilauksen pvm.: %s" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:20 -msgid "jS F Y" -msgstr "j F Y" - -# @ woocommerce -#: templates/emails/plain/customer-completed-order.php:38 -#: templates/emails/plain/customer-note.php:46 -#: templates/emails/plain/customer-processing-order.php:38 -msgid "Your details" -msgstr "Tiedot" - -# @ woocommerce -#: templates/emails/plain/email-order-items.php:28 -msgid "Quantity: %s" -msgstr "Määrä: %s" - -# @ woocommerce -#: templates/emails/plain/email-order-items.php:31 -msgid "Cost: %s" -msgstr "Hinta: %s" - -# @ woocommerce -#: templates/loop/add-to-cart.php:17 templates/loop/add-to-cart.php:41 -#: templates/loop/add-to-cart.php:50 -msgid "Read More" -msgstr "Lue Lisää" - -# @ woocommerce -#: templates/loop/add-to-cart.php:33 -msgid "Select options" -msgstr "Valitse vaihtoehdoista" - -# @ woocommerce -#: templates/loop/add-to-cart.php:37 -msgid "View options" -msgstr "Katso vaihtoehdot" - -# @ woocommerce -#: templates/loop/no-products-found.php:14 templates/loop-shop.php:40 -msgid "No products found which match your selection." -msgstr "Valitun kaltaisia tuotteita ei löytynyt." - -# @ woocommerce -#: templates/loop/orderby.php:21 -msgid "Default sorting" -msgstr "Lajittelu, oletustapa" - -#: templates/loop/orderby.php:22 -msgid "Sort by popularity" -msgstr "Lajittele: ostetuin ensin" - -#: templates/loop/orderby.php:23 -msgid "Sort by average rating" -msgstr "Lajittele: arvostetuin ensin" - -#: templates/loop/orderby.php:24 -msgid "Sort by newness" -msgstr "Lajittele: uusin ensin" - -# @ woocommerce -#: templates/loop/orderby.php:25 -msgid "Sort by price: low to high" -msgstr "Lajittele: halvin ensin" - -# @ woocommerce -#: templates/loop/orderby.php:26 -msgid "Sort by price: high to low" -msgstr "Lajittele: kallein ensin" - -# @ woocommerce -#: templates/loop/result-count.php:28 -msgid "Showing the single result" -msgstr "Näytetään ainut tulos" - -# @ woocommerce -#: templates/loop/result-count.php:30 -msgid "Showing all %d results" -msgstr "Näytetään kaikki %d tulosta" - -# @ woocommerce -#: templates/loop/result-count.php:32 -msgctxt "%1$d = first, %2$d = last, %3$d = total" -msgid "Showing %1$d–%2$d of %3$d results" -msgstr "Näytetään %1$d–%2$d yhteensä %3$d tuloksesta" - -# @ woocommerce -#: templates/loop/sale-flash.php:16 templates/single-product/sale-flash.php:16 -msgid "Sale!" -msgstr "Ale!" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:20 -#: templates/myaccount/form-lost-password.php:31 -msgid "New password" -msgstr "Uusi salasana" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:24 -#: templates/myaccount/form-lost-password.php:35 -msgid "Re-enter new password" -msgstr "Uusi salasana uudelleen" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:29 -#: templates/myaccount/form-lost-password.php:45 -msgid "Save" -msgstr "Tallenna" - -# @ woocommerce -#: templates/myaccount/form-edit-address.php:43 -msgid "Save Address" -msgstr "Tallenna osoite" - -# @ woocommerce -#: templates/myaccount/form-login.php:26 templates/myaccount/form-login.php:40 -#: templates/shop/form-login.php:31 -msgid "Login" -msgstr "Kirjaudu" - -# @ woocommerce -#: templates/myaccount/form-login.php:29 -#: templates/myaccount/form-lost-password.php:24 -#: templates/shop/form-login.php:20 -msgid "Username or email" -msgstr "Käyttäjätunnus tai sähköpostiosoite" - -# @ woocommerce -#: templates/myaccount/form-login.php:33 templates/myaccount/form-login.php:85 -#: templates/shop/form-login.php:24 -msgid "Password" -msgstr "Salasana" - -# @ woocommerce -#: templates/myaccount/form-login.php:50 templates/shop/form-login.php:33 -msgid "Lost Password?" -msgstr "Salasana unohtunut?" - -# @ woocommerce -#: templates/myaccount/form-login.php:60 -#: templates/myaccount/form-login.php:101 -msgid "Register" -msgstr "Rekisteröidy" - -# @ woocommerce -#: templates/myaccount/form-login.php:66 -msgid "Username" -msgstr "Käyttäjätunnus" - -# @ woocommerce -#: templates/myaccount/form-login.php:78 -#: templates/single-product-reviews.php:86 -msgid "Email" -msgstr "Sähköposti" - -# @ woocommerce -#: templates/myaccount/form-login.php:89 -msgid "Re-enter password" -msgstr "Syötä salasana uudelleen" - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:22 -msgid "" -"Lost your password? Please enter your username or email address. You will " -"receive a link to create a new password via email." -msgstr "" -"Etkö voi käyttää tiliäsi? Kirjoita käyttäjätunnus tai sähköpostiosoite. " -"Sinulle lähetetään sähköpostilla linkki, jota painamalla pääset asettamaan " -"uuden salasanan." - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:28 -msgid "Enter a new password below." -msgstr "Kirjoita uusi salasana alle." - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:45 -msgid "Reset Password" -msgstr "Salasanan palautus" - -# @ woocommerce -#: templates/myaccount/my-account.php:19 -msgid "" -"Hello, %s. From your account dashboard you can view your " -"recent orders, manage your shipping and billing addresses and change your password." -msgstr "" -"Hei %s. Tilisi hallintapaneelissa voit katsoa aiempia " -"tilauksia, muuttaa toimitus- ja laskutusosoitteita ja vaihtaa " -"salasanan." - -# @ woocommerce -#: templates/myaccount/my-address.php:17 -msgid "My Addresses" -msgstr "Osoitteet" - -# @ woocommerce -#: templates/myaccount/my-address.php:23 -msgid "My Address" -msgstr "Osoite" - -# @ woocommerce -#: templates/myaccount/my-address.php:35 -msgid "The following addresses will be used on the checkout page by default." -msgstr "Kassalla käytetään näitä osoitteita oletuksena." - -# @ woocommerce -#: templates/myaccount/my-address.php:45 woocommerce.php:954 -#: woocommerce.php:990 woocommerce.php:1027 woocommerce.php:1065 -#: woocommerce.php:1103 -msgid "Edit" -msgstr "Muokkaa" - -# @ woocommerce -#: templates/myaccount/my-address.php:64 -msgid "You have not set up this type of address yet." -msgstr "Tällaista osoitetta ei ole asetettu." - -# @ woocommerce -#: templates/myaccount/my-downloads.php:18 -msgid "Available downloads" -msgstr "Saatavilla olevat lataukset" - -# @ woocommerce -#: templates/myaccount/my-downloads.php:27 -msgid "%s download remaining" -msgid_plural "%s downloads remaining" -msgstr[0] "%s lataus jäljellä" -msgstr[1] "%s latausta jäljellä" - -# @ woocommerce -#: templates/myaccount/my-orders.php:26 -msgid "Recent Orders" -msgstr "Viimeisimmät tilaukset" - -# @ woocommerce -#: templates/myaccount/my-orders.php:32 woocommerce.php:1062 -msgid "Order" -msgstr "Tilaus" - -# @ woocommerce -#: templates/myaccount/my-orders.php:33 -msgid "Date" -msgstr "Päivämäärä:" - -# @ woocommerce -#: templates/myaccount/my-orders.php:34 -msgid "Status" -msgstr "Tila" - -# @ woocommerce -#: templates/myaccount/my-orders.php:62 -msgid "%s for %s item" -msgid_plural "%s for %s items" -msgstr[0] "%s tuotteelle %s" -msgstr[1] "%s tuotteille %s" - -# @ woocommerce -#: templates/myaccount/my-orders.php:77 -msgid "Cancel" -msgstr "Peruuta" - -# @ woocommerce -#: templates/myaccount/my-orders.php:82 -msgid "View" -msgstr "Katso" - -# @ woocommerce -#: templates/order/form-tracking.php:17 -msgid "" -"To track your order please enter your Order ID in the box below and press " -"return. This was given to you on your receipt and in the confirmation email " -"you should have received." -msgstr "" -"Kun haluat seurata tilauksen etenemistä, syötä tilausnumero kenttään ja " -"paina Enter (rivinvaihto). Tilausnumero on tilausvahvistuksessa joka " -"lähetettiin antamaasi sähköpostiosoitteeseen." - -# @ woocommerce -#: templates/order/form-tracking.php:19 -msgid "Order ID" -msgstr "Tilausnumero (ID)" - -# @ woocommerce -#: templates/order/form-tracking.php:19 -msgid "Found in your order confirmation email." -msgstr "löytyy tilausvahvistuksesta joka lähetettiin sähköpostiin." - -# @ woocommerce -#: templates/order/form-tracking.php:20 -msgid "Billing Email" -msgstr "Sähköposti laskutusta varten" - -# @ woocommerce -#: templates/order/form-tracking.php:20 -msgid "Email you used during checkout." -msgstr "Sähköposti, jota käytettiin maksaessa" - -# @ woocommerce -#: templates/order/form-tracking.php:23 -msgid "Track" -msgstr "Seuraa" - -# @ woocommerce -#: templates/order/order-details.php:16 -msgid "Order Details" -msgstr "Tilauksen tiedot" - -# @ woocommerce -#: templates/order/order-details.php:64 -msgid "Download file%s" -msgstr "Lataa tiedosto%s" - -# @ woocommerce -#: templates/order/order-details.php:90 -msgid "Order Again" -msgstr "Tilaus uudelleen" - -# @ woocommerce -#: templates/order/order-details.php:102 -msgid "Telephone:" -msgstr "Puhelin:" - -# @ woocommerce -#: templates/order/tracking.php:18 -msgid "Order %s which was made %s has the status “%s”" -msgstr "Tilauksen %s -joka tehtiin %s- tila on “%s”" - -# @ woocommerce -#: templates/order/tracking.php:18 -msgid "ago" -msgstr "sitten" - -# @ woocommerce -#: templates/order/tracking.php:20 -msgid "and was completed" -msgstr "ja valmistui" - -# @ woocommerce -#: templates/order/tracking.php:20 -msgid " ago" -msgstr "sitten" - -# @ woocommerce -#: templates/shop/breadcrumb.php:63 -msgid "Products tagged “" -msgstr "Tuotteet avainsalla “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:91 templates/shop/breadcrumb.php:190 -msgid "Search results for “" -msgstr "Hakutulokset “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:148 -msgid "Error 404" -msgstr "Virhe 404 (sivua ei löytynyt)" - -# @ woocommerce -#: templates/shop/breadcrumb.php:194 -msgid "Posts tagged “" -msgstr "Kirjoitukset avainsanalla “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:199 -msgid "Author:" -msgstr "Kirjoittaja:" - -# @ woocommerce -#: templates/shop/breadcrumb.php:204 -msgid "Page" -msgstr "Sivu" - -# @ woocommerce -#: templates/single-product/add-to-cart/variable.php:24 -msgid "Choose an option" -msgstr "Valitse" - -# @ woocommerce -#: templates/single-product/add-to-cart/variable.php:69 -msgid "Clear selection" -msgstr "Pyyhi valitut" - -# @ product_cat -#: templates/single-product/meta.php:24 -msgid "Category:" -msgid_plural "Categories:" -msgstr[0] "Osasto:" -msgstr[1] "(Tuote)Osastot:" - -# @ product_tag -#: templates/single-product/meta.php:29 -msgid "Tag:" -msgid_plural "Tags:" -msgstr[0] "Avainsana tuotteelle" -msgstr[1] "Avainsanat tuotteelle" - -# @ woocommerce -#: templates/single-product/product-attributes.php:28 -msgid "Weight" -msgstr "Paino" - -# @ woocommerce -#: templates/single-product/product-attributes.php:37 -msgid "Dimensions" -msgstr "Mitat" - -# @ woocommerce -#: templates/single-product/related.php:36 -msgid "Related Products" -msgstr "Tutustu myös" - -# @ woocommerce -#: templates/single-product/review.php:26 -msgid "Rated %d out of 5" -msgstr "Arvostelu tuotteesta: %s / 5" - -# @ woocommerce -#: templates/single-product/review.php:33 -msgid "Your comment is awaiting approval" -msgstr "Kommentti odottaa hyväksymistä." - -# @ woocommerce -#: templates/single-product/review.php:40 -msgid "verified owner" -msgstr "varmistettu kirjoittaja" - -# @ woocommerce -#: templates/single-product/tabs/description.php:14 -msgid "Product Description" -msgstr "Tuotekuvaus" - -# @ woocommerce -#: templates/single-product/up-sells.php:39 -msgid "You may also like…" -msgstr "Saatat myös pitää..." - -# @ woocommerce -#: templates/single-product-reviews.php:30 -msgid "%s review for %s" -msgid_plural "%s reviews for %s" -msgstr[0] "%s arvio tuotteelle %s" -msgstr[1] "%s arviot tuotteelle %s" - -# @ woocommerce -#: templates/single-product-reviews.php:36 -#: templates/single-product-reviews.php:42 -msgid "Reviews" -msgstr "Arviot" - -# @ woocommerce -#: templates/single-product-reviews.php:58 -msgid " Previous" -msgstr " Edellinen" - -# @ woocommerce -#: templates/single-product-reviews.php:59 -msgid "Next " -msgstr "Seuraava " - -# @ woocommerce -#: templates/single-product-reviews.php:63 -msgid "Add Your Review" -msgstr "Lisää arvio" - -# @ woocommerce -#: templates/single-product-reviews.php:63 -msgid "Add Review" -msgstr "Lisää arvio" - -# @ woocommerce -#: templates/single-product-reviews.php:65 -msgid "Add a review" -msgstr "Lisää arvio" - -# @ woocommerce -#: templates/single-product-reviews.php:69 -msgid "Be the first to review" -msgstr "Kirjoita ensimmäinen tuotearvio tuotteelle" - -#: templates/single-product-reviews.php:71 -msgid "" -"There are no reviews yet, would you like to submit yours?" -msgstr "" -"Arvioita ei vielä ole. Kirjoittaisitko arvion?" - -# @ woocommerce -#: templates/single-product-reviews.php:89 -msgid "Submit Review" -msgstr "Lisää arvio" - -# @ woocommerce -#: templates/single-product-reviews.php:96 -msgid "Rating" -msgstr "Arvostelu" - -# @ woocommerce -#: templates/single-product-reviews.php:97 -msgid "Rate…" -msgstr "Arvostele..." - -# @ woocommerce -#: templates/single-product-reviews.php:98 -msgid "Perfect" -msgstr "Täydellinen" - -# @ woocommerce -#: templates/single-product-reviews.php:99 -msgid "Good" -msgstr "Hyvä" - -# @ woocommerce -#: templates/single-product-reviews.php:100 -msgid "Average" -msgstr "Kohtalainen" - -# @ woocommerce -#: templates/single-product-reviews.php:101 -msgid "Not that bad" -msgstr "Välttävä" - -# @ woocommerce -#: templates/single-product-reviews.php:102 -msgid "Very Poor" -msgstr "Huono" - -# @ woocommerce -#: templates/single-product-reviews.php:107 -msgid "Your Review" -msgstr "Arviosi" - -# @ woocommerce -#: woocommerce-ajax.php:119 -msgid "Sorry, your session has expired." -msgstr "Pahoittelemme, istunto on vanhentunut." - -# @ woocommerce -#: woocommerce-ajax.php:119 -msgid "Return to homepage →" -msgstr "Palaa etusivulle →" - -# @ woocommerce -#: woocommerce-ajax.php:256 woocommerce-ajax.php:290 woocommerce-ajax.php:313 -msgid "You do not have sufficient permissions to access this page." -msgstr "Sivulle pääsyä on rajoitettu. Tarvitset laajemmat oikeudet." - -# @ woocommerce -#: woocommerce-ajax.php:258 woocommerce-ajax.php:291 woocommerce-ajax.php:314 -msgid "You have taken too long. Please go back and retry." -msgstr "" -"Toimenpide on ylittänyt sille asetetun (turvallisuus) aikarajan. Ole hyvä ja " -"tee uudelleen." - -# @ woocommerce -#: woocommerce-ajax.php:550 -msgid "Same as parent" -msgstr "Sama kuin ylemmällä tasolla" - -# @ woocommerce -#: woocommerce-ajax.php:551 -msgid "Standard" -msgstr "Standardi" - -#: woocommerce-ajax.php:1102 -msgid "" -"No products had their stock reduced - they may not have stock management " -"enabled." -msgstr "" -"Tuotteiden varastomääriä ei vähennetty – ehkä tuotteilla ei ole käytössä " -"varastoseurantaa." - -# @ woocommerce -#: woocommerce-ajax.php:1146 woocommerce-ajax.php:1147 -msgid "Item #%s stock increased from %s to %s." -msgstr "Tuotteen #%s varastoa lisätty määrästä %s määrään %s." - -#: woocommerce-ajax.php:1154 -msgid "" -"No products had their stock increased - they may not have stock management " -"enabled." -msgstr "" -"Tuotteiden varastomääriä ei lisätty – ehkä tuotteilla ei ole käytössä " -"varastoseurantaa." - -# @ woocommerce -#: woocommerce-ajax.php:1175 -msgid "Value" -msgstr "Arvo" - -# @ woocommerce -#: woocommerce-ajax.php:1487 -msgid "Delete note" -msgstr "Poista kommentti" - -# @ woocommerce -#: woocommerce-core-functions.php:275 -msgid "%s – %s%s" -msgstr "%s – %s%s" - -# @ woocommerce -#: woocommerce-core-functions.php:713 -msgid "Australian Dollars" -msgstr "Australian dollari AUD" - -# @ woocommerce -#: woocommerce-core-functions.php:714 -msgid "Brazilian Real" -msgstr "Brasilian real BRL" - -#: woocommerce-core-functions.php:715 -msgid "Canadian Dollars" -msgstr "Kanadan dollari CAD" - -#: woocommerce-core-functions.php:716 -msgid "Chinese Yuan" -msgstr "Kiinan renminbi yuan CNY" - -#: woocommerce-core-functions.php:717 -msgid "Czech Koruna" -msgstr "Tsekin koruna CZK" - -#: woocommerce-core-functions.php:718 -msgid "Danish Krone" -msgstr "Tanskan kruunu DKK" - -#: woocommerce-core-functions.php:719 -msgid "Euros" -msgstr "Euro EUR" - -# @ woocommerce -#: woocommerce-core-functions.php:720 -msgid "Hong Kong Dollar" -msgstr "Hong Kongin Dollari HKD" - -#: woocommerce-core-functions.php:721 -msgid "Hungarian Forint" -msgstr "Unkarin forintti HUF" - -# @ woocommerce -#: woocommerce-core-functions.php:722 -msgid "Indonesia Rupiah" -msgstr "Indonesian rupia IDR" - -# @ woocommerce -#: woocommerce-core-functions.php:723 -msgid "Indian Rupee" -msgstr "Intian rupia INR" - -# @ woocommerce -#: woocommerce-core-functions.php:724 -msgid "Israeli Shekel" -msgstr "Israelin sekeli ILS" - -#: woocommerce-core-functions.php:725 -msgid "Japanese Yen" -msgstr "Japanin jeni JPY" - -# @ woocommerce -#: woocommerce-core-functions.php:726 -msgid "South Korean Won" -msgstr "Etelä-Korean won" - -# @ woocommerce -#: woocommerce-core-functions.php:727 -msgid "Malaysian Ringgits" -msgstr "Malesian Ringgits MYR" - -# @ woocommerce -#: woocommerce-core-functions.php:728 -msgid "Mexican Peso" -msgstr "Meksikon peso MXN" - -#: woocommerce-core-functions.php:729 -msgid "Norwegian Krone" -msgstr "Norjan kruunu NOK" - -# @ woocommerce -#: woocommerce-core-functions.php:730 -msgid "New Zealand Dollar" -msgstr "Uuden-Seelannin dollari NZD" - -# @ woocommerce -#: woocommerce-core-functions.php:731 -msgid "Philippine Pesos" -msgstr "Filippiinien peso PHP" - -#: woocommerce-core-functions.php:732 -msgid "Polish Zloty" -msgstr "Puolan zloty PLN" - -#: woocommerce-core-functions.php:733 -msgid "Pounds Sterling" -msgstr "Punta GBP" - -# @ woocommerce -#: woocommerce-core-functions.php:734 -msgid "Romanian Leu" -msgstr "Romanian lei RON" - -# @ woocommerce -#: woocommerce-core-functions.php:735 -msgid "Russian Ruble" -msgstr "Venäjän rupla RUB" - -# @ woocommerce -#: woocommerce-core-functions.php:736 -msgid "Singapore Dollar" -msgstr "Singaporen dollari SGD" - -# @ woocommerce -#: woocommerce-core-functions.php:737 -msgid "South African rand" -msgstr "Etelä-Afrikan randi ZAR" - -#: woocommerce-core-functions.php:738 -msgid "Swedish Krona" -msgstr "Ruotsin kruunu SEK" - -#: woocommerce-core-functions.php:739 -msgid "Swiss Franc" -msgstr "Sveitsin frangi CHF" - -#: woocommerce-core-functions.php:740 -msgid "Taiwan New Dollars" -msgstr "Taiwanin uusi dollari TWD" - -#: woocommerce-core-functions.php:741 -msgid "Thai Baht" -msgstr "Thaimaan baht THB" - -#: woocommerce-core-functions.php:742 -msgid "Turkish Lira" -msgstr "Turkin liira TRY" - -#: woocommerce-core-functions.php:743 -msgid "US Dollars" -msgstr "Yhdysvaltain dollari USD" - -# @ woocommerce -#: woocommerce-core-functions.php:1234 woocommerce-core-functions.php:1260 -msgid "Download Permissions Granted" -msgstr "Myönnetty pääsy tiedoston lataamiseen." - -# @ woocommerce -#: woocommerce-core-functions.php:1384 -msgctxt "slug" -msgid "uncategorized" -msgstr "Ei-luokiteltu" - -# @ woocommerce -#: woocommerce-core-functions.php:1577 -msgid "Select a category" -msgstr "Valitse osasto" - -# @ woocommerce -#: woocommerce-core-functions.php:1581 -msgid "Uncategorized" -msgstr "Ei-luokiteltu" - -# @ woocommerce -#: woocommerce-core-functions.php:1954 -msgid "Customer" -msgstr "Asiakas" - -# @ woocommerce -#: woocommerce-core-functions.php:1961 -msgid "Shop Manager" -msgstr "Kauppias" - -# @ woocommerce -#: woocommerce-core-functions.php:2520 -msgid "Unpaid order cancelled - time limit reached." -msgstr "Maksamaton tilaus peruutettu – aikaraja ylittyi." - -# @ woocommerce -#: woocommerce-functions.php:230 woocommerce-functions.php:277 -msgid "Cart updated." -msgstr "Ostoskori päivitetty." - -# @ woocommerce -#: woocommerce-functions.php:261 -msgid "You can only have 1 %s in your cart." -msgstr "Ostoskoriin voi lisätä vain yhden (1 kpl) %s." - -# @ woocommerce -#: woocommerce-functions.php:321 woocommerce-functions.php:379 -msgid "Please choose product options…" -msgstr "Valitse tuotteen vaihtoehdoista..." - -# @ woocommerce -#: woocommerce-functions.php:412 -msgid "" -"Please choose the quantity of items you wish to add to your cart…" -msgstr "Ole hyvä, valitse kuinka monta tuotetta lisätään ostoskoriin..." - -# @ woocommerce -#: woocommerce-functions.php:419 -msgid "Please choose a product to add to your cart…" -msgstr "Ole hyvä, valitse tuote joka lisätään ostoskoriin..." - -# @ woocommerce -#: woocommerce-functions.php:488 -msgid "Added "%s" to your cart." -msgstr "Lisättiin "%s" ostoskoriin." - -# @ default -#: woocommerce-functions.php:488 -msgid "" and "" -msgstr "" ja "" - -# @ woocommerce -#: woocommerce-functions.php:491 -msgid ""%s" was successfully added to your cart." -msgstr ""%s" lisättiin ostoskoriin." - -# @ woocommerce -#: woocommerce-functions.php:499 -msgid "Continue Shopping →" -msgstr "Takaisin kauppaan →" - -# @ woocommerce -#: woocommerce-functions.php:670 woocommerce-functions.php:672 -#: woocommerce-functions.php:680 -msgid "Error" -msgstr "Virhe" - -# @ woocommerce -#: woocommerce-functions.php:670 -msgid "Username is required." -msgstr "Käyttäjätunnus vaaditaan." - -# @ woocommerce -#: woocommerce-functions.php:672 woocommerce-functions.php:764 -msgid "Password is required." -msgstr "Salasana vaaditaan." - -# @ woocommerce -#: woocommerce-functions.php:680 -msgid "A user could not be found with this email address." -msgstr "Sähköpostiosoitteella ei löytynyt käyttäjää." - -# @ woocommerce -#: woocommerce-functions.php:738 -msgid "Please enter a username." -msgstr "Syötä käyttäjätunnus." - -# @ woocommerce -#: woocommerce-functions.php:740 -msgid "" -"This username is invalid because it uses illegal characters. Please enter a " -"valid username." -msgstr "" -"Käyttäjätunnus ei kelpaa koska siinä on (kirjoitus)merkkejä joita ei voi " -"käyttää tunnuksessa. Ole hyvä ja syötä muu käyttäjätunnus." - -# @ woocommerce -#: woocommerce-functions.php:743 -msgid "This username is already registered, please choose another one." -msgstr "Käyttäjätunnus on varattu. Ole hyvä, valitse toinen." - -# @ woocommerce -#: woocommerce-functions.php:755 -msgid "Please type your e-mail address." -msgstr "Kirjoita sähköpostiosoite." - -# @ woocommerce -#: woocommerce-functions.php:757 -msgid "The email address isn’t correct." -msgstr "Sähköpostiosoite ei kelpaa." - -# @ woocommerce -#: woocommerce-functions.php:760 -msgid "This email is already registered, please choose another one." -msgstr "" -"Samalle sähköpostiosoitteelle on jo rekisteröity tili. Ole hyvä, kirjaudu " -"sisään - tai valitse toinen." - -# @ woocommerce -#: woocommerce-functions.php:765 -msgid "Re-enter your password." -msgstr "Syötä salasana uudelleen." - -# @ woocommerce -#: woocommerce-functions.php:770 -msgid "Anti-spam field was filled in." -msgstr "Roskapostin esto -kenttä on täytetty" - -# @ woocommerce -#: woocommerce-functions.php:878 -msgid "The cart has been filled with the items from your previous order." -msgstr "Ostoskorissa on nyt aiemman tilauksen tuotteet." - -# @ woocommerce -#: woocommerce-functions.php:904 -msgid "Order cancelled by customer." -msgstr "Asiakas perui tilauksen." - -# @ woocommerce -#: woocommerce-functions.php:907 -msgid "Your order was cancelled." -msgstr "Tilaus peruttiin." - -# @ woocommerce -#: woocommerce-functions.php:913 -msgid "" -"Your order is no longer pending and could not be cancelled. Please contact " -"us if you need assistance." -msgstr "" -"Tilauksesi on käsitelty ja sitä ei voi enää peruuttaa. Ota yhteyttä, jos " -"tarvitset ohjeita." - -# @ woocommerce -#: woocommerce-functions.php:948 -msgid "Invalid email address." -msgstr "Sähköpostiosoite ei kelpaa." - -# @ woocommerce -#: woocommerce-functions.php:948 woocommerce-functions.php:971 -#: woocommerce-functions.php:991 woocommerce-functions.php:997 -#: woocommerce-functions.php:1001 woocommerce-functions.php:1004 -#: woocommerce-functions.php:1034 woocommerce-functions.php:1170 -msgid "Go to homepage →" -msgstr "Siirry etusivulle →" - -# @ woocommerce -#: woocommerce-functions.php:971 -msgid "Invalid download." -msgstr "Lataus ei ole käytettävissä." - -# @ woocommerce -#: woocommerce-functions.php:983 -msgid "You must be logged in to download files." -msgstr "" -"Vain sisäänkirjautuneena voit ladata tiedostoja. Kirjaudu sisään, ole hyvä." - -# @ woocommerce -#: woocommerce-functions.php:983 -msgid "Login →" -msgstr "Kirjaudu →" - -# @ woocommerce -#: woocommerce-functions.php:986 -msgid "This is not your download link." -msgstr "Tämä ei ole (sinulle tarkoitettu) latauslinkki." - -# @ woocommerce -#: woocommerce-functions.php:991 -msgid "Product no longer exists." -msgstr "Tuotetta ei enää ole." - -# @ woocommerce -#: woocommerce-functions.php:1001 -msgid "Sorry, you have reached your download limit for this file" -msgstr "Pahoittelemme, tiedoston latausten määrä on ylittänyt maksimimäärän." - -# @ woocommerce -#: woocommerce-functions.php:1004 -msgid "Sorry, this download has expired" -msgstr "Pahoittelemme, pääsy lataukseen on umpeutunut." - -#: woocommerce-functions.php:1034 -msgid "No file defined" -msgstr "Tiedostoa ei ole asetettu" - -# @ woocommerce -#: woocommerce-functions.php:1170 -msgid "File not found" -msgstr "Tiedostoa ei löydy" - -# @ woocommerce -#: woocommerce-functions.php:1286 -msgid "New products" -msgstr "Uudet tuotteet" - -# @ woocommerce -#: woocommerce-functions.php:1294 -msgid "New products added to %s" -msgstr "Uudet tuotteet lisätty %s" - -# @ woocommerce -#: woocommerce-functions.php:1302 -msgid "New products tagged %s" -msgstr "Uudet tuotteet avainsanalla %s" - -# @ woocommerce -#: woocommerce-functions.php:1340 -msgid "You have taken too long. Please go back and refresh the page." -msgstr "" -"Toimenpide on ylittänyt (turvallisuus) aikarajan. Palaa taaksepäin ja " -"päivitä sivu, ole hyvä." - -# @ woocommerce -#: woocommerce-functions.php:1343 -msgid "Please rate the product." -msgstr "Arvostele tuote, ole hyvä." - -# @ woocommerce -#: woocommerce-functions.php:1651 -msgid "Password changed successfully." -msgstr "Salasana vaihdettiin." - -# @ woocommerce -#: woocommerce-functions.php:1727 -msgid "Address changed successfully." -msgstr "Osoite vaihdettiin." - -# @ woocommerce -#: woocommerce-template.php:200 -msgid "" -"This is a demo store for testing purposes — no orders shall be " -"fulfilled." -msgstr "" -"Tämä verkkokauppa on vain esittelyä varten — tilauksia ei käsitellä." - -# @ woocommerce -#: woocommerce-template.php:219 -msgid "Search Results: “%s”" -msgstr "Etsinnän tulos: “%s”" - -# @ woocommerce -#: woocommerce-template.php:222 -msgid " – Page %s" -msgstr " – Sivu %s" - -# @ woocommerce -#: woocommerce-template.php:767 -msgid "Reviews (%d)" -msgstr "Arviot (%d)" - -# @ woocommerce -#: woocommerce-template.php:993 -msgctxt "breadcrumb" -msgid "Home" -msgstr "Etusivu" - -#: woocommerce-template.php:1292 woocommerce.php:1211 -msgid "required" -msgstr "vaaditaan" - -# @ woocommerce -#: woocommerce-template.php:1343 -msgid "Update country" -msgstr "Päivitä maa" - -# @ woocommerce -#: woocommerce-template.php:1498 -msgid "Search for:" -msgstr "Etsi:" - -# @ woocommerce -#: woocommerce-template.php:1499 -msgid "Search for products" -msgstr "Etsi tuotteita" - -# @ woocommerce -#: woocommerce-template.php:1500 woocommerce.php:950 -msgid "Search" -msgstr "Haku" - -#: woocommerce.php:171 -msgid "Docs" -msgstr "Ohjeet" - -#: woocommerce.php:172 -msgid "Premium Support" -msgstr "Korkealuokkainen tukipalvelu" - -# @ woocommerce -#: woocommerce.php:786 -msgctxt "slug" -msgid "product-category" -msgstr "tuote-osasto" - -# @ woocommerce -#: woocommerce.php:787 -msgctxt "slug" -msgid "product-tag" -msgstr "tuote-avainsana" - -# @ woocommerce -#: woocommerce.php:789 -msgctxt "slug" -msgid "product" -msgstr "tuote" - -# @ woocommerce -#: woocommerce.php:824 -msgid "Product Category" -msgstr "Osasto" - -# @ woocommerce -#: woocommerce.php:825 -msgctxt "Admin menu name" -msgid "Categories" -msgstr "Osastot" - -# @ woocommerce -#: woocommerce.php:826 -msgid "Search Product Categories" -msgstr "Etsi osastoista" - -# @ woocommerce -#: woocommerce.php:827 -msgid "All Product Categories" -msgstr "Kaikki osastot" - -# @ woocommerce -#: woocommerce.php:828 -msgid "Parent Product Category" -msgstr "Ylemmän tason osasto" - -# @ woocommerce -#: woocommerce.php:829 -msgid "Parent Product Category:" -msgstr "Ylemmän tason osasto:" - -# @ woocommerce -#: woocommerce.php:830 -msgid "Edit Product Category" -msgstr "Muokkaa osastoa" - -# @ woocommerce -#: woocommerce.php:831 -msgid "Update Product Category" -msgstr "Päivitä osasto" - -# @ woocommerce -#: woocommerce.php:832 -msgid "Add New Product Category" -msgstr "Lisää uusi osasto" - -# @ woocommerce -#: woocommerce.php:833 -msgid "New Product Category Name" -msgstr "Uusi osaston nimi" - -# @ woocommerce -#: woocommerce.php:860 -msgid "Product Tag" -msgstr "Avainsana tuotteelle" - -# @ woocommerce -#: woocommerce.php:861 -msgctxt "Admin menu name" -msgid "Tags" -msgstr "Avainsanat" - -# @ woocommerce -#: woocommerce.php:862 -msgid "Search Product Tags" -msgstr "Etsi tuotteiden avainsanoja" - -# @ woocommerce -#: woocommerce.php:863 -msgid "All Product Tags" -msgstr "Kaikki tuotteiden avainsanat" - -# @ woocommerce -#: woocommerce.php:864 -msgid "Parent Product Tag" -msgstr "Ylemmän tason avainsana" - -# @ woocommerce -#: woocommerce.php:865 -msgid "Parent Product Tag:" -msgstr "Ylemmän tason avainsana:" - -# @ woocommerce -#: woocommerce.php:866 -msgid "Edit Product Tag" -msgstr "Muokkaa avainsanaa" - -# @ woocommerce -#: woocommerce.php:867 -msgid "Update Product Tag" -msgstr "Päivitä avainsana" - -# @ woocommerce -#: woocommerce.php:868 -msgid "Add New Product Tag" -msgstr "Lisää uusi avainsana" - -# @ woocommerce -#: woocommerce.php:869 -msgid "New Product Tag Name" -msgstr "Uusi avainsanan nimi" - -# @ woocommerce -#: woocommerce.php:888 woocommerce.php:890 -msgid "Shipping Classes" -msgstr "Toimitusluokat" - -# @ woocommerce -#: woocommerce.php:892 -msgctxt "Admin menu name" -msgid "Shipping Classes" -msgstr "Toimitusluokat" - -# @ woocommerce -#: woocommerce.php:893 -msgid "Search Shipping Classes" -msgstr "Etsi toimitusluokista" - -# @ woocommerce -#: woocommerce.php:894 -msgid "All Shipping Classes" -msgstr "Kaikki toimitusluokat" - -# @ woocommerce -#: woocommerce.php:895 -msgid "Parent Shipping Class" -msgstr "Ylempi toimitusluokka" - -# @ woocommerce -#: woocommerce.php:896 -msgid "Parent Shipping Class:" -msgstr "Ylempi toimitusluokka:" - -# @ woocommerce -#: woocommerce.php:897 -msgid "Edit Shipping Class" -msgstr "Muokkaa toimitusluokkaa" - -# @ woocommerce -#: woocommerce.php:898 -msgid "Update Shipping Class" -msgstr "Päivitä toimitusluokka" - -# @ woocommerce -#: woocommerce.php:899 -msgid "Add New Shipping Class" -msgstr "Lisää uusi toimitusluokka" - -# @ woocommerce -#: woocommerce.php:900 -msgid "New Shipping Class Name" -msgstr "Uuden toimitusluokan nimi" - -# @ woocommerce -#: woocommerce.php:951 -msgid "All" -msgstr "Kaikki" - -# @ woocommerce -#: woocommerce.php:952 woocommerce.php:953 -msgid "Parent" -msgstr "Ylempi taso" - -# @ woocommerce -#: woocommerce.php:955 -msgid "Update" -msgstr "Päivitä" - -# @ woocommerce -#: woocommerce.php:956 -msgid "Add New" -msgstr "Lisää uusi" - -# @ woocommerce -#: woocommerce.php:957 -msgid "New" -msgstr "Uusi" - -# @ woocommerce -#: woocommerce.php:987 -msgctxt "Admin menu name" -msgid "Products" -msgstr "Tuotteet" - -# @ woocommerce -#: woocommerce.php:988 -msgid "Add Product" -msgstr "Lisää tuote" - -# @ woocommerce -#: woocommerce.php:989 -msgid "Add New Product" -msgstr "Lisää uusi tuote" - -# @ woocommerce -#: woocommerce.php:991 -msgid "Edit Product" -msgstr "Muokkaa tuotetta" - -# @ woocommerce -#: woocommerce.php:992 -msgid "New Product" -msgstr "Uusi tuote" - -# @ woocommerce -#: woocommerce.php:993 woocommerce.php:994 -msgid "View Product" -msgstr "Tarkastele tuotetta" - -# @ woocommerce -#: woocommerce.php:995 -msgid "Search Products" -msgstr "Etsi tuotteita" - -# @ woocommerce -#: woocommerce.php:996 -msgid "No Products found" -msgstr "Etsittyä tuotetta ei löytynyt" - -# @ woocommerce -#: woocommerce.php:997 -msgid "No Products found in trash" -msgstr "Roskakorissa ei ole tuotteita" - -# @ woocommerce -#: woocommerce.php:998 -msgid "Parent Product" -msgstr "Ylemmän tason tuote" - -# @ woocommerce -#: woocommerce.php:1000 -msgid "This is where you can add new products to your store." -msgstr "Tässä lisätään tuotteita verkkokauppaan." - -# @ woocommerce -#: woocommerce.php:1023 -msgid "Variations" -msgstr "Muunnelmat" - -# @ woocommerce -#: woocommerce.php:1024 -msgid "Variation" -msgstr "Muunnelma" - -# @ woocommerce -#: woocommerce.php:1025 -msgid "Add Variation" -msgstr "Lisää muunnelma" - -# @ woocommerce -#: woocommerce.php:1026 -msgid "Add New Variation" -msgstr "Lisää uusi muunnelma" - -# @ woocommerce -#: woocommerce.php:1028 -msgid "Edit Variation" -msgstr "Muokkaa muunnelmaa" - -# @ woocommerce -#: woocommerce.php:1029 -msgid "New Variation" -msgstr "Uusi muunnelma" - -# @ woocommerce -#: woocommerce.php:1030 woocommerce.php:1031 -msgid "View Variation" -msgstr "Tarkastele muunnelmaa" - -# @ woocommerce -#: woocommerce.php:1032 -msgid "Search Variations" -msgstr "Etsi muunnelmista" - -# @ woocommerce -#: woocommerce.php:1033 -msgid "No Variations found" -msgstr "Muunnelmaa ei löytynyt" - -# @ woocommerce -#: woocommerce.php:1034 -msgid "No Variations found in trash" -msgstr "Roskakorissa ei ole muunnelmia" - -# @ woocommerce -#: woocommerce.php:1035 -msgid "Parent Variation" -msgstr "Ylemmän tason muunnelma" - -# @ woocommerce -#: woocommerce.php:1052 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Tilaukset" - -# @ woocommerce -#: woocommerce.php:1061 -msgid "Orders" -msgstr "Tilaukset" - -# @ woocommerce -#: woocommerce.php:1063 -msgid "Add Order" -msgstr "Lisää tilaus" - -# @ woocommerce -#: woocommerce.php:1064 -msgid "Add New Order" -msgstr "Lisää uusi tilaus" - -# @ woocommerce -#: woocommerce.php:1066 -msgid "Edit Order" -msgstr "Muokkaa tilausta" - -# @ woocommerce -#: woocommerce.php:1067 -msgid "New Order" -msgstr "Uusi tilaus" - -# @ woocommerce -#: woocommerce.php:1070 -msgid "Search Orders" -msgstr "Etsi tilauksia" - -# @ woocommerce -#: woocommerce.php:1071 -msgid "No Orders found" -msgstr "Tilauksia ei löytynyt" - -# @ woocommerce -#: woocommerce.php:1072 -msgid "No Orders found in trash" -msgstr "Roskakorissa ei ole tilauksia" - -# @ woocommerce -#: woocommerce.php:1073 -msgid "Parent Orders" -msgstr "Ylemmän tason tilaukset" - -# @ woocommerce -#: woocommerce.php:1076 -msgid "This is where store orders are stored." -msgstr "Täällä säilytetään kaupan tilaukset." - -# @ woocommerce -#: woocommerce.php:1098 -msgid "Coupons" -msgstr "Kupongit" - -# @ woocommerce -#: woocommerce.php:1100 -msgctxt "Admin menu name" -msgid "Coupons" -msgstr "Kupongit" - -# @ woocommerce -#: woocommerce.php:1101 -msgid "Add Coupon" -msgstr "Lisää kuponki" - -# @ woocommerce -#: woocommerce.php:1102 -msgid "Add New Coupon" -msgstr "Lisää uusi kuponki" - -# @ woocommerce -#: woocommerce.php:1104 -msgid "Edit Coupon" -msgstr "Muokkaa kuponkia" - -# @ woocommerce -#: woocommerce.php:1105 -msgid "New Coupon" -msgstr "Uusi kuponki" - -# @ woocommerce -#: woocommerce.php:1106 -msgid "View Coupons" -msgstr "Katso kuponkeja" - -# @ woocommerce -#: woocommerce.php:1107 -msgid "View Coupon" -msgstr "Katso kuponkia" - -# @ woocommerce -#: woocommerce.php:1108 -msgid "Search Coupons" -msgstr "Etsi kuponkeja" - -# @ woocommerce -#: woocommerce.php:1109 -msgid "No Coupons found" -msgstr "Kuponkeja ei löytynyt" - -# @ woocommerce -#: woocommerce.php:1110 -msgid "No Coupons found in trash" -msgstr "Roskakorissa ei ole kuponkeja" - -# @ woocommerce -#: woocommerce.php:1111 -msgid "Parent Coupon" -msgstr "Ylemmän tason kuponki" - -# @ woocommerce -#: woocommerce.php:1113 -msgid "" -"This is where you can add new coupons that customers can use in your store." -msgstr "" -"Tässä tehdään uusia kuponkeja. Asiakkaat saavat niillä alennuksia/etuja " -"tuotteista ja palveluista." - -# @ woocommerce -#: woocommerce.php:1208 -msgid "Select an option…" -msgstr "Valitse joku vaihtoehto..." - -# @ woocommerce -#: woocommerce.php:1209 -msgid "Please select a rating" -msgstr "Valitse arvostelu, ole hyvä." - -#: woocommerce.php:1210 -msgid "" -"Sorry, no products matched your selection. Please choose a different " -"combination." -msgstr "" -"Pahoittelemme, valitun kaltaisia tuotteita ei löytynyt. Ole hyvä, valitse " -"eri tavalla." - -# @ woocommerce -#: woocommerce.php:1692 -msgid "Cart % Discount" -msgstr "Alennus % ostoskorissa" - -# @ woocommerce -#: woocommerce.php:1693 -msgid "Product Discount" -msgstr "Alennus tuotteesta" - -# @ woocommerce -#: woocommerce.php:1694 -msgid "Product % Discount" -msgstr "Alennus % tuotteesta" - -# @ woocommerce -#: woocommerce.php:1759 -msgid "Action failed. Please refresh the page and retry." -msgstr "Toiminto ei onnistunut. Päivitä sivu ja yritä uudelleen." diff --git a/i18n/languages/woocommerce-fr_FR.mo b/i18n/languages/woocommerce-fr_FR.mo deleted file mode 100644 index 06c6072d7a5..00000000000 Binary files a/i18n/languages/woocommerce-fr_FR.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-fr_FR.po b/i18n/languages/woocommerce-fr_FR.po deleted file mode 100644 index a70cf6000c5..00000000000 --- a/i18n/languages/woocommerce-fr_FR.po +++ /dev/null @@ -1,14154 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce 2.0.18\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-04-29 16:02:06+00:00\n" -"PO-Revision-Date: \n" -"Last-Translator: Nicolas Sitbon \n" -"Language-Team: ABSOLUTE Web et prédécesseurs \n" -"Language: fr_FR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" -"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" -"X-Poedit-Basepath: ../../\n" -"X-Textdomain-Support: yes\n" -"X-Generator: Poedit 1.5.7\n" -"X-Poedit-SearchPath-0: ../..\n" - -#: assets/js/admin/editor_plugin_lang.php:5 -msgid "Insert Shortcode" -msgstr "Insérer Shortcode" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:6 -msgid "Product price/cart button" -msgstr "Prix produit/bouton panier" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:7 -msgid "Product by SKU/ID" -msgstr "Produit par UGS/ID" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:8 -msgid "Products by SKU/ID" -msgstr "Produits par UGS/ID" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:9 -msgid "Product categories" -msgstr "Catégories de produits" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:10 -msgid "Products by category slug" -msgstr "Produits par identifiant de catégorie" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:11 -msgid "Recent products" -msgstr "Produits récents" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:12 -msgid "Featured products" -msgstr "Produits Mis en Avant" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:13 -msgid "Shop Messages" -msgstr "Messages boutique" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:14 -msgid "Pages" -msgstr "Pages" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:15 -#: classes/widgets/class-wc-widget-cart.php:61 -msgid "Cart" -msgstr "Panier" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:16 -msgid "Checkout" -msgstr "Commande" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:17 -msgid "Order tracking" -msgstr "Suivi de commande" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:18 -#: templates/checkout/thankyou.php:30 -msgid "My Account" -msgstr "Mon Compte" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:19 -msgid "Edit Address" -msgstr "Modifier l'adresse" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:20 -msgid "Change Password" -msgstr "Changer de mot de passe" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:21 woocommerce.php:1065 -#: woocommerce.php:1066 -msgid "View Order" -msgstr "Voir la commande" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:22 -#: templates/checkout/thankyou.php:28 templates/myaccount/my-orders.php:71 -msgid "Pay" -msgstr "Payer" - -#: assets/js/admin/editor_plugin_lang.php:23 -msgid "Thankyou" -msgstr "Merci" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:431 -#: classes/emails/class-wc-email-customer-completed-order.php:135 -#: classes/emails/class-wc-email-customer-invoice.php:138 -#: classes/emails/class-wc-email-new-order.php:115 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:63 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:57 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:122 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:120 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:76 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:75 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:50 -msgid "Enable/Disable" -msgstr "Activer/Désactiver" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:433 -#: classes/emails/class-wc-email-customer-completed-order.php:137 -#: classes/emails/class-wc-email-customer-invoice.php:140 -#: classes/emails/class-wc-email-new-order.php:117 -msgid "Enable this email notification" -msgstr "Activer cette notification par email" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:437 -#: classes/emails/class-wc-email-customer-invoice.php:144 -msgid "Email subject" -msgstr "Sujet de l'email" - -#: classes/abstracts/abstract-wc-email.php:439 -#: classes/abstracts/abstract-wc-email.php:446 -#: classes/emails/class-wc-email-customer-completed-order.php:143 -#: classes/emails/class-wc-email-customer-completed-order.php:150 -#: classes/emails/class-wc-email-customer-completed-order.php:157 -#: classes/emails/class-wc-email-customer-completed-order.php:164 -#: classes/emails/class-wc-email-customer-invoice.php:146 -#: classes/emails/class-wc-email-customer-invoice.php:153 -#: classes/emails/class-wc-email-customer-invoice.php:160 -#: classes/emails/class-wc-email-customer-invoice.php:167 -msgid "Defaults to %s" -msgstr "Par défaut à %s" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:444 -#: classes/emails/class-wc-email-customer-invoice.php:151 -msgid "Email heading" -msgstr "Entête de l'email" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:451 -#: classes/emails/class-wc-email-customer-completed-order.php:169 -#: classes/emails/class-wc-email-customer-invoice.php:172 -#: classes/emails/class-wc-email-new-order.php:142 -msgid "Email type" -msgstr "Type d'email" - -#: classes/abstracts/abstract-wc-email.php:453 -#: classes/emails/class-wc-email-customer-completed-order.php:171 -#: classes/emails/class-wc-email-customer-invoice.php:174 -#: classes/emails/class-wc-email-new-order.php:144 -msgid "Choose which format of email to send." -msgstr "Choisissez quel format d'email envoyer." - -#: classes/abstracts/abstract-wc-email.php:457 -#: classes/emails/class-wc-email-customer-completed-order.php:175 -#: classes/emails/class-wc-email-customer-invoice.php:178 -#: classes/emails/class-wc-email-new-order.php:148 -msgid "Plain text" -msgstr "Texte brut" - -#: classes/abstracts/abstract-wc-email.php:458 -#: classes/emails/class-wc-email-customer-completed-order.php:176 -#: classes/emails/class-wc-email-customer-invoice.php:179 -#: classes/emails/class-wc-email-new-order.php:149 -msgid "HTML" -msgstr "HTML" - -#: classes/abstracts/abstract-wc-email.php:459 -#: classes/emails/class-wc-email-customer-completed-order.php:177 -#: classes/emails/class-wc-email-customer-invoice.php:180 -#: classes/emails/class-wc-email-new-order.php:150 -msgid "Multipart" -msgstr "Multi-parties" - -#: classes/abstracts/abstract-wc-email.php:495 -#: classes/abstracts/abstract-wc-email.php:516 -msgid "Could not write to template file." -msgstr "Ne peut être écrit sur le fichier modèle." - -#: classes/abstracts/abstract-wc-email.php:543 -msgid "Template file copied to theme." -msgstr "Fichier modèle copié dans le thème." - -#: classes/abstracts/abstract-wc-email.php:552 -msgid "Template file deleted from theme." -msgstr "Fichier modèle supprimé du thème." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:560 -#: classes/abstracts/abstract-wc-integration.php:30 -#: classes/abstracts/abstract-wc-settings-api.php:39 woocommerce.php:170 -msgid "Settings" -msgstr "Paramètres" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:572 -msgid "HTML template" -msgstr "Modèle HTML" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:573 -msgid "Plain text template" -msgstr "Modèle texte brut" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:592 -msgid "Delete template file" -msgstr "Supprimer le fichier modèle" - -#: classes/abstracts/abstract-wc-email.php:595 -msgid "" -"This template has been overridden by your theme and can be found in: " -"%s." -msgstr "" -"Ce modèle a été écrasé par votre thème et ne peut être trouvé dans : " -"%s." - -#: classes/abstracts/abstract-wc-email.php:610 -msgid "Copy file to theme" -msgstr "Copier le fichier dans le thème" - -#: classes/abstracts/abstract-wc-email.php:613 -msgid "" -"To override and edit this email template copy %s to your theme " -"folder: %s." -msgstr "" -"Pour écraser et modifier ce modèle d'email, copiez %s dans le " -"dossier de votre thème : %s." - -#: classes/abstracts/abstract-wc-email.php:624 -msgid "File was not found." -msgstr "Fichier non trouvé." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:649 -msgid "View template" -msgstr "Voir le modèle" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:650 -msgid "Hide template" -msgstr "Cacher le modèle" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:661 -msgid "Are you sure you want to delete this template file?" -msgstr "Êtes-vous certain de vouloir supprimer ce fichier modèle ?" - -#: classes/abstracts/abstract-wc-product.php:33 -msgid "" -"The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class " -"directly." -msgstr "" -"La classe WC_Product est dorénavant obsolète. Utilisez " -"get_product() pour charger une instance d'un produit plutôt que " -"d'appeler cette classe directement." - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:545 -#: classes/abstracts/abstract-wc-product.php:550 -#: classes/abstracts/abstract-wc-product.php:569 -msgid "In stock" -msgstr "En stock" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:550 -msgid "Only %s left in stock" -msgstr " Plus que %s en stock" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:553 -msgid "%s in stock" -msgstr " %s en stock" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:560 -msgid "(backorders allowed)" -msgstr "(réservations autorisées)" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:566 -#: classes/abstracts/abstract-wc-product.php:579 templates/cart/cart.php:76 -msgid "Available on backorder" -msgstr "Disponible sur commande" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:572 -#: classes/abstracts/abstract-wc-product.php:582 -#: classes/abstracts/abstract-wc-product.php:586 -msgid "Out of stock" -msgstr "Produit épuisé" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:846 -#: classes/abstracts/abstract-wc-product.php:852 -#: classes/class-wc-cart.php:1801 classes/class-wc-order.php:891 -#: classes/class-wc-product-variable.php:274 -#: classes/class-wc-product-variable.php:283 -#: classes/class-wc-product-variation.php:246 -msgid "Free!" -msgstr "Gratuit !" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:870 -msgctxt "min_price" -msgid "From:" -msgstr "A partir de :" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:959 -#: templates/single-product-reviews.php:28 -msgid "Rated %s out of 5" -msgstr "Note %s sur 5" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:961 -#: templates/single-product/review.php:27 -#: templates/single-product-reviews.php:28 -msgid "out of 5" -msgstr "sur 5" - -#: classes/class-wc-cache-helper.php:92 -msgid "" -"In order for database caching to work with WooCommerce you " -"must add _wc_session_ to the \"Ignored Query Strings\" option " -"in W3 Total Cache settings here." -msgstr "" -"Pour que le cache de base de données fonctionne avec " -"WooCommerce vous devez ajouter _wc_session_ à l'option " -"\"Ignored Query Strings\" dans les paramètres de W3 Total Cache ici." - -# @ woocommerce -#: classes/class-wc-cart.php:460 -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -"Désolé, nous n'avons pas assez de \"%s\" en stock pour honorer votre " -"commande (%s en stock). Modifier votre panier svp et essayez encore. Nous " -"sommes désolés pour ce désagrément." - -# @ woocommerce -#: classes/class-wc-cart.php:479 classes/class-wc-cart.php:488 -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfil your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -"Désolé, nous n'avons pas assez de \"%s\" en stock pour honorer votre " -"commande (%s en stock). Veuillez modifier votre panier et essayez de " -"nouveau. Nous sommes désolés pour ce désagrément." - -# @ woocommerce -#: classes/class-wc-cart.php:523 -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfil your order right now. " -"Please try again in %d minutes or edit your cart and try again. We apologise " -"for any inconvenience caused." -msgstr "" -"Désolé, nous n'avons pas assez de \"%s\" en stock pour remplir votre " -"commande dès maintenant. Veuillez essayer de nouveau dans %d minutes ou " -"modifiez votre panier et essayez à nouveau. Nous nous excusons pour ce " -"désagrément." - -# @ woocommerce -#: classes/class-wc-cart.php:533 -msgid "" -"Sorry, \"%s\" is not in stock. Please edit your cart and try again. We " -"apologise for any inconvenience caused." -msgstr "" -"Désolé, \"%s\" n'est pas en stock. Veuillez modifier votre panier et " -"essayez à nouveau. Nous nous excusons pour ce désagrément." - -# @ woocommerce -#: classes/class-wc-cart.php:845 -msgid "Sorry, "%s" cannot be purchased." -msgstr "Désolé, "%s" ne peut pas être acheté." - -# @ woocommerce -#: classes/class-wc-cart.php:852 -msgid "" -"You cannot add "%s" to the cart because the product is out of " -"stock." -msgstr "" -"Vous ne pouvez ajouter "%s" au panier car nous n'en avons plus en " -"stock." - -# @ woocommerce -#: classes/class-wc-cart.php:857 -msgid "" -"You cannot add that amount of "%s" to the cart because there is " -"not enough stock (%s remaining)." -msgstr "" -"Vous ne pouvez pas ajouter cette quantité de "%s" au panier car il " -"n'y a pas assez de stock (reste %s)." - -# @ woocommerce -#: classes/class-wc-cart.php:869 classes/class-wc-cart.php:883 -#: classes/class-wc-cart.php:891 templates/cart/mini-cart.php:68 -#: woocommerce-functions.php:497 woocommerce.php:1210 -msgid "View Cart →" -msgstr "Voir panier →" - -#: classes/class-wc-cart.php:869 -msgid "You already have this item in your cart." -msgstr "Vous avez déjà ce produit dans votre panier." - -# @ woocommerce -#: classes/class-wc-cart.php:883 classes/class-wc-cart.php:891 -msgid "" -"%s You cannot add that amount to the " -"cart — we have %s in stock and you already have %s in your cart." -msgstr "" -"%s Vous ne pouvez ajouter ce montant au " -"panier — nous en avons %s en stock et vous en avez déjà %s dans votre " -"panier." - -# @ woocommerce -#: classes/class-wc-cart.php:1813 -msgid "via" -msgstr "par" - -# @ woocommerce -#: classes/class-wc-checkout.php:64 -msgid "Account username" -msgstr "Nom d'utilisateur du compte" - -# @ woocommerce -#: classes/class-wc-checkout.php:65 -msgctxt "placeholder" -msgid "Username" -msgstr "Nom d'utilisateur" - -# @ woocommerce -#: classes/class-wc-checkout.php:72 -msgid "Account password" -msgstr "Mot de passe du compte" - -# @ woocommerce -#: classes/class-wc-checkout.php:73 -msgctxt "placeholder" -msgid "Password" -msgstr "Mot de passe" - -# @ woocommerce -#: classes/class-wc-checkout.php:79 -msgid "Confirm password" -msgstr "Confirmer le mot de passe" - -# @ woocommerce -#: classes/class-wc-checkout.php:80 -msgctxt "placeholder" -msgid "Confirm password" -msgstr "Confirmation mot de passe" - -# @ woocommerce -#: classes/class-wc-checkout.php:89 -msgid "Order Notes" -msgstr "Notes de la commande" - -# @ woocommerce -#: classes/class-wc-checkout.php:90 -msgctxt "placeholder" -msgid "Notes about your order, e.g. special notes for delivery." -msgstr "Commentaires concernant votre commande, ex : consignes de livraison." - -# @ woocommerce -#: classes/class-wc-checkout.php:152 -msgid "Order – %s" -msgstr "Commande n°%s" - -#: classes/class-wc-checkout.php:152 -msgctxt "Order date parsed by strftime" -msgid "%b %d, %Y @ %I:%M %p" -msgstr "%b %d, %Y @ %I:%M %p" - -# @ woocommerce -#: classes/class-wc-checkout.php:278 -msgid "Backordered" -msgstr "En cours d'approvisionnement" - -# @ woocommerce -#: classes/class-wc-checkout.php:388 -msgid "" -"Sorry, your session has expired. Return to homepage →" -msgstr "" -"Désolé, votre session a expiré. Retour à l'accueil →" - -# @ woocommerce -#: classes/class-wc-checkout.php:440 woocommerce-functions.php:1696 -msgid "is a required field." -msgstr "est un champ requis." - -# @ woocommerce -#: classes/class-wc-checkout.php:453 -msgid "(%s) is not a valid postcode/ZIP." -msgstr "(%s) n'est pas un code postal valide." - -#: classes/class-wc-checkout.php:474 -msgid "is not valid. Please enter one of the following:" -msgstr "n'est pas valide. Veuillez entrer une des valeurs suivantes : " - -# @ woocommerce -#: classes/class-wc-checkout.php:482 -msgid "is not a valid number." -msgstr "n'est pas un nombre valide." - -# @ woocommerce -#: classes/class-wc-checkout.php:489 -msgid "is not a valid email address." -msgstr "n'est pas une adresse email valide." - -# @ woocommerce -#: classes/class-wc-checkout.php:545 -msgid "Please enter an account username." -msgstr "Entrez un nom d'utilisateur." - -# @ woocommerce -#: classes/class-wc-checkout.php:549 -msgid "Invalid email/username." -msgstr "Email/nom d'utilisateur non valide." - -# @ woocommerce -#: classes/class-wc-checkout.php:552 -msgid "" -"An account is already registered with that username. Please choose another." -msgstr "" -"Un compte est déjà enregistré avec ce nom d'utilisateur. Choisissez en un " -"autre, svp." - -# @ woocommerce -#: classes/class-wc-checkout.php:562 -msgid "Please enter an account password." -msgstr "Veuillez saisir un mot de passe." - -# @ woocommerce -#: classes/class-wc-checkout.php:565 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:83 -#: woocommerce-functions.php:758 woocommerce-functions.php:1626 -msgid "Passwords do not match." -msgstr "Mots de passe non correspondants" - -# @ woocommerce -#: classes/class-wc-checkout.php:569 -msgid "An account is already registered with your email address. Please login." -msgstr "" -"Un compte est déjà enregistré avec cette adresse email. Connectez vous, svp." - -# @ woocommerce -#: classes/class-wc-checkout.php:575 -msgid "You must accept our Terms & Conditions." -msgstr "Vous devez accepter nos Termes & Conditions." - -# @ woocommerce -#: classes/class-wc-checkout.php:584 -msgid "Invalid shipping method." -msgstr "Méthode de livraison non valide." - -# @ woocommerce -#: classes/class-wc-checkout.php:597 -msgid "Invalid payment method." -msgstr "Méthode de paiement non valide." - -#: classes/class-wc-checkout.php:637 woocommerce-functions.php:730 -#: woocommerce-functions.php:732 woocommerce-functions.php:735 -#: woocommerce-functions.php:747 woocommerce-functions.php:749 -#: woocommerce-functions.php:752 woocommerce-functions.php:786 -msgid "ERROR" -msgstr "ERREUR" - -#: classes/class-wc-checkout.php:637 woocommerce-functions.php:786 -msgid "" -"Couldn’t register you… please contact us if you continue to " -"have problems." -msgstr "" -"Impossible de vous inscrire... veuillez nous contacter if vous continuez " -"d'avoir des problèmes." - -# @ woocommerce -#: classes/class-wc-countries.php:37 -msgid "Afghanistan" -msgstr "Afghanistan" - -# @ woocommerce -#: classes/class-wc-countries.php:38 -msgid "Åland Islands" -msgstr "Aland Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:39 -msgid "Albania" -msgstr "Albanie" - -# @ woocommerce -#: classes/class-wc-countries.php:40 -msgid "Algeria" -msgstr "Algérie" - -# @ woocommerce -#: classes/class-wc-countries.php:41 -msgid "Andorra" -msgstr "Andorre" - -# @ woocommerce -#: classes/class-wc-countries.php:42 -msgid "Angola" -msgstr "Angola" - -# @ woocommerce -#: classes/class-wc-countries.php:43 -msgid "Anguilla" -msgstr "Anguilla" - -# @ woocommerce -#: classes/class-wc-countries.php:44 -msgid "Antarctica" -msgstr "Antarctica" - -# @ woocommerce -#: classes/class-wc-countries.php:45 -msgid "Antigua and Barbuda" -msgstr "Antigua and Barbuda" - -# @ woocommerce -#: classes/class-wc-countries.php:46 -msgid "Argentina" -msgstr "Argentine" - -# @ woocommerce -#: classes/class-wc-countries.php:47 -msgid "Armenia" -msgstr "Arménie" - -# @ woocommerce -#: classes/class-wc-countries.php:48 -msgid "Aruba" -msgstr "Aruba" - -# @ woocommerce -#: classes/class-wc-countries.php:49 -msgid "Australia" -msgstr "Australie" - -# @ woocommerce -#: classes/class-wc-countries.php:50 -msgid "Austria" -msgstr "Autriche" - -# @ woocommerce -#: classes/class-wc-countries.php:51 -msgid "Azerbaijan" -msgstr "Azerbaijan" - -# @ woocommerce -#: classes/class-wc-countries.php:52 -msgid "Bahamas" -msgstr "Bahamas" - -# @ woocommerce -#: classes/class-wc-countries.php:53 -msgid "Bahrain" -msgstr "Bahrain" - -# @ woocommerce -#: classes/class-wc-countries.php:54 -msgid "Bangladesh" -msgstr "Bangladesh" - -# @ woocommerce -#: classes/class-wc-countries.php:55 -msgid "Barbados" -msgstr "Barbados" - -# @ woocommerce -#: classes/class-wc-countries.php:56 -msgid "Belarus" -msgstr "Belarus" - -# @ woocommerce -#: classes/class-wc-countries.php:57 -msgid "Belgium" -msgstr "Belgique" - -# @ woocommerce -#: classes/class-wc-countries.php:58 -msgid "Belau" -msgstr "Belau" - -# @ woocommerce -#: classes/class-wc-countries.php:59 -msgid "Belize" -msgstr "Belize" - -# @ woocommerce -#: classes/class-wc-countries.php:60 -msgid "Benin" -msgstr "Benin" - -# @ woocommerce -#: classes/class-wc-countries.php:61 -msgid "Bermuda" -msgstr "Bermuda" - -# @ woocommerce -#: classes/class-wc-countries.php:62 -msgid "Bhutan" -msgstr "Bhutan" - -# @ woocommerce -#: classes/class-wc-countries.php:63 -msgid "Bolivia" -msgstr "Bolivie" - -#: classes/class-wc-countries.php:64 -msgid "Bonaire, Saint Eustatius and Saba" -msgstr "Saba, Saint-Eustache et Bonaire" - -# @ woocommerce -#: classes/class-wc-countries.php:65 -msgid "Bosnia and Herzegovina" -msgstr "Bosnie-Herzégovine" - -# @ woocommerce -#: classes/class-wc-countries.php:66 -msgid "Botswana" -msgstr "Botswana" - -# @ woocommerce -#: classes/class-wc-countries.php:67 -msgid "Bouvet Island" -msgstr "Île Bouvet" - -# @ woocommerce -#: classes/class-wc-countries.php:68 -msgid "Brazil" -msgstr "Brésil" - -# @ woocommerce -#: classes/class-wc-countries.php:69 -msgid "British Indian Ocean Territory" -msgstr "Territoire britannique de l'océan Indien" - -# @ woocommerce -#: classes/class-wc-countries.php:70 -msgid "British Virgin Islands" -msgstr "Îles Vierges britanniques" - -# @ woocommerce -#: classes/class-wc-countries.php:71 -msgid "Brunei" -msgstr "Brunei" - -# @ woocommerce -#: classes/class-wc-countries.php:72 -msgid "Bulgaria" -msgstr "Bulgarie" - -# @ woocommerce -#: classes/class-wc-countries.php:73 -msgid "Burkina Faso" -msgstr "Burkina Faso" - -# @ woocommerce -#: classes/class-wc-countries.php:74 -msgid "Burundi" -msgstr "Burundi" - -# @ woocommerce -#: classes/class-wc-countries.php:75 -msgid "Cambodia" -msgstr "Cambodge" - -# @ woocommerce -#: classes/class-wc-countries.php:76 -msgid "Cameroon" -msgstr "Cameroun" - -# @ woocommerce -#: classes/class-wc-countries.php:77 -msgid "Canada" -msgstr "Canada" - -# @ woocommerce -#: classes/class-wc-countries.php:78 -msgid "Cape Verde" -msgstr "Cap Vert" - -# @ woocommerce -#: classes/class-wc-countries.php:79 -msgid "Cayman Islands" -msgstr "Îles Caïmans" - -# @ woocommerce -#: classes/class-wc-countries.php:80 -msgid "Central African Republic" -msgstr "République centrafricaine" - -# @ woocommerce -#: classes/class-wc-countries.php:81 -msgid "Chad" -msgstr "Chad" - -# @ woocommerce -#: classes/class-wc-countries.php:82 -msgid "Chile" -msgstr "Chili" - -# @ woocommerce -#: classes/class-wc-countries.php:83 -msgid "China" -msgstr "Chine" - -# @ woocommerce -#: classes/class-wc-countries.php:84 -msgid "Christmas Island" -msgstr "Christmas Island" - -# @ woocommerce -#: classes/class-wc-countries.php:85 -msgid "Cocos (Keeling) Islands" -msgstr "Cocos (Keeling) Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:86 -msgid "Colombia" -msgstr "Colombie" - -# @ woocommerce -#: classes/class-wc-countries.php:87 -msgid "Comoros" -msgstr "Comoros" - -# @ woocommerce -#: classes/class-wc-countries.php:88 -msgid "Congo (Brazzaville)" -msgstr "Congo (Brazzaville)" - -# @ woocommerce -#: classes/class-wc-countries.php:89 -msgid "Congo (Kinshasa)" -msgstr "Congo (Kinshasa)" - -# @ woocommerce -#: classes/class-wc-countries.php:90 -msgid "Cook Islands" -msgstr "Îles Cook" - -# @ woocommerce -#: classes/class-wc-countries.php:91 -msgid "Costa Rica" -msgstr "Costa Rica" - -# @ woocommerce -#: classes/class-wc-countries.php:92 -msgid "Croatia" -msgstr "Croatie" - -# @ woocommerce -#: classes/class-wc-countries.php:93 -msgid "Cuba" -msgstr "Cuba" - -#: classes/class-wc-countries.php:94 -msgid "CuraÇao" -msgstr "Curaçao" - -# @ woocommerce -#: classes/class-wc-countries.php:95 -msgid "Cyprus" -msgstr "Chypre" - -# @ woocommerce -#: classes/class-wc-countries.php:96 -msgid "Czech Republic" -msgstr "République tchèque" - -# @ woocommerce -#: classes/class-wc-countries.php:97 -msgid "Denmark" -msgstr "Danemark" - -# @ woocommerce -#: classes/class-wc-countries.php:98 -msgid "Djibouti" -msgstr "Djibouti" - -# @ woocommerce -#: classes/class-wc-countries.php:99 -msgid "Dominica" -msgstr "Dominique" - -# @ woocommerce -#: classes/class-wc-countries.php:100 -msgid "Dominican Republic" -msgstr "République dominicaine" - -# @ woocommerce -#: classes/class-wc-countries.php:101 -msgid "Ecuador" -msgstr "Équateur" - -# @ woocommerce -#: classes/class-wc-countries.php:102 -msgid "Egypt" -msgstr "Égypte" - -# @ woocommerce -#: classes/class-wc-countries.php:103 -msgid "El Salvador" -msgstr "El Salvador" - -# @ woocommerce -#: classes/class-wc-countries.php:104 -msgid "Equatorial Guinea" -msgstr "Guinée équatoriale" - -# @ woocommerce -#: classes/class-wc-countries.php:105 -msgid "Eritrea" -msgstr "Erythrée" - -# @ woocommerce -#: classes/class-wc-countries.php:106 -msgid "Estonia" -msgstr "Estonie" - -# @ woocommerce -#: classes/class-wc-countries.php:107 -msgid "Ethiopia" -msgstr "Éthiopie" - -# @ woocommerce -#: classes/class-wc-countries.php:108 -msgid "Falkland Islands" -msgstr "Îles Falkland" - -# @ woocommerce -#: classes/class-wc-countries.php:109 -msgid "Faroe Islands" -msgstr "Îles Féroé" - -# @ woocommerce -#: classes/class-wc-countries.php:110 -msgid "Fiji" -msgstr "Fiji" - -# @ woocommerce -#: classes/class-wc-countries.php:111 -msgid "Finland" -msgstr "Finlande" - -# @ woocommerce -#: classes/class-wc-countries.php:112 -msgid "France" -msgstr "France" - -# @ woocommerce -#: classes/class-wc-countries.php:113 -msgid "French Guiana" -msgstr "Guyane française" - -# @ woocommerce -#: classes/class-wc-countries.php:114 -msgid "French Polynesia" -msgstr "Polynésie française" - -# @ woocommerce -#: classes/class-wc-countries.php:115 -msgid "French Southern Territories" -msgstr "Terres australes françaises" - -# @ woocommerce -#: classes/class-wc-countries.php:116 -msgid "Gabon" -msgstr "Gabon" - -# @ woocommerce -#: classes/class-wc-countries.php:117 -msgid "Gambia" -msgstr "Gambie" - -# @ woocommerce -#: classes/class-wc-countries.php:118 i18n/states/US.php:23 -msgid "Georgia" -msgstr "Georgia" - -# @ woocommerce -#: classes/class-wc-countries.php:119 -msgid "Germany" -msgstr "Allemagne" - -# @ woocommerce -#: classes/class-wc-countries.php:120 -msgid "Ghana" -msgstr "Ghana" - -# @ woocommerce -#: classes/class-wc-countries.php:121 -msgid "Gibraltar" -msgstr "Gibraltar" - -# @ woocommerce -#: classes/class-wc-countries.php:122 -msgid "Greece" -msgstr "Grèce" - -# @ woocommerce -#: classes/class-wc-countries.php:123 -msgid "Greenland" -msgstr "Groenland" - -# @ woocommerce -#: classes/class-wc-countries.php:124 -msgid "Grenada" -msgstr "Grenade" - -# @ woocommerce -#: classes/class-wc-countries.php:125 -msgid "Guadeloupe" -msgstr "Guadeloupe" - -# @ woocommerce -#: classes/class-wc-countries.php:126 -msgid "Guatemala" -msgstr "Guatemala" - -# @ woocommerce -#: classes/class-wc-countries.php:127 -msgid "Guernsey" -msgstr "Guernesey" - -# @ woocommerce -#: classes/class-wc-countries.php:128 -msgid "Guinea" -msgstr "Guinée" - -# @ woocommerce -#: classes/class-wc-countries.php:129 -msgid "Guinea-Bissau" -msgstr "Guinée-Bissau" - -# @ woocommerce -#: classes/class-wc-countries.php:130 -msgid "Guyana" -msgstr "Guyane" - -# @ woocommerce -#: classes/class-wc-countries.php:131 -msgid "Haiti" -msgstr "Haiti" - -#: classes/class-wc-countries.php:132 -msgid "Heard Island and McDonald Islands" -msgstr "Îles Heard-et-MacDonald" - -# @ woocommerce -#: classes/class-wc-countries.php:133 -msgid "Honduras" -msgstr "Honduras" - -#: classes/class-wc-countries.php:134 -msgid "Hong Kong" -msgstr "Hong Kong" - -# @ woocommerce -#: classes/class-wc-countries.php:135 -msgid "Hungary" -msgstr "Hongrie" - -# @ woocommerce -#: classes/class-wc-countries.php:136 -msgid "Iceland" -msgstr "Islande" - -# @ woocommerce -#: classes/class-wc-countries.php:137 -msgid "India" -msgstr "Inde" - -# @ woocommerce -#: classes/class-wc-countries.php:138 -msgid "Indonesia" -msgstr "Indonésie" - -# @ woocommerce -#: classes/class-wc-countries.php:139 -msgid "Iran" -msgstr "Iran" - -# @ woocommerce -#: classes/class-wc-countries.php:140 -msgid "Iraq" -msgstr "Iraq" - -#: classes/class-wc-countries.php:141 -msgid "Republic of Ireland" -msgstr "Republique d'Ireland" - -# @ woocommerce -#: classes/class-wc-countries.php:142 -msgid "Isle of Man" -msgstr "Isle of Man" - -# @ woocommerce -#: classes/class-wc-countries.php:143 -msgid "Israel" -msgstr "Israel" - -# @ woocommerce -#: classes/class-wc-countries.php:144 -msgid "Italy" -msgstr "Italie" - -# @ woocommerce -#: classes/class-wc-countries.php:145 -msgid "Ivory Coast" -msgstr "Côte-d'Ivoire" - -# @ woocommerce -#: classes/class-wc-countries.php:146 -msgid "Jamaica" -msgstr "Jamaïque" - -# @ woocommerce -#: classes/class-wc-countries.php:147 -msgid "Japan" -msgstr "Japon" - -# @ woocommerce -#: classes/class-wc-countries.php:148 -msgid "Jersey" -msgstr "Jersey" - -# @ woocommerce -#: classes/class-wc-countries.php:149 -msgid "Jordan" -msgstr "Jordan" - -# @ woocommerce -#: classes/class-wc-countries.php:150 -msgid "Kazakhstan" -msgstr "Kazakhstan" - -# @ woocommerce -#: classes/class-wc-countries.php:151 -msgid "Kenya" -msgstr "Kenya" - -# @ woocommerce -#: classes/class-wc-countries.php:152 -msgid "Kiribati" -msgstr "Kiribati" - -# @ woocommerce -#: classes/class-wc-countries.php:153 -msgid "Kuwait" -msgstr "Kuwait" - -# @ woocommerce -#: classes/class-wc-countries.php:154 -msgid "Kyrgyzstan" -msgstr "Kyrgyzstan" - -# @ woocommerce -#: classes/class-wc-countries.php:155 -msgid "Laos" -msgstr "Laos" - -# @ woocommerce -#: classes/class-wc-countries.php:156 -msgid "Latvia" -msgstr "Latvia" - -# @ woocommerce -#: classes/class-wc-countries.php:157 -msgid "Lebanon" -msgstr "Lebanon" - -# @ woocommerce -#: classes/class-wc-countries.php:158 -msgid "Lesotho" -msgstr "Lesotho" - -# @ woocommerce -#: classes/class-wc-countries.php:159 -msgid "Liberia" -msgstr "Liberia" - -# @ woocommerce -#: classes/class-wc-countries.php:160 -msgid "Libya" -msgstr "Libye" - -# @ woocommerce -#: classes/class-wc-countries.php:161 -msgid "Liechtenstein" -msgstr "Liechtenstein" - -# @ woocommerce -#: classes/class-wc-countries.php:162 -msgid "Lithuania" -msgstr "Lituanie" - -# @ woocommerce -#: classes/class-wc-countries.php:163 -msgid "Luxembourg" -msgstr "Luxembourg" - -# @ woocommerce -#: classes/class-wc-countries.php:164 -msgid "Macao S.A.R., China" -msgstr "Macao S.A.R., Chine" - -# @ woocommerce -#: classes/class-wc-countries.php:165 -msgid "Macedonia" -msgstr "Macédoine" - -# @ woocommerce -#: classes/class-wc-countries.php:166 -msgid "Madagascar" -msgstr "Madagascar" - -# @ woocommerce -#: classes/class-wc-countries.php:167 -msgid "Malawi" -msgstr "Malawi" - -# @ woocommerce -#: classes/class-wc-countries.php:168 -msgid "Malaysia" -msgstr "Malaisie" - -# @ woocommerce -#: classes/class-wc-countries.php:169 -msgid "Maldives" -msgstr "Maldives" - -# @ woocommerce -#: classes/class-wc-countries.php:170 -msgid "Mali" -msgstr "Mali" - -# @ woocommerce -#: classes/class-wc-countries.php:171 -msgid "Malta" -msgstr "Malte" - -# @ woocommerce -#: classes/class-wc-countries.php:172 -msgid "Marshall Islands" -msgstr "Îles Marshall" - -# @ woocommerce -#: classes/class-wc-countries.php:173 -msgid "Martinique" -msgstr "Martinique" - -# @ woocommerce -#: classes/class-wc-countries.php:174 -msgid "Mauritania" -msgstr "Mauritanie" - -# @ woocommerce -#: classes/class-wc-countries.php:175 -msgid "Mauritius" -msgstr "Maurice" - -# @ woocommerce -#: classes/class-wc-countries.php:176 -msgid "Mayotte" -msgstr "Mayotte" - -# @ woocommerce -#: classes/class-wc-countries.php:177 -msgid "Mexico" -msgstr "Mexique" - -# @ woocommerce -#: classes/class-wc-countries.php:178 -msgid "Micronesia" -msgstr "Micronésie" - -# @ woocommerce -#: classes/class-wc-countries.php:179 -msgid "Moldova" -msgstr "Moldovie" - -# @ woocommerce -#: classes/class-wc-countries.php:180 -msgid "Monaco" -msgstr "Monaco" - -# @ woocommerce -#: classes/class-wc-countries.php:181 -msgid "Mongolia" -msgstr "Mongolie" - -# @ woocommerce -#: classes/class-wc-countries.php:182 -msgid "Montenegro" -msgstr "Montenegro" - -# @ woocommerce -#: classes/class-wc-countries.php:183 -msgid "Montserrat" -msgstr "Montserrat" - -# @ woocommerce -#: classes/class-wc-countries.php:184 -msgid "Morocco" -msgstr "Maroc" - -# @ woocommerce -#: classes/class-wc-countries.php:185 -msgid "Mozambique" -msgstr "Mozambique" - -# @ woocommerce -#: classes/class-wc-countries.php:186 -msgid "Myanmar" -msgstr "Myanmar" - -# @ woocommerce -#: classes/class-wc-countries.php:187 -msgid "Namibia" -msgstr "Namibie" - -# @ woocommerce -#: classes/class-wc-countries.php:188 -msgid "Nauru" -msgstr "Nauru" - -# @ woocommerce -#: classes/class-wc-countries.php:189 -msgid "Nepal" -msgstr "Nepal" - -# @ woocommerce -#: classes/class-wc-countries.php:190 -msgid "Netherlands" -msgstr "Pays-Bas" - -# @ woocommerce -#: classes/class-wc-countries.php:191 -msgid "Netherlands Antilles" -msgstr "Antilles néerlandaises" - -# @ woocommerce -#: classes/class-wc-countries.php:192 -msgid "New Caledonia" -msgstr "Nouvelle-Calédonie" - -# @ woocommerce -#: classes/class-wc-countries.php:193 -msgid "New Zealand" -msgstr "Nouvelle-Zélande" - -# @ woocommerce -#: classes/class-wc-countries.php:194 -msgid "Nicaragua" -msgstr "Nicaragua" - -# @ woocommerce -#: classes/class-wc-countries.php:195 -msgid "Niger" -msgstr "Niger" - -# @ woocommerce -#: classes/class-wc-countries.php:196 -msgid "Nigeria" -msgstr "Nigeria" - -# @ woocommerce -#: classes/class-wc-countries.php:197 -msgid "Niue" -msgstr "Niue" - -# @ woocommerce -#: classes/class-wc-countries.php:198 -msgid "Norfolk Island" -msgstr "Île Norfolk" - -# @ woocommerce -#: classes/class-wc-countries.php:199 -msgid "North Korea" -msgstr "Corée du Nord" - -# @ woocommerce -#: classes/class-wc-countries.php:200 -msgid "Norway" -msgstr "Norvège" - -# @ woocommerce -#: classes/class-wc-countries.php:201 -msgid "Oman" -msgstr "Oman" - -# @ woocommerce -#: classes/class-wc-countries.php:202 -msgid "Pakistan" -msgstr "Pakistan" - -# @ woocommerce -#: classes/class-wc-countries.php:203 -msgid "Palestinian Territory" -msgstr "Territoire palestinien" - -# @ woocommerce -#: classes/class-wc-countries.php:204 -msgid "Panama" -msgstr "Panama" - -# @ woocommerce -#: classes/class-wc-countries.php:205 -msgid "Papua New Guinea" -msgstr "Papouasie-Nouvelle-Guinée" - -# @ woocommerce -#: classes/class-wc-countries.php:206 -msgid "Paraguay" -msgstr "Paraguay" - -# @ woocommerce -#: classes/class-wc-countries.php:207 -msgid "Peru" -msgstr "Pérou" - -# @ woocommerce -#: classes/class-wc-countries.php:208 -msgid "Philippines" -msgstr "Philippines" - -# @ woocommerce -#: classes/class-wc-countries.php:209 -msgid "Pitcairn" -msgstr "Pitcairn" - -# @ woocommerce -#: classes/class-wc-countries.php:210 -msgid "Poland" -msgstr "Pologne" - -# @ woocommerce -#: classes/class-wc-countries.php:211 -msgid "Portugal" -msgstr "Portugal" - -# @ woocommerce -#: classes/class-wc-countries.php:212 -msgid "Qatar" -msgstr "Qatar" - -# @ woocommerce -#: classes/class-wc-countries.php:213 -msgid "Reunion" -msgstr "Réunion" - -# @ woocommerce -#: classes/class-wc-countries.php:214 -msgid "Romania" -msgstr "Roumanie" - -# @ woocommerce -#: classes/class-wc-countries.php:215 -msgid "Russia" -msgstr "Russie" - -# @ woocommerce -#: classes/class-wc-countries.php:216 -msgid "Rwanda" -msgstr "Rwanda" - -# @ woocommerce -#: classes/class-wc-countries.php:217 -msgid "Saint Barthélemy" -msgstr "Saint Barthélemy" - -# @ woocommerce -#: classes/class-wc-countries.php:218 -msgid "Saint Helena" -msgstr "Saint Helena" - -# @ woocommerce -#: classes/class-wc-countries.php:219 -msgid "Saint Kitts and Nevis" -msgstr "Saint-Kitts-et-Nevis" - -# @ woocommerce -#: classes/class-wc-countries.php:220 -msgid "Saint Lucia" -msgstr "Sainte-Lucie" - -# @ woocommerce -#: classes/class-wc-countries.php:221 -msgid "Saint Martin (French part)" -msgstr "Saint-Martin (partie française)" - -# @ woocommerce -#: classes/class-wc-countries.php:222 -msgid "Saint Martin (Dutch part)" -msgstr "Saint-Martin (partie allemande)" - -# @ woocommerce -#: classes/class-wc-countries.php:223 -msgid "Saint Pierre and Miquelon" -msgstr "Saint Pierre et Miquelon" - -# @ woocommerce -#: classes/class-wc-countries.php:224 -msgid "Saint Vincent and the Grenadines" -msgstr "Saint-Vincent-et-les-Grenadines" - -# @ woocommerce -#: classes/class-wc-countries.php:225 -msgid "San Marino" -msgstr "San Marino" - -# @ woocommerce -#: classes/class-wc-countries.php:226 -msgid "São Tomé and Príncipe" -msgstr "Sao Tomé-et-Principe" - -# @ woocommerce -#: classes/class-wc-countries.php:227 -msgid "Saudi Arabia" -msgstr "Arabie Saoudite" - -# @ woocommerce -#: classes/class-wc-countries.php:228 -msgid "Senegal" -msgstr "Sénégal" - -# @ woocommerce -#: classes/class-wc-countries.php:229 -msgid "Serbia" -msgstr "Serbie" - -# @ woocommerce -#: classes/class-wc-countries.php:230 -msgid "Seychelles" -msgstr "Seychelles" - -# @ woocommerce -#: classes/class-wc-countries.php:231 -msgid "Sierra Leone" -msgstr "Sierra Leone" - -# @ woocommerce -#: classes/class-wc-countries.php:232 -msgid "Singapore" -msgstr "Singapour" - -# @ woocommerce -#: classes/class-wc-countries.php:233 -msgid "Slovakia" -msgstr "Slovaquie" - -# @ woocommerce -#: classes/class-wc-countries.php:234 -msgid "Slovenia" -msgstr "Slovénie" - -# @ woocommerce -#: classes/class-wc-countries.php:235 -msgid "Solomon Islands" -msgstr "Îles Salomon" - -# @ woocommerce -#: classes/class-wc-countries.php:236 -msgid "Somalia" -msgstr "Somalie" - -# @ woocommerce -#: classes/class-wc-countries.php:237 -msgid "South Africa" -msgstr "Afrique du Sud" - -# @ woocommerce -#: classes/class-wc-countries.php:238 -msgid "South Georgia/Sandwich Islands" -msgstr "Géorgie du Sud / îles Sandwich" - -# @ woocommerce -#: classes/class-wc-countries.php:239 -msgid "South Korea" -msgstr "Corée du Sud" - -# @ woocommerce -#: classes/class-wc-countries.php:240 -msgid "South Sudan" -msgstr "Soudan du Sud" - -# @ woocommerce -#: classes/class-wc-countries.php:241 -msgid "Spain" -msgstr "Espagne" - -# @ woocommerce -#: classes/class-wc-countries.php:242 -msgid "Sri Lanka" -msgstr "Sri Lanka" - -# @ woocommerce -#: classes/class-wc-countries.php:243 -msgid "Sudan" -msgstr "Soudan" - -# @ woocommerce -#: classes/class-wc-countries.php:244 -msgid "Suriname" -msgstr "Suriname" - -# @ woocommerce -#: classes/class-wc-countries.php:245 -msgid "Svalbard and Jan Mayen" -msgstr "Svalbard et Jan Mayen" - -# @ woocommerce -#: classes/class-wc-countries.php:246 -msgid "Swaziland" -msgstr "Swaziland" - -# @ woocommerce -#: classes/class-wc-countries.php:247 -msgid "Sweden" -msgstr "Suède" - -# @ woocommerce -#: classes/class-wc-countries.php:248 -msgid "Switzerland" -msgstr "Suisse" - -# @ woocommerce -#: classes/class-wc-countries.php:249 -msgid "Syria" -msgstr "Syrie" - -# @ woocommerce -#: classes/class-wc-countries.php:250 -msgid "Taiwan" -msgstr "Taiwan" - -# @ woocommerce -#: classes/class-wc-countries.php:251 -msgid "Tajikistan" -msgstr "Tajikistan" - -# @ woocommerce -#: classes/class-wc-countries.php:252 -msgid "Tanzania" -msgstr "Tanzanie" - -# @ woocommerce -#: classes/class-wc-countries.php:253 -msgid "Thailand" -msgstr "Thailande" - -# @ woocommerce -#: classes/class-wc-countries.php:254 -msgid "Timor-Leste" -msgstr "Timor-Leste" - -# @ woocommerce -#: classes/class-wc-countries.php:255 -msgid "Togo" -msgstr "Togo" - -# @ woocommerce -#: classes/class-wc-countries.php:256 -msgid "Tokelau" -msgstr "Tokelau" - -# @ woocommerce -#: classes/class-wc-countries.php:257 -msgid "Tonga" -msgstr "Tonga" - -# @ woocommerce -#: classes/class-wc-countries.php:258 -msgid "Trinidad and Tobago" -msgstr "Trinité-et-Tobago" - -# @ woocommerce -#: classes/class-wc-countries.php:259 -msgid "Tunisia" -msgstr "Tunisie" - -# @ woocommerce -#: classes/class-wc-countries.php:260 -msgid "Turkey" -msgstr "Turquie" - -# @ woocommerce -#: classes/class-wc-countries.php:261 -msgid "Turkmenistan" -msgstr "Turkménistan" - -# @ woocommerce -#: classes/class-wc-countries.php:262 -msgid "Turks and Caicos Islands" -msgstr "Îles Turques et Caïques" - -# @ woocommerce -#: classes/class-wc-countries.php:263 -msgid "Tuvalu" -msgstr "Tuvalu" - -# @ woocommerce -#: classes/class-wc-countries.php:264 -msgid "Uganda" -msgstr "Uganda" - -# @ woocommerce -#: classes/class-wc-countries.php:265 -msgid "Ukraine" -msgstr "Ukraine" - -# @ woocommerce -#: classes/class-wc-countries.php:266 -msgid "United Arab Emirates" -msgstr "Émirats Arabes Unis" - -# @ woocommerce -#: classes/class-wc-countries.php:267 -msgid "United Kingdom" -msgstr "Royaume Uni" - -# @ woocommerce -#: classes/class-wc-countries.php:268 -msgid "United States" -msgstr "États-Unis" - -# @ woocommerce -#: classes/class-wc-countries.php:269 -msgid "Uruguay" -msgstr "Uruguay" - -# @ woocommerce -#: classes/class-wc-countries.php:270 -msgid "Uzbekistan" -msgstr "Uzbekistan" - -# @ woocommerce -#: classes/class-wc-countries.php:271 -msgid "Vanuatu" -msgstr "Vanuatu" - -# @ woocommerce -#: classes/class-wc-countries.php:272 -msgid "Vatican" -msgstr "Vatican" - -# @ woocommerce -#: classes/class-wc-countries.php:273 -msgid "Venezuela" -msgstr "Venezuela" - -# @ woocommerce -#: classes/class-wc-countries.php:274 -msgid "Vietnam" -msgstr "Vietnam" - -# @ woocommerce -#: classes/class-wc-countries.php:275 -msgid "Wallis and Futuna" -msgstr "Wallis et Futuna" - -# @ woocommerce -#: classes/class-wc-countries.php:276 -msgid "Western Sahara" -msgstr "Sahara occidental" - -# @ woocommerce -#: classes/class-wc-countries.php:277 -msgid "Western Samoa" -msgstr "Samoa-Occidental" - -# @ woocommerce -#: classes/class-wc-countries.php:278 -msgid "Yemen" -msgstr "Yemen" - -# @ woocommerce -#: classes/class-wc-countries.php:279 -msgid "Zambia" -msgstr "Zambie" - -# @ woocommerce -#: classes/class-wc-countries.php:280 -msgid "Zimbabwe" -msgstr "Zimbabwe" - -# @ woocommerce -#: classes/class-wc-countries.php:418 -msgid "to the" -msgstr "pour le" - -# @ woocommerce -#: classes/class-wc-countries.php:419 -msgid "to" -msgstr "pour" - -# @ woocommerce -#: classes/class-wc-countries.php:432 -msgid "the" -msgstr "le" - -# @ woocommerce -#: classes/class-wc-countries.php:444 -msgid "VAT" -msgstr "TVA" - -# @ woocommerce -#: classes/class-wc-countries.php:444 -msgid "Tax" -msgstr "Taxe" - -# @ woocommerce -#: classes/class-wc-countries.php:457 -msgid "(incl. VAT)" -msgstr "T.T.C." - -# @ woocommerce -#: classes/class-wc-countries.php:457 -msgid "(incl. tax)" -msgstr "(incluant la taxe)" - -# @ woocommerce -#: classes/class-wc-countries.php:470 -msgid "(ex. VAT)" -msgstr "H.T." - -# @ woocommerce -#: classes/class-wc-countries.php:470 -msgid "(ex. tax)" -msgstr "(ex. taxe)" - -# @ woocommerce -#: classes/class-wc-countries.php:678 -msgid "Country" -msgstr "Pays" - -# @ woocommerce -#: classes/class-wc-countries.php:683 -msgid "First Name" -msgstr "Prénom" - -# @ woocommerce -#: classes/class-wc-countries.php:688 -msgid "Last Name" -msgstr "Nom" - -# @ woocommerce -#: classes/class-wc-countries.php:694 -msgid "Company Name" -msgstr "Nom de l'entreprise" - -# @ woocommerce -#: classes/class-wc-countries.php:698 -msgid "Address" -msgstr "Adresse" - -# @ woocommerce -#: classes/class-wc-countries.php:699 -msgctxt "placeholder" -msgid "Street address" -msgstr "Adresse" - -#: classes/class-wc-countries.php:707 -msgctxt "placeholder" -msgid "Apartment, suite, unit etc. (optional)" -msgstr "Appartement, bureau, etc. (optionnel)" - -# @ woocommerce -#: classes/class-wc-countries.php:715 classes/class-wc-countries.php:716 -msgid "Town / City" -msgstr "Ville" - -# @ woocommerce -#: classes/class-wc-countries.php:725 classes/class-wc-countries.php:726 -msgid "State / County" -msgstr "État / Comté" - -# @ woocommerce -#: classes/class-wc-countries.php:734 classes/class-wc-countries.php:735 -#: templates/cart/shipping-calculator.php:80 -msgid "Postcode / Zip" -msgstr "Code Postal" - -# @ woocommerce -#: classes/class-wc-countries.php:774 classes/class-wc-countries.php:784 -#: classes/class-wc-countries.php:804 classes/class-wc-countries.php:859 -#: classes/class-wc-countries.php:883 classes/class-wc-countries.php:933 -#: classes/class-wc-countries.php:957 classes/class-wc-countries.php:998 -msgid "Province" -msgstr "Province" - -# @ woocommerce -#: classes/class-wc-countries.php:790 -msgid "Canton" -msgstr "Canton" - -#: classes/class-wc-countries.php:799 classes/class-wc-countries.php:939 -msgid "Municipality" -msgstr "Municipalité" - -#: classes/class-wc-countries.php:846 -msgid "Town / District" -msgstr "Ville / Quartier" - -# @ woocommerce -#: classes/class-wc-countries.php:849 -msgid "Region" -msgstr "Région" - -#: classes/class-wc-countries.php:962 -msgid "Zip" -msgstr "Code postal" - -# @ woocommerce -#: classes/class-wc-countries.php:965 -msgid "State" -msgstr "État" - -# @ woocommerce -#: classes/class-wc-countries.php:970 -msgid "Postcode" -msgstr "Codep" - -# @ woocommerce -#: classes/class-wc-countries.php:973 -msgid "County" -msgstr "Comté" - -# @ woocommerce -#: classes/class-wc-countries.php:1074 -msgid "Email Address" -msgstr "Adresse email" - -# @ woocommerce -#: classes/class-wc-countries.php:1080 -msgid "Phone" -msgstr "Téléphone" - -# @ woocommerce -#: classes/class-wc-coupon.php:421 -msgid "Coupon code applied successfully." -msgstr "Code promo appliqué avec succès." - -# @ woocommerce -#: classes/class-wc-coupon.php:442 -msgid "Coupon is not valid." -msgstr "Code promo invalide." - -# @ woocommerce -#: classes/class-wc-coupon.php:445 classes/class-wc-coupon.php:495 -msgid "Coupon does not exist!" -msgstr "Code promo inexistant !" - -#: classes/class-wc-coupon.php:448 -msgid "" -"Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from " -"your order." -msgstr "" -"Désolé, il semblerait que le code promo \"%s\" soit invalide - il vient " -"d'être retiré de votre commande." - -#: classes/class-wc-coupon.php:451 -msgid "" -"Sorry, it seems the coupon \"%s\" is not yours - it has now been removed " -"from your order." -msgstr "" -"Désolé, il semblerait que le code promo \"%s\" n'est pas le vôtre - il vient " -"d'être retiré de votre commande." - -# @ woocommerce -#: classes/class-wc-coupon.php:454 -msgid "Coupon code already applied!" -msgstr "Code promo déjà appliqué !" - -# @ woocommerce -#: classes/class-wc-coupon.php:457 -msgid "" -"Sorry, coupon \"%s\" has already been applied and cannot be used in " -"conjunction with other coupons." -msgstr "" -"Désolé, le code promo \"%s\" a déjà été appliqué et ne peut être utilisé " -"conjointement avec d'autres codes promo." - -#: classes/class-wc-coupon.php:460 -msgid "Coupon usage limit has been reached." -msgstr "La limite d'utilisation du code promo a été atteinte." - -# @ woocommerce -#: classes/class-wc-coupon.php:463 -msgid "This coupon has expired." -msgstr "Ce code promo est expiré." - -#: classes/class-wc-coupon.php:466 -msgid "The minimum spend for this coupon is %s." -msgstr "Le minimum de dépense pour ce code promo est %s." - -#: classes/class-wc-coupon.php:469 -msgid "Sorry, this coupon is not applicable to your cart contents." -msgstr "Désolé, ce code promo ne s'applique pas au contenu de votre panier." - -#: classes/class-wc-coupon.php:472 -msgid "Sorry, this coupon is not valid for sale items." -msgstr "Désolé, ce code promo ne s'applique pas aux articles en promotion." - -# @ woocommerce -#: classes/class-wc-coupon.php:498 -msgid "Please enter a coupon code." -msgstr "Veuillez entrer un code promo." - -# @ woocommerce -#: classes/class-wc-customer.php:628 classes/class-wc-customer.php:638 -msgid "File %d" -msgstr "Fichier %d" - -# @ woocommerce -#: classes/class-wc-emails.php:246 -msgid "Note" -msgstr "Note" - -# @ woocommerce -#: classes/class-wc-emails.php:281 -msgid "Product low in stock" -msgstr "Produit avec stock faible" - -# @ woocommerce -#: classes/class-wc-emails.php:286 classes/class-wc-emails.php:318 -#: classes/class-wc-emails.php:362 -msgid "Variation #%s of %s" -msgstr "Variation n°%s sur %s" - -# @ woocommerce -#: classes/class-wc-emails.php:288 classes/class-wc-emails.php:320 -#: classes/class-wc-emails.php:364 -msgid "Product #%s - %s" -msgstr "Produit n°%s - %s" - -# @ woocommerce -#: classes/class-wc-emails.php:290 -msgid "is low in stock." -msgstr "est en stock faible." - -# @ woocommerce -#: classes/class-wc-emails.php:313 -msgid "Product out of stock" -msgstr "Produit non disponible" - -# @ woocommerce -#: classes/class-wc-emails.php:322 -msgid "is out of stock." -msgstr "n'est plus en stock" - -# @ woocommerce -#: classes/class-wc-emails.php:357 -msgid "Product Backorder" -msgstr "Product Backorder" - -#: classes/class-wc-emails.php:366 -msgid "%s units of %s have been backordered in order #%s." -msgstr "%s unités sur %s ont été restockés dans la commande n°%s." - -# @ woocommerce -#: classes/class-wc-order.php:283 -msgctxt "hash before order number" -msgid "#" -msgstr "n°" - -# @ woocommerce -#: classes/class-wc-order.php:886 -msgid " %svia %s" -msgstr " %s via %s" - -# @ woocommerce -#: classes/class-wc-order.php:950 -msgid "Cart Subtotal:" -msgstr "Sous-total du panier :" - -# @ woocommerce -#: classes/class-wc-order.php:956 -msgid "Cart Discount:" -msgstr "Panier remisé :" - -# @ woocommerce -#: classes/class-wc-order.php:962 -msgid "Shipping:" -msgstr "Expédition :" - -# @ woocommerce -#: classes/class-wc-order.php:998 -msgid "Order Discount:" -msgstr "Remise commande :" - -# @ woocommerce -#: classes/class-wc-order.php:1003 -msgid "Order Total:" -msgstr "Total commande :" - -#: classes/class-wc-order.php:1017 templates/cart/totals.php:105 -#: templates/checkout/review-order.php:104 -msgid "(Includes %s)" -msgstr "(Inclus %s)" - -# @ woocommerce -#: classes/class-wc-order.php:1168 classes/class-wc-order.php:1170 -#: classes/class-wc-order.php:1173 -msgid "WooCommerce" -msgstr "WooCommerce" - -# @ woocommerce -#: classes/class-wc-order.php:1220 -msgid "Order status changed from %s to %s." -msgstr "État de la commande modifié de %s à %s" - -# @ woocommerce -#: classes/class-wc-order.php:1452 woocommerce-ajax.php:1089 -#: woocommerce-ajax.php:1090 -msgid "Item #%s stock reduced from %s to %s." -msgstr "L'élément n°%s est en stock réduit de %s jusqu'à %s" - -# @ woocommerce -#: classes/class-wc-order.php:1464 -msgid "Order item stock reduced successfully." -msgstr "Articles de la commande sortis du stock." - -# @ woocommerce -#: classes/class-wc-product-external.php:56 -msgid "Buy product" -msgstr "Acheter le produit" - -# @ woocommerce -#: classes/class-wc-shortcodes.php:571 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:274 -#: templates/loop/add-to-cart.php:46 -#: templates/single-product/add-to-cart/grouped.php:45 -#: templates/single-product/add-to-cart/grouped.php:77 -#: templates/single-product/add-to-cart/simple.php:42 -#: templates/single-product/add-to-cart/variable.php:83 -msgid "Add to cart" -msgstr "Ajouter au panier" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:24 -msgid "Completed order" -msgstr "Commande terminée" - -#: classes/emails/class-wc-email-customer-completed-order.php:25 -msgid "" -"Order complete emails are sent to the customer when the order is marked " -"complete and usual indicates that the order has been shipped." -msgstr "" -"Les emails de commande terminée sont expédiés au client lorsque la commande " -"est marquée terminée et indiquent généralement que la commande a été " -"expédiée." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:27 -msgid "Your order is complete" -msgstr "Votre commande est terminée" - -#: classes/emails/class-wc-email-customer-completed-order.php:28 -msgid "Your {blogname} order from {order_date} is complete" -msgstr "Votre commande {blogname} du {order_date} est terminée" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:37 -msgid "Your order is complete - download your files" -msgstr "Votre commande est terminée - téléchargez vos fichiers" - -#: classes/emails/class-wc-email-customer-completed-order.php:38 -msgid "" -"Your {blogname} order from {order_date} is complete - download your files" -msgstr "" -"Votre commande {blogname} du {order_date} est terminée - téléchargez vos " -"fichiers" - -#: classes/emails/class-wc-email-customer-completed-order.php:141 -#: classes/emails/class-wc-email-new-order.php:128 -msgid "Subject" -msgstr "Sujet" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:148 -#: classes/emails/class-wc-email-new-order.php:135 -msgid "Email Heading" -msgstr "Entête de l'email" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:155 -msgid "Subject (downloadable)" -msgstr "Sujet (téléchargeable)" - -#: classes/emails/class-wc-email-customer-completed-order.php:162 -msgid "Email Heading (downloadable)" -msgstr "Entête de l'email (téléchargeable)" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:27 -msgid "Customer invoice" -msgstr "Facture client" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:28 -msgid "" -"Customer invoice emails can be sent to the user containing order info and " -"payment links." -msgstr "" -"Les emails de facture client peuvent être expédiés à l'utilisateur, " -"contenant les informations de commande et les liens de paiement." - -#: classes/emails/class-wc-email-customer-invoice.php:33 -msgid "Invoice for order {order_number} from {order_date}" -msgstr "Facture de la commande {order_number} du {order_date}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:34 -msgid "Invoice for order {order_number}" -msgstr "Facture de la commande {order_number}" - -#: classes/emails/class-wc-email-customer-invoice.php:36 -msgid "Your {blogname} order from {order_date}" -msgstr "Votre commande {blogname} du {order_date}" - -#: classes/emails/class-wc-email-customer-invoice.php:37 -msgid "Order {order_number} details" -msgstr "Détails de la commande {order_number}" - -#: classes/emails/class-wc-email-customer-invoice.php:158 -msgid "Email subject (paid)" -msgstr "Sujet de l'email (payée)" - -#: classes/emails/class-wc-email-customer-invoice.php:165 -msgid "Email heading (paid)" -msgstr "Entête de l'email (payée)" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:31 -msgid "New account" -msgstr "Nouveau compte" - -#: classes/emails/class-wc-email-customer-new-account.php:32 -msgid "" -"Customer new account emails are sent when a customer signs up via the " -"checkout or My Account page." -msgstr "" -"Les emails de nouveau compte client sont envoyés lorsqu'un client " -"s'enregistre depuis la page commande ou Mon Compte." - -#: classes/emails/class-wc-email-customer-new-account.php:37 -msgid "Your account on {blogname}" -msgstr "Votre compte sur {blogname}" - -#: classes/emails/class-wc-email-customer-new-account.php:38 -msgid "Welcome to {blogname}" -msgstr "Bienvenue sur {blogname}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:29 -msgid "Customer note" -msgstr "Note client" - -#: classes/emails/class-wc-email-customer-note.php:30 -msgid "Customer note emails are sent when you add a note to an order." -msgstr "" -"Les emails de notes client sont expédiés lorsque vous ajoutez une note à une " -"commande." - -#: classes/emails/class-wc-email-customer-note.php:35 -msgid "Note added to your {blogname} order from {order_date}" -msgstr "Note ajoutée à votre commande {blogname} du {order_date}" - -#: classes/emails/class-wc-email-customer-note.php:36 -msgid "A note has been added to your order" -msgstr "Une note a été ajoutée à votre commande" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:24 -msgid "Processing order" -msgstr "Commande en cours" - -#: classes/emails/class-wc-email-customer-processing-order.php:25 -msgid "" -"This is an order notification sent to the customer after payment containing " -"order details." -msgstr "" -"Ceci est une notification de commande envoyée au client après le paiement et " -"contenant les détails de la commande." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:27 -msgid "Thank you for your order" -msgstr "Merci pour votre commande" - -#: classes/emails/class-wc-email-customer-processing-order.php:28 -msgid "Your {blogname} order receipt from {order_date}" -msgstr "Votre reçu de commande {blogname} du {order_date}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:36 -msgid "Reset password" -msgstr "Réinitialisation du mot de passe" - -#: classes/emails/class-wc-email-customer-reset-password.php:37 -msgid "" -"Customer reset password emails are sent when a customer resets their " -"password." -msgstr "" -"Les emails de rénitialisation du mot de passe client sont expédiés lorsqu'un " -"client réinitialise son mot de passe." - -#: classes/emails/class-wc-email-customer-reset-password.php:42 -msgid "Password Reset for {blogname}" -msgstr "Réinitialisation de mot de passe pour {blogname}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:43 -msgid "Password Reset Instructions" -msgstr "Instructions de réinitialisation de mot de passe" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:24 -msgid "New order" -msgstr "Nouvelle commande" - -#: classes/emails/class-wc-email-new-order.php:25 -msgid "New order emails are sent when an order is received/paid by a customer." -msgstr "" -"Les emails de nouvelle commande sont expédiés lorsqu'une nouvelle commande " -"est reçue/payée par un client." - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:27 -msgid "New customer order" -msgstr "Nouvelle commande client" - -#: classes/emails/class-wc-email-new-order.php:28 -msgid "[{blogname}] New customer order ({order_number}) - {order_date}" -msgstr "[{blogname}] Nouvelle commande client ({order_number}) - {order_date}" - -#: classes/emails/class-wc-email-new-order.php:121 -msgid "Recipient(s)" -msgstr "Destinataire(s)" - -#: classes/emails/class-wc-email-new-order.php:123 -msgid "" -"Enter recipients (comma separated) for this email. Defaults to %s." -msgstr "" -"Entrez les destinataires (séparés par une virgule) pour cet email. Par " -"défaut à %s." - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:130 -msgid "" -"This controls the email subject line. Leave blank to use the default " -"subject: %s." -msgstr "" -"Ceci détermine la ligne sujet de l'email. Laisser vide pour utiliser le " -"sujet par défaut : %s." - -#: classes/emails/class-wc-email-new-order.php:137 -msgid "" -"This controls the main heading contained within the email notification. " -"Leave blank to use the default heading: %s." -msgstr "" -"Ceci détermine l'entête principale contenue dans la notification par email. " -"Laisse vide pour utiliser l'entête par défaut : %s." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:28 -msgid "Bacs" -msgstr "Bacs" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:65 -msgid "Enable Bank Transfer" -msgstr "Activer le Virement Bancaire" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:69 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:63 -#: classes/gateways/cod/class-wc-gateway-cod.php:87 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:135 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:126 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:104 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:84 -msgid "Title" -msgstr "Titre" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:71 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:65 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:137 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:128 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:83 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:58 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:106 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:86 -msgid "This controls the title which the user sees during checkout." -msgstr "" -"Cela détermine le titre que les utilisateurs verront durant la commande." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:72 -msgid "Direct Bank Transfer" -msgstr "Virement Bancaire" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:76 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:70 -msgid "Customer Message" -msgstr "Message Client" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:78 -msgid "" -"Give the customer instructions for paying via BACS, and let them know that " -"their order won't be shipping until the money is received." -msgstr "" -"Donne au client les instructions pour régler via BACS, et l'informer que sa " -"commande ne sera pas envoyée avant que le règlement ne soit reçu." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:79 -msgid "" -"Make your payment directly into our bank account. Please use your Order ID " -"as the payment reference. Your order wont be shipped until the funds have " -"cleared in our account." -msgstr "" -"Effectuez votre paiement directement avec votre compte bancaire. Utilisez " -"votre numéro de commande comme référence de paiement. Votre commande ne sera " -"pas livrée avant le règlement de la commande." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:82 -msgid "Account Details" -msgstr "Détails du compte" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:84 -msgid "Optionally enter your bank details below for customers to pay into." -msgstr "" -"Optionnellement entrez les détails de votre banque ci-dessous pour permettre " -"aux clients de payer." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:88 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:163 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:203 -msgid "Account Name" -msgstr "Nom du Compte" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:94 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:164 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:204 -msgid "Account Number" -msgstr "Numéro du Compte" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:100 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:165 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:205 -msgid "Sort Code" -msgstr "Code de Tri" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:106 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:166 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:206 -msgid "Bank Name" -msgstr "Nom de la Banque" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:112 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:167 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:207 -msgid "IBAN" -msgstr "IBAN" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:117 -msgid "BIC (formerly Swift)" -msgstr "BIC (anciennement Swift)" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:136 -msgid "BACS Payment" -msgstr "Paiement BACS" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:137 -msgid "" -"Allows payments by BACS (Bank Account Clearing System), more commonly known " -"as direct bank/wire transfer." -msgstr "" -"Autorise les paiement par BACS (Bank Account Clearing System), plus " -"communément connu comme virement bancaire." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:158 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:200 -msgid "Our Details" -msgstr "Nos Détails" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:168 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:208 -msgid "BIC" -msgstr "BIC" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:234 -msgid "Awaiting BACS payment" -msgstr "En attente de paiement BACS" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:28 -msgid "Cheque" -msgstr "Chèque" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:59 -msgid "Enable Cheque Payment" -msgstr "Activer le Paiement par Chèque" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:66 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:90 -msgid "Cheque Payment" -msgstr "Paiement par Chèque" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:72 -msgid "" -"Let the customer know the payee and where they should be sending the cheque " -"to and that their order won't be shipping until you receive it." -msgstr "" -"Indiquez au client l'ordre du chèque, l'adresse où il devra l'envoyer, et " -"que sa commande ne sera pas traitée jusqu'à ce que le chèque soit reçu." - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:73 -msgid "" -"Please send your cheque to Store Name, Store Street, Store Town, Store " -"State / County, Store Postcode." -msgstr "" -"Veuillez envoyer votre chèque à Nom Boutique, Rue Boutique, Code Postal " -"Boutique, Ville Boutique, Pays Boutique. Votre commande sera traitée à " -"réception de votre règlement." - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:91 -msgid "" -"Allows cheque payments. Why would you take cheques in this day and age? Well " -"you probably wouldn't but it does allow you to make test purchases for " -"testing order emails and the 'success' pages etc." -msgstr "" -"Autorise les paiements par chèque. Pourquoi voudriez-vous prendre des " -"chèques ? Et bien, vous ne l'utiliserez peut-être pas, mais cela vous permet " -"de faire des tests d'achats pour tester les emails de commande et les pages " -"« remerciement », etc.." - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:147 -msgid "Awaiting cheque payment" -msgstr "En attente règlement par chèque" - -#: classes/gateways/cod/class-wc-gateway-cod.php:27 -#: classes/gateways/cod/class-wc-gateway-cod.php:54 -#: classes/gateways/cod/class-wc-gateway-cod.php:90 -msgid "Cash on Delivery" -msgstr "Paiement à la livraison" - -#: classes/gateways/cod/class-wc-gateway-cod.php:55 -msgid "Have your customers pay with cash (or by other means) upon delivery." -msgstr "" -"Demandez à vos clients de payer en espèces (ou par tout autre moyen) à la " -"livraison." - -# COD : Cash On Delivery -#: classes/gateways/cod/class-wc-gateway-cod.php:80 -msgid "Enable COD" -msgstr "Activer le paiement à la livraison" - -#: classes/gateways/cod/class-wc-gateway-cod.php:81 -msgid "Enable Cash on Delivery" -msgstr "Activer le Paiement à la Livraison" - -#: classes/gateways/cod/class-wc-gateway-cod.php:89 -msgid "Payment method title that the customer will see on your website." -msgstr "" -"Titre de la méthode de paiement que le client verra sur votre site web." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:94 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:142 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:133 -#: woocommerce-template.php:751 -msgid "Description" -msgstr "Description" - -#: classes/gateways/cod/class-wc-gateway-cod.php:96 -msgid "Payment method description that the customer will see on your website." -msgstr "" -"Description de la méthode de paiement que le client verra sur votre site web." - -#: classes/gateways/cod/class-wc-gateway-cod.php:97 -#: classes/gateways/cod/class-wc-gateway-cod.php:103 -msgid "Pay with cash upon delivery." -msgstr "Payer en argent comptant à la livraison." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:100 -msgid "Instructions" -msgstr "Instructions" - -#: classes/gateways/cod/class-wc-gateway-cod.php:102 -msgid "Instructions that will be added to the thank you page." -msgstr "Instructions qui seront ajoutées à la page de remerciements." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:106 -msgid "Enable for shipping methods" -msgstr "Activer les méthodes d'expédition" - -#: classes/gateways/cod/class-wc-gateway-cod.php:111 -msgid "" -"If COD is only available for certain methods, set it up here. Leave blank to " -"enable for all methods." -msgstr "" -"Si le paiement à la livraison est uniquement disponible pour certaines " -"méthodes, le paramétrer ici. Laisser vide pour l'activer pour toutes les " -"méthodes. " - -#: classes/gateways/cod/class-wc-gateway-cod.php:176 -msgid "Payment to be made upon delivery." -msgstr "Paiement à effectuer à la livraison." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:31 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:160 -msgid "Mijireh Checkout" -msgstr "Commande Mijireh" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:107 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:285 -msgid "Mijireh error:" -msgstr "Erreur Mijireh :" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:124 -msgid "Enable Mijireh Checkout" -msgstr "Activer les commandes Mijireh" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:128 -msgid "Access Key" -msgstr "Clé d'accès" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:130 -msgid "The Mijireh access key for your store." -msgstr "La clé d'accès Mijireh pour votre boutique." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:138 -msgid "Credit Card" -msgstr "Carte de crédit" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:144 -msgid "Pay securely with your credit card." -msgstr "Payez en sécurité avec votre carte de crédit." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:145 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:135 -msgid "This controls the description which the user sees during checkout." -msgstr "" -"Ceci détermine la description que les utilisateurs verront durant le " -"réglement." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:164 -msgid "Get started with Mijireh Checkout" -msgstr "Débutez avec le Paiement Mijireh" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:165 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site. Mijireh supports a wide variety of payment gateways: Stripe, " -"Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and more." -msgstr "" -"fourni une solution pleinement compatible PCI (Payment Card Industry), " -"sécurisée, permettant de collecter et transmettre les données de carte de " -"crédit à votre passerelle de paiement tout en conservant le controle du " -"design de votre site. Mijireh supporte une large variété de passerelles de " -"paiement : Stripe, Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, " -"et plus." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:167 -msgid "Join for free" -msgstr "Rejoindre gratuitement" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:167 -msgid "Learn more about WooCommerce and Mijireh" -msgstr "En savoir plus sur WooCommerce et Mijireh" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:171 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site." -msgstr "" -"fourni une solution pleinement compatible PCI (Payment Card Industry), " -"sécurisée, permettant de collecter et transmettre les données de carte de " -"crédit à votre passerelle de paiement tout en conservant le controle du " -"design de votre site." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:34 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:129 -msgid "PayPal" -msgstr "PayPal" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:91 -msgid "PayPal standard" -msgstr "PayPal standard" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:92 -msgid "" -"PayPal standard works by sending the user to PayPal to enter their payment " -"information." -msgstr "" -"PayPal standard fonctionne en envoyant l'utilisateur vers PayPal pour entrer " -"ses informations de règlement." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:104 -msgid "Gateway Disabled" -msgstr "Passerelle désactivée" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:104 -msgid "PayPal does not support your store currency." -msgstr "PayPal ne gère pas la monnaie de votre boutique." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:122 -msgid "Enable PayPal standard" -msgstr "Activer PayPal standard" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:136 -msgid "" -"Pay via PayPal; you can pay with your credit card if you don't have a PayPal " -"account" -msgstr "" -"Régler via PayPal, vous pouvez régler avec votre carte bancaire même si vous " -"ne possédez pas de compte PayPal." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:139 -msgid "PayPal Email" -msgstr "Email PayPal" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:141 -msgid "" -"Please enter your PayPal email address; this is needed in order to take " -"payment." -msgstr "" -"Veuillez entrer votre adresse email PayPal, cela est nécessaire pour valider " -"le paiement." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:147 -msgid "Receiver Email" -msgstr "Email du Destinataire" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:149 -msgid "" -"If this differs from the email entered above, input your main receiver email " -"for your PayPal account. This is used to validate IPN requests." -msgstr "" -"Si cela diffère de l'email saisi ci-dessus, renseignez l'email principal de " -"votre compte Paypal. Cela est nécessaire pour valider les requêtes IPN." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:155 -msgid "Invoice Prefix" -msgstr "Préfix de la facture" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:157 -msgid "" -"Please enter a prefix for your invoice numbers. If you use your PayPal " -"account for multiple stores ensure this prefix is unique as PayPal will not " -"allow orders with the same invoice number." -msgstr "" -"Veuillez entrer un préfix pour vos numéros de facture. Si vous utilisez " -"votre compte PayPal pour de multiples boutiques, ce préfix doit être unique " -"car PayPal ne permet pas les commandes avec le même numéro de commande." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:162 -msgid "Submission method" -msgstr "Méthode de soumission" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:164 -msgid "Use form submission method." -msgstr "Utilisez la méthode du formulaire de soumission." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:165 -msgid "" -"Enable this to post order data to PayPal via a form instead of using a " -"redirect/querystring." -msgstr "" -"Activer ceci pour publier les données de commande à PayPal par formulaire au " -"lieu d'utiliser une redirection/querystring." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:169 -msgid "Page Style" -msgstr "Page styles" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:171 -msgid "" -"Optionally enter the name of the page style you wish to use. These are " -"defined within your PayPal account." -msgstr "" -"Optionnellement entrez le nom de la page de styles que vous souhaitez " -"utiliser. Ils sont définis dans votre compte PayPal." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:174 -msgid "Optional" -msgstr "Optionnel" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:177 -msgid "Shipping options" -msgstr "Options de livraison" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:182 -msgid "Shipping details" -msgstr "Détails d'expédition" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:184 -msgid "Send shipping details to PayPal instead of billing." -msgstr "" -"Envoyer les détails de livraison à PayPal au lieu de ceux de facturation." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:186 -msgid "" -"PayPal allows us to send 1 address. If you are using PayPal for shipping " -"labels you may prefer to send the shipping address rather than billing." -msgstr "" -"PayPal permet d'envoyer à une adresse. Si vous utilisez PayPal pour les " -"étiquettes de livraison, vous pouvez préférer envoyer l'adresse de livraison " -"plutôt que celle de facturation." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:190 -msgid "Address override" -msgstr "Outrepasser l'adresse" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:192 -msgid "" -"Enable \"address_override\" to prevent address information from being " -"changed." -msgstr "Activez \"address_override\" pour éviter que l'adresse soit changée." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:193 -msgid "" -"PayPal verifies addresses therefore this setting can cause errors (we " -"recommend keeping it disabled)." -msgstr "" -"PayPal vérifie les adresses donc ce paramètre peut causer des erreurs (nous " -"recommandons de le laisser désactivé). " - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:197 -msgid "Gateway Testing" -msgstr "Test Passerelle" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:202 -msgid "PayPal sandbox" -msgstr "PayPal sandbox" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:204 -msgid "Enable PayPal sandbox" -msgstr "Activer PayPal sandbox" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:206 -msgid "" -"PayPal sandbox can be used to test payments. Sign up for a developer account " -"here." -msgstr "" -"La sandbox PayPal peut être utilisée pour les tests de paiement. Inscrivez-" -"vous ici pour un compte développeur." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:209 -msgid "Debug Log" -msgstr "Log de Débugue" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:211 -msgid "Enable logging" -msgstr "Activer l'enregistrement de logs" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:213 -msgid "" -"Log PayPal events, such as IPN requests, inside woocommerce/logs/" -"paypal-%s.txt" -msgstr "" -"Activer les logs Paypal, telles que les requêtes IPN, dans woocommerce/" -"logs/paypal-%s.txt" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:322 -msgid "Order %s" -msgstr "Commande %s" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:332 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:386 -msgid "Shipping via" -msgstr "Livraison par" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:427 -msgid "" -"Thank you for your order. We are now redirecting you to PayPal to make " -"payment." -msgstr "" -"Merci de votre commande. Nous allons maintenant vous rediriger vers PayPal " -"pour effectuer votre paiement." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:448 -msgid "Pay via PayPal" -msgstr "Régler via PayPal" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:448 -msgid "Cancel order & restore cart" -msgstr "Annuler la commande et restaurer le panier" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:502 -msgid "" -"Thank you for your order, please click the button below to pay with PayPal." -msgstr "" -"Merci de votre commande, cliquez sur le bouton ci-dessous pour régler via " -"PayPal, svp." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:644 -msgid "Validation error: PayPal amounts do not match (gross %s)." -msgstr "Erreur de validation : les quantités Paypal ne correspondent pas (%s)." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:655 -msgid "" -"Validation error: PayPal IPN response from a different email address (%s)." -msgstr "" -"Erreur de validation : réponse de Paypal IPN depuis un email différent (%s)." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:673 -msgid "IPN payment completed" -msgstr "Paiement IPN complété" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:685 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:693 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:711 -msgid "Payment %s via IPN." -msgstr "Paiement %s via IPN" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:698 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:716 -msgid "Order refunded/reversed" -msgstr "Commande recréditée/remboursée" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:699 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:717 -msgid "Order %s has been marked as refunded - PayPal reason code: %s" -msgstr "" -"La commande n°%s a été indiquée comme recrédité - Code explicatif " -"PayPal : %s" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:702 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:720 -msgid "Payment for order %s refunded/reversed" -msgstr "Paiement pour la commande n°%s recréditée/remboursée" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:26 -msgid "Google Analytics" -msgstr "Google Analytics" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:27 -msgid "" -"Google Analytics is a free service offered by Google that generates detailed " -"statistics about the visitors to a website." -msgstr "" -"Google Analytics est un service gratuit offert par Google qui génère des " -"statistiques détaillées sur les visiteurs d'un site." - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:63 -msgid "Google Analytics ID" -msgstr "Google Analytics ID" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:64 -msgid "" -"Log into your google analytics account to find your ID. e.g. UA-XXXXX-" -"X" -msgstr "" -"Connectez vous à votre compte Google analytics pour trouver votre ID. Ex : " -"UA-XXXXX-X" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:69 -msgid "Set Domain Name" -msgstr "Définir le Nom de domaine" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:70 -msgid "" -"(Optional) Sets the _setDomainName variable. See " -"here for more information." -msgstr "" -"(Optionnel) Indiquez la variable _setDomainName. Voir ici pour plus d'informations." - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:75 -msgid "Tracking code" -msgstr "Code de suivi" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:76 -msgid "" -"Add tracking code to your site's footer. You don't need to enable this if " -"using a 3rd party analytics plugin." -msgstr "" -"Ajouter le code de suivi dans le pied de page du site. Vous n'avez pas " -"besoin de l'activer si vous vous servez d'un outil tierce de statistiques." - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:82 -msgid "Add eCommerce tracking code to the thankyou page" -msgstr "Ajouter le code de suivi eCommerce à votre page de remerciements." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:88 -msgid "Add event tracking code for add to cart actions" -msgstr "" -"Ajoutez le code de suivi des événements pour ajouter les actions du panier" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:120 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:180 -#: woocommerce-ajax.php:1652 -msgid "Guest" -msgstr "Invité" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:218 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:275 -#: templates/single-product/meta.php:19 -msgid "SKU:" -msgstr "UGS :" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:273 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:293 -#: woocommerce.php:982 -msgid "Products" -msgstr "Produits" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:294 -msgid "Add to Cart" -msgstr "Ajouter au panier" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:26 -msgid "ShareDaddy" -msgstr "ShareDaddy" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:27 -msgid "ShareDaddy is a sharing plugin bundled with JetPack." -msgstr "ShareDaddy est une extension de partage livré avec JetPack." - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:51 -msgid "Output ShareDaddy button?" -msgstr "Bouton ShareDaddy ?" - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:52 -msgid "Enable this option to show the ShareDaddy button on the product page." -msgstr "" -"Activer cette option pour afficher le bouton ShareDaddy sur la page produit." - -#: classes/integrations/sharethis/class-wc-sharethis.php:29 -msgid "ShareThis" -msgstr "ShareThis" - -#: classes/integrations/sharethis/class-wc-sharethis.php:30 -msgid "" -"ShareThis offers a sharing widget which will allow customers to share links " -"to products with their friends." -msgstr "" -"ShareThis propose un widget de partage qui permet aux clients de partager " -"les liens des produits avec leurs amis." - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:63 -msgid "ShareThis Publisher ID" -msgstr "ID Editeur ShareThis" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:64 -msgid "" -"Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons on " -"product pages." -msgstr "" -"Entrez votre %1$sID Editeur ShareThis%2$s pour afficher les boutons de " -"partage social sur les pages produit." - -#: classes/integrations/sharethis/class-wc-sharethis.php:69 -msgid "ShareThis Code" -msgstr "Code ShareThis" - -#: classes/integrations/sharethis/class-wc-sharethis.php:70 -msgid "You can tweak the ShareThis code by editing this option." -msgstr "Vous pouvez modifier le code ShareThis en éditant cette option." - -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:22 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:329 -msgid "ShareYourCart" -msgstr "ShareYourCart" - -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:23 -msgid "" -"Increase your social media exposure by 10 percent! ShareYourCart helps you " -"get more customers by motivating satisfied customers to talk with their " -"friends about your products. For help with ShareYourCart view the documentation." -msgstr "" -"Augmentez votre présence en réseau social de 10 pourcents ! ShareYourCart " -"vous aide à obtenir plus de clients en motivant les clients satisfaits à " -"parler à leurs amis de vos produits. Pour une aide sur ShareYourCart, voir " -"la documentation." - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:328 -msgid "Share your cart settings" -msgstr "Partager les paramètres de votre panier" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:342 -msgid "Button" -msgstr "Bouton" - -# @ woocommerce -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:343 -msgid "Customize Button" -msgstr "Personnaliser le bouton" - -# @ woocommerce -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:351 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:352 -msgid "Documentation" -msgstr "Documentation" - -#: classes/integrations/shareyourcart/views/admin-page.php:33 -msgid "Setup your ShareYourCart account" -msgstr "Paramétrez votre compte ShareYourCart" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Create an account" -msgstr "Créer un compte" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Can't access your account?" -msgstr "Impossible d'accéder à votre compte ?" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:100 -msgid "Configure" -msgstr "Configurer" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:110 -#: classes/integrations/shareyourcart/views/button-settings-page.php:120 -msgid "Save changes" -msgstr "Enregistrer les changements" - -#: classes/integrations/shareyourcart/views/button-settings-page.php:8 -#: classes/integrations/shareyourcart/views/button-settings-page.php:11 -msgid "Button style" -msgstr "Style bouton" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:25 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:85 -msgid "Flat Rate" -msgstr "Taux Fixe" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:27 -msgid "Flat rates let you define a standard rate per item, or per order." -msgstr "" -"Les taux fixes vous laissent définir un taux standard par article, ou par " -"commande." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:78 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:52 -msgid "Enable this shipping method" -msgstr "Activer la méthode de livraison" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:82 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:81 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:56 -msgid "Method Title" -msgstr "Titre de la méthode" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:89 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:63 -msgid "Availability" -msgstr "Disponibilité" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:93 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:148 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:104 -msgid "All allowed countries" -msgstr "Tous les pays autorisés" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:95 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:99 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:98 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:149 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:153 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:105 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:109 -msgid "Specific Countries" -msgstr "Pays spécifiques" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:107 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:81 -msgid "Tax Status" -msgstr "État de la taxe" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:111 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:85 -msgid "Taxable" -msgstr "Taxable" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:112 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:86 -msgid "None" -msgstr "Aucun" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:116 -msgid "Cost per order" -msgstr "Coût par commande" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:122 -msgid "" -"Enter a cost (excluding tax) per order, e.g. 5.00. Leave blank to disable." -msgstr "" -"Entrez un coût (H.T.) par commande, ex. 5.00. Laissez vide pour désactiver." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:128 -msgid "Additional Rates" -msgstr "Taux Additionnels" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:130 -msgid "" -"Optional extra shipping options with additional costs (one per line): Option " -"Name | Additional Cost | Per Cost Type (order, class, or item) Example: " -"Priority Mail | 6.95 | order." -msgstr "" -"Options de livraison optionnelles avec des coûts additionnels (un par " -"ligne) : Nom de l'option | Coût | Type de Coût (order, class ou item). " -"Exemple : Expédition prioritaire|6.95|order." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:133 -msgid "Option Name | Additional Cost | Per Cost Type (order, class, or item)" -msgstr "" -"Nom de l'Option | Coût Additionnel | Type de Coût (order, class, ou item)" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:136 -msgid "Additional Costs" -msgstr "Coûts Additionnels" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:138 -msgid "" -"Additional costs can be added below - these will all be added to the per-" -"order cost above." -msgstr "" -"Les coûts additionnels peuvent être ajoutés ci-dessous - ils seront ajoutés " -"au coût par commande ci-dessus." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:141 -msgid "Costs Added..." -msgstr "Coûts Ajoutés..." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:145 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:94 -msgid "Per Order - charge shipping for the entire order as a whole" -msgstr "Par Commande - frais d'envoi pour toute la commande dans son ensemble" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:146 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:95 -msgid "Per Item - charge shipping for each item individually" -msgstr "Par Article - frais d'envoi pour chaque article individuellement" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:147 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:96 -msgid "Per Class - charge shipping for each shipping class in an order" -msgstr "" -"Par Classe - frais d'envoi pour chaque classe de livraison dans une commande" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:154 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:120 -msgid "Minimum Handling Fee" -msgstr "Frais de manutention minimum" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:160 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:126 -msgid "" -"Enter a minimum fee amount. Fee's less than this will be increased. Leave " -"blank to disable." -msgstr "" -"Entrez le montant minimum des frais. Les frais inférieurs seront augmentés. " -"Laisser vide pour déactiver." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:479 -msgid "Costs" -msgstr "Coûts" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:485 -#: woocommerce.php:891 -msgid "Shipping Class" -msgstr "Classe de livraison" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:486 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:100 -msgid "Cost" -msgstr "Coût" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:486 -msgid "Cost, excluding tax." -msgstr "Coût, H.T.." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:487 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:112 -msgid "Handling Fee" -msgstr "Frais de gestion" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:487 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -msgstr "Frais H.T.. Entrez un montant, ex.: 2.50, ou un pourcentage, ex.: 5%." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:492 -msgid "+ Add Cost" -msgstr "+ Ajouter Coût" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:492 -msgid "Delete selected costs" -msgstr "Supprimer les coûts sélectionnés" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:498 -msgid "Any class" -msgstr "Toutes classes" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:499 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:500 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:110 -#: templates/order/order-details.php:119 templates/order/order-details.php:134 -msgid "N/A" -msgstr "N/A" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:518 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:548 -msgid "Select a class…" -msgstr "Sélectionnez une classe…" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:523 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:524 -msgid "0.00" -msgstr "0.00" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:562 -msgid "Delete the selected rates?" -msgstr "Supprimer les taux sélectionnés" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:25 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:145 -msgid "Free Shipping" -msgstr "Livraison Gratuite" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:77 -msgid "Enable Free Shipping" -msgstr "Activer la livraison gratuite" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:88 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:143 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:99 -msgid "Method availability" -msgstr "Méthode de disponibilité" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:106 -msgid "Free Shipping Requires..." -msgstr "La livraison gratuite requiert..." - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:111 -msgid "A valid free shipping coupon" -msgstr "Un code promo de livraison gratuite valide" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:112 -msgid "A minimum order amount (defined below)" -msgstr "Un montant minimum de commande (défini ci-dessous)" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:113 -msgid "A minimum order amount OR a coupon" -msgstr "Un montant minimum de commande OU un coupon" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:114 -msgid "A minimum order amount AND a coupon" -msgstr "Un montant minimum de commande ET un coupon" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:118 -msgid "Minimum Order Amount" -msgstr "Montant minimum de commande" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:124 -msgid "" -"Users will need to spend this amount to get free shipping (if enabled above)." -msgstr "" -"Les utilisateurs auront besoin de dépenser cette somme pour obtenir la " -"livraison gratuite (si activée ci-dessus)." - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:29 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:59 -msgid "International Delivery" -msgstr "Livraison internationale" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:30 -msgid "International delivery based on flat rate shipping." -msgstr "Livraison internationale basée sur l'expédition forfaitaire." - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:68 -msgid "Selected countries" -msgstr "Pays sélectionnés" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:69 -msgid "Excluding selected countries" -msgstr "Exclure les pays sélectionnés" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:73 -msgid "Countries" -msgstr "Pays" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:90 -msgid "Cost Added..." -msgstr "Coût Ajouté..." - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:106 -msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -msgstr "Coût sans les taxes. Entrez un montant. Ex : 2.50." - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:114 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. " -"Leave blank to disable." -msgstr "" -"Les frais sans les taxes. Entrez un montant (Ex : 2.50) ou un pourcentage " -"(Ex : 5%). Laissez vide pour désactiver." - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:25 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:107 -msgid "Local Delivery" -msgstr "Livraison locale" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:98 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:78 -msgid "Enable" -msgstr "Activer" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:100 -msgid "Enable local delivery" -msgstr "Activer la livraison locale" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:111 -msgid "Fee Type" -msgstr "Type de Frais" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:113 -msgid "How to calculate delivery charges" -msgstr "Comment calculer les frais de livraison" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 -msgid "Fixed amount" -msgstr "Montant fixe" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:117 -msgid "Percentage of cart total" -msgstr "Pourcentage du total panier" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:118 -msgid "Fixed amount per product" -msgstr "Montant fixe par produit" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:123 -msgid "Delivery Fee" -msgstr "Frais de livraison" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:129 -msgid "" -"What fee do you want to charge for local delivery, disregarded if you choose " -"free. Leave blank to disable." -msgstr "" -"Quels frais voulez-vous facturer pour la livraison locale, ignorez si vous " -"choisissez gratuit. Laissez vide pour désactiver." - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:135 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:91 -msgid "Zip/Post Codes" -msgstr "Codes Postaux" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:137 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:93 -msgid "" -"What zip/post codes would you like to offer delivery to? Separate codes with " -"a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -msgstr "" -"A quels codes postaux souhaitez-vous offrir la livraison ? Séparez les codes " -"par une virgule. Accepte les jokers, ex. 77* sera vérifié par un code postal " -"tel que 77100." - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:172 -msgid "" -"Local delivery is a simple shipping method for delivering orders locally." -msgstr "" -"La livraison locale est une méthode simple de livraison pour expédier des " -"commandes localement." - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:25 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:87 -msgid "Local Pickup" -msgstr "Point de vente" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:80 -msgid "Enable local pickup" -msgstr "Activer le Point de vente" - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:117 -msgid "Apply base tax rate" -msgstr "Appliquer le taux de taxe de base" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:119 -msgid "" -"When this shipping method is chosen, apply the base tax rate rather than for " -"the customer's given address." -msgstr "" -"Lorsque cette méthode d'expédition est choisie, appliquer le taux de taxe de " -"base plutôt que celui de l'adresse du client." - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:134 -msgid "" -"Local pickup is a simple method which allows the customer to pick up their " -"order themselves." -msgstr "" -"Point de vente est une méthode simple qui permet au client de récupérer leur " -"commande eux-mêmes." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-cart.php:53 -#: woocommerce-functions.php:1701 -msgid "Please enter a valid postcode/ZIP." -msgstr "Entrez un code postal/ZIP valide, svp." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-cart.php:64 -#: classes/shortcodes/class-wc-shortcode-cart.php:70 -msgid "Shipping costs updated." -msgstr "Coûts d'expédition mis à jour." - -#: classes/shortcodes/class-wc-shortcode-checkout.php:45 -msgid "" -"WooCommerce Config Error: The checkout thanks/pay pages are missing - these " -"pages are required for the checkout to function correctly. Please configure " -"the pages here." -msgstr "" -"Erreur de Configuration WooCommerce : les pages de commande remerciement/" -"paiement sont manquantes - ces pages sont nécessaires pour que la commande " -"fonctionne correctement. Veuillez configurer les pages ici." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-checkout.php:73 -msgid "" -"The order totals have been updated. Please confirm your order by pressing " -"the Place Order button at the bottom of the page." -msgstr "" -"Le total de la commande à été mis à jour. Confirmez votre commande svp en " -"cliquant sur le bouton en bas de la page." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:78 -#: woocommerce-functions.php:1623 -msgid "Please enter your password." -msgstr "Entrez votre mot de passe, svp." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:93 -msgid "Your password has been reset." -msgstr "Votre mot de passe a été réinitialisé." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:93 -msgid "Log in" -msgstr "Identification" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:114 -msgid "Enter a username or e-mail address." -msgstr "Saisissez un identifiant ou une adresse email." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:121 -msgid "There is no user registered with that email address." -msgstr "Il n'y a pas d'utilisateur enregistré avec cette adresse email." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:136 -msgid "Invalid username or e-mail." -msgstr "Identifiant ou email invalide." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:150 -msgid "Password reset is not allowed for this user" -msgstr "" -"La réinitialisation du mot de passe n'est pas authorisé pour cet utilisateur" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:178 -msgid "Check your e-mail for the confirmation link." -msgstr "Vérifiez votre email pour le lien de confirmation." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:198 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:203 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:210 -msgid "Invalid key" -msgstr "Touche invalide" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:51 -msgid "Please enter a valid order ID" -msgstr "Veuillez entrer un ID commande valide" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:55 -msgid "Please enter a valid order email" -msgstr "Veuillez entrer un email de commande valide" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:74 -msgid "Sorry, we could not find that order id in our database." -msgstr "" -"Désolé, nous ne pouvons pas trouver cette commande dans notre base de " -"données." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:64 -#: classes/shortcodes/class-wc-shortcode-pay.php:118 -msgid "" -"Your order has already been paid for. Please contact us if you need " -"assistance." -msgstr "" -"Votre commande a déjà été réglée. Contactez nous, svp si vous avez besoin " -"d'assistance." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:69 -#: classes/shortcodes/class-wc-shortcode-pay.php:125 -#: classes/shortcodes/class-wc-shortcode-view-order.php:51 -#: woocommerce-functions.php:909 woocommerce-functions.php:989 -msgid "Invalid order." -msgstr "Commande non valide" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:90 -#: templates/checkout/thankyou.php:40 -#: templates/emails/customer-completed-order.php:18 -#: templates/emails/customer-invoice.php:22 -#: templates/emails/customer-note.php:22 -#: templates/emails/customer-processing-order.php:18 -msgid "Order:" -msgstr "Commande :" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:94 -#: templates/checkout/thankyou.php:44 -msgid "Date:" -msgstr "Date :" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:98 -#: templates/checkout/thankyou.php:48 -msgid "Total:" -msgstr "Total :" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:103 -#: templates/checkout/thankyou.php:53 -msgid "Payment method:" -msgstr "Méthode de paiement :" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:51 -msgid "My Account →" -msgstr "Mon compte →" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:58 -msgid "" -"Order %s made on %s" -msgstr "" -"Commande %s effectuée le %s" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:59 -msgid "Order status: %s" -msgstr "État de la commande : %s " - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:65 -#: templates/order/tracking.php:31 -msgid "Order Updates" -msgstr "Mises à jour de la commande" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:71 -msgid "l jS \\of F Y, h:ia" -msgstr "l j F Y h:i:s" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:31 -msgid "Display a list of your best selling products on your site." -msgstr "Affiche une liste des produits se vendant le mieux sur votre site." - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:33 -msgid "WooCommerce Best Sellers" -msgstr "Meilleures ventes WooCommerce" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:71 -msgid "Best Sellers" -msgstr "Meilleures ventes" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:189 -#: classes/widgets/class-wc-widget-cart.php:109 -#: classes/widgets/class-wc-widget-featured-products.php:169 -#: classes/widgets/class-wc-widget-layered-nav.php:349 -#: classes/widgets/class-wc-widget-onsale.php:176 -#: classes/widgets/class-wc-widget-price-filter.php:179 -#: classes/widgets/class-wc-widget-product-categories.php:185 -#: classes/widgets/class-wc-widget-product-search.php:91 -#: classes/widgets/class-wc-widget-product-tag-cloud.php:101 -#: classes/widgets/class-wc-widget-random-products.php:134 -#: classes/widgets/class-wc-widget-recent-products.php:170 -#: classes/widgets/class-wc-widget-recent-reviews.php:158 -#: classes/widgets/class-wc-widget-recently-viewed.php:166 -#: classes/widgets/class-wc-widget-top-rated-products.php:156 -msgid "Title:" -msgstr "Titre :" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:192 -#: classes/widgets/class-wc-widget-featured-products.php:172 -#: classes/widgets/class-wc-widget-onsale.php:179 -#: classes/widgets/class-wc-widget-random-products.php:139 -#: classes/widgets/class-wc-widget-recent-products.php:173 -#: classes/widgets/class-wc-widget-recent-reviews.php:161 -#: classes/widgets/class-wc-widget-recently-viewed.php:169 -#: classes/widgets/class-wc-widget-top-rated-products.php:159 -msgid "Number of products to show:" -msgstr "Nombre de produits à afficher :" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:196 -msgid "Hide free products" -msgstr "Masquer les produits gratuits" - -# @ woocommerce -#: classes/widgets/class-wc-widget-cart.php:33 -msgid "Display the user's Cart in the sidebar." -msgstr "Affiche le Panier du visiteur dans la barre latérale." - -# @ woocommerce -#: classes/widgets/class-wc-widget-cart.php:35 -msgid "WooCommerce Cart" -msgstr "Panier WooCommerce" - -#: classes/widgets/class-wc-widget-cart.php:113 -msgid "Hide if cart is empty" -msgstr "Masquer si le panier est vide" - -# @ woocommerce -#: classes/widgets/class-wc-widget-featured-products.php:35 -msgid "Display a list of featured products on your site." -msgstr "Affiche une liste de vos produits mis en avant dans votre site." - -# @ woocommerce -#: classes/widgets/class-wc-widget-featured-products.php:37 -msgid "WooCommerce Featured Products" -msgstr "WooCommerce Produits mis en avant" - -# @ woocommerce -#: classes/widgets/class-wc-widget-featured-products.php:75 -msgid "Featured Products" -msgstr "Produits Mis en Avant" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:31 -msgid "Shows active layered nav filters so users can see and deactivate them." -msgstr "" -"Afficher les filtres actifs layered nav que les utilisateurs puissent les " -"voir et les désactiver." - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:33 -msgid "WooCommerce Layered Nav Filters" -msgstr "Filtres WooCommerce Layered Nav" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:62 -msgid "Active filters" -msgstr "Filtres actifs" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:93 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Remove filter" -msgstr "Supprimer filtre" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -msgid "Min" -msgstr "Min" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Max" -msgstr "Max" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:31 -msgid "" -"Shows a custom attribute in a widget which lets you narrow down the list of " -"products when viewing product categories." -msgstr "" -"Affiche un attribut personnalisé dans un widget qui vous permet d'affiner la " -"liste des produits lors de la visualisation des catégories de produits." - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:33 -msgid "WooCommerce Layered Nav" -msgstr "WooCommerce Layered Nav" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:100 -msgid "Any %s" -msgstr "Toute %s" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:352 -msgid "Attribute:" -msgstr "Attribut :" - -#: classes/widgets/class-wc-widget-layered-nav.php:363 -msgid "Display Type:" -msgstr "Type d'affichage :" - -#: classes/widgets/class-wc-widget-layered-nav.php:365 -msgid "List" -msgstr "Liste" - -#: classes/widgets/class-wc-widget-layered-nav.php:366 -msgid "Dropdown" -msgstr "Déroulante" - -#: classes/widgets/class-wc-widget-layered-nav.php:369 -msgid "Query Type:" -msgstr "Type de requête :" - -#: classes/widgets/class-wc-widget-layered-nav.php:371 -msgid "AND" -msgstr "AND" - -#: classes/widgets/class-wc-widget-layered-nav.php:372 -msgid "OR" -msgstr "OR" - -# @ woocommerce -#: classes/widgets/class-wc-widget-onsale.php:31 -msgid "Display a list of your on-sale products on your site." -msgstr "Affiche une liste de vos produits en vente sur votre site." - -# @ woocommerce -#: classes/widgets/class-wc-widget-onsale.php:33 -msgid "WooCommerce On-sale" -msgstr "WooCommerce En vente" - -# @ woocommerce -#: classes/widgets/class-wc-widget-onsale.php:70 -msgid "On Sale" -msgstr "En vente" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:33 -msgid "" -"Shows a price filter slider in a widget which lets you narrow down the list " -"of shown products when viewing product categories." -msgstr "" -"Affiche un widget de filtre de prix glissant qui permet d'afficher la liste " -"des produits en visualisant une catégorie de produits." - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:35 -msgid "WooCommerce Price Filter" -msgstr "WooCommerce Filtre de Prix" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:136 -msgid "Min price" -msgstr "Prix min" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:137 -msgid "Max price" -msgstr "Prix max" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:138 -msgid "Filter" -msgstr "Filtre" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:140 -msgid "Price:" -msgstr "Prix :" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:162 -msgid "Filter by price" -msgstr "Filtrer par prix" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:33 -msgid "A list or dropdown of product categories." -msgstr "Une liste ou un menu déroulant des catégories de produits" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:35 -msgid "WooCommerce Product Categories" -msgstr "WooCommerce Catégories Produits" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:57 -#: woocommerce.php:821 woocommerce.php:823 -msgid "Product Categories" -msgstr "Catégories" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:129 -msgid "No product categories exist." -msgstr "Aucune catégorie de produit." - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:188 -msgid "Order by:" -msgstr "Trié par :" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:190 -msgid "Category Order" -msgstr "Ordre categorie" - -# @ woocommerce -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:191 -#: templates/single-product-reviews.php:84 woocommerce-ajax.php:1171 -msgid "Name" -msgstr "Nom" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:195 -msgid "Show as dropdown" -msgstr "Afficher menu déroulant" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:198 -msgid "Show post counts" -msgstr "Afficher compteur articles" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:201 -msgid "Show hierarchy" -msgstr "Afficher la hiérarchie" - -#: classes/widgets/class-wc-widget-product-categories.php:204 -msgid "Only show children for the current category" -msgstr "Afficher uniquement les enfants de la catégorie courante" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-search.php:31 -msgid "A Search box for products only." -msgstr "Une boîte de recherche uniquement pour les produits" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-search.php:33 -msgid "WooCommerce Product Search" -msgstr "WooCommerce Recherche Produits" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-tag-cloud.php:31 -msgid "Your most used product tags in cloud format." -msgstr "Vos mots-clés de produits les plus utilisés dans un format nuage" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-tag-cloud.php:33 -msgid "WooCommerce Product Tags" -msgstr "WooCommerce Mots-Clés Produits" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-tag-cloud.php:58 -#: woocommerce.php:857 woocommerce.php:859 -msgid "Product Tags" -msgstr "Mots clés Produit" - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:24 -msgid "WooCommerce Random Products" -msgstr "WooCommerce Produits Aléatoires" - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:27 -msgid "Display a list of random products on your site." -msgstr "Afficher une liste aléatoire des produits sur votre site." - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:46 -msgid "Random Products" -msgstr "Produits aléatoires" - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:145 -#: classes/widgets/class-wc-widget-recent-products.php:177 -msgid "Show hidden product variations" -msgstr "Afficher les variations de produits cachées" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-products.php:31 -msgid "Display a list of your most recent products on your site." -msgstr "Affiche une liste de vos produits récents sur votre site;" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-products.php:33 -msgid "WooCommerce Recent Products" -msgstr "WooCommerce Produits Récents" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-products.php:70 -msgid "New Products" -msgstr "Nouveaux Produits" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:31 -msgid "Display a list of your most recent reviews on your site." -msgstr "Affiche une liste des avis les plus récents sur votre site" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:33 -msgid "WooCommerce Recent Reviews" -msgstr "WooCommerce Avis Récents" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:71 -msgid "Recent Reviews" -msgstr "Avis Récents" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:97 -msgctxt "by comment author" -msgid "by %1$s" -msgstr "par %1$s" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recently-viewed.php:31 -msgid "Display a list of recently viewed products." -msgstr "Affiche une liste des produits récemment vus" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recently-viewed.php:33 -msgid "WooCommerce Recently Viewed Products" -msgstr "WooCommerce Produits Vus Récemment" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recently-viewed.php:76 -msgid "Recently viewed" -msgstr "Récemment vus" - -# @ woocommerce -#: classes/widgets/class-wc-widget-top-rated-products.php:33 -msgid "Display a list of top rated products on your site." -msgstr "Affiche une liste de vos produits les mieux notés sur votre site." - -# @ woocommerce -#: classes/widgets/class-wc-widget-top-rated-products.php:35 -msgid "WooCommerce Top Rated Products" -msgstr "WooCommerce Produits les mieux notés" - -# @ woocommerce -#: classes/widgets/class-wc-widget-top-rated-products.php:72 -msgid "Top Rated Products" -msgstr "Produits les mieux notés" - -# @ woocommerce -#: i18n/states/AU.php:13 -msgid "Australian Capital Territory" -msgstr "Australian Capital Territory" - -# @ woocommerce -#: i18n/states/AU.php:14 -msgid "New South Wales" -msgstr "New South Wales" - -# @ woocommerce -#: i18n/states/AU.php:15 -msgid "Northern Territory" -msgstr "Northern Territory" - -# @ woocommerce -#: i18n/states/AU.php:16 -msgid "Queensland" -msgstr "Queensland" - -# @ woocommerce -#: i18n/states/AU.php:17 -msgid "South Australia" -msgstr "South Australia" - -# @ woocommerce -#: i18n/states/AU.php:18 -msgid "Tasmania" -msgstr "Tasmania" - -# @ woocommerce -#: i18n/states/AU.php:19 -msgid "Victoria" -msgstr "Victoria" - -# @ woocommerce -#: i18n/states/AU.php:20 -msgid "Western Australia" -msgstr "Western Australia" - -#: i18n/states/BR.php:13 -msgid "Acre" -msgstr "Acre" - -# @ woocommerce -#: i18n/states/BR.php:14 -msgid "Alagoas" -msgstr "Alagoas" - -#: i18n/states/BR.php:15 -msgid "Amapá" -msgstr "Amapá" - -# @ woocommerce -#: i18n/states/BR.php:16 -msgid "Amazonas" -msgstr "Amazonas" - -# @ woocommerce -#: i18n/states/BR.php:17 -msgid "Bahia" -msgstr "Bahia" - -#: i18n/states/BR.php:18 -msgid "Ceará" -msgstr "Ceará" - -#: i18n/states/BR.php:19 -msgid "Distrito Federal" -msgstr "Distrito Federal" - -#: i18n/states/BR.php:20 -msgid "Espírito Santo" -msgstr "Espírito Santo" - -#: i18n/states/BR.php:21 -msgid "Goiás" -msgstr "Goiás" - -#: i18n/states/BR.php:22 -msgid "Maranhão" -msgstr "Maranhão" - -#: i18n/states/BR.php:23 -msgid "Mato Grosso" -msgstr "Mato Grosso" - -#: i18n/states/BR.php:24 -msgid "Mato Grosso do Sul" -msgstr "Mato Grosso do Sul" - -#: i18n/states/BR.php:25 -msgid "Minas Gerais" -msgstr "Minas Gerais" - -#: i18n/states/BR.php:26 -msgid "Pará" -msgstr "Pará" - -#: i18n/states/BR.php:27 -msgid "Paraíba" -msgstr "Paraíba" - -#: i18n/states/BR.php:28 -msgid "Paraná" -msgstr "Paraná" - -#: i18n/states/BR.php:29 -msgid "Pernambuco" -msgstr "Pernambuco" - -#: i18n/states/BR.php:30 -msgid "Piauí" -msgstr "Piauí" - -#: i18n/states/BR.php:31 -msgid "Rio de Janeiro" -msgstr "Rio de Janeiro" - -#: i18n/states/BR.php:32 -msgid "Rio Grande do Norte" -msgstr "Rio Grande do Norte" - -#: i18n/states/BR.php:33 -msgid "Rio Grande do Sul" -msgstr "Rio Grande do Sul" - -#: i18n/states/BR.php:34 -msgid "Rondônia" -msgstr "Rondônia" - -# @ woocommerce -#: i18n/states/BR.php:35 -msgid "Roraima" -msgstr "Roraima" - -# @ woocommerce -#: i18n/states/BR.php:36 -msgid "Santa Catarina" -msgstr "Santa Catarina" - -#: i18n/states/BR.php:37 -msgid "São Paulo" -msgstr "São Paulo" - -# @ woocommerce -#: i18n/states/BR.php:38 -msgid "Sergipe" -msgstr "Sergipe" - -# @ woocommerce -#: i18n/states/BR.php:39 -msgid "Tocantins" -msgstr "Tocantins" - -# @ woocommerce -#: i18n/states/CA.php:13 -msgid "Alberta" -msgstr "Alberta" - -# @ woocommerce -#: i18n/states/CA.php:14 -msgid "British Columbia" -msgstr "Colombie-Britannique" - -# @ woocommerce -#: i18n/states/CA.php:15 -msgid "Manitoba" -msgstr "Manitoba" - -# @ woocommerce -#: i18n/states/CA.php:16 -msgid "New Brunswick" -msgstr "Nouveau-Brunswick" - -# @ woocommerce -#: i18n/states/CA.php:17 -msgid "Newfoundland" -msgstr "Terre-Neuve" - -# @ woocommerce -#: i18n/states/CA.php:18 -msgid "Northwest Territories" -msgstr "Territoires du Nord-Ouest" - -# @ woocommerce -#: i18n/states/CA.php:19 -msgid "Nova Scotia" -msgstr "Nouvelle-Écosse" - -# @ woocommerce -#: i18n/states/CA.php:20 -msgid "Nunavut" -msgstr "Nunavut" - -# @ woocommerce -#: i18n/states/CA.php:21 -msgid "Ontario" -msgstr "Ontario" - -# @ woocommerce -#: i18n/states/CA.php:22 -msgid "Prince Edward Island" -msgstr "Île du Prince-Édouard" - -# @ woocommerce -#: i18n/states/CA.php:23 -msgid "Quebec" -msgstr "Québec" - -# @ woocommerce -#: i18n/states/CA.php:24 -msgid "Saskatchewan" -msgstr "Saskatchewan" - -# @ woocommerce -#: i18n/states/CA.php:25 -msgid "Yukon Territory" -msgstr "Yukon" - -#: i18n/states/CN.php:13 -msgid "Yunnan / 云南" -msgstr "Yunnan / 云南" - -#: i18n/states/CN.php:14 -msgid "Beijing / 北京" -msgstr "Beijing / 北京" - -#: i18n/states/CN.php:15 -msgid "Tianjin / 天津" -msgstr "Tianjin / 天津" - -#: i18n/states/CN.php:16 -msgid "Hebei / 河北" -msgstr "Hebei / 河北" - -#: i18n/states/CN.php:17 -msgid "Shanxi / 山西" -msgstr "Shanxi / 山西" - -#: i18n/states/CN.php:18 -msgid "Inner Mongolia / 內蒙古" -msgstr "Mongolie-intérieure / 內蒙古" - -#: i18n/states/CN.php:19 -msgid "Liaoning / 辽宁" -msgstr "Liaoning / 辽宁" - -#: i18n/states/CN.php:20 -msgid "Jilin / 吉林" -msgstr "Jilin / 吉林" - -#: i18n/states/CN.php:21 -msgid "Heilongjiang / 黑龙江" -msgstr "Heilongjiang / 黑龙江" - -#: i18n/states/CN.php:22 -msgid "Shanghai / 上海" -msgstr "Shanghai / 上海" - -#: i18n/states/CN.php:23 -msgid "Jiangsu / 江苏" -msgstr "Jiangsu / 江苏" - -#: i18n/states/CN.php:24 -msgid "Zhejiang / 浙江" -msgstr "Zhejiang / 浙江" - -#: i18n/states/CN.php:25 -msgid "Anhui / 安徽" -msgstr "Anhui / 安徽" - -#: i18n/states/CN.php:26 -msgid "Fujian / 福建" -msgstr "Fujian / 福建" - -#: i18n/states/CN.php:27 -msgid "Jiangxi / 江西" -msgstr "Jiangxi / 江西" - -#: i18n/states/CN.php:28 -msgid "Shandong / 山东" -msgstr "Shandong / 山东" - -#: i18n/states/CN.php:29 -msgid "Henan / 河南" -msgstr "Henan / 河南" - -#: i18n/states/CN.php:30 -msgid "Hubei / 湖北" -msgstr "Hubei / 湖北" - -#: i18n/states/CN.php:31 -msgid "Hunan / 湖南" -msgstr "Hunan / 湖南" - -#: i18n/states/CN.php:32 -msgid "Guangdong / 广东" -msgstr "Guangdong / 广东" - -#: i18n/states/CN.php:33 -msgid "Guangxi Zhuang / 广西壮族" -msgstr "Guangxi Zhuang / 广西壮族" - -#: i18n/states/CN.php:34 -msgid "Hainan / 海南" -msgstr "Hainan / 海南" - -#: i18n/states/CN.php:35 -msgid "Chongqing / 重庆" -msgstr "Chongqing / 重庆" - -#: i18n/states/CN.php:36 -msgid "Sichuan / 四川" -msgstr "Sichuan / 四川" - -#: i18n/states/CN.php:37 -msgid "Guizhou / 贵州" -msgstr "Guizhou / 贵州" - -#: i18n/states/CN.php:38 -msgid "Shaanxi / 陕西" -msgstr "Shaanxi / 陕西" - -#: i18n/states/CN.php:39 -msgid "Gansu / 甘肃" -msgstr "Gansu / 甘肃" - -#: i18n/states/CN.php:40 -msgid "Qinghai / 青海" -msgstr "Qinghai / 青海" - -#: i18n/states/CN.php:41 -msgid "Ningxia Hui / 宁夏" -msgstr "Ningxia Hui / 宁夏" - -#: i18n/states/CN.php:42 -msgid "Macau / 澳门" -msgstr "Macau / 澳门" - -#: i18n/states/CN.php:43 -msgid "Tibet / 西藏" -msgstr "Tibet / 西藏" - -#: i18n/states/CN.php:44 -msgid "Xinjiang / 新疆" -msgstr "Xinjiang / 新疆" - -# @ woocommerce -#: i18n/states/HK.php:13 -msgid "Hong Kong Island" -msgstr "Hong Kong Island" - -#: i18n/states/HK.php:14 -msgid "Kowloon" -msgstr "Kowloon" - -# @ woocommerce -#: i18n/states/HK.php:15 -msgid "New Territories" -msgstr "Nouveaux Territoires" - -#: i18n/states/HU.php:13 -msgid "Bács-Kiskun" -msgstr "Bács-Kiskun" - -#: i18n/states/HU.php:14 -msgid "Békés" -msgstr "Békés" - -# @ woocommerce -#: i18n/states/HU.php:15 -msgid "Baranya" -msgstr "Baranya" - -#: i18n/states/HU.php:16 -msgid "Borsod-Abaúj-Zemplén" -msgstr "Borsod-Abaúj-Zemplén" - -#: i18n/states/HU.php:17 -msgid "Budapest" -msgstr "Budapest" - -#: i18n/states/HU.php:18 -msgid "Csongrád" -msgstr "Csongrád" - -#: i18n/states/HU.php:19 -msgid "Fejér" -msgstr "Fejér" - -#: i18n/states/HU.php:20 -msgid "Győr-Moson-Sopron" -msgstr "Győr-Moson-Sopron" - -#: i18n/states/HU.php:21 -msgid "Hajdú-Bihar" -msgstr "Hajdú-Bihar" - -#: i18n/states/HU.php:22 -msgid "Heves" -msgstr "Heves" - -#: i18n/states/HU.php:23 -msgid "Jász-Nagykun-Szolnok" -msgstr "Jász-Nagykun-Szolnok" - -#: i18n/states/HU.php:24 -msgid "Komárom-Esztergom" -msgstr "Komárom-Esztergom" - -#: i18n/states/HU.php:25 -msgid "Nógrád" -msgstr "Nógrád" - -#: i18n/states/HU.php:26 -msgid "Pest" -msgstr "Pest" - -#: i18n/states/HU.php:27 -msgid "Somogy" -msgstr "Somogy" - -#: i18n/states/HU.php:28 -msgid "Szabolcs-Szatmár-Bereg" -msgstr "Szabolcs-Szatmár-Bereg" - -#: i18n/states/HU.php:29 -msgid "Tolna" -msgstr "Tolna" - -# @ woocommerce -#: i18n/states/HU.php:30 -msgid "Vas" -msgstr "Vas" - -#: i18n/states/HU.php:31 -msgid "Veszprém" -msgstr "Veszprém" - -#: i18n/states/HU.php:32 -msgid "Zala" -msgstr "Zala" - -# @ woocommerce -#: i18n/states/HZ.php:13 i18n/states/NZ.php:14 -msgid "Auckland" -msgstr "Auckland" - -#: i18n/states/HZ.php:14 i18n/states/NZ.php:16 -msgid "Bay of Plenty" -msgstr "Bay of Plenty" - -# @ woocommerce -#: i18n/states/HZ.php:15 i18n/states/NZ.php:25 -msgid "Canterbury" -msgstr "Canterbury" - -#: i18n/states/HZ.php:16 i18n/states/NZ.php:18 -msgid "Hawke’s Bay" -msgstr "Hawke’s Bay" - -#: i18n/states/HZ.php:17 i18n/states/NZ.php:19 -msgid "Manawatu-Wanganui" -msgstr "Manawatu-Wanganui" - -#: i18n/states/HZ.php:18 i18n/states/NZ.php:22 -msgid "Marlborough" -msgstr "Marlborough" - -# @ woocommerce -#: i18n/states/HZ.php:19 i18n/states/NZ.php:21 -msgid "Nelson" -msgstr "Nelson" - -# @ woocommerce -#: i18n/states/HZ.php:20 i18n/states/NZ.php:13 -msgid "Northland" -msgstr "Northland" - -# "il y a" déplacé dans la chaine parente car "ago" est placé après la durée en anglais. -#: i18n/states/HZ.php:21 i18n/states/NZ.php:26 -msgid "Otago" -msgstr "Otago" - -# @ woocommerce -#: i18n/states/HZ.php:22 i18n/states/NZ.php:27 -msgid "Southland" -msgstr "Southland" - -# @ woocommerce -#: i18n/states/HZ.php:23 i18n/states/NZ.php:17 -msgid "Taranaki" -msgstr "Taranaki" - -# @ woocommerce -#: i18n/states/HZ.php:24 i18n/states/NZ.php:23 -msgid "Tasman" -msgstr "Tasman" - -# @ woocommerce -#: i18n/states/HZ.php:25 i18n/states/NZ.php:15 -msgid "Waikato" -msgstr "Waikato" - -# @ woocommerce -#: i18n/states/HZ.php:26 i18n/states/NZ.php:20 -msgid "Wellington" -msgstr "Wellington" - -# @ woocommerce -#: i18n/states/HZ.php:27 i18n/states/NZ.php:24 -msgid "West Coast" -msgstr "West Coast" - -#: i18n/states/ID.php:13 -msgid "Daerah Istimewa Aceh" -msgstr "Daerah Istimewa Aceh" - -#: i18n/states/ID.php:14 -msgid "Sumatera Utara" -msgstr "Sumatra du Nord" - -#: i18n/states/ID.php:15 -msgid "Sumatera Barat" -msgstr "Sumatra occidental" - -#: i18n/states/ID.php:16 -msgid "Riau" -msgstr "Riau" - -#: i18n/states/ID.php:17 -msgid "Kepulauan Riau" -msgstr "Îles Riau" - -# @ woocommerce -#: i18n/states/ID.php:18 -msgid "Jambi" -msgstr "Jambi" - -#: i18n/states/ID.php:19 -msgid "Sumatera Selatan" -msgstr "Sumatra du Sud" - -#: i18n/states/ID.php:20 -msgid "Bangka Belitung" -msgstr "Îles Bangka Belitung" - -#: i18n/states/ID.php:21 -msgid "Bengkulu" -msgstr "Bengkulu" - -#: i18n/states/ID.php:22 -msgid "Lampung" -msgstr "Lampung" - -#: i18n/states/ID.php:23 -msgid "DKI Jakarta" -msgstr "Jakarta" - -#: i18n/states/ID.php:24 -msgid "Jawa Barat" -msgstr "Java occidental" - -# @ woocommerce -#: i18n/states/ID.php:25 -msgid "Banten" -msgstr "Banten" - -#: i18n/states/ID.php:26 -msgid "Jawa Tengah" -msgstr "Java central" - -#: i18n/states/ID.php:27 -msgid "Jawa Timur" -msgstr "Java oriental" - -#: i18n/states/ID.php:28 -msgid "Daerah Istimewa Yogyakarta" -msgstr "Yogyakarta" - -#: i18n/states/ID.php:29 -msgid "Bali" -msgstr "Bali" - -#: i18n/states/ID.php:30 -msgid "Nusa Tenggara Barat" -msgstr "Petites Îles de la Sonde occidentales" - -#: i18n/states/ID.php:31 -msgid "Nusa Tenggara Timur" -msgstr "Petites Îles de la Sonde orientales" - -#: i18n/states/ID.php:32 -msgid "Kalimantan Barat" -msgstr "Kalimantan occidental" - -#: i18n/states/ID.php:33 -msgid "Kalimantan Tengah" -msgstr "Kalimantan central" - -#: i18n/states/ID.php:34 -msgid "Kalimantan Timur" -msgstr "Kalimantan oriental" - -#: i18n/states/ID.php:35 -msgid "Kalimantan Selatan" -msgstr "Kalimantan du Sud" - -# @ woocommerce -#: i18n/states/ID.php:36 -msgid "Kalimantan Utara" -msgstr "Nord Kalimantan" - -#: i18n/states/ID.php:37 -msgid "Sulawesi Utara" -msgstr "Sulawesi du Nord" - -#: i18n/states/ID.php:38 -msgid "Sulawesi Tengah" -msgstr "Sulawesi central" - -#: i18n/states/ID.php:39 -msgid "Sulawesi Tenggara" -msgstr "Sulawesi du Sud-Est" - -#: i18n/states/ID.php:40 -msgid "Sulawesi Barat" -msgstr "Sulawesi occidental" - -#: i18n/states/ID.php:41 -msgid "Sulawesi Selatan" -msgstr "Sulawesi du Sud" - -#: i18n/states/ID.php:42 -msgid "Gorontalo" -msgstr "Gorontalo" - -#: i18n/states/ID.php:43 -msgid "Maluku" -msgstr "Maluku" - -#: i18n/states/ID.php:44 -msgid "Maluku Utara" -msgstr "Moluques du Nord" - -#: i18n/states/ID.php:45 -msgid "Papua" -msgstr "Papouasie" - -#: i18n/states/ID.php:46 -msgid "Papua Barat" -msgstr "Papouasie occidentale" - -#: i18n/states/IN.php:13 -msgid "Andra Pradesh" -msgstr "Andhra Pradesh" - -#: i18n/states/IN.php:14 -msgid "Arunachal Pradesh" -msgstr "Arunachal Pradesh" - -#: i18n/states/IN.php:15 -msgid "Assam" -msgstr "Assam" - -#: i18n/states/IN.php:16 -msgid "Bihar" -msgstr "Bihar" - -#: i18n/states/IN.php:17 -msgid "Chhattisgarh" -msgstr "Chhattisgarh" - -# @ woocommerce -#: i18n/states/IN.php:18 -msgid "Goa" -msgstr "Goa" - -#: i18n/states/IN.php:19 -msgid "Gujarat" -msgstr "Gujarat" - -# @ woocommerce -#: i18n/states/IN.php:20 -msgid "Haryana" -msgstr "Haryana" - -#: i18n/states/IN.php:21 -msgid "Himachal Pradesh" -msgstr "Himachal Pradesh" - -#: i18n/states/IN.php:22 -msgid "Jammu and Kashmir" -msgstr "Jammu-et-Cachemire" - -#: i18n/states/IN.php:23 -msgid "Jharkhand" -msgstr "Jharkhand" - -#: i18n/states/IN.php:24 -msgid "Karnataka" -msgstr "Karnataka" - -# @ woocommerce -#: i18n/states/IN.php:25 -msgid "Kerala" -msgstr "Kerala" - -#: i18n/states/IN.php:26 -msgid "Madhya Pradesh" -msgstr "Madhya Pradesh" - -#: i18n/states/IN.php:27 -msgid "Maharashtra" -msgstr "Maharashtra" - -#: i18n/states/IN.php:28 -msgid "Manipur" -msgstr "Manipur" - -# @ woocommerce -#: i18n/states/IN.php:29 -msgid "Meghalaya" -msgstr "Meghalaya" - -#: i18n/states/IN.php:30 -msgid "Mizoram" -msgstr "Mizoram" - -# @ woocommerce -#: i18n/states/IN.php:31 -msgid "Nagaland" -msgstr "Nagaland" - -#: i18n/states/IN.php:32 -msgid "Orissa" -msgstr "Orissa" - -#: i18n/states/IN.php:33 -msgid "Punjab" -msgstr "Punjab" - -#: i18n/states/IN.php:34 -msgid "Rajasthan" -msgstr "Rajasthan" - -#: i18n/states/IN.php:35 -msgid "Sikkim" -msgstr "Sikkim" - -#: i18n/states/IN.php:36 -msgid "Tamil Nadu" -msgstr "Tamil Nadu" - -#: i18n/states/IN.php:37 -msgid "Tripura" -msgstr "Tripura" - -#: i18n/states/IN.php:38 -msgid "Uttaranchal" -msgstr "Uttaranchal" - -#: i18n/states/IN.php:39 -msgid "Uttar Pradesh" -msgstr "Uttar Pradesh" - -#: i18n/states/IN.php:40 -msgid "West Bengal" -msgstr "Bengale-Occidental" - -# @ woocommerce -#: i18n/states/IN.php:41 -msgid "Andaman and Nicobar Islands" -msgstr "Îles Andaman-et-Nicobar" - -# @ woocommerce -#: i18n/states/IN.php:42 -msgid "Chandigarh" -msgstr "Chandigarh" - -#: i18n/states/IN.php:43 -msgid "Dadar and Nagar Haveli" -msgstr "Dadra et Nagar Haveli" - -#: i18n/states/IN.php:44 -msgid "Daman and Diu" -msgstr "Daman et Diu" - -#: i18n/states/IN.php:45 -msgid "Delhi" -msgstr "Delhi" - -#: i18n/states/IN.php:46 -msgid "Lakshadeep" -msgstr "Lakshadeep" - -#: i18n/states/IN.php:47 -msgid "Pondicherry (Puducherry)" -msgstr "Pondichéry (Puducherry)" - -#: i18n/states/MY.php:13 -msgid "Johor" -msgstr "Johor" - -#: i18n/states/MY.php:14 -msgid "Kedah" -msgstr "Kedah" - -#: i18n/states/MY.php:15 -msgid "Kelantan" -msgstr "Kelantan" - -#: i18n/states/MY.php:16 -msgid "Melaka" -msgstr "Melaka" - -#: i18n/states/MY.php:17 -msgid "Negeri Sembilan" -msgstr "Negeri Sembilan" - -# @ woocommerce -#: i18n/states/MY.php:18 -msgid "Pahang" -msgstr "Pahang" - -#: i18n/states/MY.php:19 -msgid "Perak" -msgstr "Perak" - -#: i18n/states/MY.php:20 -msgid "Perlis" -msgstr "Perlis" - -#: i18n/states/MY.php:21 -msgid "Pulau Pinang" -msgstr "Pulau Pinang" - -#: i18n/states/MY.php:22 -msgid "Sabah" -msgstr "Sabah" - -#: i18n/states/MY.php:23 -msgid "Sarawak" -msgstr "Sarawak" - -#: i18n/states/MY.php:24 -msgid "Selangor" -msgstr "Selangor" - -#: i18n/states/MY.php:25 -msgid "Terengganu" -msgstr "Terengganu" - -#: i18n/states/MY.php:26 -msgid "W.P. Kuala Lumpur" -msgstr "W.P. Kuala Lumpur" - -#: i18n/states/MY.php:27 -msgid "W.P. Labuan" -msgstr "W.P. Labuan" - -#: i18n/states/MY.php:28 -msgid "W.P. Putrajaya" -msgstr "W.P. Putrajaya" - -#: i18n/states/TH.php:13 -msgid "" -"Amnat Charoen (อำนาจเจร" -"ิญ)" -msgstr "" -"Amnat Charoen (อำนาจเจร" -"ิญ)" - -#: i18n/states/TH.php:14 -msgid "Ang Thong (อ่างทอง)" -msgstr "Ang Thong (อ่างทอง)" - -#: i18n/states/TH.php:15 -msgid "" -"Ayutthaya (พระนครศรี" -"อยุธยา)" -msgstr "" -"Ayutthaya (พระนครศรี" -"อยุธยา)" - -#: i18n/states/TH.php:16 -msgid "" -"Bangkok (กรุงเทพมห" -"านคร)" -msgstr "" -"Bangkok (กรุงเทพมห" -"านคร)" - -#: i18n/states/TH.php:17 -msgid "Bueng Kan (บึงกาฬ)" -msgstr "Bueng Kan (บึงกาฬ)" - -#: i18n/states/TH.php:18 -msgid "" -"Buri Ram (บุรีรัมย์)" -msgstr "" -"Buri Ram (บุรีรัมย์)" - -#: i18n/states/TH.php:19 -msgid "" -"Chachoengsao (ฉะเชิงเทร" -"า)" -msgstr "" -"Chachoengsao (ฉะเชิงเทร" -"า)" - -#: i18n/states/TH.php:20 -msgid "Chai Nat (ชัยนาท)" -msgstr "Chai Nat (ชัยนาท)" - -#: i18n/states/TH.php:21 -msgid "Chaiyaphum (ชัยภูมิ)" -msgstr "Chaiyaphum (ชัยภูมิ)" - -#: i18n/states/TH.php:22 -msgid "Chanthaburi (จันทบุรี)" -msgstr "Chanthaburi (จันทบุรี)" - -#: i18n/states/TH.php:23 -msgid "" -"Chiang Mai (เชียงใหม่)" -msgstr "" -"Chiang Mai (เชียงใหม่)" - -#: i18n/states/TH.php:24 -msgid "Chiang Rai (เชียงราย)" -msgstr "Chiang Rai (เชียงราย)" - -#: i18n/states/TH.php:25 -msgid "Chonburi (ชลบุรี)" -msgstr "Chonburi (ชลบุรี)" - -#: i18n/states/TH.php:26 -msgid "Chumphon (ชุมพร)" -msgstr "Chumphon (ชุมพร)" - -#: i18n/states/TH.php:27 -msgid "" -"Kalasin (กาฬสินธุ์)" -msgstr "" -"Kalasin (กาฬสินธุ์)" - -#: i18n/states/TH.php:28 -msgid "" -"Kamphaeng Phet (กำแพงเพช" -"ร)" -msgstr "" -"Kamphaeng Phet (กำแพงเพช" -"ร)" - -#: i18n/states/TH.php:29 -msgid "" -"Kanchanaburi (กาญจนบุร" -"ี)" -msgstr "" -"Kanchanaburi (กาญจนบุร" -"ี)" - -#: i18n/states/TH.php:30 -msgid "Khon Kaen (ขอนแก่น)" -msgstr "Khon Kaen (ขอนแก่น)" - -#: i18n/states/TH.php:31 -msgid "Krabi (กระบี่)" -msgstr "Krabi (กระบี่)" - -#: i18n/states/TH.php:32 -msgid "Lampang (ลำปาง)" -msgstr "Lampang (ลำปาง)" - -#: i18n/states/TH.php:33 -msgid "Lamphun (ลำพูน)" -msgstr "Lamphun (ลำพูน)" - -#: i18n/states/TH.php:34 -msgid "Loei (เลย)" -msgstr "Loei (เลย)" - -#: i18n/states/TH.php:35 -msgid "Lopburi (ลพบุรี)" -msgstr "Lopburi (ลพบุรี)" - -#: i18n/states/TH.php:36 -msgid "" -"Mae Hong Son (แม่ฮ่องสอ" -"น)" -msgstr "" -"Mae Hong Son (แม่ฮ่องสอ" -"น)" - -#: i18n/states/TH.php:37 -msgid "" -"Maha Sarakham (มหาสารคา" -"ม)" -msgstr "" -"Maha Sarakham (มหาสารคา" -"ม)" - -#: i18n/states/TH.php:38 -msgid "Mukdahan (มุกดาหาร)" -msgstr "Mukdahan (มุกดาหาร)" - -#: i18n/states/TH.php:39 -msgid "Nakhon Nayok (นครนายก)" -msgstr "Nakhon Nayok (นครนายก)" - -#: i18n/states/TH.php:40 -msgid "Nakhon Pathom (นครปฐม)" -msgstr "Nakhon Pathom (นครปฐม)" - -#: i18n/states/TH.php:41 -msgid "Nakhon Phanom (นครพนม)" -msgstr "Nakhon Phanom (นครพนม)" - -#: i18n/states/TH.php:42 -msgid "" -"Nakhon Ratchasima (นครราชสี" -"มา)" -msgstr "" -"Nakhon Ratchasima (นครราชสี" -"มา)" - -#: i18n/states/TH.php:43 -msgid "" -"Nakhon Sawan (นครสวรรค" -"์)" -msgstr "" -"Nakhon Sawan (นครสวรรค" -"์)" - -#: i18n/states/TH.php:44 -msgid "" -"Nakhon Si Thammarat (นครศรีธร" -"รมราช)" -msgstr "" -"Nakhon Si Thammarat (นครศรีธร" -"รมราช)" - -#: i18n/states/TH.php:45 -msgid "Nan (น่าน)" -msgstr "Nan (น่าน)" - -#: i18n/states/TH.php:46 -msgid "Narathiwat (นราธิวาส)" -msgstr "Narathiwat (นราธิวาส)" - -#: i18n/states/TH.php:47 -msgid "" -"Nong Bua Lam Phu (หนองบัวล" -"ำภู)" -msgstr "" -"Nong Bua Lam Phu (หนองบัวล" -"ำภู)" - -#: i18n/states/TH.php:48 -msgid "Nong Khai (หนองคาย)" -msgstr "Nong Khai (หนองคาย)" - -#: i18n/states/TH.php:49 -msgid "Nonthaburi (นนทบุรี)" -msgstr "Nonthaburi (นนทบุรี)" - -#: i18n/states/TH.php:50 -msgid "Pathum Thani (ปทุมธานี)" -msgstr "" -"Pathum Thani (ปทุมธานี)" - -#: i18n/states/TH.php:51 -msgid "Pattani (ปัตตานี)" -msgstr "Pattani (ปัตตานี)" - -#: i18n/states/TH.php:52 -msgid "Phang Nga (พังงา)" -msgstr "Phang Nga (พังงา)" - -#: i18n/states/TH.php:53 -msgid "Phatthalung (พัทลุง)" -msgstr "Phatthalung (พัทลุง)" - -#: i18n/states/TH.php:54 -msgid "Phayao (พะเยา)" -msgstr "Phayao (พะเยา)" - -#: i18n/states/TH.php:55 -msgid "" -"Phetchabun (เพชรบูรณ์)" -msgstr "" -"Phetchabun (เพชรบูรณ์)" - -#: i18n/states/TH.php:56 -msgid "Phetchaburi (เพชรบุรี)" -msgstr "Phetchaburi (เพชรบุรี)" - -#: i18n/states/TH.php:57 -msgid "Phichit (พิจิตร)" -msgstr "Phichit (พิจิตร)" - -#: i18n/states/TH.php:58 -msgid "Phitsanulok (พิษณุโลก)" -msgstr "Phitsanulok (พิษณุโลก)" - -#: i18n/states/TH.php:59 -msgid "Phrae (แพร่)" -msgstr "Phrae (แพร่)" - -#: i18n/states/TH.php:60 -msgid "Phuket (ภูเก็ต)" -msgstr "Phuket (ภูเก็ต)" - -#: i18n/states/TH.php:61 -msgid "" -"Prachin Buri (ปราจีนบุร" -"ี)" -msgstr "" -"Prachin Buri (ปราจีนบุร" -"ี)" - -#: i18n/states/TH.php:62 -msgid "" -"Prachuap Khiri Khan (ประจวบคี" -"รีขันธ์)" -msgstr "" -"Prachuap Khiri Khan (ประจวบคี" -"รีขันธ์)" - -#: i18n/states/TH.php:63 -msgid "Ranong (ระนอง)" -msgstr "Ranong (ระนอง)" - -#: i18n/states/TH.php:64 -msgid "Ratchaburi (ราชบุรี)" -msgstr "Ratchaburi (ราชบุรี)" - -#: i18n/states/TH.php:65 -msgid "Rayong (ระยอง)" -msgstr "Rayong (ระยอง)" - -#: i18n/states/TH.php:66 -msgid "Roi Et (ร้อยเอ็ด)" -msgstr "Roi Et (ร้อยเอ็ด)" - -#: i18n/states/TH.php:67 -msgid "Sa Kaeo (สระแก้ว)" -msgstr "Sa Kaeo (สระแก้ว)" - -#: i18n/states/TH.php:68 -msgid "Sakon Nakhon (สกลนคร)" -msgstr "Sakon Nakhon (สกลนคร)" - -#: i18n/states/TH.php:69 -msgid "" -"Samut Prakan (สมุทรปราก" -"าร)" -msgstr "" -"Samut Prakan (สมุทรปราก" -"าร)" - -#: i18n/states/TH.php:70 -msgid "" -"Samut Sakhon (สมุทรสาค" -"ร)" -msgstr "" -"Samut Sakhon (สมุทรสาค" -"ร)" - -#: i18n/states/TH.php:71 -msgid "" -"Samut Songkhram (สมุทรสงค" -"ราม)" -msgstr "" -"Samut Songkhram (สมุทรสงค" -"ราม)" - -#: i18n/states/TH.php:72 -msgid "Saraburi (สระบุรี)" -msgstr "Saraburi (สระบุรี)" - -#: i18n/states/TH.php:73 -msgid "Satun (สตูล)" -msgstr "Satun (สตูล)" - -#: i18n/states/TH.php:74 -msgid "" -"Sing Buri (สิงห์บุรี)" -msgstr "" -"Sing Buri (สิงห์บุรี)" - -#: i18n/states/TH.php:75 -msgid "Sisaket (ศรีสะเกษ)" -msgstr "Sisaket (ศรีสะเกษ)" - -#: i18n/states/TH.php:76 -msgid "Songkhla (สงขลา)" -msgstr "Songkhla (สงขลา)" - -#: i18n/states/TH.php:77 -msgid "Sukhothai (สุโขทัย)" -msgstr "Sukhothai (สุโขทัย)" - -#: i18n/states/TH.php:78 -msgid "" -"Suphan Buri (สุพรรณบุร" -"ี)" -msgstr "" -"Suphan Buri (สุพรรณบุร" -"ี)" - -#: i18n/states/TH.php:79 -msgid "" -"Surat Thani (สุราษฎร์ธ" -"านี)" -msgstr "" -"Surat Thani (สุราษฎร์ธ" -"านี)" - -#: i18n/states/TH.php:80 -msgid "Surin (สุรินทร์)" -msgstr "Surin (สุรินทร์)" - -#: i18n/states/TH.php:81 -msgid "Tak (ตาก)" -msgstr "Tak (ตาก)" - -#: i18n/states/TH.php:82 -msgid "Trang (ตรัง)" -msgstr "Trang (ตรัง)" - -#: i18n/states/TH.php:83 -msgid "Trat (ตราด)" -msgstr "Trat (ตราด)" - -#: i18n/states/TH.php:84 -msgid "" -"Ubon Ratchathani (อุบลราชธ" -"านี)" -msgstr "" -"Ubon Ratchathani (อุบลราชธ" -"านี)" - -#: i18n/states/TH.php:85 -msgid "Udon Thani (อุดรธานี)" -msgstr "Udon Thani (อุดรธานี)" - -#: i18n/states/TH.php:86 -msgid "" -"Uthai Thani (อุทัยธานี)" -msgstr "" -"Uthai Thani (อุทัยธานี)" - -#: i18n/states/TH.php:87 -msgid "" -"Uttaradit (อุตรดิตถ์)" -msgstr "" -"Uttaradit (อุตรดิตถ์)" - -#: i18n/states/TH.php:88 -msgid "Yala (ยะลา)" -msgstr "Yala (ยะลา)" - -#: i18n/states/TH.php:89 -msgid "Yasothon (ยโสธร)" -msgstr "Yasothon (ยโสธร)" - -# @ woocommerce -#: i18n/states/US.php:13 -msgid "Alabama" -msgstr "Alabama" - -# @ woocommerce -#: i18n/states/US.php:14 -msgid "Alaska" -msgstr "Alaska" - -# @ woocommerce -#: i18n/states/US.php:15 -msgid "Arizona" -msgstr "Arizona" - -# @ woocommerce -#: i18n/states/US.php:16 -msgid "Arkansas" -msgstr "Arkansas" - -# @ woocommerce -#: i18n/states/US.php:17 -msgid "California" -msgstr "California" - -# @ woocommerce -#: i18n/states/US.php:18 -msgid "Colorado" -msgstr "Colorado" - -# @ woocommerce -#: i18n/states/US.php:19 -msgid "Connecticut" -msgstr "Connecticut" - -# @ woocommerce -#: i18n/states/US.php:20 -msgid "Delaware" -msgstr "Delaware" - -# @ woocommerce -#: i18n/states/US.php:21 -msgid "District Of Columbia" -msgstr "District Of Columbia" - -# @ woocommerce -#: i18n/states/US.php:22 -msgid "Florida" -msgstr "Florida" - -# @ woocommerce -#: i18n/states/US.php:24 -msgid "Hawaii" -msgstr "Hawaii" - -# @ woocommerce -#: i18n/states/US.php:25 -msgid "Idaho" -msgstr "Idaho" - -# @ woocommerce -#: i18n/states/US.php:26 -msgid "Illinois" -msgstr "Illinois" - -# @ woocommerce -#: i18n/states/US.php:27 -msgid "Indiana" -msgstr "Indiana" - -# @ woocommerce -#: i18n/states/US.php:28 -msgid "Iowa" -msgstr "Iowa" - -# @ woocommerce -#: i18n/states/US.php:29 -msgid "Kansas" -msgstr "Kansas" - -# @ woocommerce -#: i18n/states/US.php:30 -msgid "Kentucky" -msgstr "Kentucky" - -# @ woocommerce -#: i18n/states/US.php:31 -msgid "Louisiana" -msgstr "Louisiana" - -# @ woocommerce -#: i18n/states/US.php:32 -msgid "Maine" -msgstr "Maine" - -# @ woocommerce -#: i18n/states/US.php:33 -msgid "Maryland" -msgstr "Maryland" - -# @ woocommerce -#: i18n/states/US.php:34 -msgid "Massachusetts" -msgstr "Massachusetts" - -# @ woocommerce -#: i18n/states/US.php:35 -msgid "Michigan" -msgstr "Michigan" - -# @ woocommerce -#: i18n/states/US.php:36 -msgid "Minnesota" -msgstr "Minnesota" - -# @ woocommerce -#: i18n/states/US.php:37 -msgid "Mississippi" -msgstr "Mississippi" - -# @ woocommerce -#: i18n/states/US.php:38 -msgid "Missouri" -msgstr "Missouri" - -# @ woocommerce -#: i18n/states/US.php:39 -msgid "Montana" -msgstr "Montana" - -# @ woocommerce -#: i18n/states/US.php:40 -msgid "Nebraska" -msgstr "Nebraska" - -# @ woocommerce -#: i18n/states/US.php:41 -msgid "Nevada" -msgstr "Nevada" - -# @ woocommerce -#: i18n/states/US.php:42 -msgid "New Hampshire" -msgstr "New Hampshire" - -# @ woocommerce -#: i18n/states/US.php:43 -msgid "New Jersey" -msgstr "New Jersey" - -# @ woocommerce -#: i18n/states/US.php:44 -msgid "New Mexico" -msgstr "New Mexico" - -# @ woocommerce -#: i18n/states/US.php:45 -msgid "New York" -msgstr "New York" - -# @ woocommerce -#: i18n/states/US.php:46 -msgid "North Carolina" -msgstr "North Carolina" - -# @ woocommerce -#: i18n/states/US.php:47 -msgid "North Dakota" -msgstr "North Dakota" - -# @ woocommerce -#: i18n/states/US.php:48 -msgid "Ohio" -msgstr "Ohio" - -# @ woocommerce -#: i18n/states/US.php:49 -msgid "Oklahoma" -msgstr "Oklahoma" - -# @ woocommerce -#: i18n/states/US.php:50 -msgid "Oregon" -msgstr "Oregon" - -# @ woocommerce -#: i18n/states/US.php:51 -msgid "Pennsylvania" -msgstr "Pennsylvania" - -# @ woocommerce -#: i18n/states/US.php:52 -msgid "Rhode Island" -msgstr "Rhode Island" - -# @ woocommerce -#: i18n/states/US.php:53 -msgid "South Carolina" -msgstr "South Carolina" - -# @ woocommerce -#: i18n/states/US.php:54 -msgid "South Dakota" -msgstr "South Dakota" - -# @ woocommerce -#: i18n/states/US.php:55 -msgid "Tennessee" -msgstr "Tennessee" - -# @ woocommerce -#: i18n/states/US.php:56 -msgid "Texas" -msgstr "Texas" - -# @ woocommerce -#: i18n/states/US.php:57 -msgid "Utah" -msgstr "Utah" - -# @ woocommerce -#: i18n/states/US.php:58 -msgid "Vermont" -msgstr "Vermont" - -# @ woocommerce -#: i18n/states/US.php:59 -msgid "Virginia" -msgstr "Virginia" - -# @ woocommerce -#: i18n/states/US.php:60 -msgid "Washington" -msgstr "Washington" - -# @ woocommerce -#: i18n/states/US.php:61 -msgid "West Virginia" -msgstr "West Virginia" - -# @ woocommerce -#: i18n/states/US.php:62 -msgid "Wisconsin" -msgstr "Wisconsin" - -# @ woocommerce -#: i18n/states/US.php:63 -msgid "Wyoming" -msgstr "Wyoming" - -#: i18n/states/US.php:64 -msgid "Armed Forces (AA)" -msgstr "Forces armées américaines (AA°" - -#: i18n/states/US.php:65 -msgid "Armed Forces (AE)" -msgstr "Forces armées américaines (AE)" - -#: i18n/states/US.php:66 -msgid "Armed Forces (AP)" -msgstr "Forces armées américaines (AP)" - -# @ woocommerce -#: i18n/states/US.php:67 -msgid "American Samoa" -msgstr "American Samoa" - -# @ woocommerce -#: i18n/states/US.php:68 -msgid "Guam" -msgstr "Guam" - -# @ woocommerce -#: i18n/states/US.php:69 -msgid "Northern Mariana Islands" -msgstr "Northern Mariana Islands" - -# @ woocommerce -#: i18n/states/US.php:70 -msgid "Puerto Rico" -msgstr "Puerto Rico" - -# @ woocommerce -#: i18n/states/US.php:71 -msgid "US Minor Outlying Islands" -msgstr "US Minor Outlying Islands" - -# @ woocommerce -#: i18n/states/US.php:72 -msgid "US Virgin Islands" -msgstr "Îles Vierges des États-Unis" - -#: i18n/states/ZA.php:13 -msgid "Eastern Cape" -msgstr "Cap-Oriental" - -# @ woocommerce -#: i18n/states/ZA.php:14 -msgid "Free State" -msgstr "État gratuit" - -#: i18n/states/ZA.php:15 -msgid "Gauteng" -msgstr "Gauteng" - -#: i18n/states/ZA.php:16 -msgid "KwaZulu-Natal" -msgstr "KwaZulu-Natal" - -#: i18n/states/ZA.php:17 -msgid "Limpopo" -msgstr "Limpopo" - -#: i18n/states/ZA.php:18 -msgid "Mpumalanga" -msgstr "Mpumalanga" - -# @ woocommerce -#: i18n/states/ZA.php:19 -msgid "Northern Cape" -msgstr "Cap-du-Nord" - -# @ woocommerce -#: i18n/states/ZA.php:20 -msgid "North West" -msgstr "Nord-Ouest" - -# @ woocommerce -#: i18n/states/ZA.php:21 -msgid "Western Cape" -msgstr "Cap-Occidental" - -# @ woocommerce -#: i18n/strings.php:16 -msgid "pending" -msgstr "attente" - -# @ woocommerce -#: i18n/strings.php:17 -msgid "failed" -msgstr "échouée" - -# @ woocommerce -#: i18n/strings.php:18 -msgid "on-hold" -msgstr "en-attente" - -# @ woocommerce -#: i18n/strings.php:19 -msgid "processing" -msgstr "en cours" - -# @ woocommerce -#: i18n/strings.php:20 -msgid "completed" -msgstr "terminée" - -# @ woocommerce -#: i18n/strings.php:21 -msgid "refunded" -msgstr "remboursée" - -# @ woocommerce -#: i18n/strings.php:22 -msgid "cancelled" -msgstr "annulée" - -# @ woocommerce -#: templates/cart/cart-empty.php:14 -msgid "Your cart is currently empty." -msgstr "Votre panier est actuellement vide." - -# @ woocommerce -#: templates/cart/cart-empty.php:18 -msgid "← Return To Shop" -msgstr "← Retour à la Boutique" - -# @ woocommerce -#: templates/cart/cart.php:28 templates/checkout/form-pay.php:19 -#: templates/checkout/review-order.php:21 -#: templates/emails/admin-new-order.php:22 -#: templates/emails/customer-completed-order.php:23 -#: templates/emails/customer-invoice.php:27 -#: templates/emails/customer-note.php:27 -#: templates/emails/customer-processing-order.php:23 -#: templates/order/order-details.php:20 woocommerce.php:983 -msgid "Product" -msgstr "Produit" - -# @ woocommerce -#: templates/cart/cart.php:29 templates/emails/admin-new-order.php:24 -#: templates/emails/customer-completed-order.php:25 -#: templates/emails/customer-invoice.php:29 -#: templates/emails/customer-note.php:29 -#: templates/emails/customer-processing-order.php:25 -msgid "Price" -msgstr "Prix" - -# @ woocommerce -#: templates/cart/cart.php:30 templates/emails/admin-new-order.php:23 -#: templates/emails/customer-completed-order.php:24 -#: templates/emails/customer-invoice.php:28 -#: templates/emails/customer-note.php:28 -#: templates/emails/customer-processing-order.php:24 -msgid "Quantity" -msgstr "Quantité" - -# @ woocommerce -#: templates/cart/cart.php:31 templates/checkout/review-order.php:22 -#: templates/myaccount/my-orders.php:35 templates/order/order-details.php:21 -msgid "Total" -msgstr "Total" - -# @ woocommerce -#: templates/cart/cart.php:47 -msgid "Remove this item" -msgstr "Enlever cet élément" - -# @ woocommerce -#: templates/cart/cart.php:100 -#: templates/single-product/add-to-cart/quantity.php:12 -msgctxt "Product quantity input tooltip" -msgid "Qty" -msgstr "Qté" - -# @ woocommerce -#: templates/cart/cart.php:127 woocommerce.php:1096 -msgid "Coupon" -msgstr "Code Promo" - -# @ woocommerce -#: templates/cart/cart.php:127 templates/checkout/form-coupon.php:29 -msgid "Apply Coupon" -msgstr "Appliquer le Code Promo" - -# @ woocommerce -#: templates/cart/cart.php:134 -msgid "Update Cart" -msgstr "Mettre à jour le panier" - -# @ woocommerce -#: templates/cart/cart.php:134 -msgid "Proceed to Checkout →" -msgstr "Procéder à la commande →" - -# @ woocommerce -#: templates/cart/cross-sells.php:38 -msgid "You may be interested in…" -msgstr "Vous serez peut-être intéressé par…" - -# @ woocommerce -#: templates/cart/mini-cart.php:55 -msgid "No products in the cart." -msgstr "Votre panier est vide." - -# @ woocommerce -#: templates/cart/mini-cart.php:63 -msgid "Subtotal" -msgstr "Sous-total" - -# @ woocommerce -#: templates/cart/mini-cart.php:69 -msgid "Checkout →" -msgstr "Commander →" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:22 -msgid "Calculate Shipping" -msgstr "Calculer les frais d'expédition" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:28 woocommerce-template.php:1334 -msgid "Select a country…" -msgstr "Choix de Pays…" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:45 -#: templates/cart/shipping-calculator.php:51 -#: templates/cart/shipping-calculator.php:63 -msgid "State / county" -msgstr "État / Comté" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:52 woocommerce-template.php:1384 -msgid "Select a state…" -msgstr "Choisissez un état…" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:72 -msgid "City" -msgstr "Ville" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:85 -msgid "Update Totals" -msgstr "Mettre à jour les totaux" - -# @ woocommerce -#: templates/cart/shipping-methods.php:32 -msgid "Free" -msgstr "Gratuit" - -# @ woocommerce -#: templates/cart/shipping-methods.php:68 -msgid "Please fill in your details to see available shipping methods." -msgstr "" -"Veuillez remplir vos coordonnées pour voir les méthodes de livraison " -"disponibles." - -# @ woocommerce -#: templates/cart/shipping-methods.php:76 templates/cart/totals.php:147 -msgid "" -"Sorry, it seems that there are no available shipping methods for your " -"location (%s)." -msgstr "" -"Désolé, il semble qu'aucune méthode d'expédition ne soit disponible pour " -"votre région (%s)." - -# @ woocommerce -#: templates/cart/shipping-methods.php:76 templates/cart/totals.php:147 -msgid "" -"If you require assistance or wish to make alternate arrangements please " -"contact us." -msgstr "" -"Si vous désirez de l'assistance ou encore planifier d'autres types " -"d'arrangements, veuillez nous contacter." - -# @ woocommerce -#: templates/cart/totals.php:22 -msgid "Cart Totals" -msgstr "Total panier" - -# @ woocommerce -#: templates/cart/totals.php:28 templates/checkout/review-order.php:27 -msgid "Cart Subtotal" -msgstr "Sous-total du panier" - -# @ woocommerce -#: templates/cart/totals.php:35 templates/checkout/review-order.php:34 -#: woocommerce.php:1690 -msgid "Cart Discount" -msgstr "Remise panier" - -# @ woocommerce -#: templates/cart/totals.php:35 templates/cart/totals.php:83 -msgid "[Remove]" -msgstr "[Enlever]" - -# @ woocommerce -#: templates/cart/totals.php:46 templates/checkout/review-order.php:45 -msgid "Shipping" -msgstr "Livraison" - -# @ woocommerce -#: templates/cart/totals.php:83 templates/checkout/review-order.php:82 -msgid "Order Discount" -msgstr "Commande remisée" - -# @ woocommerce -#: templates/cart/totals.php:92 templates/checkout/review-order.php:91 -msgid "Order Total" -msgstr "Montant" - -# @ woocommerce -#: templates/cart/totals.php:121 -msgid " (taxes estimated for %s)" -msgstr "(taxes estimées à %s)" - -# @ woocommerce -#: templates/cart/totals.php:123 -msgid "" -"Note: Shipping and taxes are estimated%s and will be updated during checkout " -"based on your billing and shipping information." -msgstr "" -"Note : La livraison et les taxes sont estimés%s et seront mis à jour au " -"cours de la commande selon vos informations de livraison et de facturation." - -# @ woocommerce -#: templates/cart/totals.php:135 -msgid "" -"No shipping methods were found; please recalculate your shipping and enter " -"your state/county and zip/postcode to ensure there are no other available " -"methods for your location." -msgstr "" -"Aucune méthode d'expédition n'a été trouvée; Veuillez recalculer votre " -"livraison et saisir votre état/pays et code postal pour s'assurer qu'il n'y " -"a pas d'autre méthode d'expédition pour votre région." - -#: templates/checkout/cart-errors.php:16 -msgid "" -"There are some issues with the items in your cart (shown above). Please go " -"back to the cart page and resolve these issues before checking out." -msgstr "" -"Il y a quelques problèmes avec les articles dans votre panier (voir ci-" -"dessous). Veuillez retourner sur la page du panier et résolvez ces problèmes " -"avant de commander." - -# @ woocommerce -#: templates/checkout/cart-errors.php:20 -msgid "← Return To Cart" -msgstr "← Retour au Panier" - -# @ woocommerce -#: templates/checkout/form-billing.php:17 -msgid "Billing & Shipping" -msgstr "Facturation & Expédition" - -# @ woocommerce -#: templates/checkout/form-billing.php:21 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:19 templates/myaccount/my-address.php:25 -#: templates/order/order-details.php:115 -msgid "Billing Address" -msgstr "Adresse de Facturation" - -# @ woocommerce -#: templates/checkout/form-billing.php:42 -msgid "Create an account?" -msgstr "Créer un Compte ?" - -# @ woocommerce -#: templates/checkout/form-billing.php:51 -msgid "" -"Create an account by entering the information below. If you are a returning " -"customer please login at the top of the page." -msgstr "" -"Créez un compte en entrant les informations ci-dessous. Si vous en possédez " -"déjà un, connectez-vous en haut de la page." - -# @ woocommerce -#: templates/checkout/form-checkout.php:20 -msgid "You must be logged in to checkout." -msgstr "Vous devez être identifié pour commander." - -# @ woocommerce -#: templates/checkout/form-checkout.php:51 -msgid "Your order" -msgstr "Votre commande" - -# @ woocommerce -#: templates/checkout/form-coupon.php:17 -msgid "Have a coupon?" -msgstr "Avez-vous un code promo ?" - -# @ woocommerce -#: templates/checkout/form-coupon.php:20 -msgid "Click here to enter your code" -msgstr "Cliquez ici pour entrer votre code" - -# @ woocommerce -#: templates/checkout/form-coupon.php:25 -msgid "Coupon code" -msgstr "Code Promo" - -# @ woocommerce -#: templates/checkout/form-login.php:14 -msgid "Returning customer?" -msgstr "Déjà client ?" - -# @ woocommerce -#: templates/checkout/form-login.php:17 -msgid "Click here to login" -msgstr "Cliquez ici pour vous connecter" - -# @ woocommerce -#: templates/checkout/form-login.php:22 -msgid "" -"If you have shopped with us before, please enter your details in the boxes " -"below. If you are a new customer please proceed to the Billing & " -"Shipping section." -msgstr "" -"Si vous avez déjà acheté chez nous, veuillez entrer vos informations dans " -"les champs ci-dessous. Si vous êtes un nouveau client, veuillez vous rendre " -"à la section Facturation & Livraison." - -# @ woocommerce -#: templates/checkout/form-pay.php:20 -msgid "Qty" -msgstr "Qté" - -# @ woocommerce -#: templates/checkout/form-pay.php:21 -msgid "Totals" -msgstr "Totaux" - -# @ woocommerce -#: templates/checkout/form-pay.php:78 -msgid "" -"Sorry, it seems that there are no available payment methods for your " -"location. Please contact us if you require assistance or wish to make " -"alternate arrangements." -msgstr "" -"Désolé, il semble qu'il n'y ai pas de méthodes de paiement disponibles pour " -"votre localisation. Contactez nous, svp si vous avez besoin d'assistance ou " -"si vous désirez effectuer un autre arrangement." - -# @ woocommerce -#: templates/checkout/form-pay.php:87 -msgid "Pay for order" -msgstr "Payer la commande" - -# @ woocommerce -#: templates/checkout/form-shipping.php:32 -msgid "Ship to billing address?" -msgstr "Livrer à l'adresse de facturation" - -# @ woocommerce -#: templates/checkout/form-shipping.php:35 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:20 templates/order/order-details.php:130 -msgid "Shipping Address" -msgstr "Adresse de Livraison" - -# @ woocommerce -#: templates/checkout/form-shipping.php:59 -#: templates/single-product/tabs/additional-information.php:14 -#: woocommerce-template.php:759 -msgid "Additional Information" -msgstr "Information Complémentaire" - -# @ woocommerce -#: templates/checkout/review-order.php:174 -msgid "Please fill in your details above to see available payment methods." -msgstr "" -"Veuillez entrer une adresse de livraison ci-haut pour voir les modes de " -"paiement disponibles." - -# @ woocommerce -#: templates/checkout/review-order.php:176 -msgid "" -"Sorry, it seems that there are no available payment methods for your state. " -"Please contact us if you require assistance or wish to make alternate " -"arrangements." -msgstr "" -"Désolé, il semble qu'il n'y ai pas de méthode de règlement disponible pour " -"votre état. Veuillez nous contacter si vous avez besoin d'aide ou si vous " -"désirez effectuer un autre arrangement." - -# @ woocommerce -#: templates/checkout/review-order.php:185 -msgid "" -"Since your browser does not support JavaScript, or it is disabled, please " -"ensure you click the Update Totals button before placing your " -"order. You may be charged more than the amount stated above if you fail to " -"do so." -msgstr "" -"Votre navigateur ne supporte pas JavaScript ou bien il est désactivé, " -"assurez vous de cliquer sur le bouton Mise à Jour Totaux avant de " -"passer votre commande. Vous pouvez être facturé plus que le montant indiqué " -"ci-dessus si vous omettez de le faire." - -# @ woocommerce -#: templates/checkout/review-order.php:185 -msgid "Update totals" -msgstr "Mise à jour des totaux" - -# @ woocommerce -#: templates/checkout/review-order.php:192 -msgid "Place order" -msgstr "Commander" - -# @ woocommerce -#: templates/checkout/review-order.php:199 -msgid "I have read and accept the" -msgstr "J'ai lu et j'accepte les " - -# @ woocommerce -#: templates/checkout/review-order.php:199 -msgid "terms & conditions" -msgstr "termes & conditions" - -# @ woocommerce -#: templates/checkout/thankyou.php:18 -msgid "" -"Unfortunately your order cannot be processed as the originating bank/" -"merchant has declined your transaction." -msgstr "" -"Malheureusement votre commande ne peut être effectuée car la banque a " -"décliné votre transaction." - -# @ woocommerce -#: templates/checkout/thankyou.php:22 -msgid "Please attempt your purchase again or go to your account page." -msgstr "" -"S'il vous plaît essayez à nouveau votre achat ou allez sur la page de votre " -"compte." - -# @ woocommerce -#: templates/checkout/thankyou.php:24 -msgid "Please attempt your purchase again." -msgstr "S'il vous plaît essayez à nouveau votre achat." - -# @ woocommerce -#: templates/checkout/thankyou.php:36 templates/checkout/thankyou.php:67 -msgid "Thank you. Your order has been received." -msgstr "Merci. Votre commande a été reçue." - -# @ woocommerce -#: templates/emails/admin-new-order.php:13 -#: templates/emails/plain/admin-new-order.php:13 -msgid "You have received an order from %s. Their order is as follows:" -msgstr "Vous avez reçu une commande de %s. En voici le détail :" - -# @ woocommerce -#: templates/emails/admin-new-order.php:17 -msgid "Order: %s" -msgstr "Commande : %s" - -# @ woocommerce -#: templates/emails/admin-new-order.php:50 -#: templates/emails/customer-completed-order.php:51 -#: templates/emails/customer-note.php:55 -#: templates/emails/customer-processing-order.php:51 -#: templates/emails/plain/admin-new-order.php:38 -#: templates/order/order-details.php:97 -msgid "Customer details" -msgstr "Détails du client" - -# @ woocommerce -#: templates/emails/admin-new-order.php:53 -#: templates/emails/customer-completed-order.php:54 -#: templates/emails/customer-note.php:58 -#: templates/emails/customer-processing-order.php:54 -#: templates/emails/plain/admin-new-order.php:41 -#: templates/emails/plain/customer-completed-order.php:41 -#: templates/emails/plain/customer-note.php:49 -#: templates/emails/plain/customer-processing-order.php:41 -#: templates/order/order-details.php:101 -msgid "Email:" -msgstr "Email :" - -# @ woocommerce -#: templates/emails/admin-new-order.php:56 -#: templates/emails/customer-completed-order.php:57 -#: templates/emails/customer-note.php:61 -#: templates/emails/customer-processing-order.php:57 -#: templates/emails/plain/admin-new-order.php:44 -#: templates/emails/plain/customer-completed-order.php:44 -#: templates/emails/plain/customer-note.php:52 -#: templates/emails/plain/customer-processing-order.php:44 -msgid "Tel:" -msgstr "Tél. " - -# @ woocommerce -#: templates/emails/customer-completed-order.php:14 -#: templates/emails/plain/customer-completed-order.php:13 -msgid "" -"Hi there. Your recent order on %s has been completed. Your order details are " -"shown below for your reference:" -msgstr "" -"Bonjour. Votre récente commande sur %s a été complétée. Les détails de votre " -"commande sont affichés ci-dessous :" - -# @ woocommerce -#: templates/emails/customer-invoice.php:16 -#: templates/emails/plain/customer-invoice.php:14 -msgid "" -"An order has been created for you on %s. To pay for this order please use " -"the following link: %s" -msgstr "" -"Une commande a été crée pour vous sur %s. Pour régler cette commande, " -"veuillez utiliser le lien suivant : %s" - -# @ woocommerce -#: templates/emails/customer-invoice.php:16 -msgid "pay" -msgstr "payer" - -#: templates/emails/customer-new-account.php:14 -#: templates/emails/plain/customer-new-account.php:13 -msgid "" -"Thanks for creating an account on %s. Your username is %s." -msgstr "" -"Merci pour la création d'un compte sur %s. Votre identifiant est %s." - -#: templates/emails/customer-new-account.php:16 -#: templates/emails/plain/customer-new-account.php:15 -msgid "You can access your account area here: %s." -msgstr "Vous pouvez accéder à votre compte ici : %s." - -#: templates/emails/customer-note.php:14 -#: templates/emails/plain/customer-note.php:13 -msgid "Hello, a note has just been added to your order:" -msgstr "Bonjour, une note vient juste d'être ajoutée à votre commande :" - -# @ woocommerce -#: templates/emails/customer-note.php:18 -#: templates/emails/plain/customer-note.php:21 -msgid "For your reference, your order details are shown below." -msgstr "" -"Pour votre information, les détails de votre commande sont affichés ci-" -"dessous." - -#: templates/emails/customer-processing-order.php:14 -#: templates/emails/plain/customer-processing-order.php:13 -msgid "" -"Your order has been received and is now being processed. Your order details " -"are shown below for your reference:" -msgstr "" -"Votre commande a été reçue et est maintenant en cours de traitement. Les " -"détails de votre commande sont affichés ci-dessous : " - -#: templates/emails/customer-reset-password.php:14 -#: templates/emails/plain/customer-reset-password.php:13 -msgid "Someone requested that the password be reset for the following account:" -msgstr "" -"Quelqu'un a demandé que le mot de passe du compte suivant soit " -"réinitialisé : " - -# @ woocommerce -#: templates/emails/customer-reset-password.php:15 -#: templates/emails/plain/customer-reset-password.php:15 -msgid "Username: %s" -msgstr "Nom d'utilisateur : %s" - -#: templates/emails/customer-reset-password.php:16 -#: templates/emails/plain/customer-reset-password.php:16 -msgid "If this was a mistake, just ignore this email and nothing will happen." -msgstr "" -"S'il s'agit d'une erreur, ignorez simplement cet email et rien ne se " -"produira." - -#: templates/emails/customer-reset-password.php:17 -#: templates/emails/plain/customer-reset-password.php:17 -msgid "To reset your password, visit the following address:" -msgstr "Pour réinitialiser votre mot de passe, visitez l'adresse suivante :" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:20 -msgid "Click here to reset your password" -msgstr "Cliquez ici pour réinitialiser votre mot de passe" - -# @ woocommerce -#: templates/emails/email-addresses.php:18 -#: templates/emails/plain/email-addresses.php:12 -msgid "Billing address" -msgstr "Adresse de facturation" - -# @ woocommerce -#: templates/emails/email-addresses.php:28 -#: templates/emails/plain/email-addresses.php:17 -msgid "Shipping address" -msgstr "Adresse de livraison" - -# @ woocommerce -#: templates/emails/email-order-items.php:47 -msgid "Download %d:" -msgstr "Téléchargement %d :" - -# @ woocommerce -#: templates/emails/email-order-items.php:49 -msgid "Download:" -msgstr "Téléchargement :" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:19 -#: templates/emails/plain/customer-completed-order.php:19 -#: templates/emails/plain/customer-invoice.php:20 -#: templates/emails/plain/customer-note.php:27 -#: templates/emails/plain/customer-processing-order.php:19 -msgid "Order number: %s" -msgstr "Numéro de commande : %s" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:20 -#: templates/emails/plain/customer-completed-order.php:20 -#: templates/emails/plain/customer-invoice.php:21 -#: templates/emails/plain/customer-note.php:28 -#: templates/emails/plain/customer-processing-order.php:20 -msgid "Order date: %s" -msgstr "Date de commande : %s" - -#: templates/emails/plain/admin-new-order.php:20 -msgid "jS F Y" -msgstr "j M Y" - -# @ woocommerce -#: templates/emails/plain/customer-completed-order.php:38 -#: templates/emails/plain/customer-note.php:46 -#: templates/emails/plain/customer-processing-order.php:38 -msgid "Your details" -msgstr "Vos détails" - -# @ woocommerce -#: templates/emails/plain/email-order-items.php:28 -msgid "Quantity: %s" -msgstr "Quantité : %s" - -# @ woocommerce -#: templates/emails/plain/email-order-items.php:31 -msgid "Cost: %s" -msgstr "Coût : %s" - -# @ woocommerce -#: templates/loop/add-to-cart.php:17 templates/loop/add-to-cart.php:41 -#: templates/loop/add-to-cart.php:50 -msgid "Read More" -msgstr "Lire Plus" - -# @ woocommerce -#: templates/loop/add-to-cart.php:33 -msgid "Select options" -msgstr "Choix des options" - -# @ woocommerce -#: templates/loop/add-to-cart.php:37 -msgid "View options" -msgstr "Voir les options" - -# @ woocommerce -#: templates/loop/no-products-found.php:14 templates/loop-shop.php:40 -msgid "No products found which match your selection." -msgstr "Aucun produit trouvé correspondant à votre sélection." - -# @ woocommerce -#: templates/loop/orderby.php:21 -msgid "Default sorting" -msgstr "Tri par défaut" - -# @ woocommerce -#: templates/loop/orderby.php:22 -msgid "Sort by popularity" -msgstr "Tri par popularité" - -#: templates/loop/orderby.php:23 -msgid "Sort by average rating" -msgstr "Trié par notes moyennes" - -# @ woocommerce -#: templates/loop/orderby.php:24 -msgid "Sort by newness" -msgstr "Tri par nouveauté" - -# @ woocommerce -#: templates/loop/orderby.php:25 -msgid "Sort by price: low to high" -msgstr "Tri par tarif croissant" - -# @ woocommerce -#: templates/loop/orderby.php:26 -msgid "Sort by price: high to low" -msgstr "Tri par tarif décroissant" - -#: templates/loop/result-count.php:28 -msgid "Showing the single result" -msgstr "Voici le seul résultat" - -# @ woocommerce -#: templates/loop/result-count.php:30 -msgid "Showing all %d results" -msgstr "Afficher tous les %d résultats" - -#: templates/loop/result-count.php:32 -msgctxt "%1$d = first, %2$d = last, %3$d = total" -msgid "Showing %1$d–%2$d of %3$d results" -msgstr "Voici les résultats %1$d–%2$d sur %3$d" - -# @ woocommerce -#: templates/loop/sale-flash.php:16 templates/single-product/sale-flash.php:16 -msgid "Sale!" -msgstr "Promo !" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:20 -#: templates/myaccount/form-lost-password.php:31 -msgid "New password" -msgstr "Nouveau mot de passe" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:24 -#: templates/myaccount/form-lost-password.php:35 -msgid "Re-enter new password" -msgstr "Réentrez le nouveau mot de passe" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:29 -#: templates/myaccount/form-lost-password.php:45 -msgid "Save" -msgstr "Sauvegarder" - -# @ woocommerce -#: templates/myaccount/form-edit-address.php:43 -msgid "Save Address" -msgstr "Sauvegarder l'Adresse" - -# @ woocommerce -#: templates/myaccount/form-login.php:26 templates/myaccount/form-login.php:40 -#: templates/shop/form-login.php:31 -msgid "Login" -msgstr "Connexion" - -# @ woocommerce -#: templates/myaccount/form-login.php:29 -#: templates/myaccount/form-lost-password.php:24 -#: templates/shop/form-login.php:20 -msgid "Username or email" -msgstr "Identifiant ou email" - -# @ woocommerce -#: templates/myaccount/form-login.php:33 templates/myaccount/form-login.php:85 -#: templates/shop/form-login.php:24 -msgid "Password" -msgstr "Mot de Passe" - -# @ woocommerce -#: templates/myaccount/form-login.php:50 templates/shop/form-login.php:33 -msgid "Lost Password?" -msgstr "Mot de Passe perdu ?" - -#: templates/myaccount/form-login.php:60 -#: templates/myaccount/form-login.php:101 -msgid "Register" -msgstr "S'enregistrer" - -# @ woocommerce -#: templates/myaccount/form-login.php:66 -msgid "Username" -msgstr "Nom d'utilisateur" - -# @ woocommerce -#: templates/myaccount/form-login.php:78 -#: templates/single-product-reviews.php:86 -msgid "Email" -msgstr "Email" - -# @ woocommerce -#: templates/myaccount/form-login.php:89 -msgid "Re-enter password" -msgstr "Entrez à nouveau le mot de passe" - -#: templates/myaccount/form-lost-password.php:22 -msgid "" -"Lost your password? Please enter your username or email address. You will " -"receive a link to create a new password via email." -msgstr "" -"Mot de passe perdu ? Veuillez saisir votre identifiant ou votre adresse " -"email. Vous recevrez un lien par email pour créer un nouveau mot de passe." - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:28 -msgid "Enter a new password below." -msgstr "Entrez un nouveau mot de passe ci-dessous." - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:45 -msgid "Reset Password" -msgstr "Réinitialisation mot de passe" - -# @ woocommerce -#: templates/myaccount/my-account.php:19 -msgid "" -"Hello, %s. From your account dashboard you can view your " -"recent orders, manage your shipping and billing addresses and change your password." -msgstr "" -"Bonjour, %s. Vous pouvez voir vos commandes récentes, gérer " -"vos adresses de livraison et de facturation et changer votre " -"mot de passe à partir du tableau de bord de votre compte" - -# @ woocommerce -#: templates/myaccount/my-address.php:17 -msgid "My Addresses" -msgstr "Mes Adresses" - -# @ woocommerce -#: templates/myaccount/my-address.php:23 -msgid "My Address" -msgstr "Mon Adresse" - -# @ woocommerce -#: templates/myaccount/my-address.php:35 -msgid "The following addresses will be used on the checkout page by default." -msgstr "" -"Les adresses suivantes seront utilisées par défaut sur la page de commande." - -# @ woocommerce -#: templates/myaccount/my-address.php:45 woocommerce.php:951 -#: woocommerce.php:987 woocommerce.php:1024 woocommerce.php:1062 -#: woocommerce.php:1100 -msgid "Edit" -msgstr "Modifier" - -# @ woocommerce -#: templates/myaccount/my-address.php:64 -msgid "You have not set up this type of address yet." -msgstr "Vous n'avez pas encore défini ce type d'adresse." - -# @ woocommerce -#: templates/myaccount/my-downloads.php:18 -msgid "Available downloads" -msgstr "Téléchargements disponibles" - -# @ woocommerce -#: templates/myaccount/my-downloads.php:27 -msgid "%s download remaining" -msgid_plural "%s downloads remaining" -msgstr[0] "%s téléchargement restant" -msgstr[1] "%s téléchargements restants" - -# @ woocommerce -#: templates/myaccount/my-orders.php:26 -msgid "Recent Orders" -msgstr "Commandes récentes" - -# @ woocommerce -#: templates/myaccount/my-orders.php:32 woocommerce.php:1059 -msgid "Order" -msgstr "Commande" - -# @ woocommerce -#: templates/myaccount/my-orders.php:33 -msgid "Date" -msgstr "Date" - -# @ woocommerce -#: templates/myaccount/my-orders.php:34 -msgid "Status" -msgstr "État" - -# @ woocommerce -#: templates/myaccount/my-orders.php:62 -msgid "%s for %s item" -msgid_plural "%s for %s items" -msgstr[0] "%s pour %s article" -msgstr[1] "%s pour %s articles" - -# @ woocommerce -#: templates/myaccount/my-orders.php:77 -msgid "Cancel" -msgstr "Annuler" - -# @ woocommerce -#: templates/myaccount/my-orders.php:82 -msgid "View" -msgstr "Voir" - -# @ woocommerce -#: templates/order/form-tracking.php:17 -msgid "" -"To track your order please enter your Order ID in the box below and press " -"return. This was given to you on your receipt and in the confirmation email " -"you should have received." -msgstr "" -"Pour suivre votre commande saisissez votre n° et votre email de commande " -"dans les champs ci-dessous et cliquez sur le bouton \"Suivi\". Le n° de " -"commande vous a été indiqué dans votre reçu et dans l'email de confirmation " -"qui vous a été envoyé." - -# @ woocommerce -#: templates/order/form-tracking.php:19 -msgid "Order ID" -msgstr "N° de commande" - -# @ woocommerce -#: templates/order/form-tracking.php:19 -msgid "Found in your order confirmation email." -msgstr "Présent dans l'email de confirmation" - -# @ woocommerce -#: templates/order/form-tracking.php:20 -msgid "Billing Email" -msgstr "Email de facturation" - -# @ woocommerce -#: templates/order/form-tracking.php:20 -msgid "Email you used during checkout." -msgstr "Email utilisé pour la commande" - -# @ woocommerce -#: templates/order/form-tracking.php:23 -msgid "Track" -msgstr "Suivi" - -# @ woocommerce -#: templates/order/order-details.php:16 -msgid "Order Details" -msgstr "Détails de la Commande" - -# @ woocommerce -#: templates/order/order-details.php:64 -msgid "Download file%s" -msgstr "Télécharger le fichier%s" - -# @ woocommerce -#: templates/order/order-details.php:90 -msgid "Order Again" -msgstr "Commander une nouvelle fois" - -# @ woocommerce -#: templates/order/order-details.php:102 -msgid "Telephone:" -msgstr "Téléphone :" - -# "il y a" est ajouté dans cette chaine car en anglais le "ago" est placé après la durée. -#: templates/order/tracking.php:18 -msgid "Order %s which was made %s has the status “%s”" -msgstr "" -"Commande n°%s qui a été effectuée il y a %s avec l'état “%s”" - -# "il y a" déplacé dans la chaine parente car "ago" est placé après la durée en anglais. -#: templates/order/tracking.php:18 -msgid "ago" -msgstr " " - -# @ woocommerce -#: templates/order/tracking.php:20 -msgid "and was completed" -msgstr "et a été traitée il y a " - -# "il y a" déplacé dans la chaine parente car "ago" est placé après la durée en anglais. -#: templates/order/tracking.php:20 -msgid " ago" -msgstr " " - -# @ woocommerce -#: templates/shop/breadcrumb.php:63 -msgid "Products tagged “" -msgstr "Produits avec le mot-clé “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:91 templates/shop/breadcrumb.php:188 -msgid "Search results for “" -msgstr "Résultats de recherche pour “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:146 -msgid "Error 404" -msgstr "Erreur 404" - -# @ woocommerce -#: templates/shop/breadcrumb.php:192 -msgid "Posts tagged “" -msgstr "Articles avec le mot-clé “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:197 -msgid "Author:" -msgstr "Auteur :" - -# @ woocommerce -#: templates/shop/breadcrumb.php:202 -msgid "Page" -msgstr "Page" - -# @ woocommerce -#: templates/single-product/add-to-cart/variable.php:24 -msgid "Choose an option" -msgstr "Choisir une option" - -# @ woocommerce -#: templates/single-product/add-to-cart/variable.php:69 -msgid "Clear selection" -msgstr "Réinitialisation de la sélection" - -# @ woocommerce -#: templates/single-product/meta.php:24 -msgid "Category:" -msgid_plural "Categories:" -msgstr[0] "Catégorie :" -msgstr[1] "Catégories :" - -#: templates/single-product/meta.php:29 -msgid "Tag:" -msgid_plural "Tags:" -msgstr[0] "Mot clé :" -msgstr[1] "Mots clés :" - -# @ woocommerce -#: templates/single-product/product-attributes.php:28 -msgid "Weight" -msgstr "Poids" - -# @ woocommerce -#: templates/single-product/product-attributes.php:37 -msgid "Dimensions" -msgstr "Dimensions" - -# @ woocommerce -#: templates/single-product/related.php:36 -msgid "Related Products" -msgstr "Produits en Relation" - -# @ woocommerce -#: templates/single-product/review.php:26 -msgid "Rated %d out of 5" -msgstr "Noté %d sur 5" - -# @ woocommerce -#: templates/single-product/review.php:33 -msgid "Your comment is awaiting approval" -msgstr "Votre commentaire est en attente de validation" - -#: templates/single-product/review.php:40 -msgid "verified owner" -msgstr "propriétaire vérifié" - -# @ woocommerce -#: templates/single-product/tabs/description.php:14 -msgid "Product Description" -msgstr "Description du Produit" - -# @ woocommerce -#: templates/single-product/up-sells.php:39 -msgid "You may also like…" -msgstr "Vous aimerez peut-être aussi…" - -# @ woocommerce -#: templates/single-product-reviews.php:30 -msgid "%s review for %s" -msgid_plural "%s reviews for %s" -msgstr[0] "%s avis pour %s" -msgstr[1] "%s avis pour %s" - -# @ woocommerce -#: templates/single-product-reviews.php:36 -#: templates/single-product-reviews.php:42 -msgid "Reviews" -msgstr "Avis" - -# @ woocommerce -#: templates/single-product-reviews.php:58 -msgid " Previous" -msgstr " Précédent" - -# @ woocommerce -#: templates/single-product-reviews.php:59 -msgid "Next " -msgstr "Suivant " - -# @ woocommerce -#: templates/single-product-reviews.php:63 -msgid "Add Your Review" -msgstr "Ajouter Votre Avis" - -# @ woocommerce -#: templates/single-product-reviews.php:63 -msgid "Add Review" -msgstr "Ajouter un avis" - -# @ woocommerce -#: templates/single-product-reviews.php:65 -msgid "Add a review" -msgstr "Ajouter un Avis" - -# @ woocommerce -#: templates/single-product-reviews.php:69 -msgid "Be the first to review" -msgstr "Soyez le premier à donner votre avis" - -# @ woocommerce -#: templates/single-product-reviews.php:71 -msgid "" -"There are no reviews yet, would you like to submit yours?" -msgstr "" -"Il n'y a pas encore d'avis, voulez-vous donner le vôtre ?" - -# @ woocommerce -#: templates/single-product-reviews.php:89 -msgid "Submit Review" -msgstr "Envoyer l'avis" - -# @ woocommerce -#: templates/single-product-reviews.php:96 -msgid "Rating" -msgstr "Noter" - -# @ woocommerce -#: templates/single-product-reviews.php:97 -msgid "Rate…" -msgstr "Taux…" - -# @ woocommerce -#: templates/single-product-reviews.php:98 -msgid "Perfect" -msgstr "Parfait" - -# @ woocommerce -#: templates/single-product-reviews.php:99 -msgid "Good" -msgstr "Bon" - -# @ woocommerce -#: templates/single-product-reviews.php:100 -msgid "Average" -msgstr "Moyen" - -# @ woocommerce -#: templates/single-product-reviews.php:101 -msgid "Not that bad" -msgstr "Pas mal" - -# @ woocommerce -#: templates/single-product-reviews.php:102 -msgid "Very Poor" -msgstr "Très mauvais" - -# @ woocommerce -#: templates/single-product-reviews.php:107 -msgid "Your Review" -msgstr "Votre Avis" - -# @ woocommerce -#: woocommerce-ajax.php:119 -msgid "Sorry, your session has expired." -msgstr "Désolé, votre session a expiré" - -# @ woocommerce -#: woocommerce-ajax.php:119 -msgid "Return to homepage →" -msgstr "Retour à l'accueil →" - -# @ woocommerce -#: woocommerce-ajax.php:256 woocommerce-ajax.php:290 woocommerce-ajax.php:313 -msgid "You do not have sufficient permissions to access this page." -msgstr "Vous n'avez pas les droits suffisants pour accéder à cette page." - -# @ woocommerce -#: woocommerce-ajax.php:258 woocommerce-ajax.php:291 woocommerce-ajax.php:314 -msgid "You have taken too long. Please go back and retry." -msgstr "" -"Vous avez mis trop de temps. Revenez en arrière et essayez encore, svp." - -#: woocommerce-ajax.php:550 -msgid "Same as parent" -msgstr "Identique au parent" - -# @ woocommerce -#: woocommerce-ajax.php:551 -msgid "Standard" -msgstr "Standard" - -#: woocommerce-ajax.php:1098 -msgid "" -"No products had their stock reduced - they may not have stock management " -"enabled." -msgstr "" -"Aucun produit n'a eu son stock réduit - la gestion de leur stock peut ne pas " -"être active." - -# @ woocommerce -#: woocommerce-ajax.php:1142 woocommerce-ajax.php:1143 -msgid "Item #%s stock increased from %s to %s." -msgstr "Stock de l'élément n°%s augmenté de %s à %s" - -#: woocommerce-ajax.php:1150 -msgid "" -"No products had their stock increased - they may not have stock management " -"enabled." -msgstr "" -"Aucun produit n'a eu son stock augmenté - la gestion de leur stock peut ne " -"pas être active." - -# @ woocommerce -#: woocommerce-ajax.php:1171 -msgid "Value" -msgstr "Valeurs" - -# @ woocommerce -#: woocommerce-ajax.php:1485 -msgid "Delete note" -msgstr "Supprimer la note" - -# @ woocommerce -#: woocommerce-core-functions.php:275 -msgid "%s – %s%s" -msgstr "%s – %s%s" - -# @ woocommerce -#: woocommerce-core-functions.php:698 -msgid "Australian Dollars" -msgstr "Dollars Australiens" - -# @ woocommerce -#: woocommerce-core-functions.php:699 -msgid "Brazilian Real" -msgstr "Real Brésilien" - -# @ woocommerce -#: woocommerce-core-functions.php:700 -msgid "Canadian Dollars" -msgstr "Dollars Canadiens" - -# @ woocommerce -#: woocommerce-core-functions.php:701 -msgid "Chinese Yuan" -msgstr "Yuan Chinois" - -# @ woocommerce -#: woocommerce-core-functions.php:702 -msgid "Czech Koruna" -msgstr "Couronne Tchèque" - -# @ woocommerce -#: woocommerce-core-functions.php:703 -msgid "Danish Krone" -msgstr "Couronne danoise" - -# @ woocommerce -#: woocommerce-core-functions.php:704 -msgid "Euros" -msgstr "Euros" - -# @ woocommerce -#: woocommerce-core-functions.php:705 -msgid "Hong Kong Dollar" -msgstr "Dollar Hong Kong" - -# @ woocommerce -#: woocommerce-core-functions.php:706 -msgid "Hungarian Forint" -msgstr "Forint hongrois" - -# @ woocommerce -#: woocommerce-core-functions.php:707 -msgid "Indonesia Rupiah" -msgstr "Roupie Indonésienne" - -# @ woocommerce -#: woocommerce-core-functions.php:708 -msgid "Indian Rupee" -msgstr "Roupie Indienne" - -# @ woocommerce -#: woocommerce-core-functions.php:709 -msgid "Israeli Shekel" -msgstr "Shekel israélien" - -# @ woocommerce -#: woocommerce-core-functions.php:710 -msgid "Japanese Yen" -msgstr "Yen Japonais" - -# @ woocommerce -#: woocommerce-core-functions.php:711 -msgid "South Korean Won" -msgstr "Won sud-coréen" - -# @ woocommerce -#: woocommerce-core-functions.php:712 -msgid "Malaysian Ringgits" -msgstr "Ringgits Malaisie" - -# @ woocommerce -#: woocommerce-core-functions.php:713 -msgid "Mexican Peso" -msgstr "Peso Mexicain" - -# @ woocommerce -#: woocommerce-core-functions.php:714 -msgid "Norwegian Krone" -msgstr "Couronne Norvégienne" - -# @ woocommerce -#: woocommerce-core-functions.php:715 -msgid "New Zealand Dollar" -msgstr "Dollar Nouvelle Zélande" - -# @ woocommerce -#: woocommerce-core-functions.php:716 -msgid "Philippine Pesos" -msgstr "Peso Philippin" - -# @ woocommerce -#: woocommerce-core-functions.php:717 -msgid "Polish Zloty" -msgstr "Zloty polonais" - -# @ woocommerce -#: woocommerce-core-functions.php:718 -msgid "Pounds Sterling" -msgstr "Livres Sterling" - -#: woocommerce-core-functions.php:719 -msgid "Romanian Leu" -msgstr "Leu Roumain" - -# @ woocommerce -#: woocommerce-core-functions.php:720 -msgid "Singapore Dollar" -msgstr "Dollar Singapour" - -# @ woocommerce -#: woocommerce-core-functions.php:721 -msgid "South African rand" -msgstr "Rand Afrique du Sud" - -# @ woocommerce -#: woocommerce-core-functions.php:722 -msgid "Swedish Krona" -msgstr "Couronne Suédoise" - -# @ woocommerce -#: woocommerce-core-functions.php:723 -msgid "Swiss Franc" -msgstr "Franc Suisse" - -# @ woocommerce -#: woocommerce-core-functions.php:724 -msgid "Taiwan New Dollars" -msgstr "Nouveaux Dollars de Taiwan" - -# @ woocommerce -#: woocommerce-core-functions.php:725 -msgid "Thai Baht" -msgstr "Baht Thai" - -# @ woocommerce -#: woocommerce-core-functions.php:726 -msgid "Turkish Lira" -msgstr "Lira Turc" - -# @ woocommerce -#: woocommerce-core-functions.php:727 -msgid "US Dollars" -msgstr "Dollars US" - -#: woocommerce-core-functions.php:1215 woocommerce-core-functions.php:1241 -msgid "Download Permissions Granted" -msgstr "Permissions de téléchargement accordées" - -# @ woocommerce -#: woocommerce-core-functions.php:1365 -msgctxt "slug" -msgid "uncategorized" -msgstr "non classé" - -# @ woocommerce -#: woocommerce-core-functions.php:1554 -msgid "Select a category" -msgstr "Sélectionnez une catégorie" - -# @ woocommerce -#: woocommerce-core-functions.php:1558 -msgid "Uncategorized" -msgstr "Non classé" - -# @ woocommerce -#: woocommerce-core-functions.php:1930 -msgid "Customer" -msgstr "Client" - -# @ woocommerce -#: woocommerce-core-functions.php:1937 -msgid "Shop Manager" -msgstr "Gestionnaire Boutique" - -#: woocommerce-core-functions.php:2494 -msgid "Unpaid order cancelled - time limit reached." -msgstr "Commande impayée annulée - temps limite atteint." - -# @ woocommerce -#: woocommerce-functions.php:226 woocommerce-functions.php:271 -msgid "Cart updated." -msgstr "Panier mis à jour" - -#: woocommerce-functions.php:257 -msgid "You can only have 1 %s in your cart." -msgstr "Vous pouvez seulement avoir 1 %s dans votre panier." - -# @ woocommerce -#: woocommerce-functions.php:315 woocommerce-functions.php:373 -msgid "Please choose product options…" -msgstr "Choisissez les options produit svp …" - -#: woocommerce-functions.php:406 -msgid "" -"Please choose the quantity of items you wish to add to your cart…" -msgstr "" -"Veuillez choisir la quantité d'articles que vous souhaitez ajouter à votre " -"pannier…" - -# @ woocommerce -#: woocommerce-functions.php:413 -msgid "Please choose a product to add to your cart…" -msgstr "Veuillez choisir un produit à ajouter à votre panier…" - -#: woocommerce-functions.php:482 -msgid "Added "%s" to your cart." -msgstr ""%s" ajouté à votre panier." - -#: woocommerce-functions.php:482 -msgid "" and "" -msgstr "" et "" - -# @ woocommerce -#: woocommerce-functions.php:485 -msgid ""%s" was successfully added to your cart." -msgstr ""%s" ajouté avec succès à votre panier." - -# @ woocommerce -#: woocommerce-functions.php:493 -msgid "Continue Shopping →" -msgstr "Poursuivre vos achats →" - -# @ woocommerce -#: woocommerce-functions.php:660 -msgid "Username is required." -msgstr "Nom d'utilisateur requis" - -# @ woocommerce -#: woocommerce-functions.php:661 woocommerce-functions.php:756 -msgid "Password is required." -msgstr "Mot de passe requis" - -# @ woocommerce -#: woocommerce-functions.php:730 -msgid "Please enter a username." -msgstr "Veuillez entrer un nom d'utilisateur." - -#: woocommerce-functions.php:732 -msgid "" -"This username is invalid because it uses illegal characters. Please enter a " -"valid username." -msgstr "" -"Ce nom est invalide car il contient des caractères non autorisés. Veuillez " -"saisir un nom valide." - -#: woocommerce-functions.php:735 -msgid "This username is already registered, please choose another one." -msgstr "Ce nom est déjà enregistré, veuillez en choisir un autre." - -# @ woocommerce -#: woocommerce-functions.php:747 -msgid "Please type your e-mail address." -msgstr "Veuillez saisir votre adresse email." - -#: woocommerce-functions.php:749 -msgid "The email address isn’t correct." -msgstr "L'adresse email n'est pas correcte." - -#: woocommerce-functions.php:752 -msgid "This email is already registered, please choose another one." -msgstr "Cet email est déjà enregistré, veuillez en choisir un autre." - -# @ woocommerce -#: woocommerce-functions.php:757 -msgid "Re-enter your password." -msgstr "Entrez à nouveau votre mot de passe." - -#: woocommerce-functions.php:762 -msgid "Anti-spam field was filled in." -msgstr "Le champ anti-spam a été rempli." - -#: woocommerce-functions.php:870 -msgid "The cart has been filled with the items from your previous order." -msgstr "Le panier a été rempli avec les articles de votre commande précédente." - -# @ woocommerce -#: woocommerce-functions.php:896 -msgid "Order cancelled by customer." -msgstr "Commande annulée par le client" - -# @ woocommerce -#: woocommerce-functions.php:899 -msgid "Your order was cancelled." -msgstr "Votre commande a été annulée" - -# @ woocommerce -#: woocommerce-functions.php:905 -msgid "" -"Your order is no longer pending and could not be cancelled. Please contact " -"us if you need assistance." -msgstr "" -"Votre commande n'est plus en attente et ne peut être annulée. Contactez nous " -"si vous avez besoin d'assistance." - -# @ woocommerce -#: woocommerce-functions.php:940 -msgid "Invalid email address." -msgstr "Adresse email invalide." - -# @ woocommerce -#: woocommerce-functions.php:940 woocommerce-functions.php:963 -#: woocommerce-functions.php:983 woocommerce-functions.php:989 -#: woocommerce-functions.php:993 woocommerce-functions.php:996 -#: woocommerce-functions.php:1026 woocommerce-functions.php:1158 -msgid "Go to homepage →" -msgstr "Retour à l'accueil →" - -# @ woocommerce -#: woocommerce-functions.php:963 -msgid "Invalid download." -msgstr "Téléchargement invalide." - -# @ woocommerce -#: woocommerce-functions.php:975 -msgid "You must be logged in to download files." -msgstr "Vous devez être identifié pour télécharger des fichiers." - -#: woocommerce-functions.php:975 -msgid "Login →" -msgstr "Connexion »" - -#: woocommerce-functions.php:978 -msgid "This is not your download link." -msgstr "Ceci n'est pas votre lien de téléchargement." - -# @ woocommerce -#: woocommerce-functions.php:983 -msgid "Product no longer exists." -msgstr "Produit inexistant." - -# @ woocommerce -#: woocommerce-functions.php:993 -msgid "Sorry, you have reached your download limit for this file" -msgstr "" -"Désolé, vous avez atteint le nombre limite de téléchargements pour ce fichier" - -# @ woocommerce -#: woocommerce-functions.php:996 -msgid "Sorry, this download has expired" -msgstr "Désolé, ce téléchargement a expiré" - -#: woocommerce-functions.php:1026 -msgid "No file defined" -msgstr "Aucun fichier défini" - -#: woocommerce-functions.php:1158 -msgid "File not found" -msgstr "Fichier non trouvé" - -# @ woocommerce -#: woocommerce-functions.php:1274 -msgid "New products" -msgstr "Nouveaux produits" - -# @ woocommerce -#: woocommerce-functions.php:1282 -msgid "New products added to %s" -msgstr "Nouveaux produits ajoutés a %s" - -# @ woocommerce -#: woocommerce-functions.php:1290 -msgid "New products tagged %s" -msgstr "Nouveaux produits taggés avec %s" - -# @ woocommerce -#: woocommerce-functions.php:1328 -msgid "You have taken too long. Please go back and refresh the page." -msgstr "" -"Vous avez été trop long. Revenez en arrière et rafraîchissez la page, svp." - -# @ woocommerce -#: woocommerce-functions.php:1331 -msgid "Please rate the product." -msgstr "Donnez une note au produit svp." - -# @ woocommerce -#: woocommerce-functions.php:1639 -msgid "Password changed successfully." -msgstr "Mot de passe modifié avec succès." - -# @ woocommerce -#: woocommerce-functions.php:1715 -msgid "Address changed successfully." -msgstr "Adresse modifiée avec succès" - -# @ woocommerce -#: woocommerce-template.php:200 -msgid "" -"This is a demo store for testing purposes — no orders shall be " -"fulfilled." -msgstr "" -"Ceci est une boutique de démonstration pour test — aucune commande ne " -"sera honorée." - -# @ woocommerce -#: woocommerce-template.php:219 -msgid "Search Results: “%s”" -msgstr "Résultats de recherche : “%s”" - -#: woocommerce-template.php:222 -msgid " – Page %s" -msgstr " – Page %s" - -# @ woocommerce -#: woocommerce-template.php:767 -msgid "Reviews (%d)" -msgstr "Avis (%d)" - -# @ woocommerce -#: woocommerce-template.php:993 -msgctxt "breadcrumb" -msgid "Home" -msgstr "Accueil" - -#: woocommerce-template.php:1292 woocommerce.php:1209 -msgid "required" -msgstr "requis" - -# @ woocommerce -#: woocommerce-template.php:1341 -msgid "Update country" -msgstr "Actualiser le pays" - -# @ woocommerce -#: woocommerce-template.php:1496 -msgid "Search for:" -msgstr "Recherche pour :" - -# @ woocommerce -#: woocommerce-template.php:1497 -msgid "Search for products" -msgstr "Recherche des produits" - -# @ woocommerce -#: woocommerce-template.php:1498 woocommerce.php:947 -msgid "Search" -msgstr "Recherche" - -#: woocommerce.php:171 -msgid "Docs" -msgstr "Documents" - -#: woocommerce.php:172 -msgid "Premium Support" -msgstr "Support Premium" - -# @ woocommerce -#: woocommerce.php:786 -msgctxt "slug" -msgid "product-category" -msgstr "categorie-produit" - -# @ woocommerce -#: woocommerce.php:787 -msgctxt "slug" -msgid "product-tag" -msgstr "mot-cle-produit" - -# @ woocommerce -#: woocommerce.php:789 -msgctxt "slug" -msgid "product" -msgstr "produit" - -# @ woocommerce -#: woocommerce.php:824 -msgid "Product Category" -msgstr "Catégorie Produit" - -# @ woocommerce -#: woocommerce.php:825 -msgctxt "Admin menu name" -msgid "Categories" -msgstr "Catégories" - -# @ woocommerce -#: woocommerce.php:826 -msgid "Search Product Categories" -msgstr "Recherche catégories" - -# @ woocommerce -#: woocommerce.php:827 -msgid "All Product Categories" -msgstr "Toutes les catégories" - -# @ woocommerce -#: woocommerce.php:828 -msgid "Parent Product Category" -msgstr "Catégorie Produit Parente" - -# @ woocommerce -#: woocommerce.php:829 -msgid "Parent Product Category:" -msgstr "Catégorie Produit Parente :" - -# @ woocommerce -#: woocommerce.php:830 -msgid "Edit Product Category" -msgstr "Modifier Produit Parente" - -# @ woocommerce -#: woocommerce.php:831 -msgid "Update Product Category" -msgstr "Mise à Jour Catégorie Produit" - -# @ woocommerce -#: woocommerce.php:832 -msgid "Add New Product Category" -msgstr "Ajouter une nouvelle catégorie de produit" - -# @ woocommerce -#: woocommerce.php:833 -msgid "New Product Category Name" -msgstr "Nouveau Nom Catégorie Produit" - -# @ woocommerce -#: woocommerce.php:860 -msgid "Product Tag" -msgstr "Mot Clé Produit" - -# @ woocommerce -#: woocommerce.php:861 -msgctxt "Admin menu name" -msgid "Tags" -msgstr "Mots clés" - -# @ woocommerce -#: woocommerce.php:862 -msgid "Search Product Tags" -msgstr "Recherche mots clés" - -# @ woocommerce -#: woocommerce.php:863 -msgid "All Product Tags" -msgstr "Tous les Mots clés Produit" - -# @ woocommerce -#: woocommerce.php:864 -msgid "Parent Product Tag" -msgstr "Mot Clé Produit Parent" - -# @ woocommerce -#: woocommerce.php:865 -msgid "Parent Product Tag:" -msgstr "Mot clé Produit Parent :" - -# @ woocommerce -#: woocommerce.php:866 -msgid "Edit Product Tag" -msgstr "Modifier Mot clé Produit" - -# @ woocommerce -#: woocommerce.php:867 -msgid "Update Product Tag" -msgstr "Mise à Jour Mot clé Produit" - -# @ woocommerce -#: woocommerce.php:868 -msgid "Add New Product Tag" -msgstr "Ajouter un nouveau mot clé produit" - -# @ woocommerce -#: woocommerce.php:869 -msgid "New Product Tag Name" -msgstr "Nouveau Nom Mot clé Produit" - -# @ woocommerce -#: woocommerce.php:888 woocommerce.php:890 -msgid "Shipping Classes" -msgstr "Classes de livraison" - -# @ woocommerce -#: woocommerce.php:892 -msgctxt "Admin menu name" -msgid "Shipping Classes" -msgstr "Classes de livraison" - -# @ woocommerce -#: woocommerce.php:893 -msgid "Search Shipping Classes" -msgstr "Recherche des classes de livraison" - -# @ woocommerce -#: woocommerce.php:894 -msgid "All Shipping Classes" -msgstr "Toutes les classes de livraison" - -# @ woocommerce -#: woocommerce.php:895 -msgid "Parent Shipping Class" -msgstr "Classe de livraison parente" - -# @ woocommerce -#: woocommerce.php:896 -msgid "Parent Shipping Class:" -msgstr "Classe de livraison parente :" - -# @ woocommerce -#: woocommerce.php:897 -msgid "Edit Shipping Class" -msgstr "Editer la classe de livraison" - -# @ woocommerce -#: woocommerce.php:898 -msgid "Update Shipping Class" -msgstr "Actualiser la classe de livraison" - -# @ woocommerce -#: woocommerce.php:899 -msgid "Add New Shipping Class" -msgstr "Ajouter une nouvelle classe de livraison" - -# @ woocommerce -#: woocommerce.php:900 -msgid "New Shipping Class Name" -msgstr "Nouveau nom de classe de livraison" - -# @ woocommerce -#: woocommerce.php:948 -msgid "All" -msgstr "Tous" - -# @ woocommerce -#: woocommerce.php:949 woocommerce.php:950 -msgid "Parent" -msgstr "Parent" - -# @ woocommerce -#: woocommerce.php:952 -msgid "Update" -msgstr "Mettre à jour" - -# @ woocommerce -#: woocommerce.php:953 -msgid "Add New" -msgstr "Ajouter" - -# @ woocommerce -#: woocommerce.php:954 -msgid "New" -msgstr "Nouveau" - -# @ woocommerce -#: woocommerce.php:984 -msgctxt "Admin menu name" -msgid "Products" -msgstr "Produits" - -# @ woocommerce -#: woocommerce.php:985 -msgid "Add Product" -msgstr "Ajouter produit" - -# @ woocommerce -#: woocommerce.php:986 -msgid "Add New Product" -msgstr "Ajouter un nouveau produit" - -# @ woocommerce -#: woocommerce.php:988 -msgid "Edit Product" -msgstr "Modifier Produit" - -# @ woocommerce -#: woocommerce.php:989 -msgid "New Product" -msgstr "Nouveau Produit" - -# @ woocommerce -#: woocommerce.php:990 woocommerce.php:991 -msgid "View Product" -msgstr "Voir Produit" - -# @ woocommerce -#: woocommerce.php:992 -msgid "Search Products" -msgstr "Recherche produits" - -# @ woocommerce -#: woocommerce.php:993 -msgid "No Products found" -msgstr "Aucun produit trouvé" - -# @ woocommerce -#: woocommerce.php:994 -msgid "No Products found in trash" -msgstr "Aucun produit trouvé dans la corbeille" - -# @ woocommerce -#: woocommerce.php:995 -msgid "Parent Product" -msgstr "Produit parent" - -# @ woocommerce -#: woocommerce.php:997 -msgid "This is where you can add new products to your store." -msgstr "" -"Ceci est l'endroit où vous pouvez ajouter des nouveaux produits dans votre " -"boutique." - -# @ woocommerce -#: woocommerce.php:1020 -msgid "Variations" -msgstr "Variations" - -# @ woocommerce -#: woocommerce.php:1021 -msgid "Variation" -msgstr "Variation" - -# @ woocommerce -#: woocommerce.php:1022 -msgid "Add Variation" -msgstr "Ajouter une variation" - -# @ woocommerce -#: woocommerce.php:1023 -msgid "Add New Variation" -msgstr "Ajouter une nouvelle variation" - -# @ woocommerce -#: woocommerce.php:1025 -msgid "Edit Variation" -msgstr "Modifier Variation" - -# @ woocommerce -#: woocommerce.php:1026 -msgid "New Variation" -msgstr "Nouvelle Variation" - -# @ woocommerce -#: woocommerce.php:1027 woocommerce.php:1028 -msgid "View Variation" -msgstr "Voir Variation" - -# @ woocommerce -#: woocommerce.php:1029 -msgid "Search Variations" -msgstr "Recherche variations" - -# @ woocommerce -#: woocommerce.php:1030 -msgid "No Variations found" -msgstr "Aucune variation trouvée" - -# @ woocommerce -#: woocommerce.php:1031 -msgid "No Variations found in trash" -msgstr "Pas de variations trouvées dans la corbeille" - -# @ woocommerce -#: woocommerce.php:1032 -msgid "Parent Variation" -msgstr "Variation Parente" - -# @ woocommerce -#: woocommerce.php:1049 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Commandes" - -# @ woocommerce -#: woocommerce.php:1058 -msgid "Orders" -msgstr "Commandes" - -# @ woocommerce -#: woocommerce.php:1060 -msgid "Add Order" -msgstr "Ajouter commande" - -# @ woocommerce -#: woocommerce.php:1061 -msgid "Add New Order" -msgstr "Nouvelle commande" - -# @ woocommerce -#: woocommerce.php:1063 -msgid "Edit Order" -msgstr "Modifier commande" - -# @ woocommerce -#: woocommerce.php:1064 -msgid "New Order" -msgstr "Nouvelle commande" - -# @ woocommerce -#: woocommerce.php:1067 -msgid "Search Orders" -msgstr "Recherche commandes" - -# @ woocommerce -#: woocommerce.php:1068 -msgid "No Orders found" -msgstr "Aucune commande trouvée" - -# @ woocommerce -#: woocommerce.php:1069 -msgid "No Orders found in trash" -msgstr "Aucune commande trouvée dans la corbeille" - -# @ woocommerce -#: woocommerce.php:1070 -msgid "Parent Orders" -msgstr "Commandes Parentes" - -# @ woocommerce -#: woocommerce.php:1073 -msgid "This is where store orders are stored." -msgstr "Voici où les produits sont stockés" - -# @ woocommerce -#: woocommerce.php:1095 -msgid "Coupons" -msgstr "Codes Promo" - -# @ woocommerce -#: woocommerce.php:1097 -msgctxt "Admin menu name" -msgid "Coupons" -msgstr "Codes Promo" - -# @ woocommerce -#: woocommerce.php:1098 -msgid "Add Coupon" -msgstr "Ajouter un Code Promo" - -# @ woocommerce -#: woocommerce.php:1099 -msgid "Add New Coupon" -msgstr "Ajouter un nouveau Code Promo" - -# @ woocommerce -#: woocommerce.php:1101 -msgid "Edit Coupon" -msgstr "Modifier le Code Promo" - -# @ woocommerce -#: woocommerce.php:1102 -msgid "New Coupon" -msgstr "Nouveau Code Promo" - -# @ woocommerce -#: woocommerce.php:1103 -msgid "View Coupons" -msgstr "Voir les Codes Promo" - -# @ woocommerce -#: woocommerce.php:1104 -msgid "View Coupon" -msgstr "Voir le Code Promo" - -# @ woocommerce -#: woocommerce.php:1105 -msgid "Search Coupons" -msgstr "Recherche Codes Promo" - -# @ woocommerce -#: woocommerce.php:1106 -msgid "No Coupons found" -msgstr "Aucun Code Promo trouvé" - -# @ woocommerce -#: woocommerce.php:1107 -msgid "No Coupons found in trash" -msgstr "Aucun Code Promo trouvé dans la corbeille" - -# @ woocommerce -#: woocommerce.php:1108 -msgid "Parent Coupon" -msgstr "Code Promo parent" - -# @ woocommerce -#: woocommerce.php:1110 -msgid "" -"This is where you can add new coupons that customers can use in your store." -msgstr "" -"Voici où vous pouvez ajouter de nouveaux codes promo que vos clients peuvent " -"utiliser dans votre boutique." - -# @ woocommerce -#: woocommerce.php:1206 -msgid "Select an option…" -msgstr "Sélectionnez une option…" - -#: woocommerce.php:1207 -msgid "Please select a rating" -msgstr "Veuillez sélectionner un classement" - -#: woocommerce.php:1208 -msgid "" -"Sorry, no products matched your selection. Please choose a different " -"combination." -msgstr "" -"Désolé, aucun produit ne répond à vos critères. Veuillez choisir une " -"combinaison différente." - -# @ woocommerce -#: woocommerce.php:1691 -msgid "Cart % Discount" -msgstr "Remise en % du panier" - -# @ woocommerce -#: woocommerce.php:1692 -msgid "Product Discount" -msgstr "Remise produit" - -# @ woocommerce -#: woocommerce.php:1693 -msgid "Product % Discount" -msgstr "Remise en % du produit" - -# @ woocommerce -#: woocommerce.php:1758 -msgid "Action failed. Please refresh the page and retry." -msgstr "L'action a échoué. Rafraîchissez la page et essayez à nouveau, svp." - -# @ woocommerce -#~ msgid "Samoa" -#~ msgstr "Samoa" - -# @ woocommerce -#~ msgid "Subtotal:" -#~ msgstr "Sous-Total :" - -# @ woocommerce -#~ msgid "Flat rate" -#~ msgstr "Taux fixe" - -# @ woocommerce -#~ msgid "Flat Rates" -#~ msgstr "Taux fixes" - -# @ woocommerce -#~ msgid "Calculation Type" -#~ msgstr "Type de calcul" - -# @ woocommerce -#~ msgid "Default Cost" -#~ msgstr "Coût par défaut" - -# @ woocommerce -#~ msgid "Default Handling Fee" -#~ msgstr "Frais de gestion par défaut" - -# @ woocommerce -#~ msgid "Minimum Fee" -#~ msgstr "Frais minimum" - -# @ woocommerce -#~ msgid "Shipping Options" -#~ msgstr "Options des frais" - -#~ msgid "Option Name|Cost|Per-order (yes or no)" -#~ msgstr "Option Nom|Coût|Par commande (yes ou no)" - -# @ woocommerce -#~ msgid "+ Add Flat Rate" -#~ msgstr "+ Ajout Taux fixe" - -#~ msgid "" -#~ "Add rates for shipping classes here — they will override the " -#~ "default costs defined above." -#~ msgstr "" -#~ "Ajoutez des taux pour les classes d'expédition ici — ils vont " -#~ "écraser les coûts par défaut défini ci-dessus." - -#~ msgid "Delete selected rates" -#~ msgstr "Supprimer les taux sélectionnés" - -# @ woocommerce -#~ msgid "Display a login area and \"My Account\" links in the sidebar." -#~ msgstr "" -#~ "Affiche une zone d'identification et un lien vers \"Mon Compte\" dans la " -#~ "barre latérale." - -# @ woocommerce -#~ msgid "WooCommerce Login" -#~ msgstr "WooCommerce Identification" - -# @ woocommerce -#~ msgid "Customer Login" -#~ msgstr "Identification client" - -#~ msgid "Welcome %s" -#~ msgstr "Bienvenue %s" - -# @ woocommerce -#~ msgid "My account" -#~ msgstr "Mon compte" - -# @ woocommerce -#~ msgid "Logout" -#~ msgstr "Déconnexion" - -# @ woocommerce -#~ msgid "Lost password?" -#~ msgstr "Mot de passe perdu ?" - -#~ msgid "Logged out title:" -#~ msgstr "Titre Déconnecté :" - -#~ msgid "Logged in title:" -#~ msgstr "Titre Connecté :" - -# @ woocommerce -#~ msgid "" -#~ "Sorry, it seems that there are no available shipping methods for your " -#~ "state. Please contact us if you require assistance or wish to make " -#~ "alternate arrangements." -#~ msgstr "" -#~ "Désolé, il semble qu'il n'y ai pas de méthodes de livraison disponibles " -#~ "pour votre état. Veuillez nous contacter si vous avez besoin d'assistance " -#~ "ou si vous voulez effectuer un autre arrangement." - -# @ woocommerce -#~ msgid "Please enter your username and password to login." -#~ msgstr "" -#~ "Veuillez entrer votre identifiant et mot de passe pour vous identifier." - -# @ woocommerce -#~ msgid "" -#~ "Sorry, coupon %s has already been applied and cannot be used " -#~ "in conjunction with other coupons." -#~ msgstr "" -#~ "Désolé, le code promo %s a déjà été appliqué et ne peut être " -#~ "utilisé conjointement avec d'autres codes promo." - -# @ woocommerce -#~ msgid "Invalid coupon" -#~ msgstr "Code promo non valide" - -# @ woocommerce -#~ msgid "Ship to" -#~ msgstr "Expédié à" - -#~ msgid "Click to cancel this order" -#~ msgstr "Cliquez pour annuler cette commande" - -#~ msgid "Sorry, you are not allowed to access this page directly." -#~ msgstr "" -#~ "Désolé, vous n'êtes pas autorisé à accéder à cette page directement." - -#~ msgid "Display navigation for your custom taxonomies" -#~ msgstr "Afficher la navigation pour vos taxonomies personnalisées" - -#~ msgid "Custom Taxonomies Menu Widget" -#~ msgstr "Widget Menu Taxonomies Personnalisées" - -# @ woocommerce -#~ msgid "There are no registered custom taxonomies." -#~ msgstr "Il n'y a pas de taxonomie personnalisée enregistrée." - -#~ msgid "" -#~ "There are no custom taxonomies registered. This widget only works with " -#~ "registered custom taxonomies." -#~ msgstr "" -#~ "Il n'y a pas de taxonomie personnalisé d'enregistrée. Ce widget " -#~ "fonctionne uniquement avec des taxonomies personnalisées." - -#~ msgid "" -#~ "This widget produces a custom taxonomy navigation menu, ideal for use in " -#~ "sidebars." -#~ msgstr "" -#~ "Ce widget génère un menu de navigation de taxonomie personnalisée, idéal " -#~ "pour une utilisation en sidebar." - -#~ msgid "Plugin homepage" -#~ msgstr "Accueil extensions" - -#~ msgid "FAQ" -#~ msgstr "FAQ" - -# @ woocommerce -#~ msgid "Menu Title" -#~ msgstr "Titre du Menu" - -#~ msgid "" -#~ "Choose the order by which you would like to display the terms within each " -#~ "taxonomy" -#~ msgstr "" -#~ "Choisissez l'ordre dans lequel vous souhaitez afficher les termes à " -#~ "l'intérieur de chaque taxonomie" - -#~ msgid "" -#~ "Choose whether to display taxonomy terms in ASCending order(default) or " -#~ "DESCending order" -#~ msgstr "" -#~ "Choisissez si les termes de taxonomie s'affiche par ordre croissant (par " -#~ "défault) ou décroissant" - -# @ woocommerce -#~ msgid "Show post count?" -#~ msgstr "Afficher compteur articles ?" - -#~ msgid "Show Taxonomy Title?" -#~ msgstr "Afficher le Titre de la Taxonomie ?" - -# @ woocommerce -#~ msgid "Show Terms as hierarchy?" -#~ msgstr "Afficher les Termes en hiérarchie ?" - -#~ msgid "" -#~ "Use the checklist(s) below to choose which custom taxonomies and terms " -#~ "you want to include in your Navigation Menu. To hide a taxonomy, uncheck " -#~ "the taxonomy name." -#~ msgstr "" -#~ "Utilisez la/les liste(s) ci-dessous pour choisir quelles taxonomies et " -#~ "termes vous souhaitez inclure dans votre menu de navigation. Pour cacher " -#~ "une taxonomie, décochez le nom de la taxonomie." - -#~ msgid "Sorry, you are not allowed to access this file directly." -#~ msgstr "" -#~ "Désolé, vous n'êtes pas autorisé à accéder à ce fichier directement." - -# @ woocommerce -#~ msgid "Configuration Guide" -#~ msgstr "Guide de Configuration" - -#~ msgid "" -#~ "Warning! This version of Custom Taxonomies Menu Widget requires WordPress" -#~ msgstr "" -#~ "Attention ! Cette version de Widget Menu Taxonomies Personnalisées " -#~ "requiert WordPress" - -#~ msgid "Please upgrade Wordpress to run this plugin." -#~ msgstr "Veuille actualiser WordPress pour exécuter cette extension." - -#~ msgid "Please contact your Site Administrator." -#~ msgstr "Veuillez contacter votre Administrateur." - -# @ woocommerce -#~ msgid "Product ID:" -#~ msgstr "ID Produit :" - -# @ woocommerce -#~ msgid "Variation ID:" -#~ msgstr "ID Variation :" - -# @ woocommerce -#~ msgid "Product SKU:" -#~ msgstr "UGS du produit :" - -# @ woocommerce -#~ msgid "Delete item" -#~ msgstr "Supprimer l'article" - -# @ woocommerce -#~ msgid "View product" -#~ msgstr "Voir le produit" - -# @ woocommerce -#~ msgid "Add meta" -#~ msgstr "Ajouter meta" - -# @ woocommerce -#~ msgid "Cross-sell" -#~ msgstr "Ventes croisées" - -# @ woocommerce -#~ msgid "Up-sell" -#~ msgstr "Ventes à la Une" - -# @ woocommerce -#~ msgid "No products found" -#~ msgstr "Aucun produit trouvé" - -# @ woocommerce -#~ msgid "Delete" -#~ msgstr "Supprimer" - -# @ woocommerce -#~ msgid "Order statuses" -#~ msgstr "États de commande" - -# @ woocommerce -#~ msgid "Order status" -#~ msgstr "État de la commande" - -# @ woocommerce -#~ msgid "Search Order statuses" -#~ msgstr "Recherche des états de commande" - -# @ woocommerce -#~ msgid "All Order statuses" -#~ msgstr "Tous les états de commande" - -# @ woocommerce -#~ msgid "Parent Order status" -#~ msgstr "État de la commande parente" - -# @ woocommerce -#~ msgid "Parent Order status:" -#~ msgstr "État de la commande parente :" - -# @ woocommerce -#~ msgid "Edit Order status" -#~ msgstr "Modifier l'état de la commande" - -# @ woocommerce -#~ msgid "Update Order status" -#~ msgstr "Mise à jour de l'état de la commande" - -# @ woocommerce -#~ msgid "Add New Order status" -#~ msgstr "Ajouter un nouvel état de commande" - -# @ woocommerce -#~ msgid "New Order status Name" -#~ msgstr "Nom du nouvel état de commande" - -#~ msgid "Taxonomy exists - please change the slug" -#~ msgstr "La taxonomie existe - veuillez changer le slug" - -# @ woocommerce -#~ msgid "Edit Attribute" -#~ msgstr "Modifier l'attribut" - -# @ woocommerce -#~ msgid "Name for the attribute (shown on the front-end)." -#~ msgstr "Nom pour l'attribut (affiché dans la partie publique)." - -#~ msgid "Slug" -#~ msgstr "Slug" - -# @ woocommerce -#~ msgid "" -#~ "Unique slug/reference for the attribute; must be shorter than 28 " -#~ "characters." -#~ msgstr "" -#~ "Slug/Référence unique pour l'attribut, doit avoir moins de 28 caractères." - -# @ woocommerce -#~ msgid "Type" -#~ msgstr "Type" - -# @ woocommerce -#~ msgid "Select" -#~ msgstr "Choix" - -# @ woocommerce -#~ msgid "Text" -#~ msgstr "Texte" - -# @ woocommerce -#~ msgid "" -#~ "Determines how you select attributes for products. Text " -#~ "allows manual entry via the product page, whereas select " -#~ "attribute terms can be defined from this section. If you plan on using an " -#~ "attribute for variations use select." -#~ msgstr "" -#~ "Détermine comment vous sélectionnez les attributs des produits. " -#~ "Texte permet une saisie manuelle via la page produit, " -#~ "alors que Choix permet de choisir les attributs à partir " -#~ "de cette section. Si vous planifiez d'utiliser un attribut pour des " -#~ "variations utilisez Choix." - -# @ woocommerce -#~ msgid "Default sort order" -#~ msgstr "Tri par défaut" - -# @ woocommerce -#~ msgid "Custom ordering" -#~ msgstr "Tri personnalisé" - -# @ woocommerce -#~ msgid "Term ID" -#~ msgstr "ID terme" - -#~ msgid "" -#~ "Determines the sort order on the frontend for this attribute. If using " -#~ "custom ordering, you can drag and drop the terms in this attribute" -#~ msgstr "" -#~ "Détermine l'ordre de tri sur le site pour cet attribut. Si vous utilisez " -#~ "un tri personnalisé, vous pouvez glisser déposer les termes dans cet " -#~ "attribut" - -# @ woocommerce -#~ msgid "Attributes" -#~ msgstr "Attributs" - -# @ woocommerce -#~ msgid "Order by" -#~ msgstr "Trié par" - -# @ woocommerce -#~ msgid "Terms" -#~ msgstr "Termes" - -# @ woocommerce -#~ msgid "Configure terms" -#~ msgstr "Configurer les termes" - -# @ woocommerce -#~ msgid "No attributes currently exist." -#~ msgstr "Aucun attribut pour le moment." - -# @ woocommerce -#~ msgid "Add New Attribute" -#~ msgstr "Ajouter un nouvel attribut" - -# @ woocommerce -#~ msgid "" -#~ "Attributes let you define extra product data, such as size or colour. You " -#~ "can use these attributes in the shop sidebar using the \"layered nav\" " -#~ "widgets. Please note: you cannot rename an attribute later on." -#~ msgstr "" -#~ "Les attributs vous laisse définir des données supplémentaires pour les " -#~ "produits, tels que la taille ou la couleur. Vous pouvez utiliser ces " -#~ "attributs dans la barre latérale de la boutique en utilisant les widgets " -#~ "\"layered nav\". Veuillez noter : vous ne pouvez pas renommer un attribut " -#~ "ultérieurement." - -# @ woocommerce -#~ msgid "Add Attribute" -#~ msgstr "Ajouter un attribut" - -# @ woocommerce -#~ msgid "Are you sure you want to delete this attribute?" -#~ msgstr "Êtes vous sur de vouloir supprimer cet attribut?" - -# @ woocommerce -#~ msgid "Overview" -#~ msgstr "Aperçu" - -#~ msgid "" -#~ "Thank you for using WooCommerce :) Should you need help using or " -#~ "extending WooCommerce please read the documentation. " -#~ "For further assistance you can use the community forum " -#~ "or if you have access, the members forum." -#~ msgstr "" -#~ "Merci d'utiliser WooCommerce :) Pour de l'aide sur l'utilisation ou " -#~ "l'extension de WooCommerce veuillez lire la documentation. Pour plus d'assistance vous pouvez utiliser le forum " -#~ "de la communauté ou si vous y avez accès, le forum des " -#~ "membres." - -#~ msgid "" -#~ "If you are having problems, or to assist us with support, please check " -#~ "the status page to identify any problems with your configuration:" -#~ msgstr "" -#~ "Si vous rencontrez des problèmes, ou pour être assisté par le support, " -#~ "veuillez vérifier la page de status pour identifier tous problèmes avec " -#~ "votre configuration : " - -# @ woocommerce -#~ msgid "System Status" -#~ msgstr "État du système" - -#~ msgid "" -#~ "If you come across a bug, or wish to contribute to the project you can " -#~ "also get involved on GitHub." -#~ msgstr "" -#~ "Si vous découvrez un bug, ou que vous souhaitez contribuer au projet vous " -#~ "pouvez également obtenir un accès sur GitHub." - -#~ msgid "" -#~ "Here you can set up your store and customise it to fit your needs. The " -#~ "sections available from the settings page include:" -#~ msgstr "" -#~ "Ici vous pouvez paramétrer votre boutique et la personnaliser selon vos " -#~ "besoins. Les sections disponibles depuis la page des paramètres incluent :" - -# @ woocommerce -#~ msgid "General" -#~ msgstr "Général" - -#~ msgid "" -#~ "General settings such as your shop base, currency, and script/styling " -#~ "options which affect features used in your store." -#~ msgstr "" -#~ "Paramètres généraux tels que la racine de votre boutique, la monnaie, et " -#~ "les options de scripts et de styles qui affectent les caractéristiques " -#~ "utilisées dans votre magasin." - -#~ msgid "" -#~ "This is where important store page are defined. You can also set up other " -#~ "pages (such as a Terms page) here." -#~ msgstr "" -#~ "C'est la section où les pages importantes du magasin sont définies. Vous " -#~ "pouvez également mettre en place d'autres pages (telle que les CGV) ici." - -# @ woocommerce -#~ msgid "Catalog" -#~ msgstr "Catalogue" - -#~ msgid "" -#~ "Options for how things like price, images and weights appear in your " -#~ "product catalog." -#~ msgstr "" -#~ "Options pour la manière dont les choses comme le prix, les images et le " -#~ "poids apparaissent dans votre catalogue de produits." - -# @ woocommerce -#~ msgid "Inventory" -#~ msgstr "Inventaire" - -#~ msgid "Options concerning stock and stock notices." -#~ msgstr "Options concernant le stock et les alertes de stock." - -#~ msgid "Options concerning tax, including international and local tax rates." -#~ msgstr "" -#~ "Options concernant les taxes, incluant les taux de taxes internationnales " -#~ "et locales." - -#~ msgid "" -#~ "This is where shipping options are defined, and shipping methods are set " -#~ "up." -#~ msgstr "" -#~ "C'est la section où les options de livraison sont définies, et que les " -#~ "méthodes de livraison sont définies." - -# @ woocommerce -#~ msgid "Payment Methods" -#~ msgstr "Méthodes de Paiement" - -#~ msgid "" -#~ "This is where payment gateway options are defined, and individual payment " -#~ "gateways are set up." -#~ msgstr "" -#~ "C'est la section où les passerelles de paiement sont définies, et que " -#~ "chaque passerelle est paramétrée." - -# @ woocommerce -#~ msgid "Emails" -#~ msgstr "Emails" - -# @ woocommerce -#~ msgid "Here you can customise the way WooCommerce emails appear." -#~ msgstr "" -#~ "Ici vous pouvez personnaliser la manière dont les emails WooCommerce " -#~ "apparaissent." - -# @ woocommerce -#~ msgid "Integration" -#~ msgstr "Intégration" - -#~ msgid "" -#~ "The integration section contains options for third party services which " -#~ "integrate with WooCommerce." -#~ msgstr "" -#~ "La section d'intégration contient les options pour les services tierces " -#~ "qui sont intégrés avec WooCommerce." - -# @ woocommerce -#~ msgid "Reports" -#~ msgstr "Rapports" - -#~ msgid "" -#~ "The reports section can be accessed from the left-hand navigation menu. " -#~ "Here you can generate reports for sales and customers." -#~ msgstr "" -#~ "La section rapports est accessible depuis le menu de navigation de " -#~ "gauche. Là vous pouvez générer des rapports de ventes et de clients." - -# @ woocommerce -#~ msgid "Sales" -#~ msgstr "Ventes" - -#~ msgid "Reports for sales based on date, top sellers and top earners." -#~ msgstr "" -#~ "Rapports des ventes basés sur la date, les meilleures ventes et les " -#~ "meilleurs gains." - -# @ woocommerce -#~ msgid "Customers" -#~ msgstr "Clients" - -#~ msgid "Customer reports, such as signups per day." -#~ msgstr "Rapports sur les clients, tels que les inscriptions par jour." - -# @ woocommerce -#~ msgid "Stock" -#~ msgstr "Stock" - -#~ msgid "Stock reports for low stock and out of stock items." -#~ msgstr "" -#~ "Rapports de stock pour les bas niveaux de stock et les articles épuisés." - -#~ msgid "" -#~ "The orders section can be accessed from the left-hand navigation menu. " -#~ "Here you can view and manage customer orders." -#~ msgstr "" -#~ "La section des commandes est accessible depuis le menu de gauche. Là vous " -#~ "pouvez voir et gérer les commandes client." - -#~ msgid "" -#~ "Orders can also be added from this section if you want to set them up for " -#~ "a customer manually." -#~ msgstr "" -#~ "Les commandes peuvent également être ajoutées depuis cette section si " -#~ "vous voulez les mettre en place manuellement pour un client." - -#~ msgid "" -#~ "Coupons can be managed from this section. Once added, customers will be " -#~ "able to enter coupon codes on the cart/checkout page. If a customer uses " -#~ "a coupon code they will be viewable when viewing orders." -#~ msgstr "" -#~ "Les codes promo peuvent être gérés depuis cette section. Une fois " -#~ "ajoutés, les clients seront en mesure de saisir les codes promo sur la " -#~ "page panier/commande. Si un client utilise un code promo il sera visible " -#~ "lors de la visualisation des commandes." - -# @ woocommerce -#~ msgid "For more information:" -#~ msgstr "Pour plus d'information :" - -#~ msgid "" -#~ "WooCommerce" -#~ msgstr "" -#~ "WooCommerce" - -# @ woocommerce -#~ msgid "" -#~ "Project on WordPress.org" -#~ msgstr "" -#~ "Projet sur WordPress.org" - -#~ msgid "" -#~ "Project on Github" -#~ msgstr "" -#~ "Projet sur Github" - -#~ msgid "" -#~ "WooCommerce Docs" -#~ msgstr "" -#~ "Documentation WooCommerce" - -#~ msgid "" -#~ "Official Extensions" -#~ msgstr "" -#~ "Extensions officielles" - -#~ msgid "" -#~ "Official Themes" -#~ msgstr "" -#~ "Themes officiels" - -# @ woocommerce -#~ msgid "Monthly Sales" -#~ msgstr "Ventes du mois" - -# @ woocommerce -#~ msgid "WooCommerce Right Now" -#~ msgstr "WooCommerce tout de suite" - -# @ woocommerce -#~ msgid "WooCommerce Recent Orders" -#~ msgstr "Commandes récentes WooCommerce" - -# @ woocommerce -#~ msgid "Shop Content" -#~ msgstr "Contenu de la boutique" - -# @ woocommerce -#~ msgid "Attribute" -#~ msgid_plural "Attributes" -#~ msgstr[0] "Attribut" -#~ msgstr[1] "Attributs" - -# @ woocommerce -#~ msgid "Pending" -#~ msgstr "Attente" - -# @ woocommerce -#~ msgid "On-Hold" -#~ msgstr "En attente" - -# @ woocommerce -#~ msgid "Processing" -#~ msgstr "En cours" - -# @ woocommerce -#~ msgid "Completed" -#~ msgstr "Terminée" - -#~ msgid "You are using WooCommerce %s." -#~ msgstr "Vous utilisez WooCommerce %s." - -#~ msgid "l jS \\of F Y h:i:s A" -#~ msgstr "l j F Y h:i:s" - -# @ woocommerce -#~ msgid "item" -#~ msgid_plural "items" -#~ msgstr[0] "élément" -#~ msgstr[1] "éléments" - -# @ woocommerce -#~ msgid "There are no product orders yet." -#~ msgstr "Il n'y a pas encore de commande produit." - -# @ woocommerce -#~ msgid "There are no product reviews yet." -#~ msgstr "Il n'y a pas encore d'avis de produits" - -# @ woocommerce -#~ msgid "Number of sales" -#~ msgstr "Nombre de ventes" - -#~ msgid "Sales amount" -#~ msgstr "Montant des ventes" - -# @ woocommerce -#~ msgid "Order Received" -#~ msgstr "Commande reçue" - -# @ woocommerce -#~ msgid "" -#~ "Thank you, we are now processing your order. Your order's details are " -#~ "below." -#~ msgstr "" -#~ "Merci, nous traitons votre commande. Les détails de la commande sont ci-" -#~ "dessous." - -# @ woocommerce -#~ msgid "Order total:" -#~ msgstr "Total commande :" - -#~ msgid "Could not compile woocommerce.less:" -#~ msgstr "Impossible de compiler woocommerce.less :" - -# @ woocommerce -#~ msgid "Mark processing" -#~ msgstr "Marquée en cours" - -# @ woocommerce -#~ msgid "Mark completed" -#~ msgstr "Marquée terminée" - -# @ woocommerce -#~ msgid "Order status changed by bulk edit:" -#~ msgstr "État de commandes modifiées en lot : " - -# @ woocommerce -#~ msgid "Order status changed." -#~ msgid_plural "%s order statuses changed." -#~ msgstr[0] "État de la commande modifié." -#~ msgstr[1] "%s états de commandes modifiés." - -# @ woocommerce -#~ msgid "WooCommerce Settings" -#~ msgstr "Paramètres WooCommerce" - -# @ woocommerce -#~ msgid "WooCommerce Status" -#~ msgstr "Paramètres WooCommerce" - -#~ msgid "" -#~ "Welcome to WooCommerce – You're almost ready to " -#~ "start selling :)" -#~ msgstr "" -#~ "Bienvenue sur WooCommerce – Vous êtes presque prêt " -#~ "à commencer à vendre :-)" - -# @ woocommerce -#~ msgid "Install WooCommerce Pages" -#~ msgstr "Installer les pages WooCommerce" - -# @ woocommerce -#~ msgid "Skip setup" -#~ msgstr "Ignorer la configuration" - -#~ msgid "" -#~ "WooCommerce has been installed – You're ready to " -#~ "start selling :)" -#~ msgstr "" -#~ "WooCommerce a été installé – Vous êtes prêt à " -#~ "commencer vos ventes :-)" - -# @ woocommerce -#~ msgid "" -#~ "Remove this item? If you have previously reduced this item's stock, or " -#~ "this order was submitted by a customer, will need to manually restore the " -#~ "item's stock." -#~ msgstr "" -#~ "Supprimer cet article ? Si vous avez précédemment réduit le stock de cet " -#~ "article, ou bien si cette commande a été soumise par un client, vous " -#~ "devrez manuellement restaurer le stock de cet article." - -# @ woocommerce -#~ msgid "Remove this attribute?" -#~ msgstr "Enlever cet attribut ?" - -# @ woocommerce -#~ msgid "Remove" -#~ msgstr "Enlever" - -# @ woocommerce -#~ msgid "Click to toggle" -#~ msgstr "Cliquez ici pour basculer" - -# @ woocommerce -#~ msgid "Value(s)" -#~ msgstr "Valeurs" - -# @ woocommerce -#~ msgid "Enter some text, or some attributes by pipe (|) separating values." -#~ msgstr "Entrer du texte, ou des attributs en les séparant avec un pipe (|)" - -# @ woocommerce -#~ msgid "Visible on the product page" -#~ msgstr "Visible sur la page produit" - -# @ woocommerce -#~ msgid "Used for variations" -#~ msgstr "Utilisé pour les variations" - -#~ msgid "Enter a name for the new attribute term:" -#~ msgstr "Entrez un nom pour le nouvel attibut du terme :" - -# @ woocommerce -#~ msgid "" -#~ "Calculate totals based on order items, discount amount, and shipping? " -#~ "Note, you will need to (optionally) calculate tax rows and cart discounts " -#~ "manually." -#~ msgstr "" -#~ "Calcul des totaux basés sur les articles de la commande, le montant de " -#~ "remise et la livraison ? Notez que vous devrez (optionnellement) calculer " -#~ "les lignes de taxe et les remises du panier manuellement." - -#~ msgid "" -#~ "Calculate line taxes? This will calculate taxes based on the customers " -#~ "country. If no billing/shipping is set it will use the store base country." -#~ msgstr "" -#~ "Calculer les taxes en ligne ? Cela calculera les taxes basées sur le pays " -#~ "des clients. Si aucune facture/livraison n'est paramétrée cela prendra le " -#~ "pays de base de la boutique." - -# @ woocommerce -#~ msgid "" -#~ "Copy billing information to shipping information? This will remove any " -#~ "currently entered shipping information." -#~ msgstr "" -#~ "Copier les informations de facturation vers les informations " -#~ "d'expédition? Ceci enlèvera tout ce qui a été entré dans les informations " -#~ "d'expédition." - -# @ woocommerce -#~ msgid "" -#~ "Load the customer's billing information? This will remove any currently " -#~ "entered billing information." -#~ msgstr "" -#~ "Charger les informations de facturation du client ? Ceci supprimera " -#~ "toutes les informations de facturation actuellement saisies." - -# @ woocommerce -#~ msgid "" -#~ "Load the customer's shipping information? This will remove any currently " -#~ "entered shipping information." -#~ msgstr "" -#~ "Charger les informations de livraison du client ? Ceci supprimera toutes " -#~ "les informations de livraison actuellement saisies." - -# @ woocommerce -#~ msgid "Featured" -#~ msgstr "Mis en avant" - -# @ woocommerce -#~ msgid "Meta Name" -#~ msgstr "Nom Meta" - -# @ woocommerce -#~ msgid "Meta Value" -#~ msgstr "Valeur Meta" - -# @ woocommerce -#~ msgid "No customer selected" -#~ msgstr "Aucun client sélectionné" - -# @ woocommerce -#~ msgid "Tax Label:" -#~ msgstr "Légende de taxe :" - -# @ woocommerce -#~ msgid "Compound:" -#~ msgstr "Cumulable :" - -# @ woocommerce -#~ msgid "Cart Tax:" -#~ msgstr "Taxe panier :" - -# @ woocommerce -#~ msgid "Shipping Tax:" -#~ msgstr "Taxe livraison :" - -# @ woocommerce -#~ msgid "Exclude image" -#~ msgstr "Exclure l'image" - -# @ woocommerce -#~ msgid "" -#~ "Enabling this option will hide it from the product page image gallery." -#~ msgstr "" -#~ "Cette option cachera l'image de la galerie dans une page de produit." - -#~ msgid "Product updated. View Product" -#~ msgstr "Produit mise à jour. Voir le produit" - -# @ woocommerce -#~ msgid "Custom field updated." -#~ msgstr "Champ personnalisé mis à jour." - -# @ woocommerce -#~ msgid "Custom field deleted." -#~ msgstr "Champ personnalisé supprimé." - -# @ woocommerce -#~ msgid "Product updated." -#~ msgstr "Produit mis à jour." - -#~ msgid "Product restored to revision from %s" -#~ msgstr "Produit restoré à la révision de %s" - -#~ msgid "Product published. View Product" -#~ msgstr "Produit publié. Voir le produit" - -# @ woocommerce -#~ msgid "Product saved." -#~ msgstr "Produit sauvegardé." - -#~ msgid "" -#~ "Product submitted. Preview Product" -#~ msgstr "" -#~ "Produit soumis. Prévisualiser le " -#~ "produit" - -#~ msgid "" -#~ "Product scheduled for: %1$s. Preview Product" -#~ msgstr "" -#~ "Produit programmé pour : %1$s. Prévisualiser le produit" - -#~ msgid "M j, Y @ G:i" -#~ msgstr "j M Y @ G:i" - -#~ msgid "" -#~ "Product draft updated. Preview Product" -#~ msgstr "" -#~ "Produits en brouillon mis à jour. Prévisualiser le produit" - -# @ woocommerce -#~ msgid "Order updated." -#~ msgstr "Commande mise à jour." - -#~ msgid "Order restored to revision from %s" -#~ msgstr "Commande restorée à la révision de %s" - -# @ woocommerce -#~ msgid "Order saved." -#~ msgstr "Commande sauvegardée." - -# @ woocommerce -#~ msgid "Order submitted." -#~ msgstr "Commande soumise." - -#~ msgid "Order scheduled for: %1$s." -#~ msgstr "Commande programmée pour : %1$s." - -# @ woocommerce -#~ msgid "Order draft updated." -#~ msgstr "Commande en brouillon mise à jour." - -# @ woocommerce -#~ msgid "Coupon updated." -#~ msgstr "Code promo mis à jour." - -#~ msgid "Coupon restored to revision from %s" -#~ msgstr "Code promo restoré à la révision de %s" - -# @ woocommerce -#~ msgid "Coupon saved." -#~ msgstr "Code promo sauvegardé." - -# @ woocommerce -#~ msgid "Coupon submitted." -#~ msgstr "Code promo soumis." - -#~ msgid "Coupon scheduled for: %1$s." -#~ msgstr "Code promo programmé pour : %1$s." - -# @ woocommerce -#~ msgid "Coupon draft updated." -#~ msgstr "Code promo en brouillon mis à jour." - -# @ woocommerce -#~ msgid "Order notes" -#~ msgstr "Notes de la commande" - -# @ woocommerce -#~ msgctxt "page_slug" -#~ msgid "shop" -#~ msgstr "boutique" - -# @ woocommerce -#~ msgid "Shop" -#~ msgstr "Boutique" - -# @ woocommerce -#~ msgctxt "page_slug" -#~ msgid "cart" -#~ msgstr "panier" - -# @ woocommerce -#~ msgctxt "page_slug" -#~ msgid "checkout" -#~ msgstr "commande" - -# @ woocommerce -#~ msgctxt "page_slug" -#~ msgid "order-tracking" -#~ msgstr "suivi-de-commande" - -# @ woocommerce -#~ msgid "Track your order" -#~ msgstr "Suivre votre commande" - -# @ woocommerce -#~ msgctxt "page_slug" -#~ msgid "my-account" -#~ msgstr "mon-compte" - -# @ woocommerce -#~ msgctxt "page_slug" -#~ msgid "edit-address" -#~ msgstr "modification-adresse" - -# @ woocommerce -#~ msgid "Edit My Address" -#~ msgstr "Modifier mon adresse" - -# @ woocommerce -#~ msgctxt "page_slug" -#~ msgid "view-order" -#~ msgstr "voir-commande" - -# @ woocommerce -#~ msgctxt "page_slug" -#~ msgid "change-password" -#~ msgstr "changer-mot-de-passe" - -# @ woocommerce -#~ msgctxt "page_slug" -#~ msgid "pay" -#~ msgstr "payer" - -# @ woocommerce -#~ msgid "Checkout → Pay" -#~ msgstr "Commande → Paiement" - -# @ woocommerce -#~ msgctxt "page_slug" -#~ msgid "order-received" -#~ msgstr "commande-recue" - -# @ woocommerce -#~ msgctxt "page_slug" -#~ msgid "lost-password" -#~ msgstr "lost-password" - -# @ woocommerce -#~ msgid "Lost Password" -#~ msgstr "Mot de Passe perdu" - -# @ woocommerce -#~ msgid "Sales by day" -#~ msgstr "Ventes par jour" - -#~ msgid "Sales by month" -#~ msgstr "Ventes par mois" - -#~ msgid "Taxes by month" -#~ msgstr "Taxes par mois" - -# @ woocommerce -#~ msgid "Product Sales" -#~ msgstr "Ventes produits" - -# @ woocommerce -#~ msgid "Top sellers" -#~ msgstr "Top ventes" - -# @ woocommerce -#~ msgid "Top earners" -#~ msgstr "Top gains" - -# @ woocommerce -#~ msgid "Sales by category" -#~ msgstr "Ventes par catégorie" - -#~ msgid "Sales by coupon" -#~ msgstr "Ventes par code promo" - -# @ woocommerce -#~ msgid "Total sales" -#~ msgstr "Total des ventes" - -# @ woocommerce -#~ msgid "n/a" -#~ msgstr "n/a" - -# @ woocommerce -#~ msgid "Total orders" -#~ msgstr "Total commandes" - -# @ woocommerce -#~ msgid "items" -#~ msgstr "éléments" - -# @ woocommerce -#~ msgid "Average order total" -#~ msgstr "Montant moyen des commandes" - -# @ woocommerce -#~ msgid "Average order items" -#~ msgstr "Moyenne des éléments commandés" - -# @ woocommerce -#~ msgid "Discounts used" -#~ msgstr "Remises utilisées" - -# @ woocommerce -#~ msgid "Total shipping costs" -#~ msgstr "Total des frais de livraison" - -# @ woocommerce -#~ msgid "This month's sales" -#~ msgstr "Ventes du mois" - -# @ woocommerce -#~ msgid "From:" -#~ msgstr "A partir de :" - -# @ woocommerce -#~ msgid "To:" -#~ msgstr "Au :" - -# @ woocommerce -#~ msgid "Show" -#~ msgstr "Afficher" - -# @ woocommerce -#~ msgid "Total sales in range" -#~ msgstr "Total ventes sur la période" - -# @ woocommerce -#~ msgid "Total orders in range" -#~ msgstr "Total commandes sur la période" - -# @ woocommerce -#~ msgid "Average order total in range" -#~ msgstr "Total moyen de commandes sur la période" - -# @ woocommerce -#~ msgid "Average order items in range" -#~ msgstr "Moyenne des articles commandés sur la période" - -# @ woocommerce -#~ msgid "Sales in range" -#~ msgstr "Ventes sur la période" - -# @ woocommerce -#~ msgid "Year:" -#~ msgstr "Année :" - -# @ woocommerce -#~ msgid "Total sales for year" -#~ msgstr "Total ventes sur l'année" - -# @ woocommerce -#~ msgid "Total orders for year" -#~ msgstr "Total commandes sur l'année" - -# @ woocommerce -#~ msgid "Average order total for year" -#~ msgstr "Montant moyen des commandes sur l'année" - -# @ woocommerce -#~ msgid "Average order items for year" -#~ msgstr "Moyenne d'articles commandés sur l'année" - -# @ woocommerce -#~ msgid "Monthly sales for year" -#~ msgstr "Ventes mensuelles sur l'année" - -# @ woocommerce -#~ msgid "Product does not exist" -#~ msgstr "Produit Inexistant" - -# @ woocommerce -#~ msgid "Product no longer exists" -#~ msgstr "Produit inexistant" - -#~ msgid "Sales for %s:" -#~ msgstr "Ventes pour %s :" - -# @ woocommerce -#~ msgid "Month" -#~ msgstr "Mois" - -# @ woocommerce -#~ msgid "No sales :(" -#~ msgstr "Pas de vente :(" - -# @ woocommerce -#~ msgid "Search for a product…" -#~ msgstr "Recherche d'un produit..." - -# @ woocommerce -#~ msgid "Total customers" -#~ msgstr "Total des clients" - -# @ woocommerce -#~ msgid "Total customer sales" -#~ msgstr "Total ventes clients" - -# @ woocommerce -#~ msgid "Total guest sales" -#~ msgstr "Total ventes invités" - -# @ woocommerce -#~ msgid "Total customer orders" -#~ msgstr "Total commandes clients" - -# @ woocommerce -#~ msgid "Total guest orders" -#~ msgstr "Total commandes invités" - -# @ woocommerce -#~ msgid "Average orders per customer" -#~ msgstr "Moyenne de commandes par client" - -# @ woocommerce -#~ msgid "Signups per day" -#~ msgstr "Inscriptions par jour" - -# @ woocommerce -#~ msgid "Low stock" -#~ msgstr "Stock faible" - -# @ woocommerce -#~ msgid "SKU" -#~ msgstr "UGS" - -# @ woocommerce -#~ msgid "%d in stock" -#~ msgid_plural "%d in stock" -#~ msgstr[0] " %d en stock" -#~ msgstr[1] " %d en stock" - -# @ woocommerce -#~ msgid "No products are low in stock." -#~ msgstr "Aucun produit en stock faible." - -# @ woocommerce -#~ msgid "No products are out in stock." -#~ msgstr "Aucun produit épuisé." - -# @ woocommerce -#~ msgid "Total taxes for year" -#~ msgstr "Total des taxes sur l'année" - -# @ woocommerce -#~ msgid "Total product taxes for year" -#~ msgstr "Total des taxes de produits sur l'année" - -# @ woocommerce -#~ msgid "Total shipping tax for year" -#~ msgstr "Total des taxe de livraison sur l'année" - -# @ woocommerce -#~ msgid "Total Sales" -#~ msgstr "Total des ventes" - -#~ msgid "This is the sum of the 'Order Total' field within your orders." -#~ msgstr "C'est la somme du champ 'Total Commande' de vos commandes." - -# @ woocommerce -#~ msgid "Total Shipping" -#~ msgstr "Total livraison" - -#~ msgid "This is the sum of the 'Shipping Total' field within your orders." -#~ msgstr "C'est la somme du champ 'Total Livraison' de vos commandes." - -# @ woocommerce -#~ msgid "Total Product Taxes" -#~ msgstr "Total des taxes produits" - -#~ msgid "This is the sum of the 'Cart Tax' field within your orders." -#~ msgstr "C'est la somme du champ 'Taxe du Panier' de vos commandes." - -# @ woocommerce -#~ msgid "Total Shipping Taxes" -#~ msgstr "Total des taxes de livraison" - -#~ msgid "This is the sum of the 'Shipping Tax' field within your orders." -#~ msgstr "C'est la somme du champ 'Taxe del Livraison' de vos commandes." - -# @ woocommerce -#~ msgid "Total Taxes" -#~ msgstr "Total des taxes" - -#~ msgid "" -#~ "This is the sum of the 'Cart Tax' and 'Shipping Tax' fields within your " -#~ "orders." -#~ msgstr "" -#~ "C'est la somme des champs 'Taxe du Panier' et 'Taxe de Livraison' de vos " -#~ "commandes." - -# @ woocommerce -#~ msgid "Net profit" -#~ msgstr "Profit net" - -# @ woocommerce -#~ msgid "Total sales minus shipping and tax." -#~ msgstr "Total des ventes diminué de la livraison et des taxes." - -# @ woocommerce -#~ msgid "Toggle tax rows" -#~ msgstr "Basculer les lignes de taxe" - -# @ woocommerce -#~ msgid "Show:" -#~ msgstr "Afficher :" - -# @ woocommerce -#~ msgid "Category" -#~ msgstr "Catégorie" - -# @ woocommerce -#~ msgid "Export data" -#~ msgstr "Export des données" - -# @ woocommerce -#~ msgid "Top category" -#~ msgstr "Top catégorie" - -# @ woocommerce -#~ msgid "Worst category" -#~ msgstr "Pire catégorie" - -# @ woocommerce -#~ msgid "Category sales average" -#~ msgstr "Moyenne des ventes catégories" - -#~ msgid "Category sales median" -#~ msgstr "Ventes dans la catégorie médiane" - -# @ woocommerce -#~ msgid "Monthly sales by category" -#~ msgstr "Ventes mensuelles par catégorie" - -# @ woocommerce -#~ msgid "Top coupon" -#~ msgstr "Top code promo" - -# @ woocommerce -#~ msgid "Worst coupon" -#~ msgstr "Pire code promo" - -# @ woocommerce -#~ msgid "Coupon sales average" -#~ msgstr "Moyenne des ventes codes promo" - -#~ msgid "Coupon sales median" -#~ msgstr "Ventes moyennes codes promo" - -#~ msgid "Monthly sales by coupon" -#~ msgstr "Remises mensuel par codes promo" - -# @ woocommerce -#~ msgid "Your settings have been saved." -#~ msgstr "Vos paramètres ont été enregistrés." - -# @ woocommerce -#~ msgid "" -#~ "Congratulations! – WooCommerce has been installed " -#~ "and setup. Enjoy :)" -#~ msgstr "" -#~ "Félicitations ! – WooCommerce a été installé et " -#~ "paramétré. Amusez-vous bien :-)" - -# @ woocommerce -#~ msgid "Payment Gateways" -#~ msgstr "Passerelles de Paiement" - -#~ msgid "" -#~ "More functionality and gateway options available via WC official extensions." -#~ msgstr "" -#~ "Plus de fonctionnalités et d'options de passerelle disponibles sur Extensions WC officielles." - -# @ woocommerce -#~ msgid "Email Options" -#~ msgstr "Options d'email" - -# @ woocommerce -#~ msgid "" -#~ "The changes you made will be lost if you navigate away from this page." -#~ msgstr "Les changements effectués seront perdus si vous quittez cette page." - -# @ woocommerce -# @ woocommerce -#~ msgid "Width" -#~ msgstr "Largeur" - -# @ woocommerce -# @ woocommerce -#~ msgid "Height" -#~ msgstr "Hauteur" - -# @ woocommerce -#~ msgid "Hard Crop" -#~ msgstr "Recadrage forcé" - -# @ woocommerce -#~ msgid "Select a page…" -#~ msgstr "Sélectionnez une page…" - -# @ woocommerce -#~ msgid "Choose a country…" -#~ msgstr "Choisissez un pays…" - -# @ woocommerce -#~ msgid "Choose countries…" -#~ msgstr "Choisissez des pays…" - -# @ woocommerce -#~ msgid "Transients" -#~ msgstr "Données temporaires" - -#~ msgid "Clear Transients" -#~ msgstr "Effacer les données temporaires" - -#~ msgid "This tool will clear the product/shop transients cache." -#~ msgstr "" -#~ "Cet outil effacera le cache des fichiers temporaires produit/boutique." - -#~ msgid "Capabilities" -#~ msgstr "Capacités" - -#~ msgid "Reset Capabilities" -#~ msgstr "Réinitialiser les capacités" - -#~ msgid "" -#~ "This tool will reset the admin, customer and shop_manager roles to " -#~ "default. Use this if your users cannot access all of the WooCommerce " -#~ "admin pages." -#~ msgstr "" -#~ "Cet outil réinitialise les rôles de l'admin, du client et du shop_manager " -#~ "aux valeurs par défaut. A utiliser si vos utilisateurs ne peuvent plus " -#~ "accéder aux pages d'administration de WooCommerce." - -# @ woocommerce -#~ msgid "Generate report" -#~ msgstr "Générer le rapport" - -# @ woocommerce -#~ msgid "Product Transients Cleared" -#~ msgstr "Produits transitoires effacés" - -#~ msgid "Roles successfully reset" -#~ msgstr "Rôles réinitialisés avec succès" - -#~ msgid "There was an error calling %s::%s" -#~ msgstr "Il y a une erreur en appelant %s::%s " - -#~ msgid "There was an error calling %s" -#~ msgstr "Il y a une erreur en appelant %s" - -# @ woocommerce -#~ msgid "Versions" -#~ msgstr "Variations" - -# @ woocommerce -#~ msgid "WooCommerce version" -#~ msgstr "Version WooCommerce " - -#~ msgid "WordPress version" -#~ msgstr "Version WordPress" - -#~ msgid "Installed plugins" -#~ msgstr "Extensions installées" - -#~ msgid "by" -#~ msgstr "par" - -# @ woocommerce -#~ msgid "version" -#~ msgstr "version" - -# @ woocommerce -#~ msgid "Home URL" -#~ msgstr "URL accueil" - -#~ msgid "Site URL" -#~ msgstr "URL du site" - -#~ msgid "Force SSL" -#~ msgstr "Forcer le SSL" - -#~ msgid "Yes" -#~ msgstr "Oui" - -# @ woocommerce -#~ msgid "No" -#~ msgstr "Non" - -# @ woocommerce -#~ msgid "Shop Pages" -#~ msgstr "Pages boutique" - -# @ woocommerce -#~ msgid "Shop base page" -#~ msgstr "Page de base de la boutique" - -# @ woocommerce -#~ msgid "Cart Page" -#~ msgstr "Page panier" - -# @ woocommerce -#~ msgid "Checkout Page" -#~ msgstr "Page commande" - -# @ woocommerce -#~ msgid "Pay Page" -#~ msgstr "Page paiement" - -# @ woocommerce -#~ msgid "Thanks Page" -#~ msgstr "Page de remerciements" - -# @ woocommerce -#~ msgid "My Account Page" -#~ msgstr "Page mon compte" - -# @ woocommerce -#~ msgid "Edit Address Page" -#~ msgstr "Page modification adresse" - -# @ woocommerce -#~ msgid "View Order Page" -#~ msgstr "Page voir commande" - -# @ woocommerce -#~ msgid "Change Password Page" -#~ msgstr "Page changement mot de passe" - -# @ woocommerce -#~ msgid "Page not set" -#~ msgstr "Page non définie" - -#~ msgid "Page does not contain the shortcode: %s" -#~ msgstr "La page ne contient pas le shortcode : %s" - -#~ msgid "Core Taxonomies" -#~ msgstr "Taxonomies de base" - -# @ woocommerce -#~ msgid "Order Statuses" -#~ msgstr "États de commande" - -#~ msgid "Server Environment" -#~ msgstr "Environnement serveur" - -#~ msgid "PHP Version" -#~ msgstr "Version PHP" - -#~ msgid "Server Software" -#~ msgstr "Serveur" - -#~ msgid "WP Max Upload Size" -#~ msgstr "WP Téléchargement max." - -#~ msgid "Server upload_max_filesize" -#~ msgstr "Serveur upload_max_filesize" - -#~ msgid "Server post_max_size" -#~ msgstr "Serveur post_max_size" - -#~ msgid "WP Memory Limit" -#~ msgstr "WP Limite mémoire" - -#~ msgid "" -#~ "%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -#~ msgstr "" -#~ "%s - Nous recommandons une mémoire d'au moins 64Mo. Voir : Augmenter la mémoire allouée à PHP " - -#~ msgid "WP Debug Mode" -#~ msgstr "WP Mode débug" - -# @ woocommerce -#~ msgid "WC Logging" -#~ msgstr "WC Connexion" - -#~ msgid "Log directory is writable." -#~ msgstr "Le dossier Log est accessible en écriture." - -#~ msgid "" -#~ "Log directory (woocommerce/logs/) is not writable. Logging " -#~ "will not be possible." -#~ msgstr "" -#~ "Le dossier Log (woocommerce/logs/) n'est pas accessible en " -#~ "écriture. L'enregistrement sera impossible." - -#~ msgid "Remote Posting/IPN" -#~ msgstr "Publication/IPN distante" - -#~ msgid "fsockopen/cURL" -#~ msgstr "fsockopen/cURL" - -# @ woocommerce -#~ msgid "Your server has fsockopen and cURL enabled." -#~ msgstr "Votre serveur a fsockopen et cURL activés." - -#~ msgid "Your server has fsockopen enabled, cURL is disabled." -#~ msgstr "Votre serveur a fsockopen actif, cURL est désactivé." - -#~ msgid "Your server has cURL enabled, fsockopen is disabled." -#~ msgstr "Votre serveur a cURL actif, fsockopen est désactivé." - -#~ msgid "" -#~ "Your server does not have fsockopen or cURL enabled - PayPal IPN and " -#~ "other scripts which communicate with other servers will not work. Contact " -#~ "your hosting provider." -#~ msgstr "" -#~ "Votre serveur n'a pas fsockopen ou cURL actifs - Paypal IPN et les autres " -#~ "scripts qui communiquent avec d'autres serveurs ne fonctionneront pas. " -#~ "Contacter votre hébergeur." - -#~ msgid "WP Remote Post Check" -#~ msgstr "WP Vérification Publication distante" - -#~ msgid "wp_remote_post() was successful - PayPal IPN is working." -#~ msgstr "wp_remote_post() est un succès - PayPal IPN fonctionne." - -#~ msgid "" -#~ "wp_remote_post() failed. PayPal IPN won't work with your server. Contact " -#~ "your hosting provider. Error:" -#~ msgstr "" -#~ "wp_remote_post() est un échec. PayPal IPN ne fonctionnera pas sur votre " -#~ "serveur. Contactez votre hébergeur. Erreur : " - -#~ msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -#~ msgstr "" -#~ "wp_remote_post() est un échec. PayPal IPN ne devrait pas fonctionner sur " -#~ "votre serveur." - -# @ woocommerce -#~ msgid "Tools" -#~ msgstr "Outils" - -# @ woocommerce -#~ msgid "Thumbnail" -#~ msgstr "Vignette" - -# @ woocommerce -#~ msgid "Upload/Add image" -#~ msgstr "Transférer/Ajouter image" - -# @ woocommerce -#~ msgid "Remove image" -#~ msgstr "Supprimer image" - -#~ msgid "" -#~ "Product categories for your store can be managed here. To change the " -#~ "order of categories on the front-end you can drag and drop to sort them. " -#~ "To see more categories listed click the \"screen options\" link at the " -#~ "top of the page." -#~ msgstr "" -#~ "Les catégories de produit pour votre boutique peuvent être gérées ici. " -#~ "Pour changer l'ordre des catégories sur le site vous pouvez les cliquer/" -#~ "déplacer pour les ordonner. Pour voir plus de catégories listées cliquer " -#~ "le lien \"Options de l'écran\" en haut de la page." - -#~ msgid "" -#~ "Shipping classes can be used to group products of similar type. These " -#~ "groups can then be used by certain shipping methods to provide different " -#~ "rates to different products." -#~ msgstr "" -#~ "Les classes de livraison peuvent être utilisées pour grouper des produits " -#~ "similaires. Ces groupes peuvent alors être utilisés par certaines " -#~ "méthodes de livraison pour fournir différents taux à différents produits." - -# @ woocommerce -#~ msgid "Image" -#~ msgstr "Image" - -# @ woocommerce -#~ msgid "Configure shipping class" -#~ msgstr "Configurer la classe de livraison" - -# @ woocommerce -#~ msgid "Paying Customer?" -#~ msgstr "Payer au Client ?" - -# @ woocommerce -#~ msgid "Customer Billing Address" -#~ msgstr "Adresse de facturation du client" - -# @ woocommerce -#~ msgid "First name" -#~ msgstr "Prénom" - -# @ woocommerce -#~ msgid "Last name" -#~ msgstr "Nom" - -# @ woocommerce -#~ msgid "Company" -#~ msgstr "Entreprise" - -# @ woocommerce -#~ msgid "Address 1" -#~ msgstr "Adresse 1" - -# @ woocommerce -#~ msgid "Address 2" -#~ msgstr "Adresse 2" - -# @ woocommerce -#~ msgid "State/County" -#~ msgstr "État/Pays" - -# @ woocommerce -#~ msgid "Country or state code" -#~ msgstr "Code du pays ou de l'état" - -#~ msgid "2 letter Country code" -#~ msgstr "2 lettres du code pays" - -# @ woocommerce -#~ msgid "Telephone" -#~ msgstr "Téléphone" - -# @ woocommerce -#~ msgid "Customer Shipping Address" -#~ msgstr "Adresse de livraison du client" - -# @ woocommerce -#~ msgid "State/County or state code" -#~ msgstr "État/Pays ou code de l'état" - -# @ woocommerce -#~ msgid "WooCommerce Tax Rates (CSV)" -#~ msgstr "WooCommerce Taux de taxes (CSV)" - -#~ msgid "Import tax rates to your store via a csv file." -#~ msgstr "" -#~ "Importez les taux de taxe dans votre boutique via un " -#~ "fichier csv." - -#~ msgid "Sorry, there has been an error." -#~ msgstr "Désolé, il y a eu une erreur." - -#~ msgid "The file does not exist, please try again." -#~ msgstr "Le fichier n'existe pas, veuillez essayer de nouveau." - -#~ msgid "The CSV is invalid." -#~ msgstr "Le CSV est invalide." - -#~ msgid "" -#~ "Import complete - imported %s tax rates and skipped " -#~ "%s." -#~ msgstr "" -#~ "Import complété - %s taux de taxe importés et " -#~ "%s sautés." - -# @ woocommerce -#~ msgid "All done!" -#~ msgstr "Tout est fait !" - -# @ woocommerce -#~ msgid "View Tax Rates" -#~ msgstr "Voir les taux de taxe" - -#~ msgid "Import Tax Rates" -#~ msgstr "Importer les taux de taxe" - -#~ msgid "" -#~ "Hi there! Upload a CSV file containing tax rates to import the contents " -#~ "into your shop. Choose a .csv file to upload, then click \"Upload file " -#~ "and import\"." -#~ msgstr "" -#~ "Transférez un fichier CSV contenant les taux de taxe pour importer les " -#~ "contenus dans votre boutique. Choisissez un fichier .csv à transférer, " -#~ "puis cliquez \"Envoyer le fichier et l'importer\"." - -#~ msgid "" -#~ "Tax rates need to be defined with columns in a specific order (6 " -#~ "columns). Click here to download a sample." -#~ msgstr "" -#~ "Les taux de taxe ont besoin d'être définis avec des colonnes dans un " -#~ "ordre spécifique (6 colonnes). Cliquez ici pour " -#~ "télécharger un exemple." - -#~ msgid "" -#~ "Local tax rates also need to be defined with columns in a specific order " -#~ "(8 columns). Click here to download a sample." -#~ msgstr "" -#~ "Les taux de taxe locale ont également besoin d'être définis avec des " -#~ "colonnes dans un ordre spécifique (8 colonnes). Cliquez " -#~ "ici pour télécharger un exemple." - -#~ msgid "" -#~ "Before you can upload your import file, you will need to fix the " -#~ "following error:" -#~ msgstr "" -#~ "Avant de pouvoir transférer votre fichier d'import, vous devez corriger " -#~ "les erreurs suivantes : " - -#~ msgid "Choose a file from your computer:" -#~ msgstr "Choisir un fichier depuis votre ordinateur : " - -#~ msgid "Maximum size: %s" -#~ msgstr "Taille maximum : %s" - -#~ msgid "OR enter path to file:" -#~ msgstr "OU entrez le chemin du fichier : " - -# @ woocommerce -#~ msgid "Delimiter" -#~ msgstr "Délimiteur" - -# @ woocommerce -#~ msgid "No product to duplicate has been supplied!" -#~ msgstr "Aucun produit à dupliquer n'a été fourni !" - -# @ woocommerce -#~ msgid "Product creation failed, could not find original product:" -#~ msgstr "" -#~ "Échec de création du produit, impossible de trouver le produit original :" - -# @ woocommerce -#~ msgid "(Copy)" -#~ msgstr "(Copier)" - -# @ woocommerce -#~ msgid "Make a duplicate from this product" -#~ msgstr "Duplique ce produit" - -# @ woocommerce -#~ msgid "Duplicate" -#~ msgstr "Dupliquer" - -# @ woocommerce -#~ msgid "Copy to a new draft" -#~ msgstr "Copier vers un nouveau brouillon" - -# @ woocommerce -#~ msgid "Categories" -#~ msgstr "Catégories" - -# @ woocommerce -#~ msgid "Tags" -#~ msgstr "Mots-clés" - -#~ msgid "Edit this item inline" -#~ msgstr "Editer cet article en ligne" - -#~ msgid "Quick Edit" -#~ msgstr "Edition rapide" - -#~ msgid "Restore this item from the Trash" -#~ msgstr "Récupérer cet élément de la Corbeille" - -# @ woocommerce -#~ msgid "Restore" -#~ msgstr "Restaurer" - -# @ woocommerce -#~ msgid "Move this item to the Trash" -#~ msgstr "Mettre cet article à la corbeille" - -# @ woocommerce -#~ msgid "Trash" -#~ msgstr "Corbeille" - -# @ woocommerce -#~ msgid "Delete this item permanently" -#~ msgstr "Supprimer cet article définitivement" - -# @ woocommerce -#~ msgid "Delete Permanently" -#~ msgstr "Supprimer Définitivement" - -#~ msgid "Preview “%s”" -#~ msgstr "Prévisualiser “%s”" - -# @ woocommerce -#~ msgid "Preview" -#~ msgstr "Aperçu" - -#~ msgid "View “%s”" -#~ msgstr "Voir “%s”" - -# @ woocommerce -#~ msgid "Grouped" -#~ msgstr "Groupé" - -#~ msgid "External/Affiliate" -#~ msgstr "Externe/Affiliation" - -# @ woocommerce -#~ msgid "Virtual" -#~ msgstr "Virtuel" - -# @ woocommerce -#~ msgid "Downloadable" -#~ msgstr "Téléchargeable" - -# @ woocommerce -#~ msgid "Simple" -#~ msgstr "Simple" - -# @ woocommerce -#~ msgid "Variable" -#~ msgstr "Variable" - -# @ woocommerce -#~ msgid "Change" -#~ msgstr "Changer" - -# @ woocommerce -#~ msgid "Show all product types" -#~ msgstr "Afficher tous les types de produits" - -# @ woocommerce -#~ msgid "Grouped product" -#~ msgstr "Produits groupés" - -#~ msgid "External/Affiliate product" -#~ msgstr "Produit externe/affiliation" - -# @ woocommerce -#~ msgid "Simple product" -#~ msgstr "Produit simple" - -# @ woocommerce -#~ msgid "Show all sub-types" -#~ msgstr "Afficher tous les sous types" - -# @ woocommerce -#~ msgid "[%s with SKU of %s]" -#~ msgstr "[%s avec UGS sur %s]" - -# @ woocommerce -#~ msgid "[%s with ID of %d]" -#~ msgstr "[%s avec ID sur %d]" - -# @ woocommerce -#~ msgid "Product Data" -#~ msgstr "Données Produit" - -# @ woocommerce -#~ msgid "Regular price" -#~ msgstr "Prix régulier" - -# @ woocommerce -#~ msgid "Sale" -#~ msgstr "Vente" - -# @ woocommerce -#~ msgid "Sale price" -#~ msgstr "Prix de vente" - -#~ msgid "L/W/H" -#~ msgstr "L/l/H" - -# @ woocommerce -#~ msgid "Length" -#~ msgstr "Longueur" - -# @ woocommerce -#~ msgid "Visibility" -#~ msgstr "Visibilité" - -# @ woocommerce -#~ msgid "Catalog & search" -#~ msgstr "Catalogue & recherche" - -# @ woocommerce -#~ msgid "Hidden" -#~ msgstr "Caché" - -# @ woocommerce -#~ msgid "In stock?" -#~ msgstr "En stock ?" - -# @ woocommerce -#~ msgid "Manage stock?" -#~ msgstr "Gérer les stocks ?" - -# @ woocommerce -#~ msgid "Stock Qty" -#~ msgstr "Qté Stock" - -#~ msgid "— No Change —" -#~ msgstr "— Aucun Changement —" - -# @ woocommerce -#~ msgid "Change to:" -#~ msgstr "Changer à :" - -#~ msgid "Increase by (fixed amount or %):" -#~ msgstr "Augmenter par (montant fixe ou %) :" - -#~ msgid "Decrease by (fixed amount or %):" -#~ msgstr "Diminuer par (montant fixe ou %) : " - -# @ woocommerce -#~ msgid "Enter price" -#~ msgstr "Saisir le prix" - -#~ msgid "Decrease regular price by (fixed amount or %):" -#~ msgstr "Diminuer le prix régulier par (montant fixe ou %) :" - -# @ woocommerce -#~ msgid "Sort Products" -#~ msgstr "Classer les produits" - -# @ woocommerce -#~ msgid "Code" -#~ msgstr "Code" - -# @ woocommerce -#~ msgid "Coupon type" -#~ msgstr "Type de Code Promo" - -# @ woocommerce -#~ msgid "Coupon amount" -#~ msgstr "Montant du Code Promo" - -# @ woocommerce -#~ msgid "Product IDs" -#~ msgstr "ID Produits" - -# @ woocommerce -#~ msgid "Usage limit" -#~ msgstr "Limite d'utilisation" - -# @ woocommerce -#~ msgid "Usage count" -#~ msgstr "Compteur d'utilisations" - -# @ woocommerce -#~ msgid "Expiry date" -#~ msgstr "Date d'expiration" - -# @ woocommerce -#~ msgid "Billing" -#~ msgstr "Facturation" - -# @ woocommerce -#~ msgid "Customer Notes" -#~ msgstr "Notes client" - -# @ woocommerce -#~ msgid "Actions" -#~ msgstr "Actions" - -#~ msgid "made by" -#~ msgstr "passé par" - -# @ woocommerce -#~ msgid "Via" -#~ msgstr "Par" - -# @ woocommerce -#~ msgid "Unpublished" -#~ msgstr "Non publié" - -# @ woocommerce -#~ msgid "Y/m/d g:i:s A" -#~ msgstr "d/m/Y G:i:s" - -# "il y a" déplacé dans la chaine parente car en anglais "ago" est placé après la durée. -#~ msgid "%s ago" -#~ msgstr "%s" - -# @ woocommerce -#~ msgid "Y/m/d" -#~ msgstr "d/m/Y" - -# @ woocommerce -#~ msgid "Complete" -#~ msgstr "Expédier" - -# @ woocommerce -#~ msgid "Show all statuses" -#~ msgstr "Afficher tous les états" - -# @ woocommerce -#~ msgid "Show all customers" -#~ msgstr "Afficher tous les clients" - -# @ woocommerce -#~ msgid "Any" -#~ msgstr "Toute" - -# @ woocommerce -#~ msgid "" -#~ "Enter a SKU for this variation or leave blank to use the parent product " -#~ "SKU." -#~ msgstr "" -#~ "Entrez une référence pour cette variation ou laissez vide pour utiliser " -#~ "la référence du produit parent." - -# @ woocommerce -#~ msgid "Stock Qty:" -#~ msgstr "Qté Stock :" - -# @ woocommerce -#~ msgid "" -#~ "Enter a quantity to enable stock management for this variation, or leave " -#~ "blank to use the variable product stock options." -#~ msgstr "" -#~ "Entrez une quantité pour gérer les stocks pour cette variation, ou " -#~ "laissez vide pour utiliser les options de variable de stock du produit." - -# @ woocommerce -#~ msgid "Sale Price:" -#~ msgstr "Prix de vente :" - -# @ woocommerce -#~ msgid "Schedule" -#~ msgstr "Planifier" - -# @ woocommerce -#~ msgid "Cancel schedule" -#~ msgstr "Annuler la planification" - -# @ woocommerce -#~ msgid "Sale start date:" -#~ msgstr "Début de vente :" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "From…" -#~ msgstr "Du…" - -# @ woocommerce -#~ msgid "Sale end date:" -#~ msgstr "Fin de vente :" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "To…" -#~ msgstr "Au…" - -# @ woocommerce -#~ msgid "" -#~ "Enter a weight for this variation or leave blank to use the parent " -#~ "product weight." -#~ msgstr "" -#~ "Saisissez un poids pour cette variation ou laissez vide pour utiliser le " -#~ "poids de produit parent." - -#~ msgid "Dimensions (L×W×H)" -#~ msgstr "Dimensions (L×Larg.×H)" - -# @ woocommerce -#~ msgid "Shipping class:" -#~ msgstr "Classe de livraison :" - -# @ woocommerce -#~ msgid "Tax class:" -#~ msgstr "Classe taxe : " - -# @ woocommerce -#~ msgid "File paths:" -#~ msgstr "Chemins fichier :" - -#~ msgid "" -#~ "Enter one or more File Paths, one per line, to make this variation a " -#~ "downloadable product, or leave blank." -#~ msgstr "" -#~ "Saisissez un ou plusieurs chemins de fichier, un par ligne, pour faire de " -#~ "cette variation un produit téléchargeable, ou laissez vide." - -# @ woocommerce -#~ msgid "File paths/URLs, one per line" -#~ msgstr "URL fichier, un par ligne" - -# @ woocommerce -#~ msgid "Upload a file" -#~ msgstr "Envoyer un fichier" - -# @ woocommerce -#~ msgid "Upload" -#~ msgstr "Envoyer un fichier" - -# @ woocommerce -#~ msgid "Download Limit:" -#~ msgstr "Limite téléchargement :" - -# @ woocommerce -#~ msgid "Leave blank for unlimited re-downloads." -#~ msgstr "Laissez vide pour les téléchargements illimités." - -# @ woocommerce -#~ msgid "Unlimited" -#~ msgstr "Illimitée" - -# @ woocommerce -#~ msgid "Download Expiry:" -#~ msgstr "Expiration du téléchargement :" - -#~ msgid "" -#~ "Enter the number of days before a download link expires, or leave blank." -#~ msgstr "" -#~ "Saisissez le nombre de jours avant qu'un lien de télécharchement " -#~ "n'expire, ou laisser vide." - -# @ woocommerce -#~ msgid "Enabled" -#~ msgstr "Activé" - -#~ msgid "" -#~ "Enable this option if access is given to a downloadable file upon " -#~ "purchase of a product" -#~ msgstr "" -#~ "Activer cette option si l'accès est donné à un fichier téléchargeable à " -#~ "l'achat d'un produit" - -#~ msgid "" -#~ "Enable this option if a product is not shipped or there is no shipping " -#~ "cost" -#~ msgstr "" -#~ "Activer cette option si un produit n'est pas expédié ou s'il n'y a pas de " -#~ "frais de port" - -# @ woocommerce -#~ msgid "Discount type" -#~ msgstr "Type de remise" - -# @ woocommerce -#~ msgid "Enter an amount e.g. 2.99" -#~ msgstr "Entrez un montant ex.: 2.99" - -# @ woocommerce -#~ msgid "Individual use" -#~ msgstr "Utilisation individuelle" - -# @ woocommerce -#~ msgid "" -#~ "Check this box if the coupon cannot be used in conjunction with other " -#~ "coupons" -#~ msgstr "" -#~ "Cochez cette case si le code promo ne peut être utilisé conjointement " -#~ "avec d'autres codes promo" - -# @ woocommerce -#~ msgid "Apply before tax" -#~ msgstr "Appliquer avant la taxe" - -# @ woocommerce -#~ msgid "" -#~ "Check this box if the coupon should be applied before calculating cart tax" -#~ msgstr "" -#~ "Cochez cette case si le code promo doit être appliqué avant le calcul de " -#~ "taxe du panier" - -# @ woocommerce -#~ msgid "Enable free shipping" -#~ msgstr "Activer la livraison gratuite" - -#~ msgid "" -#~ "Check this box if the coupon enables free shipping (see Free Shipping)" -#~ msgstr "" -#~ "Cocher cette case si le code promo active la gratuité de livraison (voi " -#~ "Livraison gratuite)" - -# @ woocommerce -#~ msgid "Minimum amount" -#~ msgstr "Montant minimum" - -#~ msgid "No minimum" -#~ msgstr "Aucun minimum" - -#~ msgid "" -#~ "This field allows you to set the minimum subtotal needed to use the " -#~ "coupon." -#~ msgstr "" -#~ "Ce champ vous permet de définir le sous-total minimum nécessaire pour " -#~ "utiliser le code promo." - -# @ woocommerce -#~ msgid "" -#~ "Products which need to be in the cart to use this coupon or, for " -#~ "\"Product Discounts\", which products are discounted." -#~ msgstr "" -#~ "Produits qui doivent être dans le panier pour utiliser ce code promo, " -#~ "pour les \"Produits Remisés\", les produits qui sont remisés." - -# @ woocommerce -#~ msgid "Exclude Products" -#~ msgstr "Exclure les produits" - -# @ woocommerce -#~ msgid "Search for a product…" -#~ msgstr "Recherche pour un produit..." - -# @ woocommerce -#~ msgid "" -#~ "Products which must not be in the cart to use this coupon or, for " -#~ "\"Product Discounts\", which products are not discounted." -#~ msgstr "" -#~ "Produits qui ne doivent pas être dans le panier pour utiliser ce code " -#~ "promo ou, pour les \"Produits Remisés\", les produits qui ne sont pas " -#~ "remisés." - -# @ woocommerce -#~ msgid "Any category" -#~ msgstr "Toutes les catégories" - -# @ woocommerce -#~ msgid "" -#~ "A product must be in this category for the coupon to remain valid or, for " -#~ "\"Product Discounts\", products in these categories will be discounted." -#~ msgstr "" -#~ "Un produit doit être dans cette catégorie pour que le code promo reste " -#~ "valide ou, pour les \"Produits Remisés\", les produits dans ces " -#~ "catégories qui sont remisés." - -# @ woocommerce -#~ msgid "Exclude Categories" -#~ msgstr "Exclure les catégories" - -# @ woocommerce -#~ msgid "No categories" -#~ msgstr "Aucune catégorie" - -# @ woocommerce -#~ msgid "" -#~ "Product must not be in this category for the coupon to remain valid or, " -#~ "for \"Product Discounts\", products in these categories will not be " -#~ "discounted." -#~ msgstr "" -#~ "Produit ne devant pas être dans cette catégorie pour que le code promo " -#~ "reste valide ou, pour les \"Produits Remisés\", les produits dans ces " -#~ "catégories qui ne sont pas remisés." - -# @ woocommerce -#~ msgid "Customer Emails" -#~ msgstr "Emails client" - -# @ woocommerce -#~ msgid "Any customer" -#~ msgstr "Tout client" - -#~ msgid "" -#~ "Comma separate email addresses to restrict this coupon to specific " -#~ "billing and user emails." -#~ msgstr "" -#~ "Adresses email séparées par une virgule pour restreindre ce code promo " -#~ "aux emails spécifiques de facturation et d'utilisateur." - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Unlimited usage" -#~ msgstr "Utilisation illimitée" - -# @ woocommerce -#~ msgid "How many times this coupon can be used before it is void" -#~ msgstr "" -#~ "Combien de fois ce code promo peut il être utilisé avant de ne plus être " -#~ "valide" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Never expire" -#~ msgstr "N'expire jamais" - -# @ woocommerce -#~ msgid "The date this coupon will expire, YYYY-MM-DD" -#~ msgstr "La date d'expiration du code promo, AAAA-MM-JJ" - -# @ woocommerce -#~ msgid "Coupon code already exists." -#~ msgstr "Code promo exitant." - -# @ woocommerce -#~ msgid "Order status:" -#~ msgstr "État de la commande :" - -# @ woocommerce -#~ msgid "Order Date:" -#~ msgstr "Dates de commande : " - -#~ msgid "h" -#~ msgstr "h" - -# @ woocommerce -#~ msgid "m" -#~ msgstr "m" - -# @ woocommerce -#~ msgid "Customer:" -#~ msgstr "Client :" - -# @ woocommerce -#~ msgid "Customer Note:" -#~ msgstr "Note client :" - -# @ woocommerce -#~ msgid "Customer's notes about the order" -#~ msgstr "Notes du client à propos de la commande" - -# @ woocommerce -#~ msgid "Billing Details" -#~ msgstr "Détails de la facturation" - -# @ woocommerce -#~ msgid "No billing address set." -#~ msgstr "Aucune adresse de facturation." - -# @ woocommerce -#~ msgid "Load billing address" -#~ msgstr "Charger l'adresse de facturation" - -# @ woocommerce -#~ msgid "Shipping Details" -#~ msgstr "Détails de la livraison" - -# @ woocommerce -#~ msgid "No shipping address set." -#~ msgstr "Aucune adresse de livraison." - -# @ woocommerce -#~ msgid "Load shipping address" -#~ msgstr "Charger l'adresse de livraison" - -#~ msgid "Copy from billing" -#~ msgstr "Copier depuis la facture" - -# @ woocommerce -#~ msgid "Item" -#~ msgstr "Article" - -# @ woocommerce -#~ msgid "Tax Class" -#~ msgstr "Classe taxe" - -#~ msgid "Tax class for the line item" -#~ msgstr "Classe de taxe pour la ligne de l'élément" - -# @ woocommerce -#~ msgid "Line Subtotal" -#~ msgstr "Ligne Sous-total" - -#~ msgid "Line cost and line tax before pre-tax discounts" -#~ msgstr "Ligne tarif et ligne taxe après les remises pré-taxes" - -# @ woocommerce -#~ msgid "Line Total" -#~ msgstr "Ligne Total" - -#~ msgid "Line cost and line tax after pre-tax discounts" -#~ msgstr "Ligne tarif et ligne taxe après les remises pré-taxes" - -# @ woocommerce -#~ msgid "Add item(s)" -#~ msgstr "Ajouter des éléments" - -#~ msgid "Calc line tax ↑" -#~ msgstr "Calculer la ligne de taxe ↑" - -# @ woocommerce -#~ msgid "Calc totals →" -#~ msgstr "Calcul totaux →" - -# @ woocommerce -#~ msgid "Save Order" -#~ msgstr "Enregistrer la cde" - -# @ woocommerce -#~ msgid "Save/update the order" -#~ msgstr "Enregistrer/Actualiser la commande" - -# @ woocommerce -#~ msgid "Reduce stock" -#~ msgstr "Réduire stock" - -# @ woocommerce -#~ msgid "" -#~ "Reduces stock for each item in the order; useful after manually creating " -#~ "an order or manually marking an order as paid." -#~ msgstr "" -#~ "Réduire le stock de chaque élément dans la commande; utile en cas de " -#~ "création manuelle d'une commande ou le passage manuel d'une commande " -#~ "comme payée." - -# @ woocommerce -#~ msgid "Restore stock" -#~ msgstr "Restaurer stock" - -# @ woocommerce -#~ msgid "" -#~ "Restores stock for each item in the order; useful after refunding or " -#~ "canceling the entire order." -#~ msgstr "" -#~ "Restaurer le stock de chaque élément de la commande; utile en cas de " -#~ "remboursement ou d'annulation de la commande complète." - -# @ woocommerce -#~ msgid "Email invoice" -#~ msgstr "Email de facture" - -# @ woocommerce -#~ msgid "" -#~ "Email the order to the customer. Unpaid orders will include a payment " -#~ "link." -#~ msgstr "" -#~ "Envoi la commande par email au client. Les commandes non reglées incluent " -#~ "un lien de paiement." - -# @ woocommerce -#~ msgid "Move to Trash" -#~ msgstr "Mettre à la corbeille" - -# @ woocommerce -#~ msgid "Discounts" -#~ msgstr "Remises" - -# @ woocommerce -#~ msgid "Cost ex. tax:" -#~ msgstr "Tarif H.T. :" - -# @ woocommerce -#~ msgid "Shipping Method:" -#~ msgstr "Méthode de livraison : " - -# @ woocommerce -#~ msgid "Other" -#~ msgstr "Autre" - -# @ woocommerce -#~ msgid "Shipping Title:" -#~ msgstr "Titre de livraison :" - -#~ msgid "The shipping title the customer sees" -#~ msgstr "Le titre de la livraison que le client verra" - -# @ woocommerce -#~ msgid "Tax Rows" -#~ msgstr "Rangées de taxes" - -#~ msgid "" -#~ "These rows contain taxes for this order. This allows you to display " -#~ "multiple or compound taxes rather than a single total." -#~ msgstr "" -#~ "Ces lignes contiennent des taxes pour cette commande. Cela vous permet " -#~ "d'afficher des taxes multiples ou cumulables plutôt qu'un total simple." - -# @ woocommerce -#~ msgid "+ Add tax row" -#~ msgstr "+ Ajouter ligne taxe" - -# @ woocommerce -#~ msgid "Tax Totals" -#~ msgstr "Total taxes" - -# @ woocommerce -#~ msgid "Payment Method:" -#~ msgstr "Méthode de Paiement :" - -# @ woocommerce -#~ msgid "Manually reducing stock." -#~ msgstr "Réduction des stock manuelle." - -# @ woocommerce -#~ msgid "Item %s %s not found, skipping." -#~ msgstr "L'élément %s %s est introuvable, passage au suivant" - -# @ woocommerce -#~ msgid "Manual stock reduction complete." -#~ msgstr "Réduction de stock manuelle complète" - -# @ woocommerce -#~ msgid "Manually restoring stock." -#~ msgstr "Restauration manuelle du stock" - -# @ woocommerce -#~ msgid "Manual stock restore complete." -#~ msgstr "Restauration de stock manuelle complète." - -#~ msgid "Revoke Access" -#~ msgstr "Révoquer l'Accès" - -#~ msgid "File %d: %s" -#~ msgstr "Fichier %d : %s" - -# @ woocommerce -#~ msgid "Downloaded %s time" -#~ msgid_plural "Downloaded %s times" -#~ msgstr[0] "Téléchargé %s fois" -#~ msgstr[1] "Téléchargé %s fois" - -# @ woocommerce -#~ msgid "Downloads Remaining" -#~ msgstr "Téléchargements restant" - -#~ msgid "Access Expires" -#~ msgstr "Accès Expiré" - -# @ woocommerce -#~ msgid "Never" -#~ msgstr "Jamais" - -# @ woocommerce -#~ msgid "Choose a downloadable product…" -#~ msgstr "Choisir un produit téléchargeable…" - -#~ msgid "Grant Access" -#~ msgstr "Accorder l'Accès" - -# @ woocommerce -#~ msgid "File" -#~ msgstr "Fichier" - -#~ msgid "" -#~ "Could not grant access - the user may already have permission for this " -#~ "file." -#~ msgstr "" -#~ "Impossible d'accorder l'accès - l'utilisateur peut déjà avoir la " -#~ "permission pour ce fichier." - -# @ woocommerce -#~ msgid "Are you sure you want to revoke access to this download?" -#~ msgstr "" -#~ "Êtes-vous certain de vouloir supprimer l'accès à ce téléchargement ?" - -# @ woocommerce -#~ msgid "added %s ago" -#~ msgstr "ajouté il y a %s" - -# @ woocommerce -#~ msgid "There are no notes for this order yet." -#~ msgstr "Il n'y a pas encore de notes pour cette commande." - -# @ woocommerce -#~ msgid "Private note" -#~ msgstr "Note privée" - -# @ woocommerce -#~ msgid "Add" -#~ msgstr "Ajouter" - -#~ msgid "Variations for variable products are defined here." -#~ msgstr "Les variations pour les produits variables sont définies ici." - -#~ msgid "" -#~ "Before adding variations, add and save some attributes on the " -#~ "Attributes tab." -#~ msgstr "" -#~ "Avant d'ajouter des variations, ajoutez et sauvegardez quelques attributs " -#~ "à partir de l'onglet Attributs." - -# @ woocommerce -#~ msgid "Learn more" -#~ msgstr "Lire plus" - -# @ woocommerce -#~ msgid "Close all" -#~ msgstr "Tout fermer" - -#~ msgid "Expand all" -#~ msgstr "Tout agrandir" - -# @ woocommerce -#~ msgid "Bulk edit:" -#~ msgstr "Modification groupée :" - -# @ woocommerce -#~ msgid "Prices" -#~ msgstr "Prix" - -# @ woocommerce -#~ msgid "Sale prices" -#~ msgstr "Prix de vente" - -# @ woocommerce -#~ msgid "File Path" -#~ msgstr "Chemin fichier" - -# @ woocommerce -#~ msgid "Download limit" -#~ msgstr "Limite de téléchargement" - -# @ woocommerce -#~ msgid "Download Expiry" -#~ msgstr "Expiration du téléchargement" - -# @ woocommerce -#~ msgid "Delete all" -#~ msgstr "Tout supprimer" - -# @ woocommerce -#~ msgid "Link all variations" -#~ msgstr "Lier toutes les variations" - -# @ woocommerce -#~ msgid "Default selections:" -#~ msgstr "Sélections par défaut :" - -# @ woocommerce -#~ msgid "No default" -#~ msgstr "Pas de valeur par défaut" - -# @ woocommerce -#~ msgid "" -#~ "You must add some attributes via the \"Product Data\" panel and save " -#~ "before adding a new variation." -#~ msgstr "" -#~ "Vous devez ajouter des attributs via le panneau \"Données Produits\" et " -#~ "enregistrer avant d'ajouter une autre variation." - -# @ woocommerce -#~ msgid "" -#~ "Are you sure you want to link all variations? This will create a new " -#~ "variation for each and every possible combination of variation attributes " -#~ "(max 50 per run)." -#~ msgstr "" -#~ "Êtes-vous sur de vouloir lier toutes les variations ? Ceci créera une " -#~ "nouvelle variation pour chaque combinaison possible des attributs de " -#~ "variations (max. 50 par lancement)." - -# @ woocommerce -#~ msgid "variation added" -#~ msgstr "variation ajoutée" - -# @ woocommerce -#~ msgid "variations added" -#~ msgstr "variations ajoutées" - -# @ woocommerce -#~ msgid "No variations added" -#~ msgstr "Aucune variation ajoutée" - -# @ woocommerce -#~ msgid "Are you sure you want to remove this variation?" -#~ msgstr "Êtes vous sur de vouloir supprimer cette variation?" - -# @ woocommerce -#~ msgid "" -#~ "Are you sure you want to delete all variations? This cannot be undone." -#~ msgstr "" -#~ "Êtes-vous sur de vouloir supprimer toutes les attributs ? Cela ne pourra " -#~ "pas être annulé." - -#~ msgid "Last warning, are you sure?" -#~ msgstr "Dernier avertissement, vous êtes certain ?" - -# @ woocommerce -#~ msgid "Enter a value" -#~ msgstr "Entrez une valeur" - -# @ woocommerce -#~ msgid "Variable product" -#~ msgstr "Produit variable" - -# @ woocommerce -#~ msgid "Product Type" -#~ msgstr "Type de produit" - -#~ msgid "Virtual products are intangible and aren't shipped." -#~ msgstr "Les produits virtuels sont incorporels et ne sont pas expédiés." - -#~ msgid "Downloadable products give access to a file upon purchase." -#~ msgstr "" -#~ "Les produits téléchargeables donne accès à un fichier lors de l'achat." - -# @ woocommerce -#~ msgid "Taxes" -#~ msgstr "Taxes" - -#~ msgid "Advanced" -#~ msgstr "Avancé" - -#~ msgid "Stock Keeping Unit" -#~ msgstr "Maintenir l'unité de stock" - -#~ msgid "" -#~ "SKU refers to a Stock-keeping unit, a unique identifier for each distinct " -#~ "product and service that can be purchased." -#~ msgstr "" -#~ "UGS fait référence à l'Unité de Gestion de Stock, un identifiant unique " -#~ "pour chaque produit distinct et service qui peut être vendu." - -# @ woocommerce -#~ msgid "Product URL" -#~ msgstr "URL du produit" - -# @ woocommerce -#~ msgid "Enter the external URL to the product." -#~ msgstr "Saisissez l'URL externe au produit." - -#~ msgid "Button text" -#~ msgstr "Bouton texte" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Buy product" -#~ msgstr "Acheter le produit" - -#~ msgid "" -#~ "This text will be shown on the button linking to the external product." -#~ msgstr "Ce texte sera visible sur le bouton de lien au produit externe." - -# @ woocommerce -#~ msgid "Regular Price" -#~ msgstr "Prix régulier" - -# @ woocommerce -#~ msgid "Sale Price" -#~ msgstr "Prix de vente" - -# @ woocommerce -#~ msgid "Sale Price Dates" -#~ msgstr "Dates prix de vente " - -#~ msgid "File paths (one per line)" -#~ msgstr "Chemins de fichiers (un par ligne)" - -# @ woocommerce -#~ msgid "Download Limit" -#~ msgstr "Limite de téléchargement" - -# @ woocommerce -#~ msgid "Shipping only" -#~ msgstr "Expédition seulement" - -#~ msgid "" -#~ "Stock quantity. If this is a variable product this value will be used to " -#~ "control stock for all variations, unless you define stock at variation " -#~ "level." -#~ msgstr "" -#~ "Quantité du stock. Si c'est un produit variable cette valeur sera " -#~ "utilisée pour contrôler le stock pour toutes les variations, à moins que " -#~ "vous définissiez le stock au niveau de la variation." - -# @ woocommerce -#~ msgid "Stock status" -#~ msgstr "État du stock" - -#~ msgid "" -#~ "Controls whether or not the product is listed as \"in stock\" or \"out of " -#~ "stock\" on the frontend." -#~ msgstr "" -#~ "Controle si le produit est listé comme \"en stock\" ou \"en rupture\" sur " -#~ "le site." - -# @ woocommerce -#~ msgid "Allow Backorders?" -#~ msgstr "Commandes de produits en rupture ?" - -# @ woocommerce -#~ msgid "Do not allow" -#~ msgstr "Ne pas autoriser" - -# @ woocommerce -#~ msgid "Allow, but notify customer" -#~ msgstr "Autoriser, mais avec notification client" - -# @ woocommerce -#~ msgid "Allow" -#~ msgstr "Autoriser" - -#~ msgid "" -#~ "If managing stock, this controls whether or not backorders are allowed " -#~ "for this product and variations. If enabled, stock quantity can go below " -#~ "0." -#~ msgstr "" -#~ "En cas de gestion du stock, ceci détermine si les commandes de produits " -#~ "en rupture sont autorisées. Si actif, la quantité en stock pourra être " -#~ "inférieure à 0." - -#~ msgid "Weight in decimal form" -#~ msgstr "Poids au format décimal" - -#~ msgid "LxWxH in decimal form" -#~ msgstr "LxPxH au format décimal" - -# @ woocommerce -#~ msgid "No shipping class" -#~ msgstr "Pas de classe de livraison" - -# @ woocommerce -#~ msgid "Shipping class" -#~ msgstr "Classe de livraison" - -#~ msgid "" -#~ "Shipping classes are used by certain shipping methods to group similar " -#~ "products." -#~ msgstr "" -#~ "Les classes de livraison sont utilisées par certaines méthodes de " -#~ "livraison pour grouper des produits similaires." - -# @ woocommerce -#~ msgid "Select terms" -#~ msgstr "Choix des termes" - -# @ woocommerce -#~ msgid "Select all" -#~ msgstr "Tout sélectionner" - -# @ woocommerce -#~ msgid "Select none" -#~ msgstr "Ne rien sélectionner" - -# @ woocommerce -#~ msgid "Add new" -#~ msgstr "Ajouter" - -# @ woocommerce -#~ msgid "Pipe separate terms" -#~ msgstr "Séparation des termes par Pipe (|)" - -# @ woocommerce -#~ msgid "Custom product attribute" -#~ msgstr "Attribut personnalisé du produit" - -# @ woocommerce -#~ msgid "Up-Sells" -#~ msgstr "A la Une" - -# @ woocommerce -#~ msgid "" -#~ "Up-sells are products which you recommend instead of the currently viewed " -#~ "product, for example, products that are more profitable or better quality " -#~ "or more expensive." -#~ msgstr "" -#~ "Les produits A la Une sont des produits que vous recommandez à la place " -#~ "de ceux actuellement vus, par exemple, les produits qui sont plus " -#~ "profitables ou de meilleure qualité ou plus chers." - -# @ woocommerce -#~ msgid "Cross-Sells" -#~ msgstr "Ventes Croisées" - -# @ woocommerce -#~ msgid "" -#~ "Cross-sells are products which you promote in the cart, based on the " -#~ "current product." -#~ msgstr "" -#~ "Les Ventes Croisées sont des produits que vous mettez en avant dans la " -#~ "panier, basés sur le produit actuel." - -# @ woocommerce -#~ msgid "Purchase Note" -#~ msgstr "Note d'achat" - -#~ msgid "Enter an optional note to send the customer after purchase." -#~ msgstr "Saisissez une note optionnelle à envoyer au client après l'achat." - -# @ woocommerce -#~ msgid "Menu order" -#~ msgstr "Ordre du menu" - -# @ woocommerce -#~ msgid "Custom ordering position." -#~ msgstr "Ordre personnalisé." - -# @ woocommerce -#~ msgid "Choose a grouped product…" -#~ msgstr "Choix d'un produit groupé…" - -# @ woocommerce -#~ msgid "Grouping" -#~ msgstr "Grouper" - -# @ woocommerce -#~ msgid "Enable reviews" -#~ msgstr "Activer les avis" - -# @ woocommerce -#~ msgid "Product SKU must be unique." -#~ msgstr "L'UGS du produit doit être unique." - -# @ woocommerce -#~ msgid "Use this file" -#~ msgstr "Utiliser ce fichier" - -# @ woocommerce -#~ msgid "Catalog/search" -#~ msgstr "Catalogue/recherche" - -# @ woocommerce -#~ msgid "Catalog visibility:" -#~ msgstr "Visibilité du catalogue : " - -#~ msgid "" -#~ "Define the loops this product should be visible in. The product will " -#~ "still be accessible directly." -#~ msgstr "" -#~ "Définir les boucles dans lequelles ce produit doit être visible. Il sera " -#~ "toujours accessible directement." - -# @ woocommerce -#~ msgid "Enable this option to feature this product." -#~ msgstr "Activer cette option pour mettre en avant ce produit." - -# @ woocommerce -#~ msgid "Featured Product" -#~ msgstr "Produits Mis en Avant" - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "Drop files here" -#~ msgstr "Déposez les fichier ici" - -#~ msgctxt "Uploader: Drop files here - or - Select Files" -#~ msgid "or" -#~ msgstr "ou" - -# @ woocommerce -#~ msgid "Allowed Files" -#~ msgstr "Fichiers autorisés" - -# @ woocommerce -#~ msgid "Are you sure you want to remove this attachment?" -#~ msgstr "Êtes-vous certain de vouloir supprimer cet élément ?" - -#~ msgid "" -#~ "The file you selected exceeds the maximum filesize specified in this " -#~ "installation." -#~ msgstr "" -#~ "Le fichier que vous avez sélectionné excède le poids maximum spécifié " -#~ "dans cette installation." - -# @ woocommerce -#~ msgid "Product Images" -#~ msgstr "Images Produit" - -# @ woocommerce -#~ msgid "Product Short Description" -#~ msgstr "Description courte du produit" - -# @ woocommerce -#~ msgid "Order Data" -#~ msgstr "Données de la commande" - -# @ woocommerce -#~ msgid "" -#~ "Order Items – Note: if you edit quantities or remove items " -#~ "from the order you will need to manually change the item's stock levels." -#~ msgstr "" -#~ "Articles commande – Note : si vous éditez les quantités ou " -#~ "supprimez des articles de la commande, vous devrez manuellement mettre à " -#~ "jour le niveau des stocks." - -# @ woocommerce -#~ msgid "Order Totals" -#~ msgstr "Total de la commande" - -#~ msgid "" -#~ "Downloadable Product Permissions – Note: Permissions for " -#~ "order items will automatically be granted when the order status changes " -#~ "to processing/completed." -#~ msgstr "" -#~ "Permissions de Téléchargement des Articles – Note : Les " -#~ "permissions pour les articles de la commande seront automatiquement " -#~ "accordées quand le status passera de en cours à terminée." - -# @ woocommerce -#~ msgid "Order Actions" -#~ msgstr "Actions sur la commande" - -# @ woocommerce -#~ msgid "Coupon Data" -#~ msgstr "Données Code Promo" - -# @ woocommerce -#~ msgid "Product name" -#~ msgstr "Nom du produit" - -# @ woocommerce -#~ msgid "Allow reviews." -#~ msgstr "Permettre les avis." - -#~ msgid "" -#~ "Allow trackbacks and pingbacks on " -#~ "this page." -#~ msgstr "" -#~ "Autoriser les trackbacks et pingbacks sur cette page. " - -#~ msgid "" -#~ "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" -#~ msgstr "" -#~ "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" - -# @ woocommerce -#~ msgid "Styles" -#~ msgstr "Styles" - -# @ woocommerce -#~ msgid "Primary" -#~ msgstr "Primaire" - -#~ msgid "Call to action buttons/price slider/layered nav UI" -#~ msgstr "" -#~ "Boutons/glissière de prix/interface de navigation pour l'appel à l'action" - -#~ msgid "Secondary" -#~ msgstr "Secondaire" - -#~ msgid "Buttons and tabs" -#~ msgstr "Boutons et onglets" - -# @ woocommerce -# @ woocommerce -#~ msgid "Highlight" -#~ msgstr "Surbrillance" - -#~ msgid "Price labels and Sale Flashes" -#~ msgstr "Etiquettes de prix et ventes flash" - -# @ woocommerce -#~ msgid "Content" -#~ msgstr "Contenu" - -#~ msgid "Your themes page background - used for tab active states" -#~ msgstr "Votre fond de page thèmes - utilisé pour les états onglet actif" - -# @ woocommerce -#~ msgid "Subtext" -#~ msgstr "Sous-texte" - -#~ msgid "Used for certain text and asides - breadcrumbs, small text etc." -#~ msgstr "" -#~ "Utilisé pour certains textes et apartés - fil d'ariane, texte de petite " -#~ "taille, etc.." - -#~ msgid "" -#~ "To edit colours woocommerce/assets/css/woocommerce-base.less " -#~ "and woocommerce.css need to be writable. See the Codex " -#~ "for more information." -#~ msgstr "" -#~ "Pour éditer les couleurs woocommerce/assets/css/woocommerce-base." -#~ "less et woocommerce.css ont besoin d'être accessibles " -#~ "en écriture. Voir le Codex pour plus d'information." - -# @ woocommerce -#~ msgid "Localisation" -#~ msgstr "Localisation" - -#~ msgid "Use informal localisation file if it exists" -#~ msgstr "Utiliser le fichier de traduction informel s'il existe" - -# @ woocommerce -#~ msgid "General Options" -#~ msgstr "Options générales" - -# @ woocommerce -#~ msgid "Base Country/Region" -#~ msgstr "Pays/Région de base" - -# @ woocommerce -#~ msgid "" -#~ "This is the base country for your business. Tax rates will be based on " -#~ "this country." -#~ msgstr "" -#~ "Ceci est le pays de base de votre boutique. Les taux de taxes seront " -#~ "appliqués pour ce pays." - -# @ woocommerce -#~ msgid "Currency" -#~ msgstr "Monnaie" - -# @ woocommerce -#~ msgid "" -#~ "This controls what currency prices are listed at in the catalog and which " -#~ "currency gateways will take payments in." -#~ msgstr "" -#~ "Ceci détermine quelle monnaie est listée dans le catalogue et quelle " -#~ "monnaie de passerelle sera utilisée pour le paiement." - -# @ woocommerce -#~ msgid "US Dollars ($)" -#~ msgstr "Dollars US ($)" - -# @ woocommerce -#~ msgid "Euros (€)" -#~ msgstr "Euros (€)" - -# @ woocommerce -#~ msgid "Pounds Sterling (£)" -#~ msgstr "Livres Sterling (£)" - -# @ woocommerce -#~ msgid "Australian Dollars ($)" -#~ msgstr "Dollars Australiens ($)" - -# @ woocommerce -#~ msgid "Brazilian Real ($)" -#~ msgstr "Real Brésilien ($)" - -# @ woocommerce -#~ msgid "Canadian Dollars ($)" -#~ msgstr "Dollars Canadiens ($)" - -# @ woocommerce -#~ msgid "Czech Koruna (Kč)" -#~ msgstr "Couronne tchèque (Kč)" - -# @ woocommerce -#~ msgid "Hong Kong Dollar ($)" -#~ msgstr "Dollar Hong Kong ($)" - -# @ woocommerce -#~ msgid "Chinese Yuan (¥)" -#~ msgstr "Yen Japonais (¥)" - -# @ woocommerce -#~ msgid "Japanese Yen (¥)" -#~ msgstr "Yen Japonais (¥)" - -# @ woocommerce -#~ msgid "Malaysian Ringgits (RM)" -#~ msgstr "Malaysian Ringgits (RM)" - -# @ woocommerce -#~ msgid "Mexican Peso ($)" -#~ msgstr "Peso Mexicain ($)" - -# @ woocommerce -#~ msgid "New Zealand Dollar ($)" -#~ msgstr "Dollar Nouvelle Zélande ($)" - -# @ woocommerce -#~ msgid "Singapore Dollar ($)" -#~ msgstr "Dollar de Singapour ($)" - -# @ woocommerce -#~ msgid "Turkish Lira (TL)" -#~ msgstr "Turkish Lira (TL)" - -# @ woocommerce -#~ msgid "South African rand (R)" -#~ msgstr "South African rand (R)" - -#~ msgid "Romanian Leu (RON)" -#~ msgstr "Romanian Leu (RON)" - -# @ woocommerce -#~ msgid "Allowed Countries" -#~ msgstr "Pays autorisés" - -# @ woocommerce -#~ msgid "These are countries that you are willing to ship to." -#~ msgstr "Voici les pays où vous voulez vendre." - -# @ woocommerce -#~ msgid "All Countries" -#~ msgstr "Tous les pays" - -# @ woocommerce -#~ msgid "Checkout and Accounts" -#~ msgstr "Commande et Comptes" - -#~ msgid "" -#~ "The following options control the behaviour of the checkout process and " -#~ "customer accounts." -#~ msgstr "" -#~ "Les options suivantes déterminent le comportement du processus de " -#~ "commande et des comptes clients." - -#~ msgid "Enable guest checkout (no account required)" -#~ msgstr "Activer la commande invité (aucun compte requis)" - -# @ woocommerce -#~ msgid "Show order comments section" -#~ msgstr "Afficher la section commentaires de commande" - -#~ msgid "Security" -#~ msgstr "Sécurité" - -#~ msgid "Force secure checkout" -#~ msgstr "Forcer la commande sécurisée" - -#~ msgid "" -#~ "Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)" -#~ msgstr "" -#~ "Forcer le SSL (HTTPS) sur les pages de paiement (un certificat SSL est " -#~ "nécessaire)" - -#~ msgid "Un-force HTTPS when leaving the checkout" -#~ msgstr "Désactiver HTTPS lors du départ des pages de paiement" - -# @ woocommerce -#~ msgid "Enable coupons" -#~ msgstr "Activer les codes promo" - -#~ msgid "Enable coupon form on cart" -#~ msgstr "Activer le formulaire de codes promo sur le panier" - -#~ msgid "Enable coupon form on checkout" -#~ msgstr "Activer le formulaire de codes promo sur la commande" - -#~ msgid "Registration" -#~ msgstr "Inscription" - -# @ woocommerce -#~ msgid "Allow registration on the checkout page" -#~ msgstr "Autoriser les invités à s'inscrire depuis la page commande" - -# @ woocommerce -#~ msgid "Allow registration on the \"My Account\" page" -#~ msgstr "Autoriser les invités à s'inscrire depuis la page \"Mon Compte\"" - -#~ msgid "Register using the email address for the username" -#~ msgstr "Inscription utilisant l'adresse email comme identifiant" - -# @ woocommerce -#~ msgid "Customer Accounts" -#~ msgstr "Compte client" - -#~ msgid "Prevent customers from accessing WordPress admin" -#~ msgstr "Empêcher les clients d'accéder à l'administration WordPress" - -#~ msgid "Clear cart when logging out" -#~ msgstr "Vider le panier lors de la déconnexion" - -#~ msgid "Allow customers to repurchase past orders" -#~ msgstr "" -#~ "Permettre aux clients de re-commander des articles de commandes passées" - -#~ msgid "Styles and Scripts" -#~ msgstr "Styles et Scripts" - -#~ msgid "" -#~ "The following options affect the styling of your store, as well as how " -#~ "certain features behave." -#~ msgstr "" -#~ "Les options suivantes affectent les styles de votre boutique, ainsi que " -#~ "la façon dont certaines caractéristiques se comportent." - -# @ woocommerce -#~ msgid "Styling" -#~ msgstr "Mise en forme" - -# @ woocommerce -#~ msgid "Enable WooCommerce CSS styles" -#~ msgstr "Activer les styles CSS WooCommerce" - -# @ woocommerce -#~ msgid "Store Notice" -#~ msgstr "Notice Boutique" - -# @ woocommerce -#~ msgid "Enable the \"Demo Store\" notice on your site" -#~ msgstr "Activer la notice \"Boutique de Démonstration\" sur votre site" - -#~ msgid "Store Notice Text" -#~ msgstr "Texte de notice de la boutique" - -#~ msgid "Scripts" -#~ msgstr "Scripts" - -#~ msgid "Enable AJAX add to cart buttons on product archives" -#~ msgstr "" -#~ "Activer les boutons AJAX d'ajout au panier sur les listes de produits" - -# @ woocommerce -#~ msgid "Enable WooCommerce lightbox on the product page" -#~ msgstr "Activer la lightbox WooCommerce sur la page produit" - -#~ msgid "Enable enhanced country select boxes" -#~ msgstr "Activer les boites de sélection étendues des pays" - -# @ woocommerce -#~ msgid "Digital Downloads" -#~ msgstr "Téléchargements Numériques" - -#~ msgid "The following options are specific to downloadable products." -#~ msgstr "" -#~ "Les options suivantes sont spécifiques aux produits téléchargeables." - -# @ woocommerce -#~ msgid "File download method" -#~ msgstr "Méthode de téléchargement de fichiers" - -#~ msgid "" -#~ "Forcing downloads will keep URLs hidden, but some servers may serve large " -#~ "files unreliably. If supported, X-Accel-Redirect/ X-" -#~ "Sendfile can be used to serve downloads instead (server requires " -#~ "mod_xsendfile)." -#~ msgstr "" -#~ "Le Forçage des téléchargements laissera les URL cachés, mais certains " -#~ "serveurs peuvent proposer de gros fichiers de façon non fiable. Si " -#~ "supportés, X-Accel-Redirect/ X-Sendfile peuvent " -#~ "être utilisés pour distribuer les téléchargements en remplacement " -#~ "(nécessite mod_xsendfile sur le serveur)." - -#~ msgid "Force Downloads" -#~ msgstr "Forcer le téléchargement" - -#~ msgid "X-Accel-Redirect/X-Sendfile" -#~ msgstr "X-Accel-Redirect/X-Sendfile" - -#~ msgid "Redirect only" -#~ msgstr "Redirection seulement" - -#~ msgid "Access Restrictions" -#~ msgstr "Restrictions d'accès" - -# @ woocommerce -#~ msgid "Must be logged in to download files" -#~ msgstr "Vous devez être identifié pour télécharger des fichiers" - -#~ msgid "This setting does not apply to guest downloads." -#~ msgstr "Ce réglage ne s'applique pas aux téléchargements invité." - -#~ msgid "Grant access to downloadable products after payment" -#~ msgstr "Autoriser l'accès aux produits téléchargeables après le paiement" - -#~ msgid "" -#~ "Turn this option off to only grant access when an order is \"complete\", " -#~ "rather than \"processing\"" -#~ msgstr "" -#~ "Désactivez cette option pour activer l'accès uniquement lorsqu'une " -#~ "commande est \"finalisée\", plutôt que \"en cours\"" - -# @ woocommerce -#~ msgid "Limit quantity" -#~ msgstr "Limiter la quantité" - -#~ msgid "Limit the purchasable quantity of downloadable-virtual items to 1" -#~ msgstr "" -#~ "Limiter la quantité d'achat des produits téléchargeables-virtuels à 1" - -#~ msgid "" -#~ "Note: The shop page has children - child pages will not work if you " -#~ "enable this option." -#~ msgstr "" -#~ "Note : La page boutique a des enfants - Les pages enfant ne " -#~ "fonctionneront pas si vous activez cette option." - -# @ woocommerce -#~ msgid "Page Setup" -#~ msgstr "Paramètres des pages" - -# @ woocommerce -#~ msgid "Shop Base Page" -#~ msgstr "Page de base de la boutique" - -# @ woocommerce -#~ msgid "" -#~ "This sets the base page of your shop - this is where your product archive " -#~ "will be." -#~ msgstr "" -#~ "Ceci détermine la page de départ de votre boutique - c'est l'emplacement " -#~ "où votre archive de produits sera." - -# @ woocommerce -#~ msgid "Base Page Title" -#~ msgstr "Titre de la page de base" - -# @ woocommerce -#~ msgid "" -#~ "This title to show on the shop base page. Leave blank to use the page " -#~ "title." -#~ msgstr "" -#~ "Le titre à afficher sur la page de départ de la boutique. Laisser vide " -#~ "pour utiliser le titre de la page." - -# @ woocommerce -#~ msgid "Terms page ID" -#~ msgstr "Page CGV" - -# @ woocommerce -#~ msgid "" -#~ "If you define a \"Terms\" page the customer will be asked if they accept " -#~ "them when checking out." -#~ msgstr "" -#~ "Si vous définissez une page \"Conditions Générales de Vente\" il sera " -#~ "demandé au client d'accepter ces CGV lors de la commande." - -# @ woocommerce -#~ msgid "Logout link" -#~ msgstr "Lien de déconnexion" - -# @ woocommerce -#~ msgid "Append a logout link to menus containing \"My Account\"" -#~ msgstr "Ajoute un lien de déconnexion aux menus contenant \"Mon compte\"" - -# @ woocommerce -#~ msgid "Permalinks" -#~ msgstr "Permaliens" - -# @ woocommerce -#~ msgid "Product base category" -#~ msgstr "Catégorie Produit" - -# @ woocommerce -#~ msgid "Prepend product permalinks with product category" -#~ msgstr "" -#~ "Préfixer les permaliens produit avec leur catégorie (categorie/" -#~ "produit)" - -# @ woocommerce -#~ msgid "Product base page" -#~ msgstr "Page de base produits" - -# @ woocommerce -#~ msgid "Prepend product permalinks with shop base page (%s)" -#~ msgstr "" -#~ "Préfixer les permaliens produit avec la page de base de la boutique " -#~ "(%s)" - -# @ woocommerce -#~ msgid "Product slug" -#~ msgstr "Slug Produits" - -#~ msgid "" -#~ "Shows in the single product URLs. Leave blank to use the default slug. " -#~ "Can only be used if shop base page isn't prepended." -#~ msgstr "" -#~ "Affichés dans les URL de détail produit. Laisser vide pour utiliser le " -#~ "slug par défaut. Peut uniquement être utilisé si la page de base de la " -#~ "boutique n'est pas préfixée." - -# @ woocommerce -#~ msgid "Taxonomy base page" -#~ msgstr "Page de base de la taxonomie" - -# @ woocommerce -#~ msgid "Prepend shop categories/tags with shop base page (%s)" -#~ msgstr "" -#~ "Préfixer les catégories et mots clés avec la page de base de la boutique " -#~ "(%s)" - -# @ woocommerce -#~ msgid "Product category slug" -#~ msgstr "Slug catégorie produit" - -#~ msgid "" -#~ "Shows in the product category URLs. Leave blank to use the default slug." -#~ msgstr "" -#~ "Affiché dans les URL de catégorie produit. Laisser vide pour utiliser le " -#~ "slug par défaut." - -# @ woocommerce -#~ msgid "Product tag slug" -#~ msgstr "Slug mot clé produit" - -#~ msgid "Shows in the product tag URLs. Leave blank to use the default slug." -#~ msgstr "" -#~ "Affichés dans les URL de mot clé produit. Laisser vide pour utiliser le " -#~ "slug par défaut." - -# @ woocommerce -#~ msgid "" -#~ "The following pages need selecting so that WooCommerce knows where they " -#~ "are. These pages should have been created upon installation of the " -#~ "plugin, if not you will need to create them." -#~ msgstr "" -#~ "Les pages suivantes nécessitent une sélection pour que WooCommerce sache " -#~ "où elles sont. Ces pages doivent avoir été créées lors de l'installation " -#~ "de l'extension, dans le cas contraire vous devez les créer." - -# @ woocommerce -#~ msgid "Page contents: [woocommerce_cart]" -#~ msgstr "Contenu page : [woocommerce_cart]" - -# @ woocommerce -#~ msgid "Page contents: [woocommerce_checkout]" -#~ msgstr "Contenu page : [woocommerce_checkout]" - -# @ woocommerce -#~ msgid "Page contents: [woocommerce_pay] Parent: \"Checkout\"" -#~ msgstr "Contenu page : [woocommerce_pay] Parent : \"Commande\"" - -# @ woocommerce -#~ msgid "Page contents: [woocommerce_thankyou] Parent: \"Checkout\"" -#~ msgstr "Contenu page : [woocommerce_thankyou] Parent : \"Commande\"" - -# @ woocommerce -#~ msgid "Page contents: [woocommerce_my_account]" -#~ msgstr "Contenu page : [woocommerce_my_account]" - -# @ woocommerce -#~ msgid "Page contents: [woocommerce_edit_address] Parent: \"My Account\"" -#~ msgstr "Contenu page : [woocommerce_edit_address] Parent : \"Mon Compte\"" - -# @ woocommerce -#~ msgid "Page contents: [woocommerce_view_order] Parent: \"My Account\"" -#~ msgstr "Contenu page : [woocommerce_view_order] Parent: \"Mon Compte\"" - -# @ woocommerce -#~ msgid "Page contents: [woocommerce_change_password] Parent: \"My Account\"" -#~ msgstr "Contenu page : [woocommerce_change_password] Parent: \"Mon Compte\"" - -# @ woocommerce -#~ msgid "Lost Password Page" -#~ msgstr "Page de mot de passe perdu" - -# @ woocommerce -#~ msgid "Page contents: [woocommerce_lost_password]" -#~ msgstr "Contenu page : [woocommerce_lost_password]" - -# @ woocommerce -#~ msgid "Catalog Options" -#~ msgstr "Options du catalogue" - -# @ woocommerce -#~ msgid "Default product sorting" -#~ msgstr "Tri par défaut des produits" - -# @ woocommerce -#~ msgid "This controls the default sort order of the catalog." -#~ msgstr "Cela détermine l'ordre de tri par défaut du catalogue." - -# @ woocommerce -#~ msgid "Sort alphabetically" -#~ msgstr "Tri alphabétique" - -# @ woocommerce -#~ msgid "Sort by most recent" -#~ msgstr "Tri par le plus récent" - -# @ woocommerce -#~ msgid "Sort by price" -#~ msgstr "Tri par prix" - -# @ woocommerce -#~ msgid "Show subcategories" -#~ msgstr "Afficher les sous-catégories" - -# @ woocommerce -#~ msgid "Show subcategories on category pages" -#~ msgstr "Montrer les sous catégories dans les pages catégorie" - -# @ woocommerce -#~ msgid "Show subcategories on the shop page" -#~ msgstr "Montrer les sous catégories dans la page boutique" - -# @ woocommerce -#~ msgid "When showing subcategories, hide products" -#~ msgstr "Quand les sous catégories sont affichées, cacher les produits" - -#~ msgid "Redirects" -#~ msgstr "Redirections" - -# @ woocommerce -#~ msgid "" -#~ "Redirect to cart after adding a product to the cart (on single product " -#~ "pages)" -#~ msgstr "" -#~ "Rediriger vers le panier après l'ajout d'un produit au panier (sur les " -#~ "pages détail produit)" - -#~ msgid "Redirect to the product page on a single matching search result" -#~ msgstr "" -#~ "Rediriger vers la page produit s'il y a un résultat unique lors d'une " -#~ "recherche" - -# @ woocommerce -#~ msgid "" -#~ "The following options affect the fields available on the edit product " -#~ "page." -#~ msgstr "" -#~ "Les options suivantes déterminent les champs disponibles sur la page " -#~ "d'édition d'un produit." - -# @ woocommerce -#~ msgid "Product fields" -#~ msgstr "Champs produit" - -# @ woocommerce -#~ msgid "Enable the SKU field for products" -#~ msgstr "" -#~ "Activer le champ UGS (Unité de Gestion des Stocks) pour les produits" - -# @ woocommerce -#~ msgid "Enable the weight field for products" -#~ msgstr "Activer le champ poids pour les produits" - -# @ woocommerce -#~ msgid "Enable the dimension fields for products" -#~ msgstr "Activer les champs dimensions pour les produits" - -#~ msgid "Show weight and dimension fields in product attributes tab" -#~ msgstr "" -#~ "Afficher le poids et les dimentions dans l'onglet d'attributs du produit" - -# @ woocommerce -#~ msgid "Weight Unit" -#~ msgstr "Unité de poids" - -# @ woocommerce -#~ msgid "This controls what unit you will define weights in." -#~ msgstr "Cela détermine dans quelle unité vous définirez les poids." - -# @ woocommerce -#~ msgid "kg" -#~ msgstr "Kilos" - -# @ woocommerce -#~ msgid "g" -#~ msgstr "g" - -# @ woocommerce -#~ msgid "lbs" -#~ msgstr "Livres" - -#~ msgid "oz" -#~ msgstr "oz" - -# @ woocommerce -#~ msgid "Dimensions Unit" -#~ msgstr "Unité des dimensions" - -# @ woocommerce -#~ msgid "This controls what unit you will define lengths in." -#~ msgstr "Cela détermine dans quelle unité vous définirez les longueurs." - -# @ woocommerce -#~ msgid "cm" -#~ msgstr "cm" - -#~ msgid "mm" -#~ msgstr "mm" - -# @ woocommerce -#~ msgid "in" -#~ msgstr "pouce" - -#~ msgid "yd" -#~ msgstr "yd" - -# @ woocommerce -#~ msgid "Product Ratings" -#~ msgstr "Notations produit" - -#~ msgid "Enable the rating field on the review form" -#~ msgstr "Activer la notation par étoile sur le formulaire d'avis" - -#~ msgid "Ratings are required to leave a review" -#~ msgstr "La notation est requise pour laisser un avis" - -#~ msgid "Show \"verified owner\" label for customer reviews" -#~ msgstr "" -#~ "Afficher le label \"propriétaire vérifié\" sur les avis consommateurs" - -# @ woocommerce -#~ msgid "Pricing Options" -#~ msgstr "Options de prix" - -#~ msgid "" -#~ "The following options affect how prices are displayed on the frontend." -#~ msgstr "" -#~ "Les options suivantes déterminent la manière dont les prix sont affichés " -#~ "sur le site." - -# @ woocommerce -#~ msgid "Currency Position" -#~ msgstr "Position monnaie" - -# @ woocommerce -#~ msgid "This controls the position of the currency symbol." -#~ msgstr "Cela détermine la position du symbole de monnaie." - -# @ woocommerce -#~ msgid "Left" -#~ msgstr "Gauche" - -# @ woocommerce -#~ msgid "Right" -#~ msgstr "Droite" - -# @ woocommerce -#~ msgid "Left (with space)" -#~ msgstr "Gauche (avec espace)" - -# @ woocommerce -#~ msgid "Right (with space)" -#~ msgstr "Droite (avec espace)" - -# @ woocommerce -#~ msgid "Thousand separator" -#~ msgstr "Séparateur de milliers" - -# @ woocommerce -#~ msgid "This sets the thousand separator of displayed prices." -#~ msgstr "Cela détermine le séparateur de milliers pour les prix affichés." - -# @ woocommerce -#~ msgid "Decimal separator" -#~ msgstr "Séparateur décimal" - -# @ woocommerce -#~ msgid "This sets the decimal separator of displayed prices." -#~ msgstr "Cela détermine le séparateur de décimales pour les prix affichés." - -# @ woocommerce -#~ msgid "Number of decimals" -#~ msgstr "Nombre de décimales" - -# @ woocommerce -#~ msgid "This sets the number of decimal points shown in displayed prices." -#~ msgstr "Cela détermine le nombre de décimales pour les prix affichés." - -#~ msgid "Trailing zeros" -#~ msgstr "Zéros à droite" - -#~ msgid "" -#~ "Remove zeros after the decimal point. e.g. $10.00 becomes " -#~ "$10" -#~ msgstr "" -#~ "Supprimer les zéros après le point décimal. Ex. 10.00€ " -#~ "devient 10€" - -# @ woocommerce -#~ msgid "Image Options" -#~ msgstr "Options d'images" - -# @ woocommerce -#~ msgid "" -#~ "These settings affect the actual dimensions of images in your catalog - " -#~ "the display on the front-end will still be affected by CSS styles. After " -#~ "changing these settings you may need to regenerate your " -#~ "thumbnails." -#~ msgstr "" -#~ "Ces paramètres affectent les dimensions actuelles des images dans votre " -#~ "catalogue - l'affichage sur le site sera encore affecté par les styles " -#~ "CSS. Après avoir changé ces paramètres vous pourrez avoir besoin de régénérer vos vignettes." - -# @ woocommerce -#~ msgid "Catalog Images" -#~ msgstr "Catalogue d'images" - -# @ woocommerce -#~ msgid "This size is usually used in product listings" -#~ msgstr "" -#~ "Cette taille est habituellement utilisée dans les listes de produits." - -# @ woocommerce -#~ msgid "Single Product Image" -#~ msgstr "Image produit détail" - -# @ woocommerce -#~ msgid "This is the size used by the main image on the product page." -#~ msgstr "" -#~ "C'est la taille utilisée pour l'image principale sur la page produit." - -# @ woocommerce -#~ msgid "Product Thumbnails" -#~ msgstr "Vignettes produit" - -# @ woocommerce -#~ msgid "" -#~ "This size is usually used for the gallery of images on the product page." -#~ msgstr "" -#~ "Cette taille est habituellement utilisée pour la galerie d'image sur la " -#~ "page des produits." - -# @ woocommerce -#~ msgid "Inventory Options" -#~ msgstr "Options d'inventaire" - -# @ woocommerce -#~ msgid "Manage stock" -#~ msgstr "Gérer les stocks" - -# @ woocommerce -#~ msgid "Enable stock management" -#~ msgstr "Activer la gestion du stock" - -# @ woocommerce -#~ msgid "Notifications" -#~ msgstr "Notifications" - -# @ woocommerce -#~ msgid "Enable low stock notifications" -#~ msgstr "Activer les notifications de stock faible" - -# @ woocommerce -#~ msgid "Enable out of stock notifications" -#~ msgstr "Activer les notifications de stock épuisé" - -# @ woocommerce -#~ msgid "Low stock threshold" -#~ msgstr "Seuil de stock faible" - -# @ woocommerce -#~ msgid "Out of stock threshold" -#~ msgstr "Seuil de stock épuisé" - -# @ woocommerce -#~ msgid "Out of stock visibility" -#~ msgstr "Visibilité des stocks épuisés" - -# @ woocommerce -#~ msgid "Hide out of stock items from the catalog" -#~ msgstr "Cacher les produits en stock épuisé du catalogue" - -#~ msgid "Stock display format" -#~ msgstr "Format d'affichage du stock" - -#~ msgid "This controls how stock is displayed on the frontend." -#~ msgstr "Ceci détermine la manière dont le stock est affiché sur le site." - -#~ msgid "Always show stock e.g. \"12 in stock\"" -#~ msgstr "Toujours afficher le stock, ex. \"12 en stock\"" - -#~ msgid "" -#~ "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -#~ msgstr "" -#~ "Afficher le stock uniquement lorsqu'il est bas, ex. \"Plus que 2 en stock" -#~ "\" en rempacement de \"En stock\"" - -#~ msgid "Never show stock amount" -#~ msgstr "Ne jamais afficher le niveau de stock" - -# @ woocommerce -#~ msgid "Shipping calculations" -#~ msgstr "Calcul de frais de port" - -# @ woocommerce -#~ msgid "Enable shipping" -#~ msgstr "Activer la livraison" - -# @ woocommerce -#~ msgid "Enable the shipping calculator on the cart page" -#~ msgstr "Activer le calculateur de frais dans la page panier" - -#~ msgid "Hide shipping costs until an address is entered" -#~ msgstr "" -#~ "Masquer les frais de livraison jusqu'à ce qu'une adresse soit renseignée" - -# @ woocommerce -#~ msgid "Shipping method display" -#~ msgstr "Affichage de la méthode de livraison" - -#~ msgid "" -#~ "This controls how multiple shipping methods are displayed on the frontend." -#~ msgstr "" -#~ "Ceci détermine comment les méthodes de livraison multiples sont affichées " -#~ "sur le site." - -#~ msgid "Radio buttons" -#~ msgstr "Boutons radio" - -# @ woocommerce -#~ msgid "Select box" -#~ msgstr "Boite de sélection" - -# @ woocommerce -#~ msgid "Shipping Destination" -#~ msgstr "Destination de la livraison" - -# @ woocommerce -#~ msgid "Only ship to the users billing address" -#~ msgstr "Livrer uniquement à l'adresse de facturation" - -# @ woocommerce -#~ msgid "Ship to billing address by default" -#~ msgstr "Livrer à l'adresse de facturation par défault" - -#~ msgid "Collect shipping address even when not required" -#~ msgstr "Collecter l'adresse de livraison même quand elle n'est pas requise" - -#~ msgid "" -#~ "Installed payment gateways are displayed below. Drag and drop payment " -#~ "gateways to control their display order on the checkout." -#~ msgstr "" -#~ "Vos passerelles de paiement actives sont listées ci-dessous. Cliquez/" -#~ "Deplacez les lignes pour les réordonner pour l'affichage sur la commande." - -# @ woocommerce -#~ msgid "Tax Options" -#~ msgstr "Options des taxes" - -# @ woocommerce -#~ msgid "Tax calculations" -#~ msgstr "Calcul des taxes" - -# @ woocommerce -#~ msgid "Enable taxes and tax calculations" -#~ msgstr "Activer les taxes et le calcul de taxes" - -# @ woocommerce -#~ msgid "Calculate tax based on the customer shipping address" -#~ msgstr "Calcul des taxes basé sur l'adresse de livraison du client" - -#~ msgid "Round tax at subtotal level, instead of rounding per line" -#~ msgstr "" -#~ "Arrondir les taxes au niveau du sous-totaux, plutôt que pour chaque ligne" - -#~ msgid "Display taxes on the cart page" -#~ msgstr "Afficher les taxes sur la page du panier" - -#~ msgid "Display the tax total when tax is %s" -#~ msgstr "Afficher le total des taxes lorsque la taxe est %s." - -# @ woocommerce -#~ msgid "Catalog Prices" -#~ msgstr "Prix catalogue" - -#~ msgid "Prices include tax" -#~ msgstr "Tarifs TTC" - -#~ msgid "Display cart items excluding tax" -#~ msgstr "Afficher les articles du panier H.T." - -#~ msgid "Display cart totals excluding tax" -#~ msgstr "Afficher les totaux du panier en H.T." - -# @ woocommerce -#~ msgid "" -#~ "List additonal tax classes below (1 per line). This is in addition to the " -#~ "default Standard Rate." -#~ msgstr "" -#~ "Listez les classes de taxes additonnelles ci-dessous (1 par ligne). Ceci " -#~ "est un ajout aux Taux Standard." - -#~ msgid "Reduced Rate%sZero Rate" -#~ msgstr "Taux Réduit%sTaux Zéro" - -# @ woocommerce -#~ msgid "Tax rates" -#~ msgstr "Taux de taxes" - -# @ woocommerce -#~ msgid "Email Sender Options" -#~ msgstr "Options d'email de l'expéditeur" - -# @ woocommerce -#~ msgid "" -#~ "The following options affect the sender (email address and name) used in " -#~ "WooCommerce emails." -#~ msgstr "" -#~ "Les options suivantes affectent l'expéditeur (adresse email et nom) " -#~ "utilisé dans les emails WooCommerce." - -# @ woocommerce -#~ msgid "\"From\" name" -#~ msgstr "\"From\" nom" - -# @ woocommerce -#~ msgid "\"From\" email address" -#~ msgstr "\"From\" adresse email" - -# @ woocommerce -#~ msgid "Email template" -#~ msgstr "Modèle d'email" - -# @ woocommerce -#~ msgid "" -#~ "This section lets you customise the WooCommerce emails. Click here to preview your email template. For more " -#~ "advanced control copy woocommerce/templates/emails/ to " -#~ "yourtheme/woocommerce/emails/." -#~ msgstr "" -#~ "Cette section vous laisse la possibilité de personnaliser les emails " -#~ "WooCommerce. Cliquer ici pour " -#~ "prévisualiser votre modèle d'email. Pour davantage de contrôles " -#~ "copiez woocommerce/templates/emails/ dans votretheme/" -#~ "woocommmerce/emails/." - -# @ woocommerce -#~ msgid "Header image" -#~ msgstr "Image d'entête" - -# @ woocommerce -#~ msgid "" -#~ "Enter a URL to an image you want to show in the email's header. Upload " -#~ "your image using the media uploader." -#~ msgstr "" -#~ "Entrer l'URL d'une image que vous souhaitez afficher dans l'entête de " -#~ "l'email. Transférez votre image en utilisant le transfert " -#~ "de médias." - -# @ woocommerce -#~ msgid "Email footer text" -#~ msgstr "Texte de pied de page de l'email" - -# @ woocommerce -#~ msgid "The text to appear in the footer of WooCommerce emails." -#~ msgstr "Le texte à afficher dans le pied de page des emails WooCommerce." - -# @ woocommerce -#~ msgid "Powered by WooCommerce" -#~ msgstr "Propulsé par WooCommerce" - -# @ woocommerce -#~ msgid "Base colour" -#~ msgstr "Couleur de base" - -# @ woocommerce -#~ msgid "" -#~ "The base colour for WooCommerce email templates. Default #557da1." -#~ msgstr "" -#~ "La couleur de base pour les modèles d'emails WooCommerce. Par défaut " -#~ "#557da1." - -# @ woocommerce -#~ msgid "Background colour" -#~ msgstr "Couleur du fond" - -# @ woocommerce -#~ msgid "" -#~ "The background colour for WooCommerce email templates. Default " -#~ "#f5f5f5." -#~ msgstr "" -#~ "La couleur de fond pour les modèles d'emails WooCommerce. Par défaut " -#~ "#f5f5f5." - -# @ woocommerce -#~ msgid "Email body background colour" -#~ msgstr "Couleur de fond du corps de l'email" - -# @ woocommerce -#~ msgid "The main body background colour. Default #fdfdfd." -#~ msgstr "" -#~ "La couleur principale du fond du corps. Par défaut #fdfdfd." - -# @ woocommerce -#~ msgid "Email body text colour" -#~ msgstr "Couleur du texte du corps de l'email" - -# @ woocommerce -#~ msgid "The main body text colour. Default #505050." -#~ msgstr "" -#~ "La couleur principale du texte du corps. Par défaut #505050." - -# @ woocommerce -#~ msgid "Default" -#~ msgstr "Valeur par défaut" - -# @ woocommerce -#~ msgid "Gateway" -#~ msgstr "Passerelle" - -#~ msgid "Gateway ID" -#~ msgstr "ID Passerelle" - -# @ woocommerce -#~ msgid "Shipping Methods" -#~ msgstr "Méthodes d'Expédition" - -#~ msgid "Drag and drop methods to control their display order." -#~ msgstr "" -#~ "Cliquer et déplacer les méthodes pour controler leur ordre d'affichage." - -# @ woocommerce -#~ msgid "Shipping Method" -#~ msgstr "Méthode de livraison" - -# @ woocommerce -#~ msgid "Method ID" -#~ msgstr "ID de la méthode" - -# @ woocommerce -#~ msgid "Tax Rates" -#~ msgstr "Taux de taxe" - -# @ woocommerce -#~ msgid "Export rates" -#~ msgstr "Exporter les taux" - -#~ msgid "Import rates" -#~ msgstr "Importer les taux" - -#~ msgid "" -#~ "Define tax rates for countries and states below. You can also export and " -#~ "import from CSV files." -#~ msgstr "" -#~ "Définissez les taux de taxe pour les pays et états ci-dessous. Vous " -#~ "pouvez également exporter et importer depuis des fichier CSV." - -# @ woocommerce -#~ msgid "Countries/states" -#~ msgstr "Pays/États" - -# @ woocommerce -#~ msgid "Label" -#~ msgstr "Label" - -#~ msgid "" -#~ "Optionally, enter a label for this rate - this will appear in the totals " -#~ "table" -#~ msgstr "" -#~ "Optionnellement, entrez une légende pour ce taux - cela apparaitra dans " -#~ "le tableau des totaux" - -# @ woocommerce -#~ msgid "Rate" -#~ msgstr "Taux" - -#~ msgid "Enter a tax rate (percentage) to 4 decimal places." -#~ msgstr "Entrez un taux de taxe (en pourcentage) à 4 décimales." - -# @ woocommerce -#~ msgid "Compound" -#~ msgstr "Cumulable" - -#~ msgid "" -#~ "Choose whether or not this is a compound rate. Compound tax rates are " -#~ "applied on top of other tax rates." -#~ msgstr "" -#~ "Choisissez si oui ou non il s'agit d'un taux cumulable. Les taux " -#~ "cumulables sont appliqués sur les autres taux de taxe." - -#~ msgid "Choose whether or not this tax rate also gets applied to shipping." -#~ msgstr "Indiquer si cette taxe s'applique ou non aux frais de port." - -# @ woocommerce -#~ msgid "+ Add Tax Rate" -#~ msgstr "+ Ajouter taux de taxe" - -#~ msgid "" -#~ "All matching rates will be applied, and non-compound rates will be summed." -#~ msgstr "" -#~ "Tous les taux correspondants seront appliqués, et les taux non cumulables " -#~ "seront aditionnés." - -#~ msgid "Duplicate selected" -#~ msgstr "Dupliquer les éléments sélectionnés" - -#~ msgid "Delete selected" -#~ msgstr "Supprimer les éléments sélectionnés" - -# @ woocommerce -#~ msgid "Select countries/states…" -#~ msgstr "Sélectionnez des pays/états" - -# @ woocommerce -#~ msgid "US States" -#~ msgstr "États-Unis" - -# @ woocommerce -#~ msgid "EU States" -#~ msgstr "Europe" - -# @ woocommerce -#~ msgid "Standard Rate" -#~ msgstr "Taux standard" - -# @ woocommerce -#~ msgid "Local Tax Rates" -#~ msgstr "Taux de taxe local" - -#~ msgid "" -#~ "Define local tax rates for specific post/zip codes below. You can also " -#~ "export and import from CSV files." -#~ msgstr "" -#~ "Définissez ci-dessous les taux de taxe locale pour des codes postaux " -#~ "spécifiques. Vous pouvez exporter et importer depuis un fichier CSV. " - -# @ woocommerce -#~ msgid "Locations" -#~ msgstr "Emplacements" - -#~ msgid "" -#~ "List (1 per line) postcodes/zips/cities this rate applies to. You may " -#~ "also enter ranges for numeric zip codes. e.g. 12345-12349;23456;" -#~ msgstr "" -#~ "Listez (1 par ligne) les codes postaux auquels s'appliquent ce taux. Vous " -#~ "pouvez également saisir une plage de codes postaux. Ex.: " -#~ "77000-77999;75001;" - -#~ msgid "Duplicate selected rows" -#~ msgstr "Dupliquer les lignes sélectionnées" - -# @ woocommerce -#~ msgid "Select a country/state…" -#~ msgstr "Sélectionnez un Pays/une Région…" - -# @ woocommerce -#~ msgid "Postcodes/zips" -#~ msgstr "Codes postaux" - -#~ msgid "Cities" -#~ msgstr "Villes" - -#~ msgid "List 1 per line" -#~ msgstr "Lister 1 par ligne" - -# @ woocommerce -#~ msgid "Done" -#~ msgstr "Fait" - -# @ woocommerce -#~ msgid "countries/states selected" -#~ msgstr "pays/états sélectionnés" - -# @ woocommerce -#~ msgid "No countries selected" -#~ msgstr "Aucun pays sélectionné" - -#~ msgid "Duplicate the selected rates?" -#~ msgstr "Dupliquer les taux sélectionnés ?" - -# @ woocommerce -#~ msgid "(1 state)" -#~ msgid_plural "(%s states)" -#~ msgstr[0] "(1 état)" -#~ msgstr[1] "(%s états)" - -# @ woocommerce -#~ msgid "and 1 state" -#~ msgid_plural "and %s states" -#~ msgstr[0] "et 1 état" -#~ msgstr[1] "et %s états" - -# @ woocommerce -#~ msgid "1 country" -#~ msgid_plural "%1$s countries" -#~ msgstr[0] "1 pays" -#~ msgstr[1] "%1$s pays" - -# @ woocommerce -#~ msgid "" -#~ "Sorry, we do not have enough \"%s\" in stock to fulfill your order. " -#~ "Please edit your cart and try again. We apologise for any inconvenience " -#~ "caused." -#~ msgstr "" -#~ "Désolé, nous n'avons pas assez de \"%s\" en stock pour honorer votre " -#~ "commande. Veuillez modifier votre panier et essayez de nouveau. Nous " -#~ "sommes désolés pour ce désagrément." - -# @ woocommerce -#~ msgid "Sorry, this product cannot be purchased." -#~ msgstr "Désolé, ce produit ne peut pas être acheté." - -# @ woocommerce -#~ msgid "Invalid coupon." -#~ msgstr "Code Promo non valide" - -# @ woocommerce -#~ msgid "Discount code already applied!" -#~ msgstr "Code promo déjà appliqué !" - -# @ woocommerce -#~ msgid "Discount code applied successfully." -#~ msgstr "Code promo appliqué avec succès." - -# @ woocommerce -#~ msgid "Customer IP Address" -#~ msgstr "Adresse IP du client" - -# @ woocommerce -#~ msgid "Customer UA" -#~ msgstr "UA Client" - -# @ woocommerce -#~ msgid "Coupon Code Used: %s" -#~ msgstr "Code promo utilisé : %s" - -# @ woocommerce -#~ msgid "Palau" -#~ msgstr "Palau" - -#~ msgid "US Armed Forces" -#~ msgstr "Forces Armées Américaines" - -# @ woocommerce -#~ msgid "Americas" -#~ msgstr "Americas" - -# @ woocommerce -#~ msgid "Europe" -#~ msgstr "Europe" - -# @ woocommerce -#~ msgid "Pacific" -#~ msgstr "Pacific" - -#~ msgid "Town/District" -#~ msgstr "Ville/Quartier" - -# @ woocommerce -#~ msgid "Postcode/Zip" -#~ msgstr "Code Postal" - -# @ woocommerce -#~ msgid "Town/City" -#~ msgstr "Ville" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "First Name" -#~ msgstr "Prénom" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Last Name" -#~ msgstr "Nom" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Company (optional)" -#~ msgstr "Entreprise (optionnel)" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Address" -#~ msgstr "Adresse" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Address 2 (optional)" -#~ msgstr "Adresse 2 (optionnel)" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Town/City" -#~ msgstr "Ville" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Postcode/Zip" -#~ msgstr "Code Postal" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Country" -#~ msgstr "Pays" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "State/County" -#~ msgstr "État/Pays" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Email Address" -#~ msgstr "Adresse email" - -# @ woocommerce -#~ msgctxt "placeholder" -#~ msgid "Phone" -#~ msgstr "Tel" - -# @ woocommerce -#~ msgctxt "Relating to tax" -#~ msgid "N/A" -#~ msgstr "N/A" - -# @ woocommerce -#~ msgid "This function needs to be overridden by your payment gateway class." -#~ msgstr "" -#~ "Cette fonction doit être remplacée par votre classe de passerelle de " -#~ "paiement." - -#~ msgid "" -#~ "Customer invoice emails are sent when you click the \"send invoice\" " -#~ "button when editing an order." -#~ msgstr "" -#~ "Les emails de facture client sont expédiés lorsque vous cliquez le bouton " -#~ "\"envoyer facture\" depuis l'édition d'une commande." - -#~ msgid "Password Reset Instructions for {blogname}" -#~ msgstr "Instructions de réinitialisation de mot de passe pour {blogname}" - -# @ woocommerce -#~ msgid "Your bank may require this for international payments" -#~ msgstr "Votre banque peut le demander pour les règlements internationaux" - -#~ msgid "" -#~ "Increase your social media exposure by 10 percent! ShareYourCart helps " -#~ "you get more customers by motivating satisfied customers to talk with " -#~ "their friends about your products. For help with ShareYourCart view the " -#~ "documentation." -#~ msgstr "" -#~ "Augmentez votre présence en réseau social de 10 pourcents ! ShareYourCart " -#~ "vous aide à obtenir plus de clients en motivant les clients satisfaits à " -#~ "parler à leurs amis de vos produits. Pour une aide sur ShareYourCart, " -#~ "voir la documentation." - -#~ msgid "Please complete all fields." -#~ msgstr "" -#~ "Veuillez compléter tous les champs.Veuillez compléter tous les champs." - -# @ woocommerce -#~ msgid "Create a ShareYourCart account" -#~ msgstr "Créer un compte ShareYourCart" - -# @ woocommerce -#~ msgid "Domain" -#~ msgstr "Domaine" - -#~ msgid "I agree to the ShareYourCart terms and conditions" -#~ msgstr "" -#~ "Je suis d'accord avec les termes et conditions de " -#~ "ShareYourCart" - -# @ woocommerce -#~ msgid "Create Account" -#~ msgstr "Créer un Compte" - -#~ msgid "Recover your ShareYourCart account" -#~ msgstr "Retrouvez votre compte ShareYourCart" - -# @ woocommerce -#~ msgid "Email me my details" -#~ msgstr "M'envoyer mes infos par email" - -#~ msgid "Configure ShareYourCart" -#~ msgstr "Configurez ShareYourCart" - -#~ msgid "" -#~ "You can choose how much of a discount to give (in fixed amount, " -#~ "percentage, or free shipping) and to which social media channels it " -#~ "should it be applied. You can also define what the advertisement should " -#~ "say, so that it fully benefits your sales." -#~ msgstr "" -#~ "Vous pouvez choisir combien de remise donner (en montant fixe, " -#~ "pourcentage ou livraison gratuite) et sur quel réseau social cela doit " -#~ "être appliqué. Vous pouvez définir ce que la publicité doit dire, aussi " -#~ "c'est tous bénéfices pour vos ventes." - -#~ msgid "Enable ShareYourCart integration" -#~ msgstr "Activer l'intégration ShareYourCart" - -#~ msgid "Client ID" -#~ msgstr "ID Client" - -#~ msgid "Get your client ID by creating a ShareYourCart account." -#~ msgstr "Obtenez votre ID client en créant votre compte ShareYourCart." - -#~ msgid "App Key" -#~ msgstr "Clé App" - -#~ msgid "Get your app key by creating a ShareYourCart account." -#~ msgstr "Obtenez votre clé en créant un compte ShareYourCart." - -# @ woocommerce -#~ msgid "Email address" -#~ msgstr "Adresse email" - -#~ msgid "The email address you used to sign up for ShareYourCart." -#~ msgstr "L'email que vous avez utilisé pour vous inscrire sur ShareYourCart." - -#~ msgid "Show button by default on:" -#~ msgstr "Afficher le bouton par défaut sur : " - -# @ woocommerce -#~ msgid "Product page" -#~ msgstr "Page produit" - -# @ woocommerce -#~ msgid "Cart page" -#~ msgstr "Page panier" - -#~ msgid "Select a style for your share buttons" -#~ msgstr "Sélectionnez un style pour vos boutons de partage" - -# @ woocommerce -#~ msgid "Standard Button" -#~ msgstr "Bouton standard" - -# @ woocommerce -#~ msgid "Custom HTML" -#~ msgstr "HTML personnalisé" - -#~ msgid "Button skin" -#~ msgstr "Thème bouton" - -#~ msgid "Select a skin for your share buttons" -#~ msgstr "Sélectionnez un thème pour vos boutons de partage" - -# @ woocommerce -#~ msgid "Orange" -#~ msgstr "Orange" - -# @ woocommerce -#~ msgid "Blue" -#~ msgstr "Bleu" - -# @ woocommerce -#~ msgid "Light" -#~ msgstr "Clair" - -# @ woocommerce -#~ msgid "Dark" -#~ msgstr "Foncé" - -# @ woocommerce -#~ msgid "Button position" -#~ msgstr "Position bouton" - -#~ msgid "Where should the button be positioned?" -#~ msgstr "Où le bouton doit-il être positionné ?" - -# @ woocommerce -#~ msgid "Normal" -#~ msgstr "Normal" - -# @ woocommerce -#~ msgid "Floating" -#~ msgstr "Flottant" - -#~ msgid "HTML for the button" -#~ msgstr "HTML pour le bouton" - -#~ msgid "Enter the HTML code for your custom button." -#~ msgstr "Entrez le code HTML pour votre bouton personnalisé." - -# @ woocommerce -#~ msgid "Enter a cost per order, e.g. 5.00. Leave blank to disable." -#~ msgstr "" -#~ "Entrez un coût par commande, ex. 5.00. Laissez vide pour désactiver." - -# @ woocommerce -#~ msgid "" -#~ "Users will need to spend this amount to get free shipping. Leave blank to " -#~ "disable." -#~ msgstr "" -#~ "Les utilisateurs auront besoin de dépenser cette somme pour obtenir la " -#~ "livraison gratuite. Laisser vide pour désactiver." - -#~ msgid "Free shipping requires a free shipping coupon" -#~ msgstr "La livraison gratuite nécessite un code promo de livraison gratuite" - -# @ woocommerce -#~ msgid "" -#~ "Users will need to enter a valid free shipping coupon code to use this " -#~ "method. If a coupon is used, the minimum order amount will be ignored." -#~ msgstr "" -#~ "Les utilisateurs devront saisir un code promo valide de frais de port " -#~ "gratuits pour utiliser cette méthode. Si un code promo est utilisé, le " -#~ "montant minimum de commande sera ignoré." - -#~ msgid "Free Shipping - does what it says on the tin." -#~ msgstr " " - -#~ msgid "incl. " -#~ msgstr "incl. " - -# @ woocommerce -#~ msgid "(taxes estimated for %s)" -#~ msgstr "(taxes estimées à %s)" - -# @ woocommerce -#~ msgid "" -#~ "No shipping methods were found; please recalculate your shipping and " -#~ "enter your state/county and zip/postcode to ensure their are no other " -#~ "available methods for your location." -#~ msgstr "" -#~ "Aucune méthode d'expédition n'a été trouvée; veuillez recalculer votre " -#~ "livraison et saisir votre pays et code postal pour s'assurer qu'il n'y a " -#~ "pas d'autre méthode d'expédition pour votre région." - -# @ woocommerce -#~ msgid "Already registered?" -#~ msgstr "Déjà Inscrit?" - -# @ woocommerce -#~ msgid "Please fill in your details above to see available shipping methods." -#~ msgstr "" -#~ "Veuillez entrer une adresse de livraison ci-haut pour voir les modes " -#~ "d'expédition disponibles." - -# @ woocommerce -#~ msgid "Order Subtotal" -#~ msgstr "Sous-total de la commande" - -# @ woocommerce -#~ msgid "I accept the" -#~ msgstr "J'accepte les " - -# @ woocommerce -#~ msgid "You have not set up a billing address yet." -#~ msgstr "Vous n'avez pas défini d'adresse de facturation." - -# @ woocommerce -#~ msgid "You have not set up a shipping address yet." -#~ msgstr "Vous n'avez pas défini d'adresse de facturation." - -# @ woocommerce -#~ msgid "You have no recent orders." -#~ msgstr "Vous n'avez pas de commande récente." - -# @ woocommerce -#~ msgid "Track\"" -#~ msgstr "Suivi\"" - -# @ woocommerce -#~ msgid "Tags:" -#~ msgstr "Mots-Clés :" - -#~ msgid "M jS Y" -#~ msgstr "j M Y" - -#~ msgid "attente" -#~ msgstr "attente" - -#~ msgid "échouée" -#~ msgstr "échouée" - -#~ msgid "en attente" -#~ msgstr "en attente" - -# @ woocommerce -#~ msgid "en cours" -#~ msgstr "en cours" - -#~ msgid "terminée" -#~ msgstr "terminée" - -#~ msgid "recréditée" -#~ msgstr "recréditée" - -#~ msgid "annulée" -#~ msgstr "annulée" - -#~ msgid "Please, provide an attribute name, slug and type." -#~ msgstr "Veuillez fournir un nom, slug et type d'attibut." - -#~ msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -#~ msgstr "" -#~ "Le slug \"%s\" est trop long (28 caractères max). Veuillez le raccourcir." - -#~ msgid "" -#~ "Slug “%s” is not allowed because it is a reserved term. Change it, please." -#~ msgstr "" -#~ "Le slug \"%s\" n'est pas autorisé car c'est un terme réservé. Veuillez le " -#~ "changer." - -#~ msgid "Slug “%s” is already in use. Change it, please." -#~ msgstr "Le slug \"%s\" est déjà utilisé. Veuillez le changer." - -#~ msgid "Sold" -#~ msgstr "Vendu" - -#~ msgid "Earned" -#~ msgstr "Gagné" - -# @ woocommerce -#~ msgid "" -#~ "Are you sure you want to remove the selected items? If you have " -#~ "previously reduced this item's stock, or this order was submitted by a " -#~ "customer, you will need to manually restore the item's stock." -#~ msgstr "" -#~ "Etes-vous certain de vouloir supprimer ces articles ? Si vous avez " -#~ "précédemment réduit le stock de cet article, ou bien si cette commande a " -#~ "été envoyée par un client, vous devrez manuellement restaurer le stock de " -#~ "cet article." - -# @ woocommerce -#~ msgid "Remove this item meta?" -#~ msgstr "Supprimer le méta de cet article ?" - -#~ msgid "Calculate totals based on order items, discounts, and shipping?" -#~ msgstr "" -#~ "Calculer les totaux basés sur l'ordre des articles, les remises, et la " -#~ "livraison ?" - -#~ msgid "" -#~ "These settings control the permalinks used for products. These settings " -#~ "only apply when not using \"default\" permalinks above." -#~ msgstr "" -#~ "Ces paramètres controlent les permaliens utilisés pour les produits. Ces " -#~ "paramètres s'appliquent uniquement lorsque les permaliens par " -#~ "défaut ne sont pas utilisés." - -# @ woocommerce -#~ msgctxt "default-slug" -#~ msgid "shop" -#~ msgstr "boutique" - -# @ woocommerce -#~ msgctxt "default-slug" -#~ msgid "product" -#~ msgstr "produit" - -# @ woocommerce -#~ msgid "Shop base" -#~ msgstr "Base de la boutique" - -# @ woocommerce -#~ msgid "Shop base with category" -#~ msgstr "Base de la boutique avec catégorie" - -# @ woocommerce -#~ msgid "Custom Base" -#~ msgstr "Base personnalisée" - -#~ msgid "" -#~ "Enter a custom base to use. A base must be set or " -#~ "WordPress will use default instead." -#~ msgstr "" -#~ "Entrez une base personnalisé à utiliser. Une base doit " -#~ "être paramétrée ou WordPress utilisera la valeur par défault." - -# @ woocommerce -#~ msgid "Product permalink base" -#~ msgstr "Base permalien produit" - -# @ woocommerce -#~ msgid "Product category base" -#~ msgstr "Base catégorie produit" - -# @ woocommerce -#~ msgid "Product tag base" -#~ msgstr "Base mot clé produit" - -# @ woocommerce -#~ msgid "Product attribute base" -#~ msgstr "Base attribut produit" - -# @ woocommerce -#~ msgid "Discounts by coupon" -#~ msgstr "Remises par code promo" - -# @ woocommerce -#~ msgid "Total orders containing coupons" -#~ msgstr "Total des commandes contenant des codes promo" - -#~ msgid "Percent of orders containing coupons" -#~ msgstr "Pourcentage de commandes contenant des codes promo" - -#~ msgid "Total coupon discount" -#~ msgstr "Total de remise Codes promo" - -#~ msgid "Most popular coupons" -#~ msgstr "Codes promo les plus populaires" - -#~ msgid "Used 1 time" -#~ msgid_plural "Used %d times" -#~ msgstr[0] "Utilisé 1 fois" -#~ msgstr[1] "Utilisé %d fois" - -# @ woocommerce -#~ msgid "No coupons found" -#~ msgstr "Aucun code promo trouvé" - -# @ woocommerce -#~ msgid "Greatest discount amount" -#~ msgstr "Quantité des plus grandes remises" - -# @ woocommerce -#~ msgid "Discounted %s" -#~ msgstr "Remisé %s" - -# @ woocommerce -#~ msgid "Discount average" -#~ msgstr "Remise moyenne" - -# @ woocommerce -#~ msgid "Discount median" -#~ msgstr "Remise médiane" - -#~ msgid "Monthly discounts by coupon" -#~ msgstr "Remises mensuel par code promo" - -#~ msgid "Please include this information when requesting support:" -#~ msgstr "" -#~ "Veuillez inclure cette information lorsque vous contactez le support :" - -# @ woocommerce -#~ msgid "Download System Report File" -#~ msgstr "Téléchargé le Fichier de Report Système" - -#~ msgid "Environment" -#~ msgstr "Environnement" - -# @ woocommerce -#~ msgid "WC Version" -#~ msgstr "Version WC" - -#~ msgid "WC Database Version" -#~ msgstr "WC Version Base de Données" - -#~ msgid "WP Version" -#~ msgstr "Version WP" - -#~ msgid "Web Server Info" -#~ msgstr "Infos Serveur Web" - -#~ msgid "MySQL Version" -#~ msgstr "Version MySQL" - -#~ msgid "PHP Post Max Size" -#~ msgstr "Poids Max Post PHP" - -#~ msgid "PHP Time Limit" -#~ msgstr "Limite d'exécution PHP" - -#~ msgid "SOAP Client" -#~ msgstr "SOAP Client" - -# @ woocommerce -#~ msgid "Your server has the SOAP Client class enabled." -#~ msgstr "Votre serveur a la classe SOAP Client activée." - -#~ msgid "" -#~ "Your server does not have the SOAP Client class " -#~ "enabled - some gateway plugins which use SOAP may not work as expected." -#~ msgstr "" -#~ "Votre serveur n'a pas la classe SOAP Client activée - " -#~ "certaines extensions de passerelles qui utilisent SOAP peuvent ne pas " -#~ "fonctionner comme prévu." - -#~ msgid "WP Remote Post" -#~ msgstr "WP Publication Distante" - -#~ msgid "Plugins" -#~ msgstr "Extensions" - -#~ msgid "Installed Plugins" -#~ msgstr "Extensions installées" - -# @ woocommerce -#~ msgid "WC Pages" -#~ msgstr "Pages WC" - -# @ woocommerce -#~ msgid "Shop Base" -#~ msgstr "Base Boutique" - -#~ msgid "Thanks" -#~ msgstr "Merci" - -# @ woocommerce -#~ msgid "Page does not exist" -#~ msgstr "Page inexistante" - -#~ msgid "WC Taxonomies" -#~ msgstr "Taxonomies WC" - -# @ woocommerce -#~ msgid "Product Types" -#~ msgstr "Types de produit" - -# @ woocommerce -#~ msgid "WC Transients" -#~ msgstr "Données temporaires WC" - -#~ msgid "Clear transients" -#~ msgstr "Effacer les données temporaires" - -# @ woocommerce -#~ msgid "Expired Transients" -#~ msgstr "Données temporaires expirées" - -#~ msgid "Clear expired transients" -#~ msgstr "Effacer les données temporaires expirées" - -#~ msgid "This tool will clear ALL expired transients from Wordpress." -#~ msgstr "Cet outil effacera TOUTES les données temporaires de WordPress." - -# @ woocommerce -#~ msgid "Term counts" -#~ msgstr "Comptes des termes" - -# @ woocommerce -#~ msgid "Recount terms" -#~ msgstr "Recount terms" - -#~ msgid "" -#~ "This tool will recount product terms - useful when changing your settings " -#~ "in a way which hides products from the catalog." -#~ msgstr "" -#~ "Cet outil recomptera les termes produit - utile lorsque vous changez vos " -#~ "paramètres d'une manière qui cache les produits du catalogue." - -#~ msgid "Reset capabilities" -#~ msgstr "Réinitialiser les capacités" - -# @ woocommerce -#~ msgid "%d Transients Rows Cleared" -#~ msgstr "%d ligne de données temporaires effacés" - -#~ msgid "Terms successfully recounted" -#~ msgstr "Termes recomptés avec succès" - -#~ msgid "Display type" -#~ msgstr "Type d'affichage" - -# @ woocommerce -#~ msgid "Subcategories" -#~ msgstr "Sous-catégories" - -#~ msgid "Both" -#~ msgstr "Ensemble" - -# @ woocommerce -#~ msgid "Choose an image" -#~ msgstr "Choisir une image" - -# @ woocommerce -#~ msgid "Use image" -#~ msgstr "Utiliser l’image" - -# @ woocommerce -#~ msgid "Completed Orders" -#~ msgstr "Commandes terminées" - -#~ msgid "" -#~ "Tax rates need to be defined with columns in a specific order (10 " -#~ "columns). Click here to download a sample." -#~ msgstr "" -#~ "Les taux de taxe ont besoin d'être définis avec des colonnes dans un " -#~ "ordre spécifique (10 colonnes). Cliquez ici pour " -#~ "télécharger un exemple." - -#~ msgid "" -#~ "Data Update Required – We just need to update your " -#~ "install to the latest version" -#~ msgstr "" -#~ "Mise à jour Requise – Nous avons simplement besoin " -#~ "de mettre à jour votre installation pour la dernière version" - -# @ woocommerce -#~ msgid "Run the updater" -#~ msgstr "Lancer l'actualisation" - -#~ msgid "" -#~ "It is strongly recommended that you backup your database before " -#~ "proceeding. Are you sure you wish to run the updater now?" -#~ msgstr "" -#~ "Il est fortement recommandé que vous sauvegardiez votre base de données " -#~ "avant de procéder. Etes-vous certain de vouloir lancer la mise à jour " -#~ "maintenant ?" - -#~ msgid "" -#~ "WooCommerce has been updated – You're ready to " -#~ "continue selling :)" -#~ msgstr "" -#~ "WooCommerce a été mis à jour – Vous êtes prêt à " -#~ "continuer vos ventes :-)" - -#~ msgid "Edit this item" -#~ msgstr "Editer cet article" - -# @ woocommerce -#~ msgid "Toggle featured" -#~ msgstr "Basculer en mise en avant" - -#~ msgid "yes" -#~ msgstr "oui" - -#~ msgid "no" -#~ msgstr "non" - -# @ woocommerce -#~ msgid "Insert into product" -#~ msgstr "Insérer dans le produit" - -# @ woocommerce -#~ msgid "Uploaded to this product" -#~ msgstr "Transférer à ce produit" - -# @ woocommerce -#~ msgid "Usage / Limit" -#~ msgstr "Usage / Limite" - -# @ woocommerce -#~ msgid "Edit coupon" -#~ msgstr "Modifier code promo" - -#~ msgid "%s / %s" -#~ msgstr "%s / %s" - -#~ msgid "%s / ∞" -#~ msgstr "%s / ∞" - -# @ woocommerce -#~ msgid "Fee Name" -#~ msgstr "Nom des frais" - -# @ woocommerce -#~ msgid "Tax Rate:" -#~ msgstr "Taux de taxe :" - -# @ woocommerce -#~ msgid "Sales Tax:" -#~ msgstr "Taxe des ventes :" - -# @ woocommerce -#~ msgid "Regular Price:" -#~ msgstr "Prix régulier :" - -#~ msgid "Enter a price for this variation (required)" -#~ msgstr "Entrez un tarif pour cette variation (requis)" - -# @ woocommerce -#~ msgid "Choose a file" -#~ msgstr "Choisir un fichier" - -#~ msgid "Insert file URL" -#~ msgstr "Insérer l'URL du fichier" - -# @ woocommerce -#~ msgid "Coupon description" -#~ msgstr "Description code promo" - -#~ msgid "Optionally enter a description for this coupon for your reference." -#~ msgstr "" -#~ "Optionnellement entrez une description pour ce code promo pour usage " -#~ "interne." - -# @ woocommerce -#~ msgid "Enter an amount or percentage e.g. 2.99 or 15%" -#~ msgstr "Entrez un montant ou un pourcentage ex.: 2.99 ou 15%" - -#~ msgid "" -#~ "Check this box if the coupon grants free shipping. The free shipping method must be enabled with the \"must use coupon\" " -#~ "setting checked." -#~ msgstr "" -#~ "Cocher cette case si le code promo active la gratuité de livraison. La livraison gratuite doit être activée avec le paramètre " -#~ "\"doit utiliser un code promo\" coché." - -# @ woocommerce -#~ msgid "" -#~ "Check this box if the coupon cannot be used in conjunction with other " -#~ "coupons." -#~ msgstr "" -#~ "Cochez cette case si le code promo ne peut être utilisé conjointement " -#~ "avec d'autres codes promo." - -# @ woocommerce -#~ msgid "" -#~ "Check this box if the coupon should be applied before calculating cart " -#~ "tax." -#~ msgstr "" -#~ "Cochez cette case si le code promo doit être appliqué avant le calcul de " -#~ "taxe du panier." - -# @ woocommerce -#~ msgid "Exclude sale items" -#~ msgstr "Exclure les articles en promo" - -#~ msgid "" -#~ "Check this box if the coupon should not apply to items on sale. Per-item " -#~ "coupons will only work if the item is not on sale. Per-cart coupons will " -#~ "only work if there are no sale items in the cart." -#~ msgstr "" -#~ "Cochez cette case si le code promo ne doit pas être appliqué aux articles " -#~ "en promo. Les codes promo par article fonctionneront uniquement si " -#~ "l'article n'est pas en promo. Les codes promos par panier ne " -#~ "fonctionneront uniquement si il n'y a pas d'article en promo dans le " -#~ "panier." - -# @ woocommerce -#~ msgid "Exclude products" -#~ msgstr "Exclure les produits" - -# @ woocommerce -#~ msgid "Exclude categories" -#~ msgstr "Exclure les catégories" - -# @ woocommerce -#~ msgid "Customer emails" -#~ msgstr "Emails client" - -# @ woocommerce -#~ msgid "How many times this coupon can be used before it is void." -#~ msgstr "" -#~ "Combien de fois ce code promo peut il être utilisé avant de ne plus être " -#~ "valide." - -# @ woocommerce -#~ msgid "The date this coupon will expire, YYYY-MM-DD." -#~ msgstr "La date d'expiration du code promo, AAAA-MM-JJ." - -#~ msgid "" -#~ "Coupon code already exists - customers will use the latest coupon with " -#~ "this code." -#~ msgstr "" -#~ "Le code promo existe déjà - les clients utiliserons le dernier code promo " -#~ "correspondant." - -# @ woocommerce -#~ msgid "Order number" -#~ msgstr "Numéro de commande" - -# @ woocommerce -#~ msgid "Customer IP:" -#~ msgstr "IP client :" - -# @ woocommerce -#~ msgid "General Details" -#~ msgstr "Détails généraux" - -#~ msgid "Line subtotals are before pre-tax discounts, totals are after." -#~ msgstr "" -#~ "Les lignes sous-totaux sont avant les remises pre-tax, les totaux sont " -#~ "après." - -# @ woocommerce -#~ msgid "Delete Lines" -#~ msgstr "Supprimer lignes" - -# @ woocommerce -#~ msgid "Stock Actions" -#~ msgstr "Actions sur le Stock" - -# @ woocommerce -#~ msgid "Reduce Line Stock" -#~ msgstr "Réduire Ligne Stock" - -# @ woocommerce -#~ msgid "Increase Line Stock" -#~ msgstr "Augmenter Ligne Stock" - -#~ msgid "Apply" -#~ msgstr "Appliquer" - -# @ woocommerce -#~ msgid "Add fee" -#~ msgstr "Ajouter frais" - -#~ msgid "Discounts before tax - calculated by comparing subtotals to totals." -#~ msgstr "" -#~ "Remises avant taxe - calculé par comparaison entre les sous totaux et les " -#~ "totaux." - -#~ msgid "Discounts after tax - user defined." -#~ msgstr "Remises après taxe - défini par l'utilisateur." - -# @ woocommerce -#~ msgid "Label:" -#~ msgstr "Label :" - -# @ woocommerce -#~ msgid "Cost:" -#~ msgstr "Coût :" - -# @ woocommerce -#~ msgid "Method:" -#~ msgstr "Méthode:" - -#~ msgid "Total tax for line items + fees." -#~ msgstr "Taxe total par ligne d'articles + frais." - -# @ woocommerce -#~ msgid "Calc taxes" -#~ msgstr "Calcul taxes" - -# @ woocommerce -#~ msgid "Calc totals" -#~ msgstr "Calcul totaux" - -#~ msgid "Toggle "Enabled"" -#~ msgstr "Basculer "Activé"" - -#~ msgid "Toggle "Downloadable"" -#~ msgstr "Basculer "Téléchargeable"" - -#~ msgid "Toggle "Virtual"" -#~ msgstr "Basculer "Virtuel"" - -# @ woocommerce -#~ msgid "Delete all variations" -#~ msgstr "Supprimer toutes les variations" - -# @ woocommerce -#~ msgid "Go" -#~ msgstr "Aller" - -# @ woocommerce -#~ msgid "Set variation image" -#~ msgstr "Définir l’image de la variation" - -# @ woocommerce -#~ msgid "Linked Products" -#~ msgstr "Produits liés" - -# @ woocommerce -#~ msgid "Sold Individually" -#~ msgstr "Vendu séparément" - -#~ msgid "" -#~ "Enable this to only allow one of this item to be bought in a single order" -#~ msgstr "" -#~ "Activer cette option pour uniquement permettre un de ces articles d'être " -#~ "acheté en une seule commande" - -# @ woocommerce -#~ msgid "Save attributes" -#~ msgstr "Sauvegarder les attributs" - -# @ woocommerce -#~ msgid "Set this option to make this product part of a grouped product." -#~ msgstr "" -#~ "Activer cette option pour faire de ce produit une partie d'un produit " -#~ "groupé." - -# @ woocommerce -#~ msgid "Delete image" -#~ msgstr "Supprimer l’image" - -# @ woocommerce -#~ msgid "Add product gallery images" -#~ msgstr "Ajouter des images à la galerie produit" - -# @ woocommerce -#~ msgid "Add Images to Product Gallery" -#~ msgstr "Ajouter des images à la galerie produit" - -# @ woocommerce -#~ msgid "Add to gallery" -#~ msgstr "Ajouter à la galerie" - -# @ woocommerce -#~ msgid "Product Gallery" -#~ msgstr "Galerie produit" - -# @ woocommerce -#~ msgid "Order Items" -#~ msgstr "Articles de la commande" - -# @ woocommerce -#~ msgid "" -#~ "Note: if you edit quantities or remove items from the order you will need " -#~ "to manually update stock levels." -#~ msgstr "" -#~ "Note : si vous éditez les quantités ou supprimez des articles de la " -#~ "commande, vous devrez manuellement mettre à jour le niveau des stocks." - -#~ msgid "Downloadable Product Permissions" -#~ msgstr "Permissions produit téléchargeable" - -#~ msgid "" -#~ "Note: Permissions for order items will automatically be granted when the " -#~ "order status changes to processing/completed." -#~ msgstr "" -#~ "Note : Les permissions pour les articles de la commande seront " -#~ "automatiquement accordées quand le status passera de en cours à terminée." - -#~ msgid "Use informal localisation for %s" -#~ msgstr "Utiliser la localisation informel pour %s" - -# @ woocommerce -#~ msgid "Enable WooCommerce lightbox" -#~ msgstr "Activer la lightbox WooCommerce" - -#~ msgid "" -#~ "On the product details page, product gallery images will open in a " -#~ "lightbox. The Add Review form will open in a modal window" -#~ msgstr "" -#~ "Su la page détail produit, les images de la gallerie s'ouvriront dans une " -#~ "lightbox. Le formulaire d'ajout d'avis s'ouvrira dans une fenêtre modale" - -# @ woocommerce -#~ msgid "File Download Method" -#~ msgstr "Méthode de téléchargement de fichiers" - -# @ woocommerce -#~ msgid "Limit Quantity" -#~ msgstr "Quantité limite" - -#~ msgid "" -#~ "Set up core WooCommerce pages here, for example the base page. The base " -#~ "page can also be used in your %sproduct permalinks%s." -#~ msgstr "" -#~ "Paramétrez les pages du coeur de WooCommerce ici, par exemple la page de " -#~ "base. La page de base peut également être utilisée dans votre %sproduct " -#~ "permalinks%s." - -# @ woocommerce -#~ msgid "Terms Page ID" -#~ msgstr "Page CGV" - -# @ woocommerce -#~ msgid "Page contents: [woocommerce_lost_password] Parent: \"My Account\"" -#~ msgstr "Contenus page : [woocommerce_lost_password] Parent : \"Mon Compte\"" - -# @ woocommerce -#~ msgid "Default Product Sorting" -#~ msgstr "Tri par défaut des produits" - -# @ woocommerce -#~ msgid "Default sorting (custom ordering + name)" -#~ msgstr "Tri par défaut (ordre personnalisé + nom)" - -#~ msgid "Popularity (sales)" -#~ msgstr "Popularité (ventes)" - -# @ woocommerce -#~ msgid "Average Rating" -#~ msgstr "Moyenne des notes" - -# @ woocommerce -#~ msgid "Sort by price (asc)" -#~ msgstr "Tri par prix croissant" - -# @ woocommerce -#~ msgid "Sort by price (desc)" -#~ msgstr "Tri par prix décroissant" - -# @ woocommerce -#~ msgid "Shop Page Display" -#~ msgstr "Affichage Page Boutique" - -#~ msgid "This controls what is shown on the product archive." -#~ msgstr "Ceci détermine ce qui est affiché sur l'archive produit." - -# @ woocommerce -#~ msgid "Show products" -#~ msgstr "Afficher les produits" - -# @ woocommerce -#~ msgid "Show both" -#~ msgstr "Tout afficher" - -# @ woocommerce -#~ msgid "Default Category Display" -#~ msgstr "Affichage par défaut de la catégorie" - -# @ woocommerce -#~ msgid "This controls what is shown on category archives." -#~ msgstr "Cela détermine ce qui est affiché sur les archives catégorie." - -# @ woocommerce -#~ msgid "Product Fields" -#~ msgstr "Champs produit" - -# @ woocommerce -#~ msgid "Enable ratings on reviews" -#~ msgstr "Activer les notes sur les avis" - -# @ woocommerce -#~ msgid "Thousand Separator" -#~ msgstr "Séparateur de milliers" - -# @ woocommerce -#~ msgid "Decimal Separator" -#~ msgstr "Séparateur décimal" - -# @ woocommerce -#~ msgid "Number of Decimals" -#~ msgstr "Nombre de décimales" - -#~ msgid "Trailing Zeros" -#~ msgstr "Zéros à droite" - -# @ woocommerce -#~ msgid "Manage Stock" -#~ msgstr "Gestion du stock" - -#~ msgid "Hold Stock (minutes)" -#~ msgstr "Maintenir le stock (minutes)" - -#~ msgid "" -#~ "Hold stock (for unpaid orders) for x minutes. When this limit is reached, " -#~ "the pending order will be cancelled. Leave blank to disable." -#~ msgstr "" -#~ "Maintenir le stock (pour les commandes impayées) pendant x minutes. Quand " -#~ "ce délai sera atteint, la commande en attente sera annulée. Laisser vide " -#~ "pour désactiver." - -# @ woocommerce -#~ msgid "Notification Recipient" -#~ msgstr "Destinataire de notification" - -# @ woocommerce -#~ msgid "Low Stock Threshold" -#~ msgstr "Seuil de stock faible" - -# @ woocommerce -#~ msgid "Out Of Stock Threshold" -#~ msgstr "Seuil de stock épuisé" - -# @ woocommerce -#~ msgid "Out Of Stock Visibility" -#~ msgstr "Visibilité des stocks épuisés" - -#~ msgid "Stock Display Format" -#~ msgstr "Format d'affichage du stock" - -# @ woocommerce -#~ msgid "Shipping Calculations" -#~ msgstr "Calcul de frais de port" - -# @ woocommerce -#~ msgid "Shipping Method Display" -#~ msgstr "Affichage de la méthode de livraison" - -# @ woocommerce -#~ msgid "Enable Taxes" -#~ msgstr "Activer Taxes" - -#~ msgid "Prices Entered With Tax" -#~ msgstr "Tarifs entrés avec taxe" - -#~ msgid "" -#~ "This option is important as it will affect how you input prices. Changing " -#~ "it will not update existing products." -#~ msgstr "" -#~ "Cette option est importante car elle affecte la façon dont vous saisissez " -#~ "les tarifs. La modifier ne mettra pas à jour des produits existant." - -#~ msgid "Yes, I will enter prices inclusive of tax" -#~ msgstr "Oui, j'entrerai les tarifs TTC" - -#~ msgid "No, I will enter prices exclusive of tax" -#~ msgstr "Non, j'entrerai les tarifs HT" - -#~ msgid "Calculate Tax Based On:" -#~ msgstr "Calcul de taxe basé sur : " - -#~ msgid "This option determines which address is used to calculate tax." -#~ msgstr "" -#~ "Cette option determine quelle adresse est utilisée pour le calcul de taxe." - -# @ woocommerce -#~ msgid "Customer shipping address" -#~ msgstr "Adresse de livraison du client" - -# @ woocommerce -#~ msgid "Customer billing address" -#~ msgstr "Adresse de facturation du client" - -# @ woocommerce -#~ msgid "Shop base address" -#~ msgstr "Adresse de base de la boutique" - -# @ woocommerce -#~ msgid "Default Customer Address:" -#~ msgstr "Adresse client par défaut :" - -#~ msgid "" -#~ "This option determines the customers default address (before they input " -#~ "their own)." -#~ msgstr "" -#~ "Cette option détermine l'adresse par défaut des clients (avant qu'ils ne " -#~ "saisissent la leur)." - -# @ woocommerce -#~ msgid "No address" -#~ msgstr "Aucune adresse" - -# @ woocommerce -#~ msgid "Shipping Tax Class:" -#~ msgstr "Classe de taxe livraison :" - -#~ msgid "" -#~ "Optionally control which tax class shipping gets, or leave it so shipping " -#~ "tax is based on the cart items themselves." -#~ msgstr "" -#~ "Optionnellement détermine quelle classe de taxe de livraison définir, ou " -#~ "laisser de manière à ce que la taxe de livraison soit basée sur les " -#~ "articles du panier." - -# @ woocommerce -#~ msgid "Rounding" -#~ msgstr "Arrondi" - -# @ woocommerce -#~ msgid "" -#~ "List additonal tax classes below (1 per line). This is in addition to the " -#~ "default Standard Rate. Tax classes can be assigned to " -#~ "products." -#~ msgstr "" -#~ "Liste des classes de taxes additonnelles ci-dessous (1 par ligne). Ceci " -#~ "est un ajout aux Taux Standard. Des classes de taxes peuvent " -#~ "être assignées aux produits." - -# @ woocommerce -#~ msgid "Display prices during cart/checkout:" -#~ msgstr "Affichage des prix pendant le panier/la commande :" - -# @ woocommerce -#~ msgid "Including tax" -#~ msgstr "TTC" - -# @ woocommerce -#~ msgid "Excluding tax" -#~ msgstr "HT" - -# @ woocommerce -#~ msgid "\"From\" Name" -#~ msgstr "\"From\" Nom" - -# @ woocommerce -#~ msgid "\"From\" Email Address" -#~ msgstr "\"From\" Adresse email" - -# @ woocommerce -#~ msgid "Email Template" -#~ msgstr "Modèle d'email" - -# @ woocommerce -#~ msgid "Header Image" -#~ msgstr "Image d'entête" - -# @ woocommerce -#~ msgid "Email Footer Text" -#~ msgstr "Texte de pied de page de l'email" - -# @ woocommerce -#~ msgid "Base Colour" -#~ msgstr "Couleur de base" - -# @ woocommerce -#~ msgid "Background Colour" -#~ msgstr "Couleur du fond" - -# @ woocommerce -#~ msgid "Email Body Background Colour" -#~ msgstr "Couleur de fond du corps de l'email" - -# @ woocommerce -#~ msgid "Email Body Text Colour" -#~ msgstr "Couleur du texte du corps de l'email" - -#~ msgid "Tax Rates for the \"%s\" Class" -#~ msgstr "Taux de taxe pour la classe \"%s\"" - -#~ msgid "" -#~ "Define tax rates for countries and states below. See here for available alpha-2 country codes." -#~ msgstr "" -#~ "Défini les taux de taxe pour les pays et états ci-dessous. Voir ici pour les codes pays disponibles." - -#~ msgid "Country Code" -#~ msgstr "Code Pays" - -# @ woocommerce -#~ msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -#~ msgstr "" -#~ "Un code pays de 2 caractères, ex. FR. Laissez vide pour appliquer à tous." - -#~ msgid "State Code" -#~ msgstr "Code état" - -# @ woocommerce -#~ msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -#~ msgstr "" -#~ "Un code état de 2 caractères, ex. AL. Laissez vide pour appliquer à tous." - -# @ woocommerce -#~ msgid "ZIP/Postcode" -#~ msgstr "Code postal" - -#~ msgid "" -#~ "Postcode for this rule. Semi-colon (;) separate multiple values. Leave " -#~ "blank to apply to all areas. Wildcards (*) can be used. Ranges for " -#~ "numeric postcodes (e.g. 12345-12350) will be expanded into individual " -#~ "postcodes." -#~ msgstr "" -#~ "Code postal pour cette règle. Le point virgule (;) sépare les valeurs " -#~ "multiples. Laisser vide pour l'appliquer à toutes les zones. Les jokers " -#~ "(*) peuvent être utilisées. Les gammes de codes postaux (ex. 77000-77990) " -#~ "seront converties en codes postaux individuels." - -#~ msgid "" -#~ "Cities for this rule. Semi-colon (;) separate multiple values. Leave " -#~ "blank to apply to all cities." -#~ msgstr "" -#~ "Communes pour cette règle. Le point virgule (;) sépare les valeurs " -#~ "multiples. Laisser vide pour appliquer à toutes les communes." - -# @ woocommerce -#~ msgid "Rate %" -#~ msgstr "Taux %" - -# @ woocommerce -#~ msgid "Tax Name" -#~ msgstr "Nom Taxe" - -#~ msgid "Enter a name for this tax rate." -#~ msgstr "Entrez un nom pour ce taux de taxe." - -#~ msgid "Priority" -#~ msgstr "Priorité" - -#~ msgid "" -#~ "Choose a priority for this tax rate. Only 1 matching rate per priority " -#~ "will be used. To define multiple tax rates for a single area you need to " -#~ "specify a different priority per rate." -#~ msgstr "" -#~ "Choisir une priorité pour ce taux de taxe. Seul 1 taux correspondant par " -#~ "priorité sera utilisé. Pour définir des taux de taxe multiples pour une " -#~ "seule zone vous devez spécifier une priorité différente par taux." - -#~ msgid "Insert row" -#~ msgstr "Insérer ligne" - -#~ msgid "Remove selected row(s)" -#~ msgstr "Supprimer les lignes sélectionnées" - -# @ woocommerce -#~ msgid "Export CSV" -#~ msgstr "Export CSV" - -#~ msgid "Import CSV" -#~ msgstr "Import CSV" - -#~ msgid "No row(s) selected" -#~ msgstr "Aucune ligne sélectionnée" - -# @ woocommerce -#~ msgid "Country Code" -#~ msgstr "Code Pays" - -# @ woocommerce -#~ msgid "State Code" -#~ msgstr "Code État" - -# @ woocommerce -#~ msgid "Rate %" -#~ msgstr "Taux %" - -# @ woocommerce -#~ msgid "Tax Name" -#~ msgstr "Nom Taxe" - -# @ woocommerce -#~ msgid "Coupon usage reports." -#~ msgstr "Rapport d'utilisation des codes promo." - -#~ msgid "Project on WordPress.org" -#~ msgstr "Projet sur WordPress.org" - -#~ msgid "Project on Github" -#~ msgstr "Projet sur Github" - -# @ woocommerce -#~ msgid "WooCommerce Docs" -#~ msgstr "Docs WooCommerce" - -#~ msgid "Official Extensions" -#~ msgstr "Extensions officielles" - -#~ msgid "Official Themes" -#~ msgstr "Thèmes officiels" - -# @ woocommerce -#~ msgctxt "page_slug" -#~ msgid "logout" -#~ msgstr "deconnexion" - -# @ woocommerce -#~ msgid "Marked out of stock" -#~ msgstr "Marquer épuisé" - -# @ woocommerce -#~ msgid "Templates" -#~ msgstr "Modèles HTML" - -#~ msgid "Template Overrides" -#~ msgstr "Modifications du modèle html" - -#~ msgid "No core overrides present in theme." -#~ msgstr "Aucune modification des sources présente dans le thème." - -#~ msgid "" -#~ "Your theme does not declare WooCommerce support – " -#~ "if you encounter layout issues please read our integration guide or " -#~ "choose a WooCommerce theme :)" -#~ msgstr "" -#~ "Votre thème ne déclare pas le support WooCommerce " -#~ "– si vous rencontrez des problèmes d'affichage, veuilelz lire notre " -#~ "guide d'intégration ou choisir un thème WooCommerce :-)" - -# @ woocommerce -#~ msgid "Theme Integration Guide" -#~ msgstr "Guide d'intégration des thèmes" - -# @ woocommerce -#~ msgid "Hide this notice" -#~ msgstr "Masquer cet avertissement" - -# @ woocommerce -#~ msgid "" -#~ "Enter a quantity to enable stock management at variation level, or leave " -#~ "blank to use the parent product's options." -#~ msgstr "" -#~ "Entrez une quantité pour activer la gestion de stock au niveau de la " -#~ "variation, ou laissez vide pour utiliser les options du produit parent." - -#~ msgid "Variation price (required)" -#~ msgstr "Variation prix (requis)" - -# @ woocommerce -#~ msgid "Enable stock management at product level" -#~ msgstr "Activer la gestion du stock au niveau produit" - -# @ woocommerce -#~ msgid "Base Location" -#~ msgstr "Emplacemement de base " - -# @ woocommerce -#~ msgid "" -#~ "This is the base location for your business. Tax rates will be based on " -#~ "this country." -#~ msgstr "" -#~ "Ceci est l'emplacemement de base de votre boutique. Les taux de taxes " -#~ "seront basés sur ce pays." - -# @ woocommerce -#~ msgid "Enable site-wide store notice text" -#~ msgstr "Activer le texte de notification sur l'ensemble de la boutique" - -# @ woocommerce -#~ msgid "Cart, Checkout and Accounts" -#~ msgstr "Panier, Commande et Comptes" - -# @ woocommerce -#~ msgid "Enable the use of coupons" -#~ msgstr "Activer l'utilisation de codes promo" - -#~ msgid "Coupons can be applied from the cart and checkout pages." -#~ msgstr "" -#~ "Les codes promo peuvent être appliqués depuis le panier et les pages de " -#~ "commande." - -#~ msgid "Enable customer note field on checkout" -#~ msgstr "Activer le champ note du client sur la page de commande" - -#~ msgid "" -#~ "Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -#~ msgstr "" -#~ "Forcer le SSL (HTTPS) sur les pages de paiement (un certificat SSL est " -#~ "nécessaire)." - -#~ msgid "Allow customers to repurchase orders from their account page" -#~ msgstr "Permettre aux clients de re-commander depuis leur compte" - -# @ woocommerce -#~ msgid "Enable WooCommerce CSS" -#~ msgstr "Activer les styles CSS WooCommerce" - -# @ woocommerce -#~ msgid "Enable Lightbox" -#~ msgstr "Activer la lightbox" - -#~ msgid "" -#~ "Include WooCommerce's lightbox. Product gallery images and the add review " -#~ "form will open in a lightbox." -#~ msgstr "" -#~ "Inclure la lightbox WooCommerce. Les images de galerie produit et le " -#~ "formulaire d'avis s'ouvriront dans une lightbox." - -#~ msgid "" -#~ "This will enable a script allowing the country fields to be searchable." -#~ msgstr "Ceci active un script permettant une recherche sur le champ pays." - -#~ msgid "Downloadable Products" -#~ msgstr "Produits téléchargeables" - -#~ msgid "Access Restriction" -#~ msgstr "Restrictions d'accès" - -# @ woocommerce -#~ msgid "Downloads require login" -#~ msgstr "Les téléchargements nécessitent d'être identifié" - -#~ msgid "This setting does not apply to guest purchases." -#~ msgstr "Ce réglage ne s'applique pas aux achats d'invité." - -#~ msgid "" -#~ "Enable this option to grant access to downloads when orders are " -#~ "\"processing\", rather than \"completed\"." -#~ msgstr "" -#~ "Activer cette option pour autoriser l'accès aux téléchagrements lorsque " -#~ "les commandes sont \"en cours\", plutôt que \"terminée\"." - -# @ woocommerce -#~ msgid "Logout Page" -#~ msgstr "Page de déconnexion" - -# @ woocommerce -#~ msgid "Parent: \"My Account\"" -#~ msgstr "Parent : \"Mon Compte\"" - -#~ msgid "Redirect to the cart page after successful addition" -#~ msgstr "Rediriger vers le panier après un ajout réussi" - -#~ msgid "Enable AJAX add to cart buttons on archives" -#~ msgstr "Activer les boutons AJAX d'ajout au panier sur les archives" - -# @ woocommerce -#~ msgid "Enable the SKU field for products" -#~ msgstr "" -#~ "Activer le champ UGS (Unité de Gestion des Stocks) pour " -#~ "les produits" - -#~ msgid "" -#~ "Enable the weight field for products (some shipping " -#~ "methods may require this)" -#~ msgstr "" -#~ "Activer le champ poids pour les acticles (certaines " -#~ "méthodes de livraison peuvent le nécessiter)" - -#~ msgid "" -#~ "Enable the dimension fields for products (some shipping " -#~ "methods may require this)" -#~ msgstr "" -#~ "Activer le champ dimension pour les acticles (certaines " -#~ "méthodes de livraison peuvent le nécessiter)" - -#~ msgid "" -#~ "Show weight and dimension values on the " -#~ "Additional Information tab" -#~ msgstr "" -#~ "Afficher les valeurs poids et dimensions dans l'onglet " -#~ "Informations Complémentaires" - -#~ msgid "Shipping tax class based on cart items" -#~ msgstr "Classe de taxe de livraison basée sur les articles panier" - -# @ woocommerce -#~ msgid "WooCommerce DB version" -#~ msgstr "WooCommerce Version DB" - -#~ msgid "Slug %s is too long" -#~ msgstr "Le slug %s est trop long" - -# @ woocommerce -#~ msgid "Please choose a quantity…" -#~ msgstr "Choisissez une quantité, svp …" - -# @ woocommerce -#~ msgid "Select a page..." -#~ msgstr "Choisissez une page..." - -#~ msgid "" -#~ "Define tax rates for countries and states below, or alternatively upload " -#~ "a CSV file containing your rates to wp-content/" -#~ "woocommerce_tax_rates.csv instead. Download sample " -#~ "csv." -#~ msgstr "" -#~ "Definir les taux de taxe pour les pays et les régions ci-dessous, ou " -#~ "alternativement transférez un fichier CSV contenant vos taux sur wp-" -#~ "content/woocommerce_tax_rates.csv. Télécharger un " -#~ "csv modèle." - -#~ msgid "" -#~ "Define local tax rates below, or alternatively upload a CSV file " -#~ "containing your rates to wp-content/woocommerce_local_tax_rates." -#~ "csv instead. Download sample csv." -#~ msgstr "" -#~ "Definir les taux de taxe locale ci-dessous, ou alternativement transférez " -#~ "un fichier CSV contenant vos taux sur wp-content/" -#~ "woocommerce_local_tax_rates.csv. Télécharger un csv " -#~ "modèle." - -# @ woocommerce -#~ msgid "Post/zip codes" -#~ msgstr "Codes postaux" - -#~ msgid "PHP Sessions" -#~ msgstr "Sessions PHP" - -#~ msgid "Session save path" -#~ msgstr "Chemin de sauvegarde des sessions" - -#~ msgid "" -#~ "%s does not exist - contact your host to resolve the problem." -#~ msgstr "" -#~ "%s n'existe pas - contacter votre hébergeur pour résoudre le " -#~ "problème." - -#~ msgid "" -#~ "%s is not writable - contact your host to resolve the " -#~ "problem." -#~ msgstr "" -#~ "%s n'est pas accessible en écriture - contacter votre " -#~ "hébergeur pour résoudre le problème." - -#~ msgid "%s is writable." -#~ msgstr "%s est accessible en écriture." - -# @ woocommerce -#~ msgid "Session name" -#~ msgstr "Nom de session" - -#~ msgid "↑" -#~ msgstr "↑" - -# @ woocommerce -#~ msgid "File path" -#~ msgstr "Chemin fichier" - -#~ msgid "Display taxes even when the amount is zero" -#~ msgstr "Afficher les taxes même quand le montant est nul" - -# @ woocommerce -#~ msgid "Catalog prices defined including tax" -#~ msgstr "Les prix catalogues définis incluent les taxes" - -# @ woocommerce -#~ msgid "" -#~ "List product and shipping tax classes here, e.g. Zero Tax, Reduced Rate." -#~ msgstr "" -#~ "Liste produit et classes de taxes de livraison ici. Ex : Exonération de " -#~ "Taxe, Taux Réduit." - -# @ woocommerce -#~ msgid "All fields are required." -#~ msgstr "Tous les champs sont requis." - -# @ woocommerce -#~ msgid "To avoid rounding errors, insert tax rates with 4 decimal places." -#~ msgstr "" -#~ "Afin d'éviter les erreurs d'arrondi, insérez les taux d'imposition avec 4 " -#~ "décimales." - -# @ woocommerce -#~ msgid "Email Recipient Options" -#~ msgstr "Options d'email du destinataire" - -# @ woocommerce -#~ msgid "New order notifications" -#~ msgstr "Notification de nouvelle commande" - -# @ woocommerce -#~ msgid "The recipient of new order emails. Defaults to the admin email." -#~ msgstr "" -#~ "Le destinataire des emails de nouvelle commande. Par défaut l'email de " -#~ "l'administrateur." - -# @ woocommerce -#~ msgid "Inventory notifications" -#~ msgstr "Notifications d'inventaire" - -# @ woocommerce -#~ msgid "The recipient of stock emails. Defaults to the admin email." -#~ msgstr "" -#~ "Le destinataire des emails d'inventaire. Par défaut l'email de " -#~ "l'administrateur." - -# @ woocommerce -#~ msgid "Drenthe" -#~ msgstr "Drenthe" - -# @ woocommerce -#~ msgid "Flevoland" -#~ msgstr "Flevoland" - -# @ woocommerce -#~ msgid "Friesland" -#~ msgstr "Friesland" - -# @ woocommerce -#~ msgid "Gelderland" -#~ msgstr "Gelderland" - -# @ woocommerce -#~ msgid "Groningen" -#~ msgstr "Groningen" - -# @ woocommerce -#~ msgid "Limburg" -#~ msgstr "Limburg" - -#~ msgid "Noord-Brabant" -#~ msgstr "Noord-Brabant" - -# @ woocommerce -#~ msgid "Noord-Holland" -#~ msgstr "Noord-Holland" - -# @ woocommerce -#~ msgid "Overijssel" -#~ msgstr "Overijssel" - -#~ msgid "Utrecht" -#~ msgstr "Utrecht" - -# @ woocommerce -#~ msgid "Zeeland" -#~ msgstr "Zeeland" - -#~ msgid "Zuid-Holland" -#~ msgstr "Zuid-Holland" - -# @ woocommerce -#~ msgid "[%s] New Customer Order (%s)" -#~ msgstr "[%s] Nouvelle commande client (n°%s)" - -# @ woocommerce -#~ msgid "[%s] Order Received" -#~ msgstr "[%s] Commande reçue" - -# @ woocommerce -#~ msgid "[%s] Order Complete/Download Links" -#~ msgstr "[%s] Commande finalisée/Liens de téléchargement" - -# @ woocommerce -#~ msgid "Order Complete/Download Links" -#~ msgstr "Commande finalisée/Liens de téléchargement" - -# @ woocommerce -#~ msgid "[%s] Order Complete" -#~ msgstr "[%s] Commande Terminée" - -# @ woocommerce -#~ msgid "Order Complete" -#~ msgstr "Commande terminée" - -# @ woocommerce -#~ msgid "Your order on %s" -#~ msgstr "Votre commande sur %s" - -# @ woocommerce -#~ msgid "[%s] Your order" -#~ msgstr "[%s] Votre commande" - -# @ woocommerce -#~ msgid "[%s] Pay for Order" -#~ msgstr "[%s] Payer la commande" - -#~ msgid "[%s] A note has been added to your order" -#~ msgstr "[%s] Une note a été ajoutée à votre commande" - -# @ woocommerce -#~ msgid "Order information" -#~ msgstr "Informations sur la commande" - -#~ msgid "Turn on Cash on Delivery for WooCommerce" -#~ msgstr "Activez le paiement à la livraison pour WooCommerce" - -# @ woocommerce -#~ msgid "Paypal" -#~ msgstr "Paypal" - -# @ woocommerce -#~ msgid "Send shipping details to PayPal." -#~ msgstr "Envoyer les détails de livraison à PayPal." - -#~ msgid "Debug" -#~ msgstr "Débuguer" - -#~ msgid "Enable logging (woocommerce/logs/paypal.txt)" -#~ msgstr "Activer les logs (woocommerce/logs/paypal.txt)" - -# @ woocommerce -#~ msgid "Order #%s" -#~ msgstr "Commande n°%s" - -#~ msgid "Order #%s has been marked as refunded - PayPal reason code: %s" -#~ msgstr "" -#~ "La commande n°%s a été indiquée comme recrédité - Code explicatif " -#~ "PayPal : %s" - -#~ msgid "Payment for order #%s refunded/reversed" -#~ msgstr "Paiement pour la commande n°%s recréditée/remboursée" - -# @ woocommerce -#~ msgid ". Their order is as follows:" -#~ msgstr ". La commande est la suivante :" - -# @ woocommerce -#, fuzzy -#~ msgctxt "Admin menu name" -#~ msgid "Product Categories" -#~ msgstr "Catégories" - -# @ woocommerce -#, fuzzy -#~ msgid "Shipping method…" -#~ msgstr "Méthode de livraison" - -# @ woocommerce -#, fuzzy -#~ msgid "Payment method…" -#~ msgstr "Méthode de Paiement :" - -# @ woocommerce -#, fuzzy -#~ msgid "Product Reviews" -#~ msgstr "Champs des produits" - -#, fuzzy -#~ msgid "Enable jQuery UI (used by the price filter widget)" -#~ msgstr "Activer JQuery UI (utilisé par le widget prix slider)" diff --git a/i18n/languages/woocommerce-he_IL.mo b/i18n/languages/woocommerce-he_IL.mo deleted file mode 100644 index fa6beb2fd33..00000000000 Binary files a/i18n/languages/woocommerce-he_IL.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-he_IL.po b/i18n/languages/woocommerce-he_IL.po deleted file mode 100644 index 23281fbfaa9..00000000000 --- a/i18n/languages/woocommerce-he_IL.po +++ /dev/null @@ -1,6716 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce 2.0.0 Front-end\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-03-04 09:46:16+00:00\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"PO-Revision-Date: 2013-07-28 02:09+0200\n" -"Last-Translator: stas \n" -"Language-Team: Stas Arshanski \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Language: Hebrew\n" -"X-Generator: Poedit 1.5.4\n" - -#: assets/js/admin/editor_plugin_lang.php:5 -msgid "Insert Shortcode" -msgstr "הכנס shortcode" - -#: assets/js/admin/editor_plugin_lang.php:6 -msgid "Product price/cart button" -msgstr "מחיר מוצר/כפתור עגלה" - -#: assets/js/admin/editor_plugin_lang.php:7 -msgid "Product by SKU/ID" -msgstr "מוצר לפי מק"ט/מזהה" - -#: assets/js/admin/editor_plugin_lang.php:8 -msgid "Products by SKU/ID" -msgstr "מוצרים לפי מזהה" - -#: assets/js/admin/editor_plugin_lang.php:9 -msgid "Product categories" -msgstr "קטגוריות מוצר" - -#: assets/js/admin/editor_plugin_lang.php:10 -msgid "Products by category slug" -msgstr "מוצרים לפי כתובת קטגוריה" - -#: assets/js/admin/editor_plugin_lang.php:11 -msgid "Recent products" -msgstr "מוצרים אחרונים" - -#: assets/js/admin/editor_plugin_lang.php:12 -msgid "Featured products" -msgstr "מוצרים מומלצים" - -#: assets/js/admin/editor_plugin_lang.php:13 -msgid "Shop Messages" -msgstr "הודעות החנות" - -#: assets/js/admin/editor_plugin_lang.php:14 -msgid "Pages" -msgstr "עמודים" - -#: assets/js/admin/editor_plugin_lang.php:15 -#: classes/widgets/class-wc-widget-cart.php:61 -msgid "Cart" -msgstr "עגלה" - -#: assets/js/admin/editor_plugin_lang.php:16 -msgid "Checkout" -msgstr "תשלום" - -#: assets/js/admin/editor_plugin_lang.php:17 -msgid "Order tracking" -msgstr "מעקב הזמנה" - -#: assets/js/admin/editor_plugin_lang.php:18 -#: templates/checkout/thankyou.php:30 -msgid "My Account" -msgstr "החשבון שלי" - -#: assets/js/admin/editor_plugin_lang.php:19 -msgid "Edit Address" -msgstr "ערוך כתובת" - -#: assets/js/admin/editor_plugin_lang.php:20 -msgid "Change Password" -msgstr "שנה סיסמה" - -#: assets/js/admin/editor_plugin_lang.php:21 woocommerce.php:1031 -#: woocommerce.php:1032 -msgid "View Order" -msgstr "צפייה בהזמנה" - -#: assets/js/admin/editor_plugin_lang.php:22 -#: templates/checkout/thankyou.php:28 templates/myaccount/my-orders.php:71 -msgid "Pay" -msgstr "שלם" - -#: assets/js/admin/editor_plugin_lang.php:23 -msgid "Thankyou" -msgstr "תודה לך" - -#: classes/abstracts/abstract-wc-email.php:421 -#: classes/emails/class-wc-email-customer-completed-order.php:135 -#: classes/emails/class-wc-email-customer-invoice.php:138 -#: classes/emails/class-wc-email-new-order.php:115 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:63 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:57 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:158 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:119 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:77 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:75 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:52 -msgid "Enable/Disable" -msgstr "הפעל/כבה" - -#: classes/abstracts/abstract-wc-email.php:423 -#: classes/emails/class-wc-email-customer-completed-order.php:137 -#: classes/emails/class-wc-email-customer-invoice.php:140 -#: classes/emails/class-wc-email-new-order.php:117 -msgid "Enable this email notification" -msgstr "הפעל את התרעות המייל" - -#: classes/abstracts/abstract-wc-email.php:427 -#: classes/emails/class-wc-email-customer-invoice.php:144 -msgid "Email subject" -msgstr "נושא המייל" - -#: classes/abstracts/abstract-wc-email.php:429 -#: classes/abstracts/abstract-wc-email.php:436 -#: classes/emails/class-wc-email-customer-completed-order.php:143 -#: classes/emails/class-wc-email-customer-completed-order.php:150 -#: classes/emails/class-wc-email-customer-completed-order.php:157 -#: classes/emails/class-wc-email-customer-completed-order.php:164 -#: classes/emails/class-wc-email-customer-invoice.php:146 -#: classes/emails/class-wc-email-customer-invoice.php:153 -#: classes/emails/class-wc-email-customer-invoice.php:160 -#: classes/emails/class-wc-email-customer-invoice.php:167 -msgid "Defaults to %s" -msgstr "ברירת המחדל היא %s" - -#: classes/abstracts/abstract-wc-email.php:434 -#: classes/emails/class-wc-email-customer-invoice.php:151 -msgid "Email heading" -msgstr "הדינג של המייל" - -#: classes/abstracts/abstract-wc-email.php:441 -#: classes/emails/class-wc-email-customer-completed-order.php:169 -#: classes/emails/class-wc-email-customer-invoice.php:172 -#: classes/emails/class-wc-email-new-order.php:142 -msgid "Email type" -msgstr "סוג מייל" - -#: classes/abstracts/abstract-wc-email.php:443 -#: classes/emails/class-wc-email-customer-completed-order.php:171 -#: classes/emails/class-wc-email-customer-invoice.php:174 -#: classes/emails/class-wc-email-new-order.php:144 -msgid "Choose which format of email to send." -msgstr "בחר סוג מייל לשליחה" - -#: classes/abstracts/abstract-wc-email.php:447 -#: classes/emails/class-wc-email-customer-completed-order.php:175 -#: classes/emails/class-wc-email-customer-invoice.php:178 -#: classes/emails/class-wc-email-new-order.php:148 -msgid "Plain text" -msgstr "טקסט פשוט" - -#: classes/abstracts/abstract-wc-email.php:448 -#: classes/emails/class-wc-email-customer-completed-order.php:176 -#: classes/emails/class-wc-email-customer-invoice.php:179 -#: classes/emails/class-wc-email-new-order.php:149 -msgid "HTML" -msgstr "HTML" - -#: classes/abstracts/abstract-wc-email.php:449 -#: classes/emails/class-wc-email-customer-completed-order.php:177 -#: classes/emails/class-wc-email-customer-invoice.php:180 -#: classes/emails/class-wc-email-new-order.php:150 -msgid "Multipart" -msgstr "Multipart" - -#: classes/abstracts/abstract-wc-email.php:485 -#: classes/abstracts/abstract-wc-email.php:506 -msgid "Could not write to template file." -msgstr "הכתיבה לקובץ הטמפלט לא עברה בהצלחה" - -#: classes/abstracts/abstract-wc-email.php:533 -msgid "Template file copied to theme." -msgstr "קובץ הטמפלט הועתק לערכת הנושא." - -#: classes/abstracts/abstract-wc-email.php:542 -msgid "Template file deleted from theme." -msgstr "קובץ הטמפלט נמחק מערכת הנושא." - -#: classes/abstracts/abstract-wc-email.php:550 -#: classes/abstracts/abstract-wc-integration.php:30 -#: classes/abstracts/abstract-wc-settings-api.php:39 -msgid "Settings" -msgstr "הגדרות" - -#: classes/abstracts/abstract-wc-email.php:562 -msgid "HTML template" -msgstr "טמפלט HTML" - -#: classes/abstracts/abstract-wc-email.php:563 -msgid "Plain text template" -msgstr "טמפלט טקסט פשוט" - -#: classes/abstracts/abstract-wc-email.php:582 -msgid "Delete template file" -msgstr "מחק קובץ טמפלט" - -#: classes/abstracts/abstract-wc-email.php:585 -msgid "" -"This template has been overridden by your theme and can be found in: " -"%s." -msgstr "" -"קובץ הטמפלט הנ"ל נשלט על ידי ערכת הנושא שלך ויכול להמצא ב: %s" - -#: classes/abstracts/abstract-wc-email.php:600 -msgid "Copy file to theme" -msgstr "העתק קובץ לערכת הנושא" - -#: classes/abstracts/abstract-wc-email.php:603 -msgid "" -"To override and edit this email template copy %s to your theme " -"folder: %s." -msgstr "" -"כדי להשתלט על הטמפלט ולערוך אותו, העתק את %s לתיקיית ערכת " -"הנושא: %s" - -#: classes/abstracts/abstract-wc-email.php:614 -msgid "File was not found." -msgstr "הקובץ לא נמצא." - -#: classes/abstracts/abstract-wc-email.php:639 -msgid "View template" -msgstr "צפה בטמפלט" - -#: classes/abstracts/abstract-wc-email.php:640 -msgid "Hide template" -msgstr "הסתר טמפלט" - -#: classes/abstracts/abstract-wc-email.php:651 -msgid "Are you sure you want to delete this template file?" -msgstr "האם אתה בטוח שברצונך למחוק את קובץ הטמפלט הזה?" - -#: classes/abstracts/abstract-wc-product.php:33 -msgid "" -"The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class " -"directly." -msgstr "" -"The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class " -"directly." - -#: classes/abstracts/abstract-wc-product.php:545 -#: classes/abstracts/abstract-wc-product.php:550 -#: classes/abstracts/abstract-wc-product.php:569 -msgid "In stock" -msgstr "במלאי" - -#: classes/abstracts/abstract-wc-product.php:550 -msgid "Only %s left in stock" -msgstr "נשארו במלאי רק %s" - -#: classes/abstracts/abstract-wc-product.php:553 -msgid "%s in stock" -msgstr "%s במלאי" - -#: classes/abstracts/abstract-wc-product.php:560 -msgid "(backorders allowed)" -msgstr "(הזמנות מראש מופעלות)" - -#: classes/abstracts/abstract-wc-product.php:566 -#: classes/abstracts/abstract-wc-product.php:579 templates/cart/cart.php:76 -msgid "Available on backorder" -msgstr "קיים בהזמנה מראש" - -#: classes/abstracts/abstract-wc-product.php:572 -#: classes/abstracts/abstract-wc-product.php:582 -#: classes/abstracts/abstract-wc-product.php:586 -msgid "Out of stock" -msgstr "לא במלאי" - -#: classes/abstracts/abstract-wc-product.php:849 -#: classes/abstracts/abstract-wc-product.php:855 -#: classes/class-wc-cart.php:1743 classes/class-wc-order.php:863 -#: classes/class-wc-product-variable.php:274 -#: classes/class-wc-product-variable.php:283 -#: classes/class-wc-product-variation.php:246 -msgid "Free!" -msgstr "חינם!" - -#: classes/abstracts/abstract-wc-product.php:873 -msgctxt "min_price" -msgid "From:" -msgstr "החל ממחיר:" - -#: classes/abstracts/abstract-wc-product.php:965 -#: templates/single-product-reviews.php:43 -msgid "Rated %s out of 5" -msgstr "דורג %s מתוך 5" - -#: classes/abstracts/abstract-wc-product.php:967 -#: templates/single-product/review.php:27 -#: templates/single-product-reviews.php:43 -msgid "out of 5" -msgstr "מתוך 5" - -#: classes/class-wc-cart.php:464 -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -"אנו מצטערים, אך אין מספיק \"%s\" במלאי כדי למלא את הזמנתך (%s במלאי). אנא " -"ערוך את ההזמנה שלך ונסה שנית. אנו מתנצלים על כל אי נוחות שנגרמה. " - -#: classes/class-wc-cart.php:483 classes/class-wc-cart.php:492 -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfil your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -"אנו מצטערים, אך אין מספיק \"%s\" במלאי כדי למלא את הזמנתך (%s במלאי). אנא " -"ערוך את ההזמנה שלך ונסה שנית. אנו מתנצלים על כל אי נוחות שנגרמה. " - -#: classes/class-wc-cart.php:527 -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfil your order right now. " -"Please try again in %d minutes or edit your cart and try again. We apologise " -"for any inconvenience caused." -msgstr "" -"אנו מצטערים, אך אין מספיק \"%s\" במלאי כדי למלא את הזמנתך. אנא נסה שנית בעוד " -"%d או ערוך את הזמנתך. אנו מתנצלים על כל אי נוחות שנגרמה. " - -#: classes/class-wc-cart.php:537 -msgid "" -"Sorry, \"%s\" is not in stock. Please edit your cart and try again. We " -"apologise for any inconvenience caused." -msgstr "" -"אנו מצטערים, אך \"%s\" לא במלאי. אנא ערוך את ההזמנה שלך ונסה שנית. אנו " -"מתנצלים על כל אי נוחות שנגרמה. " - -#: classes/class-wc-cart.php:818 -msgid "Sorry, "%s" cannot be purchased." -msgstr "אנו מתנצלים, אך לא ניתן לקנות את המוצר \"%s\" " - -#: classes/class-wc-cart.php:825 -msgid "" -"You cannot add "%s" to the cart because the product is out of " -"stock." -msgstr "אתה לא יכול להוסיף %s לעגלה כי המוצר אזל מהמלאי." - -#: classes/class-wc-cart.php:830 -msgid "" -"You cannot add that amount of "%s" to the cart because there is " -"not enough stock (%s remaining)." -msgstr "" -"אתה לא יכול להוסיף כמות זו של "e;%s"e; לעגלה בגלל שאין מספיק במלאי " -"(נותר %s)." - -#: classes/class-wc-cart.php:842 classes/class-wc-cart.php:856 -#: classes/class-wc-cart.php:864 templates/cart/mini-cart.php:68 -#: woocommerce-functions.php:470 woocommerce.php:1176 -msgid "View Cart →" -msgstr "צפייה בעגלה ←" - -#: classes/class-wc-cart.php:842 -msgid "You already have this item in your cart." -msgstr "המוצר כבר קיים בהזמנה שלך." - -#: classes/class-wc-cart.php:856 classes/class-wc-cart.php:864 -msgid "" -"%s You cannot add that amount to the " -"cart — we have %s in stock and you already have %s in your cart." -msgstr "" - -#: classes/class-wc-cart.php:1755 -msgid "via" -msgstr "דרך" - -#: classes/class-wc-checkout.php:64 -msgid "Account username" -msgstr "שם משתמש החשבון" - -#: classes/class-wc-checkout.php:65 -msgctxt "placeholder" -msgid "Username" -msgstr "שם משתמש" - -#: classes/class-wc-checkout.php:72 classes/class-wc-checkout.php:79 -msgid "Account password" -msgstr "סיסמת החשבון" - -#: classes/class-wc-checkout.php:73 classes/class-wc-checkout.php:80 -msgctxt "placeholder" -msgid "Password" -msgstr "סיסמה" - -#: classes/class-wc-checkout.php:89 -msgid "Order Notes" -msgstr "הערות הזמנה" - -#: classes/class-wc-checkout.php:90 -msgctxt "placeholder" -msgid "Notes about your order, e.g. special notes for delivery." -msgstr "הערות להזמנה שלך, לדוגמא הוראות מיוחדות למשלוח." - -#: classes/class-wc-checkout.php:152 -msgid "Order – %s" -msgstr "הזמנה – %s" - -#: classes/class-wc-checkout.php:152 -msgctxt "Order date parsed by strftime" -msgid "%b %d, %Y @ %I:%M %p" -msgstr "%b %d, %Y @ %I:%M %p" - -#: classes/class-wc-checkout.php:276 -msgid "Backordered" -msgstr "הזמנה מראש" - -#: classes/class-wc-checkout.php:386 -msgid "" -"Sorry, your session has expired. Return to homepage →" -msgstr "" -"אנו מצטערים אבל החיבור שלך לאתר פג תוקף. חזור לדף הבית ←" -"" - -#: classes/class-wc-checkout.php:438 woocommerce-functions.php:1632 -msgid "is a required field." -msgstr "שדה חובה למילוי." - -#: classes/class-wc-checkout.php:451 -msgid "(%s) is not a valid postcode/ZIP." -msgstr "(%s) לא מיקוד תקין." - -#: classes/class-wc-checkout.php:472 -msgid "is not valid. Please enter one of the following:" -msgstr "לא תקין. אנא כתוב את זה:" - -#: classes/class-wc-checkout.php:480 -msgid "is not a valid number." -msgstr "לא מספר תקני." - -#: classes/class-wc-checkout.php:487 -msgid "is not a valid email address." -msgstr "לא מייל תקני." - -#: classes/class-wc-checkout.php:543 -msgid "Please enter an account username." -msgstr "אנא הזן את שם המשתמש של החשבון." - -#: classes/class-wc-checkout.php:547 -msgid "Invalid email/username." -msgstr "מייל/שם משתמש לא תקני." - -#: classes/class-wc-checkout.php:550 -msgid "" -"An account is already registered with that username. Please choose another." -msgstr "נמצא כבר משתמש שרשום תחת שם המשתמש הזה. אנא בחר אחר." - -#: classes/class-wc-checkout.php:560 -msgid "Please enter an account password." -msgstr "אנא הכנס את סיסמת החשבון." - -#: classes/class-wc-checkout.php:563 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:85 -#: woocommerce-functions.php:731 woocommerce-functions.php:1562 -msgid "Passwords do not match." -msgstr "הסיסמאות לא תואמות אחת את השנייה." - -#: classes/class-wc-checkout.php:567 -msgid "An account is already registered with your email address. Please login." -msgstr "נמצא כבר חשבון שרשום באמצעות כתובת המייל הזאת. אנא התחבר." - -#: classes/class-wc-checkout.php:573 -msgid "You must accept our Terms & Conditions." -msgstr "אתה חייב לאשר את תנאי השימוש שלנו." - -#: classes/class-wc-checkout.php:582 -msgid "Invalid shipping method." -msgstr "צורת המשלוח לא תקנית." - -#: classes/class-wc-checkout.php:595 -msgid "Invalid payment method." -msgstr "צורת התשלום לא תקנית." - -#: classes/class-wc-checkout.php:635 woocommerce-core-functions.php:2485 -#: woocommerce-core-functions.php:2488 woocommerce-functions.php:703 -#: woocommerce-functions.php:705 woocommerce-functions.php:708 -#: woocommerce-functions.php:720 woocommerce-functions.php:722 -#: woocommerce-functions.php:725 woocommerce-functions.php:759 -msgid "ERROR" -msgstr "שגיאה" - -#: classes/class-wc-checkout.php:635 woocommerce-functions.php:759 -msgid "" -"Couldn’t register you… please contact us if you continue to " -"have problems." -msgstr "" -"לא הצלחנו לרשום אותך… אנא צור איתנו קשר אם אתה ממשיך לחוות בעיות." - -#: classes/class-wc-countries.php:37 -msgid "Afghanistan" -msgstr "אפגניסטן" - -#: classes/class-wc-countries.php:38 -msgid "Åland Islands" -msgstr "איי אולנד" - -#: classes/class-wc-countries.php:39 -msgid "Albania" -msgstr "אלבניה" - -#: classes/class-wc-countries.php:40 -msgid "Algeria" -msgstr "אלג'יריה" - -#: classes/class-wc-countries.php:41 -msgid "Andorra" -msgstr "אנדורה" - -#: classes/class-wc-countries.php:42 -msgid "Angola" -msgstr "אנגולה" - -#: classes/class-wc-countries.php:43 -msgid "Anguilla" -msgstr "אנגווילה" - -#: classes/class-wc-countries.php:44 -msgid "Antarctica" -msgstr "אנטרקטיקה" - -#: classes/class-wc-countries.php:45 -msgid "Antigua and Barbuda" -msgstr "אנטיגואה וברבודה" - -#: classes/class-wc-countries.php:46 -msgid "Argentina" -msgstr "ארגנטינה" - -#: classes/class-wc-countries.php:47 -msgid "Armenia" -msgstr "ארמניה" - -#: classes/class-wc-countries.php:48 -msgid "Aruba" -msgstr "ארובה" - -#: classes/class-wc-countries.php:49 -msgid "Australia" -msgstr "אוסטרליה" - -#: classes/class-wc-countries.php:50 -msgid "Austria" -msgstr "אוסטריה" - -#: classes/class-wc-countries.php:51 -msgid "Azerbaijan" -msgstr "אזרבייג'ן" - -#: classes/class-wc-countries.php:52 -msgid "Bahamas" -msgstr "איי בהאמה" - -#: classes/class-wc-countries.php:53 -msgid "Bahrain" -msgstr "בחריין" - -#: classes/class-wc-countries.php:54 -msgid "Bangladesh" -msgstr "בנגלדש" - -#: classes/class-wc-countries.php:55 -msgid "Barbados" -msgstr "ברבדוס" - -#: classes/class-wc-countries.php:56 -msgid "Belarus" -msgstr "בלרוס" - -#: classes/class-wc-countries.php:57 -msgid "Belgium" -msgstr "בלגיה" - -#: classes/class-wc-countries.php:58 -msgid "Belau" -msgstr "Belau" - -#: classes/class-wc-countries.php:59 -msgid "Belize" -msgstr "בליז" - -#: classes/class-wc-countries.php:60 -msgid "Benin" -msgstr "בנין" - -#: classes/class-wc-countries.php:61 -msgid "Bermuda" -msgstr "ברמודה" - -#: classes/class-wc-countries.php:62 -msgid "Bhutan" -msgstr "בהוטן" - -#: classes/class-wc-countries.php:63 -msgid "Bolivia" -msgstr "בוליביה" - -#: classes/class-wc-countries.php:64 -msgid "Bonaire, Saint Eustatius and Saba" -msgstr "Bonaire, Saint יוסטאציוס וסבא" - -#: classes/class-wc-countries.php:65 -msgid "Bosnia and Herzegovina" -msgstr "בוסניה והרצגובינה" - -#: classes/class-wc-countries.php:66 -msgid "Botswana" -msgstr "בוטסואנה" - -#: classes/class-wc-countries.php:67 -msgid "Bouvet Island" -msgstr "האי בובה" - -#: classes/class-wc-countries.php:68 -msgid "Brazil" -msgstr "ברזיל" - -#: classes/class-wc-countries.php:69 -msgid "British Indian Ocean Territory" -msgstr "הטריטוריה הבריטית באוקינוס ההודי" - -#: classes/class-wc-countries.php:70 -msgid "British Virgin Islands" -msgstr "איי בתולה בריטית" - -#: classes/class-wc-countries.php:71 -msgid "Brunei" -msgstr "ברוניי" - -#: classes/class-wc-countries.php:72 -msgid "Bulgaria" -msgstr "בולגריה" - -#: classes/class-wc-countries.php:73 -msgid "Burkina Faso" -msgstr "בורקינה פאסו" - -#: classes/class-wc-countries.php:74 -msgid "Burundi" -msgstr "בורונדי" - -#: classes/class-wc-countries.php:75 -msgid "Cambodia" -msgstr "קמבודיה" - -#: classes/class-wc-countries.php:76 -msgid "Cameroon" -msgstr "קמרון" - -#: classes/class-wc-countries.php:77 -msgid "Canada" -msgstr "קנדה" - -#: classes/class-wc-countries.php:78 -msgid "Cape Verde" -msgstr "קייפ ורדה" - -#: classes/class-wc-countries.php:79 -msgid "Cayman Islands" -msgstr "איי קיימן" - -#: classes/class-wc-countries.php:80 -msgid "Central African Republic" -msgstr "הרפובליקה המרכז אפריקנית" - -#: classes/class-wc-countries.php:81 -msgid "Chad" -msgstr "צ'אד" - -#: classes/class-wc-countries.php:82 -msgid "Chile" -msgstr "צ'ילה" - -#: classes/class-wc-countries.php:83 -msgid "China" -msgstr "סין" - -#: classes/class-wc-countries.php:84 -msgid "Christmas Island" -msgstr "אי חג המולד" - -#: classes/class-wc-countries.php:85 -msgid "Cocos (Keeling) Islands" -msgstr "איי קוקוס (קילינג)" - -#: classes/class-wc-countries.php:86 -msgid "Colombia" -msgstr "קולומביה" - -#: classes/class-wc-countries.php:87 -msgid "Comoros" -msgstr "איי קומורו" - -#: classes/class-wc-countries.php:88 -msgid "Congo (Brazzaville)" -msgstr "קונגו (ברזוויל)" - -#: classes/class-wc-countries.php:89 -msgid "Congo (Kinshasa)" -msgstr "קונגו (קינשאסה)" - -#: classes/class-wc-countries.php:90 -msgid "Cook Islands" -msgstr "איי קוק" - -#: classes/class-wc-countries.php:91 -msgid "Costa Rica" -msgstr "קוסטה ריקה" - -#: classes/class-wc-countries.php:92 -msgid "Croatia" -msgstr "קרואטיה" - -#: classes/class-wc-countries.php:93 -msgid "Cuba" -msgstr "תת-מחוז קובה" - -#: classes/class-wc-countries.php:94 -msgid "CuraÇao" -msgstr "קוראסאו" - -#: classes/class-wc-countries.php:95 -msgid "Cyprus" -msgstr "קפריסין" - -#: classes/class-wc-countries.php:96 -msgid "Czech Republic" -msgstr "הרפובליקה הצ'כיה" - -#: classes/class-wc-countries.php:97 -msgid "Denmark" -msgstr "דנמרק" - -#: classes/class-wc-countries.php:98 -msgid "Djibouti" -msgstr "ג'יבוטי" - -#: classes/class-wc-countries.php:99 -msgid "Dominica" -msgstr "דומיניקה" - -#: classes/class-wc-countries.php:100 -msgid "Dominican Republic" -msgstr "הרפובליקה הדומיניקנית" - -#: classes/class-wc-countries.php:101 -msgid "Ecuador" -msgstr "אקוודור" - -#: classes/class-wc-countries.php:102 -msgid "Egypt" -msgstr "מצרים" - -#: classes/class-wc-countries.php:103 -msgid "El Salvador" -msgstr "אל סלוודור" - -#: classes/class-wc-countries.php:104 -msgid "Equatorial Guinea" -msgstr "גינאה המשוונית" - -#: classes/class-wc-countries.php:105 -msgid "Eritrea" -msgstr "אריתריאה" - -#: classes/class-wc-countries.php:106 -msgid "Estonia" -msgstr "אסטוניה" - -#: classes/class-wc-countries.php:107 -msgid "Ethiopia" -msgstr "אתיופיה" - -#: classes/class-wc-countries.php:108 -msgid "Falkland Islands" -msgstr "איי פוקלנד" - -#: classes/class-wc-countries.php:109 -msgid "Faroe Islands" -msgstr "איי פארו" - -#: classes/class-wc-countries.php:110 -msgid "Fiji" -msgstr "פיג'י" - -#: classes/class-wc-countries.php:111 -msgid "Finland" -msgstr "פינלנד" - -#: classes/class-wc-countries.php:112 -msgid "France" -msgstr "צרפת" - -#: classes/class-wc-countries.php:113 -msgid "French Guiana" -msgstr "גיאנה הצרפתית" - -#: classes/class-wc-countries.php:114 -msgid "French Polynesia" -msgstr "פולינזיה הצרפתית" - -#: classes/class-wc-countries.php:115 -msgid "French Southern Territories" -msgstr "הטריטוריות הדרומיות של צרפת" - -#: classes/class-wc-countries.php:116 -msgid "Gabon" -msgstr "גאבון" - -#: classes/class-wc-countries.php:117 -msgid "Gambia" -msgstr "גמביה" - -#: classes/class-wc-countries.php:118 i18n/states/US.php:23 -msgid "Georgia" -msgstr "Georgia" - -#: classes/class-wc-countries.php:119 -msgid "Germany" -msgstr "גרמניה" - -#: classes/class-wc-countries.php:120 -msgid "Ghana" -msgstr "גאנה" - -#: classes/class-wc-countries.php:121 -msgid "Gibraltar" -msgstr "גיברלטר" - -#: classes/class-wc-countries.php:122 -msgid "Greece" -msgstr "יוון" - -#: classes/class-wc-countries.php:123 -msgid "Greenland" -msgstr "גרינלנד" - -#: classes/class-wc-countries.php:124 -msgid "Grenada" -msgstr "גרנדה" - -#: classes/class-wc-countries.php:125 -msgid "Guadeloupe" -msgstr "גואדאלופ" - -#: classes/class-wc-countries.php:126 -msgid "Guatemala" -msgstr "גוואטמלה" - -#: classes/class-wc-countries.php:127 -msgid "Guernsey" -msgstr "גרנזי" - -#: classes/class-wc-countries.php:128 -msgid "Guinea" -msgstr "גינאה" - -#: classes/class-wc-countries.php:129 -msgid "Guinea-Bissau" -msgstr "גינאה ביסאו" - -#: classes/class-wc-countries.php:130 -msgid "Guyana" -msgstr "גיאנה" - -#: classes/class-wc-countries.php:131 -msgid "Haiti" -msgstr "האיטי" - -#: classes/class-wc-countries.php:132 -msgid "Heard Island and McDonald Islands" -msgstr "האי הרד ואיי מקדונלד" - -#: classes/class-wc-countries.php:133 -msgid "Honduras" -msgstr "הונדורס" - -#: classes/class-wc-countries.php:134 -msgid "Hong Kong" -msgstr "הונג קונג" - -#: classes/class-wc-countries.php:135 -msgid "Hungary" -msgstr "הונגריה" - -#: classes/class-wc-countries.php:136 -msgid "Iceland" -msgstr "איסלנד" - -#: classes/class-wc-countries.php:137 -msgid "India" -msgstr "הודו" - -#: classes/class-wc-countries.php:138 -msgid "Indonesia" -msgstr "אינדונזיה" - -#: classes/class-wc-countries.php:139 -msgid "Iran" -msgstr "איראן" - -#: classes/class-wc-countries.php:140 -msgid "Iraq" -msgstr "עירק" - -#: classes/class-wc-countries.php:141 -msgid "Republic of Ireland" -msgstr "רפובליקה של אירלנד" - -#: classes/class-wc-countries.php:142 -msgid "Isle of Man" -msgstr "האי מאן" - -#: classes/class-wc-countries.php:143 -msgid "Israel" -msgstr "ישראל" - -#: classes/class-wc-countries.php:144 -msgid "Italy" -msgstr "איטליה" - -#: classes/class-wc-countries.php:145 -msgid "Ivory Coast" -msgstr "חוף שנהב" - -#: classes/class-wc-countries.php:146 -msgid "Jamaica" -msgstr "ג'מייקה" - -#: classes/class-wc-countries.php:147 -msgid "Japan" -msgstr "יפן" - -#: classes/class-wc-countries.php:148 -msgid "Jersey" -msgstr "ג'רזי" - -#: classes/class-wc-countries.php:149 -msgid "Jordan" -msgstr "ירדן" - -#: classes/class-wc-countries.php:150 -msgid "Kazakhstan" -msgstr "קזחסטן" - -#: classes/class-wc-countries.php:151 -msgid "Kenya" -msgstr "קניה" - -#: classes/class-wc-countries.php:152 -msgid "Kiribati" -msgstr "קיריבטי" - -#: classes/class-wc-countries.php:153 -msgid "Kuwait" -msgstr "כוויית" - -#: classes/class-wc-countries.php:154 -msgid "Kyrgyzstan" -msgstr "קירגיסטן" - -#: classes/class-wc-countries.php:155 -msgid "Laos" -msgstr "לאוס" - -#: classes/class-wc-countries.php:156 -msgid "Latvia" -msgstr "לטביה" - -#: classes/class-wc-countries.php:157 -msgid "Lebanon" -msgstr "לבנון" - -#: classes/class-wc-countries.php:158 -msgid "Lesotho" -msgstr "לסוטו" - -#: classes/class-wc-countries.php:159 -msgid "Liberia" -msgstr "ליבריה" - -#: classes/class-wc-countries.php:160 -msgid "Libya" -msgstr "לוב" - -#: classes/class-wc-countries.php:161 -msgid "Liechtenstein" -msgstr "ליכטנשטיין" - -#: classes/class-wc-countries.php:162 -msgid "Lithuania" -msgstr "ליטא" - -#: classes/class-wc-countries.php:163 -msgid "Luxembourg" -msgstr "לוקסמבורג" - -#: classes/class-wc-countries.php:164 -msgid "Macao S.A.R., China" -msgstr "מקאו SAR, סין" - -#: classes/class-wc-countries.php:165 -msgid "Macedonia" -msgstr "מקדוניה" - -#: classes/class-wc-countries.php:166 -msgid "Madagascar" -msgstr "מדגסקר" - -#: classes/class-wc-countries.php:167 -msgid "Malawi" -msgstr "מלאווי" - -#: classes/class-wc-countries.php:168 -msgid "Malaysia" -msgstr "מלזיה" - -#: classes/class-wc-countries.php:169 -msgid "Maldives" -msgstr "האיים המלדיביים" - -#: classes/class-wc-countries.php:170 -msgid "Mali" -msgstr "מאלי" - -#: classes/class-wc-countries.php:171 -msgid "Malta" -msgstr "מלטה" - -#: classes/class-wc-countries.php:172 -msgid "Marshall Islands" -msgstr "איי מרשל" - -#: classes/class-wc-countries.php:173 -msgid "Martinique" -msgstr "מרטיניק" - -#: classes/class-wc-countries.php:174 -msgid "Mauritania" -msgstr "מאוריטניה" - -#: classes/class-wc-countries.php:175 -msgid "Mauritius" -msgstr "מאוריציוס" - -#: classes/class-wc-countries.php:176 -msgid "Mayotte" -msgstr "מאיוט" - -#: classes/class-wc-countries.php:177 -msgid "Mexico" -msgstr "מקסיקו" - -#: classes/class-wc-countries.php:178 -msgid "Micronesia" -msgstr "מיקרונזיה" - -#: classes/class-wc-countries.php:179 -msgid "Moldova" -msgstr "מולדובה" - -#: classes/class-wc-countries.php:180 -msgid "Monaco" -msgstr "מונקו" - -#: classes/class-wc-countries.php:181 -msgid "Mongolia" -msgstr "מונגוליה" - -#: classes/class-wc-countries.php:182 -msgid "Montenegro" -msgstr "מונטנגרו" - -#: classes/class-wc-countries.php:183 -msgid "Montserrat" -msgstr "מונסראט" - -#: classes/class-wc-countries.php:184 -msgid "Morocco" -msgstr "מרוקו" - -#: classes/class-wc-countries.php:185 -msgid "Mozambique" -msgstr "מוזמביק" - -#: classes/class-wc-countries.php:186 -msgid "Myanmar" -msgstr "מיאנמר" - -#: classes/class-wc-countries.php:187 -msgid "Namibia" -msgstr "נמיביה" - -#: classes/class-wc-countries.php:188 -msgid "Nauru" -msgstr "נאורו" - -#: classes/class-wc-countries.php:189 -msgid "Nepal" -msgstr "נפאל" - -#: classes/class-wc-countries.php:190 -msgid "Netherlands" -msgstr "הולנד" - -#: classes/class-wc-countries.php:191 -msgid "Netherlands Antilles" -msgstr "האנטילים ההולנדיים" - -#: classes/class-wc-countries.php:192 -msgid "New Caledonia" -msgstr "קלדוניה החדשה" - -#: classes/class-wc-countries.php:193 -msgid "New Zealand" -msgstr "ניו זילנד" - -#: classes/class-wc-countries.php:194 -msgid "Nicaragua" -msgstr "ניקרגוואה" - -#: classes/class-wc-countries.php:195 -msgid "Niger" -msgstr "ניז'ר" - -#: classes/class-wc-countries.php:196 -msgid "Nigeria" -msgstr "ניגריה" - -#: classes/class-wc-countries.php:197 -msgid "Niue" -msgstr "נואי" - -#: classes/class-wc-countries.php:198 -msgid "Norfolk Island" -msgstr "האי נורפולק" - -#: classes/class-wc-countries.php:199 -msgid "North Korea" -msgstr "צפון קוריאה" - -#: classes/class-wc-countries.php:200 -msgid "Norway" -msgstr "נורווגיה" - -#: classes/class-wc-countries.php:201 -msgid "Oman" -msgstr "עומאן" - -#: classes/class-wc-countries.php:202 -msgid "Pakistan" -msgstr "פקיסטן" - -#: classes/class-wc-countries.php:203 -msgid "Palestinian Territory" -msgstr "השטחים הפלשתינים" - -#: classes/class-wc-countries.php:204 -msgid "Panama" -msgstr "פנמה" - -#: classes/class-wc-countries.php:205 -msgid "Papua New Guinea" -msgstr "פפואה-גינאה החדשה" - -#: classes/class-wc-countries.php:206 -msgid "Paraguay" -msgstr "פרגוואי" - -#: classes/class-wc-countries.php:207 -msgid "Peru" -msgstr "פרו" - -#: classes/class-wc-countries.php:208 -msgid "Philippines" -msgstr "הפיליפינים" - -#: classes/class-wc-countries.php:209 -msgid "Pitcairn" -msgstr "פיטקרן" - -#: classes/class-wc-countries.php:210 -msgid "Poland" -msgstr "פולין" - -#: classes/class-wc-countries.php:211 -msgid "Portugal" -msgstr "פורטוגל" - -#: classes/class-wc-countries.php:212 -msgid "Qatar" -msgstr "קטר" - -#: classes/class-wc-countries.php:213 -msgid "Reunion" -msgstr "ראוניון" - -#: classes/class-wc-countries.php:214 -msgid "Romania" -msgstr "רומניה" - -#: classes/class-wc-countries.php:215 -msgid "Russia" -msgstr "רוסיה" - -#: classes/class-wc-countries.php:216 -msgid "Rwanda" -msgstr "רואנדה" - -#: classes/class-wc-countries.php:217 -msgid "Saint Barthélemy" -msgstr "סנט ברתלמי" - -#: classes/class-wc-countries.php:218 -msgid "Saint Helena" -msgstr "סנט הלנה" - -#: classes/class-wc-countries.php:219 -msgid "Saint Kitts and Nevis" -msgstr "סנט קיטס ונוויס" - -#: classes/class-wc-countries.php:220 -msgid "Saint Lucia" -msgstr "סנט לוצ'יה" - -#: classes/class-wc-countries.php:221 -msgid "Saint Martin (French part)" -msgstr "סנט מרטין (חלק צרפתי)" - -#: classes/class-wc-countries.php:222 -msgid "Saint Martin (Dutch part)" -msgstr "סנט מרטין (חלק הולנדי)" - -#: classes/class-wc-countries.php:223 -msgid "Saint Pierre and Miquelon" -msgstr "סנט פייר ומיקלון" - -#: classes/class-wc-countries.php:224 -msgid "Saint Vincent and the Grenadines" -msgstr "סנט וינסנט והגרנדינים" - -#: classes/class-wc-countries.php:225 -msgid "Samoa" -msgstr "סמואה" - -#: classes/class-wc-countries.php:226 -msgid "San Marino" -msgstr "סן מרינו" - -#: classes/class-wc-countries.php:227 -msgid "São Tomé and Príncipe" -msgstr "סאו טומה ופרינסיפה" - -#: classes/class-wc-countries.php:228 -msgid "Saudi Arabia" -msgstr "ערב הסעודית" - -#: classes/class-wc-countries.php:229 -msgid "Senegal" -msgstr "סנגל" - -#: classes/class-wc-countries.php:230 -msgid "Serbia" -msgstr "סרביה" - -#: classes/class-wc-countries.php:231 -msgid "Seychelles" -msgstr "איי סיישל" - -#: classes/class-wc-countries.php:232 -msgid "Sierra Leone" -msgstr "סיירה ליאון" - -#: classes/class-wc-countries.php:233 -msgid "Singapore" -msgstr "סינגפור" - -#: classes/class-wc-countries.php:234 -msgid "Slovakia" -msgstr "סלובקיה" - -#: classes/class-wc-countries.php:235 -msgid "Slovenia" -msgstr "סלובניה" - -#: classes/class-wc-countries.php:236 -msgid "Solomon Islands" -msgstr "איי שלמה" - -#: classes/class-wc-countries.php:237 -msgid "Somalia" -msgstr "סומליה" - -#: classes/class-wc-countries.php:238 -msgid "South Africa" -msgstr "דרום אפריקה" - -#: classes/class-wc-countries.php:239 -msgid "South Georgia/Sandwich Islands" -msgstr "ג'ורג'יה הדרומית / איים סנדוויץ'" - -#: classes/class-wc-countries.php:240 -msgid "South Korea" -msgstr "דרום קוריאה" - -#: classes/class-wc-countries.php:241 -msgid "South Sudan" -msgstr "דרום סודן" - -#: classes/class-wc-countries.php:242 -msgid "Spain" -msgstr "ספרד" - -#: classes/class-wc-countries.php:243 -msgid "Sri Lanka" -msgstr "סרי לנקה" - -#: classes/class-wc-countries.php:244 -msgid "Sudan" -msgstr "סודן" - -#: classes/class-wc-countries.php:245 -msgid "Suriname" -msgstr "סורינם" - -#: classes/class-wc-countries.php:246 -msgid "Svalbard and Jan Mayen" -msgstr "איי סבלברד ויאן מאיין" - -#: classes/class-wc-countries.php:247 -msgid "Swaziland" -msgstr "סווזילנד" - -#: classes/class-wc-countries.php:248 -msgid "Sweden" -msgstr "שוודיה" - -#: classes/class-wc-countries.php:249 -msgid "Switzerland" -msgstr "שוויץ" - -#: classes/class-wc-countries.php:250 -msgid "Syria" -msgstr "סוריה" - -#: classes/class-wc-countries.php:251 -msgid "Taiwan" -msgstr "טייוואן" - -#: classes/class-wc-countries.php:252 -msgid "Tajikistan" -msgstr "טג'יקיסטן" - -#: classes/class-wc-countries.php:253 -msgid "Tanzania" -msgstr "טנזניה" - -#: classes/class-wc-countries.php:254 -msgid "Thailand" -msgstr "תאילנד" - -#: classes/class-wc-countries.php:255 -msgid "Timor-Leste" -msgstr "מזרח טימור" - -#: classes/class-wc-countries.php:256 -msgid "Togo" -msgstr "טוגו" - -#: classes/class-wc-countries.php:257 -msgid "Tokelau" -msgstr "טוקלאו" - -#: classes/class-wc-countries.php:258 -msgid "Tonga" -msgstr "טונגה" - -#: classes/class-wc-countries.php:259 -msgid "Trinidad and Tobago" -msgstr "טרינידד וטובגו" - -#: classes/class-wc-countries.php:260 -msgid "Tunisia" -msgstr "טוניסיה" - -#: classes/class-wc-countries.php:261 -msgid "Turkey" -msgstr "טורקיה" - -#: classes/class-wc-countries.php:262 -msgid "Turkmenistan" -msgstr "טורקמניסטן" - -#: classes/class-wc-countries.php:263 -msgid "Turks and Caicos Islands" -msgstr "איי טורקס וקייקוס" - -#: classes/class-wc-countries.php:264 -msgid "Tuvalu" -msgstr "טובאלו" - -#: classes/class-wc-countries.php:265 -msgid "Uganda" -msgstr "אוגנדה" - -#: classes/class-wc-countries.php:266 -msgid "Ukraine" -msgstr "אוקראינה" - -#: classes/class-wc-countries.php:267 -msgid "United Arab Emirates" -msgstr "איחוד האמירויות" - -#: classes/class-wc-countries.php:268 -msgid "United Kingdom" -msgstr "בריטניה" - -#: classes/class-wc-countries.php:269 -msgid "United States" -msgstr "ארצות הברית" - -#: classes/class-wc-countries.php:270 -msgid "Uruguay" -msgstr "אורוגוואי" - -#: classes/class-wc-countries.php:271 -msgid "Uzbekistan" -msgstr "אוזבקיסטן" - -#: classes/class-wc-countries.php:272 -msgid "Vanuatu" -msgstr "ונאוטו" - -#: classes/class-wc-countries.php:273 -msgid "Vatican" -msgstr "הוותיקן" - -#: classes/class-wc-countries.php:274 -msgid "Venezuela" -msgstr "ונצואלה" - -#: classes/class-wc-countries.php:275 -msgid "Vietnam" -msgstr "ויטנאם" - -#: classes/class-wc-countries.php:276 -msgid "Wallis and Futuna" -msgstr "איי ווליס ופוטונה" - -#: classes/class-wc-countries.php:277 -msgid "Western Sahara" -msgstr "מערב הסהרה" - -#: classes/class-wc-countries.php:278 -msgid "Yemen" -msgstr "תימן" - -#: classes/class-wc-countries.php:279 -msgid "Zambia" -msgstr "זמביה" - -#: classes/class-wc-countries.php:280 -msgid "Zimbabwe" -msgstr "זימבבואה" - -#: classes/class-wc-countries.php:418 -msgid "to the" -msgstr "כדי" - -#: classes/class-wc-countries.php:419 -msgid "to" -msgstr "אל ... " - -#: classes/class-wc-countries.php:432 -msgid "the" -msgstr "ה-" - -#: classes/class-wc-countries.php:444 -msgid "VAT" -msgstr "מע"מ" - -#: classes/class-wc-countries.php:444 templates/cart/totals.php:110 -#: templates/checkout/review-order.php:113 -msgid "Tax" -msgstr "מיסים" - -#: classes/class-wc-countries.php:457 -msgid "(incl. VAT)" -msgstr "(כולל מע"מ)" - -#: classes/class-wc-countries.php:457 -msgid "(incl. tax)" -msgstr "(כולל מיסים)" - -#: classes/class-wc-countries.php:470 -msgid "(ex. VAT)" -msgstr "(לא כולל מע"מ)" - -#: classes/class-wc-countries.php:470 -msgid "(ex. tax)" -msgstr "(לא כולל מיסים)" - -#: classes/class-wc-countries.php:694 classes/class-wc-countries.php:704 -#: classes/class-wc-countries.php:724 classes/class-wc-countries.php:779 -#: classes/class-wc-countries.php:803 classes/class-wc-countries.php:848 -#: classes/class-wc-countries.php:872 -msgid "Province" -msgstr "פרובינציה" - -#: classes/class-wc-countries.php:710 -msgid "Canton" -msgstr "קנטון" - -#: classes/class-wc-countries.php:719 classes/class-wc-countries.php:854 -msgid "Municipality" -msgstr "עירייה" - -#: classes/class-wc-countries.php:766 -msgid "Town / District" -msgstr "עיר / רובע" - -#: classes/class-wc-countries.php:769 -msgid "Region" -msgstr "אזור" - -#: classes/class-wc-countries.php:877 -msgid "Zip" -msgstr "מיקוד" - -#: classes/class-wc-countries.php:880 -msgid "State" -msgstr "מדינה" - -#: classes/class-wc-countries.php:885 -#: templates/cart/shipping-calculator.php:68 -msgid "Postcode" -msgstr "תא דואר" - -#: classes/class-wc-countries.php:888 -msgid "County" -msgstr "ארץ" - -#: classes/class-wc-countries.php:920 classes/class-wc-countries.php:921 -#: classes/class-wc-countries.php:996 -#: templates/cart/shipping-calculator.php:68 -msgid "Postcode / Zip" -msgstr "מיקוד" - -#: classes/class-wc-countries.php:925 classes/class-wc-countries.php:926 -#: classes/class-wc-countries.php:985 -msgid "Town / City" -msgstr "עיר" - -#: classes/class-wc-countries.php:930 classes/class-wc-countries.php:931 -#: classes/class-wc-countries.php:991 -msgid "State / County" -msgstr "מדינה / ארץ" - -#: classes/class-wc-countries.php:955 -msgid "Country" -msgstr "ארץ" - -#: classes/class-wc-countries.php:960 -msgid "First Name" -msgstr "שם פרטי" - -#: classes/class-wc-countries.php:965 -msgid "Last Name" -msgstr "שם משפחה" - -#: classes/class-wc-countries.php:971 -msgid "Company Name" -msgstr "שם חברה" - -#: classes/class-wc-countries.php:975 -msgid "Address" -msgstr "כתובת" - -#: classes/class-wc-countries.php:976 -msgctxt "placeholder" -msgid "Street address" -msgstr "כתובת" - -#: classes/class-wc-countries.php:981 -msgctxt "placeholder" -msgid "Apartment, suite, unit etc. (optional)" -msgstr "דירה (לא חובה)" - -#: classes/class-wc-countries.php:1038 -msgid "Email Address" -msgstr "מייל" - -#: classes/class-wc-countries.php:1044 -msgid "Phone" -msgstr "טלפון" - -#: classes/class-wc-coupon.php:420 -msgid "Coupon code applied successfully." -msgstr "קוד קופון הוזן בהצלחה." - -#: classes/class-wc-coupon.php:441 -msgid "Coupon is not valid." -msgstr "הקופון לא תקני" - -#: classes/class-wc-coupon.php:444 classes/class-wc-coupon.php:494 -msgid "Coupon does not exist!" -msgstr "הקופון לא קיים!" - -#: classes/class-wc-coupon.php:447 -msgid "" -"Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from " -"your order." -msgstr "" -"אנו מצטערים, אך ניראה כי הקופון \"%s\" לא תקין - והוא הוסר מההזמנה שלך." - -#: classes/class-wc-coupon.php:450 -msgid "" -"Sorry, it seems the coupon \"%s\" is not yours - it has now been removed " -"from your order." -msgstr "אנו מצטערים, אך הקופון \"%s\" לא שייך לך - הוא הוסר מההזמנה שלך." - -#: classes/class-wc-coupon.php:453 -msgid "Coupon code already applied!" -msgstr "קוד הקופון הזה כבר שומש." - -#: classes/class-wc-coupon.php:456 -msgid "" -"Sorry, coupon \"%s\" has already been applied and cannot be used in " -"conjunction with other coupons." -msgstr "" -"מצטער, הקופון \"%s\" כבר שומש, ולא ניתן להשתמש בשילוב עם קופונים אחרים." - -#: classes/class-wc-coupon.php:459 -msgid "Coupon usage limit has been reached." -msgstr "הגעת למגבלת הכמות לשימוש בקופונים." - -#: classes/class-wc-coupon.php:462 -msgid "This coupon has expired." -msgstr "הקופון פג תוקף." - -#: classes/class-wc-coupon.php:465 -msgid "The minimum spend for this coupon is %s." -msgstr "הקנייה המינימלית לקופון זה היא %s." - -#: classes/class-wc-coupon.php:468 -msgid "Sorry, this coupon is not applicable to your cart contents." -msgstr "אנו מצטערים, אך לא ניתן לממש קופון זה לתוכן ההזמנה שלך." - -#: classes/class-wc-coupon.php:471 -msgid "Sorry, this coupon is not valid for sale items." -msgstr "לא ניתן לממש את הקופון הזה למוצרים במבצע." - -#: classes/class-wc-coupon.php:497 -msgid "Please enter a coupon code." -msgstr "אנא הזן קוד הקופון" - -#: classes/class-wc-customer.php:628 classes/class-wc-customer.php:638 -msgid "File %d" -msgstr "קובץ %d" - -#: classes/class-wc-emails.php:246 -msgid "Note" -msgstr "הערה" - -#: classes/class-wc-emails.php:281 -msgid "Product low in stock" -msgstr "כמות היחידות של המוצר במלאי נמוכה" - -#: classes/class-wc-emails.php:286 classes/class-wc-emails.php:318 -#: classes/class-wc-emails.php:362 -msgid "Variation #%s of %s" -msgstr "מאפיין מספר %s מתוך %s" - -#: classes/class-wc-emails.php:288 classes/class-wc-emails.php:320 -#: classes/class-wc-emails.php:364 -msgid "Product #%s - %s" -msgstr "מוצר מספר %s - %s" - -#: classes/class-wc-emails.php:290 -msgid "is low in stock." -msgstr "בכמות מוגבלת." - -#: classes/class-wc-emails.php:313 -msgid "Product out of stock" -msgstr "המוצר לא נמצא במלאי." - -#: classes/class-wc-emails.php:322 -msgid "is out of stock." -msgstr "לא במלאי." - -#: classes/class-wc-emails.php:357 -msgid "Product Backorder" -msgstr "הזמנת מוצר מראש" - -#: classes/class-wc-emails.php:366 -msgid "%s units of %s have been backordered in order #%s." -msgstr "%s יחידות, הזומנו מראש בהזמנה מספר #%s." - -#: classes/class-wc-order.php:283 -msgctxt "hash before order number" -msgid "#" -msgstr "מספר " - -#: classes/class-wc-order.php:858 -msgid " %svia %s" -msgstr " %sדרך %s" - -#: classes/class-wc-order.php:923 -msgid "Cart Subtotal:" -msgstr "סכום ביניים העגלה:" - -#: classes/class-wc-order.php:929 -msgid "Cart Discount:" -msgstr "הנחת העגלה:" - -#: classes/class-wc-order.php:935 -msgid "Shipping:" -msgstr "משלוח:" - -#: classes/class-wc-order.php:980 -msgid "Subtotal:" -msgstr "סכום ביניים:" - -#: classes/class-wc-order.php:1006 -msgid "Order Discount:" -msgstr "הנחת העגלה:" - -#: classes/class-wc-order.php:1011 -msgid "Order Total:" -msgstr "הכך הכל הזמנה:" - -#: classes/class-wc-order.php:1034 templates/cart/totals.php:145 -#: templates/checkout/review-order.php:151 -msgid "(Includes %s)" -msgstr "(כולל %s)" - -#: classes/class-wc-order.php:1183 classes/class-wc-order.php:1185 -#: classes/class-wc-order.php:1188 -msgid "WooCommerce" -msgstr "WooCommerce" - -#: classes/class-wc-order.php:1235 -msgid "Order status changed from %s to %s." -msgstr "מצב ההזמנה שונה מהמצב %s למצב %s" - -#: classes/class-wc-order.php:1461 woocommerce-ajax.php:1163 -#: woocommerce-ajax.php:1164 -msgid "Item #%s stock reduced from %s to %s." -msgstr "המלאי של פריט מספר %s ירד מ%s ל %s" - -#: classes/class-wc-order.php:1473 -msgid "Order item stock reduced successfully." -msgstr "כמות הפריט במלאי הופחתה בהצלחה." - -#: classes/class-wc-product-external.php:56 -msgid "Buy product" -msgstr "קניית המוצר" - -#: classes/class-wc-shortcodes.php:571 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:257 -#: templates/loop/add-to-cart.php:46 -#: templates/single-product/add-to-cart/grouped.php:45 -#: templates/single-product/add-to-cart/grouped.php:75 -#: templates/single-product/add-to-cart/simple.php:42 -#: templates/single-product/add-to-cart/variable.php:78 -msgid "Add to cart" -msgstr "הוסף לעגלה" - -#: classes/emails/class-wc-email-customer-completed-order.php:24 -msgid "Completed order" -msgstr "ההזמנה הסתיימה" - -#: classes/emails/class-wc-email-customer-completed-order.php:25 -msgid "" -"Order complete emails are sent to the customer when the order is marked " -"complete and usual indicates that the order has been shipped." -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:27 -msgid "Your order is complete" -msgstr "ההזמנה שלך הסתיימה בהצלחה" - -#: classes/emails/class-wc-email-customer-completed-order.php:28 -msgid "Your {blogname} order from {order_date} is complete" -msgstr "ההזמנה שלך באתר {blogname} מתאריך {order_date} הסתיימה" - -#: classes/emails/class-wc-email-customer-completed-order.php:37 -msgid "Your order is complete - download your files" -msgstr "ההזמנה שלך הסתיימה - הורד את הקבצים שלך" - -#: classes/emails/class-wc-email-customer-completed-order.php:38 -msgid "" -"Your {blogname} order from {order_date} is complete - download your files" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:141 -#: classes/emails/class-wc-email-new-order.php:128 -msgid "Subject" -msgstr "נושא" - -#: classes/emails/class-wc-email-customer-completed-order.php:148 -#: classes/emails/class-wc-email-new-order.php:135 -msgid "Email Heading" -msgstr "הדינג מייל" - -#: classes/emails/class-wc-email-customer-completed-order.php:155 -msgid "Subject (downloadable)" -msgstr "נושא (להורדה)" - -#: classes/emails/class-wc-email-customer-completed-order.php:162 -msgid "Email Heading (downloadable)" -msgstr "כותרת מייל (להורדה)" - -#: classes/emails/class-wc-email-customer-invoice.php:27 -msgid "Customer invoice" -msgstr "חשבונית ללקוח" - -#: classes/emails/class-wc-email-customer-invoice.php:28 -msgid "" -"Customer invoice emails can be sent to the user containing order info and " -"payment links." -msgstr "מייל חשבונית ללקוח ניתן לשלוח למשתמש המכיל מידע וקישורים כדי תשלום." - -#: classes/emails/class-wc-email-customer-invoice.php:33 -msgid "Invoice for order {order_number} from {order_date}" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:34 -msgid "Invoice for order {order_number}" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:36 -msgid "Your {blogname} order from {order_date}" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:37 -msgid "Order {order_number} details" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:158 -msgid "Email subject (paid)" -msgstr "נושא הדואר אלקטרוני (בתשלום)" - -#: classes/emails/class-wc-email-customer-invoice.php:165 -msgid "Email heading (paid)" -msgstr "אימייל כותרת (בתשלום)" - -#: classes/emails/class-wc-email-customer-new-account.php:31 -msgid "New account" -msgstr "חשבון חדש" - -#: classes/emails/class-wc-email-customer-new-account.php:32 -msgid "" -"Customer new account emails are sent when a customer signs up via the " -"checkout or My Account page." -msgstr "" -"מייל חשבון חדשים של לקוחות נשלחים כאשר לקוח חותם על דרך הקופה או דף החשבון " -"שלי." - -#: classes/emails/class-wc-email-customer-new-account.php:37 -msgid "Your account on {blogname}" -msgstr "החשבון שלך באתר {blogname}" - -#: classes/emails/class-wc-email-customer-new-account.php:38 -msgid "Welcome to {blogname}" -msgstr "ברוכים הבאים ל" - -#: classes/emails/class-wc-email-customer-note.php:29 -msgid "Customer note" -msgstr "הערות לקוח" - -#: classes/emails/class-wc-email-customer-note.php:30 -msgid "Customer note emails are sent when you add a note to an order." -msgstr "מייל הערת לקוח נשלחים בעת הוספת הערה להזמנה." - -#: classes/emails/class-wc-email-customer-note.php:35 -msgid "Note added to your {blogname} order from {order_date}" -msgstr "הערה התווספה לסל {blogname} מ{ order_date}" - -#: classes/emails/class-wc-email-customer-note.php:36 -msgid "A note has been added to your order" -msgstr "ההערה נוספה להזמנה שלך" - -#: classes/emails/class-wc-email-customer-processing-order.php:24 -msgid "Processing order" -msgstr "ההזמנה בטיפול" - -#: classes/emails/class-wc-email-customer-processing-order.php:25 -msgid "" -"This is an order notification sent to the customer after payment containing " -"order details." -msgstr "זו התראת הזמנה נשלחה ללקוח לאחר תשלום המכילים פרטי הזמנה." - -#: classes/emails/class-wc-email-customer-processing-order.php:27 -msgid "Thank you for your order" -msgstr "תודה על הזמנתך" - -#: classes/emails/class-wc-email-customer-processing-order.php:28 -msgid "Your {blogname} order receipt from {order_date}" -msgstr "" - -#: classes/emails/class-wc-email-customer-reset-password.php:36 -msgid "Reset password" -msgstr "אפס סיסמה" - -#: classes/emails/class-wc-email-customer-reset-password.php:37 -msgid "" -"Customer reset password emails are sent when a customer resets their " -"password." -msgstr "מייל איפוס סיסמא לקוחות נשלחים כאשר מאפסים את הסיסמה שלהם ללקוח." - -#: classes/emails/class-wc-email-customer-reset-password.php:42 -msgid "Password Reset for {blogname}" -msgstr "איפוס סיסמא עבור {blogname}" - -#: classes/emails/class-wc-email-customer-reset-password.php:43 -msgid "Password Reset Instructions" -msgstr "הוראות איפוס סיסמה" - -#: classes/emails/class-wc-email-new-order.php:24 -msgid "New order" -msgstr "הזמנה חדשה" - -#: classes/emails/class-wc-email-new-order.php:25 -msgid "New order emails are sent when an order is received/paid by a customer." -msgstr "מייל סדר חדשים נשלחים כאשר הזמנה התקבלה / שולמה על ידי לקוח." - -#: classes/emails/class-wc-email-new-order.php:27 -msgid "New customer order" -msgstr "הזמנת לקוח חדש" - -#: classes/emails/class-wc-email-new-order.php:28 -msgid "[{blogname}] New customer order ({order_number}) - {order_date}" -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:121 -msgid "Recipient(s)" -msgstr "נמען(ים)" - -#: classes/emails/class-wc-email-new-order.php:123 -msgid "" -"Enter recipients (comma separated) for this email. Defaults to %s." -msgstr "" -"כתוב נמענים (מופרדים בפסיקים) למייל זה. ברירת המחדל היא %s" - -#: classes/emails/class-wc-email-new-order.php:130 -msgid "" -"This controls the email subject line. Leave blank to use the default " -"subject: %s." -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:137 -msgid "" -"This controls the main heading contained within the email notification. " -"Leave blank to use the default heading: %s." -msgstr "" -"זה קובע את ההדינג הראשי הכלול בהודעת האימייל. השאר ריק כדי להשתמש בברירת " -"מחדל: %s." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:28 -msgid "Bacs" -msgstr "BACS" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:65 -msgid "Enable Bank Transfer" -msgstr "אפשר העברה בנקאית" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:69 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:63 -#: classes/gateways/cod/class-wc-gateway-cod.php:87 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:171 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:125 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:104 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:84 -msgid "Title" -msgstr "כותרת" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:71 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:65 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:173 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:127 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:85 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:83 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:60 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:106 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:86 -msgid "This controls the title which the user sees during checkout." -msgstr "זה קובע את הכותרת שהמשתמש רואה בשלב הקופה." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:72 -msgid "Direct Bank Transfer" -msgstr "העברה בנקאית" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:76 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:70 -msgid "Customer Message" -msgstr "הודעת לקוח" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:78 -msgid "" -"Give the customer instructions for paying via BACS, and let them know that " -"their order won't be shipping until the money is received." -msgstr "" -"תן את ההוראות ללקוחות לתשלום באמצעות BACS, ולהודיע ​​להם כי ההזמנה שלהם לא " -"תישלח עד קבלת הכסף." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:79 -msgid "" -"Make your payment directly into our bank account. Please use your Order ID " -"as the payment reference. Your order wont be shipped until the funds have " -"cleared in our account." -msgstr "" -"את התשלום ישירות לחשבון הבנק שלנו. אנא השתמש במזהה הזמנה שלך כהפניה לתשלום. " -"ההזמנה תצא למשלוח כשהתשלום יכנס לחשבון שלנו." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:82 -msgid "Account Details" -msgstr "פרטי לקוח" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:84 -msgid "Optionally enter your bank details below for customers to pay into." -msgstr "לחלופין להזין את פרטי הבנק שלך מתחת ללקוחות לשלם ל." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:88 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:163 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:203 -msgid "Account Name" -msgstr "שם חשבון" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:94 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:164 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:204 -msgid "Account Number" -msgstr "מספר חשבון" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:100 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:165 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:205 -msgid "Sort Code" -msgstr "סוג מיון" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:106 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:166 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:206 -msgid "Bank Name" -msgstr "שם בנק" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:112 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:167 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:207 -msgid "IBAN" -msgstr "IBAN" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:117 -msgid "BIC (formerly Swift)" -msgstr "BIC (לשעבר סוויפט)" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:136 -msgid "BACS Payment" -msgstr "תשלום BACS" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:137 -msgid "" -"Allows payments by BACS (Bank Account Clearing System), more commonly known " -"as direct bank/wire transfer." -msgstr "" -"מאפשר תשלומי BACS (מערכת סליקת חשבון בנק), הידועים יותר בכינויו העברה ישירה " -"בנק / חוט." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:158 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:200 -msgid "Our Details" -msgstr "הפרטים שלנו" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:168 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:208 -msgid "BIC" -msgstr "BIC" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:234 -msgid "Awaiting BACS payment" -msgstr "ממתין לתשלום BACS" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:28 -msgid "Cheque" -msgstr "צ'ק" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:59 -msgid "Enable Cheque Payment" -msgstr "אפשר תשלום בצ'ק" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:66 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:90 -msgid "Cheque Payment" -msgstr "תשלום בצ'ק" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:72 -msgid "" -"Let the customer know the payee and where they should be sending the cheque " -"to and that their order won't be shipping until you receive it." -msgstr "" -"הודעה ללקוח מהוא המוטב לתשלום ולהכין לשלוח את הצ'ק, והודעה שההזמנה לא תישלח " -"עד שתקבל את הצ'ק." - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:73 -msgid "" -"Please send your cheque to Store Name, Store Street, Store Town, Store " -"State / County, Store Postcode." -msgstr "" -"נא לשלוח את הצ'ק שלך ל שם החנות, חנות רחוב, חנות בעיר, חנות המדינה / מחוז, " -"חנות מיקוד." - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:91 -msgid "" -"Allows cheque payments. Why would you take cheques in this day and age? Well " -"you probably wouldn't but it does allow you to make test purchases for " -"testing order emails and the 'success' pages etc." -msgstr "" -"מאפשר תשלומים בהמחאות. למה אתה לוקח את הצ'קים ביום ובגיל הזה? טוב אתה כנראה " -"לא אבל זה מאפשר לך לבצע רכישות בדיקה למייל סדר בדיקות ודפים 'ההצלחה' וכו '" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:147 -msgid "Awaiting cheque payment" -msgstr "ממתקין לתשלום צ'ק" - -#: classes/gateways/cod/class-wc-gateway-cod.php:27 -#: classes/gateways/cod/class-wc-gateway-cod.php:54 -#: classes/gateways/cod/class-wc-gateway-cod.php:90 -msgid "Cash on Delivery" -msgstr "מזומן בהעברה" - -#: classes/gateways/cod/class-wc-gateway-cod.php:55 -msgid "Have your customers pay with cash (or by other means) upon delivery." -msgstr "האם הלקוחות שלך לשלם במזומן (או באמצעים אחרים) עם מסירה." - -#: classes/gateways/cod/class-wc-gateway-cod.php:80 -msgid "Enable COD" -msgstr "אפשר COD" - -#: classes/gateways/cod/class-wc-gateway-cod.php:81 -msgid "Enable Cash on Delivery" -msgstr "אפשר מזומן בעת ​​המסירה" - -#: classes/gateways/cod/class-wc-gateway-cod.php:89 -msgid "Payment method title that the customer will see on your website." -msgstr " תיאור שיטת התשלום שהלקוח יראה באתר האינטרנט שלך." - -#: classes/gateways/cod/class-wc-gateway-cod.php:94 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:178 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:132 -#: woocommerce-template.php:748 -msgid "Description" -msgstr "תיאור" - -#: classes/gateways/cod/class-wc-gateway-cod.php:96 -msgid "Payment method description that the customer will see on your website." -msgstr " תיאור שיטת התשלום שהלקוח יראה באתר האינטרנט שלך." - -#: classes/gateways/cod/class-wc-gateway-cod.php:97 -#: classes/gateways/cod/class-wc-gateway-cod.php:103 -msgid "Pay with cash upon delivery." -msgstr "משלם במזומן בעת ​​המסירה." - -#: classes/gateways/cod/class-wc-gateway-cod.php:100 -msgid "Instructions" -msgstr "הוראות" - -#: classes/gateways/cod/class-wc-gateway-cod.php:102 -msgid "Instructions that will be added to the thank you page." -msgstr "הוראות שתתווספנה לדף תודה." - -#: classes/gateways/cod/class-wc-gateway-cod.php:106 -msgid "Enable for shipping methods" -msgstr "אפשר לשיטת משלוח" - -#: classes/gateways/cod/class-wc-gateway-cod.php:111 -msgid "" -"If COD is only available for certain methods, set it up here. Leave blank to " -"enable for all methods." -msgstr "" -"אם COD הוא זמין רק לשיטות מסוימות, להגדיר אותו כאן. שאר ריק על מנת לאפשר לכל " -"השיטות." - -#: classes/gateways/cod/class-wc-gateway-cod.php:176 -msgid "Payment to be made upon delivery." -msgstr "תשלום יבוצע בעת הלידה." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:31 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:196 -#, fuzzy -msgid "Mijireh Checkout" -msgstr "Mijireh קופה" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:143 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:321 -msgid "Mijireh error:" -msgstr "שגיאת Mijireh:" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:160 -#, fuzzy -msgid "Enable Mijireh Checkout" -msgstr "אפשר Mijireh קופה" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:164 -#, fuzzy -msgid "Access Key" -msgstr "לגשת למפתח" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:166 -msgid "The Mijireh access key for your store." -msgstr "מפתח הגישה Mijireh לחנות שלך." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:174 -msgid "Credit Card" -msgstr "כרטיס אשראי" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:180 -msgid "Pay securely with you credit card." -msgstr "תשלום מאובטח עם כרטיס אשראי לך." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:181 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:134 -msgid "This controls the description which the user sees during checkout." -msgstr "זה קובע את הכותרת שהמשתמש רואה בשלב הקופה." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:200 -#, fuzzy -msgid "Get started with Mijireh Checkout" -msgstr "התחל לעבוד עם Mijireh קופה" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:201 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site. Mijireh supports a wide variety of payment gateways: Stripe, " -"Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and more." -msgstr "" -"מספקת תואם PCI במלואו, דרך בטוחה כדי לאסוף ולהעביר נתונים לכרטיסי אשראי שער " -"התשלום שלך, תוך שמירה לך שליטה על העיצוב של האתר שלך. Mijireh תומך במגוון " -"רחב של תשלום שערים: פסים, Authorize.net, PayPal, eWay, SagePay, Braintree, " -"PayLeap, ועוד." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:203 -msgid "Join for free" -msgstr "הצטרף בחינם" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:203 -msgid "Learn more about WooCommerce and Mijireh" -msgstr "למידע נוסף על WooCommerce וMijireh" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:207 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site." -msgstr "" -"מספקת תואם PCI במלואו, דרך בטוחה כדי לאסוף ולהעביר נתונים לכרטיסי אשראי שער " -"התשלום שלך, תוך שמירה לך שליטה על העיצוב של האתר שלך." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:34 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:128 -msgid "PayPal" -msgstr "PayPal" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:90 -msgid "PayPal standard" -msgstr "PayPal סטנדרטי" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:91 -msgid "" -"PayPal standard works by sending the user to PayPal to enter their payment " -"information." -msgstr "" -"PayPal הסטנדרטי עובד על ידי שליחה למשתמש PayPal כדי להזין את פרטי התשלום " -"שלהם." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:103 -#, fuzzy -msgid "Gateway Disabled" -msgstr "שער לנכים" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:103 -msgid "PayPal does not support your store currency." -msgstr "PayPal לא תומך במטבע החנות שלך." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:121 -msgid "Enable PayPal standard" -msgstr "אפשר PayPal " - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:135 -msgid "" -"Pay via PayPal; you can pay with your credit card if you don't have a PayPal " -"account" -msgstr "" -"תשלום באמצעות PayPal, אתה יכול לשלם בכרטיס האשראי שלך אם אין לך חשבון PayPal" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:138 -msgid "PayPal Email" -msgstr "מייל של חשבון PayPal" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:140 -msgid "" -"Please enter your PayPal email address; this is needed in order to take " -"payment." -msgstr "אנא הכנס את כתובת המייל שלך ב PayPal, זה נדרש על מנת לקבל את התשלום." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:146 -msgid "Invoice Prefix" -msgstr "קידומת חשבונית" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:148 -msgid "" -"Please enter a prefix for your invoice numbers. If you use your PayPal " -"account for multiple stores ensure this prefix is unique as PayPal will not " -"allow orders with the same invoice number." -msgstr "" -"אנא הכנס קידומת למספרי החשבוניות שלך. אם אתה משתמש בחשבון הפייפל שלך לחנויות " -"מרובות, בדוק שהקידומת הזו היא ייחודית לכל חנות כי פייפל לא יאפשר הזמנות עם " -"אותו מספר החשבונית." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:153 -msgid "Submission method" -msgstr "שיטת הגשה" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:155 -msgid "Use form submission method." -msgstr "השתמש בשיטת הגשת טופס." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:156 -msgid "" -"Enable this to post order data to PayPal via a form instead of using a " -"redirect/querystring." -msgstr "" -"אפשר את זה כדי לשלוח את נתוני ההזמנה לPayPal באמצעות טופס במקום להשתמש ב " -"QueryString או ניטוב מחדש." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:160 -msgid "Page Style" -msgstr "סגנון העמוד" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:162 -msgid "" -"Optionally enter the name of the page style you wish to use. These are " -"defined within your PayPal account." -msgstr "" -"לזכותך אפשרות להזין את שם סגנון הדף שאתה רוצה להשתמש. זה מוגדר בחשבון " -"הPayPal שלך." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:165 -msgid "Optional" -msgstr "לא חובה" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:168 -msgid "Shipping options" -msgstr "אפשרויות משלוח" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:173 -msgid "Shipping details" -msgstr "פרטי משלוח" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:175 -msgid "Send shipping details to PayPal instead of billing." -msgstr "שלח כתובת משלוח לPayPal במקום כתובת החיוב." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:177 -msgid "" -"PayPal allows us to send 1 address. If you are using PayPal for shipping " -"labels you may prefer to send the shipping address rather than billing." -msgstr "" -"PayPal מאפשר לנו לשלוח כתובת אחת בלבד. אם אתה משתמש בפייפאל למשלוח ייתכן " -"שתעדיף לשלוח את הכתובת למשלוח ולא לחיוב." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:181 -msgid "Address override" -msgstr "עקיפת כתובת" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:183 -msgid "" -"Enable \"address_override\" to prevent address information from being " -"changed." -msgstr "אפשר \"address_override\" כדי למנוע שינוי בכתובת." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:184 -msgid "" -"PayPal verifies addresses therefore this setting can cause errors (we " -"recommend keeping it disabled)." -msgstr "" -"PayPal מאמת כתובות לכן הגדרה זו עשויה לגרום לשגיאות (אנו ממליצים לשמור אותו " -"לא זמינים)." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:188 -msgid "Gateway Testing" -msgstr "בדיקת Gateway" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:193 -msgid "PayPal sandbox" -msgstr "ארגז חול של PayPal " - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:195 -msgid "Enable PayPal sandbox" -msgstr "אפשר PayPal ארגז חול" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:197 -msgid "" -"PayPal sandbox can be used to test payments. Sign up for a developer account " -"here." -msgstr "" -"מצב ארגז החול של פייפל יכול לשמש כדי לבדוק את תשלומים. הרשם לחשבון מפתח כאן." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:200 -msgid "Debug Log" -msgstr "יומן באגים" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:202 -msgid "Enable logging" -msgstr "לאפשר רישום" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:204 -msgid "" -"Log PayPal events, such as IPN requests, inside woocommerce/logs/" -"paypal.txt" -msgstr "" -"היכנס אירועי PayPal, כגון בקשות IPN, בתוך woocommerce / יומנים / " -"paypal.txt " - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:313 -msgid "Order %s" -msgstr "הזמנה %s" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:323 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:373 -msgid "Shipping via" -msgstr "משלוח דרך" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:414 -msgid "" -"Thank you for your order. We are now redirecting you to PayPal to make " -"payment." -msgstr "תודה על ההזמנה שלך. כעת אנו מנתבים אותך מחדש לPayPal לביצוע תשלום." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:435 -msgid "Pay via PayPal" -msgstr "תשלום באמצעות PayPal" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:435 -msgid "Cancel order & restore cart" -msgstr "ביטול ההזמנה ושיחזור הסל" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:489 -msgid "" -"Thank you for your order, please click the button below to pay with PayPal." -msgstr "תודה על ההזמנה שלך, אנא לחץ על הכפתור למטה לשלם באמצעות PayPal." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:634 -msgid "Validation error: PayPal amounts do not match (gross %s)." -msgstr "שגיאת אימות: כמויות PayPal אינן תואמת %s" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:652 -msgid "IPN payment completed" -msgstr "תשלום IPN השלים" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:664 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:672 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:690 -msgid "Payment %s via IPN." -msgstr "תשלום %s באמצעות IPN." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:677 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:695 -msgid "Order refunded/reversed" -msgstr "להורות יוחזר / הפוך" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:678 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:696 -msgid "Order %s has been marked as refunded - PayPal reason code: %s" -msgstr "סדר %s סומן כיוחזר - קוד PayPal %s" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:681 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:699 -msgid "Payment for order %s refunded/reversed" -msgstr "תשלום עבור %s יוחזר / הפוך" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:26 -msgid "Google Analytics" -msgstr "Google Analytics" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:27 -msgid "" -"Google Analytics is a free service offered by Google that generates detailed " -"statistics about the visitors to a website." -msgstr "" -"Google Analytics הוא שירות חינם המוצע על ידי גוגל שמיוצר נתונים סטטיסטיים " -"מפורטים על המבקרים לאתר." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:62 -msgid "Google Analytics ID" -msgstr "Google Analytics מזהה" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:63 -msgid "" -"Log into your google analytics account to find your ID. e.g. UA-XXXXX-" -"X" -msgstr "" -"היכנס לחשבון Google Analytics שלך כדי למצוא את מספר זיהוי שלך. למשל " -"UA-XXXXX-X " - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:68 -msgid "Tracking code" -msgstr "קוד מעקב" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:69 -msgid "" -"Add tracking code to your site's footer. You don't need to enable this if " -"using a 3rd party analytics plugin." -msgstr "" -"הוספת קוד המעקב באתר שלך. אתה לא צריך לאפשר את זה, אם באמצעות תוסף ניתוח 3 " -"צד." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:75 -msgid "Add eCommerce tracking code to the thankyou page" -msgstr "הוסף קוד מעקב eCommerce לדף Thankyou" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:81 -msgid "Add event tracking code for add to cart actions" -msgstr "הוסף קוד אירוע מעקב להוסיף לעגלת קניות פעולות" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:113 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:168 -#: woocommerce-ajax.php:1725 -msgid "Guest" -msgstr "אורח" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:201 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:258 -#: templates/single-product/meta.php:19 -msgid "SKU:" -msgstr "מק"ט:" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:256 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:276 -#: woocommerce.php:948 -msgid "Products" -msgstr "מוצרים" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:277 -msgid "Add to Cart" -msgstr "הוסף לעגלה" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:26 -msgid "ShareDaddy" -msgstr "ShareDaddy" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:27 -msgid "ShareDaddy is a sharing plugin bundled with JetPack." -msgstr "ShareDaddy הוא תוסף שיתוף שמגיע יחד עם JetPack." - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:51 -msgid "Output ShareDaddy button?" -msgstr "הצגת כפתור ShareDaddy?" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:52 -msgid "Enable this option to show the ShareDaddy button on the product page." -msgstr "הפעל אפשרות זו כדי להציג את כפתור ShareDaddy בדף המוצר." - -#: classes/integrations/sharethis/class-wc-sharethis.php:29 -msgid "ShareThis" -msgstr "ShareThis" - -#: classes/integrations/sharethis/class-wc-sharethis.php:30 -msgid "" -"ShareThis offers a sharing widget which will allow customers to share links " -"to products with their friends." -msgstr "" -"ShareThis מציע יישומון שיתוף אשר יאפשר ללקוחות לשתף קישורים של מוצרים עם " -"חבריהם." - -#: classes/integrations/sharethis/class-wc-sharethis.php:63 -msgid "ShareThis Publisher ID" -msgstr "ShareThis מזהה שותף" - -#: classes/integrations/sharethis/class-wc-sharethis.php:64 -msgid "" -"Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons on " -"product pages." -msgstr "" -"כתוב את מזהה ה %1$sShareThis publisher ID%2$s כדי להראות כפתורי השיתוף " -"החברתיים בדפי המוצרים." - -#: classes/integrations/sharethis/class-wc-sharethis.php:69 -msgid "ShareThis Code" -msgstr "ShareThis קוד" - -#: classes/integrations/sharethis/class-wc-sharethis.php:70 -msgid "You can tweak the ShareThis code by editing this option." -msgstr "אתה יכול לערוך את קוד ShareThis ידי עריכת אפשרות זו." - -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:22 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:329 -msgid "ShareYourCart" -msgstr "ShareYourCart" - -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:23 -msgid "" -"Increase your social media exposure by 10 percent! ShareYourCart helps you " -"get more customers by motivating satisfied customers to talk with their " -"friends about your products. For help with ShareYourCart view the documentation." -msgstr "" -"להגדיל את החשיפה של המדיה החברתית שלך על ידי 10 אחוזים! ShareYourCart מסייע " -"לך להשיג יותר לקוחות על ידי הנעת לקוחות מרוצים לדבר עם החברים שלהם על " -"המוצרים שלך. לקבלת עזרה בShareYourCart להציג תיעוד ." - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:328 -msgid "Share your cart settings" -msgstr "שתף את הגדרות עגלת הקניות שלך" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:342 -msgid "Button" -msgstr "כפתור" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:343 -msgid "Customize Button" -msgstr "עריכת כפתור" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:351 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:352 -msgid "Documentation" -msgstr "תיעוד" - -#: classes/integrations/shareyourcart/views/admin-page.php:33 -msgid "Setup your ShareYourCart account" -msgstr "הגדרת חשבון ShareYourCart" - -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Create an account" -msgstr "צור חשבון" - -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Can't access your account?" -msgstr "אינך יכול לגשת לחשבון שלך?" - -#: classes/integrations/shareyourcart/views/admin-page.php:100 -msgid "Configure" -msgstr "הגדרות" - -#: classes/integrations/shareyourcart/views/admin-page.php:110 -#: classes/integrations/shareyourcart/views/button-settings-page.php:120 -msgid "Save changes" -msgstr "שמור שינויים" - -#: classes/integrations/shareyourcart/views/button-settings-page.php:8 -#: classes/integrations/shareyourcart/views/button-settings-page.php:11 -msgid "Button style" -msgstr "עיצוב כפתור" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:25 -msgid "Flat rate" -msgstr "מחיר אחיד" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:28 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:461 -msgid "Flat Rates" -msgstr "מחירים אחידים" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:29 -msgid "Flat rates let you define a standard rate per item, or per order." -msgstr "מחיר אחיד מאפשרים להגדיר תעריף סטנדרטי עבור כל פריט, או לכל הזמנה." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:79 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:54 -msgid "Enable this shipping method" -msgstr "אפשר משלוחים" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:83 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:81 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:58 -msgid "Method Title" -msgstr "כותרת שיטה" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:86 -msgid "Flat Rate" -msgstr "מחיר אחיד" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:90 -msgid "Cost per order" -msgstr "מחיר פר הזמנה" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:96 -msgid "" -"Enter a cost (excluding tax) per order, e.g. 5.00. Leave blank to disable." -msgstr "הזן עלות (לא כולל מיסים) לכל הזמנה, 5.00 לדוגמה. השאר ריק כדי לבטל." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:102 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:88 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:143 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:99 -msgid "Method availability" -msgstr "זמינות שיטה" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:107 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:93 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:148 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:104 -msgid "All allowed countries" -msgstr "לכל הארצות המותרות" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:108 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:112 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:98 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:149 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:153 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:105 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:109 -msgid "Specific Countries" -msgstr "ארצות ספציפיות" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:120 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:83 -msgid "Calculation Type" -msgstr "סוג חישוב" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:124 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:87 -msgid "Per Order - charge shipping for the entire order as a whole" -msgstr "עבור הזמנה - חיוב משלוח על כל ההזמנה" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:125 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:88 -msgid "Per Item - charge shipping for each item individually" -msgstr "עבור יחידה - חיוב משלוח על כל יחידה בנפרד" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:126 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:89 -msgid "Per Class - charge shipping for each shipping class in an order" -msgstr "עבור מחלקת משלוח - חיוב עבור כל מחלקת משלוח בהזמנה" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:130 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:93 -msgid "Tax Status" -msgstr "מצב המיסים" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:134 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:97 -msgid "Taxable" -msgstr "טעון מס" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:135 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:98 -msgid "None" -msgstr "ללא" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:139 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:102 -msgid "Default Cost" -msgstr "מחיר ברירת מחדל" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:145 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:108 -msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -msgstr "מחיר לא כולל מיסים. הכנס כמות, לדוגמא 2.50." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:151 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:114 -msgid "Default Handling Fee" -msgstr "מחיר ברירת מחדל לטיפול במשלוח" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:153 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:116 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. " -"Leave blank to disable." -msgstr "" -"עמלה ללא מיסים. הזן את הסכום, למשל 2.50, או אחוז, למשל 5%. השאר ריק כדי לבטל." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:159 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:122 -msgid "Minimum Fee" -msgstr "תשלום מינימלי" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:165 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:128 -msgid "" -"Enter a minimum fee amount. Fee's less than this will be increased. Leave " -"blank to disable." -msgstr "" -"הזן את סכום תשלום מינימאלי. הדמים פחות מזה יהיה מוגבר. שאר ריק כדי לבטל." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:171 -msgid "Shipping Options" -msgstr "אפשרויות משלוח" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:173 -msgid "" -"Optional extra shipping options with additional costs (one per line). " -"Example: Option Name|Cost|Per-order (yes or no). Example: " -"Priority Mail|6.95|yes. If per-order is set to no, it will use " -"the \"Calculation Type\" setting." -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:176 -msgid "Option Name|Cost|Per-order (yes or no)" -msgstr "שם אופציה | עלות | פר הזמנה (כן או לא)" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:467 -#: woocommerce.php:857 -msgid "Shipping Class" -msgstr "מחלקת משלוח" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:468 -msgid "Cost" -msgstr "עלות" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:468 -msgid "Cost, excluding tax." -msgstr "עלות, לא כולל מיסים." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:469 -msgid "Handling Fee" -msgstr "עלות טיפול" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:469 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -msgstr "עמלה ללא מיסים. הזן את הסכום, למשל 2.50, או אחוז, למשל 5%." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:474 -msgid "+ Add Flat Rate" -msgstr "+ הוסף מחיר אחיד" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:475 -msgid "" -"Add rates for shipping classes here — they will override the default " -"costs defined above." -msgstr "" -"הוסף מחירים עבור סוגי משלוח כאן - הם יעקפו את ברירת המחדל שהוגדרה לעיל." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:475 -msgid "Delete selected rates" -msgstr "מחק מחירים נבחרים" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:495 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:528 -msgid "Select a class…" -msgstr "בחר סוג משלוח…" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:500 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:501 -msgid "0.00" -msgstr "0.00" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:542 -msgid "Delete the selected rates?" -msgstr "למחוק מחיר שנבחר?" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:25 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:145 -msgid "Free Shipping" -msgstr "משלוח חינם" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:77 -msgid "Enable Free Shipping" -msgstr "אפשר משלוח חינם" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:106 -msgid "Free Shipping Requires..." -msgstr "משלוח חינם דורש ..." - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:110 -#: templates/order/order-details.php:110 templates/order/order-details.php:125 -msgid "N/A" -msgstr "לא ישים" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:111 -msgid "A valid free shipping coupon" -msgstr "הקופון משלוח חינם בתוקף" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:112 -msgid "A minimum order amount (defined below)" -msgstr "כמות הזמנה מינימאלית (מוגדר להלן)" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:113 -msgid "A minimum order amount OR a coupon" -msgstr "כמות הזמנה מינימאלית או קופון" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:114 -msgid "A minimum order amount AND a coupon" -msgstr "כמות הזמנה מינימאלית והקופון" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:118 -msgid "Minimum Order Amount" -msgstr "מינימום כמות הזמנה" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:124 -msgid "" -"Users will need to spend this amount to get free shipping (if enabled above)." -msgstr "" -"משתמשים יצטרכו להוציא את הסכום הזה כדי לקבל משלוח חינם (אם הופעל לעיל)." - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:28 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:31 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:61 -msgid "International Delivery" -msgstr "משלוח בינלאומי" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:32 -msgid "International delivery based on flat rate shipping." -msgstr "משלוח בינלאומי המבוסס על משלוח תעריף קבוע." - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:65 -msgid "Availability" -msgstr "זמינות" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:70 -msgid "Selected countries" -msgstr "ארצות נבחרות" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:71 -msgid "Excluding selected countries" -msgstr "לא כולל הארצות שנבחרו" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:75 -msgid "Countries" -msgstr "ארצות" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:25 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:107 -msgid "Local Delivery" -msgstr "משלוח מקומי" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:98 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:78 -msgid "Enable" -msgstr "אפשר" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:100 -msgid "Enable local delivery" -msgstr "אפשר משלוח מקומי" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:111 -msgid "Fee Type" -msgstr "סוג עלות" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:113 -msgid "How to calculate delivery charges" -msgstr "כיצד לחשב את דמי משלוח" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 -msgid "Fixed amount" -msgstr "סכום קבוע" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:117 -msgid "Percentage of cart total" -msgstr "אחוז מסך סל" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:118 -msgid "Fixed amount per product" -msgstr "סכום קבוע למוצר" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:123 -msgid "Delivery Fee" -msgstr "עלות משלוח" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:129 -msgid "" -"What fee do you want to charge for local delivery, disregarded if you choose " -"free. Leave blank to disable." -msgstr "" -"מה תשלום שרוצה לגבות תשלום עבור משלוח מקומי, אם תבחר להתעלם חופשי. שאר ריק " -"כדי לבטל." - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:135 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:91 -msgid "Zip/Post Codes" -msgstr "מיקוד/תא דואר" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:137 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:93 -msgid "" -"What zip/post codes would you like to offer delivery to? Separate codes with " -"a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -msgstr "" -"מה מיקודים / פוסט היית רוצה להציע למסירה? קודים נפרדים עם פסיק. קבל תווים " -"כלליים, כגון P * יתאים מיקוד של PE30." - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:172 -msgid "" -"Local delivery is a simple shipping method for delivering orders locally." -msgstr "משלוח מקומי הוא שיטה פשוטה להעברת משלוח הזמנות באופן מקומי." - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:25 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:87 -msgid "Local Pickup" -msgstr "איסוף עצמי" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:80 -msgid "Enable local pickup" -msgstr "אפשר איסוף עצמי" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:117 -msgid "Apply base tax rate" -msgstr "תחול שיעור מס בסיס" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:119 -msgid "" -"When this shipping method is chosen, apply the base tax rate rather than for " -"the customer's given address." -msgstr "כששיטת משלוח זו נבחרה, החל שיעור מס בסיס ולא לכתובתו של הלקוח הנתון." - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:134 -msgid "" -"Local pickup is a simple method which allows the customer to pick up their " -"order themselves." -msgstr "טנדר מקומי הוא שיטה פשוטה שמאפשרת ללקוח לאסוף את עצמם כדי." - -#: classes/shortcodes/class-wc-shortcode-cart.php:54 -#: woocommerce-functions.php:1637 -msgid "Please enter a valid postcode/ZIP." -msgstr "אנא הכנס מיקוד חוקי." - -#: classes/shortcodes/class-wc-shortcode-cart.php:65 -#: classes/shortcodes/class-wc-shortcode-cart.php:71 -msgid "Shipping costs updated." -msgstr "עלות משלוח עודכנה." - -#: classes/shortcodes/class-wc-shortcode-checkout.php:64 -msgid "" -"The order totals have been updated. Please confirm your order by pressing " -"the Place Order button at the bottom of the page." -msgstr "" -"הסכומים עודכנו. נא לאשר את ההזמנה על ידי לחיצה על כפתור ההזמנה בחלק התחתון " -"של הדף." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:80 -#: woocommerce-core-functions.php:2488 woocommerce-functions.php:1559 -msgid "Please enter your password." -msgstr "אנא הזן את הסיסמה שלך." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:95 -msgid "Your password has been reset." -msgstr "הסיסמה שלך אופסה." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:95 -msgid "Log in" -msgstr "התחבר" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:116 -msgid "Enter a username or e-mail address." -msgstr "הזן שם משתמש או כתובת מייל." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:123 -msgid "There is no user registered with that email address." -msgstr "אין משתמש רשום באמצעות כתובת מייל זאת." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:138 -msgid "Invalid username or e-mail." -msgstr "שם משתמש או מייל לא תקין." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:152 -msgid "Password reset is not allowed for this user" -msgstr "לא ניתן לאפס את הסיסמה למשתמש זה" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:180 -msgid "Check your e-mail for the confirmation link." -msgstr "בדוק את תיבת הדואר שלך לקישור אישור." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:200 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:205 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:212 -msgid "Invalid key" -msgstr "מפתח לא תקין" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:53 -msgid "Please enter a valid order ID" -msgstr "זן מזהה צו תקף" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:57 -msgid "Please enter a valid order email" -msgstr "אנא הכנס דואר אלקטרוני בתוקף" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:76 -msgid "Sorry, we could not find that order id in our database." -msgstr "מצטער, לא הצליח למצוא שמזהים הזמנה במסד הנתונים שלנו." - -#: classes/shortcodes/class-wc-shortcode-pay.php:65 -#: classes/shortcodes/class-wc-shortcode-pay.php:118 -msgid "" -"Your order has already been paid for. Please contact us if you need " -"assistance." -msgstr "ההזמנה כבר שולמה. אנא צור קשר אם אתה זקוק לעזרה." - -#: classes/shortcodes/class-wc-shortcode-pay.php:70 -#: classes/shortcodes/class-wc-shortcode-pay.php:125 -#: classes/shortcodes/class-wc-shortcode-view-order.php:49 -#: woocommerce-functions.php:880 woocommerce-functions.php:959 -msgid "Invalid order." -msgstr "הזמנה לא מאומתת." - -#: classes/shortcodes/class-wc-shortcode-pay.php:90 -#: templates/checkout/thankyou.php:40 -#: templates/emails/customer-completed-order.php:18 -#: templates/emails/customer-invoice.php:22 -#: templates/emails/customer-note.php:22 -#: templates/emails/customer-processing-order.php:18 -msgid "Order:" -msgstr "הזמנה:" - -#: classes/shortcodes/class-wc-shortcode-pay.php:94 -#: templates/checkout/thankyou.php:44 -msgid "Date:" -msgstr "תאריך:" - -#: classes/shortcodes/class-wc-shortcode-pay.php:98 -#: templates/checkout/thankyou.php:48 -msgid "Total:" -msgstr "סך הכל:" - -#: classes/shortcodes/class-wc-shortcode-pay.php:103 -#: templates/checkout/thankyou.php:53 -msgid "Payment method:" -msgstr "שיטת תשלום:" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:49 -msgid "My Account →" -msgstr "החשבון שלי ←" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:56 -msgid "" -"Order %s made on %s" -msgstr "" -"הזמנה מס %s שבוצעה בתאריך %s" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:57 -msgid "Order status: %s" -msgstr "מצב הזמנה: %s" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:63 -#: templates/order/tracking.php:31 -msgid "Order Updates" -msgstr "עדכוני הזמנה" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:69 -msgid "l jS \\of F Y, h:ia" -msgstr "l jS \\of F Y, h:ia" - -#: classes/widgets/class-wc-widget-best-sellers.php:31 -msgid "Display a list of your best selling products on your site." -msgstr "הצגת רשימה של המוצרים הנמכרים ביותר שלך באתר שלך." - -#: classes/widgets/class-wc-widget-best-sellers.php:33 -msgid "WooCommerce Best Sellers" -msgstr "הנמכרים ביותר של WooCommerce" - -#: classes/widgets/class-wc-widget-best-sellers.php:71 -msgid "Best Sellers" -msgstr "הנמכרים ביותר" - -#: classes/widgets/class-wc-widget-best-sellers.php:192 -#: classes/widgets/class-wc-widget-cart.php:115 -#: classes/widgets/class-wc-widget-featured-products.php:172 -#: classes/widgets/class-wc-widget-layered-nav.php:349 -#: classes/widgets/class-wc-widget-onsale.php:177 -#: classes/widgets/class-wc-widget-price-filter.php:179 -#: classes/widgets/class-wc-widget-product-categories.php:185 -#: classes/widgets/class-wc-widget-product-search.php:91 -#: classes/widgets/class-wc-widget-product-tag-cloud.php:101 -#: classes/widgets/class-wc-widget-random-products.php:133 -#: classes/widgets/class-wc-widget-recent-products.php:169 -#: classes/widgets/class-wc-widget-recent-reviews.php:158 -#: classes/widgets/class-wc-widget-recently-viewed.php:166 -#: classes/widgets/class-wc-widget-top-rated-products.php:159 -msgid "Title:" -msgstr "כותרת:" - -#: classes/widgets/class-wc-widget-best-sellers.php:195 -#: classes/widgets/class-wc-widget-featured-products.php:175 -#: classes/widgets/class-wc-widget-onsale.php:180 -#: classes/widgets/class-wc-widget-random-products.php:138 -#: classes/widgets/class-wc-widget-recent-products.php:172 -#: classes/widgets/class-wc-widget-recent-reviews.php:161 -#: classes/widgets/class-wc-widget-recently-viewed.php:169 -#: classes/widgets/class-wc-widget-top-rated-products.php:162 -msgid "Number of products to show:" -msgstr "מספר מוצרים לתצוגה:" - -#: classes/widgets/class-wc-widget-best-sellers.php:199 -msgid "Hide free products" -msgstr "הסתר מוצרים חינמיים" - -#: classes/widgets/class-wc-widget-cart.php:33 -msgid "Display the user's Cart in the sidebar." -msgstr "להציג הסל של המשתמש בסרגל הצידי." - -#: classes/widgets/class-wc-widget-cart.php:35 -msgid "WooCommerce Cart" -msgstr "עגלת WooConmmerce" - -#: classes/widgets/class-wc-widget-cart.php:119 -msgid "Hide if cart is empty" -msgstr "הסתר אם העגלה ריקה" - -#: classes/widgets/class-wc-widget-featured-products.php:35 -msgid "Display a list of featured products on your site." -msgstr "הצגת רשימה של מוצרים מומלצים באתר שלך." - -#: classes/widgets/class-wc-widget-featured-products.php:37 -msgid "WooCommerce Featured Products" -msgstr "מוצרים מומלצים של WooCommerce" - -#: classes/widgets/class-wc-widget-featured-products.php:75 -msgid "Featured Products" -msgstr "מוצרים מומלצים" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:31 -msgid "Shows active layered nav filters so users can see and deactivate them." -msgstr "מראה מסנני nav שכבתיים פעילים, כך שמשתמש יכול לראות ולנטרל אותם." - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:33 -msgid "WooCommerce Layered Nav Filters" -msgstr "מסנני WooCommerce Layered Nav" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:62 -msgid "Active filters" -msgstr "מסננים מופעלים" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:93 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Remove filter" -msgstr "הסר מסנן" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -msgid "Min" -msgstr "מינימום" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Max" -msgstr "מקסימום" - -#: classes/widgets/class-wc-widget-layered-nav.php:31 -msgid "" -"Shows a custom attribute in a widget which lets you narrow down the list of " -"products when viewing product categories." -msgstr "" -"מראה תכונה מותאמת אישית ביישומון המאפשר לך לצמצם את הרשימה של מוצרים בעת " -"הצגת קטגוריות מוצר." - -#: classes/widgets/class-wc-widget-layered-nav.php:33 -msgid "WooCommerce Layered Nav" -msgstr "WooCommerce Layered Nav" - -#: classes/widgets/class-wc-widget-layered-nav.php:100 -msgid "Any %s" -msgstr "%s" - -#: classes/widgets/class-wc-widget-layered-nav.php:352 -msgid "Attribute:" -msgstr "תכונה:" - -#: classes/widgets/class-wc-widget-layered-nav.php:363 -msgid "Display Type:" -msgstr "סוג תצוגה:" - -#: classes/widgets/class-wc-widget-layered-nav.php:365 -msgid "List" -msgstr "רשימה" - -#: classes/widgets/class-wc-widget-layered-nav.php:366 -msgid "Dropdown" -msgstr "רשימה נפתחת" - -#: classes/widgets/class-wc-widget-layered-nav.php:369 -msgid "Query Type:" -msgstr "סוג שאילתא:" - -#: classes/widgets/class-wc-widget-layered-nav.php:371 -msgid "AND" -msgstr "גם וגם" - -#: classes/widgets/class-wc-widget-layered-nav.php:372 -msgid "OR" -msgstr "או או" - -#: classes/widgets/class-wc-widget-login.php:31 -msgid "Display a login area and \"My Account\" links in the sidebar." -msgstr "הצגת אזור התחברות וקישורי \"החשבון שלי\" בסרגל הצידי." - -#: classes/widgets/class-wc-widget-login.php:33 -msgid "WooCommerce Login" -msgstr "התחברות WooCommerce" - -#: classes/widgets/class-wc-widget-login.php:59 -#: classes/widgets/class-wc-widget-login.php:223 -msgid "Customer Login" -msgstr "התחברות לקוח" - -#: classes/widgets/class-wc-widget-login.php:60 -#: classes/widgets/class-wc-widget-login.php:226 -msgid "Welcome %s" -msgstr "ברוכים הבאים %s" - -#: classes/widgets/class-wc-widget-login.php:76 -msgid "My account" -msgstr "החשבון שלי" - -#: classes/widgets/class-wc-widget-login.php:77 -msgid "Change my password" -msgstr "שינוי הסיסמה שלי" - -#: classes/widgets/class-wc-widget-login.php:78 -msgid "Logout" -msgstr "יציאה מהחשבון שלי" - -#: classes/widgets/class-wc-widget-login.php:116 -#: templates/myaccount/form-login.php:29 -#: templates/myaccount/form-lost-password.php:24 -#: templates/shop/form-login.php:20 -msgid "Username or email" -msgstr "שם משתמש או כתובת מייל" - -#: classes/widgets/class-wc-widget-login.php:118 -#: templates/myaccount/form-login.php:33 templates/myaccount/form-login.php:85 -#: templates/shop/form-login.php:24 -msgid "Password" -msgstr "סיסמה" - -#: classes/widgets/class-wc-widget-login.php:120 woocommerce-functions.php:945 -msgid "Login →" -msgstr "התחברות ←" - -#: classes/widgets/class-wc-widget-login.php:120 -msgid "Lost password?" -msgstr "שכחת את סיסמתך?" - -#: classes/widgets/class-wc-widget-login.php:222 -msgid "Logged out title:" -msgstr "כותרת לא מחוברים:" - -#: classes/widgets/class-wc-widget-login.php:225 -msgid "Logged in title:" -msgstr "כותרת מחוברים:" - -#: classes/widgets/class-wc-widget-onsale.php:31 -msgid "Display a list of your on-sale products on your site." -msgstr "הצגת רשימה של המוצרים שלך במכירה באתר שלך." - -#: classes/widgets/class-wc-widget-onsale.php:33 -msgid "WooCommerce On-sale" -msgstr "מבצעי החנות" - -#: classes/widgets/class-wc-widget-onsale.php:70 -msgid "On Sale" -msgstr "במבצע" - -#: classes/widgets/class-wc-widget-price-filter.php:33 -msgid "" -"Shows a price filter slider in a widget which lets you narrow down the list " -"of shown products when viewing product categories." -msgstr "" -" מסנן מחיר המאפשר לך לצמצם את רשימת המוצרים המוצגים בעת הצגת קטגוריות מוצר." - -#: classes/widgets/class-wc-widget-price-filter.php:35 -msgid "WooCommerce Price Filter" -msgstr "WooCommerce מחיר הסינון" - -#: classes/widgets/class-wc-widget-price-filter.php:136 -msgid "Min price" -msgstr "מחיר מינימלי" - -#: classes/widgets/class-wc-widget-price-filter.php:137 -msgid "Max price" -msgstr "מחיר מקסימלי" - -#: classes/widgets/class-wc-widget-price-filter.php:138 -msgid "Filter" -msgstr "מסנן" - -#: classes/widgets/class-wc-widget-price-filter.php:140 -msgid "Price:" -msgstr "מחיר:" - -#: classes/widgets/class-wc-widget-price-filter.php:162 -msgid "Filter by price" -msgstr "מסנן לפי מחיר" - -#: classes/widgets/class-wc-widget-product-categories.php:33 -msgid "A list or dropdown of product categories." -msgstr "רשימה או רשימה נפתחת של קטגוריות המוצרים." - -#: classes/widgets/class-wc-widget-product-categories.php:35 -msgid "WooCommerce Product Categories" -msgstr "קטגוריות מוצרים בחנות" - -#: classes/widgets/class-wc-widget-product-categories.php:57 -#: woocommerce.php:787 woocommerce.php:789 -msgid "Product Categories" -msgstr "קטגוריות המוצרים" - -#: classes/widgets/class-wc-widget-product-categories.php:129 -msgid "No product categories exist." -msgstr "אין קטגוריות מוצרים קיימים." - -#: classes/widgets/class-wc-widget-product-categories.php:188 -msgid "Order by:" -msgstr "סדר לפי:" - -#: classes/widgets/class-wc-widget-product-categories.php:190 -msgid "Category Order" -msgstr "סדר קטגוריות" - -#: classes/widgets/class-wc-widget-product-categories.php:191 -#: templates/single-product-reviews.php:99 woocommerce-ajax.php:1244 -msgid "Name" -msgstr "שם" - -#: classes/widgets/class-wc-widget-product-categories.php:195 -msgid "Show as dropdown" -msgstr "הצג ברשימה נפתחת" - -#: classes/widgets/class-wc-widget-product-categories.php:198 -msgid "Show post counts" -msgstr "הצג ספירת פוסטים" - -#: classes/widgets/class-wc-widget-product-categories.php:201 -msgid "Show hierarchy" -msgstr "הצג היררכיה" - -#: classes/widgets/class-wc-widget-product-categories.php:204 -msgid "Only show children for the current category" -msgstr "להראות ילדים אך ורק של קטגוריה נוכחית" - -#: classes/widgets/class-wc-widget-product-search.php:31 -msgid "A Search box for products only." -msgstr "תיבת חיפוש למוצרים בלבד" - -#: classes/widgets/class-wc-widget-product-search.php:33 -msgid "WooCommerce Product Search" -msgstr "חיפוש מוצר" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:31 -msgid "Your most used product tags in cloud format." -msgstr "ביותר בשימוש תגיות מוצר במתכונת ענן." - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:33 -msgid "WooCommerce Product Tags" -msgstr "תגיות המוצר" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:58 -#: woocommerce.php:823 woocommerce.php:825 -msgid "Product Tags" -msgstr "תגיות מוצרים" - -#: classes/widgets/class-wc-widget-random-products.php:24 -msgid "WooCommerce Random Products" -msgstr "מוצרים אקראיים" - -#: classes/widgets/class-wc-widget-random-products.php:27 -msgid "Display a list of random products on your site." -msgstr "הצגת רשימה של מוצרים אקראיים באתר שלך." - -#: classes/widgets/class-wc-widget-random-products.php:46 -msgid "Random Products" -msgstr "מוצרים אקראיים" - -#: classes/widgets/class-wc-widget-random-products.php:144 -#: classes/widgets/class-wc-widget-recent-products.php:176 -msgid "Show hidden product variations" -msgstr "הצג הסתר משתני מוצר" - -#: classes/widgets/class-wc-widget-recent-products.php:31 -msgid "Display a list of your most recent products on your site." -msgstr "הצגת רשימה של המוצרים העדכניים ביותר שלך באתר שלך." - -#: classes/widgets/class-wc-widget-recent-products.php:33 -msgid "WooCommerce Recent Products" -msgstr "מוצרים אחרונים" - -#: classes/widgets/class-wc-widget-recent-products.php:70 -msgid "New Products" -msgstr "מוצרים חדשים" - -#: classes/widgets/class-wc-widget-recent-reviews.php:31 -msgid "Display a list of your most recent reviews on your site." -msgstr "הצגת רשימה של הסקירות האחרונות שלך באתר שלך." - -#: classes/widgets/class-wc-widget-recent-reviews.php:33 -msgid "WooCommerce Recent Reviews" -msgstr "סקירות אחרונות" - -#: classes/widgets/class-wc-widget-recent-reviews.php:71 -msgid "Recent Reviews" -msgstr "סקירות אחרונות" - -#: classes/widgets/class-wc-widget-recent-reviews.php:97 -msgctxt "by comment author" -msgid "by %1$s" -msgstr "מאת %1$s" - -#: classes/widgets/class-wc-widget-recently-viewed.php:31 -msgid "Display a list of recently viewed products." -msgstr "הצגת רשימה של מוצרים שנצפו לאחרונה." - -#: classes/widgets/class-wc-widget-recently-viewed.php:33 -msgid "WooCommerce Recently Viewed Products" -msgstr "מוצרים שנצפו לאחרונה" - -#: classes/widgets/class-wc-widget-recently-viewed.php:76 -msgid "Recently viewed" -msgstr "נצפה לאחרונה" - -#: classes/widgets/class-wc-widget-top-rated-products.php:33 -msgid "Display a list of top rated products on your site." -msgstr "הצגת רשימה של מוצרים מדורגים באתר שלך." - -#: classes/widgets/class-wc-widget-top-rated-products.php:35 -msgid "WooCommerce Top Rated Products" -msgstr " מוצרים מדורג ראשון" - -#: classes/widgets/class-wc-widget-top-rated-products.php:72 -msgid "Top Rated Products" -msgstr "מוצרים מובילים" - -#: i18n/states/AU.php:13 -msgid "Australian Capital Territory" -msgstr "טריטוריית בירה אוסטרלית" - -#: i18n/states/AU.php:14 -msgid "New South Wales" -msgstr "ניו סאות' וויילס" - -#: i18n/states/AU.php:15 -msgid "Northern Territory" -msgstr "טריטוריה צפונית" - -#: i18n/states/AU.php:16 -msgid "Queensland" -msgstr "קווינסלנד" - -#: i18n/states/AU.php:17 -msgid "South Australia" -msgstr "דרום אוסטרליה" - -#: i18n/states/AU.php:18 -msgid "Tasmania" -msgstr "טסמניה" - -#: i18n/states/AU.php:19 -msgid "Victoria" -msgstr "ויקטוריה" - -#: i18n/states/AU.php:20 -msgid "Western Australia" -msgstr "מערב אוסטרליה" - -#: i18n/states/BR.php:13 -msgid "Acre" -msgstr "אקר" - -#: i18n/states/BR.php:14 -msgid "Alagoas" -msgstr "אלגואס" - -#: i18n/states/BR.php:15 -msgid "Amapá" -msgstr "אמאפה" - -#: i18n/states/BR.php:16 -msgid "Amazonas" -msgstr "אמזונס" - -#: i18n/states/BR.php:17 -msgid "Bahia" -msgstr "באהיה" - -#: i18n/states/BR.php:18 -msgid "Ceará" -msgstr "סיארה" - -#: i18n/states/BR.php:19 -msgid "Distrito Federal" -msgstr "מחוז פדרלי" - -#: i18n/states/BR.php:20 -msgid "Espírito Santo" -msgstr "אספיריטו סנטו" - -#: i18n/states/BR.php:21 -msgid "Goiás" -msgstr "גויאס" - -#: i18n/states/BR.php:22 -msgid "Maranhão" -msgstr "רניאו" - -#: i18n/states/BR.php:23 -msgid "Mato Grosso" -msgstr "מאטו גרוסו" - -#: i18n/states/BR.php:24 -msgid "Mato Grosso do Sul" -msgstr "מאטו גרוסו דו סול" - -#: i18n/states/BR.php:25 -msgid "Minas Gerais" -msgstr "Minas Gerais" - -#: i18n/states/BR.php:26 -msgid "Pará" -msgstr "פארה" - -#: i18n/states/BR.php:27 -msgid "Paraíba" -msgstr "פאראיבה" - -#: i18n/states/BR.php:28 -msgid "Paraná" -msgstr "פרנה" - -#: i18n/states/BR.php:29 -msgid "Pernambuco" -msgstr "פרנמבוקו" - -#: i18n/states/BR.php:30 -msgid "Piauí" -msgstr "פיאאוי" - -#: i18n/states/BR.php:31 -msgid "Rio de Janeiro" -msgstr "ריו דה ז'נרו" - -#: i18n/states/BR.php:32 -msgid "Rio Grande do Norte" -msgstr "ריו גרנדה דו נורטה" - -#: i18n/states/BR.php:33 -msgid "Rio Grande do Sul" -msgstr "ריו גרנדה דו סול" - -#: i18n/states/BR.php:34 -msgid "Rondônia" -msgstr "רונדוניה" - -#: i18n/states/BR.php:35 -msgid "Roraima" -msgstr "רוריימה" - -#: i18n/states/BR.php:36 -msgid "Santa Catarina" -msgstr "סנטה קטרינה" - -#: i18n/states/BR.php:37 -msgid "São Paulo" -msgstr "סאו פאולו" - -#: i18n/states/BR.php:38 -msgid "Sergipe" -msgstr "סרגיפה" - -#: i18n/states/BR.php:39 -msgid "Tocantins" -msgstr "טוקנטינס" - -#: i18n/states/CA.php:13 -msgid "Alberta" -msgstr "אלברטה" - -#: i18n/states/CA.php:14 -msgid "British Columbia" -msgstr "קולומביה הבריטית" - -#: i18n/states/CA.php:15 -msgid "Manitoba" -msgstr "מניטובה" - -#: i18n/states/CA.php:16 -msgid "New Brunswick" -msgstr "ניו ברונסוויק" - -#: i18n/states/CA.php:17 -msgid "Newfoundland" -msgstr "ניופאונדלנד" - -#: i18n/states/CA.php:18 -msgid "Northwest Territories" -msgstr "טריטוריות הצפון מערביים" - -#: i18n/states/CA.php:19 -msgid "Nova Scotia" -msgstr "נובה סקוטיה" - -#: i18n/states/CA.php:20 -msgid "Nunavut" -msgstr "נונאווט" - -#: i18n/states/CA.php:21 -msgid "Ontario" -msgstr "אונטריו" - -#: i18n/states/CA.php:22 -msgid "Prince Edward Island" -msgstr "אי נסיך אדוארד" - -#: i18n/states/CA.php:23 -msgid "Quebec" -msgstr "קוויבק" - -#: i18n/states/CA.php:24 -msgid "Saskatchewan" -msgstr "ססקצ'ואן" - -#: i18n/states/CA.php:25 -msgid "Yukon Territory" -msgstr "טריטוריה של יוקון" - -#: i18n/states/CN.php:13 -msgid "Yunnan / 云南" -msgstr "יונאן / 云南" - -#: i18n/states/CN.php:14 -msgid "Beijing / 北京" -msgstr "בייג'ינג / 北京" - -#: i18n/states/CN.php:15 -msgid "Tianjin / 天津" -msgstr "טיאנג'ין / 天津" - -#: i18n/states/CN.php:16 -msgid "Hebei / 河北" -msgstr "הביי / 河北" - -#: i18n/states/CN.php:17 -msgid "Shanxi / 山西" -msgstr "שאנשים / 山西" - -#: i18n/states/CN.php:18 -msgid "Inner Mongolia / 內蒙古" -msgstr "מונגוליה פנימית / 内蒙古" - -#: i18n/states/CN.php:19 -msgid "Liaoning / 辽宁" -msgstr "ליאונינג / 辽宁" - -#: i18n/states/CN.php:20 -msgid "Jilin / 吉林" -msgstr "ג'ילין / 吉林" - -#: i18n/states/CN.php:21 -msgid "Heilongjiang / 黑龙江" -msgstr "Heilongjiang / 黑龙江" - -#: i18n/states/CN.php:22 -msgid "Shanghai / 上海" -msgstr "שנחאי / 上海" - -#: i18n/states/CN.php:23 -msgid "Jiangsu / 江苏" -msgstr "Jiangsu / 江苏" - -#: i18n/states/CN.php:24 -msgid "Zhejiang / 浙江" -msgstr "Zhejiang / 浙江" - -#: i18n/states/CN.php:25 -msgid "Anhui / 安徽" -msgstr "Anhui / 安徽" - -#: i18n/states/CN.php:26 -msgid "Fujian / 福建" -msgstr "Fujian / 福建" - -#: i18n/states/CN.php:27 -msgid "Jiangxi / 江西" -msgstr "יאנגשי / 江西" - -#: i18n/states/CN.php:28 -msgid "Shandong / 山东" -msgstr "אנדונג / 山东" - -#: i18n/states/CN.php:29 -msgid "Henan / 河南" -msgstr "הנאן / 河南" - -#: i18n/states/CN.php:30 -msgid "Hubei / 湖北" -msgstr "הוביי / 湖北" - -#: i18n/states/CN.php:31 -msgid "Hunan / 湖南" -msgstr "הונאן / 湖南" - -#: i18n/states/CN.php:32 -msgid "Guangdong / 广东" -msgstr "גואנגדונג / 广东" - -#: i18n/states/CN.php:33 -msgid "Guangxi Zhuang / 广西壮族" -msgstr "גואנגשי ג'ואנג / 广西 壮族" - -#: i18n/states/CN.php:34 -msgid "Hainan / 海南" -msgstr "האינאן / 海南" - -#: i18n/states/CN.php:35 -msgid "Chongqing / 重庆" -msgstr "צ'ונגצ'ינג / 重庆" - -#: i18n/states/CN.php:36 -msgid "Sichuan / 四川" -msgstr "סיצ'ואן / 四川" - -#: i18n/states/CN.php:37 -msgid "Guizhou / 贵州" -msgstr "Guizhou / 贵州" - -#: i18n/states/CN.php:38 -msgid "Shaanxi / 陕西" -msgstr "שאאנשי / 陕西" - -#: i18n/states/CN.php:39 -msgid "Gansu / 甘肃" -msgstr "גאנסו / 甘肃" - -#: i18n/states/CN.php:40 -msgid "Qinghai / 青海" -msgstr "צ'ינגהאי / 青海" - -#: i18n/states/CN.php:41 -msgid "Ningxia Hui / 宁夏" -msgstr "נינג הואי / 宁夏" - -#: i18n/states/CN.php:42 -msgid "Macau / 澳门" -msgstr "מקאו / 澳门" - -#: i18n/states/CN.php:43 -msgid "Tibet / 西藏" -msgstr "טיבט / 西藏" - -#: i18n/states/CN.php:44 -msgid "Xinjiang / 新疆" -msgstr "שינג'יאנג / 新疆" - -#: i18n/states/HK.php:13 -msgid "Hong Kong Island" -msgstr "אי הונג קונג" - -#: i18n/states/HK.php:14 -msgid "Kowloon" -msgstr "קאולון" - -#: i18n/states/HK.php:15 -msgid "New Territories" -msgstr "שטחים חדשים" - -#: i18n/states/HU.php:13 -msgid "Bács-Kiskun" -msgstr "Bács-Kiskun" - -#: i18n/states/HU.php:14 -msgid "Békés" -msgstr "קש" - -#: i18n/states/HU.php:15 -msgid "Baranya" -msgstr "ארניה" - -#: i18n/states/HU.php:16 -msgid "Borsod-Abaúj-Zemplén" -msgstr "Borsod-Abaúj-Zemplén" - -#: i18n/states/HU.php:17 -msgid "Budapest" -msgstr "בודפשט" - -#: i18n/states/HU.php:18 -msgid "Csongrád" -msgstr "קסונגראד" - -#: i18n/states/HU.php:19 -msgid "Fejér" -msgstr "Fejér" - -#: i18n/states/HU.php:20 -msgid "Győr-Moson-Sopron" -msgstr "Győr-Moson-שופרון" - -#: i18n/states/HU.php:21 -msgid "Hajdú-Bihar" -msgstr "היידו-ביהאר" - -#: i18n/states/HU.php:22 -msgid "Heves" -msgstr "הווס" - -#: i18n/states/HU.php:23 -msgid "Jász-Nagykun-Szolnok" -msgstr "Jász-Nagykun-ז'ולנוק" - -#: i18n/states/HU.php:24 -msgid "Komárom-Esztergom" -msgstr "קומרום-Esztergom" - -#: i18n/states/HU.php:25 -msgid "Nógrád" -msgstr "נוגראד" - -#: i18n/states/HU.php:26 -msgid "Pest" -msgstr "טרדן" - -#: i18n/states/HU.php:27 -msgid "Somogy" -msgstr "סומוגי" - -#: i18n/states/HU.php:28 -msgid "Szabolcs-Szatmár-Bereg" -msgstr "Szabolcs-Szatmár-Bereg" - -#: i18n/states/HU.php:29 -msgid "Tolna" -msgstr "טול" - -#: i18n/states/HU.php:30 -msgid "Vas" -msgstr "Vas" - -#: i18n/states/HU.php:31 -msgid "Veszprém" -msgstr "Veszprém" - -#: i18n/states/HU.php:32 -msgid "Zala" -msgstr "זלה" - -#: i18n/states/HZ.php:13 -msgid "Auckland" -msgstr "אוקלנד" - -#: i18n/states/HZ.php:14 -msgid "Bay of Plenty" -msgstr "מפרץ עושר" - -#: i18n/states/HZ.php:15 -msgid "Canterbury" -msgstr "קנטרברי" - -#: i18n/states/HZ.php:16 -msgid "Hawke’s Bay" -msgstr "הוקס ביי" - -#: i18n/states/HZ.php:17 -msgid "Manawatu-Wanganui" -msgstr "Manawatu-Wanganui" - -#: i18n/states/HZ.php:18 -msgid "Marlborough" -msgstr "מרלבורו" - -#: i18n/states/HZ.php:19 -msgid "Nelson" -msgstr "נלסון" - -#: i18n/states/HZ.php:20 -msgid "Northland" -msgstr "נורת'לנד" - -#: i18n/states/HZ.php:21 -msgid "Otago" -msgstr "אוטאגו" - -#: i18n/states/HZ.php:22 -msgid "Southland" -msgstr "Southland" - -#: i18n/states/HZ.php:23 -msgid "Taranaki" -msgstr "טראנאקי" - -#: i18n/states/HZ.php:24 -msgid "Tasman" -msgstr "טסמן" - -#: i18n/states/HZ.php:25 -msgid "Waikato" -msgstr "Waikato" - -#: i18n/states/HZ.php:26 -msgid "Wellington" -msgstr "וולינגטון" - -#: i18n/states/HZ.php:27 -msgid "West Coast" -msgstr "החוף המערבי" - -#: i18n/states/ID.php:13 -msgid "Daerah Istimewa Aceh" -msgstr "Daerah Istimewa אצ'ה" - -#: i18n/states/ID.php:14 -msgid "Sumatera Utara" -msgstr "סומטרה אוטרה" - -#: i18n/states/ID.php:15 -msgid "Sumatera Barat" -msgstr "סומטרה בראט" - -#: i18n/states/ID.php:16 -msgid "Riau" -msgstr "Riau" - -#: i18n/states/ID.php:17 -msgid "Kepulauan Riau" -msgstr "קפולאון קיאו" - -#: i18n/states/ID.php:18 -msgid "Jambi" -msgstr "ג'מבי" - -#: i18n/states/ID.php:19 -msgid "Sumatera Selatan" -msgstr "דרום סומטרה" - -#: i18n/states/ID.php:20 -msgid "Bangka Belitung" -msgstr "באנגקה ליטונג" - -#: i18n/states/ID.php:21 -msgid "Bengkulu" -msgstr "נגקולו" - -#: i18n/states/ID.php:22 -msgid "Lampung" -msgstr "Lampung" - -#: i18n/states/ID.php:23 -msgid "DKI Jakarta" -msgstr "DKI ג'קרטה" - -#: i18n/states/ID.php:24 -msgid "Jawa Barat" -msgstr "Jawa Barat" - -#: i18n/states/ID.php:25 -msgid "Banten" -msgstr "נטן" - -#: i18n/states/ID.php:26 -msgid "Jawa Tengah" -msgstr "ג'אווה טנגה" - -#: i18n/states/ID.php:27 -msgid "Jawa Timur" -msgstr "ג'אווה טימור" - -#: i18n/states/ID.php:28 -msgid "Daerah Istimewa Yogyakarta" -msgstr "Daerah Istimewa יוגיאקרטה" - -#: i18n/states/ID.php:29 -msgid "Bali" -msgstr "באלי" - -#: i18n/states/ID.php:30 -msgid "Nusa Tenggara Barat" -msgstr "נוסה טנגרה בראט" - -#: i18n/states/ID.php:31 -msgid "Nusa Tenggara Timur" -msgstr "נוסה טנגרה טימור" - -#: i18n/states/ID.php:32 -msgid "Kalimantan Barat" -msgstr "קלימנטן בארט" - -#: i18n/states/ID.php:33 -msgid "Kalimantan Tengah" -msgstr "קלימנטן טנגה" - -#: i18n/states/ID.php:34 -msgid "Kalimantan Timur" -msgstr "קלימנטן טימור" - -#: i18n/states/ID.php:35 -msgid "Kalimantan Selatan" -msgstr "קלימנטאן סלטאן" - -#: i18n/states/ID.php:36 -msgid "Kalimantan Utara" -msgstr "קלימנטן אוטרה" - -#: i18n/states/ID.php:37 -msgid "Sulawesi Utara" -msgstr "סולאווסי אוטרה" - -#: i18n/states/ID.php:38 -msgid "Sulawesi Tengah" -msgstr "מרכז סולאווסי" - -#: i18n/states/ID.php:39 -msgid "Sulawesi Tenggara" -msgstr "סולאווסי טנגארה" - -#: i18n/states/ID.php:40 -msgid "Sulawesi Barat" -msgstr "סלווזי בראט" - -#: i18n/states/ID.php:41 -msgid "Sulawesi Selatan" -msgstr "סולווזי סלטאן" - -#: i18n/states/ID.php:42 -msgid "Gorontalo" -msgstr "גורונטלו" - -#: i18n/states/ID.php:43 -msgid "Maluku" -msgstr "אלוקו" - -#: i18n/states/ID.php:44 -msgid "Maluku Utara" -msgstr "צפון מלוקו" - -#: i18n/states/ID.php:45 -msgid "Papua" -msgstr "פפואה" - -#: i18n/states/ID.php:46 -msgid "Papua Barat" -msgstr "פפואה ראט" - -#: i18n/states/IN.php:13 -msgid "Andra Pradesh" -msgstr "אנדרה פראדש" - -#: i18n/states/IN.php:14 -msgid "Arunachal Pradesh" -msgstr "ארונצ'אל פראדש" - -#: i18n/states/IN.php:15 -msgid "Assam" -msgstr "אסאם" - -#: i18n/states/IN.php:16 -msgid "Bihar" -msgstr "ביהאר" - -#: i18n/states/IN.php:17 -msgid "Chhattisgarh" -msgstr "צ'האטיסגאר" - -#: i18n/states/IN.php:18 -msgid "Goa" -msgstr "גואה" - -#: i18n/states/IN.php:19 -msgid "Gujarat" -msgstr "גוג'ראט" - -#: i18n/states/IN.php:20 -msgid "Haryana" -msgstr "הריאנה" - -#: i18n/states/IN.php:21 -msgid "Himachal Pradesh" -msgstr "הימצ'אל פראדש" - -#: i18n/states/IN.php:22 -msgid "Jammu and Kashmir" -msgstr "ג'אמו וקשמיר" - -#: i18n/states/IN.php:23 -msgid "Jharkhand" -msgstr "Jharkhand" - -#: i18n/states/IN.php:24 -msgid "Karnataka" -msgstr "קרנטקה" - -#: i18n/states/IN.php:25 -msgid "Kerala" -msgstr "קראלה" - -#: i18n/states/IN.php:26 -msgid "Madhya Pradesh" -msgstr "פרדש" - -#: i18n/states/IN.php:27 -msgid "Maharashtra" -msgstr "מהרשטרה" - -#: i18n/states/IN.php:28 -msgid "Manipur" -msgstr "מאניפור" - -#: i18n/states/IN.php:29 -msgid "Meghalaya" -msgstr "Meghalaya" - -#: i18n/states/IN.php:30 -msgid "Mizoram" -msgstr "מיזורם" - -#: i18n/states/IN.php:31 -msgid "Nagaland" -msgstr "Nagaland" - -#: i18n/states/IN.php:32 -msgid "Orissa" -msgstr "אוריסה" - -#: i18n/states/IN.php:33 -msgid "Punjab" -msgstr "פנג'אב" - -#: i18n/states/IN.php:34 -msgid "Rajasthan" -msgstr "רג'סטאן" - -#: i18n/states/IN.php:35 -msgid "Sikkim" -msgstr "סיקים" - -#: i18n/states/IN.php:36 -msgid "Tamil Nadu" -msgstr "טמיל נאדו" - -#: i18n/states/IN.php:37 -msgid "Tripura" -msgstr "טריפורה" - -#: i18n/states/IN.php:38 -msgid "Uttaranchal" -msgstr "Uttaranchal" - -#: i18n/states/IN.php:39 -msgid "Uttar Pradesh" -msgstr "אוטר פראדש" - -#: i18n/states/IN.php:40 -msgid "West Bengal" -msgstr "המערב בנגל" - -#: i18n/states/IN.php:41 -msgid "Andaman and Nicobar Islands" -msgstr "אנדמן וניקובר איי" - -#: i18n/states/IN.php:42 -msgid "Chandigarh" -msgstr "Chandigarh" - -#: i18n/states/IN.php:43 -msgid "Dadar and Nagar Haveli" -msgstr "Dadar וניגר הבלי" - -#: i18n/states/IN.php:44 -msgid "Daman and Diu" -msgstr "דאמאן ודיו" - -#: i18n/states/IN.php:45 -msgid "Delhi" -msgstr "דלהי" - -#: i18n/states/IN.php:46 -msgid "Lakshadeep" -msgstr "Lakshadeep" - -#: i18n/states/IN.php:47 -msgid "Pondicherry (Puducherry)" -msgstr "פונדיצ'רי (Puducherry)" - -#: i18n/states/MY.php:13 -msgid "Johor" -msgstr "Johor" - -#: i18n/states/MY.php:14 -msgid "Kedah" -msgstr "קדה" - -#: i18n/states/MY.php:15 -msgid "Kelantan" -msgstr "קלנטאן" - -#: i18n/states/MY.php:16 -msgid "Melaka" -msgstr "Melaka" - -#: i18n/states/MY.php:17 -msgid "Negeri Sembilan" -msgstr "ניגרי סמבילאן" - -#: i18n/states/MY.php:18 -msgid "Pahang" -msgstr "Pahang" - -#: i18n/states/MY.php:19 -msgid "Perak" -msgstr "פראק" - -#: i18n/states/MY.php:20 -msgid "Perlis" -msgstr "פרליס" - -#: i18n/states/MY.php:21 -msgid "Pulau Pinang" -msgstr "פולאו פיננג" - -#: i18n/states/MY.php:22 -msgid "Sabah" -msgstr "סבאח" - -#: i18n/states/MY.php:23 -msgid "Sarawak" -msgstr "Sarawak" - -#: i18n/states/MY.php:24 -msgid "Selangor" -msgstr "סלנגור" - -#: i18n/states/MY.php:25 -msgid "Terengganu" -msgstr "Terengganu" - -#: i18n/states/MY.php:26 -msgid "W.P. Kuala Lumpur" -msgstr "WP קואלה לומפור" - -#: i18n/states/MY.php:27 -msgid "W.P. Labuan" -msgstr "לבואן WP" - -#: i18n/states/MY.php:28 -msgid "W.P. Putrajaya" -msgstr "WP Putrajaya" - -#: i18n/states/TH.php:13 -msgid "" -"Amnat Charoen (อำนาจเจร" -"ิญ)" -msgstr "אמנט הקרון (อำนาจเจริญ)" - -#: i18n/states/TH.php:14 -msgid "Ang Thong (อ่างทอง)" -msgstr "אנג תונג (อ่างทอง)" - -#: i18n/states/TH.php:15 -msgid "" -"Ayutthaya (พระนครศรี" -"อยุธยา)" -msgstr "איאטטאיה" - -#: i18n/states/TH.php:16 -msgid "" -"Bangkok (กรุงเทพมห" -"านคร)" -msgstr "בנגקוק (กรุงเทพ มหา น ค ร)" - -#: i18n/states/TH.php:17 -msgid "Bueng Kan (บึงกาฬ)" -msgstr "Bueng קאן (บึงกาฬ)" - -#: i18n/states/TH.php:18 -msgid "" -"Buri Ram (บุรีรัมย์)" -msgstr "בורים רמים (บุรีรัมย์)" - -#: i18n/states/TH.php:19 -msgid "" -"Chachoengsao (ฉะเชิงเทร" -"า)" -msgstr "צ'צ'ונגסאו (ฉะเชิงเทรา)" - -#: i18n/states/TH.php:20 -msgid "Chai Nat (ชัยนาท)" -msgstr "צ'אי יאט (ชัยนาท)" - -#: i18n/states/TH.php:21 -msgid "Chaiyaphum (ชัยภูมิ)" -msgstr "צ'איאפום (ชัยภูมิ)" - -#: i18n/states/TH.php:22 -msgid "Chanthaburi (จันทบุรี)" -msgstr "Chanthaburi (จันทบุรี)" - -#: i18n/states/TH.php:23 -msgid "" -"Chiang Mai (เชียงใหม่)" -msgstr "צ'יאנג מאי (เชียงใหม่)" - -#: i18n/states/TH.php:24 -msgid "Chiang Rai (เชียงราย)" -msgstr "צ'יאנג ראי (เชียงราย)" - -#: i18n/states/TH.php:25 -msgid "Chonburi (ชลบุรี)" -msgstr "Chonburi (ชลบุรี)" - -#: i18n/states/TH.php:26 -msgid "Chumphon (ชุมพร)" -msgstr "צ'ומפון (ชุมพร)" - -#: i18n/states/TH.php:27 -msgid "" -"Kalasin (กาฬสินธุ์)" -msgstr "Kalasin (กาฬสินธุ์)" - -#: i18n/states/TH.php:28 -msgid "" -"Kamphaeng Phet (กำแพงเพช" -"ร)" -msgstr "קאמפאנג פט (กำแพงเพชร)" - -#: i18n/states/TH.php:29 -msgid "" -"Kanchanaburi (กาญจนบุร" -"ี)" -msgstr "קנצ'נבורי (กาญจนบุรี)" - -#: i18n/states/TH.php:30 -msgid "Khon Kaen (ขอนแก่น)" -msgstr "Khon Kaen (ขอนแก่น)" - -#: i18n/states/TH.php:31 -msgid "Krabi (กระบี่)" -msgstr "קראבי (กระบี่)" - -#: i18n/states/TH.php:32 -msgid "Lampang (ลำปาง)" -msgstr "Lampang (ลำปาง)" - -#: i18n/states/TH.php:33 -msgid "Lamphun (ลำพูน)" -msgstr "אמפון (ลำพูน)" - -#: i18n/states/TH.php:34 -msgid "Loei (เลย)" -msgstr "Loei (เลย)" - -#: i18n/states/TH.php:35 -msgid "Lopburi (ลพบุรี)" -msgstr "Lopburi (ลพบุรี)" - -#: i18n/states/TH.php:36 -msgid "" -"Mae Hong Son (แม่ฮ่องสอ" -"น)" -msgstr "מיי הונג סון (แม่ฮ่องสอน)" - -#: i18n/states/TH.php:37 -msgid "" -"Maha Sarakham (มหาสารคา" -"ม)" -msgstr "מהא סאראקאם (มหาสารคาม)" - -#: i18n/states/TH.php:38 -msgid "Mukdahan (มุกดาหาร)" -msgstr "וקדאהן (มุกดาหาร)" - -#: i18n/states/TH.php:39 -msgid "Nakhon Nayok (นครนายก)" -msgstr "נקון נאיוק (นครนายก)" - -#: i18n/states/TH.php:40 -msgid "Nakhon Pathom (นครปฐม)" -msgstr "נקון פאתום (นครปฐม)" - -#: i18n/states/TH.php:41 -msgid "Nakhon Phanom (นครพนม)" -msgstr "תיחון פנום (นครพนม)" - -#: i18n/states/TH.php:42 -msgid "" -"Nakhon Ratchasima (นครราชสี" -"มา)" -msgstr "Nakhon Ratchasima (นครราชสีมา)" - -#: i18n/states/TH.php:43 -msgid "" -"Nakhon Sawan (นครสวรรค" -"์)" -msgstr "תיחון סאוואן (นครสวรรค์)" - -#: i18n/states/TH.php:44 -msgid "" -"Nakhon Si Thammarat (นครศรีธร" -"รมราช)" -msgstr "תיחון סי טמאראת (นคร ศรี ธรรม ร & # 3634; ช)" - -#: i18n/states/TH.php:45 -msgid "Nan (น่าน)" -msgstr "נאן (น่าน)" - -#: i18n/states/TH.php:46 -msgid "Narathiwat (นราธิวาส)" -msgstr "נרתיוואט (นราธิวาส)" - -#: i18n/states/TH.php:47 -msgid "" -"Nong Bua Lam Phu (หนองบัวล" -"ำภู)" -msgstr "נונג בא פו (หนองบัวลำภู)" - -#: i18n/states/TH.php:48 -msgid "Nong Khai (หนองคาย)" -msgstr "נונג חאי (หนองคาย)" - -#: i18n/states/TH.php:49 -msgid "Nonthaburi (นนทบุรี)" -msgstr "נונטבורי (นนทบุรี)" - -#: i18n/states/TH.php:50 -msgid "Pathum Thani (ปทุมธานี)" -msgstr "Pathum Thani (ปทุมธานี)" - -#: i18n/states/TH.php:51 -msgid "Pattani (ปัตตานี)" -msgstr "פאתני (ปัตตานี)" - -#: i18n/states/TH.php:52 -msgid "Phang Nga (พังงา)" -msgstr "Phang Nga (พังงา)" - -#: i18n/states/TH.php:53 -msgid "Phatthalung (พัทลุง)" -msgstr "פאתאלונג (พัทลุง)" - -#: i18n/states/TH.php:54 -msgid "Phayao (พะเยา)" -msgstr "פאיאו (พะเยา)" - -#: i18n/states/TH.php:55 -msgid "" -"Phetchabun (เพชรบูรณ์)" -msgstr "פטצ'בון (เพชรบูรณ์)" - -#: i18n/states/TH.php:56 -msgid "Phetchaburi (เพชรบุรี)" -msgstr "Phetchaburi (เพชรบุรี)" - -#: i18n/states/TH.php:57 -msgid "Phichit (พิจิตร)" -msgstr "פיצ'יט (พิจิตร)" - -#: i18n/states/TH.php:58 -msgid "Phitsanulok (พิษณุโลก)" -msgstr "Phitsanulok (พิษณุโลก)" - -#: i18n/states/TH.php:59 -msgid "Phrae (แพร่)" -msgstr "פראה (แพร่)" - -#: i18n/states/TH.php:60 -msgid "Phuket (ภูเก็ต)" -msgstr "פוקט (ภูเก็ต)" - -#: i18n/states/TH.php:61 -msgid "" -"Prachin Buri (ปราจีนบุร" -"ี)" -msgstr "פרצ'ינבורי (ปราจีนบุรี)" - -#: i18n/states/TH.php:62 -msgid "" -"Prachuap Khiri Khan (ประจวบคี" -"รีขันธ์)" -msgstr "פראצ'ואפ קהירי קהאן" - -#: i18n/states/TH.php:63 -msgid "Ranong (ระนอง)" -msgstr "Ranong (ระนอง)" - -#: i18n/states/TH.php:64 -msgid "Ratchaburi (ราชบุรี)" -msgstr "ראטצ'אבורי (ราชบุรี)" - -#: i18n/states/TH.php:65 -msgid "Rayong (ระยอง)" -msgstr "ראיונג (ระยอง)" - -#: i18n/states/TH.php:66 -msgid "Roi Et (ร้อยเอ็ด)" -msgstr "הרועים Et (ร้อยเอ็ด)" - -#: i18n/states/TH.php:67 -msgid "Sa Kaeo (สระแก้ว)" -msgstr "Sa Kaeo (สระแก้ว)" - -#: i18n/states/TH.php:68 -msgid "Sakon Nakhon (สกลนคร)" -msgstr "סקון יחנון (สกลนคร)" - -#: i18n/states/TH.php:69 -msgid "" -"Samut Prakan (สมุทรปราก" -"าร)" -msgstr "סמוט פראקן (สมุทรปราการ)" - -#: i18n/states/TH.php:70 -msgid "" -"Samut Sakhon (สมุทรสาค" -"ร)" -msgstr "סאמוט סחון (สมุทรสาคร)" - -#: i18n/states/TH.php:71 -msgid "" -"Samut Songkhram (สมุทรสงค" -"ราม)" -msgstr "סאמוט סונגחראם (สมุทรสงคราม)" - -#: i18n/states/TH.php:72 -msgid "Saraburi (สระบุรี)" -msgstr "סרבורי (สระบุรี)" - -#: i18n/states/TH.php:73 -msgid "Satun (สตูล)" -msgstr "סטון (สตูล)" - -#: i18n/states/TH.php:74 -msgid "" -"Sing Buri (สิงห์บุรี)" -msgstr "סינג בורי (สิงห์บุรี)" - -#: i18n/states/TH.php:75 -msgid "Sisaket (ศรีสะเกษ)" -msgstr "Sisaket (ศรีสะเกษ)" - -#: i18n/states/TH.php:76 -msgid "Songkhla (สงขลา)" -msgstr "סונגקלה (สงขลา)" - -#: i18n/states/TH.php:77 -msgid "Sukhothai (สุโขทัย)" -msgstr "סוקוטאי (สุโขทัย)" - -#: i18n/states/TH.php:78 -msgid "" -"Suphan Buri (สุพรรณบุร" -"ี)" -msgstr "סופאנבורי (สุพรรณบุรี)" - -#: i18n/states/TH.php:79 -msgid "" -"Surat Thani (สุราษฎร์ธ" -"านี)" -msgstr "סוראט תאנה (สุราษฎร์ธานี ;)" - -#: i18n/states/TH.php:80 -msgid "Surin (สุรินทร์)" -msgstr "סורין (สุรินทร์)" - -#: i18n/states/TH.php:81 -msgid "Tak (ตาก)" -msgstr "טאק (ตาก)" - -#: i18n/states/TH.php:82 -msgid "Trang (ตรัง)" -msgstr "טראנג (ตรัง)" - -#: i18n/states/TH.php:83 -msgid "Trat (ตราด)" -msgstr "טראט (ตราด)" - -#: i18n/states/TH.php:84 -msgid "" -"Ubon Ratchathani (อุบลราชธ" -"านี)" -msgstr "Ubon Ratchathani (อุบลราชธานี)" - -#: i18n/states/TH.php:85 -msgid "Udon Thani (อุดรธานี)" -msgstr "אודון תאנה (อุดรธานี)" - -#: i18n/states/TH.php:86 -msgid "" -"Uthai Thani (อุทัยธานี)" -msgstr "אוטאי תאנה (อุทัยธานี)" - -#: i18n/states/TH.php:87 -msgid "" -"Uttaradit (อุตรดิตถ์)" -msgstr "אוטרדיט (อุตรดิตถ์)" - -#: i18n/states/TH.php:88 -msgid "Yala (ยะลา)" -msgstr "Yala (ยะลา)" - -#: i18n/states/TH.php:89 -msgid "Yasothon (ยโสธร)" -msgstr "יאסוטון (ยโสธร)" - -#: i18n/states/US.php:13 -msgid "Alabama" -msgstr "אלבמה" - -#: i18n/states/US.php:14 -msgid "Alaska" -msgstr "אלסקה" - -#: i18n/states/US.php:15 -msgid "Arizona" -msgstr "אריזונה" - -#: i18n/states/US.php:16 -msgid "Arkansas" -msgstr "ארקנסו" - -#: i18n/states/US.php:17 -msgid "California" -msgstr "קליפורניה" - -#: i18n/states/US.php:18 -msgid "Colorado" -msgstr "קולורדו" - -#: i18n/states/US.php:19 -msgid "Connecticut" -msgstr "קונטיקט" - -#: i18n/states/US.php:20 -msgid "Delaware" -msgstr "דלוור" - -#: i18n/states/US.php:21 -msgid "District Of Columbia" -msgstr "מחוז קולומביה" - -#: i18n/states/US.php:22 -msgid "Florida" -msgstr "פלורידה" - -#: i18n/states/US.php:24 -msgid "Hawaii" -msgstr "הוואי" - -#: i18n/states/US.php:25 -msgid "Idaho" -msgstr "איידהו" - -#: i18n/states/US.php:26 -msgid "Illinois" -msgstr "אילינוי" - -#: i18n/states/US.php:27 -msgid "Indiana" -msgstr "אינדיאנה" - -#: i18n/states/US.php:28 -msgid "Iowa" -msgstr "איווה" - -#: i18n/states/US.php:29 -msgid "Kansas" -msgstr "קנזס" - -#: i18n/states/US.php:30 -msgid "Kentucky" -msgstr "קנטאקי" - -#: i18n/states/US.php:31 -msgid "Louisiana" -msgstr "לואיזיאנה" - -#: i18n/states/US.php:32 -msgid "Maine" -msgstr "מיין." - -#: i18n/states/US.php:33 -msgid "Maryland" -msgstr "מרילנד" - -#: i18n/states/US.php:34 -msgid "Massachusetts" -msgstr "מסצ'וסטס" - -#: i18n/states/US.php:35 -msgid "Michigan" -msgstr "מישיגן" - -#: i18n/states/US.php:36 -msgid "Minnesota" -msgstr "מינסוטה" - -#: i18n/states/US.php:37 -msgid "Mississippi" -msgstr "מיסיסיפי" - -#: i18n/states/US.php:38 -msgid "Missouri" -msgstr "מיזורי" - -#: i18n/states/US.php:39 -msgid "Montana" -msgstr "מונטנה" - -#: i18n/states/US.php:40 -msgid "Nebraska" -msgstr "נברסקה" - -#: i18n/states/US.php:41 -msgid "Nevada" -msgstr "נבאדה" - -#: i18n/states/US.php:42 -msgid "New Hampshire" -msgstr "ניו המפשייר" - -#: i18n/states/US.php:43 -msgid "New Jersey" -msgstr "ניו ג'רזי" - -#: i18n/states/US.php:44 -msgid "New Mexico" -msgstr "ניו מקסיקו" - -#: i18n/states/US.php:45 -msgid "New York" -msgstr "ניו יורק" - -#: i18n/states/US.php:46 -msgid "North Carolina" -msgstr "צפון קרוליינה" - -#: i18n/states/US.php:47 -msgid "North Dakota" -msgstr "צפון דקוטה" - -#: i18n/states/US.php:48 -msgid "Ohio" -msgstr "אוהיו" - -#: i18n/states/US.php:49 -msgid "Oklahoma" -msgstr "אוקלהומה" - -#: i18n/states/US.php:50 -msgid "Oregon" -msgstr "אורגון" - -#: i18n/states/US.php:51 -msgid "Pennsylvania" -msgstr "פנסילבניה" - -#: i18n/states/US.php:52 -msgid "Rhode Island" -msgstr "רוד איילנד" - -#: i18n/states/US.php:53 -msgid "South Carolina" -msgstr "דרום קרוליינה" - -#: i18n/states/US.php:54 -msgid "South Dakota" -msgstr "דרום דקוטה" - -#: i18n/states/US.php:55 -msgid "Tennessee" -msgstr "טנסי" - -#: i18n/states/US.php:56 -msgid "Texas" -msgstr "טקסס" - -#: i18n/states/US.php:57 -msgid "Utah" -msgstr "יוטה" - -#: i18n/states/US.php:58 -msgid "Vermont" -msgstr "רמונט" - -#: i18n/states/US.php:59 -msgid "Virginia" -msgstr "וירג'יניה" - -#: i18n/states/US.php:60 -msgid "Washington" -msgstr "וושינגטון" - -#: i18n/states/US.php:61 -msgid "West Virginia" -msgstr "מערב וירג'יניה" - -#: i18n/states/US.php:62 -msgid "Wisconsin" -msgstr "ויסקונסין" - -#: i18n/states/US.php:63 -msgid "Wyoming" -msgstr "ויומינג" - -#: i18n/states/US.php:64 -msgid "Armed Forces (AA)" -msgstr "כוחות מזוינים (AA)" - -#: i18n/states/US.php:65 -msgid "Armed Forces (AE)" -msgstr "כוחות מזוינים (AE)" - -#: i18n/states/US.php:66 -msgid "Armed Forces (AP)" -msgstr "כוחות מזוינים (AP)" - -#: i18n/states/US.php:67 -msgid "American Samoa" -msgstr "סמואה האמריקנית" - -#: i18n/states/US.php:68 -msgid "Guam" -msgstr "גואם" - -#: i18n/states/US.php:69 -msgid "Northern Mariana Islands" -msgstr "אי מריאנה הצפוניים" - -#: i18n/states/US.php:70 -msgid "Puerto Rico" -msgstr "פורטו ריקו" - -#: i18n/states/US.php:71 -msgid "US Minor Outlying Islands" -msgstr "איים קטנים מרוחקים בארצות הברית" - -#: i18n/states/US.php:72 -msgid "US Virgin Islands" -msgstr "איי הבתולה ארצות הברית" - -#: i18n/states/ZA.php:13 -msgid "Eastern Cape" -msgstr "מחוז כף מזרחית" - -#: i18n/states/ZA.php:14 -msgid "Free State" -msgstr "מדינה חופשיה" - -#: i18n/states/ZA.php:15 -msgid "Gauteng" -msgstr "Gauteng" - -#: i18n/states/ZA.php:16 -msgid "KwaZulu-Natal" -msgstr "קוואזולו נטאל" - -#: i18n/states/ZA.php:17 -msgid "Limpopo" -msgstr "לימפופו" - -#: i18n/states/ZA.php:18 -msgid "Mpumalanga" -msgstr "Mpumalanga" - -#: i18n/states/ZA.php:19 -msgid "Northern Cape" -msgstr "כף הצפונית" - -#: i18n/states/ZA.php:20 -msgid "North West" -msgstr "צפון מערב" - -#: i18n/states/ZA.php:21 -msgid "Western Cape" -msgstr "כף מערבית" - -#: i18n/strings.php:16 -msgid "pending" -msgstr "ממתין" - -#: i18n/strings.php:17 -msgid "failed" -msgstr "נכשל" - -#: i18n/strings.php:18 -msgid "on-hold" -msgstr "בהמתנה" - -#: i18n/strings.php:19 -msgid "processing" -msgstr "בטיפול" - -#: i18n/strings.php:20 -msgid "completed" -msgstr "הסתיימה" - -#: i18n/strings.php:21 -msgid "refunded" -msgstr "הוחזר" - -#: i18n/strings.php:22 -msgid "cancelled" -msgstr "בוטל" - -#: templates/cart/cart-empty.php:14 -msgid "Your cart is currently empty." -msgstr "העגלה שלך ריקה כרגע." - -#: templates/cart/cart-empty.php:18 -msgid "← Return To Shop" -msgstr "→ חזרה לחנות" - -#: templates/cart/cart.php:28 templates/checkout/form-pay.php:19 -#: templates/checkout/review-order.php:21 -#: templates/emails/admin-new-order.php:22 -#: templates/emails/customer-completed-order.php:23 -#: templates/emails/customer-invoice.php:27 -#: templates/emails/customer-note.php:27 -#: templates/emails/customer-processing-order.php:23 -#: templates/order/order-details.php:20 woocommerce.php:949 -msgid "Product" -msgstr "מוצר" - -#: templates/cart/cart.php:29 templates/emails/admin-new-order.php:24 -#: templates/emails/customer-completed-order.php:25 -#: templates/emails/customer-invoice.php:29 -#: templates/emails/customer-note.php:29 -#: templates/emails/customer-processing-order.php:25 -msgid "Price" -msgstr "מחיר" - -#: templates/cart/cart.php:30 templates/emails/admin-new-order.php:23 -#: templates/emails/customer-completed-order.php:24 -#: templates/emails/customer-invoice.php:28 -#: templates/emails/customer-note.php:28 -#: templates/emails/customer-processing-order.php:24 -msgid "Quantity" -msgstr "כמות" - -#: templates/cart/cart.php:31 templates/checkout/review-order.php:22 -#: templates/myaccount/my-orders.php:35 templates/order/order-details.php:21 -msgid "Total" -msgstr "סך הכל" - -#: templates/cart/cart.php:47 -msgid "Remove this item" -msgstr "הסר פריט זה" - -#: templates/cart/cart.php:100 -#: templates/single-product/add-to-cart/quantity.php:13 -msgctxt "Product quantity input tooltip" -msgid "Qty" -msgstr "כמות" - -#: templates/cart/cart.php:127 woocommerce.php:1062 -msgid "Coupon" -msgstr "קופון" - -#: templates/cart/cart.php:127 templates/checkout/form-coupon.php:29 -msgid "Apply Coupon" -msgstr "הוסף קופון" - -#: templates/cart/cart.php:134 -msgid "Update Cart" -msgstr "עדכן עגלה" - -#: templates/cart/cart.php:134 -msgid "Proceed to Checkout →" -msgstr "המשך לתשלום ←" - -#: templates/cart/cross-sells.php:40 -msgid "You may be interested in…" -msgstr "אתה עשוי להיות מעוניין ..." - -#: templates/cart/mini-cart.php:55 -msgid "No products in the cart." -msgstr "אין מוצרים בעגלה." - -#: templates/cart/mini-cart.php:63 templates/cart/totals.php:92 -#: templates/checkout/review-order.php:93 -msgid "Subtotal" -msgstr "סכום ביניים" - -#: templates/cart/mini-cart.php:69 -msgid "Checkout →" -msgstr "תשלום ←" - -#: templates/cart/shipping-calculator.php:20 -msgid "Calculate Shipping" -msgstr "חישוב משלוח" - -#: templates/cart/shipping-calculator.php:24 woocommerce-template.php:1327 -msgid "Select a country…" -msgstr "בחר ארץ…" - -#: templates/cart/shipping-calculator.php:42 -#: templates/cart/shipping-calculator.php:50 -#: templates/cart/shipping-calculator.php:61 -msgid "State / county" -msgstr "ארץ / מדינה" - -#: templates/cart/shipping-calculator.php:50 woocommerce-template.php:1377 -msgid "Select a state…" -msgstr "בחר מדינה…" - -#: templates/cart/shipping-calculator.php:71 -msgid "Update Totals" -msgstr "עדכן סכום" - -#: templates/cart/shipping-methods.php:32 -msgid "Free" -msgstr "חינם" - -#: templates/cart/shipping-methods.php:67 -msgid "Please fill in your details to see available shipping methods." -msgstr "אנא מלא את פרטיך כדי לראות אפשרויות אספקה." - -#: templates/cart/shipping-methods.php:69 -msgid "" -"Sorry, it seems that there are no available shipping methods for your state. " -"Please contact us if you require assistance or wish to make alternate " -"arrangements." -msgstr "" -"סליחה, נראה כי אין אפשרויות משלוח הזמינות עבור המדינה שלך. אנא צור קשר אם " -"אתה זקוק לסיוע או רוצה לעשות הזמנה חלופית." - -#: templates/cart/totals.php:22 -msgid "Cart Totals" -msgstr "סכום עגלה" - -#: templates/cart/totals.php:28 templates/checkout/review-order.php:27 -msgid "Cart Subtotal" -msgstr "סכום ביניים של העגלה" - -#: templates/cart/totals.php:35 templates/checkout/review-order.php:34 -#: woocommerce.php:1655 -msgid "Cart Discount" -msgstr "הנחת עגלה" - -#: templates/cart/totals.php:35 templates/cart/totals.php:120 -msgid "[Remove]" -msgstr "[הסר]" - -#: templates/cart/totals.php:46 templates/checkout/review-order.php:45 -msgid "Shipping" -msgstr "משלוח" - -#: templates/cart/totals.php:120 templates/checkout/review-order.php:124 -msgid "Order Discount" -msgstr "הנחת הזמנה" - -#: templates/cart/totals.php:129 templates/checkout/review-order.php:133 -msgid "Order Total" -msgstr "סכום הזמנה" - -#: templates/cart/totals.php:161 -msgid " (taxes estimated for %s)" -msgstr "(הערכת מיסים עבור %s)" - -#: templates/cart/totals.php:163 -#, fuzzy -msgid "" -"Note: Shipping and taxes are estimated%s and will be updated during checkout " -"based on your billing and shipping information." -msgstr "" -"הערה: משלוח ומסים מוערכים %s ויעודכנו בקופה המבוססים על פרטי החיוב והמשלוח." - -#: templates/cart/totals.php:175 -msgid "" -"No shipping methods were found; please recalculate your shipping and enter " -"your state/county and zip/postcode to ensure there are no other available " -"methods for your location." -msgstr "" - -#: templates/cart/totals.php:183 -msgid "" -"Sorry, it seems that there are no available shipping methods for your " -"location (%s)." -msgstr "סליחה, נראה כי אין אפשרויות משלוח עבור המיקום שלך ( %s )." - -#: templates/cart/totals.php:185 -msgid "" -"If you require assistance or wish to make alternate arrangements please " -"contact us." -msgstr "אם אתה זקוק לסיוע או רוצה לעשות הזמנה חלופית אנא צור קשר." - -#: templates/checkout/cart-errors.php:16 -msgid "" -"There are some issues with the items in your cart (shown above). Please go " -"back to the cart page and resolve these issues before checking out." -msgstr "" -"יש כמה בעיות עם פריטים בסל שלך (המוצג לעיל). אנא חזור לדף העגלה כדי לפתור את " -"הבעיות האלה לפני התשלום." - -#: templates/checkout/cart-errors.php:20 -msgid "← Return To Cart" -msgstr "← חזור לעגלה" - -#: templates/checkout/form-billing.php:17 -msgid "Billing & Shipping" -msgstr "חיוב ומשלוח" - -#: templates/checkout/form-billing.php:21 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:19 templates/myaccount/my-address.php:25 -#: templates/order/order-details.php:106 -msgid "Billing Address" -msgstr "כתובת חיוב" - -#: templates/checkout/form-billing.php:42 -msgid "Create an account?" -msgstr "פתיחת חשבון?" - -#: templates/checkout/form-billing.php:51 -msgid "" -"Create an account by entering the information below. If you are a returning " -"customer please login at the top of the page." -msgstr "" -"פתיחת חשבון על ידי מילוי הפרטים הבאים. אם אתה לקוח חוזר אנא התחבר בראש העמוד." - -#: templates/checkout/form-checkout.php:20 -msgid "You must be logged in to checkout." -msgstr "אתה חייב ליהיות מחובר כדי לשלם." - -#: templates/checkout/form-checkout.php:51 -msgid "Your order" -msgstr "ההזמנה שלך" - -#: templates/checkout/form-coupon.php:17 -msgid "Have a coupon?" -msgstr "יש לך קופון?" - -#: templates/checkout/form-coupon.php:20 -msgid "Click here to enter your code" -msgstr "לחץ כאן כדי להזין את קוד הקופון" - -#: templates/checkout/form-coupon.php:25 -msgid "Coupon code" -msgstr "קוד קופון" - -#: templates/checkout/form-login.php:14 -msgid "Returning customer?" -msgstr "קנית כאן בעבר?" - -#: templates/checkout/form-login.php:17 -msgid "Click here to login" -msgstr "לחץ כאן כדי להתחבר" - -#: templates/checkout/form-login.php:22 -msgid "" -"If you have shopped with us before, please enter your details in the boxes " -"below. If you are a new customer please proceed to the Billing & " -"Shipping section." -msgstr "" -"אם קנית כאן בעבר, אנא הכנס את שם המשתמש והסיסמה שלך בתיבות הבאות. אם אתה " -"לקוח חדש אנא המשך לסעיף חיוב ומשלוח." - -#: templates/checkout/form-pay.php:20 -msgid "Qty" -msgstr "כמות" - -#: templates/checkout/form-pay.php:21 -msgid "Totals" -msgstr "סכום" - -#: templates/checkout/form-pay.php:78 -msgid "" -"Sorry, it seems that there are no available payment methods for your " -"location. Please contact us if you require assistance or wish to make " -"alternate arrangements." -msgstr "סליחה, נראה כי אין אפשרויות תשלום הזמינות עבור המיקום שלך." - -#: templates/checkout/form-pay.php:87 -msgid "Pay for order" -msgstr "שלם על ההזמנה" - -#: templates/checkout/form-shipping.php:32 -msgid "Ship to billing address?" -msgstr "משלוח לכתובת חיוב?" - -#: templates/checkout/form-shipping.php:35 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:20 templates/order/order-details.php:121 -msgid "Shipping Address" -msgstr "כתובת משלוח" - -#: templates/checkout/form-shipping.php:59 -#: templates/single-product/tabs/additional-information.php:14 -#: woocommerce-template.php:756 -msgid "Additional Information" -msgstr "מידע נוסף" - -#: templates/checkout/review-order.php:217 -msgid "Please fill in your details above to see available payment methods." -msgstr "אנא מלא את הפרטים שלך למעלה כדי לראות את אפשרויות התשלום הזמינות." - -#: templates/checkout/review-order.php:219 -msgid "" -"Sorry, it seems that there are no available payment methods for your state. " -"Please contact us if you require assistance or wish to make alternate " -"arrangements." -msgstr "" -"סליחה, נראה כי אין אפשרויות משלוח הזמינות עבור המדינה שלך. אנא צור קשר אם " -"אתה זקוק לסיוע או רוצה לעשות הזמנה חלופית." - -#: templates/checkout/review-order.php:228 -msgid "" -"Since your browser does not support JavaScript, or it is disabled, please " -"ensure you click the Update Totals button before placing your " -"order. You may be charged more than the amount stated above if you fail to " -"do so." -msgstr "" -"הדפדפן שלך לא תומך ב JavaScript, או שהוא מכובה, אנא ודא שאתה לוחץ על " -"עדכן סכום לפני ביצוע ההזמנה. אתה עשוי להיות מחויב יותר מהסכום האמור " -"לעיל, אם לא תצליח לעשות זאת." - -#: templates/checkout/review-order.php:228 -msgid "Update totals" -msgstr "עדכן סכום" - -#: templates/checkout/review-order.php:234 -msgid "Place order" -msgstr "הזן הזמנה" - -#: templates/checkout/review-order.php:238 -msgid "I have read and accept the" -msgstr "אני קראתי ומאשר את " - -#: templates/checkout/review-order.php:238 -msgid "terms & conditions" -msgstr "תנאי השימוש" - -#: templates/checkout/thankyou.php:18 -msgid "" -"Unfortunately your order cannot be processed as the originating bank/" -"merchant has declined your transaction." -msgstr "למרבה הצער לא ניתן לבצע את ההזמנה הבנק דחה את הבקשה שלך." - -#: templates/checkout/thankyou.php:22 -msgid "Please attempt your purchase again or go to your account page." -msgstr "נא לנסות שוב את הרכישה או לעבור אל דף החשבון שלך." - -#: templates/checkout/thankyou.php:24 -msgid "Please attempt your purchase again." -msgstr "אנא תנסה שוב לבצע את הרכישה." - -#: templates/checkout/thankyou.php:36 templates/checkout/thankyou.php:67 -msgid "Thank you. Your order has been received." -msgstr "תודה לך. ההזמנה שלך התקבלה בהצלחה." - -#: templates/emails/admin-new-order.php:13 -#: templates/emails/plain/admin-new-order.php:13 -msgid "You have received an order from %s. Their order is as follows:" -msgstr "קיבלת זמנה מ- %s. לְהַלָן ההזמנה שלהם:" - -#: templates/emails/admin-new-order.php:17 -msgid "Order: %s" -msgstr "הזמנה: %s" - -#: templates/emails/admin-new-order.php:50 -#: templates/emails/customer-completed-order.php:51 -#: templates/emails/customer-note.php:55 -#: templates/emails/customer-processing-order.php:51 -#: templates/emails/plain/admin-new-order.php:38 -#: templates/order/order-details.php:88 -msgid "Customer details" -msgstr "פרטי לקוח" - -#: templates/emails/admin-new-order.php:53 -#: templates/emails/customer-completed-order.php:54 -#: templates/emails/customer-note.php:58 -#: templates/emails/customer-processing-order.php:54 -#: templates/emails/plain/admin-new-order.php:41 -#: templates/emails/plain/customer-completed-order.php:41 -#: templates/emails/plain/customer-note.php:49 -#: templates/emails/plain/customer-processing-order.php:41 -#: templates/order/order-details.php:92 -msgid "Email:" -msgstr "מייל:" - -#: templates/emails/admin-new-order.php:56 -#: templates/emails/customer-completed-order.php:57 -#: templates/emails/customer-note.php:61 -#: templates/emails/customer-processing-order.php:57 -#: templates/emails/plain/admin-new-order.php:44 -#: templates/emails/plain/customer-completed-order.php:44 -#: templates/emails/plain/customer-note.php:52 -#: templates/emails/plain/customer-processing-order.php:44 -msgid "Tel:" -msgstr "טלפון:" - -#: templates/emails/customer-completed-order.php:14 -#: templates/emails/plain/customer-completed-order.php:13 -msgid "" -"Hi there. Your recent order on %s has been completed. Your order details are " -"shown below for your reference:" -msgstr "היי. ההזמנה האחרונה שלך %s הושלמה. פרטי ההזמנה שלך מוצגים מתחת לעיונך:" - -#: templates/emails/customer-invoice.php:16 -#: templates/emails/plain/customer-invoice.php:14 -msgid "" -"An order has been created for you on %s. To pay for this order please use " -"the following link: %s" -msgstr "נוצרה הזמנה עבורך ב %s. כדי לשלם עבור הזמנה זו אנא השתמש בקישור: %s" - -#: templates/emails/customer-invoice.php:16 -msgid "pay" -msgstr "שלם" - -#: templates/emails/customer-new-account.php:14 -#: templates/emails/plain/customer-new-account.php:13 -msgid "" -"Thanks for creating an account on %s. Your username is %s." -msgstr "" - -#: templates/emails/customer-new-account.php:16 -#: templates/emails/plain/customer-new-account.php:15 -msgid "You can access your account area here: %s." -msgstr "אתה יכול לגשת לאזור החשבון שלך כאן: %s" - -#: templates/emails/customer-note.php:14 -#: templates/emails/plain/customer-note.php:13 -msgid "Hello, a note has just been added to your order:" -msgstr "שלום, שים לב הערה התווספה לסל הקניות שלך:" - -#: templates/emails/customer-note.php:18 -#: templates/emails/plain/customer-note.php:21 -msgid "For your reference, your order details are shown below." -msgstr "פרטי ההזמנה שלך מוצגים להלן, לעיונך." - -#: templates/emails/customer-processing-order.php:14 -#: templates/emails/plain/customer-processing-order.php:13 -#, fuzzy -msgid "" -"Your order has been received and is now being processed. Your order details " -"are shown below for your reference:" -msgstr "" -"ההזמנה שלך כבר קבל ועכשיו נמצאת בתהליכי עיבוד. פרטי ההזמנה שלך מוצגים מתחת " -"לעיונך:" - -#: templates/emails/customer-reset-password.php:14 -#: templates/emails/plain/customer-reset-password.php:13 -#, fuzzy -msgid "Someone requested that the password be reset for the following account:" -msgstr "מישהו בקש שהסיסמה תהיה לאפס לחשבון הבא:" - -#: templates/emails/customer-reset-password.php:15 -#: templates/emails/plain/customer-reset-password.php:15 -msgid "Username: %s" -msgstr "שם משתמש: %s" - -#: templates/emails/customer-reset-password.php:16 -#: templates/emails/plain/customer-reset-password.php:16 -#, fuzzy -msgid "If this was a mistake, just ignore this email and nothing will happen." -msgstr "אם זו הייתה טעות, פשוט להתעלם מהודעה זו ושום דבר לא יקרה." - -#: templates/emails/customer-reset-password.php:17 -#: templates/emails/plain/customer-reset-password.php:17 -msgid "To reset your password, visit the following address:" -msgstr "כדי לאפס את הסיסמה שלך, בקר בכתובת הבאה:" - -#: templates/emails/customer-reset-password.php:20 -msgid "Click here to reset your password" -msgstr "לחץ כאן כדי לאפס את הסיסמה שלך" - -#: templates/emails/email-addresses.php:18 -#: templates/emails/plain/email-addresses.php:12 -msgid "Billing address" -msgstr "כתובת חיוב" - -#: templates/emails/email-addresses.php:28 -#: templates/emails/plain/email-addresses.php:17 -msgid "Shipping address" -msgstr "כתובת משלוח" - -#: templates/emails/email-order-items.php:40 -msgid "Download %d:" -msgstr "הורד את %d:" - -#: templates/emails/email-order-items.php:42 -msgid "Download:" -msgstr "הורדה:" - -#: templates/emails/plain/admin-new-order.php:19 -#: templates/emails/plain/customer-completed-order.php:19 -#: templates/emails/plain/customer-invoice.php:20 -#: templates/emails/plain/customer-note.php:27 -#: templates/emails/plain/customer-processing-order.php:19 -msgid "Order number: %s" -msgstr "מספר הזמנה: %s" - -#: templates/emails/plain/admin-new-order.php:20 -#: templates/emails/plain/customer-completed-order.php:20 -#: templates/emails/plain/customer-invoice.php:21 -#: templates/emails/plain/customer-note.php:28 -#: templates/emails/plain/customer-processing-order.php:20 -msgid "Order date: %s" -msgstr "תאריך הזמנה: %s" - -#: templates/emails/plain/admin-new-order.php:20 -msgid "jS F Y" -msgstr "jS F Y" - -#: templates/emails/plain/customer-completed-order.php:38 -#: templates/emails/plain/customer-note.php:46 -#: templates/emails/plain/customer-processing-order.php:38 -msgid "Your details" -msgstr "הפרטים שלך" - -#: templates/emails/plain/email-order-items.php:28 -msgid "Quantity: %s" -msgstr "כמות: %s" - -#: templates/emails/plain/email-order-items.php:31 -msgid "Cost: %s" -msgstr "מחיר: %s" - -#: templates/loop/add-to-cart.php:17 templates/loop/add-to-cart.php:41 -#: templates/loop/add-to-cart.php:50 -msgid "Read More" -msgstr "קרא עוד" - -#: templates/loop/add-to-cart.php:33 -msgid "Select options" -msgstr "בחר אפשרויות" - -#: templates/loop/add-to-cart.php:37 -msgid "View options" -msgstr "צפייה באפשרויות" - -#: templates/loop/no-products-found.php:14 templates/loop-shop.php:40 -msgid "No products found which match your selection." -msgstr "לא נמצאו מוצרים התואמים את בחירתך." - -#: templates/loop/orderby.php:21 -msgid "Default sorting" -msgstr "סידור ברירת מחדל" - -#: templates/loop/orderby.php:22 -msgid "Sort by popularity" -msgstr "סדר לפי פופולריות" - -#: templates/loop/orderby.php:23 -msgid "Sort by average rating" -msgstr "סדר לפי דירוג ממוצע" - -#: templates/loop/orderby.php:24 -msgid "Sort by newness" -msgstr "סדר מהחדש לישן" - -#: templates/loop/orderby.php:25 -msgid "Sort by price: low to high" -msgstr "סדר מהזול ליקר" - -#: templates/loop/orderby.php:26 -msgid "Sort by price: high to low" -msgstr "סדר מהיקר לזול" - -#: templates/loop/result-count.php:28 -msgid "Showing the single result" -msgstr "מציג תוצאה אחת" - -#: templates/loop/result-count.php:30 -msgid "Showing all %d results" -msgstr "מציג את כל %d התוצאות" - -#: templates/loop/result-count.php:32 -msgctxt "%1$d = first, %2$d = last, %3$d = total" -msgid "Showing %1$d–%2$d of %3$d results" -msgstr "מציג %1$d-%2$d מתוך %3$d תוצאות" - -#: templates/loop/sale-flash.php:16 templates/single-product/sale-flash.php:16 -msgid "Sale!" -msgstr "מבצע!" - -#: templates/myaccount/form-change-password.php:20 -#: templates/myaccount/form-lost-password.php:31 -msgid "New password" -msgstr "סיסמה חדשה" - -#: templates/myaccount/form-change-password.php:24 -#: templates/myaccount/form-lost-password.php:35 -msgid "Re-enter new password" -msgstr "הכנס מחדש את הסיסמה החדשה" - -#: templates/myaccount/form-change-password.php:29 -#: templates/myaccount/form-lost-password.php:45 -msgid "Save" -msgstr "שמור" - -#: templates/myaccount/form-edit-address.php:43 -msgid "Save Address" -msgstr "שמור כתובת" - -#: templates/myaccount/form-login.php:26 templates/myaccount/form-login.php:40 -#: templates/shop/form-login.php:31 -msgid "Login" -msgstr "התחבר" - -#: templates/myaccount/form-login.php:50 templates/shop/form-login.php:33 -msgid "Lost Password?" -msgstr "שכחת סיסמה?" - -#: templates/myaccount/form-login.php:60 -#: templates/myaccount/form-login.php:101 -msgid "Register" -msgstr "הרשמה" - -#: templates/myaccount/form-login.php:66 -msgid "Username" -msgstr "שם משתמש" - -#: templates/myaccount/form-login.php:78 -#: templates/single-product-reviews.php:101 -msgid "Email" -msgstr "מייל" - -#: templates/myaccount/form-login.php:89 -msgid "Re-enter password" -msgstr "הכנס מחדש סיסמה" - -#: templates/myaccount/form-lost-password.php:22 -msgid "" -"Lost your password? Please enter your username or email address. You will " -"receive a link to create a new password via email." -msgstr "" -"שכח את הסיסמה שלך? הזן את שם המשתמש שלך או כתובת הדואר אלקטרוני. אתה תקבל " -"קישור ליצירת סיסמא חדשה באמצעות דואר אלקטרוני." - -#: templates/myaccount/form-lost-password.php:28 -msgid "Enter a new password below." -msgstr "כתוב סיסמה חדשה למטה." - -#: templates/myaccount/form-lost-password.php:45 -msgid "Reset Password" -msgstr "איפוס סיסמה" - -#: templates/myaccount/my-account.php:19 -msgid "" -"Hello, %s. From your account dashboard you can view your " -"recent orders, manage your shipping and billing addresses and change your password." -msgstr "" -"שלום, %s. מלוח הבקרה בחשבון שלך תוכל להציג הזמנות האחרונות, " -"לנהל את המשלוח שלך כתובות חיוב ולשנות את הסיסמה שלך." - -#: templates/myaccount/my-address.php:17 -msgid "My Addresses" -msgstr "הכתובות שלי" - -#: templates/myaccount/my-address.php:23 -msgid "My Address" -msgstr "הכתובת שלי" - -#: templates/myaccount/my-address.php:35 -msgid "The following addresses will be used on the checkout page by default." -msgstr "זו הכתובת ברירת מחדל שתופיע בתהליך ההזמנה." - -#: templates/myaccount/my-address.php:45 woocommerce.php:917 -#: woocommerce.php:953 woocommerce.php:990 woocommerce.php:1028 -#: woocommerce.php:1066 -msgid "Edit" -msgstr "עריכה" - -#: templates/myaccount/my-address.php:64 -msgid "You have not set up this type of address yet." -msgstr "לא הגדרת כתובת זאת עדיין." - -#: templates/myaccount/my-downloads.php:18 -msgid "Available downloads" -msgstr "הורדות זמינות" - -#: templates/myaccount/my-downloads.php:27 -msgid "%s download remaining" -msgid_plural "%s downloads remaining" -msgstr[0] "%s הורדה שנותרה" -msgstr[1] "%s הורדות נורתו" - -#: templates/myaccount/my-orders.php:26 -msgid "Recent Orders" -msgstr "הזמנות אחרונות" - -#: templates/myaccount/my-orders.php:32 woocommerce.php:1025 -msgid "Order" -msgstr "הזמנה" - -#: templates/myaccount/my-orders.php:33 -msgid "Date" -msgstr "תאריך" - -#: templates/myaccount/my-orders.php:34 -msgid "Status" -msgstr "מצב" - -#: templates/myaccount/my-orders.php:62 -msgid "%s for %s item" -msgid_plural "%s for %s items" -msgstr[0] "" -msgstr[1] "" - -#: templates/myaccount/my-orders.php:77 -msgid "Cancel" -msgstr "בטל" - -#: templates/myaccount/my-orders.php:82 -msgid "View" -msgstr "צפייה" - -#: templates/order/form-tracking.php:17 -msgid "" -"To track your order please enter your Order ID in the box below and press " -"return. This was given to you on your receipt and in the confirmation email " -"you should have received." -msgstr "" -"כדי לעקוב אחר ההזמנה שלך, אנא הזן את מזהה ההזמנה בתיבה למטה ולחץ אנטר. קיבלת " -"את המזהה בחשבונית ובמייל האישור שהיית אמור לקבל." - -#: templates/order/form-tracking.php:19 -msgid "Order ID" -msgstr "מזהה הזמנה" - -#: templates/order/form-tracking.php:19 -msgid "Found in your order confirmation email." -msgstr "" - -#: templates/order/form-tracking.php:20 -msgid "Billing Email" -msgstr "כתובת אימייל לחיוב" - -#: templates/order/form-tracking.php:20 -msgid "Email you used during checkout." -msgstr "כתובת מייל שבה השתמש בעת התשלום בקופה." - -#: templates/order/form-tracking.php:23 -msgid "Track" -msgstr "מעקב" - -#: templates/order/order-details.php:16 -msgid "Order Details" -msgstr "פרטי הזמנה" - -#: templates/order/order-details.php:57 -msgid "Download file %s →" -msgstr "הורד את הקובץ %s ←" - -#: templates/order/order-details.php:81 -msgid "Order Again" -msgstr "הזמן שוב" - -#: templates/order/order-details.php:93 -msgid "Telephone:" -msgstr "טלפון:" - -#: templates/order/tracking.php:18 -msgid "Order %s which was made %s has the status “%s”" -msgstr "" - -#: templates/order/tracking.php:18 -msgid "ago" -msgstr "לפני" - -#: templates/order/tracking.php:20 -msgid "and was completed" -msgstr "והושלם" - -#: templates/order/tracking.php:20 -msgid " ago" -msgstr " לפני" - -#: templates/shop/breadcrumb.php:66 -msgid "Products tagged “" -msgstr "תגית ”" - -#: templates/shop/breadcrumb.php:94 templates/shop/breadcrumb.php:196 -msgid "Search results for “" -msgstr "תוצאות חיפוש עבור “" - -#: templates/shop/breadcrumb.php:154 -msgid "Error 404" -msgstr "שגיאה העמוד לא נמצא 404" - -#: templates/shop/breadcrumb.php:200 -msgid "Posts tagged “" -msgstr "הודעות שתוייגו “" - -#: templates/shop/breadcrumb.php:205 -msgid "Author:" -msgstr "מאת:" - -#: templates/shop/breadcrumb.php:210 -msgid "Page" -msgstr "עמוד" - -#: templates/single-product/add-to-cart/variable.php:24 -msgid "Choose an option" -msgstr "בחר אפשרות" - -#: templates/single-product/add-to-cart/variable.php:64 -msgid "Clear selection" -msgstr "נקה בחירה" - -#: templates/single-product/meta.php:22 -msgid "Category:" -msgid_plural "Categories:" -msgstr[0] "קטגוריה:" -msgstr[1] "קטגוריות:" - -#: templates/single-product/meta.php:24 -msgid "Tag:" -msgid_plural "Tags:" -msgstr[0] "תגית:" -msgstr[1] "תגיות:" - -#: templates/single-product/product-attributes.php:28 -msgid "Weight" -msgstr "משקל" - -#: templates/single-product/product-attributes.php:37 -msgid "Dimensions" -msgstr "מימדים" - -#: templates/single-product/related.php:36 -msgid "Related Products" -msgstr "מוצרים קשורים" - -#: templates/single-product/review.php:26 -msgid "Rated %d out of 5" -msgstr "דורג %d מתוך 5" - -#: templates/single-product/review.php:33 -msgid "Your comment is awaiting approval" -msgstr "תגובתך ממתינה לאישור" - -#: templates/single-product/review.php:40 -msgid "verified owner" -msgstr "בעלים מאומתים" - -#: templates/single-product/tabs/description.php:14 -msgid "Product Description" -msgstr "תיאור מוצר" - -#: templates/single-product/up-sells.php:41 -msgid "You may also like…" -msgstr "" - -#: templates/single-product-reviews.php:45 -msgid "%s review for %s" -msgid_plural "%s reviews for %s" -msgstr[0] "%s חוות דעת עבור %s" -msgstr[1] "%s חוות דעת עבור %s" - -#: templates/single-product-reviews.php:51 -#: templates/single-product-reviews.php:57 -msgid "Reviews" -msgstr "חוות דעת" - -#: templates/single-product-reviews.php:73 -msgid " Previous" -msgstr " קודם" - -#: templates/single-product-reviews.php:74 -msgid "Next " -msgstr "הבא " - -#: templates/single-product-reviews.php:78 -msgid "Add Your Review" -msgstr "הוסף את הסקירה שלך" - -#: templates/single-product-reviews.php:78 -msgid "Add Review" -msgstr "הוסף חוות דעת" - -#: templates/single-product-reviews.php:80 -msgid "Add a review" -msgstr "הוסף חוות דעת" - -#: templates/single-product-reviews.php:84 -msgid "Be the first to review" -msgstr "מה דעתך על המוצר " - -#: templates/single-product-reviews.php:86 -msgid "" -"There are no reviews yet, would you like to submit yours?" -msgstr "" -"אין חוות דעת עדיין, היית רוצה לשלוח משלך?" - -#: templates/single-product-reviews.php:104 -msgid "Submit Review" -msgstr "הוסף חוות דעת" - -#: templates/single-product-reviews.php:111 -msgid "Rating" -msgstr "דירוג" - -#: templates/single-product-reviews.php:112 -msgid "Rate…" -msgstr "דרג…" - -#: templates/single-product-reviews.php:113 -msgid "Perfect" -msgstr "מצויין" - -#: templates/single-product-reviews.php:114 -msgid "Good" -msgstr "טוב" - -#: templates/single-product-reviews.php:115 -msgid "Average" -msgstr "ממוצע" - -#: templates/single-product-reviews.php:116 -msgid "Not that bad" -msgstr "לא כזה רע" - -#: templates/single-product-reviews.php:117 -msgid "Very Poor" -msgstr "ממצב גרוע" - -#: templates/single-product-reviews.php:122 -msgid "Your Review" -msgstr "חוות דעתך" - -#: woocommerce-ajax.php:111 -msgid "Please enter your username and password to login." -msgstr "אנא הזן את שם המשתמש וסיסמה שלך כדי להתחבר." - -#: woocommerce-ajax.php:191 -msgid "Sorry, your session has expired." -msgstr "אנו מצטערים, אך פג תוקף החיבור שלך." - -#: woocommerce-ajax.php:191 -msgid "Return to homepage →" -msgstr "חזרה לעמוד הבית ←" - -#: woocommerce-ajax.php:332 woocommerce-ajax.php:366 woocommerce-ajax.php:389 -msgid "You do not have sufficient permissions to access this page." -msgstr "אין לך הרשאות מתאימות לצפות בעמוד הזה." - -#: woocommerce-ajax.php:334 woocommerce-ajax.php:367 woocommerce-ajax.php:390 -msgid "You have taken too long. Please go back and retry." -msgstr "לקח לך יותר מידי זמן. אנא חזור אחורה ונסה שנית." - -#: woocommerce-ajax.php:626 -msgid "Same as parent" -msgstr "בדיוק כמו האב" - -#: woocommerce-ajax.php:627 -msgid "Standard" -msgstr "סטנטדרטי" - -#: woocommerce-ajax.php:1172 -msgid "" -"No products had their stock reduced - they may not have stock management " -"enabled." -msgstr "" -"אין מוצרי המניות שלהם היו מופחתים - הם לא יכולים להיות מניית ניהול פעיל." - -#: woocommerce-ajax.php:1215 woocommerce-ajax.php:1216 -msgid "Item #%s stock increased from %s to %s." -msgstr "המלאי של #%s עלה מ %s ל %s" - -#: woocommerce-ajax.php:1223 -msgid "" -"No products had their stock increased - they may not have stock management " -"enabled." -msgstr "" - -#: woocommerce-ajax.php:1244 -msgid "Value" -msgstr "ערך" - -#: woocommerce-ajax.php:1558 -msgid "Delete note" -msgstr "מחק הערה" - -#: woocommerce-core-functions.php:268 -msgid "%s – %s%s" -msgstr "%s – %s %s" - -#: woocommerce-core-functions.php:675 -msgid "Australian Dollars" -msgstr "דולר אוסטרלי" - -#: woocommerce-core-functions.php:676 -msgid "Brazilian Real" -msgstr "ריאל ברזילאי" - -#: woocommerce-core-functions.php:677 -msgid "Canadian Dollars" -msgstr "דולר קנדי" - -#: woocommerce-core-functions.php:678 -msgid "Chinese Yuan" -msgstr "יואן" - -#: woocommerce-core-functions.php:679 -msgid "Czech Koruna" -msgstr "קורונה צ 'כי" - -#: woocommerce-core-functions.php:680 -msgid "Danish Krone" -msgstr "כתר דני" - -#: woocommerce-core-functions.php:681 -msgid "Euros" -msgstr "הורה" - -#: woocommerce-core-functions.php:682 -msgid "Hong Kong Dollar" -msgstr "דולר הונג קונגי" - -#: woocommerce-core-functions.php:683 -msgid "Hungarian Forint" -msgstr "פורינט הונגרי" - -#: woocommerce-core-functions.php:684 -msgid "Indonesia Rupiah" -msgstr "אינדונזיה רופים" - -#: woocommerce-core-functions.php:685 -msgid "Israeli Shekel" -msgstr "שקל ישראלי" - -#: woocommerce-core-functions.php:686 -msgid "Japanese Yen" -msgstr "ין יפני" - -#: woocommerce-core-functions.php:687 -msgid "Malaysian Ringgits" -msgstr "מלזי מלזי" - -#: woocommerce-core-functions.php:688 -msgid "Mexican Peso" -msgstr "פזו מקסיקני" - -#: woocommerce-core-functions.php:689 -msgid "Norwegian Krone" -msgstr "כתר נורבגי" - -#: woocommerce-core-functions.php:690 -msgid "New Zealand Dollar" -msgstr "דולר ניו זילנד" - -#: woocommerce-core-functions.php:691 -msgid "Philippine Pesos" -msgstr "פזו פיליפיני" - -#: woocommerce-core-functions.php:692 -msgid "Polish Zloty" -msgstr "הזלוטי פולני" - -#: woocommerce-core-functions.php:693 -msgid "Pounds Sterling" -msgstr "פאונד סטרלינג" - -#: woocommerce-core-functions.php:694 -msgid "Romanian Leu" -msgstr "לאו רומני" - -#: woocommerce-core-functions.php:695 -msgid "Singapore Dollar" -msgstr "דולר סינגפורי" - -#: woocommerce-core-functions.php:696 -msgid "South African rand" -msgstr "ראנד הדרום האפריקאי" - -#: woocommerce-core-functions.php:697 -msgid "Swedish Krona" -msgstr "כתר שבדי" - -#: woocommerce-core-functions.php:698 -msgid "Swiss Franc" -msgstr "פרנק שויצרי" - -#: woocommerce-core-functions.php:699 -msgid "Taiwan New Dollars" -msgstr "חדש הדולר טייוואני" - -#: woocommerce-core-functions.php:700 -msgid "Thai Baht" -msgstr "בהט התאילנדי" - -#: woocommerce-core-functions.php:701 -msgid "Turkish Lira" -msgstr "לירה טורקית" - -#: woocommerce-core-functions.php:702 -msgid "US Dollars" -msgstr "דולר ארצות הברית" - -#: woocommerce-core-functions.php:1189 woocommerce-core-functions.php:1215 -msgid "Download Permissions Granted" -msgstr "הרשאות הורדה ניתנו" - -#: woocommerce-core-functions.php:1328 -msgctxt "slug" -msgid "uncategorized" -msgstr "uncategorized" - -#: woocommerce-core-functions.php:1517 -msgid "Select a category" -msgstr "בחר קטגוריה" - -#: woocommerce-core-functions.php:1521 -msgid "Uncategorized" -msgstr "לא מקוטלג" - -#: woocommerce-core-functions.php:1893 -msgid "Customer" -msgstr "לקוח" - -#: woocommerce-core-functions.php:1900 -msgid "Shop Manager" -msgstr "מנהל חנות" - -#: woocommerce-core-functions.php:2433 -msgid "Unpaid order cancelled - time limit reached." -msgstr "" - -#: woocommerce-core-functions.php:2485 woocommerce-functions.php:703 -msgid "Please enter a username." -msgstr "אנא הזן שם משתמש." - -#: woocommerce-functions.php:208 woocommerce-functions.php:253 -msgid "Cart updated." -msgstr "העגלה עודכנה." - -#: woocommerce-functions.php:239 -msgid "You can only have 1 %s in your cart." -msgstr "" - -#: woocommerce-functions.php:296 woocommerce-functions.php:343 -msgid "Please choose product options…" -msgstr "בחר אפשרויות מוצר…" - -#: woocommerce-functions.php:378 -msgid "" -"Please choose the quantity of items you wish to add to your cart…" -msgstr "נא לבחור את כמות הפריטים שברצונך להוסיף לעגלת הקניות שלך…" - -#: woocommerce-functions.php:386 -msgid "Please choose a product to add to your cart…" -msgstr "אנא בחר במוצר שברצונך להוסיף לעגלת הקניות שלך…" - -#: woocommerce-functions.php:455 -msgid "Added \"%s\" to your cart." -msgstr "" - -#: woocommerce-functions.php:455 -msgid "\" and \"" -msgstr "\" וגם \"" - -#: woocommerce-functions.php:458 -msgid ""%s" was successfully added to your cart." -msgstr ""%s" נוסף לעגלה בהצלחה." - -#: woocommerce-functions.php:466 -msgid "Continue Shopping →" -msgstr "המשך קניות ←" - -#: woocommerce-functions.php:633 -msgid "Username is required." -msgstr "נדרש שם משתמש." - -#: woocommerce-functions.php:634 woocommerce-functions.php:729 -msgid "Password is required." -msgstr "נדרשת סיסמה." - -#: woocommerce-functions.php:705 -msgid "" -"This username is invalid because it uses illegal characters. Please enter a " -"valid username." -msgstr "" -"שם משתמש זה אינו חוקי משום שהיא משתמשת בתווים לא חוקיים. יש להזין שם משתמש " -"חוקי." - -#: woocommerce-functions.php:708 -msgid "This username is already registered, please choose another one." -msgstr "שם משתמש זה כבר רשום, נא לבחור שם אחר." - -#: woocommerce-functions.php:720 -msgid "Please type your e-mail address." -msgstr "אנא הקלד את כתובת דואר האלקטרוני שלך." - -#: woocommerce-functions.php:722 -msgid "The email address isn’t correct." -msgstr "כתובת המייל לא נכונה." - -#: woocommerce-functions.php:725 -msgid "This email is already registered, please choose another one." -msgstr "כתובת המייל הזאת כבר רשומה, אנא בחר כתובת אחרת." - -#: woocommerce-functions.php:730 -msgid "Re-enter your password." -msgstr "זן מחדש את הסיסמה שלך." - -#: woocommerce-functions.php:735 -msgid "Anti-spam field was filled in." -msgstr "התחום אנטי ספאם היה מלא פנימה" - -#: woocommerce-functions.php:841 -msgid "The cart has been filled with the items from your previous order." -msgstr "העגלה כבר מלאה בפריטים מההזמנה הקודמת שלך." - -#: woocommerce-functions.php:867 -msgid "Order cancelled by customer." -msgstr "הזמנה בוטלה על ידי לקוח." - -#: woocommerce-functions.php:870 -msgid "Your order was cancelled." -msgstr "ההזמנה שלך בוטלה." - -#: woocommerce-functions.php:876 -msgid "" -"Your order is no longer pending and could not be cancelled. Please contact " -"us if you need assistance." -msgstr "" -"ההזמנה שלך היא כבר לא תלוי ועומדת ולא ניתן לבטלה. אנא צור קשר אם אתה זקוק " -"לעזרה." - -#: woocommerce-functions.php:911 -msgid "Invalid email address." -msgstr "כתובת מייל לא תקנית." - -#: woocommerce-functions.php:911 woocommerce-functions.php:933 -#: woocommerce-functions.php:953 woocommerce-functions.php:959 -#: woocommerce-functions.php:963 woocommerce-functions.php:966 -#: woocommerce-functions.php:996 woocommerce-functions.php:1099 -msgid "Go to homepage →" -msgstr "עבור לדף בית ←" - -#: woocommerce-functions.php:933 -msgid "Invalid download." -msgstr "הורדה לא תקנית." - -#: woocommerce-functions.php:945 -msgid "You must be logged in to download files." -msgstr "אתה חייב להיות מחובר כדי להוריד קבצים." - -#: woocommerce-functions.php:948 -msgid "This is not your download link." -msgstr "זה לא הקישור להורדה שלך." - -#: woocommerce-functions.php:953 -msgid "Product no longer exists." -msgstr "מוצר אינו קיים עוד." - -#: woocommerce-functions.php:963 -msgid "Sorry, you have reached your download limit for this file" -msgstr "סליחה, יש לך הגיע למגבלת ההורדה שלך לקובץ זה" - -#: woocommerce-functions.php:966 -msgid "Sorry, this download has expired" -msgstr "סליחה, פג תוקף להורדה זו " - -#: woocommerce-functions.php:996 -msgid "No file defined" -msgstr "לא הוגדר קובץ" - -#: woocommerce-functions.php:1099 -msgid "File not found" -msgstr "קובץ לא נמצא" - -#: woocommerce-functions.php:1209 -msgid "New products" -msgstr "מוצרים חדשים" - -#: woocommerce-functions.php:1217 -msgid "New products added to %s" -msgstr "מוצרים חדשים נוספו ל %s" - -#: woocommerce-functions.php:1225 -msgid "New products tagged %s" -msgstr "מוצרים חדשים תויגו %s" - -#: woocommerce-functions.php:1264 -msgid "You have taken too long. Please go back and refresh the page." -msgstr "לקח לך יותר מדי זמן. אנא חזור ורענן את הדף." - -#: woocommerce-functions.php:1267 -msgid "Please rate the product." -msgstr "אנא דרג את המוצר." - -#: woocommerce-functions.php:1575 -msgid "Password changed successfully." -msgstr "הסיסמא שונתה בהצלחה." - -#: woocommerce-functions.php:1651 -msgid "Address changed successfully." -msgstr "הכתובה שונתה בהצלחה." - -#: woocommerce-template.php:196 -msgid "" -"This is a demo store for testing purposes — no orders shall be " -"fulfilled." -msgstr "זוהי חנות ההדגמה למטרות בדיקה - הזמנות לא ימולאו." - -#: woocommerce-template.php:215 -msgid "Search Results: “%s”" -msgstr "תוצאות חיפוש: “%s”" - -#: woocommerce-template.php:218 -msgid " – Page %s" -msgstr "   עמוד %s" - -#: woocommerce-template.php:764 -msgid "Reviews (%d)" -msgstr "חוות דעת (%d)" - -#: woocommerce-template.php:990 -msgctxt "breadcrumb" -msgid "Home" -msgstr "עמוד הבית" - -#: woocommerce-template.php:1288 woocommerce.php:1175 -msgid "required" -msgstr "נדרש" - -#: woocommerce-template.php:1334 -msgid "Update country" -msgstr "עדכן ארץ" - -#: woocommerce-template.php:1489 -msgid "Search for:" -msgstr "חיפוש עבור:" - -#: woocommerce-template.php:1490 -msgid "Search for products" -msgstr "חיפוש מוצרים" - -#: woocommerce-template.php:1491 woocommerce.php:913 -msgid "Search" -msgstr "חיפוש" - -#: woocommerce.php:752 -msgctxt "slug" -msgid "product-category" -msgstr "product-category" - -#: woocommerce.php:753 -msgctxt "slug" -msgid "product-tag" -msgstr "product-tag" - -#: woocommerce.php:755 -msgctxt "slug" -msgid "product" -msgstr "product" - -#: woocommerce.php:790 -msgid "Product Category" -msgstr "קטגורית מוצר" - -#: woocommerce.php:791 -msgctxt "Admin menu name" -msgid "Categories" -msgstr "קטגוריות" - -#: woocommerce.php:792 -msgid "Search Product Categories" -msgstr "חיפוש קטגוריות מוצר" - -#: woocommerce.php:793 -msgid "All Product Categories" -msgstr "כל קטגוריות המוצרים" - -#: woocommerce.php:794 -msgid "Parent Product Category" -msgstr "קטגוריית מוצר אב" - -#: woocommerce.php:795 -msgid "Parent Product Category:" -msgstr "קטגוריית מוצר אב:" - -#: woocommerce.php:796 -msgid "Edit Product Category" -msgstr "עריכת קטגוריית מוצר" - -#: woocommerce.php:797 -msgid "Update Product Category" -msgstr "עדכון קטגוריית מוצר" - -#: woocommerce.php:798 -msgid "Add New Product Category" -msgstr "הוסף קטגוריית מוצר חדשה" - -#: woocommerce.php:799 -msgid "New Product Category Name" -msgstr "שם קטגוריית המוצר החדשה" - -#: woocommerce.php:826 -msgid "Product Tag" -msgstr "תגית המוצר" - -#: woocommerce.php:827 -msgctxt "Admin menu name" -msgid "Tags" -msgstr "תגיות" - -#: woocommerce.php:828 -msgid "Search Product Tags" -msgstr "חיפוש תגיות מוצר" - -#: woocommerce.php:829 -msgid "All Product Tags" -msgstr "כל תגיות המוצרים" - -#: woocommerce.php:830 -msgid "Parent Product Tag" -msgstr "תגית מוצר אב" - -#: woocommerce.php:831 -msgid "Parent Product Tag:" -msgstr "תגית מוצר אב:" - -#: woocommerce.php:832 -msgid "Edit Product Tag" -msgstr "עריכת תגית מוצר" - -#: woocommerce.php:833 -msgid "Update Product Tag" -msgstr "עדכון תגית מוצר" - -#: woocommerce.php:834 -msgid "Add New Product Tag" -msgstr "הוסף תגית מוצר חדשה" - -#: woocommerce.php:835 -msgid "New Product Tag Name" -msgstr "שם תגית המוצר החדשה" - -#: woocommerce.php:854 woocommerce.php:856 -msgid "Shipping Classes" -msgstr "סוגי משלוח" - -#: woocommerce.php:858 -msgctxt "Admin menu name" -msgid "Shipping Classes" -msgstr "סוגי משלוח" - -#: woocommerce.php:859 -msgid "Search Shipping Classes" -msgstr "חיפוש סוגי משלוח" - -#: woocommerce.php:860 -msgid "All Shipping Classes" -msgstr "כל סוגי המשלוח" - -#: woocommerce.php:861 -msgid "Parent Shipping Class" -msgstr "סוג משלוח אב" - -#: woocommerce.php:862 -msgid "Parent Shipping Class:" -msgstr "סוג משלוח אב:" - -#: woocommerce.php:863 -msgid "Edit Shipping Class" -msgstr "עריכת סוג המשלוח" - -#: woocommerce.php:864 -msgid "Update Shipping Class" -msgstr "עדכון סוג משלוח" - -#: woocommerce.php:865 -msgid "Add New Shipping Class" -msgstr "סוג משלוח חדש" - -#: woocommerce.php:866 -msgid "New Shipping Class Name" -msgstr "שם סוג המשלוח החדש" - -#: woocommerce.php:914 -msgid "All" -msgstr "הכל" - -#: woocommerce.php:915 woocommerce.php:916 -msgid "Parent" -msgstr "אב" - -#: woocommerce.php:918 -msgid "Update" -msgstr "עדכון" - -#: woocommerce.php:919 -msgid "Add New" -msgstr "הוסף " - -#: woocommerce.php:920 -msgid "New" -msgstr "חדש" - -#: woocommerce.php:950 -msgctxt "Admin menu name" -msgid "Products" -msgstr "מוצרים" - -#: woocommerce.php:951 -msgid "Add Product" -msgstr "הוסף מוצר" - -#: woocommerce.php:952 -msgid "Add New Product" -msgstr "הוסף מוצר חדש" - -#: woocommerce.php:954 -msgid "Edit Product" -msgstr "עריכת מוצר" - -#: woocommerce.php:955 -msgid "New Product" -msgstr "מוצר חדש" - -#: woocommerce.php:956 woocommerce.php:957 -msgid "View Product" -msgstr "צפייה במוצר" - -#: woocommerce.php:958 -msgid "Search Products" -msgstr "חיפוש מוצרים" - -#: woocommerce.php:959 -msgid "No Products found" -msgstr "לא נמצאו מוצרים" - -#: woocommerce.php:960 -msgid "No Products found in trash" -msgstr "לא נמצאו מוצרים באשפה" - -#: woocommerce.php:961 -msgid "Parent Product" -msgstr "מוצר אב" - -#: woocommerce.php:963 -msgid "This is where you can add new products to your store." -msgstr "כאן אתה יכול להוסיף מוצרים לחנות שלך." - -#: woocommerce.php:986 -msgid "Variations" -msgstr "וריאציות" - -#: woocommerce.php:987 -msgid "Variation" -msgstr "מאפיין" - -#: woocommerce.php:988 -msgid "Add Variation" -msgstr "הוסף מאפיין" - -#: woocommerce.php:989 -msgid "Add New Variation" -msgstr "הוסף מאפיין חדש" - -#: woocommerce.php:991 -msgid "Edit Variation" -msgstr "עריכת מאפיין" - -#: woocommerce.php:992 -msgid "New Variation" -msgstr "מאפיין חדש" - -#: woocommerce.php:993 woocommerce.php:994 -msgid "View Variation" -msgstr "צפייה במאפיין" - -#: woocommerce.php:995 -msgid "Search Variations" -msgstr "חיפוש מאפיינים" - -#: woocommerce.php:996 -msgid "No Variations found" -msgstr "לא נמצאו וריאציות" - -#: woocommerce.php:997 -msgid "No Variations found in trash" -msgstr "לא נמצאו וריאציות באשפה" - -#: woocommerce.php:998 -msgid "Parent Variation" -msgstr "וריאציית אב" - -#: woocommerce.php:1015 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "הזמנות" - -#: woocommerce.php:1024 -msgid "Orders" -msgstr "הזמנות" - -#: woocommerce.php:1026 -msgid "Add Order" -msgstr "הוסף הזמנה" - -#: woocommerce.php:1027 -msgid "Add New Order" -msgstr "הוסף הזמנה חדשה" - -#: woocommerce.php:1029 -msgid "Edit Order" -msgstr "עריכת הזמנה" - -#: woocommerce.php:1030 -msgid "New Order" -msgstr "הזמנה חדשה" - -#: woocommerce.php:1033 -msgid "Search Orders" -msgstr "חיפוש הזמנות" - -#: woocommerce.php:1034 -msgid "No Orders found" -msgstr "לא נמצאו הזמנות" - -#: woocommerce.php:1035 -msgid "No Orders found in trash" -msgstr "לא נמצאו הזמנות באשפה" - -#: woocommerce.php:1036 -msgid "Parent Orders" -msgstr "הזמנת אב" - -#: woocommerce.php:1039 -msgid "This is where store orders are stored." -msgstr "כאן מאוחסנים הזמנות החנות." - -#: woocommerce.php:1061 -msgid "Coupons" -msgstr "קופונים" - -#: woocommerce.php:1063 -msgctxt "Admin menu name" -msgid "Coupons" -msgstr "קופונים" - -#: woocommerce.php:1064 -msgid "Add Coupon" -msgstr "הוספת קופון" - -#: woocommerce.php:1065 -msgid "Add New Coupon" -msgstr "הוספת קופון חדש" - -#: woocommerce.php:1067 -msgid "Edit Coupon" -msgstr "עריכת קופון" - -#: woocommerce.php:1068 -msgid "New Coupon" -msgstr "קופון חדש" - -#: woocommerce.php:1069 -msgid "View Coupons" -msgstr "צפייה בקופונים" - -#: woocommerce.php:1070 -msgid "View Coupon" -msgstr "צפה בקופון" - -#: woocommerce.php:1071 -msgid "Search Coupons" -msgstr "חיפוש קופונים" - -#: woocommerce.php:1072 -msgid "No Coupons found" -msgstr "לא נמצאו קופונים" - -#: woocommerce.php:1073 -msgid "No Coupons found in trash" -msgstr "לא נמצאו קופונים באשפה" - -#: woocommerce.php:1074 -msgid "Parent Coupon" -msgstr "קופון אב" - -#: woocommerce.php:1076 -msgid "" -"This is where you can add new coupons that customers can use in your store." -msgstr "כאן אתה יכול ליצור קופונים שלקוחות ישתמשו בהם בחנות שלך." - -#: woocommerce.php:1172 -msgid "Select an option…" -msgstr "בחר אפשרות…" - -#: woocommerce.php:1173 -msgid "Please select a rating" -msgstr "בחר דירוג" - -#: woocommerce.php:1174 -msgid "" -"Sorry, no products matched your selection. Please choose a different " -"combination." -msgstr "" -"אנו מתנצלים, אך לא נמצאו מוצרים שעונים על הבחירה שלך. אנא בחר קומבינציה אחרת." - -#: woocommerce.php:1656 -msgid "Cart % Discount" -msgstr "אחוז הנחת העגלה" - -#: woocommerce.php:1657 -msgid "Product Discount" -msgstr "הנחת מוצר" - -#: woocommerce.php:1658 -msgid "Product % Discount" -msgstr "אחוז הנחת המוצר" - -#: woocommerce.php:1723 -msgid "Action failed. Please refresh the page and retry." -msgstr "הפעולה נכשלה. אנא רענן את העמוד ונסה שנית." diff --git a/i18n/languages/woocommerce-hu_HU.mo b/i18n/languages/woocommerce-hu_HU.mo deleted file mode 100644 index be62d940fdb..00000000000 Binary files a/i18n/languages/woocommerce-hu_HU.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-hu_HU.po b/i18n/languages/woocommerce-hu_HU.po deleted file mode 100644 index ddc0c1eacdf..00000000000 --- a/i18n/languages/woocommerce-hu_HU.po +++ /dev/null @@ -1,7184 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce v2.0.0\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-07-23 08:42:12+00:00\n" -"PO-Revision-Date: 2013-08-01 16:57+0100\n" -"Last-Translator: Szabolcs Légrádi \n" -"Language-Team: Szabolcs Légrádi \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n" -"X-Generator: Poedit 1.5.7\n" - -#: assets/js/admin/editor_plugin_lang.php:5 -msgid "Insert Shortcode" -msgstr "Gyorskód beszúrása" - -#: assets/js/admin/editor_plugin_lang.php:6 -msgid "Product price/cart button" -msgstr "Termék ár/kosár gomb" - -#: assets/js/admin/editor_plugin_lang.php:7 -msgid "Product by SKU/ID" -msgstr "Termék CSZ/azonosító szerint" - -#: assets/js/admin/editor_plugin_lang.php:8 -msgid "Products by SKU/ID" -msgstr "Termékek CSZ/azonosító szerint" - -#: assets/js/admin/editor_plugin_lang.php:9 -msgid "Product categories" -msgstr "Termékkategóriák" - -#: assets/js/admin/editor_plugin_lang.php:10 -msgid "Products by category slug" -msgstr "Termékek kategória alapján" - -#: assets/js/admin/editor_plugin_lang.php:11 -msgid "Recent products" -msgstr "Legújabb termékek" - -#: assets/js/admin/editor_plugin_lang.php:12 -msgid "Featured products" -msgstr "Kiemelt termékek" - -#: assets/js/admin/editor_plugin_lang.php:13 -msgid "Shop Messages" -msgstr "Üzlet üzenetek" - -#: assets/js/admin/editor_plugin_lang.php:14 -msgid "Pages" -msgstr "Oldalak" - -#: assets/js/admin/editor_plugin_lang.php:15 -#: classes/widgets/class-wc-widget-cart.php:61 -msgid "Cart" -msgstr "Kosár" - -#: assets/js/admin/editor_plugin_lang.php:16 -msgid "Checkout" -msgstr "Pénztár" - -#: assets/js/admin/editor_plugin_lang.php:17 -msgid "Order tracking" -msgstr "Rendelés követése" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:18 -#: templates/checkout/thankyou.php:30 -msgid "My Account" -msgstr "Fiókom" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:19 -msgid "Edit Address" -msgstr "Cím szerkesztése" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:20 -msgid "Change Password" -msgstr "Jelszó megváltoztatása" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:21 woocommerce.php:1065 -#: woocommerce.php:1066 -msgid "View Order" -msgstr "Rendelés megtekintése" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:22 -#: templates/checkout/thankyou.php:28 templates/myaccount/my-orders.php:71 -msgid "Pay" -msgstr "Fizetés" - -#: assets/js/admin/editor_plugin_lang.php:23 -msgid "Thankyou" -msgstr "Köszönet" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:431 -#: classes/emails/class-wc-email-customer-completed-order.php:135 -#: classes/emails/class-wc-email-customer-invoice.php:138 -#: classes/emails/class-wc-email-new-order.php:115 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:63 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:57 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:130 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:120 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:76 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:75 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:50 -msgid "Enable/Disable" -msgstr "Bekapcsolás/Kikapcsolás" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:433 -#: classes/emails/class-wc-email-customer-completed-order.php:137 -#: classes/emails/class-wc-email-customer-invoice.php:140 -#: classes/emails/class-wc-email-new-order.php:117 -msgid "Enable this email notification" -msgstr "E-mail értesítés bekapcsolása" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:437 -#: classes/emails/class-wc-email-customer-invoice.php:144 -msgid "Email subject" -msgstr "E-mail tárgy" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:439 -#: classes/abstracts/abstract-wc-email.php:446 -#: classes/emails/class-wc-email-customer-completed-order.php:143 -#: classes/emails/class-wc-email-customer-completed-order.php:150 -#: classes/emails/class-wc-email-customer-completed-order.php:157 -#: classes/emails/class-wc-email-customer-completed-order.php:164 -#: classes/emails/class-wc-email-customer-invoice.php:146 -#: classes/emails/class-wc-email-customer-invoice.php:153 -#: classes/emails/class-wc-email-customer-invoice.php:160 -#: classes/emails/class-wc-email-customer-invoice.php:167 -msgid "Defaults to %s" -msgstr "Alapértelmezésként %s" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:444 -#: classes/emails/class-wc-email-customer-invoice.php:151 -msgid "Email heading" -msgstr "E-mail fejléc" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:451 -#: classes/emails/class-wc-email-customer-completed-order.php:169 -#: classes/emails/class-wc-email-customer-invoice.php:172 -#: classes/emails/class-wc-email-new-order.php:142 -msgid "Email type" -msgstr "E-mail típus" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:453 -#: classes/emails/class-wc-email-customer-completed-order.php:171 -#: classes/emails/class-wc-email-customer-invoice.php:174 -#: classes/emails/class-wc-email-new-order.php:144 -msgid "Choose which format of email to send." -msgstr "Válaszd ki milyen formátumban kerüljön kiküldésre az e-mail." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:457 -#: classes/emails/class-wc-email-customer-completed-order.php:175 -#: classes/emails/class-wc-email-customer-invoice.php:178 -#: classes/emails/class-wc-email-new-order.php:148 -msgid "Plain text" -msgstr "Szöveges" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:458 -#: classes/emails/class-wc-email-customer-completed-order.php:176 -#: classes/emails/class-wc-email-customer-invoice.php:179 -#: classes/emails/class-wc-email-new-order.php:149 -msgid "HTML" -msgstr "HTML" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:459 -#: classes/emails/class-wc-email-customer-completed-order.php:177 -#: classes/emails/class-wc-email-customer-invoice.php:180 -#: classes/emails/class-wc-email-new-order.php:150 -msgid "Multipart" -msgstr "Multipart" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:495 -#: classes/abstracts/abstract-wc-email.php:516 -msgid "Could not write to template file." -msgstr "Nem írható a sablonfájl." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:543 -msgid "Template file copied to theme." -msgstr "A sablonfájl le lett másolva a sablonba." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:552 -msgid "Template file deleted from theme." -msgstr "A sablonfájl törölve a sablonból." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:560 -#: classes/abstracts/abstract-wc-integration.php:30 -#: classes/abstracts/abstract-wc-settings-api.php:39 woocommerce.php:170 -msgid "Settings" -msgstr "Beállítások" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:572 -msgid "HTML template" -msgstr "HTML sablon" - -#: classes/abstracts/abstract-wc-email.php:573 -msgid "Plain text template" -msgstr "Szöveges sablon" - -#: classes/abstracts/abstract-wc-email.php:592 -msgid "Delete template file" -msgstr "Sablonfájl törlése" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:595 -msgid "" -"This template has been overridden by your theme and can be found in: " -"%s." -msgstr "" -"Ez a fájl felül lett írva a sablonból és itt található: %s." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:610 -msgid "Copy file to theme" -msgstr "Fájl másolása a sablonba" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:613 -msgid "" -"To override and edit this email template copy %s to your theme " -"folder: %s." -msgstr "" -"Az e-mail sablon felülírásához és szerkesztéséhez másold ezt a fájlt: " -"%s a sablonod mappájába: %s." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:624 -msgid "File was not found." -msgstr "Fájl nem található." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:649 -msgid "View template" -msgstr "Sablon megtekintése" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:650 -msgid "Hide template" -msgstr "Sablon elrejtése" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:661 -msgid "Are you sure you want to delete this template file?" -msgstr "Biztos vagy benne, hogy törölni szeretnéd ezt a sablonfájlt?" - -#: classes/abstracts/abstract-wc-product.php:33 -msgid "" -"The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class " -"directly." -msgstr "" -"A WC_Product osztály immáron absztrakt. Termék " -"példányosításához használd a get_product metódust ezentúl az " -"osztály közvetlen meghívása helyett." - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:546 -#: classes/abstracts/abstract-wc-product.php:551 -#: classes/abstracts/abstract-wc-product.php:570 -msgid "In stock" -msgstr "Készleten" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:551 -msgid "Only %s left in stock" -msgstr "Csak %s maradt készleten" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:554 -msgid "%s in stock" -msgstr "%s készleten" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:561 -msgid "(backorders allowed)" -msgstr "(visszarendelések engedélyezve)" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:567 -#: classes/abstracts/abstract-wc-product.php:580 templates/cart/cart.php:76 -msgid "Available on backorder" -msgstr "Engedélyezett visszarendelésre" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:573 -#: classes/abstracts/abstract-wc-product.php:583 -#: classes/abstracts/abstract-wc-product.php:587 -msgid "Out of stock" -msgstr "Elfogyott" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:851 -#: classes/abstracts/abstract-wc-product.php:857 -#: classes/class-wc-cart.php:1803 classes/class-wc-order.php:891 -#: classes/class-wc-product-variable.php:272 -#: classes/class-wc-product-variable.php:281 -#: classes/class-wc-product-variation.php:247 -msgid "Free!" -msgstr "Ingyenes!" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:875 -msgctxt "min_price" -msgid "From:" -msgstr "Legolcsóbb:" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:964 -#: templates/single-product-reviews.php:28 -msgid "Rated %s out of 5" -msgstr "Értékelés: %s / 5" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:966 -#: templates/single-product/review.php:27 -#: templates/single-product-reviews.php:28 -msgid "out of 5" -msgstr "/ 5" - -#: classes/class-wc-cache-helper.php:92 -msgid "" -"In order for database caching to work with WooCommerce you " -"must add _wc_session_ to the \"Ignored Query Strings\" option " -"in W3 Total Cache settings here." -msgstr "" -"Ahhoz hogy az adatbázis gyorsítótárazás működjön a " -"WooCommerce-el, fel kell venned a _wc_session_ sort az " -"\"Mellőzött query stringek\" közé a W3 Total Cache beállításaiban." - -# @ woocommerce -#: classes/class-wc-cart.php:460 -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -"Sajnáljuk, jelenleg nincs elég \"%s\" készleten a rendelésed teljesítéséhez " -"(%s van készleten). Kérjük szerkeszd a kosaradat és próbálkozz újra. " -"Elnézést kérünk az okozott kellemetlenségért." - -# @ woocommerce -#: classes/class-wc-cart.php:479 classes/class-wc-cart.php:488 -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfil your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -"Sajnáljuk, jelenleg nincs elég \"%s\" készleten a rendelésed teljesítéséhez " -"(%s van készleten). Kérjük szerkeszd a kosaradat és próbálkozz újra. " -"Elnézést kérünk az okozott kellemetlenségért." - -# @ woocommerce -#: classes/class-wc-cart.php:523 -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfil your order right now. " -"Please try again in %d minutes or edit your cart and try again. We apologise " -"for any inconvenience caused." -msgstr "" -"Sajnáljuk, jelenleg nincs elég \"%s\" készleten a rendelésed teljesítéséhez. " -"Kérjük próbálkozz újra %d percen belül vagy szerkeszd a kosaradat és " -"próbálkozz újra. Elnézést kérünk az okozott kellemetlenségért." - -# @ woocommerce -#: classes/class-wc-cart.php:533 -msgid "" -"Sorry, \"%s\" is not in stock. Please edit your cart and try again. We " -"apologise for any inconvenience caused." -msgstr "" -"Sajnáljuk, \"%s\" elfogyott. Kérjük szerkeszd a kosaradat és próbálkozz " -"újra. Elnézést kérünk az okozott kellemetlenségért." - -# @ woocommerce -#: classes/class-wc-cart.php:845 -msgid "Sorry, "%s" cannot be purchased." -msgstr ""%s" nem megvásárolható, sajnáljuk." - -# @ woocommerce -#: classes/class-wc-cart.php:852 -msgid "" -"You cannot add "%s" to the cart because the product is out of " -"stock." -msgstr ""%s" nem adható a kosárhoz, mert a termék elfogyott." - -# @ woocommerce -#: classes/class-wc-cart.php:857 -msgid "" -"You cannot add that amount of "%s" to the cart because there is " -"not enough stock (%s remaining)." -msgstr "" -"Ekkora mennyiségű "%s" nem rakható a kosárba, mivel nincs elég " -"készleten (%s maradt)." - -# @ woocommerce -#: classes/class-wc-cart.php:869 classes/class-wc-cart.php:883 -#: classes/class-wc-cart.php:891 templates/cart/mini-cart.php:68 -#: woocommerce-functions.php:497 woocommerce.php:1210 -msgid "View Cart →" -msgstr "Kosár megtekintése →" - -# @ woocommerce -#: classes/class-wc-cart.php:869 -msgid "You already have this item in your cart." -msgstr "Ez a termék már a kosárban van." - -#: classes/class-wc-cart.php:883 classes/class-wc-cart.php:891 -msgid "" -"%s You cannot add that amount to the " -"cart — we have %s in stock and you already have %s in your cart." -msgstr "" -"%s Ekkora mennyiség nem rakható a " -"kosárba — %s van készleten és neked már %s van a kosaradban." - -#: classes/class-wc-cart.php:1815 -msgid "via" -msgstr "-" - -#: classes/class-wc-checkout.php:64 -msgid "Account username" -msgstr "Fiók felhasználónév" - -#: classes/class-wc-checkout.php:65 -msgctxt "placeholder" -msgid "Username" -msgstr "Felhasználónév" - -#: classes/class-wc-checkout.php:72 -msgid "Account password" -msgstr "Fiók jelszó" - -#: classes/class-wc-checkout.php:73 -msgctxt "placeholder" -msgid "Password" -msgstr "Jelszó" - -#: classes/class-wc-checkout.php:79 -msgid "Confirm password" -msgstr "Jelszó megerősítése" - -#: classes/class-wc-checkout.php:80 -msgctxt "placeholder" -msgid "Confirm password" -msgstr "Jelszó megerősítése" - -#: classes/class-wc-checkout.php:89 -msgid "Order Notes" -msgstr "Megjegyzés" - -#: classes/class-wc-checkout.php:90 -msgctxt "placeholder" -msgid "Notes about your order, e.g. special notes for delivery." -msgstr "" -"Megjegyzések a rendeléssel kapcsolatban, pl. külön kérés a szállítással " -"kapcsolatban." - -#: classes/class-wc-checkout.php:152 -msgid "Order – %s" -msgstr "Rendelés – %s" - -#: classes/class-wc-checkout.php:152 -msgctxt "Order date parsed by strftime" -msgid "%b %d, %Y @ %I:%M %p" -msgstr "%b %d, %Y @ %I:%M %p" - -#: classes/class-wc-checkout.php:278 -msgid "Backordered" -msgstr "Visszarendelt" - -#: classes/class-wc-checkout.php:388 -msgid "" -"Sorry, your session has expired. Return to homepage →" -msgstr "" -"Sajnáljuk, lejárt a munkamenet. Vissza a főoldalra →" - -#: classes/class-wc-checkout.php:445 woocommerce-functions.php:1698 -msgid "is a required field." -msgstr "mező kitöltése kötelező." - -#: classes/class-wc-checkout.php:458 -msgid "(%s) is not a valid postcode/ZIP." -msgstr "(%s) nem érvényes irányítószám." - -#: classes/class-wc-checkout.php:479 -msgid "is not valid. Please enter one of the following:" -msgstr "nem érvényes. Kérjük a következők valamelyikét írd be:" - -#: classes/class-wc-checkout.php:487 -msgid "is not a valid number." -msgstr "nem érvényes szám." - -#: classes/class-wc-checkout.php:494 -msgid "is not a valid email address." -msgstr "nem érvényes e-mail cím." - -#: classes/class-wc-checkout.php:550 -msgid "Please enter an account username." -msgstr "Kérjük írd be az azonosítód felhasználónevét." - -#: classes/class-wc-checkout.php:554 -msgid "Invalid email/username." -msgstr "Érvénytelen e-mail cím / felhasználónév." - -#: classes/class-wc-checkout.php:557 -msgid "" -"An account is already registered with that username. Please choose another." -msgstr "" -"Már regisztráltak egy azonosítót ezzel a felhasználónévvel. Kérjük válassz " -"másikat." - -#: classes/class-wc-checkout.php:567 -msgid "Please enter an account password." -msgstr "Kérjük válassz egy jelszót az azonosítódhoz." - -#: classes/class-wc-checkout.php:570 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:83 -#: woocommerce-functions.php:760 woocommerce-functions.php:1628 -msgid "Passwords do not match." -msgstr "A jelszavak nem egyeznek." - -#: classes/class-wc-checkout.php:574 -msgid "An account is already registered with your email address. Please login." -msgstr "" -"Már regisztráltak egy azonosítót ezzel az e-mail címmel. Kérjük válassz " -"másikat." - -#: classes/class-wc-checkout.php:580 -msgid "You must accept our Terms & Conditions." -msgstr "A felhasználási feltételek elfogadása kötelező." - -#: classes/class-wc-checkout.php:589 -msgid "Invalid shipping method." -msgstr "Érvénytelen szállítási mód." - -#: classes/class-wc-checkout.php:602 -msgid "Invalid payment method." -msgstr "Érvénytelen fizetési mód." - -#: classes/class-wc-checkout.php:642 woocommerce-functions.php:732 -#: woocommerce-functions.php:734 woocommerce-functions.php:737 -#: woocommerce-functions.php:749 woocommerce-functions.php:751 -#: woocommerce-functions.php:754 woocommerce-functions.php:788 -msgid "ERROR" -msgstr "HIBA" - -#: classes/class-wc-checkout.php:642 woocommerce-functions.php:788 -msgid "" -"Couldn’t register you… please contact us if you continue to " -"have problems." -msgstr "" -"A regisztráció sikertelen… kérjük lépj kapcsolatba velünk, ha a " -"probléma továbbra is fennáll." - -#: classes/class-wc-countries.php:37 -msgid "Afghanistan" -msgstr "Afganisztán" - -#: classes/class-wc-countries.php:38 -msgid "Åland Islands" -msgstr "Aland-szigetek" - -#: classes/class-wc-countries.php:39 -msgid "Albania" -msgstr "Albánia" - -#: classes/class-wc-countries.php:40 -msgid "Algeria" -msgstr "Algéria" - -#: classes/class-wc-countries.php:41 -msgid "Andorra" -msgstr "Andorra" - -#: classes/class-wc-countries.php:42 -msgid "Angola" -msgstr "Angola" - -#: classes/class-wc-countries.php:43 -msgid "Anguilla" -msgstr "Anguilla" - -#: classes/class-wc-countries.php:44 -msgid "Antarctica" -msgstr "Antarktisz" - -#: classes/class-wc-countries.php:45 -msgid "Antigua and Barbuda" -msgstr "Antigua és Barbuda" - -#: classes/class-wc-countries.php:46 -msgid "Argentina" -msgstr "Argentína" - -#: classes/class-wc-countries.php:47 -msgid "Armenia" -msgstr "Örményország" - -#: classes/class-wc-countries.php:48 -msgid "Aruba" -msgstr "Aruba " - -#: classes/class-wc-countries.php:49 -msgid "Australia" -msgstr "Ausztrália" - -#: classes/class-wc-countries.php:50 -msgid "Austria" -msgstr "Ausztria" - -#: classes/class-wc-countries.php:51 -msgid "Azerbaijan" -msgstr "Azerbajdzsán" - -#: classes/class-wc-countries.php:52 -msgid "Bahamas" -msgstr "Bahama-szigetek" - -#: classes/class-wc-countries.php:53 -msgid "Bahrain" -msgstr "Bahrein" - -#: classes/class-wc-countries.php:54 -msgid "Bangladesh" -msgstr "Banglades" - -#: classes/class-wc-countries.php:55 -msgid "Barbados" -msgstr "Barbados" - -#: classes/class-wc-countries.php:56 -msgid "Belarus" -msgstr "Belarusz " - -#: classes/class-wc-countries.php:57 -msgid "Belgium" -msgstr "Belgium" - -#: classes/class-wc-countries.php:58 -msgid "Belau" -msgstr "Belau" - -#: classes/class-wc-countries.php:59 -msgid "Belize" -msgstr "Belize" - -#: classes/class-wc-countries.php:60 -msgid "Benin" -msgstr "Benin" - -#: classes/class-wc-countries.php:61 -msgid "Bermuda" -msgstr "Bermuda" - -#: classes/class-wc-countries.php:62 -msgid "Bhutan" -msgstr "Bhután" - -#: classes/class-wc-countries.php:63 -msgid "Bolivia" -msgstr "Bolívia" - -#: classes/class-wc-countries.php:64 -msgid "Bonaire, Saint Eustatius and Saba" -msgstr "Bonaire, Saint Eustatius és Saba" - -#: classes/class-wc-countries.php:65 -msgid "Bosnia and Herzegovina" -msgstr "Bosznia-Hercegovina" - -#: classes/class-wc-countries.php:66 -msgid "Botswana" -msgstr "Botswana" - -#: classes/class-wc-countries.php:67 -msgid "Bouvet Island" -msgstr "Bouvet-sziget " - -#: classes/class-wc-countries.php:68 -msgid "Brazil" -msgstr "Brazília" - -#: classes/class-wc-countries.php:69 -msgid "British Indian Ocean Territory" -msgstr "Brit Indiai-óceáni Terület" - -#: classes/class-wc-countries.php:70 -msgid "British Virgin Islands" -msgstr "Brit Virgin-szigetek " - -#: classes/class-wc-countries.php:71 -msgid "Brunei" -msgstr "Brunei" - -#: classes/class-wc-countries.php:72 -msgid "Bulgaria" -msgstr "Bulgária" - -#: classes/class-wc-countries.php:73 -msgid "Burkina Faso" -msgstr "Burkina Faso" - -#: classes/class-wc-countries.php:74 -msgid "Burundi" -msgstr "Burundi" - -#: classes/class-wc-countries.php:75 -msgid "Cambodia" -msgstr "Kambodzsa" - -#: classes/class-wc-countries.php:76 -msgid "Cameroon" -msgstr "Kamerun" - -#: classes/class-wc-countries.php:77 -msgid "Canada" -msgstr "Kanada" - -#: classes/class-wc-countries.php:78 -msgid "Cape Verde" -msgstr "Zöld-foki-szigetek" - -#: classes/class-wc-countries.php:79 -msgid "Cayman Islands" -msgstr "Kajmán-szigetek " - -#: classes/class-wc-countries.php:80 -msgid "Central African Republic" -msgstr "Közép-afrikai Köztársaság" - -#: classes/class-wc-countries.php:81 -msgid "Chad" -msgstr "Csád" - -#: classes/class-wc-countries.php:82 -msgid "Chile" -msgstr "Chile" - -#: classes/class-wc-countries.php:83 -msgid "China" -msgstr "Kína" - -#: classes/class-wc-countries.php:84 -msgid "Christmas Island" -msgstr "Karácsony-sziget " - -#: classes/class-wc-countries.php:85 -msgid "Cocos (Keeling) Islands" -msgstr "Kókusz-szigetek/Keeling-szigetek" - -#: classes/class-wc-countries.php:86 -msgid "Colombia" -msgstr "Kolumbia" - -#: classes/class-wc-countries.php:87 -msgid "Comoros" -msgstr "Comore-szigetek" - -#: classes/class-wc-countries.php:88 -msgid "Congo (Brazzaville)" -msgstr "Kongó" - -#: classes/class-wc-countries.php:89 -msgid "Congo (Kinshasa)" -msgstr "Kongói Demokratikus Köztársaság" - -#: classes/class-wc-countries.php:90 -msgid "Cook Islands" -msgstr "Cook-szigetek" - -#: classes/class-wc-countries.php:91 -msgid "Costa Rica" -msgstr "Costa Rica" - -#: classes/class-wc-countries.php:92 -msgid "Croatia" -msgstr "Horvátország" - -#: classes/class-wc-countries.php:93 -msgid "Cuba" -msgstr "Kuba" - -#: classes/class-wc-countries.php:94 -msgid "CuraÇao" -msgstr "CuraÇao" - -#: classes/class-wc-countries.php:95 -msgid "Cyprus" -msgstr "Ciprus" - -#: classes/class-wc-countries.php:96 -msgid "Czech Republic" -msgstr "Csehország" - -#: classes/class-wc-countries.php:97 -msgid "Denmark" -msgstr "Dánia" - -#: classes/class-wc-countries.php:98 -msgid "Djibouti" -msgstr "Dzsibuti" - -#: classes/class-wc-countries.php:99 -msgid "Dominica" -msgstr "Dominika" - -#: classes/class-wc-countries.php:100 -msgid "Dominican Republic" -msgstr "Dominikai Köztársaság" - -#: classes/class-wc-countries.php:101 -msgid "Ecuador" -msgstr "Ecuador" - -#: classes/class-wc-countries.php:102 -msgid "Egypt" -msgstr "Egyiptom" - -#: classes/class-wc-countries.php:103 -msgid "El Salvador" -msgstr "Salvador" - -#: classes/class-wc-countries.php:104 -msgid "Equatorial Guinea" -msgstr "Egyenlítői-Guinea" - -#: classes/class-wc-countries.php:105 -msgid "Eritrea" -msgstr "Eritrea" - -#: classes/class-wc-countries.php:106 -msgid "Estonia" -msgstr "Észtország" - -#: classes/class-wc-countries.php:107 -msgid "Ethiopia" -msgstr "Etiópia" - -#: classes/class-wc-countries.php:108 -msgid "Falkland Islands" -msgstr "Falkland-szigetek" - -#: classes/class-wc-countries.php:109 -msgid "Faroe Islands" -msgstr "Feröer-szigetek" - -#: classes/class-wc-countries.php:110 -msgid "Fiji" -msgstr "Fidzsi-szigetek" - -#: classes/class-wc-countries.php:111 -msgid "Finland" -msgstr "Finnország" - -#: classes/class-wc-countries.php:112 -msgid "France" -msgstr "Franciaország" - -#: classes/class-wc-countries.php:113 -msgid "French Guiana" -msgstr "Francia Guyana" - -#: classes/class-wc-countries.php:114 -msgid "French Polynesia" -msgstr "Francia Polinézia" - -#: classes/class-wc-countries.php:115 -msgid "French Southern Territories" -msgstr "Francia Déli Területek" - -#: classes/class-wc-countries.php:116 -msgid "Gabon" -msgstr "Gabon" - -#: classes/class-wc-countries.php:117 -msgid "Gambia" -msgstr "Gambia" - -#: classes/class-wc-countries.php:118 i18n/states/US.php:23 -msgid "Georgia" -msgstr "Grúzia" - -#: classes/class-wc-countries.php:119 -msgid "Germany" -msgstr "Németország" - -#: classes/class-wc-countries.php:120 -msgid "Ghana" -msgstr "Ghána" - -#: classes/class-wc-countries.php:121 -msgid "Gibraltar" -msgstr "Gibraltár" - -#: classes/class-wc-countries.php:122 -msgid "Greece" -msgstr "Görögország" - -#: classes/class-wc-countries.php:123 -msgid "Greenland" -msgstr "Grönland" - -#: classes/class-wc-countries.php:124 -msgid "Grenada" -msgstr "Grenada" - -#: classes/class-wc-countries.php:125 -msgid "Guadeloupe" -msgstr "Guadeloupe" - -#: classes/class-wc-countries.php:126 -msgid "Guatemala" -msgstr "Guatemala" - -#: classes/class-wc-countries.php:127 -msgid "Guernsey" -msgstr "Guernsey" - -#: classes/class-wc-countries.php:128 -msgid "Guinea" -msgstr "Guinea" - -#: classes/class-wc-countries.php:129 -msgid "Guinea-Bissau" -msgstr "Bissau-Guinea" - -#: classes/class-wc-countries.php:130 -msgid "Guyana" -msgstr "Guyana" - -#: classes/class-wc-countries.php:131 -msgid "Haiti" -msgstr "Haiti" - -#: classes/class-wc-countries.php:132 -msgid "Heard Island and McDonald Islands" -msgstr "Heard-sziget és McDonald-szigetek" - -#: classes/class-wc-countries.php:133 -msgid "Honduras" -msgstr "Honduras" - -#: classes/class-wc-countries.php:134 -msgid "Hong Kong" -msgstr "Hongkong" - -#: classes/class-wc-countries.php:135 -msgid "Hungary" -msgstr "Magyarország" - -#: classes/class-wc-countries.php:136 -msgid "Iceland" -msgstr "Izland" - -#: classes/class-wc-countries.php:137 -msgid "India" -msgstr "India" - -#: classes/class-wc-countries.php:138 -msgid "Indonesia" -msgstr "Indonézia" - -#: classes/class-wc-countries.php:139 -msgid "Iran" -msgstr "Irán" - -#: classes/class-wc-countries.php:140 -msgid "Iraq" -msgstr "Irak" - -#: classes/class-wc-countries.php:141 -msgid "Republic of Ireland" -msgstr "Írország" - -#: classes/class-wc-countries.php:142 -msgid "Isle of Man" -msgstr "Man" - -#: classes/class-wc-countries.php:143 -msgid "Israel" -msgstr "Izrael" - -#: classes/class-wc-countries.php:144 -msgid "Italy" -msgstr "Olaszország" - -#: classes/class-wc-countries.php:145 -msgid "Ivory Coast" -msgstr "Elefántcsontpart" - -#: classes/class-wc-countries.php:146 -msgid "Jamaica" -msgstr "Jamaica" - -#: classes/class-wc-countries.php:147 -msgid "Japan" -msgstr "Japán" - -#: classes/class-wc-countries.php:148 -msgid "Jersey" -msgstr "Jersey" - -#: classes/class-wc-countries.php:149 -msgid "Jordan" -msgstr "Jordánia" - -#: classes/class-wc-countries.php:150 -msgid "Kazakhstan" -msgstr "Kazahsztán" - -#: classes/class-wc-countries.php:151 -msgid "Kenya" -msgstr "Kenya" - -#: classes/class-wc-countries.php:152 -msgid "Kiribati" -msgstr "Kiribati" - -#: classes/class-wc-countries.php:153 -msgid "Kuwait" -msgstr "Kuvait" - -#: classes/class-wc-countries.php:154 -msgid "Kyrgyzstan" -msgstr "Kirgizisztán" - -#: classes/class-wc-countries.php:155 -msgid "Laos" -msgstr "Laosz" - -#: classes/class-wc-countries.php:156 -msgid "Latvia" -msgstr "Lettország" - -#: classes/class-wc-countries.php:157 -msgid "Lebanon" -msgstr "Libanon" - -#: classes/class-wc-countries.php:158 -msgid "Lesotho" -msgstr "Lesotho" - -#: classes/class-wc-countries.php:159 -msgid "Liberia" -msgstr "Libéria" - -#: classes/class-wc-countries.php:160 -msgid "Libya" -msgstr "Líbia" - -#: classes/class-wc-countries.php:161 -msgid "Liechtenstein" -msgstr "Liechtenstein" - -#: classes/class-wc-countries.php:162 -msgid "Lithuania" -msgstr "Litvánia" - -#: classes/class-wc-countries.php:163 -msgid "Luxembourg" -msgstr "Luxemburg" - -#: classes/class-wc-countries.php:164 -msgid "Macao S.A.R., China" -msgstr "Makaó" - -#: classes/class-wc-countries.php:165 -msgid "Macedonia" -msgstr "Macedónia" - -#: classes/class-wc-countries.php:166 -msgid "Madagascar" -msgstr "Madagaszkár" - -#: classes/class-wc-countries.php:167 -msgid "Malawi" -msgstr "Malawi" - -#: classes/class-wc-countries.php:168 -msgid "Malaysia" -msgstr "Malajzia" - -#: classes/class-wc-countries.php:169 -msgid "Maldives" -msgstr "Maldiv-szigetek" - -#: classes/class-wc-countries.php:170 -msgid "Mali" -msgstr "Mali" - -#: classes/class-wc-countries.php:171 -msgid "Malta" -msgstr "Málta" - -#: classes/class-wc-countries.php:172 -msgid "Marshall Islands" -msgstr "Marshall-szigetek" - -#: classes/class-wc-countries.php:173 -msgid "Martinique" -msgstr "Martinique" - -#: classes/class-wc-countries.php:174 -msgid "Mauritania" -msgstr "Mauritánia" - -#: classes/class-wc-countries.php:175 -msgid "Mauritius" -msgstr "Mauritius" - -#: classes/class-wc-countries.php:176 -msgid "Mayotte" -msgstr "Mayotte" - -#: classes/class-wc-countries.php:177 -msgid "Mexico" -msgstr "Mexikó" - -#: classes/class-wc-countries.php:178 -msgid "Micronesia" -msgstr "Mikronézia" - -#: classes/class-wc-countries.php:179 -msgid "Moldova" -msgstr "Moldova" - -#: classes/class-wc-countries.php:180 -msgid "Monaco" -msgstr "Monaco" - -#: classes/class-wc-countries.php:181 -msgid "Mongolia" -msgstr "Mongólia" - -#: classes/class-wc-countries.php:182 -msgid "Montenegro" -msgstr "Montenegró" - -#: classes/class-wc-countries.php:183 -msgid "Montserrat" -msgstr "Montserrat" - -#: classes/class-wc-countries.php:184 -msgid "Morocco" -msgstr "Marokkó" - -#: classes/class-wc-countries.php:185 -msgid "Mozambique" -msgstr "Mozambzik" - -#: classes/class-wc-countries.php:186 -msgid "Myanmar" -msgstr "Mianmar" - -#: classes/class-wc-countries.php:187 -msgid "Namibia" -msgstr "Namíbia" - -#: classes/class-wc-countries.php:188 -msgid "Nauru" -msgstr "Nauru" - -#: classes/class-wc-countries.php:189 -msgid "Nepal" -msgstr "Nepál" - -#: classes/class-wc-countries.php:190 -msgid "Netherlands" -msgstr "Hollandia" - -#: classes/class-wc-countries.php:191 -msgid "Netherlands Antilles" -msgstr "Holland Antillák" - -#: classes/class-wc-countries.php:192 -msgid "New Caledonia" -msgstr "Új-Kaledónia" - -#: classes/class-wc-countries.php:193 -msgid "New Zealand" -msgstr "Új-Zéland" - -#: classes/class-wc-countries.php:194 -msgid "Nicaragua" -msgstr "Nicaragua" - -#: classes/class-wc-countries.php:195 -msgid "Niger" -msgstr "Niger" - -#: classes/class-wc-countries.php:196 -msgid "Nigeria" -msgstr "Nigéria" - -#: classes/class-wc-countries.php:197 -msgid "Niue" -msgstr "Niue" - -#: classes/class-wc-countries.php:198 -msgid "Norfolk Island" -msgstr "Norfolk-sziget" - -#: classes/class-wc-countries.php:199 -msgid "North Korea" -msgstr "Észak-Korea" - -#: classes/class-wc-countries.php:200 -msgid "Norway" -msgstr "Norvégia" - -#: classes/class-wc-countries.php:201 -msgid "Oman" -msgstr "Omán" - -#: classes/class-wc-countries.php:202 -msgid "Pakistan" -msgstr "Pakisztán" - -#: classes/class-wc-countries.php:203 -msgid "Palestinian Territory" -msgstr "Palesztina" - -#: classes/class-wc-countries.php:204 -msgid "Panama" -msgstr "Panama" - -#: classes/class-wc-countries.php:205 -msgid "Papua New Guinea" -msgstr "Pápua Új-Guinea" - -#: classes/class-wc-countries.php:206 -msgid "Paraguay" -msgstr "Paraguay" - -#: classes/class-wc-countries.php:207 -msgid "Peru" -msgstr "Peru" - -#: classes/class-wc-countries.php:208 -msgid "Philippines" -msgstr "Fülöp-szigetek" - -#: classes/class-wc-countries.php:209 -msgid "Pitcairn" -msgstr "Pitcairn-szigetek" - -#: classes/class-wc-countries.php:210 -msgid "Poland" -msgstr "Lengyelország" - -#: classes/class-wc-countries.php:211 -msgid "Portugal" -msgstr "Portugália" - -#: classes/class-wc-countries.php:212 -msgid "Qatar" -msgstr "Katár" - -#: classes/class-wc-countries.php:213 -msgid "Reunion" -msgstr "Réunion" - -#: classes/class-wc-countries.php:214 -msgid "Romania" -msgstr "Románia" - -#: classes/class-wc-countries.php:215 -msgid "Russia" -msgstr "Oroszország" - -#: classes/class-wc-countries.php:216 -msgid "Rwanda" -msgstr "Ruanda" - -#: classes/class-wc-countries.php:217 -msgid "Saint Barthélemy" -msgstr "Saint Barthélemy" - -#: classes/class-wc-countries.php:218 -msgid "Saint Helena" -msgstr "Saint Helena" - -#: classes/class-wc-countries.php:219 -msgid "Saint Kitts and Nevis" -msgstr "Saint Kitts és Nevis" - -#: classes/class-wc-countries.php:220 -msgid "Saint Lucia" -msgstr "Saint Lucia" - -#: classes/class-wc-countries.php:221 -msgid "Saint Martin (French part)" -msgstr "Saint Martin (Francia rész)" - -#: classes/class-wc-countries.php:222 -msgid "Saint Martin (Dutch part)" -msgstr "Saint Martin (Holland rész)" - -#: classes/class-wc-countries.php:223 -msgid "Saint Pierre and Miquelon" -msgstr "Saint-Pierre és Miquelon" - -#: classes/class-wc-countries.php:224 -msgid "Saint Vincent and the Grenadines" -msgstr "Saint Vincent és Grenadine-szigetek" - -#: classes/class-wc-countries.php:225 -msgid "San Marino" -msgstr "San Marino" - -#: classes/class-wc-countries.php:226 -msgid "São Tomé and Príncipe" -msgstr "São Tomé és Príncipe" - -#: classes/class-wc-countries.php:227 -msgid "Saudi Arabia" -msgstr "Szaúd-Arábia" - -#: classes/class-wc-countries.php:228 -msgid "Senegal" -msgstr "Szenegál" - -#: classes/class-wc-countries.php:229 -msgid "Serbia" -msgstr "Szerbia" - -#: classes/class-wc-countries.php:230 -msgid "Seychelles" -msgstr "Seychelle-szigetek" - -#: classes/class-wc-countries.php:231 -msgid "Sierra Leone" -msgstr "Sierra Leone" - -#: classes/class-wc-countries.php:232 -msgid "Singapore" -msgstr "Szingapúr" - -#: classes/class-wc-countries.php:233 -msgid "Slovakia" -msgstr "Szlovákia" - -#: classes/class-wc-countries.php:234 -msgid "Slovenia" -msgstr "Szlovénia" - -#: classes/class-wc-countries.php:235 -msgid "Solomon Islands" -msgstr "Salamon-szigetek" - -#: classes/class-wc-countries.php:236 -msgid "Somalia" -msgstr "Szomália" - -#: classes/class-wc-countries.php:237 -msgid "South Africa" -msgstr "Dél-Afrika" - -#: classes/class-wc-countries.php:238 -msgid "South Georgia/Sandwich Islands" -msgstr "Dél-Georgia és Déli-Sandwish-szigetek" - -#: classes/class-wc-countries.php:239 -msgid "South Korea" -msgstr "Dél-Korea" - -#: classes/class-wc-countries.php:240 -msgid "South Sudan" -msgstr "Dél-Szudán" - -#: classes/class-wc-countries.php:241 -msgid "Spain" -msgstr "Spanyolország" - -#: classes/class-wc-countries.php:242 -msgid "Sri Lanka" -msgstr "Srí Lanka" - -#: classes/class-wc-countries.php:243 -msgid "Sudan" -msgstr "Szudán" - -#: classes/class-wc-countries.php:244 -msgid "Suriname" -msgstr "Suriname" - -#: classes/class-wc-countries.php:245 -msgid "Svalbard and Jan Mayen" -msgstr "Svalbard- és Jan Mayen-szigetek" - -#: classes/class-wc-countries.php:246 -msgid "Swaziland" -msgstr "Szváziföld" - -#: classes/class-wc-countries.php:247 -msgid "Sweden" -msgstr "Svédország" - -#: classes/class-wc-countries.php:248 -msgid "Switzerland" -msgstr "Svájc" - -#: classes/class-wc-countries.php:249 -msgid "Syria" -msgstr "Szíria" - -#: classes/class-wc-countries.php:250 -msgid "Taiwan" -msgstr "Tajvan" - -#: classes/class-wc-countries.php:251 -msgid "Tajikistan" -msgstr "Tádzsikisztán" - -#: classes/class-wc-countries.php:252 -msgid "Tanzania" -msgstr "Tanzánia" - -#: classes/class-wc-countries.php:253 -msgid "Thailand" -msgstr "Thaiföld" - -#: classes/class-wc-countries.php:254 -msgid "Timor-Leste" -msgstr "Kelet-Timor" - -#: classes/class-wc-countries.php:255 -msgid "Togo" -msgstr "Togo" - -#: classes/class-wc-countries.php:256 -msgid "Tokelau" -msgstr "Tokelau-szigetek" - -#: classes/class-wc-countries.php:257 -msgid "Tonga" -msgstr "Tonga" - -#: classes/class-wc-countries.php:258 -msgid "Trinidad and Tobago" -msgstr "Trinidad és Tobago" - -#: classes/class-wc-countries.php:259 -msgid "Tunisia" -msgstr "Tunézia" - -#: classes/class-wc-countries.php:260 -msgid "Turkey" -msgstr "Törökország" - -#: classes/class-wc-countries.php:261 -msgid "Turkmenistan" -msgstr "Türkmenisztán" - -#: classes/class-wc-countries.php:262 -msgid "Turks and Caicos Islands" -msgstr "Turks- és Caicos-szigetek" - -#: classes/class-wc-countries.php:263 -msgid "Tuvalu" -msgstr "Tuvalue" - -#: classes/class-wc-countries.php:264 -msgid "Uganda" -msgstr "Uganda" - -#: classes/class-wc-countries.php:265 -msgid "Ukraine" -msgstr "Ukrajna" - -#: classes/class-wc-countries.php:266 -msgid "United Arab Emirates" -msgstr "Egyesült Arab Emírségek" - -#: classes/class-wc-countries.php:267 -msgid "United Kingdom" -msgstr "Egyesült Királyság" - -#: classes/class-wc-countries.php:268 -msgid "United States" -msgstr "Egyesült Államok" - -#: classes/class-wc-countries.php:269 -msgid "Uruguay" -msgstr "Uruguay" - -#: classes/class-wc-countries.php:270 -msgid "Uzbekistan" -msgstr "Üzbegisztán" - -#: classes/class-wc-countries.php:271 -msgid "Vanuatu" -msgstr "Vanuatu" - -#: classes/class-wc-countries.php:272 -msgid "Vatican" -msgstr "Vatikán" - -#: classes/class-wc-countries.php:273 -msgid "Venezuela" -msgstr "Venezuela" - -#: classes/class-wc-countries.php:274 -msgid "Vietnam" -msgstr "Vietnám" - -#: classes/class-wc-countries.php:275 -msgid "Wallis and Futuna" -msgstr "Wallis és Futuna" - -#: classes/class-wc-countries.php:276 -msgid "Western Sahara" -msgstr "Nyugat-Szahara" - -#: classes/class-wc-countries.php:277 -msgid "Western Samoa" -msgstr "Nyugat-Szamoa" - -#: classes/class-wc-countries.php:278 -msgid "Yemen" -msgstr "Jemen" - -#: classes/class-wc-countries.php:279 -msgid "Zambia" -msgstr "Zambia" - -#: classes/class-wc-countries.php:280 -msgid "Zimbabwe" -msgstr "Zimbabwe" - -#: classes/class-wc-countries.php:418 -msgid "to the" -msgstr "-" - -#: classes/class-wc-countries.php:419 -msgid "to" -msgstr "-" - -#: classes/class-wc-countries.php:432 -msgid "the" -msgstr "-" - -#: classes/class-wc-countries.php:444 -msgid "VAT" -msgstr "ÁFA" - -#: classes/class-wc-countries.php:444 -msgid "Tax" -msgstr "Adó" - -#: classes/class-wc-countries.php:457 -msgid "(incl. VAT)" -msgstr "(ÁFA-val)" - -#: classes/class-wc-countries.php:457 -msgid "(incl. tax)" -msgstr "(adóval)" - -#: classes/class-wc-countries.php:470 -msgid "(ex. VAT)" -msgstr "(ÁFA nélkül)" - -#: classes/class-wc-countries.php:470 -msgid "(ex. tax)" -msgstr "(adó nélkül)" - -#: classes/class-wc-countries.php:678 -msgid "Country" -msgstr "Ország" - -#: classes/class-wc-countries.php:683 -msgid "First Name" -msgstr "Vezetéknév" - -#: classes/class-wc-countries.php:688 -msgid "Last Name" -msgstr "Keresztnév" - -#: classes/class-wc-countries.php:694 -msgid "Company Name" -msgstr "Cégnév" - -#: classes/class-wc-countries.php:698 -msgid "Address" -msgstr "Cím" - -#: classes/class-wc-countries.php:699 -msgctxt "placeholder" -msgid "Street address" -msgstr "Utca" - -#: classes/class-wc-countries.php:707 -msgctxt "placeholder" -msgid "Apartment, suite, unit etc. (optional)" -msgstr "Kapucsengő, ajtó, stb. (nem kötelező)" - -#: classes/class-wc-countries.php:715 classes/class-wc-countries.php:716 -msgid "Town / City" -msgstr "Város" - -#: classes/class-wc-countries.php:725 classes/class-wc-countries.php:726 -msgid "State / County" -msgstr "Állam / Megye" - -#: classes/class-wc-countries.php:734 classes/class-wc-countries.php:735 -#: templates/cart/shipping-calculator.php:80 -msgid "Postcode / Zip" -msgstr "Irányítószám" - -#: classes/class-wc-countries.php:774 classes/class-wc-countries.php:784 -#: classes/class-wc-countries.php:804 classes/class-wc-countries.php:859 -#: classes/class-wc-countries.php:883 classes/class-wc-countries.php:933 -#: classes/class-wc-countries.php:957 classes/class-wc-countries.php:998 -msgid "Province" -msgstr "Tartomány" - -#: classes/class-wc-countries.php:790 -msgid "Canton" -msgstr "Kanton" - -#: classes/class-wc-countries.php:799 classes/class-wc-countries.php:939 -msgid "Municipality" -msgstr "Község" - -#: classes/class-wc-countries.php:846 -msgid "Town / District" -msgstr "Város / Kerüelt" - -#: classes/class-wc-countries.php:849 -msgid "Region" -msgstr "Régió" - -#: classes/class-wc-countries.php:962 -msgid "Zip" -msgstr "Irányítószám" - -#: classes/class-wc-countries.php:965 -msgid "State" -msgstr "Állam" - -#: classes/class-wc-countries.php:970 -msgid "Postcode" -msgstr "Irányítószám" - -#: classes/class-wc-countries.php:973 -msgid "County" -msgstr "Megye" - -#: classes/class-wc-countries.php:1074 -msgid "Email Address" -msgstr "E-mail cím" - -#: classes/class-wc-countries.php:1080 -msgid "Phone" -msgstr "Telefonszám" - -#: classes/class-wc-coupon.php:421 -msgid "Coupon code applied successfully." -msgstr "Kuponkód sikeresen alkalmazva." - -#: classes/class-wc-coupon.php:442 -msgid "Coupon is not valid." -msgstr "A kupon nem érvényes." - -#: classes/class-wc-coupon.php:445 classes/class-wc-coupon.php:495 -msgid "Coupon does not exist!" -msgstr "A kupon nem létezik!" - -#: classes/class-wc-coupon.php:448 -msgid "" -"Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from " -"your order." -msgstr "" -"Sajnáljuk, úgy tűnik ez a kupon érvénytelen: \"%s\" - eltávolítottuk a " -"rendelésedből." - -#: classes/class-wc-coupon.php:451 -msgid "" -"Sorry, it seems the coupon \"%s\" is not yours - it has now been removed " -"from your order." -msgstr "" -"Sajnáljuk, úgy tűnik ez a kupon nem a tiéd: \"%s\" - eltávolítottuk a " -"rendelésedből." - -#: classes/class-wc-coupon.php:454 -msgid "Coupon code already applied!" -msgstr "A kuponkódot már felhasználták!" - -#: classes/class-wc-coupon.php:457 -msgid "" -"Sorry, coupon \"%s\" has already been applied and cannot be used in " -"conjunction with other coupons." -msgstr "" -"Sajnáljuk, de a(z) \"%s\" kupon már alkalmazva lett és nem használható " -"együtt más kuponokkal." - -#: classes/class-wc-coupon.php:460 -msgid "Coupon usage limit has been reached." -msgstr "A kupon felhasználható korlátját elérték." - -#: classes/class-wc-coupon.php:463 -msgid "This coupon has expired." -msgstr "Ez a kupon lejárt." - -#: classes/class-wc-coupon.php:466 -msgid "The minimum spend for this coupon is %s." -msgstr "A minimálisan elköltendő összeg a kuponhoz %s." - -#: classes/class-wc-coupon.php:469 -msgid "Sorry, this coupon is not applicable to your cart contents." -msgstr "Sajnáljuk, ez a kupon nem alkalmazható a kosaradban lévő termékekre." - -#: classes/class-wc-coupon.php:472 -msgid "Sorry, this coupon is not valid for sale items." -msgstr "Sajnáljuk, ez a kupon nem alkalmazható akciós termékekre." - -#: classes/class-wc-coupon.php:498 -msgid "Please enter a coupon code." -msgstr "Kérlek írj be egy kuponkódot." - -#: classes/class-wc-customer.php:628 classes/class-wc-customer.php:640 -msgid "File %d" -msgstr "Fájl %d" - -#: classes/class-wc-emails.php:246 -msgid "Note" -msgstr "Megjegyzés" - -#: classes/class-wc-emails.php:281 -msgid "Product low in stock" -msgstr "A termék alacsony készleten van" - -#: classes/class-wc-emails.php:286 classes/class-wc-emails.php:318 -#: classes/class-wc-emails.php:362 -msgid "Variation #%s of %s" -msgstr "#%s variációja %s terméknek" - -#: classes/class-wc-emails.php:288 classes/class-wc-emails.php:320 -#: classes/class-wc-emails.php:364 -msgid "Product #%s - %s" -msgstr "Termék #%s - %s" - -#: classes/class-wc-emails.php:290 -msgid "is low in stock." -msgstr "alacsony készleten van." - -#: classes/class-wc-emails.php:313 -msgid "Product out of stock" -msgstr "A termék nincs készleten." - -#: classes/class-wc-emails.php:322 -msgid "is out of stock." -msgstr "nincs készleten." - -#: classes/class-wc-emails.php:357 -msgid "Product Backorder" -msgstr "Termék visszarendelés" - -#: classes/class-wc-emails.php:366 -msgid "%s units of %s have been backordered in order #%s." -msgstr "%s egységnyi %s visszarendelésre került a rendelésben: #%s." - -#: classes/class-wc-order.php:283 -msgctxt "hash before order number" -msgid "#" -msgstr "#" - -#: classes/class-wc-order.php:886 -msgid " %svia %s" -msgstr " %s %s" - -#: classes/class-wc-order.php:949 -msgid "Cart Subtotal:" -msgstr "Kosár részösszeg:" - -#: classes/class-wc-order.php:955 -msgid "Cart Discount:" -msgstr "Kosár kedvezmény:" - -#: classes/class-wc-order.php:961 -msgid "Shipping:" -msgstr "Szállítás:" - -#: classes/class-wc-order.php:997 -msgid "Order Discount:" -msgstr "Rendelési kedvezmény:" - -#: classes/class-wc-order.php:1002 -msgid "Order Total:" -msgstr "Rendelés végösszeg:" - -#: classes/class-wc-order.php:1016 templates/cart/totals.php:105 -#: templates/checkout/review-order.php:104 -msgid "(Includes %s)" -msgstr "(tartalmazza %s)" - -#: classes/class-wc-order.php:1167 classes/class-wc-order.php:1169 -#: classes/class-wc-order.php:1172 -msgid "WooCommerce" -msgstr "WooCommerce" - -#: classes/class-wc-order.php:1219 -msgid "Order status changed from %s to %s." -msgstr "Rendelés állapota %s volt, majd %s lett." - -#: classes/class-wc-order.php:1451 woocommerce-ajax.php:1091 -#: woocommerce-ajax.php:1092 -msgid "Item #%s stock reduced from %s to %s." -msgstr "#%s termék készlete csökkentve: %s volt, majd %s lett." - -#: classes/class-wc-order.php:1463 -msgid "Order item stock reduced successfully." -msgstr "Termék készletmennyiség sikeresen csökkentve." - -#: classes/class-wc-product-external.php:56 -msgid "Buy product" -msgstr "Termék megvásárlása" - -#: classes/class-wc-shortcodes.php:571 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:274 -#: templates/loop/add-to-cart.php:46 -#: templates/single-product/add-to-cart/grouped.php:45 -#: templates/single-product/add-to-cart/grouped.php:77 -#: templates/single-product/add-to-cart/simple.php:42 -#: templates/single-product/add-to-cart/variable.php:83 -msgid "Add to cart" -msgstr "Kosárba rakom" - -#: classes/emails/class-wc-email-customer-completed-order.php:24 -msgid "Completed order" -msgstr "Teljesített rendelés" - -#: classes/emails/class-wc-email-customer-completed-order.php:25 -msgid "" -"Order complete emails are sent to the customer when the order is marked " -"complete and usual indicates that the order has been shipped." -msgstr "" -"A teljesített rendelés e-mailek akkor kerülnek kiküldésre, amikor a rendelés " -"befejezettnek jelölt és általában a szállítás megtörténését jelzi." - -#: classes/emails/class-wc-email-customer-completed-order.php:27 -msgid "Your order is complete" -msgstr "A rendelése teljesítve" - -#: classes/emails/class-wc-email-customer-completed-order.php:28 -msgid "Your {blogname} order from {order_date} is complete" -msgstr "{blogname} rendelésed {order_date} keltezéssel teljesítve" - -#: classes/emails/class-wc-email-customer-completed-order.php:37 -msgid "Your order is complete - download your files" -msgstr "A rendelés teljesítve - letöltheted a fájlokat" - -#: classes/emails/class-wc-email-customer-completed-order.php:38 -msgid "" -"Your {blogname} order from {order_date} is complete - download your files" -msgstr "" -"{blogname} rendelésed {order_date} keltezéssel teljesítve - letöltheted a " -"fájlokat" - -#: classes/emails/class-wc-email-customer-completed-order.php:141 -#: classes/emails/class-wc-email-new-order.php:128 -msgid "Subject" -msgstr "Tárgy" - -#: classes/emails/class-wc-email-customer-completed-order.php:148 -#: classes/emails/class-wc-email-new-order.php:135 -msgid "Email Heading" -msgstr "E-mail fejléc" - -#: classes/emails/class-wc-email-customer-completed-order.php:155 -msgid "Subject (downloadable)" -msgstr "Tárgy (letölthető)" - -#: classes/emails/class-wc-email-customer-completed-order.php:162 -msgid "Email Heading (downloadable)" -msgstr "E-mail fejléc (letölthető)" - -#: classes/emails/class-wc-email-customer-invoice.php:27 -msgid "Customer invoice" -msgstr "Vásárlói számla" - -#: classes/emails/class-wc-email-customer-invoice.php:28 -msgid "" -"Customer invoice emails can be sent to the user containing order info and " -"payment links." -msgstr "" -"A vásárlói számla e-mailek a vásárlóknak küldhetők ki és a rendeléssel " -"kapcsolatos adatokat és fizetési linkeket tartalmaznak." - -#: classes/emails/class-wc-email-customer-invoice.php:33 -msgid "Invoice for order {order_number} from {order_date}" -msgstr "{order_date} keltezésű {order_number} rendelés számlája" - -#: classes/emails/class-wc-email-customer-invoice.php:34 -msgid "Invoice for order {order_number}" -msgstr "{order_number} rendelés számlája" - -#: classes/emails/class-wc-email-customer-invoice.php:36 -msgid "Your {blogname} order from {order_date}" -msgstr "{blogname} rendelésed {order_date} keltezéssel" - -#: classes/emails/class-wc-email-customer-invoice.php:37 -msgid "Order {order_number} details" -msgstr "{order_number} rendelés adatai" - -#: classes/emails/class-wc-email-customer-invoice.php:158 -msgid "Email subject (paid)" -msgstr "E-mail tárgy (kifizetett)" - -#: classes/emails/class-wc-email-customer-invoice.php:165 -msgid "Email heading (paid)" -msgstr "E-mail fejléc (kifizetett)" - -#: classes/emails/class-wc-email-customer-new-account.php:31 -msgid "New account" -msgstr "Új azonosító" - -#: classes/emails/class-wc-email-customer-new-account.php:32 -msgid "" -"Customer new account emails are sent when a customer signs up via the " -"checkout or My Account page." -msgstr "" -"Az új vásárlói azonosító e-mailek a Pénztár vagy Fiókom oldalakon való " -"regisztráció után kerülnek kiküldésre." - -#: classes/emails/class-wc-email-customer-new-account.php:37 -msgid "Your account on {blogname}" -msgstr "{blogname} azonosítód" - -#: classes/emails/class-wc-email-customer-new-account.php:38 -msgid "Welcome to {blogname}" -msgstr "Üdvözöl a(z) {blogname}" - -#: classes/emails/class-wc-email-customer-note.php:29 -msgid "Customer note" -msgstr "Vásárlói megjegyzés" - -#: classes/emails/class-wc-email-customer-note.php:30 -msgid "Customer note emails are sent when you add a note to an order." -msgstr "" -"A vásárlói megjegyzés e-mailek a rendeléshez való megjegyzés hozzáadásakor " -"kerülnek kiküldésre." - -#: classes/emails/class-wc-email-customer-note.php:35 -msgid "Note added to your {blogname} order from {order_date}" -msgstr "{blogname} rendelésedhez ({order_date} dátummal) megjegyzést fűztek" - -#: classes/emails/class-wc-email-customer-note.php:36 -msgid "A note has been added to your order" -msgstr "Egy megjegyzést fűztek a rendelésedhez" - -#: classes/emails/class-wc-email-customer-processing-order.php:24 -msgid "Processing order" -msgstr "Rendelés feldolgozása" - -#: classes/emails/class-wc-email-customer-processing-order.php:25 -msgid "" -"This is an order notification sent to the customer after payment containing " -"order details." -msgstr "" -"Ez egy rendelési értesítő, amit a vásárló fizetés után kap tartalmazva a " -"rendelés adatait." - -#: classes/emails/class-wc-email-customer-processing-order.php:27 -msgid "Thank you for your order" -msgstr "Köszönjük rendelését" - -#: classes/emails/class-wc-email-customer-processing-order.php:28 -msgid "Your {blogname} order receipt from {order_date}" -msgstr "{blogname} oldalon leadott rendelésének nyugtázása - {order_date}" - -#: classes/emails/class-wc-email-customer-reset-password.php:36 -msgid "Reset password" -msgstr "Új jelszó igénylése" - -#: classes/emails/class-wc-email-customer-reset-password.php:37 -msgid "" -"Customer reset password emails are sent when a customer resets their " -"password." -msgstr "" -"Az új jelszó igénylő e-mailek a vásárló jelszó megváltoztatási igényének " -"jelzésekor kerülnek kiküldésre." - -#: classes/emails/class-wc-email-customer-reset-password.php:42 -msgid "Password Reset for {blogname}" -msgstr "{blogname} jelszó megváltoztatása" - -#: classes/emails/class-wc-email-customer-reset-password.php:43 -msgid "Password Reset Instructions" -msgstr "Jelszó megváltoztatásának lépései" - -#: classes/emails/class-wc-email-new-order.php:24 -msgid "New order" -msgstr "Új rendelés" - -#: classes/emails/class-wc-email-new-order.php:25 -msgid "New order emails are sent when an order is received/paid by a customer." -msgstr "" -"Az új rendelésről értesítő e-mailek a rendelések beérkezésekor/vásárló által " -"való fizetéskor kerülnek kiküldésre." - -#: classes/emails/class-wc-email-new-order.php:27 -msgid "New customer order" -msgstr "Új vásárlói rendelés" - -#: classes/emails/class-wc-email-new-order.php:28 -msgid "[{blogname}] New customer order ({order_number}) - {order_date}" -msgstr "[{blogname}] Új vásárlói rendelés ({order_number}) - {order_date}" - -#: classes/emails/class-wc-email-new-order.php:121 -msgid "Recipient(s)" -msgstr "Címzett(ek)" - -#: classes/emails/class-wc-email-new-order.php:123 -msgid "" -"Enter recipients (comma separated) for this email. Defaults to %s." -msgstr "" -"Írd be a címzetteket (vesszővel elválasztva). Alapértelmezésként %s." - -#: classes/emails/class-wc-email-new-order.php:130 -msgid "" -"This controls the email subject line. Leave blank to use the default " -"subject: %s." -msgstr "" -"Az e-mail tárgy mezője. Hagyd üresen az alapértelmezett tárgyhoz: %s." - -#: classes/emails/class-wc-email-new-order.php:137 -msgid "" -"This controls the main heading contained within the email notification. " -"Leave blank to use the default heading: %s." -msgstr "" -"Az e-mail értesítésben szereplő fő fejléc. Hagyd üresen az alapértelmezett " -"fejléchez: %s." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:28 -msgid "Bacs" -msgstr "Közvetlen banki átutalás" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:65 -msgid "Enable Bank Transfer" -msgstr "Banki átutalás engedélyezése" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:69 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:63 -#: classes/gateways/cod/class-wc-gateway-cod.php:87 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:143 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:126 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:104 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:84 -msgid "Title" -msgstr "Cím" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:71 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:65 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:145 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:128 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:83 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:58 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:106 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:86 -msgid "This controls the title which the user sees during checkout." -msgstr "A vásárlók által a pénztárban látott cím." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:72 -msgid "Direct Bank Transfer" -msgstr "Közvetlen banki átutalás" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:76 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:70 -msgid "Customer Message" -msgstr "Vásárlói üzenet" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:78 -msgid "" -"Give the customer instructions for paying via BACS, and let them know that " -"their order won't be shipping until the money is received." -msgstr "" -"Tájékoztasd a vásárlót a banki átutalásos fizetésről és hívd fel a figyelmét " -"arra, hogy a pénz beérkezéséig nem kerül kiszállításra a rendelés." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:79 -msgid "" -"Make your payment directly into our bank account. Please use your Order ID " -"as the payment reference. Your order wont be shipped until the funds have " -"cleared in our account." -msgstr "" -"Fizetés közvetlenül a bankszámlánkra. Megjegyzésként kérjük tüntesd fel a " -"rendelés azonosítóját. A kiszállítás az összeg beérkezését követően történik." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:82 -msgid "Account Details" -msgstr "Fiók adatok" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:84 -msgid "Optionally enter your bank details below for customers to pay into." -msgstr "Opcionálisan add meg banki adataidat, ahova a vásárlók fizethetnek." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:88 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:163 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:203 -msgid "Account Name" -msgstr "Fiók név" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:94 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:164 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:204 -msgid "Account Number" -msgstr "Fiók szám" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:100 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:165 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:205 -msgid "Sort Code" -msgstr "Rendezési kód" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:106 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:166 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:206 -msgid "Bank Name" -msgstr "Bank neve" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:112 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:167 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:207 -msgid "IBAN" -msgstr "IBAN" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:117 -msgid "BIC (formerly Swift)" -msgstr "BIC (korábban Swift)" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:136 -msgid "BACS Payment" -msgstr "Közvetlen banki átutalásos fizetés" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:137 -msgid "" -"Allows payments by BACS (Bank Account Clearing System), more commonly known " -"as direct bank/wire transfer." -msgstr "Fizetés lehetősége közvetlen banki átutalással." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:158 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:200 -msgid "Our Details" -msgstr "Adataink" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:168 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:208 -msgid "BIC" -msgstr "BIC" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:234 -msgid "Awaiting BACS payment" -msgstr "Banki átutalásra várakozik" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:28 -msgid "Cheque" -msgstr "Csekk" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:59 -msgid "Enable Cheque Payment" -msgstr "Csekkes fizetés engedélyezése" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:66 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:90 -msgid "Cheque Payment" -msgstr "Csekkes fizetés" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:72 -msgid "" -"Let the customer know the payee and where they should be sending the cheque " -"to and that their order won't be shipping until you receive it." -msgstr "" -"Tájékoztasd a vásárlót a csekkes fizetésről és hívd fel a figyelmét arra, " -"hogy a pénz beérkezéséig nem kerül kiszállításra a rendelés." - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:73 -msgid "" -"Please send your cheque to Store Name, Store Street, Store Town, Store " -"State / County, Store Postcode." -msgstr "" -"Kérjük a csekket az üzlet neve, üzlet címe, üzlet városa, üzlet " -"irányítószáma címre küldje." - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:91 -msgid "" -"Allows cheque payments. Why would you take cheques in this day and age? Well " -"you probably wouldn't but it does allow you to make test purchases for " -"testing order emails and the 'success' pages etc." -msgstr "" -"Csekkes fizetés engedélyezése. De miért akarna bárki is manapság csekket " -"elfogadni? Valószínűleg te sem akarsz, de tökéletes arra hogy teszt " -"vásárlásokat végezz és megtekintsd a visszaigazoló e-maileket, a 'köszönöm' " -"oldalakat, stb." - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:147 -msgid "Awaiting cheque payment" -msgstr "Csekkes fizetésre várakozik" - -#: classes/gateways/cod/class-wc-gateway-cod.php:27 -#: classes/gateways/cod/class-wc-gateway-cod.php:54 -#: classes/gateways/cod/class-wc-gateway-cod.php:90 -msgid "Cash on Delivery" -msgstr "Utánvétel" - -#: classes/gateways/cod/class-wc-gateway-cod.php:55 -msgid "Have your customers pay with cash (or by other means) upon delivery." -msgstr "A vásárló készpénzben (vagy más módon) fizet átvételkor." - -#: classes/gateways/cod/class-wc-gateway-cod.php:80 -msgid "Enable COD" -msgstr "Utánvétel engedélyezése" - -#: classes/gateways/cod/class-wc-gateway-cod.php:81 -msgid "Enable Cash on Delivery" -msgstr "Utánvétel engedélyezése" - -#: classes/gateways/cod/class-wc-gateway-cod.php:89 -msgid "Payment method title that the customer will see on your website." -msgstr "Fizetési mód neve, amit a vásárló a weboldalon látni fog." - -#: classes/gateways/cod/class-wc-gateway-cod.php:94 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:150 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:133 -#: woocommerce-template.php:751 -msgid "Description" -msgstr "Leírás" - -#: classes/gateways/cod/class-wc-gateway-cod.php:96 -msgid "Payment method description that the customer will see on your website." -msgstr "Fizetési mód leírása, amit a vásárló a weboldalon látni fog." - -#: classes/gateways/cod/class-wc-gateway-cod.php:97 -#: classes/gateways/cod/class-wc-gateway-cod.php:103 -msgid "Pay with cash upon delivery." -msgstr "Fizess készpénzben átvételkor." - -#: classes/gateways/cod/class-wc-gateway-cod.php:100 -msgid "Instructions" -msgstr "Instrukciók" - -#: classes/gateways/cod/class-wc-gateway-cod.php:102 -msgid "Instructions that will be added to the thank you page." -msgstr "A köszönet oldalon megjelenő instrukciók." - -#: classes/gateways/cod/class-wc-gateway-cod.php:106 -msgid "Enable for shipping methods" -msgstr "Szállítási módoknál engedélyezett" - -#: classes/gateways/cod/class-wc-gateway-cod.php:111 -msgid "" -"If COD is only available for certain methods, set it up here. Leave blank to " -"enable for all methods." -msgstr "" -"Ha az utánvétel csak bizonyos szállítási módoknál engedélyezett, akkor " -"azokat itt add meg. Hagyd üresen az összes módnál való engedélyezéshez." - -#: classes/gateways/cod/class-wc-gateway-cod.php:176 -msgid "Payment to be made upon delivery." -msgstr "A fizetés átvételkor történik." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:31 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:168 -msgid "Mijireh Checkout" -msgstr "Mijireh Checkout" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:108 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:293 -msgid "Mijireh error:" -msgstr "Mijireh hiba:" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:132 -msgid "Enable Mijireh Checkout" -msgstr "Mijireh Checkout engedélyezése" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:136 -msgid "Access Key" -msgstr "Hozzáférési kulcs" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:138 -msgid "The Mijireh access key for your store." -msgstr "A Mijireh hozzáférési kulcs az üzletedhez." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:146 -msgid "Credit Card" -msgstr "Bankkártya" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:152 -msgid "Pay securely with your credit card." -msgstr "Fizess biztonságosan bankkártyával." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:153 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:135 -msgid "This controls the description which the user sees during checkout." -msgstr "A vásárlók által fizetéskor látott leírás." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:172 -msgid "Get started with Mijireh Checkout" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:173 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site. Mijireh supports a wide variety of payment gateways: Stripe, " -"Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and more." -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:175 -msgid "Join for free" -msgstr "Csatlakozz ingyenesen" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:175 -msgid "Learn more about WooCommerce and Mijireh" -msgstr "Bővebb információ a WooCommerce és Mijireh működéséről" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:179 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:34 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:129 -msgid "PayPal" -msgstr "PayPal" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:91 -msgid "PayPal standard" -msgstr "PayPal standard" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:92 -msgid "" -"PayPal standard works by sending the user to PayPal to enter their payment " -"information." -msgstr "" -"A PayPal standard fizetési mód esetén a felhasználó a PayPal oldalán adja " -"meg a fizetési információkat." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:104 -msgid "Gateway Disabled" -msgstr "Fizetési mód kikapcsolva" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:104 -msgid "PayPal does not support your store currency." -msgstr "A PayPal nem támogatja az üzleted pénznemét." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:122 -msgid "Enable PayPal standard" -msgstr "PayPal standard engedélyezése" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:136 -msgid "" -"Pay via PayPal; you can pay with your credit card if you don't have a PayPal " -"account" -msgstr "" -"Fizetés PayPal-en keresztül; fizethetsz bankkártyáddal, ha nincs PayPal " -"azonosítód" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:139 -msgid "PayPal Email" -msgstr "PayPal e-mail cím" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:141 -msgid "" -"Please enter your PayPal email address; this is needed in order to take " -"payment." -msgstr "" -"Kérlek írd be a PayPal e-mail címedet; ez szükséges a fizetések fogadásához." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:147 -msgid "Receiver Email" -msgstr "Címzett e-mail címe" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:149 -msgid "" -"If this differs from the email entered above, input your main receiver email " -"for your PayPal account. This is used to validate IPN requests." -msgstr "" -"Ha ez eltér a fent megadott e-mail címtől, akkor írd be ide a PayPal fiókod " -"elsődleges fogadó e-mail címét. Ez használatos az IPN kérések validálásához." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:155 -msgid "Invoice Prefix" -msgstr "Számla előtag" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:157 -msgid "" -"Please enter a prefix for your invoice numbers. If you use your PayPal " -"account for multiple stores ensure this prefix is unique as PayPal will not " -"allow orders with the same invoice number." -msgstr "" -"Kérlek írj be egy előtagot a számlák sorszámának. Ha a PayPal azonosítódat " -"más üzletekhez is használod, akkor győződj meg róla hogy ez az előtag " -"egyedi, mivel a PayPal nem engedélyez azonos számlasorszámmal rendeléseket." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:162 -msgid "Submission method" -msgstr "Elküldési mód" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:164 -msgid "Use form submission method." -msgstr "Űrlap elküldési mód használata." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:165 -msgid "" -"Enable this to post order data to PayPal via a form instead of using a " -"redirect/querystring." -msgstr "" -"Kapcsold be ezt a módot, ha a rendelés adatait űrlapon keresztül szeretnéd a " -"PayPal felé elküldeni, nem pedig átirányítással." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:169 -msgid "Page Style" -msgstr "Oldal stílus" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:171 -msgid "" -"Optionally enter the name of the page style you wish to use. These are " -"defined within your PayPal account." -msgstr "" -"Opcionálisan megadhatod a használni kívánt oldal stílusát. Ezek a PayPal " -"azonosítódban találhatók." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:174 -msgid "Optional" -msgstr "Opcionális" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:177 -msgid "Shipping options" -msgstr "Szállítási beállítások" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:182 -msgid "Shipping details" -msgstr "Szállítási adatok" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:184 -msgid "Send shipping details to PayPal instead of billing." -msgstr "" -"A szállítási adatokat küldje a PayPal felé a számlázási adatok helyett." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:186 -msgid "" -"PayPal allows us to send 1 address. If you are using PayPal for shipping " -"labels you may prefer to send the shipping address rather than billing." -msgstr "" -"A PayPal 1 cím elküldését teszi lehetővé. Ha a PayPal-t használod a " -"szállítások felcímkézésére, akkor lehet hogy a szállítási címet akarod " -"inkább elküldeni." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:190 -msgid "Address override" -msgstr "Cím felülírása" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:192 -msgid "" -"Enable \"address_override\" to prevent address information from being " -"changed." -msgstr "" -"\"address_override\" engedélyezése a cím információk megváltoztatásának " -"megakadályozásához." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:193 -msgid "" -"PayPal verifies addresses therefore this setting can cause errors (we " -"recommend keeping it disabled)." -msgstr "" -"A PayPal megerősíti a címeket, így ez a beállítás problémákat okozhat (azt " -"javasoljuk hagyd kikapcsolva)." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:197 -msgid "Gateway Testing" -msgstr "Fizetés tesztelése" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:202 -msgid "PayPal sandbox" -msgstr "PayPal homokozó" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:204 -msgid "Enable PayPal sandbox" -msgstr "PayPal homokozó engedélyezése" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:206 -msgid "" -"PayPal sandbox can be used to test payments. Sign up for a developer account " -"here." -msgstr "" -"A PayPal homokozó használható teszt fizetésekre. Regisztrálj fejlesztői " -"fiókot itt." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:209 -msgid "Debug Log" -msgstr "Hibakeresési napló" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:211 -msgid "Enable logging" -msgstr "Naplózás engedélyezése" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:213 -msgid "" -"Log PayPal events, such as IPN requests, inside woocommerce/logs/" -"paypal-%s.txt" -msgstr "" -"PayPal események naplózása, úgymint IPN lekérések, helye woocommerce/" -"logs/paypal-%s.txt" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:321 -msgid "Order %s" -msgstr "%s rendelés" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:331 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:385 -msgid "Shipping via" -msgstr "Szállítás módja" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:426 -msgid "" -"Thank you for your order. We are now redirecting you to PayPal to make " -"payment." -msgstr "" -"Köszönjük a megrendelést! Most átirányítunk a PayPal oldalára a fizetéshez." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:449 -msgid "Pay via PayPal" -msgstr "Fizetés PayPal-el keresztül" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:449 -msgid "Cancel order & restore cart" -msgstr "Rendelés visszavonása és kosár helyreállítása" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:503 -msgid "" -"Thank you for your order, please click the button below to pay with PayPal." -msgstr "" -"Köszönjük a rendelést, kérlek kattints a gombra a PayPal-el való fizetéshez." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:647 -msgid "Validation error: PayPal amounts do not match (gross %s)." -msgstr "Validációs hiba: a PayPal összegek nem egyeznek (bruttó %s)." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:658 -msgid "" -"Validation error: PayPal IPN response from a different email address (%s)." -msgstr "Validációs hiba: a PayPal IPN válasz más e-mail címről érkezett (%s)." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:676 -msgid "IPN payment completed" -msgstr "IPN fizetés befejeződött" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:679 -msgid "Payment pending: %s" -msgstr "Fizetés függőben: %s" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:691 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:699 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:717 -msgid "Payment %s via IPN." -msgstr "IPN-en keresztüli fizetés: %s." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:704 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:722 -msgid "Order refunded/reversed" -msgstr "Rendelés visszatérítve/lemondva" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:705 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:723 -msgid "Order %s has been marked as refunded - PayPal reason code: %s" -msgstr "%s rendelés visszatérítettként lett megjelölve - PayPal hibakód: %s" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:708 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:726 -msgid "Payment for order %s refunded/reversed" -msgstr "%s rendelés fizetési visszatérítve/visszafordítva" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:26 -msgid "Google Analytics" -msgstr "Google Analytics" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:27 -msgid "" -"Google Analytics is a free service offered by Google that generates detailed " -"statistics about the visitors to a website." -msgstr "" -"A Google Analytics egy ingyenes szolgáltatás a Google-től, ami részletes " -"statisztikát készít a weboldalad látogatóiról." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:63 -msgid "Google Analytics ID" -msgstr "Google Analytics azonosító" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:64 -msgid "" -"Log into your google analytics account to find your ID. e.g. UA-XXXXX-" -"X" -msgstr "" -"Jelentkezz be a Google Analytics fiókodba az azonosítóhoz, pl. UA-" -"XXXXX-X" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:69 -msgid "Set Domain Name" -msgstr "Domain név beállítása" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:70 -msgid "" -"(Optional) Sets the _setDomainName variable. See " -"here for more information." -msgstr "" -"(Opcionális) Beállítja a _setDomainName változó. További információkért kattints ide." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:75 -msgid "Tracking code" -msgstr "Mérőkód" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:76 -msgid "" -"Add tracking code to your site's footer. You don't need to enable this if " -"using a 3rd party analytics plugin." -msgstr "" -"Mérőkód hozzáadása a lábléchez. Nem szükséges bekapcsolnod, ha egy harmadik " -"fél által készített bővítményt használsz erre a célra." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:82 -msgid "Add eCommerce tracking code to the thankyou page" -msgstr "Elektronikus kereskedelem mérőkód hozzáadása a köszönet oldalhoz" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:88 -msgid "Add event tracking code for add to cart actions" -msgstr "Kosárhoz adás események mérése" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:120 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:180 -#: woocommerce-ajax.php:1654 -msgid "Guest" -msgstr "Vendég" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:218 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:275 -#: templates/single-product/meta.php:19 -msgid "SKU:" -msgstr "Cikkszám:" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:273 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:293 -#: woocommerce.php:982 -msgid "Products" -msgstr "Termékek" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:294 -msgid "Add to Cart" -msgstr "Kosárhoz adás" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:26 -msgid "ShareDaddy" -msgstr "ShareDaddy" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:27 -msgid "ShareDaddy is a sharing plugin bundled with JetPack." -msgstr "A ShareDaddy egy, a JetPack bővítménnyel érkező kiegészítő." - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:51 -msgid "Output ShareDaddy button?" -msgstr "ShareDaddy gomb megjelenítése?" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:52 -msgid "Enable this option to show the ShareDaddy button on the product page." -msgstr "" -"A beállítás bekapcsolásával megjelenik a ShareDadday gomb a termékoldalakon." - -#: classes/integrations/sharethis/class-wc-sharethis.php:29 -msgid "ShareThis" -msgstr "ShareThis" - -#: classes/integrations/sharethis/class-wc-sharethis.php:30 -msgid "" -"ShareThis offers a sharing widget which will allow customers to share links " -"to products with their friends." -msgstr "" -"A ShareThis egy megosztó widgetet nyújt, amivel a vásárlók megoszthatják " -"barátaikkal a termékek linkjeit." - -#: classes/integrations/sharethis/class-wc-sharethis.php:63 -msgid "ShareThis Publisher ID" -msgstr "ShareThis publikálási azonosító" - -#: classes/integrations/sharethis/class-wc-sharethis.php:64 -msgid "" -"Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons on " -"product pages." -msgstr "" -"Írd be %1$sShareThis publikálási azonosítódat%2$s a közösségi megosztó " -"gombok termékoldalakon való megjelenítéséhez." - -#: classes/integrations/sharethis/class-wc-sharethis.php:69 -msgid "ShareThis Code" -msgstr "ShareThis kód" - -#: classes/integrations/sharethis/class-wc-sharethis.php:70 -msgid "You can tweak the ShareThis code by editing this option." -msgstr "Itt módosíthatod a ShareThis kódját." - -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:22 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:329 -msgid "ShareYourCart" -msgstr "ShareYourCart" - -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:23 -msgid "" -"Increase your social media exposure by 10 percent! ShareYourCart helps you " -"get more customers by motivating satisfied customers to talk with their " -"friends about your products. For help with ShareYourCart view the documentation." -msgstr "" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:328 -msgid "Share your cart settings" -msgstr "Oszd meg a kosarad beállítások" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:342 -msgid "Button" -msgstr "Gomb" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:343 -msgid "Customize Button" -msgstr "Gomb testreszabása" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:351 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:352 -msgid "Documentation" -msgstr "Dokumentáció" - -#: classes/integrations/shareyourcart/views/admin-page.php:33 -msgid "Setup your ShareYourCart account" -msgstr "ShareYourCart azonosító regisztrálása" - -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Create an account" -msgstr "Azonosító létrehozása" - -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Can't access your account?" -msgstr "Nem férsz hozzá a fiókodhoz?" - -#: classes/integrations/shareyourcart/views/admin-page.php:100 -msgid "Configure" -msgstr "Konfigurálás" - -#: classes/integrations/shareyourcart/views/admin-page.php:110 -#: classes/integrations/shareyourcart/views/button-settings-page.php:120 -msgid "Save changes" -msgstr "Módosítások mentése" - -#: classes/integrations/shareyourcart/views/button-settings-page.php:8 -#: classes/integrations/shareyourcart/views/button-settings-page.php:11 -msgid "Button style" -msgstr "Gomb stílus" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:25 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:85 -msgid "Flat Rate" -msgstr "Átalánydíj" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:27 -msgid "Flat rates let you define a standard rate per item, or per order." -msgstr "" -"Az átalánydíjak segítségével egy általános szorzót adhatsz meg termékenként " -"vagy rendelésenként." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:78 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:52 -msgid "Enable this shipping method" -msgstr "Szállítási mód engedélyezése" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:82 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:81 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:56 -msgid "Method Title" -msgstr "Mód neve" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:89 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:63 -msgid "Availability" -msgstr "Elérhetőség" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:93 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:148 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:104 -msgid "All allowed countries" -msgstr "Összes engedélyezett ország" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:95 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:99 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:98 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:149 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:153 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:105 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:109 -msgid "Specific Countries" -msgstr "Kiválasztott országok" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:107 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:81 -msgid "Tax Status" -msgstr "Adó állapot" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:111 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:85 -msgid "Taxable" -msgstr "Adóztatható" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:112 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:86 -msgid "None" -msgstr "Nincs" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:116 -msgid "Cost per order" -msgstr "Rendelésenkénti ár" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:122 -msgid "" -"Enter a cost (excluding tax) per order, e.g. 5.00. Leave blank to disable." -msgstr "" -"Írj be egy összeget (adók nélkül) rendelésenként, pl. 1000. Hagyd üresen a " -"kikapcsoláshoz." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:128 -msgid "Additional Rates" -msgstr "További ráták" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:130 -msgid "" -"Optional extra shipping options with additional costs (one per line): Option " -"Name | Additional Cost | Per Cost Type (order, class, or item) Example: " -"Priority Mail | 6.95 | order." -msgstr "" -"Opcionális extra szállítási opciók további költségekkel (soronként egy): " -"Opció neve | Extra költség | Költség típusa (order, class vagy item) Példa: " -"Elsőbbségi kiszállítás | 1360 | order" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:133 -msgid "Option Name | Additional Cost | Per Cost Type (order, class, or item)" -msgstr "Opció neve | Extra költség | Költség típusa (order, class vagy item)" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:136 -msgid "Additional Costs" -msgstr "További költségek" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:138 -msgid "" -"Additional costs can be added below - these will all be added to the per-" -"order cost above." -msgstr "" -"További költségek hozhatók létre alább - ezek hozzáadásra kerülnek a fenti " -"rendelésenkénti árhoz." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:141 -msgid "Costs Added..." -msgstr "Költségek hozzáadva…" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:145 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:94 -msgid "Per Order - charge shipping for the entire order as a whole" -msgstr "Rendelésenként - az egész rendelésre számítson szállítási költséget" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:146 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:95 -msgid "Per Item - charge shipping for each item individually" -msgstr "" -"Termékenként - minden egyes termékre külön számítson szállítási költséget" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:147 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:96 -msgid "Per Class - charge shipping for each shipping class in an order" -msgstr "" -"Osztályonként - a rendelésben szereplő szállítási osztályokra külön-külön " -"számítson szállítási költséget" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:154 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:120 -msgid "Minimum Handling Fee" -msgstr "Minimális kezelési költség" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:160 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:126 -msgid "" -"Enter a minimum fee amount. Fee's less than this will be increased. Leave " -"blank to disable." -msgstr "" -"Írj be egy minimális kezelési költséget. Az ennél alacsonyabb díjak meg " -"lesznek növelve. Hagyd üresen a kikapcsoláshoz." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:479 -msgid "Costs" -msgstr "Költségek" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:485 -#: woocommerce.php:891 -msgid "Shipping Class" -msgstr "Szállítási osztály" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:486 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:100 -msgid "Cost" -msgstr "Költség" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:486 -msgid "Cost, excluding tax." -msgstr "Költség, adók nélkül" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:487 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:112 -msgid "Handling Fee" -msgstr "Kezelési költség" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:487 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -msgstr "" -"Költség adók nélkül. Írj be egy összeget, pl. 2.50 vagy egy százalékot, pl. " -"5%." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:492 -msgid "+ Add Cost" -msgstr "+ Költség hozzáadása" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:492 -msgid "Delete selected costs" -msgstr "Kiválasztott költségek törlése" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:498 -msgid "Any class" -msgstr "Bármely osztály" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:499 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:500 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:110 -#: templates/order/order-details.php:119 templates/order/order-details.php:134 -msgid "N/A" -msgstr "nincs feltételhez kötve" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:518 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:548 -msgid "Select a class…" -msgstr "Válassz egy osztályt…" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:523 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:524 -msgid "0.00" -msgstr "0.00" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:562 -msgid "Delete the selected rates?" -msgstr "Törlöd a kiválasztott rátákat?" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:25 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:145 -msgid "Free Shipping" -msgstr "Ingyenes kiszállítás" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:77 -msgid "Enable Free Shipping" -msgstr "Ingyenes kiszállítás engedélyezése" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:88 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:143 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:99 -msgid "Method availability" -msgstr "Mód elérhetősége" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:106 -msgid "Free Shipping Requires..." -msgstr "Az ingyenes kiszállításhoz kötelező..." - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:111 -msgid "A valid free shipping coupon" -msgstr "egy érvényes ingyenes kiszállítás kupon" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:112 -msgid "A minimum order amount (defined below)" -msgstr "egy minimális rendelési összeg (alább meghatározható)" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:113 -msgid "A minimum order amount OR a coupon" -msgstr "egy minimális rendelési összeg VAGY egy kupon" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:114 -msgid "A minimum order amount AND a coupon" -msgstr "egy minimális rendelési összeg ÉS egy kupon" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:118 -msgid "Minimum Order Amount" -msgstr "Minimális rendelési összeg" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:124 -msgid "" -"Users will need to spend this amount to get free shipping (if enabled above)." -msgstr "" -"A vásárlóknak ekkora összegben kell rendelniük, hogy ingyenes szállítást " -"kapjanak (ha fent engedélyezett)." - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:29 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:59 -msgid "International Delivery" -msgstr "Nemzetközi kiszállítás" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:30 -msgid "International delivery based on flat rate shipping." -msgstr "Nemzetközi kiszállítás átalánydíjas szállítás alapján." - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:68 -msgid "Selected countries" -msgstr "Kiválasztott országok" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:69 -msgid "Excluding selected countries" -msgstr "A kiválasztott országokat kivéve" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:73 -msgid "Countries" -msgstr "Országok" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:90 -msgid "Cost Added..." -msgstr "Költség hozzáadva…" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:106 -msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -msgstr "Költség adók nélkül. Írj be egy összeget, pl. 2.50." - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:114 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. " -"Leave blank to disable." -msgstr "" -"Költség adók nélkül. Írj be egy összeget, pl. 2.50 vagy egy százalékot, pl. " -"5%. Hagyd üresen a kikapcsoláshoz." - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:25 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:107 -msgid "Local Delivery" -msgstr "Helyi kézbesítés" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:98 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:78 -msgid "Enable" -msgstr "Engedélyezés" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:100 -msgid "Enable local delivery" -msgstr "Helyi kézbesítés engedélyezése" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:111 -msgid "Fee Type" -msgstr "Díj típus" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:113 -msgid "How to calculate delivery charges" -msgstr "A szállítási költségek számítási módja" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 -msgid "Fixed amount" -msgstr "Fix összeg" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:117 -msgid "Percentage of cart total" -msgstr "Kosár végösszeg százaléka" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:118 -msgid "Fixed amount per product" -msgstr "Fix összeg termékenként" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:123 -msgid "Delivery Fee" -msgstr "Szállítási díj" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:129 -msgid "" -"What fee do you want to charge for local delivery, disregarded if you choose " -"free. Leave blank to disable." -msgstr "" -"Mekkora összeget szeretnél felszámolni helyi kézbesítésre, mellőzésre kerül " -"ha az ingyenest választod. Hagyd üresen a kikapcsoláshoz." - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:135 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:91 -msgid "Zip/Post Codes" -msgstr "Irányítószámok" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:137 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:93 -msgid "" -"What zip/post codes would you like to offer delivery to? Separate codes with " -"a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -msgstr "" -"Milyen irányítószámokra szeretnél kiszállítást biztosítani? A számokat " -"vesszővel válaszd el. A helyettesítőkarakterek engedélyezettek, pl. a P* " -"egyezni fog a P30 irányítószámmal." - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:172 -msgid "" -"Local delivery is a simple shipping method for delivering orders locally." -msgstr "" -"A helyi kézbesítés egy egyszerű szállítási mód a rendelések helyi " -"kézbesítésére." - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:25 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:87 -msgid "Local Pickup" -msgstr "Személyes átvétel" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:80 -msgid "Enable local pickup" -msgstr "Személyes átvétel engedélyezése" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:117 -msgid "Apply base tax rate" -msgstr "Bázis adózási ráta alkalmazása" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:119 -msgid "" -"When this shipping method is chosen, apply the base tax rate rather than for " -"the customer's given address." -msgstr "" -"Ha ez a szállítási mód van kiválasztva, akkor az üzemeltetési hely adózási " -"rátáit alkalmazza, ne pedig a vásárló címe szerintit" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:134 -msgid "" -"Local pickup is a simple method which allows the customer to pick up their " -"order themselves." -msgstr "" -"A személyes átvétel egy egyszerű szállítási mód a rendelések üzletben való " -"átvételére." - -#: classes/shortcodes/class-wc-shortcode-cart.php:53 -#: woocommerce-functions.php:1703 -msgid "Please enter a valid postcode/ZIP." -msgstr "Kérjük valós irányítószámot írj be." - -#: classes/shortcodes/class-wc-shortcode-cart.php:64 -#: classes/shortcodes/class-wc-shortcode-cart.php:70 -msgid "Shipping costs updated." -msgstr "Szállítási költségek frissítve." - -#: classes/shortcodes/class-wc-shortcode-checkout.php:45 -msgid "" -"WooCommerce Config Error: The checkout thanks/pay pages are missing - these " -"pages are required for the checkout to function correctly. Please configure " -"the pages here." -msgstr "" -"WooCommerce konfigurációs hiba: A pénztár köszönöm/fizetés oldalai " -"hiányoznak - ezek az oldalak kötelezőek a pénztár helyes működéséhez. Kérjük " -"konfiguráld be ezeket az oldalakat itt." - -#: classes/shortcodes/class-wc-shortcode-checkout.php:73 -msgid "" -"The order totals have been updated. Please confirm your order by pressing " -"the Place Order button at the bottom of the page." -msgstr "" -"A rendelés végösszege frissítésre került. Kérjük erősítsd meg rendelésed az " -"oldal alján található Megrendelés elküldése gombbal." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:78 -#: woocommerce-functions.php:1625 -msgid "Please enter your password." -msgstr "Kérjük írd be a jelszavadat." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:93 -msgid "Your password has been reset." -msgstr "A jelszavad visszaállításra került." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:93 -msgid "Log in" -msgstr "Bejelentkezés" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:114 -msgid "Enter a username or e-mail address." -msgstr "Írd be a felhasználónevedet vagy e-mail címedet." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:121 -msgid "There is no user registered with that email address." -msgstr "Nincs felhasználó regisztrálva ezzel az e-mail címmel." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:136 -msgid "Invalid username or e-mail." -msgstr "Érvénytelen felhasználónév vagy e-mail cím." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:150 -msgid "Password reset is not allowed for this user" -msgstr "Az új jelszó igénylése nem engedélyezett a felhasználónak" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:178 -msgid "Check your e-mail for the confirmation link." -msgstr "Ellenőrizd az e-mail fiókodat a megerősítő linkért." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:198 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:203 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:210 -msgid "Invalid key" -msgstr "Érvénytelen kulcs" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:51 -msgid "Please enter a valid order ID" -msgstr "Kérjük írj be egy érvényes rendelési azonosítót" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:55 -msgid "Please enter a valid order email" -msgstr "Kérjük írj be egy érvényes rendelési e-mail címet" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:74 -msgid "Sorry, we could not find that order id in our database." -msgstr "Sajnáljuk, nem találtunk ilyen rendelési azonosítót az adatbázisban." - -#: classes/shortcodes/class-wc-shortcode-pay.php:64 -#: classes/shortcodes/class-wc-shortcode-pay.php:118 -msgid "" -"Your order has already been paid for. Please contact us if you need " -"assistance." -msgstr "" -"A rendelés már ki lett fizetve. Kérjük lépj velünk kapcsolatba ha segítségre " -"van szükséged." - -#: classes/shortcodes/class-wc-shortcode-pay.php:69 -#: classes/shortcodes/class-wc-shortcode-pay.php:125 -#: classes/shortcodes/class-wc-shortcode-view-order.php:51 -#: woocommerce-functions.php:911 woocommerce-functions.php:991 -msgid "Invalid order." -msgstr "Érvénytelen rendelés." - -#: classes/shortcodes/class-wc-shortcode-pay.php:90 -#: templates/checkout/thankyou.php:40 -#: templates/emails/customer-completed-order.php:18 -#: templates/emails/customer-invoice.php:22 -#: templates/emails/customer-note.php:22 -#: templates/emails/customer-processing-order.php:18 -msgid "Order:" -msgstr "Rendelés:" - -#: classes/shortcodes/class-wc-shortcode-pay.php:94 -#: templates/checkout/thankyou.php:44 -msgid "Date:" -msgstr "Dátum:" - -#: classes/shortcodes/class-wc-shortcode-pay.php:98 -#: templates/checkout/thankyou.php:48 -msgid "Total:" -msgstr "Végösszeg:" - -#: classes/shortcodes/class-wc-shortcode-pay.php:103 -#: templates/checkout/thankyou.php:53 -msgid "Payment method:" -msgstr "Fizetési mód:" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:51 -msgid "My Account →" -msgstr "Fiókom →" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:58 -msgid "" -"Order %s made on %s" -msgstr "" -" %s rendelés leadva %s dátummal" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:59 -msgid "Order status: %s" -msgstr "Rendelés állapota: %s" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:65 -#: templates/order/tracking.php:31 -msgid "Order Updates" -msgstr "Rendelési frissítések" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:71 -msgid "l jS \\of F Y, h:ia" -msgstr "l jS \\of F Y, h:ia" - -#: classes/widgets/class-wc-widget-best-sellers.php:31 -msgid "Display a list of your best selling products on your site." -msgstr "A legjobban fogyó termékek listáját jeleníti meg." - -#: classes/widgets/class-wc-widget-best-sellers.php:33 -msgid "WooCommerce Best Sellers" -msgstr "WooCommerce bestseller" - -#: classes/widgets/class-wc-widget-best-sellers.php:71 -msgid "Best Sellers" -msgstr "Bestseller" - -#: classes/widgets/class-wc-widget-best-sellers.php:191 -#: classes/widgets/class-wc-widget-cart.php:109 -#: classes/widgets/class-wc-widget-featured-products.php:169 -#: classes/widgets/class-wc-widget-layered-nav.php:352 -#: classes/widgets/class-wc-widget-onsale.php:178 -#: classes/widgets/class-wc-widget-price-filter.php:180 -#: classes/widgets/class-wc-widget-product-categories.php:185 -#: classes/widgets/class-wc-widget-product-search.php:91 -#: classes/widgets/class-wc-widget-product-tag-cloud.php:101 -#: classes/widgets/class-wc-widget-random-products.php:136 -#: classes/widgets/class-wc-widget-recent-products.php:172 -#: classes/widgets/class-wc-widget-recent-reviews.php:158 -#: classes/widgets/class-wc-widget-recently-viewed.php:168 -#: classes/widgets/class-wc-widget-top-rated-products.php:156 -msgid "Title:" -msgstr "Cím:" - -#: classes/widgets/class-wc-widget-best-sellers.php:194 -#: classes/widgets/class-wc-widget-featured-products.php:172 -#: classes/widgets/class-wc-widget-onsale.php:181 -#: classes/widgets/class-wc-widget-random-products.php:141 -#: classes/widgets/class-wc-widget-recent-products.php:175 -#: classes/widgets/class-wc-widget-recent-reviews.php:161 -#: classes/widgets/class-wc-widget-recently-viewed.php:171 -#: classes/widgets/class-wc-widget-top-rated-products.php:159 -msgid "Number of products to show:" -msgstr "Megjelenítendő termékek száma:" - -#: classes/widgets/class-wc-widget-best-sellers.php:198 -msgid "Hide free products" -msgstr "Ingyenes termékek elrejtése" - -#: classes/widgets/class-wc-widget-cart.php:33 -msgid "Display the user's Cart in the sidebar." -msgstr "Megjeleníti a vásárló kosarát az oldalsávban." - -#: classes/widgets/class-wc-widget-cart.php:35 -msgid "WooCommerce Cart" -msgstr "WooCommerce kosár" - -#: classes/widgets/class-wc-widget-cart.php:113 -msgid "Hide if cart is empty" -msgstr "Rejtse el, ha üres a kosár" - -#: classes/widgets/class-wc-widget-featured-products.php:35 -msgid "Display a list of featured products on your site." -msgstr "A kiemelt termékek listáját jeleníti meg." - -#: classes/widgets/class-wc-widget-featured-products.php:37 -msgid "WooCommerce Featured Products" -msgstr "WooCommerce kiemelt termékek" - -#: classes/widgets/class-wc-widget-featured-products.php:75 -msgid "Featured Products" -msgstr "Kiemelt termékek" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:31 -msgid "Shows active layered nav filters so users can see and deactivate them." -msgstr "" -"A rétegezett navigáció aktív szűrőit jeleníti meg, így a felhasználók látják " -"és kikapcsolhatják azokat." - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:33 -msgid "WooCommerce Layered Nav Filters" -msgstr "WooCommerce réteges navigáció szűrők" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:62 -msgid "Active filters" -msgstr "Aktív szűrők" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:93 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Remove filter" -msgstr "Szűrő eltávolítása" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -msgid "Min" -msgstr "Min" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Max" -msgstr "Max" - -#: classes/widgets/class-wc-widget-layered-nav.php:31 -msgid "" -"Shows a custom attribute in a widget which lets you narrow down the list of " -"products when viewing product categories." -msgstr "" -"Egy egyedi attribútumot jelenít meg amivel a terméklista szűkíthető " -"kategória nézetben." - -#: classes/widgets/class-wc-widget-layered-nav.php:33 -msgid "WooCommerce Layered Nav" -msgstr "WooCommerce réteges navigáció" - -#: classes/widgets/class-wc-widget-layered-nav.php:100 -msgid "Any %s" -msgstr "Bármely %s" - -#: classes/widgets/class-wc-widget-layered-nav.php:355 -msgid "Attribute:" -msgstr "Attribútum:" - -#: classes/widgets/class-wc-widget-layered-nav.php:366 -msgid "Display Type:" -msgstr "Megjelenítés típusa:" - -#: classes/widgets/class-wc-widget-layered-nav.php:368 -msgid "List" -msgstr "Lista" - -#: classes/widgets/class-wc-widget-layered-nav.php:369 -msgid "Dropdown" -msgstr "Legördülő" - -#: classes/widgets/class-wc-widget-layered-nav.php:372 -msgid "Query Type:" -msgstr "Lekérdezés típusa:" - -#: classes/widgets/class-wc-widget-layered-nav.php:374 -msgid "AND" -msgstr "ÉS" - -#: classes/widgets/class-wc-widget-layered-nav.php:375 -msgid "OR" -msgstr "VAGY" - -#: classes/widgets/class-wc-widget-onsale.php:31 -msgid "Display a list of your on-sale products on your site." -msgstr "Az akciós termékek listáját jeleníti meg." - -#: classes/widgets/class-wc-widget-onsale.php:33 -msgid "WooCommerce On-sale" -msgstr "WooCommerce akciós" - -#: classes/widgets/class-wc-widget-onsale.php:70 -msgid "On Sale" -msgstr "Akciós" - -#: classes/widgets/class-wc-widget-price-filter.php:33 -msgid "" -"Shows a price filter slider in a widget which lets you narrow down the list " -"of shown products when viewing product categories." -msgstr "" -"Egy árszűrő csúszkát jelenít meg amivel a terméklista szűkíthető kategória " -"nézetben." - -#: classes/widgets/class-wc-widget-price-filter.php:35 -msgid "WooCommerce Price Filter" -msgstr "WooCommerce árszűrő" - -#: classes/widgets/class-wc-widget-price-filter.php:137 -msgid "Min price" -msgstr "Min ár" - -#: classes/widgets/class-wc-widget-price-filter.php:138 -msgid "Max price" -msgstr "Max ár" - -#: classes/widgets/class-wc-widget-price-filter.php:139 -msgid "Filter" -msgstr "Szűrés" - -#: classes/widgets/class-wc-widget-price-filter.php:141 -msgid "Price:" -msgstr "Ár:" - -#: classes/widgets/class-wc-widget-price-filter.php:163 -msgid "Filter by price" -msgstr "Szűrés ár szerint" - -#: classes/widgets/class-wc-widget-product-categories.php:33 -msgid "A list or dropdown of product categories." -msgstr "A termékkategóriák listában vagy legördülő menüben." - -#: classes/widgets/class-wc-widget-product-categories.php:35 -msgid "WooCommerce Product Categories" -msgstr "WooCommerce termékkategóriák" - -#: classes/widgets/class-wc-widget-product-categories.php:57 -#: woocommerce.php:821 woocommerce.php:823 -msgid "Product Categories" -msgstr "Termékkategóriák" - -#: classes/widgets/class-wc-widget-product-categories.php:129 -msgid "No product categories exist." -msgstr "Nincsenek termékkategóriák." - -#: classes/widgets/class-wc-widget-product-categories.php:188 -msgid "Order by:" -msgstr "Rendezési elv:" - -#: classes/widgets/class-wc-widget-product-categories.php:190 -msgid "Category Order" -msgstr "Kategória sorrend" - -#: classes/widgets/class-wc-widget-product-categories.php:191 -#: templates/single-product-reviews.php:84 woocommerce-ajax.php:1173 -msgid "Name" -msgstr "Név" - -#: classes/widgets/class-wc-widget-product-categories.php:195 -msgid "Show as dropdown" -msgstr "Megjelenítés legördülőként" - -#: classes/widgets/class-wc-widget-product-categories.php:198 -msgid "Show post counts" -msgstr "Termékek számának megjelenítése" - -#: classes/widgets/class-wc-widget-product-categories.php:201 -msgid "Show hierarchy" -msgstr "Hierarchia megjelenítése" - -#: classes/widgets/class-wc-widget-product-categories.php:204 -msgid "Only show children for the current category" -msgstr "Csak a jelenlegi kategória alkategóriáit mutassa" - -#: classes/widgets/class-wc-widget-product-search.php:31 -msgid "A Search box for products only." -msgstr "Keresődoboz kizárólag a termékeknek." - -#: classes/widgets/class-wc-widget-product-search.php:33 -msgid "WooCommerce Product Search" -msgstr "WooCommerce termékkereső" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:31 -msgid "Your most used product tags in cloud format." -msgstr "A leggyakrabban használt termék címkék felhő formában." - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:33 -msgid "WooCommerce Product Tags" -msgstr "WooCommerce termékcímkék" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:58 -#: woocommerce.php:857 woocommerce.php:859 -msgid "Product Tags" -msgstr "Termékcímkék" - -#: classes/widgets/class-wc-widget-random-products.php:24 -msgid "WooCommerce Random Products" -msgstr "WooCommerce véletlenszerű termékek" - -#: classes/widgets/class-wc-widget-random-products.php:27 -msgid "Display a list of random products on your site." -msgstr "Termékek véletlenszerű listáját jeleníti meg." - -#: classes/widgets/class-wc-widget-random-products.php:46 -msgid "Random Products" -msgstr "Véletlenszerű termékek" - -#: classes/widgets/class-wc-widget-random-products.php:147 -#: classes/widgets/class-wc-widget-recent-products.php:179 -msgid "Show hidden product variations" -msgstr "Rejtett termék variációk megjelenítése" - -#: classes/widgets/class-wc-widget-recent-products.php:31 -msgid "Display a list of your most recent products on your site." -msgstr "A legújabb termékek listáját jeleníti meg." - -#: classes/widgets/class-wc-widget-recent-products.php:33 -msgid "WooCommerce Recent Products" -msgstr "WooCommerce legújabb termékek" - -#: classes/widgets/class-wc-widget-recent-products.php:70 -msgid "New Products" -msgstr "Új termékek" - -#: classes/widgets/class-wc-widget-recent-reviews.php:31 -msgid "Display a list of your most recent reviews on your site." -msgstr "A legutóbbi értékelések listáját jeleníti meg." - -#: classes/widgets/class-wc-widget-recent-reviews.php:33 -msgid "WooCommerce Recent Reviews" -msgstr "WooCommerce legújabb értékelések" - -#: classes/widgets/class-wc-widget-recent-reviews.php:71 -msgid "Recent Reviews" -msgstr "Legújabb értékelések" - -#: classes/widgets/class-wc-widget-recent-reviews.php:97 -msgctxt "by comment author" -msgid "by %1$s" -msgstr "írta %1$s" - -#: classes/widgets/class-wc-widget-recently-viewed.php:31 -msgid "Display a list of recently viewed products." -msgstr "A legutóbb megtekintett termékek listáját jeleníti meg." - -#: classes/widgets/class-wc-widget-recently-viewed.php:33 -msgid "WooCommerce Recently Viewed Products" -msgstr "WooCommerce legutóbb megtekintett termékek" - -#: classes/widgets/class-wc-widget-recently-viewed.php:76 -msgid "Recently viewed" -msgstr "Legutóbb megtekintett" - -#: classes/widgets/class-wc-widget-top-rated-products.php:33 -msgid "Display a list of top rated products on your site." -msgstr "A legjobbra értékelt termékek listáját jeleníti meg." - -#: classes/widgets/class-wc-widget-top-rated-products.php:35 -msgid "WooCommerce Top Rated Products" -msgstr "WooCommerce legjobbra értékelt termékek" - -#: classes/widgets/class-wc-widget-top-rated-products.php:72 -msgid "Top Rated Products" -msgstr "Legjobbra értékelt termékek" - -#: i18n/states/AU.php:13 -msgid "Australian Capital Territory" -msgstr "Ausztráliai fővárosi terület" - -#: i18n/states/AU.php:14 -msgid "New South Wales" -msgstr "Új-Dél-Wales" - -#: i18n/states/AU.php:15 -msgid "Northern Territory" -msgstr "Northern Territory" - -#: i18n/states/AU.php:16 -msgid "Queensland" -msgstr "Queensland" - -#: i18n/states/AU.php:17 -msgid "South Australia" -msgstr "Dél-Ausztrália" - -#: i18n/states/AU.php:18 -msgid "Tasmania" -msgstr "Tasmania" - -#: i18n/states/AU.php:19 -msgid "Victoria" -msgstr "Victoria" - -#: i18n/states/AU.php:20 -msgid "Western Australia" -msgstr "Nyugat-Ausztrália" - -#: i18n/states/BR.php:13 -msgid "Acre" -msgstr "Acre" - -#: i18n/states/BR.php:14 -msgid "Alagoas" -msgstr "Alagoas" - -#: i18n/states/BR.php:15 -msgid "Amapá" -msgstr "Amapá" - -#: i18n/states/BR.php:16 -msgid "Amazonas" -msgstr "Amazonas" - -#: i18n/states/BR.php:17 -msgid "Bahia" -msgstr "Bahia" - -#: i18n/states/BR.php:18 -msgid "Ceará" -msgstr "Ceará" - -#: i18n/states/BR.php:19 -msgid "Distrito Federal" -msgstr "Distrito Federal" - -#: i18n/states/BR.php:20 -msgid "Espírito Santo" -msgstr "Espírito Santo" - -#: i18n/states/BR.php:21 -msgid "Goiás" -msgstr "Goiás" - -#: i18n/states/BR.php:22 -msgid "Maranhão" -msgstr "Maranhão" - -#: i18n/states/BR.php:23 -msgid "Mato Grosso" -msgstr "Mato Grosso" - -#: i18n/states/BR.php:24 -msgid "Mato Grosso do Sul" -msgstr "Mato Grosso do Sul" - -#: i18n/states/BR.php:25 -msgid "Minas Gerais" -msgstr "Minas Gerais" - -#: i18n/states/BR.php:26 -msgid "Pará" -msgstr "Pará" - -#: i18n/states/BR.php:27 -msgid "Paraíba" -msgstr "Paraíba" - -#: i18n/states/BR.php:28 -msgid "Paraná" -msgstr "Paraná" - -#: i18n/states/BR.php:29 -msgid "Pernambuco" -msgstr "Pernambuco" - -#: i18n/states/BR.php:30 -msgid "Piauí" -msgstr "Piauí" - -#: i18n/states/BR.php:31 -msgid "Rio de Janeiro" -msgstr "Rio de Janeiro" - -#: i18n/states/BR.php:32 -msgid "Rio Grande do Norte" -msgstr "Rio Grande do Norte" - -#: i18n/states/BR.php:33 -msgid "Rio Grande do Sul" -msgstr "Rio Grande do Sul" - -#: i18n/states/BR.php:34 -msgid "Rondônia" -msgstr "Rondônia" - -#: i18n/states/BR.php:35 -msgid "Roraima" -msgstr "Roraima" - -#: i18n/states/BR.php:36 -msgid "Santa Catarina" -msgstr "Santa Catarina" - -#: i18n/states/BR.php:37 -msgid "São Paulo" -msgstr "São Paulo" - -#: i18n/states/BR.php:38 -msgid "Sergipe" -msgstr "Sergipe" - -#: i18n/states/BR.php:39 -msgid "Tocantins" -msgstr "Tocantins" - -#: i18n/states/CA.php:13 -msgid "Alberta" -msgstr "Alberta" - -#: i18n/states/CA.php:14 -msgid "British Columbia" -msgstr "British Columbia" - -#: i18n/states/CA.php:15 -msgid "Manitoba" -msgstr "Manitoba" - -#: i18n/states/CA.php:16 -msgid "New Brunswick" -msgstr "New Brunswick" - -#: i18n/states/CA.php:17 -msgid "Newfoundland" -msgstr "Newfoundland" - -#: i18n/states/CA.php:18 -msgid "Northwest Territories" -msgstr "Northwest Territories" - -#: i18n/states/CA.php:19 -msgid "Nova Scotia" -msgstr "Nova Scotia" - -#: i18n/states/CA.php:20 -msgid "Nunavut" -msgstr "Nunavut" - -#: i18n/states/CA.php:21 -msgid "Ontario" -msgstr "Ontario" - -#: i18n/states/CA.php:22 -msgid "Prince Edward Island" -msgstr "Prince Edward Island" - -#: i18n/states/CA.php:23 -msgid "Quebec" -msgstr "Quebec" - -#: i18n/states/CA.php:24 -msgid "Saskatchewan" -msgstr "Saskatchewan" - -#: i18n/states/CA.php:25 -msgid "Yukon Territory" -msgstr "Yukon Territory" - -#: i18n/states/CN.php:13 -msgid "Yunnan / 云南" -msgstr "Yunnan / 云南" - -#: i18n/states/CN.php:14 -msgid "Beijing / 北京" -msgstr "Beijing / 北京" - -#: i18n/states/CN.php:15 -msgid "Tianjin / 天津" -msgstr "Tianjin / 天津" - -#: i18n/states/CN.php:16 -msgid "Hebei / 河北" -msgstr "Hebei / 河北" - -#: i18n/states/CN.php:17 -msgid "Shanxi / 山西" -msgstr "Shanxi / 山西" - -#: i18n/states/CN.php:18 -msgid "Inner Mongolia / 內蒙古" -msgstr "Inner Mongolia / 內蒙古" - -#: i18n/states/CN.php:19 -msgid "Liaoning / 辽宁" -msgstr "Liaoning / 辽宁" - -#: i18n/states/CN.php:20 -msgid "Jilin / 吉林" -msgstr "Jilin / 吉林" - -#: i18n/states/CN.php:21 -msgid "Heilongjiang / 黑龙江" -msgstr "Heilongjiang / 黑龙江" - -#: i18n/states/CN.php:22 -msgid "Shanghai / 上海" -msgstr "Shanghai / 上海" - -#: i18n/states/CN.php:23 -msgid "Jiangsu / 江苏" -msgstr "Jiangsu / 江苏" - -#: i18n/states/CN.php:24 -msgid "Zhejiang / 浙江" -msgstr "Zhejiang / 浙江" - -#: i18n/states/CN.php:25 -msgid "Anhui / 安徽" -msgstr "Anhui / 安徽" - -#: i18n/states/CN.php:26 -msgid "Fujian / 福建" -msgstr "Fujian / 福建" - -#: i18n/states/CN.php:27 -msgid "Jiangxi / 江西" -msgstr "Jiangxi / 江西" - -#: i18n/states/CN.php:28 -msgid "Shandong / 山东" -msgstr "Shandong / 山东" - -#: i18n/states/CN.php:29 -msgid "Henan / 河南" -msgstr "Henan / 河南" - -#: i18n/states/CN.php:30 -msgid "Hubei / 湖北" -msgstr "Hubei / 湖北" - -#: i18n/states/CN.php:31 -msgid "Hunan / 湖南" -msgstr "Hunan / 湖南" - -#: i18n/states/CN.php:32 -msgid "Guangdong / 广东" -msgstr "Guangdong / 广东" - -#: i18n/states/CN.php:33 -msgid "Guangxi Zhuang / 广西壮族" -msgstr "Guangxi Zhuang / 广西壮族" - -#: i18n/states/CN.php:34 -msgid "Hainan / 海南" -msgstr "Hainan / 海南" - -#: i18n/states/CN.php:35 -msgid "Chongqing / 重庆" -msgstr "Chongqing / 重庆" - -#: i18n/states/CN.php:36 -msgid "Sichuan / 四川" -msgstr "Sichuan / 四川" - -#: i18n/states/CN.php:37 -msgid "Guizhou / 贵州" -msgstr "Guizhou / 贵州" - -#: i18n/states/CN.php:38 -msgid "Shaanxi / 陕西" -msgstr "Shaanxi / 陕西" - -#: i18n/states/CN.php:39 -msgid "Gansu / 甘肃" -msgstr "Gansu / 甘肃" - -#: i18n/states/CN.php:40 -msgid "Qinghai / 青海" -msgstr "Qinghai / 青海" - -#: i18n/states/CN.php:41 -msgid "Ningxia Hui / 宁夏" -msgstr "Ningxia Hui / 宁夏" - -#: i18n/states/CN.php:42 -msgid "Macau / 澳门" -msgstr "Macau / 澳门" - -#: i18n/states/CN.php:43 -msgid "Tibet / 西藏" -msgstr "Tibet / 西藏" - -#: i18n/states/CN.php:44 -msgid "Xinjiang / 新疆" -msgstr "Xinjiang / 新疆" - -#: i18n/states/ES.php:13 -msgid "A Coruña" -msgstr "A Coruña" - -#: i18n/states/ES.php:14 -msgid "Álava" -msgstr "Álava" - -#: i18n/states/ES.php:15 -msgid "Albacete" -msgstr "Albacete" - -#: i18n/states/ES.php:16 -msgid "Alicante" -msgstr "Alicante" - -#: i18n/states/ES.php:17 -msgid "Almería" -msgstr "Almería" - -#: i18n/states/ES.php:18 -msgid "Asturias" -msgstr "Asturias" - -#: i18n/states/ES.php:19 -msgid "Ávila" -msgstr "Ávila" - -#: i18n/states/ES.php:20 -msgid "Badajoz" -msgstr "Badajoz" - -#: i18n/states/ES.php:21 -msgid "Baleares" -msgstr "Baleares" - -#: i18n/states/ES.php:22 -msgid "Barcelona" -msgstr "Barcelona" - -#: i18n/states/ES.php:23 -msgid "Burgos" -msgstr "Burgos" - -#: i18n/states/ES.php:24 -msgid "Cáceres" -msgstr "Cáceres" - -#: i18n/states/ES.php:25 -msgid "Cádiz" -msgstr "Cádiz" - -#: i18n/states/ES.php:26 -msgid "Cantabria" -msgstr "Cantabria" - -#: i18n/states/ES.php:27 -msgid "Castellón" -msgstr "Castellón" - -#: i18n/states/ES.php:28 -msgid "Ceuta" -msgstr "Ceuta" - -#: i18n/states/ES.php:29 -msgid "Ciudad Real" -msgstr "Ciudad Real" - -#: i18n/states/ES.php:30 -msgid "Córdoba" -msgstr "Córdoba" - -#: i18n/states/ES.php:31 -msgid "Cuenca" -msgstr "Cuenca" - -#: i18n/states/ES.php:32 -msgid "Girona" -msgstr "Girona" - -#: i18n/states/ES.php:33 -msgid "Granada" -msgstr "Granada" - -#: i18n/states/ES.php:34 -msgid "Guadalajara" -msgstr "Guadalajara" - -#: i18n/states/ES.php:35 -msgid "Guipúzcoa" -msgstr "Guipúzcoa" - -#: i18n/states/ES.php:36 -msgid "Huelva" -msgstr "Huelva" - -#: i18n/states/ES.php:37 -msgid "Huesca" -msgstr "Huesca" - -#: i18n/states/ES.php:38 -msgid "Jaén" -msgstr "Jaén" - -#: i18n/states/ES.php:39 -msgid "La Rioja" -msgstr "La Rioja" - -#: i18n/states/ES.php:40 -msgid "Las Palmas" -msgstr "Las Palmas" - -#: i18n/states/ES.php:41 -msgid "León" -msgstr "León" - -#: i18n/states/ES.php:42 -msgid "Lleida" -msgstr "Lleida" - -#: i18n/states/ES.php:43 -msgid "Lugo" -msgstr "Lugo" - -#: i18n/states/ES.php:44 -msgid "Madrid" -msgstr "Madrid" - -#: i18n/states/ES.php:45 -msgid "Málaga" -msgstr "Málaga" - -#: i18n/states/ES.php:46 -msgid "Melilla" -msgstr "Melilla" - -#: i18n/states/ES.php:47 -msgid "Murcia" -msgstr "Murcia" - -#: i18n/states/ES.php:48 -msgid "Navarra" -msgstr "Navarra" - -#: i18n/states/ES.php:49 -msgid "Ourense" -msgstr "Ourense" - -#: i18n/states/ES.php:50 -msgid "Palencia" -msgstr "Palencia" - -#: i18n/states/ES.php:51 -msgid "Pontevedra" -msgstr "Pontevedra" - -#: i18n/states/ES.php:52 -msgid "Salamanca" -msgstr "Salamanca" - -#: i18n/states/ES.php:53 -msgid "Santa Cruz de Tenerife" -msgstr "Santa Cruz de Tenerife" - -#: i18n/states/ES.php:54 -msgid "Segovia" -msgstr "Segovia" - -#: i18n/states/ES.php:55 -msgid "Sevilla" -msgstr "Sevilla" - -#: i18n/states/ES.php:56 -msgid "Soria" -msgstr "Soria" - -#: i18n/states/ES.php:57 -msgid "Tarragona" -msgstr "Tarragona" - -#: i18n/states/ES.php:58 -msgid "Teruel" -msgstr "Teruel" - -#: i18n/states/ES.php:59 -msgid "Toledo" -msgstr "Toledo" - -#: i18n/states/ES.php:60 -msgid "Valencia" -msgstr "Valencia" - -#: i18n/states/ES.php:61 -msgid "Valladolid" -msgstr "Valladolid" - -#: i18n/states/ES.php:62 -msgid "Vizcaya" -msgstr "Vizcaya" - -#: i18n/states/ES.php:63 -msgid "Zamora" -msgstr "Zamora" - -#: i18n/states/ES.php:64 -msgid "Zaragoza" -msgstr "Zaragoza" - -#: i18n/states/HK.php:13 -msgid "Hong Kong Island" -msgstr "Hong Kong Island" - -#: i18n/states/HK.php:14 -msgid "Kowloon" -msgstr "Kowloon" - -#: i18n/states/HK.php:15 -msgid "New Territories" -msgstr "New Territories" - -#: i18n/states/HU.php:13 -msgid "Bács-Kiskun" -msgstr "Bács-Kiskun" - -#: i18n/states/HU.php:14 -msgid "Békés" -msgstr "Békés" - -#: i18n/states/HU.php:15 -msgid "Baranya" -msgstr "Baranya" - -#: i18n/states/HU.php:16 -msgid "Borsod-Abaúj-Zemplén" -msgstr "Borsod-Abaúj-Zemplén" - -#: i18n/states/HU.php:17 -msgid "Budapest" -msgstr "Budapest" - -#: i18n/states/HU.php:18 -msgid "Csongrád" -msgstr "Csongrád" - -#: i18n/states/HU.php:19 -msgid "Fejér" -msgstr "Fejér" - -#: i18n/states/HU.php:20 -msgid "Győr-Moson-Sopron" -msgstr "Győr-Moson-Sopron" - -#: i18n/states/HU.php:21 -msgid "Hajdú-Bihar" -msgstr "Hajdú-Bihar" - -#: i18n/states/HU.php:22 -msgid "Heves" -msgstr "Heves" - -#: i18n/states/HU.php:23 -msgid "Jász-Nagykun-Szolnok" -msgstr "Jász-Nagykun-Szolnok" - -#: i18n/states/HU.php:24 -msgid "Komárom-Esztergom" -msgstr "Komárom-Esztergom" - -#: i18n/states/HU.php:25 -msgid "Nógrád" -msgstr "Nógrád" - -#: i18n/states/HU.php:26 -msgid "Pest" -msgstr "Pest" - -#: i18n/states/HU.php:27 -msgid "Somogy" -msgstr "Somogy" - -#: i18n/states/HU.php:28 -msgid "Szabolcs-Szatmár-Bereg" -msgstr "Szabolcs-Szatmár-Bereg" - -#: i18n/states/HU.php:29 -msgid "Tolna" -msgstr "Tolna" - -#: i18n/states/HU.php:30 -msgid "Vas" -msgstr "Vas" - -#: i18n/states/HU.php:31 -msgid "Veszprém" -msgstr "Veszprém" - -#: i18n/states/HU.php:32 -msgid "Zala" -msgstr "Zala" - -#: i18n/states/HZ.php:13 i18n/states/NZ.php:14 -msgid "Auckland" -msgstr "Auckland" - -#: i18n/states/HZ.php:14 i18n/states/NZ.php:16 -msgid "Bay of Plenty" -msgstr "Bay of Plenty" - -#: i18n/states/HZ.php:15 i18n/states/NZ.php:25 -msgid "Canterbury" -msgstr "Canterbury" - -#: i18n/states/HZ.php:16 i18n/states/NZ.php:18 -msgid "Hawke’s Bay" -msgstr "Hawke’s Bay" - -#: i18n/states/HZ.php:17 i18n/states/NZ.php:19 -msgid "Manawatu-Wanganui" -msgstr "Manawatu-Wanganui" - -#: i18n/states/HZ.php:18 i18n/states/NZ.php:22 -msgid "Marlborough" -msgstr "Marlborough" - -#: i18n/states/HZ.php:19 i18n/states/NZ.php:21 -msgid "Nelson" -msgstr "Nelson" - -#: i18n/states/HZ.php:20 i18n/states/NZ.php:13 -msgid "Northland" -msgstr "Northland" - -#: i18n/states/HZ.php:21 i18n/states/NZ.php:26 -msgid "Otago" -msgstr "Otago" - -#: i18n/states/HZ.php:22 i18n/states/NZ.php:27 -msgid "Southland" -msgstr "Southland" - -#: i18n/states/HZ.php:23 i18n/states/NZ.php:17 -msgid "Taranaki" -msgstr "Taranaki" - -#: i18n/states/HZ.php:24 i18n/states/NZ.php:23 -msgid "Tasman" -msgstr "Tasman" - -#: i18n/states/HZ.php:25 i18n/states/NZ.php:15 -msgid "Waikato" -msgstr "Waikato" - -#: i18n/states/HZ.php:26 i18n/states/NZ.php:20 -msgid "Wellington" -msgstr "Wellington" - -#: i18n/states/HZ.php:27 i18n/states/NZ.php:24 -msgid "West Coast" -msgstr "West Coast" - -#: i18n/states/ID.php:13 -msgid "Daerah Istimewa Aceh" -msgstr "Daerah Istimewa Aceh" - -#: i18n/states/ID.php:14 -msgid "Sumatera Utara" -msgstr "Sumatera Utara" - -#: i18n/states/ID.php:15 -msgid "Sumatera Barat" -msgstr "Sumatera Barat" - -#: i18n/states/ID.php:16 -msgid "Riau" -msgstr "Riau" - -#: i18n/states/ID.php:17 -msgid "Kepulauan Riau" -msgstr "Kepulauan Riau" - -#: i18n/states/ID.php:18 -msgid "Jambi" -msgstr "Jambi" - -#: i18n/states/ID.php:19 -msgid "Sumatera Selatan" -msgstr "Sumatera Selatan" - -#: i18n/states/ID.php:20 -msgid "Bangka Belitung" -msgstr "Bangka Belitung" - -#: i18n/states/ID.php:21 -msgid "Bengkulu" -msgstr "Bengkulu" - -#: i18n/states/ID.php:22 -msgid "Lampung" -msgstr "Lampung" - -#: i18n/states/ID.php:23 -msgid "DKI Jakarta" -msgstr "DKI Jakarta" - -#: i18n/states/ID.php:24 -msgid "Jawa Barat" -msgstr "Jawa Barat" - -#: i18n/states/ID.php:25 -msgid "Banten" -msgstr "Banten" - -#: i18n/states/ID.php:26 -msgid "Jawa Tengah" -msgstr "Jawa Tengah" - -#: i18n/states/ID.php:27 -msgid "Jawa Timur" -msgstr "Jawa Timur" - -#: i18n/states/ID.php:28 -msgid "Daerah Istimewa Yogyakarta" -msgstr "Daerah Istimewa Yogyakarta" - -#: i18n/states/ID.php:29 -msgid "Bali" -msgstr "Bali" - -#: i18n/states/ID.php:30 -msgid "Nusa Tenggara Barat" -msgstr "Nusa Tenggara Barat" - -#: i18n/states/ID.php:31 -msgid "Nusa Tenggara Timur" -msgstr "Nusa Tenggara Timur" - -#: i18n/states/ID.php:32 -msgid "Kalimantan Barat" -msgstr "Kalimantan Barat" - -#: i18n/states/ID.php:33 -msgid "Kalimantan Tengah" -msgstr "Kalimantan Tengah" - -#: i18n/states/ID.php:34 -msgid "Kalimantan Timur" -msgstr "Kalimantan Timur" - -#: i18n/states/ID.php:35 -msgid "Kalimantan Selatan" -msgstr "Kalimantan Selatan" - -#: i18n/states/ID.php:36 -msgid "Kalimantan Utara" -msgstr "Kalimantan Utara" - -#: i18n/states/ID.php:37 -msgid "Sulawesi Utara" -msgstr "Sulawesi Utara" - -#: i18n/states/ID.php:38 -msgid "Sulawesi Tengah" -msgstr "Sulawesi Tengah" - -#: i18n/states/ID.php:39 -msgid "Sulawesi Tenggara" -msgstr "Sulawesi Tenggara" - -#: i18n/states/ID.php:40 -msgid "Sulawesi Barat" -msgstr "Sulawesi Barat" - -#: i18n/states/ID.php:41 -msgid "Sulawesi Selatan" -msgstr "Sulawesi Selatan" - -#: i18n/states/ID.php:42 -msgid "Gorontalo" -msgstr "Gorontalo" - -#: i18n/states/ID.php:43 -msgid "Maluku" -msgstr "Maluku" - -#: i18n/states/ID.php:44 -msgid "Maluku Utara" -msgstr "Maluku Utara" - -#: i18n/states/ID.php:45 -msgid "Papua" -msgstr "Papua" - -#: i18n/states/ID.php:46 -msgid "Papua Barat" -msgstr "Papua Barat" - -#: i18n/states/IN.php:13 -msgid "Andra Pradesh" -msgstr "Andra Pradesh" - -#: i18n/states/IN.php:14 -msgid "Arunachal Pradesh" -msgstr "Arunachal Pradesh" - -#: i18n/states/IN.php:15 -msgid "Assam" -msgstr "Assam" - -#: i18n/states/IN.php:16 -msgid "Bihar" -msgstr "Bihar" - -#: i18n/states/IN.php:17 -msgid "Chhattisgarh" -msgstr "Chhattisgarh" - -#: i18n/states/IN.php:18 -msgid "Goa" -msgstr "Goa" - -#: i18n/states/IN.php:19 -msgid "Gujarat" -msgstr "Gujarat" - -#: i18n/states/IN.php:20 -msgid "Haryana" -msgstr "Haryana" - -#: i18n/states/IN.php:21 -msgid "Himachal Pradesh" -msgstr "Himachal Pradesh" - -#: i18n/states/IN.php:22 -msgid "Jammu and Kashmir" -msgstr "Jammu and Kashmir" - -#: i18n/states/IN.php:23 -msgid "Jharkhand" -msgstr "Jharkhand" - -#: i18n/states/IN.php:24 -msgid "Karnataka" -msgstr "Karnataka" - -#: i18n/states/IN.php:25 -msgid "Kerala" -msgstr "Kerala" - -#: i18n/states/IN.php:26 -msgid "Madhya Pradesh" -msgstr "Madhya Pradesh" - -#: i18n/states/IN.php:27 -msgid "Maharashtra" -msgstr "Maharashtra" - -#: i18n/states/IN.php:28 -msgid "Manipur" -msgstr "Manipur" - -#: i18n/states/IN.php:29 -msgid "Meghalaya" -msgstr "Meghalaya" - -#: i18n/states/IN.php:30 -msgid "Mizoram" -msgstr "Mizoram" - -#: i18n/states/IN.php:31 -msgid "Nagaland" -msgstr "Nagaland" - -#: i18n/states/IN.php:32 -msgid "Orissa" -msgstr "Orissa" - -#: i18n/states/IN.php:33 -msgid "Punjab" -msgstr "Punjab" - -#: i18n/states/IN.php:34 -msgid "Rajasthan" -msgstr "Rajasthan" - -#: i18n/states/IN.php:35 -msgid "Sikkim" -msgstr "Sikkim" - -#: i18n/states/IN.php:36 -msgid "Tamil Nadu" -msgstr "Tamil Nadu" - -#: i18n/states/IN.php:37 -msgid "Tripura" -msgstr "Tripura" - -#: i18n/states/IN.php:38 -msgid "Uttaranchal" -msgstr "Uttaranchal" - -#: i18n/states/IN.php:39 -msgid "Uttar Pradesh" -msgstr "Uttar Pradesh" - -#: i18n/states/IN.php:40 -msgid "West Bengal" -msgstr "West Bengal" - -#: i18n/states/IN.php:41 -msgid "Andaman and Nicobar Islands" -msgstr "Andaman and Nicobar Islands" - -#: i18n/states/IN.php:42 -msgid "Chandigarh" -msgstr "Chandigarh" - -#: i18n/states/IN.php:43 -msgid "Dadar and Nagar Haveli" -msgstr "Dadar and Nagar Haveli" - -#: i18n/states/IN.php:44 -msgid "Daman and Diu" -msgstr "Daman and Diu" - -#: i18n/states/IN.php:45 -msgid "Delhi" -msgstr "Delhi" - -#: i18n/states/IN.php:46 -msgid "Lakshadeep" -msgstr "Lakshadeep" - -#: i18n/states/IN.php:47 -msgid "Pondicherry (Puducherry)" -msgstr "Pondicherry (Puducherry)" - -#: i18n/states/MY.php:13 -msgid "Johor" -msgstr "Johor" - -#: i18n/states/MY.php:14 -msgid "Kedah" -msgstr "Kedah" - -#: i18n/states/MY.php:15 -msgid "Kelantan" -msgstr "Kelantan" - -#: i18n/states/MY.php:16 -msgid "Melaka" -msgstr "Melaka" - -#: i18n/states/MY.php:17 -msgid "Negeri Sembilan" -msgstr "Negeri Sembilan" - -#: i18n/states/MY.php:18 -msgid "Pahang" -msgstr "Pahang" - -#: i18n/states/MY.php:19 -msgid "Perak" -msgstr "Perak" - -#: i18n/states/MY.php:20 -msgid "Perlis" -msgstr "Perlis" - -#: i18n/states/MY.php:21 -msgid "Pulau Pinang" -msgstr "Pulau Pinang" - -#: i18n/states/MY.php:22 -msgid "Sabah" -msgstr "Sabah" - -#: i18n/states/MY.php:23 -msgid "Sarawak" -msgstr "Sarawak" - -#: i18n/states/MY.php:24 -msgid "Selangor" -msgstr "Selangor" - -#: i18n/states/MY.php:25 -msgid "Terengganu" -msgstr "Terengganu" - -#: i18n/states/MY.php:26 -msgid "W.P. Kuala Lumpur" -msgstr "W.P. Kuala Lumpur" - -#: i18n/states/MY.php:27 -msgid "W.P. Labuan" -msgstr "W.P. Labuan" - -#: i18n/states/MY.php:28 -msgid "W.P. Putrajaya" -msgstr "W.P. Putrajaya" - -#: i18n/states/TH.php:13 -msgid "" -"Amnat Charoen (อำนาจเจร" -"ิญ)" -msgstr "" -"Amnat Charoen (อำนาจเจร" -"ิญ)" - -#: i18n/states/TH.php:14 -msgid "Ang Thong (อ่างทอง)" -msgstr "Ang Thong (อ่างทอง)" - -#: i18n/states/TH.php:15 -msgid "" -"Ayutthaya (พระนครศรี" -"อยุธยา)" -msgstr "" -"Ayutthaya (พระนครศรี" -"อยุธยา)" - -#: i18n/states/TH.php:16 -msgid "" -"Bangkok (กรุงเทพมห" -"านคร)" -msgstr "" -"Bangkok (กรุงเทพมห" -"านคร)" - -#: i18n/states/TH.php:17 -msgid "Bueng Kan (บึงกาฬ)" -msgstr "Bueng Kan (บึงกาฬ)" - -#: i18n/states/TH.php:18 -msgid "" -"Buri Ram (บุรีรัมย์)" -msgstr "" -"Buri Ram (บุรีรัมย์)" - -#: i18n/states/TH.php:19 -msgid "" -"Chachoengsao (ฉะเชิงเทร" -"า)" -msgstr "" -"Chachoengsao (ฉะเชิงเทร" -"า)" - -#: i18n/states/TH.php:20 -msgid "Chai Nat (ชัยนาท)" -msgstr "Chai Nat (ชัยนาท)" - -#: i18n/states/TH.php:21 -msgid "Chaiyaphum (ชัยภูมิ)" -msgstr "Chaiyaphum (ชัยภูมิ)" - -#: i18n/states/TH.php:22 -msgid "Chanthaburi (จันทบุรี)" -msgstr "Chanthaburi (จันทบุรี)" - -#: i18n/states/TH.php:23 -msgid "" -"Chiang Mai (เชียงใหม่)" -msgstr "" -"Chiang Mai (เชียงใหม่)" - -#: i18n/states/TH.php:24 -msgid "Chiang Rai (เชียงราย)" -msgstr "Chiang Rai (เชียงราย)" - -#: i18n/states/TH.php:25 -msgid "Chonburi (ชลบุรี)" -msgstr "Chonburi (ชลบุรี)" - -#: i18n/states/TH.php:26 -msgid "Chumphon (ชุมพร)" -msgstr "Chumphon (ชุมพร)" - -#: i18n/states/TH.php:27 -msgid "" -"Kalasin (กาฬสินธุ์)" -msgstr "" -"Kalasin (กาฬสินธุ์)" - -#: i18n/states/TH.php:28 -msgid "" -"Kamphaeng Phet (กำแพงเพช" -"ร)" -msgstr "" -"Kamphaeng Phet (กำแพงเพช" -"ร)" - -#: i18n/states/TH.php:29 -msgid "" -"Kanchanaburi (กาญจนบุร" -"ี)" -msgstr "" -"Kanchanaburi (กาญจนบุร" -"ี)" - -#: i18n/states/TH.php:30 -msgid "Khon Kaen (ขอนแก่น)" -msgstr "Khon Kaen (ขอนแก่น)" - -#: i18n/states/TH.php:31 -msgid "Krabi (กระบี่)" -msgstr "Krabi (กระบี่)" - -#: i18n/states/TH.php:32 -msgid "Lampang (ลำปาง)" -msgstr "Lampang (ลำปาง)" - -#: i18n/states/TH.php:33 -msgid "Lamphun (ลำพูน)" -msgstr "Lamphun (ลำพูน)" - -#: i18n/states/TH.php:34 -msgid "Loei (เลย)" -msgstr "Loei (เลย)" - -#: i18n/states/TH.php:35 -msgid "Lopburi (ลพบุรี)" -msgstr "Lopburi (ลพบุรี)" - -#: i18n/states/TH.php:36 -msgid "" -"Mae Hong Son (แม่ฮ่องสอ" -"น)" -msgstr "" -"Mae Hong Son (แม่ฮ่องสอ" -"น)" - -#: i18n/states/TH.php:37 -msgid "" -"Maha Sarakham (มหาสารคา" -"ม)" -msgstr "" -"Maha Sarakham (มหาสารคา" -"ม)" - -#: i18n/states/TH.php:38 -msgid "Mukdahan (มุกดาหาร)" -msgstr "Mukdahan (มุกดาหาร)" - -#: i18n/states/TH.php:39 -msgid "Nakhon Nayok (นครนายก)" -msgstr "Nakhon Nayok (นครนายก)" - -#: i18n/states/TH.php:40 -msgid "Nakhon Pathom (นครปฐม)" -msgstr "Nakhon Pathom (นครปฐม)" - -#: i18n/states/TH.php:41 -msgid "Nakhon Phanom (นครพนม)" -msgstr "Nakhon Phanom (นครพนม)" - -#: i18n/states/TH.php:42 -msgid "" -"Nakhon Ratchasima (นครราชสี" -"มา)" -msgstr "" -"Nakhon Ratchasima (นครราชสี" -"มา)" - -#: i18n/states/TH.php:43 -msgid "" -"Nakhon Sawan (นครสวรรค" -"์)" -msgstr "" -"Nakhon Sawan (นครสวรรค" -"์)" - -#: i18n/states/TH.php:44 -msgid "" -"Nakhon Si Thammarat (นครศรีธร" -"รมราช)" -msgstr "" -"Nakhon Si Thammarat (นครศรีธร" -"รมราช)" - -#: i18n/states/TH.php:45 -msgid "Nan (น่าน)" -msgstr "Nan (น่าน)" - -#: i18n/states/TH.php:46 -msgid "Narathiwat (นราธิวาส)" -msgstr "Narathiwat (นราธิวาส)" - -#: i18n/states/TH.php:47 -msgid "" -"Nong Bua Lam Phu (หนองบัวล" -"ำภู)" -msgstr "" -"Nong Bua Lam Phu (หนองบัวล" -"ำภู)" - -#: i18n/states/TH.php:48 -msgid "Nong Khai (หนองคาย)" -msgstr "Nong Khai (หนองคาย)" - -#: i18n/states/TH.php:49 -msgid "Nonthaburi (นนทบุรี)" -msgstr "Nonthaburi (นนทบุรี)" - -#: i18n/states/TH.php:50 -msgid "Pathum Thani (ปทุมธานี)" -msgstr "" -"Pathum Thani (ปทุมธานี)" - -#: i18n/states/TH.php:51 -msgid "Pattani (ปัตตานี)" -msgstr "Pattani (ปัตตานี)" - -#: i18n/states/TH.php:52 -msgid "Phang Nga (พังงา)" -msgstr "Phang Nga (พังงา)" - -#: i18n/states/TH.php:53 -msgid "Phatthalung (พัทลุง)" -msgstr "Phatthalung (พัทลุง)" - -#: i18n/states/TH.php:54 -msgid "Phayao (พะเยา)" -msgstr "Phayao (พะเยา)" - -#: i18n/states/TH.php:55 -msgid "" -"Phetchabun (เพชรบูรณ์)" -msgstr "" -"Phetchabun (เพชรบูรณ์)" - -#: i18n/states/TH.php:56 -msgid "Phetchaburi (เพชรบุรี)" -msgstr "Phetchaburi (เพชรบุรี)" - -#: i18n/states/TH.php:57 -msgid "Phichit (พิจิตร)" -msgstr "Phichit (พิจิตร)" - -#: i18n/states/TH.php:58 -msgid "Phitsanulok (พิษณุโลก)" -msgstr "Phitsanulok (พิษณุโลก)" - -#: i18n/states/TH.php:59 -msgid "Phrae (แพร่)" -msgstr "Phrae (แพร่)" - -#: i18n/states/TH.php:60 -msgid "Phuket (ภูเก็ต)" -msgstr "Phuket (ภูเก็ต)" - -#: i18n/states/TH.php:61 -msgid "" -"Prachin Buri (ปราจีนบุร" -"ี)" -msgstr "" -"Prachin Buri (ปราจีนบุร" -"ี)" - -#: i18n/states/TH.php:62 -msgid "" -"Prachuap Khiri Khan (ประจวบคี" -"รีขันธ์)" -msgstr "" -"Prachuap Khiri Khan (ประจวบคี" -"รีขันธ์)" - -#: i18n/states/TH.php:63 -msgid "Ranong (ระนอง)" -msgstr "Ranong (ระนอง)" - -#: i18n/states/TH.php:64 -msgid "Ratchaburi (ราชบุรี)" -msgstr "Ratchaburi (ราชบุรี)" - -#: i18n/states/TH.php:65 -msgid "Rayong (ระยอง)" -msgstr "Rayong (ระยอง)" - -#: i18n/states/TH.php:66 -msgid "Roi Et (ร้อยเอ็ด)" -msgstr "Roi Et (ร้อยเอ็ด)" - -#: i18n/states/TH.php:67 -msgid "Sa Kaeo (สระแก้ว)" -msgstr "Sa Kaeo (สระแก้ว)" - -#: i18n/states/TH.php:68 -msgid "Sakon Nakhon (สกลนคร)" -msgstr "Sakon Nakhon (สกลนคร)" - -#: i18n/states/TH.php:69 -msgid "" -"Samut Prakan (สมุทรปราก" -"าร)" -msgstr "" -"Samut Prakan (สมุทรปราก" -"าร)" - -#: i18n/states/TH.php:70 -msgid "" -"Samut Sakhon (สมุทรสาค" -"ร)" -msgstr "" -"Samut Sakhon (สมุทรสาค" -"ร)" - -#: i18n/states/TH.php:71 -msgid "" -"Samut Songkhram (สมุทรสงค" -"ราม)" -msgstr "" -"Samut Songkhram (สมุทรสงค" -"ราม)" - -#: i18n/states/TH.php:72 -msgid "Saraburi (สระบุรี)" -msgstr "Saraburi (สระบุรี)" - -#: i18n/states/TH.php:73 -msgid "Satun (สตูล)" -msgstr "Satun (สตูล)" - -#: i18n/states/TH.php:74 -msgid "" -"Sing Buri (สิงห์บุรี)" -msgstr "" -"Sing Buri (สิงห์บุรี)" - -#: i18n/states/TH.php:75 -msgid "Sisaket (ศรีสะเกษ)" -msgstr "Sisaket (ศรีสะเกษ)" - -#: i18n/states/TH.php:76 -msgid "Songkhla (สงขลา)" -msgstr "Songkhla (สงขลา)" - -#: i18n/states/TH.php:77 -msgid "Sukhothai (สุโขทัย)" -msgstr "Sukhothai (สุโขทัย)" - -#: i18n/states/TH.php:78 -msgid "" -"Suphan Buri (สุพรรณบุร" -"ี)" -msgstr "" -"Suphan Buri (สุพรรณบุร" -"ี)" - -#: i18n/states/TH.php:79 -msgid "" -"Surat Thani (สุราษฎร์ธ" -"านี)" -msgstr "" -"Surat Thani (สุราษฎร์ธ" -"านี)" - -#: i18n/states/TH.php:80 -msgid "Surin (สุรินทร์)" -msgstr "Surin (สุรินทร์)" - -#: i18n/states/TH.php:81 -msgid "Tak (ตาก)" -msgstr "Tak (ตาก)" - -#: i18n/states/TH.php:82 -msgid "Trang (ตรัง)" -msgstr "Trang (ตรัง)" - -#: i18n/states/TH.php:83 -msgid "Trat (ตราด)" -msgstr "Trat (ตราด)" - -#: i18n/states/TH.php:84 -msgid "" -"Ubon Ratchathani (อุบลราชธ" -"านี)" -msgstr "" -"Ubon Ratchathani (อุบลราชธ" -"านี)" - -#: i18n/states/TH.php:85 -msgid "Udon Thani (อุดรธานี)" -msgstr "Udon Thani (อุดรธานี)" - -#: i18n/states/TH.php:86 -msgid "" -"Uthai Thani (อุทัยธานี)" -msgstr "" -"Uthai Thani (อุทัยธานี)" - -#: i18n/states/TH.php:87 -msgid "" -"Uttaradit (อุตรดิตถ์)" -msgstr "" -"Uttaradit (อุตรดิตถ์)" - -#: i18n/states/TH.php:88 -msgid "Yala (ยะลา)" -msgstr "Yala (ยะลา)" - -#: i18n/states/TH.php:89 -msgid "Yasothon (ยโสธร)" -msgstr "Yasothon (ยโสธร)" - -#: i18n/states/US.php:13 -msgid "Alabama" -msgstr "Alabama" - -#: i18n/states/US.php:14 -msgid "Alaska" -msgstr "Alaszka" - -#: i18n/states/US.php:15 -msgid "Arizona" -msgstr "Arizona" - -#: i18n/states/US.php:16 -msgid "Arkansas" -msgstr "Arkansas" - -#: i18n/states/US.php:17 -msgid "California" -msgstr "Kalifornia" - -#: i18n/states/US.php:18 -msgid "Colorado" -msgstr "Colorado" - -#: i18n/states/US.php:19 -msgid "Connecticut" -msgstr "Connecticut" - -#: i18n/states/US.php:20 -msgid "Delaware" -msgstr "Delaware" - -#: i18n/states/US.php:21 -msgid "District Of Columbia" -msgstr "District Of Columbia" - -#: i18n/states/US.php:22 -msgid "Florida" -msgstr "Florida" - -#: i18n/states/US.php:24 -msgid "Hawaii" -msgstr "Hawaii" - -#: i18n/states/US.php:25 -msgid "Idaho" -msgstr "Idaho" - -#: i18n/states/US.php:26 -msgid "Illinois" -msgstr "Illinois" - -#: i18n/states/US.php:27 -msgid "Indiana" -msgstr "Indiana" - -#: i18n/states/US.php:28 -msgid "Iowa" -msgstr "Iowa" - -#: i18n/states/US.php:29 -msgid "Kansas" -msgstr "Kansas" - -#: i18n/states/US.php:30 -msgid "Kentucky" -msgstr "Kentucky" - -#: i18n/states/US.php:31 -msgid "Louisiana" -msgstr "Louisiana" - -#: i18n/states/US.php:32 -msgid "Maine" -msgstr "Maine" - -#: i18n/states/US.php:33 -msgid "Maryland" -msgstr "Maryland" - -#: i18n/states/US.php:34 -msgid "Massachusetts" -msgstr "Massachusetts" - -#: i18n/states/US.php:35 -msgid "Michigan" -msgstr "Michigan" - -#: i18n/states/US.php:36 -msgid "Minnesota" -msgstr "Minnesota" - -#: i18n/states/US.php:37 -msgid "Mississippi" -msgstr "Mississippi" - -#: i18n/states/US.php:38 -msgid "Missouri" -msgstr "Missouri" - -#: i18n/states/US.php:39 -msgid "Montana" -msgstr "Montana" - -#: i18n/states/US.php:40 -msgid "Nebraska" -msgstr "Nebraska" - -#: i18n/states/US.php:41 -msgid "Nevada" -msgstr "Nevada" - -#: i18n/states/US.php:42 -msgid "New Hampshire" -msgstr "New Hampshire" - -#: i18n/states/US.php:43 -msgid "New Jersey" -msgstr "New Jersey" - -#: i18n/states/US.php:44 -msgid "New Mexico" -msgstr "Új-Mexikó" - -#: i18n/states/US.php:45 -msgid "New York" -msgstr "New York" - -#: i18n/states/US.php:46 -msgid "North Carolina" -msgstr "Észak-Karolina" - -#: i18n/states/US.php:47 -msgid "North Dakota" -msgstr "Észak-Dakota" - -#: i18n/states/US.php:48 -msgid "Ohio" -msgstr "Ohio" - -#: i18n/states/US.php:49 -msgid "Oklahoma" -msgstr "Oklahoma" - -#: i18n/states/US.php:50 -msgid "Oregon" -msgstr "Oregon" - -#: i18n/states/US.php:51 -msgid "Pennsylvania" -msgstr "Pennsylvania" - -#: i18n/states/US.php:52 -msgid "Rhode Island" -msgstr "Rhode Island" - -#: i18n/states/US.php:53 -msgid "South Carolina" -msgstr "Dél-Karolina" - -#: i18n/states/US.php:54 -msgid "South Dakota" -msgstr "Dél-Dakota" - -#: i18n/states/US.php:55 -msgid "Tennessee" -msgstr "Tennessee" - -#: i18n/states/US.php:56 -msgid "Texas" -msgstr "Texas" - -#: i18n/states/US.php:57 -msgid "Utah" -msgstr "Utah" - -#: i18n/states/US.php:58 -msgid "Vermont" -msgstr "Vermont" - -#: i18n/states/US.php:59 -msgid "Virginia" -msgstr "Virginia" - -#: i18n/states/US.php:60 -msgid "Washington" -msgstr "Washington" - -#: i18n/states/US.php:61 -msgid "West Virginia" -msgstr "Nyugat-Virginia" - -#: i18n/states/US.php:62 -msgid "Wisconsin" -msgstr "Wisconsin" - -#: i18n/states/US.php:63 -msgid "Wyoming" -msgstr "Wyoming" - -#: i18n/states/US.php:64 -msgid "Armed Forces (AA)" -msgstr "Armed Forces (AA)" - -#: i18n/states/US.php:65 -msgid "Armed Forces (AE)" -msgstr "Armed Forces (AE)" - -#: i18n/states/US.php:66 -msgid "Armed Forces (AP)" -msgstr "Armed Forces (AP)" - -#: i18n/states/US.php:67 -msgid "American Samoa" -msgstr "American Samoa" - -#: i18n/states/US.php:68 -msgid "Guam" -msgstr "Guam" - -#: i18n/states/US.php:69 -msgid "Northern Mariana Islands" -msgstr "Northern Mariana Islands" - -#: i18n/states/US.php:70 -msgid "Puerto Rico" -msgstr "Puerto Rico" - -#: i18n/states/US.php:71 -msgid "US Minor Outlying Islands" -msgstr "US Minor Outlying Islands" - -#: i18n/states/US.php:72 -msgid "US Virgin Islands" -msgstr "US Virgin Islands" - -#: i18n/states/ZA.php:13 -msgid "Eastern Cape" -msgstr "Eastern Cape" - -#: i18n/states/ZA.php:14 -msgid "Free State" -msgstr "Free State" - -#: i18n/states/ZA.php:15 -msgid "Gauteng" -msgstr "Gauteng" - -#: i18n/states/ZA.php:16 -msgid "KwaZulu-Natal" -msgstr "KwaZulu-Natal" - -#: i18n/states/ZA.php:17 -msgid "Limpopo" -msgstr "Limpopo" - -#: i18n/states/ZA.php:18 -msgid "Mpumalanga" -msgstr "Mpumalanga" - -#: i18n/states/ZA.php:19 -msgid "Northern Cape" -msgstr "Northern Cape" - -#: i18n/states/ZA.php:20 -msgid "North West" -msgstr "North West" - -#: i18n/states/ZA.php:21 -msgid "Western Cape" -msgstr "Western Cape" - -#: i18n/strings.php:16 -msgid "pending" -msgstr "függőben" - -#: i18n/strings.php:17 -msgid "failed" -msgstr "sikertelen" - -#: i18n/strings.php:18 -msgid "on-hold" -msgstr "fizetésre vár" - -#: i18n/strings.php:19 -msgid "processing" -msgstr "feldolgozás alatt" - -#: i18n/strings.php:20 -msgid "completed" -msgstr "befejezve" - -#: i18n/strings.php:21 -msgid "refunded" -msgstr "visszatérítve" - -#: i18n/strings.php:22 -msgid "cancelled" -msgstr "visszamondva" - -#: templates/cart/cart-empty.php:14 -msgid "Your cart is currently empty." -msgstr "A kosarad jelenleg üres." - -#: templates/cart/cart-empty.php:18 -msgid "← Return To Shop" -msgstr "← Vissza az üzletbe" - -#: templates/cart/cart.php:28 templates/checkout/form-pay.php:19 -#: templates/checkout/review-order.php:21 -#: templates/emails/admin-new-order.php:22 -#: templates/emails/customer-completed-order.php:23 -#: templates/emails/customer-invoice.php:27 -#: templates/emails/customer-note.php:27 -#: templates/emails/customer-processing-order.php:23 -#: templates/order/order-details.php:20 woocommerce.php:983 -msgid "Product" -msgstr "Termék" - -#: templates/cart/cart.php:29 templates/emails/admin-new-order.php:24 -#: templates/emails/customer-completed-order.php:25 -#: templates/emails/customer-invoice.php:29 -#: templates/emails/customer-note.php:29 -#: templates/emails/customer-processing-order.php:25 -msgid "Price" -msgstr "Ár" - -#: templates/cart/cart.php:30 templates/emails/admin-new-order.php:23 -#: templates/emails/customer-completed-order.php:24 -#: templates/emails/customer-invoice.php:28 -#: templates/emails/customer-note.php:28 -#: templates/emails/customer-processing-order.php:24 -msgid "Quantity" -msgstr "Mennyiség" - -#: templates/cart/cart.php:31 templates/checkout/review-order.php:22 -#: templates/myaccount/my-orders.php:35 templates/order/order-details.php:21 -msgid "Total" -msgstr "Összeg" - -#: templates/cart/cart.php:47 -msgid "Remove this item" -msgstr "Termék eltávoíltása" - -#: templates/cart/cart.php:100 -#: templates/single-product/add-to-cart/quantity.php:12 -msgctxt "Product quantity input tooltip" -msgid "Qty" -msgstr "Mny" - -#: templates/cart/cart.php:127 woocommerce.php:1096 -msgid "Coupon" -msgstr "Kupon" - -#: templates/cart/cart.php:127 templates/checkout/form-coupon.php:29 -msgid "Apply Coupon" -msgstr "Kupon alkalmazása" - -#: templates/cart/cart.php:134 -msgid "Update Cart" -msgstr "Kosár frissítése" - -#: templates/cart/cart.php:134 -msgid "Proceed to Checkout →" -msgstr "Tovább a pénztárhoz →" - -#: templates/cart/cross-sells.php:38 -msgid "You may be interested in…" -msgstr "Érdekelhet még…" - -#: templates/cart/mini-cart.php:55 -msgid "No products in the cart." -msgstr "Nincsenek termékek a kosárban." - -#: templates/cart/mini-cart.php:63 -msgid "Subtotal" -msgstr "Részösszeg:" - -#: templates/cart/mini-cart.php:69 -msgid "Checkout →" -msgstr "Pénztár →" - -#: templates/cart/shipping-calculator.php:22 -msgid "Calculate Shipping" -msgstr "Szállítási díj kiszámítása" - -#: templates/cart/shipping-calculator.php:28 woocommerce-template.php:1334 -msgid "Select a country…" -msgstr "Válassz országot…" - -#: templates/cart/shipping-calculator.php:45 -#: templates/cart/shipping-calculator.php:51 -#: templates/cart/shipping-calculator.php:63 -msgid "State / county" -msgstr "Megye" - -#: templates/cart/shipping-calculator.php:52 woocommerce-template.php:1384 -msgid "Select a state…" -msgstr "Válassz megyét…" - -#: templates/cart/shipping-calculator.php:72 -msgid "City" -msgstr "Város" - -#: templates/cart/shipping-calculator.php:85 -msgid "Update Totals" -msgstr "Végösszeg frissítése" - -#: templates/cart/shipping-methods.php:32 -msgid "Free" -msgstr "Ingyenes" - -#: templates/cart/shipping-methods.php:68 -msgid "Please fill in your details to see available shipping methods." -msgstr "Kérjük töltsd ki adataidat a szállítási módok megjelenítéséhez." - -#: templates/cart/shipping-methods.php:76 templates/cart/totals.php:147 -msgid "" -"Sorry, it seems that there are no available shipping methods for your " -"location (%s)." -msgstr "Sajnáljuk, nincsenek elérhető szállítási módok a címedre (%s)." - -#: templates/cart/shipping-methods.php:76 templates/cart/totals.php:147 -msgid "" -"If you require assistance or wish to make alternate arrangements please " -"contact us." -msgstr "" -"Ha támogatásra van szükséged vagy alternatív megoldást javasolnál, kérjük " -"lépj kapcsolatba velünk." - -#: templates/cart/totals.php:22 -msgid "Cart Totals" -msgstr "Kosár végösszeg" - -#: templates/cart/totals.php:28 templates/checkout/review-order.php:27 -msgid "Cart Subtotal" -msgstr "Kosár részösszeg" - -#: templates/cart/totals.php:35 templates/checkout/review-order.php:34 -#: woocommerce.php:1690 -msgid "Cart Discount" -msgstr "Kosár kedvezmény" - -#: templates/cart/totals.php:35 templates/cart/totals.php:83 -msgid "[Remove]" -msgstr "[Eltávolítás]" - -#: templates/cart/totals.php:46 templates/checkout/review-order.php:45 -msgid "Shipping" -msgstr "Szállítás" - -#: templates/cart/totals.php:83 templates/checkout/review-order.php:82 -msgid "Order Discount" -msgstr "Rendelési kedvezmény" - -#: templates/cart/totals.php:92 templates/checkout/review-order.php:91 -msgid "Order Total" -msgstr "Rendelés végösszeg" - -#: templates/cart/totals.php:121 -msgid " (taxes estimated for %s)" -msgstr "(becsült adó alapja: %s)" - -#: templates/cart/totals.php:123 -msgid "" -"Note: Shipping and taxes are estimated%s and will be updated during checkout " -"based on your billing and shipping information." -msgstr "" -"Megjegyzés: a szállítási díj és az adó becsült értékek%s és a pénztárnál a " -"szállítási és számlázási információk alapján frissülni fog." - -#: templates/cart/totals.php:135 -msgid "" -"No shipping methods were found; please recalculate your shipping and enter " -"your state/county and zip/postcode to ensure there are no other available " -"methods for your location." -msgstr "" -"Nem találhatók szállítási módok; kérjük kalkuláld újra a szállítást és írd " -"be az országod és irányítószámod hogy meggyőződj róla valóban nincsenek-e " -"elérhető szállítási módok." - -#: templates/checkout/cart-errors.php:16 -msgid "" -"There are some issues with the items in your cart (shown above). Please go " -"back to the cart page and resolve these issues before checking out." -msgstr "" -"Problémák merültek fel a kosaraddal kapcsolatban (fentebb látható). Kérjük " -"lépj vissza a kosár oldalra és javítsd a hibákat fizetés előtt." - -#: templates/checkout/cart-errors.php:20 -msgid "← Return To Cart" -msgstr "← Vissza a kosárhoz" - -#: templates/checkout/form-billing.php:17 -msgid "Billing & Shipping" -msgstr "Számlázás és szállítás" - -#: templates/checkout/form-billing.php:21 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:19 templates/myaccount/my-address.php:25 -#: templates/order/order-details.php:115 -msgid "Billing Address" -msgstr "Számlázási cím" - -#: templates/checkout/form-billing.php:42 -msgid "Create an account?" -msgstr "Fiók létrehozása?" - -#: templates/checkout/form-billing.php:51 -msgid "" -"Create an account by entering the information below. If you are a returning " -"customer please login at the top of the page." -msgstr "" -"Az alábbi mezők kitöltésével regisztrálhatsz egy fiókot. Ha visszatérő " -"vásárló vagy, kérjük jelentkezz be az oldal tetején." - -#: templates/checkout/form-checkout.php:20 -msgid "You must be logged in to checkout." -msgstr "A fizetéshez be kell jelentkezned." - -#: templates/checkout/form-checkout.php:51 -msgid "Your order" -msgstr "Rendelésed" - -#: templates/checkout/form-coupon.php:17 -msgid "Have a coupon?" -msgstr "Van kuponod?" - -#: templates/checkout/form-coupon.php:20 -msgid "Click here to enter your code" -msgstr "Kattints ide a kód megadásához" - -#: templates/checkout/form-coupon.php:25 -msgid "Coupon code" -msgstr "Kuponkód" - -#: templates/checkout/form-login.php:14 -msgid "Returning customer?" -msgstr "Visszatérő vásárló vagy?" - -#: templates/checkout/form-login.php:17 -msgid "Click here to login" -msgstr "Kattints ide a bejelentkezéshez" - -#: templates/checkout/form-login.php:22 -msgid "" -"If you have shopped with us before, please enter your details in the boxes " -"below. If you are a new customer please proceed to the Billing & " -"Shipping section." -msgstr "" -"Ha már vásároltál nálunk, kérjük írd be adataidat az alábbi mezőkbe. Ha új " -"vásárló vagy, kérjük lépj tovább a Számlázási és Szállítási szekciókra." - -#: templates/checkout/form-pay.php:20 -msgid "Qty" -msgstr "Mny" - -#: templates/checkout/form-pay.php:21 -msgid "Totals" -msgstr "Végösszeg" - -#: templates/checkout/form-pay.php:78 -msgid "" -"Sorry, it seems that there are no available payment methods for your " -"location. Please contact us if you require assistance or wish to make " -"alternate arrangements." -msgstr "" -"Sajnáljuk, úgy tűnik nincs elérhető fizetési mód a címedhez. Kérjük lépj " -"velünk kapcsolatba ha további segítségre van szükséged vagy ha más módon " -"szeretnéd rendezni." - -#: templates/checkout/form-pay.php:87 -msgid "Pay for order" -msgstr "Rendelés kifizetése" - -#: templates/checkout/form-shipping.php:32 -msgid "Ship to billing address?" -msgstr "Szállítás a számlázási címre?" - -#: templates/checkout/form-shipping.php:35 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:20 templates/order/order-details.php:130 -msgid "Shipping Address" -msgstr "Szállítási cím" - -#: templates/checkout/form-shipping.php:59 -#: templates/single-product/tabs/additional-information.php:14 -#: woocommerce-template.php:759 -msgid "Additional Information" -msgstr "További információk" - -#: templates/checkout/review-order.php:174 -msgid "Please fill in your details above to see available payment methods." -msgstr "" -"Kérlek töltsd fel fent az adataidat az elérhető fizetési módok " -"megjelenítéséhez." - -#: templates/checkout/review-order.php:176 -msgid "" -"Sorry, it seems that there are no available payment methods for your state. " -"Please contact us if you require assistance or wish to make alternate " -"arrangements." -msgstr "" -"Sajnáljuk, úgy tűnik nem elérhető egyetlen fizetési mód sem a választott " -"országban. Kérjük lépj kapcsolatba velünk, ha támogatásra van szükséged vagy " -"alternatív megoldást javasolnál." - -#: templates/checkout/review-order.php:185 -msgid "" -"Since your browser does not support JavaScript, or it is disabled, please " -"ensure you click the Update Totals button before placing your " -"order. You may be charged more than the amount stated above if you fail to " -"do so." -msgstr "" -"Mivel a böngésződ nem támogatja a JavaScript-et vagy ki van kapcsolva, " -"kérjük kattints a Végösszeg frissítése gombra a rendelésed " -"elküldése előtt. Ha nem így teszel, akkor elképzelhető hogy drágább lesz a " -"rendelésed, mint a fenti összeg." - -#: templates/checkout/review-order.php:185 -msgid "Update totals" -msgstr "Végösszeg frissítése" - -#: templates/checkout/review-order.php:192 -msgid "Place order" -msgstr "Megrendelés elküldése" - -#: templates/checkout/review-order.php:199 -msgid "I have read and accept the" -msgstr "Elolvastam és elfogadom a" - -#: templates/checkout/review-order.php:199 -msgid "terms & conditions" -msgstr "felhasználási feltételeket" - -#: templates/checkout/thankyou.php:18 -msgid "" -"Unfortunately your order cannot be processed as the originating bank/" -"merchant has declined your transaction." -msgstr "" -"A rendelésed feldolgozása sikertelen, mivel a származó bank/kereskedő " -"elutasította a tranzakciót." - -#: templates/checkout/thankyou.php:22 -msgid "Please attempt your purchase again or go to your account page." -msgstr "Kérjük próbálkozz meg újból a vásárlással vagy menj a fiókod oldalára." - -#: templates/checkout/thankyou.php:24 -msgid "Please attempt your purchase again." -msgstr "Kérjük próbálkozz újra a fizetéssel." - -#: templates/checkout/thankyou.php:36 templates/checkout/thankyou.php:67 -msgid "Thank you. Your order has been received." -msgstr "Köszönjük! Rendelésed megkaptuk." - -#: templates/emails/admin-new-order.php:13 -#: templates/emails/plain/admin-new-order.php:13 -msgid "You have received an order from %s. Their order is as follows:" -msgstr "%s egy új rendelést adott fel. A rendelés részletei alább láthatóak:" - -#: templates/emails/admin-new-order.php:17 -msgid "Order: %s" -msgstr "Rendelés: %s" - -#: templates/emails/admin-new-order.php:50 -#: templates/emails/customer-completed-order.php:51 -#: templates/emails/customer-note.php:55 -#: templates/emails/customer-processing-order.php:51 -#: templates/emails/plain/admin-new-order.php:38 -#: templates/order/order-details.php:97 -msgid "Customer details" -msgstr "Vásárló adatai" - -#: templates/emails/admin-new-order.php:53 -#: templates/emails/customer-completed-order.php:54 -#: templates/emails/customer-note.php:58 -#: templates/emails/customer-processing-order.php:54 -#: templates/emails/plain/admin-new-order.php:41 -#: templates/emails/plain/customer-completed-order.php:41 -#: templates/emails/plain/customer-note.php:49 -#: templates/emails/plain/customer-processing-order.php:41 -#: templates/order/order-details.php:101 -msgid "Email:" -msgstr "E-mail cím:" - -#: templates/emails/admin-new-order.php:56 -#: templates/emails/customer-completed-order.php:57 -#: templates/emails/customer-note.php:61 -#: templates/emails/customer-processing-order.php:57 -#: templates/emails/plain/admin-new-order.php:44 -#: templates/emails/plain/customer-completed-order.php:44 -#: templates/emails/plain/customer-note.php:52 -#: templates/emails/plain/customer-processing-order.php:44 -msgid "Tel:" -msgstr "Tel:" - -#: templates/emails/customer-completed-order.php:14 -#: templates/emails/plain/customer-completed-order.php:13 -msgid "" -"Hi there. Your recent order on %s has been completed. Your order details are " -"shown below for your reference:" -msgstr "" -"Szervusz. %s oldalon leadott rendelésed feldolgoztuk. A rendelés részletei " -"alább láthatóak:" - -#: templates/emails/customer-invoice.php:16 -#: templates/emails/plain/customer-invoice.php:14 -msgid "" -"An order has been created for you on %s. To pay for this order please use " -"the following link: %s" -msgstr "" -"%s új rendelést készített számodra. A fizetéshez kérjük használd a következő " -"linket: %s" - -#: templates/emails/customer-invoice.php:16 -msgid "pay" -msgstr "fizetés" - -#: templates/emails/customer-new-account.php:14 -#: templates/emails/plain/customer-new-account.php:13 -msgid "" -"Thanks for creating an account on %s. Your username is %s." -msgstr "" -"Köszönjük, hogy a(z) %s regisztrált felhasználója lettél. Felhasználóneved " -"%s." - -#: templates/emails/customer-new-account.php:16 -#: templates/emails/plain/customer-new-account.php:15 -msgid "You can access your account area here: %s." -msgstr "A fiókodat itt tudod kezelni: %s." - -#: templates/emails/customer-note.php:14 -#: templates/emails/plain/customer-note.php:13 -msgid "Hello, a note has just been added to your order:" -msgstr "Szervusz, egy megjegyzést fűztünk a rendelésedhez:" - -#: templates/emails/customer-note.php:18 -#: templates/emails/plain/customer-note.php:21 -msgid "For your reference, your order details are shown below." -msgstr "Emlékeztetőül alább láthatóak a rendelés részletei." - -#: templates/emails/customer-processing-order.php:14 -#: templates/emails/plain/customer-processing-order.php:13 -msgid "" -"Your order has been received and is now being processed. Your order details " -"are shown below for your reference:" -msgstr "" -"Rendelésed megkaptuk és jelenleg feldolgozás alatt áll. Emlékeztetőül alább " -"láthatóak a rendelés részletei:" - -#: templates/emails/customer-reset-password.php:14 -#: templates/emails/plain/customer-reset-password.php:13 -msgid "Someone requested that the password be reset for the following account:" -msgstr "Valakit új jelszót igényelt a következő fiókhoz:" - -#: templates/emails/customer-reset-password.php:15 -#: templates/emails/plain/customer-reset-password.php:15 -msgid "Username: %s" -msgstr "Felhasználónév: %s" - -#: templates/emails/customer-reset-password.php:16 -#: templates/emails/plain/customer-reset-password.php:16 -msgid "If this was a mistake, just ignore this email and nothing will happen." -msgstr "" -"Ha ez egy tévedés volt, kérjük mellőzd ezt a levelet és semmi sem fog " -"történni." - -#: templates/emails/customer-reset-password.php:17 -#: templates/emails/plain/customer-reset-password.php:17 -msgid "To reset your password, visit the following address:" -msgstr "A jelszavad megváltoztatásához látogasd meg a következő címet:" - -#: templates/emails/customer-reset-password.php:20 -msgid "Click here to reset your password" -msgstr "Kattints ide a jelszavad megváltoztatásához" - -#: templates/emails/email-addresses.php:18 -#: templates/emails/plain/email-addresses.php:12 -msgid "Billing address" -msgstr "Számlázási cím" - -#: templates/emails/email-addresses.php:28 -#: templates/emails/plain/email-addresses.php:17 -msgid "Shipping address" -msgstr "Szállítási ícm" - -#: templates/emails/email-order-items.php:47 -msgid "Download %d:" -msgstr "%d letöltése:" - -#: templates/emails/email-order-items.php:49 -msgid "Download:" -msgstr "Letöltés:" - -#: templates/emails/plain/admin-new-order.php:19 -#: templates/emails/plain/customer-completed-order.php:19 -#: templates/emails/plain/customer-invoice.php:20 -#: templates/emails/plain/customer-note.php:27 -#: templates/emails/plain/customer-processing-order.php:19 -msgid "Order number: %s" -msgstr "Rendelés száma: %s" - -#: templates/emails/plain/admin-new-order.php:20 -#: templates/emails/plain/customer-completed-order.php:20 -#: templates/emails/plain/customer-invoice.php:21 -#: templates/emails/plain/customer-note.php:28 -#: templates/emails/plain/customer-processing-order.php:20 -msgid "Order date: %s" -msgstr "Rendelés napja: %s" - -#: templates/emails/plain/admin-new-order.php:20 -msgid "jS F Y" -msgstr "Y F j." - -#: templates/emails/plain/customer-completed-order.php:38 -#: templates/emails/plain/customer-note.php:46 -#: templates/emails/plain/customer-processing-order.php:38 -msgid "Your details" -msgstr "Adataid" - -#: templates/emails/plain/email-order-items.php:28 -msgid "Quantity: %s" -msgstr "Mennyiség: %s" - -#: templates/emails/plain/email-order-items.php:31 -msgid "Cost: %s" -msgstr "Összeg: %s" - -#: templates/loop/add-to-cart.php:17 templates/loop/add-to-cart.php:41 -#: templates/loop/add-to-cart.php:50 -msgid "Read More" -msgstr "Tovább" - -#: templates/loop/add-to-cart.php:33 -msgid "Select options" -msgstr "Opciók választása" - -#: templates/loop/add-to-cart.php:37 -msgid "View options" -msgstr "Opciók megtekintése" - -#: templates/loop/no-products-found.php:14 templates/loop-shop.php:40 -msgid "No products found which match your selection." -msgstr "Egy termék se felelt meg a keresésnek." - -#: templates/loop/orderby.php:21 -msgid "Default sorting" -msgstr "Alapértelmezett rendezés" - -#: templates/loop/orderby.php:22 -msgid "Sort by popularity" -msgstr "Rendezés népszerűség szerint" - -#: templates/loop/orderby.php:23 -msgid "Sort by average rating" -msgstr "Rendezés átlag értékelés szerint" - -#: templates/loop/orderby.php:24 -msgid "Sort by newness" -msgstr "Rendezés újdonságok szerint" - -#: templates/loop/orderby.php:25 -msgid "Sort by price: low to high" -msgstr "Rendezés ár szerint: olcsótól a drágáig" - -#: templates/loop/orderby.php:26 -msgid "Sort by price: high to low" -msgstr "Rendezés ár szerint: drágától az olcsóig" - -#: templates/loop/result-count.php:28 -msgid "Showing the single result" -msgstr "Egyetlen találat van" - -#: templates/loop/result-count.php:30 -msgid "Showing all %d results" -msgstr "Mind a(z) %d találat megjelenítve" - -#: templates/loop/result-count.php:32 -msgctxt "%1$d = first, %2$d = last, %3$d = total" -msgid "Showing %1$d–%2$d of %3$d results" -msgstr "Megjelenítve %1$d-%2$d / %3$d találat" - -#: templates/loop/sale-flash.php:16 templates/single-product/sale-flash.php:16 -msgid "Sale!" -msgstr "Akciós!" - -#: templates/myaccount/form-change-password.php:20 -#: templates/myaccount/form-lost-password.php:31 -msgid "New password" -msgstr "Új jelszó" - -#: templates/myaccount/form-change-password.php:24 -#: templates/myaccount/form-lost-password.php:35 -msgid "Re-enter new password" -msgstr "Új jelszó megismétlése" - -#: templates/myaccount/form-change-password.php:29 -#: templates/myaccount/form-lost-password.php:45 -msgid "Save" -msgstr "Mentés" - -#: templates/myaccount/form-edit-address.php:43 -msgid "Save Address" -msgstr "Cím mentése" - -#: templates/myaccount/form-login.php:26 templates/myaccount/form-login.php:40 -#: templates/shop/form-login.php:31 -msgid "Login" -msgstr "Bejelentkezés" - -#: templates/myaccount/form-login.php:29 -#: templates/myaccount/form-lost-password.php:24 -#: templates/shop/form-login.php:20 -msgid "Username or email" -msgstr "Felhasználónév vagy e-mail cím" - -#: templates/myaccount/form-login.php:33 templates/myaccount/form-login.php:85 -#: templates/shop/form-login.php:24 -msgid "Password" -msgstr "Jelszó" - -#: templates/myaccount/form-login.php:50 templates/shop/form-login.php:33 -msgid "Lost Password?" -msgstr "Elfelejtetted a jelszavadat?" - -#: templates/myaccount/form-login.php:60 -#: templates/myaccount/form-login.php:101 -msgid "Register" -msgstr "Regisztráció" - -#: templates/myaccount/form-login.php:66 -msgid "Username" -msgstr "Felhasználónév" - -#: templates/myaccount/form-login.php:78 -#: templates/single-product-reviews.php:86 -msgid "Email" -msgstr "E-mail cím" - -#: templates/myaccount/form-login.php:89 -msgid "Re-enter password" -msgstr "Jelszó megismétlése" - -#: templates/myaccount/form-lost-password.php:22 -msgid "" -"Lost your password? Please enter your username or email address. You will " -"receive a link to create a new password via email." -msgstr "" -"Elfelejtetted a jelszavadat? Kérjük írd be a felhasználónevedet vagy e-mail " -"címedet. Küldeni fogunk egy linket e-mailben az új jelszó készítéséhez." - -#: templates/myaccount/form-lost-password.php:28 -msgid "Enter a new password below." -msgstr "Írd be az új jelszavadat." - -#: templates/myaccount/form-lost-password.php:45 -msgid "Reset Password" -msgstr "Új jelszó igénylése" - -#: templates/myaccount/my-account.php:19 -msgid "" -"Hello, %s. From your account dashboard you can view your " -"recent orders, manage your shipping and billing addresses and change your password." -msgstr "" -"Hello, %s. A fiókodban megtekintheted legutóbbi " -"rendeléseid, kezelheted szállítási és számlázási címeidet és megváltoztathatod a jelszavadat." - -#: templates/myaccount/my-address.php:17 -msgid "My Addresses" -msgstr "Címeim" - -#: templates/myaccount/my-address.php:23 -msgid "My Address" -msgstr "Címem" - -#: templates/myaccount/my-address.php:35 -msgid "The following addresses will be used on the checkout page by default." -msgstr "Az alábbi címek lesznek alapértelmezésként használva fizetéskor." - -#: templates/myaccount/my-address.php:45 woocommerce.php:951 -#: woocommerce.php:987 woocommerce.php:1024 woocommerce.php:1062 -#: woocommerce.php:1100 -msgid "Edit" -msgstr "Szerkesztés" - -#: templates/myaccount/my-address.php:64 -msgid "You have not set up this type of address yet." -msgstr "Még nem állítottál be ilyen címet." - -#: templates/myaccount/my-downloads.php:18 -msgid "Available downloads" -msgstr "Elérhető letöltések" - -#: templates/myaccount/my-downloads.php:27 -msgid "%s download remaining" -msgid_plural "%s downloads remaining" -msgstr[0] "%s download remaining" -msgstr[1] "%s downloads remaining" - -#: templates/myaccount/my-orders.php:26 -msgid "Recent Orders" -msgstr "Legutóbbi rendelések" - -#: templates/myaccount/my-orders.php:32 woocommerce.php:1059 -msgid "Order" -msgstr "Rendelés" - -#: templates/myaccount/my-orders.php:33 -msgid "Date" -msgstr "Dátum" - -#: templates/myaccount/my-orders.php:34 -msgid "Status" -msgstr "Állapot" - -#: templates/myaccount/my-orders.php:62 -msgid "%s for %s item" -msgid_plural "%s for %s items" -msgstr[0] "%s %s termékért" -msgstr[1] "%s %s termékért" - -#: templates/myaccount/my-orders.php:77 -msgid "Cancel" -msgstr "Mégsem" - -#: templates/myaccount/my-orders.php:82 -msgid "View" -msgstr "Megtekintés" - -#: templates/order/form-tracking.php:17 -msgid "" -"To track your order please enter your Order ID in the box below and press " -"return. This was given to you on your receipt and in the confirmation email " -"you should have received." -msgstr "" -"A rendelésed követéséhez kérjük írd be a rendelési azonosítót az alábbi " -"dobozba, majd nyomd meg az Enter billentyűt. A rendelési azonosítót a " -"nyugtán és a megerősítő e-mailben találod." - -#: templates/order/form-tracking.php:19 -msgid "Order ID" -msgstr "Rendelés azonosítója" - -#: templates/order/form-tracking.php:19 -msgid "Found in your order confirmation email." -msgstr "A rendelést megerősítő e-mailben található." - -#: templates/order/form-tracking.php:20 -msgid "Billing Email" -msgstr "Számlázási e-mail cím" - -#: templates/order/form-tracking.php:20 -msgid "Email you used during checkout." -msgstr "A vásárláskor használt e-mail cím." - -#: templates/order/form-tracking.php:23 -msgid "Track" -msgstr "Követés" - -#: templates/order/order-details.php:16 -msgid "Order Details" -msgstr "Rendelés részletei" - -#: templates/order/order-details.php:64 -msgid "Download file%s" -msgstr "%s fájl letöltése" - -#: templates/order/order-details.php:90 -msgid "Order Again" -msgstr "Újrarendelés" - -#: templates/order/order-details.php:102 -msgid "Telephone:" -msgstr "Telefonszám:" - -#: templates/order/tracking.php:18 -msgid "Order %s which was made %s has the status “%s”" -msgstr "%s rendelés, leadása óta %s és állapota “%s”" - -#: templates/order/tracking.php:18 -msgid "ago" -msgstr "telt el" - -#: templates/order/tracking.php:20 -msgid "and was completed" -msgstr "és befejezése óta" - -#: templates/order/tracking.php:20 -msgid " ago" -msgstr " telt el" - -#: templates/shop/breadcrumb.php:63 -msgid "Products tagged “" -msgstr "Címkézett termékek “" - -#: templates/shop/breadcrumb.php:91 templates/shop/breadcrumb.php:188 -msgid "Search results for “" -msgstr "Keresési eredmények a következőre “" - -#: templates/shop/breadcrumb.php:146 -msgid "Error 404" -msgstr "404-es hiba" - -#: templates/shop/breadcrumb.php:192 -msgid "Posts tagged “" -msgstr "Címkézett bejegyzések “" - -#: templates/shop/breadcrumb.php:197 -msgid "Author:" -msgstr "Szerző:" - -#: templates/shop/breadcrumb.php:202 -msgid "Page" -msgstr "Oldal" - -#: templates/single-product/add-to-cart/variable.php:24 -msgid "Choose an option" -msgstr "Válassz egy lehetőséget" - -#: templates/single-product/add-to-cart/variable.php:69 -msgid "Clear selection" -msgstr "Kiválasztás törlése" - -#: templates/single-product/meta.php:24 -msgid "Category:" -msgid_plural "Categories:" -msgstr[0] "Kategória:" -msgstr[1] "Kategóriák:" - -#: templates/single-product/meta.php:29 -msgid "Tag:" -msgid_plural "Tags:" -msgstr[0] "Címke:" -msgstr[1] "Címkék:" - -#: templates/single-product/product-attributes.php:28 -msgid "Weight" -msgstr "Súly" - -#: templates/single-product/product-attributes.php:37 -msgid "Dimensions" -msgstr "Méretek" - -#: templates/single-product/related.php:36 -msgid "Related Products" -msgstr "Kapcsolódó termékek" - -#: templates/single-product/review.php:26 -msgid "Rated %d out of 5" -msgstr "Értékelés: %d / 5" - -#: templates/single-product/review.php:33 -msgid "Your comment is awaiting approval" -msgstr "A hozzászólásod megerősítésre vár" - -#: templates/single-product/review.php:40 -msgid "verified owner" -msgstr "megerősített tulajdonos" - -#: templates/single-product/tabs/description.php:14 -msgid "Product Description" -msgstr "Termékleírás" - -#: templates/single-product/up-sells.php:39 -msgid "You may also like…" -msgstr "Érdekelhetnek még…" - -#: templates/single-product-reviews.php:30 -msgid "%s review for %s" -msgid_plural "%s reviews for %s" -msgstr[0] "%s értékelés a termékre: %s" -msgstr[1] "%s értékelés a termékre: %s" - -#: templates/single-product-reviews.php:36 -#: templates/single-product-reviews.php:42 -msgid "Reviews" -msgstr "Vélemények" - -#: templates/single-product-reviews.php:58 -msgid " Previous" -msgstr " Előző" - -#: templates/single-product-reviews.php:59 -msgid "Next " -msgstr "Következő " - -#: templates/single-product-reviews.php:63 -msgid "Add Your Review" -msgstr "Mondd el a véleményed" - -#: templates/single-product-reviews.php:63 -msgid "Add Review" -msgstr "Vélemény hozzáadása" - -#: templates/single-product-reviews.php:65 -msgid "Add a review" -msgstr "Mondd el a véleményed" - -#: templates/single-product-reviews.php:69 -msgid "Be the first to review" -msgstr "Mondd el a véleményed elsőként:" - -#: templates/single-product-reviews.php:71 -msgid "" -"There are no reviews yet, would you like to submit yours?" -msgstr "" -"Még nincs egyetlen értékelés sem, szeretnéd te elsőként értékelni?" - -#: templates/single-product-reviews.php:89 -msgid "Submit Review" -msgstr "Vélemény elküldése" - -#: templates/single-product-reviews.php:96 -msgid "Rating" -msgstr "Értékelés" - -#: templates/single-product-reviews.php:97 -msgid "Rate…" -msgstr "Értékelés…" - -#: templates/single-product-reviews.php:98 -msgid "Perfect" -msgstr "Tökéletes" - -#: templates/single-product-reviews.php:99 -msgid "Good" -msgstr "Jó" - -#: templates/single-product-reviews.php:100 -msgid "Average" -msgstr "Átlagos" - -#: templates/single-product-reviews.php:101 -msgid "Not that bad" -msgstr "Nem olyan rossz" - -#: templates/single-product-reviews.php:102 -msgid "Very Poor" -msgstr "Nagyon rossz" - -#: templates/single-product-reviews.php:107 -msgid "Your Review" -msgstr "Véleményed" - -#: woocommerce-ajax.php:119 -msgid "Sorry, your session has expired." -msgstr "Sajnáljuk, a munkamenet lejárt." - -#: woocommerce-ajax.php:119 -msgid "Return to homepage →" -msgstr "Vissza a főoldalra →" - -#: woocommerce-ajax.php:256 woocommerce-ajax.php:290 woocommerce-ajax.php:313 -msgid "You do not have sufficient permissions to access this page." -msgstr "Nincs megfelelő jogosultságod az oldal megtekintéséhez." - -#: woocommerce-ajax.php:258 woocommerce-ajax.php:291 woocommerce-ajax.php:314 -msgid "You have taken too long. Please go back and retry." -msgstr "Túl sokáig gondolkoztál. Kérjük lépj vissza és próbáld újra." - -#: woocommerce-ajax.php:550 -msgid "Same as parent" -msgstr "Szülővel megegyezik" - -#: woocommerce-ajax.php:551 -msgid "Standard" -msgstr "Standard" - -#: woocommerce-ajax.php:1100 -msgid "" -"No products had their stock reduced - they may not have stock management " -"enabled." -msgstr "" -"Egy termék készlete sem csökkent - lehet hogy nincs engedélyezve a " -"készletkezelés." - -#: woocommerce-ajax.php:1144 woocommerce-ajax.php:1145 -msgid "Item #%s stock increased from %s to %s." -msgstr "#%s termék készlete megemelve: %s volt, majd %s lett." - -#: woocommerce-ajax.php:1152 -msgid "" -"No products had their stock increased - they may not have stock management " -"enabled." -msgstr "" -"Egy termék készlete sem növekedett - lehet hogy nincs engedélyezve a " -"készletkezelés." - -#: woocommerce-ajax.php:1173 -msgid "Value" -msgstr "Érték" - -#: woocommerce-ajax.php:1487 -msgid "Delete note" -msgstr "Megjegyzés törlése" - -#: woocommerce-core-functions.php:275 -msgid "%s – %s%s" -msgstr "%s – %s%s" - -#: woocommerce-core-functions.php:698 -msgid "Australian Dollars" -msgstr "ausztrál dollár" - -#: woocommerce-core-functions.php:699 -msgid "Brazilian Real" -msgstr "brazíliai real" - -#: woocommerce-core-functions.php:700 -msgid "Canadian Dollars" -msgstr "kanadai dollár" - -#: woocommerce-core-functions.php:701 -msgid "Chinese Yuan" -msgstr "kínai jüan" - -#: woocommerce-core-functions.php:702 -msgid "Czech Koruna" -msgstr "cseh korona" - -#: woocommerce-core-functions.php:703 -msgid "Danish Krone" -msgstr "dán korona" - -#: woocommerce-core-functions.php:704 -msgid "Euros" -msgstr "euró" - -#: woocommerce-core-functions.php:705 -msgid "Hong Kong Dollar" -msgstr "hongkongi dollár" - -#: woocommerce-core-functions.php:706 -msgid "Hungarian Forint" -msgstr "magyar forint" - -#: woocommerce-core-functions.php:707 -msgid "Indonesia Rupiah" -msgstr "indonéz rúpia" - -#: woocommerce-core-functions.php:708 -msgid "Indian Rupee" -msgstr "indiai rúpia" - -#: woocommerce-core-functions.php:709 -msgid "Israeli Shekel" -msgstr "izraeli sékel" - -#: woocommerce-core-functions.php:710 -msgid "Japanese Yen" -msgstr "japán yen" - -#: woocommerce-core-functions.php:711 -msgid "South Korean Won" -msgstr "dél-koreai von" - -#: woocommerce-core-functions.php:712 -msgid "Malaysian Ringgits" -msgstr "maláj ringgit" - -#: woocommerce-core-functions.php:713 -msgid "Mexican Peso" -msgstr "mexikói peso" - -#: woocommerce-core-functions.php:714 -msgid "Norwegian Krone" -msgstr "norvég korona" - -#: woocommerce-core-functions.php:715 -msgid "New Zealand Dollar" -msgstr "új-zélandi dollár" - -#: woocommerce-core-functions.php:716 -msgid "Philippine Pesos" -msgstr "fülöp-szigeteki peso" - -#: woocommerce-core-functions.php:717 -msgid "Polish Zloty" -msgstr "lengyel zloty" - -#: woocommerce-core-functions.php:718 -msgid "Pounds Sterling" -msgstr "font sterling" - -#: woocommerce-core-functions.php:719 -msgid "Romanian Leu" -msgstr "román lej" - -#: woocommerce-core-functions.php:720 -msgid "Russian Ruble" -msgstr "orosz rubel" - -#: woocommerce-core-functions.php:721 -msgid "Singapore Dollar" -msgstr "szingapúri dollár" - -#: woocommerce-core-functions.php:722 -msgid "South African rand" -msgstr "dél-afrikai rand" - -#: woocommerce-core-functions.php:723 -msgid "Swedish Krona" -msgstr "svéd korona" - -#: woocommerce-core-functions.php:724 -msgid "Swiss Franc" -msgstr "svájci frank" - -#: woocommerce-core-functions.php:725 -msgid "Taiwan New Dollars" -msgstr "tajvani új dollár" - -#: woocommerce-core-functions.php:726 -msgid "Thai Baht" -msgstr "thai bát" - -#: woocommerce-core-functions.php:727 -msgid "Turkish Lira" -msgstr "török líra" - -#: woocommerce-core-functions.php:728 -msgid "US Dollars" -msgstr "USA-dollár" - -#: woocommerce-core-functions.php:1219 woocommerce-core-functions.php:1245 -msgid "Download Permissions Granted" -msgstr "Letöltési jogok engedélyezve" - -#: woocommerce-core-functions.php:1369 -msgctxt "slug" -msgid "uncategorized" -msgstr "nem-kategorizalt" - -#: woocommerce-core-functions.php:1562 -msgid "Select a category" -msgstr "Válassz egy kategóriát" - -#: woocommerce-core-functions.php:1566 -msgid "Uncategorized" -msgstr "Nem kategorizált" - -#: woocommerce-core-functions.php:1938 -msgid "Customer" -msgstr "Vásárló" - -#: woocommerce-core-functions.php:1945 -msgid "Shop Manager" -msgstr "Üzlet kezelő" - -#: woocommerce-core-functions.php:2502 -msgid "Unpaid order cancelled - time limit reached." -msgstr "Ki nem fizetett rendelés visszamondva - időkorlát elérve." - -#: woocommerce-functions.php:226 woocommerce-functions.php:271 -msgid "Cart updated." -msgstr "Kosár frissítve." - -#: woocommerce-functions.php:257 -msgid "You can only have 1 %s in your cart." -msgstr "Csak 1 %s lehet a kosárban." - -#: woocommerce-functions.php:315 woocommerce-functions.php:373 -msgid "Please choose product options…" -msgstr "Kérlek válassz termék opciókat…" - -#: woocommerce-functions.php:406 -msgid "" -"Please choose the quantity of items you wish to add to your cart…" -msgstr "" -"Kérlek válaszd ki a kosárba helyezni kívánt termékek mennyiségét…" - -#: woocommerce-functions.php:413 -msgid "Please choose a product to add to your cart…" -msgstr "Kérlek válassz egy terméket, amit a kosárba szeretnél tenni…" - -#: woocommerce-functions.php:482 -msgid "Added "%s" to your cart." -msgstr ""%s" hozzáadva a kosaradhoz." - -#: woocommerce-functions.php:482 -msgid "" and "" -msgstr "" és "" - -#: woocommerce-functions.php:485 -msgid ""%s" was successfully added to your cart." -msgstr ""%s" sikeresen hozzáadva a kosaradhoz." - -#: woocommerce-functions.php:493 -msgid "Continue Shopping →" -msgstr "Vásárlás folytatása →" - -#: woocommerce-functions.php:664 woocommerce-functions.php:666 -#: woocommerce-functions.php:674 -msgid "Error" -msgstr "Hiba" - -#: woocommerce-functions.php:664 -msgid "Username is required." -msgstr "A felhasználónév kötelező." - -#: woocommerce-functions.php:666 woocommerce-functions.php:758 -msgid "Password is required." -msgstr "A jelszó kötelező." - -#: woocommerce-functions.php:674 -msgid "A user could not be found with this email address." -msgstr "Nem található felhasználó ezzel az e-mail címmel." - -#: woocommerce-functions.php:732 -msgid "Please enter a username." -msgstr "Kérlek írd be a felhasználóneved." - -#: woocommerce-functions.php:734 -msgid "" -"This username is invalid because it uses illegal characters. Please enter a " -"valid username." -msgstr "" -"Ez a felhasználónév érvénytelen, mert nem megengedett karaktereket " -"tartalmaz. Kérlek írj be egy érvényes felhasználónevet." - -#: woocommerce-functions.php:737 -msgid "This username is already registered, please choose another one." -msgstr "Ez a felhasználónév már regisztrálva van, kérlek válassz másikat." - -#: woocommerce-functions.php:749 -msgid "Please type your e-mail address." -msgstr "Kérlek írd be az e-mail címed." - -#: woocommerce-functions.php:751 -msgid "The email address isn’t correct." -msgstr "Az e-mail cím érvénytelen." - -#: woocommerce-functions.php:754 -msgid "This email is already registered, please choose another one." -msgstr "Ez az e-mail cím már regisztrálva van, kérlek válassz másikat." - -#: woocommerce-functions.php:759 -msgid "Re-enter your password." -msgstr "Ismételt meg a jelszavad." - -#: woocommerce-functions.php:764 -msgid "Anti-spam field was filled in." -msgstr "Az anti-spam mező ki lett töltve." - -#: woocommerce-functions.php:872 -msgid "The cart has been filled with the items from your previous order." -msgstr "A kosárt feltöltöttük a korábbi rendelésedben szereplő termékekkel." - -#: woocommerce-functions.php:898 -msgid "Order cancelled by customer." -msgstr "Rendelés visszamondva a vásárló által." - -#: woocommerce-functions.php:901 -msgid "Your order was cancelled." -msgstr "A rendelésed visszamondva." - -#: woocommerce-functions.php:907 -msgid "" -"Your order is no longer pending and could not be cancelled. Please contact " -"us if you need assistance." -msgstr "" -"A rendelés már nincs függő állapotban, ezért nem visszamondható. Kérjük lépj " -"kapcsolatba velünk, ha segítségre van szükséged." - -#: woocommerce-functions.php:942 -msgid "Invalid email address." -msgstr "Érvénytelen e-mail cím." - -#: woocommerce-functions.php:942 woocommerce-functions.php:965 -#: woocommerce-functions.php:985 woocommerce-functions.php:991 -#: woocommerce-functions.php:995 woocommerce-functions.php:998 -#: woocommerce-functions.php:1028 woocommerce-functions.php:1160 -msgid "Go to homepage →" -msgstr "Vissza a főoldalra →" - -#: woocommerce-functions.php:965 -msgid "Invalid download." -msgstr "Érvénytelen letöltés." - -#: woocommerce-functions.php:977 -msgid "You must be logged in to download files." -msgstr "A fájlok letöltéséhez be kell jelentkezned." - -#: woocommerce-functions.php:977 -msgid "Login →" -msgstr "Bejelentkezés →" - -#: woocommerce-functions.php:980 -msgid "This is not your download link." -msgstr "Ez nem a te letöltési linked." - -#: woocommerce-functions.php:985 -msgid "Product no longer exists." -msgstr "A termék már nem létezik." - -#: woocommerce-functions.php:995 -msgid "Sorry, you have reached your download limit for this file" -msgstr "Sajnáljuk, elérted a letöltési korlátot ehhez a fájlhoz" - -#: woocommerce-functions.php:998 -msgid "Sorry, this download has expired" -msgstr "Sajnáljuk, ez a letöltés lejárt" - -#: woocommerce-functions.php:1028 -msgid "No file defined" -msgstr "Nincs fájl megadva" - -#: woocommerce-functions.php:1160 -msgid "File not found" -msgstr "Fájl nem található" - -#: woocommerce-functions.php:1276 -msgid "New products" -msgstr "Új termékek" - -#: woocommerce-functions.php:1284 -msgid "New products added to %s" -msgstr "Új termékek hozzáadva: %s" - -#: woocommerce-functions.php:1292 -msgid "New products tagged %s" -msgstr "Új termékek %s címkével" - -#: woocommerce-functions.php:1330 -msgid "You have taken too long. Please go back and refresh the page." -msgstr "Túl sokat időztél. Kérjük lépj vissza és frissítsd az oldalt." - -#: woocommerce-functions.php:1333 -msgid "Please rate the product." -msgstr "Kérjük értékeld a terméket." - -#: woocommerce-functions.php:1641 -msgid "Password changed successfully." -msgstr "Jelszó sikeresen megváltoztatva." - -#: woocommerce-functions.php:1717 -msgid "Address changed successfully." -msgstr "Cím sikeresen megváltoztatva." - -#: woocommerce-template.php:200 -msgid "" -"This is a demo store for testing purposes — no orders shall be " -"fulfilled." -msgstr "" -"Ez egy demó áruház tesztelési célokból — a rendelések nem kerülnek " -"teljesítésre." - -#: woocommerce-template.php:219 -msgid "Search Results: “%s”" -msgstr "Keresési eredmények: “%s”" - -#: woocommerce-template.php:222 -msgid " – Page %s" -msgstr " – %s. oldal" - -#: woocommerce-template.php:767 -msgid "Reviews (%d)" -msgstr "Vélemények (%d)" - -#: woocommerce-template.php:993 -msgctxt "breadcrumb" -msgid "Home" -msgstr "Főoldal" - -#: woocommerce-template.php:1292 woocommerce.php:1209 -msgid "required" -msgstr "kötelező" - -#: woocommerce-template.php:1341 -msgid "Update country" -msgstr "Ország frissítése" - -#: woocommerce-template.php:1496 -msgid "Search for:" -msgstr "Keresés a következőre:" - -#: woocommerce-template.php:1497 -msgid "Search for products" -msgstr "Termékek keresése" - -#: woocommerce-template.php:1498 woocommerce.php:947 -msgid "Search" -msgstr "Keresés" - -#: woocommerce.php:171 -msgid "Docs" -msgstr "Dokumentáció" - -#: woocommerce.php:172 -msgid "Premium Support" -msgstr "Prémium támogatás" - -#: woocommerce.php:786 -msgctxt "slug" -msgid "product-category" -msgstr "termekkategoria" - -#: woocommerce.php:787 -msgctxt "slug" -msgid "product-tag" -msgstr "termekcimke" - -#: woocommerce.php:789 -msgctxt "slug" -msgid "product" -msgstr "termek" - -#: woocommerce.php:824 -msgid "Product Category" -msgstr "Termékkategória" - -#: woocommerce.php:825 -msgctxt "Admin menu name" -msgid "Categories" -msgstr "Kategóriák" - -#: woocommerce.php:826 -msgid "Search Product Categories" -msgstr "Termékkategóriák keresése" - -#: woocommerce.php:827 -msgid "All Product Categories" -msgstr "Összes termékkategória" - -#: woocommerce.php:828 -msgid "Parent Product Category" -msgstr "Szülő termékkategória" - -#: woocommerce.php:829 -msgid "Parent Product Category:" -msgstr "Szülő termékkategória:" - -#: woocommerce.php:830 -msgid "Edit Product Category" -msgstr "Termékkategória szerkesztése" - -#: woocommerce.php:831 -msgid "Update Product Category" -msgstr "Termékkategória frissítése" - -#: woocommerce.php:832 -msgid "Add New Product Category" -msgstr "Új termékkategória hozzáadása" - -#: woocommerce.php:833 -msgid "New Product Category Name" -msgstr "Új termékkategória neve" - -#: woocommerce.php:860 -msgid "Product Tag" -msgstr "Termékcímke" - -#: woocommerce.php:861 -msgctxt "Admin menu name" -msgid "Tags" -msgstr "Címkék" - -#: woocommerce.php:862 -msgid "Search Product Tags" -msgstr "Termékcímkék keresése" - -#: woocommerce.php:863 -msgid "All Product Tags" -msgstr "Összes termékcímke" - -#: woocommerce.php:864 -msgid "Parent Product Tag" -msgstr "Szülő termékcímke" - -#: woocommerce.php:865 -msgid "Parent Product Tag:" -msgstr "Szülő termékcímke:" - -#: woocommerce.php:866 -msgid "Edit Product Tag" -msgstr "Termékcímke szerkesztése" - -#: woocommerce.php:867 -msgid "Update Product Tag" -msgstr "Termékcímke frissítése" - -#: woocommerce.php:868 -msgid "Add New Product Tag" -msgstr "Új termékcímke hozzáadása" - -#: woocommerce.php:869 -msgid "New Product Tag Name" -msgstr "Új termékcímke neve" - -#: woocommerce.php:888 woocommerce.php:890 -msgid "Shipping Classes" -msgstr "Szállítási osztályok" - -#: woocommerce.php:892 -msgctxt "Admin menu name" -msgid "Shipping Classes" -msgstr "Szállítási osztályok" - -#: woocommerce.php:893 -msgid "Search Shipping Classes" -msgstr "Szállítási osztályok keresése" - -#: woocommerce.php:894 -msgid "All Shipping Classes" -msgstr "Összes szállítási osztály" - -#: woocommerce.php:895 -msgid "Parent Shipping Class" -msgstr "Szülő szállítási osztály" - -#: woocommerce.php:896 -msgid "Parent Shipping Class:" -msgstr "Szülő szállítási osztály:" - -#: woocommerce.php:897 -msgid "Edit Shipping Class" -msgstr "Szállítási osztály szerkesztése" - -#: woocommerce.php:898 -msgid "Update Shipping Class" -msgstr "Szállítási osztály frissítése" - -#: woocommerce.php:899 -msgid "Add New Shipping Class" -msgstr "Új szállítási osztály hozzáadása" - -#: woocommerce.php:900 -msgid "New Shipping Class Name" -msgstr "Új szállítási osztály neve" - -#: woocommerce.php:948 -msgid "All" -msgstr "Összes" - -#: woocommerce.php:949 woocommerce.php:950 -msgid "Parent" -msgstr "Szülő" - -#: woocommerce.php:952 -msgid "Update" -msgstr "Frissítés" - -#: woocommerce.php:953 -msgid "Add New" -msgstr "Új hozzáadása" - -#: woocommerce.php:954 -msgid "New" -msgstr "Új" - -#: woocommerce.php:984 -msgctxt "Admin menu name" -msgid "Products" -msgstr "Termékek" - -#: woocommerce.php:985 -msgid "Add Product" -msgstr "Termék hozzáadása" - -#: woocommerce.php:986 -msgid "Add New Product" -msgstr "Új termék hozzáadása" - -#: woocommerce.php:988 -msgid "Edit Product" -msgstr "Termék szerkesztése" - -#: woocommerce.php:989 -msgid "New Product" -msgstr "Új termék" - -#: woocommerce.php:990 woocommerce.php:991 -msgid "View Product" -msgstr "Termék megtekintése" - -#: woocommerce.php:992 -msgid "Search Products" -msgstr "Termékek keresése" - -#: woocommerce.php:993 -msgid "No Products found" -msgstr "Nem találhatóak termékek" - -#: woocommerce.php:994 -msgid "No Products found in trash" -msgstr "Nem találhatóak termékek a lomtárban" - -#: woocommerce.php:995 -msgid "Parent Product" -msgstr "Szülő termék" - -#: woocommerce.php:997 -msgid "This is where you can add new products to your store." -msgstr "Itt adhatsz hozzá új termékeket az üzlethez." - -#: woocommerce.php:1020 -msgid "Variations" -msgstr "Variációk" - -#: woocommerce.php:1021 -msgid "Variation" -msgstr "Variáció" - -#: woocommerce.php:1022 -msgid "Add Variation" -msgstr "Variáció hozzáadása" - -#: woocommerce.php:1023 -msgid "Add New Variation" -msgstr "Új variáció hozzáadása" - -#: woocommerce.php:1025 -msgid "Edit Variation" -msgstr "Variáció szerkesztése" - -#: woocommerce.php:1026 -msgid "New Variation" -msgstr "Új variáció" - -#: woocommerce.php:1027 woocommerce.php:1028 -msgid "View Variation" -msgstr "Variáció megtekintése" - -#: woocommerce.php:1029 -msgid "Search Variations" -msgstr "Variációk keresése" - -#: woocommerce.php:1030 -msgid "No Variations found" -msgstr "Nem találhatóak variációk" - -#: woocommerce.php:1031 -msgid "No Variations found in trash" -msgstr "Nem találhatóak variációk a lomtárban" - -#: woocommerce.php:1032 -msgid "Parent Variation" -msgstr "Szülő variáció" - -#: woocommerce.php:1049 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Rendelések" - -#: woocommerce.php:1058 -msgid "Orders" -msgstr "Rendelések" - -#: woocommerce.php:1060 -msgid "Add Order" -msgstr "Rendelés hozzáadása" - -#: woocommerce.php:1061 -msgid "Add New Order" -msgstr "Új rendelés hozzáadása" - -#: woocommerce.php:1063 -msgid "Edit Order" -msgstr "Rendelés szerkesztése" - -#: woocommerce.php:1064 -msgid "New Order" -msgstr "Új rendelés" - -#: woocommerce.php:1067 -msgid "Search Orders" -msgstr "Rendelések keresése" - -#: woocommerce.php:1068 -msgid "No Orders found" -msgstr "Nem találhatóak rendelések" - -#: woocommerce.php:1069 -msgid "No Orders found in trash" -msgstr "Nem találhatóak rendelések a lomtárban" - -#: woocommerce.php:1070 -msgid "Parent Orders" -msgstr "Szülő rendelések" - -#: woocommerce.php:1073 -msgid "This is where store orders are stored." -msgstr "Itt kerülnek tárolásra az üzletben történő rendelések." - -#: woocommerce.php:1095 -msgid "Coupons" -msgstr "Kuponok" - -#: woocommerce.php:1097 -msgctxt "Admin menu name" -msgid "Coupons" -msgstr "Kuponok" - -#: woocommerce.php:1098 -msgid "Add Coupon" -msgstr "Kupon hozzáadása" - -#: woocommerce.php:1099 -msgid "Add New Coupon" -msgstr "Új kupon hozzáadása" - -#: woocommerce.php:1101 -msgid "Edit Coupon" -msgstr "Kupon szerkesztése" - -#: woocommerce.php:1102 -msgid "New Coupon" -msgstr "Új kupon" - -#: woocommerce.php:1103 -msgid "View Coupons" -msgstr "Kuponok megtekintése" - -#: woocommerce.php:1104 -msgid "View Coupon" -msgstr "Kupon megtekintése" - -#: woocommerce.php:1105 -msgid "Search Coupons" -msgstr "Kuponok keresése" - -#: woocommerce.php:1106 -msgid "No Coupons found" -msgstr "Nem találhatóak kuponok" - -#: woocommerce.php:1107 -msgid "No Coupons found in trash" -msgstr "Nem találhatóak kuponok a lomtárban" - -#: woocommerce.php:1108 -msgid "Parent Coupon" -msgstr "Szülő kupon" - -#: woocommerce.php:1110 -msgid "" -"This is where you can add new coupons that customers can use in your store." -msgstr "" -"Itt hozhatsz létre új kuponokat, amiket a vásárlók felhasználhatnak az " -"üzletben." - -#: woocommerce.php:1206 -msgid "Select an option…" -msgstr "Válassz egy opciót…" - -#: woocommerce.php:1207 -msgid "Please select a rating" -msgstr "Kérlek válassz egy értékelést" - -#: woocommerce.php:1208 -msgid "" -"Sorry, no products matched your selection. Please choose a different " -"combination." -msgstr "" -"Sajnáljuk, egy termék sem felelt meg a feltételeknek. Kérjük válassz egy " -"másik kombinációt." - -#: woocommerce.php:1691 -msgid "Cart % Discount" -msgstr "Kosár % kedvezmény" - -#: woocommerce.php:1692 -msgid "Product Discount" -msgstr "Termék kedvezmény" - -#: woocommerce.php:1693 -msgid "Product % Discount" -msgstr "Termék % kedvezmény" - -#: woocommerce.php:1758 -msgid "Action failed. Please refresh the page and retry." -msgstr "A művelet sikertelen. Kérlek frissítsd az oldalt és próbáld újra." - -#~ msgid "Samoa" -#~ msgstr "Szamoa" - -#~ msgid "Subtotal:" -#~ msgstr "Részösszeg:" - -#~ msgid "Flat rate" -#~ msgstr "Átalánydíj" - -#~ msgid "Flat Rates" -#~ msgstr "Átalánydíjak" - -#~ msgid "Calculation Type" -#~ msgstr "Kalkuláció típusa" - -#~ msgid "Default Cost" -#~ msgstr "Alapértelmezett költség" - -#~ msgid "Default Handling Fee" -#~ msgstr "Alapértelmezett kezelési költség" - -#~ msgid "Minimum Fee" -#~ msgstr "Minimális költség" - -#~ msgid "Shipping Options" -#~ msgstr "Szállítási beállítások" - -#~ msgid "Display a login area and \"My Account\" links in the sidebar." -#~ msgstr "" -#~ "Bejelentkezési felület és \"Fiókom\" linkek megjelenítése az oldalsávban." - -#~ msgid "WooCommerce Login" -#~ msgstr "WooCommerce bejelentkezés" - -#~ msgid "Customer Login" -#~ msgstr "Vásárlói bejelentkezés" - -#~ msgid "Welcome %s" -#~ msgstr "Üdvözlünk %s" - -#~ msgid "My account" -#~ msgstr "Fiókom" - -#~ msgid "Logout" -#~ msgstr "Kijelentkezés" - -#~ msgid "Lost password?" -#~ msgstr "Elfelejtetted a jelszavadat?" - -#~ msgid "Logged out title:" -#~ msgstr "Kijelentkezett cím:" - -#~ msgid "Logged in title:" -#~ msgstr "Bejelentkezett cím:" - -#~ msgid "Please enter your username and password to login." -#~ msgstr "Kérjük írd be a felhasználóneved és jelszavad a bejelentkezéshez." diff --git a/i18n/languages/woocommerce-id_ID.mo b/i18n/languages/woocommerce-id_ID.mo deleted file mode 100644 index d900eeb7445..00000000000 Binary files a/i18n/languages/woocommerce-id_ID.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-id_ID.po b/i18n/languages/woocommerce-id_ID.po deleted file mode 100644 index e26e8d18995..00000000000 --- a/i18n/languages/woocommerce-id_ID.po +++ /dev/null @@ -1,13736 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce v2.0.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2013-03-04 09:33:23+0000\n" -"Last-Translator: admin \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: CSL v1.x\n" -"X-Poedit-Language: Indonesian\n" -"X-Poedit-Country: INDONESIA\n" -"X-Poedit-SourceCharset: utf-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n" -"X-Poedit-Basepath: ../\n" -"X-Poedit-Bookmarks: \n" -"X-Poedit-SearchPath-0: .\n" -"X-Textdomain-Support: yes" - -#: admin/includes/duplicate_product.php:23 -#@ woocommerce -msgid "No product to duplicate has been supplied!" -msgstr "Tidak ada produk yang telah disediakan untuk diduplikasi!" - -#: admin/includes/duplicate_product.php:43 -#@ woocommerce -msgid "Product creation failed, could not find original product:" -msgstr "Pembuatan produk gagal, tidak bisa menemukan produk asli:" - -#: admin/includes/duplicate_product.php:89 -#@ woocommerce -msgid "(Copy)" -msgstr "(Copy)" - -#: admin/post-types/product.php:31 -#@ woocommerce -msgid "Make a duplicate from this product" -msgstr "Membuat duplikat dari produk ini" - -#: admin/post-types/product.php:32 -#@ woocommerce -msgid "Duplicate" -msgstr "Duplikat" - -#: admin/post-types/product.php:61 -#@ woocommerce -msgid "Copy to a new draft" -msgstr "Salin ke sebuah draft baru" - -#: admin/post-types/product.php:86 -#: admin/woocommerce-admin-taxonomies.php:297 -#@ woocommerce -msgid "Image" -msgstr "Gambar" - -#: admin/post-types/product.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:372 -#: admin/post-types/writepanels/writepanel-product_data.php:451 -#: admin/woocommerce-admin-attributes.php:232 -#: admin/woocommerce-admin-attributes.php:268 -#: admin/woocommerce-admin-attributes.php:306 -#: admin/woocommerce-admin-attributes.php:329 -#: admin/woocommerce-admin-attributes.php:373 -#: admin/woocommerce-admin-attributes.php:398 -#: admin/woocommerce-admin-init.php:450 -#: classes/widgets/class-wc-widget-product-categories.php:191 -#: templates/single-product-reviews.php:99 -#: woocommerce-ajax.php:1244 -#@ woocommerce -msgid "Name" -msgstr "Nama" - -#: admin/post-types/product.php:91 -#: admin/post-types/product.php:557 -#: admin/post-types/writepanels/variation-admin-html.php:46 -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#: admin/woocommerce-admin-reports.php:2083 -#: admin/woocommerce-admin-reports.php:2119 -#@ woocommerce -msgid "SKU" -msgstr "SKU" - -#: admin/post-types/product.php:94 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:83 -#: admin/woocommerce-admin-content.php:63 -#: admin/woocommerce-admin-reports.php:99 -#@ woocommerce -msgid "Stock" -msgstr "Stok" - -#: admin/post-types/product.php:96 -#: admin/post-types/product.php:568 -#: admin/post-types/product.php:787 -#: admin/woocommerce-admin-functions.php:196 -#: templates/cart/cart.php:29 -#: templates/emails/admin-new-order.php:24 -#: templates/emails/customer-completed-order.php:25 -#: templates/emails/customer-invoice.php:29 -#: templates/emails/customer-note.php:29 -#: templates/emails/customer-processing-order.php:25 -#@ woocommerce -msgid "Price" -msgstr "Harga" - -#: admin/post-types/product.php:98 -#@ woocommerce -msgid "Categories" -msgstr "Kategori" - -#: admin/post-types/product.php:99 -#@ woocommerce -msgid "Tags" -msgstr "Tags" - -#: admin/post-types/product.php:100 -#: admin/post-types/product.php:632 -#: admin/post-types/product.php:904 -#: admin/post-types/writepanels/writepanel-product_data.php:1040 -#: admin/woocommerce-admin-init.php:463 -#@ woocommerce -msgid "Featured" -msgstr "Fitur" - -#: admin/post-types/product.php:101 -#: admin/woocommerce-admin-attributes.php:250 -#: admin/woocommerce-admin-attributes.php:308 -#: admin/woocommerce-admin-attributes.php:385 -#@ woocommerce -msgid "Type" -msgstr "Jenis" - -#: admin/post-types/product.php:102 -#: admin/post-types/shop_order.php:50 -#: templates/myaccount/my-orders.php:33 -#@ woocommerce -msgid "Date" -msgstr "Tanggal" - -#: admin/post-types/product.php:152 -#@ default -msgid "Edit this item inline" -msgstr "Mengedit inline barang ini" - -#: admin/post-types/product.php:152 -#@ default -msgid "Quick Edit" -msgstr "Edit Cepat" - -#: admin/post-types/product.php:156 -#: admin/post-types/shop_coupon.php:65 -#@ default -msgid "Restore this item from the Trash" -msgstr "Kembalikan item ini dari tempat sampah" - -#: admin/post-types/product.php:156 -#: admin/post-types/shop_coupon.php:65 -#@ default -msgid "Restore" -msgstr "Mengembalikan" - -#: admin/post-types/product.php:158 -#: admin/post-types/shop_coupon.php:67 -#@ default -msgid "Move this item to the Trash" -msgstr "Pindahkan item ini ke tempat sampah" - -#: admin/post-types/product.php:158 -#: admin/post-types/shop_coupon.php:67 -#@ default -msgid "Trash" -msgstr "Sampah" - -#: admin/post-types/product.php:160 -#: admin/post-types/shop_coupon.php:69 -#@ default -msgid "Delete this item permanently" -msgstr "Menghapus item ini secara permanen" - -#: admin/post-types/product.php:160 -#: admin/post-types/shop_coupon.php:69 -#: admin/post-types/writepanels/writepanel-order_data.php:463 -#@ default -#@ woocommerce -msgid "Delete Permanently" -msgstr "Hapus Permanen" - -#: admin/post-types/product.php:165 -#, php-format -#@ default -msgid "Preview “%s”" -msgstr "Peninjauan “%s”" - -#: admin/post-types/product.php:165 -#@ default -msgid "Preview" -msgstr "Peninjauan" - -#: admin/post-types/product.php:167 -#, php-format -#@ default -msgid "View “%s”" -msgstr "Melihat “%s”" - -#: admin/post-types/product.php:167 -#: admin/post-types/shop_order.php:171 -#: templates/myaccount/my-orders.php:82 -#@ default -#@ woocommerce -msgid "View" -msgstr "Melihat" - -#: admin/post-types/product.php:214 -#@ woocommerce -msgid "Grouped" -msgstr "Dikelompokkan" - -#: admin/post-types/product.php:216 -#@ woocommerce -msgid "External/Affiliate" -msgstr "Eksternal / Afiliasi" - -#: admin/post-types/product.php:220 -#: admin/post-types/product.php:407 -#: admin/post-types/writepanels/variation-admin-html.php:168 -#: admin/post-types/writepanels/writepanel-product_data.php:52 -#@ woocommerce -msgid "Virtual" -msgstr "Virtual" - -#: admin/post-types/product.php:222 -#: admin/post-types/product.php:403 -#: admin/post-types/writepanels/variation-admin-html.php:166 -#: admin/post-types/writepanels/writepanel-product_data.php:58 -#@ woocommerce -msgid "Downloadable" -msgstr "Dapat diunduh" - -#: admin/post-types/product.php:224 -#@ woocommerce -msgid "Simple" -msgstr "Sederhana" - -#: admin/post-types/product.php:228 -#: admin/post-types/product.php:387 -#@ woocommerce -msgid "Variable" -msgstr "Variabel" - -#: admin/post-types/product.php:262 -#: admin/post-types/product.php:641 -#: admin/post-types/product.php:928 -#: admin/post-types/writepanels/writepanel-product_data.php:231 -#: classes/abstracts/abstract-wc-product.php:545 -#: classes/abstracts/abstract-wc-product.php:550 -#: classes/abstracts/abstract-wc-product.php:569 -#@ woocommerce -msgid "In stock" -msgstr "Dalam persediaan" - -#: admin/post-types/product.php:264 -#: admin/post-types/product.php:642 -#: admin/post-types/product.php:929 -#: admin/post-types/writepanels/writepanel-product_data.php:232 -#: admin/woocommerce-admin-reports.php:2103 -#: classes/abstracts/abstract-wc-product.php:572 -#: classes/abstracts/abstract-wc-product.php:582 -#: classes/abstracts/abstract-wc-product.php:586 -#@ woocommerce -msgid "Out of stock" -msgstr "Habis persediaan" - -#: admin/post-types/product.php:373 -#@ woocommerce -msgid "Show all product types" -msgstr "Tampilkan semua jenis produk" - -#: admin/post-types/product.php:381 -#: admin/post-types/writepanels/writepanel-product_data.php:39 -#@ woocommerce -msgid "Grouped product" -msgstr "Produk dikelompokkan" - -#: admin/post-types/product.php:383 -#: admin/post-types/writepanels/writepanel-product_data.php:40 -#@ woocommerce -msgid "External/Affiliate product" -msgstr "Eksternal / Afiliasi produk" - -#: admin/post-types/product.php:385 -#: admin/post-types/writepanels/writepanel-product_data.php:38 -#@ woocommerce -msgid "Simple product" -msgstr "Produk sederhana" - -#: admin/post-types/product.php:399 -#@ woocommerce -msgid "Show all sub-types" -msgstr "Tampilkan semua sub-jenis" - -#: admin/post-types/product.php:520 -#, php-format -#@ woocommerce -msgid "[%s with SKU of %s]" -msgstr "[%s dengan SKU dari %s]" - -#: admin/post-types/product.php:526 -#, php-format -#@ woocommerce -msgid "[%s with ID of %d]" -msgstr "[%s dengan ID dari %d]" - -#: admin/post-types/product.php:552 -#: admin/post-types/product.php:783 -#: admin/post-types/writepanels/writepanels-init.php:46 -#: admin/settings/settings-init.php:518 -#@ woocommerce -msgid "Product Data" -msgstr "Data Produk" - -#: admin/post-types/product.php:570 -#@ woocommerce -msgid "Regular price" -msgstr "Harga Reguler" - -#: admin/post-types/product.php:575 -#: admin/post-types/product.php:811 -#@ woocommerce -msgid "Sale" -msgstr "Obral" - -#: admin/post-types/product.php:577 -#@ woocommerce -msgid "Sale price" -msgstr "Harga obral" - -#: admin/post-types/product.php:588 -#: admin/post-types/product.php:837 -#: admin/post-types/writepanels/variation-admin-html.php:90 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:273 -#: templates/single-product/product-attributes.php:28 -#@ woocommerce -msgid "Weight" -msgstr "Berat" - -#: admin/post-types/product.php:599 -#: admin/post-types/product.php:861 -#@ woocommerce -msgid "L/W/H" -msgstr "P/L/T" - -#: admin/post-types/product.php:601 -#: admin/post-types/product.php:877 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:85 -#: admin/post-types/writepanels/writepanel-product_data.php:286 -#@ woocommerce -msgid "Length" -msgstr "Panjang" - -#: admin/post-types/product.php:602 -#: admin/post-types/product.php:878 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:86 -#: admin/post-types/writepanels/writepanel-product_data.php:287 -#: admin/woocommerce-admin-settings.php:795 -#@ woocommerce -msgid "Width" -msgstr "Lebar" - -#: admin/post-types/product.php:603 -#: admin/post-types/product.php:879 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:87 -#: admin/post-types/writepanels/writepanel-product_data.php:288 -#: admin/woocommerce-admin-settings.php:797 -#@ woocommerce -msgid "Height" -msgstr "Tinggi" - -#: admin/post-types/product.php:613 -#: admin/post-types/product.php:885 -#@ woocommerce -msgid "Visibility" -msgstr "Terlihat" - -#: admin/post-types/product.php:618 -#: admin/post-types/product.php:891 -#@ woocommerce -msgid "Catalog & search" -msgstr "Mencari & katalog" - -#: admin/post-types/product.php:619 -#: admin/post-types/product.php:892 -#: admin/post-types/writepanels/writepanel-product_data.php:1029 -#: admin/woocommerce-admin-content.php:46 -#: admin/woocommerce-admin-settings.php:181 -#@ woocommerce -msgid "Catalog" -msgstr "Katalog" - -#: admin/post-types/product.php:620 -#: admin/post-types/product.php:893 -#: admin/post-types/writepanels/writepanel-product_data.php:1030 -#: woocommerce-template.php:1491 -#: woocommerce.php:913 -#@ woocommerce -msgid "Search" -msgstr "Cari" - -#: admin/post-types/product.php:621 -#: admin/post-types/product.php:894 -#: admin/post-types/writepanels/writepanel-product_data.php:1031 -#@ woocommerce -msgid "Hidden" -msgstr "Tersembunyi" - -#: admin/post-types/product.php:636 -#: admin/post-types/product.php:922 -#@ woocommerce -msgid "In stock?" -msgstr "Dalam persediaan?" - -#: admin/post-types/product.php:657 -#: admin/post-types/product.php:940 -#: admin/post-types/writepanels/writepanel-product_data.php:212 -#@ woocommerce -msgid "Manage stock?" -msgstr "Kelola stok?" - -#: admin/post-types/product.php:661 -#: admin/post-types/product.php:959 -#: admin/post-types/product.php:975 -#: admin/post-types/writepanels/writepanel-product_data.php:219 -#@ woocommerce -msgid "Stock Qty" -msgstr "Jumlah stok" - -#: admin/post-types/product.php:792 -#: admin/post-types/product.php:816 -#: admin/post-types/product.php:842 -#: admin/post-types/product.php:866 -#: admin/post-types/product.php:890 -#: admin/post-types/product.php:909 -#: admin/post-types/product.php:927 -#: admin/post-types/product.php:945 -#: admin/post-types/product.php:964 -#@ woocommerce -msgid "— No Change —" -msgstr "— Tidak ada perubahan —" - -#: admin/post-types/product.php:793 -#: admin/post-types/product.php:817 -#: admin/post-types/product.php:843 -#: admin/post-types/product.php:867 -#: admin/post-types/product.php:965 -#@ woocommerce -msgid "Change to:" -msgstr "Ubah ke:" - -#: admin/post-types/product.php:910 -#: admin/post-types/product.php:946 -#: admin/post-types/shop_order.php:190 -#: admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:260 -#@ woocommerce -msgid "Yes" -msgstr "Ya" - -#: admin/post-types/product.php:911 -#: admin/post-types/product.php:947 -#: admin/post-types/shop_order.php:192 -#: admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:260 -#@ woocommerce -msgid "No" -msgstr "Tidak" - -#: admin/post-types/product.php:1175 -#@ woocommerce -msgid "Sort Products" -msgstr "Urutkan Produk" - -#: admin/post-types/shop_coupon.php:25 -#@ woocommerce -msgid "Code" -msgstr "Kode" - -#: admin/post-types/shop_coupon.php:26 -#@ woocommerce -msgid "Coupon type" -msgstr "Jenis Kupon" - -#: admin/post-types/shop_coupon.php:27 -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -#@ woocommerce -msgid "Coupon amount" -msgstr "Jumlah Kupon" - -#: admin/post-types/shop_coupon.php:29 -#@ woocommerce -msgid "Product IDs" -msgstr "Produk ID" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -#@ woocommerce -msgid "Usage limit" -msgstr "Batas Penggunaan" - -#: admin/post-types/shop_coupon.php:31 -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -#@ woocommerce -msgid "Expiry date" -msgstr "Tanggal kadaluarsa" - -#: admin/post-types/shop_order.php:43 -#: admin/settings/settings-payment-gateways.php:29 -#: admin/settings/settings-shipping-methods.php:31 -#: templates/myaccount/my-orders.php:34 -#@ woocommerce -msgid "Status" -msgstr "Status" - -#: admin/post-types/shop_order.php:44 -#: templates/myaccount/my-orders.php:32 -#: woocommerce.php:1025 -#@ woocommerce -msgid "Order" -msgstr "Pesanan" - -#: admin/post-types/shop_order.php:45 -#@ woocommerce -msgid "Billing" -msgstr "Penagihan" - -#: admin/post-types/shop_order.php:46 -#: admin/post-types/writepanels/writepanel-order_data.php:536 -#: admin/post-types/writepanels/writepanel-product_data.php:81 -#: admin/settings/settings-tax-rates.php:52 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-content.php:49 -#: admin/woocommerce-admin-settings.php:185 -#: templates/cart/totals.php:46 -#: templates/checkout/review-order.php:45 -#@ woocommerce -msgid "Shipping" -msgstr "Pengiriman" - -#: admin/post-types/shop_order.php:47 -#: templates/cart/totals.php:129 -#: templates/checkout/review-order.php:133 -#@ woocommerce -msgid "Order Total" -msgstr "Jumlah Pesanan" - -#: admin/post-types/shop_order.php:48 -#: admin/post-types/writepanels/writepanels-init.php:71 -#: classes/class-wc-checkout.php:89 -#@ woocommerce -msgid "Order Notes" -msgstr "Catatan Pesanan" - -#: admin/post-types/shop_order.php:49 -#@ woocommerce -msgid "Customer Notes" -msgstr "Catatan Pelanggan" - -#: admin/post-types/shop_order.php:51 -#: admin/post-types/writepanels/writepanel-order_data.php:386 -#: admin/post-types/writepanels/writepanel-order_data.php:433 -#@ woocommerce -msgid "Actions" -msgstr "Tindakan" - -#: admin/post-types/shop_order.php:95 -#: admin/post-types/writepanels/writepanel-order_data.php:93 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:113 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:168 -#: woocommerce-ajax.php:1725 -#@ woocommerce -msgid "Guest" -msgstr "Tamu" - -#: admin/post-types/shop_order.php:98 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:313 -#, php-format -#@ woocommerce -msgid "Order %s" -msgstr "Pesanan %s" - -#: admin/post-types/shop_order.php:98 -#@ woocommerce -msgid "made by" -msgstr "dibuat oleh" - -#: admin/post-types/shop_order.php:101 -#: templates/emails/admin-new-order.php:53 -#: templates/emails/customer-completed-order.php:54 -#: templates/emails/customer-note.php:58 -#: templates/emails/customer-processing-order.php:54 -#: templates/emails/plain/admin-new-order.php:41 -#: templates/emails/plain/customer-completed-order.php:41 -#: templates/emails/plain/customer-note.php:49 -#: templates/emails/plain/customer-processing-order.php:41 -#: templates/order/order-details.php:92 -#@ woocommerce -msgid "Email:" -msgstr "Email:" - -#: admin/post-types/shop_order.php:104 -#: templates/emails/admin-new-order.php:56 -#: templates/emails/customer-completed-order.php:57 -#: templates/emails/customer-note.php:61 -#: templates/emails/customer-processing-order.php:57 -#: templates/emails/plain/admin-new-order.php:44 -#: templates/emails/plain/customer-completed-order.php:44 -#: templates/emails/plain/customer-note.php:52 -#: templates/emails/plain/customer-processing-order.php:44 -#@ woocommerce -msgid "Tel:" -msgstr "Tel:" - -#: admin/post-types/shop_order.php:114 -#: admin/post-types/shop_order.php:123 -#@ woocommerce -msgid "Via" -msgstr "Melalui" - -#: admin/post-types/shop_order.php:131 -#@ woocommerce -msgid "Unpublished" -msgstr "Tidak dipublikasikan" - -#: admin/post-types/shop_order.php:133 -#@ woocommerce -msgid "Y/m/d g:i:s A" -msgstr "Y/m/d g:i:s A" - -#: admin/post-types/shop_order.php:139 -#, php-format -#@ woocommerce -msgid "%s ago" -msgstr "%s lalu" - -#: admin/post-types/shop_order.php:141 -#@ woocommerce -msgid "Y/m/d" -msgstr "Y/m/d" - -#: admin/post-types/shop_order.php:158 -#: admin/woocommerce-admin-dashboard.php:176 -#@ woocommerce -msgid "Processing" -msgstr "Pengolahan" - -#: admin/post-types/shop_order.php:165 -#@ woocommerce -msgid "Complete" -msgstr "Selesai" - -#: admin/post-types/shop_coupon.php:149 -#: admin/post-types/shop_order.php:282 -#@ woocommerce -msgid "Show all statuses" -msgstr "Tampilkan semua status" - -#: admin/post-types/shop_order.php:301 -#: admin/post-types/shop_order.php:326 -#@ woocommerce -msgid "Show all customers" -msgstr "Tampilkan semua pelanggan" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:42 -#@ woocommerce -msgid "Discount type" -msgstr "Jenis Diskon" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -#@ woocommerce -msgid "Individual use" -msgstr "Penggunaan Individu" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -#@ woocommerce -msgid "Apply before tax" -msgstr "Pergunakan sebelum pajak" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -#@ woocommerce -msgid "Enable free shipping" -msgstr "Aktifkan pengiriman gratis" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -#@ woocommerce -msgid "Minimum amount" -msgstr "Jumlah Minimum" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -#@ woocommerce -msgid "No minimum" -msgstr "Tidak ada minimal" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -#@ woocommerce -msgid "This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "Kolom ini memungkinkan anda untuk mengatur subtotal minimum yang diperlukan untuk menggunakan kupon." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:74 -#: admin/woocommerce-admin-taxonomies.php:28 -#: admin/woocommerce-admin-taxonomies.php:122 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:256 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:276 -#: woocommerce.php:948 -#@ woocommerce -msgid "Products" -msgstr "Produk" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:75 -#: admin/post-types/writepanels/writepanel-order_data.php:400 -#: admin/post-types/writepanels/writepanel-product_data.php:504 -#: admin/post-types/writepanels/writepanel-product_data.php:521 -#: admin/woocommerce-admin-reports.php:1229 -#@ woocommerce -msgid "Search for a product…" -msgstr "Mencari produk…" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:89 -#@ woocommerce -msgid "Products which need to be in the cart to use this coupon or, for \"Product Discounts\", which products are discounted." -msgstr "Produk yang harus di dalam keranjang untuk menggunakan kupon ini atau, untuk \"Discount Produk\", dimana produk tidak tersedia lagi" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:95 -#@ woocommerce -msgid "Search for a product…" -msgstr "Mencari produk..." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:109 -#@ woocommerce -msgid "Products which must not be in the cart to use this coupon or, for \"Product Discounts\", which products are not discounted." -msgstr "Produk yang tidak boleh di dalam keranjang untuk menggunakan kupon ini atau, untuk \"Discount Produk\", dimana produk masih tersedia" - -#: classes/widgets/class-wc-widget-product-categories.php:57 -#: woocommerce.php:787 -#: woocommerce.php:789 -#@ woocommerce -msgid "Product Categories" -msgstr "Kategori Produk" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:117 -#@ woocommerce -msgid "Any category" -msgstr "Kategori apapun" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:125 -#@ woocommerce -msgid "A product must be in this category for the coupon to remain valid or, for \"Product Discounts\", products in these categories will be discounted." -msgstr "Sebuah produk harus dalam kategori ini supaya kupon tetap valid atau, untuk \"Discount Produk\", produk di kategori ini tidak ada tersedia lagi." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:131 -#@ woocommerce -msgid "No categories" -msgstr "Tidak ada kategori" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:139 -#@ woocommerce -msgid "Product must not be in this category for the coupon to remain valid or, for \"Product Discounts\", products in these categories will not be discounted." -msgstr "Produk tidak harus dalam kategori ini supaya kupon tetap valid atau, untuk \"Discount Product\", produk di kategori ini masih akan tersedia." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -#@ woocommerce -msgid "Any customer" -msgstr "Setiap pelanggan" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -#@ woocommerce -msgid "Comma separate email addresses to restrict this coupon to specific billing and user emails." -msgstr "Alamat email dengan koma terpisah untuk membatasi kupon ini guna penagihan spesifik dan email pengguna." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -#@ woocommerce -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "Penggunaan tak terbatas" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -#@ woocommerce -msgctxt "placeholder" -msgid "Never expire" -msgstr "Tidak pernah kadaluarsa" - -#: admin/post-types/writepanels/writepanel-order_data.php:59 -#: templates/order/order-details.php:16 -#@ woocommerce -msgid "Order Details" -msgstr "Detail pemesanan" - -#: admin/post-types/writepanels/writepanel-order_data.php:76 -#@ woocommerce -msgid "Order status:" -msgstr "Status pemesanan:" - -#: admin/post-types/writepanels/writepanel-order_data.php:86 -#@ woocommerce -msgid "Order Date:" -msgstr "Tanggal pemesanan:" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#@ woocommerce -msgid "h" -msgstr "h" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#: admin/settings/settings-init.php:577 -#@ woocommerce -msgid "m" -msgstr "m" - -#: admin/post-types/writepanels/writepanel-order_data.php:91 -#@ woocommerce -msgid "Customer:" -msgstr "Pelanggan:" - -#: admin/post-types/writepanels/writepanel-order_data.php:131 -#@ woocommerce -msgid "Customer Note:" -msgstr "Catatan Pelanggan:" - -#: admin/post-types/writepanels/writepanel-order_data.php:132 -#@ woocommerce -msgid "Customer's notes about the order" -msgstr "Catatan pelanggan untuk pemesanan ini" - -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#@ woocommerce -msgid "Billing Details" -msgstr "Detail Penagihan" - -#: admin/post-types/product.php:151 -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#: admin/post-types/writepanels/writepanel-order_data.php:387 -#: admin/post-types/writepanels/writepanel-product_data.php:1043 -#: admin/woocommerce-admin-attributes.php:322 -#: templates/myaccount/my-address.php:45 -#: woocommerce.php:917 -#: woocommerce.php:953 -#: woocommerce.php:990 -#: woocommerce.php:1028 -#: woocommerce.php:1066 -#@ default -#@ woocommerce -msgid "Edit" -msgstr "Mengedit" - -#: admin/post-types/writepanels/writepanel-order_data.php:144 -#: admin/post-types/writepanels/writepanel-order_data.php:234 -#: classes/class-wc-countries.php:960 -#@ woocommerce -msgid "First Name" -msgstr "Nama Depan" - -#: admin/post-types/writepanels/writepanel-order_data.php:148 -#: admin/post-types/writepanels/writepanel-order_data.php:238 -#: classes/class-wc-countries.php:965 -#@ woocommerce -msgid "Last Name" -msgstr "Nama Belakang" - -#: admin/post-types/writepanels/writepanel-order_data.php:152 -#: admin/post-types/writepanels/writepanel-order_data.php:242 -#: admin/woocommerce-admin-users.php:155 -#: admin/woocommerce-admin-users.php:204 -#@ woocommerce -msgid "Company" -msgstr "Perusahaan" - -#: admin/post-types/writepanels/writepanel-order_data.php:156 -#: admin/post-types/writepanels/writepanel-order_data.php:246 -#: admin/woocommerce-admin-users.php:159 -#: admin/woocommerce-admin-users.php:208 -#@ woocommerce -msgid "Address 1" -msgstr "Alamat 1" - -#: admin/post-types/writepanels/writepanel-order_data.php:160 -#: admin/post-types/writepanels/writepanel-order_data.php:250 -#: admin/woocommerce-admin-users.php:163 -#: admin/woocommerce-admin-users.php:212 -#@ woocommerce -msgid "Address 2" -msgstr "Alamat 2" - -#: admin/post-types/writepanels/writepanel-order_data.php:164 -#: admin/post-types/writepanels/writepanel-order_data.php:254 -#: admin/settings/settings-tax-rates.php:42 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-users.php:167 -#: admin/woocommerce-admin-users.php:216 -#@ woocommerce -msgid "City" -msgstr "Kota" - -#: admin/post-types/writepanels/writepanel-order_data.php:168 -#: admin/post-types/writepanels/writepanel-order_data.php:258 -#: admin/woocommerce-admin-users.php:171 -#: admin/woocommerce-admin-users.php:220 -#: classes/class-wc-countries.php:885 -#: templates/cart/shipping-calculator.php:68 -#@ woocommerce -msgid "Postcode" -msgstr "Kode pos" - -#: admin/post-types/writepanels/writepanel-order_data.php:172 -#: admin/post-types/writepanels/writepanel-order_data.php:262 -#: admin/woocommerce-admin-users.php:179 -#: admin/woocommerce-admin-users.php:228 -#: classes/class-wc-countries.php:955 -#@ woocommerce -msgid "Country" -msgstr "Negara" - -#: admin/post-types/writepanels/writepanel-order_data.php:175 -#: admin/post-types/writepanels/writepanel-order_data.php:265 -#: templates/cart/shipping-calculator.php:24 -#: woocommerce-template.php:1327 -#@ woocommerce -msgid "Select a country…" -msgstr "Pilih negara…" - -#: admin/post-types/writepanels/writepanel-order_data.php:178 -#: admin/post-types/writepanels/writepanel-order_data.php:268 -#: admin/woocommerce-admin-users.php:175 -#: admin/woocommerce-admin-users.php:224 -#@ woocommerce -msgid "State/County" -msgstr "Propinsi/Wilayah" - -#: admin/post-types/writepanels/writepanel-order_data.php:182 -#: admin/woocommerce-admin-users.php:187 -#: templates/myaccount/form-login.php:78 -#: templates/single-product-reviews.php:101 -#@ woocommerce -msgid "Email" -msgstr "Email" - -#: admin/post-types/writepanels/writepanel-order_data.php:185 -#: classes/class-wc-countries.php:1044 -#@ woocommerce -msgid "Phone" -msgstr "Telepon" - -#: admin/post-types/writepanels/writepanel-order_data.php:193 -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#: admin/post-types/writepanels/writepanel-order_data.php:277 -#: admin/post-types/writepanels/writepanel-order_data.php:279 -#: classes/class-wc-countries.php:975 -#@ woocommerce -msgid "Address" -msgstr "Alamat" - -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#@ woocommerce -msgid "No billing address set." -msgstr "Alamat penagihan tidak ada." - -#: admin/post-types/writepanels/writepanel-order_data.php:208 -#@ woocommerce -msgid "Load billing address" -msgstr "Buka alamat penagihan" - -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#@ woocommerce -msgid "Shipping Details" -msgstr "Detail Pengiriman" - -#: admin/post-types/writepanels/writepanel-order_data.php:279 -#@ woocommerce -msgid "No shipping address set." -msgstr "Alamat pengiriman tidak ada." - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -#@ woocommerce -msgid "Load shipping address" -msgstr "Buka alamat pengiriman" - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -#@ woocommerce -msgid "Copy from billing" -msgstr "Salinan dari penagihan" - -#: admin/post-types/writepanels/writepanel-order_data.php:339 -#@ woocommerce -msgid "Item" -msgstr "Barang" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#: admin/post-types/writepanels/writepanel-product_data.php:191 -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Tax Class" -msgstr "Kelas Pajak" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#@ woocommerce -msgid "Tax class for the line item" -msgstr "Kelas Pajak untuk barang ini" - -#: admin/post-types/writepanels/writepanel-order_data.php:347 -#: templates/checkout/form-pay.php:20 -#@ woocommerce -msgid "Qty" -msgstr "Jumlah" - -#: admin/post-types/writepanels/order-item-html.php:9 -#@ woocommerce -msgid "Product ID:" -msgstr "Produk ID:" - -#: admin/post-types/writepanels/order-item-html.php:12 -#@ woocommerce -msgid "Variation ID:" -msgstr "Variasi ID:" - -#: admin/post-types/writepanels/order-item-html.php:15 -#@ woocommerce -msgid "Product SKU:" -msgstr "Produk SKU:" - -#: admin/post-types/writepanels/order-item-html.php:33 -#@ woocommerce -msgid "Add meta" -msgstr "Menambah meta" - -#: admin/post-types/writepanels/order-fee-html.php:17 -#: admin/post-types/writepanels/order-item-html.php:84 -#@ woocommerce -msgid "Tax class" -msgstr "Kelas Pajak" - -#: admin/post-types/writepanels/order-fee-html.php:25 -#: admin/post-types/writepanels/order-item-html.php:91 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:54 -#: admin/post-types/writepanels/writepanel-product_data.php:186 -#: admin/settings/settings-init.php:982 -#: admin/settings/settings-tax-rates.php:29 -#: admin/woocommerce-admin-settings.php:226 -#: woocommerce-ajax.php:627 -#@ woocommerce -msgid "Standard" -msgstr "Standar" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:468 -#@ woocommerce -msgid "Cost" -msgstr "Biaya" - -#: admin/post-types/writepanels/writepanel-order_data.php:352 -#: admin/settings/settings-tax-rates.php:387 -#: admin/settings/settings-tax-rates.php:466 -#: admin/woocommerce-admin-content.php:48 -#: admin/woocommerce-admin-settings.php:184 -#: classes/class-wc-countries.php:444 -#: templates/cart/totals.php:110 -#: templates/checkout/review-order.php:113 -#@ woocommerce -msgid "Tax" -msgstr "Pajak" - -#: admin/post-types/writepanels/writepanel-order_data.php:402 -#@ woocommerce -msgid "Add item(s)" -msgstr "Tambah item (s)" - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -#@ woocommerce -msgid "Save Order" -msgstr "Simpan Pesanan" - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -#@ woocommerce -msgid "Save/update the order" -msgstr "Simpan/memperbarui pesanan" - -#: admin/post-types/writepanels/writepanel-order_data.php:465 -#@ woocommerce -msgid "Move to Trash" -msgstr "Pindahkan ke Tong Sampah" - -#: admin/post-types/writepanels/writepanel-order_data.php:495 -#@ woocommerce -msgid "Discounts" -msgstr "Diskon" - -#: admin/post-types/writepanels/writepanel-order_data.php:499 -#: classes/class-wc-order.php:929 -#@ woocommerce -msgid "Cart Discount:" -msgstr "Keranjang Diskon:" - -#: admin/post-types/writepanels/writepanel-order_data.php:507 -#: classes/class-wc-order.php:1006 -#@ woocommerce -msgid "Order Discount:" -msgstr "Diskon Pesanan:" - -#: admin/post-types/writepanels/writepanel-order_data.php:549 -#: classes/class-wc-countries.php:470 -#@ woocommerce -msgid "(ex. tax)" -msgstr "(Ex. pajak)" - -#: admin/post-types/writepanels/order-fee-html.php:19 -#: admin/post-types/writepanels/order-tax-html.php:8 -#: admin/post-types/writepanels/writepanel-order_data.php:558 -#: admin/post-types/writepanels/writepanel-order_data.php:663 -#: admin/woocommerce-admin-reports.php:1642 -#: admin/woocommerce-admin-reports.php:2655 -#: admin/woocommerce-admin-reports.php:2664 -#: admin/woocommerce-admin-users.php:90 -#: admin/woocommerce-admin-users.php:112 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:110 -#: templates/order/order-details.php:110 -#: templates/order/order-details.php:125 -#@ woocommerce -msgid "N/A" -msgstr "N/A" - -#: admin/post-types/writepanels/writepanel-order_data.php:578 -#: admin/post-types/writepanels/writepanel-order_data.php:580 -#: admin/post-types/writepanels/writepanel-order_data.php:679 -#: admin/post-types/writepanels/writepanel-order_data.php:681 -#@ woocommerce -msgid "Other" -msgstr "Lain" - -#: admin/post-types/writepanels/writepanel-order_data.php:541 -#@ woocommerce -msgid "The shipping title the customer sees" -msgstr "Judul pengiriman yang dilihat pelanggan" - -#: admin/post-types/writepanels/writepanel-order_data.php:594 -#@ woocommerce -msgid "Tax Rows" -msgstr "Baris Pajak" - -#: admin/post-types/writepanels/writepanel-order_data.php:619 -#@ woocommerce -msgid "These rows contain taxes for this order. This allows you to display multiple or compound taxes rather than a single total." -msgstr "Baris berikut berisi pajak untuk pesanan ini. Ini memperbolehkan anda untuk menampilkan beberapa atau gabungan pajak daripada total satuan." - -#: admin/post-types/writepanels/order-tax-html.php:20 -#: admin/post-types/writepanels/writepanel-order_data.php:635 -#@ woocommerce -msgid "Shipping Tax:" -msgstr "Pajak Pengiriman:" - -#: admin/post-types/writepanels/writepanel-order_data.php:619 -#@ woocommerce -msgid "+ Add tax row" -msgstr "+ Menambah baris pajak" - -#: admin/post-types/writepanels/writepanel-order_data.php:623 -#@ woocommerce -msgid "Tax Totals" -msgstr "Total Pajak" - -#: admin/post-types/writepanels/order-fee-html.php:43 -#: admin/post-types/writepanels/order-item-html.php:110 -#: admin/woocommerce-admin-reports.php:1546 -#: admin/woocommerce-admin-reports.php:1599 -#: admin/woocommerce-admin-reports.php:2370 -#: admin/woocommerce-admin-reports.php:2539 -#: admin/woocommerce-admin-reports.php:2617 -#: templates/cart/cart.php:31 -#: templates/checkout/review-order.php:22 -#: templates/myaccount/my-orders.php:35 -#: templates/order/order-details.php:21 -#@ woocommerce -msgid "Total" -msgstr "Total" - -#: admin/post-types/writepanels/writepanel-order_data.php:653 -#: classes/class-wc-order.php:1011 -#@ woocommerce -msgid "Order Total:" -msgstr "Total Pesanan:" - -#: admin/post-types/writepanels/writepanel-order_data.php:661 -#@ woocommerce -msgid "Payment Method:" -msgstr "Cara Pembayaran:" - -#: classes/class-wc-order.php:1461 -#: woocommerce-ajax.php:1163 -#: woocommerce-ajax.php:1164 -#, php-format -#@ woocommerce -msgid "Item #%s stock reduced from %s to %s." -msgstr "Barang #%s stok dikurangi dari %s ke %s." - -#: woocommerce-ajax.php:1215 -#: woocommerce-ajax.php:1216 -#, php-format -#@ woocommerce -msgid "Item #%s stock increased from %s to %s." -msgstr "Barang #%s stok ditambah dari %s ke %s." - -#: admin/post-types/writepanels/order-download-permission-html.php:6 -#@ woocommerce -msgid "Revoke Access" -msgstr "Cabut Akses" - -#: admin/post-types/writepanels/order-download-permission-html.php:7 -#: admin/post-types/writepanels/variation-admin-html.php:7 -#: admin/post-types/writepanels/writepanel-product_data.php:365 -#: admin/post-types/writepanels/writepanel-product_data.php:444 -#: admin/woocommerce-admin-init.php:452 -#@ woocommerce -msgid "Click to toggle" -msgstr "Klik untuk beralih" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -#, php-format -#@ woocommerce -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "Diunduh %s kali" -msgstr[1] "Diunduh %s kali" - -#: admin/post-types/writepanels/order-download-permission-html.php:16 -#@ woocommerce -msgid "Downloads Remaining" -msgstr "Downloads Tersisa" - -#: admin/post-types/writepanels/order-download-permission-html.php:19 -#: admin/post-types/writepanels/variation-admin-html.php:143 -#: admin/post-types/writepanels/variation-admin-html.php:151 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -#@ woocommerce -msgid "Unlimited" -msgstr "Tak terbatas" - -#: admin/post-types/writepanels/order-download-permission-html.php:22 -#@ woocommerce -msgid "Access Expires" -msgstr "Akses Kedaluwarsa" - -#: admin/post-types/writepanels/order-download-permission-html.php:23 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -#@ woocommerce -msgid "Never" -msgstr "Tak pernah" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:57 -#@ woocommerce -msgid "Choose a downloadable product…" -msgstr "Memilih produk yang dapat diunduh…" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:87 -#@ woocommerce -msgid "Grant Access" -msgstr "Memberikan Akses" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:148 -#@ woocommerce -msgid "Are you sure you want to revoke access to this download?" -msgstr "Apakah Anda yakin ingin mencabut akses ke download ini?" - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -#, php-format -#@ woocommerce -msgid "added %s ago" -msgstr "ditambahkan %s lalu" - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -#: woocommerce-ajax.php:1558 -#@ woocommerce -msgid "Delete note" -msgstr "Menghapus catatan" - -#: admin/post-types/writepanels/writepanel-order_notes.php:50 -#@ woocommerce -msgid "There are no notes for this order yet." -msgstr "Tidak ada catatan untuk pesanan ini." - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -#@ woocommerce -msgid "Add note" -msgstr "Tambahkan catatan" - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -#@ woocommerce -msgid "Add a note for your reference, or add a customer note (the user will be notified)." -msgstr "Tambahkan catatan untuk referensi Anda, atau menambahkan catatan pelanggan (pengguna akan diberitahu)." - -#: admin/post-types/writepanels/writepanel-order_notes.php:62 -#: classes/emails/class-wc-email-customer-note.php:29 -#@ woocommerce -msgid "Customer note" -msgstr "Catatan Pelanggan" - -#: admin/post-types/writepanels/writepanel-order_notes.php:63 -#@ woocommerce -msgid "Private note" -msgstr "Catatan Pribadi" - -#: admin/post-types/writepanels/writepanel-order_notes.php:65 -#: admin/post-types/writepanels/writepanel-product_data.php:482 -#@ woocommerce -msgid "Add" -msgstr "Menambahkan" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -#@ woocommerce -msgid "Variations for variable products are defined here." -msgstr "Variasi untuk produk variabel didefinisikan di sini." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -#: woocommerce.php:986 -#@ woocommerce -msgid "Variations" -msgstr "Variasi" - -#: admin/post-types/writepanels/variation-admin-html.php:113 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:53 -#: woocommerce-ajax.php:626 -#@ woocommerce -msgid "Same as parent" -msgstr "Sama seperti induk" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:65 -#@ woocommerce -msgid "Before adding variations, add and save some attributes on the Attributes tab." -msgstr "Sebelum menambahkan variasi, tambahkan dan simpan beberapa attribut di tab Attributes" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:67 -#@ woocommerce -msgid "Learn more" -msgstr "Pelajari lebih lanjut" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -#@ woocommerce -msgid "Close all" -msgstr "Tutup semua" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -#@ woocommerce -msgid "Expand all" -msgstr "Membuka semua" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:75 -#@ woocommerce -msgid "Bulk edit:" -msgstr "Edit Massal:" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:81 -#@ woocommerce -msgid "Prices" -msgstr "Harga" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:82 -#@ woocommerce -msgid "Sale prices" -msgstr "Harga jual" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:88 -#@ woocommerce -msgid "File Path" -msgstr "File Path" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:89 -#@ woocommerce -msgid "Download limit" -msgstr "Batas Unduh" - -#: admin/post-types/writepanels/variation-admin-html.php:164 -#@ woocommerce -msgid "Enabled" -msgstr "Diaktifkan" - -#: admin/post-types/writepanels/variation-admin-html.php:6 -#: admin/post-types/writepanels/writepanel-product_data.php:364 -#: admin/post-types/writepanels/writepanel-product_data.php:443 -#: admin/woocommerce-admin-init.php:451 -#@ woocommerce -msgid "Remove" -msgstr "Menghapus" - -#: admin/post-types/writepanels/variation-admin-html.php:20 -#@ woocommerce -msgid "Any" -msgstr "Apa saja" - -#: admin/post-types/writepanels/variation-admin-html.php:46 -#@ woocommerce -msgid "Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "Masukkan SKU untuk variasi ini atau biarkan kosong untuk menggunakan SKU produk induk." - -#: admin/post-types/writepanels/variation-admin-html.php:57 -#@ woocommerce -msgid "Stock Qty:" -msgstr "Jumlah stok:" - -#: classes/widgets/class-wc-widget-price-filter.php:140 -#@ woocommerce -msgid "Price:" -msgstr "Harga:" - -#: admin/post-types/writepanels/variation-admin-html.php:70 -#@ woocommerce -msgid "Sale Price:" -msgstr "Harga Obral:" - -#: admin/post-types/writepanels/variation-admin-html.php:90 -#@ woocommerce -msgid "Enter a weight for this variation or leave blank to use the parent product weight." -msgstr "Masukkan berat untuk variasi ini atau biarkan kosong untuk menggunakan berat produk induk." - -#: admin/post-types/writepanels/variation-admin-html.php:98 -#@ woocommerce -msgid "Dimensions (L×W×H)" -msgstr "Dimensi (P×L×T)" - -#: admin/post-types/writepanels/variation-admin-html.php:109 -#@ woocommerce -msgid "Shipping class:" -msgstr "Kelas Pengiriman:" - -#: admin/post-types/writepanels/variation-admin-html.php:124 -#@ woocommerce -msgid "Tax class:" -msgstr "Kelas Pajak:" - -#: admin/post-types/writepanels/variation-admin-html.php:137 -#@ woocommerce -msgid "Upload" -msgstr "Unggah" - -#: admin/post-types/writepanels/variation-admin-html.php:142 -#@ woocommerce -msgid "Download Limit:" -msgstr "Batas Unduh:" - -#: admin/post-types/writepanels/variation-admin-html.php:142 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -#@ woocommerce -msgid "Leave blank for unlimited re-downloads." -msgstr "Biarkan kosong untuk unlimited re-download." - -#: admin/post-types/writepanels/variation-admin-html.php:166 -#@ woocommerce -msgid "Enable this option if access is given to a downloadable file upon purchase of a product" -msgstr "Aktifkan opsi ini jika akses diberikan ke file yang dapat didownload pada saat pembelian suatu produk" - -#: admin/post-types/writepanels/variation-admin-html.php:168 -#@ woocommerce -msgid "Enable this option if a product is not shipped or there is no shipping cost" -msgstr "Aktifkan opsi ini jika produk tidak dikirim atau tidak ada biaya pengiriman" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:193 -#: woocommerce.php:988 -#@ woocommerce -msgid "Add Variation" -msgstr "Tambahkan Variasi" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:195 -#@ woocommerce -msgid "Link all variations" -msgstr "Menghubungkan semua variasi" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:197 -#@ woocommerce -msgid "Default selections:" -msgstr "Standar pilihan:" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:210 -#@ woocommerce -msgid "No default" -msgstr "Tidak ada default" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:293 -#@ woocommerce -msgid "Are you sure you want to link all variations? This will create a new variation for each and every possible combination of variation attributes (max 50 per run)." -msgstr "Apakah anda mau menghubungkan semua variasi? Ini akan membuat variasi baru untuk setiap dan semua kombinasi dari attribut variasi (max 50 sekali jalan)." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:310 -#@ woocommerce -msgid "variation added" -msgstr "Variasi ditambahkan" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:312 -#@ woocommerce -msgid "variations added" -msgstr "variasi ditambahkan" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:314 -#@ woocommerce -msgid "No variations added" -msgstr "Tidak ada variasi ditambahkan" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:337 -#@ woocommerce -msgid "Are you sure you want to remove this variation?" -msgstr "Apakah Anda yakin ingin menghapus variasi ini?" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:393 -#@ woocommerce -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "Apakah anda ingin menghapus semua variasi? Ini tidak dapat dibatalkan." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:396 -#@ woocommerce -msgid "Last warning, are you sure?" -msgstr "Peringatan terakhir, apakah Anda yakin?" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:433 -#@ woocommerce -msgid "Enter a value" -msgstr "Masukkan nilai" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:557 -#@ woocommerce -msgid "Variable product" -msgstr "Variabel produk" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:623 -#: classes/class-wc-emails.php:286 -#: classes/class-wc-emails.php:318 -#: classes/class-wc-emails.php:362 -#, php-format -#@ woocommerce -msgid "Variation #%s of %s" -msgstr "Variasi #%s dari %s" - -#: admin/post-types/writepanels/writepanel-product_data.php:43 -#@ woocommerce -msgid "Product Type" -msgstr "Type Produk" - -#: admin/post-types/writepanels/writepanel-product_data.php:53 -#@ woocommerce -msgid "Virtual products are intangible and aren't shipped." -msgstr "Produk virtual tidak dapat diperjelas dan tidak dikirim" - -#: admin/post-types/writepanels/writepanel-product_data.php:59 -#@ woocommerce -msgid "Downloadable products give access to a file upon purchase." -msgstr "Produk download memberikan akses ke file pada saat pembelian." - -#: admin/post-types/writepanels/writepanel-product_data.php:77 -#: admin/woocommerce-admin-content.php:44 -#: admin/woocommerce-admin-settings.php:180 -#@ woocommerce -msgid "General" -msgstr "Umum" - -#: admin/post-types/writepanels/writepanel-product_data.php:79 -#: admin/woocommerce-admin-content.php:47 -#: admin/woocommerce-admin-settings.php:183 -#@ woocommerce -msgid "Inventory" -msgstr "Inventaris" - -#: templates/single-product/related.php:36 -#@ woocommerce -msgid "Related Products" -msgstr "Produk Terkait" - -#: admin/post-types/writepanels/writepanel-product_data.php:85 -#: admin/woocommerce-admin-attributes.php:298 -#: admin/woocommerce-admin-init.php:66 -#@ woocommerce -msgid "Attributes" -msgstr "Atribut" - -#: admin/post-types/writepanels/writepanel-product_data.php:87 -#@ woocommerce -msgid "Advanced" -msgstr "Lanjutan" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#@ woocommerce -msgid "Stock Keeping Unit" -msgstr "Stock Keeping Unit" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#@ woocommerce -msgid "SKU refers to a Stock-keeping unit, a unique identifier for each distinct product and service that can be purchased." -msgstr "SKU mengacu pada Stock-keeping unit, pengenal unik untuk setiap produk yang berbeda dan layanan yang dapat dibeli." - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -#@ woocommerce -msgid "Product URL" -msgstr "Produk URL" - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -#@ woocommerce -msgid "Enter the external URL to the product." -msgstr "Masukkan URL eksternal untuk produk." - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -#@ woocommerce -msgid "Button text" -msgstr "Tombol teks" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -#@ woocommerce -msgctxt "placeholder" -msgid "Buy product" -msgstr "Membeli produk" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -#@ woocommerce -msgid "This text will be shown on the button linking to the external product." -msgstr "Teks ini akan ditampilkan pada tombol yang menghubungkan ke produk eksternal." - -#: admin/post-types/writepanels/writepanel-product_data.php:119 -#@ woocommerce -msgid "Regular Price" -msgstr "Harga Reguler" - -#: admin/post-types/writepanels/writepanel-product_data.php:125 -#@ woocommerce -msgid "Sale Price" -msgstr "Harga Sale" - -#: admin/post-types/writepanels/variation-admin-html.php:70 -#: admin/post-types/writepanels/writepanel-product_data.php:125 -#@ woocommerce -msgid "Schedule" -msgstr "Jadwal" - -#: admin/post-types/writepanels/writepanel-product_data.php:135 -#@ woocommerce -msgid "Sale Price Dates" -msgstr "Tanggal Harga Sale" - -#: admin/post-types/writepanels/variation-admin-html.php:78 -#: admin/post-types/writepanels/writepanel-product_data.php:136 -#@ woocommerce -msgctxt "placeholder" -msgid "From…" -msgstr "Dari…" - -#: admin/post-types/writepanels/variation-admin-html.php:82 -#: admin/post-types/writepanels/writepanel-product_data.php:137 -#@ woocommerce -msgctxt "placeholder" -msgid "To…" -msgstr "Untuk…" - -#: admin/post-types/writepanels/writepanel-product_data.php:138 -#: admin/post-types/writepanels/writepanel-product_data.php:1064 -#: templates/myaccount/my-orders.php:77 -#@ woocommerce -msgid "Cancel" -msgstr "Membatalkan" - -#: admin/post-types/writepanels/writepanel-product_data.php:273 -#@ woocommerce -msgid "Weight in decimal form" -msgstr "Berat dalam bentuk desimal" - -#: admin/post-types/writepanels/writepanel-product_data.php:284 -#: templates/single-product/product-attributes.php:37 -#@ woocommerce -msgid "Dimensions" -msgstr "Ukuran" - -#: admin/post-types/writepanels/writepanel-product_data.php:290 -#@ woocommerce -msgid "LxWxH in decimal form" -msgstr "PxLxT dalam bentuk desimal" - -#: admin/post-types/writepanels/writepanel-product_data.php:158 -#@ woocommerce -msgid "Download Limit" -msgstr "Batas Unduh" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:90 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -#@ woocommerce -msgid "Download Expiry" -msgstr "Kadaluwarsa Unduh" - -#: admin/post-types/writepanels/variation-admin-html.php:150 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -#@ woocommerce -msgid "Enter the number of days before a download link expires, or leave blank." -msgstr "Masukkan jumlah hari sebelum link download berakhir, atau biarkan kosong." - -#: admin/post-types/writepanels/writepanel-product_data.php:178 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:130 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:93 -#@ woocommerce -msgid "Tax Status" -msgstr "Status Pajak" - -#: admin/post-types/writepanels/order-fee-html.php:20 -#: admin/post-types/writepanels/writepanel-product_data.php:179 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:134 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:97 -#@ woocommerce -msgid "Taxable" -msgstr "Kena Pajak" - -#: admin/post-types/writepanels/writepanel-product_data.php:180 -#@ woocommerce -msgid "Shipping only" -msgstr "Hanya Pengiriman" - -#: admin/post-types/writepanels/writepanel-product_data.php:181 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:135 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:98 -#@ woocommerce -msgid "None" -msgstr "Tidak ada" - -#: admin/post-types/writepanels/writepanel-product_data.php:219 -#@ woocommerce -msgid "Stock quantity. If this is a variable product this value will be used to control stock for all variations, unless you define stock at variation level." -msgstr "Jumlah stok. Apabila ini adalah produk variabel, nilai ini akan dipergunakan untuk mengontrol stok semua variasi, kecuali stok di level variasi didefinisikan." - -#: admin/post-types/writepanels/writepanel-product_data.php:230 -#@ woocommerce -msgid "Stock status" -msgstr "Status stok" - -#: admin/post-types/writepanels/writepanel-product_data.php:233 -#@ woocommerce -msgid "Controls whether or not the product is listed as \"in stock\" or \"out of stock\" on the frontend." -msgstr "Mengontrol apakah produk terdaftar sebagai \"in stock\" atau \"out of stock\" di halaman depan." - -#: admin/post-types/writepanels/writepanel-product_data.php:240 -#@ woocommerce -msgid "Allow Backorders?" -msgstr "Izinkan backorders?" - -#: admin/post-types/writepanels/writepanel-product_data.php:241 -#@ woocommerce -msgid "Do not allow" -msgstr "Tidak diizinkan" - -#: admin/post-types/writepanels/writepanel-product_data.php:242 -#@ woocommerce -msgid "Allow, but notify customer" -msgstr "Memperbolehkan, namun memberitahu pelanggan" - -#: admin/post-types/writepanels/writepanel-product_data.php:243 -#@ woocommerce -msgid "Allow" -msgstr "Mengizinkan" - -#: admin/post-types/writepanels/writepanel-product_data.php:244 -#@ woocommerce -msgid "If managing stock, this controls whether or not backorders are allowed for this product and variations. If enabled, stock quantity can go below 0." -msgstr "Jika mengelola stok, kontrol ini menunjukkan apakah backorders diperbolehkan atau tidak untuk produk dan variasi. Jika diaktifkan, jumlah stok dapat menjadi di bawah 0." - -#: admin/post-types/writepanels/writepanel-product_data.php:311 -#@ woocommerce -msgid "No shipping class" -msgstr "Tidak ada kelas pengiriman" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -#@ woocommerce -msgid "Shipping class" -msgstr "Kelas Pengiriman" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -#@ woocommerce -msgid "Shipping classes are used by certain shipping methods to group similar products." -msgstr "Kelas Pengiriman yang digunakan oleh metode pengiriman tertentu untuk menggolongkan produk kelompok serupa." - -#: admin/post-types/writepanels/writepanel-product_data.php:380 -#: admin/post-types/writepanels/writepanel-product_data.php:457 -#: admin/woocommerce-admin-init.php:453 -#@ woocommerce -msgid "Value(s)" -msgstr "Nilai(s)" - -#: admin/post-types/writepanels/writepanel-product_data.php:382 -#@ woocommerce -msgid "Select terms" -msgstr "Pilih istilah" - -#: admin/post-types/writepanels/writepanel-product_data.php:394 -#@ woocommerce -msgid "Select all" -msgstr "Pilih semua" - -#: admin/post-types/writepanels/writepanel-product_data.php:394 -#@ woocommerce -msgid "Select none" -msgstr "Tidak memilih" - -#: admin/post-types/writepanels/writepanel-product_data.php:396 -#@ woocommerce -msgid "Add new" -msgstr "Tambah baru" - -#: admin/post-types/writepanels/writepanel-product_data.php:409 -#@ woocommerce -msgid "Pipe separate terms" -msgstr "Memisahkan istilah menggunakan pipe" - -#: admin/post-types/writepanels/writepanel-product_data.php:416 -#: admin/post-types/writepanels/writepanel-product_data.php:463 -#: admin/woocommerce-admin-init.php:455 -#@ woocommerce -msgid "Visible on the product page" -msgstr "Terlihat pada halaman produk" - -#: admin/post-types/writepanels/writepanel-product_data.php:422 -#: admin/post-types/writepanels/writepanel-product_data.php:469 -#: admin/woocommerce-admin-init.php:456 -#@ woocommerce -msgid "Used for variations" -msgstr "Digunakan untuk variasi" - -#: admin/post-types/writepanels/writepanel-product_data.php:458 -#: admin/woocommerce-admin-init.php:454 -#@ woocommerce -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "Masukkan beberapa teks, atau beberapa atribut oleh pipe (|) untuk memisahkan nilai-nilai." - -#: admin/post-types/writepanels/writepanel-product_data.php:484 -#@ woocommerce -msgid "Custom product attribute" -msgstr "Kustom atribut produk" - -#: admin/post-types/writepanels/writepanel-product_data.php:503 -#@ woocommerce -msgid "Up-Sells" -msgstr "Up-Sells" - -#: admin/post-types/writepanels/writepanel-product_data.php:518 -#@ woocommerce -msgid "Up-sells are products which you recommend instead of the currently viewed product, for example, products that are more profitable or better quality or more expensive." -msgstr "Up-sells ada produk yang Anda rekomendasikan, bukan produk yang sedang dilihat, misalnya, produk yang lebih menguntungkan atau lebih baik kualitasnya atau lebih mahal." - -#: admin/post-types/writepanels/writepanel-product_data.php:520 -#@ woocommerce -msgid "Cross-Sells" -msgstr "Cross-Sells" - -#: admin/post-types/writepanels/writepanel-product_data.php:535 -#@ woocommerce -msgid "Cross-sells are products which you promote in the cart, based on the current product." -msgstr "Cross-sells ada produk yang Anda promosikan dalam keranjang, berdasarkan pada produk saat ini." - -#: admin/post-types/writepanels/writepanel-product_data.php:591 -#@ woocommerce -msgid "Purchase Note" -msgstr "Catatan Pembelian" - -#: admin/post-types/writepanels/writepanel-product_data.php:591 -#@ woocommerce -msgid "Enter an optional note to send the customer after purchase." -msgstr "Masukkan catatan opsional untuk mengirim ke pelanggan setelah pembelian." - -#: admin/post-types/writepanels/writepanel-product_data.php:598 -#@ woocommerce -msgid "Menu order" -msgstr "Menu pesanan" - -#: admin/post-types/writepanels/writepanel-product_data.php:598 -#@ woocommerce -msgid "Custom ordering position." -msgstr "Kustom posisi pesanan." - -#: admin/post-types/writepanels/writepanel-product_data.php:545 -#@ woocommerce -msgid "Choose a grouped product…" -msgstr "Pilih produk yang sudah dikelompokkan…" - -#: admin/post-types/writepanels/writepanel-product_data.php:571 -#@ woocommerce -msgid "Grouping" -msgstr "Pengelompokan" - -#: admin/post-types/writepanels/writepanel-product_data.php:606 -#@ woocommerce -msgid "Enable reviews" -msgstr "Aktifkan ulasan" - -#: admin/post-types/writepanels/writepanel-product_data.php:695 -#@ woocommerce -msgid "Product SKU must be unique." -msgstr "Produk SKU harus unik." - -#: admin/post-types/writepanels/writepanel-product_data.php:1028 -#@ woocommerce -msgid "Catalog/search" -msgstr "Katalog/cari" - -#: admin/post-types/writepanels/writepanel-product_data.php:1035 -#@ woocommerce -msgid "Catalog visibility:" -msgstr "Katalog visibilitas:" - -#: admin/post-types/writepanels/writepanel-product_data.php:1051 -#@ woocommerce -msgid "Define the loops this product should be visible in. The product will still be accessible directly." -msgstr "Tentukan loop dimana produk ini harus terlihat. Produk masih dapat diakses secara langsung." - -#: admin/post-types/writepanels/writepanel-product_data.php:1057 -#@ woocommerce -msgid "Enable this option to feature this product." -msgstr "Aktifkan opsi ini untuk menampilkan produk ini." - -#: admin/post-types/writepanels/writepanel-product_data.php:1059 -#@ woocommerce -msgid "Featured Product" -msgstr "Produk Fitur" - -#: admin/post-types/writepanels/writepanel-product_data.php:1063 -#@ woocommerce -msgid "OK" -msgstr "Oke" - -#: admin/post-types/writepanels/writepanels-init.php:55 -#@ woocommerce -msgid "Product Short Description" -msgstr "Produk Deskripsi Pendek" - -#: admin/post-types/writepanels/writepanels-init.php:64 -#: templates/single-product-reviews.php:51 -#: templates/single-product-reviews.php:57 -#@ woocommerce -msgid "Reviews" -msgstr "Ulasan" - -#: admin/post-types/writepanels/writepanels-init.php:68 -#@ woocommerce -msgid "Order Data" -msgstr "Data Pesanan" - -#: admin/post-types/writepanels/writepanel-order_data.php:649 -#: admin/post-types/writepanels/writepanels-init.php:70 -#@ woocommerce -msgid "Order Totals" -msgstr "Total Pesanan" - -#: admin/post-types/writepanels/writepanels-init.php:73 -#@ woocommerce -msgid "Order Actions" -msgstr "Tindakan Pesanan" - -#: admin/post-types/writepanels/writepanels-init.php:81 -#@ woocommerce -msgid "Coupon Data" -msgstr "Data Kupon" - -#: admin/post-types/writepanels/writepanels-init.php:100 -#: templates/checkout/form-coupon.php:25 -#@ woocommerce -msgid "Coupon code" -msgstr "Kode Kupon" - -#: admin/post-types/writepanels/writepanels-init.php:101 -#@ woocommerce -msgid "Product name" -msgstr "Nama Produk" - -#: admin/post-types/writepanels/writepanels-init.php:185 -#@ woocommerce -msgid "Allow reviews." -msgstr "Izinkan ulasan." - -#: admin/post-types/writepanels/writepanels-init.php:186 -#, php-format -#@ default -msgid "Allow trackbacks and pingbacks on this page." -msgstr "Mengizinkan trackbacks dan pingbacks di halaman ini." - -#: admin/post-types/writepanels/writepanels-init.php:186 -#@ default -msgid "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" -msgstr "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" - -#: admin/settings/settings-frontend-styles.php:23 -#@ woocommerce -msgid "Styles" -msgstr "Ragam" - -#: admin/settings/settings-frontend-styles.php:43 -#@ woocommerce -msgid "Primary" -msgstr "Primer" - -#: admin/settings/settings-frontend-styles.php:43 -#@ woocommerce -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "Panggilan untuk tombol tindakan/slider harga/lapisan nav UI" - -#: admin/settings/settings-frontend-styles.php:44 -#@ woocommerce -msgid "Secondary" -msgstr "Sekunder" - -#: admin/settings/settings-frontend-styles.php:44 -#@ woocommerce -msgid "Buttons and tabs" -msgstr "Tombol dan tab" - -#: admin/settings/settings-frontend-styles.php:45 -#@ woocommerce -msgid "Highlight" -msgstr "Sorotan" - -#: admin/settings/settings-frontend-styles.php:45 -#@ woocommerce -msgid "Price labels and Sale Flashes" -msgstr "Label Harga dan Kilasan Obral" - -#: admin/settings/settings-frontend-styles.php:46 -#@ woocommerce -msgid "Content" -msgstr "Isi" - -#: admin/settings/settings-frontend-styles.php:46 -#@ woocommerce -msgid "Your themes page background - used for tab active states" -msgstr "Tema latar belakang halaman anda - digunakan untuk menyatakan status tab aktif" - -#: admin/settings/settings-frontend-styles.php:47 -#@ woocommerce -msgid "Subtext" -msgstr "Subteks" - -#: admin/settings/settings-frontend-styles.php:47 -#@ woocommerce -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "Digunakan untuk teks tertentu dan sampingan - breadcrumbs, teks kecil dll." - -#: admin/settings/settings-frontend-styles.php:51 -#@ woocommerce -msgid "To edit colours woocommerce/assets/css/woocommerce-base.less and woocommerce.css need to be writable. See the Codex for more information." -msgstr "Untuk merubah edit colours woocommerce/assets/css/woocommerce-base.less dan woocommerce.css harus bisa ditulis. Lihat Codex untuk informasi lebih lanjut." - -#: admin/settings/settings-init.php:18 -#@ woocommerce -msgid "Localisation" -msgstr "Lokalisasi" - -#: admin/settings/settings-init.php:33 -#@ woocommerce -msgid "General Options" -msgstr "Opsi Umum" - -#: admin/settings/settings-init.php:46 -#@ woocommerce -msgid "Currency" -msgstr "Mata uang" - -#: admin/settings/settings-init.php:47 -#@ woocommerce -msgid "This controls what currency prices are listed at in the catalog and which currency gateways will take payments in." -msgstr "Ini mengontrol mata uang apa yang tercantum di dalam katalog dan mata uang di gateway untuk menerima pembayaran." - -#: woocommerce-core-functions.php:680 -#@ woocommerce -msgid "Danish Krone" -msgstr "Danish Krone" - -#: woocommerce-core-functions.php:683 -#@ woocommerce -msgid "Hungarian Forint" -msgstr "Hungarian Forint" - -#: woocommerce-core-functions.php:685 -#@ woocommerce -msgid "Israeli Shekel" -msgstr "Israeli Shekel" - -#: woocommerce-core-functions.php:689 -#@ woocommerce -msgid "Norwegian Krone" -msgstr "Norwegian Krone" - -#: woocommerce-core-functions.php:691 -#@ woocommerce -msgid "Philippine Pesos" -msgstr "Philippine Pesos" - -#: woocommerce-core-functions.php:692 -#@ woocommerce -msgid "Polish Zloty" -msgstr "Polish Zloty" - -#: woocommerce-core-functions.php:697 -#@ woocommerce -msgid "Swedish Krona" -msgstr "Swedish Krona" - -#: woocommerce-core-functions.php:698 -#@ woocommerce -msgid "Swiss Franc" -msgstr "Swiss Franc" - -#: woocommerce-core-functions.php:699 -#@ woocommerce -msgid "Taiwan New Dollars" -msgstr "Taiwan New Dollars" - -#: woocommerce-core-functions.php:700 -#@ woocommerce -msgid "Thai Baht" -msgstr "Thai Baht" - -#: admin/settings/settings-init.php:58 -#@ woocommerce -msgid "Allowed Countries" -msgstr "Negara yang diizinkan" - -#: admin/settings/settings-init.php:59 -#@ woocommerce -msgid "These are countries that you are willing to ship to." -msgstr "Ini adalah negara yang Anda bersedia untuk mengirim." - -#: admin/settings/settings-init.php:67 -#@ woocommerce -msgid "All Countries" -msgstr "Semua Negara" - -#: admin/settings/settings-init.php:68 -#: admin/settings/settings-init.php:73 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:108 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:112 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:98 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:149 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:153 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:105 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:109 -#@ woocommerce -msgid "Specific Countries" -msgstr "Negara Spesifik" - -#: admin/settings/settings-init.php:114 -#: admin/woocommerce-admin-install.php:198 -#: admin/woocommerce-admin-status.php:281 -#: assets/js/admin/editor_plugin_lang.php:16 -#@ woocommerce -msgid "Checkout" -msgstr "Checkout" - -#: admin/settings/settings-init.php:115 -#@ woocommerce -msgid "Enable guest checkout (no account required)" -msgstr "Aktifkan checkout untuk tamu (akun tidak diperlukan)" - -#: admin/settings/settings-init.php:131 -#@ woocommerce -msgid "Force secure checkout" -msgstr "Paksa checkout aman" - -#: admin/settings/settings-init.php:141 -#@ woocommerce -msgid "Un-force HTTPS when leaving the checkout" -msgstr "Tidak memaksa HTTPS ketika meninggalkan checkout" - -#: admin/settings/settings-init.php:105 -#: admin/woocommerce-admin-content.php:61 -#: admin/woocommerce-admin-content.php:76 -#: admin/woocommerce-admin-reports.php:72 -#: woocommerce.php:1061 -#@ woocommerce -msgid "Coupons" -msgstr "Kupon" - -#: admin/settings/settings-init.php:150 -#@ woocommerce -msgid "Registration" -msgstr "Pendaftaran" - -#: admin/settings/settings-init.php:151 -#@ woocommerce -msgid "Allow registration on the checkout page" -msgstr "Memperbolehkan pendaftaran pada halaman checkout" - -#: admin/settings/settings-init.php:159 -#@ woocommerce -msgid "Allow registration on the \"My Account\" page" -msgstr "Memperbolehkan pendaftaran pada halaman \"Akun Saya\"" - -#: admin/settings/settings-init.php:167 -#@ woocommerce -msgid "Register using the email address for the username" -msgstr "Daftar menggunakan alamat email untuk username" - -#: admin/settings/settings-init.php:175 -#@ woocommerce -msgid "Customer Accounts" -msgstr "Akun Pelanggan" - -#: admin/settings/settings-init.php:176 -#@ woocommerce -msgid "Prevent customers from accessing WordPress admin" -msgstr "Mencegah pelanggan mengakses WordPress admin" - -#: admin/settings/settings-init.php:184 -#@ woocommerce -msgid "Clear cart when logging out" -msgstr "Menghapus isi keranjang saat logout" - -#: admin/settings/settings-init.php:201 -#@ woocommerce -msgid "Styles and Scripts" -msgstr "Ragam dan Skript" - -#: admin/settings/settings-init.php:204 -#@ woocommerce -msgid "Styling" -msgstr "Ragam" - -#: admin/settings/settings-init.php:84 -#@ woocommerce -msgid "Store Notice" -msgstr "Menyimpan Pemberitahuan" - -#: admin/settings/settings-init.php:92 -#@ woocommerce -msgid "Store Notice Text" -msgstr "Menyimpan Teks Pemberitahuan" - -#: admin/settings/settings-init.php:95 -#: woocommerce-template.php:196 -#@ woocommerce -msgid "This is a demo store for testing purposes — no orders shall be fulfilled." -msgstr "Ini adalah toko demo untuk testing — tidak ada pesanan yang diproses" - -#: admin/settings/settings-init.php:216 -#@ woocommerce -msgid "Scripts" -msgstr "Skript" - -#: admin/settings/settings-init.php:226 -#@ woocommerce -msgid "Enable enhanced country select boxes" -msgstr "Mengaktifkan pilihan negara di kotak pilihan" - -#: admin/settings/settings-init.php:240 -#@ woocommerce -msgid "Forcing downloads will keep URLs hidden, but some servers may serve large files unreliably. If supported, X-Accel-Redirect/ X-Sendfile can be used to serve downloads instead (server requires mod_xsendfile)." -msgstr "Memaksakan download akan menyembunyikan URL, tetapi beberapa server tidak dapat melayani file besar secara stabil. Apabila didukung, X-Accel-Redirect/ X-Sendfile dapat dipergunakan untuk download (server memerlukan mod_xsendfile)." - -#: admin/settings/settings-init.php:248 -#@ woocommerce -msgid "Force Downloads" -msgstr "Paksa Downloads" - -#: admin/settings/settings-init.php:249 -#@ woocommerce -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "X-Accel-Redirect/X-Sendfile" - -#: admin/settings/settings-init.php:250 -#@ woocommerce -msgid "Redirect only" -msgstr "Hanya Redirect" - -#: admin/settings/settings-init.php:265 -#@ woocommerce -msgid "Grant access to downloadable products after payment" -msgstr "Memberikan akses ke produk download setelah pembayaran" - -#: admin/settings/settings-init.php:285 -#@ woocommerce -msgid "Note: The shop page has children - child pages will not work if you enable this option." -msgstr "Catatan: Halaman toko memiliki anak-halaman - halaman-anak tidak akan bekerja jika Anda mengaktifkan opsi ini." - -#: admin/settings/settings-init.php:290 -#@ woocommerce -msgid "Page Setup" -msgstr "Setting halaman" - -#: admin/settings/settings-init.php:297 -#@ woocommerce -msgid "Shop Base Page" -msgstr " Halaman Basis Toko" - -#: admin/settings/settings-init.php:298 -#@ woocommerce -msgid "This sets the base page of your shop - this is where your product archive will be." -msgstr "Ini menetapkan halaman dasar dari toko Anda - ini adalah tempat arsip produk Anda." - -#: admin/settings/settings-init.php:308 -#@ woocommerce -msgid "Base Page Title" -msgstr "Titel Halaman Basis" - -#: admin/settings/settings-init.php:309 -#@ woocommerce -msgid "This title to show on the shop base page. Leave blank to use the page title." -msgstr "Titel ini ditampilkan di halaman basis toko anda. Biarkan kosong untuk menggunakan titel halaman." - -#: admin/settings/settings-init.php:319 -#@ woocommerce -msgid "If you define a \"Terms\" page the customer will be asked if they accept them when checking out." -msgstr "Jika anda mendefinisikan halaman \"Syarat\" maka pelanggan akan ditanya, untuk menyetujuinya waktu checkout." - -#: admin/settings/settings-init.php:330 -#@ woocommerce -msgid "Shop Pages" -msgstr "Halaman Toko" - -#: admin/settings/settings-init.php:330 -#@ woocommerce -msgid "The following pages need selecting so that WooCommerce knows where they are. These pages should have been created upon installation of the plugin, if not you will need to create them." -msgstr "Halaman-halaman berikut perlu dipilih sehingga WooCommerce tahu di mana mereka berada. Halaman ini seharusnya dibuat pada saat instalasi plugin, jika tidak Anda akan perlu untuk menciptakan mereka." - -#: admin/settings/settings-init.php:333 -#@ woocommerce -msgid "Cart Page" -msgstr "Halaman Keranjang" - -#: admin/settings/settings-init.php:334 -#@ woocommerce -msgid "Page contents: [woocommerce_cart]" -msgstr "Isi Halaman: [woocommerce_cart]" - -#: admin/settings/settings-init.php:344 -#@ woocommerce -msgid "Checkout Page" -msgstr "Halaman Checkout" - -#: admin/settings/settings-init.php:345 -#@ woocommerce -msgid "Page contents: [woocommerce_checkout]" -msgstr "Isi Halaman: [woocommerce_checkout]" - -#: admin/settings/settings-init.php:355 -#@ woocommerce -msgid "Pay Page" -msgstr "Halaman Bayar" - -#: admin/settings/settings-init.php:356 -#@ woocommerce -msgid "Page contents: [woocommerce_pay] Parent: \"Checkout\"" -msgstr "Isi halaman: [woocommerce_pay] Induk: \"Checkout\"" - -#: admin/settings/settings-init.php:366 -#@ woocommerce -msgid "Thanks Page" -msgstr "Halaman Terima kasih" - -#: admin/settings/settings-init.php:367 -#@ woocommerce -msgid "Page contents: [woocommerce_thankyou] Parent: \"Checkout\"" -msgstr "Isi halaman: [woocommerce_thankyou] Induk: \"Checkout\"" - -#: admin/settings/settings-init.php:377 -#@ woocommerce -msgid "My Account Page" -msgstr "Halaman Akun Saya" - -#: admin/settings/settings-init.php:378 -#@ woocommerce -msgid "Page contents: [woocommerce_my_account]" -msgstr "Isi Halaman: [woocommerce_my_account]" - -#: admin/settings/settings-init.php:388 -#@ woocommerce -msgid "Edit Address Page" -msgstr "Halaman Mengedit Alamat" - -#: admin/settings/settings-init.php:389 -#@ woocommerce -msgid "Page contents: [woocommerce_edit_address] Parent: \"My Account\"" -msgstr "Isi halaman: [woocommerce_edit_address] Induk: \"My Account\"" - -#: admin/settings/settings-init.php:399 -#@ woocommerce -msgid "View Order Page" -msgstr "Halaman Melihat Pesanan" - -#: admin/settings/settings-init.php:400 -#@ woocommerce -msgid "Page contents: [woocommerce_view_order] Parent: \"My Account\"" -msgstr "Isi halaman: [woocommerce_view_order] Induk: \"My Account\"" - -#: admin/settings/settings-init.php:410 -#@ woocommerce -msgid "Change Password Page" -msgstr "Halaman Ubah Kata Sandi" - -#: admin/settings/settings-init.php:449 -#@ woocommerce -msgid "Catalog Options" -msgstr "Pilihan Katalog" - -#: admin/settings/settings-init.php:453 -#@ woocommerce -msgid "This controls the default sort order of the catalog." -msgstr "Ini mengontrol urutan pesanan di katalog." - -#: templates/loop/orderby.php:21 -#@ woocommerce -msgid "Default sorting" -msgstr "Standar pemilahan" - -#: admin/settings/settings-init.php:462 -#@ woocommerce -msgid "Sort by most recent" -msgstr "Mengurutkan terbaru" - -#: admin/settings/settings-init.php:478 -#: admin/settings/settings-init.php:493 -#@ woocommerce -msgid "Show subcategories" -msgstr "Tampilkan subkategori" - -#: admin/settings/settings-init.php:518 -#@ woocommerce -msgid "The following options affect the fields available on the edit product page." -msgstr "Opsi berikut mempengaruhi kolom yang tersedia pada halaman produk edit." - -#: admin/settings/settings-init.php:554 -#@ woocommerce -msgid "Weight Unit" -msgstr "Satuan Berat" - -#: admin/settings/settings-init.php:555 -#@ woocommerce -msgid "This controls what unit you will define weights in." -msgstr "Ini mengontrol satuan apa yang Anda gunakanan untuk menentukan berat." - -#: admin/settings/settings-init.php:561 -#@ woocommerce -msgid "kg" -msgstr "kg" - -#: admin/settings/settings-init.php:562 -#@ woocommerce -msgid "g" -msgstr "g" - -#: admin/settings/settings-init.php:563 -#@ woocommerce -msgid "lbs" -msgstr "lbs" - -#: admin/settings/settings-init.php:564 -#@ woocommerce -msgid "oz" -msgstr "oz" - -#: admin/settings/settings-init.php:570 -#@ woocommerce -msgid "Dimensions Unit" -msgstr "Satuan Dimensi" - -#: admin/settings/settings-init.php:571 -#@ woocommerce -msgid "This controls what unit you will define lengths in." -msgstr "Ini mengontrol satuan apa yang Anda gunakan untuk menentukan panjang." - -#: admin/settings/settings-init.php:578 -#@ woocommerce -msgid "cm" -msgstr "cm" - -#: admin/settings/settings-init.php:579 -#@ woocommerce -msgid "mm" -msgstr "mm" - -#: admin/settings/settings-init.php:580 -#@ woocommerce -msgid "in" -msgstr "in" - -#: admin/settings/settings-init.php:581 -#@ woocommerce -msgid "yd" -msgstr "yd" - -#: admin/settings/settings-init.php:587 -#@ woocommerce -msgid "Product Ratings" -msgstr "Rating Produk" - -#: admin/settings/settings-init.php:597 -#@ woocommerce -msgid "Ratings are required to leave a review" -msgstr "Ratings diperlukan untuk meninggalkan review" - -#: admin/settings/settings-init.php:606 -#@ woocommerce -msgid "Show \"verified owner\" label for customer reviews" -msgstr "Tampilkan label \"verified owner\" untuk tinjauan pelanggan" - -#: admin/settings/settings-init.php:616 -#@ woocommerce -msgid "Pricing Options" -msgstr "Pilihan Harga" - -#: admin/settings/settings-init.php:616 -#@ woocommerce -msgid "The following options affect how prices are displayed on the frontend." -msgstr "Pilihan berikut mempengaruhi bagaimana harga ditampilkan di frontend." - -#: admin/settings/settings-init.php:619 -#@ woocommerce -msgid "Currency Position" -msgstr "Posisi Mata Uang" - -#: admin/settings/settings-init.php:620 -#@ woocommerce -msgid "This controls the position of the currency symbol." -msgstr "Ini mengontrol posisi simbol mata uang." - -#: admin/settings/settings-init.php:626 -#@ woocommerce -msgid "Left" -msgstr "Kiri" - -#: admin/settings/settings-init.php:627 -#@ woocommerce -msgid "Right" -msgstr "Kanan" - -#: admin/settings/settings-init.php:628 -#@ woocommerce -msgid "Left (with space)" -msgstr "Kiri (dengan spasi)" - -#: admin/settings/settings-init.php:629 -#@ woocommerce -msgid "Right (with space)" -msgstr "Kanan (dengan spasi)" - -#: admin/settings/settings-init.php:636 -#@ woocommerce -msgid "This sets the thousand separator of displayed prices." -msgstr "Ini menetapkan pemisah ribuan di harga yang ditampilkan." - -#: admin/settings/settings-init.php:646 -#@ woocommerce -msgid "This sets the decimal separator of displayed prices." -msgstr "Ini menetapkan pemisah desimal di harga yang ditampilkan." - -#: admin/settings/settings-init.php:656 -#@ woocommerce -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "Ini menetapkan jumlah titik desimal di dalam harga yang ditampilkan." - -#: admin/settings/settings-init.php:670 -#@ woocommerce -msgid "Remove zeros after the decimal point. e.g. $10.00 becomes $10" -msgstr "Menghilangkan nol setelah titik desimal, contoh $10.00 menjadi $10" - -#: admin/settings/settings-init.php:678 -#@ woocommerce -msgid "Image Options" -msgstr "Pilihan Gambar" - -#: admin/settings/settings-init.php:678 -#, php-format -#@ woocommerce -msgid "These settings affect the actual dimensions of images in your catalog - the display on the front-end will still be affected by CSS styles. After changing these settings you may need to regenerate your thumbnails." -msgstr "Pengaturan ini akan mempengaruhi dimensi gambar dalam katalog Anda - tampilan pada front-end masih akan dipengaruhi oleh gaya CSS. Setelah mengubah pengaturan ini Anda mungkin perlu melakukan regenerasi thumbnails anda." - -#: admin/settings/settings-init.php:681 -#@ woocommerce -msgid "Catalog Images" -msgstr "Katalog Gambar" - -#: admin/settings/settings-init.php:682 -#@ woocommerce -msgid "This size is usually used in product listings" -msgstr "Ukuran ini biasanya digunakan dalam daftar produk" - -#: admin/settings/settings-init.php:695 -#@ woocommerce -msgid "Single Product Image" -msgstr "Gambar Produk Tunggal" - -#: admin/settings/settings-init.php:696 -#@ woocommerce -msgid "This is the size used by the main image on the product page." -msgstr "Ini adalah ukuran yang digunakan oleh gambar utama pada halaman produk." - -#: admin/settings/settings-init.php:709 -#@ woocommerce -msgid "Product Thumbnails" -msgstr "Produk Thumbnail" - -#: admin/settings/settings-init.php:710 -#@ woocommerce -msgid "This size is usually used for the gallery of images on the product page." -msgstr "Ukuran ini biasanya digunakan untuk galeri gambar pada halaman produk." - -#: admin/settings/settings-init.php:729 -#@ woocommerce -msgid "Inventory Options" -msgstr "Pilihan Persediaan" - -#: admin/settings/settings-init.php:733 -#@ woocommerce -msgid "Enable stock management" -msgstr "Aktifkan manajemen stok" - -#: admin/settings/settings-init.php:753 -#@ woocommerce -msgid "Notifications" -msgstr "Pemberitahuan" - -#: admin/settings/settings-init.php:754 -#@ woocommerce -msgid "Enable low stock notifications" -msgstr "Aktifkan pemberitahuan stok kurang" - -#: admin/settings/settings-init.php:762 -#@ woocommerce -msgid "Enable out of stock notifications" -msgstr "Aktifkan pemberitahuan stok kosong" - -#: admin/settings/settings-init.php:805 -#@ woocommerce -msgid "Hide out of stock items from the catalog" -msgstr "Sembunyikan barang dengan stok kosong dari katalog" - -#: admin/settings/settings-init.php:813 -#@ woocommerce -msgid "This controls how stock is displayed on the frontend." -msgstr "Ini mengontrol bagaimana stok ditampilkan pada frontend." - -#: admin/settings/settings-init.php:819 -#@ woocommerce -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "Selalu tampilkan stok, contoh \"12 in stock\"" - -#: admin/settings/settings-init.php:820 -#@ woocommerce -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "Hanya tampilkan stok pada waktu stok kurang, contoh \"Only 2 left in stock\" vs. \"In Stock\"" - -#: admin/settings/settings-init.php:821 -#@ woocommerce -msgid "Never show stock amount" -msgstr "Jangan tampilkan jumlah stok" - -#: admin/settings/settings-init.php:833 -#: admin/woocommerce-admin-settings.php:290 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:171 -#@ woocommerce -msgid "Shipping Options" -msgstr "Pilihan Pengiriman" - -#: admin/settings/settings-init.php:837 -#@ woocommerce -msgid "Enable shipping" -msgstr "Aktifkan pengiriman" - -#: admin/settings/settings-init.php:845 -#@ woocommerce -msgid "Enable the shipping calculator on the cart page" -msgstr "Aktifkan kalkulator pengiriman pada halaman keranjang belanja" - -#: admin/settings/settings-init.php:853 -#@ woocommerce -msgid "Hide shipping costs until an address is entered" -msgstr "Sembunyikan biaya pengiriman sampai alamat dimasukkan" - -#: admin/settings/settings-init.php:862 -#@ woocommerce -msgid "This controls how multiple shipping methods are displayed on the frontend." -msgstr "Ini mengontrol bagaimana beberapa metode pengiriman ditampilkan di frontend." - -#: admin/settings/settings-init.php:868 -#@ woocommerce -msgid "Radio buttons" -msgstr "Tombol radio" - -#: admin/settings/settings-init.php:869 -#@ woocommerce -msgid "Select box" -msgstr "Pilih kotak" - -#: admin/settings/settings-init.php:875 -#@ woocommerce -msgid "Shipping Destination" -msgstr "Tujuan Pengiriman" - -#: admin/settings/settings-init.php:876 -#@ woocommerce -msgid "Only ship to the users billing address" -msgstr "Hanya kirim ke alamat penagihan pengguna" - -#: admin/settings/settings-init.php:884 -#@ woocommerce -msgid "Ship to billing address by default" -msgstr "Kirim ke alamat penagihan secara default" - -#: admin/settings/settings-init.php:892 -#@ woocommerce -msgid "Collect shipping address even when not required" -msgstr "Mengumpulkan alamat pengiriman bahkan ketika tidak diperlukan" - -#: admin/settings/settings-init.php:910 -#: admin/woocommerce-admin-settings.php:186 -#: admin/woocommerce-admin-settings.php:327 -#@ woocommerce -msgid "Payment Gateways" -msgstr "Gateway Pembayaran" - -#: admin/settings/settings-init.php:910 -#@ woocommerce -msgid "Installed payment gateways are displayed below. Drag and drop payment gateways to control their display order on the checkout." -msgstr "Gateway pembayaran yang terpasang ditampilkan dibawah. Tarik dan tempatkan gateway untuk mengontrol urutan pesanan di checkout." - -#: admin/settings/settings-init.php:928 -#: admin/woocommerce-admin-settings.php:220 -#@ woocommerce -msgid "Tax Options" -msgstr "Pilihan Pajak" - -#: admin/settings/settings-init.php:932 -#@ woocommerce -msgid "Enable taxes and tax calculations" -msgstr "Aktifkan pajak dan perhitungan pajak" - -#: admin/settings/settings-init.php:1000 -#, php-format -#@ woocommerce -msgid "Reduced Rate%sZero Rate" -msgstr "Tarif berkurang%sTarif nol" - -#: admin/settings/settings-init.php:1022 -#@ woocommerce -msgid "Email Sender Options" -msgstr "Opsi Email Pengirim" - -#: admin/settings/settings-init.php:1022 -#@ woocommerce -msgid "The following options affect the sender (email address and name) used in WooCommerce emails." -msgstr "Opsi berikut mempengaruhi pengirim (alamat email dan nama) yang digunakan dalam email WooCommerce." - -#: admin/settings/settings-init.php:1047 -#, php-format -#@ woocommerce -msgid "This section lets you customise the WooCommerce emails. Click here to preview your email template. For more advanced control copy woocommerce/templates/emails/ to yourtheme/woocommerce/emails/." -msgstr "Di bagian ini anda dapat merubah WooCommerce email. Klik disini untuk menampilkan contoh email. Untuk kontrol yang lebih bagus kopi woocommerce/templates/emails/ ke yourtheme/woocommerce/emails/." - -#: admin/settings/settings-init.php:1051 -#, php-format -#@ woocommerce -msgid "Enter a URL to an image you want to show in the email's header. Upload your image using the media uploader." -msgstr "Masukkan URL gambar yang akan ditampilkan di header email. Unggah gambar memakai media uploader." - -#: admin/settings/settings-init.php:1060 -#@ woocommerce -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "Teks yang muncul di footer email WooCommerce." - -#: admin/settings/settings-init.php:1064 -#@ woocommerce -msgid "Powered by WooCommerce" -msgstr "Didukung oleh WooCommerce" - -#: admin/settings/settings-init.php:1069 -#@ woocommerce -msgid "The base colour for WooCommerce email templates. Default #557da1." -msgstr "Basis warna untuk WooCommerce contoh email. Default #557da1." - -#: admin/settings/settings-init.php:1087 -#@ woocommerce -msgid "The main body background colour. Default #fdfdfd." -msgstr "Warna tubuh utama latar belakang. Default #fdfdfd." - -#: admin/settings/settings-init.php:1096 -#@ woocommerce -msgid "The main body text colour. Default #505050." -msgstr "Warna utama teks di tubuh utama. Default #505050." - -#: admin/settings/settings-payment-gateways.php:27 -#: admin/settings/settings-shipping-methods.php:29 -#: admin/woocommerce-admin-init.php:767 -#: admin/woocommerce-admin-taxonomies.php:27 -#: admin/woocommerce-admin-taxonomies.php:121 -#@ woocommerce -#@ default -msgid "Default" -msgstr "Default" - -#: admin/settings/settings-payment-gateways.php:28 -#@ woocommerce -msgid "Gateway" -msgstr "Gateway" - -#: admin/settings/settings-payment-gateways.php:45 -#@ woocommerce -msgid "Gateway ID" -msgstr "Gateway ID" - -#: admin/settings/settings-shipping-methods.php:23 -#@ woocommerce -msgid "Shipping Methods" -msgstr "Metode Pengiriman" - -#: admin/settings/settings-shipping-methods.php:25 -#@ woocommerce -msgid "Drag and drop methods to control their display order." -msgstr "Drag dan drop metode untuk mengontrol urutan tampilan mereka." - -#: admin/settings/settings-shipping-methods.php:30 -#@ woocommerce -msgid "Shipping Method" -msgstr "Metode Pengiriman" - -#: admin/settings/settings-shipping-methods.php:46 -#@ woocommerce -msgid "Method ID" -msgstr "Metode ID" - -#: admin/woocommerce-admin-settings.php:226 -#@ woocommerce -msgid "Tax Rates" -msgstr "Tarif Pajak" - -#: admin/settings/settings-tax-rates.php:44 -#@ woocommerce -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "Masukkan tarif pajak (persentase) sampai 4 desimal." - -#: admin/settings/settings-tax-rates.php:50 -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Compound" -msgstr "Gabungan" - -#: admin/settings/settings-tax-rates.php:50 -#@ woocommerce -msgid "Choose whether or not this is a compound rate. Compound tax rates are applied on top of other tax rates." -msgstr "Memilih apakah tarif ini adalah tarif gabungan. Tarif gabungan dipakai di atas tarif pajak yang lain." - -#: admin/settings/settings-tax-rates.php:52 -#@ woocommerce -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "Pilih apakah tarif pajak ini juga akan diterapkan untuk pengiriman atau tidak." - -#: woocommerce.php:914 -#@ woocommerce -msgid "All" -msgstr "Semua" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:542 -#@ woocommerce -msgid "Delete the selected rates?" -msgstr "Menghapus tarif yang dipilih?" - -#: admin/woocommerce-admin-attributes.php:226 -#@ woocommerce -msgid "Edit Attribute" -msgstr "Mengedit Atribut" - -#: admin/woocommerce-admin-attributes.php:236 -#: admin/woocommerce-admin-attributes.php:375 -#@ woocommerce -msgid "Name for the attribute (shown on the front-end)." -msgstr "Nama untuk atribut (ditampilkan pada front-end)." - -#: admin/woocommerce-admin-attributes.php:241 -#: admin/woocommerce-admin-attributes.php:307 -#: admin/woocommerce-admin-attributes.php:379 -#@ woocommerce -msgid "Slug" -msgstr "Slug" - -#: admin/woocommerce-admin-attributes.php:245 -#: admin/woocommerce-admin-attributes.php:381 -#@ woocommerce -msgid "Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "Slug unik/referensi untuk atribut, harus lebih pendek dari 28 karakter." - -#: admin/woocommerce-admin-attributes.php:254 -#: admin/woocommerce-admin-attributes.php:387 -#@ woocommerce -msgid "Select" -msgstr "Memilih" - -#: admin/woocommerce-admin-attributes.php:255 -#: admin/woocommerce-admin-attributes.php:388 -#@ woocommerce -msgid "Text" -msgstr "Teks" - -#: admin/woocommerce-admin-attributes.php:258 -#: admin/woocommerce-admin-attributes.php:391 -#@ woocommerce -msgid "Determines how you select attributes for products. Under admin panel -> products -> product data -> attributes -> values, Text allows manual entry whereas select allows pre-configured terms in a drop-down list." -msgstr "Menentukan bagaimana Anda memilih atribut untuk produk. Teks memungkinkan pemasukan data secara manual lewat halaman produk, dimana select istilah atribut dapat didefinisikan dari bagian ini. Jika Anda berencana untuk menggunakan atribut untuk variasi, pergunakan select." - -#: admin/woocommerce-admin-attributes.php:276 -#: woocommerce.php:918 -#@ woocommerce -msgid "Update" -msgstr "Memperbarui" - -#: admin/woocommerce-admin-attributes.php:310 -#@ woocommerce -msgid "Terms" -msgstr "Syarat" - -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -#: admin/woocommerce-admin-attributes.php:322 -#@ woocommerce -msgid "Delete" -msgstr "Hapus" - -#: admin/woocommerce-admin-attributes.php:355 -#@ woocommerce -msgid "Configure terms" -msgstr "Syarat konfigurasi" - -#: admin/woocommerce-admin-attributes.php:359 -#@ woocommerce -msgid "No attributes currently exist." -msgstr "Tidak ada atribut." - -#: admin/woocommerce-admin-attributes.php:369 -#@ woocommerce -msgid "Add New Attribute" -msgstr "Tambahkan Atribut Baru" - -#: admin/woocommerce-admin-attributes.php:370 -#@ woocommerce -msgid "Attributes let you define extra product data, such as size or colour. You can use these attributes in the shop sidebar using the \"layered nav\" widgets. Please note: you cannot rename an attribute later on." -msgstr "Atribut memperbolehkan Anda menentukan data produk tambahan, seperti ukuran atau warna. Anda dapat menggunakan atribut di sidebar toko dengan menambahkan \"layered nav\" widget. Harap dicatat: Anda tidak dapat mengubah atribut di kemudian hari." - -#: admin/woocommerce-admin-attributes.php:404 -#@ woocommerce -msgid "Add Attribute" -msgstr "Tambahkan Atribut" - -#: admin/woocommerce-admin-attributes.php:415 -#@ woocommerce -msgid "Are you sure you want to delete this attribute?" -msgstr "Apakah Anda yakin ingin menghapus atribut ini?" - -#: admin/woocommerce-admin-content.php:26 -#: admin/woocommerce-admin-reports.php:30 -#: admin/woocommerce-admin-reports.php:75 -#: admin/woocommerce-admin-reports.php:91 -#: admin/woocommerce-admin-reports.php:102 -#@ woocommerce -msgid "Overview" -msgstr "Ikhtisar" - -#: admin/woocommerce-admin-content.php:31 -#@ woocommerce -msgid "If you are having problems, or to assist us with support, please check the status page to identify any problems with your configuration:" -msgstr "Jika Anda mengalami masalah, atau membantu kami dengan dukungan, silakan cek halaman status untuk mengidentifikasi masalah dengan konfigurasi Anda:" - -#: admin/woocommerce-admin-content.php:33 -#: admin/woocommerce-admin-init.php:87 -#: admin/woocommerce-admin-status.php:26 -#@ woocommerce -msgid "System Status" -msgstr "Sistem Status" - -#: admin/woocommerce-admin-content.php:35 -#, php-format -#@ woocommerce -msgid "If you come across a bug, or wish to contribute to the project you can also get involved on GitHub." -msgstr "Jika Anda menemukan bug, atau ingin berkontribusi ke proyek Anda juga dapat terlibat pada GitHub." - -#: admin/includes/welcome.php:146 -#: admin/woocommerce-admin-content.php:41 -#: admin/woocommerce-admin-init.php:86 -#: admin/woocommerce-admin-status.php:252 -#: classes/abstracts/abstract-wc-email.php:550 -#: classes/abstracts/abstract-wc-integration.php:30 -#: classes/abstracts/abstract-wc-settings-api.php:39 -#@ woocommerce -msgid "Settings" -msgstr "Pengaturan" - -#: admin/woocommerce-admin-content.php:43 -#@ woocommerce -msgid "Here you can set up your store and customise it to fit your needs. The sections available from the settings page include:" -msgstr "Di sini Anda dapat mengatur toko Anda dan menyesuaikannya sesuai dengan kebutuhan anda. Bagian yang tersedia dari halaman Pengaturan ini meliputi:" - -#: admin/woocommerce-admin-content.php:44 -#@ woocommerce -msgid "General settings such as your shop base, currency, and script/styling options which affect features used in your store." -msgstr "Pengaturan umum seperti basis toko Anda, mata uang, dan skript/styling pilihan yang mempengaruhi fitur yang digunakan di toko Anda." - -#: admin/woocommerce-admin-content.php:45 -#: admin/woocommerce-admin-settings.php:182 -#: assets/js/admin/editor_plugin_lang.php:14 -#@ woocommerce -msgid "Pages" -msgstr "Halaman" - -#: admin/woocommerce-admin-content.php:45 -#@ woocommerce -msgid "This is where important store page are defined. You can also set up other pages (such as a Terms page) here." -msgstr "Ini adalah di mana halaman toko yang penting didefinisikan. Anda juga dapat mengatur halaman lain (seperti halaman Syarat) di sini." - -#: admin/woocommerce-admin-content.php:46 -#@ woocommerce -msgid "Options for how things like price, images and weights appear in your product catalog." -msgstr "Pilihan untuk bagaimana hal-hal seperti harga, gambar dan berat muncul di katalog produk Anda." - -#: admin/woocommerce-admin-content.php:47 -#@ woocommerce -msgid "Options concerning stock and stock notices." -msgstr "Pilihan mengenai catatan pesanan dan pesanan." - -#: admin/woocommerce-admin-content.php:48 -#@ woocommerce -msgid "Options concerning tax, including international and local tax rates." -msgstr "Pilihan mengenai pajak, termasuk tarif pajak internasional dan lokal." - -#: admin/woocommerce-admin-content.php:49 -#@ woocommerce -msgid "This is where shipping options are defined, and shipping methods are set up." -msgstr "Di sinilah pilihan pengiriman didefinisikan, dan metode pengiriman ditetapkan." - -#: admin/woocommerce-admin-content.php:50 -#@ woocommerce -msgid "Payment Methods" -msgstr "Metode Pembayaran" - -#: admin/woocommerce-admin-content.php:50 -#@ woocommerce -msgid "This is where payment gateway options are defined, and individual payment gateways are set up." -msgstr "Di sinilah opsi gateway pembayaran didefinisikan, dan gateway pembayaran individual ditetapkan." - -#: admin/woocommerce-admin-content.php:51 -#: admin/woocommerce-admin-settings.php:187 -#@ woocommerce -msgid "Emails" -msgstr "Email" - -#: admin/woocommerce-admin-content.php:51 -#@ woocommerce -msgid "Here you can customise the way WooCommerce emails appear." -msgstr "Di sini Anda dapat menyesuaikan tampilan WooCommerce email." - -#: admin/woocommerce-admin-content.php:52 -#: admin/woocommerce-admin-settings.php:188 -#@ woocommerce -msgid "Integration" -msgstr "Integrasi" - -#: admin/woocommerce-admin-content.php:52 -#@ woocommerce -msgid "The integration section contains options for third party services which integrate with WooCommerce." -msgstr "Bagian integrasi berisi opsi untuk layanan pihak ketiga yang terintegrasi dengan WooCommerce." - -#: admin/woocommerce-admin-content.php:57 -#: admin/woocommerce-admin-init.php:64 -#@ woocommerce -msgid "Reports" -msgstr "Laporan" - -#: admin/woocommerce-admin-content.php:59 -#@ woocommerce -msgid "The reports section can be accessed from the left-hand navigation menu. Here you can generate reports for sales and customers." -msgstr "Bagian laporan dapat diakses dari menu navigasi sebelah kiri. Di sini Anda dapat membuat laporan penjualan dan pelanggan." - -#: admin/woocommerce-admin-content.php:60 -#: admin/woocommerce-admin-reports.php:27 -#: admin/woocommerce-admin-reports.php:986 -#: admin/woocommerce-admin-reports.php:1082 -#: admin/woocommerce-admin-reports.php:1199 -#@ woocommerce -msgid "Sales" -msgstr "Penjualan" - -#: admin/woocommerce-admin-content.php:60 -#@ woocommerce -msgid "Reports for sales based on date, top sellers and top earners." -msgstr "Laporan untuk penjualan berdasarkan tanggal, penjual terbanyak dan penerima terbanyak." - -#: admin/woocommerce-admin-content.php:62 -#: admin/woocommerce-admin-reports.php:88 -#@ woocommerce -msgid "Customers" -msgstr "Pelanggan" - -#: admin/woocommerce-admin-content.php:62 -#@ woocommerce -msgid "Customer reports, such as signups per day." -msgstr "Laporan pelanggan, seperti pendaftaran per hari." - -#: admin/woocommerce-admin-content.php:63 -#@ woocommerce -msgid "Stock reports for low stock and out of stock items." -msgstr "Laporan stok untuk stok kurang dan stok kosong." - -#: admin/woocommerce-admin-content.php:68 -#: admin/woocommerce-admin-dashboard.php:142 -#: woocommerce.php:1024 -#@ woocommerce -msgid "Orders" -msgstr "Pesanan" - -#: admin/woocommerce-admin-content.php:70 -#@ woocommerce -msgid "The orders section can be accessed from the left-hand navigation menu. Here you can view and manage customer orders." -msgstr "Bagian pesanan dapat diakses dari menu navigasi kiri-tangan. Di sini Anda dapat melihat dan mengelola pesanan pelanggan." - -#: admin/woocommerce-admin-content.php:71 -#@ woocommerce -msgid "Orders can also be added from this section if you want to set them up for a customer manually." -msgstr "Pesanan juga dapat ditambahkan dari bagian ini jika Anda ingin mengatur mereka untuk pelanggan secara manual." - -#: admin/woocommerce-admin-content.php:78 -#@ woocommerce -msgid "Coupons can be managed from this section. Once added, customers will be able to enter coupon codes on the cart/checkout page. If a customer uses a coupon code they will be viewable when viewing orders." -msgstr "Kupon dapat dikelola dari bagian ini. Setelah ditambahkan, pelanggan akan dapat memasukkan kode kupon di keranjang belanja / halaman checkout. Jika pelanggan menggunakan kode kupon mereka akan dapat dilihat ketika melihat pesanan." - -#: admin/woocommerce-admin-content.php:82 -#@ woocommerce -msgid "For more information:" -msgstr "Untuk informasi lebih lanjut:" - -#: admin/woocommerce-admin-dashboard.php:40 -#@ woocommerce -msgid "Monthly Sales" -msgstr "Penjualan Bulanan" - -#: admin/woocommerce-admin-dashboard.php:43 -#@ woocommerce -msgid "WooCommerce Right Now" -msgstr "WooCommerce Sekarang Juga" - -#: admin/woocommerce-admin-dashboard.php:44 -#@ woocommerce -msgid "WooCommerce Recent Orders" -msgstr "WooCommerce Pesanan Terbaru" - -#: admin/woocommerce-admin-dashboard.php:45 -#: classes/widgets/class-wc-widget-recent-reviews.php:33 -#@ woocommerce -msgid "WooCommerce Recent Reviews" -msgstr "WooCommerce Ulasan Terbaru" - -#: admin/woocommerce-admin-dashboard.php:78 -#@ woocommerce -msgid "Shop Content" -msgstr "Isi Toko" - -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:84 -#: admin/woocommerce-admin-functions.php:194 -#: admin/woocommerce-admin-init.php:771 -#: admin/woocommerce-admin-reports.php:985 -#: admin/woocommerce-admin-reports.php:1081 -#: templates/cart/cart.php:28 -#: templates/checkout/form-pay.php:19 -#: templates/checkout/review-order.php:21 -#: templates/emails/admin-new-order.php:22 -#: templates/emails/customer-completed-order.php:23 -#: templates/emails/customer-invoice.php:27 -#: templates/emails/customer-note.php:27 -#: templates/emails/customer-processing-order.php:23 -#: templates/order/order-details.php:20 -#: woocommerce.php:949 -#@ woocommerce -msgid "Product" -msgid_plural "Products" -msgstr[0] "Produk" -msgstr[1] "Produk" - -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:98 -#: woocommerce.php:790 -#@ woocommerce -msgid "Product Category" -msgid_plural "Product Categories" -msgstr[0] "Kategori Produk" -msgstr[1] "Kategori Produk" - -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:112 -#: woocommerce.php:826 -#@ woocommerce -msgid "Product Tag" -msgid_plural "Product Tags" -msgstr[0] "Tags Produk" -msgstr[1] "Tags Produk" - -#: admin/woocommerce-admin-dashboard.php:126 -#@ woocommerce -msgid "Attribute" -msgid_plural "Attributes" -msgstr[0] "Atribut" -msgstr[1] "Atribut" - -#: admin/woocommerce-admin-dashboard.php:148 -#@ woocommerce -msgid "Pending" -msgstr "Tertunda" - -#: admin/woocommerce-admin-dashboard.php:162 -#@ woocommerce -msgid "On-Hold" -msgstr "On-Hold" - -#: admin/woocommerce-admin-dashboard.php:190 -#@ woocommerce -msgid "Completed" -msgstr "Selesai" - -#: admin/woocommerce-admin-dashboard.php:207 -#, php-format -#@ woocommerce -msgid "You are using WooCommerce %s." -msgstr "Anda menggunakan WooCommerce %s." - -#: admin/woocommerce-admin-dashboard.php:238 -#@ woocommerce -msgid "l jS \\of F Y h:i:s A" -msgstr "l jS \\of F Y h:i:s A" - -#: admin/woocommerce-admin-dashboard.php:239 -#@ woocommerce -msgid "item" -msgid_plural "items" -msgstr[0] "barang" -msgstr[1] "barang" - -#: admin/woocommerce-admin-dashboard.php:239 -#: classes/shortcodes/class-wc-shortcode-pay.php:98 -#: templates/checkout/thankyou.php:48 -#@ woocommerce -msgid "Total:" -msgstr "Jumlah:" - -#: admin/woocommerce-admin-dashboard.php:245 -#@ woocommerce -msgid "There are no product orders yet." -msgstr "Beum ada pesanan produk." - -#: admin/woocommerce-admin-dashboard.php:279 -#: classes/abstracts/abstract-wc-product.php:967 -#: templates/single-product/review.php:27 -#: templates/single-product-reviews.php:43 -#@ woocommerce -msgid "out of 5" -msgstr "dari 5" - -#: admin/woocommerce-admin-dashboard.php:287 -#@ woocommerce -msgid "There are no product reviews yet." -msgstr "Belum ada review produk." - -#: admin/woocommerce-admin-reports.php:237 -#: admin/woocommerce-admin-reports.php:497 -#: admin/woocommerce-admin-reports.php:702 -#: admin/woocommerce-admin-reports.php:883 -#@ woocommerce -msgid "Number of sales" -msgstr "Jumlah penjualan" - -#: admin/woocommerce-admin-reports.php:232 -#: admin/woocommerce-admin-reports.php:497 -#: admin/woocommerce-admin-reports.php:702 -#: admin/woocommerce-admin-reports.php:883 -#@ woocommerce -msgid "Sales amount" -msgstr "Jumlah penjualan" - -#: admin/woocommerce-admin-functions.php:184 -#: admin/woocommerce-admin-install.php:222 -#@ woocommerce -msgid "Order Received" -msgstr "Pesanan Diterima" - -#: admin/woocommerce-admin-functions.php:186 -#@ woocommerce -msgid "Thank you, we are now processing your order. Your order's details are below." -msgstr "Terima kasih, kami sedang memproses pesanan Anda. Rincian pesanan Anda di bawah." - -#: admin/woocommerce-admin-functions.php:188 -#: classes/shortcodes/class-wc-shortcode-pay.php:90 -#: templates/checkout/thankyou.php:40 -#: templates/emails/customer-completed-order.php:18 -#: templates/emails/customer-invoice.php:22 -#: templates/emails/customer-note.php:22 -#: templates/emails/customer-processing-order.php:18 -#@ woocommerce -msgid "Order:" -msgstr "Pesanan:" - -#: admin/woocommerce-admin-functions.php:195 -#: templates/cart/cart.php:30 -#: templates/emails/admin-new-order.php:23 -#: templates/emails/customer-completed-order.php:24 -#: templates/emails/customer-invoice.php:28 -#: templates/emails/customer-note.php:28 -#: templates/emails/customer-processing-order.php:24 -#@ woocommerce -msgid "Quantity" -msgstr "Kuantitas" - -#: admin/woocommerce-admin-functions.php:208 -#@ woocommerce -msgid "Order total:" -msgstr "Total pesanan:" - -#: admin/woocommerce-admin-functions.php:214 -#: templates/emails/admin-new-order.php:50 -#: templates/emails/customer-completed-order.php:51 -#: templates/emails/customer-note.php:55 -#: templates/emails/customer-processing-order.php:51 -#: templates/emails/plain/admin-new-order.php:38 -#: templates/order/order-details.php:88 -#@ woocommerce -msgid "Customer details" -msgstr "Rincian Pelanggan" - -#: admin/woocommerce-admin-functions.php:220 -#: templates/emails/email-addresses.php:18 -#: templates/emails/plain/email-addresses.php:12 -#@ woocommerce -msgid "Billing address" -msgstr "Alamat Penagihan" - -#: admin/woocommerce-admin-functions.php:227 -#: templates/emails/email-addresses.php:28 -#: templates/emails/plain/email-addresses.php:17 -#@ woocommerce -msgid "Shipping address" -msgstr "Alamat pengiriman" - -#: admin/woocommerce-admin-functions.php:459 -#@ woocommerce -msgid "Could not compile woocommerce.less:" -msgstr "Tidak dapat mengkompilasi woocommerce.less:" - -#: admin/woocommerce-admin-functions.php:480 -#: admin/woocommerce-admin-functions.php:481 -#@ woocommerce -msgid "Mark processing" -msgstr "Tandai pengolahan" - -#: admin/woocommerce-admin-functions.php:483 -#: admin/woocommerce-admin-functions.php:484 -#@ woocommerce -msgid "Mark completed" -msgstr "Tandai selesai" - -#: admin/woocommerce-admin-functions.php:521 -#@ woocommerce -msgid "Order status changed by bulk edit:" -msgstr "Status pesanan diubah oleh edit massal:" - -#: admin/woocommerce-admin-functions.php:544 -#, php-format -#@ default -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "Status pesanan berubah" -msgstr[1] "Status pesanan berubah" - -#. translators: plugin header field 'Name' -#: admin/woocommerce-admin-content.php:83 -#: admin/woocommerce-admin-init.php:62 -#: classes/class-wc-order.php:1183 -#: classes/class-wc-order.php:1185 -#: classes/class-wc-order.php:1188 -#: woocommerce.php:0 -#@ woocommerce -msgid "WooCommerce" -msgstr "WooCommerce" - -#: admin/woocommerce-admin-init.php:86 -#@ woocommerce -msgid "WooCommerce Settings" -msgstr "Pengaturan WooCommerce" - -#: admin/woocommerce-admin-init.php:87 -#@ woocommerce -msgid "WooCommerce Status" -msgstr "Status WooCommerce" - -#: admin/woocommerce-admin-init.php:140 -#: admin/woocommerce-admin-init.php:142 -#: woocommerce.php:1015 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Pesanan" - -#: admin/includes/notice-install.php:6 -#@ woocommerce -msgid "Welcome to WooCommerce – You're almost ready to start selling :)" -msgstr "Selamat Datang di WooCommerce – Anda hampir siap untuk melakukan penjualan :)" - -#: admin/includes/notice-install.php:7 -#@ woocommerce -msgid "Install WooCommerce Pages" -msgstr "Instal Halaman WooCommerce" - -#: admin/includes/notice-install.php:7 -#@ woocommerce -msgid "Skip setup" -msgstr "Melewati pengaturan" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:351 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:352 -#@ default -msgid "Documentation" -msgstr "Dokumentasi" - -#: admin/woocommerce-admin-init.php:449 -#@ woocommerce -msgid "Remove this attribute?" -msgstr "Hapus atribut ini?" - -#: admin/woocommerce-admin-init.php:457 -#@ woocommerce -msgid "Enter a name for the new attribute term:" -msgstr "Masukkan nama untuk atribut baru:" - -#: admin/woocommerce-admin-init.php:459 -#@ woocommerce -msgid "Calculate line taxes? This will calculate taxes based on the customers country. If no billing/shipping is set it will use the store base country." -msgstr "Hitung pajak ini? Hal ini akan menghitung pajak berdasarkan negara pelanggan. Jika tidak ada penagihan/pengiriman yang ditetapkan maka akan menggunakan basis negara toko." - -#: admin/woocommerce-admin-init.php:460 -#@ woocommerce -msgid "Copy billing information to shipping information? This will remove any currently entered shipping information." -msgstr "Salin informasi penagihan ke informasi pengiriman? Ini akan menghapus semua informasi pengiriman yang ada." - -#: admin/woocommerce-admin-init.php:461 -#@ woocommerce -msgid "Load the customer's billing information? This will remove any currently entered billing information." -msgstr "Memuat informasi penagihan pelanggan? Ini akan menghapus informasi penagihan yang ada." - -#: admin/woocommerce-admin-init.php:462 -#@ woocommerce -msgid "Load the customer's shipping information? This will remove any currently entered shipping information." -msgstr "Memuat informasi pengiriman pelanggan? Ini akan menghapus semua informasi pengiriman yang ada." - -#: admin/woocommerce-admin-init.php:466 -#@ woocommerce -msgid "No customer selected" -msgstr "Tidak ada pelanggan yang dipilih" - -#: admin/woocommerce-admin-init.php:675 -#, php-format -#@ woocommerce -msgid "Product updated. View Product" -msgstr "Produk sudah diaktualisasi. Meliht Produk" - -#: admin/woocommerce-admin-init.php:676 -#: admin/woocommerce-admin-init.php:691 -#: admin/woocommerce-admin-init.php:706 -#@ woocommerce -msgid "Custom field updated." -msgstr "Kolom kustom diperbarui." - -#: admin/woocommerce-admin-init.php:677 -#: admin/woocommerce-admin-init.php:692 -#: admin/woocommerce-admin-init.php:707 -#@ woocommerce -msgid "Custom field deleted." -msgstr "Kolom kustom dihapus." - -#: admin/woocommerce-admin-init.php:678 -#@ woocommerce -msgid "Product updated." -msgstr "Produk diperbarui." - -#: admin/woocommerce-admin-init.php:679 -#, php-format -#@ woocommerce -msgid "Product restored to revision from %s" -msgstr "Produk dikembalikan ke revisi dari %s" - -#: admin/woocommerce-admin-init.php:680 -#, php-format -#@ woocommerce -msgid "Product published. View Product" -msgstr "Produk dipublikasikan. Melihat Produk" - -#: admin/woocommerce-admin-init.php:681 -#@ woocommerce -msgid "Product saved." -msgstr "Produk disimpan." - -#: admin/woocommerce-admin-init.php:682 -#, php-format -#@ woocommerce -msgid "Product submitted. Preview Product" -msgstr "Produk disubmit. Meninjau Produk" - -#: admin/woocommerce-admin-init.php:683 -#, php-format -#@ woocommerce -msgid "Product scheduled for: %1$s. Preview Product" -msgstr "Produk dijadwalkan untuk: %1$s. Meninjau Produk" - -#: admin/woocommerce-admin-init.php:684 -#: admin/woocommerce-admin-init.php:699 -#: admin/woocommerce-admin-init.php:714 -#@ woocommerce -msgid "M j, Y @ G:i" -msgstr "M j, Y @ G:i" - -#: admin/woocommerce-admin-init.php:685 -#, php-format -#@ woocommerce -msgid "Product draft updated. Preview Product" -msgstr "Rancangan produk diperbarui. Meninjau Produk" - -#: admin/woocommerce-admin-init.php:690 -#: admin/woocommerce-admin-init.php:693 -#: admin/woocommerce-admin-init.php:695 -#@ woocommerce -msgid "Order updated." -msgstr "Pesanan diperbarui." - -#: admin/woocommerce-admin-init.php:694 -#, php-format -#@ woocommerce -msgid "Order restored to revision from %s" -msgstr "Pesanan dikembalikan ke revisi dari% s" - -#: admin/woocommerce-admin-init.php:696 -#@ woocommerce -msgid "Order saved." -msgstr "Pesanan disimpan." - -#: admin/woocommerce-admin-init.php:697 -#@ woocommerce -msgid "Order submitted." -msgstr "Pesanan telah disubmit." - -#: admin/woocommerce-admin-init.php:698 -#, php-format -#@ woocommerce -msgid "Order scheduled for: %1$s." -msgstr "Pesanan dijadwalkan untuk: %1$s." - -#: admin/woocommerce-admin-init.php:700 -#@ woocommerce -msgid "Order draft updated." -msgstr "Rancangan pesanan diperbarui." - -#: admin/woocommerce-admin-init.php:705 -#: admin/woocommerce-admin-init.php:708 -#: admin/woocommerce-admin-init.php:710 -#@ woocommerce -msgid "Coupon updated." -msgstr "Kupon diperbarui." - -#: admin/woocommerce-admin-init.php:709 -#, php-format -#@ woocommerce -msgid "Coupon restored to revision from %s" -msgstr "Kupon dikembalikan ke revisi dari% s" - -#: admin/woocommerce-admin-init.php:711 -#@ woocommerce -msgid "Coupon saved." -msgstr "Kupon disimpan." - -#: admin/woocommerce-admin-init.php:712 -#@ woocommerce -msgid "Coupon submitted." -msgstr "Kupon telah disubmit." - -#: admin/woocommerce-admin-init.php:713 -#, php-format -#@ woocommerce -msgid "Coupon scheduled for: %1$s." -msgstr "Kupon dijadwalkan untuk: %1$s." - -#: admin/woocommerce-admin-init.php:715 -#@ woocommerce -msgid "Coupon draft updated." -msgstr "Rancangan Kupon diperbarui." - -#: admin/woocommerce-admin-init.php:732 -#@ woocommerce -msgid "Order notes" -msgstr "Catatan Pesanan" - -#: admin/woocommerce-admin-install.php:192 -#@ woocommerce -msgctxt "page_slug" -msgid "shop" -msgstr "toko" - -#: admin/woocommerce-admin-install.php:192 -#@ woocommerce -msgid "Shop" -msgstr "Toko" - -#: admin/woocommerce-admin-install.php:195 -#@ woocommerce -msgctxt "page_slug" -msgid "cart" -msgstr "keranjang" - -#: admin/woocommerce-admin-install.php:195 -#: admin/woocommerce-admin-status.php:277 -#: assets/js/admin/editor_plugin_lang.php:15 -#: classes/widgets/class-wc-widget-cart.php:61 -#@ woocommerce -msgid "Cart" -msgstr "Keranjang" - -#: admin/woocommerce-admin-install.php:198 -#@ woocommerce -msgctxt "page_slug" -msgid "checkout" -msgstr "checkout" - -#: admin/woocommerce-admin-install.php:201 -#@ woocommerce -msgctxt "page_slug" -msgid "my-account" -msgstr "akun-saya" - -#: admin/woocommerce-admin-install.php:201 -#: admin/woocommerce-admin-status.php:293 -#: assets/js/admin/editor_plugin_lang.php:18 -#: templates/checkout/thankyou.php:30 -#@ woocommerce -msgid "My Account" -msgstr "Akun Saya" - -#: admin/woocommerce-admin-install.php:207 -#@ woocommerce -msgctxt "page_slug" -msgid "edit-address" -msgstr "mengedit-alamat" - -#: admin/woocommerce-admin-install.php:207 -#@ woocommerce -msgid "Edit My Address" -msgstr "Mengedit Alamat saya" - -#: admin/woocommerce-admin-install.php:210 -#@ woocommerce -msgctxt "page_slug" -msgid "view-order" -msgstr "melihat-pesanan" - -#: admin/woocommerce-admin-install.php:210 -#: admin/woocommerce-admin-status.php:301 -#: assets/js/admin/editor_plugin_lang.php:21 -#: woocommerce.php:1031 -#: woocommerce.php:1032 -#@ woocommerce -msgid "View Order" -msgstr "Lihat Pesanan" - -#: admin/woocommerce-admin-install.php:213 -#@ woocommerce -msgctxt "page_slug" -msgid "change-password" -msgstr "merubah-katasandi" - -#: admin/woocommerce-admin-install.php:213 -#: admin/woocommerce-admin-status.php:305 -#: assets/js/admin/editor_plugin_lang.php:20 -#@ woocommerce -msgid "Change Password" -msgstr "Ubah Kata Sandi" - -#: admin/woocommerce-admin-install.php:219 -#@ woocommerce -msgctxt "page_slug" -msgid "pay" -msgstr "membayar" - -#: admin/woocommerce-admin-install.php:219 -#@ woocommerce -msgid "Checkout → Pay" -msgstr "Checkout → Membayar" - -#: admin/woocommerce-admin-install.php:222 -#@ woocommerce -msgctxt "page_slug" -msgid "order-received" -msgstr "pesanan-diterima" - -#: admin/woocommerce-admin-reports.php:36 -#@ woocommerce -msgid "Sales by day" -msgstr "Penjualan berdasarkan hari" - -#: admin/woocommerce-admin-reports.php:41 -#@ woocommerce -msgid "Sales by month" -msgstr "Penjualan berdasarkan bulan" - -#: admin/woocommerce-admin-reports.php:46 -#@ woocommerce -msgid "Taxes by month" -msgstr "Pajak berdasarkan bulan" - -#: admin/woocommerce-admin-reports.php:51 -#@ woocommerce -msgid "Product Sales" -msgstr "Penjualan Produk" - -#: admin/woocommerce-admin-reports.php:56 -#@ woocommerce -msgid "Top sellers" -msgstr "Terlaris" - -#: admin/woocommerce-admin-reports.php:61 -#@ woocommerce -msgid "Top earners" -msgstr "Penerima terbanyak" - -#: admin/woocommerce-admin-reports.php:369 -#@ woocommerce -msgid "Total sales" -msgstr "Jumlah penjualan" - -#: admin/woocommerce-admin-reports.php:371 -#: admin/woocommerce-admin-reports.php:377 -#: admin/woocommerce-admin-reports.php:383 -#: admin/woocommerce-admin-reports.php:389 -#: admin/woocommerce-admin-reports.php:395 -#: admin/woocommerce-admin-reports.php:401 -#: admin/woocommerce-admin-reports.php:644 -#: admin/woocommerce-admin-reports.php:650 -#: admin/woocommerce-admin-reports.php:656 -#: admin/woocommerce-admin-reports.php:662 -#: admin/woocommerce-admin-reports.php:828 -#: admin/woocommerce-admin-reports.php:834 -#: admin/woocommerce-admin-reports.php:840 -#: admin/woocommerce-admin-reports.php:846 -#: admin/woocommerce-admin-reports.php:1364 -#: admin/woocommerce-admin-reports.php:1370 -#: admin/woocommerce-admin-reports.php:1376 -#: admin/woocommerce-admin-reports.php:1810 -#: admin/woocommerce-admin-reports.php:1816 -#: admin/woocommerce-admin-reports.php:1822 -#: admin/woocommerce-admin-reports.php:1828 -#: admin/woocommerce-admin-reports.php:1834 -#: admin/woocommerce-admin-reports.php:1840 -#: admin/woocommerce-admin-reports.php:2304 -#: admin/woocommerce-admin-reports.php:2315 -#: admin/woocommerce-admin-reports.php:2326 -#@ woocommerce -msgid "n/a" -msgstr "n/a" - -#: admin/woocommerce-admin-reports.php:375 -#@ woocommerce -msgid "Total orders" -msgstr "Jumlah pesanan" - -#: admin/woocommerce-admin-reports.php:377 -#: admin/woocommerce-admin-reports.php:650 -#: admin/woocommerce-admin-reports.php:834 -#@ woocommerce -msgid "items" -msgstr "barang" - -#: admin/woocommerce-admin-reports.php:381 -#@ woocommerce -msgid "Average order total" -msgstr "Rata-rata total pesanan" - -#: admin/woocommerce-admin-reports.php:387 -#@ woocommerce -msgid "Average order items" -msgstr "Rata-rata pesanan barang" - -#: admin/woocommerce-admin-reports.php:393 -#@ woocommerce -msgid "Discounts used" -msgstr "Diskon digunakan" - -#: admin/woocommerce-admin-reports.php:399 -#@ woocommerce -msgid "Total shipping costs" -msgstr "Jumlah biaya pengiriman" - -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1356 -#@ woocommerce -msgid "From:" -msgstr "Dari:" - -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1356 -#@ woocommerce -msgid "To:" -msgstr "Untuk:" - -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:821 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1229 -#: admin/woocommerce-admin-reports.php:1356 -#: admin/woocommerce-admin-reports.php:1489 -#: admin/woocommerce-admin-reports.php:2293 -#: admin/woocommerce-admin-reports.php:2476 -#@ woocommerce -msgid "Show" -msgstr "Menunjukkan" - -#: admin/woocommerce-admin-reports.php:642 -#@ woocommerce -msgid "Total sales in range" -msgstr "Total penjualan di kisaran" - -#: admin/woocommerce-admin-reports.php:648 -#@ woocommerce -msgid "Total orders in range" -msgstr "Jumlah pesanan dalam kisaran" - -#: admin/woocommerce-admin-reports.php:654 -#@ woocommerce -msgid "Average order total in range" -msgstr "Pesanan total rata-rata dalam kisaran" - -#: admin/woocommerce-admin-reports.php:660 -#@ woocommerce -msgid "Average order items in range" -msgstr "Rata-rata pesanan barang dalam kisaran" - -#: admin/woocommerce-admin-reports.php:668 -#@ woocommerce -msgid "Sales in range" -msgstr "Penjualan dalam kisaran" - -#: admin/woocommerce-admin-reports.php:815 -#: admin/woocommerce-admin-reports.php:2287 -#@ woocommerce -msgid "Year:" -msgstr "Tahun:" - -#: admin/woocommerce-admin-reports.php:826 -#@ woocommerce -msgid "Total sales for year" -msgstr "Jumlah penjualan untuk tahun" - -#: admin/woocommerce-admin-reports.php:832 -#@ woocommerce -msgid "Total orders for year" -msgstr "Jumlah pesanan untuk tahun" - -#: admin/woocommerce-admin-reports.php:838 -#@ woocommerce -msgid "Average order total for year" -msgstr "Pesanan total rata-rata untuk tahun" - -#: admin/woocommerce-admin-reports.php:844 -#@ woocommerce -msgid "Average order items for year" -msgstr "Rata-rata pesanan barang untuk tahun" - -#: admin/woocommerce-admin-reports.php:852 -#@ woocommerce -msgid "Monthly sales for year" -msgstr "Penjualan bulanan untuk tahun" - -#: admin/woocommerce-admin-reports.php:1000 -#@ woocommerce -msgid "Product does not exist" -msgstr "Produk tidak ada" - -#: admin/woocommerce-admin-reports.php:1097 -#@ woocommerce -msgid "Product no longer exists" -msgstr "Produk tidak ada lagi" - -#: admin/woocommerce-admin-reports.php:1194 -#, php-format -#@ woocommerce -msgid "Sales for %s:" -msgstr "Penjualan untuk %s:" - -#: admin/woocommerce-admin-reports.php:1198 -#: admin/woocommerce-admin-reports.php:2335 -#@ woocommerce -msgid "Month" -msgstr "Bulan" - -#: admin/woocommerce-admin-reports.php:1219 -#@ woocommerce -msgid "No sales :(" -msgstr "Tidak ada penjualan :(" - -#: admin/woocommerce-admin-reports.php:1808 -#@ woocommerce -msgid "Total customers" -msgstr "Jumlah pelanggan" - -#: admin/woocommerce-admin-reports.php:1814 -#@ woocommerce -msgid "Total customer sales" -msgstr "Jumlah penjualan pelanggan" - -#: admin/woocommerce-admin-reports.php:1820 -#@ woocommerce -msgid "Total guest sales" -msgstr "Jumlah penjualan tamu" - -#: admin/woocommerce-admin-reports.php:1826 -#@ woocommerce -msgid "Total customer orders" -msgstr "Jumlah pesanan pelanggan" - -#: admin/woocommerce-admin-reports.php:1832 -#@ woocommerce -msgid "Total guest orders" -msgstr "Jumlah pesanan tamu" - -#: admin/woocommerce-admin-reports.php:1838 -#@ woocommerce -msgid "Average orders per customer" -msgstr "Rata-rata pesanan per pelanggan" - -#: admin/woocommerce-admin-reports.php:1846 -#@ woocommerce -msgid "Signups per day" -msgstr "Pendaftaran per hari" - -#: admin/woocommerce-admin-reports.php:2067 -#@ woocommerce -msgid "Low stock" -msgstr "Stok kurang" - -#: admin/woocommerce-admin-reports.php:2090 -#: admin/woocommerce-admin-reports.php:2129 -#, php-format -#@ woocommerce -msgid "%d in stock" -msgid_plural "%d in stock" -msgstr[0] "%d di stok" -msgstr[1] "%d di stok" - -#: admin/woocommerce-admin-reports.php:2095 -#@ woocommerce -msgid "No products are low in stock." -msgstr "Tidak ada produk yang kurang dalam persediaan." - -#: admin/woocommerce-admin-reports.php:2134 -#@ woocommerce -msgid "No products are out in stock." -msgstr "Tidak ada produk yang habis di stok." - -#: admin/woocommerce-admin-reports.php:2298 -#@ woocommerce -msgid "Total taxes for year" -msgstr "Jumlah pajak untuk tahun" - -#: admin/woocommerce-admin-reports.php:2309 -#@ woocommerce -msgid "Total product taxes for year" -msgstr "Jumlah pajak produk untuk tahun" - -#: admin/woocommerce-admin-reports.php:2320 -#@ woocommerce -msgid "Total shipping tax for year" -msgstr "Pajak Pengiriman total untuk tahun" - -#: admin/woocommerce-admin-reports.php:2336 -#@ woocommerce -msgid "Total Sales" -msgstr "Jumlah Penjualan" - -#: admin/woocommerce-admin-reports.php:2336 -#@ woocommerce -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "Ini adalah jumlah dari kolom 'Order Total' di dalam pesanan anda." - -#: admin/woocommerce-admin-reports.php:2337 -#@ woocommerce -msgid "Total Shipping" -msgstr "Jumlah Pengiriman" - -#: admin/woocommerce-admin-reports.php:2337 -#@ woocommerce -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "Ini adalah jumlah total dari kolom 'Shipping Total' di dalam pesanan anda." - -#: admin/woocommerce-admin-reports.php:2338 -#@ woocommerce -msgid "Total Product Taxes" -msgstr "Jumlah Pajak Produk" - -#: admin/woocommerce-admin-reports.php:2338 -#@ woocommerce -msgid "This is the sum of the 'Cart Tax' field within your orders." -msgstr "Ini adalah jumlah dari kolom 'Cart Tax' di dalam pesanan anda." - -#: admin/woocommerce-admin-reports.php:2339 -#@ woocommerce -msgid "Total Shipping Taxes" -msgstr "Jumlah Pajak Pengiriman" - -#: admin/woocommerce-admin-reports.php:2339 -#@ woocommerce -msgid "This is the sum of the 'Shipping Tax' field within your orders." -msgstr "Ini adalah jumlah dari kolom 'Shipping Tax' di dalam pesanan anda." - -#: admin/woocommerce-admin-reports.php:2340 -#@ woocommerce -msgid "Total Taxes" -msgstr "Jumlah Pajak" - -#: admin/woocommerce-admin-reports.php:2340 -#@ woocommerce -msgid "This is the sum of the 'Cart Tax' and 'Shipping Tax' fields within your orders." -msgstr "Ini adalah jumlah dari kolom 'Cart Tax' dan 'Shipping Tax' di dalam pesanan anda." - -#: admin/woocommerce-admin-reports.php:2341 -#@ woocommerce -msgid "Net profit" -msgstr "Laba bersih" - -#: admin/woocommerce-admin-reports.php:2341 -#@ woocommerce -msgid "Total sales minus shipping and tax." -msgstr "Total penjualan dikurangi biaya pengiriman dan pajak." - -#: admin/woocommerce-admin-reports.php:2386 -#@ woocommerce -msgid "Toggle tax rows" -msgstr "Beralih baris pajak" - -#: admin/woocommerce-admin-settings.php:45 -#: woocommerce.php:1723 -#@ woocommerce -msgid "Action failed. Please refresh the page and retry." -msgstr "Aksi gagal. Silahkan memperbaharui halaman dan mencoba lagi." - -#: admin/woocommerce-admin-settings.php:162 -#@ woocommerce -msgid "Your settings have been saved." -msgstr "Pengaturan Anda telah disimpan." - -#: admin/woocommerce-admin-settings.php:208 -#, php-format -#@ woocommerce -msgid "More functionality and gateway options available via WC official extensions." -msgstr "Fungsi lebih dan pilihan gateway tersedia melalui WC official extensions." - -#: admin/woocommerce-admin-settings.php:386 -#: classes/integrations/shareyourcart/views/admin-page.php:110 -#: classes/integrations/shareyourcart/views/button-settings-page.php:120 -#@ woocommerce -msgid "Save changes" -msgstr "Simpan perubahan" - -#: admin/woocommerce-admin-settings.php:427 -#@ woocommerce -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "Perubahan yang Anda buat akan hilang jika Anda pindah dari halaman ini." - -#: admin/woocommerce-admin-settings.php:799 -#@ woocommerce -msgid "Hard Crop" -msgstr "Hard Crop" - -#: admin/woocommerce-admin-settings.php:824 -#@ woocommerce -msgid "Select a page…" -msgstr "Pilih halaman…" - -#: admin/woocommerce-admin-settings.php:847 -#@ woocommerce -msgid "Choose a country…" -msgstr "Pilih negara…" - -#: admin/woocommerce-admin-settings.php:867 -#@ woocommerce -msgid "Choose countries…" -msgstr "Pilih negara…" - -#: admin/woocommerce-admin-status.php:512 -#@ woocommerce -msgid "This tool will clear the product/shop transients cache." -msgstr "Fungsi ini akan menghapus cache transien produk/toko." - -#: admin/woocommerce-admin-status.php:525 -#@ woocommerce -msgid "Capabilities" -msgstr "Kemampuan" - -#: admin/woocommerce-admin-status.php:527 -#@ woocommerce -msgid "This tool will reset the admin, customer and shop_manager roles to default. Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "Alat ini akan mengatur ulang peran admin, pelanggan dan shop_manager ke default. Gunakan ini jika pengguna Anda tidak dapat mengakses semua halaman admin WooCommerce." - -#: admin/woocommerce-admin-status.php:537 -#@ woocommerce -msgid "Product Transients Cleared" -msgstr "Transien Produk Dihapus" - -#: admin/woocommerce-admin-status.php:586 -#@ woocommerce -msgid "Roles successfully reset" -msgstr "Peran berhasil di-reset" - -#: admin/woocommerce-admin-status.php:607 -#, php-format -#@ woocommerce -msgid "There was an error calling %s::%s" -msgstr "Ada kesalahan memanggil %s::%s" - -#: admin/woocommerce-admin-status.php:610 -#, php-format -#@ woocommerce -msgid "There was an error calling %s" -msgstr "Ada panggilan error %s" - -#: admin/woocommerce-admin-status.php:236 -#@ woocommerce -msgid "by" -msgstr "oleh" - -#: admin/woocommerce-admin-status.php:236 -#@ woocommerce -msgid "version" -msgstr "versi" - -#: admin/woocommerce-admin-status.php:77 -#@ woocommerce -msgid "Home URL" -msgstr "URL Rumah" - -#: admin/woocommerce-admin-status.php:81 -#@ woocommerce -msgid "Site URL" -msgstr "URL Situs" - -#: admin/woocommerce-admin-status.php:259 -#@ woocommerce -msgid "Force SSL" -msgstr "Paksa SSL" - -#: admin/woocommerce-admin-status.php:329 -#@ woocommerce -msgid "Page not set" -msgstr "Halaman tidak diatur" - -#: admin/woocommerce-admin-status.php:344 -#, php-format -#@ woocommerce -msgid "Page does not contain the shortcode: %s" -msgstr "Halaman tidak mengandung shortcode: %s" - -#: admin/woocommerce-admin-status.php:369 -#@ woocommerce -msgid "Order Statuses" -msgstr "Status Pesanan" - -#: admin/woocommerce-admin-status.php:101 -#@ woocommerce -msgid "PHP Version" -msgstr "Versi PHP" - -#: admin/woocommerce-admin-status.php:125 -#@ woocommerce -msgid "WP Max Upload Size" -msgstr "Max Ukuran Upload WP" - -#: admin/woocommerce-admin-status.php:109 -#@ woocommerce -msgid "WP Memory Limit" -msgstr "WP Batas Memori" - -#: admin/woocommerce-admin-status.php:114 -#, php-format -#@ woocommerce -msgid "%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "%s - Kami menyarankan untuk setting memori setidaknya 64MB. Lihat: Increasing memory allocated to PHP" - -#: admin/woocommerce-admin-status.php:121 -#@ woocommerce -msgid "WP Debug Mode" -msgstr "WP Debug mode" - -#: admin/woocommerce-admin-status.php:137 -#@ woocommerce -msgid "WC Logging" -msgstr "WC Logging" - -#: admin/woocommerce-admin-status.php:140 -#@ woocommerce -msgid "Log directory is writable." -msgstr "Direktori log dapat ditulis." - -#: admin/woocommerce-admin-status.php:142 -#@ woocommerce -msgid "Log directory (woocommerce/logs/) is not writable. Logging will not be possible." -msgstr "Log direktori (woocommerce/logs/) tidak dapat ditulis. Logging tidak mungkin." - -#: admin/woocommerce-admin-status.php:149 -#@ woocommerce -msgid "fsockopen/cURL" -msgstr "fsockopen/cURL" - -#: admin/woocommerce-admin-status.php:152 -#@ woocommerce -msgid "Your server has fsockopen and cURL enabled." -msgstr "fsockopen dan Curl di Server Anda aktif." - -#: admin/woocommerce-admin-status.php:154 -#@ woocommerce -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "fsockopen di Server Anda aktif, CURL tidak aktif." - -#: admin/woocommerce-admin-status.php:156 -#@ woocommerce -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "cURL di Server Anda aktif, fsockopen tidak aktif." - -#: admin/woocommerce-admin-status.php:160 -#@ woocommerce -msgid "Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider." -msgstr "Server anda tidak memiliki fsockopen atau cURL yang aktif - PayPal IPN dan skript lain tidak dapat berkomunikasi dengan server lain. Kontak hosting provider anda." - -#: admin/woocommerce-admin-status.php:186 -#@ woocommerce -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "wp_remote_post () berhasil - PayPal IPN dapat bekerja dengan baik." - -#: admin/woocommerce-admin-status.php:189 -#@ woocommerce -msgid "wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:" -msgstr "wp_remote_post() gagal. PayPal IPN tidak dapat bekerja dengan server anda. Kontak hosting provider anda. Error:" - -#: admin/woocommerce-admin-status.php:192 -#@ woocommerce -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "wp_remote_post() gagal. PayPal IPN mungkin tidak dapat bekerja dengan server anda." - -#: admin/woocommerce-admin-status.php:27 -#: admin/woocommerce-admin-status.php:622 -#@ woocommerce -msgid "Tools" -msgstr "Alat" - -#: admin/woocommerce-admin-taxonomies.php:34 -#: admin/woocommerce-admin-taxonomies.php:129 -#@ woocommerce -msgid "Thumbnail" -msgstr "Thumbnail" - -#: admin/woocommerce-admin-taxonomies.php:38 -#: admin/woocommerce-admin-taxonomies.php:134 -#@ woocommerce -msgid "Upload/Add image" -msgstr "Unggah/Tambahkan gambar" - -#: admin/woocommerce-admin-taxonomies.php:39 -#: admin/woocommerce-admin-taxonomies.php:135 -#@ woocommerce -msgid "Remove image" -msgstr "Hapus gambar" - -#: admin/woocommerce-admin-taxonomies.php:222 -#@ woocommerce -msgid "Product categories for your store can be managed here. To change the order of categories on the front-end you can drag and drop to sort them. To see more categories listed click the \"screen options\" link at the top of the page." -msgstr "Produk kategori untuk toko Anda dapat dikelola di sini. Untuk mengubah urutan kategori di front-end Anda dapat drag dan drop untuk menyortir mereka. Untuk melihat kategori lainnya yang terdaftar, klik link \"screen options\" di bagian atas halaman." - -#: admin/woocommerce-admin-taxonomies.php:237 -#@ woocommerce -msgid "Shipping classes can be used to group products of similar type. These groups can then be used by certain shipping methods to provide different rates to different products." -msgstr "Kelas Pengiriman dapat digunakan untuk produk kelompok sejenis. Kelompok-kelompok ini kemudian dapat digunakan oleh metode pengiriman tertentu untuk memberikan harga yang berbeda untuk produk yang berbeda." - -#: admin/woocommerce-admin-taxonomies.php:365 -#@ woocommerce -msgid "Configure shipping class" -msgstr "Konfigurasi kelas pengiriman" - -#: admin/woocommerce-admin-users.php:26 -#: templates/checkout/form-billing.php:21 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:19 -#: templates/myaccount/my-address.php:25 -#: templates/order/order-details.php:106 -#@ woocommerce -msgid "Billing Address" -msgstr "Alamat Penagihan" - -#: admin/woocommerce-admin-users.php:27 -#: templates/checkout/form-shipping.php:35 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:20 -#: templates/order/order-details.php:121 -#@ woocommerce -msgid "Shipping Address" -msgstr "Alamat Pengiriman" - -#: admin/woocommerce-admin-users.php:28 -#@ woocommerce -msgid "Paying Customer?" -msgstr "Pelanggan Berbayar?" - -#: admin/woocommerce-admin-users.php:144 -#@ woocommerce -msgid "Customer Billing Address" -msgstr "Alamat Penagihan Pelanggan" - -#: admin/woocommerce-admin-users.php:147 -#: admin/woocommerce-admin-users.php:196 -#@ woocommerce -msgid "First name" -msgstr "Nama depan" - -#: admin/woocommerce-admin-users.php:151 -#: admin/woocommerce-admin-users.php:200 -#@ woocommerce -msgid "Last name" -msgstr "Nama keluarga" - -#: admin/woocommerce-admin-users.php:176 -#@ woocommerce -msgid "Country or state code" -msgstr "Negara atau kode negara" - -#: admin/woocommerce-admin-users.php:180 -#: admin/woocommerce-admin-users.php:229 -#@ woocommerce -msgid "2 letter Country code" -msgstr "2 huruf Kode negara" - -#: admin/woocommerce-admin-users.php:183 -#@ woocommerce -msgid "Telephone" -msgstr "Telepon" - -#: admin/woocommerce-admin-users.php:193 -#@ woocommerce -msgid "Customer Shipping Address" -msgstr "Alamat Pengiriman Pelanggan" - -#: admin/woocommerce-admin-users.php:225 -#@ woocommerce -msgid "State/County or state code" -msgstr "Negara/Wilayah atau kode negara" - -#: classes/class-wc-coupon.php:447 -#, php-format -#@ woocommerce -msgid "Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from your order." -msgstr "Maaf, tampaknya kupon \"%s\" tidak berlaku - kupon ini telah dihapus dari pesanan anda" - -#: classes/class-wc-coupon.php:450 -#, php-format -#@ woocommerce -msgid "Sorry, it seems the coupon \"%s\" is not yours - it has now been removed from your order." -msgstr "Maaf, tampaknya kupon \"%s\" bukan milik anda - kupon ini telah dihapus dari pesanan anda" - -#: classes/class-wc-cart.php:464 -#, php-format -#@ woocommerce -msgid "Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in stock). Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Maaf, kami tidak memiliki cukup \"%s\" di stok untuk memenuhi pesanan anda (%s di stok). Silahkan merubah keranjang belanja anda dan mencoba lagi. Kami mohon maaf atas ketidaknyamanan yang ditimbulkan." - -#: classes/class-wc-cart.php:842 -#: classes/class-wc-cart.php:856 -#: classes/class-wc-cart.php:864 -#: templates/cart/mini-cart.php:68 -#: woocommerce-functions.php:470 -#: woocommerce.php:1176 -#@ woocommerce -msgid "View Cart →" -msgstr "Melihat Keranjang →" - -#: classes/class-wc-cart.php:842 -#@ woocommerce -msgid "You already have this item in your cart." -msgstr "Anda sudah memiliki item ini dalam keranjang Anda." - -#: classes/class-wc-cart.php:856 -#: classes/class-wc-cart.php:864 -#, php-format -#@ woocommerce -msgid "%s You cannot add that amount to the cart — we have %s in stock and you already have %s in your cart." -msgstr "%s Anda tidak dapat menambahkan jumlah tersebut ke dalam keranjang — kami mempunyai %s di stok dan anda sudah mempunyai %s di keranjang." - -#: classes/abstracts/abstract-wc-product.php:849 -#: classes/abstracts/abstract-wc-product.php:855 -#: classes/class-wc-cart.php:1743 -#: classes/class-wc-order.php:863 -#: classes/class-wc-product-variable.php:274 -#: classes/class-wc-product-variable.php:283 -#: classes/class-wc-product-variation.php:246 -#@ woocommerce -msgid "Free!" -msgstr "Gratis!" - -#: classes/class-wc-cart.php:1755 -#@ woocommerce -msgid "via" -msgstr "melalui" - -#: classes/class-wc-coupon.php:444 -#: classes/class-wc-coupon.php:494 -#@ woocommerce -msgid "Coupon does not exist!" -msgstr "Kupon tidak ada!" - -#: classes/class-wc-checkout.php:64 -#@ woocommerce -msgid "Account username" -msgstr "Akun Pengguna" - -#: classes/class-wc-checkout.php:65 -#@ woocommerce -msgctxt "placeholder" -msgid "Username" -msgstr "Username" - -#: classes/class-wc-checkout.php:72 -#: classes/class-wc-checkout.php:79 -#@ woocommerce -msgid "Account password" -msgstr "Akun Kata Sandi" - -#: classes/class-wc-checkout.php:73 -#: classes/class-wc-checkout.php:80 -#@ woocommerce -msgctxt "placeholder" -msgid "Password" -msgstr "Kata sandi" - -#: classes/class-wc-checkout.php:90 -#@ woocommerce -msgctxt "placeholder" -msgid "Notes about your order, e.g. special notes for delivery." -msgstr "Catatan mengenai pesanan anda, contoh catatan spesial untuk pengiriman." - -#: classes/class-wc-checkout.php:386 -#, php-format -#@ woocommerce -msgid "Sorry, your session has expired. Return to homepage →" -msgstr "Maaf, sesi anda sudah kadaluarsa. Kembali ke homepage →" - -#: classes/class-wc-checkout.php:438 -#: woocommerce-functions.php:1632 -#@ woocommerce -msgid "is a required field." -msgstr "adalah kolom yang diperlukan." - -#: classes/class-wc-checkout.php:451 -#, php-format -#@ woocommerce -msgid "(%s) is not a valid postcode/ZIP." -msgstr "(%s) bukanlah kode pos yang valid." - -#: classes/class-wc-checkout.php:472 -#@ woocommerce -msgid "is not valid. Please enter one of the following:" -msgstr "tidak valid. Silahkan memasukkan salah satu dari berikut ini:" - -#: classes/class-wc-checkout.php:480 -#@ woocommerce -msgid "is not a valid number." -msgstr "bukan angka yang benar." - -#: classes/class-wc-checkout.php:487 -#@ woocommerce -msgid "is not a valid email address." -msgstr "bukan alamat email yang valid." - -#: classes/class-wc-checkout.php:543 -#@ woocommerce -msgid "Please enter an account username." -msgstr "Silakan masukkan username akun." - -#: classes/class-wc-checkout.php:547 -#@ woocommerce -msgid "Invalid email/username." -msgstr "Email/username tidak valid." - -#: classes/class-wc-checkout.php:550 -#@ woocommerce -msgid "An account is already registered with that username. Please choose another." -msgstr "Akun dengan nama tersebut telah terdaftar. Silahkan memilih yang lain." - -#: classes/class-wc-checkout.php:560 -#@ woocommerce -msgid "Please enter an account password." -msgstr "Silakan masukkan kata sandi akun." - -#: classes/class-wc-checkout.php:563 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:85 -#: woocommerce-functions.php:731 -#: woocommerce-functions.php:1562 -#@ woocommerce -msgid "Passwords do not match." -msgstr "Kata sandi tidak cocok." - -#: classes/class-wc-checkout.php:567 -#@ woocommerce -msgid "An account is already registered with your email address. Please login." -msgstr "Akun dengan email tersebut telah terdaftar. Silahkan login." - -#: classes/class-wc-checkout.php:573 -#@ woocommerce -msgid "You must accept our Terms & Conditions." -msgstr "Anda harus menerima Syarat & Kondisi kami." - -#: classes/class-wc-checkout.php:582 -#@ woocommerce -msgid "Invalid shipping method." -msgstr "Metode pengiriman tidak valid." - -#: classes/class-wc-checkout.php:595 -#@ woocommerce -msgid "Invalid payment method." -msgstr "Metode pembayaran tidak valid." - -#: classes/class-wc-checkout.php:635 -#: woocommerce-core-functions.php:2485 -#: woocommerce-core-functions.php:2488 -#: woocommerce-functions.php:703 -#: woocommerce-functions.php:705 -#: woocommerce-functions.php:708 -#: woocommerce-functions.php:720 -#: woocommerce-functions.php:722 -#: woocommerce-functions.php:725 -#: woocommerce-functions.php:759 -#@ woocommerce -msgid "ERROR" -msgstr "ERROR" - -#: classes/class-wc-checkout.php:635 -#: woocommerce-functions.php:759 -#@ woocommerce -msgid "Couldn’t register you… please contact us if you continue to have problems." -msgstr "Tidak dapat meregistrasi anda… silahkan kontak kami apabila anda masih dapat masalah yang sama." - -#: classes/class-wc-checkout.php:152 -#, php-format -#@ woocommerce -msgid "Order – %s" -msgstr "Pesanan – %s" - -#: classes/class-wc-checkout.php:152 -#, php-format -#@ woocommerce -msgctxt "Order date parsed by strftime" -msgid "%b %d, %Y @ %I:%M %p" -msgstr "%b %d, %Y @ %I:%M %p" - -#: classes/class-wc-checkout.php:276 -#@ woocommerce -msgid "Backordered" -msgstr "Backordered" - -#: classes/class-wc-countries.php:37 -#@ woocommerce -msgid "Afghanistan" -msgstr "Afganistan" - -#: classes/class-wc-countries.php:38 -#@ woocommerce -msgid "Åland Islands" -msgstr "Kepulauan Åland" - -#: classes/class-wc-countries.php:39 -#@ woocommerce -msgid "Albania" -msgstr "Albania" - -#: classes/class-wc-countries.php:40 -#@ woocommerce -msgid "Algeria" -msgstr "Aljazair" - -#: i18n/states/US.php:67 -#@ woocommerce -msgid "American Samoa" -msgstr "Amerika Samoa" - -#: classes/class-wc-countries.php:41 -#@ woocommerce -msgid "Andorra" -msgstr "Andorra" - -#: classes/class-wc-countries.php:42 -#@ woocommerce -msgid "Angola" -msgstr "Angola" - -#: classes/class-wc-countries.php:43 -#@ woocommerce -msgid "Anguilla" -msgstr "Anguilla" - -#: classes/class-wc-countries.php:44 -#@ woocommerce -msgid "Antarctica" -msgstr "Antartika" - -#: classes/class-wc-countries.php:45 -#@ woocommerce -msgid "Antigua and Barbuda" -msgstr "Antigua dan Barbuda" - -#: classes/class-wc-countries.php:46 -#@ woocommerce -msgid "Argentina" -msgstr "Argentina" - -#: classes/class-wc-countries.php:47 -#@ woocommerce -msgid "Armenia" -msgstr "Armenia" - -#: classes/class-wc-countries.php:48 -#@ woocommerce -msgid "Aruba" -msgstr "Aruba" - -#: classes/class-wc-countries.php:49 -#@ woocommerce -msgid "Australia" -msgstr "Australia" - -#: classes/class-wc-countries.php:50 -#@ woocommerce -msgid "Austria" -msgstr "Austria" - -#: classes/class-wc-countries.php:51 -#@ woocommerce -msgid "Azerbaijan" -msgstr "Azerbaijan" - -#: classes/class-wc-countries.php:52 -#@ woocommerce -msgid "Bahamas" -msgstr "Bahamas" - -#: classes/class-wc-countries.php:53 -#@ woocommerce -msgid "Bahrain" -msgstr "Bahrain" - -#: classes/class-wc-countries.php:54 -#@ woocommerce -msgid "Bangladesh" -msgstr "Bangladesh" - -#: classes/class-wc-countries.php:55 -#@ woocommerce -msgid "Barbados" -msgstr "Barbados" - -#: classes/class-wc-countries.php:56 -#@ woocommerce -msgid "Belarus" -msgstr "Belarus" - -#: classes/class-wc-countries.php:57 -#@ woocommerce -msgid "Belgium" -msgstr "Belgia" - -#: classes/class-wc-countries.php:59 -#@ woocommerce -msgid "Belize" -msgstr "Belize" - -#: classes/class-wc-countries.php:60 -#@ woocommerce -msgid "Benin" -msgstr "Benin" - -#: classes/class-wc-countries.php:61 -#@ woocommerce -msgid "Bermuda" -msgstr "Bermuda" - -#: classes/class-wc-countries.php:62 -#@ woocommerce -msgid "Bhutan" -msgstr "Bhutan" - -#: classes/class-wc-countries.php:63 -#@ woocommerce -msgid "Bolivia" -msgstr "Bolivia" - -#: classes/class-wc-countries.php:65 -#@ woocommerce -msgid "Bosnia and Herzegovina" -msgstr "Bosnia dan Herzegovina" - -#: classes/class-wc-countries.php:66 -#@ woocommerce -msgid "Botswana" -msgstr "Botswana" - -#: classes/class-wc-countries.php:68 -#@ woocommerce -msgid "Brazil" -msgstr "Brazil" - -#: classes/class-wc-countries.php:69 -#@ woocommerce -msgid "British Indian Ocean Territory" -msgstr "British Indian Ocean Territory" - -#: classes/class-wc-countries.php:70 -#@ woocommerce -msgid "British Virgin Islands" -msgstr "Kepulauan Virgin Inggris" - -#: classes/class-wc-countries.php:71 -#@ woocommerce -msgid "Brunei" -msgstr "Brunei" - -#: classes/class-wc-countries.php:72 -#@ woocommerce -msgid "Bulgaria" -msgstr "Bulgaria" - -#: classes/class-wc-countries.php:73 -#@ woocommerce -msgid "Burkina Faso" -msgstr "Burkina Faso" - -#: classes/class-wc-countries.php:74 -#@ woocommerce -msgid "Burundi" -msgstr "Burundi" - -#: classes/class-wc-countries.php:75 -#@ woocommerce -msgid "Cambodia" -msgstr "Kamboja" - -#: classes/class-wc-countries.php:76 -#@ woocommerce -msgid "Cameroon" -msgstr "Kamerun" - -#: classes/class-wc-countries.php:77 -#@ woocommerce -msgid "Canada" -msgstr "Kanada" - -#: classes/class-wc-countries.php:78 -#@ woocommerce -msgid "Cape Verde" -msgstr "Cape Verde" - -#: classes/class-wc-countries.php:79 -#@ woocommerce -msgid "Cayman Islands" -msgstr "Kepulauan Cayman" - -#: classes/class-wc-countries.php:80 -#@ woocommerce -msgid "Central African Republic" -msgstr "Republik Afrika Tengah" - -#: classes/class-wc-countries.php:81 -#@ woocommerce -msgid "Chad" -msgstr "Chad" - -#: classes/class-wc-countries.php:82 -#@ woocommerce -msgid "Chile" -msgstr "Chili" - -#: classes/class-wc-countries.php:83 -#@ woocommerce -msgid "China" -msgstr "Cina" - -#: classes/class-wc-countries.php:84 -#@ woocommerce -msgid "Christmas Island" -msgstr "Pulau Christmas" - -#: classes/class-wc-countries.php:85 -#@ woocommerce -msgid "Cocos (Keeling) Islands" -msgstr "Kepulauan Cocos (Keeling)" - -#: classes/class-wc-countries.php:86 -#@ woocommerce -msgid "Colombia" -msgstr "Kolumbia" - -#: classes/class-wc-countries.php:87 -#@ woocommerce -msgid "Comoros" -msgstr "Komoro" - -#: classes/class-wc-countries.php:88 -#@ woocommerce -msgid "Congo (Brazzaville)" -msgstr "Kongo (Brazzaville)" - -#: classes/class-wc-countries.php:89 -#@ woocommerce -msgid "Congo (Kinshasa)" -msgstr "Kongo (Kinshasa)" - -#: classes/class-wc-countries.php:90 -#@ woocommerce -msgid "Cook Islands" -msgstr "Kepulauan Cook" - -#: classes/class-wc-countries.php:91 -#@ woocommerce -msgid "Costa Rica" -msgstr "Kosta Rika" - -#: classes/class-wc-countries.php:92 -#@ woocommerce -msgid "Croatia" -msgstr "Kroasia" - -#: classes/class-wc-countries.php:93 -#@ woocommerce -msgid "Cuba" -msgstr "Kuba" - -#: classes/class-wc-countries.php:95 -#@ woocommerce -msgid "Cyprus" -msgstr "Siprus" - -#: classes/class-wc-countries.php:96 -#@ woocommerce -msgid "Czech Republic" -msgstr "Republik Ceko" - -#: classes/class-wc-countries.php:97 -#@ woocommerce -msgid "Denmark" -msgstr "Denmark" - -#: classes/class-wc-countries.php:98 -#@ woocommerce -msgid "Djibouti" -msgstr "Djibouti" - -#: classes/class-wc-countries.php:99 -#@ woocommerce -msgid "Dominica" -msgstr "Dominica" - -#: classes/class-wc-countries.php:100 -#@ woocommerce -msgid "Dominican Republic" -msgstr "Republik Dominika" - -#: classes/class-wc-countries.php:101 -#@ woocommerce -msgid "Ecuador" -msgstr "Ekuador" - -#: classes/class-wc-countries.php:102 -#@ woocommerce -msgid "Egypt" -msgstr "Mesir" - -#: classes/class-wc-countries.php:103 -#@ woocommerce -msgid "El Salvador" -msgstr "El Salvador" - -#: classes/class-wc-countries.php:104 -#@ woocommerce -msgid "Equatorial Guinea" -msgstr "Equatorial Guinea" - -#: classes/class-wc-countries.php:105 -#@ woocommerce -msgid "Eritrea" -msgstr "Eritrea" - -#: classes/class-wc-countries.php:106 -#@ woocommerce -msgid "Estonia" -msgstr "Estonia" - -#: classes/class-wc-countries.php:107 -#@ woocommerce -msgid "Ethiopia" -msgstr "Etiopia" - -#: classes/class-wc-countries.php:108 -#@ woocommerce -msgid "Falkland Islands" -msgstr "Kepulauan Falkland" - -#: classes/class-wc-countries.php:109 -#@ woocommerce -msgid "Faroe Islands" -msgstr "Kepulauan Faroe" - -#: classes/class-wc-countries.php:110 -#@ woocommerce -msgid "Fiji" -msgstr "Fiji" - -#: classes/class-wc-countries.php:111 -#@ woocommerce -msgid "Finland" -msgstr "Finlandia" - -#: classes/class-wc-countries.php:112 -#@ woocommerce -msgid "France" -msgstr "Perancis" - -#: classes/class-wc-countries.php:113 -#@ woocommerce -msgid "French Guiana" -msgstr "Guyana Perancis" - -#: classes/class-wc-countries.php:114 -#@ woocommerce -msgid "French Polynesia" -msgstr "Polinesia Prancis" - -#: classes/class-wc-countries.php:115 -#@ woocommerce -msgid "French Southern Territories" -msgstr "French Southern Territories" - -#: classes/class-wc-countries.php:116 -#@ woocommerce -msgid "Gabon" -msgstr "Gabon" - -#: classes/class-wc-countries.php:117 -#@ woocommerce -msgid "Gambia" -msgstr "Gambia" - -#: classes/class-wc-countries.php:118 -#: i18n/states/US.php:23 -#@ woocommerce -msgid "Georgia" -msgstr "Georgia" - -#: classes/class-wc-countries.php:119 -#@ woocommerce -msgid "Germany" -msgstr "Jerman" - -#: classes/class-wc-countries.php:120 -#@ woocommerce -msgid "Ghana" -msgstr "Ghana" - -#: classes/class-wc-countries.php:121 -#@ woocommerce -msgid "Gibraltar" -msgstr "Gibraltar" - -#: classes/class-wc-countries.php:122 -#@ woocommerce -msgid "Greece" -msgstr "Yunani" - -#: classes/class-wc-countries.php:123 -#@ woocommerce -msgid "Greenland" -msgstr "Greenland" - -#: classes/class-wc-countries.php:124 -#@ woocommerce -msgid "Grenada" -msgstr "Grenada" - -#: classes/class-wc-countries.php:125 -#@ woocommerce -msgid "Guadeloupe" -msgstr "Guadeloupe" - -#: i18n/states/US.php:68 -#@ woocommerce -msgid "Guam" -msgstr "Guam" - -#: classes/class-wc-countries.php:126 -#@ woocommerce -msgid "Guatemala" -msgstr "Guatemala" - -#: classes/class-wc-countries.php:127 -#@ woocommerce -msgid "Guernsey" -msgstr "Guernsey" - -#: classes/class-wc-countries.php:128 -#@ woocommerce -msgid "Guinea" -msgstr "Guinea" - -#: classes/class-wc-countries.php:129 -#@ woocommerce -msgid "Guinea-Bissau" -msgstr "Guinea-Bissau" - -#: classes/class-wc-countries.php:130 -#@ woocommerce -msgid "Guyana" -msgstr "Guyana" - -#: classes/class-wc-countries.php:131 -#@ woocommerce -msgid "Haiti" -msgstr "Haiti" - -#: classes/class-wc-countries.php:133 -#@ woocommerce -msgid "Honduras" -msgstr "Honduras" - -#: classes/class-wc-countries.php:134 -#@ woocommerce -msgid "Hong Kong" -msgstr "Hong Kong" - -#: classes/class-wc-countries.php:135 -#@ woocommerce -msgid "Hungary" -msgstr "Hongaria" - -#: classes/class-wc-countries.php:136 -#@ woocommerce -msgid "Iceland" -msgstr "Islandia" - -#: classes/class-wc-countries.php:137 -#@ woocommerce -msgid "India" -msgstr "India" - -#: classes/class-wc-countries.php:138 -#@ woocommerce -msgid "Indonesia" -msgstr "Indonesia" - -#: classes/class-wc-countries.php:139 -#@ woocommerce -msgid "Iran" -msgstr "Iran" - -#: classes/class-wc-countries.php:140 -#@ woocommerce -msgid "Iraq" -msgstr "Irak" - -#: classes/class-wc-countries.php:141 -#@ woocommerce -msgid "Republic of Ireland" -msgstr "Republik Irlandia" - -#: classes/class-wc-countries.php:142 -#@ woocommerce -msgid "Isle of Man" -msgstr "Isle of Man" - -#: classes/class-wc-countries.php:143 -#@ woocommerce -msgid "Israel" -msgstr "Israel" - -#: classes/class-wc-countries.php:144 -#@ woocommerce -msgid "Italy" -msgstr "Italia" - -#: classes/class-wc-countries.php:145 -#@ woocommerce -msgid "Ivory Coast" -msgstr "Pantai Gading" - -#: classes/class-wc-countries.php:146 -#@ woocommerce -msgid "Jamaica" -msgstr "Jamaica" - -#: classes/class-wc-countries.php:147 -#@ woocommerce -msgid "Japan" -msgstr "Jepang" - -#: classes/class-wc-countries.php:148 -#@ woocommerce -msgid "Jersey" -msgstr "Jersey" - -#: classes/class-wc-countries.php:149 -#@ woocommerce -msgid "Jordan" -msgstr "Jordan" - -#: classes/class-wc-countries.php:150 -#@ woocommerce -msgid "Kazakhstan" -msgstr "Kazakhstan" - -#: classes/class-wc-countries.php:151 -#@ woocommerce -msgid "Kenya" -msgstr "Kenya" - -#: classes/class-wc-countries.php:152 -#@ woocommerce -msgid "Kiribati" -msgstr "Kiribati" - -#: classes/class-wc-countries.php:153 -#@ woocommerce -msgid "Kuwait" -msgstr "Kuwait" - -#: classes/class-wc-countries.php:154 -#@ woocommerce -msgid "Kyrgyzstan" -msgstr "Kyrgyzstan" - -#: classes/class-wc-countries.php:155 -#@ woocommerce -msgid "Laos" -msgstr "Laos" - -#: classes/class-wc-countries.php:156 -#@ woocommerce -msgid "Latvia" -msgstr "Latvia" - -#: classes/class-wc-countries.php:157 -#@ woocommerce -msgid "Lebanon" -msgstr "Libanon" - -#: classes/class-wc-countries.php:158 -#@ woocommerce -msgid "Lesotho" -msgstr "Lesotho" - -#: classes/class-wc-countries.php:159 -#@ woocommerce -msgid "Liberia" -msgstr "Liberia" - -#: classes/class-wc-countries.php:160 -#@ woocommerce -msgid "Libya" -msgstr "Libya" - -#: classes/class-wc-countries.php:161 -#@ woocommerce -msgid "Liechtenstein" -msgstr "Liechtenstein" - -#: classes/class-wc-countries.php:162 -#@ woocommerce -msgid "Lithuania" -msgstr "Lithuania" - -#: classes/class-wc-countries.php:163 -#@ woocommerce -msgid "Luxembourg" -msgstr "Luksemburg" - -#: classes/class-wc-countries.php:164 -#@ woocommerce -msgid "Macao S.A.R., China" -msgstr "Macao S.A.R., Cina" - -#: classes/class-wc-countries.php:165 -#@ woocommerce -msgid "Macedonia" -msgstr "Macedonia" - -#: classes/class-wc-countries.php:166 -#@ woocommerce -msgid "Madagascar" -msgstr "Madagaskar" - -#: classes/class-wc-countries.php:167 -#@ woocommerce -msgid "Malawi" -msgstr "Malawi" - -#: classes/class-wc-countries.php:168 -#@ woocommerce -msgid "Malaysia" -msgstr "Malaysia" - -#: classes/class-wc-countries.php:169 -#@ woocommerce -msgid "Maldives" -msgstr "Maladewa" - -#: classes/class-wc-countries.php:170 -#@ woocommerce -msgid "Mali" -msgstr "Mali" - -#: classes/class-wc-countries.php:171 -#@ woocommerce -msgid "Malta" -msgstr "Malta" - -#: classes/class-wc-countries.php:172 -#@ woocommerce -msgid "Marshall Islands" -msgstr "Kepulauan Marshall" - -#: classes/class-wc-countries.php:173 -#@ woocommerce -msgid "Martinique" -msgstr "Martinique" - -#: classes/class-wc-countries.php:174 -#@ woocommerce -msgid "Mauritania" -msgstr "Mauritania" - -#: classes/class-wc-countries.php:175 -#@ woocommerce -msgid "Mauritius" -msgstr "Mauritius" - -#: classes/class-wc-countries.php:176 -#@ woocommerce -msgid "Mayotte" -msgstr "Mayotte" - -#: classes/class-wc-countries.php:177 -#@ woocommerce -msgid "Mexico" -msgstr "Meksiko" - -#: classes/class-wc-countries.php:178 -#@ woocommerce -msgid "Micronesia" -msgstr "Mikronesia" - -#: classes/class-wc-countries.php:179 -#@ woocommerce -msgid "Moldova" -msgstr "Moldova" - -#: classes/class-wc-countries.php:180 -#@ woocommerce -msgid "Monaco" -msgstr "Monaco" - -#: classes/class-wc-countries.php:181 -#@ woocommerce -msgid "Mongolia" -msgstr "Mongolia" - -#: classes/class-wc-countries.php:182 -#@ woocommerce -msgid "Montenegro" -msgstr "Montenegro" - -#: classes/class-wc-countries.php:183 -#@ woocommerce -msgid "Montserrat" -msgstr "Montserrat" - -#: classes/class-wc-countries.php:184 -#@ woocommerce -msgid "Morocco" -msgstr "Maroko" - -#: classes/class-wc-countries.php:185 -#@ woocommerce -msgid "Mozambique" -msgstr "Mozambik" - -#: classes/class-wc-countries.php:186 -#@ woocommerce -msgid "Myanmar" -msgstr "Myanmar" - -#: classes/class-wc-countries.php:187 -#@ woocommerce -msgid "Namibia" -msgstr "Namibia" - -#: classes/class-wc-countries.php:188 -#@ woocommerce -msgid "Nauru" -msgstr "Nauru" - -#: classes/class-wc-countries.php:189 -#@ woocommerce -msgid "Nepal" -msgstr "Nepal" - -#: classes/class-wc-countries.php:190 -#@ woocommerce -msgid "Netherlands" -msgstr "Belanda" - -#: classes/class-wc-countries.php:191 -#@ woocommerce -msgid "Netherlands Antilles" -msgstr "Antilles Belanda" - -#: classes/class-wc-countries.php:192 -#@ woocommerce -msgid "New Caledonia" -msgstr "Kaledonia Baru" - -#: classes/class-wc-countries.php:193 -#@ woocommerce -msgid "New Zealand" -msgstr "Selandia Baru" - -#: classes/class-wc-countries.php:194 -#@ woocommerce -msgid "Nicaragua" -msgstr "Nikaragua" - -#: classes/class-wc-countries.php:195 -#@ woocommerce -msgid "Niger" -msgstr "Niger" - -#: classes/class-wc-countries.php:196 -#@ woocommerce -msgid "Nigeria" -msgstr "Nigeria" - -#: classes/class-wc-countries.php:197 -#@ woocommerce -msgid "Niue" -msgstr "Niue" - -#: classes/class-wc-countries.php:198 -#@ woocommerce -msgid "Norfolk Island" -msgstr "Pulau Norfolk" - -#: classes/class-wc-countries.php:199 -#@ woocommerce -msgid "North Korea" -msgstr "Korea Utara" - -#: i18n/states/US.php:69 -#@ woocommerce -msgid "Northern Mariana Islands" -msgstr "Kepulauan Mariana Utara" - -#: classes/class-wc-countries.php:200 -#@ woocommerce -msgid "Norway" -msgstr "Norwegia" - -#: classes/class-wc-countries.php:201 -#@ woocommerce -msgid "Oman" -msgstr "Oman" - -#: classes/class-wc-countries.php:202 -#@ woocommerce -msgid "Pakistan" -msgstr "Pakistan" - -#: classes/class-wc-countries.php:203 -#@ woocommerce -msgid "Palestinian Territory" -msgstr "Wilayah Palestina" - -#: classes/class-wc-countries.php:204 -#@ woocommerce -msgid "Panama" -msgstr "Panama" - -#: classes/class-wc-countries.php:205 -#@ woocommerce -msgid "Papua New Guinea" -msgstr "Papua Nugini" - -#: classes/class-wc-countries.php:206 -#@ woocommerce -msgid "Paraguay" -msgstr "Paraguai" - -#: classes/class-wc-countries.php:207 -#@ woocommerce -msgid "Peru" -msgstr "Peru" - -#: classes/class-wc-countries.php:208 -#@ woocommerce -msgid "Philippines" -msgstr "Pilipina" - -#: classes/class-wc-countries.php:209 -#@ woocommerce -msgid "Pitcairn" -msgstr "Pitcairn" - -#: classes/class-wc-countries.php:210 -#@ woocommerce -msgid "Poland" -msgstr "Polandia" - -#: classes/class-wc-countries.php:211 -#@ woocommerce -msgid "Portugal" -msgstr "Portugal" - -#: i18n/states/US.php:70 -#@ woocommerce -msgid "Puerto Rico" -msgstr "Puerto Rico" - -#: classes/class-wc-countries.php:212 -#@ woocommerce -msgid "Qatar" -msgstr "Qatar" - -#: classes/class-wc-countries.php:213 -#@ woocommerce -msgid "Reunion" -msgstr "Reunion" - -#: classes/class-wc-countries.php:214 -#@ woocommerce -msgid "Romania" -msgstr "Rumania" - -#: classes/class-wc-countries.php:215 -#@ woocommerce -msgid "Russia" -msgstr "Rusia" - -#: classes/class-wc-countries.php:216 -#@ woocommerce -msgid "Rwanda" -msgstr "Rwanda" - -#: classes/class-wc-countries.php:217 -#@ woocommerce -msgid "Saint Barthélemy" -msgstr "Saint Barthélemy" - -#: classes/class-wc-countries.php:218 -#@ woocommerce -msgid "Saint Helena" -msgstr "Saint Helena" - -#: classes/class-wc-countries.php:219 -#@ woocommerce -msgid "Saint Kitts and Nevis" -msgstr "Saint Kitts dan Nevis" - -#: classes/class-wc-countries.php:220 -#@ woocommerce -msgid "Saint Lucia" -msgstr "Saint Lucia" - -#: classes/class-wc-countries.php:221 -#@ woocommerce -msgid "Saint Martin (French part)" -msgstr "Saint Martin (bagian Perancis)" - -#: classes/class-wc-countries.php:223 -#@ woocommerce -msgid "Saint Pierre and Miquelon" -msgstr "Saint Pierre dan Miquelon" - -#: classes/class-wc-countries.php:224 -#@ woocommerce -msgid "Saint Vincent and the Grenadines" -msgstr "Saint Vincent dan Grenadines" - -#: classes/class-wc-countries.php:225 -#@ woocommerce -msgid "Samoa" -msgstr "Samoa" - -#: classes/class-wc-countries.php:226 -#@ woocommerce -msgid "San Marino" -msgstr "San Marino" - -#: classes/class-wc-countries.php:227 -#@ woocommerce -msgid "São Tomé and Príncipe" -msgstr "São Tomé dan Príncipe" - -#: classes/class-wc-countries.php:228 -#@ woocommerce -msgid "Saudi Arabia" -msgstr "Arab Saudi" - -#: classes/class-wc-countries.php:229 -#@ woocommerce -msgid "Senegal" -msgstr "Senegal" - -#: classes/class-wc-countries.php:230 -#@ woocommerce -msgid "Serbia" -msgstr "Serbia" - -#: classes/class-wc-countries.php:231 -#@ woocommerce -msgid "Seychelles" -msgstr "Seychelles" - -#: classes/class-wc-countries.php:232 -#@ woocommerce -msgid "Sierra Leone" -msgstr "Sierra Leone" - -#: classes/class-wc-countries.php:233 -#@ woocommerce -msgid "Singapore" -msgstr "Singapore" - -#: classes/class-wc-countries.php:234 -#@ woocommerce -msgid "Slovakia" -msgstr "Slovakia" - -#: classes/class-wc-countries.php:235 -#@ woocommerce -msgid "Slovenia" -msgstr "Slovenia" - -#: classes/class-wc-countries.php:236 -#@ woocommerce -msgid "Solomon Islands" -msgstr "Kepulauan Solomon" - -#: classes/class-wc-countries.php:237 -#@ woocommerce -msgid "Somalia" -msgstr "Somalia" - -#: classes/class-wc-countries.php:238 -#@ woocommerce -msgid "South Africa" -msgstr "Afrika Selatan" - -#: classes/class-wc-countries.php:239 -#@ woocommerce -msgid "South Georgia/Sandwich Islands" -msgstr "Georgia Selatan/Kepulauan Sandwich" - -#: classes/class-wc-countries.php:240 -#@ woocommerce -msgid "South Korea" -msgstr "Korea Selatan" - -#: classes/class-wc-countries.php:242 -#@ woocommerce -msgid "Spain" -msgstr "Spanyol" - -#: classes/class-wc-countries.php:243 -#@ woocommerce -msgid "Sri Lanka" -msgstr "Sri Lanka" - -#: classes/class-wc-countries.php:244 -#@ woocommerce -msgid "Sudan" -msgstr "Sudan" - -#: classes/class-wc-countries.php:245 -#@ woocommerce -msgid "Suriname" -msgstr "Suriname" - -#: classes/class-wc-countries.php:246 -#@ woocommerce -msgid "Svalbard and Jan Mayen" -msgstr "Svalbard dan Jan Mayen" - -#: classes/class-wc-countries.php:247 -#@ woocommerce -msgid "Swaziland" -msgstr "Swaziland" - -#: classes/class-wc-countries.php:248 -#@ woocommerce -msgid "Sweden" -msgstr "Swedia" - -#: classes/class-wc-countries.php:249 -#@ woocommerce -msgid "Switzerland" -msgstr "Swiss" - -#: classes/class-wc-countries.php:250 -#@ woocommerce -msgid "Syria" -msgstr "Suriah" - -#: classes/class-wc-countries.php:251 -#@ woocommerce -msgid "Taiwan" -msgstr "Taiwan" - -#: classes/class-wc-countries.php:252 -#@ woocommerce -msgid "Tajikistan" -msgstr "Tajikistan" - -#: classes/class-wc-countries.php:253 -#@ woocommerce -msgid "Tanzania" -msgstr "Tanzania" - -#: classes/class-wc-countries.php:254 -#@ woocommerce -msgid "Thailand" -msgstr "Thailand" - -#: classes/class-wc-countries.php:255 -#@ woocommerce -msgid "Timor-Leste" -msgstr "Timor-Leste" - -#: classes/class-wc-countries.php:256 -#@ woocommerce -msgid "Togo" -msgstr "Togo" - -#: classes/class-wc-countries.php:257 -#@ woocommerce -msgid "Tokelau" -msgstr "Tokelau" - -#: classes/class-wc-countries.php:258 -#@ woocommerce -msgid "Tonga" -msgstr "Tonga" - -#: classes/class-wc-countries.php:259 -#@ woocommerce -msgid "Trinidad and Tobago" -msgstr "Trinidad dan Tobago" - -#: classes/class-wc-countries.php:260 -#@ woocommerce -msgid "Tunisia" -msgstr "Tunisia" - -#: classes/class-wc-countries.php:261 -#@ woocommerce -msgid "Turkey" -msgstr "Turki" - -#: classes/class-wc-countries.php:262 -#@ woocommerce -msgid "Turkmenistan" -msgstr "Turkmenistan" - -#: classes/class-wc-countries.php:263 -#@ woocommerce -msgid "Turks and Caicos Islands" -msgstr "Kepulauan Turks dan Caicos" - -#: classes/class-wc-countries.php:264 -#@ woocommerce -msgid "Tuvalu" -msgstr "Tuvalu" - -#: i18n/states/US.php:71 -#@ woocommerce -msgid "US Minor Outlying Islands" -msgstr "US Minor Kepulauan Terluar" - -#: classes/class-wc-countries.php:265 -#@ woocommerce -msgid "Uganda" -msgstr "Uganda" - -#: classes/class-wc-countries.php:266 -#@ woocommerce -msgid "Ukraine" -msgstr "Ukraine" - -#: classes/class-wc-countries.php:267 -#@ woocommerce -msgid "United Arab Emirates" -msgstr "Uni Emirat Arab" - -#: classes/class-wc-countries.php:268 -#@ woocommerce -msgid "United Kingdom" -msgstr "Inggris" - -#: classes/class-wc-countries.php:269 -#@ woocommerce -msgid "United States" -msgstr "Amerika Serikat" - -#: classes/class-wc-countries.php:270 -#@ woocommerce -msgid "Uruguay" -msgstr "Uruguay" - -#: classes/class-wc-countries.php:271 -#@ woocommerce -msgid "Uzbekistan" -msgstr "Uzbekistan" - -#: classes/class-wc-countries.php:272 -#@ woocommerce -msgid "Vanuatu" -msgstr "Vanuatu" - -#: classes/class-wc-countries.php:273 -#@ woocommerce -msgid "Vatican" -msgstr "Vatikan" - -#: classes/class-wc-countries.php:274 -#@ woocommerce -msgid "Venezuela" -msgstr "Venezuela" - -#: classes/class-wc-countries.php:275 -#@ woocommerce -msgid "Vietnam" -msgstr "Vietnam" - -#: classes/class-wc-countries.php:276 -#@ woocommerce -msgid "Wallis and Futuna" -msgstr "Wallis dan Futuna" - -#: classes/class-wc-countries.php:277 -#@ woocommerce -msgid "Western Sahara" -msgstr "Sahara Barat" - -#: classes/class-wc-countries.php:278 -#@ woocommerce -msgid "Yemen" -msgstr "Yaman" - -#: classes/class-wc-countries.php:279 -#@ woocommerce -msgid "Zambia" -msgstr "Zambia" - -#: classes/class-wc-countries.php:280 -#@ woocommerce -msgid "Zimbabwe" -msgstr "Zimbabwe" - -#: i18n/states/AU.php:13 -#@ woocommerce -msgid "Australian Capital Territory" -msgstr "Australian Capital Territory" - -#: i18n/states/AU.php:14 -#@ woocommerce -msgid "New South Wales" -msgstr "New South Wales" - -#: i18n/states/AU.php:15 -#@ woocommerce -msgid "Northern Territory" -msgstr "Northern Territory" - -#: i18n/states/AU.php:16 -#@ woocommerce -msgid "Queensland" -msgstr "Queensland" - -#: i18n/states/AU.php:17 -#@ woocommerce -msgid "South Australia" -msgstr "Australia Selatan" - -#: i18n/states/AU.php:18 -#@ woocommerce -msgid "Tasmania" -msgstr "Tasmania" - -#: i18n/states/AU.php:19 -#@ woocommerce -msgid "Victoria" -msgstr "Victoria" - -#: i18n/states/AU.php:20 -#@ woocommerce -msgid "Western Australia" -msgstr "Australia Barat" - -#: i18n/states/BR.php:16 -#@ woocommerce -msgid "Amazonas" -msgstr "Amazonas" - -#: i18n/states/BR.php:13 -#@ woocommerce -msgid "Acre" -msgstr "Acre" - -#: i18n/states/BR.php:14 -#@ woocommerce -msgid "Alagoas" -msgstr "Alagoas" - -#: i18n/states/BR.php:15 -#@ woocommerce -msgid "Amapá" -msgstr "Amapá" - -#: i18n/states/BR.php:18 -#@ woocommerce -msgid "Ceará" -msgstr "Ceará" - -#: i18n/states/BR.php:19 -#@ woocommerce -msgid "Distrito Federal" -msgstr "Distrito Federal" - -#: i18n/states/BR.php:20 -#@ woocommerce -msgid "Espírito Santo" -msgstr "Espírito Santo" - -#: i18n/states/BR.php:22 -#@ woocommerce -msgid "Maranhão" -msgstr "Maranhão" - -#: i18n/states/BR.php:28 -#@ woocommerce -msgid "Paraná" -msgstr "Paraná" - -#: i18n/states/BR.php:29 -#@ woocommerce -msgid "Pernambuco" -msgstr "Pernambuco" - -#: i18n/states/BR.php:30 -#@ woocommerce -msgid "Piauí" -msgstr "Piauí" - -#: i18n/states/BR.php:32 -#@ woocommerce -msgid "Rio Grande do Norte" -msgstr "Rio Grande do Norte" - -#: i18n/states/BR.php:33 -#@ woocommerce -msgid "Rio Grande do Sul" -msgstr "Rio Grande do Sul" - -#: i18n/states/BR.php:34 -#@ woocommerce -msgid "Rondônia" -msgstr "Rondônia" - -#: i18n/states/BR.php:35 -#@ woocommerce -msgid "Roraima" -msgstr "Roraima" - -#: i18n/states/BR.php:36 -#@ woocommerce -msgid "Santa Catarina" -msgstr "Santa Catarina" - -#: i18n/states/BR.php:38 -#@ woocommerce -msgid "Sergipe" -msgstr "Sergipe" - -#: i18n/states/BR.php:39 -#@ woocommerce -msgid "Tocantins" -msgstr "Tocantins" - -#: i18n/states/BR.php:26 -#@ woocommerce -msgid "Pará" -msgstr "Pará" - -#: i18n/states/BR.php:17 -#@ woocommerce -msgid "Bahia" -msgstr "Bahia" - -#: i18n/states/BR.php:21 -#@ woocommerce -msgid "Goiás" -msgstr "Goiás" - -#: i18n/states/BR.php:23 -#@ woocommerce -msgid "Mato Grosso" -msgstr "Mato Grosso" - -#: i18n/states/BR.php:24 -#@ woocommerce -msgid "Mato Grosso do Sul" -msgstr "Mato Grosso do Sul" - -#: i18n/states/BR.php:31 -#@ woocommerce -msgid "Rio de Janeiro" -msgstr "Rio de Janeiro" - -#: i18n/states/BR.php:37 -#@ woocommerce -msgid "São Paulo" -msgstr "São Paulo" - -#: i18n/states/BR.php:25 -#@ woocommerce -msgid "Minas Gerais" -msgstr "Minas Gerais" - -#: i18n/states/BR.php:27 -#@ woocommerce -msgid "Paraíba" -msgstr "Paraíba" - -#: i18n/states/CA.php:13 -#@ woocommerce -msgid "Alberta" -msgstr "Alberta" - -#: i18n/states/CA.php:14 -#@ woocommerce -msgid "British Columbia" -msgstr "British Columbia" - -#: i18n/states/CA.php:15 -#@ woocommerce -msgid "Manitoba" -msgstr "Manitoba" - -#: i18n/states/CA.php:16 -#@ woocommerce -msgid "New Brunswick" -msgstr "New Brunswick" - -#: i18n/states/CA.php:17 -#@ woocommerce -msgid "Newfoundland" -msgstr "Newfoundland" - -#: i18n/states/CA.php:18 -#@ woocommerce -msgid "Northwest Territories" -msgstr "Northwest Territories" - -#: i18n/states/CA.php:19 -#@ woocommerce -msgid "Nova Scotia" -msgstr "Nova Scotia" - -#: i18n/states/CA.php:20 -#@ woocommerce -msgid "Nunavut" -msgstr "Nunavut" - -#: i18n/states/CA.php:21 -#@ woocommerce -msgid "Ontario" -msgstr "Ontario" - -#: i18n/states/CA.php:22 -#@ woocommerce -msgid "Prince Edward Island" -msgstr "Prince Edward Island" - -#: i18n/states/CA.php:23 -#@ woocommerce -msgid "Quebec" -msgstr "Quebec" - -#: i18n/states/CA.php:24 -#@ woocommerce -msgid "Saskatchewan" -msgstr "Saskatchewan" - -#: i18n/states/CA.php:25 -#@ woocommerce -msgid "Yukon Territory" -msgstr "Yukon Territory" - -#: i18n/states/HK.php:13 -#@ woocommerce -msgid "Hong Kong Island" -msgstr "Hong Kong Island" - -#: i18n/states/HK.php:14 -#@ woocommerce -msgid "Kowloon" -msgstr "Kowloon" - -#: i18n/states/HK.php:15 -#@ woocommerce -msgid "New Territories" -msgstr "New Territories" - -#: i18n/states/HZ.php:20 -#@ woocommerce -msgid "Northland" -msgstr "Northland" - -#: i18n/states/HZ.php:13 -#@ woocommerce -msgid "Auckland" -msgstr "Auckland" - -#: i18n/states/HZ.php:25 -#@ woocommerce -msgid "Waikato" -msgstr "Waikato" - -#: i18n/states/HZ.php:14 -#@ woocommerce -msgid "Bay of Plenty" -msgstr "Bay of Plenty" - -#: i18n/states/HZ.php:23 -#@ woocommerce -msgid "Taranaki" -msgstr "Taranaki" - -#: i18n/states/HZ.php:16 -#@ woocommerce -msgid "Hawke’s Bay" -msgstr "Hawke’s Bay" - -#: i18n/states/HZ.php:17 -#@ woocommerce -msgid "Manawatu-Wanganui" -msgstr "Manawatu-Wanganui" - -#: i18n/states/HZ.php:26 -#@ woocommerce -msgid "Wellington" -msgstr "Wellington" - -#: i18n/states/HZ.php:19 -#@ woocommerce -msgid "Nelson" -msgstr "Nelson" - -#: i18n/states/HZ.php:18 -#@ woocommerce -msgid "Marlborough" -msgstr "Marlborough" - -#: i18n/states/HZ.php:24 -#@ woocommerce -msgid "Tasman" -msgstr "Tasman" - -#: i18n/states/HZ.php:27 -#@ woocommerce -msgid "West Coast" -msgstr "West Coast" - -#: i18n/states/HZ.php:15 -#@ woocommerce -msgid "Canterbury" -msgstr "Canterbury" - -#: i18n/states/HZ.php:21 -#@ woocommerce -msgid "Otago" -msgstr "Otago" - -#: i18n/states/HZ.php:22 -#@ woocommerce -msgid "Southland" -msgstr "Southland" - -#: i18n/states/US.php:13 -#@ woocommerce -msgid "Alabama" -msgstr "Alabama" - -#: i18n/states/US.php:14 -#@ woocommerce -msgid "Alaska" -msgstr "Alaska" - -#: i18n/states/US.php:15 -#@ woocommerce -msgid "Arizona" -msgstr "Arizona" - -#: i18n/states/US.php:16 -#@ woocommerce -msgid "Arkansas" -msgstr "Arkansas" - -#: i18n/states/US.php:17 -#@ woocommerce -msgid "California" -msgstr "California" - -#: i18n/states/US.php:18 -#@ woocommerce -msgid "Colorado" -msgstr "Colorado" - -#: i18n/states/US.php:19 -#@ woocommerce -msgid "Connecticut" -msgstr "Connecticut" - -#: i18n/states/US.php:20 -#@ woocommerce -msgid "Delaware" -msgstr "Delaware" - -#: i18n/states/US.php:21 -#@ woocommerce -msgid "District Of Columbia" -msgstr "District Of Columbia" - -#: i18n/states/US.php:22 -#@ woocommerce -msgid "Florida" -msgstr "Florida" - -#: i18n/states/US.php:24 -#@ woocommerce -msgid "Hawaii" -msgstr "Hawai" - -#: i18n/states/US.php:25 -#@ woocommerce -msgid "Idaho" -msgstr "Idaho" - -#: i18n/states/US.php:26 -#@ woocommerce -msgid "Illinois" -msgstr "Illinois" - -#: i18n/states/US.php:27 -#@ woocommerce -msgid "Indiana" -msgstr "Indiana" - -#: i18n/states/US.php:28 -#@ woocommerce -msgid "Iowa" -msgstr "Iowa" - -#: i18n/states/US.php:29 -#@ woocommerce -msgid "Kansas" -msgstr "Kansas" - -#: i18n/states/US.php:30 -#@ woocommerce -msgid "Kentucky" -msgstr "Kentucky" - -#: i18n/states/US.php:31 -#@ woocommerce -msgid "Louisiana" -msgstr "Louisiana" - -#: i18n/states/US.php:32 -#@ woocommerce -msgid "Maine" -msgstr "Maine" - -#: i18n/states/US.php:33 -#@ woocommerce -msgid "Maryland" -msgstr "Maryland" - -#: i18n/states/US.php:34 -#@ woocommerce -msgid "Massachusetts" -msgstr "Massachusetts" - -#: i18n/states/US.php:35 -#@ woocommerce -msgid "Michigan" -msgstr "Michigan" - -#: i18n/states/US.php:36 -#@ woocommerce -msgid "Minnesota" -msgstr "Minnesota" - -#: i18n/states/US.php:37 -#@ woocommerce -msgid "Mississippi" -msgstr "Mississippi" - -#: i18n/states/US.php:38 -#@ woocommerce -msgid "Missouri" -msgstr "Missouri" - -#: i18n/states/US.php:39 -#@ woocommerce -msgid "Montana" -msgstr "Montana" - -#: i18n/states/US.php:40 -#@ woocommerce -msgid "Nebraska" -msgstr "Nebraska" - -#: i18n/states/US.php:41 -#@ woocommerce -msgid "Nevada" -msgstr "Nevada" - -#: i18n/states/US.php:42 -#@ woocommerce -msgid "New Hampshire" -msgstr "New Hampshire" - -#: i18n/states/US.php:43 -#@ woocommerce -msgid "New Jersey" -msgstr "New Jersey" - -#: i18n/states/US.php:44 -#@ woocommerce -msgid "New Mexico" -msgstr "New Mexico" - -#: i18n/states/US.php:45 -#@ woocommerce -msgid "New York" -msgstr "New York" - -#: i18n/states/US.php:46 -#@ woocommerce -msgid "North Carolina" -msgstr "North Carolina" - -#: i18n/states/US.php:47 -#@ woocommerce -msgid "North Dakota" -msgstr "North Dakota" - -#: i18n/states/US.php:48 -#@ woocommerce -msgid "Ohio" -msgstr "Ohio" - -#: i18n/states/US.php:49 -#@ woocommerce -msgid "Oklahoma" -msgstr "Oklahoma" - -#: i18n/states/US.php:50 -#@ woocommerce -msgid "Oregon" -msgstr "Oregon" - -#: i18n/states/US.php:51 -#@ woocommerce -msgid "Pennsylvania" -msgstr "Pennsylvania" - -#: i18n/states/US.php:52 -#@ woocommerce -msgid "Rhode Island" -msgstr "Rhode Island" - -#: i18n/states/US.php:53 -#@ woocommerce -msgid "South Carolina" -msgstr "South Carolina" - -#: i18n/states/US.php:54 -#@ woocommerce -msgid "South Dakota" -msgstr "South Dakota" - -#: i18n/states/US.php:55 -#@ woocommerce -msgid "Tennessee" -msgstr "Tennessee" - -#: i18n/states/US.php:56 -#@ woocommerce -msgid "Texas" -msgstr "Texas" - -#: i18n/states/US.php:57 -#@ woocommerce -msgid "Utah" -msgstr "Utah" - -#: i18n/states/US.php:58 -#@ woocommerce -msgid "Vermont" -msgstr "Vermont" - -#: i18n/states/US.php:59 -#@ woocommerce -msgid "Virginia" -msgstr "Virginia" - -#: i18n/states/US.php:60 -#@ woocommerce -msgid "Washington" -msgstr "Washington" - -#: i18n/states/US.php:61 -#@ woocommerce -msgid "West Virginia" -msgstr "Virginia Barat" - -#: i18n/states/US.php:62 -#@ woocommerce -msgid "Wisconsin" -msgstr "Wisconsin" - -#: i18n/states/US.php:63 -#@ woocommerce -msgid "Wyoming" -msgstr "Wyoming" - -#: classes/class-wc-countries.php:418 -#@ woocommerce -msgid "to the" -msgstr "ke" - -#: classes/class-wc-countries.php:419 -#@ woocommerce -msgid "to" -msgstr "untuk" - -#: classes/class-wc-countries.php:432 -#@ woocommerce -msgid "the" -msgstr "" - -#: classes/class-wc-countries.php:444 -#@ woocommerce -msgid "VAT" -msgstr "PPN" - -#: classes/class-wc-countries.php:457 -#@ woocommerce -msgid "(incl. VAT)" -msgstr "(Termasuk PPN)" - -#: classes/class-wc-countries.php:457 -#@ woocommerce -msgid "(incl. tax)" -msgstr "(Termasuk pajak)" - -#: classes/class-wc-countries.php:470 -#@ woocommerce -msgid "(ex. VAT)" -msgstr "(Ex. PPN)" - -#: classes/class-wc-countries.php:694 -#: classes/class-wc-countries.php:704 -#: classes/class-wc-countries.php:724 -#: classes/class-wc-countries.php:779 -#: classes/class-wc-countries.php:803 -#: classes/class-wc-countries.php:848 -#: classes/class-wc-countries.php:872 -#@ woocommerce -msgid "Province" -msgstr "Propinsi" - -#: classes/class-wc-countries.php:710 -#@ woocommerce -msgid "Canton" -msgstr "Wilayah" - -#: classes/class-wc-countries.php:719 -#: classes/class-wc-countries.php:854 -#@ woocommerce -msgid "Municipality" -msgstr "Kotamadya" - -#: classes/class-wc-countries.php:769 -#@ woocommerce -msgid "Region" -msgstr "Wilayah" - -#: classes/class-wc-countries.php:877 -#@ woocommerce -msgid "Zip" -msgstr "Kode Pos" - -#: classes/class-wc-countries.php:880 -#@ woocommerce -msgid "State" -msgstr "Negara" - -#: classes/class-wc-countries.php:888 -#@ woocommerce -msgid "County" -msgstr "Daerah" - -#: classes/class-wc-countries.php:971 -#@ woocommerce -msgid "Company Name" -msgstr "Nama Perusahaan" - -#: classes/class-wc-countries.php:1038 -#@ woocommerce -msgid "Email Address" -msgstr "Alamat Email" - -#: classes/class-wc-coupon.php:459 -#@ woocommerce -msgid "Coupon usage limit has been reached." -msgstr "Batas penggunaan kupon telah tercapai." - -#: classes/class-wc-coupon.php:462 -#@ woocommerce -msgid "This coupon has expired." -msgstr "Kupon ini telah kadaluarsa." - -#: classes/class-wc-coupon.php:465 -#, php-format -#@ woocommerce -msgid "The minimum spend for this coupon is %s." -msgstr "Minimum pengeluaran untuk kupon ini adalah %s." - -#: classes/emails/class-wc-email-customer-note.php:36 -#@ woocommerce -msgid "A note has been added to your order" -msgstr "Catatan telah ditambahkan ke pesanan Anda" - -#: classes/class-wc-emails.php:281 -#@ woocommerce -msgid "Product low in stock" -msgstr "Produk ini Stok kurang" - -#: classes/class-wc-emails.php:288 -#: classes/class-wc-emails.php:320 -#: classes/class-wc-emails.php:364 -#, php-format -#@ woocommerce -msgid "Product #%s - %s" -msgstr "Produk #%s - %s" - -#: classes/class-wc-emails.php:290 -#@ woocommerce -msgid "is low in stock." -msgstr "kekurangan stok." - -#: classes/class-wc-emails.php:313 -#@ woocommerce -msgid "Product out of stock" -msgstr "Produk stok kosong" - -#: classes/class-wc-emails.php:322 -#@ woocommerce -msgid "is out of stock." -msgstr "sudah habis." - -#: classes/class-wc-emails.php:357 -#@ woocommerce -msgid "Product Backorder" -msgstr "Produk Backorder" - -#: classes/class-wc-emails.php:366 -#, php-format -#@ woocommerce -msgid "%s units of %s have been backordered in order #%s." -msgstr "%s unit dari %s telah di backorder dalam pesanan #%s." - -#: classes/class-wc-emails.php:246 -#@ woocommerce -msgid "Note" -msgstr "Catatan" - -#: classes/class-wc-order.php:283 -#@ woocommerce -msgctxt "hash before order number" -msgid "#" -msgstr "#" - -#: classes/class-wc-order.php:858 -#, php-format -#@ woocommerce -msgid " %svia %s" -msgstr " %svia %s" - -#: classes/class-wc-order.php:923 -#@ woocommerce -msgid "Cart Subtotal:" -msgstr "Subtotal Keranjang:" - -#: classes/class-wc-order.php:935 -#@ woocommerce -msgid "Shipping:" -msgstr "Pengiriman:" - -#: classes/class-wc-order.php:980 -#@ woocommerce -msgid "Subtotal:" -msgstr "Subtotal:" - -#: classes/class-wc-order.php:1235 -#, php-format -#@ woocommerce -msgid "Order status changed from %s to %s." -msgstr "Status pesanan berubah dari %s ke %s." - -#: classes/class-wc-order.php:1473 -#@ woocommerce -msgid "Order item stock reduced successfully." -msgstr "Stok pesanan barang berhasil dikurangi." - -#: classes/abstracts/abstract-wc-product.php:550 -#, php-format -#@ woocommerce -msgid "Only %s left in stock" -msgstr "Hanya tinggal %s dalam stok" - -#: classes/abstracts/abstract-wc-product.php:553 -#, php-format -#@ woocommerce -msgid "%s in stock" -msgstr "%s dalam stok" - -#: classes/abstracts/abstract-wc-product.php:560 -#@ woocommerce -msgid "(backorders allowed)" -msgstr "(Backorders diperbolehkan)" - -#: classes/abstracts/abstract-wc-product.php:566 -#: classes/abstracts/abstract-wc-product.php:579 -#: templates/cart/cart.php:76 -#@ woocommerce -msgid "Available on backorder" -msgstr "Tersedia backorder" - -#: classes/abstracts/abstract-wc-product.php:873 -#@ woocommerce -msgctxt "min_price" -msgid "From:" -msgstr "Dari:" - -#: classes/abstracts/abstract-wc-product.php:965 -#: templates/single-product-reviews.php:43 -#, php-format -#@ woocommerce -msgid "Rated %s out of 5" -msgstr "Nilai %s dari 5" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:201 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:258 -#: templates/single-product/meta.php:19 -#@ woocommerce -msgid "SKU:" -msgstr "SKU:" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:28 -#@ woocommerce -msgid "Bacs" -msgstr "Bacs" - -#: classes/abstracts/abstract-wc-email.php:421 -#: classes/emails/class-wc-email-customer-completed-order.php:135 -#: classes/emails/class-wc-email-customer-invoice.php:138 -#: classes/emails/class-wc-email-new-order.php:115 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:63 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:57 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:158 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:119 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:77 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:75 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:52 -#@ woocommerce -msgid "Enable/Disable" -msgstr "Aktifkan/Nonaktifkan" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:65 -#@ woocommerce -msgid "Enable Bank Transfer" -msgstr "Aktifkan Transfer Bank" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:69 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:63 -#: classes/gateways/cod/class-wc-gateway-cod.php:87 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:171 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:125 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:104 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:84 -#@ woocommerce -msgid "Title" -msgstr "Judul" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:71 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:65 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:173 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:127 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:85 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:83 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:60 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:106 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:86 -#@ woocommerce -msgid "This controls the title which the user sees during checkout." -msgstr "Ini mengontrol judul yang dilihat pengguna pada waktu checkout." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:72 -#@ woocommerce -msgid "Direct Bank Transfer" -msgstr "Direct Transfer Bank" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:76 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:70 -#@ woocommerce -msgid "Customer Message" -msgstr "Pesan Pelanggan" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:78 -#@ woocommerce -msgid "Give the customer instructions for paying via BACS, and let them know that their order won't be shipping until the money is received." -msgstr "Memberikan instruksi pelanggan untuk membayar melalui BACS, dan beritahukan mereka bahwa pesanan tidak akan dikirim sampai uang diterima." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:79 -#@ woocommerce -msgid "Make your payment directly into our bank account. Please use your Order ID as the payment reference. Your order wont be shipped until the funds have cleared in our account." -msgstr "Lakukan pembayaran langsung ke rekening bank kami. Silakan gunakan ID Order Anda sebagai referensi pembayaran. Pesanan Anda tidak akan dikirim apabila dana belum masuk di rekening kami." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:82 -#@ woocommerce -msgid "Account Details" -msgstr "Detail Akun" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:84 -#@ woocommerce -msgid "Optionally enter your bank details below for customers to pay into." -msgstr "Opsional masukkan rincian bank Anda di bawah ini sehingga pelanggan dapat langsung membayar." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:88 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:163 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:203 -#@ woocommerce -msgid "Account Name" -msgstr "Nama Rekening" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:94 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:164 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:204 -#@ woocommerce -msgid "Account Number" -msgstr "Nomor Rekening" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:100 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:165 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:205 -#@ woocommerce -msgid "Sort Code" -msgstr "Kode Sortasi" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:106 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:166 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:206 -#@ woocommerce -msgid "Bank Name" -msgstr "Nama Bank" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:112 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:167 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:207 -#@ woocommerce -msgid "IBAN" -msgstr "IBAN" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:117 -#@ woocommerce -msgid "BIC (formerly Swift)" -msgstr "BIC (sebelumnya Swift)" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:136 -#@ woocommerce -msgid "BACS Payment" -msgstr "Pembayaran BACS" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:137 -#@ woocommerce -msgid "Allows payments by BACS (Bank Account Clearing System), more commonly known as direct bank/wire transfer." -msgstr "Memungkinkan pembayaran dengan BACS (Rekening Bank Sistem Kliring), lebih dikenal sebagai direct bank/wire transfer." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:158 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:200 -#@ woocommerce -msgid "Our Details" -msgstr "Detail Kami" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:168 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:208 -#@ woocommerce -msgid "BIC" -msgstr "BIC" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:234 -#@ woocommerce -msgid "Awaiting BACS payment" -msgstr "Menunggu pembayaran BACS" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:28 -#@ woocommerce -msgid "Cheque" -msgstr "Cek" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:59 -#@ woocommerce -msgid "Enable Cheque Payment" -msgstr "Aktifkan Pembayaran Cek" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:66 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:90 -#@ woocommerce -msgid "Cheque Payment" -msgstr "Cek Pembayaran" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:72 -#@ woocommerce -msgid "Let the customer know the payee and where they should be sending the cheque to and that their order won't be shipping until you receive it." -msgstr "Beritahukan pelanggan siapa pembayar dan tujuan pengiriman cek dan pesanan tidak akan dikirim sampe pembayaran selesai." - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:73 -#@ woocommerce -msgid "Please send your cheque to Store Name, Store Street, Store Town, Store State / County, Store Postcode." -msgstr "Silakan kirim cek Anda ke Nama Toko, Alamat Toko, Kota Toko, Negara/Wilayah Toko, Kodepos Toko." - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:91 -#@ woocommerce -msgid "Allows cheque payments. Why would you take cheques in this day and age? Well you probably wouldn't but it does allow you to make test purchases for testing order emails and the 'success' pages etc." -msgstr "Memungkinkan pembayaran cek. Mengapa Anda mengambil cek di masa ini? Yah Anda mungkin tidak, tetapi memungkinkan Anda untuk melakukan pembelian tes untuk email rangka pengujian dan 'sukses' halaman dll" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:147 -#@ woocommerce -msgid "Awaiting cheque payment" -msgstr "Menunggu cek pembayaran" - -#: classes/gateways/cod/class-wc-gateway-cod.php:27 -#: classes/gateways/cod/class-wc-gateway-cod.php:54 -#: classes/gateways/cod/class-wc-gateway-cod.php:90 -#@ woocommerce -msgid "Cash on Delivery" -msgstr "Cash on Delivery" - -#: classes/gateways/cod/class-wc-gateway-cod.php:55 -#@ woocommerce -msgid "Have your customers pay with cash (or by other means) upon delivery." -msgstr "Apakah pelanggan Anda membayar dengan uang tunai (atau dengan cara lain) pada saat pengiriman." - -#: classes/gateways/cod/class-wc-gateway-cod.php:80 -#@ woocommerce -msgid "Enable COD" -msgstr "Aktifkan COD" - -#: classes/gateways/cod/class-wc-gateway-cod.php:81 -#@ woocommerce -msgid "Enable Cash on Delivery" -msgstr "Aktifkan Cash on Delivery" - -#: classes/gateways/cod/class-wc-gateway-cod.php:89 -#@ woocommerce -msgid "Payment method title that the customer will see on your website." -msgstr "Judul Metode Pembayaran yang dilihat pelanggan di situs web Anda." - -#: admin/post-types/shop_coupon.php:28 -#: classes/gateways/cod/class-wc-gateway-cod.php:94 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:178 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:132 -#: woocommerce-template.php:748 -#@ woocommerce -msgid "Description" -msgstr "Deskripsi" - -#: classes/gateways/cod/class-wc-gateway-cod.php:96 -#@ woocommerce -msgid "Payment method description that the customer will see on your website." -msgstr "Deskripsi Metode Pembayaran yang dilihat pelanggan di situs web Anda." - -#: classes/gateways/cod/class-wc-gateway-cod.php:100 -#@ woocommerce -msgid "Instructions" -msgstr "Instruksi" - -#: classes/gateways/cod/class-wc-gateway-cod.php:102 -#@ woocommerce -msgid "Instructions that will be added to the thank you page." -msgstr "Instruksi yang akan ditambahkan ke halaman terima kasih." - -#: classes/gateways/cod/class-wc-gateway-cod.php:176 -#@ woocommerce -msgid "Payment to be made upon delivery." -msgstr "Pembayaran harus dilakukan pada saat pengiriman." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:31 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:196 -#@ woocommerce -msgid "Mijireh Checkout" -msgstr "Mijireh Checkout" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:143 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:321 -#@ woocommerce -msgid "Mijireh error:" -msgstr "Mijireh error:" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:160 -#@ woocommerce -msgid "Enable Mijireh Checkout" -msgstr "Aktifkan Mijireh Checkout" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:164 -#@ woocommerce -msgid "Access Key" -msgstr "Kunci Akses" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:166 -#@ woocommerce -msgid "The Mijireh access key for your store." -msgstr "Kunci Mijireh akses untuk toko Anda." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:174 -#@ woocommerce -msgid "Credit Card" -msgstr "Kartu Kredit" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:180 -#@ woocommerce -msgid "Pay securely with you credit card." -msgstr "Bayar aman dengan kartu kredit Anda." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:181 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:134 -#@ woocommerce -msgid "This controls the description which the user sees during checkout." -msgstr "Ini mengontrol deskripsi yang dilihat pengguna pada waktu checkout." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:200 -#@ woocommerce -msgid "Get started with Mijireh Checkout" -msgstr "Memulai Mijireh Checkout" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:201 -#@ woocommerce -msgid "provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site. Mijireh supports a wide variety of payment gateways: Stripe, Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and more." -msgstr "menyediakan Compliant PCI penuh, cara yang aman untuk mengumpulkan dan mengirimkan data kartu kredit ke gateway pembayaran Anda sekaligus menjaga Anda mengendalikan desain situs Anda. Mijireh mendukung berbagai gateway pembayaran: Stripe, Authorize.net, PayPal, Eway, SagePay, Braintree, PayLeap, dan banyak lagi." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:203 -#@ woocommerce -msgid "Join for free" -msgstr "Bergabung secara gratis" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:203 -#@ woocommerce -msgid "Learn more about WooCommerce and Mijireh" -msgstr "Pelajari lebih lanjut tentang WooCommerce dan Mijireh" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:207 -#@ woocommerce -msgid "provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." -msgstr "menyediakan Compliant PCI penuh, cara yang aman untuk mengumpulkan dan mengirimkan data kartu kredit ke gateway pembayaran Anda sekaligus menjaga Anda mengendalikan desain situs Anda." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:34 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:128 -#@ woocommerce -msgid "PayPal" -msgstr "PayPal" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:90 -#@ woocommerce -msgid "PayPal standard" -msgstr "PayPal standar" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:91 -#@ woocommerce -msgid "PayPal standard works by sending the user to PayPal to enter their payment information." -msgstr "PayPal standar bekerja dengan mengirimkan pengguna ke PayPal untuk memasukkan informasi pembayaran mereka." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:103 -#@ woocommerce -msgid "Gateway Disabled" -msgstr "Gateway Dinonaktifkan" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:103 -#@ woocommerce -msgid "PayPal does not support your store currency." -msgstr "PayPal tidak mendukung mata uang toko Anda." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:121 -#@ woocommerce -msgid "Enable PayPal standard" -msgstr "Aktifkan PayPal standar" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:135 -#@ woocommerce -msgid "Pay via PayPal; you can pay with your credit card if you don't have a PayPal account" -msgstr "Bayar lewat PayPal; anda dapat membayar menggunakan kartu kredit apabila anda tidak memiliki akun PayPal" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:138 -#@ woocommerce -msgid "PayPal Email" -msgstr "PayPal Email" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:140 -#@ woocommerce -msgid "Please enter your PayPal email address; this is needed in order to take payment." -msgstr "Silakan masukkan alamat email PayPal Anda, ini diperlukan dalam rangka untuk mengambil pembayaran." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:146 -#@ woocommerce -msgid "Invoice Prefix" -msgstr "Awalan Faktur" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:153 -#@ woocommerce -msgid "Submission method" -msgstr "Metode Submission" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:155 -#@ woocommerce -msgid "Use form submission method." -msgstr "Gunakan formulir metode submission." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:156 -#@ woocommerce -msgid "Enable this to post order data to PayPal via a form instead of using a redirect/querystring." -msgstr "Aktifkan ini untuk mengirim data ke PayPal melalui formulir daripada menggunakan redirect/QueryString." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:160 -#@ woocommerce -msgid "Page Style" -msgstr "Gaya Halaman" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:162 -#@ woocommerce -msgid "Optionally enter the name of the page style you wish to use. These are defined within your PayPal account." -msgstr "Opsional masukkan nama style halaman yang ingin Anda gunakan. Ini didefinisikan dalam account PayPal Anda." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:168 -#@ woocommerce -msgid "Shipping options" -msgstr "Pilihan Pengiriman" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:173 -#@ woocommerce -msgid "Shipping details" -msgstr "Rincian Pengiriman" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:175 -#@ woocommerce -msgid "Send shipping details to PayPal instead of billing." -msgstr "Kirim rincian pengiriman ke PayPal bukannya penagihan." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:177 -#@ woocommerce -msgid "PayPal allows us to send 1 address. If you are using PayPal for shipping labels you may prefer to send the shipping address rather than billing." -msgstr "PayPal memungkinkan kita untuk mengirim 1 address. Jika Anda menggunakan PayPal untuk label pengiriman Anda dapat memilih untuk mengirim alamat pengiriman daripada penagihan." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:181 -#@ woocommerce -msgid "Address override" -msgstr "Menimpa Alamat" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:183 -#@ woocommerce -msgid "Enable \"address_override\" to prevent address information from being changed." -msgstr "Aktifkan \"address_override\" untuk menghindari informasi alamat berubah. " - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:184 -#@ woocommerce -msgid "PayPal verifies addresses therefore this setting can cause errors (we recommend keeping it disabled)." -msgstr "PayPal memverifikasi alamat sehingga pengaturan ini dapat menyebabkan kesalahan (kami sarankan dinonaktifkan)." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:188 -#@ woocommerce -msgid "Gateway Testing" -msgstr "Pengujian Gateway" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:193 -#@ woocommerce -msgid "PayPal sandbox" -msgstr "PayPal sandbox" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:195 -#@ woocommerce -msgid "Enable PayPal sandbox" -msgstr "Aktifkan PayPal sandbox" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:197 -#, php-format -#@ woocommerce -msgid "PayPal sandbox can be used to test payments. Sign up for a developer account here." -msgstr "PayPal sandbox dapat digunakan untuk menguji pembayaran. Mendaftar untuk akun pengembang disini." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:200 -#@ woocommerce -msgid "Debug Log" -msgstr "Debug Log" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:202 -#@ woocommerce -msgid "Enable logging" -msgstr "Aktifkan logging" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:204 -#@ default -msgid "Log PayPal events, such as IPN requests, inside woocommerce/logs/paypal.txt" -msgstr "Log peristiwa PayPal, seperti permintaan IPN, dalam woocommerce/logs/paypal.txt" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:323 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:373 -#@ woocommerce -msgid "Shipping via" -msgstr "Pengiriman melalui" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:414 -#@ woocommerce -msgid "Thank you for your order. We are now redirecting you to PayPal to make payment." -msgstr "Terima kasih atas pesanan Anda. Kami sekarang mengarahkan Anda ke PayPal untuk melakukan pembayaran." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:435 -#@ woocommerce -msgid "Pay via PayPal" -msgstr "Membayar melalui PayPal" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:435 -#@ woocommerce -msgid "Cancel order & restore cart" -msgstr "Batalkan pesanan & kembalikan keranjang belanja" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:489 -#@ woocommerce -msgid "Thank you for your order, please click the button below to pay with PayPal." -msgstr "Terima kasih atas pesanan Anda, silakan klik tombol di bawah ini untuk membayar dengan PayPal." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:634 -#, php-format -#@ woocommerce -msgid "Validation error: PayPal amounts do not match (gross %s)." -msgstr "Validasi error: jumlah PayPal tidak cocok (gross %s)." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:652 -#@ woocommerce -msgid "IPN payment completed" -msgstr "IPN pembayaran selesai" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:664 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:672 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:690 -#, php-format -#@ woocommerce -msgid "Payment %s via IPN." -msgstr "Pembayaran %s melalui IPN." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:677 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:695 -#@ woocommerce -msgid "Order refunded/reversed" -msgstr "Pemesanan dikembalikan" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:678 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:696 -#, php-format -#@ woocommerce -msgid "Order %s has been marked as refunded - PayPal reason code: %s" -msgstr "Pesanan %s telah ditandai sebagai dikembalikan - kode alasan PayPal: %s" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:681 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:699 -#, php-format -#@ woocommerce -msgid "Payment for order %s refunded/reversed" -msgstr "Pembayaran untuk pesanan %s dikembalikan" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:26 -#@ woocommerce -msgid "Google Analytics" -msgstr "Google Analytics" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:27 -#@ woocommerce -msgid "Google Analytics is a free service offered by Google that generates detailed statistics about the visitors to a website." -msgstr "Google Analytics adalah layanan gratis yang ditawarkan oleh Google yang menghasilkan statistik rinci tentang pengunjung ke situs web." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:62 -#@ woocommerce -msgid "Google Analytics ID" -msgstr "Google Analytics ID" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:63 -#@ woocommerce -msgid "Log into your google analytics account to find your ID. e.g. UA-XXXXX-X" -msgstr "Masuk ke akun google analytics Anda untuk menemukan ID Anda, contoh UA-XXXXX-X" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:68 -#@ woocommerce -msgid "Tracking code" -msgstr "Kode pelacakan" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:69 -#@ woocommerce -msgid "Add tracking code to your site's footer. You don't need to enable this if using a 3rd party analytics plugin." -msgstr "Tambahkan kode pelacakan ke situs footer Anda. Anda tidak perlu mengaktifkan ini jika menggunakan pihak ke-3 plugin analisis." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:75 -#@ woocommerce -msgid "Add eCommerce tracking code to the thankyou page" -msgstr "Tambahkan kode eCommerce pelacakan ke halaman thankyou" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:81 -#@ woocommerce -msgid "Add event tracking code for add to cart actions" -msgstr "Tambahkan kode pelacakan untuk menambah ke keranjang belanja" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:277 -#@ woocommerce -msgid "Add to Cart" -msgstr "Tambahkan ke Keranjang" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:26 -#@ woocommerce -msgid "ShareDaddy" -msgstr "ShareDaddy" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:27 -#@ woocommerce -msgid "ShareDaddy is a sharing plugin bundled with JetPack." -msgstr "ShareDaddy adalah plugin berbagi dibundel dengan JetPack." - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:51 -#@ woocommerce -msgid "Output ShareDaddy button?" -msgstr "Output tombol ShareDaddy?" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:52 -#@ woocommerce -msgid "Enable this option to show the ShareDaddy button on the product page." -msgstr "Aktifkan opsi ini untuk menampilkan tombol ShareDaddy pada halaman produk." - -#: classes/integrations/sharethis/class-wc-sharethis.php:29 -#@ woocommerce -msgid "ShareThis" -msgstr "ShareThis" - -#: classes/integrations/sharethis/class-wc-sharethis.php:30 -#@ woocommerce -msgid "ShareThis offers a sharing widget which will allow customers to share links to products with their friends." -msgstr "ShareThis menawarkan widget berbagi yang akan memungkinkan pelanggan untuk berbagi link ke produk dengan teman-teman mereka." - -#: classes/integrations/sharethis/class-wc-sharethis.php:63 -#@ woocommerce -msgid "ShareThis Publisher ID" -msgstr "ShareThis Penerbit ID" - -#: classes/integrations/sharethis/class-wc-sharethis.php:64 -#, php-format -#@ woocommerce -msgid "Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons on product pages." -msgstr "Masukkan %1$sShareThis penerbit ID%2$s anda untuk menampilkan tombol berbagi sosial pada halaman produk." - -#: classes/integrations/sharethis/class-wc-sharethis.php:69 -#@ woocommerce -msgid "ShareThis Code" -msgstr "Kode ShareThis" - -#: classes/integrations/sharethis/class-wc-sharethis.php:70 -#@ woocommerce -msgid "You can tweak the ShareThis code by editing this option." -msgstr "Anda dapat men-tweak kode ShareThis dengan mengedit opsi ini." - -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:22 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:329 -#@ woocommerce -#@ default -msgid "ShareYourCart" -msgstr "ShareYourCart" - -#: classes/integrations/shareyourcart/views/admin-page.php:33 -#@ woocommerce -msgid "Setup your ShareYourCart account" -msgstr "Setup akun ShareYourCart Anda" - -#: classes/integrations/shareyourcart/views/admin-page.php:35 -#@ woocommerce -msgid "Create an account" -msgstr "Buat akun" - -#: classes/integrations/shareyourcart/views/admin-page.php:35 -#@ woocommerce -msgid "Can't access your account?" -msgstr "Tidak bisa mengakses akun anda?" - -#: classes/integrations/shareyourcart/views/admin-page.php:100 -#@ woocommerce -msgid "Configure" -msgstr "Konfigurasi" - -#: classes/integrations/shareyourcart/views/button-settings-page.php:8 -#: classes/integrations/shareyourcart/views/button-settings-page.php:11 -#@ woocommerce -msgid "Button style" -msgstr "Gaya Tombol" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:25 -#@ woocommerce -msgid "Flat rate" -msgstr "Tarif rata" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:28 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:461 -#@ woocommerce -msgid "Flat Rates" -msgstr "Tarif Rata" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:29 -#@ woocommerce -msgid "Flat rates let you define a standard rate per item, or per order." -msgstr "Tarif flat memperbolehkan Anda menentukan tingkat standar per item, atau per pesanan." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:79 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:54 -#@ woocommerce -msgid "Enable this shipping method" -msgstr "Aktifkan metode pengiriman" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:83 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:81 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:58 -#@ woocommerce -msgid "Method Title" -msgstr "Judul Metode" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:86 -#@ woocommerce -msgid "Flat Rate" -msgstr "Tarif Rata" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:90 -#@ woocommerce -msgid "Cost per order" -msgstr "Biaya per pesanan" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:102 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:88 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:143 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:99 -#@ woocommerce -msgid "Method availability" -msgstr "Ketersediaan Metode" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:107 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:93 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:148 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:104 -#@ woocommerce -msgid "All allowed countries" -msgstr "Semua negara yang diperbolehkan" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:120 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:83 -#@ woocommerce -msgid "Calculation Type" -msgstr "Type Perhitungan" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:124 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:87 -#@ woocommerce -msgid "Per Order - charge shipping for the entire order as a whole" -msgstr "Per Pesanan - ongkos kirim untuk seluruh pesanan secara keseluruhan" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:125 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:88 -#@ woocommerce -msgid "Per Item - charge shipping for each item individually" -msgstr "Per Barang - biaya pengiriman untuk setiap item individual" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:126 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:89 -#@ woocommerce -msgid "Per Class - charge shipping for each shipping class in an order" -msgstr "Per Kelas - ongkos kirim untuk setiap kelas pengiriman dalam pesanan" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:139 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:102 -#@ woocommerce -msgid "Default Cost" -msgstr "Biaya standar" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:145 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:108 -#@ woocommerce -msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -msgstr "Biaya tidak termasuk pajak. Masukkan nilai, contoh 2.50." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:151 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:114 -#@ woocommerce -msgid "Default Handling Fee" -msgstr "Standar Biaya Penanganan" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:153 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:116 -#@ woocommerce -msgid "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. Leave blank to disable." -msgstr "Biaya tanpa pajak. Masukkan nilai, contoh 2.50, atau persentasi, contoh 5%. Biarkan kosong untuk menonaktifkan." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:159 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:122 -#@ woocommerce -msgid "Minimum Fee" -msgstr "Biaya Minimum" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:165 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:128 -#@ woocommerce -msgid "Enter a minimum fee amount. Fee's less than this will be increased. Leave blank to disable." -msgstr "Masukkan minimum biaya. Biaya lebih kecil dari ini akan ditingkatkan. Biarkan kosong untuk menonaktifkan." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:173 -#@ woocommerce -msgid "Optional extra shipping options with additional costs (one per line). Example: Option Name|Cost|Per-order (yes or no). Example: Priority Mail|6.95|yes. If per-order is set to no, it will use the \"Calculation Type\" setting." -msgstr "Opsional pengiriman opsi tambahan dengan biaya tambahan (satu per baris). Contoh: Option Name|Cost|Per-order (yes or no). Example: Priority Mail|6.95|yes. Apabila per-order di set ke no, maka \"Calculation Type\" akan dipergunakan." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:467 -#: woocommerce.php:857 -#@ woocommerce -msgid "Shipping Class" -msgstr "Kelas Pengiriman" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:468 -#@ woocommerce -msgid "Cost, excluding tax." -msgstr "Biaya, tidak termasuk pajak." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:469 -#@ woocommerce -msgid "Handling Fee" -msgstr "Biaya Penanganan" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:469 -#@ woocommerce -msgid "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -msgstr "Biaya tanpa pajak. Masukkan nilai, contoh 2.50, atau persentasi, contoh 5%." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:474 -#@ woocommerce -msgid "+ Add Flat Rate" -msgstr "+ Menambah Tarif Rata" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:475 -#@ woocommerce -msgid "Add rates for shipping classes here — they will override the default costs defined above." -msgstr "Menambah tarif untuk kelas pengiriman disini — mereka akan menghiraukan biaya default yang sudah didefinisi." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:475 -#@ woocommerce -msgid "Delete selected rates" -msgstr "Menghapus tarif yang dipilih" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:495 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:528 -#@ woocommerce -msgid "Select a class…" -msgstr "Memilih kelas…" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:500 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:501 -#@ woocommerce -msgid "0.00" -msgstr "0.00" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:25 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:145 -#@ woocommerce -msgid "Free Shipping" -msgstr "Pengiriman Gratis" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:77 -#@ woocommerce -msgid "Enable Free Shipping" -msgstr "Aktifkan Pengiriman Gratis" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:118 -#@ woocommerce -msgid "Minimum Order Amount" -msgstr "Minimum Jumlah Pesanan" - -#: admin/woocommerce-admin-reports.php:1531 -#: templates/cart/cart.php:127 -#: woocommerce.php:1062 -#@ woocommerce -msgid "Coupon" -msgstr "Kupon" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:28 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:31 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:61 -#@ woocommerce -msgid "International Delivery" -msgstr "Pengiriman Internasional" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:32 -#@ woocommerce -msgid "International delivery based on flat rate shipping." -msgstr "Pengiriman internasional berdasarkan pengiriman flat rate." - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:65 -#@ woocommerce -msgid "Availability" -msgstr "Ketersediaan" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:70 -#@ woocommerce -msgid "Selected countries" -msgstr "Negara yang dipilih" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:71 -#@ woocommerce -msgid "Excluding selected countries" -msgstr "Tidak termasuk negara tertentu" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:75 -#@ woocommerce -msgid "Countries" -msgstr "Negara" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:25 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:107 -#@ woocommerce -msgid "Local Delivery" -msgstr "Pengiriman Lokal" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:98 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:78 -#@ woocommerce -msgid "Enable" -msgstr "Mengaktifkan" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:100 -#@ woocommerce -msgid "Enable local delivery" -msgstr "Aktifkan pengiriman lokal" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:111 -#@ woocommerce -msgid "Fee Type" -msgstr "Jenis Tarif" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:113 -#@ woocommerce -msgid "How to calculate delivery charges" -msgstr "Bagaimana menghitung biaya pengiriman" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 -#@ woocommerce -msgid "Fixed amount" -msgstr "Jumlah Tetap" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:117 -#@ woocommerce -msgid "Percentage of cart total" -msgstr "Persentase dari total keranjang" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:118 -#@ woocommerce -msgid "Fixed amount per product" -msgstr "Jumlah Tetap per produk" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:123 -#@ woocommerce -msgid "Delivery Fee" -msgstr "Biaya Pengiriman" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:129 -#@ woocommerce -msgid "What fee do you want to charge for local delivery, disregarded if you choose free. Leave blank to disable." -msgstr "Apa biaya yang Anda ingin biaya untuk pengiriman lokal, diabaikan jika Anda memilih gratis. Biarkan kosong untuk menonaktifkan." - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:135 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:91 -#@ woocommerce -msgid "Zip/Post Codes" -msgstr "Kode Pos" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:172 -#@ woocommerce -msgid "Local delivery is a simple shipping method for delivering orders locally." -msgstr "Pengiriman lokal adalah metode pengiriman sederhana untuk mengirimkan pesanan secara lokal." - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:25 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:87 -#@ woocommerce -msgid "Local Pickup" -msgstr "Penjemputan lokal" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:80 -#@ woocommerce -msgid "Enable local pickup" -msgstr "Aktifkan penjemputan lokal" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:134 -#@ woocommerce -msgid "Local pickup is a simple method which allows the customer to pick up their order themselves." -msgstr "Penjemputan lokal adalah metode sederhana yang memungkinkan pelanggan untuk mengambil pesanan mereka sendiri." - -#: i18n/strings.php:16 -#@ woocommerce -msgid "pending" -msgstr "tertunda" - -#: i18n/strings.php:17 -#@ woocommerce -msgid "failed" -msgstr "gagal" - -#: i18n/strings.php:18 -#@ woocommerce -msgid "on-hold" -msgstr "tertahan" - -#: i18n/strings.php:19 -#@ woocommerce -msgid "processing" -msgstr "memproses" - -#: i18n/strings.php:20 -#@ woocommerce -msgid "completed" -msgstr "selesai" - -#: i18n/strings.php:21 -#@ woocommerce -msgid "refunded" -msgstr "dikembalikan" - -#: i18n/strings.php:22 -#@ woocommerce -msgid "cancelled" -msgstr "dibatalkan" - -#: classes/class-wc-coupon.php:497 -#@ woocommerce -msgid "Please enter a coupon code." -msgstr "Masukkan kode kupon." - -#: classes/shortcodes/class-wc-shortcode-cart.php:54 -#: woocommerce-functions.php:1637 -#@ woocommerce -msgid "Please enter a valid postcode/ZIP." -msgstr "Masukkan kode pos yang valid." - -#: classes/shortcodes/class-wc-shortcode-cart.php:65 -#: classes/shortcodes/class-wc-shortcode-cart.php:71 -#@ woocommerce -msgid "Shipping costs updated." -msgstr "Biaya Pengiriman diperbarui." - -#: classes/shortcodes/class-wc-shortcode-checkout.php:64 -#@ woocommerce -msgid "The order totals have been updated. Please confirm your order by pressing the Place Order button at the bottom of the page." -msgstr "Jumlah total pesanan telah diperbarui. Harap konfirmasi pesanan Anda dengan menekan tombol Place Order di bagian bawah halaman." - -#: admin/settings/settings-init.php:500 -#: classes/class-wc-shortcodes.php:571 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:257 -#: templates/loop/add-to-cart.php:46 -#: templates/single-product/add-to-cart/grouped.php:45 -#: templates/single-product/add-to-cart/grouped.php:75 -#: templates/single-product/add-to-cart/simple.php:42 -#: templates/single-product/add-to-cart/variable.php:78 -#@ woocommerce -msgid "Add to cart" -msgstr "Tambahkan ke keranjang belanja" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:80 -#: woocommerce-core-functions.php:2488 -#: woocommerce-functions.php:1559 -#@ woocommerce -msgid "Please enter your password." -msgstr "Masukkan kata sandi Anda." - -#: classes/shortcodes/class-wc-shortcode-pay.php:70 -#: classes/shortcodes/class-wc-shortcode-pay.php:125 -#: classes/shortcodes/class-wc-shortcode-view-order.php:49 -#: woocommerce-functions.php:880 -#: woocommerce-functions.php:959 -#@ woocommerce -msgid "Invalid order." -msgstr "Pesanan tidak valid" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:49 -#@ woocommerce -msgid "My Account →" -msgstr "Akun saya →" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:56 -#, php-format -#@ woocommerce -msgid "Order %s made on %s" -msgstr "Pesanan %s dibuat pada %s" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:57 -#, php-format -#@ woocommerce -msgid "Order status: %s" -msgstr "Status pesanan: %s" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:63 -#: templates/order/tracking.php:31 -#@ woocommerce -msgid "Order Updates" -msgstr "Pesanan diperbarui" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:53 -#@ woocommerce -msgid "Please enter a valid order ID" -msgstr "Silakan masukan ID pesanan yang valid" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:57 -#@ woocommerce -msgid "Please enter a valid order email" -msgstr "Silakan masukkan email pesanan yang valid" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:76 -#@ woocommerce -msgid "Sorry, we could not find that order id in our database." -msgstr "Maaf, kami tidak bisa menemukan bahwa id pesanan di database kami." - -#: classes/shortcodes/class-wc-shortcode-pay.php:65 -#: classes/shortcodes/class-wc-shortcode-pay.php:118 -#@ woocommerce -msgid "Your order has already been paid for. Please contact us if you need assistance." -msgstr "Pesanan Anda telah dibayar. Silakan hubungi kami jika Anda memerlukan bantuan." - -#: classes/shortcodes/class-wc-shortcode-pay.php:94 -#: templates/checkout/thankyou.php:44 -#@ woocommerce -msgid "Date:" -msgstr "Tanggal:" - -#: classes/shortcodes/class-wc-shortcode-pay.php:103 -#: templates/checkout/thankyou.php:53 -#@ woocommerce -msgid "Payment method:" -msgstr "Metode Pembayaran:" - -#: woocommerce-template.php:215 -#, php-format -#@ woocommerce -msgid "Search Results: “%s”" -msgstr "Hasil Pencarian: ldquo;%s”" - -#: woocommerce-template.php:218 -#, php-format -#@ woocommerce -msgid " – Page %s" -msgstr " – Halaman %s" - -#: templates/loop/no-products-found.php:14 -#: templates/loop-shop.php:40 -#@ woocommerce -msgid "No products found which match your selection." -msgstr "Tidak ditemukan produk yang cocok dengan pilihan Anda." - -#: templates/cart/cart.php:47 -#@ woocommerce -msgid "Remove this item" -msgstr "Hapus item ini" - -#: templates/cart/cart.php:127 -#: templates/checkout/form-coupon.php:29 -#@ woocommerce -msgid "Apply Coupon" -msgstr "Terapkan Kupon" - -#: templates/cart/cart.php:134 -#@ woocommerce -msgid "Update Cart" -msgstr "Aktualisasi Keranjang Belanja" - -#: templates/cart/cart.php:134 -#@ woocommerce -msgid "Proceed to Checkout →" -msgstr "Lanjutkan ke Checkout →" - -#: templates/cart/cross-sells.php:40 -#@ woocommerce -msgid "You may be interested in…" -msgstr "Anda mungkin tertarik pada…" - -#: templates/cart/cart-empty.php:14 -#@ woocommerce -msgid "Your cart is currently empty." -msgstr "Keranjang Anda saat ini kosong." - -#: templates/cart/cart-empty.php:18 -#@ woocommerce -msgid "← Return To Shop" -msgstr "← Kembali ke Toko" - -#: templates/cart/mini-cart.php:55 -#@ woocommerce -msgid "No products in the cart." -msgstr "Tidak ada produk dalam keranjang." - -#: admin/post-types/writepanels/order-item-html.php:112 -#: templates/cart/mini-cart.php:63 -#: templates/cart/totals.php:92 -#: templates/checkout/review-order.php:93 -#@ woocommerce -msgid "Subtotal" -msgstr "Subtotal" - -#: templates/cart/mini-cart.php:69 -#@ woocommerce -msgid "Checkout →" -msgstr "Checkout →" - -#: templates/cart/shipping-calculator.php:20 -#@ woocommerce -msgid "Calculate Shipping" -msgstr "Hitung Pengiriman" - -#: templates/cart/shipping-calculator.php:50 -#: woocommerce-template.php:1377 -#@ woocommerce -msgid "Select a state…" -msgstr "Pilih propinsi…" - -#: templates/cart/shipping-calculator.php:71 -#@ woocommerce -msgid "Update Totals" -msgstr "Perbarui Total" - -#: templates/cart/totals.php:22 -#@ woocommerce -msgid "Cart Totals" -msgstr "Total di Keranjang" - -#: templates/cart/totals.php:28 -#: templates/checkout/review-order.php:27 -#@ woocommerce -msgid "Cart Subtotal" -msgstr "Subtotal di Keranjang" - -#: templates/cart/totals.php:35 -#: templates/checkout/review-order.php:34 -#: woocommerce.php:1655 -#@ woocommerce -msgid "Cart Discount" -msgstr "Diskon di Keranjang" - -#: templates/cart/totals.php:35 -#: templates/cart/totals.php:120 -#@ woocommerce -msgid "[Remove]" -msgstr "[Hapus]" - -#: templates/cart/shipping-methods.php:67 -#@ woocommerce -msgid "Please fill in your details to see available shipping methods." -msgstr "Silahkan isi detail Anda untuk melihat metode pengiriman yang tersedia." - -#: templates/cart/shipping-methods.php:69 -#@ woocommerce -msgid "Sorry, it seems that there are no available shipping methods for your state. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "Maaf, tampaknya tidak ada metode pengiriman yang tersedia untuk negara Anda. Silakan hubungi kami jika Anda memerlukan bantuan atau ingin membuat pengaturan alternatif." - -#: templates/cart/totals.php:120 -#: templates/checkout/review-order.php:124 -#@ woocommerce -msgid "Order Discount" -msgstr "Diskon Pesanan" - -#: templates/cart/totals.php:163 -#, php-format -#@ woocommerce -msgid "Note: Shipping and taxes are estimated%s and will be updated during checkout based on your billing and shipping information." -msgstr "Catatan: Pengiriman dan pajak adalah perkiraan %s dan akan diperbarui pada waktu checkout berdasarkan penagihan dan informasi pengiriman." - -#: templates/cart/totals.php:183 -#, php-format -#@ woocommerce -msgid "Sorry, it seems that there are no available shipping methods for your location (%s)." -msgstr "Maaf, tampaknya tidak ada metode pengiriman yang tersedia untuk lokasi Anda (%s)." - -#: templates/cart/totals.php:185 -#@ woocommerce -msgid "If you require assistance or wish to make alternate arrangements please contact us." -msgstr "Jika Anda memerlukan bantuan atau ingin membuat pengaturan alternatif silahkan hubungi kami." - -#: templates/checkout/cart-errors.php:16 -#@ woocommerce -msgid "There are some issues with the items in your cart (shown above). Please go back to the cart page and resolve these issues before checking out." -msgstr "Ada beberapa masalah dengan item dalam keranjang Anda (ditampilkan di atas). Silakan kembali ke halaman keranjang dan atasi masalah ini sebelum checkout." - -#: templates/checkout/cart-errors.php:20 -#@ woocommerce -msgid "← Return To Cart" -msgstr "← Kembali ke keranjang" - -#: templates/checkout/form-billing.php:17 -#@ woocommerce -msgid "Billing & Shipping" -msgstr "Penagihan & Pengiriman" - -#: templates/checkout/form-billing.php:42 -#@ woocommerce -msgid "Create an account?" -msgstr "Buat akun?" - -#: templates/checkout/form-billing.php:51 -#@ woocommerce -msgid "Create an account by entering the information below. If you are a returning customer please login at the top of the page." -msgstr "Buat akun dengan memasukkan informasi di bawah ini. Jika Anda adalah pelanggan terdaftar, silakan login di bagian atas halaman." - -#: templates/checkout/form-checkout.php:20 -#@ woocommerce -msgid "You must be logged in to checkout." -msgstr "Anda harus login untuk checkout." - -#: templates/checkout/form-checkout.php:51 -#@ woocommerce -msgid "Your order" -msgstr "Pesanan anda" - -#: templates/checkout/form-coupon.php:17 -#@ woocommerce -msgid "Have a coupon?" -msgstr "Memiliki kupon?" - -#: templates/checkout/form-coupon.php:20 -#@ woocommerce -msgid "Click here to enter your code" -msgstr "Klik di sini untuk memasukkan kode Anda" - -#: templates/checkout/form-login.php:17 -#@ woocommerce -msgid "Click here to login" -msgstr "Klik di sini untuk login" - -#: templates/checkout/form-login.php:22 -#@ woocommerce -msgid "If you have shopped with us before, please enter your details in the boxes below. If you are a new customer please proceed to the Billing & Shipping section." -msgstr "Jika Anda telah berbelanja dengan kami sebelumnya, silahkan masukkan data Anda dalam kotak di bawah ini. Jika Anda adalah pelanggan baru silahkan lanjutkan ke bagian Penagihan & Pengiriman." - -#: templates/checkout/form-pay.php:21 -#@ woocommerce -msgid "Totals" -msgstr "Total" - -#: templates/checkout/form-pay.php:78 -#@ woocommerce -msgid "Sorry, it seems that there are no available payment methods for your location. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "Maaf, tampaknya tidak ada metode pembayaran yang tersedia untuk lokasi Anda. Silakan hubungi kami jika Anda memerlukan bantuan atau ingin membuat pengaturan alternatif." - -#: templates/checkout/form-pay.php:87 -#@ woocommerce -msgid "Pay for order" -msgstr "Membayar pesanan" - -#: templates/checkout/form-shipping.php:32 -#@ woocommerce -msgid "Ship to billing address?" -msgstr "Kirim ke alamat penagihan?" - -#: templates/checkout/form-shipping.php:59 -#: templates/single-product/tabs/additional-information.php:14 -#: woocommerce-template.php:756 -#@ woocommerce -msgid "Additional Information" -msgstr "Informasi Tambahan" - -#: templates/checkout/review-order.php:217 -#@ woocommerce -msgid "Please fill in your details above to see available payment methods." -msgstr "Silahkan isi data Anda di atas untuk melihat metode pembayaran yang tersedia." - -#: templates/checkout/review-order.php:219 -#@ woocommerce -msgid "Sorry, it seems that there are no available payment methods for your state. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "Maaf, tampaknya tidak ada metode pembayaran yang tersedia untuk negara Anda. Silakan hubungi kami jika Anda memerlukan bantuan atau ingin membuat pengaturan alternatif." - -#: templates/checkout/review-order.php:228 -#@ woocommerce -msgid "Since your browser does not support JavaScript, or it is disabled, please ensure you click the Update Totals button before placing your order. You may be charged more than the amount stated above if you fail to do so." -msgstr "Karena browser Anda tidak mendukung JavaScript, atau dinonaktifkan, pastikan Anda mengklik Total Pembaruan tombol sebelum menempatkan pesanan Anda. Anda mungkin dikenakan biaya lebih dari jumlah yang dinyatakan di atas jika Anda gagal untuk melakukannya." - -#: templates/checkout/review-order.php:228 -#@ woocommerce -msgid "Update totals" -msgstr "Perbarui total" - -#: templates/checkout/review-order.php:234 -#@ woocommerce -msgid "Place order" -msgstr "Membuat Pesanan" - -#: templates/checkout/review-order.php:238 -#@ woocommerce -msgid "terms & conditions" -msgstr "syarat & ketentuan" - -#: templates/checkout/thankyou.php:18 -#@ woocommerce -msgid "Unfortunately your order cannot be processed as the originating bank/merchant has declined your transaction." -msgstr "Sayangnya pesanan Anda tidak dapat diproses karena bank asal/merchant telah menolak transaksi Anda." - -#: templates/checkout/thankyou.php:22 -#@ woocommerce -msgid "Please attempt your purchase again or go to your account page." -msgstr "Silakan mencoba pembelian Anda lagi atau pergi ke halaman akun Anda." - -#: templates/checkout/thankyou.php:24 -#@ woocommerce -msgid "Please attempt your purchase again." -msgstr "Silakan mencoba pembelian Anda lagi." - -#: admin/woocommerce-admin-status.php:285 -#: assets/js/admin/editor_plugin_lang.php:22 -#: templates/checkout/thankyou.php:28 -#: templates/myaccount/my-orders.php:71 -#@ woocommerce -msgid "Pay" -msgstr "Membayar" - -#: templates/checkout/thankyou.php:36 -#: templates/checkout/thankyou.php:67 -#@ woocommerce -msgid "Thank you. Your order has been received." -msgstr "Terima kasih. Pesanan anda telah diterima." - -#: templates/emails/plain/admin-new-order.php:20 -#@ woocommerce -msgid "jS F Y" -msgstr "jS F Y" - -#: templates/emails/customer-new-account.php:14 -#: templates/emails/plain/customer-new-account.php:13 -#, php-format -#@ woocommerce -msgid "Thanks for creating an account on %s. Your username is %s." -msgstr "Terima kasih telah membuat akun di %s. Username anda adalah %s." - -#: templates/emails/customer-new-account.php:16 -#: templates/emails/plain/customer-new-account.php:15 -#, php-format -#@ woocommerce -msgid "You can access your account area here: %s." -msgstr "Anda dapat mengakses area akun Anda di sini: %s." - -#: templates/emails/customer-note.php:14 -#: templates/emails/plain/customer-note.php:13 -#@ woocommerce -msgid "Hello, a note has just been added to your order:" -msgstr "Halo, catatan baru saja ditambahkan ke pesanan Anda:" - -#: templates/emails/customer-note.php:18 -#: templates/emails/plain/customer-note.php:21 -#@ woocommerce -msgid "For your reference, your order details are shown below." -msgstr "Untuk referensi Anda, rincian pesanan Anda akan ditampilkan di bawah ini." - -#: templates/emails/email-order-items.php:42 -#@ woocommerce -msgid "Download:" -msgstr "Unduh:" - -#: templates/loop/add-to-cart.php:17 -#: templates/loop/add-to-cart.php:41 -#: templates/loop/add-to-cart.php:50 -#@ woocommerce -msgid "Read More" -msgstr "Baca selengkapnya" - -#: templates/loop/add-to-cart.php:33 -#@ woocommerce -msgid "Select options" -msgstr "Pilih opsi" - -#: templates/loop/add-to-cart.php:37 -#@ woocommerce -msgid "View options" -msgstr "Lihat pilihan" - -#: templates/single-product-reviews.php:74 -#@ woocommerce -msgid "Next " -msgstr "Selanjutnya " - -#: templates/single-product-reviews.php:73 -#@ woocommerce -msgid " Previous" -msgstr " Sebelumnya" - -#: templates/loop/sale-flash.php:16 -#: templates/single-product/sale-flash.php:16 -#@ woocommerce -msgid "Sale!" -msgstr "Obral!" - -#: templates/myaccount/form-change-password.php:20 -#: templates/myaccount/form-lost-password.php:31 -#@ woocommerce -msgid "New password" -msgstr "Kata sandi baru" - -#: templates/myaccount/form-change-password.php:24 -#: templates/myaccount/form-lost-password.php:35 -#@ woocommerce -msgid "Re-enter new password" -msgstr "Masukkan kembali sandi baru" - -#: templates/myaccount/form-change-password.php:29 -#: templates/myaccount/form-lost-password.php:45 -#@ woocommerce -msgid "Save" -msgstr "Menyimpan" - -#: templates/myaccount/form-edit-address.php:43 -#@ woocommerce -msgid "Save Address" -msgstr "Simpan Alamat" - -#: templates/myaccount/form-login.php:26 -#: templates/myaccount/form-login.php:40 -#: templates/shop/form-login.php:31 -#@ woocommerce -msgid "Login" -msgstr "Login" - -#: classes/widgets/class-wc-widget-login.php:116 -#: templates/myaccount/form-login.php:29 -#: templates/myaccount/form-lost-password.php:24 -#: templates/shop/form-login.php:20 -#@ woocommerce -msgid "Username or email" -msgstr "Username atau email" - -#: classes/widgets/class-wc-widget-login.php:118 -#: templates/myaccount/form-login.php:33 -#: templates/myaccount/form-login.php:85 -#: templates/shop/form-login.php:24 -#@ woocommerce -msgid "Password" -msgstr "Kata sandi" - -#: templates/myaccount/form-login.php:50 -#: templates/shop/form-login.php:33 -#@ woocommerce -msgid "Lost Password?" -msgstr "Lupa Password?" - -#: templates/myaccount/form-login.php:60 -#: templates/myaccount/form-login.php:101 -#@ woocommerce -msgid "Register" -msgstr "Register" - -#: templates/myaccount/form-login.php:66 -#@ woocommerce -msgid "Username" -msgstr "Username" - -#: templates/myaccount/form-login.php:89 -#@ woocommerce -msgid "Re-enter password" -msgstr "Masukkan kembali sandi" - -#: templates/myaccount/my-account.php:19 -#, php-format -#@ woocommerce -msgid "Hello, %s. From your account dashboard you can view your recent orders, manage your shipping and billing addresses and change your password." -msgstr "Halo, %s. Dari dashboard account Anda, Anda dapat melihat pesanan terakhir Anda, mengelola pengiriman dan alamat penagihan dan mengganti kata sandi." - -#: templates/myaccount/my-downloads.php:18 -#@ woocommerce -msgid "Available downloads" -msgstr "Download Tersedia" - -#: templates/myaccount/my-orders.php:26 -#@ woocommerce -msgid "Recent Orders" -msgstr "Pesanan terakhir" - -#: templates/myaccount/my-address.php:23 -#@ woocommerce -msgid "My Address" -msgstr "Alamat Saya" - -#: templates/myaccount/my-address.php:35 -#@ woocommerce -msgid "The following addresses will be used on the checkout page by default." -msgstr "Alamat-alamat berikut akan digunakan pada halaman checkout secara default." - -#: templates/order/form-tracking.php:17 -#@ woocommerce -msgid "To track your order please enter your Order ID in the box below and press return. This was given to you on your receipt and in the confirmation email you should have received." -msgstr "Untuk melacak pesanan Anda silahkan masukkan ID Pesanan Anda dalam kotak di bawah dan tekan enter. Ini diberikan kepada Anda dalam tanda terima dan dalam email konfirmasi yang Anda terima." - -#: templates/order/form-tracking.php:19 -#@ woocommerce -msgid "Order ID" -msgstr "ID Pesanan" - -#: templates/order/form-tracking.php:19 -#@ woocommerce -msgid "Found in your order confirmation email." -msgstr "Ditemukan dalam email konfirmasi pemesanan Anda." - -#: templates/order/form-tracking.php:20 -#@ woocommerce -msgid "Billing Email" -msgstr "Email Penagihan" - -#: templates/order/form-tracking.php:20 -#@ woocommerce -msgid "Email you used during checkout." -msgstr "Email yang Anda gunakan pada waktu checkout." - -#: templates/order/order-details.php:81 -#@ woocommerce -msgid "Order Again" -msgstr "Memesan Lagi" - -#: templates/order/order-details.php:93 -#@ woocommerce -msgid "Telephone:" -msgstr "Telepon:" - -#: templates/order/tracking.php:18 -#, php-format -#@ woocommerce -msgid "Order %s which was made %s has the status “%s”" -msgstr "Pesanan %s yang dibuat %s mempunyai status “%s”" - -#: templates/order/tracking.php:18 -#@ woocommerce -msgid "ago" -msgstr "dahulu" - -#: templates/order/tracking.php:20 -#@ woocommerce -msgid "and was completed" -msgstr "dan selesai" - -#: templates/order/tracking.php:20 -#@ woocommerce -msgid " ago" -msgstr " dahulu" - -#: woocommerce-template.php:990 -#@ woocommerce -msgctxt "breadcrumb" -msgid "Home" -msgstr "Rumah" - -#: templates/shop/breadcrumb.php:66 -#@ woocommerce -msgid "Products tagged “" -msgstr "Produk ditandai “" - -#: templates/shop/breadcrumb.php:94 -#: templates/shop/breadcrumb.php:196 -#@ woocommerce -msgid "Search results for “" -msgstr "Hasil pencarian untuk “" - -#: templates/shop/breadcrumb.php:154 -#@ woocommerce -msgid "Error 404" -msgstr "Error 404" - -#: templates/shop/breadcrumb.php:200 -#@ woocommerce -msgid "Posts tagged “" -msgstr "Posting tandai “" - -#: templates/shop/breadcrumb.php:205 -#@ woocommerce -msgid "Author:" -msgstr "Author:" - -#: templates/shop/breadcrumb.php:210 -#@ woocommerce -msgid "Page" -msgstr "Halaman" - -#: templates/single-product/add-to-cart/variable.php:24 -#@ woocommerce -msgid "Choose an option" -msgstr "Pilih opsi" - -#: templates/single-product/add-to-cart/variable.php:64 -#@ woocommerce -msgid "Clear selection" -msgstr "Hapus pilihan" - -#: templates/single-product/review.php:33 -#@ woocommerce -msgid "Your comment is awaiting approval" -msgstr "Komentar anda sedang menunggu persetujuan" - -#: templates/single-product/review.php:40 -#@ woocommerce -msgid "verified owner" -msgstr "diverifikasi pemilik" - -#: templates/single-product/tabs/description.php:14 -#@ woocommerce -msgid "Product Description" -msgstr "Produk Deskripsi" - -#: templates/single-product/up-sells.php:41 -#@ woocommerce -msgid "You may also like…" -msgstr "Mungkin anda tertarik…" - -#: templates/single-product-reviews.php:45 -#, php-format -#@ woocommerce -msgid "%s review for %s" -msgid_plural "%s reviews for %s" -msgstr[0] "%s ulasan untuk %s" -msgstr[1] "%s ulasan untuk %s" - -#: templates/single-product-reviews.php:78 -#@ woocommerce -msgid "Add Review" -msgstr "Tambahkan Ulasan" - -#: templates/single-product-reviews.php:80 -#@ woocommerce -msgid "Add a review" -msgstr "Menambahkan ulasan" - -#: templates/single-product-reviews.php:84 -#@ woocommerce -msgid "Be the first to review" -msgstr "Jadilah orang pertama yang mengulas" - -#: templates/single-product-reviews.php:86 -#@ woocommerce -msgid "There are no reviews yet, would you like to submit yours?" -msgstr "Belum ada ulasan, maukah anda untuk menulis review anda?" - -#: templates/single-product-reviews.php:104 -#@ woocommerce -msgid "Submit Review" -msgstr "Submit Ulasan" - -#: templates/single-product-reviews.php:111 -#@ woocommerce -msgid "Rating" -msgstr "Penilaian" - -#: templates/single-product-reviews.php:112 -#@ woocommerce -msgid "Rate…" -msgstr "Nilai…" - -#: templates/single-product-reviews.php:113 -#@ woocommerce -msgid "Perfect" -msgstr "Sempurna" - -#: templates/single-product-reviews.php:114 -#@ woocommerce -msgid "Good" -msgstr "Baik" - -#: templates/single-product-reviews.php:115 -#@ woocommerce -msgid "Average" -msgstr "Rata-rata" - -#: templates/single-product-reviews.php:116 -#@ woocommerce -msgid "Not that bad" -msgstr "Tidak terlalu buruk" - -#: templates/single-product-reviews.php:117 -#@ woocommerce -msgid "Very Poor" -msgstr "Sangat Buruk" - -#: templates/single-product-reviews.php:122 -#@ woocommerce -msgid "Your Review" -msgstr "Ulasan Anda" - -#: classes/widgets/class-wc-widget-best-sellers.php:31 -#@ woocommerce -msgid "Display a list of your best selling products on your site." -msgstr "Menampilkan daftar produk terbaik yang anda jual di situs Anda." - -#: classes/widgets/class-wc-widget-best-sellers.php:33 -#@ woocommerce -msgid "WooCommerce Best Sellers" -msgstr "WooCommerce Penjual Terbanyak" - -#: classes/widgets/class-wc-widget-best-sellers.php:71 -#@ woocommerce -msgid "Best Sellers" -msgstr "Penjual Terbanyak" - -#: classes/widgets/class-wc-widget-best-sellers.php:192 -#: classes/widgets/class-wc-widget-cart.php:115 -#: classes/widgets/class-wc-widget-featured-products.php:172 -#: classes/widgets/class-wc-widget-layered-nav.php:349 -#: classes/widgets/class-wc-widget-onsale.php:177 -#: classes/widgets/class-wc-widget-price-filter.php:179 -#: classes/widgets/class-wc-widget-product-categories.php:185 -#: classes/widgets/class-wc-widget-product-search.php:91 -#: classes/widgets/class-wc-widget-product-tag-cloud.php:101 -#: classes/widgets/class-wc-widget-random-products.php:133 -#: classes/widgets/class-wc-widget-recent-products.php:169 -#: classes/widgets/class-wc-widget-recent-reviews.php:158 -#: classes/widgets/class-wc-widget-recently-viewed.php:166 -#: classes/widgets/class-wc-widget-top-rated-products.php:159 -#@ woocommerce -msgid "Title:" -msgstr "Judul:" - -#: classes/widgets/class-wc-widget-best-sellers.php:195 -#: classes/widgets/class-wc-widget-featured-products.php:175 -#: classes/widgets/class-wc-widget-onsale.php:180 -#: classes/widgets/class-wc-widget-random-products.php:138 -#: classes/widgets/class-wc-widget-recent-products.php:172 -#: classes/widgets/class-wc-widget-recent-reviews.php:161 -#: classes/widgets/class-wc-widget-recently-viewed.php:169 -#: classes/widgets/class-wc-widget-top-rated-products.php:162 -#@ woocommerce -msgid "Number of products to show:" -msgstr "Jumlah produk yang ditunjukkan:" - -#: classes/widgets/class-wc-widget-best-sellers.php:199 -#@ woocommerce -msgid "Hide free products" -msgstr "Sembunyikan produk gratis" - -#: classes/widgets/class-wc-widget-cart.php:33 -#@ woocommerce -msgid "Display the user's Cart in the sidebar." -msgstr "Tampilkan keranjang pengguna di bar samping." - -#: classes/widgets/class-wc-widget-cart.php:35 -#@ woocommerce -msgid "WooCommerce Cart" -msgstr "Keranjang WooCommerce" - -#: classes/widgets/class-wc-widget-cart.php:119 -#@ woocommerce -msgid "Hide if cart is empty" -msgstr "Sembunyikan jika keranjang kosong" - -#: classes/widgets/class-wc-widget-featured-products.php:35 -#@ woocommerce -msgid "Display a list of featured products on your site." -msgstr "Menampilkan daftar produk utama di situs Anda." - -#: classes/widgets/class-wc-widget-featured-products.php:37 -#@ woocommerce -msgid "WooCommerce Featured Products" -msgstr "WooCommerce Fitur Produk" - -#: classes/widgets/class-wc-widget-featured-products.php:75 -#@ woocommerce -msgid "Featured Products" -msgstr "Produk Unggulan" - -#: classes/widgets/class-wc-widget-layered-nav.php:31 -#@ woocommerce -msgid "Shows a custom attribute in a widget which lets you narrow down the list of products when viewing product categories." -msgstr "Menunjukkan atribut khusus dalam widget yang memungkinkan Anda mempersempit daftar produk ketika melihat kategori produk." - -#: classes/widgets/class-wc-widget-layered-nav.php:33 -#@ woocommerce -msgid "WooCommerce Layered Nav" -msgstr "WooCommerce Layered Nav" - -#: classes/widgets/class-wc-widget-layered-nav.php:100 -#, php-format -#@ woocommerce -msgid "Any %s" -msgstr "Setiap %s" - -#: classes/widgets/class-wc-widget-layered-nav.php:352 -#@ woocommerce -msgid "Attribute:" -msgstr "Atribut:" - -#: classes/widgets/class-wc-widget-layered-nav.php:363 -#@ woocommerce -msgid "Display Type:" -msgstr "Tampilan Type:" - -#: classes/widgets/class-wc-widget-layered-nav.php:365 -#@ woocommerce -msgid "List" -msgstr "Daftar" - -#: classes/widgets/class-wc-widget-layered-nav.php:366 -#@ woocommerce -msgid "Dropdown" -msgstr "Dropdown" - -#: classes/widgets/class-wc-widget-layered-nav.php:369 -#@ woocommerce -msgid "Query Type:" -msgstr "Type Query:" - -#: classes/widgets/class-wc-widget-layered-nav.php:371 -#@ woocommerce -msgid "AND" -msgstr "DAN" - -#: classes/widgets/class-wc-widget-layered-nav.php:372 -#@ woocommerce -msgid "OR" -msgstr "ATAU" - -#: classes/widgets/class-wc-widget-login.php:31 -#@ woocommerce -msgid "Display a login area and \"My Account\" links in the sidebar." -msgstr "Tampilkan area login dan links \"Akun Saya\" di bar samping." - -#: classes/widgets/class-wc-widget-login.php:33 -#@ woocommerce -msgid "WooCommerce Login" -msgstr "WooCommerce Login" - -#: classes/widgets/class-wc-widget-login.php:59 -#: classes/widgets/class-wc-widget-login.php:223 -#@ woocommerce -msgid "Customer Login" -msgstr "Login Pelanggan" - -#: classes/widgets/class-wc-widget-login.php:60 -#: classes/widgets/class-wc-widget-login.php:226 -#, php-format -#@ woocommerce -msgid "Welcome %s" -msgstr "Selamat Datang %s" - -#: classes/widgets/class-wc-widget-login.php:76 -#@ woocommerce -msgid "My account" -msgstr "Akun saya" - -#: classes/widgets/class-wc-widget-login.php:77 -#@ woocommerce -msgid "Change my password" -msgstr "Ubah kata sandi saya" - -#: admin/woocommerce-admin-install.php:216 -#: classes/widgets/class-wc-widget-login.php:78 -#@ woocommerce -msgid "Logout" -msgstr "Logout" - -#: classes/widgets/class-wc-widget-login.php:120 -#: woocommerce-functions.php:945 -#@ woocommerce -msgid "Login →" -msgstr "Login →" - -#: classes/widgets/class-wc-widget-login.php:120 -#@ woocommerce -msgid "Lost password?" -msgstr "Kehilangan kata sandi?" - -#: classes/widgets/class-wc-widget-login.php:222 -#@ woocommerce -msgid "Logged out title:" -msgstr "Log out judul:" - -#: classes/widgets/class-wc-widget-login.php:225 -#@ woocommerce -msgid "Logged in title:" -msgstr "Masuk dalam judul:" - -#: woocommerce-core-functions.php:2485 -#: woocommerce-functions.php:703 -#@ woocommerce -msgid "Please enter a username." -msgstr "Silakan masukkan username." - -#: classes/widgets/class-wc-widget-onsale.php:31 -#@ woocommerce -msgid "Display a list of your on-sale products on your site." -msgstr "Menampilkan daftar produk yang diobral di situs Anda." - -#: classes/widgets/class-wc-widget-onsale.php:33 -#@ woocommerce -msgid "WooCommerce On-sale" -msgstr "WooCommerce Obral" - -#: classes/widgets/class-wc-widget-onsale.php:70 -#@ woocommerce -msgid "On Sale" -msgstr "Obral" - -#: classes/widgets/class-wc-widget-price-filter.php:33 -#@ woocommerce -msgid "Shows a price filter slider in a widget which lets you narrow down the list of shown products when viewing product categories." -msgstr "Menampilkan slider filter harga di widget yang memungkinkan Anda mempersempit daftar produk yang ditampilkan ketika melihat kategori produk." - -#: classes/widgets/class-wc-widget-price-filter.php:35 -#@ woocommerce -msgid "WooCommerce Price Filter" -msgstr "WooCommerce Filter Harga" - -#: classes/widgets/class-wc-widget-price-filter.php:136 -#@ woocommerce -msgid "Min price" -msgstr "Harga Min" - -#: classes/widgets/class-wc-widget-price-filter.php:137 -#@ woocommerce -msgid "Max price" -msgstr "Harga Max" - -#: classes/widgets/class-wc-widget-price-filter.php:138 -#@ woocommerce -msgid "Filter" -msgstr "Filter" - -#: classes/widgets/class-wc-widget-price-filter.php:162 -#@ woocommerce -msgid "Filter by price" -msgstr "Filter menurut harga" - -#: classes/widgets/class-wc-widget-product-categories.php:33 -#@ woocommerce -msgid "A list or dropdown of product categories." -msgstr "Sebuah daftar atau dropdown kategori produk." - -#: classes/widgets/class-wc-widget-product-categories.php:35 -#@ woocommerce -msgid "WooCommerce Product Categories" -msgstr "WooCommerce Kategori Produk" - -#: classes/widgets/class-wc-widget-product-categories.php:129 -#@ woocommerce -msgid "No product categories exist." -msgstr "Tidak ada kategori produk." - -#: classes/widgets/class-wc-widget-product-categories.php:188 -#@ woocommerce -msgid "Order by:" -msgstr "Dipesan oleh:" - -#: classes/widgets/class-wc-widget-product-categories.php:190 -#@ woocommerce -msgid "Category Order" -msgstr "Kategori Pesanan" - -#: classes/widgets/class-wc-widget-product-categories.php:195 -#@ woocommerce -msgid "Show as dropdown" -msgstr "Tampilkan sebagai dropdown" - -#: classes/widgets/class-wc-widget-product-categories.php:198 -#@ woocommerce -msgid "Show post counts" -msgstr "Tampilkan jumlah post" - -#: classes/widgets/class-wc-widget-product-categories.php:201 -#@ woocommerce -msgid "Show hierarchy" -msgstr "Tampilkan hirarki" - -#: classes/widgets/class-wc-widget-product-categories.php:204 -#@ woocommerce -msgid "Only show children for the current category" -msgstr "Hanya menunjukkan anak untuk kategori ini" - -#: classes/widgets/class-wc-widget-product-search.php:31 -#@ woocommerce -msgid "A Search box for products only." -msgstr "Sebuah kotak untuk mencari produk saja." - -#: classes/widgets/class-wc-widget-product-search.php:33 -#@ woocommerce -msgid "WooCommerce Product Search" -msgstr "WooCommerce Cari Produk" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:31 -#@ woocommerce -msgid "Your most used product tags in cloud format." -msgstr "Tag produk yang paling sering digunakan dalam format cloud." - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:33 -#@ woocommerce -msgid "WooCommerce Product Tags" -msgstr "WooCommerce Produk Tags" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:58 -#: woocommerce.php:823 -#: woocommerce.php:825 -#@ woocommerce -msgid "Product Tags" -msgstr "Produk Tags" - -#: classes/widgets/class-wc-widget-random-products.php:24 -#@ woocommerce -msgid "WooCommerce Random Products" -msgstr "WooCommerce Produk Acak" - -#: classes/widgets/class-wc-widget-random-products.php:27 -#@ woocommerce -msgid "Display a list of random products on your site." -msgstr "Menampilkan daftar produk acak pada situs Anda." - -#: classes/widgets/class-wc-widget-random-products.php:46 -#@ woocommerce -msgid "Random Products" -msgstr "Produk Acak" - -#: classes/widgets/class-wc-widget-random-products.php:144 -#: classes/widgets/class-wc-widget-recent-products.php:176 -#@ woocommerce -msgid "Show hidden product variations" -msgstr "Tampilkan variasi produk yang tersembunyi" - -#: classes/widgets/class-wc-widget-recent-products.php:31 -#@ woocommerce -msgid "Display a list of your most recent products on your site." -msgstr "Menampilkan daftar produk terbaru di situs Anda." - -#: classes/widgets/class-wc-widget-recent-products.php:33 -#@ woocommerce -msgid "WooCommerce Recent Products" -msgstr "WooCommerce Produk Terbaru" - -#: classes/widgets/class-wc-widget-recent-products.php:70 -#@ woocommerce -msgid "New Products" -msgstr "Produk Baru" - -#: classes/widgets/class-wc-widget-recent-reviews.php:31 -#@ woocommerce -msgid "Display a list of your most recent reviews on your site." -msgstr "Menampilkan daftar ulasan terbaru di situs Anda." - -#: classes/widgets/class-wc-widget-recent-reviews.php:71 -#@ woocommerce -msgid "Recent Reviews" -msgstr "Ulasan terakhir" - -#: classes/widgets/class-wc-widget-recent-reviews.php:97 -#, php-format -#@ woocommerce -msgctxt "by comment author" -msgid "by %1$s" -msgstr "oleh %1$s" - -#: classes/widgets/class-wc-widget-recently-viewed.php:31 -#@ woocommerce -msgid "Display a list of recently viewed products." -msgstr "Menampilkan daftar produk yang baru dilihat." - -#: classes/widgets/class-wc-widget-recently-viewed.php:33 -#@ woocommerce -msgid "WooCommerce Recently Viewed Products" -msgstr "WooCommerce Produk yang terakhir dilihat" - -#: classes/widgets/class-wc-widget-recently-viewed.php:76 -#@ woocommerce -msgid "Recently viewed" -msgstr "Baru saja dilihat" - -#: classes/widgets/class-wc-widget-top-rated-products.php:33 -#@ woocommerce -msgid "Display a list of top rated products on your site." -msgstr "Menampilkan daftar produk terbagus di situs Anda." - -#: classes/widgets/class-wc-widget-top-rated-products.php:35 -#@ woocommerce -msgid "WooCommerce Top Rated Products" -msgstr "WooCommerce Produk Terbagus" - -#: classes/widgets/class-wc-widget-top-rated-products.php:72 -#@ woocommerce -msgid "Top Rated Products" -msgstr "Produk Terbagus" - -#: woocommerce-ajax.php:111 -#@ woocommerce -msgid "Please enter your username and password to login." -msgstr "Silakan masukkan username dan password untuk login." - -#: woocommerce-ajax.php:191 -#@ woocommerce -msgid "Sorry, your session has expired." -msgstr "Maaf, sesi Anda telah berakhir." - -#: woocommerce-ajax.php:191 -#@ woocommerce -msgid "Return to homepage →" -msgstr "Kembali ke homepage →" - -#: woocommerce-ajax.php:332 -#: woocommerce-ajax.php:366 -#: woocommerce-ajax.php:389 -#@ woocommerce -msgid "You do not have sufficient permissions to access this page." -msgstr "Anda tidak memiliki cukup izin untuk mengakses halaman ini." - -#: woocommerce-ajax.php:334 -#: woocommerce-ajax.php:367 -#: woocommerce-ajax.php:390 -#@ woocommerce -msgid "You have taken too long. Please go back and retry." -msgstr "Anda sudah terlalu lama. Silahkan kembali dan mencoba kembali." - -#: woocommerce-core-functions.php:1189 -#: woocommerce-core-functions.php:1215 -#@ woocommerce -msgid "Download Permissions Granted" -msgstr "Izin unduh diperbolehkan" - -#: admin/includes/updates/woocommerce-update-2.0.php:59 -#: woocommerce.php:755 -#@ woocommerce -msgctxt "slug" -msgid "product" -msgstr "produk" - -#: woocommerce-core-functions.php:1517 -#@ woocommerce -msgid "Select a category" -msgstr "Pilih kategori" - -#: woocommerce-core-functions.php:1521 -#@ woocommerce -msgid "Uncategorized" -msgstr "Tidak di kategorisasi" - -#: woocommerce-functions.php:208 -#: woocommerce-functions.php:253 -#@ woocommerce -msgid "Cart updated." -msgstr "Keranjang diperbarui." - -#: woocommerce-functions.php:239 -#, php-format -#@ woocommerce -msgid "You can only have 1 %s in your cart." -msgstr "Anda hanya dapat memiliki 1 %s dalam keranjang Anda." - -#: woocommerce-functions.php:296 -#: woocommerce-functions.php:343 -#@ woocommerce -msgid "Please choose product options…" -msgstr "Silahkan memilih opsi produk…" - -#: woocommerce-functions.php:466 -#@ woocommerce -msgid "Continue Shopping →" -msgstr "Melanjutkan Belanja →" - -#: woocommerce-functions.php:633 -#@ woocommerce -msgid "Username is required." -msgstr "Username diperlukan." - -#: woocommerce-functions.php:634 -#: woocommerce-functions.php:729 -#@ woocommerce -msgid "Password is required." -msgstr "Password diperlukan." - -#: woocommerce-functions.php:705 -#@ woocommerce -msgid "This username is invalid because it uses illegal characters. Please enter a valid username." -msgstr "Username ini tidak valid karena menggunakan karakter yang terlarang. Silahkan memasukkan username yang valid." - -#: woocommerce-functions.php:708 -#@ woocommerce -msgid "This username is already registered, please choose another one." -msgstr "Nama pengguna ini sudah terdaftar, silahkan pilih yang lain." - -#: woocommerce-functions.php:720 -#@ woocommerce -msgid "Please type your e-mail address." -msgstr "Silahkan ketik alamat e-mail Anda." - -#: woocommerce-functions.php:722 -#@ woocommerce -msgid "The email address isn’t correct." -msgstr "Alamat email salah." - -#: woocommerce-functions.php:725 -#@ woocommerce -msgid "This email is already registered, please choose another one." -msgstr "Email ini sudah terdaftar, silakan pilih yang lain." - -#: woocommerce-functions.php:730 -#@ woocommerce -msgid "Re-enter your password." -msgstr "Masukkan kembali kata sandi Anda." - -#: woocommerce-functions.php:735 -#@ woocommerce -msgid "Anti-spam field was filled in." -msgstr "Kolom Anti-spam sudah terisi" - -#: woocommerce-functions.php:841 -#@ woocommerce -msgid "The cart has been filled with the items from your previous order." -msgstr "Keranjang telah diisi dengan barang-barang dari pesanan sebelumnya." - -#: woocommerce-functions.php:867 -#@ woocommerce -msgid "Order cancelled by customer." -msgstr "Pesanan dibatalkan oleh pelanggan." - -#: woocommerce-functions.php:870 -#@ woocommerce -msgid "Your order was cancelled." -msgstr "Pesanan Anda dibatalkan." - -#: woocommerce-functions.php:876 -#@ woocommerce -msgid "Your order is no longer pending and could not be cancelled. Please contact us if you need assistance." -msgstr "Pesanan anda tidak ditahan lagi dan tidak bisa dibatalkan. Silahkan kontak kami untuk bantuan selanjutnya." - -#: woocommerce-functions.php:911 -#@ woocommerce -msgid "Invalid email address." -msgstr "Alamat email tidak valid." - -#: woocommerce-functions.php:911 -#: woocommerce-functions.php:933 -#: woocommerce-functions.php:953 -#: woocommerce-functions.php:959 -#: woocommerce-functions.php:963 -#: woocommerce-functions.php:966 -#: woocommerce-functions.php:996 -#: woocommerce-functions.php:1099 -#@ woocommerce -msgid "Go to homepage →" -msgstr "Ke Homepage →" - -#: woocommerce-functions.php:933 -#@ woocommerce -msgid "Invalid download." -msgstr "Download tidak valid." - -#: woocommerce-functions.php:945 -#@ woocommerce -msgid "You must be logged in to download files." -msgstr "Anda harus login untuk dapat mendownload file." - -#: woocommerce-functions.php:948 -#@ woocommerce -msgid "This is not your download link." -msgstr "Ini bukan link download Anda." - -#: woocommerce-functions.php:963 -#@ woocommerce -msgid "Sorry, you have reached your download limit for this file" -msgstr "Maaf, Anda telah mencapai batas download untuk file ini" - -#: woocommerce-functions.php:966 -#@ woocommerce -msgid "Sorry, this download has expired" -msgstr "Maaf, download ini telah kadaluarsa" - -#: woocommerce-functions.php:1099 -#@ woocommerce -msgid "File not found" -msgstr "File tidak ditemukan" - -#: woocommerce-functions.php:1209 -#@ woocommerce -msgid "New products" -msgstr "Produk baru" - -#: woocommerce-functions.php:1217 -#, php-format -#@ woocommerce -msgid "New products added to %s" -msgstr "Produk baru ditambahkan ke %s" - -#: woocommerce-functions.php:1225 -#, php-format -#@ woocommerce -msgid "New products tagged %s" -msgstr "Produk baru tag %s" - -#: woocommerce-functions.php:1264 -#@ woocommerce -msgid "You have taken too long. Please go back and refresh the page." -msgstr "Anda sudah terlalu lama. Silahkan kembali dan mengaktualisasi halaman anda." - -#: woocommerce-functions.php:1267 -#@ woocommerce -msgid "Please rate the product." -msgstr "Silakan menilai produk." - -#: classes/class-wc-product-external.php:56 -#@ woocommerce -msgid "Buy product" -msgstr "Membeli produk" - -#: woocommerce-template.php:1288 -#: woocommerce.php:1175 -#@ woocommerce -msgid "required" -msgstr "wajib" - -#: woocommerce-template.php:1334 -#@ woocommerce -msgid "Update country" -msgstr "Perbarui negara" - -#: woocommerce-template.php:1489 -#@ woocommerce -msgid "Search for:" -msgstr "Pencarian untuk:" - -#: woocommerce-template.php:1490 -#@ woocommerce -msgid "Search for products" -msgstr "Cari produk" - -#. translators: plugin header field 'PluginURI' -#: woocommerce.php:0 -#@ woocommerce -msgid "http://www.woothemes.com/woocommerce/" -msgstr "http://www.woothemes.com/woocommerce/" - -#. translators: plugin header field 'Description' -#: woocommerce.php:0 -#@ woocommerce -msgid "An e-commerce toolkit that helps you sell anything. Beautifully." -msgstr "Sebuah toolkit e-commerce yang membantu Anda menjual sesuatu. Indah." - -#. translators: plugin header field 'Author' -#: woocommerce.php:0 -#@ woocommerce -msgid "WooThemes" -msgstr "WooThemes" - -#. translators: plugin header field 'AuthorURI' -#: woocommerce.php:0 -#@ woocommerce -msgid "http://woothemes.com" -msgstr "http://woothemes.com" - -#: woocommerce-core-functions.php:1893 -#@ woocommerce -msgid "Customer" -msgstr "Pelanggan" - -#: woocommerce-core-functions.php:1900 -#@ woocommerce -msgid "Shop Manager" -msgstr "Manajer Toko" - -#: admin/includes/updates/woocommerce-update-2.0.php:50 -#: admin/woocommerce-admin-init.php:895 -#: woocommerce.php:752 -#@ woocommerce -msgctxt "slug" -msgid "product-category" -msgstr "Kategori Produk" - -#: admin/includes/updates/woocommerce-update-2.0.php:51 -#: admin/woocommerce-admin-init.php:908 -#: woocommerce.php:753 -#@ woocommerce -msgctxt "slug" -msgid "product-tag" -msgstr "Produk-tag" - -#: woocommerce.php:791 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Categories" -msgstr "Kategori" - -#: woocommerce.php:792 -#@ woocommerce -msgid "Search Product Categories" -msgstr "Cari Kategori Produk" - -#: woocommerce.php:793 -#@ woocommerce -msgid "All Product Categories" -msgstr "Semua Kategori Produk" - -#: woocommerce.php:794 -#@ woocommerce -msgid "Parent Product Category" -msgstr "Induk Kategori Produk" - -#: woocommerce.php:795 -#@ woocommerce -msgid "Parent Product Category:" -msgstr "Induk Kategori Produk:" - -#: woocommerce.php:796 -#@ woocommerce -msgid "Edit Product Category" -msgstr "Mengedit Kategori Produk" - -#: woocommerce.php:797 -#@ woocommerce -msgid "Update Product Category" -msgstr "Perbarui Kategori Produk" - -#: woocommerce.php:798 -#@ woocommerce -msgid "Add New Product Category" -msgstr "Tambahkan Kategori Produk Baru" - -#: woocommerce.php:799 -#@ woocommerce -msgid "New Product Category Name" -msgstr "Nama Kategori Produk Baru" - -#: woocommerce.php:827 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Tags" -msgstr "Tags" - -#: woocommerce.php:828 -#@ woocommerce -msgid "Search Product Tags" -msgstr "Cari Produk Tags" - -#: woocommerce.php:829 -#@ woocommerce -msgid "All Product Tags" -msgstr "Semua Produk Tags" - -#: woocommerce.php:830 -#@ woocommerce -msgid "Parent Product Tag" -msgstr "Induk Produk Tag" - -#: woocommerce.php:831 -#@ woocommerce -msgid "Parent Product Tag:" -msgstr "Induk Produk Tag:" - -#: woocommerce.php:832 -#@ woocommerce -msgid "Edit Product Tag" -msgstr "Mengedit Tag Produk" - -#: woocommerce.php:833 -#@ woocommerce -msgid "Update Product Tag" -msgstr "Perbarui Tag Produk" - -#: woocommerce.php:834 -#@ woocommerce -msgid "Add New Product Tag" -msgstr "Tambahkan Tag Produk Baru" - -#: woocommerce.php:835 -#@ woocommerce -msgid "New Product Tag Name" -msgstr "Nama Tag Produk Baru" - -#: woocommerce.php:854 -#: woocommerce.php:856 -#@ woocommerce -msgid "Shipping Classes" -msgstr "Kelas Pengiriman" - -#: woocommerce.php:858 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Shipping Classes" -msgstr "Kelas Pengiriman" - -#: woocommerce.php:859 -#@ woocommerce -msgid "Search Shipping Classes" -msgstr "Cari Kelas Pengiriman" - -#: woocommerce.php:860 -#@ woocommerce -msgid "All Shipping Classes" -msgstr "Semua Kelas Pengiriman" - -#: woocommerce.php:861 -#@ woocommerce -msgid "Parent Shipping Class" -msgstr "Induk Kelas Pengiriman" - -#: woocommerce.php:862 -#@ woocommerce -msgid "Parent Shipping Class:" -msgstr "Induk Kelas Pengiriman:" - -#: woocommerce.php:863 -#@ woocommerce -msgid "Edit Shipping Class" -msgstr "Mengedit Kelas Pengiriman" - -#: woocommerce.php:864 -#@ woocommerce -msgid "Update Shipping Class" -msgstr "Pembaruan Kelas Pengiriman" - -#: woocommerce.php:865 -#@ woocommerce -msgid "Add New Shipping Class" -msgstr "Tambahkan Kelas Pengiriman Baru" - -#: woocommerce.php:866 -#@ woocommerce -msgid "New Shipping Class Name" -msgstr "Nama Kelas Pengiriman Baru" - -#: woocommerce.php:915 -#: woocommerce.php:916 -#@ woocommerce -msgid "Parent" -msgstr "Induk" - -#: woocommerce.php:919 -#@ woocommerce -msgid "Add New" -msgstr "Tambahkan Baru" - -#: woocommerce.php:920 -#@ woocommerce -msgid "New" -msgstr "Baru" - -#: woocommerce.php:950 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Products" -msgstr "Produk" - -#: woocommerce.php:951 -#@ woocommerce -msgid "Add Product" -msgstr "Tambahkan Produk" - -#: woocommerce.php:952 -#@ woocommerce -msgid "Add New Product" -msgstr "Tambah Produk Baru" - -#: woocommerce.php:954 -#@ woocommerce -msgid "Edit Product" -msgstr "Mengedit Produk" - -#: woocommerce.php:955 -#@ woocommerce -msgid "New Product" -msgstr "Produk Baru" - -#: woocommerce.php:956 -#: woocommerce.php:957 -#@ woocommerce -msgid "View Product" -msgstr "Lihat Produk" - -#: woocommerce.php:958 -#@ woocommerce -msgid "Search Products" -msgstr "Cari Produk" - -#: woocommerce.php:959 -#@ woocommerce -msgid "No Products found" -msgstr "Tidak ada Produk yang ditemukan" - -#: woocommerce.php:960 -#@ woocommerce -msgid "No Products found in trash" -msgstr "Tidak ada Produk yang ditemukan di tempat sampah" - -#: woocommerce.php:961 -#@ woocommerce -msgid "Parent Product" -msgstr "Induk Produk" - -#: woocommerce.php:963 -#@ woocommerce -msgid "This is where you can add new products to your store." -msgstr "Ini adalah di mana Anda dapat menambahkan produk baru ke toko Anda." - -#: woocommerce.php:987 -#@ woocommerce -msgid "Variation" -msgstr "Variasi" - -#: woocommerce.php:989 -#@ woocommerce -msgid "Add New Variation" -msgstr "Tambah Variasi Baru" - -#: woocommerce.php:991 -#@ woocommerce -msgid "Edit Variation" -msgstr "Mengedit Variasi" - -#: woocommerce.php:992 -#@ woocommerce -msgid "New Variation" -msgstr "Variasi Baru" - -#: woocommerce.php:993 -#: woocommerce.php:994 -#@ woocommerce -msgid "View Variation" -msgstr "Lihat Variasi" - -#: woocommerce.php:995 -#@ woocommerce -msgid "Search Variations" -msgstr "Cari Variasi" - -#: woocommerce.php:996 -#@ woocommerce -msgid "No Variations found" -msgstr "Variasi tidak ditemukan" - -#: woocommerce.php:997 -#@ woocommerce -msgid "No Variations found in trash" -msgstr "Tidak ada Variasi ditemukan di tempat sampah" - -#: woocommerce.php:998 -#@ woocommerce -msgid "Parent Variation" -msgstr "Induk Variasi" - -#: woocommerce.php:1026 -#@ woocommerce -msgid "Add Order" -msgstr "Tambahkan Pesanan" - -#: woocommerce.php:1027 -#@ woocommerce -msgid "Add New Order" -msgstr "Tambahkan Pesanan Baru" - -#: woocommerce.php:1029 -#@ woocommerce -msgid "Edit Order" -msgstr "Edit Pesanan" - -#: woocommerce.php:1030 -#@ woocommerce -msgid "New Order" -msgstr "Pesanan Baru" - -#: woocommerce.php:1033 -#@ woocommerce -msgid "Search Orders" -msgstr "Cari Pesanan" - -#: woocommerce.php:1034 -#@ woocommerce -msgid "No Orders found" -msgstr "Pesanan Tidak ditemukan" - -#: woocommerce.php:1035 -#@ woocommerce -msgid "No Orders found in trash" -msgstr "Tidak ada Pesanan ditemukan di tempat sampah" - -#: woocommerce.php:1036 -#@ woocommerce -msgid "Parent Orders" -msgstr "Induk Pesanan" - -#: woocommerce.php:1039 -#@ woocommerce -msgid "This is where store orders are stored." -msgstr "Di sinilah pesanan toko disimpan." - -#: woocommerce.php:1063 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Coupons" -msgstr "Kupon" - -#: woocommerce.php:1064 -#@ woocommerce -msgid "Add Coupon" -msgstr "Tambahkan Kupon" - -#: woocommerce.php:1065 -#@ woocommerce -msgid "Add New Coupon" -msgstr "Tambahkan Kupon Baru" - -#: woocommerce.php:1067 -#@ woocommerce -msgid "Edit Coupon" -msgstr "Mengedit Kupon" - -#: woocommerce.php:1068 -#@ woocommerce -msgid "New Coupon" -msgstr "Kupon Baru" - -#: woocommerce.php:1069 -#@ woocommerce -msgid "View Coupons" -msgstr "Lihat Kupon" - -#: woocommerce.php:1070 -#@ woocommerce -msgid "View Coupon" -msgstr "Lihat Kupon" - -#: woocommerce.php:1071 -#@ woocommerce -msgid "Search Coupons" -msgstr "Cari Kupon" - -#: woocommerce.php:1072 -#@ woocommerce -msgid "No Coupons found" -msgstr "Kupon tidak ditemukan" - -#: woocommerce.php:1073 -#@ woocommerce -msgid "No Coupons found in trash" -msgstr "Kupon tidak ditemukan di tempat sampah" - -#: woocommerce.php:1074 -#@ woocommerce -msgid "Parent Coupon" -msgstr "Induk Kupon" - -#: woocommerce.php:1076 -#@ woocommerce -msgid "This is where you can add new coupons that customers can use in your store." -msgstr "Ini adalah di mana Anda dapat menambahkan kupon baru yang dapat digunakan pelanggan di toko Anda." - -#: woocommerce.php:1172 -#@ woocommerce -msgid "Select an option…" -msgstr "Pilih opsi…" - -#: woocommerce.php:1173 -#@ woocommerce -msgid "Please select a rating" -msgstr "Silakan pilih rating" - -#: woocommerce.php:1656 -#@ woocommerce -msgid "Cart % Discount" -msgstr "Keranjang % Diskon" - -#: woocommerce.php:1657 -#@ woocommerce -msgid "Product Discount" -msgstr "Produk Diskon" - -#: woocommerce.php:1658 -#@ woocommerce -msgid "Product % Discount" -msgstr "Produk % Diskon" - -#: admin/settings/settings-init.php:411 -#@ woocommerce -msgid "Page contents: [woocommerce_change_password] Parent: \"My Account\"" -msgstr "" - -#: admin/importers/importers-init.php:13 -#@ woocommerce -msgid "WooCommerce Tax Rates (CSV)" -msgstr "" - -#: admin/importers/importers-init.php:13 -#@ woocommerce -msgid "Import tax rates to your store via a csv file." -msgstr "" - -#: admin/importers/tax-rates-importer.php:103 -#: admin/importers/tax-rates-importer.php:186 -#: admin/importers/tax-rates-importer.php:226 -#: admin/importers/tax-rates-importer.php:241 -#@ woocommerce -msgid "Sorry, there has been an error." -msgstr "" - -#: admin/importers/tax-rates-importer.php:104 -#@ woocommerce -msgid "The file does not exist, please try again." -msgstr "" - -#: admin/importers/tax-rates-importer.php:187 -#@ woocommerce -msgid "The CSV is invalid." -msgstr "" - -#: admin/importers/tax-rates-importer.php:198 -#, php-format -#@ woocommerce -msgid "Import complete - imported %s tax rates and skipped %s." -msgstr "" - -#: admin/importers/tax-rates-importer.php:208 -#@ woocommerce -msgid "All done!" -msgstr "" - -#: admin/importers/tax-rates-importer.php:208 -#@ woocommerce -msgid "View Tax Rates" -msgstr "" - -#: admin/importers/tax-rates-importer.php:259 -#@ woocommerce -msgid "Import Tax Rates" -msgstr "" - -#: admin/importers/tax-rates-importer.php:282 -#@ woocommerce -msgid "Hi there! Upload a CSV file containing tax rates to import the contents into your shop. Choose a .csv file to upload, then click \"Upload file and import\"." -msgstr "" - -#: admin/importers/tax-rates-importer.php:284 -#, php-format -#@ woocommerce -msgid "Tax rates need to be defined with columns in a specific order (10 columns). Click here to download a sample." -msgstr "" - -#: admin/importers/tax-rates-importer.php:292 -#@ default -msgid "Before you can upload your import file, you will need to fix the following error:" -msgstr "" - -#: admin/importers/tax-rates-importer.php:301 -#@ default -msgid "Choose a file from your computer:" -msgstr "" - -#: admin/importers/tax-rates-importer.php:307 -#, php-format -#@ default -msgid "Maximum size: %s" -msgstr "" - -#: admin/importers/tax-rates-importer.php:312 -#@ woocommerce -msgid "OR enter path to file:" -msgstr "" - -#: admin/importers/tax-rates-importer.php:319 -#@ woocommerce -msgid "Delimiter" -msgstr "" - -#: admin/importers/tax-rates-importer.php:325 -#@ default -msgid "Upload file and import" -msgstr "" - -#: admin/includes/notice-theme-support.php:6 -#@ woocommerce -msgid "Your theme does not declare WooCommerce support – if you encounter layout issues please read our integration guide or choose a WooCommerce theme :)" -msgstr "" - -#: admin/includes/notice-theme-support.php:7 -#@ woocommerce -msgid "Theme Integration Guide" -msgstr "" - -#: admin/includes/notice-theme-support.php:7 -#@ woocommerce -msgid "Hide this notice" -msgstr "" - -#: admin/includes/notice-update.php:6 -#@ woocommerce -msgid "Data Update Required – We just need to update your install to the latest version" -msgstr "" - -#: admin/includes/notice-update.php:7 -#@ woocommerce -msgid "Run the updater" -msgstr "" - -#: admin/includes/notice-update.php:12 -#@ woocommerce -msgid "It is strongly recommended that you backup your database before proceeding. Are you sure you wish to run the updater now?" -msgstr "" - -#: admin/includes/updates/woocommerce-update-2.0.php:180 -#: admin/woocommerce-admin-install.php:204 -#@ woocommerce -msgctxt "page_slug" -msgid "lost-password" -msgstr "" - -#: admin/includes/updates/woocommerce-update-2.0.php:180 -#: admin/woocommerce-admin-install.php:204 -#: admin/woocommerce-admin-status.php:309 -#@ woocommerce -msgid "Lost Password" -msgstr "" - -#: admin/includes/welcome.php:33 -#@ woocommerce -msgid "Welcome to WooCommerce" -msgstr "" - -#: admin/includes/welcome.php:128 -#, php-format -#@ woocommerce -msgid "Welcome to WooCommerce %s" -msgstr "" - -#: admin/includes/welcome.php:133 -#@ woocommerce -msgid "Thanks, all done!" -msgstr "" - -#: admin/includes/welcome.php:135 -#@ woocommerce -msgid "Thank you for updating to the latest version!" -msgstr "" - -#: admin/includes/welcome.php:137 -#@ woocommerce -msgid "Thanks for installing!" -msgstr "" - -#: admin/includes/welcome.php:139 -#, php-format -#@ woocommerce -msgid "%s WooCommerce %s is more powerful, stable, and secure than ever before. We hope you enjoy it." -msgstr "" - -#: admin/includes/welcome.php:143 -#, php-format -#@ default -msgid "Version %s" -msgstr "" - -#: admin/includes/welcome.php:147 -#@ woocommerce -msgid "Docs" -msgstr "" - -#: admin/includes/welcome.php:154 -#@ woocommerce -msgid "What's New" -msgstr "" - -#: admin/includes/welcome.php:156 -#@ woocommerce -msgid "Credits" -msgstr "" - -#: admin/includes/welcome.php:179 -#@ woocommerce -msgid "Security in mind" -msgstr "" - -#: admin/includes/welcome.php:183 -#@ woocommerce -msgid "Sucuri Safe Plugin" -msgstr "" - -#: admin/includes/welcome.php:184 -#@ woocommerce -msgid "You will be happy to learn that WooCommerce has been audited and certified by the Sucuri Security team. Whilst there is not much to be seen visually to understand the amount of work that went into this audit, rest assured that your website is powered by one of the most powerful and stable eCommerce plugins available." -msgstr "" - -#: admin/includes/welcome.php:187 -#@ woocommerce -msgid "A Smoother Admin Experience" -msgstr "" - -#: admin/includes/welcome.php:193 -#@ woocommerce -msgid "New Product Panel" -msgstr "" - -#: admin/includes/welcome.php:194 -#@ woocommerce -msgid "We have revised the product data panel making it cleaner, more streamlined, and more logical. Adding products is a breeze!" -msgstr "" - -#: admin/includes/welcome.php:199 -#@ woocommerce -msgid "Nicer Order Screens" -msgstr "" - -#: admin/includes/welcome.php:200 -#@ woocommerce -msgid "Order pages have had a cleanup, with a more easily scannable interface. We particularly like the new status icons!" -msgstr "" - -#: admin/includes/welcome.php:205 -#@ woocommerce -msgid "Multi-Download Support" -msgstr "" - -#: admin/includes/welcome.php:206 -#@ woocommerce -msgid "Products can have multiple downloadable files - purchasers will get access to all the files added." -msgstr "" - -#: admin/includes/welcome.php:211 -#@ woocommerce -msgid "Less Taxing Taxes" -msgstr "" - -#: admin/includes/welcome.php:217 -#@ woocommerce -msgid "New Tax Input Panel" -msgstr "" - -#: admin/includes/welcome.php:218 -#@ woocommerce -msgid "The tax input pages have been streamlined to make inputting taxes simpler - adding multiple taxes for a single jurisdiction is now much easier using the priority system. There is also CSV import/export support." -msgstr "" - -#: admin/includes/welcome.php:222 -#@ woocommerce -msgid "Improved Tax Options" -msgstr "" - -#: admin/includes/welcome.php:223 -#@ woocommerce -msgid "As requested by some users, we now support taxing the billing address instead of shipping (optional), and we allow you to choose which tax class applies to shipping." -msgstr "" - -#: admin/includes/welcome.php:228 -#@ woocommerce -msgid "Product Listing Improvements Customers Will Love" -msgstr "" - -#: admin/includes/welcome.php:234 -#@ woocommerce -msgid "New Sorting Options" -msgstr "" - -#: admin/includes/welcome.php:235 -#@ woocommerce -msgid "Customers can now sort products by popularity and ratings." -msgstr "" - -#: admin/includes/welcome.php:240 -#@ woocommerce -msgid "Better Pagination and Result Counts" -msgstr "" - -#: admin/includes/welcome.php:241 -#@ woocommerce -msgid "Numbered pagination has been added to core, and we show the number of results found above the listings." -msgstr "" - -#: admin/includes/welcome.php:246 -#@ woocommerce -msgid "Inline Star Rating Display" -msgstr "" - -#: admin/includes/welcome.php:247 -#@ woocommerce -msgid "We have added star ratings to the catalog which are pulled from reviews." -msgstr "" - -#: admin/includes/welcome.php:255 -#@ woocommerce -msgid "Under the Hood" -msgstr "" - -#: admin/includes/welcome.php:259 -#@ woocommerce -msgid "New product classes" -msgstr "" - -#: admin/includes/welcome.php:260 -#@ woocommerce -msgid "The product classes have been rewritten and are now factory based. Much more extendable, and easier to query products using the new get_product() function." -msgstr "" - -#: admin/includes/welcome.php:264 -#@ woocommerce -msgid "Capability overhaul" -msgstr "" - -#: admin/includes/welcome.php:265 -#@ woocommerce -msgid "More granular capabilities for admin/shop manager roles covering products, orders and coupons." -msgstr "" - -#: admin/includes/welcome.php:269 -#@ woocommerce -msgid "API Improvements" -msgstr "" - -#: admin/includes/welcome.php:270 -#@ woocommerce -msgid "WC-API now has real endpoints, and we've optimised the gateways API significantly by only loading gateways when needed." -msgstr "" - -#: admin/includes/welcome.php:276 -#@ woocommerce -msgid "Cache-friendly cart widgets" -msgstr "" - -#: admin/includes/welcome.php:277 -#@ woocommerce -msgid "Cart widgets and other \"fragments\" are now pulled in via AJAX - this works wonders with static page caching." -msgstr "" - -#: admin/includes/welcome.php:281 -#@ woocommerce -msgid "Session handling" -msgstr "" - -#: admin/includes/welcome.php:282 -#@ woocommerce -msgid "PHP SESSIONS have been a problem for many users in the past, so we've developed our own handler using cookies and options to make these more reliable." -msgstr "" - -#: admin/includes/welcome.php:286 -#@ woocommerce -msgid "Retina Ready" -msgstr "" - -#: admin/includes/welcome.php:287 -#@ woocommerce -msgid "All graphics within WC have been optimised for HiDPI displays." -msgstr "" - -#: admin/includes/welcome.php:294 -#@ woocommerce -msgid "Better stock handling" -msgstr "" - -#: admin/includes/welcome.php:295 -#@ woocommerce -msgid "We have added an option to hold stock for unpaid orders (defaults to 60mins). When this time limit is reached, and the order is not paid for, stock is released and the order is cancelled." -msgstr "" - -#: admin/includes/welcome.php:299 -#@ woocommerce -msgid "Improved Line-item storage" -msgstr "" - -#: admin/includes/welcome.php:300 -#@ woocommerce -msgid "We have changed how order items get stored making them easier (and faster) to access for reporting. Order items are no longer serialised within an order - they are stored within their own table." -msgstr "" - -#: admin/includes/welcome.php:304 -#@ woocommerce -msgid "Autoload" -msgstr "" - -#: admin/includes/welcome.php:305 -#@ woocommerce -msgid "We have setup autoloading for classes - this has dramatically reduced memory usage in 2.0." -msgstr "" - -#: admin/includes/welcome.php:312 -#@ woocommerce -msgid "Go to WooCommerce Settings" -msgstr "" - -#: admin/includes/welcome.php:330 -#@ woocommerce -msgid "WooCommerce is developed and maintained by a worldwide team of passionate individuals and backed by an awesome developer community. Want to see your name? Contribute to WooCommerce." -msgstr "" - -#: admin/includes/welcome.php:356 -#, php-format -#@ woocommerce -msgid "View %s" -msgstr "" - -#: admin/post-types/product.php:151 -#@ default -msgid "Edit this item" -msgstr "" - -#: admin/post-types/product.php:251 -#@ woocommerce -msgid "Toggle featured" -msgstr "" - -#: admin/post-types/product.php:253 -#@ woocommerce -msgid "yes" -msgstr "" - -#: admin/post-types/product.php:255 -#@ woocommerce -msgid "no" -msgstr "" - -#: admin/post-types/product.php:794 -#: admin/post-types/product.php:818 -#@ woocommerce -msgid "Increase by (fixed amount or %):" -msgstr "" - -#: admin/post-types/product.php:795 -#: admin/post-types/product.php:819 -#@ woocommerce -msgid "Decrease by (fixed amount or %):" -msgstr "" - -#: admin/post-types/product.php:805 -#: admin/post-types/product.php:830 -#@ woocommerce -msgid "Enter price" -msgstr "" - -#: admin/post-types/product.php:820 -#@ woocommerce -msgid "Decrease regular price by (fixed amount or %):" -msgstr "" - -#: admin/post-types/product.php:1214 -#@ woocommerce -msgid "Insert into product" -msgstr "" - -#: admin/post-types/product.php:1215 -#@ woocommerce -msgid "Uploaded to this product" -msgstr "" - -#: admin/post-types/shop_coupon.php:30 -#@ woocommerce -msgid "Usage / Limit" -msgstr "" - -#: admin/post-types/shop_coupon.php:56 -#@ woocommerce -msgid "Edit coupon" -msgstr "" - -#: admin/post-types/shop_coupon.php:114 -#, php-format -#@ woocommerce -msgid "%s / %s" -msgstr "" - -#: admin/post-types/shop_coupon.php:116 -#, php-format -#@ woocommerce -msgid "%s / ∞" -msgstr "" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -#, php-format -#@ woocommerce -msgid "File %d: %s" -msgstr "" - -#: admin/post-types/writepanels/order-fee-html.php:10 -#@ woocommerce -msgid "Fee Name" -msgstr "" - -#: admin/post-types/writepanels/order-tax-html.php:6 -#@ woocommerce -msgid "Tax Rate:" -msgstr "" - -#: admin/post-types/writepanels/order-tax-html.php:16 -#: admin/post-types/writepanels/writepanel-order_data.php:627 -#@ woocommerce -msgid "Sales Tax:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:57 -#@ woocommerce -msgid "Enter a quantity to enable stock management at variation level, or leave blank to use the parent product's options." -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:66 -#@ woocommerce -msgid "Regular Price:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:67 -#@ woocommerce -msgid "Variation price (required)" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:70 -#@ woocommerce -msgid "Cancel schedule" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:77 -#@ woocommerce -msgid "Sale start date:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:81 -#@ woocommerce -msgid "Sale end date:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:135 -#@ woocommerce -msgid "File paths:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:135 -#@ woocommerce -msgid "Enter one or more File Paths, one per line, to make this variation a downloadable product, or leave blank." -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:136 -#: admin/post-types/writepanels/writepanel-product_data.php:153 -#@ woocommerce -msgid "File paths/URLs, one per line" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:137 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -#@ woocommerce -msgid "Choose a file" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:137 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -#@ woocommerce -msgid "Insert file URL" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:150 -#@ woocommerce -msgid "Download Expiry:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -#@ woocommerce -msgid "Coupon description" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -#@ woocommerce -msgid "Optionally enter a description for this coupon for your reference." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -#@ woocommerce -msgid "Enter an amount or percentage e.g. 2.99 or 15%" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -#, php-format -#@ woocommerce -msgid "Check this box if the coupon grants free shipping. The free shipping method must be enabled with the \"must use coupon\" setting checked." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -#@ woocommerce -msgid "Check this box if the coupon cannot be used in conjunction with other coupons." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -#@ woocommerce -msgid "Check this box if the coupon should be applied before calculating cart tax." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -#@ woocommerce -msgid "Exclude sale items" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -#@ woocommerce -msgid "Check this box if the coupon should not apply to items on sale. Per-item coupons will only work if the item is not on sale. Per-cart coupons will only work if there are no sale items in the cart." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:94 -#@ woocommerce -msgid "Exclude products" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:116 -#: assets/js/admin/editor_plugin_lang.php:9 -#@ woocommerce -msgid "Product categories" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:130 -#@ woocommerce -msgid "Exclude categories" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -#@ woocommerce -msgid "Customer emails" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -#@ woocommerce -msgid "How many times this coupon can be used before it is void." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -#@ woocommerce -msgid "The date this coupon will expire, YYYY-MM-DD." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:195 -#@ woocommerce -msgid "Coupon code already exists - customers will use the latest coupon with this code." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:62 -#@ woocommerce -msgid "Order number" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:67 -#@ woocommerce -msgid "Customer IP:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:74 -#@ woocommerce -msgid "General Details" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -#@ woocommerce -msgid "Line subtotals are before pre-tax discounts, totals are after." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:388 -#@ woocommerce -msgid "Delete Lines" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:390 -#@ woocommerce -msgid "Stock Actions" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:391 -#@ woocommerce -msgid "Reduce Line Stock" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:392 -#@ woocommerce -msgid "Increase Line Stock" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:396 -#: admin/post-types/writepanels/writepanel-order_data.php:456 -#@ woocommerce -msgid "Apply" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:403 -#@ woocommerce -msgid "Add fee" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:434 -#@ woocommerce -msgid "Resend order emails" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:499 -#@ woocommerce -msgid "Discounts before tax - calculated by comparing subtotals to totals." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:507 -#@ woocommerce -msgid "Discounts after tax - user defined." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:540 -#@ woocommerce -msgid "Label:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:548 -#@ woocommerce -msgid "Cost:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:556 -#@ woocommerce -msgid "Method:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:627 -#@ woocommerce -msgid "Total tax for line items + fees." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:692 -#@ woocommerce -msgid "Calc taxes" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:694 -#@ woocommerce -msgid "Calc totals" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:125 -#@ woocommerce -msgid "Could not grant access - the user may already have permission for this file or billing email is not set. Ensure the billing email is set, and the order has been saved." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:77 -#@ woocommerce -msgid "Toggle "Enabled"" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:78 -#@ woocommerce -msgid "Toggle "Downloadable"" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:79 -#@ woocommerce -msgid "Toggle "Virtual"" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:80 -#@ woocommerce -msgid "Delete all variations" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:93 -#@ woocommerce -msgid "Go" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:511 -#: admin/woocommerce-admin-taxonomies.php:62 -#: admin/woocommerce-admin-taxonomies.php:154 -#@ woocommerce -msgid "Choose an image" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:513 -#@ woocommerce -msgid "Set variation image" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:83 -#@ woocommerce -msgid "Linked Products" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:152 -#@ woocommerce -msgid "File paths (one per line)" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:212 -#@ woocommerce -msgid "Enable stock management at product level" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -#@ woocommerce -msgid "Sold Individually" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -#@ woocommerce -msgid "Enable this to only allow one of this item to be bought in a single order" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:496 -#@ woocommerce -msgid "Save attributes" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:571 -#@ woocommerce -msgid "Set this option to make this product part of a grouped product." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -#@ woocommerce -msgid "Delete image" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_images.php:53 -#@ woocommerce -msgid "Add product gallery images" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_images.php:79 -#@ woocommerce -msgid "Add Images to Product Gallery" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_images.php:81 -#@ woocommerce -msgid "Add to gallery" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:47 -#@ woocommerce -msgid "Product Gallery" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:69 -#@ woocommerce -msgid "Order Items" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:69 -#@ woocommerce -msgid "Note: if you edit quantities or remove items from the order you will need to manually update stock levels." -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:72 -#@ woocommerce -msgid "Downloadable Product Permissions" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:72 -#@ woocommerce -msgid "Note: Permissions for order items will automatically be granted when the order status changes to processing/completed." -msgstr "" - -#: admin/settings/settings-init.php:19 -#, php-format -#@ woocommerce -msgid "Use informal localisation for %s" -msgstr "" - -#: admin/settings/settings-init.php:36 -#@ woocommerce -msgid "Base Location" -msgstr "" - -#: admin/settings/settings-init.php:37 -#@ woocommerce -msgid "This is the base location for your business. Tax rates will be based on this country." -msgstr "" - -#: admin/settings/settings-init.php:85 -#@ woocommerce -msgid "Enable site-wide store notice text" -msgstr "" - -#: admin/settings/settings-init.php:102 -#@ woocommerce -msgid "Cart, Checkout and Accounts" -msgstr "" - -#: admin/settings/settings-init.php:106 -#@ woocommerce -msgid "Enable the use of coupons" -msgstr "" - -#: admin/settings/settings-init.php:110 -#@ woocommerce -msgid "Coupons can be applied from the cart and checkout pages." -msgstr "" - -#: admin/settings/settings-init.php:123 -#@ woocommerce -msgid "Enable customer note field on checkout" -msgstr "" - -#: admin/settings/settings-init.php:137 -#@ woocommerce -msgid "Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -msgstr "" - -#: admin/settings/settings-init.php:192 -#@ woocommerce -msgid "Allow customers to repurchase orders from their account page" -msgstr "" - -#: admin/settings/settings-init.php:205 -#@ woocommerce -msgid "Enable WooCommerce CSS" -msgstr "" - -#: admin/settings/settings-init.php:217 -#@ woocommerce -msgid "Enable Lightbox" -msgstr "" - -#: admin/settings/settings-init.php:220 -#@ woocommerce -msgid "Include WooCommerce's lightbox. Product gallery images and the add review form will open in a lightbox." -msgstr "" - -#: admin/settings/settings-init.php:231 -#@ woocommerce -msgid "This will enable a script allowing the country fields to be searchable." -msgstr "" - -#: admin/settings/settings-init.php:236 -#@ woocommerce -msgid "Downloadable Products" -msgstr "" - -#: admin/settings/settings-init.php:239 -#@ woocommerce -msgid "File Download Method" -msgstr "" - -#: admin/settings/settings-init.php:255 -#@ woocommerce -msgid "Access Restriction" -msgstr "" - -#: admin/settings/settings-init.php:256 -#@ woocommerce -msgid "Downloads require login" -msgstr "" - -#: admin/settings/settings-init.php:260 -#@ woocommerce -msgid "This setting does not apply to guest purchases." -msgstr "" - -#: admin/settings/settings-init.php:269 -#@ woocommerce -msgid "Enable this option to grant access to downloads when orders are \"processing\", rather than \"completed\"." -msgstr "" - -#: admin/settings/settings-init.php:292 -#, php-format -#@ woocommerce -msgid "Set up core WooCommerce pages here, for example the base page. The base page can also be used in your %sproduct permalinks%s." -msgstr "" - -#: admin/settings/settings-init.php:318 -#@ woocommerce -msgid "Terms Page ID" -msgstr "" - -#: admin/settings/settings-init.php:421 -#@ woocommerce -msgid "Logout Page" -msgstr "" - -#: admin/settings/settings-init.php:422 -#@ woocommerce -msgid "Parent: \"My Account\"" -msgstr "" - -#: admin/settings/settings-init.php:432 -#@ woocommerce -msgid "Lost Password Page" -msgstr "" - -#: admin/settings/settings-init.php:433 -#@ woocommerce -msgid "Page contents: [woocommerce_lost_password] Parent: \"My Account\"" -msgstr "" - -#: admin/settings/settings-init.php:452 -#@ woocommerce -msgid "Default Product Sorting" -msgstr "" - -#: admin/settings/settings-init.php:459 -#@ woocommerce -msgid "Default sorting (custom ordering + name)" -msgstr "" - -#: admin/settings/settings-init.php:460 -#@ woocommerce -msgid "Popularity (sales)" -msgstr "" - -#: admin/settings/settings-init.php:461 -#@ woocommerce -msgid "Average Rating" -msgstr "" - -#: admin/settings/settings-init.php:463 -#@ woocommerce -msgid "Sort by price (asc)" -msgstr "" - -#: admin/settings/settings-init.php:464 -#@ woocommerce -msgid "Sort by price (desc)" -msgstr "" - -#: admin/settings/settings-init.php:470 -#@ woocommerce -msgid "Shop Page Display" -msgstr "" - -#: admin/settings/settings-init.php:471 -#@ woocommerce -msgid "This controls what is shown on the product archive." -msgstr "" - -#: admin/settings/settings-init.php:477 -#: admin/settings/settings-init.php:492 -#@ woocommerce -msgid "Show products" -msgstr "" - -#: admin/settings/settings-init.php:479 -#: admin/settings/settings-init.php:494 -#@ woocommerce -msgid "Show both" -msgstr "" - -#: admin/settings/settings-init.php:485 -#@ woocommerce -msgid "Default Category Display" -msgstr "" - -#: admin/settings/settings-init.php:486 -#@ woocommerce -msgid "This controls what is shown on category archives." -msgstr "" - -#: admin/settings/settings-init.php:501 -#@ woocommerce -msgid "Redirect to the cart page after successful addition" -msgstr "" - -#: admin/settings/settings-init.php:509 -#@ woocommerce -msgid "Enable AJAX add to cart buttons on archives" -msgstr "" - -#: admin/settings/settings-init.php:521 -#@ woocommerce -msgid "Product Fields" -msgstr "" - -#: admin/settings/settings-init.php:522 -#@ woocommerce -msgid "Enable the SKU field for products" -msgstr "" - -#: admin/settings/settings-init.php:530 -#@ woocommerce -msgid "Enable the weight field for products (some shipping methods may require this)" -msgstr "" - -#: admin/settings/settings-init.php:538 -#@ woocommerce -msgid "Enable the dimension fields for products (some shipping methods may require this)" -msgstr "" - -#: admin/settings/settings-init.php:546 -#@ woocommerce -msgid "Show weight and dimension values on the Additional Information tab" -msgstr "" - -#: admin/settings/settings-init.php:588 -#@ woocommerce -msgid "Enable ratings on reviews" -msgstr "" - -#: admin/settings/settings-init.php:635 -#@ woocommerce -msgid "Thousand Separator" -msgstr "" - -#: admin/settings/settings-init.php:645 -#@ woocommerce -msgid "Decimal Separator" -msgstr "" - -#: admin/settings/settings-init.php:655 -#@ woocommerce -msgid "Number of Decimals" -msgstr "" - -#: admin/settings/settings-init.php:669 -#@ woocommerce -msgid "Trailing Zeros" -msgstr "" - -#: admin/settings/settings-init.php:732 -#@ woocommerce -msgid "Manage Stock" -msgstr "" - -#: admin/settings/settings-init.php:740 -#@ woocommerce -msgid "Hold Stock (minutes)" -msgstr "" - -#: admin/settings/settings-init.php:741 -#@ woocommerce -msgid "Hold stock (for unpaid orders) for x minutes. When this limit is reached, the pending order will be cancelled. Leave blank to disable." -msgstr "" - -#: admin/settings/settings-init.php:770 -#@ woocommerce -msgid "Notification Recipient" -msgstr "" - -#: admin/settings/settings-init.php:778 -#@ woocommerce -msgid "Low Stock Threshold" -msgstr "" - -#: admin/settings/settings-init.php:791 -#@ woocommerce -msgid "Out Of Stock Threshold" -msgstr "" - -#: admin/settings/settings-init.php:804 -#@ woocommerce -msgid "Out Of Stock Visibility" -msgstr "" - -#: admin/settings/settings-init.php:812 -#@ woocommerce -msgid "Stock Display Format" -msgstr "" - -#: admin/settings/settings-init.php:836 -#@ woocommerce -msgid "Shipping Calculations" -msgstr "" - -#: admin/settings/settings-init.php:861 -#@ woocommerce -msgid "Shipping Method Display" -msgstr "" - -#: admin/settings/settings-init.php:931 -#@ woocommerce -msgid "Enable Taxes" -msgstr "" - -#: admin/settings/settings-init.php:939 -#@ woocommerce -msgid "Prices Entered With Tax" -msgstr "" - -#: admin/settings/settings-init.php:943 -#@ woocommerce -msgid "This option is important as it will affect how you input prices. Changing it will not update existing products." -msgstr "" - -#: admin/settings/settings-init.php:945 -#@ woocommerce -msgid "Yes, I will enter prices inclusive of tax" -msgstr "" - -#: admin/settings/settings-init.php:946 -#@ woocommerce -msgid "No, I will enter prices exclusive of tax" -msgstr "" - -#: admin/settings/settings-init.php:951 -#@ woocommerce -msgid "Calculate Tax Based On:" -msgstr "" - -#: admin/settings/settings-init.php:953 -#@ woocommerce -msgid "This option determines which address is used to calculate tax." -msgstr "" - -#: admin/settings/settings-init.php:957 -#@ woocommerce -msgid "Customer shipping address" -msgstr "" - -#: admin/settings/settings-init.php:958 -#@ woocommerce -msgid "Customer billing address" -msgstr "" - -#: admin/settings/settings-init.php:959 -#: admin/settings/settings-init.php:971 -#@ woocommerce -msgid "Shop base address" -msgstr "" - -#: admin/settings/settings-init.php:964 -#@ woocommerce -msgid "Default Customer Address:" -msgstr "" - -#: admin/settings/settings-init.php:966 -#@ woocommerce -msgid "This option determines the customers default address (before they input their own)." -msgstr "" - -#: admin/settings/settings-init.php:970 -#@ woocommerce -msgid "No address" -msgstr "" - -#: admin/settings/settings-init.php:976 -#@ woocommerce -msgid "Shipping Tax Class:" -msgstr "" - -#: admin/settings/settings-init.php:977 -#@ woocommerce -msgid "Optionally control which tax class shipping gets, or leave it so shipping tax is based on the cart items themselves." -msgstr "" - -#: admin/settings/settings-init.php:982 -#@ woocommerce -msgid "Shipping tax class based on cart items" -msgstr "" - -#: admin/settings/settings-init.php:987 -#@ woocommerce -msgid "Rounding" -msgstr "" - -#: admin/settings/settings-init.php:988 -#@ woocommerce -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "" - -#: admin/settings/settings-init.php:995 -#@ woocommerce -msgid "Additional Tax Classes" -msgstr "" - -#: admin/settings/settings-init.php:996 -#@ woocommerce -msgid "List additonal tax classes below (1 per line). This is in addition to the default Standard Rate. Tax classes can be assigned to products." -msgstr "" - -#: admin/settings/settings-init.php:1004 -#@ woocommerce -msgid "Display prices during cart/checkout:" -msgstr "" - -#: admin/settings/settings-init.php:1009 -#@ woocommerce -msgid "Including tax" -msgstr "" - -#: admin/settings/settings-init.php:1010 -#@ woocommerce -msgid "Excluding tax" -msgstr "" - -#: admin/settings/settings-init.php:1025 -#@ woocommerce -msgid "\"From\" Name" -msgstr "" - -#: admin/settings/settings-init.php:1034 -#@ woocommerce -msgid "\"From\" Email Address" -msgstr "" - -#: admin/settings/settings-init.php:1047 -#@ woocommerce -msgid "Email Template" -msgstr "" - -#: admin/settings/settings-init.php:1050 -#@ woocommerce -msgid "Header Image" -msgstr "" - -#: admin/settings/settings-init.php:1059 -#@ woocommerce -msgid "Email Footer Text" -msgstr "" - -#: admin/settings/settings-init.php:1068 -#@ woocommerce -msgid "Base Colour" -msgstr "" - -#: admin/settings/settings-init.php:1077 -#@ woocommerce -msgid "Background Colour" -msgstr "" - -#: admin/settings/settings-init.php:1078 -#@ woocommerce -msgid "The background colour for WooCommerce email templates. Default #f5f5f5." -msgstr "" - -#: admin/settings/settings-init.php:1086 -#@ woocommerce -msgid "Email Body Background Colour" -msgstr "" - -#: admin/settings/settings-init.php:1095 -#@ woocommerce -msgid "Email Body Text Colour" -msgstr "" - -#: admin/settings/settings-tax-rates.php:29 -#, php-format -#@ woocommerce -msgid "Tax Rates for the \"%s\" Class" -msgstr "" - -#: admin/settings/settings-tax-rates.php:30 -#, php-format -#@ woocommerce -msgid "Define tax rates for countries and states below. See here for available alpha-2 country codes." -msgstr "" - -#: admin/settings/settings-tax-rates.php:36 -#@ woocommerce -msgid "Country Code" -msgstr "" - -#: admin/settings/settings-tax-rates.php:36 -#@ woocommerce -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "" - -#: admin/settings/settings-tax-rates.php:38 -#@ woocommerce -msgid "State Code" -msgstr "" - -#: admin/settings/settings-tax-rates.php:38 -#@ woocommerce -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "" - -#: admin/settings/settings-tax-rates.php:40 -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "ZIP/Postcode" -msgstr "" - -#: admin/settings/settings-tax-rates.php:40 -#@ woocommerce -msgid "Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank to apply to all areas. Wildcards (*) can be used. Ranges for numeric postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "" - -#: admin/settings/settings-tax-rates.php:42 -#@ woocommerce -msgid "Cities for this rule. Semi-colon (;) separate multiple values. Leave blank to apply to all cities." -msgstr "" - -#: admin/settings/settings-tax-rates.php:44 -#@ woocommerce -msgid "Rate %" -msgstr "" - -#: admin/settings/settings-tax-rates.php:46 -#@ woocommerce -msgid "Tax Name" -msgstr "" - -#: admin/settings/settings-tax-rates.php:46 -#@ woocommerce -msgid "Enter a name for this tax rate." -msgstr "" - -#: admin/settings/settings-tax-rates.php:48 -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Priority" -msgstr "" - -#: admin/settings/settings-tax-rates.php:48 -#@ woocommerce -msgid "Choose a priority for this tax rate. Only 1 matching rate per priority will be used. To define multiple tax rates for a single area you need to specify a different priority per rate." -msgstr "" - -#: admin/settings/settings-tax-rates.php:59 -#@ woocommerce -msgid "Insert row" -msgstr "" - -#: admin/settings/settings-tax-rates.php:60 -#@ woocommerce -msgid "Remove selected row(s)" -msgstr "" - -#: admin/settings/settings-tax-rates.php:62 -#@ woocommerce -msgid "Export CSV" -msgstr "" - -#: admin/settings/settings-tax-rates.php:63 -#@ woocommerce -msgid "Import CSV" -msgstr "" - -#: admin/settings/settings-tax-rates.php:163 -#@ woocommerce -msgid "No row(s) selected" -msgstr "" - -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Country Code" -msgstr "" - -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "State Code" -msgstr "" - -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Rate %" -msgstr "" - -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Tax Name" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:77 -#@ woocommerce -msgid "Please, provide an attribute name, slug and type." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:79 -#, php-format -#@ woocommerce -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:81 -#, php-format -#@ woocommerce -msgid "Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:85 -#: admin/woocommerce-admin-attributes.php:90 -#, php-format -#@ woocommerce -msgid "Slug “%s” is already in use. Change it, please." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:263 -#: admin/woocommerce-admin-attributes.php:395 -#@ woocommerce -msgid "Default sort order" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:267 -#: admin/woocommerce-admin-attributes.php:335 -#: admin/woocommerce-admin-attributes.php:397 -#@ woocommerce -msgid "Custom ordering" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:269 -#: admin/woocommerce-admin-attributes.php:332 -#: admin/woocommerce-admin-attributes.php:399 -#@ woocommerce -msgid "Term ID" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:271 -#: admin/woocommerce-admin-attributes.php:401 -#@ woocommerce -msgid "Determines the sort order of the terms on the frontend shop product pages. If using custom ordering, you can drag and drop the terms in this attribute." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:309 -#@ woocommerce -msgid "Order by" -msgstr "" - -#: admin/woocommerce-admin-content.php:29 -#, php-format -#@ woocommerce -msgid "Thank you for using WooCommerce :) Should you need help using or extending WooCommerce please read the documentation. For further assistance you can use the community forum or if you have access, our support desk." -msgstr "" - -#: admin/woocommerce-admin-content.php:61 -#@ woocommerce -msgid "Coupon usage reports." -msgstr "" - -#: admin/woocommerce-admin-content.php:84 -#@ woocommerce -msgid "Project on WordPress.org" -msgstr "" - -#: admin/woocommerce-admin-content.php:85 -#@ woocommerce -msgid "Project on Github" -msgstr "" - -#: admin/woocommerce-admin-content.php:86 -#@ woocommerce -msgid "WooCommerce Docs" -msgstr "" - -#: admin/woocommerce-admin-content.php:87 -#@ woocommerce -msgid "Official Extensions" -msgstr "" - -#: admin/woocommerce-admin-content.php:88 -#@ woocommerce -msgid "Official Themes" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:428 -#@ woocommerce -msgid "Sold" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:429 -#@ woocommerce -msgid "Earned" -msgstr "" - -#: admin/woocommerce-admin-init.php:446 -#@ woocommerce -msgid "Are you sure you want to remove the selected items? If you have previously reduced this item's stock, or this order was submitted by a customer, you will need to manually restore the item's stock." -msgstr "" - -#: admin/woocommerce-admin-init.php:447 -#@ woocommerce -msgid "Please select some items." -msgstr "" - -#: admin/woocommerce-admin-init.php:448 -#@ woocommerce -msgid "Remove this item meta?" -msgstr "" - -#: admin/woocommerce-admin-init.php:458 -#@ woocommerce -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "" - -#: admin/woocommerce-admin-init.php:747 -#@ woocommerce -msgid "These settings control the permalinks used for products. These settings only apply when not using \"default\" permalinks above." -msgstr "" - -#: admin/woocommerce-admin-init.php:754 -#@ woocommerce -msgctxt "default-slug" -msgid "shop" -msgstr "" - -#: admin/woocommerce-admin-init.php:755 -#@ woocommerce -msgctxt "default-slug" -msgid "product" -msgstr "" - -#: admin/woocommerce-admin-init.php:776 -#@ woocommerce -msgid "Shop base" -msgstr "" - -#: admin/woocommerce-admin-init.php:780 -#@ woocommerce -msgid "Shop base with category" -msgstr "" - -#: admin/woocommerce-admin-init.php:786 -#@ woocommerce -msgid "Custom Base" -msgstr "" - -#: admin/woocommerce-admin-init.php:788 -#@ woocommerce -msgid "Enter a custom base to use. A base must be set or WordPress will use default instead." -msgstr "" - -#: admin/woocommerce-admin-init.php:816 -#@ woocommerce -msgid "Product permalink base" -msgstr "" - -#: admin/woocommerce-admin-init.php:821 -#@ woocommerce -msgid "Product category base" -msgstr "" - -#: admin/woocommerce-admin-init.php:828 -#@ woocommerce -msgid "Product tag base" -msgstr "" - -#: admin/woocommerce-admin-init.php:835 -#@ woocommerce -msgid "Product attribute base" -msgstr "" - -#: admin/woocommerce-admin-install.php:216 -#@ woocommerce -msgctxt "page_slug" -msgid "logout" -msgstr "" - -#: admin/woocommerce-admin-reports.php:66 -#@ woocommerce -msgid "Sales by category" -msgstr "" - -#: admin/woocommerce-admin-reports.php:81 -#@ woocommerce -msgid "Discounts by coupon" -msgstr "" - -#: admin/woocommerce-admin-reports.php:407 -#@ woocommerce -msgid "This month's sales" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1362 -#@ woocommerce -msgid "Total orders containing coupons" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1368 -#@ woocommerce -msgid "Percent of orders containing coupons" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1374 -#@ woocommerce -msgid "Total coupon discount" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1383 -#@ woocommerce -msgid "Most popular coupons" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1393 -#, php-format -#@ woocommerce -msgid "Used 1 time" -msgid_plural "Used %d times" -msgstr[0] "" -msgstr[1] "" - -#: admin/woocommerce-admin-reports.php:1396 -#: admin/woocommerce-admin-reports.php:1418 -#@ woocommerce -msgid "No coupons found" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1405 -#@ woocommerce -msgid "Greatest discount amount" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1415 -#, php-format -#@ woocommerce -msgid "Discounted %s" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1474 -#: admin/woocommerce-admin-reports.php:2453 -#@ woocommerce -msgid "Show:" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1614 -#@ woocommerce -msgid "Top coupon" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1622 -#@ woocommerce -msgid "Worst coupon" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1630 -#@ woocommerce -msgid "Discount average" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1638 -#@ woocommerce -msgid "Discount median" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1658 -#@ woocommerce -msgid "Monthly discounts by coupon" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2127 -#@ woocommerce -msgid "Marked out of stock" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2529 -#@ woocommerce -msgid "Category" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2632 -#@ woocommerce -msgid "Top category" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2641 -#@ woocommerce -msgid "Worst category" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2649 -#@ woocommerce -msgid "Category sales average" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2660 -#@ woocommerce -msgid "Category sales median" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2680 -#@ woocommerce -msgid "Monthly sales by category" -msgstr "" - -#: admin/woocommerce-admin-settings.php:253 -#@ woocommerce -msgid "Email Options" -msgstr "" - -#: admin/woocommerce-admin-status.php:62 -#@ woocommerce -msgid "Please include this information when requesting support:" -msgstr "" - -#: admin/woocommerce-admin-status.php:63 -#@ woocommerce -msgid "Download System Report File" -msgstr "" - -#: admin/woocommerce-admin-status.php:71 -#@ woocommerce -msgid "Environment" -msgstr "" - -#: admin/woocommerce-admin-status.php:85 -#@ woocommerce -msgid "WC Version" -msgstr "" - -#: admin/woocommerce-admin-status.php:89 -#@ woocommerce -msgid "WC Database Version" -msgstr "" - -#: admin/woocommerce-admin-status.php:93 -#@ woocommerce -msgid "WP Version" -msgstr "" - -#: admin/woocommerce-admin-status.php:97 -#@ woocommerce -msgid "Web Server Info" -msgstr "" - -#: admin/woocommerce-admin-status.php:105 -#@ woocommerce -msgid "MySQL Version" -msgstr "" - -#: admin/woocommerce-admin-status.php:129 -#@ woocommerce -msgid "PHP Post Max Size" -msgstr "" - -#: admin/woocommerce-admin-status.php:133 -#@ woocommerce -msgid "PHP Time Limit" -msgstr "" - -#: admin/woocommerce-admin-status.php:165 -#@ woocommerce -msgid "SOAP Client" -msgstr "" - -#: admin/woocommerce-admin-status.php:167 -#@ woocommerce -msgid "Your server has the SOAP Client class enabled." -msgstr "" - -#: admin/woocommerce-admin-status.php:170 -#, php-format -#@ woocommerce -msgid "Your server does not have the SOAP Client class enabled - some gateway plugins which use SOAP may not work as expected." -msgstr "" - -#: admin/woocommerce-admin-status.php:175 -#@ woocommerce -msgid "WP Remote Post" -msgstr "" - -#: admin/woocommerce-admin-status.php:215 -#@ woocommerce -msgid "Plugins" -msgstr "" - -#: admin/woocommerce-admin-status.php:221 -#@ woocommerce -msgid "Installed Plugins" -msgstr "" - -#: admin/woocommerce-admin-status.php:266 -#@ woocommerce -msgid "WC Pages" -msgstr "" - -#: admin/woocommerce-admin-status.php:273 -#@ woocommerce -msgid "Shop Base" -msgstr "" - -#: admin/woocommerce-admin-status.php:289 -#@ woocommerce -msgid "Thanks" -msgstr "" - -#: admin/woocommerce-admin-status.php:297 -#: assets/js/admin/editor_plugin_lang.php:19 -#@ woocommerce -msgid "Edit Address" -msgstr "" - -#: admin/woocommerce-admin-status.php:339 -#@ woocommerce -msgid "Page does not exist" -msgstr "" - -#: admin/woocommerce-admin-status.php:363 -#@ woocommerce -msgid "WC Taxonomies" -msgstr "" - -#: admin/woocommerce-admin-status.php:379 -#@ woocommerce -msgid "Product Types" -msgstr "" - -#: admin/woocommerce-admin-status.php:392 -#@ woocommerce -msgid "Templates" -msgstr "" - -#: admin/woocommerce-admin-status.php:398 -#@ woocommerce -msgid "Template Overrides" -msgstr "" - -#: admin/woocommerce-admin-status.php:416 -#@ woocommerce -msgid "No core overrides present in theme." -msgstr "" - -#: admin/woocommerce-admin-status.php:510 -#@ woocommerce -msgid "WC Transients" -msgstr "" - -#: admin/woocommerce-admin-status.php:511 -#@ woocommerce -msgid "Clear transients" -msgstr "" - -#: admin/woocommerce-admin-status.php:515 -#@ woocommerce -msgid "Expired Transients" -msgstr "" - -#: admin/woocommerce-admin-status.php:516 -#@ woocommerce -msgid "Clear expired transients" -msgstr "" - -#: admin/woocommerce-admin-status.php:517 -#@ woocommerce -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "" - -#: admin/woocommerce-admin-status.php:520 -#@ woocommerce -msgid "Term counts" -msgstr "" - -#: admin/woocommerce-admin-status.php:521 -#@ woocommerce -msgid "Recount terms" -msgstr "" - -#: admin/woocommerce-admin-status.php:522 -#@ woocommerce -msgid "This tool will recount product terms - useful when changing your settings in a way which hides products from the catalog." -msgstr "" - -#: admin/woocommerce-admin-status.php:526 -#@ woocommerce -msgid "Reset capabilities" -msgstr "" - -#: admin/woocommerce-admin-status.php:578 -#, php-format -#@ woocommerce -msgid "%d Transients Rows Cleared" -msgstr "" - -#: admin/woocommerce-admin-status.php:598 -#@ woocommerce -msgid "Terms successfully recounted" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:25 -#: admin/woocommerce-admin-taxonomies.php:118 -#@ woocommerce -msgid "Display type" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:29 -#: admin/woocommerce-admin-taxonomies.php:123 -#@ woocommerce -msgid "Subcategories" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:30 -#: admin/woocommerce-admin-taxonomies.php:124 -#@ woocommerce -msgid "Both" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:64 -#: admin/woocommerce-admin-taxonomies.php:156 -#@ woocommerce -msgid "Use image" -msgstr "" - -#: admin/woocommerce-admin-users.php:29 -#@ woocommerce -msgid "Completed Orders" -msgstr "" - -#: assets/js/admin/editor_plugin_lang.php:5 -#@ woocommerce -msgid "Insert Shortcode" -msgstr "" - -#: assets/js/admin/editor_plugin_lang.php:6 -#@ woocommerce -msgid "Product price/cart button" -msgstr "" - -#: assets/js/admin/editor_plugin_lang.php:7 -#@ woocommerce -msgid "Product by SKU/ID" -msgstr "" - -#: assets/js/admin/editor_plugin_lang.php:8 -#@ woocommerce -msgid "Products by SKU/ID" -msgstr "" - -#: assets/js/admin/editor_plugin_lang.php:10 -#@ woocommerce -msgid "Products by category slug" -msgstr "" - -#: assets/js/admin/editor_plugin_lang.php:11 -#@ woocommerce -msgid "Recent products" -msgstr "" - -#: assets/js/admin/editor_plugin_lang.php:12 -#@ woocommerce -msgid "Featured products" -msgstr "" - -#: assets/js/admin/editor_plugin_lang.php:13 -#@ woocommerce -msgid "Shop Messages" -msgstr "" - -#: assets/js/admin/editor_plugin_lang.php:17 -#@ woocommerce -msgid "Order tracking" -msgstr "" - -#: assets/js/admin/editor_plugin_lang.php:23 -#@ woocommerce -msgid "Thankyou" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:423 -#: classes/emails/class-wc-email-customer-completed-order.php:137 -#: classes/emails/class-wc-email-customer-invoice.php:140 -#: classes/emails/class-wc-email-new-order.php:117 -#@ woocommerce -msgid "Enable this email notification" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:427 -#: classes/emails/class-wc-email-customer-invoice.php:144 -#@ woocommerce -msgid "Email subject" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:429 -#: classes/abstracts/abstract-wc-email.php:436 -#: classes/emails/class-wc-email-customer-completed-order.php:143 -#: classes/emails/class-wc-email-customer-completed-order.php:150 -#: classes/emails/class-wc-email-customer-completed-order.php:157 -#: classes/emails/class-wc-email-customer-completed-order.php:164 -#: classes/emails/class-wc-email-customer-invoice.php:146 -#: classes/emails/class-wc-email-customer-invoice.php:153 -#: classes/emails/class-wc-email-customer-invoice.php:160 -#: classes/emails/class-wc-email-customer-invoice.php:167 -#, php-format -#@ woocommerce -msgid "Defaults to %s" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:434 -#: classes/emails/class-wc-email-customer-invoice.php:151 -#@ woocommerce -msgid "Email heading" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:441 -#: classes/emails/class-wc-email-customer-completed-order.php:169 -#: classes/emails/class-wc-email-customer-invoice.php:172 -#: classes/emails/class-wc-email-new-order.php:142 -#@ woocommerce -msgid "Email type" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:443 -#: classes/emails/class-wc-email-customer-completed-order.php:171 -#: classes/emails/class-wc-email-customer-invoice.php:174 -#: classes/emails/class-wc-email-new-order.php:144 -#@ woocommerce -msgid "Choose which format of email to send." -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:447 -#: classes/emails/class-wc-email-customer-completed-order.php:175 -#: classes/emails/class-wc-email-customer-invoice.php:178 -#: classes/emails/class-wc-email-new-order.php:148 -#@ woocommerce -msgid "Plain text" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:448 -#: classes/emails/class-wc-email-customer-completed-order.php:176 -#: classes/emails/class-wc-email-customer-invoice.php:179 -#: classes/emails/class-wc-email-new-order.php:149 -#@ woocommerce -msgid "HTML" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:449 -#: classes/emails/class-wc-email-customer-completed-order.php:177 -#: classes/emails/class-wc-email-customer-invoice.php:180 -#: classes/emails/class-wc-email-new-order.php:150 -#@ woocommerce -msgid "Multipart" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:485 -#: classes/abstracts/abstract-wc-email.php:506 -#@ woocommerce -msgid "Could not write to template file." -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:533 -#@ woocommerce -msgid "Template file copied to theme." -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:542 -#@ woocommerce -msgid "Template file deleted from theme." -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:562 -#@ woocommerce -msgid "HTML template" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:563 -#@ woocommerce -msgid "Plain text template" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:582 -#@ woocommerce -msgid "Delete template file" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:585 -#, php-format -#@ woocommerce -msgid "This template has been overridden by your theme and can be found in: %s." -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:600 -#@ woocommerce -msgid "Copy file to theme" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:603 -#, php-format -#@ woocommerce -msgid "To override and edit this email template copy %s to your theme folder: %s." -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:614 -#@ woocommerce -msgid "File was not found." -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:639 -#@ woocommerce -msgid "View template" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:640 -#@ woocommerce -msgid "Hide template" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:651 -#@ woocommerce -msgid "Are you sure you want to delete this template file?" -msgstr "" - -#: classes/abstracts/abstract-wc-product.php:33 -#@ woocommerce -msgid "The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class directly." -msgstr "" - -#: classes/class-wc-cart.php:483 -#: classes/class-wc-cart.php:492 -#, php-format -#@ woocommerce -msgid "Sorry, we do not have enough \"%s\" in stock to fulfil your order (%s in stock). Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "" - -#: classes/class-wc-cart.php:527 -#, php-format -#@ woocommerce -msgid "Sorry, we do not have enough \"%s\" in stock to fulfil your order right now. Please try again in %d minutes or edit your cart and try again. We apologise for any inconvenience caused." -msgstr "" - -#: classes/class-wc-cart.php:537 -#, php-format -#@ woocommerce -msgid "Sorry, \"%s\" is not in stock. Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "" - -#: classes/class-wc-cart.php:818 -#, php-format -#@ woocommerce -msgid "Sorry, "%s" cannot be purchased." -msgstr "" - -#: classes/class-wc-cart.php:825 -#, php-format -#@ woocommerce -msgid "You cannot add "%s" to the cart because the product is out of stock." -msgstr "" - -#: classes/class-wc-cart.php:830 -#, php-format -#@ woocommerce -msgid "You cannot add that amount of "%s" to the cart because there is not enough stock (%s remaining)." -msgstr "" - -#: classes/class-wc-countries.php:58 -#@ woocommerce -msgid "Belau" -msgstr "" - -#: classes/class-wc-countries.php:64 -#@ woocommerce -msgid "Bonaire, Saint Eustatius and Saba" -msgstr "" - -#: classes/class-wc-countries.php:67 -#@ woocommerce -msgid "Bouvet Island" -msgstr "" - -#: classes/class-wc-countries.php:94 -#@ woocommerce -msgid "CuraÇao" -msgstr "" - -#: classes/class-wc-countries.php:132 -#@ woocommerce -msgid "Heard Island and McDonald Islands" -msgstr "" - -#: classes/class-wc-countries.php:222 -#@ woocommerce -msgid "Saint Martin (Dutch part)" -msgstr "" - -#: classes/class-wc-countries.php:241 -#@ woocommerce -msgid "South Sudan" -msgstr "" - -#: classes/class-wc-countries.php:766 -#@ woocommerce -msgid "Town / District" -msgstr "" - -#: classes/class-wc-countries.php:920 -#: classes/class-wc-countries.php:921 -#: classes/class-wc-countries.php:996 -#: templates/cart/shipping-calculator.php:68 -#@ woocommerce -msgid "Postcode / Zip" -msgstr "" - -#: classes/class-wc-countries.php:925 -#: classes/class-wc-countries.php:926 -#: classes/class-wc-countries.php:985 -#@ woocommerce -msgid "Town / City" -msgstr "" - -#: classes/class-wc-countries.php:930 -#: classes/class-wc-countries.php:931 -#: classes/class-wc-countries.php:991 -#@ woocommerce -msgid "State / County" -msgstr "" - -#: classes/class-wc-countries.php:976 -#@ woocommerce -msgctxt "placeholder" -msgid "Street address" -msgstr "" - -#: classes/class-wc-countries.php:981 -#@ woocommerce -msgctxt "placeholder" -msgid "Apartment, suite, unit etc. (optional)" -msgstr "" - -#: classes/class-wc-coupon.php:420 -#@ woocommerce -msgid "Coupon code applied successfully." -msgstr "" - -#: classes/class-wc-coupon.php:441 -#@ woocommerce -msgid "Coupon is not valid." -msgstr "" - -#: classes/class-wc-coupon.php:453 -#@ woocommerce -msgid "Coupon code already applied!" -msgstr "" - -#: classes/class-wc-coupon.php:456 -#, php-format -#@ woocommerce -msgid "Sorry, coupon \"%s\" has already been applied and cannot be used in conjunction with other coupons." -msgstr "" - -#: classes/class-wc-coupon.php:468 -#@ woocommerce -msgid "Sorry, this coupon is not applicable to your cart contents." -msgstr "" - -#: classes/class-wc-coupon.php:471 -#@ woocommerce -msgid "Sorry, this coupon is not valid for sale items." -msgstr "" - -#: classes/class-wc-customer.php:628 -#: classes/class-wc-customer.php:638 -#, php-format -#@ woocommerce -msgid "File %d" -msgstr "" - -#: classes/class-wc-order.php:1034 -#: templates/cart/totals.php:145 -#: templates/checkout/review-order.php:151 -#, php-format -#@ woocommerce -msgid "(Includes %s)" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:24 -#@ woocommerce -msgid "Completed order" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:25 -#@ woocommerce -msgid "Order complete emails are sent to the customer when the order is marked complete and usual indicates that the order has been shipped." -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:27 -#@ woocommerce -msgid "Your order is complete" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:28 -#@ woocommerce -msgid "Your {blogname} order from {order_date} is complete" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:37 -#@ woocommerce -msgid "Your order is complete - download your files" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:38 -#@ woocommerce -msgid "Your {blogname} order from {order_date} is complete - download your files" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:141 -#: classes/emails/class-wc-email-new-order.php:128 -#@ woocommerce -msgid "Subject" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:148 -#: classes/emails/class-wc-email-new-order.php:135 -#@ woocommerce -msgid "Email Heading" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:155 -#@ woocommerce -msgid "Subject (downloadable)" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:162 -#@ woocommerce -msgid "Email Heading (downloadable)" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:27 -#@ woocommerce -msgid "Customer invoice" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:28 -#@ woocommerce -msgid "Customer invoice emails can be sent to the user containing order info and payment links." -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:33 -#@ woocommerce -msgid "Invoice for order {order_number} from {order_date}" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:34 -#@ woocommerce -msgid "Invoice for order {order_number}" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:36 -#@ woocommerce -msgid "Your {blogname} order from {order_date}" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:37 -#@ woocommerce -msgid "Order {order_number} details" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:158 -#@ woocommerce -msgid "Email subject (paid)" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:165 -#@ woocommerce -msgid "Email heading (paid)" -msgstr "" - -#: classes/emails/class-wc-email-customer-new-account.php:31 -#@ woocommerce -msgid "New account" -msgstr "" - -#: classes/emails/class-wc-email-customer-new-account.php:32 -#@ woocommerce -msgid "Customer new account emails are sent when a customer signs up via the checkout or My Account page." -msgstr "" - -#: classes/emails/class-wc-email-customer-new-account.php:37 -#@ woocommerce -msgid "Your account on {blogname}" -msgstr "" - -#: classes/emails/class-wc-email-customer-new-account.php:38 -#@ woocommerce -msgid "Welcome to {blogname}" -msgstr "" - -#: classes/emails/class-wc-email-customer-note.php:30 -#@ woocommerce -msgid "Customer note emails are sent when you add a note to an order." -msgstr "" - -#: classes/emails/class-wc-email-customer-note.php:35 -#@ woocommerce -msgid "Note added to your {blogname} order from {order_date}" -msgstr "" - -#: classes/emails/class-wc-email-customer-processing-order.php:24 -#@ woocommerce -msgid "Processing order" -msgstr "" - -#: classes/emails/class-wc-email-customer-processing-order.php:25 -#@ woocommerce -msgid "This is an order notification sent to the customer after payment containing order details." -msgstr "" - -#: classes/emails/class-wc-email-customer-processing-order.php:27 -#@ woocommerce -msgid "Thank you for your order" -msgstr "" - -#: classes/emails/class-wc-email-customer-processing-order.php:28 -#@ woocommerce -msgid "Your {blogname} order receipt from {order_date}" -msgstr "" - -#: classes/emails/class-wc-email-customer-reset-password.php:36 -#@ woocommerce -msgid "Reset password" -msgstr "" - -#: classes/emails/class-wc-email-customer-reset-password.php:37 -#@ woocommerce -msgid "Customer reset password emails are sent when a customer resets their password." -msgstr "" - -#: classes/emails/class-wc-email-customer-reset-password.php:42 -#@ woocommerce -msgid "Password Reset for {blogname}" -msgstr "" - -#: classes/emails/class-wc-email-customer-reset-password.php:43 -#@ woocommerce -msgid "Password Reset Instructions" -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:24 -#@ woocommerce -msgid "New order" -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:25 -#@ woocommerce -msgid "New order emails are sent when an order is received/paid by a customer." -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:27 -#@ woocommerce -msgid "New customer order" -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:28 -#@ woocommerce -msgid "[{blogname}] New customer order ({order_number}) - {order_date}" -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:121 -#@ woocommerce -msgid "Recipient(s)" -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:123 -#, php-format -#@ woocommerce -msgid "Enter recipients (comma separated) for this email. Defaults to %s." -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:130 -#, php-format -#@ woocommerce -msgid "This controls the email subject line. Leave blank to use the default subject: %s." -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:137 -#, php-format -#@ woocommerce -msgid "This controls the main heading contained within the email notification. Leave blank to use the default heading: %s." -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:97 -#: classes/gateways/cod/class-wc-gateway-cod.php:103 -#@ woocommerce -msgid "Pay with cash upon delivery." -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:106 -#@ woocommerce -msgid "Enable for shipping methods" -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:111 -#@ woocommerce -msgid "If COD is only available for certain methods, set it up here. Leave blank to enable for all methods." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:148 -#@ woocommerce -msgid "Please enter a prefix for your invoice numbers. If you use your PayPal account for multiple stores ensure this prefix is unique as PayPal will not allow orders with the same invoice number." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:165 -#@ woocommerce -msgid "Optional" -msgstr "" - -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:23 -#@ woocommerce -msgid "Increase your social media exposure by 10 percent! ShareYourCart helps you get more customers by motivating satisfied customers to talk with their friends about your products. For help with ShareYourCart view the documentation." -msgstr "" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:328 -#@ default -msgid "Share your cart settings" -msgstr "" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:342 -#@ default -msgid "Button" -msgstr "" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:343 -#@ default -msgid "Customize Button" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:96 -#@ woocommerce -msgid "Enter a cost (excluding tax) per order, e.g. 5.00. Leave blank to disable." -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:176 -#@ woocommerce -msgid "Option Name|Cost|Per-order (yes or no)" -msgstr "" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:106 -#@ woocommerce -msgid "Free Shipping Requires..." -msgstr "" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:111 -#@ woocommerce -msgid "A valid free shipping coupon" -msgstr "" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:112 -#@ woocommerce -msgid "A minimum order amount (defined below)" -msgstr "" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:113 -#@ woocommerce -msgid "A minimum order amount OR a coupon" -msgstr "" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:114 -#@ woocommerce -msgid "A minimum order amount AND a coupon" -msgstr "" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:124 -#@ woocommerce -msgid "Users will need to spend this amount to get free shipping (if enabled above)." -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:137 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:93 -#@ woocommerce -msgid "What zip/post codes would you like to offer delivery to? Separate codes with a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -msgstr "" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:117 -#@ woocommerce -msgid "Apply base tax rate" -msgstr "" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:119 -#@ woocommerce -msgid "When this shipping method is chosen, apply the base tax rate rather than for the customer's given address." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:95 -#@ woocommerce -msgid "Your password has been reset." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:95 -#@ woocommerce -msgid "Log in" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:116 -#@ woocommerce -msgid "Enter a username or e-mail address." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:123 -#@ woocommerce -msgid "There is no user registered with that email address." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:138 -#@ woocommerce -msgid "Invalid username or e-mail." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:152 -#@ default -msgid "Password reset is not allowed for this user" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:180 -#@ default -msgid "Check your e-mail for the confirmation link." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:200 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:205 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:212 -#@ woocommerce -msgid "Invalid key" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:69 -#@ woocommerce -msgid "l jS \\of F Y, h:ia" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:31 -#@ woocommerce -msgid "Shows active layered nav filters so users can see and deactivate them." -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:33 -#@ woocommerce -msgid "WooCommerce Layered Nav Filters" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:62 -#@ woocommerce -msgid "Active filters" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:93 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -#@ woocommerce -msgid "Remove filter" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#@ woocommerce -msgid "Min" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -#@ woocommerce -msgid "Max" -msgstr "" - -#: i18n/states/CN.php:13 -#@ woocommerce -msgid "Yunnan / 云南" -msgstr "" - -#: i18n/states/CN.php:14 -#@ woocommerce -msgid "Beijing / 北京" -msgstr "" - -#: i18n/states/CN.php:15 -#@ woocommerce -msgid "Tianjin / 天津" -msgstr "" - -#: i18n/states/CN.php:16 -#@ woocommerce -msgid "Hebei / 河北" -msgstr "" - -#: i18n/states/CN.php:17 -#@ woocommerce -msgid "Shanxi / 山西" -msgstr "" - -#: i18n/states/CN.php:18 -#@ woocommerce -msgid "Inner Mongolia / 內蒙古" -msgstr "" - -#: i18n/states/CN.php:19 -#@ woocommerce -msgid "Liaoning / 辽宁" -msgstr "" - -#: i18n/states/CN.php:20 -#@ woocommerce -msgid "Jilin / 吉林" -msgstr "" - -#: i18n/states/CN.php:21 -#@ woocommerce -msgid "Heilongjiang / 黑龙江" -msgstr "" - -#: i18n/states/CN.php:22 -#@ woocommerce -msgid "Shanghai / 上海" -msgstr "" - -#: i18n/states/CN.php:23 -#@ woocommerce -msgid "Jiangsu / 江苏" -msgstr "" - -#: i18n/states/CN.php:24 -#@ woocommerce -msgid "Zhejiang / 浙江" -msgstr "" - -#: i18n/states/CN.php:25 -#@ woocommerce -msgid "Anhui / 安徽" -msgstr "" - -#: i18n/states/CN.php:26 -#@ woocommerce -msgid "Fujian / 福建" -msgstr "" - -#: i18n/states/CN.php:27 -#@ woocommerce -msgid "Jiangxi / 江西" -msgstr "" - -#: i18n/states/CN.php:28 -#@ woocommerce -msgid "Shandong / 山东" -msgstr "" - -#: i18n/states/CN.php:29 -#@ woocommerce -msgid "Henan / 河南" -msgstr "" - -#: i18n/states/CN.php:30 -#@ woocommerce -msgid "Hubei / 湖北" -msgstr "" - -#: i18n/states/CN.php:31 -#@ woocommerce -msgid "Hunan / 湖南" -msgstr "" - -#: i18n/states/CN.php:32 -#@ woocommerce -msgid "Guangdong / 广东" -msgstr "" - -#: i18n/states/CN.php:33 -#@ woocommerce -msgid "Guangxi Zhuang / 广西壮族" -msgstr "" - -#: i18n/states/CN.php:34 -#@ woocommerce -msgid "Hainan / 海南" -msgstr "" - -#: i18n/states/CN.php:35 -#@ woocommerce -msgid "Chongqing / 重庆" -msgstr "" - -#: i18n/states/CN.php:36 -#@ woocommerce -msgid "Sichuan / 四川" -msgstr "" - -#: i18n/states/CN.php:37 -#@ woocommerce -msgid "Guizhou / 贵州" -msgstr "" - -#: i18n/states/CN.php:38 -#@ woocommerce -msgid "Shaanxi / 陕西" -msgstr "" - -#: i18n/states/CN.php:39 -#@ woocommerce -msgid "Gansu / 甘肃" -msgstr "" - -#: i18n/states/CN.php:40 -#@ woocommerce -msgid "Qinghai / 青海" -msgstr "" - -#: i18n/states/CN.php:41 -#@ woocommerce -msgid "Ningxia Hui / 宁夏" -msgstr "" - -#: i18n/states/CN.php:42 -#@ woocommerce -msgid "Macau / 澳门" -msgstr "" - -#: i18n/states/CN.php:43 -#@ woocommerce -msgid "Tibet / 西藏" -msgstr "" - -#: i18n/states/CN.php:44 -#@ woocommerce -msgid "Xinjiang / 新疆" -msgstr "" - -#: i18n/states/HU.php:13 -#@ woocommerce -msgid "Bács-Kiskun" -msgstr "" - -#: i18n/states/HU.php:14 -#@ woocommerce -msgid "Békés" -msgstr "" - -#: i18n/states/HU.php:15 -#@ woocommerce -msgid "Baranya" -msgstr "" - -#: i18n/states/HU.php:16 -#@ woocommerce -msgid "Borsod-Abaúj-Zemplén" -msgstr "" - -#: i18n/states/HU.php:17 -#@ woocommerce -msgid "Budapest" -msgstr "" - -#: i18n/states/HU.php:18 -#@ woocommerce -msgid "Csongrád" -msgstr "" - -#: i18n/states/HU.php:19 -#@ woocommerce -msgid "Fejér" -msgstr "" - -#: i18n/states/HU.php:20 -#@ woocommerce -msgid "Győr-Moson-Sopron" -msgstr "" - -#: i18n/states/HU.php:21 -#@ woocommerce -msgid "Hajdú-Bihar" -msgstr "" - -#: i18n/states/HU.php:22 -#@ woocommerce -msgid "Heves" -msgstr "" - -#: i18n/states/HU.php:23 -#@ woocommerce -msgid "Jász-Nagykun-Szolnok" -msgstr "" - -#: i18n/states/HU.php:24 -#@ woocommerce -msgid "Komárom-Esztergom" -msgstr "" - -#: i18n/states/HU.php:25 -#@ woocommerce -msgid "Nógrád" -msgstr "" - -#: i18n/states/HU.php:26 -#@ woocommerce -msgid "Pest" -msgstr "" - -#: i18n/states/HU.php:27 -#@ woocommerce -msgid "Somogy" -msgstr "" - -#: i18n/states/HU.php:28 -#@ woocommerce -msgid "Szabolcs-Szatmár-Bereg" -msgstr "" - -#: i18n/states/HU.php:29 -#@ woocommerce -msgid "Tolna" -msgstr "" - -#: i18n/states/HU.php:30 -#@ woocommerce -msgid "Vas" -msgstr "" - -#: i18n/states/HU.php:31 -#@ woocommerce -msgid "Veszprém" -msgstr "" - -#: i18n/states/HU.php:32 -#@ woocommerce -msgid "Zala" -msgstr "" - -#: i18n/states/ID.php:13 -#@ woocommerce -msgid "Daerah Istimewa Aceh" -msgstr "" - -#: i18n/states/ID.php:14 -#@ woocommerce -msgid "Sumatera Utara" -msgstr "" - -#: i18n/states/ID.php:15 -#@ woocommerce -msgid "Sumatera Barat" -msgstr "" - -#: i18n/states/ID.php:16 -#@ woocommerce -msgid "Riau" -msgstr "" - -#: i18n/states/ID.php:17 -#@ woocommerce -msgid "Kepulauan Riau" -msgstr "" - -#: i18n/states/ID.php:18 -#@ woocommerce -msgid "Jambi" -msgstr "" - -#: i18n/states/ID.php:19 -#@ woocommerce -msgid "Sumatera Selatan" -msgstr "" - -#: i18n/states/ID.php:20 -#@ woocommerce -msgid "Bangka Belitung" -msgstr "" - -#: i18n/states/ID.php:21 -#@ woocommerce -msgid "Bengkulu" -msgstr "" - -#: i18n/states/ID.php:22 -#@ woocommerce -msgid "Lampung" -msgstr "" - -#: i18n/states/ID.php:23 -#@ woocommerce -msgid "DKI Jakarta" -msgstr "" - -#: i18n/states/ID.php:24 -#@ woocommerce -msgid "Jawa Barat" -msgstr "" - -#: i18n/states/ID.php:25 -#@ woocommerce -msgid "Banten" -msgstr "" - -#: i18n/states/ID.php:26 -#@ woocommerce -msgid "Jawa Tengah" -msgstr "" - -#: i18n/states/ID.php:27 -#@ woocommerce -msgid "Jawa Timur" -msgstr "" - -#: i18n/states/ID.php:28 -#@ woocommerce -msgid "Daerah Istimewa Yogyakarta" -msgstr "" - -#: i18n/states/ID.php:29 -#@ woocommerce -msgid "Bali" -msgstr "" - -#: i18n/states/ID.php:30 -#@ woocommerce -msgid "Nusa Tenggara Barat" -msgstr "" - -#: i18n/states/ID.php:31 -#@ woocommerce -msgid "Nusa Tenggara Timur" -msgstr "" - -#: i18n/states/ID.php:32 -#@ woocommerce -msgid "Kalimantan Barat" -msgstr "" - -#: i18n/states/ID.php:33 -#@ woocommerce -msgid "Kalimantan Tengah" -msgstr "" - -#: i18n/states/ID.php:34 -#@ woocommerce -msgid "Kalimantan Timur" -msgstr "" - -#: i18n/states/ID.php:35 -#@ woocommerce -msgid "Kalimantan Selatan" -msgstr "" - -#: i18n/states/ID.php:36 -#@ woocommerce -msgid "Kalimantan Utara" -msgstr "" - -#: i18n/states/ID.php:37 -#@ woocommerce -msgid "Sulawesi Utara" -msgstr "" - -#: i18n/states/ID.php:38 -#@ woocommerce -msgid "Sulawesi Tengah" -msgstr "" - -#: i18n/states/ID.php:39 -#@ woocommerce -msgid "Sulawesi Tenggara" -msgstr "" - -#: i18n/states/ID.php:40 -#@ woocommerce -msgid "Sulawesi Barat" -msgstr "" - -#: i18n/states/ID.php:41 -#@ woocommerce -msgid "Sulawesi Selatan" -msgstr "" - -#: i18n/states/ID.php:42 -#@ woocommerce -msgid "Gorontalo" -msgstr "" - -#: i18n/states/ID.php:43 -#@ woocommerce -msgid "Maluku" -msgstr "" - -#: i18n/states/ID.php:44 -#@ woocommerce -msgid "Maluku Utara" -msgstr "" - -#: i18n/states/ID.php:45 -#@ woocommerce -msgid "Papua" -msgstr "" - -#: i18n/states/ID.php:46 -#@ woocommerce -msgid "Papua Barat" -msgstr "" - -#: i18n/states/IN.php:13 -#@ woocommerce -msgid "Andra Pradesh" -msgstr "" - -#: i18n/states/IN.php:14 -#@ woocommerce -msgid "Arunachal Pradesh" -msgstr "" - -#: i18n/states/IN.php:15 -#@ woocommerce -msgid "Assam" -msgstr "" - -#: i18n/states/IN.php:16 -#@ woocommerce -msgid "Bihar" -msgstr "" - -#: i18n/states/IN.php:17 -#@ woocommerce -msgid "Chhattisgarh" -msgstr "" - -#: i18n/states/IN.php:18 -#@ woocommerce -msgid "Goa" -msgstr "" - -#: i18n/states/IN.php:19 -#@ woocommerce -msgid "Gujarat" -msgstr "" - -#: i18n/states/IN.php:20 -#@ woocommerce -msgid "Haryana" -msgstr "" - -#: i18n/states/IN.php:21 -#@ woocommerce -msgid "Himachal Pradesh" -msgstr "" - -#: i18n/states/IN.php:22 -#@ woocommerce -msgid "Jammu and Kashmir" -msgstr "" - -#: i18n/states/IN.php:23 -#@ woocommerce -msgid "Jharkhand" -msgstr "" - -#: i18n/states/IN.php:24 -#@ woocommerce -msgid "Karnataka" -msgstr "" - -#: i18n/states/IN.php:25 -#@ woocommerce -msgid "Kerala" -msgstr "" - -#: i18n/states/IN.php:26 -#@ woocommerce -msgid "Madhya Pradesh" -msgstr "" - -#: i18n/states/IN.php:27 -#@ woocommerce -msgid "Maharashtra" -msgstr "" - -#: i18n/states/IN.php:28 -#@ woocommerce -msgid "Manipur" -msgstr "" - -#: i18n/states/IN.php:29 -#@ woocommerce -msgid "Meghalaya" -msgstr "" - -#: i18n/states/IN.php:30 -#@ woocommerce -msgid "Mizoram" -msgstr "" - -#: i18n/states/IN.php:31 -#@ woocommerce -msgid "Nagaland" -msgstr "" - -#: i18n/states/IN.php:32 -#@ woocommerce -msgid "Orissa" -msgstr "" - -#: i18n/states/IN.php:33 -#@ woocommerce -msgid "Punjab" -msgstr "" - -#: i18n/states/IN.php:34 -#@ woocommerce -msgid "Rajasthan" -msgstr "" - -#: i18n/states/IN.php:35 -#@ woocommerce -msgid "Sikkim" -msgstr "" - -#: i18n/states/IN.php:36 -#@ woocommerce -msgid "Tamil Nadu" -msgstr "" - -#: i18n/states/IN.php:37 -#@ woocommerce -msgid "Tripura" -msgstr "" - -#: i18n/states/IN.php:38 -#@ woocommerce -msgid "Uttaranchal" -msgstr "" - -#: i18n/states/IN.php:39 -#@ woocommerce -msgid "Uttar Pradesh" -msgstr "" - -#: i18n/states/IN.php:40 -#@ woocommerce -msgid "West Bengal" -msgstr "" - -#: i18n/states/IN.php:41 -#@ woocommerce -msgid "Andaman and Nicobar Islands" -msgstr "" - -#: i18n/states/IN.php:42 -#@ woocommerce -msgid "Chandigarh" -msgstr "" - -#: i18n/states/IN.php:43 -#@ woocommerce -msgid "Dadar and Nagar Haveli" -msgstr "" - -#: i18n/states/IN.php:44 -#@ woocommerce -msgid "Daman and Diu" -msgstr "" - -#: i18n/states/IN.php:45 -#@ woocommerce -msgid "Delhi" -msgstr "" - -#: i18n/states/IN.php:46 -#@ woocommerce -msgid "Lakshadeep" -msgstr "" - -#: i18n/states/IN.php:47 -#@ woocommerce -msgid "Pondicherry (Puducherry)" -msgstr "" - -#: i18n/states/MY.php:13 -#@ woocommerce -msgid "Johor" -msgstr "" - -#: i18n/states/MY.php:14 -#@ woocommerce -msgid "Kedah" -msgstr "" - -#: i18n/states/MY.php:15 -#@ woocommerce -msgid "Kelantan" -msgstr "" - -#: i18n/states/MY.php:16 -#@ woocommerce -msgid "Melaka" -msgstr "" - -#: i18n/states/MY.php:17 -#@ woocommerce -msgid "Negeri Sembilan" -msgstr "" - -#: i18n/states/MY.php:18 -#@ woocommerce -msgid "Pahang" -msgstr "" - -#: i18n/states/MY.php:19 -#@ woocommerce -msgid "Perak" -msgstr "" - -#: i18n/states/MY.php:20 -#@ woocommerce -msgid "Perlis" -msgstr "" - -#: i18n/states/MY.php:21 -#@ woocommerce -msgid "Pulau Pinang" -msgstr "" - -#: i18n/states/MY.php:22 -#@ woocommerce -msgid "Sabah" -msgstr "" - -#: i18n/states/MY.php:23 -#@ woocommerce -msgid "Sarawak" -msgstr "" - -#: i18n/states/MY.php:24 -#@ woocommerce -msgid "Selangor" -msgstr "" - -#: i18n/states/MY.php:25 -#@ woocommerce -msgid "Terengganu" -msgstr "" - -#: i18n/states/MY.php:26 -#@ woocommerce -msgid "W.P. Kuala Lumpur" -msgstr "" - -#: i18n/states/MY.php:27 -#@ woocommerce -msgid "W.P. Labuan" -msgstr "" - -#: i18n/states/MY.php:28 -#@ woocommerce -msgid "W.P. Putrajaya" -msgstr "" - -#: i18n/states/TH.php:13 -#@ woocommerce -msgid "Amnat Charoen (อำนาจเจริญ)" -msgstr "" - -#: i18n/states/TH.php:14 -#@ woocommerce -msgid "Ang Thong (อ่างทอง)" -msgstr "" - -#: i18n/states/TH.php:15 -#@ woocommerce -msgid "Ayutthaya (พระนครศรีอยุธยา)" -msgstr "" - -#: i18n/states/TH.php:16 -#@ woocommerce -msgid "Bangkok (กรุงเทพมหานคร)" -msgstr "" - -#: i18n/states/TH.php:17 -#@ woocommerce -msgid "Bueng Kan (บึงกาฬ)" -msgstr "" - -#: i18n/states/TH.php:18 -#@ woocommerce -msgid "Buri Ram (บุรีรัมย์)" -msgstr "" - -#: i18n/states/TH.php:19 -#@ woocommerce -msgid "Chachoengsao (ฉะเชิงเทรา)" -msgstr "" - -#: i18n/states/TH.php:20 -#@ woocommerce -msgid "Chai Nat (ชัยนาท)" -msgstr "" - -#: i18n/states/TH.php:21 -#@ woocommerce -msgid "Chaiyaphum (ชัยภูมิ)" -msgstr "" - -#: i18n/states/TH.php:22 -#@ woocommerce -msgid "Chanthaburi (จันทบุรี)" -msgstr "" - -#: i18n/states/TH.php:23 -#@ woocommerce -msgid "Chiang Mai (เชียงใหม่)" -msgstr "" - -#: i18n/states/TH.php:24 -#@ woocommerce -msgid "Chiang Rai (เชียงราย)" -msgstr "" - -#: i18n/states/TH.php:25 -#@ woocommerce -msgid "Chonburi (ชลบุรี)" -msgstr "" - -#: i18n/states/TH.php:26 -#@ woocommerce -msgid "Chumphon (ชุมพร)" -msgstr "" - -#: i18n/states/TH.php:27 -#@ woocommerce -msgid "Kalasin (กาฬสินธุ์)" -msgstr "" - -#: i18n/states/TH.php:28 -#@ woocommerce -msgid "Kamphaeng Phet (กำแพงเพชร)" -msgstr "" - -#: i18n/states/TH.php:29 -#@ woocommerce -msgid "Kanchanaburi (กาญจนบุรี)" -msgstr "" - -#: i18n/states/TH.php:30 -#@ woocommerce -msgid "Khon Kaen (ขอนแก่น)" -msgstr "" - -#: i18n/states/TH.php:31 -#@ woocommerce -msgid "Krabi (กระบี่)" -msgstr "" - -#: i18n/states/TH.php:32 -#@ woocommerce -msgid "Lampang (ลำปาง)" -msgstr "" - -#: i18n/states/TH.php:33 -#@ woocommerce -msgid "Lamphun (ลำพูน)" -msgstr "" - -#: i18n/states/TH.php:34 -#@ woocommerce -msgid "Loei (เลย)" -msgstr "" - -#: i18n/states/TH.php:35 -#@ woocommerce -msgid "Lopburi (ลพบุรี)" -msgstr "" - -#: i18n/states/TH.php:36 -#@ woocommerce -msgid "Mae Hong Son (แม่ฮ่องสอน)" -msgstr "" - -#: i18n/states/TH.php:37 -#@ woocommerce -msgid "Maha Sarakham (มหาสารคาม)" -msgstr "" - -#: i18n/states/TH.php:38 -#@ woocommerce -msgid "Mukdahan (มุกดาหาร)" -msgstr "" - -#: i18n/states/TH.php:39 -#@ woocommerce -msgid "Nakhon Nayok (นครนายก)" -msgstr "" - -#: i18n/states/TH.php:40 -#@ woocommerce -msgid "Nakhon Pathom (นครปฐม)" -msgstr "" - -#: i18n/states/TH.php:41 -#@ woocommerce -msgid "Nakhon Phanom (นครพนม)" -msgstr "" - -#: i18n/states/TH.php:42 -#@ woocommerce -msgid "Nakhon Ratchasima (นครราชสีมา)" -msgstr "" - -#: i18n/states/TH.php:43 -#@ woocommerce -msgid "Nakhon Sawan (นครสวรรค์)" -msgstr "" - -#: i18n/states/TH.php:44 -#@ woocommerce -msgid "Nakhon Si Thammarat (นครศรีธรรมราช)" -msgstr "" - -#: i18n/states/TH.php:45 -#@ woocommerce -msgid "Nan (น่าน)" -msgstr "" - -#: i18n/states/TH.php:46 -#@ woocommerce -msgid "Narathiwat (นราธิวาส)" -msgstr "" - -#: i18n/states/TH.php:47 -#@ woocommerce -msgid "Nong Bua Lam Phu (หนองบัวลำภู)" -msgstr "" - -#: i18n/states/TH.php:48 -#@ woocommerce -msgid "Nong Khai (หนองคาย)" -msgstr "" - -#: i18n/states/TH.php:49 -#@ woocommerce -msgid "Nonthaburi (นนทบุรี)" -msgstr "" - -#: i18n/states/TH.php:50 -#@ woocommerce -msgid "Pathum Thani (ปทุมธานี)" -msgstr "" - -#: i18n/states/TH.php:51 -#@ woocommerce -msgid "Pattani (ปัตตานี)" -msgstr "" - -#: i18n/states/TH.php:52 -#@ woocommerce -msgid "Phang Nga (พังงา)" -msgstr "" - -#: i18n/states/TH.php:53 -#@ woocommerce -msgid "Phatthalung (พัทลุง)" -msgstr "" - -#: i18n/states/TH.php:54 -#@ woocommerce -msgid "Phayao (พะเยา)" -msgstr "" - -#: i18n/states/TH.php:55 -#@ woocommerce -msgid "Phetchabun (เพชรบูรณ์)" -msgstr "" - -#: i18n/states/TH.php:56 -#@ woocommerce -msgid "Phetchaburi (เพชรบุรี)" -msgstr "" - -#: i18n/states/TH.php:57 -#@ woocommerce -msgid "Phichit (พิจิตร)" -msgstr "" - -#: i18n/states/TH.php:58 -#@ woocommerce -msgid "Phitsanulok (พิษณุโลก)" -msgstr "" - -#: i18n/states/TH.php:59 -#@ woocommerce -msgid "Phrae (แพร่)" -msgstr "" - -#: i18n/states/TH.php:60 -#@ woocommerce -msgid "Phuket (ภูเก็ต)" -msgstr "" - -#: i18n/states/TH.php:61 -#@ woocommerce -msgid "Prachin Buri (ปราจีนบุรี)" -msgstr "" - -#: i18n/states/TH.php:62 -#@ woocommerce -msgid "Prachuap Khiri Khan (ประจวบคีรีขันธ์)" -msgstr "" - -#: i18n/states/TH.php:63 -#@ woocommerce -msgid "Ranong (ระนอง)" -msgstr "" - -#: i18n/states/TH.php:64 -#@ woocommerce -msgid "Ratchaburi (ราชบุรี)" -msgstr "" - -#: i18n/states/TH.php:65 -#@ woocommerce -msgid "Rayong (ระยอง)" -msgstr "" - -#: i18n/states/TH.php:66 -#@ woocommerce -msgid "Roi Et (ร้อยเอ็ด)" -msgstr "" - -#: i18n/states/TH.php:67 -#@ woocommerce -msgid "Sa Kaeo (สระแก้ว)" -msgstr "" - -#: i18n/states/TH.php:68 -#@ woocommerce -msgid "Sakon Nakhon (สกลนคร)" -msgstr "" - -#: i18n/states/TH.php:69 -#@ woocommerce -msgid "Samut Prakan (สมุทรปราการ)" -msgstr "" - -#: i18n/states/TH.php:70 -#@ woocommerce -msgid "Samut Sakhon (สมุทรสาคร)" -msgstr "" - -#: i18n/states/TH.php:71 -#@ woocommerce -msgid "Samut Songkhram (สมุทรสงคราม)" -msgstr "" - -#: i18n/states/TH.php:72 -#@ woocommerce -msgid "Saraburi (สระบุรี)" -msgstr "" - -#: i18n/states/TH.php:73 -#@ woocommerce -msgid "Satun (สตูล)" -msgstr "" - -#: i18n/states/TH.php:74 -#@ woocommerce -msgid "Sing Buri (สิงห์บุรี)" -msgstr "" - -#: i18n/states/TH.php:75 -#@ woocommerce -msgid "Sisaket (ศรีสะเกษ)" -msgstr "" - -#: i18n/states/TH.php:76 -#@ woocommerce -msgid "Songkhla (สงขลา)" -msgstr "" - -#: i18n/states/TH.php:77 -#@ woocommerce -msgid "Sukhothai (สุโขทัย)" -msgstr "" - -#: i18n/states/TH.php:78 -#@ woocommerce -msgid "Suphan Buri (สุพรรณบุรี)" -msgstr "" - -#: i18n/states/TH.php:79 -#@ woocommerce -msgid "Surat Thani (สุราษฎร์ธานี)" -msgstr "" - -#: i18n/states/TH.php:80 -#@ woocommerce -msgid "Surin (สุรินทร์)" -msgstr "" - -#: i18n/states/TH.php:81 -#@ woocommerce -msgid "Tak (ตาก)" -msgstr "" - -#: i18n/states/TH.php:82 -#@ woocommerce -msgid "Trang (ตรัง)" -msgstr "" - -#: i18n/states/TH.php:83 -#@ woocommerce -msgid "Trat (ตราด)" -msgstr "" - -#: i18n/states/TH.php:84 -#@ woocommerce -msgid "Ubon Ratchathani (อุบลราชธานี)" -msgstr "" - -#: i18n/states/TH.php:85 -#@ woocommerce -msgid "Udon Thani (อุดรธานี)" -msgstr "" - -#: i18n/states/TH.php:86 -#@ woocommerce -msgid "Uthai Thani (อุทัยธานี)" -msgstr "" - -#: i18n/states/TH.php:87 -#@ woocommerce -msgid "Uttaradit (อุตรดิตถ์)" -msgstr "" - -#: i18n/states/TH.php:88 -#@ woocommerce -msgid "Yala (ยะลา)" -msgstr "" - -#: i18n/states/TH.php:89 -#@ woocommerce -msgid "Yasothon (ยโสธร)" -msgstr "" - -#: i18n/states/US.php:64 -#@ woocommerce -msgid "Armed Forces (AA)" -msgstr "" - -#: i18n/states/US.php:65 -#@ woocommerce -msgid "Armed Forces (AE)" -msgstr "" - -#: i18n/states/US.php:66 -#@ woocommerce -msgid "Armed Forces (AP)" -msgstr "" - -#: i18n/states/US.php:72 -#@ woocommerce -msgid "US Virgin Islands" -msgstr "" - -#: i18n/states/ZA.php:13 -#@ woocommerce -msgid "Eastern Cape" -msgstr "" - -#: i18n/states/ZA.php:14 -#@ woocommerce -msgid "Free State" -msgstr "" - -#: i18n/states/ZA.php:15 -#@ woocommerce -msgid "Gauteng" -msgstr "" - -#: i18n/states/ZA.php:16 -#@ woocommerce -msgid "KwaZulu-Natal" -msgstr "" - -#: i18n/states/ZA.php:17 -#@ woocommerce -msgid "Limpopo" -msgstr "" - -#: i18n/states/ZA.php:18 -#@ woocommerce -msgid "Mpumalanga" -msgstr "" - -#: i18n/states/ZA.php:19 -#@ woocommerce -msgid "Northern Cape" -msgstr "" - -#: i18n/states/ZA.php:20 -#@ woocommerce -msgid "North West" -msgstr "" - -#: i18n/states/ZA.php:21 -#@ woocommerce -msgid "Western Cape" -msgstr "" - -#: templates/cart/cart.php:100 -#: templates/single-product/add-to-cart/quantity.php:13 -#@ woocommerce -msgctxt "Product quantity input tooltip" -msgid "Qty" -msgstr "" - -#: templates/cart/shipping-calculator.php:42 -#: templates/cart/shipping-calculator.php:50 -#: templates/cart/shipping-calculator.php:61 -#@ woocommerce -msgid "State / county" -msgstr "" - -#: templates/cart/shipping-methods.php:32 -#@ woocommerce -msgid "Free" -msgstr "" - -#: templates/cart/totals.php:161 -#, php-format -#@ woocommerce -msgid " (taxes estimated for %s)" -msgstr "" - -#: templates/cart/totals.php:175 -#@ woocommerce -msgid "No shipping methods were found; please recalculate your shipping and enter your state/county and zip/postcode to ensure there are no other available methods for your location." -msgstr "" - -#: templates/checkout/form-login.php:14 -#@ woocommerce -msgid "Returning customer?" -msgstr "" - -#: templates/checkout/review-order.php:238 -#@ woocommerce -msgid "I have read and accept the" -msgstr "" - -#: templates/emails/admin-new-order.php:13 -#: templates/emails/plain/admin-new-order.php:13 -#, php-format -#@ woocommerce -msgid "You have received an order from %s. Their order is as follows:" -msgstr "" - -#: templates/emails/admin-new-order.php:17 -#, php-format -#@ woocommerce -msgid "Order: %s" -msgstr "" - -#: templates/emails/customer-completed-order.php:14 -#: templates/emails/plain/customer-completed-order.php:13 -#, php-format -#@ woocommerce -msgid "Hi there. Your recent order on %s has been completed. Your order details are shown below for your reference:" -msgstr "" - -#: templates/emails/customer-invoice.php:16 -#: templates/emails/plain/customer-invoice.php:14 -#, php-format -#@ woocommerce -msgid "An order has been created for you on %s. To pay for this order please use the following link: %s" -msgstr "" - -#: templates/emails/customer-invoice.php:16 -#@ woocommerce -msgid "pay" -msgstr "" - -#: templates/emails/customer-processing-order.php:14 -#: templates/emails/plain/customer-processing-order.php:13 -#@ woocommerce -msgid "Your order has been received and is now being processed. Your order details are shown below for your reference:" -msgstr "" - -#: templates/emails/customer-reset-password.php:14 -#: templates/emails/plain/customer-reset-password.php:13 -#@ woocommerce -msgid "Someone requested that the password be reset for the following account:" -msgstr "" - -#: templates/emails/customer-reset-password.php:15 -#: templates/emails/plain/customer-reset-password.php:15 -#, php-format -#@ woocommerce -msgid "Username: %s" -msgstr "" - -#: templates/emails/customer-reset-password.php:16 -#: templates/emails/plain/customer-reset-password.php:16 -#@ woocommerce -msgid "If this was a mistake, just ignore this email and nothing will happen." -msgstr "" - -#: templates/emails/customer-reset-password.php:17 -#: templates/emails/plain/customer-reset-password.php:17 -#@ woocommerce -msgid "To reset your password, visit the following address:" -msgstr "" - -#: templates/emails/customer-reset-password.php:20 -#@ woocommerce -msgid "Click here to reset your password" -msgstr "" - -#: templates/emails/email-order-items.php:40 -#, php-format -#@ woocommerce -msgid "Download %d:" -msgstr "" - -#: templates/emails/plain/admin-new-order.php:19 -#: templates/emails/plain/customer-completed-order.php:19 -#: templates/emails/plain/customer-invoice.php:20 -#: templates/emails/plain/customer-note.php:27 -#: templates/emails/plain/customer-processing-order.php:19 -#, php-format -#@ woocommerce -msgid "Order number: %s" -msgstr "" - -#: templates/emails/plain/admin-new-order.php:20 -#: templates/emails/plain/customer-completed-order.php:20 -#: templates/emails/plain/customer-invoice.php:21 -#: templates/emails/plain/customer-note.php:28 -#: templates/emails/plain/customer-processing-order.php:20 -#, php-format -#@ woocommerce -msgid "Order date: %s" -msgstr "" - -#: templates/emails/plain/customer-completed-order.php:38 -#: templates/emails/plain/customer-note.php:46 -#: templates/emails/plain/customer-processing-order.php:38 -#@ woocommerce -msgid "Your details" -msgstr "" - -#: templates/emails/plain/email-order-items.php:28 -#, php-format -#@ woocommerce -msgid "Quantity: %s" -msgstr "" - -#: templates/emails/plain/email-order-items.php:31 -#, php-format -#@ woocommerce -msgid "Cost: %s" -msgstr "" - -#: templates/loop/orderby.php:22 -#@ woocommerce -msgid "Sort by popularity" -msgstr "" - -#: templates/loop/orderby.php:23 -#@ woocommerce -msgid "Sort by average rating" -msgstr "" - -#: templates/loop/orderby.php:24 -#@ woocommerce -msgid "Sort by newness" -msgstr "" - -#: templates/loop/orderby.php:25 -#@ woocommerce -msgid "Sort by price: low to high" -msgstr "" - -#: templates/loop/orderby.php:26 -#@ woocommerce -msgid "Sort by price: high to low" -msgstr "" - -#: templates/loop/result-count.php:28 -#@ woocommerce -msgid "Showing the single result" -msgstr "" - -#: templates/loop/result-count.php:30 -#, php-format -#@ woocommerce -msgid "Showing all %d results" -msgstr "" - -#: templates/loop/result-count.php:32 -#, php-format -#@ woocommerce -msgctxt "%1$d = first, %2$d = last, %3$d = total" -msgid "Showing %1$d–%2$d of %3$d results" -msgstr "" - -#: templates/myaccount/form-lost-password.php:22 -#@ woocommerce -msgid "Lost your password? Please enter your username or email address. You will receive a link to create a new password via email." -msgstr "" - -#: templates/myaccount/form-lost-password.php:28 -#@ woocommerce -msgid "Enter a new password below." -msgstr "" - -#: templates/myaccount/form-lost-password.php:45 -#@ woocommerce -msgid "Reset Password" -msgstr "" - -#: templates/myaccount/my-address.php:17 -#@ woocommerce -msgid "My Addresses" -msgstr "" - -#: templates/myaccount/my-address.php:64 -#@ woocommerce -msgid "You have not set up this type of address yet." -msgstr "" - -#: templates/myaccount/my-downloads.php:27 -#, php-format -#@ woocommerce -msgid "%s download remaining" -msgid_plural "%s downloads remaining" -msgstr[0] "" -msgstr[1] "" - -#: templates/myaccount/my-orders.php:62 -#, php-format -#@ woocommerce -msgid "%s for %s item" -msgid_plural "%s for %s items" -msgstr[0] "" -msgstr[1] "" - -#: templates/order/form-tracking.php:23 -#@ woocommerce -msgid "Track" -msgstr "" - -#: templates/order/order-details.php:57 -#, php-format -#@ woocommerce -msgid "Download file %s →" -msgstr "" - -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: templates/single-product/meta.php:22 -#@ product_cat -msgid "Category:" -msgid_plural "Categories:" -msgstr[0] "" -msgstr[1] "" - -#: templates/single-product/meta.php:24 -#@ product_tag -msgid "Tag:" -msgid_plural "Tags:" -msgstr[0] "" -msgstr[1] "" - -#: templates/single-product/review.php:26 -#, php-format -#@ woocommerce -msgid "Rated %d out of 5" -msgstr "" - -#: templates/single-product-reviews.php:78 -#@ woocommerce -msgid "Add Your Review" -msgstr "" - -#: woocommerce-ajax.php:1172 -#@ woocommerce -msgid "No products had their stock reduced - they may not have stock management enabled." -msgstr "" - -#: woocommerce-ajax.php:1223 -#@ woocommerce -msgid "No products had their stock increased - they may not have stock management enabled." -msgstr "" - -#: woocommerce-ajax.php:1244 -#@ woocommerce -msgid "Value" -msgstr "" - -#: woocommerce-core-functions.php:268 -#, php-format -#@ woocommerce -msgid "%s – %s%s" -msgstr "" - -#: woocommerce-core-functions.php:675 -#@ woocommerce -msgid "Australian Dollars" -msgstr "" - -#: woocommerce-core-functions.php:676 -#@ woocommerce -msgid "Brazilian Real" -msgstr "" - -#: woocommerce-core-functions.php:677 -#@ woocommerce -msgid "Canadian Dollars" -msgstr "" - -#: woocommerce-core-functions.php:678 -#@ woocommerce -msgid "Chinese Yuan" -msgstr "" - -#: woocommerce-core-functions.php:679 -#@ woocommerce -msgid "Czech Koruna" -msgstr "" - -#: woocommerce-core-functions.php:681 -#@ woocommerce -msgid "Euros" -msgstr "" - -#: woocommerce-core-functions.php:682 -#@ woocommerce -msgid "Hong Kong Dollar" -msgstr "" - -#: woocommerce-core-functions.php:684 -#@ woocommerce -msgid "Indonesia Rupiah" -msgstr "" - -#: woocommerce-core-functions.php:686 -#@ woocommerce -msgid "Japanese Yen" -msgstr "" - -#: woocommerce-core-functions.php:687 -#@ woocommerce -msgid "Malaysian Ringgits" -msgstr "" - -#: woocommerce-core-functions.php:688 -#@ woocommerce -msgid "Mexican Peso" -msgstr "" - -#: woocommerce-core-functions.php:690 -#@ woocommerce -msgid "New Zealand Dollar" -msgstr "" - -#: woocommerce-core-functions.php:693 -#@ woocommerce -msgid "Pounds Sterling" -msgstr "" - -#: woocommerce-core-functions.php:694 -#@ woocommerce -msgid "Romanian Leu" -msgstr "" - -#: woocommerce-core-functions.php:695 -#@ woocommerce -msgid "Singapore Dollar" -msgstr "" - -#: woocommerce-core-functions.php:696 -#@ woocommerce -msgid "South African rand" -msgstr "" - -#: woocommerce-core-functions.php:701 -#@ woocommerce -msgid "Turkish Lira" -msgstr "" - -#: woocommerce-core-functions.php:702 -#@ woocommerce -msgid "US Dollars" -msgstr "" - -#: woocommerce-core-functions.php:1328 -#@ woocommerce -msgctxt "slug" -msgid "uncategorized" -msgstr "" - -#: woocommerce-core-functions.php:2433 -#@ woocommerce -msgid "Unpaid order cancelled - time limit reached." -msgstr "" - -#: woocommerce-functions.php:378 -#@ woocommerce -msgid "Please choose the quantity of items you wish to add to your cart…" -msgstr "" - -#: woocommerce-functions.php:386 -#@ woocommerce -msgid "Please choose a product to add to your cart…" -msgstr "" - -#: woocommerce-functions.php:455 -#, php-format -#@ woocommerce -msgid "Added "%s" to your cart." -msgstr "" - -#: woocommerce-functions.php:455 -#@ default -msgid "" and "" -msgstr "" - -#: woocommerce-functions.php:458 -#, php-format -#@ woocommerce -msgid ""%s" was successfully added to your cart." -msgstr "" - -#: woocommerce-functions.php:953 -#@ woocommerce -msgid "Product no longer exists." -msgstr "" - -#: woocommerce-functions.php:996 -#@ woocommerce -msgid "No file defined" -msgstr "" - -#: woocommerce-functions.php:1575 -#@ woocommerce -msgid "Password changed successfully." -msgstr "" - -#: woocommerce-functions.php:1651 -#@ woocommerce -msgid "Address changed successfully." -msgstr "" - -#: woocommerce-template.php:764 -#, php-format -#@ woocommerce -msgid "Reviews (%d)" -msgstr "" - -#. translators: plugin header field 'Version' -#: woocommerce.php:0 -#@ woocommerce -msgid "2.0.0" -msgstr "" - -#: woocommerce.php:1174 -#@ woocommerce -msgid "Sorry, no products matched your selection. Please choose a different combination." -msgstr "" - diff --git a/i18n/languages/woocommerce-it_IT.mo b/i18n/languages/woocommerce-it_IT.mo deleted file mode 100644 index 15ec943d1a2..00000000000 Binary files a/i18n/languages/woocommerce-it_IT.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-it_IT.po b/i18n/languages/woocommerce-it_IT.po deleted file mode 100644 index ef6d2d464ab..00000000000 --- a/i18n/languages/woocommerce-it_IT.po +++ /dev/null @@ -1,14815 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce v2.0.0\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-04-11 09:58+0100\n" -"PO-Revision-Date: 2013-04-24 01:28+0100\n" -"Last-Translator: Adriano Calvitto \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Poedit 1.5.4\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" -"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" -"X-Poedit-Basepath: ../../\n" -"X-Textdomain-Support: yes\n" -"X-Poedit-Bookmarks: -1,-1,-1,-1,-1,-1,-1,729,-1,-1\n" -"X-Poedit-SearchPath-0: .\n" - -# @ woocommerce -#: woocommerce-ajax.php:119 -msgid "Sorry, your session has expired." -msgstr "Spiacente, la sessione è scaduta." - -# @ woocommerce -#: woocommerce-ajax.php:119 -msgid "Return to homepage →" -msgstr "Ritorna alla homepage →" - -# @ woocommerce -#: woocommerce-ajax.php:256 woocommerce-ajax.php:290 woocommerce-ajax.php:313 -msgid "You do not have sufficient permissions to access this page." -msgstr "" -"Non si dispone di autorizzazioni sufficienti per accedere a questa pagina." - -# @ woocommerce -#: woocommerce-ajax.php:258 woocommerce-ajax.php:291 woocommerce-ajax.php:314 -msgid "You have taken too long. Please go back and retry." -msgstr "Il tempo trascorso è troppo. Si prega di tornare indietro e riprovare." - -# @ woocommerce -#: woocommerce-ajax.php:549 -#: admin/post-types/writepanels/variation-admin-html.php:119 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:53 -msgid "Same as parent" -msgstr "Come Genitore" - -# @ woocommerce -#: woocommerce-ajax.php:550 admin/woocommerce-admin-settings.php:228 -#: admin/post-types/writepanels/order-fee-html.php:25 -#: admin/post-types/writepanels/order-item-html.php:102 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:54 -#: admin/post-types/writepanels/writepanel-product_data.php:186 -#: admin/settings/settings-init.php:972 -#: admin/settings/settings-tax-rates.php:29 -msgid "Standard" -msgstr "Standard" - -# @ woocommerce -#: woocommerce-ajax.php:1087 woocommerce-ajax.php:1088 -#: classes/class-wc-order.php:1452 -#, php-format -msgid "Item #%s stock reduced from %s to %s." -msgstr "Scorta dell'articolo #%s ridotta da %s a %s." - -# @ woocommerce -#: woocommerce-ajax.php:1096 -msgid "" -"No products had their stock reduced - they may not have stock management " -"enabled." -msgstr "" -"Nessun prodotto ha avuto lo stock ridotto - la gestione del magazzino " -"potrebbe non essere abilitata." - -# @ woocommerce -#: woocommerce-ajax.php:1140 woocommerce-ajax.php:1141 -#, php-format -msgid "Item #%s stock increased from %s to %s." -msgstr "Scorta dell'articolo #%s aumentata da %s a %s." - -# @ woocommerce -#: woocommerce-ajax.php:1148 -msgid "" -"No products had their stock increased - they may not have stock management " -"enabled." -msgstr "" -"Nessun prodotto ha avuto lo stock aurmentato - la gestione del magazzino " -"potrebbe non essere abilitata." - -# @ woocommerce -#: woocommerce-ajax.php:1169 admin/woocommerce-admin-attributes.php:233 -#: admin/woocommerce-admin-attributes.php:269 -#: admin/woocommerce-admin-attributes.php:307 -#: admin/woocommerce-admin-attributes.php:330 -#: admin/woocommerce-admin-attributes.php:374 -#: admin/woocommerce-admin-attributes.php:399 -#: admin/woocommerce-admin-init.php:434 admin/post-types/product.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:375 -#: admin/post-types/writepanels/writepanel-product_data.php:469 -#: classes/widgets/class-wc-widget-product-categories.php:191 -#: templates/single-product-reviews.php:84 -msgid "Name" -msgstr "Nome" - -# @ woocommerce -#: woocommerce-ajax.php:1169 -msgid "Value" -msgstr "Valore" - -# @ woocommerce -#: woocommerce-ajax.php:1483 -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -msgid "Delete note" -msgstr "Cancella nota" - -# @ woocommerce -#: woocommerce-ajax.php:1650 admin/post-types/shop_order.php:95 -#: admin/post-types/writepanels/writepanel-order_data.php:93 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:113 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:168 -msgid "Guest" -msgstr "Ospite" - -# @ woocommerce -#: woocommerce-core-functions.php:274 -#, php-format -msgid "%s – %s%s" -msgstr "%s – %s%s" - -# @ woocommerce -#: woocommerce-core-functions.php:681 -msgid "Australian Dollars" -msgstr "Australian Dollars" - -# @ woocommerce -#: woocommerce-core-functions.php:682 -msgid "Brazilian Real" -msgstr "Brazilian Real" - -# @ woocommerce -#: woocommerce-core-functions.php:683 -msgid "Canadian Dollars" -msgstr "Canadian Dollars" - -# @ woocommerce -#: woocommerce-core-functions.php:684 -msgid "Chinese Yuan" -msgstr "Chinese Yuan" - -# @ woocommerce -#: woocommerce-core-functions.php:685 -msgid "Czech Koruna" -msgstr "Czech Koruna" - -# @ woocommerce -#: woocommerce-core-functions.php:686 -msgid "Danish Krone" -msgstr "Danish Krone" - -# @ woocommerce -#: woocommerce-core-functions.php:687 -msgid "Euros" -msgstr "Euros" - -# @ woocommerce -#: woocommerce-core-functions.php:688 -msgid "Hong Kong Dollar" -msgstr "Hong Kong Dollar" - -# @ woocommerce -#: woocommerce-core-functions.php:689 -msgid "Hungarian Forint" -msgstr "Hungarian Forint" - -# @ woocommerce -#: woocommerce-core-functions.php:690 -msgid "Indonesia Rupiah" -msgstr "Indonesia Rupiah" - -#: woocommerce-core-functions.php:691 -msgid "Indian Rupee" -msgstr "Indian Rupee" - -# @ woocommerce -#: woocommerce-core-functions.php:692 -msgid "Israeli Shekel" -msgstr "Israeli Shekel" - -# @ woocommerce -#: woocommerce-core-functions.php:693 -msgid "Japanese Yen" -msgstr "Japanese Yen" - -#: woocommerce-core-functions.php:694 -msgid "South Korean Won" -msgstr "South Korean Won" - -# @ woocommerce -#: woocommerce-core-functions.php:695 -msgid "Malaysian Ringgits" -msgstr "Malaysian Ringgits" - -# @ woocommerce -#: woocommerce-core-functions.php:696 -msgid "Mexican Peso" -msgstr "Mexican Peso" - -# @ woocommerce -#: woocommerce-core-functions.php:697 -msgid "Norwegian Krone" -msgstr "Norwegian Krone" - -# @ woocommerce -#: woocommerce-core-functions.php:698 -msgid "New Zealand Dollar" -msgstr "New Zealand Dollar" - -# @ woocommerce -#: woocommerce-core-functions.php:699 -msgid "Philippine Pesos" -msgstr "Philippine Pesos" - -# @ woocommerce -#: woocommerce-core-functions.php:700 -msgid "Polish Zloty" -msgstr "Polish Zloty" - -# @ woocommerce -#: woocommerce-core-functions.php:701 -msgid "Pounds Sterling" -msgstr "Pounds Sterling" - -# @ woocommerce -#: woocommerce-core-functions.php:702 -msgid "Romanian Leu" -msgstr "Romanian Leu" - -# @ woocommerce -#: woocommerce-core-functions.php:703 -msgid "Singapore Dollar" -msgstr "Singapore Dollar" - -# @ woocommerce -#: woocommerce-core-functions.php:704 -msgid "South African rand" -msgstr "South African rand" - -# @ woocommerce -#: woocommerce-core-functions.php:705 -msgid "Swedish Krona" -msgstr "Swedish Krona" - -# @ woocommerce -#: woocommerce-core-functions.php:706 -msgid "Swiss Franc" -msgstr "Swiss Franc" - -# @ woocommerce -#: woocommerce-core-functions.php:707 -msgid "Taiwan New Dollars" -msgstr "Taiwan New Dollars" - -# @ woocommerce -#: woocommerce-core-functions.php:708 -msgid "Thai Baht" -msgstr "Thai Baht" - -# @ woocommerce -#: woocommerce-core-functions.php:709 -msgid "Turkish Lira" -msgstr "Turkish Lira" - -# @ woocommerce -#: woocommerce-core-functions.php:710 -msgid "US Dollars" -msgstr "US Dollars" - -# @ woocommerce -#: woocommerce-core-functions.php:1198 woocommerce-core-functions.php:1224 -msgid "Download Permissions Granted" -msgstr "Permessi Download Concessi" - -# @ woocommerce -#: woocommerce-core-functions.php:1337 -msgctxt "slug" -msgid "uncategorized" -msgstr "senza categoria" - -# @ woocommerce -#: woocommerce-core-functions.php:1526 -msgid "Select a category" -msgstr "Seleziona una categoria" - -# @ woocommerce -#: woocommerce-core-functions.php:1530 -msgid "Uncategorized" -msgstr "Senza categoria" - -# @ woocommerce -#: woocommerce-core-functions.php:1902 -msgid "Customer" -msgstr "Cliente" - -# @ woocommerce -#: woocommerce-core-functions.php:1909 -msgid "Shop Manager" -msgstr "Gestore Negozio" - -# @ woocommerce -#: woocommerce-core-functions.php:2464 -msgid "Unpaid order cancelled - time limit reached." -msgstr "Ordine non pagato annullato - tempo limite raggiunto." - -# @ woocommerce -#: woocommerce-functions.php:226 woocommerce-functions.php:271 -msgid "Cart updated." -msgstr "Carrello aggiornato." - -# @ woocommerce -#: woocommerce-functions.php:257 -#, php-format -msgid "You can only have 1 %s in your cart." -msgstr "Puoi avere solo 1 %s nel tuo carrello." - -# @ woocommerce -#: woocommerce-functions.php:315 woocommerce-functions.php:373 -msgid "Please choose product options…" -msgstr "Scegliere una caratteristica per il prodotto…" - -# @ woocommerce -#: woocommerce-functions.php:406 -msgid "" -"Please choose the quantity of items you wish to add to your cart…" -msgstr "" -"Per favore, scegli la quantità di articoli che vuoi inserire nel " -"carrello…" - -# @ woocommerce -#: woocommerce-functions.php:413 -msgid "Please choose a product to add to your cart…" -msgstr "Per favore, scegli un prodotto da aggiungere al carrello…" - -# @ woocommerce -#: woocommerce-functions.php:482 -#, php-format -msgid "Added "%s" to your cart." -msgstr ""%s" aggiunto al carrello." - -# @ default -#: woocommerce-functions.php:482 -msgid "" and "" -msgstr "" e "" - -# @ woocommerce -#: woocommerce-functions.php:485 -#, php-format -msgid ""%s" was successfully added to your cart." -msgstr ""%s" aggiunto correttamente al carrello." - -# @ woocommerce -#: woocommerce-functions.php:493 -msgid "Continue Shopping →" -msgstr "Continua lo Shopping →" - -# @ woocommerce -#: woocommerce-functions.php:497 classes/class-wc-cart.php:867 -#: classes/class-wc-cart.php:881 classes/class-wc-cart.php:889 -#: templates/cart/mini-cart.php:68 -msgid "View Cart →" -msgstr "Vai al Carrello →" - -# @ woocommerce -#: woocommerce-functions.php:660 -msgid "Username is required." -msgstr "Il Nome Utente è obbligatorio." - -# @ woocommerce -#: woocommerce-functions.php:661 woocommerce-functions.php:756 -msgid "Password is required." -msgstr "Password obbligatoria." - -# @ woocommerce -#: woocommerce-functions.php:730 woocommerce-functions.php:732 -#: woocommerce-functions.php:735 woocommerce-functions.php:747 -#: woocommerce-functions.php:749 woocommerce-functions.php:752 -#: woocommerce-functions.php:786 classes/class-wc-checkout.php:637 -msgid "ERROR" -msgstr "ERRORE" - -# @ woocommerce -#: woocommerce-functions.php:730 -msgid "Please enter a username." -msgstr "Inserire un nome utente." - -# @ woocommerce -#: woocommerce-functions.php:732 -msgid "" -"This username is invalid because it uses illegal characters. Please enter a " -"valid username." -msgstr "" -"Questo nome utente non è valido perché utilizza caratteri non permessi. " -"Inserisci un nome utente valido." - -# @ woocommerce -#: woocommerce-functions.php:735 -msgid "This username is already registered, please choose another one." -msgstr "Questo nome utente è già registrato, sceglierne un altro." - -# @ woocommerce -#: woocommerce-functions.php:747 -msgid "Please type your e-mail address." -msgstr "Inserisci il tuo indirizzo email." - -# @ woocommerce -#: woocommerce-functions.php:749 -msgid "The email address isn’t correct." -msgstr "L'indirizzo email non è corretto." - -# @ woocommerce -#: woocommerce-functions.php:752 -msgid "This email is already registered, please choose another one." -msgstr "Questa email è già registrata, sceglierne un'altra." - -# @ woocommerce -#: woocommerce-functions.php:757 -msgid "Re-enter your password." -msgstr "Reinserisci la password." - -# @ woocommerce -#: woocommerce-functions.php:758 woocommerce-functions.php:1627 -#: classes/class-wc-checkout.php:565 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:83 -msgid "Passwords do not match." -msgstr "Le password non corrispondono." - -# @ woocommerce -#: woocommerce-functions.php:762 -msgid "Anti-spam field was filled in." -msgstr "il campo anti-spam è stato compilato." - -# @ woocommerce -#: woocommerce-functions.php:786 classes/class-wc-checkout.php:637 -msgid "" -"Couldn’t register you… please contact us if you continue to " -"have problems." -msgstr "" -"Impossibile registrarla. Per favore, ci contatti se il problema si " -"ripresenta." - -# @ woocommerce -#: woocommerce-functions.php:870 -msgid "The cart has been filled with the items from your previous order." -msgstr "" -"Gli articoli del tuo precedente ordine sono stati inseriti nel carrello." - -# @ woocommerce -#: woocommerce-functions.php:896 -msgid "Order cancelled by customer." -msgstr "Ordine cancellato dal cliente." - -# @ woocommerce -#: woocommerce-functions.php:899 -msgid "Your order was cancelled." -msgstr "Il tuo ordine è stato cancellato." - -# @ woocommerce -#: woocommerce-functions.php:905 -msgid "" -"Your order is no longer pending and could not be cancelled. Please contact " -"us if you need assistance." -msgstr "" -"Il tuo ordine non è più in attesa e non può essere cancellato. Contattaci se " -"hai bisogno di assistenza." - -# @ woocommerce -#: woocommerce-functions.php:909 woocommerce-functions.php:988 -#: classes/shortcodes/class-wc-shortcode-pay.php:69 -#: classes/shortcodes/class-wc-shortcode-pay.php:125 -#: classes/shortcodes/class-wc-shortcode-view-order.php:51 -msgid "Invalid order." -msgstr "Ordine non valido." - -# @ woocommerce -#: woocommerce-functions.php:940 -msgid "Invalid email address." -msgstr "Indirizzo email non valido." - -# @ woocommerce -#: woocommerce-functions.php:940 woocommerce-functions.php:962 -#: woocommerce-functions.php:982 woocommerce-functions.php:988 -#: woocommerce-functions.php:992 woocommerce-functions.php:995 -#: woocommerce-functions.php:1025 woocommerce-functions.php:1157 -msgid "Go to homepage →" -msgstr "Vai alla homepage →" - -# @ woocommerce -#: woocommerce-functions.php:962 -msgid "Invalid download." -msgstr "Download non valido." - -# @ woocommerce -#: woocommerce-functions.php:974 -msgid "You must be logged in to download files." -msgstr "Devi accedere all\\'area riservata per scaricare i file." - -# @ woocommerce -#: woocommerce-functions.php:974 -msgid "Login →" -msgstr "Accedi →" - -# @ woocommerce -#: woocommerce-functions.php:977 -msgid "This is not your download link." -msgstr "Questo link di download non ti appartiene." - -# @ woocommerce -#: woocommerce-functions.php:982 -msgid "Product no longer exists." -msgstr "Prodotto non più esistente." - -# @ woocommerce -#: woocommerce-functions.php:992 -msgid "Sorry, you have reached your download limit for this file" -msgstr "Spiacenti, hai raggiunto il limite di download per questo file" - -# @ woocommerce -#: woocommerce-functions.php:995 -msgid "Sorry, this download has expired" -msgstr "Spiacenti, il download è scaduto." - -# @ woocommerce -#: woocommerce-functions.php:1025 -msgid "No file defined" -msgstr "Nessun file definito" - -# @ woocommerce -#: woocommerce-functions.php:1157 -msgid "File not found" -msgstr "File non trovato" - -# @ woocommerce -#: woocommerce-functions.php:1273 -msgid "New products" -msgstr "Nuovi prodotti" - -# @ woocommerce -#: woocommerce-functions.php:1281 -#, php-format -msgid "New products added to %s" -msgstr "Nuovi prodotti aggiunti al %s" - -# @ woocommerce -#: woocommerce-functions.php:1289 -#, php-format -msgid "New products tagged %s" -msgstr "Nuovi prodotti taggati %s" - -# @ woocommerce -#: woocommerce-functions.php:1329 -msgid "You have taken too long. Please go back and refresh the page." -msgstr "" -"Il tempo trascorso è troppo. Si prega di tornare indietro e aggiornare la " -"pagina." - -# @ woocommerce -#: woocommerce-functions.php:1332 -msgid "Please rate the product." -msgstr "Per favore, vota il prodotto." - -# @ woocommerce -#: woocommerce-functions.php:1624 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:78 -msgid "Please enter your password." -msgstr "Inserisci la tua password." - -# @ woocommerce -#: woocommerce-functions.php:1640 -msgid "Password changed successfully." -msgstr "Password modificata con successo." - -# @ woocommerce -#: woocommerce-functions.php:1697 classes/class-wc-checkout.php:440 -msgid "is a required field." -msgstr "è un campo obbligatorio." - -# @ woocommerce -#: woocommerce-functions.php:1702 -#: classes/shortcodes/class-wc-shortcode-cart.php:52 -msgid "Please enter a valid postcode/ZIP." -msgstr "Inserire un C.A.P. valido." - -# @ woocommerce -#: woocommerce-functions.php:1716 -msgid "Address changed successfully." -msgstr "Indirizzo modificato correttamente." - -# @ woocommerce -#: woocommerce-template.php:200 admin/settings/settings-init.php:95 -msgid "" -"This is a demo store for testing purposes — no orders shall be " -"fulfilled." -msgstr "" -"Questo è un negozio di prova — nessun ordine sarà preso in " -"considerazione." - -# @ woocommerce -#: woocommerce-template.php:219 -#, php-format -msgid "Search Results: “%s”" -msgstr "Risultati Ricerca: “%s”" - -# @ woocommerce -#: woocommerce-template.php:222 -#, php-format -msgid " – Page %s" -msgstr " – Pagina %s" - -# @ woocommerce -#: woocommerce-template.php:751 admin/post-types/shop_coupon.php:28 -#: classes/gateways/cod/class-wc-gateway-cod.php:94 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:142 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:133 -msgid "Description" -msgstr "Descrizione" - -# @ woocommerce -#: woocommerce-template.php:759 templates/checkout/form-shipping.php:59 -#: templates/single-product/tabs/additional-information.php:14 -msgid "Additional Information" -msgstr "Informazioni aggiuntive" - -# @ woocommerce -#: woocommerce-template.php:767 -#, php-format -msgid "Reviews (%d)" -msgstr "Recensioni (% d)" - -# @ woocommerce -#: woocommerce-template.php:993 -msgctxt "breadcrumb" -msgid "Home" -msgstr "Home" - -# @ woocommerce -#: woocommerce-template.php:1334 -#: admin/post-types/writepanels/writepanel-order_data.php:175 -#: admin/post-types/writepanels/writepanel-order_data.php:265 -#: templates/cart/shipping-calculator.php:24 -msgid "Select a country…" -msgstr "Seleziona uno stato…" - -# @ woocommerce -#: woocommerce-template.php:1341 -msgid "Update country" -msgstr "Aggiorna nazione" - -# @ woocommerce -#: woocommerce-template.php:1384 templates/cart/shipping-calculator.php:50 -msgid "Select a state…" -msgstr "Selezionare una provincia…" - -# @ woocommerce -#: woocommerce-template.php:1496 -msgid "Search for:" -msgstr "Cerca:" - -# @ woocommerce -#: woocommerce-template.php:1497 -msgid "Search for products" -msgstr "Cerca un prodotto" - -# @ woocommerce -#: woocommerce.php:170 admin/woocommerce-admin-content.php:41 -#: admin/woocommerce-admin-init.php:86 admin/woocommerce-admin-status.php:278 -#: admin/includes/welcome.php:153 classes/abstracts/abstract-wc-email.php:560 -#: classes/abstracts/abstract-wc-integration.php:30 -#: classes/abstracts/abstract-wc-settings-api.php:39 -msgid "Settings" -msgstr "Impostazioni" - -# @ woocommerce -#: woocommerce.php:171 admin/includes/welcome.php:154 -msgid "Docs" -msgstr "Docs" - -#: woocommerce.php:172 -msgid "Premium Support" -msgstr "Supporto premium" - -# @ woocommerce -#: woocommerce.php:786 admin/woocommerce-admin-init.php:881 -#: admin/includes/updates/woocommerce-update-2.0.php:49 -msgctxt "slug" -msgid "product-category" -msgstr "categoria-prodotto" - -# @ woocommerce -#: woocommerce.php:787 admin/woocommerce-admin-init.php:894 -#: admin/includes/updates/woocommerce-update-2.0.php:50 -msgctxt "slug" -msgid "product-tag" -msgstr "tag-prodotto" - -# @ woocommerce -#: woocommerce.php:789 admin/includes/updates/woocommerce-update-2.0.php:58 -msgctxt "slug" -msgid "product" -msgstr "prodotto" - -# @ woocommerce -#: woocommerce.php:821 woocommerce.php:823 -#: classes/widgets/class-wc-widget-product-categories.php:57 -msgid "Product Categories" -msgstr "Categorie prodotto" - -# @ woocommerce -#: woocommerce.php:824 admin/woocommerce-admin-dashboard.php:98 -msgid "Product Category" -msgid_plural "Product Categories" -msgstr[0] "Categoria di Prodotti" -msgstr[1] "Categorie di Prodotti" - -# @ woocommerce -#: woocommerce.php:825 -msgctxt "Admin menu name" -msgid "Categories" -msgstr "Categorie" - -# @ woocommerce -#: woocommerce.php:826 -msgid "Search Product Categories" -msgstr "Cerca Categorie Prodotto" - -# @ woocommerce -#: woocommerce.php:827 -msgid "All Product Categories" -msgstr "Tutte le Categorie" - -# @ woocommerce -#: woocommerce.php:828 -msgid "Parent Product Category" -msgstr "Categoria Prodotto Genitore" - -# @ woocommerce -#: woocommerce.php:829 -msgid "Parent Product Category:" -msgstr "Categoria Prodotto Genitore:" - -# @ woocommerce -#: woocommerce.php:830 -msgid "Edit Product Category" -msgstr "Modifica Categoria Prodotto" - -# @ woocommerce -#: woocommerce.php:831 -msgid "Update Product Category" -msgstr "Aggiorna Categoria Prodotto" - -# @ woocommerce -#: woocommerce.php:832 -msgid "Add New Product Category" -msgstr "Aggiungi Categoria Prodotto" - -# @ woocommerce -#: woocommerce.php:833 -msgid "New Product Category Name" -msgstr "Nuovo Nome Categoria Prodotto" - -# @ woocommerce -#: woocommerce.php:857 woocommerce.php:859 -#: classes/widgets/class-wc-widget-product-tag-cloud.php:58 -msgid "Product Tags" -msgstr "Tag prodotto" - -# @ woocommerce -#: woocommerce.php:860 admin/woocommerce-admin-dashboard.php:112 -msgid "Product Tag" -msgid_plural "Product Tags" -msgstr[0] "Etichetta di Prodotti" -msgstr[1] "Etichette di Prodotti" - -# @ woocommerce -#: woocommerce.php:861 -msgctxt "Admin menu name" -msgid "Tags" -msgstr "Tag" - -# @ woocommerce -#: woocommerce.php:862 -msgid "Search Product Tags" -msgstr "Cerca Tag Prodotto" - -# @ woocommerce -#: woocommerce.php:863 -msgid "All Product Tags" -msgstr "Tutti i Tag Prodotto" - -# @ woocommerce -#: woocommerce.php:864 -msgid "Parent Product Tag" -msgstr "Tag Prodotto Genitore" - -# @ woocommerce -#: woocommerce.php:865 -msgid "Parent Product Tag:" -msgstr "Tag Prodotto Genitore:" - -# @ woocommerce -#: woocommerce.php:866 -msgid "Edit Product Tag" -msgstr "Modifica Tag Prodotto" - -# @ woocommerce -#: woocommerce.php:867 -msgid "Update Product Tag" -msgstr "Aggiorna Tag Prodotto" - -# @ woocommerce -#: woocommerce.php:868 -msgid "Add New Product Tag" -msgstr "Nuovo Tag Prodotto" - -# @ woocommerce -#: woocommerce.php:869 -msgid "New Product Tag Name" -msgstr "Nuovo nome Tag Prodotto" - -# @ woocommerce -#: woocommerce.php:888 woocommerce.php:890 -msgid "Shipping Classes" -msgstr "Classi Spedizione" - -# @ woocommerce -#: woocommerce.php:891 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:466 -msgid "Shipping Class" -msgstr "Classe Spedizione" - -# @ woocommerce -#: woocommerce.php:892 -msgctxt "Admin menu name" -msgid "Shipping Classes" -msgstr "Classi Spedizione" - -# @ woocommerce -#: woocommerce.php:893 -msgid "Search Shipping Classes" -msgstr "Cerca Classi Spedizione" - -# @ woocommerce -#: woocommerce.php:894 -msgid "All Shipping Classes" -msgstr "Tutte le Classi Spedizione" - -# @ woocommerce -#: woocommerce.php:895 -msgid "Parent Shipping Class" -msgstr "Classe Spedizione Genitore" - -# @ woocommerce -#: woocommerce.php:896 -msgid "Parent Shipping Class:" -msgstr "Classe Spedizione Genitore:" - -# @ woocommerce -#: woocommerce.php:897 -msgid "Edit Shipping Class" -msgstr "Modifica Classe Spedizione" - -# @ woocommerce -#: woocommerce.php:898 -msgid "Update Shipping Class" -msgstr "Aggiorna Classe Spedizione" - -# @ woocommerce -#: woocommerce.php:899 -msgid "Add New Shipping Class" -msgstr "Aggiungi Classe Spedizione" - -# @ woocommerce -#: woocommerce.php:900 -msgid "New Shipping Class Name" -msgstr "Nuovo Nome Classe Spedizione" - -# @ woocommerce -#: woocommerce.php:947 admin/post-types/product.php:620 -#: admin/post-types/product.php:895 -#: admin/post-types/writepanels/writepanel-product_data.php:1046 -msgid "Search" -msgstr "Cerca" - -# @ woocommerce -#: woocommerce.php:948 -msgid "All" -msgstr "Tutto" - -# @ woocommerce -#: woocommerce.php:949 woocommerce.php:950 -msgid "Parent" -msgstr "Genitore" - -# @ default -# @ woocommerce -#: woocommerce.php:951 woocommerce.php:987 woocommerce.php:1024 -#: woocommerce.php:1062 woocommerce.php:1100 -#: admin/woocommerce-admin-attributes.php:323 admin/post-types/product.php:151 -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#: admin/post-types/writepanels/writepanel-order_data.php:387 -#: admin/post-types/writepanels/writepanel-product_data.php:1059 -#: templates/myaccount/my-address.php:45 -msgid "Edit" -msgstr "Modifica" - -# @ woocommerce -#: woocommerce.php:952 admin/woocommerce-admin-attributes.php:277 -msgid "Update" -msgstr "Aggiorna" - -# @ woocommerce -#: woocommerce.php:953 -msgid "Add New" -msgstr "Aggiungi Nuovo" - -# @ woocommerce -#: woocommerce.php:954 -msgid "New" -msgstr "Nuovo" - -# @ woocommerce -#: woocommerce.php:982 admin/woocommerce-admin-taxonomies.php:28 -#: admin/woocommerce-admin-taxonomies.php:122 -#: admin/post-types/writepanels/writepanel-coupon_data.php:74 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:256 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:276 -msgid "Products" -msgstr "Prodotti" - -# @ woocommerce -#: woocommerce.php:983 admin/woocommerce-admin-dashboard.php:84 -#: admin/woocommerce-admin-functions.php:200 -#: admin/woocommerce-admin-init.php:757 -#: admin/woocommerce-admin-reports.php:990 -#: admin/woocommerce-admin-reports.php:1088 templates/cart/cart.php:28 -#: templates/checkout/form-pay.php:19 templates/checkout/review-order.php:21 -#: templates/emails/admin-new-order.php:22 -#: templates/emails/customer-completed-order.php:23 -#: templates/emails/customer-invoice.php:27 -#: templates/emails/customer-note.php:27 -#: templates/emails/customer-processing-order.php:23 -#: templates/order/order-details.php:20 -msgid "Product" -msgid_plural "Products" -msgstr[0] "Prodotto" -msgstr[1] "Prodotti" - -# @ woocommerce -#: woocommerce.php:984 -msgctxt "Admin menu name" -msgid "Products" -msgstr "Prodotti" - -# @ woocommerce -#: woocommerce.php:985 -msgid "Add Product" -msgstr "Aggiungi prodotto" - -# @ woocommerce -#: woocommerce.php:986 -msgid "Add New Product" -msgstr "Aggiungi Prodotto" - -# @ woocommerce -#: woocommerce.php:988 -msgid "Edit Product" -msgstr "Modifica Prodotto" - -# @ woocommerce -#: woocommerce.php:989 -msgid "New Product" -msgstr "Nuovo Prodotto" - -# @ woocommerce -#: woocommerce.php:990 woocommerce.php:991 -msgid "View Product" -msgstr "Vedi Prodotto" - -# @ woocommerce -#: woocommerce.php:992 -msgid "Search Products" -msgstr "Cerca Prodotti" - -# @ woocommerce -#: woocommerce.php:993 -msgid "No Products found" -msgstr "Nessun Prodotto trovato." - -# @ woocommerce -#: woocommerce.php:994 -msgid "No Products found in trash" -msgstr "Nessun prodotto nel cestino." - -# @ woocommerce -#: woocommerce.php:995 -msgid "Parent Product" -msgstr "Prodotto genitore" - -# @ woocommerce -#: woocommerce.php:997 -msgid "This is where you can add new products to your store." -msgstr "Qui è dove puoi aggiungere nuovi prodotti al tuo negozio." - -# @ woocommerce -#: woocommerce.php:1020 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations" -msgstr "Variazioni" - -# @ woocommerce -#: woocommerce.php:1021 -msgid "Variation" -msgstr "Variazione" - -# @ woocommerce -#: woocommerce.php:1022 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:193 -msgid "Add Variation" -msgstr "Aggiungi Variazione:" - -# @ woocommerce -#: woocommerce.php:1023 -msgid "Add New Variation" -msgstr "Aggiungi Variazione" - -# @ woocommerce -#: woocommerce.php:1025 -msgid "Edit Variation" -msgstr "Modifica Variazione" - -# @ woocommerce -#: woocommerce.php:1026 -msgid "New Variation" -msgstr "Nuova Variazione" - -# @ woocommerce -#: woocommerce.php:1027 woocommerce.php:1028 -msgid "View Variation" -msgstr "Vedi Variazione" - -# @ woocommerce -#: woocommerce.php:1029 -msgid "Search Variations" -msgstr "Cerca Variazioni" - -# @ woocommerce -#: woocommerce.php:1030 -msgid "No Variations found" -msgstr "Nessuna Variazione trovata." - -# @ woocommerce -#: woocommerce.php:1031 -msgid "No Variations found in trash" -msgstr "Nessuna Variazione nel cestino." - -# @ woocommerce -#: woocommerce.php:1032 -msgid "Parent Variation" -msgstr "Variazione Genitore" - -# @ woocommerce -#: woocommerce.php:1049 admin/woocommerce-admin-init.php:140 -#: admin/woocommerce-admin-init.php:142 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Ordini" - -# @ woocommerce -#: woocommerce.php:1058 admin/woocommerce-admin-content.php:68 -#: admin/woocommerce-admin-dashboard.php:142 -msgid "Orders" -msgstr "Ordini" - -# @ woocommerce -#: woocommerce.php:1059 admin/post-types/shop_order.php:44 -#: templates/myaccount/my-orders.php:32 -msgid "Order" -msgstr "Ordine" - -# @ woocommerce -#: woocommerce.php:1060 -msgid "Add Order" -msgstr "Aggiungi Ordine" - -# @ woocommerce -#: woocommerce.php:1061 -msgid "Add New Order" -msgstr "Aggiungi Nuovo Ordine" - -# @ woocommerce -#: woocommerce.php:1063 -msgid "Edit Order" -msgstr "Modifica Ordine" - -# @ woocommerce -#: woocommerce.php:1064 -msgid "New Order" -msgstr "Nuovo Ordine" - -# @ woocommerce -#: woocommerce.php:1065 woocommerce.php:1066 -#: admin/woocommerce-admin-install.php:213 -#: admin/woocommerce-admin-status.php:327 -#: assets/js/admin/editor_plugin_lang.php:21 -msgid "View Order" -msgstr "Vedi Ordine" - -# @ woocommerce -#: woocommerce.php:1067 -msgid "Search Orders" -msgstr "Cerca Ordini" - -# @ woocommerce -#: woocommerce.php:1068 -msgid "No Orders found" -msgstr "Nessun Ordine trovato." - -# @ woocommerce -#: woocommerce.php:1069 -msgid "No Orders found in trash" -msgstr "Nessun Ordine nel cestino." - -# @ woocommerce -#: woocommerce.php:1070 -msgid "Parent Orders" -msgstr "Ordine Genitore" - -# @ woocommerce -#: woocommerce.php:1073 -msgid "This is where store orders are stored." -msgstr "Qui è dove sono salvati gli ordini." - -# @ woocommerce -#: woocommerce.php:1095 admin/woocommerce-admin-content.php:61 -#: admin/woocommerce-admin-content.php:76 -#: admin/woocommerce-admin-reports.php:67 admin/settings/settings-init.php:105 -msgid "Coupons" -msgstr "Buoni Sconto" - -# @ woocommerce -#: woocommerce.php:1096 admin/woocommerce-admin-reports.php:1541 -#: templates/cart/cart.php:127 -msgid "Coupon" -msgstr "Buono sconto" - -# @ woocommerce -#: woocommerce.php:1097 -msgctxt "Admin menu name" -msgid "Coupons" -msgstr "Buoni Sconto" - -# @ woocommerce -#: woocommerce.php:1098 -msgid "Add Coupon" -msgstr "Aggiungi Buono Sconto" - -# @ woocommerce -#: woocommerce.php:1099 -msgid "Add New Coupon" -msgstr "Aggiungi Nuovo Buono Sconto" - -# @ woocommerce -#: woocommerce.php:1101 -msgid "Edit Coupon" -msgstr "Modifica Buono Sconto" - -# @ woocommerce -#: woocommerce.php:1102 -msgid "New Coupon" -msgstr "Nuovo Buono Sconto" - -# @ woocommerce -#: woocommerce.php:1103 -msgid "View Coupons" -msgstr "Vedi Buoni Sconto" - -# @ woocommerce -#: woocommerce.php:1104 -msgid "View Coupon" -msgstr "Vedi Buono Sconto" - -# @ woocommerce -#: woocommerce.php:1105 -msgid "Search Coupons" -msgstr "Cerca Buoni Sconto" - -# @ woocommerce -#: woocommerce.php:1106 -msgid "No Coupons found" -msgstr "Nessun Buono Sconto trovato." - -# @ woocommerce -#: woocommerce.php:1107 -msgid "No Coupons found in trash" -msgstr "Nessun Buono Sconto nel cestino." - -# @ woocommerce -#: woocommerce.php:1108 -msgid "Parent Coupon" -msgstr "Buono Sconto Genitore." - -# @ woocommerce -#: woocommerce.php:1110 -msgid "" -"This is where you can add new coupons that customers can use in your store." -msgstr "" -"Qui è dove puoi aggiungere nuovi buoni sconto che i clienti possono " -"utilizzare nel tuo negozio." - -# @ woocommerce -#: woocommerce.php:1691 templates/cart/totals.php:35 -#: templates/checkout/review-order.php:34 -msgid "Cart Discount" -msgstr "Sconti Carrello" - -# @ woocommerce -#: woocommerce.php:1692 -msgid "Cart % Discount" -msgstr "Sconto % Carrello" - -# @ woocommerce -#: woocommerce.php:1693 -msgid "Product Discount" -msgstr "Sconto Prodotto" - -# @ woocommerce -#: woocommerce.php:1694 -msgid "Product % Discount" -msgstr "Sconto % Prodotto" - -# @ woocommerce -#: woocommerce.php:1759 admin/woocommerce-admin-settings.php:45 -msgid "Action failed. Please refresh the page and retry." -msgstr "Azione fallita. Per favore, aggiornare la pagina e riprovare." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:77 -msgid "Please, provide an attribute name, slug and type." -msgstr "Si prega di specificare il nome dell'attributo, lo slug e il tipo." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:79 -#, php-format -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "Lo slug “%s” è troppo lungo (28 caratteri max). Ridurre, per favore." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:81 -#, php-format -msgid "" -"Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "" -"Lo slug “%s” non è consentito, perché è un termine riservato. Modifica, per " -"favore." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:86 -#: admin/woocommerce-admin-attributes.php:91 -#, php-format -msgid "Slug “%s” is already in use. Change it, please." -msgstr "Lo slug “%s” è già in uso. Modifica, per favore." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:227 -msgid "Edit Attribute" -msgstr "Modifica Attributo" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:237 -#: admin/woocommerce-admin-attributes.php:376 -msgid "Name for the attribute (shown on the front-end)." -msgstr "Nome per l'attributo (visibile sul front-end)." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:242 -#: admin/woocommerce-admin-attributes.php:308 -#: admin/woocommerce-admin-attributes.php:380 -msgid "Slug" -msgstr "Slug" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:246 -#: admin/woocommerce-admin-attributes.php:382 -msgid "" -"Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "" -"Slug / riferimento unico per l'attributo, deve essere inferiore a 28 " -"caratteri." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:251 -#: admin/woocommerce-admin-attributes.php:309 -#: admin/woocommerce-admin-attributes.php:386 admin/post-types/product.php:101 -msgid "Type" -msgstr "Tipo" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:255 -#: admin/woocommerce-admin-attributes.php:388 -msgid "Select" -msgstr "Seleziona" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:256 -#: admin/woocommerce-admin-attributes.php:389 -msgid "Text" -msgstr "Testo" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:259 -#: admin/woocommerce-admin-attributes.php:392 -msgid "" -"Determines how you select attributes for products. Text " -"allows manual entry via the product page, whereas select " -"attribute terms can be defined from this section. If you plan on using an " -"attribute for variations use select." -msgstr "" -"Determina come si possano selezionare le caratteristiche per i prodotti. " -"Text permette l'inserimento manuale attraverso la pagina " -"prodotto, mentre usando select i termini per le " -"caratteristiche possono essere definiti da questa sezione. Se hai " -"pianificato di usare una caratteristica per le variazioni usa " -"select." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:264 -#: admin/woocommerce-admin-attributes.php:396 -msgid "Default sort order" -msgstr "Ordinamento predefinito" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:268 -#: admin/woocommerce-admin-attributes.php:336 -#: admin/woocommerce-admin-attributes.php:398 -msgid "Custom ordering" -msgstr "Ordinamento personalizzato" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:270 -#: admin/woocommerce-admin-attributes.php:333 -#: admin/woocommerce-admin-attributes.php:400 -msgid "Term ID" -msgstr "ID termine" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:272 -#: admin/woocommerce-admin-attributes.php:402 -msgid "" -"Determines the sort order on the frontend for this attribute. If using " -"custom ordering, you can drag and drop the terms in this attribute" -msgstr "" -"Determina il tipo di ordinamento nel frontend per questo attributo. Se si " -"utilizza l'ordinamento personalizzato, è possibile trascinare e rilasciare i " -"termini in questo attributo" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:299 -#: admin/woocommerce-admin-init.php:66 -#: admin/post-types/writepanels/writepanel-product_data.php:85 -msgid "Attributes" -msgstr "Attributi" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:310 -msgid "Order by" -msgstr "Ordine per" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:311 -msgid "Terms" -msgstr "Termini" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:323 -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -msgid "Delete" -msgstr "Cancella" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:356 -msgid "Configure terms" -msgstr "Configura termini" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:360 -msgid "No attributes currently exist." -msgstr "Attualmente non esistono attributi." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:370 -msgid "Add New Attribute" -msgstr "Aggiungi nuovo attributo" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:371 -msgid "" -"Attributes let you define extra product data, such as size or colour. You " -"can use these attributes in the shop sidebar using the \"layered nav\" " -"widgets. Please note: you cannot rename an attribute later on." -msgstr "" -"Gli attributi consentono di definire i dati extra del prodotto, come la " -"dimensione o il colore. È possibile utilizzare questi attributi nella barra " -"laterale negozio con il widget \"layered nav\". Attenzione: non è possibile " -"rinominare un attributo in seguito." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:405 -msgid "Add Attribute" -msgstr "Aggiungi attributo" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:416 -msgid "Are you sure you want to delete this attribute?" -msgstr "Sei sicuro di voler eliminare questo attributo?" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:26 -#: admin/woocommerce-admin-reports.php:30 -#: admin/woocommerce-admin-reports.php:70 -#: admin/woocommerce-admin-reports.php:86 -#: admin/woocommerce-admin-reports.php:97 -msgid "Overview" -msgstr "Panoramica" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:29 -#, php-format -msgid "" -"Thank you for using WooCommerce :) Should you need help using or extending " -"WooCommerce please read the documentation. For further " -"assistance you can use the community forum or if you have " -"access, our support desk." -msgstr "" -"Grazie per aver scelto WooCommerce :) Se avete bisogno di assistenza usando " -"o estendendo WooCommerce si prega di leggere la " -"documentazione. Per ulteriore assistenza, è possibile utilizzare il community forum o se si ha l'accesso, il " -"nostro desk di supporto." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:31 -msgid "" -"If you are having problems, or to assist us with support, please check the " -"status page to identify any problems with your configuration:" -msgstr "" -"Se si hanno problemi, oppure per aiutarci con il supporto, si prega di " -"controllare la pagina di stato per identificare eventuali problemi con la " -"propria configurazione:" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:33 admin/woocommerce-admin-init.php:87 -#: admin/woocommerce-admin-status.php:26 -msgid "System Status" -msgstr "Stato del sistema" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:35 -#, php-format -msgid "" -"If you come across a bug, or wish to contribute to the project you can also " -"get involved on GitHub." -msgstr "" -"Se vi imbattete in un bug, o se volete contribuire al progetto è possibile " -"anche essere coinvolti su GitHub." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:43 -msgid "" -"Here you can set up your store and customise it to fit your needs. The " -"sections available from the settings page include:" -msgstr "" -"Qui si può impostare il proprio negozio e personalizzarlo in base alle " -"proprie esigenze. Le sezioni disponibili nella pagina delle impostazioni " -"includono:" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:44 -#: admin/woocommerce-admin-settings.php:182 -#: admin/post-types/writepanels/writepanel-product_data.php:77 -msgid "General" -msgstr "Generale" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:44 -msgid "" -"General settings such as your shop base, currency, and script/styling " -"options which affect features used in your store." -msgstr "" -"Impostazioni generali come la vostra pagina principale del negozio, la " -"valuta, e le opzioni di script/stile che riguardano le funzioni utilizzate " -"nel vostro negozio." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:45 -#: admin/woocommerce-admin-settings.php:184 -#: assets/js/admin/editor_plugin_lang.php:14 -msgid "Pages" -msgstr "Pagine" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:45 -msgid "" -"This is where important store page are defined. You can also set up other " -"pages (such as a Terms page) here." -msgstr "" -"Qua è dove vengono definite le più importanti pagine del negozio. É anche " -"possibile impostare altre pagine (ad esempio una pagina Condizioni generali)." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:46 -#: admin/woocommerce-admin-settings.php:183 admin/post-types/product.php:619 -#: admin/post-types/product.php:894 -#: admin/post-types/writepanels/writepanel-product_data.php:1045 -msgid "Catalog" -msgstr "Catalogo" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:46 -msgid "" -"Options for how things like price, images and weights appear in your product " -"catalog." -msgstr "" -"Opzioni per come le cose tipo il prezzo, le immagini ed i pesi appaiono nel " -"vostro catalogo prodotti." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:47 -#: admin/woocommerce-admin-settings.php:185 -#: admin/post-types/writepanels/writepanel-product_data.php:79 -msgid "Inventory" -msgstr "Inventario" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:47 -msgid "Options concerning stock and stock notices." -msgstr "Opzioni relative al magazzino e le sue notifiche." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:48 -#: admin/woocommerce-admin-settings.php:186 -#: admin/post-types/writepanels/writepanel-order_data.php:352 -#: admin/settings/settings-tax-rates.php:387 -#: admin/settings/settings-tax-rates.php:475 -#: classes/class-wc-countries.php:444 -msgid "Tax" -msgstr "Tassa" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:48 -msgid "Options concerning tax, including international and local tax rates." -msgstr "" -"Opzioni relative alle imposte, comprese le aliquote fiscali internazionali e " -"locali." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:49 -#: admin/woocommerce-admin-settings.php:187 admin/post-types/shop_order.php:46 -#: admin/post-types/writepanels/writepanel-order_data.php:539 -#: admin/post-types/writepanels/writepanel-product_data.php:81 -#: admin/settings/settings-tax-rates.php:52 -#: admin/settings/settings-tax-rates.php:217 templates/cart/totals.php:46 -#: templates/checkout/review-order.php:45 -msgid "Shipping" -msgstr "Spedizione" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:49 -msgid "" -"This is where shipping options are defined, and shipping methods are set up." -msgstr "" -"Qui è dove vengono definite le opzioni di spedizione e dove sono impostate " -"le modalità di spedizione." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:50 -msgid "Payment Methods" -msgstr "Metodi di pagamento" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:50 -msgid "" -"This is where payment gateway options are defined, and individual payment " -"gateways are set up." -msgstr "" -"Qui è dove vengono definite le opzioni di gateway di pagamento, e i singoli " -"sistemi di pagamento sono impostati." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:51 -#: admin/woocommerce-admin-settings.php:189 -msgid "Emails" -msgstr "Email" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:51 -msgid "Here you can customise the way WooCommerce emails appear." -msgstr "" -"Qui è possibile personalizzare il modo in cui appaiono le e-mail WooCommerce." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:52 -#: admin/woocommerce-admin-settings.php:190 -msgid "Integration" -msgstr "Integrazioni" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:52 -msgid "" -"The integration section contains options for third party services which " -"integrate with WooCommerce." -msgstr "" -"La sezione contiene le opzioni per l'integrazione di servizi di terze parti " -"che si integrano con WooCommerce." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:57 admin/woocommerce-admin-init.php:64 -msgid "Reports" -msgstr "Rapporti" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:59 -msgid "" -"The reports section can be accessed from the left-hand navigation menu. Here " -"you can generate reports for sales and customers." -msgstr "" -"Alla sezione rapporti è possibile accedere dal menu di navigazione a " -"sinistra. Qui è possibile generare rapporti per vendite e clienti." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:60 -#: admin/woocommerce-admin-reports.php:27 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1208 -msgid "Sales" -msgstr "Vendite" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:60 -msgid "Reports for sales based on date, top sellers and top earners." -msgstr "" -"Rapporti per vendite in base alla data, ai prodotti più venduti e ai " -"prodotti di più alto guadagno." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:61 -msgid "Coupon usage reports." -msgstr "Report di utilizzo coupon." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:62 -#: admin/woocommerce-admin-reports.php:83 -msgid "Customers" -msgstr "Clienti" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:62 -msgid "Customer reports, such as signups per day." -msgstr "Report sui clienti, come ad esempio registrazioni per giorno." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:63 -#: admin/woocommerce-admin-reports.php:94 admin/post-types/product.php:94 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:83 -msgid "Stock" -msgstr "Magazzino" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:63 -msgid "Stock reports for low stock and out of stock items." -msgstr "Rapporti magazzino per pochi pezzi rimasti e articoli fuori stock." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:70 -msgid "" -"The orders section can be accessed from the left-hand navigation menu. Here " -"you can view and manage customer orders." -msgstr "" -"É possibile accedere alla sezione ordini dal menu di navigazione a sinistra. " -"Qui è possibile visualizzare e gestire gli ordini dei clienti." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:71 -msgid "" -"Orders can also be added from this section if you want to set them up for a " -"customer manually." -msgstr "" -"Gli ordini possono anche essere aggiunti da questa sezione se si desidera " -"impostarli manualmente per un cliente." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:78 -msgid "" -"Coupons can be managed from this section. Once added, customers will be able " -"to enter coupon codes on the cart/checkout page. If a customer uses a coupon " -"code they will be viewable when viewing orders." -msgstr "" -"I coupon possono essere gestiti da questa sezione. Una volta aggiunti, i " -"clienti saranno in grado di inserire codici promozionali nel carrello/pagina " -"di checkout. Se un cliente utilizza un codice promozionale questo sarà " -"visibile mentre si visualizzano gli ordini." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:82 -msgid "For more information:" -msgstr "Per maggiori informazioni:" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:83 admin/woocommerce-admin-init.php:62 -#: classes/class-wc-order.php:1168 classes/class-wc-order.php:1170 -#: classes/class-wc-order.php:1173 -msgid "WooCommerce" -msgstr "WooCommerce" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:84 -msgid "Project on WordPress.org" -msgstr "Project on WordPress.org" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:85 -msgid "Project on Github" -msgstr "Project on Github" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:86 -msgid "WooCommerce Docs" -msgstr "WooCommerce Docs" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:87 -msgid "Official Extensions" -msgstr "Estensioni ufficiali" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:88 -msgid "Official Themes" -msgstr "Temi ufficiali" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:40 -msgid "Monthly Sales" -msgstr "Vendite mensili" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:43 -msgid "WooCommerce Right Now" -msgstr "WooCommerce proprio ora" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:44 -msgid "WooCommerce Recent Orders" -msgstr "WooCommerce Ordini Recenti" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:45 -#: classes/widgets/class-wc-widget-recent-reviews.php:33 -msgid "WooCommerce Recent Reviews" -msgstr "WooCommerce Recensioni Recenti" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:78 -msgid "Shop Content" -msgstr "Contenuto Negozio" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:126 -msgid "Attribute" -msgid_plural "Attributes" -msgstr[0] "Attributo" -msgstr[1] "Attributi" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:148 -msgid "Pending" -msgstr "In sospeso" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:162 -msgid "On-Hold" -msgstr "In attesa di pagamento" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:176 -#: admin/post-types/shop_order.php:158 -msgid "Processing" -msgstr "In lavorazione" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:190 -msgid "Completed" -msgstr "Completati" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:207 -#, php-format -msgid "You are using WooCommerce %s." -msgstr "Stai usando WooCommerce %s." - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:238 -msgid "l jS \\of F Y h:i:s A" -msgstr "l jS \\of F Y h:i:s A" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:239 -msgid "item" -msgid_plural "items" -msgstr[0] "prodotto" -msgstr[1] "prodotti" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:239 -#: classes/shortcodes/class-wc-shortcode-pay.php:98 -#: templates/checkout/thankyou.php:48 -msgid "Total:" -msgstr "Totale:" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:245 -msgid "There are no product orders yet." -msgstr "Non ci sono ancora ordini di prodotti." - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:279 -#: classes/abstracts/abstract-wc-product.php:961 -#: templates/single-product-reviews.php:28 -#: templates/single-product/review.php:27 -msgid "out of 5" -msgstr "di 5" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:287 -msgid "There are no product reviews yet." -msgstr "Non ci sono ancora recensioni disponibili." - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:428 -msgid "Sold" -msgstr "Venduto" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:429 -msgid "Earned" -msgstr "Guadagno" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:190 -#: admin/woocommerce-admin-install.php:225 -msgid "Order Received" -msgstr "Ordine ricevuto" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:192 -msgid "" -"Thank you, we are now processing your order. Your order's details are below." -msgstr "" -"Grazie, stiamo elaborando il tuo ordine. I dettagli del tuo ordine sono qui " -"sotto." - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:194 -#: classes/shortcodes/class-wc-shortcode-pay.php:90 -#: templates/checkout/thankyou.php:40 -#: templates/emails/customer-completed-order.php:18 -#: templates/emails/customer-invoice.php:22 -#: templates/emails/customer-note.php:22 -#: templates/emails/customer-processing-order.php:18 -msgid "Order:" -msgstr "Ordine:" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:201 templates/cart/cart.php:30 -#: templates/emails/admin-new-order.php:23 -#: templates/emails/customer-completed-order.php:24 -#: templates/emails/customer-invoice.php:28 -#: templates/emails/customer-note.php:28 -#: templates/emails/customer-processing-order.php:24 -msgid "Quantity" -msgstr "Quantità" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:202 admin/post-types/product.php:96 -#: admin/post-types/product.php:568 admin/post-types/product.php:789 -#: templates/cart/cart.php:29 templates/emails/admin-new-order.php:24 -#: templates/emails/customer-completed-order.php:25 -#: templates/emails/customer-invoice.php:29 -#: templates/emails/customer-note.php:29 -#: templates/emails/customer-processing-order.php:25 -msgid "Price" -msgstr "Prezzo" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:214 -msgid "Order total:" -msgstr "Totale ordine:" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:220 -#: templates/emails/admin-new-order.php:50 -#: templates/emails/customer-completed-order.php:51 -#: templates/emails/customer-note.php:55 -#: templates/emails/customer-processing-order.php:51 -#: templates/emails/plain/admin-new-order.php:38 -#: templates/order/order-details.php:97 -msgid "Customer details" -msgstr "Dettagli cliente" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:226 -#: templates/emails/email-addresses.php:18 -#: templates/emails/plain/email-addresses.php:12 -msgid "Billing address" -msgstr "Indirizzo fatturazione" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:233 -#: templates/emails/email-addresses.php:28 -#: templates/emails/plain/email-addresses.php:17 -msgid "Shipping address" -msgstr "Indirizzo spedizione" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:465 -msgid "Could not compile woocommerce.less:" -msgstr "Impossibile compilare woocommerce.less:" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:486 -#: admin/woocommerce-admin-functions.php:487 -msgid "Mark processing" -msgstr "Segna in elaborazione" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:489 -#: admin/woocommerce-admin-functions.php:490 -msgid "Mark completed" -msgstr "Segna completato" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:527 -msgid "Order status changed by bulk edit:" -msgstr "Stato dell'ordine cambiato tramite modifica di massa:" - -# @ default -#: admin/woocommerce-admin-functions.php:550 -#, php-format -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "Stato dell'ordine cambiato." -msgstr[1] "%s stati degli ordini cambiati." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:86 -msgid "WooCommerce Settings" -msgstr "Impostazioni WooCommerce" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:87 -msgid "WooCommerce Status" -msgstr "WooCommerce Stato" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:430 -msgid "" -"Are you sure you want to remove the selected items? If you have previously " -"reduced this item's stock, or this order was submitted by a customer, you " -"will need to manually restore the item's stock." -msgstr "" -"Sei sicuro di voler rimuovere i prodotti selezionati? Se in precedenza hai " -"ridotto il magazzino di questo prodotto, o questo ordine è stato inviato da " -"un cliente, sarà necessario ripristinare manualmente lo stock dell'articolo." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:431 -msgid "Please select some items." -msgstr "Si prega di selezionare alcuni elementi." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:432 -msgid "Remove this item meta?" -msgstr "Rimuovi i metadati per questo articolo?" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:433 -msgid "Remove this attribute?" -msgstr "Rimuovere questo attributo?" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:435 -#: admin/post-types/writepanels/variation-admin-html.php:6 -#: admin/post-types/writepanels/writepanel-product_data.php:367 -#: admin/post-types/writepanels/writepanel-product_data.php:461 -msgid "Remove" -msgstr "Rimuovere" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:436 -#: admin/post-types/writepanels/order-download-permission-html.php:7 -#: admin/post-types/writepanels/variation-admin-html.php:7 -#: admin/post-types/writepanels/writepanel-product_data.php:368 -#: admin/post-types/writepanels/writepanel-product_data.php:462 -msgid "Click to toggle" -msgstr "Fare clic per attivare o disattivare" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:437 -#: admin/post-types/writepanels/writepanel-product_data.php:383 -#: admin/post-types/writepanels/writepanel-product_data.php:475 -msgid "Value(s)" -msgstr "Valore(i)" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:438 -#: admin/post-types/writepanels/writepanel-product_data.php:476 -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "" -"Inserire del testo, o alcuni attributi separando i valori col simbolo (|)." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:439 -#: admin/post-types/writepanels/writepanel-product_data.php:426 -#: admin/post-types/writepanels/writepanel-product_data.php:481 -msgid "Visible on the product page" -msgstr "Visibile nella pagina prodotto" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:440 -#: admin/post-types/writepanels/writepanel-product_data.php:439 -#: admin/post-types/writepanels/writepanel-product_data.php:487 -msgid "Used for variations" -msgstr "Usato nelle variazioni" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:441 -msgid "Enter a name for the new attribute term:" -msgstr "Immettere un nome per il nuovo termine di attributo:" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:442 -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "Calcolare i totali in base alle voci dell'ordine, sconti e spedizione?" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:443 -msgid "" -"Calculate line taxes? This will calculate taxes based on the customers " -"country. If no billing/shipping is set it will use the store base country." -msgstr "" -"Calcolare le tasse per riga? Questo calcolerà le imposte in base allla " -"nazione dei clienti. Se nessun di indirizzo di fatturazione o spedizione è " -"stato impostato verrà utilizzata la nazione in cui si trova negozio." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:444 -msgid "" -"Copy billing information to shipping information? This will remove any " -"currently entered shipping information." -msgstr "" -"Copia i dati di fatturazione sui dati di spedizione? Questa operazione " -"rimuoverà gli eventuali dati di spedizione inseriti." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:445 -msgid "" -"Load the customer's billing information? This will remove any currently " -"entered billing information." -msgstr "" -"Caricare i dati di fatturazione del cliente? Questo elimina ogni " -"informazione di fatturazione attualmente inserita." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:446 -msgid "" -"Load the customer's shipping information? This will remove any currently " -"entered shipping information." -msgstr "" -"Caricare dati di spedizione del cliente? Questo elimina ogni informazione di " -"spedizione attualmente inserita." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:447 admin/post-types/product.php:100 -#: admin/post-types/product.php:632 admin/post-types/product.php:906 -#: admin/post-types/writepanels/writepanel-product_data.php:1056 -msgid "Featured" -msgstr "In Evidenza" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:450 -msgid "No customer selected" -msgstr "Nessun cliente selezionato" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:661 -#, php-format -msgid "Product updated. View Product" -msgstr "Prodotto aggiornato. Vedi Prodotto" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:662 admin/woocommerce-admin-init.php:677 -#: admin/woocommerce-admin-init.php:692 -msgid "Custom field updated." -msgstr "Campo personalizzato aggiornato." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:663 admin/woocommerce-admin-init.php:678 -#: admin/woocommerce-admin-init.php:693 -msgid "Custom field deleted." -msgstr "Campo personalizzato cancellato." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:664 -msgid "Product updated." -msgstr "Prodotto aggiornato." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:665 -#, php-format -msgid "Product restored to revision from %s" -msgstr "Prodotto ripristinato alla revisione da %s" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:666 -#, php-format -msgid "Product published. View Product" -msgstr "Prodotto pubblicato. Vedi Prodotto" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:667 -msgid "Product saved." -msgstr "Prodotto salvato." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:668 -#, php-format -msgid "Product submitted. Preview Product" -msgstr "Prodotto inviato. Anteprima Prodotto" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:669 -#, php-format -msgid "" -"Product scheduled for: %1$s. Preview Product" -msgstr "" -"Prodotto previsto per: %1$s. Anteprima Prodotto" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:670 admin/woocommerce-admin-init.php:685 -#: admin/woocommerce-admin-init.php:700 -msgid "M j, Y @ G:i" -msgstr "M j, Y @ G:i" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:671 -#, php-format -msgid "" -"Product draft updated. Preview Product" -msgstr "" -"Bozza prodotto aggiornata. Anteprima " -"prodotto" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:676 admin/woocommerce-admin-init.php:679 -#: admin/woocommerce-admin-init.php:681 -msgid "Order updated." -msgstr "Ordine aggiornato." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:680 -#, php-format -msgid "Order restored to revision from %s" -msgstr "Ordine ripristinato alla revisione da %s" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:682 -msgid "Order saved." -msgstr "Ordine salvato." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:683 -msgid "Order submitted." -msgstr "Ordine inviato." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:684 -#, php-format -msgid "Order scheduled for: %1$s." -msgstr "Ordine previsto per: %1$s. " - -# @ woocommerce -#: admin/woocommerce-admin-init.php:686 -msgid "Order draft updated." -msgstr "Bozza ordine aggiornata." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:691 admin/woocommerce-admin-init.php:694 -#: admin/woocommerce-admin-init.php:696 -msgid "Coupon updated." -msgstr "Coupon aggiornato." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:695 -#, php-format -msgid "Coupon restored to revision from %s" -msgstr "Coupon ripristinato alla revisione da %s" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:697 -msgid "Coupon saved." -msgstr "Coupon salvato." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:698 -msgid "Coupon submitted." -msgstr "Coupon inviato." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:699 -#, php-format -msgid "Coupon scheduled for: %1$s." -msgstr "Coupon previsto per: %1$s. " - -# @ woocommerce -#: admin/woocommerce-admin-init.php:701 -msgid "Coupon draft updated." -msgstr "Bozza coupon aggiornata." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:718 -msgid "Order notes" -msgstr "Note d'ordine" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:733 -msgid "" -"These settings control the permalinks used for products. These settings only " -"apply when not using \"default\" permalinks above." -msgstr "" -"Queste impostazioni controllano i permalink utilizzati per i prodotti. " -"Queste impostazioni si applicano solo quando non si usano i " -"permalink di \"default \" ." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:740 -msgctxt "default-slug" -msgid "shop" -msgstr "shop" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:741 -msgctxt "default-slug" -msgid "product" -msgstr "prodotto" - -# @ woocommerce -# @ default -#: admin/woocommerce-admin-init.php:753 -#: admin/woocommerce-admin-taxonomies.php:27 -#: admin/woocommerce-admin-taxonomies.php:121 -#: admin/settings/settings-payment-gateways.php:27 -#: admin/settings/settings-shipping-methods.php:29 -msgid "Default" -msgstr "Default" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:762 -msgid "Shop base" -msgstr "Shop base" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:766 -msgid "Shop base with category" -msgstr "Shop base con categoria" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:772 -msgid "Custom Base" -msgstr "Base personalizzata" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:774 -msgid "" -"Enter a custom base to use. A base must be set or WordPress " -"will use default instead." -msgstr "" -"Inserire una base personalizzata da utilizzare. Una base deve " -"essere impostata o WordPress utilizzerà quella di default." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:802 -msgid "Product permalink base" -msgstr "Permalink base prodotto" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:807 -msgid "Product category base" -msgstr "Base categoria prodotto" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:814 -msgid "Product tag base" -msgstr "Base etichetta prodotto" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:821 -msgid "Product attribute base" -msgstr "Base attributi prodotto" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:195 -msgctxt "page_slug" -msgid "shop" -msgstr "shop" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:195 -msgid "Shop" -msgstr "Shop" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:198 -msgctxt "page_slug" -msgid "cart" -msgstr "carrello" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:198 -#: admin/woocommerce-admin-status.php:303 -#: assets/js/admin/editor_plugin_lang.php:15 -#: classes/widgets/class-wc-widget-cart.php:61 -msgid "Cart" -msgstr "Carrello" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:201 -msgctxt "page_slug" -msgid "checkout" -msgstr "checkout" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:201 -#: admin/woocommerce-admin-status.php:307 admin/settings/settings-init.php:114 -#: assets/js/admin/editor_plugin_lang.php:16 -msgid "Checkout" -msgstr "Cassa" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:204 -msgctxt "page_slug" -msgid "my-account" -msgstr "mio-account" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:204 -#: admin/woocommerce-admin-status.php:319 -#: assets/js/admin/editor_plugin_lang.php:18 -#: templates/checkout/thankyou.php:30 -msgid "My Account" -msgstr "Il mio account" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:207 -#: admin/includes/updates/woocommerce-update-2.0.php:179 -msgctxt "page_slug" -msgid "lost-password" -msgstr "password-smarrita" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:207 -#: admin/woocommerce-admin-status.php:335 -#: admin/includes/updates/woocommerce-update-2.0.php:179 -msgid "Lost Password" -msgstr "Password smarrita" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:210 -msgctxt "page_slug" -msgid "edit-address" -msgstr "modifica-indirizzo" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:210 -msgid "Edit My Address" -msgstr "Modifica il mio indirizzo" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:213 -msgctxt "page_slug" -msgid "view-order" -msgstr "vedi-ordine" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:216 -msgctxt "page_slug" -msgid "change-password" -msgstr "cambio-password" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:216 -#: admin/woocommerce-admin-status.php:331 -#: assets/js/admin/editor_plugin_lang.php:20 -msgid "Change Password" -msgstr "Cambia la password" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:219 -msgctxt "page_slug" -msgid "logout" -msgstr "logout" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:219 -msgid "Logout" -msgstr "Logout" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:222 -msgctxt "page_slug" -msgid "pay" -msgstr "pagamento" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:222 -msgid "Checkout → Pay" -msgstr "Checkout → Pagamento" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:225 -msgctxt "page_slug" -msgid "order-received" -msgstr "ordine-ricevuto" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:36 -msgid "Sales by day" -msgstr "Vendite al giorno" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:41 -msgid "Sales by month" -msgstr "Vendite al mese" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:46 -msgid "Product Sales" -msgstr "Vendite prodotto" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:51 -msgid "Top sellers" -msgstr "I più venduti" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:56 -msgid "Top earners" -msgstr "Maggior guadagno" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:61 -msgid "Sales by category" -msgstr "Vendite per categoria" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:76 -msgid "Discounts by coupon" -msgstr "Sconti per coupon" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:108 -msgid "Taxes by month" -msgstr "Tasse per mese" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:237 -#: admin/woocommerce-admin-reports.php:502 -#: admin/woocommerce-admin-reports.php:707 -#: admin/woocommerce-admin-reports.php:888 -msgid "Sales amount" -msgstr "Importo delle vendite" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:242 -#: admin/woocommerce-admin-reports.php:502 -#: admin/woocommerce-admin-reports.php:707 -#: admin/woocommerce-admin-reports.php:888 -msgid "Number of sales" -msgstr "Numero delle vendite" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:374 -msgid "Total sales" -msgstr "Vendite totali" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:376 -#: admin/woocommerce-admin-reports.php:382 -#: admin/woocommerce-admin-reports.php:388 -#: admin/woocommerce-admin-reports.php:394 -#: admin/woocommerce-admin-reports.php:400 -#: admin/woocommerce-admin-reports.php:406 -#: admin/woocommerce-admin-reports.php:649 -#: admin/woocommerce-admin-reports.php:655 -#: admin/woocommerce-admin-reports.php:661 -#: admin/woocommerce-admin-reports.php:667 -#: admin/woocommerce-admin-reports.php:833 -#: admin/woocommerce-admin-reports.php:839 -#: admin/woocommerce-admin-reports.php:845 -#: admin/woocommerce-admin-reports.php:851 -#: admin/woocommerce-admin-reports.php:1374 -#: admin/woocommerce-admin-reports.php:1380 -#: admin/woocommerce-admin-reports.php:1386 -#: admin/woocommerce-admin-reports.php:1820 -#: admin/woocommerce-admin-reports.php:1826 -#: admin/woocommerce-admin-reports.php:1832 -#: admin/woocommerce-admin-reports.php:1838 -#: admin/woocommerce-admin-reports.php:1844 -#: admin/woocommerce-admin-reports.php:1850 -#: admin/woocommerce-admin-reports.php:2314 -#: admin/woocommerce-admin-reports.php:2325 -#: admin/woocommerce-admin-reports.php:2336 -msgid "n/a" -msgstr "n/a" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:380 -msgid "Total orders" -msgstr "Ordini totali" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:382 -#: admin/woocommerce-admin-reports.php:655 -#: admin/woocommerce-admin-reports.php:839 -msgid "items" -msgstr "articoli" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:386 -msgid "Average order total" -msgstr "Media totale ordine" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:392 -msgid "Average order items" -msgstr "Media articoli per ordine" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:398 -msgid "Discounts used" -msgstr "Sconti utilizzati" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:404 -msgid "Total shipping costs" -msgstr "Totale costi di spedizione" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:412 -msgid "This month's sales" -msgstr "Vendite del mese corrente" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:641 -#: admin/woocommerce-admin-reports.php:985 -#: admin/woocommerce-admin-reports.php:1083 -#: admin/woocommerce-admin-reports.php:1366 -msgid "From:" -msgstr "Da:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:641 -#: admin/woocommerce-admin-reports.php:985 -#: admin/woocommerce-admin-reports.php:1083 -#: admin/woocommerce-admin-reports.php:1366 -msgid "To:" -msgstr "A:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:641 -#: admin/woocommerce-admin-reports.php:826 -#: admin/woocommerce-admin-reports.php:985 -#: admin/woocommerce-admin-reports.php:1083 -#: admin/woocommerce-admin-reports.php:1239 -#: admin/woocommerce-admin-reports.php:1366 -#: admin/woocommerce-admin-reports.php:1499 -#: admin/woocommerce-admin-reports.php:2303 -#: admin/woocommerce-admin-reports.php:2486 -msgid "Show" -msgstr "Mostra" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:647 -msgid "Total sales in range" -msgstr "Totale vendite nell'intervallo" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:653 -msgid "Total orders in range" -msgstr "Totale ordini nell'intervallo" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:659 -msgid "Average order total in range" -msgstr "Media totale ordine nell'intervallo" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:665 -msgid "Average order items in range" -msgstr "Media articoli per ordine nell'intervallo" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:673 -msgid "Sales in range" -msgstr "Vendite nell'intervallo" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:820 -#: admin/woocommerce-admin-reports.php:2297 -msgid "Year:" -msgstr "Anno:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:831 -msgid "Total sales for year" -msgstr "Vendite totali per l'anno" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:837 -msgid "Total orders for year" -msgstr "Totale ordini per l'anno" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:843 -msgid "Average order total for year" -msgstr "Media importo totale ordine per anno" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:849 -msgid "Average order items for year" -msgstr "Media prodotti per ordine per anno" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:857 -msgid "Monthly sales for year" -msgstr "Vendite mensili per anno" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1005 -msgid "Product does not exist" -msgstr "Il prodotto non esiste" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1104 -msgid "Product no longer exists" -msgstr "Il prodotto non esiste più" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1203 -#, php-format -msgid "Sales for %s:" -msgstr "Vendite per %s:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1207 -#: admin/woocommerce-admin-reports.php:2345 -msgid "Month" -msgstr "Mese" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1229 -msgid "No sales :(" -msgstr "Nessuna vendita :(" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1239 -#: admin/post-types/writepanels/writepanel-coupon_data.php:75 -#: admin/post-types/writepanels/writepanel-order_data.php:400 -#: admin/post-types/writepanels/writepanel-product_data.php:522 -#: admin/post-types/writepanels/writepanel-product_data.php:539 -msgid "Search for a product…" -msgstr "Cerca un prodotto…" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1372 -msgid "Total orders containing coupons" -msgstr "Ordini totali contenenti coupon" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1378 -msgid "Percent of orders containing coupons" -msgstr "Percentuale degli ordini contenenti coupon" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1384 -msgid "Total coupon discount" -msgstr "Totale dei buoni sconto" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1393 -msgid "Most popular coupons" -msgstr "Coupon più popolari" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1403 -#, php-format -msgid "Used 1 time" -msgid_plural "Used %d times" -msgstr[0] "Usato 1 volta" -msgstr[1] "Usato %d volte" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1406 -#: admin/woocommerce-admin-reports.php:1428 -msgid "No coupons found" -msgstr "Nessun coupon trovato" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1415 -msgid "Greatest discount amount" -msgstr "Maggior sconto applicato" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1425 -#, php-format -msgid "Discounted %s" -msgstr "Scontato %s" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1484 -#: admin/woocommerce-admin-reports.php:2463 -msgid "Show:" -msgstr "Mostra:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1556 -#: admin/woocommerce-admin-reports.php:1609 -#: admin/woocommerce-admin-reports.php:2380 -#: admin/woocommerce-admin-reports.php:2549 -#: admin/woocommerce-admin-reports.php:2627 -#: admin/post-types/writepanels/order-fee-html.php:43 -#: admin/post-types/writepanels/order-item-html.php:121 -#: templates/cart/cart.php:31 templates/checkout/review-order.php:22 -#: templates/myaccount/my-orders.php:35 templates/order/order-details.php:21 -msgid "Total" -msgstr "Totale" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1624 -msgid "Top coupon" -msgstr "Top coupon" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1632 -msgid "Worst coupon" -msgstr "Peggior coupon" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1640 -msgid "Discount average" -msgstr "Sconto medio" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1648 -msgid "Discount median" -msgstr "Sconto mediano" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1652 -#: admin/woocommerce-admin-reports.php:2665 -#: admin/woocommerce-admin-reports.php:2674 -#: admin/woocommerce-admin-users.php:90 admin/woocommerce-admin-users.php:112 -#: admin/post-types/writepanels/order-fee-html.php:19 -#: admin/post-types/writepanels/order-tax-html.php:8 -#: admin/post-types/writepanels/writepanel-order_data.php:561 -#: admin/post-types/writepanels/writepanel-order_data.php:666 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:480 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:481 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:110 -#: templates/order/order-details.php:119 templates/order/order-details.php:134 -msgid "N/A" -msgstr "N/A" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1668 -msgid "Monthly discounts by coupon" -msgstr "Sconti mensili per coupon:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1818 -msgid "Total customers" -msgstr "Totale clienti" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1824 -msgid "Total customer sales" -msgstr "Totale vendite per clienti registrati" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1830 -msgid "Total guest sales" -msgstr "Totale vendite per clienti non registrati" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1836 -msgid "Total customer orders" -msgstr "Totale ordini per clienti registrati" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1842 -msgid "Total guest orders" -msgstr "Totale ordini per clienti non registrati" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1848 -msgid "Average orders per customer" -msgstr "Ordini medi per cliente" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1856 -msgid "Signups per day" -msgstr "Registrazioni al giorno" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2077 -msgid "Low stock" -msgstr "Poca disponibilità" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2093 -#: admin/woocommerce-admin-reports.php:2129 admin/post-types/product.php:91 -#: admin/post-types/product.php:557 -#: admin/post-types/writepanels/variation-admin-html.php:52 -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "SKU" -msgstr "COD" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2100 -#: admin/woocommerce-admin-reports.php:2139 -#, php-format -msgid "%d in stock" -msgid_plural "%d in stock" -msgstr[0] "%d in stock" -msgstr[1] "%d in stock" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2105 -msgid "No products are low in stock." -msgstr "Nessun prodotto è basso in stock" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2113 admin/post-types/product.php:264 -#: admin/post-types/product.php:642 admin/post-types/product.php:931 -#: admin/post-types/writepanels/writepanel-product_data.php:232 -#: classes/abstracts/abstract-wc-product.php:572 -#: classes/abstracts/abstract-wc-product.php:582 -#: classes/abstracts/abstract-wc-product.php:586 -msgid "Out of stock" -msgstr "Esaurito" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2137 -msgid "Marked out of stock" -msgstr "Contrassegnato esaurito" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2144 -msgid "No products are out in stock." -msgstr "Nessun prodotto è contrassegnato esaurito." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2308 -msgid "Total taxes for year" -msgstr "Tasse totali per anno" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2319 -msgid "Total product taxes for year" -msgstr "Totale tasse sui prodotti per anno" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2330 -msgid "Total shipping tax for year" -msgstr "Totale tasse sulle spedizioni per anno" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2346 -msgid "Total Sales" -msgstr "Vendite totali" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2346 -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "" -"Questa è la somma del campo 'Totale Ordini' all'interno dei tuoi ordini." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2347 -msgid "Total Shipping" -msgstr "Totale spedizioni" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2347 -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "" -"Questa è la somma del campo 'Totale Spedizioni' all'interno dei tuoi ordini." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2348 -msgid "Total Product Taxes" -msgstr "Totale tasse sui prodotti" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2348 -msgid "This is the sum of the 'Cart Tax' field within your orders." -msgstr "" -"Questa è la somma del campo 'Tasse Carrello ' all'interno dei vostri ordini." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2349 -msgid "Total Shipping Taxes" -msgstr "Totale imposte di spedizione" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2349 -msgid "This is the sum of the 'Shipping Tax' field within your orders." -msgstr "" -"Questa è la somma del campo 'Imposte di spedizione' all'interno dei vostri " -"ordini." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2350 -msgid "Total Taxes" -msgstr "Tasse totali" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2350 -msgid "" -"This is the sum of the 'Cart Tax' and 'Shipping Tax' fields within your " -"orders." -msgstr "" -"Questa è la somma dei campi 'Tasse Carrello' e 'Imposte di Spedizione' " -"all'interno dei vostri ordini." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2351 -msgid "Net profit" -msgstr "Utile netto" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2351 -msgid "Total sales minus shipping and tax." -msgstr "Totale vendite al netto di spedizione e tasse." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2396 -msgid "Toggle tax rows" -msgstr "Attivare o disattivare le righe d'imposta" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2539 -msgid "Category" -msgstr "Categoria" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2642 -msgid "Top category" -msgstr "Categoria Top" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2651 -msgid "Worst category" -msgstr "Peggior categoria" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2659 -msgid "Category sales average" -msgstr "Media di vendita per categoria" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2670 -msgid "Category sales median" -msgstr "mediana di vendita per categoria" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2690 -msgid "Monthly sales by category" -msgstr "Vendite mensili per categoria" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:164 -msgid "Your settings have been saved." -msgstr "Le impostazioni sono state salvate." - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:188 -#: admin/woocommerce-admin-settings.php:329 -#: admin/settings/settings-init.php:900 -msgid "Payment Gateways" -msgstr "Metodi di pagamento" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:210 -#, php-format -msgid "" -"More functionality and gateway options available via WC official extensions." -msgstr "" -"Cerca nelle WC official extensions. " -"più funzionalità e opzioni di pagamento." - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:222 -#: admin/settings/settings-init.php:918 -msgid "Tax Options" -msgstr "Opzioni delle Imposte" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:228 -msgid "Tax Rates" -msgstr "Aliquote" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:255 -msgid "Email Options" -msgstr "Opzioni email" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:292 -#: admin/settings/settings-init.php:823 -msgid "Shipping Options" -msgstr "Opzioni Spedizione" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:388 -#: classes/integrations/shareyourcart/views/admin-page.php:110 -#: classes/integrations/shareyourcart/views/button-settings-page.php:120 -msgid "Save changes" -msgstr "Salva Modifiche" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:429 -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "Le modifiche apportate andranno perse se si esce da questa pagina." - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:797 admin/post-types/product.php:602 -#: admin/post-types/product.php:880 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:86 -#: admin/post-types/writepanels/writepanel-product_data.php:287 -msgid "Width" -msgstr "Larghezza" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:799 admin/post-types/product.php:603 -#: admin/post-types/product.php:881 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:87 -#: admin/post-types/writepanels/writepanel-product_data.php:288 -msgid "Height" -msgstr "Altezza" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:801 -msgid "Hard Crop" -msgstr "Hard Crop" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:826 -msgid "Select a page…" -msgstr "Scegli una pagina…" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:849 -msgid "Choose a country…" -msgstr "Scegli una nazione…" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:869 -msgid "Choose countries…" -msgstr "Scegli più nazioni…" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:27 -#: admin/woocommerce-admin-status.php:664 -msgid "Tools" -msgstr "Strumenti" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:62 -msgid "Please include this information when requesting support:" -msgstr "" -"Si prega di includere queste informazioni quando si richiede assistenza:" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:63 -msgid "Download System Report File" -msgstr "Scarica file con report di sistema" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:71 -msgid "Environment" -msgstr "Environment" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:77 -msgid "Home URL" -msgstr "Home URL" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:81 -msgid "Site URL" -msgstr "Site URL" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:85 -msgid "WC Version" -msgstr "WC Version" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:89 -msgid "WC Database Version" -msgstr "WC Database Version" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:93 -msgid "WP Version" -msgstr "WP Version" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:97 -msgid "Web Server Info" -msgstr "Web Server Info" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:101 -msgid "PHP Version" -msgstr "PHP Version" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:105 -msgid "MySQL Version" -msgstr "MySQL Version" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:109 -msgid "WP Memory Limit" -msgstr "WP Memory Limit" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:114 -#, php-format -msgid "" -"%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "" -"%s - Si consiglia di impostare la memoria ad almeno 64 MB. Vedi: Aumentare la memoria allocata a PHP" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:121 -msgid "WP Debug Mode" -msgstr "WP Debug Mode" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:286 admin/post-types/product.php:912 -#: admin/post-types/product.php:948 admin/post-types/shop_order.php:190 -msgid "Yes" -msgstr "Si" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:286 admin/post-types/product.php:913 -#: admin/post-types/product.php:949 admin/post-types/shop_order.php:192 -msgid "No" -msgstr "No" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:125 -msgid "WP Max Upload Size" -msgstr "WP Dimensione Max Upload " - -# @ woocommerce -#: admin/woocommerce-admin-status.php:129 -msgid "PHP Post Max Size" -msgstr "PHP Post Max Size" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:133 -msgid "PHP Time Limit" -msgstr "PHP Time Limit" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:137 -msgid "WC Logging" -msgstr "WC Logging" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:140 -msgid "Log directory is writable." -msgstr "Directory di log è scrivibile." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:142 -msgid "" -"Log directory (woocommerce/logs/) is not writable. Logging will " -"not be possible." -msgstr "" -"Directory di log (woocommerce/logs/) non è scrivibile. La " -"registrazione non sarà possibile." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:149 -msgid "fsockopen/cURL" -msgstr "fsockopen/cURL" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:152 -msgid "Your server has fsockopen and cURL enabled." -msgstr "Il server ha fsockopen e cURL abilitati." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:154 -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "Il server ha abilitato fsockopen, cURL è disabilitato." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:156 -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "Il server ha abilitato cURL, fsockopen è disabilitato." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:160 -msgid "" -"Your server does not have fsockopen or cURL enabled - PayPal IPN and other " -"scripts which communicate with other servers will not work. Contact your " -"hosting provider." -msgstr "" -"Il server non ha né fsockopen né cURL abilitati - PayPal IPN ed altri script " -"che comunicano con gli altri server non funzioneranno. Rivolgersi al " -"fornitore di hosting." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:165 -msgid "SOAP Client" -msgstr "SOAP Client" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:167 -msgid "Your server has the SOAP Client class enabled." -msgstr "Il server ha il SOAP class Client abilitato." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:170 -#, php-format -msgid "" -"Your server does not have the SOAP Client class enabled - " -"some gateway plugins which use SOAP may not work as expected." -msgstr "" -"Il server non ha la classe SOAP Client abilitata – alcuni " -"plugin di gateway che utilizzano SOAP potrebbero non funzionare come " -"previsto." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:175 -msgid "WP Remote Post" -msgstr "WP Remote Post" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:186 -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "wp_remote_post() ha avuto successo - PayPal IPN sta funzionando." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:189 -msgid "" -"wp_remote_post() failed. PayPal IPN won't work with your server. Contact " -"your hosting provider. Error:" -msgstr "" -"wp_remote_post() fallito. PayPal IPN non funziona con il vostro server. " -"Rivolgersi al fornitore di hosting. Errore:" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:192 -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "" -"wp_remote_post() fallito. PayPal IPN potrebbe non funzionare con il vostro " -"server." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:215 -msgid "Plugins" -msgstr "Plugins" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:221 -msgid "Installed Plugins" -msgstr "Plugin installati" - -#: admin/woocommerce-admin-status.php:259 -msgid "is available" -msgstr "è disponibile" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:262 -msgid "by" -msgstr "by" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:262 -msgid "version" -msgstr "versione" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:285 -msgid "Force SSL" -msgstr "Forza SSL" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:292 -msgid "WC Pages" -msgstr "WC Pagine" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:299 -msgid "Shop Base" -msgstr "Shop Base" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:311 -#: assets/js/admin/editor_plugin_lang.php:22 -#: templates/checkout/thankyou.php:28 templates/myaccount/my-orders.php:71 -msgid "Pay" -msgstr "Pagamento" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:315 -msgid "Thanks" -msgstr "Ringraziamenti" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:323 -#: assets/js/admin/editor_plugin_lang.php:19 -msgid "Edit Address" -msgstr "Modifica Indirizzo" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:355 -msgid "Page not set" -msgstr "La pagina non è impostata" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:365 -msgid "Page does not exist" -msgstr "La pagina non esiste" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:370 -#, php-format -msgid "Page does not contain the shortcode: %s" -msgstr "La pagina non contiene lo shortcode: %s" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:389 -msgid "WC Taxonomies" -msgstr "WC Tassonomie" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:395 -msgid "Order Statuses" -msgstr "Stati dell'ordine" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:405 -msgid "Product Types" -msgstr "Tipi prodotto" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:418 -msgid "Templates" -msgstr "Templates" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:424 -msgid "Template Overrides" -msgstr "Template Overrides" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:442 -msgid "No core overrides present in theme." -msgstr "Nessun override del core è presente nel tema." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:537 -msgid "WC Transients" -msgstr "WC Transients" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:538 -msgid "Clear transients" -msgstr "Elimina i transients" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:539 -msgid "This tool will clear the product/shop transients cache." -msgstr "This tool will clear the product/shop transients cache." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:542 -msgid "Expired Transients" -msgstr "Expired Transients" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:543 -msgid "Clear expired transients" -msgstr "Clear expired transients" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:544 -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "This tool will clear ALL expired transients from Wordpress." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:547 -msgid "Term counts" -msgstr "Conteggio termini" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:548 -msgid "Recount terms" -msgstr "Riconteggia i termini" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:549 -msgid "" -"This tool will recount product terms - useful when changing your settings in " -"a way which hides products from the catalog." -msgstr "" -"Questo strumento riconteggia i termini di prodotto - utile quando si " -"modificano le impostazioni in modo che si nascondono prodotti dal catalogo." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:552 -msgid "Capabilities" -msgstr "Funzionalità" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:553 -msgid "Reset capabilities" -msgstr "Resetta le funzionalità" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:554 -msgid "" -"This tool will reset the admin, customer and shop_manager roles to default. " -"Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "" -"Questo strumento ripristinerà i ruoli admin, clienti e shop_manager al " -"default. Utilizzare questa opzione se gli utenti non possono accedere a " -"tutte le pagine di amministrazione WooCommerce." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:557 -msgid "Customer Sessions" -msgstr "Sessioni clienti" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:558 -msgid "Clear all sessions" -msgstr "Pulisci tutte le sessioni" - -#: admin/woocommerce-admin-status.php:559 -msgid "" -"Warning This tool will delete all customer " -"session data from the database, including any current live carts." -msgstr "" -"Warning Questo strumento cancellerà tutti i " -"dati della sessione del cliente dal database, comprese eventuali carrelli " -"attivi al momento." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:569 -msgid "Product Transients Cleared" -msgstr "Product Transients Azzerati" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:610 -#, php-format -msgid "%d Transients Rows Cleared" -msgstr "%d righe Transients azzerate" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:618 -msgid "Roles successfully reset" -msgstr "Ruoli resettati correttamente" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:630 -msgid "Terms successfully recounted" -msgstr "Termini ricontati correttamente" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:649 -#, php-format -msgid "There was an error calling %s::%s" -msgstr "C'è stato un errore chiamando %s::%s" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:652 -#, php-format -msgid "There was an error calling %s" -msgstr "C'è stato un errore di chiamata %s" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:25 -#: admin/woocommerce-admin-taxonomies.php:118 -msgid "Display type" -msgstr "Tipo di visualizzazione" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:29 -#: admin/woocommerce-admin-taxonomies.php:123 -msgid "Subcategories" -msgstr "Sottocategorie" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:30 -#: admin/woocommerce-admin-taxonomies.php:124 -msgid "Both" -msgstr "Entrambi" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:34 -#: admin/woocommerce-admin-taxonomies.php:129 -msgid "Thumbnail" -msgstr "Thumbnail" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:38 -#: admin/woocommerce-admin-taxonomies.php:134 -msgid "Upload/Add image" -msgstr "Carica/Aggiungi Immagine" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:39 -#: admin/woocommerce-admin-taxonomies.php:135 -msgid "Remove image" -msgstr "Rimuovere immagine" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:62 -#: admin/woocommerce-admin-taxonomies.php:154 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:517 -msgid "Choose an image" -msgstr "Scelta immagine" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:64 -#: admin/woocommerce-admin-taxonomies.php:156 -msgid "Use image" -msgstr "Usa immagine" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:222 -msgid "" -"Product categories for your store can be managed here. To change the order " -"of categories on the front-end you can drag and drop to sort them. To see " -"more categories listed click the \"screen options\" link at the top of the " -"page." -msgstr "" -"Le categorie di prodotti per il tuo negozio possono essere gestite da qui. " -"Per modificare l'ordine delle categorie sul front-end è possibile " -"trascinarle e rilasciarle per ordinarle. Per visualizzare altre categorie " -"elencate cliccare sul collegamento \"opzioni dello schermo \" nella parte " -"superiore della pagina." - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:237 -msgid "" -"Shipping classes can be used to group products of similar type. These groups " -"can then be used by certain shipping methods to provide different rates to " -"different products." -msgstr "" -"Le classi di spedizione possono essere utilizzate per raggruppare i prodotti " -"di tipo simile. Tali gruppi possono quindi essere utilizzati dalle modalità " -"di spedizione stabilite per offrire tariffe diverse per prodotti diversi." - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:297 admin/post-types/product.php:86 -msgid "Image" -msgstr "Immagine" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:365 -msgid "Edit Class" -msgstr "Modifica Classe" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:26 templates/checkout/form-billing.php:21 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:19 templates/myaccount/my-address.php:25 -#: templates/order/order-details.php:115 -msgid "Billing Address" -msgstr "Indirizzo Fatturazione" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:27 -#: templates/checkout/form-shipping.php:35 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:20 templates/order/order-details.php:130 -msgid "Shipping Address" -msgstr "Indirizzo Spedizione" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:28 -msgid "Paying Customer?" -msgstr "Cliente pagante?" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:29 -msgid "Completed Orders" -msgstr "Ordini completati" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:144 -msgid "Customer Billing Address" -msgstr "Indirizzo di fatturazione del cliente" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:147 admin/woocommerce-admin-users.php:196 -msgid "First name" -msgstr "Nome" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:151 admin/woocommerce-admin-users.php:200 -msgid "Last name" -msgstr "Cognome" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:155 admin/woocommerce-admin-users.php:204 -#: admin/post-types/writepanels/writepanel-order_data.php:152 -#: admin/post-types/writepanels/writepanel-order_data.php:242 -msgid "Company" -msgstr "Società" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:159 admin/woocommerce-admin-users.php:208 -#: admin/post-types/writepanels/writepanel-order_data.php:156 -#: admin/post-types/writepanels/writepanel-order_data.php:246 -msgid "Address 1" -msgstr "Indirizzo 1" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:163 admin/woocommerce-admin-users.php:212 -#: admin/post-types/writepanels/writepanel-order_data.php:160 -#: admin/post-types/writepanels/writepanel-order_data.php:250 -msgid "Address 2" -msgstr "Indirizzo 2" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:167 admin/woocommerce-admin-users.php:216 -#: admin/post-types/writepanels/writepanel-order_data.php:164 -#: admin/post-types/writepanels/writepanel-order_data.php:254 -#: admin/settings/settings-tax-rates.php:42 -#: admin/settings/settings-tax-rates.php:217 -msgid "City" -msgstr "Città" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:171 admin/woocommerce-admin-users.php:220 -#: admin/post-types/writepanels/writepanel-order_data.php:168 -#: admin/post-types/writepanels/writepanel-order_data.php:258 -#: classes/class-wc-countries.php:955 -#: templates/cart/shipping-calculator.php:68 -msgid "Postcode" -msgstr "C.A.P." - -# @ woocommerce -#: admin/woocommerce-admin-users.php:175 admin/woocommerce-admin-users.php:224 -#: admin/post-types/writepanels/writepanel-order_data.php:178 -#: admin/post-types/writepanels/writepanel-order_data.php:268 -msgid "State/County" -msgstr "Provincia" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:176 -msgid "Country or state code" -msgstr "Stato" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:179 admin/woocommerce-admin-users.php:228 -#: admin/post-types/writepanels/writepanel-order_data.php:172 -#: admin/post-types/writepanels/writepanel-order_data.php:262 -#: classes/class-wc-countries.php:678 -msgid "Country" -msgstr "Stato" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:180 admin/woocommerce-admin-users.php:229 -msgid "2 letter Country code" -msgstr "Codice stato 2 lettere" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:183 -msgid "Telephone" -msgstr "Telefono" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:187 -#: admin/post-types/writepanels/writepanel-order_data.php:182 -#: templates/single-product-reviews.php:86 -#: templates/myaccount/form-login.php:78 -msgid "Email" -msgstr "Email" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:193 -msgid "Customer Shipping Address" -msgstr "Indirizzo di spedizione del cliente" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:225 -msgid "State/County or state code" -msgstr "Stato/Provincia o il codice di Stato" - -# @ woocommerce -#: admin/importers/importers-init.php:13 -msgid "WooCommerce Tax Rates (CSV)" -msgstr "WooCommerce Tax Rates (CSV)" - -# @ woocommerce -#: admin/importers/importers-init.php:13 -msgid "Import tax rates to your store via a csv file." -msgstr "" -"Importazione aliquote fiscali per il tuo negozio tramite un " -"file CSV." - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:103 -#: admin/importers/tax-rates-importer.php:186 -#: admin/importers/tax-rates-importer.php:226 -#: admin/importers/tax-rates-importer.php:241 -msgid "Sorry, there has been an error." -msgstr "Siamo spiacenti, si è verificato un errore." - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:104 -msgid "The file does not exist, please try again." -msgstr "Il file non esiste, si prega di riprovare." - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:187 -msgid "The CSV is invalid." -msgstr "Il CSV non è valido." - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:198 -#, php-format -msgid "" -"Import complete - imported %s tax rates and skipped " -"%s." -msgstr "" -"Importazione completa - importato % s aliquote fiscali e " -"saltato % s." - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:208 -msgid "All done!" -msgstr "Fatto tutto!" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:208 -msgid "View Tax Rates" -msgstr "Visualizza Aliquote" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:259 -msgid "Import Tax Rates" -msgstr "Importa Aliquote" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:282 -msgid "" -"Hi there! Upload a CSV file containing tax rates to import the contents into " -"your shop. Choose a .csv file to upload, then click \"Upload file and import" -"\"." -msgstr "" -"Hi there! Carica un file CSV contenente le aliquote fiscali per importarne " -"il contenuto nel vostro negozio. Scegliere un file .csv da caricare, quindi " -"fare clic su \"Carica e importa file\"." - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:284 -#, php-format -msgid "" -"Tax rates need to be defined with columns in a specific order (10 columns). " -"Click here to download a sample." -msgstr "" -"Le aliquote fiscali devono essere definiti con colonne in un ordine " -"specifico (10 colonne). Clicca qui per scaricare un esempio." - -# @ default -#: admin/importers/tax-rates-importer.php:292 -msgid "" -"Before you can upload your import file, you will need to fix the following " -"error:" -msgstr "" -"Prima di caricare il file di importazione, è necessario risolvere il " -"seguente errore:" - -# @ default -#: admin/importers/tax-rates-importer.php:301 -msgid "Choose a file from your computer:" -msgstr "Scegli un file dal tuo computer:" - -# @ default -#: admin/importers/tax-rates-importer.php:307 -#, php-format -msgid "Maximum size: %s" -msgstr "Dimensione massima: %s" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:312 -msgid "OR enter path to file:" -msgstr "OR digitare il percorso al file:" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:319 -msgid "Delimiter" -msgstr "Separatore" - -# @ woocommerce -#: admin/includes/duplicate_product.php:23 -msgid "No product to duplicate has been supplied!" -msgstr "Nessun prodotto da duplicare è stato fornito!" - -# @ woocommerce -#: admin/includes/duplicate_product.php:43 -msgid "Product creation failed, could not find original product:" -msgstr "" -"Creazione del prodotto non riuscita, impossibile trovare prodotto originale:" - -# @ woocommerce -#: admin/includes/duplicate_product.php:90 -msgid "(Copy)" -msgstr "(Copy)" - -# @ woocommerce -#: admin/includes/notice-install.php:6 -msgid "" -"Welcome to WooCommerce – You're almost ready to start " -"selling :)" -msgstr "" -"Benvenuti in WooCommerce – Sei quasi pronto per " -"iniziare a vendere :)" - -# @ woocommerce -#: admin/includes/notice-install.php:7 -msgid "Install WooCommerce Pages" -msgstr "Installare le pagine WooCommerce " - -# @ woocommerce -#: admin/includes/notice-install.php:7 -msgid "Skip setup" -msgstr "Salta configurazione" - -# @ woocommerce -#: admin/includes/notice-theme-support.php:6 -msgid "" -"Your theme does not declare WooCommerce support – if " -"you encounter layout issues please read our integration guide or choose a " -"WooCommerce theme :)" -msgstr "" -"Il tuo tema non dichiara il supporto a WooCommerce – " -"se si riscontrano problemi di layout si prega di leggere la nostra guida per " -"l'integrazione o scegli un tema WooCommerce :)" - -# @ woocommerce -#: admin/includes/notice-theme-support.php:7 -msgid "Theme Integration Guide" -msgstr "Theme Integration Guide" - -# @ woocommerce -#: admin/includes/notice-theme-support.php:7 -msgid "Hide this notice" -msgstr "Nascondi questo avviso" - -# @ woocommerce -#: admin/includes/notice-update.php:6 -msgid "" -"Data Update Required – We just need to update your " -"install to the latest version" -msgstr "" -"Aggiornamento dati obbligatorio – Abbiamo solo " -"bisogno di aggiornare la vostra installazione alla versione più recente" - -# @ woocommerce -#: admin/includes/notice-update.php:7 -msgid "Run the updater" -msgstr "Eseguire il programma di aggiornamento" - -# @ woocommerce -#: admin/includes/notice-update.php:12 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Si raccomanda vivamente di eseguire il backup del database prima di " -"procedere. Sei sicuro di eseguire il programma di aggiornamento adesso?" - -# @ woocommerce -#: admin/includes/welcome.php:48 -msgid "Welcome to WooCommerce" -msgstr "Benvenuti in WooCommerce" - -# @ woocommerce -#: admin/includes/welcome.php:135 -#, php-format -msgid "Welcome to WooCommerce %s" -msgstr "Benvenuti in WooCommerce %s" - -# @ woocommerce -#: admin/includes/welcome.php:140 -msgid "Thanks, all done!" -msgstr "Grazie, fatto tutto!" - -# @ woocommerce -#: admin/includes/welcome.php:142 -msgid "Thank you for updating to the latest version!" -msgstr "Grazie per l'aggiornamento alla versione più recente!" - -# @ woocommerce -#: admin/includes/welcome.php:144 -msgid "Thanks for installing!" -msgstr "Grazie per l'installazione!" - -# @ woocommerce -#: admin/includes/welcome.php:146 -#, php-format -msgid "" -"%s WooCommerce %s is more powerful, stable, and secure than ever before. We " -"hope you enjoy it." -msgstr "" -"% s WooCommerce% s è più potente, stabile e sicuro che mai. Speriamo che vi " -"piaccia." - -# @ default -#: admin/includes/welcome.php:150 -#, php-format -msgid "Version %s" -msgstr "Versione %s" - -# @ woocommerce -#: admin/includes/welcome.php:161 -msgid "What's New" -msgstr "Cosa c'è di nuovo" - -# @ woocommerce -#: admin/includes/welcome.php:163 -msgid "Credits" -msgstr "Crediti" - -# @ woocommerce -#: admin/includes/welcome.php:186 -msgid "Security in mind" -msgstr "Security in mind" - -# @ woocommerce -#: admin/includes/welcome.php:190 -msgid "Sucuri Safe Plugin" -msgstr "Sucuri Safe Plugin" - -# @ woocommerce -#: admin/includes/welcome.php:191 -msgid "" -"You will be happy to learn that WooCommerce has been audited and certified " -"by the Sucuri Security team. Whilst there is not much to be seen visually to " -"understand the amount of work that went into this audit, rest assured that " -"your website is powered by one of the most powerful and stable eCommerce " -"plugins available." -msgstr "" -"Sarete felici di sapere che WooCommerce è stato verificato e certificato da " -"parte del team di sicurezza Sucuri. Anche se non c'è molto da vedere " -"visivamente per capire la quantità di lavoro che è stato fatto in questa " -"revisione, siate certi che il vostro sito è basato sulla tecnologia di uno " -"dei più potenti e stabili plugin eCommerce disponibili." - -# @ woocommerce -#: admin/includes/welcome.php:194 -msgid "A Smoother Admin Experience" -msgstr "Un'esperienza di amministrazione più agevole" - -# @ woocommerce -#: admin/includes/welcome.php:200 -msgid "New Product Panel" -msgstr "Nuovo pannello di prodotto" - -# @ woocommerce -#: admin/includes/welcome.php:201 -msgid "" -"We have revised the product data panel making it cleaner, more streamlined, " -"and more logical. Adding products is a breeze!" -msgstr "" -"Abbiamo rivisto il pannello dei dati di prodotto rendendolo più pulito, più " -"snello e più logico. L'aggiunta di prodotti è un gioco da ragazzi!" - -# @ woocommerce -#: admin/includes/welcome.php:206 -msgid "Nicer Order Screens" -msgstr "Più belle schermate d'ordine" - -# @ woocommerce -#: admin/includes/welcome.php:207 -msgid "" -"Order pages have had a cleanup, with a more easily scannable interface. We " -"particularly like the new status icons!" -msgstr "" -"Le pagine per gli ordini hanno avuto una ripulita, con un'interfaccia più " -"facilmente leggibile. Ci piacciono particolarmente le nuove icone di stato!" - -# @ woocommerce -#: admin/includes/welcome.php:212 -msgid "Multi-Download Support" -msgstr "Supporto Multi-Download" - -# @ woocommerce -#: admin/includes/welcome.php:213 -msgid "" -"Products can have multiple downloadable files - purchasers will get access " -"to all the files added." -msgstr "" -"I prodotti possono avere più file scaricabili - gli acquirenti avranno " -"accesso a tutti i file aggiunti." - -# @ woocommerce -#: admin/includes/welcome.php:218 -msgid "Less Taxing Taxes" -msgstr "Gestione più semplice delle imposte" - -# @ woocommerce -#: admin/includes/welcome.php:224 -msgid "New Tax Input Panel" -msgstr "Nuovo pannello di immissione imposte" - -# @ woocommerce -#: admin/includes/welcome.php:225 -msgid "" -"The tax input pages have been streamlined to make inputting taxes simpler - " -"adding multiple taxes for a single jurisdiction is now much easier using the " -"priority system. There is also CSV import/export support." -msgstr "" -"Le pagine per imputare le aliquote fiscali sono state semplificate per " -"rendere più semplice l'input – aggiungere diversi tipi di tasse per una " -"singola giurisdizione è ora molto più facile utilizzando il sistema a " -"priorità. C'è anche il supporto di importazione/esportazione via CSV." - -# @ woocommerce -#: admin/includes/welcome.php:229 -msgid "Improved Tax Options" -msgstr "Opzioni fiscali migliorate" - -# @ woocommerce -#: admin/includes/welcome.php:230 -msgid "" -"As requested by some users, we now support taxing the billing address " -"instead of shipping (optional), and we allow you to choose which tax class " -"applies to shipping." -msgstr "" -"Come richiesto da alcuni utenti, da ora la tassazione viene applicata " -"all'indirizzo di fatturazione, invece che di spedizione (opzionale), ed è " -"possibile scegliere quale aliquota applicare alle spese di spedizione." - -# @ woocommerce -#: admin/includes/welcome.php:235 -msgid "Product Listing Improvements Customers Will Love" -msgstr "Miglioramenti al listino prodotti che i clienti ameranno" - -# @ woocommerce -#: admin/includes/welcome.php:241 -msgid "New Sorting Options" -msgstr "Nuove opzioni di ordinamento" - -# @ woocommerce -#: admin/includes/welcome.php:242 -msgid "Customers can now sort products by popularity and ratings." -msgstr "I clienti possono ora ordinare i prodotti per popolarità e voti." - -# @ woocommerce -#: admin/includes/welcome.php:247 -msgid "Better Pagination and Result Counts" -msgstr "Una miglior impaginazione e conteggio dei risultati" - -# @ woocommerce -#: admin/includes/welcome.php:248 -msgid "" -"Numbered pagination has been added to core, and we show the number of " -"results found above the listings." -msgstr "" -"L'impaginazione numerata è stata aggiunta al core, si visualizzeranno il " -"numero di risultati trovati sopra gli annunci." - -# @ woocommerce -#: admin/includes/welcome.php:253 -msgid "Inline Star Rating Display" -msgstr "Visualizzazione in linea del punteggio" - -# @ woocommerce -#: admin/includes/welcome.php:254 -msgid "" -"We have added star ratings to the catalog which are pulled from reviews." -msgstr "" -"Abbiamo aggiunto la classificazione a stelle per il catalogo, che viene " -"estratta dalle recensioni." - -# @ woocommerce -#: admin/includes/welcome.php:262 -msgid "Under the Hood" -msgstr "Dietro le quinte" - -# @ woocommerce -#: admin/includes/welcome.php:266 -msgid "New product classes" -msgstr "Nuove classi di prodotto" - -# @ woocommerce -#: admin/includes/welcome.php:267 -msgid "" -"The product classes have been rewritten and are now factory based. Much more " -"extendable, and easier to query products using the new get_product() function." -msgstr "" -"Le classi di prodotto sono state riscritte e sono ora factory based. Molto " -"più estendibili, ed è più facile fare la query dei prodotti usando la nuova " -"funzione get_product()." - -# @ woocommerce -#: admin/includes/welcome.php:271 -msgid "Capability overhaul" -msgstr "Revisione delle capacità" - -# @ woocommerce -#: admin/includes/welcome.php:272 -msgid "" -"More granular capabilities for admin/shop manager roles covering products, " -"orders and coupons." -msgstr "" -"Incrementate le capacità per i ruoli di admin/shop manager per i prodotti, " -"ordini e coupon." - -# @ woocommerce -#: admin/includes/welcome.php:276 -msgid "API Improvements" -msgstr "Miglioramenti API" - -# @ woocommerce -#: admin/includes/welcome.php:277 -msgid "" -"WC-API now has real endpoints, and we've optimised the gateways " -"API significantly by only loading gateways when needed." -msgstr "" -"WC-API ha ora endpoint reali, abbiamo ottimizzato le API dei " -"gateway in modo significativo di modo che vengano caricati solo quando " -"necessario." - -# @ woocommerce -#: admin/includes/welcome.php:283 -msgid "Cache-friendly cart widgets" -msgstr "Cache-friendly widgets carrello" - -# @ woocommerce -#: admin/includes/welcome.php:284 -msgid "" -"Cart widgets and other \"fragments\" are now pulled in via AJAX - this works " -"wonders with static page caching." -msgstr "" -"I widgets del carrello e altri \"frammenti\" sono chiamati via AJAX – questo " -"funziona magnificamente con il caching statico delle pagine." - -# @ woocommerce -#: admin/includes/welcome.php:288 -msgid "Session handling" -msgstr "Gestione delle sessioni" - -# @ woocommerce -#: admin/includes/welcome.php:289 -msgid "" -"PHP SESSIONS have been a problem for many users in the past, so we've " -"developed our own handler using cookies and options to make these more " -"reliable." -msgstr "" -"PHP SESSIONS sono state un problema per molti utenti in passato, quindi " -"abbiamo sviluppato il nostro handler utilizzando i cookie e le opzioni per " -"renderle più affidabili." - -# @ woocommerce -#: admin/includes/welcome.php:293 -msgid "Retina Ready" -msgstr "Retina Ready" - -# @ woocommerce -#: admin/includes/welcome.php:294 -msgid "All graphics within WC have been optimised for HiDPI displays." -msgstr "" -"Tutti gli elementi grafici all'interno di WC sono state ottimizzate per i " -"display HiDPI." - -# @ woocommerce -#: admin/includes/welcome.php:301 -msgid "Better stock handling" -msgstr "Migliore gestione di magazzino" - -# @ woocommerce -#: admin/includes/welcome.php:302 -msgid "" -"We have added an option to hold stock for unpaid orders (defaults to " -"60mins). When this time limit is reached, and the order is not paid for, " -"stock is released and the order is cancelled." -msgstr "" -"Abbiamo aggiunto la possibilità di riservare a magazzino i prodotti per gli " -"ordini non pagati (il default è 60mins). Al raggiungimento di tale limite di " -"tempo, e l'ordine non viene pagato, il prodotto viene reintegrato e l'ordine " -"viene annullato." - -# @ woocommerce -#: admin/includes/welcome.php:306 -msgid "Improved Line-item storage" -msgstr "Migliorata l'archiviazione elemento-riga" - -# @ woocommerce -#: admin/includes/welcome.php:307 -msgid "" -"We have changed how order items get stored making them easier (and faster) " -"to access for reporting. Order items are no longer serialised within an " -"order - they are stored within their own table." -msgstr "" -"Abbiamo modificato come i prodotti in ordine vengono memorizzati rendendo " -"più facile ( e più veloce) l'accesso alla reportistica. I prodotti in ordine " -"non sono più serializzati all'interno di un ordine – sono memorizzati " -"all'interno di una specifica tabella." - -# @ woocommerce -#: admin/includes/welcome.php:311 -msgid "Autoload" -msgstr "Caricamento automatico" - -# @ woocommerce -#: admin/includes/welcome.php:312 -msgid "" -"We have setup autoloading for classes - this has dramatically reduced memory " -"usage in 2.0." -msgstr "" -"Abbiamo impostato il caricamento automatico per le classi - questo ha " -"ridotto drasticamente l'utilizzo della memoria in 2.0." - -# @ woocommerce -#: admin/includes/welcome.php:319 -msgid "Go to WooCommerce Settings" -msgstr "Vai alle impostazioni di WooCommerce" - -# @ woocommerce -#: admin/includes/welcome.php:337 -msgid "" -"WooCommerce is developed and maintained by a worldwide team of passionate " -"individuals and backed by an awesome developer community. Want to see your " -"name? Contribute to WooCommerce." -msgstr "" -"WooCommerce è sviluppato e mantenuto da un team internazionale di persone " -"appassionate e sostenuta da una comunità di sviluppatori impressionante. " -"Vuoi vedere anche il tuo nome? Contribuisci a WooCommerce." - -# @ woocommerce -#: admin/includes/welcome.php:363 -#, php-format -msgid "View %s" -msgstr "Vedi %s" - -# @ woocommerce -#: admin/post-types/product.php:31 -msgid "Make a duplicate from this product" -msgstr "Fai un duplicato partendo da questo prodotto" - -# @ woocommerce -#: admin/post-types/product.php:32 -msgid "Duplicate" -msgstr "Duplica" - -# @ woocommerce -#: admin/post-types/product.php:61 -msgid "Copy to a new draft" -msgstr "Copia in una nuova bozza" - -# @ woocommerce -#: admin/post-types/product.php:98 -msgid "Categories" -msgstr "Categorie" - -# @ woocommerce -#: admin/post-types/product.php:99 -msgid "Tags" -msgstr "Etichette" - -# @ woocommerce -#: admin/post-types/product.php:102 admin/post-types/shop_order.php:50 -#: templates/myaccount/my-orders.php:33 -msgid "Date" -msgstr "Data" - -# @ default -#: admin/post-types/product.php:151 -msgid "Edit this item" -msgstr "Modifica questo oggetto" - -# @ default -#: admin/post-types/product.php:152 -msgid "Edit this item inline" -msgstr "Modifica inline questo oggetto" - -# @ default -#: admin/post-types/product.php:152 -msgid "Quick Edit" -msgstr "Modifica Veloce" - -# @ default -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore this item from the Trash" -msgstr "Ripristinare questo elemento dal cestino" - -# @ default -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore" -msgstr "Ripristina" - -# @ default -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Move this item to the Trash" -msgstr "Spostare questo elemento nel cestino" - -# @ default -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Trash" -msgstr "Cestino" - -# @ default -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -msgid "Delete this item permanently" -msgstr "Eliminare l'elemento in modo permanente" - -# @ default -# @ woocommerce -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -#: admin/post-types/writepanels/writepanel-order_data.php:463 -msgid "Delete Permanently" -msgstr "Elimina definitivamente" - -# @ default -#: admin/post-types/product.php:165 -#, php-format -msgid "Preview “%s”" -msgstr "Anteprima “%s”" - -# @ default -#: admin/post-types/product.php:165 -msgid "Preview" -msgstr "Anteprima" - -# @ default -#: admin/post-types/product.php:167 -#, php-format -msgid "View “%s”" -msgstr "Vedi “%s”" - -# @ default -# @ woocommerce -#: admin/post-types/product.php:167 admin/post-types/shop_order.php:171 -#: templates/myaccount/my-orders.php:82 -msgid "View" -msgstr "Vedi" - -# @ woocommerce -#: admin/post-types/product.php:214 -msgid "Grouped" -msgstr "Raggruppato" - -# @ woocommerce -#: admin/post-types/product.php:216 -msgid "External/Affiliate" -msgstr "Esterno / Affiliato" - -# @ woocommerce -#: admin/post-types/product.php:220 admin/post-types/product.php:407 -#: admin/post-types/writepanels/variation-admin-html.php:174 -#: admin/post-types/writepanels/writepanel-product_data.php:52 -msgid "Virtual" -msgstr "Virtuale" - -# @ woocommerce -#: admin/post-types/product.php:222 admin/post-types/product.php:403 -#: admin/post-types/writepanels/variation-admin-html.php:172 -#: admin/post-types/writepanels/writepanel-product_data.php:58 -msgid "Downloadable" -msgstr "Scaricabile" - -# @ woocommerce -#: admin/post-types/product.php:224 -msgid "Simple" -msgstr "Semplice" - -# @ woocommerce -#: admin/post-types/product.php:228 admin/post-types/product.php:387 -msgid "Variable" -msgstr "Variabile" - -# @ woocommerce -#: admin/post-types/product.php:251 -msgid "Toggle featured" -msgstr "Alterna in evidenza" - -# @ woocommerce -#: admin/post-types/product.php:253 -msgid "yes" -msgstr "si" - -# @ woocommerce -#: admin/post-types/product.php:255 -msgid "no" -msgstr "no" - -# @ woocommerce -#: admin/post-types/product.php:262 admin/post-types/product.php:641 -#: admin/post-types/product.php:930 -#: admin/post-types/writepanels/writepanel-product_data.php:231 -#: classes/abstracts/abstract-wc-product.php:545 -#: classes/abstracts/abstract-wc-product.php:550 -#: classes/abstracts/abstract-wc-product.php:569 -msgid "In stock" -msgstr "Disponibile" - -# @ woocommerce -#: admin/post-types/product.php:373 -msgid "Show all product types" -msgstr "Mostra tutti i tipi di prodotto" - -# @ woocommerce -#: admin/post-types/product.php:381 -#: admin/post-types/writepanels/writepanel-product_data.php:39 -msgid "Grouped product" -msgstr "Grouped product" - -# @ woocommerce -#: admin/post-types/product.php:383 -#: admin/post-types/writepanels/writepanel-product_data.php:40 -msgid "External/Affiliate product" -msgstr "Prodotto Esterno/Affiliate" - -# @ woocommerce -#: admin/post-types/product.php:385 -#: admin/post-types/writepanels/writepanel-product_data.php:38 -msgid "Simple product" -msgstr "Prodotto semplice" - -# @ woocommerce -#: admin/post-types/product.php:399 -msgid "Show all sub-types" -msgstr "Mostra tutti i sottotipi" - -# @ woocommerce -#: admin/post-types/product.php:520 -#, php-format -msgid "[%s with SKU of %s]" -msgstr "[%s con COD di %s]" - -# @ woocommerce -#: admin/post-types/product.php:526 -#, php-format -msgid "[%s with ID of %d]" -msgstr "[%s con ID di %d]" - -# @ woocommerce -#: admin/post-types/product.php:552 admin/post-types/product.php:783 -#: admin/post-types/writepanels/writepanels-init.php:46 -#: admin/settings/settings-init.php:508 -msgid "Product Data" -msgstr "Dati prodotto" - -# @ woocommerce -#: admin/post-types/product.php:570 -msgid "Regular price" -msgstr "Prezzo di listino" - -# @ woocommerce -#: admin/post-types/product.php:575 admin/post-types/product.php:813 -msgid "Sale" -msgstr "Sconto" - -# @ woocommerce -#: admin/post-types/product.php:577 -msgid "Sale price" -msgstr "Prezzo scontato" - -# @ woocommerce -#: admin/post-types/product.php:588 admin/post-types/product.php:839 -#: admin/post-types/writepanels/variation-admin-html.php:96 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:273 -#: templates/single-product/product-attributes.php:28 -msgid "Weight" -msgstr "Peso" - -# @ woocommerce -#: admin/post-types/product.php:599 admin/post-types/product.php:863 -msgid "L/W/H" -msgstr "L/L/A" - -# @ woocommerce -#: admin/post-types/product.php:601 admin/post-types/product.php:879 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:85 -#: admin/post-types/writepanels/writepanel-product_data.php:286 -msgid "Length" -msgstr "Lunghezza" - -# @ woocommerce -#: admin/post-types/product.php:613 admin/post-types/product.php:887 -msgid "Visibility" -msgstr "Visibilità" - -# @ woocommerce -#: admin/post-types/product.php:618 admin/post-types/product.php:893 -msgid "Catalog & search" -msgstr "Catalogo & ricerca" - -# @ woocommerce -#: admin/post-types/product.php:621 admin/post-types/product.php:896 -#: admin/post-types/writepanels/writepanel-product_data.php:1047 -msgid "Hidden" -msgstr "Nascosto" - -# @ woocommerce -#: admin/post-types/product.php:636 admin/post-types/product.php:924 -msgid "In stock?" -msgstr "In stock?" - -# @ woocommerce -#: admin/post-types/product.php:657 admin/post-types/product.php:942 -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Manage stock?" -msgstr "Gestire magazzino?" - -# @ woocommerce -#: admin/post-types/product.php:661 admin/post-types/product.php:961 -#: admin/post-types/product.php:977 -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "Stock Qty" -msgstr "Quantità in stock" - -# @ woocommerce -#: admin/post-types/product.php:794 admin/post-types/product.php:818 -#: admin/post-types/product.php:844 admin/post-types/product.php:868 -#: admin/post-types/product.php:892 admin/post-types/product.php:911 -#: admin/post-types/product.php:929 admin/post-types/product.php:947 -#: admin/post-types/product.php:966 -msgid "— No Change —" -msgstr "— Nessun Cambiamento —" - -# @ woocommerce -#: admin/post-types/product.php:795 admin/post-types/product.php:819 -#: admin/post-types/product.php:845 admin/post-types/product.php:869 -#: admin/post-types/product.php:967 -msgid "Change to:" -msgstr "Cambia a:" - -# @ woocommerce -#: admin/post-types/product.php:796 admin/post-types/product.php:820 -msgid "Increase by (fixed amount or %):" -msgstr "Aumentare di (importo fisso o %):" - -# @ woocommerce -#: admin/post-types/product.php:797 admin/post-types/product.php:821 -msgid "Decrease by (fixed amount or %):" -msgstr "Diminuire di (importo fisso o %):" - -# @ woocommerce -#: admin/post-types/product.php:807 admin/post-types/product.php:832 -msgid "Enter price" -msgstr "Inserisci prezzo" - -# @ woocommerce -#: admin/post-types/product.php:822 -msgid "Decrease regular price by (fixed amount or %):" -msgstr "Riduci il prezzo normale per (ammontare fisso o %):" - -# @ woocommerce -#: admin/post-types/product.php:1183 -msgid "Sort Products" -msgstr "Ordina i prodotti" - -# @ woocommerce -#: admin/post-types/product.php:1222 -msgid "Insert into product" -msgstr "Inserire nel prodotto" - -# @ woocommerce -#: admin/post-types/product.php:1223 -msgid "Uploaded to this product" -msgstr "Caricato su questo prodotto" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:25 -msgid "Code" -msgstr "Codice" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:26 -msgid "Coupon type" -msgstr "Tipo di coupon" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:27 -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Coupon amount" -msgstr "Importo del coupon" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:29 -msgid "Product IDs" -msgstr "ID Prodotto" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:30 -msgid "Usage / Limit" -msgstr "Uso / Limite" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:31 -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "Expiry date" -msgstr "Data di scadenza" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:56 -msgid "Edit coupon" -msgstr "Modifica coupon" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:114 -#, php-format -msgid "%s / %s" -msgstr "%s / %s" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:116 -#, php-format -msgid "%s / ∞" -msgstr "%s / ∞" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:149 -msgid "Show all types" -msgstr "Mostra tutti i tipi" - -# @ woocommerce -#: admin/post-types/shop_order.php:43 -#: admin/settings/settings-payment-gateways.php:29 -#: admin/settings/settings-shipping-methods.php:31 -#: templates/myaccount/my-orders.php:34 -msgid "Status" -msgstr "Stato" - -# @ woocommerce -#: admin/post-types/shop_order.php:45 -msgid "Billing" -msgstr "Fatturazione" - -# @ woocommerce -#: admin/post-types/shop_order.php:47 templates/cart/totals.php:92 -#: templates/checkout/review-order.php:91 -msgid "Order Total" -msgstr "Totale ordine" - -# @ woocommerce -#: admin/post-types/shop_order.php:48 -#: admin/post-types/writepanels/writepanels-init.php:71 -#: classes/class-wc-checkout.php:89 -msgid "Order Notes" -msgstr "Note Ordine" - -# @ woocommerce -#: admin/post-types/shop_order.php:49 -msgid "Customer Notes" -msgstr "Note del cliente" - -# @ woocommerce -#: admin/post-types/shop_order.php:51 -#: admin/post-types/writepanels/writepanel-order_data.php:386 -#: admin/post-types/writepanels/writepanel-order_data.php:433 -msgid "Actions" -msgstr "Azioni" - -# @ woocommerce -#: admin/post-types/shop_order.php:98 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:322 -#, php-format -msgid "Order %s" -msgstr "Ordine %s" - -# @ woocommerce -#: admin/post-types/shop_order.php:98 -msgid "made by" -msgstr "fatte da" - -# @ woocommerce -#: admin/post-types/shop_order.php:101 templates/emails/admin-new-order.php:53 -#: templates/emails/customer-completed-order.php:54 -#: templates/emails/customer-note.php:58 -#: templates/emails/customer-processing-order.php:54 -#: templates/emails/plain/admin-new-order.php:41 -#: templates/emails/plain/customer-completed-order.php:41 -#: templates/emails/plain/customer-note.php:49 -#: templates/emails/plain/customer-processing-order.php:41 -#: templates/order/order-details.php:101 -msgid "Email:" -msgstr "Email:" - -# @ woocommerce -#: admin/post-types/shop_order.php:104 templates/emails/admin-new-order.php:56 -#: templates/emails/customer-completed-order.php:57 -#: templates/emails/customer-note.php:61 -#: templates/emails/customer-processing-order.php:57 -#: templates/emails/plain/admin-new-order.php:44 -#: templates/emails/plain/customer-completed-order.php:44 -#: templates/emails/plain/customer-note.php:52 -#: templates/emails/plain/customer-processing-order.php:44 -msgid "Tel:" -msgstr "Tel:" - -# @ woocommerce -#: admin/post-types/shop_order.php:114 admin/post-types/shop_order.php:123 -msgid "Via" -msgstr "Via" - -# @ woocommerce -#: admin/post-types/shop_order.php:131 -msgid "Unpublished" -msgstr "Non pubblicato" - -# @ woocommerce -#: admin/post-types/shop_order.php:133 -msgid "Y/m/d g:i:s A" -msgstr "Y/m/d g:i:s A" - -# @ woocommerce -#: admin/post-types/shop_order.php:139 -#, php-format -msgid "%s ago" -msgstr "%s fa" - -# @ woocommerce -#: admin/post-types/shop_order.php:141 -msgid "Y/m/d" -msgstr "Y/m/d" - -# @ woocommerce -#: admin/post-types/shop_order.php:165 -msgid "Complete" -msgstr "Completato" - -# @ woocommerce -#: admin/post-types/shop_order.php:282 -msgid "Show all statuses" -msgstr "Mostra tutti gli stati" - -# @ woocommerce -#: admin/post-types/shop_order.php:301 admin/post-types/shop_order.php:326 -msgid "Show all customers" -msgstr "Mostra tutti i clienti" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:6 -msgid "Revoke Access" -msgstr "Revocare l'accesso" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:9 -#, php-format -msgid "File %d: %s" -msgstr "File %d: %s" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:9 -#, php-format -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "Scaricato %s volta" -msgstr[1] "Scaricato %s volte" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:16 -msgid "Downloads Remaining" -msgstr "Downloads Rimanenti" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:19 -#: admin/post-types/writepanels/variation-admin-html.php:149 -#: admin/post-types/writepanels/variation-admin-html.php:157 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Unlimited" -msgstr "Illimitato" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:22 -msgid "Access Expires" -msgstr "L'accesso scade" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:23 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Never" -msgstr "Mai" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:10 -msgid "Fee Name" -msgstr "Nome tariffa" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:17 -#: admin/post-types/writepanels/order-item-html.php:95 -msgid "Tax class" -msgstr "Classe di imposta" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:20 -#: admin/post-types/writepanels/writepanel-product_data.php:179 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:111 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:85 -msgid "Taxable" -msgstr "Tassabile" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:10 -msgid "Product ID:" -msgstr "ID Prodotto:" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:13 -msgid "Variation ID:" -msgstr "ID variazione:" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:16 -msgid "Product SKU:" -msgstr "Codice Prodotto:" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:44 -msgid "Add meta" -msgstr "Aggiungi meta" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:123 -#: templates/cart/mini-cart.php:63 -msgid "Subtotal" -msgstr "Subtotale" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:6 -msgid "Tax Rate:" -msgstr "Imposta:" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:16 -#: admin/post-types/writepanels/writepanel-order_data.php:630 -msgid "Sales Tax:" -msgstr "Imposta di vendita:" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:20 -#: admin/post-types/writepanels/writepanel-order_data.php:638 -msgid "Shipping Tax:" -msgstr "Tassa di spedizione:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:20 -msgid "Any" -msgstr "Qualsiasi" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:52 -msgid "" -"Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "" -"Immettere un codice per questa variante o lascia vuoto per usare il codice " -"del prodotto principale." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:63 -msgid "Stock Qty:" -msgstr "Quantità a magazzino:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:63 -msgid "" -"Enter a quantity to enable stock management at variation level, or leave " -"blank to use the parent product's options." -msgstr "" -"Inserisci una quantità per permettere la gestione degli stock a livello di " -"variazione, o lascia vuoto per utilizzare le opzioni del prodotto principale." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:72 -msgid "Regular Price:" -msgstr "Prezzo di listino:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:73 -msgid "Variation price (required)" -msgstr "Prezzo di variazione (richiesto)" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:76 -msgid "Sale Price:" -msgstr "Prezzo di vendita:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:76 -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Schedule" -msgstr "Pianifica" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:76 -msgid "Cancel schedule" -msgstr "Annulla pianifica" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:83 -msgid "Sale start date:" -msgstr "Data di inizio vendita:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:136 -msgctxt "placeholder" -msgid "From…" -msgstr "Da…" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:87 -msgid "Sale end date:" -msgstr "Data di fine vendita:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:137 -msgctxt "placeholder" -msgid "To…" -msgstr "A…" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:96 -msgid "" -"Enter a weight for this variation or leave blank to use the parent product " -"weight." -msgstr "" -"Immettere un peso per questa variazione o lasciare vuoto per utilizzare il " -"peso del prodotto principale." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:104 -msgid "Dimensions (L×W×H)" -msgstr "Dimensioni (L×W×H)" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:115 -msgid "Shipping class:" -msgstr "Classe di spedizione:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:130 -msgid "Tax class:" -msgstr "Classe fiscale:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:141 -msgid "File paths:" -msgstr "Percorso del file:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:141 -msgid "" -"Enter one or more File Paths, one per line, to make this variation a " -"downloadable product, or leave blank." -msgstr "" -"Inserire uno o più percorsi di file, uno per riga, per rendere questa " -"variante scaricabile, o lasciare vuoto." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:142 -#: admin/post-types/writepanels/writepanel-product_data.php:153 -msgid "File paths/URLs, one per line" -msgstr "Percorsi di file/URL, uno per riga" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:143 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Choose a file" -msgstr "Scegli un file" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:143 -msgid "Upload" -msgstr "Upload" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:143 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Insert file URL" -msgstr "Inserire l'URL del file" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:148 -msgid "Download Limit:" -msgstr "Limite del dowload" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:148 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Leave blank for unlimited re-downloads." -msgstr "Lascia in bianco per un numero illimitato di download." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:156 -msgid "Download Expiry:" -msgstr "Scadenza dowload:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:156 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "" -"Enter the number of days before a download link expires, or leave blank." -msgstr "" -"Inserisci il numero di giorni prima che un link di download scada, o " -"lasciare vuoto." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:170 -msgid "Enabled" -msgstr "Abilitato" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:172 -msgid "" -"Enable this option if access is given to a downloadable file upon purchase " -"of a product" -msgstr "" -"Abilitare questa opzione se l'accesso è dato a un file scaricabile al " -"momento dell'acquisto di un prodotto" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:174 -msgid "" -"Enable this option if a product is not shipped or there is no shipping cost" -msgstr "" -"Abilitare questa opzione se un prodotto non viene spedito o non vi è alcun " -"costo di spedizione" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Coupon description" -msgstr "Descrizione Coupon" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Optionally enter a description for this coupon for your reference." -msgstr "" -"Facoltativamente inserire una descrizione per questo coupon come proprio " -"riferimento." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:42 -msgid "Discount type" -msgstr "Tipo di sconto" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Value of the coupon." -msgstr "Valore del coupon." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "Enable free shipping" -msgstr "Abilita spedizioni gratuite" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -#, php-format -msgid "" -"Check this box if the coupon grants free shipping. The free " -"shipping method must be enabled with the \"must use coupon\" setting " -"checked." -msgstr "" -"Seleziona questa casella se il coupon accorda spedizione gratuita. La spedizione gratuita deve essere abilitata con l'impostazione " -"selezionata del \"è necessario usare il coupon\"." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "Individual use" -msgstr "Uso individuale" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "" -"Check this box if the coupon cannot be used in conjunction with other " -"coupons." -msgstr "" -"Seleziona questa casella se il coupon non può essere utilizzato in " -"combinazione con altri coupon." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "Apply before tax" -msgstr "Applicare prima delle imposte" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "" -"Check this box if the coupon should be applied before calculating cart tax." -msgstr "" -"Seleziona questa casella se il coupon deve essere applicato prima del " -"calcolo delle imposte nel carrello." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "Exclude sale items" -msgstr "Escludi articoli in saldo." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "" -"Check this box if the coupon should not apply to items on sale. Per-item " -"coupons will only work if the item is not on sale. Per-cart coupons will " -"only work if there are no sale items in the cart." -msgstr "" -"Seleziona questa casella se il coupon non si applica alle oggetti in saldo. " -"I coupon per prodotto funzionano solo se l'oggetto non è in saldo. I coupon " -"per carrello funzionano solo se non ci sono articoli in saldo nel carrello." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "Minimum amount" -msgstr "Importo minimo" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "No minimum" -msgstr "Nessun minimo" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "" -"This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "" -"Questo campo consente di impostare un minimo subtotale necessario per " -"utilizzare il coupon." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:89 -msgid "" -"Products which need to be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are discounted." -msgstr "" -"Prodotti che devono essere nel carrello per utilizzare questo coupon o, per " -"\"Sconti prodotto generici\", quali prodotti siano scontati." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:94 -msgid "Exclude products" -msgstr "Escludere prodotti" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:95 -msgid "Search for a product…" -msgstr "Cerca un prodotto..." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:109 -msgid "" -"Products which must not be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are not discounted." -msgstr "" -"Prodotti che non devono essere nel carrello per utilizzare questo coupon o, " -"per \"Sconti Prodotto\", prodotti che non siano scontati." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:116 -#: assets/js/admin/editor_plugin_lang.php:9 -msgid "Product categories" -msgstr "Categorie Prodotti" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:117 -msgid "Any category" -msgstr "Qualsiasi categoria" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:125 -msgid "" -"A product must be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will be discounted." -msgstr "" -"Un prodotto deve essere in questa categoria perchè il coupon sia valido o, " -"per \"Sconti Prodotto\", prodotti in queste categorie saranno scontati" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:130 -msgid "Exclude categories" -msgstr "Escludi categorie" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:131 -msgid "No categories" -msgstr "Nessuna categoria" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:139 -msgid "" -"Product must not be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will not be discounted." -msgstr "" -"Un prodotto non deve essere in questa categoria perchè il coupon sia valido " -"o, per \"Sconti Prodotto\", prodotti in queste categorie non saranno scontati" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "Customer emails" -msgstr "Email del cliente" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "Any customer" -msgstr "Qualsiasi cliente" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "" -"Comma separate email addresses to restrict this coupon to specific billing " -"and user emails." -msgstr "" -"Indirizzi email separati dalla virgola per limitare questo coupon a " -"specifici indirizzi di fatturazione e mail utente." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "Usage limit" -msgstr "Limite di utilizzo" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "Utilizzo illimitato" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "How many times this coupon can be used before it is void." -msgstr "Quante volte il coupon può essere utilizzato prima che sia annullato." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgctxt "placeholder" -msgid "Never expire" -msgstr "Non ha scadenza" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "The date this coupon will expire, YYYY-MM-DD." -msgstr "Questo coupon scadrà il YYYY-MM-DD." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:195 -msgid "" -"Coupon code already exists - customers will use the latest coupon with this " -"code." -msgstr "" -"Codice promozionale già esistente - i clienti potranno utilizzare l'ultimo " -"coupon con questo codice." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:59 -#: templates/order/order-details.php:16 -msgid "Order Details" -msgstr "Dettagli ordine" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:62 -msgid "Order number" -msgstr "numero d'ordine" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:67 -msgid "Customer IP:" -msgstr "IP del cliente:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:74 -msgid "General Details" -msgstr "Dettagli generali" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:76 -msgid "Order status:" -msgstr "Stato degli ordini:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:86 -msgid "Order Date:" -msgstr "Data ordine:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:87 -msgid "h" -msgstr "h" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#: admin/settings/settings-init.php:567 -msgid "m" -msgstr "m" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:91 -msgid "Customer:" -msgstr "Cliente:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:131 -msgid "Customer Note:" -msgstr "Nota cliente:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:132 -msgid "Customer's notes about the order" -msgstr "Note del cliente circa l'ordine" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:140 -msgid "Billing Details" -msgstr "Dettagli di fatturazione" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:144 -#: admin/post-types/writepanels/writepanel-order_data.php:234 -#: classes/class-wc-countries.php:683 -msgid "First Name" -msgstr "Nome" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:148 -#: admin/post-types/writepanels/writepanel-order_data.php:238 -#: classes/class-wc-countries.php:688 -msgid "Last Name" -msgstr "Cognome" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:185 -#: classes/class-wc-countries.php:1065 -msgid "Phone" -msgstr "Telefono" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:193 -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#: admin/post-types/writepanels/writepanel-order_data.php:277 -#: admin/post-types/writepanels/writepanel-order_data.php:279 -#: classes/class-wc-countries.php:698 -msgid "Address" -msgstr "Indirizzo" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:195 -msgid "No billing address set." -msgstr "Nessun indirizzo di fatturazione impostato." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:208 -msgid "Load billing address" -msgstr "Carica indirizzo di fatturazione" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:230 -msgid "Shipping Details" -msgstr "Dettagli di spedizione" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "No shipping address set." -msgstr "Nessun indirizzo di spedizione impostato." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Load shipping address" -msgstr "Carica l'indirizzo di spedizione" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Copy from billing" -msgstr "Copia da fatturazione" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:339 -msgid "Item" -msgstr "Articolo" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#: admin/post-types/writepanels/writepanel-product_data.php:191 -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Class" -msgstr "Classe fiscale" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:344 -msgid "Tax class for the line item" -msgstr "Classe fiscale per la riga" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:347 -#: templates/checkout/form-pay.php:20 -msgid "Qty" -msgstr "Qta" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:349 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:467 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:100 -msgid "Cost" -msgstr "Costo" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:349 -msgid "Line subtotals are before pre-tax discounts, totals are after." -msgstr "" -"Subtotali di riga sono al lordo degli sconti prima delle imposte, i totali " -"sono dopo." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:388 -msgid "Delete Lines" -msgstr "Cancella righe" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:390 -msgid "Stock Actions" -msgstr "Azioni del magazzino" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:391 -msgid "Reduce Line Stock" -msgstr "Ridurre riga magazzino" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:392 -msgid "Increase Line Stock" -msgstr "Aumenta riga magazzino" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:396 -#: admin/post-types/writepanels/writepanel-order_data.php:456 -msgid "Apply" -msgstr "Applica" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:402 -msgid "Add item(s)" -msgstr "Aggiungi elemento(s)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:403 -msgid "Add fee" -msgstr "Aggiungi costo" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:434 -msgid "Resend order emails" -msgstr "Rispedisci email ordine" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:465 -msgid "Move to Trash" -msgstr "Sposta nel cestino" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save Order" -msgstr "Salva l'ordine" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save/update the order" -msgstr "Salva/Aggoirna l'ordine" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:498 -msgid "Discounts" -msgstr "Sconti" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:502 -#: classes/class-wc-order.php:956 -msgid "Cart Discount:" -msgstr "Sconto Carrello:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:502 -msgid "Discounts before tax - calculated by comparing subtotals to totals." -msgstr "Sconti prima delle tasse - calcolati comparando i subtotali ai totali." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:510 -#: classes/class-wc-order.php:998 -msgid "Order Discount:" -msgstr "Sconto Ordine:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:510 -msgid "Discounts after tax - user defined." -msgstr "Sconti dopo le tasse – definiti dall'utente." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:543 -msgid "Label:" -msgstr "Etichetta:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:544 -msgid "The shipping title the customer sees" -msgstr "Titolo spedizione che il cliente vede" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:551 -msgid "Cost:" -msgstr "Costo:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:552 -#: classes/class-wc-countries.php:470 -msgid "(ex. tax)" -msgstr "(es. tasse)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:559 -msgid "Method:" -msgstr "Metodo:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:581 -#: admin/post-types/writepanels/writepanel-order_data.php:583 -#: admin/post-types/writepanels/writepanel-order_data.php:682 -#: admin/post-types/writepanels/writepanel-order_data.php:684 -msgid "Other" -msgstr "Altro" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:597 -msgid "Tax Rows" -msgstr "Righe Tasse" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:622 -msgid "+ Add tax row" -msgstr "+ Aggiungi una riga per tassa" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:622 -msgid "" -"These rows contain taxes for this order. This allows you to display multiple " -"or compound taxes rather than a single total." -msgstr "" -"Queste righe contengono le tasse per questo ordine. Questo permette di " -"visualizzare le tasse multiple o composte, piuttosto che un unico totale." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:626 -msgid "Tax Totals" -msgstr "Totale tasse" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:630 -msgid "Total tax for line items + fees." -msgstr "Totale tasse per riga prodotto + commissioni." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:652 -#: admin/post-types/writepanels/writepanels-init.php:70 -msgid "Order Totals" -msgstr "Totale ordini:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:656 -#: classes/class-wc-order.php:1003 -msgid "Order Total:" -msgstr "Totale Ordine:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:664 -msgid "Payment Method:" -msgstr "Metodi di pagamento:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:695 -msgid "Calc taxes" -msgstr "Calcolo tasse" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:697 -msgid "Calc totals" -msgstr "Calcolo totale" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:57 -msgid "Choose a downloadable product…" -msgstr "Scegli un prodotto scaricabile…" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:87 -msgid "Grant Access" -msgstr "Garantisci l'accesso" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:125 -msgid "" -"Could not grant access - the user may already have permission for this file " -"or billing email is not set. Ensure the billing email is set, and the order " -"has been saved." -msgstr "" -"Impossibile concedere l'accesso - l'utente potrebbe già avere il permesso " -"per questo file o l'email di fatturazione non è impostata. Assicurarsi che " -"l'email di fatturazione sia impostata e che l'ordine sia stato salvato." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:148 -msgid "Are you sure you want to revoke access to this download?" -msgstr "Sei sicuro di voler revocare l'accesso per questo download?" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -#, php-format -msgid "added %s ago" -msgstr "aggiunto %s fa" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:50 -msgid "There are no notes for this order yet." -msgstr "Non ci sono ancora note per questo ordine." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "Add note" -msgstr "Aggiungi una nota" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:62 -#: classes/emails/class-wc-email-customer-note.php:29 -msgid "Customer note" -msgstr "Nota cliente" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:63 -msgid "Private note" -msgstr "Nota privata" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:65 -#: admin/post-types/writepanels/writepanel-product_data.php:500 -msgid "Add" -msgstr "Aggiungi" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations for variable products are defined here." -msgstr "Variazioni per prodotti variabili vengono definite qui." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:65 -msgid "" -"Before adding variations, add and save some attributes on the " -"Attributes tab." -msgstr "" -"Prima di aggiungere varianti, aggiungere e salvare alcuni attributi nella " -"tab Attributi." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:67 -msgid "Learn more" -msgstr "Per saperne di più" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Close all" -msgstr "Chiudi tutto" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Expand all" -msgstr "Espandi tutto" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:75 -msgid "Bulk edit:" -msgstr "Modifica in blocco:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:77 -msgid "Toggle "Enabled"" -msgstr "Attivare o disattivare "Abilitato"" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:78 -msgid "Toggle "Downloadable"" -msgstr "Attivare o disattivare "Scaricabile"" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:79 -msgid "Toggle "Virtual"" -msgstr "Attivare o disattivare "Virtual"" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:80 -msgid "Delete all variations" -msgstr "Eliminare tutte le varianti" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:81 -msgid "Prices" -msgstr "Prezzi" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:82 -msgid "Sale prices" -msgstr "Prezzi di vendita" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:88 -msgid "File Path" -msgstr "Percorso file" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:89 -msgid "Download limit" -msgstr "Limite di download" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:90 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Download Expiry" -msgstr "Scadenza di download" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:93 -msgid "Go" -msgstr "Vai" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:195 -msgid "Link all variations" -msgstr "Collegare tutte le varianti" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:197 -msgid "Default selections:" -msgstr "Selezioni predefinite:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:210 -msgid "No default" -msgstr "Nessun valore predefinito" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:299 -msgid "" -"Are you sure you want to link all variations? This will create a new " -"variation for each and every possible combination of variation attributes " -"(max 50 per run)." -msgstr "" -"Sei sicuro che si desidera collegare tutte le varianti? Questo creerà una " -"nuova variante per ciascuno e per ogni possibile combinazione di attributi " -"di variazione (max 50 per esecuzione)." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:316 -msgid "variation added" -msgstr "variante aggiunta" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:318 -msgid "variations added" -msgstr "varianti aggiunte" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:320 -msgid "No variations added" -msgstr "Nessuna variante aggiunta" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:343 -msgid "Are you sure you want to remove this variation?" -msgstr "Sei sicuro di voler rimuovere questa variante?" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:399 -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "" -"Sei sicuro di voler cancellare tutte le varianti? Ciò non può essere " -"annullato." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:402 -msgid "Last warning, are you sure?" -msgstr "Ultimo avvertimento, sei sicuro?" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:439 -msgid "Enter a value" -msgstr "Inserire un valore" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:519 -msgid "Set variation image" -msgstr "Impostare immagine per la variazione" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:563 -msgid "Variable product" -msgstr "Prodotto variabile" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:629 -#: classes/class-wc-emails.php:286 classes/class-wc-emails.php:318 -#: classes/class-wc-emails.php:362 -#, php-format -msgid "Variation #%s of %s" -msgstr "Variazione #%s di %s" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:43 -msgid "Product Type" -msgstr "Tipo di prodotto" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:53 -msgid "Virtual products are intangible and aren't shipped." -msgstr "I prodotti virtuali sono immateriali e non vengono spediti." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:59 -msgid "Downloadable products give access to a file upon purchase." -msgstr "" -"I prodotti scaricabili danno accesso a un file al momento dell'acquisto." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:83 -msgid "Linked Products" -msgstr "Articoli collegati" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:87 -msgid "Advanced" -msgstr "Avanzato" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "Stock Keeping Unit" -msgstr "Stock Keeping Unit" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "" -"SKU refers to a Stock-keeping unit, a unique identifier for each distinct " -"product and service that can be purchased." -msgstr "" -"COD si riferisce a una Stock-keeping unit, un identificatore univoco per " -"ogni distinto prodotto o servizio che possono essere acquistati." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Product URL" -msgstr "URL del prodotto" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Enter the external URL to the product." -msgstr "Inserire l'URL esterno al prodotto." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "Button text" -msgstr "Testo del bottone" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgctxt "placeholder" -msgid "Buy product" -msgstr "Acquista prodotto" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "This text will be shown on the button linking to the external product." -msgstr "" -"Questo testo verrà visualizzato sul pulsante di collegamento al prodotto " -"esterno." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:119 -msgid "Regular Price" -msgstr "Prezzo di listino" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Sale Price" -msgstr "Prezzo di saldo" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:135 -msgid "Sale Price Dates" -msgstr "Date per il prezzo di saldo" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:138 -#: admin/post-types/writepanels/writepanel-product_data.php:1080 -#: templates/myaccount/my-orders.php:77 -msgid "Cancel" -msgstr "Annullare" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:152 -msgid "File paths (one per line)" -msgstr "Percorso file (una per linea)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Download Limit" -msgstr "Limite download" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:178 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:107 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:81 -msgid "Tax Status" -msgstr "Stato Tasse" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:180 -msgid "Shipping only" -msgstr "Spedizione solo" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:181 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:112 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:86 -msgid "None" -msgstr "Nessuno" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Enable stock management at product level" -msgstr "Abilita la gestione degli stock a livello di prodotto" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "" -"Stock quantity. If this is a variable product this value will be used to " -"control stock for all variations, unless you define stock at variation level." -msgstr "" -"Quantità Stock Articolo. Se questo è un prodotto variabile questo valore " -"verrà utilizzato per controllare lo stock a magazzino per tutti i tipi, a " -"meno di definire il magazzino per ogni variante." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:230 -msgid "Stock status" -msgstr "Status magazzino" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:233 -msgid "" -"Controls whether or not the product is listed as \"in stock\" or \"out of " -"stock\" on the frontend." -msgstr "" -"Controlli per gestire se il prodotto sia considerato \"in magazzino\" o " -"\"Non disponibile\" sul frontend." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:240 -msgid "Allow Backorders?" -msgstr "Permetti ordini in prenotazione" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:241 -msgid "Do not allow" -msgstr "Non permettere" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:242 -msgid "Allow, but notify customer" -msgstr "Permettere, ma avvertire il cliente" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:243 -msgid "Allow" -msgstr "Permettere" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:244 -msgid "" -"If managing stock, this controls whether or not backorders are allowed for " -"this product and variations. If enabled, stock quantity can go below 0." -msgstr "" -"In caso di gestione di magazzino, controlla se gli ordini in prenotazione " -"sono ammessi per questo prodotto e le sue variazioni. Se abilitato, la " -"quantità a magazzino può andare al di sotto di 0." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "Sold Individually" -msgstr "Venduto singolarmente" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "" -"Enable this to only allow one of this item to be bought in a single order" -msgstr "" -"Abilita per permettere che solo un pezzo di questo prodotto possa essere " -"acquistato in un singolo ordine." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:273 -msgid "Weight in decimal form" -msgstr "Peso in forma decimale" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:284 -#: templates/single-product/product-attributes.php:37 -msgid "Dimensions" -msgstr "Dimensioni" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:290 -msgid "LxWxH in decimal form" -msgstr "LxWxH in forma decimale" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:311 -msgid "No shipping class" -msgstr "Nessuna classe di spedizione" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "Shipping class" -msgstr "Classe di spedizione" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "" -"Shipping classes are used by certain shipping methods to group similar " -"products." -msgstr "" -"Le classi di spedizione sono utilizzati da certi metodi di spedizione per " -"raggruppare prodotti simili." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:385 -msgid "Select terms" -msgstr "Seleziona termini" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:397 -msgid "Select all" -msgstr "Seleziona tutto" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:397 -msgid "Select none" -msgstr "Seleziona nessuno" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:399 -msgid "Add new" -msgstr "Aggiungi nuovo" - -#: admin/post-types/writepanels/writepanel-product_data.php:412 -msgid "Pipe (|) separate terms" -msgstr "Simbolo (|) separa i termini" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:502 -msgid "Custom product attribute" -msgstr "Attributo personalizzato per il prodotto" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:514 -msgid "Save attributes" -msgstr "Salva attributi" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:521 -msgid "Up-Sells" -msgstr "Up-Sells" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:536 -msgid "" -"Up-sells are products which you recommend instead of the currently viewed " -"product, for example, products that are more profitable or better quality or " -"more expensive." -msgstr "" -"Up-selling sono prodotti che voi raccomandate invece del prodotto " -"attualmente visualizzato, per esempio, i prodotti che sono più redditizi o " -"di migliore qualità o più costosi." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:538 -msgid "Cross-Sells" -msgstr "Cross-Sells" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:553 -msgid "" -"Cross-sells are products which you promote in the cart, based on the current " -"product." -msgstr "" -"Cross-sells sono prodotti che vengono promossi nel carrello, in base al " -"prodotto corrente." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:563 -msgid "Choose a grouped product…" -msgstr "Scegliere un prodotto in un gruppo…" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:589 -msgid "Grouping" -msgstr "Inserire in un gruppo" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:589 -msgid "Set this option to make this product part of a grouped product." -msgstr "" -"Impostare questa opzione per inserire questo prodotto in un gruppo di " -"prodotti" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:609 -msgid "Purchase Note" -msgstr "Nota d'acquisto" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:609 -msgid "Enter an optional note to send the customer after purchase." -msgstr "Inserisci una nota facoltativa da inviare al cliente dopo l'acquisto." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:616 -msgid "Menu order" -msgstr "Ordine del menu" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:616 -msgid "Custom ordering position." -msgstr "Posizione di ordine personalizzata." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:624 -msgid "Enable reviews" -msgstr "Attiva le recensioni" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:713 -msgid "Product SKU must be unique." -msgstr "Il COD del prodotto deve essere univoco" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1044 -msgid "Catalog/search" -msgstr "Catalogo/ricerca" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1051 -msgid "Catalog visibility:" -msgstr "Visibilità Catalogo:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1067 -msgid "" -"Define the loops this product should be visible in. The product will still " -"be accessible directly." -msgstr "" -"Definire i loop in cui questo prodotto dovrebbe essere visibile. Il prodotto " -"sarà ancora accessibile direttamente." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1073 -msgid "Enable this option to feature this product." -msgstr "Abilitare questa opzione per mettere in evidenza questo prodotto." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1075 -msgid "Featured Product" -msgstr "Prodotto in evidenza" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1079 -msgid "OK" -msgstr "OK" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -msgid "Delete image" -msgstr "Cancella immagine" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:53 -msgid "Add product gallery images" -msgstr "Aggiungi immagini alla galleria prodotti" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:79 -msgid "Add Images to Product Gallery" -msgstr "Aggiungi Immagini alla Galleria Prodotto" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:81 -msgid "Add to gallery" -msgstr "Aggiungi alla galleria" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:47 -msgid "Product Gallery" -msgstr "Galleria Prodotto" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:55 -msgid "Product Short Description" -msgstr "Descrizione breve prodotto" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:64 -#: templates/single-product-reviews.php:36 -#: templates/single-product-reviews.php:42 -msgid "Reviews" -msgstr "Recensioni" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:68 -msgid "Order Data" -msgstr "Dati per l'ordine" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "Order Items" -msgstr "Oggetti per l'ordine" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "" -"Note: if you edit quantities or remove items from the order you will need to " -"manually update stock levels." -msgstr "" -"Nota: se si modificano i quantitativi o si rimuovono elementi dal ordine " -"sarà necessario aggiornare i livelli delle scorte manualmente." - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "Downloadable Product Permissions" -msgstr "Permessi per i prodotti scaricabili" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "" -"Note: Permissions for order items will automatically be granted when the " -"order status changes to processing/completed." -msgstr "" -"Nota: I permessi per i prodotti in ordine verranno automaticamente concessi " -"nel momento in cui lo stato dell'ordine cambierà in lavorazione/completato." - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:73 -msgid "Order Actions" -msgstr "Azioni dell'ordine" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:81 -msgid "Coupon Data" -msgstr "Dati del Coupon" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:100 -#: templates/checkout/form-coupon.php:25 -msgid "Coupon code" -msgstr "Codice del Buono Sconto" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:101 -msgid "Product name" -msgstr "Nome prodotto" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:185 -msgid "Allow reviews." -msgstr "Permetti recensioni." - -# @ default -#: admin/post-types/writepanels/writepanels-init.php:186 -#, php-format -msgid "" -"Allow trackbacks and pingbacks on this " -"page." -msgstr "" -"Permetti trackbacks and pingbacks su " -"questa pagina." - -# @ default -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" -msgstr "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:23 -msgid "Styles" -msgstr "Stili" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:43 -msgid "Primary" -msgstr "Primario" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:43 -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "Call to action buttons/price slider/layered nav UI" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:44 -msgid "Secondary" -msgstr "Secondario" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:44 -msgid "Buttons and tabs" -msgstr "Pulsanti e tabs" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:45 -msgid "Highlight" -msgstr "Highlight" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:45 -msgid "Price labels and Sale Flashes" -msgstr "Etichette di prezzo e Flash di Saldi" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:46 -msgid "Content" -msgstr "Contenuto" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:46 -msgid "Your themes page background - used for tab active states" -msgstr "" -"Background della pagina nel tuo tema - usato per lo stato attivo della tab" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:47 -msgid "Subtext" -msgstr "Subtext" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:47 -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "" -"Usato per un determinato testo e digressioni - breadcrumbs, testo in piccolo " -"ecc" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:51 -msgid "" -"To edit colours woocommerce/assets/css/woocommerce-base.less " -"and woocommerce.css need to be writable. See the Codex for more " -"information." -msgstr "" -"Per modificare i colori woocommerce/assets/css/woocommerce-base.less and woocommerce.css devono essere scrivibili. Vedi il Codex " -"per informazioni." - -# @ woocommerce -#: admin/settings/settings-init.php:18 -msgid "Localisation" -msgstr "Localizzazione" - -# @ woocommerce -#: admin/settings/settings-init.php:19 -#, php-format -msgid "Use informal localisation for %s" -msgstr "Usa una localizzazione informale per %s" - -# @ woocommerce -#: admin/settings/settings-init.php:33 -msgid "General Options" -msgstr "Opzioni Generali" - -# @ woocommerce -#: admin/settings/settings-init.php:36 -msgid "Base Location" -msgstr "Nazione Negozio" - -# @ woocommerce -#: admin/settings/settings-init.php:37 -msgid "" -"This is the base location for your business. Tax rates will be based on this " -"country." -msgstr "" -"Questa è la posizione di base per il vostro business. Le aliquote fiscali " -"saranno basate su questo paese." - -# @ woocommerce -#: admin/settings/settings-init.php:46 -msgid "Currency" -msgstr "Valuta" - -# @ woocommerce -#: admin/settings/settings-init.php:47 -msgid "" -"This controls what currency prices are listed at in the catalog and which " -"currency gateways will take payments in." -msgstr "Questo seleziona la valuta per i prezzi esposti e per i pagamenti. " - -# @ woocommerce -#: admin/settings/settings-init.php:58 -msgid "Allowed Countries" -msgstr "Nazioni permesse" - -# @ woocommerce -#: admin/settings/settings-init.php:59 -msgid "These are countries that you are willing to ship to." -msgstr "Queste sono le nazioni con cui puoi/vuoi commerciare." - -# @ woocommerce -#: admin/settings/settings-init.php:67 -msgid "All Countries" -msgstr "Tutte le Nazioni" - -# @ woocommerce -#: admin/settings/settings-init.php:68 admin/settings/settings-init.php:73 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:95 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:99 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:98 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:149 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:153 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:105 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:109 -msgid "Specific Countries" -msgstr "Nazioni specifiche" - -# @ woocommerce -#: admin/settings/settings-init.php:84 -msgid "Store Notice" -msgstr "Avviso Negozio" - -# @ woocommerce -#: admin/settings/settings-init.php:85 -msgid "Enable site-wide store notice text" -msgstr "Abilita un avviso presente su tutte le pagine del sito." - -# @ woocommerce -#: admin/settings/settings-init.php:92 -msgid "Store Notice Text" -msgstr "Testo dell'avviso" - -# @ woocommerce -#: admin/settings/settings-init.php:102 -msgid "Cart, Checkout and Accounts" -msgstr "Carrello, cassa e contabilità" - -# @ woocommerce -#: admin/settings/settings-init.php:106 -msgid "Enable the use of coupons" -msgstr "Attiva l'uso di coupon/codici promozionali" - -# @ woocommerce -#: admin/settings/settings-init.php:110 -msgid "Coupons can be applied from the cart and checkout pages." -msgstr "" -"I coupon possono essere inseriti dal carrello e dalle pagine di checkout." - -# @ woocommerce -#: admin/settings/settings-init.php:115 -msgid "Enable guest checkout (no account required)" -msgstr "Attiva l'acquisto per utente ospite (nessuna registrazione richiesta)" - -# @ woocommerce -#: admin/settings/settings-init.php:123 -msgid "Enable customer note field on checkout" -msgstr "Attiva un campo Note per il cliente al checkout" - -# @ woocommerce -#: admin/settings/settings-init.php:131 -msgid "Force secure checkout" -msgstr "Forza Pagamento Sicuro" - -# @ woocommerce -#: admin/settings/settings-init.php:137 -msgid "" -"Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -msgstr "" -"Forza SSL (HTTPS) sulla pagina di checkout (è richiesto un certificato SSL)." - -# @ woocommerce -#: admin/settings/settings-init.php:141 -msgid "Un-force HTTPS when leaving the checkout" -msgstr "Rimuovi HTTPS quando si esce dal checkout" - -# @ woocommerce -#: admin/settings/settings-init.php:150 -msgid "Registration" -msgstr "Registrazione" - -# @ woocommerce -#: admin/settings/settings-init.php:151 -msgid "Allow registration on the checkout page" -msgstr "Consentire la registrazione nella pagina di checkout" - -# @ woocommerce -#: admin/settings/settings-init.php:159 -msgid "Allow registration on the \"My Account\" page" -msgstr "Consentire la registrazione sulla pagina \"Mio Account\"" - -# @ woocommerce -#: admin/settings/settings-init.php:167 -msgid "Register using the email address for the username" -msgstr "Registra utilizzando l'indirizzo di posta elettronica come nome utente" - -# @ woocommerce -#: admin/settings/settings-init.php:175 -msgid "Customer Accounts" -msgstr "Account clienti" - -# @ woocommerce -#: admin/settings/settings-init.php:176 -msgid "Prevent customers from accessing WordPress admin" -msgstr "Impedire ai clienti di accedere a WordPress Admin" - -# @ woocommerce -#: admin/settings/settings-init.php:184 -msgid "Clear cart when logging out" -msgstr "Svuota carrello al momento della disconnessione" - -# @ woocommerce -#: admin/settings/settings-init.php:192 -msgid "Allow customers to repurchase orders from their account page" -msgstr "" -"Consentire ai clienti di riacquisto di ordini dalla loro pagina account" - -# @ woocommerce -#: admin/settings/settings-init.php:201 -msgid "Styles and Scripts" -msgstr "Stili e Scripts" - -# @ woocommerce -#: admin/settings/settings-init.php:204 -msgid "Styling" -msgstr "Stile" - -# @ woocommerce -#: admin/settings/settings-init.php:205 -msgid "Enable WooCommerce CSS" -msgstr "Attiva WooCommerce CSS" - -# @ woocommerce -#: admin/settings/settings-init.php:216 -msgid "Scripts" -msgstr "Scripts" - -# @ woocommerce -#: admin/settings/settings-init.php:217 -msgid "Enable Lightbox" -msgstr "Attiva Lightbox" - -# @ woocommerce -#: admin/settings/settings-init.php:220 -msgid "" -"Include WooCommerce's lightbox. Product gallery images and the add review " -"form will open in a lightbox." -msgstr "" -"Includere lightbox di WooCommerce. Le immagini della galleria del prodotto e " -"il modulo per la recensione si apriranno in una lightbox." - -# @ woocommerce -#: admin/settings/settings-init.php:226 -msgid "Enable enhanced country select boxes" -msgstr "Attiva il campo nazioni migliorato" - -# @ woocommerce -#: admin/settings/settings-init.php:231 -msgid "This will enable a script allowing the country fields to be searchable." -msgstr "" -"Questo attiverà uno script che permette al campo nazioni di essere " -"ricercabile." - -# @ woocommerce -#: admin/settings/settings-init.php:236 -msgid "Downloadable Products" -msgstr "Prodotti scaricabili." - -# @ woocommerce -#: admin/settings/settings-init.php:239 -msgid "File Download Method" -msgstr "Tipo di download dei file" - -# @ woocommerce -#: admin/settings/settings-init.php:240 -msgid "" -"Forcing downloads will keep URLs hidden, but some servers may serve large " -"files unreliably. If supported, X-Accel-Redirect/ X-" -"Sendfile can be used to serve downloads instead (server requires " -"mod_xsendfile)." -msgstr "" -"Forzare il download manterrà gli URL nascosti, ma alcuni server possono " -"servire file di grandi dimensioni in modo non affidabile. Se supportato, " -"X-Accel-Redirect/ X-Sendfile può essere utilizzato " -"per servire download al posto di (server requires mod_xsendfile)." - -# @ woocommerce -#: admin/settings/settings-init.php:248 -msgid "Force Downloads" -msgstr "Forza i download" - -# @ woocommerce -#: admin/settings/settings-init.php:249 -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "X-Accel-Redirect/X-Sendfile" - -# @ woocommerce -#: admin/settings/settings-init.php:250 -msgid "Redirect only" -msgstr "Reindirizza soltanto" - -# @ woocommerce -#: admin/settings/settings-init.php:255 -msgid "Access Restriction" -msgstr "Restrizione di accesso" - -# @ woocommerce -#: admin/settings/settings-init.php:256 -msgid "Downloads require login" -msgstr "Download richiedono login" - -# @ woocommerce -#: admin/settings/settings-init.php:260 -msgid "This setting does not apply to guest purchases." -msgstr "Questa impostazione non si apllica agli acquisti degli ospiti." - -# @ woocommerce -#: admin/settings/settings-init.php:265 -msgid "Grant access to downloadable products after payment" -msgstr "Concedere l'accesso ai prodotti scaricabili dopo il pagamento" - -# @ woocommerce -#: admin/settings/settings-init.php:269 -msgid "" -"Enable this option to grant access to downloads when orders are \"processing" -"\", rather than \"completed\"." -msgstr "" -"Attivare questa opzione per concedere l'accesso ai download quando gli " -"ordini sono \"processati\", piuttosto che \"completati\"." - -# @ woocommerce -#: admin/settings/settings-init.php:285 -msgid "" -"Note: The shop page has children - child pages will not work if you enable " -"this option." -msgstr "" -"Nota: La pagina negozio ha pagine figlio - le pagine figlio non funzionano " -"se si attiva questa opzione." - -# @ woocommerce -#: admin/settings/settings-init.php:290 -msgid "Page Setup" -msgstr "Setup pagina" - -# @ woocommerce -#: admin/settings/settings-init.php:292 -#, php-format -msgid "" -"Set up core WooCommerce pages here, for example the base page. The base page " -"can also be used in your %sproduct permalinks%s." -msgstr "" -"Impostare le pagine fondamentali WooCommerce qui, per esempio la pagina di " -"base. La pagina di base può essere utilizzata anche nel vostro %sproduct " -"permalinks%s." - -# @ woocommerce -#: admin/settings/settings-init.php:297 -msgid "Shop Base Page" -msgstr "Pagina di base dello shop" - -# @ woocommerce -#: admin/settings/settings-init.php:298 -msgid "" -"This sets the base page of your shop - this is where your product archive " -"will be." -msgstr "" -"Questo imposta la pagina di base del tuo negozio - qua è dove si troverà il " -"vostro archivio prodotti." - -# @ woocommerce -#: admin/settings/settings-init.php:308 -msgid "Terms Page ID" -msgstr "ID Pagina Condizioni Generali" - -# @ woocommerce -#: admin/settings/settings-init.php:309 -msgid "" -"If you define a \"Terms\" page the customer will be asked if they accept " -"them when checking out." -msgstr "" -"Se si definisce una pagina per le \"Condizioni generali\", al cliente verrà " -"chiesto di accettarle al momento del check out." - -# @ woocommerce -#: admin/settings/settings-init.php:320 -msgid "Shop Pages" -msgstr "Pagine Shop" - -# @ woocommerce -#: admin/settings/settings-init.php:320 -msgid "" -"The following pages need selecting so that WooCommerce knows where they are. " -"These pages should have been created upon installation of the plugin, if not " -"you will need to create them." -msgstr "" -"Le pagine di seguito devono essesre selezionate in modo che WooCommerce " -"sappia dove siano. Queste pagine dovrebbero essere state create al momento " -"dell'installazione del plugin, in caso contrario è necessario crearle " -"manualmente." - -# @ woocommerce -#: admin/settings/settings-init.php:323 -msgid "Cart Page" -msgstr "Carrello" - -# @ woocommerce -#: admin/settings/settings-init.php:324 -msgid "Page contents: [woocommerce_cart]" -msgstr "Contenuto pagina: [woocommerce_cart]" - -# @ woocommerce -#: admin/settings/settings-init.php:334 -msgid "Checkout Page" -msgstr "Checkout" - -# @ woocommerce -#: admin/settings/settings-init.php:335 -msgid "Page contents: [woocommerce_checkout]" -msgstr "Contenuto pagina: [woocommerce_checkout]" - -# @ woocommerce -#: admin/settings/settings-init.php:345 -msgid "Pay Page" -msgstr "Pagamento" - -# @ woocommerce -#: admin/settings/settings-init.php:346 -msgid "Page contents: [woocommerce_pay] Parent: \"Checkout\"" -msgstr "Contenuto pagina: [woocommerce_pay] Parent: \"Checkout\"" - -# @ woocommerce -#: admin/settings/settings-init.php:356 -msgid "Thanks Page" -msgstr "Ringraziamento" - -# @ woocommerce -#: admin/settings/settings-init.php:357 -msgid "Page contents: [woocommerce_thankyou] Parent: \"Checkout\"" -msgstr "Contenuto pagina: [woocommerce_thankyou] Parent: \"Checkout\"" - -# @ woocommerce -#: admin/settings/settings-init.php:367 -msgid "My Account Page" -msgstr "Il mio account" - -# @ woocommerce -#: admin/settings/settings-init.php:368 -msgid "Page contents: [woocommerce_my_account]" -msgstr "Contenuto pagina: [woocommerce_my_account]" - -# @ woocommerce -#: admin/settings/settings-init.php:378 -msgid "Edit Address Page" -msgstr "Modifica indirizzo" - -# @ woocommerce -#: admin/settings/settings-init.php:379 -msgid "Page contents: [woocommerce_edit_address] Parent: \"My Account\"" -msgstr "Contenuto pagina: " - -# @ woocommerce -#: admin/settings/settings-init.php:389 -msgid "View Order Page" -msgstr "Vedi Ordine" - -# @ woocommerce -#: admin/settings/settings-init.php:390 -msgid "Page contents: [woocommerce_view_order] Parent: \"My Account\"" -msgstr "Contenuto pagina: [woocommerce_view_order] Parent: \"My Account\"" - -# @ woocommerce -#: admin/settings/settings-init.php:400 -msgid "Change Password Page" -msgstr "Cambia la password" - -# @ woocommerce -#: admin/settings/settings-init.php:401 -msgid "Page contents: [woocommerce_change_password] Parent: \"My Account\"" -msgstr "Contenuto pagina: [woocommerce_change_password] Parent: \"My Account\"" - -# @ woocommerce -#: admin/settings/settings-init.php:411 -msgid "Logout Page" -msgstr "Logout" - -# @ woocommerce -#: admin/settings/settings-init.php:412 -msgid "Parent: \"My Account\"" -msgstr "Parent: \"My Account\"" - -# @ woocommerce -#: admin/settings/settings-init.php:422 -msgid "Lost Password Page" -msgstr "Password smarrita" - -# @ woocommerce -#: admin/settings/settings-init.php:423 -msgid "Page contents: [woocommerce_lost_password] Parent: \"My Account\"" -msgstr "Contenuto pagina: [woocommerce_lost_password] Parent: \"My Account\"" - -# @ woocommerce -#: admin/settings/settings-init.php:439 -msgid "Catalog Options" -msgstr "Opzioni catalogo" - -# @ woocommerce -#: admin/settings/settings-init.php:442 -msgid "Default Product Sorting" -msgstr "Impostazione predefinita ordinamento prodotti" - -# @ woocommerce -#: admin/settings/settings-init.php:443 -msgid "This controls the default sort order of the catalog." -msgstr "Questo controlla l'ordinamento predefinito del catalogo." - -# @ woocommerce -#: admin/settings/settings-init.php:449 -msgid "Default sorting (custom ordering + name)" -msgstr "Predefinito (ordinamento personalizzato + nome)" - -# @ woocommerce -#: admin/settings/settings-init.php:450 -msgid "Popularity (sales)" -msgstr "Popolarità (vendite)" - -# @ woocommerce -#: admin/settings/settings-init.php:451 -msgid "Average Rating" -msgstr "Valutazione media" - -# @ woocommerce -#: admin/settings/settings-init.php:452 -msgid "Sort by most recent" -msgstr "Dal più recente" - -# @ woocommerce -#: admin/settings/settings-init.php:453 -msgid "Sort by price (asc)" -msgstr "Ordina per prezzo (crescente)" - -# @ woocommerce -#: admin/settings/settings-init.php:454 -msgid "Sort by price (desc)" -msgstr "Ordina per prezzo (decrescente)" - -# @ woocommerce -#: admin/settings/settings-init.php:460 -msgid "Shop Page Display" -msgstr "Visualizzazione pagina negozio" - -# @ woocommerce -#: admin/settings/settings-init.php:461 -msgid "This controls what is shown on the product archive." -msgstr "Questa opzione controlla ciò che viene mostrato in archivio prodotti." - -# @ woocommerce -#: admin/settings/settings-init.php:467 admin/settings/settings-init.php:482 -msgid "Show products" -msgstr "Mostra prodotti" - -# @ woocommerce -#: admin/settings/settings-init.php:468 admin/settings/settings-init.php:483 -msgid "Show subcategories" -msgstr "Mostra sottocategorie" - -# @ woocommerce -#: admin/settings/settings-init.php:469 admin/settings/settings-init.php:484 -msgid "Show both" -msgstr "Mostra entrambi" - -# @ woocommerce -#: admin/settings/settings-init.php:475 -msgid "Default Category Display" -msgstr "Categoria di default" - -# @ woocommerce -#: admin/settings/settings-init.php:476 -msgid "This controls what is shown on category archives." -msgstr "" -"Questa opzione controlla ciò che viene mostrato nelle pagine per categoria." - -# @ woocommerce -#: admin/settings/settings-init.php:490 classes/class-wc-shortcodes.php:572 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:257 -#: templates/loop/add-to-cart.php:46 -#: templates/single-product/add-to-cart/grouped.php:45 -#: templates/single-product/add-to-cart/grouped.php:77 -#: templates/single-product/add-to-cart/simple.php:42 -#: templates/single-product/add-to-cart/variable.php:83 -msgid "Add to cart" -msgstr "Acquista" - -# @ woocommerce -#: admin/settings/settings-init.php:491 -msgid "Redirect to the cart page after successful addition" -msgstr "Reindirizza alla pagina del carrello dopo un'aggiunta riuscita" - -# @ woocommerce -#: admin/settings/settings-init.php:499 -msgid "Enable AJAX add to cart buttons on archives" -msgstr "Attiva pulsanti AJAX aggiungi al carrello negli archivi" - -# @ woocommerce -#: admin/settings/settings-init.php:508 -msgid "" -"The following options affect the fields available on the edit product page." -msgstr "" -"Le seguenti opzioni incidono sui campi disponibili nella pagina di modifica " -"prodotto." - -# @ woocommerce -#: admin/settings/settings-init.php:511 -msgid "Product Fields" -msgstr "Campi del prodotto" - -# @ woocommerce -#: admin/settings/settings-init.php:512 -msgid "Enable the SKU field for products" -msgstr "" -"Abilitare il campo COD (identificatore univoco) per i " -"prodotti" - -# @ woocommerce -#: admin/settings/settings-init.php:520 -msgid "" -"Enable the weight field for products (some shipping methods " -"may require this)" -msgstr "" -"Attiva il campo peso per i prodotti (alcune modalità di " -"spedizione potrebbero richiederlo)" - -# @ woocommerce -#: admin/settings/settings-init.php:528 -msgid "" -"Enable the dimension fields for products (some shipping " -"methods may require this)" -msgstr "" -"Attiva il campo dimensione per i prodotti (alcune modalità " -"di spedizione potrebbero richiederlo)" - -# @ woocommerce -#: admin/settings/settings-init.php:536 -msgid "" -"Show weight and dimension values on the Additional " -"Information tab" -msgstr "" -"Mostra i valori di peso e dimensioni nelle Informazioni " -"Aggiuntive" - -# @ woocommerce -#: admin/settings/settings-init.php:544 -msgid "Weight Unit" -msgstr "Unità di peso" - -# @ woocommerce -#: admin/settings/settings-init.php:545 -msgid "This controls what unit you will define weights in." -msgstr "Questa opzione controlla quale unità verrà usata per il peso" - -# @ woocommerce -#: admin/settings/settings-init.php:551 -msgid "kg" -msgstr "kg" - -# @ woocommerce -#: admin/settings/settings-init.php:552 -msgid "g" -msgstr "g" - -# @ woocommerce -#: admin/settings/settings-init.php:553 -msgid "lbs" -msgstr "lbs" - -# @ woocommerce -#: admin/settings/settings-init.php:554 -msgid "oz" -msgstr "oz" - -# @ woocommerce -#: admin/settings/settings-init.php:560 -msgid "Dimensions Unit" -msgstr "Misure Conf." - -# @ woocommerce -#: admin/settings/settings-init.php:561 -msgid "This controls what unit you will define lengths in." -msgstr "Questa opzione controlla quale unità verrà definita per le dimensioni" - -# @ woocommerce -#: admin/settings/settings-init.php:568 -msgid "cm" -msgstr "cm" - -# @ woocommerce -#: admin/settings/settings-init.php:569 -msgid "mm" -msgstr "mm" - -# @ woocommerce -#: admin/settings/settings-init.php:570 -msgid "in" -msgstr "in" - -# @ woocommerce -#: admin/settings/settings-init.php:571 -msgid "yd" -msgstr "yd" - -# @ woocommerce -#: admin/settings/settings-init.php:577 -msgid "Product Ratings" -msgstr "Valutazione del prodotto" - -# @ woocommerce -#: admin/settings/settings-init.php:578 -msgid "Enable ratings on reviews" -msgstr "Attiva i voti sulle recensioni" - -# @ woocommerce -#: admin/settings/settings-init.php:587 -msgid "Ratings are required to leave a review" -msgstr "Per votare bisogna scrivere una recensione" - -# @ woocommerce -#: admin/settings/settings-init.php:596 -msgid "Show \"verified owner\" label for customer reviews" -msgstr "" -"Mostra l'etichetta \"proprietario verificato\" nelle recensioni dei clienti" - -# @ woocommerce -#: admin/settings/settings-init.php:606 -msgid "Pricing Options" -msgstr "Opzioni prezzo" - -# @ woocommerce -#: admin/settings/settings-init.php:606 -msgid "The following options affect how prices are displayed on the frontend." -msgstr "" -"Le seguenti opzioni incidono su come i prezzi sono visualizzati sul frontend." - -# @ woocommerce -#: admin/settings/settings-init.php:609 -msgid "Currency Position" -msgstr "Posizione valuta" - -# @ woocommerce -#: admin/settings/settings-init.php:610 -msgid "This controls the position of the currency symbol." -msgstr "Questo controlla la posizione del simbolo di valuta." - -# @ woocommerce -#: admin/settings/settings-init.php:616 -msgid "Left" -msgstr "Sinistra" - -# @ woocommerce -#: admin/settings/settings-init.php:617 -msgid "Right" -msgstr "Destra" - -# @ woocommerce -#: admin/settings/settings-init.php:618 -msgid "Left (with space)" -msgstr "Sinistra (con lo spazio)" - -# @ woocommerce -#: admin/settings/settings-init.php:619 -msgid "Right (with space)" -msgstr "Destra (con lo spazio)" - -# @ woocommerce -#: admin/settings/settings-init.php:625 -msgid "Thousand Separator" -msgstr "Separatore migliaia" - -# @ woocommerce -#: admin/settings/settings-init.php:626 -msgid "This sets the thousand separator of displayed prices." -msgstr "Imposta il separatore delle migliaia dei prezzi esposti." - -# @ woocommerce -#: admin/settings/settings-init.php:635 -msgid "Decimal Separator" -msgstr "Separatore decimali" - -# @ woocommerce -#: admin/settings/settings-init.php:636 -msgid "This sets the decimal separator of displayed prices." -msgstr "Imposta il separatore dei decimali dei prezzi esposti." - -# @ woocommerce -#: admin/settings/settings-init.php:645 -msgid "Number of Decimals" -msgstr "Numero di decimali" - -# @ woocommerce -#: admin/settings/settings-init.php:646 -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "Imposta il numero di punti decimali indicati nei prezzi esposti." - -# @ woocommerce -#: admin/settings/settings-init.php:659 -msgid "Trailing Zeros" -msgstr "Zeri finali" - -# @ woocommerce -#: admin/settings/settings-init.php:660 -msgid "" -"Remove zeros after the decimal point. e.g. $10.00 becomes " -"$10" -msgstr "" -"Rimuovere zeri dopo la virgola. ad esempio €10,00 diventa " -"€10" - -# @ woocommerce -#: admin/settings/settings-init.php:668 -msgid "Image Options" -msgstr "Opzioni immagine" - -# @ woocommerce -#: admin/settings/settings-init.php:668 -#, php-format -msgid "" -"These settings affect the actual dimensions of images in your catalog - the " -"display on the front-end will still be affected by CSS styles. After " -"changing these settings you may need to regenerate your " -"thumbnails." -msgstr "" -"Queste impostazioni influiscono sulle dimensioni effettive delle immagini " -"contenute nel catalogo - il display del front-end sarà ancora influenzato " -"dagli stili CSS. Dopo aver modificato queste impostazioni potrebbe essere " -"necessario rigenerare le miniature." - -# @ woocommerce -#: admin/settings/settings-init.php:671 -msgid "Catalog Images" -msgstr "Immagini catalogo" - -# @ woocommerce -#: admin/settings/settings-init.php:672 -msgid "This size is usually used in product listings" -msgstr "Questa dimensione è di solito usata nell'elenco dei prodotti" - -# @ woocommerce -#: admin/settings/settings-init.php:685 -msgid "Single Product Image" -msgstr "Foto del singolo prodotto" - -# @ woocommerce -#: admin/settings/settings-init.php:686 -msgid "This is the size used by the main image on the product page." -msgstr "" -"Questo è la dimensione usata per l'immagine principale sulla pagina del " -"prodotto." - -# @ woocommerce -#: admin/settings/settings-init.php:699 -msgid "Product Thumbnails" -msgstr "Immagini prodotto" - -# @ woocommerce -#: admin/settings/settings-init.php:700 -msgid "" -"This size is usually used for the gallery of images on the product page." -msgstr "" -"Questa dimensione è di solito utilizzata per la galleria di immagini sulla " -"pagina del prodotto." - -# @ woocommerce -#: admin/settings/settings-init.php:719 -msgid "Inventory Options" -msgstr "Opzioni inventario" - -# @ woocommerce -#: admin/settings/settings-init.php:722 -msgid "Manage Stock" -msgstr "Gestione scorte" - -# @ woocommerce -#: admin/settings/settings-init.php:723 -msgid "Enable stock management" -msgstr "Abilitare la gestione delle scorte" - -# @ woocommerce -#: admin/settings/settings-init.php:730 -msgid "Hold Stock (minutes)" -msgstr "Mantenere scorte (minuti)" - -# @ woocommerce -#: admin/settings/settings-init.php:731 -msgid "" -"Hold stock (for unpaid orders) for x minutes. When this limit is reached, " -"the pending order will be cancelled. Leave blank to disable." -msgstr "" -"Mantenere scorte (per gli ordini non pagati) per x minuti. Quando viene " -"raggiunto questo limite, l'ordine in corso verrà annullato. Lascia vuoto per " -"disabilitare." - -# @ woocommerce -#: admin/settings/settings-init.php:743 -msgid "Notifications" -msgstr "Notifiche" - -# @ woocommerce -#: admin/settings/settings-init.php:744 -msgid "Enable low stock notifications" -msgstr "Abilita le notifiche per scorte basse" - -# @ woocommerce -#: admin/settings/settings-init.php:752 -msgid "Enable out of stock notifications" -msgstr "Abilita le notifiche per merce non disponibile" - -# @ woocommerce -#: admin/settings/settings-init.php:760 -msgid "Notification Recipient" -msgstr "Destinatario della notifica" - -# @ woocommerce -#: admin/settings/settings-init.php:768 -msgid "Low Stock Threshold" -msgstr "Soglia per scorta in esaurimento" - -# @ woocommerce -#: admin/settings/settings-init.php:781 -msgid "Out Of Stock Threshold" -msgstr "Soglia per scorta non disponibile" - -# @ woocommerce -#: admin/settings/settings-init.php:794 -msgid "Out Of Stock Visibility" -msgstr "Visibilità scorta non disponibile" - -# @ woocommerce -#: admin/settings/settings-init.php:795 -msgid "Hide out of stock items from the catalog" -msgstr "Nascondi gli articoli fuori stock dal catalogo" - -# @ woocommerce -#: admin/settings/settings-init.php:802 -msgid "Stock Display Format" -msgstr "Formato di visualizzazione dello stock" - -# @ woocommerce -#: admin/settings/settings-init.php:803 -msgid "This controls how stock is displayed on the frontend." -msgstr "Questo controlla come le scorte sono visualizzate sul frontend." - -# @ woocommerce -#: admin/settings/settings-init.php:809 -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "Mostra sempre la disponibilità a magazzino es. \"12 in stock\"" - -# @ woocommerce -#: admin/settings/settings-init.php:810 -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "" -"Mostra solo quando lo stock è basso es. \"Solo 2 pezzi disponibili\" vs. " -"\"Disponibile\"" - -# @ woocommerce -#: admin/settings/settings-init.php:811 -msgid "Never show stock amount" -msgstr "Non mostrare mai la disponiblità a magazzino" - -# @ woocommerce -#: admin/settings/settings-init.php:826 -msgid "Shipping Calculations" -msgstr "Calcoli per la spedizione" - -# @ woocommerce -#: admin/settings/settings-init.php:827 -msgid "Enable shipping" -msgstr "Attiva spese di spedizione" - -# @ woocommerce -#: admin/settings/settings-init.php:835 -msgid "Enable the shipping calculator on the cart page" -msgstr "Attiva il calcolo delle spese di spedizione sulla pagina del carrello" - -# @ woocommerce -#: admin/settings/settings-init.php:843 -msgid "Hide shipping costs until an address is entered" -msgstr "" -"Nascondi le spese di spedizione fino a quando viene immesso un indirizzo" - -# @ woocommerce -#: admin/settings/settings-init.php:851 -msgid "Shipping Method Display" -msgstr "Visualizzazione metodo per spese di spedizione" - -# @ woocommerce -#: admin/settings/settings-init.php:852 -msgid "" -"This controls how multiple shipping methods are displayed on the frontend." -msgstr "" -"Questo controlla come le diverse modalità di spedizione vengono visualizzate " -"sul frontend." - -# @ woocommerce -#: admin/settings/settings-init.php:858 -msgid "Radio buttons" -msgstr "Pulsanti di scelta" - -# @ woocommerce -#: admin/settings/settings-init.php:859 -msgid "Select box" -msgstr "Casella di selezione" - -# @ woocommerce -#: admin/settings/settings-init.php:865 -msgid "Shipping Destination" -msgstr "Destinazione di spedizione" - -# @ woocommerce -#: admin/settings/settings-init.php:866 -msgid "Only ship to the users billing address" -msgstr "Spedire soltanto all'indirizzo di fatturazione" - -# @ woocommerce -#: admin/settings/settings-init.php:874 -msgid "Ship to billing address by default" -msgstr "Spedire di default all'indirizzo di fatturazione" - -# @ woocommerce -#: admin/settings/settings-init.php:882 -msgid "Collect shipping address even when not required" -msgstr "Registrare gli indirizzi di spedizione anche quando non richiesti" - -# @ woocommerce -#: admin/settings/settings-init.php:900 -msgid "" -"Installed payment gateways are displayed below. Drag and drop payment " -"gateways to control their display order on the checkout." -msgstr "" -"I sistemi di pagamento installati vengono visualizzati sotto. Trascinare e " -"rilasciare i sistemi di pagamento per controllare il loro ordine di " -"visualizzazione in cassa." - -# @ woocommerce -#: admin/settings/settings-init.php:921 -msgid "Enable Taxes" -msgstr "Abilitare le imposte" - -# @ woocommerce -#: admin/settings/settings-init.php:922 -msgid "Enable taxes and tax calculations" -msgstr "Abilita imposte e calcoli fiscali" - -# @ woocommerce -#: admin/settings/settings-init.php:929 -msgid "Prices Entered With Tax" -msgstr "Prezzi inseriti con imposte" - -# @ woocommerce -#: admin/settings/settings-init.php:933 -msgid "" -"This option is important as it will affect how you input prices. Changing it " -"will not update existing products." -msgstr "" -"Questa opzione è importante in quanto influirà sull'inserimento dei prezzi. " -"La modifica non interviene sui prodotti già esistenti." - -# @ woocommerce -#: admin/settings/settings-init.php:935 -msgid "Yes, I will enter prices inclusive of tax" -msgstr "Sì, voglio inserire i prezzi comprensivi di imposte" - -# @ woocommerce -#: admin/settings/settings-init.php:936 -msgid "No, I will enter prices exclusive of tax" -msgstr "No, inserirò prezzi al netto di imposta" - -# @ woocommerce -#: admin/settings/settings-init.php:941 -msgid "Calculate Tax Based On:" -msgstr "Calcolo tassazione riferita ad:" - -# @ woocommerce -#: admin/settings/settings-init.php:943 -msgid "This option determines which address is used to calculate tax." -msgstr "" -"Questa opzione determina quale indirizzo viene utilizzato per calcolare " -"l'imposta." - -# @ woocommerce -#: admin/settings/settings-init.php:947 -msgid "Customer shipping address" -msgstr "Indirizzo di spedizione del cliente" - -# @ woocommerce -#: admin/settings/settings-init.php:948 -msgid "Customer billing address" -msgstr "Indirizzo di fatturazione del cliente" - -# @ woocommerce -#: admin/settings/settings-init.php:949 admin/settings/settings-init.php:961 -msgid "Shop base address" -msgstr "Indirizzo di base negozio" - -# @ woocommerce -#: admin/settings/settings-init.php:954 -msgid "Default Customer Address:" -msgstr "Indirizzo predefinito clienti:" - -# @ woocommerce -#: admin/settings/settings-init.php:956 -msgid "" -"This option determines the customers default address (before they input " -"their own)." -msgstr "" -"Questa opzione determina l'indirizzo di default clienti (prima che immettano " -"il proprio)." - -# @ woocommerce -#: admin/settings/settings-init.php:960 -msgid "No address" -msgstr "Nessun indirizzo" - -# @ woocommerce -#: admin/settings/settings-init.php:966 -msgid "Shipping Tax Class:" -msgstr "Aliquota spese di spedizione:" - -# @ woocommerce -#: admin/settings/settings-init.php:967 -msgid "" -"Optionally control which tax class shipping gets, or leave it so shipping " -"tax is based on the cart items themselves." -msgstr "" -"Controlla opzionalmente quale aliquota ha la spedizione, o lascia invariato " -"così che l'aliquota si basi su quella applicata ai prodotti nel carrello." - -# @ woocommerce -#: admin/settings/settings-init.php:972 -msgid "Shipping tax class based on cart items" -msgstr "Aliquota per la spedizione basata sui prodotti del carrello" - -# @ woocommerce -#: admin/settings/settings-init.php:977 -msgid "Rounding" -msgstr "Arrotondamento" - -# @ woocommerce -#: admin/settings/settings-init.php:978 -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "" -"Arrotonda le imposte nel subtotale, invece di arrotondare per ogni riga" - -# @ woocommerce -#: admin/settings/settings-init.php:985 -msgid "Additional Tax Classes" -msgstr "Aliquote addizionali" - -# @ woocommerce -#: admin/settings/settings-init.php:986 -msgid "" -"List additonal tax classes below (1 per line). This is in addition to the " -"default Standard Rate. Tax classes can be assigned to products." -msgstr "" -"Elenca le aliquote aggiuntive sotto (1 per linea). Questo è in aggiunta " -"all'Aliquota Standard. Le diverse aliquote possono essere " -"assegnate ai prodotti." - -# @ woocommerce -#: admin/settings/settings-init.php:990 -#, php-format -msgid "Reduced Rate%sZero Rate" -msgstr "Reduced Rate%sZero Rate" - -# @ woocommerce -#: admin/settings/settings-init.php:994 -msgid "Display prices during cart/checkout:" -msgstr "Visualizza i prezzi nel carrello/cassa:" - -# @ woocommerce -#: admin/settings/settings-init.php:999 -msgid "Including tax" -msgstr "Tasse incluse" - -# @ woocommerce -#: admin/settings/settings-init.php:1000 -msgid "Excluding tax" -msgstr "Tasse escluse" - -# @ woocommerce -#: admin/settings/settings-init.php:1012 -msgid "Email Sender Options" -msgstr "Opzioni email mittente" - -# @ woocommerce -#: admin/settings/settings-init.php:1012 -msgid "" -"The following options affect the sender (email address and name) used in " -"WooCommerce emails." -msgstr "" -"Le opzioni seguenti incidono sul mittente (indirizzo email e nome) " -"utilizzato nelle email inviate da WooCommerce." - -# @ woocommerce -#: admin/settings/settings-init.php:1015 -msgid "\"From\" Name" -msgstr "\"Da\" Nome" - -# @ woocommerce -#: admin/settings/settings-init.php:1024 -msgid "\"From\" Email Address" -msgstr "\"Da\" indirizzo Email" - -# @ woocommerce -#: admin/settings/settings-init.php:1037 -msgid "Email Template" -msgstr "Email Template" - -# @ woocommerce -#: admin/settings/settings-init.php:1037 -#, php-format -msgid "" -"This section lets you customise the WooCommerce emails. Click here to preview your email template. For more " -"advanced control copy woocommerce/templates/emails/ to " -"yourtheme/woocommerce/emails/." -msgstr "" -"Questa sezione permette di personalizzare le email WooCommerce. Clicca qui per un'anteprima del template email. Per " -"un controllo più avanzato copia woocommerce/templates/emails/nel tuotema/woocommerce/emails/." - -# @ woocommerce -#: admin/settings/settings-init.php:1040 -msgid "Header Image" -msgstr "Immagine intestazione" - -# @ woocommerce -#: admin/settings/settings-init.php:1041 -#, php-format -msgid "" -"Enter a URL to an image you want to show in the email's header. Upload your " -"image using the media uploader." -msgstr "" -"Inserire un URL di un'immagine che si desidera visualizzare nella " -"intestazione della email. Carica la tua immagine usando il media uploader." - -# @ woocommerce -#: admin/settings/settings-init.php:1049 -msgid "Email Footer Text" -msgstr "Testo piè di pagina email" - -# @ woocommerce -#: admin/settings/settings-init.php:1050 -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "Testo che apparirà nel piè di pagina delle email di WooCommerce." - -# @ woocommerce -#: admin/settings/settings-init.php:1054 -msgid "Powered by WooCommerce" -msgstr "Powered by WooCommerce" - -# @ woocommerce -#: admin/settings/settings-init.php:1058 -msgid "Base Colour" -msgstr "Colore di base" - -# @ woocommerce -#: admin/settings/settings-init.php:1059 -msgid "" -"The base colour for WooCommerce email templates. Default #557da1." -msgstr "" -"Colore di base per i modelli di posta elettronica WooCommerce. Default " -"#557da1." - -# @ woocommerce -#: admin/settings/settings-init.php:1067 -msgid "Background Colour" -msgstr "Colore di sfondo" - -# @ woocommerce -#: admin/settings/settings-init.php:1068 -msgid "" -"The background colour for WooCommerce email templates. Default " -"#f5f5f5." -msgstr "" -"Colore di sfondo per i modelli di posta elettronica WooCommerce. Default " -"#f5f5f5." - -# @ woocommerce -#: admin/settings/settings-init.php:1076 -msgid "Email Body Background Colour" -msgstr "Colore di sfondo del corpo dell'email" - -# @ woocommerce -#: admin/settings/settings-init.php:1077 -msgid "The main body background colour. Default #fdfdfd." -msgstr "" -"Colore di sfondo principale del corpo dell'email. Default #fdfdfd." - -# @ woocommerce -#: admin/settings/settings-init.php:1085 -msgid "Email Body Text Colour" -msgstr "Colore del testo dell'email." - -# @ woocommerce -#: admin/settings/settings-init.php:1086 -msgid "The main body text colour. Default #505050." -msgstr "Colore principale del testo. Default #505050." - -# @ woocommerce -#: admin/settings/settings-payment-gateways.php:28 -msgid "Gateway" -msgstr "Metodo di pagamento" - -# @ woocommerce -#: admin/settings/settings-payment-gateways.php:45 -msgid "Gateway ID" -msgstr "ID del metodo di pagamento" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:23 -msgid "Shipping Methods" -msgstr "Metodi di spedizione" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:25 -msgid "Drag and drop methods to control their display order." -msgstr "" -"Trascinare e rilasciare le modalità per controllare il loro ordine di " -"visualizzazione." - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:30 -msgid "Shipping Method" -msgstr "Metodo di spedizione" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:46 -msgid "Method ID" -msgstr "ID Metodo" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:29 -#, php-format -msgid "Tax Rates for the \"%s\" Class" -msgstr "Aliquote per la \"%s\" classe" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:30 -#, php-format -msgid "" -"Define tax rates for countries and states below. See here " -"for available alpha-2 country codes." -msgstr "" -"Definire le aliquote fiscali per i paesi e stati di seguito. Vedi qui per i codici alfa-2 disponibili per nazione." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:36 -msgid "Country Code" -msgstr "Codice Nazione" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:36 -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "" -"Codice del paese a 2 cifre, ad esempio US. Lascia in bianco per applicare a " -"tutti." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:38 -msgid "State Code" -msgstr "Siglae Provincia" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:38 -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "" -"Sigla provincia a 2 lettere, ad esempio AL. Lascia in bianco per applicare a " -"tutti." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:40 -#: admin/settings/settings-tax-rates.php:217 -msgid "ZIP/Postcode" -msgstr "Cap/Codice Postale" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:40 -msgid "" -"Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all areas. Wildcards (*) can be used. Ranges for numeric " -"postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "" -"CAP per questa regola. Punto e virgola (;) separano i valori multipli. " -"Lascia in bianco per applicare a tutte le aree. I caratteri jolly (*) " -"possono essere utilizzati. Intervalli per codici postali numerici (ad " -"esempio 12.345-12.350) saranno suddivisi in singoli codici postali." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:42 -msgid "" -"Cities for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all cities." -msgstr "" -"Città per questa regola. Punto e virgola (;) separano valori multipli. " -"Lascia in bianco per applicare a tutte le città." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:44 -msgid "Rate %" -msgstr "Tasso %" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:44 -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "Inserisci un'aliquota fiscale (percentuale) a 4 decimali." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:46 -msgid "Tax Name" -msgstr "Nome dell'imposta" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:46 -msgid "Enter a name for this tax rate." -msgstr "Immettere un nome per questa aliquota." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:48 -#: admin/settings/settings-tax-rates.php:217 -msgid "Priority" -msgstr "Priorità" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:48 -msgid "" -"Choose a priority for this tax rate. Only 1 matching rate per priority will " -"be used. To define multiple tax rates for a single area you need to specify " -"a different priority per rate." -msgstr "" -"Scegliere una priorità per questa aliquota. Sarà usato solo 1 tasso " -"corrispondente per priorità. Per definire multiple aliquote fiscali per una " -"singola area è necessario specificare una diversa priorità per aliquota." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:50 -#: admin/settings/settings-tax-rates.php:217 -msgid "Compound" -msgstr "Composto" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:50 -msgid "" -"Choose whether or not this is a compound rate. Compound tax rates are " -"applied on top of other tax rates." -msgstr "" -"Scegli se questo è un tasso composto. Le aliquote fiscali composte vengono " -"applicate sulle altre aliquote." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:52 -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "Scegliere se questa aliquota viene anche applicata alla spedizione." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:59 -msgid "Insert row" -msgstr "Inserisci riga" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:60 -msgid "Remove selected row(s)" -msgstr "Rimuovere riga selezionata(e)" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:62 -msgid "Export CSV" -msgstr "Esporta CSV" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:63 -msgid "Import CSV" -msgstr "Importa CSV" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:163 -msgid "No row(s) selected" -msgstr "Nessuna riga selezionata" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Country Code" -msgstr "Sigla Nazione" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "State Code" -msgstr "Sigla Regione" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Rate %" -msgstr "Aliquota %" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Name" -msgstr "Nome dell'imposta" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:5 -msgid "Insert Shortcode" -msgstr "Inserisci Shortcode" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:6 -msgid "Product price/cart button" -msgstr "Prezzo prodotto / Pulsante Carrello" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:7 -msgid "Product by SKU/ID" -msgstr "Prodotto per COD/ID" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:8 -msgid "Products by SKU/ID" -msgstr "Prodotti per COD/ID" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:10 -msgid "Products by category slug" -msgstr "Prodotti per slug categoria" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:11 -msgid "Recent products" -msgstr "Prodotti Recenti" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:12 -msgid "Featured products" -msgstr "Prodotti In Evidenza" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:13 -msgid "Shop Messages" -msgstr "Messaggi Negozio" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:17 -msgid "Order tracking" -msgstr "Tracciamento Ordine" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:23 -msgid "Thankyou" -msgstr "Grazie" - -#: classes/class-wc-cache-helper.php:92 -#, php-format -msgid "" -"In order for database caching to work with WooCommerce you " -"must add _wc_session_ to the \"Ignored Query Strings\" option " -"in W3 Total Cache settings here." -msgstr "" -"In order for database caching to work with WooCommerce you " -"must add _wc_session_ to the \"Ignored Query Strings\" option " -"in W3 Total Cache settings here." - -# @ woocommerce -#: classes/class-wc-cart.php:460 -#, php-format -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -"Spiacenti, non abbiamo abbastanza \"%s\" in magazzino per soddisfare la " -"vostra richiesta (%s in magazzino). Si prega di aggiornare il carrello e " -"riprovare. Ci scusiamo per gli eventuali disagi causati." - -# @ woocommerce -#: classes/class-wc-cart.php:479 classes/class-wc-cart.php:488 -#, php-format -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfil your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -"Spiacenti, non abbiamo abbastanza \"%s\" a magazzino per soddisfare la " -"vostra richiesta (%s a magazzino). Si prega di aggiornare il carrello e " -"riprovare. Ci scusiamo per gli eventuali disagi causati." - -# @ woocommerce -#: classes/class-wc-cart.php:523 -#, php-format -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfil your order right now. " -"Please try again in %d minutes or edit your cart and try again. We apologise " -"for any inconvenience caused." -msgstr "" -"Spiacenti, non abbiamo abbastanza \"%s\" a magazzino per soddisfare la " -"vostra richiesta. Riprovare tra %d minuti o modificare il carrello e " -"riprovare. Ci scusiamo per gli eventuali disagi causati." - -# @ woocommerce -#: classes/class-wc-cart.php:533 -#, php-format -msgid "" -"Sorry, \"%s\" is not in stock. Please edit your cart and try again. We " -"apologise for any inconvenience caused." -msgstr "" -"Spiacenti, non abbiamo abbastanza \"%s\" a magazzino per soddisfare la " -"vostra richiesta. Si prega di aggiornare il carrello e riprovare. Ci " -"scusiamo per gli eventuali disagi causati." - -# @ woocommerce -#: classes/class-wc-cart.php:843 -#, php-format -msgid "Sorry, "%s" cannot be purchased." -msgstr "Spiacenti, "%s" non può essere acquistato." - -# @ woocommerce -#: classes/class-wc-cart.php:850 -#, php-format -msgid "" -"You cannot add "%s" to the cart because the product is out of " -"stock." -msgstr "" -"Non puoi aggiungere "%s" al carrello perché il prodotto è esaurito." - -# @ woocommerce -#: classes/class-wc-cart.php:855 -#, php-format -msgid "" -"You cannot add that amount of "%s" to the cart because there is " -"not enough stock (%s remaining)." -msgstr "" -"Non puoi aggiungere questa quantità di "%s" al carrello perché le " -"scorte di magazzino non sono sufficienti. (disponibili %s)." - -# @ woocommerce -#: classes/class-wc-cart.php:867 -msgid "You already have this item in your cart." -msgstr "Hai già questo articolo nel carrello." - -# @ woocommerce -#: classes/class-wc-cart.php:881 classes/class-wc-cart.php:889 -#, php-format -msgid "" -"%s You cannot add that amount to the " -"cart — we have %s in stock and you already have %s in your cart." -msgstr "" -"%s Non puoi inserire questa quantità nel " -"carrello — abbiamo disponibili solo %s pezzi e ne hai già %s nel tuo " -"carrello." - -# @ woocommerce -#: classes/class-wc-cart.php:1784 classes/class-wc-order.php:891 -#: classes/class-wc-product-variable.php:274 -#: classes/class-wc-product-variable.php:283 -#: classes/class-wc-product-variation.php:246 -#: classes/abstracts/abstract-wc-product.php:846 -#: classes/abstracts/abstract-wc-product.php:852 -msgid "Free!" -msgstr "Gratis!" - -# @ woocommerce -#: classes/class-wc-cart.php:1796 -msgid "via" -msgstr "tramite" - -# @ woocommerce -#: classes/class-wc-checkout.php:64 -msgid "Account username" -msgstr "nome utente dell'account" - -# @ woocommerce -#: classes/class-wc-checkout.php:65 -msgctxt "placeholder" -msgid "Username" -msgstr "Nome Utente" - -# @ woocommerce -#: classes/class-wc-checkout.php:72 -msgid "Account password" -msgstr "password dell'account" - -# @ woocommerce -#: classes/class-wc-checkout.php:73 -msgctxt "placeholder" -msgid "Password" -msgstr "Password" - -# @ woocommerce -#: classes/class-wc-checkout.php:79 -msgid "Confirm password" -msgstr "Conferma la password" - -# @ woocommerce -#: classes/class-wc-checkout.php:80 -msgctxt "placeholder" -msgid "Confirm password" -msgstr "Conferma la password" - -# @ woocommerce -#: classes/class-wc-checkout.php:90 -msgctxt "placeholder" -msgid "Notes about your order, e.g. special notes for delivery." -msgstr "Note sull'ordine, ad esempio richieste particolari per la consegna." - -# @ woocommerce -#: classes/class-wc-checkout.php:152 -#, php-format -msgid "Order – %s" -msgstr "Ordine – %s" - -# @ woocommerce -#: classes/class-wc-checkout.php:152 -msgctxt "Order date parsed by strftime" -msgid "%b %d, %Y @ %I:%M %p" -msgstr "%b %d, %Y @ %I:%M %p" - -# @ woocommerce -#: classes/class-wc-checkout.php:278 -msgid "Backordered" -msgstr "In Pre-Ordinazione" - -# @ woocommerce -#: classes/class-wc-checkout.php:388 -#, php-format -msgid "" -"Sorry, your session has expired. Return to homepage →" -msgstr "" -"Spiacenti, la tua sessione è scaduta. Torna alla homepage " -"→" - -# @ woocommerce -#: classes/class-wc-checkout.php:453 -#, php-format -msgid "(%s) is not a valid postcode/ZIP." -msgstr "(%s) non è un codice postale valido." - -# @ woocommerce -#: classes/class-wc-checkout.php:474 -msgid "is not valid. Please enter one of the following:" -msgstr "non è valido. Per favore, inserire uno dei seguenti:" - -# @ woocommerce -#: classes/class-wc-checkout.php:482 -msgid "is not a valid number." -msgstr "non è un numero valido." - -# @ woocommerce -#: classes/class-wc-checkout.php:489 -msgid "is not a valid email address." -msgstr "non è un indirizzo email valido." - -# @ woocommerce -#: classes/class-wc-checkout.php:545 -msgid "Please enter an account username." -msgstr "Inserire un nome utente per l'account." - -# @ woocommerce -#: classes/class-wc-checkout.php:549 -msgid "Invalid email/username." -msgstr "Email / Nome Utente non valido." - -# @ woocommerce -#: classes/class-wc-checkout.php:552 -msgid "" -"An account is already registered with that username. Please choose another." -msgstr "" -"Un altro account è registrato con questo nome utente. Sceglierne un altro." - -# @ woocommerce -#: classes/class-wc-checkout.php:562 -msgid "Please enter an account password." -msgstr "Inserire una password per l'account." - -# @ woocommerce -#: classes/class-wc-checkout.php:569 -msgid "An account is already registered with your email address. Please login." -msgstr "Esiste già un account con il tuo indirizzo email. Per favore, accedi." - -# @ woocommerce -#: classes/class-wc-checkout.php:575 -msgid "You must accept our Terms & Conditions." -msgstr "Devi accettare i nostri Termini e Condizioni." - -# @ woocommerce -#: classes/class-wc-checkout.php:584 -msgid "Invalid shipping method." -msgstr "Metodo di spedizione non valido." - -# @ woocommerce -#: classes/class-wc-checkout.php:597 -msgid "Invalid payment method." -msgstr "Metodo di pagamento non valido." - -# @ woocommerce -#: classes/class-wc-countries.php:37 -msgid "Afghanistan" -msgstr "Afghanistan" - -# @ woocommerce -#: classes/class-wc-countries.php:38 -msgid "Åland Islands" -msgstr "Åland Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:39 -msgid "Albania" -msgstr "Albania" - -# @ woocommerce -#: classes/class-wc-countries.php:40 -msgid "Algeria" -msgstr "Algeria" - -# @ woocommerce -#: classes/class-wc-countries.php:41 -msgid "Andorra" -msgstr "Andorra" - -# @ woocommerce -#: classes/class-wc-countries.php:42 -msgid "Angola" -msgstr "Angola" - -# @ woocommerce -#: classes/class-wc-countries.php:43 -msgid "Anguilla" -msgstr "Anguilla" - -# @ woocommerce -#: classes/class-wc-countries.php:44 -msgid "Antarctica" -msgstr "Antarctica" - -# @ woocommerce -#: classes/class-wc-countries.php:45 -msgid "Antigua and Barbuda" -msgstr "Antigua and Barbuda" - -# @ woocommerce -#: classes/class-wc-countries.php:46 -msgid "Argentina" -msgstr "Argentina" - -# @ woocommerce -#: classes/class-wc-countries.php:47 -msgid "Armenia" -msgstr "Armenia" - -# @ woocommerce -#: classes/class-wc-countries.php:48 -msgid "Aruba" -msgstr "Aruba" - -# @ woocommerce -#: classes/class-wc-countries.php:49 -msgid "Australia" -msgstr "Australia" - -# @ woocommerce -#: classes/class-wc-countries.php:50 -msgid "Austria" -msgstr "Austria" - -# @ woocommerce -#: classes/class-wc-countries.php:51 -msgid "Azerbaijan" -msgstr "Azerbaijan" - -# @ woocommerce -#: classes/class-wc-countries.php:52 -msgid "Bahamas" -msgstr "Bahamas" - -# @ woocommerce -#: classes/class-wc-countries.php:53 -msgid "Bahrain" -msgstr "Bahrain" - -# @ woocommerce -#: classes/class-wc-countries.php:54 -msgid "Bangladesh" -msgstr "Bangladesh" - -# @ woocommerce -#: classes/class-wc-countries.php:55 -msgid "Barbados" -msgstr "Barbados" - -# @ woocommerce -#: classes/class-wc-countries.php:56 -msgid "Belarus" -msgstr "Belarus" - -# @ woocommerce -#: classes/class-wc-countries.php:57 -msgid "Belgium" -msgstr "Belgium" - -# @ woocommerce -#: classes/class-wc-countries.php:58 -msgid "Belau" -msgstr "Belau" - -# @ woocommerce -#: classes/class-wc-countries.php:59 -msgid "Belize" -msgstr "Belize" - -# @ woocommerce -#: classes/class-wc-countries.php:60 -msgid "Benin" -msgstr "Benin" - -# @ woocommerce -#: classes/class-wc-countries.php:61 -msgid "Bermuda" -msgstr "Bermuda" - -# @ woocommerce -#: classes/class-wc-countries.php:62 -msgid "Bhutan" -msgstr "Bhutan" - -# @ woocommerce -#: classes/class-wc-countries.php:63 -msgid "Bolivia" -msgstr "Bolivia" - -# @ woocommerce -#: classes/class-wc-countries.php:64 -msgid "Bonaire, Saint Eustatius and Saba" -msgstr "Bonaire, Saint Eustatius and Saba" - -# @ woocommerce -#: classes/class-wc-countries.php:65 -msgid "Bosnia and Herzegovina" -msgstr "Bosnia and Herzegovina" - -# @ woocommerce -#: classes/class-wc-countries.php:66 -msgid "Botswana" -msgstr "Botswana" - -# @ woocommerce -#: classes/class-wc-countries.php:67 -msgid "Bouvet Island" -msgstr "Bouvet Island" - -# @ woocommerce -#: classes/class-wc-countries.php:68 -msgid "Brazil" -msgstr "Brazil" - -# @ woocommerce -#: classes/class-wc-countries.php:69 -msgid "British Indian Ocean Territory" -msgstr "British Indian Ocean Territory" - -# @ woocommerce -#: classes/class-wc-countries.php:70 -msgid "British Virgin Islands" -msgstr "British Virgin Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:71 -msgid "Brunei" -msgstr "Brunei" - -# @ woocommerce -#: classes/class-wc-countries.php:72 -msgid "Bulgaria" -msgstr "Bulgaria" - -# @ woocommerce -#: classes/class-wc-countries.php:73 -msgid "Burkina Faso" -msgstr "Burkina Faso" - -# @ woocommerce -#: classes/class-wc-countries.php:74 -msgid "Burundi" -msgstr "Burundi" - -# @ woocommerce -#: classes/class-wc-countries.php:75 -msgid "Cambodia" -msgstr "Cambodia" - -# @ woocommerce -#: classes/class-wc-countries.php:76 -msgid "Cameroon" -msgstr "Cameroon" - -# @ woocommerce -#: classes/class-wc-countries.php:77 -msgid "Canada" -msgstr "Canada" - -# @ woocommerce -#: classes/class-wc-countries.php:78 -msgid "Cape Verde" -msgstr "Cape Verde" - -# @ woocommerce -#: classes/class-wc-countries.php:79 -msgid "Cayman Islands" -msgstr "Cayman Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:80 -msgid "Central African Republic" -msgstr "Central African Republic" - -# @ woocommerce -#: classes/class-wc-countries.php:81 -msgid "Chad" -msgstr "Chad" - -# @ woocommerce -#: classes/class-wc-countries.php:82 -msgid "Chile" -msgstr "Chile" - -# @ woocommerce -#: classes/class-wc-countries.php:83 -msgid "China" -msgstr "China" - -# @ woocommerce -#: classes/class-wc-countries.php:84 -msgid "Christmas Island" -msgstr "Christmas Island" - -# @ woocommerce -#: classes/class-wc-countries.php:85 -msgid "Cocos (Keeling) Islands" -msgstr "Cocos (Keeling) Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:86 -msgid "Colombia" -msgstr "Colombia" - -# @ woocommerce -#: classes/class-wc-countries.php:87 -msgid "Comoros" -msgstr "Comoros" - -# @ woocommerce -#: classes/class-wc-countries.php:88 -msgid "Congo (Brazzaville)" -msgstr "Congo (Brazzaville)" - -# @ woocommerce -#: classes/class-wc-countries.php:89 -msgid "Congo (Kinshasa)" -msgstr "Congo (Kinshasa)" - -# @ woocommerce -#: classes/class-wc-countries.php:90 -msgid "Cook Islands" -msgstr "Cook Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:91 -msgid "Costa Rica" -msgstr "Costa Rica" - -# @ woocommerce -#: classes/class-wc-countries.php:92 -msgid "Croatia" -msgstr "Croatia" - -# @ woocommerce -#: classes/class-wc-countries.php:93 -msgid "Cuba" -msgstr "Cuba" - -# @ woocommerce -#: classes/class-wc-countries.php:94 -msgid "CuraÇao" -msgstr "CuraÇao" - -# @ woocommerce -#: classes/class-wc-countries.php:95 -msgid "Cyprus" -msgstr "Cyprus" - -# @ woocommerce -#: classes/class-wc-countries.php:96 -msgid "Czech Republic" -msgstr "Czech Republic" - -# @ woocommerce -#: classes/class-wc-countries.php:97 -msgid "Denmark" -msgstr "Denmark" - -# @ woocommerce -#: classes/class-wc-countries.php:98 -msgid "Djibouti" -msgstr "Djibouti" - -# @ woocommerce -#: classes/class-wc-countries.php:99 -msgid "Dominica" -msgstr "Dominica" - -# @ woocommerce -#: classes/class-wc-countries.php:100 -msgid "Dominican Republic" -msgstr "Dominican Republic" - -# @ woocommerce -#: classes/class-wc-countries.php:101 -msgid "Ecuador" -msgstr "Ecuador" - -# @ woocommerce -#: classes/class-wc-countries.php:102 -msgid "Egypt" -msgstr "Egypt" - -# @ woocommerce -#: classes/class-wc-countries.php:103 -msgid "El Salvador" -msgstr "El Salvador" - -# @ woocommerce -#: classes/class-wc-countries.php:104 -msgid "Equatorial Guinea" -msgstr "Equatorial Guinea" - -# @ woocommerce -#: classes/class-wc-countries.php:105 -msgid "Eritrea" -msgstr "Eritrea" - -# @ woocommerce -#: classes/class-wc-countries.php:106 -msgid "Estonia" -msgstr "Estonia" - -# @ woocommerce -#: classes/class-wc-countries.php:107 -msgid "Ethiopia" -msgstr "Ethiopia" - -# @ woocommerce -#: classes/class-wc-countries.php:108 -msgid "Falkland Islands" -msgstr "Falkland Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:109 -msgid "Faroe Islands" -msgstr "Faroe Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:110 -msgid "Fiji" -msgstr "Fiji" - -# @ woocommerce -#: classes/class-wc-countries.php:111 -msgid "Finland" -msgstr "Finland" - -# @ woocommerce -#: classes/class-wc-countries.php:112 -msgid "France" -msgstr "France" - -# @ woocommerce -#: classes/class-wc-countries.php:113 -msgid "French Guiana" -msgstr "French Guiana" - -# @ woocommerce -#: classes/class-wc-countries.php:114 -msgid "French Polynesia" -msgstr "French Polynesia" - -# @ woocommerce -#: classes/class-wc-countries.php:115 -msgid "French Southern Territories" -msgstr "French Southern Territories" - -# @ woocommerce -#: classes/class-wc-countries.php:116 -msgid "Gabon" -msgstr "Gabon" - -# @ woocommerce -#: classes/class-wc-countries.php:117 -msgid "Gambia" -msgstr "Gambia" - -# @ woocommerce -#: classes/class-wc-countries.php:118 i18n/states/US.php:23 -msgid "Georgia" -msgstr "Georgia" - -# @ woocommerce -#: classes/class-wc-countries.php:119 -msgid "Germany" -msgstr "Germany" - -# @ woocommerce -#: classes/class-wc-countries.php:120 -msgid "Ghana" -msgstr "Ghana" - -# @ woocommerce -#: classes/class-wc-countries.php:121 -msgid "Gibraltar" -msgstr "Gibraltar" - -# @ woocommerce -#: classes/class-wc-countries.php:122 -msgid "Greece" -msgstr "Greece" - -# @ woocommerce -#: classes/class-wc-countries.php:123 -msgid "Greenland" -msgstr "Greenland" - -# @ woocommerce -#: classes/class-wc-countries.php:124 -msgid "Grenada" -msgstr "Grenada" - -# @ woocommerce -#: classes/class-wc-countries.php:125 -msgid "Guadeloupe" -msgstr "Guadeloupe" - -# @ woocommerce -#: classes/class-wc-countries.php:126 -msgid "Guatemala" -msgstr "Guatemala" - -# @ woocommerce -#: classes/class-wc-countries.php:127 -msgid "Guernsey" -msgstr "Guernsey" - -# @ woocommerce -#: classes/class-wc-countries.php:128 -msgid "Guinea" -msgstr "Guinea" - -# @ woocommerce -#: classes/class-wc-countries.php:129 -msgid "Guinea-Bissau" -msgstr "Guinea-Bissau" - -# @ woocommerce -#: classes/class-wc-countries.php:130 -msgid "Guyana" -msgstr "Guyana" - -# @ woocommerce -#: classes/class-wc-countries.php:131 -msgid "Haiti" -msgstr "Haiti" - -# @ woocommerce -#: classes/class-wc-countries.php:132 -msgid "Heard Island and McDonald Islands" -msgstr "Heard Island and McDonald Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:133 -msgid "Honduras" -msgstr "Honduras" - -# @ woocommerce -#: classes/class-wc-countries.php:134 -msgid "Hong Kong" -msgstr "Hong Kong" - -# @ woocommerce -#: classes/class-wc-countries.php:135 -msgid "Hungary" -msgstr "Hungary" - -# @ woocommerce -#: classes/class-wc-countries.php:136 -msgid "Iceland" -msgstr "Iceland" - -# @ woocommerce -#: classes/class-wc-countries.php:137 -msgid "India" -msgstr "India" - -# @ woocommerce -#: classes/class-wc-countries.php:138 -msgid "Indonesia" -msgstr "Indonesia" - -# @ woocommerce -#: classes/class-wc-countries.php:139 -msgid "Iran" -msgstr "Iran" - -# @ woocommerce -#: classes/class-wc-countries.php:140 -msgid "Iraq" -msgstr "Iraq" - -# @ woocommerce -#: classes/class-wc-countries.php:141 -msgid "Republic of Ireland" -msgstr "Republic of Ireland" - -# @ woocommerce -#: classes/class-wc-countries.php:142 -msgid "Isle of Man" -msgstr "Isle of Man" - -# @ woocommerce -#: classes/class-wc-countries.php:143 -msgid "Israel" -msgstr "Israel" - -# @ woocommerce -#: classes/class-wc-countries.php:144 -msgid "Italy" -msgstr "Italia" - -# @ woocommerce -#: classes/class-wc-countries.php:145 -msgid "Ivory Coast" -msgstr "Ivory Coast" - -# @ woocommerce -#: classes/class-wc-countries.php:146 -msgid "Jamaica" -msgstr "Jamaica" - -# @ woocommerce -#: classes/class-wc-countries.php:147 -msgid "Japan" -msgstr "Japan" - -# @ woocommerce -#: classes/class-wc-countries.php:148 -msgid "Jersey" -msgstr "Jersey" - -# @ woocommerce -#: classes/class-wc-countries.php:149 -msgid "Jordan" -msgstr "Jordan" - -# @ woocommerce -#: classes/class-wc-countries.php:150 -msgid "Kazakhstan" -msgstr "Kazakhstan" - -# @ woocommerce -#: classes/class-wc-countries.php:151 -msgid "Kenya" -msgstr "Kenya" - -# @ woocommerce -#: classes/class-wc-countries.php:152 -msgid "Kiribati" -msgstr "Kiribati" - -# @ woocommerce -#: classes/class-wc-countries.php:153 -msgid "Kuwait" -msgstr "Kuwait" - -# @ woocommerce -#: classes/class-wc-countries.php:154 -msgid "Kyrgyzstan" -msgstr "Kyrgyzstan" - -# @ woocommerce -#: classes/class-wc-countries.php:155 -msgid "Laos" -msgstr "Laos" - -# @ woocommerce -#: classes/class-wc-countries.php:156 -msgid "Latvia" -msgstr "Latvia" - -# @ woocommerce -#: classes/class-wc-countries.php:157 -msgid "Lebanon" -msgstr "Lebanon" - -# @ woocommerce -#: classes/class-wc-countries.php:158 -msgid "Lesotho" -msgstr "Lesotho" - -# @ woocommerce -#: classes/class-wc-countries.php:159 -msgid "Liberia" -msgstr "Liberia" - -# @ woocommerce -#: classes/class-wc-countries.php:160 -msgid "Libya" -msgstr "Libya" - -# @ woocommerce -#: classes/class-wc-countries.php:161 -msgid "Liechtenstein" -msgstr "Liechtenstein" - -# @ woocommerce -#: classes/class-wc-countries.php:162 -msgid "Lithuania" -msgstr "Lithuania" - -# @ woocommerce -#: classes/class-wc-countries.php:163 -msgid "Luxembourg" -msgstr "Luxembourg" - -# @ woocommerce -#: classes/class-wc-countries.php:164 -msgid "Macao S.A.R., China" -msgstr "Macao S.A.R., China" - -# @ woocommerce -#: classes/class-wc-countries.php:165 -msgid "Macedonia" -msgstr "Macedonia" - -# @ woocommerce -#: classes/class-wc-countries.php:166 -msgid "Madagascar" -msgstr "Madagascar" - -# @ woocommerce -#: classes/class-wc-countries.php:167 -msgid "Malawi" -msgstr "Malawi" - -# @ woocommerce -#: classes/class-wc-countries.php:168 -msgid "Malaysia" -msgstr "Malaysia" - -# @ woocommerce -#: classes/class-wc-countries.php:169 -msgid "Maldives" -msgstr "Maldives" - -# @ woocommerce -#: classes/class-wc-countries.php:170 -msgid "Mali" -msgstr "Mali" - -# @ woocommerce -#: classes/class-wc-countries.php:171 -msgid "Malta" -msgstr "Malta" - -# @ woocommerce -#: classes/class-wc-countries.php:172 -msgid "Marshall Islands" -msgstr "Marshall Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:173 -msgid "Martinique" -msgstr "Martinique" - -# @ woocommerce -#: classes/class-wc-countries.php:174 -msgid "Mauritania" -msgstr "Mauritania" - -# @ woocommerce -#: classes/class-wc-countries.php:175 -msgid "Mauritius" -msgstr "Mauritius" - -# @ woocommerce -#: classes/class-wc-countries.php:176 -msgid "Mayotte" -msgstr "Mayotte" - -# @ woocommerce -#: classes/class-wc-countries.php:177 -msgid "Mexico" -msgstr "Mexico" - -# @ woocommerce -#: classes/class-wc-countries.php:178 -msgid "Micronesia" -msgstr "Micronesia" - -# @ woocommerce -#: classes/class-wc-countries.php:179 -msgid "Moldova" -msgstr "Moldova" - -# @ woocommerce -#: classes/class-wc-countries.php:180 -msgid "Monaco" -msgstr "Monaco" - -# @ woocommerce -#: classes/class-wc-countries.php:181 -msgid "Mongolia" -msgstr "Mongolia" - -# @ woocommerce -#: classes/class-wc-countries.php:182 -msgid "Montenegro" -msgstr "Montenegro" - -# @ woocommerce -#: classes/class-wc-countries.php:183 -msgid "Montserrat" -msgstr "Montserrat" - -# @ woocommerce -#: classes/class-wc-countries.php:184 -msgid "Morocco" -msgstr "Morocco" - -# @ woocommerce -#: classes/class-wc-countries.php:185 -msgid "Mozambique" -msgstr "Mozambique" - -# @ woocommerce -#: classes/class-wc-countries.php:186 -msgid "Myanmar" -msgstr "Myanmar" - -# @ woocommerce -#: classes/class-wc-countries.php:187 -msgid "Namibia" -msgstr "Namibia" - -# @ woocommerce -#: classes/class-wc-countries.php:188 -msgid "Nauru" -msgstr "Nauru" - -# @ woocommerce -#: classes/class-wc-countries.php:189 -msgid "Nepal" -msgstr "Nepal" - -# @ woocommerce -#: classes/class-wc-countries.php:190 -msgid "Netherlands" -msgstr "Netherlands" - -# @ woocommerce -#: classes/class-wc-countries.php:191 -msgid "Netherlands Antilles" -msgstr "Netherlands Antilles" - -# @ woocommerce -#: classes/class-wc-countries.php:192 -msgid "New Caledonia" -msgstr "New Caledonia" - -# @ woocommerce -#: classes/class-wc-countries.php:193 -msgid "New Zealand" -msgstr "New Zealand" - -# @ woocommerce -#: classes/class-wc-countries.php:194 -msgid "Nicaragua" -msgstr "Nicaragua" - -# @ woocommerce -#: classes/class-wc-countries.php:195 -msgid "Niger" -msgstr "Niger" - -# @ woocommerce -#: classes/class-wc-countries.php:196 -msgid "Nigeria" -msgstr "Nigeria" - -# @ woocommerce -#: classes/class-wc-countries.php:197 -msgid "Niue" -msgstr "Niue" - -# @ woocommerce -#: classes/class-wc-countries.php:198 -msgid "Norfolk Island" -msgstr "Norfolk Island" - -# @ woocommerce -#: classes/class-wc-countries.php:199 -msgid "North Korea" -msgstr "North Korea" - -# @ woocommerce -#: classes/class-wc-countries.php:200 -msgid "Norway" -msgstr "Norway" - -# @ woocommerce -#: classes/class-wc-countries.php:201 -msgid "Oman" -msgstr "Oman" - -# @ woocommerce -#: classes/class-wc-countries.php:202 -msgid "Pakistan" -msgstr "Pakistan" - -# @ woocommerce -#: classes/class-wc-countries.php:203 -msgid "Palestinian Territory" -msgstr "Palestinian Territory" - -# @ woocommerce -#: classes/class-wc-countries.php:204 -msgid "Panama" -msgstr "Panama" - -# @ woocommerce -#: classes/class-wc-countries.php:205 -msgid "Papua New Guinea" -msgstr "Papua New Guinea" - -# @ woocommerce -#: classes/class-wc-countries.php:206 -msgid "Paraguay" -msgstr "Paraguay" - -# @ woocommerce -#: classes/class-wc-countries.php:207 -msgid "Peru" -msgstr "Peru" - -# @ woocommerce -#: classes/class-wc-countries.php:208 -msgid "Philippines" -msgstr "Philippines" - -# @ woocommerce -#: classes/class-wc-countries.php:209 -msgid "Pitcairn" -msgstr "Pitcairn" - -# @ woocommerce -#: classes/class-wc-countries.php:210 -msgid "Poland" -msgstr "Poland" - -# @ woocommerce -#: classes/class-wc-countries.php:211 -msgid "Portugal" -msgstr "Portugal" - -# @ woocommerce -#: classes/class-wc-countries.php:212 -msgid "Qatar" -msgstr "Qatar" - -# @ woocommerce -#: classes/class-wc-countries.php:213 -msgid "Reunion" -msgstr "Reunion" - -# @ woocommerce -#: classes/class-wc-countries.php:214 -msgid "Romania" -msgstr "Romania" - -# @ woocommerce -#: classes/class-wc-countries.php:215 -msgid "Russia" -msgstr "Russia" - -# @ woocommerce -#: classes/class-wc-countries.php:216 -msgid "Rwanda" -msgstr "Rwanda" - -# @ woocommerce -#: classes/class-wc-countries.php:217 -msgid "Saint Barthélemy" -msgstr "Saint Barthélemy" - -# @ woocommerce -#: classes/class-wc-countries.php:218 -msgid "Saint Helena" -msgstr "Saint Helena" - -# @ woocommerce -#: classes/class-wc-countries.php:219 -msgid "Saint Kitts and Nevis" -msgstr "Saint Kitts and Nevis" - -# @ woocommerce -#: classes/class-wc-countries.php:220 -msgid "Saint Lucia" -msgstr "Saint Lucia" - -# @ woocommerce -#: classes/class-wc-countries.php:221 -msgid "Saint Martin (French part)" -msgstr "Saint Martin (French part)" - -# @ woocommerce -#: classes/class-wc-countries.php:222 -msgid "Saint Martin (Dutch part)" -msgstr "Saint Martin (Dutch part)" - -# @ woocommerce -#: classes/class-wc-countries.php:223 -msgid "Saint Pierre and Miquelon" -msgstr "Saint Pierre and Miquelon" - -# @ woocommerce -#: classes/class-wc-countries.php:224 -msgid "Saint Vincent and the Grenadines" -msgstr "Saint Vincent and the Grenadines" - -# @ woocommerce -#: classes/class-wc-countries.php:225 -msgid "San Marino" -msgstr "San Marino" - -# @ woocommerce -#: classes/class-wc-countries.php:226 -msgid "São Tomé and Príncipe" -msgstr "São Tomé and Príncipe" - -# @ woocommerce -#: classes/class-wc-countries.php:227 -msgid "Saudi Arabia" -msgstr "Saudi Arabia" - -# @ woocommerce -#: classes/class-wc-countries.php:228 -msgid "Senegal" -msgstr "Senegal" - -# @ woocommerce -#: classes/class-wc-countries.php:229 -msgid "Serbia" -msgstr "Serbia" - -# @ woocommerce -#: classes/class-wc-countries.php:230 -msgid "Seychelles" -msgstr "Seychelles" - -# @ woocommerce -#: classes/class-wc-countries.php:231 -msgid "Sierra Leone" -msgstr "Sierra Leone" - -# @ woocommerce -#: classes/class-wc-countries.php:232 -msgid "Singapore" -msgstr "Singapore" - -# @ woocommerce -#: classes/class-wc-countries.php:233 -msgid "Slovakia" -msgstr "Slovakia" - -# @ woocommerce -#: classes/class-wc-countries.php:234 -msgid "Slovenia" -msgstr "Slovenia" - -# @ woocommerce -#: classes/class-wc-countries.php:235 -msgid "Solomon Islands" -msgstr "Solomon Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:236 -msgid "Somalia" -msgstr "Somalia" - -# @ woocommerce -#: classes/class-wc-countries.php:237 -msgid "South Africa" -msgstr "South Africa" - -# @ woocommerce -#: classes/class-wc-countries.php:238 -msgid "South Georgia/Sandwich Islands" -msgstr "South Georgia/Sandwich Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:239 -msgid "South Korea" -msgstr "South Korea" - -# @ woocommerce -#: classes/class-wc-countries.php:240 -msgid "South Sudan" -msgstr "South Sudan" - -# @ woocommerce -#: classes/class-wc-countries.php:241 -msgid "Spain" -msgstr "Spain" - -# @ woocommerce -#: classes/class-wc-countries.php:242 -msgid "Sri Lanka" -msgstr "Sri Lanka" - -# @ woocommerce -#: classes/class-wc-countries.php:243 -msgid "Sudan" -msgstr "Sudan" - -# @ woocommerce -#: classes/class-wc-countries.php:244 -msgid "Suriname" -msgstr "Suriname" - -# @ woocommerce -#: classes/class-wc-countries.php:245 -msgid "Svalbard and Jan Mayen" -msgstr "Svalbard and Jan Mayen" - -# @ woocommerce -#: classes/class-wc-countries.php:246 -msgid "Swaziland" -msgstr "Swaziland" - -# @ woocommerce -#: classes/class-wc-countries.php:247 -msgid "Sweden" -msgstr "Sweden" - -# @ woocommerce -#: classes/class-wc-countries.php:248 -msgid "Switzerland" -msgstr "Switzerland" - -# @ woocommerce -#: classes/class-wc-countries.php:249 -msgid "Syria" -msgstr "Syria" - -# @ woocommerce -#: classes/class-wc-countries.php:250 -msgid "Taiwan" -msgstr "Taiwan" - -# @ woocommerce -#: classes/class-wc-countries.php:251 -msgid "Tajikistan" -msgstr "Tajikistan" - -# @ woocommerce -#: classes/class-wc-countries.php:252 -msgid "Tanzania" -msgstr "Tanzania" - -# @ woocommerce -#: classes/class-wc-countries.php:253 -msgid "Thailand" -msgstr "Thailand" - -# @ woocommerce -#: classes/class-wc-countries.php:254 -msgid "Timor-Leste" -msgstr "Timor-Leste" - -# @ woocommerce -#: classes/class-wc-countries.php:255 -msgid "Togo" -msgstr "Togo" - -# @ woocommerce -#: classes/class-wc-countries.php:256 -msgid "Tokelau" -msgstr "Tokelau" - -# @ woocommerce -#: classes/class-wc-countries.php:257 -msgid "Tonga" -msgstr "Tonga" - -# @ woocommerce -#: classes/class-wc-countries.php:258 -msgid "Trinidad and Tobago" -msgstr "Trinidad and Tobago" - -# @ woocommerce -#: classes/class-wc-countries.php:259 -msgid "Tunisia" -msgstr "Tunisia" - -# @ woocommerce -#: classes/class-wc-countries.php:260 -msgid "Turkey" -msgstr "Turkey" - -# @ woocommerce -#: classes/class-wc-countries.php:261 -msgid "Turkmenistan" -msgstr "Turkmenistan" - -# @ woocommerce -#: classes/class-wc-countries.php:262 -msgid "Turks and Caicos Islands" -msgstr "Turks and Caicos Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:263 -msgid "Tuvalu" -msgstr "Tuvalu" - -# @ woocommerce -#: classes/class-wc-countries.php:264 -msgid "Uganda" -msgstr "Uganda" - -# @ woocommerce -#: classes/class-wc-countries.php:265 -msgid "Ukraine" -msgstr "Ukraine" - -# @ woocommerce -#: classes/class-wc-countries.php:266 -msgid "United Arab Emirates" -msgstr "United Arab Emirates" - -# @ woocommerce -#: classes/class-wc-countries.php:267 -msgid "United Kingdom" -msgstr "United Kingdom" - -# @ woocommerce -#: classes/class-wc-countries.php:268 -msgid "United States" -msgstr "United States" - -# @ woocommerce -#: classes/class-wc-countries.php:269 -msgid "Uruguay" -msgstr "Uruguay" - -# @ woocommerce -#: classes/class-wc-countries.php:270 -msgid "Uzbekistan" -msgstr "Uzbekistan" - -# @ woocommerce -#: classes/class-wc-countries.php:271 -msgid "Vanuatu" -msgstr "Vanuatu" - -# @ woocommerce -#: classes/class-wc-countries.php:272 -msgid "Vatican" -msgstr "Vatican" - -# @ woocommerce -#: classes/class-wc-countries.php:273 -msgid "Venezuela" -msgstr "Venezuela" - -# @ woocommerce -#: classes/class-wc-countries.php:274 -msgid "Vietnam" -msgstr "Vietnam" - -# @ woocommerce -#: classes/class-wc-countries.php:275 -msgid "Wallis and Futuna" -msgstr "Wallis and Futuna" - -# @ woocommerce -#: classes/class-wc-countries.php:276 -msgid "Western Sahara" -msgstr "Western Sahara" - -#: classes/class-wc-countries.php:277 -msgid "Western Samoa" -msgstr "Western Samoa" - -# @ woocommerce -#: classes/class-wc-countries.php:278 -msgid "Yemen" -msgstr "Yemen" - -# @ woocommerce -#: classes/class-wc-countries.php:279 -msgid "Zambia" -msgstr "Zambia" - -# @ woocommerce -#: classes/class-wc-countries.php:280 -msgid "Zimbabwe" -msgstr "Zimbabwe" - -# @ woocommerce -#: classes/class-wc-countries.php:418 -msgid "to the" -msgstr "al" - -# @ woocommerce -#: classes/class-wc-countries.php:419 -msgid "to" -msgstr "a" - -# @ woocommerce -#: classes/class-wc-countries.php:432 -msgid "the" -msgstr "il" - -# @ woocommerce -#: classes/class-wc-countries.php:444 -msgid "VAT" -msgstr "IVA" - -# @ woocommerce -#: classes/class-wc-countries.php:457 -msgid "(incl. VAT)" -msgstr "(incl. IVA)" - -# @ woocommerce -#: classes/class-wc-countries.php:457 -msgid "(incl. tax)" -msgstr "(tasse incluse)" - -# @ woocommerce -#: classes/class-wc-countries.php:470 -msgid "(ex. VAT)" -msgstr "(esc. IVA)" - -# @ woocommerce -#: classes/class-wc-countries.php:694 -msgid "Company Name" -msgstr "Ragione sociale" - -# @ woocommerce -#: classes/class-wc-countries.php:699 -msgctxt "placeholder" -msgid "Street address" -msgstr "Indirizzo" - -# @ woocommerce -#: classes/class-wc-countries.php:704 -msgctxt "placeholder" -msgid "Apartment, suite, unit etc. (optional)" -msgstr "Appartamento, suite, unità ecc (opzionale)" - -# @ woocommerce -#: classes/class-wc-countries.php:709 classes/class-wc-countries.php:710 -msgid "Town / City" -msgstr "Città" - -# @ woocommerce -#: classes/class-wc-countries.php:716 classes/class-wc-countries.php:717 -msgid "State / County" -msgstr "Provincia" - -# @ woocommerce -#: classes/class-wc-countries.php:722 classes/class-wc-countries.php:723 -#: templates/cart/shipping-calculator.php:68 -msgid "Postcode / Zip" -msgstr "CAP" - -# @ woocommerce -#: classes/class-wc-countries.php:759 classes/class-wc-countries.php:769 -#: classes/class-wc-countries.php:789 classes/class-wc-countries.php:844 -#: classes/class-wc-countries.php:868 classes/class-wc-countries.php:918 -#: classes/class-wc-countries.php:942 classes/class-wc-countries.php:983 -msgid "Province" -msgstr "Provincia" - -# @ woocommerce -#: classes/class-wc-countries.php:775 -msgid "Canton" -msgstr "Canton" - -# @ woocommerce -#: classes/class-wc-countries.php:784 classes/class-wc-countries.php:924 -msgid "Municipality" -msgstr "Municipalità" - -# @ woocommerce -#: classes/class-wc-countries.php:831 -msgid "Town / District" -msgstr "Città" - -# @ woocommerce -#: classes/class-wc-countries.php:834 -msgid "Region" -msgstr "Regione" - -# @ woocommerce -#: classes/class-wc-countries.php:947 -msgid "Zip" -msgstr "C.A.P." - -# @ woocommerce -#: classes/class-wc-countries.php:950 -msgid "State" -msgstr "Provincia" - -# @ woocommerce -#: classes/class-wc-countries.php:958 -msgid "County" -msgstr "Contea" - -# @ woocommerce -#: classes/class-wc-countries.php:1059 -msgid "Email Address" -msgstr "Indirizzo email" - -# @ woocommerce -#: classes/class-wc-coupon.php:421 -msgid "Coupon code applied successfully." -msgstr "Codice promozionale applicato con successo." - -# @ woocommerce -#: classes/class-wc-coupon.php:442 -msgid "Coupon is not valid." -msgstr "Coupon non valido." - -# @ woocommerce -#: classes/class-wc-coupon.php:445 classes/class-wc-coupon.php:495 -msgid "Coupon does not exist!" -msgstr "Buono sconto non esistente!" - -# @ woocommerce -#: classes/class-wc-coupon.php:448 -#, php-format -msgid "" -"Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from " -"your order." -msgstr "" -"Spiacenti, sembra che il buono sconto \"%s\" non sia valido, per questo è " -"stato rimosso dall'ordine." - -# @ woocommerce -#: classes/class-wc-coupon.php:451 -#, php-format -msgid "" -"Sorry, it seems the coupon \"%s\" is not yours - it has now been removed " -"from your order." -msgstr "" -"Spiacenti, sembra che il buono sconto \"%s\" non sia assegnato a te, quindi " -"è stato rimosso dall'ordine." - -# @ woocommerce -#: classes/class-wc-coupon.php:454 -msgid "Coupon code already applied!" -msgstr "Codice promozionale già applicato!" - -# @ woocommerce -#: classes/class-wc-coupon.php:457 -#, php-format -msgid "" -"Sorry, coupon \"%s\" has already been applied and cannot be used in " -"conjunction with other coupons." -msgstr "" -"Spiacenti, il codice promozionale \"%s\" è già stato usato e non può essere " -"usato in combinazione con altri coupon." - -# @ woocommerce -#: classes/class-wc-coupon.php:460 -msgid "Coupon usage limit has been reached." -msgstr "Il limite di utilizzo del buono sconto è stato raggiunto." - -# @ woocommerce -#: classes/class-wc-coupon.php:463 -msgid "This coupon has expired." -msgstr "Questo buono sconto è scaduto." - -# @ woocommerce -#: classes/class-wc-coupon.php:466 -#, php-format -msgid "The minimum spend for this coupon is %s." -msgstr "Per utilizzare questo buono sconto, la spesa minima è %s." - -# @ woocommerce -#: classes/class-wc-coupon.php:469 -msgid "Sorry, this coupon is not applicable to your cart contents." -msgstr "" -"Spiacenti, il buono sconto non è applicabile al contenuto del tuo carrello." - -# @ woocommerce -#: classes/class-wc-coupon.php:472 -msgid "Sorry, this coupon is not valid for sale items." -msgstr "Siamo spiacenti, questo coupon non vale per gli articoli in saldo." - -# @ woocommerce -#: classes/class-wc-coupon.php:498 -msgid "Please enter a coupon code." -msgstr "Per favore, inserire un codice di buono sconto" - -# @ woocommerce -#: classes/class-wc-customer.php:628 classes/class-wc-customer.php:638 -#, php-format -msgid "File %d" -msgstr "File %d" - -# @ woocommerce -#: classes/class-wc-emails.php:246 -msgid "Note" -msgstr "Nota" - -# @ woocommerce -#: classes/class-wc-emails.php:281 -msgid "Product low in stock" -msgstr "Pochi pezzi a magazzino" - -# @ woocommerce -#: classes/class-wc-emails.php:288 classes/class-wc-emails.php:320 -#: classes/class-wc-emails.php:364 -#, php-format -msgid "Product #%s - %s" -msgstr "Prodotto #%s - %s" - -# @ woocommerce -#: classes/class-wc-emails.php:290 -msgid "is low in stock." -msgstr "ha pochi pezzi a magazzino." - -# @ woocommerce -#: classes/class-wc-emails.php:313 -msgid "Product out of stock" -msgstr "Il prodotto non è disponibile a magazzino" - -# @ woocommerce -#: classes/class-wc-emails.php:322 -msgid "is out of stock." -msgstr "non è disponibile a magazzino." - -# @ woocommerce -#: classes/class-wc-emails.php:357 -msgid "Product Backorder" -msgstr "Pre-Ordinazione Prodotto" - -# @ woocommerce -#: classes/class-wc-emails.php:366 -#, php-format -msgid "%s units of %s have been backordered in order #%s." -msgstr "" -"%s pezzi di %s sono in pre-ordinazione nell'ordine #%s. (Significa che non " -"sono attualmente presenti in magazzino)." - -# @ woocommerce -#: classes/class-wc-order.php:283 -msgctxt "hash before order number" -msgid "#" -msgstr "#" - -# @ woocommerce -#: classes/class-wc-order.php:886 -#, php-format -msgid " %svia %s" -msgstr " %stramite %s" - -# @ woocommerce -#: classes/class-wc-order.php:950 -msgid "Cart Subtotal:" -msgstr "Subtotale carrello:" - -# @ woocommerce -#: classes/class-wc-order.php:962 -msgid "Shipping:" -msgstr "Spedizione:" - -# @ woocommerce -#: classes/class-wc-order.php:1017 templates/cart/totals.php:105 -#: templates/checkout/review-order.php:104 -#, php-format -msgid "(Includes %s)" -msgstr "(Include %s)" - -# @ woocommerce -#: classes/class-wc-order.php:1220 -#, php-format -msgid "Order status changed from %s to %s." -msgstr "Lo stato dell'ordine è cambiato da %s a %s." - -# @ woocommerce -#: classes/class-wc-order.php:1464 -msgid "Order item stock reduced successfully." -msgstr "" -"La quantità in magazzino del prodotto ordinato è stata ridotta con successo." - -# @ woocommerce -#: classes/class-wc-product-external.php:56 -msgid "Buy product" -msgstr "Acquista il prodotto" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:431 -#: classes/emails/class-wc-email-customer-completed-order.php:135 -#: classes/emails/class-wc-email-customer-invoice.php:138 -#: classes/emails/class-wc-email-new-order.php:115 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:63 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:57 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:122 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:120 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:76 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:75 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:50 -msgid "Enable/Disable" -msgstr "Abilita/Disabilita" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:433 -#: classes/emails/class-wc-email-customer-completed-order.php:137 -#: classes/emails/class-wc-email-customer-invoice.php:140 -#: classes/emails/class-wc-email-new-order.php:117 -msgid "Enable this email notification" -msgstr "Abilita questa notifica email" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:437 -#: classes/emails/class-wc-email-customer-invoice.php:144 -msgid "Email subject" -msgstr "Oggetto Email" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:439 -#: classes/abstracts/abstract-wc-email.php:446 -#: classes/emails/class-wc-email-customer-completed-order.php:143 -#: classes/emails/class-wc-email-customer-completed-order.php:150 -#: classes/emails/class-wc-email-customer-completed-order.php:157 -#: classes/emails/class-wc-email-customer-completed-order.php:164 -#: classes/emails/class-wc-email-customer-invoice.php:146 -#: classes/emails/class-wc-email-customer-invoice.php:153 -#: classes/emails/class-wc-email-customer-invoice.php:160 -#: classes/emails/class-wc-email-customer-invoice.php:167 -#, php-format -msgid "Defaults to %s" -msgstr "Predefinito %s" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:444 -#: classes/emails/class-wc-email-customer-invoice.php:151 -msgid "Email heading" -msgstr "Intestazione Email" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:451 -#: classes/emails/class-wc-email-customer-completed-order.php:169 -#: classes/emails/class-wc-email-customer-invoice.php:172 -#: classes/emails/class-wc-email-new-order.php:142 -msgid "Email type" -msgstr "Tipo Email" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:453 -#: classes/emails/class-wc-email-customer-completed-order.php:171 -#: classes/emails/class-wc-email-customer-invoice.php:174 -#: classes/emails/class-wc-email-new-order.php:144 -msgid "Choose which format of email to send." -msgstr "Scegli quale formato utlizzare per l'email." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:457 -#: classes/emails/class-wc-email-customer-completed-order.php:175 -#: classes/emails/class-wc-email-customer-invoice.php:178 -#: classes/emails/class-wc-email-new-order.php:148 -msgid "Plain text" -msgstr "Testo" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:458 -#: classes/emails/class-wc-email-customer-completed-order.php:176 -#: classes/emails/class-wc-email-customer-invoice.php:179 -#: classes/emails/class-wc-email-new-order.php:149 -msgid "HTML" -msgstr "HTML" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:459 -#: classes/emails/class-wc-email-customer-completed-order.php:177 -#: classes/emails/class-wc-email-customer-invoice.php:180 -#: classes/emails/class-wc-email-new-order.php:150 -msgid "Multipart" -msgstr "Multiparte" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:495 -#: classes/abstracts/abstract-wc-email.php:516 -msgid "Could not write to template file." -msgstr "Non scrivere nel file di template." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:543 -msgid "Template file copied to theme." -msgstr "File di Template copiato nel tema." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:552 -msgid "Template file deleted from theme." -msgstr "File template eleiminato dal tema." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:572 -msgid "HTML template" -msgstr "HTML Template" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:573 -msgid "Plain text template" -msgstr "Template testo puro" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:592 -msgid "Delete template file" -msgstr "Elimina file template" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:595 -#, php-format -msgid "" -"This template has been overridden by your theme and can be found in: " -"%s." -msgstr "" -"Questo template è sovrascritto dal tuo tema e puoi trovarlo in: %s." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:610 -msgid "Copy file to theme" -msgstr "Copia file nel tema." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:613 -#, php-format -msgid "" -"To override and edit this email template copy %s to your theme " -"folder: %s." -msgstr "" -"Per sovrascrivere e modificare questo template email copia %s " -"nella cartella del tuo tema %s." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:624 -msgid "File was not found." -msgstr "File non trovato." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:649 -msgid "View template" -msgstr "Vedi Template" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:650 -msgid "Hide template" -msgstr "Nascondi template" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:661 -msgid "Are you sure you want to delete this template file?" -msgstr "Sei sicuro di voler eliminare questo file di template?" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:33 -msgid "" -"The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class " -"directly." -msgstr "" -"Il WC_Product è stato astratto. Utilizza get_product() per creare un'istanza di un prodotto invece di chiamare direttamente " -"questa classe." - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:550 -#, php-format -msgid "Only %s left in stock" -msgstr "Solo %s pezzi disponibili" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:553 -#, php-format -msgid "%s in stock" -msgstr "%s disponibili" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:560 -msgid "(backorders allowed)" -msgstr "(pre-ordinazione possibile)" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:566 -#: classes/abstracts/abstract-wc-product.php:579 templates/cart/cart.php:76 -msgid "Available on backorder" -msgstr "Disponibile per la Pre-Ordinazione." - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:870 -msgctxt "min_price" -msgid "From:" -msgstr "A partire da:" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:959 -#: templates/single-product-reviews.php:28 -#, php-format -msgid "Rated %s out of 5" -msgstr "Valutato %s su 5" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:24 -msgid "Completed order" -msgstr "Ordine Completato" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:25 -msgid "" -"Order complete emails are sent to the customer when the order is marked " -"complete and usual indicates that the order has been shipped." -msgstr "" -"Le email per ordine portato a termine sono inviate al cliente quando un " -"ordine è settato come \"completato\" e di solito significa che i prodotti " -"nell'ordine sono stati spediti." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:27 -msgid "Your order is complete" -msgstr "Il suo ordine è stato portato a termine" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:28 -msgid "Your {blogname} order from {order_date} is complete" -msgstr "" -"Il suo ordine presso {blogname}, eseguito il {order_date}, è stato portato a " -"termine." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:37 -msgid "Your order is complete - download your files" -msgstr "" -"Il suo ordine è stato portato a termine - può procedere con il download dei " -"suoi file." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:38 -msgid "" -"Your {blogname} order from {order_date} is complete - download your files" -msgstr "" -"Il suo ordine presso {blogname}, eseguito il {order_date} è stato portato a " -"termine - può procedere con il download dei suoi file." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:141 -#: classes/emails/class-wc-email-new-order.php:128 -msgid "Subject" -msgstr "Oggetto" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:148 -#: classes/emails/class-wc-email-new-order.php:135 -msgid "Email Heading" -msgstr "Intestatzione Email" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:155 -msgid "Subject (downloadable)" -msgstr "Oggetto (prodotto scaricabile)" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:162 -msgid "Email Heading (downloadable)" -msgstr "Intestazione email (prodotto scaricabile)" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:27 -msgid "Customer invoice" -msgstr "Fattura Cliente" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:28 -msgid "" -"Customer invoice emails can be sent to the user containing order info and " -"payment links." -msgstr "" -"Le fatture possono essere inviate tramite email al cliente e possono " -"contenere le informazioni dell'ordine e i link per i pagamenti." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:33 -msgid "Invoice for order {order_number} from {order_date}" -msgstr "Fattura per l'ordine {order_number} del {order_date}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:34 -msgid "Invoice for order {order_number}" -msgstr "Fattura per l'ordine {order_number}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:36 -msgid "Your {blogname} order from {order_date}" -msgstr "Il tuo ordine presso {blogname} del {order_date}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:37 -msgid "Order {order_number} details" -msgstr "Dettagli Ordine {order_number}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:158 -msgid "Email subject (paid)" -msgstr "Oggetto Email (pagato)" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:165 -msgid "Email heading (paid)" -msgstr "Intestazione Email (pagato)" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:31 -msgid "New account" -msgstr "Nuovo Account" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:32 -msgid "" -"Customer new account emails are sent when a customer signs up via the " -"checkout or My Account page." -msgstr "" -"Le email per nuovo account sono inviate quando un cliente si iscrive al sito " -"tramite la pagina cassa o tramite la pagina Mio Account." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:37 -msgid "Your account on {blogname}" -msgstr "Account su {blogname}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:38 -msgid "Welcome to {blogname}" -msgstr "Benvenuto su {blogname}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:30 -msgid "Customer note emails are sent when you add a note to an order." -msgstr "" -"Le email per nota al cliente, sono inviate quando aggiungi una nota ad un " -"ordine." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:35 -msgid "Note added to your {blogname} order from {order_date}" -msgstr "Nota aggiunta al suo ordine presso {blogname} del {order_date}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:36 -msgid "A note has been added to your order" -msgstr "Una nota è stata aggiunta al tuo ordine" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:24 -msgid "Processing order" -msgstr "Ordine in Elaborazione" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:25 -msgid "" -"This is an order notification sent to the customer after payment containing " -"order details." -msgstr "" -"Questa è una notifica inviata al cliente dopo il pagamento contenente il " -"dettaglio dell'ordine." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:27 -msgid "Thank you for your order" -msgstr "Grazie per il suo Ordine" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:28 -msgid "Your {blogname} order receipt from {order_date}" -msgstr "Ricevuta per l'ordine presso {blogname} del {order_date}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:36 -msgid "Reset password" -msgstr "Resettare la password" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:37 -msgid "" -"Customer reset password emails are sent when a customer resets their " -"password." -msgstr "" -"Le email di reset della password del cliente vengono inviate solamente " -"quando un cliente resetta la password." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:42 -msgid "Password Reset for {blogname}" -msgstr "Password Reset per {blogname}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:43 -msgid "Password Reset Instructions" -msgstr "Istruzioni reimpostazione password" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:24 -msgid "New order" -msgstr "Nuovo Ordine" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:25 -msgid "New order emails are sent when an order is received/paid by a customer." -msgstr "" -"Le email per nuovo ordine sono inviate qunado un ordine è stato ricevuto o " -"pagato da un cliente." - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:27 -msgid "New customer order" -msgstr "Nuovo Ordine Cliente" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:28 -msgid "[{blogname}] New customer order ({order_number}) - {order_date}" -msgstr "[{blogname}] Nuovo Ordine Cliente ({order_number}) - {order_date}" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:121 -msgid "Recipient(s)" -msgstr "Destinatario(i)" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:123 -#, php-format -msgid "" -"Enter recipients (comma separated) for this email. Defaults to %s." -msgstr "" -"Inserisci i destinatari (separa con una virgola) per questa email. " -"Predefinito %s." - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:130 -#, php-format -msgid "" -"This controls the email subject line. Leave blank to use the default " -"subject: %s." -msgstr "" -"Qui imposti l'oggetto della email. Lascia vuoto per utilizzare il " -"predefinito: %s." - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:137 -#, php-format -msgid "" -"This controls the main heading contained within the email notification. " -"Leave blank to use the default heading: %s." -msgstr "" -"Qui imposti l'intestazione principale all'interno delle email di notifica. " -"Lascia vuoto per utilizzare l'intestazione predefinita: %s." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:28 -msgid "Bacs" -msgstr "Bonifico" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:65 -msgid "Enable Bank Transfer" -msgstr "Abilita Bonifico Bancario" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:69 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:63 -#: classes/gateways/cod/class-wc-gateway-cod.php:87 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:135 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:126 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:104 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:84 -msgid "Title" -msgstr "Titolo" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:71 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:65 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:137 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:128 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:83 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:58 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:106 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:86 -msgid "This controls the title which the user sees during checkout." -msgstr "" -"Quest'opzione controlla il titolo che gli utenti vedono durante il pagamento." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:72 -msgid "Direct Bank Transfer" -msgstr "Bonifico Bancario" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:76 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:70 -msgid "Customer Message" -msgstr "Messaggio utente" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:78 -msgid "" -"Give the customer instructions for paying via BACS, and let them know that " -"their order won't be shipping until the money is received." -msgstr "" -"Fornisci le credenziali necessarie ai clienti per pagarti tramite bonifico, " -"ed informali che il loro ordine non sarà spedito finché i fondi non saranno " -"accreditati." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:79 -msgid "" -"Make your payment directly into our bank account. Please use your Order ID " -"as the payment reference. Your order wont be shipped until the funds have " -"cleared in our account." -msgstr "" -"Rimaniamo in attesa del suo pagamento tramite bonifico. Per favore, " -"inserisca il suo ID Ordine nella causale. La informiamo che l'ordine non " -"sarà spedito finché i fondi non saranno accreditati presso il nostro " -"istituto." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:82 -msgid "Account Details" -msgstr "Coordinate" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:84 -msgid "Optionally enter your bank details below for customers to pay into." -msgstr "" -"Opzionalmente inserisci le tue coordinate bancarie per permettere ai clienti " -"di pagarti." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:88 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:163 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:203 -msgid "Account Name" -msgstr "Nome account" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:94 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:164 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:204 -msgid "Account Number" -msgstr "Numero account" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:100 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:165 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:205 -msgid "Sort Code" -msgstr "Ordina codice" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:106 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:166 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:206 -msgid "Bank Name" -msgstr "Nome banca" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:112 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:167 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:207 -msgid "IBAN" -msgstr "IBAN" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:117 -msgid "BIC (formerly Swift)" -msgstr "BIC (ex Swift)" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:136 -msgid "BACS Payment" -msgstr "Pagamento con bonifico" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:137 -msgid "" -"Allows payments by BACS (Bank Account Clearing System), more commonly known " -"as direct bank/wire transfer." -msgstr "Permetti pagamenti via sistema bancario (bonifico)" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:158 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:200 -msgid "Our Details" -msgstr "Le nostre credenziali" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:168 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:208 -msgid "BIC" -msgstr "BIC" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:234 -msgid "Awaiting BACS payment" -msgstr "In attesa di pagamento con bonifico" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:28 -msgid "Cheque" -msgstr "Assegno" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:59 -msgid "Enable Cheque Payment" -msgstr "Abilita pagamento con assegno" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:66 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:90 -msgid "Cheque Payment" -msgstr "Pagamento con Assegno" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:72 -msgid "" -"Let the customer know the payee and where they should be sending the cheque " -"to and that their order won't be shipping until you receive it." -msgstr "" -"Informa i clienti come compilare l'assegno e dove spedirlo. Informali, " -"inoltre, che l'ordine non sarà spedito finché non riceverete l'assegno." - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:73 -msgid "" -"Please send your cheque to Store Name, Store Street, Store Town, Store " -"State / County, Store Postcode." -msgstr "" -"Per favore, invia il tuo assegno presso Nome Negozio, Strada Negozio, Città " -"Negozio, Provincia Negozio, Cap Negozio." - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:91 -msgid "" -"Allows cheque payments. Why would you take cheques in this day and age? Well " -"you probably wouldn't but it does allow you to make test purchases for " -"testing order emails and the 'success' pages etc." -msgstr "" -"Abilita i pagamenti con assegno. Qual è al giorno d'oggi l'utilità del " -"pagamento con assegno? Probabilmente nessuna, ma attivando questa opzione ti " -"sarà facile effettuare dei test per verificare ad esempio la ricezione delle " -"notifiche via email, la visualizzazione della pagina di ringraziamento, ecc…" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:147 -msgid "Awaiting cheque payment" -msgstr "In attesa di pagamento con assegno" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:27 -#: classes/gateways/cod/class-wc-gateway-cod.php:54 -#: classes/gateways/cod/class-wc-gateway-cod.php:90 -msgid "Cash on Delivery" -msgstr "Contrassegno" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:55 -msgid "Have your customers pay with cash (or by other means) upon delivery." -msgstr "Permetti ai tuoi clienti di pagarti in contrassegno." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:80 -msgid "Enable COD" -msgstr "Abilita Contrassegno" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:81 -msgid "Enable Cash on Delivery" -msgstr "Abilita Contrassegno" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:89 -msgid "Payment method title that the customer will see on your website." -msgstr "Il nome del pagamento che i tuoi clienti vedranno nel sito." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:96 -msgid "Payment method description that the customer will see on your website." -msgstr "" -"Descrizione del metodo di pagamento che i tuoi clienti vedranno nel sito." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:97 -#: classes/gateways/cod/class-wc-gateway-cod.php:103 -msgid "Pay with cash upon delivery." -msgstr "Pagamento in contanti al momento della consegna." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:100 -msgid "Instructions" -msgstr "Istruzioni" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:102 -msgid "Instructions that will be added to the thank you page." -msgstr "Istruzioni che verranno aggiunte nella pagina di ringraziamento." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:106 -msgid "Enable for shipping methods" -msgstr "Abilita per i metodi di spedizione" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:111 -msgid "" -"If COD is only available for certain methods, set it up here. Leave blank to " -"enable for all methods." -msgstr "" -"Se il Contrassegno è disponibile solo per alcuni metodi, impostalo qui. " -"Altrimenti lascia vuoto per abilitarlo per tutti i metodi." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:176 -msgid "Payment to be made upon delivery." -msgstr "Il pagamento dovrà essere effettuato in contanti alla consegna." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:31 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:160 -msgid "Mijireh Checkout" -msgstr "Pagamento via Mijireh" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:107 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:285 -msgid "Mijireh error:" -msgstr "Errore Mijireh:" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:124 -msgid "Enable Mijireh Checkout" -msgstr "Abilita Pagamento via Mijireh" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:128 -msgid "Access Key" -msgstr "Access Key" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:130 -msgid "The Mijireh access key for your store." -msgstr "La chiave di accesso Mijireh per il tuo negozio." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:138 -msgid "Credit Card" -msgstr "Carta di Credito" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:144 -msgid "Pay securely with your credit card." -msgstr "Paga in modo sicuro con la tua carta di credito." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:145 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:135 -msgid "This controls the description which the user sees during checkout." -msgstr "" -"Imposta qui la descrizione che gli utenti vedranno durante il pagamento." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:164 -msgid "Get started with Mijireh Checkout" -msgstr "Inizia ad usare il pagamento via Mijireh" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:165 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site. Mijireh supports a wide variety of payment gateways: Stripe, " -"Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and more." -msgstr "" -"offre un metodo sicuro e pienamente conforme PCI, per raccogliere dati da " -"carte di credito per poi passarli al tuo metodo di pagamento, mantenendo " -"però il pieno controllo del design del tuo sito. Mijireh supporta un'ampia " -"gamma di metodi di pagamento: Stripe, Authorize.net, PayPal, eWay, SagePay, " -"Braintree, PayLeap, ed altri." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:167 -msgid "Join for free" -msgstr "Iscriviti Gratis" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:167 -msgid "Learn more about WooCommerce and Mijireh" -msgstr "Per saperne di più su WooCommerce e Mijireh" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:171 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site." -msgstr "" -"offre un metodo sicuro e pienamente conforme PCI, per raccogliere dati da " -"carte di credito per poi passarli al tuo metodo di pagamento, mantenendo " -"però il pieno controllo del design del tuo sito." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:34 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:129 -msgid "PayPal" -msgstr "PayPal" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:91 -msgid "PayPal standard" -msgstr "PayPal standard" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:92 -msgid "" -"PayPal standard works by sending the user to PayPal to enter their payment " -"information." -msgstr "" -"PayPal standard funziona reindirizzando i clienti sul sito PayPal ed è lì " -"che loro inseriranno i dettagli per il pagamento." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:104 -msgid "Gateway Disabled" -msgstr "Metodo Disabilitato" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:104 -msgid "PayPal does not support your store currency." -msgstr "PayPal non supporta la valuta del tuo negozio." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:122 -msgid "Enable PayPal standard" -msgstr "Abilita PayPal standard" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:136 -msgid "" -"Pay via PayPal; you can pay with your credit card if you don't have a PayPal " -"account" -msgstr "" -"Paga con PayPal: è possibile pagare con carta di credito anche se non si " -"possiede un conto PayPal" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:139 -msgid "PayPal Email" -msgstr "Email PayPal" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:141 -msgid "" -"Please enter your PayPal email address; this is needed in order to take " -"payment." -msgstr "" -"Inserisci qui l'email a cui fa capo il tuo account PayPal. Questa " -"informazione è richiesta per ricevere i pagamenti." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:147 -msgid "Receiver Email" -msgstr "Email destinatario" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:149 -msgid "" -"If this differs from the email entered above, input your main receiver email " -"for your PayPal account. This is used to validate IPN requests." -msgstr "" -"Se questa è diversa dalla mail inserita sopra, inserire la mail principale " -"per il tuo conto PayPal. Questa viene usata per convalidare le richieste IPN." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:155 -msgid "Invoice Prefix" -msgstr "Prefisso Fattura" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:157 -msgid "" -"Please enter a prefix for your invoice numbers. If you use your PayPal " -"account for multiple stores ensure this prefix is unique as PayPal will not " -"allow orders with the same invoice number." -msgstr "" -"Si prega di inserire un prefisso per i numeri di fattura. Se si utilizza il " -"conto PayPal per più negozi assicurarsi che questo prefisso sia unico in " -"quanto PayPal non permette ordini con lo stesso numero di fattura." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:162 -msgid "Submission method" -msgstr "Metodo Invio" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:164 -msgid "Use form submission method." -msgstr "Usa invio tramite modulo" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:165 -msgid "" -"Enable this to post order data to PayPal via a form instead of using a " -"redirect/querystring." -msgstr "" -"Abilita questa opzione se preferisci usare un modulo anziché utilizzare il " -"metodo redirect/querystring." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:169 -msgid "Page Style" -msgstr "Stile Pagina" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:171 -msgid "" -"Optionally enter the name of the page style you wish to use. These are " -"defined within your PayPal account." -msgstr "" -"Opzionalmente puoi indicare lo stile pagina che vuoi utilizzare. Gli stili " -"pagina devono essere definiti dal tuo account PayPal." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:174 -msgid "Optional" -msgstr "Opzionale" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:177 -msgid "Shipping options" -msgstr "Opzioni Spedizione" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:182 -msgid "Shipping details" -msgstr "Informazioni Spedizione" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:184 -msgid "Send shipping details to PayPal instead of billing." -msgstr "Invia a Paypal informazioni di spedizione invece che di fatturazione." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:186 -msgid "" -"PayPal allows us to send 1 address. If you are using PayPal for shipping " -"labels you may prefer to send the shipping address rather than billing." -msgstr "" -"PayPal abilita l'invio di un solo indirizzo. Se vuoi utilizzare PayPal per " -"le etichette di spedizione, dovresti preferire che venga passato l'indirizzo " -"di spedizione e non quello di fatturazione." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:190 -msgid "Address override" -msgstr "Sovrascrittura Indirizzo" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:192 -msgid "" -"Enable \"address_override\" to prevent address information from being " -"changed." -msgstr "" -"Abilita \"sovrascrittura indirizzo\" per evitare che vengano modificate le " -"informazioni di spedizione." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:193 -msgid "" -"PayPal verifies addresses therefore this setting can cause errors (we " -"recommend keeping it disabled)." -msgstr "" -"PayPal verifica gli indirizzi, per questo abilitare questa opzione potrebbe " -"generare errori. Si consiglia di lasciarla disabilitata." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:197 -msgid "Gateway Testing" -msgstr "Test Metodo Pagamento" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:202 -msgid "PayPal sandbox" -msgstr "Sandbox PayPal" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:204 -msgid "Enable PayPal sandbox" -msgstr "Abilita la Sandbox di PayPal" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:206 -#, php-format -msgid "" -"PayPal sandbox can be used to test payments. Sign up for a developer account " -"here." -msgstr "" -"La Sandbox di PayPal può essere utilizzata per testare i pagamenti. Devi " -"iscriverti come sviluppatore qui." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:209 -msgid "Debug Log" -msgstr "Log Debug" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:211 -msgid "Enable logging" -msgstr "Abilita Scrittura Log" - -# @ default -#: classes/gateways/paypal/class-wc-gateway-paypal.php:213 -msgid "" -"Log PayPal events, such as IPN requests, inside woocommerce/logs/" -"paypal.txt" -msgstr "" -"Registra gli eventi PayPal, come le richieste di IPN, in woocommerce/" -"logs/paypal.txt" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:332 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:386 -msgid "Shipping via" -msgstr "Spedisci tramite" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:427 -msgid "" -"Thank you for your order. We are now redirecting you to PayPal to make " -"payment." -msgstr "" -"Grazie per il tuo ordine. Ti stiamo reindirizzando su PayPal per effettuare " -"il pagamento." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:448 -msgid "Pay via PayPal" -msgstr "Paga con PayPal" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:448 -msgid "Cancel order & restore cart" -msgstr "Annulla ordine e ripristina carrello" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:502 -msgid "" -"Thank you for your order, please click the button below to pay with PayPal." -msgstr "" -"Grazie per il tuo ordine, fare clic sul pulsante qui sotto per pagare con " -"PayPal." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:644 -#, php-format -msgid "Validation error: PayPal amounts do not match (gross %s)." -msgstr "Errore validazione: l'importo PayPal non corrsiponde (totale lordo %s)" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:655 -#, php-format -msgid "" -"Validation error: PayPal IPN response from a different email address (%s)." -msgstr "" -"Errore di convalida: risposta IPN PayPal da un indirizzo email diverso (% s)." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:673 -msgid "IPN payment completed" -msgstr "Pagamento IPN completato" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:685 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:693 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:711 -#, php-format -msgid "Payment %s via IPN." -msgstr "Pagamento %s tramite IPN." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:698 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:716 -msgid "Order refunded/reversed" -msgstr "Ordini rimborsati/annullati" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:699 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:717 -#, php-format -msgid "Order %s has been marked as refunded - PayPal reason code: %s" -msgstr "" -"L'ordine %s è stato segnato come rimborsato - Codice motivazione PayPal: %s" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:702 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:720 -#, php-format -msgid "Payment for order %s refunded/reversed" -msgstr "Pagamento per l'ordine %s rimborsato/ritornato" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:26 -msgid "Google Analytics" -msgstr "Google Analytics" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:27 -msgid "" -"Google Analytics is a free service offered by Google that generates detailed " -"statistics about the visitors to a website." -msgstr "" -"Google Analytics è un servizio gratuito offerto da Google che genera " -"statistiche dettagliate sui visitatori di un sito." - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:62 -msgid "Google Analytics ID" -msgstr "ID Google Analytics" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:63 -msgid "" -"Log into your google analytics account to find your ID. e.g. UA-XXXXX-" -"X" -msgstr "" -"Accedi al tuo account Google Analytics e trova il tuo ID, es. UA-XXXXX-" -"X" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:68 -msgid "Tracking code" -msgstr "Codice Tracciamento" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:69 -msgid "" -"Add tracking code to your site's footer. You don't need to enable this if " -"using a 3rd party analytics plugin." -msgstr "" -"Inserisce il codice di tracciamento nel pie\\' di pagina del sito. Non è " -"necessario se stai usando un plugin di terze parti." - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:75 -msgid "Add eCommerce tracking code to the thankyou page" -msgstr "Aggiungi codice di tracciamento alla pagina di ringraziamento." - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:81 -msgid "Add event tracking code for add to cart actions" -msgstr "Aggiungi un codice di tracciamento evento per le aggiunte al carrello" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:201 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:258 -#: templates/single-product/meta.php:19 -msgid "SKU:" -msgstr "COD:" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:277 -msgid "Add to Cart" -msgstr "Aggiungi al Carrello" - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:26 -msgid "ShareDaddy" -msgstr "ShareDaddy" - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:27 -msgid "ShareDaddy is a sharing plugin bundled with JetPack." -msgstr "ShareDaddy è un plugin di condivisione del pacchetto JetPack." - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:51 -msgid "Output ShareDaddy button?" -msgstr "Vuoi utilizzare il pulsante ShareDaddy?" - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:52 -msgid "Enable this option to show the ShareDaddy button on the product page." -msgstr "" -"Abilita questa opzione se vuoi mostrare il pulsante di ShareDaddy nella " -"pagina prodotto." - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:29 -msgid "ShareThis" -msgstr "ShareThis" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:30 -msgid "" -"ShareThis offers a sharing widget which will allow customers to share links " -"to products with their friends." -msgstr "" -"ShareThis offre un widget di condivisione che permette agli utenti di " -"condividere i link ai tuoi prodotti con i loro amici." - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:63 -msgid "ShareThis Publisher ID" -msgstr "ID Publisher ShareThis" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:64 -#, php-format -msgid "" -"Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons on " -"product pages." -msgstr "" -"Inserisci il tuo %1$sID publisher ShareThis%2$s per mostrare i tasti di " -"condivisione nelle pagine prodotto." - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:69 -msgid "ShareThis Code" -msgstr "Codice ShareThis" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:70 -msgid "You can tweak the ShareThis code by editing this option." -msgstr "Puoi modificare il codice ShareThis agendo su questa opzione." - -# @ woocommerce -# @ default -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:22 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:329 -msgid "ShareYourCart" -msgstr "ShareYourCart" - -# @ woocommerce -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:23 -msgid "" -"Increase your social media exposure by 10 percent! ShareYourCart helps you " -"get more customers by motivating satisfied customers to talk with their " -"friends about your products. For help with ShareYourCart view the documentation." -msgstr "" -"Aumenta l'esposizione sui social media del 10 per cento! ShareYourCart ti " -"aiuta a ottenere più clienti motivando i clienti soddisfatti a parlare con i " -"propri amici dei tuoi prodotti. Per informazioni su ShareYourCart " -"visualizzare la documentazione." - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:328 -msgid "Share your cart settings" -msgstr "Impostazioni ShareYourCart" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:342 -msgid "Button" -msgstr "Pulsante" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:343 -msgid "Customize Button" -msgstr "Modifica Pulsante" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:351 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:352 -msgid "Documentation" -msgstr "Documentazione" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:33 -msgid "Setup your ShareYourCart account" -msgstr "Imposta il tuo account ShareYourCart" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Create an account" -msgstr "Crea un Account" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Can't access your account?" -msgstr "Non riesci ad accedere al tuo account?" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:100 -msgid "Configure" -msgstr "Configura" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/button-settings-page.php:8 -#: classes/integrations/shareyourcart/views/button-settings-page.php:11 -msgid "Button style" -msgstr "Stile pulsante" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:25 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:85 -msgid "Flat Rate" -msgstr "Tariffa Unica" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:27 -msgid "Flat rates let you define a standard rate per item, or per order." -msgstr "" -"Il metodo teariffe fisse ti permette di impostare una tariffa standard per " -"oggetto o per ordine." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:78 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:52 -msgid "Enable this shipping method" -msgstr "Abilita questo metodo di spedizione" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:82 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:81 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:56 -msgid "Method Title" -msgstr "Nome Metodo" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:89 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:63 -msgid "Availability" -msgstr "Disponibilità" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:93 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:148 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:104 -msgid "All allowed countries" -msgstr "Tutte le nazioni abilitate" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:116 -msgid "Cost per order" -msgstr "Costo per ordine" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:122 -msgid "" -"Enter a cost (excluding tax) per order, e.g. 5.00. Leave blank to disable." -msgstr "" -"Inserisci un costo (tasse escluse) per ordine, ad esempio 5.00. Lascia vuoto " -"per disabilitare." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:128 -msgid "Additional Rates" -msgstr "Tariffe aggiuntive" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:130 -msgid "" -"Optional extra shipping options with additional costs (one per line): Option " -"Name | Additional Cost | Per Cost Type (order, class, or item) Example: " -"Priority Mail | 6.95 | order." -msgstr "" -"Opzionali opzioni di spedizione supplementari con costi aggiuntivi (uno per " -"riga): Nome Opzione | Costo Aggiuntivo | Per Cost Type (ordine, classe, o " -"articolo) Esempio: Posta Prioritaria | 6.95 | ordine." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:133 -msgid "Option Name | Additional Cost | Per Cost Type (order, class, or item)" -msgstr "" -"Nome Opzione | Costo aggiuntivo | Per tipo di costo (ordine, classe, o " -"articolo)" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:136 -msgid "Additional Costs" -msgstr "Costi aggiuntivi" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:138 -msgid "" -"Additional costs can be added below - these will all be added to the per-" -"order cost above." -msgstr "" -"Le spese supplementari possono essere aggiunte di seguito – queste saranno " -"tutte aggiunte al costo del preordine sopra." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:141 -msgid "Costs Added..." -msgstr "Costi aggiunti..." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:145 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:94 -msgid "Per Order - charge shipping for the entire order as a whole" -msgstr "Per Ordine - imposta una tariffa per l'intero ordine" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:146 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:95 -msgid "Per Item - charge shipping for each item individually" -msgstr "" -"Per oggetto - imposta una tariffa che sarà aggiunta ad ogni oggetto nel " -"carrello" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:147 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:96 -msgid "Per Class - charge shipping for each shipping class in an order" -msgstr "" -"Per Classe - impotsa una tariffa per ogni classe di spedizione presente " -"nell'ordine" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:154 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:120 -msgid "Minimum Handling Fee" -msgstr "Costo minimo" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:160 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:126 -msgid "" -"Enter a minimum fee amount. Fee's less than this will be increased. Leave " -"blank to disable." -msgstr "" -"Inserisci l'importo della tariffa minima. Eventuali importi minori saranno " -"incrementeti fino a questo. Lasciare in bianco per disabilitare." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:460 -msgid "Costs" -msgstr "Costi" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:467 -msgid "Cost, excluding tax." -msgstr "Costo tasse escluse" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:468 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:112 -msgid "Handling Fee" -msgstr "Costo Imballaggio" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:468 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -msgstr "" -"Costo tasse escluse. Inserire un importo, esempio 2.50, oppure una " -"percentuale, esempio 5%." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:473 -msgid "+ Add Cost" -msgstr "+ Aggiungi Costo" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:473 -msgid "Delete selected costs" -msgstr "Eliminare i costi selezionati" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:479 -msgid "Any class" -msgstr "Qualsiasi classe" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:499 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:529 -msgid "Select a class…" -msgstr "Seleziona una classe…" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:504 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:505 -msgid "0.00" -msgstr "0,00" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:543 -msgid "Delete the selected rates?" -msgstr "Cancellare le aliquote selezionate?" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:25 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:145 -msgid "Free Shipping" -msgstr "Spedizione gratuita" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:77 -msgid "Enable Free Shipping" -msgstr "Abilita Spedizione Gratuita" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:88 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:143 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:99 -msgid "Method availability" -msgstr "Disponibilità Metodo" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:106 -msgid "Free Shipping Requires..." -msgstr "Spedizione gratuita richiede ..." - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:111 -msgid "A valid free shipping coupon" -msgstr "Un coupon spedizioni gratuite valido" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:112 -msgid "A minimum order amount (defined below)" -msgstr "Importo minimo di ordine (definito di seguito)" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:113 -msgid "A minimum order amount OR a coupon" -msgstr "Un importo minimo di ordine OR un coupon" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:114 -msgid "A minimum order amount AND a coupon" -msgstr "Un importo minimo di ordine AND un coupon" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:118 -msgid "Minimum Order Amount" -msgstr "Minimo Ordine" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:124 -msgid "" -"Users will need to spend this amount to get free shipping (if enabled above)." -msgstr "" -"Gli utenti avranno bisogno di spendere questa somma per ottenere il " -"trasporto gratuito (se abilitato in precedenza)." - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:29 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:59 -msgid "International Delivery" -msgstr "Spedizione Internazionale" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:30 -msgid "International delivery based on flat rate shipping." -msgstr "Spedizione internazionale basata su tariffa fissa." - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:68 -msgid "Selected countries" -msgstr "Nazioni selezionate" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:69 -msgid "Excluding selected countries" -msgstr "Escludi nazioni selezionate" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:73 -msgid "Countries" -msgstr "Nazioni" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:90 -msgid "Cost Added..." -msgstr "Costo aggiunto..." - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:106 -msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -msgstr "Costo tasse escluse. Inserire un importo, esempio 2.50" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:114 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. " -"Leave blank to disable." -msgstr "" -"Importo tasse escluse. Inserire un importo, esempio 2.50 oppure una " -"percentuale, esempio 5%. Lasciare in bianco per disabilitare." - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:25 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:107 -msgid "Local Delivery" -msgstr "Spedizione Nazionale" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:98 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:78 -msgid "Enable" -msgstr "Abilita" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:100 -msgid "Enable local delivery" -msgstr "Abilita il metodo spedizione nazionale" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:111 -msgid "Fee Type" -msgstr "Tipo Tariffa" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:113 -msgid "How to calculate delivery charges" -msgstr "Come calcolare l'importo della spedizione" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 -msgid "Fixed amount" -msgstr "Importo Fisso" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:117 -msgid "Percentage of cart total" -msgstr "Percentuale del totale carrello" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:118 -msgid "Fixed amount per product" -msgstr "Importo fisso per prodotto" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:123 -msgid "Delivery Fee" -msgstr "Tariffa spedizione" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:129 -msgid "" -"What fee do you want to charge for local delivery, disregarded if you choose " -"free. Leave blank to disable." -msgstr "" -"L'importo che vuoi addebitare per la spedizione locale. Viene ignorato se " -"hai scelto spedizione gratuita. Lasciare in bianco per disabilitare." - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:135 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:91 -msgid "Zip/Post Codes" -msgstr "CAP" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:137 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:93 -msgid "" -"What zip/post codes would you like to offer delivery to? Separate codes with " -"a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -msgstr "" -"Per quali codici postali vuoi abilitare la spedizione? Separa codici con una " -"virgola. Accetta caratteri jolly, esempio: P*, accetterà il codice PE30" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:172 -msgid "" -"Local delivery is a simple shipping method for delivering orders locally." -msgstr "" -"Spedizione nazionale è un metodo semplice per spedire i prodotti nella " -"stessa nazione." - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:25 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:87 -msgid "Local Pickup" -msgstr "Ritiro in Sede" - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:80 -msgid "Enable local pickup" -msgstr "Abilita Ritiro in Sede" - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:117 -msgid "Apply base tax rate" -msgstr "Applicare aliquota di base" - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:119 -msgid "" -"When this shipping method is chosen, apply the base tax rate rather than for " -"the customer's given address." -msgstr "" -"Quando si sceglie questo metodo di spedizione, applicare l'aliquota di base, " -"piuttosto che quella proposta per l'indirizzo del cliente." - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:134 -msgid "" -"Local pickup is a simple method which allows the customer to pick up their " -"order themselves." -msgstr "" -"Ritiro in sede è un metodo che permette ai clienti di ritirare presso la " -"vostra sede i prodotti acquistati." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-cart.php:63 -#: classes/shortcodes/class-wc-shortcode-cart.php:69 -msgid "Shipping costs updated." -msgstr "Costi di spedizione aggiornati." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-checkout.php:61 -msgid "" -"The order totals have been updated. Please confirm your order by pressing " -"the Place Order button at the bottom of the page." -msgstr "" -"I totali degli ordini sono stati aggiornati. Si prega di confermare l'ordine " -"premendo il pulsante \"Effettua Ordine\" in fondo alla pagina." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:93 -msgid "Your password has been reset." -msgstr "La tua password è stata reimpostata." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:93 -msgid "Log in" -msgstr "Log in" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:114 -msgid "Enter a username or e-mail address." -msgstr "Inserisci un nome utente o indirizzo e-mail." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:121 -msgid "There is no user registered with that email address." -msgstr "" -"Non vi è alcun utente registrato con questo indirizzo di posta elettronica." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:136 -msgid "Invalid username or e-mail." -msgstr "Nome utente o email non validi." - -# @ default -#: classes/shortcodes/class-wc-shortcode-lost-password.php:150 -msgid "Password reset is not allowed for this user" -msgstr "La reimpostazione della password non è consentita per questo utente" - -# @ default -#: classes/shortcodes/class-wc-shortcode-lost-password.php:178 -msgid "Check your e-mail for the confirmation link." -msgstr "Controlla la tua e-mail per il link di conferma." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:198 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:203 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:210 -msgid "Invalid key" -msgstr "Chiave non valida" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:51 -msgid "Please enter a valid order ID" -msgstr "Per favore, inserire un ID ordine valido" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:55 -msgid "Please enter a valid order email" -msgstr "Per favore, inserire una email di ordine valida" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:74 -msgid "Sorry, we could not find that order id in our database." -msgstr "Spiacenti, impossibile trovare questo ordine nel database." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:64 -#: classes/shortcodes/class-wc-shortcode-pay.php:118 -msgid "" -"Your order has already been paid for. Please contact us if you need " -"assistance." -msgstr "" -"Il tuo ordine è già stato pagato. Ti preghiamo di contattarci se hai bisogno " -"di assistenza." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:94 -#: templates/checkout/thankyou.php:44 -msgid "Date:" -msgstr "Data:" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:103 -#: templates/checkout/thankyou.php:53 -msgid "Payment method:" -msgstr "Modalità di pagamento:" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:51 -msgid "My Account →" -msgstr "Il mio account →" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:58 -#, php-format -msgid "" -"Order %s made on %s" -msgstr "" -"Ordine %s del " -"%s" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:59 -#, php-format -msgid "Order status: %s" -msgstr "Stato ordine: %s" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:65 -#: templates/order/tracking.php:31 -msgid "Order Updates" -msgstr "Aggiornamenti Ordine" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:71 -msgid "l jS \\of F Y, h:ia" -msgstr "l jS \\of F Y, h:ia" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:31 -msgid "Display a list of your best selling products on your site." -msgstr "Mostra un elenco dei prodotti più venduti sul tuo sito." - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:33 -msgid "WooCommerce Best Sellers" -msgstr "WooCommerce Più Venduti" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:71 -msgid "Best Sellers" -msgstr "Più Venduti" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:192 -#: classes/widgets/class-wc-widget-cart.php:109 -#: classes/widgets/class-wc-widget-featured-products.php:172 -#: classes/widgets/class-wc-widget-layered-nav.php:349 -#: classes/widgets/class-wc-widget-onsale.php:178 -#: classes/widgets/class-wc-widget-price-filter.php:179 -#: classes/widgets/class-wc-widget-product-categories.php:185 -#: classes/widgets/class-wc-widget-product-search.php:91 -#: classes/widgets/class-wc-widget-product-tag-cloud.php:101 -#: classes/widgets/class-wc-widget-random-products.php:133 -#: classes/widgets/class-wc-widget-recent-products.php:169 -#: classes/widgets/class-wc-widget-recent-reviews.php:158 -#: classes/widgets/class-wc-widget-recently-viewed.php:166 -#: classes/widgets/class-wc-widget-top-rated-products.php:159 -msgid "Title:" -msgstr "Titolo:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:195 -#: classes/widgets/class-wc-widget-featured-products.php:175 -#: classes/widgets/class-wc-widget-onsale.php:181 -#: classes/widgets/class-wc-widget-random-products.php:138 -#: classes/widgets/class-wc-widget-recent-products.php:172 -#: classes/widgets/class-wc-widget-recent-reviews.php:161 -#: classes/widgets/class-wc-widget-recently-viewed.php:169 -#: classes/widgets/class-wc-widget-top-rated-products.php:162 -msgid "Number of products to show:" -msgstr "Numero di prodotti da mostrare:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:199 -msgid "Hide free products" -msgstr "Nascondi prodotti gratuiti" - -# @ woocommerce -#: classes/widgets/class-wc-widget-cart.php:33 -msgid "Display the user's Cart in the sidebar." -msgstr "Mostra il carrello nella sidebar" - -# @ woocommerce -#: classes/widgets/class-wc-widget-cart.php:35 -msgid "WooCommerce Cart" -msgstr "WooCommerce Carrello" - -# @ woocommerce -#: classes/widgets/class-wc-widget-cart.php:113 -msgid "Hide if cart is empty" -msgstr "Nascondi se il carrello è vuoto" - -# @ woocommerce -#: classes/widgets/class-wc-widget-featured-products.php:35 -msgid "Display a list of featured products on your site." -msgstr "Mostra un elenco dei prodotti in evidenza." - -# @ woocommerce -#: classes/widgets/class-wc-widget-featured-products.php:37 -msgid "WooCommerce Featured Products" -msgstr "WooCommerce Prodotti in Evidenza" - -# @ woocommerce -#: classes/widgets/class-wc-widget-featured-products.php:75 -msgid "Featured Products" -msgstr "In Evidenza" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:31 -msgid "Shows active layered nav filters so users can see and deactivate them." -msgstr "" -"Mostra i filtri di navigazione attivi in modo gli utenti possano vederli e " -"disattivarli." - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:33 -msgid "WooCommerce Layered Nav Filters" -msgstr "WooCommerce Layered Nav Filters" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:62 -msgid "Active filters" -msgstr "Filtri attivi" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:93 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Remove filter" -msgstr "Rimuovi filtri" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -msgid "Min" -msgstr "Min" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Max" -msgstr "Max" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:31 -msgid "" -"Shows a custom attribute in a widget which lets you narrow down the list of " -"products when viewing product categories." -msgstr "" -"Mostra un attributo personalizzato in un widget che permette ai clienti di " -"filtrare i prodotti all'interno di una categoria di prodotti." - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:33 -msgid "WooCommerce Layered Nav" -msgstr "WooCommerce Layered Nav" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:100 -#, php-format -msgid "Any %s" -msgstr "Ogni %s" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:352 -msgid "Attribute:" -msgstr "Attributo:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:363 -msgid "Display Type:" -msgstr "Tipo visualizzazione:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:365 -msgid "List" -msgstr "Elenco" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:366 -msgid "Dropdown" -msgstr "Menu a discesa" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:369 -msgid "Query Type:" -msgstr "Tipo Query:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:371 -msgid "AND" -msgstr "AND" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:372 -msgid "OR" -msgstr "OR" - -# @ woocommerce -#: classes/widgets/class-wc-widget-onsale.php:31 -msgid "Display a list of your on-sale products on your site." -msgstr "Mostra un elenco di prodotti in offerta sul tuo sito." - -# @ woocommerce -#: classes/widgets/class-wc-widget-onsale.php:33 -msgid "WooCommerce On-sale" -msgstr "WooCommerce In Offerta" - -# @ woocommerce -#: classes/widgets/class-wc-widget-onsale.php:70 -msgid "On Sale" -msgstr "In Saldo" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:33 -msgid "" -"Shows a price filter slider in a widget which lets you narrow down the list " -"of shown products when viewing product categories." -msgstr "" -"Mostra una slider per filtrare i prodotti all'interno di una categoria in " -"base al loro prezzo." - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:35 -msgid "WooCommerce Price Filter" -msgstr "WooCommerce Filtro Prezzi" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:136 -msgid "Min price" -msgstr "Prezzo Min" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:137 -msgid "Max price" -msgstr "Prezzo Max" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:138 -msgid "Filter" -msgstr "Filtra" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:140 -msgid "Price:" -msgstr "Prezzo:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:162 -msgid "Filter by price" -msgstr "Filtra per prezzo" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:33 -msgid "A list or dropdown of product categories." -msgstr "Un elenco o menu a discesa di categorie prodotti" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:35 -msgid "WooCommerce Product Categories" -msgstr "WooCommerce Categorie Prodotti" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:129 -msgid "No product categories exist." -msgstr "Non esiste alcuna categoria prodotti." - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:188 -msgid "Order by:" -msgstr "Ordina per:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:190 -msgid "Category Order" -msgstr "Ordine Categoria" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:195 -msgid "Show as dropdown" -msgstr "Mostra come menu a discesa" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:198 -msgid "Show post counts" -msgstr "Mostra conteggio prodotti" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:201 -msgid "Show hierarchy" -msgstr "Mostra gerarchia" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:204 -msgid "Only show children for the current category" -msgstr "Mostra solo le sottocategorie della categoria corrente" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-search.php:31 -msgid "A Search box for products only." -msgstr "Un box di ricerca per i prodotti" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-search.php:33 -msgid "WooCommerce Product Search" -msgstr "WooCommerce Ricerca Prodotti" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-tag-cloud.php:31 -msgid "Your most used product tags in cloud format." -msgstr "I tuoi tag prodotto più usati in formato tag cloud" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-tag-cloud.php:33 -msgid "WooCommerce Product Tags" -msgstr "WooCommerce Tag Prodotto" - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:24 -msgid "WooCommerce Random Products" -msgstr "WooCommerce Prodotti Casuali" - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:27 -msgid "Display a list of random products on your site." -msgstr "Mostra un elenco di prodotti presi a caso." - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:46 -msgid "Random Products" -msgstr "Prodotti A Caso" - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:144 -#: classes/widgets/class-wc-widget-recent-products.php:176 -msgid "Show hidden product variations" -msgstr "Mostra variazioni prodotto nascoste" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-products.php:31 -msgid "Display a list of your most recent products on your site." -msgstr "Mostra un elenco dei prodotti più recenti del tuo sito." - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-products.php:33 -msgid "WooCommerce Recent Products" -msgstr "WooCommerce Prodotti Recenti" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-products.php:70 -msgid "New Products" -msgstr "Nuovi prodotti" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:31 -msgid "Display a list of your most recent reviews on your site." -msgstr "Mostra un elenco delle ultime recensioni nel sito." - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:71 -msgid "Recent Reviews" -msgstr "Recensioni recenti" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:97 -#, php-format -msgctxt "by comment author" -msgid "by %1$s" -msgstr "da %1$s" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recently-viewed.php:31 -msgid "Display a list of recently viewed products." -msgstr "Mostra un elenco dei prodotti visti di recente." - -# @ woocommerce -#: classes/widgets/class-wc-widget-recently-viewed.php:33 -msgid "WooCommerce Recently Viewed Products" -msgstr "WooCommerce Visti di Recente" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recently-viewed.php:76 -msgid "Recently viewed" -msgstr "Visti di recente" - -# @ woocommerce -#: classes/widgets/class-wc-widget-top-rated-products.php:33 -msgid "Display a list of top rated products on your site." -msgstr "Mostra un elenco dei prodotti meglio votati nel sito." - -# @ woocommerce -#: classes/widgets/class-wc-widget-top-rated-products.php:35 -msgid "WooCommerce Top Rated Products" -msgstr "WooCommerce Più Apprezzati" - -# @ woocommerce -#: classes/widgets/class-wc-widget-top-rated-products.php:72 -msgid "Top Rated Products" -msgstr "Prodotti Più Apprezzati" - -# @ woocommerce -#: i18n/strings.php:16 -msgid "pending" -msgstr "in attesa" - -# @ woocommerce -#: i18n/strings.php:17 -msgid "failed" -msgstr "fallito" - -# @ woocommerce -#: i18n/strings.php:18 -msgid "on-hold" -msgstr "in attesa di pagamento" - -# @ woocommerce -#: i18n/strings.php:19 -msgid "processing" -msgstr "in lavorazione" - -# @ woocommerce -#: i18n/strings.php:20 -msgid "completed" -msgstr "completato" - -# @ woocommerce -#: i18n/strings.php:21 -msgid "refunded" -msgstr "rifiutato" - -# @ woocommerce -#: i18n/strings.php:22 -msgid "cancelled" -msgstr "annullato" - -# @ woocommerce -#: i18n/states/AU.php:13 -msgid "Australian Capital Territory" -msgstr "Australian Capital Territory" - -# @ woocommerce -#: i18n/states/AU.php:14 -msgid "New South Wales" -msgstr "New South Wales" - -# @ woocommerce -#: i18n/states/AU.php:15 -msgid "Northern Territory" -msgstr "Northern Territory" - -# @ woocommerce -#: i18n/states/AU.php:16 -msgid "Queensland" -msgstr "Queensland" - -# @ woocommerce -#: i18n/states/AU.php:17 -msgid "South Australia" -msgstr "South Australia" - -# @ woocommerce -#: i18n/states/AU.php:18 -msgid "Tasmania" -msgstr "Tasmania" - -# @ woocommerce -#: i18n/states/AU.php:19 -msgid "Victoria" -msgstr "Victoria" - -# @ woocommerce -#: i18n/states/AU.php:20 -msgid "Western Australia" -msgstr "Western Australia" - -# @ woocommerce -#: i18n/states/BR.php:13 -msgid "Acre" -msgstr "Acre" - -# @ woocommerce -#: i18n/states/BR.php:14 -msgid "Alagoas" -msgstr "Alagoas" - -# @ woocommerce -#: i18n/states/BR.php:15 -msgid "Amapá" -msgstr "Amapá" - -# @ woocommerce -#: i18n/states/BR.php:16 -msgid "Amazonas" -msgstr "Amazonas" - -# @ woocommerce -#: i18n/states/BR.php:17 -msgid "Bahia" -msgstr "Bahia" - -# @ woocommerce -#: i18n/states/BR.php:18 -msgid "Ceará" -msgstr "Ceará" - -# @ woocommerce -#: i18n/states/BR.php:19 -msgid "Distrito Federal" -msgstr "Distrito Federal" - -# @ woocommerce -#: i18n/states/BR.php:20 -msgid "Espírito Santo" -msgstr "Espírito Santo" - -# @ woocommerce -#: i18n/states/BR.php:21 -msgid "Goiás" -msgstr "Goiás" - -# @ woocommerce -#: i18n/states/BR.php:22 -msgid "Maranhão" -msgstr "Maranhão" - -# @ woocommerce -#: i18n/states/BR.php:23 -msgid "Mato Grosso" -msgstr "Mato Grosso" - -# @ woocommerce -#: i18n/states/BR.php:24 -msgid "Mato Grosso do Sul" -msgstr "Mato Grosso do Sul" - -# @ woocommerce -#: i18n/states/BR.php:25 -msgid "Minas Gerais" -msgstr "Minas Gerais" - -# @ woocommerce -#: i18n/states/BR.php:26 -msgid "Pará" -msgstr "Pará" - -# @ woocommerce -#: i18n/states/BR.php:27 -msgid "Paraíba" -msgstr "Paraíba" - -# @ woocommerce -#: i18n/states/BR.php:28 -msgid "Paraná" -msgstr "Paraná" - -# @ woocommerce -#: i18n/states/BR.php:29 -msgid "Pernambuco" -msgstr "Pernambuco" - -# @ woocommerce -#: i18n/states/BR.php:30 -msgid "Piauí" -msgstr "Piauí" - -# @ woocommerce -#: i18n/states/BR.php:31 -msgid "Rio de Janeiro" -msgstr "Rio de Janeiro" - -# @ woocommerce -#: i18n/states/BR.php:32 -msgid "Rio Grande do Norte" -msgstr "Rio Grande do Norte" - -# @ woocommerce -#: i18n/states/BR.php:33 -msgid "Rio Grande do Sul" -msgstr "Rio Grande do Sul" - -# @ woocommerce -#: i18n/states/BR.php:34 -msgid "Rondônia" -msgstr "Rondônia" - -# @ woocommerce -#: i18n/states/BR.php:35 -msgid "Roraima" -msgstr "Roraima" - -# @ woocommerce -#: i18n/states/BR.php:36 -msgid "Santa Catarina" -msgstr "Santa Catarina" - -# @ woocommerce -#: i18n/states/BR.php:37 -msgid "São Paulo" -msgstr "São Paulo" - -# @ woocommerce -#: i18n/states/BR.php:38 -msgid "Sergipe" -msgstr "Sergipe" - -# @ woocommerce -#: i18n/states/BR.php:39 -msgid "Tocantins" -msgstr "Tocantins" - -# @ woocommerce -#: i18n/states/CA.php:13 -msgid "Alberta" -msgstr "Alberta" - -# @ woocommerce -#: i18n/states/CA.php:14 -msgid "British Columbia" -msgstr "British Columbia" - -# @ woocommerce -#: i18n/states/CA.php:15 -msgid "Manitoba" -msgstr "Manitoba" - -# @ woocommerce -#: i18n/states/CA.php:16 -msgid "New Brunswick" -msgstr "New Brunswick" - -# @ woocommerce -#: i18n/states/CA.php:17 -msgid "Newfoundland" -msgstr "Newfoundland" - -# @ woocommerce -#: i18n/states/CA.php:18 -msgid "Northwest Territories" -msgstr "Northwest Territories" - -# @ woocommerce -#: i18n/states/CA.php:19 -msgid "Nova Scotia" -msgstr "Nova Scotia" - -# @ woocommerce -#: i18n/states/CA.php:20 -msgid "Nunavut" -msgstr "Nunavut" - -# @ woocommerce -#: i18n/states/CA.php:21 -msgid "Ontario" -msgstr "Ontario" - -# @ woocommerce -#: i18n/states/CA.php:22 -msgid "Prince Edward Island" -msgstr "Prince Edward Island" - -# @ woocommerce -#: i18n/states/CA.php:23 -msgid "Quebec" -msgstr "Quebec" - -# @ woocommerce -#: i18n/states/CA.php:24 -msgid "Saskatchewan" -msgstr "Saskatchewan" - -# @ woocommerce -#: i18n/states/CA.php:25 -msgid "Yukon Territory" -msgstr "Yukon Territory" - -# @ woocommerce -#: i18n/states/CN.php:13 -msgid "Yunnan / 云南" -msgstr "Yunnan / 云南" - -# @ woocommerce -#: i18n/states/CN.php:14 -msgid "Beijing / 北京" -msgstr "Beijing / 北京" - -# @ woocommerce -#: i18n/states/CN.php:15 -msgid "Tianjin / 天津" -msgstr "Tianjin / 天津" - -# @ woocommerce -#: i18n/states/CN.php:16 -msgid "Hebei / 河北" -msgstr "Hebei / 河北" - -# @ woocommerce -#: i18n/states/CN.php:17 -msgid "Shanxi / 山西" -msgstr "Shanxi / 山西" - -# @ woocommerce -#: i18n/states/CN.php:18 -msgid "Inner Mongolia / 內蒙古" -msgstr "Inner Mongolia / 內蒙古" - -# @ woocommerce -#: i18n/states/CN.php:19 -msgid "Liaoning / 辽宁" -msgstr "Liaoning / 辽宁" - -# @ woocommerce -#: i18n/states/CN.php:20 -msgid "Jilin / 吉林" -msgstr "Jilin / 吉林" - -# @ woocommerce -#: i18n/states/CN.php:21 -msgid "Heilongjiang / 黑龙江" -msgstr "Heilongjiang / 黑龙江" - -# @ woocommerce -#: i18n/states/CN.php:22 -msgid "Shanghai / 上海" -msgstr "Shanghai / 上海" - -# @ woocommerce -#: i18n/states/CN.php:23 -msgid "Jiangsu / 江苏" -msgstr "Jiangsu / 江苏" - -# @ woocommerce -#: i18n/states/CN.php:24 -msgid "Zhejiang / 浙江" -msgstr "Zhejiang / 浙江" - -# @ woocommerce -#: i18n/states/CN.php:25 -msgid "Anhui / 安徽" -msgstr "Anhui / 安徽" - -# @ woocommerce -#: i18n/states/CN.php:26 -msgid "Fujian / 福建" -msgstr "Fujian / 福建" - -# @ woocommerce -#: i18n/states/CN.php:27 -msgid "Jiangxi / 江西" -msgstr "Jiangxi / 江西" - -# @ woocommerce -#: i18n/states/CN.php:28 -msgid "Shandong / 山东" -msgstr "Shandong / 山东" - -# @ woocommerce -#: i18n/states/CN.php:29 -msgid "Henan / 河南" -msgstr "Henan / 河南" - -# @ woocommerce -#: i18n/states/CN.php:30 -msgid "Hubei / 湖北" -msgstr "Hubei / 湖北" - -# @ woocommerce -#: i18n/states/CN.php:31 -msgid "Hunan / 湖南" -msgstr "Hunan / 湖南" - -# @ woocommerce -#: i18n/states/CN.php:32 -msgid "Guangdong / 广东" -msgstr "Guangdong / 广东" - -# @ woocommerce -#: i18n/states/CN.php:33 -msgid "Guangxi Zhuang / 广西壮族" -msgstr "Guangxi Zhuang / 广西壮族" - -# @ woocommerce -#: i18n/states/CN.php:34 -msgid "Hainan / 海南" -msgstr "Hainan / 海南" - -# @ woocommerce -#: i18n/states/CN.php:35 -msgid "Chongqing / 重庆" -msgstr "Chongqing / 重庆" - -# @ woocommerce -#: i18n/states/CN.php:36 -msgid "Sichuan / 四川" -msgstr "Sichuan / 四川" - -# @ woocommerce -#: i18n/states/CN.php:37 -msgid "Guizhou / 贵州" -msgstr "Guizhou / 贵州" - -# @ woocommerce -#: i18n/states/CN.php:38 -msgid "Shaanxi / 陕西" -msgstr "Shaanxi / 陕西" - -# @ woocommerce -#: i18n/states/CN.php:39 -msgid "Gansu / 甘肃" -msgstr "Gansu / 甘肃" - -# @ woocommerce -#: i18n/states/CN.php:40 -msgid "Qinghai / 青海" -msgstr "Qinghai / 青海" - -# @ woocommerce -#: i18n/states/CN.php:41 -msgid "Ningxia Hui / 宁夏" -msgstr "Ningxia Hui / 宁夏" - -# @ woocommerce -#: i18n/states/CN.php:42 -msgid "Macau / 澳门" -msgstr "Macau / 澳门" - -# @ woocommerce -#: i18n/states/CN.php:43 -msgid "Tibet / 西藏" -msgstr "Tibet / 西藏" - -# @ woocommerce -#: i18n/states/CN.php:44 -msgid "Xinjiang / 新疆" -msgstr "Xinjiang / 新疆" - -# @ woocommerce -#: i18n/states/HK.php:13 -msgid "Hong Kong Island" -msgstr "Hong Kong Island" - -# @ woocommerce -#: i18n/states/HK.php:14 -msgid "Kowloon" -msgstr "Kowloon" - -# @ woocommerce -#: i18n/states/HK.php:15 -msgid "New Territories" -msgstr "New Territories" - -# @ woocommerce -#: i18n/states/HU.php:13 -msgid "Bács-Kiskun" -msgstr "Bács-Kiskun" - -# @ woocommerce -#: i18n/states/HU.php:14 -msgid "Békés" -msgstr "Békés" - -# @ woocommerce -#: i18n/states/HU.php:15 -msgid "Baranya" -msgstr "Baranya" - -# @ woocommerce -#: i18n/states/HU.php:16 -msgid "Borsod-Abaúj-Zemplén" -msgstr "Borsod-Abaúj-Zemplén" - -# @ woocommerce -#: i18n/states/HU.php:17 -msgid "Budapest" -msgstr "Budapest" - -# @ woocommerce -#: i18n/states/HU.php:18 -msgid "Csongrád" -msgstr "Csongrád" - -# @ woocommerce -#: i18n/states/HU.php:19 -msgid "Fejér" -msgstr "Fejér" - -# @ woocommerce -#: i18n/states/HU.php:20 -msgid "Győr-Moson-Sopron" -msgstr "Győr-Moson-Sopron" - -# @ woocommerce -#: i18n/states/HU.php:21 -msgid "Hajdú-Bihar" -msgstr "Hajdú-Bihar" - -# @ woocommerce -#: i18n/states/HU.php:22 -msgid "Heves" -msgstr "Heves" - -# @ woocommerce -#: i18n/states/HU.php:23 -msgid "Jász-Nagykun-Szolnok" -msgstr "Jász-Nagykun-Szolnok" - -# @ woocommerce -#: i18n/states/HU.php:24 -msgid "Komárom-Esztergom" -msgstr "Komárom-Esztergom" - -# @ woocommerce -#: i18n/states/HU.php:25 -msgid "Nógrád" -msgstr "Nógrád" - -# @ woocommerce -#: i18n/states/HU.php:26 -msgid "Pest" -msgstr "Pest" - -# @ woocommerce -#: i18n/states/HU.php:27 -msgid "Somogy" -msgstr "Somogy" - -# @ woocommerce -#: i18n/states/HU.php:28 -msgid "Szabolcs-Szatmár-Bereg" -msgstr "Szabolcs-Szatmár-Bereg" - -# @ woocommerce -#: i18n/states/HU.php:29 -msgid "Tolna" -msgstr "Tolna" - -# @ woocommerce -#: i18n/states/HU.php:30 -msgid "Vas" -msgstr "Vas" - -# @ woocommerce -#: i18n/states/HU.php:31 -msgid "Veszprém" -msgstr "Veszprém" - -# @ woocommerce -#: i18n/states/HU.php:32 -msgid "Zala" -msgstr "Zala" - -# @ woocommerce -#: i18n/states/HZ.php:13 i18n/states/NZ.php:14 -msgid "Auckland" -msgstr "Auckland" - -# @ woocommerce -#: i18n/states/HZ.php:14 i18n/states/NZ.php:16 -msgid "Bay of Plenty" -msgstr "Bay of Plenty" - -# @ woocommerce -#: i18n/states/HZ.php:15 i18n/states/NZ.php:25 -msgid "Canterbury" -msgstr "Canterbury" - -# @ woocommerce -#: i18n/states/HZ.php:16 i18n/states/NZ.php:18 -msgid "Hawke’s Bay" -msgstr "Hawke’s Bay" - -# @ woocommerce -#: i18n/states/HZ.php:17 i18n/states/NZ.php:19 -msgid "Manawatu-Wanganui" -msgstr "Manawatu-Wanganui" - -# @ woocommerce -#: i18n/states/HZ.php:18 i18n/states/NZ.php:22 -msgid "Marlborough" -msgstr "Marlborough" - -# @ woocommerce -#: i18n/states/HZ.php:19 i18n/states/NZ.php:21 -msgid "Nelson" -msgstr "Nelson" - -# @ woocommerce -#: i18n/states/HZ.php:20 i18n/states/NZ.php:13 -msgid "Northland" -msgstr "Northland" - -# @ woocommerce -#: i18n/states/HZ.php:21 i18n/states/NZ.php:26 -msgid "Otago" -msgstr "Otago" - -# @ woocommerce -#: i18n/states/HZ.php:22 i18n/states/NZ.php:27 -msgid "Southland" -msgstr "Southland" - -# @ woocommerce -#: i18n/states/HZ.php:23 i18n/states/NZ.php:17 -msgid "Taranaki" -msgstr "Taranaki" - -# @ woocommerce -#: i18n/states/HZ.php:24 i18n/states/NZ.php:23 -msgid "Tasman" -msgstr "Tasman" - -# @ woocommerce -#: i18n/states/HZ.php:25 i18n/states/NZ.php:15 -msgid "Waikato" -msgstr "Waikato" - -# @ woocommerce -#: i18n/states/HZ.php:26 i18n/states/NZ.php:20 -msgid "Wellington" -msgstr "Wellington" - -# @ woocommerce -#: i18n/states/HZ.php:27 i18n/states/NZ.php:24 -msgid "West Coast" -msgstr "West Coast" - -# @ woocommerce -#: i18n/states/ID.php:13 -msgid "Daerah Istimewa Aceh" -msgstr "Daerah Istimewa Aceh" - -# @ woocommerce -#: i18n/states/ID.php:14 -msgid "Sumatera Utara" -msgstr "Sumatera Utara" - -# @ woocommerce -#: i18n/states/ID.php:15 -msgid "Sumatera Barat" -msgstr "Sumatera Barat" - -# @ woocommerce -#: i18n/states/ID.php:16 -msgid "Riau" -msgstr "Riau" - -# @ woocommerce -#: i18n/states/ID.php:17 -msgid "Kepulauan Riau" -msgstr "Kepulauan Riau" - -# @ woocommerce -#: i18n/states/ID.php:18 -msgid "Jambi" -msgstr "Jambi" - -# @ woocommerce -#: i18n/states/ID.php:19 -msgid "Sumatera Selatan" -msgstr "Sumatera Selatan" - -# @ woocommerce -#: i18n/states/ID.php:20 -msgid "Bangka Belitung" -msgstr "Bangka Belitung" - -# @ woocommerce -#: i18n/states/ID.php:21 -msgid "Bengkulu" -msgstr "Bengkulu" - -# @ woocommerce -#: i18n/states/ID.php:22 -msgid "Lampung" -msgstr "Lampung" - -# @ woocommerce -#: i18n/states/ID.php:23 -msgid "DKI Jakarta" -msgstr "DKI Jakarta" - -# @ woocommerce -#: i18n/states/ID.php:24 -msgid "Jawa Barat" -msgstr "Jawa Barat" - -# @ woocommerce -#: i18n/states/ID.php:25 -msgid "Banten" -msgstr "Banten" - -# @ woocommerce -#: i18n/states/ID.php:26 -msgid "Jawa Tengah" -msgstr "Jawa Tengah" - -# @ woocommerce -#: i18n/states/ID.php:27 -msgid "Jawa Timur" -msgstr "Jawa Timur" - -# @ woocommerce -#: i18n/states/ID.php:28 -msgid "Daerah Istimewa Yogyakarta" -msgstr "Daerah Istimewa Yogyakarta" - -# @ woocommerce -#: i18n/states/ID.php:29 -msgid "Bali" -msgstr "Bali" - -# @ woocommerce -#: i18n/states/ID.php:30 -msgid "Nusa Tenggara Barat" -msgstr "Nusa Tenggara Barat" - -# @ woocommerce -#: i18n/states/ID.php:31 -msgid "Nusa Tenggara Timur" -msgstr "Nusa Tenggara Timur" - -# @ woocommerce -#: i18n/states/ID.php:32 -msgid "Kalimantan Barat" -msgstr "Kalimantan Barat" - -# @ woocommerce -#: i18n/states/ID.php:33 -msgid "Kalimantan Tengah" -msgstr "Kalimantan Tengah" - -# @ woocommerce -#: i18n/states/ID.php:34 -msgid "Kalimantan Timur" -msgstr "Kalimantan Timur" - -# @ woocommerce -#: i18n/states/ID.php:35 -msgid "Kalimantan Selatan" -msgstr "Kalimantan Selatan" - -# @ woocommerce -#: i18n/states/ID.php:36 -msgid "Kalimantan Utara" -msgstr "Kalimantan Utara" - -# @ woocommerce -#: i18n/states/ID.php:37 -msgid "Sulawesi Utara" -msgstr "Sulawesi Utara" - -# @ woocommerce -#: i18n/states/ID.php:38 -msgid "Sulawesi Tengah" -msgstr "Sulawesi Tengah" - -# @ woocommerce -#: i18n/states/ID.php:39 -msgid "Sulawesi Tenggara" -msgstr "Sulawesi Tenggara" - -# @ woocommerce -#: i18n/states/ID.php:40 -msgid "Sulawesi Barat" -msgstr "Sulawesi Barat" - -# @ woocommerce -#: i18n/states/ID.php:41 -msgid "Sulawesi Selatan" -msgstr "Sulawesi Selatan" - -# @ woocommerce -#: i18n/states/ID.php:42 -msgid "Gorontalo" -msgstr "Gorontalo" - -# @ woocommerce -#: i18n/states/ID.php:43 -msgid "Maluku" -msgstr "Maluku" - -# @ woocommerce -#: i18n/states/ID.php:44 -msgid "Maluku Utara" -msgstr "Maluku Utara" - -# @ woocommerce -#: i18n/states/ID.php:45 -msgid "Papua" -msgstr "Papua" - -# @ woocommerce -#: i18n/states/ID.php:46 -msgid "Papua Barat" -msgstr "Papua Barat" - -# @ woocommerce -#: i18n/states/IN.php:13 -msgid "Andra Pradesh" -msgstr "Andra Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:14 -msgid "Arunachal Pradesh" -msgstr "Arunachal Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:15 -msgid "Assam" -msgstr "Assam" - -# @ woocommerce -#: i18n/states/IN.php:16 -msgid "Bihar" -msgstr "Bihar" - -# @ woocommerce -#: i18n/states/IN.php:17 -msgid "Chhattisgarh" -msgstr "Chhattisgarh" - -# @ woocommerce -#: i18n/states/IN.php:18 -msgid "Goa" -msgstr "Goa" - -# @ woocommerce -#: i18n/states/IN.php:19 -msgid "Gujarat" -msgstr "Gujarat" - -# @ woocommerce -#: i18n/states/IN.php:20 -msgid "Haryana" -msgstr "Haryana" - -# @ woocommerce -#: i18n/states/IN.php:21 -msgid "Himachal Pradesh" -msgstr "Himachal Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:22 -msgid "Jammu and Kashmir" -msgstr "Jammu and Kashmir" - -# @ woocommerce -#: i18n/states/IN.php:23 -msgid "Jharkhand" -msgstr "Jharkhand" - -# @ woocommerce -#: i18n/states/IN.php:24 -msgid "Karnataka" -msgstr "Karnataka" - -# @ woocommerce -#: i18n/states/IN.php:25 -msgid "Kerala" -msgstr "Kerala" - -# @ woocommerce -#: i18n/states/IN.php:26 -msgid "Madhya Pradesh" -msgstr "Madhya Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:27 -msgid "Maharashtra" -msgstr "Maharashtra" - -# @ woocommerce -#: i18n/states/IN.php:28 -msgid "Manipur" -msgstr "Manipur" - -# @ woocommerce -#: i18n/states/IN.php:29 -msgid "Meghalaya" -msgstr "Meghalaya" - -# @ woocommerce -#: i18n/states/IN.php:30 -msgid "Mizoram" -msgstr "Mizoram" - -# @ woocommerce -#: i18n/states/IN.php:31 -msgid "Nagaland" -msgstr "Nagaland" - -# @ woocommerce -#: i18n/states/IN.php:32 -msgid "Orissa" -msgstr "Orissa" - -# @ woocommerce -#: i18n/states/IN.php:33 -msgid "Punjab" -msgstr "Punjab" - -# @ woocommerce -#: i18n/states/IN.php:34 -msgid "Rajasthan" -msgstr "Rajasthan" - -# @ woocommerce -#: i18n/states/IN.php:35 -msgid "Sikkim" -msgstr "Sikkim" - -# @ woocommerce -#: i18n/states/IN.php:36 -msgid "Tamil Nadu" -msgstr "Tamil Nadu" - -# @ woocommerce -#: i18n/states/IN.php:37 -msgid "Tripura" -msgstr "Tripura" - -# @ woocommerce -#: i18n/states/IN.php:38 -msgid "Uttaranchal" -msgstr "Uttaranchal" - -# @ woocommerce -#: i18n/states/IN.php:39 -msgid "Uttar Pradesh" -msgstr "Uttar Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:40 -msgid "West Bengal" -msgstr "West Bengal" - -# @ woocommerce -#: i18n/states/IN.php:41 -msgid "Andaman and Nicobar Islands" -msgstr "Andaman and Nicobar Islands" - -# @ woocommerce -#: i18n/states/IN.php:42 -msgid "Chandigarh" -msgstr "Chandigarh" - -# @ woocommerce -#: i18n/states/IN.php:43 -msgid "Dadar and Nagar Haveli" -msgstr "Dadar and Nagar Haveli" - -# @ woocommerce -#: i18n/states/IN.php:44 -msgid "Daman and Diu" -msgstr "Daman and Diu" - -# @ woocommerce -#: i18n/states/IN.php:45 -msgid "Delhi" -msgstr "Delhi" - -# @ woocommerce -#: i18n/states/IN.php:46 -msgid "Lakshadeep" -msgstr "Lakshadeep" - -# @ woocommerce -#: i18n/states/IN.php:47 -msgid "Pondicherry (Puducherry)" -msgstr "Pondicherry (Puducherry)" - -# @ woocommerce -#: i18n/states/MY.php:13 -msgid "Johor" -msgstr "Johor" - -# @ woocommerce -#: i18n/states/MY.php:14 -msgid "Kedah" -msgstr "Kedah" - -# @ woocommerce -#: i18n/states/MY.php:15 -msgid "Kelantan" -msgstr "Kelantan" - -# @ woocommerce -#: i18n/states/MY.php:16 -msgid "Melaka" -msgstr "Melaka" - -# @ woocommerce -#: i18n/states/MY.php:17 -msgid "Negeri Sembilan" -msgstr "Negeri Sembilan" - -# @ woocommerce -#: i18n/states/MY.php:18 -msgid "Pahang" -msgstr "Pahang" - -# @ woocommerce -#: i18n/states/MY.php:19 -msgid "Perak" -msgstr "Perak" - -# @ woocommerce -#: i18n/states/MY.php:20 -msgid "Perlis" -msgstr "Perlis" - -# @ woocommerce -#: i18n/states/MY.php:21 -msgid "Pulau Pinang" -msgstr "Pulau Pinang" - -# @ woocommerce -#: i18n/states/MY.php:22 -msgid "Sabah" -msgstr "Sabah" - -# @ woocommerce -#: i18n/states/MY.php:23 -msgid "Sarawak" -msgstr "Sarawak" - -# @ woocommerce -#: i18n/states/MY.php:24 -msgid "Selangor" -msgstr "Selangor" - -# @ woocommerce -#: i18n/states/MY.php:25 -msgid "Terengganu" -msgstr "Terengganu" - -# @ woocommerce -#: i18n/states/MY.php:26 -msgid "W.P. Kuala Lumpur" -msgstr "W.P. Kuala Lumpur" - -# @ woocommerce -#: i18n/states/MY.php:27 -msgid "W.P. Labuan" -msgstr "W.P. Labuan" - -# @ woocommerce -#: i18n/states/MY.php:28 -msgid "W.P. Putrajaya" -msgstr "W.P. Putrajaya" - -# @ woocommerce -#: i18n/states/TH.php:13 -msgid "" -"Amnat Charoen (อำนาจเจร" -"ิญ)" -msgstr "" -"Amnat Charoen (อำนาจเจร" -"ิญ)" - -# @ woocommerce -#: i18n/states/TH.php:14 -msgid "Ang Thong (อ่างทอง)" -msgstr "Ang Thong (อ่างทอง)" - -# @ woocommerce -#: i18n/states/TH.php:15 -msgid "" -"Ayutthaya (พระนครศรี" -"อยุธยา)" -msgstr "" -"Ayutthaya (พระนครศรี" -"อยุธยา)" - -# @ woocommerce -#: i18n/states/TH.php:16 -msgid "" -"Bangkok (กรุงเทพมห" -"านคร)" -msgstr "" -"Bangkok (กรุงเทพมห" -"านคร)" - -# @ woocommerce -#: i18n/states/TH.php:17 -msgid "Bueng Kan (บึงกาฬ)" -msgstr "Bueng Kan (บึงกาฬ)" - -# @ woocommerce -#: i18n/states/TH.php:18 -msgid "" -"Buri Ram (บุรีรัมย์)" -msgstr "" -"Buri Ram (บุรีรัมย์)" - -# @ woocommerce -#: i18n/states/TH.php:19 -msgid "" -"Chachoengsao (ฉะเชิงเทร" -"า)" -msgstr "" -"Chachoengsao (ฉะเชิงเทร" -"า)" - -# @ woocommerce -#: i18n/states/TH.php:20 -msgid "Chai Nat (ชัยนาท)" -msgstr "Chai Nat (ชัยนาท)" - -# @ woocommerce -#: i18n/states/TH.php:21 -msgid "Chaiyaphum (ชัยภูมิ)" -msgstr "Chaiyaphum (ชัยภูมิ)" - -# @ woocommerce -#: i18n/states/TH.php:22 -msgid "Chanthaburi (จันทบุรี)" -msgstr "Chanthaburi (จันทบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:23 -msgid "" -"Chiang Mai (เชียงใหม่)" -msgstr "" -"Chiang Mai (เชียงใหม่)" - -# @ woocommerce -#: i18n/states/TH.php:24 -msgid "Chiang Rai (เชียงราย)" -msgstr "Chiang Rai (เชียงราย)" - -# @ woocommerce -#: i18n/states/TH.php:25 -msgid "Chonburi (ชลบุรี)" -msgstr "Chonburi (ชลบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:26 -msgid "Chumphon (ชุมพร)" -msgstr "Chumphon (ชุมพร)" - -# @ woocommerce -#: i18n/states/TH.php:27 -msgid "" -"Kalasin (กาฬสินธุ์)" -msgstr "" -"Kalasin (กาฬสินธุ์)" - -# @ woocommerce -#: i18n/states/TH.php:28 -msgid "" -"Kamphaeng Phet (กำแพงเพช" -"ร)" -msgstr "" -"Kamphaeng Phet (กำแพงเพช" -"ร)" - -# @ woocommerce -#: i18n/states/TH.php:29 -msgid "" -"Kanchanaburi (กาญจนบุร" -"ี)" -msgstr "" -"Kanchanaburi (กาญจนบุร" -"ี)" - -# @ woocommerce -#: i18n/states/TH.php:30 -msgid "Khon Kaen (ขอนแก่น)" -msgstr "Khon Kaen (ขอนแก่น)" - -# @ woocommerce -#: i18n/states/TH.php:31 -msgid "Krabi (กระบี่)" -msgstr "Krabi (กระบี่)" - -# @ woocommerce -#: i18n/states/TH.php:32 -msgid "Lampang (ลำปาง)" -msgstr "Lampang (ลำปาง)" - -# @ woocommerce -#: i18n/states/TH.php:33 -msgid "Lamphun (ลำพูน)" -msgstr "Lamphun (ลำพูน)" - -# @ woocommerce -#: i18n/states/TH.php:34 -msgid "Loei (เลย)" -msgstr "Loei (เลย)" - -# @ woocommerce -#: i18n/states/TH.php:35 -msgid "Lopburi (ลพบุรี)" -msgstr "Lopburi (ลพบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:36 -msgid "" -"Mae Hong Son (แม่ฮ่องสอ" -"น)" -msgstr "" -"Mae Hong Son (แม่ฮ่องสอ" -"น)" - -# @ woocommerce -#: i18n/states/TH.php:37 -msgid "" -"Maha Sarakham (มหาสารคา" -"ม)" -msgstr "" -"Maha Sarakham (มหาสารคา" -"ม)" - -# @ woocommerce -#: i18n/states/TH.php:38 -msgid "Mukdahan (มุกดาหาร)" -msgstr "Mukdahan (มุกดาหาร)" - -# @ woocommerce -#: i18n/states/TH.php:39 -msgid "Nakhon Nayok (นครนายก)" -msgstr "Nakhon Nayok (นครนายก)" - -# @ woocommerce -#: i18n/states/TH.php:40 -msgid "Nakhon Pathom (นครปฐม)" -msgstr "Nakhon Pathom (นครปฐม)" - -# @ woocommerce -#: i18n/states/TH.php:41 -msgid "Nakhon Phanom (นครพนม)" -msgstr "Nakhon Phanom (นครพนม)" - -# @ woocommerce -#: i18n/states/TH.php:42 -msgid "" -"Nakhon Ratchasima (นครราชสี" -"มา)" -msgstr "" -"Nakhon Ratchasima (นครราชสี" -"มา)" - -# @ woocommerce -#: i18n/states/TH.php:43 -msgid "" -"Nakhon Sawan (นครสวรรค" -"์)" -msgstr "" -"Nakhon Sawan (นครสวรรค" -"์)" - -# @ woocommerce -#: i18n/states/TH.php:44 -msgid "" -"Nakhon Si Thammarat (นครศรีธร" -"รมราช)" -msgstr "" -"Nakhon Si Thammarat (นครศรีธร" -"รมราช)" - -# @ woocommerce -#: i18n/states/TH.php:45 -msgid "Nan (น่าน)" -msgstr "Nan (น่าน)" - -# @ woocommerce -#: i18n/states/TH.php:46 -msgid "Narathiwat (นราธิวาส)" -msgstr "Narathiwat (นราธิวาส)" - -# @ woocommerce -#: i18n/states/TH.php:47 -msgid "" -"Nong Bua Lam Phu (หนองบัวล" -"ำภู)" -msgstr "" -"Nong Bua Lam Phu (หนองบัวล" -"ำภู)" - -# @ woocommerce -#: i18n/states/TH.php:48 -msgid "Nong Khai (หนองคาย)" -msgstr "Nong Khai (หนองคาย)" - -# @ woocommerce -#: i18n/states/TH.php:49 -msgid "Nonthaburi (นนทบุรี)" -msgstr "Nonthaburi (นนทบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:50 -msgid "Pathum Thani (ปทุมธานี)" -msgstr "" -"Pathum Thani (ปทุมธานี)" - -# @ woocommerce -#: i18n/states/TH.php:51 -msgid "Pattani (ปัตตานี)" -msgstr "Pattani (ปัตตานี)" - -# @ woocommerce -#: i18n/states/TH.php:52 -msgid "Phang Nga (พังงา)" -msgstr "Phang Nga (พังงา)" - -# @ woocommerce -#: i18n/states/TH.php:53 -msgid "Phatthalung (พัทลุง)" -msgstr "Phatthalung (พัทลุง)" - -# @ woocommerce -#: i18n/states/TH.php:54 -msgid "Phayao (พะเยา)" -msgstr "Phayao (พะเยา)" - -# @ woocommerce -#: i18n/states/TH.php:55 -msgid "" -"Phetchabun (เพชรบูรณ์)" -msgstr "" -"Phetchabun (เพชรบูรณ์)" - -# @ woocommerce -#: i18n/states/TH.php:56 -msgid "Phetchaburi (เพชรบุรี)" -msgstr "Phetchaburi (เพชรบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:57 -msgid "Phichit (พิจิตร)" -msgstr "Phichit (พิจิตร)" - -# @ woocommerce -#: i18n/states/TH.php:58 -msgid "Phitsanulok (พิษณุโลก)" -msgstr "Phitsanulok (พิษณุโลก)" - -# @ woocommerce -#: i18n/states/TH.php:59 -msgid "Phrae (แพร่)" -msgstr "Phrae (แพร่)" - -# @ woocommerce -#: i18n/states/TH.php:60 -msgid "Phuket (ภูเก็ต)" -msgstr "Phuket (ภูเก็ต)" - -# @ woocommerce -#: i18n/states/TH.php:61 -msgid "" -"Prachin Buri (ปราจีนบุร" -"ี)" -msgstr "" -"Prachin Buri (ปราจีนบุร" -"ี)" - -# @ woocommerce -#: i18n/states/TH.php:62 -msgid "" -"Prachuap Khiri Khan (ประจวบคี" -"รีขันธ์)" -msgstr "" -"Prachuap Khiri Khan (ประจวบคี" -"รีขันธ์)" - -# @ woocommerce -#: i18n/states/TH.php:63 -msgid "Ranong (ระนอง)" -msgstr "Ranong (ระนอง)" - -# @ woocommerce -#: i18n/states/TH.php:64 -msgid "Ratchaburi (ราชบุรี)" -msgstr "Ratchaburi (ราชบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:65 -msgid "Rayong (ระยอง)" -msgstr "Rayong (ระยอง)" - -# @ woocommerce -#: i18n/states/TH.php:66 -msgid "Roi Et (ร้อยเอ็ด)" -msgstr "Roi Et (ร้อยเอ็ด)" - -# @ woocommerce -#: i18n/states/TH.php:67 -msgid "Sa Kaeo (สระแก้ว)" -msgstr "Sa Kaeo (สระแก้ว)" - -# @ woocommerce -#: i18n/states/TH.php:68 -msgid "Sakon Nakhon (สกลนคร)" -msgstr "Sakon Nakhon (สกลนคร)" - -# @ woocommerce -#: i18n/states/TH.php:69 -msgid "" -"Samut Prakan (สมุทรปราก" -"าร)" -msgstr "" -"Samut Prakan (สมุทรปราก" -"าร)" - -# @ woocommerce -#: i18n/states/TH.php:70 -msgid "" -"Samut Sakhon (สมุทรสาค" -"ร)" -msgstr "" -"Samut Sakhon (สมุทรสาค" -"ร)" - -# @ woocommerce -#: i18n/states/TH.php:71 -msgid "" -"Samut Songkhram (สมุทรสงค" -"ราม)" -msgstr "" -"Samut Songkhram (สมุทรสงค" -"ราม)" - -# @ woocommerce -#: i18n/states/TH.php:72 -msgid "Saraburi (สระบุรี)" -msgstr "Saraburi (สระบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:73 -msgid "Satun (สตูล)" -msgstr "Satun (สตูล)" - -# @ woocommerce -#: i18n/states/TH.php:74 -msgid "" -"Sing Buri (สิงห์บุรี)" -msgstr "" -"Sing Buri (สิงห์บุรี)" - -# @ woocommerce -#: i18n/states/TH.php:75 -msgid "Sisaket (ศรีสะเกษ)" -msgstr "Sisaket (ศรีสะเกษ)" - -# @ woocommerce -#: i18n/states/TH.php:76 -msgid "Songkhla (สงขลา)" -msgstr "Songkhla (สงขลา)" - -# @ woocommerce -#: i18n/states/TH.php:77 -msgid "Sukhothai (สุโขทัย)" -msgstr "Sukhothai (สุโขทัย)" - -# @ woocommerce -#: i18n/states/TH.php:78 -msgid "" -"Suphan Buri (สุพรรณบุร" -"ี)" -msgstr "" -"Suphan Buri (สุพรรณบุร" -"ี)" - -# @ woocommerce -#: i18n/states/TH.php:79 -msgid "" -"Surat Thani (สุราษฎร์ธ" -"านี)" -msgstr "" -"Surat Thani (สุราษฎร์ธ" -"านี)" - -# @ woocommerce -#: i18n/states/TH.php:80 -msgid "Surin (สุรินทร์)" -msgstr "Surin (สุรินทร์)" - -# @ woocommerce -#: i18n/states/TH.php:81 -msgid "Tak (ตาก)" -msgstr "Tak (ตาก)" - -# @ woocommerce -#: i18n/states/TH.php:82 -msgid "Trang (ตรัง)" -msgstr "Trang (ตรัง)" - -# @ woocommerce -#: i18n/states/TH.php:83 -msgid "Trat (ตราด)" -msgstr "Trat (ตราด)" - -# @ woocommerce -#: i18n/states/TH.php:84 -msgid "" -"Ubon Ratchathani (อุบลราชธ" -"านี)" -msgstr "" -"Ubon Ratchathani (อุบลราชธ" -"านี)" - -# @ woocommerce -#: i18n/states/TH.php:85 -msgid "Udon Thani (อุดรธานี)" -msgstr "Udon Thani (อุดรธานี)" - -# @ woocommerce -#: i18n/states/TH.php:86 -msgid "" -"Uthai Thani (อุทัยธานี)" -msgstr "" -"Uthai Thani (อุทัยธานี)" - -# @ woocommerce -#: i18n/states/TH.php:87 -msgid "" -"Uttaradit (อุตรดิตถ์)" -msgstr "" -"Uttaradit (อุตรดิตถ์)" - -# @ woocommerce -#: i18n/states/TH.php:88 -msgid "Yala (ยะลา)" -msgstr "Yala (ยะลา)" - -# @ woocommerce -#: i18n/states/TH.php:89 -msgid "Yasothon (ยโสธร)" -msgstr "Yasothon (ยโสธร)" - -# @ woocommerce -#: i18n/states/US.php:13 -msgid "Alabama" -msgstr "Alabama" - -# @ woocommerce -#: i18n/states/US.php:14 -msgid "Alaska" -msgstr "Alaska" - -# @ woocommerce -#: i18n/states/US.php:15 -msgid "Arizona" -msgstr "Arizona" - -# @ woocommerce -#: i18n/states/US.php:16 -msgid "Arkansas" -msgstr "Arkansas" - -# @ woocommerce -#: i18n/states/US.php:17 -msgid "California" -msgstr "California" - -# @ woocommerce -#: i18n/states/US.php:18 -msgid "Colorado" -msgstr "Colorado" - -# @ woocommerce -#: i18n/states/US.php:19 -msgid "Connecticut" -msgstr "Connecticut" - -# @ woocommerce -#: i18n/states/US.php:20 -msgid "Delaware" -msgstr "Delaware" - -# @ woocommerce -#: i18n/states/US.php:21 -msgid "District Of Columbia" -msgstr "District Of Columbia" - -# @ woocommerce -#: i18n/states/US.php:22 -msgid "Florida" -msgstr "Florida" - -# @ woocommerce -#: i18n/states/US.php:24 -msgid "Hawaii" -msgstr "Hawaii" - -# @ woocommerce -#: i18n/states/US.php:25 -msgid "Idaho" -msgstr "Idaho" - -# @ woocommerce -#: i18n/states/US.php:26 -msgid "Illinois" -msgstr "Illinois" - -# @ woocommerce -#: i18n/states/US.php:27 -msgid "Indiana" -msgstr "Indiana" - -# @ woocommerce -#: i18n/states/US.php:28 -msgid "Iowa" -msgstr "Iowa" - -# @ woocommerce -#: i18n/states/US.php:29 -msgid "Kansas" -msgstr "Kansas" - -# @ woocommerce -#: i18n/states/US.php:30 -msgid "Kentucky" -msgstr "Kentucky" - -# @ woocommerce -#: i18n/states/US.php:31 -msgid "Louisiana" -msgstr "Louisiana" - -# @ woocommerce -#: i18n/states/US.php:32 -msgid "Maine" -msgstr "Maine" - -# @ woocommerce -#: i18n/states/US.php:33 -msgid "Maryland" -msgstr "Maryland" - -# @ woocommerce -#: i18n/states/US.php:34 -msgid "Massachusetts" -msgstr "Massachusetts" - -# @ woocommerce -#: i18n/states/US.php:35 -msgid "Michigan" -msgstr "Michigan" - -# @ woocommerce -#: i18n/states/US.php:36 -msgid "Minnesota" -msgstr "Minnesota" - -# @ woocommerce -#: i18n/states/US.php:37 -msgid "Mississippi" -msgstr "Mississippi" - -# @ woocommerce -#: i18n/states/US.php:38 -msgid "Missouri" -msgstr "Missouri" - -# @ woocommerce -#: i18n/states/US.php:39 -msgid "Montana" -msgstr "Montana" - -# @ woocommerce -#: i18n/states/US.php:40 -msgid "Nebraska" -msgstr "Nebraska" - -# @ woocommerce -#: i18n/states/US.php:41 -msgid "Nevada" -msgstr "Nevada" - -# @ woocommerce -#: i18n/states/US.php:42 -msgid "New Hampshire" -msgstr "New Hampshire" - -# @ woocommerce -#: i18n/states/US.php:43 -msgid "New Jersey" -msgstr "New Jersey" - -# @ woocommerce -#: i18n/states/US.php:44 -msgid "New Mexico" -msgstr "New Mexico" - -# @ woocommerce -#: i18n/states/US.php:45 -msgid "New York" -msgstr "New York" - -# @ woocommerce -#: i18n/states/US.php:46 -msgid "North Carolina" -msgstr "North Carolina" - -# @ woocommerce -#: i18n/states/US.php:47 -msgid "North Dakota" -msgstr "North Dakota" - -# @ woocommerce -#: i18n/states/US.php:48 -msgid "Ohio" -msgstr "Ohio" - -# @ woocommerce -#: i18n/states/US.php:49 -msgid "Oklahoma" -msgstr "Oklahoma" - -# @ woocommerce -#: i18n/states/US.php:50 -msgid "Oregon" -msgstr "Oregon" - -# @ woocommerce -#: i18n/states/US.php:51 -msgid "Pennsylvania" -msgstr "Pennsylvania" - -# @ woocommerce -#: i18n/states/US.php:52 -msgid "Rhode Island" -msgstr "Rhode Island" - -# @ woocommerce -#: i18n/states/US.php:53 -msgid "South Carolina" -msgstr "South Carolina" - -# @ woocommerce -#: i18n/states/US.php:54 -msgid "South Dakota" -msgstr "South Dakota" - -# @ woocommerce -#: i18n/states/US.php:55 -msgid "Tennessee" -msgstr "Tennessee" - -# @ woocommerce -#: i18n/states/US.php:56 -msgid "Texas" -msgstr "Texas" - -# @ woocommerce -#: i18n/states/US.php:57 -msgid "Utah" -msgstr "Utah" - -# @ woocommerce -#: i18n/states/US.php:58 -msgid "Vermont" -msgstr "Vermont" - -# @ woocommerce -#: i18n/states/US.php:59 -msgid "Virginia" -msgstr "Virginia" - -# @ woocommerce -#: i18n/states/US.php:60 -msgid "Washington" -msgstr "Washington" - -# @ woocommerce -#: i18n/states/US.php:61 -msgid "West Virginia" -msgstr "West Virginia" - -# @ woocommerce -#: i18n/states/US.php:62 -msgid "Wisconsin" -msgstr "Wisconsin" - -# @ woocommerce -#: i18n/states/US.php:63 -msgid "Wyoming" -msgstr "Wyoming" - -# @ woocommerce -#: i18n/states/US.php:64 -msgid "Armed Forces (AA)" -msgstr "Armed Forces (AA)" - -# @ woocommerce -#: i18n/states/US.php:65 -msgid "Armed Forces (AE)" -msgstr "Armed Forces (AE)" - -# @ woocommerce -#: i18n/states/US.php:66 -msgid "Armed Forces (AP)" -msgstr "Armed Forces (AP)" - -# @ woocommerce -#: i18n/states/US.php:67 -msgid "American Samoa" -msgstr "American Samoa" - -# @ woocommerce -#: i18n/states/US.php:68 -msgid "Guam" -msgstr "Guam" - -# @ woocommerce -#: i18n/states/US.php:69 -msgid "Northern Mariana Islands" -msgstr "Northern Mariana Islands" - -# @ woocommerce -#: i18n/states/US.php:70 -msgid "Puerto Rico" -msgstr "Puerto Rico" - -# @ woocommerce -#: i18n/states/US.php:71 -msgid "US Minor Outlying Islands" -msgstr "US Minor Outlying Islands" - -# @ woocommerce -#: i18n/states/US.php:72 -msgid "US Virgin Islands" -msgstr "US Virgin Islands" - -# @ woocommerce -#: i18n/states/ZA.php:13 -msgid "Eastern Cape" -msgstr "Eastern Cape" - -# @ woocommerce -#: i18n/states/ZA.php:14 -msgid "Free State" -msgstr "Stato libero" - -# @ woocommerce -#: i18n/states/ZA.php:15 -msgid "Gauteng" -msgstr "Gauteng" - -# @ woocommerce -#: i18n/states/ZA.php:16 -msgid "KwaZulu-Natal" -msgstr "KwaZulu-Natal" - -# @ woocommerce -#: i18n/states/ZA.php:17 -msgid "Limpopo" -msgstr "Limpopo" - -# @ woocommerce -#: i18n/states/ZA.php:18 -msgid "Mpumalanga" -msgstr "Mpumalanga" - -# @ woocommerce -#: i18n/states/ZA.php:19 -msgid "Northern Cape" -msgstr "Northern Cape" - -# @ woocommerce -#: i18n/states/ZA.php:20 -msgid "North West" -msgstr "North West" - -# @ woocommerce -#: i18n/states/ZA.php:21 -msgid "Western Cape" -msgstr "Western Cape" - -# @ woocommerce -#: templates/loop-shop.php:40 templates/loop/no-products-found.php:14 -msgid "No products found which match your selection." -msgstr "Nessun prodotto trovato con i criteri selezionati." - -# @ woocommerce -#: templates/single-product-reviews.php:30 -#, php-format -msgid "%s review for %s" -msgid_plural "%s reviews for %s" -msgstr[0] "%s recensione per %s" -msgstr[1] "%s recensioni per %s" - -# @ woocommerce -#: templates/single-product-reviews.php:58 -msgid " Previous" -msgstr " Precedente" - -# @ woocommerce -#: templates/single-product-reviews.php:59 -msgid "Next " -msgstr "Successivo " - -# @ woocommerce -#: templates/single-product-reviews.php:63 -msgid "Add Your Review" -msgstr "Aggiungi la tua recensione" - -# @ woocommerce -#: templates/single-product-reviews.php:63 -msgid "Add Review" -msgstr "Aggiungi recensione" - -# @ woocommerce -#: templates/single-product-reviews.php:65 -msgid "Add a review" -msgstr "Aggiungi una recensione" - -# @ woocommerce -#: templates/single-product-reviews.php:69 -msgid "Be the first to review" -msgstr "Scrivi la prima recensione per" - -# @ woocommerce -#: templates/single-product-reviews.php:71 -msgid "" -"There are no reviews yet, would you like to submit yours?" -msgstr "" -"Non ci sono ancora recensioni, vuoi essere il primo?" - -# @ woocommerce -#: templates/single-product-reviews.php:89 -msgid "Submit Review" -msgstr "Invia recensione" - -# @ woocommerce -#: templates/single-product-reviews.php:96 -msgid "Rating" -msgstr "Valutazione" - -# @ woocommerce -#: templates/single-product-reviews.php:97 -msgid "Rate…" -msgstr "Tariffa…" - -# @ woocommerce -#: templates/single-product-reviews.php:98 -msgid "Perfect" -msgstr "Perfetto" - -# @ woocommerce -#: templates/single-product-reviews.php:99 -msgid "Good" -msgstr "Buono" - -# @ woocommerce -#: templates/single-product-reviews.php:100 -msgid "Average" -msgstr "Sufficiente" - -# @ woocommerce -#: templates/single-product-reviews.php:101 -msgid "Not that bad" -msgstr "Non male" - -# @ woocommerce -#: templates/single-product-reviews.php:102 -msgid "Very Poor" -msgstr "Scarso" - -# @ woocommerce -#: templates/single-product-reviews.php:107 -msgid "Your Review" -msgstr "La tua recensione" - -# @ woocommerce -#: templates/cart/cart-empty.php:14 -msgid "Your cart is currently empty." -msgstr "Il tuo carrello è vuoto." - -# @ woocommerce -#: templates/cart/cart-empty.php:18 -msgid "← Return To Shop" -msgstr "← Ritorna al negozio" - -# @ woocommerce -#: templates/cart/cart.php:47 -msgid "Remove this item" -msgstr "Rimuovi questo prodotto" - -# @ woocommerce -#: templates/cart/cart.php:100 -#: templates/single-product/add-to-cart/quantity.php:12 -msgctxt "Product quantity input tooltip" -msgid "Qty" -msgstr "Qta" - -# @ woocommerce -#: templates/cart/cart.php:127 templates/checkout/form-coupon.php:29 -msgid "Apply Coupon" -msgstr "Applica Sconto" - -# @ woocommerce -#: templates/cart/cart.php:134 -msgid "Update Cart" -msgstr "Aggiorna Carrello" - -# @ woocommerce -#: templates/cart/cart.php:134 -msgid "Proceed to Checkout →" -msgstr "Procedi all'acquisto →" - -# @ woocommerce -#: templates/cart/cross-sells.php:40 -msgid "You may be interested in…" -msgstr "Potresti essere interessato a…" - -# @ woocommerce -#: templates/cart/mini-cart.php:55 -msgid "No products in the cart." -msgstr "Nessun prodotto nel carrello" - -# @ woocommerce -#: templates/cart/mini-cart.php:69 -msgid "Checkout →" -msgstr "Acquista →" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:20 -msgid "Calculate Shipping" -msgstr "Calcolo spedizione" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:42 -#: templates/cart/shipping-calculator.php:50 -#: templates/cart/shipping-calculator.php:61 -msgid "State / county" -msgstr "Provincia" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:71 -msgid "Update Totals" -msgstr "Aggiorna totale" - -# @ woocommerce -#: templates/cart/shipping-methods.php:32 -msgid "Free" -msgstr "Gratis" - -# @ woocommerce -#: templates/cart/shipping-methods.php:68 -msgid "Please fill in your details to see available shipping methods." -msgstr "" -"Per favore, inserisci le tue informazioni per vedere quali metodi di " -"spedizioni sono disponibili." - -# @ woocommerce -#: templates/cart/shipping-methods.php:76 templates/cart/totals.php:147 -#, php-format -msgid "" -"Sorry, it seems that there are no available shipping methods for your " -"location (%s)." -msgstr "" -"Spiacenti, sembra non ci siano metodi di spedizione disponibili per il suo " -"indirizzo (%s)." - -# @ woocommerce -#: templates/cart/shipping-methods.php:76 templates/cart/totals.php:147 -msgid "" -"If you require assistance or wish to make alternate arrangements please " -"contact us." -msgstr "" -"Se desideri ricevere assistenza o preferisci prendere accordi alternativi " -"per favore contattaci." - -# @ woocommerce -#: templates/cart/totals.php:22 -msgid "Cart Totals" -msgstr "Totale Carrello" - -# @ woocommerce -#: templates/cart/totals.php:28 templates/checkout/review-order.php:27 -msgid "Cart Subtotal" -msgstr "Subtotale Carrello" - -# @ woocommerce -#: templates/cart/totals.php:35 templates/cart/totals.php:83 -msgid "[Remove]" -msgstr "[Elimina]" - -# @ woocommerce -#: templates/cart/totals.php:83 templates/checkout/review-order.php:82 -msgid "Order Discount" -msgstr "Sconto Ordine" - -# @ woocommerce -#: templates/cart/totals.php:121 -#, php-format -msgid " (taxes estimated for %s)" -msgstr "(tasse stimate per %s)" - -# @ woocommerce -#: templates/cart/totals.php:123 -#, php-format -msgid "" -"Note: Shipping and taxes are estimated%s and will be updated during checkout " -"based on your billing and shipping information." -msgstr "" -"Nota: Le spese di spedizione sono solo stimate%s e saranno calcolate " -"esattamente al momento dell'acquisto, in base alle informazioni di " -"fatturazione e di spedizione fornite." - -# @ woocommerce -#: templates/cart/totals.php:135 -msgid "" -"No shipping methods were found; please recalculate your shipping and enter " -"your state/county and zip/postcode to ensure there are no other available " -"methods for your location." -msgstr "" -"Non sono state trovate modalità di spedizione; si prega di ricalcolare la " -"spedizione la tua provincia e il CAP per assicurarsi che non ci siano altri " -"metodi disponibili per la tua località." - -# @ woocommerce -#: templates/checkout/cart-errors.php:16 -msgid "" -"There are some issues with the items in your cart (shown above). Please go " -"back to the cart page and resolve these issues before checking out." -msgstr "" -"Vi sono alcuni problemi con gli articoli nel tuo carrello. Vedi sotto. Per " -"favore, torna nella pagina del carrello e risolvili prima di proseguire con " -"il pagamento." - -# @ woocommerce -#: templates/checkout/cart-errors.php:20 -msgid "← Return To Cart" -msgstr "← Ritorna al Carrello" - -# @ woocommerce -#: templates/checkout/form-billing.php:17 -msgid "Billing & Shipping" -msgstr "Fatturazione e Spedizione" - -# @ woocommerce -#: templates/checkout/form-billing.php:42 -msgid "Create an account?" -msgstr "Creare un account?" - -# @ woocommerce -#: templates/checkout/form-billing.php:51 -msgid "" -"Create an account by entering the information below. If you are a returning " -"customer please login at the top of the page." -msgstr "" -"Crea un account inserendo le informazioni qui sotto. Se sei già iscritto, " -"per favore accedi." - -# @ woocommerce -#: templates/checkout/form-checkout.php:20 -msgid "You must be logged in to checkout." -msgstr "Devi effettuare il login per procedere con l'acquisto." - -# @ woocommerce -#: templates/checkout/form-checkout.php:51 -msgid "Your order" -msgstr "Il tuo ordine" - -# @ woocommerce -#: templates/checkout/form-coupon.php:17 -msgid "Have a coupon?" -msgstr "Hai un buono sconto?" - -# @ woocommerce -#: templates/checkout/form-coupon.php:20 -msgid "Click here to enter your code" -msgstr "Clicca qui per inserire il tuo codice" - -# @ woocommerce -#: templates/checkout/form-login.php:14 -msgid "Returning customer?" -msgstr "Già cliente?" - -# @ woocommerce -#: templates/checkout/form-login.php:17 -msgid "Click here to login" -msgstr "Clicca qui per accedere" - -# @ woocommerce -#: templates/checkout/form-login.php:22 -msgid "" -"If you have shopped with us before, please enter your details in the boxes " -"below. If you are a new customer please proceed to the Billing & " -"Shipping section." -msgstr "" -"Se hai precedentemente acquistato da noi, per favore, inserisci i dettagli " -"nei box sottostanti. Se sei un nuovo cliente procedi alla sezione " -"Fatturazione e Spedizione." - -# @ woocommerce -#: templates/checkout/form-pay.php:21 -msgid "Totals" -msgstr "Prezzo" - -# @ woocommerce -#: templates/checkout/form-pay.php:78 -msgid "" -"Sorry, it seems that there are no available payment methods for your " -"location. Please contact us if you require assistance or wish to make " -"alternate arrangements." -msgstr "" -"Spiacenti, sembra che non ci siano metodi di pagamento disponibili per la " -"vostra zona. Vi preghiamo di contattarci se avete bisogno di assistenza o " -"desiderate prendere accordi alternativi." - -# @ woocommerce -#: templates/checkout/form-pay.php:87 -msgid "Pay for order" -msgstr "Pagamento ordine" - -# @ woocommerce -#: templates/checkout/form-shipping.php:32 -msgid "Ship to billing address?" -msgstr "Spedisci all'indirizzo di fatturazione" - -# @ woocommerce -#: templates/checkout/review-order.php:174 -msgid "Please fill in your details above to see available payment methods." -msgstr "" -"Si prega di compilare i dati qui sopra per vedere i metodi di pagamento " -"disponibili." - -# @ woocommerce -#: templates/checkout/review-order.php:176 -msgid "" -"Sorry, it seems that there are no available payment methods for your state. " -"Please contact us if you require assistance or wish to make alternate " -"arrangements." -msgstr "" -"Ci dispiace, sembra che non ci siano metodi di pagamento disponibili per il " -"suo indirizzo. La preghiamo di contattarci se ha bisogno di assistenza o se " -"desidera prendere accordi alternativi." - -# @ woocommerce -#: templates/checkout/review-order.php:185 -msgid "" -"Since your browser does not support JavaScript, or it is disabled, please " -"ensure you click the Update Totals button before placing your " -"order. You may be charged more than the amount stated above if you fail to " -"do so." -msgstr "" -"Dal momento che il tuo browser non supporta JavaScript oppure è " -"disabilitato, assicurati di fare clic sul pulsante Aggiorna totale " -"prima di effettuare l'ordine. Se non riesci a fare quest'operazione " -"l'importo addebitato potrebbe risultare più alto." - -# @ woocommerce -#: templates/checkout/review-order.php:185 -msgid "Update totals" -msgstr "Aggiorna totale" - -# @ woocommerce -#: templates/checkout/review-order.php:192 -msgid "Place order" -msgstr "Effettua Ordine" - -# @ woocommerce -#: templates/checkout/review-order.php:199 -msgid "I have read and accept the" -msgstr "Ho letto e accetto le" - -# @ woocommerce -#: templates/checkout/review-order.php:199 -msgid "terms & conditions" -msgstr "termini e condizioni" - -# @ woocommerce -#: templates/checkout/thankyou.php:18 -msgid "" -"Unfortunately your order cannot be processed as the originating bank/" -"merchant has declined your transaction." -msgstr "" -"Purtroppo l'ordine non può essere processato poichè la banca ha rifiutato la " -"transazione." - -# @ woocommerce -#: templates/checkout/thankyou.php:22 -msgid "Please attempt your purchase again or go to your account page." -msgstr "" -"Si prega di provare di nuovo l'acquisto o andare alla pagina del tuo account." - -# @ woocommerce -#: templates/checkout/thankyou.php:24 -msgid "Please attempt your purchase again." -msgstr "Si prega di provare di nuovo l'acquisto." - -# @ woocommerce -#: templates/checkout/thankyou.php:36 templates/checkout/thankyou.php:67 -msgid "Thank you. Your order has been received." -msgstr "Grazie. Il tuo ordine è stato ricevuto." - -# @ woocommerce -#: templates/emails/admin-new-order.php:13 -#: templates/emails/plain/admin-new-order.php:13 -#, php-format -msgid "You have received an order from %s. Their order is as follows:" -msgstr "Hai ricevuto un ordine da %s. L'ordine è il seguente:" - -# @ woocommerce -#: templates/emails/admin-new-order.php:17 -#, php-format -msgid "Order: %s" -msgstr "Ordine: %s" - -# @ woocommerce -#: templates/emails/customer-completed-order.php:14 -#: templates/emails/plain/customer-completed-order.php:13 -#, php-format -msgid "" -"Hi there. Your recent order on %s has been completed. Your order details are " -"shown below for your reference:" -msgstr "" -"Salve. Il tuo recente ordine su %s è stato portato a termine. Il dettaglio " -"dell'ordine è riportato di seguito perché tu possa consultarlo:" - -# @ woocommerce -#: templates/emails/customer-invoice.php:16 -#: templates/emails/plain/customer-invoice.php:14 -#, php-format -msgid "" -"An order has been created for you on %s. To pay for this order please use " -"the following link: %s" -msgstr "" -"Un ordine è stato creato per te presso %s. Per pagare questo ordine per " -"favore utilizza il seguente link: %s" - -# @ woocommerce -#: templates/emails/customer-invoice.php:16 -msgid "pay" -msgstr "paga" - -# @ woocommerce -#: templates/emails/customer-new-account.php:14 -#: templates/emails/plain/customer-new-account.php:13 -#, php-format -msgid "" -"Thanks for creating an account on %s. Your username is %s." -msgstr "" -"Grazie per esserti iscritto su %s. Il tuo nome utente è %s." - -# @ woocommerce -#: templates/emails/customer-new-account.php:16 -#: templates/emails/plain/customer-new-account.php:15 -#, php-format -msgid "You can access your account area here: %s." -msgstr "Puoi accedere alla tua area riservata qui: %s." - -# @ woocommerce -#: templates/emails/customer-note.php:14 -#: templates/emails/plain/customer-note.php:13 -msgid "Hello, a note has just been added to your order:" -msgstr "Salve, è stata aggiunta una nota al tuo ordine:" - -# @ woocommerce -#: templates/emails/customer-note.php:18 -#: templates/emails/plain/customer-note.php:21 -msgid "For your reference, your order details are shown below." -msgstr "Qui sotto sono mostrati i dettagli del tuo ordine." - -# @ woocommerce -#: templates/emails/customer-processing-order.php:14 -#: templates/emails/plain/customer-processing-order.php:13 -msgid "" -"Your order has been received and is now being processed. Your order details " -"are shown below for your reference:" -msgstr "" -"Il suo ordine è stato ricevuto ed è in elaborazione. Il dettaglio " -"dell'ordine è mostrato di seguito perché possa consultarlo:" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:14 -#: templates/emails/plain/customer-reset-password.php:13 -msgid "Someone requested that the password be reset for the following account:" -msgstr "" -"Qualcuno ha chiesto che la password sia reimpostata per il seguente account:" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:15 -#: templates/emails/plain/customer-reset-password.php:15 -#, php-format -msgid "Username: %s" -msgstr "Nome Utente: %s" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:16 -#: templates/emails/plain/customer-reset-password.php:16 -msgid "If this was a mistake, just ignore this email and nothing will happen." -msgstr "" -"Se questo è stato un errore, basta ignorare questa e-mail e non accadrà " -"nulla." - -# @ woocommerce -#: templates/emails/customer-reset-password.php:17 -#: templates/emails/plain/customer-reset-password.php:17 -msgid "To reset your password, visit the following address:" -msgstr "Per reimpostare la password, visitare il seguente indirizzo:" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:20 -msgid "Click here to reset your password" -msgstr "Clicca qui per reimpostare la password" - -# @ woocommerce -#: templates/emails/email-order-items.php:47 -#, php-format -msgid "Download %d:" -msgstr "Download %d:" - -# @ woocommerce -#: templates/emails/email-order-items.php:49 -msgid "Download:" -msgstr "Download:" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:19 -#: templates/emails/plain/customer-completed-order.php:19 -#: templates/emails/plain/customer-invoice.php:20 -#: templates/emails/plain/customer-note.php:27 -#: templates/emails/plain/customer-processing-order.php:19 -#, php-format -msgid "Order number: %s" -msgstr "Ordine numero: %s" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:20 -#: templates/emails/plain/customer-completed-order.php:20 -#: templates/emails/plain/customer-invoice.php:21 -#: templates/emails/plain/customer-note.php:28 -#: templates/emails/plain/customer-processing-order.php:20 -#, php-format -msgid "Order date: %s" -msgstr "Data Ordine: %s" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:20 -msgid "jS F Y" -msgstr "jS F Y" - -# @ woocommerce -#: templates/emails/plain/customer-completed-order.php:38 -#: templates/emails/plain/customer-note.php:46 -#: templates/emails/plain/customer-processing-order.php:38 -msgid "Your details" -msgstr "Dettaglio:" - -# @ woocommerce -#: templates/emails/plain/email-order-items.php:28 -#, php-format -msgid "Quantity: %s" -msgstr "Quantità: %s" - -# @ woocommerce -#: templates/emails/plain/email-order-items.php:31 -#, php-format -msgid "Cost: %s" -msgstr "Costo: %s" - -# @ woocommerce -#: templates/loop/add-to-cart.php:17 templates/loop/add-to-cart.php:41 -#: templates/loop/add-to-cart.php:50 -msgid "Read More" -msgstr "Per saperne di più" - -# @ woocommerce -#: templates/loop/add-to-cart.php:33 -msgid "Select options" -msgstr "Scegli" - -# @ woocommerce -#: templates/loop/add-to-cart.php:37 -msgid "View options" -msgstr "Vedi le opzioni" - -# @ woocommerce -#: templates/loop/orderby.php:21 -msgid "Default sorting" -msgstr "Ordinamento predefinito" - -# @ woocommerce -#: templates/loop/orderby.php:22 -msgid "Sort by popularity" -msgstr "Ordina per popolarità" - -# @ woocommerce -#: templates/loop/orderby.php:23 -msgid "Sort by average rating" -msgstr "Ordina per valutazione media" - -# @ woocommerce -#: templates/loop/orderby.php:24 -msgid "Sort by newness" -msgstr "Ordina per novità" - -# @ woocommerce -#: templates/loop/orderby.php:25 -msgid "Sort by price: low to high" -msgstr "Ordina per prezzo: dal più economico" - -# @ woocommerce -#: templates/loop/orderby.php:26 -msgid "Sort by price: high to low" -msgstr "Ordina per prezzo: dal più caro" - -# @ woocommerce -#: templates/loop/result-count.php:28 -msgid "Showing the single result" -msgstr "Visualizzazione del risultato singolo" - -# @ woocommerce -#: templates/loop/result-count.php:30 -#, php-format -msgid "Showing all %d results" -msgstr "Mostra tutti i %d risultati" - -# @ woocommerce -#: templates/loop/result-count.php:32 -#, php-format -msgctxt "%1$d = first, %2$d = last, %3$d = total" -msgid "Showing %1$d–%2$d of %3$d results" -msgstr "Visualizzazione %1$d-%2$d di %3$d risultati" - -# @ woocommerce -#: templates/loop/sale-flash.php:16 templates/single-product/sale-flash.php:16 -msgid "Sale!" -msgstr "In offerta!" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:20 -#: templates/myaccount/form-lost-password.php:31 -msgid "New password" -msgstr "Nuova password" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:24 -#: templates/myaccount/form-lost-password.php:35 -msgid "Re-enter new password" -msgstr "Riscrivi nuova password" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:29 -#: templates/myaccount/form-lost-password.php:45 -msgid "Save" -msgstr "Salva" - -# @ woocommerce -#: templates/myaccount/form-edit-address.php:43 -msgid "Save Address" -msgstr "Salva indirizzo" - -# @ woocommerce -#: templates/myaccount/form-login.php:26 templates/myaccount/form-login.php:40 -#: templates/shop/form-login.php:31 -msgid "Login" -msgstr "Accedi" - -# @ woocommerce -#: templates/myaccount/form-login.php:29 -#: templates/myaccount/form-lost-password.php:24 -#: templates/shop/form-login.php:20 -msgid "Username or email" -msgstr "Nome Utente o Email" - -# @ woocommerce -#: templates/myaccount/form-login.php:33 templates/myaccount/form-login.php:85 -#: templates/shop/form-login.php:24 -msgid "Password" -msgstr "password" - -# @ woocommerce -#: templates/myaccount/form-login.php:50 templates/shop/form-login.php:33 -msgid "Lost Password?" -msgstr "Hai perso la password?" - -# @ woocommerce -#: templates/myaccount/form-login.php:60 -#: templates/myaccount/form-login.php:101 -msgid "Register" -msgstr "Registrazione" - -# @ woocommerce -#: templates/myaccount/form-login.php:66 -msgid "Username" -msgstr "nome utente" - -# @ woocommerce -#: templates/myaccount/form-login.php:89 -msgid "Re-enter password" -msgstr "Reinserisci la password" - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:22 -msgid "" -"Lost your password? Please enter your username or email address. You will " -"receive a link to create a new password via email." -msgstr "" -"Hai perso la password? Inserisci il tuo nome utente o l'indirizzo email. " -"Riceverai tramite e-mail un link per generare una nuova password." - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:28 -msgid "Enter a new password below." -msgstr "Inserire una nuova password qui sotto." - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:45 -msgid "Reset Password" -msgstr "Reset Password" - -# @ woocommerce -#: templates/myaccount/my-account.php:19 -#, php-format -msgid "" -"Hello, %s. From your account dashboard you can view your " -"recent orders, manage your shipping and billing addresses and change your password." -msgstr "" -"Salve, %s. In questa pagina puoi vedere gli ultimi ordini " -"effettuati, modificare l'indirizzo di spedizione e fatturazione e modificare la tua password." - -# @ woocommerce -#: templates/myaccount/my-address.php:17 -msgid "My Addresses" -msgstr "I miei indirizzi" - -# @ woocommerce -#: templates/myaccount/my-address.php:23 -msgid "My Address" -msgstr "Mio Indirizzo" - -# @ woocommerce -#: templates/myaccount/my-address.php:35 -msgid "The following addresses will be used on the checkout page by default." -msgstr "" -"I seguenti indirizzi saranno usati come predefiniti al momento dell'acquisto." - -# @ woocommerce -#: templates/myaccount/my-address.php:64 -msgid "You have not set up this type of address yet." -msgstr "Non hai ancora impostato questo tipo di indirizzo." - -# @ woocommerce -#: templates/myaccount/my-downloads.php:18 -msgid "Available downloads" -msgstr "Download disponibili" - -# @ woocommerce -#: templates/myaccount/my-downloads.php:27 -#, php-format -msgid "%s download remaining" -msgid_plural "%s downloads remaining" -msgstr[0] "%s download rimanente" -msgstr[1] "%s download rimanenti" - -# @ woocommerce -#: templates/myaccount/my-orders.php:26 -msgid "Recent Orders" -msgstr "Ordini recenti" - -# @ woocommerce -#: templates/myaccount/my-orders.php:62 -#, php-format -msgid "%s for %s item" -msgid_plural "%s for %s items" -msgstr[0] "%s per %s prodotto" -msgstr[1] "%s per %s prodotti" - -# @ woocommerce -#: templates/order/form-tracking.php:17 -msgid "" -"To track your order please enter your Order ID in the box below and press " -"return. This was given to you on your receipt and in the confirmation email " -"you should have received." -msgstr "" -"Per rintracciare il tuo ordine inserisci il tuo ID ordine nel campo " -"sottostante e premi invio. Ti sarà mostrata la ricevuta e l'email di " -"conferma che avresti dovuto ricevere." - -# @ woocommerce -#: templates/order/form-tracking.php:19 -msgid "Order ID" -msgstr "ID ordine" - -# @ woocommerce -#: templates/order/form-tracking.php:19 -msgid "Found in your order confirmation email." -msgstr "Presente nell'email di conferma ordine." - -# @ woocommerce -#: templates/order/form-tracking.php:20 -msgid "Billing Email" -msgstr "Email di fatturazione" - -# @ woocommerce -#: templates/order/form-tracking.php:20 -msgid "Email you used during checkout." -msgstr "Email utilizzata durante l'acquisto." - -# @ woocommerce -#: templates/order/form-tracking.php:23 -msgid "Track" -msgstr "Track" - -# @ woocommerce -#: templates/order/order-details.php:64 -#, php-format -msgid "Download file%s" -msgstr "Download file%s" - -# @ woocommerce -#: templates/order/order-details.php:90 -msgid "Order Again" -msgstr "Ordina Nuovamente" - -# @ woocommerce -#: templates/order/order-details.php:102 -msgid "Telephone:" -msgstr "Telefono:" - -# @ woocommerce -#: templates/order/tracking.php:18 -#, php-format -msgid "Order %s which was made %s has the status “%s”" -msgstr "L'ordine %s creato %s ha lo stato: “%s”" - -# @ woocommerce -#: templates/order/tracking.php:18 -msgid "ago" -msgstr "fa" - -# @ woocommerce -#: templates/order/tracking.php:20 -msgid "and was completed" -msgstr "ed è stato completato" - -# @ woocommerce -#: templates/order/tracking.php:20 -msgid " ago" -msgstr "fa" - -# @ woocommerce -#: templates/shop/breadcrumb.php:63 -msgid "Products tagged “" -msgstr "Prodotti taggati “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:91 templates/shop/breadcrumb.php:188 -msgid "Search results for “" -msgstr "Risultati di ricerca per “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:146 -msgid "Error 404" -msgstr "Errore 404" - -# @ woocommerce -#: templates/shop/breadcrumb.php:192 -msgid "Posts tagged “" -msgstr "Articoli taggati “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:197 -msgid "Author:" -msgstr "Autore:" - -# @ woocommerce -#: templates/shop/breadcrumb.php:202 -msgid "Page" -msgstr "Pagina" - -# @ product_cat -#: templates/single-product/meta.php:24 -msgid "Category:" -msgid_plural "Categories:" -msgstr[0] "Categoria:" -msgstr[1] "Categorie:" - -# @ product_tag -#: templates/single-product/meta.php:29 -msgid "Tag:" -msgid_plural "Tags:" -msgstr[0] "Etichetta" -msgstr[1] "Etichette" - -# @ woocommerce -#: templates/single-product/related.php:36 -msgid "Related Products" -msgstr "Prodotti correlati" - -# @ woocommerce -#: templates/single-product/review.php:26 -#, php-format -msgid "Rated %d out of 5" -msgstr "Valutato %d su 5" - -# @ woocommerce -#: templates/single-product/review.php:33 -msgid "Your comment is awaiting approval" -msgstr "Il tuo commento è in attesa di approvazione" - -# @ woocommerce -#: templates/single-product/review.php:40 -msgid "verified owner" -msgstr "acquirente verificato" - -# @ woocommerce -#: templates/single-product/up-sells.php:41 -msgid "You may also like…" -msgstr "Ti potrebbe interessare…" - -# @ woocommerce -#: templates/single-product/add-to-cart/variable.php:24 -msgid "Choose an option" -msgstr "Scegli un opzione" - -# @ woocommerce -#: templates/single-product/add-to-cart/variable.php:69 -msgid "Clear selection" -msgstr "Annulla selezione" - -# @ woocommerce -#: templates/single-product/tabs/description.php:14 -msgid "Product Description" -msgstr "Descrizione prodotto" - -# @ woocommerce -#~ msgid "Subtotal:" -#~ msgstr "Subtotale:" - -# @ woocommerce -#~ msgid "Flat rate" -#~ msgstr "Tariffa Unica" - -# @ woocommerce -#~ msgid "Flat Rates" -#~ msgstr "Tariffe Fisse" - -# @ woocommerce -#~ msgid "Calculation Type" -#~ msgstr "Tipo Calcolo" - -# @ woocommerce -#~ msgid "Default Cost" -#~ msgstr "Costo Predefinito" - -# @ woocommerce -#~ msgid "Default Handling Fee" -#~ msgstr "Costo imballaggio" - -# @ woocommerce -#~ msgid "Minimum Fee" -#~ msgstr "Tariffa minima" - -# @ woocommerce -#~ msgid "+ Add Flat Rate" -#~ msgstr "+ Aggiungi tariffa fissa" - -# @ woocommerce -#~ msgid "" -#~ "Add rates for shipping classes here — they will override the " -#~ "default costs defined above." -#~ msgstr "" -#~ "Aggiungi qui le tariffe fisse per classi di spedizione. Queste avranno la " -#~ "precedenza sulla tariffa predefinita impostata sopra." - -# @ woocommerce -#~ msgid "Display a login area and \"My Account\" links in the sidebar." -#~ msgstr "" -#~ "Mostra nella sidebar un area per il login e i link a \"Mio Account\"." - -# @ woocommerce -#~ msgid "WooCommerce Login" -#~ msgstr "WooCommerce Login" - -# @ woocommerce -#~ msgid "Customer Login" -#~ msgstr "Area Riservata Clienti" - -# @ woocommerce -#~ msgid "Welcome %s" -#~ msgstr "Benvenuto %s" - -# @ woocommerce -#~ msgid "My account" -#~ msgstr "Il mio account" - -# @ woocommerce -#~ msgid "Lost password?" -#~ msgstr "Password dimenticata?" - -# @ woocommerce -#~ msgid "Logged out title:" -#~ msgstr "Titolo log out:" - -# @ woocommerce -#~ msgid "Logged in title:" -#~ msgstr "Titolo Login:" - -# @ woocommerce -#~ msgid "" -#~ "Sorry, it seems that there are no available shipping methods for your " -#~ "state. Please contact us if you require assistance or wish to make " -#~ "alternate arrangements." -#~ msgstr "" -#~ "Spiacenti, sembra che non ci siano metodi di spedizione disponibili per " -#~ "la suo indirizzo. La preghiamo di contattarci se ha bisogno di assistenza " -#~ "o se desidera prendere accordi alternativi." - -# @ woocommerce -#~ msgid "Please enter your username and password to login." -#~ msgstr "Per favore, inserire nome utente e password per accedere" - -# @ woocommerce -#, fuzzy -#~ msgid "Select an option…" -#~ msgstr "Seleziona una pagina…" - -# @ woocommerce -#, fuzzy -#~ msgid "Please select a rating" -#~ msgstr "Elimina tariffe selezionate." diff --git a/i18n/languages/woocommerce-ja.mo b/i18n/languages/woocommerce-ja.mo deleted file mode 100644 index eba881c6f6d..00000000000 Binary files a/i18n/languages/woocommerce-ja.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-ja.po b/i18n/languages/woocommerce-ja.po deleted file mode 100644 index ca60f321499..00000000000 --- a/i18n/languages/woocommerce-ja.po +++ /dev/null @@ -1,6940 +0,0 @@ -msgid "" -msgstr "" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Project-Id-Version: WooCommerce 2.0.9 Front-end\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-04-29 16:02:06+00:00\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.5.7\n" -"Last-Translator: ideodora \n" -"Language-Team: JAPANESE \n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"PO-Revision-Date: \n" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:500 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:501 -msgid "Insert Shortcode" -msgstr "ショートコードを挿入" - -#: assets/js/admin/editor_plugin_lang.php:6 -msgid "Product price/cart button" -msgstr "商品価格/カートボタン" - -#: assets/js/admin/editor_plugin_lang.php:7 -msgid "Product by SKU/ID" -msgstr "SKU/ID順" - -#: assets/js/admin/editor_plugin_lang.php:8 -msgid "Products by SKU/ID" -msgstr "SKU/ID順" - -#: assets/js/admin/editor_plugin_lang.php:9 -msgid "Product categories" -msgstr "商品カテゴリー" - -#: assets/js/admin/editor_plugin_lang.php:10 -msgid "Products by category slug" -msgstr "商品カテゴリースラッグ順" - -#: assets/js/admin/editor_plugin_lang.php:11 -msgid "Recent products" -msgstr "新商品" - -#: assets/js/admin/editor_plugin_lang.php:12 -msgid "Featured products" -msgstr "おすすめ商品" - -#: assets/js/admin/editor_plugin_lang.php:13 -msgid "Shop Messages" -msgstr "店舗メッセージ" - -#: assets/js/admin/editor_plugin_lang.php:14 -msgid "Pages" -msgstr "ページ" - -#: assets/js/admin/editor_plugin_lang.php:15 -#: classes/widgets/class-wc-widget-cart.php:61 -msgid "Cart" -msgstr "買い物カゴ" - -#: assets/js/admin/editor_plugin_lang.php:16 -msgid "Checkout" -msgstr "お支払い" - -#: assets/js/admin/editor_plugin_lang.php:17 -msgid "Order tracking" -msgstr "商品追跡" - -#: assets/js/admin/editor_plugin_lang.php:18 -#: templates/checkout/thankyou.php:30 -msgid "My Account" -msgstr "マイアカウント" - -#: assets/js/admin/editor_plugin_lang.php:19 -msgid "Edit Address" -msgstr "住所の編集" - -#: assets/js/admin/editor_plugin_lang.php:20 -msgid "Change Password" -msgstr "パスワード変更" - -#: assets/js/admin/editor_plugin_lang.php:21 woocommerce.php:1031 -#: woocommerce.php:1032 -msgid "View Order" -msgstr "注文を見る" - -#: assets/js/admin/editor_plugin_lang.php:22 -#: templates/checkout/thankyou.php:28 templates/myaccount/my-orders.php:71 -msgid "Pay" -msgstr "支払い(pay)" - -#: assets/js/admin/editor_plugin_lang.php:23 -msgid "Thankyou" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:421 -#: classes/emails/class-wc-email-customer-completed-order.php:135 -#: classes/emails/class-wc-email-customer-invoice.php:138 -#: classes/emails/class-wc-email-new-order.php:115 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:63 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:57 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:158 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:119 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:77 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:75 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:52 -msgid "Enable/Disable" -msgstr "有効化/無効化" - -#: classes/abstracts/abstract-wc-email.php:423 -#: classes/emails/class-wc-email-customer-completed-order.php:137 -#: classes/emails/class-wc-email-customer-invoice.php:140 -#: classes/emails/class-wc-email-new-order.php:117 -msgid "Enable this email notification" -msgstr "このEメール通知を有効にする" - -#: classes/abstracts/abstract-wc-email.php:427 -#: classes/emails/class-wc-email-customer-invoice.php:144 -msgid "Email subject" -msgstr "Eメールの件名" - -#: classes/abstracts/abstract-wc-email.php:429 -#: classes/abstracts/abstract-wc-email.php:436 -#: classes/emails/class-wc-email-customer-completed-order.php:143 -#: classes/emails/class-wc-email-customer-completed-order.php:150 -#: classes/emails/class-wc-email-customer-completed-order.php:157 -#: classes/emails/class-wc-email-customer-completed-order.php:164 -#: classes/emails/class-wc-email-customer-invoice.php:146 -#: classes/emails/class-wc-email-customer-invoice.php:153 -#: classes/emails/class-wc-email-customer-invoice.php:160 -#: classes/emails/class-wc-email-customer-invoice.php:167 -msgid "Defaults to %s" -msgstr "デフォルト: %s" - -#: classes/abstracts/abstract-wc-email.php:434 -#: classes/emails/class-wc-email-customer-invoice.php:151 -msgid "Email heading" -msgstr "Eメール heading" - -#: classes/abstracts/abstract-wc-email.php:441 -#: classes/emails/class-wc-email-customer-completed-order.php:169 -#: classes/emails/class-wc-email-customer-invoice.php:172 -#: classes/emails/class-wc-email-new-order.php:142 -msgid "Email type" -msgstr "Eメール タイプ" - -#: classes/abstracts/abstract-wc-email.php:443 -#: classes/emails/class-wc-email-customer-completed-order.php:171 -#: classes/emails/class-wc-email-customer-invoice.php:174 -#: classes/emails/class-wc-email-new-order.php:144 -msgid "Choose which format of email to send." -msgstr "メールで、どのフォーマットで送信するかを選択します" - -#: classes/abstracts/abstract-wc-email.php:447 -#: classes/emails/class-wc-email-customer-completed-order.php:175 -#: classes/emails/class-wc-email-customer-invoice.php:178 -#: classes/emails/class-wc-email-new-order.php:148 -msgid "Plain text" -msgstr "テキストメール" - -#: classes/abstracts/abstract-wc-email.php:448 -#: classes/emails/class-wc-email-customer-completed-order.php:176 -#: classes/emails/class-wc-email-customer-invoice.php:179 -#: classes/emails/class-wc-email-new-order.php:149 -msgid "HTML" -msgstr "HTMLメール" - -#: classes/abstracts/abstract-wc-email.php:449 -#: classes/emails/class-wc-email-customer-completed-order.php:177 -#: classes/emails/class-wc-email-customer-invoice.php:180 -#: classes/emails/class-wc-email-new-order.php:150 -msgid "Multipart" -msgstr "マルチパート" - -#: classes/abstracts/abstract-wc-email.php:485 -#: classes/abstracts/abstract-wc-email.php:506 -msgid "Could not write to template file." -msgstr "テンプレートファイルに書き込めませんでした" - -#: classes/abstracts/abstract-wc-email.php:533 -msgid "Template file copied to theme." -msgstr "テンプレートファイルをテーマにコピーしました" - -#: classes/abstracts/abstract-wc-email.php:542 -msgid "Template file deleted from theme." -msgstr "テンプレートファイルをテーマから削除しました" - -#: classes/abstracts/abstract-wc-email.php:550 -#: classes/abstracts/abstract-wc-integration.php:30 -#: classes/abstracts/abstract-wc-settings-api.php:39 -msgid "Settings" -msgstr "設定" - -#: classes/abstracts/abstract-wc-email.php:562 -msgid "HTML template" -msgstr "HTML テンプレート" - -#: classes/abstracts/abstract-wc-email.php:563 -msgid "Plain text template" -msgstr "テキストメールテンプレート" - -#: classes/abstracts/abstract-wc-email.php:582 -msgid "Delete template file" -msgstr "テンプレートファイルを削除します" - -#: classes/abstracts/abstract-wc-email.php:585 -msgid "" -"This template has been overridden by your theme and can be found in: " -"%s." -msgstr "" -"このテンプレートは、あなたのテーマに上書きされ、%s で見つけるこ" -"とができます。" - -#: classes/abstracts/abstract-wc-email.php:600 -msgid "Copy file to theme" -msgstr "テーマにファイルをコピー" - -#: classes/abstracts/abstract-wc-email.php:603 -msgid "" -"To override and edit this email template copy %s to your theme " -"folder: %s." -msgstr "" -"あなたのテーマフォルダに、Eメールテンプレートコピー%sを上書き、" -"編集する: %s." - -#: classes/abstracts/abstract-wc-email.php:614 -msgid "File was not found." -msgstr "ファイルが見つかりませんでした" - -#: classes/abstracts/abstract-wc-email.php:639 -msgid "View template" -msgstr "テンプレートを表示" - -#: classes/abstracts/abstract-wc-email.php:640 -msgid "Hide template" -msgstr "テンプレートを隠す" - -#: classes/abstracts/abstract-wc-email.php:651 -msgid "Are you sure you want to delete this template file?" -msgstr "このテンプレートファイルを削除してもよろしいですか?" - -#: classes/abstracts/abstract-wc-product.php:33 -msgid "" -"The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class " -"directly." -msgstr "" -"WC_Productクラスは、現在抽象的です。直接このクラスを呼び出す代わ" -"りに、商品の具体例を作成するためget_product()を使用します。" - -#: classes/abstracts/abstract-wc-product.php:545 -#: classes/abstracts/abstract-wc-product.php:550 -#: classes/abstracts/abstract-wc-product.php:569 -msgid "In stock" -msgstr "在庫あり" - -#: classes/abstracts/abstract-wc-product.php:550 -msgid "Only %s left in stock" -msgstr "在庫 %s 個" - -#: classes/abstracts/abstract-wc-product.php:553 -msgid "%s in stock" -msgstr "%s 個在庫あり" - -#: classes/abstracts/abstract-wc-product.php:560 -msgid "(backorders allowed)" -msgstr "(予約注文可能)" - -#: classes/abstracts/abstract-wc-product.php:566 -#: classes/abstracts/abstract-wc-product.php:579 templates/cart/cart.php:76 -msgid "Available on backorder" -msgstr "取り寄せの注文(予約注文など)が利用できます" - -#: classes/abstracts/abstract-wc-product.php:572 -#: classes/abstracts/abstract-wc-product.php:582 -#: classes/abstracts/abstract-wc-product.php:586 -msgid "Out of stock" -msgstr "在庫切れ" - -#: classes/abstracts/abstract-wc-product.php:849 -#: classes/abstracts/abstract-wc-product.php:855 -#: classes/class-wc-cart.php:1743 classes/class-wc-order.php:863 -#: classes/class-wc-product-variable.php:274 -#: classes/class-wc-product-variable.php:283 -#: classes/class-wc-product-variation.php:246 -msgid "Free!" -msgstr "無料" - -#: classes/abstracts/abstract-wc-product.php:873 -msgctxt "min_price" -msgid "From:" -msgstr "From:" - -#: classes/abstracts/abstract-wc-product.php:965 -#: templates/single-product-reviews.php:43 -msgid "Rated %s out of 5" -msgstr "5段階で %s の評価" - -#: classes/abstracts/abstract-wc-product.php:967 -#: templates/single-product/review.php:27 -#: templates/single-product-reviews.php:43 -msgid "out of 5" -msgstr "5点満点" - -#: classes/class-wc-cart.php:464 -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -" \"%s\" 個の在庫がございません(現在在庫数 %s)。カートを編集して、もう一度や" -"り直してください。ご迷惑をお掛け致します。" - -#: classes/class-wc-cart.php:483 classes/class-wc-cart.php:492 -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfil your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -" \"%s\" 個の在庫がございません(現在在庫数 %s)。カートを編集して、もう一度や" -"り直してください。ご迷惑をお掛け致します。" - -#: classes/class-wc-cart.php:527 -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfil your order right now. " -"Please try again in %d minutes or edit your cart and try again. We apologise " -"for any inconvenience caused." -msgstr "" -"ご注文の商品 \"%s\"個の在庫がございません。%d分後にもう一度お試し頂くか、カー" -"トを編集して、もう一度やり直してください。" - -#: classes/class-wc-cart.php:537 -msgid "" -"Sorry, \"%s\" is not in stock. Please edit your cart and try again. We " -"apologise for any inconvenience caused." -msgstr "" -"\"%s\"個の在庫がございません。カートを編集して、もう一度やり直してください。" - -#: classes/class-wc-cart.php:818 -msgid "Sorry, "%s" cannot be purchased." -msgstr ""%s" を購入することはできません。" - -#: classes/class-wc-cart.php:825 -msgid "" -"You cannot add "%s" to the cart because the product is out of " -"stock." -msgstr "" -"商品が在庫切れのため、カートに"%s"を追加することができません。" - -#: classes/class-wc-cart.php:830 -msgid "" -"You cannot add that amount of "%s" to the cart because there is " -"not enough stock (%s remaining)." -msgstr "" -"在庫不足の為、カートに"%s" を追加することができません(在庫数%s)。" - -#: classes/class-wc-cart.php:842 classes/class-wc-cart.php:856 -#: classes/class-wc-cart.php:864 templates/cart/mini-cart.php:68 -#: woocommerce-functions.php:470 woocommerce.php:1176 -msgid "View Cart →" -msgstr "カートを見る →" - -#: classes/class-wc-cart.php:842 -msgid "You already have this item in your cart." -msgstr "既にこの商品はカートの中に入っています" - -#: classes/class-wc-cart.php:856 classes/class-wc-cart.php:864 -msgid "" -"%s You cannot add that amount to the " -"cart — we have %s in stock and you already have %s in your cart." -msgstr "" -"%s ショッピングカートにその商品を追加する" -"ことはできません - 当店在庫が %s 個、お客様のカートには %s 個が入っています。" - -#: classes/class-wc-cart.php:1755 -msgid "via" -msgstr "-" - -#: classes/class-wc-checkout.php:64 -msgid "Account username" -msgstr "アカウントのユーザー名" - -#: classes/class-wc-checkout.php:65 -msgctxt "placeholder" -msgid "Username" -msgstr "ユーザー名" - -#: classes/class-wc-checkout.php:72 classes/class-wc-checkout.php:79 -msgid "Account password" -msgstr "アカウントのパスワード" - -#: classes/class-wc-checkout.php:73 classes/class-wc-checkout.php:80 -msgctxt "placeholder" -msgid "Password" -msgstr "パスワード" - -#: classes/class-wc-checkout.php:89 -msgid "Order Notes" -msgstr "備考欄" - -#: classes/class-wc-checkout.php:90 -msgctxt "placeholder" -msgid "Notes about your order, e.g. special notes for delivery." -msgstr "メッセージ等があればご記入下さい" - -#: classes/class-wc-checkout.php:152 -msgid "Order – %s" -msgstr "ご注文 – %s" - -#: classes/class-wc-checkout.php:152 -msgctxt "Order date parsed by strftime" -msgid "%b %d, %Y @ %I:%M %p" -msgstr "%Y年 %b月 %d日 @ %I:%M %p" - -#: classes/class-wc-checkout.php:276 -msgid "Backordered" -msgstr "入荷待ち" - -#: classes/class-wc-checkout.php:386 -msgid "" -"Sorry, your session has expired. Return to homepage →" -msgstr "" -"セッションが期限切れになっています。 HOMEに戻る →" - -#: classes/class-wc-checkout.php:438 woocommerce-functions.php:1632 -msgid "is a required field." -msgstr "必須フィールドです" - -#: classes/class-wc-checkout.php:451 -msgid "(%s) is not a valid postcode/ZIP." -msgstr "(%s) が有効な郵便番号ではありません" - -#: classes/class-wc-checkout.php:472 -msgid "is not valid. Please enter one of the following:" -msgstr "有効ではありません。次のいずれかを入力して下さい" - -#: classes/class-wc-checkout.php:480 -msgid "is not a valid number." -msgstr "有効な数値ではありません" - -#: classes/class-wc-checkout.php:487 -msgid "is not a valid email address." -msgstr "有効なEメールアドレスではありません" - -#: classes/class-wc-checkout.php:543 -msgid "Please enter an account username." -msgstr "アカウントユーザ名を入力してください" - -#: classes/class-wc-checkout.php:547 -msgid "Invalid email/username." -msgstr "無効なEメールアドレスがユーザ名です" - -#: classes/class-wc-checkout.php:550 -msgid "" -"An account is already registered with that username. Please choose another." -msgstr "" -"そのアカウントユーザ名はすでに登録されています。別のユーザー名にして下さい。" - -#: classes/class-wc-checkout.php:560 -msgid "Please enter an account password." -msgstr "アカウントパスワードを入力してください" - -#: classes/class-wc-checkout.php:563 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:85 -#: woocommerce-functions.php:731 woocommerce-functions.php:1562 -msgid "Passwords do not match." -msgstr "パスワードが一致しません" - -#: classes/class-wc-checkout.php:567 -msgid "An account is already registered with your email address. Please login." -msgstr "" -"すでにあなたのEメールアドレスでアカウント登録されています。ログインしてくださ" -"い。" - -#: classes/class-wc-checkout.php:573 -msgid "You must accept our Terms & Conditions." -msgstr "利用規約に同意する必要があります" - -#: classes/class-wc-checkout.php:582 -msgid "Invalid shipping method." -msgstr "無効な配送方法です" - -#: classes/class-wc-checkout.php:595 -msgid "Invalid payment method." -msgstr "無効な支払方法です" - -#: classes/class-wc-checkout.php:635 woocommerce-core-functions.php:2485 -#: woocommerce-core-functions.php:2488 woocommerce-functions.php:703 -#: woocommerce-functions.php:705 woocommerce-functions.php:708 -#: woocommerce-functions.php:720 woocommerce-functions.php:722 -#: woocommerce-functions.php:725 woocommerce-functions.php:759 -msgid "ERROR" -msgstr "エラー" - -#: classes/class-wc-checkout.php:635 woocommerce-functions.php:759 -msgid "" -"Couldn’t register you… please contact us if you continue to " -"have problems." -msgstr "登録できませんでした...問題が解決しない場合は、お問い合わせください" - -#: classes/class-wc-countries.php:37 -msgid "Afghanistan" -msgstr "アフガニスタン" - -#: classes/class-wc-countries.php:38 -msgid "Åland Islands" -msgstr "オーランド諸島" - -#: classes/class-wc-countries.php:39 -msgid "Albania" -msgstr "アルバニア" - -#: classes/class-wc-countries.php:40 -msgid "Algeria" -msgstr "アルジェリア" - -#: classes/class-wc-countries.php:41 -msgid "Andorra" -msgstr "アンドラ" - -#: classes/class-wc-countries.php:42 -msgid "Angola" -msgstr "アンゴラ" - -#: classes/class-wc-countries.php:43 -msgid "Anguilla" -msgstr "アングィラ" - -#: classes/class-wc-countries.php:44 -msgid "Antarctica" -msgstr "南極大陸" - -#: classes/class-wc-countries.php:45 -msgid "Antigua and Barbuda" -msgstr "アンチグアバーブーダ" - -#: classes/class-wc-countries.php:46 -msgid "Argentina" -msgstr "アルゼンチン" - -#: classes/class-wc-countries.php:47 -msgid "Armenia" -msgstr "アルメニア" - -#: classes/class-wc-countries.php:48 -msgid "Aruba" -msgstr "アルバ" - -#: classes/class-wc-countries.php:49 -msgid "Australia" -msgstr "オーストラリア" - -#: classes/class-wc-countries.php:50 -msgid "Austria" -msgstr "オーストリア" - -#: classes/class-wc-countries.php:51 -msgid "Azerbaijan" -msgstr "アゼルバイジャン" - -#: classes/class-wc-countries.php:52 -msgid "Bahamas" -msgstr "バハマ" - -#: classes/class-wc-countries.php:53 -msgid "Bahrain" -msgstr "バーレーン" - -#: classes/class-wc-countries.php:54 -msgid "Bangladesh" -msgstr "バングラデシュ" - -#: classes/class-wc-countries.php:55 -msgid "Barbados" -msgstr "バルバドス" - -#: classes/class-wc-countries.php:56 -msgid "Belarus" -msgstr "ベラルーシ" - -#: classes/class-wc-countries.php:57 -msgid "Belgium" -msgstr "ベルギー" - -#: classes/class-wc-countries.php:58 -msgid "Belau" -msgstr "ベラウ" - -#: classes/class-wc-countries.php:59 -msgid "Belize" -msgstr "ベリーズ" - -#: classes/class-wc-countries.php:60 -msgid "Benin" -msgstr "ベナン" - -#: classes/class-wc-countries.php:61 -msgid "Bermuda" -msgstr "バミューダ" - -#: classes/class-wc-countries.php:62 -msgid "Bhutan" -msgstr "ブータン" - -#: classes/class-wc-countries.php:63 -msgid "Bolivia" -msgstr "ボリビア" - -#: classes/class-wc-countries.php:64 -msgid "Bonaire, Saint Eustatius and Saba" -msgstr "ボネール島、セントユースタティウスとサバ" - -#: classes/class-wc-countries.php:65 -msgid "Bosnia and Herzegovina" -msgstr "ボスニア・ヘルツェゴビ" - -#: classes/class-wc-countries.php:66 -msgid "Botswana" -msgstr "ボツワナ" - -#: classes/class-wc-countries.php:67 -msgid "Bouvet Island" -msgstr "ブーベ島" - -#: classes/class-wc-countries.php:68 -msgid "Brazil" -msgstr "ブラジル" - -#: classes/class-wc-countries.php:69 -msgid "British Indian Ocean Territory" -msgstr "イギリス領インド洋地域" - -#: classes/class-wc-countries.php:70 -msgid "British Virgin Islands" -msgstr "英領ヴァージン諸島" - -#: classes/class-wc-countries.php:71 -msgid "Brunei" -msgstr "ブルネイ" - -#: classes/class-wc-countries.php:72 -msgid "Bulgaria" -msgstr "ブルガリア" - -#: classes/class-wc-countries.php:73 -msgid "Burkina Faso" -msgstr "ブルキナファソ" - -#: classes/class-wc-countries.php:74 -msgid "Burundi" -msgstr "ブルンジ" - -#: classes/class-wc-countries.php:75 -msgid "Cambodia" -msgstr "カンボジア" - -#: classes/class-wc-countries.php:76 -msgid "Cameroon" -msgstr "カメルーン" - -#: classes/class-wc-countries.php:77 -msgid "Canada" -msgstr "カナダ" - -#: classes/class-wc-countries.php:78 -msgid "Cape Verde" -msgstr "カーボヴェルデ" - -#: classes/class-wc-countries.php:79 -msgid "Cayman Islands" -msgstr "ケイマン諸島" - -#: classes/class-wc-countries.php:80 -msgid "Central African Republic" -msgstr "中央アフリカ共和国" - -#: classes/class-wc-countries.php:81 -msgid "Chad" -msgstr "チャド" - -#: classes/class-wc-countries.php:82 -msgid "Chile" -msgstr "チリ" - -#: classes/class-wc-countries.php:83 -msgid "China" -msgstr "中国" - -#: classes/class-wc-countries.php:84 -msgid "Christmas Island" -msgstr "クリスマス島" - -#: classes/class-wc-countries.php:85 -msgid "Cocos (Keeling) Islands" -msgstr "ココス(キーリング)諸島" - -#: classes/class-wc-countries.php:86 -msgid "Colombia" -msgstr "コロンビア" - -#: classes/class-wc-countries.php:87 -msgid "Comoros" -msgstr "コモロ" - -#: classes/class-wc-countries.php:88 -msgid "Congo (Brazzaville)" -msgstr "コンゴ(ブラザビル)" - -#: classes/class-wc-countries.php:89 -msgid "Congo (Kinshasa)" -msgstr "コンゴ(キンシャサ)" - -#: classes/class-wc-countries.php:90 -msgid "Cook Islands" -msgstr "クック諸島" - -#: classes/class-wc-countries.php:91 -msgid "Costa Rica" -msgstr "コスタリカ" - -#: classes/class-wc-countries.php:92 -msgid "Croatia" -msgstr "クロアチア" - -#: classes/class-wc-countries.php:93 -msgid "Cuba" -msgstr "キューバ" - -#: classes/class-wc-countries.php:94 -msgid "CuraÇao" -msgstr "キュラソー島" - -#: classes/class-wc-countries.php:95 -msgid "Cyprus" -msgstr "キプロス" - -#: classes/class-wc-countries.php:96 -msgid "Czech Republic" -msgstr "チェコ共和国" - -#: classes/class-wc-countries.php:97 -msgid "Denmark" -msgstr "デンマーク" - -#: classes/class-wc-countries.php:98 -msgid "Djibouti" -msgstr "ジブチ" - -#: classes/class-wc-countries.php:99 -msgid "Dominica" -msgstr "ドミニカ" - -#: classes/class-wc-countries.php:100 -msgid "Dominican Republic" -msgstr "ドミニカ共和国" - -#: classes/class-wc-countries.php:101 -msgid "Ecuador" -msgstr "エクアドル" - -#: classes/class-wc-countries.php:102 -msgid "Egypt" -msgstr "エジプト" - -#: classes/class-wc-countries.php:103 -msgid "El Salvador" -msgstr "エルサルバドル" - -#: classes/class-wc-countries.php:104 -msgid "Equatorial Guinea" -msgstr "赤道ギニア共和国" - -#: classes/class-wc-countries.php:105 -msgid "Eritrea" -msgstr "エリトリア" - -#: classes/class-wc-countries.php:106 -msgid "Estonia" -msgstr "エストニア" - -#: classes/class-wc-countries.php:107 -msgid "Ethiopia" -msgstr "エチオピア" - -#: classes/class-wc-countries.php:108 -msgid "Falkland Islands" -msgstr "フォークランド諸島" - -#: classes/class-wc-countries.php:109 -msgid "Faroe Islands" -msgstr "フェロー諸島" - -#: classes/class-wc-countries.php:110 -msgid "Fiji" -msgstr "フィジー" - -#: classes/class-wc-countries.php:111 -msgid "Finland" -msgstr "フィンランド" - -#: classes/class-wc-countries.php:112 -msgid "France" -msgstr "フランス" - -#: classes/class-wc-countries.php:113 -msgid "French Guiana" -msgstr "仏領ギアナ" - -#: classes/class-wc-countries.php:114 -msgid "French Polynesia" -msgstr "フランス領ポリネシア" - -#: classes/class-wc-countries.php:115 -msgid "French Southern Territories" -msgstr "フランス南部領" - -#: classes/class-wc-countries.php:116 -msgid "Gabon" -msgstr "ガボン" - -#: classes/class-wc-countries.php:117 -msgid "Gambia" -msgstr "ガンビア" - -#: classes/class-wc-countries.php:118 i18n/states/US.php:23 -msgid "Georgia" -msgstr "ジョージア" - -#: classes/class-wc-countries.php:119 -msgid "Germany" -msgstr "ドイツ" - -#: classes/class-wc-countries.php:120 -msgid "Ghana" -msgstr "ガーナ" - -#: classes/class-wc-countries.php:121 -msgid "Gibraltar" -msgstr "ジブラルタル" - -#: classes/class-wc-countries.php:122 -msgid "Greece" -msgstr "ギリシャ" - -#: classes/class-wc-countries.php:123 -msgid "Greenland" -msgstr "グリーンランド" - -#: classes/class-wc-countries.php:124 -msgid "Grenada" -msgstr "グレナダ" - -#: classes/class-wc-countries.php:125 -msgid "Guadeloupe" -msgstr "グアドループ島" - -#: classes/class-wc-countries.php:126 -msgid "Guatemala" -msgstr "グアテマラ" - -#: classes/class-wc-countries.php:127 -msgid "Guernsey" -msgstr "ガーンジー" - -#: classes/class-wc-countries.php:128 -msgid "Guinea" -msgstr "ギニア" - -#: classes/class-wc-countries.php:129 -msgid "Guinea-Bissau" -msgstr "ギニアビサウ" - -#: classes/class-wc-countries.php:130 -msgid "Guyana" -msgstr "ガイアナ" - -#: classes/class-wc-countries.php:131 -msgid "Haiti" -msgstr "ハイチ" - -#: classes/class-wc-countries.php:132 -msgid "Heard Island and McDonald Islands" -msgstr "ハード島とマクドナルド諸島" - -#: classes/class-wc-countries.php:133 -msgid "Honduras" -msgstr "ホンジュラス" - -#: classes/class-wc-countries.php:134 -msgid "Hong Kong" -msgstr "香港" - -#: classes/class-wc-countries.php:135 -msgid "Hungary" -msgstr "ハンガリー" - -#: classes/class-wc-countries.php:136 -msgid "Iceland" -msgstr "アイスランド" - -#: classes/class-wc-countries.php:137 -msgid "India" -msgstr "インド" - -#: classes/class-wc-countries.php:138 -msgid "Indonesia" -msgstr "インドネシア" - -#: classes/class-wc-countries.php:139 -msgid "Iran" -msgstr "イラン" - -#: classes/class-wc-countries.php:140 -msgid "Iraq" -msgstr "イラク" - -#: classes/class-wc-countries.php:141 -msgid "Republic of Ireland" -msgstr "アイルランド" - -#: classes/class-wc-countries.php:142 -msgid "Isle of Man" -msgstr "マン島" - -#: classes/class-wc-countries.php:143 -msgid "Israel" -msgstr "イスラエル" - -#: classes/class-wc-countries.php:144 -msgid "Italy" -msgstr "イタリア" - -#: classes/class-wc-countries.php:145 -msgid "Ivory Coast" -msgstr "コートジボアール" - -#: classes/class-wc-countries.php:146 -msgid "Jamaica" -msgstr "ジャマイカ" - -#: classes/class-wc-countries.php:147 -msgid "Japan" -msgstr "日本" - -#: classes/class-wc-countries.php:148 -msgid "Jersey" -msgstr "ジャージー" - -#: classes/class-wc-countries.php:149 -msgid "Jordan" -msgstr "ヨルダン" - -#: classes/class-wc-countries.php:150 -msgid "Kazakhstan" -msgstr "カザフスタン" - -#: classes/class-wc-countries.php:151 -msgid "Kenya" -msgstr "ケニア" - -#: classes/class-wc-countries.php:152 -msgid "Kiribati" -msgstr "キリバス" - -#: classes/class-wc-countries.php:153 -msgid "Kuwait" -msgstr "クウェート" - -#: classes/class-wc-countries.php:154 -msgid "Kyrgyzstan" -msgstr "キルギスタン" - -#: classes/class-wc-countries.php:155 -msgid "Laos" -msgstr "ラオス" - -#: classes/class-wc-countries.php:156 -msgid "Latvia" -msgstr "ラトビア" - -#: classes/class-wc-countries.php:157 -msgid "Lebanon" -msgstr "レバノン" - -#: classes/class-wc-countries.php:158 -msgid "Lesotho" -msgstr "レソト" - -#: classes/class-wc-countries.php:159 -msgid "Liberia" -msgstr "リベリア" - -#: classes/class-wc-countries.php:160 -msgid "Libya" -msgstr "リビア" - -#: classes/class-wc-countries.php:161 -msgid "Liechtenstein" -msgstr "リヒテンシュタイン" - -#: classes/class-wc-countries.php:162 -msgid "Lithuania" -msgstr "リトアニア" - -#: classes/class-wc-countries.php:163 -msgid "Luxembourg" -msgstr "ルクセンブルク" - -#: classes/class-wc-countries.php:164 -msgid "Macao S.A.R., China" -msgstr "マカオ" - -#: classes/class-wc-countries.php:165 -msgid "Macedonia" -msgstr "マケドニア" - -#: classes/class-wc-countries.php:166 -msgid "Madagascar" -msgstr "マダガスカル" - -#: classes/class-wc-countries.php:167 -msgid "Malawi" -msgstr "マラウイ" - -#: classes/class-wc-countries.php:168 -msgid "Malaysia" -msgstr "マレーシア" - -#: classes/class-wc-countries.php:169 -msgid "Maldives" -msgstr "モルディブ" - -#: classes/class-wc-countries.php:170 -msgid "Mali" -msgstr "マリ" - -#: classes/class-wc-countries.php:171 -msgid "Malta" -msgstr "マルタ" - -#: classes/class-wc-countries.php:172 -msgid "Marshall Islands" -msgstr "マーシャル諸島" - -#: classes/class-wc-countries.php:173 -msgid "Martinique" -msgstr "マルティニーク島" - -#: classes/class-wc-countries.php:174 -msgid "Mauritania" -msgstr "モーリタニア" - -#: classes/class-wc-countries.php:175 -msgid "Mauritius" -msgstr "モーリシャス" - -#: classes/class-wc-countries.php:176 -msgid "Mayotte" -msgstr "マヨット島" - -#: classes/class-wc-countries.php:177 -msgid "Mexico" -msgstr "メキシコ" - -#: classes/class-wc-countries.php:178 -msgid "Micronesia" -msgstr "ミクロネシア" - -#: classes/class-wc-countries.php:179 -msgid "Moldova" -msgstr "モルドバ" - -#: classes/class-wc-countries.php:180 -msgid "Monaco" -msgstr "モナコ" - -#: classes/class-wc-countries.php:181 -msgid "Mongolia" -msgstr "モンゴル" - -#: classes/class-wc-countries.php:182 -msgid "Montenegro" -msgstr "モンテネグロ" - -#: classes/class-wc-countries.php:183 -msgid "Montserrat" -msgstr "モントセラト" - -#: classes/class-wc-countries.php:184 -msgid "Morocco" -msgstr "モロッコ" - -#: classes/class-wc-countries.php:185 -msgid "Mozambique" -msgstr "モザンビーク" - -#: classes/class-wc-countries.php:186 -msgid "Myanmar" -msgstr "ミャンマー" - -#: classes/class-wc-countries.php:187 -msgid "Namibia" -msgstr "ナミビア" - -#: classes/class-wc-countries.php:188 -msgid "Nauru" -msgstr "ナウル" - -#: classes/class-wc-countries.php:189 -msgid "Nepal" -msgstr "ネパール" - -#: classes/class-wc-countries.php:190 -msgid "Netherlands" -msgstr "オランダ" - -#: classes/class-wc-countries.php:191 -msgid "Netherlands Antilles" -msgstr "オランダ領アンティル" - -#: classes/class-wc-countries.php:192 -msgid "New Caledonia" -msgstr "ニューカレドニア" - -#: classes/class-wc-countries.php:193 -msgid "New Zealand" -msgstr "ニュージーランド" - -#: classes/class-wc-countries.php:194 -msgid "Nicaragua" -msgstr "ニカラグア" - -#: classes/class-wc-countries.php:195 -msgid "Niger" -msgstr "ニジェール" - -#: classes/class-wc-countries.php:196 -msgid "Nigeria" -msgstr "ナイジェリア" - -#: classes/class-wc-countries.php:197 -msgid "Niue" -msgstr "ニウエ" - -#: classes/class-wc-countries.php:198 -msgid "Norfolk Island" -msgstr "ノーフォーク島" - -#: classes/class-wc-countries.php:199 -msgid "North Korea" -msgstr "北朝鮮" - -#: classes/class-wc-countries.php:200 -msgid "Norway" -msgstr "ノルウェー" - -#: classes/class-wc-countries.php:201 -msgid "Oman" -msgstr "オマーン" - -#: classes/class-wc-countries.php:202 -msgid "Pakistan" -msgstr "パキスタン" - -#: classes/class-wc-countries.php:203 -msgid "Palestinian Territory" -msgstr "パレスチナ自治区" - -#: classes/class-wc-countries.php:204 -msgid "Panama" -msgstr "パナマ" - -#: classes/class-wc-countries.php:205 -msgid "Papua New Guinea" -msgstr "パプアニューギニア" - -#: classes/class-wc-countries.php:206 -msgid "Paraguay" -msgstr "パラグアイ" - -#: classes/class-wc-countries.php:207 -msgid "Peru" -msgstr "ペルー" - -#: classes/class-wc-countries.php:208 -msgid "Philippines" -msgstr "フィリピン" - -#: classes/class-wc-countries.php:209 -msgid "Pitcairn" -msgstr "ピトケアン" - -#: classes/class-wc-countries.php:210 -msgid "Poland" -msgstr "ポーランド" - -#: classes/class-wc-countries.php:211 -msgid "Portugal" -msgstr "ポルトガル" - -#: classes/class-wc-countries.php:212 -msgid "Qatar" -msgstr "カタール" - -#: classes/class-wc-countries.php:213 -msgid "Reunion" -msgstr "レユニオン" - -#: classes/class-wc-countries.php:214 -msgid "Romania" -msgstr "ルーマニア" - -#: classes/class-wc-countries.php:215 -msgid "Russia" -msgstr "ロシア" - -#: classes/class-wc-countries.php:216 -msgid "Rwanda" -msgstr "ルワンダ" - -#: classes/class-wc-countries.php:217 -msgid "Saint Barthélemy" -msgstr "セントバーツ" - -#: classes/class-wc-countries.php:218 -msgid "Saint Helena" -msgstr "セント・ヘレナ島" - -#: classes/class-wc-countries.php:219 -msgid "Saint Kitts and Nevis" -msgstr "セントクリストファーネイビ" - -#: classes/class-wc-countries.php:220 -msgid "Saint Lucia" -msgstr "セントルシア" - -#: classes/class-wc-countries.php:221 -msgid "Saint Martin (French part)" -msgstr "セント・マーチン島(フランスの部分)" - -#: classes/class-wc-countries.php:222 -msgid "Saint Martin (Dutch part)" -msgstr "セント・マーチン島(オランダの部分)" - -#: classes/class-wc-countries.php:223 -msgid "Saint Pierre and Miquelon" -msgstr "サンピエール・ミクロン島" - -#: classes/class-wc-countries.php:224 -msgid "Saint Vincent and the Grenadines" -msgstr "セントビンセントおよびグレナディーン諸島" - -#: classes/class-wc-countries.php:225 -msgid "Samoa" -msgstr "サモア" - -#: classes/class-wc-countries.php:226 -msgid "San Marino" -msgstr "サン・マリノ" - -#: classes/class-wc-countries.php:227 -msgid "São Tomé and Príncipe" -msgstr "サントメプリンシペ" - -#: classes/class-wc-countries.php:228 -msgid "Saudi Arabia" -msgstr "サウジアラビア" - -#: classes/class-wc-countries.php:229 -msgid "Senegal" -msgstr "セネガル" - -#: classes/class-wc-countries.php:230 -msgid "Serbia" -msgstr "セルビア" - -#: classes/class-wc-countries.php:231 -msgid "Seychelles" -msgstr "セイシェル" - -#: classes/class-wc-countries.php:232 -msgid "Sierra Leone" -msgstr "シエラレオネ" - -#: classes/class-wc-countries.php:233 -msgid "Singapore" -msgstr "シンガポール" - -#: classes/class-wc-countries.php:234 -msgid "Slovakia" -msgstr "スロバキア" - -#: classes/class-wc-countries.php:235 -msgid "Slovenia" -msgstr "スロベニア" - -#: classes/class-wc-countries.php:236 -msgid "Solomon Islands" -msgstr "ソロモン諸島" - -#: classes/class-wc-countries.php:237 -msgid "Somalia" -msgstr "ソマリア" - -#: classes/class-wc-countries.php:238 -msgid "South Africa" -msgstr "南アフリカ" - -#: classes/class-wc-countries.php:239 -msgid "South Georgia/Sandwich Islands" -msgstr "サウスジョージア/サンドイッチ諸島" - -#: classes/class-wc-countries.php:240 -msgid "South Korea" -msgstr "韓国" - -#: classes/class-wc-countries.php:241 -msgid "South Sudan" -msgstr "南スーダン" - -#: classes/class-wc-countries.php:242 -msgid "Spain" -msgstr "スペイン" - -#: classes/class-wc-countries.php:243 -msgid "Sri Lanka" -msgstr "スリランカ" - -#: classes/class-wc-countries.php:244 -msgid "Sudan" -msgstr "スーダン" - -#: classes/class-wc-countries.php:245 -msgid "Suriname" -msgstr "スリナム" - -#: classes/class-wc-countries.php:246 -msgid "Svalbard and Jan Mayen" -msgstr "スバールバル諸島ヤンマイエン島" - -#: classes/class-wc-countries.php:247 -msgid "Swaziland" -msgstr "スワジランド\"" - -#: classes/class-wc-countries.php:248 -msgid "Sweden" -msgstr "スウェーデン" - -#: classes/class-wc-countries.php:249 -msgid "Switzerland" -msgstr "スイス" - -#: classes/class-wc-countries.php:250 -msgid "Syria" -msgstr "シリア" - -#: classes/class-wc-countries.php:251 -msgid "Taiwan" -msgstr "台湾" - -#: classes/class-wc-countries.php:252 -msgid "Tajikistan" -msgstr "タジキスタン" - -#: classes/class-wc-countries.php:253 -msgid "Tanzania" -msgstr "タンザニア" - -#: classes/class-wc-countries.php:254 -msgid "Thailand" -msgstr "タイ" - -#: classes/class-wc-countries.php:255 -msgid "Timor-Leste" -msgstr "東ティモール" - -#: classes/class-wc-countries.php:256 -msgid "Togo" -msgstr "トーゴ" - -#: classes/class-wc-countries.php:257 -msgid "Tokelau" -msgstr "トケラウ" - -#: classes/class-wc-countries.php:258 -msgid "Tonga" -msgstr "トンガ" - -#: classes/class-wc-countries.php:259 -msgid "Trinidad and Tobago" -msgstr "トリニダード・トバゴ" - -#: classes/class-wc-countries.php:260 -msgid "Tunisia" -msgstr "チュニジア" - -#: classes/class-wc-countries.php:261 -msgid "Turkey" -msgstr "トルコ" - -#: classes/class-wc-countries.php:262 -msgid "Turkmenistan" -msgstr "トルクメニスタン" - -#: classes/class-wc-countries.php:263 -msgid "Turks and Caicos Islands" -msgstr "タークスカイコス諸島" - -#: classes/class-wc-countries.php:264 -msgid "Tuvalu" -msgstr "ツバル" - -#: classes/class-wc-countries.php:265 -msgid "Uganda" -msgstr "ウガンダ" - -#: classes/class-wc-countries.php:266 -msgid "Ukraine" -msgstr "ウクライナ" - -#: classes/class-wc-countries.php:267 -msgid "United Arab Emirates" -msgstr "アラブ首長国連邦" - -#: classes/class-wc-countries.php:268 -msgid "United Kingdom" -msgstr "イギリス" - -#: classes/class-wc-countries.php:269 -msgid "United States" -msgstr "アメリカ合衆国" - -#: classes/class-wc-countries.php:270 -msgid "Uruguay" -msgstr "ウルグアイ" - -#: classes/class-wc-countries.php:271 -msgid "Uzbekistan" -msgstr "ウズベキスタン" - -#: classes/class-wc-countries.php:272 -msgid "Vanuatu" -msgstr "バヌアツ" - -#: classes/class-wc-countries.php:273 -msgid "Vatican" -msgstr "バチカン" - -#: classes/class-wc-countries.php:274 -msgid "Venezuela" -msgstr "ベネズエラ" - -#: classes/class-wc-countries.php:275 -msgid "Vietnam" -msgstr "ベトナム" - -#: classes/class-wc-countries.php:276 -msgid "Wallis and Futuna" -msgstr "ワリー・エ・フトゥーナ" - -#: classes/class-wc-countries.php:277 -msgid "Western Sahara" -msgstr "西サハラ" - -#: classes/class-wc-countries.php:278 -msgid "Yemen" -msgstr "イエメン" - -#: classes/class-wc-countries.php:279 -msgid "Zambia" -msgstr "ザンビア" - -#: classes/class-wc-countries.php:280 -msgid "Zimbabwe" -msgstr "ジンバブエ" - -#: classes/class-wc-countries.php:418 -msgid "to the" -msgstr "to the" - -#: classes/class-wc-countries.php:419 -msgid "to" -msgstr "to" - -#: classes/class-wc-countries.php:432 -msgid "the" -msgstr "the" - -#: classes/class-wc-countries.php:444 -msgid "VAT" -msgstr "付加価値税(VAT)" - -#: classes/class-wc-countries.php:444 templates/cart/totals.php:110 -#: templates/checkout/review-order.php:113 -msgid "Tax" -msgstr "税" - -#: classes/class-wc-countries.php:457 -msgid "(incl. VAT)" -msgstr "(税込/VAT)" - -#: classes/class-wc-countries.php:457 -msgid "(incl. tax)" -msgstr "(税込/tax)" - -#: classes/class-wc-countries.php:470 -msgid "(ex. VAT)" -msgstr "(例:付加価値税)" - -#: classes/class-wc-countries.php:470 -msgid "(ex. tax)" -msgstr "(例:税)" - -#: classes/class-wc-countries.php:694 classes/class-wc-countries.php:704 -#: classes/class-wc-countries.php:724 classes/class-wc-countries.php:779 -#: classes/class-wc-countries.php:803 classes/class-wc-countries.php:848 -#: classes/class-wc-countries.php:872 -msgid "Province" -msgstr "都道府県" - -#: classes/class-wc-countries.php:710 -msgid "Canton" -msgstr "広東" - -#: classes/class-wc-countries.php:719 classes/class-wc-countries.php:854 -msgid "Municipality" -msgstr "自治体" - -#: classes/class-wc-countries.php:766 -msgid "Town / District" -msgstr "町/地区" - -#: classes/class-wc-countries.php:769 -msgid "Region" -msgstr "地域" - -#: classes/class-wc-countries.php:877 -msgid "Zip" -msgstr "郵便番号" - -#: classes/class-wc-countries.php:880 -msgid "State" -msgstr "都道府県" - -#: classes/class-wc-countries.php:885 -#: templates/cart/shipping-calculator.php:68 -msgid "Postcode" -msgstr "郵便番号" - -#: classes/class-wc-countries.php:888 -msgid "County" -msgstr "都道府県" - -#: classes/class-wc-countries.php:920 classes/class-wc-countries.php:921 -#: classes/class-wc-countries.php:996 -#: templates/cart/shipping-calculator.php:68 -msgid "Postcode / Zip" -msgstr "郵便番号" - -#: classes/class-wc-countries.php:925 classes/class-wc-countries.php:926 -#: classes/class-wc-countries.php:985 -msgid "Town / City" -msgstr "市 / 町\"" - -#: classes/class-wc-countries.php:930 classes/class-wc-countries.php:931 -#: classes/class-wc-countries.php:991 -msgid "State / County" -msgstr "都道府県" - -#: classes/class-wc-countries.php:955 -msgid "Country" -msgstr "国" - -#: classes/class-wc-countries.php:960 -msgid "First Name" -msgstr "姓" - -#: classes/class-wc-countries.php:965 -msgid "Last Name" -msgstr "名" - -#: classes/class-wc-countries.php:971 -msgid "Company Name" -msgstr "会社名" - -#: classes/class-wc-countries.php:975 -msgid "Address" -msgstr "住所" - -#: classes/class-wc-countries.php:976 -msgctxt "placeholder" -msgid "Street address" -msgstr "丁目、番地、号" - -#: classes/class-wc-countries.php:981 -msgctxt "placeholder" -msgid "Apartment, suite, unit etc. (optional)" -msgstr "建物名,部屋番号など (必要な方のみ)" - -#: classes/class-wc-countries.php:1038 -msgid "Email Address" -msgstr "Eメールアドレス" - -#: classes/class-wc-countries.php:1044 -msgid "Phone" -msgstr "電話" - -#: classes/class-wc-coupon.php:420 -msgid "Coupon code applied successfully." -msgstr "クーポンコードの適用に成功しました。" - -#: classes/class-wc-coupon.php:441 -msgid "Coupon is not valid." -msgstr "クーポンが有効ではありません" - -#: classes/class-wc-coupon.php:444 classes/class-wc-coupon.php:494 -msgid "Coupon does not exist!" -msgstr "クーポンは存在しません" - -#: classes/class-wc-coupon.php:447 -msgid "" -"Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from " -"your order." -msgstr "クーポン \"%s\" は無効と思われます。- 注文から削除されました" - -#: classes/class-wc-coupon.php:450 -msgid "" -"Sorry, it seems the coupon \"%s\" is not yours - it has now been removed " -"from your order." -msgstr "" -"クーポン \"%s\" はご自身のものではないと思われます。- 注文から削除されました" - -#: classes/class-wc-coupon.php:453 -msgid "Coupon code already applied!" -msgstr "クーポンコードは、既に適用されました。" - -#: classes/class-wc-coupon.php:456 -msgid "" -"Sorry, coupon \"%s\" has already been applied and cannot be used in " -"conjunction with other coupons." -msgstr "" -"クーポン \"%s\" はすでに適用されており、他のクーポンとの併用はできません。" - -#: classes/class-wc-coupon.php:459 -msgid "Coupon usage limit has been reached." -msgstr "クーポンの使用量が制限値に達しました。" - -#: classes/class-wc-coupon.php:462 -msgid "This coupon has expired." -msgstr "このクーポンは有効期限が切れています。" - -#: classes/class-wc-coupon.php:465 -msgid "The minimum spend for this coupon is %s." -msgstr "このクーポンを使用できる最小限度額は %s です" - -#: classes/class-wc-coupon.php:468 -msgid "Sorry, this coupon is not applicable to your cart contents." -msgstr "このクーポンは今のカート内容には適用されません。" - -#: classes/class-wc-coupon.php:471 -msgid "Sorry, this coupon is not valid for sale items." -msgstr "このクーポンは販売商品には有効ではありません。" - -#: classes/class-wc-coupon.php:497 -msgid "Please enter a coupon code." -msgstr "クーポンコードを入力して下さい" - -#: classes/class-wc-customer.php:628 classes/class-wc-customer.php:638 -msgid "File %d" -msgstr "ファイル %d" - -#: classes/class-wc-emails.php:246 -msgid "Note" -msgstr "Note" - -#: classes/class-wc-emails.php:281 -msgid "Product low in stock" -msgstr "在庫が少ない商品" - -#: classes/class-wc-emails.php:286 classes/class-wc-emails.php:318 -#: classes/class-wc-emails.php:362 -msgid "Variation #%s of %s" -msgstr "%s のバリエーションは #%s" - -#: classes/class-wc-emails.php:288 classes/class-wc-emails.php:320 -#: classes/class-wc-emails.php:364 -msgid "Product #%s - %s" -msgstr "商品 #%s - %s" - -#: classes/class-wc-emails.php:290 -msgid "is low in stock." -msgstr "在庫が少なくなっています" - -#: classes/class-wc-emails.php:313 -msgid "Product out of stock" -msgstr "在庫切れ商品" - -#: classes/class-wc-emails.php:322 -msgid "is out of stock." -msgstr "在庫切れの場合がございます。" - -#: classes/class-wc-emails.php:357 -msgid "Product Backorder" -msgstr "商品の予約注文" - -#: classes/class-wc-emails.php:366 -msgid "%s units of %s have been backordered in order #%s." -msgstr "%s が av %s ユニットで予約注文 #%s。" - -#: classes/class-wc-order.php:283 -msgctxt "hash before order number" -msgid "#" -msgstr "#" - -#: classes/class-wc-order.php:858 -msgid " %svia %s" -msgstr " %s- %s" - -#: classes/class-wc-order.php:923 -msgid "Cart Subtotal:" -msgstr "カート小計" - -#: classes/class-wc-order.php:929 -msgid "Cart Discount:" -msgstr "カートでの割引:" - -#: classes/class-wc-order.php:935 -msgid "Shipping:" -msgstr "配送料:" - -#: classes/class-wc-order.php:980 -msgid "Subtotal:" -msgstr "小計:" - -#: classes/class-wc-order.php:1006 -msgid "Order Discount:" -msgstr "注文の割引:" - -#: classes/class-wc-order.php:1011 -msgid "Order Total:" -msgstr "注文合計:" - -#: classes/class-wc-order.php:1034 templates/cart/totals.php:145 -#: templates/checkout/review-order.php:151 -msgid "(Includes %s)" -msgstr "(%s 含む)" - -#: classes/class-wc-order.php:1183 classes/class-wc-order.php:1185 -#: classes/class-wc-order.php:1188 -msgid "WooCommerce" -msgstr "WooCommerce" - -#: classes/class-wc-order.php:1235 -msgid "Order status changed from %s to %s." -msgstr "注文状況は %s から %s に変更されました。" - -#: classes/class-wc-order.php:1461 woocommerce-ajax.php:1163 -#: woocommerce-ajax.php:1164 -msgid "Item #%s stock reduced from %s to %s." -msgstr "商品 #%s の在庫数は %s から %s に減少" - -#: classes/class-wc-order.php:1473 -msgid "Order item stock reduced successfully." -msgstr "注文商品の在庫が正常に減少しました。" - -#: classes/class-wc-product-external.php:56 -msgid "Buy product" -msgstr "商品購入" - -#: classes/class-wc-shortcodes.php:571 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:257 -#: templates/loop/add-to-cart.php:46 -#: templates/single-product/add-to-cart/grouped.php:45 -#: templates/single-product/add-to-cart/grouped.php:75 -#: templates/single-product/add-to-cart/simple.php:42 -#: templates/single-product/add-to-cart/variable.php:78 -msgid "Add to cart" -msgstr "カートに入れる" - -#: classes/emails/class-wc-email-customer-completed-order.php:24 -msgid "Completed order" -msgstr "完了した注文" - -#: classes/emails/class-wc-email-customer-completed-order.php:25 -msgid "" -"Order complete emails are sent to the customer when the order is marked " -"complete and usual indicates that the order has been shipped." -msgstr "" -"注文が「完了」とマークされている場合、注文完了のメールがお客様に送信されま" -"す。通常「完了」は、注文が出荷されたことを示しています。" - -#: classes/emails/class-wc-email-customer-completed-order.php:27 -msgid "Your order is complete" -msgstr "注文が完了" - -#: classes/emails/class-wc-email-customer-completed-order.php:28 -msgid "Your {blogname} order from {order_date} is complete" -msgstr "{order_date} からの、あなたの {blogname} 注文は終了です。" - -#: classes/emails/class-wc-email-customer-completed-order.php:37 -msgid "Your order is complete - download your files" -msgstr "ご注文は完了です - ファイルをダウンロードして下さい" - -#: classes/emails/class-wc-email-customer-completed-order.php:38 -msgid "" -"Your {blogname} order from {order_date} is complete - download your files" -msgstr "" -"{order_date} からの、あなたの {blogname} 注文は終了です。 - ファイルをダウン" -"ロードして下さい" - -#: classes/emails/class-wc-email-customer-completed-order.php:141 -#: classes/emails/class-wc-email-new-order.php:128 -msgid "Subject" -msgstr "件名" - -#: classes/emails/class-wc-email-customer-completed-order.php:148 -#: classes/emails/class-wc-email-new-order.php:135 -msgid "Email Heading" -msgstr "Eメール Heading" - -#: classes/emails/class-wc-email-customer-completed-order.php:155 -msgid "Subject (downloadable)" -msgstr "件名 (ダウンロード可能)" - -#: classes/emails/class-wc-email-customer-completed-order.php:162 -msgid "Email Heading (downloadable)" -msgstr "Eメール Heading (ダウンロード可能)" - -#: classes/emails/class-wc-email-customer-invoice.php:27 -msgid "Customer invoice" -msgstr "得意先請求書" - -#: classes/emails/class-wc-email-customer-invoice.php:28 -msgid "" -"Customer invoice emails can be sent to the user containing order info and " -"payment links." -msgstr "" -"得意先請求書Eメールは、注文情報と支払いリンクを含んでいるユーザーに送られるこ" -"とができます。" - -#: classes/emails/class-wc-email-customer-invoice.php:33 -msgid "Invoice for order {order_number} from {order_date}" -msgstr "{order_date} からの注文 {order_number} の請求書" - -#: classes/emails/class-wc-email-customer-invoice.php:34 -msgid "Invoice for order {order_number}" -msgstr "注文{order_number}の請求書" - -#: classes/emails/class-wc-email-customer-invoice.php:36 -msgid "Your {blogname} order from {order_date}" -msgstr " {order_date} から {blogname} の注文" - -#: classes/emails/class-wc-email-customer-invoice.php:37 -msgid "Order {order_number} details" -msgstr "注文{order_number} の詳細" - -#: classes/emails/class-wc-email-customer-invoice.php:158 -msgid "Email subject (paid)" -msgstr "Eメールの件名(支払い済み)" - -#: classes/emails/class-wc-email-customer-invoice.php:165 -msgid "Email heading (paid)" -msgstr "Eメールheading(支払い済み)" - -#: classes/emails/class-wc-email-customer-new-account.php:31 -msgid "New account" -msgstr "新しいアカウント" - -#: classes/emails/class-wc-email-customer-new-account.php:32 -msgid "" -"Customer new account emails are sent when a customer signs up via the " -"checkout or My Account page." -msgstr "" -"顧客が「お支払いページ」や「マイアカウントページ」を介して登録したとき、顧客" -"に新しいアカウントの電子メールが送信されます。" - -#: classes/emails/class-wc-email-customer-new-account.php:37 -msgid "Your account on {blogname}" -msgstr "{blogname} のアカウント" - -#: classes/emails/class-wc-email-customer-new-account.php:38 -msgid "Welcome to {blogname}" -msgstr "{blogname} にようこそ" - -#: classes/emails/class-wc-email-customer-note.php:29 -msgid "Customer note" -msgstr "注文メモ" - -#: classes/emails/class-wc-email-customer-note.php:30 -msgid "Customer note emails are sent when you add a note to an order." -msgstr "ご注文にメモを追加する際には、顧客ノートEメールが送信されます。" - -#: classes/emails/class-wc-email-customer-note.php:35 -msgid "Note added to your {blogname} order from {order_date}" -msgstr "{order_date}から{blogname}の注文に注意事項が追加されました。" - -#: classes/emails/class-wc-email-customer-note.php:36 -msgid "A note has been added to your order" -msgstr "メモが追加されました" - -#: classes/emails/class-wc-email-customer-processing-order.php:24 -msgid "Processing order" -msgstr "注文処理" - -#: classes/emails/class-wc-email-customer-processing-order.php:25 -msgid "" -"This is an order notification sent to the customer after payment containing " -"order details." -msgstr "お支払い後に顧客に送信される注文通知です" - -#: classes/emails/class-wc-email-customer-processing-order.php:27 -msgid "Thank you for your order" -msgstr "ご注文ありがとうございます" - -#: classes/emails/class-wc-email-customer-processing-order.php:28 -msgid "Your {blogname} order receipt from {order_date}" -msgstr "{order_date}から{blogname}を受注。" - -#: classes/emails/class-wc-email-customer-reset-password.php:36 -msgid "Reset password" -msgstr "パスワードをリセット" - -#: classes/emails/class-wc-email-customer-reset-password.php:37 -msgid "" -"Customer reset password emails are sent when a customer resets their " -"password." -msgstr "顧客がパスワードをリセットしたとき、顧客にEメールが送られます。" - -#: classes/emails/class-wc-email-customer-reset-password.php:42 -msgid "Password Reset for {blogname}" -msgstr "{blogname} によるパスワードのリセット" - -#: classes/emails/class-wc-email-customer-reset-password.php:43 -msgid "Password Reset Instructions" -msgstr "パスワードのリセット手順" - -#: classes/emails/class-wc-email-new-order.php:24 -msgid "New order" -msgstr "新規注文" - -#: classes/emails/class-wc-email-new-order.php:25 -msgid "New order emails are sent when an order is received/paid by a customer." -msgstr "注文を受けたら、新規注文メールが送られます。" - -#: classes/emails/class-wc-email-new-order.php:27 -msgid "New customer order" -msgstr "新規顧客の注文" - -#: classes/emails/class-wc-email-new-order.php:28 -msgid "[{blogname}] New customer order ({order_number}) - {order_date}" -msgstr "[{blogname}] 新規顧客の注文 ({order_number}) - {order_date}" - -#: classes/emails/class-wc-email-new-order.php:121 -msgid "Recipient(s)" -msgstr "受信者(複数可)" - -#: classes/emails/class-wc-email-new-order.php:123 -msgid "" -"Enter recipients (comma separated) for this email. Defaults to %s." -msgstr "" -"このメールの受信者を(カンマ区切り)を入力します。デフォルト%s。" - -#: classes/emails/class-wc-email-new-order.php:130 -msgid "" -"This controls the email subject line. Leave blank to use the default " -"subject: %s." -msgstr "" -"Eメールの件名を制御します。デフォルトの件名を使用する場合は空白のままにしま" -"す: %s。" - -#: classes/emails/class-wc-email-new-order.php:137 -msgid "" -"This controls the main heading contained within the email notification. " -"Leave blank to use the default heading: %s." -msgstr "" -"Eメール通知内に含まれる主な見出しを制御します。デフォルトの件名を使用する場合" -"は空白のままにします:%s。" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:28 -msgid "Bacs" -msgstr "銀行振込" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:65 -msgid "Enable Bank Transfer" -msgstr "銀行振込" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:69 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:63 -#: classes/gateways/cod/class-wc-gateway-cod.php:87 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:171 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:125 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:104 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:84 -msgid "Title" -msgstr "タイトル" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:71 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:65 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:173 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:127 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:85 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:83 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:60 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:106 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:86 -msgid "This controls the title which the user sees during checkout." -msgstr "これは、ユーザーが清算中に見るタイトルをコントロールします。" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:72 -msgid "Direct Bank Transfer" -msgstr "銀行振込(ダイレクト)" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:76 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:70 -msgid "Customer Message" -msgstr "顧客へのメッセージ" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:78 -msgid "" -"Give the customer instructions for paying via BACS, and let them know that " -"their order won't be shipping until the money is received." -msgstr "" -"銀行振込の場合、お客様の振込が確認がとれた後に商品を発送されることをお客様に" -"お知らせ下さい。" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:79 -msgid "" -"Make your payment directly into our bank account. Please use your Order ID " -"as the payment reference. Your order wont be shipped until the funds have " -"cleared in our account." -msgstr "お客様のご入金確認後、商品を出荷致します。" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:82 -msgid "Account Details" -msgstr "口座情報" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:84 -msgid "Optionally enter your bank details below for customers to pay into." -msgstr "顧客が支払う為に下記の銀行口座の詳細を入力してください。" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:88 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:163 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:203 -msgid "Account Name" -msgstr "アカウント名" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:94 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:164 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:204 -msgid "Account Number" -msgstr "アカウントNo" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:100 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:165 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:205 -msgid "Sort Code" -msgstr "分類コード" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:106 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:166 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:206 -msgid "Bank Name" -msgstr "銀行名" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:112 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:167 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:207 -msgid "IBAN" -msgstr "IBAN" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:117 -msgid "BIC (formerly Swift)" -msgstr "BIC (旧 Swift)" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:136 -msgid "BACS Payment" -msgstr "BACS Payment(一般の銀行振込として使用する)" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:137 -msgid "" -"Allows payments by BACS (Bank Account Clearing System), more commonly known " -"as direct bank/wire transfer." -msgstr "" -"BACSでのお支払い(銀行口座清算システム)が可能です。一般的には直接銀行/電信送" -"金として知られています。" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:158 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:200 -msgid "Our Details" -msgstr "詳細控え" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:168 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:208 -msgid "BIC" -msgstr "BIC" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:234 -msgid "Awaiting BACS payment" -msgstr "銀行振込を待っています" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:28 -msgid "Cheque" -msgstr "小切手" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:59 -msgid "Enable Cheque Payment" -msgstr "小切手の支払いを有効にする" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:66 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:90 -msgid "Cheque Payment" -msgstr "小切手支払い" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:72 -msgid "" -"Let the customer know the payee and where they should be sending the cheque " -"to and that their order won't be shipping until you receive it." -msgstr "" -"お客様が荷物受取人に小切手の送付先を知らせ、それを貴方が受け取るまで出荷はし" -"ません。" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:73 -msgid "" -"Please send your cheque to Store Name, Store Street, Store Town, Store " -"State / County, Store Postcode." -msgstr "小切手を送って下さい" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:91 -msgid "" -"Allows cheque payments. Why would you take cheques in this day and age? Well " -"you probably wouldn't but it does allow you to make test purchases for " -"testing order emails and the 'success' pages etc." -msgstr "" -"小切手の支払いを可能にします。Allows cheque payments. Why would you take " -"cheques in this day and age? Well you probably wouldn't but it does allow " -"you to make test purchases for testing order emails and the 'success' pages " -"etc." - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:147 -msgid "Awaiting cheque payment" -msgstr "小切手の支払いを待っています" - -#: classes/gateways/cod/class-wc-gateway-cod.php:27 -#: classes/gateways/cod/class-wc-gateway-cod.php:54 -#: classes/gateways/cod/class-wc-gateway-cod.php:90 -msgid "Cash on Delivery" -msgstr "代金引換" - -#: classes/gateways/cod/class-wc-gateway-cod.php:55 -msgid "Have your customers pay with cash (or by other means) upon delivery." -msgstr "お客様が配達時に現金(または他の手段による)でお支払いします。" - -#: classes/gateways/cod/class-wc-gateway-cod.php:80 -msgid "Enable COD" -msgstr "代金引換を有効" - -#: classes/gateways/cod/class-wc-gateway-cod.php:81 -msgid "Enable Cash on Delivery" -msgstr "代金引換を利用する。" - -#: classes/gateways/cod/class-wc-gateway-cod.php:89 -msgid "Payment method title that the customer will see on your website." -msgstr "ウェブサイト上での支払方法の名称" - -#: classes/gateways/cod/class-wc-gateway-cod.php:94 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:178 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:132 -#: woocommerce-template.php:748 -msgid "Description" -msgstr "説明" - -#: classes/gateways/cod/class-wc-gateway-cod.php:96 -msgid "Payment method description that the customer will see on your website." -msgstr "ウェブサイト上で表示される支払方法の説明" - -#: classes/gateways/cod/class-wc-gateway-cod.php:97 -#: classes/gateways/cod/class-wc-gateway-cod.php:103 -msgid "Pay with cash upon delivery." -msgstr "配達時に現金で支払う。" - -#: classes/gateways/cod/class-wc-gateway-cod.php:100 -msgid "Instructions" -msgstr "説明書き" - -#: classes/gateways/cod/class-wc-gateway-cod.php:102 -msgid "Instructions that will be added to the thank you page." -msgstr "thank youページに追加される指示" - -#: classes/gateways/cod/class-wc-gateway-cod.php:106 -msgid "Enable for shipping methods" -msgstr "有効にする配送方法を選んで下さい" - -#: classes/gateways/cod/class-wc-gateway-cod.php:111 -msgid "" -"If COD is only available for certain methods, set it up here. Leave blank to " -"enable for all methods." -msgstr "" -"代金引換が特定メソッドに対してのみ利用可能であるなら、それをここで設定しま" -"す。すべてのメソッドに対して有効にする場合は空欄にします。" - -#: classes/gateways/cod/class-wc-gateway-cod.php:176 -msgid "Payment to be made upon delivery." -msgstr "お支払いは、配達時の商品引取りの際にお願い致します" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:31 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:196 -msgid "Mijireh Checkout" -msgstr "Mijireh Checkout" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:143 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:321 -msgid "Mijireh error:" -msgstr "Mijireh error:" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:160 -msgid "Enable Mijireh Checkout" -msgstr "Mijireh 支払を有効にする" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:164 -msgid "Access Key" -msgstr "アクセスキー" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:166 -msgid "The Mijireh access key for your store." -msgstr "The Mijireh access key for your store." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:174 -msgid "Credit Card" -msgstr "クレジットカード" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:180 -msgid "Pay securely with you credit card." -msgstr "自身のクレジットカードで安全にお支払い下さい" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:181 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:134 -msgid "This controls the description which the user sees during checkout." -msgstr "これにより、ユーザーはチェックアウト時に見て記述を制御します" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:200 -msgid "Get started with Mijireh Checkout" -msgstr "Get started with Mijireh Checkout" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:201 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site. Mijireh supports a wide variety of payment gateways: Stripe, " -"Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and more." -msgstr "" -"provides a fully PCI Compliant, あなたのサイトのデザインのコントロールを維持" -"しながら、あなたの支払いゲートウェイにクレジットカードデータを収集して送信す" -"るための安全な方法です。Mijirehは支払いゲートウェイを幅広くサポートしていま" -"す。(Stripe, Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and " -"more.)" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:203 -msgid "Join for free" -msgstr "無料で登録" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:203 -msgid "Learn more about WooCommerce and Mijireh" -msgstr "WooCommerceとMijirehの詳細については、こちらをご覧下さい。" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:207 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site." -msgstr "" -"完全にPCIに準拠し、あなたのサイトのデザインのコントロールを維持しながら、あな" -"たの支払いゲートウェイにクレジットカードデータを収集して送信するための安全な" -"方法を提供します。" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:34 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:128 -msgid "PayPal" -msgstr "PayPal" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:90 -msgid "PayPal standard" -msgstr "PayPal standard" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:91 -msgid "" -"PayPal standard works by sending the user to PayPal to enter their payment " -"information." -msgstr "" -"PayPal standard はユーザーの支払い情報を送信することによって動作します。" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:103 -msgid "Gateway Disabled" -msgstr "ゲートウェイが無効" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:103 -msgid "PayPal does not support your store currency." -msgstr "PayPalは、ショップの通貨をサポートしていません。" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:121 -msgid "Enable PayPal standard" -msgstr "PayPal standardを有効にする" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:135 -msgid "" -"Pay via PayPal; you can pay with your credit card if you don't have a PayPal " -"account" -msgstr "" -"PayPal決済;お客様がはPayPalアカウントをお持ちでない場合でもお支払いは可能で" -"す。" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:138 -msgid "PayPal Email" -msgstr "PayPal Email" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:140 -msgid "" -"Please enter your PayPal email address; this is needed in order to take " -"payment." -msgstr "" -"御社のPayPalメールアドレスを入力してください。支払いを受けるために必要です。" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:146 -msgid "Invoice Prefix" -msgstr "送り状接頭辞(プレフィックス)" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:148 -msgid "" -"Please enter a prefix for your invoice numbers. If you use your PayPal " -"account for multiple stores ensure this prefix is unique as PayPal will not " -"allow orders with the same invoice number." -msgstr "" -"お店の請求書番号の接頭辞(prefix)を入力してください。複数店舗でPayPalアカウ" -"ントを使用している場合は、PayPalは同じ請求書番号の注文を許可しない為、この接" -"頭辞が固有である事を確認して下さい。" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:153 -msgid "Submission method" -msgstr "提出方法" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:155 -msgid "Use form submission method." -msgstr "フォーム送信を使用します" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:156 -msgid "" -"Enable this to post order data to PayPal via a form instead of using a " -"redirect/querystring." -msgstr "" -"リダイレクト/クエリ文字列を代わりに使用して、フォームからPayPalに注文データを" -"投稿することができます。" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:160 -msgid "Page Style" -msgstr "ページスタイル" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:162 -msgid "" -"Optionally enter the name of the page style you wish to use. These are " -"defined within your PayPal account." -msgstr "" -"必要に応じて使用したいページスタイルの名前を入力します。これは、あなたの" -"PayPalアカウント内で定義されています。" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:165 -msgid "Optional" -msgstr "任意" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:168 -msgid "Shipping options" -msgstr "配送オプション" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:173 -msgid "Shipping details" -msgstr "配送の明細" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:175 -msgid "Send shipping details to PayPal instead of billing." -msgstr "配送詳細を送信し、PayPalの代わりに請求書を作成します。" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:177 -msgid "" -"PayPal allows us to send 1 address. If you are using PayPal for shipping " -"labels you may prefer to send the shipping address rather than billing." -msgstr "" -"PayPalでは、1つのアドレスに送信できます。PayPalを出荷用ラベルに使用している場" -"合は、配送先住所ではなく請求書を送るに便利かもしれません。" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:181 -msgid "Address override" -msgstr "アドレス無効化(Address override)" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:183 -msgid "" -"Enable \"address_override\" to prevent address information from being " -"changed." -msgstr "" -"変更されるアドレス情報を防ぐために \"address_override\" を有効にします" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:184 -msgid "" -"PayPal verifies addresses therefore this setting can cause errors (we " -"recommend keeping it disabled)." -msgstr "" -"PayPalがアドレスを検証します。その為、この設定ではエラーを引き起こす可能性が" -"あります。(我々はこれが無効になっていることをお勧めします)" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:188 -msgid "Gateway Testing" -msgstr "ゲートウェイ テスト" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:193 -msgid "PayPal sandbox" -msgstr "PayPal sandbox" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:195 -msgid "Enable PayPal sandbox" -msgstr "PayPal sandboxを有効にする" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:197 -msgid "" -"PayPal sandbox can be used to test payments. Sign up for a developer account " -"here." -msgstr "" -"PayPal sandbox は支払いをテストするために使用することができます。ここに開発者アカウントをサインアップしてください。" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:200 -msgid "Debug Log" -msgstr "デバッグ ログ" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:202 -msgid "Enable logging" -msgstr "loggingを有効にす" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:204 -msgid "" -"Log PayPal events, such as IPN requests, inside woocommerce/logs/" -"paypal.txt" -msgstr "" -"woocommerce/logs/paypal.txt の内部の、ログPayPalイベント(例えば" -"IPN要請)。" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:313 -msgid "Order %s" -msgstr "注文 %s" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:323 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:373 -msgid "Shipping via" -msgstr "配送経由" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:414 -msgid "" -"Thank you for your order. We are now redirecting you to PayPal to make " -"payment." -msgstr "" -"ご注文ありがとうございます。当店で今、支払いをPayPalにリダイレクトしていま" -"す。" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:435 -msgid "Pay via PayPal" -msgstr "PayPalで決済" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:435 -msgid "Cancel order & restore cart" -msgstr "注文を取り消す & カートを復元" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:489 -msgid "" -"Thank you for your order, please click the button below to pay with PayPal." -msgstr "" -"ご注文ありがとうございました、PayPalでの支払いには、以下のボタンをクリックし" -"てください。" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:634 -msgid "Validation error: PayPal amounts do not match (gross %s)." -msgstr "検証エラー:PayPalの金額が一致していません(gross %s)" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:652 -msgid "IPN payment completed" -msgstr "" -"IPNの支払いが完了。インスタント支払い通知(IPNは)PayPal取引に関連した" -"イベントを通知するメッセージサービスです。" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:664 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:672 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:690 -msgid "Payment %s via IPN." -msgstr "" -"お支払いの %s IPN経由。インスタント支払い通知(IPNは)PayPal取引に関連" -"したイベントを通知するメッセージサービスです。" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:677 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:695 -msgid "Order refunded/reversed" -msgstr "注文の払い戻し" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:678 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:696 -msgid "Order %s has been marked as refunded - PayPal reason code: %s" -msgstr "注文 %s が払い戻しとしてマークされています - - PayPal reason code: %s" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:681 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:699 -msgid "Payment for order %s refunded/reversed" -msgstr "注文 %s の支払いを 払い戻し/リバース" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:26 -msgid "Google Analytics" -msgstr "Google Analytics" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:27 -msgid "" -"Google Analytics is a free service offered by Google that generates detailed " -"statistics about the visitors to a website." -msgstr "" -"Google Analytics は、ウェブサイトへの訪問者に関する詳細な統計情報を生成しま" -"す。Googleが提供する無料のサービス。" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:62 -msgid "Google Analytics ID" -msgstr "Google Analytics ID" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:63 -msgid "" -"Log into your google analytics account to find your ID. e.g. UA-XXXXX-" -"X" -msgstr "" -"あなたのIDを検索するにはGoogle Analyticsアカウントにログインします。例えば、" -"UA-XXXXX-X" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:68 -msgid "Tracking code" -msgstr "トラッキングコード" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:69 -msgid "" -"Add tracking code to your site's footer. You don't need to enable this if " -"using a 3rd party analytics plugin." -msgstr "" -"サイトのフッターにトラッキングコードを追加します。他社のアクセス解析プラグイ" -"ンを使用している場合は有効にする必要はありません。" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:75 -msgid "Add eCommerce tracking code to the thankyou page" -msgstr "「サンクスページ」に、eコマースのトラッキングコードを追加する" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:81 -msgid "Add event tracking code for add to cart actions" -msgstr "カートアクションを追加する為の、イベントトラッキングコードを追加する" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:113 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:168 -#: woocommerce-ajax.php:1725 -msgid "Guest" -msgstr "ゲスト" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:201 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:258 -#: templates/single-product/meta.php:19 -msgid "SKU:" -msgstr "SKU:" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:256 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:276 -#: woocommerce.php:948 -msgid "Products" -msgstr "商品" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:277 -msgid "Add to Cart" -msgstr "カートに入れる" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:26 -msgid "ShareDaddy" -msgstr "ShareDaddy" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:27 -msgid "ShareDaddy is a sharing plugin bundled with JetPack." -msgstr "" -"ShareDaddyはJetpackにバンドルされているソーシャルメディアシェア用のプラグイン" -"です。" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:51 -msgid "Output ShareDaddy button?" -msgstr "出力はShareDaddyボタン?" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:52 -msgid "Enable this option to show the ShareDaddy button on the product page." -msgstr "" -"商品ページShareDaddyボタンを表示するには、このオプションを有効にします。" - -#: classes/integrations/sharethis/class-wc-sharethis.php:29 -msgid "ShareThis" -msgstr "ShareThis" - -#: classes/integrations/sharethis/class-wc-sharethis.php:30 -msgid "" -"ShareThis offers a sharing widget which will allow customers to share links " -"to products with their friends." -msgstr "" -"ShareThis は共有ウィジェットを提供しています。これは、閲覧者がその友人らと商" -"品へのリンクを共有できるようになります。" - -#: classes/integrations/sharethis/class-wc-sharethis.php:63 -msgid "ShareThis Publisher ID" -msgstr "ShareThis 管理者 ID" - -#: classes/integrations/sharethis/class-wc-sharethis.php:64 -msgid "" -"Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons on " -"product pages." -msgstr "" -"入力で %1$sShareThisパブリッシャーID%2$s のソーシャル共有ボタンを表示する。" - -#: classes/integrations/sharethis/class-wc-sharethis.php:69 -msgid "ShareThis Code" -msgstr "ShareThis コード" - -#: classes/integrations/sharethis/class-wc-sharethis.php:70 -msgid "You can tweak the ShareThis code by editing this option." -msgstr "このオプションを編集して「ShareThis コード」を調整することができます。" - -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:22 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:329 -msgid "ShareYourCart" -msgstr "ShareYourCart" - -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:23 -msgid "" -"Increase your social media exposure by 10 percent! ShareYourCart helps you " -"get more customers by motivating satisfied customers to talk with their " -"friends about your products. For help with ShareYourCart view the documentation." -msgstr "" -"10%あなたのソーシャルメディアへの露出を増やす!ShareYourCartは商品に満足した" -"顧客が、それらを友達と話すように動機づけることにより、より多くの顧客を得るの" -"を助けます。ShareYourCartのヘルプについてはドキュメントを参照してく" -"ださい。" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:328 -msgid "Share your cart settings" -msgstr "カートで設定を共有する" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:342 -msgid "Button" -msgstr "ボタン" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:343 -msgid "Customize Button" -msgstr "ボタンをカスタマイズする" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:351 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:352 -msgid "Documentation" -msgstr "提出書類" - -#: classes/integrations/shareyourcart/views/admin-page.php:33 -msgid "Setup your ShareYourCart account" -msgstr "ShareYourCartアカウントの設定" - -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Create an account" -msgstr "アカウントを作成する" - -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Can't access your account?" -msgstr "アカウントにアクセスできませんか?" - -#: classes/integrations/shareyourcart/views/admin-page.php:100 -msgid "Configure" -msgstr "設定する" - -#: classes/integrations/shareyourcart/views/admin-page.php:110 -#: classes/integrations/shareyourcart/views/button-settings-page.php:120 -msgid "Save changes" -msgstr "変更を保存" - -#: classes/integrations/shareyourcart/views/button-settings-page.php:8 -#: classes/integrations/shareyourcart/views/button-settings-page.php:11 -msgid "Button style" -msgstr "ボタンスタイル" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:25 -msgid "Flat rate" -msgstr "固定費用" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:28 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:461 -msgid "Flat Rates" -msgstr "固定費用" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:29 -msgid "Flat rates let you define a standard rate per item, or per order." -msgstr "商品毎、または注文につく標準税率の基本料金を定義してみましょう。" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:79 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:54 -msgid "Enable this shipping method" -msgstr "この配送方法を有効にする" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:83 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:81 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:58 -msgid "Method Title" -msgstr "メソッドのタイトル" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:86 -msgid "Flat Rate" -msgstr "定額料金" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:90 -msgid "Cost per order" -msgstr "注文毎にかかる費用" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:96 -msgid "" -"Enter a cost (excluding tax) per order, e.g. 5.00. Leave blank to disable." -msgstr "" -"注文ごとの費用(税以外の)を入力(例 5.00)。無効にするには空白のままにしてお" -"きます。" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:102 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:88 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:143 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:99 -msgid "Method availability" -msgstr "メソッドの有効性" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:107 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:93 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:148 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:104 -msgid "All allowed countries" -msgstr "許可した全ての国" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:108 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:112 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:98 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:149 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:153 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:105 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:109 -msgid "Specific Countries" -msgstr "特定の国" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:120 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:83 -msgid "Calculation Type" -msgstr "計算方式" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:124 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:87 -msgid "Per Order - charge shipping for the entire order as a whole" -msgstr "注文毎 - 1回の注文分をまとめて、送料を請求する" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:125 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:88 -msgid "Per Item - charge shipping for each item individually" -msgstr "商品毎 - 個別に送料を請求する" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:126 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:89 -msgid "Per Class - charge shipping for each shipping class in an order" -msgstr "クラス毎 - 配送クラス毎に送料を請求する" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:130 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:93 -msgid "Tax Status" -msgstr "税ステータス" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:134 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:97 -msgid "Taxable" -msgstr "課税" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:135 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:98 -msgid "None" -msgstr "なし" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:139 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:102 -msgid "Default Cost" -msgstr "基本費用" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:145 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:108 -msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -msgstr "税以外に必要となる金額。量(例えば2.50)を入力してください。" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:151 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:114 -msgid "Default Handling Fee" -msgstr "基本手数料" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:153 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:116 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. " -"Leave blank to disable." -msgstr "" -"税以外の料金。量を入力する(2.50など)、あるいは割合(5%など)。無効にするに" -"は空白のままにしておきます。" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:159 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:122 -msgid "Minimum Fee" -msgstr "最低費用" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:165 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:128 -msgid "" -"Enter a minimum fee amount. Fee's less than this will be increased. Leave " -"blank to disable." -msgstr "最低料金を入力してください。無効にするには空白のままにしておきます。" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:171 -msgid "Shipping Options" -msgstr "配送オプション" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:173 -msgid "" -"Optional extra shipping options with additional costs (one per line). " -"Example: Option Name|Cost|Per-order (yes or no). Example: " -"Priority Mail|6.95|yes. If per-order is set to no, it will use " -"the \"Calculation Type\" setting." -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:176 -msgid "Option Name|Cost|Per-order (yes or no)" -msgstr "オプション名|費用|予約(yes or no)" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:467 -#: woocommerce.php:857 -msgid "Shipping Class" -msgstr "配送クラス" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:468 -msgid "Cost" -msgstr "金額" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:468 -msgid "Cost, excluding tax." -msgstr "税金以外の費用" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:469 -msgid "Handling Fee" -msgstr "手数料" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:469 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -msgstr "税以外の料金。量を入力する(2.50など)、あるいは割合(5%など)。" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:474 -msgid "+ Add Flat Rate" -msgstr "+定額料金を追加" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:475 -msgid "" -"Add rates for shipping classes here — they will override the default " -"costs defined above." -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:475 -msgid "Delete selected rates" -msgstr "選んだ料金を削除" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:495 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:528 -msgid "Select a class…" -msgstr "クラスを選択…" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:500 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:501 -msgid "0.00" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:542 -msgid "Delete the selected rates?" -msgstr "選択されたレートを削除しますか?" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:25 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:145 -msgid "Free Shipping" -msgstr "送料無料" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:77 -msgid "Enable Free Shipping" -msgstr "送料無料を有効にする" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:106 -msgid "Free Shipping Requires..." -msgstr "送料無料は必要です..." - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:110 -#: templates/order/order-details.php:110 templates/order/order-details.php:125 -msgid "N/A" -msgstr "N/A" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:111 -msgid "A valid free shipping coupon" -msgstr "有効な送料無料クーポン" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:112 -msgid "A minimum order amount (defined below)" -msgstr "最小注文金額(以下に定義)" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:113 -msgid "A minimum order amount OR a coupon" -msgstr "最小注文量やクーポン" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:114 -msgid "A minimum order amount AND a coupon" -msgstr "最小注文量やクーポン" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:118 -msgid "Minimum Order Amount" -msgstr "最小注文金額" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:124 -msgid "" -"Users will need to spend this amount to get free shipping (if enabled above)." -msgstr "" -"ユーザーは送料無料を得るために、金額を費やす必要があります?(上記有効になって" -"いる場合)。" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:28 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:31 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:61 -msgid "International Delivery" -msgstr "国際便" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:32 -msgid "International delivery based on flat rate shipping." -msgstr "国際便は定額料金です" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:65 -msgid "Availability" -msgstr "有効性" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:70 -msgid "Selected countries" -msgstr "選択した国" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:71 -msgid "Excluding selected countries" -msgstr "選択した国を除く" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:75 -msgid "Countries" -msgstr "国" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:25 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:107 -msgid "Local Delivery" -msgstr "宅配便" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:98 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:78 -msgid "Enable" -msgstr "有効にする" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:100 -msgid "Enable local delivery" -msgstr "宅配便を有効にする" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:111 -msgid "Fee Type" -msgstr "手数料の種類" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:113 -msgid "How to calculate delivery charges" -msgstr "配達料を計算する方法" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 -msgid "Fixed amount" -msgstr "定額" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:117 -msgid "Percentage of cart total" -msgstr "カート合計の割合" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:118 -msgid "Fixed amount per product" -msgstr "商品毎の定額" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:123 -msgid "Delivery Fee" -msgstr "配送料" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:129 -msgid "" -"What fee do you want to charge for local delivery, disregarded if you choose " -"free. Leave blank to disable." -msgstr "" -"何の手数料を宅配便に課金したいのですか? フリーに選択をすれば無視されます。" -"無効にするには空白のままにしておきます。" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:135 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:91 -msgid "Zip/Post Codes" -msgstr "郵便番号" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:137 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:93 -msgid "" -"What zip/post codes would you like to offer delivery to? Separate codes with " -"a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -msgstr "" -"あなたは、どんな郵便番号に配送を提供したいでしょうか? カンマでコードを区切り" -"ます。ワイルドカードは、例えばを受け入れP *はPE30の郵便番号と一致します。" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:172 -msgid "" -"Local delivery is a simple shipping method for delivering orders locally." -msgstr "宅配便は一般的な配送方法です" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:25 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:87 -msgid "Local Pickup" -msgstr "店頭渡し" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:80 -msgid "Enable local pickup" -msgstr "店頭渡しを有効にする" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:117 -msgid "Apply base tax rate" -msgstr "ベース税率を適用" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:119 -msgid "" -"When this shipping method is chosen, apply the base tax rate rather than for " -"the customer's given address." -msgstr "" -"この配送方法を選択した場合、顧客の指定した住所ではなく基礎税率を適用してくだ" -"さい。" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:134 -msgid "" -"Local pickup is a simple method which allows the customer to pick up their " -"order themselves." -msgstr "「店頭渡し」はお客様に店頭まで取りに来て頂く事を前提としています。" - -#: classes/shortcodes/class-wc-shortcode-cart.php:54 -#: woocommerce-functions.php:1637 -msgid "Please enter a valid postcode/ZIP." -msgstr "郵便番号を入力してください" - -#: classes/shortcodes/class-wc-shortcode-cart.php:65 -#: classes/shortcodes/class-wc-shortcode-cart.php:71 -msgid "Shipping costs updated." -msgstr "配送料を更新" - -#: classes/shortcodes/class-wc-shortcode-checkout.php:64 -msgid "" -"The order totals have been updated. Please confirm your order by pressing " -"the Place Order button at the bottom of the page." -msgstr "" -"注文金額が更新されました。ページの下部にある注文ボタンを押して、注文を確認し" -"てください。" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:80 -#: woocommerce-core-functions.php:2488 woocommerce-functions.php:1559 -msgid "Please enter your password." -msgstr "パスワードを入力してください" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:95 -msgid "Your password has been reset." -msgstr "パスワードがリセットされました" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:95 -msgid "Log in" -msgstr "ログイン" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:116 -msgid "Enter a username or e-mail address." -msgstr "ユーザー名かEメールアドレスを入力してください" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:123 -msgid "There is no user registered with that email address." -msgstr "そのEメールアドレスで登録されたユーザは存在しません。" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:138 -msgid "Invalid username or e-mail." -msgstr "無効なユーザー名またはEメール" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:152 -msgid "Password reset is not allowed for this user" -msgstr "パスワードのリセットは、このユーザに対して許可されていません" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:180 -msgid "Check your e-mail for the confirmation link." -msgstr "確証リンクをあなたのEメールをチェックして下さい。" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:200 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:205 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:212 -msgid "Invalid key" -msgstr "無効なキー" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:53 -msgid "Please enter a valid order ID" -msgstr "有効な注文IDを入力してください" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:57 -msgid "Please enter a valid order email" -msgstr "有効な注文メールアドレスを入力してください" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:76 -msgid "Sorry, we could not find that order id in our database." -msgstr "" -"申し訳ありませんが、データベースにその注文IDを見つけることが出来ませんでし" -"た。" - -#: classes/shortcodes/class-wc-shortcode-pay.php:65 -#: classes/shortcodes/class-wc-shortcode-pay.php:118 -msgid "" -"Your order has already been paid for. Please contact us if you need " -"assistance." -msgstr "ご注文はすでに支払い済みです。ご不明な点はお問い合わせください。" - -#: classes/shortcodes/class-wc-shortcode-pay.php:70 -#: classes/shortcodes/class-wc-shortcode-pay.php:125 -#: classes/shortcodes/class-wc-shortcode-view-order.php:49 -#: woocommerce-functions.php:880 woocommerce-functions.php:959 -msgid "Invalid order." -msgstr "無効の注文" - -#: classes/shortcodes/class-wc-shortcode-pay.php:90 -#: templates/checkout/thankyou.php:40 -#: templates/emails/customer-completed-order.php:18 -#: templates/emails/customer-invoice.php:22 -#: templates/emails/customer-note.php:22 -#: templates/emails/customer-processing-order.php:18 -msgid "Order:" -msgstr "注文:" - -#: classes/shortcodes/class-wc-shortcode-pay.php:94 -#: templates/checkout/thankyou.php:44 -msgid "Date:" -msgstr "日付:" - -#: classes/shortcodes/class-wc-shortcode-pay.php:98 -#: templates/checkout/thankyou.php:48 -msgid "Total:" -msgstr "合計:" - -#: classes/shortcodes/class-wc-shortcode-pay.php:103 -#: templates/checkout/thankyou.php:53 -msgid "Payment method:" -msgstr "支払方法:" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:49 -msgid "My Account →" -msgstr "マイアカウント →" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:56 -msgid "" -"Order %s made on %s" -msgstr "" -"注文 %s made on %s" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:57 -msgid "Order status: %s" -msgstr "注文ステータス: %s" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:63 -#: templates/order/tracking.php:31 -msgid "Order Updates" -msgstr "注文の更新" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:69 -msgid "l jS \\of F Y, h:ia" -msgstr "【 Fj日 l】【Y年】 A:h時i分s秒" - -#: classes/widgets/class-wc-widget-best-sellers.php:31 -msgid "Display a list of your best selling products on your site." -msgstr "サイト上で最も売れている製品のリストを表示します。" - -#: classes/widgets/class-wc-widget-best-sellers.php:33 -msgid "WooCommerce Best Sellers" -msgstr "WooCommerce ベストセラー" - -#: classes/widgets/class-wc-widget-best-sellers.php:71 -msgid "Best Sellers" -msgstr "ベストセラー" - -#: classes/widgets/class-wc-widget-best-sellers.php:192 -#: classes/widgets/class-wc-widget-cart.php:115 -#: classes/widgets/class-wc-widget-featured-products.php:172 -#: classes/widgets/class-wc-widget-layered-nav.php:349 -#: classes/widgets/class-wc-widget-onsale.php:177 -#: classes/widgets/class-wc-widget-price-filter.php:179 -#: classes/widgets/class-wc-widget-product-categories.php:185 -#: classes/widgets/class-wc-widget-product-search.php:91 -#: classes/widgets/class-wc-widget-product-tag-cloud.php:101 -#: classes/widgets/class-wc-widget-random-products.php:133 -#: classes/widgets/class-wc-widget-recent-products.php:169 -#: classes/widgets/class-wc-widget-recent-reviews.php:158 -#: classes/widgets/class-wc-widget-recently-viewed.php:166 -#: classes/widgets/class-wc-widget-top-rated-products.php:159 -msgid "Title:" -msgstr "タイトル:" - -#: classes/widgets/class-wc-widget-best-sellers.php:195 -#: classes/widgets/class-wc-widget-featured-products.php:175 -#: classes/widgets/class-wc-widget-onsale.php:180 -#: classes/widgets/class-wc-widget-random-products.php:138 -#: classes/widgets/class-wc-widget-recent-products.php:172 -#: classes/widgets/class-wc-widget-recent-reviews.php:161 -#: classes/widgets/class-wc-widget-recently-viewed.php:169 -#: classes/widgets/class-wc-widget-top-rated-products.php:162 -msgid "Number of products to show:" -msgstr "表示する商品の数:" - -#: classes/widgets/class-wc-widget-best-sellers.php:199 -msgid "Hide free products" -msgstr "フリー商品を隠す" - -#: classes/widgets/class-wc-widget-cart.php:33 -msgid "Display the user's Cart in the sidebar." -msgstr "サイドバーにユーザーのカートが表示されます" - -#: classes/widgets/class-wc-widget-cart.php:35 -msgid "WooCommerce Cart" -msgstr "WooCommerce Cart" - -#: classes/widgets/class-wc-widget-cart.php:119 -msgid "Hide if cart is empty" -msgstr "カートが空の場合は非表示にする" - -#: classes/widgets/class-wc-widget-featured-products.php:35 -msgid "Display a list of featured products on your site." -msgstr "サイトのオススメ商品のリストを表示します。" - -#: classes/widgets/class-wc-widget-featured-products.php:37 -msgid "WooCommerce Featured Products" -msgstr "WooCommerce Featured Products" - -#: classes/widgets/class-wc-widget-featured-products.php:75 -msgid "Featured Products" -msgstr "Featured Products" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:31 -msgid "Shows active layered nav filters so users can see and deactivate them." -msgstr "" -"ユーザーに表示しそれらを無効できる様に、実行中のレイヤーナビフィルターを表示" -"します。" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:33 -msgid "WooCommerce Layered Nav Filters" -msgstr "WooCommerce レイヤーナビフィルター" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:62 -msgid "Active filters" -msgstr "実行中のフィルター" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:93 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Remove filter" -msgstr "フィルターの削除" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -msgid "Min" -msgstr "Min" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Max" -msgstr "Max" - -#: classes/widgets/class-wc-widget-layered-nav.php:31 -msgid "" -"Shows a custom attribute in a widget which lets you narrow down the list of " -"products when viewing product categories." -msgstr "" -"商品のカテゴリを表示する時、商品のリストを絞り込むことができます。ウィジェッ" -"トでカスタム属性を示しています。" - -#: classes/widgets/class-wc-widget-layered-nav.php:33 -msgid "WooCommerce Layered Nav" -msgstr "WooCommerce レイヤーナビ" - -#: classes/widgets/class-wc-widget-layered-nav.php:100 -msgid "Any %s" -msgstr "任 %s" - -#: classes/widgets/class-wc-widget-layered-nav.php:352 -msgid "Attribute:" -msgstr "属性:" - -#: classes/widgets/class-wc-widget-layered-nav.php:363 -msgid "Display Type:" -msgstr "表示の仕方:" - -#: classes/widgets/class-wc-widget-layered-nav.php:365 -msgid "List" -msgstr "リスト" - -#: classes/widgets/class-wc-widget-layered-nav.php:366 -msgid "Dropdown" -msgstr "ドロップダウン" - -#: classes/widgets/class-wc-widget-layered-nav.php:369 -msgid "Query Type:" -msgstr "質問の内用:" - -#: classes/widgets/class-wc-widget-layered-nav.php:371 -msgid "AND" -msgstr "AND" - -#: classes/widgets/class-wc-widget-layered-nav.php:372 -msgid "OR" -msgstr "OR" - -#: classes/widgets/class-wc-widget-login.php:31 -msgid "Display a login area and \"My Account\" links in the sidebar." -msgstr "" -"ログインおよびサイドバーの \"マイアカウント\" のリンクを表示させて下さい。" - -#: classes/widgets/class-wc-widget-login.php:33 -msgid "WooCommerce Login" -msgstr "WooCommerce ログイン" - -#: classes/widgets/class-wc-widget-login.php:59 -#: classes/widgets/class-wc-widget-login.php:223 -msgid "Customer Login" -msgstr "お客様ログイン" - -#: classes/widgets/class-wc-widget-login.php:60 -#: classes/widgets/class-wc-widget-login.php:226 -msgid "Welcome %s" -msgstr "ようこそ %s様" - -#: classes/widgets/class-wc-widget-login.php:76 -msgid "My account" -msgstr "マイアカウント" - -#: classes/widgets/class-wc-widget-login.php:77 -msgid "Change my password" -msgstr "パスワードを変更" - -#: classes/widgets/class-wc-widget-login.php:78 -msgid "Logout" -msgstr "ログアウト" - -#: classes/widgets/class-wc-widget-login.php:116 -#: templates/myaccount/form-login.php:29 -#: templates/myaccount/form-lost-password.php:24 -#: templates/shop/form-login.php:20 -msgid "Username or email" -msgstr "ユーザー名 or Eメール" - -#: classes/widgets/class-wc-widget-login.php:118 -#: templates/myaccount/form-login.php:33 templates/myaccount/form-login.php:85 -#: templates/shop/form-login.php:24 -msgid "Password" -msgstr "パスワード" - -#: classes/widgets/class-wc-widget-login.php:120 woocommerce-functions.php:945 -msgid "Login →" -msgstr "ログイン →" - -#: classes/widgets/class-wc-widget-login.php:120 -msgid "Lost password?" -msgstr "パスワードを忘れましたか?" - -#: classes/widgets/class-wc-widget-login.php:222 -msgid "Logged out title:" -msgstr "ログアウト タイトル:" - -#: classes/widgets/class-wc-widget-login.php:225 -msgid "Logged in title:" -msgstr "ログイン タイトル:" - -#: classes/widgets/class-wc-widget-onsale.php:31 -msgid "Display a list of your on-sale products on your site." -msgstr "特売商品のリストを表示する" - -#: classes/widgets/class-wc-widget-onsale.php:33 -msgid "WooCommerce On-sale" -msgstr "WooCommerce 特売商品" - -#: classes/widgets/class-wc-widget-onsale.php:70 -msgid "On Sale" -msgstr "特売商品" - -#: classes/widgets/class-wc-widget-price-filter.php:33 -msgid "" -"Shows a price filter slider in a widget which lets you narrow down the list " -"of shown products when viewing product categories." -msgstr "" -"ウィジェット内の価格フィルタースライダーで、商品のカテゴリに表示する商品リス" -"トを絞り込むことができます。" - -#: classes/widgets/class-wc-widget-price-filter.php:35 -msgid "WooCommerce Price Filter" -msgstr "WooCommerce 価格フィルター" - -#: classes/widgets/class-wc-widget-price-filter.php:136 -msgid "Min price" -msgstr "最小価格" - -#: classes/widgets/class-wc-widget-price-filter.php:137 -msgid "Max price" -msgstr "最大価格" - -#: classes/widgets/class-wc-widget-price-filter.php:138 -msgid "Filter" -msgstr "フィルター" - -#: classes/widgets/class-wc-widget-price-filter.php:140 -msgid "Price:" -msgstr "価格 :" - -#: classes/widgets/class-wc-widget-price-filter.php:162 -msgid "Filter by price" -msgstr "価格による絞り込み" - -#: classes/widgets/class-wc-widget-product-categories.php:33 -msgid "A list or dropdown of product categories." -msgstr "リストまたは商品カテゴリのドロップダウン" - -#: classes/widgets/class-wc-widget-product-categories.php:35 -msgid "WooCommerce Product Categories" -msgstr "WooCommerce 商品カテゴリー" - -#: classes/widgets/class-wc-widget-product-categories.php:57 -#: woocommerce.php:787 woocommerce.php:789 -msgid "Product Categories" -msgstr "商品カテゴリー" - -#: classes/widgets/class-wc-widget-product-categories.php:129 -msgid "No product categories exist." -msgstr "商品カテゴリーが存在しません" - -#: classes/widgets/class-wc-widget-product-categories.php:188 -msgid "Order by:" -msgstr "Order by:" - -#: classes/widgets/class-wc-widget-product-categories.php:190 -msgid "Category Order" -msgstr "Category Order" - -#: classes/widgets/class-wc-widget-product-categories.php:191 -#: templates/single-product-reviews.php:99 woocommerce-ajax.php:1244 -msgid "Name" -msgstr "名前" - -#: classes/widgets/class-wc-widget-product-categories.php:195 -msgid "Show as dropdown" -msgstr "ドロップダウンリストとして表示" - -#: classes/widgets/class-wc-widget-product-categories.php:198 -msgid "Show post counts" -msgstr "投稿数を表示" - -#: classes/widgets/class-wc-widget-product-categories.php:201 -msgid "Show hierarchy" -msgstr "階層を表示" - -#: classes/widgets/class-wc-widget-product-categories.php:204 -msgid "Only show children for the current category" -msgstr "現在のカテゴリの子のみを表示" - -#: classes/widgets/class-wc-widget-product-search.php:31 -msgid "A Search box for products only." -msgstr "商品のみの検索ボックス" - -#: classes/widgets/class-wc-widget-product-search.php:33 -msgid "WooCommerce Product Search" -msgstr "WooCommerce 商品検索" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:31 -msgid "Your most used product tags in cloud format." -msgstr "あなたの最も使用される商品タグを、ラウド形式で表示します" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:33 -msgid "WooCommerce Product Tags" -msgstr "WooCommerce 商品タグ" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:58 -#: woocommerce.php:823 woocommerce.php:825 -msgid "Product Tags" -msgstr "商品タグ" - -#: classes/widgets/class-wc-widget-random-products.php:24 -msgid "WooCommerce Random Products" -msgstr "WooCommerce ランダム商品" - -#: classes/widgets/class-wc-widget-random-products.php:27 -msgid "Display a list of random products on your site." -msgstr "サイトに商品をランダムに表示します" - -#: classes/widgets/class-wc-widget-random-products.php:46 -msgid "Random Products" -msgstr "ランダム商品" - -#: classes/widgets/class-wc-widget-random-products.php:144 -#: classes/widgets/class-wc-widget-recent-products.php:176 -msgid "Show hidden product variations" -msgstr "隠れた商品バリエーションを表示する" - -#: classes/widgets/class-wc-widget-recent-products.php:31 -msgid "Display a list of your most recent products on your site." -msgstr "サイトに新着レビューリストを表示する" - -#: classes/widgets/class-wc-widget-recent-products.php:33 -msgid "WooCommerce Recent Products" -msgstr "WooCommerce 最新商品" - -#: classes/widgets/class-wc-widget-recent-products.php:70 -msgid "New Products" -msgstr "最新商品" - -#: classes/widgets/class-wc-widget-recent-reviews.php:31 -msgid "Display a list of your most recent reviews on your site." -msgstr "最新商品リストを表示する" - -#: classes/widgets/class-wc-widget-recent-reviews.php:33 -msgid "WooCommerce Recent Reviews" -msgstr "WooCommerce 新着レビューリスト" - -#: classes/widgets/class-wc-widget-recent-reviews.php:71 -msgid "Recent Reviews" -msgstr "最新商品" - -#: classes/widgets/class-wc-widget-recent-reviews.php:97 -msgctxt "by comment author" -msgid "by %1$s" -msgstr "by %1$s" - -#: classes/widgets/class-wc-widget-recently-viewed.php:31 -msgid "Display a list of recently viewed products." -msgstr "最新閲覧商品リストを表示する" - -#: classes/widgets/class-wc-widget-recently-viewed.php:33 -msgid "WooCommerce Recently Viewed Products" -msgstr "WooCommerce 最新閲覧商品リスト" - -#: classes/widgets/class-wc-widget-recently-viewed.php:76 -msgid "Recently viewed" -msgstr "最新閲覧商品" - -#: classes/widgets/class-wc-widget-top-rated-products.php:33 -msgid "Display a list of top rated products on your site." -msgstr "高評価商品リストを表" - -#: classes/widgets/class-wc-widget-top-rated-products.php:35 -msgid "WooCommerce Top Rated Products" -msgstr "WooCommerce 高評価商品リスト" - -#: classes/widgets/class-wc-widget-top-rated-products.php:72 -msgid "Top Rated Products" -msgstr "高評価商品" - -#: i18n/states/AU.php:13 -msgid "Australian Capital Territory" -msgstr "オーストラリア首都特別地" - -#: i18n/states/AU.php:14 -msgid "New South Wales" -msgstr "ニューサウスウェールズ州" - -#: i18n/states/AU.php:15 -msgid "Northern Territory" -msgstr "ノーザン・テリトリー" - -#: i18n/states/AU.php:16 -msgid "Queensland" -msgstr "クイーンズランド州" - -#: i18n/states/AU.php:17 -msgid "South Australia" -msgstr "南オーストラリア州" - -#: i18n/states/AU.php:18 -msgid "Tasmania" -msgstr "タスマニア州" - -#: i18n/states/AU.php:19 -msgid "Victoria" -msgstr "ビクトリア" - -#: i18n/states/AU.php:20 -msgid "Western Australia" -msgstr "西オーストラリア州" - -#: i18n/states/BR.php:13 -msgid "Acre" -msgstr "エーカー" - -#: i18n/states/BR.php:14 -msgid "Alagoas" -msgstr "アラゴアス州" - -#: i18n/states/BR.php:15 -msgid "Amapá" -msgstr "アマパ" - -#: i18n/states/BR.php:16 -msgid "Amazonas" -msgstr "アマゾナス" - -#: i18n/states/BR.php:17 -msgid "Bahia" -msgstr "バイア州" - -#: i18n/states/BR.php:18 -msgid "Ceará" -msgstr "セアラー州" - -#: i18n/states/BR.php:19 -msgid "Distrito Federal" -msgstr "連邦区" - -#: i18n/states/BR.php:20 -msgid "Espírito Santo" -msgstr "エスピリトサント州" - -#: i18n/states/BR.php:21 -msgid "Goiás" -msgstr "ゴイアス" - -#: i18n/states/BR.php:22 -msgid "Maranhão" -msgstr "マラニョン" - -#: i18n/states/BR.php:23 -msgid "Mato Grosso" -msgstr "マトグロッソ州" - -#: i18n/states/BR.php:24 -msgid "Mato Grosso do Sul" -msgstr "マトグロッソドスル" - -#: i18n/states/BR.php:25 -msgid "Minas Gerais" -msgstr "ミナスジェライス州" - -#: i18n/states/BR.php:26 -msgid "Pará" -msgstr "パラー" - -#: i18n/states/BR.php:27 -msgid "Paraíba" -msgstr "パライバ" - -#: i18n/states/BR.php:28 -msgid "Paraná" -msgstr "パラナ" - -#: i18n/states/BR.php:29 -msgid "Pernambuco" -msgstr "ペルナンブコ州" - -#: i18n/states/BR.php:30 -msgid "Piauí" -msgstr "ピアウイ州" - -#: i18n/states/BR.php:31 -msgid "Rio de Janeiro" -msgstr "リオデジャネイロ" - -#: i18n/states/BR.php:32 -msgid "Rio Grande do Norte" -msgstr "リオグランデノルテ" - -#: i18n/states/BR.php:33 -msgid "Rio Grande do Sul" -msgstr "リオグランデドスル" - -#: i18n/states/BR.php:34 -msgid "Rondônia" -msgstr "ロンドニア" - -#: i18n/states/BR.php:35 -msgid "Roraima" -msgstr "ロライマ" - -#: i18n/states/BR.php:36 -msgid "Santa Catarina" -msgstr "サンタカタリナ州" - -#: i18n/states/BR.php:37 -msgid "São Paulo" -msgstr "サンパウロ" - -#: i18n/states/BR.php:38 -msgid "Sergipe" -msgstr "セルジペ州" - -#: i18n/states/BR.php:39 -msgid "Tocantins" -msgstr "トカンチンス" - -#: i18n/states/CA.php:13 -msgid "Alberta" -msgstr "アルバータ" - -#: i18n/states/CA.php:14 -msgid "British Columbia" -msgstr "ブリティッシュコロンビア州" - -#: i18n/states/CA.php:15 -msgid "Manitoba" -msgstr "マニトバ州" - -#: i18n/states/CA.php:16 -msgid "New Brunswick" -msgstr "ニューブランズウィック州" - -#: i18n/states/CA.php:17 -msgid "Newfoundland" -msgstr "ニューファンドランド島" - -#: i18n/states/CA.php:18 -msgid "Northwest Territories" -msgstr "ノースウェスト準州" - -#: i18n/states/CA.php:19 -msgid "Nova Scotia" -msgstr "ノバスコシア州" - -#: i18n/states/CA.php:20 -msgid "Nunavut" -msgstr "ヌナブト" - -#: i18n/states/CA.php:21 -msgid "Ontario" -msgstr "オンタリオ" - -#: i18n/states/CA.php:22 -msgid "Prince Edward Island" -msgstr "プリンスエドワード島" - -#: i18n/states/CA.php:23 -msgid "Quebec" -msgstr "ケベック" - -#: i18n/states/CA.php:24 -msgid "Saskatchewan" -msgstr "サスカチュワン州" - -#: i18n/states/CA.php:25 -msgid "Yukon Territory" -msgstr "ユーコン準州" - -#: i18n/states/CN.php:13 -msgid "Yunnan / 云南" -msgstr "雲南" - -#: i18n/states/CN.php:14 -msgid "Beijing / 北京" -msgstr "北京" - -#: i18n/states/CN.php:15 -msgid "Tianjin / 天津" -msgstr "天津" - -#: i18n/states/CN.php:16 -msgid "Hebei / 河北" -msgstr "河北" - -#: i18n/states/CN.php:17 -msgid "Shanxi / 山西" -msgstr "山西" - -#: i18n/states/CN.php:18 -msgid "Inner Mongolia / 內蒙古" -msgstr "内蒙古" - -#: i18n/states/CN.php:19 -msgid "Liaoning / 辽宁" -msgstr "遼寧" - -#: i18n/states/CN.php:20 -msgid "Jilin / 吉林" -msgstr "吉林" - -#: i18n/states/CN.php:21 -msgid "Heilongjiang / 黑龙江" -msgstr "黒竜江" - -#: i18n/states/CN.php:22 -msgid "Shanghai / 上海" -msgstr "上海" - -#: i18n/states/CN.php:23 -msgid "Jiangsu / 江苏" -msgstr "江蘇省" - -#: i18n/states/CN.php:24 -msgid "Zhejiang / 浙江" -msgstr "浙江省" - -#: i18n/states/CN.php:25 -msgid "Anhui / 安徽" -msgstr "安徽省" - -#: i18n/states/CN.php:26 -msgid "Fujian / 福建" -msgstr "福建省" - -#: i18n/states/CN.php:27 -msgid "Jiangxi / 江西" -msgstr "江西省" - -#: i18n/states/CN.php:28 -msgid "Shandong / 山东" -msgstr "山東省" - -#: i18n/states/CN.php:29 -msgid "Henan / 河南" -msgstr "河南省" - -#: i18n/states/CN.php:30 -msgid "Hubei / 湖北" -msgstr "湖北省" - -#: i18n/states/CN.php:31 -msgid "Hunan / 湖南" -msgstr "湖南" - -#: i18n/states/CN.php:32 -msgid "Guangdong / 广东" -msgstr "広東" - -#: i18n/states/CN.php:33 -msgid "Guangxi Zhuang / 广西壮族" -msgstr "広西チワン族自治区" - -#: i18n/states/CN.php:34 -msgid "Hainan / 海南" -msgstr "海南" - -#: i18n/states/CN.php:35 -msgid "Chongqing / 重庆" -msgstr "重慶市" - -#: i18n/states/CN.php:36 -msgid "Sichuan / 四川" -msgstr "四川省" - -#: i18n/states/CN.php:37 -msgid "Guizhou / 贵州" -msgstr "貴州省" - -#: i18n/states/CN.php:38 -msgid "Shaanxi / 陕西" -msgstr "陝西" - -#: i18n/states/CN.php:39 -msgid "Gansu / 甘肃" -msgstr "甘粛省" - -#: i18n/states/CN.php:40 -msgid "Qinghai / 青海" -msgstr "青海" - -#: i18n/states/CN.php:41 -msgid "Ningxia Hui / 宁夏" -msgstr "寧夏回族" - -#: i18n/states/CN.php:42 -msgid "Macau / 澳门" -msgstr "マカオ" - -#: i18n/states/CN.php:43 -msgid "Tibet / 西藏" -msgstr "チベット" - -#: i18n/states/CN.php:44 -msgid "Xinjiang / 新疆" -msgstr "新疆" - -#: i18n/states/HK.php:13 -msgid "Hong Kong Island" -msgstr "香港島" - -#: i18n/states/HK.php:14 -msgid "Kowloon" -msgstr "カオルーン" - -#: i18n/states/HK.php:15 -msgid "New Territories" -msgstr "新界" - -#: i18n/states/HU.php:13 -msgid "Bacs-Kiskun" -msgstr "バーチキシュクン" - -#: i18n/states/HU.php:14 -msgid "Bekes" -msgstr "ベーケシ" - -#: i18n/states/HU.php:15 -msgid "Baranya" -msgstr "バラニャ県" - -#: i18n/states/HU.php:16 -msgid "Borsod-Abauj-Zemplen" -msgstr "ボルショドアバウーイゼンプレーン" - -#: i18n/states/HU.php:17 -msgid "Budapest" -msgstr "ブダペスト" - -#: i18n/states/HU.php:18 -msgid "Csongrad" -msgstr "チョングラード" - -#: i18n/states/HU.php:19 -msgid "Fejer" -msgstr "フェイェール" - -#: i18n/states/HU.php:20 -msgid "Gy?r-Moson-Sopron" -msgstr "ジェールモションショプロン" - -#: i18n/states/HU.php:21 -msgid "Hajdu-Bihar" -msgstr "ドゥービハール" - -#: i18n/states/HU.php:22 -msgid "Heves" -msgstr "ヘヴェシュ県" - -#: i18n/states/HU.php:23 -msgid "Jasz-Nagykun-Szolnok" -msgstr "ヤースナジクンソルノク" - -#: i18n/states/HU.php:24 -msgid "Komarom-Esztergom" -msgstr "コマーロムエステルゴム" - -#: i18n/states/HU.php:25 -msgid "Nograd" -msgstr "" - -#: i18n/states/HU.php:26 -msgid "Pest" -msgstr "ペスト地区" - -#: i18n/states/HU.php:27 -msgid "Somogy" -msgstr "ショモジ県" - -#: i18n/states/HU.php:28 -msgid "Szabolcs-Szatmar-Bereg" -msgstr "ボルチサトマールベレグ" - -#: i18n/states/HU.php:29 -msgid "Tolna" -msgstr "トルナ県" - -#: i18n/states/HU.php:30 -msgid "Vas" -msgstr "ヴァシュ県" - -#: i18n/states/HU.php:31 -msgid "Veszprem" -msgstr "ヴェスプレーム" - -#: i18n/states/HU.php:32 -msgid "Zala" -msgstr "ザラ県" - -#: i18n/states/HZ.php:13 -msgid "Auckland" -msgstr "オークランド" - -#: i18n/states/HZ.php:14 -msgid "Bay of Plenty" -msgstr "プレンティー湾" - -#: i18n/states/HZ.php:15 -msgid "Canterbury" -msgstr "カンタベリー" - -#: i18n/states/HZ.php:16 -msgid "Hawke’s Bay" -msgstr "ホークスベイ" - -#: i18n/states/HZ.php:17 -msgid "Manawatu-Wanganui" -msgstr "マナワツ・ワンガヌイ" - -#: i18n/states/HZ.php:18 -msgid "Marlborough" -msgstr "マールバラ" - -#: i18n/states/HZ.php:19 -msgid "Nelson" -msgstr "ネルソン" - -#: i18n/states/HZ.php:20 -msgid "Northland" -msgstr "ノースランド" - -#: i18n/states/HZ.php:21 -msgid "Otago" -msgstr "オタゴ" - -#: i18n/states/HZ.php:22 -msgid "Southland" -msgstr "南部地方" - -#: i18n/states/HZ.php:23 -msgid "Taranaki" -msgstr "タラナキ" - -#: i18n/states/HZ.php:24 -msgid "Tasman" -msgstr "タスマン" - -#: i18n/states/HZ.php:25 -msgid "Waikato" -msgstr "ワイカト" - -#: i18n/states/HZ.php:26 -msgid "Wellington" -msgstr "ウェリントン" - -#: i18n/states/HZ.php:27 -msgid "West Coast" -msgstr "ウェストコースト" - -#: i18n/states/ID.php:13 -msgid "Daerah Istimewa Aceh" -msgstr "アチェ州" - -#: i18n/states/ID.php:14 -msgid "Sumatera Utara" -msgstr "北スマトラ州" - -#: i18n/states/ID.php:15 -msgid "Sumatera Barat" -msgstr "西スマトラ州" - -#: i18n/states/ID.php:16 -msgid "Riau" -msgstr "リアウ州" - -#: i18n/states/ID.php:17 -msgid "Kepulauan Riau" -msgstr "リアウ諸島州" - -#: i18n/states/ID.php:18 -msgid "Jambi" -msgstr "ジャンビ州" - -#: i18n/states/ID.php:19 -msgid "Sumatera Selatan" -msgstr "南スマトラ州" - -#: i18n/states/ID.php:20 -msgid "Bangka Belitung" -msgstr "バンカ・ブリトゥン州" - -#: i18n/states/ID.php:21 -msgid "Bengkulu" -msgstr "ブンクル州" - -#: i18n/states/ID.php:22 -msgid "Lampung" -msgstr "ランプン州" - -#: i18n/states/ID.php:23 -msgid "DKI Jakarta" -msgstr "ジャカルタ" - -#: i18n/states/ID.php:24 -msgid "Jawa Barat" -msgstr "西ジャワ州" - -#: i18n/states/ID.php:25 -msgid "Banten" -msgstr "バンテン州" - -#: i18n/states/ID.php:26 -msgid "Jawa Tengah" -msgstr "中部ジャワ州" - -#: i18n/states/ID.php:27 -msgid "Jawa Timur" -msgstr "東ジャワ州" - -#: i18n/states/ID.php:28 -msgid "Daerah Istimewa Yogyakarta" -msgstr "ジョグジャカルタ特別州" - -#: i18n/states/ID.php:29 -msgid "Bali" -msgstr "バリ島" - -#: i18n/states/ID.php:30 -msgid "Nusa Tenggara Barat" -msgstr "西ヌサ・トゥンガラ州" - -#: i18n/states/ID.php:31 -msgid "Nusa Tenggara Timur" -msgstr "東ヌサ・トゥンガラ州" - -#: i18n/states/ID.php:32 -msgid "Kalimantan Barat" -msgstr "西カリマンタン州" - -#: i18n/states/ID.php:33 -msgid "Kalimantan Tengah" -msgstr "中部カリマンタン州" - -#: i18n/states/ID.php:34 -msgid "Kalimantan Timur" -msgstr "東カリマンタン州" - -#: i18n/states/ID.php:35 -msgid "Kalimantan Selatan" -msgstr "南カリマンタン州" - -#: i18n/states/ID.php:36 -msgid "Kalimantan Utara" -msgstr "北カリマンタン" - -#: i18n/states/ID.php:37 -msgid "Sulawesi Utara" -msgstr "北スラウェシ州" - -#: i18n/states/ID.php:38 -msgid "Sulawesi Tengah" -msgstr "中部スラウェシ州" - -#: i18n/states/ID.php:39 -msgid "Sulawesi Tenggara" -msgstr "南東スラウェシ州" - -#: i18n/states/ID.php:40 -msgid "Sulawesi Barat" -msgstr "西スラウェシ州" - -#: i18n/states/ID.php:41 -msgid "Sulawesi Selatan" -msgstr "南スラウェシ州" - -#: i18n/states/ID.php:42 -msgid "Gorontalo" -msgstr "ゴロンタロ州" - -#: i18n/states/ID.php:43 -msgid "Maluku" -msgstr "モルッカ諸島" - -#: i18n/states/ID.php:44 -msgid "Maluku Utara" -msgstr "北マルク州" - -#: i18n/states/ID.php:45 -msgid "Papua" -msgstr "パプア州" - -#: i18n/states/ID.php:46 -msgid "Papua Barat" -msgstr "西パプア州" - -#: i18n/states/IN.php:13 -msgid "Andra Pradesh" -msgstr "アーンドラ・プラデーシュ州" - -#: i18n/states/IN.php:14 -msgid "Arunachal Pradesh" -msgstr "アルナーチャル・プラデーシュ州" - -#: i18n/states/IN.php:15 -msgid "Assam" -msgstr "アッサム州" - -#: i18n/states/IN.php:16 -msgid "Bihar" -msgstr "ビハール州" - -#: i18n/states/IN.php:17 -msgid "Chhattisgarh" -msgstr "チャッティースガル州" - -#: i18n/states/IN.php:18 -msgid "Goa" -msgstr "ゴア州" - -#: i18n/states/IN.php:19 -msgid "Gujarat" -msgstr "グジャラート州" - -#: i18n/states/IN.php:20 -msgid "Haryana" -msgstr "ハリヤーナー州" - -#: i18n/states/IN.php:21 -msgid "Himachal Pradesh" -msgstr "マーチャル・プラデーシュ州" - -#: i18n/states/IN.php:22 -msgid "Jammu and Kashmir" -msgstr "ジャンムー・カシミール州" - -#: i18n/states/IN.php:23 -msgid "Jharkhand" -msgstr "ジャールカンド州" - -#: i18n/states/IN.php:24 -msgid "Karnataka" -msgstr "カルナータカ州" - -#: i18n/states/IN.php:25 -msgid "Kerala" -msgstr "ケーララ州" - -#: i18n/states/IN.php:26 -msgid "Madhya Pradesh" -msgstr "マディヤ・プラデーシュ州" - -#: i18n/states/IN.php:27 -msgid "Maharashtra" -msgstr "マハーラーシュトラ州" - -#: i18n/states/IN.php:28 -msgid "Manipur" -msgstr "マニプル州" - -#: i18n/states/IN.php:29 -msgid "Meghalaya" -msgstr "メーガーラヤ州" - -#: i18n/states/IN.php:30 -msgid "Mizoram" -msgstr "ミゾラム州" - -#: i18n/states/IN.php:31 -msgid "Nagaland" -msgstr "ナガランド州" - -#: i18n/states/IN.php:32 -msgid "Orissa" -msgstr "オリッサ州" - -#: i18n/states/IN.php:33 -msgid "Punjab" -msgstr "パンジャーブ州" - -#: i18n/states/IN.php:34 -msgid "Rajasthan" -msgstr "ラージャスターン州" - -#: i18n/states/IN.php:35 -msgid "Sikkim" -msgstr "シッキム州" - -#: i18n/states/IN.php:36 -msgid "Tamil Nadu" -msgstr "タミル・ナードゥ州" - -#: i18n/states/IN.php:37 -msgid "Tripura" -msgstr "トリプラ州" - -#: i18n/states/IN.php:38 -msgid "Uttaranchal" -msgstr "ウッタラーカンド州" - -#: i18n/states/IN.php:39 -msgid "Uttar Pradesh" -msgstr "ウッタル・プラデーシュ州" - -#: i18n/states/IN.php:40 -msgid "West Bengal" -msgstr "西ベンガル州" - -#: i18n/states/IN.php:41 -msgid "Andaman and Nicobar Islands" -msgstr "アンダマン・ニコバル諸島" - -#: i18n/states/IN.php:42 -msgid "Chandigarh" -msgstr "チャンディーガル" - -#: i18n/states/IN.php:43 -msgid "Dadar and Nagar Haveli" -msgstr "ダードラー及びナガル・ハヴェーリー連邦直轄領" - -#: i18n/states/IN.php:44 -msgid "Daman and Diu" -msgstr "ダマン・ディーウ連邦直轄領" - -#: i18n/states/IN.php:45 -msgid "Delhi" -msgstr "デリー" - -#: i18n/states/IN.php:46 -msgid "Lakshadeep" -msgstr "ラクシャディープ諸島" - -#: i18n/states/IN.php:47 -msgid "Pondicherry (Puducherry)" -msgstr "ポンディシェリ" - -#: i18n/states/MY.php:13 -msgid "Johor" -msgstr "ジョホール州" - -#: i18n/states/MY.php:14 -msgid "Kedah" -msgstr "ケダ州" - -#: i18n/states/MY.php:15 -msgid "Kelantan" -msgstr "ケランタン州" - -#: i18n/states/MY.php:16 -msgid "Melaka" -msgstr "ムラカ州" - -#: i18n/states/MY.php:17 -msgid "Negeri Sembilan" -msgstr "ヌグリスンビラン州" - -#: i18n/states/MY.php:18 -msgid "Pahang" -msgstr "パハン州" - -#: i18n/states/MY.php:19 -msgid "Perak" -msgstr "ペラ州" - -#: i18n/states/MY.php:20 -msgid "Perlis" -msgstr "ペルリス" - -#: i18n/states/MY.php:21 -msgid "Pulau Pinang" -msgstr "ペナンペナン" - -#: i18n/states/MY.php:22 -msgid "Sabah" -msgstr "サバ州" - -#: i18n/states/MY.php:23 -msgid "Sarawak" -msgstr "サラワク州" - -#: i18n/states/MY.php:24 -msgid "Selangor" -msgstr "セランゴール州" - -#: i18n/states/MY.php:25 -msgid "Terengganu" -msgstr "トレンガヌ" - -#: i18n/states/MY.php:26 -msgid "W.P. Kuala Lumpur" -msgstr "クアラルンプール" - -#: i18n/states/MY.php:27 -msgid "W.P. Labuan" -msgstr "ラブアン" - -#: i18n/states/MY.php:28 -msgid "W.P. Putrajaya" -msgstr "プトラジャヤ" - -#: i18n/states/TH.php:13 -msgid "" -"Amnat Charoen (อำนาจเจร" -"ิญ)" -msgstr "アムナートチャルーン県" - -#: i18n/states/TH.php:14 -msgid "Ang Thong (อ่างทอง)" -msgstr "アーントーン県" - -#: i18n/states/TH.php:15 -msgid "" -"Ayutthaya (พระนครศรี" -"อยุธยา)" -msgstr "アユタヤ" - -#: i18n/states/TH.php:16 -msgid "" -"Bangkok (กรุงเทพมห" -"านคร)" -msgstr "バンコク" - -#: i18n/states/TH.php:17 -msgid "Bueng Kan (บึงกาฬ)" -msgstr "ブンカーン県" - -#: i18n/states/TH.php:18 -msgid "" -"Buri Ram (บุรีรัมย์)" -msgstr "ブリーラム県" - -#: i18n/states/TH.php:19 -msgid "" -"Chachoengsao (ฉะเชิงเทร" -"า)" -msgstr "チャチューンサオ県" - -#: i18n/states/TH.php:20 -msgid "Chai Nat (ชัยนาท)" -msgstr "チャイナート県" - -#: i18n/states/TH.php:21 -msgid "Chaiyaphum (ชัยภูมิ)" -msgstr "チャイヤプーム県" - -#: i18n/states/TH.php:22 -msgid "Chanthaburi (จันทบุรี)" -msgstr "チャンタブリー県" - -#: i18n/states/TH.php:23 -msgid "" -"Chiang Mai (เชียงใหม่)" -msgstr "チェンマイ" - -#: i18n/states/TH.php:24 -msgid "Chiang Rai (เชียงราย)" -msgstr "チエンラーイ県" - -#: i18n/states/TH.php:25 -msgid "Chonburi (ชลบุรี)" -msgstr "チョンブリー県" - -#: i18n/states/TH.php:26 -msgid "Chumphon (ชุมพร)" -msgstr "チュムポーン県" - -#: i18n/states/TH.php:27 -msgid "" -"Kalasin (กาฬสินธุ์)" -msgstr "カーラシン県" - -#: i18n/states/TH.php:28 -msgid "" -"Kamphaeng Phet (กำแพงเพช" -"ร)" -msgstr "カムペーンペット県" - -#: i18n/states/TH.php:29 -msgid "" -"Kanchanaburi (กาญจนบุร" -"ี)" -msgstr "カンチャナブリ" - -#: i18n/states/TH.php:30 -msgid "Khon Kaen (ขอนแก่น)" -msgstr "コーンケン県" - -#: i18n/states/TH.php:31 -msgid "Krabi (กระบี่)" -msgstr "クラビ" - -#: i18n/states/TH.php:32 -msgid "Lampang (ลำปาง)" -msgstr "ラムパーン県" - -#: i18n/states/TH.php:33 -msgid "Lamphun (ลำพูน)" -msgstr "ラムプーン県" - -#: i18n/states/TH.php:34 -msgid "Loei (เลย)" -msgstr "ルーイ県" - -#: i18n/states/TH.php:35 -msgid "Lopburi (ลพบุรี)" -msgstr "ロッブリー県" - -#: i18n/states/TH.php:36 -msgid "" -"Mae Hong Son (แม่ฮ่องสอ" -"น)" -msgstr "メーホンソーン県" - -#: i18n/states/TH.php:37 -msgid "" -"Maha Sarakham (มหาสารคา" -"ม)" -msgstr "マハーサーラカーム県" - -#: i18n/states/TH.php:38 -msgid "Mukdahan (มุกดาหาร)" -msgstr "ムックダーハーン県" - -#: i18n/states/TH.php:39 -msgid "Nakhon Nayok (นครนายก)" -msgstr "ナコーンナーヨック県" - -#: i18n/states/TH.php:40 -msgid "Nakhon Pathom (นครปฐม)" -msgstr "ナコーンパトム県" - -#: i18n/states/TH.php:41 -msgid "Nakhon Phanom (นครพนม)" -msgstr "ナコーンパノム県" - -#: i18n/states/TH.php:42 -msgid "" -"Nakhon Ratchasima (นครราชสี" -"มา)" -msgstr "ナコンラチャシマ" - -#: i18n/states/TH.php:43 -msgid "" -"Nakhon Sawan (นครสวรรค" -"์)" -msgstr "ナコーンサワン県" - -#: i18n/states/TH.php:44 -msgid "" -"Nakhon Si Thammarat (นครศรีธร" -"รมราช)" -msgstr "ナコーンシータンマラート県" - -#: i18n/states/TH.php:45 -msgid "Nan (น่าน)" -msgstr "ナン" - -#: i18n/states/TH.php:46 -msgid "Narathiwat (นราธิวาส)" -msgstr "ナラーティワート県" - -#: i18n/states/TH.php:47 -msgid "" -"Nong Bua Lam Phu (หนองบัวล" -"ำภู)" -msgstr "ノーンブワラムプー県" - -#: i18n/states/TH.php:48 -msgid "Nong Khai (หนองคาย)" -msgstr "ノーンカーイ県" - -#: i18n/states/TH.php:49 -msgid "Nonthaburi (นนทบุรี)" -msgstr "ノンタブリー県" - -#: i18n/states/TH.php:50 -msgid "Pathum Thani (ปทุมธานี)" -msgstr "パトゥムターニー県" - -#: i18n/states/TH.php:51 -msgid "Pattani (ปัตตานี)" -msgstr "パッターニー県" - -#: i18n/states/TH.php:52 -msgid "Phang Nga (พังงา)" -msgstr "パンガー県" - -#: i18n/states/TH.php:53 -msgid "Phatthalung (พัทลุง)" -msgstr "パッタルン県" - -#: i18n/states/TH.php:54 -msgid "Phayao (พะเยา)" -msgstr "パヤオ県" - -#: i18n/states/TH.php:55 -msgid "" -"Phetchabun (เพชรบูรณ์)" -msgstr "ペッチャブーン県" - -#: i18n/states/TH.php:56 -msgid "Phetchaburi (เพชรบุรี)" -msgstr "ペッチャブリー県" - -#: i18n/states/TH.php:57 -msgid "Phichit (พิจิตร)" -msgstr "ピチット県" - -#: i18n/states/TH.php:58 -msgid "Phitsanulok (พิษณุโลก)" -msgstr "ピッサヌローク県" - -#: i18n/states/TH.php:59 -msgid "Phrae (แพร่)" -msgstr "プレー県" - -#: i18n/states/TH.php:60 -msgid "Phuket (ภูเก็ต)" -msgstr "プーケット県" - -#: i18n/states/TH.php:61 -msgid "" -"Prachin Buri (ปราจีนบุร" -"ี)" -msgstr "プラーチーンブリー県" - -#: i18n/states/TH.php:62 -msgid "" -"Prachuap Khiri Khan (ประจวบคี" -"รีขันธ์)" -msgstr "プラチュワップキーリーカン県" - -#: i18n/states/TH.php:63 -msgid "Ranong (ระนอง)" -msgstr "ラノーン県" - -#: i18n/states/TH.php:64 -msgid "Ratchaburi (ราชบุรี)" -msgstr "ラーチャブリー県" - -#: i18n/states/TH.php:65 -msgid "Rayong (ระยอง)" -msgstr "ラヨーン県" - -#: i18n/states/TH.php:66 -msgid "Roi Et (ร้อยเอ็ด)" -msgstr "ローイエット県" - -#: i18n/states/TH.php:67 -msgid "Sa Kaeo (สระแก้ว)" -msgstr "サケーオ県" - -#: i18n/states/TH.php:68 -msgid "Sakon Nakhon (สกลนคร)" -msgstr "サコンナコーン県" - -#: i18n/states/TH.php:69 -msgid "" -"Samut Prakan (สมุทรปราก" -"าร)" -msgstr "サムットプラーカーン県" - -#: i18n/states/TH.php:70 -msgid "" -"Samut Sakhon (สมุทรสาค" -"ร)" -msgstr "サムットサーコーン県" - -#: i18n/states/TH.php:71 -msgid "" -"Samut Songkhram (สมุทรสงค" -"ราม)" -msgstr "サムットソンクラーム県" - -#: i18n/states/TH.php:72 -msgid "Saraburi (สระบุรี)" -msgstr "サラブリー県" - -#: i18n/states/TH.php:73 -msgid "Satun (สตูล)" -msgstr "サトゥーン県" - -#: i18n/states/TH.php:74 -msgid "" -"Sing Buri (สิงห์บุรี)" -msgstr "シンブリー県" - -#: i18n/states/TH.php:75 -msgid "Sisaket (ศรีสะเกษ)" -msgstr "シーサケート県" - -#: i18n/states/TH.php:76 -msgid "Songkhla (สงขลา)" -msgstr "ソンクラー県" - -#: i18n/states/TH.php:77 -msgid "Sukhothai (สุโขทัย)" -msgstr "スコータイ県" - -#: i18n/states/TH.php:78 -msgid "" -"Suphan Buri (สุพรรณบุร" -"ี)" -msgstr "スパンブリー県" - -#: i18n/states/TH.php:79 -msgid "" -"Surat Thani (สุราษฎร์ธ" -"านี)" -msgstr "スラートターニー県" - -#: i18n/states/TH.php:80 -msgid "Surin (สุรินทร์)" -msgstr "スリン県" - -#: i18n/states/TH.php:81 -msgid "Tak (ตาก)" -msgstr "ターク県" - -#: i18n/states/TH.php:82 -msgid "Trang (ตรัง)" -msgstr "トラン県" - -#: i18n/states/TH.php:83 -msgid "Trat (ตราด)" -msgstr "トラート県" - -#: i18n/states/TH.php:84 -msgid "" -"Ubon Ratchathani (อุบลราชธ" -"านี)" -msgstr "ウボンラーチャターニー県" - -#: i18n/states/TH.php:85 -msgid "Udon Thani (อุดรธานี)" -msgstr "ウドーンターニー県" - -#: i18n/states/TH.php:86 -msgid "" -"Uthai Thani (อุทัยธานี)" -msgstr "ウタイターニー県" - -#: i18n/states/TH.php:87 -msgid "" -"Uttaradit (อุตรดิตถ์)" -msgstr "ウッタラディット県" - -#: i18n/states/TH.php:88 -msgid "Yala (ยะลา)" -msgstr "ヤラー県" - -#: i18n/states/TH.php:89 -msgid "Yasothon (ยโสธร)" -msgstr "ヤソートーン県" - -#: i18n/states/US.php:13 -msgid "Alabama" -msgstr "アラバマ州" - -#: i18n/states/US.php:14 -msgid "Alaska" -msgstr "アラスカ州" - -#: i18n/states/US.php:15 -msgid "Arizona" -msgstr "アリゾナ州" - -#: i18n/states/US.php:16 -msgid "Arkansas" -msgstr "アーカンソー州" - -#: i18n/states/US.php:17 -msgid "California" -msgstr "カリフォルニア州" - -#: i18n/states/US.php:18 -msgid "Colorado" -msgstr "コロラド州" - -#: i18n/states/US.php:19 -msgid "Connecticut" -msgstr "コネチカット州" - -#: i18n/states/US.php:20 -msgid "Delaware" -msgstr "デラウェア州" - -#: i18n/states/US.php:21 -msgid "District Of Columbia" -msgstr "コロンビア特別区" - -#: i18n/states/US.php:22 -msgid "Florida" -msgstr "フロリダ州" - -#: i18n/states/US.php:24 -msgid "Hawaii" -msgstr "ハワイ" - -#: i18n/states/US.php:25 -msgid "Idaho" -msgstr "アイダホ州" - -#: i18n/states/US.php:26 -msgid "Illinois" -msgstr "イリノイ州" - -#: i18n/states/US.php:27 -msgid "Indiana" -msgstr "インディアナ州" - -#: i18n/states/US.php:28 -msgid "Iowa" -msgstr "アイオワ州" - -#: i18n/states/US.php:29 -msgid "Kansas" -msgstr "カンザス州" - -#: i18n/states/US.php:30 -msgid "Kentucky" -msgstr "ケンタッキー州" - -#: i18n/states/US.php:31 -msgid "Louisiana" -msgstr "ルイジアナ州" - -#: i18n/states/US.php:32 -msgid "Maine" -msgstr "メイン州" - -#: i18n/states/US.php:33 -msgid "Maryland" -msgstr "メリーランド州" - -#: i18n/states/US.php:34 -msgid "Massachusetts" -msgstr "マサチューセッツ州" - -#: i18n/states/US.php:35 -msgid "Michigan" -msgstr "ミシガン州" - -#: i18n/states/US.php:36 -msgid "Minnesota" -msgstr "ミネソタ州" - -#: i18n/states/US.php:37 -msgid "Mississippi" -msgstr "ミシシッピー州" - -#: i18n/states/US.php:38 -msgid "Missouri" -msgstr "ミズーリ州" - -#: i18n/states/US.php:39 -msgid "Montana" -msgstr "モンタナ州" - -#: i18n/states/US.php:40 -msgid "Nebraska" -msgstr "ネブラスカ州" - -#: i18n/states/US.php:41 -msgid "Nevada" -msgstr "ネバダ州" - -#: i18n/states/US.php:42 -msgid "New Hampshire" -msgstr "ニューハンプシャー州" - -#: i18n/states/US.php:43 -msgid "New Jersey" -msgstr "ニュージャージー州" - -#: i18n/states/US.php:44 -msgid "New Mexico" -msgstr "ニューメキシコ州" - -#: i18n/states/US.php:45 -msgid "New York" -msgstr "ニューヨーク州" - -#: i18n/states/US.php:46 -msgid "North Carolina" -msgstr "ノースカロライナ州" - -#: i18n/states/US.php:47 -msgid "North Dakota" -msgstr "ノースダコタ州" - -#: i18n/states/US.php:48 -msgid "Ohio" -msgstr "オハイオ州" - -#: i18n/states/US.php:49 -msgid "Oklahoma" -msgstr "オクラホマ州" - -#: i18n/states/US.php:50 -msgid "Oregon" -msgstr "オレゴン州" - -#: i18n/states/US.php:51 -msgid "Pennsylvania" -msgstr "ペンシルベニア州" - -#: i18n/states/US.php:52 -msgid "Rhode Island" -msgstr "ロードアイランド州" - -#: i18n/states/US.php:53 -msgid "South Carolina" -msgstr "サウスカロライナ州" - -#: i18n/states/US.php:54 -msgid "South Dakota" -msgstr "サウスダコタ州" - -#: i18n/states/US.php:55 -msgid "Tennessee" -msgstr "テネシー州" - -#: i18n/states/US.php:56 -msgid "Texas" -msgstr "テキサス州" - -#: i18n/states/US.php:57 -msgid "Utah" -msgstr "ユタ州" - -#: i18n/states/US.php:58 -msgid "Vermont" -msgstr "バーモント州" - -#: i18n/states/US.php:59 -msgid "Virginia" -msgstr "バージニア州" - -#: i18n/states/US.php:60 -msgid "Washington" -msgstr "ワシントン州" - -#: i18n/states/US.php:61 -msgid "West Virginia" -msgstr "ウェストバージニア州" - -#: i18n/states/US.php:62 -msgid "Wisconsin" -msgstr "ウィスコンシン州" - -#: i18n/states/US.php:63 -msgid "Wyoming" -msgstr "ワイオミング州" - -#: i18n/states/US.php:64 -msgid "Armed Forces (AA)" -msgstr "国軍(AA)" - -#: i18n/states/US.php:65 -msgid "Armed Forces (AE)" -msgstr "国軍(AE)" - -#: i18n/states/US.php:66 -msgid "Armed Forces (AP)" -msgstr "国軍(AP)" - -#: i18n/states/US.php:67 -msgid "American Samoa" -msgstr "米サモア" - -#: i18n/states/US.php:68 -msgid "Guam" -msgstr "グアム" - -#: i18n/states/US.php:69 -msgid "Northern Mariana Islands" -msgstr "北マリアナ諸島連邦" - -#: i18n/states/US.php:70 -msgid "Puerto Rico" -msgstr "プエルトリコ" - -#: i18n/states/US.php:71 -msgid "US Minor Outlying Islands" -msgstr "米国の小離島" - -#: i18n/states/US.php:72 -msgid "US Virgin Islands" -msgstr "米領バージン諸島" - -#: i18n/states/ZA.php:13 -msgid "Eastern Cape" -msgstr "東ケープ州" - -#: i18n/states/ZA.php:14 -msgid "Free State" -msgstr "Free State" - -#: i18n/states/ZA.php:15 -msgid "Gauteng" -msgstr "ハウテン州" - -#: i18n/states/ZA.php:16 -msgid "KwaZulu-Natal" -msgstr "クワズール・ナタール州" - -#: i18n/states/ZA.php:17 -msgid "Limpopo" -msgstr "リンポポ州" - -#: i18n/states/ZA.php:18 -msgid "Mpumalanga" -msgstr "ムプマランガ州" - -#: i18n/states/ZA.php:19 -msgid "Northern Cape" -msgstr "北ケープ州" - -#: i18n/states/ZA.php:20 -msgid "North West" -msgstr "北西部" - -#: i18n/states/ZA.php:21 -msgid "Western Cape" -msgstr "西ケープ州" - -#: i18n/states/JP.php:13 -msgid "Hokkaido" -msgstr "北海道" - -#: i18n/states/JP.php:14 -msgid "Aomori" -msgstr "青森" - -#: i18n/states/JP.php:15 -msgid "Iwate" -msgstr "岩手" - -#: i18n/states/JP.php:16 -msgid "Miyagi" -msgstr "宮城" - -#: i18n/states/JP.php:17 -msgid "Akita" -msgstr "秋田" - -#: i18n/states/JP.php:18 -msgid "Yamagata" -msgstr "山形" - -#: i18n/states/JP.php:19 -msgid "Fukushima" -msgstr "福島" - -#: i18n/states/JP.php:20 -msgid "Ibaraki" -msgstr "茨城" - -#: i18n/states/JP.php:21 -msgid "Tochigi" -msgstr "栃木" - -#: i18n/states/JP.php:22 -msgid "Gunma" -msgstr "群馬" - -#: i18n/states/JP.php:23 -msgid "Saitama" -msgstr "埼玉" - -#: i18n/states/JP.php:24 -msgid "Chiba" -msgstr "千葉" - -#: i18n/states/JP.php:25 -msgid "Tokyo" -msgstr "東京" - -#: i18n/states/JP.php:26 -msgid "Kanagawa" -msgstr "神奈川" - -#: i18n/states/JP.php:27 -msgid "Niigata" -msgstr "新潟" - -#: i18n/states/JP.php:28 -msgid "Toyama" -msgstr "富山" - -#: i18n/states/JP.php:29 -msgid "Ishikawa" -msgstr "石川" - -#: i18n/states/JP.php:30 -msgid "Fukui" -msgstr "福井" - -#: i18n/states/JP.php:31 -msgid "Yamanashi" -msgstr "山梨" - -#: i18n/states/JP.php:32 -msgid "Nagano" -msgstr "長野" - -#: i18n/states/JP.php:33 -msgid "Gifu" -msgstr "岐阜" - -#: i18n/states/JP.php:34 -msgid "Shizuoka" -msgstr "静岡" - -#: i18n/states/JP.php:35 -msgid "Aichi" -msgstr "愛知" - -#: i18n/states/JP.php:36 -msgid "Mie" -msgstr "三重" - -#: i18n/states/JP.php:37 -msgid "Shiga" -msgstr "滋賀" - -#: i18n/states/JP.php:38 -msgid "Kyouto" -msgstr "京都" - -#: i18n/states/JP.php:39 -msgid "Osaka" -msgstr "大坂" - -#: i18n/states/JP.php:40 -msgid "Hyougo" -msgstr "兵庫" - -#: i18n/states/JP.php:41 -msgid "Nara" -msgstr "奈良" - -#: i18n/states/JP.php:42 -msgid "Wakayama" -msgstr "和歌山" - -#: i18n/states/JP.php:43 -msgid "Tottori" -msgstr "鳥取" - -#: i18n/states/JP.php:44 -msgid "Shimane" -msgstr "島根" - -#: i18n/states/JP.php:45 -msgid "Okayama" -msgstr "岡山" - -#: i18n/states/JP.php:46 -msgid "Hiroshima" -msgstr "広島" - -#: i18n/states/JP.php:47 -msgid "Yamaguchi" -msgstr "山口" - -#: i18n/states/JP.php:48 -msgid "Tokushima" -msgstr "徳島" - -#: i18n/states/JP.php:49 -msgid "Kagawa" -msgstr "香川" - -#: i18n/states/JP.php:50 -msgid "Ehime" -msgstr "愛媛" - -#: i18n/states/JP.php:51 -msgid "Kochi" -msgstr "高知" - -#: i18n/states/JP.php:52 -msgid "Fukuoka" -msgstr "福岡" - -#: i18n/states/JP.php:53 -msgid "Saga" -msgstr "佐賀" - -#: i18n/states/JP.php:54 -msgid "Nagasaki" -msgstr "長崎" - -#: i18n/states/JP.php:55 -msgid "Kumamoto" -msgstr "熊本" - -#: i18n/states/JP.php:56 -msgid "Oita" -msgstr "大分" - -#: i18n/states/JP.php:57 -msgid "Miyazaki" -msgstr "宮崎" - -#: i18n/states/JP.php:58 -msgid "Kagoshima" -msgstr "鹿児島" - -#: i18n/states/JP.php:59 -msgid "Okinawa" -msgstr "沖縄" - -#: i18n/strings.php:16 -msgid "pending" -msgstr "未確定" - -#: i18n/strings.php:17 -msgid "failed" -msgstr "失敗" - -#: i18n/strings.php:18 -msgid "on-hold" -msgstr "保留" - -#: i18n/strings.php:19 -msgid "processing" -msgstr "処理中" - -#: i18n/strings.php:20 -msgid "completed" -msgstr "完了" - -#: i18n/strings.php:21 -msgid "refunded" -msgstr "払い戻し" - -#: i18n/strings.php:22 -msgid "cancelled" -msgstr "キャンセル" - -#: templates/cart/cart-empty.php:14 -msgid "Your cart is currently empty." -msgstr "現在カートは空です" - -#: templates/cart/cart-empty.php:18 -msgid "← Return To Shop" -msgstr "← ショップに戻る" - -#: templates/cart/cart.php:28 templates/checkout/form-pay.php:19 -#: templates/checkout/review-order.php:21 -#: templates/emails/admin-new-order.php:22 -#: templates/emails/customer-completed-order.php:23 -#: templates/emails/customer-invoice.php:27 -#: templates/emails/customer-note.php:27 -#: templates/emails/customer-processing-order.php:23 -#: templates/order/order-details.php:20 woocommerce.php:949 -msgid "Product" -msgstr "商品" - -#: templates/cart/cart.php:29 templates/emails/admin-new-order.php:24 -#: templates/emails/customer-completed-order.php:25 -#: templates/emails/customer-invoice.php:29 -#: templates/emails/customer-note.php:29 -#: templates/emails/customer-processing-order.php:25 -msgid "Price" -msgstr "金額" - -#: templates/cart/cart.php:30 templates/emails/admin-new-order.php:23 -#: templates/emails/customer-completed-order.php:24 -#: templates/emails/customer-invoice.php:28 -#: templates/emails/customer-note.php:28 -#: templates/emails/customer-processing-order.php:24 -msgid "Quantity" -msgstr "数" - -#: templates/cart/cart.php:31 templates/checkout/review-order.php:22 -#: templates/myaccount/my-orders.php:35 templates/order/order-details.php:21 -msgid "Total" -msgstr "合計" - -#: templates/cart/cart.php:47 -msgid "Remove this item" -msgstr "この項目を削除" - -#: templates/cart/cart.php:100 -#: templates/single-product/add-to-cart/quantity.php:13 -msgctxt "Product quantity input tooltip" -msgid "Qty" -msgstr "数量" - -#: templates/cart/cart.php:127 woocommerce.php:1062 -msgid "Coupon" -msgstr "クーポン" - -#: templates/cart/cart.php:127 templates/checkout/form-coupon.php:29 -msgid "Apply Coupon" -msgstr "クーポンを適用" - -#: templates/cart/cart.php:134 -msgid "Update Cart" -msgstr "カートを更新" - -#: templates/cart/cart.php:134 -msgid "Proceed to Checkout →" -msgstr "お支払いに移ります →" - -#: templates/cart/cross-sells.php:40 -msgid "You may be interested in…" -msgstr "興味がある可能性アリ…" - -#: templates/cart/mini-cart.php:55 -msgid "No products in the cart." -msgstr "カートの中に商品はございません" - -#: templates/cart/mini-cart.php:63 templates/cart/totals.php:92 -#: templates/checkout/review-order.php:93 -msgid "Subtotal" -msgstr "小計" - -#: templates/cart/mini-cart.php:69 -msgid "Checkout →" -msgstr "お支払い →" - -#: templates/cart/shipping-calculator.php:20 -msgid "Calculate Shipping" -msgstr "送料を計算" - -#: templates/cart/shipping-calculator.php:24 woocommerce-template.php:1327 -msgid "Select a country…" -msgstr "国を選択…" - -#: templates/cart/shipping-calculator.php:42 -#: templates/cart/shipping-calculator.php:50 -#: templates/cart/shipping-calculator.php:61 -msgid "State / county" -msgstr "都道府県 / 国" - -#: templates/cart/shipping-calculator.php:50 woocommerce-template.php:1377 -msgid "Select a state…" -msgstr "都道府県を選択…" - -#: templates/cart/shipping-calculator.php:71 -msgid "Update Totals" -msgstr "合計を更新" - -#: templates/cart/shipping-methods.php:32 -msgid "Free" -msgstr "無料" - -#: templates/cart/shipping-methods.php:67 -msgid "Please fill in your details to see available shipping methods." -msgstr "利用可能な配送方法を確認する為、詳細情報を記入してください。" - -#: templates/cart/shipping-methods.php:69 -msgid "" -"Sorry, it seems that there are no available shipping methods for your state. " -"Please contact us if you require assistance or wish to make alternate " -"arrangements." -msgstr "" -"申し訳ありませんが、今の状況では利用可能な配送方法はないように思えます。ご不" -"明な点はお問い合わせください。" - -#: templates/cart/totals.php:22 -msgid "Cart Totals" -msgstr "カートの合計" - -#: templates/cart/totals.php:28 templates/checkout/review-order.php:27 -msgid "Cart Subtotal" -msgstr "カート小計" - -#: templates/cart/totals.php:35 templates/checkout/review-order.php:34 -#: woocommerce.php:1655 -msgid "Cart Discount" -msgstr "カートの割引" - -#: templates/cart/totals.php:35 templates/cart/totals.php:120 -msgid "[Remove]" -msgstr "[削除]" - -#: templates/cart/totals.php:46 templates/checkout/review-order.php:45 -msgid "Shipping" -msgstr "配送料" - -#: templates/cart/totals.php:120 templates/checkout/review-order.php:124 -msgid "Order Discount" -msgstr "注文の割引" - -#: templates/cart/totals.php:129 templates/checkout/review-order.php:133 -msgid "Order Total" -msgstr "注文合計" - -#: templates/cart/totals.php:161 -msgid " (taxes estimated for %s)" -msgstr "(推定の税額 %s)" - -#: templates/cart/totals.php:163 -msgid "" -"Note: Shipping and taxes are estimated%s and will be updated during checkout " -"based on your billing and shipping information." -msgstr "" -"注意:送料と税金は、推定%sとし、支払い方法や配送情報に基づいて、精算時に更新" -"されます。" - -#: templates/cart/totals.php:175 -msgid "" -"No shipping methods were found; please recalculate your shipping and enter " -"your state/county and zip/postcode to ensure there are no other available " -"methods for your location." -msgstr "" -"配送方法が見つかりませんでした; 国、都道府県、郵便番号を入力後、送料を再計算" -"して下さい。" - -#: templates/cart/totals.php:183 -msgid "" -"Sorry, it seems that there are no available shipping methods for your " -"location (%s)." -msgstr "申し訳ありませんが、利用可能な配送方法が存在しません (%s)。" - -#: templates/cart/totals.php:185 -msgid "" -"If you require assistance or wish to make alternate arrangements please " -"contact us." -msgstr "ご不明な点があればお問い合わせください。" - -#: templates/checkout/cart-errors.php:16 -msgid "" -"There are some issues with the items in your cart (shown above). Please go " -"back to the cart page and resolve these issues before checking out." -msgstr "" -"カート内アイテムにはいくつかの問題があります(上記を参照)。カートページに戻" -"り、精算前に問題点を解決して下さい。" - -#: templates/checkout/cart-errors.php:20 -msgid "← Return To Cart" -msgstr "← カートに戻る" - -#: templates/checkout/form-billing.php:17 -msgid "Billing & Shipping" -msgstr "請求 & 配送" - -#: templates/checkout/form-billing.php:21 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:19 templates/myaccount/my-address.php:25 -#: templates/order/order-details.php:106 -msgid "Billing Address" -msgstr "お客様住所" - -#: templates/checkout/form-billing.php:42 -msgid "Create an account?" -msgstr "アカウントを作成しますか?" - -#: templates/checkout/form-billing.php:51 -msgid "" -"Create an account by entering the information below. If you are a returning " -"customer please login at the top of the page." -msgstr "" -"下記の情報を入力してアカウントを作成して下さい。再来店の際は、ページ上部でロ" -"グインして下さい。" - -#: templates/checkout/form-checkout.php:20 -msgid "You must be logged in to checkout." -msgstr "精算する為にはログインして下さい" - -#: templates/checkout/form-checkout.php:51 -msgid "Your order" -msgstr "ご注文" - -#: templates/checkout/form-coupon.php:17 -msgid "Have a coupon?" -msgstr "クーポンをお持ちですか? -" - -#: templates/checkout/form-coupon.php:20 -msgid "Click here to enter your code" -msgstr "コード入力はこちらから" - -#: templates/checkout/form-coupon.php:25 -msgid "Coupon code" -msgstr "クーポンコード" - -#: templates/checkout/form-login.php:14 -msgid "Returning customer?" -msgstr "※登録無しでもお買い物は可能です / 登録済みの方 -" - -#: templates/checkout/form-login.php:17 -msgid "Click here to login" -msgstr "ログインはこちらから" - -#: templates/checkout/form-login.php:22 -msgid "" -"If you have shopped with us before, please enter your details in the boxes " -"below. If you are a new customer please proceed to the Billing & " -"Shipping section." -msgstr "" -"以前に買い物をしている場合は、下のボックスに詳細を入力してください。新規のお" -"客様である場合は、お客様情報(ご自身住所および配送先)セクションまでお進みく" -"ださい。" - -#: templates/checkout/form-pay.php:20 -msgid "Qty" -msgstr "数量" - -#: templates/checkout/form-pay.php:21 -msgid "Totals" -msgstr "合計" - -#: templates/checkout/form-pay.php:78 -msgid "" -"Sorry, it seems that there are no available payment methods for your " -"location. Please contact us if you require assistance or wish to make " -"alternate arrangements." -msgstr "" -"申し訳ありませんが、あなたの所在地での利用可能な支払方法はないように思えま" -"す。ご不明な点はお問い合わせください" - -#: templates/checkout/form-pay.php:87 -msgid "Pay for order" -msgstr "注文の支払い" - -#: templates/checkout/form-shipping.php:32 -msgid "Ship to billing address?" -msgstr "配送先は同じ住所" - -#: templates/checkout/form-shipping.php:35 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:20 templates/order/order-details.php:121 -msgid "Shipping Address" -msgstr "配送先住所" - -#: templates/checkout/form-shipping.php:59 -#: templates/single-product/tabs/additional-information.php:14 -#: woocommerce-template.php:756 -msgid "Additional Information" -msgstr "追加情報" - -#: templates/checkout/review-order.php:217 -msgid "Please fill in your details above to see available payment methods." -msgstr "利用可能な支払い方法を確認し、上記に詳細を記入してください。" - -#: templates/checkout/review-order.php:219 -msgid "" -"Sorry, it seems that there are no available payment methods for your state. " -"Please contact us if you require assistance or wish to make alternate " -"arrangements." -msgstr "" -"申し訳ありませんが、今の状況では利用可能な支払方法はないように思えます。ご不" -"明な点はお問い合わせください。" - -#: templates/checkout/review-order.php:228 -msgid "" -"Since your browser does not support JavaScript, or it is disabled, please " -"ensure you click the Update Totals button before placing your " -"order. You may be charged more than the amount stated above if you fail to " -"do so." -msgstr "" -"お使いのブラウザはJavaScriptをサポートしていないか、無効になっています。注文" -"の前にアップデートボタンで合計できることを確認して下さい。" - -#: templates/checkout/review-order.php:228 -msgid "Update totals" -msgstr "合計を更新" - -#: templates/checkout/review-order.php:234 -msgid "Place order" -msgstr "注文する" - -#: templates/checkout/review-order.php:238 -msgid "I have read and accept the" -msgstr "私は読んで同意しています" - -#: templates/checkout/review-order.php:238 -msgid "terms & conditions" -msgstr "利用規約" - -#: templates/checkout/thankyou.php:18 -msgid "" -"Unfortunately your order cannot be processed as the originating bank/" -"merchant has declined your transaction." -msgstr "残念ながら注文が完了となりません。銀行が支払処理を拒否しました。" - -#: templates/checkout/thankyou.php:22 -msgid "Please attempt your purchase again or go to your account page." -msgstr "" -"再度、ご購入を行ってみてください。またはアカウントページにアクセスして下さ" -"い。" - -#: templates/checkout/thankyou.php:24 -msgid "Please attempt your purchase again." -msgstr "再度、ご購入を行ってみてください" - -#: templates/checkout/thankyou.php:36 templates/checkout/thankyou.php:67 -msgid "Thank you. Your order has been received." -msgstr "ありがとうございます。ご注文を受け取りました。" - -#: templates/emails/admin-new-order.php:13 -#: templates/emails/plain/admin-new-order.php:13 -msgid "You have received an order from %s. Their order is as follows:" -msgstr "%s 様から注文を受けています。注文は以下の通りです。" - -#: templates/emails/admin-new-order.php:17 -msgid "Order: %s" -msgstr "注文: %s" - -#: templates/emails/admin-new-order.php:50 -#: templates/emails/customer-completed-order.php:51 -#: templates/emails/customer-note.php:55 -#: templates/emails/customer-processing-order.php:51 -#: templates/emails/plain/admin-new-order.php:38 -#: templates/order/order-details.php:88 -msgid "Customer details" -msgstr "お客様詳細" - -#: templates/emails/admin-new-order.php:53 -#: templates/emails/customer-completed-order.php:54 -#: templates/emails/customer-note.php:58 -#: templates/emails/customer-processing-order.php:54 -#: templates/emails/plain/admin-new-order.php:41 -#: templates/emails/plain/customer-completed-order.php:41 -#: templates/emails/plain/customer-note.php:49 -#: templates/emails/plain/customer-processing-order.php:41 -#: templates/order/order-details.php:92 -msgid "Email:" -msgstr "Eメール:" - -#: templates/emails/admin-new-order.php:56 -#: templates/emails/customer-completed-order.php:57 -#: templates/emails/customer-note.php:61 -#: templates/emails/customer-processing-order.php:57 -#: templates/emails/plain/admin-new-order.php:44 -#: templates/emails/plain/customer-completed-order.php:44 -#: templates/emails/plain/customer-note.php:52 -#: templates/emails/plain/customer-processing-order.php:44 -msgid "Tel:" -msgstr "電話番号:" - -#: templates/emails/customer-completed-order.php:14 -#: templates/emails/plain/customer-completed-order.php:13 -msgid "" -"Hi there. Your recent order on %s has been completed. Your order details are " -"shown below for your reference:" -msgstr "こんにちは。%s での注文が完了しました。注文詳細は以下の通りです。" - -#: templates/emails/customer-invoice.php:16 -#: templates/emails/plain/customer-invoice.php:14 -msgid "" -"An order has been created for you on %s. To pay for this order please use " -"the following link: %s" -msgstr "" -"注文 %s はあなたのために作成されています。この注文の支払いには以下のリンクを" -"ご利用ください。: %s" - -#: templates/emails/customer-invoice.php:16 -msgid "pay" -msgstr "お支払い" - -#: templates/emails/customer-new-account.php:14 -#: templates/emails/plain/customer-new-account.php:13 -msgid "" -"Thanks for creating an account on %s. Your username is %s." -msgstr "" -"%s のアカウントを作成して頂きありがとうございます。あなたのユーザー名は " -"%s です。" - -#: templates/emails/customer-new-account.php:16 -#: templates/emails/plain/customer-new-account.php:15 -msgid "You can access your account area here: %s." -msgstr "ここであなたのアカウントエリアにアクセスできます: %s" - -#: templates/emails/customer-note.php:14 -#: templates/emails/plain/customer-note.php:13 -msgid "Hello, a note has just been added to your order:" -msgstr "丁度今、注文にメモが追加されました:" - -#: templates/emails/customer-note.php:18 -#: templates/emails/plain/customer-note.php:21 -msgid "For your reference, your order details are shown below." -msgstr "参考までに、ご注文の詳細は以下の通りです" - -#: templates/emails/customer-processing-order.php:14 -#: templates/emails/plain/customer-processing-order.php:13 -msgid "" -"Your order has been received and is now being processed. Your order details " -"are shown below for your reference:" -msgstr "" -"ご注文が受信されており現在処理されています。ご注文の詳細は以下のとおりです。" - -#: templates/emails/customer-reset-password.php:14 -#: templates/emails/plain/customer-reset-password.php:13 -msgid "Someone requested that the password be reset for the following account:" -msgstr "パスワードを次のアカウントにリセットされることを要請されました:" - -#: templates/emails/customer-reset-password.php:15 -#: templates/emails/plain/customer-reset-password.php:15 -msgid "Username: %s" -msgstr "ユーザーネーム: %s" - -#: templates/emails/customer-reset-password.php:16 -#: templates/emails/plain/customer-reset-password.php:16 -msgid "If this was a mistake, just ignore this email and nothing will happen." -msgstr "これが間違いだった場合は、このメールを無視して下さい。" - -#: templates/emails/customer-reset-password.php:17 -#: templates/emails/plain/customer-reset-password.php:17 -msgid "To reset your password, visit the following address:" -msgstr "パスワードをリセットするには以下のアドレスを参照してください:" - -#: templates/emails/customer-reset-password.php:20 -msgid "Click here to reset your password" -msgstr "パスワードをリセットするにはここをクリック" - -#: templates/emails/email-addresses.php:18 -#: templates/emails/plain/email-addresses.php:12 -msgid "Billing address" -msgstr "お客様情報" - -#: templates/emails/email-addresses.php:28 -#: templates/emails/plain/email-addresses.php:17 -msgid "Shipping address" -msgstr "配送先住所" - -#: templates/emails/email-order-items.php:40 -msgid "Download %d:" -msgstr "ダウンロード %d:" - -#: templates/emails/email-order-items.php:42 -msgid "Download:" -msgstr "ダウンロード:" - -#: templates/emails/plain/admin-new-order.php:19 -#: templates/emails/plain/customer-completed-order.php:19 -#: templates/emails/plain/customer-invoice.php:20 -#: templates/emails/plain/customer-note.php:27 -#: templates/emails/plain/customer-processing-order.php:19 -msgid "Order number: %s" -msgstr "注文番号: %s" - -#: templates/emails/plain/admin-new-order.php:20 -#: templates/emails/plain/customer-completed-order.php:20 -#: templates/emails/plain/customer-invoice.php:21 -#: templates/emails/plain/customer-note.php:28 -#: templates/emails/plain/customer-processing-order.php:20 -msgid "Order date: %s" -msgstr "注文日時: %s" - -#: templates/emails/plain/admin-new-order.php:20 -msgid "jS F Y" -msgstr "Y年 F j日" - -#: templates/emails/plain/customer-completed-order.php:38 -#: templates/emails/plain/customer-note.php:46 -#: templates/emails/plain/customer-processing-order.php:38 -msgid "Your details" -msgstr "詳細" - -#: templates/emails/plain/email-order-items.php:28 -msgid "Quantity: %s" -msgstr "数量: %s" - -#: templates/emails/plain/email-order-items.php:31 -msgid "Cost: %s" -msgstr "金額: %s" - -#: templates/loop/add-to-cart.php:17 templates/loop/add-to-cart.php:41 -#: templates/loop/add-to-cart.php:50 -msgid "Read More" -msgstr "続きを読む" - -#: templates/loop/add-to-cart.php:33 -msgid "Select options" -msgstr "オプションを選択" - -#: templates/loop/add-to-cart.php:37 -msgid "View options" -msgstr "オプションを表示" - -#: templates/loop/no-products-found.php:14 templates/loop-shop.php:40 -msgid "No products found which match your selection." -msgstr "一致する製品は見つかりません" - -#: templates/loop/orderby.php:21 -msgid "Default sorting" -msgstr "デフォルト表示" - -#: templates/loop/orderby.php:22 -msgid "Sort by popularity" -msgstr "人気順による並べ替え" - -#: templates/loop/orderby.php:23 -msgid "Sort by average rating" -msgstr "平均格付けで並べ替え" - -#: templates/loop/orderby.php:24 -msgid "Sort by newness" -msgstr "新着に並べ替え" - -#: templates/loop/orderby.php:25 -msgid "Sort by price: low to high" -msgstr "安いものから高いものへ:価格で並べ替え" - -#: templates/loop/orderby.php:26 -msgid "Sort by price: high to low" -msgstr "高いものから安いものへ:価格で並べ替え" - -#: templates/loop/result-count.php:28 -msgid "Showing the single result" -msgstr "単一の結果を表示" - -#: templates/loop/result-count.php:30 -msgid "Showing all %d results" -msgstr "全 %d を表示" - -#: templates/loop/result-count.php:32 -msgctxt "%1$d = first, %2$d = last, %3$d = total" -msgid "Showing %1$d?%2$d of %3$d results" -msgstr "" - -#: templates/loop/sale-flash.php:16 templates/single-product/sale-flash.php:16 -msgid "Sale!" -msgstr "Sale!" - -#: templates/myaccount/form-change-password.php:20 -#: templates/myaccount/form-lost-password.php:31 -msgid "New password" -msgstr "新しいパスワード" - -#: templates/myaccount/form-change-password.php:24 -#: templates/myaccount/form-lost-password.php:35 -msgid "Re-enter new password" -msgstr "新しいパスワードを再入力" - -#: templates/myaccount/form-change-password.php:29 -#: templates/myaccount/form-lost-password.php:45 -msgid "Save" -msgstr "保存" - -#: templates/myaccount/form-edit-address.php:43 -msgid "Save Address" -msgstr "住所を保存" - -#: templates/myaccount/form-login.php:26 templates/myaccount/form-login.php:40 -#: templates/shop/form-login.php:31 -msgid "Login" -msgstr "ログイン" - -#: templates/myaccount/form-login.php:50 templates/shop/form-login.php:33 -msgid "Lost Password?" -msgstr "パスワードを忘れた" - -#: templates/myaccount/form-login.php:60 -#: templates/myaccount/form-login.php:101 -msgid "Register" -msgstr "登録" - -#: templates/myaccount/form-login.php:66 -msgid "Username" -msgstr "ユーザー名" - -#: templates/myaccount/form-login.php:78 -#: templates/single-product-reviews.php:101 -msgid "Email" -msgstr "Eメール" - -#: templates/myaccount/form-login.php:89 -msgid "Re-enter password" -msgstr "パスワードを再入力" - -#: templates/myaccount/form-lost-password.php:22 -msgid "" -"Lost your password? Please enter your username or email address. You will " -"receive a link to create a new password via email." -msgstr "" -"パスワードを忘れましたか?ユーザー名かEメールアドレスを入力して下さい。あなた" -"のEメールに新しいパスワードを作成するためのリンクが添付してあります。ご確認下" -"さい。" - -#: templates/myaccount/form-lost-password.php:28 -msgid "Enter a new password below." -msgstr "以下に新しいパスワードを入力します" - -#: templates/myaccount/form-lost-password.php:45 -msgid "Reset Password" -msgstr "パスワードのリセット" - -#: templates/myaccount/my-account.php:19 -msgid "" -"Hello, %s. From your account dashboard you can view your " -"recent orders, manage your shipping and billing addresses and change your password." -msgstr "" -"ご利用ありがとうございます、 %s。 アカウント・ダッシュボード" -"から、最近の注文状況の表示、配送先住所とお客様住所を管理することができます。" -"パスワードを変更" - -#: templates/myaccount/my-address.php:17 -msgid "My Addresses" -msgstr "マイアドレス" - -#: templates/myaccount/my-address.php:23 -msgid "My Address" -msgstr "マイアドレス" - -#: templates/myaccount/my-address.php:35 -msgid "The following addresses will be used on the checkout page by default." -msgstr "チェックアウトページでは以下のアドレスが使用されます" - -#: templates/myaccount/my-address.php:45 woocommerce.php:917 -#: woocommerce.php:953 woocommerce.php:990 woocommerce.php:1028 -#: woocommerce.php:1066 -msgid "Edit" -msgstr "編集" - -#: templates/myaccount/my-address.php:64 -msgid "You have not set up this type of address yet." -msgstr "あなたはまだ住所を設定していません" - -#: templates/myaccount/my-downloads.php:18 -msgid "Available downloads" -msgstr "利用可能なダウンロード" - -#: templates/myaccount/my-downloads.php:27 -msgid "%s download remaining" -msgid_plural "%s downloads remaining" -msgstr[0] "" - -#: templates/myaccount/my-orders.php:26 -msgid "Recent Orders" -msgstr "最近の注文状況" - -#: templates/myaccount/my-orders.php:32 woocommerce.php:1025 -msgid "Order" -msgstr "注文" - -#: templates/myaccount/my-orders.php:33 -msgid "Date" -msgstr "日付" - -#: templates/myaccount/my-orders.php:34 -msgid "Status" -msgstr "ステータス" - -#: templates/myaccount/my-orders.php:62 -msgid "%s for %s item" -msgid_plural "%s for %s items" -msgstr[0] "" - -#: templates/myaccount/my-orders.php:77 -msgid "Cancel" -msgstr "キャンセル" - -#: templates/myaccount/my-orders.php:82 -msgid "View" -msgstr "表示" - -#: templates/order/form-tracking.php:17 -msgid "" -"To track your order please enter your Order ID in the box below and press " -"return. This was given to you on your receipt and in the confirmation email " -"you should have received." -msgstr "" -"現在の注文状況(ステータス)を確認するには、【注文番号(#を抜いた数字)】【E" -"メール】を入力し、注文状況確認ボタンを押してください。" - -#: templates/order/form-tracking.php:19 -msgid "Order ID" -msgstr "注文番号(#を抜いた数字)" - -#: templates/order/form-tracking.php:19 -msgid "Found in your order confirmation email." -msgstr "注文確認メールに記載" - -#: templates/order/form-tracking.php:20 -msgid "Billing Email" -msgstr "Eメール" - -#: templates/order/form-tracking.php:20 -msgid "Email you used during checkout." -msgstr "お買い物で使用したEメール" - -#: templates/order/form-tracking.php:23 -msgid "Track" -msgstr "注文状況確認" - -#: templates/order/order-details.php:16 -msgid "Order Details" -msgstr "注文の詳細" - -#: templates/order/order-details.php:57 -msgid "Download file %s →" -msgstr "ダウンロードファイル %s →" - -#: templates/order/order-details.php:81 -msgid "Order Again" -msgstr "再注文" - -#: templates/order/order-details.php:93 -msgid "Telephone:" -msgstr "電話番号:" - -#: templates/order/tracking.php:18 -msgid "Order %s which was made %s has the status “%s”" -msgstr "注文 %s に %s を作成 : ステータス“%s”" - -#: templates/order/tracking.php:18 -msgid "ago" -msgstr "前" - -#: templates/order/tracking.php:20 -msgid "and was completed" -msgstr "完成です" - -#: templates/order/tracking.php:20 -msgid " ago" -msgstr "前" - -#: templates/shop/breadcrumb.php:66 -msgid "Products tagged “" -msgstr "タグ付き商品 “" - -#: templates/shop/breadcrumb.php:94 templates/shop/breadcrumb.php:196 -msgid "Search results for “" -msgstr "検索結果 “" - -#: templates/shop/breadcrumb.php:154 -msgid "Error 404" -msgstr "Error 404" - -#: templates/shop/breadcrumb.php:200 -msgid "Posts tagged “" -msgstr "タグ付きの投稿 “" - -#: templates/shop/breadcrumb.php:205 -msgid "Author:" -msgstr "著者:" - -#: templates/shop/breadcrumb.php:210 -msgid "Page" -msgstr "ページ" - -#: templates/single-product/add-to-cart/variable.php:24 -msgid "Choose an option" -msgstr "オプションを選択してください" - -#: templates/single-product/add-to-cart/variable.php:64 -msgid "Clear selection" -msgstr "選択項目をクリア" - -#: templates/single-product/meta.php:22 -msgid "Category:" -msgid_plural "Categories:" -msgstr[0] "" - -#: templates/single-product/meta.php:24 -msgid "Tag:" -msgid_plural "Tags:" -msgstr[0] "" - -#: templates/single-product/product-attributes.php:28 -msgid "Weight" -msgstr "重さ" - -#: templates/single-product/product-attributes.php:37 -msgid "Dimensions" -msgstr "大きさ" - -#: templates/single-product/related.php:36 -msgid "Related Products" -msgstr "Pickup" - -#: templates/single-product/review.php:26 -msgid "Rated %d out of 5" -msgstr "5段階で %d の評価" - -#: templates/single-product/review.php:33 -msgid "Your comment is awaiting approval" -msgstr "コメントは承認待ちです" - -#: templates/single-product/review.php:40 -msgid "verified owner" -msgstr "承認" - -#: templates/single-product/tabs/description.php:14 -msgid "Product Description" -msgstr "商品説明" - -#: templates/single-product/up-sells.php:41 -msgid "You may also like…" -msgstr "あなたの好みかも…" - -#: templates/single-product-reviews.php:45 -msgid "%s review for %s" -msgid_plural "%s reviews for %s" -msgstr[0] "" - -#: templates/single-product-reviews.php:51 -#: templates/single-product-reviews.php:57 -msgid "Reviews" -msgstr "レビュー" - -#: templates/single-product-reviews.php:73 -msgid " Previous" -msgstr " 前のページ" - -#: templates/single-product-reviews.php:74 -msgid "Next " -msgstr "次のページ " - -#: templates/single-product-reviews.php:78 -msgid "Add Your Review" -msgstr "レビューを追加" - -#: templates/single-product-reviews.php:78 -msgid "Add Review" -msgstr "レビューを追加" - -#: templates/single-product-reviews.php:80 -msgid "Add a review" -msgstr "レビューを追加" - -#: templates/single-product-reviews.php:84 -msgid "Be the first to review" -msgstr "レビューの投稿" - -#: templates/single-product-reviews.php:86 -msgid "" -"There are no reviews yet, would you like to submit yours?" -msgstr "" -"レビューはまだありません。 【レビューを投稿する】" - -#: templates/single-product-reviews.php:104 -msgid "Submit Review" -msgstr "レビューを送信" - -#: templates/single-product-reviews.php:111 -msgid "Rating" -msgstr "評価" - -#: templates/single-product-reviews.php:112 -msgid "Rate…" -msgstr "割合…" - -#: templates/single-product-reviews.php:113 -msgid "Perfect" -msgstr "非常に良い" - -#: templates/single-product-reviews.php:114 -msgid "Good" -msgstr "良い" - -#: templates/single-product-reviews.php:115 -msgid "Average" -msgstr "普通" - -#: templates/single-product-reviews.php:116 -msgid "Not that bad" -msgstr "まあまあ良い" - -#: templates/single-product-reviews.php:117 -msgid "Very Poor" -msgstr "悪い" - -#: templates/single-product-reviews.php:122 -msgid "Your Review" -msgstr "レビュー" - -#: woocommerce-ajax.php:111 -msgid "Please enter your username and password to login." -msgstr "ログインするには、ユーザー名とパスワードを入力してください。" - -#: woocommerce-ajax.php:191 -msgid "Sorry, your session has expired." -msgstr "申し訳ありませんが、セッションが期限切れになっています。" - -#: woocommerce-ajax.php:191 -msgid "Return to homepage →" -msgstr "HOMEに戻る →" - -#: woocommerce-ajax.php:332 woocommerce-ajax.php:366 woocommerce-ajax.php:389 -msgid "You do not have sufficient permissions to access this page." -msgstr "このページにアクセスする許可がありません" - -#: woocommerce-ajax.php:334 woocommerce-ajax.php:367 woocommerce-ajax.php:390 -msgid "You have taken too long. Please go back and retry." -msgstr "待機時間が長すぎました。戻って再試行してください。" - -#: woocommerce-ajax.php:626 -msgid "Same as parent" -msgstr "フォルダと同じ" - -#: woocommerce-ajax.php:627 -msgid "Standard" -msgstr "標準" - -#: woocommerce-ajax.php:1172 -msgid "" -"No products had their stock reduced - they may not have stock management " -"enabled." -msgstr "" -"商品在庫は減少していませんでした。- 在庫管理が有効になっていないかもしれませ" -"ん。" - -#: woocommerce-ajax.php:1215 woocommerce-ajax.php:1216 -msgid "Item #%s stock increased from %s to %s." -msgstr "商品 #%s の在庫数は %s から %s に増加" - -#: woocommerce-ajax.php:1223 -msgid "" -"No products had their stock increased - they may not have stock management " -"enabled." -msgstr "" -"商品在庫が増加していませんでした。- 在庫管理が有効になっていないかもしれませ" -"ん。" - -#: woocommerce-ajax.php:1244 -msgid "Value" -msgstr "値" - -#: woocommerce-ajax.php:1558 -msgid "Delete note" -msgstr "メモを削除" - -#: woocommerce-core-functions.php:268 -msgid "%s – %s%s" -msgstr "%s – %s%s" - -#: woocommerce-core-functions.php:675 -msgid "Australian Dollars" -msgstr "Australian Dollars" - -#: woocommerce-core-functions.php:676 -msgid "Brazilian Real" -msgstr "Brazilian Real" - -#: woocommerce-core-functions.php:677 -msgid "Canadian Dollars" -msgstr "Canadian Dollars" - -#: woocommerce-core-functions.php:678 -msgid "Chinese Yuan" -msgstr "Chinese Yuan" - -#: woocommerce-core-functions.php:679 -msgid "Czech Koruna" -msgstr "Czech Koruna" - -#: woocommerce-core-functions.php:680 -msgid "Danish Krone" -msgstr "Danish Krone" - -#: woocommerce-core-functions.php:681 -msgid "Euros" -msgstr "Euros" - -#: woocommerce-core-functions.php:682 -msgid "Hong Kong Dollar" -msgstr "Hong Kong Dollar" - -#: woocommerce-core-functions.php:683 -msgid "Hungarian Forint" -msgstr "Hungarian Forint" - -#: woocommerce-core-functions.php:684 -msgid "Indonesia Rupiah" -msgstr "Indonesia Rupiah" - -#: woocommerce-core-functions.php:685 -msgid "Israeli Shekel" -msgstr "Israeli Shekel" - -#: woocommerce-core-functions.php:686 -msgid "Japanese Yen" -msgstr "円(JPY)" - -#: woocommerce-core-functions.php:687 -msgid "Malaysian Ringgits" -msgstr "Malaysian Ringgits" - -#: woocommerce-core-functions.php:688 -msgid "Mexican Peso" -msgstr "Mexican Peso" - -#: woocommerce-core-functions.php:689 -msgid "Norwegian Krone" -msgstr "Norwegian Krone" - -#: woocommerce-core-functions.php:690 -msgid "New Zealand Dollar" -msgstr "New Zealand Dollar" - -#: woocommerce-core-functions.php:691 -msgid "Philippine Pesos" -msgstr "Philippine Pesos" - -#: woocommerce-core-functions.php:692 -msgid "Polish Zloty" -msgstr "Polish Zloty" - -#: woocommerce-core-functions.php:693 -msgid "Pounds Sterling" -msgstr "Pounds Sterling" - -#: woocommerce-core-functions.php:694 -msgid "Romanian Leu" -msgstr "Romanian Leu" - -#: woocommerce-core-functions.php:695 -msgid "Singapore Dollar" -msgstr "Singapore Dollar" - -#: woocommerce-core-functions.php:696 -msgid "South African rand" -msgstr "South African rand" - -#: woocommerce-core-functions.php:697 -msgid "Swedish Krona" -msgstr "Swedish Krona" - -#: woocommerce-core-functions.php:698 -msgid "Swiss Franc" -msgstr "Swiss Franc" - -#: woocommerce-core-functions.php:699 -msgid "Taiwan New Dollars" -msgstr "Taiwan New Dollars" - -#: woocommerce-core-functions.php:700 -msgid "Thai Baht" -msgstr "Thai Baht" - -#: woocommerce-core-functions.php:701 -msgid "Turkish Lira" -msgstr "Turkish Lira" - -#: woocommerce-core-functions.php:702 -msgid "US Dollars" -msgstr "US Dollars" - -#: woocommerce-core-functions.php:1189 woocommerce-core-functions.php:1215 -msgid "Download Permissions Granted" -msgstr "ダウンロード許可が付与されました" - -#: woocommerce-core-functions.php:1328 -msgctxt "slug" -msgid "uncategorized" -msgstr "uncategorized" - -#: woocommerce-core-functions.php:1517 -msgid "Select a category" -msgstr "カテゴリを選択" - -#: woocommerce-core-functions.php:1521 -msgid "Uncategorized" -msgstr "未分類" - -#: woocommerce-core-functions.php:1893 -msgid "Customer" -msgstr "お客様" - -#: woocommerce-core-functions.php:1900 -msgid "Shop Manager" -msgstr "ショップ運営者" - -#: woocommerce-core-functions.php:2433 -msgid "Unpaid order cancelled - time limit reached." -msgstr "未払いの注文をキャンセルしました - 制限期間に達しました" - -#: woocommerce-core-functions.php:2485 woocommerce-functions.php:703 -msgid "Please enter a username." -msgstr "ユーザー名を入力して下さい" - -#: woocommerce-functions.php:208 woocommerce-functions.php:253 -msgid "Cart updated." -msgstr "カートを更新" - -#: woocommerce-functions.php:239 -msgid "You can only have 1 %s in your cart." -msgstr "カートに 1 %s だけ入れることができます" - -#: woocommerce-functions.php:296 woocommerce-functions.php:343 -msgid "Please choose product options…" -msgstr "商品オプションを選択…" - -#: woocommerce-functions.php:378 -msgid "" -"Please choose the quantity of items you wish to add to your cart…" -msgstr "カートに追加したい商品の数量を選択してください;" - -#: woocommerce-functions.php:386 -msgid "Please choose a product to add to your cart…" -msgstr "カートに追加する商品を選択してください;" - -#: woocommerce-functions.php:455 -msgid "Added "%s" to your cart." -msgstr "カートに "%s" を追加しまし" - -#: woocommerce-functions.php:455 -msgid "" and "" -msgstr "" and "" - -#: woocommerce-functions.php:458 -msgid ""%s" was successfully added to your cart." -msgstr ""%s" は正常にカートに追加されました" - -#: woocommerce-functions.php:466 -msgid "Continue Shopping →" -msgstr "ショッピングを続ける →" - -#: woocommerce-functions.php:633 -msgid "Username is required." -msgstr "ユーザー名は必須です" - -#: woocommerce-functions.php:634 woocommerce-functions.php:729 -msgid "Password is required." -msgstr "パスワードが必要です。" - -#: woocommerce-functions.php:705 -msgid "" -"This username is invalid because it uses illegal characters. Please enter a " -"valid username." -msgstr "" -"不正な文字を使用するため、このユーザー名は無効です。有効な文字を入力してくだ" -"さい。" - -#: woocommerce-functions.php:708 -msgid "This username is already registered, please choose another one." -msgstr "このユーザー名はすでに登録されています" - -#: woocommerce-functions.php:720 -msgid "Please type your e-mail address." -msgstr "Eメールアドレスを入力して下さい" - -#: woocommerce-functions.php:722 -msgid "The email address isn’t correct." -msgstr "Eメールアドレスが正しくありません" - -#: woocommerce-functions.php:725 -msgid "This email is already registered, please choose another one." -msgstr "このEメールアドレスはすでに登録されています" - -#: woocommerce-functions.php:730 -msgid "Re-enter your password." -msgstr "パスワード再入力" - -#: woocommerce-functions.php:735 -msgid "Anti-spam field was filled in." -msgstr "スパム対策フィールドが書きかえられました" - -#: woocommerce-functions.php:841 -msgid "The cart has been filled with the items from your previous order." -msgstr "カートに以前の注文が残っています" - -#: woocommerce-functions.php:867 -msgid "Order cancelled by customer." -msgstr "お客様による注文のキャンセル" - -#: woocommerce-functions.php:870 -msgid "Your order was cancelled." -msgstr "注文はキャンセルされました" - -#: woocommerce-functions.php:876 -msgid "" -"Your order is no longer pending and could not be cancelled. Please contact " -"us if you need assistance." -msgstr "" -"ご注文は保留期間が過ぎている為、キャンセルすることができませんでした。ご不明" -"な点があればお問い合わせください。" - -#: woocommerce-functions.php:911 -msgid "Invalid email address." -msgstr "無効なメールアドレスです" - -#: woocommerce-functions.php:911 woocommerce-functions.php:933 -#: woocommerce-functions.php:953 woocommerce-functions.php:959 -#: woocommerce-functions.php:963 woocommerce-functions.php:966 -#: woocommerce-functions.php:996 woocommerce-functions.php:1099 -msgid "Go to homepage →" -msgstr "HOMEに移動 →" - -#: woocommerce-functions.php:933 -msgid "Invalid download." -msgstr "無効なダウンロード" - -#: woocommerce-functions.php:945 -msgid "You must be logged in to download files." -msgstr "ファイルをダウンロードするには、ログインする必要があります" - -#: woocommerce-functions.php:948 -msgid "This is not your download link." -msgstr "これはあなたのダウンロードリンクではありません。" - -#: woocommerce-functions.php:953 -msgid "Product no longer exists." -msgstr "商品はもう存在しません" - -#: woocommerce-functions.php:963 -msgid "Sorry, you have reached your download limit for this file" -msgstr "申し訳ございませんが、このファイルのダウンロード期限が過ぎています。" - -#: woocommerce-functions.php:966 -msgid "Sorry, this download has expired" -msgstr "申し訳ありませんが、ダウンロード有効期限が切れています。" - -#: woocommerce-functions.php:996 -msgid "No file defined" -msgstr "定義されたファイルがありません" - -#: woocommerce-functions.php:1099 -msgid "File not found" -msgstr "ファイルが見つかりません" - -#: woocommerce-functions.php:1209 -msgid "New products" -msgstr "新商品" - -#: woocommerce-functions.php:1217 -msgid "New products added to %s" -msgstr "新商品には %s 追加" - -#: woocommerce-functions.php:1225 -msgid "New products tagged %s" -msgstr "新商品には %s タグ付き" - -#: woocommerce-functions.php:1264 -msgid "You have taken too long. Please go back and refresh the page." -msgstr "待機時間が長すぎました。戻ってページを更新してください。" - -#: woocommerce-functions.php:1267 -msgid "Please rate the product." -msgstr "商品を評価してください" - -#: woocommerce-functions.php:1575 -msgid "Password changed successfully." -msgstr "パスワードは正常に変更されました" - -#: woocommerce-functions.php:1651 -msgid "Address changed successfully." -msgstr "住所は正常に変更されました" - -#: woocommerce-template.php:196 -msgid "" -"This is a demo store for testing purposes — no orders shall be " -"fulfilled." -msgstr "これはデモストアです。注文は出来ません。" - -#: woocommerce-template.php:215 -msgid "Search Results: “%s”" -msgstr "検索結果: “%s”" - -#: woocommerce-template.php:218 -msgid " – Page %s" -msgstr " – Page %s" - -#: woocommerce-template.php:764 -msgid "Reviews (%d)" -msgstr "レビュー (%d)" - -#: woocommerce-template.php:990 -msgctxt "breadcrumb" -msgid "Home" -msgstr "Home" - -#: woocommerce-template.php:1288 woocommerce.php:1175 -msgid "required" -msgstr "必須" - -#: woocommerce-template.php:1334 -msgid "Update country" -msgstr "国を更新" - -#: woocommerce-template.php:1489 -msgid "Search for:" -msgstr "検索:" - -#: woocommerce-template.php:1490 -msgid "Search for products" -msgstr "商品をを検索" - -#: woocommerce-template.php:1491 woocommerce.php:913 -msgid "Search" -msgstr "Search" - -#: woocommerce.php:752 -msgctxt "slug" -msgid "product-category" -msgstr "商品カテゴリー" - -#: woocommerce.php:753 -msgctxt "slug" -msgid "product-tag" -msgstr "商品タグ" - -#: woocommerce.php:755 -msgctxt "slug" -msgid "product" -msgstr "商品" - -#: woocommerce.php:790 -msgid "Product Category" -msgstr "商品カテゴリー" - -#: woocommerce.php:791 -msgctxt "Admin menu name" -msgid "Categories" -msgstr "カテゴリー" - -#: woocommerce.php:792 -msgid "Search Product Categories" -msgstr "商品カテゴリー検索" - -#: woocommerce.php:793 -msgid "All Product Categories" -msgstr "すべての商品ジャンル" - -#: woocommerce.php:794 -msgid "Parent Product Category" -msgstr "親商品カテゴリー" - -#: woocommerce.php:795 -msgid "Parent Product Category:" -msgstr "親商品カテゴリー:" - -#: woocommerce.php:796 -msgid "Edit Product Category" -msgstr "商品カテゴリを編集" - -#: woocommerce.php:797 -msgid "Update Product Category" -msgstr "商品カテゴリを更" - -#: woocommerce.php:798 -msgid "Add New Product Category" -msgstr "商品カテゴリーを新たに追加" - -#: woocommerce.php:799 -msgid "New Product Category Name" -msgstr "新たなカテゴリーの名称" - -#: woocommerce.php:826 -msgid "Product Tag" -msgstr "商品タグ" - -#: woocommerce.php:827 -msgctxt "Admin menu name" -msgid "Tags" -msgstr "タグ" - -#: woocommerce.php:828 -msgid "Search Product Tags" -msgstr "商品タグを検索" - -#: woocommerce.php:829 -msgid "All Product Tags" -msgstr "全ての商品タグ" - -#: woocommerce.php:830 -msgid "Parent Product Tag" -msgstr "商品タグフォルダ" - -#: woocommerce.php:831 -msgid "Parent Product Tag:" -msgstr "商品タグフォルダ:" - -#: woocommerce.php:832 -msgid "Edit Product Tag" -msgstr "商品タグを編集" - -#: woocommerce.php:833 -msgid "Update Product Tag" -msgstr "商品タグを更新" - -#: woocommerce.php:834 -msgid "Add New Product Tag" -msgstr "新商品のタグを追加" - -#: woocommerce.php:835 -msgid "New Product Tag Name" -msgstr "新商品のタグの名称" - -#: woocommerce.php:854 woocommerce.php:856 -msgid "Shipping Classes" -msgstr "配送クラス" - -#: woocommerce.php:858 -msgctxt "Admin menu name" -msgid "Shipping Classes" -msgstr "配送クラス" - -#: woocommerce.php:859 -msgid "Search Shipping Classes" -msgstr "配送クラスを検索" - -#: woocommerce.php:860 -msgid "All Shipping Classes" -msgstr "全ての配送クラス" - -#: woocommerce.php:861 -msgid "Parent Shipping Class" -msgstr "送料クラスフォルダ" - -#: woocommerce.php:862 -msgid "Parent Shipping Class:" -msgstr "送料クラスフォルダ:" - -#: woocommerce.php:863 -msgid "Edit Shipping Class" -msgstr "配送クラスを編集" - -#: woocommerce.php:864 -msgid "Update Shipping Class" -msgstr "配送クラスを更新" - -#: woocommerce.php:865 -msgid "Add New Shipping Class" -msgstr "新しい配送クラスを追加" - -#: woocommerce.php:866 -msgid "New Shipping Class Name" -msgstr "新しい配送クラスの名称" - -#: woocommerce.php:914 -msgid "All" -msgstr "全て" - -#: woocommerce.php:915 woocommerce.php:916 -msgid "Parent" -msgstr "フォルダ" - -#: woocommerce.php:918 -msgid "Update" -msgstr "アップデート" - -#: woocommerce.php:919 -msgid "Add New" -msgstr "新規追加" - -#: woocommerce.php:920 -msgid "New" -msgstr "新規" - -#: woocommerce.php:950 -msgctxt "Admin menu name" -msgid "Products" -msgstr "商品" - -#: woocommerce.php:951 -msgid "Add Product" -msgstr "商品を追加" - -#: woocommerce.php:952 -msgid "Add New Product" -msgstr "新商品を追加" - -#: woocommerce.php:954 -msgid "Edit Product" -msgstr "商品を編集" - -#: woocommerce.php:955 -msgid "New Product" -msgstr "新商品" - -#: woocommerce.php:956 woocommerce.php:957 -msgid "View Product" -msgstr "商品を見る" - -#: woocommerce.php:958 -msgid "Search Products" -msgstr "商品を検索" - -#: woocommerce.php:959 -msgid "No Products found" -msgstr "商品が見つかりません" - -#: woocommerce.php:960 -msgid "No Products found in trash" -msgstr "ゴミ箱の中にも商品は見つかりません" - -#: woocommerce.php:961 -msgid "Parent Product" -msgstr "商品フォルダ" - -#: woocommerce.php:963 -msgid "This is where you can add new products to your store." -msgstr "新たに商品を追加することができる場所です" - -#: woocommerce.php:986 -msgid "Variations" -msgstr "バリエーション" - -#: woocommerce.php:987 -msgid "Variation" -msgstr "バリエーション" - -#: woocommerce.php:988 -msgid "Add Variation" -msgstr "バリエーションを追加" - -#: woocommerce.php:989 -msgid "Add New Variation" -msgstr "バリエーションを追加" - -#: woocommerce.php:991 -msgid "Edit Variation" -msgstr "バリエーションを編集" - -#: woocommerce.php:992 -msgid "New Variation" -msgstr "新しいバリエーション" - -#: woocommerce.php:993 woocommerce.php:994 -msgid "View Variation" -msgstr "バリエーションを見る" - -#: woocommerce.php:995 -msgid "Search Variations" -msgstr "バリエーションを検索" - -#: woocommerce.php:996 -msgid "No Variations found" -msgstr "バリエーションが見つかりません" - -#: woocommerce.php:997 -msgid "No Variations found in trash" -msgstr "バリエーションはゴミ箱の中にも見つかりません" - -#: woocommerce.php:998 -msgid "Parent Variation" -msgstr "バリエーションフォルダ" - -#: woocommerce.php:1015 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "受注" - -#: woocommerce.php:1024 -msgid "Orders" -msgstr "受注" - -#: woocommerce.php:1026 -msgid "Add Order" -msgstr "注文を追加" - -#: woocommerce.php:1027 -msgid "Add New Order" -msgstr "新規注文を追加" - -#: woocommerce.php:1029 -msgid "Edit Order" -msgstr "注文を編集" - -#: woocommerce.php:1030 -msgid "New Order" -msgstr "新規注文" - -#: woocommerce.php:1033 -msgid "Search Orders" -msgstr "注文を検索" - -#: woocommerce.php:1034 -msgid "No Orders found" -msgstr "注文が見つかりません" - -#: woocommerce.php:1035 -msgid "No Orders found in trash" -msgstr "ゴミ箱の中にも注文は見つかりませんでした" - -#: woocommerce.php:1036 -msgid "Parent Orders" -msgstr "注文フォルダ" - -#: woocommerce.php:1039 -msgid "This is where store orders are stored." -msgstr "受注が保存される場所です" - -#: woocommerce.php:1061 -msgid "Coupons" -msgstr "クーポン" - -#: woocommerce.php:1063 -msgctxt "Admin menu name" -msgid "Coupons" -msgstr "クーポン" - -#: woocommerce.php:1064 -msgid "Add Coupon" -msgstr "クーポンを追加" - -#: woocommerce.php:1065 -msgid "Add New Coupon" -msgstr "新しいクーポンを追加" - -#: woocommerce.php:1067 -msgid "Edit Coupon" -msgstr "クーポンを編集" - -#: woocommerce.php:1068 -msgid "New Coupon" -msgstr "新しいクーポン" - -#: woocommerce.php:1069 -msgid "View Coupons" -msgstr "クーポンを見る" - -#: woocommerce.php:1070 -msgid "View Coupon" -msgstr "クーポンを見る" - -#: woocommerce.php:1071 -msgid "Search Coupons" -msgstr "クーポンを検索" - -#: woocommerce.php:1072 -msgid "No Coupons found" -msgstr "クーポンが見つかりません" - -#: woocommerce.php:1073 -msgid "No Coupons found in trash" -msgstr "ゴミ箱の中にもクーポンは見つかりませ" - -#: woocommerce.php:1074 -msgid "Parent Coupon" -msgstr "クーポンフォルダ" - -#: woocommerce.php:1076 -msgid "" -"This is where you can add new coupons that customers can use in your store." -msgstr "顧客がショップで使用できるクーポンを、新規に追加できる場所です。" - -#: woocommerce.php:1172 -msgid "Select an option…" -msgstr "オプションを選択…" - -#: woocommerce.php:1173 -msgid "Please select a rating" -msgstr "評価を選択してください" - -#: woocommerce.php:1174 -msgid "" -"Sorry, no products matched your selection. Please choose a different " -"combination." -msgstr "" -"申し訳ありませんが、商品の選択に一致するものがありません。別の組み合わせを選" -"択してください。" - -#: woocommerce.php:1656 -msgid "Cart % Discount" -msgstr "カート % 割引" - -#: woocommerce.php:1657 -msgid "Product Discount" -msgstr "商品の割引" - -#: woocommerce.php:1658 -msgid "Product % Discount" -msgstr "商品 % 割引" - -#: woocommerce.php:1723 -msgid "Action failed. Please refresh the page and retry." -msgstr "アクションは失敗しました。ページをリフレッシュし、再試行してください。" diff --git a/i18n/languages/woocommerce-ko_KR.mo b/i18n/languages/woocommerce-ko_KR.mo deleted file mode 100644 index cbad52ea5a4..00000000000 Binary files a/i18n/languages/woocommerce-ko_KR.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-ko_KR.po b/i18n/languages/woocommerce-ko_KR.po deleted file mode 100644 index bbba5e1ec94..00000000000 --- a/i18n/languages/woocommerce-ko_KR.po +++ /dev/null @@ -1,8308 +0,0 @@ -# Venusian , 2013. -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce v2.0.8\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-04-29 16:02:06+00:00\n" -"PO-Revision-Date: 2013-10-08 06:51+0900\n" -"Last-Translator: Venusian \n" -"Language-Team: \n" -"Language: ko\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n" -"X-Generator: Poedit 1.5.7\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-Basepath: ../\n" -"X-Textdomain-Support: yes\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" -"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" -"X-Poedit-SearchPath-0: .\n" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:5 -msgid "Insert Shortcode" -msgstr "숏코드 삽입하기" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:6 -msgid "Product price/cart button" -msgstr "상품 가격/장바구니 버튼" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:7 -msgid "Product by SKU/ID" -msgstr "SKU/ID 상품" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:8 -msgid "Products by SKU/ID" -msgstr "SKU/ID 상품" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:9 -msgid "Product categories" -msgstr "상품 카테고리" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:10 -msgid "Products by category slug" -msgstr "카테고리 슬러그에 의한 상품" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:11 -msgid "Recent products" -msgstr "최근 상품" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:12 -msgid "Featured products" -msgstr "특성 상품" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:13 -msgid "Shop Messages" -msgstr "상점 메시지" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:14 -msgid "Pages" -msgstr "페이지" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:15 -#: classes/widgets/class-wc-widget-cart.php:61 -msgid "Cart" -msgstr "장바구니" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:16 -msgid "Checkout" -msgstr "결제" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:17 -msgid "Order tracking" -msgstr "주문 추적" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:18 -#: templates/checkout/thankyou.php:30 -msgid "My Account" -msgstr "나의 계정" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:19 -msgid "Edit Address" -msgstr "주소 편집하기" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:20 -msgid "Change Password" -msgstr "비밀번호 변경하기" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:21 woocommerce.php:1065 -#: woocommerce.php:1066 -msgid "View Order" -msgstr "주문 보기" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:22 -#: templates/checkout/thankyou.php:28 templates/myaccount/my-orders.php:71 -msgid "Pay" -msgstr "지불" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:23 -msgid "Thankyou" -msgstr "감사합니다" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:431 -#: classes/emails/class-wc-email-customer-completed-order.php:135 -#: classes/emails/class-wc-email-customer-invoice.php:138 -#: classes/emails/class-wc-email-new-order.php:115 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:63 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:57 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:122 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:120 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:76 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:75 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:50 -msgid "Enable/Disable" -msgstr "활성화/비활성화" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:433 -#: classes/emails/class-wc-email-customer-completed-order.php:137 -#: classes/emails/class-wc-email-customer-invoice.php:140 -#: classes/emails/class-wc-email-new-order.php:117 -msgid "Enable this email notification" -msgstr "이 이메일 알림 활성화" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:437 -#: classes/emails/class-wc-email-customer-invoice.php:144 -msgid "Email subject" -msgstr "이메일 제목" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:439 -#: classes/abstracts/abstract-wc-email.php:446 -#: classes/emails/class-wc-email-customer-completed-order.php:143 -#: classes/emails/class-wc-email-customer-completed-order.php:150 -#: classes/emails/class-wc-email-customer-completed-order.php:157 -#: classes/emails/class-wc-email-customer-completed-order.php:164 -#: classes/emails/class-wc-email-customer-invoice.php:146 -#: classes/emails/class-wc-email-customer-invoice.php:153 -#: classes/emails/class-wc-email-customer-invoice.php:160 -#: classes/emails/class-wc-email-customer-invoice.php:167 -msgid "Defaults to %s" -msgstr "기본을 %s(으)로" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:444 -#: classes/emails/class-wc-email-customer-invoice.php:151 -msgid "Email heading" -msgstr "이메일 헤드" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:451 -#: classes/emails/class-wc-email-customer-completed-order.php:169 -#: classes/emails/class-wc-email-customer-invoice.php:172 -#: classes/emails/class-wc-email-new-order.php:142 -msgid "Email type" -msgstr "이메일 타입" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:453 -#: classes/emails/class-wc-email-customer-completed-order.php:171 -#: classes/emails/class-wc-email-customer-invoice.php:174 -#: classes/emails/class-wc-email-new-order.php:144 -msgid "Choose which format of email to send." -msgstr "보낼 이메일 포맷을 선택하세요." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:457 -#: classes/emails/class-wc-email-customer-completed-order.php:175 -#: classes/emails/class-wc-email-customer-invoice.php:178 -#: classes/emails/class-wc-email-new-order.php:148 -msgid "Plain text" -msgstr "단순 텍스트" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:458 -#: classes/emails/class-wc-email-customer-completed-order.php:176 -#: classes/emails/class-wc-email-customer-invoice.php:179 -#: classes/emails/class-wc-email-new-order.php:149 -msgid "HTML" -msgstr "HTML" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:459 -#: classes/emails/class-wc-email-customer-completed-order.php:177 -#: classes/emails/class-wc-email-customer-invoice.php:180 -#: classes/emails/class-wc-email-new-order.php:150 -msgid "Multipart" -msgstr "Multipart" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:495 -#: classes/abstracts/abstract-wc-email.php:516 -msgid "Could not write to template file." -msgstr "템플릿 파일에 쓸 수 없습니다." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:543 -msgid "Template file copied to theme." -msgstr "템플릿 파일이 테마에 복사됐습니다." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:552 -msgid "Template file deleted from theme." -msgstr "템플릿 파일이 테마에서 제거됐습니다." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:560 -#: classes/abstracts/abstract-wc-integration.php:30 -#: classes/abstracts/abstract-wc-settings-api.php:39 woocommerce.php:170 -msgid "Settings" -msgstr "설정" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:572 -msgid "HTML template" -msgstr "HTML 템플릿" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:573 -msgid "Plain text template" -msgstr "단순 텍스트 템플릿" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:592 -msgid "Delete template file" -msgstr "템플릿 파일 삭제하기" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:595 -msgid "" -"This template has been overridden by your theme and can be found in: " -"%s." -msgstr "" -"이 템플릿 파일은 테마에 의해 덮어쓰기됐으며 다음에서 찾을 수 있습니다: " -"%s." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:610 -msgid "Copy file to theme" -msgstr "파일을 테마에 복사하기" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:613 -msgid "" -"To override and edit this email template copy %s to your theme " -"folder: %s." -msgstr "" -"이 이메일 템플릿을 덮어쓰고 편집하려면 %s를 테마 폴더에 복사하세" -"요: %s." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:624 -msgid "File was not found." -msgstr "파일을 찾을 수 없습니다." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:649 -msgid "View template" -msgstr "템플릿 보기" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:650 -msgid "Hide template" -msgstr "템플릿 감추기" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:661 -msgid "Are you sure you want to delete this template file?" -msgstr "이 템플릿 파일을 제거하기를 원하십니까?" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:33 -msgid "" -"The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class " -"directly." -msgstr "" -"WC_Product 클래스는 현재 추상화됐습니다. 상품 예를 들어 설명하" -"기 위해서 이 클래스를 직접 부르는 대신에get_product()를 사용하세" -"요." - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:545 -#: classes/abstracts/abstract-wc-product.php:550 -#: classes/abstracts/abstract-wc-product.php:569 -msgid "In stock" -msgstr "재고있음" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:550 -msgid "Only %s left in stock" -msgstr "%s 만 재고로 남았습니다" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:553 -msgid "%s in stock" -msgstr "%s개가 재고로 있습니다" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:560 -msgid "(backorders allowed)" -msgstr "(미재고 주문 허용됨)" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:566 -#: classes/abstracts/abstract-wc-product.php:579 templates/cart/cart.php:76 -msgid "Available on backorder" -msgstr "미재고 주문이 가능합" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:572 -#: classes/abstracts/abstract-wc-product.php:582 -#: classes/abstracts/abstract-wc-product.php:586 -msgid "Out of stock" -msgstr "품절" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:846 -#: classes/abstracts/abstract-wc-product.php:852 -#: classes/class-wc-cart.php:1801 classes/class-wc-order.php:891 -#: classes/class-wc-product-variable.php:274 -#: classes/class-wc-product-variable.php:283 -#: classes/class-wc-product-variation.php:246 -msgid "Free!" -msgstr "무료!" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:870 -msgctxt "min_price" -msgid "From:" -msgstr "상품중 낮은 가격:" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:959 -#: templates/single-product-reviews.php:28 -msgid "Rated %s out of 5" -msgstr "5 중에서 %s로 평가됨" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:961 -#: templates/single-product/review.php:27 -#: templates/single-product-reviews.php:28 -msgid "out of 5" -msgstr "5중에서" - -#: classes/class-wc-cache-helper.php:92 -msgid "" -"In order for database caching to work with WooCommerce you " -"must add _wc_session_ to the \"Ignored Query Strings\" option " -"in W3 Total Cache settings here." -msgstr "" -"우커머스와 작동하는 데이터베이스 캐싱을 위해서 W3 Total " -"Cache 설정 여기의 \"무시된 퀘리 스트링\" 옵션에 " -"_wc_session_를 추가해야 합니다. " - -# @ woocommerce -#: classes/class-wc-cart.php:460 -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -"죄송합니다. 고객님의 주문에 충분한 \"%s\"의 재고가 없습니다 (%s in stock). 장" -"바구니를 수정하고 다시 해주세요. 불편을 끼쳐드려 죄송합니다." - -# @ woocommerce -#: classes/class-wc-cart.php:479 classes/class-wc-cart.php:488 -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfil your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -"죄송합니다. 고객님의 주문에 충분한 \"%s\"의 재고가 없습니다. 장바구니를 수정" -"해서 다시 해주세요. 불편을 드려 죄송합니다." - -# @ woocommerce -#: classes/class-wc-cart.php:523 -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfil your order right now. " -"Please try again in %d minutes or edit your cart and try again. We apologise " -"for any inconvenience caused." -msgstr "" -"죄송합니다. 현재 고객님의 주문에 충분한 \"%s\"의 재고가 없습니다. %d 분 후에 " -"다시하거나 장바구니를 수정해서 다시 해주세요. 불편을 드려 죄송합니다." - -# @ woocommerce -#: classes/class-wc-cart.php:533 -msgid "" -"Sorry, \"%s\" is not in stock. Please edit your cart and try again. We " -"apologise for any inconvenience caused." -msgstr "" -"죄송합니다. \"%s\"는 재고가 없습니다. 장바구니를 수정해서 다시 해주세요. 불편" -"을 드려 죄송합니다." - -# @ woocommerce -#: classes/class-wc-cart.php:845 -msgid "Sorry, "%s" cannot be purchased." -msgstr "죄송합니다. "%s"는 구매할 수 없습니다." - -# @ woocommerce -#: classes/class-wc-cart.php:852 -msgid "" -"You cannot add "%s" to the cart because the product is out of " -"stock." -msgstr "해당 상품을 품절이므로 "%s"를 장바구니에 추가할 수 없습니다." - -# @ woocommerce -#: classes/class-wc-cart.php:857 -msgid "" -"You cannot add that amount of "%s" to the cart because there is " -"not enough stock (%s remaining)." -msgstr "" -"충분한 물량이 없으므로 "%s"를 해당 양만큼 추가할 수 없습니다 (잔량 " -"%s)," - -# @ woocommerce -#: classes/class-wc-cart.php:869 classes/class-wc-cart.php:883 -#: classes/class-wc-cart.php:891 templates/cart/mini-cart.php:68 -#: woocommerce-functions.php:497 woocommerce.php:1210 -msgid "View Cart →" -msgstr "장바구니 보기 →" - -# @ woocommerce -#: classes/class-wc-cart.php:869 -msgid "You already have this item in your cart." -msgstr "장바구니에 이미 이 아이템이 있습니다." - -# @ woocommerce -#: classes/class-wc-cart.php:883 classes/class-wc-cart.php:891 -msgid "" -"%s You cannot add that amount to the " -"cart — we have %s in stock and you already have %s in your cart." -msgstr "" -"%s 장바구니에 해당 수량을 추가할 수 없습" -"니다 — 현재 %s가 재고로 있고 장바구니에 %s가 있습니다." - -# @ woocommerce -#: classes/class-wc-cart.php:1813 -msgid "via" -msgstr "배송방법 " - -# @ woocommerce -#: classes/class-wc-checkout.php:64 -msgid "Account username" -msgstr "계정 사용자 ID" - -# @ woocommerce -#: classes/class-wc-checkout.php:65 -msgctxt "placeholder" -msgid "Username" -msgstr "사용자 ID" - -# @ woocommerce -#: classes/class-wc-checkout.php:72 -msgid "Account password" -msgstr "계정 비밀번호" - -# @ woocommerce -#: classes/class-wc-checkout.php:73 -msgctxt "placeholder" -msgid "Password" -msgstr "비밀번호" - -# @ woocommerce -#: classes/class-wc-checkout.php:79 -msgid "Confirm password" -msgstr "비밀번호 확인" - -# @ woocommerce -#: classes/class-wc-checkout.php:80 -msgctxt "placeholder" -msgid "Confirm password" -msgstr "비밀번호 확인" - -# @ woocommerce -#: classes/class-wc-checkout.php:89 -msgid "Order Notes" -msgstr "주문 메모" - -# @ woocommerce -#: classes/class-wc-checkout.php:90 -msgctxt "placeholder" -msgid "Notes about your order, e.g. special notes for delivery." -msgstr "주문에 대한 메모. 예: 배달시 특별 메모." - -# @ woocommerce -#: classes/class-wc-checkout.php:152 -msgid "Order – %s" -msgstr "주문 – %s" - -# @ woocommerce -#: classes/class-wc-checkout.php:152 -msgctxt "Order date parsed by strftime" -msgid "%b %d, %Y @ %I:%M %p" -msgstr "%b %d, %Y @ %I:%M %p" - -# @ woocommerce -#: classes/class-wc-checkout.php:278 -msgid "Backordered" -msgstr "미재고 주문됨" - -# @ woocommerce -#: classes/class-wc-checkout.php:388 -msgid "" -"Sorry, your session has expired. Return to homepage →" -msgstr "" -"죄송합니다. 고객님의 세션이 만료됐습니다. 홈페이지로 돌아가기 " -"→" - -# @ woocommerce -#: classes/class-wc-checkout.php:440 woocommerce-functions.php:1696 -msgid "is a required field." -msgstr "필수 란입니다." - -# @ woocommerce -#: classes/class-wc-checkout.php:453 -msgid "(%s) is not a valid postcode/ZIP." -msgstr "(%s)는 유효하지 않은 우편번호입니다." - -# @ woocommerce -#: classes/class-wc-checkout.php:474 -msgid "is not valid. Please enter one of the following:" -msgstr "는 유효하지 않습니다. 다음 중 하나를 입력해주세요:" - -# @ woocommerce -#: classes/class-wc-checkout.php:482 -msgid "is not a valid number." -msgstr "는 유효한 숫자가 아닙니다." - -# @ woocommerce -#: classes/class-wc-checkout.php:489 -msgid "is not a valid email address." -msgstr "는 유효한 이메일 주소가 아닙니다." - -# @ woocommerce -#: classes/class-wc-checkout.php:545 -msgid "Please enter an account username." -msgstr "계정 사용자 ID을 입력해주세요." - -# @ woocommerce -#: classes/class-wc-checkout.php:549 -msgid "Invalid email/username." -msgstr "유효하지 않은 이메일/사용자 ID." - -# @ woocommerce -#: classes/class-wc-checkout.php:552 -msgid "" -"An account is already registered with that username. Please choose another." -msgstr "계정이 이미 해당 사용자 ID로 회원가입 됐습니다. 다른 것을 선택하세요." - -# @ woocommerce -#: classes/class-wc-checkout.php:562 -msgid "Please enter an account password." -msgstr "계정 비밀번호를 입력하세요." - -# @ woocommerce -#: classes/class-wc-checkout.php:565 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:83 -#: woocommerce-functions.php:758 woocommerce-functions.php:1626 -msgid "Passwords do not match." -msgstr "비밀번호가 일치하지 않습니다." - -# @ woocommerce -#: classes/class-wc-checkout.php:569 -msgid "An account is already registered with your email address. Please login." -msgstr "계정이 이미 고객님의 이메일 주소로 회원가입 됐습니다. 로그인 해주세요." - -# @ woocommerce -#: classes/class-wc-checkout.php:575 -msgid "You must accept our Terms & Conditions." -msgstr "저희 이용 약관을 수락해야합니다." - -# @ woocommerce -#: classes/class-wc-checkout.php:584 -msgid "Invalid shipping method." -msgstr "유효하지 않은 배송 방법." - -# @ woocommerce -#: classes/class-wc-checkout.php:597 -msgid "Invalid payment method." -msgstr "유호하지 않은 지불 방법." - -# @ woocommerce -#: classes/class-wc-checkout.php:637 woocommerce-functions.php:730 -#: woocommerce-functions.php:732 woocommerce-functions.php:735 -#: woocommerce-functions.php:747 woocommerce-functions.php:749 -#: woocommerce-functions.php:752 woocommerce-functions.php:786 -msgid "ERROR" -msgstr "에러" - -# @ woocommerce -#: classes/class-wc-checkout.php:637 woocommerce-functions.php:786 -msgid "" -"Couldn’t register you… please contact us if you continue to " -"have problems." -msgstr "" -"고객님을 회원가입 할 수 없습니다… 문제가 계속 발생하면 저희에게 연락해" -"주세요." - -# @ woocommerce -#: classes/class-wc-countries.php:37 -msgid "Afghanistan" -msgstr "Afghanistan" - -# @ woocommerce -#: classes/class-wc-countries.php:38 -msgid "Åland Islands" -msgstr "Åland Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:39 -msgid "Albania" -msgstr "Albania" - -# @ woocommerce -#: classes/class-wc-countries.php:40 -msgid "Algeria" -msgstr "Algeria" - -# @ woocommerce -#: classes/class-wc-countries.php:41 -msgid "Andorra" -msgstr "Andorra" - -# @ woocommerce -#: classes/class-wc-countries.php:42 -msgid "Angola" -msgstr "Angola" - -# @ woocommerce -#: classes/class-wc-countries.php:43 -msgid "Anguilla" -msgstr "Anguilla" - -# @ woocommerce -#: classes/class-wc-countries.php:44 -msgid "Antarctica" -msgstr "Antarctica" - -# @ woocommerce -#: classes/class-wc-countries.php:45 -msgid "Antigua and Barbuda" -msgstr "Antigua and Barbuda" - -# @ woocommerce -#: classes/class-wc-countries.php:46 -msgid "Argentina" -msgstr "Argentina" - -# @ woocommerce -#: classes/class-wc-countries.php:47 -msgid "Armenia" -msgstr "Armenia" - -# @ woocommerce -#: classes/class-wc-countries.php:48 -msgid "Aruba" -msgstr "Aruba" - -# @ woocommerce -#: classes/class-wc-countries.php:49 -msgid "Australia" -msgstr "Australia" - -# @ woocommerce -#: classes/class-wc-countries.php:50 -msgid "Austria" -msgstr "Austria" - -# @ woocommerce -#: classes/class-wc-countries.php:51 -msgid "Azerbaijan" -msgstr "Azerbaijan" - -# @ woocommerce -#: classes/class-wc-countries.php:52 -msgid "Bahamas" -msgstr "Bahamas" - -# @ woocommerce -#: classes/class-wc-countries.php:53 -msgid "Bahrain" -msgstr "Bahrain" - -# @ woocommerce -#: classes/class-wc-countries.php:54 -msgid "Bangladesh" -msgstr "Bangladesh" - -# @ woocommerce -#: classes/class-wc-countries.php:55 -msgid "Barbados" -msgstr "Barbados" - -# @ woocommerce -#: classes/class-wc-countries.php:56 -msgid "Belarus" -msgstr "Belarus" - -# @ woocommerce -#: classes/class-wc-countries.php:57 -msgid "Belgium" -msgstr "Belgium" - -# @ woocommerce -#: classes/class-wc-countries.php:58 -msgid "Belau" -msgstr "Belau" - -# @ woocommerce -#: classes/class-wc-countries.php:59 -msgid "Belize" -msgstr "Belize" - -# @ woocommerce -#: classes/class-wc-countries.php:60 -msgid "Benin" -msgstr "Benin" - -# @ woocommerce -#: classes/class-wc-countries.php:61 -msgid "Bermuda" -msgstr "Bermuda" - -# @ woocommerce -#: classes/class-wc-countries.php:62 -msgid "Bhutan" -msgstr "Bhutan" - -# @ woocommerce -#: classes/class-wc-countries.php:63 -msgid "Bolivia" -msgstr "Bolivia" - -# @ woocommerce -#: classes/class-wc-countries.php:64 -msgid "Bonaire, Saint Eustatius and Saba" -msgstr "Bonaire, Saint Eustatius and Saba" - -# @ woocommerce -#: classes/class-wc-countries.php:65 -msgid "Bosnia and Herzegovina" -msgstr "Bosnia and Herzegovina" - -# @ woocommerce -#: classes/class-wc-countries.php:66 -msgid "Botswana" -msgstr "Botswana" - -# @ woocommerce -#: classes/class-wc-countries.php:67 -msgid "Bouvet Island" -msgstr "Bouvet Island" - -# @ woocommerce -#: classes/class-wc-countries.php:68 -msgid "Brazil" -msgstr "Brazil" - -# @ woocommerce -#: classes/class-wc-countries.php:69 -msgid "British Indian Ocean Territory" -msgstr "British Indian Ocean Territory" - -# @ woocommerce -#: classes/class-wc-countries.php:70 -msgid "British Virgin Islands" -msgstr "British Virgin Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:71 -msgid "Brunei" -msgstr "Brunei" - -# @ woocommerce -#: classes/class-wc-countries.php:72 -msgid "Bulgaria" -msgstr "Bulgaria" - -# @ woocommerce -#: classes/class-wc-countries.php:73 -msgid "Burkina Faso" -msgstr "Burkina Faso" - -# @ woocommerce -#: classes/class-wc-countries.php:74 -msgid "Burundi" -msgstr "Burundi" - -# @ woocommerce -#: classes/class-wc-countries.php:75 -msgid "Cambodia" -msgstr "Cambodia" - -# @ woocommerce -#: classes/class-wc-countries.php:76 -msgid "Cameroon" -msgstr "Cameroon" - -# @ woocommerce -#: classes/class-wc-countries.php:77 -msgid "Canada" -msgstr "Canada" - -# @ woocommerce -#: classes/class-wc-countries.php:78 -msgid "Cape Verde" -msgstr "Cape Verde" - -# @ woocommerce -#: classes/class-wc-countries.php:79 -msgid "Cayman Islands" -msgstr "Cayman Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:80 -msgid "Central African Republic" -msgstr "Central African Republic" - -# @ woocommerce -#: classes/class-wc-countries.php:81 -msgid "Chad" -msgstr "Chad" - -# @ woocommerce -#: classes/class-wc-countries.php:82 -msgid "Chile" -msgstr "Chile" - -# @ woocommerce -#: classes/class-wc-countries.php:83 -msgid "China" -msgstr "China" - -# @ woocommerce -#: classes/class-wc-countries.php:84 -msgid "Christmas Island" -msgstr "Christmas Island" - -# @ woocommerce -#: classes/class-wc-countries.php:85 -msgid "Cocos (Keeling) Islands" -msgstr "Cocos (Keeling) Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:86 -msgid "Colombia" -msgstr "Colombia" - -# @ woocommerce -#: classes/class-wc-countries.php:87 -msgid "Comoros" -msgstr "Comoros" - -# @ woocommerce -#: classes/class-wc-countries.php:88 -msgid "Congo (Brazzaville)" -msgstr "Congo (Brazzaville)" - -# @ woocommerce -#: classes/class-wc-countries.php:89 -msgid "Congo (Kinshasa)" -msgstr "Congo (Kinshasa)" - -# @ woocommerce -#: classes/class-wc-countries.php:90 -msgid "Cook Islands" -msgstr "Cook Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:91 -msgid "Costa Rica" -msgstr "Costa Rica" - -# @ woocommerce -#: classes/class-wc-countries.php:92 -msgid "Croatia" -msgstr "Croatia" - -# @ woocommerce -#: classes/class-wc-countries.php:93 -msgid "Cuba" -msgstr "Cuba" - -# @ woocommerce -#: classes/class-wc-countries.php:94 -msgid "CuraÇao" -msgstr "CuraÇao" - -# @ woocommerce -#: classes/class-wc-countries.php:95 -msgid "Cyprus" -msgstr "Cyprus" - -# @ woocommerce -#: classes/class-wc-countries.php:96 -msgid "Czech Republic" -msgstr "Czech Republic" - -# @ woocommerce -#: classes/class-wc-countries.php:97 -msgid "Denmark" -msgstr "Denmark" - -# @ woocommerce -#: classes/class-wc-countries.php:98 -msgid "Djibouti" -msgstr "Djibouti" - -# @ woocommerce -#: classes/class-wc-countries.php:99 -msgid "Dominica" -msgstr "Dominica" - -# @ woocommerce -#: classes/class-wc-countries.php:100 -msgid "Dominican Republic" -msgstr "Dominican Republic" - -# @ woocommerce -#: classes/class-wc-countries.php:101 -msgid "Ecuador" -msgstr "Ecuador" - -# @ woocommerce -#: classes/class-wc-countries.php:102 -msgid "Egypt" -msgstr "Egypt" - -# @ woocommerce -#: classes/class-wc-countries.php:103 -msgid "El Salvador" -msgstr "El Salvador" - -# @ woocommerce -#: classes/class-wc-countries.php:104 -msgid "Equatorial Guinea" -msgstr "Equatorial Guinea" - -# @ woocommerce -#: classes/class-wc-countries.php:105 -msgid "Eritrea" -msgstr "Eritrea" - -# @ woocommerce -#: classes/class-wc-countries.php:106 -msgid "Estonia" -msgstr "Estonia" - -# @ woocommerce -#: classes/class-wc-countries.php:107 -msgid "Ethiopia" -msgstr "Ethiopia" - -# @ woocommerce -#: classes/class-wc-countries.php:108 -msgid "Falkland Islands" -msgstr "Falkland Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:109 -msgid "Faroe Islands" -msgstr "Faroe Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:110 -msgid "Fiji" -msgstr "Fiji" - -# @ woocommerce -#: classes/class-wc-countries.php:111 -msgid "Finland" -msgstr "Finland" - -# @ woocommerce -#: classes/class-wc-countries.php:112 -msgid "France" -msgstr "France" - -# @ woocommerce -#: classes/class-wc-countries.php:113 -msgid "French Guiana" -msgstr "French Guiana" - -# @ woocommerce -#: classes/class-wc-countries.php:114 -msgid "French Polynesia" -msgstr "French Polynesia" - -# @ woocommerce -#: classes/class-wc-countries.php:115 -msgid "French Southern Territories" -msgstr "French Southern Territories" - -# @ woocommerce -#: classes/class-wc-countries.php:116 -msgid "Gabon" -msgstr "Gabon" - -# @ woocommerce -#: classes/class-wc-countries.php:117 -msgid "Gambia" -msgstr "Gambia" - -# @ woocommerce -#: classes/class-wc-countries.php:118 i18n/states/US.php:23 -msgid "Georgia" -msgstr "Georgia" - -# @ woocommerce -#: classes/class-wc-countries.php:119 -msgid "Germany" -msgstr "Germany" - -# @ woocommerce -#: classes/class-wc-countries.php:120 -msgid "Ghana" -msgstr "Ghana" - -# @ woocommerce -#: classes/class-wc-countries.php:121 -msgid "Gibraltar" -msgstr "Gibraltar" - -# @ woocommerce -#: classes/class-wc-countries.php:122 -msgid "Greece" -msgstr "Greece" - -# @ woocommerce -#: classes/class-wc-countries.php:123 -msgid "Greenland" -msgstr "Greenland" - -# @ woocommerce -#: classes/class-wc-countries.php:124 -msgid "Grenada" -msgstr "Grenada" - -# @ woocommerce -#: classes/class-wc-countries.php:125 -msgid "Guadeloupe" -msgstr "Guadeloupe" - -# @ woocommerce -#: classes/class-wc-countries.php:126 -msgid "Guatemala" -msgstr "Guatemala" - -# @ woocommerce -#: classes/class-wc-countries.php:127 -msgid "Guernsey" -msgstr "Guernsey" - -# @ woocommerce -#: classes/class-wc-countries.php:128 -msgid "Guinea" -msgstr "Guinea" - -# @ woocommerce -#: classes/class-wc-countries.php:129 -msgid "Guinea-Bissau" -msgstr "Guinea-Bissau" - -# @ woocommerce -#: classes/class-wc-countries.php:130 -msgid "Guyana" -msgstr "Guyana" - -# @ woocommerce -#: classes/class-wc-countries.php:131 -msgid "Haiti" -msgstr "Haiti" - -# @ woocommerce -#: classes/class-wc-countries.php:132 -msgid "Heard Island and McDonald Islands" -msgstr "Heard Island and McDonald Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:133 -msgid "Honduras" -msgstr "Honduras" - -# @ woocommerce -#: classes/class-wc-countries.php:134 -msgid "Hong Kong" -msgstr "Hong Kong" - -# @ woocommerce -#: classes/class-wc-countries.php:135 -msgid "Hungary" -msgstr "Hungary" - -# @ woocommerce -#: classes/class-wc-countries.php:136 -msgid "Iceland" -msgstr "Iceland" - -# @ woocommerce -#: classes/class-wc-countries.php:137 -msgid "India" -msgstr "India" - -# @ woocommerce -#: classes/class-wc-countries.php:138 -msgid "Indonesia" -msgstr "Indonesia" - -# @ woocommerce -#: classes/class-wc-countries.php:139 -msgid "Iran" -msgstr "Iran" - -# @ woocommerce -#: classes/class-wc-countries.php:140 -msgid "Iraq" -msgstr "Iraq" - -# @ woocommerce -#: classes/class-wc-countries.php:141 -msgid "Republic of Ireland" -msgstr "Republic of Ireland" - -# @ woocommerce -#: classes/class-wc-countries.php:142 -msgid "Isle of Man" -msgstr "Isle of Man" - -# @ woocommerce -#: classes/class-wc-countries.php:143 -msgid "Israel" -msgstr "Israel" - -# @ woocommerce -#: classes/class-wc-countries.php:144 -msgid "Italy" -msgstr "Italy" - -# @ woocommerce -#: classes/class-wc-countries.php:145 -msgid "Ivory Coast" -msgstr "Ivory Coast" - -# @ woocommerce -#: classes/class-wc-countries.php:146 -msgid "Jamaica" -msgstr "Jamaica" - -# @ woocommerce -#: classes/class-wc-countries.php:147 -msgid "Japan" -msgstr "Japan" - -# @ woocommerce -#: classes/class-wc-countries.php:148 -msgid "Jersey" -msgstr "Jersey" - -# @ woocommerce -#: classes/class-wc-countries.php:149 -msgid "Jordan" -msgstr "Jordan" - -# @ woocommerce -#: classes/class-wc-countries.php:150 -msgid "Kazakhstan" -msgstr "Kazakhstan" - -# @ woocommerce -#: classes/class-wc-countries.php:151 -msgid "Kenya" -msgstr "Kenya" - -# @ woocommerce -#: classes/class-wc-countries.php:152 -msgid "Kiribati" -msgstr "Kiribati" - -# @ woocommerce -#: classes/class-wc-countries.php:153 -msgid "Kuwait" -msgstr "Kuwait" - -# @ woocommerce -#: classes/class-wc-countries.php:154 -msgid "Kyrgyzstan" -msgstr "Kyrgyzstan" - -# @ woocommerce -#: classes/class-wc-countries.php:155 -msgid "Laos" -msgstr "Laos" - -# @ woocommerce -#: classes/class-wc-countries.php:156 -msgid "Latvia" -msgstr "Latvia" - -# @ woocommerce -#: classes/class-wc-countries.php:157 -msgid "Lebanon" -msgstr "Lebanon" - -# @ woocommerce -#: classes/class-wc-countries.php:158 -msgid "Lesotho" -msgstr "Lesotho" - -# @ woocommerce -#: classes/class-wc-countries.php:159 -msgid "Liberia" -msgstr "Liberia" - -# @ woocommerce -#: classes/class-wc-countries.php:160 -msgid "Libya" -msgstr "Libya" - -# @ woocommerce -#: classes/class-wc-countries.php:161 -msgid "Liechtenstein" -msgstr "Liechtenstein" - -# @ woocommerce -#: classes/class-wc-countries.php:162 -msgid "Lithuania" -msgstr "Lithuania" - -# @ woocommerce -#: classes/class-wc-countries.php:163 -msgid "Luxembourg" -msgstr "Luxembourg" - -# @ woocommerce -#: classes/class-wc-countries.php:164 -msgid "Macao S.A.R., China" -msgstr "Macao S.A.R., China" - -# @ woocommerce -#: classes/class-wc-countries.php:165 -msgid "Macedonia" -msgstr "Macedonia" - -# @ woocommerce -#: classes/class-wc-countries.php:166 -msgid "Madagascar" -msgstr "Madagascar" - -# @ woocommerce -#: classes/class-wc-countries.php:167 -msgid "Malawi" -msgstr "Malawi" - -# @ woocommerce -#: classes/class-wc-countries.php:168 -msgid "Malaysia" -msgstr "Malaysia" - -# @ woocommerce -#: classes/class-wc-countries.php:169 -msgid "Maldives" -msgstr "Maldives" - -# @ woocommerce -#: classes/class-wc-countries.php:170 -msgid "Mali" -msgstr "Mali" - -# @ woocommerce -#: classes/class-wc-countries.php:171 -msgid "Malta" -msgstr "Malta" - -# @ woocommerce -#: classes/class-wc-countries.php:172 -msgid "Marshall Islands" -msgstr "Marshall Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:173 -msgid "Martinique" -msgstr "Martinique" - -# @ woocommerce -#: classes/class-wc-countries.php:174 -msgid "Mauritania" -msgstr "Mauritania" - -# @ woocommerce -#: classes/class-wc-countries.php:175 -msgid "Mauritius" -msgstr "Mauritius" - -# @ woocommerce -#: classes/class-wc-countries.php:176 -msgid "Mayotte" -msgstr "Mayotte" - -# @ woocommerce -#: classes/class-wc-countries.php:177 -msgid "Mexico" -msgstr "Mexico" - -# @ woocommerce -#: classes/class-wc-countries.php:178 -msgid "Micronesia" -msgstr "Micronesia" - -# @ woocommerce -#: classes/class-wc-countries.php:179 -msgid "Moldova" -msgstr "Moldova" - -# @ woocommerce -#: classes/class-wc-countries.php:180 -msgid "Monaco" -msgstr "Monaco" - -# @ woocommerce -#: classes/class-wc-countries.php:181 -msgid "Mongolia" -msgstr "Mongolia" - -# @ woocommerce -#: classes/class-wc-countries.php:182 -msgid "Montenegro" -msgstr "Montenegro" - -# @ woocommerce -#: classes/class-wc-countries.php:183 -msgid "Montserrat" -msgstr "Montserrat" - -# @ woocommerce -#: classes/class-wc-countries.php:184 -msgid "Morocco" -msgstr "Morocco" - -# @ woocommerce -#: classes/class-wc-countries.php:185 -msgid "Mozambique" -msgstr "Mozambique" - -# @ woocommerce -#: classes/class-wc-countries.php:186 -msgid "Myanmar" -msgstr "Myanmar" - -# @ woocommerce -#: classes/class-wc-countries.php:187 -msgid "Namibia" -msgstr "Namibia" - -# @ woocommerce -#: classes/class-wc-countries.php:188 -msgid "Nauru" -msgstr "Nauru" - -# @ woocommerce -#: classes/class-wc-countries.php:189 -msgid "Nepal" -msgstr "Nepal" - -# @ woocommerce -#: classes/class-wc-countries.php:190 -msgid "Netherlands" -msgstr "Netherlands" - -# @ woocommerce -#: classes/class-wc-countries.php:191 -msgid "Netherlands Antilles" -msgstr "Netherlands Antilles" - -# @ woocommerce -#: classes/class-wc-countries.php:192 -msgid "New Caledonia" -msgstr "New Caledonia" - -# @ woocommerce -#: classes/class-wc-countries.php:193 -msgid "New Zealand" -msgstr "New Zealand" - -# @ woocommerce -#: classes/class-wc-countries.php:194 -msgid "Nicaragua" -msgstr "Nicaragua" - -# @ woocommerce -#: classes/class-wc-countries.php:195 -msgid "Niger" -msgstr "Niger" - -# @ woocommerce -#: classes/class-wc-countries.php:196 -msgid "Nigeria" -msgstr "Nigeria" - -# @ woocommerce -#: classes/class-wc-countries.php:197 -msgid "Niue" -msgstr "Niue" - -# @ woocommerce -#: classes/class-wc-countries.php:198 -msgid "Norfolk Island" -msgstr "Norfolk Island" - -# @ woocommerce -#: classes/class-wc-countries.php:199 -msgid "North Korea" -msgstr "North Korea" - -# @ woocommerce -#: classes/class-wc-countries.php:200 -msgid "Norway" -msgstr "Norway" - -# @ woocommerce -#: classes/class-wc-countries.php:201 -msgid "Oman" -msgstr "Oman" - -# @ woocommerce -#: classes/class-wc-countries.php:202 -msgid "Pakistan" -msgstr "Pakistan" - -# @ woocommerce -#: classes/class-wc-countries.php:203 -msgid "Palestinian Territory" -msgstr "Palestinian Territory" - -# @ woocommerce -#: classes/class-wc-countries.php:204 -msgid "Panama" -msgstr "Panama" - -# @ woocommerce -#: classes/class-wc-countries.php:205 -msgid "Papua New Guinea" -msgstr "Papua New Guinea" - -# @ woocommerce -#: classes/class-wc-countries.php:206 -msgid "Paraguay" -msgstr "Paraguay" - -# @ woocommerce -#: classes/class-wc-countries.php:207 -msgid "Peru" -msgstr "Peru" - -# @ woocommerce -#: classes/class-wc-countries.php:208 -msgid "Philippines" -msgstr "Philippines" - -# @ woocommerce -#: classes/class-wc-countries.php:209 -msgid "Pitcairn" -msgstr "Pitcairn" - -# @ woocommerce -#: classes/class-wc-countries.php:210 -msgid "Poland" -msgstr "Poland" - -# @ woocommerce -#: classes/class-wc-countries.php:211 -msgid "Portugal" -msgstr "Portugal" - -# @ woocommerce -#: classes/class-wc-countries.php:212 -msgid "Qatar" -msgstr "Qatar" - -# @ woocommerce -#: classes/class-wc-countries.php:213 -msgid "Reunion" -msgstr "Reunion" - -# @ woocommerce -#: classes/class-wc-countries.php:214 -msgid "Romania" -msgstr "Romania" - -# @ woocommerce -#: classes/class-wc-countries.php:215 -msgid "Russia" -msgstr "Russia" - -# @ woocommerce -#: classes/class-wc-countries.php:216 -msgid "Rwanda" -msgstr "Rwanda" - -# @ woocommerce -#: classes/class-wc-countries.php:217 -msgid "Saint Barthélemy" -msgstr "Saint Barthélemy" - -# @ woocommerce -#: classes/class-wc-countries.php:218 -msgid "Saint Helena" -msgstr "Saint Helena" - -# @ woocommerce -#: classes/class-wc-countries.php:219 -msgid "Saint Kitts and Nevis" -msgstr "Saint Kitts and Nevis" - -# @ woocommerce -#: classes/class-wc-countries.php:220 -msgid "Saint Lucia" -msgstr "Saint Lucia" - -# @ woocommerce -#: classes/class-wc-countries.php:221 -msgid "Saint Martin (French part)" -msgstr "Saint Martin (French part)" - -# @ woocommerce -#: classes/class-wc-countries.php:222 -msgid "Saint Martin (Dutch part)" -msgstr "Saint Martin (Dutch part)" - -# @ woocommerce -#: classes/class-wc-countries.php:223 -msgid "Saint Pierre and Miquelon" -msgstr "Saint Pierre and Miquelon" - -# @ woocommerce -#: classes/class-wc-countries.php:224 -msgid "Saint Vincent and the Grenadines" -msgstr "Saint Vincent and the Grenadines" - -# @ woocommerce -#: classes/class-wc-countries.php:225 -msgid "San Marino" -msgstr "San Marino" - -# @ woocommerce -#: classes/class-wc-countries.php:226 -msgid "São Tomé and Príncipe" -msgstr "São Tomé and Príncipe" - -# @ woocommerce -#: classes/class-wc-countries.php:227 -msgid "Saudi Arabia" -msgstr "Saudi Arabia" - -# @ woocommerce -#: classes/class-wc-countries.php:228 -msgid "Senegal" -msgstr "Senegal" - -# @ woocommerce -#: classes/class-wc-countries.php:229 -msgid "Serbia" -msgstr "Serbia" - -# @ woocommerce -#: classes/class-wc-countries.php:230 -msgid "Seychelles" -msgstr "Seychelles" - -# @ woocommerce -#: classes/class-wc-countries.php:231 -msgid "Sierra Leone" -msgstr "Sierra Leone" - -# @ woocommerce -#: classes/class-wc-countries.php:232 -msgid "Singapore" -msgstr "Singapore" - -# @ woocommerce -#: classes/class-wc-countries.php:233 -msgid "Slovakia" -msgstr "Slovakia" - -# @ woocommerce -#: classes/class-wc-countries.php:234 -msgid "Slovenia" -msgstr "Slovenia" - -# @ woocommerce -#: classes/class-wc-countries.php:235 -msgid "Solomon Islands" -msgstr "Solomon Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:236 -msgid "Somalia" -msgstr "Somalia" - -# @ woocommerce -#: classes/class-wc-countries.php:237 -msgid "South Africa" -msgstr "South Africa" - -# @ woocommerce -#: classes/class-wc-countries.php:238 -msgid "South Georgia/Sandwich Islands" -msgstr "South Georgia/Sandwich Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:239 -msgid "South Korea" -msgstr "South Korea" - -# @ woocommerce -#: classes/class-wc-countries.php:240 -msgid "South Sudan" -msgstr "South Sudan" - -# @ woocommerce -#: classes/class-wc-countries.php:241 -msgid "Spain" -msgstr "Spain" - -# @ woocommerce -#: classes/class-wc-countries.php:242 -msgid "Sri Lanka" -msgstr "Sri Lanka" - -# @ woocommerce -#: classes/class-wc-countries.php:243 -msgid "Sudan" -msgstr "Sudan" - -# @ woocommerce -#: classes/class-wc-countries.php:244 -msgid "Suriname" -msgstr "Suriname" - -# @ woocommerce -#: classes/class-wc-countries.php:245 -msgid "Svalbard and Jan Mayen" -msgstr "Svalbard and Jan Mayen" - -# @ woocommerce -#: classes/class-wc-countries.php:246 -msgid "Swaziland" -msgstr "Swaziland" - -# @ woocommerce -#: classes/class-wc-countries.php:247 -msgid "Sweden" -msgstr "Sweden" - -# @ woocommerce -#: classes/class-wc-countries.php:248 -msgid "Switzerland" -msgstr "Switzerland" - -# @ woocommerce -#: classes/class-wc-countries.php:249 -msgid "Syria" -msgstr "Syria" - -# @ woocommerce -#: classes/class-wc-countries.php:250 -msgid "Taiwan" -msgstr "Taiwan" - -# @ woocommerce -#: classes/class-wc-countries.php:251 -msgid "Tajikistan" -msgstr "Tajikistan" - -# @ woocommerce -#: classes/class-wc-countries.php:252 -msgid "Tanzania" -msgstr "Tanzania" - -# @ woocommerce -#: classes/class-wc-countries.php:253 -msgid "Thailand" -msgstr "Thailand" - -# @ woocommerce -#: classes/class-wc-countries.php:254 -msgid "Timor-Leste" -msgstr "Timor-Leste" - -# @ woocommerce -#: classes/class-wc-countries.php:255 -msgid "Togo" -msgstr "Togo" - -# @ woocommerce -#: classes/class-wc-countries.php:256 -msgid "Tokelau" -msgstr "Tokelau" - -# @ woocommerce -#: classes/class-wc-countries.php:257 -msgid "Tonga" -msgstr "Tonga" - -# @ woocommerce -#: classes/class-wc-countries.php:258 -msgid "Trinidad and Tobago" -msgstr "Trinidad and Tobago" - -# @ woocommerce -#: classes/class-wc-countries.php:259 -msgid "Tunisia" -msgstr "Tunisia" - -# @ woocommerce -#: classes/class-wc-countries.php:260 -msgid "Turkey" -msgstr "Turkey" - -# @ woocommerce -#: classes/class-wc-countries.php:261 -msgid "Turkmenistan" -msgstr "Turkmenistan" - -# @ woocommerce -#: classes/class-wc-countries.php:262 -msgid "Turks and Caicos Islands" -msgstr "Turks and Caicos Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:263 -msgid "Tuvalu" -msgstr "Tuvalu" - -# @ woocommerce -#: classes/class-wc-countries.php:264 -msgid "Uganda" -msgstr "Uganda" - -# @ woocommerce -#: classes/class-wc-countries.php:265 -msgid "Ukraine" -msgstr "Ukraine" - -# @ woocommerce -#: classes/class-wc-countries.php:266 -msgid "United Arab Emirates" -msgstr "United Arab Emirates" - -# @ woocommerce -#: classes/class-wc-countries.php:267 -msgid "United Kingdom" -msgstr "United Kingdom" - -# @ woocommerce -#: classes/class-wc-countries.php:268 -msgid "United States" -msgstr "United States" - -# @ woocommerce -#: classes/class-wc-countries.php:269 -msgid "Uruguay" -msgstr "Uruguay" - -# @ woocommerce -#: classes/class-wc-countries.php:270 -msgid "Uzbekistan" -msgstr "Uzbekistan" - -# @ woocommerce -#: classes/class-wc-countries.php:271 -msgid "Vanuatu" -msgstr "Vanuatu" - -# @ woocommerce -#: classes/class-wc-countries.php:272 -msgid "Vatican" -msgstr "Vatican" - -# @ woocommerce -#: classes/class-wc-countries.php:273 -msgid "Venezuela" -msgstr "Venezuela" - -# @ woocommerce -#: classes/class-wc-countries.php:274 -msgid "Vietnam" -msgstr "Vietnam" - -# @ woocommerce -#: classes/class-wc-countries.php:275 -msgid "Wallis and Futuna" -msgstr "Wallis and Futuna" - -# @ woocommerce -#: classes/class-wc-countries.php:276 -msgid "Western Sahara" -msgstr "Western Sahara" - -# @ woocommerce -#: classes/class-wc-countries.php:277 -msgid "Western Samoa" -msgstr "Western Samoa" - -# @ woocommerce -#: classes/class-wc-countries.php:278 -msgid "Yemen" -msgstr "Yemen" - -# @ woocommerce -#: classes/class-wc-countries.php:279 -msgid "Zambia" -msgstr "Zambia" - -# @ woocommerce -#: classes/class-wc-countries.php:280 -msgid "Zimbabwe" -msgstr "Zimbabwe" - -# @ woocommerce -#: classes/class-wc-countries.php:418 -msgid "to the" -msgstr " " - -# @ woocommerce -#: classes/class-wc-countries.php:419 -msgid "to" -msgstr " " - -# @ woocommerce -#: classes/class-wc-countries.php:432 -msgid "the" -msgstr " " - -# @ woocommerce -#: classes/class-wc-countries.php:444 -msgid "VAT" -msgstr "VAT" - -# @ woocommerce -#: classes/class-wc-countries.php:444 -msgid "Tax" -msgstr "세금" - -# @ woocommerce -#: classes/class-wc-countries.php:457 -msgid "(incl. VAT)" -msgstr "(부가세 포함)" - -# @ woocommerce -#: classes/class-wc-countries.php:457 -msgid "(incl. tax)" -msgstr "(세금 포함)" - -# @ woocommerce -#: classes/class-wc-countries.php:470 -msgid "(ex. VAT)" -msgstr "(부가세 제외)" - -# @ woocommerce -#: classes/class-wc-countries.php:470 -msgid "(ex. tax)" -msgstr "(세금 제외)" - -# @ woocommerce -#: classes/class-wc-countries.php:678 -msgid "Country" -msgstr "국가" - -# @ woocommerce -#: classes/class-wc-countries.php:683 -msgid "First Name" -msgstr "이름" - -# @ woocommerce -#: classes/class-wc-countries.php:688 -msgid "Last Name" -msgstr "성" - -# @ woocommerce -#: classes/class-wc-countries.php:694 -msgid "Company Name" -msgstr "회사명" - -# @ woocommerce -#: classes/class-wc-countries.php:698 -msgid "Address" -msgstr "주소 -번지 이후" - -# @ woocommerce -#: classes/class-wc-countries.php:699 -msgctxt "placeholder" -msgid "Street address" -msgstr "번지" - -# @ woocommerce -#: classes/class-wc-countries.php:707 -msgctxt "placeholder" -msgid "Apartment, suite, unit etc. (optional)" -msgstr "아파트, 동 호수, 기타(선택 사항)" - -# @ woocommerce -#: classes/class-wc-countries.php:715 classes/class-wc-countries.php:716 -msgid "Town / City" -msgstr "주소 - 시/도(번지 이전까지)" - -# @ woocommerce -#: classes/class-wc-countries.php:725 classes/class-wc-countries.php:726 -msgid "State / County" -msgstr "주/군" - -# @ woocommerce -#: classes/class-wc-countries.php:734 classes/class-wc-countries.php:735 -#: templates/cart/shipping-calculator.php:80 -msgid "Postcode / Zip" -msgstr "우편 번호" - -# @ woocommerce -#: classes/class-wc-countries.php:774 classes/class-wc-countries.php:784 -#: classes/class-wc-countries.php:804 classes/class-wc-countries.php:859 -#: classes/class-wc-countries.php:883 classes/class-wc-countries.php:933 -#: classes/class-wc-countries.php:957 classes/class-wc-countries.php:998 -msgid "Province" -msgstr "지역" - -# @ woocommerce -#: classes/class-wc-countries.php:790 -msgid "Canton" -msgstr "Canton" - -# @ woocommerce -#: classes/class-wc-countries.php:799 classes/class-wc-countries.php:939 -msgid "Municipality" -msgstr "시" - -# @ woocommerce -#: classes/class-wc-countries.php:846 -msgid "Town / District" -msgstr "구/읍" - -# @ woocommerce -#: classes/class-wc-countries.php:849 -msgid "Region" -msgstr "지역" - -# @ woocommerce -#: classes/class-wc-countries.php:962 -msgid "Zip" -msgstr "우편번호" - -# @ woocommerce -#: classes/class-wc-countries.php:965 -msgid "State" -msgstr "주" - -# @ woocommerce -#: classes/class-wc-countries.php:970 -msgid "Postcode" -msgstr "우편 번호" - -# @ woocommerce -#: classes/class-wc-countries.php:973 -msgid "County" -msgstr "군" - -# @ woocommerce -#: classes/class-wc-countries.php:1074 -msgid "Email Address" -msgstr "이메일 주소" - -# @ woocommerce -#: classes/class-wc-countries.php:1080 -msgid "Phone" -msgstr "전화번호" - -# @ woocommerce -#: classes/class-wc-coupon.php:421 -msgid "Coupon code applied successfully." -msgstr "쿠폰 코드가 성공적으로 적용됐습니다." - -# @ woocommerce -#: classes/class-wc-coupon.php:442 -msgid "Coupon is not valid." -msgstr "쿠폰이 유효하지 않습니다." - -# @ woocommerce -#: classes/class-wc-coupon.php:445 classes/class-wc-coupon.php:495 -msgid "Coupon does not exist!" -msgstr "쿠폰이 존재하지 않습니다!" - -# @ woocommerce -#: classes/class-wc-coupon.php:448 -msgid "" -"Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from " -"your order." -msgstr "" -"죄송합니다. 쿠폰 \"%s\"가 유효하지 않은 것 같습니다 - 주문에서 이제 제거됐습" -"니다." - -# @ woocommerce -#: classes/class-wc-coupon.php:451 -msgid "" -"Sorry, it seems the coupon \"%s\" is not yours - it has now been removed " -"from your order." -msgstr "" -"죄송합니다. 쿠폰 \"%s\" 가 고객님의 것이 아닌 것 같습니다 - 이제 주문에서 제" -"거됐습니다." - -# @ woocommerce -#: classes/class-wc-coupon.php:454 -msgid "Coupon code already applied!" -msgstr "쿠폰 코드가 이미 적용됐습니다!" - -# @ woocommerce -#: classes/class-wc-coupon.php:457 -msgid "" -"Sorry, coupon \"%s\" has already been applied and cannot be used in " -"conjunction with other coupons." -msgstr "" -"죄송합니다. 쿠폰 \"%s\"는 이미 적용됐으며 다른 쿠폰과 같이 사용할 수 없습니" -"다." - -# @ woocommerce -#: classes/class-wc-coupon.php:460 -msgid "Coupon usage limit has been reached." -msgstr "쿠폰 사용 한도가 초과됐습니다." - -# @ woocommerce -#: classes/class-wc-coupon.php:463 -msgid "This coupon has expired." -msgstr "이 쿠폰은 만료됐습니다." - -# @ woocommerce -#: classes/class-wc-coupon.php:466 -msgid "The minimum spend for this coupon is %s." -msgstr "이 쿠폰의 최소 사용 한도는 %s입니다." - -# @ woocommerce -#: classes/class-wc-coupon.php:469 -msgid "Sorry, this coupon is not applicable to your cart contents." -msgstr "죄송합니다. 이 쿠폰은 고객님의 장바구니 상품에 적용할 수 없습니다." - -# @ woocommerce -#: classes/class-wc-coupon.php:472 -msgid "Sorry, this coupon is not valid for sale items." -msgstr "죄송합니다. 이 쿠폰은 세일 아이템에 유효하지 않습니다." - -# @ woocommerce -#: classes/class-wc-coupon.php:498 -msgid "Please enter a coupon code." -msgstr "쿠폰 코드를 입력하세요." - -# @ woocommerce -#: classes/class-wc-customer.php:628 classes/class-wc-customer.php:638 -msgid "File %d" -msgstr "파일 %d" - -# @ woocommerce -#: classes/class-wc-emails.php:246 -msgid "Note" -msgstr "메모" - -# @ woocommerce -#: classes/class-wc-emails.php:281 -msgid "Product low in stock" -msgstr "상품이 재고가 부족합니다" - -# @ woocommerce -#: classes/class-wc-emails.php:286 classes/class-wc-emails.php:318 -#: classes/class-wc-emails.php:362 -msgid "Variation #%s of %s" -msgstr "옵션 %s 중 #%s" - -# @ woocommerce -#: classes/class-wc-emails.php:288 classes/class-wc-emails.php:320 -#: classes/class-wc-emails.php:364 -msgid "Product #%s - %s" -msgstr "상품 #%s - %s" - -# @ woocommerce -#: classes/class-wc-emails.php:290 -msgid "is low in stock." -msgstr "는 재고가 부족합니다." - -# @ woocommerce -#: classes/class-wc-emails.php:313 -msgid "Product out of stock" -msgstr "상품이 품절입니다" - -# @ woocommerce -#: classes/class-wc-emails.php:322 -msgid "is out of stock." -msgstr "는 품절입니다." - -# @ woocommerce -#: classes/class-wc-emails.php:357 -msgid "Product Backorder" -msgstr "상품 미재고 주문" - -# @ woocommerce -#: classes/class-wc-emails.php:366 -msgid "%s units of %s have been backordered in order #%s." -msgstr "%s 단위의 %s가 주문 #%s에 미재고 주문됐습니다." - -# @ woocommerce -#: classes/class-wc-order.php:283 -msgctxt "hash before order number" -msgid "#" -msgstr "#" - -# @ woocommerce -#: classes/class-wc-order.php:886 -msgid " %svia %s" -msgstr " %s - %s" - -# @ woocommerce -#: classes/class-wc-order.php:950 -msgid "Cart Subtotal:" -msgstr "장바구니 소계:" - -# @ woocommerce -#: classes/class-wc-order.php:956 -msgid "Cart Discount:" -msgstr "장바구니 할인:" - -# @ woocommerce -#: classes/class-wc-order.php:962 -msgid "Shipping:" -msgstr "배송:" - -# @ woocommerce -#: classes/class-wc-order.php:998 -msgid "Order Discount:" -msgstr "주문 할인:" - -# @ woocommerce -#: classes/class-wc-order.php:1003 -msgid "Order Total:" -msgstr "주문 총계:" - -# @ woocommerce -#: classes/class-wc-order.php:1017 templates/cart/totals.php:105 -#: templates/checkout/review-order.php:104 -msgid "(Includes %s)" -msgstr "(%s 포함)" - -# @ woocommerce -#: classes/class-wc-order.php:1168 classes/class-wc-order.php:1170 -#: classes/class-wc-order.php:1173 -msgid "WooCommerce" -msgstr "WooCommerce" - -# @ woocommerce -#: classes/class-wc-order.php:1220 -msgid "Order status changed from %s to %s." -msgstr "주문 상태가 %s에서 %s로 변경됐습니다." - -# @ woocommerce -#: classes/class-wc-order.php:1452 woocommerce-ajax.php:1089 -#: woocommerce-ajax.php:1090 -msgid "Item #%s stock reduced from %s to %s." -msgstr "아이템 #%s 재고 감소됨 %s에서 %s로." - -# @ woocommerce -#: classes/class-wc-order.php:1464 -msgid "Order item stock reduced successfully." -msgstr "주문 아이템 재고가 성공적으로 감소됐습니다." - -# @ woocommerce -#: classes/class-wc-product-external.php:56 -msgid "Buy product" -msgstr "상품 구매하기" - -# @ woocommerce -#: classes/class-wc-shortcodes.php:571 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:274 -#: templates/loop/add-to-cart.php:46 -#: templates/single-product/add-to-cart/grouped.php:45 -#: templates/single-product/add-to-cart/grouped.php:77 -#: templates/single-product/add-to-cart/simple.php:42 -#: templates/single-product/add-to-cart/variable.php:83 -msgid "Add to cart" -msgstr "장바구니" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:24 -msgid "Completed order" -msgstr "완료된 주문" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:25 -msgid "" -"Order complete emails are sent to the customer when the order is marked " -"complete and usual indicates that the order has been shipped." -msgstr "" -"주문이 완료된 것으로 표시되면 주문 완료 이메일이 고객에게 보내지며 보통의 경" -"우 주문이 발송된 것으로 표시됩니다." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:27 -msgid "Your order is complete" -msgstr "고객님의 주문이 완료됐습니다" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:28 -msgid "Your {blogname} order from {order_date} is complete" -msgstr "{order_date}날짜 고객님의 {blogname} 주문이 완료됐습니다" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:37 -msgid "Your order is complete - download your files" -msgstr "고객님의 주문이 완료됐습니다 - 파일을 내려받으세요" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:38 -msgid "" -"Your {blogname} order from {order_date} is complete - download your files" -msgstr "" -"{order_date}날짜 고객님의 {blogname} 주문이 완료됐습니다 - 파일을 내려받으세" -"요" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:141 -#: classes/emails/class-wc-email-new-order.php:128 -msgid "Subject" -msgstr "제목" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:148 -#: classes/emails/class-wc-email-new-order.php:135 -msgid "Email Heading" -msgstr "이메일 헤드" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:155 -msgid "Subject (downloadable)" -msgstr "제목 (내려받기 가능)" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:162 -msgid "Email Heading (downloadable)" -msgstr "이메일 헤드 (내려받기 가능)" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:27 -msgid "Customer invoice" -msgstr "고객 송장" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:28 -msgid "" -"Customer invoice emails can be sent to the user containing order info and " -"payment links." -msgstr "" -"주문 정보와 지불 링크가 포함된 고객 송장 이메일이 사용자에게 보내질 수 있습니" -"다." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:33 -msgid "Invoice for order {order_number} from {order_date}" -msgstr "{order_date} 날짜 {order_number} 주문에 대한 송장" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:34 -msgid "Invoice for order {order_number}" -msgstr "{order_number} 주문에 대한 송장" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:36 -msgid "Your {blogname} order from {order_date}" -msgstr "고객님의 {order_date} 날짜 {blogname} 주문" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:37 -msgid "Order {order_number} details" -msgstr "{order_number} 주문 상세" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:158 -msgid "Email subject (paid)" -msgstr "이메일 제목 (지불됨)" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:165 -msgid "Email heading (paid)" -msgstr "이메일 헤드 (지불됨)" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:31 -msgid "New account" -msgstr "새 계정" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:32 -msgid "" -"Customer new account emails are sent when a customer signs up via the " -"checkout or My Account page." -msgstr "" -"고객의 새 계정 이메일은 고객이 결제 또는 나의 계정 페이지를 통해서 회원가입 " -"할 경우 보내집니다." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:37 -msgid "Your account on {blogname}" -msgstr "{blogname}의 계정" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:38 -msgid "Welcome to {blogname}" -msgstr "{blogname}에 오신 것을 환영합니다" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:29 -msgid "Customer note" -msgstr "고객 메모" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:30 -msgid "Customer note emails are sent when you add a note to an order." -msgstr "고객 메모 이메일은 관리자가 주문에 메모를 추가할 경우 보내집니다." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:35 -msgid "Note added to your {blogname} order from {order_date}" -msgstr "{order_date}에 {blogname} 주문에 추가한 메모" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:36 -msgid "A note has been added to your order" -msgstr "주문에 메모가 추가됐습니다." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:24 -msgid "Processing order" -msgstr "처리 중인 주문" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:25 -msgid "" -"This is an order notification sent to the customer after payment containing " -"order details." -msgstr "이것은 지불 후에 고객에게 보내지는 주문 상세가 포함된 주문 알림입니다." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:27 -msgid "Thank you for your order" -msgstr "고객님의 주문에 감사드립니다" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:28 -msgid "Your {blogname} order receipt from {order_date}" -msgstr "{order_date}에 한 {blogname} 주문 영수증" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:36 -msgid "Reset password" -msgstr "비밀번호 초기화" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:37 -msgid "" -"Customer reset password emails are sent when a customer resets their " -"password." -msgstr "" -"고객 비밀번호 초기화 이메일은 고객이 자신의 비밀번호를 초기화했을 때 보내집니" -"다" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:42 -msgid "Password Reset for {blogname}" -msgstr "{blogname}에 대한 비밀번호 초기화" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:43 -msgid "Password Reset Instructions" -msgstr "비밀번호 초기화 안내" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:24 -msgid "New order" -msgstr "새 주문" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:25 -msgid "New order emails are sent when an order is received/paid by a customer." -msgstr "새 주문 이메일은 주문이 고객에게 접수/지불 됐을 때 보내집니다." - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:27 -msgid "New customer order" -msgstr "고객의 새 주문" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:28 -msgid "[{blogname}] New customer order ({order_number}) - {order_date}" -msgstr "[{blogname}] 고객의 새 주문 ({order_number}) - {order_date}" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:121 -msgid "Recipient(s)" -msgstr "수신자" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:123 -msgid "" -"Enter recipients (comma separated) for this email. Defaults to %s." -msgstr "" -"이 이메일에 대한 수신자를 입력하세요 (콤마 분리). 기본은 %s입니" -"다." - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:130 -msgid "" -"This controls the email subject line. Leave blank to use the default " -"subject: %s." -msgstr "" -"이것은 이메일 제목 줄을 제어합니다. 기본 제목을 사용하려면 비워두세요: " -"%s." - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:137 -msgid "" -"This controls the main heading contained within the email notification. " -"Leave blank to use the default heading: %s." -msgstr "" -"이것은 이메일 알림에 포함된 메인 헤딩을 제어합니다. 기본 헤딩을 사용하려면 비" -"워두세요: %s." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:28 -msgid "Bacs" -msgstr "Bacs" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:65 -msgid "Enable Bank Transfer" -msgstr "은행 이체 활성화" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:69 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:63 -#: classes/gateways/cod/class-wc-gateway-cod.php:87 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:135 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:126 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:104 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:84 -msgid "Title" -msgstr "제목" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:71 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:65 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:137 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:128 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:83 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:58 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:106 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:86 -msgid "This controls the title which the user sees during checkout." -msgstr "이것은 사용자가 결제시 보는 제목을 제어합니다." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:72 -msgid "Direct Bank Transfer" -msgstr "직접 은행 이체" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:76 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:70 -msgid "Customer Message" -msgstr "고객 메시지" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:78 -msgid "" -"Give the customer instructions for paying via BACS, and let them know that " -"their order won't be shipping until the money is received." -msgstr "" -"고객에게 BACS를 통한 지불시 안내서를 제공하고 대금을 받기 전까지는 주문이 배" -"송되지 않는다는 것을 알림. " - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:79 -msgid "" -"Make your payment directly into our bank account. Please use your Order ID " -"as the payment reference. Your order wont be shipped until the funds have " -"cleared in our account." -msgstr "" -"고객님의 대금을 저희 은행 계좌로 바로 입급해주세요. 입금 정보에 주문 아이디" -"를 사용해주세요. 고객님의 주문은 대금이 저희 계정에 입금되기 전까지는 배송이 " -"진행되지 않습니다." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:82 -msgid "Account Details" -msgstr "계정 상세" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:84 -msgid "Optionally enter your bank details below for customers to pay into." -msgstr "고객이 입금할 수 있도록 은행 상세 정보를 선택적으로 아래에 입력하세요." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:88 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:163 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:203 -msgid "Account Name" -msgstr "계정 이름" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:94 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:164 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:204 -msgid "Account Number" -msgstr "계좌 번호" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:100 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:165 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:205 -msgid "Sort Code" -msgstr "분류 코드" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:106 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:166 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:206 -msgid "Bank Name" -msgstr "은행 이름" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:112 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:167 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:207 -msgid "IBAN" -msgstr "IBAN" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:117 -msgid "BIC (formerly Swift)" -msgstr "BIC (이전의 Swift)" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:136 -msgid "BACS Payment" -msgstr "BACS 지불" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:137 -msgid "" -"Allows payments by BACS (Bank Account Clearing System), more commonly known " -"as direct bank/wire transfer." -msgstr "" -"BACS (은행 계정 결제 시스템)을 통한 지불 허용, 일반적으로 직접 은행/송금 이체" -"로 알려져있음." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:158 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:200 -msgid "Our Details" -msgstr "사이트 상세 정보" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:168 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:208 -msgid "BIC" -msgstr "BIC" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:234 -msgid "Awaiting BACS payment" -msgstr "BACS 지불 대기중" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:28 -msgid "Cheque" -msgstr "수표" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:59 -msgid "Enable Cheque Payment" -msgstr "수표 지불 활성화" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:66 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:90 -msgid "Cheque Payment" -msgstr "수표 지불" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:72 -msgid "" -"Let the customer know the payee and where they should be sending the cheque " -"to and that their order won't be shipping until you receive it." -msgstr "" -"고객이 수취인과 수표를 보낼 곳, 그리고 고객의 주문이 수표가 도착하기 전에는 " -"배송되지 않는다는 것을 알림" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:73 -msgid "" -"Please send your cheque to Store Name, Store Street, Store Town, Store " -"State / County, Store Postcode." -msgstr "" -"고객님의 수표를 상점 이름, 상점 주소, 상점 시/구, 상점 주/군, 상점 우편번호" -"로 보내주세요." - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:91 -msgid "" -"Allows cheque payments. Why would you take cheques in this day and age? Well " -"you probably wouldn't but it does allow you to make test purchases for " -"testing order emails and the 'success' pages etc." -msgstr "" -"수표 지불 허용. 요즘 수표를 취급하는 것이 시대에 뒤떨어지죠? 워드프레스 쇼핑" -"몰을 실험하는데 좋습니다. 실험 구매를 하고 주문을 해서 주문 이메일을 받는 등 " -"성공 페이지까지 볼 수 있습니다." - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:147 -msgid "Awaiting cheque payment" -msgstr "수표 지불 대기중" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:27 -#: classes/gateways/cod/class-wc-gateway-cod.php:54 -#: classes/gateways/cod/class-wc-gateway-cod.php:90 -msgid "Cash on Delivery" -msgstr "상품인도결제방식" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:55 -msgid "Have your customers pay with cash (or by other means) upon delivery." -msgstr "고객에게 상품인도결제방식으로 지불하기" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:80 -msgid "Enable COD" -msgstr "상품인도결제방식 활성화" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:81 -msgid "Enable Cash on Delivery" -msgstr "상품인도결제방식 활성화" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:89 -msgid "Payment method title that the customer will see on your website." -msgstr "고객이 사이트에서 보게될 지불 방법 제목" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:94 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:142 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:133 -#: woocommerce-template.php:751 -msgid "Description" -msgstr "상품 설명" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:96 -msgid "Payment method description that the customer will see on your website." -msgstr "고객이 사이트에서 보게 될 지불 방법 설명" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:97 -#: classes/gateways/cod/class-wc-gateway-cod.php:103 -msgid "Pay with cash upon delivery." -msgstr "상품인도결제 방식으로 결제하기" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:100 -msgid "Instructions" -msgstr "안내" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:102 -msgid "Instructions that will be added to the thank you page." -msgstr "감사 페이지에 추가될 안내" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:106 -msgid "Enable for shipping methods" -msgstr "배송 방법 활성화" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:111 -msgid "" -"If COD is only available for certain methods, set it up here. Leave blank to " -"enable for all methods." -msgstr "" -"COD가 일정한 방법에만 가능할 경우, 여기서 설정합니다. 모든 방법에 활성화할 경" -"우 비워두세요." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:176 -msgid "Payment to be made upon delivery." -msgstr "배달시 지불" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:31 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:160 -msgid "Mijireh Checkout" -msgstr "Mijireh 결제" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:107 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:285 -msgid "Mijireh error:" -msgstr "Mijireh 에러:" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:124 -msgid "Enable Mijireh Checkout" -msgstr "Mijireh 결제 활성화" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:128 -msgid "Access Key" -msgstr "접근 키" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:130 -msgid "The Mijireh access key for your store." -msgstr "상점의 Mijireh 접근 키" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:138 -msgid "Credit Card" -msgstr "신용카드" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:144 -msgid "Pay securely with your credit card." -msgstr "신용카드로 안전하게 결제하세요." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:145 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:135 -msgid "This controls the description which the user sees during checkout." -msgstr "이것은 사용자가 결제시 보게될 설명을 제어합니다." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:164 -msgid "Get started with Mijireh Checkout" -msgstr "Mijireh 결제를 시작하세요" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:165 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site. Mijireh supports a wide variety of payment gateways: Stripe, " -"Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and more." -msgstr "" -"완벽한 PCI 대응, 사이트의 디자인 형식을 유지하면서 지불 게이트웨이로 신용카" -"드 데이터를 수집하고 전송하는 안전한 방법을 제공합니다. Mijireh는 다양한 방법" -"의 지불 게이트웨이를 지원합니다. Stripe, Authorize.net, PayPal, eWay, " -"SagePay, Braintree, PayLeap, 기타." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:167 -msgid "Join for free" -msgstr "무료로 가입하세요" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:167 -msgid "Learn more about WooCommerce and Mijireh" -msgstr "WooCommerce와 Mijireh에 대해 더 배우기" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:171 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site." -msgstr "" -"완벽한 PCI 대응, 사이트의 디자인 형식을 유지하면서 지불 게이트웨이로 신용카" -"드 데이터를 수집하고 전송하는 안전한 방법을 제공합니다. " - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:34 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:129 -msgid "PayPal" -msgstr "페이팔" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:91 -msgid "PayPal standard" -msgstr "페이팔 표준" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:92 -msgid "" -"PayPal standard works by sending the user to PayPal to enter their payment " -"information." -msgstr "" -"페이팔 표준은 사용자를 페이팔로 보내서 자신의 지불 정보를 입력하는 방법으로 " -"작동됩니다." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:104 -msgid "Gateway Disabled" -msgstr "게이트웨이 비활성화" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:104 -msgid "PayPal does not support your store currency." -msgstr "페이팔이 상점의 통화를 지원하지 않습니다." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:122 -msgid "Enable PayPal standard" -msgstr "페이팔 표준 활성화" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:136 -msgid "" -"Pay via PayPal; you can pay with your credit card if you don't have a PayPal " -"account" -msgstr "페이팔을 통한 지불; 페이팔 계정이 없으면 신용카드로 지불할 수 있습니다" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:139 -msgid "PayPal Email" -msgstr "페이팔 이메일" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:141 -msgid "" -"Please enter your PayPal email address; this is needed in order to take " -"payment." -msgstr "페이팔 이메일 주소를 입력해주세요; 지불이 유효하기 위해 필요합니다." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:147 -msgid "Receiver Email" -msgstr "수신자 이메일" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:149 -msgid "" -"If this differs from the email entered above, input your main receiver email " -"for your PayPal account. This is used to validate IPN requests." -msgstr "" -"이것이 위에 입력한 이메일과 다른 경우 페이팔 계정의 주 수신자 이메일을 입력하" -"세요. 이것은 IPN 요청의 유효성 검사에 사용됩니다." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:155 -msgid "Invoice Prefix" -msgstr "송장 접두어" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:157 -msgid "" -"Please enter a prefix for your invoice numbers. If you use your PayPal " -"account for multiple stores ensure this prefix is unique as PayPal will not " -"allow orders with the same invoice number." -msgstr "" -"송장 번호에 대해 접두어를 입력하세요. 다중 상점에 페이팔 계정을 사용할 경우 " -"이 접두어가 독특한 것인지 확실히 하세요. 페이팔은 같은 송장 번호로 주문을 할 " -"수 없습니다." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:162 -msgid "Submission method" -msgstr "제출 방법" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:164 -msgid "Use form submission method." -msgstr "폼 제출 방법 사용하기" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:165 -msgid "" -"Enable this to post order data to PayPal via a form instead of using a " -"redirect/querystring." -msgstr "" -"이것을 활성화하면 redirect/querystring를 사용하는 대신에 폼을 통해서 페이팔" -"에 주문 데이터를 올리게 됩니다." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:169 -msgid "Page Style" -msgstr "페이지 스타일" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:171 -msgid "" -"Optionally enter the name of the page style you wish to use. These are " -"defined within your PayPal account." -msgstr "" -"사용하기를 원하는 페이지 스타일의 이름을 선택적으로 입력하세요. 이것은 페이" -"팔 계정에서 정의됩니다." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:174 -msgid "Optional" -msgstr "선택 사항" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:177 -msgid "Shipping options" -msgstr "배송 옵션" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:182 -msgid "Shipping details" -msgstr "배송 상세" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:184 -msgid "Send shipping details to PayPal instead of billing." -msgstr "청구 대신 배송 상세를 페이팔로 보내기" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:186 -msgid "" -"PayPal allows us to send 1 address. If you are using PayPal for shipping " -"labels you may prefer to send the shipping address rather than billing." -msgstr "" -"페이팔은 한개의 주소를 보내는 것을 허용합니다. 배송 레이블로 페이팔을 사용한" -"다면 청구 대신 배송 주소를 보내는 것을 더 선호 할 겁니다." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:190 -msgid "Address override" -msgstr "주소 덮어쓰기" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:192 -msgid "" -"Enable \"address_override\" to prevent address information from being " -"changed." -msgstr "주소 정보가 변경되는 것을 방지하기 위해 \"주소 덮어쓰기\" 활성화" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:193 -msgid "" -"PayPal verifies addresses therefore this setting can cause errors (we " -"recommend keeping it disabled)." -msgstr "" -"페이팔은 주소를 확인하므로 이 설정은 에러를 일으킬 수 있습니다 (이것을 비활성" -"화 할 것을 추천합니다)." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:197 -msgid "Gateway Testing" -msgstr "게이트웨이 실험" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:202 -msgid "PayPal sandbox" -msgstr "페이팔 샌드박스" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:204 -msgid "Enable PayPal sandbox" -msgstr "페이팔 샌드박스 활성화" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:206 -msgid "" -"PayPal sandbox can be used to test payments. Sign up for a developer account " -"here." -msgstr "" -"페이팔 샌드박스는 지불 실험에 사용할 수 있습니다. 개발자 계정에 회원가입하세" -"요 여기." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:209 -msgid "Debug Log" -msgstr "디버그 로그" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:211 -msgid "Enable logging" -msgstr "로깅 활성화" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:213 -msgid "" -"Log PayPal events, such as IPN requests, inside woocommerce/logs/" -"paypal-%s.txt" -msgstr "" -"IPN 요청과 같은 페이팔 이벤트를 woocommerce/logs/paypal.txt 안" -"에 기록하세요" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:322 -msgid "Order %s" -msgstr "주문 %s" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:332 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:386 -msgid "Shipping via" -msgstr "배송" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:427 -msgid "" -"Thank you for your order. We are now redirecting you to PayPal to make " -"payment." -msgstr "주문해주셔서 감사합니다. 지불을 위해 고객님을 페이팔로 이동합니다." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:448 -msgid "Pay via PayPal" -msgstr "페이팔을 통한 지불" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:448 -msgid "Cancel order & restore cart" -msgstr "주문 취소 및 장바구니 복구" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:502 -msgid "" -"Thank you for your order, please click the button below to pay with PayPal." -msgstr "" -"주문해 주셔서 감사합니다. 페이팔로 지불하려면 아래의 버튼을 클릭하세요." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:644 -msgid "Validation error: PayPal amounts do not match (gross %s)." -msgstr "인증 에러: 페이팔 금액이 일치하지 않습니다 (총계 %s)." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:655 -msgid "" -"Validation error: PayPal IPN response from a different email address (%s)." -msgstr "인증 에러: 다른 이메일 주소로 부터 페이팔 IPN 응답 (%s)" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:673 -msgid "IPN payment completed" -msgstr "IPN 지불 완료" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:685 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:693 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:711 -msgid "Payment %s via IPN." -msgstr "IPN을 통한 지불 %s." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:698 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:716 -msgid "Order refunded/reversed" -msgstr "주문 환불됨/취소됨" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:699 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:717 -msgid "Order %s has been marked as refunded - PayPal reason code: %s" -msgstr "주문 %s가 환불됨으로 표시됐습니다 - 페이팔 사유 코드: %s" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:702 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:720 -msgid "Payment for order %s refunded/reversed" -msgstr "주문 %s의 지불 환불됨/취소됨" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:26 -msgid "Google Analytics" -msgstr "구글 애널리틱스" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:27 -msgid "" -"Google Analytics is a free service offered by Google that generates detailed " -"statistics about the visitors to a website." -msgstr "" -"구글 애널리틱스는 구글이 제공하는 무료 서비스로 사이트 방문자에 관한 상세한 " -"통계를 생성합니다." - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:63 -msgid "Google Analytics ID" -msgstr "구글 애널리틱스 아이디" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:64 -msgid "" -"Log into your google analytics account to find your ID. e.g. UA-XXXXX-" -"X" -msgstr "" -"아이디를 찾으려면 구글 애널리틱스 계정에 로그인 하세요. 예: UA-XXXXX-" -"X" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:69 -msgid "Set Domain Name" -msgstr "도메인 네임 설정" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:70 -msgid "" -"(Optional) Sets the _setDomainName variable. See " -"here for more information." -msgstr "" -"(선택 사항) _setDomainName 변수 설정. 더 많은 정" -"보는 여기를 보세요." - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:75 -msgid "Tracking code" -msgstr "추적 코드" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:76 -msgid "" -"Add tracking code to your site's footer. You don't need to enable this if " -"using a 3rd party analytics plugin." -msgstr "" -"사이트 푸터에 추적 코드를 추가하기. 제3자 애널리틱스 플러그인을 사용하면 이것" -"을 활성화할 필요가 없습니다." - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:82 -msgid "Add eCommerce tracking code to the thankyou page" -msgstr "감사 페이지에 eCommerce 추적 코드를 추가하기" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:88 -msgid "Add event tracking code for add to cart actions" -msgstr "장바구니 작업에 추가할 이벤트 추적 코드 추가하기" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:120 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:180 -#: woocommerce-ajax.php:1652 -msgid "Guest" -msgstr "고객" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:218 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:275 -#: templates/single-product/meta.php:19 -msgid "SKU:" -msgstr "SKU:" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:273 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:293 -#: woocommerce.php:982 -msgid "Products" -msgstr "상품" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:294 -msgid "Add to Cart" -msgstr "장바구니에 추가" - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:26 -msgid "ShareDaddy" -msgstr "ShareDaddy" - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:27 -msgid "ShareDaddy is a sharing plugin bundled with JetPack." -msgstr "ShareDaddy는 젯팩에 번들로 있는 공유 플러그인입니다." - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:51 -msgid "Output ShareDaddy button?" -msgstr "ShareDaddy 버튼을 출력할까요?" - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:52 -msgid "Enable this option to show the ShareDaddy button on the product page." -msgstr "이 옵션을 활성화하면 상품 페이지에 ShareDaddy 버튼을 보여줍니다." - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:29 -msgid "ShareThis" -msgstr "ShareThis" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:30 -msgid "" -"ShareThis offers a sharing widget which will allow customers to share links " -"to products with their friends." -msgstr "" -"ShareThis는 고객이 친구들과 상품 링크를 공유할 수 있도록 하는 공유 위젯을 제" -"공합니다." - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:63 -msgid "ShareThis Publisher ID" -msgstr "ShareThis 발행자 아이디" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:64 -msgid "" -"Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons on " -"product pages." -msgstr "" -"상품 페이지에 소셜 공유 버튼을 보이게 하려면 %1$sShareThis 발행자 ID%2$s를 입" -"력하세요." - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:69 -msgid "ShareThis Code" -msgstr "ShareThis 코드" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:70 -msgid "You can tweak the ShareThis code by editing this option." -msgstr "이 옵션을 편집해서 ShareThis 코드를 수정할 수 있습니다." - -# @ woocommerce -# @ default -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:22 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:329 -msgid "ShareYourCart" -msgstr "ShareYourCart" - -# @ woocommerce -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:23 -msgid "" -"Increase your social media exposure by 10 percent! ShareYourCart helps you " -"get more customers by motivating satisfied customers to talk with their " -"friends about your products. For help with ShareYourCart view the documentation." -msgstr "" -"소설 미디어 노출을 10퍼센트 증대시킬 수 있습니다. ShareYourCart는 만족하는 더" -"많은 고객이 당신의 상품에 관해 고객의 친구들과 이야기할 수 있도록 동기를 부여" -"하는데 도움을 줍니다. ShareYourCart에 관해 도움이 필요하면 문서를 참" -"고하세요." - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:328 -msgid "Share your cart settings" -msgstr "장바구니 설정을 공유하세요" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:342 -msgid "Button" -msgstr "버튼" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:343 -msgid "Customize Button" -msgstr "버튼 사용자 정의하기" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:351 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:352 -msgid "Documentation" -msgstr "문서" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:33 -msgid "Setup your ShareYourCart account" -msgstr "ShareYourCart 계정 설정" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Create an account" -msgstr "계정 생성하기" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Can't access your account?" -msgstr "계정에 접근할 수 없나요?" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:100 -msgid "Configure" -msgstr "환경설정" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:110 -#: classes/integrations/shareyourcart/views/button-settings-page.php:120 -msgid "Save changes" -msgstr "변경 사항 저장" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/button-settings-page.php:8 -#: classes/integrations/shareyourcart/views/button-settings-page.php:11 -msgid "Button style" -msgstr "버튼 스타일" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:25 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:85 -msgid "Flat Rate" -msgstr "고정 요금" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:27 -msgid "Flat rates let you define a standard rate per item, or per order." -msgstr "고정 요금은 단위당 혹은 주문당 표준 요금을 정의할 수 있습니다." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:78 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:52 -msgid "Enable this shipping method" -msgstr "이 배송 방법 활성화" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:82 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:81 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:56 -msgid "Method Title" -msgstr "방법 제목" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:89 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:63 -msgid "Availability" -msgstr "허용 범위" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:93 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:148 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:104 -msgid "All allowed countries" -msgstr "모든 허용된 국가" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:95 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:99 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:98 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:149 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:153 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:105 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:109 -msgid "Specific Countries" -msgstr "특정 국가" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:107 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:81 -msgid "Tax Status" -msgstr "세금 상태" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:111 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:85 -msgid "Taxable" -msgstr "과세 가능" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:112 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:86 -msgid "None" -msgstr "없음" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:116 -msgid "Cost per order" -msgstr "주문당 비용" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:122 -msgid "" -"Enter a cost (excluding tax) per order, e.g. 5.00. Leave blank to disable." -msgstr "" -"주문당 비용을 입력하세요(세금 제외) 예: 5.00. 비활성화 하려면 비워두세요." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:128 -msgid "Additional Rates" -msgstr "추가 배송 옵션" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:130 -msgid "" -"Optional extra shipping options with additional costs (one per line): Option " -"Name | Additional Cost | Per Cost Type (order, class, or item) Example: " -"Priority Mail | 6.95 | order." -msgstr "" -"선택 가능한 비용이 있는 기타 배송 옵션 (라인당 하나): 옵션 이름 | 추가 비용 " -"| 비용당 형식 (order, class, 또는 item) 예: 퀵서비스 | 15000 | order." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:133 -msgid "Option Name | Additional Cost | Per Cost Type (order, class, or item)" -msgstr "옵션 이름 | 추가 비용 | 비용당 형식 (order, class, 또는 item)" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:136 -msgid "Additional Costs" -msgstr "추가 비용" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:138 -msgid "" -"Additional costs can be added below - these will all be added to the per-" -"order cost above." -msgstr "" -"추가 비용은 아래에 추가될 수 있습니다 - 이것은 위의 주문당 비용에 추가될 것입" -"니다." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:141 -msgid "Costs Added..." -msgstr "비용 추가됨..." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:145 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:94 -msgid "Per Order - charge shipping for the entire order as a whole" -msgstr "주문당 - 전체 주문에 일괄적으로 배송 부과" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:146 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:95 -msgid "Per Item - charge shipping for each item individually" -msgstr "아이템당 - 각 아이템 개별적으로 배송 부과" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:147 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:96 -msgid "Per Class - charge shipping for each shipping class in an order" -msgstr "클래스당 - 주문의 각 배송 클래스에 배송 부과" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:154 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:120 -msgid "Minimum Handling Fee" -msgstr "최소 취급 수수료" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:160 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:126 -msgid "" -"Enter a minimum fee amount. Fee's less than this will be increased. Leave " -"blank to disable." -msgstr "" -"최소 수수료 금액을 입력하세요. 이것보다 적은 수수료는 증가할 것입니다. 비활성" -"화 하려면 비워두세요." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:479 -msgid "Costs" -msgstr "비용" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:485 -#: woocommerce.php:891 -msgid "Shipping Class" -msgstr "배송 클래스" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:486 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:100 -msgid "Cost" -msgstr "비용" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:486 -msgid "Cost, excluding tax." -msgstr "비용, 세금 제외." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:487 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:112 -msgid "Handling Fee" -msgstr "취급 수수료" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:487 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -msgstr "세금 제외 수수료. 금액을 입력하세요. 예: 2.50. 또는 퍼센트 예: 5%." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:492 -msgid "+ Add Cost" -msgstr "+ 비용 추가" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:492 -msgid "Delete selected costs" -msgstr "선택된 비용 삭제하기" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:498 -msgid "Any class" -msgstr "모든 클래스" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:499 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:500 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:110 -#: templates/order/order-details.php:119 templates/order/order-details.php:134 -msgid "N/A" -msgstr "선택 없음" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:518 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:548 -msgid "Select a class…" -msgstr "클래스 선택하기…" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:523 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:524 -msgid "0.00" -msgstr "0.00" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:562 -msgid "Delete the selected rates?" -msgstr "선택된 세율을 삭제할까요?" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:25 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:145 -msgid "Free Shipping" -msgstr "무료 배송" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:77 -msgid "Enable Free Shipping" -msgstr "무료 배송 활성화" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:88 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:143 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:99 -msgid "Method availability" -msgstr "방법 허용" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:106 -msgid "Free Shipping Requires..." -msgstr "무료 배송은 다음을 필요로 합니다..." - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:111 -msgid "A valid free shipping coupon" -msgstr "유효한 무료 배송 쿠폰" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:112 -msgid "A minimum order amount (defined below)" -msgstr "최소 주문 수량 (아래에 정의됨)" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:113 -msgid "A minimum order amount OR a coupon" -msgstr "최소 주문 수량 또는 쿠폰" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:114 -msgid "A minimum order amount AND a coupon" -msgstr "최소 주문 수량과 쿠폰" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:118 -msgid "Minimum Order Amount" -msgstr "최소 주문 금액" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:124 -msgid "" -"Users will need to spend this amount to get free shipping (if enabled above)." -msgstr "" -"사용자는 무료 배송을 얻으려면 이 수량을 사용해야합니다 (위에서 활성화한 경" -"우)." - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:29 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:59 -msgid "International Delivery" -msgstr "국제 배송" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:30 -msgid "International delivery based on flat rate shipping." -msgstr "고정비용 배송 기준 국제 배송" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:68 -msgid "Selected countries" -msgstr "선택된 국가" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:69 -msgid "Excluding selected countries" -msgstr "선택된 국가 제외" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:73 -msgid "Countries" -msgstr "국가" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:90 -msgid "Cost Added..." -msgstr "비용 추가됨..." - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:106 -msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -msgstr "세금 제외 비용. 금액을 입력하세요. 예: 2.50." - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:114 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. " -"Leave blank to disable." -msgstr "" -"세금 제외한 수수료. 금액을 입력하세요. 예: 2.50, 또는 퍼센트. 예: 5%. 비활성" -"화 하려면 비워두세요." - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:25 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:107 -msgid "Local Delivery" -msgstr "지역 배송" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:98 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:78 -msgid "Enable" -msgstr "활성화" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:100 -msgid "Enable local delivery" -msgstr "지역 배송 활성화" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:111 -msgid "Fee Type" -msgstr "요금 형식" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:113 -msgid "How to calculate delivery charges" -msgstr "배송비 계산 방법" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 -msgid "Fixed amount" -msgstr "고정 금액" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:117 -msgid "Percentage of cart total" -msgstr "장바구니 총계 퍼센트" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:118 -msgid "Fixed amount per product" -msgstr "상품당 고정 금액" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:123 -msgid "Delivery Fee" -msgstr "배달 수수료" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:129 -msgid "" -"What fee do you want to charge for local delivery, disregarded if you choose " -"free. Leave blank to disable." -msgstr "" -"지역 배송에 어떤 수수료 부과를 원하시나요? 무료를 선택하면 무시하세요. 비활성" -"화 하려면 비워두세요." - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:135 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:91 -msgid "Zip/Post Codes" -msgstr "우편 번호" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:137 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:93 -msgid "" -"What zip/post codes would you like to offer delivery to? Separate codes with " -"a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -msgstr "" -"배달에 적용하고 싶은 우편 번호는? 코드를 콤마로 분리하세요. 와일드카드가 가능" -"합니다. 즉 P*는 PE30이라는 우편 번호와 일치하게 됩니다." - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:172 -msgid "" -"Local delivery is a simple shipping method for delivering orders locally." -msgstr "지역 배송은 지역에 주문을 배달하는 단순한 배송 방법입니다." - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:25 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:87 -msgid "Local Pickup" -msgstr "방문 수령" - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:80 -msgid "Enable local pickup" -msgstr "방문 수령 활성화" - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:117 -msgid "Apply base tax rate" -msgstr "기본 세율 적용하기" - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:119 -msgid "" -"When this shipping method is chosen, apply the base tax rate rather than for " -"the customer's given address." -msgstr "" -"이 배송 방법이 선택된 경우 고객의 주어진 주소에 대해 기본 세율을 적용하는 것" -"이 좋습니다." - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:134 -msgid "" -"Local pickup is a simple method which allows the customer to pick up their " -"order themselves." -msgstr "방문 수령은 고객 자신이 주문 상품을 가져가도록 하는 단순한 방법입니다." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-cart.php:53 -#: woocommerce-functions.php:1701 -msgid "Please enter a valid postcode/ZIP." -msgstr "유효한 우편번호를 입력하세요." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-cart.php:64 -#: classes/shortcodes/class-wc-shortcode-cart.php:70 -msgid "Shipping costs updated." -msgstr "배송 비용이 업데이트됐습니다." - -#: classes/shortcodes/class-wc-shortcode-checkout.php:45 -msgid "" -"WooCommerce Config Error: The checkout thanks/pay pages are missing - these " -"pages are required for the checkout to function correctly. Please configure " -"the pages here." -msgstr "" -"우커머스 환경 설정 에러: 결제 감사/지불 페이지가 없습니다 - 이 페이지는 결제" -"가 올바른 작동을 하는데 필요합니다. 해당 페이지를 여기에" -"서 환경설정 하세요." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-checkout.php:73 -msgid "" -"The order totals have been updated. Please confirm your order by pressing " -"the Place Order button at the bottom of the page." -msgstr "" -"주문 총계가 업데이트됐습니다. 페이지 하단에서 주문 확정 버튼을 눌러서 주문을 " -"확정하세요." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:78 -#: woocommerce-functions.php:1623 -msgid "Please enter your password." -msgstr "비밀번호를 입력하세요." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:93 -msgid "Your password has been reset." -msgstr "고객님의 비밀번호가 초기화됐습니다." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:93 -msgid "Log in" -msgstr "로그인" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:114 -msgid "Enter a username or e-mail address." -msgstr "사용자 ID이나 이메일 주소를 입력하세요." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:121 -msgid "There is no user registered with that email address." -msgstr "해당 이메일 주소로 회원가입된 사용자가 없습니다." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:136 -msgid "Invalid username or e-mail." -msgstr "유효하지 않은 사용자 ID 또는 이메일." - -# @ default -#: classes/shortcodes/class-wc-shortcode-lost-password.php:150 -msgid "Password reset is not allowed for this user" -msgstr "비밀번호 리셋은 해당 사용자에게 허용되지 않습니다." - -# @ default -#: classes/shortcodes/class-wc-shortcode-lost-password.php:178 -msgid "Check your e-mail for the confirmation link." -msgstr "확인 링크를 위해 고객님의 이메일을 점검해주세요." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:198 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:203 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:210 -msgid "Invalid key" -msgstr "유효하지 않은 키" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:51 -msgid "Please enter a valid order ID" -msgstr "유효한 주문 아이디를 입력하세요" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:55 -msgid "Please enter a valid order email" -msgstr "유효한 주문 이메일을 입력하세요" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:74 -msgid "Sorry, we could not find that order id in our database." -msgstr "죄송합니다. 해당 주문 아이디를 데이터베이스에서 찾을 수 없습니다." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:64 -#: classes/shortcodes/class-wc-shortcode-pay.php:118 -msgid "" -"Your order has already been paid for. Please contact us if you need " -"assistance." -msgstr "" -"고객님의 주문이 이미 지불됐습니다. 도움이 필요하시면 저의에게 연락해주세요." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:69 -#: classes/shortcodes/class-wc-shortcode-pay.php:125 -#: classes/shortcodes/class-wc-shortcode-view-order.php:51 -#: woocommerce-functions.php:909 woocommerce-functions.php:989 -msgid "Invalid order." -msgstr "유효하지 않는 주문." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:90 -#: templates/checkout/thankyou.php:40 -#: templates/emails/customer-completed-order.php:18 -#: templates/emails/customer-invoice.php:22 -#: templates/emails/customer-note.php:22 -#: templates/emails/customer-processing-order.php:18 -msgid "Order:" -msgstr "주문:" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:94 -#: templates/checkout/thankyou.php:44 -msgid "Date:" -msgstr "날짜:" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:98 -#: templates/checkout/thankyou.php:48 -msgid "Total:" -msgstr "총계:" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:103 -#: templates/checkout/thankyou.php:53 -msgid "Payment method:" -msgstr "지불 방법:" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:51 -msgid "My Account →" -msgstr "나의 계정 →" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:58 -msgid "" -"Order %s made on %s" -msgstr "" -"%s 주문이 %s에 이루어졌습니다." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:59 -msgid "Order status: %s" -msgstr "주문 상태: %s" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:65 -#: templates/order/tracking.php:31 -msgid "Order Updates" -msgstr "주문 업데이트" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:71 -msgid "l jS \\of F Y, h:ia" -msgstr "l jS \\of F Y, h:ia" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:31 -msgid "Display a list of your best selling products on your site." -msgstr "사이트에 베스트 상품 목록을 표시하기." - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:33 -msgid "WooCommerce Best Sellers" -msgstr "WooCommerce 베스트 셀러" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:71 -msgid "Best Sellers" -msgstr "베스트 셀러" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:189 -#: classes/widgets/class-wc-widget-cart.php:109 -#: classes/widgets/class-wc-widget-featured-products.php:169 -#: classes/widgets/class-wc-widget-layered-nav.php:349 -#: classes/widgets/class-wc-widget-onsale.php:176 -#: classes/widgets/class-wc-widget-price-filter.php:179 -#: classes/widgets/class-wc-widget-product-categories.php:185 -#: classes/widgets/class-wc-widget-product-search.php:91 -#: classes/widgets/class-wc-widget-product-tag-cloud.php:101 -#: classes/widgets/class-wc-widget-random-products.php:134 -#: classes/widgets/class-wc-widget-recent-products.php:170 -#: classes/widgets/class-wc-widget-recent-reviews.php:158 -#: classes/widgets/class-wc-widget-recently-viewed.php:166 -#: classes/widgets/class-wc-widget-top-rated-products.php:156 -msgid "Title:" -msgstr "제목:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:192 -#: classes/widgets/class-wc-widget-featured-products.php:172 -#: classes/widgets/class-wc-widget-onsale.php:179 -#: classes/widgets/class-wc-widget-random-products.php:139 -#: classes/widgets/class-wc-widget-recent-products.php:173 -#: classes/widgets/class-wc-widget-recent-reviews.php:161 -#: classes/widgets/class-wc-widget-recently-viewed.php:169 -#: classes/widgets/class-wc-widget-top-rated-products.php:159 -msgid "Number of products to show:" -msgstr "보여줄 상품 수:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:196 -msgid "Hide free products" -msgstr "무료 상품 감추기" - -# @ woocommerce -#: classes/widgets/class-wc-widget-cart.php:33 -msgid "Display the user's Cart in the sidebar." -msgstr "사이드바에 사용자의 장바구니 보이기." - -# @ woocommerce -#: classes/widgets/class-wc-widget-cart.php:35 -msgid "WooCommerce Cart" -msgstr "WooCommerce 장바구니" - -# @ woocommerce -#: classes/widgets/class-wc-widget-cart.php:113 -msgid "Hide if cart is empty" -msgstr "장바구니가 비어있으면 감추기" - -# @ woocommerce -#: classes/widgets/class-wc-widget-featured-products.php:35 -msgid "Display a list of featured products on your site." -msgstr "사이트에 특성 상품 목록 보이기." - -# @ woocommerce -#: classes/widgets/class-wc-widget-featured-products.php:37 -msgid "WooCommerce Featured Products" -msgstr "WooCommerce 특성 상품" - -# @ woocommerce -#: classes/widgets/class-wc-widget-featured-products.php:75 -msgid "Featured Products" -msgstr "특성 상품" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:31 -msgid "Shows active layered nav filters so users can see and deactivate them." -msgstr "" -"사용자가 보고 비활성화 할 수 있도록 활성화된 레이어 nav 필터를 보이세요." - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:33 -msgid "WooCommerce Layered Nav Filters" -msgstr "우커머스 레이어 nav 필터" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:62 -msgid "Active filters" -msgstr "활성화된 필터" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:93 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Remove filter" -msgstr "필터 제거하기" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -msgid "Min" -msgstr "최소" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Max" -msgstr "최대" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:31 -msgid "" -"Shows a custom attribute in a widget which lets you narrow down the list of " -"products when viewing product categories." -msgstr "" -"상품 카테고리를 보여줄 때 상품 목록 범위를 좁히는 위젯에 사용자 정의 속성 보" -"이기." - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:33 -msgid "WooCommerce Layered Nav" -msgstr "WooCommerce 레이어 냅" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:100 -msgid "Any %s" -msgstr "모든 %s" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:352 -msgid "Attribute:" -msgstr "속성:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:363 -msgid "Display Type:" -msgstr "형식 보이기:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:365 -msgid "List" -msgstr "목록" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:366 -msgid "Dropdown" -msgstr "드랍다운" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:369 -msgid "Query Type:" -msgstr "퀘리 형식:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:371 -msgid "AND" -msgstr "그리고" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:372 -msgid "OR" -msgstr "또는" - -# @ woocommerce -#: classes/widgets/class-wc-widget-onsale.php:31 -msgid "Display a list of your on-sale products on your site." -msgstr "사이트에 세일 상품 목록 보이기." - -# @ woocommerce -#: classes/widgets/class-wc-widget-onsale.php:33 -msgid "WooCommerce On-sale" -msgstr "WooCommerce 세일" - -# @ woocommerce -#: classes/widgets/class-wc-widget-onsale.php:70 -msgid "On Sale" -msgstr "세일중" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:33 -msgid "" -"Shows a price filter slider in a widget which lets you narrow down the list " -"of shown products when viewing product categories." -msgstr "" -"상품 카테고리 보일 때 보여줄 상품 목록 범위를 좁히는 위젯에 가격 필터 슬라이" -"더 보이기." - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:35 -msgid "WooCommerce Price Filter" -msgstr "WooCommerce 가격 필터" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:136 -msgid "Min price" -msgstr "최소 가격" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:137 -msgid "Max price" -msgstr "최대 가격" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:138 -msgid "Filter" -msgstr "필터" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:140 -msgid "Price:" -msgstr "가격:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:162 -msgid "Filter by price" -msgstr "가격 필터" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:33 -msgid "A list or dropdown of product categories." -msgstr "상품 카테고리 목록 또는 드랍다운." - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:35 -msgid "WooCommerce Product Categories" -msgstr "WooCommerce 상품 카테고리" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:57 -#: woocommerce.php:821 woocommerce.php:823 -msgid "Product Categories" -msgstr "상품 카테고리" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:129 -msgid "No product categories exist." -msgstr "상품 카테고리가 존재하지 않습니다." - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:188 -msgid "Order by:" -msgstr "순서:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:190 -msgid "Category Order" -msgstr "카테고리 순서" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:191 -#: templates/single-product-reviews.php:84 woocommerce-ajax.php:1171 -msgid "Name" -msgstr "이름" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:195 -msgid "Show as dropdown" -msgstr "드랍다운으로 보이기" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:198 -msgid "Show post counts" -msgstr "글 숫자 보이기" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:201 -msgid "Show hierarchy" -msgstr "계층구조 보이기" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:204 -msgid "Only show children for the current category" -msgstr "현재 카테고리의 하위만 보이기" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-search.php:31 -msgid "A Search box for products only." -msgstr "상품 전용 검색 박스." - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-search.php:33 -msgid "WooCommerce Product Search" -msgstr "WooCommerce 상품 검색" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-tag-cloud.php:31 -msgid "Your most used product tags in cloud format." -msgstr "클라우드 형식의 가장 많이 사용된 상품 태그" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-tag-cloud.php:33 -msgid "WooCommerce Product Tags" -msgstr "WooCommerce 상품 태그" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-tag-cloud.php:58 -#: woocommerce.php:857 woocommerce.php:859 -msgid "Product Tags" -msgstr "상품 태그" - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:24 -msgid "WooCommerce Random Products" -msgstr "WooCommerce 랜덤 상품" - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:27 -msgid "Display a list of random products on your site." -msgstr "사이트에 랜덤 상품 목록 보이기." - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:46 -msgid "Random Products" -msgstr "랜덤 상품" - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:145 -#: classes/widgets/class-wc-widget-recent-products.php:177 -msgid "Show hidden product variations" -msgstr "숨겨진 상품 옵션 보이기" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-products.php:31 -msgid "Display a list of your most recent products on your site." -msgstr "사이트에 최근 상품 목록 보이기." - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-products.php:33 -msgid "WooCommerce Recent Products" -msgstr "WooCommerce 최근 상품" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-products.php:70 -msgid "New Products" -msgstr "새 상품" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:31 -msgid "Display a list of your most recent reviews on your site." -msgstr "사이트에 최근 리뷰 목록 보이기." - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:33 -msgid "WooCommerce Recent Reviews" -msgstr "WooCommerce 최근 리뷰" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:71 -msgid "Recent Reviews" -msgstr "최근 리뷰" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:97 -msgctxt "by comment author" -msgid "by %1$s" -msgstr "%1$s" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recently-viewed.php:31 -msgid "Display a list of recently viewed products." -msgstr "최근 열람한 상품 목록 보이기." - -# @ woocommerce -#: classes/widgets/class-wc-widget-recently-viewed.php:33 -msgid "WooCommerce Recently Viewed Products" -msgstr "WooCommerce 최근 열람 상품" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recently-viewed.php:76 -msgid "Recently viewed" -msgstr "최근 열람" - -# @ woocommerce -#: classes/widgets/class-wc-widget-top-rated-products.php:33 -msgid "Display a list of top rated products on your site." -msgstr "사이트에 최상위 평가 상품 목록 보이기." - -# @ woocommerce -#: classes/widgets/class-wc-widget-top-rated-products.php:35 -msgid "WooCommerce Top Rated Products" -msgstr "WooCommerce 최상위 평가 상품" - -# @ woocommerce -#: classes/widgets/class-wc-widget-top-rated-products.php:72 -msgid "Top Rated Products" -msgstr "최상위 평가 상품" - -# @ woocommerce -#: i18n/states/AU.php:13 -msgid "Australian Capital Territory" -msgstr "Australian Capital Territory" - -# @ woocommerce -#: i18n/states/AU.php:14 -msgid "New South Wales" -msgstr "New South Wales" - -# @ woocommerce -#: i18n/states/AU.php:15 -msgid "Northern Territory" -msgstr "Northern Territory" - -# @ woocommerce -#: i18n/states/AU.php:16 -msgid "Queensland" -msgstr "Queensland" - -# @ woocommerce -#: i18n/states/AU.php:17 -msgid "South Australia" -msgstr "South Australia" - -# @ woocommerce -#: i18n/states/AU.php:18 -msgid "Tasmania" -msgstr "Tasmania" - -# @ woocommerce -#: i18n/states/AU.php:19 -msgid "Victoria" -msgstr "Victoria" - -# @ woocommerce -#: i18n/states/AU.php:20 -msgid "Western Australia" -msgstr "Western Australia" - -# @ woocommerce -#: i18n/states/BR.php:13 -msgid "Acre" -msgstr "Acre" - -# @ woocommerce -#: i18n/states/BR.php:14 -msgid "Alagoas" -msgstr "Alagoas" - -# @ woocommerce -#: i18n/states/BR.php:15 -msgid "Amapá" -msgstr "Amapá" - -# @ woocommerce -#: i18n/states/BR.php:16 -msgid "Amazonas" -msgstr "Amazonas" - -# @ woocommerce -#: i18n/states/BR.php:17 -msgid "Bahia" -msgstr "Bahia" - -# @ woocommerce -#: i18n/states/BR.php:18 -msgid "Ceará" -msgstr "Ceará" - -# @ woocommerce -#: i18n/states/BR.php:19 -msgid "Distrito Federal" -msgstr "Distrito Federal" - -# @ woocommerce -#: i18n/states/BR.php:20 -msgid "Espírito Santo" -msgstr "Espírito Santo" - -# @ woocommerce -#: i18n/states/BR.php:21 -msgid "Goiás" -msgstr "Goiás" - -# @ woocommerce -#: i18n/states/BR.php:22 -msgid "Maranhão" -msgstr "Maranhão" - -# @ woocommerce -#: i18n/states/BR.php:23 -msgid "Mato Grosso" -msgstr "Mato Grosso" - -# @ woocommerce -#: i18n/states/BR.php:24 -msgid "Mato Grosso do Sul" -msgstr "Mato Grosso do Sul" - -# @ woocommerce -#: i18n/states/BR.php:25 -msgid "Minas Gerais" -msgstr "Minas Gerais" - -# @ woocommerce -#: i18n/states/BR.php:26 -msgid "Pará" -msgstr "Pará" - -# @ woocommerce -#: i18n/states/BR.php:27 -msgid "Paraíba" -msgstr "Paraíba" - -# @ woocommerce -#: i18n/states/BR.php:28 -msgid "Paraná" -msgstr "Paraná" - -# @ woocommerce -#: i18n/states/BR.php:29 -msgid "Pernambuco" -msgstr "Pernambuco" - -# @ woocommerce -#: i18n/states/BR.php:30 -msgid "Piauí" -msgstr "Piauí" - -# @ woocommerce -#: i18n/states/BR.php:31 -msgid "Rio de Janeiro" -msgstr "Rio de Janeiro" - -# @ woocommerce -#: i18n/states/BR.php:32 -msgid "Rio Grande do Norte" -msgstr "Rio Grande do Norte" - -# @ woocommerce -#: i18n/states/BR.php:33 -msgid "Rio Grande do Sul" -msgstr "Rio Grande do Sul" - -# @ woocommerce -#: i18n/states/BR.php:34 -msgid "Rondônia" -msgstr "Rondônia" - -# @ woocommerce -#: i18n/states/BR.php:35 -msgid "Roraima" -msgstr "Roraima" - -# @ woocommerce -#: i18n/states/BR.php:36 -msgid "Santa Catarina" -msgstr "Santa Catarina" - -# @ woocommerce -#: i18n/states/BR.php:37 -msgid "São Paulo" -msgstr "São Paulo" - -# @ woocommerce -#: i18n/states/BR.php:38 -msgid "Sergipe" -msgstr "Sergipe" - -# @ woocommerce -#: i18n/states/BR.php:39 -msgid "Tocantins" -msgstr "Tocantins" - -# @ woocommerce -#: i18n/states/CA.php:13 -msgid "Alberta" -msgstr "Alberta" - -# @ woocommerce -#: i18n/states/CA.php:14 -msgid "British Columbia" -msgstr "British Columbia" - -# @ woocommerce -#: i18n/states/CA.php:15 -msgid "Manitoba" -msgstr "Manitoba" - -# @ woocommerce -#: i18n/states/CA.php:16 -msgid "New Brunswick" -msgstr "New Brunswick" - -# @ woocommerce -#: i18n/states/CA.php:17 -msgid "Newfoundland" -msgstr "Newfoundland" - -# @ woocommerce -#: i18n/states/CA.php:18 -msgid "Northwest Territories" -msgstr "Northwest Territories" - -# @ woocommerce -#: i18n/states/CA.php:19 -msgid "Nova Scotia" -msgstr "Nova Scotia" - -# @ woocommerce -#: i18n/states/CA.php:20 -msgid "Nunavut" -msgstr "Nunavut" - -# @ woocommerce -#: i18n/states/CA.php:21 -msgid "Ontario" -msgstr "Ontario" - -# @ woocommerce -#: i18n/states/CA.php:22 -msgid "Prince Edward Island" -msgstr "Prince Edward Island" - -# @ woocommerce -#: i18n/states/CA.php:23 -msgid "Quebec" -msgstr "Quebec" - -# @ woocommerce -#: i18n/states/CA.php:24 -msgid "Saskatchewan" -msgstr "Saskatchewan" - -# @ woocommerce -#: i18n/states/CA.php:25 -msgid "Yukon Territory" -msgstr "Yukon Territory" - -# @ woocommerce -#: i18n/states/CN.php:13 -msgid "Yunnan / 云南" -msgstr "Yunnan / 云南" - -# @ woocommerce -#: i18n/states/CN.php:14 -msgid "Beijing / 北京" -msgstr "Beijing / 北京" - -# @ woocommerce -#: i18n/states/CN.php:15 -msgid "Tianjin / 天津" -msgstr "Tianjin / 天津" - -# @ woocommerce -#: i18n/states/CN.php:16 -msgid "Hebei / 河北" -msgstr "Hebei / 河北" - -# @ woocommerce -#: i18n/states/CN.php:17 -msgid "Shanxi / 山西" -msgstr "Shanxi / 山西" - -# @ woocommerce -#: i18n/states/CN.php:18 -msgid "Inner Mongolia / 內蒙古" -msgstr "Inner Mongolia / 內蒙古" - -# @ woocommerce -#: i18n/states/CN.php:19 -msgid "Liaoning / 辽宁" -msgstr "Liaoning / 辽宁" - -# @ woocommerce -#: i18n/states/CN.php:20 -msgid "Jilin / 吉林" -msgstr "Jilin / 吉林" - -# @ woocommerce -#: i18n/states/CN.php:21 -msgid "Heilongjiang / 黑龙江" -msgstr "Heilongjiang / 黑龙江" - -# @ woocommerce -#: i18n/states/CN.php:22 -msgid "Shanghai / 上海" -msgstr "Shanghai / 上海" - -# @ woocommerce -#: i18n/states/CN.php:23 -msgid "Jiangsu / 江苏" -msgstr "Jiangsu / 江苏" - -# @ woocommerce -#: i18n/states/CN.php:24 -msgid "Zhejiang / 浙江" -msgstr "Zhejiang / 浙江" - -# @ woocommerce -#: i18n/states/CN.php:25 -msgid "Anhui / 安徽" -msgstr "Anhui / 安徽" - -# @ woocommerce -#: i18n/states/CN.php:26 -msgid "Fujian / 福建" -msgstr "Fujian / 福建" - -# @ woocommerce -#: i18n/states/CN.php:27 -msgid "Jiangxi / 江西" -msgstr "Jiangxi / 江西" - -# @ woocommerce -#: i18n/states/CN.php:28 -msgid "Shandong / 山东" -msgstr "Shandong / 山东" - -# @ woocommerce -#: i18n/states/CN.php:29 -msgid "Henan / 河南" -msgstr "Henan / 河南" - -# @ woocommerce -#: i18n/states/CN.php:30 -msgid "Hubei / 湖北" -msgstr "Hubei / 湖北" - -# @ woocommerce -#: i18n/states/CN.php:31 -msgid "Hunan / 湖南" -msgstr "Hunan / 湖南" - -# @ woocommerce -#: i18n/states/CN.php:32 -msgid "Guangdong / 广东" -msgstr "Guangdong / 广东" - -# @ woocommerce -#: i18n/states/CN.php:33 -msgid "Guangxi Zhuang / 广西壮族" -msgstr "Guangxi Zhuang / 广西壮族" - -# @ woocommerce -#: i18n/states/CN.php:34 -msgid "Hainan / 海南" -msgstr "Hainan / 海南" - -# @ woocommerce -#: i18n/states/CN.php:35 -msgid "Chongqing / 重庆" -msgstr "Chongqing / 重庆" - -# @ woocommerce -#: i18n/states/CN.php:36 -msgid "Sichuan / 四川" -msgstr "Sichuan / 四川" - -# @ woocommerce -#: i18n/states/CN.php:37 -msgid "Guizhou / 贵州" -msgstr "Guizhou / 贵州" - -# @ woocommerce -#: i18n/states/CN.php:38 -msgid "Shaanxi / 陕西" -msgstr "Shaanxi / 陕西" - -# @ woocommerce -#: i18n/states/CN.php:39 -msgid "Gansu / 甘肃" -msgstr "Gansu / 甘肃" - -# @ woocommerce -#: i18n/states/CN.php:40 -msgid "Qinghai / 青海" -msgstr "Qinghai / 青海" - -# @ woocommerce -#: i18n/states/CN.php:41 -msgid "Ningxia Hui / 宁夏" -msgstr "Ningxia Hui / 宁夏" - -# @ woocommerce -#: i18n/states/CN.php:42 -msgid "Macau / 澳门" -msgstr "Macau / 澳门" - -# @ woocommerce -#: i18n/states/CN.php:43 -msgid "Tibet / 西藏" -msgstr "Tibet / 西藏" - -# @ woocommerce -#: i18n/states/CN.php:44 -msgid "Xinjiang / 新疆" -msgstr "Xinjiang / 新疆" - -# @ woocommerce -#: i18n/states/HK.php:13 -msgid "Hong Kong Island" -msgstr "Hong Kong Island" - -# @ woocommerce -#: i18n/states/HK.php:14 -msgid "Kowloon" -msgstr "Kowloon" - -# @ woocommerce -#: i18n/states/HK.php:15 -msgid "New Territories" -msgstr "New Territories" - -# @ woocommerce -#: i18n/states/HU.php:13 -msgid "Bács-Kiskun" -msgstr "Bács-Kiskun" - -# @ woocommerce -#: i18n/states/HU.php:14 -msgid "Békés" -msgstr "Békés" - -# @ woocommerce -#: i18n/states/HU.php:15 -msgid "Baranya" -msgstr "Baranya" - -# @ woocommerce -#: i18n/states/HU.php:16 -msgid "Borsod-Abaúj-Zemplén" -msgstr "Borsod-Abaúj-Zemplén" - -# @ woocommerce -#: i18n/states/HU.php:17 -msgid "Budapest" -msgstr "Budapest" - -# @ woocommerce -#: i18n/states/HU.php:18 -msgid "Csongrád" -msgstr "Csongrád" - -# @ woocommerce -#: i18n/states/HU.php:19 -msgid "Fejér" -msgstr "Fejér" - -# @ woocommerce -#: i18n/states/HU.php:20 -msgid "Győr-Moson-Sopron" -msgstr "Győr-Moson-Sopron" - -# @ woocommerce -#: i18n/states/HU.php:21 -msgid "Hajdú-Bihar" -msgstr "Hajdú-Bihar" - -# @ woocommerce -#: i18n/states/HU.php:22 -msgid "Heves" -msgstr "Heves" - -# @ woocommerce -#: i18n/states/HU.php:23 -msgid "Jász-Nagykun-Szolnok" -msgstr "Jász-Nagykun-Szolnok" - -# @ woocommerce -#: i18n/states/HU.php:24 -msgid "Komárom-Esztergom" -msgstr "Komárom-Esztergom" - -# @ woocommerce -#: i18n/states/HU.php:25 -msgid "Nógrád" -msgstr "Nógrád" - -# @ woocommerce -#: i18n/states/HU.php:26 -msgid "Pest" -msgstr "Pest" - -# @ woocommerce -#: i18n/states/HU.php:27 -msgid "Somogy" -msgstr "Somogy" - -# @ woocommerce -#: i18n/states/HU.php:28 -msgid "Szabolcs-Szatmár-Bereg" -msgstr "Szabolcs-Szatmár-Bereg" - -# @ woocommerce -#: i18n/states/HU.php:29 -msgid "Tolna" -msgstr "Tolna" - -# @ woocommerce -#: i18n/states/HU.php:30 -msgid "Vas" -msgstr "Vas" - -# @ woocommerce -#: i18n/states/HU.php:31 -msgid "Veszprém" -msgstr "Veszprém" - -# @ woocommerce -#: i18n/states/HU.php:32 -msgid "Zala" -msgstr "Zala" - -# @ woocommerce -#: i18n/states/HZ.php:13 i18n/states/NZ.php:14 -msgid "Auckland" -msgstr "Auckland" - -# @ woocommerce -#: i18n/states/HZ.php:14 i18n/states/NZ.php:16 -msgid "Bay of Plenty" -msgstr "Bay of Plenty" - -# @ woocommerce -#: i18n/states/HZ.php:15 i18n/states/NZ.php:25 -msgid "Canterbury" -msgstr "Canterbury" - -# @ woocommerce -#: i18n/states/HZ.php:16 i18n/states/NZ.php:18 -msgid "Hawke’s Bay" -msgstr "Hawke’s Bay" - -# @ woocommerce -#: i18n/states/HZ.php:17 i18n/states/NZ.php:19 -msgid "Manawatu-Wanganui" -msgstr "Manawatu-Wanganui" - -# @ woocommerce -#: i18n/states/HZ.php:18 i18n/states/NZ.php:22 -msgid "Marlborough" -msgstr "Marlborough" - -# @ woocommerce -#: i18n/states/HZ.php:19 i18n/states/NZ.php:21 -msgid "Nelson" -msgstr "Nelson" - -# @ woocommerce -#: i18n/states/HZ.php:20 i18n/states/NZ.php:13 -msgid "Northland" -msgstr "Northland" - -# @ woocommerce -#: i18n/states/HZ.php:21 i18n/states/NZ.php:26 -msgid "Otago" -msgstr "Otago" - -# @ woocommerce -#: i18n/states/HZ.php:22 i18n/states/NZ.php:27 -msgid "Southland" -msgstr "Southland" - -# @ woocommerce -#: i18n/states/HZ.php:23 i18n/states/NZ.php:17 -msgid "Taranaki" -msgstr "Taranaki" - -# @ woocommerce -#: i18n/states/HZ.php:24 i18n/states/NZ.php:23 -msgid "Tasman" -msgstr "Tasman" - -# @ woocommerce -#: i18n/states/HZ.php:25 i18n/states/NZ.php:15 -msgid "Waikato" -msgstr "Waikato" - -# @ woocommerce -#: i18n/states/HZ.php:26 i18n/states/NZ.php:20 -msgid "Wellington" -msgstr "Wellington" - -# @ woocommerce -#: i18n/states/HZ.php:27 i18n/states/NZ.php:24 -msgid "West Coast" -msgstr "West Coast" - -# @ woocommerce -#: i18n/states/ID.php:13 -msgid "Daerah Istimewa Aceh" -msgstr "Daerah Istimewa Aceh" - -# @ woocommerce -#: i18n/states/ID.php:14 -msgid "Sumatera Utara" -msgstr "Sumatera Utara" - -# @ woocommerce -#: i18n/states/ID.php:15 -msgid "Sumatera Barat" -msgstr "Sumatera Barat" - -# @ woocommerce -#: i18n/states/ID.php:16 -msgid "Riau" -msgstr "Riau" - -# @ woocommerce -#: i18n/states/ID.php:17 -msgid "Kepulauan Riau" -msgstr "Kepulauan Riau" - -# @ woocommerce -#: i18n/states/ID.php:18 -msgid "Jambi" -msgstr "Jambi" - -# @ woocommerce -#: i18n/states/ID.php:19 -msgid "Sumatera Selatan" -msgstr "Sumatera Selatan" - -# @ woocommerce -#: i18n/states/ID.php:20 -msgid "Bangka Belitung" -msgstr "Bangka Belitung" - -# @ woocommerce -#: i18n/states/ID.php:21 -msgid "Bengkulu" -msgstr "Bengkulu" - -# @ woocommerce -#: i18n/states/ID.php:22 -msgid "Lampung" -msgstr "Lampung" - -# @ woocommerce -#: i18n/states/ID.php:23 -msgid "DKI Jakarta" -msgstr "DKI Jakarta" - -# @ woocommerce -#: i18n/states/ID.php:24 -msgid "Jawa Barat" -msgstr "Jawa Barat" - -# @ woocommerce -#: i18n/states/ID.php:25 -msgid "Banten" -msgstr "Banten" - -# @ woocommerce -#: i18n/states/ID.php:26 -msgid "Jawa Tengah" -msgstr "Jawa Tengah" - -# @ woocommerce -#: i18n/states/ID.php:27 -msgid "Jawa Timur" -msgstr "Jawa Timur" - -# @ woocommerce -#: i18n/states/ID.php:28 -msgid "Daerah Istimewa Yogyakarta" -msgstr "Daerah Istimewa Yogyakarta" - -# @ woocommerce -#: i18n/states/ID.php:29 -msgid "Bali" -msgstr "Bali" - -# @ woocommerce -#: i18n/states/ID.php:30 -msgid "Nusa Tenggara Barat" -msgstr "Nusa Tenggara Barat" - -# @ woocommerce -#: i18n/states/ID.php:31 -msgid "Nusa Tenggara Timur" -msgstr "Nusa Tenggara Timur" - -# @ woocommerce -#: i18n/states/ID.php:32 -msgid "Kalimantan Barat" -msgstr "Kalimantan Barat" - -# @ woocommerce -#: i18n/states/ID.php:33 -msgid "Kalimantan Tengah" -msgstr "Kalimantan Tengah" - -# @ woocommerce -#: i18n/states/ID.php:34 -msgid "Kalimantan Timur" -msgstr "Kalimantan Timur" - -# @ woocommerce -#: i18n/states/ID.php:35 -msgid "Kalimantan Selatan" -msgstr "Kalimantan Selatan" - -# @ woocommerce -#: i18n/states/ID.php:36 -msgid "Kalimantan Utara" -msgstr "Kalimantan Utara" - -# @ woocommerce -#: i18n/states/ID.php:37 -msgid "Sulawesi Utara" -msgstr "Sulawesi Utara" - -# @ woocommerce -#: i18n/states/ID.php:38 -msgid "Sulawesi Tengah" -msgstr "Sulawesi Tengah" - -# @ woocommerce -#: i18n/states/ID.php:39 -msgid "Sulawesi Tenggara" -msgstr "Sulawesi Tenggara" - -# @ woocommerce -#: i18n/states/ID.php:40 -msgid "Sulawesi Barat" -msgstr "Sulawesi Barat" - -# @ woocommerce -#: i18n/states/ID.php:41 -msgid "Sulawesi Selatan" -msgstr "Sulawesi Selatan" - -# @ woocommerce -#: i18n/states/ID.php:42 -msgid "Gorontalo" -msgstr "Gorontalo" - -# @ woocommerce -#: i18n/states/ID.php:43 -msgid "Maluku" -msgstr "Maluku" - -# @ woocommerce -#: i18n/states/ID.php:44 -msgid "Maluku Utara" -msgstr "Maluku Utara" - -# @ woocommerce -#: i18n/states/ID.php:45 -msgid "Papua" -msgstr "Papua" - -# @ woocommerce -#: i18n/states/ID.php:46 -msgid "Papua Barat" -msgstr "Papua Barat" - -# @ woocommerce -#: i18n/states/IN.php:13 -msgid "Andra Pradesh" -msgstr "Andra Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:14 -msgid "Arunachal Pradesh" -msgstr "Arunachal Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:15 -msgid "Assam" -msgstr "Assam" - -# @ woocommerce -#: i18n/states/IN.php:16 -msgid "Bihar" -msgstr "Bihar" - -# @ woocommerce -#: i18n/states/IN.php:17 -msgid "Chhattisgarh" -msgstr "Chhattisgarh" - -# @ woocommerce -#: i18n/states/IN.php:18 -msgid "Goa" -msgstr "Goa" - -# @ woocommerce -#: i18n/states/IN.php:19 -msgid "Gujarat" -msgstr "Gujarat" - -# @ woocommerce -#: i18n/states/IN.php:20 -msgid "Haryana" -msgstr "Haryana" - -# @ woocommerce -#: i18n/states/IN.php:21 -msgid "Himachal Pradesh" -msgstr "Himachal Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:22 -msgid "Jammu and Kashmir" -msgstr "Jammu and Kashmir" - -# @ woocommerce -#: i18n/states/IN.php:23 -msgid "Jharkhand" -msgstr "Jharkhand" - -# @ woocommerce -#: i18n/states/IN.php:24 -msgid "Karnataka" -msgstr "Karnataka" - -# @ woocommerce -#: i18n/states/IN.php:25 -msgid "Kerala" -msgstr "Kerala" - -# @ woocommerce -#: i18n/states/IN.php:26 -msgid "Madhya Pradesh" -msgstr "Madhya Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:27 -msgid "Maharashtra" -msgstr "Maharashtra" - -# @ woocommerce -#: i18n/states/IN.php:28 -msgid "Manipur" -msgstr "Manipur" - -# @ woocommerce -#: i18n/states/IN.php:29 -msgid "Meghalaya" -msgstr "Meghalaya" - -# @ woocommerce -#: i18n/states/IN.php:30 -msgid "Mizoram" -msgstr "Mizoram" - -# @ woocommerce -#: i18n/states/IN.php:31 -msgid "Nagaland" -msgstr "Nagaland" - -# @ woocommerce -#: i18n/states/IN.php:32 -msgid "Orissa" -msgstr "Orissa" - -# @ woocommerce -#: i18n/states/IN.php:33 -msgid "Punjab" -msgstr "Punjab" - -# @ woocommerce -#: i18n/states/IN.php:34 -msgid "Rajasthan" -msgstr "Rajasthan" - -# @ woocommerce -#: i18n/states/IN.php:35 -msgid "Sikkim" -msgstr "Sikkim" - -# @ woocommerce -#: i18n/states/IN.php:36 -msgid "Tamil Nadu" -msgstr "Tamil Nadu" - -# @ woocommerce -#: i18n/states/IN.php:37 -msgid "Tripura" -msgstr "Tripura" - -# @ woocommerce -#: i18n/states/IN.php:38 -msgid "Uttaranchal" -msgstr "Uttaranchal" - -# @ woocommerce -#: i18n/states/IN.php:39 -msgid "Uttar Pradesh" -msgstr "Uttar Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:40 -msgid "West Bengal" -msgstr "West Bengal" - -# @ woocommerce -#: i18n/states/IN.php:41 -msgid "Andaman and Nicobar Islands" -msgstr "Andaman and Nicobar Islands" - -# @ woocommerce -#: i18n/states/IN.php:42 -msgid "Chandigarh" -msgstr "Chandigarh" - -# @ woocommerce -#: i18n/states/IN.php:43 -msgid "Dadar and Nagar Haveli" -msgstr "Dadar and Nagar Haveli" - -# @ woocommerce -#: i18n/states/IN.php:44 -msgid "Daman and Diu" -msgstr "Daman and Diu" - -# @ woocommerce -#: i18n/states/IN.php:45 -msgid "Delhi" -msgstr "Delhi" - -# @ woocommerce -#: i18n/states/IN.php:46 -msgid "Lakshadeep" -msgstr "Lakshadeep" - -# @ woocommerce -#: i18n/states/IN.php:47 -msgid "Pondicherry (Puducherry)" -msgstr "Pondicherry (Puducherry)" - -# @ woocommerce -#: i18n/states/MY.php:13 -msgid "Johor" -msgstr "Johor" - -# @ woocommerce -#: i18n/states/MY.php:14 -msgid "Kedah" -msgstr "Kedah" - -# @ woocommerce -#: i18n/states/MY.php:15 -msgid "Kelantan" -msgstr "Kelantan" - -# @ woocommerce -#: i18n/states/MY.php:16 -msgid "Melaka" -msgstr "Melaka" - -# @ woocommerce -#: i18n/states/MY.php:17 -msgid "Negeri Sembilan" -msgstr "Negeri Sembilan" - -# @ woocommerce -#: i18n/states/MY.php:18 -msgid "Pahang" -msgstr "Pahang" - -# @ woocommerce -#: i18n/states/MY.php:19 -msgid "Perak" -msgstr "Perak" - -# @ woocommerce -#: i18n/states/MY.php:20 -msgid "Perlis" -msgstr "Perlis" - -# @ woocommerce -#: i18n/states/MY.php:21 -msgid "Pulau Pinang" -msgstr "Pulau Pinang" - -# @ woocommerce -#: i18n/states/MY.php:22 -msgid "Sabah" -msgstr "Sabah" - -# @ woocommerce -#: i18n/states/MY.php:23 -msgid "Sarawak" -msgstr "Sarawak" - -# @ woocommerce -#: i18n/states/MY.php:24 -msgid "Selangor" -msgstr "Selangor" - -# @ woocommerce -#: i18n/states/MY.php:25 -msgid "Terengganu" -msgstr "Terengganu" - -# @ woocommerce -#: i18n/states/MY.php:26 -msgid "W.P. Kuala Lumpur" -msgstr "W.P. Kuala Lumpur" - -# @ woocommerce -#: i18n/states/MY.php:27 -msgid "W.P. Labuan" -msgstr "W.P. Labuan" - -# @ woocommerce -#: i18n/states/MY.php:28 -msgid "W.P. Putrajaya" -msgstr "W.P. Putrajaya" - -# @ woocommerce -#: i18n/states/TH.php:13 -msgid "" -"Amnat Charoen (อำนาจเจร" -"ิญ)" -msgstr "" -"Amnat Charoen (อำนาจเจร" -"ิญ)" - -# @ woocommerce -#: i18n/states/TH.php:14 -msgid "Ang Thong (อ่างทอง)" -msgstr "Ang Thong (อ่างทอง)" - -# @ woocommerce -#: i18n/states/TH.php:15 -msgid "" -"Ayutthaya (พระนครศรี" -"อยุธยา)" -msgstr "" -"Ayutthaya (พระนครศรี" -"อยุธยา)" - -# @ woocommerce -#: i18n/states/TH.php:16 -msgid "" -"Bangkok (กรุงเทพมห" -"านคร)" -msgstr "" -"Bangkok (กรุงเทพมห" -"านคร)" - -# @ woocommerce -#: i18n/states/TH.php:17 -msgid "Bueng Kan (บึงกาฬ)" -msgstr "Bueng Kan (บึงกาฬ)" - -# @ woocommerce -#: i18n/states/TH.php:18 -msgid "" -"Buri Ram (บุรีรัมย์)" -msgstr "" -"Buri Ram (บุรีรัมย์)" - -# @ woocommerce -#: i18n/states/TH.php:19 -msgid "" -"Chachoengsao (ฉะเชิงเทร" -"า)" -msgstr "" -"Chachoengsao (ฉะเชิงเทร" -"า)" - -# @ woocommerce -#: i18n/states/TH.php:20 -msgid "Chai Nat (ชัยนาท)" -msgstr "Chai Nat (ชัยนาท)" - -# @ woocommerce -#: i18n/states/TH.php:21 -msgid "Chaiyaphum (ชัยภูมิ)" -msgstr "Chaiyaphum (ชัยภูมิ)" - -# @ woocommerce -#: i18n/states/TH.php:22 -msgid "Chanthaburi (จันทบุรี)" -msgstr "Chanthaburi (จันทบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:23 -msgid "" -"Chiang Mai (เชียงใหม่)" -msgstr "" -"Chiang Mai (เชียงใหม่)" - -# @ woocommerce -#: i18n/states/TH.php:24 -msgid "Chiang Rai (เชียงราย)" -msgstr "Chiang Rai (เชียงราย)" - -# @ woocommerce -#: i18n/states/TH.php:25 -msgid "Chonburi (ชลบุรี)" -msgstr "Chonburi (ชลบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:26 -msgid "Chumphon (ชุมพร)" -msgstr "Chumphon (ชุมพร)" - -# @ woocommerce -#: i18n/states/TH.php:27 -msgid "" -"Kalasin (กาฬสินธุ์)" -msgstr "" -"Kalasin (กาฬสินธุ์)" - -# @ woocommerce -#: i18n/states/TH.php:28 -msgid "" -"Kamphaeng Phet (กำแพงเพช" -"ร)" -msgstr "" -"Kamphaeng Phet (กำแพงเพช" -"ร)" - -# @ woocommerce -#: i18n/states/TH.php:29 -msgid "" -"Kanchanaburi (กาญจนบุร" -"ี)" -msgstr "" -"Kanchanaburi (กาญจนบุร" -"ี)" - -# @ woocommerce -#: i18n/states/TH.php:30 -msgid "Khon Kaen (ขอนแก่น)" -msgstr "Khon Kaen (ขอนแก่น)" - -# @ woocommerce -#: i18n/states/TH.php:31 -msgid "Krabi (กระบี่)" -msgstr "Krabi (กระบี่)" - -# @ woocommerce -#: i18n/states/TH.php:32 -msgid "Lampang (ลำปาง)" -msgstr "Lampang (ลำปาง)" - -# @ woocommerce -#: i18n/states/TH.php:33 -msgid "Lamphun (ลำพูน)" -msgstr "Lamphun (ลำพูน)" - -# @ woocommerce -#: i18n/states/TH.php:34 -msgid "Loei (เลย)" -msgstr "Loei (เลย)" - -# @ woocommerce -#: i18n/states/TH.php:35 -msgid "Lopburi (ลพบุรี)" -msgstr "Lopburi (ลพบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:36 -msgid "" -"Mae Hong Son (แม่ฮ่องสอ" -"น)" -msgstr "" -"Mae Hong Son (แม่ฮ่องสอ" -"น)" - -# @ woocommerce -#: i18n/states/TH.php:37 -msgid "" -"Maha Sarakham (มหาสารคา" -"ม)" -msgstr "" -"Maha Sarakham (มหาสารคา" -"ม)" - -# @ woocommerce -#: i18n/states/TH.php:38 -msgid "Mukdahan (มุกดาหาร)" -msgstr "Mukdahan (มุกดาหาร)" - -# @ woocommerce -#: i18n/states/TH.php:39 -msgid "Nakhon Nayok (นครนายก)" -msgstr "Nakhon Nayok (นครนายก)" - -# @ woocommerce -#: i18n/states/TH.php:40 -msgid "Nakhon Pathom (นครปฐม)" -msgstr "Nakhon Pathom (นครปฐม)" - -# @ woocommerce -#: i18n/states/TH.php:41 -msgid "Nakhon Phanom (นครพนม)" -msgstr "Nakhon Phanom (นครพนม)" - -# @ woocommerce -#: i18n/states/TH.php:42 -msgid "" -"Nakhon Ratchasima (นครราชสี" -"มา)" -msgstr "" -"Nakhon Ratchasima (นครราชสี" -"มา)" - -# @ woocommerce -#: i18n/states/TH.php:43 -msgid "" -"Nakhon Sawan (นครสวรรค" -"์)" -msgstr "" -"Nakhon Sawan (นครสวรรค" -"์)" - -# @ woocommerce -#: i18n/states/TH.php:44 -msgid "" -"Nakhon Si Thammarat (นครศรีธร" -"รมราช)" -msgstr "" -"Nakhon Si Thammarat (นครศรีธร" -"รมราช)" - -# @ woocommerce -#: i18n/states/TH.php:45 -msgid "Nan (น่าน)" -msgstr "Nan (น่าน)" - -# @ woocommerce -#: i18n/states/TH.php:46 -msgid "Narathiwat (นราธิวาส)" -msgstr "Narathiwat (นราธิวาส)" - -# @ woocommerce -#: i18n/states/TH.php:47 -msgid "" -"Nong Bua Lam Phu (หนองบัวล" -"ำภู)" -msgstr "" -"Nong Bua Lam Phu (หนองบัวล" -"ำภู)" - -# @ woocommerce -#: i18n/states/TH.php:48 -msgid "Nong Khai (หนองคาย)" -msgstr "Nong Khai (หนองคาย)" - -# @ woocommerce -#: i18n/states/TH.php:49 -msgid "Nonthaburi (นนทบุรี)" -msgstr "Nonthaburi (นนทบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:50 -msgid "Pathum Thani (ปทุมธานี)" -msgstr "" -"Pathum Thani (ปทุมธานี)" - -# @ woocommerce -#: i18n/states/TH.php:51 -msgid "Pattani (ปัตตานี)" -msgstr "Pattani (ปัตตานี)" - -# @ woocommerce -#: i18n/states/TH.php:52 -msgid "Phang Nga (พังงา)" -msgstr "Phang Nga (พังงา)" - -# @ woocommerce -#: i18n/states/TH.php:53 -msgid "Phatthalung (พัทลุง)" -msgstr "Phatthalung (พัทลุง)" - -# @ woocommerce -#: i18n/states/TH.php:54 -msgid "Phayao (พะเยา)" -msgstr "Phayao (พะเยา)" - -# @ woocommerce -#: i18n/states/TH.php:55 -msgid "" -"Phetchabun (เพชรบูรณ์)" -msgstr "" -"Phetchabun (เพชรบูรณ์)" - -# @ woocommerce -#: i18n/states/TH.php:56 -msgid "Phetchaburi (เพชรบุรี)" -msgstr "Phetchaburi (เพชรบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:57 -msgid "Phichit (พิจิตร)" -msgstr "Phichit (พิจิตร)" - -# @ woocommerce -#: i18n/states/TH.php:58 -msgid "Phitsanulok (พิษณุโลก)" -msgstr "Phitsanulok (พิษณุโลก)" - -# @ woocommerce -#: i18n/states/TH.php:59 -msgid "Phrae (แพร่)" -msgstr "Phrae (แพร่)" - -# @ woocommerce -#: i18n/states/TH.php:60 -msgid "Phuket (ภูเก็ต)" -msgstr "Phuket (ภูเก็ต)" - -# @ woocommerce -#: i18n/states/TH.php:61 -msgid "" -"Prachin Buri (ปราจีนบุร" -"ี)" -msgstr "" -"Prachin Buri (ปราจีนบุร" -"ี)" - -# @ woocommerce -#: i18n/states/TH.php:62 -msgid "" -"Prachuap Khiri Khan (ประจวบคี" -"รีขันธ์)" -msgstr "" -"Prachuap Khiri Khan (ประจวบคี" -"รีขันธ์)" - -# @ woocommerce -#: i18n/states/TH.php:63 -msgid "Ranong (ระนอง)" -msgstr "Ranong (ระนอง)" - -# @ woocommerce -#: i18n/states/TH.php:64 -msgid "Ratchaburi (ราชบุรี)" -msgstr "Ratchaburi (ราชบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:65 -msgid "Rayong (ระยอง)" -msgstr "Rayong (ระยอง)" - -# @ woocommerce -#: i18n/states/TH.php:66 -msgid "Roi Et (ร้อยเอ็ด)" -msgstr "Roi Et (ร้อยเอ็ด)" - -# @ woocommerce -#: i18n/states/TH.php:67 -msgid "Sa Kaeo (สระแก้ว)" -msgstr "Sa Kaeo (สระแก้ว)" - -# @ woocommerce -#: i18n/states/TH.php:68 -msgid "Sakon Nakhon (สกลนคร)" -msgstr "Sakon Nakhon (สกลนคร)" - -# @ woocommerce -#: i18n/states/TH.php:69 -msgid "" -"Samut Prakan (สมุทรปราก" -"าร)" -msgstr "" -"Samut Prakan (สมุทรปราก" -"าร)" - -# @ woocommerce -#: i18n/states/TH.php:70 -msgid "" -"Samut Sakhon (สมุทรสาค" -"ร)" -msgstr "" -"Samut Sakhon (สมุทรสาค" -"ร)" - -# @ woocommerce -#: i18n/states/TH.php:71 -msgid "" -"Samut Songkhram (สมุทรสงค" -"ราม)" -msgstr "" -"Samut Songkhram (สมุทรสงค" -"ราม)" - -# @ woocommerce -#: i18n/states/TH.php:72 -msgid "Saraburi (สระบุรี)" -msgstr "Saraburi (สระบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:73 -msgid "Satun (สตูล)" -msgstr "Satun (สตูล)" - -# @ woocommerce -#: i18n/states/TH.php:74 -msgid "" -"Sing Buri (สิงห์บุรี)" -msgstr "" -"Sing Buri (สิงห์บุรี)" - -# @ woocommerce -#: i18n/states/TH.php:75 -msgid "Sisaket (ศรีสะเกษ)" -msgstr "Sisaket (ศรีสะเกษ)" - -# @ woocommerce -#: i18n/states/TH.php:76 -msgid "Songkhla (สงขลา)" -msgstr "Songkhla (สงขลา)" - -# @ woocommerce -#: i18n/states/TH.php:77 -msgid "Sukhothai (สุโขทัย)" -msgstr "Sukhothai (สุโขทัย)" - -# @ woocommerce -#: i18n/states/TH.php:78 -msgid "" -"Suphan Buri (สุพรรณบุร" -"ี)" -msgstr "" -"Suphan Buri (สุพรรณบุร" -"ี)" - -# @ woocommerce -#: i18n/states/TH.php:79 -msgid "" -"Surat Thani (สุราษฎร์ธ" -"านี)" -msgstr "" -"Surat Thani (สุราษฎร์ธ" -"านี)" - -# @ woocommerce -#: i18n/states/TH.php:80 -msgid "Surin (สุรินทร์)" -msgstr "Surin (สุรินทร์)" - -# @ woocommerce -#: i18n/states/TH.php:81 -msgid "Tak (ตาก)" -msgstr "Tak (ตาก)" - -# @ woocommerce -#: i18n/states/TH.php:82 -msgid "Trang (ตรัง)" -msgstr "Trang (ตรัง)" - -# @ woocommerce -#: i18n/states/TH.php:83 -msgid "Trat (ตราด)" -msgstr "Trat (ตราด)" - -# @ woocommerce -#: i18n/states/TH.php:84 -msgid "" -"Ubon Ratchathani (อุบลราชธ" -"านี)" -msgstr "" -"Ubon Ratchathani (อุบลราชธ" -"านี)" - -# @ woocommerce -#: i18n/states/TH.php:85 -msgid "Udon Thani (อุดรธานี)" -msgstr "Udon Thani (อุดรธานี)" - -# @ woocommerce -#: i18n/states/TH.php:86 -msgid "" -"Uthai Thani (อุทัยธานี)" -msgstr "" -"Uthai Thani (อุทัยธานี)" - -# @ woocommerce -#: i18n/states/TH.php:87 -msgid "" -"Uttaradit (อุตรดิตถ์)" -msgstr "" -"Uttaradit (อุตรดิตถ์)" - -# @ woocommerce -#: i18n/states/TH.php:88 -msgid "Yala (ยะลา)" -msgstr "Yala (ยะลา)" - -# @ woocommerce -#: i18n/states/TH.php:89 -msgid "Yasothon (ยโสธร)" -msgstr "Yasothon (ยโสธร)" - -# @ woocommerce -#: i18n/states/US.php:13 -msgid "Alabama" -msgstr "Alabama" - -# @ woocommerce -#: i18n/states/US.php:14 -msgid "Alaska" -msgstr "Alaska" - -# @ woocommerce -#: i18n/states/US.php:15 -msgid "Arizona" -msgstr "Arizona" - -# @ woocommerce -#: i18n/states/US.php:16 -msgid "Arkansas" -msgstr "Arkansas" - -# @ woocommerce -#: i18n/states/US.php:17 -msgid "California" -msgstr "California" - -# @ woocommerce -#: i18n/states/US.php:18 -msgid "Colorado" -msgstr "Colorado" - -# @ woocommerce -#: i18n/states/US.php:19 -msgid "Connecticut" -msgstr "Connecticut" - -# @ woocommerce -#: i18n/states/US.php:20 -msgid "Delaware" -msgstr "Delaware" - -# @ woocommerce -#: i18n/states/US.php:21 -msgid "District Of Columbia" -msgstr "District Of Columbia" - -# @ woocommerce -#: i18n/states/US.php:22 -msgid "Florida" -msgstr "Florida" - -# @ woocommerce -#: i18n/states/US.php:24 -msgid "Hawaii" -msgstr "Hawaii" - -# @ woocommerce -#: i18n/states/US.php:25 -msgid "Idaho" -msgstr "Idaho" - -# @ woocommerce -#: i18n/states/US.php:26 -msgid "Illinois" -msgstr "Illinois" - -# @ woocommerce -#: i18n/states/US.php:27 -msgid "Indiana" -msgstr "Indiana" - -# @ woocommerce -#: i18n/states/US.php:28 -msgid "Iowa" -msgstr "Iowa" - -# @ woocommerce -#: i18n/states/US.php:29 -msgid "Kansas" -msgstr "Kansas" - -# @ woocommerce -#: i18n/states/US.php:30 -msgid "Kentucky" -msgstr "Kentucky" - -# @ woocommerce -#: i18n/states/US.php:31 -msgid "Louisiana" -msgstr "Louisiana" - -# @ woocommerce -#: i18n/states/US.php:32 -msgid "Maine" -msgstr "Maine" - -# @ woocommerce -#: i18n/states/US.php:33 -msgid "Maryland" -msgstr "Maryland" - -# @ woocommerce -#: i18n/states/US.php:34 -msgid "Massachusetts" -msgstr "Massachusetts" - -# @ woocommerce -#: i18n/states/US.php:35 -msgid "Michigan" -msgstr "Michigan" - -# @ woocommerce -#: i18n/states/US.php:36 -msgid "Minnesota" -msgstr "Minnesota" - -# @ woocommerce -#: i18n/states/US.php:37 -msgid "Mississippi" -msgstr "Mississippi" - -# @ woocommerce -#: i18n/states/US.php:38 -msgid "Missouri" -msgstr "Missouri" - -# @ woocommerce -#: i18n/states/US.php:39 -msgid "Montana" -msgstr "Montana" - -# @ woocommerce -#: i18n/states/US.php:40 -msgid "Nebraska" -msgstr "Nebraska" - -# @ woocommerce -#: i18n/states/US.php:41 -msgid "Nevada" -msgstr "Nevada" - -# @ woocommerce -#: i18n/states/US.php:42 -msgid "New Hampshire" -msgstr "New Hampshire" - -# @ woocommerce -#: i18n/states/US.php:43 -msgid "New Jersey" -msgstr "New Jersey" - -# @ woocommerce -#: i18n/states/US.php:44 -msgid "New Mexico" -msgstr "New Mexico" - -# @ woocommerce -#: i18n/states/US.php:45 -msgid "New York" -msgstr "New York" - -# @ woocommerce -#: i18n/states/US.php:46 -msgid "North Carolina" -msgstr "North Carolina" - -# @ woocommerce -#: i18n/states/US.php:47 -msgid "North Dakota" -msgstr "North Dakota" - -# @ woocommerce -#: i18n/states/US.php:48 -msgid "Ohio" -msgstr "Ohio" - -# @ woocommerce -#: i18n/states/US.php:49 -msgid "Oklahoma" -msgstr "Oklahoma" - -# @ woocommerce -#: i18n/states/US.php:50 -msgid "Oregon" -msgstr "Oregon" - -# @ woocommerce -#: i18n/states/US.php:51 -msgid "Pennsylvania" -msgstr "Pennsylvania" - -# @ woocommerce -#: i18n/states/US.php:52 -msgid "Rhode Island" -msgstr "Rhode Island" - -# @ woocommerce -#: i18n/states/US.php:53 -msgid "South Carolina" -msgstr "South Carolina" - -# @ woocommerce -#: i18n/states/US.php:54 -msgid "South Dakota" -msgstr "South Dakota" - -# @ woocommerce -#: i18n/states/US.php:55 -msgid "Tennessee" -msgstr "Tennessee" - -# @ woocommerce -#: i18n/states/US.php:56 -msgid "Texas" -msgstr "Texas" - -# @ woocommerce -#: i18n/states/US.php:57 -msgid "Utah" -msgstr "Utah" - -# @ woocommerce -#: i18n/states/US.php:58 -msgid "Vermont" -msgstr "Vermont" - -# @ woocommerce -#: i18n/states/US.php:59 -msgid "Virginia" -msgstr "Virginia" - -# @ woocommerce -#: i18n/states/US.php:60 -msgid "Washington" -msgstr "Washington" - -# @ woocommerce -#: i18n/states/US.php:61 -msgid "West Virginia" -msgstr "West Virginia" - -# @ woocommerce -#: i18n/states/US.php:62 -msgid "Wisconsin" -msgstr "Wisconsin" - -# @ woocommerce -#: i18n/states/US.php:63 -msgid "Wyoming" -msgstr "Wyoming" - -# @ woocommerce -#: i18n/states/US.php:64 -msgid "Armed Forces (AA)" -msgstr "Armed Forces (AA)" - -# @ woocommerce -#: i18n/states/US.php:65 -msgid "Armed Forces (AE)" -msgstr "Armed Forces (AE)" - -# @ woocommerce -#: i18n/states/US.php:66 -msgid "Armed Forces (AP)" -msgstr "Armed Forces (AP)" - -# @ woocommerce -#: i18n/states/US.php:67 -msgid "American Samoa" -msgstr "American Samoa" - -# @ woocommerce -#: i18n/states/US.php:68 -msgid "Guam" -msgstr "Guam" - -# @ woocommerce -#: i18n/states/US.php:69 -msgid "Northern Mariana Islands" -msgstr "Northern Mariana Islands" - -# @ woocommerce -#: i18n/states/US.php:70 -msgid "Puerto Rico" -msgstr "Puerto Rico" - -# @ woocommerce -#: i18n/states/US.php:71 -msgid "US Minor Outlying Islands" -msgstr "US Minor Outlying Islands" - -# @ woocommerce -#: i18n/states/US.php:72 -msgid "US Virgin Islands" -msgstr "US Virgin Islands" - -# @ woocommerce -#: i18n/states/ZA.php:13 -msgid "Eastern Cape" -msgstr "Eastern Cape" - -# @ woocommerce -#: i18n/states/ZA.php:14 -msgid "Free State" -msgstr "Free State" - -# @ woocommerce -#: i18n/states/ZA.php:15 -msgid "Gauteng" -msgstr "Gauteng" - -# @ woocommerce -#: i18n/states/ZA.php:16 -msgid "KwaZulu-Natal" -msgstr "KwaZulu-Natal" - -# @ woocommerce -#: i18n/states/ZA.php:17 -msgid "Limpopo" -msgstr "Limpopo" - -# @ woocommerce -#: i18n/states/ZA.php:18 -msgid "Mpumalanga" -msgstr "Mpumalanga" - -# @ woocommerce -#: i18n/states/ZA.php:19 -msgid "Northern Cape" -msgstr "Northern Cape" - -# @ woocommerce -#: i18n/states/ZA.php:20 -msgid "North West" -msgstr "North West" - -# @ woocommerce -#: i18n/states/ZA.php:21 -msgid "Western Cape" -msgstr "Western Cape" - -# @ woocommerce -#: i18n/strings.php:16 -msgid "pending" -msgstr "대기중" - -# @ woocommerce -#: i18n/strings.php:17 -msgid "failed" -msgstr "실패함" - -# @ woocommerce -#: i18n/strings.php:18 -msgid "on-hold" -msgstr "미결중" - -# @ woocommerce -#: i18n/strings.php:19 -msgid "processing" -msgstr "처리중" - -# @ woocommerce -#: i18n/strings.php:20 -msgid "completed" -msgstr "완료됨" - -# @ woocommerce -#: i18n/strings.php:21 -msgid "refunded" -msgstr "환불됨" - -# @ woocommerce -#: i18n/strings.php:22 -msgid "cancelled" -msgstr "취소됨" - -# @ woocommerce -#: templates/cart/cart-empty.php:14 -msgid "Your cart is currently empty." -msgstr "고객님의 장바구니가 현재 비어있습니다." - -# @ woocommerce -#: templates/cart/cart-empty.php:18 -msgid "← Return To Shop" -msgstr "← 상점으로 돌아가기" - -# @ woocommerce -#: templates/cart/cart.php:28 templates/checkout/form-pay.php:19 -#: templates/checkout/review-order.php:21 -#: templates/emails/admin-new-order.php:22 -#: templates/emails/customer-completed-order.php:23 -#: templates/emails/customer-invoice.php:27 -#: templates/emails/customer-note.php:27 -#: templates/emails/customer-processing-order.php:23 -#: templates/order/order-details.php:20 woocommerce.php:983 -msgid "Product" -msgstr "상품" - -# @ woocommerce -#: templates/cart/cart.php:29 templates/emails/admin-new-order.php:24 -#: templates/emails/customer-completed-order.php:25 -#: templates/emails/customer-invoice.php:29 -#: templates/emails/customer-note.php:29 -#: templates/emails/customer-processing-order.php:25 -msgid "Price" -msgstr "가격" - -# @ woocommerce -#: templates/cart/cart.php:30 templates/emails/admin-new-order.php:23 -#: templates/emails/customer-completed-order.php:24 -#: templates/emails/customer-invoice.php:28 -#: templates/emails/customer-note.php:28 -#: templates/emails/customer-processing-order.php:24 -msgid "Quantity" -msgstr "수량" - -# @ woocommerce -#: templates/cart/cart.php:31 templates/checkout/review-order.php:22 -#: templates/myaccount/my-orders.php:35 templates/order/order-details.php:21 -msgid "Total" -msgstr "총계" - -# @ woocommerce -#: templates/cart/cart.php:47 -msgid "Remove this item" -msgstr "이 아이템을 제거하기" - -# @ woocommerce -#: templates/cart/cart.php:100 -#: templates/single-product/add-to-cart/quantity.php:12 -msgctxt "Product quantity input tooltip" -msgid "Qty" -msgstr "수량" - -# @ woocommerce -#: templates/cart/cart.php:127 woocommerce.php:1096 -msgid "Coupon" -msgstr "쿠폰" - -# @ woocommerce -#: templates/cart/cart.php:127 templates/checkout/form-coupon.php:29 -msgid "Apply Coupon" -msgstr "쿠폰 적용하기" - -# @ woocommerce -#: templates/cart/cart.php:134 -msgid "Update Cart" -msgstr "장바구니 업데이트" - -# @ woocommerce -#: templates/cart/cart.php:134 -msgid "Proceed to Checkout →" -msgstr "결제로 진행하기 →" - -# @ woocommerce -#: templates/cart/cross-sells.php:38 -msgid "You may be interested in…" -msgstr "고객님의 관심 아이템…" - -# @ woocommerce -#: templates/cart/mini-cart.php:55 -msgid "No products in the cart." -msgstr "장바구니에 상품이 없습니다." - -# @ woocommerce -#: templates/cart/mini-cart.php:63 -msgid "Subtotal" -msgstr "소계" - -# @ woocommerce -#: templates/cart/mini-cart.php:69 -msgid "Checkout →" -msgstr "결제 →" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:22 -msgid "Calculate Shipping" -msgstr "배송 계산하기" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:28 woocommerce-template.php:1334 -msgid "Select a country…" -msgstr "국가를 선택하세요…" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:45 -#: templates/cart/shipping-calculator.php:51 -#: templates/cart/shipping-calculator.php:63 -msgid "State / county" -msgstr "주 / 군" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:52 woocommerce-template.php:1384 -msgid "Select a state…" -msgstr "주 선택하기…" - -#: templates/cart/shipping-calculator.php:72 -msgid "City" -msgstr "도시" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:85 -msgid "Update Totals" -msgstr "총계 업데이트" - -# @ woocommerce -#: templates/cart/shipping-methods.php:32 -msgid "Free" -msgstr "무료" - -# @ woocommerce -#: templates/cart/shipping-methods.php:68 -msgid "Please fill in your details to see available shipping methods." -msgstr "가능한 배송 방법이 보이도록 상세정보를 입력하세요." - -# @ woocommerce -#: templates/cart/shipping-methods.php:76 templates/cart/totals.php:147 -msgid "" -"Sorry, it seems that there are no available shipping methods for your " -"location (%s)." -msgstr "죄송합니다.배송지로 가능한 배송 방법이 없는 것 같습니다 (%s)." - -# @ woocommerce -#: templates/cart/shipping-methods.php:76 templates/cart/totals.php:147 -msgid "" -"If you require assistance or wish to make alternate arrangements please " -"contact us." -msgstr "도움이 필요하거나 다른 조정이 필요하시면 저희에게 연락주세요." - -# @ woocommerce -#: templates/cart/totals.php:22 -msgid "Cart Totals" -msgstr "장바구니 총계" - -# @ woocommerce -#: templates/cart/totals.php:28 templates/checkout/review-order.php:27 -msgid "Cart Subtotal" -msgstr "장바구니 소계" - -# @ woocommerce -#: templates/cart/totals.php:35 templates/checkout/review-order.php:34 -#: woocommerce.php:1690 -msgid "Cart Discount" -msgstr "장바구니 할인" - -# @ woocommerce -#: templates/cart/totals.php:35 templates/cart/totals.php:83 -msgid "[Remove]" -msgstr "[제거]" - -# @ woocommerce -#: templates/cart/totals.php:46 templates/checkout/review-order.php:45 -msgid "Shipping" -msgstr "배송" - -# @ woocommerce -#: templates/cart/totals.php:83 templates/checkout/review-order.php:82 -msgid "Order Discount" -msgstr "주문 할인" - -# @ woocommerce -#: templates/cart/totals.php:92 templates/checkout/review-order.php:91 -msgid "Order Total" -msgstr "주문 총계" - -# @ woocommerce -#: templates/cart/totals.php:121 -msgid " (taxes estimated for %s)" -msgstr "(%s에 대한 세금 견적)" - -# @ woocommerce -#: templates/cart/totals.php:123 -msgid "" -"Note: Shipping and taxes are estimated%s and will be updated during checkout " -"based on your billing and shipping information." -msgstr "" -"주의:배송과 세금은 예상값%s이며 결제시에 청구 및 배송 정보를 기준으로업데이트" -"될 것입니다." - -# @ woocommerce -#: templates/cart/totals.php:135 -msgid "" -"No shipping methods were found; please recalculate your shipping and enter " -"your state/county and zip/postcode to ensure there are no other available " -"methods for your location." -msgstr "" -"배송 방법을 찾을 수 없습니다; 고객님의 위치에 가능한 다른 방법이 없는지 확인" -"하기 위해서 고객님의 배송을 재계산하고 주/군 그리고 우편번호를 입력하세요." - -# @ woocommerce -#: templates/checkout/cart-errors.php:16 -msgid "" -"There are some issues with the items in your cart (shown above). Please go " -"back to the cart page and resolve these issues before checking out." -msgstr "" -"장바구니에 있는 아이템에 몇가지 문제가 있습니다 (위에 보임). 결제하기 전에 장" -"바구니 페이지로 돌아가서 이들 문제를 해결하세요." - -# @ woocommerce -#: templates/checkout/cart-errors.php:20 -msgid "← Return To Cart" -msgstr "← 장바구니로 돌아가기" - -# @ woocommerce -#: templates/checkout/form-billing.php:17 -msgid "Billing & Shipping" -msgstr "청구 및 배송" - -# @ woocommerce -#: templates/checkout/form-billing.php:21 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:19 templates/myaccount/my-address.php:25 -#: templates/order/order-details.php:115 -msgid "Billing Address" -msgstr "청구 주소" - -# @ woocommerce -#: templates/checkout/form-billing.php:42 -msgid "Create an account?" -msgstr "계정을 만드시겠습니까?" - -# @ woocommerce -#: templates/checkout/form-billing.php:51 -msgid "" -"Create an account by entering the information below. If you are a returning " -"customer please login at the top of the page." -msgstr "" -"아래에 정보를 입력해서 계정을 생성하세요. 재방문 고객이시면 페이지 상단에서 " -"로그인해주세요." - -# @ woocommerce -#: templates/checkout/form-checkout.php:20 -msgid "You must be logged in to checkout." -msgstr "결제하려면 로그인해야 합니다." - -# @ woocommerce -#: templates/checkout/form-checkout.php:51 -msgid "Your order" -msgstr "고객님의 주문" - -# @ woocommerce -#: templates/checkout/form-coupon.php:17 -msgid "Have a coupon?" -msgstr "쿠폰이 있나요?" - -# @ woocommerce -#: templates/checkout/form-coupon.php:20 -msgid "Click here to enter your code" -msgstr "코드를 입력하려면 여기를 클릭하세요" - -# @ woocommerce -#: templates/checkout/form-coupon.php:25 -msgid "Coupon code" -msgstr "쿠폰 코드" - -# @ woocommerce -#: templates/checkout/form-login.php:14 -msgid "Returning customer?" -msgstr "재방문 고객이신가요?" - -# @ woocommerce -#: templates/checkout/form-login.php:17 -msgid "Click here to login" -msgstr "로그인 하려면 여기를 클릭하세요" - -# @ woocommerce -#: templates/checkout/form-login.php:22 -msgid "" -"If you have shopped with us before, please enter your details in the boxes " -"below. If you are a new customer please proceed to the Billing & " -"Shipping section." -msgstr "" -"이전에 저희 사이트에서 쇼핑한 적이 있으면 아래의 박스에 상세를 입력해주세요. " -"새 고객이시면 청구 및 배송 영역으로 진행해주세요." - -# @ woocommerce -#: templates/checkout/form-pay.php:20 -msgid "Qty" -msgstr "수량" - -# @ woocommerce -#: templates/checkout/form-pay.php:21 -msgid "Totals" -msgstr "총계" - -# @ woocommerce -#: templates/checkout/form-pay.php:78 -msgid "" -"Sorry, it seems that there are no available payment methods for your " -"location. Please contact us if you require assistance or wish to make " -"alternate arrangements." -msgstr "" -"죄송합니다. 배송지에 가능한 지불 방법이 없는 것 같습니다. 도움이나 다른 조정" -"이 필요하시면 저희에게 연락해주세요." - -# @ woocommerce -#: templates/checkout/form-pay.php:87 -msgid "Pay for order" -msgstr "주문 지불" - -# @ woocommerce -#: templates/checkout/form-shipping.php:32 -msgid "Ship to billing address?" -msgstr "청구 주소로 배송하기" - -# @ woocommerce -#: templates/checkout/form-shipping.php:35 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:20 templates/order/order-details.php:130 -msgid "Shipping Address" -msgstr "배송 주소" - -# @ woocommerce -#: templates/checkout/form-shipping.php:59 -#: templates/single-product/tabs/additional-information.php:14 -#: woocommerce-template.php:759 -msgid "Additional Information" -msgstr "추가 정보" - -# @ woocommerce -#: templates/checkout/review-order.php:174 -msgid "Please fill in your details above to see available payment methods." -msgstr "가능한 지불 방법을 보려면 위에서 상세를 입력해주세요." - -# @ woocommerce -#: templates/checkout/review-order.php:176 -msgid "" -"Sorry, it seems that there are no available payment methods for your state. " -"Please contact us if you require assistance or wish to make alternate " -"arrangements." -msgstr "" -"죄송합니다. 고객님의 주에 가능한 지불 방법이 없는 것 같습니다. 도움이나 다른 " -"조정이 필요하시면 저희에게 연락해주세요." - -# @ woocommerce -#: templates/checkout/review-order.php:185 -msgid "" -"Since your browser does not support JavaScript, or it is disabled, please " -"ensure you click the Update Totals button before placing your " -"order. You may be charged more than the amount stated above if you fail to " -"do so." -msgstr "" -"고객님의 웹브라우저가 자바스크립트를 지원하지 않거나 비활성화 돼있기 때문에, " -"주문을 확정하기 전에 총계 업데이트버튼을 클릭해주세요. 그렇게 하지 " -"않으면 위에 제시된 금액보다 더 부과될 수도 있습니다." - -# @ woocommerce -#: templates/checkout/review-order.php:185 -msgid "Update totals" -msgstr "총계 업데이트" - -# @ woocommerce -#: templates/checkout/review-order.php:192 -msgid "Place order" -msgstr "주문 확정" - -# @ woocommerce -#: templates/checkout/review-order.php:199 -msgid "I have read and accept the" -msgstr "본인은 다음을 읽고 수락합니다 :" - -# @ woocommerce -#: templates/checkout/review-order.php:199 -msgid "terms & conditions" -msgstr "이용 약관" - -# @ woocommerce -#: templates/checkout/thankyou.php:18 -msgid "" -"Unfortunately your order cannot be processed as the originating bank/" -"merchant has declined your transaction." -msgstr "" -"originating bank/merchant가 거래를 거절했기 때문에 안타깝게도 고객님의 주문" -"을 진행할 수 없습니다." - -# @ woocommerce -#: templates/checkout/thankyou.php:22 -msgid "Please attempt your purchase again or go to your account page." -msgstr "구매를 다시 시도해 주시거나 계정 페이지로 가세요." - -# @ woocommerce -#: templates/checkout/thankyou.php:24 -msgid "Please attempt your purchase again." -msgstr "구매를 다시 시도해주세요." - -# @ woocommerce -#: templates/checkout/thankyou.php:36 templates/checkout/thankyou.php:67 -msgid "Thank you. Your order has been received." -msgstr "감사합니다. 고객님의 주문이 접수됐습니다." - -# @ woocommerce -#: templates/emails/admin-new-order.php:13 -#: templates/emails/plain/admin-new-order.php:13 -msgid "You have received an order from %s. Their order is as follows:" -msgstr "%s님으로부터 주문을 받았습니다. 해당 주문은 다음과 같습니다:" - -# @ woocommerce -#: templates/emails/admin-new-order.php:17 -msgid "Order: %s" -msgstr "주문: %s" - -# @ woocommerce -#: templates/emails/admin-new-order.php:50 -#: templates/emails/customer-completed-order.php:51 -#: templates/emails/customer-note.php:55 -#: templates/emails/customer-processing-order.php:51 -#: templates/emails/plain/admin-new-order.php:38 -#: templates/order/order-details.php:97 -msgid "Customer details" -msgstr "고객 상세" - -# @ woocommerce -#: templates/emails/admin-new-order.php:53 -#: templates/emails/customer-completed-order.php:54 -#: templates/emails/customer-note.php:58 -#: templates/emails/customer-processing-order.php:54 -#: templates/emails/plain/admin-new-order.php:41 -#: templates/emails/plain/customer-completed-order.php:41 -#: templates/emails/plain/customer-note.php:49 -#: templates/emails/plain/customer-processing-order.php:41 -#: templates/order/order-details.php:101 -msgid "Email:" -msgstr "이메일:" - -# @ woocommerce -#: templates/emails/admin-new-order.php:56 -#: templates/emails/customer-completed-order.php:57 -#: templates/emails/customer-note.php:61 -#: templates/emails/customer-processing-order.php:57 -#: templates/emails/plain/admin-new-order.php:44 -#: templates/emails/plain/customer-completed-order.php:44 -#: templates/emails/plain/customer-note.php:52 -#: templates/emails/plain/customer-processing-order.php:44 -msgid "Tel:" -msgstr "전화번호:" - -# @ woocommerce -#: templates/emails/customer-completed-order.php:14 -#: templates/emails/plain/customer-completed-order.php:13 -msgid "" -"Hi there. Your recent order on %s has been completed. Your order details are " -"shown below for your reference:" -msgstr "" -"안녕하세요. 고객님의 %s의 최근 주문이 완료됐습니다. 참고를 위해 고객님의 주" -"문 상세는 아래와 같습니다:" - -# @ woocommerce -#: templates/emails/customer-invoice.php:16 -#: templates/emails/plain/customer-invoice.php:14 -msgid "" -"An order has been created for you on %s. To pay for this order please use " -"the following link: %s" -msgstr "" -"%s에서 고객님을 위해 주문이 생성됐습니다. 이 주문을 지불하려면 다음의 링크를 " -"사용해주세요: %s" - -# @ woocommerce -#: templates/emails/customer-invoice.php:16 -msgid "pay" -msgstr "지불" - -# @ woocommerce -#: templates/emails/customer-new-account.php:14 -#: templates/emails/plain/customer-new-account.php:13 -msgid "" -"Thanks for creating an account on %s. Your username is %s." -msgstr "" -"%s에 계정을 생성해주셔서 감사합니다. 고객님의 사용자 ID은 %s" -"입니다." - -# @ woocommerce -#: templates/emails/customer-new-account.php:16 -#: templates/emails/plain/customer-new-account.php:15 -msgid "You can access your account area here: %s." -msgstr "다음에서 고객님의 계정 영역에 접근할 수 있습니다: %s." - -# @ woocommerce -#: templates/emails/customer-note.php:14 -#: templates/emails/plain/customer-note.php:13 -msgid "Hello, a note has just been added to your order:" -msgstr "안녕하세요. 고객님의 주문에 메모가 추가됐습니다:" - -# @ woocommerce -#: templates/emails/customer-note.php:18 -#: templates/emails/plain/customer-note.php:21 -msgid "For your reference, your order details are shown below." -msgstr "참조를 위해 고객님의 주문 상세는 아래와 같습니다." - -# @ woocommerce -#: templates/emails/customer-processing-order.php:14 -#: templates/emails/plain/customer-processing-order.php:13 -msgid "" -"Your order has been received and is now being processed. Your order details " -"are shown below for your reference:" -msgstr "" -"고객님의 주문은 접수됐으며 처리 중에 있습니다. 참고를 위해 고객님의 주문 상세" -"는 아래와 같습니다: " - -# @ woocommerce -#: templates/emails/customer-reset-password.php:14 -#: templates/emails/plain/customer-reset-password.php:13 -msgid "Someone requested that the password be reset for the following account:" -msgstr "누군가 다음의 계정에 대해 비밀번호 초기화를 요청했습니다:" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:15 -#: templates/emails/plain/customer-reset-password.php:15 -msgid "Username: %s" -msgstr "사용자 ID: %s" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:16 -#: templates/emails/plain/customer-reset-password.php:16 -msgid "If this was a mistake, just ignore this email and nothing will happen." -msgstr "" -"이것이 잘못된 것이라면 이 이메일을 무시하시면 아무일도 일어나지 않습니다." - -# @ woocommerce -#: templates/emails/customer-reset-password.php:17 -#: templates/emails/plain/customer-reset-password.php:17 -msgid "To reset your password, visit the following address:" -msgstr "비밀번호를 초기화하려면 다음의 주소를 방문해주세요:" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:20 -msgid "Click here to reset your password" -msgstr "비밀번호를 초기화하려면 여기를 클릭하세요" - -# @ woocommerce -#: templates/emails/email-addresses.php:18 -#: templates/emails/plain/email-addresses.php:12 -msgid "Billing address" -msgstr "청구 주소" - -# @ woocommerce -#: templates/emails/email-addresses.php:28 -#: templates/emails/plain/email-addresses.php:17 -msgid "Shipping address" -msgstr "배송 주소" - -# @ woocommerce -#: templates/emails/email-order-items.php:47 -msgid "Download %d:" -msgstr "내려받기 %d:" - -# @ woocommerce -#: templates/emails/email-order-items.php:49 -msgid "Download:" -msgstr "다운로드:" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:19 -#: templates/emails/plain/customer-completed-order.php:19 -#: templates/emails/plain/customer-invoice.php:20 -#: templates/emails/plain/customer-note.php:27 -#: templates/emails/plain/customer-processing-order.php:19 -msgid "Order number: %s" -msgstr "주문 번호: %s" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:20 -#: templates/emails/plain/customer-completed-order.php:20 -#: templates/emails/plain/customer-invoice.php:21 -#: templates/emails/plain/customer-note.php:28 -#: templates/emails/plain/customer-processing-order.php:20 -msgid "Order date: %s" -msgstr "주문 일자: %s" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:20 -msgid "jS F Y" -msgstr "Y F j일" - -# @ woocommerce -#: templates/emails/plain/customer-completed-order.php:38 -#: templates/emails/plain/customer-note.php:46 -#: templates/emails/plain/customer-processing-order.php:38 -msgid "Your details" -msgstr "고객님의 상세" - -# @ woocommerce -#: templates/emails/plain/email-order-items.php:28 -msgid "Quantity: %s" -msgstr "수량: %s" - -# @ woocommerce -#: templates/emails/plain/email-order-items.php:31 -msgid "Cost: %s" -msgstr "비용: %s" - -# @ woocommerce -#: templates/loop/add-to-cart.php:17 templates/loop/add-to-cart.php:41 -#: templates/loop/add-to-cart.php:50 -msgid "Read More" -msgstr "더 보기" - -# @ woocommerce -#: templates/loop/add-to-cart.php:33 -msgid "Select options" -msgstr "옵션" - -# @ woocommerce -#: templates/loop/add-to-cart.php:37 -msgid "View options" -msgstr "옵션 보기" - -# @ woocommerce -#: templates/loop/no-products-found.php:14 templates/loop-shop.php:40 -msgid "No products found which match your selection." -msgstr "고객님이 선택한 것과 일치하는 상품을 찾을 수 없습니다." - -# @ woocommerce -#: templates/loop/orderby.php:21 -msgid "Default sorting" -msgstr "기본순" - -# @ woocommerce -#: templates/loop/orderby.php:22 -msgid "Sort by popularity" -msgstr "인기순" - -# @ woocommerce -#: templates/loop/orderby.php:23 -msgid "Sort by average rating" -msgstr "평점순" - -# @ woocommerce -#: templates/loop/orderby.php:24 -msgid "Sort by newness" -msgstr "최신순" - -# @ woocommerce -#: templates/loop/orderby.php:25 -msgid "Sort by price: low to high" -msgstr "낮은가격순" - -# @ woocommerce -#: templates/loop/orderby.php:26 -msgid "Sort by price: high to low" -msgstr "높은가격순" - -# @ woocommerce -#: templates/loop/result-count.php:28 -msgid "Showing the single result" -msgstr "1개 있습니다" - -# @ woocommerce -#: templates/loop/result-count.php:30 -msgid "Showing all %d results" -msgstr "모두 %d개가 있습니다" - -# @ woocommerce -#: templates/loop/result-count.php:32 -msgctxt "%1$d = first, %2$d = last, %3$d = total" -msgid "Showing %1$d–%2$d of %3$d results" -msgstr "%3$d 개의 결과 중 %1$d–%2$d입니다" - -# @ woocommerce -#: templates/loop/sale-flash.php:16 templates/single-product/sale-flash.php:16 -msgid "Sale!" -msgstr "세일!" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:20 -#: templates/myaccount/form-lost-password.php:31 -msgid "New password" -msgstr "새 비밀번호" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:24 -#: templates/myaccount/form-lost-password.php:35 -msgid "Re-enter new password" -msgstr "새 비밀번호를 재 입력하세요" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:29 -#: templates/myaccount/form-lost-password.php:45 -msgid "Save" -msgstr "저장하기" - -# @ woocommerce -#: templates/myaccount/form-edit-address.php:43 -msgid "Save Address" -msgstr "주소 저장하기" - -# @ woocommerce -#: templates/myaccount/form-login.php:26 templates/myaccount/form-login.php:40 -#: templates/shop/form-login.php:31 -msgid "Login" -msgstr "로그인" - -# @ woocommerce -#: templates/myaccount/form-login.php:29 -#: templates/myaccount/form-lost-password.php:24 -#: templates/shop/form-login.php:20 -msgid "Username or email" -msgstr "사용자 ID 또는 이메일" - -# @ woocommerce -#: templates/myaccount/form-login.php:33 templates/myaccount/form-login.php:85 -#: templates/shop/form-login.php:24 -msgid "Password" -msgstr "비밀번호" - -# @ woocommerce -#: templates/myaccount/form-login.php:50 templates/shop/form-login.php:33 -msgid "Lost Password?" -msgstr "비밀번호를 잊으셨나요?" - -# @ woocommerce -#: templates/myaccount/form-login.php:60 -#: templates/myaccount/form-login.php:101 -msgid "Register" -msgstr "회원가입하기" - -# @ woocommerce -#: templates/myaccount/form-login.php:66 -msgid "Username" -msgstr "사용자 ID" - -# @ woocommerce -#: templates/myaccount/form-login.php:78 -#: templates/single-product-reviews.php:86 -msgid "Email" -msgstr "이메일" - -# @ woocommerce -#: templates/myaccount/form-login.php:89 -msgid "Re-enter password" -msgstr "비밀번호 재입력" - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:22 -msgid "" -"Lost your password? Please enter your username or email address. You will " -"receive a link to create a new password via email." -msgstr "" -"비밀번호를 분실하셨나요? 사용자 ID과 이메일주소를 입력해주세요. 새로운 비밀번" -"호를 만들기 위해 이메일을 통한 링크를 받게됩니다." - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:28 -msgid "Enter a new password below." -msgstr "새 비밀번호를 아래에 입력하세요." - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:45 -msgid "Reset Password" -msgstr "비밀번호 초기화하기" - -# @ woocommerce -#: templates/myaccount/my-account.php:19 -msgid "" -"Hello, %s. From your account dashboard you can view your " -"recent orders, manage your shipping and billing addresses and change your password." -msgstr "" -"안녕하세요. %s님. 고객님의 계정 대시보드에서 최근의 주문을 " -"볼 수 있고, 배송 및 청구 주소를 관리할 수 있으며, 비밀번호를 " -"변경할 수 있습니다." - -# @ woocommerce -#: templates/myaccount/my-address.php:17 -msgid "My Addresses" -msgstr "내 주소" - -# @ woocommerce -#: templates/myaccount/my-address.php:23 -msgid "My Address" -msgstr "내 주소" - -# @ woocommerce -#: templates/myaccount/my-address.php:35 -msgid "The following addresses will be used on the checkout page by default." -msgstr "다음 주소는 결제 페이지에서 기본으로 사용될 것입니다." - -# @ default -# @ woocommerce -#: templates/myaccount/my-address.php:45 woocommerce.php:951 -#: woocommerce.php:987 woocommerce.php:1024 woocommerce.php:1062 -#: woocommerce.php:1100 -msgid "Edit" -msgstr "편집" - -# @ woocommerce -#: templates/myaccount/my-address.php:64 -msgid "You have not set up this type of address yet." -msgstr "고객님은 아직 이러한 형태의 주소를 설정하지 않았습니다." - -# @ woocommerce -#: templates/myaccount/my-downloads.php:18 -msgid "Available downloads" -msgstr "가능한 다운로드" - -# @ woocommerce -#: templates/myaccount/my-downloads.php:27 -msgid "%s download remaining" -msgid_plural "%s downloads remaining" -msgstr[0] "내려받기 잔량 %s " -msgstr[1] "내려받기 잔량 %s " - -# @ woocommerce -#: templates/myaccount/my-orders.php:26 -msgid "Recent Orders" -msgstr "최근 주문" - -# @ woocommerce -#: templates/myaccount/my-orders.php:32 woocommerce.php:1059 -msgid "Order" -msgstr "주문" - -# @ woocommerce -#: templates/myaccount/my-orders.php:33 -msgid "Date" -msgstr "날짜" - -# @ woocommerce -#: templates/myaccount/my-orders.php:34 -msgid "Status" -msgstr "상태" - -# @ woocommerce -#: templates/myaccount/my-orders.php:62 -msgid "%s for %s item" -msgid_plural "%s for %s items" -msgstr[0] "%s %s개 아이템" -msgstr[1] "%s %s개 아이템" - -# @ woocommerce -#: templates/myaccount/my-orders.php:77 -msgid "Cancel" -msgstr "취소" - -# @ default -# @ woocommerce -#: templates/myaccount/my-orders.php:82 -msgid "View" -msgstr "보기" - -# @ woocommerce -#: templates/order/form-tracking.php:17 -msgid "" -"To track your order please enter your Order ID in the box below and press " -"return. This was given to you on your receipt and in the confirmation email " -"you should have received." -msgstr "" -"주문을 추적하려면 아래의 박스에 주문 아이디를 입력하고 엔터키를 눌러주세요. " -"이것은 영수증과 이미 받은 확인 이메일에 있습니다." - -# @ woocommerce -#: templates/order/form-tracking.php:19 -msgid "Order ID" -msgstr "주문 아이디" - -# @ woocommerce -#: templates/order/form-tracking.php:19 -msgid "Found in your order confirmation email." -msgstr "주문 확인 이메일에 있습니다." - -# @ woocommerce -#: templates/order/form-tracking.php:20 -msgid "Billing Email" -msgstr "청구 이메일" - -# @ woocommerce -#: templates/order/form-tracking.php:20 -msgid "Email you used during checkout." -msgstr "결제 중에 사용한 이메일." - -# @ woocommerce -#: templates/order/form-tracking.php:23 -msgid "Track" -msgstr "추적하기" - -# @ woocommerce -#: templates/order/order-details.php:16 -msgid "Order Details" -msgstr "주문 상세" - -# @ woocommerce -#: templates/order/order-details.php:64 -msgid "Download file%s" -msgstr "%s 파일 내려받기" - -# @ woocommerce -#: templates/order/order-details.php:90 -msgid "Order Again" -msgstr "다시 주문하기" - -# @ woocommerce -#: templates/order/order-details.php:102 -msgid "Telephone:" -msgstr "전화번호:" - -# @ woocommerce -#: templates/order/tracking.php:18 -msgid "Order %s which was made %s has the status “%s”" -msgstr "주문 %s는 %s에 이루어졌으며 “%s” 상태입니다." - -# @ woocommerce -#: templates/order/tracking.php:18 -msgid "ago" -msgstr "전에" - -# @ woocommerce -#: templates/order/tracking.php:20 -msgid "and was completed" -msgstr "그리고 완료됐습니다." - -# @ woocommerce -#: templates/order/tracking.php:20 -msgid " ago" -msgstr " 전에" - -# @ woocommerce -#: templates/shop/breadcrumb.php:63 -msgid "Products tagged “" -msgstr "상품 태그 “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:91 templates/shop/breadcrumb.php:188 -msgid "Search results for “" -msgstr "검색 결과 “ " - -# @ woocommerce -#: templates/shop/breadcrumb.php:146 -msgid "Error 404" -msgstr "에러 404" - -# @ woocommerce -#: templates/shop/breadcrumb.php:192 -msgid "Posts tagged “" -msgstr "글 태그 “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:197 -msgid "Author:" -msgstr "작성자:" - -# @ woocommerce -#: templates/shop/breadcrumb.php:202 -msgid "Page" -msgstr "페이지" - -# @ woocommerce -#: templates/single-product/add-to-cart/variable.php:24 -msgid "Choose an option" -msgstr "옵션을 선택하세요" - -# @ woocommerce -#: templates/single-product/add-to-cart/variable.php:69 -msgid "Clear selection" -msgstr "선택 제거" - -# @ woocommerce -#: templates/single-product/meta.php:24 -msgid "Category:" -msgid_plural "Categories:" -msgstr[0] "카테고리:" -msgstr[1] "카테고리:" - -# @ woocommerce -#: templates/single-product/meta.php:29 -msgid "Tag:" -msgid_plural "Tags:" -msgstr[0] "태그:" -msgstr[1] "태그:" - -# @ woocommerce -#: templates/single-product/product-attributes.php:28 -msgid "Weight" -msgstr "무게" - -# @ woocommerce -#: templates/single-product/product-attributes.php:37 -msgid "Dimensions" -msgstr "규격" - -# @ woocommerce -#: templates/single-product/related.php:36 -msgid "Related Products" -msgstr "관련 상품" - -# @ woocommerce -#: templates/single-product/review.php:26 -msgid "Rated %d out of 5" -msgstr "5 중에 %d로 평가됨" - -# @ woocommerce -#: templates/single-product/review.php:33 -msgid "Your comment is awaiting approval" -msgstr "고객님의 댓글은 승인을 기다리고 있습니다" - -# @ woocommerce -#: templates/single-product/review.php:40 -msgid "verified owner" -msgstr "인증된 소유자" - -# @ woocommerce -#: templates/single-product/tabs/description.php:14 -msgid "Product Description" -msgstr "상품 설명" - -# @ woocommerce -#: templates/single-product/up-sells.php:39 -msgid "You may also like…" -msgstr "관심 상품…" - -# @ woocommerce -#: templates/single-product-reviews.php:30 -msgid "%s review for %s" -msgid_plural "%s reviews for %s" -msgstr[0] "%s개의 %s에 대한 리뷰" -msgstr[1] "%s개의 %s에 대한 리뷰" - -# @ woocommerce -#: templates/single-product-reviews.php:36 -#: templates/single-product-reviews.php:42 -msgid "Reviews" -msgstr "리뷰" - -# @ woocommerce -#: templates/single-product-reviews.php:58 -msgid " Previous" -msgstr " 이전" - -# @ woocommerce -#: templates/single-product-reviews.php:59 -msgid "Next " -msgstr "다음 " - -# @ woocommerce -#: templates/single-product-reviews.php:63 -msgid "Add Your Review" -msgstr "리뷰를 추가하세요" - -# @ woocommerce -#: templates/single-product-reviews.php:63 -msgid "Add Review" -msgstr "리뷰 추가하기" - -# @ woocommerce -#: templates/single-product-reviews.php:65 -msgid "Add a review" -msgstr "리뷰 추가하기" - -# @ woocommerce -#: templates/single-product-reviews.php:69 -msgid "Be the first to review" -msgstr "리뷰를 첫번째로 달아주세요" - -# @ woocommerce -#: templates/single-product-reviews.php:71 -msgid "" -"There are no reviews yet, would you like to submit yours?" -msgstr "" -"아직 리뷰가 없습니다. 고객님이 제출 해주시겠습니까?" - -# @ woocommerce -#: templates/single-product-reviews.php:89 -msgid "Submit Review" -msgstr "리뷰 제출" - -# @ woocommerce -#: templates/single-product-reviews.php:96 -msgid "Rating" -msgstr "평가" - -# @ woocommerce -#: templates/single-product-reviews.php:97 -msgid "Rate…" -msgstr "평가…" - -# @ woocommerce -#: templates/single-product-reviews.php:98 -msgid "Perfect" -msgstr "완벽" - -# @ woocommerce -#: templates/single-product-reviews.php:99 -msgid "Good" -msgstr "좋음" - -# @ woocommerce -#: templates/single-product-reviews.php:100 -msgid "Average" -msgstr "평균" - -# @ woocommerce -#: templates/single-product-reviews.php:101 -msgid "Not that bad" -msgstr "나쁘지 않음" - -# @ woocommerce -#: templates/single-product-reviews.php:102 -msgid "Very Poor" -msgstr "아주 나쁨" - -# @ woocommerce -#: templates/single-product-reviews.php:107 -msgid "Your Review" -msgstr "고객님의 리뷰" - -# @ woocommerce -#: woocommerce-ajax.php:119 -msgid "Sorry, your session has expired." -msgstr "죄송합니다. 고객님의 세션이 만료됐습니다." - -# @ woocommerce -#: woocommerce-ajax.php:119 -msgid "Return to homepage →" -msgstr "홈페이지로 돌아가기 →" - -# @ woocommerce -#: woocommerce-ajax.php:256 woocommerce-ajax.php:290 woocommerce-ajax.php:313 -msgid "You do not have sufficient permissions to access this page." -msgstr "이 페이지에 접근할 충분한 권한이 없습니다." - -# @ woocommerce -#: woocommerce-ajax.php:258 woocommerce-ajax.php:291 woocommerce-ajax.php:314 -msgid "You have taken too long. Please go back and retry." -msgstr "시간이 너무 오래 걸렸습니다. 돌아가서 다시 해주세요." - -# @ woocommerce -#: woocommerce-ajax.php:550 -msgid "Same as parent" -msgstr "부모와 같음" - -# @ woocommerce -#: woocommerce-ajax.php:551 -msgid "Standard" -msgstr "표준" - -# @ woocommerce -#: woocommerce-ajax.php:1098 -msgid "" -"No products had their stock reduced - they may not have stock management " -"enabled." -msgstr "" -"상품 재고 감소가 이루어지지 않았습니다 - 재고 관리가 활성화되지 않은 것 같습" -"니다." - -# @ woocommerce -#: woocommerce-ajax.php:1142 woocommerce-ajax.php:1143 -msgid "Item #%s stock increased from %s to %s." -msgstr "아이템 #%s 재고 증가됨. %s에서 %s로." - -# @ woocommerce -#: woocommerce-ajax.php:1150 -msgid "" -"No products had their stock increased - they may not have stock management " -"enabled." -msgstr "" -"상품 재고 증가가 이루어지지 않았습니다 - 재고 관리가 활성화되지 않은 것 같습" -"니다." - -# @ woocommerce -#: woocommerce-ajax.php:1171 -msgid "Value" -msgstr "값" - -# @ woocommerce -#: woocommerce-ajax.php:1485 -msgid "Delete note" -msgstr "메모 삭제" - -# @ woocommerce -#: woocommerce-core-functions.php:275 -msgid "%s – %s%s" -msgstr "%s – %s%s" - -# @ woocommerce -#: woocommerce-core-functions.php:698 -msgid "Australian Dollars" -msgstr "Australian Dollars" - -# @ woocommerce -#: woocommerce-core-functions.php:699 -msgid "Brazilian Real" -msgstr "Brazilian Real" - -# @ woocommerce -#: woocommerce-core-functions.php:700 -msgid "Canadian Dollars" -msgstr "Canadian Dollars" - -# @ woocommerce -#: woocommerce-core-functions.php:701 -msgid "Chinese Yuan" -msgstr "Chinese Yuan" - -# @ woocommerce -#: woocommerce-core-functions.php:702 -msgid "Czech Koruna" -msgstr "Czech Koruna" - -# @ woocommerce -#: woocommerce-core-functions.php:703 -msgid "Danish Krone" -msgstr "덴마크 Krone" - -# @ woocommerce -#: woocommerce-core-functions.php:704 -msgid "Euros" -msgstr "Euros" - -# @ woocommerce -#: woocommerce-core-functions.php:705 -msgid "Hong Kong Dollar" -msgstr "Hong Kong Dollar" - -# @ woocommerce -#: woocommerce-core-functions.php:706 -msgid "Hungarian Forint" -msgstr "헝가리 Forint" - -# @ woocommerce -#: woocommerce-core-functions.php:707 -msgid "Indonesia Rupiah" -msgstr "Indonesia Rupiah" - -# @ woocommerce -#: woocommerce-core-functions.php:708 -msgid "Indian Rupee" -msgstr "인도 루페" - -# @ woocommerce -#: woocommerce-core-functions.php:709 -msgid "Israeli Shekel" -msgstr "이스라엘 Shekel" - -# @ woocommerce -#: woocommerce-core-functions.php:710 -msgid "Japanese Yen" -msgstr "Japanese Yen" - -# @ woocommerce -#: woocommerce-core-functions.php:711 -msgid "South Korean Won" -msgstr "한국 원화" - -# @ woocommerce -#: woocommerce-core-functions.php:712 -msgid "Malaysian Ringgits" -msgstr "Malaysian Ringgits" - -# @ woocommerce -#: woocommerce-core-functions.php:713 -msgid "Mexican Peso" -msgstr "Mexican Peso" - -# @ woocommerce -#: woocommerce-core-functions.php:714 -msgid "Norwegian Krone" -msgstr "노르웨이 Krone" - -# @ woocommerce -#: woocommerce-core-functions.php:715 -msgid "New Zealand Dollar" -msgstr "New Zealand Dollar" - -# @ woocommerce -#: woocommerce-core-functions.php:716 -msgid "Philippine Pesos" -msgstr "필리핀 Pesos" - -# @ woocommerce -#: woocommerce-core-functions.php:717 -msgid "Polish Zloty" -msgstr "폴란드 Zloty" - -# @ woocommerce -#: woocommerce-core-functions.php:718 -msgid "Pounds Sterling" -msgstr "Pounds Sterling" - -# @ woocommerce -#: woocommerce-core-functions.php:719 -msgid "Romanian Leu" -msgstr "Romanian Leu" - -# @ woocommerce -#: woocommerce-core-functions.php:720 -msgid "Singapore Dollar" -msgstr "Singapore Dollar" - -# @ woocommerce -#: woocommerce-core-functions.php:721 -msgid "South African rand" -msgstr "South African rand" - -# @ woocommerce -#: woocommerce-core-functions.php:722 -msgid "Swedish Krona" -msgstr "스웨덴 Krona" - -# @ woocommerce -#: woocommerce-core-functions.php:723 -msgid "Swiss Franc" -msgstr "스위스 Franc" - -# @ woocommerce -#: woocommerce-core-functions.php:724 -msgid "Taiwan New Dollars" -msgstr "대만 New Dollars" - -# @ woocommerce -#: woocommerce-core-functions.php:725 -msgid "Thai Baht" -msgstr "타이 Baht" - -# @ woocommerce -#: woocommerce-core-functions.php:726 -msgid "Turkish Lira" -msgstr "Turkish Lira" - -# @ woocommerce -#: woocommerce-core-functions.php:727 -msgid "US Dollars" -msgstr "US Dollars" - -# @ woocommerce -#: woocommerce-core-functions.php:1215 woocommerce-core-functions.php:1241 -msgid "Download Permissions Granted" -msgstr "다운로드 권한 부여됨" - -# @ woocommerce -#: woocommerce-core-functions.php:1365 -msgctxt "slug" -msgid "uncategorized" -msgstr "미분류" - -# @ woocommerce -#: woocommerce-core-functions.php:1554 -msgid "Select a category" -msgstr "카테고리를 선택하세요" - -# @ woocommerce -#: woocommerce-core-functions.php:1558 -msgid "Uncategorized" -msgstr "미분류" - -# @ woocommerce -#: woocommerce-core-functions.php:1930 -msgid "Customer" -msgstr "고객" - -# @ woocommerce -#: woocommerce-core-functions.php:1937 -msgid "Shop Manager" -msgstr "상점 매니저" - -# @ woocommerce -#: woocommerce-core-functions.php:2494 -msgid "Unpaid order cancelled - time limit reached." -msgstr "지불되지 않은 주문이 취소됐습니다 - 시간 제한에 이르렀습니다." - -# @ woocommerce -#: woocommerce-functions.php:226 woocommerce-functions.php:271 -msgid "Cart updated." -msgstr "장바구니 업데이트됨." - -# @ woocommerce -#: woocommerce-functions.php:257 -msgid "You can only have 1 %s in your cart." -msgstr "장바구니에 1 %s만 가질 수 있습니다." - -# @ woocommerce -#: woocommerce-functions.php:315 woocommerce-functions.php:373 -msgid "Please choose product options…" -msgstr "상품 옵션을 선택해주세요…" - -# @ woocommerce -#: woocommerce-functions.php:406 -msgid "" -"Please choose the quantity of items you wish to add to your cart…" -msgstr "" -"고객님의 장바구니에 추가하고자 하는 아이템의 수량을 선택해주세요…" - -# @ woocommerce -#: woocommerce-functions.php:413 -msgid "Please choose a product to add to your cart…" -msgstr "고객님의 장바구니에 추가하려는 상품을 선택해주세요…" - -# @ woocommerce -#: woocommerce-functions.php:482 -msgid "Added "%s" to your cart." -msgstr "장바구니에 "%s" 가 추가됐습니다. " - -# @ woocommerce -#: woocommerce-functions.php:482 -msgid "" and "" -msgstr "" 그리고 "" - -# @ woocommerce -#: woocommerce-functions.php:485 -msgid ""%s" was successfully added to your cart." -msgstr ""%s"(이)가 고객님의 장바구니에 성공적으로 추가됐습니다." - -# @ woocommerce -#: woocommerce-functions.php:493 -msgid "Continue Shopping →" -msgstr "쇼핑 계속하기 →" - -# @ woocommerce -#: woocommerce-functions.php:660 -msgid "Username is required." -msgstr "사용자 ID은 필수입니다." - -# @ woocommerce -#: woocommerce-functions.php:661 woocommerce-functions.php:756 -msgid "Password is required." -msgstr "비밀번호는 필수입니다." - -# @ woocommerce -#: woocommerce-functions.php:730 -msgid "Please enter a username." -msgstr "사용자 ID을 입력하세요." - -# @ woocommerce -#: woocommerce-functions.php:732 -msgid "" -"This username is invalid because it uses illegal characters. Please enter a " -"valid username." -msgstr "" -"이 사용자 ID은 정당하지 않는 글자를 사용하고 있어서 유효하지 않습니다. 유효" -"한 사용자 ID을 입력해주세요." - -# @ woocommerce -#: woocommerce-functions.php:735 -msgid "This username is already registered, please choose another one." -msgstr "이 사용자 ID은 이미 회원가입 돼있습니다. 다른 것을 선택해주세요." - -# @ woocommerce -#: woocommerce-functions.php:747 -msgid "Please type your e-mail address." -msgstr "고객님의 이메일 주소를 입력해주세요." - -# @ woocommerce -#: woocommerce-functions.php:749 -msgid "The email address isn’t correct." -msgstr "이메일 주소가 올바르지 않습니다." - -# @ woocommerce -#: woocommerce-functions.php:752 -msgid "This email is already registered, please choose another one." -msgstr "이 이메일은 이미 회원가입 돼있습니다. 다른 것을 선택해주세요." - -# @ woocommerce -#: woocommerce-functions.php:757 -msgid "Re-enter your password." -msgstr "비밀번호를 재입력해주세요." - -# @ woocommerce -#: woocommerce-functions.php:762 -msgid "Anti-spam field was filled in." -msgstr "스팸방지 란이 채워졌습니다." - -# @ woocommerce -#: woocommerce-functions.php:870 -msgid "The cart has been filled with the items from your previous order." -msgstr "장바구니가 고객님의 이전 주문 아이템으로 채워졌습니다." - -# @ woocommerce -#: woocommerce-functions.php:896 -msgid "Order cancelled by customer." -msgstr "주문이 고객님에 의해 취소됐습니다." - -# @ woocommerce -#: woocommerce-functions.php:899 -msgid "Your order was cancelled." -msgstr "고객님의 주문이 취소됐습니다." - -# @ woocommerce -#: woocommerce-functions.php:905 -msgid "" -"Your order is no longer pending and could not be cancelled. Please contact " -"us if you need assistance." -msgstr "" -"고객님의 주문이 더 이상 대기상태가 아니며 취소될 수 없습니다. 도움이 필요하시" -"면 저희에게 연락해주세요." - -# @ woocommerce -#: woocommerce-functions.php:940 -msgid "Invalid email address." -msgstr "유효하지 않은 이메일 주소." - -# @ woocommerce -#: woocommerce-functions.php:940 woocommerce-functions.php:963 -#: woocommerce-functions.php:983 woocommerce-functions.php:989 -#: woocommerce-functions.php:993 woocommerce-functions.php:996 -#: woocommerce-functions.php:1026 woocommerce-functions.php:1158 -msgid "Go to homepage →" -msgstr "홈페이지로 가기 →" - -# @ woocommerce -#: woocommerce-functions.php:963 -msgid "Invalid download." -msgstr "유효하지 않은 다운로드" - -# @ woocommerce -#: woocommerce-functions.php:975 -msgid "You must be logged in to download files." -msgstr "파일을 다운로드 하려면 로그인 돼있어야 합니다." - -# @ woocommerce -#: woocommerce-functions.php:975 -msgid "Login →" -msgstr "로그인 →" - -# @ woocommerce -#: woocommerce-functions.php:978 -msgid "This is not your download link." -msgstr "이것은 고객님의 다운로드 링크가 아닙니다." - -# @ woocommerce -#: woocommerce-functions.php:983 -msgid "Product no longer exists." -msgstr "상품이 더 이상 존재하지 않습니다. " - -# @ woocommerce -#: woocommerce-functions.php:993 -msgid "Sorry, you have reached your download limit for this file" -msgstr "죄송합니다. 이 파일에 대해서 다운로드 한도를 초과했습니다" - -# @ woocommerce -#: woocommerce-functions.php:996 -msgid "Sorry, this download has expired" -msgstr "죄송합니다. 이 다운로드는 만료됐습니다" - -# @ woocommerce -#: woocommerce-functions.php:1026 -msgid "No file defined" -msgstr "파일이 정의되지 않았습니다" - -# @ woocommerce -#: woocommerce-functions.php:1158 -msgid "File not found" -msgstr "파일을 찾을 수 없습니다" - -# @ woocommerce -#: woocommerce-functions.php:1274 -msgid "New products" -msgstr "새 상품" - -# @ woocommerce -#: woocommerce-functions.php:1282 -msgid "New products added to %s" -msgstr "새 상품이 %s에 추가됐습니다" - -# @ woocommerce -#: woocommerce-functions.php:1290 -msgid "New products tagged %s" -msgstr "새 상품 태그 %s" - -# @ woocommerce -#: woocommerce-functions.php:1328 -msgid "You have taken too long. Please go back and refresh the page." -msgstr "시간이 너무 오래 걸렸습니다. 돌아가서 페이지를 새로고침해주세요." - -# @ woocommerce -#: woocommerce-functions.php:1331 -msgid "Please rate the product." -msgstr "상품을 평가해주세요." - -# @ woocommerce -#: woocommerce-functions.php:1639 -msgid "Password changed successfully." -msgstr "비밀번호가 성공적으로 변경됐습니다." - -# @ woocommerce -#: woocommerce-functions.php:1715 -msgid "Address changed successfully." -msgstr "주소가 성공적으로 변경됐습니다." - -# @ woocommerce -#: woocommerce-template.php:200 -msgid "" -"This is a demo store for testing purposes — no orders shall be " -"fulfilled." -msgstr "" -"이것은 테스트를 위한 데모 상점입니다. — 주문은 가능하지 않습니다." - -# @ woocommerce -#: woocommerce-template.php:219 -msgid "Search Results: “%s”" -msgstr "검색 결과: “%s”" - -# @ woocommerce -#: woocommerce-template.php:222 -msgid " – Page %s" -msgstr " – 페이지 %s" - -# @ woocommerce -#: woocommerce-template.php:767 -msgid "Reviews (%d)" -msgstr "리뷰 (%d)" - -# @ woocommerce -#: woocommerce-template.php:993 -msgctxt "breadcrumb" -msgid "Home" -msgstr "홈" - -# @ woocommerce -#: woocommerce-template.php:1292 woocommerce.php:1209 -msgid "required" -msgstr "필수" - -# @ woocommerce -#: woocommerce-template.php:1341 -msgid "Update country" -msgstr "국가 업데이트" - -# @ woocommerce -#: woocommerce-template.php:1496 -msgid "Search for:" -msgstr "검색:" - -# @ woocommerce -#: woocommerce-template.php:1497 -msgid "Search for products" -msgstr "상품 검색" - -# @ woocommerce -#: woocommerce-template.php:1498 woocommerce.php:947 -msgid "Search" -msgstr "검색" - -#: woocommerce.php:171 -msgid "Docs" -msgstr "문서" - -#: woocommerce.php:172 -msgid "Premium Support" -msgstr "프리미엄 지원" - -# @ woocommerce -#: woocommerce.php:786 -msgctxt "slug" -msgid "product-category" -msgstr "상품-카테고리" - -# @ woocommerce -#: woocommerce.php:787 -msgctxt "slug" -msgid "product-tag" -msgstr "상품-태그" - -# @ woocommerce -#: woocommerce.php:789 -msgctxt "slug" -msgid "product" -msgstr "상품" - -# @ woocommerce -#: woocommerce.php:824 -msgid "Product Category" -msgstr "상품 카테고리" - -# @ woocommerce -#: woocommerce.php:825 -msgctxt "Admin menu name" -msgid "Categories" -msgstr "카테고리" - -# @ woocommerce -#: woocommerce.php:826 -msgid "Search Product Categories" -msgstr "상품 카테고리 검색" - -# @ woocommerce -#: woocommerce.php:827 -msgid "All Product Categories" -msgstr "모든 상품 카테고리" - -# @ woocommerce -#: woocommerce.php:828 -msgid "Parent Product Category" -msgstr "상위 상품 카테고리" - -# @ woocommerce -#: woocommerce.php:829 -msgid "Parent Product Category:" -msgstr "상위 상품 카테고리:" - -# @ woocommerce -#: woocommerce.php:830 -msgid "Edit Product Category" -msgstr "상품 카테고리 편집" - -# @ woocommerce -#: woocommerce.php:831 -msgid "Update Product Category" -msgstr "상품 카테고리 업데이트" - -# @ woocommerce -#: woocommerce.php:832 -msgid "Add New Product Category" -msgstr "새 상품 카테고리 추가하기" - -# @ woocommerce -#: woocommerce.php:833 -msgid "New Product Category Name" -msgstr "새 상품 카테고리 이름" - -# @ woocommerce -#: woocommerce.php:860 -msgid "Product Tag" -msgstr "상품 태그" - -# @ woocommerce -#: woocommerce.php:861 -msgctxt "Admin menu name" -msgid "Tags" -msgstr "태그" - -# @ woocommerce -#: woocommerce.php:862 -msgid "Search Product Tags" -msgstr "상품 태그 검색" - -# @ woocommerce -#: woocommerce.php:863 -msgid "All Product Tags" -msgstr "모든 상품 태그" - -# @ woocommerce -#: woocommerce.php:864 -msgid "Parent Product Tag" -msgstr "상위 상품 태그" - -# @ woocommerce -#: woocommerce.php:865 -msgid "Parent Product Tag:" -msgstr "상위 상품 태그:" - -# @ woocommerce -#: woocommerce.php:866 -msgid "Edit Product Tag" -msgstr "상품 태그 편집" - -# @ woocommerce -#: woocommerce.php:867 -msgid "Update Product Tag" -msgstr "상품 태그 업데이트" - -# @ woocommerce -#: woocommerce.php:868 -msgid "Add New Product Tag" -msgstr "새 상품 태그 추가하기" - -# @ woocommerce -#: woocommerce.php:869 -msgid "New Product Tag Name" -msgstr "새 상품 태그 이름 " - -# @ woocommerce -#: woocommerce.php:888 woocommerce.php:890 -msgid "Shipping Classes" -msgstr "배송 클래스" - -# @ woocommerce -#: woocommerce.php:892 -msgctxt "Admin menu name" -msgid "Shipping Classes" -msgstr "배송 클래스" - -# @ woocommerce -#: woocommerce.php:893 -msgid "Search Shipping Classes" -msgstr "배송 클래스 검색" - -# @ woocommerce -#: woocommerce.php:894 -msgid "All Shipping Classes" -msgstr "모든 배송 클래스" - -# @ woocommerce -#: woocommerce.php:895 -msgid "Parent Shipping Class" -msgstr "상위 배송 클래스" - -# @ woocommerce -#: woocommerce.php:896 -msgid "Parent Shipping Class:" -msgstr "상위 배송 클래스:" - -# @ woocommerce -#: woocommerce.php:897 -msgid "Edit Shipping Class" -msgstr "배송 클래스 편집" - -# @ woocommerce -#: woocommerce.php:898 -msgid "Update Shipping Class" -msgstr "배송 클래스 업데이트" - -# @ woocommerce -#: woocommerce.php:899 -msgid "Add New Shipping Class" -msgstr "새 배송 클래스 추가하기" - -# @ woocommerce -#: woocommerce.php:900 -msgid "New Shipping Class Name" -msgstr "새 배송 클래스 이름" - -# @ woocommerce -#: woocommerce.php:948 -msgid "All" -msgstr "모두" - -# @ woocommerce -#: woocommerce.php:949 woocommerce.php:950 -msgid "Parent" -msgstr "상위" - -# @ woocommerce -#: woocommerce.php:952 -msgid "Update" -msgstr "업데이트" - -# @ woocommerce -#: woocommerce.php:953 -msgid "Add New" -msgstr "새로 추가" - -# @ woocommerce -#: woocommerce.php:954 -msgid "New" -msgstr "새로 추가" - -# @ woocommerce -#: woocommerce.php:984 -msgctxt "Admin menu name" -msgid "Products" -msgstr "상품" - -# @ woocommerce -#: woocommerce.php:985 -msgid "Add Product" -msgstr "상품 추가하기" - -# @ woocommerce -#: woocommerce.php:986 -msgid "Add New Product" -msgstr "새 상품 추가하기" - -# @ woocommerce -#: woocommerce.php:988 -msgid "Edit Product" -msgstr "상품 편집" - -# @ woocommerce -#: woocommerce.php:989 -msgid "New Product" -msgstr "새 상품" - -# @ woocommerce -#: woocommerce.php:990 woocommerce.php:991 -msgid "View Product" -msgstr "상품 보기" - -# @ woocommerce -#: woocommerce.php:992 -msgid "Search Products" -msgstr "상품 검색" - -# @ woocommerce -#: woocommerce.php:993 -msgid "No Products found" -msgstr "상품을 찾을 수 없습니다" - -# @ woocommerce -#: woocommerce.php:994 -msgid "No Products found in trash" -msgstr "휴지통에 상품을 찾을 수 없습니다" - -# @ woocommerce -#: woocommerce.php:995 -msgid "Parent Product" -msgstr "상위 상품" - -# @ woocommerce -#: woocommerce.php:997 -msgid "This is where you can add new products to your store." -msgstr "상점에 새 상품을 추가할 수 있는 곳입니다." - -# @ woocommerce -#: woocommerce.php:1020 -msgid "Variations" -msgstr "옵션" - -# @ woocommerce -#: woocommerce.php:1021 -msgid "Variation" -msgstr "옵션" - -# @ woocommerce -#: woocommerce.php:1022 -msgid "Add Variation" -msgstr "옵션 추가하기" - -# @ woocommerce -#: woocommerce.php:1023 -msgid "Add New Variation" -msgstr "새 옵션 추가하기" - -# @ woocommerce -#: woocommerce.php:1025 -msgid "Edit Variation" -msgstr "옵션 편집" - -# @ woocommerce -#: woocommerce.php:1026 -msgid "New Variation" -msgstr "새 옵션" - -# @ woocommerce -#: woocommerce.php:1027 woocommerce.php:1028 -msgid "View Variation" -msgstr "옵션 보기" - -# @ woocommerce -#: woocommerce.php:1029 -msgid "Search Variations" -msgstr "옵션 검색" - -# @ woocommerce -#: woocommerce.php:1030 -msgid "No Variations found" -msgstr "옵션을 찾을 수 없습니다" - -# @ woocommerce -#: woocommerce.php:1031 -msgid "No Variations found in trash" -msgstr "휴지통에 옵션을 찾을 수 없습니다" - -# @ woocommerce -#: woocommerce.php:1032 -msgid "Parent Variation" -msgstr "상위 옵션" - -# @ woocommerce -#: woocommerce.php:1049 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "주문" - -# @ woocommerce -#: woocommerce.php:1058 -msgid "Orders" -msgstr "주문" - -# @ woocommerce -#: woocommerce.php:1060 -msgid "Add Order" -msgstr "주문 추가하기" - -# @ woocommerce -#: woocommerce.php:1061 -msgid "Add New Order" -msgstr "새 주문 추가하기" - -# @ woocommerce -#: woocommerce.php:1063 -msgid "Edit Order" -msgstr "주문 편집" - -# @ woocommerce -#: woocommerce.php:1064 -msgid "New Order" -msgstr "새 주문" - -# @ woocommerce -#: woocommerce.php:1067 -msgid "Search Orders" -msgstr "주문 검색" - -# @ woocommerce -#: woocommerce.php:1068 -msgid "No Orders found" -msgstr "주문을 찾을 수 없습니다" - -# @ woocommerce -#: woocommerce.php:1069 -msgid "No Orders found in trash" -msgstr "휴지통에 주문을 찾을 수 없습니다" - -# @ woocommerce -#: woocommerce.php:1070 -msgid "Parent Orders" -msgstr "상위 주문" - -# @ woocommerce -#: woocommerce.php:1073 -msgid "This is where store orders are stored." -msgstr "이곳은 상점 주문이 저장되는 곳입니다." - -# @ woocommerce -#: woocommerce.php:1095 -msgid "Coupons" -msgstr "쿠폰" - -# @ woocommerce -#: woocommerce.php:1097 -msgctxt "Admin menu name" -msgid "Coupons" -msgstr "쿠폰" - -# @ woocommerce -#: woocommerce.php:1098 -msgid "Add Coupon" -msgstr "쿠폰 추가하기" - -# @ woocommerce -#: woocommerce.php:1099 -msgid "Add New Coupon" -msgstr "새 쿠폰 추가하기" - -# @ woocommerce -#: woocommerce.php:1101 -msgid "Edit Coupon" -msgstr "쿠폰 편집" - -# @ woocommerce -#: woocommerce.php:1102 -msgid "New Coupon" -msgstr "새 쿠폰" - -# @ woocommerce -#: woocommerce.php:1103 -msgid "View Coupons" -msgstr "쿠폰 보기" - -# @ woocommerce -#: woocommerce.php:1104 -msgid "View Coupon" -msgstr "쿠폰 보기" - -# @ woocommerce -#: woocommerce.php:1105 -msgid "Search Coupons" -msgstr "쿠폰 검색" - -# @ woocommerce -#: woocommerce.php:1106 -msgid "No Coupons found" -msgstr "쿠폰을 찾을 수 없습니다" - -# @ woocommerce -#: woocommerce.php:1107 -msgid "No Coupons found in trash" -msgstr "휴지통에 쿠폰을 찾을 수 없습니다" - -# @ woocommerce -#: woocommerce.php:1108 -msgid "Parent Coupon" -msgstr "상위 쿠폰" - -# @ woocommerce -#: woocommerce.php:1110 -msgid "" -"This is where you can add new coupons that customers can use in your store." -msgstr "" -"이곳은 고객이 상점에서 사용할 수 있는 새로운 쿠폰을 추가할 수 있는 곳입니다." - -# @ woocommerce -#: woocommerce.php:1206 -msgid "Select an option…" -msgstr "옵션을 선택하세요…" - -# @ woocommerce -#: woocommerce.php:1207 -msgid "Please select a rating" -msgstr "평가를 선택해주세요" - -# @ woocommerce -#: woocommerce.php:1208 -msgid "" -"Sorry, no products matched your selection. Please choose a different " -"combination." -msgstr "" -"죄송합니다. 고객님의 선택에 일치하는 상품이 없습니다. 다른 조합을 선택해주세" -"요." - -# @ woocommerce -#: woocommerce.php:1691 -msgid "Cart % Discount" -msgstr "장바구니 % 할인" - -# @ woocommerce -#: woocommerce.php:1692 -msgid "Product Discount" -msgstr "상품 할인" - -# @ woocommerce -#: woocommerce.php:1693 -msgid "Product % Discount" -msgstr "상품 % 할인" - -# @ woocommerce -#: woocommerce.php:1758 -msgid "Action failed. Please refresh the page and retry." -msgstr "작업이 실패했습니다. 페이지를 새로고침하고 다시 해보세요." - -#~ msgid "Samoa" -#~ msgstr "Samoa" diff --git a/i18n/languages/woocommerce-lt_LT.mo b/i18n/languages/woocommerce-lt_LT.mo deleted file mode 100644 index d8335e077d7..00000000000 Binary files a/i18n/languages/woocommerce-lt_LT.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-lt_LT.po b/i18n/languages/woocommerce-lt_LT.po deleted file mode 100644 index 468c2d9be74..00000000000 --- a/i18n/languages/woocommerce-lt_LT.po +++ /dev/null @@ -1,14113 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce v2.0.14\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2013-09-11 13:28:34+0000\n" -"Last-Translator: admin \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: CSL v1.x\n" -"X-Poedit-Language: Lithuanian\n" -"X-Poedit-Country: LITHUANIA\n" -"X-Poedit-SourceCharset: utf-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n" -"X-Poedit-Basepath: ../../\n" -"X-Poedit-Bookmarks: \n" -"X-Poedit-SearchPath-0: .\n" -"X-Textdomain-Support: yes" - -#: admin/importers/importers-init.php:13 -#@ woocommerce -msgid "WooCommerce Tax Rates (CSV)" -msgstr "" - -#: admin/importers/importers-init.php:13 -#@ woocommerce -msgid "Import tax rates to your store via a csv file." -msgstr "" - -#: admin/importers/tax-rates-importer.php:103 -#: admin/importers/tax-rates-importer.php:188 -#: admin/importers/tax-rates-importer.php:228 -#: admin/importers/tax-rates-importer.php:243 -#@ woocommerce -msgid "Sorry, there has been an error." -msgstr "" - -#: admin/importers/tax-rates-importer.php:104 -#@ woocommerce -msgid "The file does not exist, please try again." -msgstr "" - -#: admin/importers/tax-rates-importer.php:189 -#@ woocommerce -msgid "The CSV is invalid." -msgstr "" - -#: admin/importers/tax-rates-importer.php:200 -#, php-format -#@ woocommerce -msgid "Import complete - imported %s tax rates and skipped %s." -msgstr "" - -#: admin/importers/tax-rates-importer.php:210 -#@ woocommerce -msgid "All done!" -msgstr "" - -#: admin/importers/tax-rates-importer.php:210 -#@ woocommerce -msgid "View Tax Rates" -msgstr "" - -#: admin/importers/tax-rates-importer.php:261 -#@ woocommerce -msgid "Import Tax Rates" -msgstr "" - -#: admin/importers/tax-rates-importer.php:284 -#@ woocommerce -msgid "Hi there! Upload a CSV file containing tax rates to import the contents into your shop. Choose a .csv file to upload, then click \"Upload file and import\"." -msgstr "" - -#: admin/importers/tax-rates-importer.php:286 -#, php-format -#@ woocommerce -msgid "Tax rates need to be defined with columns in a specific order (10 columns). Click here to download a sample." -msgstr "" - -#: admin/importers/tax-rates-importer.php:294 -#@ default -msgid "Before you can upload your import file, you will need to fix the following error:" -msgstr "" - -#: admin/importers/tax-rates-importer.php:303 -#@ default -msgid "Choose a file from your computer:" -msgstr "" - -#: admin/importers/tax-rates-importer.php:309 -#, php-format -#@ default -msgid "Maximum size: %s" -msgstr "" - -#: admin/importers/tax-rates-importer.php:314 -#@ woocommerce -msgid "OR enter path to file:" -msgstr "" - -#: admin/importers/tax-rates-importer.php:321 -#@ woocommerce -msgid "Delimiter" -msgstr "" - -#: admin/importers/tax-rates-importer.php:327 -#@ default -msgid "Upload file and import" -msgstr "" - -#: admin/includes/duplicate_product.php:23 -#@ woocommerce -msgid "No product to duplicate has been supplied!" -msgstr "" - -#: admin/includes/duplicate_product.php:43 -#@ woocommerce -msgid "Product creation failed, could not find original product:" -msgstr "" - -#: admin/includes/duplicate_product.php:90 -#@ woocommerce -msgid "(Copy)" -msgstr "" - -#: admin/includes/notice-install.php:6 -#@ woocommerce -msgid "Welcome to WooCommerce – You're almost ready to start selling :)" -msgstr "" - -#: admin/includes/notice-install.php:7 -#@ woocommerce -msgid "Install WooCommerce Pages" -msgstr "" - -#: admin/includes/notice-install.php:7 -#@ woocommerce -msgid "Skip setup" -msgstr "" - -#: admin/includes/notice-theme-support.php:6 -#@ woocommerce -msgid "Your theme does not declare WooCommerce support – if you encounter layout issues please read our integration guide or choose a WooCommerce theme :)" -msgstr "" - -#: admin/includes/notice-theme-support.php:7 -#@ woocommerce -msgid "Theme Integration Guide" -msgstr "" - -#: admin/includes/notice-theme-support.php:7 -#@ woocommerce -msgid "Hide this notice" -msgstr "" - -#: admin/includes/notice-update.php:6 -#@ woocommerce -msgid "Data Update Required – We just need to update your install to the latest version" -msgstr "" - -#: admin/includes/notice-update.php:7 -#@ woocommerce -msgid "Run the updater" -msgstr "" - -#: admin/includes/notice-update.php:12 -#@ woocommerce -msgid "It is strongly recommended that you backup your database before proceeding. Are you sure you wish to run the updater now?" -msgstr "" - -#: admin/includes/updates/woocommerce-update-2.0.php:49 -#: admin/woocommerce-admin-init.php:890 -#: woocommerce.php:786 -#@ woocommerce -msgctxt "slug" -msgid "product-category" -msgstr "" - -#: admin/includes/updates/woocommerce-update-2.0.php:50 -#: admin/woocommerce-admin-init.php:903 -#: woocommerce.php:787 -#@ woocommerce -msgctxt "slug" -msgid "product-tag" -msgstr "" - -#: admin/includes/updates/woocommerce-update-2.0.php:58 -#: woocommerce.php:789 -#@ woocommerce -msgctxt "slug" -msgid "product" -msgstr "prekė" - -#: admin/includes/updates/woocommerce-update-2.0.php:179 -#: admin/woocommerce-admin-install.php:207 -#@ woocommerce -msgctxt "page_slug" -msgid "lost-password" -msgstr "" - -#: admin/includes/updates/woocommerce-update-2.0.php:179 -#: admin/woocommerce-admin-install.php:207 -#: admin/woocommerce-admin-status.php:346 -#@ woocommerce -msgid "Lost Password" -msgstr "" - -#: admin/includes/welcome.php:48 -#@ woocommerce -msgid "Welcome to WooCommerce" -msgstr "" - -#: admin/includes/welcome.php:135 -#, php-format -#@ woocommerce -msgid "Welcome to WooCommerce %s" -msgstr "" - -#: admin/includes/welcome.php:140 -#@ woocommerce -msgid "Thanks, all done!" -msgstr "" - -#: admin/includes/welcome.php:142 -#@ woocommerce -msgid "Thank you for updating to the latest version!" -msgstr "" - -#: admin/includes/welcome.php:144 -#@ woocommerce -msgid "Thanks for installing!" -msgstr "" - -#: admin/includes/welcome.php:146 -#, php-format -#@ woocommerce -msgid "%s WooCommerce %s is more powerful, stable, and secure than ever before. We hope you enjoy it." -msgstr "" - -#: admin/includes/welcome.php:150 -#, php-format -#@ woocommerce -msgid "Version %s" -msgstr "" - -#: admin/includes/welcome.php:153 -#: admin/woocommerce-admin-content.php:41 -#: admin/woocommerce-admin-init.php:88 -#: admin/woocommerce-admin-status.php:289 -#: classes/abstracts/abstract-wc-email.php:560 -#: classes/abstracts/abstract-wc-integration.php:30 -#: classes/abstracts/abstract-wc-settings-api.php:39 -#: woocommerce.php:170 -#@ woocommerce -msgid "Settings" -msgstr "" - -#: admin/includes/welcome.php:154 -#: woocommerce.php:171 -#@ woocommerce -msgid "Docs" -msgstr "" - -#: admin/includes/welcome.php:161 -#@ woocommerce -msgid "What's New" -msgstr "" - -#: admin/includes/welcome.php:163 -#@ woocommerce -msgid "Credits" -msgstr "" - -#: admin/includes/welcome.php:186 -#@ woocommerce -msgid "Security in mind" -msgstr "" - -#: admin/includes/welcome.php:190 -#@ woocommerce -msgid "Sucuri Safe Plugin" -msgstr "" - -#: admin/includes/welcome.php:191 -#@ woocommerce -msgid "You will be happy to learn that WooCommerce has been audited and certified by the Sucuri Security team. Whilst there is not much to be seen visually to understand the amount of work that went into this audit, rest assured that your website is powered by one of the most powerful and stable eCommerce plugins available." -msgstr "" - -#: admin/includes/welcome.php:194 -#@ woocommerce -msgid "A Smoother Admin Experience" -msgstr "" - -#: admin/includes/welcome.php:200 -#@ woocommerce -msgid "New Product Panel" -msgstr "" - -#: admin/includes/welcome.php:201 -#@ woocommerce -msgid "We have revised the product data panel making it cleaner, more streamlined, and more logical. Adding products is a breeze!" -msgstr "" - -#: admin/includes/welcome.php:206 -#@ woocommerce -msgid "Nicer Order Screens" -msgstr "" - -#: admin/includes/welcome.php:207 -#@ woocommerce -msgid "Order pages have had a cleanup, with a more easily scannable interface. We particularly like the new status icons!" -msgstr "" - -#: admin/includes/welcome.php:212 -#@ woocommerce -msgid "Multi-Download Support" -msgstr "" - -#: admin/includes/welcome.php:213 -#@ woocommerce -msgid "Products can have multiple downloadable files - purchasers will get access to all the files added." -msgstr "" - -#: admin/includes/welcome.php:218 -#@ woocommerce -msgid "Less Taxing Taxes" -msgstr "" - -#: admin/includes/welcome.php:224 -#@ woocommerce -msgid "New Tax Input Panel" -msgstr "" - -#: admin/includes/welcome.php:225 -#@ woocommerce -msgid "The tax input pages have been streamlined to make inputting taxes simpler - adding multiple taxes for a single jurisdiction is now much easier using the priority system. There is also CSV import/export support." -msgstr "" - -#: admin/includes/welcome.php:229 -#@ woocommerce -msgid "Improved Tax Options" -msgstr "" - -#: admin/includes/welcome.php:230 -#@ woocommerce -msgid "As requested by some users, we now support taxing the billing address instead of shipping (optional), and we allow you to choose which tax class applies to shipping." -msgstr "" - -#: admin/includes/welcome.php:235 -#@ woocommerce -msgid "Product Listing Improvements Customers Will Love" -msgstr "" - -#: admin/includes/welcome.php:241 -#@ woocommerce -msgid "New Sorting Options" -msgstr "" - -#: admin/includes/welcome.php:242 -#@ woocommerce -msgid "Customers can now sort products by popularity and ratings." -msgstr "" - -#: admin/includes/welcome.php:247 -#@ woocommerce -msgid "Better Pagination and Result Counts" -msgstr "" - -#: admin/includes/welcome.php:248 -#@ woocommerce -msgid "Numbered pagination has been added to core, and we show the number of results found above the listings." -msgstr "" - -#: admin/includes/welcome.php:253 -#@ woocommerce -msgid "Inline Star Rating Display" -msgstr "" - -#: admin/includes/welcome.php:254 -#@ woocommerce -msgid "We have added star ratings to the catalog which are pulled from reviews." -msgstr "" - -#: admin/includes/welcome.php:262 -#@ woocommerce -msgid "Under the Hood" -msgstr "" - -#: admin/includes/welcome.php:266 -#@ woocommerce -msgid "New product classes" -msgstr "" - -#: admin/includes/welcome.php:267 -#@ woocommerce -msgid "The product classes have been rewritten and are now factory based. Much more extendable, and easier to query products using the new get_product() function." -msgstr "" - -#: admin/includes/welcome.php:271 -#@ woocommerce -msgid "Capability overhaul" -msgstr "" - -#: admin/includes/welcome.php:272 -#@ woocommerce -msgid "More granular capabilities for admin/shop manager roles covering products, orders and coupons." -msgstr "" - -#: admin/includes/welcome.php:276 -#@ woocommerce -msgid "API Improvements" -msgstr "" - -#: admin/includes/welcome.php:277 -#@ woocommerce -msgid "WC-API now has real endpoints, and we've optimised the gateways API significantly by only loading gateways when needed." -msgstr "" - -#: admin/includes/welcome.php:283 -#@ woocommerce -msgid "Cache-friendly cart widgets" -msgstr "" - -#: admin/includes/welcome.php:284 -#@ woocommerce -msgid "Cart widgets and other \"fragments\" are now pulled in via AJAX - this works wonders with static page caching." -msgstr "" - -#: admin/includes/welcome.php:288 -#@ woocommerce -msgid "Session handling" -msgstr "" - -#: admin/includes/welcome.php:289 -#@ woocommerce -msgid "PHP SESSIONS have been a problem for many users in the past, so we've developed our own handler using cookies and options to make these more reliable." -msgstr "" - -#: admin/includes/welcome.php:293 -#@ woocommerce -msgid "Retina Ready" -msgstr "" - -#: admin/includes/welcome.php:294 -#@ woocommerce -msgid "All graphics within WC have been optimised for HiDPI displays." -msgstr "" - -#: admin/includes/welcome.php:301 -#@ woocommerce -msgid "Better stock handling" -msgstr "" - -#: admin/includes/welcome.php:302 -#@ woocommerce -msgid "We have added an option to hold stock for unpaid orders (defaults to 60mins). When this time limit is reached, and the order is not paid for, stock is released and the order is cancelled." -msgstr "" - -#: admin/includes/welcome.php:306 -#@ woocommerce -msgid "Improved Line-item storage" -msgstr "" - -#: admin/includes/welcome.php:307 -#@ woocommerce -msgid "We have changed how order items get stored making them easier (and faster) to access for reporting. Order items are no longer serialised within an order - they are stored within their own table." -msgstr "" - -#: admin/includes/welcome.php:311 -#@ woocommerce -msgid "Autoload" -msgstr "" - -#: admin/includes/welcome.php:312 -#@ woocommerce -msgid "We have setup autoloading for classes - this has dramatically reduced memory usage in 2.0." -msgstr "" - -#: admin/includes/welcome.php:319 -#@ woocommerce -msgid "Go to WooCommerce Settings" -msgstr "" - -#: admin/includes/welcome.php:337 -#@ woocommerce -msgid "WooCommerce is developed and maintained by a worldwide team of passionate individuals and backed by an awesome developer community. Want to see your name? Contribute to WooCommerce." -msgstr "" - -#: admin/includes/welcome.php:363 -#, php-format -#@ woocommerce -msgid "View %s" -msgstr "" - -#: admin/post-types/product.php:31 -#@ woocommerce -msgid "Make a duplicate from this product" -msgstr "" - -#: admin/post-types/product.php:32 -#@ woocommerce -msgid "Duplicate" -msgstr "" - -#: admin/post-types/product.php:61 -#@ woocommerce -msgid "Copy to a new draft" -msgstr "" - -#: admin/post-types/product.php:86 -#: admin/woocommerce-admin-taxonomies.php:297 -#@ woocommerce -msgid "Image" -msgstr "" - -#: admin/post-types/product.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:376 -#: admin/post-types/writepanels/writepanel-product_data.php:470 -#: admin/woocommerce-admin-attributes.php:240 -#: admin/woocommerce-admin-attributes.php:276 -#: admin/woocommerce-admin-attributes.php:314 -#: admin/woocommerce-admin-attributes.php:337 -#: admin/woocommerce-admin-attributes.php:381 -#: admin/woocommerce-admin-attributes.php:406 -#: admin/woocommerce-admin-init.php:437 -#: classes/widgets/class-wc-widget-product-categories.php:191 -#: templates/single-product-reviews.php:84 -#: woocommerce-ajax.php:1175 -#@ woocommerce -msgid "Name" -msgstr "" - -#: admin/post-types/product.php:91 -#: admin/post-types/product.php:557 -#: admin/post-types/writepanels/variation-admin-html.php:52 -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#: admin/woocommerce-admin-reports.php:2100 -#: admin/woocommerce-admin-reports.php:2136 -#@ woocommerce -msgid "SKU" -msgstr "" - -#: admin/post-types/product.php:94 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:82 -#: admin/woocommerce-admin-content.php:63 -#: admin/woocommerce-admin-reports.php:90 -#@ woocommerce -msgid "Stock" -msgstr "" - -#: admin/post-types/product.php:96 -#: admin/post-types/product.php:568 -#: admin/post-types/product.php:789 -#: admin/woocommerce-admin-functions.php:202 -#: templates/cart/cart.php:29 -#: templates/emails/admin-new-order.php:24 -#: templates/emails/customer-completed-order.php:25 -#: templates/emails/customer-invoice.php:29 -#: templates/emails/customer-note.php:29 -#: templates/emails/customer-processing-order.php:25 -#@ woocommerce -msgid "Price" -msgstr "Kaina" - -#: admin/post-types/product.php:98 -#@ woocommerce -msgid "Categories" -msgstr "" - -#: admin/post-types/product.php:99 -#@ woocommerce -msgid "Tags" -msgstr "" - -#: admin/post-types/product.php:100 -#: admin/post-types/product.php:632 -#: admin/post-types/product.php:906 -#: admin/post-types/writepanels/writepanel-product_data.php:1059 -#: admin/woocommerce-admin-init.php:450 -#@ woocommerce -msgid "Featured" -msgstr "" - -#: admin/post-types/product.php:101 -#: admin/woocommerce-admin-attributes.php:258 -#: admin/woocommerce-admin-attributes.php:316 -#: admin/woocommerce-admin-attributes.php:393 -#@ woocommerce -msgid "Type" -msgstr "" - -#: admin/post-types/product.php:102 -#: admin/post-types/shop_order.php:50 -#: templates/myaccount/my-orders.php:33 -#@ woocommerce -msgid "Date" -msgstr "" - -#: admin/post-types/product.php:151 -#@ default -msgid "Edit this item" -msgstr "" - -#: admin/post-types/product.php:151 -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#: admin/post-types/writepanels/writepanel-order_data.php:387 -#: admin/post-types/writepanels/writepanel-product_data.php:1062 -#: admin/woocommerce-admin-attributes.php:330 -#: templates/myaccount/my-address.php:45 -#: woocommerce.php:951 -#: woocommerce.php:987 -#: woocommerce.php:1024 -#: woocommerce.php:1062 -#: woocommerce.php:1100 -#@ default -#@ woocommerce -msgid "Edit" -msgstr "" - -#: admin/post-types/product.php:152 -#@ default -msgid "Edit this item inline" -msgstr "" - -#: admin/post-types/product.php:152 -#@ default -msgid "Quick Edit" -msgstr "" - -#: admin/post-types/product.php:156 -#: admin/post-types/shop_coupon.php:65 -#@ default -msgid "Restore this item from the Trash" -msgstr "" - -#: admin/post-types/product.php:156 -#: admin/post-types/shop_coupon.php:65 -#@ default -msgid "Restore" -msgstr "" - -#: admin/post-types/product.php:158 -#: admin/post-types/shop_coupon.php:67 -#@ default -msgid "Move this item to the Trash" -msgstr "" - -#: admin/post-types/product.php:158 -#: admin/post-types/shop_coupon.php:67 -#@ default -msgid "Trash" -msgstr "" - -#: admin/post-types/product.php:160 -#: admin/post-types/shop_coupon.php:69 -#@ default -msgid "Delete this item permanently" -msgstr "" - -#: admin/post-types/product.php:160 -#: admin/post-types/shop_coupon.php:69 -#: admin/post-types/writepanels/writepanel-order_data.php:463 -#@ default -#@ woocommerce -msgid "Delete Permanently" -msgstr "" - -#: admin/post-types/product.php:165 -#, php-format -#@ default -msgid "Preview “%s”" -msgstr "" - -#: admin/post-types/product.php:165 -#@ default -msgid "Preview" -msgstr "" - -#: admin/post-types/product.php:167 -#, php-format -#@ default -msgid "View “%s”" -msgstr "" - -#: admin/post-types/product.php:167 -#: admin/post-types/shop_order.php:171 -#: templates/myaccount/my-orders.php:82 -#@ default -#@ woocommerce -msgid "View" -msgstr "" - -#: admin/post-types/product.php:214 -#@ woocommerce -msgid "Grouped" -msgstr "" - -#: admin/post-types/product.php:216 -#@ woocommerce -msgid "External/Affiliate" -msgstr "" - -#: admin/post-types/product.php:220 -#: admin/post-types/product.php:407 -#: admin/post-types/writepanels/variation-admin-html.php:176 -#: admin/post-types/writepanels/writepanel-product_data.php:52 -#@ woocommerce -msgid "Virtual" -msgstr "" - -#: admin/post-types/product.php:222 -#: admin/post-types/product.php:403 -#: admin/post-types/writepanels/variation-admin-html.php:174 -#: admin/post-types/writepanels/writepanel-product_data.php:58 -#@ woocommerce -msgid "Downloadable" -msgstr "" - -#: admin/post-types/product.php:224 -#@ woocommerce -msgid "Simple" -msgstr "" - -#: admin/post-types/product.php:228 -#: admin/post-types/product.php:387 -#@ woocommerce -msgid "Variable" -msgstr "" - -#: admin/post-types/product.php:251 -#@ woocommerce -msgid "Toggle featured" -msgstr "" - -#: admin/post-types/product.php:253 -#@ woocommerce -msgid "yes" -msgstr "" - -#: admin/post-types/product.php:255 -#@ woocommerce -msgid "no" -msgstr "" - -#: admin/post-types/product.php:262 -#: admin/post-types/product.php:641 -#: admin/post-types/product.php:930 -#: admin/post-types/writepanels/writepanel-product_data.php:231 -#: classes/abstracts/abstract-wc-product.php:546 -#: classes/abstracts/abstract-wc-product.php:551 -#: classes/abstracts/abstract-wc-product.php:570 -#@ woocommerce -msgid "In stock" -msgstr "" - -#: admin/post-types/product.php:264 -#: admin/post-types/product.php:642 -#: admin/post-types/product.php:931 -#: admin/post-types/writepanels/writepanel-product_data.php:232 -#: admin/woocommerce-admin-reports.php:2120 -#: classes/abstracts/abstract-wc-product.php:573 -#: classes/abstracts/abstract-wc-product.php:583 -#: classes/abstracts/abstract-wc-product.php:587 -#@ woocommerce -msgid "Out of stock" -msgstr "" - -#: admin/post-types/product.php:373 -#@ woocommerce -msgid "Show all product types" -msgstr "" - -#: admin/post-types/product.php:381 -#: admin/post-types/writepanels/writepanel-product_data.php:39 -#@ woocommerce -msgid "Grouped product" -msgstr "" - -#: admin/post-types/product.php:383 -#: admin/post-types/writepanels/writepanel-product_data.php:40 -#@ woocommerce -msgid "External/Affiliate product" -msgstr "" - -#: admin/post-types/product.php:385 -#: admin/post-types/writepanels/writepanel-product_data.php:38 -#@ woocommerce -msgid "Simple product" -msgstr "" - -#: admin/post-types/product.php:399 -#@ woocommerce -msgid "Show all sub-types" -msgstr "" - -#: admin/post-types/product.php:520 -#, php-format -#@ woocommerce -msgid "[%s with SKU of %s]" -msgstr "" - -#: admin/post-types/product.php:526 -#, php-format -#@ woocommerce -msgid "[%s with ID of %d]" -msgstr "" - -#: admin/post-types/product.php:552 -#: admin/post-types/product.php:783 -#: admin/post-types/writepanels/writepanels-init.php:46 -#: admin/settings/settings-init.php:508 -#@ woocommerce -msgid "Product Data" -msgstr "" - -#: admin/post-types/product.php:570 -#@ woocommerce -msgid "Regular price" -msgstr "Įprastinė kaina" - -#: admin/post-types/product.php:575 -#: admin/post-types/product.php:813 -#@ woocommerce -msgid "Sale" -msgstr "" - -#: admin/post-types/product.php:577 -#@ woocommerce -msgid "Sale price" -msgstr "Akcija" - -#: admin/post-types/product.php:588 -#: admin/post-types/product.php:839 -#: admin/post-types/writepanels/variation-admin-html.php:96 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:83 -#: admin/post-types/writepanels/writepanel-product_data.php:273 -#: templates/single-product/product-attributes.php:28 -#@ woocommerce -msgid "Weight" -msgstr "" - -#: admin/post-types/product.php:599 -#: admin/post-types/product.php:863 -#@ woocommerce -msgid "L/W/H" -msgstr "" - -#: admin/post-types/product.php:601 -#: admin/post-types/product.php:879 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:286 -#@ woocommerce -msgid "Length" -msgstr "" - -#: admin/post-types/product.php:602 -#: admin/post-types/product.php:880 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:85 -#: admin/post-types/writepanels/writepanel-product_data.php:287 -#: admin/woocommerce-admin-settings.php:798 -#@ woocommerce -msgid "Width" -msgstr "" - -#: admin/post-types/product.php:603 -#: admin/post-types/product.php:881 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:86 -#: admin/post-types/writepanels/writepanel-product_data.php:288 -#: admin/woocommerce-admin-settings.php:800 -#@ woocommerce -msgid "Height" -msgstr "" - -#: admin/post-types/product.php:613 -#: admin/post-types/product.php:887 -#@ woocommerce -msgid "Visibility" -msgstr "" - -#: admin/post-types/product.php:618 -#: admin/post-types/product.php:893 -#@ woocommerce -msgid "Catalog & search" -msgstr "" - -#: admin/post-types/product.php:619 -#: admin/post-types/product.php:894 -#: admin/post-types/writepanels/writepanel-product_data.php:1048 -#: admin/woocommerce-admin-content.php:46 -#: admin/woocommerce-admin-settings.php:183 -#@ woocommerce -msgid "Catalog" -msgstr "" - -#: admin/post-types/product.php:620 -#: admin/post-types/product.php:895 -#: admin/post-types/writepanels/writepanel-product_data.php:1049 -#: woocommerce-template.php:1500 -#: woocommerce.php:947 -#@ woocommerce -msgid "Search" -msgstr "" - -#: admin/post-types/product.php:621 -#: admin/post-types/product.php:896 -#: admin/post-types/writepanels/writepanel-product_data.php:1050 -#@ woocommerce -msgid "Hidden" -msgstr "" - -#: admin/post-types/product.php:636 -#: admin/post-types/product.php:924 -#@ woocommerce -msgid "In stock?" -msgstr "" - -#: admin/post-types/product.php:657 -#: admin/post-types/product.php:942 -#: admin/post-types/writepanels/writepanel-product_data.php:212 -#@ woocommerce -msgid "Manage stock?" -msgstr "" - -#: admin/post-types/product.php:661 -#: admin/post-types/product.php:961 -#: admin/post-types/product.php:977 -#: admin/post-types/writepanels/writepanel-product_data.php:219 -#@ woocommerce -msgid "Stock Qty" -msgstr "" - -#: admin/post-types/product.php:794 -#: admin/post-types/product.php:818 -#: admin/post-types/product.php:844 -#: admin/post-types/product.php:868 -#: admin/post-types/product.php:892 -#: admin/post-types/product.php:911 -#: admin/post-types/product.php:929 -#: admin/post-types/product.php:947 -#: admin/post-types/product.php:966 -#@ woocommerce -msgid "— No Change —" -msgstr "" - -#: admin/post-types/product.php:795 -#: admin/post-types/product.php:819 -#: admin/post-types/product.php:845 -#: admin/post-types/product.php:869 -#: admin/post-types/product.php:967 -#@ woocommerce -msgid "Change to:" -msgstr "" - -#: admin/post-types/product.php:796 -#: admin/post-types/product.php:820 -#@ woocommerce -msgid "Increase by (fixed amount or %):" -msgstr "" - -#: admin/post-types/product.php:797 -#: admin/post-types/product.php:821 -#@ woocommerce -msgid "Decrease by (fixed amount or %):" -msgstr "" - -#: admin/post-types/product.php:807 -#: admin/post-types/product.php:832 -#@ woocommerce -msgid "Enter price" -msgstr "" - -#: admin/post-types/product.php:822 -#@ woocommerce -msgid "Decrease regular price by (fixed amount or %):" -msgstr "" - -#: admin/post-types/product.php:912 -#: admin/post-types/product.php:948 -#: admin/post-types/shop_order.php:190 -#: admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:297 -#@ woocommerce -msgid "Yes" -msgstr "" - -#: admin/post-types/product.php:913 -#: admin/post-types/product.php:949 -#: admin/post-types/shop_order.php:192 -#: admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:297 -#@ woocommerce -msgid "No" -msgstr "" - -#: admin/post-types/product.php:1183 -#@ woocommerce -msgid "Sort Products" -msgstr "" - -#: admin/post-types/product.php:1222 -#@ woocommerce -msgid "Insert into product" -msgstr "" - -#: admin/post-types/product.php:1223 -#@ woocommerce -msgid "Uploaded to this product" -msgstr "" - -#: admin/post-types/shop_coupon.php:25 -#@ woocommerce -msgid "Code" -msgstr "" - -#: admin/post-types/shop_coupon.php:26 -#@ woocommerce -msgid "Coupon type" -msgstr "" - -#: admin/post-types/shop_coupon.php:27 -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -#@ woocommerce -msgid "Coupon amount" -msgstr "" - -#: admin/post-types/shop_coupon.php:28 -#: classes/gateways/cod/class-wc-gateway-cod.php:94 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:150 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:133 -#: woocommerce-template.php:751 -#@ woocommerce -msgid "Description" -msgstr "" - -#: admin/post-types/shop_coupon.php:29 -#@ woocommerce -msgid "Product IDs" -msgstr "" - -#: admin/post-types/shop_coupon.php:30 -#@ woocommerce -msgid "Usage / Limit" -msgstr "" - -#: admin/post-types/shop_coupon.php:31 -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -#@ woocommerce -msgid "Expiry date" -msgstr "" - -#: admin/post-types/shop_coupon.php:56 -#@ woocommerce -msgid "Edit coupon" -msgstr "" - -#: admin/post-types/shop_coupon.php:114 -#, php-format -#@ woocommerce -msgid "%s / %s" -msgstr "" - -#: admin/post-types/shop_coupon.php:116 -#, php-format -#@ woocommerce -msgid "%s / ∞" -msgstr "" - -#: admin/post-types/shop_coupon.php:149 -#@ woocommerce -msgid "Show all types" -msgstr "" - -#: admin/post-types/shop_order.php:43 -#: admin/settings/settings-payment-gateways.php:29 -#: admin/settings/settings-shipping-methods.php:31 -#: templates/myaccount/my-orders.php:34 -#@ woocommerce -msgid "Status" -msgstr "" - -#: admin/post-types/shop_order.php:44 -#: templates/myaccount/my-orders.php:32 -#: woocommerce.php:1059 -#@ woocommerce -msgid "Order" -msgstr "" - -#: admin/post-types/shop_order.php:45 -#@ woocommerce -msgid "Billing" -msgstr "" - -#: admin/post-types/shop_order.php:46 -#: admin/post-types/writepanels/writepanel-order_data.php:539 -#: admin/post-types/writepanels/writepanel-product_data.php:81 -#: admin/settings/settings-tax-rates.php:52 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-content.php:49 -#: admin/woocommerce-admin-settings.php:187 -#: templates/cart/totals.php:46 -#: templates/checkout/review-order.php:45 -#@ woocommerce -msgid "Shipping" -msgstr "Pristatymas" - -#: admin/post-types/shop_order.php:47 -#: templates/cart/totals.php:92 -#: templates/checkout/review-order.php:91 -#@ woocommerce -msgid "Order Total" -msgstr "Bendra suma" - -#: admin/post-types/shop_order.php:48 -#: admin/post-types/writepanels/writepanels-init.php:71 -#: classes/class-wc-checkout.php:89 -#@ woocommerce -msgid "Order Notes" -msgstr "Užsakymo pastabos" - -#: admin/post-types/shop_order.php:49 -#@ woocommerce -msgid "Customer Notes" -msgstr "" - -#: admin/post-types/shop_order.php:51 -#: admin/post-types/writepanels/writepanel-order_data.php:386 -#: admin/post-types/writepanels/writepanel-order_data.php:433 -#@ woocommerce -msgid "Actions" -msgstr "" - -#: admin/post-types/shop_order.php:95 -#: admin/post-types/writepanels/writepanel-order_data.php:93 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:120 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:178 -#: woocommerce-ajax.php:1656 -#@ woocommerce -msgid "Guest" -msgstr "" - -#: admin/post-types/shop_order.php:98 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:321 -#, php-format -#@ woocommerce -msgid "Order %s" -msgstr "" - -#: admin/post-types/shop_order.php:98 -#@ woocommerce -msgid "made by" -msgstr "" - -#: admin/post-types/shop_order.php:101 -#: templates/emails/admin-new-order.php:53 -#: templates/emails/customer-completed-order.php:54 -#: templates/emails/customer-note.php:58 -#: templates/emails/customer-processing-order.php:54 -#: templates/emails/plain/admin-new-order.php:41 -#: templates/emails/plain/customer-completed-order.php:41 -#: templates/emails/plain/customer-note.php:49 -#: templates/emails/plain/customer-processing-order.php:41 -#: templates/order/order-details.php:101 -#@ woocommerce -msgid "Email:" -msgstr "E.paštas:" - -#: admin/post-types/shop_order.php:104 -#: templates/emails/admin-new-order.php:56 -#: templates/emails/customer-completed-order.php:57 -#: templates/emails/customer-note.php:61 -#: templates/emails/customer-processing-order.php:57 -#: templates/emails/plain/admin-new-order.php:44 -#: templates/emails/plain/customer-completed-order.php:44 -#: templates/emails/plain/customer-note.php:52 -#: templates/emails/plain/customer-processing-order.php:44 -#@ woocommerce -msgid "Tel:" -msgstr "" - -#: admin/post-types/shop_order.php:114 -#: admin/post-types/shop_order.php:123 -#@ woocommerce -msgid "Via" -msgstr "" - -#: admin/post-types/shop_order.php:131 -#@ woocommerce -msgid "Unpublished" -msgstr "" - -#: admin/post-types/shop_order.php:133 -#@ woocommerce -msgid "Y/m/d g:i:s A" -msgstr "" - -#: admin/post-types/shop_order.php:139 -#, php-format -#@ woocommerce -msgid "%s ago" -msgstr "" - -#: admin/post-types/shop_order.php:141 -#@ woocommerce -msgid "Y/m/d" -msgstr "" - -#: admin/post-types/shop_order.php:158 -#: admin/woocommerce-admin-dashboard.php:176 -#@ woocommerce -msgid "Processing" -msgstr "" - -#: admin/post-types/shop_order.php:165 -#@ woocommerce -msgid "Complete" -msgstr "" - -#: admin/post-types/shop_order.php:282 -#@ woocommerce -msgid "Show all statuses" -msgstr "" - -#: admin/post-types/shop_order.php:301 -#: admin/post-types/shop_order.php:326 -#@ woocommerce -msgid "Show all customers" -msgstr "" - -#: admin/post-types/writepanels/order-download-permission-html.php:6 -#@ woocommerce -msgid "Revoke Access" -msgstr "" - -#: admin/post-types/writepanels/order-download-permission-html.php:7 -#: admin/post-types/writepanels/variation-admin-html.php:7 -#: admin/post-types/writepanels/writepanel-product_data.php:369 -#: admin/post-types/writepanels/writepanel-product_data.php:463 -#: admin/woocommerce-admin-init.php:439 -#@ woocommerce -msgid "Click to toggle" -msgstr "" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -#, php-format -#@ woocommerce -msgid "File %d: %s" -msgstr "" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -#, php-format -#@ woocommerce -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: admin/post-types/writepanels/order-download-permission-html.php:16 -#@ woocommerce -msgid "Downloads Remaining" -msgstr "" - -#: admin/post-types/writepanels/order-download-permission-html.php:19 -#: admin/post-types/writepanels/variation-admin-html.php:151 -#: admin/post-types/writepanels/variation-admin-html.php:159 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -#@ woocommerce -msgid "Unlimited" -msgstr "" - -#: admin/post-types/writepanels/order-download-permission-html.php:22 -#@ woocommerce -msgid "Access Expires" -msgstr "" - -#: admin/post-types/writepanels/order-download-permission-html.php:23 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -#@ woocommerce -msgid "Never" -msgstr "" - -#: admin/post-types/writepanels/order-fee-html.php:10 -#@ woocommerce -msgid "Fee Name" -msgstr "" - -#: admin/post-types/writepanels/order-fee-html.php:17 -#: admin/post-types/writepanels/order-item-html.php:89 -#@ woocommerce -msgid "Tax class" -msgstr "" - -#: admin/post-types/writepanels/order-fee-html.php:19 -#: admin/post-types/writepanels/order-tax-html.php:8 -#: admin/post-types/writepanels/writepanel-order_data.php:561 -#: admin/post-types/writepanels/writepanel-order_data.php:666 -#: admin/woocommerce-admin-reports.php:1659 -#: admin/woocommerce-admin-reports.php:2672 -#: admin/woocommerce-admin-reports.php:2681 -#: admin/woocommerce-admin-users.php:90 -#: admin/woocommerce-admin-users.php:112 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:499 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:500 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:110 -#: templates/order/order-details.php:119 -#: templates/order/order-details.php:134 -#@ woocommerce -msgid "N/A" -msgstr "" - -#: admin/post-types/writepanels/order-fee-html.php:20 -#: admin/post-types/writepanels/writepanel-product_data.php:179 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:111 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:85 -#@ woocommerce -msgid "Taxable" -msgstr "" - -#: admin/post-types/writepanels/order-fee-html.php:25 -#: admin/post-types/writepanels/order-item-html.php:96 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:53 -#: admin/post-types/writepanels/writepanel-product_data.php:186 -#: admin/settings/settings-init.php:972 -#: admin/settings/settings-tax-rates.php:29 -#: admin/woocommerce-admin-settings.php:228 -#: woocommerce-ajax.php:551 -#@ woocommerce -msgid "Standard" -msgstr "" - -#: admin/post-types/writepanels/order-fee-html.php:43 -#: admin/post-types/writepanels/order-item-html.php:115 -#: admin/woocommerce-admin-reports.php:1563 -#: admin/woocommerce-admin-reports.php:1616 -#: admin/woocommerce-admin-reports.php:2387 -#: admin/woocommerce-admin-reports.php:2556 -#: admin/woocommerce-admin-reports.php:2634 -#: templates/cart/cart.php:31 -#: templates/checkout/review-order.php:22 -#: templates/myaccount/my-orders.php:35 -#: templates/order/order-details.php:21 -#@ woocommerce -msgid "Total" -msgstr "Suma" - -#: admin/post-types/writepanels/order-item-html.php:10 -#@ woocommerce -msgid "Product ID:" -msgstr "" - -#: admin/post-types/writepanels/order-item-html.php:13 -#@ woocommerce -msgid "Variation ID:" -msgstr "" - -#: admin/post-types/writepanels/order-item-html.php:16 -#@ woocommerce -msgid "Product SKU:" -msgstr "" - -#: admin/post-types/writepanels/order-item-html.php:44 -#@ woocommerce -msgid "Add meta" -msgstr "" - -#: admin/post-types/writepanels/order-item-html.php:117 -#: templates/cart/mini-cart.php:63 -#@ woocommerce -msgid "Subtotal" -msgstr "Suma" - -#: admin/post-types/writepanels/order-tax-html.php:6 -#@ woocommerce -msgid "Tax Rate:" -msgstr "" - -#: admin/post-types/writepanels/order-tax-html.php:16 -#: admin/post-types/writepanels/writepanel-order_data.php:630 -#@ woocommerce -msgid "Sales Tax:" -msgstr "" - -#: admin/post-types/writepanels/order-tax-html.php:20 -#: admin/post-types/writepanels/writepanel-order_data.php:638 -#@ woocommerce -msgid "Shipping Tax:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:6 -#: admin/post-types/writepanels/writepanel-product_data.php:368 -#: admin/post-types/writepanels/writepanel-product_data.php:462 -#: admin/woocommerce-admin-init.php:438 -#@ woocommerce -msgid "Remove" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:20 -#@ woocommerce -msgid "Any" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:52 -#@ woocommerce -msgid "Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:63 -#@ woocommerce -msgid "Stock Qty:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:63 -#@ woocommerce -msgid "Enter a quantity to enable stock management at variation level, or leave blank to use the parent product's options." -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:72 -#@ woocommerce -msgid "Regular Price:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:73 -#@ woocommerce -msgid "Variation price (required)" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:76 -#@ woocommerce -msgid "Sale Price:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:76 -#: admin/post-types/writepanels/writepanel-product_data.php:125 -#@ woocommerce -msgid "Schedule" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:76 -#@ woocommerce -msgid "Cancel schedule" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:83 -#@ woocommerce -msgid "Sale start date:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:136 -#@ woocommerce -msgctxt "placeholder" -msgid "From…" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:87 -#@ woocommerce -msgid "Sale end date:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:137 -#@ woocommerce -msgctxt "placeholder" -msgid "To…" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:96 -#@ woocommerce -msgid "Enter a weight for this variation or leave blank to use the parent product weight." -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:104 -#@ woocommerce -msgid "Dimensions (L×W×H)" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:115 -#@ woocommerce -msgid "Shipping class:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:119 -#: admin/post-types/writepanels/variation-admin-html.php:132 -#: woocommerce-ajax.php:550 -#@ woocommerce -msgid "Same as parent" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:130 -#@ woocommerce -msgid "Tax class:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:143 -#@ woocommerce -msgid "File paths:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:143 -#@ woocommerce -msgid "Enter one or more File Paths, one per line, to make this variation a downloadable product, or leave blank." -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:144 -#: admin/post-types/writepanels/writepanel-product_data.php:153 -#@ woocommerce -msgid "File paths/URLs, one per line" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:145 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -#@ woocommerce -msgid "Choose a file" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:145 -#@ woocommerce -msgid "Upload" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:145 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -#@ woocommerce -msgid "Insert file URL" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:150 -#@ woocommerce -msgid "Download Limit:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:150 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -#@ woocommerce -msgid "Leave blank for unlimited re-downloads." -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:158 -#@ woocommerce -msgid "Download Expiry:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:158 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -#@ woocommerce -msgid "Enter the number of days before a download link expires, or leave blank." -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:172 -#@ woocommerce -msgid "Enabled" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:174 -#@ woocommerce -msgid "Enable this option if access is given to a downloadable file upon purchase of a product" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:176 -#@ woocommerce -msgid "Enable this option if a product is not shipped or there is no shipping cost" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -#@ woocommerce -msgid "Coupon description" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -#@ woocommerce -msgid "Optionally enter a description for this coupon for your reference." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:42 -#@ woocommerce -msgid "Discount type" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -#@ woocommerce -msgid "Value of the coupon." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -#@ woocommerce -msgid "Enable free shipping" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -#, php-format -#@ woocommerce -msgid "Check this box if the coupon grants free shipping. The free shipping method must be enabled with the \"must use coupon\" setting checked." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -#@ woocommerce -msgid "Individual use" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -#@ woocommerce -msgid "Check this box if the coupon cannot be used in conjunction with other coupons." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -#@ woocommerce -msgid "Apply before tax" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -#@ woocommerce -msgid "Check this box if the coupon should be applied before calculating cart tax." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -#@ woocommerce -msgid "Exclude sale items" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -#@ woocommerce -msgid "Check this box if the coupon should not apply to items on sale. Per-item coupons will only work if the item is not on sale. Per-cart coupons will only work if there are no sale items in the cart." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -#@ woocommerce -msgid "Minimum amount" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -#@ woocommerce -msgid "No minimum" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -#@ woocommerce -msgid "This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:74 -#: admin/woocommerce-admin-taxonomies.php:28 -#: admin/woocommerce-admin-taxonomies.php:122 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:269 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:289 -#: woocommerce.php:982 -#@ woocommerce -msgid "Products" -msgstr "Prekės" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:75 -#: admin/post-types/writepanels/writepanel-order_data.php:400 -#: admin/post-types/writepanels/writepanel-product_data.php:523 -#: admin/post-types/writepanels/writepanel-product_data.php:540 -#: admin/woocommerce-admin-reports.php:1246 -#@ woocommerce -msgid "Search for a product…" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:89 -#@ woocommerce -msgid "Products which need to be in the cart to use this coupon or, for \"Product Discounts\", which products are discounted." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:94 -#@ woocommerce -msgid "Exclude products" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:95 -#@ woocommerce -msgid "Search for a product…" -msgstr "Ieškoti prekės" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:109 -#@ woocommerce -msgid "Products which must not be in the cart to use this coupon or, for \"Product Discounts\", which products are not discounted." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:116 -#: assets/js/admin/editor_plugin_lang.php:9 -#@ woocommerce -msgid "Product categories" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:117 -#@ woocommerce -msgid "Any category" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:125 -#@ woocommerce -msgid "A product must be in this category for the coupon to remain valid or, for \"Product Discounts\", products in these categories will be discounted." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:130 -#@ woocommerce -msgid "Exclude categories" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:131 -#@ woocommerce -msgid "No categories" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:139 -#@ woocommerce -msgid "Product must not be in this category for the coupon to remain valid or, for \"Product Discounts\", products in these categories will not be discounted." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -#@ woocommerce -msgid "Email restrictions" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -#@ woocommerce -msgid "No restrictions" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -#@ woocommerce -msgid "List of emails to check against the customer's billing email when an order is placed." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -#@ woocommerce -msgid "Usage limit" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -#@ woocommerce -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -#@ woocommerce -msgid "How many times this coupon can be used before it is void." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -#@ woocommerce -msgctxt "placeholder" -msgid "Never expire" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -#@ woocommerce -msgid "The date this coupon will expire, YYYY-MM-DD." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:195 -#@ woocommerce -msgid "Coupon code already exists - customers will use the latest coupon with this code." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:59 -#: templates/order/order-details.php:16 -#@ woocommerce -msgid "Order Details" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:62 -#@ woocommerce -msgid "Order number" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:67 -#@ woocommerce -msgid "Customer IP:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:74 -#@ woocommerce -msgid "General Details" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:76 -#@ woocommerce -msgid "Order status:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:86 -#@ woocommerce -msgid "Order Date:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#@ woocommerce -msgid "h" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#: admin/settings/settings-init.php:567 -#@ woocommerce -msgid "m" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:91 -#@ woocommerce -msgid "Customer:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:131 -#@ woocommerce -msgid "Customer Note:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:132 -#@ woocommerce -msgid "Customer's notes about the order" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#@ woocommerce -msgid "Billing Details" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:144 -#: admin/post-types/writepanels/writepanel-order_data.php:234 -#: classes/class-wc-countries.php:683 -#@ woocommerce -msgid "First Name" -msgstr "Vardas" - -#: admin/post-types/writepanels/writepanel-order_data.php:148 -#: admin/post-types/writepanels/writepanel-order_data.php:238 -#: classes/class-wc-countries.php:688 -#@ woocommerce -msgid "Last Name" -msgstr "Pavardė" - -#: admin/post-types/writepanels/writepanel-order_data.php:152 -#: admin/post-types/writepanels/writepanel-order_data.php:242 -#: admin/woocommerce-admin-users.php:155 -#: admin/woocommerce-admin-users.php:204 -#@ woocommerce -msgid "Company" -msgstr "Įmonė" - -#: admin/post-types/writepanels/writepanel-order_data.php:156 -#: admin/post-types/writepanels/writepanel-order_data.php:246 -#: admin/woocommerce-admin-users.php:159 -#: admin/woocommerce-admin-users.php:208 -#@ woocommerce -msgid "Address 1" -msgstr "Adresas 1" - -#: admin/post-types/writepanels/writepanel-order_data.php:160 -#: admin/post-types/writepanels/writepanel-order_data.php:250 -#: admin/woocommerce-admin-users.php:163 -#: admin/woocommerce-admin-users.php:212 -#@ woocommerce -msgid "Address 2" -msgstr "Adresas 2" - -#: admin/post-types/writepanels/writepanel-order_data.php:164 -#: admin/post-types/writepanels/writepanel-order_data.php:254 -#: admin/settings/settings-tax-rates.php:42 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-users.php:167 -#: admin/woocommerce-admin-users.php:216 -#: templates/cart/shipping-calculator.php:72 -#@ woocommerce -msgid "City" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:168 -#: admin/post-types/writepanels/writepanel-order_data.php:258 -#: admin/woocommerce-admin-users.php:171 -#: admin/woocommerce-admin-users.php:220 -#: classes/class-wc-countries.php:970 -#@ woocommerce -msgid "Postcode" -msgstr "Pašto indeksas" - -#: admin/post-types/writepanels/writepanel-order_data.php:172 -#: admin/post-types/writepanels/writepanel-order_data.php:262 -#: admin/woocommerce-admin-users.php:179 -#: admin/woocommerce-admin-users.php:228 -#: classes/class-wc-countries.php:678 -#@ woocommerce -msgid "Country" -msgstr "Šalis" - -#: admin/post-types/writepanels/writepanel-order_data.php:175 -#: admin/post-types/writepanels/writepanel-order_data.php:265 -#: templates/cart/shipping-calculator.php:28 -#: woocommerce-template.php:1336 -#@ woocommerce -msgid "Select a country…" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:178 -#: admin/post-types/writepanels/writepanel-order_data.php:268 -#: admin/woocommerce-admin-users.php:175 -#: admin/woocommerce-admin-users.php:224 -#@ woocommerce -msgid "State/County" -msgstr "Šalis" - -#: admin/post-types/writepanels/writepanel-order_data.php:182 -#: admin/woocommerce-admin-users.php:187 -#: templates/myaccount/form-login.php:78 -#: templates/single-product-reviews.php:86 -#@ woocommerce -msgid "Email" -msgstr "E.paštas" - -#: admin/post-types/writepanels/writepanel-order_data.php:185 -#: classes/class-wc-countries.php:1080 -#@ woocommerce -msgid "Phone" -msgstr "Telefono numeris" - -#: admin/post-types/writepanels/writepanel-order_data.php:193 -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#: admin/post-types/writepanels/writepanel-order_data.php:277 -#: admin/post-types/writepanels/writepanel-order_data.php:279 -#: classes/class-wc-countries.php:698 -#@ woocommerce -msgid "Address" -msgstr "Adresas" - -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#@ woocommerce -msgid "No billing address set." -msgstr "Trūksta mokėtojo adreso." - -#: admin/post-types/writepanels/writepanel-order_data.php:208 -#@ woocommerce -msgid "Load billing address" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#@ woocommerce -msgid "Shipping Details" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:279 -#@ woocommerce -msgid "No shipping address set." -msgstr "Trūksta pristatymo adreso." - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -#@ woocommerce -msgid "Load shipping address" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -#@ woocommerce -msgid "Copy from billing" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:339 -#@ woocommerce -msgid "Item" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#: admin/post-types/writepanels/writepanel-product_data.php:191 -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Tax Class" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#@ woocommerce -msgid "Tax class for the line item" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:347 -#: templates/checkout/form-pay.php:20 -#@ woocommerce -msgid "Qty" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -#: templates/checkout/form-pay.php:21 -#@ woocommerce -msgid "Totals" -msgstr "Viso" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -#@ woocommerce -msgid "Line subtotals are before pre-tax discounts, totals are after." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:352 -#: admin/settings/settings-tax-rates.php:387 -#: admin/settings/settings-tax-rates.php:475 -#: admin/woocommerce-admin-content.php:48 -#: admin/woocommerce-admin-settings.php:186 -#: classes/class-wc-countries.php:444 -#@ woocommerce -msgid "Tax" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:388 -#@ woocommerce -msgid "Delete Lines" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:390 -#@ woocommerce -msgid "Stock Actions" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:391 -#@ woocommerce -msgid "Reduce Line Stock" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:392 -#@ woocommerce -msgid "Increase Line Stock" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:396 -#: admin/post-types/writepanels/writepanel-order_data.php:456 -#@ woocommerce -msgid "Apply" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:402 -#@ woocommerce -msgid "Add item(s)" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:403 -#@ woocommerce -msgid "Add fee" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:434 -#@ woocommerce -msgid "Resend order emails" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:465 -#@ woocommerce -msgid "Move to Trash" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -#@ woocommerce -msgid "Save Order" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -#@ woocommerce -msgid "Save/update the order" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:498 -#@ woocommerce -msgid "Discounts" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:502 -#: classes/class-wc-order.php:955 -#@ woocommerce -msgid "Cart Discount:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:502 -#@ woocommerce -msgid "Discounts before tax - calculated by comparing subtotals to totals." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:510 -#: classes/class-wc-order.php:997 -#@ woocommerce -msgid "Order Discount:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:510 -#@ woocommerce -msgid "Discounts after tax - user defined." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:543 -#@ woocommerce -msgid "Label:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:544 -#@ woocommerce -msgid "The shipping title the customer sees" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:551 -#@ woocommerce -msgid "Cost:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:552 -#: classes/class-wc-countries.php:470 -#@ woocommerce -msgid "(ex. tax)" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:559 -#@ woocommerce -msgid "Method:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:581 -#: admin/post-types/writepanels/writepanel-order_data.php:583 -#: admin/post-types/writepanels/writepanel-order_data.php:682 -#: admin/post-types/writepanels/writepanel-order_data.php:684 -#@ woocommerce -msgid "Other" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:597 -#@ woocommerce -msgid "Tax Rows" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:622 -#@ woocommerce -msgid "+ Add tax row" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:622 -#@ woocommerce -msgid "These rows contain taxes for this order. This allows you to display multiple or compound taxes rather than a single total." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:626 -#@ woocommerce -msgid "Tax Totals" -msgstr "Viso mokesčių" - -#: admin/post-types/writepanels/writepanel-order_data.php:630 -#@ woocommerce -msgid "Total tax for line items + fees." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:652 -#: admin/post-types/writepanels/writepanels-init.php:70 -#@ woocommerce -msgid "Order Totals" -msgstr "Užsakymo suma" - -#: admin/post-types/writepanels/writepanel-order_data.php:656 -#: classes/class-wc-order.php:1002 -#@ woocommerce -msgid "Order Total:" -msgstr "Užsakymo suma:" - -#: admin/post-types/writepanels/writepanel-order_data.php:664 -#@ woocommerce -msgid "Payment Method:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:695 -#@ woocommerce -msgid "Calc taxes" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:697 -#@ woocommerce -msgid "Calc totals" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:57 -#@ woocommerce -msgid "Choose a downloadable product…" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:87 -#@ woocommerce -msgid "Grant Access" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:125 -#@ woocommerce -msgid "Could not grant access - the user may already have permission for this file or billing email is not set. Ensure the billing email is set, and the order has been saved." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:148 -#@ woocommerce -msgid "Are you sure you want to revoke access to this download?" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -#, php-format -#@ woocommerce -msgid "added %s ago" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -#: woocommerce-ajax.php:1489 -#@ woocommerce -msgid "Delete note" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_notes.php:50 -#@ woocommerce -msgid "There are no notes for this order yet." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -#@ woocommerce -msgid "Add note" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -#@ woocommerce -msgid "Add a note for your reference, or add a customer note (the user will be notified)." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_notes.php:62 -#: classes/emails/class-wc-email-customer-note.php:29 -#@ woocommerce -msgid "Customer note" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_notes.php:63 -#@ woocommerce -msgid "Private note" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_notes.php:65 -#: admin/post-types/writepanels/writepanel-product_data.php:501 -#@ woocommerce -msgid "Add" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -#@ woocommerce -msgid "Variations for variable products are defined here." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -#: woocommerce.php:1020 -#@ woocommerce -msgid "Variations" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:64 -#@ woocommerce -msgid "Before adding variations, add and save some attributes on the Attributes tab." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:66 -#@ woocommerce -msgid "Learn more" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:73 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -#@ woocommerce -msgid "Close all" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:73 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -#@ woocommerce -msgid "Expand all" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#@ woocommerce -msgid "Bulk edit:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:76 -#@ woocommerce -msgid "Toggle "Enabled"" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:77 -#@ woocommerce -msgid "Toggle "Downloadable"" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:78 -#@ woocommerce -msgid "Toggle "Virtual"" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:79 -#@ woocommerce -msgid "Delete all variations" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:80 -#@ woocommerce -msgid "Prices" -msgstr "Kainos" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:81 -#@ woocommerce -msgid "Sale prices" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:87 -#@ woocommerce -msgid "File Path" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:88 -#@ woocommerce -msgid "Download limit" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:89 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -#@ woocommerce -msgid "Download Expiry" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:92 -#@ woocommerce -msgid "Go" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:194 -#: woocommerce.php:1022 -#@ woocommerce -msgid "Add Variation" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:196 -#@ woocommerce -msgid "Link all variations" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:198 -#@ woocommerce -msgid "Default selections:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:211 -#@ woocommerce -msgid "No default" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:300 -#@ woocommerce -msgid "Are you sure you want to link all variations? This will create a new variation for each and every possible combination of variation attributes (max 50 per run)." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:317 -#@ woocommerce -msgid "variation added" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:319 -#@ woocommerce -msgid "variations added" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:321 -#@ woocommerce -msgid "No variations added" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:344 -#@ woocommerce -msgid "Are you sure you want to remove this variation?" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:400 -#@ woocommerce -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:403 -#@ woocommerce -msgid "Last warning, are you sure?" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:440 -#@ woocommerce -msgid "Enter a value" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:518 -#: admin/woocommerce-admin-taxonomies.php:62 -#: admin/woocommerce-admin-taxonomies.php:154 -#@ woocommerce -msgid "Choose an image" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:520 -#@ woocommerce -msgid "Set variation image" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:564 -#@ woocommerce -msgid "Variable product" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:630 -#: classes/class-wc-emails.php:286 -#: classes/class-wc-emails.php:318 -#: classes/class-wc-emails.php:362 -#, php-format -#@ woocommerce -msgid "Variation #%s of %s" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:43 -#@ woocommerce -msgid "Product Type" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:53 -#@ woocommerce -msgid "Virtual products are intangible and aren't shipped." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:59 -#@ woocommerce -msgid "Downloadable products give access to a file upon purchase." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:77 -#: admin/woocommerce-admin-content.php:44 -#: admin/woocommerce-admin-settings.php:182 -#@ woocommerce -msgid "General" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:79 -#: admin/woocommerce-admin-content.php:47 -#: admin/woocommerce-admin-settings.php:185 -#@ woocommerce -msgid "Inventory" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:83 -#@ woocommerce -msgid "Linked Products" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:85 -#: admin/woocommerce-admin-attributes.php:306 -#: admin/woocommerce-admin-init.php:66 -#@ woocommerce -msgid "Attributes" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:87 -#@ woocommerce -msgid "Advanced" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#@ woocommerce -msgid "Stock Keeping Unit" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#@ woocommerce -msgid "SKU refers to a Stock-keeping unit, a unique identifier for each distinct product and service that can be purchased." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -#@ woocommerce -msgid "Product URL" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -#@ woocommerce -msgid "Enter the external URL to the product." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -#@ woocommerce -msgid "Button text" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -#@ woocommerce -msgctxt "placeholder" -msgid "Buy product" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -#@ woocommerce -msgid "This text will be shown on the button linking to the external product." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:119 -#@ woocommerce -msgid "Regular Price" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:125 -#@ woocommerce -msgid "Sale Price" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:135 -#@ woocommerce -msgid "Sale Price Dates" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:138 -#: admin/post-types/writepanels/writepanel-product_data.php:1083 -#: templates/myaccount/my-orders.php:77 -#@ woocommerce -msgid "Cancel" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:152 -#@ woocommerce -msgid "File paths (one per line)" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:158 -#@ woocommerce -msgid "Download Limit" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:178 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:107 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:81 -#@ woocommerce -msgid "Tax Status" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:180 -#@ woocommerce -msgid "Shipping only" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:181 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:112 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:86 -#@ woocommerce -msgid "None" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:212 -#@ woocommerce -msgid "Enable stock management at product level" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:219 -#@ woocommerce -msgid "Stock quantity. If this is a variable product this value will be used to control stock for all variations, unless you define stock at variation level." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:230 -#@ woocommerce -msgid "Stock status" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:233 -#@ woocommerce -msgid "Controls whether or not the product is listed as \"in stock\" or \"out of stock\" on the frontend." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:240 -#@ woocommerce -msgid "Allow Backorders?" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:241 -#@ woocommerce -msgid "Do not allow" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:242 -#@ woocommerce -msgid "Allow, but notify customer" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:243 -#@ woocommerce -msgid "Allow" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:244 -#@ woocommerce -msgid "If managing stock, this controls whether or not backorders are allowed for this product and variations. If enabled, stock quantity can go below 0." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -#@ woocommerce -msgid "Sold Individually" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -#@ woocommerce -msgid "Enable this to only allow one of this item to be bought in a single order" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:273 -#@ woocommerce -msgid "Weight in decimal form" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:284 -#: templates/single-product/product-attributes.php:37 -#@ woocommerce -msgid "Dimensions" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:290 -#@ woocommerce -msgid "LxWxH in decimal form" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:311 -#@ woocommerce -msgid "No shipping class" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -#@ woocommerce -msgid "Shipping class" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -#@ woocommerce -msgid "Shipping classes are used by certain shipping methods to group similar products." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:384 -#: admin/post-types/writepanels/writepanel-product_data.php:476 -#: admin/woocommerce-admin-init.php:440 -#@ woocommerce -msgid "Value(s)" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:386 -#@ woocommerce -msgid "Select terms" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:398 -#@ woocommerce -msgid "Select all" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:398 -#@ woocommerce -msgid "Select none" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:400 -#@ woocommerce -msgid "Add new" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:413 -#@ woocommerce -msgid "Pipe (|) separate terms" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:427 -#: admin/post-types/writepanels/writepanel-product_data.php:482 -#: admin/woocommerce-admin-init.php:442 -#@ woocommerce -msgid "Visible on the product page" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:440 -#: admin/post-types/writepanels/writepanel-product_data.php:488 -#: admin/woocommerce-admin-init.php:443 -#@ woocommerce -msgid "Used for variations" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:477 -#: admin/woocommerce-admin-init.php:441 -#@ woocommerce -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:503 -#@ woocommerce -msgid "Custom product attribute" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:515 -#@ woocommerce -msgid "Save attributes" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:522 -#@ woocommerce -msgid "Up-Sells" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:537 -#@ woocommerce -msgid "Up-sells are products which you recommend instead of the currently viewed product, for example, products that are more profitable or better quality or more expensive." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:539 -#@ woocommerce -msgid "Cross-Sells" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:555 -#@ woocommerce -msgid "Cross-sells are products which you promote in the cart, based on the current product." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:565 -#@ woocommerce -msgid "Choose a grouped product…" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:591 -#@ woocommerce -msgid "Grouping" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:591 -#@ woocommerce -msgid "Set this option to make this product part of a grouped product." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:611 -#@ woocommerce -msgid "Purchase Note" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:611 -#@ woocommerce -msgid "Enter an optional note to send the customer after purchase." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:618 -#@ woocommerce -msgid "Menu order" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:618 -#@ woocommerce -msgid "Custom ordering position." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:626 -#@ woocommerce -msgid "Enable reviews" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:715 -#@ woocommerce -msgid "Product SKU must be unique." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:1047 -#@ woocommerce -msgid "Catalog/search" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:1054 -#@ woocommerce -msgid "Catalog visibility:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:1070 -#@ woocommerce -msgid "Define the loops this product should be visible in. The product will still be accessible directly." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:1076 -#@ woocommerce -msgid "Enable this option to feature this product." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:1078 -#@ woocommerce -msgid "Featured Product" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:1082 -#@ woocommerce -msgid "OK" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_images.php:43 -#: admin/post-types/writepanels/writepanel-product_images.php:103 -#@ woocommerce -msgid "Delete image" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_images.php:43 -#: admin/post-types/writepanels/writepanel-product_images.php:103 -#: admin/woocommerce-admin-attributes.php:330 -#@ woocommerce -msgid "Delete" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_images.php:54 -#@ woocommerce -msgid "Add product gallery images" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_images.php:80 -#@ woocommerce -msgid "Add Images to Product Gallery" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_images.php:82 -#@ woocommerce -msgid "Add to gallery" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:47 -#@ woocommerce -msgid "Product Gallery" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:55 -#@ woocommerce -msgid "Product Short Description" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:64 -#: templates/single-product-reviews.php:36 -#: templates/single-product-reviews.php:42 -#@ woocommerce -msgid "Reviews" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:68 -#@ woocommerce -msgid "Order Data" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:69 -#@ woocommerce -msgid "Order Items" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:69 -#@ woocommerce -msgid "Note: if you edit quantities or remove items from the order you will need to manually update stock levels." -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:72 -#@ woocommerce -msgid "Downloadable Product Permissions" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:72 -#@ woocommerce -msgid "Note: Permissions for order items will automatically be granted when the order status changes to processing/completed." -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:73 -#@ woocommerce -msgid "Order Actions" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:81 -#@ woocommerce -msgid "Coupon Data" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:100 -#: templates/checkout/form-coupon.php:25 -#@ woocommerce -msgid "Coupon code" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:101 -#@ woocommerce -msgid "Product name" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:185 -#@ woocommerce -msgid "Allow reviews." -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:186 -#, php-format -#@ default -msgid "Allow trackbacks and pingbacks on this page." -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:186 -#@ default -msgid "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:23 -#@ woocommerce -msgid "Styles" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:43 -#@ woocommerce -msgid "Primary" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:43 -#@ woocommerce -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:44 -#@ woocommerce -msgid "Secondary" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:44 -#@ woocommerce -msgid "Buttons and tabs" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:45 -#@ woocommerce -msgid "Highlight" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:45 -#@ woocommerce -msgid "Price labels and Sale Flashes" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:46 -#@ woocommerce -msgid "Content" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:46 -#@ woocommerce -msgid "Your themes page background - used for tab active states" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:47 -#@ woocommerce -msgid "Subtext" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:47 -#@ woocommerce -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "" - -#: admin/settings/settings-frontend-styles.php:51 -#@ woocommerce -msgid "To edit colours woocommerce/assets/css/woocommerce-base.less and woocommerce.css need to be writable. See the Codex for more information." -msgstr "" - -#: admin/settings/settings-init.php:18 -#@ woocommerce -msgid "Localisation" -msgstr "" - -#: admin/settings/settings-init.php:19 -#, php-format -#@ woocommerce -msgid "Use informal localisation for %s" -msgstr "" - -#: admin/settings/settings-init.php:33 -#@ woocommerce -msgid "General Options" -msgstr "" - -#: admin/settings/settings-init.php:36 -#@ woocommerce -msgid "Base Location" -msgstr "" - -#: admin/settings/settings-init.php:37 -#@ woocommerce -msgid "This is the base location for your business. Tax rates will be based on this country." -msgstr "" - -#: admin/settings/settings-init.php:46 -#@ woocommerce -msgid "Currency" -msgstr "" - -#: admin/settings/settings-init.php:47 -#@ woocommerce -msgid "This controls what currency prices are listed at in the catalog and which currency gateways will take payments in." -msgstr "" - -#: admin/settings/settings-init.php:58 -#@ woocommerce -msgid "Allowed Countries" -msgstr "" - -#: admin/settings/settings-init.php:59 -#@ woocommerce -msgid "These are countries that you are willing to ship to." -msgstr "" - -#: admin/settings/settings-init.php:67 -#@ woocommerce -msgid "All Countries" -msgstr "" - -#: admin/settings/settings-init.php:68 -#: admin/settings/settings-init.php:73 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:95 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:99 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:98 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:149 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:153 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:103 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:107 -#@ woocommerce -msgid "Specific Countries" -msgstr "" - -#: admin/settings/settings-init.php:84 -#@ woocommerce -msgid "Store Notice" -msgstr "" - -#: admin/settings/settings-init.php:85 -#@ woocommerce -msgid "Enable site-wide store notice text" -msgstr "" - -#: admin/settings/settings-init.php:92 -#@ woocommerce -msgid "Store Notice Text" -msgstr "" - -#: admin/settings/settings-init.php:95 -#: woocommerce-template.php:200 -#@ woocommerce -msgid "This is a demo store for testing purposes — no orders shall be fulfilled." -msgstr "" - -#: admin/settings/settings-init.php:102 -#@ woocommerce -msgid "Cart, Checkout and Accounts" -msgstr "" - -#: admin/settings/settings-init.php:105 -#: admin/woocommerce-admin-content.php:61 -#: admin/woocommerce-admin-content.php:76 -#: admin/woocommerce-admin-reports.php:63 -#: woocommerce.php:1095 -#@ woocommerce -msgid "Coupons" -msgstr "" - -#: admin/settings/settings-init.php:106 -#@ woocommerce -msgid "Enable the use of coupons" -msgstr "" - -#: admin/settings/settings-init.php:110 -#@ woocommerce -msgid "Coupons can be applied from the cart and checkout pages." -msgstr "" - -#: admin/settings/settings-init.php:114 -#: admin/woocommerce-admin-install.php:201 -#: admin/woocommerce-admin-status.php:318 -#: assets/js/admin/editor_plugin_lang.php:16 -#@ woocommerce -msgid "Checkout" -msgstr "" - -#: admin/settings/settings-init.php:115 -#@ woocommerce -msgid "Enable guest checkout (no account required)" -msgstr "" - -#: admin/settings/settings-init.php:123 -#@ woocommerce -msgid "Enable customer note field on checkout" -msgstr "" - -#: admin/settings/settings-init.php:131 -#@ woocommerce -msgid "Force secure checkout" -msgstr "" - -#: admin/settings/settings-init.php:137 -#@ woocommerce -msgid "Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -msgstr "" - -#: admin/settings/settings-init.php:141 -#@ woocommerce -msgid "Un-force HTTPS when leaving the checkout" -msgstr "" - -#: admin/settings/settings-init.php:150 -#@ woocommerce -msgid "Registration" -msgstr "" - -#: admin/settings/settings-init.php:151 -#@ woocommerce -msgid "Allow registration on the checkout page" -msgstr "" - -#: admin/settings/settings-init.php:159 -#@ woocommerce -msgid "Allow registration on the \"My Account\" page" -msgstr "" - -#: admin/settings/settings-init.php:167 -#@ woocommerce -msgid "Register using the email address for the username" -msgstr "" - -#: admin/settings/settings-init.php:175 -#@ woocommerce -msgid "Customer Accounts" -msgstr "" - -#: admin/settings/settings-init.php:176 -#@ woocommerce -msgid "Prevent customers from accessing WordPress admin" -msgstr "" - -#: admin/settings/settings-init.php:184 -#@ woocommerce -msgid "Clear cart when logging out" -msgstr "" - -#: admin/settings/settings-init.php:192 -#@ woocommerce -msgid "Allow customers to repurchase orders from their account page" -msgstr "" - -#: admin/settings/settings-init.php:201 -#@ woocommerce -msgid "Styles and Scripts" -msgstr "" - -#: admin/settings/settings-init.php:204 -#@ woocommerce -msgid "Styling" -msgstr "" - -#: admin/settings/settings-init.php:205 -#@ woocommerce -msgid "Enable WooCommerce CSS" -msgstr "" - -#: admin/settings/settings-init.php:216 -#@ woocommerce -msgid "Scripts" -msgstr "" - -#: admin/settings/settings-init.php:217 -#@ woocommerce -msgid "Enable Lightbox" -msgstr "" - -#: admin/settings/settings-init.php:220 -#@ woocommerce -msgid "Include WooCommerce's lightbox. Product gallery images and the add review form will open in a lightbox." -msgstr "" - -#: admin/settings/settings-init.php:226 -#@ woocommerce -msgid "Enable enhanced country select boxes" -msgstr "" - -#: admin/settings/settings-init.php:231 -#@ woocommerce -msgid "This will enable a script allowing the country fields to be searchable." -msgstr "" - -#: admin/settings/settings-init.php:236 -#@ woocommerce -msgid "Downloadable Products" -msgstr "" - -#: admin/settings/settings-init.php:239 -#@ woocommerce -msgid "File Download Method" -msgstr "" - -#: admin/settings/settings-init.php:240 -#@ woocommerce -msgid "Forcing downloads will keep URLs hidden, but some servers may serve large files unreliably. If supported, X-Accel-Redirect/ X-Sendfile can be used to serve downloads instead (server requires mod_xsendfile)." -msgstr "" - -#: admin/settings/settings-init.php:248 -#@ woocommerce -msgid "Force Downloads" -msgstr "" - -#: admin/settings/settings-init.php:249 -#@ woocommerce -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "" - -#: admin/settings/settings-init.php:250 -#@ woocommerce -msgid "Redirect only" -msgstr "" - -#: admin/settings/settings-init.php:255 -#@ woocommerce -msgid "Access Restriction" -msgstr "" - -#: admin/settings/settings-init.php:256 -#@ woocommerce -msgid "Downloads require login" -msgstr "" - -#: admin/settings/settings-init.php:260 -#@ woocommerce -msgid "This setting does not apply to guest purchases." -msgstr "" - -#: admin/settings/settings-init.php:265 -#@ woocommerce -msgid "Grant access to downloadable products after payment" -msgstr "" - -#: admin/settings/settings-init.php:269 -#@ woocommerce -msgid "Enable this option to grant access to downloads when orders are \"processing\", rather than \"completed\"." -msgstr "" - -#: admin/settings/settings-init.php:285 -#@ woocommerce -msgid "Note: The shop page has children - child pages will not work if you enable this option." -msgstr "" - -#: admin/settings/settings-init.php:290 -#@ woocommerce -msgid "Page Setup" -msgstr "" - -#: admin/settings/settings-init.php:292 -#, php-format -#@ woocommerce -msgid "Set up core WooCommerce pages here, for example the base page. The base page can also be used in your %sproduct permalinks%s." -msgstr "" - -#: admin/settings/settings-init.php:297 -#@ woocommerce -msgid "Shop Base Page" -msgstr "" - -#: admin/settings/settings-init.php:298 -#@ woocommerce -msgid "This sets the base page of your shop - this is where your product archive will be." -msgstr "" - -#: admin/settings/settings-init.php:308 -#@ woocommerce -msgid "Terms Page ID" -msgstr "" - -#: admin/settings/settings-init.php:309 -#@ woocommerce -msgid "If you define a \"Terms\" page the customer will be asked if they accept them when checking out." -msgstr "" - -#: admin/settings/settings-init.php:320 -#@ woocommerce -msgid "Shop Pages" -msgstr "" - -#: admin/settings/settings-init.php:320 -#@ woocommerce -msgid "The following pages need selecting so that WooCommerce knows where they are. These pages should have been created upon installation of the plugin, if not you will need to create them." -msgstr "" - -#: admin/settings/settings-init.php:323 -#@ woocommerce -msgid "Cart Page" -msgstr "" - -#: admin/settings/settings-init.php:324 -#@ woocommerce -msgid "Page contents: [woocommerce_cart]" -msgstr "" - -#: admin/settings/settings-init.php:334 -#@ woocommerce -msgid "Checkout Page" -msgstr "" - -#: admin/settings/settings-init.php:335 -#@ woocommerce -msgid "Page contents: [woocommerce_checkout]" -msgstr "" - -#: admin/settings/settings-init.php:345 -#@ woocommerce -msgid "Pay Page" -msgstr "" - -#: admin/settings/settings-init.php:346 -#@ woocommerce -msgid "Page contents: [woocommerce_pay] Parent: \"Checkout\"" -msgstr "" - -#: admin/settings/settings-init.php:356 -#@ woocommerce -msgid "Thanks Page" -msgstr "" - -#: admin/settings/settings-init.php:357 -#@ woocommerce -msgid "Page contents: [woocommerce_thankyou] Parent: \"Checkout\"" -msgstr "" - -#: admin/settings/settings-init.php:367 -#@ woocommerce -msgid "My Account Page" -msgstr "" - -#: admin/settings/settings-init.php:368 -#@ woocommerce -msgid "Page contents: [woocommerce_my_account]" -msgstr "" - -#: admin/settings/settings-init.php:378 -#@ woocommerce -msgid "Edit Address Page" -msgstr "" - -#: admin/settings/settings-init.php:379 -#@ woocommerce -msgid "Page contents: [woocommerce_edit_address] Parent: \"My Account\"" -msgstr "" - -#: admin/settings/settings-init.php:389 -#@ woocommerce -msgid "View Order Page" -msgstr "" - -#: admin/settings/settings-init.php:390 -#@ woocommerce -msgid "Page contents: [woocommerce_view_order] Parent: \"My Account\"" -msgstr "" - -#: admin/settings/settings-init.php:400 -#@ woocommerce -msgid "Change Password Page" -msgstr "" - -#: admin/settings/settings-init.php:401 -#@ woocommerce -msgid "Page contents: [woocommerce_change_password] Parent: \"My Account\"" -msgstr "" - -#: admin/settings/settings-init.php:411 -#@ woocommerce -msgid "Logout Page" -msgstr "" - -#: admin/settings/settings-init.php:412 -#@ woocommerce -msgid "Parent: \"My Account\"" -msgstr "" - -#: admin/settings/settings-init.php:422 -#@ woocommerce -msgid "Lost Password Page" -msgstr "" - -#: admin/settings/settings-init.php:423 -#@ woocommerce -msgid "Page contents: [woocommerce_lost_password] Parent: \"My Account\"" -msgstr "" - -#: admin/settings/settings-init.php:439 -#@ woocommerce -msgid "Catalog Options" -msgstr "" - -#: admin/settings/settings-init.php:442 -#@ woocommerce -msgid "Default Product Sorting" -msgstr "" - -#: admin/settings/settings-init.php:443 -#@ woocommerce -msgid "This controls the default sort order of the catalog." -msgstr "" - -#: admin/settings/settings-init.php:449 -#@ woocommerce -msgid "Default sorting (custom ordering + name)" -msgstr "" - -#: admin/settings/settings-init.php:450 -#@ woocommerce -msgid "Popularity (sales)" -msgstr "" - -#: admin/settings/settings-init.php:451 -#@ woocommerce -msgid "Average Rating" -msgstr "" - -#: admin/settings/settings-init.php:452 -#@ woocommerce -msgid "Sort by most recent" -msgstr "" - -#: admin/settings/settings-init.php:453 -#@ woocommerce -msgid "Sort by price (asc)" -msgstr "" - -#: admin/settings/settings-init.php:454 -#@ woocommerce -msgid "Sort by price (desc)" -msgstr "" - -#: admin/settings/settings-init.php:460 -#@ woocommerce -msgid "Shop Page Display" -msgstr "" - -#: admin/settings/settings-init.php:461 -#@ woocommerce -msgid "This controls what is shown on the product archive." -msgstr "" - -#: admin/settings/settings-init.php:467 -#: admin/settings/settings-init.php:482 -#@ woocommerce -msgid "Show products" -msgstr "" - -#: admin/settings/settings-init.php:468 -#: admin/settings/settings-init.php:483 -#@ woocommerce -msgid "Show subcategories" -msgstr "" - -#: admin/settings/settings-init.php:469 -#: admin/settings/settings-init.php:484 -#@ woocommerce -msgid "Show both" -msgstr "" - -#: admin/settings/settings-init.php:475 -#@ woocommerce -msgid "Default Category Display" -msgstr "" - -#: admin/settings/settings-init.php:476 -#@ woocommerce -msgid "This controls what is shown on category archives." -msgstr "" - -#: admin/settings/settings-init.php:490 -#: classes/class-wc-shortcodes.php:571 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:270 -#: templates/loop/add-to-cart.php:46 -#: templates/single-product/add-to-cart/grouped.php:45 -#: templates/single-product/add-to-cart/grouped.php:77 -#: templates/single-product/add-to-cart/simple.php:42 -#: templates/single-product/add-to-cart/variable.php:83 -#@ woocommerce -msgid "Add to cart" -msgstr "Įdėti į krepšelį" - -#: admin/settings/settings-init.php:491 -#@ woocommerce -msgid "Redirect to the cart page after successful addition" -msgstr "" - -#: admin/settings/settings-init.php:499 -#@ woocommerce -msgid "Enable AJAX add to cart buttons on archives" -msgstr "" - -#: admin/settings/settings-init.php:508 -#@ woocommerce -msgid "The following options affect the fields available on the edit product page." -msgstr "" - -#: admin/settings/settings-init.php:511 -#@ woocommerce -msgid "Product Fields" -msgstr "" - -#: admin/settings/settings-init.php:512 -#@ woocommerce -msgid "Enable the SKU field for products" -msgstr "" - -#: admin/settings/settings-init.php:520 -#@ woocommerce -msgid "Enable the weight field for products (some shipping methods may require this)" -msgstr "" - -#: admin/settings/settings-init.php:528 -#@ woocommerce -msgid "Enable the dimension fields for products (some shipping methods may require this)" -msgstr "" - -#: admin/settings/settings-init.php:536 -#@ woocommerce -msgid "Show weight and dimension values on the Additional Information tab" -msgstr "" - -#: admin/settings/settings-init.php:544 -#@ woocommerce -msgid "Weight Unit" -msgstr "" - -#: admin/settings/settings-init.php:545 -#@ woocommerce -msgid "This controls what unit you will define weights in." -msgstr "" - -#: admin/settings/settings-init.php:551 -#@ woocommerce -msgid "kg" -msgstr "" - -#: admin/settings/settings-init.php:552 -#@ woocommerce -msgid "g" -msgstr "" - -#: admin/settings/settings-init.php:553 -#@ woocommerce -msgid "lbs" -msgstr "" - -#: admin/settings/settings-init.php:554 -#@ woocommerce -msgid "oz" -msgstr "" - -#: admin/settings/settings-init.php:560 -#@ woocommerce -msgid "Dimensions Unit" -msgstr "" - -#: admin/settings/settings-init.php:561 -#@ woocommerce -msgid "This controls what unit you will define lengths in." -msgstr "" - -#: admin/settings/settings-init.php:568 -#@ woocommerce -msgid "cm" -msgstr "" - -#: admin/settings/settings-init.php:569 -#@ woocommerce -msgid "mm" -msgstr "" - -#: admin/settings/settings-init.php:570 -#@ woocommerce -msgid "in" -msgstr "" - -#: admin/settings/settings-init.php:571 -#@ woocommerce -msgid "yd" -msgstr "" - -#: admin/settings/settings-init.php:577 -#@ woocommerce -msgid "Product Ratings" -msgstr "" - -#: admin/settings/settings-init.php:578 -#@ woocommerce -msgid "Enable ratings on reviews" -msgstr "" - -#: admin/settings/settings-init.php:587 -#@ woocommerce -msgid "Ratings are required to leave a review" -msgstr "" - -#: admin/settings/settings-init.php:596 -#@ woocommerce -msgid "Show \"verified owner\" label for customer reviews" -msgstr "" - -#: admin/settings/settings-init.php:606 -#@ woocommerce -msgid "Pricing Options" -msgstr "" - -#: admin/settings/settings-init.php:606 -#@ woocommerce -msgid "The following options affect how prices are displayed on the frontend." -msgstr "" - -#: admin/settings/settings-init.php:609 -#@ woocommerce -msgid "Currency Position" -msgstr "" - -#: admin/settings/settings-init.php:610 -#@ woocommerce -msgid "This controls the position of the currency symbol." -msgstr "" - -#: admin/settings/settings-init.php:616 -#@ woocommerce -msgid "Left" -msgstr "" - -#: admin/settings/settings-init.php:617 -#@ woocommerce -msgid "Right" -msgstr "" - -#: admin/settings/settings-init.php:618 -#@ woocommerce -msgid "Left (with space)" -msgstr "" - -#: admin/settings/settings-init.php:619 -#@ woocommerce -msgid "Right (with space)" -msgstr "" - -#: admin/settings/settings-init.php:625 -#@ woocommerce -msgid "Thousand Separator" -msgstr "" - -#: admin/settings/settings-init.php:626 -#@ woocommerce -msgid "This sets the thousand separator of displayed prices." -msgstr "" - -#: admin/settings/settings-init.php:635 -#@ woocommerce -msgid "Decimal Separator" -msgstr "" - -#: admin/settings/settings-init.php:636 -#@ woocommerce -msgid "This sets the decimal separator of displayed prices." -msgstr "" - -#: admin/settings/settings-init.php:645 -#@ woocommerce -msgid "Number of Decimals" -msgstr "" - -#: admin/settings/settings-init.php:646 -#@ woocommerce -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "" - -#: admin/settings/settings-init.php:659 -#@ woocommerce -msgid "Trailing Zeros" -msgstr "" - -#: admin/settings/settings-init.php:660 -#@ woocommerce -msgid "Remove zeros after the decimal point. e.g. $10.00 becomes $10" -msgstr "" - -#: admin/settings/settings-init.php:668 -#@ woocommerce -msgid "Image Options" -msgstr "" - -#: admin/settings/settings-init.php:668 -#, php-format -#@ woocommerce -msgid "These settings affect the actual dimensions of images in your catalog - the display on the front-end will still be affected by CSS styles. After changing these settings you may need to regenerate your thumbnails." -msgstr "" - -#: admin/settings/settings-init.php:671 -#@ woocommerce -msgid "Catalog Images" -msgstr "" - -#: admin/settings/settings-init.php:672 -#@ woocommerce -msgid "This size is usually used in product listings" -msgstr "" - -#: admin/settings/settings-init.php:685 -#@ woocommerce -msgid "Single Product Image" -msgstr "" - -#: admin/settings/settings-init.php:686 -#@ woocommerce -msgid "This is the size used by the main image on the product page." -msgstr "" - -#: admin/settings/settings-init.php:699 -#@ woocommerce -msgid "Product Thumbnails" -msgstr "" - -#: admin/settings/settings-init.php:700 -#@ woocommerce -msgid "This size is usually used for the gallery of images on the product page." -msgstr "" - -#: admin/settings/settings-init.php:719 -#@ woocommerce -msgid "Inventory Options" -msgstr "" - -#: admin/settings/settings-init.php:722 -#@ woocommerce -msgid "Manage Stock" -msgstr "" - -#: admin/settings/settings-init.php:723 -#@ woocommerce -msgid "Enable stock management" -msgstr "" - -#: admin/settings/settings-init.php:730 -#@ woocommerce -msgid "Hold Stock (minutes)" -msgstr "" - -#: admin/settings/settings-init.php:731 -#@ woocommerce -msgid "Hold stock (for unpaid orders) for x minutes. When this limit is reached, the pending order will be cancelled. Leave blank to disable." -msgstr "" - -#: admin/settings/settings-init.php:743 -#@ woocommerce -msgid "Notifications" -msgstr "" - -#: admin/settings/settings-init.php:744 -#@ woocommerce -msgid "Enable low stock notifications" -msgstr "" - -#: admin/settings/settings-init.php:752 -#@ woocommerce -msgid "Enable out of stock notifications" -msgstr "" - -#: admin/settings/settings-init.php:760 -#@ woocommerce -msgid "Notification Recipient" -msgstr "" - -#: admin/settings/settings-init.php:768 -#@ woocommerce -msgid "Low Stock Threshold" -msgstr "" - -#: admin/settings/settings-init.php:781 -#@ woocommerce -msgid "Out Of Stock Threshold" -msgstr "" - -#: admin/settings/settings-init.php:794 -#@ woocommerce -msgid "Out Of Stock Visibility" -msgstr "" - -#: admin/settings/settings-init.php:795 -#@ woocommerce -msgid "Hide out of stock items from the catalog" -msgstr "" - -#: admin/settings/settings-init.php:802 -#@ woocommerce -msgid "Stock Display Format" -msgstr "" - -#: admin/settings/settings-init.php:803 -#@ woocommerce -msgid "This controls how stock is displayed on the frontend." -msgstr "" - -#: admin/settings/settings-init.php:809 -#@ woocommerce -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "" - -#: admin/settings/settings-init.php:810 -#@ woocommerce -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "" - -#: admin/settings/settings-init.php:811 -#@ woocommerce -msgid "Never show stock amount" -msgstr "" - -#: admin/settings/settings-init.php:823 -#: admin/woocommerce-admin-settings.php:292 -#@ woocommerce -msgid "Shipping Options" -msgstr "" - -#: admin/settings/settings-init.php:826 -#@ woocommerce -msgid "Shipping Calculations" -msgstr "" - -#: admin/settings/settings-init.php:827 -#@ woocommerce -msgid "Enable shipping" -msgstr "" - -#: admin/settings/settings-init.php:835 -#@ woocommerce -msgid "Enable the shipping calculator on the cart page" -msgstr "" - -#: admin/settings/settings-init.php:843 -#@ woocommerce -msgid "Hide shipping costs until an address is entered" -msgstr "" - -#: admin/settings/settings-init.php:851 -#@ woocommerce -msgid "Shipping Method Display" -msgstr "" - -#: admin/settings/settings-init.php:852 -#@ woocommerce -msgid "This controls how multiple shipping methods are displayed on the frontend." -msgstr "" - -#: admin/settings/settings-init.php:858 -#@ woocommerce -msgid "Radio buttons" -msgstr "" - -#: admin/settings/settings-init.php:859 -#@ woocommerce -msgid "Select box" -msgstr "" - -#: admin/settings/settings-init.php:865 -#@ woocommerce -msgid "Shipping Destination" -msgstr "Pristatymo adresas" - -#: admin/settings/settings-init.php:866 -#@ woocommerce -msgid "Only ship to the users billing address" -msgstr "" - -#: admin/settings/settings-init.php:874 -#@ woocommerce -msgid "Ship to billing address by default" -msgstr "" - -#: admin/settings/settings-init.php:882 -#@ woocommerce -msgid "Collect shipping address even when not required" -msgstr "" - -#: admin/settings/settings-init.php:900 -#: admin/woocommerce-admin-settings.php:188 -#: admin/woocommerce-admin-settings.php:329 -#@ woocommerce -msgid "Payment Gateways" -msgstr "" - -#: admin/settings/settings-init.php:900 -#@ woocommerce -msgid "Installed payment gateways are displayed below. Drag and drop payment gateways to control their display order on the checkout." -msgstr "" - -#: admin/settings/settings-init.php:918 -#: admin/woocommerce-admin-settings.php:222 -#@ woocommerce -msgid "Tax Options" -msgstr "" - -#: admin/settings/settings-init.php:921 -#@ woocommerce -msgid "Enable Taxes" -msgstr "" - -#: admin/settings/settings-init.php:922 -#@ woocommerce -msgid "Enable taxes and tax calculations" -msgstr "" - -#: admin/settings/settings-init.php:929 -#@ woocommerce -msgid "Prices Entered With Tax" -msgstr "" - -#: admin/settings/settings-init.php:933 -#@ woocommerce -msgid "This option is important as it will affect how you input prices. Changing it will not update existing products." -msgstr "" - -#: admin/settings/settings-init.php:935 -#@ woocommerce -msgid "Yes, I will enter prices inclusive of tax" -msgstr "" - -#: admin/settings/settings-init.php:936 -#@ woocommerce -msgid "No, I will enter prices exclusive of tax" -msgstr "" - -#: admin/settings/settings-init.php:941 -#@ woocommerce -msgid "Calculate Tax Based On:" -msgstr "" - -#: admin/settings/settings-init.php:943 -#@ woocommerce -msgid "This option determines which address is used to calculate tax." -msgstr "" - -#: admin/settings/settings-init.php:947 -#@ woocommerce -msgid "Customer shipping address" -msgstr "Pristatymo adresas" - -#: admin/settings/settings-init.php:948 -#@ woocommerce -msgid "Customer billing address" -msgstr "Mokėtojo adresas" - -#: admin/settings/settings-init.php:949 -#: admin/settings/settings-init.php:961 -#@ woocommerce -msgid "Shop base address" -msgstr "" - -#: admin/settings/settings-init.php:954 -#@ woocommerce -msgid "Default Customer Address:" -msgstr "" - -#: admin/settings/settings-init.php:956 -#@ woocommerce -msgid "This option determines the customers default address (before they input their own)." -msgstr "" - -#: admin/settings/settings-init.php:960 -#@ woocommerce -msgid "No address" -msgstr "" - -#: admin/settings/settings-init.php:966 -#@ woocommerce -msgid "Shipping Tax Class:" -msgstr "" - -#: admin/settings/settings-init.php:967 -#@ woocommerce -msgid "Optionally control which tax class shipping gets, or leave it so shipping tax is based on the cart items themselves." -msgstr "" - -#: admin/settings/settings-init.php:972 -#@ woocommerce -msgid "Shipping tax class based on cart items" -msgstr "" - -#: admin/settings/settings-init.php:977 -#@ woocommerce -msgid "Rounding" -msgstr "" - -#: admin/settings/settings-init.php:978 -#@ woocommerce -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "" - -#: admin/settings/settings-init.php:985 -#@ woocommerce -msgid "Additional Tax Classes" -msgstr "" - -#: admin/settings/settings-init.php:986 -#@ woocommerce -msgid "List additonal tax classes below (1 per line). This is in addition to the default Standard Rate. Tax classes can be assigned to products." -msgstr "" - -#: admin/settings/settings-init.php:990 -#, php-format -#@ woocommerce -msgid "Reduced Rate%sZero Rate" -msgstr "" - -#: admin/settings/settings-init.php:994 -#@ woocommerce -msgid "Display prices during cart/checkout:" -msgstr "" - -#: admin/settings/settings-init.php:999 -#@ woocommerce -msgid "Including tax" -msgstr "" - -#: admin/settings/settings-init.php:1000 -#@ woocommerce -msgid "Excluding tax" -msgstr "" - -#: admin/settings/settings-init.php:1012 -#@ woocommerce -msgid "Email Sender Options" -msgstr "" - -#: admin/settings/settings-init.php:1012 -#@ woocommerce -msgid "The following options affect the sender (email address and name) used in WooCommerce emails." -msgstr "" - -#: admin/settings/settings-init.php:1015 -#@ woocommerce -msgid "\"From\" Name" -msgstr "" - -#: admin/settings/settings-init.php:1024 -#@ woocommerce -msgid "\"From\" Email Address" -msgstr "" - -#: admin/settings/settings-init.php:1037 -#@ woocommerce -msgid "Email Template" -msgstr "" - -#: admin/settings/settings-init.php:1037 -#, php-format -#@ woocommerce -msgid "This section lets you customise the WooCommerce emails. Click here to preview your email template. For more advanced control copy woocommerce/templates/emails/ to yourtheme/woocommerce/emails/." -msgstr "" - -#: admin/settings/settings-init.php:1040 -#@ woocommerce -msgid "Header Image" -msgstr "" - -#: admin/settings/settings-init.php:1041 -#, php-format -#@ woocommerce -msgid "Enter a URL to an image you want to show in the email's header. Upload your image using the media uploader." -msgstr "" - -#: admin/settings/settings-init.php:1049 -#@ woocommerce -msgid "Email Footer Text" -msgstr "" - -#: admin/settings/settings-init.php:1050 -#@ woocommerce -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "" - -#: admin/settings/settings-init.php:1054 -#@ woocommerce -msgid "Powered by WooCommerce" -msgstr "" - -#: admin/settings/settings-init.php:1058 -#@ woocommerce -msgid "Base Colour" -msgstr "" - -#: admin/settings/settings-init.php:1059 -#@ woocommerce -msgid "The base colour for WooCommerce email templates. Default #557da1." -msgstr "" - -#: admin/settings/settings-init.php:1067 -#@ woocommerce -msgid "Background Colour" -msgstr "" - -#: admin/settings/settings-init.php:1068 -#@ woocommerce -msgid "The background colour for WooCommerce email templates. Default #f5f5f5." -msgstr "" - -#: admin/settings/settings-init.php:1076 -#@ woocommerce -msgid "Email Body Background Colour" -msgstr "" - -#: admin/settings/settings-init.php:1077 -#@ woocommerce -msgid "The main body background colour. Default #fdfdfd." -msgstr "" - -#: admin/settings/settings-init.php:1085 -#@ woocommerce -msgid "Email Body Text Colour" -msgstr "" - -#: admin/settings/settings-init.php:1086 -#@ woocommerce -msgid "The main body text colour. Default #505050." -msgstr "" - -#: admin/settings/settings-payment-gateways.php:27 -#: admin/settings/settings-shipping-methods.php:29 -#: admin/woocommerce-admin-init.php:762 -#: admin/woocommerce-admin-taxonomies.php:27 -#: admin/woocommerce-admin-taxonomies.php:121 -#@ woocommerce -msgid "Default" -msgstr "" - -#: admin/settings/settings-payment-gateways.php:28 -#@ woocommerce -msgid "Gateway" -msgstr "" - -#: admin/settings/settings-payment-gateways.php:45 -#@ woocommerce -msgid "Gateway ID" -msgstr "" - -#: admin/settings/settings-shipping-methods.php:23 -#@ woocommerce -msgid "Shipping Methods" -msgstr "" - -#: admin/settings/settings-shipping-methods.php:25 -#@ woocommerce -msgid "Drag and drop methods to control their display order." -msgstr "" - -#: admin/settings/settings-shipping-methods.php:30 -#@ woocommerce -msgid "Shipping Method" -msgstr "" - -#: admin/settings/settings-shipping-methods.php:46 -#@ woocommerce -msgid "Method ID" -msgstr "" - -#: admin/settings/settings-tax-rates.php:29 -#, php-format -#@ woocommerce -msgid "Tax Rates for the \"%s\" Class" -msgstr "" - -#: admin/settings/settings-tax-rates.php:30 -#, php-format -#@ woocommerce -msgid "Define tax rates for countries and states below. See here for available alpha-2 country codes." -msgstr "" - -#: admin/settings/settings-tax-rates.php:36 -#@ woocommerce -msgid "Country Code" -msgstr "" - -#: admin/settings/settings-tax-rates.php:36 -#@ woocommerce -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "" - -#: admin/settings/settings-tax-rates.php:38 -#@ woocommerce -msgid "State Code" -msgstr "" - -#: admin/settings/settings-tax-rates.php:38 -#@ woocommerce -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "" - -#: admin/settings/settings-tax-rates.php:40 -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "ZIP/Postcode" -msgstr "Pašto indeksas" - -#: admin/settings/settings-tax-rates.php:40 -#@ woocommerce -msgid "Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank to apply to all areas. Wildcards (*) can be used. Ranges for numeric postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "" - -#: admin/settings/settings-tax-rates.php:42 -#@ woocommerce -msgid "Cities for this rule. Semi-colon (;) separate multiple values. Leave blank to apply to all cities." -msgstr "" - -#: admin/settings/settings-tax-rates.php:44 -#@ woocommerce -msgid "Rate %" -msgstr "" - -#: admin/settings/settings-tax-rates.php:44 -#@ woocommerce -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "" - -#: admin/settings/settings-tax-rates.php:46 -#@ woocommerce -msgid "Tax Name" -msgstr "" - -#: admin/settings/settings-tax-rates.php:46 -#@ woocommerce -msgid "Enter a name for this tax rate." -msgstr "" - -#: admin/settings/settings-tax-rates.php:48 -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Priority" -msgstr "" - -#: admin/settings/settings-tax-rates.php:48 -#@ woocommerce -msgid "Choose a priority for this tax rate. Only 1 matching rate per priority will be used. To define multiple tax rates for a single area you need to specify a different priority per rate." -msgstr "" - -#: admin/settings/settings-tax-rates.php:50 -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Compound" -msgstr "" - -#: admin/settings/settings-tax-rates.php:50 -#@ woocommerce -msgid "Choose whether or not this is a compound rate. Compound tax rates are applied on top of other tax rates." -msgstr "" - -#: admin/settings/settings-tax-rates.php:52 -#@ woocommerce -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "" - -#: admin/settings/settings-tax-rates.php:59 -#@ woocommerce -msgid "Insert row" -msgstr "" - -#: admin/settings/settings-tax-rates.php:60 -#@ woocommerce -msgid "Remove selected row(s)" -msgstr "" - -#: admin/settings/settings-tax-rates.php:62 -#@ woocommerce -msgid "Export CSV" -msgstr "" - -#: admin/settings/settings-tax-rates.php:63 -#@ woocommerce -msgid "Import CSV" -msgstr "" - -#: admin/settings/settings-tax-rates.php:163 -#@ woocommerce -msgid "No row(s) selected" -msgstr "" - -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Country Code" -msgstr "Pašto kodas" - -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "State Code" -msgstr "" - -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Rate %" -msgstr "" - -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Tax Name" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:77 -#@ woocommerce -msgid "Please, provide an attribute name, slug and type." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:79 -#, php-format -#@ woocommerce -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:81 -#, php-format -#@ woocommerce -msgid "Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:86 -#: admin/woocommerce-admin-attributes.php:91 -#, php-format -#@ woocommerce -msgid "Slug “%s” is already in use. Change it, please." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:234 -#@ woocommerce -msgid "Edit Attribute" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:244 -#: admin/woocommerce-admin-attributes.php:383 -#@ woocommerce -msgid "Name for the attribute (shown on the front-end)." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:249 -#: admin/woocommerce-admin-attributes.php:315 -#: admin/woocommerce-admin-attributes.php:387 -#@ woocommerce -msgid "Slug" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:253 -#: admin/woocommerce-admin-attributes.php:389 -#@ woocommerce -msgid "Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:262 -#: admin/woocommerce-admin-attributes.php:395 -#@ woocommerce -msgid "Select" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:263 -#: admin/woocommerce-admin-attributes.php:396 -#@ woocommerce -msgid "Text" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:266 -#: admin/woocommerce-admin-attributes.php:399 -#@ woocommerce -msgid "Determines how you select attributes for products. Under admin panel -> products -> product data -> attributes -> values, Text allows manual entry whereas select allows pre-configured terms in a drop-down list." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:271 -#: admin/woocommerce-admin-attributes.php:403 -#@ woocommerce -msgid "Default sort order" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:275 -#: admin/woocommerce-admin-attributes.php:343 -#: admin/woocommerce-admin-attributes.php:405 -#@ woocommerce -msgid "Custom ordering" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:277 -#: admin/woocommerce-admin-attributes.php:340 -#: admin/woocommerce-admin-attributes.php:407 -#@ woocommerce -msgid "Term ID" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:279 -#: admin/woocommerce-admin-attributes.php:409 -#@ woocommerce -msgid "Determines the sort order of the terms on the frontend shop product pages. If using custom ordering, you can drag and drop the terms in this attribute." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:284 -#: woocommerce.php:952 -#@ woocommerce -msgid "Update" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:317 -#@ woocommerce -msgid "Order by" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:318 -#@ woocommerce -msgid "Terms" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:363 -#@ woocommerce -msgid "Configure terms" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:367 -#@ woocommerce -msgid "No attributes currently exist." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:377 -#@ woocommerce -msgid "Add New Attribute" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:378 -#@ woocommerce -msgid "Attributes let you define extra product data, such as size or colour. You can use these attributes in the shop sidebar using the \"layered nav\" widgets. Please note: you cannot rename an attribute later on." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:412 -#@ woocommerce -msgid "Add Attribute" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:423 -#@ woocommerce -msgid "Are you sure you want to delete this attribute?" -msgstr "" - -#: admin/woocommerce-admin-content.php:26 -#: admin/woocommerce-admin-reports.php:26 -#: admin/woocommerce-admin-reports.php:66 -#: admin/woocommerce-admin-reports.php:82 -#: admin/woocommerce-admin-reports.php:93 -#@ woocommerce -msgid "Overview" -msgstr "" - -#: admin/woocommerce-admin-content.php:29 -#, php-format -#@ woocommerce -msgid "Thank you for using WooCommerce :) Should you need help using or extending WooCommerce please read the documentation. For further assistance you can use the community forum or if you have access, our support desk." -msgstr "" - -#: admin/woocommerce-admin-content.php:31 -#@ woocommerce -msgid "If you are having problems, or to assist us with support, please check the status page to identify any problems with your configuration:" -msgstr "" - -#: admin/woocommerce-admin-content.php:33 -#: admin/woocommerce-admin-init.php:89 -#: admin/woocommerce-admin-status.php:26 -#@ woocommerce -msgid "System Status" -msgstr "" - -#: admin/woocommerce-admin-content.php:35 -#, php-format -#@ woocommerce -msgid "If you come across a bug, or wish to contribute to the project you can also get involved on GitHub." -msgstr "" - -#: admin/woocommerce-admin-content.php:43 -#@ woocommerce -msgid "Here you can set up your store and customise it to fit your needs. The sections available from the settings page include:" -msgstr "" - -#: admin/woocommerce-admin-content.php:44 -#@ woocommerce -msgid "General settings such as your shop base, currency, and script/styling options which affect features used in your store." -msgstr "" - -#: admin/woocommerce-admin-content.php:45 -#: admin/woocommerce-admin-settings.php:184 -#: assets/js/admin/editor_plugin_lang.php:14 -#@ woocommerce -msgid "Pages" -msgstr "" - -#: admin/woocommerce-admin-content.php:45 -#@ woocommerce -msgid "This is where important store page are defined. You can also set up other pages (such as a Terms page) here." -msgstr "" - -#: admin/woocommerce-admin-content.php:46 -#@ woocommerce -msgid "Options for how things like price, images and weights appear in your product catalog." -msgstr "" - -#: admin/woocommerce-admin-content.php:47 -#@ woocommerce -msgid "Options concerning stock and stock notices." -msgstr "" - -#: admin/woocommerce-admin-content.php:48 -#@ woocommerce -msgid "Options concerning tax, including international and local tax rates." -msgstr "" - -#: admin/woocommerce-admin-content.php:49 -#@ woocommerce -msgid "This is where shipping options are defined, and shipping methods are set up." -msgstr "" - -#: admin/woocommerce-admin-content.php:50 -#@ woocommerce -msgid "Payment Methods" -msgstr "" - -#: admin/woocommerce-admin-content.php:50 -#@ woocommerce -msgid "This is where payment gateway options are defined, and individual payment gateways are set up." -msgstr "" - -#: admin/woocommerce-admin-content.php:51 -#: admin/woocommerce-admin-settings.php:189 -#@ woocommerce -msgid "Emails" -msgstr "" - -#: admin/woocommerce-admin-content.php:51 -#@ woocommerce -msgid "Here you can customise the way WooCommerce emails appear." -msgstr "" - -#: admin/woocommerce-admin-content.php:52 -#: admin/woocommerce-admin-settings.php:190 -#@ woocommerce -msgid "Integration" -msgstr "" - -#: admin/woocommerce-admin-content.php:52 -#@ woocommerce -msgid "The integration section contains options for third party services which integrate with WooCommerce." -msgstr "" - -#: admin/woocommerce-admin-content.php:57 -#: admin/woocommerce-admin-init.php:64 -#@ woocommerce -msgid "Reports" -msgstr "" - -#: admin/woocommerce-admin-content.php:59 -#@ woocommerce -msgid "The reports section can be accessed from the left-hand navigation menu. Here you can generate reports for sales and customers." -msgstr "" - -#: admin/woocommerce-admin-content.php:60 -#: admin/woocommerce-admin-reports.php:23 -#: admin/woocommerce-admin-reports.php:998 -#: admin/woocommerce-admin-reports.php:1096 -#: admin/woocommerce-admin-reports.php:1215 -#@ woocommerce -msgid "Sales" -msgstr "" - -#: admin/woocommerce-admin-content.php:60 -#@ woocommerce -msgid "Reports for sales based on date, top sellers and top earners." -msgstr "" - -#: admin/woocommerce-admin-content.php:61 -#@ woocommerce -msgid "Coupon usage reports." -msgstr "" - -#: admin/woocommerce-admin-content.php:62 -#: admin/woocommerce-admin-reports.php:79 -#@ woocommerce -msgid "Customers" -msgstr "" - -#: admin/woocommerce-admin-content.php:62 -#@ woocommerce -msgid "Customer reports, such as signups per day." -msgstr "" - -#: admin/woocommerce-admin-content.php:63 -#@ woocommerce -msgid "Stock reports for low stock and out of stock items." -msgstr "" - -#: admin/woocommerce-admin-content.php:68 -#: admin/woocommerce-admin-dashboard.php:142 -#: woocommerce.php:1058 -#@ woocommerce -msgid "Orders" -msgstr "" - -#: admin/woocommerce-admin-content.php:70 -#@ woocommerce -msgid "The orders section can be accessed from the left-hand navigation menu. Here you can view and manage customer orders." -msgstr "" - -#: admin/woocommerce-admin-content.php:71 -#@ woocommerce -msgid "Orders can also be added from this section if you want to set them up for a customer manually." -msgstr "" - -#: admin/woocommerce-admin-content.php:78 -#@ woocommerce -msgid "Coupons can be managed from this section. Once added, customers will be able to enter coupon codes on the cart/checkout page. If a customer uses a coupon code they will be viewable when viewing orders." -msgstr "" - -#: admin/woocommerce-admin-content.php:82 -#@ woocommerce -msgid "For more information:" -msgstr "" - -#. translators: plugin header field 'Name' -#: admin/woocommerce-admin-content.php:83 -#: admin/woocommerce-admin-init.php:62 -#: admin/woocommerce-admin-init.php:71 -#: admin/woocommerce-admin-init.php:404 -#: classes/class-wc-order.php:1173 -#: classes/class-wc-order.php:1175 -#: classes/class-wc-order.php:1178 -#: woocommerce.php:0 -#@ woocommerce -msgid "WooCommerce" -msgstr "" - -#: admin/woocommerce-admin-content.php:84 -#@ woocommerce -msgid "Project on WordPress.org" -msgstr "" - -#: admin/woocommerce-admin-content.php:85 -#@ woocommerce -msgid "Project on Github" -msgstr "" - -#: admin/woocommerce-admin-content.php:86 -#@ woocommerce -msgid "WooCommerce Docs" -msgstr "" - -#: admin/woocommerce-admin-content.php:87 -#@ woocommerce -msgid "Official Extensions" -msgstr "" - -#: admin/woocommerce-admin-content.php:88 -#@ woocommerce -msgid "Official Themes" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:40 -#@ woocommerce -msgid "Monthly Sales" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:43 -#@ woocommerce -msgid "WooCommerce Right Now" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:44 -#@ woocommerce -msgid "WooCommerce Recent Orders" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:45 -#: classes/widgets/class-wc-widget-recent-reviews.php:33 -#@ woocommerce -msgid "WooCommerce Recent Reviews" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:78 -#@ woocommerce -msgid "Shop Content" -msgstr "" - -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:84 -#: admin/woocommerce-admin-functions.php:200 -#: admin/woocommerce-admin-init.php:766 -#: admin/woocommerce-admin-reports.php:997 -#: admin/woocommerce-admin-reports.php:1095 -#: templates/cart/cart.php:28 -#: templates/checkout/form-pay.php:19 -#: templates/checkout/review-order.php:21 -#: templates/emails/admin-new-order.php:22 -#: templates/emails/customer-completed-order.php:23 -#: templates/emails/customer-invoice.php:27 -#: templates/emails/customer-note.php:27 -#: templates/emails/customer-processing-order.php:23 -#: templates/order/order-details.php:20 -#: woocommerce.php:983 -#@ woocommerce -msgid "Product" -msgid_plural "Products" -msgstr[0] "Prekė" -msgstr[1] "Prekės" -msgstr[2] "Prekių" - -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:98 -#: woocommerce.php:824 -#@ woocommerce -msgid "Product Category" -msgid_plural "Product Categories" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:112 -#: woocommerce.php:860 -#@ woocommerce -msgid "Product Tag" -msgid_plural "Product Tags" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: admin/woocommerce-admin-dashboard.php:126 -#@ woocommerce -msgid "Attribute" -msgid_plural "Attributes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: admin/woocommerce-admin-dashboard.php:148 -#@ woocommerce -msgid "Pending" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:162 -#@ woocommerce -msgid "On-Hold" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:190 -#@ woocommerce -msgid "Completed" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:207 -#, php-format -#@ woocommerce -msgid "You are using WooCommerce %s." -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:238 -#@ woocommerce -msgid "l jS \\of F Y h:i:s A" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:239 -#@ woocommerce -msgid "item" -msgid_plural "items" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: admin/woocommerce-admin-dashboard.php:239 -#: classes/shortcodes/class-wc-shortcode-pay.php:98 -#: templates/checkout/thankyou.php:48 -#@ woocommerce -msgid "Total:" -msgstr "Viso:" - -#: admin/woocommerce-admin-dashboard.php:245 -#@ woocommerce -msgid "There are no product orders yet." -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:279 -#: classes/abstracts/abstract-wc-product.php:966 -#: templates/single-product/review.php:27 -#: templates/single-product-reviews.php:28 -#@ woocommerce -msgid "out of 5" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:287 -#@ woocommerce -msgid "There are no product reviews yet." -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:428 -#@ woocommerce -msgid "Sold" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:429 -#@ woocommerce -msgid "Earned" -msgstr "" - -#: admin/woocommerce-admin-functions.php:190 -#: admin/woocommerce-admin-install.php:225 -#@ woocommerce -msgid "Order Received" -msgstr "" - -#: admin/woocommerce-admin-functions.php:192 -#@ woocommerce -msgid "Thank you, we are now processing your order. Your order's details are below." -msgstr "" - -#: admin/woocommerce-admin-functions.php:194 -#: classes/shortcodes/class-wc-shortcode-pay.php:90 -#: templates/checkout/thankyou.php:40 -#: templates/emails/customer-completed-order.php:18 -#: templates/emails/customer-invoice.php:22 -#: templates/emails/customer-note.php:22 -#: templates/emails/customer-processing-order.php:18 -#@ woocommerce -msgid "Order:" -msgstr "" - -#: admin/woocommerce-admin-functions.php:201 -#: templates/cart/cart.php:30 -#: templates/emails/admin-new-order.php:23 -#: templates/emails/customer-completed-order.php:24 -#: templates/emails/customer-invoice.php:28 -#: templates/emails/customer-note.php:28 -#: templates/emails/customer-processing-order.php:24 -#@ woocommerce -msgid "Quantity" -msgstr "Kiekis" - -#: admin/woocommerce-admin-functions.php:214 -#@ woocommerce -msgid "Order total:" -msgstr "Visas užsakymas:" - -#: admin/woocommerce-admin-functions.php:220 -#: templates/emails/admin-new-order.php:50 -#: templates/emails/customer-completed-order.php:51 -#: templates/emails/customer-note.php:55 -#: templates/emails/customer-processing-order.php:51 -#: templates/emails/plain/admin-new-order.php:38 -#: templates/order/order-details.php:97 -#@ woocommerce -msgid "Customer details" -msgstr "" - -#: admin/woocommerce-admin-functions.php:226 -#: templates/emails/email-addresses.php:18 -#: templates/emails/plain/email-addresses.php:12 -#@ woocommerce -msgid "Billing address" -msgstr "" - -#: admin/woocommerce-admin-functions.php:233 -#: templates/emails/email-addresses.php:28 -#: templates/emails/plain/email-addresses.php:17 -#@ woocommerce -msgid "Shipping address" -msgstr "Pristatymo adresas" - -#: admin/woocommerce-admin-functions.php:473 -#@ woocommerce -msgid "Could not compile woocommerce.less:" -msgstr "" - -#: admin/woocommerce-admin-functions.php:494 -#: admin/woocommerce-admin-functions.php:495 -#@ woocommerce -msgid "Mark processing" -msgstr "" - -#: admin/woocommerce-admin-functions.php:497 -#: admin/woocommerce-admin-functions.php:498 -#@ woocommerce -msgid "Mark completed" -msgstr "" - -#: admin/woocommerce-admin-functions.php:535 -#@ woocommerce -msgid "Order status changed by bulk edit:" -msgstr "" - -#: admin/woocommerce-admin-functions.php:558 -#, php-format -#@ default -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: admin/woocommerce-admin-init.php:88 -#@ woocommerce -msgid "WooCommerce Settings" -msgstr "" - -#: admin/woocommerce-admin-init.php:89 -#@ woocommerce -msgid "WooCommerce Status" -msgstr "" - -#: admin/woocommerce-admin-init.php:142 -#: admin/woocommerce-admin-init.php:144 -#: woocommerce.php:1049 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Orders" -msgstr "" - -#: admin/woocommerce-admin-init.php:433 -#@ woocommerce -msgid "Are you sure you want to remove the selected items? If you have previously reduced this item's stock, or this order was submitted by a customer, you will need to manually restore the item's stock." -msgstr "" - -#: admin/woocommerce-admin-init.php:434 -#@ woocommerce -msgid "Please select some items." -msgstr "" - -#: admin/woocommerce-admin-init.php:435 -#@ woocommerce -msgid "Remove this item meta?" -msgstr "" - -#: admin/woocommerce-admin-init.php:436 -#@ woocommerce -msgid "Remove this attribute?" -msgstr "" - -#: admin/woocommerce-admin-init.php:444 -#@ woocommerce -msgid "Enter a name for the new attribute term:" -msgstr "" - -#: admin/woocommerce-admin-init.php:445 -#@ woocommerce -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "" - -#: admin/woocommerce-admin-init.php:446 -#@ woocommerce -msgid "Calculate line taxes? This will calculate taxes based on the customers country. If no billing/shipping is set it will use the store base country." -msgstr "" - -#: admin/woocommerce-admin-init.php:447 -#@ woocommerce -msgid "Copy billing information to shipping information? This will remove any currently entered shipping information." -msgstr "" - -#: admin/woocommerce-admin-init.php:448 -#@ woocommerce -msgid "Load the customer's billing information? This will remove any currently entered billing information." -msgstr "" - -#: admin/woocommerce-admin-init.php:449 -#@ woocommerce -msgid "Load the customer's shipping information? This will remove any currently entered shipping information." -msgstr "" - -#: admin/woocommerce-admin-init.php:453 -#@ woocommerce -msgid "No customer selected" -msgstr "" - -#: admin/woocommerce-admin-init.php:670 -#, php-format -#@ woocommerce -msgid "Product updated. View Product" -msgstr "" - -#: admin/woocommerce-admin-init.php:671 -#: admin/woocommerce-admin-init.php:686 -#: admin/woocommerce-admin-init.php:701 -#@ woocommerce -msgid "Custom field updated." -msgstr "" - -#: admin/woocommerce-admin-init.php:672 -#: admin/woocommerce-admin-init.php:687 -#: admin/woocommerce-admin-init.php:702 -#@ woocommerce -msgid "Custom field deleted." -msgstr "" - -#: admin/woocommerce-admin-init.php:673 -#@ woocommerce -msgid "Product updated." -msgstr "" - -#: admin/woocommerce-admin-init.php:674 -#, php-format -#@ woocommerce -msgid "Product restored to revision from %s" -msgstr "" - -#: admin/woocommerce-admin-init.php:675 -#, php-format -#@ woocommerce -msgid "Product published. View Product" -msgstr "" - -#: admin/woocommerce-admin-init.php:676 -#@ woocommerce -msgid "Product saved." -msgstr "" - -#: admin/woocommerce-admin-init.php:677 -#, php-format -#@ woocommerce -msgid "Product submitted. Preview Product" -msgstr "" - -#: admin/woocommerce-admin-init.php:678 -#, php-format -#@ woocommerce -msgid "Product scheduled for: %1$s. Preview Product" -msgstr "" - -#: admin/woocommerce-admin-init.php:679 -#: admin/woocommerce-admin-init.php:694 -#: admin/woocommerce-admin-init.php:709 -#@ woocommerce -msgid "M j, Y @ G:i" -msgstr "" - -#: admin/woocommerce-admin-init.php:680 -#, php-format -#@ woocommerce -msgid "Product draft updated. Preview Product" -msgstr "" - -#: admin/woocommerce-admin-init.php:685 -#: admin/woocommerce-admin-init.php:688 -#: admin/woocommerce-admin-init.php:690 -#@ woocommerce -msgid "Order updated." -msgstr "" - -#: admin/woocommerce-admin-init.php:689 -#, php-format -#@ woocommerce -msgid "Order restored to revision from %s" -msgstr "" - -#: admin/woocommerce-admin-init.php:691 -#@ woocommerce -msgid "Order saved." -msgstr "" - -#: admin/woocommerce-admin-init.php:692 -#@ woocommerce -msgid "Order submitted." -msgstr "" - -#: admin/woocommerce-admin-init.php:693 -#, php-format -#@ woocommerce -msgid "Order scheduled for: %1$s." -msgstr "" - -#: admin/woocommerce-admin-init.php:695 -#@ woocommerce -msgid "Order draft updated." -msgstr "" - -#: admin/woocommerce-admin-init.php:700 -#: admin/woocommerce-admin-init.php:703 -#: admin/woocommerce-admin-init.php:705 -#@ woocommerce -msgid "Coupon updated." -msgstr "" - -#: admin/woocommerce-admin-init.php:704 -#, php-format -#@ woocommerce -msgid "Coupon restored to revision from %s" -msgstr "" - -#: admin/woocommerce-admin-init.php:706 -#@ woocommerce -msgid "Coupon saved." -msgstr "" - -#: admin/woocommerce-admin-init.php:707 -#@ woocommerce -msgid "Coupon submitted." -msgstr "" - -#: admin/woocommerce-admin-init.php:708 -#, php-format -#@ woocommerce -msgid "Coupon scheduled for: %1$s." -msgstr "" - -#: admin/woocommerce-admin-init.php:710 -#@ woocommerce -msgid "Coupon draft updated." -msgstr "" - -#: admin/woocommerce-admin-init.php:727 -#@ woocommerce -msgid "Order notes" -msgstr "Užsakymo pastabos" - -#: admin/woocommerce-admin-init.php:742 -#@ woocommerce -msgid "These settings control the permalinks used for products. These settings only apply when not using \"default\" permalinks above." -msgstr "" - -#: admin/woocommerce-admin-init.php:749 -#@ woocommerce -msgctxt "default-slug" -msgid "shop" -msgstr "" - -#: admin/woocommerce-admin-init.php:750 -#@ woocommerce -msgctxt "default-slug" -msgid "product" -msgstr "" - -#: admin/woocommerce-admin-init.php:771 -#@ woocommerce -msgid "Shop base" -msgstr "" - -#: admin/woocommerce-admin-init.php:775 -#@ woocommerce -msgid "Shop base with category" -msgstr "" - -#: admin/woocommerce-admin-init.php:781 -#@ woocommerce -msgid "Custom Base" -msgstr "" - -#: admin/woocommerce-admin-init.php:783 -#@ woocommerce -msgid "Enter a custom base to use. A base must be set or WordPress will use default instead." -msgstr "" - -#: admin/woocommerce-admin-init.php:811 -#@ woocommerce -msgid "Product permalink base" -msgstr "" - -#: admin/woocommerce-admin-init.php:816 -#@ woocommerce -msgid "Product category base" -msgstr "" - -#: admin/woocommerce-admin-init.php:823 -#@ woocommerce -msgid "Product tag base" -msgstr "" - -#: admin/woocommerce-admin-init.php:830 -#@ woocommerce -msgid "Product attribute base" -msgstr "" - -#: admin/woocommerce-admin-install.php:195 -#@ woocommerce -msgctxt "page_slug" -msgid "shop" -msgstr "" - -#: admin/woocommerce-admin-install.php:195 -#@ woocommerce -msgid "Shop" -msgstr "" - -#: admin/woocommerce-admin-install.php:198 -#@ woocommerce -msgctxt "page_slug" -msgid "cart" -msgstr "" - -#: admin/woocommerce-admin-install.php:198 -#: admin/woocommerce-admin-status.php:314 -#: assets/js/admin/editor_plugin_lang.php:15 -#: classes/widgets/class-wc-widget-cart.php:61 -#@ woocommerce -msgid "Cart" -msgstr "" - -#: admin/woocommerce-admin-install.php:201 -#@ woocommerce -msgctxt "page_slug" -msgid "checkout" -msgstr "" - -#: admin/woocommerce-admin-install.php:204 -#@ woocommerce -msgctxt "page_slug" -msgid "my-account" -msgstr "" - -#: admin/woocommerce-admin-install.php:204 -#: admin/woocommerce-admin-status.php:330 -#: assets/js/admin/editor_plugin_lang.php:18 -#: templates/checkout/thankyou.php:30 -#@ woocommerce -msgid "My Account" -msgstr "" - -#: admin/woocommerce-admin-install.php:210 -#@ woocommerce -msgctxt "page_slug" -msgid "edit-address" -msgstr "" - -#: admin/woocommerce-admin-install.php:210 -#@ woocommerce -msgid "Edit My Address" -msgstr "" - -#: admin/woocommerce-admin-install.php:213 -#@ woocommerce -msgctxt "page_slug" -msgid "view-order" -msgstr "" - -#: admin/woocommerce-admin-install.php:213 -#: admin/woocommerce-admin-status.php:338 -#: assets/js/admin/editor_plugin_lang.php:21 -#: woocommerce.php:1065 -#: woocommerce.php:1066 -#@ woocommerce -msgid "View Order" -msgstr "" - -#: admin/woocommerce-admin-install.php:216 -#@ woocommerce -msgctxt "page_slug" -msgid "change-password" -msgstr "" - -#: admin/woocommerce-admin-install.php:216 -#: admin/woocommerce-admin-status.php:342 -#: assets/js/admin/editor_plugin_lang.php:20 -#@ woocommerce -msgid "Change Password" -msgstr "" - -#: admin/woocommerce-admin-install.php:219 -#@ woocommerce -msgctxt "page_slug" -msgid "logout" -msgstr "" - -#: admin/woocommerce-admin-install.php:219 -#@ woocommerce -msgid "Logout" -msgstr "" - -#: admin/woocommerce-admin-install.php:222 -#@ woocommerce -msgctxt "page_slug" -msgid "pay" -msgstr "" - -#: admin/woocommerce-admin-install.php:222 -#@ woocommerce -msgid "Checkout → Pay" -msgstr "" - -#: admin/woocommerce-admin-install.php:225 -#@ woocommerce -msgctxt "page_slug" -msgid "order-received" -msgstr "" - -#: admin/woocommerce-admin-reports.php:32 -#@ woocommerce -msgid "Sales by day" -msgstr "" - -#: admin/woocommerce-admin-reports.php:37 -#@ woocommerce -msgid "Sales by month" -msgstr "" - -#: admin/woocommerce-admin-reports.php:42 -#@ woocommerce -msgid "Product Sales" -msgstr "" - -#: admin/woocommerce-admin-reports.php:47 -#@ woocommerce -msgid "Top sellers" -msgstr "" - -#: admin/woocommerce-admin-reports.php:52 -#@ woocommerce -msgid "Top earners" -msgstr "" - -#: admin/woocommerce-admin-reports.php:57 -#@ woocommerce -msgid "Sales by category" -msgstr "" - -#: admin/woocommerce-admin-reports.php:72 -#@ woocommerce -msgid "Discounts by coupon" -msgstr "" - -#: admin/woocommerce-admin-reports.php:104 -#@ woocommerce -msgid "Taxes by month" -msgstr "" - -#: admin/woocommerce-admin-reports.php:244 -#: admin/woocommerce-admin-reports.php:509 -#: admin/woocommerce-admin-reports.php:714 -#: admin/woocommerce-admin-reports.php:895 -#@ woocommerce -msgid "Sales amount" -msgstr "" - -#: admin/woocommerce-admin-reports.php:249 -#: admin/woocommerce-admin-reports.php:509 -#: admin/woocommerce-admin-reports.php:714 -#: admin/woocommerce-admin-reports.php:895 -#@ woocommerce -msgid "Number of sales" -msgstr "" - -#: admin/woocommerce-admin-reports.php:381 -#@ woocommerce -msgid "Total sales" -msgstr "" - -#: admin/woocommerce-admin-reports.php:383 -#: admin/woocommerce-admin-reports.php:389 -#: admin/woocommerce-admin-reports.php:395 -#: admin/woocommerce-admin-reports.php:401 -#: admin/woocommerce-admin-reports.php:407 -#: admin/woocommerce-admin-reports.php:413 -#: admin/woocommerce-admin-reports.php:656 -#: admin/woocommerce-admin-reports.php:662 -#: admin/woocommerce-admin-reports.php:668 -#: admin/woocommerce-admin-reports.php:674 -#: admin/woocommerce-admin-reports.php:840 -#: admin/woocommerce-admin-reports.php:846 -#: admin/woocommerce-admin-reports.php:852 -#: admin/woocommerce-admin-reports.php:858 -#: admin/woocommerce-admin-reports.php:1381 -#: admin/woocommerce-admin-reports.php:1387 -#: admin/woocommerce-admin-reports.php:1393 -#: admin/woocommerce-admin-reports.php:1827 -#: admin/woocommerce-admin-reports.php:1833 -#: admin/woocommerce-admin-reports.php:1839 -#: admin/woocommerce-admin-reports.php:1845 -#: admin/woocommerce-admin-reports.php:1851 -#: admin/woocommerce-admin-reports.php:1857 -#: admin/woocommerce-admin-reports.php:2321 -#: admin/woocommerce-admin-reports.php:2332 -#: admin/woocommerce-admin-reports.php:2343 -#@ woocommerce -msgid "n/a" -msgstr "" - -#: admin/woocommerce-admin-reports.php:387 -#@ woocommerce -msgid "Total orders" -msgstr "" - -#: admin/woocommerce-admin-reports.php:389 -#: admin/woocommerce-admin-reports.php:662 -#: admin/woocommerce-admin-reports.php:846 -#@ woocommerce -msgid "items" -msgstr "" - -#: admin/woocommerce-admin-reports.php:393 -#@ woocommerce -msgid "Average order total" -msgstr "" - -#: admin/woocommerce-admin-reports.php:399 -#@ woocommerce -msgid "Average order items" -msgstr "" - -#: admin/woocommerce-admin-reports.php:405 -#@ woocommerce -msgid "Discounts used" -msgstr "" - -#: admin/woocommerce-admin-reports.php:411 -#@ woocommerce -msgid "Total shipping costs" -msgstr "" - -#: admin/woocommerce-admin-reports.php:419 -#@ woocommerce -msgid "This month's sales" -msgstr "" - -#: admin/woocommerce-admin-reports.php:648 -#: admin/woocommerce-admin-reports.php:992 -#: admin/woocommerce-admin-reports.php:1090 -#: admin/woocommerce-admin-reports.php:1373 -#@ woocommerce -msgid "From:" -msgstr "" - -#: admin/woocommerce-admin-reports.php:648 -#: admin/woocommerce-admin-reports.php:992 -#: admin/woocommerce-admin-reports.php:1090 -#: admin/woocommerce-admin-reports.php:1373 -#@ woocommerce -msgid "To:" -msgstr "" - -#: admin/woocommerce-admin-reports.php:648 -#: admin/woocommerce-admin-reports.php:833 -#: admin/woocommerce-admin-reports.php:992 -#: admin/woocommerce-admin-reports.php:1090 -#: admin/woocommerce-admin-reports.php:1246 -#: admin/woocommerce-admin-reports.php:1373 -#: admin/woocommerce-admin-reports.php:1506 -#: admin/woocommerce-admin-reports.php:2310 -#: admin/woocommerce-admin-reports.php:2493 -#@ woocommerce -msgid "Show" -msgstr "" - -#: admin/woocommerce-admin-reports.php:654 -#@ woocommerce -msgid "Total sales in range" -msgstr "" - -#: admin/woocommerce-admin-reports.php:660 -#@ woocommerce -msgid "Total orders in range" -msgstr "" - -#: admin/woocommerce-admin-reports.php:666 -#@ woocommerce -msgid "Average order total in range" -msgstr "" - -#: admin/woocommerce-admin-reports.php:672 -#@ woocommerce -msgid "Average order items in range" -msgstr "" - -#: admin/woocommerce-admin-reports.php:680 -#@ woocommerce -msgid "Sales in range" -msgstr "" - -#: admin/woocommerce-admin-reports.php:827 -#: admin/woocommerce-admin-reports.php:2304 -#@ woocommerce -msgid "Year:" -msgstr "" - -#: admin/woocommerce-admin-reports.php:838 -#@ woocommerce -msgid "Total sales for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:844 -#@ woocommerce -msgid "Total orders for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:850 -#@ woocommerce -msgid "Average order total for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:856 -#@ woocommerce -msgid "Average order items for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:864 -#@ woocommerce -msgid "Monthly sales for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1012 -#@ woocommerce -msgid "Product does not exist" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1111 -#@ woocommerce -msgid "Product no longer exists" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1210 -#, php-format -#@ woocommerce -msgid "Sales for %s:" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1214 -#: admin/woocommerce-admin-reports.php:2352 -#@ woocommerce -msgid "Month" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1236 -#@ woocommerce -msgid "No sales :(" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1379 -#@ woocommerce -msgid "Total orders containing coupons" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1385 -#@ woocommerce -msgid "Percent of orders containing coupons" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1391 -#@ woocommerce -msgid "Total coupon discount" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1400 -#@ woocommerce -msgid "Most popular coupons" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1410 -#, php-format -#@ woocommerce -msgid "Used 1 time" -msgid_plural "Used %d times" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: admin/woocommerce-admin-reports.php:1413 -#: admin/woocommerce-admin-reports.php:1435 -#@ woocommerce -msgid "No coupons found" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1422 -#@ woocommerce -msgid "Greatest discount amount" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1432 -#, php-format -#@ woocommerce -msgid "Discounted %s" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1491 -#: admin/woocommerce-admin-reports.php:2470 -#@ woocommerce -msgid "Show:" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1548 -#: templates/cart/cart.php:127 -#: woocommerce.php:1096 -#@ woocommerce -msgid "Coupon" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1631 -#@ woocommerce -msgid "Top coupon" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1639 -#@ woocommerce -msgid "Worst coupon" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1647 -#@ woocommerce -msgid "Discount average" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1655 -#@ woocommerce -msgid "Discount median" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1675 -#@ woocommerce -msgid "Monthly discounts by coupon" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1825 -#@ woocommerce -msgid "Total customers" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1831 -#@ woocommerce -msgid "Total customer sales" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1837 -#@ woocommerce -msgid "Total guest sales" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1843 -#@ woocommerce -msgid "Total customer orders" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1849 -#@ woocommerce -msgid "Total guest orders" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1855 -#@ woocommerce -msgid "Average orders per customer" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1863 -#@ woocommerce -msgid "Signups per day" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2084 -#@ woocommerce -msgid "Low stock" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2107 -#: admin/woocommerce-admin-reports.php:2146 -#, php-format -#@ woocommerce -msgid "%d in stock" -msgid_plural "%d in stock" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: admin/woocommerce-admin-reports.php:2112 -#@ woocommerce -msgid "No products are low in stock." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2144 -#@ woocommerce -msgid "Marked out of stock" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2151 -#@ woocommerce -msgid "No products are out in stock." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2315 -#@ woocommerce -msgid "Total taxes for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2326 -#@ woocommerce -msgid "Total product taxes for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2337 -#@ woocommerce -msgid "Total shipping tax for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2353 -#@ woocommerce -msgid "Total Sales" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2353 -#@ woocommerce -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2354 -#@ woocommerce -msgid "Total Shipping" -msgstr "Pristatymo suma" - -#: admin/woocommerce-admin-reports.php:2354 -#@ woocommerce -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2355 -#@ woocommerce -msgid "Total Product Taxes" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2355 -#@ woocommerce -msgid "This is the sum of the 'Cart Tax' field within your orders." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2356 -#@ woocommerce -msgid "Total Shipping Taxes" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2356 -#@ woocommerce -msgid "This is the sum of the 'Shipping Tax' field within your orders." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2357 -#@ woocommerce -msgid "Total Taxes" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2357 -#@ woocommerce -msgid "This is the sum of the 'Cart Tax' and 'Shipping Tax' fields within your orders." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2358 -#@ woocommerce -msgid "Net profit" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2358 -#@ woocommerce -msgid "Total sales minus shipping and tax." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2403 -#@ woocommerce -msgid "Toggle tax rows" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2546 -#@ woocommerce -msgid "Category" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2649 -#@ woocommerce -msgid "Top category" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2658 -#@ woocommerce -msgid "Worst category" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2666 -#@ woocommerce -msgid "Category sales average" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2677 -#@ woocommerce -msgid "Category sales median" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2697 -#@ woocommerce -msgid "Monthly sales by category" -msgstr "" - -#: admin/woocommerce-admin-settings.php:45 -#: woocommerce.php:1762 -#@ woocommerce -msgid "Action failed. Please refresh the page and retry." -msgstr "" - -#: admin/woocommerce-admin-settings.php:164 -#@ woocommerce -msgid "Your settings have been saved." -msgstr "" - -#: admin/woocommerce-admin-settings.php:210 -#, php-format -#@ woocommerce -msgid "More functionality and gateway options available via WC official extensions." -msgstr "" - -#: admin/woocommerce-admin-settings.php:228 -#@ woocommerce -msgid "Tax Rates" -msgstr "" - -#: admin/woocommerce-admin-settings.php:255 -#@ woocommerce -msgid "Email Options" -msgstr "" - -#: admin/woocommerce-admin-settings.php:388 -#: classes/integrations/shareyourcart/views/admin-page.php:110 -#: classes/integrations/shareyourcart/views/button-settings-page.php:120 -#@ woocommerce -msgid "Save changes" -msgstr "" - -#: admin/woocommerce-admin-settings.php:429 -#@ woocommerce -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "" - -#: admin/woocommerce-admin-settings.php:802 -#@ woocommerce -msgid "Hard Crop" -msgstr "" - -#: admin/woocommerce-admin-settings.php:827 -#@ woocommerce -msgid "Select a page…" -msgstr "" - -#: admin/woocommerce-admin-settings.php:853 -#@ woocommerce -msgid "Choose a country…" -msgstr "" - -#: admin/woocommerce-admin-settings.php:873 -#@ woocommerce -msgid "Choose countries…" -msgstr "" - -#: admin/woocommerce-admin-status.php:27 -#: admin/woocommerce-admin-status.php:703 -#@ woocommerce -msgid "Tools" -msgstr "" - -#: admin/woocommerce-admin-status.php:62 -#@ woocommerce -msgid "Please include this information when requesting support:" -msgstr "" - -#: admin/woocommerce-admin-status.php:63 -#@ woocommerce -msgid "Download System Report File" -msgstr "" - -#: admin/woocommerce-admin-status.php:71 -#@ woocommerce -msgid "Environment" -msgstr "" - -#: admin/woocommerce-admin-status.php:77 -#@ woocommerce -msgid "Home URL" -msgstr "" - -#: admin/woocommerce-admin-status.php:81 -#@ woocommerce -msgid "Site URL" -msgstr "" - -#: admin/woocommerce-admin-status.php:85 -#@ woocommerce -msgid "WC Version" -msgstr "" - -#: admin/woocommerce-admin-status.php:89 -#@ woocommerce -msgid "WC Database Version" -msgstr "" - -#: admin/woocommerce-admin-status.php:93 -#@ woocommerce -msgid "WP Version" -msgstr "" - -#: admin/woocommerce-admin-status.php:97 -#@ woocommerce -msgid "Web Server Info" -msgstr "" - -#: admin/woocommerce-admin-status.php:101 -#@ woocommerce -msgid "PHP Version" -msgstr "" - -#: admin/woocommerce-admin-status.php:105 -#@ woocommerce -msgid "MySQL Version" -msgstr "" - -#: admin/woocommerce-admin-status.php:109 -#@ woocommerce -msgid "WP Memory Limit" -msgstr "" - -#: admin/woocommerce-admin-status.php:114 -#, php-format -#@ woocommerce -msgid "%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "" - -#: admin/woocommerce-admin-status.php:121 -#@ woocommerce -msgid "WP Debug Mode" -msgstr "" - -#: admin/woocommerce-admin-status.php:125 -#@ woocommerce -msgid "WP Max Upload Size" -msgstr "" - -#: admin/woocommerce-admin-status.php:129 -#@ woocommerce -msgid "PHP Post Max Size" -msgstr "" - -#: admin/woocommerce-admin-status.php:133 -#@ woocommerce -msgid "PHP Time Limit" -msgstr "" - -#: admin/woocommerce-admin-status.php:137 -#@ woocommerce -msgid "WC Logging" -msgstr "" - -#: admin/woocommerce-admin-status.php:140 -#@ woocommerce -msgid "Log directory is writable." -msgstr "" - -#: admin/woocommerce-admin-status.php:142 -#@ woocommerce -msgid "Log directory (woocommerce/logs/) is not writable. Logging will not be possible." -msgstr "" - -#: admin/woocommerce-admin-status.php:146 -#@ woocommerce -msgid "Default Timezone" -msgstr "" - -#: admin/woocommerce-admin-status.php:150 -#, php-format -#@ woocommerce -msgid "Default timezone is %s - it should be UTC" -msgstr "" - -#: admin/woocommerce-admin-status.php:152 -#, php-format -#@ woocommerce -msgid "Default timezone is %s" -msgstr "" - -#: admin/woocommerce-admin-status.php:160 -#@ woocommerce -msgid "fsockopen/cURL" -msgstr "" - -#: admin/woocommerce-admin-status.php:163 -#@ woocommerce -msgid "Your server has fsockopen and cURL enabled." -msgstr "" - -#: admin/woocommerce-admin-status.php:165 -#@ woocommerce -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "" - -#: admin/woocommerce-admin-status.php:167 -#@ woocommerce -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "" - -#: admin/woocommerce-admin-status.php:171 -#@ woocommerce -msgid "Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider." -msgstr "" - -#: admin/woocommerce-admin-status.php:176 -#@ woocommerce -msgid "SOAP Client" -msgstr "" - -#: admin/woocommerce-admin-status.php:178 -#@ woocommerce -msgid "Your server has the SOAP Client class enabled." -msgstr "" - -#: admin/woocommerce-admin-status.php:181 -#, php-format -#@ woocommerce -msgid "Your server does not have the SOAP Client class enabled - some gateway plugins which use SOAP may not work as expected." -msgstr "" - -#: admin/woocommerce-admin-status.php:186 -#@ woocommerce -msgid "WP Remote Post" -msgstr "" - -#: admin/woocommerce-admin-status.php:197 -#@ woocommerce -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "" - -#: admin/woocommerce-admin-status.php:200 -#@ woocommerce -msgid "wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:" -msgstr "" - -#: admin/woocommerce-admin-status.php:203 -#@ woocommerce -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "" - -#: admin/woocommerce-admin-status.php:226 -#@ woocommerce -msgid "Plugins" -msgstr "" - -#: admin/woocommerce-admin-status.php:232 -#@ woocommerce -msgid "Installed Plugins" -msgstr "" - -#: admin/woocommerce-admin-status.php:270 -#@ woocommerce -msgid "is available" -msgstr "" - -#: admin/woocommerce-admin-status.php:273 -#@ woocommerce -msgid "by" -msgstr "" - -#: admin/woocommerce-admin-status.php:273 -#@ woocommerce -msgid "version" -msgstr "" - -#: admin/woocommerce-admin-status.php:296 -#@ woocommerce -msgid "Force SSL" -msgstr "" - -#: admin/woocommerce-admin-status.php:303 -#@ woocommerce -msgid "WC Pages" -msgstr "" - -#: admin/woocommerce-admin-status.php:310 -#@ woocommerce -msgid "Shop Base" -msgstr "" - -#: admin/woocommerce-admin-status.php:322 -#: assets/js/admin/editor_plugin_lang.php:22 -#: templates/checkout/thankyou.php:28 -#: templates/myaccount/my-orders.php:71 -#@ woocommerce -msgid "Pay" -msgstr "" - -#: admin/woocommerce-admin-status.php:326 -#@ woocommerce -msgid "Thanks" -msgstr "" - -#: admin/woocommerce-admin-status.php:334 -#: assets/js/admin/editor_plugin_lang.php:19 -#@ woocommerce -msgid "Edit Address" -msgstr "" - -#: admin/woocommerce-admin-status.php:366 -#@ woocommerce -msgid "Page not set" -msgstr "" - -#: admin/woocommerce-admin-status.php:376 -#@ woocommerce -msgid "Page does not exist" -msgstr "" - -#: admin/woocommerce-admin-status.php:381 -#, php-format -#@ woocommerce -msgid "Page does not contain the shortcode: %s" -msgstr "" - -#: admin/woocommerce-admin-status.php:400 -#@ woocommerce -msgid "WC Taxonomies" -msgstr "" - -#: admin/woocommerce-admin-status.php:406 -#@ woocommerce -msgid "Order Statuses" -msgstr "" - -#: admin/woocommerce-admin-status.php:416 -#@ woocommerce -msgid "Product Types" -msgstr "" - -#: admin/woocommerce-admin-status.php:429 -#@ woocommerce -msgid "Theme" -msgstr "" - -#: admin/woocommerce-admin-status.php:435 -#@ woocommerce -msgid "Theme Name" -msgstr "" - -#: admin/woocommerce-admin-status.php:442 -#@ woocommerce -msgid "Theme Version" -msgstr "" - -#: admin/woocommerce-admin-status.php:448 -#@ woocommerce -msgid "Author URL" -msgstr "" - -#: admin/woocommerce-admin-status.php:457 -#@ woocommerce -msgid "Templates" -msgstr "" - -#: admin/woocommerce-admin-status.php:463 -#@ woocommerce -msgid "Template Overrides" -msgstr "" - -#: admin/woocommerce-admin-status.php:481 -#@ woocommerce -msgid "No core overrides present in theme." -msgstr "" - -#: admin/woocommerce-admin-status.php:576 -#@ woocommerce -msgid "WC Transients" -msgstr "" - -#: admin/woocommerce-admin-status.php:577 -#@ woocommerce -msgid "Clear transients" -msgstr "" - -#: admin/woocommerce-admin-status.php:578 -#@ woocommerce -msgid "This tool will clear the product/shop transients cache." -msgstr "" - -#: admin/woocommerce-admin-status.php:581 -#@ woocommerce -msgid "Expired Transients" -msgstr "" - -#: admin/woocommerce-admin-status.php:582 -#@ woocommerce -msgid "Clear expired transients" -msgstr "" - -#: admin/woocommerce-admin-status.php:583 -#@ woocommerce -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "" - -#: admin/woocommerce-admin-status.php:586 -#@ woocommerce -msgid "Term counts" -msgstr "" - -#: admin/woocommerce-admin-status.php:587 -#@ woocommerce -msgid "Recount terms" -msgstr "" - -#: admin/woocommerce-admin-status.php:588 -#@ woocommerce -msgid "This tool will recount product terms - useful when changing your settings in a way which hides products from the catalog." -msgstr "" - -#: admin/woocommerce-admin-status.php:591 -#@ woocommerce -msgid "Capabilities" -msgstr "" - -#: admin/woocommerce-admin-status.php:592 -#@ woocommerce -msgid "Reset capabilities" -msgstr "" - -#: admin/woocommerce-admin-status.php:593 -#@ woocommerce -msgid "This tool will reset the admin, customer and shop_manager roles to default. Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "" - -#: admin/woocommerce-admin-status.php:596 -#@ woocommerce -msgid "Customer Sessions" -msgstr "" - -#: admin/woocommerce-admin-status.php:597 -#@ woocommerce -msgid "Clear all sessions" -msgstr "" - -#: admin/woocommerce-admin-status.php:598 -#@ woocommerce -msgid "Warning This tool will delete all customer session data from the database, including any current live carts." -msgstr "" - -#: admin/woocommerce-admin-status.php:608 -#@ woocommerce -msgid "Product Transients Cleared" -msgstr "" - -#: admin/woocommerce-admin-status.php:649 -#, php-format -#@ woocommerce -msgid "%d Transients Rows Cleared" -msgstr "" - -#: admin/woocommerce-admin-status.php:657 -#@ woocommerce -msgid "Roles successfully reset" -msgstr "" - -#: admin/woocommerce-admin-status.php:669 -#@ woocommerce -msgid "Terms successfully recounted" -msgstr "" - -#: admin/woocommerce-admin-status.php:688 -#, php-format -#@ woocommerce -msgid "There was an error calling %s::%s" -msgstr "" - -#: admin/woocommerce-admin-status.php:691 -#, php-format -#@ woocommerce -msgid "There was an error calling %s" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:25 -#: admin/woocommerce-admin-taxonomies.php:118 -#@ woocommerce -msgid "Display type" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:29 -#: admin/woocommerce-admin-taxonomies.php:123 -#@ woocommerce -msgid "Subcategories" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:30 -#: admin/woocommerce-admin-taxonomies.php:124 -#@ woocommerce -msgid "Both" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:34 -#: admin/woocommerce-admin-taxonomies.php:129 -#@ woocommerce -msgid "Thumbnail" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:38 -#: admin/woocommerce-admin-taxonomies.php:134 -#@ woocommerce -msgid "Upload/Add image" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:39 -#: admin/woocommerce-admin-taxonomies.php:135 -#@ woocommerce -msgid "Remove image" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:64 -#: admin/woocommerce-admin-taxonomies.php:156 -#@ woocommerce -msgid "Use image" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:222 -#@ woocommerce -msgid "Product categories for your store can be managed here. To change the order of categories on the front-end you can drag and drop to sort them. To see more categories listed click the \"screen options\" link at the top of the page." -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:237 -#@ woocommerce -msgid "Shipping classes can be used to group products of similar type. These groups can then be used by certain shipping methods to provide different rates to different products." -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:365 -#@ woocommerce -msgid "Edit Class" -msgstr "" - -#: admin/woocommerce-admin-users.php:26 -#: templates/checkout/form-billing.php:21 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:19 -#: templates/myaccount/my-address.php:25 -#: templates/order/order-details.php:115 -#@ woocommerce -msgid "Billing Address" -msgstr "" - -#: admin/woocommerce-admin-users.php:27 -#: templates/checkout/form-shipping.php:35 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:20 -#: templates/order/order-details.php:130 -#@ woocommerce -msgid "Shipping Address" -msgstr "Pristatymo adresas" - -#: admin/woocommerce-admin-users.php:28 -#@ woocommerce -msgid "Paying Customer?" -msgstr "" - -#: admin/woocommerce-admin-users.php:29 -#@ woocommerce -msgid "Completed Orders" -msgstr "" - -#: admin/woocommerce-admin-users.php:144 -#@ woocommerce -msgid "Customer Billing Address" -msgstr "" - -#: admin/woocommerce-admin-users.php:147 -#: admin/woocommerce-admin-users.php:196 -#@ woocommerce -msgid "First name" -msgstr "Vardas" - -#: admin/woocommerce-admin-users.php:151 -#: admin/woocommerce-admin-users.php:200 -#@ woocommerce -msgid "Last name" -msgstr "Pavardė" - -#: admin/woocommerce-admin-users.php:176 -#@ woocommerce -msgid "Country or state code" -msgstr "" - -#: admin/woocommerce-admin-users.php:180 -#: admin/woocommerce-admin-users.php:229 -#@ woocommerce -msgid "2 letter Country code" -msgstr "" - -#: admin/woocommerce-admin-users.php:183 -#@ woocommerce -msgid "Telephone" -msgstr "Telefono numeris" - -#: admin/woocommerce-admin-users.php:193 -#@ woocommerce -msgid "Customer Shipping Address" -msgstr "" - -#: admin/woocommerce-admin-users.php:225 -#@ woocommerce -msgid "State/County or state code" -msgstr "" - -#: assets/js/admin/editor_plugin_lang.php:5 -#@ woocommerce -msgid "Insert Shortcode" -msgstr "" - -#: assets/js/admin/editor_plugin_lang.php:6 -#@ woocommerce -msgid "Product price/cart button" -msgstr "" - -#: assets/js/admin/editor_plugin_lang.php:7 -#@ woocommerce -msgid "Product by SKU/ID" -msgstr "" - -#: assets/js/admin/editor_plugin_lang.php:8 -#@ woocommerce -msgid "Products by SKU/ID" -msgstr "" - -#: assets/js/admin/editor_plugin_lang.php:10 -#@ woocommerce -msgid "Products by category slug" -msgstr "" - -#: assets/js/admin/editor_plugin_lang.php:11 -#@ woocommerce -msgid "Recent products" -msgstr "" - -#: assets/js/admin/editor_plugin_lang.php:12 -#@ woocommerce -msgid "Featured products" -msgstr "" - -#: assets/js/admin/editor_plugin_lang.php:13 -#@ woocommerce -msgid "Shop Messages" -msgstr "" - -#: assets/js/admin/editor_plugin_lang.php:17 -#@ woocommerce -msgid "Order tracking" -msgstr "" - -#: assets/js/admin/editor_plugin_lang.php:23 -#@ woocommerce -msgid "Thankyou" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:431 -#: classes/emails/class-wc-email-customer-completed-order.php:135 -#: classes/emails/class-wc-email-customer-invoice.php:138 -#: classes/emails/class-wc-email-new-order.php:115 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:63 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:57 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:130 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:120 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:76 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:75 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:50 -#@ woocommerce -msgid "Enable/Disable" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:433 -#: classes/emails/class-wc-email-customer-completed-order.php:137 -#: classes/emails/class-wc-email-customer-invoice.php:140 -#: classes/emails/class-wc-email-new-order.php:117 -#@ woocommerce -msgid "Enable this email notification" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:437 -#: classes/emails/class-wc-email-customer-invoice.php:144 -#@ woocommerce -msgid "Email subject" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:439 -#: classes/abstracts/abstract-wc-email.php:446 -#: classes/emails/class-wc-email-customer-completed-order.php:143 -#: classes/emails/class-wc-email-customer-completed-order.php:150 -#: classes/emails/class-wc-email-customer-completed-order.php:157 -#: classes/emails/class-wc-email-customer-completed-order.php:164 -#: classes/emails/class-wc-email-customer-invoice.php:146 -#: classes/emails/class-wc-email-customer-invoice.php:153 -#: classes/emails/class-wc-email-customer-invoice.php:160 -#: classes/emails/class-wc-email-customer-invoice.php:167 -#, php-format -#@ woocommerce -msgid "Defaults to %s" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:444 -#: classes/emails/class-wc-email-customer-invoice.php:151 -#@ woocommerce -msgid "Email heading" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:451 -#: classes/emails/class-wc-email-customer-completed-order.php:169 -#: classes/emails/class-wc-email-customer-invoice.php:172 -#: classes/emails/class-wc-email-new-order.php:142 -#@ woocommerce -msgid "Email type" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:453 -#: classes/emails/class-wc-email-customer-completed-order.php:171 -#: classes/emails/class-wc-email-customer-invoice.php:174 -#: classes/emails/class-wc-email-new-order.php:144 -#@ woocommerce -msgid "Choose which format of email to send." -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:457 -#: classes/emails/class-wc-email-customer-completed-order.php:175 -#: classes/emails/class-wc-email-customer-invoice.php:178 -#: classes/emails/class-wc-email-new-order.php:148 -#@ woocommerce -msgid "Plain text" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:458 -#: classes/emails/class-wc-email-customer-completed-order.php:176 -#: classes/emails/class-wc-email-customer-invoice.php:179 -#: classes/emails/class-wc-email-new-order.php:149 -#@ woocommerce -msgid "HTML" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:459 -#: classes/emails/class-wc-email-customer-completed-order.php:177 -#: classes/emails/class-wc-email-customer-invoice.php:180 -#: classes/emails/class-wc-email-new-order.php:150 -#@ woocommerce -msgid "Multipart" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:495 -#: classes/abstracts/abstract-wc-email.php:516 -#@ woocommerce -msgid "Could not write to template file." -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:543 -#@ woocommerce -msgid "Template file copied to theme." -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:552 -#@ woocommerce -msgid "Template file deleted from theme." -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:572 -#@ woocommerce -msgid "HTML template" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:573 -#@ woocommerce -msgid "Plain text template" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:592 -#@ woocommerce -msgid "Delete template file" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:595 -#, php-format -#@ woocommerce -msgid "This template has been overridden by your theme and can be found in: %s." -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:610 -#@ woocommerce -msgid "Copy file to theme" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:613 -#, php-format -#@ woocommerce -msgid "To override and edit this email template copy %s to your theme folder: %s." -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:624 -#@ woocommerce -msgid "File was not found." -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:649 -#@ woocommerce -msgid "View template" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:650 -#@ woocommerce -msgid "Hide template" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:661 -#@ woocommerce -msgid "Are you sure you want to delete this template file?" -msgstr "" - -#: classes/abstracts/abstract-wc-product.php:33 -#@ woocommerce -msgid "The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class directly." -msgstr "" - -#: classes/abstracts/abstract-wc-product.php:551 -#, php-format -#@ woocommerce -msgid "Only %s left in stock" -msgstr "" - -#: classes/abstracts/abstract-wc-product.php:554 -#, php-format -#@ woocommerce -msgid "%s in stock" -msgstr "" - -#: classes/abstracts/abstract-wc-product.php:561 -#@ woocommerce -msgid "(backorders allowed)" -msgstr "" - -#: classes/abstracts/abstract-wc-product.php:567 -#: classes/abstracts/abstract-wc-product.php:580 -#: templates/cart/cart.php:76 -#@ woocommerce -msgid "Available on backorder" -msgstr "" - -#: classes/abstracts/abstract-wc-product.php:851 -#: classes/abstracts/abstract-wc-product.php:857 -#: classes/class-wc-cart.php:1786 -#: classes/class-wc-order.php:891 -#: classes/class-wc-product-variable.php:272 -#: classes/class-wc-product-variable.php:281 -#: classes/class-wc-product-variation.php:247 -#@ woocommerce -msgid "Free!" -msgstr "" - -#: classes/abstracts/abstract-wc-product.php:875 -#@ woocommerce -msgctxt "min_price" -msgid "From:" -msgstr "" - -#: classes/abstracts/abstract-wc-product.php:964 -#: templates/single-product-reviews.php:28 -#, php-format -#@ woocommerce -msgid "Rated %s out of 5" -msgstr "" - -#: classes/class-wc-cache-helper.php:92 -#, php-format -#@ woocommerce -msgid "In order for database caching to work with WooCommerce you must add _wc_session_ to the \"Ignored Query Strings\" option in W3 Total Cache settings here." -msgstr "" - -#: classes/class-wc-cart.php:459 -#, php-format -#@ woocommerce -msgid "Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in stock). Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Atsiprašome, šiuo metu neturime Jūsų norimos prekės. Prašome patikslinti pirkinių krepšelį ir pabandyti dar kartą. Atsiprašome už nepatogumus." - -#: classes/class-wc-cart.php:478 -#: classes/class-wc-cart.php:487 -#, php-format -#@ woocommerce -msgid "Sorry, we do not have enough \"%s\" in stock to fulfil your order (%s in stock). Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "" - -#: classes/class-wc-cart.php:522 -#, php-format -#@ woocommerce -msgid "Sorry, we do not have enough \"%s\" in stock to fulfil your order right now. Please try again in %d minutes or edit your cart and try again. We apologise for any inconvenience caused." -msgstr "" - -#: classes/class-wc-cart.php:532 -#, php-format -#@ woocommerce -msgid "Sorry, \"%s\" is not in stock. Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "" - -#: classes/class-wc-cart.php:844 -#, php-format -#@ woocommerce -msgid "Sorry, "%s" cannot be purchased." -msgstr "" - -#: classes/class-wc-cart.php:851 -#, php-format -#@ woocommerce -msgid "You cannot add "%s" to the cart because the product is out of stock." -msgstr "" - -#: classes/class-wc-cart.php:856 -#, php-format -#@ woocommerce -msgid "You cannot add that amount of "%s" to the cart because there is not enough stock (%s remaining)." -msgstr "" - -#: classes/class-wc-cart.php:868 -#: classes/class-wc-cart.php:882 -#: classes/class-wc-cart.php:890 -#: templates/cart/mini-cart.php:68 -#: woocommerce-functions.php:499 -#: woocommerce.php:1210 -#@ woocommerce -msgid "View Cart →" -msgstr "" - -#: classes/class-wc-cart.php:868 -#@ woocommerce -msgid "You already have this item in your cart." -msgstr "Jūs jau turite šią prekę savo krepšelyje." - -#: classes/class-wc-cart.php:882 -#: classes/class-wc-cart.php:890 -#, php-format -#@ woocommerce -msgid "%s You cannot add that amount to the cart — we have %s in stock and you already have %s in your cart." -msgstr "" - -#: classes/class-wc-cart.php:1798 -#@ woocommerce -msgid "via" -msgstr "" - -#: classes/class-wc-checkout.php:64 -#@ woocommerce -msgid "Account username" -msgstr "" - -#: classes/class-wc-checkout.php:65 -#@ woocommerce -msgctxt "placeholder" -msgid "Username" -msgstr "" - -#: classes/class-wc-checkout.php:72 -#@ woocommerce -msgid "Account password" -msgstr "" - -#: classes/class-wc-checkout.php:73 -#@ woocommerce -msgctxt "placeholder" -msgid "Password" -msgstr "" - -#: classes/class-wc-checkout.php:79 -#@ woocommerce -msgid "Confirm password" -msgstr "" - -#: classes/class-wc-checkout.php:80 -#@ woocommerce -msgctxt "placeholder" -msgid "Confirm password" -msgstr "" - -#: classes/class-wc-checkout.php:90 -#@ woocommerce -msgctxt "placeholder" -msgid "Notes about your order, e.g. special notes for delivery." -msgstr "Pastabos dėl Jūsų užsakymo, pvz., dėl pristatymo." - -#: classes/class-wc-checkout.php:152 -#, php-format -#@ woocommerce -msgid "Order – %s" -msgstr "" - -#: classes/class-wc-checkout.php:152 -#, php-format -#@ woocommerce -msgctxt "Order date parsed by strftime" -msgid "%b %d, %Y @ %I:%M %p" -msgstr "" - -#: classes/class-wc-checkout.php:278 -#@ woocommerce -msgid "Backordered" -msgstr "" - -#: classes/class-wc-checkout.php:388 -#, php-format -#@ woocommerce -msgid "Sorry, your session has expired. Return to homepage →" -msgstr "" - -#: classes/class-wc-checkout.php:445 -#: woocommerce-functions.php:1704 -#@ woocommerce -msgid "is a required field." -msgstr "" - -#: classes/class-wc-checkout.php:458 -#, php-format -#@ woocommerce -msgid "(%s) is not a valid postcode/ZIP." -msgstr "" - -#: classes/class-wc-checkout.php:479 -#@ woocommerce -msgid "is not valid. Please enter one of the following:" -msgstr "" - -#: classes/class-wc-checkout.php:487 -#@ woocommerce -msgid "is not a valid number." -msgstr "" - -#: classes/class-wc-checkout.php:494 -#@ woocommerce -msgid "is not a valid email address." -msgstr "negaliojantis e.pašto adresas" - -#: classes/class-wc-checkout.php:550 -#@ woocommerce -msgid "Please enter an account username." -msgstr "" - -#: classes/class-wc-checkout.php:554 -#@ woocommerce -msgid "Invalid email/username." -msgstr "" - -#: classes/class-wc-checkout.php:557 -#@ woocommerce -msgid "An account is already registered with that username. Please choose another." -msgstr "" - -#: classes/class-wc-checkout.php:567 -#@ woocommerce -msgid "Please enter an account password." -msgstr "" - -#: classes/class-wc-checkout.php:570 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:83 -#: woocommerce-functions.php:762 -#: woocommerce-functions.php:1634 -#@ woocommerce -msgid "Passwords do not match." -msgstr "" - -#: classes/class-wc-checkout.php:574 -#@ woocommerce -msgid "An account is already registered with your email address. Please login." -msgstr "" - -#: classes/class-wc-checkout.php:580 -#@ woocommerce -msgid "You must accept our Terms & Conditions." -msgstr "" - -#: classes/class-wc-checkout.php:589 -#@ woocommerce -msgid "Invalid shipping method." -msgstr "" - -#: classes/class-wc-checkout.php:602 -#@ woocommerce -msgid "Invalid payment method." -msgstr "" - -#: classes/class-wc-checkout.php:642 -#: woocommerce-functions.php:734 -#: woocommerce-functions.php:736 -#: woocommerce-functions.php:739 -#: woocommerce-functions.php:751 -#: woocommerce-functions.php:753 -#: woocommerce-functions.php:756 -#: woocommerce-functions.php:790 -#@ woocommerce -msgid "ERROR" -msgstr "" - -#: classes/class-wc-checkout.php:642 -#: woocommerce-functions.php:790 -#@ woocommerce -msgid "Couldn’t register you… please contact us if you continue to have problems." -msgstr "" - -#: classes/class-wc-countries.php:37 -#@ woocommerce -msgid "Afghanistan" -msgstr "" - -#: classes/class-wc-countries.php:38 -#@ woocommerce -msgid "Åland Islands" -msgstr "" - -#: classes/class-wc-countries.php:39 -#@ woocommerce -msgid "Albania" -msgstr "" - -#: classes/class-wc-countries.php:40 -#@ woocommerce -msgid "Algeria" -msgstr "" - -#: classes/class-wc-countries.php:41 -#@ woocommerce -msgid "Andorra" -msgstr "" - -#: classes/class-wc-countries.php:42 -#@ woocommerce -msgid "Angola" -msgstr "" - -#: classes/class-wc-countries.php:43 -#@ woocommerce -msgid "Anguilla" -msgstr "" - -#: classes/class-wc-countries.php:44 -#@ woocommerce -msgid "Antarctica" -msgstr "" - -#: classes/class-wc-countries.php:45 -#@ woocommerce -msgid "Antigua and Barbuda" -msgstr "" - -#: classes/class-wc-countries.php:46 -#@ woocommerce -msgid "Argentina" -msgstr "" - -#: classes/class-wc-countries.php:47 -#@ woocommerce -msgid "Armenia" -msgstr "" - -#: classes/class-wc-countries.php:48 -#@ woocommerce -msgid "Aruba" -msgstr "" - -#: classes/class-wc-countries.php:49 -#@ woocommerce -msgid "Australia" -msgstr "" - -#: classes/class-wc-countries.php:50 -#@ woocommerce -msgid "Austria" -msgstr "" - -#: classes/class-wc-countries.php:51 -#@ woocommerce -msgid "Azerbaijan" -msgstr "" - -#: classes/class-wc-countries.php:52 -#@ woocommerce -msgid "Bahamas" -msgstr "" - -#: classes/class-wc-countries.php:53 -#@ woocommerce -msgid "Bahrain" -msgstr "" - -#: classes/class-wc-countries.php:54 -#@ woocommerce -msgid "Bangladesh" -msgstr "" - -#: classes/class-wc-countries.php:55 -#@ woocommerce -msgid "Barbados" -msgstr "" - -#: classes/class-wc-countries.php:56 -#@ woocommerce -msgid "Belarus" -msgstr "" - -#: classes/class-wc-countries.php:57 -#@ woocommerce -msgid "Belgium" -msgstr "" - -#: classes/class-wc-countries.php:58 -#@ woocommerce -msgid "Belau" -msgstr "" - -#: classes/class-wc-countries.php:59 -#@ woocommerce -msgid "Belize" -msgstr "" - -#: classes/class-wc-countries.php:60 -#@ woocommerce -msgid "Benin" -msgstr "" - -#: classes/class-wc-countries.php:61 -#@ woocommerce -msgid "Bermuda" -msgstr "" - -#: classes/class-wc-countries.php:62 -#@ woocommerce -msgid "Bhutan" -msgstr "" - -#: classes/class-wc-countries.php:63 -#@ woocommerce -msgid "Bolivia" -msgstr "" - -#: classes/class-wc-countries.php:64 -#@ woocommerce -msgid "Bonaire, Saint Eustatius and Saba" -msgstr "" - -#: classes/class-wc-countries.php:65 -#@ woocommerce -msgid "Bosnia and Herzegovina" -msgstr "" - -#: classes/class-wc-countries.php:66 -#@ woocommerce -msgid "Botswana" -msgstr "" - -#: classes/class-wc-countries.php:67 -#@ woocommerce -msgid "Bouvet Island" -msgstr "" - -#: classes/class-wc-countries.php:68 -#@ woocommerce -msgid "Brazil" -msgstr "" - -#: classes/class-wc-countries.php:69 -#@ woocommerce -msgid "British Indian Ocean Territory" -msgstr "" - -#: classes/class-wc-countries.php:70 -#@ woocommerce -msgid "British Virgin Islands" -msgstr "" - -#: classes/class-wc-countries.php:71 -#@ woocommerce -msgid "Brunei" -msgstr "" - -#: classes/class-wc-countries.php:72 -#@ woocommerce -msgid "Bulgaria" -msgstr "" - -#: classes/class-wc-countries.php:73 -#@ woocommerce -msgid "Burkina Faso" -msgstr "" - -#: classes/class-wc-countries.php:74 -#@ woocommerce -msgid "Burundi" -msgstr "" - -#: classes/class-wc-countries.php:75 -#@ woocommerce -msgid "Cambodia" -msgstr "" - -#: classes/class-wc-countries.php:76 -#@ woocommerce -msgid "Cameroon" -msgstr "" - -#: classes/class-wc-countries.php:77 -#@ woocommerce -msgid "Canada" -msgstr "" - -#: classes/class-wc-countries.php:78 -#@ woocommerce -msgid "Cape Verde" -msgstr "" - -#: classes/class-wc-countries.php:79 -#@ woocommerce -msgid "Cayman Islands" -msgstr "" - -#: classes/class-wc-countries.php:80 -#@ woocommerce -msgid "Central African Republic" -msgstr "" - -#: classes/class-wc-countries.php:81 -#@ woocommerce -msgid "Chad" -msgstr "" - -#: classes/class-wc-countries.php:82 -#@ woocommerce -msgid "Chile" -msgstr "" - -#: classes/class-wc-countries.php:83 -#@ woocommerce -msgid "China" -msgstr "" - -#: classes/class-wc-countries.php:84 -#@ woocommerce -msgid "Christmas Island" -msgstr "" - -#: classes/class-wc-countries.php:85 -#@ woocommerce -msgid "Cocos (Keeling) Islands" -msgstr "" - -#: classes/class-wc-countries.php:86 -#@ woocommerce -msgid "Colombia" -msgstr "" - -#: classes/class-wc-countries.php:87 -#@ woocommerce -msgid "Comoros" -msgstr "" - -#: classes/class-wc-countries.php:88 -#@ woocommerce -msgid "Congo (Brazzaville)" -msgstr "" - -#: classes/class-wc-countries.php:89 -#@ woocommerce -msgid "Congo (Kinshasa)" -msgstr "" - -#: classes/class-wc-countries.php:90 -#@ woocommerce -msgid "Cook Islands" -msgstr "" - -#: classes/class-wc-countries.php:91 -#@ woocommerce -msgid "Costa Rica" -msgstr "" - -#: classes/class-wc-countries.php:92 -#@ woocommerce -msgid "Croatia" -msgstr "" - -#: classes/class-wc-countries.php:93 -#@ woocommerce -msgid "Cuba" -msgstr "" - -#: classes/class-wc-countries.php:94 -#@ woocommerce -msgid "CuraÇao" -msgstr "" - -#: classes/class-wc-countries.php:95 -#@ woocommerce -msgid "Cyprus" -msgstr "" - -#: classes/class-wc-countries.php:96 -#@ woocommerce -msgid "Czech Republic" -msgstr "" - -#: classes/class-wc-countries.php:97 -#@ woocommerce -msgid "Denmark" -msgstr "" - -#: classes/class-wc-countries.php:98 -#@ woocommerce -msgid "Djibouti" -msgstr "" - -#: classes/class-wc-countries.php:99 -#@ woocommerce -msgid "Dominica" -msgstr "" - -#: classes/class-wc-countries.php:100 -#@ woocommerce -msgid "Dominican Republic" -msgstr "" - -#: classes/class-wc-countries.php:101 -#@ woocommerce -msgid "Ecuador" -msgstr "" - -#: classes/class-wc-countries.php:102 -#@ woocommerce -msgid "Egypt" -msgstr "" - -#: classes/class-wc-countries.php:103 -#@ woocommerce -msgid "El Salvador" -msgstr "" - -#: classes/class-wc-countries.php:104 -#@ woocommerce -msgid "Equatorial Guinea" -msgstr "" - -#: classes/class-wc-countries.php:105 -#@ woocommerce -msgid "Eritrea" -msgstr "" - -#: classes/class-wc-countries.php:106 -#@ woocommerce -msgid "Estonia" -msgstr "" - -#: classes/class-wc-countries.php:107 -#@ woocommerce -msgid "Ethiopia" -msgstr "" - -#: classes/class-wc-countries.php:108 -#@ woocommerce -msgid "Falkland Islands" -msgstr "" - -#: classes/class-wc-countries.php:109 -#@ woocommerce -msgid "Faroe Islands" -msgstr "" - -#: classes/class-wc-countries.php:110 -#@ woocommerce -msgid "Fiji" -msgstr "" - -#: classes/class-wc-countries.php:111 -#@ woocommerce -msgid "Finland" -msgstr "" - -#: classes/class-wc-countries.php:112 -#@ woocommerce -msgid "France" -msgstr "" - -#: classes/class-wc-countries.php:113 -#@ woocommerce -msgid "French Guiana" -msgstr "" - -#: classes/class-wc-countries.php:114 -#@ woocommerce -msgid "French Polynesia" -msgstr "" - -#: classes/class-wc-countries.php:115 -#@ woocommerce -msgid "French Southern Territories" -msgstr "" - -#: classes/class-wc-countries.php:116 -#@ woocommerce -msgid "Gabon" -msgstr "" - -#: classes/class-wc-countries.php:117 -#@ woocommerce -msgid "Gambia" -msgstr "" - -#: classes/class-wc-countries.php:118 -#: i18n/states/US.php:23 -#@ woocommerce -msgid "Georgia" -msgstr "" - -#: classes/class-wc-countries.php:119 -#@ woocommerce -msgid "Germany" -msgstr "" - -#: classes/class-wc-countries.php:120 -#@ woocommerce -msgid "Ghana" -msgstr "" - -#: classes/class-wc-countries.php:121 -#@ woocommerce -msgid "Gibraltar" -msgstr "" - -#: classes/class-wc-countries.php:122 -#@ woocommerce -msgid "Greece" -msgstr "" - -#: classes/class-wc-countries.php:123 -#@ woocommerce -msgid "Greenland" -msgstr "" - -#: classes/class-wc-countries.php:124 -#@ woocommerce -msgid "Grenada" -msgstr "" - -#: classes/class-wc-countries.php:125 -#@ woocommerce -msgid "Guadeloupe" -msgstr "" - -#: classes/class-wc-countries.php:126 -#@ woocommerce -msgid "Guatemala" -msgstr "" - -#: classes/class-wc-countries.php:127 -#@ woocommerce -msgid "Guernsey" -msgstr "" - -#: classes/class-wc-countries.php:128 -#@ woocommerce -msgid "Guinea" -msgstr "" - -#: classes/class-wc-countries.php:129 -#@ woocommerce -msgid "Guinea-Bissau" -msgstr "" - -#: classes/class-wc-countries.php:130 -#@ woocommerce -msgid "Guyana" -msgstr "" - -#: classes/class-wc-countries.php:131 -#@ woocommerce -msgid "Haiti" -msgstr "" - -#: classes/class-wc-countries.php:132 -#@ woocommerce -msgid "Heard Island and McDonald Islands" -msgstr "" - -#: classes/class-wc-countries.php:133 -#@ woocommerce -msgid "Honduras" -msgstr "" - -#: classes/class-wc-countries.php:134 -#@ woocommerce -msgid "Hong Kong" -msgstr "" - -#: classes/class-wc-countries.php:135 -#@ woocommerce -msgid "Hungary" -msgstr "" - -#: classes/class-wc-countries.php:136 -#@ woocommerce -msgid "Iceland" -msgstr "" - -#: classes/class-wc-countries.php:137 -#@ woocommerce -msgid "India" -msgstr "" - -#: classes/class-wc-countries.php:138 -#@ woocommerce -msgid "Indonesia" -msgstr "" - -#: classes/class-wc-countries.php:139 -#@ woocommerce -msgid "Iran" -msgstr "" - -#: classes/class-wc-countries.php:140 -#@ woocommerce -msgid "Iraq" -msgstr "" - -#: classes/class-wc-countries.php:141 -#@ woocommerce -msgid "Republic of Ireland" -msgstr "" - -#: classes/class-wc-countries.php:142 -#@ woocommerce -msgid "Isle of Man" -msgstr "" - -#: classes/class-wc-countries.php:143 -#@ woocommerce -msgid "Israel" -msgstr "" - -#: classes/class-wc-countries.php:144 -#@ woocommerce -msgid "Italy" -msgstr "" - -#: classes/class-wc-countries.php:145 -#@ woocommerce -msgid "Ivory Coast" -msgstr "" - -#: classes/class-wc-countries.php:146 -#@ woocommerce -msgid "Jamaica" -msgstr "" - -#: classes/class-wc-countries.php:147 -#@ woocommerce -msgid "Japan" -msgstr "" - -#: classes/class-wc-countries.php:148 -#@ woocommerce -msgid "Jersey" -msgstr "" - -#: classes/class-wc-countries.php:149 -#@ woocommerce -msgid "Jordan" -msgstr "" - -#: classes/class-wc-countries.php:150 -#@ woocommerce -msgid "Kazakhstan" -msgstr "" - -#: classes/class-wc-countries.php:151 -#@ woocommerce -msgid "Kenya" -msgstr "" - -#: classes/class-wc-countries.php:152 -#@ woocommerce -msgid "Kiribati" -msgstr "" - -#: classes/class-wc-countries.php:153 -#@ woocommerce -msgid "Kuwait" -msgstr "" - -#: classes/class-wc-countries.php:154 -#@ woocommerce -msgid "Kyrgyzstan" -msgstr "" - -#: classes/class-wc-countries.php:155 -#@ woocommerce -msgid "Laos" -msgstr "" - -#: classes/class-wc-countries.php:156 -#@ woocommerce -msgid "Latvia" -msgstr "" - -#: classes/class-wc-countries.php:157 -#@ woocommerce -msgid "Lebanon" -msgstr "" - -#: classes/class-wc-countries.php:158 -#@ woocommerce -msgid "Lesotho" -msgstr "" - -#: classes/class-wc-countries.php:159 -#@ woocommerce -msgid "Liberia" -msgstr "" - -#: classes/class-wc-countries.php:160 -#@ woocommerce -msgid "Libya" -msgstr "" - -#: classes/class-wc-countries.php:161 -#@ woocommerce -msgid "Liechtenstein" -msgstr "" - -#: classes/class-wc-countries.php:162 -#@ woocommerce -msgid "Lithuania" -msgstr "Lietuva" - -#: classes/class-wc-countries.php:163 -#@ woocommerce -msgid "Luxembourg" -msgstr "" - -#: classes/class-wc-countries.php:164 -#@ woocommerce -msgid "Macao S.A.R., China" -msgstr "" - -#: classes/class-wc-countries.php:165 -#@ woocommerce -msgid "Macedonia" -msgstr "" - -#: classes/class-wc-countries.php:166 -#@ woocommerce -msgid "Madagascar" -msgstr "" - -#: classes/class-wc-countries.php:167 -#@ woocommerce -msgid "Malawi" -msgstr "" - -#: classes/class-wc-countries.php:168 -#@ woocommerce -msgid "Malaysia" -msgstr "" - -#: classes/class-wc-countries.php:169 -#@ woocommerce -msgid "Maldives" -msgstr "" - -#: classes/class-wc-countries.php:170 -#@ woocommerce -msgid "Mali" -msgstr "" - -#: classes/class-wc-countries.php:171 -#@ woocommerce -msgid "Malta" -msgstr "" - -#: classes/class-wc-countries.php:172 -#@ woocommerce -msgid "Marshall Islands" -msgstr "" - -#: classes/class-wc-countries.php:173 -#@ woocommerce -msgid "Martinique" -msgstr "" - -#: classes/class-wc-countries.php:174 -#@ woocommerce -msgid "Mauritania" -msgstr "" - -#: classes/class-wc-countries.php:175 -#@ woocommerce -msgid "Mauritius" -msgstr "" - -#: classes/class-wc-countries.php:176 -#@ woocommerce -msgid "Mayotte" -msgstr "" - -#: classes/class-wc-countries.php:177 -#@ woocommerce -msgid "Mexico" -msgstr "" - -#: classes/class-wc-countries.php:178 -#@ woocommerce -msgid "Micronesia" -msgstr "" - -#: classes/class-wc-countries.php:179 -#@ woocommerce -msgid "Moldova" -msgstr "" - -#: classes/class-wc-countries.php:180 -#@ woocommerce -msgid "Monaco" -msgstr "" - -#: classes/class-wc-countries.php:181 -#@ woocommerce -msgid "Mongolia" -msgstr "" - -#: classes/class-wc-countries.php:182 -#@ woocommerce -msgid "Montenegro" -msgstr "" - -#: classes/class-wc-countries.php:183 -#@ woocommerce -msgid "Montserrat" -msgstr "" - -#: classes/class-wc-countries.php:184 -#@ woocommerce -msgid "Morocco" -msgstr "" - -#: classes/class-wc-countries.php:185 -#@ woocommerce -msgid "Mozambique" -msgstr "" - -#: classes/class-wc-countries.php:186 -#@ woocommerce -msgid "Myanmar" -msgstr "" - -#: classes/class-wc-countries.php:187 -#@ woocommerce -msgid "Namibia" -msgstr "" - -#: classes/class-wc-countries.php:188 -#@ woocommerce -msgid "Nauru" -msgstr "" - -#: classes/class-wc-countries.php:189 -#@ woocommerce -msgid "Nepal" -msgstr "" - -#: classes/class-wc-countries.php:190 -#@ woocommerce -msgid "Netherlands" -msgstr "" - -#: classes/class-wc-countries.php:191 -#@ woocommerce -msgid "Netherlands Antilles" -msgstr "" - -#: classes/class-wc-countries.php:192 -#@ woocommerce -msgid "New Caledonia" -msgstr "" - -#: classes/class-wc-countries.php:193 -#@ woocommerce -msgid "New Zealand" -msgstr "" - -#: classes/class-wc-countries.php:194 -#@ woocommerce -msgid "Nicaragua" -msgstr "" - -#: classes/class-wc-countries.php:195 -#@ woocommerce -msgid "Niger" -msgstr "" - -#: classes/class-wc-countries.php:196 -#@ woocommerce -msgid "Nigeria" -msgstr "" - -#: classes/class-wc-countries.php:197 -#@ woocommerce -msgid "Niue" -msgstr "" - -#: classes/class-wc-countries.php:198 -#@ woocommerce -msgid "Norfolk Island" -msgstr "" - -#: classes/class-wc-countries.php:199 -#@ woocommerce -msgid "North Korea" -msgstr "" - -#: classes/class-wc-countries.php:200 -#@ woocommerce -msgid "Norway" -msgstr "" - -#: classes/class-wc-countries.php:201 -#@ woocommerce -msgid "Oman" -msgstr "" - -#: classes/class-wc-countries.php:202 -#@ woocommerce -msgid "Pakistan" -msgstr "" - -#: classes/class-wc-countries.php:203 -#@ woocommerce -msgid "Palestinian Territory" -msgstr "" - -#: classes/class-wc-countries.php:204 -#@ woocommerce -msgid "Panama" -msgstr "" - -#: classes/class-wc-countries.php:205 -#@ woocommerce -msgid "Papua New Guinea" -msgstr "" - -#: classes/class-wc-countries.php:206 -#@ woocommerce -msgid "Paraguay" -msgstr "" - -#: classes/class-wc-countries.php:207 -#@ woocommerce -msgid "Peru" -msgstr "" - -#: classes/class-wc-countries.php:208 -#@ woocommerce -msgid "Philippines" -msgstr "" - -#: classes/class-wc-countries.php:209 -#@ woocommerce -msgid "Pitcairn" -msgstr "" - -#: classes/class-wc-countries.php:210 -#@ woocommerce -msgid "Poland" -msgstr "" - -#: classes/class-wc-countries.php:211 -#@ woocommerce -msgid "Portugal" -msgstr "" - -#: classes/class-wc-countries.php:212 -#@ woocommerce -msgid "Qatar" -msgstr "" - -#: classes/class-wc-countries.php:213 -#@ woocommerce -msgid "Reunion" -msgstr "" - -#: classes/class-wc-countries.php:214 -#@ woocommerce -msgid "Romania" -msgstr "" - -#: classes/class-wc-countries.php:215 -#@ woocommerce -msgid "Russia" -msgstr "" - -#: classes/class-wc-countries.php:216 -#@ woocommerce -msgid "Rwanda" -msgstr "" - -#: classes/class-wc-countries.php:217 -#@ woocommerce -msgid "Saint Barthélemy" -msgstr "" - -#: classes/class-wc-countries.php:218 -#@ woocommerce -msgid "Saint Helena" -msgstr "" - -#: classes/class-wc-countries.php:219 -#@ woocommerce -msgid "Saint Kitts and Nevis" -msgstr "" - -#: classes/class-wc-countries.php:220 -#@ woocommerce -msgid "Saint Lucia" -msgstr "" - -#: classes/class-wc-countries.php:221 -#@ woocommerce -msgid "Saint Martin (French part)" -msgstr "" - -#: classes/class-wc-countries.php:222 -#@ woocommerce -msgid "Saint Martin (Dutch part)" -msgstr "" - -#: classes/class-wc-countries.php:223 -#@ woocommerce -msgid "Saint Pierre and Miquelon" -msgstr "" - -#: classes/class-wc-countries.php:224 -#@ woocommerce -msgid "Saint Vincent and the Grenadines" -msgstr "" - -#: classes/class-wc-countries.php:225 -#@ woocommerce -msgid "San Marino" -msgstr "" - -#: classes/class-wc-countries.php:226 -#@ woocommerce -msgid "São Tomé and Príncipe" -msgstr "" - -#: classes/class-wc-countries.php:227 -#@ woocommerce -msgid "Saudi Arabia" -msgstr "" - -#: classes/class-wc-countries.php:228 -#@ woocommerce -msgid "Senegal" -msgstr "" - -#: classes/class-wc-countries.php:229 -#@ woocommerce -msgid "Serbia" -msgstr "" - -#: classes/class-wc-countries.php:230 -#@ woocommerce -msgid "Seychelles" -msgstr "" - -#: classes/class-wc-countries.php:231 -#@ woocommerce -msgid "Sierra Leone" -msgstr "" - -#: classes/class-wc-countries.php:232 -#@ woocommerce -msgid "Singapore" -msgstr "" - -#: classes/class-wc-countries.php:233 -#@ woocommerce -msgid "Slovakia" -msgstr "" - -#: classes/class-wc-countries.php:234 -#@ woocommerce -msgid "Slovenia" -msgstr "" - -#: classes/class-wc-countries.php:235 -#@ woocommerce -msgid "Solomon Islands" -msgstr "" - -#: classes/class-wc-countries.php:236 -#@ woocommerce -msgid "Somalia" -msgstr "" - -#: classes/class-wc-countries.php:237 -#@ woocommerce -msgid "South Africa" -msgstr "" - -#: classes/class-wc-countries.php:238 -#@ woocommerce -msgid "South Georgia/Sandwich Islands" -msgstr "" - -#: classes/class-wc-countries.php:239 -#@ woocommerce -msgid "South Korea" -msgstr "" - -#: classes/class-wc-countries.php:240 -#@ woocommerce -msgid "South Sudan" -msgstr "" - -#: classes/class-wc-countries.php:241 -#@ woocommerce -msgid "Spain" -msgstr "" - -#: classes/class-wc-countries.php:242 -#@ woocommerce -msgid "Sri Lanka" -msgstr "" - -#: classes/class-wc-countries.php:243 -#@ woocommerce -msgid "Sudan" -msgstr "" - -#: classes/class-wc-countries.php:244 -#@ woocommerce -msgid "Suriname" -msgstr "" - -#: classes/class-wc-countries.php:245 -#@ woocommerce -msgid "Svalbard and Jan Mayen" -msgstr "" - -#: classes/class-wc-countries.php:246 -#@ woocommerce -msgid "Swaziland" -msgstr "" - -#: classes/class-wc-countries.php:247 -#@ woocommerce -msgid "Sweden" -msgstr "" - -#: classes/class-wc-countries.php:248 -#@ woocommerce -msgid "Switzerland" -msgstr "" - -#: classes/class-wc-countries.php:249 -#@ woocommerce -msgid "Syria" -msgstr "" - -#: classes/class-wc-countries.php:250 -#@ woocommerce -msgid "Taiwan" -msgstr "" - -#: classes/class-wc-countries.php:251 -#@ woocommerce -msgid "Tajikistan" -msgstr "" - -#: classes/class-wc-countries.php:252 -#@ woocommerce -msgid "Tanzania" -msgstr "" - -#: classes/class-wc-countries.php:253 -#@ woocommerce -msgid "Thailand" -msgstr "" - -#: classes/class-wc-countries.php:254 -#@ woocommerce -msgid "Timor-Leste" -msgstr "" - -#: classes/class-wc-countries.php:255 -#@ woocommerce -msgid "Togo" -msgstr "" - -#: classes/class-wc-countries.php:256 -#@ woocommerce -msgid "Tokelau" -msgstr "" - -#: classes/class-wc-countries.php:257 -#@ woocommerce -msgid "Tonga" -msgstr "" - -#: classes/class-wc-countries.php:258 -#@ woocommerce -msgid "Trinidad and Tobago" -msgstr "" - -#: classes/class-wc-countries.php:259 -#@ woocommerce -msgid "Tunisia" -msgstr "" - -#: classes/class-wc-countries.php:260 -#@ woocommerce -msgid "Turkey" -msgstr "" - -#: classes/class-wc-countries.php:261 -#@ woocommerce -msgid "Turkmenistan" -msgstr "" - -#: classes/class-wc-countries.php:262 -#@ woocommerce -msgid "Turks and Caicos Islands" -msgstr "" - -#: classes/class-wc-countries.php:263 -#@ woocommerce -msgid "Tuvalu" -msgstr "" - -#: classes/class-wc-countries.php:264 -#@ woocommerce -msgid "Uganda" -msgstr "" - -#: classes/class-wc-countries.php:265 -#@ woocommerce -msgid "Ukraine" -msgstr "" - -#: classes/class-wc-countries.php:266 -#@ woocommerce -msgid "United Arab Emirates" -msgstr "" - -#: classes/class-wc-countries.php:267 -#@ woocommerce -msgid "United Kingdom" -msgstr "" - -#: classes/class-wc-countries.php:268 -#@ woocommerce -msgid "United States" -msgstr "" - -#: classes/class-wc-countries.php:269 -#@ woocommerce -msgid "Uruguay" -msgstr "" - -#: classes/class-wc-countries.php:270 -#@ woocommerce -msgid "Uzbekistan" -msgstr "" - -#: classes/class-wc-countries.php:271 -#@ woocommerce -msgid "Vanuatu" -msgstr "" - -#: classes/class-wc-countries.php:272 -#@ woocommerce -msgid "Vatican" -msgstr "" - -#: classes/class-wc-countries.php:273 -#@ woocommerce -msgid "Venezuela" -msgstr "" - -#: classes/class-wc-countries.php:274 -#@ woocommerce -msgid "Vietnam" -msgstr "" - -#: classes/class-wc-countries.php:275 -#@ woocommerce -msgid "Wallis and Futuna" -msgstr "" - -#: classes/class-wc-countries.php:276 -#@ woocommerce -msgid "Western Sahara" -msgstr "" - -#: classes/class-wc-countries.php:277 -#@ woocommerce -msgid "Western Samoa" -msgstr "" - -#: classes/class-wc-countries.php:278 -#@ woocommerce -msgid "Yemen" -msgstr "" - -#: classes/class-wc-countries.php:279 -#@ woocommerce -msgid "Zambia" -msgstr "" - -#: classes/class-wc-countries.php:280 -#@ woocommerce -msgid "Zimbabwe" -msgstr "" - -#: classes/class-wc-countries.php:418 -#@ woocommerce -msgid "to the" -msgstr "" - -#: classes/class-wc-countries.php:419 -#@ woocommerce -msgid "to" -msgstr "" - -#: classes/class-wc-countries.php:432 -#@ woocommerce -msgid "the" -msgstr "" - -#: classes/class-wc-countries.php:444 -#@ woocommerce -msgid "VAT" -msgstr "" - -#: classes/class-wc-countries.php:457 -#@ woocommerce -msgid "(incl. VAT)" -msgstr "" - -#: classes/class-wc-countries.php:457 -#@ woocommerce -msgid "(incl. tax)" -msgstr "" - -#: classes/class-wc-countries.php:470 -#@ woocommerce -msgid "(ex. VAT)" -msgstr "" - -#: classes/class-wc-countries.php:694 -#@ woocommerce -msgid "Company Name" -msgstr "Įmonės, organizacijos pavadinimas" - -#: classes/class-wc-countries.php:699 -#@ woocommerce -msgctxt "placeholder" -msgid "Street address" -msgstr "" - -#: classes/class-wc-countries.php:707 -#@ woocommerce -msgctxt "placeholder" -msgid "Apartment, suite, unit etc. (optional)" -msgstr "" - -#: classes/class-wc-countries.php:715 -#: classes/class-wc-countries.php:716 -#@ woocommerce -msgid "Town / City" -msgstr "Miestas/Vietovė" - -#: classes/class-wc-countries.php:725 -#: classes/class-wc-countries.php:726 -#@ woocommerce -msgid "State / County" -msgstr "Šalis" - -#: classes/class-wc-countries.php:734 -#: classes/class-wc-countries.php:735 -#: templates/cart/shipping-calculator.php:80 -#@ woocommerce -msgid "Postcode / Zip" -msgstr "Pašto indeksas" - -#: classes/class-wc-countries.php:774 -#: classes/class-wc-countries.php:784 -#: classes/class-wc-countries.php:804 -#: classes/class-wc-countries.php:859 -#: classes/class-wc-countries.php:883 -#: classes/class-wc-countries.php:933 -#: classes/class-wc-countries.php:957 -#: classes/class-wc-countries.php:998 -#@ woocommerce -msgid "Province" -msgstr "" - -#: classes/class-wc-countries.php:790 -#@ woocommerce -msgid "Canton" -msgstr "" - -#: classes/class-wc-countries.php:799 -#: classes/class-wc-countries.php:939 -#@ woocommerce -msgid "Municipality" -msgstr "" - -#: classes/class-wc-countries.php:846 -#@ woocommerce -msgid "Town / District" -msgstr "" - -#: classes/class-wc-countries.php:849 -#@ woocommerce -msgid "Region" -msgstr "" - -#: classes/class-wc-countries.php:962 -#@ woocommerce -msgid "Zip" -msgstr "" - -#: classes/class-wc-countries.php:965 -#@ woocommerce -msgid "State" -msgstr "" - -#: classes/class-wc-countries.php:973 -#@ woocommerce -msgid "County" -msgstr "" - -#: classes/class-wc-countries.php:1074 -#@ woocommerce -msgid "Email Address" -msgstr "E.pašto adresas" - -#: classes/class-wc-coupon.php:421 -#@ woocommerce -msgid "Coupon code applied successfully." -msgstr "" - -#: classes/class-wc-coupon.php:442 -#@ woocommerce -msgid "Coupon is not valid." -msgstr "" - -#: classes/class-wc-coupon.php:445 -#: classes/class-wc-coupon.php:495 -#@ woocommerce -msgid "Coupon does not exist!" -msgstr "" - -#: classes/class-wc-coupon.php:448 -#, php-format -#@ woocommerce -msgid "Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from your order." -msgstr "" - -#: classes/class-wc-coupon.php:451 -#, php-format -#@ woocommerce -msgid "Sorry, it seems the coupon \"%s\" is not yours - it has now been removed from your order." -msgstr "" - -#: classes/class-wc-coupon.php:454 -#@ woocommerce -msgid "Coupon code already applied!" -msgstr "" - -#: classes/class-wc-coupon.php:457 -#, php-format -#@ woocommerce -msgid "Sorry, coupon \"%s\" has already been applied and cannot be used in conjunction with other coupons." -msgstr "" - -#: classes/class-wc-coupon.php:460 -#@ woocommerce -msgid "Coupon usage limit has been reached." -msgstr "" - -#: classes/class-wc-coupon.php:463 -#@ woocommerce -msgid "This coupon has expired." -msgstr "" - -#: classes/class-wc-coupon.php:466 -#, php-format -#@ woocommerce -msgid "The minimum spend for this coupon is %s." -msgstr "" - -#: classes/class-wc-coupon.php:469 -#@ woocommerce -msgid "Sorry, this coupon is not applicable to your cart contents." -msgstr "" - -#: classes/class-wc-coupon.php:472 -#@ woocommerce -msgid "Sorry, this coupon is not valid for sale items." -msgstr "" - -#: classes/class-wc-coupon.php:498 -#@ woocommerce -msgid "Please enter a coupon code." -msgstr "" - -#: classes/class-wc-customer.php:635 -#: classes/class-wc-customer.php:647 -#, php-format -#@ woocommerce -msgid "File %d" -msgstr "" - -#: classes/class-wc-emails.php:246 -#@ woocommerce -msgid "Note" -msgstr "" - -#: classes/class-wc-emails.php:281 -#@ woocommerce -msgid "Product low in stock" -msgstr "" - -#: classes/class-wc-emails.php:288 -#: classes/class-wc-emails.php:320 -#: classes/class-wc-emails.php:364 -#, php-format -#@ woocommerce -msgid "Product #%s - %s" -msgstr "" - -#: classes/class-wc-emails.php:290 -#@ woocommerce -msgid "is low in stock." -msgstr "" - -#: classes/class-wc-emails.php:313 -#@ woocommerce -msgid "Product out of stock" -msgstr "" - -#: classes/class-wc-emails.php:322 -#@ woocommerce -msgid "is out of stock." -msgstr "" - -#: classes/class-wc-emails.php:357 -#@ woocommerce -msgid "Product Backorder" -msgstr "" - -#: classes/class-wc-emails.php:366 -#, php-format -#@ woocommerce -msgid "%s units of %s have been backordered in order #%s." -msgstr "" - -#: classes/class-wc-order.php:283 -#@ woocommerce -msgctxt "hash before order number" -msgid "#" -msgstr "" - -#: classes/class-wc-order.php:886 -#, php-format -#@ woocommerce -msgid " %svia %s" -msgstr "" - -#: classes/class-wc-order.php:949 -#@ woocommerce -msgid "Cart Subtotal:" -msgstr "Krepšelio suma:" - -#: classes/class-wc-order.php:961 -#@ woocommerce -msgid "Shipping:" -msgstr "" - -#: classes/class-wc-order.php:1016 -#: templates/cart/totals.php:105 -#: templates/checkout/review-order.php:104 -#, php-format -#@ woocommerce -msgid "(Includes %s)" -msgstr "" - -#: classes/class-wc-order.php:1225 -#, php-format -#@ woocommerce -msgid "Order status changed from %s to %s." -msgstr "" - -#: classes/class-wc-order.php:1457 -#: woocommerce-ajax.php:1093 -#: woocommerce-ajax.php:1094 -#, php-format -#@ woocommerce -msgid "Item #%s stock reduced from %s to %s." -msgstr "" - -#: classes/class-wc-order.php:1469 -#@ woocommerce -msgid "Order item stock reduced successfully." -msgstr "" - -#: classes/class-wc-product-external.php:56 -#@ woocommerce -msgid "Buy product" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:24 -#@ woocommerce -msgid "Completed order" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:25 -#@ woocommerce -msgid "Order complete emails are sent to the customer when the order is marked complete and usual indicates that the order has been shipped." -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:27 -#@ woocommerce -msgid "Your order is complete" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:28 -#@ woocommerce -msgid "Your {blogname} order from {order_date} is complete" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:37 -#@ woocommerce -msgid "Your order is complete - download your files" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:38 -#@ woocommerce -msgid "Your {blogname} order from {order_date} is complete - download your files" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:141 -#: classes/emails/class-wc-email-new-order.php:128 -#@ woocommerce -msgid "Subject" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:148 -#: classes/emails/class-wc-email-new-order.php:135 -#@ woocommerce -msgid "Email Heading" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:155 -#@ woocommerce -msgid "Subject (downloadable)" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:162 -#@ woocommerce -msgid "Email Heading (downloadable)" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:27 -#@ woocommerce -msgid "Customer invoice" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:28 -#@ woocommerce -msgid "Customer invoice emails can be sent to the user containing order info and payment links." -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:33 -#@ woocommerce -msgid "Invoice for order {order_number} from {order_date}" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:34 -#@ woocommerce -msgid "Invoice for order {order_number}" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:36 -#@ woocommerce -msgid "Your {blogname} order from {order_date}" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:37 -#@ woocommerce -msgid "Order {order_number} details" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:158 -#@ woocommerce -msgid "Email subject (paid)" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:165 -#@ woocommerce -msgid "Email heading (paid)" -msgstr "" - -#: classes/emails/class-wc-email-customer-new-account.php:31 -#@ woocommerce -msgid "New account" -msgstr "" - -#: classes/emails/class-wc-email-customer-new-account.php:32 -#@ woocommerce -msgid "Customer new account emails are sent when a customer signs up via the checkout or My Account page." -msgstr "" - -#: classes/emails/class-wc-email-customer-new-account.php:37 -#@ woocommerce -msgid "Your account on {blogname}" -msgstr "" - -#: classes/emails/class-wc-email-customer-new-account.php:38 -#@ woocommerce -msgid "Welcome to {blogname}" -msgstr "" - -#: classes/emails/class-wc-email-customer-note.php:30 -#@ woocommerce -msgid "Customer note emails are sent when you add a note to an order." -msgstr "" - -#: classes/emails/class-wc-email-customer-note.php:35 -#@ woocommerce -msgid "Note added to your {blogname} order from {order_date}" -msgstr "" - -#: classes/emails/class-wc-email-customer-note.php:36 -#@ woocommerce -msgid "A note has been added to your order" -msgstr "" - -#: classes/emails/class-wc-email-customer-processing-order.php:24 -#@ woocommerce -msgid "Processing order" -msgstr "" - -#: classes/emails/class-wc-email-customer-processing-order.php:25 -#@ woocommerce -msgid "This is an order notification sent to the customer after payment containing order details." -msgstr "" - -#: classes/emails/class-wc-email-customer-processing-order.php:27 -#@ woocommerce -msgid "Thank you for your order" -msgstr "" - -#: classes/emails/class-wc-email-customer-processing-order.php:28 -#@ woocommerce -msgid "Your {blogname} order receipt from {order_date}" -msgstr "" - -#: classes/emails/class-wc-email-customer-reset-password.php:36 -#@ woocommerce -msgid "Reset password" -msgstr "" - -#: classes/emails/class-wc-email-customer-reset-password.php:37 -#@ woocommerce -msgid "Customer reset password emails are sent when a customer resets their password." -msgstr "" - -#: classes/emails/class-wc-email-customer-reset-password.php:42 -#@ woocommerce -msgid "Password Reset for {blogname}" -msgstr "" - -#: classes/emails/class-wc-email-customer-reset-password.php:43 -#@ woocommerce -msgid "Password Reset Instructions" -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:24 -#@ woocommerce -msgid "New order" -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:25 -#@ woocommerce -msgid "New order emails are sent when an order is received/paid by a customer." -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:27 -#@ woocommerce -msgid "New customer order" -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:28 -#@ woocommerce -msgid "[{blogname}] New customer order ({order_number}) - {order_date}" -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:121 -#@ woocommerce -msgid "Recipient(s)" -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:123 -#, php-format -#@ woocommerce -msgid "Enter recipients (comma separated) for this email. Defaults to %s." -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:130 -#, php-format -#@ woocommerce -msgid "This controls the email subject line. Leave blank to use the default subject: %s." -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:137 -#, php-format -#@ woocommerce -msgid "This controls the main heading contained within the email notification. Leave blank to use the default heading: %s." -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:28 -#@ woocommerce -msgid "Bacs" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:65 -#@ woocommerce -msgid "Enable Bank Transfer" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:69 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:63 -#: classes/gateways/cod/class-wc-gateway-cod.php:87 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:143 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:126 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:104 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:82 -#@ woocommerce -msgid "Title" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:71 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:65 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:145 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:128 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:83 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:58 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:106 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:84 -#@ woocommerce -msgid "This controls the title which the user sees during checkout." -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:72 -#@ woocommerce -msgid "Direct Bank Transfer" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:76 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:70 -#@ woocommerce -msgid "Customer Message" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:78 -#@ woocommerce -msgid "Give the customer instructions for paying via BACS, and let them know that their order won't be shipping until the money is received." -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:79 -#@ woocommerce -msgid "Make your payment directly into our bank account. Please use your Order ID as the payment reference. Your order wont be shipped until the funds have cleared in our account." -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:82 -#@ woocommerce -msgid "Account Details" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:84 -#@ woocommerce -msgid "Optionally enter your bank details below for customers to pay into." -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:88 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:163 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:203 -#@ woocommerce -msgid "Account Name" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:94 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:164 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:204 -#@ woocommerce -msgid "Account Number" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:100 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:165 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:205 -#@ woocommerce -msgid "Sort Code" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:106 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:166 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:206 -#@ woocommerce -msgid "Bank Name" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:112 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:167 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:207 -#@ woocommerce -msgid "IBAN" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:117 -#@ woocommerce -msgid "BIC (formerly Swift)" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:136 -#@ woocommerce -msgid "BACS Payment" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:137 -#@ woocommerce -msgid "Allows payments by BACS (Bank Account Clearing System), more commonly known as direct bank/wire transfer." -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:158 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:200 -#@ woocommerce -msgid "Our Details" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:168 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:208 -#@ woocommerce -msgid "BIC" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:234 -#@ woocommerce -msgid "Awaiting BACS payment" -msgstr "" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:28 -#@ woocommerce -msgid "Cheque" -msgstr "" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:59 -#@ woocommerce -msgid "Enable Cheque Payment" -msgstr "" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:66 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:90 -#@ woocommerce -msgid "Cheque Payment" -msgstr "" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:72 -#@ woocommerce -msgid "Let the customer know the payee and where they should be sending the cheque to and that their order won't be shipping until you receive it." -msgstr "" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:73 -#@ woocommerce -msgid "Please send your cheque to Store Name, Store Street, Store Town, Store State / County, Store Postcode." -msgstr "" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:91 -#@ woocommerce -msgid "Allows cheque payments. Why would you take cheques in this day and age? Well you probably wouldn't but it does allow you to make test purchases for testing order emails and the 'success' pages etc." -msgstr "" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:147 -#@ woocommerce -msgid "Awaiting cheque payment" -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:27 -#: classes/gateways/cod/class-wc-gateway-cod.php:54 -#: classes/gateways/cod/class-wc-gateway-cod.php:90 -#@ woocommerce -msgid "Cash on Delivery" -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:55 -#@ woocommerce -msgid "Have your customers pay with cash (or by other means) upon delivery." -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:80 -#@ woocommerce -msgid "Enable COD" -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:81 -#@ woocommerce -msgid "Enable Cash on Delivery" -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:89 -#@ woocommerce -msgid "Payment method title that the customer will see on your website." -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:96 -#@ woocommerce -msgid "Payment method description that the customer will see on your website." -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:97 -#: classes/gateways/cod/class-wc-gateway-cod.php:103 -#@ woocommerce -msgid "Pay with cash upon delivery." -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:100 -#@ woocommerce -msgid "Instructions" -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:102 -#@ woocommerce -msgid "Instructions that will be added to the thank you page." -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:106 -#@ woocommerce -msgid "Enable for shipping methods" -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:111 -#@ woocommerce -msgid "If COD is only available for certain methods, set it up here. Leave blank to enable for all methods." -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:176 -#@ woocommerce -msgid "Payment to be made upon delivery." -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:31 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:168 -#@ woocommerce -msgid "Mijireh Checkout" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:108 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:293 -#@ woocommerce -msgid "Mijireh error:" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:132 -#@ woocommerce -msgid "Enable Mijireh Checkout" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:136 -#@ woocommerce -msgid "Access Key" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:138 -#@ woocommerce -msgid "The Mijireh access key for your store." -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:146 -#@ woocommerce -msgid "Credit Card" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:152 -#@ woocommerce -msgid "Pay securely with your credit card." -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:153 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:135 -#@ woocommerce -msgid "This controls the description which the user sees during checkout." -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:172 -#@ woocommerce -msgid "Get started with Mijireh Checkout" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:173 -#@ woocommerce -msgid "provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site. Mijireh supports a wide variety of payment gateways: Stripe, Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and more." -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:175 -#@ woocommerce -msgid "Join for free" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:175 -#@ woocommerce -msgid "Learn more about WooCommerce and Mijireh" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:179 -#@ woocommerce -msgid "provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:34 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:129 -#@ woocommerce -msgid "PayPal" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:91 -#@ woocommerce -msgid "PayPal standard" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:92 -#@ woocommerce -msgid "PayPal standard works by sending the user to PayPal to enter their payment information." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:104 -#@ woocommerce -msgid "Gateway Disabled" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:104 -#@ woocommerce -msgid "PayPal does not support your store currency." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:122 -#@ woocommerce -msgid "Enable PayPal standard" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:136 -#@ woocommerce -msgid "Pay via PayPal; you can pay with your credit card if you don't have a PayPal account" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:139 -#@ woocommerce -msgid "PayPal Email" -msgstr "PayPal e.pašto adresas" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:141 -#@ woocommerce -msgid "Please enter your PayPal email address; this is needed in order to take payment." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:147 -#@ woocommerce -msgid "Receiver Email" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:149 -#@ woocommerce -msgid "If this differs from the email entered above, input your main receiver email for your PayPal account. This is used to validate IPN requests." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:155 -#@ woocommerce -msgid "Invoice Prefix" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:157 -#@ woocommerce -msgid "Please enter a prefix for your invoice numbers. If you use your PayPal account for multiple stores ensure this prefix is unique as PayPal will not allow orders with the same invoice number." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:162 -#@ woocommerce -msgid "Submission method" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:164 -#@ woocommerce -msgid "Use form submission method." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:165 -#@ woocommerce -msgid "Enable this to post order data to PayPal via a form instead of using a redirect/querystring." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:169 -#@ woocommerce -msgid "Page Style" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:171 -#@ woocommerce -msgid "Optionally enter the name of the page style you wish to use. These are defined within your PayPal account." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:174 -#@ woocommerce -msgid "Optional" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:177 -#@ woocommerce -msgid "Shipping options" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:182 -#@ woocommerce -msgid "Shipping details" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:184 -#@ woocommerce -msgid "Send shipping details to PayPal instead of billing." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:186 -#@ woocommerce -msgid "PayPal allows us to send 1 address. If you are using PayPal for shipping labels you may prefer to send the shipping address rather than billing." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:190 -#@ woocommerce -msgid "Address override" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:192 -#@ woocommerce -msgid "Enable \"address_override\" to prevent address information from being changed." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:193 -#@ woocommerce -msgid "PayPal verifies addresses therefore this setting can cause errors (we recommend keeping it disabled)." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:197 -#@ woocommerce -msgid "Gateway Testing" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:202 -#@ woocommerce -msgid "PayPal sandbox" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:204 -#@ woocommerce -msgid "Enable PayPal sandbox" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:206 -#, php-format -#@ woocommerce -msgid "PayPal sandbox can be used to test payments. Sign up for a developer account here." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:209 -#@ woocommerce -msgid "Debug Log" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:211 -#@ woocommerce -msgid "Enable logging" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:213 -#, php-format -#@ woocommerce -msgid "Log PayPal events, such as IPN requests, inside woocommerce/logs/paypal-%s.txt" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:331 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:385 -#@ woocommerce -msgid "Shipping via" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:426 -#@ woocommerce -msgid "Thank you for your order. We are now redirecting you to PayPal to make payment." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:449 -#@ woocommerce -msgid "Pay via PayPal" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:449 -#@ woocommerce -msgid "Cancel order & restore cart" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:503 -#@ woocommerce -msgid "Thank you for your order, please click the button below to pay with PayPal." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:647 -#, php-format -#@ woocommerce -msgid "Validation error: PayPal amounts do not match (gross %s)." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:658 -#, php-format -#@ woocommerce -msgid "Validation error: PayPal IPN response from a different email address (%s)." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:676 -#@ woocommerce -msgid "IPN payment completed" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:679 -#, php-format -#@ woocommerce -msgid "Payment pending: %s" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:691 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:699 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:716 -#, php-format -#@ woocommerce -msgid "Payment %s via IPN." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:704 -#@ woocommerce -msgid "Order refunded/reversed" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:705 -#, php-format -#@ woocommerce -msgid "Order %s has been marked as refunded - PayPal reason code: %s" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:708 -#, php-format -#@ woocommerce -msgid "Payment for order %s refunded/reversed" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:721 -#@ woocommerce -msgid "Order reversed" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:722 -#, php-format -#@ woocommerce -msgid "Order %s has been marked on-hold due to a reversal - PayPal reason code: %s" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:725 -#, php-format -#@ woocommerce -msgid "Payment for order %s reversed" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:733 -#@ woocommerce -msgid "Reversal Cancelled" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:734 -#, php-format -#@ woocommerce -msgid "Order %s has had a reversal cancelled. Please check the status of payment and update the order status accordingly." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:737 -#, php-format -#@ woocommerce -msgid "Reversal cancelled for order %s" -msgstr "" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:26 -#@ woocommerce -msgid "Google Analytics" -msgstr "" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:27 -#@ woocommerce -msgid "Google Analytics is a free service offered by Google that generates detailed statistics about the visitors to a website." -msgstr "" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:63 -#@ woocommerce -msgid "Google Analytics ID" -msgstr "" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:64 -#@ woocommerce -msgid "Log into your google analytics account to find your ID. e.g. UA-XXXXX-X" -msgstr "" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:69 -#@ woocommerce -msgid "Set Domain Name" -msgstr "" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:70 -#, php-format -#@ woocommerce -msgid "(Optional) Sets the _setDomainName variable. See here for more information." -msgstr "" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:75 -#@ woocommerce -msgid "Tracking code" -msgstr "" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:76 -#@ woocommerce -msgid "Add tracking code to your site's footer. You don't need to enable this if using a 3rd party analytics plugin." -msgstr "" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:82 -#@ woocommerce -msgid "Add eCommerce tracking code to the thankyou page" -msgstr "" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:88 -#@ woocommerce -msgid "Add event tracking code for add to cart actions" -msgstr "" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:214 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:271 -#: templates/single-product/meta.php:19 -#@ woocommerce -msgid "SKU:" -msgstr "" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:290 -#@ woocommerce -msgid "Add to Cart" -msgstr "Įdėti į krepšelį" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:26 -#@ woocommerce -msgid "ShareDaddy" -msgstr "" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:27 -#@ woocommerce -msgid "ShareDaddy is a sharing plugin bundled with JetPack." -msgstr "" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:51 -#@ woocommerce -msgid "Output ShareDaddy button?" -msgstr "" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:52 -#@ woocommerce -msgid "Enable this option to show the ShareDaddy button on the product page." -msgstr "" - -#: classes/integrations/sharethis/class-wc-sharethis.php:29 -#@ woocommerce -msgid "ShareThis" -msgstr "" - -#: classes/integrations/sharethis/class-wc-sharethis.php:30 -#@ woocommerce -msgid "ShareThis offers a sharing widget which will allow customers to share links to products with their friends." -msgstr "" - -#: classes/integrations/sharethis/class-wc-sharethis.php:63 -#@ woocommerce -msgid "ShareThis Publisher ID" -msgstr "" - -#: classes/integrations/sharethis/class-wc-sharethis.php:64 -#, php-format -#@ woocommerce -msgid "Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons on product pages." -msgstr "" - -#: classes/integrations/sharethis/class-wc-sharethis.php:69 -#@ woocommerce -msgid "ShareThis Code" -msgstr "" - -#: classes/integrations/sharethis/class-wc-sharethis.php:70 -#@ woocommerce -msgid "You can tweak the ShareThis code by editing this option." -msgstr "" - -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:22 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:329 -#@ woocommerce -#@ default -msgid "ShareYourCart" -msgstr "" - -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:23 -#@ woocommerce -msgid "Increase your social media exposure by 10 percent! ShareYourCart helps you get more customers by motivating satisfied customers to talk with their friends about your products. For help with ShareYourCart view the documentation." -msgstr "" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:328 -#@ default -msgid "Share your cart settings" -msgstr "" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:342 -#@ default -msgid "Button" -msgstr "" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:343 -#@ default -msgid "Customize Button" -msgstr "" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:351 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:352 -#@ default -msgid "Documentation" -msgstr "" - -#: classes/integrations/shareyourcart/views/admin-page.php:33 -#@ woocommerce -msgid "Setup your ShareYourCart account" -msgstr "" - -#: classes/integrations/shareyourcart/views/admin-page.php:35 -#@ woocommerce -msgid "Create an account" -msgstr "" - -#: classes/integrations/shareyourcart/views/admin-page.php:35 -#@ woocommerce -msgid "Can't access your account?" -msgstr "" - -#: classes/integrations/shareyourcart/views/admin-page.php:100 -#@ woocommerce -msgid "Configure" -msgstr "" - -#: classes/integrations/shareyourcart/views/button-settings-page.php:8 -#: classes/integrations/shareyourcart/views/button-settings-page.php:11 -#@ woocommerce -msgid "Button style" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:25 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:85 -#@ woocommerce -msgid "Flat Rate" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:27 -#@ woocommerce -msgid "Flat rates let you define a standard rate per item, or per order." -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:78 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:52 -#@ woocommerce -msgid "Enable this shipping method" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:82 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:81 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:56 -#@ woocommerce -msgid "Method Title" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:89 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:63 -#@ woocommerce -msgid "Availability" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:93 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:148 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:102 -#@ woocommerce -msgid "All allowed countries" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:116 -#@ woocommerce -msgid "Cost per order" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:122 -#@ woocommerce -msgid "Enter a cost (excluding tax) per order, e.g. 5.00. Leave blank to disable." -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:128 -#@ woocommerce -msgid "Additional Rates" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:130 -#@ woocommerce -msgid "Optional extra shipping options with additional costs (one per line): Option Name | Additional Cost | Per Cost Type (order, class, or item) Example: Priority Mail | 6.95 | order." -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:133 -#@ woocommerce -msgid "Option Name | Additional Cost | Per Cost Type (order, class, or item)" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:136 -#@ woocommerce -msgid "Additional Costs" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:138 -#@ woocommerce -msgid "Additional costs can be added below - these will all be added to the per-order cost above." -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:141 -#@ woocommerce -msgid "Costs Added..." -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:145 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:94 -#@ woocommerce -msgid "Per Order - charge shipping for the entire order as a whole" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:146 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:95 -#@ woocommerce -msgid "Per Item - charge shipping for each item individually" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:147 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:96 -#@ woocommerce -msgid "Per Class - charge shipping for each shipping class in an order" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:154 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:120 -#@ woocommerce -msgid "Minimum Handling Fee" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:160 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:126 -#@ woocommerce -msgid "Enter a minimum fee amount. Fee's less than this will be increased. Leave blank to disable." -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:479 -#@ woocommerce -msgid "Costs" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:485 -#: woocommerce.php:891 -#@ woocommerce -msgid "Shipping Class" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:486 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:100 -#@ woocommerce -msgid "Cost" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:486 -#@ woocommerce -msgid "Cost, excluding tax." -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:487 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:112 -#@ woocommerce -msgid "Handling Fee" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:487 -#@ woocommerce -msgid "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:492 -#@ woocommerce -msgid "+ Add Cost" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:492 -#@ woocommerce -msgid "Delete selected costs" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:498 -#@ woocommerce -msgid "Any class" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:518 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:548 -#@ woocommerce -msgid "Select a class…" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:523 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:524 -#@ woocommerce -msgid "0.00" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:562 -#@ woocommerce -msgid "Delete the selected rates?" -msgstr "" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:25 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:145 -#@ woocommerce -msgid "Free Shipping" -msgstr "" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:77 -#@ woocommerce -msgid "Enable Free Shipping" -msgstr "" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:88 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:143 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:97 -#@ woocommerce -msgid "Method availability" -msgstr "" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:106 -#@ woocommerce -msgid "Free Shipping Requires..." -msgstr "" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:111 -#@ woocommerce -msgid "A valid free shipping coupon" -msgstr "" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:112 -#@ woocommerce -msgid "A minimum order amount (defined below)" -msgstr "" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:113 -#@ woocommerce -msgid "A minimum order amount OR a coupon" -msgstr "" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:114 -#@ woocommerce -msgid "A minimum order amount AND a coupon" -msgstr "" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:118 -#@ woocommerce -msgid "Minimum Order Amount" -msgstr "" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:124 -#@ woocommerce -msgid "Users will need to spend this amount to get free shipping (if enabled above)." -msgstr "" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:29 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:59 -#@ woocommerce -msgid "International Delivery" -msgstr "" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:30 -#@ woocommerce -msgid "International delivery based on flat rate shipping." -msgstr "" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:68 -#@ woocommerce -msgid "Selected countries" -msgstr "" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:69 -#@ woocommerce -msgid "Excluding selected countries" -msgstr "" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:73 -#@ woocommerce -msgid "Countries" -msgstr "" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:90 -#@ woocommerce -msgid "Cost Added..." -msgstr "" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:106 -#@ woocommerce -msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -msgstr "" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:114 -#@ woocommerce -msgid "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. Leave blank to disable." -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:25 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:107 -#@ woocommerce -msgid "Local Delivery" -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:98 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:76 -#@ woocommerce -msgid "Enable" -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:100 -#@ woocommerce -msgid "Enable local delivery" -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:111 -#@ woocommerce -msgid "Fee Type" -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:113 -#@ woocommerce -msgid "How to calculate delivery charges" -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 -#@ woocommerce -msgid "Fixed amount" -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:117 -#@ woocommerce -msgid "Percentage of cart total" -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:118 -#@ woocommerce -msgid "Fixed amount per product" -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:123 -#@ woocommerce -msgid "Delivery Fee" -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:129 -#@ woocommerce -msgid "What fee do you want to charge for local delivery, disregarded if you choose free. Leave blank to disable." -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:135 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:89 -#@ woocommerce -msgid "Zip/Post Codes" -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:137 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:91 -#@ woocommerce -msgid "What zip/post codes would you like to offer delivery to? Separate codes with a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:172 -#@ woocommerce -msgid "Local delivery is a simple shipping method for delivering orders locally." -msgstr "" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:25 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:85 -#@ woocommerce -msgid "Local Pickup" -msgstr "" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:78 -#@ woocommerce -msgid "Enable local pickup" -msgstr "" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:126 -#@ woocommerce -msgid "Local pickup is a simple method which allows the customer to pick up their order themselves." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-cart.php:53 -#: woocommerce-functions.php:1709 -#@ woocommerce -msgid "Please enter a valid postcode/ZIP." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-cart.php:64 -#: classes/shortcodes/class-wc-shortcode-cart.php:70 -#@ woocommerce -msgid "Shipping costs updated." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-checkout.php:45 -#, php-format -#@ woocommerce -msgid "WooCommerce Config Error: The checkout thanks/pay pages are missing - these pages are required for the checkout to function correctly. Please configure the pages here." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-checkout.php:73 -#@ woocommerce -msgid "The order totals have been updated. Please confirm your order by pressing the Place Order button at the bottom of the page." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:78 -#: woocommerce-functions.php:1631 -#@ woocommerce -msgid "Please enter your password." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:93 -#@ woocommerce -msgid "Your password has been reset." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:93 -#@ woocommerce -msgid "Log in" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:114 -#@ woocommerce -msgid "Enter a username or e-mail address." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:121 -#@ woocommerce -msgid "There is no user registered with that email address." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:136 -#@ woocommerce -msgid "Invalid username or e-mail." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:150 -#@ default -msgid "Password reset is not allowed for this user" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:178 -#@ default -msgid "Check your e-mail for the confirmation link." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:198 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:203 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:210 -#@ woocommerce -msgid "Invalid key" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:51 -#@ woocommerce -msgid "Please enter a valid order ID" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:55 -#@ woocommerce -msgid "Please enter a valid order email" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:74 -#@ woocommerce -msgid "Sorry, we could not find that order id in our database." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-pay.php:64 -#: classes/shortcodes/class-wc-shortcode-pay.php:118 -#@ woocommerce -msgid "Your order has already been paid for. Please contact us if you need assistance." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-pay.php:69 -#: classes/shortcodes/class-wc-shortcode-pay.php:125 -#: classes/shortcodes/class-wc-shortcode-view-order.php:51 -#: woocommerce-functions.php:913 -#: woocommerce-functions.php:993 -#@ woocommerce -msgid "Invalid order." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-pay.php:94 -#: templates/checkout/thankyou.php:44 -#@ woocommerce -msgid "Date:" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-pay.php:103 -#: templates/checkout/thankyou.php:53 -#@ woocommerce -msgid "Payment method:" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:51 -#@ woocommerce -msgid "My Account →" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:58 -#, php-format -#@ woocommerce -msgid "Order %s made on %s" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:59 -#, php-format -#@ woocommerce -msgid "Order status: %s" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:65 -#: templates/order/tracking.php:31 -#@ woocommerce -msgid "Order Updates" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:71 -#@ woocommerce -msgid "l jS \\of F Y, h:ia" -msgstr "" - -#: classes/widgets/class-wc-widget-best-sellers.php:31 -#@ woocommerce -msgid "Display a list of your best selling products on your site." -msgstr "" - -#: classes/widgets/class-wc-widget-best-sellers.php:33 -#@ woocommerce -msgid "WooCommerce Best Sellers" -msgstr "" - -#: classes/widgets/class-wc-widget-best-sellers.php:71 -#@ woocommerce -msgid "Best Sellers" -msgstr "" - -#: classes/widgets/class-wc-widget-best-sellers.php:191 -#: classes/widgets/class-wc-widget-cart.php:109 -#: classes/widgets/class-wc-widget-featured-products.php:169 -#: classes/widgets/class-wc-widget-layered-nav.php:352 -#: classes/widgets/class-wc-widget-onsale.php:178 -#: classes/widgets/class-wc-widget-price-filter.php:180 -#: classes/widgets/class-wc-widget-product-categories.php:185 -#: classes/widgets/class-wc-widget-product-search.php:91 -#: classes/widgets/class-wc-widget-product-tag-cloud.php:101 -#: classes/widgets/class-wc-widget-random-products.php:136 -#: classes/widgets/class-wc-widget-recent-products.php:172 -#: classes/widgets/class-wc-widget-recent-reviews.php:159 -#: classes/widgets/class-wc-widget-recently-viewed.php:168 -#: classes/widgets/class-wc-widget-top-rated-products.php:156 -#@ woocommerce -msgid "Title:" -msgstr "" - -#: classes/widgets/class-wc-widget-best-sellers.php:194 -#: classes/widgets/class-wc-widget-featured-products.php:172 -#: classes/widgets/class-wc-widget-onsale.php:181 -#: classes/widgets/class-wc-widget-random-products.php:141 -#: classes/widgets/class-wc-widget-recent-products.php:175 -#: classes/widgets/class-wc-widget-recent-reviews.php:162 -#: classes/widgets/class-wc-widget-recently-viewed.php:171 -#: classes/widgets/class-wc-widget-top-rated-products.php:159 -#@ woocommerce -msgid "Number of products to show:" -msgstr "" - -#: classes/widgets/class-wc-widget-best-sellers.php:198 -#@ woocommerce -msgid "Hide free products" -msgstr "" - -#: classes/widgets/class-wc-widget-cart.php:33 -#@ woocommerce -msgid "Display the user's Cart in the sidebar." -msgstr "" - -#: classes/widgets/class-wc-widget-cart.php:35 -#@ woocommerce -msgid "WooCommerce Cart" -msgstr "" - -#: classes/widgets/class-wc-widget-cart.php:113 -#@ woocommerce -msgid "Hide if cart is empty" -msgstr "" - -#: classes/widgets/class-wc-widget-featured-products.php:35 -#@ woocommerce -msgid "Display a list of featured products on your site." -msgstr "" - -#: classes/widgets/class-wc-widget-featured-products.php:37 -#@ woocommerce -msgid "WooCommerce Featured Products" -msgstr "" - -#: classes/widgets/class-wc-widget-featured-products.php:75 -#@ woocommerce -msgid "Featured Products" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:31 -#@ woocommerce -msgid "Shows active layered nav filters so users can see and deactivate them." -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:33 -#@ woocommerce -msgid "WooCommerce Layered Nav Filters" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:62 -#@ woocommerce -msgid "Active filters" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:93 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -#@ woocommerce -msgid "Remove filter" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#@ woocommerce -msgid "Min" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -#@ woocommerce -msgid "Max" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav.php:31 -#@ woocommerce -msgid "Shows a custom attribute in a widget which lets you narrow down the list of products when viewing product categories." -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav.php:33 -#@ woocommerce -msgid "WooCommerce Layered Nav" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav.php:100 -#, php-format -#@ woocommerce -msgid "Any %s" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav.php:355 -#@ woocommerce -msgid "Attribute:" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav.php:366 -#@ woocommerce -msgid "Display Type:" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav.php:368 -#@ woocommerce -msgid "List" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav.php:369 -#@ woocommerce -msgid "Dropdown" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav.php:372 -#@ woocommerce -msgid "Query Type:" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav.php:374 -#@ woocommerce -msgid "AND" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav.php:375 -#@ woocommerce -msgid "OR" -msgstr "" - -#: classes/widgets/class-wc-widget-onsale.php:31 -#@ woocommerce -msgid "Display a list of your on-sale products on your site." -msgstr "" - -#: classes/widgets/class-wc-widget-onsale.php:33 -#@ woocommerce -msgid "WooCommerce On-sale" -msgstr "" - -#: classes/widgets/class-wc-widget-onsale.php:70 -#@ woocommerce -msgid "On Sale" -msgstr "" - -#: classes/widgets/class-wc-widget-price-filter.php:33 -#@ woocommerce -msgid "Shows a price filter slider in a widget which lets you narrow down the list of shown products when viewing product categories." -msgstr "" - -#: classes/widgets/class-wc-widget-price-filter.php:35 -#@ woocommerce -msgid "WooCommerce Price Filter" -msgstr "" - -#: classes/widgets/class-wc-widget-price-filter.php:137 -#@ woocommerce -msgid "Min price" -msgstr "" - -#: classes/widgets/class-wc-widget-price-filter.php:138 -#@ woocommerce -msgid "Max price" -msgstr "" - -#: classes/widgets/class-wc-widget-price-filter.php:139 -#@ woocommerce -msgid "Filter" -msgstr "" - -#: classes/widgets/class-wc-widget-price-filter.php:141 -#@ woocommerce -msgid "Price:" -msgstr "Kaina:" - -#: classes/widgets/class-wc-widget-price-filter.php:163 -#@ woocommerce -msgid "Filter by price" -msgstr "" - -#: classes/widgets/class-wc-widget-product-categories.php:33 -#@ woocommerce -msgid "A list or dropdown of product categories." -msgstr "" - -#: classes/widgets/class-wc-widget-product-categories.php:35 -#@ woocommerce -msgid "WooCommerce Product Categories" -msgstr "" - -#: classes/widgets/class-wc-widget-product-categories.php:57 -#: woocommerce.php:821 -#: woocommerce.php:823 -#@ woocommerce -msgid "Product Categories" -msgstr "" - -#: classes/widgets/class-wc-widget-product-categories.php:129 -#@ woocommerce -msgid "No product categories exist." -msgstr "" - -#: classes/widgets/class-wc-widget-product-categories.php:188 -#@ woocommerce -msgid "Order by:" -msgstr "" - -#: classes/widgets/class-wc-widget-product-categories.php:190 -#@ woocommerce -msgid "Category Order" -msgstr "" - -#: classes/widgets/class-wc-widget-product-categories.php:195 -#@ woocommerce -msgid "Show as dropdown" -msgstr "" - -#: classes/widgets/class-wc-widget-product-categories.php:198 -#@ woocommerce -msgid "Show post counts" -msgstr "" - -#: classes/widgets/class-wc-widget-product-categories.php:201 -#@ woocommerce -msgid "Show hierarchy" -msgstr "" - -#: classes/widgets/class-wc-widget-product-categories.php:204 -#@ woocommerce -msgid "Only show children for the current category" -msgstr "" - -#: classes/widgets/class-wc-widget-product-search.php:31 -#@ woocommerce -msgid "A Search box for products only." -msgstr "" - -#: classes/widgets/class-wc-widget-product-search.php:33 -#@ woocommerce -msgid "WooCommerce Product Search" -msgstr "" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:31 -#@ woocommerce -msgid "Your most used product tags in cloud format." -msgstr "" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:33 -#@ woocommerce -msgid "WooCommerce Product Tags" -msgstr "" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:58 -#: woocommerce.php:857 -#: woocommerce.php:859 -#@ woocommerce -msgid "Product Tags" -msgstr "" - -#: classes/widgets/class-wc-widget-random-products.php:24 -#@ woocommerce -msgid "WooCommerce Random Products" -msgstr "" - -#: classes/widgets/class-wc-widget-random-products.php:27 -#@ woocommerce -msgid "Display a list of random products on your site." -msgstr "" - -#: classes/widgets/class-wc-widget-random-products.php:46 -#@ woocommerce -msgid "Random Products" -msgstr "" - -#: classes/widgets/class-wc-widget-random-products.php:147 -#: classes/widgets/class-wc-widget-recent-products.php:179 -#@ woocommerce -msgid "Show hidden product variations" -msgstr "" - -#: classes/widgets/class-wc-widget-recent-products.php:31 -#@ woocommerce -msgid "Display a list of your most recent products on your site." -msgstr "" - -#: classes/widgets/class-wc-widget-recent-products.php:33 -#@ woocommerce -msgid "WooCommerce Recent Products" -msgstr "" - -#: classes/widgets/class-wc-widget-recent-products.php:70 -#@ woocommerce -msgid "New Products" -msgstr "" - -#: classes/widgets/class-wc-widget-recent-reviews.php:31 -#@ woocommerce -msgid "Display a list of your most recent reviews on your site." -msgstr "" - -#: classes/widgets/class-wc-widget-recent-reviews.php:71 -#@ woocommerce -msgid "Recent Reviews" -msgstr "" - -#: classes/widgets/class-wc-widget-recent-reviews.php:97 -#, php-format -#@ woocommerce -msgctxt "by comment author" -msgid "by %1$s" -msgstr "" - -#: classes/widgets/class-wc-widget-recently-viewed.php:31 -#@ woocommerce -msgid "Display a list of recently viewed products." -msgstr "" - -#: classes/widgets/class-wc-widget-recently-viewed.php:33 -#@ woocommerce -msgid "WooCommerce Recently Viewed Products" -msgstr "" - -#: classes/widgets/class-wc-widget-recently-viewed.php:76 -#@ woocommerce -msgid "Recently viewed" -msgstr "" - -#: classes/widgets/class-wc-widget-top-rated-products.php:33 -#@ woocommerce -msgid "Display a list of top rated products on your site." -msgstr "" - -#: classes/widgets/class-wc-widget-top-rated-products.php:35 -#@ woocommerce -msgid "WooCommerce Top Rated Products" -msgstr "" - -#: classes/widgets/class-wc-widget-top-rated-products.php:72 -#@ woocommerce -msgid "Top Rated Products" -msgstr "" - -#: i18n/states/AU.php:13 -#@ woocommerce -msgid "Australian Capital Territory" -msgstr "" - -#: i18n/states/AU.php:14 -#@ woocommerce -msgid "New South Wales" -msgstr "" - -#: i18n/states/AU.php:15 -#@ woocommerce -msgid "Northern Territory" -msgstr "" - -#: i18n/states/AU.php:16 -#@ woocommerce -msgid "Queensland" -msgstr "" - -#: i18n/states/AU.php:17 -#@ woocommerce -msgid "South Australia" -msgstr "" - -#: i18n/states/AU.php:18 -#@ woocommerce -msgid "Tasmania" -msgstr "" - -#: i18n/states/AU.php:19 -#@ woocommerce -msgid "Victoria" -msgstr "" - -#: i18n/states/AU.php:20 -#@ woocommerce -msgid "Western Australia" -msgstr "" - -#: i18n/states/BR.php:13 -#@ woocommerce -msgid "Acre" -msgstr "" - -#: i18n/states/BR.php:14 -#@ woocommerce -msgid "Alagoas" -msgstr "" - -#: i18n/states/BR.php:15 -#@ woocommerce -msgid "Amapá" -msgstr "" - -#: i18n/states/BR.php:16 -#@ woocommerce -msgid "Amazonas" -msgstr "" - -#: i18n/states/BR.php:17 -#@ woocommerce -msgid "Bahia" -msgstr "" - -#: i18n/states/BR.php:18 -#@ woocommerce -msgid "Ceará" -msgstr "" - -#: i18n/states/BR.php:19 -#@ woocommerce -msgid "Distrito Federal" -msgstr "" - -#: i18n/states/BR.php:20 -#@ woocommerce -msgid "Espírito Santo" -msgstr "" - -#: i18n/states/BR.php:21 -#@ woocommerce -msgid "Goiás" -msgstr "" - -#: i18n/states/BR.php:22 -#@ woocommerce -msgid "Maranhão" -msgstr "" - -#: i18n/states/BR.php:23 -#@ woocommerce -msgid "Mato Grosso" -msgstr "" - -#: i18n/states/BR.php:24 -#@ woocommerce -msgid "Mato Grosso do Sul" -msgstr "" - -#: i18n/states/BR.php:25 -#@ woocommerce -msgid "Minas Gerais" -msgstr "" - -#: i18n/states/BR.php:26 -#@ woocommerce -msgid "Pará" -msgstr "" - -#: i18n/states/BR.php:27 -#@ woocommerce -msgid "Paraíba" -msgstr "" - -#: i18n/states/BR.php:28 -#@ woocommerce -msgid "Paraná" -msgstr "" - -#: i18n/states/BR.php:29 -#@ woocommerce -msgid "Pernambuco" -msgstr "" - -#: i18n/states/BR.php:30 -#@ woocommerce -msgid "Piauí" -msgstr "" - -#: i18n/states/BR.php:31 -#@ woocommerce -msgid "Rio de Janeiro" -msgstr "" - -#: i18n/states/BR.php:32 -#@ woocommerce -msgid "Rio Grande do Norte" -msgstr "" - -#: i18n/states/BR.php:33 -#@ woocommerce -msgid "Rio Grande do Sul" -msgstr "" - -#: i18n/states/BR.php:34 -#@ woocommerce -msgid "Rondônia" -msgstr "" - -#: i18n/states/BR.php:35 -#@ woocommerce -msgid "Roraima" -msgstr "" - -#: i18n/states/BR.php:36 -#@ woocommerce -msgid "Santa Catarina" -msgstr "" - -#: i18n/states/BR.php:37 -#@ woocommerce -msgid "São Paulo" -msgstr "" - -#: i18n/states/BR.php:38 -#@ woocommerce -msgid "Sergipe" -msgstr "" - -#: i18n/states/BR.php:39 -#@ woocommerce -msgid "Tocantins" -msgstr "" - -#: i18n/states/CA.php:13 -#@ woocommerce -msgid "Alberta" -msgstr "" - -#: i18n/states/CA.php:14 -#@ woocommerce -msgid "British Columbia" -msgstr "" - -#: i18n/states/CA.php:15 -#@ woocommerce -msgid "Manitoba" -msgstr "" - -#: i18n/states/CA.php:16 -#@ woocommerce -msgid "New Brunswick" -msgstr "" - -#: i18n/states/CA.php:17 -#@ woocommerce -msgid "Newfoundland" -msgstr "" - -#: i18n/states/CA.php:18 -#@ woocommerce -msgid "Northwest Territories" -msgstr "" - -#: i18n/states/CA.php:19 -#@ woocommerce -msgid "Nova Scotia" -msgstr "" - -#: i18n/states/CA.php:20 -#@ woocommerce -msgid "Nunavut" -msgstr "" - -#: i18n/states/CA.php:21 -#@ woocommerce -msgid "Ontario" -msgstr "" - -#: i18n/states/CA.php:22 -#@ woocommerce -msgid "Prince Edward Island" -msgstr "" - -#: i18n/states/CA.php:23 -#@ woocommerce -msgid "Quebec" -msgstr "" - -#: i18n/states/CA.php:24 -#@ woocommerce -msgid "Saskatchewan" -msgstr "" - -#: i18n/states/CA.php:25 -#@ woocommerce -msgid "Yukon Territory" -msgstr "" - -#: i18n/states/CN.php:13 -#@ woocommerce -msgid "Yunnan / 云南" -msgstr "" - -#: i18n/states/CN.php:14 -#@ woocommerce -msgid "Beijing / 北京" -msgstr "" - -#: i18n/states/CN.php:15 -#@ woocommerce -msgid "Tianjin / 天津" -msgstr "" - -#: i18n/states/CN.php:16 -#@ woocommerce -msgid "Hebei / 河北" -msgstr "" - -#: i18n/states/CN.php:17 -#@ woocommerce -msgid "Shanxi / 山西" -msgstr "" - -#: i18n/states/CN.php:18 -#@ woocommerce -msgid "Inner Mongolia / 內蒙古" -msgstr "" - -#: i18n/states/CN.php:19 -#@ woocommerce -msgid "Liaoning / 辽宁" -msgstr "" - -#: i18n/states/CN.php:20 -#@ woocommerce -msgid "Jilin / 吉林" -msgstr "" - -#: i18n/states/CN.php:21 -#@ woocommerce -msgid "Heilongjiang / 黑龙江" -msgstr "" - -#: i18n/states/CN.php:22 -#@ woocommerce -msgid "Shanghai / 上海" -msgstr "" - -#: i18n/states/CN.php:23 -#@ woocommerce -msgid "Jiangsu / 江苏" -msgstr "" - -#: i18n/states/CN.php:24 -#@ woocommerce -msgid "Zhejiang / 浙江" -msgstr "" - -#: i18n/states/CN.php:25 -#@ woocommerce -msgid "Anhui / 安徽" -msgstr "" - -#: i18n/states/CN.php:26 -#@ woocommerce -msgid "Fujian / 福建" -msgstr "" - -#: i18n/states/CN.php:27 -#@ woocommerce -msgid "Jiangxi / 江西" -msgstr "" - -#: i18n/states/CN.php:28 -#@ woocommerce -msgid "Shandong / 山东" -msgstr "" - -#: i18n/states/CN.php:29 -#@ woocommerce -msgid "Henan / 河南" -msgstr "" - -#: i18n/states/CN.php:30 -#@ woocommerce -msgid "Hubei / 湖北" -msgstr "" - -#: i18n/states/CN.php:31 -#@ woocommerce -msgid "Hunan / 湖南" -msgstr "" - -#: i18n/states/CN.php:32 -#@ woocommerce -msgid "Guangdong / 广东" -msgstr "" - -#: i18n/states/CN.php:33 -#@ woocommerce -msgid "Guangxi Zhuang / 广西壮族" -msgstr "" - -#: i18n/states/CN.php:34 -#@ woocommerce -msgid "Hainan / 海南" -msgstr "" - -#: i18n/states/CN.php:35 -#@ woocommerce -msgid "Chongqing / 重庆" -msgstr "" - -#: i18n/states/CN.php:36 -#@ woocommerce -msgid "Sichuan / 四川" -msgstr "" - -#: i18n/states/CN.php:37 -#@ woocommerce -msgid "Guizhou / 贵州" -msgstr "" - -#: i18n/states/CN.php:38 -#@ woocommerce -msgid "Shaanxi / 陕西" -msgstr "" - -#: i18n/states/CN.php:39 -#@ woocommerce -msgid "Gansu / 甘肃" -msgstr "" - -#: i18n/states/CN.php:40 -#@ woocommerce -msgid "Qinghai / 青海" -msgstr "" - -#: i18n/states/CN.php:41 -#@ woocommerce -msgid "Ningxia Hui / 宁夏" -msgstr "" - -#: i18n/states/CN.php:42 -#@ woocommerce -msgid "Macau / 澳门" -msgstr "" - -#: i18n/states/CN.php:43 -#@ woocommerce -msgid "Tibet / 西藏" -msgstr "" - -#: i18n/states/CN.php:44 -#@ woocommerce -msgid "Xinjiang / 新疆" -msgstr "" - -#: i18n/states/ES.php:13 -#@ woocommerce -msgid "A Coruña" -msgstr "" - -#: i18n/states/ES.php:14 -#@ woocommerce -msgid "Álava" -msgstr "" - -#: i18n/states/ES.php:15 -#@ woocommerce -msgid "Albacete" -msgstr "" - -#: i18n/states/ES.php:16 -#@ woocommerce -msgid "Alicante" -msgstr "" - -#: i18n/states/ES.php:17 -#@ woocommerce -msgid "Almería" -msgstr "" - -#: i18n/states/ES.php:18 -#@ woocommerce -msgid "Asturias" -msgstr "" - -#: i18n/states/ES.php:19 -#@ woocommerce -msgid "Ávila" -msgstr "" - -#: i18n/states/ES.php:20 -#@ woocommerce -msgid "Badajoz" -msgstr "" - -#: i18n/states/ES.php:21 -#@ woocommerce -msgid "Baleares" -msgstr "" - -#: i18n/states/ES.php:22 -#@ woocommerce -msgid "Barcelona" -msgstr "" - -#: i18n/states/ES.php:23 -#@ woocommerce -msgid "Burgos" -msgstr "" - -#: i18n/states/ES.php:24 -#@ woocommerce -msgid "Cáceres" -msgstr "" - -#: i18n/states/ES.php:25 -#@ woocommerce -msgid "Cádiz" -msgstr "" - -#: i18n/states/ES.php:26 -#@ woocommerce -msgid "Cantabria" -msgstr "" - -#: i18n/states/ES.php:27 -#@ woocommerce -msgid "Castellón" -msgstr "" - -#: i18n/states/ES.php:28 -#@ woocommerce -msgid "Ceuta" -msgstr "" - -#: i18n/states/ES.php:29 -#@ woocommerce -msgid "Ciudad Real" -msgstr "" - -#: i18n/states/ES.php:30 -#@ woocommerce -msgid "Córdoba" -msgstr "" - -#: i18n/states/ES.php:31 -#@ woocommerce -msgid "Cuenca" -msgstr "" - -#: i18n/states/ES.php:32 -#@ woocommerce -msgid "Girona" -msgstr "" - -#: i18n/states/ES.php:33 -#@ woocommerce -msgid "Granada" -msgstr "" - -#: i18n/states/ES.php:34 -#@ woocommerce -msgid "Guadalajara" -msgstr "" - -#: i18n/states/ES.php:35 -#@ woocommerce -msgid "Guipúzcoa" -msgstr "" - -#: i18n/states/ES.php:36 -#@ woocommerce -msgid "Huelva" -msgstr "" - -#: i18n/states/ES.php:37 -#@ woocommerce -msgid "Huesca" -msgstr "" - -#: i18n/states/ES.php:38 -#@ woocommerce -msgid "Jaén" -msgstr "" - -#: i18n/states/ES.php:39 -#@ woocommerce -msgid "La Rioja" -msgstr "" - -#: i18n/states/ES.php:40 -#@ woocommerce -msgid "Las Palmas" -msgstr "" - -#: i18n/states/ES.php:41 -#@ woocommerce -msgid "León" -msgstr "" - -#: i18n/states/ES.php:42 -#@ woocommerce -msgid "Lleida" -msgstr "" - -#: i18n/states/ES.php:43 -#@ woocommerce -msgid "Lugo" -msgstr "" - -#: i18n/states/ES.php:44 -#@ woocommerce -msgid "Madrid" -msgstr "" - -#: i18n/states/ES.php:45 -#@ woocommerce -msgid "Málaga" -msgstr "" - -#: i18n/states/ES.php:46 -#@ woocommerce -msgid "Melilla" -msgstr "" - -#: i18n/states/ES.php:47 -#@ woocommerce -msgid "Murcia" -msgstr "" - -#: i18n/states/ES.php:48 -#@ woocommerce -msgid "Navarra" -msgstr "" - -#: i18n/states/ES.php:49 -#@ woocommerce -msgid "Ourense" -msgstr "" - -#: i18n/states/ES.php:50 -#@ woocommerce -msgid "Palencia" -msgstr "" - -#: i18n/states/ES.php:51 -#@ woocommerce -msgid "Pontevedra" -msgstr "" - -#: i18n/states/ES.php:52 -#@ woocommerce -msgid "Salamanca" -msgstr "" - -#: i18n/states/ES.php:53 -#@ woocommerce -msgid "Santa Cruz de Tenerife" -msgstr "" - -#: i18n/states/ES.php:54 -#@ woocommerce -msgid "Segovia" -msgstr "" - -#: i18n/states/ES.php:55 -#@ woocommerce -msgid "Sevilla" -msgstr "" - -#: i18n/states/ES.php:56 -#@ woocommerce -msgid "Soria" -msgstr "" - -#: i18n/states/ES.php:57 -#@ woocommerce -msgid "Tarragona" -msgstr "" - -#: i18n/states/ES.php:58 -#@ woocommerce -msgid "Teruel" -msgstr "" - -#: i18n/states/ES.php:59 -#@ woocommerce -msgid "Toledo" -msgstr "" - -#: i18n/states/ES.php:60 -#@ woocommerce -msgid "Valencia" -msgstr "" - -#: i18n/states/ES.php:61 -#@ woocommerce -msgid "Valladolid" -msgstr "" - -#: i18n/states/ES.php:62 -#@ woocommerce -msgid "Vizcaya" -msgstr "" - -#: i18n/states/ES.php:63 -#@ woocommerce -msgid "Zamora" -msgstr "" - -#: i18n/states/ES.php:64 -#@ woocommerce -msgid "Zaragoza" -msgstr "" - -#: i18n/states/HK.php:13 -#@ woocommerce -msgid "Hong Kong Island" -msgstr "" - -#: i18n/states/HK.php:14 -#@ woocommerce -msgid "Kowloon" -msgstr "" - -#: i18n/states/HK.php:15 -#@ woocommerce -msgid "New Territories" -msgstr "" - -#: i18n/states/HU.php:13 -#@ woocommerce -msgid "Bács-Kiskun" -msgstr "" - -#: i18n/states/HU.php:14 -#@ woocommerce -msgid "Békés" -msgstr "" - -#: i18n/states/HU.php:15 -#@ woocommerce -msgid "Baranya" -msgstr "" - -#: i18n/states/HU.php:16 -#@ woocommerce -msgid "Borsod-Abaúj-Zemplén" -msgstr "" - -#: i18n/states/HU.php:17 -#@ woocommerce -msgid "Budapest" -msgstr "" - -#: i18n/states/HU.php:18 -#@ woocommerce -msgid "Csongrád" -msgstr "" - -#: i18n/states/HU.php:19 -#@ woocommerce -msgid "Fejér" -msgstr "" - -#: i18n/states/HU.php:20 -#@ woocommerce -msgid "Győr-Moson-Sopron" -msgstr "" - -#: i18n/states/HU.php:21 -#@ woocommerce -msgid "Hajdú-Bihar" -msgstr "" - -#: i18n/states/HU.php:22 -#@ woocommerce -msgid "Heves" -msgstr "" - -#: i18n/states/HU.php:23 -#@ woocommerce -msgid "Jász-Nagykun-Szolnok" -msgstr "" - -#: i18n/states/HU.php:24 -#@ woocommerce -msgid "Komárom-Esztergom" -msgstr "" - -#: i18n/states/HU.php:25 -#@ woocommerce -msgid "Nógrád" -msgstr "" - -#: i18n/states/HU.php:26 -#@ woocommerce -msgid "Pest" -msgstr "" - -#: i18n/states/HU.php:27 -#@ woocommerce -msgid "Somogy" -msgstr "" - -#: i18n/states/HU.php:28 -#@ woocommerce -msgid "Szabolcs-Szatmár-Bereg" -msgstr "" - -#: i18n/states/HU.php:29 -#@ woocommerce -msgid "Tolna" -msgstr "" - -#: i18n/states/HU.php:30 -#@ woocommerce -msgid "Vas" -msgstr "" - -#: i18n/states/HU.php:31 -#@ woocommerce -msgid "Veszprém" -msgstr "" - -#: i18n/states/HU.php:32 -#@ woocommerce -msgid "Zala" -msgstr "" - -#: i18n/states/HZ.php:13 -#: i18n/states/NZ.php:14 -#@ woocommerce -msgid "Auckland" -msgstr "" - -#: i18n/states/HZ.php:14 -#: i18n/states/NZ.php:16 -#@ woocommerce -msgid "Bay of Plenty" -msgstr "" - -#: i18n/states/HZ.php:15 -#: i18n/states/NZ.php:25 -#@ woocommerce -msgid "Canterbury" -msgstr "" - -#: i18n/states/HZ.php:16 -#: i18n/states/NZ.php:18 -#@ woocommerce -msgid "Hawke’s Bay" -msgstr "" - -#: i18n/states/HZ.php:17 -#: i18n/states/NZ.php:19 -#@ woocommerce -msgid "Manawatu-Wanganui" -msgstr "" - -#: i18n/states/HZ.php:18 -#: i18n/states/NZ.php:22 -#@ woocommerce -msgid "Marlborough" -msgstr "" - -#: i18n/states/HZ.php:19 -#: i18n/states/NZ.php:21 -#@ woocommerce -msgid "Nelson" -msgstr "" - -#: i18n/states/HZ.php:20 -#: i18n/states/NZ.php:13 -#@ woocommerce -msgid "Northland" -msgstr "" - -#: i18n/states/HZ.php:21 -#: i18n/states/NZ.php:26 -#@ woocommerce -msgid "Otago" -msgstr "" - -#: i18n/states/HZ.php:22 -#: i18n/states/NZ.php:27 -#@ woocommerce -msgid "Southland" -msgstr "" - -#: i18n/states/HZ.php:23 -#: i18n/states/NZ.php:17 -#@ woocommerce -msgid "Taranaki" -msgstr "" - -#: i18n/states/HZ.php:24 -#: i18n/states/NZ.php:23 -#@ woocommerce -msgid "Tasman" -msgstr "" - -#: i18n/states/HZ.php:25 -#: i18n/states/NZ.php:15 -#@ woocommerce -msgid "Waikato" -msgstr "" - -#: i18n/states/HZ.php:26 -#: i18n/states/NZ.php:20 -#@ woocommerce -msgid "Wellington" -msgstr "" - -#: i18n/states/HZ.php:27 -#: i18n/states/NZ.php:24 -#@ woocommerce -msgid "West Coast" -msgstr "" - -#: i18n/states/ID.php:13 -#@ woocommerce -msgid "Daerah Istimewa Aceh" -msgstr "" - -#: i18n/states/ID.php:14 -#@ woocommerce -msgid "Sumatera Utara" -msgstr "" - -#: i18n/states/ID.php:15 -#@ woocommerce -msgid "Sumatera Barat" -msgstr "" - -#: i18n/states/ID.php:16 -#@ woocommerce -msgid "Riau" -msgstr "" - -#: i18n/states/ID.php:17 -#@ woocommerce -msgid "Kepulauan Riau" -msgstr "" - -#: i18n/states/ID.php:18 -#@ woocommerce -msgid "Jambi" -msgstr "" - -#: i18n/states/ID.php:19 -#@ woocommerce -msgid "Sumatera Selatan" -msgstr "" - -#: i18n/states/ID.php:20 -#@ woocommerce -msgid "Bangka Belitung" -msgstr "" - -#: i18n/states/ID.php:21 -#@ woocommerce -msgid "Bengkulu" -msgstr "" - -#: i18n/states/ID.php:22 -#@ woocommerce -msgid "Lampung" -msgstr "" - -#: i18n/states/ID.php:23 -#@ woocommerce -msgid "DKI Jakarta" -msgstr "" - -#: i18n/states/ID.php:24 -#@ woocommerce -msgid "Jawa Barat" -msgstr "" - -#: i18n/states/ID.php:25 -#@ woocommerce -msgid "Banten" -msgstr "" - -#: i18n/states/ID.php:26 -#@ woocommerce -msgid "Jawa Tengah" -msgstr "" - -#: i18n/states/ID.php:27 -#@ woocommerce -msgid "Jawa Timur" -msgstr "" - -#: i18n/states/ID.php:28 -#@ woocommerce -msgid "Daerah Istimewa Yogyakarta" -msgstr "" - -#: i18n/states/ID.php:29 -#@ woocommerce -msgid "Bali" -msgstr "" - -#: i18n/states/ID.php:30 -#@ woocommerce -msgid "Nusa Tenggara Barat" -msgstr "" - -#: i18n/states/ID.php:31 -#@ woocommerce -msgid "Nusa Tenggara Timur" -msgstr "" - -#: i18n/states/ID.php:32 -#@ woocommerce -msgid "Kalimantan Barat" -msgstr "" - -#: i18n/states/ID.php:33 -#@ woocommerce -msgid "Kalimantan Tengah" -msgstr "" - -#: i18n/states/ID.php:34 -#@ woocommerce -msgid "Kalimantan Timur" -msgstr "" - -#: i18n/states/ID.php:35 -#@ woocommerce -msgid "Kalimantan Selatan" -msgstr "" - -#: i18n/states/ID.php:36 -#@ woocommerce -msgid "Kalimantan Utara" -msgstr "" - -#: i18n/states/ID.php:37 -#@ woocommerce -msgid "Sulawesi Utara" -msgstr "" - -#: i18n/states/ID.php:38 -#@ woocommerce -msgid "Sulawesi Tengah" -msgstr "" - -#: i18n/states/ID.php:39 -#@ woocommerce -msgid "Sulawesi Tenggara" -msgstr "" - -#: i18n/states/ID.php:40 -#@ woocommerce -msgid "Sulawesi Barat" -msgstr "" - -#: i18n/states/ID.php:41 -#@ woocommerce -msgid "Sulawesi Selatan" -msgstr "" - -#: i18n/states/ID.php:42 -#@ woocommerce -msgid "Gorontalo" -msgstr "" - -#: i18n/states/ID.php:43 -#@ woocommerce -msgid "Maluku" -msgstr "" - -#: i18n/states/ID.php:44 -#@ woocommerce -msgid "Maluku Utara" -msgstr "" - -#: i18n/states/ID.php:45 -#@ woocommerce -msgid "Papua" -msgstr "" - -#: i18n/states/ID.php:46 -#@ woocommerce -msgid "Papua Barat" -msgstr "" - -#: i18n/states/IN.php:13 -#@ woocommerce -msgid "Andra Pradesh" -msgstr "" - -#: i18n/states/IN.php:14 -#@ woocommerce -msgid "Arunachal Pradesh" -msgstr "" - -#: i18n/states/IN.php:15 -#@ woocommerce -msgid "Assam" -msgstr "" - -#: i18n/states/IN.php:16 -#@ woocommerce -msgid "Bihar" -msgstr "" - -#: i18n/states/IN.php:17 -#@ woocommerce -msgid "Chhattisgarh" -msgstr "" - -#: i18n/states/IN.php:18 -#@ woocommerce -msgid "Goa" -msgstr "" - -#: i18n/states/IN.php:19 -#@ woocommerce -msgid "Gujarat" -msgstr "" - -#: i18n/states/IN.php:20 -#@ woocommerce -msgid "Haryana" -msgstr "" - -#: i18n/states/IN.php:21 -#@ woocommerce -msgid "Himachal Pradesh" -msgstr "" - -#: i18n/states/IN.php:22 -#@ woocommerce -msgid "Jammu and Kashmir" -msgstr "" - -#: i18n/states/IN.php:23 -#@ woocommerce -msgid "Jharkhand" -msgstr "" - -#: i18n/states/IN.php:24 -#@ woocommerce -msgid "Karnataka" -msgstr "" - -#: i18n/states/IN.php:25 -#@ woocommerce -msgid "Kerala" -msgstr "" - -#: i18n/states/IN.php:26 -#@ woocommerce -msgid "Madhya Pradesh" -msgstr "" - -#: i18n/states/IN.php:27 -#@ woocommerce -msgid "Maharashtra" -msgstr "" - -#: i18n/states/IN.php:28 -#@ woocommerce -msgid "Manipur" -msgstr "" - -#: i18n/states/IN.php:29 -#@ woocommerce -msgid "Meghalaya" -msgstr "" - -#: i18n/states/IN.php:30 -#@ woocommerce -msgid "Mizoram" -msgstr "" - -#: i18n/states/IN.php:31 -#@ woocommerce -msgid "Nagaland" -msgstr "" - -#: i18n/states/IN.php:32 -#@ woocommerce -msgid "Orissa" -msgstr "" - -#: i18n/states/IN.php:33 -#@ woocommerce -msgid "Punjab" -msgstr "" - -#: i18n/states/IN.php:34 -#@ woocommerce -msgid "Rajasthan" -msgstr "" - -#: i18n/states/IN.php:35 -#@ woocommerce -msgid "Sikkim" -msgstr "" - -#: i18n/states/IN.php:36 -#@ woocommerce -msgid "Tamil Nadu" -msgstr "" - -#: i18n/states/IN.php:37 -#@ woocommerce -msgid "Tripura" -msgstr "" - -#: i18n/states/IN.php:38 -#@ woocommerce -msgid "Uttaranchal" -msgstr "" - -#: i18n/states/IN.php:39 -#@ woocommerce -msgid "Uttar Pradesh" -msgstr "" - -#: i18n/states/IN.php:40 -#@ woocommerce -msgid "West Bengal" -msgstr "" - -#: i18n/states/IN.php:41 -#@ woocommerce -msgid "Andaman and Nicobar Islands" -msgstr "" - -#: i18n/states/IN.php:42 -#@ woocommerce -msgid "Chandigarh" -msgstr "" - -#: i18n/states/IN.php:43 -#@ woocommerce -msgid "Dadar and Nagar Haveli" -msgstr "" - -#: i18n/states/IN.php:44 -#@ woocommerce -msgid "Daman and Diu" -msgstr "" - -#: i18n/states/IN.php:45 -#@ woocommerce -msgid "Delhi" -msgstr "" - -#: i18n/states/IN.php:46 -#@ woocommerce -msgid "Lakshadeep" -msgstr "" - -#: i18n/states/IN.php:47 -#@ woocommerce -msgid "Pondicherry (Puducherry)" -msgstr "" - -#: i18n/states/MY.php:13 -#@ woocommerce -msgid "Johor" -msgstr "" - -#: i18n/states/MY.php:14 -#@ woocommerce -msgid "Kedah" -msgstr "" - -#: i18n/states/MY.php:15 -#@ woocommerce -msgid "Kelantan" -msgstr "" - -#: i18n/states/MY.php:16 -#@ woocommerce -msgid "Melaka" -msgstr "" - -#: i18n/states/MY.php:17 -#@ woocommerce -msgid "Negeri Sembilan" -msgstr "" - -#: i18n/states/MY.php:18 -#@ woocommerce -msgid "Pahang" -msgstr "" - -#: i18n/states/MY.php:19 -#@ woocommerce -msgid "Perak" -msgstr "" - -#: i18n/states/MY.php:20 -#@ woocommerce -msgid "Perlis" -msgstr "" - -#: i18n/states/MY.php:21 -#@ woocommerce -msgid "Pulau Pinang" -msgstr "" - -#: i18n/states/MY.php:22 -#@ woocommerce -msgid "Sabah" -msgstr "" - -#: i18n/states/MY.php:23 -#@ woocommerce -msgid "Sarawak" -msgstr "" - -#: i18n/states/MY.php:24 -#@ woocommerce -msgid "Selangor" -msgstr "" - -#: i18n/states/MY.php:25 -#@ woocommerce -msgid "Terengganu" -msgstr "" - -#: i18n/states/MY.php:26 -#@ woocommerce -msgid "W.P. Kuala Lumpur" -msgstr "" - -#: i18n/states/MY.php:27 -#@ woocommerce -msgid "W.P. Labuan" -msgstr "" - -#: i18n/states/MY.php:28 -#@ woocommerce -msgid "W.P. Putrajaya" -msgstr "" - -#: i18n/states/TH.php:13 -#@ woocommerce -msgid "Amnat Charoen (อำนาจเจริญ)" -msgstr "" - -#: i18n/states/TH.php:14 -#@ woocommerce -msgid "Ang Thong (อ่างทอง)" -msgstr "" - -#: i18n/states/TH.php:15 -#@ woocommerce -msgid "Ayutthaya (พระนครศรีอยุธยา)" -msgstr "" - -#: i18n/states/TH.php:16 -#@ woocommerce -msgid "Bangkok (กรุงเทพมหานคร)" -msgstr "" - -#: i18n/states/TH.php:17 -#@ woocommerce -msgid "Bueng Kan (บึงกาฬ)" -msgstr "" - -#: i18n/states/TH.php:18 -#@ woocommerce -msgid "Buri Ram (บุรีรัมย์)" -msgstr "" - -#: i18n/states/TH.php:19 -#@ woocommerce -msgid "Chachoengsao (ฉะเชิงเทรา)" -msgstr "" - -#: i18n/states/TH.php:20 -#@ woocommerce -msgid "Chai Nat (ชัยนาท)" -msgstr "" - -#: i18n/states/TH.php:21 -#@ woocommerce -msgid "Chaiyaphum (ชัยภูมิ)" -msgstr "" - -#: i18n/states/TH.php:22 -#@ woocommerce -msgid "Chanthaburi (จันทบุรี)" -msgstr "" - -#: i18n/states/TH.php:23 -#@ woocommerce -msgid "Chiang Mai (เชียงใหม่)" -msgstr "" - -#: i18n/states/TH.php:24 -#@ woocommerce -msgid "Chiang Rai (เชียงราย)" -msgstr "" - -#: i18n/states/TH.php:25 -#@ woocommerce -msgid "Chonburi (ชลบุรี)" -msgstr "" - -#: i18n/states/TH.php:26 -#@ woocommerce -msgid "Chumphon (ชุมพร)" -msgstr "" - -#: i18n/states/TH.php:27 -#@ woocommerce -msgid "Kalasin (กาฬสินธุ์)" -msgstr "" - -#: i18n/states/TH.php:28 -#@ woocommerce -msgid "Kamphaeng Phet (กำแพงเพชร)" -msgstr "" - -#: i18n/states/TH.php:29 -#@ woocommerce -msgid "Kanchanaburi (กาญจนบุรี)" -msgstr "" - -#: i18n/states/TH.php:30 -#@ woocommerce -msgid "Khon Kaen (ขอนแก่น)" -msgstr "" - -#: i18n/states/TH.php:31 -#@ woocommerce -msgid "Krabi (กระบี่)" -msgstr "" - -#: i18n/states/TH.php:32 -#@ woocommerce -msgid "Lampang (ลำปาง)" -msgstr "" - -#: i18n/states/TH.php:33 -#@ woocommerce -msgid "Lamphun (ลำพูน)" -msgstr "" - -#: i18n/states/TH.php:34 -#@ woocommerce -msgid "Loei (เลย)" -msgstr "" - -#: i18n/states/TH.php:35 -#@ woocommerce -msgid "Lopburi (ลพบุรี)" -msgstr "" - -#: i18n/states/TH.php:36 -#@ woocommerce -msgid "Mae Hong Son (แม่ฮ่องสอน)" -msgstr "" - -#: i18n/states/TH.php:37 -#@ woocommerce -msgid "Maha Sarakham (มหาสารคาม)" -msgstr "" - -#: i18n/states/TH.php:38 -#@ woocommerce -msgid "Mukdahan (มุกดาหาร)" -msgstr "" - -#: i18n/states/TH.php:39 -#@ woocommerce -msgid "Nakhon Nayok (นครนายก)" -msgstr "" - -#: i18n/states/TH.php:40 -#@ woocommerce -msgid "Nakhon Pathom (นครปฐม)" -msgstr "" - -#: i18n/states/TH.php:41 -#@ woocommerce -msgid "Nakhon Phanom (นครพนม)" -msgstr "" - -#: i18n/states/TH.php:42 -#@ woocommerce -msgid "Nakhon Ratchasima (นครราชสีมา)" -msgstr "" - -#: i18n/states/TH.php:43 -#@ woocommerce -msgid "Nakhon Sawan (นครสวรรค์)" -msgstr "" - -#: i18n/states/TH.php:44 -#@ woocommerce -msgid "Nakhon Si Thammarat (นครศรีธรรมราช)" -msgstr "" - -#: i18n/states/TH.php:45 -#@ woocommerce -msgid "Nan (น่าน)" -msgstr "" - -#: i18n/states/TH.php:46 -#@ woocommerce -msgid "Narathiwat (นราธิวาส)" -msgstr "" - -#: i18n/states/TH.php:47 -#@ woocommerce -msgid "Nong Bua Lam Phu (หนองบัวลำภู)" -msgstr "" - -#: i18n/states/TH.php:48 -#@ woocommerce -msgid "Nong Khai (หนองคาย)" -msgstr "" - -#: i18n/states/TH.php:49 -#@ woocommerce -msgid "Nonthaburi (นนทบุรี)" -msgstr "" - -#: i18n/states/TH.php:50 -#@ woocommerce -msgid "Pathum Thani (ปทุมธานี)" -msgstr "" - -#: i18n/states/TH.php:51 -#@ woocommerce -msgid "Pattani (ปัตตานี)" -msgstr "" - -#: i18n/states/TH.php:52 -#@ woocommerce -msgid "Phang Nga (พังงา)" -msgstr "" - -#: i18n/states/TH.php:53 -#@ woocommerce -msgid "Phatthalung (พัทลุง)" -msgstr "" - -#: i18n/states/TH.php:54 -#@ woocommerce -msgid "Phayao (พะเยา)" -msgstr "" - -#: i18n/states/TH.php:55 -#@ woocommerce -msgid "Phetchabun (เพชรบูรณ์)" -msgstr "" - -#: i18n/states/TH.php:56 -#@ woocommerce -msgid "Phetchaburi (เพชรบุรี)" -msgstr "" - -#: i18n/states/TH.php:57 -#@ woocommerce -msgid "Phichit (พิจิตร)" -msgstr "" - -#: i18n/states/TH.php:58 -#@ woocommerce -msgid "Phitsanulok (พิษณุโลก)" -msgstr "" - -#: i18n/states/TH.php:59 -#@ woocommerce -msgid "Phrae (แพร่)" -msgstr "" - -#: i18n/states/TH.php:60 -#@ woocommerce -msgid "Phuket (ภูเก็ต)" -msgstr "" - -#: i18n/states/TH.php:61 -#@ woocommerce -msgid "Prachin Buri (ปราจีนบุรี)" -msgstr "" - -#: i18n/states/TH.php:62 -#@ woocommerce -msgid "Prachuap Khiri Khan (ประจวบคีรีขันธ์)" -msgstr "" - -#: i18n/states/TH.php:63 -#@ woocommerce -msgid "Ranong (ระนอง)" -msgstr "" - -#: i18n/states/TH.php:64 -#@ woocommerce -msgid "Ratchaburi (ราชบุรี)" -msgstr "" - -#: i18n/states/TH.php:65 -#@ woocommerce -msgid "Rayong (ระยอง)" -msgstr "" - -#: i18n/states/TH.php:66 -#@ woocommerce -msgid "Roi Et (ร้อยเอ็ด)" -msgstr "" - -#: i18n/states/TH.php:67 -#@ woocommerce -msgid "Sa Kaeo (สระแก้ว)" -msgstr "" - -#: i18n/states/TH.php:68 -#@ woocommerce -msgid "Sakon Nakhon (สกลนคร)" -msgstr "" - -#: i18n/states/TH.php:69 -#@ woocommerce -msgid "Samut Prakan (สมุทรปราการ)" -msgstr "" - -#: i18n/states/TH.php:70 -#@ woocommerce -msgid "Samut Sakhon (สมุทรสาคร)" -msgstr "" - -#: i18n/states/TH.php:71 -#@ woocommerce -msgid "Samut Songkhram (สมุทรสงคราม)" -msgstr "" - -#: i18n/states/TH.php:72 -#@ woocommerce -msgid "Saraburi (สระบุรี)" -msgstr "" - -#: i18n/states/TH.php:73 -#@ woocommerce -msgid "Satun (สตูล)" -msgstr "" - -#: i18n/states/TH.php:74 -#@ woocommerce -msgid "Sing Buri (สิงห์บุรี)" -msgstr "" - -#: i18n/states/TH.php:75 -#@ woocommerce -msgid "Sisaket (ศรีสะเกษ)" -msgstr "" - -#: i18n/states/TH.php:76 -#@ woocommerce -msgid "Songkhla (สงขลา)" -msgstr "" - -#: i18n/states/TH.php:77 -#@ woocommerce -msgid "Sukhothai (สุโขทัย)" -msgstr "" - -#: i18n/states/TH.php:78 -#@ woocommerce -msgid "Suphan Buri (สุพรรณบุรี)" -msgstr "" - -#: i18n/states/TH.php:79 -#@ woocommerce -msgid "Surat Thani (สุราษฎร์ธานี)" -msgstr "" - -#: i18n/states/TH.php:80 -#@ woocommerce -msgid "Surin (สุรินทร์)" -msgstr "" - -#: i18n/states/TH.php:81 -#@ woocommerce -msgid "Tak (ตาก)" -msgstr "" - -#: i18n/states/TH.php:82 -#@ woocommerce -msgid "Trang (ตรัง)" -msgstr "" - -#: i18n/states/TH.php:83 -#@ woocommerce -msgid "Trat (ตราด)" -msgstr "" - -#: i18n/states/TH.php:84 -#@ woocommerce -msgid "Ubon Ratchathani (อุบลราชธานี)" -msgstr "" - -#: i18n/states/TH.php:85 -#@ woocommerce -msgid "Udon Thani (อุดรธานี)" -msgstr "" - -#: i18n/states/TH.php:86 -#@ woocommerce -msgid "Uthai Thani (อุทัยธานี)" -msgstr "" - -#: i18n/states/TH.php:87 -#@ woocommerce -msgid "Uttaradit (อุตรดิตถ์)" -msgstr "" - -#: i18n/states/TH.php:88 -#@ woocommerce -msgid "Yala (ยะลา)" -msgstr "" - -#: i18n/states/TH.php:89 -#@ woocommerce -msgid "Yasothon (ยโสธร)" -msgstr "" - -#: i18n/states/US.php:13 -#@ woocommerce -msgid "Alabama" -msgstr "" - -#: i18n/states/US.php:14 -#@ woocommerce -msgid "Alaska" -msgstr "" - -#: i18n/states/US.php:15 -#@ woocommerce -msgid "Arizona" -msgstr "" - -#: i18n/states/US.php:16 -#@ woocommerce -msgid "Arkansas" -msgstr "" - -#: i18n/states/US.php:17 -#@ woocommerce -msgid "California" -msgstr "" - -#: i18n/states/US.php:18 -#@ woocommerce -msgid "Colorado" -msgstr "" - -#: i18n/states/US.php:19 -#@ woocommerce -msgid "Connecticut" -msgstr "" - -#: i18n/states/US.php:20 -#@ woocommerce -msgid "Delaware" -msgstr "" - -#: i18n/states/US.php:21 -#@ woocommerce -msgid "District Of Columbia" -msgstr "" - -#: i18n/states/US.php:22 -#@ woocommerce -msgid "Florida" -msgstr "" - -#: i18n/states/US.php:24 -#@ woocommerce -msgid "Hawaii" -msgstr "" - -#: i18n/states/US.php:25 -#@ woocommerce -msgid "Idaho" -msgstr "" - -#: i18n/states/US.php:26 -#@ woocommerce -msgid "Illinois" -msgstr "" - -#: i18n/states/US.php:27 -#@ woocommerce -msgid "Indiana" -msgstr "" - -#: i18n/states/US.php:28 -#@ woocommerce -msgid "Iowa" -msgstr "" - -#: i18n/states/US.php:29 -#@ woocommerce -msgid "Kansas" -msgstr "" - -#: i18n/states/US.php:30 -#@ woocommerce -msgid "Kentucky" -msgstr "" - -#: i18n/states/US.php:31 -#@ woocommerce -msgid "Louisiana" -msgstr "" - -#: i18n/states/US.php:32 -#@ woocommerce -msgid "Maine" -msgstr "" - -#: i18n/states/US.php:33 -#@ woocommerce -msgid "Maryland" -msgstr "" - -#: i18n/states/US.php:34 -#@ woocommerce -msgid "Massachusetts" -msgstr "" - -#: i18n/states/US.php:35 -#@ woocommerce -msgid "Michigan" -msgstr "" - -#: i18n/states/US.php:36 -#@ woocommerce -msgid "Minnesota" -msgstr "" - -#: i18n/states/US.php:37 -#@ woocommerce -msgid "Mississippi" -msgstr "" - -#: i18n/states/US.php:38 -#@ woocommerce -msgid "Missouri" -msgstr "" - -#: i18n/states/US.php:39 -#@ woocommerce -msgid "Montana" -msgstr "" - -#: i18n/states/US.php:40 -#@ woocommerce -msgid "Nebraska" -msgstr "" - -#: i18n/states/US.php:41 -#@ woocommerce -msgid "Nevada" -msgstr "" - -#: i18n/states/US.php:42 -#@ woocommerce -msgid "New Hampshire" -msgstr "" - -#: i18n/states/US.php:43 -#@ woocommerce -msgid "New Jersey" -msgstr "" - -#: i18n/states/US.php:44 -#@ woocommerce -msgid "New Mexico" -msgstr "" - -#: i18n/states/US.php:45 -#@ woocommerce -msgid "New York" -msgstr "" - -#: i18n/states/US.php:46 -#@ woocommerce -msgid "North Carolina" -msgstr "" - -#: i18n/states/US.php:47 -#@ woocommerce -msgid "North Dakota" -msgstr "" - -#: i18n/states/US.php:48 -#@ woocommerce -msgid "Ohio" -msgstr "" - -#: i18n/states/US.php:49 -#@ woocommerce -msgid "Oklahoma" -msgstr "" - -#: i18n/states/US.php:50 -#@ woocommerce -msgid "Oregon" -msgstr "" - -#: i18n/states/US.php:51 -#@ woocommerce -msgid "Pennsylvania" -msgstr "" - -#: i18n/states/US.php:52 -#@ woocommerce -msgid "Rhode Island" -msgstr "" - -#: i18n/states/US.php:53 -#@ woocommerce -msgid "South Carolina" -msgstr "" - -#: i18n/states/US.php:54 -#@ woocommerce -msgid "South Dakota" -msgstr "" - -#: i18n/states/US.php:55 -#@ woocommerce -msgid "Tennessee" -msgstr "" - -#: i18n/states/US.php:56 -#@ woocommerce -msgid "Texas" -msgstr "" - -#: i18n/states/US.php:57 -#@ woocommerce -msgid "Utah" -msgstr "" - -#: i18n/states/US.php:58 -#@ woocommerce -msgid "Vermont" -msgstr "" - -#: i18n/states/US.php:59 -#@ woocommerce -msgid "Virginia" -msgstr "" - -#: i18n/states/US.php:60 -#@ woocommerce -msgid "Washington" -msgstr "" - -#: i18n/states/US.php:61 -#@ woocommerce -msgid "West Virginia" -msgstr "" - -#: i18n/states/US.php:62 -#@ woocommerce -msgid "Wisconsin" -msgstr "" - -#: i18n/states/US.php:63 -#@ woocommerce -msgid "Wyoming" -msgstr "" - -#: i18n/states/US.php:64 -#@ woocommerce -msgid "Armed Forces (AA)" -msgstr "" - -#: i18n/states/US.php:65 -#@ woocommerce -msgid "Armed Forces (AE)" -msgstr "" - -#: i18n/states/US.php:66 -#@ woocommerce -msgid "Armed Forces (AP)" -msgstr "" - -#: i18n/states/US.php:67 -#@ woocommerce -msgid "American Samoa" -msgstr "" - -#: i18n/states/US.php:68 -#@ woocommerce -msgid "Guam" -msgstr "" - -#: i18n/states/US.php:69 -#@ woocommerce -msgid "Northern Mariana Islands" -msgstr "" - -#: i18n/states/US.php:70 -#@ woocommerce -msgid "Puerto Rico" -msgstr "" - -#: i18n/states/US.php:71 -#@ woocommerce -msgid "US Minor Outlying Islands" -msgstr "" - -#: i18n/states/US.php:72 -#@ woocommerce -msgid "US Virgin Islands" -msgstr "" - -#: i18n/states/ZA.php:13 -#@ woocommerce -msgid "Eastern Cape" -msgstr "" - -#: i18n/states/ZA.php:14 -#@ woocommerce -msgid "Free State" -msgstr "" - -#: i18n/states/ZA.php:15 -#@ woocommerce -msgid "Gauteng" -msgstr "" - -#: i18n/states/ZA.php:16 -#@ woocommerce -msgid "KwaZulu-Natal" -msgstr "" - -#: i18n/states/ZA.php:17 -#@ woocommerce -msgid "Limpopo" -msgstr "" - -#: i18n/states/ZA.php:18 -#@ woocommerce -msgid "Mpumalanga" -msgstr "" - -#: i18n/states/ZA.php:19 -#@ woocommerce -msgid "Northern Cape" -msgstr "" - -#: i18n/states/ZA.php:20 -#@ woocommerce -msgid "North West" -msgstr "" - -#: i18n/states/ZA.php:21 -#@ woocommerce -msgid "Western Cape" -msgstr "" - -#: i18n/strings.php:16 -#@ woocommerce -msgid "pending" -msgstr "" - -#: i18n/strings.php:17 -#@ woocommerce -msgid "failed" -msgstr "" - -#: i18n/strings.php:18 -#@ woocommerce -msgid "on-hold" -msgstr "" - -#: i18n/strings.php:19 -#@ woocommerce -msgid "processing" -msgstr "" - -#: i18n/strings.php:20 -#@ woocommerce -msgid "completed" -msgstr "" - -#: i18n/strings.php:21 -#@ woocommerce -msgid "refunded" -msgstr "" - -#: i18n/strings.php:22 -#@ woocommerce -msgid "cancelled" -msgstr "" - -#: templates/cart/cart-empty.php:14 -#@ woocommerce -msgid "Your cart is currently empty." -msgstr "Jūsų krepšelis yra tuščias" - -#: templates/cart/cart-empty.php:18 -#@ woocommerce -msgid "← Return To Shop" -msgstr "← Grižkite į e.parduotuvę" - -#: templates/cart/cart.php:47 -#@ woocommerce -msgid "Remove this item" -msgstr "" - -#: templates/cart/cart.php:100 -#: templates/single-product/add-to-cart/quantity.php:12 -#@ woocommerce -msgctxt "Product quantity input tooltip" -msgid "Qty" -msgstr "" - -#: templates/cart/cart.php:127 -#: templates/checkout/form-coupon.php:29 -#@ woocommerce -msgid "Apply Coupon" -msgstr "" - -#: templates/cart/cart.php:134 -#@ woocommerce -msgid "Update Cart" -msgstr "Atnaujinti krepšelį" - -#: templates/cart/cart.php:134 -#@ woocommerce -msgid "Proceed to Checkout →" -msgstr "Apmokėti →" - -#: templates/cart/cross-sells.php:38 -#@ woocommerce -msgid "You may be interested in…" -msgstr "" - -#: templates/cart/mini-cart.php:55 -#@ woocommerce -msgid "No products in the cart." -msgstr "" - -#: templates/cart/mini-cart.php:69 -#@ woocommerce -msgid "Checkout →" -msgstr "" - -#: templates/cart/shipping-calculator.php:22 -#@ woocommerce -msgid "Calculate Shipping" -msgstr "Skaičiuoti pristatymą" - -#: templates/cart/shipping-calculator.php:45 -#: templates/cart/shipping-calculator.php:51 -#: templates/cart/shipping-calculator.php:63 -#@ woocommerce -msgid "State / county" -msgstr "Šalis" - -#: templates/cart/shipping-calculator.php:52 -#: woocommerce-template.php:1386 -#@ woocommerce -msgid "Select a state…" -msgstr "" - -#: templates/cart/shipping-calculator.php:85 -#@ woocommerce -msgid "Update Totals" -msgstr "Atnaujinti sumą" - -#: templates/cart/shipping-methods.php:32 -#@ woocommerce -msgid "Free" -msgstr "" - -#: templates/cart/shipping-methods.php:68 -#@ woocommerce -msgid "Please fill in your details to see available shipping methods." -msgstr "" - -#: templates/cart/shipping-methods.php:76 -#: templates/cart/totals.php:147 -#, php-format -#@ woocommerce -msgid "Sorry, it seems that there are no available shipping methods for your location (%s)." -msgstr "" - -#: templates/cart/shipping-methods.php:76 -#: templates/cart/totals.php:147 -#@ woocommerce -msgid "If you require assistance or wish to make alternate arrangements please contact us." -msgstr "" - -#: templates/cart/totals.php:22 -#@ woocommerce -msgid "Cart Totals" -msgstr "Visas krepšelis" - -#: templates/cart/totals.php:28 -#: templates/checkout/review-order.php:27 -#@ woocommerce -msgid "Cart Subtotal" -msgstr "Krepšelio suma" - -#: templates/cart/totals.php:35 -#: templates/checkout/review-order.php:34 -#: woocommerce.php:1694 -#@ woocommerce -msgid "Cart Discount" -msgstr "" - -#: templates/cart/totals.php:35 -#: templates/cart/totals.php:83 -#@ woocommerce -msgid "[Remove]" -msgstr "" - -#: templates/cart/totals.php:83 -#: templates/checkout/review-order.php:82 -#@ woocommerce -msgid "Order Discount" -msgstr "" - -#: templates/cart/totals.php:121 -#, php-format -#@ woocommerce -msgid " (taxes estimated for %s)" -msgstr "" - -#: templates/cart/totals.php:123 -#, php-format -#@ woocommerce -msgid "Note: Shipping and taxes are estimated%s and will be updated during checkout based on your billing and shipping information." -msgstr "" - -#: templates/cart/totals.php:135 -#@ woocommerce -msgid "No shipping methods were found; please recalculate your shipping and enter your state/county and zip/postcode to ensure there are no other available methods for your location." -msgstr "" - -#: templates/checkout/cart-errors.php:16 -#@ woocommerce -msgid "There are some issues with the items in your cart (shown above). Please go back to the cart page and resolve these issues before checking out." -msgstr "" - -#: templates/checkout/cart-errors.php:20 -#@ woocommerce -msgid "← Return To Cart" -msgstr "" - -#: templates/checkout/form-billing.php:17 -#@ woocommerce -msgid "Billing & Shipping" -msgstr "" - -#: templates/checkout/form-billing.php:42 -#@ woocommerce -msgid "Create an account?" -msgstr "" - -#: templates/checkout/form-billing.php:51 -#@ woocommerce -msgid "Create an account by entering the information below. If you are a returning customer please login at the top of the page." -msgstr "" - -#: templates/checkout/form-checkout.php:20 -#@ woocommerce -msgid "You must be logged in to checkout." -msgstr "" - -#: templates/checkout/form-checkout.php:51 -#@ woocommerce -msgid "Your order" -msgstr "Jūsų užsakymas" - -#: templates/checkout/form-coupon.php:17 -#@ woocommerce -msgid "Have a coupon?" -msgstr "" - -#: templates/checkout/form-coupon.php:20 -#@ woocommerce -msgid "Click here to enter your code" -msgstr "" - -#: templates/checkout/form-login.php:14 -#@ woocommerce -msgid "Returning customer?" -msgstr "" - -#: templates/checkout/form-login.php:17 -#@ woocommerce -msgid "Click here to login" -msgstr "" - -#: templates/checkout/form-login.php:22 -#@ woocommerce -msgid "If you have shopped with us before, please enter your details in the boxes below. If you are a new customer please proceed to the Billing & Shipping section." -msgstr "" - -#: templates/checkout/form-pay.php:78 -#@ woocommerce -msgid "Sorry, it seems that there are no available payment methods for your location. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "" - -#: templates/checkout/form-pay.php:87 -#@ woocommerce -msgid "Pay for order" -msgstr "" - -#: templates/checkout/form-shipping.php:32 -#@ woocommerce -msgid "Ship to billing address?" -msgstr "Prekes pristatyti mokėtojo adresu?" - -#: templates/checkout/form-shipping.php:59 -#: templates/single-product/tabs/additional-information.php:14 -#: woocommerce-template.php:759 -#@ woocommerce -msgid "Additional Information" -msgstr "" - -#: templates/checkout/review-order.php:174 -#@ woocommerce -msgid "Please fill in your details above to see available payment methods." -msgstr "" - -#: templates/checkout/review-order.php:176 -#@ woocommerce -msgid "Sorry, it seems that there are no available payment methods for your state. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "" - -#: templates/checkout/review-order.php:185 -#@ woocommerce -msgid "Since your browser does not support JavaScript, or it is disabled, please ensure you click the Update Totals button before placing your order. You may be charged more than the amount stated above if you fail to do so." -msgstr "" - -#: templates/checkout/review-order.php:185 -#@ woocommerce -msgid "Update totals" -msgstr "Atnaujinti krepšelį" - -#: templates/checkout/review-order.php:192 -#@ woocommerce -msgid "Place order" -msgstr "Pateikti užsakymą" - -#: templates/checkout/review-order.php:199 -#@ woocommerce -msgid "I have read and accept the" -msgstr "" - -#: templates/checkout/review-order.php:199 -#@ woocommerce -msgid "terms & conditions" -msgstr "" - -#: templates/checkout/thankyou.php:18 -#@ woocommerce -msgid "Unfortunately your order cannot be processed as the originating bank/merchant has declined your transaction." -msgstr "" - -#: templates/checkout/thankyou.php:22 -#@ woocommerce -msgid "Please attempt your purchase again or go to your account page." -msgstr "" - -#: templates/checkout/thankyou.php:24 -#@ woocommerce -msgid "Please attempt your purchase again." -msgstr "" - -#: templates/checkout/thankyou.php:36 -#: templates/checkout/thankyou.php:67 -#@ woocommerce -msgid "Thank you. Your order has been received." -msgstr "" - -#: templates/emails/admin-new-order.php:13 -#: templates/emails/plain/admin-new-order.php:13 -#, php-format -#@ woocommerce -msgid "You have received an order from %s. Their order is as follows:" -msgstr "" - -#: templates/emails/admin-new-order.php:17 -#, php-format -#@ woocommerce -msgid "Order: %s" -msgstr "" - -#: templates/emails/customer-completed-order.php:14 -#: templates/emails/plain/customer-completed-order.php:13 -#, php-format -#@ woocommerce -msgid "Hi there. Your recent order on %s has been completed. Your order details are shown below for your reference:" -msgstr "" - -#: templates/emails/customer-invoice.php:16 -#: templates/emails/plain/customer-invoice.php:14 -#, php-format -#@ woocommerce -msgid "An order has been created for you on %s. To pay for this order please use the following link: %s" -msgstr "" - -#: templates/emails/customer-invoice.php:16 -#@ woocommerce -msgid "pay" -msgstr "" - -#: templates/emails/customer-new-account.php:14 -#: templates/emails/plain/customer-new-account.php:13 -#, php-format -#@ woocommerce -msgid "Thanks for creating an account on %s. Your username is %s." -msgstr "" - -#: templates/emails/customer-new-account.php:16 -#: templates/emails/plain/customer-new-account.php:15 -#, php-format -#@ woocommerce -msgid "You can access your account area here: %s." -msgstr "" - -#: templates/emails/customer-note.php:14 -#: templates/emails/plain/customer-note.php:13 -#@ woocommerce -msgid "Hello, a note has just been added to your order:" -msgstr "" - -#: templates/emails/customer-note.php:18 -#: templates/emails/plain/customer-note.php:21 -#@ woocommerce -msgid "For your reference, your order details are shown below." -msgstr "" - -#: templates/emails/customer-processing-order.php:14 -#: templates/emails/plain/customer-processing-order.php:13 -#@ woocommerce -msgid "Your order has been received and is now being processed. Your order details are shown below for your reference:" -msgstr "" - -#: templates/emails/customer-reset-password.php:14 -#: templates/emails/plain/customer-reset-password.php:13 -#@ woocommerce -msgid "Someone requested that the password be reset for the following account:" -msgstr "" - -#: templates/emails/customer-reset-password.php:15 -#: templates/emails/plain/customer-reset-password.php:15 -#, php-format -#@ woocommerce -msgid "Username: %s" -msgstr "" - -#: templates/emails/customer-reset-password.php:16 -#: templates/emails/plain/customer-reset-password.php:16 -#@ woocommerce -msgid "If this was a mistake, just ignore this email and nothing will happen." -msgstr "" - -#: templates/emails/customer-reset-password.php:17 -#: templates/emails/plain/customer-reset-password.php:17 -#@ woocommerce -msgid "To reset your password, visit the following address:" -msgstr "" - -#: templates/emails/customer-reset-password.php:20 -#@ woocommerce -msgid "Click here to reset your password" -msgstr "" - -#: templates/emails/email-order-items.php:48 -#, php-format -#@ woocommerce -msgid "Download %d:" -msgstr "" - -#: templates/emails/email-order-items.php:50 -#@ woocommerce -msgid "Download:" -msgstr "" - -#: templates/emails/plain/admin-new-order.php:19 -#: templates/emails/plain/customer-completed-order.php:19 -#: templates/emails/plain/customer-invoice.php:20 -#: templates/emails/plain/customer-note.php:27 -#: templates/emails/plain/customer-processing-order.php:19 -#, php-format -#@ woocommerce -msgid "Order number: %s" -msgstr "" - -#: templates/emails/plain/admin-new-order.php:20 -#: templates/emails/plain/customer-completed-order.php:20 -#: templates/emails/plain/customer-invoice.php:21 -#: templates/emails/plain/customer-note.php:28 -#: templates/emails/plain/customer-processing-order.php:20 -#, php-format -#@ woocommerce -msgid "Order date: %s" -msgstr "" - -#: templates/emails/plain/admin-new-order.php:20 -#@ woocommerce -msgid "jS F Y" -msgstr "" - -#: templates/emails/plain/customer-completed-order.php:38 -#: templates/emails/plain/customer-note.php:46 -#: templates/emails/plain/customer-processing-order.php:38 -#@ woocommerce -msgid "Your details" -msgstr "" - -#: templates/emails/plain/email-order-items.php:28 -#, php-format -#@ woocommerce -msgid "Quantity: %s" -msgstr "Kiekis: %s" - -#: templates/emails/plain/email-order-items.php:31 -#, php-format -#@ woocommerce -msgid "Cost: %s" -msgstr "" - -#: templates/loop/add-to-cart.php:17 -#: templates/loop/add-to-cart.php:41 -#: templates/loop/add-to-cart.php:50 -#@ woocommerce -msgid "Read More" -msgstr "" - -#: templates/loop/add-to-cart.php:33 -#@ woocommerce -msgid "Select options" -msgstr "" - -#: templates/loop/add-to-cart.php:37 -#@ woocommerce -msgid "View options" -msgstr "" - -#: templates/loop/no-products-found.php:14 -#: templates/loop-shop.php:40 -#@ woocommerce -msgid "No products found which match your selection." -msgstr "" - -#: templates/loop/orderby.php:21 -#@ woocommerce -msgid "Default sorting" -msgstr "" - -#: templates/loop/orderby.php:22 -#@ woocommerce -msgid "Sort by popularity" -msgstr "" - -#: templates/loop/orderby.php:23 -#@ woocommerce -msgid "Sort by average rating" -msgstr "" - -#: templates/loop/orderby.php:24 -#@ woocommerce -msgid "Sort by newness" -msgstr "" - -#: templates/loop/orderby.php:25 -#@ woocommerce -msgid "Sort by price: low to high" -msgstr "" - -#: templates/loop/orderby.php:26 -#@ woocommerce -msgid "Sort by price: high to low" -msgstr "" - -#: templates/loop/result-count.php:28 -#@ woocommerce -msgid "Showing the single result" -msgstr "" - -#: templates/loop/result-count.php:30 -#, php-format -#@ woocommerce -msgid "Showing all %d results" -msgstr "" - -#: templates/loop/result-count.php:32 -#, php-format -#@ woocommerce -msgctxt "%1$d = first, %2$d = last, %3$d = total" -msgid "Showing %1$d–%2$d of %3$d results" -msgstr "" - -#: templates/loop/sale-flash.php:16 -#: templates/single-product/sale-flash.php:16 -#@ woocommerce -msgid "Sale!" -msgstr "" - -#: templates/myaccount/form-change-password.php:20 -#: templates/myaccount/form-lost-password.php:31 -#@ woocommerce -msgid "New password" -msgstr "" - -#: templates/myaccount/form-change-password.php:24 -#: templates/myaccount/form-lost-password.php:35 -#@ woocommerce -msgid "Re-enter new password" -msgstr "" - -#: templates/myaccount/form-change-password.php:29 -#: templates/myaccount/form-lost-password.php:45 -#@ woocommerce -msgid "Save" -msgstr "" - -#: templates/myaccount/form-edit-address.php:43 -#@ woocommerce -msgid "Save Address" -msgstr "" - -#: templates/myaccount/form-login.php:26 -#: templates/myaccount/form-login.php:40 -#: templates/shop/form-login.php:31 -#@ woocommerce -msgid "Login" -msgstr "" - -#: templates/myaccount/form-login.php:29 -#: templates/myaccount/form-lost-password.php:24 -#: templates/shop/form-login.php:20 -#@ woocommerce -msgid "Username or email" -msgstr "" - -#: templates/myaccount/form-login.php:33 -#: templates/myaccount/form-login.php:85 -#: templates/shop/form-login.php:24 -#@ woocommerce -msgid "Password" -msgstr "" - -#: templates/myaccount/form-login.php:50 -#: templates/shop/form-login.php:33 -#@ woocommerce -msgid "Lost Password?" -msgstr "" - -#: templates/myaccount/form-login.php:60 -#: templates/myaccount/form-login.php:101 -#@ woocommerce -msgid "Register" -msgstr "" - -#: templates/myaccount/form-login.php:66 -#@ woocommerce -msgid "Username" -msgstr "" - -#: templates/myaccount/form-login.php:89 -#@ woocommerce -msgid "Re-enter password" -msgstr "" - -#: templates/myaccount/form-lost-password.php:22 -#@ woocommerce -msgid "Lost your password? Please enter your username or email address. You will receive a link to create a new password via email." -msgstr "" - -#: templates/myaccount/form-lost-password.php:28 -#@ woocommerce -msgid "Enter a new password below." -msgstr "" - -#: templates/myaccount/form-lost-password.php:45 -#@ woocommerce -msgid "Reset Password" -msgstr "" - -#: templates/myaccount/my-account.php:19 -#, php-format -#@ woocommerce -msgid "Hello, %s. From your account dashboard you can view your recent orders, manage your shipping and billing addresses and change your password." -msgstr "" - -#: templates/myaccount/my-address.php:17 -#@ woocommerce -msgid "My Addresses" -msgstr "" - -#: templates/myaccount/my-address.php:23 -#@ woocommerce -msgid "My Address" -msgstr "" - -#: templates/myaccount/my-address.php:35 -#@ woocommerce -msgid "The following addresses will be used on the checkout page by default." -msgstr "" - -#: templates/myaccount/my-address.php:64 -#@ woocommerce -msgid "You have not set up this type of address yet." -msgstr "" - -#: templates/myaccount/my-downloads.php:18 -#@ woocommerce -msgid "Available downloads" -msgstr "" - -#: templates/myaccount/my-downloads.php:27 -#, php-format -#@ woocommerce -msgid "%s download remaining" -msgid_plural "%s downloads remaining" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: templates/myaccount/my-orders.php:26 -#@ woocommerce -msgid "Recent Orders" -msgstr "" - -#: templates/myaccount/my-orders.php:62 -#, php-format -#@ woocommerce -msgid "%s for %s item" -msgid_plural "%s for %s items" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: templates/order/form-tracking.php:17 -#@ woocommerce -msgid "To track your order please enter your Order ID in the box below and press return. This was given to you on your receipt and in the confirmation email you should have received." -msgstr "" - -#: templates/order/form-tracking.php:19 -#@ woocommerce -msgid "Order ID" -msgstr "" - -#: templates/order/form-tracking.php:19 -#@ woocommerce -msgid "Found in your order confirmation email." -msgstr "" - -#: templates/order/form-tracking.php:20 -#@ woocommerce -msgid "Billing Email" -msgstr "" - -#: templates/order/form-tracking.php:20 -#@ woocommerce -msgid "Email you used during checkout." -msgstr "" - -#: templates/order/form-tracking.php:23 -#@ woocommerce -msgid "Track" -msgstr "" - -#: templates/order/order-details.php:64 -#, php-format -#@ woocommerce -msgid "Download file%s" -msgstr "" - -#: templates/order/order-details.php:90 -#@ woocommerce -msgid "Order Again" -msgstr "" - -#: templates/order/order-details.php:102 -#@ woocommerce -msgid "Telephone:" -msgstr "Telefono numeris:" - -#: templates/order/tracking.php:18 -#, php-format -#@ woocommerce -msgid "Order %s which was made %s has the status “%s”" -msgstr "" - -#: templates/order/tracking.php:18 -#@ woocommerce -msgid "ago" -msgstr "" - -#: templates/order/tracking.php:20 -#@ woocommerce -msgid "and was completed" -msgstr "" - -#: templates/order/tracking.php:20 -#@ woocommerce -msgid " ago" -msgstr "" - -#: templates/shop/breadcrumb.php:63 -#@ woocommerce -msgid "Products tagged “" -msgstr "" - -#: templates/shop/breadcrumb.php:91 -#: templates/shop/breadcrumb.php:189 -#@ woocommerce -msgid "Search results for “" -msgstr "" - -#: templates/shop/breadcrumb.php:147 -#@ woocommerce -msgid "Error 404" -msgstr "" - -#: templates/shop/breadcrumb.php:193 -#@ woocommerce -msgid "Posts tagged “" -msgstr "" - -#: templates/shop/breadcrumb.php:198 -#@ woocommerce -msgid "Author:" -msgstr "" - -#: templates/shop/breadcrumb.php:203 -#@ woocommerce -msgid "Page" -msgstr "" - -#: templates/single-product/add-to-cart/variable.php:24 -#@ woocommerce -msgid "Choose an option" -msgstr "" - -#: templates/single-product/add-to-cart/variable.php:69 -#@ woocommerce -msgid "Clear selection" -msgstr "" - -#: templates/single-product/meta.php:24 -#@ woocommerce -msgid "Category:" -msgid_plural "Categories:" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: templates/single-product/meta.php:29 -#@ woocommerce -msgid "Tag:" -msgid_plural "Tags:" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: templates/single-product/related.php:36 -#@ woocommerce -msgid "Related Products" -msgstr "" - -#: templates/single-product/review.php:26 -#, php-format -#@ woocommerce -msgid "Rated %d out of 5" -msgstr "" - -#: templates/single-product/review.php:33 -#@ woocommerce -msgid "Your comment is awaiting approval" -msgstr "" - -#: templates/single-product/review.php:40 -#@ woocommerce -msgid "verified owner" -msgstr "" - -#: templates/single-product/tabs/description.php:14 -#@ woocommerce -msgid "Product Description" -msgstr "" - -#: templates/single-product/up-sells.php:39 -#@ woocommerce -msgid "You may also like…" -msgstr "" - -#: templates/single-product-reviews.php:30 -#, php-format -#@ woocommerce -msgid "%s review for %s" -msgid_plural "%s reviews for %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: templates/single-product-reviews.php:58 -#@ woocommerce -msgid " Previous" -msgstr "" - -#: templates/single-product-reviews.php:59 -#@ woocommerce -msgid "Next " -msgstr "" - -#: templates/single-product-reviews.php:63 -#@ woocommerce -msgid "Add Your Review" -msgstr "" - -#: templates/single-product-reviews.php:63 -#@ woocommerce -msgid "Add Review" -msgstr "" - -#: templates/single-product-reviews.php:65 -#@ woocommerce -msgid "Add a review" -msgstr "" - -#: templates/single-product-reviews.php:69 -#@ woocommerce -msgid "Be the first to review" -msgstr "" - -#: templates/single-product-reviews.php:71 -#@ woocommerce -msgid "There are no reviews yet, would you like to submit yours?" -msgstr "" - -#: templates/single-product-reviews.php:89 -#@ woocommerce -msgid "Submit Review" -msgstr "" - -#: templates/single-product-reviews.php:96 -#@ woocommerce -msgid "Rating" -msgstr "" - -#: templates/single-product-reviews.php:97 -#@ woocommerce -msgid "Rate…" -msgstr "" - -#: templates/single-product-reviews.php:98 -#@ woocommerce -msgid "Perfect" -msgstr "" - -#: templates/single-product-reviews.php:99 -#@ woocommerce -msgid "Good" -msgstr "" - -#: templates/single-product-reviews.php:100 -#@ woocommerce -msgid "Average" -msgstr "" - -#: templates/single-product-reviews.php:101 -#@ woocommerce -msgid "Not that bad" -msgstr "" - -#: templates/single-product-reviews.php:102 -#@ woocommerce -msgid "Very Poor" -msgstr "" - -#: templates/single-product-reviews.php:107 -#@ woocommerce -msgid "Your Review" -msgstr "" - -#: woocommerce-ajax.php:119 -#@ woocommerce -msgid "Sorry, your session has expired." -msgstr "" - -#: woocommerce-ajax.php:119 -#@ woocommerce -msgid "Return to homepage →" -msgstr "" - -#: woocommerce-ajax.php:256 -#: woocommerce-ajax.php:290 -#: woocommerce-ajax.php:313 -#@ woocommerce -msgid "You do not have sufficient permissions to access this page." -msgstr "" - -#: woocommerce-ajax.php:258 -#: woocommerce-ajax.php:291 -#: woocommerce-ajax.php:314 -#@ woocommerce -msgid "You have taken too long. Please go back and retry." -msgstr "" - -#: woocommerce-ajax.php:1102 -#@ woocommerce -msgid "No products had their stock reduced - they may not have stock management enabled." -msgstr "" - -#: woocommerce-ajax.php:1146 -#: woocommerce-ajax.php:1147 -#, php-format -#@ woocommerce -msgid "Item #%s stock increased from %s to %s." -msgstr "" - -#: woocommerce-ajax.php:1154 -#@ woocommerce -msgid "No products had their stock increased - they may not have stock management enabled." -msgstr "" - -#: woocommerce-ajax.php:1175 -#@ woocommerce -msgid "Value" -msgstr "" - -#: woocommerce-core-functions.php:275 -#, php-format -#@ woocommerce -msgid "%s – %s%s" -msgstr "" - -#: woocommerce-core-functions.php:698 -#@ woocommerce -msgid "Australian Dollars" -msgstr "" - -#: woocommerce-core-functions.php:699 -#@ woocommerce -msgid "Brazilian Real" -msgstr "" - -#: woocommerce-core-functions.php:700 -#@ woocommerce -msgid "Canadian Dollars" -msgstr "" - -#: woocommerce-core-functions.php:701 -#@ woocommerce -msgid "Chinese Yuan" -msgstr "" - -#: woocommerce-core-functions.php:702 -#@ woocommerce -msgid "Czech Koruna" -msgstr "" - -#: woocommerce-core-functions.php:703 -#@ woocommerce -msgid "Danish Krone" -msgstr "" - -#: woocommerce-core-functions.php:704 -#@ woocommerce -msgid "Euros" -msgstr "" - -#: woocommerce-core-functions.php:705 -#@ woocommerce -msgid "Hong Kong Dollar" -msgstr "" - -#: woocommerce-core-functions.php:706 -#@ woocommerce -msgid "Hungarian Forint" -msgstr "" - -#: woocommerce-core-functions.php:707 -#@ woocommerce -msgid "Indonesia Rupiah" -msgstr "" - -#: woocommerce-core-functions.php:708 -#@ woocommerce -msgid "Indian Rupee" -msgstr "" - -#: woocommerce-core-functions.php:709 -#@ woocommerce -msgid "Israeli Shekel" -msgstr "" - -#: woocommerce-core-functions.php:710 -#@ woocommerce -msgid "Japanese Yen" -msgstr "" - -#: woocommerce-core-functions.php:711 -#@ woocommerce -msgid "South Korean Won" -msgstr "" - -#: woocommerce-core-functions.php:712 -#@ woocommerce -msgid "Malaysian Ringgits" -msgstr "" - -#: woocommerce-core-functions.php:713 -#@ woocommerce -msgid "Mexican Peso" -msgstr "" - -#: woocommerce-core-functions.php:714 -#@ woocommerce -msgid "Norwegian Krone" -msgstr "" - -#: woocommerce-core-functions.php:715 -#@ woocommerce -msgid "New Zealand Dollar" -msgstr "" - -#: woocommerce-core-functions.php:716 -#@ woocommerce -msgid "Philippine Pesos" -msgstr "" - -#: woocommerce-core-functions.php:717 -#@ woocommerce -msgid "Polish Zloty" -msgstr "" - -#: woocommerce-core-functions.php:718 -#@ woocommerce -msgid "Pounds Sterling" -msgstr "" - -#: woocommerce-core-functions.php:719 -#@ woocommerce -msgid "Romanian Leu" -msgstr "" - -#: woocommerce-core-functions.php:720 -#@ woocommerce -msgid "Russian Ruble" -msgstr "" - -#: woocommerce-core-functions.php:721 -#@ woocommerce -msgid "Singapore Dollar" -msgstr "" - -#: woocommerce-core-functions.php:722 -#@ woocommerce -msgid "South African rand" -msgstr "" - -#: woocommerce-core-functions.php:723 -#@ woocommerce -msgid "Swedish Krona" -msgstr "" - -#: woocommerce-core-functions.php:724 -#@ woocommerce -msgid "Swiss Franc" -msgstr "" - -#: woocommerce-core-functions.php:725 -#@ woocommerce -msgid "Taiwan New Dollars" -msgstr "" - -#: woocommerce-core-functions.php:726 -#@ woocommerce -msgid "Thai Baht" -msgstr "" - -#: woocommerce-core-functions.php:727 -#@ woocommerce -msgid "Turkish Lira" -msgstr "" - -#: woocommerce-core-functions.php:728 -#@ woocommerce -msgid "US Dollars" -msgstr "" - -#: woocommerce-core-functions.php:1219 -#: woocommerce-core-functions.php:1245 -#@ woocommerce -msgid "Download Permissions Granted" -msgstr "" - -#: woocommerce-core-functions.php:1369 -#@ woocommerce -msgctxt "slug" -msgid "uncategorized" -msgstr "" - -#: woocommerce-core-functions.php:1562 -#@ woocommerce -msgid "Select a category" -msgstr "" - -#: woocommerce-core-functions.php:1566 -#@ woocommerce -msgid "Uncategorized" -msgstr "" - -#: woocommerce-core-functions.php:1938 -#@ woocommerce -msgid "Customer" -msgstr "" - -#: woocommerce-core-functions.php:1945 -#@ woocommerce -msgid "Shop Manager" -msgstr "" - -#: woocommerce-core-functions.php:2502 -#@ woocommerce -msgid "Unpaid order cancelled - time limit reached." -msgstr "" - -#: woocommerce-functions.php:226 -#: woocommerce-functions.php:273 -#@ woocommerce -msgid "Cart updated." -msgstr "" - -#: woocommerce-functions.php:257 -#, php-format -#@ woocommerce -msgid "You can only have 1 %s in your cart." -msgstr "" - -#: woocommerce-functions.php:317 -#: woocommerce-functions.php:375 -#@ woocommerce -msgid "Please choose product options…" -msgstr "" - -#: woocommerce-functions.php:408 -#@ woocommerce -msgid "Please choose the quantity of items you wish to add to your cart…" -msgstr "" - -#: woocommerce-functions.php:415 -#@ woocommerce -msgid "Please choose a product to add to your cart…" -msgstr "" - -#: woocommerce-functions.php:484 -#, php-format -#@ woocommerce -msgid "Added "%s" to your cart." -msgstr "" - -#: woocommerce-functions.php:484 -#@ woocommerce -msgid "" and "" -msgstr "" - -#: woocommerce-functions.php:487 -#, php-format -#@ woocommerce -msgid ""%s" was successfully added to your cart." -msgstr ""%s" buvo sėkmingai įdėtas į Jūsų krepšelį." - -#: woocommerce-functions.php:495 -#@ woocommerce -msgid "Continue Shopping →" -msgstr "" - -#: woocommerce-functions.php:666 -#: woocommerce-functions.php:668 -#: woocommerce-functions.php:676 -#@ woocommerce -msgid "Error" -msgstr "" - -#: woocommerce-functions.php:666 -#@ woocommerce -msgid "Username is required." -msgstr "" - -#: woocommerce-functions.php:668 -#: woocommerce-functions.php:760 -#@ woocommerce -msgid "Password is required." -msgstr "" - -#: woocommerce-functions.php:676 -#@ woocommerce -msgid "A user could not be found with this email address." -msgstr "" - -#: woocommerce-functions.php:734 -#@ woocommerce -msgid "Please enter a username." -msgstr "" - -#: woocommerce-functions.php:736 -#@ woocommerce -msgid "This username is invalid because it uses illegal characters. Please enter a valid username." -msgstr "" - -#: woocommerce-functions.php:739 -#@ woocommerce -msgid "This username is already registered, please choose another one." -msgstr "" - -#: woocommerce-functions.php:751 -#@ woocommerce -msgid "Please type your e-mail address." -msgstr "" - -#: woocommerce-functions.php:753 -#@ woocommerce -msgid "The email address isn’t correct." -msgstr "" - -#: woocommerce-functions.php:756 -#@ woocommerce -msgid "This email is already registered, please choose another one." -msgstr "" - -#: woocommerce-functions.php:761 -#@ woocommerce -msgid "Re-enter your password." -msgstr "" - -#: woocommerce-functions.php:766 -#@ woocommerce -msgid "Anti-spam field was filled in." -msgstr "" - -#: woocommerce-functions.php:874 -#@ woocommerce -msgid "The cart has been filled with the items from your previous order." -msgstr "" - -#: woocommerce-functions.php:900 -#@ woocommerce -msgid "Order cancelled by customer." -msgstr "" - -#: woocommerce-functions.php:903 -#@ woocommerce -msgid "Your order was cancelled." -msgstr "" - -#: woocommerce-functions.php:909 -#@ woocommerce -msgid "Your order is no longer pending and could not be cancelled. Please contact us if you need assistance." -msgstr "" - -#: woocommerce-functions.php:944 -#@ woocommerce -msgid "Invalid email address." -msgstr "" - -#: woocommerce-functions.php:944 -#: woocommerce-functions.php:967 -#: woocommerce-functions.php:987 -#: woocommerce-functions.php:993 -#: woocommerce-functions.php:997 -#: woocommerce-functions.php:1000 -#: woocommerce-functions.php:1030 -#: woocommerce-functions.php:1166 -#@ woocommerce -msgid "Go to homepage →" -msgstr "" - -#: woocommerce-functions.php:967 -#@ woocommerce -msgid "Invalid download." -msgstr "" - -#: woocommerce-functions.php:979 -#@ woocommerce -msgid "You must be logged in to download files." -msgstr "" - -#: woocommerce-functions.php:979 -#@ woocommerce -msgid "Login →" -msgstr "" - -#: woocommerce-functions.php:982 -#@ woocommerce -msgid "This is not your download link." -msgstr "" - -#: woocommerce-functions.php:987 -#@ woocommerce -msgid "Product no longer exists." -msgstr "" - -#: woocommerce-functions.php:997 -#@ woocommerce -msgid "Sorry, you have reached your download limit for this file" -msgstr "" - -#: woocommerce-functions.php:1000 -#@ woocommerce -msgid "Sorry, this download has expired" -msgstr "" - -#: woocommerce-functions.php:1030 -#@ woocommerce -msgid "No file defined" -msgstr "" - -#: woocommerce-functions.php:1166 -#@ woocommerce -msgid "File not found" -msgstr "" - -#: woocommerce-functions.php:1282 -#@ woocommerce -msgid "New products" -msgstr "" - -#: woocommerce-functions.php:1290 -#, php-format -#@ woocommerce -msgid "New products added to %s" -msgstr "" - -#: woocommerce-functions.php:1298 -#, php-format -#@ woocommerce -msgid "New products tagged %s" -msgstr "" - -#: woocommerce-functions.php:1336 -#@ woocommerce -msgid "You have taken too long. Please go back and refresh the page." -msgstr "" - -#: woocommerce-functions.php:1339 -#@ woocommerce -msgid "Please rate the product." -msgstr "" - -#: woocommerce-functions.php:1647 -#@ woocommerce -msgid "Password changed successfully." -msgstr "" - -#: woocommerce-functions.php:1723 -#@ woocommerce -msgid "Address changed successfully." -msgstr "" - -#: woocommerce-template.php:219 -#, php-format -#@ woocommerce -msgid "Search Results: “%s”" -msgstr "" - -#: woocommerce-template.php:222 -#, php-format -#@ woocommerce -msgid " – Page %s" -msgstr "" - -#: woocommerce-template.php:767 -#, php-format -#@ woocommerce -msgid "Reviews (%d)" -msgstr "" - -#: woocommerce-template.php:993 -#@ woocommerce -msgctxt "breadcrumb" -msgid "Home" -msgstr "" - -#: woocommerce-template.php:1292 -#: woocommerce.php:1209 -#@ woocommerce -msgid "required" -msgstr "" - -#: woocommerce-template.php:1343 -#@ woocommerce -msgid "Update country" -msgstr "" - -#: woocommerce-template.php:1498 -#@ woocommerce -msgid "Search for:" -msgstr "" - -#: woocommerce-template.php:1499 -#@ woocommerce -msgid "Search for products" -msgstr "" - -#. translators: plugin header field 'PluginURI' -#: woocommerce.php:0 -#@ woocommerce -msgid "http://www.woothemes.com/woocommerce/" -msgstr "" - -#. translators: plugin header field 'Description' -#: woocommerce.php:0 -#@ woocommerce -msgid "An e-commerce toolkit that helps you sell anything. Beautifully." -msgstr "" - -#. translators: plugin header field 'Author' -#: woocommerce.php:0 -#@ woocommerce -msgid "WooThemes" -msgstr "" - -#. translators: plugin header field 'AuthorURI' -#: woocommerce.php:0 -#@ woocommerce -msgid "http://woothemes.com" -msgstr "" - -#. translators: plugin header field 'Version' -#: woocommerce.php:0 -#@ woocommerce -msgid "2.0.14" -msgstr "" - -#: woocommerce.php:172 -#@ woocommerce -msgid "Premium Support" -msgstr "" - -#: woocommerce.php:825 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Categories" -msgstr "" - -#: woocommerce.php:826 -#@ woocommerce -msgid "Search Product Categories" -msgstr "" - -#: woocommerce.php:827 -#@ woocommerce -msgid "All Product Categories" -msgstr "" - -#: woocommerce.php:828 -#@ woocommerce -msgid "Parent Product Category" -msgstr "" - -#: woocommerce.php:829 -#@ woocommerce -msgid "Parent Product Category:" -msgstr "" - -#: woocommerce.php:830 -#@ woocommerce -msgid "Edit Product Category" -msgstr "" - -#: woocommerce.php:831 -#@ woocommerce -msgid "Update Product Category" -msgstr "" - -#: woocommerce.php:832 -#@ woocommerce -msgid "Add New Product Category" -msgstr "" - -#: woocommerce.php:833 -#@ woocommerce -msgid "New Product Category Name" -msgstr "" - -#: woocommerce.php:861 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Tags" -msgstr "" - -#: woocommerce.php:862 -#@ woocommerce -msgid "Search Product Tags" -msgstr "" - -#: woocommerce.php:863 -#@ woocommerce -msgid "All Product Tags" -msgstr "" - -#: woocommerce.php:864 -#@ woocommerce -msgid "Parent Product Tag" -msgstr "" - -#: woocommerce.php:865 -#@ woocommerce -msgid "Parent Product Tag:" -msgstr "" - -#: woocommerce.php:866 -#@ woocommerce -msgid "Edit Product Tag" -msgstr "" - -#: woocommerce.php:867 -#@ woocommerce -msgid "Update Product Tag" -msgstr "" - -#: woocommerce.php:868 -#@ woocommerce -msgid "Add New Product Tag" -msgstr "" - -#: woocommerce.php:869 -#@ woocommerce -msgid "New Product Tag Name" -msgstr "" - -#: woocommerce.php:888 -#: woocommerce.php:890 -#@ woocommerce -msgid "Shipping Classes" -msgstr "" - -#: woocommerce.php:892 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Shipping Classes" -msgstr "" - -#: woocommerce.php:893 -#@ woocommerce -msgid "Search Shipping Classes" -msgstr "" - -#: woocommerce.php:894 -#@ woocommerce -msgid "All Shipping Classes" -msgstr "" - -#: woocommerce.php:895 -#@ woocommerce -msgid "Parent Shipping Class" -msgstr "" - -#: woocommerce.php:896 -#@ woocommerce -msgid "Parent Shipping Class:" -msgstr "" - -#: woocommerce.php:897 -#@ woocommerce -msgid "Edit Shipping Class" -msgstr "" - -#: woocommerce.php:898 -#@ woocommerce -msgid "Update Shipping Class" -msgstr "" - -#: woocommerce.php:899 -#@ woocommerce -msgid "Add New Shipping Class" -msgstr "" - -#: woocommerce.php:900 -#@ woocommerce -msgid "New Shipping Class Name" -msgstr "" - -#: woocommerce.php:948 -#@ woocommerce -msgid "All" -msgstr "" - -#: woocommerce.php:949 -#: woocommerce.php:950 -#@ woocommerce -msgid "Parent" -msgstr "" - -#: woocommerce.php:953 -#@ woocommerce -msgid "Add New" -msgstr "" - -#: woocommerce.php:954 -#@ woocommerce -msgid "New" -msgstr "" - -#: woocommerce.php:984 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Products" -msgstr "" - -#: woocommerce.php:985 -#@ woocommerce -msgid "Add Product" -msgstr "" - -#: woocommerce.php:986 -#@ woocommerce -msgid "Add New Product" -msgstr "" - -#: woocommerce.php:988 -#@ woocommerce -msgid "Edit Product" -msgstr "" - -#: woocommerce.php:989 -#@ woocommerce -msgid "New Product" -msgstr "" - -#: woocommerce.php:990 -#: woocommerce.php:991 -#@ woocommerce -msgid "View Product" -msgstr "" - -#: woocommerce.php:992 -#@ woocommerce -msgid "Search Products" -msgstr "" - -#: woocommerce.php:993 -#@ woocommerce -msgid "No Products found" -msgstr "" - -#: woocommerce.php:994 -#@ woocommerce -msgid "No Products found in trash" -msgstr "" - -#: woocommerce.php:995 -#@ woocommerce -msgid "Parent Product" -msgstr "" - -#: woocommerce.php:997 -#@ woocommerce -msgid "This is where you can add new products to your store." -msgstr "" - -#: woocommerce.php:1021 -#@ woocommerce -msgid "Variation" -msgstr "" - -#: woocommerce.php:1023 -#@ woocommerce -msgid "Add New Variation" -msgstr "" - -#: woocommerce.php:1025 -#@ woocommerce -msgid "Edit Variation" -msgstr "" - -#: woocommerce.php:1026 -#@ woocommerce -msgid "New Variation" -msgstr "" - -#: woocommerce.php:1027 -#: woocommerce.php:1028 -#@ woocommerce -msgid "View Variation" -msgstr "" - -#: woocommerce.php:1029 -#@ woocommerce -msgid "Search Variations" -msgstr "" - -#: woocommerce.php:1030 -#@ woocommerce -msgid "No Variations found" -msgstr "" - -#: woocommerce.php:1031 -#@ woocommerce -msgid "No Variations found in trash" -msgstr "" - -#: woocommerce.php:1032 -#@ woocommerce -msgid "Parent Variation" -msgstr "" - -#: woocommerce.php:1060 -#@ woocommerce -msgid "Add Order" -msgstr "" - -#: woocommerce.php:1061 -#@ woocommerce -msgid "Add New Order" -msgstr "" - -#: woocommerce.php:1063 -#@ woocommerce -msgid "Edit Order" -msgstr "" - -#: woocommerce.php:1064 -#@ woocommerce -msgid "New Order" -msgstr "" - -#: woocommerce.php:1067 -#@ woocommerce -msgid "Search Orders" -msgstr "" - -#: woocommerce.php:1068 -#@ woocommerce -msgid "No Orders found" -msgstr "" - -#: woocommerce.php:1069 -#@ woocommerce -msgid "No Orders found in trash" -msgstr "" - -#: woocommerce.php:1070 -#@ woocommerce -msgid "Parent Orders" -msgstr "" - -#: woocommerce.php:1073 -#@ woocommerce -msgid "This is where store orders are stored." -msgstr "" - -#: woocommerce.php:1097 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Coupons" -msgstr "" - -#: woocommerce.php:1098 -#@ woocommerce -msgid "Add Coupon" -msgstr "" - -#: woocommerce.php:1099 -#@ woocommerce -msgid "Add New Coupon" -msgstr "" - -#: woocommerce.php:1101 -#@ woocommerce -msgid "Edit Coupon" -msgstr "" - -#: woocommerce.php:1102 -#@ woocommerce -msgid "New Coupon" -msgstr "" - -#: woocommerce.php:1103 -#@ woocommerce -msgid "View Coupons" -msgstr "" - -#: woocommerce.php:1104 -#@ woocommerce -msgid "View Coupon" -msgstr "" - -#: woocommerce.php:1105 -#@ woocommerce -msgid "Search Coupons" -msgstr "" - -#: woocommerce.php:1106 -#@ woocommerce -msgid "No Coupons found" -msgstr "" - -#: woocommerce.php:1107 -#@ woocommerce -msgid "No Coupons found in trash" -msgstr "" - -#: woocommerce.php:1108 -#@ woocommerce -msgid "Parent Coupon" -msgstr "" - -#: woocommerce.php:1110 -#@ woocommerce -msgid "This is where you can add new coupons that customers can use in your store." -msgstr "" - -#: woocommerce.php:1206 -#@ woocommerce -msgid "Select an option…" -msgstr "" - -#: woocommerce.php:1207 -#@ woocommerce -msgid "Please select a rating" -msgstr "" - -#: woocommerce.php:1208 -#@ woocommerce -msgid "Sorry, no products matched your selection. Please choose a different combination." -msgstr "" - -#: woocommerce.php:1695 -#@ woocommerce -msgid "Cart % Discount" -msgstr "" - -#: woocommerce.php:1696 -#@ woocommerce -msgid "Product Discount" -msgstr "" - -#: woocommerce.php:1697 -#@ woocommerce -msgid "Product % Discount" -msgstr "" - diff --git a/i18n/languages/woocommerce-nb_NO.mo b/i18n/languages/woocommerce-nb_NO.mo deleted file mode 100644 index e529713fa53..00000000000 Binary files a/i18n/languages/woocommerce-nb_NO.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-nb_NO.po b/i18n/languages/woocommerce-nb_NO.po deleted file mode 100644 index 892afcb2e5f..00000000000 --- a/i18n/languages/woocommerce-nb_NO.po +++ /dev/null @@ -1,15390 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce v2.1-beta-1\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-01-09 09:36:51+00:00\n" -"PO-Revision-Date: 2013-11-27 20:21:56+0000\n" -"Last-Translator: Tore Hjartland \n" -"Language-Team: DreamRooms \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Poedit 1.5.5\n" -"X-Poedit-Language: \n" -"X-Poedit-Country: \n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n" -"X-Poedit-Basepath: ../../\n" -"X-Poedit-Bookmarks: -1,-1,-1,-1,-1,-1,-1,1251,-1,-1\n" -"X-Poedit-SearchPath-0: .\n" -"X-Textdomain-Support: yes" - -#: assets/js/admin/editor_plugin_lang.php:5 -#@ woocommerce -msgid "Insert Shortcode" -msgstr "Sett inn hurtigkode" - -#: assets/js/admin/editor_plugin_lang.php:6 -#@ woocommerce -msgid "Product price/cart button" -msgstr "Produktpris/handlekurvknapp" - -#: assets/js/admin/editor_plugin_lang.php:7 -#@ woocommerce -msgid "Product by SKU/ID" -msgstr "Produkt etter VE-ID" - -#: assets/js/admin/editor_plugin_lang.php:8 -#@ woocommerce -msgid "Products by SKU/ID" -msgstr "Produkter etter VE-ID" - -#: assets/js/admin/editor_plugin_lang.php:9 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:137 -#@ woocommerce -msgid "Product categories" -msgstr "Produktkategorier" - -#: assets/js/admin/editor_plugin_lang.php:10 -#@ woocommerce -msgid "Products by category slug" -msgstr "Produkt etter kategorislug" - -#: assets/js/admin/editor_plugin_lang.php:11 -#@ woocommerce -msgid "Recent products" -msgstr "Nylige produkter" - -#: assets/js/admin/editor_plugin_lang.php:12 -#@ woocommerce -msgid "Featured products" -msgstr "Fremhevede produkter" - -#: assets/js/admin/editor_plugin_lang.php:13 -#@ woocommerce -msgid "Shop Messages" -msgstr "Butikkmeldinger" - -#: includes/admin/views/html-admin-page-status-report.php:293 -#: includes/class-wc-install.php:215 -#: includes/widgets/class-wc-widget-cart.php:29 -#: includes/widgets/class-wc-widget-cart.php:56 -#@ woocommerce -msgid "Cart" -msgstr "Handlekurv" - -#: includes/admin/settings/class-wc-settings-checkout.php:25 -#: includes/admin/settings/class-wc-settings-checkout.php:78 -#: includes/admin/views/html-admin-page-status-report.php:297 -#: includes/class-wc-install.php:220 -#: templates/cart/mini-cart.php:65 -#@ woocommerce -msgid "Checkout" -msgstr "Til kassen" - -#: assets/js/admin/editor_plugin_lang.php:14 -#@ woocommerce -msgid "Order tracking" -msgstr "Ordresporing" - -#: assets/js/admin/editor_plugin_lang.php:15 -#: includes/admin/views/html-admin-page-status-report.php:301 -#: includes/class-wc-install.php:225 -#: includes/shortcodes/class-wc-shortcode-checkout.php:86 -#: includes/shortcodes/class-wc-shortcode-view-order.php:49 -#: templates/checkout/thankyou.php:30 -#@ woocommerce -msgid "My Account" -msgstr "Min konto" - -#: includes/admin/settings/class-wc-settings-accounts.php:77 -#@ woocommerce -msgid "Edit Address" -msgstr "Rediger adresse" - -#: includes/admin/settings/class-wc-settings-accounts.php:59 -#: includes/class-wc-post-types.php:300 -#: includes/class-wc-post-types.php:301 -#@ woocommerce -msgid "View Order" -msgstr "Vis ordre" - -#: includes/admin/settings/class-wc-settings-checkout.php:150 -#: templates/checkout/thankyou.php:28 -#: templates/myaccount/my-orders.php:71 -#@ woocommerce -msgid "Pay" -msgstr "Betal" - -#: includes/abstracts/abstract-wc-email.php:554 -#: includes/emails/class-wc-email-customer-completed-order.php:136 -#: includes/emails/class-wc-email-new-order.php:116 -#: includes/gateways/bacs/class-wc-gateway-bacs.php:66 -#: includes/gateways/cheque/class-wc-gateway-cheque.php:52 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:129 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:120 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:75 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:64 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:49 -#@ woocommerce -msgid "Enable/Disable" -msgstr "Aktiver/Deaktiver" - -#: includes/abstracts/abstract-wc-email.php:556 -#: includes/emails/class-wc-email-customer-completed-order.php:138 -#: includes/emails/class-wc-email-new-order.php:118 -#@ woocommerce -msgid "Enable this email notification" -msgstr "Aktiver dette epostvarselet" - -#: includes/abstracts/abstract-wc-email.php:560 -#: includes/emails/class-wc-email-customer-invoice.php:142 -#@ woocommerce -msgid "Email subject" -msgstr "Epostemne" - -#: includes/abstracts/abstract-wc-email.php:562 -#: includes/abstracts/abstract-wc-email.php:569 -#: includes/emails/class-wc-email-customer-completed-order.php:144 -#: includes/emails/class-wc-email-customer-completed-order.php:151 -#: includes/emails/class-wc-email-customer-completed-order.php:158 -#: includes/emails/class-wc-email-customer-completed-order.php:165 -#: includes/emails/class-wc-email-customer-invoice.php:144 -#: includes/emails/class-wc-email-customer-invoice.php:151 -#: includes/emails/class-wc-email-customer-invoice.php:158 -#: includes/emails/class-wc-email-customer-invoice.php:165 -#, php-format -#@ woocommerce -msgid "Defaults to %s" -msgstr "Brukes som standard: %s" - -#: includes/abstracts/abstract-wc-email.php:567 -#: includes/emails/class-wc-email-customer-invoice.php:149 -#@ woocommerce -msgid "Email heading" -msgstr "Epostoverskrift" - -#: includes/abstracts/abstract-wc-email.php:574 -#: includes/emails/class-wc-email-customer-completed-order.php:170 -#: includes/emails/class-wc-email-customer-invoice.php:170 -#: includes/emails/class-wc-email-new-order.php:143 -#@ woocommerce -msgid "Email type" -msgstr "Eposttype" - -#: includes/abstracts/abstract-wc-email.php:576 -#: includes/emails/class-wc-email-customer-completed-order.php:172 -#: includes/emails/class-wc-email-customer-invoice.php:172 -#: includes/emails/class-wc-email-new-order.php:145 -#@ woocommerce -msgid "Choose which format of email to send." -msgstr "Velg hvilket epostformat å sende." - -#: includes/abstracts/abstract-wc-email.php:580 -#: includes/emails/class-wc-email-customer-completed-order.php:176 -#: includes/emails/class-wc-email-customer-invoice.php:176 -#: includes/emails/class-wc-email-new-order.php:149 -#@ woocommerce -msgid "Plain text" -msgstr "Ren tekst" - -#: includes/abstracts/abstract-wc-email.php:581 -#: includes/emails/class-wc-email-customer-completed-order.php:177 -#: includes/emails/class-wc-email-customer-invoice.php:177 -#: includes/emails/class-wc-email-new-order.php:150 -#@ woocommerce -msgid "HTML" -msgstr "HTML" - -#: includes/abstracts/abstract-wc-email.php:582 -#: includes/emails/class-wc-email-customer-completed-order.php:178 -#: includes/emails/class-wc-email-customer-invoice.php:178 -#: includes/emails/class-wc-email-new-order.php:151 -#@ woocommerce -msgid "Multipart" -msgstr "Flerdelt" - -#: includes/abstracts/abstract-wc-email.php:618 -#: includes/abstracts/abstract-wc-email.php:639 -#@ woocommerce -msgid "Could not write to template file." -msgstr "Kunne ikke skrive til malfilen." - -#: includes/abstracts/abstract-wc-email.php:670 -#@ woocommerce -msgid "Template file copied to theme." -msgstr "Malfil kopiert til tema." - -#: includes/abstracts/abstract-wc-email.php:679 -#@ woocommerce -msgid "Template file deleted from theme." -msgstr "Malfil slettet fra tema." - -#: includes/abstracts/abstract-wc-email.php:687 -#: includes/abstracts/abstract-wc-integration.php:30 -#: includes/abstracts/abstract-wc-settings-api.php:39 -#: includes/admin/class-wc-admin-menus.php:63 -#: includes/admin/class-wc-admin-welcome.php:209 -#: includes/admin/settings/class-wc-settings-checkout.php:277 -#: includes/admin/settings/class-wc-settings-shipping.php:241 -#: includes/admin/views/html-admin-page-status-report.php:269 -#: woocommerce.php:177 -#@ woocommerce -msgid "Settings" -msgstr "Innstillinger" - -#: includes/abstracts/abstract-wc-email.php:699 -#@ woocommerce -msgid "HTML template" -msgstr "HTML-mal" - -#: includes/abstracts/abstract-wc-email.php:700 -#@ woocommerce -msgid "Plain text template" -msgstr "Mal for ren tekst" - -#: includes/abstracts/abstract-wc-email.php:721 -#@ woocommerce -msgid "Delete template file" -msgstr "Slett malfil" - -#: includes/abstracts/abstract-wc-email.php:724 -#, php-format -#@ woocommerce -msgid "This template has been overridden by your theme and can be found in: %s." -msgstr "Denne malen har vært overstyrt av temaet ditt og kan finnes i: %s." - -#: includes/abstracts/abstract-wc-email.php:739 -#@ woocommerce -msgid "Copy file to theme" -msgstr "Kopier fil til tema" - -#: includes/abstracts/abstract-wc-email.php:742 -#, php-format -#@ woocommerce -msgid "To override and edit this email template copy %s to your theme folder: %s." -msgstr "For å overstyre og redigere denne epostmalen, kopier%s til temamappen: %s." - -#: includes/abstracts/abstract-wc-email.php:753 -#@ woocommerce -msgid "File was not found." -msgstr "Fil ikke funnet." - -#: includes/abstracts/abstract-wc-email.php:778 -#@ woocommerce -msgid "View template" -msgstr "Vis mal" - -#: includes/abstracts/abstract-wc-email.php:779 -#@ woocommerce -msgid "Hide template" -msgstr "Skjul mal" - -#: includes/abstracts/abstract-wc-email.php:790 -#@ woocommerce -msgid "Are you sure you want to delete this template file?" -msgstr "Er du sikker på at du vil slette denne malfilen?" - -#: includes/abstracts/abstract-wc-product.php:572 -#: includes/abstracts/abstract-wc-product.php:577 -#: includes/abstracts/abstract-wc-product.php:597 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:364 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:301 -#: includes/admin/reports/class-wc-report-stock.php:91 -#: includes/admin/views/html-bulk-edit-product.php:194 -#: includes/admin/views/html-quick-edit-product.php:137 -#@ woocommerce -msgid "In stock" -msgstr "På lager" - -#: includes/abstracts/abstract-wc-product.php:577 -#, php-format -#@ woocommerce -msgid "Only %s left in stock" -msgstr "Kun %s på lager" - -#: includes/abstracts/abstract-wc-product.php:580 -#, php-format -#@ woocommerce -msgid "%s in stock" -msgstr "%s på lager" - -#: includes/abstracts/abstract-wc-product.php:587 -#@ woocommerce -msgid "(backorders allowed)" -msgstr "(restordre tillatt)" - -#: includes/abstracts/abstract-wc-product.php:594 -#: includes/abstracts/abstract-wc-product.php:607 -#: templates/cart/cart.php:74 -#@ woocommerce -msgid "Available on backorder" -msgstr "Tilgjengelig som restordre" - -#: includes/abstracts/abstract-wc-product.php:600 -#: includes/abstracts/abstract-wc-product.php:610 -#: includes/abstracts/abstract-wc-product.php:614 -#: includes/admin/class-wc-admin-reports.php:101 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:366 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:302 -#: includes/admin/reports/class-wc-report-stock.php:93 -#: includes/admin/views/html-bulk-edit-product.php:195 -#: includes/admin/views/html-quick-edit-product.php:138 -#@ woocommerce -msgid "Out of stock" -msgstr "Tomt på lager" - -#: includes/abstracts/abstract-wc-product.php:907 -#: includes/abstracts/abstract-wc-product.php:913 -#: includes/class-wc-cart.php:1381 -#: includes/class-wc-order.php:800 -#: includes/class-wc-product-variable.php:270 -#: includes/class-wc-product-variable.php:276 -#: includes/class-wc-product-variation.php:312 -#@ woocommerce -msgid "Free!" -msgstr "Gratis!" - -#: includes/abstracts/abstract-wc-product.php:930 -#@ woocommerce -msgctxt "min_price" -msgid "From:" -msgstr "Fra:" - -#: includes/abstracts/abstract-wc-product.php:1039 -#: templates/single-product/rating.php:23 -#, php-format -#@ woocommerce -msgid "Rated %s out of 5" -msgstr "Rangert %s av 5" - -#: includes/abstracts/abstract-wc-product.php:1041 -#: includes/admin/class-wc-admin-dashboard.php:192 -#: templates/single-product/rating.php:25 -#: templates/single-product/review.php:27 -#@ woocommerce -msgid "out of 5" -msgstr "av 5" - -#: includes/class-wc-coupon.php:598 -#, php-format -#@ woocommerce -msgid "Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from your order." -msgstr "Beklager, det ser ut som om kupong \"%s\" er ikke gyldig - den har nå blitt fjernet fra ordren din." - -#: includes/class-wc-coupon.php:601 -#, php-format -#@ woocommerce -msgid "Sorry, it seems the coupon \"%s\" is not yours - it has now been removed from your order." -msgstr "Beklager. det ser ut som om kupong \"%s\" er ikke din - den har nå blitt fjernet fra ordren din." - -#: includes/class-wc-cart.php:392 -#: includes/class-wc-cart.php:411 -#: includes/class-wc-cart.php:420 -#, php-format -#@ woocommerce -msgid "Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in stock). Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Beklager, vi har dessverre ikke tilstrekkelig \"%s\" på lager i forhold til ditt ønske. (%s på lager). Vennligst rediger handlekurven din og prøv igjen. Vi beklager dette." - -#: includes/class-wc-cart.php:465 -#, php-format -#@ woocommerce -msgid "Sorry, \"%s\" is not in stock. Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Beklager, \"%s\" er ikke på lager. Vennligst rediger handlekurven og prøv igjen. Vi beklager eventuelle ulemper dette måtte medføre." - -#: includes/class-wc-cart.php:775 -#, php-format -#@ woocommerce -msgid "Sorry, "%s" cannot be purchased." -msgstr "Beklager, "%s" kan ikke kjøpes." - -#: includes/class-wc-cart.php:782 -#, php-format -#@ woocommerce -msgid "You cannot add "%s" to the cart because the product is out of stock." -msgstr "Du kan ikke legge til "%s" i handlekurven fordi produktet er utsolgt." - -#: includes/class-wc-cart.php:787 -#, php-format -#@ woocommerce -msgid "You cannot add that amount of "%s" to the cart because there is not enough stock (%s remaining)." -msgstr "Du kan ikke legge til det antallet av \"% s\" i handlekurven fordi det ikke er nok lager (%s gjenstår)." - -#: includes/wc-cart-functions.php:102 -#@ woocommerce -msgid "View Cart →" -msgstr "Vis handlekurven →" - -#: includes/class-wc-coupon.php:595 -#: includes/class-wc-coupon.php:645 -#@ woocommerce -msgid "Coupon does not exist!" -msgstr "Kupongen eksisterer ikke!" - -#: includes/class-wc-checkout.php:97 -#@ woocommerce -msgid "Account username" -msgstr "Kontoens brukernavn" - -#: includes/class-wc-checkout.php:99 -#@ woocommerce -msgctxt "placeholder" -msgid "Username" -msgstr "Brukernavn" - -#: includes/class-wc-checkout.php:106 -#@ woocommerce -msgid "Account password" -msgstr "Kontoens passord" - -#: includes/class-wc-checkout.php:108 -#@ woocommerce -msgctxt "placeholder" -msgid "Password" -msgstr "Passord" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:92 -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:100 -#: includes/class-wc-checkout.php:116 -#@ woocommerce -msgid "Order Notes" -msgstr "Ordrenotater" - -#: includes/class-wc-checkout.php:117 -#@ woocommerce -msgctxt "placeholder" -msgid "Notes about your order, e.g. special notes for delivery." -msgstr "Notater ang. ordren din. f.eks. spesielle notater ang. levering." - -#: includes/class-wc-checkout.php:176 -#, php-format -#@ woocommerce -msgid "Order – %s" -msgstr "Ordre – %s" - -#: includes/class-wc-checkout.php:176 -#, php-format -#@ woocommerce -msgctxt "Order date parsed by strftime" -msgid "%b %d, %Y @ %I:%M %p" -msgstr "%b %d, %Y @ %I:%M %p" - -#: includes/class-wc-checkout.php:284 -#@ woocommerce -msgid "Backordered" -msgstr "Restordret" - -#: includes/class-wc-checkout.php:483 -#: includes/class-wc-form-handler.php:82 -#@ woocommerce -msgid "is a required field." -msgstr "er et obligatorisk felt." - -#: includes/class-wc-checkout.php:525 -#@ woocommerce -msgid "is not valid. Please enter one of the following:" -msgstr "er ikke gyldig. Vennligst bruk en av de følgende:" - -#: includes/class-wc-checkout.php:510 -#: includes/class-wc-form-handler.php:107 -#@ woocommerce -msgid "is not a valid email address." -msgstr "er ikke en gyldig epostadresse." - -#: includes/wc-customer-functions.php:62 -#@ woocommerce -msgid "An account is already registered with that username. Please choose another." -msgstr "Beklager, en konto er allerede registrert med det brukernavnet. Vennligst velg et annet." - -#: includes/wc-customer-functions.php:82 -#@ woocommerce -msgid "Please enter an account password." -msgstr "Vennligst skriv inn et passord for kontoen." - -#: includes/class-wc-form-handler.php:178 -#: includes/class-wc-form-handler.php:754 -#@ woocommerce -msgid "Passwords do not match." -msgstr "Passordene er ikke like." - -#: includes/wc-customer-functions.php:49 -#@ woocommerce -msgid "An account is already registered with your email address. Please login." -msgstr "En konto er allerede registret med denne epostadressen. Vennligst logg inn på vanlig måte." - -#: includes/class-wc-checkout.php:570 -#@ woocommerce -msgid "You must accept our Terms & Conditions." -msgstr "Du må akseptere vilkårene våre." - -#: includes/class-wc-checkout.php:583 -#@ woocommerce -msgid "Invalid shipping method." -msgstr "Ugyldig fraktmetode." - -#: includes/class-wc-checkout.php:596 -#@ woocommerce -msgid "Invalid payment method." -msgstr "Ugyldig betalingsmetode" - -#: includes/class-wc-form-handler.php:794 -#: includes/wc-customer-functions.php:107 -#@ woocommerce -msgid "ERROR" -msgstr "FEIL" - -#: includes/wc-customer-functions.php:107 -#@ woocommerce -msgid "Couldn’t register you… please contact us if you continue to have problems." -msgstr "Kunne ikke registrere deg… vennligst kontakt oss hvis du fortsetter å ha dette problemet." - -#: includes/class-wc-countries.php:37 -#@ woocommerce -msgid "Afghanistan" -msgstr "Afghanistan" - -#: includes/class-wc-countries.php:38 -#@ woocommerce -msgid "Åland Islands" -msgstr "Ålandøyene" - -#: includes/class-wc-countries.php:39 -#@ woocommerce -msgid "Albania" -msgstr "Albania" - -#: includes/class-wc-countries.php:40 -#@ woocommerce -msgid "Algeria" -msgstr "Algeri" - -#: i18n/states/US.php:67 -#@ woocommerce -msgid "American Samoa" -msgstr "Amerikanske Samoa" - -#: includes/class-wc-countries.php:41 -#@ woocommerce -msgid "Andorra" -msgstr "Andorra" - -#: includes/class-wc-countries.php:42 -#@ woocommerce -msgid "Angola" -msgstr "Angola" - -#: includes/class-wc-countries.php:43 -#@ woocommerce -msgid "Anguilla" -msgstr "Anguilla" - -#: includes/class-wc-countries.php:44 -#@ woocommerce -msgid "Antarctica" -msgstr "Antarktis" - -#: includes/class-wc-countries.php:45 -#@ woocommerce -msgid "Antigua and Barbuda" -msgstr "Antigua og Barbuda" - -#: includes/class-wc-countries.php:46 -#@ woocommerce -msgid "Argentina" -msgstr "Argentina" - -#: includes/class-wc-countries.php:47 -#@ woocommerce -msgid "Armenia" -msgstr "Armenia" - -#: includes/class-wc-countries.php:48 -#@ woocommerce -msgid "Aruba" -msgstr "Aruba" - -#: includes/class-wc-countries.php:49 -#@ woocommerce -msgid "Australia" -msgstr "Australia" - -#: includes/class-wc-countries.php:50 -#@ woocommerce -msgid "Austria" -msgstr "Østerrike" - -#: includes/class-wc-countries.php:51 -#@ woocommerce -msgid "Azerbaijan" -msgstr "Azerbaijan" - -#: includes/class-wc-countries.php:52 -#@ woocommerce -msgid "Bahamas" -msgstr "Bahamas" - -#: includes/class-wc-countries.php:53 -#@ woocommerce -msgid "Bahrain" -msgstr "Bahrain" - -#: includes/class-wc-countries.php:54 -#@ woocommerce -msgid "Bangladesh" -msgstr "Bangladesh" - -#: includes/class-wc-countries.php:55 -#@ woocommerce -msgid "Barbados" -msgstr "Barbados" - -#: includes/class-wc-countries.php:56 -#@ woocommerce -msgid "Belarus" -msgstr "Hviterussland" - -#: includes/class-wc-countries.php:57 -#@ woocommerce -msgid "Belgium" -msgstr "Belgia" - -#: includes/class-wc-countries.php:59 -#@ woocommerce -msgid "Belize" -msgstr "Belize" - -#: includes/class-wc-countries.php:60 -#@ woocommerce -msgid "Benin" -msgstr "Benin" - -#: includes/class-wc-countries.php:61 -#@ woocommerce -msgid "Bermuda" -msgstr "Bermuda" - -#: includes/class-wc-countries.php:62 -#@ woocommerce -msgid "Bhutan" -msgstr "Bhutan" - -#: includes/class-wc-countries.php:63 -#@ woocommerce -msgid "Bolivia" -msgstr "Bolivia" - -#: includes/class-wc-countries.php:64 -#@ woocommerce -msgid "Bonaire, Saint Eustatius and Saba" -msgstr "Bonaire, Saint Eustatius og Saba" - -#: includes/class-wc-countries.php:65 -#@ woocommerce -msgid "Bosnia and Herzegovina" -msgstr "Bosnia Hercegovina" - -#: includes/class-wc-countries.php:66 -#@ woocommerce -msgid "Botswana" -msgstr "Botswana" - -#: includes/class-wc-countries.php:67 -#@ woocommerce -msgid "Bouvet Island" -msgstr "Bouvetøya" - -#: includes/class-wc-countries.php:68 -#@ woocommerce -msgid "Brazil" -msgstr "Brasil" - -#: includes/class-wc-countries.php:69 -#@ woocommerce -msgid "British Indian Ocean Territory" -msgstr "British Indian Ocean Territory" - -#: includes/class-wc-countries.php:70 -#@ woocommerce -msgid "British Virgin Islands" -msgstr "Jomfruøyene (Storbritania)" - -#: includes/class-wc-countries.php:71 -#@ woocommerce -msgid "Brunei" -msgstr "Brunei" - -#: includes/class-wc-countries.php:72 -#@ woocommerce -msgid "Bulgaria" -msgstr "Bulgaria" - -#: includes/class-wc-countries.php:73 -#@ woocommerce -msgid "Burkina Faso" -msgstr "Burkina Faso" - -#: includes/class-wc-countries.php:74 -#@ woocommerce -msgid "Burundi" -msgstr "Burundi" - -#: includes/class-wc-countries.php:75 -#@ woocommerce -msgid "Cambodia" -msgstr "Kambodja" - -#: includes/class-wc-countries.php:76 -#@ woocommerce -msgid "Cameroon" -msgstr "Kamerun" - -#: includes/class-wc-countries.php:77 -#@ woocommerce -msgid "Canada" -msgstr "Kanada" - -#: includes/class-wc-countries.php:78 -#@ woocommerce -msgid "Cape Verde" -msgstr "Cap Verde" - -#: includes/class-wc-countries.php:79 -#@ woocommerce -msgid "Cayman Islands" -msgstr "Caymanøyene" - -#: includes/class-wc-countries.php:80 -#@ woocommerce -msgid "Central African Republic" -msgstr "Sentralafrikanske Republikk" - -#: includes/class-wc-countries.php:81 -#@ woocommerce -msgid "Chad" -msgstr "Chad" - -#: includes/class-wc-countries.php:82 -#@ woocommerce -msgid "Chile" -msgstr "Chile" - -#: includes/class-wc-countries.php:83 -#@ woocommerce -msgid "China" -msgstr "Kina" - -#: includes/class-wc-countries.php:84 -#@ woocommerce -msgid "Christmas Island" -msgstr "Juleøya" - -#: includes/class-wc-countries.php:85 -#@ woocommerce -msgid "Cocos (Keeling) Islands" -msgstr "Kokosøyene (Keeling)" - -#: includes/class-wc-countries.php:86 -#@ woocommerce -msgid "Colombia" -msgstr "Colombia" - -#: includes/class-wc-countries.php:87 -#@ woocommerce -msgid "Comoros" -msgstr "Comoros" - -#: includes/class-wc-countries.php:88 -#@ woocommerce -msgid "Congo (Brazzaville)" -msgstr "Kongo (Brazzaville)" - -#: includes/class-wc-countries.php:89 -#@ woocommerce -msgid "Congo (Kinshasa)" -msgstr "Kongo (Kinshasa)" - -#: includes/class-wc-countries.php:90 -#@ woocommerce -msgid "Cook Islands" -msgstr "Cook Islands" - -#: includes/class-wc-countries.php:91 -#@ woocommerce -msgid "Costa Rica" -msgstr "Costa Rica" - -#: includes/class-wc-countries.php:92 -#@ woocommerce -msgid "Croatia" -msgstr "Kroatia" - -#: includes/class-wc-countries.php:93 -#@ woocommerce -msgid "Cuba" -msgstr "Kuba" - -#: includes/class-wc-countries.php:94 -#@ woocommerce -msgid "CuraÇao" -msgstr "CuraÇao" - -#: includes/class-wc-countries.php:95 -#@ woocommerce -msgid "Cyprus" -msgstr "Kypros" - -#: includes/class-wc-countries.php:96 -#@ woocommerce -msgid "Czech Republic" -msgstr "Tsjekkia" - -#: includes/class-wc-countries.php:97 -#@ woocommerce -msgid "Denmark" -msgstr "Danmark" - -#: includes/class-wc-countries.php:98 -#@ woocommerce -msgid "Djibouti" -msgstr "Djibouti" - -#: includes/class-wc-countries.php:99 -#@ woocommerce -msgid "Dominica" -msgstr "Dominica" - -#: includes/class-wc-countries.php:100 -#@ woocommerce -msgid "Dominican Republic" -msgstr "Dominikanske Republikk" - -#: includes/class-wc-countries.php:101 -#@ woocommerce -msgid "Ecuador" -msgstr "Ecuador" - -#: includes/class-wc-countries.php:102 -#@ woocommerce -msgid "Egypt" -msgstr "Egypt" - -#: includes/class-wc-countries.php:103 -#@ woocommerce -msgid "El Salvador" -msgstr "El Salvador" - -#: includes/class-wc-countries.php:104 -#@ woocommerce -msgid "Equatorial Guinea" -msgstr "Equatorial Guinea" - -#: includes/class-wc-countries.php:105 -#@ woocommerce -msgid "Eritrea" -msgstr "Eritrea" - -#: includes/class-wc-countries.php:106 -#@ woocommerce -msgid "Estonia" -msgstr "Estland" - -#: includes/class-wc-countries.php:107 -#@ woocommerce -msgid "Ethiopia" -msgstr "Etiopia" - -#: includes/class-wc-countries.php:108 -#@ woocommerce -msgid "Falkland Islands" -msgstr "Falklandsøyene" - -#: includes/class-wc-countries.php:109 -#@ woocommerce -msgid "Faroe Islands" -msgstr "Færøyene" - -#: includes/class-wc-countries.php:110 -#@ woocommerce -msgid "Fiji" -msgstr "Fiji" - -#: includes/class-wc-countries.php:111 -#@ woocommerce -msgid "Finland" -msgstr "Finnland" - -#: includes/class-wc-countries.php:112 -#@ woocommerce -msgid "France" -msgstr "Frankrike" - -#: includes/class-wc-countries.php:113 -#@ woocommerce -msgid "French Guiana" -msgstr "Fransk Guiana" - -#: includes/class-wc-countries.php:114 -#@ woocommerce -msgid "French Polynesia" -msgstr "Fransk Polynesia" - -#: includes/class-wc-countries.php:115 -#@ woocommerce -msgid "French Southern Territories" -msgstr "Franske Søndre Territorier" - -#: includes/class-wc-countries.php:116 -#@ woocommerce -msgid "Gabon" -msgstr "Gabon" - -#: includes/class-wc-countries.php:117 -#@ woocommerce -msgid "Gambia" -msgstr "Gambia" - -#: i18n/states/US.php:23 -#: includes/class-wc-countries.php:118 -#@ woocommerce -msgid "Georgia" -msgstr "Georgia" - -#: includes/class-wc-countries.php:119 -#@ woocommerce -msgid "Germany" -msgstr "Tyskland" - -#: includes/class-wc-countries.php:120 -#@ woocommerce -msgid "Ghana" -msgstr "Ghana" - -#: includes/class-wc-countries.php:121 -#@ woocommerce -msgid "Gibraltar" -msgstr "Gibraltar" - -#: includes/class-wc-countries.php:122 -#@ woocommerce -msgid "Greece" -msgstr "Hellas" - -#: includes/class-wc-countries.php:123 -#@ woocommerce -msgid "Greenland" -msgstr "Grønland" - -#: includes/class-wc-countries.php:124 -#@ woocommerce -msgid "Grenada" -msgstr "Grenada" - -#: includes/class-wc-countries.php:125 -#@ woocommerce -msgid "Guadeloupe" -msgstr "Guadeloupe" - -#: i18n/states/US.php:68 -#@ woocommerce -msgid "Guam" -msgstr "Guam" - -#: includes/class-wc-countries.php:126 -#@ woocommerce -msgid "Guatemala" -msgstr "Guatemala" - -#: includes/class-wc-countries.php:127 -#@ woocommerce -msgid "Guernsey" -msgstr "Guernsey" - -#: includes/class-wc-countries.php:128 -#@ woocommerce -msgid "Guinea" -msgstr "Guinea" - -#: includes/class-wc-countries.php:129 -#@ woocommerce -msgid "Guinea-Bissau" -msgstr "Guinea-Bissau" - -#: includes/class-wc-countries.php:130 -#@ woocommerce -msgid "Guyana" -msgstr "Guyana" - -#: includes/class-wc-countries.php:131 -#@ woocommerce -msgid "Haiti" -msgstr "Haiti" - -#: includes/class-wc-countries.php:132 -#@ woocommerce -msgid "Heard Island and McDonald Islands" -msgstr "Heard Island og McDonald Islands" - -#: includes/class-wc-countries.php:133 -#@ woocommerce -msgid "Honduras" -msgstr "Honduras" - -#: includes/class-wc-countries.php:134 -#@ woocommerce -msgid "Hong Kong" -msgstr "Hong Kong" - -#: includes/class-wc-countries.php:135 -#@ woocommerce -msgid "Hungary" -msgstr "Ungarn" - -#: includes/class-wc-countries.php:136 -#@ woocommerce -msgid "Iceland" -msgstr "Island" - -#: includes/class-wc-countries.php:137 -#@ woocommerce -msgid "India" -msgstr "India" - -#: includes/class-wc-countries.php:138 -#@ woocommerce -msgid "Indonesia" -msgstr "Indonesia" - -#: includes/class-wc-countries.php:139 -#@ woocommerce -msgid "Iran" -msgstr "Iran" - -#: includes/class-wc-countries.php:140 -#@ woocommerce -msgid "Iraq" -msgstr "Irak" - -#: includes/class-wc-countries.php:141 -#@ woocommerce -msgid "Republic of Ireland" -msgstr "Den Irske Republikk" - -#: includes/class-wc-countries.php:142 -#@ woocommerce -msgid "Isle of Man" -msgstr "Isle of Man" - -#: includes/class-wc-countries.php:143 -#@ woocommerce -msgid "Israel" -msgstr "Israel" - -#: includes/class-wc-countries.php:144 -#@ woocommerce -msgid "Italy" -msgstr "Italia" - -#: includes/class-wc-countries.php:145 -#@ woocommerce -msgid "Ivory Coast" -msgstr "Elfenbenskysten" - -#: includes/class-wc-countries.php:146 -#@ woocommerce -msgid "Jamaica" -msgstr "Jamaica" - -#: includes/class-wc-countries.php:147 -#@ woocommerce -msgid "Japan" -msgstr "Japan" - -#: includes/class-wc-countries.php:148 -#@ woocommerce -msgid "Jersey" -msgstr "Jersey" - -#: includes/class-wc-countries.php:149 -#@ woocommerce -msgid "Jordan" -msgstr "Jordan" - -#: includes/class-wc-countries.php:150 -#@ woocommerce -msgid "Kazakhstan" -msgstr "Kazakhstan" - -#: includes/class-wc-countries.php:151 -#@ woocommerce -msgid "Kenya" -msgstr "Kenya" - -#: includes/class-wc-countries.php:152 -#@ woocommerce -msgid "Kiribati" -msgstr "Kiribati" - -#: includes/class-wc-countries.php:153 -#@ woocommerce -msgid "Kuwait" -msgstr "Kuwait" - -#: includes/class-wc-countries.php:154 -#@ woocommerce -msgid "Kyrgyzstan" -msgstr "Kirgistan" - -#: includes/class-wc-countries.php:155 -#@ woocommerce -msgid "Laos" -msgstr "Laos" - -#: includes/class-wc-countries.php:156 -#@ woocommerce -msgid "Latvia" -msgstr "Latvia" - -#: includes/class-wc-countries.php:157 -#@ woocommerce -msgid "Lebanon" -msgstr "Libanon" - -#: includes/class-wc-countries.php:158 -#@ woocommerce -msgid "Lesotho" -msgstr "Lesotho" - -#: includes/class-wc-countries.php:159 -#@ woocommerce -msgid "Liberia" -msgstr "Liberia" - -#: includes/class-wc-countries.php:160 -#@ woocommerce -msgid "Libya" -msgstr "Libya" - -#: includes/class-wc-countries.php:161 -#@ woocommerce -msgid "Liechtenstein" -msgstr "Liechtenstein" - -#: includes/class-wc-countries.php:162 -#@ woocommerce -msgid "Lithuania" -msgstr "Litauen" - -#: includes/class-wc-countries.php:163 -#@ woocommerce -msgid "Luxembourg" -msgstr "Luxemburg" - -#: includes/class-wc-countries.php:164 -#@ woocommerce -msgid "Macao S.A.R., China" -msgstr "Macao S.A.R., Kina" - -#: includes/class-wc-countries.php:165 -#@ woocommerce -msgid "Macedonia" -msgstr "Makedonia" - -#: includes/class-wc-countries.php:166 -#@ woocommerce -msgid "Madagascar" -msgstr "Madagaskar" - -#: includes/class-wc-countries.php:167 -#@ woocommerce -msgid "Malawi" -msgstr "Malawi" - -#: includes/class-wc-countries.php:168 -#@ woocommerce -msgid "Malaysia" -msgstr "Malaysia" - -#: includes/class-wc-countries.php:169 -#@ woocommerce -msgid "Maldives" -msgstr "Maldivene" - -#: includes/class-wc-countries.php:170 -#@ woocommerce -msgid "Mali" -msgstr "Mali" - -#: includes/class-wc-countries.php:171 -#@ woocommerce -msgid "Malta" -msgstr "Malta" - -#: includes/class-wc-countries.php:172 -#@ woocommerce -msgid "Marshall Islands" -msgstr "Marshalløyene" - -#: includes/class-wc-countries.php:173 -#@ woocommerce -msgid "Martinique" -msgstr "Martinique" - -#: includes/class-wc-countries.php:174 -#@ woocommerce -msgid "Mauritania" -msgstr "Mauritania" - -#: includes/class-wc-countries.php:175 -#@ woocommerce -msgid "Mauritius" -msgstr "Mauritius" - -#: includes/class-wc-countries.php:176 -#@ woocommerce -msgid "Mayotte" -msgstr "Mayotte" - -#: includes/class-wc-countries.php:177 -#@ woocommerce -msgid "Mexico" -msgstr "Mexico" - -#: includes/class-wc-countries.php:178 -#@ woocommerce -msgid "Micronesia" -msgstr "Mikronesia" - -#: includes/class-wc-countries.php:179 -#@ woocommerce -msgid "Moldova" -msgstr "Moldova" - -#: includes/class-wc-countries.php:180 -#@ woocommerce -msgid "Monaco" -msgstr "Monaco" - -#: includes/class-wc-countries.php:181 -#@ woocommerce -msgid "Mongolia" -msgstr "Mongolia" - -#: includes/class-wc-countries.php:182 -#@ woocommerce -msgid "Montenegro" -msgstr "Montenegro" - -#: includes/class-wc-countries.php:183 -#@ woocommerce -msgid "Montserrat" -msgstr "Montserrat" - -#: includes/class-wc-countries.php:184 -#@ woocommerce -msgid "Morocco" -msgstr "Marokko" - -#: includes/class-wc-countries.php:185 -#@ woocommerce -msgid "Mozambique" -msgstr "Mozambique" - -#: includes/class-wc-countries.php:186 -#@ woocommerce -msgid "Myanmar" -msgstr "Myanmar" - -#: includes/class-wc-countries.php:187 -#@ woocommerce -msgid "Namibia" -msgstr "Namibia" - -#: includes/class-wc-countries.php:188 -#@ woocommerce -msgid "Nauru" -msgstr "Nauru" - -#: includes/class-wc-countries.php:189 -#@ woocommerce -msgid "Nepal" -msgstr "Nepal" - -#: includes/class-wc-countries.php:190 -#@ woocommerce -msgid "Netherlands" -msgstr "Nederland" - -#: includes/class-wc-countries.php:191 -#@ woocommerce -msgid "Netherlands Antilles" -msgstr "Nederlandske Antiller" - -#: includes/class-wc-countries.php:192 -#@ woocommerce -msgid "New Caledonia" -msgstr "Nye Caledonia" - -#: includes/class-wc-countries.php:193 -#@ woocommerce -msgid "New Zealand" -msgstr "New Zealand" - -#: includes/class-wc-countries.php:194 -#@ woocommerce -msgid "Nicaragua" -msgstr "Nicaragua" - -#: includes/class-wc-countries.php:195 -#@ woocommerce -msgid "Niger" -msgstr "Niger" - -#: includes/class-wc-countries.php:196 -#@ woocommerce -msgid "Nigeria" -msgstr "Nigeria" - -#: includes/class-wc-countries.php:197 -#@ woocommerce -msgid "Niue" -msgstr "Niue" - -#: includes/class-wc-countries.php:198 -#@ woocommerce -msgid "Norfolk Island" -msgstr "Norfolk Island" - -#: includes/class-wc-countries.php:199 -#@ woocommerce -msgid "North Korea" -msgstr "Nord Korea" - -#: i18n/states/US.php:69 -#@ woocommerce -msgid "Northern Mariana Islands" -msgstr "Nordre Marianaøyene" - -#: includes/class-wc-countries.php:200 -#@ woocommerce -msgid "Norway" -msgstr "Norge" - -#: includes/class-wc-countries.php:201 -#@ woocommerce -msgid "Oman" -msgstr "Oman" - -#: includes/class-wc-countries.php:202 -#@ woocommerce -msgid "Pakistan" -msgstr "Pakistan" - -#: includes/class-wc-countries.php:203 -#@ woocommerce -msgid "Palestinian Territory" -msgstr "Palestinske territorie" - -#: includes/class-wc-countries.php:204 -#@ woocommerce -msgid "Panama" -msgstr "Panama" - -#: includes/class-wc-countries.php:205 -#@ woocommerce -msgid "Papua New Guinea" -msgstr "Papua New Guinea" - -#: includes/class-wc-countries.php:206 -#@ woocommerce -msgid "Paraguay" -msgstr "Paraguay" - -#: includes/class-wc-countries.php:207 -#@ woocommerce -msgid "Peru" -msgstr "Peru" - -#: includes/class-wc-countries.php:208 -#@ woocommerce -msgid "Philippines" -msgstr "Filippinene" - -#: includes/class-wc-countries.php:209 -#@ woocommerce -msgid "Pitcairn" -msgstr "Pitcairn" - -#: includes/class-wc-countries.php:210 -#@ woocommerce -msgid "Poland" -msgstr "Polen" - -#: includes/class-wc-countries.php:211 -#@ woocommerce -msgid "Portugal" -msgstr "Portugal" - -#: i18n/states/US.php:70 -#@ woocommerce -msgid "Puerto Rico" -msgstr "Puerto Rico" - -#: includes/class-wc-countries.php:212 -#@ woocommerce -msgid "Qatar" -msgstr "Qatar" - -#: includes/class-wc-countries.php:213 -#@ woocommerce -msgid "Reunion" -msgstr "Gjenforening" - -#: includes/class-wc-countries.php:214 -#@ woocommerce -msgid "Romania" -msgstr "Romania" - -#: includes/class-wc-countries.php:215 -#@ woocommerce -msgid "Russia" -msgstr "Russland" - -#: includes/class-wc-countries.php:216 -#@ woocommerce -msgid "Rwanda" -msgstr "Rwanda" - -#: includes/class-wc-countries.php:217 -#@ woocommerce -msgid "Saint Barthélemy" -msgstr "Saint Barthélemy" - -#: includes/class-wc-countries.php:218 -#@ woocommerce -msgid "Saint Helena" -msgstr "Sankt Helena" - -#: includes/class-wc-countries.php:219 -#@ woocommerce -msgid "Saint Kitts and Nevis" -msgstr "Saint Kitts og Nevis" - -#: includes/class-wc-countries.php:220 -#@ woocommerce -msgid "Saint Lucia" -msgstr "Sankta Lucia" - -#: includes/class-wc-countries.php:221 -#@ woocommerce -msgid "Saint Martin (French part)" -msgstr "Saint Martin (Franske delen)" - -#: includes/class-wc-countries.php:222 -#@ woocommerce -msgid "Saint Martin (Dutch part)" -msgstr "Saint Martin (Hollanske delen)" - -#: includes/class-wc-countries.php:223 -#@ woocommerce -msgid "Saint Pierre and Miquelon" -msgstr "Saint Pierre og Miquelon" - -#: includes/class-wc-countries.php:224 -#@ woocommerce -msgid "Saint Vincent and the Grenadines" -msgstr "Saint Vincent og Grenadinene" - -#: includes/class-wc-countries.php:225 -#@ woocommerce -msgid "San Marino" -msgstr "San Marino" - -#: includes/class-wc-countries.php:226 -#@ woocommerce -msgid "São Tomé and Príncipe" -msgstr "São Tomé og Príncipe" - -#: includes/class-wc-countries.php:227 -#@ woocommerce -msgid "Saudi Arabia" -msgstr "Saudi Arabia" - -#: includes/class-wc-countries.php:228 -#@ woocommerce -msgid "Senegal" -msgstr "Senegal" - -#: includes/class-wc-countries.php:229 -#@ woocommerce -msgid "Serbia" -msgstr "Serbia" - -#: includes/class-wc-countries.php:230 -#@ woocommerce -msgid "Seychelles" -msgstr "Seychellene" - -#: includes/class-wc-countries.php:231 -#@ woocommerce -msgid "Sierra Leone" -msgstr "Sierra Leone" - -#: includes/class-wc-countries.php:232 -#@ woocommerce -msgid "Singapore" -msgstr "Singapore" - -#: includes/class-wc-countries.php:233 -#@ woocommerce -msgid "Slovakia" -msgstr "Slovakia" - -#: includes/class-wc-countries.php:234 -#@ woocommerce -msgid "Slovenia" -msgstr "Slovenia" - -#: includes/class-wc-countries.php:235 -#@ woocommerce -msgid "Solomon Islands" -msgstr "Solomonøyene" - -#: includes/class-wc-countries.php:236 -#@ woocommerce -msgid "Somalia" -msgstr "Somalia" - -#: includes/class-wc-countries.php:237 -#@ woocommerce -msgid "South Africa" -msgstr "Sør-Afrika" - -#: includes/class-wc-countries.php:238 -#@ woocommerce -msgid "South Georgia/Sandwich Islands" -msgstr "Syd-Georgia/Sandwich Øyene" - -#: includes/class-wc-countries.php:239 -#@ woocommerce -msgid "South Korea" -msgstr "Sør-Korea" - -#: includes/class-wc-countries.php:240 -#@ woocommerce -msgid "South Sudan" -msgstr "Sør-Sudan" - -#: includes/class-wc-countries.php:241 -#@ woocommerce -msgid "Spain" -msgstr "Spania" - -#: includes/class-wc-countries.php:242 -#@ woocommerce -msgid "Sri Lanka" -msgstr "Sri Lanka" - -#: includes/class-wc-countries.php:243 -#@ woocommerce -msgid "Sudan" -msgstr "Sudan" - -#: includes/class-wc-countries.php:244 -#@ woocommerce -msgid "Suriname" -msgstr "Surinam" - -#: includes/class-wc-countries.php:245 -#@ woocommerce -msgid "Svalbard and Jan Mayen" -msgstr "Svalbard og Jan Mayen" - -#: includes/class-wc-countries.php:246 -#@ woocommerce -msgid "Swaziland" -msgstr "Swaziland" - -#: includes/class-wc-countries.php:247 -#@ woocommerce -msgid "Sweden" -msgstr "Sverige" - -#: includes/class-wc-countries.php:248 -#@ woocommerce -msgid "Switzerland" -msgstr "Sveits" - -#: includes/class-wc-countries.php:249 -#@ woocommerce -msgid "Syria" -msgstr "Syria" - -#: includes/class-wc-countries.php:250 -#@ woocommerce -msgid "Taiwan" -msgstr "Taiwan" - -#: includes/class-wc-countries.php:251 -#@ woocommerce -msgid "Tajikistan" -msgstr "Tajikistan" - -#: includes/class-wc-countries.php:252 -#@ woocommerce -msgid "Tanzania" -msgstr "Tanzania" - -#: includes/class-wc-countries.php:253 -#@ woocommerce -msgid "Thailand" -msgstr "Thailand" - -#: includes/class-wc-countries.php:254 -#@ woocommerce -msgid "Timor-Leste" -msgstr "Timor-Leste" - -#: includes/class-wc-countries.php:255 -#@ woocommerce -msgid "Togo" -msgstr "Togo" - -#: includes/class-wc-countries.php:256 -#@ woocommerce -msgid "Tokelau" -msgstr "Tokelau" - -#: includes/class-wc-countries.php:257 -#@ woocommerce -msgid "Tonga" -msgstr "Tonga" - -#: includes/class-wc-countries.php:258 -#@ woocommerce -msgid "Trinidad and Tobago" -msgstr "Trinidad og Tobago" - -#: includes/class-wc-countries.php:259 -#@ woocommerce -msgid "Tunisia" -msgstr "Tunis" - -#: includes/class-wc-countries.php:260 -#@ woocommerce -msgid "Turkey" -msgstr "Tyrkia" - -#: includes/class-wc-countries.php:261 -#@ woocommerce -msgid "Turkmenistan" -msgstr "Turkmenistan" - -#: includes/class-wc-countries.php:262 -#@ woocommerce -msgid "Turks and Caicos Islands" -msgstr "Turk og Caico-øyene" - -#: includes/class-wc-countries.php:263 -#@ woocommerce -msgid "Tuvalu" -msgstr "Tuvalu" - -#: i18n/states/US.php:71 -#@ woocommerce -msgid "US Minor Outlying Islands" -msgstr "US mindre utenforliggende øyer" - -#: includes/class-wc-countries.php:264 -#@ woocommerce -msgid "Uganda" -msgstr "Uganda" - -#: includes/class-wc-countries.php:265 -#@ woocommerce -msgid "Ukraine" -msgstr "Ukraina" - -#: includes/class-wc-countries.php:266 -#@ woocommerce -msgid "United Arab Emirates" -msgstr "Forente Arabiske Emirater" - -#: includes/class-wc-countries.php:269 -#@ woocommerce -msgid "Uruguay" -msgstr "Uruguay" - -#: includes/class-wc-countries.php:270 -#@ woocommerce -msgid "Uzbekistan" -msgstr "Usbekistan" - -#: includes/class-wc-countries.php:271 -#@ woocommerce -msgid "Vanuatu" -msgstr "Vanuatu" - -#: includes/class-wc-countries.php:272 -#@ woocommerce -msgid "Vatican" -msgstr "Vatikanstaten" - -#: includes/class-wc-countries.php:273 -#@ woocommerce -msgid "Venezuela" -msgstr "Venezuela" - -#: includes/class-wc-countries.php:274 -#@ woocommerce -msgid "Vietnam" -msgstr "Vietnam" - -#: includes/class-wc-countries.php:275 -#@ woocommerce -msgid "Wallis and Futuna" -msgstr "Wallis og Futuna" - -#: includes/class-wc-countries.php:276 -#@ woocommerce -msgid "Western Sahara" -msgstr "Vestre Sahara" - -#: includes/class-wc-countries.php:278 -#@ woocommerce -msgid "Yemen" -msgstr "Yemen" - -#: includes/class-wc-countries.php:279 -#@ woocommerce -msgid "Zambia" -msgstr "Zambia" - -#: includes/class-wc-countries.php:280 -#@ woocommerce -msgid "Zimbabwe" -msgstr "Zimbabwe" - -#: includes/class-wc-countries.php:485 -#@ woocommerce -msgid "to the" -msgstr "til" - -#: includes/class-wc-countries.php:486 -#@ woocommerce -msgid "to" -msgstr "til" - -#: includes/class-wc-countries.php:499 -#@ woocommerce -msgid "the" -msgstr " " - -#: includes/class-wc-countries.php:511 -#@ woocommerce -msgid "VAT" -msgstr "MVA" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:46 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:111 -#: includes/admin/settings/class-wc-settings-tax.php:25 -#: includes/admin/settings/class-wc-settings-tax.php:548 -#: includes/admin/settings/class-wc-settings-tax.php:641 -#: includes/class-wc-countries.php:511 -#@ woocommerce -msgid "Tax" -msgstr "Skatt" - -#: includes/class-wc-countries.php:524 -#@ woocommerce -msgid "(incl. VAT)" -msgstr "(inkl. mva)" - -#: includes/class-wc-countries.php:524 -#@ woocommerce -msgid "(incl. tax)" -msgstr "(inkl. skatt)" - -#: includes/class-wc-countries.php:537 -#@ woocommerce -msgid "(ex. VAT)" -msgstr "(eks. mva)" - -#: includes/class-wc-countries.php:537 -#@ woocommerce -msgid "(ex. tax)" -msgstr "(eks. skatt)" - -#: includes/class-wc-countries.php:808 -#: includes/class-wc-countries.php:824 -#: includes/class-wc-countries.php:844 -#: includes/class-wc-countries.php:905 -#: includes/class-wc-countries.php:924 -#: includes/class-wc-countries.php:952 -#: includes/class-wc-countries.php:1002 -#: includes/class-wc-countries.php:1026 -#: includes/class-wc-countries.php:1067 -#@ woocommerce -msgid "Province" -msgstr "Provins" - -#: includes/class-wc-countries.php:830 -#@ woocommerce -msgid "Canton" -msgstr "Canton" - -#: includes/class-wc-countries.php:839 -#: includes/class-wc-countries.php:1008 -#@ woocommerce -msgid "Municipality" -msgstr "Kommune" - -#: includes/class-wc-countries.php:892 -#@ woocommerce -msgid "Town / District" -msgstr "By / Distrikt" - -#: includes/class-wc-countries.php:895 -#@ woocommerce -msgid "Region" -msgstr "Region" - -#: includes/class-wc-countries.php:1031 -#@ woocommerce -msgid "Zip" -msgstr "Zip" - -#: includes/class-wc-countries.php:1034 -#@ woocommerce -msgid "State" -msgstr "Delstat" - -#: includes/admin/class-wc-admin-profile.php:72 -#: includes/admin/class-wc-admin-profile.php:121 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:53 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:100 -#: includes/class-wc-countries.php:1039 -#@ woocommerce -msgid "Postcode" -msgstr "Postnummer" - -#: includes/class-wc-countries.php:900 -#: includes/class-wc-countries.php:1042 -#@ woocommerce -msgid "County" -msgstr "Fylke" - -#: includes/class-wc-countries.php:764 -#: includes/class-wc-countries.php:765 -#: templates/cart/shipping-calculator.php:80 -#@ woocommerce -msgid "Postcode / Zip" -msgstr "Postnummer / Zip" - -#: includes/class-wc-countries.php:750 -#: includes/class-wc-countries.php:751 -#@ woocommerce -msgid "Town / City" -msgstr "By" - -#: includes/class-wc-countries.php:757 -#: includes/class-wc-countries.php:758 -#@ woocommerce -msgid "State / County" -msgstr "Delstat / Fylke" - -#: includes/admin/class-wc-admin-profile.php:80 -#: includes/admin/class-wc-admin-profile.php:129 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:57 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:104 -#: includes/class-wc-countries.php:719 -#@ woocommerce -msgid "Country" -msgstr "Land" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:29 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:76 -#: includes/class-wc-countries.php:724 -#@ woocommerce -msgid "First Name" -msgstr "Fornavn" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:33 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:80 -#: includes/class-wc-countries.php:729 -#@ woocommerce -msgid "Last Name" -msgstr "Etternavn" - -#: includes/class-wc-countries.php:735 -#@ woocommerce -msgid "Company Name" -msgstr "Navn på firma" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:188 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:190 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:267 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:269 -#: includes/class-wc-countries.php:739 -#@ woocommerce -msgid "Address" -msgstr "Adresse" - -#: includes/class-wc-countries.php:740 -#@ woocommerce -msgctxt "placeholder" -msgid "Street address" -msgstr "Gateadresse" - -#: includes/class-wc-countries.php:745 -#@ woocommerce -msgctxt "placeholder" -msgid "Apartment, suite, unit etc. (optional)" -msgstr "Leilighet, suite, etc. (valgfritt)" - -#: includes/class-wc-countries.php:1147 -#@ woocommerce -msgid "Email Address" -msgstr "Epostadresse" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:70 -#: includes/class-wc-countries.php:1153 -#@ woocommerce -msgid "Phone" -msgstr "Telefon" - -#: includes/class-wc-coupon.php:610 -#@ woocommerce -msgid "Coupon usage limit has been reached." -msgstr "Kupongens maksimumsgrense for bruk er nådd." - -#: includes/class-wc-coupon.php:613 -#@ woocommerce -msgid "This coupon has expired." -msgstr "Denne kupongen har gått ut på dato." - -#: includes/class-wc-coupon.php:616 -#, php-format -#@ woocommerce -msgid "The minimum spend for this coupon is %s." -msgstr "Minimumsbeløp for bruk av denne kupongen er %s." - -#: includes/class-wc-coupon.php:619 -#@ woocommerce -msgid "Sorry, this coupon is not applicable to your cart contents." -msgstr "Beklager, denne kupongen kan ikke brukes med innholdet i handlekurven din." - -#: includes/class-wc-ajax.php:788 -#: includes/class-wc-customer.php:624 -#: includes/class-wc-customer.php:636 -#, php-format -#@ woocommerce -msgid "File %d" -msgstr "Fil %d" - -#: includes/class-wc-emails.php:289 -#@ woocommerce -msgid "Note" -msgstr "Notat" - -#: includes/class-wc-emails.php:325 -#@ woocommerce -msgid "Product low in stock" -msgstr "Lite lager av dette produktet" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:1357 -#: includes/class-wc-emails.php:330 -#: includes/class-wc-emails.php:362 -#: includes/class-wc-emails.php:406 -#, php-format -#@ woocommerce -msgid "Variation #%s of %s" -msgstr "Variant #%s av %s" - -#: includes/class-wc-emails.php:332 -#: includes/class-wc-emails.php:364 -#: includes/class-wc-emails.php:408 -#, php-format -#@ woocommerce -msgid "Product #%s - %s" -msgstr "Produktnr.%s - %s" - -#: includes/class-wc-emails.php:334 -#@ woocommerce -msgid "is low in stock." -msgstr "er lite på lager." - -#: includes/class-wc-emails.php:357 -#@ woocommerce -msgid "Product out of stock" -msgstr "Produktet er tomt på lager" - -#: includes/class-wc-emails.php:366 -#@ woocommerce -msgid "is out of stock." -msgstr "er tom på lager." - -#: includes/class-wc-emails.php:401 -#@ woocommerce -msgid "Product Backorder" -msgstr "Produktrestordre" - -#: includes/class-wc-order.php:130 -#@ woocommerce -msgctxt "hash before order number" -msgid "#" -msgstr "#" - -#: includes/class-wc-order.php:795 -#, php-format -#@ woocommerce -msgid " %svia %s" -msgstr " %svia %s" - -#: includes/class-wc-order.php:856 -#@ woocommerce -msgid "Cart Subtotal:" -msgstr "Handlekurv delsum:" - -#: includes/class-wc-order.php:862 -#@ woocommerce -msgid "Cart Discount:" -msgstr "Handlekurvsrabatt:" - -#: includes/class-wc-order.php:868 -#@ woocommerce -msgid "Shipping:" -msgstr "Frakt:" - -#: includes/class-wc-order.php:913 -#@ woocommerce -msgid "Order Discount:" -msgstr "Ordrerabatt:" - -#: includes/class-wc-order.php:918 -#@ woocommerce -msgid "Order Total:" -msgstr "Ordretotal:" - -#: includes/class-wc-order.php:936 -#: includes/wc-cart-functions.php:219 -#, php-format -#@ woocommerce -msgid "(Includes %s)" -msgstr "(Innkluderer %s)" - -#. translators: plugin header field 'Name' -#: includes/admin/class-wc-admin-assets.php:65 -#: includes/admin/class-wc-admin-menus.php:47 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:45 -#: includes/admin/wc-admin-functions.php:19 -#: includes/class-wc-order.php:1173 -#: includes/class-wc-order.php:1174 -#: woocommerce.php:0 -#@ woocommerce -msgid "WooCommerce" -msgstr "WooCommerce" - -#: includes/class-wc-order.php:1227 -#, php-format -#@ woocommerce -msgid "Order status changed from %s to %s." -msgstr "Ordrestatus endret fra %s til %s." - -#: includes/class-wc-ajax.php:978 -#: includes/class-wc-ajax.php:979 -#: includes/class-wc-order.php:1471 -#, php-format -#@ woocommerce -msgid "Item #%s stock reduced from %s to %s." -msgstr "Gjenstand #%s lagersaldo reduseres fra %s til %s." - -#: includes/class-wc-order.php:1483 -#@ woocommerce -msgid "Order item stock reduced successfully." -msgstr "Minsket lagersaldo for ordregjenstanden vellykket." - -#: includes/class-wc-product-external.php:86 -#@ woocommerce -msgid "Buy product" -msgstr "Kjøp produkt" - -#: includes/abstracts/abstract-wc-product.php:454 -#: includes/admin/settings/class-wc-settings-products.php:265 -#: includes/class-wc-product-simple.php:48 -#: includes/class-wc-product-variation.php:211 -#@ woocommerce -msgid "Add to cart" -msgstr "Legg i handlekurv" - -#: includes/emails/class-wc-email-customer-completed-order.php:26 -#@ woocommerce -msgid "Completed order" -msgstr "Fullført ordre" - -#: includes/emails/class-wc-email-customer-completed-order.php:27 -#@ woocommerce -msgid "Order complete emails are sent to the customer when the order is marked complete and usual indicates that the order has been shipped." -msgstr "Ordre-ferdig-epost sendes til kunden når ordren er merket ferdig og indikerer vanligvis at ordren er sendt." - -#: includes/emails/class-wc-email-customer-completed-order.php:29 -#@ woocommerce -msgid "Your order is complete" -msgstr "Ordren din er fullført" - -#: includes/emails/class-wc-email-customer-completed-order.php:39 -#@ woocommerce -msgid "Your order is complete - download your files" -msgstr "Ordren din er fullført - last ned filene dine" - -#: includes/emails/class-wc-email-customer-completed-order.php:142 -#: includes/emails/class-wc-email-new-order.php:129 -#@ woocommerce -msgid "Subject" -msgstr "Emne" - -#: includes/emails/class-wc-email-customer-completed-order.php:149 -#: includes/emails/class-wc-email-new-order.php:136 -#@ woocommerce -msgid "Email Heading" -msgstr "Epostoverskrift" - -#: includes/emails/class-wc-email-customer-completed-order.php:156 -#@ woocommerce -msgid "Subject (downloadable)" -msgstr "Emne (nedlastbar)" - -#: includes/emails/class-wc-email-customer-completed-order.php:163 -#@ woocommerce -msgid "Email Heading (downloadable)" -msgstr "Epostoverskrift (nedlastbar)" - -#: includes/emails/class-wc-email-customer-invoice.php:29 -#@ woocommerce -msgid "Customer invoice" -msgstr "Kundefaktura" - -#: includes/emails/class-wc-email-customer-invoice.php:30 -#@ woocommerce -msgid "Customer invoice emails can be sent to the user containing order info and payment links." -msgstr "Eposter med kundefaktura kan bli sendt til brukeren og inneholder ordreinfo og betalingslenker." - -#: includes/emails/class-wc-email-customer-invoice.php:35 -#@ woocommerce -msgid "Invoice for order {order_number} from {order_date}" -msgstr "Faktura for ordre {order_number} fra {order_date}" - -#: includes/emails/class-wc-email-customer-invoice.php:36 -#@ woocommerce -msgid "Invoice for order {order_number}" -msgstr "Faktura for ordre {order_number}" - -#: includes/emails/class-wc-email-customer-invoice.php:39 -#@ woocommerce -msgid "Order {order_number} details" -msgstr "Ordredetaljer {order_number}" - -#: includes/emails/class-wc-email-customer-invoice.php:156 -#@ woocommerce -msgid "Email subject (paid)" -msgstr "Epostemne (betalt)" - -#: includes/emails/class-wc-email-customer-invoice.php:163 -#@ woocommerce -msgid "Email heading (paid)" -msgstr "Epostoverskrift (betalt)" - -#: includes/emails/class-wc-email-customer-new-account.php:33 -#@ woocommerce -msgid "New account" -msgstr "Ny konto" - -#: includes/emails/class-wc-email-customer-new-account.php:34 -#@ woocommerce -msgid "Customer new account emails are sent when a customer signs up via the checkout or My Account page." -msgstr "Epost med ny kundekonto sendes når en kunde registrerer seg via kassen eller Min konto-side." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:64 -#: includes/emails/class-wc-email-customer-note.php:31 -#@ woocommerce -msgid "Customer note" -msgstr "Kundenotat" - -#: includes/emails/class-wc-email-customer-note.php:32 -#@ woocommerce -msgid "Customer note emails are sent when you add a note to an order." -msgstr "Epost med kundenotater sendes når du legger til et notat i en ordre." - -#: includes/emails/class-wc-email-customer-note.php:38 -#@ woocommerce -msgid "A note has been added to your order" -msgstr "Et notat er lagt til ordren din" - -#: includes/emails/class-wc-email-customer-processing-order.php:26 -#@ woocommerce -msgid "Processing order" -msgstr "Behandler ordre" - -#: includes/emails/class-wc-email-customer-processing-order.php:27 -#@ woocommerce -msgid "This is an order notification sent to the customer after payment containing order details." -msgstr "Dette er et ordrevarsel som sendes til kunden etter betaling, og inneholder ordredetaljene." - -#: includes/emails/class-wc-email-customer-processing-order.php:29 -#@ woocommerce -msgid "Thank you for your order" -msgstr "Takk for ordren din" - -#: includes/emails/class-wc-email-customer-reset-password.php:38 -#@ woocommerce -msgid "Reset password" -msgstr "Tlbakestill passord" - -#: includes/emails/class-wc-email-customer-reset-password.php:39 -#@ woocommerce -msgid "Customer reset password emails are sent when a customer resets their password." -msgstr "Epost med Kunde Tilbakestiller Passord sendes når en kunde tilbakestiller passordet sitt." - -#: includes/emails/class-wc-email-customer-reset-password.php:45 -#@ woocommerce -msgid "Password Reset Instructions" -msgstr "Instruksjoner for tilbakestilling av passord" - -#: includes/emails/class-wc-email-new-order.php:26 -#@ woocommerce -msgid "New order" -msgstr "Ny ordre" - -#: includes/emails/class-wc-email-new-order.php:29 -#@ woocommerce -msgid "New customer order" -msgstr "Ny kundeordre" - -#: includes/emails/class-wc-email-new-order.php:122 -#@ woocommerce -msgid "Recipient(s)" -msgstr "Mottaker(e)" - -#: includes/emails/class-wc-email-new-order.php:124 -#, php-format -#@ woocommerce -msgid "Enter recipients (comma separated) for this email. Defaults to %s." -msgstr "Skriv inn mottakere (kommaseparert) for denne eposten. Standard er %s." - -#: includes/emails/class-wc-email-new-order.php:131 -#, php-format -#@ woocommerce -msgid "This controls the email subject line. Leave blank to use the default subject: %s." -msgstr "Dette styrer epostens emnefelt. La stå tom for å bruke standard emne: %s." - -#: includes/emails/class-wc-email-new-order.php:138 -#, php-format -#@ woocommerce -msgid "This controls the main heading contained within the email notification. Leave blank to use the default heading: %s." -msgstr "Dette styrer hovedoverskriften i epostvarselet. La stå tom for å bruke standard overskrift: %s." - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:68 -#@ woocommerce -msgid "Enable Bank Transfer" -msgstr "Aktiver bankoverføring" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:72 -#: includes/gateways/cheque/class-wc-gateway-cheque.php:58 -#: includes/gateways/cod/class-wc-gateway-cod.php:64 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:142 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:126 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:102 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:81 -#: includes/widgets/class-wc-widget-cart.php:30 -#: includes/widgets/class-wc-widget-layered-nav-filters.php:28 -#: includes/widgets/class-wc-widget-layered-nav.php:70 -#: includes/widgets/class-wc-widget-price-filter.php:30 -#: includes/widgets/class-wc-widget-product-categories.php:31 -#: includes/widgets/class-wc-widget-product-search.php:28 -#: includes/widgets/class-wc-widget-product-tag-cloud.php:28 -#: includes/widgets/class-wc-widget-products.php:28 -#: includes/widgets/class-wc-widget-recent-reviews.php:28 -#: includes/widgets/class-wc-widget-recently-viewed.php:28 -#: includes/widgets/class-wc-widget-top-rated-products.php:30 -#@ woocommerce -msgid "Title" -msgstr "Tittel" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:74 -#: includes/gateways/cheque/class-wc-gateway-cheque.php:60 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:144 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:128 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:83 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:72 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:57 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:104 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:83 -#@ woocommerce -msgid "This controls the title which the user sees during checkout." -msgstr "Dette styrer hvilken tittel brukeren ser i kassen." - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:75 -#@ woocommerce -msgid "Direct Bank Transfer" -msgstr "Direkte bankoverføring" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:91 -#@ woocommerce -msgid "Customer Message" -msgstr "Kundemelding" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:105 -#@ woocommerce -msgid "Account Details" -msgstr "Kontodetaljer" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:111 -#@ woocommerce -msgid "Account Name" -msgstr "Kontonavn" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:112 -#: includes/gateways/bacs/class-wc-gateway-bacs.php:253 -#@ woocommerce -msgid "Account Number" -msgstr "Kontonummer" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:114 -#: includes/gateways/bacs/class-wc-gateway-bacs.php:257 -#@ woocommerce -msgid "Sort Code" -msgstr "Sorteringskode" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:113 -#@ woocommerce -msgid "Bank Name" -msgstr "Banknavn" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:115 -#: includes/gateways/bacs/class-wc-gateway-bacs.php:261 -#@ woocommerce -msgid "IBAN" -msgstr "IBAN" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:265 -#@ woocommerce -msgid "BIC" -msgstr "BIC" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:295 -#@ woocommerce -msgid "Awaiting BACS payment" -msgstr "Ventende BACS betaling" - -#: includes/gateways/cheque/class-wc-gateway-cheque.php:25 -#@ woocommerce -msgid "Cheque" -msgstr "Sjekk" - -#: includes/gateways/cheque/class-wc-gateway-cheque.php:54 -#@ woocommerce -msgid "Enable Cheque Payment" -msgstr "Aktiver betaling med sjekk" - -#: includes/gateways/cheque/class-wc-gateway-cheque.php:61 -#@ woocommerce -msgid "Cheque Payment" -msgstr "Sjekkbetaling" - -#: includes/gateways/cheque/class-wc-gateway-cheque.php:68 -#@ woocommerce -msgid "Please send your cheque to Store Name, Store Street, Store Town, Store State / County, Store Postcode." -msgstr "Vennligst send sjekken din til postadressen vår." - -#: includes/gateways/cheque/class-wc-gateway-cheque.php:26 -#@ woocommerce -msgid "Allows cheque payments. Why would you take cheques in this day and age? Well you probably wouldn't but it does allow you to make test purchases for testing order emails and the 'success' pages etc." -msgstr "Tillater betaling med sjekk. Hvorfor skal du tillate sjekk nå til dags? Vel, du ville sannsynligvis ikke, men det lar deg gjøre testkjøp for testing av ordreeposter og 'suksess'-sider osv." - -#: includes/gateways/cheque/class-wc-gateway-cheque.php:115 -#@ woocommerce -msgid "Awaiting cheque payment" -msgstr "Ventende sjekkbetaling" - -#: includes/gateways/cod/class-wc-gateway-cod.php:24 -#: includes/gateways/cod/class-wc-gateway-cod.php:67 -#@ woocommerce -msgid "Cash on Delivery" -msgstr "Kontant ved levering" - -#: includes/gateways/cod/class-wc-gateway-cod.php:25 -#@ woocommerce -msgid "Have your customers pay with cash (or by other means) upon delivery." -msgstr "La kundene dine betale kontakt (eller på annen måte) ved levering." - -#: includes/gateways/cod/class-wc-gateway-cod.php:57 -#@ woocommerce -msgid "Enable COD" -msgstr "Aktiver betaling ved levering" - -#: includes/gateways/cod/class-wc-gateway-cod.php:58 -#@ woocommerce -msgid "Enable Cash on Delivery" -msgstr "Aktiver betaling ved levering" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:76 -#: includes/gateways/bacs/class-wc-gateway-bacs.php:79 -#: includes/gateways/cheque/class-wc-gateway-cheque.php:65 -#: includes/gateways/cod/class-wc-gateway-cod.php:71 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:149 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:133 -#: includes/wc-template-functions.php:953 -#@ woocommerce -msgid "Description" -msgstr "Beskrivelse" - -#: includes/gateways/cod/class-wc-gateway-cod.php:73 -#@ woocommerce -msgid "Payment method description that the customer will see on your website." -msgstr "Beskrivelse av betalingsmetoden som kunden ser på websiden din." - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:86 -#: includes/gateways/cheque/class-wc-gateway-cheque.php:72 -#: includes/gateways/cod/class-wc-gateway-cod.php:78 -#@ woocommerce -msgid "Instructions" -msgstr "Instruksjoner" - -#: includes/gateways/cod/class-wc-gateway-cod.php:80 -#@ woocommerce -msgid "Instructions that will be added to the thank you page." -msgstr "Instruksjoner som blir vist på \"takk\"-siden" - -#: includes/gateways/cod/class-wc-gateway-cod.php:85 -#@ woocommerce -msgid "Enable for shipping methods" -msgstr "Aktiver for fraktmetoder" - -#: includes/gateways/cod/class-wc-gateway-cod.php:90 -#@ woocommerce -msgid "If COD is only available for certain methods, set it up here. Leave blank to enable for all methods." -msgstr "Hvis Kontant-ved-levering bare er tilgjengelig for visse metoder, sett det opp her. La stå tom for å aktivere for alle metoder." - -#: includes/gateways/cod/class-wc-gateway-cod.php:157 -#@ woocommerce -msgid "Payment to be made upon delivery." -msgstr "Betaling skjer ved levering." - -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:30 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:167 -#@ woocommerce -msgid "Mijireh Checkout" -msgstr "Mijireh Checkout" - -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:107 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:291 -#@ woocommerce -msgid "Mijireh error:" -msgstr "Mijireh-feil:" - -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:131 -#@ woocommerce -msgid "Enable Mijireh Checkout" -msgstr "Aktiver Mijireh Checkout" - -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:135 -#@ woocommerce -msgid "Access Key" -msgstr "Tilgangsnøkkel" - -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:137 -#@ woocommerce -msgid "The Mijireh access key for your store." -msgstr "Mijireh-tilgangsnøkkelen for butikken din." - -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:145 -#@ woocommerce -msgid "Credit Card" -msgstr "Kredittkort" - -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:152 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:135 -#@ woocommerce -msgid "This controls the description which the user sees during checkout." -msgstr "Dette styrer beskrivelsen kunden får i kassen." - -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:171 -#@ woocommerce -msgid "Get started with Mijireh Checkout" -msgstr "Kom igang med Mijireh Checkout" - -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:172 -#@ woocommerce -msgid "provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site. Mijireh supports a wide variety of payment gateways: Stripe, Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and more." -msgstr "tilbyr en PCI-kompatibel, sikker måte å samle inn og overføre kredittkortdata til din betalings-gateway, og samtidig lar deg ha styring på designet på websiden din. Mijireh støtter et stort antall betalings-gatewayer: Stripe, Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, og flere." - -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:174 -#@ woocommerce -msgid "Join for free" -msgstr "Bli medlem gratis" - -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:174 -#@ woocommerce -msgid "Learn more about WooCommerce and Mijireh" -msgstr "Les mer om WooCommerce og Mijireh" - -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:178 -#@ woocommerce -msgid "provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." -msgstr "tilbyr en PCI-kompatibel, sikker måte å samle inn og overføre kredittkortdata til din betalings-gateway, og samtidig lar deg ha styring på designet på websiden din." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:33 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:129 -#@ woocommerce -msgid "PayPal" -msgstr "PayPal" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:92 -#@ woocommerce -msgid "PayPal standard" -msgstr "PayPal standard" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:93 -#@ woocommerce -msgid "PayPal standard works by sending the user to PayPal to enter their payment information." -msgstr "PayPal standard fungerer slik at kunden sendes til PayPal for å oppgi sin betalingsinformajson." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:105 -#@ woocommerce -msgid "Gateway Disabled" -msgstr "Gateway deaktivert" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:105 -#@ woocommerce -msgid "PayPal does not support your store currency." -msgstr "PayPal støtter ikke din butikks valuta." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:122 -#@ woocommerce -msgid "Enable PayPal standard" -msgstr "Aktiver PayPal standard" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:136 -#@ woocommerce -msgid "Pay via PayPal; you can pay with your credit card if you don't have a PayPal account" -msgstr "Betal via PayPal; du kan betale med kredittkortet ditt hvis du ikke har paypal-konto" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:139 -#@ woocommerce -msgid "PayPal Email" -msgstr "PayPal epost" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:141 -#@ woocommerce -msgid "Please enter your PayPal email address; this is needed in order to take payment." -msgstr "Vennligst oppgi den epostadressen som du bruker for PayPal. Dette trengs for at du skal kunne betale." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:163 -#@ woocommerce -msgid "Invoice Prefix" -msgstr "Fakturaprefiks" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:181 -#@ woocommerce -msgid "Submission method" -msgstr "Innsendelsesmetode" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:183 -#@ woocommerce -msgid "Use form submission method." -msgstr "Bruk skjemainnsendelsesmetode." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:184 -#@ woocommerce -msgid "Enable this to post order data to PayPal via a form instead of using a redirect/querystring." -msgstr "Aktiver dette for å sende ordredata til PayPal via et skjema i stedentfor å benytte omdirigering/spørringsstreng." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:188 -#@ woocommerce -msgid "Page Style" -msgstr "Sidestil" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:190 -#@ woocommerce -msgid "Optionally enter the name of the page style you wish to use. These are defined within your PayPal account." -msgstr "Valgfritt å skrive inn navnet på sidestilen du ønsker å benytte. Disse er definert i PayPal-kontoen did." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:196 -#@ woocommerce -msgid "Shipping options" -msgstr "Fraktvalg" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:201 -#@ woocommerce -msgid "Shipping details" -msgstr "Fraktdetaljer" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:203 -#@ woocommerce -msgid "Send shipping details to PayPal instead of billing." -msgstr "Send detaljer om fraktadresse til PayPal i stedet for betalingsadresse." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:205 -#@ woocommerce -msgid "PayPal allows us to send 1 address. If you are using PayPal for shipping labels you may prefer to send the shipping address rather than billing." -msgstr "PayPal tillater oss å sende 1 adresse. Hvis du benytter PayPal for fraktetiketter, ønsker du muligens å sende fraktadressen istedenfor betalingsadressen." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:209 -#@ woocommerce -msgid "Address override" -msgstr "Adresse-overstyring" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:211 -#@ woocommerce -msgid "Enable \"address_override\" to prevent address information from being changed." -msgstr "Aktiver \"address_override\" for å hindre at adresseinformasjon blir endret." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:212 -#@ woocommerce -msgid "PayPal verifies addresses therefore this setting can cause errors (we recommend keeping it disabled)." -msgstr "PayPal verifiserer adresser, så denne innstillingen kan føre til feil (vi anbefaler å ha dette deaktivert)." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:216 -#@ woocommerce -msgid "Gateway Testing" -msgstr "Testing av gateway" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:221 -#@ woocommerce -msgid "PayPal sandbox" -msgstr "PayPal sandbox" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:223 -#@ woocommerce -msgid "Enable PayPal sandbox" -msgstr "Aktiver PayPal sandbox" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:225 -#, php-format -#@ woocommerce -msgid "PayPal sandbox can be used to test payments. Sign up for a developer account here." -msgstr "PayPal sandbox kan benyttes til testing av betalinger. Registrer deg for en utviklerkonto her." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:228 -#@ woocommerce -msgid "Debug Log" -msgstr "Debug-logg" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:230 -#@ woocommerce -msgid "Enable logging" -msgstr "Aktiver loggføring" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:340 -#, php-format -#@ woocommerce -msgid "Order %s" -msgstr "Ordre %s" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:349 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:403 -#@ woocommerce -msgid "Shipping via" -msgstr "Forsendelse via" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:442 -#@ woocommerce -msgid "Thank you for your order. We are now redirecting you to PayPal to make payment." -msgstr "Takk for din ordren din. Du sendes nå til PayPal betaling." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:467 -#@ woocommerce -msgid "Pay via PayPal" -msgstr "Betale via PayPal" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:467 -#@ woocommerce -msgid "Cancel order & restore cart" -msgstr "Avbryt ordre & tilbakestill handlekurv" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:662 -#, php-format -#@ woocommerce -msgid "Validation error: PayPal amounts do not match (gross %s)." -msgstr "Valideringsfeil: PayPal-beløp samsvarer ikke (brutto%s)." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:691 -#@ woocommerce -msgid "IPN payment completed" -msgstr "IPM-betaling fullført" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:706 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:714 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:731 -#, php-format -#@ woocommerce -msgid "Payment %s via IPN." -msgstr "Betaling %s via IPN." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:719 -#@ woocommerce -msgid "Order refunded/reversed" -msgstr "Ordre tilbakebetalt/reversert" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:720 -#, php-format -#@ woocommerce -msgid "Order %s has been marked as refunded - PayPal reason code: %s" -msgstr "Ordre %s har blitt merket som tilbakebetalt - PayPal årsakskode: %s" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:723 -#, php-format -#@ woocommerce -msgid "Payment for order %s refunded/reversed" -msgstr "Betaling for ordre %s tilbakebetalt/reversert" - -#: includes/admin/class-wc-admin-welcome.php:280 -#@ woocommerce -msgid "Google Analytics" -msgstr "Google Analytics" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:242 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:263 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:169 -#: includes/class-wc-ajax.php:1478 -#@ woocommerce -msgid "Guest" -msgstr "Gjest" - -#: templates/single-product/meta.php:20 -#@ woocommerce -msgid "SKU:" -msgstr "VE:" - -#: includes/admin/class-wc-admin-taxonomies.php:92 -#: includes/admin/class-wc-admin-taxonomies.php:181 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:97 -#: includes/admin/settings/class-wc-settings-products.php:25 -#: includes/admin/views/html-admin-page-addons.php:15 -#: includes/class-wc-post-types.php:240 -#: includes/widgets/class-wc-widget-products.php:27 -#@ woocommerce -msgid "Products" -msgstr "Produkter" - -#: includes/admin/class-wc-admin-welcome.php:290 -#@ woocommerce -msgid "ShareThis" -msgstr "ShareThis" - -#: includes/admin/class-wc-admin-welcome.php:300 -#@ woocommerce -msgid "ShareYourCart" -msgstr "ShareYourCart" - -#: includes/admin/class-wc-admin-help.php:38 -#@ woocommerce -msgid "Documentation" -msgstr "Dokumentasjon" - -#: includes/admin/views/html-admin-settings.php:20 -#: templates/myaccount/form-edit-account.php:41 -#@ woocommerce -msgid "Save changes" -msgstr "Lagre endringer" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:27 -#@ woocommerce -msgid "Flat rates let you define a standard rate per item, or per order." -msgstr "Fastpriser lar deg definere en standard fraktrate per produkt, eller per ordre." - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:77 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:51 -#@ woocommerce -msgid "Enable this shipping method" -msgstr "Aktiver denne fraktmetoden" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:81 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:70 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:55 -#@ woocommerce -msgid "Method Title" -msgstr "Metodetittel" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:25 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:84 -#@ woocommerce -msgid "Flat Rate" -msgstr "Fastpris" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:118 -#@ woocommerce -msgid "Cost per order" -msgstr "Kostnad per ordre" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:121 -#@ woocommerce -msgid "Enter a cost (excluding tax) per order, e.g. 5.00. Leave blank to disable." -msgstr "Skriv inn en kostnad (ekskl. skatt) per ordre. Eks. 5,00. La stå tom for å deaktivere." - -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:77 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:137 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:96 -#@ woocommerce -msgid "Method availability" -msgstr "Metodens tilgjengelighet" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:93 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:82 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:142 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:101 -#@ woocommerce -msgid "All allowed countries" -msgstr "Alle tillatte land" - -#: includes/admin/settings/class-wc-settings-general.php:76 -#: includes/admin/settings/class-wc-settings-shipping.php:147 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:94 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:98 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:83 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:87 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:143 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:147 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:102 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:106 -#@ woocommerce -msgid "Specific Countries" -msgstr "Spesifikke land" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:143 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:96 -#@ woocommerce -msgid "Per Order - charge shipping for the entire order as a whole" -msgstr "Per ordre - ta betalt for frakt for hele ordren" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:144 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:97 -#@ woocommerce -msgid "Per Item - charge shipping for each item individually" -msgstr "Per gjenstand - ta betalt for frakt på hver gjenstand individuellt" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:145 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:98 -#@ woocommerce -msgid "Per Class - charge shipping for each shipping class in an order" -msgstr "Per klasse - ta betalt for frakt for hver fraktklasse i en ordre" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:248 -#: includes/admin/views/html-bulk-edit-product.php:58 -#: includes/admin/views/html-quick-edit-product.php:38 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:109 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:83 -#@ woocommerce -msgid "Tax Status" -msgstr "Skattestatus" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:249 -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:34 -#: includes/admin/views/html-bulk-edit-product.php:64 -#: includes/admin/views/html-quick-edit-product.php:43 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:113 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:87 -#@ woocommerce -msgid "Taxable" -msgstr "Skattepliktig" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:251 -#: includes/admin/reports/class-wc-report-sales-by-category.php:167 -#: includes/admin/views/html-bulk-edit-product.php:66 -#: includes/admin/views/html-quick-edit-product.php:45 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:114 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:88 -#@ woocommerce -msgid "None" -msgstr "Ingen" - -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:105 -#@ woocommerce -msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -msgstr "Kostnad eks. skatt. Oppgi en verdi f.eks. 2,50." - -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:112 -#@ woocommerce -msgid "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. Leave blank to disable." -msgstr "Gebyr eks. skatt. Oppgi en verdi, f.eks. 35, eller prosentsats, f.eks. 5 %. La stå tom for å deaktivere." - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:155 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:120 -#@ woocommerce -msgid "Enter a minimum fee amount. Fee's less than this will be increased. Leave blank to disable." -msgstr "Skriv inn ett minimumsgebyr. Gebyrer lavere enn dette vil bli øket. La stå tom for å deaktivere." - -#: includes/admin/settings/class-wc-settings-shipping.php:41 -#: includes/admin/settings/class-wc-settings-shipping.php:67 -#@ woocommerce -msgid "Shipping Options" -msgstr "Fraktvalg" - -#: includes/class-wc-post-types.php:134 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:522 -#@ woocommerce -msgid "Shipping Class" -msgstr "Fraktklasse" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:523 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:102 -#@ woocommerce -msgid "Cost" -msgstr "Kostnad" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:523 -#@ woocommerce -msgid "Cost, excluding tax." -msgstr "Kostnad, eks. skatt." - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:524 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:110 -#@ woocommerce -msgid "Handling Fee" -msgstr "Håndteringsgebyr" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:524 -#@ woocommerce -msgid "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -msgstr "Gebyr eks. skatt. Oppgi en verdi, f.eks. 35, eller prosentsats, f.eks. 5 %" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:555 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:585 -#@ woocommerce -msgid "Select a class…" -msgstr "Velg en klasse…" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:599 -#@ woocommerce -msgid "Delete the selected rates?" -msgstr "Slett valgte skattesatser?" - -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:25 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:73 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:133 -#@ woocommerce -msgid "Free Shipping" -msgstr "Gratis frakt" - -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:66 -#@ woocommerce -msgid "Enable Free Shipping" -msgstr "Aktiver gratis frakt" - -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:98 -#@ woocommerce -msgid "Free Shipping Requires..." -msgstr "Gratis frakt krever..." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:232 -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:33 -#: includes/admin/post-types/meta-boxes/views/html-order-shipping.php:12 -#: includes/admin/post-types/meta-boxes/views/html-order-tax.php:8 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:536 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:537 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:102 -#: templates/order/order-details.php:122 -#: templates/order/order-details.php:137 -#@ woocommerce -msgid "N/A" -msgstr "I/A" - -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:103 -#@ woocommerce -msgid "A valid free shipping coupon" -msgstr "En gyldig gratis-frakt-kupong" - -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:104 -#@ woocommerce -msgid "A minimum order amount (defined below)" -msgstr "En minimums ordremengde (definer nedenfor)" - -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:105 -#@ woocommerce -msgid "A minimum order amount OR a coupon" -msgstr "Et minimums ordrebeløp ELLER en kupong" - -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:106 -#@ woocommerce -msgid "A minimum order amount AND a coupon" -msgstr "Et minimums ordrebeløp OG en kupong" - -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:110 -#@ woocommerce -msgid "Minimum Order Amount" -msgstr "Minste ordrebeløp" - -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:113 -#@ woocommerce -msgid "Users will need to spend this amount to get free shipping (if enabled above)." -msgstr "Brukere må bruke dette beløpet for å få gratis frakt (hvis aktivert ovenfor)." - -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:29 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:58 -#@ woocommerce -msgid "International Delivery" -msgstr "Internasjonal levering" - -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:30 -#@ woocommerce -msgid "International delivery based on flat rate shipping." -msgstr "Internasjonal levering basert på fastprisfrakt" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:88 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:62 -#@ woocommerce -msgid "Availability" -msgstr "Tilgjengelighet" - -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:67 -#@ woocommerce -msgid "Selected countries" -msgstr "Valgte land" - -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:68 -#@ woocommerce -msgid "Excluding selected countries" -msgstr "Utelater valgte land" - -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:72 -#@ woocommerce -msgid "Countries" -msgstr "Land" - -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:25 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:105 -#@ woocommerce -msgid "Local Delivery" -msgstr "Lokal levering" - -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:96 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:75 -#@ woocommerce -msgid "Enable" -msgstr "Aktiver" - -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:98 -#@ woocommerce -msgid "Enable local delivery" -msgstr "Aktiver lokal levering" - -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:109 -#@ woocommerce -msgid "Fee Type" -msgstr "Gebyrtype" - -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:111 -#@ woocommerce -msgid "How to calculate delivery charges" -msgstr "Hvordan fraktkostnader beregnes" - -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:114 -#@ woocommerce -msgid "Fixed amount" -msgstr "Fast beløp" - -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:115 -#@ woocommerce -msgid "Percentage of cart total" -msgstr "Prosent av handlekurvens total" - -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 -#@ woocommerce -msgid "Fixed amount per product" -msgstr "Fast beløp per produkt" - -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:121 -#@ woocommerce -msgid "Delivery Fee" -msgstr "Leveringsgebyr" - -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:123 -#@ woocommerce -msgid "What fee do you want to charge for local delivery, disregarded if you choose free. Leave blank to disable." -msgstr "Hvilket gebyr vil du ta for lokal levering; gjelder ikke hvis du har satt som gratis. La stå tom for å deaktivere." - -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:129 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:88 -#@ woocommerce -msgid "Zip/Post Codes" -msgstr "Zip/Postnummer" - -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:131 -#@ woocommerce -msgid "What zip/post codes would you like to offer delivery to? Separate codes with a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -msgstr "Til hvilke zip/postnummer vil du tilby levering? Skill nummer med komma. Godtar wildcards, f.eks P* vil matche et postnummer som PE30." - -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:169 -#@ woocommerce -msgid "Local delivery is a simple shipping method for delivering orders locally." -msgstr "Lokal levering er en enkel fraktmetode for å levere ordrer lokalt." - -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:25 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:84 -#@ woocommerce -msgid "Local Pickup" -msgstr "Hente selv" - -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:77 -#@ woocommerce -msgid "Enable local pickup" -msgstr "Aktiver lokal henting" - -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:128 -#@ woocommerce -msgid "Local pickup is a simple method which allows the customer to pick up their order themselves." -msgstr "Å hente selv er en fraktmetode som tillater kunden å hente pakken selv hos deg." - -#: includes/class-wc-coupon.php:648 -#@ woocommerce -msgid "Please enter a coupon code." -msgstr "Vennligst skriv inn kupongkode." - -#: includes/class-wc-checkout.php:495 -#: includes/class-wc-form-handler.php:92 -#: includes/shortcodes/class-wc-shortcode-cart.php:51 -#@ woocommerce -msgid "Please enter a valid postcode/ZIP." -msgstr "Vennligst oppgi gyldig postnummer/ZIP." - -#: includes/shortcodes/class-wc-shortcode-cart.php:66 -#@ woocommerce -msgid "Shipping costs updated." -msgstr "Fraktkostnader oppdatert." - -#: includes/shortcodes/class-wc-shortcode-checkout.php:230 -#@ woocommerce -msgid "The order totals have been updated. Please confirm your order by pressing the Place Order button at the bottom of the page." -msgstr "Ordrens totalbeløp er oppdatert. Bekreft ordren din ved å klikke på knappen \"Send\" lengst ned på siden." - -#: includes/class-wc-form-handler.php:749 -#@ woocommerce -msgid "Please enter your password." -msgstr "Vennligst skriv inn passordet ditt." - -#: includes/class-wc-form-handler.php:770 -#@ woocommerce -msgid "Your password has been reset." -msgstr "Passordet ditt har blitt tilbakestilt." - -#: includes/class-wc-form-handler.php:770 -#@ woocommerce -msgid "Log in" -msgstr "Logg inn" - -#: includes/shortcodes/class-wc-shortcode-my-account.php:231 -#@ woocommerce -msgid "Enter a username or e-mail address." -msgstr "Skriv inn et brukernavn eller epostadresse." - -#: includes/shortcodes/class-wc-shortcode-my-account.php:238 -#@ woocommerce -msgid "There is no user registered with that email address." -msgstr "Det finnes ingen bruker registrert med den epostadressen." - -#: includes/shortcodes/class-wc-shortcode-my-account.php:253 -#@ woocommerce -msgid "Invalid username or e-mail." -msgstr "Ugyldig brukernavn eller epostadresse" - -#: includes/shortcodes/class-wc-shortcode-my-account.php:267 -#@ default -msgid "Password reset is not allowed for this user" -msgstr "Tilbakestilling av passord ikke tillat for denne brukeren" - -#: includes/shortcodes/class-wc-shortcode-my-account.php:295 -#@ default -msgid "Check your e-mail for the confirmation link." -msgstr "Sjekk eposten din for bekreftelseslenke." - -#: includes/shortcodes/class-wc-shortcode-my-account.php:315 -#: includes/shortcodes/class-wc-shortcode-my-account.php:320 -#: includes/shortcodes/class-wc-shortcode-my-account.php:327 -#@ woocommerce -msgid "Invalid key" -msgstr "Ugyldig nøkkel" - -#: includes/shortcodes/class-wc-shortcode-order-tracking.php:49 -#@ woocommerce -msgid "Please enter a valid order ID" -msgstr "Vennligst skriv inn gyldig ordre-ID" - -#: includes/shortcodes/class-wc-shortcode-order-tracking.php:53 -#@ woocommerce -msgid "Please enter a valid order email" -msgstr "Vennligst skriv inn gyldig ordreepost." - -#: includes/shortcodes/class-wc-shortcode-order-tracking.php:72 -#@ woocommerce -msgid "Sorry, we could not find that order id in our database." -msgstr "Beklager, men vi kunne ikke finne den ordre-ID'en i vår database." - -#: includes/class-wc-download-handler.php:87 -#: includes/class-wc-form-handler.php:475 -#: includes/shortcodes/class-wc-shortcode-checkout.php:86 -#: includes/shortcodes/class-wc-shortcode-checkout.php:167 -#: includes/shortcodes/class-wc-shortcode-my-account.php:106 -#: includes/shortcodes/class-wc-shortcode-view-order.php:49 -#@ woocommerce -msgid "Invalid order." -msgstr "Ugyldig ordre." - -#: includes/shortcodes/class-wc-shortcode-checkout.php:129 -#: templates/checkout/thankyou.php:40 -#: templates/emails/customer-completed-order.php:18 -#: templates/emails/customer-invoice.php:22 -#: templates/emails/customer-note.php:22 -#: templates/emails/customer-processing-order.php:18 -#@ woocommerce -msgid "Order:" -msgstr "Ordre:" - -#: includes/shortcodes/class-wc-shortcode-checkout.php:133 -#: templates/checkout/thankyou.php:44 -#@ woocommerce -msgid "Date:" -msgstr "Dato:" - -#: includes/shortcodes/class-wc-shortcode-checkout.php:137 -#: templates/checkout/thankyou.php:48 -#@ woocommerce -msgid "Total:" -msgstr "Totalt:" - -#: includes/shortcodes/class-wc-shortcode-checkout.php:142 -#: templates/checkout/thankyou.php:53 -#@ woocommerce -msgid "Payment method:" -msgstr "Betalingsmetode:" - -#: includes/shortcodes/class-wc-shortcode-my-account.php:106 -#@ woocommerce -msgid "My Account →" -msgstr "Min konto →" - -#: includes/shortcodes/class-wc-shortcode-my-account.php:116 -#: templates/myaccount/view-order.php:17 -#: templates/order/tracking.php:31 -#@ woocommerce -msgid "Order Updates" -msgstr "Ordreoppdateringer" - -#: includes/widgets/class-wc-widget-products.php:71 -#@ woocommerce -msgid "Hide free products" -msgstr "Skjul gratis produkter" - -#: includes/widgets/class-wc-widget-cart.php:23 -#@ woocommerce -msgid "Display the user's Cart in the sidebar." -msgstr "Vis brukerens handlekurv i sidebar." - -#: includes/widgets/class-wc-widget-cart.php:25 -#@ woocommerce -msgid "WooCommerce Cart" -msgstr "WooCommerce handlekurv" - -#: includes/widgets/class-wc-widget-cart.php:35 -#@ woocommerce -msgid "Hide if cart is empty" -msgstr "Skjul dersom handlekurven er tom" - -#: includes/widgets/class-wc-widget-products.php:44 -#@ woocommerce -msgid "Featured Products" -msgstr "Fremhevede produkter" - -#: includes/widgets/class-wc-widget-layered-nav-filters.php:21 -#@ woocommerce -msgid "Shows active layered nav filters so users can see and deactivate them." -msgstr "Viser aktive lagdelte navfiltre slik at brukere kan se og deaktivere dem." - -#: includes/widgets/class-wc-widget-layered-nav-filters.php:23 -#@ woocommerce -msgid "WooCommerce Layered Nav Filters" -msgstr "WooCommerce lagvis navigeringsfilter" - -#: includes/widgets/class-wc-widget-layered-nav-filters.php:84 -#: includes/widgets/class-wc-widget-layered-nav-filters.php:91 -#: includes/widgets/class-wc-widget-layered-nav-filters.php:96 -#@ woocommerce -msgid "Remove filter" -msgstr "Fjern filter" - -#: includes/widgets/class-wc-widget-layered-nav-filters.php:91 -#@ woocommerce -msgid "Min" -msgstr "Min" - -#: includes/widgets/class-wc-widget-layered-nav-filters.php:96 -#@ woocommerce -msgid "Max" -msgstr "Maks" - -#: includes/widgets/class-wc-widget-layered-nav.php:21 -#@ woocommerce -msgid "Shows a custom attribute in a widget which lets you narrow down the list of products when viewing product categories." -msgstr "Vis en tipasset attributt i en widget som lar deg begrense listen av produkter ved visning av produktkategorier." - -#: includes/widgets/class-wc-widget-layered-nav.php:23 -#@ woocommerce -msgid "WooCommerce Layered Nav" -msgstr "WooCommerce lagvis navigering" - -#: includes/widgets/class-wc-widget-layered-nav.php:174 -#, php-format -#@ woocommerce -msgid "Any %s" -msgstr "Enhver %s" - -#: includes/widgets/class-wc-widget-layered-nav.php:83 -#@ woocommerce -msgid "List" -msgstr "Liste" - -#: includes/widgets/class-wc-widget-layered-nav.php:84 -#@ woocommerce -msgid "Dropdown" -msgstr "Rullegardin" - -#: includes/widgets/class-wc-widget-layered-nav.php:92 -#@ woocommerce -msgid "AND" -msgstr "OG" - -#: includes/widgets/class-wc-widget-layered-nav.php:93 -#@ woocommerce -msgid "OR" -msgstr "ELLER" - -#: includes/admin/settings/class-wc-settings-accounts.php:95 -#@ woocommerce -msgid "Logout" -msgstr "Logg ut" - -#: templates/myaccount/form-lost-password.php:24 -#: templates/shop/form-login.php:22 -#@ woocommerce -msgid "Username or email" -msgstr "Brukernavn eller epost" - -#: templates/myaccount/form-login.php:36 -#: templates/myaccount/form-login.php:84 -#: templates/shop/form-login.php:26 -#@ woocommerce -msgid "Password" -msgstr "Passord" - -#: includes/class-wc-download-handler.php:73 -#@ woocommerce -msgid "Login →" -msgstr "Logg inn →" - -#: includes/widgets/class-wc-widget-price-filter.php:23 -#@ woocommerce -msgid "Shows a price filter slider in a widget which lets you narrow down the list of shown products when viewing product categories." -msgstr "Vis en slider for prisfilter i en widget som lar deg begrense listen av viste produkter ved visning av produktkategorier." - -#: includes/widgets/class-wc-widget-price-filter.php:25 -#@ woocommerce -msgid "WooCommerce Price Filter" -msgstr "WooCommerce Prisfilter" - -#: includes/widgets/class-wc-widget-price-filter.php:135 -#@ woocommerce -msgid "Min price" -msgstr "Min. pris" - -#: includes/widgets/class-wc-widget-price-filter.php:136 -#@ woocommerce -msgid "Max price" -msgstr "Makspris" - -#: includes/widgets/class-wc-widget-price-filter.php:137 -#@ woocommerce -msgid "Filter" -msgstr "Filtrer" - -#: includes/widgets/class-wc-widget-price-filter.php:139 -#@ woocommerce -msgid "Price:" -msgstr "Pris:" - -#: includes/widgets/class-wc-widget-price-filter.php:29 -#@ woocommerce -msgid "Filter by price" -msgstr "Filtrer på pris" - -#: includes/widgets/class-wc-widget-product-categories.php:24 -#@ woocommerce -msgid "A list or dropdown of product categories." -msgstr "En liste eller en rullegardin med produktkategorier" - -#: includes/widgets/class-wc-widget-product-categories.php:26 -#@ woocommerce -msgid "WooCommerce Product Categories" -msgstr "WooCommerce produktkategorier" - -#: includes/class-wc-post-types.php:62 -#: includes/class-wc-post-types.php:64 -#: includes/widgets/class-wc-widget-product-categories.php:30 -#@ woocommerce -msgid "Product Categories" -msgstr "Produktkategorier" - -#: includes/widgets/class-wc-widget-product-categories.php:156 -#@ woocommerce -msgid "No product categories exist." -msgstr "Ingen produktkategorier finnes." - -#: includes/widgets/class-wc-widget-product-categories.php:38 -#@ woocommerce -msgid "Category Order" -msgstr "Kategorisortering" - -#: includes/admin/class-wc-admin-assets.php:140 -#: includes/admin/class-wc-admin-attributes.php:239 -#: includes/admin/class-wc-admin-attributes.php:275 -#: includes/admin/class-wc-admin-attributes.php:307 -#: includes/admin/class-wc-admin-attributes.php:330 -#: includes/admin/class-wc-admin-attributes.php:374 -#: includes/admin/class-wc-admin-attributes.php:399 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:193 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:185 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:438 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:532 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:147 -#: includes/admin/settings/class-wc-settings-shipping.php:203 -#: includes/class-wc-ajax.php:1115 -#: includes/widgets/class-wc-widget-product-categories.php:39 -#: templates/single-product-reviews.php:59 -#@ woocommerce -msgid "Name" -msgstr "Navn" - -#: includes/widgets/class-wc-widget-product-categories.php:45 -#@ woocommerce -msgid "Show as dropdown" -msgstr "Vis som rullegardin" - -#: includes/widgets/class-wc-widget-product-categories.php:50 -#@ woocommerce -msgid "Show post counts" -msgstr "Vis antall innlegg" - -#: includes/widgets/class-wc-widget-product-categories.php:55 -#@ woocommerce -msgid "Show hierarchy" -msgstr "Vis hierarki" - -#: includes/widgets/class-wc-widget-product-categories.php:60 -#@ woocommerce -msgid "Only show children for the current category" -msgstr "Vis kun underkategorier av nåværende kategori" - -#: includes/widgets/class-wc-widget-product-search.php:21 -#@ woocommerce -msgid "A Search box for products only." -msgstr "En søkeboks kun for produkter." - -#: includes/widgets/class-wc-widget-product-search.php:23 -#@ woocommerce -msgid "WooCommerce Product Search" -msgstr "WooCommerce produktsøk" - -#: includes/widgets/class-wc-widget-product-tag-cloud.php:21 -#@ woocommerce -msgid "Your most used product tags in cloud format." -msgstr "Dine mest brukte produktstikkord i sky-format." - -#: includes/widgets/class-wc-widget-product-tag-cloud.php:23 -#@ woocommerce -msgid "WooCommerce Product Tags" -msgstr "WooCommerce produktstikkord" - -#: includes/class-wc-post-types.php:97 -#: includes/class-wc-post-types.php:99 -#: includes/widgets/class-wc-widget-product-tag-cloud.php:27 -#@ woocommerce -msgid "Product Tags" -msgstr "Produktstikkord" - -#: includes/widgets/class-wc-widget-recent-reviews.php:21 -#@ woocommerce -msgid "Display a list of your most recent reviews on your site." -msgstr "Vis en liste over de seneste anmeldelsene på nettstedet ditt." - -#: includes/admin/class-wc-admin-dashboard.php:34 -#: includes/widgets/class-wc-widget-recent-reviews.php:23 -#@ woocommerce -msgid "WooCommerce Recent Reviews" -msgstr "WooCommerce seneste anmeldelser" - -#: includes/widgets/class-wc-widget-recent-reviews.php:27 -#@ woocommerce -msgid "Recent Reviews" -msgstr "Nylige anmeldelser" - -#: templates/single-product/review.php:26 -#, php-format -#@ woocommerce -msgid "Rated %d out of 5" -msgstr "Rangert %d av 5" - -#: includes/widgets/class-wc-widget-recent-reviews.php:85 -#, php-format -#@ woocommerce -msgctxt "by comment author" -msgid "by %1$s" -msgstr "av %1$s" - -#: includes/widgets/class-wc-widget-recently-viewed.php:21 -#@ woocommerce -msgid "Display a list of recently viewed products." -msgstr "Vis en liste over nylig viste produkter." - -#: includes/widgets/class-wc-widget-top-rated-products.php:25 -#@ woocommerce -msgid "WooCommerce Top Rated Products" -msgstr "WooCommerce produkter med høyest rangering" - -#: includes/widgets/class-wc-widget-top-rated-products.php:29 -#@ woocommerce -msgid "Top Rated Products" -msgstr "Topprangerte produkter" - -#: i18n/states/AU.php:13 -#@ woocommerce -msgid "Australian Capital Territory" -msgstr "Australian Capital Territory" - -#: i18n/states/AU.php:14 -#@ woocommerce -msgid "New South Wales" -msgstr "New South Wales" - -#: i18n/states/AU.php:15 -#@ woocommerce -msgid "Northern Territory" -msgstr "Northern Territory" - -#: i18n/states/AU.php:16 -#@ woocommerce -msgid "Queensland" -msgstr "Queensland" - -#: i18n/states/AU.php:17 -#@ woocommerce -msgid "South Australia" -msgstr "Sør Australia" - -#: i18n/states/AU.php:18 -#@ woocommerce -msgid "Tasmania" -msgstr "Tasmania" - -#: i18n/states/AU.php:19 -#@ woocommerce -msgid "Victoria" -msgstr "Victoria" - -#: i18n/states/AU.php:20 -#@ woocommerce -msgid "Western Australia" -msgstr "Vest Australia" - -#: i18n/states/BR.php:13 -#@ woocommerce -msgid "Acre" -msgstr "Acre" - -#: i18n/states/BR.php:14 -#@ woocommerce -msgid "Alagoas" -msgstr "Alagoas" - -#: i18n/states/BR.php:15 -#@ woocommerce -msgid "Amapá" -msgstr "Amapá" - -#: i18n/states/BR.php:16 -#@ woocommerce -msgid "Amazonas" -msgstr "Amazonas" - -#: i18n/states/BR.php:17 -#@ woocommerce -msgid "Bahia" -msgstr "Bahia" - -#: i18n/states/BR.php:18 -#@ woocommerce -msgid "Ceará" -msgstr "Ceará" - -#: i18n/states/BR.php:19 -#@ woocommerce -msgid "Distrito Federal" -msgstr "Distrito Federal (Føderale distrikt)" - -#: i18n/states/BR.php:20 -#@ woocommerce -msgid "Espírito Santo" -msgstr "Espírito Santo" - -#: i18n/states/BR.php:21 -#@ woocommerce -msgid "Goiás" -msgstr "Goiás" - -#: i18n/states/BR.php:22 -#@ woocommerce -msgid "Maranhão" -msgstr "Maranhão" - -#: i18n/states/BR.php:23 -#@ woocommerce -msgid "Mato Grosso" -msgstr "Mato Grosso" - -#: i18n/states/BR.php:24 -#@ woocommerce -msgid "Mato Grosso do Sul" -msgstr "Mata Grosso sør" - -#: i18n/states/BR.php:25 -#@ woocommerce -msgid "Minas Gerais" -msgstr "Minas Gerais" - -#: i18n/states/BR.php:26 -#@ woocommerce -msgid "Pará" -msgstr "Pará" - -#: i18n/states/BR.php:27 -#@ woocommerce -msgid "Paraíba" -msgstr "Paraíba" - -#: i18n/states/BR.php:28 -#@ woocommerce -msgid "Paraná" -msgstr "Paraná" - -#: i18n/states/BR.php:29 -#@ woocommerce -msgid "Pernambuco" -msgstr "Pernambuco" - -#: i18n/states/BR.php:30 -#@ woocommerce -msgid "Piauí" -msgstr "Piauí" - -#: i18n/states/BR.php:31 -#@ woocommerce -msgid "Rio de Janeiro" -msgstr "Rio de Janeiro" - -#: i18n/states/BR.php:32 -#@ woocommerce -msgid "Rio Grande do Norte" -msgstr "Rio Grande Nord" - -#: i18n/states/BR.php:33 -#@ woocommerce -msgid "Rio Grande do Sul" -msgstr "Rio Grande Sør" - -#: i18n/states/BR.php:34 -#@ woocommerce -msgid "Rondônia" -msgstr "Rondônia" - -#: i18n/states/BR.php:35 -#@ woocommerce -msgid "Roraima" -msgstr "Roraima" - -#: i18n/states/BR.php:36 -#@ woocommerce -msgid "Santa Catarina" -msgstr "Santa Catarina" - -#: i18n/states/BR.php:37 -#@ woocommerce -msgid "São Paulo" -msgstr "São Paulo" - -#: i18n/states/BR.php:38 -#@ woocommerce -msgid "Sergipe" -msgstr "Sergipe" - -#: i18n/states/BR.php:39 -#@ woocommerce -msgid "Tocantins" -msgstr "Tocantins" - -#: i18n/states/CA.php:13 -#@ woocommerce -msgid "Alberta" -msgstr "Alberta" - -#: i18n/states/CA.php:14 -#@ woocommerce -msgid "British Columbia" -msgstr "Britisk Columbia" - -#: i18n/states/CA.php:15 -#@ woocommerce -msgid "Manitoba" -msgstr "Manitoba" - -#: i18n/states/CA.php:16 -#@ woocommerce -msgid "New Brunswick" -msgstr "New Brunswick" - -#: i18n/states/CA.php:17 -#@ woocommerce -msgid "Newfoundland" -msgstr "Newfoundland" - -#: i18n/states/CA.php:18 -#@ woocommerce -msgid "Northwest Territories" -msgstr "Northwest Territories" - -#: i18n/states/CA.php:19 -#@ woocommerce -msgid "Nova Scotia" -msgstr "Nova Scotia" - -#: i18n/states/CA.php:20 -#@ woocommerce -msgid "Nunavut" -msgstr "Nunavut" - -#: i18n/states/CA.php:21 -#@ woocommerce -msgid "Ontario" -msgstr "Ontario" - -#: i18n/states/CA.php:22 -#@ woocommerce -msgid "Prince Edward Island" -msgstr "Prince Edward Island" - -#: i18n/states/CA.php:23 -#@ woocommerce -msgid "Quebec" -msgstr "Quebec" - -#: i18n/states/CA.php:24 -#@ woocommerce -msgid "Saskatchewan" -msgstr "Saskatchewan" - -#: i18n/states/CA.php:25 -#@ woocommerce -msgid "Yukon Territory" -msgstr "Yukon Territory" - -#: i18n/states/CN.php:13 -#@ woocommerce -msgid "Yunnan / 云南" -msgstr "Yunnan / 云南" - -#: i18n/states/CN.php:14 -#@ woocommerce -msgid "Beijing / 北京" -msgstr "Beijing / 北京" - -#: i18n/states/CN.php:15 -#@ woocommerce -msgid "Tianjin / 天津" -msgstr "Tianjin / 天津" - -#: i18n/states/CN.php:16 -#@ woocommerce -msgid "Hebei / 河北" -msgstr "Hebei / 河北" - -#: i18n/states/CN.php:17 -#@ woocommerce -msgid "Shanxi / 山西" -msgstr "Shanxi / 山西" - -#: i18n/states/CN.php:18 -#@ woocommerce -msgid "Inner Mongolia / 內蒙古" -msgstr "Indre Mongolia / 內蒙古" - -#: i18n/states/CN.php:19 -#@ woocommerce -msgid "Liaoning / 辽宁" -msgstr "Liaoning / 辽宁" - -#: i18n/states/CN.php:20 -#@ woocommerce -msgid "Jilin / 吉林" -msgstr "Jilin / 吉林" - -#: i18n/states/CN.php:21 -#@ woocommerce -msgid "Heilongjiang / 黑龙江" -msgstr "Heilongjiang / 黑龙江" - -#: i18n/states/CN.php:22 -#@ woocommerce -msgid "Shanghai / 上海" -msgstr "Shanghai / 上海" - -#: i18n/states/CN.php:23 -#@ woocommerce -msgid "Jiangsu / 江苏" -msgstr "Jiangsu / 江苏" - -#: i18n/states/CN.php:24 -#@ woocommerce -msgid "Zhejiang / 浙江" -msgstr "Zhejiang / 浙江" - -#: i18n/states/CN.php:25 -#@ woocommerce -msgid "Anhui / 安徽" -msgstr "Anhui / 安徽" - -#: i18n/states/CN.php:26 -#@ woocommerce -msgid "Fujian / 福建" -msgstr "Fujian / 福建" - -#: i18n/states/CN.php:27 -#@ woocommerce -msgid "Jiangxi / 江西" -msgstr "Jiangxi / 江西" - -#: i18n/states/CN.php:28 -#@ woocommerce -msgid "Shandong / 山东" -msgstr "Shandong / 山东" - -#: i18n/states/CN.php:29 -#@ woocommerce -msgid "Henan / 河南" -msgstr "Henan / 河南" - -#: i18n/states/CN.php:30 -#@ woocommerce -msgid "Hubei / 湖北" -msgstr "Hubei / 湖北" - -#: i18n/states/CN.php:31 -#@ woocommerce -msgid "Hunan / 湖南" -msgstr "Hunan / 湖南" - -#: i18n/states/CN.php:32 -#@ woocommerce -msgid "Guangdong / 广东" -msgstr "Guangdong / 广东" - -#: i18n/states/CN.php:33 -#@ woocommerce -msgid "Guangxi Zhuang / 广西壮族" -msgstr "Guangxi Zhuang / 广西壮族" - -#: i18n/states/CN.php:34 -#@ woocommerce -msgid "Hainan / 海南" -msgstr "Hainan / 海南" - -#: i18n/states/CN.php:35 -#@ woocommerce -msgid "Chongqing / 重庆" -msgstr "Chongqing / 重庆" - -#: i18n/states/CN.php:36 -#@ woocommerce -msgid "Sichuan / 四川" -msgstr "Sichuan / 四川" - -#: i18n/states/CN.php:37 -#@ woocommerce -msgid "Guizhou / 贵州" -msgstr "Guizhou / 贵州" - -#: i18n/states/CN.php:38 -#@ woocommerce -msgid "Shaanxi / 陕西" -msgstr "Shaanxi / 陕西" - -#: i18n/states/CN.php:39 -#@ woocommerce -msgid "Gansu / 甘肃" -msgstr "Gansu / 甘肃" - -#: i18n/states/CN.php:40 -#@ woocommerce -msgid "Qinghai / 青海" -msgstr "Qinghai / 青海" - -#: i18n/states/CN.php:41 -#@ woocommerce -msgid "Ningxia Hui / 宁夏" -msgstr "Ningxia Hui / 宁夏" - -#: i18n/states/CN.php:42 -#@ woocommerce -msgid "Macau / 澳门" -msgstr "Macau / 澳门" - -#: i18n/states/CN.php:43 -#@ woocommerce -msgid "Tibet / 西藏" -msgstr "Tibet / 西藏" - -#: i18n/states/CN.php:44 -#@ woocommerce -msgid "Xinjiang / 新疆" -msgstr "Xinjiang / 新疆" - -#: i18n/states/HK.php:13 -#@ woocommerce -msgid "Hong Kong Island" -msgstr "Hong Kong-Øya" - -#: i18n/states/HK.php:14 -#@ woocommerce -msgid "Kowloon" -msgstr "Kowloon" - -#: i18n/states/HK.php:15 -#@ woocommerce -msgid "New Territories" -msgstr "New Territories" - -#: i18n/states/HZ.php:13 -#: i18n/states/NZ.php:14 -#@ woocommerce -msgid "Auckland" -msgstr "Auckland" - -#: i18n/states/HZ.php:14 -#: i18n/states/NZ.php:16 -#@ woocommerce -msgid "Bay of Plenty" -msgstr "Bay of Plenty" - -#: i18n/states/HZ.php:15 -#: i18n/states/NZ.php:25 -#@ woocommerce -msgid "Canterbury" -msgstr "Canterbury" - -#: i18n/states/HZ.php:16 -#: i18n/states/NZ.php:18 -#@ woocommerce -msgid "Hawke’s Bay" -msgstr "Hawke’s Bay" - -#: i18n/states/HZ.php:17 -#: i18n/states/NZ.php:19 -#@ woocommerce -msgid "Manawatu-Wanganui" -msgstr "Manawatu-Wanganui" - -#: i18n/states/HZ.php:18 -#: i18n/states/NZ.php:22 -#@ woocommerce -msgid "Marlborough" -msgstr "Marlborough" - -#: i18n/states/HZ.php:19 -#: i18n/states/NZ.php:21 -#@ woocommerce -msgid "Nelson" -msgstr "Nelson" - -#: i18n/states/HZ.php:20 -#: i18n/states/NZ.php:13 -#@ woocommerce -msgid "Northland" -msgstr "Northland" - -#: i18n/states/HZ.php:21 -#: i18n/states/NZ.php:26 -#@ woocommerce -msgid "Otago" -msgstr "Otago" - -#: i18n/states/HZ.php:22 -#: i18n/states/NZ.php:27 -#@ woocommerce -msgid "Southland" -msgstr "Southland" - -#: i18n/states/HZ.php:23 -#: i18n/states/NZ.php:17 -#@ woocommerce -msgid "Taranaki" -msgstr "Taranaki" - -#: i18n/states/HZ.php:24 -#: i18n/states/NZ.php:23 -#@ woocommerce -msgid "Tasman" -msgstr "Tasman" - -#: i18n/states/HZ.php:25 -#: i18n/states/NZ.php:15 -#@ woocommerce -msgid "Waikato" -msgstr "Waikato" - -#: i18n/states/HZ.php:26 -#: i18n/states/NZ.php:20 -#@ woocommerce -msgid "Wellington" -msgstr "Wellington" - -#: i18n/states/HZ.php:27 -#: i18n/states/NZ.php:24 -#@ woocommerce -msgid "West Coast" -msgstr "West Coast" - -#: i18n/states/IN.php:13 -#@ woocommerce -msgid "Andra Pradesh" -msgstr "Andra Pradesh" - -#: i18n/states/IN.php:14 -#@ woocommerce -msgid "Arunachal Pradesh" -msgstr "Arunachal Pradesh" - -#: i18n/states/IN.php:15 -#@ woocommerce -msgid "Assam" -msgstr "Assam" - -#: i18n/states/IN.php:16 -#@ woocommerce -msgid "Bihar" -msgstr "Bihar" - -#: i18n/states/IN.php:17 -#@ woocommerce -msgid "Chhattisgarh" -msgstr "Chhattisgarh" - -#: i18n/states/IN.php:18 -#@ woocommerce -msgid "Goa" -msgstr "Goa" - -#: i18n/states/IN.php:19 -#@ woocommerce -msgid "Gujarat" -msgstr "Gujarat" - -#: i18n/states/IN.php:20 -#@ woocommerce -msgid "Haryana" -msgstr "Haryana" - -#: i18n/states/IN.php:21 -#@ woocommerce -msgid "Himachal Pradesh" -msgstr "Himachal Pradesh" - -#: i18n/states/IN.php:22 -#@ woocommerce -msgid "Jammu and Kashmir" -msgstr "Jammu og Kashmir" - -#: i18n/states/IN.php:23 -#@ woocommerce -msgid "Jharkhand" -msgstr "Jharkhand" - -#: i18n/states/IN.php:24 -#@ woocommerce -msgid "Karnataka" -msgstr "Karnataka" - -#: i18n/states/IN.php:25 -#@ woocommerce -msgid "Kerala" -msgstr "Kerala" - -#: i18n/states/IN.php:26 -#@ woocommerce -msgid "Madhya Pradesh" -msgstr "Madhya Pradesh" - -#: i18n/states/IN.php:27 -#@ woocommerce -msgid "Maharashtra" -msgstr "Maharashtra" - -#: i18n/states/IN.php:28 -#@ woocommerce -msgid "Manipur" -msgstr "Manipur" - -#: i18n/states/IN.php:29 -#@ woocommerce -msgid "Meghalaya" -msgstr "Meghalaya" - -#: i18n/states/IN.php:30 -#@ woocommerce -msgid "Mizoram" -msgstr "Mizoram" - -#: i18n/states/IN.php:31 -#@ woocommerce -msgid "Nagaland" -msgstr "Nagaland" - -#: i18n/states/IN.php:32 -#@ woocommerce -msgid "Orissa" -msgstr "Orissa" - -#: i18n/states/IN.php:33 -#@ woocommerce -msgid "Punjab" -msgstr "Punjab" - -#: i18n/states/IN.php:34 -#@ woocommerce -msgid "Rajasthan" -msgstr "Rajasthan" - -#: i18n/states/IN.php:35 -#@ woocommerce -msgid "Sikkim" -msgstr "Sikkim" - -#: i18n/states/IN.php:36 -#@ woocommerce -msgid "Tamil Nadu" -msgstr "Tamil Nadu" - -#: i18n/states/IN.php:37 -#@ woocommerce -msgid "Tripura" -msgstr "Tripura" - -#: i18n/states/IN.php:38 -#@ woocommerce -msgid "Uttaranchal" -msgstr "Uttaranchal" - -#: i18n/states/IN.php:39 -#@ woocommerce -msgid "Uttar Pradesh" -msgstr "Uttar Pradesh" - -#: i18n/states/IN.php:40 -#@ woocommerce -msgid "West Bengal" -msgstr "Vest-Bengal" - -#: i18n/states/IN.php:41 -#@ woocommerce -msgid "Andaman and Nicobar Islands" -msgstr "Andaman og Nicobarøyene" - -#: i18n/states/IN.php:42 -#@ woocommerce -msgid "Chandigarh" -msgstr "Chandigarh" - -#: i18n/states/IN.php:43 -#@ woocommerce -msgid "Dadar and Nagar Haveli" -msgstr "Dadar og Nagar Haveli" - -#: i18n/states/IN.php:44 -#@ woocommerce -msgid "Daman and Diu" -msgstr "Daman og Diu" - -#: i18n/states/IN.php:45 -#@ woocommerce -msgid "Delhi" -msgstr "Delhi" - -#: i18n/states/IN.php:46 -#@ woocommerce -msgid "Lakshadeep" -msgstr "Lakshadeep" - -#: i18n/states/IN.php:47 -#@ woocommerce -msgid "Pondicherry (Puducherry)" -msgstr "Pondicherry (Puducherry)" - -#: i18n/states/MY.php:13 -#@ woocommerce -msgid "Johor" -msgstr "Johor" - -#: i18n/states/MY.php:14 -#@ woocommerce -msgid "Kedah" -msgstr "Kedah" - -#: i18n/states/MY.php:15 -#@ woocommerce -msgid "Kelantan" -msgstr "Kelantan" - -#: i18n/states/MY.php:16 -#@ woocommerce -msgid "Melaka" -msgstr "Melaka" - -#: i18n/states/MY.php:17 -#@ woocommerce -msgid "Negeri Sembilan" -msgstr "Negeri Sembilan" - -#: i18n/states/MY.php:18 -#@ woocommerce -msgid "Pahang" -msgstr "Pahang" - -#: i18n/states/MY.php:19 -#@ woocommerce -msgid "Perak" -msgstr "Perak" - -#: i18n/states/MY.php:20 -#@ woocommerce -msgid "Perlis" -msgstr "Perlis" - -#: i18n/states/MY.php:21 -#@ woocommerce -msgid "Pulau Pinang" -msgstr "Pulau Pinang" - -#: i18n/states/MY.php:22 -#@ woocommerce -msgid "Sabah" -msgstr "Sabah" - -#: i18n/states/MY.php:23 -#@ woocommerce -msgid "Sarawak" -msgstr "Sarawak" - -#: i18n/states/MY.php:24 -#@ woocommerce -msgid "Selangor" -msgstr "Selangor" - -#: i18n/states/MY.php:25 -#@ woocommerce -msgid "Terengganu" -msgstr "Terengganu" - -#: i18n/states/MY.php:26 -#@ woocommerce -msgid "W.P. Kuala Lumpur" -msgstr "W.P. Kuala Lumpur" - -#: i18n/states/MY.php:27 -#@ woocommerce -msgid "W.P. Labuan" -msgstr "W.P. Labuan" - -#: i18n/states/MY.php:28 -#@ woocommerce -msgid "W.P. Putrajaya" -msgstr "W.P. Putrajaya" - -#: i18n/states/TH.php:13 -#@ woocommerce -msgid "Amnat Charoen (อำนาจเจริญ)" -msgstr "Amnat Charoen (อำนาจเจริญ)" - -#: i18n/states/TH.php:14 -#@ woocommerce -msgid "Ang Thong (อ่างทอง)" -msgstr "Ang Thong (อ่างทอง)" - -#: i18n/states/TH.php:15 -#@ woocommerce -msgid "Ayutthaya (พระนครศรีอยุธยา)" -msgstr "Ayutthaya (พระนครศรีอยุธยา)" - -#: i18n/states/TH.php:16 -#@ woocommerce -msgid "Bangkok (กรุงเทพมหานคร)" -msgstr "Bangkok (กรุงเทพมหานคร)" - -#: i18n/states/TH.php:17 -#@ woocommerce -msgid "Bueng Kan (บึงกาฬ)" -msgstr "Bueng Kan (บึงกาฬ)" - -#: i18n/states/TH.php:18 -#@ woocommerce -msgid "Buri Ram (บุรีรัมย์)" -msgstr "Buri Ram (บุรีรัมย์)" - -#: i18n/states/TH.php:19 -#@ woocommerce -msgid "Chachoengsao (ฉะเชิงเทรา)" -msgstr "Chachoengsao (ฉะเชิงเทรา)" - -#: i18n/states/TH.php:20 -#@ woocommerce -msgid "Chai Nat (ชัยนาท)" -msgstr "Chai Nat (ชัยนาท)" - -#: i18n/states/TH.php:21 -#@ woocommerce -msgid "Chaiyaphum (ชัยภูมิ)" -msgstr "Chaiyaphum (ชัยภูมิ)" - -#: i18n/states/TH.php:22 -#@ woocommerce -msgid "Chanthaburi (จันทบุรี)" -msgstr "Chanthaburi (จันทบุรี)" - -#: i18n/states/TH.php:23 -#@ woocommerce -msgid "Chiang Mai (เชียงใหม่)" -msgstr "Chiang Mai (เชียงใหม่)" - -#: i18n/states/TH.php:24 -#@ woocommerce -msgid "Chiang Rai (เชียงราย)" -msgstr "Chiang Rai (เชียงราย)" - -#: i18n/states/TH.php:25 -#@ woocommerce -msgid "Chonburi (ชลบุรี)" -msgstr "Chonburi (ชลบุรี)" - -#: i18n/states/TH.php:26 -#@ woocommerce -msgid "Chumphon (ชุมพร)" -msgstr "Chumphon (ชุมพร)" - -#: i18n/states/TH.php:27 -#@ woocommerce -msgid "Kalasin (กาฬสินธุ์)" -msgstr "Kalasin (กาฬสินธุ์)" - -#: i18n/states/TH.php:28 -#@ woocommerce -msgid "Kamphaeng Phet (กำแพงเพชร)" -msgstr "Kamphaeng Phet (กำแพงเพชร)" - -#: i18n/states/TH.php:29 -#@ woocommerce -msgid "Kanchanaburi (กาญจนบุรี)" -msgstr "Kanchanaburi (กาญจนบุรี)" - -#: i18n/states/TH.php:30 -#@ woocommerce -msgid "Khon Kaen (ขอนแก่น)" -msgstr "Khon Kaen (ขอนแก่น)" - -#: i18n/states/TH.php:31 -#@ woocommerce -msgid "Krabi (กระบี่)" -msgstr "Krabi (กระบี่)" - -#: i18n/states/TH.php:32 -#@ woocommerce -msgid "Lampang (ลำปาง)" -msgstr "Lampang (ลำปาง)" - -#: i18n/states/TH.php:33 -#@ woocommerce -msgid "Lamphun (ลำพูน)" -msgstr "Lamphun (ลำพูน)" - -#: i18n/states/TH.php:34 -#@ woocommerce -msgid "Loei (เลย)" -msgstr "Loei (เลย)" - -#: i18n/states/TH.php:35 -#@ woocommerce -msgid "Lopburi (ลพบุรี)" -msgstr "Lopburi (ลพบุรี)" - -#: i18n/states/TH.php:36 -#@ woocommerce -msgid "Mae Hong Son (แม่ฮ่องสอน)" -msgstr "Mae Hong Son (แม่ฮ่องสอน)" - -#: i18n/states/TH.php:37 -#@ woocommerce -msgid "Maha Sarakham (มหาสารคาม)" -msgstr "Maha Sarakham (มหาสารคาม)" - -#: i18n/states/TH.php:38 -#@ woocommerce -msgid "Mukdahan (มุกดาหาร)" -msgstr "Mukdahan (มุกดาหาร)" - -#: i18n/states/TH.php:39 -#@ woocommerce -msgid "Nakhon Nayok (นครนายก)" -msgstr "Nakhon Nayok (นครนายก)" - -#: i18n/states/TH.php:40 -#@ woocommerce -msgid "Nakhon Pathom (นครปฐม)" -msgstr "Nakhon Pathom (นครปฐม)" - -#: i18n/states/TH.php:41 -#@ woocommerce -msgid "Nakhon Phanom (นครพนม)" -msgstr "Nakhon Phanom (นครพนม)" - -#: i18n/states/TH.php:42 -#@ woocommerce -msgid "Nakhon Ratchasima (นครราชสีมา)" -msgstr "Nakhon Ratchasima (นครราชสีมา)" - -#: i18n/states/TH.php:43 -#@ woocommerce -msgid "Nakhon Sawan (นครสวรรค์)" -msgstr "Nakhon Sawan (นครสวรรค์)" - -#: i18n/states/TH.php:44 -#@ woocommerce -msgid "Nakhon Si Thammarat (นครศรีธรรมราช)" -msgstr "Nakhon Si Thammarat (นครศรีธรรมราช)" - -#: i18n/states/TH.php:45 -#@ woocommerce -msgid "Nan (น่าน)" -msgstr "Nan (น่าน)" - -#: i18n/states/TH.php:46 -#@ woocommerce -msgid "Narathiwat (นราธิวาส)" -msgstr "Narathiwat (นราธิวาส)" - -#: i18n/states/TH.php:47 -#@ woocommerce -msgid "Nong Bua Lam Phu (หนองบัวลำภู)" -msgstr "Nong Bua Lam Phu (หนองบัวลำภู)" - -#: i18n/states/TH.php:48 -#@ woocommerce -msgid "Nong Khai (หนองคาย)" -msgstr "Nong Khai (หนองคาย)" - -#: i18n/states/TH.php:49 -#@ woocommerce -msgid "Nonthaburi (นนทบุรี)" -msgstr "Nonthaburi (นนทบุรี)" - -#: i18n/states/TH.php:50 -#@ woocommerce -msgid "Pathum Thani (ปทุมธานี)" -msgstr "Pathum Thani (ปทุมธานี)" - -#: i18n/states/TH.php:51 -#@ woocommerce -msgid "Pattani (ปัตตานี)" -msgstr "Pattani (ปัตตานี)" - -#: i18n/states/TH.php:52 -#@ woocommerce -msgid "Phang Nga (พังงา)" -msgstr "Phang Nga (พังงา)" - -#: i18n/states/TH.php:53 -#@ woocommerce -msgid "Phatthalung (พัทลุง)" -msgstr "Phatthalung (พัทลุง)" - -#: i18n/states/TH.php:54 -#@ woocommerce -msgid "Phayao (พะเยา)" -msgstr "Phayao (พะเยา)" - -#: i18n/states/TH.php:55 -#@ woocommerce -msgid "Phetchabun (เพชรบูรณ์)" -msgstr "Phetchabun (เพชรบูรณ์)" - -#: i18n/states/TH.php:56 -#@ woocommerce -msgid "Phetchaburi (เพชรบุรี)" -msgstr "Phetchaburi (เพชรบุรี)" - -#: i18n/states/TH.php:57 -#@ woocommerce -msgid "Phichit (พิจิตร)" -msgstr "Phichit (พิจิตร)" - -#: i18n/states/TH.php:58 -#@ woocommerce -msgid "Phitsanulok (พิษณุโลก)" -msgstr "Phitsanulok (พิษณุโลก)" - -#: i18n/states/TH.php:59 -#@ woocommerce -msgid "Phrae (แพร่)" -msgstr "Phrae (แพร่)" - -#: i18n/states/TH.php:60 -#@ woocommerce -msgid "Phuket (ภูเก็ต)" -msgstr "Phuket (ภูเก็ต)" - -#: i18n/states/TH.php:61 -#@ woocommerce -msgid "Prachin Buri (ปราจีนบุรี)" -msgstr "Prachin Buri (ปราจีนบุรี)" - -#: i18n/states/TH.php:62 -#@ woocommerce -msgid "Prachuap Khiri Khan (ประจวบคีรีขันธ์)" -msgstr "Prachuap Khiri Khan (ประจวบคีรีขันธ์)" - -#: i18n/states/TH.php:63 -#@ woocommerce -msgid "Ranong (ระนอง)" -msgstr "Ranong (ระนอง)" - -#: i18n/states/TH.php:64 -#@ woocommerce -msgid "Ratchaburi (ราชบุรี)" -msgstr "Ratchaburi (ราชบุรี)" - -#: i18n/states/TH.php:65 -#@ woocommerce -msgid "Rayong (ระยอง)" -msgstr "Rayong (ระยอง)" - -#: i18n/states/TH.php:66 -#@ woocommerce -msgid "Roi Et (ร้อยเอ็ด)" -msgstr "Roi Et (ร้อยเอ็ด)" - -#: i18n/states/TH.php:67 -#@ woocommerce -msgid "Sa Kaeo (สระแก้ว)" -msgstr "Sa Kaeo (สระแก้ว)" - -#: i18n/states/TH.php:68 -#@ woocommerce -msgid "Sakon Nakhon (สกลนคร)" -msgstr "Sakon Nakhon (สกลนคร)" - -#: i18n/states/TH.php:69 -#@ woocommerce -msgid "Samut Prakan (สมุทรปราการ)" -msgstr "Samut Prakan (สมุทรปราการ)" - -#: i18n/states/TH.php:70 -#@ woocommerce -msgid "Samut Sakhon (สมุทรสาคร)" -msgstr "Samut Sakhon (สมุทรสาคร)" - -#: i18n/states/TH.php:71 -#@ woocommerce -msgid "Samut Songkhram (สมุทรสงคราม)" -msgstr "Samut Songkhram (สมุทรสงคราม)" - -#: i18n/states/TH.php:72 -#@ woocommerce -msgid "Saraburi (สระบุรี)" -msgstr "Saraburi (สระบุรี)" - -#: i18n/states/TH.php:73 -#@ woocommerce -msgid "Satun (สตูล)" -msgstr "Satun (สตูล)" - -#: i18n/states/TH.php:74 -#@ woocommerce -msgid "Sing Buri (สิงห์บุรี)" -msgstr "Sing Buri (สิงห์บุรี)" - -#: i18n/states/TH.php:75 -#@ woocommerce -msgid "Sisaket (ศรีสะเกษ)" -msgstr "Sisaket (ศรีสะเกษ)" - -#: i18n/states/TH.php:76 -#@ woocommerce -msgid "Songkhla (สงขลา)" -msgstr "Songkhla (สงขลา)" - -#: i18n/states/TH.php:77 -#@ woocommerce -msgid "Sukhothai (สุโขทัย)" -msgstr "Sukhothai (สุโขทัย)" - -#: i18n/states/TH.php:78 -#@ woocommerce -msgid "Suphan Buri (สุพรรณบุรี)" -msgstr "Suphan Buri (สุพรรณบุรี)" - -#: i18n/states/TH.php:79 -#@ woocommerce -msgid "Surat Thani (สุราษฎร์ธานี)" -msgstr "Surat Thani (สุราษฎร์ธานี)" - -#: i18n/states/TH.php:80 -#@ woocommerce -msgid "Surin (สุรินทร์)" -msgstr "Surin (สุรินทร์)" - -#: i18n/states/TH.php:81 -#@ woocommerce -msgid "Tak (ตาก)" -msgstr "Tak (ตาก)" - -#: i18n/states/TH.php:82 -#@ woocommerce -msgid "Trang (ตรัง)" -msgstr "Trang (ตรัง)" - -#: i18n/states/TH.php:83 -#@ woocommerce -msgid "Trat (ตราด)" -msgstr "Trat (ตราด)" - -#: i18n/states/TH.php:84 -#@ woocommerce -msgid "Ubon Ratchathani (อุบลราชธานี)" -msgstr "Ubon Ratchathani (อุบลราชธานี)" - -#: i18n/states/TH.php:85 -#@ woocommerce -msgid "Udon Thani (อุดรธานี)" -msgstr "Udon Thani (อุดรธานี)" - -#: i18n/states/TH.php:86 -#@ woocommerce -msgid "Uthai Thani (อุทัยธานี)" -msgstr "Uthai Thani (อุทัยธานี)" - -#: i18n/states/TH.php:87 -#@ woocommerce -msgid "Uttaradit (อุตรดิตถ์)" -msgstr "Uttaradit (อุตรดิตถ์)" - -#: i18n/states/TH.php:88 -#@ woocommerce -msgid "Yala (ยะลา)" -msgstr "Yala (ยะลา)" - -#: i18n/states/TH.php:89 -#@ woocommerce -msgid "Yasothon (ยโสธร)" -msgstr "Yasothon (ยโสธร)" - -#: i18n/states/US.php:13 -#@ woocommerce -msgid "Alabama" -msgstr "Alabama" - -#: i18n/states/US.php:14 -#@ woocommerce -msgid "Alaska" -msgstr "Alaska" - -#: i18n/states/US.php:15 -#@ woocommerce -msgid "Arizona" -msgstr "Arizona" - -#: i18n/states/US.php:16 -#@ woocommerce -msgid "Arkansas" -msgstr "Arkansas" - -#: i18n/states/US.php:17 -#@ woocommerce -msgid "California" -msgstr "California" - -#: i18n/states/US.php:18 -#@ woocommerce -msgid "Colorado" -msgstr "Colorado" - -#: i18n/states/US.php:19 -#@ woocommerce -msgid "Connecticut" -msgstr "Connecticut" - -#: i18n/states/US.php:20 -#@ woocommerce -msgid "Delaware" -msgstr "Delaware" - -#: i18n/states/US.php:21 -#@ woocommerce -msgid "District Of Columbia" -msgstr "District Of Columbia" - -#: i18n/states/US.php:22 -#@ woocommerce -msgid "Florida" -msgstr "Florida" - -#: i18n/states/US.php:24 -#@ woocommerce -msgid "Hawaii" -msgstr "Hawaii" - -#: i18n/states/US.php:25 -#@ woocommerce -msgid "Idaho" -msgstr "Idaho" - -#: i18n/states/US.php:26 -#@ woocommerce -msgid "Illinois" -msgstr "Illinois" - -#: i18n/states/US.php:27 -#@ woocommerce -msgid "Indiana" -msgstr "Indiana" - -#: i18n/states/US.php:28 -#@ woocommerce -msgid "Iowa" -msgstr "Iowa" - -#: i18n/states/US.php:29 -#@ woocommerce -msgid "Kansas" -msgstr "Kansas" - -#: i18n/states/US.php:30 -#@ woocommerce -msgid "Kentucky" -msgstr "Kentucky" - -#: i18n/states/US.php:31 -#@ woocommerce -msgid "Louisiana" -msgstr "Louisiana" - -#: i18n/states/US.php:32 -#@ woocommerce -msgid "Maine" -msgstr "Maine" - -#: i18n/states/US.php:33 -#@ woocommerce -msgid "Maryland" -msgstr "Maryland" - -#: i18n/states/US.php:34 -#@ woocommerce -msgid "Massachusetts" -msgstr "Massachusetts" - -#: i18n/states/US.php:35 -#@ woocommerce -msgid "Michigan" -msgstr "Michigan" - -#: i18n/states/US.php:36 -#@ woocommerce -msgid "Minnesota" -msgstr "Minnesota" - -#: i18n/states/US.php:37 -#@ woocommerce -msgid "Mississippi" -msgstr "Mississippi" - -#: i18n/states/US.php:38 -#@ woocommerce -msgid "Missouri" -msgstr "Missouri" - -#: i18n/states/US.php:39 -#@ woocommerce -msgid "Montana" -msgstr "Montana" - -#: i18n/states/US.php:40 -#@ woocommerce -msgid "Nebraska" -msgstr "Nebraska" - -#: i18n/states/US.php:41 -#@ woocommerce -msgid "Nevada" -msgstr "Nevada" - -#: i18n/states/US.php:42 -#@ woocommerce -msgid "New Hampshire" -msgstr "New Hampshire" - -#: i18n/states/US.php:43 -#@ woocommerce -msgid "New Jersey" -msgstr "New Jersey" - -#: i18n/states/US.php:44 -#@ woocommerce -msgid "New Mexico" -msgstr "New Mexico" - -#: i18n/states/US.php:45 -#@ woocommerce -msgid "New York" -msgstr "New York" - -#: i18n/states/US.php:46 -#@ woocommerce -msgid "North Carolina" -msgstr "Nord Carolina" - -#: i18n/states/US.php:47 -#@ woocommerce -msgid "North Dakota" -msgstr "Nord Dakota" - -#: i18n/states/US.php:48 -#@ woocommerce -msgid "Ohio" -msgstr "Ohio" - -#: i18n/states/US.php:49 -#@ woocommerce -msgid "Oklahoma" -msgstr "Oklahoma" - -#: i18n/states/US.php:50 -#@ woocommerce -msgid "Oregon" -msgstr "Oregon" - -#: i18n/states/US.php:51 -#@ woocommerce -msgid "Pennsylvania" -msgstr "Pennsylvania" - -#: i18n/states/US.php:52 -#@ woocommerce -msgid "Rhode Island" -msgstr "Rhode Island" - -#: i18n/states/US.php:53 -#@ woocommerce -msgid "South Carolina" -msgstr "Sør Carolina" - -#: i18n/states/US.php:54 -#@ woocommerce -msgid "South Dakota" -msgstr "Sør Dakota" - -#: i18n/states/US.php:55 -#@ woocommerce -msgid "Tennessee" -msgstr "Tennessee" - -#: i18n/states/US.php:56 -#@ woocommerce -msgid "Texas" -msgstr "Texas" - -#: i18n/states/US.php:57 -#@ woocommerce -msgid "Utah" -msgstr "Utah" - -#: i18n/states/US.php:58 -#@ woocommerce -msgid "Vermont" -msgstr "Vermont" - -#: i18n/states/US.php:59 -#@ woocommerce -msgid "Virginia" -msgstr "Virginia" - -#: i18n/states/US.php:60 -#@ woocommerce -msgid "Washington" -msgstr "Washington" - -#: i18n/states/US.php:61 -#@ woocommerce -msgid "West Virginia" -msgstr "West Virginia" - -#: i18n/states/US.php:62 -#@ woocommerce -msgid "Wisconsin" -msgstr "Wisconsin" - -#: i18n/states/US.php:63 -#@ woocommerce -msgid "Wyoming" -msgstr "Wyoming" - -#: i18n/states/US.php:64 -#@ woocommerce -msgid "Armed Forces (AA)" -msgstr "US Væpnede Styrker, America" - -#: i18n/states/US.php:65 -#@ woocommerce -msgid "Armed Forces (AE)" -msgstr "US Væpnede Styrker, Europa" - -#: i18n/states/US.php:66 -#@ woocommerce -msgid "Armed Forces (AP)" -msgstr "US Væpnede Styrker, Stillehavet" - -#: i18n/states/ZA.php:13 -#@ woocommerce -msgid "Eastern Cape" -msgstr "Eastern Cape" - -#: i18n/states/ZA.php:14 -#@ woocommerce -msgid "Free State" -msgstr "Gratis delstat" - -#: i18n/states/ZA.php:15 -#@ woocommerce -msgid "Gauteng" -msgstr "Gauteng" - -#: i18n/states/ZA.php:16 -#@ woocommerce -msgid "KwaZulu-Natal" -msgstr "KwaZulu-Natal" - -#: i18n/states/ZA.php:17 -#@ woocommerce -msgid "Limpopo" -msgstr "Limpopo" - -#: i18n/states/ZA.php:18 -#@ woocommerce -msgid "Mpumalanga" -msgstr "Mpumalanga" - -#: i18n/states/ZA.php:19 -#@ woocommerce -msgid "Northern Cape" -msgstr "Northern Cape" - -#: i18n/states/ZA.php:20 -#@ woocommerce -msgid "North West" -msgstr "Nord-vest" - -#: i18n/states/ZA.php:21 -#@ woocommerce -msgid "Western Cape" -msgstr "Western Cape" - -#: i18n/strings.php:16 -#@ woocommerce -msgid "pending" -msgstr "venter" - -#: i18n/strings.php:17 -#@ woocommerce -msgid "failed" -msgstr "mislykket" - -#: i18n/strings.php:18 -#@ woocommerce -msgid "on-hold" -msgstr "på vent" - -#: i18n/strings.php:19 -#@ woocommerce -msgid "processing" -msgstr "behandler" - -#: i18n/strings.php:20 -#@ woocommerce -msgid "completed" -msgstr "fullført" - -#: i18n/strings.php:21 -#@ woocommerce -msgid "refunded" -msgstr "tilbakebetalt" - -#: i18n/strings.php:22 -#@ woocommerce -msgid "cancelled" -msgstr "avbrutt" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:201 -#: includes/admin/views/html-bulk-edit-product.php:10 -#: includes/admin/views/html-quick-edit-product.php:22 -#: includes/widgets/class-wc-widget-products.php:54 -#: templates/cart/cart.php:28 -#: templates/emails/admin-new-order.php:24 -#: templates/emails/customer-completed-order.php:25 -#: templates/emails/customer-invoice.php:29 -#: templates/emails/customer-note.php:29 -#: templates/emails/customer-processing-order.php:25 -#@ woocommerce -msgid "Price" -msgstr "Pris" - -#: templates/cart/cart.php:29 -#: templates/emails/admin-new-order.php:23 -#: templates/emails/customer-completed-order.php:24 -#: templates/emails/customer-invoice.php:28 -#: templates/emails/customer-note.php:28 -#: templates/emails/customer-processing-order.php:24 -#@ woocommerce -msgid "Quantity" -msgstr "Antall" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:94 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:43 -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:62 -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:171 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:122 -#: templates/cart/cart.php:30 -#: templates/checkout/review-order.php:19 -#: templates/myaccount/my-orders.php:35 -#: templates/order/order-details.php:21 -#@ woocommerce -msgid "Total" -msgstr "Total" - -#: templates/cart/cart.php:47 -#@ woocommerce -msgid "Remove this item" -msgstr "Fjern denne gjenstanden" - -#: templates/cart/cart.php:94 -#: templates/single-product/add-to-cart/quantity.php:12 -#@ woocommerce -msgctxt "Product quantity input tooltip" -msgid "Qty" -msgstr "Antall" - -#: includes/class-wc-post-types.php:332 -#: templates/cart/cart.php:119 -#@ woocommerce -msgid "Coupon" -msgstr "Rabattkupong" - -#: templates/cart/cart.php:119 -#: templates/checkout/form-coupon.php:29 -#@ woocommerce -msgid "Apply Coupon" -msgstr "Bruk rabattkupong" - -#: templates/cart/cart.php:126 -#@ woocommerce -msgid "Update Cart" -msgstr "Oppdater handlekurv" - -#: templates/cart/cross-sells.php:38 -#@ woocommerce -msgid "You may be interested in…" -msgstr "Du er kanskje interessert i…" - -#: templates/cart/cart-empty.php:16 -#@ woocommerce -msgid "Your cart is currently empty." -msgstr "Handlekurven din er tom." - -#: templates/cart/mini-cart.php:51 -#@ woocommerce -msgid "No products in the cart." -msgstr "Du har ingen produkter i handlekurven." - -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:169 -#: templates/cart/mini-cart.php:59 -#@ woocommerce -msgid "Subtotal" -msgstr "Delsum" - -#: templates/cart/shipping-calculator.php:22 -#@ woocommerce -msgid "Calculate Shipping" -msgstr "Beregn frakt" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:60 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:107 -#: includes/wc-template-functions.php:1589 -#: templates/cart/shipping-calculator.php:28 -#@ woocommerce -msgid "Select a country…" -msgstr "Velg et land…" - -#: includes/wc-template-functions.php:1639 -#: templates/cart/shipping-calculator.php:52 -#@ woocommerce -msgid "Select a state…" -msgstr "Velg en delstat…" - -#: templates/cart/shipping-calculator.php:45 -#: templates/cart/shipping-calculator.php:51 -#: templates/cart/shipping-calculator.php:63 -#@ woocommerce -msgid "State / county" -msgstr "Delstat / fylke" - -#: templates/cart/shipping-calculator.php:85 -#@ woocommerce -msgid "Update Totals" -msgstr "Oppdater totaler" - -#: includes/admin/views/html-admin-page-addons.php:17 -#: includes/wc-cart-functions.php:254 -#@ woocommerce -msgid "Free" -msgstr "Gratis" - -#: templates/cart/cart-shipping.php:59 -#@ woocommerce -msgid "Please fill in your details to see available shipping methods." -msgstr "Vennligst fyll inn detaljer dinefor å se tilgjengelige fraktmetoder." - -#: templates/cart/cart-totals.php:16 -#@ woocommerce -msgid "Cart Totals" -msgstr "Handlekurv total" - -#: templates/cart/cart-totals.php:21 -#: templates/checkout/review-order.php:25 -#@ woocommerce -msgid "Cart Subtotal" -msgstr "Handlekurv delsum" - -#: includes/wc-coupon-functions.php:22 -#@ woocommerce -msgid "Cart Discount" -msgstr "Handlekurvsrabatt" - -#: includes/wc-cart-functions.php:195 -#@ woocommerce -msgid "[Remove]" -msgstr "[Fjern]" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:31 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:62 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:94 -#: includes/admin/settings/class-wc-settings-shipping.php:25 -#: includes/admin/settings/class-wc-settings-tax.php:264 -#: includes/admin/settings/class-wc-settings-tax.php:381 -#: includes/admin/views/html-admin-page-addons.php:13 -#: templates/cart/cart-shipping.php:93 -#@ woocommerce -msgid "Shipping" -msgstr "Frakt" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:113 -#@ woocommerce -msgid "Order Discount" -msgstr "Ordrerabatt" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:120 -#: templates/cart/cart-totals.php:75 -#: templates/checkout/review-order.php:79 -#@ woocommerce -msgid "Order Total" -msgstr "Ordretotal" - -#: templates/cart/cart-totals.php:87 -#, php-format -#@ woocommerce -msgid " (taxes estimated for %s)" -msgstr "(skatter beregnet for %s)" - -#: templates/cart/cart-totals.php:90 -#, php-format -#@ woocommerce -msgid "Note: Shipping and taxes are estimated%s and will be updated during checkout based on your billing and shipping information." -msgstr "Merk: Frakt og skatter beregnes%s og blir oppdatert når du går til kassen, basert på betalings- og fraktinformasjonen din." - -#: templates/cart/cart-shipping.php:69 -#: templates/cart/cart-shipping.php:77 -#@ woocommerce -msgid "If you require assistance or wish to make alternate arrangements please contact us." -msgstr "Dersom du trenger hjelp eller ønsker å gjøre andre ordninger, vennligst kontakt oss." - -#: templates/checkout/cart-errors.php:16 -#@ woocommerce -msgid "There are some issues with the items in your cart (shown above). Please go back to the cart page and resolve these issues before checking out." -msgstr "Det er noe problemer med noen av produktene i handlekurven (vist ovenfor). Vennligst gå tilbake til handekurven og rett på dette før du går til kassen." - -#: templates/checkout/form-billing.php:17 -#@ woocommerce -msgid "Billing & Shipping" -msgstr "Fakturering & Frakt" - -#: templates/checkout/form-billing.php:21 -#: templates/myaccount/form-edit-address.php:14 -#: templates/myaccount/my-address.php:19 -#: templates/myaccount/my-address.php:25 -#: templates/order/order-details.php:118 -#@ woocommerce -msgid "Billing Address" -msgstr "Fakturaadresse" - -#: templates/checkout/form-billing.php:40 -#@ woocommerce -msgid "Create an account?" -msgstr "Opprett en konto?" - -#: templates/checkout/form-billing.php:51 -#@ woocommerce -msgid "Create an account by entering the information below. If you are a returning customer please login at the top of the page." -msgstr "Opprett en konto ved å skrive inn informasjonen nedenfor. Hvis du allerede har registrert deg, vennligst logg inn på toppen av siden." - -#: templates/checkout/form-checkout.php:20 -#@ woocommerce -msgid "You must be logged in to checkout." -msgstr "Du må være pålogget for å gp til kassen." - -#: templates/checkout/form-checkout.php:51 -#@ woocommerce -msgid "Your order" -msgstr "Ordren din" - -#: templates/checkout/form-coupon.php:17 -#@ woocommerce -msgid "Have a coupon?" -msgstr "Har du en kupong?" - -#: templates/checkout/form-coupon.php:18 -#@ woocommerce -msgid "Click here to enter your code" -msgstr "Klikk her for å skrive inn koden din" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:53 -#: templates/checkout/form-coupon.php:25 -#@ woocommerce -msgid "Coupon code" -msgstr "Kupongkode" - -#: templates/checkout/form-login.php:15 -#@ woocommerce -msgid "Click here to login" -msgstr "Klikk her for å logge inn" - -#: templates/checkout/form-login.php:22 -#@ woocommerce -msgid "If you have shopped with us before, please enter your details in the boxes below. If you are a new customer please proceed to the Billing & Shipping section." -msgstr "Hvis du har handlet hos oss før, vennligst fyll ut detaljene dine boksene nedenfor. Er du en ny kunde, vennligst fortsett til kassen & fraktområdet." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:41 -#: templates/checkout/form-pay.php:20 -#@ woocommerce -msgid "Qty" -msgstr "Antall" - -#: includes/admin/reports/class-wc-report-taxes-by-date.php:122 -#: templates/checkout/form-pay.php:21 -#@ woocommerce -msgid "Totals" -msgstr "Totaler" - -#: templates/checkout/form-pay.php:79 -#@ woocommerce -msgid "Sorry, it seems that there are no available payment methods for your location. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "Beklager, det ser ikke ut til å finnes noe betalingsmetode for din adresse. Kontakt oss om du trenger hjelp, eller ønsker å benytte et alternativ." - -#: templates/checkout/form-pay.php:88 -#@ woocommerce -msgid "Pay for order" -msgstr "Betal for ordren" - -#: templates/myaccount/form-edit-address.php:14 -#: templates/myaccount/my-address.php:20 -#: templates/order/order-details.php:133 -#@ woocommerce -msgid "Shipping Address" -msgstr "Fraktadresse" - -#: includes/wc-template-functions.php:961 -#: templates/checkout/form-shipping.php:57 -#: templates/single-product/tabs/additional-information.php:14 -#@ woocommerce -msgid "Additional Information" -msgstr "Tilleggsinformasjon" - -#: templates/checkout/review-order.php:150 -#@ woocommerce -msgid "Please fill in your details above to see available payment methods." -msgstr "Vennligst fyll inn detaljene dine ovenfor for å se tilgjengelige betalingsmetoder." - -#: templates/checkout/review-order.php:152 -#@ woocommerce -msgid "Sorry, it seems that there are no available payment methods for your state. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "Beklager, det ser ikke ut til å finnes noe betalingsmetode for din adresse. Kontakt oss om du trenger hjelp, eller ønsker å benytte et alternativ." - -#: templates/checkout/review-order.php:161 -#@ woocommerce -msgid "Since your browser does not support JavaScript, or it is disabled, please ensure you click the Update Totals button before placing your order. You may be charged more than the amount stated above if you fail to do so." -msgstr "Fordi nettleseren din ikke støtter JavaScript, eller att JavaScript er slått av, så må du klikke på Oppdatere total før du sender ordren. Om du ikke oppdaterer total, risikerer du å betale mer enn beløpet som vises ovenfor." - -#: templates/checkout/review-order.php:161 -#@ woocommerce -msgid "Update totals" -msgstr "Oppdater totaler" - -#: templates/checkout/review-order.php:168 -#@ woocommerce -msgid "Place order" -msgstr "Send ordre" - -#: templates/checkout/review-order.php:175 -#@ woocommerce -msgid "I have read and accept the" -msgstr "Jeg har lest og aksepterer" - -#: templates/checkout/review-order.php:175 -#@ woocommerce -msgid "terms & conditions" -msgstr "vilkår" - -#: templates/checkout/thankyou.php:18 -#@ woocommerce -msgid "Unfortunately your order cannot be processed as the originating bank/merchant has declined your transaction." -msgstr "Desverre kan ikke ordren din fullføres, fordi betalingen ikke er godkjent av bank/kortleverandør." - -#: templates/checkout/thankyou.php:22 -#@ woocommerce -msgid "Please attempt your purchase again or go to your account page." -msgstr "Vennligst forsøk å gjennomføre kjøpet ditt igjen eller gå til din konto." - -#: templates/checkout/thankyou.php:24 -#@ woocommerce -msgid "Please attempt your purchase again." -msgstr "Vennligst forsøk å gjennomføre kjøpet ditt igjen." - -#: templates/checkout/thankyou.php:36 -#: templates/checkout/thankyou.php:67 -#@ woocommerce -msgid "Thank you. Your order has been received." -msgstr "Takk. Vi har mottatt ordren din." - -#: templates/emails/admin-new-order.php:13 -#: templates/emails/plain/admin-new-order.php:13 -#, php-format -#@ woocommerce -msgid "You have received an order from %s. Their order is as follows:" -msgstr "Du har mottatt en ordre fra %s. Ordren er som følger:" - -#: templates/emails/admin-new-order.php:17 -#, php-format -#@ woocommerce -msgid "Order: %s" -msgstr "Ordre: %s" - -#: templates/emails/admin-new-order.php:50 -#: templates/emails/customer-completed-order.php:51 -#: templates/emails/customer-note.php:55 -#: templates/emails/customer-processing-order.php:51 -#: templates/emails/plain/admin-new-order.php:39 -#: templates/order/order-details.php:97 -#@ woocommerce -msgid "Customer details" -msgstr "Kundedetaljer" - -#: templates/emails/admin-new-order.php:53 -#: templates/emails/customer-completed-order.php:54 -#: templates/emails/customer-note.php:58 -#: templates/emails/customer-processing-order.php:54 -#: templates/emails/plain/admin-new-order.php:42 -#: templates/emails/plain/customer-completed-order.php:41 -#: templates/emails/plain/customer-note.php:49 -#: templates/emails/plain/customer-processing-order.php:41 -#: templates/order/order-details.php:101 -#@ woocommerce -msgid "Email:" -msgstr "Epost:" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:223 -#: templates/emails/admin-new-order.php:56 -#: templates/emails/customer-completed-order.php:57 -#: templates/emails/customer-note.php:61 -#: templates/emails/customer-processing-order.php:57 -#: templates/emails/plain/admin-new-order.php:45 -#: templates/emails/plain/customer-completed-order.php:44 -#: templates/emails/plain/customer-note.php:52 -#: templates/emails/plain/customer-processing-order.php:44 -#@ default -#@ woocommerce -msgid "Tel:" -msgstr "Tlf:" - -#: templates/emails/customer-completed-order.php:14 -#: templates/emails/plain/customer-completed-order.php:13 -#, php-format -#@ woocommerce -msgid "Hi there. Your recent order on %s has been completed. Your order details are shown below for your reference:" -msgstr "Hei der! Den nylige ordren din på %s er fullført. Ordredetaljene er vist nedenfor som referanse:" - -#: templates/emails/customer-invoice.php:16 -#: templates/emails/plain/customer-invoice.php:14 -#, php-format -#@ woocommerce -msgid "An order has been created for you on %s. To pay for this order please use the following link: %s" -msgstr "En ordre er opprettet for deg på %s. For å betale for denne ordren vennligst bruk følgende link: %s" - -#: templates/emails/customer-invoice.php:16 -#@ woocommerce -msgid "pay" -msgstr "betal" - -#: templates/emails/customer-new-account.php:14 -#: templates/emails/plain/customer-new-account.php:13 -#, php-format -#@ woocommerce -msgid "Thanks for creating an account on %s. Your username is %s." -msgstr "Takk for at du opprettet en konto på %s. Brukernavnet ditt er %s." - -#: templates/emails/customer-note.php:14 -#: templates/emails/plain/customer-note.php:13 -#@ woocommerce -msgid "Hello, a note has just been added to your order:" -msgstr "Hei, et notat har nylig blitt lagt til din ordre:" - -#: templates/emails/customer-note.php:18 -#: templates/emails/plain/customer-note.php:21 -#@ woocommerce -msgid "For your reference, your order details are shown below." -msgstr "Til informasjon finnes alle ordredetaljer nedenfor." - -#: templates/emails/customer-processing-order.php:14 -#: templates/emails/plain/customer-processing-order.php:13 -#@ woocommerce -msgid "Your order has been received and is now being processed. Your order details are shown below for your reference:" -msgstr "Ordren din er mottatt og blir nå behandlet. Ordredetaljene er vist nedenfor som referanse:" - -#: templates/emails/customer-reset-password.php:14 -#: templates/emails/plain/customer-reset-password.php:13 -#@ woocommerce -msgid "Someone requested that the password be reset for the following account:" -msgstr "Noen har bedt om at passordet tilbakestilles for følgende konto:" - -#: templates/emails/customer-reset-password.php:15 -#: templates/emails/plain/customer-reset-password.php:15 -#, php-format -#@ woocommerce -msgid "Username: %s" -msgstr "Brukernavn: %s" - -#: templates/emails/customer-reset-password.php:16 -#: templates/emails/plain/customer-reset-password.php:16 -#@ woocommerce -msgid "If this was a mistake, just ignore this email and nothing will happen." -msgstr "Hvis dette var en feil, bare ignorer denne e-posten, og ingenting vil skje." - -#: templates/emails/customer-reset-password.php:17 -#: templates/emails/plain/customer-reset-password.php:17 -#@ woocommerce -msgid "To reset your password, visit the following address:" -msgstr "For¨å tilbakestille passordet ditt, gå til følgende adresse:" - -#: templates/emails/customer-reset-password.php:20 -#@ woocommerce -msgid "Click here to reset your password" -msgstr "Klikk her for å tilbakestille passordet ditt" - -#: templates/emails/email-addresses.php:18 -#: templates/emails/plain/email-addresses.php:12 -#@ woocommerce -msgid "Billing address" -msgstr "Fakturaadresse" - -#: templates/emails/email-addresses.php:28 -#: templates/emails/plain/email-addresses.php:17 -#@ woocommerce -msgid "Shipping address" -msgstr "Fraktadresse" - -#: templates/emails/email-order-items.php:42 -#, php-format -#@ woocommerce -msgid "Download %d:" -msgstr "Last ned %d:" - -#: templates/emails/email-order-items.php:44 -#@ woocommerce -msgid "Download:" -msgstr "Last ned:" - -#: templates/emails/plain/admin-new-order.php:19 -#: templates/emails/plain/customer-completed-order.php:19 -#: templates/emails/plain/customer-invoice.php:20 -#: templates/emails/plain/customer-note.php:27 -#: templates/emails/plain/customer-processing-order.php:19 -#, php-format -#@ woocommerce -msgid "Order number: %s" -msgstr "Ordrenummer: %s" - -#: templates/emails/plain/admin-new-order.php:21 -#: templates/emails/plain/customer-completed-order.php:20 -#: templates/emails/plain/customer-invoice.php:21 -#: templates/emails/plain/customer-note.php:28 -#: templates/emails/plain/customer-processing-order.php:20 -#, php-format -#@ woocommerce -msgid "Order date: %s" -msgstr "Ordredato: %s" - -#: templates/emails/plain/admin-new-order.php:21 -#@ woocommerce -msgid "jS F Y" -msgstr "jS F Y" - -#: templates/emails/plain/customer-completed-order.php:38 -#: templates/emails/plain/customer-note.php:46 -#: templates/emails/plain/customer-processing-order.php:38 -#@ woocommerce -msgid "Your details" -msgstr "Detaljene dine" - -#: templates/emails/plain/email-order-items.php:29 -#, php-format -#@ woocommerce -msgid "Quantity: %s" -msgstr "Antall: %s" - -#: templates/emails/plain/email-order-items.php:32 -#, php-format -#@ woocommerce -msgid "Cost: %s" -msgstr "Kostnad: %s" - -#: includes/class-wc-product-simple.php:48 -#: includes/class-wc-product-variation.php:211 -#@ woocommerce -msgid "Read More" -msgstr "Les mer" - -#: includes/class-wc-product-variable.php:42 -#@ woocommerce -msgid "Select options" -msgstr "Velg alternativ" - -#: templates/loop/result-count.php:28 -#@ woocommerce -msgid "Showing the single result" -msgstr "Viser det ene resultatet" - -#: templates/loop/result-count.php:30 -#, php-format -#@ woocommerce -msgid "Showing all %d results" -msgstr "Viser alle %d resultater" - -#: templates/loop/result-count.php:32 -#, php-format -#@ woocommerce -msgctxt "%1$d = first, %2$d = last, %3$d = total" -msgid "Showing %1$d–%2$d of %3$d results" -msgstr "Viser %1$d–%2$d av %3$d resultater" - -#: templates/loop/sale-flash.php:16 -#: templates/single-product/sale-flash.php:16 -#@ woocommerce -msgid "Sale!" -msgstr "På Salg!" - -#: templates/loop/orderby.php:21 -#@ woocommerce -msgid "Default sorting" -msgstr "Standard sortering" - -#: includes/admin/settings/class-wc-settings-products.php:257 -#@ woocommerce -msgid "Sort by most recent" -msgstr "Sorter etter nyeste" - -#: templates/myaccount/form-change-password.php:20 -#: templates/myaccount/form-lost-password.php:31 -#@ woocommerce -msgid "New password" -msgstr "Nytt passord" - -#: templates/myaccount/form-change-password.php:24 -#: templates/myaccount/form-lost-password.php:35 -#@ woocommerce -msgid "Re-enter new password" -msgstr "Gjenta nytt passord" - -#: templates/myaccount/form-change-password.php:29 -#: templates/myaccount/form-lost-password.php:46 -#@ woocommerce -msgid "Save" -msgstr "Lagre" - -#: templates/myaccount/form-edit-address.php:38 -#@ woocommerce -msgid "Save Address" -msgstr "Lagre adresse" - -#: templates/myaccount/form-login.php:25 -#: templates/myaccount/form-login.php:44 -#: templates/shop/form-login.php:35 -#@ woocommerce -msgid "Login" -msgstr "Logg inn" - -#: templates/myaccount/form-login.php:63 -#: templates/myaccount/form-login.php:96 -#@ woocommerce -msgid "Register" -msgstr "Registrer" - -#: includes/admin/reports/class-wc-report-customer-list.php:238 -#: templates/myaccount/form-login.php:72 -#@ woocommerce -msgid "Username" -msgstr "Brukernavn" - -#: includes/admin/class-wc-admin-profile.php:88 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:67 -#: includes/admin/reports/class-wc-report-customer-list.php:239 -#: templates/single-product-reviews.php:61 -#@ woocommerce -msgid "Email" -msgstr "Epost" - -#: templates/myaccount/form-lost-password.php:22 -#@ woocommerce -msgid "Lost your password? Please enter your username or email address. You will receive a link to create a new password via email." -msgstr "Glemt passordet ditt? Vennligst skriv inn brukernavnet eller epostadressen. Du vil motta en lenke via epost for å generere et nytt passord." - -#: templates/myaccount/form-lost-password.php:28 -#@ woocommerce -msgid "Enter a new password below." -msgstr "Skriv inn et nytt passord nedenfor." - -#: templates/myaccount/form-lost-password.php:46 -#@ woocommerce -msgid "Reset Password" -msgstr "Tlbakestill passord" - -#: templates/myaccount/my-address.php:17 -#@ woocommerce -msgid "My Addresses" -msgstr "Mine adresser" - -#: templates/myaccount/my-address.php:23 -#@ woocommerce -msgid "My Address" -msgstr "Min adresse" - -#: templates/myaccount/my-address.php:35 -#@ woocommerce -msgid "The following addresses will be used on the checkout page by default." -msgstr "Følgende adresser kommer til å bli brukt på kassen-siden som standard." - -#: includes/admin/class-wc-admin-attributes.php:323 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:118 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:250 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:82 -#: includes/admin/reports/class-wc-report-customer-list.php:181 -#: includes/admin/reports/class-wc-report-stock.php:107 -#: includes/class-wc-post-types.php:245 -#: includes/class-wc-post-types.php:297 -#: includes/class-wc-post-types.php:336 -#: templates/myaccount/my-address.php:45 -#@ woocommerce -#@ default -msgid "Edit" -msgstr "Rediger" - -#: templates/myaccount/my-address.php:64 -#@ woocommerce -msgid "You have not set up this type of address yet." -msgstr "Du har ikke satt opp denne type adresse ennå." - -#: templates/myaccount/my-downloads.php:18 -#@ woocommerce -msgid "Available downloads" -msgstr "Tilgjengelige nedlastinger" - -#: templates/myaccount/my-downloads.php:27 -#, php-format -#@ woocommerce -msgid "%s download remaining" -msgid_plural "%s downloads remaining" -msgstr[0] "%s nedlasting gjenstår" -msgstr[1] "%s nedlastinger gjenstår" - -#: templates/myaccount/my-orders.php:26 -#@ woocommerce -msgid "Recent Orders" -msgstr "Nylige ordrer" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:87 -#: includes/class-wc-post-types.php:294 -#: templates/myaccount/my-orders.php:32 -#@ woocommerce -msgid "Order" -msgstr "Ordre" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:86 -#: includes/admin/settings/class-wc-settings-checkout.php:229 -#: includes/admin/settings/class-wc-settings-shipping.php:205 -#: templates/myaccount/my-orders.php:34 -#@ woocommerce -msgid "Status" -msgstr "Status" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:138 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:169 -#: templates/myaccount/my-orders.php:77 -#@ woocommerce -msgid "Cancel" -msgstr "Avbryt" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:266 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:298 -#: includes/admin/reports/class-wc-report-stock.php:114 -#: templates/myaccount/my-orders.php:82 -#@ default -#@ woocommerce -msgid "View" -msgstr "Vis" - -#: templates/order/form-tracking.php:17 -#@ woocommerce -msgid "To track your order please enter your Order ID in the box below and press return. This was given to you on your receipt and in the confirmation email you should have received." -msgstr "For å lagre ordren dir, skriv ordre-IDen din i boksen nedenfor og trykk enter. Ordre-ID finner du på kvittering din og i ordrebekreftelsen du skal ha mottatt på epost." - -#: templates/order/form-tracking.php:19 -#@ woocommerce -msgid "Order ID" -msgstr "Ordre-ID" - -#: templates/order/form-tracking.php:19 -#@ woocommerce -msgid "Found in your order confirmation email." -msgstr "Finnes i eposten din med ordrebekrefelse." - -#: templates/order/form-tracking.php:20 -#@ woocommerce -msgid "Billing Email" -msgstr "Epostadresse for fakturering" - -#: templates/order/form-tracking.php:20 -#@ woocommerce -msgid "Email you used during checkout." -msgstr "Epostadressen som du oppgav i kassen." - -#: templates/order/form-tracking.php:23 -#@ woocommerce -msgid "Track" -msgstr "Spor" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:139 -#: templates/order/order-details.php:16 -#@ woocommerce -msgid "Order Details" -msgstr "Ordredetaljer" - -#: includes/wc-template-functions.php:1499 -#@ woocommerce -msgid "Order Again" -msgstr "Bestill på nytt" - -#: templates/order/order-details.php:102 -#@ woocommerce -msgid "Telephone:" -msgstr "Telefon:" - -#: templates/order/tracking.php:18 -#, php-format -#@ woocommerce -msgid "Order %s which was made %s has the status “%s”" -msgstr "Ordre %s som var lagt inn %s har status “%s”" - -#: templates/order/tracking.php:18 -#@ woocommerce -msgid "ago" -msgstr "siden" - -#: templates/order/tracking.php:20 -#@ woocommerce -msgid "and was completed" -msgstr "og ble gjennomført" - -#: templates/order/tracking.php:20 -#@ woocommerce -msgid " ago" -msgstr "siden" - -#: templates/shop/breadcrumb.php:63 -#@ woocommerce -msgid "Products tagged “" -msgstr "Produkter med stikkord “" - -#: templates/shop/breadcrumb.php:91 -#: templates/shop/breadcrumb.php:189 -#@ woocommerce -msgid "Search results for “" -msgstr "Søkeresultat for “" - -#: templates/shop/breadcrumb.php:147 -#@ woocommerce -msgid "Error 404" -msgstr "Feil 404" - -#: templates/shop/breadcrumb.php:193 -#@ woocommerce -msgid "Posts tagged “" -msgstr "Innlegg med stikkord “" - -#: templates/shop/breadcrumb.php:198 -#@ woocommerce -msgid "Author:" -msgstr "Forfatter:" - -#: templates/shop/breadcrumb.php:203 -#@ woocommerce -msgid "Page" -msgstr "Side" - -#: templates/single-product/add-to-cart/variable.php:25 -#@ woocommerce -msgid "Choose an option" -msgstr "Velg en…" - -#: templates/single-product/add-to-cart/variable.php:73 -#@ woocommerce -msgid "Clear selection" -msgstr "Nullstill valg" - -#: templates/single-product/meta.php:24 -#@ product_cat -msgid "Category:" -msgid_plural "Categories:" -msgstr[0] "Kategori:" -msgstr[1] "Kategorier:" - -#: templates/single-product/meta.php:26 -#@ product_tag -msgid "Tag:" -msgid_plural "Tags:" -msgstr[0] "Stikkord:" -msgstr[1] "Stikkord:" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:343 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:765 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:96 -#: includes/admin/views/html-bulk-edit-product.php:103 -#: includes/admin/views/html-quick-edit-product.php:84 -#: templates/single-product/product-attributes.php:28 -#@ woocommerce -msgid "Weight" -msgstr "Vekt" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:348 -#: templates/single-product/product-attributes.php:37 -#@ woocommerce -msgid "Dimensions" -msgstr "Dimensjoner" - -#: templates/single-product/related.php:36 -#@ woocommerce -msgid "Related Products" -msgstr "Relaterte produkter" - -#: templates/single-product/review.php:34 -#@ woocommerce -msgid "Your comment is awaiting approval" -msgstr "Kommentaren din venter på godkjennelse" - -#: templates/single-product/review.php:43 -#@ woocommerce -msgid "verified owner" -msgstr "bekreftet eier" - -#: templates/single-product/tabs/description.php:14 -#@ woocommerce -msgid "Product Description" -msgstr "Produktbeskrivelse" - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:140 -#: templates/single-product-reviews.php:23 -#@ woocommerce -msgid "Reviews" -msgstr "Anmeldelser" - -#: templates/single-product/up-sells.php:39 -#@ woocommerce -msgid "You may also like…" -msgstr "Du liker kanskje også…" - -#: templates/single-product-reviews.php:21 -#, php-format -#@ woocommerce -msgid "%s review for %s" -msgid_plural "%s reviews for %s" -msgstr[0] "%s anmeldelse for %s" -msgstr[1] "%s anmeldelser for %s" - -#: templates/single-product-reviews.php:54 -#@ woocommerce -msgid "Add a review" -msgstr "Skriv en anmeldelse" - -#: templates/single-product-reviews.php:54 -#@ woocommerce -msgid "Be the first to review" -msgstr "Bli den første som skriver en anmeldelse" - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:109 -#@ woocommerce -msgid "Rating" -msgstr "Rangering" - -#: templates/single-product-reviews.php:71 -#@ woocommerce -msgid "Rate…" -msgstr "Vurder…" - -#: templates/single-product-reviews.php:72 -#@ woocommerce -msgid "Perfect" -msgstr "Perfekt" - -#: templates/single-product-reviews.php:73 -#@ woocommerce -msgid "Good" -msgstr "Bra" - -#: templates/single-product-reviews.php:74 -#@ woocommerce -msgid "Average" -msgstr "Gjennomsnittlig" - -#: templates/single-product-reviews.php:75 -#@ woocommerce -msgid "Not that bad" -msgstr "Ikke så dårlig" - -#: templates/single-product-reviews.php:76 -#@ woocommerce -msgid "Very Poor" -msgstr "Veldig dårlig" - -#: templates/single-product-reviews.php:80 -#@ woocommerce -msgid "Your Review" -msgstr "Anmeldelsen din" - -#: includes/class-wc-ajax.php:158 -#@ woocommerce -msgid "Sorry, your session has expired." -msgstr "Beklager, sesjonen din på denne siden har gått ut på tid" - -#: includes/class-wc-ajax.php:269 -#: includes/class-wc-ajax.php:298 -#: includes/class-wc-ajax.php:315 -#@ woocommerce -msgid "You do not have sufficient permissions to access this page." -msgstr "Du har ikke tilstrekkelig rettigheter for å få tilgang til denne siden" - -#: includes/class-wc-ajax.php:272 -#: includes/class-wc-ajax.php:299 -#: includes/class-wc-ajax.php:316 -#@ woocommerce -msgid "You have taken too long. Please go back and retry." -msgstr "Du har brukt for lang tid. Vennligst gå tilbake og prøv igjen." - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:119 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:132 -#: includes/class-wc-ajax.php:529 -#@ woocommerce -msgid "Same as parent" -msgstr "Samme som forelder" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:256 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:733 -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:27 -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:39 -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:122 -#: includes/admin/settings/class-wc-settings-tax.php:122 -#: includes/admin/settings/class-wc-settings-tax.php:241 -#: includes/admin/views/html-bulk-edit-product.php:83 -#: includes/admin/views/html-quick-edit-product.php:61 -#: includes/class-wc-ajax.php:530 -#@ woocommerce -msgid "Standard" -msgstr "Standard" - -#: includes/class-wc-ajax.php:1026 -#: includes/class-wc-ajax.php:1027 -#, php-format -#@ woocommerce -msgid "Item #%s stock increased from %s to %s." -msgstr "Gjenstand #%s lagersaldo økes fra %s til %s." - -#: includes/class-wc-ajax.php:1115 -#@ woocommerce -msgid "Value" -msgstr "Verdi" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:46 -#: includes/class-wc-ajax.php:1333 -#@ woocommerce -msgid "Delete note" -msgstr "Slett notat" - -#: includes/wc-product-functions.php:235 -#@ woocommerce -msgctxt "slug" -msgid "uncategorized" -msgstr "ukategorisert" - -#: includes/wc-term-functions.php:113 -#@ woocommerce -msgid "Select a category" -msgstr "Velg kategori" - -#: includes/wc-term-functions.php:117 -#@ woocommerce -msgid "Uncategorized" -msgstr "Ukategorisert" - -#: includes/admin/reports/class-wc-report-customer-list.php:22 -#: includes/class-wc-install.php:422 -#@ woocommerce -msgid "Customer" -msgstr "Kunde" - -#: includes/class-wc-install.php:429 -#@ woocommerce -msgid "Shop Manager" -msgstr "Butikksjef" - -#: includes/wc-order-functions.php:290 -#@ woocommerce -msgid "Unpaid order cancelled - time limit reached." -msgstr "Ubetalt ordre kansellert -tidsfrist nådd." - -#: includes/class-wc-form-handler.php:331 -#: includes/class-wc-form-handler.php:378 -#@ woocommerce -msgid "Cart updated." -msgstr "Handlekurv oppdatert." - -#: includes/class-wc-form-handler.php:362 -#, php-format -#@ woocommerce -msgid "You can only have 1 %s in your cart." -msgstr "Du kan bare ha 1 %s i handlekurven din." - -#: includes/class-wc-form-handler.php:512 -#: includes/class-wc-form-handler.php:570 -#@ woocommerce -msgid "Please choose product options…" -msgstr "Vennligst velg produktvalg…" - -#: includes/class-wc-form-handler.php:603 -#@ woocommerce -msgid "Please choose the quantity of items you wish to add to your cart…" -msgstr "Vennligst velg antall gjenstander du ønsker å legge i handlekurven…" - -#: includes/class-wc-form-handler.php:610 -#@ woocommerce -msgid "Please choose a product to add to your cart…" -msgstr "Vennligst velg et produkt å legge i handlekurven…" - -#: includes/wc-cart-functions.php:87 -#, php-format -#@ woocommerce -msgid "Added "%s" to your cart." -msgstr "Lagt til "%s" i handlekurven din" - -#: includes/wc-cart-functions.php:87 -#@ woocommerce -msgid "" and "" -msgstr "" og "" - -#: includes/wc-cart-functions.php:90 -#, php-format -#@ woocommerce -msgid ""%s" was successfully added to your cart." -msgstr ""%s" ble vellykket lagt til i handlekurven din." - -#: includes/wc-cart-functions.php:98 -#@ woocommerce -msgid "Continue Shopping →" -msgstr "Fortsett å handle →" - -#: includes/class-wc-form-handler.php:673 -#@ woocommerce -msgid "Username is required." -msgstr "Brukernavn er påkrevd." - -#: includes/class-wc-form-handler.php:676 -#@ woocommerce -msgid "Password is required." -msgstr "Passord påkrevd." - -#: includes/class-wc-form-handler.php:794 -#@ woocommerce -msgid "Anti-spam field was filled in." -msgstr "Anti-spamfelt ble utfyllt." - -#: includes/class-wc-form-handler.php:439 -#@ woocommerce -msgid "The cart has been filled with the items from your previous order." -msgstr "Handlekurven har blitt oppdatert med varene fra ditt tidligere kjøp." - -#: includes/class-wc-form-handler.php:462 -#@ woocommerce -msgid "Order cancelled by customer." -msgstr "Ordre avbrutt av kunde" - -#: includes/class-wc-form-handler.php:465 -#@ woocommerce -msgid "Your order was cancelled." -msgstr "Ordren din ble kansellert." - -#: includes/class-wc-form-handler.php:471 -#@ woocommerce -msgid "Your order is no longer pending and could not be cancelled. Please contact us if you need assistance." -msgstr "Ordren din er behandlet ferdig og kan ikke avbrytes. Vennligst kontakt oss dersom du trenger hjelp." - -#: includes/class-wc-download-handler.php:37 -#@ woocommerce -msgid "Invalid email address." -msgstr "Ugyldig epostadresse" - -#: includes/class-wc-download-handler.php:37 -#: includes/class-wc-download-handler.php:61 -#: includes/class-wc-download-handler.php:81 -#: includes/class-wc-download-handler.php:87 -#: includes/class-wc-download-handler.php:91 -#: includes/class-wc-download-handler.php:94 -#: includes/class-wc-download-handler.php:137 -#: includes/class-wc-download-handler.php:267 -#@ woocommerce -msgid "Go to homepage →" -msgstr "Gå til startsiden →" - -#: includes/class-wc-download-handler.php:61 -#@ woocommerce -msgid "Invalid download." -msgstr "Ugyldig nedlasting" - -#: includes/class-wc-download-handler.php:73 -#@ woocommerce -msgid "You must be logged in to download files." -msgstr "Du må være innlogget for å laste ned filer." - -#: includes/class-wc-download-handler.php:76 -#@ woocommerce -msgid "This is not your download link." -msgstr "Dette er ikke din nedlastingslenke." - -#: includes/class-wc-download-handler.php:81 -#@ woocommerce -msgid "Product no longer exists." -msgstr "Produktet eksisterer ikke lenger." - -#: includes/class-wc-download-handler.php:91 -#@ woocommerce -msgid "Sorry, you have reached your download limit for this file" -msgstr "Beklager, du har nådd grensen for antall nedlastninger av denne filen" - -#: includes/class-wc-download-handler.php:94 -#@ woocommerce -msgid "Sorry, this download has expired" -msgstr "Beklager, denne nedlastingen har utløpt" - -#: includes/class-wc-download-handler.php:267 -#@ woocommerce -msgid "File not found" -msgstr "Fant ikke filen" - -#: includes/wc-template-functions.php:101 -#@ woocommerce -msgid "New products" -msgstr "Nye produkter" - -#: includes/wc-template-functions.php:109 -#, php-format -#@ woocommerce -msgid "New products added to %s" -msgstr "Nye produkter lagt til i %s" - -#: includes/wc-template-functions.php:117 -#, php-format -#@ woocommerce -msgid "New products tagged %s" -msgstr "Nye produkterstikkord %s" - -#: includes/class-wc-comments.php:110 -#@ woocommerce -msgid "You have taken too long. Please go back and refresh the page." -msgstr "Du har brukt for lang tid. Vennligst gå tilbake og last siden på nytt." - -#: includes/class-wc-comments.php:113 -#@ woocommerce -msgid "Please rate the product." -msgstr "Vennligst ranger dette produktet." - -#: includes/admin/settings/class-wc-settings-general.php:96 -#: includes/wc-template-functions.php:350 -#@ woocommerce -msgid "This is a demo store for testing purposes — no orders shall be fulfilled." -msgstr "Dette er en demobutikk for testing — ingen ordrer kan gjennomføres." - -#: includes/wc-template-functions.php:369 -#, php-format -#@ woocommerce -msgid "Search Results: “%s”" -msgstr "Søkeresultater: “%s”" - -#: includes/wc-template-functions.php:372 -#, php-format -#@ woocommerce -msgid " – Page %s" -msgstr " – Side %s" - -#: includes/wc-template-functions.php:1227 -#@ woocommerce -msgctxt "breadcrumb" -msgid "Home" -msgstr "Hjem" - -#: includes/class-wc-frontend-scripts.php:116 -#: includes/wc-template-functions.php:1542 -#@ woocommerce -msgid "required" -msgstr "påkrevet" - -#: includes/wc-template-functions.php:1596 -#@ woocommerce -msgid "Update country" -msgstr "Oppdater land" - -#: includes/wc-template-functions.php:1751 -#@ woocommerce -msgid "Search for:" -msgstr "Søk etter:" - -#: includes/wc-template-functions.php:1752 -#@ woocommerce -msgid "Search for products" -msgstr "Søk etter produkter" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:106 -#: includes/admin/views/html-bulk-edit-product.php:159 -#: includes/admin/views/html-quick-edit-product.php:116 -#: includes/wc-template-functions.php:1753 -#@ woocommerce -msgid "Search" -msgstr "Søk" - -#: includes/admin/class-wc-admin-permalink-settings.php:65 -#: includes/class-wc-post-types.php:85 -#: includes/updates/woocommerce-update-2.0.php:49 -#@ woocommerce -msgctxt "slug" -msgid "product-category" -msgstr "produktkategori" - -#: includes/admin/class-wc-admin-permalink-settings.php:75 -#: includes/class-wc-post-types.php:120 -#: includes/updates/woocommerce-update-2.0.php:50 -#@ woocommerce -msgctxt "slug" -msgid "product-tag" -msgstr "produktstikkord" - -#: includes/class-wc-post-types.php:234 -#: includes/updates/woocommerce-update-2.0.php:58 -#@ woocommerce -msgctxt "slug" -msgid "product" -msgstr "produkt" - -#: includes/class-wc-post-types.php:66 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Categories" -msgstr "Kategorier" - -#: includes/class-wc-post-types.php:67 -#@ woocommerce -msgid "Search Product Categories" -msgstr "Søk på produktkategori" - -#: includes/class-wc-post-types.php:68 -#@ woocommerce -msgid "All Product Categories" -msgstr "Alle produktkategorier" - -#: includes/class-wc-post-types.php:69 -#@ woocommerce -msgid "Parent Product Category" -msgstr "Forelder produktkategori" - -#: includes/class-wc-post-types.php:70 -#@ woocommerce -msgid "Parent Product Category:" -msgstr "Forelder produktkategori:" - -#: includes/class-wc-post-types.php:71 -#@ woocommerce -msgid "Edit Product Category" -msgstr "Rediger produktkategori" - -#: includes/class-wc-post-types.php:72 -#@ woocommerce -msgid "Update Product Category" -msgstr "Oppdater produktkategori" - -#: includes/class-wc-post-types.php:73 -#@ woocommerce -msgid "Add New Product Category" -msgstr "Legg til ny produktkategori" - -#: includes/class-wc-post-types.php:74 -#@ woocommerce -msgid "New Product Category Name" -msgstr "Nytt produktkategorinavn" - -#: includes/class-wc-post-types.php:101 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Tags" -msgstr "Stikkord" - -#: includes/class-wc-post-types.php:102 -#@ woocommerce -msgid "Search Product Tags" -msgstr "Søk produktstikkord" - -#: includes/class-wc-post-types.php:103 -#@ woocommerce -msgid "All Product Tags" -msgstr "Alle produktstikkord" - -#: includes/class-wc-post-types.php:104 -#@ woocommerce -msgid "Parent Product Tag" -msgstr "Forelder produktstikkord" - -#: includes/class-wc-post-types.php:105 -#@ woocommerce -msgid "Parent Product Tag:" -msgstr "Forelder produktstikkord:" - -#: includes/class-wc-post-types.php:106 -#@ woocommerce -msgid "Edit Product Tag" -msgstr "Rediger produktstikkord" - -#: includes/class-wc-post-types.php:107 -#@ woocommerce -msgid "Update Product Tag" -msgstr "Oppdater produkstikkord" - -#: includes/class-wc-post-types.php:108 -#@ woocommerce -msgid "Add New Product Tag" -msgstr "Legg til ny produktstikkord" - -#: includes/class-wc-post-types.php:109 -#@ woocommerce -msgid "New Product Tag Name" -msgstr "Nytt stikordsnavn på produkt" - -#: includes/class-wc-post-types.php:131 -#: includes/class-wc-post-types.php:133 -#@ woocommerce -msgid "Shipping Classes" -msgstr "Fraktklasser" - -#: includes/class-wc-post-types.php:135 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Shipping Classes" -msgstr "Fraktklasser" - -#: includes/class-wc-post-types.php:136 -#@ woocommerce -msgid "Search Shipping Classes" -msgstr "Søk fraktklasser" - -#: includes/class-wc-post-types.php:137 -#@ woocommerce -msgid "All Shipping Classes" -msgstr "Alle fraktklasser" - -#: includes/class-wc-post-types.php:138 -#@ woocommerce -msgid "Parent Shipping Class" -msgstr "Foreldre-klasse for frakt" - -#: includes/class-wc-post-types.php:139 -#@ woocommerce -msgid "Parent Shipping Class:" -msgstr "Foreldre-klasse for frakt:" - -#: includes/class-wc-post-types.php:140 -#@ woocommerce -msgid "Edit Shipping Class" -msgstr "Redigere fraktklasse" - -#: includes/class-wc-post-types.php:141 -#@ woocommerce -msgid "Update Shipping Class" -msgstr "Oppdater fraktklasse" - -#: includes/class-wc-post-types.php:142 -#@ woocommerce -msgid "Add New Shipping Class" -msgstr "Legg til ny fraktklasse" - -#: includes/class-wc-post-types.php:143 -#@ woocommerce -msgid "New Shipping Class Name" -msgstr "Nytt navn på fraktklasse" - -#: includes/admin/reports/class-wc-report-sales-by-category.php:168 -#@ woocommerce -msgid "All" -msgstr "Alle" - -#: includes/admin/reports/class-wc-report-stock.php:138 -#@ woocommerce -msgid "Parent" -msgstr "Forelder" - -#: includes/admin/class-wc-admin-attributes.php:283 -#@ woocommerce -msgid "Update" -msgstr "Oppdatere" - -#: includes/class-wc-post-types.php:242 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Products" -msgstr "Produkter" - -#: includes/class-wc-post-types.php:243 -#@ woocommerce -msgid "Add Product" -msgstr "Legg til produkt" - -#: includes/class-wc-post-types.php:244 -#@ woocommerce -msgid "Add New Product" -msgstr "Legg til nytt produkt" - -#: includes/class-wc-post-types.php:246 -#@ woocommerce -msgid "Edit Product" -msgstr "Rediger produkt" - -#: includes/class-wc-post-types.php:247 -#@ woocommerce -msgid "New Product" -msgstr "Nytt produkt" - -#: includes/class-wc-post-types.php:248 -#: includes/class-wc-post-types.php:249 -#@ woocommerce -msgid "View Product" -msgstr "Vis produkt" - -#: includes/class-wc-post-types.php:250 -#: includes/widgets/class-wc-widget-product-search.php:27 -#@ woocommerce -msgid "Search Products" -msgstr "Søk produkter" - -#: includes/class-wc-post-types.php:251 -#@ woocommerce -msgid "No Products found" -msgstr "Fant ingen produkter" - -#: includes/class-wc-post-types.php:252 -#@ woocommerce -msgid "No Products found in trash" -msgstr "Fant ingen produkter i papirkurven" - -#: includes/class-wc-post-types.php:253 -#@ woocommerce -msgid "Parent Product" -msgstr "Foreldreprodukt" - -#: includes/class-wc-post-types.php:255 -#@ woocommerce -msgid "This is where you can add new products to your store." -msgstr "Dette er hvor du kan legge til nye produkter i butikken din." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:109 -#: includes/class-wc-post-types.php:275 -#@ woocommerce -msgid "Variations" -msgstr "Varianter" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:868 -#@ woocommerce -msgid "Add Variation" -msgstr "Legg til variant" - -#: includes/admin/class-wc-admin-menus.php:126 -#: includes/admin/class-wc-admin-menus.php:128 -#: includes/class-wc-post-types.php:283 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Ordrer" - -#: includes/admin/class-wc-admin-reports.php:46 -#: includes/admin/reports/class-wc-report-customer-list.php:241 -#: includes/class-wc-post-types.php:293 -#@ woocommerce -msgid "Orders" -msgstr "Ordrer" - -#: includes/class-wc-post-types.php:295 -#@ woocommerce -msgid "Add Order" -msgstr "Legg til ordre" - -#: includes/class-wc-post-types.php:296 -#@ woocommerce -msgid "Add New Order" -msgstr "Legg til ny ordre" - -#: includes/class-wc-post-types.php:298 -#@ woocommerce -msgid "Edit Order" -msgstr "Rediger ordre" - -#: includes/class-wc-post-types.php:299 -#@ woocommerce -msgid "New Order" -msgstr "Ny ordre" - -#: includes/class-wc-post-types.php:302 -#@ woocommerce -msgid "Search Orders" -msgstr "Søk ordrer" - -#: includes/class-wc-post-types.php:303 -#@ woocommerce -msgid "No Orders found" -msgstr "Fant ingen ordre" - -#: includes/class-wc-post-types.php:304 -#@ woocommerce -msgid "No Orders found in trash" -msgstr "Fant ingen ordre i papirkurven" - -#: includes/class-wc-post-types.php:305 -#@ woocommerce -msgid "Parent Orders" -msgstr "Foreldreordre" - -#: includes/class-wc-post-types.php:308 -#@ woocommerce -msgid "This is where store orders are stored." -msgstr "Dette er hvor butikkordre lagres." - -#: includes/admin/settings/class-wc-settings-checkout.php:68 -#: includes/class-wc-post-types.php:331 -#@ woocommerce -msgid "Coupons" -msgstr "Rabattkuponger" - -#: includes/class-wc-post-types.php:333 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Coupons" -msgstr "Rabattkuponger" - -#: includes/class-wc-post-types.php:334 -#@ woocommerce -msgid "Add Coupon" -msgstr "Legg til rabattkupong" - -#: includes/class-wc-post-types.php:335 -#@ woocommerce -msgid "Add New Coupon" -msgstr "Legg til ny rabattkupong" - -#: includes/class-wc-post-types.php:337 -#@ woocommerce -msgid "Edit Coupon" -msgstr "Rediger kupong" - -#: includes/class-wc-post-types.php:338 -#@ woocommerce -msgid "New Coupon" -msgstr "Ny rabattkupong" - -#: includes/class-wc-post-types.php:339 -#@ woocommerce -msgid "View Coupons" -msgstr "Vis kuponger" - -#: includes/class-wc-post-types.php:340 -#@ woocommerce -msgid "View Coupon" -msgstr "Vis kupong" - -#: includes/class-wc-post-types.php:341 -#@ woocommerce -msgid "Search Coupons" -msgstr "Søk efter rabattkuponger" - -#: includes/class-wc-post-types.php:342 -#@ woocommerce -msgid "No Coupons found" -msgstr "Ingen kuponger funnet" - -#: includes/class-wc-post-types.php:343 -#@ woocommerce -msgid "No Coupons found in trash" -msgstr "Ingen kuponger funnet i papirkurven" - -#: includes/class-wc-post-types.php:344 -#@ woocommerce -msgid "Parent Coupon" -msgstr "Foreldrekupong" - -#: includes/class-wc-post-types.php:346 -#@ woocommerce -msgid "This is where you can add new coupons that customers can use in your store." -msgstr "Dette er hvor du kan legge til nye rabattkuponger som kundene kan bruke i butikken din." - -#: includes/class-wc-frontend-scripts.php:152 -#@ woocommerce -msgid "Select an option…" -msgstr "Velg et alternativ…" - -#: includes/class-wc-frontend-scripts.php:109 -#@ woocommerce -msgid "Please select a rating" -msgstr "Vennligst velg en rangering" - -#: includes/class-wc-frontend-scripts.php:146 -#@ woocommerce -msgid "Sorry, no products matched your selection. Please choose a different combination." -msgstr "Beklager, ingen produkter matchet valget ditt. Vennligst velg en annen kombinasjon." - -#: includes/wc-coupon-functions.php:23 -#@ woocommerce -msgid "Cart % Discount" -msgstr "Prosentvis % rabatt i handlekurven" - -#: includes/wc-coupon-functions.php:24 -#@ woocommerce -msgid "Product Discount" -msgstr "Produktrabatt" - -#: includes/wc-coupon-functions.php:25 -#@ woocommerce -msgid "Product % Discount" -msgstr "% produktrabatt" - -#: includes/admin/class-wc-admin-settings.php:52 -#@ woocommerce -msgid "Action failed. Please refresh the page and retry." -msgstr "Handling mislyktes. Vennligst oppdater siden og prøv igjen." - -#: includes/admin/class-wc-admin-importers.php:32 -#@ woocommerce -msgid "WooCommerce Tax Rates (CSV)" -msgstr "WooCommerce skattesatser (CSV)" - -#: includes/admin/class-wc-admin-importers.php:32 -#@ woocommerce -msgid "Import tax rates to your store via a csv file." -msgstr "Importer skattesatser til butikken via en CSV-fil." - -#: includes/admin/importers/class-wc-tax-rate-importer.php:103 -#: includes/admin/importers/class-wc-tax-rate-importer.php:190 -#: includes/admin/importers/class-wc-tax-rate-importer.php:230 -#: includes/admin/importers/class-wc-tax-rate-importer.php:245 -#@ woocommerce -msgid "Sorry, there has been an error." -msgstr "Beklager, det har oppstått en feil." - -#: includes/admin/importers/class-wc-tax-rate-importer.php:104 -#@ woocommerce -msgid "The file does not exist, please try again." -msgstr "Filen eksisterer ikke. Vennligst forsøk igjen." - -#: includes/admin/importers/class-wc-tax-rate-importer.php:191 -#@ woocommerce -msgid "The CSV is invalid." -msgstr "CSV er ikke gyldig." - -#: includes/admin/importers/class-wc-tax-rate-importer.php:202 -#, php-format -#@ woocommerce -msgid "Import complete - imported %s tax rates and skipped %s." -msgstr "Import ferdig - importerte %s skattesatser og hoppet over %s." - -#: includes/admin/importers/class-wc-tax-rate-importer.php:212 -#@ woocommerce -msgid "All done!" -msgstr "Helt ferdig!" - -#: includes/admin/importers/class-wc-tax-rate-importer.php:212 -#@ woocommerce -msgid "View Tax Rates" -msgstr "Vis skattesatser" - -#: includes/admin/importers/class-wc-tax-rate-importer.php:263 -#@ woocommerce -msgid "Import Tax Rates" -msgstr "Importer skattesatser" - -#: includes/admin/importers/class-wc-tax-rate-importer.php:285 -#@ woocommerce -msgid "Hi there! Upload a CSV file containing tax rates to import the contents into your shop. Choose a .csv file to upload, then click \"Upload file and import\"." -msgstr "Hei der! Last opp en CSV-fil som inneholder skattesatser for å importere innholdet til butikken din. Velg en .csv-fil å laste opp og klikk \"Last opp fil og importer\"." - -#: includes/admin/importers/class-wc-tax-rate-importer.php:287 -#, php-format -#@ woocommerce -msgid "Tax rates need to be defined with columns in a specific order (10 columns). Click here to download a sample." -msgstr "Skattesatser må defineres med kolonner i en bestemt rekkefølge (10 kolonner). Klikk her for å laste ned et eksempel." - -#: includes/admin/importers/class-wc-tax-rate-importer.php:295 -#@ default -msgid "Before you can upload your import file, you will need to fix the following error:" -msgstr "Før du kan laste opp importfilen din, må du fikse følgende feil:" - -#: includes/admin/importers/class-wc-tax-rate-importer.php:304 -#@ default -msgid "Choose a file from your computer:" -msgstr "Velg en fil fra datamaskinen din:" - -#: includes/admin/importers/class-wc-tax-rate-importer.php:310 -#, php-format -#@ default -msgid "Maximum size: %s" -msgstr "Maksimum størrelse: %s" - -#: includes/admin/importers/class-wc-tax-rate-importer.php:315 -#@ woocommerce -msgid "OR enter path to file:" -msgstr "ELLER legg inn stil til filen:" - -#: includes/admin/importers/class-wc-tax-rate-importer.php:322 -#@ woocommerce -msgid "Delimiter" -msgstr "Skilletegn" - -#: includes/admin/importers/class-wc-tax-rate-importer.php:328 -#@ default -msgid "Upload file and import" -msgstr "Last opp fil og importer" - -#: includes/admin/class-wc-admin-duplicate-product.php:77 -#@ woocommerce -msgid "No product to duplicate has been supplied!" -msgstr "Ingen produkt å duplisere har blitt gitt!" - -#: includes/admin/class-wc-admin-duplicate-product.php:99 -#@ woocommerce -msgid "Product creation failed, could not find original product:" -msgstr "Produktetableringen mislyktes, kunne ikke finne originalprodukt:" - -#: includes/admin/class-wc-admin-duplicate-product.php:126 -#@ woocommerce -msgid "(Copy)" -msgstr "(Kopi)" - -#: includes/admin/views/html-notice-install.php:5 -#@ woocommerce -msgid "Welcome to WooCommerce – You're almost ready to start selling :)" -msgstr "Velkommen til WooCommerce – Du er nesten klar til å starte å selge :)" - -#: includes/admin/class-wc-admin-status.php:190 -#: includes/admin/views/html-notice-install.php:6 -#@ woocommerce -msgid "Install WooCommerce Pages" -msgstr "Installer WooCommerce-sider" - -#: includes/admin/views/html-notice-install.php:6 -#@ woocommerce -msgid "Skip setup" -msgstr "Hopp over oppsett" - -#: includes/admin/views/html-notice-theme-support.php:5 -#@ woocommerce -msgid "Your theme does not declare WooCommerce support – if you encounter layout issues please read our integration guide or choose a WooCommerce theme :)" -msgstr "Temaet ditt bekrefter ikke støtte av WooCommerce – Dersom du opplever problemer med layout, vennligst les integrasjonsguiden vår eller velg et WooCommerce-tema :)" - -#: includes/admin/views/html-notice-theme-support.php:6 -#@ woocommerce -msgid "Theme Integration Guide" -msgstr "Integreringsguide for tema" - -#: includes/admin/views/html-notice-theme-support.php:6 -#@ woocommerce -msgid "Hide this notice" -msgstr "Skjul dette varselet" - -#: includes/admin/views/html-notice-update.php:6 -#@ woocommerce -msgid "Run the updater" -msgstr "Kjør oppdateringsprogrammet" - -#: includes/admin/views/html-notice-update.php:10 -#@ woocommerce -msgid "It is strongly recommended that you backup your database before proceeding. Are you sure you wish to run the updater now?" -msgstr "Det anbefales på det sterkeste at du sikkerhetskopierer databasen før du fortsetter. Er du sikker på at du ønsker å kjøre oppdateringsprogrammet nå?" - -#: includes/admin/settings/class-wc-settings-accounts.php:86 -#@ woocommerce -msgid "Lost Password" -msgstr "Glemt passord" - -#: includes/admin/class-wc-admin-welcome.php:46 -#@ woocommerce -msgid "Welcome to WooCommerce" -msgstr "Velkommen til WooCommerce" - -#: includes/admin/class-wc-admin-welcome.php:191 -#, php-format -#@ woocommerce -msgid "Welcome to WooCommerce %s" -msgstr "Velkommen til WooCommerce %s" - -#: includes/admin/class-wc-admin-welcome.php:196 -#@ woocommerce -msgid "Thanks, all done!" -msgstr "Takk, helt ferdig!" - -#: includes/admin/class-wc-admin-welcome.php:198 -#@ woocommerce -msgid "Thank you for updating to the latest version!" -msgstr "Takk for at du oppdaterer til den nyeste versjonen!" - -#: includes/admin/class-wc-admin-welcome.php:200 -#@ woocommerce -msgid "Thanks for installing!" -msgstr "Takk for at du installerer!" - -#: includes/admin/class-wc-admin-welcome.php:202 -#, php-format -#@ woocommerce -msgid "%s WooCommerce %s is more powerful, stable, and secure than ever before. We hope you enjoy it." -msgstr "%s WooCommerce %s har mer kraft og er mer stabil og sikker enn noen gang. Vi håper dere nyter den." - -#: includes/admin/class-wc-admin-welcome.php:206 -#, php-format -#@ woocommerce -msgid "Version %s" -msgstr "Versjon %s" - -#: includes/admin/class-wc-admin-welcome.php:210 -#: woocommerce.php:178 -#@ woocommerce -msgid "Docs" -msgstr "Dokumenter" - -#: includes/admin/class-wc-admin-welcome.php:217 -#@ woocommerce -msgid "What's New" -msgstr "Hva er nytt" - -#: includes/admin/class-wc-admin-welcome.php:219 -#@ woocommerce -msgid "Credits" -msgstr "Bidragsytere" - -#: includes/admin/class-wc-admin-welcome.php:307 -#@ woocommerce -msgid "Under the Hood" -msgstr "Under panseret" - -#: includes/admin/class-wc-admin-welcome.php:364 -#@ woocommerce -msgid "Go to WooCommerce Settings" -msgstr "Gå til WooCommerce-innstillinger" - -#: includes/admin/class-wc-admin-welcome.php:382 -#@ woocommerce -msgid "WooCommerce is developed and maintained by a worldwide team of passionate individuals and backed by an awesome developer community. Want to see your name? Contribute to WooCommerce." -msgstr "WooCommerce er utviklet og vedlikeholdt av et verdensomspennende team av lidenskapelige mennesker og støttet av et fantastisk utviklersamfunn. Ønsker du å se navnet ditt? Bidra til WooCommerce." - -#: includes/admin/class-wc-admin-welcome.php:408 -#, php-format -#@ woocommerce -msgid "View %s" -msgstr "Vis %s" - -#: includes/admin/class-wc-admin-duplicate-product.php:43 -#@ woocommerce -msgid "Make a duplicate from this product" -msgstr "Lag et duplikat av dette produktet" - -#: includes/admin/class-wc-admin-duplicate-product.php:44 -#@ woocommerce -msgid "Duplicate" -msgstr "Dupliser" - -#: includes/admin/class-wc-admin-duplicate-product.php:67 -#@ woocommerce -msgid "Copy to a new draft" -msgstr "Kopier til nytt utkast" - -#: includes/admin/class-wc-admin-taxonomies.php:296 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:191 -#@ woocommerce -msgid "Image" -msgstr "Bilde" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:196 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:135 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:52 -#: includes/admin/views/html-quick-edit-product.php:11 -#@ woocommerce -msgid "SKU" -msgstr "VE" - -#: includes/admin/class-wc-admin-reports.php:92 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:199 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:764 -#: includes/admin/reports/class-wc-report-stock.php:20 -#: includes/admin/reports/class-wc-report-stock.php:21 -#@ woocommerce -msgid "Stock" -msgstr "Lager" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:203 -#: includes/admin/reports/class-wc-report-sales-by-category.php:138 -#@ woocommerce -msgid "Categories" -msgstr "Kategorier" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:204 -#@ woocommerce -msgid "Tags" -msgstr "Stikkord" - -#: includes/admin/class-wc-admin-assets.php:153 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:115 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:205 -#: includes/admin/views/html-bulk-edit-product.php:170 -#: includes/admin/views/html-quick-edit-product.php:128 -#@ woocommerce -msgid "Featured" -msgstr "Fremhevet" - -#: includes/admin/class-wc-admin-attributes.php:257 -#: includes/admin/class-wc-admin-attributes.php:309 -#: includes/admin/class-wc-admin-attributes.php:386 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:206 -#@ woocommerce -msgid "Type" -msgstr "Type" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:207 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:93 -#: includes/admin/reports/class-wc-report-coupon-usage.php:313 -#: includes/admin/reports/class-wc-report-customers.php:199 -#: includes/admin/reports/class-wc-report-sales-by-category.php:210 -#: includes/admin/reports/class-wc-report-sales-by-date.php:158 -#: includes/admin/reports/class-wc-report-sales-by-product.php:323 -#: includes/widgets/class-wc-widget-products.php:53 -#: templates/myaccount/my-orders.php:33 -#@ woocommerce -msgid "Date" -msgstr "Dato" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:250 -#@ default -msgid "Edit this item" -msgstr "Rediger denne gjenstanden" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:251 -#@ default -msgid "Edit this item inline" -msgstr "Rediger denne gjenstanden på linjen" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:251 -#@ default -msgid "Quick Edit" -msgstr "Hurtig- redigering" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:255 -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:107 -#@ default -msgid "Restore this item from the Trash" -msgstr "Gjenopprett denne gjenstanden fra papirkurven" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:255 -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:107 -#@ default -msgid "Restore" -msgstr "Gjenopprett" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:257 -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:109 -#@ default -msgid "Move this item to the Trash" -msgstr "Flytt denne gjenstanden til papirkurven" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:257 -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:109 -#@ default -msgid "Trash" -msgstr "Papirkurv" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:259 -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:111 -#@ default -msgid "Delete this item permanently" -msgstr "Slett denne gjenstanden permanent" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:259 -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:111 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:64 -#@ default -#@ woocommerce -msgid "Delete Permanently" -msgstr "Slett permanent" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:264 -#, php-format -#@ default -msgid "Preview “%s”" -msgstr "Forhåndsvis “%s”" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:264 -#@ default -msgid "Preview" -msgstr "Forhåndsvis" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:266 -#, php-format -#@ default -msgid "View “%s”" -msgstr "Vis “%s”" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:316 -#@ woocommerce -msgid "Grouped" -msgstr "Gruppert" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:318 -#@ woocommerce -msgid "External/Affiliate" -msgstr "Ekstern/Partner" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:322 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:513 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:51 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:213 -#@ woocommerce -msgid "Virtual" -msgstr "Virtuell" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:324 -#: includes/admin/post-types/class-wc-admin-cpt-product.php:506 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:58 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:211 -#@ woocommerce -msgid "Downloadable" -msgstr "Nedlastbar" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:326 -#@ woocommerce -msgid "Simple" -msgstr "Enkelt" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:330 -#@ woocommerce -msgid "Variable" -msgstr "Variabel" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:353 -#@ woocommerce -msgid "Toggle featured" -msgstr "Veksling vist" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:468 -#@ woocommerce -msgid "Show all product types" -msgstr "Vis alle produkttyper" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:480 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:37 -#@ woocommerce -msgid "Grouped product" -msgstr "Gruppert produkt" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:483 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:38 -#@ woocommerce -msgid "External/Affiliate product" -msgstr "Ekstern-/Partnerprodukt" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:489 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:36 -#@ woocommerce -msgid "Simple product" -msgstr "Enkeltprodukt" - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:93 -#: includes/admin/settings/class-wc-settings-products.php:283 -#: includes/admin/views/html-bulk-edit-product.php:4 -#: includes/admin/views/html-quick-edit-product.php:4 -#@ woocommerce -msgid "Product Data" -msgstr "Produktdata" - -#: includes/admin/views/html-quick-edit-product.php:24 -#@ woocommerce -msgid "Regular price" -msgstr "Ordinær pris" - -#: includes/admin/views/html-bulk-edit-product.php:34 -#: includes/admin/views/html-quick-edit-product.php:29 -#@ woocommerce -msgid "Sale" -msgstr "Salg" - -#: includes/admin/views/html-quick-edit-product.php:31 -#@ woocommerce -msgid "Sale price" -msgstr "Salgspris" - -#: includes/admin/views/html-bulk-edit-product.php:127 -#: includes/admin/views/html-quick-edit-product.php:95 -#@ woocommerce -msgid "L/W/H" -msgstr "L/B/H" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:350 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:766 -#: includes/admin/views/html-bulk-edit-product.php:143 -#: includes/admin/views/html-quick-edit-product.php:97 -#@ woocommerce -msgid "Length" -msgstr "Lengde" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:351 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:767 -#: includes/admin/views/html-bulk-edit-product.php:144 -#: includes/admin/views/html-quick-edit-product.php:98 -#@ woocommerce -msgid "Width" -msgstr "Bredde" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:352 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:768 -#: includes/admin/views/html-bulk-edit-product.php:145 -#: includes/admin/views/html-quick-edit-product.php:99 -#@ woocommerce -msgid "Height" -msgstr "Høyde" - -#: includes/admin/views/html-bulk-edit-product.php:151 -#: includes/admin/views/html-quick-edit-product.php:109 -#@ woocommerce -msgid "Visibility" -msgstr "Synlighet" - -#: includes/admin/views/html-bulk-edit-product.php:157 -#: includes/admin/views/html-quick-edit-product.php:114 -#@ woocommerce -msgid "Catalog & search" -msgstr "Katalog & søk" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:105 -#: includes/admin/views/html-bulk-edit-product.php:158 -#: includes/admin/views/html-quick-edit-product.php:115 -#@ woocommerce -msgid "Catalog" -msgstr "Katalog" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:107 -#: includes/admin/views/html-bulk-edit-product.php:160 -#: includes/admin/views/html-quick-edit-product.php:117 -#@ woocommerce -msgid "Hidden" -msgstr "Skjult" - -#: includes/admin/views/html-bulk-edit-product.php:188 -#: includes/admin/views/html-quick-edit-product.php:132 -#@ woocommerce -msgid "In stock?" -msgstr "På lager?" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:282 -#: includes/admin/views/html-bulk-edit-product.php:207 -#: includes/admin/views/html-quick-edit-product.php:153 -#@ woocommerce -msgid "Manage stock?" -msgstr "Administrere lager?" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:289 -#: includes/admin/views/html-bulk-edit-product.php:226 -#: includes/admin/views/html-bulk-edit-product.php:242 -#: includes/admin/views/html-quick-edit-product.php:157 -#@ woocommerce -msgid "Stock Qty" -msgstr "Langerantall" - -#: includes/admin/views/html-bulk-edit-product.php:15 -#: includes/admin/views/html-bulk-edit-product.php:39 -#: includes/admin/views/html-bulk-edit-product.php:63 -#: includes/admin/views/html-bulk-edit-product.php:82 -#: includes/admin/views/html-bulk-edit-product.php:108 -#: includes/admin/views/html-bulk-edit-product.php:132 -#: includes/admin/views/html-bulk-edit-product.php:156 -#: includes/admin/views/html-bulk-edit-product.php:175 -#: includes/admin/views/html-bulk-edit-product.php:193 -#: includes/admin/views/html-bulk-edit-product.php:212 -#: includes/admin/views/html-bulk-edit-product.php:231 -#: includes/admin/views/html-bulk-edit-product.php:252 -#@ woocommerce -msgid "— No Change —" -msgstr "— Ingen endring —" - -#: includes/admin/views/html-bulk-edit-product.php:16 -#: includes/admin/views/html-bulk-edit-product.php:40 -#: includes/admin/views/html-bulk-edit-product.php:109 -#: includes/admin/views/html-bulk-edit-product.php:133 -#: includes/admin/views/html-bulk-edit-product.php:232 -#@ woocommerce -msgid "Change to:" -msgstr "Endre til:" - -#: includes/admin/views/html-bulk-edit-product.php:17 -#: includes/admin/views/html-bulk-edit-product.php:41 -#@ woocommerce -msgid "Increase by (fixed amount or %):" -msgstr "Øk med (fast beløp eller %):" - -#: includes/admin/views/html-bulk-edit-product.php:18 -#: includes/admin/views/html-bulk-edit-product.php:42 -#@ woocommerce -msgid "Decrease by (fixed amount or %):" -msgstr "Reduser med (fast beløp eller %):" - -#: includes/admin/views/html-bulk-edit-product.php:28 -#: includes/admin/views/html-bulk-edit-product.php:53 -#@ woocommerce -msgid "Enter price" -msgstr "Tast inn pris" - -#: includes/admin/views/html-bulk-edit-product.php:43 -#@ woocommerce -msgid "Decrease regular price by (fixed amount or %):" -msgstr "Reduser ordinær pris med (fast beløp eller %):" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:355 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:135 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:200 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:202 -#: includes/admin/views/html-admin-page-status-report.php:38 -#: includes/admin/views/html-admin-page-status-report.php:66 -#: includes/admin/views/html-admin-page-status-report.php:91 -#: includes/admin/views/html-admin-page-status-report.php:276 -#: includes/admin/views/html-bulk-edit-product.php:176 -#: includes/admin/views/html-bulk-edit-product.php:213 -#@ woocommerce -msgid "Yes" -msgstr "Ja" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:357 -#: includes/admin/views/html-admin-page-status-report.php:38 -#: includes/admin/views/html-admin-page-status-report.php:66 -#: includes/admin/views/html-admin-page-status-report.php:91 -#: includes/admin/views/html-admin-page-status-report.php:276 -#: includes/admin/views/html-bulk-edit-product.php:177 -#: includes/admin/views/html-bulk-edit-product.php:214 -#@ woocommerce -msgid "No" -msgstr "Ingen" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:448 -#@ woocommerce -msgid "Sort Products" -msgstr "Sorter produkter" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:73 -#@ woocommerce -msgid "Code" -msgstr "Kode" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:74 -#@ woocommerce -msgid "Coupon type" -msgstr "Kupongtype" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:75 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:66 -#: includes/admin/reports/class-wc-report-sales-by-date.php:320 -#@ woocommerce -msgid "Coupon amount" -msgstr "Kupongbeløp" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:77 -#@ woocommerce -msgid "Product IDs" -msgstr "Produkt-IDer:" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:78 -#@ woocommerce -msgid "Usage / Limit" -msgstr "Bruk / Begrensning" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:79 -#@ woocommerce -msgid "Expiry date" -msgstr "Utløpsdato" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:98 -#@ woocommerce -msgid "Edit coupon" -msgstr "Rediger kupong" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:156 -#, php-format -#@ woocommerce -msgid "%s / %s" -msgstr "%s / %s" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:158 -#, php-format -#@ woocommerce -msgid "%s / ∞" -msgstr "%s / ∞" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:384 -#@ woocommerce -msgid "Show all statuses" -msgstr "Vis alle statuser" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:95 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:34 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:81 -#: includes/admin/reports/class-wc-report-customer-list.php:244 -#: includes/admin/reports/class-wc-report-stock.php:141 -#@ woocommerce -msgid "Actions" -msgstr "Handlinger" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:147 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:185 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:213 -#@ woocommerce -msgid "Via" -msgstr "Via" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:119 -#@ woocommerce -msgid "Unpublished" -msgstr "Upublisert" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:121 -#@ woocommerce -msgid "Y/m/d g:i:s A" -msgstr "d/m/Y g:i:s A" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:126 -#@ woocommerce -msgid "Y/m/d" -msgstr "d/m/Y" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:285 -#@ woocommerce -msgid "Processing" -msgstr "Behandler" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:292 -#@ woocommerce -msgid "Complete" -msgstr "Fullfør" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:403 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:428 -#@ woocommerce -msgid "Show all customers" -msgstr "Vis alle kunder" - -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:6 -#@ woocommerce -msgid "Revoke Access" -msgstr "Opphev tilgang" - -#: includes/admin/class-wc-admin-assets.php:142 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:431 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:525 -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:7 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:7 -#@ woocommerce -msgid "Click to toggle" -msgstr "Klikk for å skifte" - -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:9 -#, php-format -#@ woocommerce -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "Lastet ned %s gang" -msgstr[1] "Lastet ned %s ganger" - -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:16 -#@ woocommerce -msgid "Downloads Remaining" -msgstr "Gjenstående nedlastinger" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:221 -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:19 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:190 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:196 -#@ woocommerce -msgid "Unlimited" -msgstr "Ubegrenset" - -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:22 -#@ woocommerce -msgid "Access Expires" -msgstr "Tilgang utløper" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:227 -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:23 -#@ woocommerce -msgid "Never" -msgstr "Aldri" - -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:16 -#@ woocommerce -msgid "Fee Name" -msgstr "Navn på gebyr" - -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:31 -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:136 -#@ woocommerce -msgid "Tax class" -msgstr "Skatteklasse" - -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:10 -#@ woocommerce -msgid "Product ID:" -msgstr "Produkt-ID:" - -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:13 -#@ woocommerce -msgid "Variation ID:" -msgstr "Variant-ID:" - -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:16 -#@ woocommerce -msgid "Product SKU:" -msgstr "Produkt-VE:" - -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:74 -#@ woocommerce -msgid "Add meta" -msgstr "Legg til meta" - -#: includes/admin/class-wc-admin-assets.php:141 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:430 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:524 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:6 -#@ woocommerce -msgid "Remove" -msgstr "Fjern" - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:20 -#@ woocommerce -msgid "Any" -msgstr "Enhver" - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:52 -#@ woocommerce -msgid "Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "Tast inn en VE for denne varianten eller la stå tom for å bruke the overordnede produktets VE." - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:63 -#@ woocommerce -msgid "Stock Qty:" -msgstr "Langerantall:" - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:63 -#@ woocommerce -msgid "Enter a quantity to enable stock management at variation level, or leave blank to use the parent product's options." -msgstr "Tast inn et antall for å aktivere lagerstyring på variantnivå, eller la stå tom for å bruke det overordnede produktets valg." - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:72 -#@ woocommerce -msgid "Regular Price:" -msgstr "Ordinær pris:" - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:73 -#@ woocommerce -msgid "Variation price (required)" -msgstr "Variantpris (påkrevet)" - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:76 -#@ woocommerce -msgid "Sale Price:" -msgstr "Salgspris:" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:159 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:76 -#@ woocommerce -msgid "Schedule" -msgstr "Planlegg" - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:76 -#@ woocommerce -msgid "Cancel schedule" -msgstr "Avbryt planlegging" - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:83 -#@ woocommerce -msgid "Sale start date:" -msgstr "Startdato for Salgspris:" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:167 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:84 -#@ woocommerce -msgctxt "placeholder" -msgid "From…" -msgstr "Fra…" - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:87 -#@ woocommerce -msgid "Sale end date:" -msgstr "Sluttdato for salg:" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:168 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:88 -#@ woocommerce -msgctxt "placeholder" -msgid "To…" -msgstr "Til…" - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:96 -#@ woocommerce -msgid "Enter a weight for this variation or leave blank to use the parent product weight." -msgstr "Angi en vekt for denne varianten eller la stå tom for å bruke det overordnede produktets vekt." - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:104 -#@ woocommerce -msgid "Dimensions (L×W×H)" -msgstr "Dimensjoner (L×B×H)" - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:115 -#@ woocommerce -msgid "Shipping class:" -msgstr "Fraktklasse:" - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:130 -#@ woocommerce -msgid "Tax class:" -msgstr "Skatteklasse:" - -#: includes/admin/post-types/meta-boxes/views/html-product-download.php:5 -#: includes/admin/post-types/meta-boxes/views/html-product-variation-download.php:4 -#@ woocommerce -msgid "Insert file URL" -msgstr "Skriv fil-URL" - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:189 -#@ woocommerce -msgid "Download Limit:" -msgstr "Nedlastningsbegrensning:" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:221 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:189 -#@ woocommerce -msgid "Leave blank for unlimited re-downloads." -msgstr "La stå tom for ubegrenset omnedlastinger." - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:195 -#@ woocommerce -msgid "Download Expiry:" -msgstr "Nedlastning utgår:" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:227 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:195 -#@ woocommerce -msgid "Enter the number of days before a download link expires, or leave blank." -msgstr "Skriv inn antall dager før en nedlastingslenke utløper, eller la stå tom." - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:209 -#: includes/admin/settings/class-wc-settings-checkout.php:269 -#: includes/admin/settings/class-wc-settings-shipping.php:235 -#: includes/admin/views/html-admin-page-status-tools.php:26 -#: includes/admin/views/html-admin-page-status-tools.php:37 -#@ woocommerce -msgid "Enabled" -msgstr "Aktivert" - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:211 -#@ woocommerce -msgid "Enable this option if access is given to a downloadable file upon purchase of a product" -msgstr "Aktiver dette valget hvis tilgang er gitt til en nedlastbar fil ved kjøp av et produkt" - -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:213 -#@ woocommerce -msgid "Enable this option if a product is not shipped or there is no shipping cost" -msgstr "Aktiver dette valget hvis et produkt ikke er sendt eller hvis det ikke er noen fraktkostnader" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:63 -#@ woocommerce -msgid "Discount type" -msgstr "Rabattype" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:88 -#@ woocommerce -msgid "Check this box if the coupon cannot be used in conjunction with other coupons." -msgstr "Merk denne boksen dersom kupongen ikke kan benyttes sammen med andre kuponger" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:72 -#@ woocommerce -msgid "Apply before tax" -msgstr "Bruk før skatter og avgifter" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:72 -#@ woocommerce -msgid "Check this box if the coupon should be applied before calculating cart tax." -msgstr "Merk denne boksen dersom kupongen skal brukes før beregning av skatter for handlekurven." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:91 -#@ woocommerce -msgid "Exclude sale items" -msgstr "Utelat gjenstander på salg" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:91 -#@ woocommerce -msgid "Check this box if the coupon should not apply to items on sale. Per-item coupons will only work if the item is not on sale. Per-cart coupons will only work if there are no sale items in the cart." -msgstr "Merk denne boksen dersom kupongen ikke skal brukes på gjenstander som er på salg. Per-gjenstand-kuponger vil bare virke dersom gjenstanden ikke er på salg. Per-handlekurv-kuponger vil bare virke dersom det ikke er noen gjenstander på salg i handlekurven." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:85 -#@ woocommerce -msgid "No minimum" -msgstr "Ingen minimum" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:85 -#@ woocommerce -msgid "This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "Dette feltet lar deg angi minimum delsum påkrevet for å bruke kupongen." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:98 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:95 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:585 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:602 -#: includes/admin/reports/class-wc-report-sales-by-product.php:177 -#@ woocommerce -msgid "Search for a product…" -msgstr "Søk etter et produkt…" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:111 -#@ woocommerce -msgid "Products which need to be in the cart to use this coupon or, for \"Product Discounts\", which products are discounted." -msgstr "Produkter som må være i handlekurven for å bruke denne kupongen eller, for \"Produktrabatter \", hvis produkter ikke er rabattert." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:116 -#@ woocommerce -msgid "Exclude products" -msgstr "Utelat produkter" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:117 -#@ woocommerce -msgid "Search for a product…" -msgstr "Søk etter et produkt…" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:130 -#@ woocommerce -msgid "Products which must not be in the cart to use this coupon or, for \"Product Discounts\", which products are not discounted." -msgstr "Produkter som ikke kan være i handlekurven for å bruke denne kupongen eller, for \"Produktrabatter \", hvis produkter ikke er rabattert." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:138 -#@ woocommerce -msgid "Any category" -msgstr "Enhver kategori" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:146 -#@ woocommerce -msgid "A product must be in this category for the coupon to remain valid or, for \"Product Discounts\", products in these categories will be discounted." -msgstr "Et produkt må være i denne kategorien for at kupongen skal forbli gyldig eller, for \"Produktrabatter\", vil produkter i disse kategoriene bli rabattert." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:151 -#@ woocommerce -msgid "Exclude categories" -msgstr "Utelat kategorier" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:152 -#@ woocommerce -msgid "No categories" -msgstr "Ingen kategorier" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:160 -#@ woocommerce -msgid "Product must not be in this category for the coupon to remain valid or, for \"Product Discounts\", products in these categories will not be discounted." -msgstr "Produktet kan ikke være i denne kategorien for at kupongen skal forbli gyldig, eller for å få \"Produktrabatter \". Produkter i disse kategoriene vil ikke få rabatt." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:178 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:190 -#@ woocommerce -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "Ubegrenset bruk" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:178 -#@ woocommerce -msgid "How many times this coupon can be used before it is void." -msgstr "Hvor mange ganger denne kupongen kan brukes før det er ugyldig." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:224 -#@ woocommerce -msgid "Coupon code already exists - customers will use the latest coupon with this code." -msgstr "Kupongkode finnes allerede - kunder vil bruke den seneste kupongen med denne koden." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:142 -#@ woocommerce -msgid "Order number" -msgstr "Ordrenummer" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:145 -#@ woocommerce -msgid "Customer IP:" -msgstr "Kunde-IP:" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:150 -#@ woocommerce -msgid "General Details" -msgstr "Generelle detaljer" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:156 -#@ woocommerce -msgid "Order status:" -msgstr "Ordrestatus:" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:153 -#@ woocommerce -msgid "h" -msgstr "h" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:153 -#: includes/admin/settings/class-wc-settings-products.php:311 -#@ woocommerce -msgid "m" -msgstr "m" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:167 -#@ woocommerce -msgid "Customer:" -msgstr "Kunde:" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:304 -#@ woocommerce -msgid "Customer Note:" -msgstr "Kundenotat:" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:305 -#@ woocommerce -msgid "Customer's notes about the order" -msgstr "Kundens notater vedrrørende ordren" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:182 -#@ woocommerce -msgid "Billing Details" -msgstr "Faktureringsdetaljer" - -#: includes/admin/class-wc-admin-profile.php:56 -#: includes/admin/class-wc-admin-profile.php:105 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:37 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:84 -#@ woocommerce -msgid "Company" -msgstr "Firma" - -#: includes/admin/class-wc-admin-profile.php:60 -#: includes/admin/class-wc-admin-profile.php:109 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:41 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:88 -#@ woocommerce -msgid "Address 1" -msgstr "Adresse 1" - -#: includes/admin/class-wc-admin-profile.php:64 -#: includes/admin/class-wc-admin-profile.php:113 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:45 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:92 -#@ woocommerce -msgid "Address 2" -msgstr "Adresse 2" - -#: includes/admin/class-wc-admin-profile.php:68 -#: includes/admin/class-wc-admin-profile.php:117 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:49 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:96 -#: includes/admin/settings/class-wc-settings-tax.php:254 -#: includes/admin/settings/class-wc-settings-tax.php:381 -#: templates/cart/shipping-calculator.php:72 -#@ woocommerce -msgid "City" -msgstr "By" - -#: includes/admin/class-wc-admin-profile.php:76 -#: includes/admin/class-wc-admin-profile.php:125 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:63 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:110 -#@ woocommerce -msgid "State/County" -msgstr "Delstat/Fylke" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:190 -#@ woocommerce -msgid "No billing address set." -msgstr "Ingen fakturaadresse satt." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:213 -#@ woocommerce -msgid "Load billing address" -msgstr "Last fakturaadresse" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:261 -#@ woocommerce -msgid "Shipping Details" -msgstr "Fraktdetaljer" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:269 -#@ woocommerce -msgid "No shipping address set." -msgstr "Ingen leveringsadresse satt." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:287 -#@ woocommerce -msgid "Load shipping address" -msgstr "Last leveringsadresse" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:287 -#@ woocommerce -msgid "Copy from billing" -msgstr "Kopier fra fakturering" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:33 -#@ woocommerce -msgid "Item" -msgstr "Gjenstand" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:261 -#: includes/admin/settings/class-wc-settings-tax.php:381 -#: includes/admin/views/html-bulk-edit-product.php:77 -#: includes/admin/views/html-quick-edit-product.php:56 -#@ woocommerce -msgid "Tax Class" -msgstr "Skatteklasse" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:83 -#@ woocommerce -msgid "Delete Lines" -msgstr "Slett linjer" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:85 -#@ woocommerce -msgid "Stock Actions" -msgstr "Langerhandlinger" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:86 -#@ woocommerce -msgid "Reduce Line Stock" -msgstr "Reduser varelinje" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:87 -#@ woocommerce -msgid "Increase Line Stock" -msgstr "Øk linjelager" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:57 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:91 -#@ woocommerce -msgid "Apply" -msgstr "Bruk" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:97 -#@ woocommerce -msgid "Add item(s)" -msgstr "Legg til gjenstand(er)" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:98 -#@ woocommerce -msgid "Add fee" -msgstr "Legg til gebyr" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:35 -#@ woocommerce -msgid "Resend order emails" -msgstr "Send ordre-epostene igjen" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:66 -#@ woocommerce -msgid "Move to Trash" -msgstr "Flytt til papirkurven" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:71 -#@ woocommerce -msgid "Save Order" -msgstr "Lagre ordre" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:71 -#@ woocommerce -msgid "Save/update the order" -msgstr "Lagre/oppdater ordren" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:245 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:247 -#: includes/admin/post-types/meta-boxes/views/html-order-shipping.php:30 -#: includes/admin/post-types/meta-boxes/views/html-order-shipping.php:32 -#@ woocommerce -msgid "Other" -msgstr "Andre" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:106 -#@ woocommerce -msgid "+ Add tax row" -msgstr "+ Legg til rad for skatt" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:106 -#@ woocommerce -msgid "These rows contain taxes for this order. This allows you to display multiple or compound taxes rather than a single total." -msgstr "Disse radene inneholder skatter for denne ordren. Dette gjør at du kan vise flere eller sammensatte skatter snarere enn en enkel total." - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:99 -#@ woocommerce -msgid "Order Totals" -msgstr "Ordretotaler" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:230 -#@ woocommerce -msgid "Payment Method:" -msgstr "Betalingsmetode:" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-downloads.php:57 -#@ woocommerce -msgid "Grant Access" -msgstr "Gi tilgang" - -#: includes/admin/class-wc-admin-assets.php:180 -#@ woocommerce -msgid "Could not grant access - the user may already have permission for this file or billing email is not set. Ensure the billing email is set, and the order has been saved." -msgstr "Kunne ikke gi tilgang - brukeren kan allerede ha tillatelse til denne filen, eller faktureringsepost er ikke angitt. Sørg for at faktureringseposten er angitt, og ordren er lagret." - -#: includes/admin/class-wc-admin-assets.php:181 -#@ woocommerce -msgid "Are you sure you want to revoke access to this download?" -msgstr "Er du sikker på at du vil ta tilbake tilgang til denne nedlastingen?" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:44 -#, php-format -#@ woocommerce -msgid "added %s ago" -msgstr "lagt til for %s siden" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:52 -#@ woocommerce -msgid "There are no notes for this order yet." -msgstr "Det er ennå ikke noen notater for denne ordren." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:58 -#@ woocommerce -msgid "Add note" -msgstr "Legg til notat" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:58 -#@ woocommerce -msgid "Add a note for your reference, or add a customer note (the user will be notified)." -msgstr "Legg til et notat som referanse, eller legg til et kundenotat (brukeren vil bli underrettet)." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:65 -#@ woocommerce -msgid "Private note" -msgstr "Privat notat" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:67 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:563 -#@ woocommerce -msgid "Add" -msgstr "Legg til" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:743 -#@ woocommerce -msgid "Before adding variations, add and save some attributes on the Attributes tab." -msgstr "Før du legger til varianter, legg til og lagre noen attributter på Attributter-fanen." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:745 -#@ woocommerce -msgid "Learn more" -msgstr "Les mer" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:389 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:751 -#@ woocommerce -msgid "Close all" -msgstr "Steng alle" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:389 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:751 -#@ woocommerce -msgid "Expand all" -msgstr "Utvid alle" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:752 -#@ woocommerce -msgid "Bulk edit:" -msgstr "Bulkredigering:" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:754 -#@ woocommerce -msgid "Toggle "Enabled"" -msgstr "Veksle "Aktivert"" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:755 -#@ woocommerce -msgid "Toggle "Downloadable"" -msgstr "Veksle "Nedlastbar"" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:756 -#@ woocommerce -msgid "Toggle "Virtual"" -msgstr "Veksle "Virtuell"" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:757 -#@ woocommerce -msgid "Delete all variations" -msgstr "Slett alle varianter" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:758 -#@ woocommerce -msgid "Prices" -msgstr "Priser" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:761 -#@ woocommerce -msgid "Sale prices" -msgstr "Salgspriser" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:769 -#@ woocommerce -msgid "Download limit" -msgstr "Nedlastningsbegrensning" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:227 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:770 -#@ woocommerce -msgid "Download Expiry" -msgstr "Nedlastning utgår" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:773 -#: includes/admin/views/html-report-by-date.php:31 -#@ woocommerce -msgid "Go" -msgstr "Gå" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:870 -#@ woocommerce -msgid "Link all variations" -msgstr "Lenke alle varianter" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:872 -#@ woocommerce -msgid "Default selections:" -msgstr "Standardvalg:" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:885 -#: includes/admin/settings/class-wc-settings-shipping.php:214 -#@ woocommerce -msgid "No default" -msgstr "Ingen standard" - -#: includes/admin/class-wc-admin-assets.php:201 -#@ woocommerce -msgid "Are you sure you want to link all variations? This will create a new variation for each and every possible combination of variation attributes (max 50 per run)." -msgstr "Er di sikker på at du vil lenke til alle variantene? Dette vil lage en ny variant for hver mulige kombinasjon av variantattributter (maks 50 per gjennomgang)." - -#: includes/admin/class-wc-admin-assets.php:208 -#@ woocommerce -msgid "variation added" -msgstr "variant lagt til" - -#: includes/admin/class-wc-admin-assets.php:209 -#@ woocommerce -msgid "variations added" -msgstr "varianter lagt til" - -#: includes/admin/class-wc-admin-assets.php:210 -#@ woocommerce -msgid "No variations added" -msgstr "Ingen variant lagt til" - -#: includes/admin/class-wc-admin-assets.php:211 -#@ woocommerce -msgid "Are you sure you want to remove this variation?" -msgstr "Er du sikker på at du vil fjerne denne varianten?" - -#: includes/admin/class-wc-admin-assets.php:204 -#@ woocommerce -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "Er du sikker på at du vil slette alle variantene? Dette kan ikke angres." - -#: includes/admin/class-wc-admin-assets.php:205 -#@ woocommerce -msgid "Last warning, are you sure?" -msgstr "Siste advarsel, er du sikker?" - -#: includes/admin/class-wc-admin-assets.php:202 -#@ woocommerce -msgid "Enter a value" -msgstr "Angi en verdi" - -#: includes/admin/class-wc-admin-assets.php:206 -#: includes/admin/class-wc-admin-taxonomies.php:126 -#: includes/admin/class-wc-admin-taxonomies.php:213 -#@ woocommerce -msgid "Choose an image" -msgstr "Velg et bilde" - -#: includes/admin/class-wc-admin-assets.php:207 -#@ woocommerce -msgid "Set variation image" -msgstr "Sett variantbilde" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:486 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:39 -#@ woocommerce -msgid "Variable product" -msgstr "Variabelt produkt" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:42 -#@ woocommerce -msgid "Product Type" -msgstr "Produkttype" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:52 -#@ woocommerce -msgid "Virtual products are intangible and aren't shipped." -msgstr "Virtuelle produkter er immaterielle og sendes ikke." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:59 -#@ woocommerce -msgid "Downloadable products give access to a file upon purchase." -msgstr "Nedlastbare produkter gir tilgang til en fil ved kjøp." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:37 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:84 -#: includes/admin/settings/class-wc-settings-general.php:25 -#@ woocommerce -msgid "General" -msgstr "Generelt" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:89 -#: includes/admin/settings/class-wc-settings-products.php:41 -#@ woocommerce -msgid "Inventory" -msgstr "Lagersaldo" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:99 -#@ woocommerce -msgid "Linked Products" -msgstr "Lenkede produkter" - -#: includes/admin/class-wc-admin-attributes.php:299 -#: includes/admin/class-wc-admin-menus.php:49 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:104 -#@ woocommerce -msgid "Attributes" -msgstr "Attributter" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:114 -#@ woocommerce -msgid "Advanced" -msgstr "Avansert" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:135 -#@ woocommerce -msgid "Stock Keeping Unit" -msgstr "Lagerholdsenhet" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:135 -#@ woocommerce -msgid "SKU refers to a Stock-keeping unit, a unique identifier for each distinct product and service that can be purchased." -msgstr "VE refererer til en Vareenhet, en unik identifikator for hvert enkelt produkt og hver tjeneste som kan kjøpes." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:146 -#@ woocommerce -msgid "Product URL" -msgstr "Produkt-URL" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:146 -#@ woocommerce -msgid "Enter the external URL to the product." -msgstr "Tast inn ekstern URL til produktet." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:149 -#@ woocommerce -msgid "Button text" -msgstr "Knappetekst" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:149 -#@ woocommerce -msgctxt "placeholder" -msgid "Buy product" -msgstr "Kjøp produkt" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:149 -#@ woocommerce -msgid "This text will be shown on the button linking to the external product." -msgstr "Denne teksten vil bli vist på knappen lenket til eksternt produkt." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:156 -#@ woocommerce -msgid "Regular Price" -msgstr "Ordinær pris" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:159 -#@ woocommerce -msgid "Sale Price" -msgstr "Salgspris" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:166 -#@ woocommerce -msgid "Sale Price Dates" -msgstr "Datoer for salgspris" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:221 -#@ woocommerce -msgid "Download Limit" -msgstr "Nedlastningsbegrensning" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:250 -#: includes/admin/views/html-bulk-edit-product.php:65 -#: includes/admin/views/html-quick-edit-product.php:44 -#@ woocommerce -msgid "Shipping only" -msgstr "Kun frakt" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:289 -#@ woocommerce -msgid "Stock quantity. If this is a variable product this value will be used to control stock for all variations, unless you define stock at variation level." -msgstr "Legerantall. Hvis dette er et variabelt produkt vil denne verdien bli brukt til å styre lager for alle varianter, med mindre du definerer lager på variantnivå." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:300 -#: includes/admin/reports/class-wc-report-stock.php:140 -#@ woocommerce -msgid "Stock status" -msgstr "Lagerstatus" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:303 -#@ woocommerce -msgid "Controls whether or not the product is listed as \"in stock\" or \"out of stock\" on the frontend." -msgstr "Styrer hvorvidt produktet er oppført som \"på lager\" eller \"ikke på lager\" på forsiden." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:310 -#@ woocommerce -msgid "Allow Backorders?" -msgstr "Tillat restordrer?" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:311 -#: includes/admin/views/html-bulk-edit-product.php:253 -#: includes/admin/views/html-quick-edit-product.php:172 -#@ woocommerce -msgid "Do not allow" -msgstr "Ikke tillat" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:312 -#: includes/admin/views/html-bulk-edit-product.php:254 -#: includes/admin/views/html-quick-edit-product.php:173 -#@ woocommerce -msgid "Allow, but notify customer" -msgstr "Tillat, men varsle kunden" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:313 -#: includes/admin/views/html-bulk-edit-product.php:255 -#: includes/admin/views/html-quick-edit-product.php:174 -#@ woocommerce -msgid "Allow" -msgstr "Tillat" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:314 -#@ woocommerce -msgid "If managing stock, this controls whether or not backorders are allowed for this product and variations. If enabled, stock quantity can go below 0." -msgstr "Hvis lager administreres, styrer dette hvorvidt restordrer er tillatt for dette produktet og dets varianter. Hvis aktivert, kan lagerantall gå under 0." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:325 -#@ woocommerce -msgid "Sold Individually" -msgstr "Solgt individuelt" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:325 -#@ woocommerce -msgid "Enable this to only allow one of this item to be bought in a single order" -msgstr "Aktiver dette for kun å tillate én av disse gjenstandene å bli kjøpt i en enkelt ordre" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:343 -#@ woocommerce -msgid "Weight in decimal form" -msgstr "Vekt i desimalform" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:354 -#@ woocommerce -msgid "LxWxH in decimal form" -msgstr "LxBxH i desimalform" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:371 -#@ woocommerce -msgid "No shipping class" -msgstr "Ingen fraktklasse" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:377 -#@ woocommerce -msgid "Shipping class" -msgstr "Fraktklasse" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:377 -#@ woocommerce -msgid "Shipping classes are used by certain shipping methods to group similar products." -msgstr "Fraktklasser brukes av enkelte fraktmetoder for å gruppere lignende produkter." - -#: includes/admin/class-wc-admin-assets.php:143 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:446 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:538 -#@ woocommerce -msgid "Value(s)" -msgstr "Verdi(er)" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:448 -#@ woocommerce -msgid "Select terms" -msgstr "Velg termer" - -#: includes/admin/class-wc-admin-settings.php:544 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:460 -#@ woocommerce -msgid "Select all" -msgstr "Velg alle" - -#: includes/admin/class-wc-admin-settings.php:544 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:460 -#@ woocommerce -msgid "Select none" -msgstr "Velg ingen" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:462 -#@ woocommerce -msgid "Add new" -msgstr "Legg til ny" - -#: includes/admin/class-wc-admin-assets.php:145 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:489 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:544 -#@ woocommerce -msgid "Visible on the product page" -msgstr "Synlig på produktsiden" - -#: includes/admin/class-wc-admin-assets.php:146 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:502 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:550 -#@ woocommerce -msgid "Used for variations" -msgstr "Benyttet for varianter" - -#: includes/admin/class-wc-admin-assets.php:144 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:539 -#@ woocommerce -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "Skriv inn litt tekst, eller noen attributter med symbolet \"|\" som skiller verdier." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:565 -#@ woocommerce -msgid "Custom product attribute" -msgstr "Tilpasset produktattributt" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:577 -#@ woocommerce -msgid "Save attributes" -msgstr "Lagre attributter" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:584 -#@ woocommerce -msgid "Up-Sells" -msgstr "Oppsalg" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:599 -#@ woocommerce -msgid "Up-sells are products which you recommend instead of the currently viewed product, for example, products that are more profitable or better quality or more expensive." -msgstr "Oppsalg er produkter som du anbefaler i stedet for produktene som nå vises, for eksempel produkter som er mer lønnsomme, har bedre kvalitet eller er dyrere." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:601 -#@ woocommerce -msgid "Cross-Sells" -msgstr "Kryssalg" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:616 -#@ woocommerce -msgid "Cross-sells are products which you promote in the cart, based on the current product." -msgstr "Kryssalg er produkter som du promoterer i handlekurven, basert på gjeldende produkt." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:626 -#@ woocommerce -msgid "Choose a grouped product…" -msgstr "Velg et gruppert produkt…" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:656 -#@ woocommerce -msgid "Grouping" -msgstr "Gruppering" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:656 -#@ woocommerce -msgid "Set this option to make this product part of a grouped product." -msgstr "Sett dette valget for å gjøre dette produktet til en del av et gruppert produkt." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:676 -#@ woocommerce -msgid "Purchase Note" -msgstr "Kjøpsnotat" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:676 -#@ woocommerce -msgid "Enter an optional note to send the customer after purchase." -msgstr "Skriv et valgfritt notat å sende kunden etter kjøpet." - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:683 -#@ woocommerce -msgid "Menu order" -msgstr "Menyrekkefølge" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:683 -#@ woocommerce -msgid "Custom ordering position." -msgstr "Tilpasset ordreposisjon" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:691 -#@ woocommerce -msgid "Enable reviews" -msgstr "Aktiver anmeldelser" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:989 -#@ woocommerce -msgid "Product SKU must be unique." -msgstr "Produkt-VE må være unikt." - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:104 -#@ woocommerce -msgid "Catalog/search" -msgstr "Katalog/søk" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:111 -#@ woocommerce -msgid "Catalog visibility:" -msgstr "Katalogsynlighet:" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:126 -#@ woocommerce -msgid "Define the loops this product should be visible in. The product will still be accessible directly." -msgstr "Definer loopene dette produktet bør være synlig i. Produktet vil fortsatt være direkte tilgjengelig." - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:132 -#@ woocommerce -msgid "Enable this option to feature this product." -msgstr "Aktiver dette valget for å fremheve dette produktet." - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:134 -#@ woocommerce -msgid "Featured Product" -msgstr "Fremhevet produkt" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:137 -#@ woocommerce -msgid "OK" -msgstr "OK" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:44 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:104 -#@ woocommerce -msgid "Delete image" -msgstr "Slett bilde" - -#: includes/admin/class-wc-admin-attributes.php:323 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:44 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:104 -#: includes/admin/post-types/meta-boxes/views/html-product-download.php:6 -#: includes/admin/post-types/meta-boxes/views/html-product-variation-download.php:5 -#@ woocommerce -msgid "Delete" -msgstr "Slett" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:55 -#@ woocommerce -msgid "Add product gallery images" -msgstr "Legg til bilder i produktgalleriet" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:81 -#@ woocommerce -msgid "Add Images to Product Gallery" -msgstr "Legg til bilder i produktgalleriet" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php:83 -#@ woocommerce -msgid "Add to gallery" -msgstr "Legg til i galleri" - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:94 -#@ woocommerce -msgid "Product Gallery" -msgstr "Produktgalleri" - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:92 -#@ woocommerce -msgid "Product Short Description" -msgstr "Kort beskrivelse av produkt" - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:97 -#@ woocommerce -msgid "Order Data" -msgstr "Ordredata" - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:98 -#@ woocommerce -msgid "Order Items" -msgstr "Ordregjenstander" - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:101 -#@ woocommerce -msgid "Downloadable Product Permissions" -msgstr "Nedlastbare produktbeskrivelser" - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:101 -#@ woocommerce -msgid "Note: Permissions for order items will automatically be granted when the order status changes to processing/completed." -msgstr "Merk: Tillatelser for gjenstander på ordren vil automatisk bli gitt når ordrestatus endres til behandles/fullført." - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:102 -#@ woocommerce -msgid "Order Actions" -msgstr "Ordrehandlinger" - -#: includes/admin/post-types/class-wc-admin-meta-boxes.php:105 -#@ woocommerce -msgid "Coupon Data" -msgstr "Kupongdata" - -#: includes/admin/post-types/class-wc-admin-cpt-product.php:83 -#@ woocommerce -msgid "Product name" -msgstr "Produktnavn" - -#: includes/admin/settings/class-wc-settings-general.php:237 -#@ woocommerce -msgid "Primary" -msgstr "Primær" - -#: includes/admin/settings/class-wc-settings-general.php:237 -#@ woocommerce -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "Bring frem handlingsknapper/pris-slider/lagdelt brukergrensesnitt for navigasjon" - -#: includes/admin/settings/class-wc-settings-general.php:238 -#@ woocommerce -msgid "Secondary" -msgstr "Sekundær" - -#: includes/admin/settings/class-wc-settings-general.php:238 -#@ woocommerce -msgid "Buttons and tabs" -msgstr "Knapper og faner" - -#: includes/admin/settings/class-wc-settings-general.php:239 -#@ woocommerce -msgid "Highlight" -msgstr "Uthev" - -#: includes/admin/settings/class-wc-settings-general.php:239 -#@ woocommerce -msgid "Price labels and Sale Flashes" -msgstr "Prisetiketter og Salgsfremstøtt" - -#: includes/admin/settings/class-wc-settings-general.php:240 -#@ woocommerce -msgid "Content" -msgstr "Innhold" - -#: includes/admin/settings/class-wc-settings-general.php:240 -#@ woocommerce -msgid "Your themes page background - used for tab active states" -msgstr "Sidebakgrunnen for temaet ditt - brukes for fanen aktive stater" - -#: includes/admin/settings/class-wc-settings-general.php:241 -#@ woocommerce -msgid "Subtext" -msgstr "Undertekst" - -#: includes/admin/settings/class-wc-settings-general.php:241 -#@ woocommerce -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "Brukes for visse tekster og småtillegg - brødsmuler, liten tekst etc." - -#: includes/admin/settings/class-wc-settings-general.php:244 -#@ woocommerce -msgid "To edit colours woocommerce/assets/css/woocommerce-base.less and woocommerce.css need to be writable. See the Codex for more information." -msgstr "For å redigere farger må woocommerce/assets/css/woocommerce-base.less og woocommerce.cssvære skrivbar. Se Codex for mer informasjon." - -#: includes/admin/settings/class-wc-settings-general.php:48 -#@ woocommerce -msgid "General Options" -msgstr "Generelle valg" - -#: includes/admin/settings/class-wc-settings-general.php:51 -#@ woocommerce -msgid "Base Location" -msgstr "Basens lokalitet" - -#: includes/admin/settings/class-wc-settings-general.php:52 -#@ woocommerce -msgid "This is the base location for your business. Tax rates will be based on this country." -msgstr "Dette er baseplasseringen for bedriften din. Skattesatser vil være basert på dette landet." - -#: includes/admin/settings/class-wc-settings-general.php:115 -#@ woocommerce -msgid "Currency" -msgstr "Valuta" - -#: includes/admin/settings/class-wc-settings-general.php:116 -#@ woocommerce -msgid "This controls what currency prices are listed at in the catalog and which currency gateways will take payments in." -msgstr "Dette styrer hvilke valutapriser som er oppført i katalogen, og i hvilke valutaer gateways vil ta betalt." - -#: includes/admin/settings/class-wc-settings-general.php:85 -#@ woocommerce -msgid "Store Notice" -msgstr "Butikkmelding" - -#: includes/admin/settings/class-wc-settings-general.php:86 -#@ woocommerce -msgid "Enable site-wide store notice text" -msgstr "Aktiver butikkmeldingstekst for hele siten" - -#: includes/admin/settings/class-wc-settings-general.php:93 -#@ woocommerce -msgid "Store Notice Text" -msgstr "Butikkmeldingstekst" - -#: includes/admin/settings/class-wc-settings-checkout.php:69 -#@ woocommerce -msgid "Enable the use of coupons" -msgstr "Aktiver bruken av kuponger" - -#: includes/admin/settings/class-wc-settings-checkout.php:73 -#@ woocommerce -msgid "Coupons can be applied from the cart and checkout pages." -msgstr "Kuponger kan brukes fra handlekurven og betalingssidene." - -#: includes/admin/settings/class-wc-settings-checkout.php:89 -#@ woocommerce -msgid "Force secure checkout" -msgstr "Tving sikker betaling" - -#: includes/admin/settings/class-wc-settings-checkout.php:95 -#@ woocommerce -msgid "Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -msgstr "Tving SSL (HTTPS) på betalingssidene (et SSL-sertifikat er påkrevd)." - -#: includes/admin/settings/class-wc-settings-checkout.php:99 -#@ woocommerce -msgid "Un-force HTTPS when leaving the checkout" -msgstr "Fjern påtvunget HTTPS når du forlater kassen" - -#: includes/admin/settings/class-wc-settings-general.php:179 -#@ woocommerce -msgid "Styles and Scripts" -msgstr "Stiler og skripter" - -#: includes/admin/settings/class-wc-settings-general.php:184 -#@ woocommerce -msgid "Scripts" -msgstr "Skripter" - -#: includes/admin/settings/class-wc-settings-general.php:185 -#@ woocommerce -msgid "Enable Lightbox" -msgstr "Aktiver lysboks" - -#: includes/admin/settings/class-wc-settings-general.php:194 -#@ woocommerce -msgid "Enable enhanced country select boxes" -msgstr "Aktiver forbedrede bokser for valg av land" - -#: includes/admin/settings/class-wc-settings-general.php:199 -#@ woocommerce -msgid "This will enable a script allowing the country fields to be searchable." -msgstr "Dette vil starte en script som lar feltene for land å være søkbare." - -#: includes/admin/settings/class-wc-settings-products.php:409 -#@ woocommerce -msgid "Downloadable Products" -msgstr "Nedlastbare produkter" - -#: includes/admin/settings/class-wc-settings-products.php:412 -#@ woocommerce -msgid "File Download Method" -msgstr "Filnedlastingsmetode" - -#: includes/admin/settings/class-wc-settings-products.php:413 -#@ woocommerce -msgid "Forcing downloads will keep URLs hidden, but some servers may serve large files unreliably. If supported, X-Accel-Redirect/ X-Sendfile can be used to serve downloads instead (server requires mod_xsendfile)." -msgstr "Å tvinge nedlastinger vil holde nettadresser skjult, men noen servere kan betjene store filer upålitelig. Hvis dette støttes, kan X-Accel-Redirect/ X-Sendfile brukes til å betjene nedlastinger i stedet (server krever mod_xsendfile)." - -#: includes/admin/settings/class-wc-settings-products.php:421 -#@ woocommerce -msgid "Force Downloads" -msgstr "Tving nedlastinger" - -#: includes/admin/settings/class-wc-settings-products.php:422 -#@ woocommerce -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "X-Accel-Redirect/X-Sendfile" - -#: includes/admin/settings/class-wc-settings-products.php:423 -#@ woocommerce -msgid "Redirect only" -msgstr "Kun omdiriger" - -#: includes/admin/settings/class-wc-settings-products.php:429 -#@ woocommerce -msgid "Access Restriction" -msgstr "Tilgangsbegrensning" - -#: includes/admin/settings/class-wc-settings-products.php:430 -#@ woocommerce -msgid "Downloads require login" -msgstr "Nedlasting krever innlogging" - -#: includes/admin/settings/class-wc-settings-products.php:434 -#@ woocommerce -msgid "This setting does not apply to guest purchases." -msgstr "Denne innstillingen gjelder ikke for gjestekjøp." - -#: includes/admin/settings/class-wc-settings-products.php:440 -#@ woocommerce -msgid "Grant access to downloadable products after payment" -msgstr "Gi tilgang til nedlastbare produkter etter betaling" - -#: includes/admin/settings/class-wc-settings-products.php:444 -#@ woocommerce -msgid "Enable this option to grant access to downloads when orders are \"processing\", rather than \"completed\"." -msgstr "Aktiver dette valget for å gi tilgang til nedlastinger når ordrer er \"under behandling\", og ikke \"ferdig\"." - -#: includes/admin/settings/class-wc-settings-products.php:196 -#@ woocommerce -msgid "Note: The shop page has children - child pages will not work if you enable this option." -msgstr "Merk: Butikksiden har etterfølgere - underordnede sider vil ikke fungere hvis du aktiverer dette valget." - -#: includes/admin/settings/class-wc-settings-products.php:210 -#@ woocommerce -msgid "This sets the base page of your shop - this is where your product archive will be." -msgstr "Dette setter grunnsiden for butikken din - det er der produktarkivet vil være." - -#: includes/admin/settings/class-wc-settings-checkout.php:135 -#@ woocommerce -msgid "If you define a \"Terms\" page the customer will be asked if they accept them when checking out." -msgstr "Hvis du definerer en \"Vilkår\"-side, vil kunden bli spurt om de godtar dem når de sjekker ut." - -#: includes/admin/settings/class-wc-settings-checkout.php:112 -#@ woocommerce -msgid "Cart Page" -msgstr "Side for handlekurv" - -#: includes/admin/settings/class-wc-settings-checkout.php:123 -#@ woocommerce -msgid "Checkout Page" -msgstr "Side for kassen" - -#: includes/admin/settings/class-wc-settings-accounts.php:44 -#@ woocommerce -msgid "My Account Page" -msgstr "Side for \"Min konto\"" - -#: includes/admin/settings/class-wc-settings-products.php:246 -#@ woocommerce -msgid "Default Product Sorting" -msgstr "Standard produktsortering" - -#: includes/admin/settings/class-wc-settings-products.php:247 -#@ woocommerce -msgid "This controls the default sort order of the catalog." -msgstr "Dette styrer katalogens standard sorteringsrekkefølge." - -#: includes/admin/settings/class-wc-settings-products.php:254 -#@ woocommerce -msgid "Default sorting (custom ordering + name)" -msgstr "Standard sortering (tilpasset rekkefølge + navn)" - -#: includes/admin/settings/class-wc-settings-products.php:255 -#@ woocommerce -msgid "Popularity (sales)" -msgstr "Popularitet (salg)" - -#: includes/admin/settings/class-wc-settings-products.php:256 -#@ woocommerce -msgid "Average Rating" -msgstr "Gjennomsnittlig rangering" - -#: includes/admin/settings/class-wc-settings-products.php:258 -#@ woocommerce -msgid "Sort by price (asc)" -msgstr "Sorter etter pris (stigende)" - -#: includes/admin/settings/class-wc-settings-products.php:259 -#@ woocommerce -msgid "Sort by price (desc)" -msgstr "Sorter etter pris (synkende)" - -#: includes/admin/settings/class-wc-settings-products.php:214 -#@ woocommerce -msgid "Shop Page Display" -msgstr "Visning av butikkside" - -#: includes/admin/settings/class-wc-settings-products.php:215 -#@ woocommerce -msgid "This controls what is shown on the product archive." -msgstr "Dette styrer hva som vises i produktarkivet." - -#: includes/admin/settings/class-wc-settings-products.php:222 -#: includes/admin/settings/class-wc-settings-products.php:238 -#@ woocommerce -msgid "Show products" -msgstr "Vis produkter" - -#: includes/admin/settings/class-wc-settings-products.php:223 -#: includes/admin/settings/class-wc-settings-products.php:239 -#@ woocommerce -msgid "Show subcategories" -msgstr "Vis alle underkategorier" - -#: includes/admin/settings/class-wc-settings-products.php:224 -#: includes/admin/settings/class-wc-settings-products.php:240 -#@ woocommerce -msgid "Show both" -msgstr "Vis begge" - -#: includes/admin/settings/class-wc-settings-products.php:230 -#@ woocommerce -msgid "Default Category Display" -msgstr "Standard kategorivisning" - -#: includes/admin/settings/class-wc-settings-products.php:231 -#@ woocommerce -msgid "This controls what is shown on category archives." -msgstr "Dette styrer hva som vises i kategoriarkiver." - -#: includes/admin/settings/class-wc-settings-products.php:266 -#@ woocommerce -msgid "Redirect to the cart page after successful addition" -msgstr "Omdiriger til handlekurvsside etter vellykket tillegg" - -#: includes/admin/settings/class-wc-settings-products.php:274 -#@ woocommerce -msgid "Enable AJAX add to cart buttons on archives" -msgstr "Aktiver AJAX-legg-til-handlekurv-knappene på arkiver" - -#: includes/admin/settings/class-wc-settings-products.php:286 -#@ woocommerce -msgid "Weight Unit" -msgstr "Vektenhet" - -#: includes/admin/settings/class-wc-settings-products.php:287 -#@ woocommerce -msgid "This controls what unit you will define weights in." -msgstr "Dette styrer i hvilken enhet du vil definere vekter." - -#: includes/admin/settings/class-wc-settings-products.php:294 -#@ woocommerce -msgid "kg" -msgstr "kg" - -#: includes/admin/settings/class-wc-settings-products.php:295 -#@ woocommerce -msgid "g" -msgstr "g" - -#: includes/admin/settings/class-wc-settings-products.php:296 -#@ woocommerce -msgid "lbs" -msgstr "lb" - -#: includes/admin/settings/class-wc-settings-products.php:297 -#@ woocommerce -msgid "oz" -msgstr "oz" - -#: includes/admin/settings/class-wc-settings-products.php:303 -#@ woocommerce -msgid "Dimensions Unit" -msgstr "Måleenhet" - -#: includes/admin/settings/class-wc-settings-products.php:304 -#@ woocommerce -msgid "This controls what unit you will define lengths in." -msgstr "Dette styrer i hvilken enhet du vil definere lengder." - -#: includes/admin/settings/class-wc-settings-products.php:312 -#@ woocommerce -msgid "cm" -msgstr "cm" - -#: includes/admin/settings/class-wc-settings-products.php:313 -#@ woocommerce -msgid "mm" -msgstr "mm" - -#: includes/admin/settings/class-wc-settings-products.php:314 -#@ woocommerce -msgid "in" -msgstr "inch (tomme)" - -#: includes/admin/settings/class-wc-settings-products.php:315 -#@ woocommerce -msgid "yd" -msgstr "yard" - -#: includes/admin/settings/class-wc-settings-products.php:321 -#@ woocommerce -msgid "Product Ratings" -msgstr "Produktrangeringer" - -#: includes/admin/settings/class-wc-settings-products.php:322 -#@ woocommerce -msgid "Enable ratings on reviews" -msgstr "Aktiver rangeringer på anmeldelser" - -#: includes/admin/settings/class-wc-settings-products.php:332 -#@ woocommerce -msgid "Ratings are required to leave a review" -msgstr "Rangeringer er pålagt å legge igjen en anmeldelse" - -#: includes/admin/settings/class-wc-settings-products.php:342 -#@ woocommerce -msgid "Show \"verified owner\" label for customer reviews" -msgstr "Vis \"bekreftet eier \"-etikett for kundeanmeldelser" - -#: includes/admin/settings/class-wc-settings-general.php:112 -#@ woocommerce -msgid "The following options affect how prices are displayed on the frontend." -msgstr "Følgende valg påvirker hvordan priser vises på front-end." - -#: includes/admin/settings/class-wc-settings-general.php:127 -#@ woocommerce -msgid "Currency Position" -msgstr "Valutaposisjon" - -#: includes/admin/settings/class-wc-settings-general.php:128 -#@ woocommerce -msgid "This controls the position of the currency symbol." -msgstr "Dette styrer posisjonen for valutasymbolet." - -#: includes/admin/settings/class-wc-settings-general.php:135 -#@ woocommerce -msgid "Left" -msgstr "Venstre" - -#: includes/admin/settings/class-wc-settings-general.php:136 -#@ woocommerce -msgid "Right" -msgstr "Høyre" - -#: includes/admin/settings/class-wc-settings-general.php:144 -#@ woocommerce -msgid "Thousand Separator" -msgstr "Tusenskilletegn" - -#: includes/admin/settings/class-wc-settings-general.php:145 -#@ woocommerce -msgid "This sets the thousand separator of displayed prices." -msgstr "Dette setter tusenskilletegnet for viste priser." - -#: includes/admin/settings/class-wc-settings-general.php:154 -#@ woocommerce -msgid "Decimal Separator" -msgstr "Desimalskilletegn" - -#: includes/admin/settings/class-wc-settings-general.php:155 -#@ woocommerce -msgid "This sets the decimal separator of displayed prices." -msgstr "Dette setter desimaltegnet for viste priser." - -#: includes/admin/settings/class-wc-settings-general.php:164 -#@ woocommerce -msgid "Number of Decimals" -msgstr "Antall desimaler" - -#: includes/admin/settings/class-wc-settings-general.php:165 -#@ woocommerce -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "Dette angir antall desimaler som vises i viste priser." - -#: includes/admin/settings/class-wc-settings-products.php:363 -#, php-format -#@ woocommerce -msgid "These settings affect the actual dimensions of images in your catalog - the display on the front-end will still be affected by CSS styles. After changing these settings you may need to regenerate your thumbnails." -msgstr "Disse innstillingene påvirker de faktiske dimensjonene på bilder i katalogen - displayet på front-end vil fortsatt bli påvirket av CSS-stiler. Etter å ha endret disse innstillingene må du kanskje regenerere miniatyrbildene." - -#: includes/admin/settings/class-wc-settings-products.php:366 -#@ woocommerce -msgid "Catalog Images" -msgstr "Katalogbilder" - -#: includes/admin/settings/class-wc-settings-products.php:367 -#@ woocommerce -msgid "This size is usually used in product listings" -msgstr "Denne størrelsen er vanligvis brukt i produktoppføringer" - -#: includes/admin/settings/class-wc-settings-products.php:380 -#@ woocommerce -msgid "Single Product Image" -msgstr "Enkeltproduktbilde" - -#: includes/admin/settings/class-wc-settings-products.php:381 -#@ woocommerce -msgid "This is the size used by the main image on the product page." -msgstr "Dette er størrelsen som brukes av hovedbildet på produktsiden." - -#: includes/admin/settings/class-wc-settings-products.php:394 -#@ woocommerce -msgid "Product Thumbnails" -msgstr "Produktminiatyrbilder" - -#: includes/admin/settings/class-wc-settings-products.php:395 -#@ woocommerce -msgid "This size is usually used for the gallery of images on the product page." -msgstr "Denne størrelsen er vanligvis brukt for bildegalleriet på produktsiden." - -#: includes/admin/settings/class-wc-settings-products.php:79 -#@ woocommerce -msgid "Inventory Options" -msgstr "Lagersaldovalg" - -#: includes/admin/settings/class-wc-settings-products.php:82 -#@ woocommerce -msgid "Manage Stock" -msgstr "Administrere lager" - -#: includes/admin/settings/class-wc-settings-products.php:83 -#@ woocommerce -msgid "Enable stock management" -msgstr "Aktiver administrering av lager" - -#: includes/admin/settings/class-wc-settings-products.php:90 -#@ woocommerce -msgid "Hold Stock (minutes)" -msgstr "Hold lager (minutter)" - -#: includes/admin/settings/class-wc-settings-products.php:91 -#@ woocommerce -msgid "Hold stock (for unpaid orders) for x minutes. When this limit is reached, the pending order will be cancelled. Leave blank to disable." -msgstr "Hold lager (for ubetalte ordrer) i x minutter. Når denne grensen er nådd, vil den ventende ordren bli kansellert. La stå tom for å deaktivere." - -#: includes/admin/settings/class-wc-settings-products.php:104 -#@ woocommerce -msgid "Notifications" -msgstr "Varsler" - -#: includes/admin/settings/class-wc-settings-products.php:105 -#@ woocommerce -msgid "Enable low stock notifications" -msgstr "Aktiver varsler for lite lager" - -#: includes/admin/settings/class-wc-settings-products.php:114 -#@ woocommerce -msgid "Enable out of stock notifications" -msgstr "Aktiver varsler for tomt på lager" - -#: includes/admin/settings/class-wc-settings-products.php:123 -#@ woocommerce -msgid "Notification Recipient" -msgstr "Varselmottaker" - -#: includes/admin/settings/class-wc-settings-products.php:132 -#@ woocommerce -msgid "Low Stock Threshold" -msgstr "Terskel for lite lager" - -#: includes/admin/settings/class-wc-settings-products.php:146 -#@ woocommerce -msgid "Out Of Stock Threshold" -msgstr "Tomt-på-lager-terskel" - -#: includes/admin/settings/class-wc-settings-products.php:160 -#@ woocommerce -msgid "Out Of Stock Visibility" -msgstr "Tomt-på-lager-synlighet" - -#: includes/admin/settings/class-wc-settings-products.php:161 -#@ woocommerce -msgid "Hide out of stock items from the catalog" -msgstr "Skjul varer som ikke er på lager fra katalogen" - -#: includes/admin/settings/class-wc-settings-products.php:168 -#@ woocommerce -msgid "Stock Display Format" -msgstr "Lagervisningsformat" - -#: includes/admin/settings/class-wc-settings-products.php:169 -#@ woocommerce -msgid "This controls how stock is displayed on the frontend." -msgstr "Dette styrer hvordan lager vises på front-end." - -#: includes/admin/settings/class-wc-settings-products.php:175 -#@ woocommerce -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "Alltid vis lagerbeholdning, f.eks \"12 på lager\"" - -#: includes/admin/settings/class-wc-settings-products.php:176 -#@ woocommerce -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "Vis kun lagerbeholdning ved lavt nivå, f.eks \"Bare 2 igjen på lager\" vs \"på lager\"" - -#: includes/admin/settings/class-wc-settings-products.php:177 -#@ woocommerce -msgid "Never show stock amount" -msgstr "Vis aldri antall på lager" - -#: includes/admin/settings/class-wc-settings-shipping.php:70 -#@ woocommerce -msgid "Shipping Calculations" -msgstr "Fraktberegninger" - -#: includes/admin/settings/class-wc-settings-shipping.php:71 -#@ woocommerce -msgid "Enable shipping" -msgstr "Aktiver frakt" - -#: includes/admin/settings/class-wc-settings-shipping.php:79 -#@ woocommerce -msgid "Enable the shipping calculator on the cart page" -msgstr "Aktiver fraktkalkulatoren på handlekurvsiden" - -#: includes/admin/settings/class-wc-settings-shipping.php:88 -#@ woocommerce -msgid "Hide shipping costs until an address is entered" -msgstr "Skjul fraktkostnadene frem til en adresse skrives inn" - -#: includes/admin/settings/class-wc-settings-shipping.php:98 -#@ woocommerce -msgid "This controls how multiple shipping methods are displayed on the frontend." -msgstr "Dette styrer hvordan flere fraktmetoder vises på front-end." - -#: includes/admin/settings/class-wc-settings-shipping.php:111 -#@ woocommerce -msgid "Shipping Destination" -msgstr "Fraktdestinasjon" - -#: includes/admin/settings/class-wc-settings-shipping.php:122 -#@ woocommerce -msgid "Only ship to the users billing address" -msgstr "Send kun til brukerens fakturaadresse" - -#: includes/admin/settings/class-wc-settings-shipping.php:112 -#@ woocommerce -msgid "Ship to billing address by default" -msgstr "Send til fakturaadresse som standard" - -#: includes/admin/settings/class-wc-settings-checkout.php:178 -#@ woocommerce -msgid "Payment Gateways" -msgstr "Betalingsløsninger" - -#: includes/admin/settings/class-wc-settings-tax.php:40 -#: includes/admin/settings/class-wc-settings-tax.php:68 -#@ woocommerce -msgid "Tax Options" -msgstr "Skattevalg" - -#: includes/admin/settings/class-wc-settings-tax.php:71 -#@ woocommerce -msgid "Enable Taxes" -msgstr "Aktiver skatter" - -#: includes/admin/settings/class-wc-settings-tax.php:72 -#@ woocommerce -msgid "Enable taxes and tax calculations" -msgstr "Aktiver skatter og skatteberegninger" - -#: includes/admin/settings/class-wc-settings-tax.php:79 -#@ woocommerce -msgid "Prices Entered With Tax" -msgstr "Priser lagt inn med skatt" - -#: includes/admin/settings/class-wc-settings-tax.php:83 -#@ woocommerce -msgid "This option is important as it will affect how you input prices. Changing it will not update existing products." -msgstr "Dette valget er viktig fordi det vil påvirke hvordan du legger inn priser. Å endre det vil ikke oppdatere eksisterende produkter." - -#: includes/admin/settings/class-wc-settings-tax.php:85 -#@ woocommerce -msgid "Yes, I will enter prices inclusive of tax" -msgstr "Ja, jeg skal legge inn priser inkludert skatt" - -#: includes/admin/settings/class-wc-settings-tax.php:86 -#@ woocommerce -msgid "No, I will enter prices exclusive of tax" -msgstr "Nei, jeg foretrekker priser uten skatt" - -#: includes/admin/settings/class-wc-settings-tax.php:91 -#@ woocommerce -msgid "Calculate Tax Based On:" -msgstr "Beregn skatt basert på:" - -#: includes/admin/settings/class-wc-settings-tax.php:93 -#@ woocommerce -msgid "This option determines which address is used to calculate tax." -msgstr "Dette valget bestemmer hvilken adresse som skal brukes til å beregne skatt." - -#: includes/admin/settings/class-wc-settings-tax.php:97 -#@ woocommerce -msgid "Customer shipping address" -msgstr "Kundens leveringsadresse" - -#: includes/admin/settings/class-wc-settings-tax.php:98 -#@ woocommerce -msgid "Customer billing address" -msgstr "Kundens fakturaadresse" - -#: includes/admin/settings/class-wc-settings-tax.php:99 -#: includes/admin/settings/class-wc-settings-tax.php:111 -#@ woocommerce -msgid "Shop base address" -msgstr "Butikkens baseadresse" - -#: includes/admin/settings/class-wc-settings-tax.php:104 -#@ woocommerce -msgid "Default Customer Address:" -msgstr "Standard kundeadresse:" - -#: includes/admin/settings/class-wc-settings-tax.php:106 -#@ woocommerce -msgid "This option determines the customers default address (before they input their own)." -msgstr "Dette valget bestemmer kundens standardadresse (før de oppgir sin egen)." - -#: includes/admin/settings/class-wc-settings-tax.php:110 -#@ woocommerce -msgid "No address" -msgstr "Ingen adresse" - -#: includes/admin/settings/class-wc-settings-tax.php:116 -#@ woocommerce -msgid "Shipping Tax Class:" -msgstr "Fraktskatteklasse:" - -#: includes/admin/settings/class-wc-settings-tax.php:117 -#@ woocommerce -msgid "Optionally control which tax class shipping gets, or leave it so shipping tax is based on the cart items themselves." -msgstr "Valgfritt å styre hvilken skatteklasse frakt får, eller la det være så skatt på frakt er basert på gjenstandene i handlekurven." - -#: includes/admin/settings/class-wc-settings-tax.php:122 -#@ woocommerce -msgid "Shipping tax class based on cart items" -msgstr "Fraktskatteklasser basert pågjenstander i handlekurv" - -#: includes/admin/settings/class-wc-settings-tax.php:127 -#@ woocommerce -msgid "Rounding" -msgstr "Avrunding" - -#: includes/admin/settings/class-wc-settings-tax.php:128 -#@ woocommerce -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "Rund av skatt på delsumsnivå, i stedet for avrunding per linje" - -#: includes/admin/settings/class-wc-settings-tax.php:135 -#@ woocommerce -msgid "Additional Tax Classes" -msgstr "Flere skatteklasser" - -#: includes/admin/settings/class-wc-settings-tax.php:136 -#@ woocommerce -msgid "List additonal tax classes below (1 per line). This is in addition to the default Standard Rate. Tax classes can be assigned to products." -msgstr "List ekstra skatteklasser nedenfor (1 per linje). Dette kommer i tillegg til standard Standardsats. Skatteklasser kan tildeles produkter." - -#: includes/admin/settings/class-wc-settings-tax.php:140 -#, php-format -#@ woocommerce -msgid "Reduced Rate%sZero Rate" -msgstr "Redusert sats%sNullsats" - -#: includes/admin/settings/class-wc-settings-tax.php:163 -#@ woocommerce -msgid "Display prices during cart/checkout:" -msgstr "Vis priser med handlekurv / kassen:" - -#: includes/admin/settings/class-wc-settings-tax.php:149 -#: includes/admin/settings/class-wc-settings-tax.php:168 -#@ woocommerce -msgid "Including tax" -msgstr "Inkludert skatt" - -#: includes/admin/settings/class-wc-settings-tax.php:150 -#: includes/admin/settings/class-wc-settings-tax.php:169 -#@ woocommerce -msgid "Excluding tax" -msgstr "Utelater skatt" - -#: includes/admin/settings/class-wc-settings-emails.php:66 -#@ woocommerce -msgid "Email Sender Options" -msgstr "Epost avsendervalg" - -#: includes/admin/settings/class-wc-settings-emails.php:66 -#@ woocommerce -msgid "The following options affect the sender (email address and name) used in WooCommerce emails." -msgstr "Følgende valg påvirker avsenderen (epostadresse og navn) benyttet i WooCommerce eposter." - -#: includes/admin/settings/class-wc-settings-emails.php:69 -#@ woocommerce -msgid "\"From\" Name" -msgstr "\"Fra\" Navn" - -#: includes/admin/settings/class-wc-settings-emails.php:79 -#@ woocommerce -msgid "\"From\" Email Address" -msgstr "\"Fra\" Epostadresse" - -#: includes/admin/settings/class-wc-settings-emails.php:93 -#@ woocommerce -msgid "Email Template" -msgstr "Epostmal" - -#: includes/admin/settings/class-wc-settings-emails.php:93 -#, php-format -#@ woocommerce -msgid "This section lets you customise the WooCommerce emails. Click here to preview your email template. For more advanced control copy woocommerce/templates/emails/ to yourtheme/woocommerce/emails/." -msgstr "Dette området lar deg tilpasse epostene fra WooCommerce. Klikk her for å forhåndsvise epostmalen din. For mer avansert styring kopier woocommerce/templates/emails/ til yourtheme/woocommerce/emails/." - -#: includes/admin/settings/class-wc-settings-emails.php:96 -#@ woocommerce -msgid "Header Image" -msgstr "Overskriftsbilde" - -#: includes/admin/settings/class-wc-settings-emails.php:97 -#, php-format -#@ woocommerce -msgid "Enter a URL to an image you want to show in the email's header. Upload your image using the media uploader." -msgstr "Tast inn en URL til et bilde du vil vise i epostens overskrift. Last opp bildet ditt ved hjelp av mediaopplaster." - -#: includes/admin/settings/class-wc-settings-emails.php:106 -#@ woocommerce -msgid "Email Footer Text" -msgstr "Epost bunntekst" - -#: includes/admin/settings/class-wc-settings-emails.php:107 -#@ woocommerce -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "Teksten som skal vises i bunnteksten på WooCommerce eposter." - -#: includes/admin/settings/class-wc-settings-emails.php:111 -#@ woocommerce -msgid "Powered by WooCommerce" -msgstr "Drevet av WooCommerce" - -#: includes/admin/settings/class-wc-settings-emails.php:116 -#@ woocommerce -msgid "Base Colour" -msgstr "Basisfarge" - -#: includes/admin/settings/class-wc-settings-emails.php:117 -#@ woocommerce -msgid "The base colour for WooCommerce email templates. Default #557da1." -msgstr "Basisfargen for WooCommerce epostmaler. Standard # 557da1." - -#: includes/admin/settings/class-wc-settings-emails.php:126 -#@ woocommerce -msgid "Background Colour" -msgstr "Bakgrunnsfarge" - -#: includes/admin/settings/class-wc-settings-emails.php:127 -#@ woocommerce -msgid "The background colour for WooCommerce email templates. Default #f5f5f5." -msgstr "Bakgrunnsfarge for WooCommerce epostmaler. Standard # f5f5f5." - -#: includes/admin/settings/class-wc-settings-emails.php:136 -#@ woocommerce -msgid "Email Body Background Colour" -msgstr "Bakgrunnsfarge på epostens brødtekst" - -#: includes/admin/settings/class-wc-settings-emails.php:137 -#@ woocommerce -msgid "The main body background colour. Default #fdfdfd." -msgstr "Hoveddelens bakgrunnsfarge. Standard #fdfdfd." - -#: includes/admin/settings/class-wc-settings-emails.php:146 -#@ woocommerce -msgid "Email Body Text Colour" -msgstr "Tekstfarge på epostens brødtekst" - -#: includes/admin/settings/class-wc-settings-emails.php:147 -#@ woocommerce -msgid "The main body text colour. Default #505050." -msgstr "Hoveddelens tekstfarge. Standard #505050." - -#: includes/admin/class-wc-admin-permalink-settings.php:113 -#: includes/admin/class-wc-admin-taxonomies.php:91 -#: includes/admin/class-wc-admin-taxonomies.php:180 -#: includes/admin/settings/class-wc-settings-checkout.php:226 -#: includes/admin/settings/class-wc-settings-shipping.php:202 -#: includes/admin/views/html-admin-page-status-report.php:70 -#@ woocommerce -msgid "Default" -msgstr "Standard" - -#: includes/admin/settings/class-wc-settings-checkout.php:227 -#@ woocommerce -msgid "Gateway" -msgstr "Gateway" - -#: includes/admin/settings/class-wc-settings-checkout.php:228 -#@ woocommerce -msgid "Gateway ID" -msgstr "Gateway-ID" - -#: includes/admin/settings/class-wc-settings-shipping.php:197 -#@ woocommerce -msgid "Shipping Methods" -msgstr "Fraktmetoder" - -#: includes/admin/post-types/meta-boxes/views/html-order-shipping.php:11 -#@ woocommerce -msgid "Shipping Method" -msgstr "Fraktmetode" - -#: includes/admin/settings/class-wc-settings-tax.php:241 -#, php-format -#@ woocommerce -msgid "Tax Rates for the \"%s\" Class" -msgstr "Skattesatser for \"%s\"-klassen" - -#: includes/admin/settings/class-wc-settings-tax.php:242 -#, php-format -#@ woocommerce -msgid "Define tax rates for countries and states below. See here for available alpha-2 country codes." -msgstr "Definer skattesatser for land og delstater nedenfor. Se her for tilgjengelige alfa-2 landkoder." - -#: includes/admin/settings/class-wc-settings-tax.php:248 -#@ woocommerce -msgid "Country Code" -msgstr "Land Kode" - -#: includes/admin/settings/class-wc-settings-tax.php:248 -#@ woocommerce -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "En 2-bokstavs landkode, f.eks. US. La stå tom for å bruke på alle." - -#: includes/admin/settings/class-wc-settings-tax.php:250 -#@ woocommerce -msgid "State Code" -msgstr "Delstatskode" - -#: includes/admin/settings/class-wc-settings-tax.php:250 -#@ woocommerce -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "En 2-bokstavs delstats kode, f.eks. MD. La stå tom for å bruke på alle." - -#: includes/admin/settings/class-wc-settings-tax.php:252 -#: includes/admin/settings/class-wc-settings-tax.php:381 -#@ woocommerce -msgid "ZIP/Postcode" -msgstr "ZIP/Postnummer" - -#: includes/admin/settings/class-wc-settings-tax.php:252 -#@ woocommerce -msgid "Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank to apply to all areas. Wildcards (*) can be used. Ranges for numeric postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "Postnummer for denne regelen. Semikolon (;) skiller flere verdier. La stå tom for å gjelde for alle områder. \"Wildcards\" (*) kan brukes. Områder for numeriske postnummer (f.eks 2345-6789) vil bli utvidet til individuelle postnummer." - -#: includes/admin/settings/class-wc-settings-tax.php:254 -#@ woocommerce -msgid "Cities for this rule. Semi-colon (;) separate multiple values. Leave blank to apply to all cities." -msgstr "Byer for denne regelen. Semikolon (;) skiller flere verdier. La stå tom for å gjelde alle byer." - -#: includes/admin/settings/class-wc-settings-tax.php:256 -#@ woocommerce -msgid "Rate %" -msgstr "%-sats" - -#: includes/admin/settings/class-wc-settings-tax.php:256 -#@ woocommerce -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "Angi en skattesats (prosent) med fire desimaler." - -#: includes/admin/settings/class-wc-settings-tax.php:258 -#@ woocommerce -msgid "Tax Name" -msgstr "Skattenavn" - -#: includes/admin/settings/class-wc-settings-tax.php:258 -#@ woocommerce -msgid "Enter a name for this tax rate." -msgstr "Tast inn et navn for denne skattesatsen." - -#: includes/admin/settings/class-wc-settings-tax.php:260 -#: includes/admin/settings/class-wc-settings-tax.php:381 -#@ woocommerce -msgid "Priority" -msgstr "Prioritet" - -#: includes/admin/settings/class-wc-settings-tax.php:260 -#@ woocommerce -msgid "Choose a priority for this tax rate. Only 1 matching rate per priority will be used. To define multiple tax rates for a single area you need to specify a different priority per rate." -msgstr "Velg en prioritet for denne skattesatsen. Bare 1 matching per prioritet vil bli brukt. For å definere flere skattesatser for et enkelt område må du angi en annen prioritet per sats." - -#: includes/admin/settings/class-wc-settings-tax.php:262 -#: includes/admin/settings/class-wc-settings-tax.php:381 -#@ woocommerce -msgid "Compound" -msgstr "Sammensatt" - -#: includes/admin/settings/class-wc-settings-tax.php:262 -#@ woocommerce -msgid "Choose whether or not this is a compound rate. Compound tax rates are applied on top of other tax rates." -msgstr "Velge hvorvidt dette er et sammensatt skattesats. Sammensatte skattesatser er brukt på toppen av andre skattesatser." - -#: includes/admin/settings/class-wc-settings-tax.php:264 -#@ woocommerce -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "Velge hvorvidt denne skattesatsen også blir brukt til frakt." - -#: includes/admin/settings/class-wc-settings-tax.php:271 -#@ woocommerce -msgid "Insert row" -msgstr "Sett inn rad" - -#: includes/admin/settings/class-wc-settings-tax.php:272 -#@ woocommerce -msgid "Remove selected row(s)" -msgstr "Fjern valgte rad(er)" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:316 -#: includes/admin/reports/class-wc-report-customers.php:202 -#: includes/admin/reports/class-wc-report-sales-by-category.php:213 -#: includes/admin/reports/class-wc-report-sales-by-date.php:162 -#: includes/admin/reports/class-wc-report-sales-by-product.php:326 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:29 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:29 -#: includes/admin/settings/class-wc-settings-tax.php:287 -#@ woocommerce -msgid "Export CSV" -msgstr "Eksporter CSV" - -#: includes/admin/settings/class-wc-settings-tax.php:288 -#@ woocommerce -msgid "Import CSV" -msgstr "Importer CSV" - -#: includes/admin/settings/class-wc-settings-tax.php:374 -#@ woocommerce -msgid "No row(s) selected" -msgstr "Ingen rader valgt" - -#: includes/admin/settings/class-wc-settings-tax.php:381 -#@ woocommerce -msgid "Country Code" -msgstr "Landkode" - -#: includes/admin/settings/class-wc-settings-tax.php:381 -#@ woocommerce -msgid "State Code" -msgstr "Delstatskode" - -#: includes/admin/settings/class-wc-settings-tax.php:381 -#@ woocommerce -msgid "Rate %" -msgstr "%-sats" - -#: includes/admin/settings/class-wc-settings-tax.php:381 -#@ woocommerce -msgid "Tax Name" -msgstr "Skattenavn" - -#: includes/admin/class-wc-admin-attributes.php:82 -#@ woocommerce -msgid "Please, provide an attribute name, slug and type." -msgstr "Vennligst oppgi et attributtnavn, slug og type." - -#: includes/admin/class-wc-admin-attributes.php:84 -#, php-format -#@ woocommerce -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "Slug \"% s\" er for lang (28 tegn maks). Vennligst forkort den." - -#: includes/admin/class-wc-admin-attributes.php:86 -#, php-format -#@ woocommerce -msgid "Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "Slug \"% s\" ikke er tillatt, fordi den er en reservert term. Vennligst endre den." - -#: includes/admin/class-wc-admin-attributes.php:91 -#: includes/admin/class-wc-admin-attributes.php:96 -#, php-format -#@ woocommerce -msgid "Slug “%s” is already in use. Change it, please." -msgstr "Slug \"%s\" er allerede i bruk. Vennligst endre den." - -#: includes/admin/class-wc-admin-attributes.php:233 -#@ woocommerce -msgid "Edit Attribute" -msgstr "Rediger attributt" - -#: includes/admin/class-wc-admin-attributes.php:243 -#: includes/admin/class-wc-admin-attributes.php:376 -#@ woocommerce -msgid "Name for the attribute (shown on the front-end)." -msgstr "Navn på attributten (vist på front-end)." - -#: includes/admin/class-wc-admin-attributes.php:248 -#: includes/admin/class-wc-admin-attributes.php:308 -#: includes/admin/class-wc-admin-attributes.php:380 -#@ woocommerce -msgid "Slug" -msgstr "Slug" - -#: includes/admin/class-wc-admin-attributes.php:252 -#: includes/admin/class-wc-admin-attributes.php:382 -#@ woocommerce -msgid "Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "Unik slug/referanse for attributten; må være kortere enn 28 tegn." - -#: includes/admin/class-wc-admin-attributes.php:261 -#: includes/admin/class-wc-admin-attributes.php:388 -#@ woocommerce -msgid "Select" -msgstr "Velg" - -#: includes/admin/class-wc-admin-attributes.php:262 -#: includes/admin/class-wc-admin-attributes.php:389 -#@ woocommerce -msgid "Text" -msgstr "Tekst" - -#: includes/admin/class-wc-admin-attributes.php:270 -#: includes/admin/class-wc-admin-attributes.php:396 -#@ woocommerce -msgid "Default sort order" -msgstr "Standard sorteringsrekkefølge" - -#: includes/admin/class-wc-admin-attributes.php:274 -#: includes/admin/class-wc-admin-attributes.php:336 -#: includes/admin/class-wc-admin-attributes.php:398 -#@ woocommerce -msgid "Custom ordering" -msgstr "Tilpasset ordre" - -#: includes/admin/class-wc-admin-attributes.php:276 -#: includes/admin/class-wc-admin-attributes.php:333 -#: includes/admin/class-wc-admin-attributes.php:400 -#@ woocommerce -msgid "Term ID" -msgstr "Term-ID" - -#: includes/admin/class-wc-admin-attributes.php:310 -#: includes/widgets/class-wc-widget-product-categories.php:36 -#: includes/widgets/class-wc-widget-products.php:51 -#@ woocommerce -msgid "Order by" -msgstr "Sorter etter" - -#: includes/admin/class-wc-admin-attributes.php:311 -#@ woocommerce -msgid "Terms" -msgstr "Termer" - -#: includes/admin/class-wc-admin-attributes.php:360 -#@ woocommerce -msgid "No attributes currently exist." -msgstr "Ingen attributter eksisterer foreløpig." - -#: includes/admin/class-wc-admin-attributes.php:370 -#@ woocommerce -msgid "Add New Attribute" -msgstr "Legg til ny attributt" - -#: includes/admin/class-wc-admin-attributes.php:371 -#@ woocommerce -msgid "Attributes let you define extra product data, such as size or colour. You can use these attributes in the shop sidebar using the \"layered nav\" widgets. Please note: you cannot rename an attribute later on." -msgstr "Attributter lar deg definere ekstra produktdata, som størrelse og farge. Du kan benytte disse attributtene i shoppens sidebar ved å bruke \"layered nav\" widgets. Vennligst merk: du kan ikke gi en attributt et nytt navn senere." - -#: includes/admin/class-wc-admin-attributes.php:405 -#@ woocommerce -msgid "Add Attribute" -msgstr "Legg til attributt" - -#: includes/admin/class-wc-admin-attributes.php:416 -#@ woocommerce -msgid "Are you sure you want to delete this attribute?" -msgstr "Er du sikker på at du vil slette denne attributten?" - -#: includes/admin/class-wc-admin-help.php:56 -#: includes/admin/class-wc-admin-help.php:67 -#: includes/admin/class-wc-admin-menus.php:80 -#: includes/admin/views/html-admin-page-status.php:5 -#@ woocommerce -msgid "System Status" -msgstr "Systemstatus" - -#: includes/admin/settings/class-wc-settings-emails.php:25 -#@ woocommerce -msgid "Emails" -msgstr "Eposter" - -#: includes/admin/settings/class-wc-settings-integrations.php:25 -#@ woocommerce -msgid "Integration" -msgstr "Integrering" - -#: includes/admin/class-wc-admin-menus.php:56 -#@ woocommerce -msgid "Reports" -msgstr "Rapporter" - -#: includes/widgets/class-wc-widget-products.php:56 -#@ woocommerce -msgid "Sales" -msgstr "Salg" - -#: includes/admin/class-wc-admin-reports.php:75 -#: includes/admin/reports/class-wc-report-customer-list.php:23 -#@ woocommerce -msgid "Customers" -msgstr "Kunder" - -#: includes/admin/class-wc-admin-help.php:73 -#@ woocommerce -msgid "For more information:" -msgstr "For mer informasjon:" - -#: includes/admin/class-wc-admin-help.php:75 -#@ woocommerce -msgid "Project on WordPress.org" -msgstr "Prosjekt på WordPress.org" - -#: includes/admin/class-wc-admin-help.php:76 -#@ woocommerce -msgid "Project on Github" -msgstr "Prosjekt på Github" - -#: includes/admin/class-wc-admin-help.php:77 -#@ woocommerce -msgid "Official Extensions" -msgstr "Offisielle utvidelser" - -#: includes/admin/class-wc-admin-help.php:78 -#@ woocommerce -msgid "Official Themes" -msgstr "Offisielle temaer" - -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: includes/admin/class-wc-admin-permalink-settings.php:117 -#: includes/admin/reports/class-wc-report-stock.php:137 -#: includes/class-wc-post-types.php:241 -#: templates/cart/cart.php:27 -#: templates/checkout/form-pay.php:19 -#: templates/checkout/review-order.php:18 -#: templates/emails/admin-new-order.php:22 -#: templates/emails/customer-completed-order.php:23 -#: templates/emails/customer-invoice.php:27 -#: templates/emails/customer-note.php:27 -#: templates/emails/customer-processing-order.php:23 -#: templates/order/order-details.php:20 -#@ woocommerce -msgid "Product" -msgid_plural "Products" -msgstr[0] "Produkt" -msgstr[1] "Produkter" - -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: includes/class-wc-post-types.php:65 -#@ woocommerce -msgid "Product Category" -msgid_plural "Product Categories" -msgstr[0] "Produktkategori" -msgstr[1] "Produktkategorier" - -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: includes/class-wc-post-types.php:100 -#@ woocommerce -msgid "Product Tag" -msgid_plural "Product Tags" -msgstr[0] "Produktstikkord" -msgstr[1] "Produktstikkord" - -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: includes/widgets/class-wc-widget-layered-nav.php:75 -#@ woocommerce -msgid "Attribute" -msgid_plural "Attributes" -msgstr[0] "Attributt" -msgstr[1] "Attributter" - -#: includes/admin/class-wc-admin-dashboard.php:200 -#@ woocommerce -msgid "There are no product reviews yet." -msgstr "Det er ingen produktanmeldelser ennå." - -#: includes/admin/settings/class-wc-settings-checkout.php:159 -#@ woocommerce -msgid "Order Received" -msgstr "Ordre mottatt" - -#: includes/admin/wc-admin-functions.php:192 -#@ woocommerce -msgid "Could not compile woocommerce.less:" -msgstr "Kunne ikke kompilere woocommerce.less:" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:657 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:658 -#@ woocommerce -msgid "Mark processing" -msgstr "Merk behandler" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:663 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:664 -#@ woocommerce -msgid "Mark completed" -msgstr "Merk ferdig" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:705 -#@ woocommerce -msgid "Order status changed by bulk edit:" -msgstr "Ordrestatus endret av bulkredigering:" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:727 -#, php-format -#@ default -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "Ordrestatus endret." -msgstr[1] "%s ordrestatuser endret." - -#: includes/admin/class-wc-admin-menus.php:63 -#@ woocommerce -msgid "WooCommerce Settings" -msgstr "WooCommerce-innstillinger" - -#: includes/admin/class-wc-admin-dashboard.php:37 -#: includes/admin/class-wc-admin-menus.php:80 -#@ woocommerce -msgid "WooCommerce Status" -msgstr "WooCommerce status" - -#: includes/admin/class-wc-admin-assets.php:136 -#@ woocommerce -msgid "Are you sure you want to remove the selected items? If you have previously reduced this item's stock, or this order was submitted by a customer, you will need to manually restore the item's stock." -msgstr "Er du sikker på at du vil slette det valgte gjenstandene? Dersom du tidligere har redusert denne gjenstandens lagerbeholdningen, eller denne ordren ble sendt av en kunde, må du manuelt gjenopprette gjenstandens lagerbeholdning." - -#: includes/admin/class-wc-admin-assets.php:137 -#@ woocommerce -msgid "Please select some items." -msgstr "Vennligst velg noen gjenstander." - -#: includes/admin/class-wc-admin-assets.php:138 -#@ woocommerce -msgid "Remove this item meta?" -msgstr "Fjern denne gjenstandens meta?" - -#: includes/admin/class-wc-admin-assets.php:139 -#@ woocommerce -msgid "Remove this attribute?" -msgstr "Fjern denne attributten" - -#: includes/admin/class-wc-admin-assets.php:147 -#@ woocommerce -msgid "Enter a name for the new attribute term:" -msgstr "Tast inn et navn for den nye attributtermen:" - -#: includes/admin/class-wc-admin-assets.php:148 -#@ woocommerce -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "Beregn totalen basert på ordregjenstander, rabatter og frakt?" - -#: includes/admin/class-wc-admin-assets.php:149 -#@ woocommerce -msgid "Calculate line taxes? This will calculate taxes based on the customers country. If no billing/shipping is set it will use the store base country." -msgstr "Beregne skattelinjer? Dette vil beregne skatter basert på kundens land. Dersom ikke fakturering/frakt er satt vil den benytte butikkens baselokalitet." - -#: includes/admin/class-wc-admin-assets.php:150 -#@ woocommerce -msgid "Copy billing information to shipping information? This will remove any currently entered shipping information." -msgstr "Kopier faktureringsinformasjon til leveringsinformasjon? Dette vil fjerne leveringsinformasjon som allerede er ført inn." - -#: includes/admin/class-wc-admin-assets.php:151 -#@ woocommerce -msgid "Load the customer's billing information? This will remove any currently entered billing information." -msgstr "Laste kundens faktureringsinformasjon? Dette vil fjerne envher allerede skrevet faktureringsinformasjon." - -#: includes/admin/class-wc-admin-assets.php:152 -#@ woocommerce -msgid "Load the customer's shipping information? This will remove any currently entered shipping information." -msgstr "Laste kundens leveringsinformasjon? Dette vil fjerne envher allerede skrevet leveringsinformasjon." - -#: includes/admin/class-wc-admin-assets.php:156 -#@ woocommerce -msgid "No customer selected" -msgstr "Ingen kunder valgt" - -#: includes/admin/class-wc-admin-post-types.php:58 -#, php-format -#@ woocommerce -msgid "Product updated. View Product" -msgstr "Produkt oppdatert. Vis produkt" - -#: includes/admin/class-wc-admin-post-types.php:59 -#: includes/admin/class-wc-admin-post-types.php:74 -#: includes/admin/class-wc-admin-post-types.php:89 -#@ woocommerce -msgid "Custom field updated." -msgstr "Tilpasset felt oppdatert." - -#: includes/admin/class-wc-admin-post-types.php:60 -#: includes/admin/class-wc-admin-post-types.php:75 -#: includes/admin/class-wc-admin-post-types.php:90 -#@ woocommerce -msgid "Custom field deleted." -msgstr "Tilpasset felt slettet." - -#: includes/admin/class-wc-admin-post-types.php:61 -#@ woocommerce -msgid "Product updated." -msgstr "Produkt oppdatert." - -#: includes/admin/class-wc-admin-post-types.php:62 -#, php-format -#@ woocommerce -msgid "Product restored to revision from %s" -msgstr "Produktet gjennopprettet til revidering fra %s" - -#: includes/admin/class-wc-admin-post-types.php:63 -#, php-format -#@ woocommerce -msgid "Product published. View Product" -msgstr "Produktet publisert. Vis Produkt" - -#: includes/admin/class-wc-admin-post-types.php:64 -#@ woocommerce -msgid "Product saved." -msgstr "Produkt lagret." - -#: includes/admin/class-wc-admin-post-types.php:65 -#, php-format -#@ woocommerce -msgid "Product submitted. Preview Product" -msgstr "Produkt sendt inn. Forhåndsvis produkt" - -#: includes/admin/class-wc-admin-post-types.php:66 -#, php-format -#@ woocommerce -msgid "Product scheduled for: %1$s. Preview Product" -msgstr "Produkt planlagt: %1$s. Forhåndsvis produkt" - -#: includes/admin/class-wc-admin-post-types.php:67 -#: includes/admin/class-wc-admin-post-types.php:82 -#: includes/admin/class-wc-admin-post-types.php:97 -#@ woocommerce -msgid "M j, Y @ G:i" -msgstr "M j, Y @ G:i" - -#: includes/admin/class-wc-admin-post-types.php:68 -#, php-format -#@ woocommerce -msgid "Product draft updated. Preview Product" -msgstr "Produktustkast oppdatert. Forhåndsvis produkt" - -#: includes/admin/class-wc-admin-post-types.php:73 -#: includes/admin/class-wc-admin-post-types.php:76 -#: includes/admin/class-wc-admin-post-types.php:78 -#@ woocommerce -msgid "Order updated." -msgstr "Ordre oppdatert." - -#: includes/admin/class-wc-admin-post-types.php:77 -#, php-format -#@ woocommerce -msgid "Order restored to revision from %s" -msgstr "Ordre tilbakeført til revidering fra %s" - -#: includes/admin/class-wc-admin-post-types.php:79 -#@ woocommerce -msgid "Order saved." -msgstr "Ordre lagret." - -#: includes/admin/class-wc-admin-post-types.php:80 -#@ woocommerce -msgid "Order submitted." -msgstr "Ordre sendt." - -#: includes/admin/class-wc-admin-post-types.php:81 -#, php-format -#@ woocommerce -msgid "Order scheduled for: %1$s." -msgstr "Ordre planlagt: %1$s." - -#: includes/admin/class-wc-admin-post-types.php:83 -#@ woocommerce -msgid "Order draft updated." -msgstr "Ordreutkast oppdatert." - -#: includes/admin/class-wc-admin-post-types.php:88 -#: includes/admin/class-wc-admin-post-types.php:91 -#: includes/admin/class-wc-admin-post-types.php:93 -#@ woocommerce -msgid "Coupon updated." -msgstr "Kupong oppdatert." - -#: includes/admin/class-wc-admin-post-types.php:92 -#, php-format -#@ woocommerce -msgid "Coupon restored to revision from %s" -msgstr "Kupong gjenopprettet til revidering fra %s" - -#: includes/admin/class-wc-admin-post-types.php:94 -#@ woocommerce -msgid "Coupon saved." -msgstr "Kupong lagret." - -#: includes/admin/class-wc-admin-post-types.php:95 -#@ woocommerce -msgid "Coupon submitted." -msgstr "Kupong levert." - -#: includes/admin/class-wc-admin-post-types.php:96 -#, php-format -#@ woocommerce -msgid "Coupon scheduled for: %1$s." -msgstr "Kupong planlagt for: %1$s." - -#: includes/admin/class-wc-admin-post-types.php:98 -#@ woocommerce -msgid "Coupon draft updated." -msgstr "Kupongutkast oppdatert." - -#: includes/admin/class-wc-admin-permalink-settings.php:93 -#@ woocommerce -msgid "These settings control the permalinks used for products. These settings only apply when not using \"default\" permalinks above." -msgstr "Disse innstillingene styrer permalenker benyttet til produkter. Disse innstillingene gjelder bare når det ikke brukes \"standard\" permalenker ovenfor." - -#: includes/admin/class-wc-admin-permalink-settings.php:100 -#@ woocommerce -msgctxt "default-slug" -msgid "shop" -msgstr "butikk" - -#: includes/admin/class-wc-admin-permalink-settings.php:101 -#@ woocommerce -msgctxt "default-slug" -msgid "product" -msgstr "produkt" - -#: includes/admin/class-wc-admin-permalink-settings.php:122 -#@ woocommerce -msgid "Shop base" -msgstr "Butikkbase" - -#: includes/admin/class-wc-admin-permalink-settings.php:126 -#@ woocommerce -msgid "Shop base with category" -msgstr "Butikkbase med kategori" - -#: includes/admin/class-wc-admin-permalink-settings.php:132 -#@ woocommerce -msgid "Custom Base" -msgstr "Tilpasset base" - -#: includes/admin/class-wc-admin-permalink-settings.php:134 -#@ woocommerce -msgid "Enter a custom base to use. A base must be set or WordPress will use default instead." -msgstr "Tast inn en egendefinert base å bruke. En base være satt. Ellers vil WordPress bruke standard." - -#: includes/admin/class-wc-admin-permalink-settings.php:33 -#@ woocommerce -msgid "Product permalink base" -msgstr "Base for produktpermalenke" - -#: includes/admin/class-wc-admin-permalink-settings.php:38 -#@ woocommerce -msgid "Product category base" -msgstr "Base for produktkategorier" - -#: includes/admin/class-wc-admin-permalink-settings.php:45 -#@ woocommerce -msgid "Product tag base" -msgstr "Base for produktstikkord" - -#: includes/admin/class-wc-admin-permalink-settings.php:52 -#@ woocommerce -msgid "Product attribute base" -msgstr "Base for produktattributter" - -#: includes/class-wc-install.php:209 -#@ woocommerce -msgctxt "page_slug" -msgid "shop" -msgstr "butikk" - -#: includes/class-wc-install.php:210 -#@ woocommerce -msgid "Shop" -msgstr "Butikk" - -#: includes/class-wc-install.php:214 -#@ woocommerce -msgctxt "page_slug" -msgid "cart" -msgstr "handlekurv" - -#: includes/class-wc-install.php:219 -#@ woocommerce -msgctxt "page_slug" -msgid "checkout" -msgstr "kassen" - -#: includes/class-wc-install.php:224 -#@ woocommerce -msgctxt "page_slug" -msgid "my-account" -msgstr "min-konto" - -#: includes/admin/class-wc-admin-reports.php:61 -#@ woocommerce -msgid "Sales by category" -msgstr "Salg per kategori" - -#: includes/admin/reports/class-wc-report-sales-by-date.php:340 -#: includes/admin/reports/class-wc-report-sales-by-product.php:448 -#@ woocommerce -msgid "Sales amount" -msgstr "Salgsbeløp" - -#: templates/single-product/meta.php:20 -#@ woocommerce -msgid "n/a" -msgstr "i/a" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:169 -#: includes/admin/reports/class-wc-report-sales-by-category.php:169 -#: includes/admin/reports/class-wc-report-sales-by-product.php:178 -#: includes/widgets/class-wc-widget-products.php:41 -#@ woocommerce -msgid "Show" -msgstr "Vis" - -#: includes/admin/reports/class-wc-report-taxes-by-date.php:110 -#@ woocommerce -msgid "Total Sales" -msgstr "Totale salg" - -#: includes/admin/reports/class-wc-report-taxes-by-date.php:110 -#@ woocommerce -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "Dette er summen av feltet 'Ordretotal' i ordrene dine." - -#: includes/admin/reports/class-wc-report-taxes-by-date.php:111 -#@ woocommerce -msgid "Total Shipping" -msgstr "Total frakt" - -#: includes/admin/reports/class-wc-report-taxes-by-date.php:111 -#@ woocommerce -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "Dette er summen av feltet 'Frakttotal' i ordrene dine." - -#: includes/admin/reports/class-wc-report-taxes-by-date.php:113 -#@ woocommerce -msgid "Net profit" -msgstr "Netto fortjeneste" - -#: includes/admin/reports/class-wc-report-taxes-by-date.php:113 -#@ woocommerce -msgid "Total sales minus shipping and tax." -msgstr "Totale salg minus frakt og skatt." - -#: includes/admin/class-wc-admin-settings.php:63 -#@ woocommerce -msgid "Your settings have been saved." -msgstr "Innstillingene dine har blitt lagret." - -#: includes/admin/settings/class-wc-settings-emails.php:40 -#@ woocommerce -msgid "Email Options" -msgstr "Epostvalg" - -#: includes/admin/class-wc-admin-settings.php:119 -#@ woocommerce -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "Endringene du har gjort, vil gå tapt hvis du navigerer bort fra denne siden." - -#: includes/admin/class-wc-admin-settings.php:491 -#@ woocommerce -msgid "Select a page…" -msgstr "Velg en side…" - -#: includes/admin/class-wc-admin-settings.php:514 -#@ woocommerce -msgid "Choose a country…" -msgstr "Velg et land…" - -#: includes/admin/class-wc-admin-settings.php:538 -#@ woocommerce -msgid "Choose countries…" -msgstr "Velg land…" - -#: includes/admin/views/html-admin-page-status-tools.php:7 -#: includes/admin/views/html-admin-page-status.php:6 -#@ woocommerce -msgid "Tools" -msgstr "Verktøy" - -#: includes/admin/views/html-admin-page-status-report.php:2 -#@ woocommerce -msgid "Please include this information when requesting support:" -msgstr "Vennligst oppgi denne informasjonen når du ber om støtte:" - -#: includes/admin/views/html-admin-page-status-report.php:11 -#@ woocommerce -msgid "Environment" -msgstr "Miljø" - -#: includes/admin/views/html-admin-page-status-report.php:17 -#@ woocommerce -msgid "Home URL" -msgstr "Hjemme-URL" - -#: includes/admin/views/html-admin-page-status-report.php:21 -#@ woocommerce -msgid "Site URL" -msgstr "Site-URL" - -#: includes/admin/views/html-admin-page-status-report.php:25 -#@ woocommerce -msgid "WC Version" -msgstr "WC-versjon" - -#: includes/admin/views/html-admin-page-status-report.php:29 -#@ woocommerce -msgid "WC Database Version" -msgstr "WC Databaseversjon" - -#: includes/admin/views/html-admin-page-status-report.php:33 -#@ woocommerce -msgid "WP Version" -msgstr "WP-versjon" - -#: includes/admin/views/html-admin-page-status-report.php:41 -#@ woocommerce -msgid "Web Server Info" -msgstr "Webserverinfo" - -#: includes/admin/views/html-admin-page-status-report.php:45 -#@ woocommerce -msgid "PHP Version" -msgstr "PHP-versjon" - -#: includes/admin/views/html-admin-page-status-report.php:49 -#@ woocommerce -msgid "MySQL Version" -msgstr "MySQL-versjon" - -#: includes/admin/views/html-admin-page-status-report.php:53 -#@ woocommerce -msgid "WP Memory Limit" -msgstr "WP Minnegrense" - -#: includes/admin/views/html-admin-page-status-report.php:58 -#, php-format -#@ woocommerce -msgid "%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "%s - Vi anbefaler å sette minne til minst 64MB. Se: Øke minne som er tildelt PHP" - -#: includes/admin/views/html-admin-page-status-report.php:65 -#@ woocommerce -msgid "WP Debug Mode" -msgstr "WP debugmodus" - -#: includes/admin/views/html-admin-page-status-report.php:73 -#@ woocommerce -msgid "WP Max Upload Size" -msgstr "WP maks opplastningsstørelse" - -#: includes/admin/views/html-admin-page-status-report.php:78 -#@ woocommerce -msgid "PHP Post Max Size" -msgstr "PHP Post Max Size" - -#: includes/admin/views/html-admin-page-status-report.php:82 -#@ woocommerce -msgid "PHP Time Limit" -msgstr "PHP tidsbegrensning" - -#: includes/admin/views/html-admin-page-status-report.php:95 -#@ woocommerce -msgid "WC Logging" -msgstr "WC Logging" - -#: includes/admin/views/html-admin-page-status-report.php:98 -#@ woocommerce -msgid "Log directory is writable." -msgstr "Loggkatalogen er skrivbar." - -#: includes/admin/views/html-admin-page-status-report.php:100 -#@ woocommerce -msgid "Log directory (woocommerce/logs/) is not writable. Logging will not be possible." -msgstr "Loggkatalog (woocommerce /logs/) er ikke skrivbar. Logging vil ikke være mulig." - -#: includes/admin/views/html-admin-page-status-report.php:118 -#@ woocommerce -msgid "fsockopen/cURL" -msgstr "fsockopen/cURL" - -#: includes/admin/views/html-admin-page-status-report.php:121 -#@ woocommerce -msgid "Your server has fsockopen and cURL enabled." -msgstr "Serveren din har fsockopen og cURL aktivert." - -#: includes/admin/views/html-admin-page-status-report.php:123 -#@ woocommerce -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "Serveren din har fsockopen aktivert, cURL er deaktivert." - -#: includes/admin/views/html-admin-page-status-report.php:125 -#@ woocommerce -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "Serveren din har cURL aktivert, fsockopen er deaktivert." - -#: includes/admin/views/html-admin-page-status-report.php:129 -#@ woocommerce -msgid "Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider." -msgstr "Serveren din har ikke fsockopen eller cURL aktivert - PayPal IPN og andre skripter som kommuniserer med andre servere vil ikke fungere. Ta kontakt med din hosting leverandør." - -#: includes/admin/views/html-admin-page-status-report.php:134 -#@ woocommerce -msgid "SOAP Client" -msgstr "SOAP-klient" - -#: includes/admin/views/html-admin-page-status-report.php:136 -#@ woocommerce -msgid "Your server has the SOAP Client class enabled." -msgstr "Serveren din har SOAP-klientklassen aktivert." - -#: includes/admin/views/html-admin-page-status-report.php:139 -#, php-format -#@ woocommerce -msgid "Your server does not have the SOAP Client class enabled - some gateway plugins which use SOAP may not work as expected." -msgstr "Serveren din har ikke SOAP Client-klassen aktivert - noen gatewayutvidelser som bruker SOAP vil kanskje ikke fungere som forventet." - -#: includes/admin/views/html-admin-page-status-report.php:144 -#@ woocommerce -msgid "WP Remote Post" -msgstr "WP Fjerninnlegg" - -#: includes/admin/views/html-admin-page-status-report.php:155 -#@ woocommerce -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "wp_remote_post() var vellykket - PayPal IPN fungerer." - -#: includes/admin/views/html-admin-page-status-report.php:158 -#@ woocommerce -msgid "wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:" -msgstr "wp_remote_post() mislyktes. PayPal IPN vil ikke fungere med serveren din. Ta kontakt med din hostingleverandør. Feil:" - -#: includes/admin/views/html-admin-page-status-report.php:161 -#@ woocommerce -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "wp_remote_post() mislyktes. PayPal IPN virker kanskje ikke med serveren din." - -#: includes/admin/views/html-admin-page-status-report.php:200 -#@ woocommerce -msgid "Plugins" -msgstr "Utvidelser" - -#: includes/admin/views/html-admin-page-status-report.php:206 -#@ woocommerce -msgid "Installed Plugins" -msgstr "Installerte utvidelser" - -#: includes/admin/views/html-admin-page-status-report.php:253 -#@ woocommerce -msgid "by" -msgstr "av" - -#: includes/admin/views/html-admin-page-status-report.php:253 -#@ woocommerce -msgid "version" -msgstr "versjon" - -#: includes/admin/views/html-admin-page-status-report.php:275 -#@ woocommerce -msgid "Force SSL" -msgstr "Tving SSL" - -#: includes/admin/views/html-admin-page-status-report.php:282 -#@ woocommerce -msgid "WC Pages" -msgstr "WC-sider" - -#: includes/admin/views/html-admin-page-status-report.php:289 -#@ woocommerce -msgid "Shop Base" -msgstr "Butikkbase" - -#: includes/admin/views/html-admin-page-status-report.php:321 -#@ woocommerce -msgid "Page not set" -msgstr "Side ikke satt" - -#: includes/admin/views/html-admin-page-status-report.php:331 -#@ woocommerce -msgid "Page does not exist" -msgstr "Side eksisterer ikke" - -#: includes/admin/views/html-admin-page-status-report.php:336 -#, php-format -#@ woocommerce -msgid "Page does not contain the shortcode: %s" -msgstr "Side inneholder ikke hurtigkoden: %s" - -#: includes/admin/views/html-admin-page-status-report.php:355 -#@ woocommerce -msgid "WC Taxonomies" -msgstr "WC-taksonomier" - -#: includes/admin/views/html-admin-page-status-report.php:361 -#@ woocommerce -msgid "Order Statuses" -msgstr "Ordrestatuser" - -#: includes/admin/views/html-admin-page-status-report.php:371 -#@ woocommerce -msgid "Product Types" -msgstr "Produkttyper" - -#: includes/admin/views/html-admin-page-status-report.php:445 -#@ woocommerce -msgid "Templates" -msgstr "Maler" - -#: includes/admin/views/html-admin-page-status-report.php:451 -#@ woocommerce -msgid "Template Overrides" -msgstr "Mal-overstyring" - -#: includes/admin/class-wc-admin-status.php:165 -#@ woocommerce -msgid "WC Transients" -msgstr "WC-transienter" - -#: includes/admin/class-wc-admin-status.php:166 -#@ woocommerce -msgid "Clear transients" -msgstr "Tøm transienter" - -#: includes/admin/class-wc-admin-status.php:167 -#@ woocommerce -msgid "This tool will clear the product/shop transients cache." -msgstr "Dette verktøyet vil fjerne produkt-/butikktransientcache." - -#: includes/admin/class-wc-admin-status.php:170 -#@ woocommerce -msgid "Expired Transients" -msgstr "Utløpte transienter" - -#: includes/admin/class-wc-admin-status.php:171 -#@ woocommerce -msgid "Clear expired transients" -msgstr "Tøm utløpte transienter" - -#: includes/admin/class-wc-admin-status.php:172 -#@ woocommerce -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "Dette verktøyet vil fjerne ALLE utløpte transienter fra Wordpress." - -#: includes/admin/class-wc-admin-status.php:175 -#@ woocommerce -msgid "Term counts" -msgstr "Telte termer" - -#: includes/admin/class-wc-admin-status.php:176 -#@ woocommerce -msgid "Recount terms" -msgstr "Tell termer igjen" - -#: includes/admin/class-wc-admin-status.php:177 -#@ woocommerce -msgid "This tool will recount product terms - useful when changing your settings in a way which hides products from the catalog." -msgstr "Dette verktøyet vil telle om produkttermer - nyttig når du endrer innstillingene på en måte som skjuler produkter fra katalogen." - -#: includes/admin/class-wc-admin-status.php:180 -#@ woocommerce -msgid "Capabilities" -msgstr "Evner" - -#: includes/admin/class-wc-admin-status.php:181 -#@ woocommerce -msgid "Reset capabilities" -msgstr "Tilbakestill evner" - -#: includes/admin/class-wc-admin-status.php:182 -#@ woocommerce -msgid "This tool will reset the admin, customer and shop_manager roles to default. Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "Dette verktøyet vil tilbakestille admin, kunde-og shop_managerroller til standard. Bruk dette hvis brukerne ikke har tilgang til alle adminsidene i WooCommerce." - -#: includes/admin/class-wc-admin-status.php:52 -#@ woocommerce -msgid "Product Transients Cleared" -msgstr "Produkttransienter slettet" - -#: includes/admin/class-wc-admin-status.php:93 -#, php-format -#@ woocommerce -msgid "%d Transients Rows Cleared" -msgstr "%d transientrader fjernet" - -#: includes/admin/class-wc-admin-status.php:102 -#@ woocommerce -msgid "Roles successfully reset" -msgstr "Roller vellykket tilbakestilt" - -#: includes/admin/class-wc-admin-status.php:114 -#@ woocommerce -msgid "Terms successfully recounted" -msgstr "Termer vellykket telt igjen" - -#: includes/admin/class-wc-admin-status.php:138 -#, php-format -#@ woocommerce -msgid "There was an error calling %s::%s" -msgstr "Det oppstod en feil ved å kalle %s::%s" - -#: includes/admin/class-wc-admin-status.php:141 -#, php-format -#@ woocommerce -msgid "There was an error calling %s" -msgstr "Det oppstod en feil ved å kalle %s" - -#: includes/admin/class-wc-admin-taxonomies.php:89 -#: includes/admin/class-wc-admin-taxonomies.php:177 -#: includes/widgets/class-wc-widget-layered-nav.php:81 -#@ woocommerce -msgid "Display type" -msgstr "Visningstype" - -#: includes/admin/class-wc-admin-taxonomies.php:93 -#: includes/admin/class-wc-admin-taxonomies.php:182 -#@ woocommerce -msgid "Subcategories" -msgstr "Underkategorier" - -#: includes/admin/class-wc-admin-taxonomies.php:94 -#: includes/admin/class-wc-admin-taxonomies.php:183 -#@ woocommerce -msgid "Both" -msgstr "Begge" - -#: includes/admin/class-wc-admin-taxonomies.php:98 -#: includes/admin/class-wc-admin-taxonomies.php:188 -#@ woocommerce -msgid "Thumbnail" -msgstr "Miniatyrbilde" - -#: includes/admin/class-wc-admin-taxonomies.php:102 -#: includes/admin/class-wc-admin-taxonomies.php:193 -#@ woocommerce -msgid "Upload/Add image" -msgstr "Last opp/Legg til bilde" - -#: includes/admin/class-wc-admin-taxonomies.php:103 -#: includes/admin/class-wc-admin-taxonomies.php:194 -#@ woocommerce -msgid "Remove image" -msgstr "Fjern bilde" - -#: includes/admin/class-wc-admin-taxonomies.php:128 -#: includes/admin/class-wc-admin-taxonomies.php:215 -#@ woocommerce -msgid "Use image" -msgstr "Bruk bilde" - -#: includes/admin/class-wc-admin-taxonomies.php:273 -#@ woocommerce -msgid "Product categories for your store can be managed here. To change the order of categories on the front-end you can drag and drop to sort them. To see more categories listed click the \"screen options\" link at the top of the page." -msgstr "Produktkategorier for butikken din kan styres her. Hvis du vil endre rekkefølgen på kategoriene på front-end, kan du dra og slippe for å sortere dem. For å se flere kategorier oppført, klikk på \"screen options\"-linken øverst på siden." - -#: includes/admin/class-wc-admin-taxonomies.php:283 -#@ woocommerce -msgid "Shipping classes can be used to group products of similar type. These groups can then be used by certain shipping methods to provide different rates to different products." -msgstr "Fraktklasser kan brukes for å gruppere produkter av lignende type. Disse gruppene kan deretter brukes av visse fraktmetoder for å gi ulike priser til forskjellige produkter." - -#: includes/admin/class-wc-admin-profile.php:45 -#@ woocommerce -msgid "Customer Billing Address" -msgstr "Kundens fakturaadresse" - -#: includes/admin/class-wc-admin-profile.php:48 -#: includes/admin/class-wc-admin-profile.php:97 -#: templates/myaccount/form-edit-account.php:20 -#@ woocommerce -msgid "First name" -msgstr "Fornavn" - -#: includes/admin/class-wc-admin-profile.php:52 -#: includes/admin/class-wc-admin-profile.php:101 -#: templates/myaccount/form-edit-account.php:24 -#@ woocommerce -msgid "Last name" -msgstr "Etternavn" - -#: includes/admin/class-wc-admin-profile.php:77 -#@ woocommerce -msgid "Country or state code" -msgstr "Land- eller delstatskode" - -#: includes/admin/class-wc-admin-profile.php:81 -#: includes/admin/class-wc-admin-profile.php:130 -#@ woocommerce -msgid "2 letter Country code" -msgstr "2-bokstavs landkode" - -#: includes/admin/class-wc-admin-profile.php:84 -#@ woocommerce -msgid "Telephone" -msgstr "Telefon" - -#: includes/admin/class-wc-admin-profile.php:94 -#@ woocommerce -msgid "Customer Shipping Address" -msgstr "Kundens leveringsadresse" - -#: includes/admin/class-wc-admin-profile.php:126 -#@ woocommerce -msgid "State/County or state code" -msgstr "Delstat/Fylke eller delstatskode" - -#: includes/class-wc-countries.php:58 -#@ woocommerce -msgid "Belau" -msgstr "Belau" - -#: includes/class-wc-coupon.php:568 -#@ woocommerce -msgid "Coupon code applied successfully." -msgstr "Kupongkode vellykket brukt." - -#: includes/class-wc-coupon.php:592 -#@ woocommerce -msgid "Coupon is not valid." -msgstr "Kupong er ikke gyldig." - -#: includes/class-wc-coupon.php:604 -#@ woocommerce -msgid "Coupon code already applied!" -msgstr "Kupongkode er allerede satt!" - -#: includes/class-wc-coupon.php:607 -#, php-format -#@ woocommerce -msgid "Sorry, coupon \"%s\" has already been applied and cannot be used in conjunction with other coupons." -msgstr "Beklager, kupong \"% s\" er allerede blitt benyttet, og kan ikke brukes sammen med andre kuponger." - -#: includes/class-wc-coupon.php:622 -#@ woocommerce -msgid "Sorry, this coupon is not valid for sale items." -msgstr "Beklager, denne kupongen ikke gyldig for gjenstander på salg." - -#: includes/gateways/cod/class-wc-gateway-cod.php:74 -#: includes/gateways/cod/class-wc-gateway-cod.php:81 -#@ woocommerce -msgid "Pay with cash upon delivery." -msgstr "Betal kontant ved levering." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:165 -#@ woocommerce -msgid "Please enter a prefix for your invoice numbers. If you use your PayPal account for multiple stores ensure this prefix is unique as PayPal will not allow orders with the same invoice number." -msgstr "Vennligst skriv inn et prefiks for fakturanumre. Hvis du bruker PayPal-kontoen din for flere butikker, sikre at dette prefikset er unikt, siden PayPal ikke vil tillate ordrer med samme fakturanummer." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:160 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:193 -#@ woocommerce -msgid "Optional" -msgstr "Valgfritt" - -#: i18n/states/HU.php:13 -#@ woocommerce -msgid "Bács-Kiskun" -msgstr "Bács-Kiskun" - -#: i18n/states/HU.php:14 -#@ woocommerce -msgid "Békés" -msgstr "Békés" - -#: i18n/states/HU.php:15 -#@ woocommerce -msgid "Baranya" -msgstr "Baranya" - -#: i18n/states/HU.php:16 -#@ woocommerce -msgid "Borsod-Abaúj-Zemplén" -msgstr "Borsod-Abaúj-Zemplén" - -#: i18n/states/HU.php:17 -#@ woocommerce -msgid "Budapest" -msgstr "Budapest" - -#: i18n/states/HU.php:18 -#@ woocommerce -msgid "Csongrád" -msgstr "Csongrád" - -#: i18n/states/HU.php:19 -#@ woocommerce -msgid "Fejér" -msgstr "Fejér" - -#: i18n/states/HU.php:20 -#@ woocommerce -msgid "Győr-Moson-Sopron" -msgstr "Győr-Moson-Sopron" - -#: i18n/states/HU.php:21 -#@ woocommerce -msgid "Hajdú-Bihar" -msgstr "Hajdú-Bihar" - -#: i18n/states/HU.php:22 -#@ woocommerce -msgid "Heves" -msgstr "Heves" - -#: i18n/states/HU.php:23 -#@ woocommerce -msgid "Jász-Nagykun-Szolnok" -msgstr "Jász-Nagykun-Szolnok" - -#: i18n/states/HU.php:24 -#@ woocommerce -msgid "Komárom-Esztergom" -msgstr "Komárom-Esztergom" - -#: i18n/states/HU.php:25 -#@ woocommerce -msgid "Nógrád" -msgstr "Nógrád" - -#: i18n/states/HU.php:26 -#@ woocommerce -msgid "Pest" -msgstr "Pest" - -#: i18n/states/HU.php:27 -#@ woocommerce -msgid "Somogy" -msgstr "Somogy" - -#: i18n/states/HU.php:28 -#@ woocommerce -msgid "Szabolcs-Szatmár-Bereg" -msgstr "Szabolcs-Szatmár-Bereg" - -#: i18n/states/HU.php:29 -#@ woocommerce -msgid "Tolna" -msgstr "Tolna" - -#: i18n/states/HU.php:30 -#@ woocommerce -msgid "Vas" -msgstr "Vas" - -#: i18n/states/HU.php:31 -#@ woocommerce -msgid "Veszprém" -msgstr "Veszprém" - -#: i18n/states/HU.php:32 -#@ woocommerce -msgid "Zala" -msgstr "Zala" - -#: i18n/states/ID.php:13 -#@ woocommerce -msgid "Daerah Istimewa Aceh" -msgstr "Daerah Istimewa Aceh" - -#: i18n/states/ID.php:14 -#@ woocommerce -msgid "Sumatera Utara" -msgstr "Sumatera Utara" - -#: i18n/states/ID.php:15 -#@ woocommerce -msgid "Sumatera Barat" -msgstr "Sumatera Barat" - -#: i18n/states/ID.php:16 -#@ woocommerce -msgid "Riau" -msgstr "Riau" - -#: i18n/states/ID.php:17 -#@ woocommerce -msgid "Kepulauan Riau" -msgstr "Kepulauan Riau" - -#: i18n/states/ID.php:18 -#@ woocommerce -msgid "Jambi" -msgstr "Jambi" - -#: i18n/states/ID.php:19 -#@ woocommerce -msgid "Sumatera Selatan" -msgstr "Sumatera Selatan" - -#: i18n/states/ID.php:20 -#@ woocommerce -msgid "Bangka Belitung" -msgstr "Bangka Belitung" - -#: i18n/states/ID.php:21 -#@ woocommerce -msgid "Bengkulu" -msgstr "Bengkulu" - -#: i18n/states/ID.php:22 -#@ woocommerce -msgid "Lampung" -msgstr "Lampung" - -#: i18n/states/ID.php:23 -#@ woocommerce -msgid "DKI Jakarta" -msgstr "DKI Jakarta" - -#: i18n/states/ID.php:24 -#@ woocommerce -msgid "Jawa Barat" -msgstr "Jawa Barat" - -#: i18n/states/ID.php:25 -#@ woocommerce -msgid "Banten" -msgstr "Banten" - -#: i18n/states/ID.php:26 -#@ woocommerce -msgid "Jawa Tengah" -msgstr "Jawa Tengah" - -#: i18n/states/ID.php:27 -#@ woocommerce -msgid "Jawa Timur" -msgstr "Jawa Timur" - -#: i18n/states/ID.php:28 -#@ woocommerce -msgid "Daerah Istimewa Yogyakarta" -msgstr "Daerah Istimewa Yogyakarta" - -#: i18n/states/ID.php:29 -#@ woocommerce -msgid "Bali" -msgstr "Bali" - -#: i18n/states/ID.php:30 -#@ woocommerce -msgid "Nusa Tenggara Barat" -msgstr "Nusa Tenggara Barat" - -#: i18n/states/ID.php:31 -#@ woocommerce -msgid "Nusa Tenggara Timur" -msgstr "Nusa Tenggara Timur" - -#: i18n/states/ID.php:32 -#@ woocommerce -msgid "Kalimantan Barat" -msgstr "Kalimantan Barat" - -#: i18n/states/ID.php:33 -#@ woocommerce -msgid "Kalimantan Tengah" -msgstr "Kalimantan Tengah" - -#: i18n/states/ID.php:34 -#@ woocommerce -msgid "Kalimantan Timur" -msgstr "Kalimantan Timur" - -#: i18n/states/ID.php:35 -#@ woocommerce -msgid "Kalimantan Selatan" -msgstr "Kalimantan Selatan" - -#: i18n/states/ID.php:36 -#@ woocommerce -msgid "Kalimantan Utara" -msgstr "Kalimantan Utara" - -#: i18n/states/ID.php:37 -#@ woocommerce -msgid "Sulawesi Utara" -msgstr "Sulawesi Utara" - -#: i18n/states/ID.php:38 -#@ woocommerce -msgid "Sulawesi Tengah" -msgstr "Sulawesi Tengah" - -#: i18n/states/ID.php:39 -#@ woocommerce -msgid "Sulawesi Tenggara" -msgstr "Sulawesi Tenggara" - -#: i18n/states/ID.php:40 -#@ woocommerce -msgid "Sulawesi Barat" -msgstr "Sulawesi Barat" - -#: i18n/states/ID.php:41 -#@ woocommerce -msgid "Sulawesi Selatan" -msgstr "Sulawesi Selatan" - -#: i18n/states/ID.php:42 -#@ woocommerce -msgid "Gorontalo" -msgstr "Gorontalo" - -#: i18n/states/ID.php:43 -#@ woocommerce -msgid "Maluku" -msgstr "Maluku" - -#: i18n/states/ID.php:44 -#@ woocommerce -msgid "Maluku Utara" -msgstr "Maluku Utara" - -#: i18n/states/ID.php:45 -#@ woocommerce -msgid "Papua" -msgstr "Papua" - -#: i18n/states/ID.php:46 -#@ woocommerce -msgid "Papua Barat" -msgstr "Papua Barat" - -#: i18n/states/US.php:72 -#@ woocommerce -msgid "US Virgin Islands" -msgstr "US Virgin Islands" - -#: templates/checkout/form-login.php:14 -#@ woocommerce -msgid "Returning customer?" -msgstr "Tilbakevendende kunde?" - -#: templates/loop/orderby.php:22 -#@ woocommerce -msgid "Sort by popularity" -msgstr "Sorter etter popularitet" - -#: templates/loop/orderby.php:23 -#@ woocommerce -msgid "Sort by average rating" -msgstr "Sorter etter gjennomsnittsrangering" - -#: templates/loop/orderby.php:24 -#@ woocommerce -msgid "Sort by newness" -msgstr "Sorter etter nyhetsgrad" - -#: templates/loop/orderby.php:25 -#@ woocommerce -msgid "Sort by price: low to high" -msgstr "Sorter etter pris: lav til høy" - -#: templates/loop/orderby.php:26 -#@ woocommerce -msgid "Sort by price: high to low" -msgstr "Sorter etter pris: høy til lav" - -#: templates/myaccount/my-orders.php:62 -#, php-format -#@ woocommerce -msgid "%s for %s item" -msgid_plural "%s for %s items" -msgstr[0] "%s for %s gjenstand" -msgstr[1] "%s for %s gjenstander" - -#: includes/class-wc-ajax.php:987 -#@ woocommerce -msgid "No products had their stock reduced - they may not have stock management enabled." -msgstr "Ingen produkter hadde minsket lagernivået - de har muligens ikke administrering av lager aktivert" - -#: includes/class-wc-ajax.php:1034 -#@ woocommerce -msgid "No products had their stock increased - they may not have stock management enabled." -msgstr "Ingen produkter hadde øket lagernivået - de har muligens ikke administrering av lager aktivert" - -#: includes/class-wc-product-variation.php:491 -#, php-format -#@ woocommerce -msgid "%s – %s%s" -msgstr "%s – %s%s" - -#: includes/wc-core-functions.php:148 -#@ woocommerce -msgid "Australian Dollars" -msgstr "Australske dollar" - -#: includes/wc-core-functions.php:149 -#@ woocommerce -msgid "Brazilian Real" -msgstr "Brasilske Real" - -#: includes/wc-core-functions.php:151 -#@ woocommerce -msgid "Canadian Dollars" -msgstr "Kanadiske dollar" - -#: includes/wc-core-functions.php:152 -#@ woocommerce -msgid "Chinese Yuan" -msgstr "Kinesiske Yuan" - -#: includes/wc-core-functions.php:153 -#@ woocommerce -msgid "Czech Koruna" -msgstr "Tsjekkisk Koruna" - -#: includes/wc-core-functions.php:154 -#@ woocommerce -msgid "Danish Krone" -msgstr "Danske Kroner" - -#: includes/wc-core-functions.php:155 -#@ woocommerce -msgid "Euros" -msgstr "Euro" - -#: includes/wc-core-functions.php:156 -#@ woocommerce -msgid "Hong Kong Dollar" -msgstr "Hong Kong Dollar" - -#: includes/wc-core-functions.php:157 -#@ woocommerce -msgid "Hungarian Forint" -msgstr "Ungarske Forint" - -#: includes/wc-core-functions.php:159 -#@ woocommerce -msgid "Indonesia Rupiah" -msgstr "Indonesisk Rupiah" - -#: includes/wc-core-functions.php:161 -#@ woocommerce -msgid "Israeli Shekel" -msgstr "Israelske Shekel" - -#: includes/wc-core-functions.php:162 -#@ woocommerce -msgid "Japanese Yen" -msgstr "Japanske Yen" - -#: includes/wc-core-functions.php:164 -#@ woocommerce -msgid "Malaysian Ringgits" -msgstr "Malaysiske Ringgit" - -#: includes/wc-core-functions.php:165 -#@ woocommerce -msgid "Mexican Peso" -msgstr "Meksikanske peso" - -#: includes/wc-core-functions.php:166 -#@ woocommerce -msgid "Norwegian Krone" -msgstr "Norske Kroner" - -#: includes/wc-core-functions.php:167 -#@ woocommerce -msgid "New Zealand Dollar" -msgstr "New Zealandske Dollar" - -#: includes/wc-core-functions.php:168 -#@ woocommerce -msgid "Philippine Pesos" -msgstr "Filippinske Peso" - -#: includes/wc-core-functions.php:169 -#@ woocommerce -msgid "Polish Zloty" -msgstr "Polske Zloty" - -#: includes/wc-core-functions.php:170 -#@ woocommerce -msgid "Pounds Sterling" -msgstr "Britiske pund" - -#: includes/wc-core-functions.php:171 -#@ woocommerce -msgid "Romanian Leu" -msgstr "Rumenske Leu" - -#: includes/wc-core-functions.php:173 -#@ woocommerce -msgid "Singapore Dollar" -msgstr "Singapore Dollar" - -#: includes/wc-core-functions.php:174 -#@ woocommerce -msgid "South African rand" -msgstr "Sørafrikanske Rand" - -#: includes/wc-core-functions.php:175 -#@ woocommerce -msgid "Swedish Krona" -msgstr "Svenske Kroner" - -#: includes/wc-core-functions.php:176 -#@ woocommerce -msgid "Swiss Franc" -msgstr "Sveitsiske Franc" - -#: includes/wc-core-functions.php:177 -#@ woocommerce -msgid "Taiwan New Dollars" -msgstr "Taiwanesiske New Dollar" - -#: includes/wc-core-functions.php:178 -#@ woocommerce -msgid "Thai Baht" -msgstr "Thai Baht" - -#: includes/wc-core-functions.php:179 -#@ woocommerce -msgid "Turkish Lira" -msgstr "Tyrkiske Lire" - -#: includes/wc-core-functions.php:180 -#@ woocommerce -msgid "US Dollars" -msgstr "US Dollar" - -#: includes/class-wc-download-handler.php:137 -#@ woocommerce -msgid "No file defined" -msgstr "Ingen fil definert" - -#: includes/class-wc-form-handler.php:119 -#@ woocommerce -msgid "Address changed successfully." -msgstr "Addresse vellykket endret." - -#: includes/wc-template-functions.php:969 -#, php-format -#@ woocommerce -msgid "Reviews (%d)" -msgstr "Anmeldelser (%d)" - -#. translators: plugin header field 'PluginURI' -#: woocommerce.php:0 -#@ woocommerce -msgid "http://www.woothemes.com/woocommerce/" -msgstr "http://www.woothemes.com/woocommerce/" - -#. translators: plugin header field 'Description' -#: woocommerce.php:0 -#@ woocommerce -msgid "An e-commerce toolkit that helps you sell anything. Beautifully." -msgstr "Et verktøy for e-handel som hjelper deg å selge hva som helst. Vakkert." - -#. translators: plugin header field 'Author' -#: woocommerce.php:0 -#@ woocommerce -msgid "WooThemes" -msgstr "WooThemes" - -#. translators: plugin header field 'AuthorURI' -#: woocommerce.php:0 -#@ woocommerce -msgid "http://woothemes.com" -msgstr "http://woothemes.com" - -#: i18n/states/BG.php:13 -#@ woocommerce -msgid "Благоевград" -msgstr "" - -#: i18n/states/BG.php:14 -#@ woocommerce -msgid "Бургас" -msgstr "" - -#: i18n/states/BG.php:15 -#@ woocommerce -msgid "Варна" -msgstr "" - -#: i18n/states/BG.php:16 -#@ woocommerce -msgid "Велико Търново" -msgstr "" - -#: i18n/states/BG.php:17 -#@ woocommerce -msgid "Видин" -msgstr "" - -#: i18n/states/BG.php:18 -#@ woocommerce -msgid "Враца" -msgstr "" - -#: i18n/states/BG.php:19 -#@ woocommerce -msgid "Габрово" -msgstr "" - -#: i18n/states/BG.php:20 -#@ woocommerce -msgid "Добрич" -msgstr "" - -#: i18n/states/BG.php:21 -#@ woocommerce -msgid "Кърджали" -msgstr "" - -#: i18n/states/BG.php:22 -#@ woocommerce -msgid "Кюстендил" -msgstr "" - -#: i18n/states/BG.php:23 -#@ woocommerce -msgid "Ловеч" -msgstr "" - -#: i18n/states/BG.php:24 -#@ woocommerce -msgid "Монтана" -msgstr "" - -#: i18n/states/BG.php:25 -#@ woocommerce -msgid "Пазарджик" -msgstr "" - -#: i18n/states/BG.php:26 -#@ woocommerce -msgid "Перник" -msgstr "" - -#: i18n/states/BG.php:27 -#@ woocommerce -msgid "Плевен" -msgstr "" - -#: i18n/states/BG.php:28 -#@ woocommerce -msgid "Пловдив" -msgstr "" - -#: i18n/states/BG.php:29 -#@ woocommerce -msgid "Разград" -msgstr "" - -#: i18n/states/BG.php:30 -#@ woocommerce -msgid "Русе" -msgstr "" - -#: i18n/states/BG.php:31 -#@ woocommerce -msgid "Силистра" -msgstr "" - -#: i18n/states/BG.php:32 -#@ woocommerce -msgid "Сливен" -msgstr "" - -#: i18n/states/BG.php:33 -#@ woocommerce -msgid "Смолян" -msgstr "" - -#: i18n/states/BG.php:34 -#@ woocommerce -msgid "София-област" -msgstr "" - -#: i18n/states/BG.php:35 -#@ woocommerce -msgid "София-град" -msgstr "" - -#: i18n/states/BG.php:36 -#@ woocommerce -msgid "Стара Загора" -msgstr "" - -#: i18n/states/BG.php:37 -#@ woocommerce -msgid "Търговище" -msgstr "" - -#: i18n/states/BG.php:38 -#@ woocommerce -msgid "Хасково" -msgstr "" - -#: i18n/states/BG.php:39 -#@ woocommerce -msgid "Шумен" -msgstr "" - -#: i18n/states/BG.php:40 -#@ woocommerce -msgid "Ямбол" -msgstr "" - -#: i18n/states/ES.php:13 -#@ woocommerce -msgid "A Coruña" -msgstr "" - -#: i18n/states/ES.php:14 -#@ woocommerce -msgid "Álava" -msgstr "" - -#: i18n/states/ES.php:15 -#@ woocommerce -msgid "Albacete" -msgstr "" - -#: i18n/states/ES.php:16 -#@ woocommerce -msgid "Alicante" -msgstr "" - -#: i18n/states/ES.php:17 -#@ woocommerce -msgid "Almería" -msgstr "" - -#: i18n/states/ES.php:18 -#@ woocommerce -msgid "Asturias" -msgstr "" - -#: i18n/states/ES.php:19 -#@ woocommerce -msgid "Ávila" -msgstr "" - -#: i18n/states/ES.php:20 -#@ woocommerce -msgid "Badajoz" -msgstr "" - -#: i18n/states/ES.php:21 -#@ woocommerce -msgid "Baleares" -msgstr "" - -#: i18n/states/ES.php:22 -#@ woocommerce -msgid "Barcelona" -msgstr "" - -#: i18n/states/ES.php:23 -#@ woocommerce -msgid "Burgos" -msgstr "" - -#: i18n/states/ES.php:24 -#@ woocommerce -msgid "Cáceres" -msgstr "" - -#: i18n/states/ES.php:25 -#@ woocommerce -msgid "Cádiz" -msgstr "" - -#: i18n/states/ES.php:26 -#@ woocommerce -msgid "Cantabria" -msgstr "" - -#: i18n/states/ES.php:27 -#@ woocommerce -msgid "Castellón" -msgstr "" - -#: i18n/states/ES.php:28 -#@ woocommerce -msgid "Ceuta" -msgstr "" - -#: i18n/states/ES.php:29 -#@ woocommerce -msgid "Ciudad Real" -msgstr "" - -#: i18n/states/ES.php:30 -#@ woocommerce -msgid "Córdoba" -msgstr "" - -#: i18n/states/ES.php:31 -#@ woocommerce -msgid "Cuenca" -msgstr "" - -#: i18n/states/ES.php:32 -#@ woocommerce -msgid "Girona" -msgstr "" - -#: i18n/states/ES.php:33 -#@ woocommerce -msgid "Granada" -msgstr "" - -#: i18n/states/ES.php:34 -#@ woocommerce -msgid "Guadalajara" -msgstr "" - -#: i18n/states/ES.php:35 -#@ woocommerce -msgid "Guipúzcoa" -msgstr "" - -#: i18n/states/ES.php:36 -#@ woocommerce -msgid "Huelva" -msgstr "" - -#: i18n/states/ES.php:37 -#@ woocommerce -msgid "Huesca" -msgstr "" - -#: i18n/states/ES.php:38 -#@ woocommerce -msgid "Jaén" -msgstr "" - -#: i18n/states/ES.php:39 -#@ woocommerce -msgid "La Rioja" -msgstr "" - -#: i18n/states/ES.php:40 -#@ woocommerce -msgid "Las Palmas" -msgstr "" - -#: i18n/states/ES.php:41 -#@ woocommerce -msgid "León" -msgstr "" - -#: i18n/states/ES.php:42 -#@ woocommerce -msgid "Lleida" -msgstr "" - -#: i18n/states/ES.php:43 -#@ woocommerce -msgid "Lugo" -msgstr "" - -#: i18n/states/ES.php:44 -#@ woocommerce -msgid "Madrid" -msgstr "" - -#: i18n/states/ES.php:45 -#@ woocommerce -msgid "Málaga" -msgstr "" - -#: i18n/states/ES.php:46 -#@ woocommerce -msgid "Melilla" -msgstr "" - -#: i18n/states/ES.php:47 -#@ woocommerce -msgid "Murcia" -msgstr "" - -#: i18n/states/ES.php:48 -#@ woocommerce -msgid "Navarra" -msgstr "" - -#: i18n/states/ES.php:49 -#@ woocommerce -msgid "Ourense" -msgstr "" - -#: i18n/states/ES.php:50 -#@ woocommerce -msgid "Palencia" -msgstr "" - -#: i18n/states/ES.php:51 -#@ woocommerce -msgid "Pontevedra" -msgstr "" - -#: i18n/states/ES.php:52 -#@ woocommerce -msgid "Salamanca" -msgstr "" - -#: i18n/states/ES.php:53 -#@ woocommerce -msgid "Santa Cruz de Tenerife" -msgstr "" - -#: i18n/states/ES.php:54 -#@ woocommerce -msgid "Segovia" -msgstr "" - -#: i18n/states/ES.php:55 -#@ woocommerce -msgid "Sevilla" -msgstr "" - -#: i18n/states/ES.php:56 -#@ woocommerce -msgid "Soria" -msgstr "" - -#: i18n/states/ES.php:57 -#@ woocommerce -msgid "Tarragona" -msgstr "" - -#: i18n/states/ES.php:58 -#@ woocommerce -msgid "Teruel" -msgstr "" - -#: i18n/states/ES.php:59 -#@ woocommerce -msgid "Toledo" -msgstr "" - -#: i18n/states/ES.php:60 -#@ woocommerce -msgid "Valencia" -msgstr "" - -#: i18n/states/ES.php:61 -#@ woocommerce -msgid "Valladolid" -msgstr "" - -#: i18n/states/ES.php:62 -#@ woocommerce -msgid "Vizcaya" -msgstr "" - -#: i18n/states/ES.php:63 -#@ woocommerce -msgid "Zamora" -msgstr "" - -#: i18n/states/ES.php:64 -#@ woocommerce -msgid "Zaragoza" -msgstr "" - -#: i18n/states/IT.php:13 -#@ woocommerce -msgid "Agrigento" -msgstr "" - -#: i18n/states/IT.php:14 -#@ woocommerce -msgid "Alessandria" -msgstr "" - -#: i18n/states/IT.php:15 -#@ woocommerce -msgid "Ancona" -msgstr "" - -#: i18n/states/IT.php:16 -#@ woocommerce -msgid "Aosta" -msgstr "" - -#: i18n/states/IT.php:17 -#@ woocommerce -msgid "Arezzo" -msgstr "" - -#: i18n/states/IT.php:18 -#@ woocommerce -msgid "Ascoli Piceno" -msgstr "" - -#: i18n/states/IT.php:19 -#@ woocommerce -msgid "Asti" -msgstr "" - -#: i18n/states/IT.php:20 -#@ woocommerce -msgid "Avellino" -msgstr "" - -#: i18n/states/IT.php:21 -#@ woocommerce -msgid "Bari" -msgstr "" - -#: i18n/states/IT.php:22 -#@ woocommerce -msgid "Barletta-Andria-Trani" -msgstr "" - -#: i18n/states/IT.php:23 -#@ woocommerce -msgid "Belluno" -msgstr "" - -#: i18n/states/IT.php:24 -#@ woocommerce -msgid "Benevento" -msgstr "" - -#: i18n/states/IT.php:25 -#@ woocommerce -msgid "Bergamo" -msgstr "" - -#: i18n/states/IT.php:26 -#@ woocommerce -msgid "Biella" -msgstr "" - -#: i18n/states/IT.php:27 -#@ woocommerce -msgid "Bologna" -msgstr "" - -#: i18n/states/IT.php:28 -#@ woocommerce -msgid "Bolzano" -msgstr "" - -#: i18n/states/IT.php:29 -#@ woocommerce -msgid "Brescia" -msgstr "" - -#: i18n/states/IT.php:30 -#@ woocommerce -msgid "Brindisi" -msgstr "" - -#: i18n/states/IT.php:31 -#@ woocommerce -msgid "Cagliari" -msgstr "" - -#: i18n/states/IT.php:32 -#@ woocommerce -msgid "Caltanissetta" -msgstr "" - -#: i18n/states/IT.php:33 -#@ woocommerce -msgid "Campobasso" -msgstr "" - -#: i18n/states/IT.php:34 -#@ woocommerce -msgid "Carbonia-Iglesias" -msgstr "" - -#: i18n/states/IT.php:35 -#@ woocommerce -msgid "Caserta" -msgstr "" - -#: i18n/states/IT.php:36 -#@ woocommerce -msgid "Catania" -msgstr "" - -#: i18n/states/IT.php:37 -#@ woocommerce -msgid "Catanzaro" -msgstr "" - -#: i18n/states/IT.php:38 -#@ woocommerce -msgid "Chieti" -msgstr "" - -#: i18n/states/IT.php:39 -#@ woocommerce -msgid "Como" -msgstr "" - -#: i18n/states/IT.php:40 -#@ woocommerce -msgid "Cosenza" -msgstr "" - -#: i18n/states/IT.php:41 -#@ woocommerce -msgid "Cremona" -msgstr "" - -#: i18n/states/IT.php:42 -#@ woocommerce -msgid "Crotone" -msgstr "" - -#: i18n/states/IT.php:43 -#@ woocommerce -msgid "Cuneo" -msgstr "" - -#: i18n/states/IT.php:44 -#@ woocommerce -msgid "Enna" -msgstr "" - -#: i18n/states/IT.php:45 -#@ woocommerce -msgid "Fermo" -msgstr "" - -#: i18n/states/IT.php:46 -#@ woocommerce -msgid "Ferrara" -msgstr "" - -#: i18n/states/IT.php:47 -#@ woocommerce -msgid "Firenze" -msgstr "" - -#: i18n/states/IT.php:48 -#@ woocommerce -msgid "Foggia" -msgstr "" - -#: i18n/states/IT.php:49 -#@ woocommerce -msgid "Forlì-Cesena" -msgstr "" - -#: i18n/states/IT.php:50 -#@ woocommerce -msgid "Frosinone" -msgstr "" - -#: i18n/states/IT.php:51 -#@ woocommerce -msgid "Genova" -msgstr "" - -#: i18n/states/IT.php:52 -#@ woocommerce -msgid "Gorizia" -msgstr "" - -#: i18n/states/IT.php:53 -#@ woocommerce -msgid "Grosseto" -msgstr "" - -#: i18n/states/IT.php:54 -#@ woocommerce -msgid "Imperia" -msgstr "" - -#: i18n/states/IT.php:55 -#@ woocommerce -msgid "Isernia" -msgstr "" - -#: i18n/states/IT.php:56 -#@ woocommerce -msgid "La Spezia" -msgstr "" - -#: i18n/states/IT.php:57 -#@ woocommerce -msgid "L'Aquila" -msgstr "" - -#: i18n/states/IT.php:58 -#@ woocommerce -msgid "Latina" -msgstr "" - -#: i18n/states/IT.php:59 -#@ woocommerce -msgid "Lecce" -msgstr "" - -#: i18n/states/IT.php:60 -#@ woocommerce -msgid "Lecco" -msgstr "" - -#: i18n/states/IT.php:61 -#@ woocommerce -msgid "Livorno" -msgstr "" - -#: i18n/states/IT.php:62 -#@ woocommerce -msgid "Lodi" -msgstr "" - -#: i18n/states/IT.php:63 -#@ woocommerce -msgid "Lucca" -msgstr "" - -#: i18n/states/IT.php:64 -#@ woocommerce -msgid "Macerata" -msgstr "" - -#: i18n/states/IT.php:65 -#@ woocommerce -msgid "Mantova" -msgstr "" - -#: i18n/states/IT.php:66 -#@ woocommerce -msgid "Massa-Carrara" -msgstr "" - -#: i18n/states/IT.php:67 -#@ woocommerce -msgid "Matera" -msgstr "" - -#: i18n/states/IT.php:68 -#@ woocommerce -msgid "Messina" -msgstr "" - -#: i18n/states/IT.php:69 -#@ woocommerce -msgid "Milano" -msgstr "" - -#: i18n/states/IT.php:70 -#@ woocommerce -msgid "Modena" -msgstr "" - -#: i18n/states/IT.php:71 -#@ woocommerce -msgid "Monza e della Brianza" -msgstr "" - -#: i18n/states/IT.php:72 -#@ woocommerce -msgid "Napoli" -msgstr "" - -#: i18n/states/IT.php:73 -#@ woocommerce -msgid "Novara" -msgstr "" - -#: i18n/states/IT.php:74 -#@ woocommerce -msgid "Nuoro" -msgstr "" - -#: i18n/states/IT.php:75 -#@ woocommerce -msgid "Olbia-Tempio" -msgstr "" - -#: i18n/states/IT.php:76 -#@ woocommerce -msgid "Oristano" -msgstr "" - -#: i18n/states/IT.php:77 -#@ woocommerce -msgid "Padova" -msgstr "" - -#: i18n/states/IT.php:78 -#@ woocommerce -msgid "Palermo" -msgstr "" - -#: i18n/states/IT.php:79 -#@ woocommerce -msgid "Parma" -msgstr "" - -#: i18n/states/IT.php:80 -#@ woocommerce -msgid "Pavia" -msgstr "" - -#: i18n/states/IT.php:81 -#@ woocommerce -msgid "Perugia" -msgstr "" - -#: i18n/states/IT.php:82 -#@ woocommerce -msgid "Pesaro e Urbino" -msgstr "" - -#: i18n/states/IT.php:83 -#@ woocommerce -msgid "Pescara" -msgstr "" - -#: i18n/states/IT.php:84 -#@ woocommerce -msgid "Piacenza" -msgstr "" - -#: i18n/states/IT.php:85 -#@ woocommerce -msgid "Pisa" -msgstr "" - -#: i18n/states/IT.php:86 -#@ woocommerce -msgid "Pistoia" -msgstr "" - -#: i18n/states/IT.php:87 -#@ woocommerce -msgid "Pordenone" -msgstr "" - -#: i18n/states/IT.php:88 -#@ woocommerce -msgid "Potenza" -msgstr "" - -#: i18n/states/IT.php:89 -#@ woocommerce -msgid "Prato" -msgstr "" - -#: i18n/states/IT.php:90 -#@ woocommerce -msgid "Ragusa" -msgstr "" - -#: i18n/states/IT.php:91 -#@ woocommerce -msgid "Ravenna" -msgstr "" - -#: i18n/states/IT.php:92 -#@ woocommerce -msgid "Reggio Calabria" -msgstr "" - -#: i18n/states/IT.php:93 -#@ woocommerce -msgid "Reggio Emilia" -msgstr "" - -#: i18n/states/IT.php:94 -#@ woocommerce -msgid "Rieti" -msgstr "" - -#: i18n/states/IT.php:95 -#@ woocommerce -msgid "Rimini" -msgstr "" - -#: i18n/states/IT.php:96 -#@ woocommerce -msgid "Roma" -msgstr "" - -#: i18n/states/IT.php:97 -#@ woocommerce -msgid "Rovigo" -msgstr "" - -#: i18n/states/IT.php:98 -#@ woocommerce -msgid "Salerno" -msgstr "" - -#: i18n/states/IT.php:99 -#@ woocommerce -msgid "Medio Campidano" -msgstr "" - -#: i18n/states/IT.php:100 -#@ woocommerce -msgid "Sassari" -msgstr "" - -#: i18n/states/IT.php:101 -#@ woocommerce -msgid "Savona" -msgstr "" - -#: i18n/states/IT.php:102 -#@ woocommerce -msgid "Siena" -msgstr "" - -#: i18n/states/IT.php:103 -#@ woocommerce -msgid "Siracusa" -msgstr "" - -#: i18n/states/IT.php:104 -#@ woocommerce -msgid "Sondrio" -msgstr "" - -#: i18n/states/IT.php:105 -#@ woocommerce -msgid "Taranto" -msgstr "" - -#: i18n/states/IT.php:106 -#@ woocommerce -msgid "Teramo" -msgstr "" - -#: i18n/states/IT.php:107 -#@ woocommerce -msgid "Terni" -msgstr "" - -#: i18n/states/IT.php:108 -#@ woocommerce -msgid "Torino" -msgstr "" - -#: i18n/states/IT.php:109 -#@ woocommerce -msgid "Ogliastra" -msgstr "" - -#: i18n/states/IT.php:110 -#@ woocommerce -msgid "Trapani" -msgstr "" - -#: i18n/states/IT.php:111 -#@ woocommerce -msgid "Trento" -msgstr "" - -#: i18n/states/IT.php:112 -#@ woocommerce -msgid "Treviso" -msgstr "" - -#: i18n/states/IT.php:113 -#@ woocommerce -msgid "Trieste" -msgstr "" - -#: i18n/states/IT.php:114 -#@ woocommerce -msgid "Udine" -msgstr "" - -#: i18n/states/IT.php:115 -#@ woocommerce -msgid "Varese" -msgstr "" - -#: i18n/states/IT.php:116 -#@ woocommerce -msgid "Venezia" -msgstr "" - -#: i18n/states/IT.php:117 -#@ woocommerce -msgid "Verbano-Cusio-Ossola" -msgstr "" - -#: i18n/states/IT.php:118 -#@ woocommerce -msgid "Vercelli" -msgstr "" - -#: i18n/states/IT.php:119 -#@ woocommerce -msgid "Verona" -msgstr "" - -#: i18n/states/IT.php:120 -#@ woocommerce -msgid "Vibo Valentia" -msgstr "" - -#: i18n/states/IT.php:121 -#@ woocommerce -msgid "Vicenza" -msgstr "" - -#: i18n/states/IT.php:122 -#@ woocommerce -msgid "Viterbo" -msgstr "" - -#: i18n/states/JP.php:13 -#@ woocommerce -msgid "Hokkaido" -msgstr "" - -#: i18n/states/JP.php:14 -#@ woocommerce -msgid "Aomori" -msgstr "" - -#: i18n/states/JP.php:15 -#@ woocommerce -msgid "Iwate" -msgstr "" - -#: i18n/states/JP.php:16 -#@ woocommerce -msgid "Miyagi" -msgstr "" - -#: i18n/states/JP.php:17 -#@ woocommerce -msgid "Akita" -msgstr "" - -#: i18n/states/JP.php:18 -#@ woocommerce -msgid "Yamagata" -msgstr "" - -#: i18n/states/JP.php:19 -#@ woocommerce -msgid "Fukushima" -msgstr "" - -#: i18n/states/JP.php:20 -#@ woocommerce -msgid "Ibaraki" -msgstr "" - -#: i18n/states/JP.php:21 -#@ woocommerce -msgid "Tochigi" -msgstr "" - -#: i18n/states/JP.php:22 -#@ woocommerce -msgid "Gunma" -msgstr "" - -#: i18n/states/JP.php:23 -#@ woocommerce -msgid "Saitama" -msgstr "" - -#: i18n/states/JP.php:24 -#@ woocommerce -msgid "Chiba" -msgstr "" - -#: i18n/states/JP.php:25 -#@ woocommerce -msgid "Tokyo" -msgstr "" - -#: i18n/states/JP.php:26 -#@ woocommerce -msgid "Kanagawa" -msgstr "" - -#: i18n/states/JP.php:27 -#@ woocommerce -msgid "Niigata" -msgstr "" - -#: i18n/states/JP.php:28 -#@ woocommerce -msgid "Toyama" -msgstr "" - -#: i18n/states/JP.php:29 -#@ woocommerce -msgid "Ishikawa" -msgstr "" - -#: i18n/states/JP.php:30 -#@ woocommerce -msgid "Fukui" -msgstr "" - -#: i18n/states/JP.php:31 -#@ woocommerce -msgid "Yamanashi" -msgstr "" - -#: i18n/states/JP.php:32 -#@ woocommerce -msgid "Nagano" -msgstr "" - -#: i18n/states/JP.php:33 -#@ woocommerce -msgid "Gifu" -msgstr "" - -#: i18n/states/JP.php:34 -#@ woocommerce -msgid "Shizuoka" -msgstr "" - -#: i18n/states/JP.php:35 -#@ woocommerce -msgid "Aichi" -msgstr "" - -#: i18n/states/JP.php:36 -#@ woocommerce -msgid "Mie" -msgstr "" - -#: i18n/states/JP.php:37 -#@ woocommerce -msgid "Shiga" -msgstr "" - -#: i18n/states/JP.php:38 -#@ woocommerce -msgid "Kyouto" -msgstr "" - -#: i18n/states/JP.php:39 -#@ woocommerce -msgid "Osaka" -msgstr "" - -#: i18n/states/JP.php:40 -#@ woocommerce -msgid "Hyougo" -msgstr "" - -#: i18n/states/JP.php:41 -#@ woocommerce -msgid "Nara" -msgstr "" - -#: i18n/states/JP.php:42 -#@ woocommerce -msgid "Wakayama" -msgstr "" - -#: i18n/states/JP.php:43 -#@ woocommerce -msgid "Tottori" -msgstr "" - -#: i18n/states/JP.php:44 -#@ woocommerce -msgid "Shimane" -msgstr "" - -#: i18n/states/JP.php:45 -#@ woocommerce -msgid "Okayama" -msgstr "" - -#: i18n/states/JP.php:46 -#@ woocommerce -msgid "Hiroshima" -msgstr "" - -#: i18n/states/JP.php:47 -#@ woocommerce -msgid "Yamaguchi" -msgstr "" - -#: i18n/states/JP.php:48 -#@ woocommerce -msgid "Tokushima" -msgstr "" - -#: i18n/states/JP.php:49 -#@ woocommerce -msgid "Kagawa" -msgstr "" - -#: i18n/states/JP.php:50 -#@ woocommerce -msgid "Ehime" -msgstr "" - -#: i18n/states/JP.php:51 -#@ woocommerce -msgid "Kochi" -msgstr "" - -#: i18n/states/JP.php:52 -#@ woocommerce -msgid "Fukuoka" -msgstr "" - -#: i18n/states/JP.php:53 -#@ woocommerce -msgid "Saga" -msgstr "" - -#: i18n/states/JP.php:54 -#@ woocommerce -msgid "Nagasaki" -msgstr "" - -#: i18n/states/JP.php:55 -#@ woocommerce -msgid "Kumamoto" -msgstr "" - -#: i18n/states/JP.php:56 -#@ woocommerce -msgid "Oita" -msgstr "" - -#: i18n/states/JP.php:57 -#@ woocommerce -msgid "Miyazaki" -msgstr "" - -#: i18n/states/JP.php:58 -#@ woocommerce -msgid "Kagoshima" -msgstr "" - -#: i18n/states/JP.php:59 -#@ woocommerce -msgid "Okinawa" -msgstr "" - -#: includes/abstracts/abstract-wc-payment-gateway.php:206 -#@ woocommerce -msgid "Card Number" -msgstr "" - -#: includes/abstracts/abstract-wc-payment-gateway.php:210 -#@ woocommerce -msgid "Expiry (MM/YY)" -msgstr "" - -#: includes/abstracts/abstract-wc-payment-gateway.php:214 -#@ woocommerce -msgid "Card Code" -msgstr "" - -#: includes/abstracts/abstract-wc-product.php:464 -#@ woocommerce -msgid "Read more" -msgstr "" - -#: includes/abstracts/abstract-wc-product.php:1376 -#, php-format -#@ woocommerce -msgid "%s – %s" -msgstr "" - -#: includes/admin/class-wc-admin-assets.php:108 -#, php-format -#@ woocommerce -msgid "Please enter in decimal (%s) format without thousand separators." -msgstr "" - -#: includes/admin/class-wc-admin-assets.php:109 -#, php-format -#@ woocommerce -msgid "Please enter in monitary decimal (%s) format without thousand separators and currency symbols." -msgstr "" - -#: includes/admin/class-wc-admin-assets.php:203 -#@ woocommerce -msgid "Enter a value (fixed or %)" -msgstr "" - -#: includes/admin/class-wc-admin-attributes.php:265 -#: includes/admin/class-wc-admin-attributes.php:392 -#@ woocommerce -msgid "Determines how you select attributes for products. Under admin panel -> products -> product data -> attributes -> values, Text allows manual entry whereas select allows pre-configured terms in a drop-down list." -msgstr "" - -#: includes/admin/class-wc-admin-attributes.php:278 -#: includes/admin/class-wc-admin-attributes.php:402 -#@ woocommerce -msgid "Determines the sort order of the terms on the frontend shop product pages. If using custom ordering, you can drag and drop the terms in this attribute." -msgstr "" - -#: includes/admin/class-wc-admin-attributes.php:356 -#@ woocommerce -msgid "Configure terms" -msgstr "" - -#: includes/admin/class-wc-admin-dashboard.php:131 -#, php-format -#@ woocommerce -msgid "%s sales this month" -msgstr "" - -#: includes/admin/class-wc-admin-dashboard.php:138 -#, php-format -#@ woocommerce -msgid "%s top seller this month (sold %d)" -msgstr "" - -#: includes/admin/class-wc-admin-dashboard.php:144 -#, php-format -#@ woocommerce -msgid "%s order awaiting processing" -msgid_plural "%s orders awaiting processing" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/class-wc-admin-dashboard.php:149 -#, php-format -#@ woocommerce -msgid "%s order on-hold" -msgid_plural "%s orders on-hold" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/class-wc-admin-dashboard.php:154 -#, php-format -#@ woocommerce -msgid "%s product low in stock" -msgid_plural "%s products low in stock" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/class-wc-admin-dashboard.php:159 -#, php-format -#@ woocommerce -msgid "%s product out of stock" -msgid_plural "%s products out of stock" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/class-wc-admin-help.php:41 -#@ woocommerce -msgid "Thank you for using WooCommerce :) Should you need help using or extending WooCommerce please read the documentation." -msgstr "" - -#: includes/admin/class-wc-admin-help.php:43 -#@ woocommerce -msgid "WooCommerce Documentation" -msgstr "" - -#: includes/admin/class-wc-admin-help.php:43 -#@ woocommerce -msgid "Developer API Docs" -msgstr "" - -#: includes/admin/class-wc-admin-help.php:49 -#@ woocommerce -msgid "Support" -msgstr "" - -#: includes/admin/class-wc-admin-help.php:52 -#, php-format -#@ woocommerce -msgid "After reading the documentation, for further assistance you can use the community forum, or if you have access as a WooThemes customer, our support desk." -msgstr "" - -#: includes/admin/class-wc-admin-help.php:54 -#@ woocommerce -msgid "Before asking for help we recommend checking the status page to identify any problems with your configuration." -msgstr "" - -#: includes/admin/class-wc-admin-help.php:56 -#@ woocommerce -msgid "Community Support" -msgstr "" - -#: includes/admin/class-wc-admin-help.php:56 -#@ woocommerce -msgid "Customer Support" -msgstr "" - -#: includes/admin/class-wc-admin-help.php:62 -#@ woocommerce -msgid "Found a bug?" -msgstr "" - -#: includes/admin/class-wc-admin-help.php:65 -#, php-format -#@ woocommerce -msgid "If you find a bug within WooCommerce core you can create a ticket via Github issues. Ensure you read the contribution guide prior to submitting your report. Be as descriptive as possible and please include your system status report." -msgstr "" - -#: includes/admin/class-wc-admin-help.php:67 -#@ woocommerce -msgid "Report a bug" -msgstr "" - -#: includes/admin/class-wc-admin-help.php:74 -#@ woocommerce -msgid "About WooCommerce" -msgstr "" - -#: includes/admin/class-wc-admin-menus.php:88 -#: includes/admin/views/html-admin-page-addons.php:4 -#@ woocommerce -msgid "WooCommerce Add-ons/Extensions" -msgstr "" - -#: includes/admin/class-wc-admin-menus.php:88 -#@ woocommerce -msgid "Add-ons" -msgstr "" - -#: includes/admin/class-wc-admin-profile.php:197 -#@ woocommerce -msgid "Read" -msgstr "" - -#: includes/admin/class-wc-admin-profile.php:198 -#@ woocommerce -msgid "Write" -msgstr "" - -#: includes/admin/class-wc-admin-profile.php:199 -#@ woocommerce -msgid "Read/Write" -msgstr "" - -#: includes/admin/class-wc-admin-profile.php:207 -#@ woocommerce -msgid "WooCommerce API Keys" -msgstr "" - -#: includes/admin/class-wc-admin-profile.php:211 -#@ woocommerce -msgid "Generate API Key" -msgstr "" - -#: includes/admin/class-wc-admin-profile.php:213 -#@ woocommerce -msgid "Consumer Key:" -msgstr "" - -#: includes/admin/class-wc-admin-profile.php:214 -#@ woocommerce -msgid "Consumer Secret:" -msgstr "" - -#: includes/admin/class-wc-admin-profile.php:215 -#@ woocommerce -msgid "Permissions:" -msgstr "" - -#: includes/admin/class-wc-admin-profile.php:219 -#@ woocommerce -msgid "Revoke API Key" -msgstr "" - -#: includes/admin/class-wc-admin-reports.php:49 -#@ woocommerce -msgid "Sales by date" -msgstr "" - -#: includes/admin/class-wc-admin-reports.php:55 -#@ woocommerce -msgid "Sales by product" -msgstr "" - -#: includes/admin/class-wc-admin-reports.php:67 -#@ woocommerce -msgid "Coupons by date" -msgstr "" - -#: includes/admin/class-wc-admin-reports.php:78 -#@ woocommerce -msgid "Customers vs. Guests" -msgstr "" - -#: includes/admin/class-wc-admin-reports.php:84 -#@ woocommerce -msgid "Customer List" -msgstr "" - -#: includes/admin/class-wc-admin-reports.php:95 -#@ woocommerce -msgid "Low in stock" -msgstr "" - -#: includes/admin/class-wc-admin-reports.php:107 -#@ woocommerce -msgid "Most Stocked" -msgstr "" - -#: includes/admin/class-wc-admin-reports.php:118 -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:75 -#@ woocommerce -msgid "Taxes" -msgstr "" - -#: includes/admin/class-wc-admin-reports.php:121 -#@ woocommerce -msgid "Taxes by code" -msgstr "" - -#: includes/admin/class-wc-admin-reports.php:127 -#@ woocommerce -msgid "Taxes by date" -msgstr "" - -#: includes/admin/class-wc-admin-settings.php:466 -#@ woocommerce -msgid "Hard Crop?" -msgstr "" - -#: includes/admin/class-wc-admin-status.php:125 -#@ woocommerce -msgid "Sessions successfully cleared" -msgstr "" - -#: includes/admin/class-wc-admin-status.php:129 -#@ woocommerce -msgid "All missing WooCommerce pages was installed successfully." -msgstr "" - -#: includes/admin/class-wc-admin-status.php:151 -#@ woocommerce -msgid "Your changes have been saved." -msgstr "" - -#: includes/admin/class-wc-admin-status.php:185 -#@ woocommerce -msgid "Customer Sessions" -msgstr "" - -#: includes/admin/class-wc-admin-status.php:186 -#@ woocommerce -msgid "Clear all sessions" -msgstr "" - -#: includes/admin/class-wc-admin-status.php:187 -#@ woocommerce -msgid "Warning This tool will delete all customer session data from the database, including any current live carts." -msgstr "" - -#: includes/admin/class-wc-admin-status.php:191 -#@ woocommerce -msgid "Install pages" -msgstr "" - -#: includes/admin/class-wc-admin-status.php:192 -#@ woocommerce -msgid "Note This tool will install all the missing WooCommerce pages. Pages already defined and set up will not be replaced." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:240 -#@ woocommerce -msgid "A new RESTful API developers will ❤" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:243 -#@ woocommerce -msgid "Access your data from 3rd party applications" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:244 -#@ woocommerce -msgid "Built on top of the WooCommerce API, and targetted directly at developers, the new REST API allows you to get data for Orders, Coupons, Customers, Products and Reports in both XML and JSON formats." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:248 -#@ woocommerce -msgid "Authentication to keep data secure" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:249 -#@ woocommerce -msgid "Authentication for the REST API is performed using HTTP Basic Auth if you have SSL enabled, or signed according to the OAuth 1.0a specification if you don't have SSL. Data is only available to authenticated users." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:254 -#@ woocommerce -msgid "UI and reporting improvements" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:257 -#@ woocommerce -msgid "WordPress 3.8 UI (MP6) compatibility" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:258 -#@ woocommerce -msgid "WooCommerce 2.1 has had its UI restyled to work with the new MP6 design in WordPress. All bitmap icons have been replaced with a custom, lightweight icon font for razor sharp clarity on retina devices as well as improved performance." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:261 -#@ woocommerce -msgid "Simplified order UI" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:262 -#@ woocommerce -msgid "The orders panel has seen significant improvement to both the totals panel, and line item display making editing new and existing orders a breeze." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:263 -#@ woocommerce -msgid "Item meta has also been optimised and can now be viewed as HTML rather than stuck in a text input." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:266 -#@ woocommerce -msgid "Improved Reporting" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:267 -#@ woocommerce -msgid "Reports have been redesigned with new filtering capabilities, a new customer report showing orders/spending, and the ability to export CSVs." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:268 -#@ woocommerce -msgid "The dashboard also has a new widget showing you an overview of current orders complete with sparklines for quick at-a-glance stats." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:273 -#@ woocommerce -msgid "Separated integrations" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:276 -#@ woocommerce -msgid "New separate plugins" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:277 -#@ woocommerce -msgid "To make core more lean, some integrations have been removed and turned into dedicated plugins which you can install as and when you need them." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:281 -#@ woocommerce -msgid "Add Google Analytics eCommerce tracking to your WooCommerce store." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:282 -#: includes/admin/class-wc-admin-welcome.php:287 -#: includes/admin/class-wc-admin-welcome.php:292 -#: includes/admin/class-wc-admin-welcome.php:297 -#: includes/admin/class-wc-admin-welcome.php:302 -#@ woocommerce -msgid "Download" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:285 -#@ woocommerce -msgid "Piwik" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:286 -#@ woocommerce -msgid "Integrate WooCommerce with Piwik and the WP-Piwik plugin." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:291 -#@ woocommerce -msgid "Add social network sharing buttons to products using ShareThis." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:295 -#@ woocommerce -msgid "Sharedaddy" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:296 -#@ woocommerce -msgid "Add social network sharing buttons to products using Sharedaddy." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:301 -#@ woocommerce -msgid "Let users share their carts for a discount using the ShareYourCart service." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:311 -#@ woocommerce -msgid "PayPal PDT support" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:312 -#@ woocommerce -msgid "PayPal Data Transfer (PDT) is an alterntative for PayPal IPN which sends back the status of an order when a customer returns from PayPal." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:316 -#@ woocommerce -msgid "Stylesheet separation" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:317 -#@ woocommerce -msgid "Frontend styles have been split into separate appearance/layout/smallscreen stylesheets to help with selective customisation." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:321 -#@ woocommerce -msgid "New endpoints" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:322 -#@ woocommerce -msgid "Certain pages such as \"Pay\", \"Order Recieved\" and some account pages are now endpoints rather than pages to make checkout more reliable." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:328 -#@ woocommerce -msgid "Default credit card form for gateways" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:329 -#@ woocommerce -msgid "We've added a standardized, default credit card form for gateways to use if they support default_credit_card_form." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:333 -#@ woocommerce -msgid "Coupon limits per customer" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:334 -#@ woocommerce -msgid "Coupon usage limits can now be set per user (using email + ID) rather than global." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:338 -#@ woocommerce -msgid "Streamlined new-account process" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:339 -#@ woocommerce -msgid "During checkout, username and passwords are optional and can be automatically generated by WooCommerce." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:346 -#@ woocommerce -msgid "Additional price display options" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:347 -#@ woocommerce -msgid "Define whether prices should be shown incl. or excl. of tax on the frontend, and add an optional suffix." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:351 -#@ woocommerce -msgid "Past order linking" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:352 -#@ woocommerce -msgid "Admins now have the ability to link past orders to a customer (before they registered) by email address." -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:356 -#@ woocommerce -msgid "Review improvements" -msgstr "" - -#: includes/admin/class-wc-admin-welcome.php:357 -#@ woocommerce -msgid "We've added a new option to restrict reviews to logged in purchasers, and made ratings editable from the backend." -msgstr "" - -#: includes/admin/class-wc-admin.php:113 -#@ woocommerce -msgid "HTML Email Template" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:62 -#@ woocommerce -msgid "Description (optional)" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php:204 -#@ woocommerce -msgid "Show all types" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:88 -#@ woocommerce -msgid "Purchased" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:89 -#@ woocommerce -msgid "Ship to" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:151 -#, php-format -#@ woocommerce -msgid "%d item" -msgid_plural "%d items" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:202 -#, php-format -#@ woocommerce -msgid "plus %d other note" -msgid_plural "plus %d other notes" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:220 -#@ default -msgid "Billing:" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:266 -#, php-format -#@ woocommerce -msgid "%s by %s" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:660 -#: includes/admin/post-types/class-wc-admin-cpt-shop_order.php:661 -#@ woocommerce -msgid "Mark on-hold" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt.php:42 -#, php-format -#@ woocommerce -msgid "Insert into %s" -msgstr "" - -#: includes/admin/post-types/class-wc-admin-cpt.php:43 -#, php-format -#@ woocommerce -msgid "Uploaded to this %s" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:42 -#@ woocommerce -msgid "Usage Restriction" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:47 -#@ woocommerce -msgid "Usage Limits" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:66 -#@ woocommerce -msgid "Value of the coupon." -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:69 -#@ woocommerce -msgid "Allow free shipping" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:69 -#, php-format -#@ woocommerce -msgid "Check this box if the coupon grants free shipping. The free shipping method must be enabled with the \"must use coupon\" setting." -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:75 -#@ woocommerce -msgid "Coupon expiry date" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:75 -#@ woocommerce -msgctxt "placeholder" -msgid "YYYY-MM-DD" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:85 -#@ woocommerce -msgid "Minimum spend" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:88 -#@ woocommerce -msgid "Individual use only" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:166 -#@ woocommerce -msgid "Email restrictions" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:166 -#@ woocommerce -msgid "No restrictions" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:166 -#@ woocommerce -msgid "List of emails to check against the customer's billing email when an order is placed." -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:178 -#@ woocommerce -msgid "Usage limit per coupon" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:184 -#@ woocommerce -msgid "Limit usage to X items" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:184 -#@ woocommerce -msgctxt "placeholder" -msgid "Apply to all qualifying items in cart" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:184 -#@ woocommerce -msgid "The maximum number of individual items this coupon can apply to when using product discounts. Leave blank to apply to all qualifying items in cart." -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:190 -#@ woocommerce -msgid "Usage limit per user" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-coupon-data.php:190 -#@ woocommerce -msgid "How many times this coupon can be used by an invidual user. Uses billing email for guests, and user ID for logged in users." -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php:51 -#@ woocommerce -msgid "Generate Download Permissions" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:152 -#@ woocommerce -msgid "Order date:" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:208 -#@ woocommerce -msgid "Payment Method" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php:282 -#@ woocommerce -msgid "Customer Note" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-downloads.php:56 -#@ woocommerce -msgid "Search for a downloadable product…" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php:38 -#@ woocommerce -msgid "Tax Class" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php:45 -#, php-format -#@ woocommerce -msgid "by %s" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:66 -#@ woocommerce -msgid "+ Add shipping cost" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:66 -#@ woocommerce -msgid "These are the shipping and handling costs for the order." -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:148 -#@ woocommerce -msgid "Calculate Tax" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php:150 -#@ woocommerce -msgid "Calculate Total" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:180 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:143 -#@ woocommerce -msgid "Downloadable Files" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:185 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:147 -#@ woocommerce -msgid "This is the name of the download shown to the customer." -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:186 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:148 -#@ woocommerce -msgid "File URL" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:186 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:148 -#@ woocommerce -msgid "This is the URL or absolute path to the file which customers will get access to." -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:201 -#: includes/admin/post-types/meta-boxes/views/html-variation-admin.php:163 -#@ woocommerce -msgid "Add File" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:233 -#@ woocommerce -msgid "Download Type" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:233 -#, php-format -#@ woocommerce -msgid "Choose a download type - this controls the schema." -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:234 -#@ woocommerce -msgid "Standard Product" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:235 -#@ woocommerce -msgid "Application/Software" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:236 -#@ woocommerce -msgid "Music" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:282 -#@ woocommerce -msgid "Enable stock management at product level (not needed if managing stock at variation level)" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:475 -#@ woocommerce -msgid "Pipe (|) separate terms" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:759 -#@ woocommerce -msgid "Prices increase by (fixed amount or %)" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:760 -#@ woocommerce -msgid "Prices decrease by (fixed amount or %)" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:762 -#@ woocommerce -msgid "Sale prices increase by (fixed amount or %)" -msgstr "" - -#: includes/admin/post-types/meta-boxes/class-wc-meta-box-product-data.php:763 -#@ woocommerce -msgid "Sale prices decrease by (fixed amount or %)" -msgstr "" - -#: includes/admin/post-types/meta-boxes/views/html-order-download-permission.php:9 -#, php-format -#@ woocommerce -msgid "%s: %s" -msgstr "" - -#: includes/admin/post-types/meta-boxes/views/html-order-fee.php:12 -#@ woocommerce -msgid "Fee" -msgstr "" - -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:169 -#@ woocommerce -msgid "Before pre-tax discounts." -msgstr "" - -#: includes/admin/post-types/meta-boxes/views/html-order-item.php:171 -#@ woocommerce -msgid "After pre-tax discounts." -msgstr "" - -#: includes/admin/post-types/meta-boxes/views/html-order-shipping.php:6 -#@ woocommerce -msgid "Label" -msgstr "" - -#: includes/admin/post-types/meta-boxes/views/html-order-tax.php:7 -#@ woocommerce -msgid "Tax Rate" -msgstr "" - -#: includes/admin/post-types/meta-boxes/views/html-order-tax.php:17 -#@ woocommerce -msgid "Sales Tax" -msgstr "" - -#: includes/admin/post-types/meta-boxes/views/html-order-tax.php:21 -#@ woocommerce -msgid "Shipping Tax" -msgstr "" - -#: includes/admin/post-types/meta-boxes/views/html-product-download.php:3 -#: includes/admin/post-types/meta-boxes/views/html-product-variation-download.php:2 -#@ woocommerce -msgid "File Name" -msgstr "" - -#: includes/admin/post-types/meta-boxes/views/html-product-download.php:4 -#: includes/admin/post-types/meta-boxes/views/html-product-variation-download.php:3 -#@ woocommerce -msgid "http://" -msgstr "" - -#: includes/admin/post-types/meta-boxes/views/html-product-download.php:5 -#: includes/admin/post-types/meta-boxes/views/html-product-variation-download.php:4 -#@ woocommerce -msgid "Choose file" -msgstr "" - -#: includes/admin/reports/class-wc-admin-report.php:389 -#, php-format -#@ woocommerce -msgid "Sold %s worth in the last %d days" -msgstr "" - -#: includes/admin/reports/class-wc-admin-report.php:391 -#, php-format -#@ woocommerce -msgid "Sold 1 item in the last %d days" -msgid_plural "Sold %d items in the last %d days" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:69 -#, php-format -#@ woocommerce -msgid "%s discounts in total" -msgstr "" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:75 -#, php-format -#@ woocommerce -msgid "%s coupons used in total" -msgstr "" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:90 -#: includes/admin/reports/class-wc-report-customers.php:138 -#: includes/admin/reports/class-wc-report-sales-by-category.php:65 -#: includes/admin/reports/class-wc-report-sales-by-date.php:122 -#: includes/admin/reports/class-wc-report-sales-by-product.php:107 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:41 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:41 -#@ woocommerce -msgid "Year" -msgstr "" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:91 -#: includes/admin/reports/class-wc-report-customers.php:139 -#: includes/admin/reports/class-wc-report-sales-by-category.php:66 -#: includes/admin/reports/class-wc-report-sales-by-date.php:123 -#: includes/admin/reports/class-wc-report-sales-by-product.php:108 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:42 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:42 -#@ woocommerce -msgid "Last Month" -msgstr "" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:92 -#: includes/admin/reports/class-wc-report-customers.php:140 -#: includes/admin/reports/class-wc-report-sales-by-category.php:67 -#: includes/admin/reports/class-wc-report-sales-by-date.php:124 -#: includes/admin/reports/class-wc-report-sales-by-product.php:109 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:43 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:43 -#@ woocommerce -msgid "This Month" -msgstr "" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:93 -#: includes/admin/reports/class-wc-report-customers.php:141 -#: includes/admin/reports/class-wc-report-sales-by-category.php:68 -#: includes/admin/reports/class-wc-report-sales-by-date.php:125 -#: includes/admin/reports/class-wc-report-sales-by-product.php:110 -#@ woocommerce -msgid "Last 7 Days" -msgstr "" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:133 -#@ woocommerce -msgid "Filter by coupon" -msgstr "" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:137 -#@ woocommerce -msgid "Choose coupons…" -msgstr "" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:161 -#@ woocommerce -msgid "All coupons" -msgstr "" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:166 -#@ woocommerce -msgid "No used coupons found" -msgstr "" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:184 -#@ woocommerce -msgid "Most Popular" -msgstr "" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:226 -#: includes/admin/reports/class-wc-report-coupon-usage.php:273 -#@ woocommerce -msgid "No coupons found in range" -msgstr "" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:231 -#@ woocommerce -msgid "Most Discount" -msgstr "" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:407 -#@ woocommerce -msgid "Number of coupons used" -msgstr "" - -#: includes/admin/reports/class-wc-report-coupon-usage.php:415 -#@ woocommerce -msgid "Discount amount" -msgstr "" - -#: includes/admin/reports/class-wc-report-customer-list.php:32 -#@ woocommerce -msgid "No customers found." -msgstr "" - -#: includes/admin/reports/class-wc-report-customer-list.php:46 -#, php-format -#@ woocommerce -msgid "%s previous order linked" -msgid_plural "%s previous orders linked" -msgstr[0] "" -msgstr[1] "" - -#: includes/admin/reports/class-wc-report-customer-list.php:51 -#@ woocommerce -msgid "Search customers" -msgstr "" - -#: includes/admin/reports/class-wc-report-customer-list.php:187 -#@ woocommerce -msgid "View orders" -msgstr "" - -#: includes/admin/reports/class-wc-report-customer-list.php:211 -#@ woocommerce -msgid "Link previous orders" -msgstr "" - -#: includes/admin/reports/class-wc-report-customer-list.php:237 -#@ woocommerce -msgid "Name (Last, First)" -msgstr "" - -#: includes/admin/reports/class-wc-report-customer-list.php:240 -#@ woocommerce -msgid "Location" -msgstr "" - -#: includes/admin/reports/class-wc-report-customer-list.php:242 -#@ woocommerce -msgid "Spent" -msgstr "" - -#: includes/admin/reports/class-wc-report-customer-list.php:243 -#@ woocommerce -msgid "Last order" -msgstr "" - -#: includes/admin/reports/class-wc-report-customers.php:15 -#, php-format -#@ woocommerce -msgid "%s signups in this period" -msgstr "" - -#: includes/admin/reports/class-wc-report-customers.php:83 -#@ woocommerce -msgid "Customer Sales" -msgstr "" - -#: includes/admin/reports/class-wc-report-customers.php:84 -#@ woocommerce -msgid "Guest Sales" -msgstr "" - -#: includes/admin/reports/class-wc-report-customers.php:93 -#: includes/admin/reports/class-wc-report-customers.php:289 -#@ woocommerce -msgid "Customer Orders" -msgstr "" - -#: includes/admin/reports/class-wc-report-customers.php:98 -#: includes/admin/reports/class-wc-report-customers.php:299 -#@ woocommerce -msgid "Guest Orders" -msgstr "" - -#: includes/admin/reports/class-wc-report-customers.php:117 -#@ woocommerce -msgid "orders" -msgstr "" - -#: includes/admin/reports/class-wc-report-customers.php:295 -#@ woocommerce -msgid "customer orders" -msgstr "" - -#: includes/admin/reports/class-wc-report-customers.php:305 -#@ woocommerce -msgid "guest orders" -msgstr "" - -#: includes/admin/reports/class-wc-report-customers.php:309 -#@ woocommerce -msgid "Signups" -msgstr "" - -#: includes/admin/reports/class-wc-report-customers.php:316 -#@ woocommerce -msgid "new users" -msgstr "" - -#: includes/admin/reports/class-wc-report-low-in-stock.php:19 -#@ woocommerce -msgid "No low in stock products found." -msgstr "" - -#: includes/admin/reports/class-wc-report-out-of-stock.php:19 -#@ woocommerce -msgid "No out of stock products found." -msgstr "" - -#: includes/admin/reports/class-wc-report-sales-by-category.php:47 -#, php-format -#@ woocommerce -msgid "%s sales in %s" -msgstr "" - -#: includes/admin/reports/class-wc-report-sales-by-category.php:228 -#@ woocommerce -msgid "← Choose a category to view stats" -msgstr "" - -#: includes/admin/reports/class-wc-report-sales-by-date.php:74 -#, php-format -#@ woocommerce -msgid "%s average daily sales" -msgstr "" - -#: includes/admin/reports/class-wc-report-sales-by-date.php:77 -#, php-format -#@ woocommerce -msgid "%s average monthly sales" -msgstr "" - -#: includes/admin/reports/class-wc-report-sales-by-date.php:82 -#, php-format -#@ woocommerce -msgid "%s sales in this period" -msgstr "" - -#: includes/admin/reports/class-wc-report-sales-by-date.php:92 -#, php-format -#@ woocommerce -msgid "%s orders placed" -msgstr "" - -#: includes/admin/reports/class-wc-report-sales-by-date.php:97 -#, php-format -#@ woocommerce -msgid "%s items purchased" -msgstr "" - -#: includes/admin/reports/class-wc-report-sales-by-date.php:102 -#, php-format -#@ woocommerce -msgid "%s charged for shipping" -msgstr "" - -#: includes/admin/reports/class-wc-report-sales-by-date.php:107 -#, php-format -#@ woocommerce -msgid "%s worth of coupons used" -msgstr "" - -#: includes/admin/reports/class-wc-report-sales-by-date.php:294 -#: includes/admin/reports/class-wc-report-sales-by-product.php:440 -#@ woocommerce -msgid "Number of items sold" -msgstr "" - -#: includes/admin/reports/class-wc-report-sales-by-date.php:302 -#: includes/admin/reports/class-wc-report-taxes-by-code.php:113 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:109 -#@ woocommerce -msgid "Number of orders" -msgstr "" - -#: includes/admin/reports/class-wc-report-sales-by-date.php:310 -#@ woocommerce -msgid "Average sales amount" -msgstr "" - -#: includes/admin/reports/class-wc-report-sales-by-date.php:330 -#@ woocommerce -msgid "Shipping amount" -msgstr "" - -#: includes/admin/reports/class-wc-report-sales-by-product.php:87 -#, php-format -#@ woocommerce -msgid "%s sales for the selected items" -msgstr "" - -#: includes/admin/reports/class-wc-report-sales-by-product.php:92 -#, php-format -#@ woocommerce -msgid "%s purchases for the selected items" -msgstr "" - -#: includes/admin/reports/class-wc-report-sales-by-product.php:138 -#@ woocommerce -msgid "Showing reports for:" -msgstr "" - -#: includes/admin/reports/class-wc-report-sales-by-product.php:164 -#@ woocommerce -msgid "Reset" -msgstr "" - -#: includes/admin/reports/class-wc-report-sales-by-product.php:173 -#@ woocommerce -msgid "Product Search" -msgstr "" - -#: includes/admin/reports/class-wc-report-sales-by-product.php:210 -#@ woocommerce -msgid "Top Sellers" -msgstr "" - -#: includes/admin/reports/class-wc-report-sales-by-product.php:245 -#: includes/admin/reports/class-wc-report-sales-by-product.php:285 -#@ woocommerce -msgid "No products found in range" -msgstr "" - -#: includes/admin/reports/class-wc-report-sales-by-product.php:250 -#@ woocommerce -msgid "Top Earners" -msgstr "" - -#: includes/admin/reports/class-wc-report-sales-by-product.php:341 -#@ woocommerce -msgid "← Choose a product to view stats" -msgstr "" - -#: includes/admin/reports/class-wc-report-stock.php:30 -#@ woocommerce -msgid "No products found." -msgstr "" - -#: includes/admin/reports/class-wc-report-stock.php:139 -#@ woocommerce -msgid "Units in stock" -msgstr "" - -#: includes/admin/reports/class-wc-report-taxes-by-code.php:112 -#@ woocommerce -msgid "Rate" -msgstr "" - -#: includes/admin/reports/class-wc-report-taxes-by-code.php:114 -#@ woocommerce -msgid "Tax Amount" -msgstr "" - -#: includes/admin/reports/class-wc-report-taxes-by-code.php:114 -#@ woocommerce -msgid "This is the sum of the \"Tax Rows\" tax amount within your orders." -msgstr "" - -#: includes/admin/reports/class-wc-report-taxes-by-code.php:115 -#@ woocommerce -msgid "Shipping Tax Amount" -msgstr "" - -#: includes/admin/reports/class-wc-report-taxes-by-code.php:115 -#@ woocommerce -msgid "This is the sum of the \"Tax Rows\" shipping tax amount within your orders." -msgstr "" - -#: includes/admin/reports/class-wc-report-taxes-by-code.php:116 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:112 -#@ woocommerce -msgid "Total Tax" -msgstr "" - -#: includes/admin/reports/class-wc-report-taxes-by-code.php:116 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:112 -#@ woocommerce -msgid "This is the total tax for the rate (shipping tax + product tax)." -msgstr "" - -#: includes/admin/reports/class-wc-report-taxes-by-code.php:165 -#: includes/admin/reports/class-wc-report-taxes-by-date.php:156 -#@ woocommerce -msgid "No taxes found in this period" -msgstr "" - -#: includes/admin/reports/class-wc-report-taxes-by-date.php:108 -#@ woocommerce -msgid "Period" -msgstr "" - -#: includes/admin/settings/class-wc-settings-accounts.php:25 -#@ woocommerce -msgid "Accounts" -msgstr "" - -#: includes/admin/settings/class-wc-settings-accounts.php:41 -#@ woocommerce -msgid "Account Pages" -msgstr "" - -#: includes/admin/settings/class-wc-settings-accounts.php:41 -#@ woocommerce -msgid "These pages need to be set so that WooCommerce knows where to send users to access account related functionality." -msgstr "" - -#: includes/admin/settings/class-wc-settings-accounts.php:45 -#: includes/admin/settings/class-wc-settings-checkout.php:113 -#: includes/admin/settings/class-wc-settings-checkout.php:124 -#@ woocommerce -msgid "Page contents:" -msgstr "" - -#: includes/admin/settings/class-wc-settings-accounts.php:56 -#@ woocommerce -msgid "My Account Endpoints" -msgstr "" - -#: includes/admin/settings/class-wc-settings-accounts.php:56 -#@ woocommerce -msgid "Endpoints are appended to your page URLs to handle specific actions on the accounts pages. They should be unique." -msgstr "" - -#: includes/admin/settings/class-wc-settings-accounts.php:60 -#@ woocommerce -msgid "Endpoint for the My Account → View Order page" -msgstr "" - -#: includes/admin/settings/class-wc-settings-accounts.php:68 -#@ woocommerce -msgid "Edit Account" -msgstr "" - -#: includes/admin/settings/class-wc-settings-accounts.php:69 -#@ woocommerce -msgid "Endpoint for the My Account → Edit Account page" -msgstr "" - -#: includes/admin/settings/class-wc-settings-accounts.php:78 -#@ woocommerce -msgid "Endpoint for the My Account → Edit Address page" -msgstr "" - -#: includes/admin/settings/class-wc-settings-accounts.php:87 -#@ woocommerce -msgid "Endpoint for the My Account → Lost Password page" -msgstr "" - -#: includes/admin/settings/class-wc-settings-accounts.php:96 -#@ woocommerce -msgid "Endpoint for the triggering logout. You can add this to your menus via a custom link: yoursite.com/?customer-logout=true" -msgstr "" - -#: includes/admin/settings/class-wc-settings-accounts.php:105 -#@ woocommerce -msgid "Registration Options" -msgstr "" - -#: includes/admin/settings/class-wc-settings-accounts.php:108 -#@ woocommerce -msgid "Enable Registration" -msgstr "" - -#: includes/admin/settings/class-wc-settings-accounts.php:109 -#@ woocommerce -msgid "Enable registration on the \"Checkout\" page" -msgstr "" - -#: includes/admin/settings/class-wc-settings-accounts.php:118 -#@ woocommerce -msgid "Enable registration on the \"My Account\" page" -msgstr "" - -#: includes/admin/settings/class-wc-settings-accounts.php:127 -#@ woocommerce -msgid "Account Creation" -msgstr "" - -#: includes/admin/settings/class-wc-settings-accounts.php:128 -#@ woocommerce -msgid "Automatically generate username from customer email" -msgstr "" - -#: includes/admin/settings/class-wc-settings-accounts.php:137 -#@ woocommerce -msgid "Automatically generate customer password" -msgstr "" - -#: includes/admin/settings/class-wc-settings-checkout.php:41 -#@ woocommerce -msgid "Checkout Options" -msgstr "" - -#: includes/admin/settings/class-wc-settings-checkout.php:65 -#@ woocommerce -msgid "Checkout Process" -msgstr "" - -#: includes/admin/settings/class-wc-settings-checkout.php:79 -#@ woocommerce -msgid "Enable guest checkout" -msgstr "" - -#: includes/admin/settings/class-wc-settings-checkout.php:80 -#@ woocommerce -msgid "Allows customers to checkout without creating an account." -msgstr "" - -#: includes/admin/settings/class-wc-settings-checkout.php:109 -#@ woocommerce -msgid "Checkout Pages" -msgstr "" - -#: includes/admin/settings/class-wc-settings-checkout.php:109 -#@ woocommerce -msgid "These pages need to be set so that WooCommerce knows where to send users to checkout." -msgstr "" - -#: includes/admin/settings/class-wc-settings-checkout.php:134 -#@ woocommerce -msgid "Terms and Conditions" -msgstr "" - -#: includes/admin/settings/class-wc-settings-checkout.php:147 -#@ woocommerce -msgid "Checkout Endpoints" -msgstr "" - -#: includes/admin/settings/class-wc-settings-checkout.php:147 -#@ woocommerce -msgid "Endpoints are appended to your page URLs to handle specific actions during the checkout process. They should be unique." -msgstr "" - -#: includes/admin/settings/class-wc-settings-checkout.php:151 -#: includes/admin/settings/class-wc-settings-checkout.php:160 -#@ woocommerce -msgid "Endpoint for the Checkout → Pay page" -msgstr "" - -#: includes/admin/settings/class-wc-settings-checkout.php:168 -#: templates/myaccount/form-add-payment-method.php:48 -#@ woocommerce -msgid "Add Payment Method" -msgstr "" - -#: includes/admin/settings/class-wc-settings-checkout.php:169 -#@ woocommerce -msgid "Endpoint for the Checkout → Add Payment Method page" -msgstr "" - -#: includes/admin/settings/class-wc-settings-checkout.php:178 -#@ woocommerce -msgid "Installed gateways are listed below. Drag and drop gateways to control their display order on the frontend." -msgstr "" - -#: includes/admin/settings/class-wc-settings-checkout.php:219 -#@ woocommerce -msgid "Gateway Display" -msgstr "" - -#: includes/admin/settings/class-wc-settings-general.php:61 -#@ woocommerce -msgid "Selling Location(s)" -msgstr "" - -#: includes/admin/settings/class-wc-settings-general.php:62 -#@ woocommerce -msgid "This option lets you limit which countries you are willing to sell to." -msgstr "" - -#: includes/admin/settings/class-wc-settings-general.php:70 -#@ woocommerce -msgid "Sell to all countries" -msgstr "" - -#: includes/admin/settings/class-wc-settings-general.php:71 -#@ woocommerce -msgid "Sell to specific countries only" -msgstr "" - -#: includes/admin/settings/class-wc-settings-general.php:103 -#@ woocommerce -msgid "API" -msgstr "" - -#: includes/admin/settings/class-wc-settings-general.php:104 -#@ woocommerce -msgid "Enable the REST API" -msgstr "" - -#: includes/admin/settings/class-wc-settings-general.php:112 -#@ woocommerce -msgid "Currency Options" -msgstr "" - -#: includes/admin/settings/class-wc-settings-general.php:137 -#@ woocommerce -msgid "Left with space" -msgstr "" - -#: includes/admin/settings/class-wc-settings-general.php:138 -#@ woocommerce -msgid "Right with space" -msgstr "" - -#: includes/admin/settings/class-wc-settings-general.php:188 -#@ woocommerce -msgid "Include WooCommerce's lightbox. Product gallery images will open in a lightbox." -msgstr "" - -#: includes/admin/settings/class-wc-settings-general.php:217 -#@ woocommerce -msgid "Frontend Styles" -msgstr "" - -#: includes/admin/settings/class-wc-settings-products.php:40 -#@ woocommerce -msgid "Product Options" -msgstr "" - -#: includes/admin/settings/class-wc-settings-products.php:200 -#@ woocommerce -msgid "Product Listings" -msgstr "" - -#: includes/admin/settings/class-wc-settings-products.php:203 -#@ woocommerce -msgid "Product Archive / Shop Page" -msgstr "" - -#: includes/admin/settings/class-wc-settings-products.php:204 -#, php-format -#@ woocommerce -msgid "The base page can also be used in your product permalinks." -msgstr "" - -#: includes/admin/settings/class-wc-settings-products.php:352 -#@ woocommerce -msgid "Only allow reviews from \"verified owners\"" -msgstr "" - -#: includes/admin/settings/class-wc-settings-products.php:363 -#@ woocommerce -msgid "Product Image Sizes" -msgstr "" - -#: includes/admin/settings/class-wc-settings-shipping.php:97 -#@ woocommerce -msgid "Shipping Display Mode" -msgstr "" - -#: includes/admin/settings/class-wc-settings-shipping.php:103 -#@ woocommerce -msgid "Display shipping methods with \"radio\" buttons" -msgstr "" - -#: includes/admin/settings/class-wc-settings-shipping.php:104 -#@ woocommerce -msgid "Display shipping methods in a dropdown" -msgstr "" - -#: includes/admin/settings/class-wc-settings-shipping.php:132 -#@ woocommerce -msgid "Restrict shipping to Location(s)" -msgstr "" - -#: includes/admin/settings/class-wc-settings-shipping.php:133 -#, php-format -#@ woocommerce -msgid "Choose which countries you want to ship to, or choose to ship to all locations you sell to." -msgstr "" - -#: includes/admin/settings/class-wc-settings-shipping.php:140 -#@ woocommerce -msgid "Ship to all countries you sell to" -msgstr "" - -#: includes/admin/settings/class-wc-settings-shipping.php:141 -#@ woocommerce -msgid "Ship to all countries" -msgstr "" - -#: includes/admin/settings/class-wc-settings-shipping.php:142 -#@ woocommerce -msgid "Ship to specific countries only" -msgstr "" - -#: includes/admin/settings/class-wc-settings-shipping.php:204 -#@ woocommerce -msgid "ID" -msgstr "" - -#: includes/admin/settings/class-wc-settings-shipping.php:215 -#@ woocommerce -msgid "Drag and drop the above shipping methods to control their display order." -msgstr "" - -#: includes/admin/settings/class-wc-settings-tax.php:41 -#@ woocommerce -msgid "Standard Rates" -msgstr "" - -#: includes/admin/settings/class-wc-settings-tax.php:49 -#, php-format -#@ woocommerce -msgid "%s Rates" -msgstr "" - -#: includes/admin/settings/class-wc-settings-tax.php:144 -#@ woocommerce -msgid "Display prices in the shop:" -msgstr "" - -#: includes/admin/settings/class-wc-settings-tax.php:155 -#@ woocommerce -msgid "Price display suffix:" -msgstr "" - -#: includes/admin/settings/class-wc-settings-tax.php:159 -#@ woocommerce -msgid "Define text to show after your product prices. This could be, for example, \"inc. Vat\" to explain your pricing. You can also have prices substituted here using one of the following: {price_including_tax}, {price_excluding_tax}." -msgstr "" - -#: includes/admin/settings/class-wc-settings-tax.php:175 -#@ woocommerce -msgid "Display tax totals:" -msgstr "" - -#: includes/admin/settings/class-wc-settings-tax.php:180 -#@ woocommerce -msgid "As a single total" -msgstr "" - -#: includes/admin/settings/class-wc-settings-tax.php:181 -#@ woocommerce -msgid "Itemized" -msgstr "" - -#: includes/admin/views/html-admin-page-addons.php:5 -#@ woocommerce -msgid "Browse all extensions" -msgstr "" - -#: includes/admin/views/html-admin-page-addons.php:6 -#@ woocommerce -msgid "Browse themes" -msgstr "" - -#: includes/admin/views/html-admin-page-addons.php:11 -#@ woocommerce -msgid "Popular" -msgstr "" - -#: includes/admin/views/html-admin-page-addons.php:12 -#@ woocommerce -msgid "Gateways" -msgstr "" - -#: includes/admin/views/html-admin-page-addons.php:14 -#@ woocommerce -msgid "Import/export" -msgstr "" - -#: includes/admin/views/html-admin-page-addons.php:16 -#@ woocommerce -msgid "Marketing" -msgstr "" - -#: includes/admin/views/html-admin-page-status-report.php:3 -#@ woocommerce -msgid "Get System Report" -msgstr "" - -#: includes/admin/views/html-admin-page-status-report.php:37 -#@ woocommerce -msgid "WP Multisite Enabled" -msgstr "" - -#: includes/admin/views/html-admin-page-status-report.php:69 -#@ woocommerce -msgid "WP Language" -msgstr "" - -#: includes/admin/views/html-admin-page-status-report.php:86 -#@ woocommerce -msgid "PHP Max Input Vars" -msgstr "" - -#: includes/admin/views/html-admin-page-status-report.php:90 -#@ woocommerce -msgid "SUHOSIN Installed" -msgstr "" - -#: includes/admin/views/html-admin-page-status-report.php:104 -#@ woocommerce -msgid "Default Timezone" -msgstr "" - -#: includes/admin/views/html-admin-page-status-report.php:108 -#, php-format -#@ woocommerce -msgid "Default timezone is %s - it should be UTC" -msgstr "" - -#: includes/admin/views/html-admin-page-status-report.php:110 -#, php-format -#@ woocommerce -msgid "Default timezone is %s" -msgstr "" - -#: includes/admin/views/html-admin-page-status-report.php:184 -#@ woocommerce -msgid "Locale" -msgstr "" - -#: includes/admin/views/html-admin-page-status-report.php:226 -#@ woocommerce -msgid "Visit plugin homepage" -msgstr "" - -#: includes/admin/views/html-admin-page-status-report.php:250 -#: includes/admin/views/html-admin-page-status-report.php:432 -#@ woocommerce -msgid "is available" -msgstr "" - -#: includes/admin/views/html-admin-page-status-report.php:384 -#@ woocommerce -msgid "Theme" -msgstr "" - -#: includes/admin/views/html-admin-page-status-report.php:421 -#@ woocommerce -msgid "Theme Name" -msgstr "" - -#: includes/admin/views/html-admin-page-status-report.php:427 -#@ woocommerce -msgid "Theme Version" -msgstr "" - -#: includes/admin/views/html-admin-page-status-report.php:436 -#@ woocommerce -msgid "Author URL" -msgstr "" - -#: includes/admin/views/html-admin-page-status-report.php:483 -#@ woocommerce -msgid "No overrides present in theme." -msgstr "" - -#: includes/admin/views/html-admin-page-status-tools.php:23 -#@ woocommerce -msgid "Template Debug Mode" -msgstr "" - -#: includes/admin/views/html-admin-page-status-tools.php:29 -#@ woocommerce -msgid "This tool will disable template overrides for logged-in administrators for debugging purposes." -msgstr "" - -#: includes/admin/views/html-admin-page-status-tools.php:34 -#@ woocommerce -msgid "Remove post types on uninstall" -msgstr "" - -#: includes/admin/views/html-admin-page-status-tools.php:40 -#@ woocommerce -msgid "This tool will delete all product and order post data when uninstalling via Plugins > Delete." -msgstr "" - -#: includes/admin/views/html-admin-page-status-tools.php:47 -#@ default -msgid "Save Changes" -msgstr "" - -#: includes/admin/views/html-bulk-edit-product.php:247 -#: includes/admin/views/html-quick-edit-product.php:167 -#@ woocommerce -msgid "Backorders?" -msgstr "" - -#: includes/admin/views/html-notice-update.php:5 -#@ woocommerce -msgid "WooCommerce Data Update Required – We just need to update your install to the latest version" -msgstr "" - -#: includes/admin/views/html-report-by-date.php:16 -#@ woocommerce -msgid "Custom:" -msgstr "" - -#: includes/api/class-wc-api-authentication.php:69 -#@ woocommerce -msgid "Consumer Key is missing" -msgstr "" - -#: includes/api/class-wc-api-authentication.php:72 -#@ woocommerce -msgid "Consumer Secret is missing" -msgstr "" - -#: includes/api/class-wc-api-authentication.php:80 -#@ woocommerce -msgid "Consumer Secret is invalid" -msgstr "" - -#: includes/api/class-wc-api-authentication.php:112 -#, php-format -#@ woocommerce -msgid "%s parameter is missing" -msgstr "" - -#: includes/api/class-wc-api-authentication.php:151 -#@ woocommerce -msgid "Consumer Key is invalid" -msgstr "" - -#: includes/api/class-wc-api-authentication.php:192 -#@ woocommerce -msgid "Invalid Signature - failed to sort parameters" -msgstr "" - -#: includes/api/class-wc-api-authentication.php:205 -#@ woocommerce -msgid "Invalid Signature - signature method is invalid" -msgstr "" - -#: includes/api/class-wc-api-authentication.php:212 -#@ woocommerce -msgid "Invalid Signature - provided signature does not match" -msgstr "" - -#: includes/api/class-wc-api-authentication.php:247 -#@ woocommerce -msgid "Invalid timestamp" -msgstr "" - -#: includes/api/class-wc-api-authentication.php:255 -#@ woocommerce -msgid "Invalid nonce - nonce has already been used" -msgstr "" - -#: includes/api/class-wc-api-authentication.php:284 -#@ woocommerce -msgid "The API key provided does not have read permissions" -msgstr "" - -#: includes/api/class-wc-api-authentication.php:293 -#@ woocommerce -msgid "The API key provided does not have write permissions" -msgstr "" - -#: includes/api/class-wc-api-coupons.php:107 -#@ woocommerce -msgid "Invalid coupon ID" -msgstr "" - -#: includes/api/class-wc-api-coupons.php:152 -#@ woocommerce -msgid "You do not have permission to read the coupons count" -msgstr "" - -#: includes/api/class-wc-api-coupons.php:171 -#@ woocommerce -msgid "Invalid coupon code" -msgstr "" - -#: includes/api/class-wc-api-customers.php:192 -#@ woocommerce -msgid "You do not have permission to read the customers count" -msgstr "" - -#: includes/api/class-wc-api-customers.php:208 -#@ woocommerce -msgid "You do not have permission to create this customer" -msgstr "" - -#: includes/api/class-wc-api-customers.php:425 -#@ woocommerce -msgid "Invalid customer ID" -msgstr "" - -#: includes/api/class-wc-api-customers.php:431 -#@ woocommerce -msgid "Invalid customer" -msgstr "" - -#: includes/api/class-wc-api-customers.php:438 -#@ woocommerce -msgid "You do not have permission to read this customer" -msgstr "" - -#: includes/api/class-wc-api-customers.php:443 -#@ woocommerce -msgid "You do not have permission to edit this customer" -msgstr "" - -#: includes/api/class-wc-api-customers.php:448 -#@ woocommerce -msgid "You do not have permission to delete this customer" -msgstr "" - -#: includes/api/class-wc-api-json-handler.php:56 -#@ woocommerce -msgid "JSONP support is disabled on this site" -msgstr "" - -#: includes/api/class-wc-api-json-handler.php:64 -#@ woocommerce -msgid "The JSONP callback function is invalid" -msgstr "" - -#: includes/api/class-wc-api-orders.php:253 -#@ woocommerce -msgid "You do not have permission to read the orders count" -msgstr "" - -#: includes/api/class-wc-api-products.php:140 -#@ woocommerce -msgid "You do not have permission to read the products count" -msgstr "" - -#: includes/api/class-wc-api-products.php:458 -#: includes/api/class-wc-api-products.php:459 -#@ woocommerce -msgid "Placeholder" -msgstr "" - -#: includes/api/class-wc-api-reports.php:396 -#@ woocommerce -msgid "You do not have permission to read this report" -msgstr "" - -#: includes/api/class-wc-api-resource.php:71 -#, php-format -#@ woocommerce -msgid "Invalid %s ID" -msgstr "" - -#: includes/api/class-wc-api-resource.php:83 -#, php-format -#@ woocommerce -msgid "Invalid %s" -msgstr "" - -#: includes/api/class-wc-api-resource.php:90 -#, php-format -#@ woocommerce -msgid "You do not have permission to read this %s" -msgstr "" - -#: includes/api/class-wc-api-resource.php:95 -#, php-format -#@ woocommerce -msgid "You do not have permission to edit this %s" -msgstr "" - -#: includes/api/class-wc-api-resource.php:100 -#, php-format -#@ woocommerce -msgid "You do not have permission to delete this %s" -msgstr "" - -#: includes/api/class-wc-api-resource.php:302 -#@ woocommerce -msgid "Permanently deleted customer" -msgstr "" - -#: includes/api/class-wc-api-resource.php:304 -#@ woocommerce -msgid "The customer cannot be deleted" -msgstr "" - -#: includes/api/class-wc-api-resource.php:313 -#, php-format -#@ woocommerce -msgid "This %s cannot be deleted" -msgstr "" - -#: includes/api/class-wc-api-resource.php:316 -#, php-format -#@ woocommerce -msgid "Permanently deleted %s" -msgstr "" - -#: includes/api/class-wc-api-resource.php:322 -#, php-format -#@ woocommerce -msgid "Deleted %s" -msgstr "" - -#: includes/api/class-wc-api-server.php:165 -#@ woocommerce -msgid "Invalid authentication method" -msgstr "" - -#: includes/api/class-wc-api-server.php:316 -#@ default -msgid "Unsupported request method" -msgstr "" - -#: includes/api/class-wc-api-server.php:333 -#@ default -msgid "The handler for the route is invalid" -msgstr "" - -#: includes/api/class-wc-api-server.php:369 -#@ default -msgid "No route was found matching the URL and request method" -msgstr "" - -#: includes/api/class-wc-api-server.php:404 -#, php-format -#@ default -msgid "Missing parameter %s" -msgstr "" - -#: includes/class-wc-ajax.php:158 -#@ woocommerce -msgid "Return to homepage" -msgstr "" - -#: includes/class-wc-cache-helper.php:99 -#, php-format -#@ woocommerce -msgid "In order for database caching to work with WooCommerce you must add _wc_session_ to the \"Ignored Query Strings\" option in W3 Total Cache settings here." -msgstr "" - -#: includes/class-wc-cart.php:163 -#, php-format -#@ woocommerce -msgid "%s has been removed from your cart because it can no longer be purchased. Please contact us if you need assistance." -msgstr "" - -#: includes/class-wc-cart.php:358 -#@ woocommerce -msgid "An item which is no longer available was removed from your cart." -msgstr "" - -#: includes/class-wc-cart.php:455 -#, php-format -#@ woocommerce -msgid "Sorry, we do not have enough \"%s\" in stock to fulfill your order right now. Please try again in %d minutes or edit your cart and try again. We apologise for any inconvenience caused." -msgstr "" - -#: includes/class-wc-cart.php:798 -#: includes/class-wc-cart.php:812 -#: includes/class-wc-cart.php:820 -#: includes/class-wc-frontend-scripts.php:139 -#: templates/cart/mini-cart.php:64 -#@ woocommerce -msgid "View Cart" -msgstr "" - -#: includes/class-wc-cart.php:798 -#, php-format -#@ woocommerce -msgid "You cannot add another "%s" to your cart." -msgstr "" - -#: includes/class-wc-cart.php:812 -#: includes/class-wc-cart.php:820 -#, php-format -#@ woocommerce -msgid "%s You cannot add that amount to the cart — we have %s in stock and you already have %s in your cart." -msgstr "" - -#: includes/class-wc-checkout.php:64 -#: includes/class-wc-checkout.php:73 -#: includes/class-wc-emails.php:67 -#: includes/class-wc-emails.php:76 -#: includes/class-wc-payment-gateways.php:46 -#: includes/class-wc-payment-gateways.php:55 -#: includes/class-wc-shipping.php:64 -#: includes/class-wc-shipping.php:73 -#: woocommerce.php:100 -#: woocommerce.php:109 -#@ default -msgid "Cheatin’ huh?" -msgstr "" - -#: includes/class-wc-checkout.php:408 -#, php-format -#@ woocommerce -msgid "Sorry, your session has expired. Return to homepage" -msgstr "" - -#: includes/class-wc-checkout.php:504 -#: includes/class-wc-form-handler.php:101 -#@ woocommerce -msgid "is not a valid phone number." -msgstr "" - -#: includes/class-wc-checkout.php:575 -#, php-format -#@ woocommerce -msgid "Unfortunately we do not ship to %s. Please enter an alternative shipping address." -msgstr "" - -#: includes/class-wc-countries.php:267 -#@ woocommerce -msgid "United Kingdom (UK)" -msgstr "" - -#: includes/class-wc-countries.php:268 -#@ woocommerce -msgid "United States (US)" -msgstr "" - -#: includes/class-wc-countries.php:277 -#@ woocommerce -msgid "Western Samoa" -msgstr "" - -#: includes/class-wc-coupon.php:571 -#@ woocommerce -msgid "Coupon code removed successfully." -msgstr "" - -#: includes/class-wc-download-handler.php:73 -#@ woocommerce -msgid "Log in to Download Files" -msgstr "" - -#: includes/class-wc-emails.php:411 -#, php-format -#@ woocommerce -msgid "%s units of %s have been backordered in order %s." -msgstr "" - -#: includes/class-wc-form-handler.php:166 -#@ woocommerce -msgid "Please enter your name." -msgstr "" - -#: includes/class-wc-form-handler.php:169 -#: includes/wc-customer-functions.php:46 -#@ woocommerce -msgid "Please provide a valid email address." -msgstr "" - -#: includes/class-wc-form-handler.php:172 -#@ woocommerce -msgid "This email address is already registered." -msgstr "" - -#: includes/class-wc-form-handler.php:175 -#@ woocommerce -msgid "Please re-enter your password." -msgstr "" - -#: includes/class-wc-form-handler.php:191 -#@ woocommerce -msgid "Account details changed successfully." -msgstr "" - -#: includes/class-wc-form-handler.php:311 -#@ woocommerce -msgid "Payment method added." -msgstr "" - -#: includes/class-wc-form-handler.php:670 -#: includes/class-wc-form-handler.php:673 -#: includes/class-wc-form-handler.php:676 -#: includes/class-wc-form-handler.php:684 -#@ woocommerce -msgid "Error" -msgstr "" - -#: includes/class-wc-form-handler.php:684 -#@ woocommerce -msgid "A user could not be found with this email address." -msgstr "" - -#: includes/class-wc-form-handler.php:707 -#, php-format -#@ woocommerce -msgid "You are now logged in as %s" -msgstr "" - -#: includes/class-wc-frontend-scripts.php:147 -#@ woocommerce -msgid "Sorry, this product is unavailable. Please choose a different combination." -msgstr "" - -#: includes/class-wc-install.php:663 -#@ woocommerce -msgid "What's new:" -msgstr "" - -#: includes/class-wc-post-types.php:191 -#, php-format -#@ woocommerce -msgid "Search %s" -msgstr "" - -#: includes/class-wc-post-types.php:192 -#, php-format -#@ woocommerce -msgid "All %s" -msgstr "" - -#: includes/class-wc-post-types.php:193 -#, php-format -#@ woocommerce -msgid "Parent %s" -msgstr "" - -#: includes/class-wc-post-types.php:194 -#, php-format -#@ woocommerce -msgid "Parent %s:" -msgstr "" - -#: includes/class-wc-post-types.php:195 -#, php-format -#@ woocommerce -msgid "Edit %s" -msgstr "" - -#: includes/class-wc-post-types.php:196 -#, php-format -#@ woocommerce -msgid "Update %s" -msgstr "" - -#: includes/class-wc-post-types.php:197 -#, php-format -#@ woocommerce -msgid "Add New %s" -msgstr "" - -#: includes/class-wc-post-types.php:198 -#, php-format -#@ woocommerce -msgid "New %s" -msgstr "" - -#: includes/class-wc-product-grouped.php:42 -#@ woocommerce -msgid "View products" -msgstr "" - -#: includes/class-wc-product-variable.php:473 -#@ woocommerce -msgid "This variable product has no active variations and will not be published." -msgstr "" - -#: includes/class-wc-shortcodes.php:957 -#@ woocommerce -msgid "Use $args[\"posts_per_page\"] instead. Deprecated argument will be removed in WC 2.2." -msgstr "" - -#: includes/emails/class-wc-email-customer-completed-order.php:30 -#@ woocommerce -msgid "Your {site_title} order from {order_date} is complete" -msgstr "" - -#: includes/emails/class-wc-email-customer-completed-order.php:40 -#@ woocommerce -msgid "Your {site_title} order from {order_date} is complete - download your files" -msgstr "" - -#: includes/emails/class-wc-email-customer-invoice.php:38 -#@ woocommerce -msgid "Your {site_title} order from {order_date}" -msgstr "" - -#: includes/emails/class-wc-email-customer-new-account.php:39 -#@ woocommerce -msgid "Your account on {site_title}" -msgstr "" - -#: includes/emails/class-wc-email-customer-new-account.php:40 -#@ woocommerce -msgid "Welcome to {site_title}" -msgstr "" - -#: includes/emails/class-wc-email-customer-note.php:37 -#@ woocommerce -msgid "Note added to your {site_title} order from {order_date}" -msgstr "" - -#: includes/emails/class-wc-email-customer-processing-order.php:30 -#@ woocommerce -msgid "Your {site_title} order receipt from {order_date}" -msgstr "" - -#: includes/emails/class-wc-email-customer-reset-password.php:44 -#@ woocommerce -msgid "Password Reset for {site_title}" -msgstr "" - -#: includes/emails/class-wc-email-new-order.php:27 -#@ woocommerce -msgid "New order emails are sent when an order is received." -msgstr "" - -#: includes/emails/class-wc-email-new-order.php:30 -#@ woocommerce -msgid "[{site_title}] New customer order ({order_number}) - {order_date}" -msgstr "" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:25 -#@ woocommerce -msgid "BACS" -msgstr "" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:26 -#@ woocommerce -msgid "Allows payments by BACS, more commonly known as direct bank/wire transfer." -msgstr "" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:81 -#: includes/gateways/cheque/class-wc-gateway-cheque.php:67 -#: includes/gateways/cod/class-wc-gateway-cod.php:66 -#@ woocommerce -msgid "Payment method description that the customer will see on your checkout." -msgstr "" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:82 -#@ woocommerce -msgid "Make your payment directly into our bank account. Please use your Order ID as the payment reference. Your order won't be shipped until the funds have cleared in our account." -msgstr "" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:88 -#: includes/gateways/cheque/class-wc-gateway-cheque.php:74 -#@ woocommerce -msgid "Instructions that will be added to the thank you page and emails." -msgstr "" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:116 -#@ woocommerce -msgid "BIC / Swift" -msgstr "" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:121 -#@ woocommerce -msgid "+ Add Account" -msgstr "" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:121 -#@ woocommerce -msgid "Remove selected account(s)" -msgstr "" - -#: includes/gateways/bacs/class-wc-gateway-bacs.php:240 -#@ woocommerce -msgid "Our Bank Details" -msgstr "" - -#: includes/gateways/cod/class-wc-gateway-cod.php:94 -#@ woocommerce -msgid "Select shipping methods" -msgstr "" - -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:151 -#@ woocommerce -msgid "Pay securely with your credit card." -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:147 -#@ woocommerce -msgid "Receiver Email" -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:149 -#@ woocommerce -msgid "If this differs from the email entered above, input your main receiver email for your PayPal account. This is used to validate IPN requests." -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:155 -#@ woocommerce -msgid "PayPal Identity Token" -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:157 -#@ woocommerce -msgid "Optionally enable \"Payment Data Transfer\" (Profile > Website Payment Preferences) and then copy your identity token here. This will allow payments to be verified without the need for PayPal IPN." -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:170 -#@ woocommerce -msgid "Payment Action" -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:172 -#@ woocommerce -msgid "Choose whether you wish to capture funds immediately or authorize payment only." -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:176 -#@ woocommerce -msgid "Capture" -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:177 -#@ woocommerce -msgid "Authorize" -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:232 -#, php-format -#@ woocommerce -msgid "Log PayPal events, such as IPN requests, inside woocommerce/logs/paypal-%s.txt" -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:523 -#@ woocommerce -msgid "Thank you - your order is now pending payment. You should be automatically redirected to PayPal to make payment." -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:673 -#, php-format -#@ woocommerce -msgid "Validation error: PayPal IPN response from a different email address (%s)." -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:694 -#, php-format -#@ woocommerce -msgid "Payment pending: %s" -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:736 -#@ woocommerce -msgid "Order reversed" -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:737 -#, php-format -#@ woocommerce -msgid "Order %s has been marked on-hold due to a reversal - PayPal reason code: %s" -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:740 -#, php-format -#@ woocommerce -msgid "Payment for order %s reversed" -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:748 -#@ woocommerce -msgid "Reversal Cancelled" -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:749 -#, php-format -#@ woocommerce -msgid "Order %s has had a reversal cancelled. Please check the status of payment and update the order status accordingly." -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:752 -#, php-format -#@ woocommerce -msgid "Reversal cancelled for order %s" -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:819 -#, php-format -#@ woocommerce -msgid "Validation error: PayPal amounts do not match (amt %s)." -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:826 -#@ woocommerce -msgid "PDT payment completed" -msgstr "" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:105 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:94 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:79 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:154 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:113 -#@ woocommerce -msgid "Select some countries" -msgstr "" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:126 -#@ woocommerce -msgid "Additional Rates" -msgstr "" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:128 -#@ woocommerce -msgid "Optional extra shipping options with additional costs (one per line): Option Name | Additional Cost [+- Percents] | Per Cost Type (order, class, or item) Example: Priority Mail | 6.95 [+ 0.2%] | order." -msgstr "" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:131 -#@ woocommerce -msgid "Option Name | Additional Cost [+- Percents%] | Per Cost Type (order, class, or item)" -msgstr "" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:134 -#@ woocommerce -msgid "Additional Costs" -msgstr "" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:136 -#@ woocommerce -msgid "Additional costs can be added below - these will all be added to the per-order cost above." -msgstr "" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:139 -#@ woocommerce -msgid "Costs Added..." -msgstr "" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:152 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:118 -#@ woocommerce -msgid "Minimum Handling Fee" -msgstr "" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:516 -#@ woocommerce -msgid "Costs" -msgstr "" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:529 -#@ woocommerce -msgid "+ Add Cost" -msgstr "" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:529 -#@ woocommerce -msgid "Delete selected costs" -msgstr "" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:535 -#@ woocommerce -msgid "Any class" -msgstr "" - -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:92 -#@ woocommerce -msgid "Cost Added..." -msgstr "" - -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:90 -#@ woocommerce -msgid "What zip/post codes are available for local pickup? Separate codes with a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -msgstr "" - -#: includes/shortcodes/class-wc-shortcode-checkout.php:108 -#: includes/shortcodes/class-wc-shortcode-checkout.php:159 -#, php-format -#@ woocommerce -msgid "This order’s status is “%s”—it cannot be paid for. Please contact us if you need assistance." -msgstr "" - -#: includes/shortcodes/class-wc-shortcode-checkout.php:112 -#: includes/shortcodes/class-wc-shortcode-checkout.php:163 -#@ woocommerce -msgid "Sorry, this order is invalid and cannot be paid for." -msgstr "" - -#: includes/shortcodes/class-wc-shortcode-my-account.php:112 -#: templates/myaccount/view-order.php:12 -#, php-format -#@ woocommerce -msgid "Order %s was placed on %s and is currently %s." -msgstr "" - -#: includes/shortcodes/class-wc-shortcode-my-account.php:122 -#: templates/myaccount/view-order.php:23 -#: templates/order/tracking.php:37 -#@ woocommerce -msgid "l jS \\o\\f F Y, h:ia" -msgstr "" - -#: includes/shortcodes/class-wc-shortcode-my-account.php:364 -#@ woocommerce -msgid "Add a new payment method." -msgstr "" - -#: includes/wc-cart-functions.php:25 -#@ woocommerce -msgid "This product is protected and cannot be purchased." -msgstr "" - -#: includes/wc-cart-functions.php:193 -#@ woocommerce -msgid "Free shipping coupon" -msgstr "" - -#: includes/wc-core-functions.php:150 -#@ woocommerce -msgid "Bulgarian Lev" -msgstr "" - -#: includes/wc-core-functions.php:158 -#@ woocommerce -msgid "Icelandic krona" -msgstr "" - -#: includes/wc-core-functions.php:160 -#@ woocommerce -msgid "Indian Rupee" -msgstr "" - -#: includes/wc-core-functions.php:163 -#@ woocommerce -msgid "South Korean Won" -msgstr "" - -#: includes/wc-core-functions.php:172 -#@ woocommerce -msgid "Russian Ruble" -msgstr "" - -#: includes/wc-core-functions.php:181 -#@ woocommerce -msgid "Vietnamese Dong" -msgstr "" - -#: includes/wc-customer-functions.php:59 -#@ woocommerce -msgid "Please enter a valid account username." -msgstr "" - -#: includes/wc-template-functions.php:1059 -#@ woocommerce -msgid "Use $args argument as an array instead. Deprecated argument will be removed in WC 2.2." -msgstr "" - -#: includes/widgets/class-wc-widget-layered-nav-filters.php:27 -#@ woocommerce -msgid "Active Filters" -msgstr "" - -#: includes/widgets/class-wc-widget-layered-nav.php:69 -#@ woocommerce -msgid "Filter by" -msgstr "" - -#: includes/widgets/class-wc-widget-layered-nav.php:90 -#@ woocommerce -msgid "Query type" -msgstr "" - -#: includes/widgets/class-wc-widget-products.php:21 -#@ woocommerce -msgid "Display a list of your products on your site." -msgstr "" - -#: includes/widgets/class-wc-widget-products.php:23 -#@ woocommerce -msgid "WooCommerce Products" -msgstr "" - -#: includes/widgets/class-wc-widget-products.php:36 -#: includes/widgets/class-wc-widget-recently-viewed.php:36 -#: includes/widgets/class-wc-widget-top-rated-products.php:38 -#@ woocommerce -msgid "Number of products to show" -msgstr "" - -#: includes/widgets/class-wc-widget-products.php:43 -#@ woocommerce -msgid "All Products" -msgstr "" - -#: includes/widgets/class-wc-widget-products.php:45 -#@ woocommerce -msgid "On-sale Products" -msgstr "" - -#: includes/widgets/class-wc-widget-products.php:55 -#@ woocommerce -msgid "Random" -msgstr "" - -#: includes/widgets/class-wc-widget-products.php:62 -#@ woocommerce -msgctxt "Sorting order" -msgid "Order" -msgstr "" - -#: includes/widgets/class-wc-widget-products.php:64 -#@ woocommerce -msgid "ASC" -msgstr "" - -#: includes/widgets/class-wc-widget-products.php:65 -#@ woocommerce -msgid "DESC" -msgstr "" - -#: includes/widgets/class-wc-widget-products.php:76 -#@ woocommerce -msgid "Show hidden products" -msgstr "" - -#: includes/widgets/class-wc-widget-recent-reviews.php:36 -#@ woocommerce -msgid "Number of reviews to show" -msgstr "" - -#: includes/widgets/class-wc-widget-recently-viewed.php:23 -#@ woocommerce -msgid "WooCommerce Recently Viewed" -msgstr "" - -#: includes/widgets/class-wc-widget-recently-viewed.php:27 -#@ woocommerce -msgid "Recently Viewed Products" -msgstr "" - -#: includes/widgets/class-wc-widget-top-rated-products.php:23 -#@ woocommerce -msgid "Display a list of your top rated products on your site." -msgstr "" - -#: templates/cart/cart-empty.php:20 -#@ woocommerce -msgid "Return To Shop" -msgstr "" - -#: templates/cart/cart-shipping.php:16 -#, php-format -#@ woocommerce -msgid "Shipping #%d" -msgstr "" - -#: templates/cart/cart-shipping.php:18 -#@ woocommerce -msgid "Shipping and Handling" -msgstr "" - -#: templates/cart/cart-shipping.php:55 -#@ woocommerce -msgid "No shipping methods were found; please recalculate your shipping or continue to checkout and enter your full address to see if there is shipping available to your location." -msgstr "" - -#: templates/cart/cart-shipping.php:69 -#: templates/cart/cart-shipping.php:77 -#, php-format -#@ woocommerce -msgid "Sorry, shipping is unavailable %s." -msgstr "" - -#: templates/cart/cart.php:126 -#@ woocommerce -msgid "Proceed to Checkout" -msgstr "" - -#: templates/checkout/cart-errors.php:20 -#@ woocommerce -msgid "Return To Cart" -msgstr "" - -#: templates/checkout/form-pay.php:54 -#@ woocommerce -msgid "Payment" -msgstr "" - -#: templates/checkout/form-shipping.php:31 -#@ woocommerce -msgid "Ship to a different address?" -msgstr "" - -#: templates/emails/customer-new-account.php:18 -#, php-format -#@ woocommerce -msgid "Your password has been automatically generated: %s" -msgstr "" - -#: templates/emails/customer-new-account.php:22 -#: templates/emails/plain/customer-new-account.php:18 -#, php-format -#@ woocommerce -msgid "You can access your account area to view your orders and change your password here: %s." -msgstr "" - -#: templates/emails/plain/admin-new-order.php:20 -#, php-format -#@ woocommerce -msgid "Order link: %s" -msgstr "" - -#: templates/emails/plain/customer-new-account.php:16 -#, php-format -#@ woocommerce -msgid "Your password is %s." -msgstr "" - -#: templates/loop/no-products-found.php:14 -#@ woocommerce -msgid "No products were found matching your selection." -msgstr "" - -#: templates/myaccount/form-add-payment-method.php:40 -#@ woocommerce -msgid "Sorry, it seems that there are no payment methods which support adding a new payment method. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "" - -#: templates/myaccount/form-edit-account.php:28 -#: templates/myaccount/form-login.php:79 -#@ woocommerce -msgid "Email address" -msgstr "" - -#: templates/myaccount/form-edit-account.php:32 -#@ woocommerce -msgid "Password (leave blank to leave unchanged)" -msgstr "" - -#: templates/myaccount/form-edit-account.php:36 -#@ woocommerce -msgid "Confirm new password" -msgstr "" - -#: templates/myaccount/form-login.php:32 -#@ woocommerce -msgid "Username or email address" -msgstr "" - -#: templates/myaccount/form-login.php:46 -#: templates/shop/form-login.php:38 -#@ woocommerce -msgid "Remember me" -msgstr "" - -#: templates/myaccount/form-login.php:50 -#: templates/shop/form-login.php:42 -#@ woocommerce -msgid "Lost your password?" -msgstr "" - -#: templates/myaccount/form-login.php:73 -#@ default -msgid "username" -msgstr "" - -#: templates/myaccount/form-login.php:80 -#@ default -msgid "email" -msgstr "" - -#: templates/myaccount/form-login.php:85 -#@ default -msgid "password" -msgstr "" - -#: templates/myaccount/form-login.php:89 -#@ woocommerce -msgid "Anti-spam" -msgstr "" - -#: templates/myaccount/my-account.php:19 -#, php-format -#@ woocommerce -msgid "Hello %s (not %s? Sign out)." -msgstr "" - -#: templates/myaccount/my-account.php:25 -#, php-format -#@ woocommerce -msgid "From your account dashboard you can view your recent orders, manage your shipping and billing addresses and edit your password and account details." -msgstr "" - -#: templates/order/order-details.php:66 -#, php-format -#@ woocommerce -msgid "Download file%s" -msgstr "" - -#: templates/single-product/add-to-cart/variable.php:103 -#@ woocommerce -msgid "This product is currently out of stock and unavailable." -msgstr "" - -#: templates/single-product/rating.php:28 -#, php-format -#@ woocommerce -msgid "%s customer review" -msgid_plural "%s customer reviews" -msgstr[0] "" -msgstr[1] "" - -#: templates/single-product-reviews.php:34 -#@ woocommerce -msgid "Previous" -msgstr "" - -#: templates/single-product-reviews.php:35 -#@ woocommerce -msgid "Next" -msgstr "" - -#: templates/single-product-reviews.php:41 -#@ woocommerce -msgid "There are no reviews yet." -msgstr "" - -#: templates/single-product-reviews.php:55 -#, php-format -#@ woocommerce -msgid "Leave a Reply to %s" -msgstr "" - -#: templates/single-product-reviews.php:64 -#@ woocommerce -msgid "Submit" -msgstr "" - -#: templates/single-product-reviews.php:70 -#@ woocommerce -msgid "Your Rating" -msgstr "" - -#: templates/single-product-reviews.php:89 -#@ woocommerce -msgid "Only logged in customers who have purchased this product may leave a review." -msgstr "" - -#. translators: plugin header field 'Version' -#: woocommerce.php:0 -#@ woocommerce -msgid "2.1-beta-1" -msgstr "" - -#: woocommerce.php:179 -#@ woocommerce -msgid "Premium Support" -msgstr "" - diff --git a/i18n/languages/woocommerce-nl_NL.mo b/i18n/languages/woocommerce-nl_NL.mo deleted file mode 100644 index a98f6c0fa30..00000000000 Binary files a/i18n/languages/woocommerce-nl_NL.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-nl_NL.po b/i18n/languages/woocommerce-nl_NL.po deleted file mode 100644 index 9ea3c57300a..00000000000 --- a/i18n/languages/woocommerce-nl_NL.po +++ /dev/null @@ -1,14541 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce v2.0.0\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-07-13 16:24+0100\n" -"PO-Revision-Date: 2013-07-13 16:24+0100\n" -"Last-Translator: Ramon van Belzen \n" -"Language-Team: Ramon van Belzen , Geert De " -"Deckere\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Poedit 1.5.7\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" -"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" -"X-Poedit-Basepath: ../../\n" -"X-Textdomain-Support: yes\n" -"X-Poedit-SearchPath-0: .\n" - -# @ woocommerce -#: woocommerce-ajax.php:119 -msgid "Sorry, your session has expired." -msgstr "Sorry, de sessie is verlopen." - -# @ woocommerce -#: woocommerce-ajax.php:119 -msgid "Return to homepage →" -msgstr "Terug naar de homepage →" - -# @ woocommerce -#: woocommerce-ajax.php:253 woocommerce-ajax.php:287 woocommerce-ajax.php:310 -msgid "You do not have sufficient permissions to access this page." -msgstr "U heeft niet voldoende rechten om deze pagina te bekijken." - -# @ woocommerce -#: woocommerce-ajax.php:255 woocommerce-ajax.php:288 woocommerce-ajax.php:311 -msgid "You have taken too long. Please go back and retry." -msgstr "U heeft te lang gewacht. Keer terug en probeer het nogmaals." - -# @ woocommerce -#: woocommerce-ajax.php:547 -#: admin/post-types/writepanels/variation-admin-html.php:119 -#: admin/post-types/writepanels/variation-admin-html.php:132 -msgid "Same as parent" -msgstr "Zelfde als ouder" - -# @ woocommerce -#: woocommerce-ajax.php:548 admin/woocommerce-admin-settings.php:228 -#: admin/post-types/writepanels/order-fee-html.php:25 -#: admin/post-types/writepanels/order-item-html.php:96 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:53 -#: admin/post-types/writepanels/writepanel-product_data.php:213 -#: admin/settings/settings-init.php:913 -#: admin/settings/settings-tax-rates.php:29 -msgid "Standard" -msgstr "Standaard" - -# @ woocommerce -#: woocommerce-ajax.php:1088 woocommerce-ajax.php:1089 -#: includes/class-wc-order.php:1504 -#, php-format -msgid "Item #%s stock reduced from %s to %s." -msgstr "Vooraad voor product #%s verlaagd van %s naar %s." - -# @ woocommerce -#: woocommerce-ajax.php:1097 -msgid "" -"No products had their stock reduced - they may not have stock management " -"enabled." -msgstr "" - -# @ woocommerce -#: woocommerce-ajax.php:1141 woocommerce-ajax.php:1142 -#, php-format -msgid "Item #%s stock increased from %s to %s." -msgstr "Vooraad voor product #%s verhoogt van %s naar %s." - -# @ woocommerce -#: woocommerce-ajax.php:1149 -msgid "" -"No products had their stock increased - they may not have stock management " -"enabled." -msgstr "" - -# @ woocommerce -#: woocommerce-ajax.php:1170 admin/woocommerce-admin-attributes.php:240 -#: admin/woocommerce-admin-attributes.php:276 -#: admin/woocommerce-admin-attributes.php:314 -#: admin/woocommerce-admin-attributes.php:337 -#: admin/woocommerce-admin-attributes.php:381 -#: admin/woocommerce-admin-attributes.php:406 -#: admin/woocommerce-admin-init.php:471 admin/post-types/product.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:403 -#: admin/post-types/writepanels/writepanel-product_data.php:497 -#: includes/widgets/class-wc-widget-product-categories.php:39 -#: templates/single-product-reviews.php:84 -msgid "Name" -msgstr "Naam" - -# @ woocommerce -#: woocommerce-ajax.php:1170 -msgid "Value" -msgstr "Waarde" - -# @ woocommerce -#: woocommerce-ajax.php:1484 -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -msgid "Delete note" -msgstr "Notitie verwijderen" - -# @ woocommerce -#: woocommerce-ajax.php:1651 admin/post-types/shop_order.php:95 -#: admin/post-types/writepanels/writepanel-order_data.php:93 -#: includes/integrations/google-analytics/class-wc-google-analytics.php:120 -#: includes/integrations/google-analytics/class-wc-google-analytics.php:180 -msgid "Guest" -msgstr "Bezoeker" - -# @ woocommerce -#: woocommerce-core-functions.php:790 -msgid "Australian Dollars" -msgstr "Australische Dollars" - -# @ woocommerce -#: woocommerce-core-functions.php:791 -msgid "Brazilian Real" -msgstr "Braziliaanse Real" - -# @ woocommerce -#: woocommerce-core-functions.php:792 -msgid "Canadian Dollars" -msgstr "Canadese Dollars" - -# @ woocommerce -#: woocommerce-core-functions.php:793 -msgid "Chinese Yuan" -msgstr "Chinese Yuan" - -# @ woocommerce -#: woocommerce-core-functions.php:794 -msgid "Czech Koruna" -msgstr "Tsjechische Kroon" - -# @ woocommerce -#: woocommerce-core-functions.php:795 -msgid "Danish Krone" -msgstr "Deense Kroon" - -# @ woocommerce -#: woocommerce-core-functions.php:796 -msgid "Euros" -msgstr "Euro's" - -# @ woocommerce -#: woocommerce-core-functions.php:797 -msgid "Hong Kong Dollar" -msgstr "Hong Kong Dollar" - -# @ woocommerce -#: woocommerce-core-functions.php:798 -msgid "Hungarian Forint" -msgstr "Hongaarse Forint" - -# @ woocommerce -#: woocommerce-core-functions.php:799 -msgid "Indonesia Rupiah" -msgstr "Indonesië Rupiah" - -# @ woocommerce -#: woocommerce-core-functions.php:800 -#, fuzzy -msgid "Indian Rupee" -msgstr "Indonesië Rupiah" - -# @ woocommerce -#: woocommerce-core-functions.php:801 -msgid "Israeli Shekel" -msgstr "Israëlische Shekel" - -# @ woocommerce -#: woocommerce-core-functions.php:802 -msgid "Japanese Yen" -msgstr "Japanse Yen" - -# @ woocommerce -#: woocommerce-core-functions.php:803 -#, fuzzy -msgid "South Korean Won" -msgstr "Zuid-Korea" - -# @ woocommerce -#: woocommerce-core-functions.php:804 -msgid "Malaysian Ringgits" -msgstr "Maleisische Ringgit" - -# @ woocommerce -#: woocommerce-core-functions.php:805 -msgid "Mexican Peso" -msgstr "Mexicaanse Peso" - -# @ woocommerce -#: woocommerce-core-functions.php:806 -msgid "Norwegian Krone" -msgstr "Noorse Kroon" - -# @ woocommerce -#: woocommerce-core-functions.php:807 -msgid "New Zealand Dollar" -msgstr "Nieuw-Zeelandse Dollar" - -# @ woocommerce -#: woocommerce-core-functions.php:808 -msgid "Philippine Pesos" -msgstr "Filippijnse Peso's" - -# @ woocommerce -#: woocommerce-core-functions.php:809 -msgid "Polish Zloty" -msgstr "Poolse Zloty" - -# @ woocommerce -#: woocommerce-core-functions.php:810 -msgid "Pounds Sterling" -msgstr "Pound Sterling" - -# @ woocommerce -#: woocommerce-core-functions.php:811 -msgid "Romanian Leu" -msgstr "Roemeense Leu" - -# @ woocommerce -#: woocommerce-core-functions.php:812 -#, fuzzy -msgid "Russian Ruble" -msgstr "Rusland" - -# @ woocommerce -#: woocommerce-core-functions.php:813 -msgid "Singapore Dollar" -msgstr "Singapore Dollar" - -# @ woocommerce -#: woocommerce-core-functions.php:814 -msgid "South African rand" -msgstr "Zuid-Afrikaanse rand" - -# @ woocommerce -#: woocommerce-core-functions.php:815 -msgid "Swedish Krona" -msgstr "Zweedse Kroon" - -# @ woocommerce -#: woocommerce-core-functions.php:816 -msgid "Swiss Franc" -msgstr "Zwitserse Frank" - -# @ woocommerce -#: woocommerce-core-functions.php:817 -msgid "Taiwan New Dollars" -msgstr "Taiwan Nieuwe Dollars" - -# @ woocommerce -#: woocommerce-core-functions.php:818 -msgid "Thai Baht" -msgstr "Thaise Baht" - -# @ woocommerce -#: woocommerce-core-functions.php:819 -msgid "Turkish Lira" -msgstr "Turkse Lira" - -# @ woocommerce -#: woocommerce-core-functions.php:820 -msgid "US Dollars" -msgstr "US Dollars" - -# @ woocommerce -#: woocommerce-core-functions.php:1311 woocommerce-core-functions.php:1337 -msgid "Download Permissions Granted" -msgstr "Download Toestemming Verleend" - -# @ woocommerce -#: woocommerce-core-functions.php:1464 -msgctxt "slug" -msgid "uncategorized" -msgstr "ongecategoriseerd" - -# @ woocommerce -#: woocommerce-core-functions.php:1655 -msgid "Select a category" -msgstr "Selecteer een categorie" - -# @ woocommerce -#: woocommerce-core-functions.php:1659 -msgid "Uncategorized" -msgstr "Categorieloos" - -# @ woocommerce -#: woocommerce-core-functions.php:2035 -#: admin/woocommerce-admin-customers.php:29 -msgid "Customer" -msgstr "Klant" - -# @ woocommerce -#: woocommerce-core-functions.php:2042 -msgid "Shop Manager" -msgstr "Winkelmanager" - -# @ woocommerce -#: woocommerce-core-functions.php:2599 -msgid "Unpaid order cancelled - time limit reached." -msgstr "Onbetaalde bestelling gecancelled op tijd." - -# @ woocommerce -#: woocommerce-functions.php:218 woocommerce-functions.php:263 -msgid "Cart updated." -msgstr "Winkelwagen bijgewerkt." - -# @ woocommerce -#: woocommerce-functions.php:249 -#, php-format -msgid "You can only have 1 %s in your cart." -msgstr "U kunt slechts eenmaal %s in uw winkelwagen hebben." - -# @ woocommerce -#: woocommerce-functions.php:306 woocommerce-functions.php:364 -msgid "Please choose product options…" -msgstr "Kies product opties…" - -# @ woocommerce -#: woocommerce-functions.php:397 -msgid "" -"Please choose the quantity of items you wish to add to your cart…" -msgstr "" -"Kies het aantal artikelen dat u wenst toe te voegen aan uw " -"winkelwagen…" - -# @ woocommerce -#: woocommerce-functions.php:404 -msgid "Please choose a product to add to your cart…" -msgstr "Kies een product om toe te voegen aan uw winkelwagen…" - -# @ woocommerce -#: woocommerce-functions.php:467 -#, php-format -msgid "Added "%s" to your cart." -msgstr ""%s" is toegevoegd aan uw winkelwagen." - -# @ default -#: woocommerce-functions.php:467 -msgid "" and "" -msgstr "" en "" - -# @ woocommerce -#: woocommerce-functions.php:470 -#, php-format -msgid ""%s" was successfully added to your cart." -msgstr ""%s" is toegevoegd aan uw winkelwagen." - -# @ woocommerce -#: woocommerce-functions.php:478 -msgid "Continue Shopping →" -msgstr "Ga verder met winkelen →" - -# @ woocommerce -#: woocommerce-functions.php:482 includes/class-wc-cart.php:870 -#: includes/class-wc-cart.php:884 includes/class-wc-cart.php:892 -#: templates/cart/mini-cart.php:64 -msgid "View Cart →" -msgstr "Bekijk Winkelwagen →" - -# @ woocommerce -#: woocommerce-functions.php:646 woocommerce-functions.php:648 -#: woocommerce-functions.php:656 -#, fuzzy -msgid "Error" -msgstr "Error 404" - -# @ woocommerce -#: woocommerce-functions.php:646 -msgid "Username is required." -msgstr "Gebruikersnaam is verplicht." - -# @ woocommerce -#: woocommerce-functions.php:648 -msgid "Password is required." -msgstr "Wachtwoord is verplicht." - -# @ woocommerce -#: woocommerce-functions.php:656 -#, fuzzy -msgid "A user could not be found with this email address." -msgstr "Er bestaat geen geregistreerde gebruiker met dit e-mailadres." - -# @ woocommerce -#: woocommerce-functions.php:702 woocommerce-functions.php:1610 -#, fuzzy -msgid "Please provide a valid email address." -msgstr "is geen geldig e-mailadres." - -# @ woocommerce -#: woocommerce-functions.php:705 -msgid "An account is already registered with your email address. Please login." -msgstr "" -"Er is al een account geregistreerd met uw e-mailadres. Gelieve in te loggen." - -# @ woocommerce -#: woocommerce-functions.php:715 -#, fuzzy -msgid "Please enter a valid account username." -msgstr "Gelieve een account gebruikersnaam in te vullen." - -# @ woocommerce -#: woocommerce-functions.php:718 -msgid "" -"An account is already registered with that username. Please choose another." -msgstr "" -"Er is al een account geregistreerd met deze gebruikersnaam. Gelieve een " -"andere te kiezen." - -# @ woocommerce -#: woocommerce-functions.php:738 -msgid "Please enter an account password." -msgstr "Gelieve een account wachtwoord in te vullen." - -# @ woocommerce -#: woocommerce-functions.php:763 woocommerce-functions.php:803 -msgid "ERROR" -msgstr "FOUT" - -# @ woocommerce -#: woocommerce-functions.php:763 -msgid "" -"Couldn’t register you… please contact us if you continue to " -"have problems." -msgstr "" -"Kan u niet registreren… gelieve ons te contacteren als u verdere " -"problemen ondervindt." - -# @ woocommerce -#: woocommerce-functions.php:803 -msgid "Anti-spam field was filled in." -msgstr "Anti-spam veld is reeds ingevuld." - -# @ woocommerce -#: woocommerce-functions.php:902 -msgid "The cart has been filled with the items from your previous order." -msgstr "" -"Uw winkelwagen werd gevuld met de producten van uw vorige bestellingen." - -# @ woocommerce -#: woocommerce-functions.php:928 -msgid "Order cancelled by customer." -msgstr "Bestelling door klant geannuleerd." - -# @ woocommerce -#: woocommerce-functions.php:931 -msgid "Your order was cancelled." -msgstr "Uw bestelling is geannuleerd." - -# @ woocommerce -#: woocommerce-functions.php:937 -msgid "" -"Your order is no longer pending and could not be cancelled. Please contact " -"us if you need assistance." -msgstr "" -"Er is reeds een betaling gebeurd voor deze bestelling. Neem contact met ons " -"op als u hulp nodig heeft." - -# @ woocommerce -#: woocommerce-functions.php:941 woocommerce-functions.php:1021 -#: includes/shortcodes/class-wc-shortcode-checkout.php:108 -#: includes/shortcodes/class-wc-shortcode-checkout.php:160 -#: includes/shortcodes/class-wc-shortcode-my-account.php:86 -#: includes/shortcodes/class-wc-shortcode-view-order.php:51 -msgid "Invalid order." -msgstr "Onbekende bestelling." - -# @ woocommerce -#: woocommerce-functions.php:972 -msgid "Invalid email address." -msgstr "Ongeldig e-mailadres." - -# @ woocommerce -#: woocommerce-functions.php:972 woocommerce-functions.php:995 -#: woocommerce-functions.php:1015 woocommerce-functions.php:1021 -#: woocommerce-functions.php:1025 woocommerce-functions.php:1028 -#: woocommerce-functions.php:1058 woocommerce-functions.php:1190 -msgid "Go to homepage →" -msgstr "Ga naar de homepage →" - -# @ woocommerce -#: woocommerce-functions.php:995 -msgid "Invalid download." -msgstr "Ongeldige download." - -# @ woocommerce -#: woocommerce-functions.php:1007 -msgid "You must be logged in to download files." -msgstr "U dient ingelogd te zijn om bestanden te downloaden." - -# @ woocommerce -#: woocommerce-functions.php:1007 -msgid "Login →" -msgstr "Login →" - -# @ woocommerce -#: woocommerce-functions.php:1007 -#, fuzzy -msgid "Log in to Download Files" -msgstr "Download bestand %s →" - -# @ woocommerce -#: woocommerce-functions.php:1010 -msgid "This is not your download link." -msgstr "Dit is niet uw downloadlink." - -# @ woocommerce -#: woocommerce-functions.php:1015 -msgid "Product no longer exists." -msgstr "Product bestaat niet meer." - -# @ woocommerce -#: woocommerce-functions.php:1025 -msgid "Sorry, you have reached your download limit for this file" -msgstr "Sorry, het maximum aantal downloads voor dit bestand is overschreden" - -# @ woocommerce -#: woocommerce-functions.php:1028 -msgid "Sorry, this download has expired" -msgstr "Het spijt ons. Deze download is vervallen." - -# @ woocommerce -#: woocommerce-functions.php:1058 -msgid "No file defined" -msgstr "Geen bestand opgegeven" - -# @ woocommerce -#: woocommerce-functions.php:1190 -msgid "File not found" -msgstr "Bestand niet gevonden" - -# @ woocommerce -#: woocommerce-functions.php:1246 -msgid "New products" -msgstr "Nieuwe producten" - -# @ woocommerce -#: woocommerce-functions.php:1254 -#, php-format -msgid "New products added to %s" -msgstr "Nieuwe producten toegevoegd aan %s" - -# @ woocommerce -#: woocommerce-functions.php:1262 -#, php-format -msgid "New products tagged %s" -msgstr "Nieuwe producten tagged als %s" - -# @ woocommerce -#: woocommerce-functions.php:1300 -msgid "You have taken too long. Please go back and refresh the page." -msgstr "U heeft te lang gewacht. Keer terug en probeer het nogmaals." - -# @ woocommerce -#: woocommerce-functions.php:1303 -msgid "Please rate the product." -msgstr "Becijfer het product." - -# @ woocommerce -#: woocommerce-functions.php:1607 -#, fuzzy -msgid "Please enter your name." -msgstr "Gelieve een gebruikersnaam in te vullen." - -# @ woocommerce -#: woocommerce-functions.php:1613 -#, fuzzy -msgid "This email address is already registered." -msgstr "Dit e-mailadres is al geregistreerd, gelieve een ander te kiezen." - -# @ woocommerce -#: woocommerce-functions.php:1616 -#, fuzzy -msgid "Please re-enter your password." -msgstr "Vul a.u.b. uw wachtwoord in." - -# @ woocommerce -#: woocommerce-functions.php:1619 -#: includes/shortcodes/class-wc-shortcode-lost-password.php:83 -msgid "Passwords do not match." -msgstr "Wachtwoorden komen niet overeen." - -# @ woocommerce -#: woocommerce-functions.php:1632 -#, fuzzy -msgid "Account details changed successfully." -msgstr "Adres veranderd." - -# @ woocommerce -#: woocommerce-functions.php:1689 includes/class-wc-checkout.php:418 -msgid "is a required field." -msgstr "is een verplicht veld." - -# @ woocommerce -#: woocommerce-functions.php:1694 -#: includes/shortcodes/class-wc-shortcode-cart.php:53 -msgid "Please enter a valid postcode/ZIP." -msgstr "Gelieve een geldige postcode in te vullen." - -# @ woocommerce -#: woocommerce-functions.php:1708 -msgid "Address changed successfully." -msgstr "Adres veranderd." - -# @ woocommerce -#: woocommerce-template.php:131 admin/settings/settings-init.php:85 -msgid "" -"This is a demo store for testing purposes — no orders shall be " -"fulfilled." -msgstr "" -"Dit is een demowinkel, voor test doeleinden. Bestellingen worden niet " -"afgehandeld." - -# @ woocommerce -#: woocommerce-template.php:150 -#, php-format -msgid "Search Results: “%s”" -msgstr "Zoekresultaten: “%s”" - -# @ woocommerce -#: woocommerce-template.php:153 -#, php-format -msgid " – Page %s" -msgstr " – Pagina %s" - -# @ woocommerce -#: woocommerce-template.php:682 admin/post-types/shop_coupon.php:28 -#: includes/gateways/cod/class-wc-gateway-cod.php:94 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:150 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:133 -msgid "Description" -msgstr "Beschrijving" - -# @ woocommerce -#: woocommerce-template.php:690 templates/checkout/form-shipping.php:57 -#: templates/single-product/tabs/additional-information.php:14 -msgid "Additional Information" -msgstr "Additionele Informatie" - -# @ woocommerce -#: woocommerce-template.php:698 -#, php-format -msgid "Reviews (%d)" -msgstr "Reviews (%d)" - -#: woocommerce-template.php:781 -msgid "" -"Use $args argument as an array instead. Deprecated argument will be removed " -"in WC 2.2." -msgstr "" - -# @ woocommerce -#: woocommerce-template.php:951 -msgctxt "breadcrumb" -msgid "Home" -msgstr "Home" - -# @ woocommerce -#: woocommerce-template.php:1231 -msgid "Order Again" -msgstr "Bestel opnieuw" - -# @ woocommerce -#: woocommerce-template.php:1317 -#: admin/post-types/writepanels/writepanel-order_data.php:175 -#: admin/post-types/writepanels/writepanel-order_data.php:265 -#: templates/cart/shipping-calculator.php:28 -msgid "Select a country…" -msgstr "Selecteer een land…" - -# @ woocommerce -#: woocommerce-template.php:1324 -msgid "Update country" -msgstr "Update land" - -# @ woocommerce -#: woocommerce-template.php:1367 templates/cart/shipping-calculator.php:52 -msgid "Select a state…" -msgstr "Selecteer een staat…" - -# @ woocommerce -#: woocommerce-template.php:1479 -msgid "Search for:" -msgstr "Zoeken naar:" - -# @ woocommerce -#: woocommerce-template.php:1480 -msgid "Search for products" -msgstr "Zoek naar producten" - -#: woocommerce.php:112 woocommerce.php:121 -msgid "Cheatin’ huh?" -msgstr "" - -# @ woocommerce -#: woocommerce.php:175 admin/woocommerce-admin-content.php:41 -#: admin/woocommerce-admin-init.php:89 admin/woocommerce-admin-status.php:288 -#: admin/includes/welcome.php:153 includes/abstracts/abstract-wc-email.php:560 -#: includes/abstracts/abstract-wc-integration.php:30 -#: includes/abstracts/abstract-wc-settings-api.php:39 -msgid "Settings" -msgstr "Instellingen" - -# @ woocommerce -#: woocommerce.php:176 admin/includes/welcome.php:154 -msgid "Docs" -msgstr "" - -#: woocommerce.php:177 -msgid "Premium Support" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:77 -msgid "Please, provide an attribute name, slug and type." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:79 -#, php-format -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:81 -#, php-format -msgid "" -"Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:86 -#: admin/woocommerce-admin-attributes.php:91 -#, php-format -msgid "Slug “%s” is already in use. Change it, please." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:234 -msgid "Edit Attribute" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:244 -#: admin/woocommerce-admin-attributes.php:383 -msgid "Name for the attribute (shown on the front-end)." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:249 -#: admin/woocommerce-admin-attributes.php:315 -#: admin/woocommerce-admin-attributes.php:387 -msgid "Slug" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:253 -#: admin/woocommerce-admin-attributes.php:389 -msgid "" -"Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:258 -#: admin/woocommerce-admin-attributes.php:316 -#: admin/woocommerce-admin-attributes.php:393 admin/post-types/product.php:101 -msgid "Type" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:262 -#: admin/woocommerce-admin-attributes.php:395 -msgid "Select" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:263 -#: admin/woocommerce-admin-attributes.php:396 -msgid "Text" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:266 -#: admin/woocommerce-admin-attributes.php:399 -msgid "" -"Determines how you select attributes for products. Text " -"allows manual entry via the product page, whereas select " -"attribute terms can be defined from this section. If you plan on using an " -"attribute for variations use select." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:271 -#: admin/woocommerce-admin-attributes.php:403 -msgid "Default sort order" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:275 -#: admin/woocommerce-admin-attributes.php:343 -#: admin/woocommerce-admin-attributes.php:405 -msgid "Custom ordering" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:277 -#: admin/woocommerce-admin-attributes.php:340 -#: admin/woocommerce-admin-attributes.php:407 -msgid "Term ID" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:279 -#: admin/woocommerce-admin-attributes.php:409 -msgid "" -"Determines the sort order on the frontend for this attribute. If using " -"custom ordering, you can drag and drop the terms in this attribute" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:284 -msgid "Update" -msgstr "Bijwerken" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:306 -#: admin/woocommerce-admin-init.php:66 -#: admin/post-types/writepanels/writepanel-product_data.php:99 -msgid "Attributes" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:317 -#: includes/widgets/class-wc-widget-products.php:51 -msgid "Order by" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:318 -msgid "Terms" -msgstr "" - -# @ default -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:330 -#: admin/woocommerce-admin-customers.php:163 admin/post-types/product.php:151 -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#: admin/post-types/writepanels/writepanel-order_data.php:387 -#: admin/post-types/writepanels/writepanel-product_data.php:1091 -#: includes/class-wc-post-types.php:243 includes/class-wc-post-types.php:295 -#: includes/class-wc-post-types.php:333 templates/myaccount/my-address.php:45 -msgid "Edit" -msgstr "Bewerken" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:330 -#: admin/post-types/writepanels/writepanel-product_images.php:43 -#: admin/post-types/writepanels/writepanel-product_images.php:103 -msgid "Delete" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:363 -msgid "Configure terms" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:367 -msgid "No attributes currently exist." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:377 -msgid "Add New Attribute" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:378 -msgid "" -"Attributes let you define extra product data, such as size or colour. You " -"can use these attributes in the shop sidebar using the \"layered nav\" " -"widgets. Please note: you cannot rename an attribute later on." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:412 -msgid "Add Attribute" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:423 -msgid "Are you sure you want to delete this attribute?" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:26 -#: admin/woocommerce-admin-reports.php:26 -#: admin/woocommerce-admin-reports.php:66 -#: admin/woocommerce-admin-reports.php:82 -#: admin/woocommerce-admin-reports.php:93 -msgid "Overview" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:29 -#, php-format -msgid "" -"Thank you for using WooCommerce :) Should you need help using or extending " -"WooCommerce please read the documentation. For further " -"assistance you can use the community forum or if you have " -"access, our support desk." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:31 -msgid "" -"If you are having problems, or to assist us with support, please check the " -"status page to identify any problems with your configuration:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:33 admin/woocommerce-admin-init.php:90 -#: admin/woocommerce-admin-status.php:26 -msgid "System Status" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:35 -#, php-format -msgid "" -"If you come across a bug, or wish to contribute to the project you can also " -"get involved on GitHub." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:43 -msgid "" -"Here you can set up your store and customise it to fit your needs. The " -"sections available from the settings page include:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:44 -#: admin/woocommerce-admin-settings.php:182 -#: admin/post-types/writepanels/writepanel-product_data.php:79 -msgid "General" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:44 -msgid "" -"General settings such as your shop base, currency, and script/styling " -"options which affect features used in your store." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:45 -#: admin/woocommerce-admin-settings.php:184 -#: assets/js/admin/editor_plugin_lang.php:14 -msgid "Pages" -msgstr "Pagina’s" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:45 -msgid "" -"This is where important store page are defined. You can also set up other " -"pages (such as a Terms page) here." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:46 -#: admin/woocommerce-admin-settings.php:183 admin/post-types/product.php:618 -#: admin/post-types/product.php:893 -#: admin/post-types/writepanels/writepanel-product_data.php:1077 -msgid "Catalog" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:46 -msgid "" -"Options for how things like price, images and weights appear in your product " -"catalog." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:47 -#: admin/woocommerce-admin-settings.php:185 -#: admin/post-types/writepanels/writepanel-product_data.php:84 -msgid "Inventory" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:47 -msgid "Options concerning stock and stock notices." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:48 -#: admin/woocommerce-admin-settings.php:186 -#: admin/post-types/writepanels/writepanel-order_data.php:352 -#: admin/settings/settings-tax-rates.php:387 -#: admin/settings/settings-tax-rates.php:475 -#: includes/class-wc-countries.php:444 -msgid "Tax" -msgstr "BTW" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:48 -msgid "Options concerning tax, including international and local tax rates." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:49 -#: admin/woocommerce-admin-settings.php:187 admin/post-types/shop_order.php:46 -#: admin/post-types/writepanels/writepanel-order_data.php:539 -#: admin/post-types/writepanels/writepanel-product_data.php:89 -#: admin/settings/settings-tax-rates.php:52 -#: admin/settings/settings-tax-rates.php:217 -msgid "Shipping" -msgstr "Verzending" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:49 -msgid "" -"This is where shipping options are defined, and shipping methods are set up." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:50 -msgid "Payment Methods" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:50 -msgid "" -"This is where payment gateway options are defined, and individual payment " -"gateways are set up." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:51 -#: admin/woocommerce-admin-settings.php:189 -msgid "Emails" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:51 -msgid "Here you can customise the way WooCommerce emails appear." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:52 -#: admin/woocommerce-admin-settings.php:190 -msgid "Integration" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:52 -msgid "" -"The integration section contains options for third party services which " -"integrate with WooCommerce." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:57 admin/woocommerce-admin-init.php:64 -msgid "Reports" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:59 -msgid "" -"The reports section can be accessed from the left-hand navigation menu. Here " -"you can generate reports for sales and customers." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:60 -#: admin/woocommerce-admin-reports.php:23 -#: admin/woocommerce-admin-reports.php:997 -#: admin/woocommerce-admin-reports.php:1095 -#: admin/woocommerce-admin-reports.php:1214 -#: includes/widgets/class-wc-widget-products.php:56 -msgid "Sales" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:60 -msgid "Reports for sales based on date, top sellers and top earners." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:61 -#: admin/woocommerce-admin-content.php:76 -#: admin/woocommerce-admin-reports.php:63 admin/settings/settings-init.php:96 -#: includes/class-wc-post-types.php:328 -msgid "Coupons" -msgstr "Kortingsbonnen" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:61 -msgid "Coupon usage reports." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:62 -#: admin/woocommerce-admin-customers.php:30 -#: admin/woocommerce-admin-init.php:88 admin/woocommerce-admin-init.php:345 -#: admin/woocommerce-admin-reports.php:79 -msgid "Customers" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:62 -msgid "Customer reports, such as signups per day." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:63 -#: admin/woocommerce-admin-reports.php:90 admin/post-types/product.php:94 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:86 -msgid "Stock" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:63 -msgid "Stock reports for low stock and out of stock items." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:68 -#: admin/woocommerce-admin-dashboard.php:142 -#: includes/class-wc-post-types.php:291 -msgid "Orders" -msgstr "Bestellingen" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:70 -msgid "" -"The orders section can be accessed from the left-hand navigation menu. Here " -"you can view and manage customer orders." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:71 -msgid "" -"Orders can also be added from this section if you want to set them up for a " -"customer manually." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:78 -msgid "" -"Coupons can be managed from this section. Once added, customers will be able " -"to enter coupon codes on the cart/checkout page. If a customer uses a coupon " -"code they will be viewable when viewing orders." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:82 -msgid "For more information:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:83 admin/woocommerce-admin-init.php:62 -#: admin/woocommerce-admin-init.php:71 admin/woocommerce-admin-init.php:439 -#: includes/class-wc-order.php:1219 includes/class-wc-order.php:1221 -#: includes/class-wc-order.php:1224 -msgid "WooCommerce" -msgstr "WooCommerce" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:84 -msgid "Project on WordPress.org" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:85 -msgid "Project on Github" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:86 -msgid "WooCommerce Docs" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:87 -msgid "Official Extensions" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:88 -msgid "Official Themes" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-customers.php:169 -#, fuzzy -msgid "View orders" -msgstr "Bekijk Bestelling" - -#: admin/woocommerce-admin-customers.php:193 -msgid "Link previous orders" -msgstr "" - -#: admin/woocommerce-admin-customers.php:219 -msgid "Name (Last, First)" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-customers.php:220 -#: templates/myaccount/form-login.php:66 -msgid "Username" -msgstr "Gebruikersnaam" - -# @ woocommerce -#: admin/woocommerce-admin-customers.php:221 -#: templates/myaccount/form-edit-account.php:28 -#: templates/myaccount/form-login.php:73 -#, fuzzy -msgid "Email address" -msgstr "E-mailadres" - -# @ default -#: admin/woocommerce-admin-customers.php:222 -#, fuzzy -msgid "Location" -msgstr "Documentatie" - -# @ woocommerce -#: admin/woocommerce-admin-customers.php:223 -#, fuzzy -msgid "Paying customer?" -msgstr "Terugkerende klant?" - -# @ woocommerce -#: admin/woocommerce-admin-customers.php:224 -#, fuzzy -msgid "Complete orders" -msgstr "Afgeronde bestelling" - -#: admin/woocommerce-admin-customers.php:225 -msgid "Money spent" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-customers.php:226 -#, fuzzy -msgid "Last order" -msgstr "Kost per bestelling" - -# @ woocommerce -#: admin/woocommerce-admin-customers.php:227 -#: admin/post-types/shop_order.php:51 -#: admin/post-types/writepanels/writepanel-order_data.php:386 -#: admin/post-types/writepanels/writepanel-order_data.php:433 -msgid "Actions" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:40 -msgid "Monthly Sales" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:43 -msgid "WooCommerce Right Now" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:44 -msgid "WooCommerce Recent Orders" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:45 -#: includes/widgets/class-wc-widget-recent-reviews.php:23 -msgid "WooCommerce Recent Reviews" -msgstr "WooCommerce Recente Reviews" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:78 -msgid "Shop Content" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:84 -#: admin/woocommerce-admin-functions.php:202 -#: admin/woocommerce-admin-init.php:795 -#: admin/woocommerce-admin-reports.php:996 -#: admin/woocommerce-admin-reports.php:1094 -#: includes/class-wc-post-types.php:239 templates/cart/cart.php:27 -#: templates/checkout/form-pay.php:19 templates/checkout/review-order.php:21 -#: templates/emails/admin-new-order.php:22 -#: templates/emails/customer-completed-order.php:23 -#: templates/emails/customer-invoice.php:27 -#: templates/emails/customer-note.php:27 -#: templates/emails/customer-processing-order.php:23 -#: templates/order/order-details.php:20 -msgid "Product" -msgid_plural "Products" -msgstr[0] "" -msgstr[1] "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:98 -#: includes/class-wc-post-types.php:63 -msgid "Product Category" -msgid_plural "Product Categories" -msgstr[0] "" -msgstr[1] "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:112 -#: includes/class-wc-post-types.php:98 -msgid "Product Tag" -msgid_plural "Product Tags" -msgstr[0] "" -msgstr[1] "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:126 -#: includes/widgets/class-wc-widget-layered-nav.php:79 -msgid "Attribute" -msgid_plural "Attributes" -msgstr[0] "" -msgstr[1] "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:148 -msgid "Pending" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:162 -msgid "On-Hold" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:176 -#: admin/post-types/shop_order.php:158 -msgid "Processing" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:190 -msgid "Completed" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:207 -#, php-format -msgid "You are using WooCommerce %s." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:238 -msgid "l jS \\of F Y h:i:s A" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:239 -msgid "item" -msgid_plural "items" -msgstr[0] "" -msgstr[1] "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:239 -#: includes/shortcodes/class-wc-shortcode-checkout.php:133 -#: templates/checkout/thankyou.php:48 -msgid "Total:" -msgstr "Totaal:" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:245 -msgid "There are no product orders yet." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:279 -#: includes/abstracts/abstract-wc-product.php:968 -#: templates/single-product-reviews.php:28 -#: templates/single-product/review.php:27 -msgid "out of 5" -msgstr "van de 5" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:287 -msgid "There are no product reviews yet." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:432 -msgid "Sold" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:433 -msgid "Earned" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:192 -msgid "Order Received" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:194 -msgid "" -"Thank you, we are now processing your order. Your order's details are below." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:196 -#: includes/shortcodes/class-wc-shortcode-checkout.php:125 -#: templates/checkout/thankyou.php:40 -#: templates/emails/customer-completed-order.php:18 -#: templates/emails/customer-invoice.php:22 -#: templates/emails/customer-note.php:22 -#: templates/emails/customer-processing-order.php:18 -msgid "Order:" -msgstr "Bestelnummer:" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:203 templates/cart/cart.php:29 -#: templates/emails/admin-new-order.php:23 -#: templates/emails/customer-completed-order.php:24 -#: templates/emails/customer-invoice.php:28 -#: templates/emails/customer-note.php:28 -#: templates/emails/customer-processing-order.php:24 -msgid "Quantity" -msgstr "Aantal" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:204 admin/post-types/product.php:96 -#: admin/post-types/product.php:567 admin/post-types/product.php:788 -#: includes/widgets/class-wc-widget-products.php:54 templates/cart/cart.php:28 -#: templates/emails/admin-new-order.php:24 -#: templates/emails/customer-completed-order.php:25 -#: templates/emails/customer-invoice.php:29 -#: templates/emails/customer-note.php:29 -#: templates/emails/customer-processing-order.php:25 -msgid "Price" -msgstr "Prijs" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:216 -msgid "Order total:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:222 -#: templates/emails/admin-new-order.php:50 -#: templates/emails/customer-completed-order.php:51 -#: templates/emails/customer-note.php:55 -#: templates/emails/customer-processing-order.php:51 -#: templates/emails/plain/admin-new-order.php:38 -#: templates/order/order-details.php:101 -msgid "Customer details" -msgstr "Klantinfo" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:228 -#: templates/emails/email-addresses.php:18 -#: templates/emails/plain/email-addresses.php:12 -msgid "Billing address" -msgstr "Factuuradres" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:235 -#: templates/emails/email-addresses.php:28 -#: templates/emails/plain/email-addresses.php:17 -msgid "Shipping address" -msgstr "Verzendadres" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:475 -msgid "Could not compile woocommerce.less:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:496 -#: admin/woocommerce-admin-functions.php:497 -msgid "Mark processing" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:499 -#: admin/woocommerce-admin-functions.php:500 -msgid "Mark completed" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:537 -msgid "Order status changed by bulk edit:" -msgstr "" - -# @ default -#: admin/woocommerce-admin-functions.php:560 -#, php-format -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "" -msgstr[1] "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:89 -msgid "WooCommerce Settings" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:90 -msgid "WooCommerce Status" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:143 admin/woocommerce-admin-init.php:145 -#: includes/class-wc-post-types.php:281 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Bestellingen" - -#: admin/woocommerce-admin-init.php:351 -#, php-format -msgid "%s previous order linked" -msgid_plural "%s previous orders linked" -msgstr[0] "" -msgstr[1] "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:356 -#, fuzzy -msgid "Search customers" -msgstr "Zoek bestellingen" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:467 -msgid "" -"Are you sure you want to remove the selected items? If you have previously " -"reduced this item's stock, or this order was submitted by a customer, you " -"will need to manually restore the item's stock." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:468 -msgid "Please select some items." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:469 -msgid "Remove this item meta?" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:470 -msgid "Remove this attribute?" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:472 -#: admin/post-types/writepanels/variation-admin-html.php:6 -#: admin/post-types/writepanels/writepanel-product_data.php:395 -#: admin/post-types/writepanels/writepanel-product_data.php:489 -msgid "Remove" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:473 -#: admin/post-types/writepanels/order-download-permission-html.php:7 -#: admin/post-types/writepanels/variation-admin-html.php:7 -#: admin/post-types/writepanels/writepanel-product_data.php:396 -#: admin/post-types/writepanels/writepanel-product_data.php:490 -msgid "Click to toggle" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:474 -#: admin/post-types/writepanels/writepanel-product_data.php:411 -#: admin/post-types/writepanels/writepanel-product_data.php:503 -msgid "Value(s)" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:475 -#: admin/post-types/writepanels/writepanel-product_data.php:504 -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:476 -#: admin/post-types/writepanels/writepanel-product_data.php:454 -#: admin/post-types/writepanels/writepanel-product_data.php:509 -msgid "Visible on the product page" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:477 -#: admin/post-types/writepanels/writepanel-product_data.php:467 -#: admin/post-types/writepanels/writepanel-product_data.php:515 -msgid "Used for variations" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:478 -msgid "Enter a name for the new attribute term:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:479 -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:480 -msgid "" -"Calculate line taxes? This will calculate taxes based on the customers " -"country. If no billing/shipping is set it will use the store base country." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:481 -msgid "" -"Copy billing information to shipping information? This will remove any " -"currently entered shipping information." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:482 -msgid "" -"Load the customer's billing information? This will remove any currently " -"entered billing information." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:483 -msgid "" -"Load the customer's shipping information? This will remove any currently " -"entered shipping information." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:484 admin/post-types/product.php:100 -#: admin/post-types/product.php:631 admin/post-types/product.php:905 -#: admin/post-types/writepanels/writepanel-product_data.php:1088 -msgid "Featured" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:487 -msgid "No customer selected" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:699 -#, php-format -msgid "Product updated. View Product" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:700 admin/woocommerce-admin-init.php:715 -#: admin/woocommerce-admin-init.php:730 -msgid "Custom field updated." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:701 admin/woocommerce-admin-init.php:716 -#: admin/woocommerce-admin-init.php:731 -msgid "Custom field deleted." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:702 -msgid "Product updated." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:703 -#, php-format -msgid "Product restored to revision from %s" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:704 -#, php-format -msgid "Product published. View Product" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:705 -msgid "Product saved." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:706 -#, php-format -msgid "Product submitted. Preview Product" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:707 -#, php-format -msgid "" -"Product scheduled for: %1$s. Preview Product" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:708 admin/woocommerce-admin-init.php:723 -#: admin/woocommerce-admin-init.php:738 -msgid "M j, Y @ G:i" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:709 -#, php-format -msgid "" -"Product draft updated. Preview Product" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:714 admin/woocommerce-admin-init.php:717 -#: admin/woocommerce-admin-init.php:719 -msgid "Order updated." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:718 -#, php-format -msgid "Order restored to revision from %s" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:720 -msgid "Order saved." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:721 -msgid "Order submitted." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:722 -#, php-format -msgid "Order scheduled for: %1$s." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:724 -msgid "Order draft updated." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:729 admin/woocommerce-admin-init.php:732 -#: admin/woocommerce-admin-init.php:734 -msgid "Coupon updated." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:733 -#, php-format -msgid "Coupon restored to revision from %s" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:735 -msgid "Coupon saved." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:736 -msgid "Coupon submitted." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:737 -#, php-format -msgid "Coupon scheduled for: %1$s." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:739 -msgid "Coupon draft updated." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:756 -msgid "Order notes" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:771 -msgid "" -"These settings control the permalinks used for products. These settings only " -"apply when not using \"default\" permalinks above." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:778 -msgctxt "default-slug" -msgid "shop" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:779 -msgctxt "default-slug" -msgid "product" -msgstr "" - -# @ woocommerce -# @ default -#: admin/woocommerce-admin-init.php:791 -#: admin/woocommerce-admin-taxonomies.php:27 -#: admin/woocommerce-admin-taxonomies.php:121 -#: admin/settings/settings-payment-gateways.php:29 -#: admin/settings/settings-shipping-methods.php:29 -msgid "Default" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:800 -msgid "Shop base" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:804 -msgid "Shop base with category" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:810 -msgid "Custom Base" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:812 -msgid "" -"Enter a custom base to use. A base must be set or WordPress " -"will use default instead." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:840 -msgid "Product permalink base" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:845 -msgid "Product category base" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:852 -msgid "Product tag base" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:859 -msgid "Product attribute base" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:919 -#: admin/includes/updates/woocommerce-update-2.0.php:49 -#: includes/class-wc-post-types.php:83 -msgctxt "slug" -msgid "product-category" -msgstr "product-categorie" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:932 -#: admin/includes/updates/woocommerce-update-2.0.php:50 -#: includes/class-wc-post-types.php:118 -msgctxt "slug" -msgid "product-tag" -msgstr "product-tag" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:206 -msgctxt "page_slug" -msgid "shop" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:207 -msgid "Shop" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:211 -msgctxt "page_slug" -msgid "cart" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:212 -#: admin/woocommerce-admin-status.php:313 -#: assets/js/admin/editor_plugin_lang.php:15 -#: includes/widgets/class-wc-widget-cart.php:29 -#: includes/widgets/class-wc-widget-cart.php:57 -msgid "Cart" -msgstr "Winkelwagen" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:216 -msgctxt "page_slug" -msgid "checkout" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:217 -#: admin/woocommerce-admin-status.php:317 admin/settings/settings-init.php:106 -#: assets/js/admin/editor_plugin_lang.php:16 -msgid "Checkout" -msgstr "Afrekenen" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:221 -msgctxt "page_slug" -msgid "my-account" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:222 -#: admin/woocommerce-admin-status.php:321 -#: assets/js/admin/editor_plugin_lang.php:18 -#: templates/checkout/thankyou.php:30 -msgid "My Account" -msgstr "Mijn Account" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:226 -#: admin/includes/updates/woocommerce-update-2.0.php:179 -msgctxt "page_slug" -msgid "lost-password" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:227 -#: admin/woocommerce-admin-status.php:329 -#: admin/includes/updates/woocommerce-update-2.0.php:179 -msgid "Lost Password" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:232 -msgctxt "page_slug" -msgid "edit-address" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:233 -msgid "Edit My Address" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:238 -msgctxt "page_slug" -msgid "logout" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:239 -msgid "Logout" -msgstr "Log uit" - -# @ woocommerce -#: admin/woocommerce-admin-profile.php:22 -msgid "Customer Billing Address" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-profile.php:25 -#: admin/woocommerce-admin-profile.php:74 -#: templates/myaccount/form-edit-account.php:20 -msgid "First name" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-profile.php:29 -#: admin/woocommerce-admin-profile.php:78 -#: templates/myaccount/form-edit-account.php:24 -msgid "Last name" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-profile.php:33 -#: admin/woocommerce-admin-profile.php:82 -#: admin/post-types/writepanels/writepanel-order_data.php:152 -#: admin/post-types/writepanels/writepanel-order_data.php:242 -msgid "Company" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-profile.php:37 -#: admin/woocommerce-admin-profile.php:86 -#: admin/post-types/writepanels/writepanel-order_data.php:156 -#: admin/post-types/writepanels/writepanel-order_data.php:246 -msgid "Address 1" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-profile.php:41 -#: admin/woocommerce-admin-profile.php:90 -#: admin/post-types/writepanels/writepanel-order_data.php:160 -#: admin/post-types/writepanels/writepanel-order_data.php:250 -msgid "Address 2" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-profile.php:45 -#: admin/woocommerce-admin-profile.php:94 -#: admin/post-types/writepanels/writepanel-order_data.php:164 -#: admin/post-types/writepanels/writepanel-order_data.php:254 -#: admin/settings/settings-tax-rates.php:42 -#: admin/settings/settings-tax-rates.php:217 -#: templates/cart/shipping-calculator.php:72 -msgid "City" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-profile.php:49 -#: admin/woocommerce-admin-profile.php:98 -#: admin/post-types/writepanels/writepanel-order_data.php:168 -#: admin/post-types/writepanels/writepanel-order_data.php:258 -#: includes/class-wc-countries.php:977 -msgid "Postcode" -msgstr "Postcode" - -# @ woocommerce -#: admin/woocommerce-admin-profile.php:53 -#: admin/woocommerce-admin-profile.php:102 -#: admin/post-types/writepanels/writepanel-order_data.php:178 -#: admin/post-types/writepanels/writepanel-order_data.php:268 -msgid "State/County" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-profile.php:54 -msgid "Country or state code" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-profile.php:57 -#: admin/woocommerce-admin-profile.php:106 -#: admin/post-types/writepanels/writepanel-order_data.php:172 -#: admin/post-types/writepanels/writepanel-order_data.php:262 -#: includes/class-wc-countries.php:678 -msgid "Country" -msgstr "Land" - -# @ woocommerce -#: admin/woocommerce-admin-profile.php:58 -#: admin/woocommerce-admin-profile.php:107 -msgid "2 letter Country code" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-profile.php:61 -msgid "Telephone" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-profile.php:65 -#: admin/post-types/writepanels/writepanel-order_data.php:182 -#: templates/single-product-reviews.php:86 -msgid "Email" -msgstr "E-mail" - -# @ woocommerce -#: admin/woocommerce-admin-profile.php:71 -msgid "Customer Shipping Address" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-profile.php:103 -msgid "State/County or state code" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:32 -msgid "Sales by day" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:37 -msgid "Sales by month" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:42 -msgid "Product Sales" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:47 -msgid "Top sellers" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:52 -msgid "Top earners" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:57 -msgid "Sales by category" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:72 -msgid "Discounts by coupon" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:104 -msgid "Taxes by month" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:243 -#: admin/woocommerce-admin-reports.php:508 -#: admin/woocommerce-admin-reports.php:713 -#: admin/woocommerce-admin-reports.php:894 -msgid "Sales amount" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:248 -#: admin/woocommerce-admin-reports.php:508 -#: admin/woocommerce-admin-reports.php:713 -#: admin/woocommerce-admin-reports.php:894 -msgid "Number of sales" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:380 -msgid "Total sales" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:382 -#: admin/woocommerce-admin-reports.php:388 -#: admin/woocommerce-admin-reports.php:394 -#: admin/woocommerce-admin-reports.php:400 -#: admin/woocommerce-admin-reports.php:406 -#: admin/woocommerce-admin-reports.php:412 -#: admin/woocommerce-admin-reports.php:655 -#: admin/woocommerce-admin-reports.php:661 -#: admin/woocommerce-admin-reports.php:667 -#: admin/woocommerce-admin-reports.php:673 -#: admin/woocommerce-admin-reports.php:839 -#: admin/woocommerce-admin-reports.php:845 -#: admin/woocommerce-admin-reports.php:851 -#: admin/woocommerce-admin-reports.php:857 -#: admin/woocommerce-admin-reports.php:1380 -#: admin/woocommerce-admin-reports.php:1386 -#: admin/woocommerce-admin-reports.php:1392 -#: admin/woocommerce-admin-reports.php:1826 -#: admin/woocommerce-admin-reports.php:1832 -#: admin/woocommerce-admin-reports.php:1838 -#: admin/woocommerce-admin-reports.php:1844 -#: admin/woocommerce-admin-reports.php:1850 -#: admin/woocommerce-admin-reports.php:1856 -#: admin/woocommerce-admin-reports.php:2320 -#: admin/woocommerce-admin-reports.php:2331 -#: admin/woocommerce-admin-reports.php:2342 -msgid "n/a" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:386 -msgid "Total orders" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:388 -#: admin/woocommerce-admin-reports.php:661 -#: admin/woocommerce-admin-reports.php:845 -msgid "items" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:392 -msgid "Average order total" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:398 -msgid "Average order items" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:404 -msgid "Discounts used" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:410 -msgid "Total shipping costs" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:418 -msgid "This month's sales" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1372 -msgid "From:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1372 -msgid "To:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:832 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1245 -#: admin/woocommerce-admin-reports.php:1372 -#: admin/woocommerce-admin-reports.php:1505 -#: admin/woocommerce-admin-reports.php:2309 -#: admin/woocommerce-admin-reports.php:2492 -#: includes/widgets/class-wc-widget-products.php:41 -msgid "Show" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:653 -msgid "Total sales in range" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:659 -msgid "Total orders in range" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:665 -msgid "Average order total in range" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:671 -msgid "Average order items in range" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:679 -msgid "Sales in range" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:826 -#: admin/woocommerce-admin-reports.php:2303 -msgid "Year:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:837 -msgid "Total sales for year" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:843 -msgid "Total orders for year" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:849 -msgid "Average order total for year" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:855 -msgid "Average order items for year" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:863 -msgid "Monthly sales for year" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1011 -msgid "Product does not exist" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1110 -msgid "Product no longer exists" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1209 -#, php-format -msgid "Sales for %s:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1213 -#: admin/woocommerce-admin-reports.php:2351 -msgid "Month" -msgstr "Maand" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1235 -msgid "No sales :(" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1245 -#: admin/post-types/writepanels/writepanel-coupon_data.php:75 -#: admin/post-types/writepanels/writepanel-order_data.php:400 -#: admin/post-types/writepanels/writepanel-product_data.php:550 -#: admin/post-types/writepanels/writepanel-product_data.php:567 -msgid "Search for a product…" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1378 -msgid "Total orders containing coupons" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1384 -msgid "Percent of orders containing coupons" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1390 -msgid "Total coupon discount" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1399 -msgid "Most popular coupons" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1409 -#, php-format -msgid "Used 1 time" -msgid_plural "Used %d times" -msgstr[0] "" -msgstr[1] "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1412 -#: admin/woocommerce-admin-reports.php:1434 -msgid "No coupons found" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1421 -msgid "Greatest discount amount" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1431 -#, php-format -msgid "Discounted %s" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1490 -#: admin/woocommerce-admin-reports.php:2469 -msgid "Show:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1547 -#: includes/class-wc-post-types.php:329 templates/cart/cart.php:119 -msgid "Coupon" -msgstr "Kortingsbon" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1562 -#: admin/woocommerce-admin-reports.php:1615 -#: admin/woocommerce-admin-reports.php:2386 -#: admin/woocommerce-admin-reports.php:2555 -#: admin/woocommerce-admin-reports.php:2633 -#: admin/post-types/writepanels/order-fee-html.php:43 -#: admin/post-types/writepanels/order-item-html.php:115 -#: templates/cart/cart.php:30 templates/checkout/review-order.php:22 -#: templates/myaccount/my-orders.php:35 templates/order/order-details.php:21 -msgid "Total" -msgstr "Totaal" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1630 -msgid "Top coupon" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1638 -msgid "Worst coupon" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1646 -msgid "Discount average" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1654 -msgid "Discount median" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1658 -#: admin/woocommerce-admin-reports.php:2671 -#: admin/woocommerce-admin-reports.php:2680 -#: admin/post-types/writepanels/order-fee-html.php:19 -#: admin/post-types/writepanels/order-tax-html.php:8 -#: admin/post-types/writepanels/writepanel-order_data.php:561 -#: admin/post-types/writepanels/writepanel-order_data.php:666 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:499 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:500 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:110 -#: templates/order/order-details.php:123 templates/order/order-details.php:138 -msgid "N/A" -msgstr "N.B." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1674 -msgid "Monthly discounts by coupon" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1824 -msgid "Total customers" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1830 -msgid "Total customer sales" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1836 -msgid "Total guest sales" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1842 -msgid "Total customer orders" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1848 -msgid "Total guest orders" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1854 -msgid "Average orders per customer" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1862 -msgid "Signups per day" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2083 -msgid "Low stock" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2099 -#: admin/woocommerce-admin-reports.php:2135 admin/post-types/product.php:91 -#: admin/post-types/product.php:556 -#: admin/post-types/writepanels/variation-admin-html.php:52 -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "SKU" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2106 -#: admin/woocommerce-admin-reports.php:2145 -#, php-format -msgid "%d in stock" -msgid_plural "%d in stock" -msgstr[0] "" -msgstr[1] "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2111 -msgid "No products are low in stock." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2119 admin/post-types/product.php:264 -#: admin/post-types/product.php:641 admin/post-types/product.php:930 -#: admin/post-types/writepanels/writepanel-product_data.php:259 -#: includes/abstracts/abstract-wc-product.php:576 -#: includes/abstracts/abstract-wc-product.php:586 -#: includes/abstracts/abstract-wc-product.php:590 -msgid "Out of stock" -msgstr "Uitverkocht" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2143 -msgid "Marked out of stock" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2150 -msgid "No products are out in stock." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2314 -msgid "Total taxes for year" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2325 -msgid "Total product taxes for year" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2336 -msgid "Total shipping tax for year" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2352 -msgid "Total Sales" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2352 -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2353 -msgid "Total Shipping" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2353 -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2354 -msgid "Total Product Taxes" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2354 -msgid "This is the sum of the 'Cart Tax' field within your orders." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2355 -msgid "Total Shipping Taxes" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2355 -msgid "This is the sum of the 'Shipping Tax' field within your orders." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2356 -msgid "Total Taxes" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2356 -msgid "" -"This is the sum of the 'Cart Tax' and 'Shipping Tax' fields within your " -"orders." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2357 -msgid "Net profit" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2357 -msgid "Total sales minus shipping and tax." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2402 -msgid "Toggle tax rows" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2545 -msgid "Category" -msgstr "Categorie" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2648 -msgid "Top category" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2657 -msgid "Worst category" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2665 -msgid "Category sales average" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2676 -msgid "Category sales median" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2696 -msgid "Monthly sales by category" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:45 -msgid "Action failed. Please refresh the page and retry." -msgstr "Actie niet gelukt. Ververs de pagina en probeer opnieuw." - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:164 -msgid "Your settings have been saved." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:188 -#: admin/woocommerce-admin-settings.php:329 -#: admin/settings/settings-init.php:841 -msgid "Payment Gateways" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:210 -#, php-format -msgid "" -"More functionality and gateway options available via WC official extensions." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:222 -#: admin/settings/settings-init.php:859 -msgid "Tax Options" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:228 -msgid "Tax Rates" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:255 -msgid "Email Options" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:292 -#: admin/settings/settings-init.php:758 -msgid "Shipping Options" -msgstr "Verzendingsopties" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:388 -#: templates/myaccount/form-edit-account.php:41 -msgid "Save changes" -msgstr "Wijzigingen opslaan" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:429 -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:810 admin/post-types/product.php:601 -#: admin/post-types/product.php:879 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:89 -#: admin/post-types/writepanels/writepanel-product_data.php:314 -msgid "Width" -msgstr "Breedte" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:812 admin/post-types/product.php:602 -#: admin/post-types/product.php:880 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:90 -#: admin/post-types/writepanels/writepanel-product_data.php:315 -msgid "Height" -msgstr "Hoogte" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:814 -msgid "Hard Crop" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:839 -msgid "Select a page…" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:862 -msgid "Choose a country…" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:882 -msgid "Choose countries…" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:888 -#: admin/post-types/writepanels/writepanel-product_data.php:425 -msgid "Select all" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:888 -#: admin/post-types/writepanels/writepanel-product_data.php:425 -msgid "Select none" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:27 -#: admin/woocommerce-admin-status.php:688 -msgid "Tools" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:62 -msgid "Please include this information when requesting support:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:63 -msgid "Download System Report File" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:71 -msgid "Environment" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:77 -msgid "Home URL" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:81 -msgid "Site URL" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:85 -msgid "WC Version" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:89 -msgid "WC Database Version" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:93 -msgid "WP Version" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:97 -msgid "Web Server Info" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:101 -msgid "PHP Version" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:105 -msgid "MySQL Version" -msgstr "MySQL-versie" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:109 -msgid "WP Memory Limit" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:114 -#, php-format -msgid "" -"%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:121 -msgid "WP Debug Mode" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:143 -#: admin/woocommerce-admin-status.php:296 admin/post-types/product.php:911 -#: admin/post-types/product.php:947 admin/post-types/shop_order.php:190 -msgid "Yes" -msgstr "Ja" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:143 -#: admin/woocommerce-admin-status.php:296 admin/post-types/product.php:912 -#: admin/post-types/product.php:948 admin/post-types/shop_order.php:192 -msgid "No" -msgstr "Nee" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:125 -msgid "WP Max Upload Size" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:130 -msgid "PHP Post Max Size" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:134 -msgid "PHP Time Limit" -msgstr "" - -#: admin/woocommerce-admin-status.php:138 -msgid "PHP Max Input Vars" -msgstr "" - -#: admin/woocommerce-admin-status.php:142 -msgid "SUHOSIN Installed" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:147 -msgid "WC Logging" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:150 -msgid "Log directory is writable." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:152 -msgid "" -"Log directory (woocommerce/logs/) is not writable. Logging will " -"not be possible." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:159 -msgid "fsockopen/cURL" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:162 -msgid "Your server has fsockopen and cURL enabled." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:164 -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:166 -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:170 -msgid "" -"Your server does not have fsockopen or cURL enabled - PayPal IPN and other " -"scripts which communicate with other servers will not work. Contact your " -"hosting provider." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:175 -msgid "SOAP Client" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:177 -msgid "Your server has the SOAP Client class enabled." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:180 -#, php-format -msgid "" -"Your server does not have the SOAP Client class enabled - " -"some gateway plugins which use SOAP may not work as expected." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:185 -msgid "WP Remote Post" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:196 -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:199 -msgid "" -"wp_remote_post() failed. PayPal IPN won't work with your server. Contact " -"your hosting provider. Error:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:202 -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:225 -msgid "Plugins" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:231 -msgid "Installed Plugins" -msgstr "" - -#: admin/woocommerce-admin-status.php:269 -msgid "is available" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:272 -msgid "by" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:272 -msgid "version" -msgstr "versie" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:295 -msgid "Force SSL" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:302 -msgid "WC Pages" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:309 -msgid "Shop Base" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:325 -#: assets/js/admin/editor_plugin_lang.php:19 -msgid "Edit Address" -msgstr "Wijzig adres" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:349 -msgid "Page not set" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:359 -msgid "Page does not exist" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:364 -#, php-format -msgid "Page does not contain the shortcode: %s" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:383 -msgid "WC Taxonomies" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:389 -msgid "Order Statuses" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:399 -msgid "Product Types" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:412 -msgid "Templates" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:418 -msgid "Template Overrides" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:436 -msgid "No core overrides present in theme." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:561 -msgid "WC Transients" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:562 -msgid "Clear transients" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:563 -msgid "This tool will clear the product/shop transients cache." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:566 -msgid "Expired Transients" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:567 -msgid "Clear expired transients" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:568 -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:571 -msgid "Term counts" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:572 -msgid "Recount terms" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:573 -msgid "" -"This tool will recount product terms - useful when changing your settings in " -"a way which hides products from the catalog." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:576 -msgid "Capabilities" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:577 -msgid "Reset capabilities" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:578 -msgid "" -"This tool will reset the admin, customer and shop_manager roles to default. " -"Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:581 -#, fuzzy -msgid "Customer Sessions" -msgstr "Klantinfo" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:582 -#, fuzzy -msgid "Clear all sessions" -msgstr "Reset selectie" - -#: admin/woocommerce-admin-status.php:583 -msgid "" -"Warning This tool will delete all customer " -"session data from the database, including any current live carts." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:593 -msgid "Product Transients Cleared" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:634 -#, php-format -msgid "%d Transients Rows Cleared" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:642 -msgid "Roles successfully reset" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:654 -msgid "Terms successfully recounted" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:673 -#, php-format -msgid "There was an error calling %s::%s" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:676 -#, php-format -msgid "There was an error calling %s" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:25 -#: admin/woocommerce-admin-taxonomies.php:118 -#: includes/widgets/class-wc-widget-layered-nav.php:85 -msgid "Display type" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:28 -#: admin/woocommerce-admin-taxonomies.php:122 -#: admin/post-types/writepanels/writepanel-coupon_data.php:74 -#: includes/class-wc-post-types.php:238 -#: includes/integrations/google-analytics/class-wc-google-analytics.php:273 -#: includes/integrations/google-analytics/class-wc-google-analytics.php:293 -#: includes/widgets/class-wc-widget-products.php:27 -msgid "Products" -msgstr "Producten" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:29 -#: admin/woocommerce-admin-taxonomies.php:123 -msgid "Subcategories" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:30 -#: admin/woocommerce-admin-taxonomies.php:124 -msgid "Both" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:34 -#: admin/woocommerce-admin-taxonomies.php:129 -msgid "Thumbnail" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:38 -#: admin/woocommerce-admin-taxonomies.php:134 -msgid "Upload/Add image" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:39 -#: admin/woocommerce-admin-taxonomies.php:135 -msgid "Remove image" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:62 -#: admin/woocommerce-admin-taxonomies.php:154 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:585 -msgid "Choose an image" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:64 -#: admin/woocommerce-admin-taxonomies.php:156 -msgid "Use image" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:222 -msgid "" -"Product categories for your store can be managed here. To change the order " -"of categories on the front-end you can drag and drop to sort them. To see " -"more categories listed click the \"screen options\" link at the top of the " -"page." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:237 -msgid "" -"Shipping classes can be used to group products of similar type. These groups " -"can then be used by certain shipping methods to provide different rates to " -"different products." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:297 admin/post-types/product.php:86 -msgid "Image" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:365 -#, fuzzy -msgid "Edit Class" -msgstr "Verzendingsklasse bewerken" - -# @ woocommerce -#: admin/importers/importers-init.php:13 -msgid "WooCommerce Tax Rates (CSV)" -msgstr "" - -# @ woocommerce -#: admin/importers/importers-init.php:13 -msgid "Import tax rates to your store via a csv file." -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:103 -#: admin/importers/tax-rates-importer.php:188 -#: admin/importers/tax-rates-importer.php:228 -#: admin/importers/tax-rates-importer.php:243 -msgid "Sorry, there has been an error." -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:104 -msgid "The file does not exist, please try again." -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:189 -msgid "The CSV is invalid." -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:200 -#, php-format -msgid "" -"Import complete - imported %s tax rates and skipped " -"%s." -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:210 -msgid "All done!" -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:210 -msgid "View Tax Rates" -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:261 -msgid "Import Tax Rates" -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:284 -msgid "" -"Hi there! Upload a CSV file containing tax rates to import the contents into " -"your shop. Choose a .csv file to upload, then click \"Upload file and import" -"\"." -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:286 -#, php-format -msgid "" -"Tax rates need to be defined with columns in a specific order (10 columns). " -"Click here to download a sample." -msgstr "" - -# @ default -#: admin/importers/tax-rates-importer.php:294 -msgid "" -"Before you can upload your import file, you will need to fix the following " -"error:" -msgstr "" - -# @ default -#: admin/importers/tax-rates-importer.php:303 -msgid "Choose a file from your computer:" -msgstr "" - -# @ default -#: admin/importers/tax-rates-importer.php:309 -#, php-format -msgid "Maximum size: %s" -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:314 -msgid "OR enter path to file:" -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:321 -msgid "Delimiter" -msgstr "" - -# @ woocommerce -#: admin/includes/duplicate_product.php:23 -msgid "No product to duplicate has been supplied!" -msgstr "" - -# @ woocommerce -#: admin/includes/duplicate_product.php:43 -msgid "Product creation failed, could not find original product:" -msgstr "" - -# @ woocommerce -#: admin/includes/duplicate_product.php:90 -msgid "(Copy)" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-install.php:6 -msgid "" -"Welcome to WooCommerce – You're almost ready to start " -"selling :)" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-install.php:7 -msgid "Install WooCommerce Pages" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-install.php:7 -msgid "Skip setup" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-theme-support.php:6 -msgid "" -"Your theme does not declare WooCommerce support – if " -"you encounter layout issues please read our integration guide or choose a " -"WooCommerce theme :)" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-theme-support.php:7 -msgid "Theme Integration Guide" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-theme-support.php:7 -msgid "Hide this notice" -msgstr "" - -#: admin/includes/notice-update.php:6 -msgid "" -"WooCommerce Data Update Required – We just need to " -"update your install to the latest version" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-update.php:7 -msgid "Run the updater" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-update.php:12 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:48 -msgid "Welcome to WooCommerce" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:135 -#, php-format -msgid "Welcome to WooCommerce %s" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:140 -msgid "Thanks, all done!" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:142 -msgid "Thank you for updating to the latest version!" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:144 -msgid "Thanks for installing!" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:146 -#, php-format -msgid "" -"%s WooCommerce %s is more powerful, stable, and secure than ever before. We " -"hope you enjoy it." -msgstr "" - -# @ default -#: admin/includes/welcome.php:150 -#, php-format -msgid "Version %s" -msgstr "Versie %s" - -# @ woocommerce -#: admin/includes/welcome.php:161 -msgid "What's New" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:163 -msgid "Credits" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:186 -msgid "Security in mind" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:190 -msgid "Sucuri Safe Plugin" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:191 -msgid "" -"You will be happy to learn that WooCommerce has been audited and certified " -"by the Sucuri Security team. Whilst there is not much to be seen visually to " -"understand the amount of work that went into this audit, rest assured that " -"your website is powered by one of the most powerful and stable eCommerce " -"plugins available." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:194 -msgid "A Smoother Admin Experience" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:200 -msgid "New Product Panel" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:201 -msgid "" -"We have revised the product data panel making it cleaner, more streamlined, " -"and more logical. Adding products is a breeze!" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:206 -msgid "Nicer Order Screens" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:207 -msgid "" -"Order pages have had a cleanup, with a more easily scannable interface. We " -"particularly like the new status icons!" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:212 -msgid "Multi-Download Support" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:213 -msgid "" -"Products can have multiple downloadable files - purchasers will get access " -"to all the files added." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:218 -msgid "Less Taxing Taxes" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:224 -msgid "New Tax Input Panel" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:225 -msgid "" -"The tax input pages have been streamlined to make inputting taxes simpler - " -"adding multiple taxes for a single jurisdiction is now much easier using the " -"priority system. There is also CSV import/export support." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:229 -msgid "Improved Tax Options" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:230 -msgid "" -"As requested by some users, we now support taxing the billing address " -"instead of shipping (optional), and we allow you to choose which tax class " -"applies to shipping." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:235 -msgid "Product Listing Improvements Customers Will Love" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:241 -msgid "New Sorting Options" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:242 -msgid "Customers can now sort products by popularity and ratings." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:247 -msgid "Better Pagination and Result Counts" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:248 -msgid "" -"Numbered pagination has been added to core, and we show the number of " -"results found above the listings." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:253 -msgid "Inline Star Rating Display" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:254 -msgid "" -"We have added star ratings to the catalog which are pulled from reviews." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:262 -msgid "Under the Hood" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:266 -msgid "New product classes" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:267 -msgid "" -"The product classes have been rewritten and are now factory based. Much more " -"extendable, and easier to query products using the new get_product() function." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:271 -msgid "Capability overhaul" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:272 -msgid "" -"More granular capabilities for admin/shop manager roles covering products, " -"orders and coupons." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:276 -msgid "API Improvements" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:277 -msgid "" -"WC-API now has real endpoints, and we've optimised the gateways " -"API significantly by only loading gateways when needed." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:283 -msgid "Cache-friendly cart widgets" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:284 -msgid "" -"Cart widgets and other \"fragments\" are now pulled in via AJAX - this works " -"wonders with static page caching." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:288 -msgid "Session handling" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:289 -msgid "" -"PHP SESSIONS have been a problem for many users in the past, so we've " -"developed our own handler using cookies and options to make these more " -"reliable." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:293 -msgid "Retina Ready" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:294 -msgid "All graphics within WC have been optimised for HiDPI displays." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:301 -msgid "Better stock handling" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:302 -msgid "" -"We have added an option to hold stock for unpaid orders (defaults to " -"60mins). When this time limit is reached, and the order is not paid for, " -"stock is released and the order is cancelled." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:306 -msgid "Improved Line-item storage" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:307 -msgid "" -"We have changed how order items get stored making them easier (and faster) " -"to access for reporting. Order items are no longer serialised within an " -"order - they are stored within their own table." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:311 -msgid "Autoload" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:312 -msgid "" -"We have setup autoloading for classes - this has dramatically reduced memory " -"usage in 2.0." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:319 -msgid "Go to WooCommerce Settings" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:337 -msgid "" -"WooCommerce is developed and maintained by a worldwide team of passionate " -"individuals and backed by an awesome developer community. Want to see your " -"name? Contribute to WooCommerce." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:363 -#, php-format -msgid "View %s" -msgstr "" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:58 -#: includes/class-wc-post-types.php:232 -msgctxt "slug" -msgid "product" -msgstr "product" - -# @ woocommerce -#: admin/post-types/product.php:31 -msgid "Make a duplicate from this product" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:32 -msgid "Duplicate" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:61 -msgid "Copy to a new draft" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:98 -msgid "Categories" -msgstr "Categorieën" - -# @ woocommerce -#: admin/post-types/product.php:99 -msgid "Tags" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:102 admin/post-types/shop_order.php:50 -#: includes/widgets/class-wc-widget-products.php:53 -#: templates/myaccount/my-orders.php:33 -msgid "Date" -msgstr "Datum" - -# @ default -#: admin/post-types/product.php:151 -msgid "Edit this item" -msgstr "" - -# @ default -#: admin/post-types/product.php:152 -msgid "Edit this item inline" -msgstr "" - -# @ default -#: admin/post-types/product.php:152 -msgid "Quick Edit" -msgstr "" - -# @ default -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore this item from the Trash" -msgstr "" - -# @ default -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore" -msgstr "" - -# @ default -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Move this item to the Trash" -msgstr "" - -# @ default -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Trash" -msgstr "" - -# @ default -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -msgid "Delete this item permanently" -msgstr "" - -# @ default -# @ woocommerce -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -#: admin/post-types/writepanels/writepanel-order_data.php:463 -msgid "Delete Permanently" -msgstr "" - -# @ default -#: admin/post-types/product.php:165 -#, php-format -msgid "Preview “%s”" -msgstr "" - -# @ default -#: admin/post-types/product.php:165 -msgid "Preview" -msgstr "" - -# @ default -#: admin/post-types/product.php:167 -#, php-format -msgid "View “%s”" -msgstr "" - -# @ default -# @ woocommerce -#: admin/post-types/product.php:167 admin/post-types/shop_order.php:171 -#: templates/myaccount/my-orders.php:82 -msgid "View" -msgstr "Bekijk" - -# @ woocommerce -#: admin/post-types/product.php:214 -msgid "Grouped" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:216 -msgid "External/Affiliate" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:220 admin/post-types/product.php:407 -#: admin/post-types/writepanels/variation-admin-html.php:176 -#: admin/post-types/writepanels/writepanel-product_data.php:52 -msgid "Virtual" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:222 admin/post-types/product.php:403 -#: admin/post-types/writepanels/variation-admin-html.php:174 -#: admin/post-types/writepanels/writepanel-product_data.php:58 -msgid "Downloadable" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:224 -msgid "Simple" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:228 admin/post-types/product.php:387 -msgid "Variable" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:251 -msgid "Toggle featured" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:253 -msgid "yes" -msgstr "ja" - -# @ woocommerce -#: admin/post-types/product.php:255 -msgid "no" -msgstr "nee" - -# @ woocommerce -#: admin/post-types/product.php:262 admin/post-types/product.php:640 -#: admin/post-types/product.php:929 -#: admin/post-types/writepanels/writepanel-product_data.php:258 -#: includes/abstracts/abstract-wc-product.php:549 -#: includes/abstracts/abstract-wc-product.php:554 -#: includes/abstracts/abstract-wc-product.php:573 -msgid "In stock" -msgstr "Op voorraad" - -# @ woocommerce -#: admin/post-types/product.php:373 -msgid "Show all product types" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:381 -#: admin/post-types/writepanels/writepanel-product_data.php:39 -msgid "Grouped product" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:383 -#: admin/post-types/writepanels/writepanel-product_data.php:40 -msgid "External/Affiliate product" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:385 -#: admin/post-types/writepanels/writepanel-product_data.php:38 -msgid "Simple product" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:399 -msgid "Show all sub-types" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:519 -#, php-format -msgid "[%s with SKU of %s]" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:525 -#, php-format -msgid "[%s with ID of %d]" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:551 admin/post-types/product.php:782 -#: admin/post-types/writepanels/writepanels-init.php:46 -#: admin/settings/settings-init.php:434 -msgid "Product Data" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:569 -msgid "Regular price" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:574 admin/post-types/product.php:812 -msgid "Sale" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:576 -msgid "Sale price" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:587 admin/post-types/product.php:838 -#: admin/post-types/writepanels/variation-admin-html.php:96 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:87 -#: admin/post-types/writepanels/writepanel-product_data.php:300 -#: templates/single-product/product-attributes.php:28 -msgid "Weight" -msgstr "Gewicht" - -# @ woocommerce -#: admin/post-types/product.php:598 admin/post-types/product.php:862 -msgid "L/W/H" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:600 admin/post-types/product.php:878 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:313 -msgid "Length" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:612 admin/post-types/product.php:886 -msgid "Visibility" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:617 admin/post-types/product.php:892 -msgid "Catalog & search" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:619 admin/post-types/product.php:894 -#: admin/post-types/writepanels/writepanel-product_data.php:1078 -msgid "Search" -msgstr "Zoeken" - -# @ woocommerce -#: admin/post-types/product.php:620 admin/post-types/product.php:895 -#: admin/post-types/writepanels/writepanel-product_data.php:1079 -msgid "Hidden" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:635 admin/post-types/product.php:923 -msgid "In stock?" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:656 admin/post-types/product.php:941 -#: admin/post-types/writepanels/writepanel-product_data.php:239 -msgid "Manage stock?" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:660 admin/post-types/product.php:960 -#: admin/post-types/product.php:976 -#: admin/post-types/writepanels/writepanel-product_data.php:246 -msgid "Stock Qty" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:793 admin/post-types/product.php:817 -#: admin/post-types/product.php:843 admin/post-types/product.php:867 -#: admin/post-types/product.php:891 admin/post-types/product.php:910 -#: admin/post-types/product.php:928 admin/post-types/product.php:946 -#: admin/post-types/product.php:965 -msgid "— No Change —" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:794 admin/post-types/product.php:818 -#: admin/post-types/product.php:844 admin/post-types/product.php:868 -#: admin/post-types/product.php:966 -msgid "Change to:" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:795 admin/post-types/product.php:819 -msgid "Increase by (fixed amount or %):" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:796 admin/post-types/product.php:820 -msgid "Decrease by (fixed amount or %):" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:806 admin/post-types/product.php:831 -msgid "Enter price" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:821 -msgid "Decrease regular price by (fixed amount or %):" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:1182 -msgid "Sort Products" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:1221 -msgid "Insert into product" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:1222 -msgid "Uploaded to this product" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:25 -msgid "Code" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:26 -msgid "Coupon type" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:27 -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Coupon amount" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:29 -msgid "Product IDs" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:30 -msgid "Usage / Limit" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:31 -#: admin/post-types/writepanels/writepanel-coupon_data.php:156 -msgid "Expiry date" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:56 -msgid "Edit coupon" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:114 -#, php-format -msgid "%s / %s" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:116 -#, php-format -msgid "%s / ∞" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:149 -#, fuzzy -msgid "Show all types" -msgstr "Alle %d resultaten worden getoond" - -# @ woocommerce -#: admin/post-types/shop_order.php:43 -#: admin/settings/settings-payment-gateways.php:31 -#: admin/settings/settings-shipping-methods.php:31 -#: templates/myaccount/my-orders.php:34 -msgid "Status" -msgstr "Status" - -# @ woocommerce -#: admin/post-types/shop_order.php:44 includes/class-wc-post-types.php:292 -#: includes/widgets/class-wc-widget-products.php:62 -#: templates/myaccount/my-orders.php:32 -msgid "Order" -msgstr "Bestelling" - -# @ woocommerce -#: admin/post-types/shop_order.php:45 -msgid "Billing" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:47 templates/cart/totals.php:92 -#: templates/checkout/review-order.php:91 -msgid "Order Total" -msgstr "Totaal van de bestelling" - -# @ woocommerce -#: admin/post-types/shop_order.php:48 -#: admin/post-types/writepanels/writepanels-init.php:71 -#: includes/class-wc-checkout.php:77 -msgid "Order Notes" -msgstr "Opmerkingen bij bestelling" - -# @ woocommerce -#: admin/post-types/shop_order.php:49 -msgid "Customer Notes" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:98 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:322 -#, php-format -msgid "Order %s" -msgstr "Bestelling %s" - -# @ woocommerce -#: admin/post-types/shop_order.php:98 -msgid "made by" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:101 templates/emails/admin-new-order.php:53 -#: templates/emails/customer-completed-order.php:54 -#: templates/emails/customer-note.php:58 -#: templates/emails/customer-processing-order.php:54 -#: templates/emails/plain/admin-new-order.php:41 -#: templates/emails/plain/customer-completed-order.php:41 -#: templates/emails/plain/customer-note.php:49 -#: templates/emails/plain/customer-processing-order.php:41 -#: templates/order/order-details.php:105 -msgid "Email:" -msgstr "E-mail:" - -# @ woocommerce -#: admin/post-types/shop_order.php:104 templates/emails/admin-new-order.php:56 -#: templates/emails/customer-completed-order.php:57 -#: templates/emails/customer-note.php:61 -#: templates/emails/customer-processing-order.php:57 -#: templates/emails/plain/admin-new-order.php:44 -#: templates/emails/plain/customer-completed-order.php:44 -#: templates/emails/plain/customer-note.php:52 -#: templates/emails/plain/customer-processing-order.php:44 -msgid "Tel:" -msgstr "Tel:" - -# @ woocommerce -#: admin/post-types/shop_order.php:114 admin/post-types/shop_order.php:123 -msgid "Via" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:131 -msgid "Unpublished" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:133 -msgid "Y/m/d g:i:s A" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:139 -#, php-format -msgid "%s ago" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:141 -msgid "Y/m/d" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:165 -msgid "Complete" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:282 -msgid "Show all statuses" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:301 admin/post-types/shop_order.php:326 -msgid "Show all customers" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:6 -msgid "Revoke Access" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:9 -#, php-format -msgid "File %d: %s" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:9 -#, php-format -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "" -msgstr[1] "" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:16 -msgid "Downloads Remaining" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:19 -#: admin/post-types/writepanels/variation-admin-html.php:151 -#: admin/post-types/writepanels/variation-admin-html.php:159 -#: admin/post-types/writepanels/writepanel-product_data.php:185 -msgid "Unlimited" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:22 -msgid "Access Expires" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:23 -#: admin/post-types/writepanels/writepanel-product_data.php:191 -msgid "Never" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:10 -msgid "Fee Name" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:17 -#: admin/post-types/writepanels/order-item-html.php:89 -msgid "Tax class" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:20 -#: admin/post-types/writepanels/writepanel-product_data.php:206 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:111 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:85 -msgid "Taxable" -msgstr "Belastbaar" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:10 -msgid "Product ID:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:13 -msgid "Variation ID:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:16 -msgid "Product SKU:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:44 -msgid "Add meta" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:117 -#: templates/cart/mini-cart.php:59 -msgid "Subtotal" -msgstr "subtotaal" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:6 -msgid "Tax Rate:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:16 -#: admin/post-types/writepanels/writepanel-order_data.php:630 -msgid "Sales Tax:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:20 -#: admin/post-types/writepanels/writepanel-order_data.php:638 -msgid "Shipping Tax:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:20 -msgid "Any" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:52 -msgid "" -"Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:63 -msgid "Stock Qty:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:63 -msgid "" -"Enter a quantity to enable stock management at variation level, or leave " -"blank to use the parent product's options." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:72 -msgid "Regular Price:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:73 -msgid "Variation price (required)" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:76 -msgid "Sale Price:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:76 -#: admin/post-types/writepanels/writepanel-product_data.php:152 -msgid "Schedule" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:76 -msgid "Cancel schedule" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:83 -msgid "Sale start date:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:163 -msgctxt "placeholder" -msgid "From…" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:87 -msgid "Sale end date:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgctxt "placeholder" -msgid "To…" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:96 -msgid "" -"Enter a weight for this variation or leave blank to use the parent product " -"weight." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:104 -msgid "Dimensions (L×W×H)" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:115 -msgid "Shipping class:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:130 -msgid "Tax class:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:143 -msgid "File paths:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:143 -msgid "" -"Enter one or more File Paths, one per line, to make this variation a " -"downloadable product, or leave blank." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:144 -#: admin/post-types/writepanels/writepanel-product_data.php:180 -msgid "File paths/URLs, one per line" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:145 -#: admin/post-types/writepanels/writepanel-product_data.php:181 -msgid "Choose a file" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:145 -msgid "Upload" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:145 -#: admin/post-types/writepanels/writepanel-product_data.php:181 -msgid "Insert file URL" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:150 -msgid "Download Limit:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:150 -#: admin/post-types/writepanels/writepanel-product_data.php:185 -msgid "Leave blank for unlimited re-downloads." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:158 -msgid "Download Expiry:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:158 -#: admin/post-types/writepanels/writepanel-product_data.php:191 -msgid "" -"Enter the number of days before a download link expires, or leave blank." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:172 -msgid "Enabled" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:174 -msgid "" -"Enable this option if access is given to a downloadable file upon purchase " -"of a product" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:176 -msgid "" -"Enable this option if a product is not shipped or there is no shipping cost" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Coupon description" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Optionally enter a description for this coupon for your reference." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:42 -msgid "Discount type" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Value of the coupon." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "Enable free shipping" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -#, php-format -msgid "" -"Check this box if the coupon grants free shipping. The free " -"shipping method must be enabled with the \"must use coupon\" setting " -"checked." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "Individual use" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "" -"Check this box if the coupon cannot be used in conjunction with other " -"coupons." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "Apply before tax" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "" -"Check this box if the coupon should be applied before calculating cart tax." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "Exclude sale items" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "" -"Check this box if the coupon should not apply to items on sale. Per-item " -"coupons will only work if the item is not on sale. Per-cart coupons will " -"only work if there are no sale items in the cart." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "Minimum amount" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "No minimum" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "" -"This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:88 -msgid "" -"Products which need to be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are discounted." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:93 -msgid "Exclude products" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:94 -msgid "Search for a product…" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:107 -msgid "" -"Products which must not be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are not discounted." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:114 -#: assets/js/admin/editor_plugin_lang.php:9 -msgid "Product categories" -msgstr "Productcategorieën" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:115 -msgid "Any category" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:123 -msgid "" -"A product must be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will be discounted." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:128 -msgid "Exclude categories" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:129 -msgid "No categories" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:137 -msgid "" -"Product must not be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will not be discounted." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:143 -#, fuzzy -msgid "Email restrictions" -msgstr "E-mailadres" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:143 -#, fuzzy -msgid "No restrictions" -msgstr "Instructies" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:143 -msgid "" -"List of emails to check against the customer's billing email when an order " -"is placed." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:150 -msgid "Usage limit" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:150 -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:150 -msgid "How many times this coupon can be used before it is void." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:156 -msgctxt "placeholder" -msgid "Never expire" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:156 -msgid "The date this coupon will expire, YYYY-MM-DD." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:193 -msgid "" -"Coupon code already exists - customers will use the latest coupon with this " -"code." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:59 -#: templates/order/order-details.php:16 -msgid "Order Details" -msgstr "Bestellingsinfo" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:62 -msgid "Order number" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:67 -msgid "Customer IP:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:74 -msgid "General Details" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:76 -msgid "Order status:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:86 -msgid "Order Date:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:87 -msgid "h" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#: admin/settings/settings-init.php:493 -msgid "m" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:91 -msgid "Customer:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:131 -msgid "Customer Note:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:132 -msgid "Customer's notes about the order" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:140 -msgid "Billing Details" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:144 -#: admin/post-types/writepanels/writepanel-order_data.php:234 -#: includes/class-wc-countries.php:683 -msgid "First Name" -msgstr "Voornaam" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:148 -#: admin/post-types/writepanels/writepanel-order_data.php:238 -#: includes/class-wc-countries.php:688 -msgid "Last Name" -msgstr "Achternaam" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:185 -#: includes/class-wc-countries.php:1087 -msgid "Phone" -msgstr "Telefoon" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:193 -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#: admin/post-types/writepanels/writepanel-order_data.php:277 -#: admin/post-types/writepanels/writepanel-order_data.php:279 -#: includes/class-wc-countries.php:698 -msgid "Address" -msgstr "Adres" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:195 -msgid "No billing address set." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:208 -msgid "Load billing address" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:230 -msgid "Shipping Details" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "No shipping address set." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Load shipping address" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Copy from billing" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:339 -msgid "Item" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#: admin/post-types/writepanels/writepanel-product_data.php:218 -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Class" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:344 -msgid "Tax class for the line item" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:347 -#: templates/checkout/form-pay.php:20 -msgid "Qty" -msgstr "Aantal" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:349 -#: templates/checkout/form-pay.php:21 -msgid "Totals" -msgstr "Totalen" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:349 -msgid "Line subtotals are before pre-tax discounts, totals are after." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:388 -msgid "Delete Lines" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:390 -msgid "Stock Actions" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:391 -msgid "Reduce Line Stock" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:392 -msgid "Increase Line Stock" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:396 -#: admin/post-types/writepanels/writepanel-order_data.php:456 -msgid "Apply" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:402 -msgid "Add item(s)" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:403 -msgid "Add fee" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:434 -msgid "Resend order emails" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:465 -msgid "Move to Trash" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save Order" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save/update the order" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:498 -msgid "Discounts" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:502 -#: includes/class-wc-order.php:955 -msgid "Cart Discount:" -msgstr "Winkelwagen korting:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:502 -msgid "Discounts before tax - calculated by comparing subtotals to totals." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:510 -#: includes/class-wc-order.php:997 -msgid "Order Discount:" -msgstr "Bestelling korting:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:510 -msgid "Discounts after tax - user defined." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:543 -msgid "Label:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:544 -msgid "The shipping title the customer sees" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:551 -msgid "Cost:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:552 -#: includes/class-wc-countries.php:470 -msgid "(ex. tax)" -msgstr "(excl. BTW)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:559 -msgid "Method:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:581 -#: admin/post-types/writepanels/writepanel-order_data.php:583 -#: admin/post-types/writepanels/writepanel-order_data.php:682 -#: admin/post-types/writepanels/writepanel-order_data.php:684 -msgid "Other" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:597 -msgid "Tax Rows" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:622 -msgid "+ Add tax row" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:622 -msgid "" -"These rows contain taxes for this order. This allows you to display multiple " -"or compound taxes rather than a single total." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:626 -msgid "Tax Totals" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:630 -msgid "Total tax for line items + fees." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:652 -#: admin/post-types/writepanels/writepanels-init.php:70 -msgid "Order Totals" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:656 -#: includes/class-wc-order.php:1002 -msgid "Order Total:" -msgstr "Bestellingstotaal:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:664 -msgid "Payment Method:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:695 -msgid "Calc taxes" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:697 -msgid "Calc totals" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:57 -msgid "Choose a downloadable product…" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:86 -msgid "Grant Access" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:124 -msgid "" -"Could not grant access - the user may already have permission for this file " -"or billing email is not set. Ensure the billing email is set, and the order " -"has been saved." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:147 -msgid "Are you sure you want to revoke access to this download?" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -#, php-format -msgid "added %s ago" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:50 -msgid "There are no notes for this order yet." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "Add note" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:62 -#: includes/emails/class-wc-email-customer-note.php:29 -msgid "Customer note" -msgstr "Klantbericht" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:63 -msgid "Private note" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:65 -#: admin/post-types/writepanels/writepanel-product_data.php:528 -msgid "Add" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations for variable products are defined here." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -#: includes/class-wc-post-types.php:273 -msgid "Variations" -msgstr "Variaties" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:64 -msgid "" -"Before adding variations, add and save some attributes on the " -"Attributes tab." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:66 -msgid "Learn more" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:73 -#: admin/post-types/writepanels/writepanel-product_data.php:356 -msgid "Close all" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:73 -#: admin/post-types/writepanels/writepanel-product_data.php:356 -msgid "Expand all" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -msgid "Bulk edit:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:76 -msgid "Toggle "Enabled"" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:77 -msgid "Toggle "Downloadable"" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:78 -msgid "Toggle "Virtual"" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:79 -msgid "Delete all variations" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:80 -msgid "Prices" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:81 -msgid "Prices increase by (fixed amount or %)" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:82 -msgid "Prices decrease by (fixed amount or %)" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:83 -msgid "Sale prices" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:84 -msgid "Sale prices increase by (fixed amount or %)" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:85 -msgid "Sale prices decrease by (fixed amount or %)" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:91 -msgid "File Path" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:92 -msgid "Download limit" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:93 -#: admin/post-types/writepanels/writepanel-product_data.php:191 -msgid "Download Expiry" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:96 -msgid "Go" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:198 -msgid "Add Variation" -msgstr "Variatie toevoegen" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:200 -msgid "Link all variations" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:202 -msgid "Default selections:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:215 -msgid "No default" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:304 -msgid "" -"Are you sure you want to link all variations? This will create a new " -"variation for each and every possible combination of variation attributes " -"(max 50 per run)." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:321 -msgid "variation added" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:323 -msgid "variations added" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:325 -msgid "No variations added" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:348 -msgid "Are you sure you want to remove this variation?" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:403 -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:406 -msgid "Last warning, are you sure?" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:442 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:458 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:474 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:490 -msgid "Enter a value (fixed or %)" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:507 -msgid "Enter a value" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:587 -msgid "Set variation image" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:631 -msgid "Variable product" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:697 -#: includes/class-wc-emails.php:289 includes/class-wc-emails.php:321 -#: includes/class-wc-emails.php:365 -#, php-format -msgid "Variation #%s of %s" -msgstr "Variatie #%s van %s" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:43 -msgid "Product Type" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:53 -msgid "Virtual products are intangible and aren't shipped." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:59 -msgid "Downloadable products give access to a file upon purchase." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:94 -msgid "Linked Products" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:104 -msgid "Advanced" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Stock Keeping Unit" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "" -"SKU refers to a Stock-keeping unit, a unique identifier for each distinct " -"product and service that can be purchased." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:136 -msgid "Product URL" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:136 -msgid "Enter the external URL to the product." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:139 -msgid "Button text" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:139 -msgctxt "placeholder" -msgid "Buy product" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:139 -msgid "This text will be shown on the button linking to the external product." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:146 -msgid "Regular Price" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:152 -msgid "Sale Price" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:162 -msgid "Sale Price Dates" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:165 -#: admin/post-types/writepanels/writepanel-product_data.php:1112 -#: templates/myaccount/my-orders.php:77 -msgid "Cancel" -msgstr "Annuleren" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:179 -msgid "File paths (one per line)" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:185 -msgid "Download Limit" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:205 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:107 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:81 -msgid "Tax Status" -msgstr "BTW-status" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:207 -msgid "Shipping only" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:208 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:112 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:86 -msgid "None" -msgstr "Geen" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:239 -msgid "Enable stock management at product level" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:246 -msgid "" -"Stock quantity. If this is a variable product this value will be used to " -"control stock for all variations, unless you define stock at variation level." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:257 -msgid "Stock status" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:260 -msgid "" -"Controls whether or not the product is listed as \"in stock\" or \"out of " -"stock\" on the frontend." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:267 -msgid "Allow Backorders?" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:268 -msgid "Do not allow" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:269 -msgid "Allow, but notify customer" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:270 -msgid "Allow" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:271 -msgid "" -"If managing stock, this controls whether or not backorders are allowed for " -"this product and variations. If enabled, stock quantity can go below 0." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:282 -msgid "Sold Individually" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:282 -msgid "" -"Enable this to only allow one of this item to be bought in a single order" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:300 -msgid "Weight in decimal form" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:311 -#: templates/single-product/product-attributes.php:37 -msgid "Dimensions" -msgstr "Afmetingen" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "LxWxH in decimal form" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:338 -msgid "No shipping class" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:344 -msgid "Shipping class" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:344 -msgid "" -"Shipping classes are used by certain shipping methods to group similar " -"products." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:413 -msgid "Select terms" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:427 -msgid "Add new" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:440 -msgid "Pipe (|) separate terms" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:530 -msgid "Custom product attribute" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:542 -msgid "Save attributes" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:549 -msgid "Up-Sells" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:564 -msgid "" -"Up-sells are products which you recommend instead of the currently viewed " -"product, for example, products that are more profitable or better quality or " -"more expensive." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:566 -msgid "Cross-Sells" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:581 -msgid "" -"Cross-sells are products which you promote in the cart, based on the current " -"product." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:591 -msgid "Choose a grouped product…" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:617 -msgid "Grouping" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:617 -msgid "Set this option to make this product part of a grouped product." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:637 -msgid "Purchase Note" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:637 -msgid "Enter an optional note to send the customer after purchase." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:644 -msgid "Menu order" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:644 -msgid "Custom ordering position." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:652 -msgid "Enable reviews" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:744 -msgid "Product SKU must be unique." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1076 -msgid "Catalog/search" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1083 -msgid "Catalog visibility:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1099 -msgid "" -"Define the loops this product should be visible in. The product will still " -"be accessible directly." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1105 -msgid "Enable this option to feature this product." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1107 -msgid "Featured Product" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1111 -msgid "OK" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:43 -#: admin/post-types/writepanels/writepanel-product_images.php:103 -msgid "Delete image" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:54 -msgid "Add product gallery images" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:80 -msgid "Add Images to Product Gallery" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:82 -msgid "Add to gallery" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:47 -msgid "Product Gallery" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:55 -msgid "Product Short Description" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:64 -#: templates/single-product-reviews.php:36 -#: templates/single-product-reviews.php:42 -msgid "Reviews" -msgstr "Reviews" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:68 -msgid "Order Data" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "Order Items" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "" -"Note: if you edit quantities or remove items from the order you will need to " -"manually update stock levels." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "Downloadable Product Permissions" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "" -"Note: Permissions for order items will automatically be granted when the " -"order status changes to processing/completed." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:73 -msgid "Order Actions" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:81 -msgid "Coupon Data" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:100 -#: templates/checkout/form-coupon.php:25 -msgid "Coupon code" -msgstr "Code kortingsbon" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:101 -msgid "Product name" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:185 -msgid "Allow reviews." -msgstr "" - -# @ default -#: admin/post-types/writepanels/writepanels-init.php:186 -#, php-format -msgid "" -"Allow trackbacks and pingbacks on this " -"page." -msgstr "" - -# @ default -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:23 -msgid "Styles" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:43 -msgid "Primary" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:43 -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:44 -msgid "Secondary" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:44 -msgid "Buttons and tabs" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:45 -msgid "Highlight" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:45 -msgid "Price labels and Sale Flashes" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:46 -msgid "Content" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:46 -msgid "Your themes page background - used for tab active states" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:47 -msgid "Subtext" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:47 -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:51 -msgid "" -"To edit colours woocommerce/assets/css/woocommerce-base.less " -"and woocommerce.css need to be writable. See the Codex for more " -"information." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:25 -msgid "General Options" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:28 -msgid "Base Location" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:29 -msgid "" -"This is the base location for your business. Tax rates will be based on this " -"country." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:38 -msgid "Currency" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:39 -msgid "" -"This controls what currency prices are listed at in the catalog and which " -"currency gateways will take payments in." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:50 -msgid "Allowed Countries" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:51 -msgid "These are countries that you are willing to ship to." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:59 -msgid "All Countries" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:60 admin/settings/settings-init.php:65 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:95 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:99 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:94 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:98 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:149 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:153 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:105 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:109 -msgid "Specific Countries" -msgstr "Specifieke landen" - -# @ woocommerce -#: admin/settings/settings-init.php:74 -msgid "Store Notice" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:75 -msgid "Enable site-wide store notice text" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:82 -msgid "Store Notice Text" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:93 -msgid "Cart, Checkout and Accounts" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:97 -msgid "Enable the use of coupons" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:101 -msgid "Coupons can be applied from the cart and checkout pages." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:107 -#, fuzzy -msgid "Enable guest checkout" -msgstr "Schakel Mijireh Checkout in" - -#: admin/settings/settings-init.php:108 -msgid "Allows customers to checkout without creating an account." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:117 -msgid "Force secure checkout" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:123 -msgid "" -"Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:127 -msgid "Un-force HTTPS when leaving the checkout" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:136 -msgid "Registration" -msgstr "" - -#: admin/settings/settings-init.php:137 -msgid "Enable registration on the \"Checkout\" page" -msgstr "" - -#: admin/settings/settings-init.php:146 -msgid "Enable registration on the \"My Account\" page" -msgstr "" - -#: admin/settings/settings-init.php:155 -msgid "Automatically generate username from customer email" -msgstr "" - -#: admin/settings/settings-init.php:164 -msgid "Automatically generate customer password" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:174 -msgid "Styles and Scripts" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:181 -msgid "Scripts" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:182 -msgid "Enable Lightbox" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:185 -msgid "" -"Include WooCommerce's lightbox. Product gallery images and the add review " -"form will open in a lightbox." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:191 -msgid "Enable enhanced country select boxes" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:196 -msgid "This will enable a script allowing the country fields to be searchable." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:202 -msgid "Downloadable Products" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:205 -msgid "File Download Method" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:206 -msgid "" -"Forcing downloads will keep URLs hidden, but some servers may serve large " -"files unreliably. If supported, X-Accel-Redirect/ X-" -"Sendfile can be used to serve downloads instead (server requires " -"mod_xsendfile)." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:214 -msgid "Force Downloads" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:215 -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:216 -msgid "Redirect only" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:222 -msgid "Access Restriction" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:223 -msgid "Downloads require login" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:227 -msgid "This setting does not apply to guest purchases." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:233 -msgid "Grant access to downloadable products after payment" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:237 -msgid "" -"Enable this option to grant access to downloads when orders are \"processing" -"\", rather than \"completed\"." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:254 -msgid "" -"Note: The shop page has children - child pages will not work if you enable " -"this option." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:259 -msgid "Page Setup" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:261 -#, php-format -msgid "" -"Set up core WooCommerce pages here, for example the base page. The base page " -"can also be used in your %sproduct permalinks%s." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:266 -msgid "Shop Base Page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:267 -msgid "" -"This sets the base page of your shop - this is where your product archive " -"will be." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:277 -msgid "Terms Page ID" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:278 -msgid "" -"If you define a \"Terms\" page the customer will be asked if they accept " -"them when checking out." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:290 -msgid "Shop Pages" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:290 -msgid "" -"The following pages need selecting so that WooCommerce knows where they are. " -"These pages should have been created upon installation of the plugin, if not " -"you will need to create them." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:293 -msgid "Cart Page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:294 -msgid "Page contents: [woocommerce_cart]" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:304 -msgid "Checkout Page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:305 -msgid "Page contents: [woocommerce_checkout]" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:315 -msgid "My Account Page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:316 -msgid "Page contents: [woocommerce_my_account]" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:326 -msgid "Edit Address Page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:327 -msgid "Page contents: [woocommerce_edit_address] Parent: \"My Account\"" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:337 -msgid "Logout Page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:338 -msgid "Parent: \"My Account\"" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:348 -msgid "Lost Password Page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:349 -msgid "Page contents: [woocommerce_lost_password] Parent: \"My Account\"" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:365 -msgid "Catalog Options" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:368 -msgid "Default Product Sorting" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:369 -msgid "This controls the default sort order of the catalog." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:375 -msgid "Default sorting (custom ordering + name)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:376 -msgid "Popularity (sales)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:377 -msgid "Average Rating" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:378 -msgid "Sort by most recent" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:379 -msgid "Sort by price (asc)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:380 -msgid "Sort by price (desc)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:386 -msgid "Shop Page Display" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:387 -msgid "This controls what is shown on the product archive." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:393 admin/settings/settings-init.php:408 -msgid "Show products" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:394 admin/settings/settings-init.php:409 -msgid "Show subcategories" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:395 admin/settings/settings-init.php:410 -msgid "Show both" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:401 -msgid "Default Category Display" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:402 -msgid "This controls what is shown on category archives." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:416 includes/class-wc-shortcodes.php:518 -#: includes/integrations/google-analytics/class-wc-google-analytics.php:274 -#: templates/loop/add-to-cart.php:46 -#: templates/single-product/add-to-cart/grouped.php:45 -#: templates/single-product/add-to-cart/grouped.php:79 -#: templates/single-product/add-to-cart/simple.php:43 -#: templates/single-product/add-to-cart/variable.php:83 -msgid "Add to cart" -msgstr "Kopen" - -# @ woocommerce -#: admin/settings/settings-init.php:417 -msgid "Redirect to the cart page after successful addition" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:425 -msgid "Enable AJAX add to cart buttons on archives" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:434 -msgid "" -"The following options affect the fields available on the edit product page." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:437 -msgid "Product Fields" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:438 -msgid "Enable the SKU field for products" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:446 -msgid "" -"Enable the weight field for products (some shipping methods " -"may require this)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:454 -msgid "" -"Enable the dimension fields for products (some shipping " -"methods may require this)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:462 -msgid "" -"Show weight and dimension values on the Additional " -"Information tab" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:470 -msgid "Weight Unit" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:471 -msgid "This controls what unit you will define weights in." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:477 -msgid "kg" -msgstr "kg" - -# @ woocommerce -#: admin/settings/settings-init.php:478 -msgid "g" -msgstr "g" - -# @ woocommerce -#: admin/settings/settings-init.php:479 -msgid "lbs" -msgstr "lbs" - -# @ woocommerce -#: admin/settings/settings-init.php:480 -msgid "oz" -msgstr "oz" - -# @ woocommerce -#: admin/settings/settings-init.php:486 -msgid "Dimensions Unit" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:487 -msgid "This controls what unit you will define lengths in." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:494 -msgid "cm" -msgstr "cm" - -# @ woocommerce -#: admin/settings/settings-init.php:495 -msgid "mm" -msgstr "mm" - -# @ woocommerce -#: admin/settings/settings-init.php:496 -msgid "in" -msgstr "in" - -# @ woocommerce -#: admin/settings/settings-init.php:497 -msgid "yd" -msgstr "yd" - -# @ woocommerce -#: admin/settings/settings-init.php:503 -msgid "Product Ratings" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:504 -msgid "Enable ratings on reviews" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:514 -msgid "Ratings are required to leave a review" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:524 -msgid "Show \"verified owner\" label for customer reviews" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:535 -msgid "Pricing Options" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:535 -msgid "The following options affect how prices are displayed on the frontend." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:538 -msgid "Currency Position" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:539 -msgid "This controls the position of the currency symbol." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:545 -msgid "Left" -msgstr "Links" - -# @ woocommerce -#: admin/settings/settings-init.php:546 -msgid "Right" -msgstr "Rechts" - -# @ woocommerce -#: admin/settings/settings-init.php:547 -msgid "Left (with space)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:548 -msgid "Right (with space)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:554 -msgid "Thousand Separator" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:555 -msgid "This sets the thousand separator of displayed prices." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:564 -msgid "Decimal Separator" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:565 -msgid "This sets the decimal separator of displayed prices." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:574 -msgid "Number of Decimals" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:575 -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:588 -msgid "Trailing Zeros" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:589 -msgid "" -"Remove zeros after the decimal point. e.g. $10.00 becomes " -"$10" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:597 -msgid "Image Options" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:597 -#, php-format -msgid "" -"These settings affect the actual dimensions of images in your catalog - the " -"display on the front-end will still be affected by CSS styles. After " -"changing these settings you may need to regenerate your " -"thumbnails." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:600 -msgid "Catalog Images" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:601 -msgid "This size is usually used in product listings" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:614 -msgid "Single Product Image" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:615 -msgid "This is the size used by the main image on the product page." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:628 -msgid "Product Thumbnails" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:629 -msgid "" -"This size is usually used for the gallery of images on the product page." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:648 -msgid "Inventory Options" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:651 -msgid "Manage Stock" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:652 -msgid "Enable stock management" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:659 -msgid "Hold Stock (minutes)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:660 -msgid "" -"Hold stock (for unpaid orders) for x minutes. When this limit is reached, " -"the pending order will be cancelled. Leave blank to disable." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:673 -msgid "Notifications" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:674 -msgid "Enable low stock notifications" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:683 -msgid "Enable out of stock notifications" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:692 -msgid "Notification Recipient" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:701 -msgid "Low Stock Threshold" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:715 -msgid "Out Of Stock Threshold" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:729 -msgid "Out Of Stock Visibility" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:730 -msgid "Hide out of stock items from the catalog" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:737 -msgid "Stock Display Format" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:738 -msgid "This controls how stock is displayed on the frontend." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:744 -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:745 -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:746 -msgid "Never show stock amount" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:761 -msgid "Shipping Calculations" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:762 -msgid "Enable shipping" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:770 -msgid "Enable the shipping calculator on the cart page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:779 -msgid "Hide shipping costs until an address is entered" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:788 -msgid "Shipping Method Display" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:789 -msgid "" -"This controls how multiple shipping methods are displayed on the frontend." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:795 -msgid "Radio buttons" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:796 -msgid "Select box" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:803 -msgid "Shipping Destination" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:804 -msgid "Only ship to the users billing address" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:813 -msgid "Ship to billing address by default" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:822 -msgid "Collect shipping address even when not required" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:841 -msgid "" -"Installed payment gateways are displayed below. Drag and drop payment " -"gateways to control their display order on the checkout." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:862 -msgid "Enable Taxes" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:863 -msgid "Enable taxes and tax calculations" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:870 -msgid "Prices Entered With Tax" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:874 -msgid "" -"This option is important as it will affect how you input prices. Changing it " -"will not update existing products." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:876 -msgid "Yes, I will enter prices inclusive of tax" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:877 -msgid "No, I will enter prices exclusive of tax" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:882 -msgid "Calculate Tax Based On:" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:884 -msgid "This option determines which address is used to calculate tax." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:888 -msgid "Customer shipping address" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:889 -msgid "Customer billing address" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:890 admin/settings/settings-init.php:902 -msgid "Shop base address" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:895 -msgid "Default Customer Address:" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:897 -msgid "" -"This option determines the customers default address (before they input " -"their own)." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:901 -msgid "No address" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:907 -msgid "Shipping Tax Class:" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:908 -msgid "" -"Optionally control which tax class shipping gets, or leave it so shipping " -"tax is based on the cart items themselves." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:913 -msgid "Shipping tax class based on cart items" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:918 -msgid "Rounding" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:919 -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:926 -msgid "Additional Tax Classes" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:927 -msgid "" -"List additonal tax classes below (1 per line). This is in addition to the " -"default Standard Rate. Tax classes can be assigned to products." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:931 -#, php-format -msgid "Reduced Rate%sZero Rate" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:935 -msgid "Display prices during cart/checkout:" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:940 -msgid "Including tax" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:941 -msgid "Excluding tax" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:954 -msgid "Email Sender Options" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:954 -msgid "" -"The following options affect the sender (email address and name) used in " -"WooCommerce emails." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:957 -msgid "\"From\" Name" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:967 -msgid "\"From\" Email Address" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:981 -msgid "Email Template" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:981 -#, php-format -msgid "" -"This section lets you customise the WooCommerce emails. Click here to preview your email template. For more " -"advanced control copy woocommerce/templates/emails/ to " -"yourtheme/woocommerce/emails/." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:984 -msgid "Header Image" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:985 -#, php-format -msgid "" -"Enter a URL to an image you want to show in the email's header. Upload your " -"image using the media uploader." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:994 -msgid "Email Footer Text" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:995 -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:999 -msgid "Powered by WooCommerce" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1004 -msgid "Base Colour" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1005 -msgid "" -"The base colour for WooCommerce email templates. Default #557da1." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1014 -msgid "Background Colour" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1015 -msgid "" -"The background colour for WooCommerce email templates. Default " -"#f5f5f5." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1024 -msgid "Email Body Background Colour" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1025 -msgid "The main body background colour. Default #fdfdfd." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1034 -msgid "Email Body Text Colour" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1035 -msgid "The main body text colour. Default #505050." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-payment-gateways.php:30 -msgid "Gateway" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-payment-gateways.php:59 -msgid "Gateway ID" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:23 -msgid "Shipping Methods" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:25 -msgid "Drag and drop methods to control their display order." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:30 -msgid "Shipping Method" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:46 -msgid "Method ID" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:29 -#, php-format -msgid "Tax Rates for the \"%s\" Class" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:30 -#, php-format -msgid "" -"Define tax rates for countries and states below. See here " -"for available alpha-2 country codes." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:36 -msgid "Country Code" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:36 -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:38 -msgid "State Code" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:38 -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:40 -#: admin/settings/settings-tax-rates.php:217 -msgid "ZIP/Postcode" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:40 -msgid "" -"Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all areas. Wildcards (*) can be used. Ranges for numeric " -"postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:42 -msgid "" -"Cities for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all cities." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:44 -msgid "Rate %" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:44 -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:46 -msgid "Tax Name" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:46 -msgid "Enter a name for this tax rate." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:48 -#: admin/settings/settings-tax-rates.php:217 -msgid "Priority" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:48 -msgid "" -"Choose a priority for this tax rate. Only 1 matching rate per priority will " -"be used. To define multiple tax rates for a single area you need to specify " -"a different priority per rate." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:50 -#: admin/settings/settings-tax-rates.php:217 -msgid "Compound" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:50 -msgid "" -"Choose whether or not this is a compound rate. Compound tax rates are " -"applied on top of other tax rates." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:52 -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:59 -msgid "Insert row" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:60 -msgid "Remove selected row(s)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:62 -msgid "Export CSV" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:63 -msgid "Import CSV" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:163 -msgid "No row(s) selected" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Country Code" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "State Code" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Rate %" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Name" -msgstr "" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:5 -msgid "Insert Shortcode" -msgstr "Shortcode Invoegen" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:6 -msgid "Product price/cart button" -msgstr "Product prijs/winkelwagen knop" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:7 -msgid "Product by SKU/ID" -msgstr "Product op SKU/ID" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:8 -msgid "Products by SKU/ID" -msgstr "Producten op SKU/ID" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:10 -msgid "Products by category slug" -msgstr "Productcategorie slug" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:11 -msgid "Recent products" -msgstr "Nieuwe producten" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:12 -msgid "Featured products" -msgstr "Uitgelichte producten" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:13 -msgid "Shop Messages" -msgstr "Winkel Berichten" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:17 -msgid "Order tracking" -msgstr "Bestelling Traceren" - -# @ woocommerce -#: i18n/strings.php:16 -msgid "pending" -msgstr "In afwachting" - -# @ woocommerce -#: i18n/strings.php:17 -msgid "failed" -msgstr "Mislukt" - -# @ woocommerce -#: i18n/strings.php:18 -msgid "on-hold" -msgstr "In Hold" - -# @ woocommerce -#: i18n/strings.php:19 -msgid "processing" -msgstr "In behandeling" - -# @ woocommerce -#: i18n/strings.php:20 -msgid "completed" -msgstr "Voltooid" - -# @ woocommerce -#: i18n/strings.php:21 -msgid "refunded" -msgstr "Terugbetaald" - -# @ woocommerce -#: i18n/strings.php:22 -msgid "cancelled" -msgstr "Geannuleerd" - -# @ woocommerce -#: i18n/states/AU.php:13 -msgid "Australian Capital Territory" -msgstr "Australian Capital Territory" - -# @ woocommerce -#: i18n/states/AU.php:14 -msgid "New South Wales" -msgstr "New South Wales" - -# @ woocommerce -#: i18n/states/AU.php:15 -msgid "Northern Territory" -msgstr "Northern Territory" - -# @ woocommerce -#: i18n/states/AU.php:16 -msgid "Queensland" -msgstr "Queensland" - -# @ woocommerce -#: i18n/states/AU.php:17 -msgid "South Australia" -msgstr "Zuid-Australië" - -# @ woocommerce -#: i18n/states/AU.php:18 -msgid "Tasmania" -msgstr "Tasmanie" - -# @ woocommerce -#: i18n/states/AU.php:19 -msgid "Victoria" -msgstr "Victoria" - -# @ woocommerce -#: i18n/states/AU.php:20 -msgid "Western Australia" -msgstr "West-Australië" - -# @ woocommerce -#: i18n/states/BR.php:13 -msgid "Acre" -msgstr "Acre" - -# @ woocommerce -#: i18n/states/BR.php:14 -msgid "Alagoas" -msgstr "Alagoas" - -# @ woocommerce -#: i18n/states/BR.php:15 -msgid "Amapá" -msgstr "Amapá" - -# @ woocommerce -#: i18n/states/BR.php:16 -msgid "Amazonas" -msgstr "Amazonas" - -# @ woocommerce -#: i18n/states/BR.php:17 -msgid "Bahia" -msgstr "Bahia" - -# @ woocommerce -#: i18n/states/BR.php:18 -msgid "Ceará" -msgstr "Ceará" - -# @ woocommerce -#: i18n/states/BR.php:19 -msgid "Distrito Federal" -msgstr "Distrito Federal" - -# @ woocommerce -#: i18n/states/BR.php:20 -msgid "Espírito Santo" -msgstr "Espirito Santo" - -# @ woocommerce -#: i18n/states/BR.php:21 -msgid "Goiás" -msgstr "Goiás" - -# @ woocommerce -#: i18n/states/BR.php:22 -msgid "Maranhão" -msgstr "Maranhão" - -# @ woocommerce -#: i18n/states/BR.php:23 -msgid "Mato Grosso" -msgstr "Mato Grosso" - -# @ woocommerce -#: i18n/states/BR.php:24 -msgid "Mato Grosso do Sul" -msgstr "Mato Grosso do Sul" - -# @ woocommerce -#: i18n/states/BR.php:25 -msgid "Minas Gerais" -msgstr "Minas Gerais" - -# @ woocommerce -#: i18n/states/BR.php:26 -msgid "Pará" -msgstr "Pará" - -# @ woocommerce -#: i18n/states/BR.php:27 -msgid "Paraíba" -msgstr "Paraná" - -# @ woocommerce -#: i18n/states/BR.php:28 -msgid "Paraná" -msgstr "Paraná" - -# @ woocommerce -#: i18n/states/BR.php:29 -msgid "Pernambuco" -msgstr "Pernambuco" - -# @ woocommerce -#: i18n/states/BR.php:30 -msgid "Piauí" -msgstr "Piauí" - -# @ woocommerce -#: i18n/states/BR.php:31 -msgid "Rio de Janeiro" -msgstr "Rio de Janeiro" - -# @ woocommerce -#: i18n/states/BR.php:32 -msgid "Rio Grande do Norte" -msgstr "Rio Grande do Norte" - -# @ woocommerce -#: i18n/states/BR.php:33 -msgid "Rio Grande do Sul" -msgstr "Rio Grande do Sul" - -# @ woocommerce -#: i18n/states/BR.php:34 -msgid "Rondônia" -msgstr "Rondônia" - -# @ woocommerce -#: i18n/states/BR.php:35 -msgid "Roraima" -msgstr "Roraima" - -# @ woocommerce -#: i18n/states/BR.php:36 -msgid "Santa Catarina" -msgstr "Santa Catarina" - -# @ woocommerce -#: i18n/states/BR.php:37 -msgid "São Paulo" -msgstr "São Paulo" - -# @ woocommerce -#: i18n/states/BR.php:38 -msgid "Sergipe" -msgstr "Sergipe" - -# @ woocommerce -#: i18n/states/BR.php:39 -msgid "Tocantins" -msgstr "Tocantins" - -# @ woocommerce -#: i18n/states/CA.php:13 -msgid "Alberta" -msgstr "Alberta" - -# @ woocommerce -#: i18n/states/CA.php:14 -msgid "British Columbia" -msgstr "British Columbia" - -# @ woocommerce -#: i18n/states/CA.php:15 -msgid "Manitoba" -msgstr "Manitoba" - -# @ woocommerce -#: i18n/states/CA.php:16 -msgid "New Brunswick" -msgstr "New Brunswick" - -# @ woocommerce -#: i18n/states/CA.php:17 -msgid "Newfoundland" -msgstr "Newfoundland" - -# @ woocommerce -#: i18n/states/CA.php:18 -msgid "Northwest Territories" -msgstr "Northwest Territories" - -# @ woocommerce -#: i18n/states/CA.php:19 -msgid "Nova Scotia" -msgstr "Nova Scotia" - -# @ woocommerce -#: i18n/states/CA.php:20 -msgid "Nunavut" -msgstr "Nunavut" - -# @ woocommerce -#: i18n/states/CA.php:21 -msgid "Ontario" -msgstr "Ontario" - -# @ woocommerce -#: i18n/states/CA.php:22 -msgid "Prince Edward Island" -msgstr "Prins Edward Eiland" - -# @ woocommerce -#: i18n/states/CA.php:23 -msgid "Quebec" -msgstr "Quebec" - -# @ woocommerce -#: i18n/states/CA.php:24 -msgid "Saskatchewan" -msgstr "Saskatchewan" - -# @ woocommerce -#: i18n/states/CA.php:25 -msgid "Yukon Territory" -msgstr "Yukon Territory" - -# @ woocommerce -#: i18n/states/CN.php:13 -msgid "Yunnan / 云南" -msgstr "Yunnan / 云南" - -# @ woocommerce -#: i18n/states/CN.php:14 -msgid "Beijing / 北京" -msgstr "Beijing / 北京" - -# @ woocommerce -#: i18n/states/CN.php:15 -msgid "Tianjin / 天津" -msgstr "Tianjin / 天津" - -# @ woocommerce -#: i18n/states/CN.php:16 -msgid "Hebei / 河北" -msgstr "Hebei / 河北" - -# @ woocommerce -#: i18n/states/CN.php:17 -msgid "Shanxi / 山西" -msgstr "Shanxi / 山西" - -# @ woocommerce -#: i18n/states/CN.php:18 -msgid "Inner Mongolia / 內蒙古" -msgstr "Inner Mongolia / 內蒙古" - -# @ woocommerce -#: i18n/states/CN.php:19 -msgid "Liaoning / 辽宁" -msgstr "Liaoning / 辽宁" - -# @ woocommerce -#: i18n/states/CN.php:20 -msgid "Jilin / 吉林" -msgstr "Jilin / 吉林" - -# @ woocommerce -#: i18n/states/CN.php:21 -msgid "Heilongjiang / 黑龙江" -msgstr "Heilongjiang / 黑龙江" - -# @ woocommerce -#: i18n/states/CN.php:22 -msgid "Shanghai / 上海" -msgstr "Shanghai / 上海" - -# @ woocommerce -#: i18n/states/CN.php:23 -msgid "Jiangsu / 江苏" -msgstr "Jiangsu / 江苏" - -# @ woocommerce -#: i18n/states/CN.php:24 -msgid "Zhejiang / 浙江" -msgstr "Zhejiang / 浙江" - -# @ woocommerce -#: i18n/states/CN.php:25 -msgid "Anhui / 安徽" -msgstr "Anhui / 安徽" - -# @ woocommerce -#: i18n/states/CN.php:26 -msgid "Fujian / 福建" -msgstr "Fujian / 福建" - -# @ woocommerce -#: i18n/states/CN.php:27 -msgid "Jiangxi / 江西" -msgstr "Jiangxi / 江西" - -# @ woocommerce -#: i18n/states/CN.php:28 -msgid "Shandong / 山东" -msgstr "Shandong / 山东" - -# @ woocommerce -#: i18n/states/CN.php:29 -msgid "Henan / 河南" -msgstr "Henan / 河南" - -# @ woocommerce -#: i18n/states/CN.php:30 -msgid "Hubei / 湖北" -msgstr "Hubei / 湖北" - -# @ woocommerce -#: i18n/states/CN.php:31 -msgid "Hunan / 湖南" -msgstr "Hunan / 湖南" - -# @ woocommerce -#: i18n/states/CN.php:32 -msgid "Guangdong / 广东" -msgstr "Guangdong / 广东" - -# @ woocommerce -#: i18n/states/CN.php:33 -msgid "Guangxi Zhuang / 广西壮族" -msgstr "Guangxi Zhuang / 广西壮族" - -# @ woocommerce -#: i18n/states/CN.php:34 -msgid "Hainan / 海南" -msgstr "Hainan / 海南" - -# @ woocommerce -#: i18n/states/CN.php:35 -msgid "Chongqing / 重庆" -msgstr "Chongqing / 重庆" - -# @ woocommerce -#: i18n/states/CN.php:36 -msgid "Sichuan / 四川" -msgstr "Sichuan / 四川" - -# @ woocommerce -#: i18n/states/CN.php:37 -msgid "Guizhou / 贵州" -msgstr "Guizhou / 贵州" - -# @ woocommerce -#: i18n/states/CN.php:38 -msgid "Shaanxi / 陕西" -msgstr "Shaanxi / 陕西" - -# @ woocommerce -#: i18n/states/CN.php:39 -msgid "Gansu / 甘肃" -msgstr "Gansu / 甘肃" - -# @ woocommerce -#: i18n/states/CN.php:40 -msgid "Qinghai / 青海" -msgstr "Qinghai / 青海" - -# @ woocommerce -#: i18n/states/CN.php:41 -msgid "Ningxia Hui / 宁夏" -msgstr "Ningxia Hui / 宁夏" - -# @ woocommerce -#: i18n/states/CN.php:42 -msgid "Macau / 澳门" -msgstr "Macau / 澳门" - -# @ woocommerce -#: i18n/states/CN.php:43 -msgid "Tibet / 西藏" -msgstr "Tibet / 西藏" - -# @ woocommerce -#: i18n/states/CN.php:44 -msgid "Xinjiang / 新疆" -msgstr "Xinjiang / 新疆" - -#: i18n/states/ES.php:13 -msgid "A Coruña" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:14 -#, fuzzy -msgid "Álava" -msgstr "Paraná" - -#: i18n/states/ES.php:15 -msgid "Albacete" -msgstr "" - -#: i18n/states/ES.php:16 -msgid "Alicante" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:17 -#, fuzzy -msgid "Almería" -msgstr "Paraná" - -#: i18n/states/ES.php:18 -msgid "Asturias" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:19 -#, fuzzy -msgid "Ávila" -msgstr "Paraná" - -#: i18n/states/ES.php:20 -msgid "Badajoz" -msgstr "" - -#: i18n/states/ES.php:21 -msgid "Baleares" -msgstr "" - -#: i18n/states/ES.php:22 -msgid "Barcelona" -msgstr "" - -#: i18n/states/ES.php:23 -msgid "Burgos" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:24 -#, fuzzy -msgid "Cáceres" -msgstr "Ceará" - -# @ woocommerce -#: i18n/states/ES.php:25 -#, fuzzy -msgid "Cádiz" -msgstr "Ceará" - -# @ woocommerce -#: i18n/states/ES.php:26 -#, fuzzy -msgid "Cantabria" -msgstr "Canterbury" - -# @ woocommerce -#: i18n/states/ES.php:27 -#, fuzzy -msgid "Castellón" -msgstr "Ceará" - -#: i18n/states/ES.php:28 -msgid "Ceuta" -msgstr "" - -#: i18n/states/ES.php:29 -msgid "Ciudad Real" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:30 -#, fuzzy -msgid "Córdoba" -msgstr "Paraná" - -#: i18n/states/ES.php:31 -msgid "Cuenca" -msgstr "" - -#: i18n/states/ES.php:32 -msgid "Girona" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:33 -#, fuzzy -msgid "Granada" -msgstr "Grenada" - -# @ woocommerce -#: i18n/states/ES.php:34 -#, fuzzy -msgid "Guadalajara" -msgstr "Karnataka" - -# @ woocommerce -#: i18n/states/ES.php:35 -#, fuzzy -msgid "Guipúzcoa" -msgstr "Goiás" - -#: i18n/states/ES.php:36 -msgid "Huelva" -msgstr "" - -#: i18n/states/ES.php:37 -msgid "Huesca" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:38 -#, fuzzy -msgid "Jaén" -msgstr "Pará" - -#: i18n/states/ES.php:39 -msgid "La Rioja" -msgstr "" - -#: i18n/states/ES.php:40 -msgid "Las Palmas" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:41 -#, fuzzy -msgid "León" -msgstr "Ceará" - -#: i18n/states/ES.php:42 -msgid "Lleida" -msgstr "" - -#: i18n/states/ES.php:43 -msgid "Lugo" -msgstr "" - -#: i18n/states/ES.php:44 -msgid "Madrid" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:45 -#, fuzzy -msgid "Málaga" -msgstr "Pará" - -#: i18n/states/ES.php:46 -msgid "Melilla" -msgstr "" - -#: i18n/states/ES.php:47 -msgid "Murcia" -msgstr "" - -#: i18n/states/ES.php:48 -msgid "Navarra" -msgstr "" - -#: i18n/states/ES.php:49 -msgid "Ourense" -msgstr "" - -#: i18n/states/ES.php:50 -msgid "Palencia" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:51 -#, fuzzy -msgid "Pontevedra" -msgstr "Montenegro" - -#: i18n/states/ES.php:52 -msgid "Salamanca" -msgstr "" - -#: i18n/states/ES.php:53 -msgid "Santa Cruz de Tenerife" -msgstr "" - -#: i18n/states/ES.php:54 -msgid "Segovia" -msgstr "" - -#: i18n/states/ES.php:55 -msgid "Sevilla" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:56 -#, fuzzy -msgid "Soria" -msgstr "Victoria" - -#: i18n/states/ES.php:57 -msgid "Tarragona" -msgstr "" - -#: i18n/states/ES.php:58 -msgid "Teruel" -msgstr "" - -#: i18n/states/ES.php:59 -msgid "Toledo" -msgstr "" - -#: i18n/states/ES.php:60 -msgid "Valencia" -msgstr "" - -#: i18n/states/ES.php:61 -msgid "Valladolid" -msgstr "" - -#: i18n/states/ES.php:62 -msgid "Vizcaya" -msgstr "" - -#: i18n/states/ES.php:63 -msgid "Zamora" -msgstr "" - -# @ woocommerce -#: i18n/states/ES.php:64 -#, fuzzy -msgid "Zaragoza" -msgstr "Paraguay" - -# @ woocommerce -#: i18n/states/HK.php:13 -msgid "Hong Kong Island" -msgstr "Hong Kong Island" - -# @ woocommerce -#: i18n/states/HK.php:14 -msgid "Kowloon" -msgstr "Kowloon" - -# @ woocommerce -#: i18n/states/HK.php:15 -msgid "New Territories" -msgstr "New Territories" - -# @ woocommerce -#: i18n/states/HU.php:13 -msgid "Bács-Kiskun" -msgstr "Bács-Kiskun" - -# @ woocommerce -#: i18n/states/HU.php:14 -msgid "Békés" -msgstr "Békés" - -# @ woocommerce -#: i18n/states/HU.php:15 -msgid "Baranya" -msgstr "Baranya" - -# @ woocommerce -#: i18n/states/HU.php:16 -msgid "Borsod-Abaúj-Zemplén" -msgstr "Borsod-Abaúj-Zemplén" - -# @ woocommerce -#: i18n/states/HU.php:17 -msgid "Budapest" -msgstr "Boedapest" - -# @ woocommerce -#: i18n/states/HU.php:18 -msgid "Csongrád" -msgstr "Csongrád" - -# @ woocommerce -#: i18n/states/HU.php:19 -msgid "Fejér" -msgstr "Fejér" - -# @ woocommerce -#: i18n/states/HU.php:20 -msgid "Győr-Moson-Sopron" -msgstr "Győr-Moson-Sopron" - -# @ woocommerce -#: i18n/states/HU.php:21 -msgid "Hajdú-Bihar" -msgstr "Hajdú-Bihar" - -# @ woocommerce -#: i18n/states/HU.php:22 -msgid "Heves" -msgstr "Heves" - -# @ woocommerce -#: i18n/states/HU.php:23 -msgid "Jász-Nagykun-Szolnok" -msgstr "Jász-Nagykun-Szolnok" - -# @ woocommerce -#: i18n/states/HU.php:24 -msgid "Komárom-Esztergom" -msgstr "Komárom-Esztergom" - -# @ woocommerce -#: i18n/states/HU.php:25 -msgid "Nógrád" -msgstr "Nógrád" - -# @ woocommerce -#: i18n/states/HU.php:26 -msgid "Pest" -msgstr "Pest" - -# @ woocommerce -#: i18n/states/HU.php:27 -msgid "Somogy" -msgstr "Somogy" - -# @ woocommerce -#: i18n/states/HU.php:28 -msgid "Szabolcs-Szatmár-Bereg" -msgstr "Szabolcs-Szatmár-Bereg" - -# @ woocommerce -#: i18n/states/HU.php:29 -msgid "Tolna" -msgstr "Tolna" - -# @ woocommerce -#: i18n/states/HU.php:30 -msgid "Vas" -msgstr "Vas" - -# @ woocommerce -#: i18n/states/HU.php:31 -msgid "Veszprém" -msgstr "Veszprém" - -# @ woocommerce -#: i18n/states/HU.php:32 -msgid "Zala" -msgstr "Zala" - -# @ woocommerce -#: i18n/states/HZ.php:13 i18n/states/NZ.php:14 -msgid "Auckland" -msgstr "Auckland" - -# @ woocommerce -#: i18n/states/HZ.php:14 i18n/states/NZ.php:16 -msgid "Bay of Plenty" -msgstr "Bay of Plenty" - -# @ woocommerce -#: i18n/states/HZ.php:15 i18n/states/NZ.php:25 -msgid "Canterbury" -msgstr "Canterbury" - -# @ woocommerce -#: i18n/states/HZ.php:16 i18n/states/NZ.php:18 -msgid "Hawke’s Bay" -msgstr "Hawke’s Bay" - -# @ woocommerce -#: i18n/states/HZ.php:17 i18n/states/NZ.php:19 -msgid "Manawatu-Wanganui" -msgstr "Manawatu-Wanganui" - -# @ woocommerce -#: i18n/states/HZ.php:18 i18n/states/NZ.php:22 -msgid "Marlborough" -msgstr "Marlborough" - -# @ woocommerce -#: i18n/states/HZ.php:19 i18n/states/NZ.php:21 -msgid "Nelson" -msgstr "Nelson" - -# @ woocommerce -#: i18n/states/HZ.php:20 i18n/states/NZ.php:13 -msgid "Northland" -msgstr "Northland" - -# @ woocommerce -#: i18n/states/HZ.php:21 i18n/states/NZ.php:26 -msgid "Otago" -msgstr "Otago" - -# @ woocommerce -#: i18n/states/HZ.php:22 i18n/states/NZ.php:27 -msgid "Southland" -msgstr "Southland" - -# @ woocommerce -#: i18n/states/HZ.php:23 i18n/states/NZ.php:17 -msgid "Taranaki" -msgstr "Taranaki" - -# @ woocommerce -#: i18n/states/HZ.php:24 i18n/states/NZ.php:23 -msgid "Tasman" -msgstr "Tasmanië" - -# @ woocommerce -#: i18n/states/HZ.php:25 i18n/states/NZ.php:15 -msgid "Waikato" -msgstr "Waikato" - -# @ woocommerce -#: i18n/states/HZ.php:26 i18n/states/NZ.php:20 -msgid "Wellington" -msgstr "Wellington" - -# @ woocommerce -#: i18n/states/HZ.php:27 i18n/states/NZ.php:24 -msgid "West Coast" -msgstr "West Coast" - -# @ woocommerce -#: i18n/states/ID.php:13 -msgid "Daerah Istimewa Aceh" -msgstr "Daerah Istimewa Aceh" - -# @ woocommerce -#: i18n/states/ID.php:14 -msgid "Sumatera Utara" -msgstr "Sumatera Utara" - -# @ woocommerce -#: i18n/states/ID.php:15 -msgid "Sumatera Barat" -msgstr "Sumatera Barat" - -# @ woocommerce -#: i18n/states/ID.php:16 -msgid "Riau" -msgstr "Riau" - -# @ woocommerce -#: i18n/states/ID.php:17 -msgid "Kepulauan Riau" -msgstr "Kepulauan Riau" - -# @ woocommerce -#: i18n/states/ID.php:18 -msgid "Jambi" -msgstr "Jambi" - -# @ woocommerce -#: i18n/states/ID.php:19 -msgid "Sumatera Selatan" -msgstr "Sumatera Selatan" - -# @ woocommerce -#: i18n/states/ID.php:20 -msgid "Bangka Belitung" -msgstr "Bangka Belitung" - -# @ woocommerce -#: i18n/states/ID.php:21 -msgid "Bengkulu" -msgstr "Bengkulu" - -# @ woocommerce -#: i18n/states/ID.php:22 -msgid "Lampung" -msgstr "Lampung" - -# @ woocommerce -#: i18n/states/ID.php:23 -msgid "DKI Jakarta" -msgstr "DKI Jakarta" - -# @ woocommerce -#: i18n/states/ID.php:24 -msgid "Jawa Barat" -msgstr "Jawa Barat" - -# @ woocommerce -#: i18n/states/ID.php:25 -msgid "Banten" -msgstr "Banten" - -# @ woocommerce -#: i18n/states/ID.php:26 -msgid "Jawa Tengah" -msgstr "Jawa Tengah" - -# @ woocommerce -#: i18n/states/ID.php:27 -msgid "Jawa Timur" -msgstr "Java Timur" - -# @ woocommerce -#: i18n/states/ID.php:28 -msgid "Daerah Istimewa Yogyakarta" -msgstr "Daerah Istimewa Yogyakarta" - -# @ woocommerce -#: i18n/states/ID.php:29 -msgid "Bali" -msgstr "Bali" - -# @ woocommerce -#: i18n/states/ID.php:30 -msgid "Nusa Tenggara Barat" -msgstr "Nusa Tenggara Barat" - -# @ woocommerce -#: i18n/states/ID.php:31 -msgid "Nusa Tenggara Timur" -msgstr "Nusa Tenggara Timur" - -# @ woocommerce -#: i18n/states/ID.php:32 -msgid "Kalimantan Barat" -msgstr "Kalimantan Barat" - -# @ woocommerce -#: i18n/states/ID.php:33 -msgid "Kalimantan Tengah" -msgstr "Kalimantan Tengah" - -# @ woocommerce -#: i18n/states/ID.php:34 -msgid "Kalimantan Timur" -msgstr "Kalimantan Timur" - -# @ woocommerce -#: i18n/states/ID.php:35 -msgid "Kalimantan Selatan" -msgstr "Kalimantan Selatan" - -# @ woocommerce -#: i18n/states/ID.php:36 -msgid "Kalimantan Utara" -msgstr "Kalimantan Utara" - -# @ woocommerce -#: i18n/states/ID.php:37 -msgid "Sulawesi Utara" -msgstr "Sulawesi Utara" - -# @ woocommerce -#: i18n/states/ID.php:38 -msgid "Sulawesi Tengah" -msgstr "Sulawesi Tengah" - -# @ woocommerce -#: i18n/states/ID.php:39 -msgid "Sulawesi Tenggara" -msgstr "Sulawesi Tenggara" - -# @ woocommerce -#: i18n/states/ID.php:40 -msgid "Sulawesi Barat" -msgstr "Sulawesi Barat" - -# @ woocommerce -#: i18n/states/ID.php:41 -msgid "Sulawesi Selatan" -msgstr "Sulawesi Selatan" - -# @ woocommerce -#: i18n/states/ID.php:42 -msgid "Gorontalo" -msgstr "Gorontalo" - -# @ woocommerce -#: i18n/states/ID.php:43 -msgid "Maluku" -msgstr "Maluku" - -# @ woocommerce -#: i18n/states/ID.php:44 -msgid "Maluku Utara" -msgstr "Maluku Utara" - -# @ woocommerce -#: i18n/states/ID.php:45 -msgid "Papua" -msgstr "Papua" - -# @ woocommerce -#: i18n/states/ID.php:46 -msgid "Papua Barat" -msgstr "Papua Barat" - -# @ woocommerce -#: i18n/states/IN.php:13 -msgid "Andra Pradesh" -msgstr "Andra Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:14 -msgid "Arunachal Pradesh" -msgstr "Arunachal Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:15 -msgid "Assam" -msgstr "Assam" - -# @ woocommerce -#: i18n/states/IN.php:16 -msgid "Bihar" -msgstr "Bihar" - -# @ woocommerce -#: i18n/states/IN.php:17 -msgid "Chhattisgarh" -msgstr "Chhattisgarh" - -# @ woocommerce -#: i18n/states/IN.php:18 -msgid "Goa" -msgstr "Goa" - -# @ woocommerce -#: i18n/states/IN.php:19 -msgid "Gujarat" -msgstr "Karnataka" - -# @ woocommerce -#: i18n/states/IN.php:20 -msgid "Haryana" -msgstr "Haryana" - -# @ woocommerce -#: i18n/states/IN.php:21 -msgid "Himachal Pradesh" -msgstr "Himachal Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:22 -msgid "Jammu and Kashmir" -msgstr "Jammu and Kashmir" - -# @ woocommerce -#: i18n/states/IN.php:23 -msgid "Jharkhand" -msgstr "Jharkhand" - -# @ woocommerce -#: i18n/states/IN.php:24 -msgid "Karnataka" -msgstr "Karnataka" - -# @ woocommerce -#: i18n/states/IN.php:25 -msgid "Kerala" -msgstr "Kerala" - -# @ woocommerce -#: i18n/states/IN.php:26 -msgid "Madhya Pradesh" -msgstr "Madhya Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:27 -msgid "Maharashtra" -msgstr "Maharashtra" - -# @ woocommerce -#: i18n/states/IN.php:28 -msgid "Manipur" -msgstr "Manipur" - -# @ woocommerce -#: i18n/states/IN.php:29 -msgid "Meghalaya" -msgstr "Meghalaya" - -# @ woocommerce -#: i18n/states/IN.php:30 -msgid "Mizoram" -msgstr "Mizoram" - -# @ woocommerce -#: i18n/states/IN.php:31 -msgid "Nagaland" -msgstr "Nagaland" - -# @ woocommerce -#: i18n/states/IN.php:32 -msgid "Orissa" -msgstr "Orissa" - -# @ woocommerce -#: i18n/states/IN.php:33 -msgid "Punjab" -msgstr "Punjab" - -# @ woocommerce -#: i18n/states/IN.php:34 -msgid "Rajasthan" -msgstr "Rajasthan" - -# @ woocommerce -#: i18n/states/IN.php:35 -msgid "Sikkim" -msgstr "Sikkim" - -# @ woocommerce -#: i18n/states/IN.php:36 -msgid "Tamil Nadu" -msgstr "Tamil Nadu" - -# @ woocommerce -#: i18n/states/IN.php:37 -msgid "Tripura" -msgstr "Tripura" - -# @ woocommerce -#: i18n/states/IN.php:38 -msgid "Uttaranchal" -msgstr "Uttaranchal" - -# @ woocommerce -#: i18n/states/IN.php:39 -msgid "Uttar Pradesh" -msgstr "Uttar Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:40 -msgid "West Bengal" -msgstr "West Bengal" - -# @ woocommerce -#: i18n/states/IN.php:41 -msgid "Andaman and Nicobar Islands" -msgstr "Andaman and Nicobar Islands" - -# @ woocommerce -#: i18n/states/IN.php:42 -msgid "Chandigarh" -msgstr "Chandigarh" - -# @ woocommerce -#: i18n/states/IN.php:43 -msgid "Dadar and Nagar Haveli" -msgstr "Dadar and Nagar Haveli" - -# @ woocommerce -#: i18n/states/IN.php:44 -msgid "Daman and Diu" -msgstr "Daman and Diu" - -# @ woocommerce -#: i18n/states/IN.php:45 -msgid "Delhi" -msgstr "Delhi" - -# @ woocommerce -#: i18n/states/IN.php:46 -msgid "Lakshadeep" -msgstr "Lakshadeep" - -# @ woocommerce -#: i18n/states/IN.php:47 -msgid "Pondicherry (Puducherry)" -msgstr "Pondicherry (Puducherry)" - -# @ woocommerce -#: i18n/states/MY.php:13 -msgid "Johor" -msgstr "Johor" - -# @ woocommerce -#: i18n/states/MY.php:14 -msgid "Kedah" -msgstr "Kedah" - -# @ woocommerce -#: i18n/states/MY.php:15 -msgid "Kelantan" -msgstr "Kelantan" - -# @ woocommerce -#: i18n/states/MY.php:16 -msgid "Melaka" -msgstr "Johor" - -# @ woocommerce -#: i18n/states/MY.php:17 -msgid "Negeri Sembilan" -msgstr "Negeri Sembilan" - -# @ woocommerce -#: i18n/states/MY.php:18 -msgid "Pahang" -msgstr "Pahang" - -# @ woocommerce -#: i18n/states/MY.php:19 -msgid "Perak" -msgstr "Perak" - -# @ woocommerce -#: i18n/states/MY.php:20 -msgid "Perlis" -msgstr "Perlis" - -# @ woocommerce -#: i18n/states/MY.php:21 -msgid "Pulau Pinang" -msgstr "Pulau Pinang" - -# @ woocommerce -#: i18n/states/MY.php:22 -msgid "Sabah" -msgstr "Sabah" - -# @ woocommerce -#: i18n/states/MY.php:23 -msgid "Sarawak" -msgstr "Sarawak" - -# @ woocommerce -#: i18n/states/MY.php:24 -msgid "Selangor" -msgstr "Selangor" - -# @ woocommerce -#: i18n/states/MY.php:25 -msgid "Terengganu" -msgstr "Terengganu" - -# @ woocommerce -#: i18n/states/MY.php:26 -msgid "W.P. Kuala Lumpur" -msgstr "W.P. Kuala Lumpur" - -# @ woocommerce -#: i18n/states/MY.php:27 -msgid "W.P. Labuan" -msgstr "W.P. Labuan" - -# @ woocommerce -#: i18n/states/MY.php:28 -msgid "W.P. Putrajaya" -msgstr "W.P. Putrajaya" - -# @ woocommerce -#: i18n/states/TH.php:13 -msgid "" -"Amnat Charoen (อำนาจเจร" -"ิญ)" -msgstr "" -"Amnat Charoen (อำนาจเจร" -"ิญ)" - -# @ woocommerce -#: i18n/states/TH.php:14 -msgid "Ang Thong (อ่างทอง)" -msgstr "Ang Thong (อ่างทอง)" - -# @ woocommerce -#: i18n/states/TH.php:15 -msgid "" -"Ayutthaya (พระนครศรี" -"อยุธยา)" -msgstr "" -"Ayutthaya (พระนครศรี" -"อยุธยา)" - -# @ woocommerce -#: i18n/states/TH.php:16 -msgid "" -"Bangkok (กรุงเทพมห" -"านคร)" -msgstr "" -"Bangkok (กรุงเทพมห" -"านคร)" - -# @ woocommerce -#: i18n/states/TH.php:17 -msgid "Bueng Kan (บึงกาฬ)" -msgstr "Bueng Kan (บึงกาฬ)" - -# @ woocommerce -#: i18n/states/TH.php:18 -msgid "" -"Buri Ram (บุรีรัมย์)" -msgstr "" -"Buri Ram (บุรีรัมย์)" - -# @ woocommerce -#: i18n/states/TH.php:19 -msgid "" -"Chachoengsao (ฉะเชิงเทร" -"า)" -msgstr "" -"Chachoengsao (ฉะเชิงเทร" -"า)" - -# @ woocommerce -#: i18n/states/TH.php:20 -msgid "Chai Nat (ชัยนาท)" -msgstr "Chai Nat (ชัยนาท)" - -# @ woocommerce -#: i18n/states/TH.php:21 -msgid "Chaiyaphum (ชัยภูมิ)" -msgstr "Chaiyaphum (ชัยภูมิ)" - -# @ woocommerce -#: i18n/states/TH.php:22 -msgid "Chanthaburi (จันทบุรี)" -msgstr "Chanthaburi (จันทบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:23 -msgid "" -"Chiang Mai (เชียงใหม่)" -msgstr "" -"Chiang Mai (เชียงใหม่)" - -# @ woocommerce -#: i18n/states/TH.php:24 -msgid "Chiang Rai (เชียงราย)" -msgstr "Chiang Rai (เชียงราย)" - -# @ woocommerce -#: i18n/states/TH.php:25 -msgid "Chonburi (ชลบุรี)" -msgstr "Chonburi (ชลบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:26 -msgid "Chumphon (ชุมพร)" -msgstr "Chumphon (ชุมพร)" - -# @ woocommerce -#: i18n/states/TH.php:27 -msgid "" -"Kalasin (กาฬสินธุ์)" -msgstr "" -"Kalasin (กาฬสินธุ์)" - -# @ woocommerce -#: i18n/states/TH.php:28 -msgid "" -"Kamphaeng Phet (กำแพงเพช" -"ร)" -msgstr "" -"Kamphaeng Phet (กำแพงเพช" -"ร)" - -# @ woocommerce -#: i18n/states/TH.php:29 -msgid "" -"Kanchanaburi (กาญจนบุร" -"ี)" -msgstr "" -"Kanchanaburi (กาญจนบุร" -"ี)" - -# @ woocommerce -#: i18n/states/TH.php:30 -msgid "Khon Kaen (ขอนแก่น)" -msgstr "Khon Kaen (ขอนแก่น)" - -# @ woocommerce -#: i18n/states/TH.php:31 -msgid "Krabi (กระบี่)" -msgstr "Krabi (กระบี่)" - -# @ woocommerce -#: i18n/states/TH.php:32 -msgid "Lampang (ลำปาง)" -msgstr "Lampang (ลำปาง)" - -# @ woocommerce -#: i18n/states/TH.php:33 -msgid "Lamphun (ลำพูน)" -msgstr "Lamphun (ลำพูน)" - -# @ woocommerce -#: i18n/states/TH.php:34 -msgid "Loei (เลย)" -msgstr "Loei (เลย)" - -# @ woocommerce -#: i18n/states/TH.php:35 -msgid "Lopburi (ลพบุรี)" -msgstr "Lopburi (ลพบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:36 -msgid "" -"Mae Hong Son (แม่ฮ่องสอ" -"น)" -msgstr "" -"Mae Hong Son (แม่ฮ่องสอ" -"น)" - -# @ woocommerce -#: i18n/states/TH.php:37 -msgid "" -"Maha Sarakham (มหาสารคา" -"ม)" -msgstr "" -"Maha Sarakham (มหาสารคา" -"ม)" - -# @ woocommerce -#: i18n/states/TH.php:38 -msgid "Mukdahan (มุกดาหาร)" -msgstr "Mukdahan (มุกดาหาร)" - -# @ woocommerce -#: i18n/states/TH.php:39 -msgid "Nakhon Nayok (นครนายก)" -msgstr "Nakhon Nayok (นครนายก)" - -# @ woocommerce -#: i18n/states/TH.php:40 -msgid "Nakhon Pathom (นครปฐม)" -msgstr "Nakhon Pathom (นครปฐม)" - -# @ woocommerce -#: i18n/states/TH.php:41 -msgid "Nakhon Phanom (นครพนม)" -msgstr "Nakhon Phanom (นครพนม)" - -# @ woocommerce -#: i18n/states/TH.php:42 -msgid "" -"Nakhon Ratchasima (นครราชสี" -"มา)" -msgstr "" -"Nakhon Ratchasima (นครราชสี" -"มา)" - -# @ woocommerce -#: i18n/states/TH.php:43 -msgid "" -"Nakhon Sawan (นครสวรรค" -"์)" -msgstr "" -"Nakhon Sawan (นครสวรรค" -"์)" - -# @ woocommerce -#: i18n/states/TH.php:44 -msgid "" -"Nakhon Si Thammarat (นครศรีธร" -"รมราช)" -msgstr "" -"Nakhon Si Thammarat (นครศรีธร" -"รมราช)" - -# @ woocommerce -#: i18n/states/TH.php:45 -msgid "Nan (น่าน)" -msgstr "Nan (น่าน)" - -# @ woocommerce -#: i18n/states/TH.php:46 -msgid "Narathiwat (นราธิวาส)" -msgstr "Narathiwat (นราธิวาส)" - -# @ woocommerce -#: i18n/states/TH.php:47 -msgid "" -"Nong Bua Lam Phu (หนองบัวล" -"ำภู)" -msgstr "" -"Nong Bua Lam Phu (หนองบัวล" -"ำภู)" - -# @ woocommerce -#: i18n/states/TH.php:48 -msgid "Nong Khai (หนองคาย)" -msgstr "Nong Khai (หนองคาย)" - -# @ woocommerce -#: i18n/states/TH.php:49 -msgid "Nonthaburi (นนทบุรี)" -msgstr "Nonthaburi (นนทบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:50 -msgid "Pathum Thani (ปทุมธานี)" -msgstr "" -"Pathum Thani (ปทุมธานี)" - -# @ woocommerce -#: i18n/states/TH.php:51 -msgid "Pattani (ปัตตานี)" -msgstr "Pattani (ปัตตานี)" - -# @ woocommerce -#: i18n/states/TH.php:52 -msgid "Phang Nga (พังงา)" -msgstr "Phang Nga (พังงา)" - -# @ woocommerce -#: i18n/states/TH.php:53 -msgid "Phatthalung (พัทลุง)" -msgstr "Phatthalung (พัทลุง)" - -# @ woocommerce -#: i18n/states/TH.php:54 -msgid "Phayao (พะเยา)" -msgstr "Phayao (พะเยา)" - -# @ woocommerce -#: i18n/states/TH.php:55 -msgid "" -"Phetchabun (เพชรบูรณ์)" -msgstr "" -"Phetchabun (เพชรบูรณ์)" - -# @ woocommerce -#: i18n/states/TH.php:56 -msgid "Phetchaburi (เพชรบุรี)" -msgstr "Phetchaburi (เพชรบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:57 -msgid "Phichit (พิจิตร)" -msgstr "Phichit (พิจิตร)" - -# @ woocommerce -#: i18n/states/TH.php:58 -msgid "Phitsanulok (พิษณุโลก)" -msgstr "Phitsanulok (พิษณุโลก)" - -# @ woocommerce -#: i18n/states/TH.php:59 -msgid "Phrae (แพร่)" -msgstr "Phrae (แพร่)" - -# @ woocommerce -#: i18n/states/TH.php:60 -msgid "Phuket (ภูเก็ต)" -msgstr "Phuket (ภูเก็ต)" - -# @ woocommerce -#: i18n/states/TH.php:61 -msgid "" -"Prachin Buri (ปราจีนบุร" -"ี)" -msgstr "" -"Prachin Buri (ปราจีนบุร" -"ี)" - -# @ woocommerce -#: i18n/states/TH.php:62 -msgid "" -"Prachuap Khiri Khan (ประจวบคี" -"รีขันธ์)" -msgstr "" -"Prachuap Khiri Khan (ประจวบคี" -"รีขันธ์)" - -# @ woocommerce -#: i18n/states/TH.php:63 -msgid "Ranong (ระนอง)" -msgstr "Ranong (ระนอง)" - -# @ woocommerce -#: i18n/states/TH.php:64 -msgid "Ratchaburi (ราชบุรี)" -msgstr "Ratchaburi (ราชบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:65 -msgid "Rayong (ระยอง)" -msgstr "Rayong (ระยอง)" - -# @ woocommerce -#: i18n/states/TH.php:66 -msgid "Roi Et (ร้อยเอ็ด)" -msgstr "Roi Et (ร้อยเอ็ด)" - -# @ woocommerce -#: i18n/states/TH.php:67 -msgid "Sa Kaeo (สระแก้ว)" -msgstr "Sa Kaeo (สระแก้ว)" - -# @ woocommerce -#: i18n/states/TH.php:68 -msgid "Sakon Nakhon (สกลนคร)" -msgstr "Sakon Nakhon (สกลนคร)" - -# @ woocommerce -#: i18n/states/TH.php:69 -msgid "" -"Samut Prakan (สมุทรปราก" -"าร)" -msgstr "" -"Samut Prakan (สมุทรปราก" -"าร)" - -# @ woocommerce -#: i18n/states/TH.php:70 -msgid "" -"Samut Sakhon (สมุทรสาค" -"ร)" -msgstr "" -"Samut Sakhon (สมุทรสาค" -"ร)" - -# @ woocommerce -#: i18n/states/TH.php:71 -msgid "" -"Samut Songkhram (สมุทรสงค" -"ราม)" -msgstr "" -"Samut Songkhram (สมุทรสงค" -"ราม)" - -# @ woocommerce -#: i18n/states/TH.php:72 -msgid "Saraburi (สระบุรี)" -msgstr "Saraburi (สระบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:73 -msgid "Satun (สตูล)" -msgstr "Satun (สตูล)" - -# @ woocommerce -#: i18n/states/TH.php:74 -msgid "" -"Sing Buri (สิงห์บุรี)" -msgstr "" -"Sing Buri (สิงห์บุรี)" - -# @ woocommerce -#: i18n/states/TH.php:75 -msgid "Sisaket (ศรีสะเกษ)" -msgstr "Sisaket (ศรีสะเกษ)" - -# @ woocommerce -#: i18n/states/TH.php:76 -msgid "Songkhla (สงขลา)" -msgstr "Songkhla (สงขลา)" - -# @ woocommerce -#: i18n/states/TH.php:77 -msgid "Sukhothai (สุโขทัย)" -msgstr "Sukhothai (สุโขทัย)" - -# @ woocommerce -#: i18n/states/TH.php:78 -msgid "" -"Suphan Buri (สุพรรณบุร" -"ี)" -msgstr "" -"Suphan Buri (สุพรรณบุร" -"ี)" - -# @ woocommerce -#: i18n/states/TH.php:79 -msgid "" -"Surat Thani (สุราษฎร์ธ" -"านี)" -msgstr "" -"Surat Thani (สุราษฎร์ธ" -"านี)" - -# @ woocommerce -#: i18n/states/TH.php:80 -msgid "Surin (สุรินทร์)" -msgstr "Surin (สุรินทร์)" - -# @ woocommerce -#: i18n/states/TH.php:81 -msgid "Tak (ตาก)" -msgstr "Tak (ตาก)" - -# @ woocommerce -#: i18n/states/TH.php:82 -msgid "Trang (ตรัง)" -msgstr "Trang (ตรัง)" - -# @ woocommerce -#: i18n/states/TH.php:83 -msgid "Trat (ตราด)" -msgstr "Trat (ตราด)" - -# @ woocommerce -#: i18n/states/TH.php:84 -msgid "" -"Ubon Ratchathani (อุบลราชธ" -"านี)" -msgstr "" -"Ubon Ratchathani (อุบลราชธ" -"านี)" - -# @ woocommerce -#: i18n/states/TH.php:85 -msgid "Udon Thani (อุดรธานี)" -msgstr "Udon Thani (อุดรธานี)" - -# @ woocommerce -#: i18n/states/TH.php:86 -msgid "" -"Uthai Thani (อุทัยธานี)" -msgstr "" -"Uthai Thani (อุทัยธานี)" - -# @ woocommerce -#: i18n/states/TH.php:87 -msgid "" -"Uttaradit (อุตรดิตถ์)" -msgstr "" -"Uttaradit (อุตรดิตถ์)" - -# @ woocommerce -#: i18n/states/TH.php:88 -msgid "Yala (ยะลา)" -msgstr "Yala (ยะลา)" - -# @ woocommerce -#: i18n/states/TH.php:89 -msgid "Yasothon (ยโสธร)" -msgstr "Yasothon (ยโสธร)" - -# @ woocommerce -#: i18n/states/US.php:13 -msgid "Alabama" -msgstr "Alabama" - -# @ woocommerce -#: i18n/states/US.php:14 -msgid "Alaska" -msgstr "Alaska" - -# @ woocommerce -#: i18n/states/US.php:15 -msgid "Arizona" -msgstr "Arizona" - -# @ woocommerce -#: i18n/states/US.php:16 -msgid "Arkansas" -msgstr "Arkansas" - -# @ woocommerce -#: i18n/states/US.php:17 -msgid "California" -msgstr "California" - -# @ woocommerce -#: i18n/states/US.php:18 -msgid "Colorado" -msgstr "Colorado" - -# @ woocommerce -#: i18n/states/US.php:19 -msgid "Connecticut" -msgstr "Connecticut" - -# @ woocommerce -#: i18n/states/US.php:20 -msgid "Delaware" -msgstr "Delaware" - -# @ woocommerce -#: i18n/states/US.php:21 -msgid "District Of Columbia" -msgstr "District Of Columbia" - -# @ woocommerce -#: i18n/states/US.php:22 -msgid "Florida" -msgstr "Florida" - -# @ woocommerce -#: i18n/states/US.php:23 includes/class-wc-countries.php:118 -msgid "Georgia" -msgstr "Georgië" - -# @ woocommerce -#: i18n/states/US.php:24 -msgid "Hawaii" -msgstr "Hawai" - -# @ woocommerce -#: i18n/states/US.php:25 -msgid "Idaho" -msgstr "Idaho" - -# @ woocommerce -#: i18n/states/US.php:26 -msgid "Illinois" -msgstr "Illinois" - -# @ woocommerce -#: i18n/states/US.php:27 -msgid "Indiana" -msgstr "Indiana" - -# @ woocommerce -#: i18n/states/US.php:28 -msgid "Iowa" -msgstr "Iowa" - -# @ woocommerce -#: i18n/states/US.php:29 -msgid "Kansas" -msgstr "Kansas" - -# @ woocommerce -#: i18n/states/US.php:30 -msgid "Kentucky" -msgstr "Kentucky" - -# @ woocommerce -#: i18n/states/US.php:31 -msgid "Louisiana" -msgstr "Louisiana" - -# @ woocommerce -#: i18n/states/US.php:32 -msgid "Maine" -msgstr "Maine" - -# @ woocommerce -#: i18n/states/US.php:33 -msgid "Maryland" -msgstr "Maryland" - -# @ woocommerce -#: i18n/states/US.php:34 -msgid "Massachusetts" -msgstr "Massachusetts" - -# @ woocommerce -#: i18n/states/US.php:35 -msgid "Michigan" -msgstr "Michigan" - -# @ woocommerce -#: i18n/states/US.php:36 -msgid "Minnesota" -msgstr "Minnesota" - -# @ woocommerce -#: i18n/states/US.php:37 -msgid "Mississippi" -msgstr "Mississippi" - -# @ woocommerce -#: i18n/states/US.php:38 -msgid "Missouri" -msgstr "Missouri" - -# @ woocommerce -#: i18n/states/US.php:39 -msgid "Montana" -msgstr "Montana" - -# @ woocommerce -#: i18n/states/US.php:40 -msgid "Nebraska" -msgstr "Nebraska" - -# @ woocommerce -#: i18n/states/US.php:41 -msgid "Nevada" -msgstr "Nevada" - -# @ woocommerce -#: i18n/states/US.php:42 -msgid "New Hampshire" -msgstr "New Hampshire" - -# @ woocommerce -#: i18n/states/US.php:43 -msgid "New Jersey" -msgstr "New Jersey" - -# @ woocommerce -#: i18n/states/US.php:44 -msgid "New Mexico" -msgstr "New Mexico" - -# @ woocommerce -#: i18n/states/US.php:45 -msgid "New York" -msgstr "New York" - -# @ woocommerce -#: i18n/states/US.php:46 -msgid "North Carolina" -msgstr "North Carolina" - -# @ woocommerce -#: i18n/states/US.php:47 -msgid "North Dakota" -msgstr "North Dakota" - -# @ woocommerce -#: i18n/states/US.php:48 -msgid "Ohio" -msgstr "Ohio" - -# @ woocommerce -#: i18n/states/US.php:49 -msgid "Oklahoma" -msgstr "Oklahoma" - -# @ woocommerce -#: i18n/states/US.php:50 -msgid "Oregon" -msgstr "Oregon" - -# @ woocommerce -#: i18n/states/US.php:51 -msgid "Pennsylvania" -msgstr "Pennsylvania" - -# @ woocommerce -#: i18n/states/US.php:52 -msgid "Rhode Island" -msgstr "Rhode Island" - -# @ woocommerce -#: i18n/states/US.php:53 -msgid "South Carolina" -msgstr "South Carolina" - -# @ woocommerce -#: i18n/states/US.php:54 -msgid "South Dakota" -msgstr "South Dakota" - -# @ woocommerce -#: i18n/states/US.php:55 -msgid "Tennessee" -msgstr "Tennessee" - -# @ woocommerce -#: i18n/states/US.php:56 -msgid "Texas" -msgstr "Texas" - -# @ woocommerce -#: i18n/states/US.php:57 -msgid "Utah" -msgstr "Utah" - -# @ woocommerce -#: i18n/states/US.php:58 -msgid "Vermont" -msgstr "Vermont" - -# @ woocommerce -#: i18n/states/US.php:59 -msgid "Virginia" -msgstr "Virginia" - -# @ woocommerce -#: i18n/states/US.php:60 -msgid "Washington" -msgstr "Washington" - -# @ woocommerce -#: i18n/states/US.php:61 -msgid "West Virginia" -msgstr "West Virginia" - -# @ woocommerce -#: i18n/states/US.php:62 -msgid "Wisconsin" -msgstr "Wisconsin" - -# @ woocommerce -#: i18n/states/US.php:63 -msgid "Wyoming" -msgstr "Wyoming" - -# @ woocommerce -#: i18n/states/US.php:64 -msgid "Armed Forces (AA)" -msgstr "Armed Forces (AA)" - -# @ woocommerce -#: i18n/states/US.php:65 -msgid "Armed Forces (AE)" -msgstr "Armed Forces (AE)" - -# @ woocommerce -#: i18n/states/US.php:66 -msgid "Armed Forces (AP)" -msgstr "Armed Forces (AP)" - -# @ woocommerce -#: i18n/states/US.php:67 -msgid "American Samoa" -msgstr "Amerikaans Samoa" - -# @ woocommerce -#: i18n/states/US.php:68 -msgid "Guam" -msgstr "Guam" - -# @ woocommerce -#: i18n/states/US.php:69 -msgid "Northern Mariana Islands" -msgstr "Northern Mariana Eilanden" - -# @ woocommerce -#: i18n/states/US.php:70 -msgid "Puerto Rico" -msgstr "Puerto Rico" - -# @ woocommerce -#: i18n/states/US.php:71 -msgid "US Minor Outlying Islands" -msgstr "Amerikaanse Kleine afgelegen eilanden" - -# @ woocommerce -#: i18n/states/US.php:72 -msgid "US Virgin Islands" -msgstr "Amerikaanse Maagdeneilanden" - -# @ woocommerce -#: i18n/states/ZA.php:13 -msgid "Eastern Cape" -msgstr "Eastern Cape" - -# @ woocommerce -#: i18n/states/ZA.php:14 -msgid "Free State" -msgstr "Vrije Staat" - -# @ woocommerce -#: i18n/states/ZA.php:15 -msgid "Gauteng" -msgstr "Gauteng" - -# @ woocommerce -#: i18n/states/ZA.php:16 -msgid "KwaZulu-Natal" -msgstr "KwaZulu-Natal" - -# @ woocommerce -#: i18n/states/ZA.php:17 -msgid "Limpopo" -msgstr "Limpopo" - -# @ woocommerce -#: i18n/states/ZA.php:18 -msgid "Mpumalanga" -msgstr "Mpumalanga" - -# @ woocommerce -#: i18n/states/ZA.php:19 -msgid "Northern Cape" -msgstr "Noord Kaap" - -# @ woocommerce -#: i18n/states/ZA.php:20 -msgid "North West" -msgstr "Noord West" - -# @ woocommerce -#: i18n/states/ZA.php:21 -msgid "Western Cape" -msgstr "West Kaap" - -#: includes/class-wc-cache-helper.php:99 -#, php-format -msgid "" -"In order for database caching to work with WooCommerce you " -"must add _wc_session_ to the \"Ignored Query Strings\" option " -"in W3 Total Cache settings here." -msgstr "" - -# @ woocommerce -#: includes/class-wc-cart.php:461 -#, php-format -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -"Sorry, wij hebben niet genoeg \"%s\" op voorraad om aan uw bestelling te " -"voldoen (%s op voorraad). Gelieve uw winkelwagen aan te passen en het " -"opnieuw te proberen. Wilt u toch een groter aantal van dit product " -"bestellen, neem dan contact met ons op." - -# @ woocommerce -#: includes/class-wc-cart.php:480 includes/class-wc-cart.php:489 -#, php-format -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfil your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -"Sorry, we niet genoeg \"%s \" op voorraad om uw bestelling (%s op voorraad) " -"te vervullen. Corrigeer uw winkelwagen en probeer het opnieuw. Onze excuses " -"voor het ongemak." - -# @ woocommerce -#: includes/class-wc-cart.php:524 -#, php-format -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfil your order right now. " -"Please try again in %d minutes or edit your cart and try again. We apologise " -"for any inconvenience caused." -msgstr "" -"Sorry, we hebben niet genoeg \"%s \" op voorraad om uw bestelling uit te " -"voeren op dit moment. Probeer het over %d minuten opnieuw of corrigeer uw " -"winkelwagentje probeer het opnieuw. Onze excuses voor het ongemak." - -# @ woocommerce -#: includes/class-wc-cart.php:534 -#, php-format -msgid "" -"Sorry, \"%s\" is not in stock. Please edit your cart and try again. We " -"apologise for any inconvenience caused." -msgstr "" -"Sorry, \"%s\" is niet op voorraad. Corrigeer uw winkelwagen en probeer " -"nogmaals. Onze excuses voor het ongemak." - -# @ woocommerce -#: includes/class-wc-cart.php:846 -#, php-format -msgid "Sorry, "%s" cannot be purchased." -msgstr "Sorry, "%s" kan niet aangeschaft worden." - -# @ woocommerce -#: includes/class-wc-cart.php:853 -#, php-format -msgid "" -"You cannot add "%s" to the cart because the product is out of " -"stock." -msgstr "" -"U kunt "%s" niet toevoegen aan uw winkelwagen omdat het product " -"niet op voorraad is." - -# @ woocommerce -#: includes/class-wc-cart.php:858 -#, php-format -msgid "" -"You cannot add that amount of "%s" to the cart because there is " -"not enough stock (%s remaining)." -msgstr "" -"De gewenste hoeveelheid "%s" kan niet aan de winkelwagen " -"toegevoegd worden vanwege de voorraad (%s op voorraad)." - -# @ woocommerce -#: includes/class-wc-cart.php:870 -msgid "You already have this item in your cart." -msgstr "U heeft reeds dit product in uw winkelwagen." - -# @ woocommerce -#: includes/class-wc-cart.php:884 includes/class-wc-cart.php:892 -#, php-format -msgid "" -"%s You cannot add that amount to the " -"cart — we have %s in stock and you already have %s in your cart." -msgstr "" -"%s U kunt deze hoeveelheid niet " -"toevoegen aan de winkelwagen. We hebben %s in voorraad en u heeft reeds %s " -"in uw winkelwagen." - -# @ woocommerce -#: includes/class-wc-cart.php:1833 includes/class-wc-order.php:891 -#: includes/class-wc-product-variable.php:273 -#: includes/class-wc-product-variable.php:282 -#: includes/class-wc-product-variation.php:247 -#: includes/abstracts/abstract-wc-product.php:853 -#: includes/abstracts/abstract-wc-product.php:859 -msgid "Free!" -msgstr "Gratis!" - -# @ woocommerce -#: includes/class-wc-cart.php:1845 -msgid "via" -msgstr "via" - -# @ woocommerce -#: includes/class-wc-checkout.php:60 -msgid "Account username" -msgstr "Account gebruikersnaam" - -# @ woocommerce -#: includes/class-wc-checkout.php:61 -msgctxt "placeholder" -msgid "Username" -msgstr "Gebruikersnaam" - -# @ woocommerce -#: includes/class-wc-checkout.php:68 -msgid "Account password" -msgstr "Account wachtwoord" - -# @ woocommerce -#: includes/class-wc-checkout.php:69 -msgctxt "placeholder" -msgid "Password" -msgstr "Wachtwoord" - -# @ woocommerce -#: includes/class-wc-checkout.php:78 -msgctxt "placeholder" -msgid "Notes about your order, e.g. special notes for delivery." -msgstr "Notities over uw bestelling, bv. opmerkingen over levering." - -# @ woocommerce -#: includes/class-wc-checkout.php:140 -#, php-format -msgid "Order – %s" -msgstr "Bestelling – %s" - -# @ woocommerce -#: includes/class-wc-checkout.php:140 -msgctxt "Order date parsed by strftime" -msgid "%b %d, %Y @ %I:%M %p" -msgstr "%b %d, %Y @ %I:%M %p" - -# @ woocommerce -#: includes/class-wc-checkout.php:244 -msgid "Backordered" -msgstr "In bestelling" - -# @ woocommerce -#: includes/class-wc-checkout.php:354 -#, php-format -msgid "" -"Sorry, your session has expired. Return to homepage →" -msgstr "" -"Sorry, uw sessie is verlopen. Keer terug naar de homepage " -"→" - -# @ woocommerce -#: includes/class-wc-checkout.php:431 -#, php-format -msgid "(%s) is not a valid postcode/ZIP." -msgstr "(%s) is geen geldige postcode." - -# @ woocommerce -#: includes/class-wc-checkout.php:452 -msgid "is not valid. Please enter one of the following:" -msgstr "is not correct. Voeg een van de volgende in:" - -# @ woocommerce -#: includes/class-wc-checkout.php:460 -msgid "is not a valid number." -msgstr "is geen geldig nummer." - -# @ woocommerce -#: includes/class-wc-checkout.php:467 -msgid "is not a valid email address." -msgstr "is geen geldig e-mailadres." - -# @ woocommerce -#: includes/class-wc-checkout.php:510 -msgid "You must accept our Terms & Conditions." -msgstr "U dient akkoord te gaan met onze Algemene Voorwaarden." - -# @ woocommerce -#: includes/class-wc-checkout.php:519 -msgid "Invalid shipping method." -msgstr "Ongeldige verzendmethode." - -# @ woocommerce -#: includes/class-wc-checkout.php:532 -msgid "Invalid payment method." -msgstr "Ongeldige betaalmethode." - -# @ woocommerce -#: includes/class-wc-countries.php:37 -msgid "Afghanistan" -msgstr "Afghanistan" - -# @ woocommerce -#: includes/class-wc-countries.php:38 -msgid "Åland Islands" -msgstr "Åland-eilanden" - -# @ woocommerce -#: includes/class-wc-countries.php:39 -msgid "Albania" -msgstr "Albanië" - -# @ woocommerce -#: includes/class-wc-countries.php:40 -msgid "Algeria" -msgstr "Algerije" - -# @ woocommerce -#: includes/class-wc-countries.php:41 -msgid "Andorra" -msgstr "Andorra" - -# @ woocommerce -#: includes/class-wc-countries.php:42 -msgid "Angola" -msgstr "Angola" - -# @ woocommerce -#: includes/class-wc-countries.php:43 -msgid "Anguilla" -msgstr "Anguilla" - -# @ woocommerce -#: includes/class-wc-countries.php:44 -msgid "Antarctica" -msgstr "Antarctica" - -# @ woocommerce -#: includes/class-wc-countries.php:45 -msgid "Antigua and Barbuda" -msgstr "Antigua en Barbuda" - -# @ woocommerce -#: includes/class-wc-countries.php:46 -msgid "Argentina" -msgstr "Argentinië" - -# @ woocommerce -#: includes/class-wc-countries.php:47 -msgid "Armenia" -msgstr "Armenië" - -# @ woocommerce -#: includes/class-wc-countries.php:48 -msgid "Aruba" -msgstr "Aruba" - -# @ woocommerce -#: includes/class-wc-countries.php:49 -msgid "Australia" -msgstr "Australië" - -# @ woocommerce -#: includes/class-wc-countries.php:50 -msgid "Austria" -msgstr "Oostenrijk" - -# @ woocommerce -#: includes/class-wc-countries.php:51 -msgid "Azerbaijan" -msgstr "Azerbeidzjan" - -# @ woocommerce -#: includes/class-wc-countries.php:52 -msgid "Bahamas" -msgstr "Bahamas" - -# @ woocommerce -#: includes/class-wc-countries.php:53 -msgid "Bahrain" -msgstr "Bahrein" - -# @ woocommerce -#: includes/class-wc-countries.php:54 -msgid "Bangladesh" -msgstr "Bangladesh" - -# @ woocommerce -#: includes/class-wc-countries.php:55 -msgid "Barbados" -msgstr "Barbedos" - -# @ woocommerce -#: includes/class-wc-countries.php:56 -msgid "Belarus" -msgstr "Belarus" - -# @ woocommerce -#: includes/class-wc-countries.php:57 -msgid "Belgium" -msgstr "België" - -# @ woocommerce -#: includes/class-wc-countries.php:58 -msgid "Belau" -msgstr "Belau" - -# @ woocommerce -#: includes/class-wc-countries.php:59 -msgid "Belize" -msgstr "Belize" - -# @ woocommerce -#: includes/class-wc-countries.php:60 -msgid "Benin" -msgstr "Benin" - -# @ woocommerce -#: includes/class-wc-countries.php:61 -msgid "Bermuda" -msgstr "Bermuda" - -# @ woocommerce -#: includes/class-wc-countries.php:62 -msgid "Bhutan" -msgstr "Bhutan" - -# @ woocommerce -#: includes/class-wc-countries.php:63 -msgid "Bolivia" -msgstr "Bolivia" - -# @ woocommerce -#: includes/class-wc-countries.php:64 -msgid "Bonaire, Saint Eustatius and Saba" -msgstr "Bonaire, Sint Eustatius en Saba" - -# @ woocommerce -#: includes/class-wc-countries.php:65 -msgid "Bosnia and Herzegovina" -msgstr "Bosnië en Herzegovina" - -# @ woocommerce -#: includes/class-wc-countries.php:66 -msgid "Botswana" -msgstr "Botswana" - -# @ woocommerce -#: includes/class-wc-countries.php:67 -msgid "Bouvet Island" -msgstr "Bouvet Eiland" - -# @ woocommerce -#: includes/class-wc-countries.php:68 -msgid "Brazil" -msgstr "Brazilië" - -# @ woocommerce -#: includes/class-wc-countries.php:69 -msgid "British Indian Ocean Territory" -msgstr "British Indian Ocean Territory" - -# @ woocommerce -#: includes/class-wc-countries.php:70 -msgid "British Virgin Islands" -msgstr "Britse Virgin Eilanden" - -# @ woocommerce -#: includes/class-wc-countries.php:71 -msgid "Brunei" -msgstr "Brunei" - -# @ woocommerce -#: includes/class-wc-countries.php:72 -msgid "Bulgaria" -msgstr "Bulgarije" - -# @ woocommerce -#: includes/class-wc-countries.php:73 -msgid "Burkina Faso" -msgstr "Burkina Faso" - -# @ woocommerce -#: includes/class-wc-countries.php:74 -msgid "Burundi" -msgstr "Boeroendi" - -# @ woocommerce -#: includes/class-wc-countries.php:75 -msgid "Cambodia" -msgstr "Cambodja" - -# @ woocommerce -#: includes/class-wc-countries.php:76 -msgid "Cameroon" -msgstr "Kameroen" - -# @ woocommerce -#: includes/class-wc-countries.php:77 -msgid "Canada" -msgstr "Canada" - -# @ woocommerce -#: includes/class-wc-countries.php:78 -msgid "Cape Verde" -msgstr "Kaapverdië" - -# @ woocommerce -#: includes/class-wc-countries.php:79 -msgid "Cayman Islands" -msgstr "Kaaiman Eilanden" - -# @ woocommerce -#: includes/class-wc-countries.php:80 -msgid "Central African Republic" -msgstr "Centraal-Afrikaanse Republiek" - -# @ woocommerce -#: includes/class-wc-countries.php:81 -msgid "Chad" -msgstr "Tsjaad" - -# @ woocommerce -#: includes/class-wc-countries.php:82 -msgid "Chile" -msgstr "Chili" - -# @ woocommerce -#: includes/class-wc-countries.php:83 -msgid "China" -msgstr "China" - -# @ woocommerce -#: includes/class-wc-countries.php:84 -msgid "Christmas Island" -msgstr "Christmas Island" - -# @ woocommerce -#: includes/class-wc-countries.php:85 -msgid "Cocos (Keeling) Islands" -msgstr "Cocos (Keeling) Islands" - -# @ woocommerce -#: includes/class-wc-countries.php:86 -msgid "Colombia" -msgstr "Colombia" - -# @ woocommerce -#: includes/class-wc-countries.php:87 -msgid "Comoros" -msgstr "Comoren" - -# @ woocommerce -#: includes/class-wc-countries.php:88 -msgid "Congo (Brazzaville)" -msgstr "Congo (Brazzaville)" - -# @ woocommerce -#: includes/class-wc-countries.php:89 -msgid "Congo (Kinshasa)" -msgstr "Congo (Kinshasa)" - -# @ woocommerce -#: includes/class-wc-countries.php:90 -msgid "Cook Islands" -msgstr "Cook Islands" - -# @ woocommerce -#: includes/class-wc-countries.php:91 -msgid "Costa Rica" -msgstr "Costa Rica" - -# @ woocommerce -#: includes/class-wc-countries.php:92 -msgid "Croatia" -msgstr "Kroatië" - -# @ woocommerce -#: includes/class-wc-countries.php:93 -msgid "Cuba" -msgstr "Cuba" - -# @ woocommerce -#: includes/class-wc-countries.php:94 -msgid "CuraÇao" -msgstr "Curacao" - -# @ woocommerce -#: includes/class-wc-countries.php:95 -msgid "Cyprus" -msgstr "Cyprus" - -# @ woocommerce -#: includes/class-wc-countries.php:96 -msgid "Czech Republic" -msgstr "Tsjechische Republiek" - -# @ woocommerce -#: includes/class-wc-countries.php:97 -msgid "Denmark" -msgstr "Denemarken" - -# @ woocommerce -#: includes/class-wc-countries.php:98 -msgid "Djibouti" -msgstr "Djibouti" - -# @ woocommerce -#: includes/class-wc-countries.php:99 -msgid "Dominica" -msgstr "Dominica" - -# @ woocommerce -#: includes/class-wc-countries.php:100 -msgid "Dominican Republic" -msgstr "Dominicaanse Republiek" - -# @ woocommerce -#: includes/class-wc-countries.php:101 -msgid "Ecuador" -msgstr "Ecuador" - -# @ woocommerce -#: includes/class-wc-countries.php:102 -msgid "Egypt" -msgstr "Egypte" - -# @ woocommerce -#: includes/class-wc-countries.php:103 -msgid "El Salvador" -msgstr "El Salvador" - -# @ woocommerce -#: includes/class-wc-countries.php:104 -msgid "Equatorial Guinea" -msgstr "Equatoriaal-Guinea" - -# @ woocommerce -#: includes/class-wc-countries.php:105 -msgid "Eritrea" -msgstr "Eritrea" - -# @ woocommerce -#: includes/class-wc-countries.php:106 -msgid "Estonia" -msgstr "Estland" - -# @ woocommerce -#: includes/class-wc-countries.php:107 -msgid "Ethiopia" -msgstr "Ethiopië" - -# @ woocommerce -#: includes/class-wc-countries.php:108 -msgid "Falkland Islands" -msgstr "Falkland Eilanden" - -# @ woocommerce -#: includes/class-wc-countries.php:109 -msgid "Faroe Islands" -msgstr "Faeröer" - -# @ woocommerce -#: includes/class-wc-countries.php:110 -msgid "Fiji" -msgstr "Fiji" - -# @ woocommerce -#: includes/class-wc-countries.php:111 -msgid "Finland" -msgstr "Finland" - -# @ woocommerce -#: includes/class-wc-countries.php:112 -msgid "France" -msgstr "Frankrijk" - -# @ woocommerce -#: includes/class-wc-countries.php:113 -msgid "French Guiana" -msgstr "Frans-Guyana" - -# @ woocommerce -#: includes/class-wc-countries.php:114 -msgid "French Polynesia" -msgstr "Frans-Polynesië" - -# @ woocommerce -#: includes/class-wc-countries.php:115 -msgid "French Southern Territories" -msgstr "Franse Zuidelijke Gebieden" - -# @ woocommerce -#: includes/class-wc-countries.php:116 -msgid "Gabon" -msgstr "Gabon" - -# @ woocommerce -#: includes/class-wc-countries.php:117 -msgid "Gambia" -msgstr "Gambia" - -# @ woocommerce -#: includes/class-wc-countries.php:119 -msgid "Germany" -msgstr "Duitsland" - -# @ woocommerce -#: includes/class-wc-countries.php:120 -msgid "Ghana" -msgstr "Ghana" - -# @ woocommerce -#: includes/class-wc-countries.php:121 -msgid "Gibraltar" -msgstr "Gibraltar" - -# @ woocommerce -#: includes/class-wc-countries.php:122 -msgid "Greece" -msgstr "Griekenland" - -# @ woocommerce -#: includes/class-wc-countries.php:123 -msgid "Greenland" -msgstr "Groenland" - -# @ woocommerce -#: includes/class-wc-countries.php:124 -msgid "Grenada" -msgstr "Grenada" - -# @ woocommerce -#: includes/class-wc-countries.php:125 -msgid "Guadeloupe" -msgstr "Guadeloupe" - -# @ woocommerce -#: includes/class-wc-countries.php:126 -msgid "Guatemala" -msgstr "Guatemala" - -# @ woocommerce -#: includes/class-wc-countries.php:127 -msgid "Guernsey" -msgstr "Guernsey" - -# @ woocommerce -#: includes/class-wc-countries.php:128 -msgid "Guinea" -msgstr "Guinea" - -# @ woocommerce -#: includes/class-wc-countries.php:129 -msgid "Guinea-Bissau" -msgstr "Guinee-Bissau" - -# @ woocommerce -#: includes/class-wc-countries.php:130 -msgid "Guyana" -msgstr "Guyana" - -# @ woocommerce -#: includes/class-wc-countries.php:131 -msgid "Haiti" -msgstr "Haiti" - -# @ woocommerce -#: includes/class-wc-countries.php:132 -msgid "Heard Island and McDonald Islands" -msgstr "Heard Eiland en McDonald Eilanden" - -# @ woocommerce -#: includes/class-wc-countries.php:133 -msgid "Honduras" -msgstr "Honduras" - -# @ woocommerce -#: includes/class-wc-countries.php:134 -msgid "Hong Kong" -msgstr "Hong Kong" - -# @ woocommerce -#: includes/class-wc-countries.php:135 -msgid "Hungary" -msgstr "Hongarije" - -# @ woocommerce -#: includes/class-wc-countries.php:136 -msgid "Iceland" -msgstr "IJsland" - -# @ woocommerce -#: includes/class-wc-countries.php:137 -msgid "India" -msgstr "India" - -# @ woocommerce -#: includes/class-wc-countries.php:138 -msgid "Indonesia" -msgstr "Indonesië" - -# @ woocommerce -#: includes/class-wc-countries.php:139 -msgid "Iran" -msgstr "Iran" - -# @ woocommerce -#: includes/class-wc-countries.php:140 -msgid "Iraq" -msgstr "Irak" - -# @ woocommerce -#: includes/class-wc-countries.php:141 -msgid "Republic of Ireland" -msgstr "Republiek Ierland" - -# @ woocommerce -#: includes/class-wc-countries.php:142 -msgid "Isle of Man" -msgstr "Isle of Man" - -# @ woocommerce -#: includes/class-wc-countries.php:143 -msgid "Israel" -msgstr "Israël" - -# @ woocommerce -#: includes/class-wc-countries.php:144 -msgid "Italy" -msgstr "Italië" - -# @ woocommerce -#: includes/class-wc-countries.php:145 -msgid "Ivory Coast" -msgstr "Ivoorkust" - -# @ woocommerce -#: includes/class-wc-countries.php:146 -msgid "Jamaica" -msgstr "Jamaica" - -# @ woocommerce -#: includes/class-wc-countries.php:147 -msgid "Japan" -msgstr "Japan" - -# @ woocommerce -#: includes/class-wc-countries.php:148 -msgid "Jersey" -msgstr "Jersey" - -# @ woocommerce -#: includes/class-wc-countries.php:149 -msgid "Jordan" -msgstr "Jordanië" - -# @ woocommerce -#: includes/class-wc-countries.php:150 -msgid "Kazakhstan" -msgstr "Kazachstan" - -# @ woocommerce -#: includes/class-wc-countries.php:151 -msgid "Kenya" -msgstr "Kenia" - -# @ woocommerce -#: includes/class-wc-countries.php:152 -msgid "Kiribati" -msgstr "Kiribati" - -# @ woocommerce -#: includes/class-wc-countries.php:153 -msgid "Kuwait" -msgstr "Koeweit" - -# @ woocommerce -#: includes/class-wc-countries.php:154 -msgid "Kyrgyzstan" -msgstr "Kirgizië" - -# @ woocommerce -#: includes/class-wc-countries.php:155 -msgid "Laos" -msgstr "Laos" - -# @ woocommerce -#: includes/class-wc-countries.php:156 -msgid "Latvia" -msgstr "Letland" - -# @ woocommerce -#: includes/class-wc-countries.php:157 -msgid "Lebanon" -msgstr "Libanon" - -# @ woocommerce -#: includes/class-wc-countries.php:158 -msgid "Lesotho" -msgstr "Lesotho" - -# @ woocommerce -#: includes/class-wc-countries.php:159 -msgid "Liberia" -msgstr "Liberia" - -# @ woocommerce -#: includes/class-wc-countries.php:160 -msgid "Libya" -msgstr "Libië" - -# @ woocommerce -#: includes/class-wc-countries.php:161 -msgid "Liechtenstein" -msgstr "Liechtenstein" - -# @ woocommerce -#: includes/class-wc-countries.php:162 -msgid "Lithuania" -msgstr "Litouwen" - -# @ woocommerce -#: includes/class-wc-countries.php:163 -msgid "Luxembourg" -msgstr "Luxemburg" - -# @ woocommerce -#: includes/class-wc-countries.php:164 -msgid "Macao S.A.R., China" -msgstr "Macau S.A.R., China" - -# @ woocommerce -#: includes/class-wc-countries.php:165 -msgid "Macedonia" -msgstr "Macedonië" - -# @ woocommerce -#: includes/class-wc-countries.php:166 -msgid "Madagascar" -msgstr "Madagascar" - -# @ woocommerce -#: includes/class-wc-countries.php:167 -msgid "Malawi" -msgstr "Malawi" - -# @ woocommerce -#: includes/class-wc-countries.php:168 -msgid "Malaysia" -msgstr "Maleisië" - -# @ woocommerce -#: includes/class-wc-countries.php:169 -msgid "Maldives" -msgstr "Maldiven" - -# @ woocommerce -#: includes/class-wc-countries.php:170 -msgid "Mali" -msgstr "Mali" - -# @ woocommerce -#: includes/class-wc-countries.php:171 -msgid "Malta" -msgstr "Malta" - -# @ woocommerce -#: includes/class-wc-countries.php:172 -msgid "Marshall Islands" -msgstr "Marshall Eilanden" - -# @ woocommerce -#: includes/class-wc-countries.php:173 -msgid "Martinique" -msgstr "Martinique" - -# @ woocommerce -#: includes/class-wc-countries.php:174 -msgid "Mauritania" -msgstr "Mauritanië" - -# @ woocommerce -#: includes/class-wc-countries.php:175 -msgid "Mauritius" -msgstr "Mauritius" - -# @ woocommerce -#: includes/class-wc-countries.php:176 -msgid "Mayotte" -msgstr "Mayotte" - -# @ woocommerce -#: includes/class-wc-countries.php:177 -msgid "Mexico" -msgstr "Mexico" - -# @ woocommerce -#: includes/class-wc-countries.php:178 -msgid "Micronesia" -msgstr "Micronesië" - -# @ woocommerce -#: includes/class-wc-countries.php:179 -msgid "Moldova" -msgstr "Moldavië" - -# @ woocommerce -#: includes/class-wc-countries.php:180 -msgid "Monaco" -msgstr "Monaco" - -# @ woocommerce -#: includes/class-wc-countries.php:181 -msgid "Mongolia" -msgstr "Mongolië" - -# @ woocommerce -#: includes/class-wc-countries.php:182 -msgid "Montenegro" -msgstr "Montenegro" - -# @ woocommerce -#: includes/class-wc-countries.php:183 -msgid "Montserrat" -msgstr "Montserrat" - -# @ woocommerce -#: includes/class-wc-countries.php:184 -msgid "Morocco" -msgstr "Marokko" - -# @ woocommerce -#: includes/class-wc-countries.php:185 -msgid "Mozambique" -msgstr "Mozambique" - -# @ woocommerce -#: includes/class-wc-countries.php:186 -msgid "Myanmar" -msgstr "Myanmar" - -# @ woocommerce -#: includes/class-wc-countries.php:187 -msgid "Namibia" -msgstr "Namibië" - -# @ woocommerce -#: includes/class-wc-countries.php:188 -msgid "Nauru" -msgstr "Nauru" - -# @ woocommerce -#: includes/class-wc-countries.php:189 -msgid "Nepal" -msgstr "Nepal" - -# @ woocommerce -#: includes/class-wc-countries.php:190 -msgid "Netherlands" -msgstr "Nederland" - -# @ woocommerce -#: includes/class-wc-countries.php:191 -msgid "Netherlands Antilles" -msgstr "Nederlandse Antillen" - -# @ woocommerce -#: includes/class-wc-countries.php:192 -msgid "New Caledonia" -msgstr "Nieuw-Caledonië" - -# @ woocommerce -#: includes/class-wc-countries.php:193 -msgid "New Zealand" -msgstr "Nieuw-Zeeland" - -# @ woocommerce -#: includes/class-wc-countries.php:194 -msgid "Nicaragua" -msgstr "Nicaragua" - -# @ woocommerce -#: includes/class-wc-countries.php:195 -msgid "Niger" -msgstr "Niger" - -# @ woocommerce -#: includes/class-wc-countries.php:196 -msgid "Nigeria" -msgstr "Nigeria" - -# @ woocommerce -#: includes/class-wc-countries.php:197 -msgid "Niue" -msgstr "Niue" - -# @ woocommerce -#: includes/class-wc-countries.php:198 -msgid "Norfolk Island" -msgstr "Norfolk Eiland" - -# @ woocommerce -#: includes/class-wc-countries.php:199 -msgid "North Korea" -msgstr "Noord-Korea" - -# @ woocommerce -#: includes/class-wc-countries.php:200 -msgid "Norway" -msgstr "Noorwegen" - -# @ woocommerce -#: includes/class-wc-countries.php:201 -msgid "Oman" -msgstr "Oman" - -# @ woocommerce -#: includes/class-wc-countries.php:202 -msgid "Pakistan" -msgstr "Pakistan" - -# @ woocommerce -#: includes/class-wc-countries.php:203 -msgid "Palestinian Territory" -msgstr "Palestijnse Gebieden" - -# @ woocommerce -#: includes/class-wc-countries.php:204 -msgid "Panama" -msgstr "Panama" - -# @ woocommerce -#: includes/class-wc-countries.php:205 -msgid "Papua New Guinea" -msgstr "Papua Nieuw Guinea" - -# @ woocommerce -#: includes/class-wc-countries.php:206 -msgid "Paraguay" -msgstr "Paraguay" - -# @ woocommerce -#: includes/class-wc-countries.php:207 -msgid "Peru" -msgstr "Peru" - -# @ woocommerce -#: includes/class-wc-countries.php:208 -msgid "Philippines" -msgstr "Filippijnen" - -# @ woocommerce -#: includes/class-wc-countries.php:209 -msgid "Pitcairn" -msgstr "Pitcairn" - -# @ woocommerce -#: includes/class-wc-countries.php:210 -msgid "Poland" -msgstr "Polen" - -# @ woocommerce -#: includes/class-wc-countries.php:211 -msgid "Portugal" -msgstr "Portugal" - -# @ woocommerce -#: includes/class-wc-countries.php:212 -msgid "Qatar" -msgstr "Qatar" - -# @ woocommerce -#: includes/class-wc-countries.php:213 -msgid "Reunion" -msgstr "Reunion" - -# @ woocommerce -#: includes/class-wc-countries.php:214 -msgid "Romania" -msgstr "Roemenië" - -# @ woocommerce -#: includes/class-wc-countries.php:215 -msgid "Russia" -msgstr "Rusland" - -# @ woocommerce -#: includes/class-wc-countries.php:216 -msgid "Rwanda" -msgstr "Rwanda" - -# @ woocommerce -#: includes/class-wc-countries.php:217 -msgid "Saint Barthélemy" -msgstr "Saint Barthelemy" - -# @ woocommerce -#: includes/class-wc-countries.php:218 -msgid "Saint Helena" -msgstr "Sint-Helena" - -# @ woocommerce -#: includes/class-wc-countries.php:219 -msgid "Saint Kitts and Nevis" -msgstr "Saint Kitts and Nevis" - -# @ woocommerce -#: includes/class-wc-countries.php:220 -msgid "Saint Lucia" -msgstr "Sint Lucia" - -# @ woocommerce -#: includes/class-wc-countries.php:221 -msgid "Saint Martin (French part)" -msgstr "Saint Martin (Frans deel)" - -# @ woocommerce -#: includes/class-wc-countries.php:222 -msgid "Saint Martin (Dutch part)" -msgstr "Saint Martin (Nederlands deel)" - -# @ woocommerce -#: includes/class-wc-countries.php:223 -msgid "Saint Pierre and Miquelon" -msgstr "Saint-Pierre en Miquelon" - -# @ woocommerce -#: includes/class-wc-countries.php:224 -msgid "Saint Vincent and the Grenadines" -msgstr "Saint Vincent en de Grenadines" - -# @ woocommerce -#: includes/class-wc-countries.php:225 -msgid "San Marino" -msgstr "San Marino" - -# @ woocommerce -#: includes/class-wc-countries.php:226 -msgid "São Tomé and Príncipe" -msgstr "Sao Tomé and Principe" - -# @ woocommerce -#: includes/class-wc-countries.php:227 -msgid "Saudi Arabia" -msgstr "Saudi-Arabië" - -# @ woocommerce -#: includes/class-wc-countries.php:228 -msgid "Senegal" -msgstr "Senegal" - -# @ woocommerce -#: includes/class-wc-countries.php:229 -msgid "Serbia" -msgstr "Servië" - -# @ woocommerce -#: includes/class-wc-countries.php:230 -msgid "Seychelles" -msgstr "Seychellen" - -# @ woocommerce -#: includes/class-wc-countries.php:231 -msgid "Sierra Leone" -msgstr "Sierra Leone" - -# @ woocommerce -#: includes/class-wc-countries.php:232 -msgid "Singapore" -msgstr "Singapore" - -# @ woocommerce -#: includes/class-wc-countries.php:233 -msgid "Slovakia" -msgstr "Slowakije" - -# @ woocommerce -#: includes/class-wc-countries.php:234 -msgid "Slovenia" -msgstr "Slovenië" - -# @ woocommerce -#: includes/class-wc-countries.php:235 -msgid "Solomon Islands" -msgstr "Solomon Eilanden" - -# @ woocommerce -#: includes/class-wc-countries.php:236 -msgid "Somalia" -msgstr "Somalië" - -# @ woocommerce -#: includes/class-wc-countries.php:237 -msgid "South Africa" -msgstr "Zuid-Afrika" - -# @ woocommerce -#: includes/class-wc-countries.php:238 -msgid "South Georgia/Sandwich Islands" -msgstr "South Georgia / Sandwich Eilanden" - -# @ woocommerce -#: includes/class-wc-countries.php:239 -msgid "South Korea" -msgstr "Zuid-Korea" - -# @ woocommerce -#: includes/class-wc-countries.php:240 -msgid "South Sudan" -msgstr "Zuid-Sudan" - -# @ woocommerce -#: includes/class-wc-countries.php:241 -msgid "Spain" -msgstr "Spanje" - -# @ woocommerce -#: includes/class-wc-countries.php:242 -msgid "Sri Lanka" -msgstr "Sri Lanka" - -# @ woocommerce -#: includes/class-wc-countries.php:243 -msgid "Sudan" -msgstr "Sudan" - -# @ woocommerce -#: includes/class-wc-countries.php:244 -msgid "Suriname" -msgstr "Suriname" - -# @ woocommerce -#: includes/class-wc-countries.php:245 -msgid "Svalbard and Jan Mayen" -msgstr "Svalbard en Jan Mayen" - -# @ woocommerce -#: includes/class-wc-countries.php:246 -msgid "Swaziland" -msgstr "Swaziland" - -# @ woocommerce -#: includes/class-wc-countries.php:247 -msgid "Sweden" -msgstr "Zweden" - -# @ woocommerce -#: includes/class-wc-countries.php:248 -msgid "Switzerland" -msgstr "Zwitserland" - -# @ woocommerce -#: includes/class-wc-countries.php:249 -msgid "Syria" -msgstr "Syrië" - -# @ woocommerce -#: includes/class-wc-countries.php:250 -msgid "Taiwan" -msgstr "Taiwan" - -# @ woocommerce -#: includes/class-wc-countries.php:251 -msgid "Tajikistan" -msgstr "Tadzjikistan" - -# @ woocommerce -#: includes/class-wc-countries.php:252 -msgid "Tanzania" -msgstr "Tanzania" - -# @ woocommerce -#: includes/class-wc-countries.php:253 -msgid "Thailand" -msgstr "Thailand" - -# @ woocommerce -#: includes/class-wc-countries.php:254 -msgid "Timor-Leste" -msgstr "Oost-Timor" - -# @ woocommerce -#: includes/class-wc-countries.php:255 -msgid "Togo" -msgstr "Togo" - -# @ woocommerce -#: includes/class-wc-countries.php:256 -msgid "Tokelau" -msgstr "Tokelau" - -# @ woocommerce -#: includes/class-wc-countries.php:257 -msgid "Tonga" -msgstr "Tonga" - -# @ woocommerce -#: includes/class-wc-countries.php:258 -msgid "Trinidad and Tobago" -msgstr "Trinidad en Tobago" - -# @ woocommerce -#: includes/class-wc-countries.php:259 -msgid "Tunisia" -msgstr "Tunesië" - -# @ woocommerce -#: includes/class-wc-countries.php:260 -msgid "Turkey" -msgstr "Turkije" - -# @ woocommerce -#: includes/class-wc-countries.php:261 -msgid "Turkmenistan" -msgstr "Turkmenistan" - -# @ woocommerce -#: includes/class-wc-countries.php:262 -msgid "Turks and Caicos Islands" -msgstr "Turks-en Caicoseilanden" - -# @ woocommerce -#: includes/class-wc-countries.php:263 -msgid "Tuvalu" -msgstr "Tuvalu" - -# @ woocommerce -#: includes/class-wc-countries.php:264 -msgid "Uganda" -msgstr "Uganda" - -# @ woocommerce -#: includes/class-wc-countries.php:265 -msgid "Ukraine" -msgstr "Oekraïne" - -# @ woocommerce -#: includes/class-wc-countries.php:266 -msgid "United Arab Emirates" -msgstr "Verenigde Arabische Emiraten" - -# @ woocommerce -#: includes/class-wc-countries.php:267 -msgid "United Kingdom" -msgstr "Groot-Britannië" - -# @ woocommerce -#: includes/class-wc-countries.php:268 -msgid "United States" -msgstr "Verenigde Staten" - -# @ woocommerce -#: includes/class-wc-countries.php:269 -msgid "Uruguay" -msgstr "Uruguay" - -# @ woocommerce -#: includes/class-wc-countries.php:270 -msgid "Uzbekistan" -msgstr "Oezbekistan" - -# @ woocommerce -#: includes/class-wc-countries.php:271 -msgid "Vanuatu" -msgstr "Vanuatu" - -# @ woocommerce -#: includes/class-wc-countries.php:272 -msgid "Vatican" -msgstr "Vaticaan" - -# @ woocommerce -#: includes/class-wc-countries.php:273 -msgid "Venezuela" -msgstr "Venezuela" - -# @ woocommerce -#: includes/class-wc-countries.php:274 -msgid "Vietnam" -msgstr "Vietnam" - -# @ woocommerce -#: includes/class-wc-countries.php:275 -msgid "Wallis and Futuna" -msgstr "Wallis en Futuna" - -# @ woocommerce -#: includes/class-wc-countries.php:276 -msgid "Western Sahara" -msgstr "West-Sahara" - -# @ woocommerce -#: includes/class-wc-countries.php:277 -msgid "Western Samoa" -msgstr "West-Samoa" - -# @ woocommerce -#: includes/class-wc-countries.php:278 -msgid "Yemen" -msgstr "Jemen" - -# @ woocommerce -#: includes/class-wc-countries.php:279 -msgid "Zambia" -msgstr "Zambia" - -# @ woocommerce -#: includes/class-wc-countries.php:280 -msgid "Zimbabwe" -msgstr "Zimbabwe" - -# @ woocommerce -#: includes/class-wc-countries.php:418 -msgid "to the" -msgstr "naar de" - -# @ woocommerce -#: includes/class-wc-countries.php:419 -msgid "to" -msgstr "naar" - -# @ woocommerce -#: includes/class-wc-countries.php:432 -msgid "the" -msgstr "de" - -# @ woocommerce -#: includes/class-wc-countries.php:444 -msgid "VAT" -msgstr "BTW" - -# @ woocommerce -#: includes/class-wc-countries.php:457 -msgid "(incl. VAT)" -msgstr "(incl. BTW)" - -# @ woocommerce -#: includes/class-wc-countries.php:457 -msgid "(incl. tax)" -msgstr "(incl. BTW)" - -# @ woocommerce -#: includes/class-wc-countries.php:470 -msgid "(ex. VAT)" -msgstr "(excl. BTW)" - -# @ woocommerce -#: includes/class-wc-countries.php:694 -msgid "Company Name" -msgstr "Bedrijfsnaam" - -# @ woocommerce -#: includes/class-wc-countries.php:699 -msgctxt "placeholder" -msgid "Street address" -msgstr "Straat adres" - -# @ woocommerce -#: includes/class-wc-countries.php:707 -msgctxt "placeholder" -msgid "Apartment, suite, unit etc. (optional)" -msgstr "Apartement, suite etc. (optioneel)" - -# @ woocommerce -#: includes/class-wc-countries.php:715 includes/class-wc-countries.php:716 -msgid "Town / City" -msgstr "Stad" - -# @ woocommerce -#: includes/class-wc-countries.php:725 includes/class-wc-countries.php:726 -msgid "State / County" -msgstr "Provincie" - -# @ woocommerce -#: includes/class-wc-countries.php:734 includes/class-wc-countries.php:735 -#: templates/cart/shipping-calculator.php:80 -msgid "Postcode / Zip" -msgstr "Postcode" - -# @ woocommerce -#: includes/class-wc-countries.php:774 includes/class-wc-countries.php:784 -#: includes/class-wc-countries.php:804 includes/class-wc-countries.php:859 -#: includes/class-wc-countries.php:878 includes/class-wc-countries.php:890 -#: includes/class-wc-countries.php:940 includes/class-wc-countries.php:964 -#: includes/class-wc-countries.php:1005 -msgid "Province" -msgstr "Provincie" - -# @ woocommerce -#: includes/class-wc-countries.php:790 -msgid "Canton" -msgstr "Canton" - -# @ woocommerce -#: includes/class-wc-countries.php:799 includes/class-wc-countries.php:946 -msgid "Municipality" -msgstr "Municipality" - -# @ woocommerce -#: includes/class-wc-countries.php:846 -msgid "Town / District" -msgstr "Stad" - -# @ woocommerce -#: includes/class-wc-countries.php:849 -msgid "Region" -msgstr "Regio" - -# @ woocommerce -#: includes/class-wc-countries.php:969 -msgid "Zip" -msgstr "Postcode" - -# @ woocommerce -#: includes/class-wc-countries.php:972 -msgid "State" -msgstr "Provincie" - -# @ woocommerce -#: includes/class-wc-countries.php:980 -msgid "County" -msgstr "Land" - -# @ woocommerce -#: includes/class-wc-countries.php:1081 -msgid "Email Address" -msgstr "E-mailadres" - -# @ woocommerce -#: includes/class-wc-coupon.php:421 -msgid "Coupon code applied successfully." -msgstr "Kortingscode succesvol gebruikt." - -# @ woocommerce -#: includes/class-wc-coupon.php:442 -msgid "Coupon is not valid." -msgstr "Kortingsbon bestaat niet." - -# @ woocommerce -#: includes/class-wc-coupon.php:445 includes/class-wc-coupon.php:495 -msgid "Coupon does not exist!" -msgstr "Kortingsbon bestaat niet!" - -# @ woocommerce -#: includes/class-wc-coupon.php:448 -#, php-format -msgid "" -"Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from " -"your order." -msgstr "" -"Sorry, het lijkt erop dat de kortingscode \"%s\" u niet toebehoort. De " -"kortingscode is weggehaald van uw bestelling." - -# @ woocommerce -#: includes/class-wc-coupon.php:451 -#, php-format -msgid "" -"Sorry, it seems the coupon \"%s\" is not yours - it has now been removed " -"from your order." -msgstr "" -"Sorry, het lijkt erop dat de kortingscode \"%s\" u niet toebehoort. De " -"kortingscode is weggehaald van uw bestelling." - -# @ woocommerce -#: includes/class-wc-coupon.php:454 -msgid "Coupon code already applied!" -msgstr "Kortingscode al gebruikt." - -# @ woocommerce -#: includes/class-wc-coupon.php:457 -#, php-format -msgid "" -"Sorry, coupon \"%s\" has already been applied and cannot be used in " -"conjunction with other coupons." -msgstr "" -"Sorry, de kortingsbon \"%s\" is reeds gebruikt en kan niet in combinatie met " -"andere kortingsbonnen gebruikt worden." - -# @ woocommerce -#: includes/class-wc-coupon.php:460 -msgid "Coupon usage limit has been reached." -msgstr "De limiet voor het gebruik van deze kortingscode is bereikt." - -# @ woocommerce -#: includes/class-wc-coupon.php:463 -msgid "This coupon has expired." -msgstr "Deze kortingsbon is verlopen." - -# @ woocommerce -#: includes/class-wc-coupon.php:466 -#, php-format -msgid "The minimum spend for this coupon is %s." -msgstr "Het minimumaankoopbedrag voor deze kortingsbon is %s." - -# @ woocommerce -#: includes/class-wc-coupon.php:469 -msgid "Sorry, this coupon is not applicable to your cart contents." -msgstr "" -"Sorry, deze coupon is niet toepasbaar op de huidige inhoud van de " -"winkelwagen." - -# @ woocommerce -#: includes/class-wc-coupon.php:472 -msgid "Sorry, this coupon is not valid for sale items." -msgstr "Sorry, deze kortingsbon is niet geldig voor aanbiedingen." - -# @ woocommerce -#: includes/class-wc-coupon.php:498 -msgid "Please enter a coupon code." -msgstr "Gelieve een kortingscode in te vullen." - -# @ woocommerce -#: includes/class-wc-customer.php:628 includes/class-wc-customer.php:640 -#, php-format -msgid "File %d" -msgstr "Bestand %d" - -# @ woocommerce -#: includes/class-wc-emails.php:249 -msgid "Note" -msgstr "Notitie" - -# @ woocommerce -#: includes/class-wc-emails.php:284 -msgid "Product low in stock" -msgstr "Product heeft een lage voorraad" - -# @ woocommerce -#: includes/class-wc-emails.php:291 includes/class-wc-emails.php:323 -#: includes/class-wc-emails.php:367 -#, php-format -msgid "Product #%s - %s" -msgstr "Product #%s - %s" - -# @ woocommerce -#: includes/class-wc-emails.php:293 -msgid "is low in stock." -msgstr "slechts weinig op voorraad" - -# @ woocommerce -#: includes/class-wc-emails.php:316 -msgid "Product out of stock" -msgstr "Product is niet op voorraad" - -# @ woocommerce -#: includes/class-wc-emails.php:325 -msgid "is out of stock." -msgstr "niet meer op voorraad." - -# @ woocommerce -#: includes/class-wc-emails.php:360 -msgid "Product Backorder" -msgstr "Product Backorder" - -# @ woocommerce -#: includes/class-wc-emails.php:370 -#, fuzzy, php-format -msgid "%s units of %s have been backordered in order %s." -msgstr "%s stuks van %s zijn als backorder geplaatst in bestelling #%s." - -# @ woocommerce -#: includes/class-wc-order.php:283 -msgctxt "hash before order number" -msgid "#" -msgstr "#" - -# @ woocommerce -#: includes/class-wc-order.php:886 -#, php-format -msgid " %svia %s" -msgstr " %s via %s" - -# @ woocommerce -#: includes/class-wc-order.php:949 -msgid "Cart Subtotal:" -msgstr "Subtotaal:" - -# @ woocommerce -#: includes/class-wc-order.php:961 -msgid "Shipping:" -msgstr "Verzending:" - -# @ woocommerce -#: includes/class-wc-order.php:1016 templates/cart/totals.php:105 -#: templates/checkout/review-order.php:104 -#, php-format -msgid "(Includes %s)" -msgstr "(Bevat %s)" - -# @ woocommerce -#: includes/class-wc-order.php:1272 -#, php-format -msgid "Order status changed from %s to %s." -msgstr "Bestellingstatus aangepast van %s naar %s. " - -# @ woocommerce -#: includes/class-wc-order.php:1516 -msgid "Order item stock reduced successfully." -msgstr "Bestel voorraad bijgewerkt. " - -# @ woocommerce -#: includes/class-wc-post-types.php:60 includes/class-wc-post-types.php:62 -#: includes/widgets/class-wc-widget-product-categories.php:30 -msgid "Product Categories" -msgstr "Productcategorieën" - -# @ woocommerce -#: includes/class-wc-post-types.php:64 -msgctxt "Admin menu name" -msgid "Categories" -msgstr "Categorieën" - -# @ woocommerce -#: includes/class-wc-post-types.php:65 -msgid "Search Product Categories" -msgstr "Zoek productcategorie" - -# @ woocommerce -#: includes/class-wc-post-types.php:66 -msgid "All Product Categories" -msgstr "Alle Productcategorieën" - -# @ woocommerce -#: includes/class-wc-post-types.php:67 -msgid "Parent Product Category" -msgstr "Hoofdproductcategorie" - -# @ woocommerce -#: includes/class-wc-post-types.php:68 -msgid "Parent Product Category:" -msgstr "Hoofdproductcategorie:" - -# @ woocommerce -#: includes/class-wc-post-types.php:69 -msgid "Edit Product Category" -msgstr "Bewerk Productcategorie" - -# @ woocommerce -#: includes/class-wc-post-types.php:70 -msgid "Update Product Category" -msgstr "Productcategorie bijwerken" - -# @ woocommerce -#: includes/class-wc-post-types.php:71 -msgid "Add New Product Category" -msgstr "Nieuwe productcategorie toevoegen" - -# @ woocommerce -#: includes/class-wc-post-types.php:72 -msgid "New Product Category Name" -msgstr "Nieuwe productcategorie naam" - -# @ woocommerce -#: includes/class-wc-post-types.php:95 includes/class-wc-post-types.php:97 -#: includes/widgets/class-wc-widget-product-tag-cloud.php:27 -msgid "Product Tags" -msgstr "Producttags" - -# @ woocommerce -#: includes/class-wc-post-types.php:99 -msgctxt "Admin menu name" -msgid "Tags" -msgstr "Tags" - -# @ woocommerce -#: includes/class-wc-post-types.php:100 -msgid "Search Product Tags" -msgstr "Zoek producttags" - -# @ woocommerce -#: includes/class-wc-post-types.php:101 -msgid "All Product Tags" -msgstr "Alle producttags" - -# @ woocommerce -#: includes/class-wc-post-types.php:102 -msgid "Parent Product Tag" -msgstr "Hoofdproducttag" - -# @ woocommerce -#: includes/class-wc-post-types.php:103 -msgid "Parent Product Tag:" -msgstr "Hoofdproducttag:" - -# @ woocommerce -#: includes/class-wc-post-types.php:104 -msgid "Edit Product Tag" -msgstr "Producttag bewerken" - -# @ woocommerce -#: includes/class-wc-post-types.php:105 -msgid "Update Product Tag" -msgstr "Producttag bijwerken" - -# @ woocommerce -#: includes/class-wc-post-types.php:106 -msgid "Add New Product Tag" -msgstr "Nieuwe producttag toevoegen" - -# @ woocommerce -#: includes/class-wc-post-types.php:107 -msgid "New Product Tag Name" -msgstr "Nieuwe producttag naam" - -# @ woocommerce -#: includes/class-wc-post-types.php:129 includes/class-wc-post-types.php:131 -msgid "Shipping Classes" -msgstr "Verzendingsklassen" - -# @ woocommerce -#: includes/class-wc-post-types.php:132 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:485 -msgid "Shipping Class" -msgstr "Verzendklassen" - -# @ woocommerce -#: includes/class-wc-post-types.php:133 -msgctxt "Admin menu name" -msgid "Shipping Classes" -msgstr "Verzendingsklassen" - -# @ woocommerce -#: includes/class-wc-post-types.php:134 -msgid "Search Shipping Classes" -msgstr "Zoek verzendingsklassen" - -# @ woocommerce -#: includes/class-wc-post-types.php:135 -msgid "All Shipping Classes" -msgstr "Alle Verzendingsklassen" - -# @ woocommerce -#: includes/class-wc-post-types.php:136 -msgid "Parent Shipping Class" -msgstr "Hoofdverzendingsklasse" - -# @ woocommerce -#: includes/class-wc-post-types.php:137 -msgid "Parent Shipping Class:" -msgstr "Hoofdverzendingsklasse:" - -# @ woocommerce -#: includes/class-wc-post-types.php:138 -msgid "Edit Shipping Class" -msgstr "Verzendingsklasse bewerken" - -# @ woocommerce -#: includes/class-wc-post-types.php:139 -msgid "Update Shipping Class" -msgstr "Verzendingsklasse bijwerken" - -# @ woocommerce -#: includes/class-wc-post-types.php:140 -msgid "Add New Shipping Class" -msgstr "Nieuwe verzendingsklasse toevoegen" - -# @ woocommerce -#: includes/class-wc-post-types.php:141 -msgid "New Shipping Class Name" -msgstr "Nieuwe verzendingsklassenaam" - -# @ woocommerce -#: includes/class-wc-post-types.php:189 -#, fuzzy, php-format -msgid "Search %s" -msgstr "Zoeken" - -#: includes/class-wc-post-types.php:190 -#, php-format -msgid "All %s" -msgstr "" - -# @ woocommerce -#: includes/class-wc-post-types.php:191 -#, fuzzy, php-format -msgid "Parent %s" -msgstr "Ouder" - -# @ woocommerce -#: includes/class-wc-post-types.php:192 -#, fuzzy, php-format -msgid "Parent %s:" -msgstr "Ouder" - -# @ default -# @ woocommerce -#: includes/class-wc-post-types.php:193 -#, fuzzy, php-format -msgid "Edit %s" -msgstr "Bewerken" - -# @ woocommerce -#: includes/class-wc-post-types.php:194 -#, fuzzy, php-format -msgid "Update %s" -msgstr "Bijwerken" - -# @ woocommerce -#: includes/class-wc-post-types.php:195 -#, fuzzy, php-format -msgid "Add New %s" -msgstr "Nieuwe toevoegen" - -# @ woocommerce -#: includes/class-wc-post-types.php:196 -#, fuzzy, php-format -msgid "New %s" -msgstr "New Jersey" - -# @ woocommerce -#: includes/class-wc-post-types.php:240 -msgctxt "Admin menu name" -msgid "Products" -msgstr "Producten" - -# @ woocommerce -#: includes/class-wc-post-types.php:241 -msgid "Add Product" -msgstr "Product toevoegen" - -# @ woocommerce -#: includes/class-wc-post-types.php:242 -msgid "Add New Product" -msgstr "Nieuw product toevoegen" - -# @ woocommerce -#: includes/class-wc-post-types.php:244 -msgid "Edit Product" -msgstr "Product bewerken" - -# @ woocommerce -#: includes/class-wc-post-types.php:245 -msgid "New Product" -msgstr "Nieuw product" - -# @ woocommerce -#: includes/class-wc-post-types.php:246 includes/class-wc-post-types.php:247 -msgid "View Product" -msgstr "Bekijk product" - -# @ woocommerce -#: includes/class-wc-post-types.php:248 -#: includes/widgets/class-wc-widget-product-search.php:27 -msgid "Search Products" -msgstr "Zoek producten" - -# @ woocommerce -#: includes/class-wc-post-types.php:249 -msgid "No Products found" -msgstr "Geen producten gevonden" - -# @ woocommerce -#: includes/class-wc-post-types.php:250 -msgid "No Products found in trash" -msgstr "Geen producten gevonden in de prullenbak" - -# @ woocommerce -#: includes/class-wc-post-types.php:251 -msgid "Parent Product" -msgstr "Hoofdproduct" - -# @ woocommerce -#: includes/class-wc-post-types.php:253 -msgid "This is where you can add new products to your store." -msgstr "Dit is waar u nieuwe producten kunt toevoegen aan uw winkel." - -# @ woocommerce -#: includes/class-wc-post-types.php:293 -msgid "Add Order" -msgstr "Bestelling toevoegen" - -# @ woocommerce -#: includes/class-wc-post-types.php:294 -msgid "Add New Order" -msgstr "Bestelling toevoegen" - -# @ woocommerce -#: includes/class-wc-post-types.php:296 -msgid "Edit Order" -msgstr "Bestelling bewerken" - -# @ woocommerce -#: includes/class-wc-post-types.php:297 -msgid "New Order" -msgstr "Nieuwe bestelling" - -# @ woocommerce -#: includes/class-wc-post-types.php:298 includes/class-wc-post-types.php:299 -msgid "View Order" -msgstr "Bekijk Bestelling" - -# @ woocommerce -#: includes/class-wc-post-types.php:300 -msgid "Search Orders" -msgstr "Zoek bestellingen" - -# @ woocommerce -#: includes/class-wc-post-types.php:301 -msgid "No Orders found" -msgstr "Geen bestellingen gevonden" - -# @ woocommerce -#: includes/class-wc-post-types.php:302 -msgid "No Orders found in trash" -msgstr "Geen bestellingen gevonden in de prullenbak" - -# @ woocommerce -#: includes/class-wc-post-types.php:303 -msgid "Parent Orders" -msgstr "Hoofd Bestellingen" - -# @ woocommerce -#: includes/class-wc-post-types.php:306 -msgid "This is where store orders are stored." -msgstr "Hier worden bestellingen opgeslagen." - -# @ woocommerce -#: includes/class-wc-post-types.php:330 -msgctxt "Admin menu name" -msgid "Coupons" -msgstr "Kortingsbonnen" - -# @ woocommerce -#: includes/class-wc-post-types.php:331 -msgid "Add Coupon" -msgstr "Kortingsbon toevoegen" - -# @ woocommerce -#: includes/class-wc-post-types.php:332 -msgid "Add New Coupon" -msgstr "Kortingsbon toevoegen" - -# @ woocommerce -#: includes/class-wc-post-types.php:334 -msgid "Edit Coupon" -msgstr "Kortingsbon bewerken" - -# @ woocommerce -#: includes/class-wc-post-types.php:335 -msgid "New Coupon" -msgstr "Nieuwe kortingsbon" - -# @ woocommerce -#: includes/class-wc-post-types.php:336 -msgid "View Coupons" -msgstr "Kortingsbonnen bekijken" - -# @ woocommerce -#: includes/class-wc-post-types.php:337 -msgid "View Coupon" -msgstr "Kortingsbonnen bekijken" - -# @ woocommerce -#: includes/class-wc-post-types.php:338 -msgid "Search Coupons" -msgstr "Zoek kortingsbonnen" - -# @ woocommerce -#: includes/class-wc-post-types.php:339 -msgid "No Coupons found" -msgstr "Geen kortingsbonnen gevonden" - -# @ woocommerce -#: includes/class-wc-post-types.php:340 -msgid "No Coupons found in trash" -msgstr "Geen coupons gevonden in de prullenbak" - -# @ woocommerce -#: includes/class-wc-post-types.php:341 -msgid "Parent Coupon" -msgstr "Hoofd Coupon" - -# @ woocommerce -#: includes/class-wc-post-types.php:343 -msgid "" -"This is where you can add new coupons that customers can use in your store." -msgstr "Hier kunt u nieuwe kortingscodes toevoegen." - -# @ woocommerce -#: includes/class-wc-product-external.php:56 -msgid "Buy product" -msgstr "Koop product" - -# @ woocommerce -#: includes/class-wc-product-variation.php:475 -#, php-format -msgid "%s – %s%s" -msgstr "%s – %s%s" - -#: includes/class-wc-shortcodes.php:984 -msgid "" -"Use $args[\"posts_per_page\"] instead. Deprecated argument will be removed " -"in WC 2.2." -msgstr "" - -# @ woocommerce -#: includes/wc-coupon-functions.php:22 templates/cart/totals.php:35 -#: templates/checkout/review-order.php:34 -msgid "Cart Discount" -msgstr "Winkelwagen Korting" - -# @ woocommerce -#: includes/wc-coupon-functions.php:23 -msgid "Cart % Discount" -msgstr "Winkelwagen % Korting" - -# @ woocommerce -#: includes/wc-coupon-functions.php:24 -msgid "Product Discount" -msgstr "Product Korting" - -# @ woocommerce -#: includes/wc-coupon-functions.php:25 -msgid "Product % Discount" -msgstr "Product Korting %" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:431 -#: includes/emails/class-wc-email-customer-completed-order.php:135 -#: includes/emails/class-wc-email-customer-invoice.php:138 -#: includes/emails/class-wc-email-new-order.php:115 -#: includes/gateways/bacs/class-wc-gateway-bacs.php:85 -#: includes/gateways/cheque/class-wc-gateway-cheque.php:57 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:130 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:120 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:76 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:75 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:50 -msgid "Enable/Disable" -msgstr "Activeer/Deactiveer" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:433 -#: includes/emails/class-wc-email-customer-completed-order.php:137 -#: includes/emails/class-wc-email-customer-invoice.php:140 -#: includes/emails/class-wc-email-new-order.php:117 -msgid "Enable this email notification" -msgstr "Activeer deze email notificatie" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:437 -#: includes/emails/class-wc-email-customer-invoice.php:144 -msgid "Email subject" -msgstr "Email onderwerp" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:439 -#: includes/abstracts/abstract-wc-email.php:446 -#: includes/emails/class-wc-email-customer-completed-order.php:143 -#: includes/emails/class-wc-email-customer-completed-order.php:150 -#: includes/emails/class-wc-email-customer-completed-order.php:157 -#: includes/emails/class-wc-email-customer-completed-order.php:164 -#: includes/emails/class-wc-email-customer-invoice.php:146 -#: includes/emails/class-wc-email-customer-invoice.php:153 -#: includes/emails/class-wc-email-customer-invoice.php:160 -#: includes/emails/class-wc-email-customer-invoice.php:167 -#, php-format -msgid "Defaults to %s" -msgstr "Standaard %s" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:444 -#: includes/emails/class-wc-email-customer-invoice.php:151 -msgid "Email heading" -msgstr "Email kop" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:451 -#: includes/emails/class-wc-email-customer-completed-order.php:169 -#: includes/emails/class-wc-email-customer-invoice.php:172 -#: includes/emails/class-wc-email-new-order.php:142 -msgid "Email type" -msgstr "Email type" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:453 -#: includes/emails/class-wc-email-customer-completed-order.php:171 -#: includes/emails/class-wc-email-customer-invoice.php:174 -#: includes/emails/class-wc-email-new-order.php:144 -msgid "Choose which format of email to send." -msgstr "Kies welk email formaat te versturen." - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:457 -#: includes/emails/class-wc-email-customer-completed-order.php:175 -#: includes/emails/class-wc-email-customer-invoice.php:178 -#: includes/emails/class-wc-email-new-order.php:148 -msgid "Plain text" -msgstr "Platte tekst" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:458 -#: includes/emails/class-wc-email-customer-completed-order.php:176 -#: includes/emails/class-wc-email-customer-invoice.php:179 -#: includes/emails/class-wc-email-new-order.php:149 -msgid "HTML" -msgstr "HTML" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:459 -#: includes/emails/class-wc-email-customer-completed-order.php:177 -#: includes/emails/class-wc-email-customer-invoice.php:180 -#: includes/emails/class-wc-email-new-order.php:150 -msgid "Multipart" -msgstr "Multipart" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:495 -#: includes/abstracts/abstract-wc-email.php:516 -msgid "Could not write to template file." -msgstr "Kan het template bestand niet schrijven." - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:543 -msgid "Template file copied to theme." -msgstr "Template bestand gekopieerd naar thema." - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:552 -msgid "Template file deleted from theme." -msgstr "Template bestand verwijderd in thema." - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:572 -msgid "HTML template" -msgstr "HTML template" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:573 -msgid "Plain text template" -msgstr "Tekst template" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:592 -msgid "Delete template file" -msgstr "Verwijder template bestand" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:595 -#, php-format -msgid "" -"This template has been overridden by your theme and can be found in: " -"%s." -msgstr "" -"Template overschreven door het thema, dit kan gevonden worden in %s." - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:610 -msgid "Copy file to theme" -msgstr "Kopieer bestand naar thema" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:613 -#, php-format -msgid "" -"To override and edit this email template copy %s to your theme " -"folder: %s." -msgstr "" -"Om het email template bestand te overrulen, kopieer %s naar de " -"thema map: %s." - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:624 -msgid "File was not found." -msgstr "Bestand niet gevonden." - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:649 -msgid "View template" -msgstr "Bekijk template" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:650 -msgid "Hide template" -msgstr "Verberg template" - -# @ woocommerce -#: includes/abstracts/abstract-wc-email.php:661 -msgid "Are you sure you want to delete this template file?" -msgstr "Weet u zeker dat u dit template bestand wilt verwijderen?" - -# @ woocommerce -#: includes/abstracts/abstract-wc-product.php:33 -msgid "" -"The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class " -"directly." -msgstr "" -"De WC_Product classe is nu abstract. Gebruik get_product()" -" om een instantie te initieren in plaats van de klasse te gebruiken." - -# @ woocommerce -#: includes/abstracts/abstract-wc-product.php:554 -#, php-format -msgid "Only %s left in stock" -msgstr "Nog %s op voorraad" - -# @ woocommerce -#: includes/abstracts/abstract-wc-product.php:557 -#, php-format -msgid "%s in stock" -msgstr "%s op voorraad" - -# @ woocommerce -#: includes/abstracts/abstract-wc-product.php:564 -msgid "(backorders allowed)" -msgstr "(backorders toegestaan)" - -# @ woocommerce -#: includes/abstracts/abstract-wc-product.php:570 -#: includes/abstracts/abstract-wc-product.php:583 templates/cart/cart.php:74 -msgid "Available on backorder" -msgstr "Verkrijgbaar als backorder." - -# @ woocommerce -#: includes/abstracts/abstract-wc-product.php:877 -msgctxt "min_price" -msgid "From:" -msgstr "Vanaf:" - -# @ woocommerce -#: includes/abstracts/abstract-wc-product.php:966 -#: templates/single-product-reviews.php:28 -#, php-format -msgid "Rated %s out of 5" -msgstr "Waardering %s op een schaal van 5" - -# @ woocommerce -#: includes/abstracts/abstract-wc-product.php:1295 -#, fuzzy, php-format -msgid "%s – %s" -msgstr "%s – %s%s" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-completed-order.php:24 -msgid "Completed order" -msgstr "Afgeronde bestelling" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-completed-order.php:25 -msgid "" -"Order complete emails are sent to the customer when the order is marked " -"complete and usual indicates that the order has been shipped." -msgstr "" -"Afgeronde bestelling email worden naar de klant gestuurd zodra de bestelling " -"op afgerond staat en geeft normaal aan dat de bestelling verzonden is." - -# @ woocommerce -#: includes/emails/class-wc-email-customer-completed-order.php:27 -msgid "Your order is complete" -msgstr "Uw bestelling is afgerond" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-completed-order.php:28 -msgid "Your {blogname} order from {order_date} is complete" -msgstr "Uw {blogname} bestelling op {order_date} is afgerond" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-completed-order.php:37 -msgid "Your order is complete - download your files" -msgstr "Uw order is afgerond, download de bestanden" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-completed-order.php:38 -msgid "" -"Your {blogname} order from {order_date} is complete - download your files" -msgstr "" -"Uw {blogname} bestelling op {order_date} is afgerond - download uw bestanden" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-completed-order.php:141 -#: includes/emails/class-wc-email-new-order.php:128 -msgid "Subject" -msgstr "Onderwerp" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-completed-order.php:148 -#: includes/emails/class-wc-email-new-order.php:135 -msgid "Email Heading" -msgstr "Email Kop" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-completed-order.php:155 -msgid "Subject (downloadable)" -msgstr "Onderwerp (download)" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-completed-order.php:162 -msgid "Email Heading (downloadable)" -msgstr "Email kop (downloadbaar)" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-invoice.php:27 -msgid "Customer invoice" -msgstr "Klant factuur" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-invoice.php:28 -msgid "" -"Customer invoice emails can be sent to the user containing order info and " -"payment links." -msgstr "" -"Klant factuur e-mails kunnen worden verzonden naar de gebruiker met " -"bestelling informatie en betaling links." - -# @ woocommerce -#: includes/emails/class-wc-email-customer-invoice.php:33 -msgid "Invoice for order {order_number} from {order_date}" -msgstr "Factuur voor bestelling {order_number} op {order_date}" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-invoice.php:34 -msgid "Invoice for order {order_number}" -msgstr "Factuur voor bestelling {order_number}" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-invoice.php:36 -msgid "Your {blogname} order from {order_date}" -msgstr "Uw {blogname} bestelling op {order_date}" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-invoice.php:37 -msgid "Order {order_number} details" -msgstr "Bestelling {order_number} details" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-invoice.php:158 -msgid "Email subject (paid)" -msgstr "Email onderwerp (betaald)" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-invoice.php:165 -msgid "Email heading (paid)" -msgstr "Email kop (betaald)" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-new-account.php:31 -msgid "New account" -msgstr "Nieuwe account" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-new-account.php:32 -msgid "" -"Customer new account emails are sent when a customer signs up via the " -"checkout or My Account page." -msgstr "" -"Nieuwe klant account emails worden verstuurd als een klant zich op geeft via " -"afrekenen of de Mijn Account pagina." - -# @ woocommerce -#: includes/emails/class-wc-email-customer-new-account.php:37 -msgid "Your account on {blogname}" -msgstr "Uw account op {blogname}" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-new-account.php:38 -msgid "Welcome to {blogname}" -msgstr "Welkom bij {blogname}" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-note.php:30 -msgid "Customer note emails are sent when you add a note to an order." -msgstr "" -"Klant notitie emails worden verzonden als u een notitie op de bestelling " -"maakt." - -# @ woocommerce -#: includes/emails/class-wc-email-customer-note.php:35 -msgid "Note added to your {blogname} order from {order_date}" -msgstr "Opmerking toegevoegd aan {blogname} bestelling van {order_date}" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-note.php:36 -msgid "A note has been added to your order" -msgstr "Een opmerking is toegevoegd aan uw bestelling" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-processing-order.php:24 -msgid "Processing order" -msgstr "Bestelling Verwerken" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-processing-order.php:25 -msgid "" -"This is an order notification sent to the customer after payment containing " -"order details." -msgstr "" -"Dit is een bestelling kennisgeving met bestel details welke naar een klant " -"verzonden wordt na betaling." - -# @ woocommerce -#: includes/emails/class-wc-email-customer-processing-order.php:27 -msgid "Thank you for your order" -msgstr "Bedankt voor uw bestelling" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-processing-order.php:28 -msgid "Your {blogname} order receipt from {order_date}" -msgstr "Uw {blogname} bestelling ontvangst van {order_date}" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-reset-password.php:36 -msgid "Reset password" -msgstr "Reset wachtwoord" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-reset-password.php:37 -msgid "" -"Customer reset password emails are sent when a customer resets their " -"password." -msgstr "" -"Klant reset wachtwoord e-mails worden verstuurd wanneer een klant zijn " -"wachtwoord reset." - -# @ woocommerce -#: includes/emails/class-wc-email-customer-reset-password.php:42 -msgid "Password Reset for {blogname}" -msgstr "Wachtwoord Reset voor {blogname}" - -# @ woocommerce -#: includes/emails/class-wc-email-customer-reset-password.php:43 -msgid "Password Reset Instructions" -msgstr "Wachtwoord Reset Instructies" - -# @ woocommerce -#: includes/emails/class-wc-email-new-order.php:24 -msgid "New order" -msgstr "Nieuwe bestelling" - -# @ woocommerce -#: includes/emails/class-wc-email-new-order.php:25 -msgid "New order emails are sent when an order is received/paid by a customer." -msgstr "" -"Nieuwe bestelling emails worden verzonden zodra een bestelling ontvangen/" -"betaald is." - -# @ woocommerce -#: includes/emails/class-wc-email-new-order.php:27 -msgid "New customer order" -msgstr "Nieuwe bestelling (door klant)" - -# @ woocommerce -#: includes/emails/class-wc-email-new-order.php:28 -msgid "[{blogname}] New customer order ({order_number}) - {order_date}" -msgstr "[{blogname}] Nieuwe klant bestelling ({order_number}) - {order_date}" - -# @ woocommerce -#: includes/emails/class-wc-email-new-order.php:121 -msgid "Recipient(s)" -msgstr "Ontvanger(s)" - -# @ woocommerce -#: includes/emails/class-wc-email-new-order.php:123 -#, php-format -msgid "" -"Enter recipients (comma separated) for this email. Defaults to %s." -msgstr "" -"Geef ontvangers op, door komma gescheidenm, voor deze email. Standaard: " -"%s." - -# @ woocommerce -#: includes/emails/class-wc-email-new-order.php:130 -#, php-format -msgid "" -"This controls the email subject line. Leave blank to use the default " -"subject: %s." -msgstr "" -"Hier stelt u het email onderwerp in. Laat leeg om het volgende onderwerp te " -"gebruiken: %s." - -# @ woocommerce -#: includes/emails/class-wc-email-new-order.php:137 -#, php-format -msgid "" -"This controls the main heading contained within the email notification. " -"Leave blank to use the default heading: %s." -msgstr "" -"Hier stelt u de koptekst in. Laat leeg om de volgende koptekst te gebruiken: " -"%s." - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:28 -msgid "Bacs" -msgstr "Bankoverschrijving" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:41 -#: includes/gateways/bacs/class-wc-gateway-bacs.php:110 -msgid "Account Name" -msgstr "Rekeninghouder" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:45 -#: includes/gateways/bacs/class-wc-gateway-bacs.php:116 -msgid "Account Number" -msgstr "Rekeningnummer" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:49 -#: includes/gateways/bacs/class-wc-gateway-bacs.php:122 -msgid "Sort Code" -msgstr "Sorteercode" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:53 -#: includes/gateways/bacs/class-wc-gateway-bacs.php:128 -msgid "Bank Name" -msgstr "Banknaam" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:57 -#: includes/gateways/bacs/class-wc-gateway-bacs.php:134 -msgid "IBAN" -msgstr "IBAN" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:61 -msgid "BIC" -msgstr "BIC" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:87 -msgid "Enable Bank Transfer" -msgstr "Activeer bankoverschrijving" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:91 -#: includes/gateways/cheque/class-wc-gateway-cheque.php:63 -#: includes/gateways/cod/class-wc-gateway-cod.php:87 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:143 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:126 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:104 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:84 -#: includes/widgets/class-wc-widget-cart.php:30 -#: includes/widgets/class-wc-widget-layered-nav-filters.php:28 -#: includes/widgets/class-wc-widget-layered-nav.php:74 -#: includes/widgets/class-wc-widget-price-filter.php:30 -#: includes/widgets/class-wc-widget-product-categories.php:31 -#: includes/widgets/class-wc-widget-product-categories.php:36 -#: includes/widgets/class-wc-widget-product-search.php:28 -#: includes/widgets/class-wc-widget-product-tag-cloud.php:28 -#: includes/widgets/class-wc-widget-products.php:28 -#: includes/widgets/class-wc-widget-recent-reviews.php:28 -#: includes/widgets/class-wc-widget-recently-viewed.php:28 -#: includes/widgets/class-wc-widget-top-rated-products.php:30 -msgid "Title" -msgstr "Titel" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:93 -#: includes/gateways/cheque/class-wc-gateway-cheque.php:65 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:145 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:128 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:84 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:83 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:58 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:106 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:86 -msgid "This controls the title which the user sees during checkout." -msgstr "Dit bepaalt welke titel de gebruiker ziet tijdens het afrekenen." - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:94 -msgid "Direct Bank Transfer" -msgstr "Overschrijving" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:98 -#: includes/gateways/cheque/class-wc-gateway-cheque.php:70 -msgid "Customer Message" -msgstr "Klantbericht" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:100 -msgid "" -"Give the customer instructions for paying via BACS, and let them know that " -"their order won't be shipping until the money is received." -msgstr "" -"Geef de klant instructies hoe door middel van bankoverschrijving te betalen " -"en leg uit dat de bestelling niet verzonden wordt voor het geld ontvangen is." - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:101 -#, fuzzy -msgid "" -"Make your payment directly into our bank account. Please use your Order ID " -"as the payment reference. Your order won't be shipped until the funds have " -"cleared in our account." -msgstr "" -"U kunt uw betaling direct overschrijven naar onze bankrekening. Gelieve uw " -"bestelnummer te gebruiken als de betalingsreferentie. Uw bestelling wordt " -"pas verstuurd als de betaling binnen is." - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:104 -msgid "Account Details" -msgstr "Account Details" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:106 -msgid "Optionally enter your bank details below for customers to pay into." -msgstr "Optioneel: geef uw bankrekening gegevens hieronder in." - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:139 -msgid "BIC (formerly Swift)" -msgstr "BIC (voorheen Swift)" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:158 -msgid "BACS Payment" -msgstr "BACS betaling" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:159 -msgid "" -"Allows payments by BACS (Bank Account Clearing System), more commonly known " -"as direct bank/wire transfer." -msgstr "" -"Sta toe dat klanten BACS (Bank Account Clearing System) gebruiken. Deze " -"manier is tevens bekend als bankoverschrijving." - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:180 -#: includes/gateways/bacs/class-wc-gateway-bacs.php:215 -msgid "Our Details" -msgstr "Onze gegevens" - -# @ woocommerce -#: includes/gateways/bacs/class-wc-gateway-bacs.php:242 -msgid "Awaiting BACS payment" -msgstr "Wachten op bankoverschrijving" - -# @ woocommerce -#: includes/gateways/cheque/class-wc-gateway-cheque.php:28 -msgid "Cheque" -msgstr "Cheque" - -# @ woocommerce -#: includes/gateways/cheque/class-wc-gateway-cheque.php:59 -msgid "Enable Cheque Payment" -msgstr "Activeer cheque betaling" - -# @ woocommerce -#: includes/gateways/cheque/class-wc-gateway-cheque.php:66 -#: includes/gateways/cheque/class-wc-gateway-cheque.php:90 -msgid "Cheque Payment" -msgstr "Cheque Betaling" - -# @ woocommerce -#: includes/gateways/cheque/class-wc-gateway-cheque.php:72 -msgid "" -"Let the customer know the payee and where they should be sending the cheque " -"to and that their order won't be shipping until you receive it." -msgstr "Informeer de klant over hoe de cheque betaling af te ronden." - -# @ woocommerce -#: includes/gateways/cheque/class-wc-gateway-cheque.php:73 -msgid "" -"Please send your cheque to Store Name, Store Street, Store Town, Store " -"State / County, Store Postcode." -msgstr "" -"Gelieve uw cheque te sturen naar: Winkel Naam, Winkel Adres, Winkel Postcode " -"Winkel Stad." - -# @ woocommerce -#: includes/gateways/cheque/class-wc-gateway-cheque.php:91 -msgid "" -"Allows cheque payments. Why would you take cheques in this day and age? Well " -"you probably wouldn't but it does allow you to make test purchases for " -"testing order emails and the 'success' pages etc." -msgstr "Sta cheque betalingen toe." - -# @ woocommerce -#: includes/gateways/cheque/class-wc-gateway-cheque.php:147 -msgid "Awaiting cheque payment" -msgstr "Wachten op cheque betaling" - -# @ woocommerce -#: includes/gateways/cod/class-wc-gateway-cod.php:27 -#: includes/gateways/cod/class-wc-gateway-cod.php:54 -#: includes/gateways/cod/class-wc-gateway-cod.php:90 -msgid "Cash on Delivery" -msgstr "Onder rembours" - -# @ woocommerce -#: includes/gateways/cod/class-wc-gateway-cod.php:55 -msgid "Have your customers pay with cash (or by other means) upon delivery." -msgstr "" -"Laat uw klanten betalen bij de levering (cash of op een andere manier)." - -# @ woocommerce -#: includes/gateways/cod/class-wc-gateway-cod.php:80 -msgid "Enable COD" -msgstr "Activeer Rembours" - -# @ woocommerce -#: includes/gateways/cod/class-wc-gateway-cod.php:81 -msgid "Enable Cash on Delivery" -msgstr "Schakel betalen onder rembours in" - -# @ woocommerce -#: includes/gateways/cod/class-wc-gateway-cod.php:89 -msgid "Payment method title that the customer will see on your website." -msgstr "Naam van de betalingsgateway die de klant ziet op uw website." - -# @ woocommerce -#: includes/gateways/cod/class-wc-gateway-cod.php:96 -msgid "Payment method description that the customer will see on your website." -msgstr "Omschrijving van de betalingsmethode die de klant ziet op uw website." - -# @ woocommerce -#: includes/gateways/cod/class-wc-gateway-cod.php:97 -#: includes/gateways/cod/class-wc-gateway-cod.php:103 -msgid "Pay with cash upon delivery." -msgstr "Rembours." - -# @ woocommerce -#: includes/gateways/cod/class-wc-gateway-cod.php:100 -msgid "Instructions" -msgstr "Instructies" - -# @ woocommerce -#: includes/gateways/cod/class-wc-gateway-cod.php:102 -msgid "Instructions that will be added to the thank you page." -msgstr "Instructies die getoond worden op de \"Dank u\"-pagina." - -# @ woocommerce -#: includes/gateways/cod/class-wc-gateway-cod.php:106 -msgid "Enable for shipping methods" -msgstr "Activeer voor verzend methoden" - -# @ woocommerce -#: includes/gateways/cod/class-wc-gateway-cod.php:111 -msgid "" -"If COD is only available for certain methods, set it up here. Leave blank to " -"enable for all methods." -msgstr "" -"Als Rembours niet voor alle typen verzending mogelijk is, dient u dit " -"hieronder in te stellen. Laat leegt voor actief op alle methoden." - -# @ woocommerce -#: includes/gateways/cod/class-wc-gateway-cod.php:176 -msgid "Payment to be made upon delivery." -msgstr "Betalen bij levering." - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:31 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:168 -msgid "Mijireh Checkout" -msgstr "Mijireh Checkout" - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:108 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:293 -msgid "Mijireh error:" -msgstr "Mijireh fout:" - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:132 -msgid "Enable Mijireh Checkout" -msgstr "Schakel Mijireh Checkout in" - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:136 -msgid "Access Key" -msgstr "Toegangsleutel" - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:138 -msgid "The Mijireh access key for your store." -msgstr "De Mijireh “access key” voor uw webshop." - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:146 -msgid "Credit Card" -msgstr "Creditcard" - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:152 -#, fuzzy -msgid "Pay securely with your credit card." -msgstr "Betaal veilig met uw creditcard." - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:153 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:135 -msgid "This controls the description which the user sees during checkout." -msgstr "Dit bepaalt de beschrijving die de gebruiker ziet bij het afrekenen." - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:172 -msgid "Get started with Mijireh Checkout" -msgstr "Aan de slag met Mijireh Checkout" - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:173 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site. Mijireh supports a wide variety of payment gateways: Stripe, " -"Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and more." -msgstr "" -"verzorgd een PCI Compliant, veilige manier voor het verzamelen en verzenden " -"van creditcard data aan de betalings gateway terwijl u in controle van het " -"ontwerp van uw website. Mijireh ondersteund een wijde variateit aan " -"betalings gateways: Stripe, Authorize.net, PayPal, eWay, SagePay, Braintree, " -"PayLeap en meer." - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:175 -msgid "Join for free" -msgstr "Schrijf je gratis in" - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:175 -msgid "Learn more about WooCommerce and Mijireh" -msgstr "Meer info over WooCommerce en Mijireh" - -# @ woocommerce -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:179 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site." -msgstr "" -"verzorgd een PCI Compliant, veilige manier voor het verzamelen en verzenden " -"van creditcard data aan de betalings gateway terwijl u in controle van het " -"ontwerp van uw website. " - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:34 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:129 -msgid "PayPal" -msgstr "PayPal" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:91 -msgid "PayPal standard" -msgstr "PayPal standaard" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:92 -msgid "" -"PayPal standard works by sending the user to PayPal to enter their payment " -"information." -msgstr "" -"PayPal standaard werkt door de klant door te sturen naar PayPal om de " -"betaling uit te voeren." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:104 -msgid "Gateway Disabled" -msgstr "Gateway Uitgeschakeld" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:104 -msgid "PayPal does not support your store currency." -msgstr "PayPal ondersteunt de valuta van uw winkel niet." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:122 -msgid "Enable PayPal standard" -msgstr "Activeer PayPal standaard" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:136 -msgid "" -"Pay via PayPal; you can pay with your credit card if you don't have a PayPal " -"account" -msgstr "" -"Betaal via PayPal; u kunt met een credit card betalen als u geen PayPal-" -"account heeft." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:139 -msgid "PayPal Email" -msgstr "PayPal E-mail" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:141 -msgid "" -"Please enter your PayPal email address; this is needed in order to take " -"payment." -msgstr "" -"Vul uw PayPal e-mailadres in; dit is nodig om de betaling te volbrengen." - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:147 -msgid "Receiver Email" -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:149 -msgid "" -"If this differs from the email entered above, input your main receiver email " -"for your PayPal account. This is used to validate IPN requests." -msgstr "" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:155 -msgid "Invoice Prefix" -msgstr "Factuur Prefix" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:157 -msgid "" -"Please enter a prefix for your invoice numbers. If you use your PayPal " -"account for multiple stores ensure this prefix is unique as PayPal will not " -"allow orders with the same invoice number." -msgstr "" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:162 -msgid "Submission method" -msgstr "Submissie methode" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:164 -msgid "Use form submission method." -msgstr "Gebruik formulier submissie methode." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:165 -msgid "" -"Enable this to post order data to PayPal via a form instead of using a " -"redirect/querystring." -msgstr "" -"Schakel dit in om bestelling gegevens naar PayPal via een formulier in " -"plaats van het gebruik van een redirect / querystring te plaatsen." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:169 -msgid "Page Style" -msgstr "Paginastijl" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:171 -msgid "" -"Optionally enter the name of the page style you wish to use. These are " -"defined within your PayPal account." -msgstr "" -"Optioneel: geef een naam van de gewenste pagina stijling op. Deze worden " -"gedefinieerd door uw PayPal-rekening." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:174 -msgid "Optional" -msgstr "Optioneel" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:177 -msgid "Shipping options" -msgstr "Verzend Opties" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:182 -msgid "Shipping details" -msgstr "Verzendinformatie" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:184 -msgid "Send shipping details to PayPal instead of billing." -msgstr "Stuur verzendgegevens naar PayPal in plaats van facturering." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:186 -msgid "" -"PayPal allows us to send 1 address. If you are using PayPal for shipping " -"labels you may prefer to send the shipping address rather than billing." -msgstr "" -"PayPal stelt ons in staat om naar 1 adres te sturen. Als u gebruik maakt van " -"PayPal voor verzending labels kunt u ervoor kiezen om naar het afleveradres " -"in plaats van facturering te sturen." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:190 -msgid "Address override" -msgstr "Adres overschrijven" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:192 -msgid "" -"Enable \"address_override\" to prevent address information from being " -"changed." -msgstr "Activeer \"address_override\" om adres wijzigingen te blokkeren." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:193 -msgid "" -"PayPal verifies addresses therefore this setting can cause errors (we " -"recommend keeping it disabled)." -msgstr "" -"PayPal verifieerd adressen daarom kan deze instelling voor problemen zorgen. " -"(u wordt aanbevolen deze uit te laten staan)" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:197 -msgid "Gateway Testing" -msgstr "Gateway Testen" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:202 -msgid "PayPal sandbox" -msgstr "PayPal sandbox" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:204 -msgid "Enable PayPal sandbox" -msgstr "Activeer PayPal sandbox" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:206 -#, php-format -msgid "" -"PayPal sandbox can be used to test payments. Sign up for a developer account " -"here." -msgstr "" -"De PayPal Sandbox kan gebruikt worden om betalingen te testen. Geef je hier op voor een developer account." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:209 -msgid "Debug Log" -msgstr "Debuglog" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:211 -msgid "Enable logging" -msgstr "Schakel log in" - -# @ default -#: includes/gateways/paypal/class-wc-gateway-paypal.php:213 -#, fuzzy, php-format -msgid "" -"Log PayPal events, such as IPN requests, inside woocommerce/logs/" -"paypal-%s.txt" -msgstr "" -"Logt PayPal gebeurtenissen, zoals IPN requests, in woocommerce/logs/" -"paypal.txt" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:332 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:386 -msgid "Shipping via" -msgstr "Verzending via" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:427 -msgid "" -"Thank you for your order. We are now redirecting you to PayPal to make " -"payment." -msgstr "" -"Bedankt voor uw bestelling. Wij sturen u nu door naar PayPal om uw betaling " -"over te maken." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:452 -msgid "Pay via PayPal" -msgstr "Betaal met PayPal" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:452 -msgid "Cancel order & restore cart" -msgstr "Bestelling annuleren & winkelwagen herstellen" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:510 -#, fuzzy -msgid "" -"Thank you - your order is now pending payment. You should be automatically " -"redirected to PayPal to make payment." -msgstr "" -"Bedankt voor uw bestelling. Wij sturen u nu door naar PayPal om uw betaling " -"over te maken." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:653 -#, php-format -msgid "Validation error: PayPal amounts do not match (gross %s)." -msgstr "Validatie fout: PayPal hoeveelheden komen niet overeen (%s)." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:664 -#, fuzzy, php-format -msgid "" -"Validation error: PayPal IPN response from a different email address (%s)." -msgstr "Validatie fout: PayPal hoeveelheden komen niet overeen (%s)." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:682 -msgid "IPN payment completed" -msgstr "IPN betaling voltooid" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:685 -#, fuzzy, php-format -msgid "Payment pending: %s" -msgstr "Betalingsmethode:" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:697 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:705 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:723 -#, php-format -msgid "Payment %s via IPN." -msgstr "Betaling %s via IPN." - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:710 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:728 -msgid "Order refunded/reversed" -msgstr "Bestelling terugbetaald" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:711 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:729 -#, php-format -msgid "Order %s has been marked as refunded - PayPal reason code: %s" -msgstr "Bestelling %s is gemarkeerd als terugbetaald. PayPal reden code: %s" - -# @ woocommerce -#: includes/gateways/paypal/class-wc-gateway-paypal.php:714 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:732 -#, php-format -msgid "Payment for order %s refunded/reversed" -msgstr "Betaling voor bestelling %s is teruggedraait" - -# @ woocommerce -#: includes/integrations/google-analytics/class-wc-google-analytics.php:26 -msgid "Google Analytics" -msgstr "Google Analytics" - -# @ woocommerce -#: includes/integrations/google-analytics/class-wc-google-analytics.php:27 -msgid "" -"Google Analytics is a free service offered by Google that generates detailed " -"statistics about the visitors to a website." -msgstr "" -"Google Analytics is een gratis dienst van Google met gedetailleerde " -"statistieken over uw websitebezoekers." - -# @ woocommerce -#: includes/integrations/google-analytics/class-wc-google-analytics.php:63 -msgid "Google Analytics ID" -msgstr "Google Analytics ID" - -# @ woocommerce -#: includes/integrations/google-analytics/class-wc-google-analytics.php:64 -msgid "" -"Log into your google analytics account to find your ID. e.g. UA-XXXXX-" -"X" -msgstr "" -"Log in op uw Google Analytics-account om uw ID te vinden. bijv. UA-" -"XXXXX-X" - -# @ woocommerce -#: includes/integrations/google-analytics/class-wc-google-analytics.php:69 -#, fuzzy -msgid "Set Domain Name" -msgstr "Bedrijfsnaam" - -#: includes/integrations/google-analytics/class-wc-google-analytics.php:70 -#, php-format -msgid "" -"(Optional) Sets the _setDomainName variable. See " -"here for more information." -msgstr "" - -# @ woocommerce -#: includes/integrations/google-analytics/class-wc-google-analytics.php:75 -msgid "Tracking code" -msgstr "Traceercode" - -# @ woocommerce -#: includes/integrations/google-analytics/class-wc-google-analytics.php:76 -msgid "" -"Add tracking code to your site's footer. You don't need to enable this if " -"using a 3rd party analytics plugin." -msgstr "" -"De tracking code toevoegen in de site footer. Niet nodig als u hiervoor al " -"een andere plugin gebruikt." - -# @ woocommerce -#: includes/integrations/google-analytics/class-wc-google-analytics.php:82 -msgid "Add eCommerce tracking code to the thankyou page" -msgstr "eCommerce tracking code toevoegen aan de \"Bedankt\"-pagina" - -# @ woocommerce -#: includes/integrations/google-analytics/class-wc-google-analytics.php:88 -msgid "Add event tracking code for add to cart actions" -msgstr "Voeg Event Tracking codes toe aan add to cart acties" - -# @ woocommerce -#: includes/integrations/google-analytics/class-wc-google-analytics.php:218 -#: includes/integrations/google-analytics/class-wc-google-analytics.php:275 -#: templates/single-product/meta.php:19 -msgid "SKU:" -msgstr "SKU:" - -# @ woocommerce -#: includes/integrations/google-analytics/class-wc-google-analytics.php:294 -msgid "Add to Cart" -msgstr "Kopen" - -# @ woocommerce -#: includes/integrations/sharedaddy/class-wc-sharedaddy.php:26 -msgid "ShareDaddy" -msgstr "ShareDaddy" - -# @ woocommerce -#: includes/integrations/sharedaddy/class-wc-sharedaddy.php:27 -msgid "ShareDaddy is a sharing plugin bundled with JetPack." -msgstr "ShareDaddy is een sharing plugin samen met JetPack." - -# @ woocommerce -#: includes/integrations/sharedaddy/class-wc-sharedaddy.php:51 -msgid "Output ShareDaddy button?" -msgstr "ShareDaddy knop tonen?" - -# @ woocommerce -#: includes/integrations/sharedaddy/class-wc-sharedaddy.php:52 -msgid "Enable this option to show the ShareDaddy button on the product page." -msgstr "Schakel in om een ShareDaddy-knop te tonen op de productpagina." - -# @ woocommerce -#: includes/integrations/sharethis/class-wc-sharethis.php:29 -msgid "ShareThis" -msgstr "ShareThis" - -# @ woocommerce -#: includes/integrations/sharethis/class-wc-sharethis.php:30 -msgid "" -"ShareThis offers a sharing widget which will allow customers to share links " -"to products with their friends." -msgstr "" -"ShareThis geeft de mogelijkheid om een widget aan de product pagina toe te " -"voegen welke de bezoeker de mogelijkheid geeft de producten met hun vrienden " -"op sociale media te delen." - -# @ woocommerce -#: includes/integrations/sharethis/class-wc-sharethis.php:63 -msgid "ShareThis Publisher ID" -msgstr "ShareThis Publisher ID" - -# @ woocommerce -#: includes/integrations/sharethis/class-wc-sharethis.php:64 -#, php-format -msgid "" -"Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons on " -"product pages." -msgstr "" -"Voer uw %1$sShareThis publisher ID%2$s in om social media buttons op " -"productpagina's te activeren." - -# @ woocommerce -#: includes/integrations/sharethis/class-wc-sharethis.php:69 -msgid "ShareThis Code" -msgstr "ShareThis Code" - -# @ woocommerce -#: includes/integrations/sharethis/class-wc-sharethis.php:70 -msgid "You can tweak the ShareThis code by editing this option." -msgstr "U kan de ShareThis code aanpassen met behulp van de opties hieronder." - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:25 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:85 -msgid "Flat Rate" -msgstr "Vast Bedrag" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:27 -msgid "Flat rates let you define a standard rate per item, or per order." -msgstr "" -"Vast bedrag staat toe om een vast bedrag per product of per bestelling te " -"kiezen." - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:78 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:52 -msgid "Enable this shipping method" -msgstr "Deze verzendmethode activeren" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:82 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:81 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:56 -msgid "Method Title" -msgstr "Methodenaam" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:89 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:63 -msgid "Availability" -msgstr "Beschikbaarheid" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:94 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:93 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:148 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:104 -msgid "All allowed countries" -msgstr "Alle toegestane landen" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:116 -msgid "Cost per order" -msgstr "Kost per bestelling" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:122 -msgid "" -"Enter a cost (excluding tax) per order, e.g. 5.00. Leave blank to disable." -msgstr "" -"Behandelingskosten per bestelling, bv. 5.00. Leeg laten indien niet van " -"toepassing." - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:128 -#, fuzzy -msgid "Additional Rates" -msgstr "Additionele Informatie" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:130 -#, fuzzy -msgid "" -"Optional extra shipping options with additional costs (one per line): Option " -"Name | Additional Cost | Per Cost Type (order, class, or item) Example: " -"Priority Mail | 6.95 | order." -msgstr "" -"Optioneel extra verzendingsopties zoals kosten per regel. Bijvoorbeeld: " -"Optie Naam|Kosten|Per-order (ja/nee). Als per-order op no " -"staat, gebruikt het de \"Calculation Type\" instelling." - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:133 -msgid "Option Name | Additional Cost | Per Cost Type (order, class, or item)" -msgstr "" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:136 -#, fuzzy -msgid "Additional Costs" -msgstr "Additionele Informatie" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:138 -msgid "" -"Additional costs can be added below - these will all be added to the per-" -"order cost above." -msgstr "" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:141 -msgid "Costs Added..." -msgstr "" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:145 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:94 -msgid "Per Order - charge shipping for the entire order as a whole" -msgstr "Per bestelling" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:146 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:95 -msgid "Per Item - charge shipping for each item individually" -msgstr "Per product" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:147 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:96 -msgid "Per Class - charge shipping for each shipping class in an order" -msgstr "Per verzendingsklasse" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:154 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:120 -#, fuzzy -msgid "Minimum Handling Fee" -msgstr "Behandelingskosten" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:160 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:126 -msgid "" -"Enter a minimum fee amount. Fee's less than this will be increased. Leave " -"blank to disable." -msgstr "" -"Voer een minimumkost in. Kosten minder dan dit bedrag zullen vermeerderd " -"worden. Laat leeg om uit te schakelen." - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:479 -#, fuzzy -msgid "Costs" -msgstr "Prijs" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:486 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:100 -msgid "Cost" -msgstr "Prijs" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:486 -msgid "Cost, excluding tax." -msgstr "Kosten excl. BTW." - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:487 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:112 -msgid "Handling Fee" -msgstr "Behandelingskosten" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:487 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -msgstr "Kosten ex belasting. Als bedrag (bv 2.50) of procenten (bv 5%)." - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:492 -#, fuzzy -msgid "+ Add Cost" -msgstr "Kortingsbon toevoegen" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:492 -#, fuzzy -msgid "Delete selected costs" -msgstr "Verwijder de geselecteerde tarieven" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:498 -#, fuzzy -msgid "Any class" -msgstr "Alle %s" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:518 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:548 -msgid "Select a class…" -msgstr "Selecteer een klasse …" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:523 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:524 -msgid "0.00" -msgstr "0.00" - -# @ woocommerce -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:562 -msgid "Delete the selected rates?" -msgstr "Verwijderd de geselecteerde tarieven?" - -# @ woocommerce -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:25 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:84 -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:145 -msgid "Free Shipping" -msgstr "Gratis Verzending" - -# @ woocommerce -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:77 -msgid "Enable Free Shipping" -msgstr "Activeer gratis verzending" - -# @ woocommerce -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:88 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:143 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:99 -msgid "Method availability" -msgstr "Methode beschikbaarheid" - -# @ woocommerce -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:106 -msgid "Free Shipping Requires..." -msgstr "Gratis verzending eisen" - -# @ woocommerce -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:111 -msgid "A valid free shipping coupon" -msgstr "Een geldig gratis verzending kortingsbon" - -# @ woocommerce -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:112 -msgid "A minimum order amount (defined below)" -msgstr "minimum bestel bedrag (zoals hieronder gedefinieerd)" - -# @ woocommerce -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:113 -msgid "A minimum order amount OR a coupon" -msgstr "Minimum Bestelbedrag" - -# @ woocommerce -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:114 -msgid "A minimum order amount AND a coupon" -msgstr "Minimum Bestelbedrag" - -# @ woocommerce -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:118 -msgid "Minimum Order Amount" -msgstr "Minimum Bestelbedrag" - -# @ woocommerce -#: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:124 -msgid "" -"Users will need to spend this amount to get free shipping (if enabled above)." -msgstr "" -"Klanten moeten dit bedrag besteden om gratis verzending te krijgen (indien " -"geactiveerd)." - -# @ woocommerce -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:29 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:59 -msgid "International Delivery" -msgstr "Internationale Bezorging" - -# @ woocommerce -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:30 -msgid "International delivery based on flat rate shipping." -msgstr "" -"Internationale levering is gebaseerd op een vast bedrag als verzendkosten. " - -# @ woocommerce -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:68 -msgid "Selected countries" -msgstr "Geselecteerde landen" - -# @ woocommerce -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:69 -msgid "Excluding selected countries" -msgstr "Exclusief geselecteerde landen" - -# @ woocommerce -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:73 -msgid "Countries" -msgstr "Landen" - -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:90 -msgid "Cost Added..." -msgstr "" - -# @ woocommerce -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:106 -msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -msgstr "Prijs excl. BTW" - -# @ woocommerce -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:114 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. " -"Leave blank to disable." -msgstr "" -"Behandelingskosten excl. BTW. Vul een bedrag in of percentage (bv 5%). Leeg " -"laten voor 0." - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:25 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:107 -msgid "Local Delivery" -msgstr "Lokale Bezorging" - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:98 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:78 -msgid "Enable" -msgstr "Activeer" - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:100 -msgid "Enable local delivery" -msgstr "Activeer lokale bezorging" - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:111 -msgid "Fee Type" -msgstr "Kosten Type" - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:113 -msgid "How to calculate delivery charges" -msgstr "Hoe bezorgingskosten berekenen" - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 -msgid "Fixed amount" -msgstr "Vast bedrag" - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:117 -msgid "Percentage of cart total" -msgstr "Percentage van winkelwagentotaal" - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:118 -msgid "Fixed amount per product" -msgstr "Vast bedrag per product" - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:123 -msgid "Delivery Fee" -msgstr "Leverkosten" - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:129 -msgid "" -"What fee do you want to charge for local delivery, disregarded if you choose " -"free. Leave blank to disable." -msgstr "" -"Welke vergoeding wil je in rekening brengen voor lokale levering. Laat leeg " -"om the deactiveren." - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:135 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:91 -msgid "Zip/Post Codes" -msgstr "Postcodes" - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:137 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:93 -msgid "" -"What zip/post codes would you like to offer delivery to? Separate codes with " -"a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -msgstr "" -"Welke postcodes wil je hiervoor toestaan? Komma gescheiden, wilcards " -"bijvoorbeeld 468* zijn ook mogelijk." - -# @ woocommerce -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:172 -msgid "" -"Local delivery is a simple shipping method for delivering orders locally." -msgstr "" -"Local delivery is een eenvoudige verzendmethode voor het leveren van " -"bestellingen ter plaatse." - -# @ woocommerce -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:25 -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:87 -msgid "Local Pickup" -msgstr "Afhalen" - -# @ woocommerce -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:80 -msgid "Enable local pickup" -msgstr "Activeer afhalen" - -# @ woocommerce -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:117 -msgid "Apply base tax rate" -msgstr "Basis belasting tarief" - -# @ woocommerce -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:119 -msgid "" -"When this shipping method is chosen, apply the base tax rate rather than for " -"the customer's given address." -msgstr "" -"Als een verzend methoden gekozen is, pas de standaard BTW toe ipv de voor de " -"klant geldend tarief." - -# @ woocommerce -#: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:134 -msgid "" -"Local pickup is a simple method which allows the customer to pick up their " -"order themselves." -msgstr "" -"Ophalen is een simpele methode welke de klant toestaat om de bestelling op " -"te komen halen." - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-cart.php:64 -#: includes/shortcodes/class-wc-shortcode-cart.php:70 -msgid "Shipping costs updated." -msgstr "Verzendkosten bijgewerkt." - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-checkout.php:103 -#: includes/shortcodes/class-wc-shortcode-checkout.php:153 -msgid "" -"Your order has already been paid for. Please contact us if you need " -"assistance." -msgstr "" -"Er is reeds een betaling gebeurd voor deze bestelling. Neem contact met ons " -"op als u hulp nodig heeft." - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-checkout.php:129 -#: templates/checkout/thankyou.php:44 -msgid "Date:" -msgstr "Datum:" - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-checkout.php:138 -#: templates/checkout/thankyou.php:53 -msgid "Payment method:" -msgstr "Betalingsmethode:" - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-checkout.php:225 -msgid "" -"The order totals have been updated. Please confirm your order by pressing " -"the Place Order button at the bottom of the page." -msgstr "" -"De bestellingstotalen zijn bijgewerkt. Gelieve uw bestelling te bevestigen " -"door op de Plaats Bestelling knop te klikken onderaan de pagina." - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-lost-password.php:78 -msgid "Please enter your password." -msgstr "Vul a.u.b. uw wachtwoord in." - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-lost-password.php:93 -msgid "Your password has been reset." -msgstr "Uw wachtwoord is gereset." - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-lost-password.php:93 -msgid "Log in" -msgstr "Login" - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-lost-password.php:114 -msgid "Enter a username or e-mail address." -msgstr "Voer een username of email-adres in." - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-lost-password.php:121 -msgid "There is no user registered with that email address." -msgstr "Er bestaat geen geregistreerde gebruiker met dit e-mailadres." - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-lost-password.php:136 -msgid "Invalid username or e-mail." -msgstr "Ongeldige gebruikersnaam of e-mailadres." - -# @ default -#: includes/shortcodes/class-wc-shortcode-lost-password.php:150 -msgid "Password reset is not allowed for this user" -msgstr "Wachtwoord reset is niet toegestaan ​​voor deze gebruiker" - -# @ default -#: includes/shortcodes/class-wc-shortcode-lost-password.php:178 -msgid "Check your e-mail for the confirmation link." -msgstr "Controleer uw e-mail voor de bevestigingslink." - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-lost-password.php:198 -#: includes/shortcodes/class-wc-shortcode-lost-password.php:203 -#: includes/shortcodes/class-wc-shortcode-lost-password.php:210 -msgid "Invalid key" -msgstr "Ongeldige sleutel" - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-my-account.php:86 -#: includes/shortcodes/class-wc-shortcode-view-order.php:51 -msgid "My Account →" -msgstr "Mijn Account →" - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-my-account.php:93 -#: includes/shortcodes/class-wc-shortcode-view-order.php:58 -#, php-format -msgid "" -"Order %s made on %s" -msgstr "" -"Bestelling %s geplaatst op %s" - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-my-account.php:94 -#: includes/shortcodes/class-wc-shortcode-view-order.php:59 -#, php-format -msgid "Order status: %s" -msgstr "Bestelling status: %s" - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-my-account.php:99 -#: includes/shortcodes/class-wc-shortcode-view-order.php:65 -#: templates/order/tracking.php:31 -msgid "Order Updates" -msgstr "Bestellingsupdates" - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-my-account.php:105 -#: includes/shortcodes/class-wc-shortcode-view-order.php:71 -#: templates/order/tracking.php:37 -msgid "l jS \\of F Y, h:ia" -msgstr "l jS \\of F Y, h:ia" - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-order-tracking.php:51 -msgid "Please enter a valid order ID" -msgstr "Gelieve een geldige bestelnummer in te vullen." - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-order-tracking.php:55 -msgid "Please enter a valid order email" -msgstr "Gelieve een geldig bestellingse-mailadres in te vullen." - -# @ woocommerce -#: includes/shortcodes/class-wc-shortcode-order-tracking.php:74 -msgid "Sorry, we could not find that order id in our database." -msgstr "" -"Sorry, we konden geen bestelling met dat nummer vinden in onze database." - -# @ woocommerce -#: includes/widgets/class-wc-widget-cart.php:23 -msgid "Display the user's Cart in the sidebar." -msgstr "Toon de winkelwagen van de klant in de zijbalk." - -# @ woocommerce -#: includes/widgets/class-wc-widget-cart.php:25 -msgid "WooCommerce Cart" -msgstr "WooCommerce Winkelwagen" - -# @ woocommerce -#: includes/widgets/class-wc-widget-cart.php:35 -msgid "Hide if cart is empty" -msgstr "Verbergen indien winkelwagen leeg is" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav-filters.php:21 -msgid "Shows active layered nav filters so users can see and deactivate them." -msgstr "" -"Toont actieve filters van de gelaagde navigatie met de mogelijkheid om ze te " -"deactiveren." - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav-filters.php:23 -msgid "WooCommerce Layered Nav Filters" -msgstr "WooCommerce Gelaagde Navigatie Filters" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav-filters.php:27 -#, fuzzy -msgid "Active Filters" -msgstr "Actieve filters" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav-filters.php:83 -#: includes/widgets/class-wc-widget-layered-nav-filters.php:89 -#: includes/widgets/class-wc-widget-layered-nav-filters.php:94 -msgid "Remove filter" -msgstr "Verwijder filter" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav-filters.php:89 -msgid "Min" -msgstr "Min" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav-filters.php:94 -msgid "Max" -msgstr "Max" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav.php:23 -msgid "" -"Shows a custom attribute in a widget which lets you narrow down the list of " -"products when viewing product categories." -msgstr "" -"Toont een speciale eigenschap in een widget zodat u de producten kunt " -"filteren." - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav.php:25 -msgid "WooCommerce Layered Nav" -msgstr "WooCommerce Gelaagde Navigatie" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav.php:73 -#, fuzzy -msgid "Filter by" -msgstr "Filter" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav.php:87 -msgid "List" -msgstr "Lijst" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav.php:88 -msgid "Dropdown" -msgstr "Dropdown" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav.php:94 -#, fuzzy -msgid "Query type" -msgstr "Query Type:" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav.php:96 -msgid "AND" -msgstr "EN" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav.php:97 -msgid "OR" -msgstr "OF" - -# @ woocommerce -#: includes/widgets/class-wc-widget-layered-nav.php:159 -#, php-format -msgid "Any %s" -msgstr "Alle %s" - -# @ woocommerce -#: includes/widgets/class-wc-widget-price-filter.php:23 -msgid "" -"Shows a price filter slider in a widget which lets you narrow down the list " -"of shown products when viewing product categories." -msgstr "Toont een prijsfilter slider in een widget." - -# @ woocommerce -#: includes/widgets/class-wc-widget-price-filter.php:25 -msgid "WooCommerce Price Filter" -msgstr "WooCommerce Prijsfilter" - -# @ woocommerce -#: includes/widgets/class-wc-widget-price-filter.php:29 -msgid "Filter by price" -msgstr "Filter op prijs" - -# @ woocommerce -#: includes/widgets/class-wc-widget-price-filter.php:130 -msgid "Min price" -msgstr "Minimale prijs" - -# @ woocommerce -#: includes/widgets/class-wc-widget-price-filter.php:131 -msgid "Max price" -msgstr "Maximale prijs" - -# @ woocommerce -#: includes/widgets/class-wc-widget-price-filter.php:132 -msgid "Filter" -msgstr "Filter" - -# @ woocommerce -#: includes/widgets/class-wc-widget-price-filter.php:134 -msgid "Price:" -msgstr "Prijs:" - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-categories.php:24 -msgid "A list or dropdown of product categories." -msgstr "Een lijst of uitklapmenu van de productcategorieën." - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-categories.php:26 -msgid "WooCommerce Product Categories" -msgstr "WooCommerce Productcategorieën" - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-categories.php:38 -msgid "Category Order" -msgstr "Categorievolgorde" - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-categories.php:45 -msgid "Show as dropdown" -msgstr "Toon als uitklapmenu" - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-categories.php:50 -msgid "Show post counts" -msgstr "Toon aantal producten" - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-categories.php:55 -msgid "Show hierarchy" -msgstr "Toon hiërarchie" - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-categories.php:60 -msgid "Only show children for the current category" -msgstr "Toon alleen subcategorieën van de huidige categorie" - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-categories.php:151 -msgid "No product categories exist." -msgstr "Er bestaan geen productcategorieën." - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-search.php:21 -msgid "A Search box for products only." -msgstr "Zoekveld voor producten" - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-search.php:23 -msgid "WooCommerce Product Search" -msgstr "WooCommerce Product Zoeken" - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-tag-cloud.php:21 -msgid "Your most used product tags in cloud format." -msgstr "Uw meest gebruikte product tags in cloud-formaat." - -# @ woocommerce -#: includes/widgets/class-wc-widget-product-tag-cloud.php:23 -msgid "WooCommerce Product Tags" -msgstr "WooCommerce Producttags" - -# @ woocommerce -#: includes/widgets/class-wc-widget-products.php:21 -#, fuzzy -msgid "Display a list of your products on your site." -msgstr "Toon een lijst van producten in promotie op uw website." - -# @ woocommerce -#: includes/widgets/class-wc-widget-products.php:23 -#, fuzzy -msgid "WooCommerce Products" -msgstr "WooCommerce Producttags" - -# @ woocommerce -#: includes/widgets/class-wc-widget-products.php:36 -#: includes/widgets/class-wc-widget-recently-viewed.php:36 -#: includes/widgets/class-wc-widget-top-rated-products.php:38 -#, fuzzy -msgid "Number of products to show" -msgstr "Aantal producten om weer te geven:" - -# @ woocommerce -#: includes/widgets/class-wc-widget-products.php:43 -#, fuzzy -msgid "All Products" -msgstr "Alle producttags" - -# @ woocommerce -#: includes/widgets/class-wc-widget-products.php:44 -msgid "Featured Products" -msgstr "Uitgelichte producten" - -# @ woocommerce -#: includes/widgets/class-wc-widget-products.php:45 -#, fuzzy -msgid "On-sale Products" -msgstr "Nieuwe producten" - -#: includes/widgets/class-wc-widget-products.php:55 -msgid "Random" -msgstr "" - -#: includes/widgets/class-wc-widget-products.php:64 -msgid "ASC" -msgstr "" - -#: includes/widgets/class-wc-widget-products.php:65 -msgid "DESC" -msgstr "" - -# @ woocommerce -#: includes/widgets/class-wc-widget-products.php:71 -msgid "Hide free products" -msgstr "Verberg gratis producten" - -# @ woocommerce -#: includes/widgets/class-wc-widget-products.php:76 -#, fuzzy -msgid "Show hidden products" -msgstr "Toon verborgen product variaties" - -# @ woocommerce -#: includes/widgets/class-wc-widget-recent-reviews.php:21 -msgid "Display a list of your most recent reviews on your site." -msgstr "Toon een lijst van recent toegevoegde reviews." - -# @ woocommerce -#: includes/widgets/class-wc-widget-recent-reviews.php:27 -msgid "Recent Reviews" -msgstr "Recente Reviews" - -# @ woocommerce -#: includes/widgets/class-wc-widget-recent-reviews.php:36 -#, fuzzy -msgid "Number of reviews to show" -msgstr "Aantal producten om weer te geven:" - -# @ woocommerce -#: includes/widgets/class-wc-widget-recent-reviews.php:85 -#, php-format -msgctxt "by comment author" -msgid "by %1$s" -msgstr "door %1$s" - -# @ woocommerce -#: includes/widgets/class-wc-widget-recently-viewed.php:21 -msgid "Display a list of recently viewed products." -msgstr "Toon een lijst van recent bekeken producten." - -# @ woocommerce -#: includes/widgets/class-wc-widget-recently-viewed.php:23 -#, fuzzy -msgid "WooCommerce Recently Viewed" -msgstr "WooCommerce Recent Bekeken Producten" - -# @ woocommerce -#: includes/widgets/class-wc-widget-recently-viewed.php:27 -#, fuzzy -msgid "Recently Viewed Products" -msgstr "WooCommerce Recent Bekeken Producten" - -# @ woocommerce -#: includes/widgets/class-wc-widget-top-rated-products.php:23 -#, fuzzy -msgid "Display a list of your top rated products on your site." -msgstr "Toon een lijst van de hoogst gewaardeerde producten op de site." - -# @ woocommerce -#: includes/widgets/class-wc-widget-top-rated-products.php:25 -msgid "WooCommerce Top Rated Products" -msgstr "WooCommerce Hoogst Gewaardeerde Producten" - -# @ woocommerce -#: includes/widgets/class-wc-widget-top-rated-products.php:29 -msgid "Top Rated Products" -msgstr "Hoogst gewaardeerde producten" - -# @ woocommerce -#: templates/loop-shop.php:40 templates/loop/no-products-found.php:14 -msgid "No products found which match your selection." -msgstr "Er zijn geen producten gevonden die aan uw zoekopdracht voldoen." - -# @ woocommerce -#: templates/single-product-reviews.php:30 -#, php-format -msgid "%s review for %s" -msgid_plural "%s reviews for %s" -msgstr[0] "%s review voor %s" -msgstr[1] "%s reviews voor %s" - -# @ woocommerce -#: templates/single-product-reviews.php:58 -msgid " Previous" -msgstr " Vorige" - -# @ woocommerce -#: templates/single-product-reviews.php:59 -msgid "Next " -msgstr "Volgende " - -# @ woocommerce -#: templates/single-product-reviews.php:63 -#: templates/single-product-reviews.php:71 -msgid "Add Your Review" -msgstr "Geef uw beoordeling" - -# @ woocommerce -#: templates/single-product-reviews.php:63 -msgid "Add Review" -msgstr "Review toevoegen" - -# @ woocommerce -#: templates/single-product-reviews.php:65 -msgid "Add a review" -msgstr "Review toevoegen" - -# @ woocommerce -#: templates/single-product-reviews.php:69 -msgid "Be the first to review" -msgstr "Schrijf de eerste review" - -# @ woocommerce -#: templates/single-product-reviews.php:71 -#, fuzzy, php-format -msgid "There are no reviews yet, would you like to %s submit yours%s?" -msgstr "" -"Er zijn nog geen reviews. Wilt u een review insturen?" - -# @ woocommerce -#: templates/single-product-reviews.php:89 -msgid "Submit Review" -msgstr "Review inzenden" - -# @ woocommerce -#: templates/single-product-reviews.php:96 -msgid "Rating" -msgstr "Waardering " - -# @ woocommerce -#: templates/single-product-reviews.php:97 -msgid "Rate…" -msgstr "Beoordeel…" - -# @ woocommerce -#: templates/single-product-reviews.php:98 -msgid "Perfect" -msgstr "Perfect" - -# @ woocommerce -#: templates/single-product-reviews.php:99 -msgid "Good" -msgstr "Goed" - -# @ woocommerce -#: templates/single-product-reviews.php:100 -msgid "Average" -msgstr "Redelijk" - -# @ woocommerce -#: templates/single-product-reviews.php:101 -msgid "Not that bad" -msgstr "Matig" - -# @ woocommerce -#: templates/single-product-reviews.php:102 -msgid "Very Poor" -msgstr "Slecht" - -# @ woocommerce -#: templates/single-product-reviews.php:107 -msgid "Your Review" -msgstr "Uw review" - -# @ woocommerce -#: templates/cart/cart-empty.php:14 -msgid "Your cart is currently empty." -msgstr "Uw winkelwagen is momenteel leeg." - -# @ woocommerce -#: templates/cart/cart-empty.php:18 -msgid "← Return To Shop" -msgstr "← Verder Winkelen" - -# @ woocommerce -#: templates/cart/cart.php:47 -msgid "Remove this item" -msgstr "Verwijderen" - -# @ woocommerce -#: templates/cart/cart.php:94 -#: templates/single-product/add-to-cart/quantity.php:12 -msgctxt "Product quantity input tooltip" -msgid "Qty" -msgstr "Aantal" - -# @ woocommerce -#: templates/cart/cart.php:119 templates/checkout/form-coupon.php:29 -msgid "Apply Coupon" -msgstr "Kortingsbon" - -# @ woocommerce -#: templates/cart/cart.php:126 -msgid "Update Cart" -msgstr "Winkelwagen bijwerken" - -# @ woocommerce -#: templates/cart/cart.php:126 -msgid "Proceed to Checkout →" -msgstr "Afrekenen →" - -# @ woocommerce -#: templates/cart/cross-sells.php:38 -msgid "You may be interested in…" -msgstr "Misschien vindt u het volgende ook interessant …" - -# @ woocommerce -#: templates/cart/mini-cart.php:51 -msgid "No products in the cart." -msgstr "Geen producten in de winkelwagen." - -# @ woocommerce -#: templates/cart/mini-cart.php:65 -msgid "Checkout →" -msgstr "Afrekenen →" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:22 -msgid "Calculate Shipping" -msgstr "Verzendkosten berekenen" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:45 -#: templates/cart/shipping-calculator.php:51 -#: templates/cart/shipping-calculator.php:63 -msgid "State / county" -msgstr "Provincie" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:85 -msgid "Update Totals" -msgstr "Werk totalen bij" - -# @ woocommerce -#: templates/cart/shipping-methods.php:32 -msgid "Free" -msgstr "Gratis" - -# @ woocommerce -#: templates/cart/shipping-methods.php:68 -msgid "Please fill in your details to see available shipping methods." -msgstr "" -"Gelieve uw gegevens in te vullen om de beschikbare verzendmethodes te zien." - -# @ woocommerce -#: templates/cart/shipping-methods.php:76 templates/cart/totals.php:147 -#, php-format -msgid "" -"Sorry, it seems that there are no available shipping methods for your " -"location (%s)." -msgstr "" -"Sorry, het lijkt erop dat er geen beschikbare verzendmethoden voor uw " -"locatie (%s)." - -# @ woocommerce -#: templates/cart/shipping-methods.php:76 templates/cart/totals.php:147 -msgid "" -"If you require assistance or wish to make alternate arrangements please " -"contact us." -msgstr "" -"Als u hulp nodig heeft of een alternatieve regeling wilt maken kunt u " -"contact met ons opnemen." - -# @ woocommerce -#: templates/cart/totals.php:22 -msgid "Cart Totals" -msgstr "Totaal" - -# @ woocommerce -#: templates/cart/totals.php:28 templates/checkout/review-order.php:27 -msgid "Cart Subtotal" -msgstr "Subtotaal" - -# @ woocommerce -#: templates/cart/totals.php:35 templates/cart/totals.php:83 -msgid "[Remove]" -msgstr "[Verwijder]" - -# @ woocommerce -#: templates/cart/totals.php:46 templates/checkout/review-order.php:45 -#, fuzzy -msgid "Shipping and Handling" -msgstr "Verzendadres" - -# @ woocommerce -#: templates/cart/totals.php:83 templates/checkout/review-order.php:82 -msgid "Order Discount" -msgstr "Bestelling korting" - -# @ woocommerce -#: templates/cart/totals.php:121 -#, php-format -msgid " (taxes estimated for %s)" -msgstr "(geschatte BTW voor %s)" - -# @ woocommerce -#: templates/cart/totals.php:123 -#, php-format -msgid "" -"Note: Shipping and taxes are estimated%s and will be updated during checkout " -"based on your billing and shipping information." -msgstr "" -"Opmerking: berekening van verzendkosten en BTW kan aangepast worden op de " -"volgende pagina op basis van uw adres en verzendingskeuze%s." - -# @ woocommerce -#: templates/cart/totals.php:135 -msgid "" -"No shipping methods were found; please recalculate your shipping and enter " -"your state/county and zip/postcode to ensure there are no other available " -"methods for your location." -msgstr "" -"Geen verzendmethoden gevonden: herbereken de verzending door een provincie " -"en postcode in te voeren om zeker te weten dat verzending mogelijk is." - -# @ woocommerce -#: templates/checkout/cart-errors.php:16 -msgid "" -"There are some issues with the items in your cart (shown above). Please go " -"back to the cart page and resolve these issues before checking out." -msgstr "" -"Er zijn problemen met de producten in de winkelwagen hierboven. Ga terug " -"naar de winkelwagen pagina om deze problemen op te lossen, alvorens de " -"bestelling af te ronden." - -# @ woocommerce -#: templates/checkout/cart-errors.php:20 -msgid "← Return To Cart" -msgstr "← Terug naar winkelwagen" - -# @ woocommerce -#: templates/checkout/form-billing.php:17 -msgid "Billing & Shipping" -msgstr "Betaling & Verzending" - -# @ woocommerce -#: templates/checkout/form-billing.php:21 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:19 templates/myaccount/my-address.php:25 -#: templates/order/order-details.php:119 -msgid "Billing Address" -msgstr "Factuuradres" - -# @ woocommerce -#: templates/checkout/form-billing.php:40 -msgid "Create an account?" -msgstr "Een account aanmaken?" - -# @ woocommerce -#: templates/checkout/form-billing.php:51 -msgid "" -"Create an account by entering the information below. If you are a returning " -"customer please login at the top of the page." -msgstr "" -"U kunt een account aanmaken door onderstaande informatie in te vullen. Als u " -"reeds klant bent kunt u inloggen met uw gebruikersnaam bovenaan de pagina." - -# @ woocommerce -#: templates/checkout/form-checkout.php:20 -msgid "You must be logged in to checkout." -msgstr "U dient ingelogd zijn om te kunnen afrekenen." - -# @ woocommerce -#: templates/checkout/form-checkout.php:51 -msgid "Your order" -msgstr "Uw bestelling" - -# @ woocommerce -#: templates/checkout/form-coupon.php:17 -msgid "Have a coupon?" -msgstr "Heeft u een kortingsbon?" - -# @ woocommerce -#: templates/checkout/form-coupon.php:20 -msgid "Click here to enter your code" -msgstr "Klik hier om uw code in te voeren" - -# @ woocommerce -#: templates/checkout/form-login.php:14 -msgid "Returning customer?" -msgstr "Terugkerende klant?" - -# @ woocommerce -#: templates/checkout/form-login.php:17 -msgid "Click here to login" -msgstr "Inloggen" - -# @ woocommerce -#: templates/checkout/form-login.php:22 -msgid "" -"If you have shopped with us before, please enter your details in the boxes " -"below. If you are a new customer please proceed to the Billing & " -"Shipping section." -msgstr "" -"Indien u reeds een webshop klant bent, kunt u uw gebruikersnaam/wachtwoord " -"hieronder invoeren. Indien u een nieuwe klant bent dient u uw adresgegevens " -"in te voeren." - -# @ woocommerce -#: templates/checkout/form-pay.php:78 -msgid "" -"Sorry, it seems that there are no available payment methods for your " -"location. Please contact us if you require assistance or wish to make " -"alternate arrangements." -msgstr "" -"Onze excuses, het lijkt er op dat er geen betalingsmogelijkheden beschikbaar " -"zijn voor uw verblijfplaats. Neemt u alstublieft contact op met ons als u " -"hulp nodig heeft, of om te kijken naar alternatieve mogelijkheden." - -# @ woocommerce -#: templates/checkout/form-pay.php:87 -msgid "Pay for order" -msgstr "Betaal voor bestelling" - -# @ woocommerce -#: templates/checkout/form-shipping.php:31 -#, fuzzy -msgid "Ship to a different address?" -msgstr "Verzenden naar factuuradres?" - -# @ woocommerce -#: templates/checkout/review-order.php:176 -msgid "Please fill in your details above to see available payment methods." -msgstr "" -"Vult u alstublieft hierboven uw details in om de beschikbare " -"betalingsmethoden te zien." - -# @ woocommerce -#: templates/checkout/review-order.php:178 -msgid "" -"Sorry, it seems that there are no available payment methods for your state. " -"Please contact us if you require assistance or wish to make alternate " -"arrangements." -msgstr "" -"Onze excuses. Het lijkt er op dat er geen betalingsmogelijkheden zijn voor " -"uw verblijfplaats. Neem alstublieft contact met ons op om te kijken naar " -"alternatieve mogelijkheden." - -# @ woocommerce -#: templates/checkout/review-order.php:187 -msgid "" -"Since your browser does not support JavaScript, or it is disabled, please " -"ensure you click the Update Totals button before placing your " -"order. You may be charged more than the amount stated above if you fail to " -"do so." -msgstr "" -"Omdat uw browser geen JavaScript ondersteunt, of JavaScript uitgeschakeld " -"is, controleert u of u de Werk totalen bij knop heeft ingedrukt " -"voor u uw bestelling plaatst. Anders kan het zijn dat er meer kosten in " -"rekening worden gebracht dan dat hierboven staat." - -# @ woocommerce -#: templates/checkout/review-order.php:187 -msgid "Update totals" -msgstr "Werk totalen bij" - -# @ woocommerce -#: templates/checkout/review-order.php:194 -msgid "Place order" -msgstr "Plaats bestelling" - -# @ woocommerce -#: templates/checkout/review-order.php:201 -msgid "I have read and accept the" -msgstr "Ik accepteer de" - -# @ woocommerce -#: templates/checkout/review-order.php:201 -msgid "terms & conditions" -msgstr "Algemene Voorwaarden" - -# @ woocommerce -#: templates/checkout/thankyou.php:18 -msgid "" -"Unfortunately your order cannot be processed as the originating bank/" -"merchant has declined your transaction." -msgstr "" -"Helaas kan uw bestelling niet worden verwerkt omdat de oorspronkelijke bank " -"uw transactie heeft afgewezen." - -# @ woocommerce -#: templates/checkout/thankyou.php:22 -msgid "Please attempt your purchase again or go to your account page." -msgstr "" -"Probeert u alstublieft uw aankoop opnieuw of ga naar uw account pagina." - -# @ woocommerce -#: templates/checkout/thankyou.php:24 -msgid "Please attempt your purchase again." -msgstr "Probeer alstublieft uw bestelling nogmaals." - -# @ woocommerce -#: templates/checkout/thankyou.php:28 templates/myaccount/my-orders.php:71 -msgid "Pay" -msgstr "Betalen" - -# @ woocommerce -#: templates/checkout/thankyou.php:36 templates/checkout/thankyou.php:67 -msgid "Thank you. Your order has been received." -msgstr "Dank u. Uw bestelling is ontvangen." - -# @ woocommerce -#: templates/emails/admin-new-order.php:13 -#: templates/emails/plain/admin-new-order.php:13 -#, php-format -msgid "You have received an order from %s. Their order is as follows:" -msgstr "Je hebt een bestelling ontvangen van %s. De bestelling is als volgt:" - -# @ woocommerce -#: templates/emails/admin-new-order.php:17 -#, php-format -msgid "Order: %s" -msgstr "Bestelnummer: %s" - -# @ woocommerce -#: templates/emails/customer-completed-order.php:14 -#: templates/emails/plain/customer-completed-order.php:13 -#, php-format -msgid "" -"Hi there. Your recent order on %s has been completed. Your order details are " -"shown below for your reference:" -msgstr "" -"Hallo. Uw recente bestelling van %s is voltooid. Uw bestelling details " -"worden hieronder weergegeven ter referentie:" - -# @ woocommerce -#: templates/emails/customer-invoice.php:16 -#: templates/emails/plain/customer-invoice.php:14 -#, php-format -msgid "" -"An order has been created for you on %s. To pay for this order please use " -"the following link: %s" -msgstr "" -"Uw bestelling is aangemaakt op %s. Om te betalen voor deze bestelling kunt u " -"gebruik maken van de volgende link: %s" - -# @ woocommerce -#: templates/emails/customer-invoice.php:16 -msgid "pay" -msgstr "betaal" - -# @ woocommerce -#: templates/emails/customer-new-account.php:14 -#: templates/emails/plain/customer-new-account.php:13 -#, php-format -msgid "" -"Thanks for creating an account on %s. Your username is %s." -msgstr "" -"Bedankt voor het aanmaken van een account op %s. Uw gebruikersnaam is " -"%s." - -#: templates/emails/customer-new-account.php:18 -#, php-format -msgid "Your password has been automatically generated: %s" -msgstr "" - -# @ woocommerce -#: templates/emails/customer-new-account.php:22 -#: templates/emails/plain/customer-new-account.php:18 -#, fuzzy, php-format -msgid "" -"You can access your account area to view your orders and change your " -"password here: %s." -msgstr "U heeft toegang tot uw account hier: %s." - -# @ woocommerce -#: templates/emails/customer-note.php:14 -#: templates/emails/plain/customer-note.php:13 -msgid "Hello, a note has just been added to your order:" -msgstr "Een opmerking is toegevoegd aan uw bestelling:" - -# @ woocommerce -#: templates/emails/customer-note.php:18 -#: templates/emails/plain/customer-note.php:21 -msgid "For your reference, your order details are shown below." -msgstr "" -"Voor uw eigen referentie, uw bestelling details worden hieronder getoond." - -# @ woocommerce -#: templates/emails/customer-processing-order.php:14 -#: templates/emails/plain/customer-processing-order.php:13 -msgid "" -"Your order has been received and is now being processed. Your order details " -"are shown below for your reference:" -msgstr "" -"Uw bestelling is ontvangen en wordt nu verwerkt. Uw bestelling details " -"worden hieronder weergegeven ter referentie:" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:14 -#: templates/emails/plain/customer-reset-password.php:13 -msgid "Someone requested that the password be reset for the following account:" -msgstr "" -"Iemand heeft een wachtwoord reset aangevraagd voor de volgende account:" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:15 -#: templates/emails/plain/customer-reset-password.php:15 -#, php-format -msgid "Username: %s" -msgstr "Gebruikersnaam: %s" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:16 -#: templates/emails/plain/customer-reset-password.php:16 -msgid "If this was a mistake, just ignore this email and nothing will happen." -msgstr "Als dit een vergissing was, negeer deze e-mail en niets zal gebeuren." - -# @ woocommerce -#: templates/emails/customer-reset-password.php:17 -#: templates/emails/plain/customer-reset-password.php:17 -msgid "To reset your password, visit the following address:" -msgstr "" -"Als u uw wachtwoord opnieuw in te stellen, gaat u naar het volgende adres:" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:20 -msgid "Click here to reset your password" -msgstr "Klik hier om uw wachtwoord te resetten" - -# @ woocommerce -#: templates/emails/email-order-items.php:45 -#, php-format -msgid "Download %d:" -msgstr "Download %d:" - -# @ woocommerce -#: templates/emails/email-order-items.php:47 -msgid "Download:" -msgstr "Download:" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:19 -#: templates/emails/plain/customer-completed-order.php:19 -#: templates/emails/plain/customer-invoice.php:20 -#: templates/emails/plain/customer-note.php:27 -#: templates/emails/plain/customer-processing-order.php:19 -#, php-format -msgid "Order number: %s" -msgstr "Bestelnummer: %s" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:20 -#: templates/emails/plain/customer-completed-order.php:20 -#: templates/emails/plain/customer-invoice.php:21 -#: templates/emails/plain/customer-note.php:28 -#: templates/emails/plain/customer-processing-order.php:20 -#, php-format -msgid "Order date: %s" -msgstr "Besteldatum: %s" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:20 -msgid "jS F Y" -msgstr "jS F Y" - -# @ woocommerce -#: templates/emails/plain/customer-completed-order.php:38 -#: templates/emails/plain/customer-note.php:46 -#: templates/emails/plain/customer-processing-order.php:38 -msgid "Your details" -msgstr "Uw details" - -# @ woocommerce -#: templates/emails/plain/customer-new-account.php:16 -#, fuzzy, php-format -msgid "Your password is %s." -msgstr "Uw wachtwoord is gereset." - -# @ woocommerce -#: templates/emails/plain/email-order-items.php:29 -#, php-format -msgid "Quantity: %s" -msgstr "Aantal: %s" - -# @ woocommerce -#: templates/emails/plain/email-order-items.php:32 -#, php-format -msgid "Cost: %s" -msgstr "Prijs: %s" - -# @ woocommerce -#: templates/loop/add-to-cart.php:17 templates/loop/add-to-cart.php:41 -#: templates/loop/add-to-cart.php:50 -msgid "Read More" -msgstr "Verder lezen" - -# @ woocommerce -#: templates/loop/add-to-cart.php:33 -msgid "Select options" -msgstr "Selecteer opties" - -# @ woocommerce -#: templates/loop/add-to-cart.php:37 -msgid "View options" -msgstr "Bekijk opties" - -# @ woocommerce -#: templates/loop/orderby.php:21 -msgid "Default sorting" -msgstr "Standaard productsortering" - -# @ woocommerce -#: templates/loop/orderby.php:22 -msgid "Sort by popularity" -msgstr "Sorteren op populariteit" - -# @ woocommerce -#: templates/loop/orderby.php:23 -msgid "Sort by average rating" -msgstr "Sorteren op beoordeling" - -# @ woocommerce -#: templates/loop/orderby.php:24 -msgid "Sort by newness" -msgstr "Sorteren op datum" - -# @ woocommerce -#: templates/loop/orderby.php:25 -msgid "Sort by price: low to high" -msgstr "Sorteer op prijs: laag naar hoog" - -# @ woocommerce -#: templates/loop/orderby.php:26 -msgid "Sort by price: high to low" -msgstr "Sorteer op prijs: hoog naar laag" - -# @ woocommerce -#: templates/loop/result-count.php:28 -msgid "Showing the single result" -msgstr "Het enige resultaat wordt getoond" - -# @ woocommerce -#: templates/loop/result-count.php:30 -#, php-format -msgid "Showing all %d results" -msgstr "Alle %d resultaten worden getoond" - -# @ woocommerce -#: templates/loop/result-count.php:32 -#, php-format -msgctxt "%1$d = first, %2$d = last, %3$d = total" -msgid "Showing %1$d–%2$d of %3$d results" -msgstr "Toont %1$d–%2$d van %3$d resultaten" - -# @ woocommerce -#: templates/loop/sale-flash.php:16 templates/single-product/sale-flash.php:16 -msgid "Sale!" -msgstr "Promo!" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:20 -#: templates/myaccount/form-lost-password.php:31 -msgid "New password" -msgstr "Nieuw wachtwoord" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:24 -#: templates/myaccount/form-lost-password.php:35 -msgid "Re-enter new password" -msgstr "Nieuw wachtwoord nogmaals" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:29 -#: templates/myaccount/form-lost-password.php:45 -msgid "Save" -msgstr "Opslaan" - -#: templates/myaccount/form-edit-account.php:32 -msgid "Password (leave blank to leave unchanged)" -msgstr "" - -# @ woocommerce -#: templates/myaccount/form-edit-account.php:36 -#, fuzzy -msgid "Confirm new password" -msgstr "Account wachtwoord" - -# @ woocommerce -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:20 templates/order/order-details.php:134 -msgid "Shipping Address" -msgstr "Verzendadres" - -# @ woocommerce -#: templates/myaccount/form-edit-address.php:43 -msgid "Save Address" -msgstr "Adres opslaan" - -# @ woocommerce -#: templates/myaccount/form-login.php:26 templates/myaccount/form-login.php:40 -#: templates/shop/form-login.php:31 -msgid "Login" -msgstr "Login" - -# @ woocommerce -#: templates/myaccount/form-login.php:30 -#, fuzzy -msgid "Username or email address" -msgstr "Gebruikersnaam of email adres" - -# @ woocommerce -#: templates/myaccount/form-login.php:34 templates/myaccount/form-login.php:78 -#: templates/shop/form-login.php:24 -msgid "Password" -msgstr "Wachtwoord" - -# @ woocommerce -#: templates/myaccount/form-login.php:49 templates/shop/form-login.php:33 -msgid "Lost Password?" -msgstr "Wachtwoord vergeten?" - -# @ woocommerce -#: templates/myaccount/form-login.php:59 templates/myaccount/form-login.php:89 -msgid "Register" -msgstr "Registreer" - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:22 -msgid "" -"Lost your password? Please enter your username or email address. You will " -"receive a link to create a new password via email." -msgstr "" -"Wachtwoord vergeten? Voer je gebruikersnaam of e-mailadres. U ontvangt een " -"link via email om een ​nieuw wachtwoord te creëren." - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:24 -#: templates/shop/form-login.php:20 -msgid "Username or email" -msgstr "Gebruikersnaam of email adres" - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:28 -msgid "Enter a new password below." -msgstr "Voer hieronder een nieuw wachtwoord in." - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:45 -msgid "Reset Password" -msgstr "Wachtwoord Reset" - -# @ woocommerce -#: templates/myaccount/my-account.php:19 -#, fuzzy, php-format -msgid "" -"Hello, %s. From your account dashboard you can view your " -"recent orders, manage your shipping and billing addresses and edit your password and account details." -msgstr "" -"Hallo, %s. Vanaf uw account dashbord kunt u uw recente " -"bestellingen bekijken, uw verzend- en factuuradres aanpassen en uw wachtwoord wijzigen." - -# @ woocommerce -#: templates/myaccount/my-address.php:17 -msgid "My Addresses" -msgstr "Mijn Adres" - -# @ woocommerce -#: templates/myaccount/my-address.php:23 -msgid "My Address" -msgstr "Mijn Adres" - -# @ woocommerce -#: templates/myaccount/my-address.php:35 -msgid "The following addresses will be used on the checkout page by default." -msgstr "De volgende adressen zullen worden gebruikt op de afrekenpagina." - -# @ woocommerce -#: templates/myaccount/my-address.php:64 -msgid "You have not set up this type of address yet." -msgstr "U heeft dit type adres nog niet ingesteld." - -# @ woocommerce -#: templates/myaccount/my-downloads.php:18 -msgid "Available downloads" -msgstr "Beschikbare downloads" - -# @ woocommerce -#: templates/myaccount/my-downloads.php:27 -#, php-format -msgid "%s download remaining" -msgid_plural "%s downloads remaining" -msgstr[0] "Nog %s download te gaan" -msgstr[1] "Nog %s downloads te gaan" - -# @ woocommerce -#: templates/myaccount/my-orders.php:26 -msgid "Recent Orders" -msgstr "Recente Bestellingen" - -# @ woocommerce -#: templates/myaccount/my-orders.php:62 -#, php-format -msgid "%s for %s item" -msgid_plural "%s for %s items" -msgstr[0] "%s voor %s product" -msgstr[1] "%s voor %s producten" - -# @ woocommerce -#: templates/order/form-tracking.php:17 -msgid "" -"To track your order please enter your Order ID in the box below and press " -"return. This was given to you on your receipt and in the confirmation email " -"you should have received." -msgstr "" -"Om uw bestelling te volgen vult u hieronder uw bestelnummer in en drukt op " -"enter. Dit nummer staat op uw factuur en in de bevestigingse-mail die u " -"ontvangen heeft." - -# @ woocommerce -#: templates/order/form-tracking.php:19 -msgid "Order ID" -msgstr "Bestelling ID" - -# @ woocommerce -#: templates/order/form-tracking.php:19 -msgid "Found in your order confirmation email." -msgstr "Te vinden in de bevestigingse-mail" - -# @ woocommerce -#: templates/order/form-tracking.php:20 -msgid "Billing Email" -msgstr "E-mail gebruikt voor factuur" - -# @ woocommerce -#: templates/order/form-tracking.php:20 -msgid "Email you used during checkout." -msgstr "E-mail gebruikt bij afrekenen." - -# @ woocommerce -#: templates/order/form-tracking.php:23 -msgid "Track" -msgstr "Traceer" - -# @ woocommerce -#: templates/order/order-details.php:68 -#, fuzzy, php-format -msgid "Download file%s" -msgstr "Download bestand %s →" - -# @ woocommerce -#: templates/order/order-details.php:106 -msgid "Telephone:" -msgstr "Telefoonnummer:" - -# @ woocommerce -#: templates/order/tracking.php:18 -#, php-format -msgid "Order %s which was made %s has the status “%s”" -msgstr "Bestelling %s van %s heeft de status \"%s\"." - -# @ woocommerce -#: templates/order/tracking.php:18 -msgid "ago" -msgstr "geleden" - -# @ woocommerce -#: templates/order/tracking.php:20 -msgid "and was completed" -msgstr "en is voltooid" - -# @ woocommerce -#: templates/order/tracking.php:20 -msgid " ago" -msgstr " geleden" - -# @ woocommerce -#: templates/shop/breadcrumb.php:63 -msgid "Products tagged “" -msgstr "Producten getagd “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:91 templates/shop/breadcrumb.php:188 -msgid "Search results for “" -msgstr "Zoekresultaten voor “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:146 -msgid "Error 404" -msgstr "Error 404" - -# @ woocommerce -#: templates/shop/breadcrumb.php:192 -msgid "Posts tagged “" -msgstr "Bericht getagd “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:197 -msgid "Author:" -msgstr "Auteur:" - -# @ woocommerce -#: templates/shop/breadcrumb.php:202 -msgid "Page" -msgstr "Pagina" - -# @ product_cat -#: templates/single-product/meta.php:24 -msgid "Category:" -msgid_plural "Categories:" -msgstr[0] "Categorie:" -msgstr[1] "Categorieën:" - -# @ product_tag -#: templates/single-product/meta.php:29 -msgid "Tag:" -msgid_plural "Tags:" -msgstr[0] "Tag:" -msgstr[1] "Tags:" - -# @ woocommerce -#: templates/single-product/related.php:36 -msgid "Related Products" -msgstr "Gerelateerde producten" - -# @ woocommerce -#: templates/single-product/review.php:26 -#, php-format -msgid "Rated %d out of 5" -msgstr "Waardering %d op een schaal van 5" - -# @ woocommerce -#: templates/single-product/review.php:33 -msgid "Your comment is awaiting approval" -msgstr "Jouw reactie is in afwachting van goedkeuring" - -# @ woocommerce -#: templates/single-product/review.php:40 -msgid "verified owner" -msgstr "geverifieerde eigenaar" - -# @ woocommerce -#: templates/single-product/up-sells.php:39 -msgid "You may also like…" -msgstr "Misschien vindt u het volgende ook leuk …" - -# @ woocommerce -#: templates/single-product/add-to-cart/variable.php:24 -msgid "Choose an option" -msgstr "Kies een optie" - -# @ woocommerce -#: templates/single-product/add-to-cart/variable.php:69 -msgid "Clear selection" -msgstr "Reset selectie" - -# @ woocommerce -#: templates/single-product/tabs/description.php:14 -msgid "Product Description" -msgstr "Productbeschrijving" - -# @ woocommerce -#~ msgid "" -#~ "This username is invalid because it uses illegal characters. Please enter " -#~ "a valid username." -#~ msgstr "" -#~ "De gebruikersnaam bevat ongeldige tekens. Gelieve een geldige " -#~ "gebruikersnaam in te vullen." - -# @ woocommerce -#~ msgid "This username is already registered, please choose another one." -#~ msgstr "Deze gebruiksnaam bestaat al, gelieve een andere te kiezen." - -# @ woocommerce -#~ msgid "Please type your e-mail address." -#~ msgstr "Gelieve uw e-mailadres in te vullen." - -# @ woocommerce -#~ msgid "The email address isn’t correct." -#~ msgstr "Het e-mailadres is niet juist." - -# @ woocommerce -#~ msgid "Re-enter your password." -#~ msgstr "Vul opnieuw uw wachtwoord in." - -# @ woocommerce -#~ msgid "Password changed successfully." -#~ msgstr "Wachtwoord veranderd." - -# @ woocommerce -#~ msgid "All" -#~ msgstr "Alle" - -# @ woocommerce -#~ msgid "New" -#~ msgstr "Nieuwe" - -# @ woocommerce -#~ msgid "Variation" -#~ msgstr "Variatie" - -# @ woocommerce -#~ msgid "Add New Variation" -#~ msgstr "Variatie toevoegen" - -# @ woocommerce -#~ msgid "Edit Variation" -#~ msgstr "Variatie bewerken" - -# @ woocommerce -#~ msgid "New Variation" -#~ msgstr "Nieuwe variatie" - -# @ woocommerce -#~ msgid "View Variation" -#~ msgstr "Variaties bekijken" - -# @ woocommerce -#~ msgid "Search Variations" -#~ msgstr "Variatie zoeken" - -# @ woocommerce -#~ msgid "No Variations found" -#~ msgstr "Geen variaties gevonden" - -# @ woocommerce -#~ msgid "No Variations found in trash" -#~ msgstr "Geen variaties in de prullenbak gevonden" - -# @ woocommerce -#~ msgid "Parent Variation" -#~ msgstr "Hoofdvariatie" - -# @ woocommerce -#~ msgid "Change Password" -#~ msgstr "Wijzig wachtwoord" - -# @ woocommerce -#~ msgid "Thanks" -#~ msgstr "Bedankt" - -# @ woocommerce -#~ msgid "Thankyou" -#~ msgstr "Bedankt" - -# @ woocommerce -#, fuzzy -#~ msgctxt "placeholder" -#~ msgid "Confirm password" -#~ msgstr "Account wachtwoord" diff --git a/i18n/languages/woocommerce-nn_NO.mo b/i18n/languages/woocommerce-nn_NO.mo deleted file mode 100644 index aa3be7483a5..00000000000 Binary files a/i18n/languages/woocommerce-nn_NO.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-nn_NO.po b/i18n/languages/woocommerce-nn_NO.po deleted file mode 100644 index efd658bd268..00000000000 --- a/i18n/languages/woocommerce-nn_NO.po +++ /dev/null @@ -1,7920 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce v2.0.0\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-03-04 09:46:16+00:00\n" -"PO-Revision-Date: 2013-03-20 14:18+0100\n" -"Last-Translator: Eivind Ødegård \n" -"Language-Team: \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Poedit 1.5.5\n" -"X-Poedit-SourceCharset: utf-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" -"X-Poedit-Basepath: ../\n" -"X-Textdomain-Support: yes\n" -"X-Poedit-SearchPath-0: .\n" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:5 -msgid "Insert Shortcode" -msgstr "Set inn kortkode" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:6 -msgid "Product price/cart button" -msgstr "Varepris/handlekorg-knapp" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:7 -msgid "Product by SKU/ID" -msgstr "Vare etter SKU/ID" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:8 -msgid "Products by SKU/ID" -msgstr "Varer etter SKU/ID" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:9 -msgid "Product categories" -msgstr "Varekategoriar" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:10 -msgid "Products by category slug" -msgstr "Varer etter korttekst for produktkategori" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:11 -msgid "Recent products" -msgstr "Nye varer" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:12 -msgid "Featured products" -msgstr "Framheva varer" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:13 -msgid "Shop Messages" -msgstr "Butikkmeldingar" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:14 -msgid "Pages" -msgstr "Sider" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:15 -#: classes/widgets/class-wc-widget-cart.php:61 -msgid "Cart" -msgstr "Handlekorg" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:16 -msgid "Checkout" -msgstr "Kasse" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:17 -msgid "Order tracking" -msgstr "Ordresporing" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:18 -#: templates/checkout/thankyou.php:30 -msgid "My Account" -msgstr "Kontoen min" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:19 -msgid "Edit Address" -msgstr "Endra adresse" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:20 -msgid "Change Password" -msgstr "Byt passord" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:21 -#: woocommerce.php:1031 -#: woocommerce.php:1032 -msgid "View Order" -msgstr "Sjå på bestillinga" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:22 -#: templates/checkout/thankyou.php:28 -#: templates/myaccount/my-orders.php:71 -msgid "Pay" -msgstr "Betal" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:23 -msgid "Thankyou" -msgstr "Takk" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:421 -#: classes/emails/class-wc-email-customer-completed-order.php:135 -#: classes/emails/class-wc-email-customer-invoice.php:138 -#: classes/emails/class-wc-email-new-order.php:115 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:63 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:57 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:158 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:119 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:77 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:75 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:52 -msgid "Enable/Disable" -msgstr "Slå på/slå av" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:423 -#: classes/emails/class-wc-email-customer-completed-order.php:137 -#: classes/emails/class-wc-email-customer-invoice.php:140 -#: classes/emails/class-wc-email-new-order.php:117 -msgid "Enable this email notification" -msgstr "Bruk dette epostvarselet" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:427 -#: classes/emails/class-wc-email-customer-invoice.php:144 -msgid "Email subject" -msgstr "Emne for eposten" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:429 -#: classes/abstracts/abstract-wc-email.php:436 -#: classes/emails/class-wc-email-customer-completed-order.php:143 -#: classes/emails/class-wc-email-customer-completed-order.php:150 -#: classes/emails/class-wc-email-customer-completed-order.php:157 -#: classes/emails/class-wc-email-customer-completed-order.php:164 -#: classes/emails/class-wc-email-customer-invoice.php:146 -#: classes/emails/class-wc-email-customer-invoice.php:153 -#: classes/emails/class-wc-email-customer-invoice.php:160 -#: classes/emails/class-wc-email-customer-invoice.php:167 -msgid "Defaults to %s" -msgstr "Standard er %s" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:434 -#: classes/emails/class-wc-email-customer-invoice.php:151 -msgid "Email heading" -msgstr "Overskrift for eposten" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:441 -#: classes/emails/class-wc-email-customer-completed-order.php:169 -#: classes/emails/class-wc-email-customer-invoice.php:172 -#: classes/emails/class-wc-email-new-order.php:142 -msgid "Email type" -msgstr "Type epost" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:443 -#: classes/emails/class-wc-email-customer-completed-order.php:171 -#: classes/emails/class-wc-email-customer-invoice.php:174 -#: classes/emails/class-wc-email-new-order.php:144 -msgid "Choose which format of email to send." -msgstr "Vel kva format du vil senda ut epostar i." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:447 -#: classes/emails/class-wc-email-customer-completed-order.php:175 -#: classes/emails/class-wc-email-customer-invoice.php:178 -#: classes/emails/class-wc-email-new-order.php:148 -msgid "Plain text" -msgstr "Rein tekst" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:448 -#: classes/emails/class-wc-email-customer-completed-order.php:176 -#: classes/emails/class-wc-email-customer-invoice.php:179 -#: classes/emails/class-wc-email-new-order.php:149 -msgid "HTML" -msgstr "HTML" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:449 -#: classes/emails/class-wc-email-customer-completed-order.php:177 -#: classes/emails/class-wc-email-customer-invoice.php:180 -#: classes/emails/class-wc-email-new-order.php:150 -msgid "Multipart" -msgstr "Fleirdelt" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:485 -#: classes/abstracts/abstract-wc-email.php:506 -msgid "Could not write to template file." -msgstr "Greidde ikkje skriva til malfil." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:533 -msgid "Template file copied to theme." -msgstr "Kopierte malfila til WordPress-bunaden." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:542 -msgid "Template file deleted from theme." -msgstr "Sletta malfila frå WordPress-bunaden." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:550 -#: classes/abstracts/abstract-wc-integration.php:30 -#: classes/abstracts/abstract-wc-settings-api.php:39 -msgid "Settings" -msgstr "Innstillingar" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:562 -msgid "HTML template" -msgstr "HTML-mal" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:563 -msgid "Plain text template" -msgstr "Rein tekst-mal" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:582 -msgid "Delete template file" -msgstr "Slett malfila" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:585 -msgid "This template has been overridden by your theme and can be found in: %s." -msgstr "Du eller WordPress-bunaden har overstyrt denne malen. Du finn han i %s." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:600 -msgid "Copy file to theme" -msgstr "Kopier fila til bunaden" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:603 -msgid "To override and edit this email template copy %s to your theme folder: %s." -msgstr "For å overstyra og redigera denne epostmalen, kopierer du %s til WP-bunadmappa: %s." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:614 -msgid "File was not found." -msgstr "Fann ikkje fila." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:639 -msgid "View template" -msgstr "Vis malen" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:640 -msgid "Hide template" -msgstr "Gøym malen" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:651 -msgid "Are you sure you want to delete this template file?" -msgstr "Er du sikker på at du vil sletta denne malfila?" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:33 -msgid "The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class directly." -msgstr "WC_Product-klassa er abstrakt. Bruk get_product() to instantiate an instance of a product instead of calling this class directly." - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:545 -#: classes/abstracts/abstract-wc-product.php:550 -#: classes/abstracts/abstract-wc-product.php:569 -msgid "In stock" -msgstr "På lager" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:550 -msgid "Only %s left in stock" -msgstr "Berre %s att på lager" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:553 -msgid "%s in stock" -msgstr "%s er på lager" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:560 -msgid "(backorders allowed)" -msgstr "(restordrar er lov)" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:566 -#: classes/abstracts/abstract-wc-product.php:579 -#: templates/cart/cart.php:76 -msgid "Available on backorder" -msgstr "Tilgjengeleg som restordre" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:572 -#: classes/abstracts/abstract-wc-product.php:582 -#: classes/abstracts/abstract-wc-product.php:586 -msgid "Out of stock" -msgstr "Tomt" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:849 -#: classes/abstracts/abstract-wc-product.php:855 -#: classes/class-wc-cart.php:1743 -#: classes/class-wc-order.php:863 -#: classes/class-wc-product-variable.php:274 -#: classes/class-wc-product-variable.php:283 -#: classes/class-wc-product-variation.php:246 -msgid "Free!" -msgstr "Gratis!" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:873 -msgctxt "min_price" -msgid "From:" -msgstr "Frå:" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:965 -#: templates/single-product-reviews.php:43 -msgid "Rated %s out of 5" -msgstr "Vurdert til %s av 5" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:967 -#: templates/single-product/review.php:27 -#: templates/single-product-reviews.php:43 -msgid "out of 5" -msgstr "av 5" - -# @ woocommerce -#: classes/class-wc-cart.php:464 -msgid "Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in stock). Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Me har diverre ikkje att nok av \"%s\" på lager til å ta imot bestillinga di (%s på lager). Viss du endrar talet i handlekorga di, kan du prøva att. Me orsakar bryet." - -# @ woocommerce -#: classes/class-wc-cart.php:483 -#: classes/class-wc-cart.php:492 -msgid "Sorry, we do not have enough \"%s\" in stock to fulfil your order (%s in stock). Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Me har diverre ikkje att nok av «%s«» på lager til å ta imot bestillinga di (%s på lager). Viss du endrar mengda i handlekorga di, kan du prøva att. Me orsakar bryet." - -# @ woocommerce -#: classes/class-wc-cart.php:527 -msgid "Sorry, we do not have enough \"%s\" in stock to fulfil your order right now. Please try again in %d minutes or edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Me har diverre ikkje att nok av «%s» på lager til å ta imot bestillinga di. Ver god å prøva att om %d minutt, eller endra innhaldet i handlekorga di og prøv på nytt. Me orsakar bryet." - -# @ woocommerce -#: classes/class-wc-cart.php:537 -msgid "Sorry, \"%s\" is not in stock. Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "«%s» er diverre ikkje på lager. Ver god å endra innhaldet i handlekorga di, og prøv på nytt. Me orsakar bryet." - -# @ woocommerce -#: classes/class-wc-cart.php:818 -msgid "Sorry, "%s" cannot be purchased." -msgstr "Det går diverre ikkje an å kjøpa «%s»." - -# @ woocommerce -#: classes/class-wc-cart.php:825 -msgid "You cannot add "%s" to the cart because the product is out of stock." -msgstr "Du kan ikkje leggja «%s» i handlekorga, fordi vara er utseld." - -# @ woocommerce -#: classes/class-wc-cart.php:830 -msgid "You cannot add that amount of "%s" to the cart because there is not enough stock (%s remaining)." -msgstr "Du kan ikkje leggja så mange av «%s» i handlekorga, fordi det ikkje nok på lager (%s att på lager)." - -# @ woocommerce -#: classes/class-wc-cart.php:842 -#: classes/class-wc-cart.php:856 -#: classes/class-wc-cart.php:864 -#: templates/cart/mini-cart.php:68 -#: woocommerce-functions.php:470 -#: woocommerce.php:1176 -msgid "View Cart →" -msgstr "Sjå handlekorga →" - -# @ woocommerce -#: classes/class-wc-cart.php:842 -msgid "You already have this item in your cart." -msgstr "Denne vara er alt i handlekorga di." - -# @ woocommerce -#: classes/class-wc-cart.php:856 -#: classes/class-wc-cart.php:864 -msgid "%s You cannot add that amount to the cart — we have %s in stock and you already have %s in your cart." -msgstr "%s Du kan ikkje leggja så mange i handlekorga — me har %s på lager, og du har allereie %s i korga." - -# @ woocommerce -#: classes/class-wc-cart.php:1755 -msgid "via" -msgstr "via " - -# @ woocommerce -#: classes/class-wc-checkout.php:64 -msgid "Account username" -msgstr "Brukarnamn" - -# @ woocommerce -#: classes/class-wc-checkout.php:65 -msgctxt "placeholder" -msgid "Username" -msgstr "Brukarnamn" - -# @ woocommerce -#: classes/class-wc-checkout.php:72 -#: classes/class-wc-checkout.php:79 -msgid "Account password" -msgstr "Passord" - -# @ woocommerce -#: classes/class-wc-checkout.php:73 -#: classes/class-wc-checkout.php:80 -msgctxt "placeholder" -msgid "Password" -msgstr "Passord" - -# @ woocommerce -#: classes/class-wc-checkout.php:89 -msgid "Order Notes" -msgstr "Merknad til bestillinga" - -# @ woocommerce -#: classes/class-wc-checkout.php:90 -msgctxt "placeholder" -msgid "Notes about your order, e.g. special notes for delivery." -msgstr "Kommentarar om bestillinga di, til dømes detaljar om frakt eller henting." - -# @ woocommerce -#: classes/class-wc-checkout.php:152 -msgid "Order – %s" -msgstr "Sorter – %s" - -# @ woocommerce -#: classes/class-wc-checkout.php:152 -msgctxt "Order date parsed by strftime" -msgid "%b %d, %Y @ %I:%M %p" -msgstr "%e. %b %Y kl %h:%M" - -# @ woocommerce -#: classes/class-wc-checkout.php:276 -msgid "Backordered" -msgstr "På restordre" - -# @ woocommerce -#: classes/class-wc-checkout.php:386 -msgid "Sorry, your session has expired. Return to homepage →" -msgstr "Økta di har gått ut. Gå til heimesida →" - -# @ woocommerce -#: classes/class-wc-checkout.php:438 -#: woocommerce-functions.php:1632 -msgid "is a required field." -msgstr "er kravd." - -# @ woocommerce -#: classes/class-wc-checkout.php:451 -msgid "(%s) is not a valid postcode/ZIP." -msgstr "(%s) er ikkje eit gyldig postnummer." - -# @ woocommerce -#: classes/class-wc-checkout.php:472 -msgid "is not valid. Please enter one of the following:" -msgstr "er ikkje gyldig. Skriv inn ein av desse:" - -# @ woocommerce -#: classes/class-wc-checkout.php:480 -msgid "is not a valid number." -msgstr "er ikkje eit gyldig nummer." - -# @ woocommerce -#: classes/class-wc-checkout.php:487 -msgid "is not a valid email address." -msgstr "er ikkje ei gyldig epostadresse." - -# @ woocommerce -#: classes/class-wc-checkout.php:543 -msgid "Please enter an account username." -msgstr "Skriv inn eit brukarnamn." - -# @ woocommerce -#: classes/class-wc-checkout.php:547 -msgid "Invalid email/username." -msgstr "Ugyldig epost/brukarnamn." - -# @ woocommerce -#: classes/class-wc-checkout.php:550 -msgid "An account is already registered with that username. Please choose another." -msgstr "Det finst alt ein brukarkonto med det brukarnamnet. Vel eit anna." - -# @ woocommerce -#: classes/class-wc-checkout.php:560 -msgid "Please enter an account password." -msgstr "Skriv inn eit passord." - -# @ woocommerce -#: classes/class-wc-checkout.php:563 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:85 -#: woocommerce-functions.php:731 -#: woocommerce-functions.php:1562 -msgid "Passwords do not match." -msgstr "Passorda stemmer ikkje overeins." - -# @ woocommerce -#: classes/class-wc-checkout.php:567 -msgid "An account is already registered with your email address. Please login." -msgstr "Det finst alt ein brukarkonto med denne epostadressa. Logg inn i staden." - -# @ woocommerce -#: classes/class-wc-checkout.php:573 -msgid "You must accept our Terms & Conditions." -msgstr "Du må godkjenna vilkåra våre." - -# @ woocommerce -#: classes/class-wc-checkout.php:582 -msgid "Invalid shipping method." -msgstr "Ugyldig fraktmåte." - -# @ woocommerce -#: classes/class-wc-checkout.php:595 -msgid "Invalid payment method." -msgstr "Ugyldig betalingsmåte." - -# @ woocommerce -#: classes/class-wc-checkout.php:635 -#: woocommerce-core-functions.php:2485 -#: woocommerce-core-functions.php:2488 -#: woocommerce-functions.php:703 -#: woocommerce-functions.php:705 -#: woocommerce-functions.php:708 -#: woocommerce-functions.php:720 -#: woocommerce-functions.php:722 -#: woocommerce-functions.php:725 -#: woocommerce-functions.php:759 -msgid "ERROR" -msgstr "FEIL" - -# @ woocommerce -#: classes/class-wc-checkout.php:635 -#: woocommerce-functions.php:759 -msgid "Couldn’t register you… please contact us if you continue to have problems." -msgstr "Klarte ikkje å registrera deg… ver god å kontakta oss om det ikkje går." - -# @ woocommerce -#: classes/class-wc-countries.php:37 -msgid "Afghanistan" -msgstr "Afghanistan" - -# @ woocommerce -#: classes/class-wc-countries.php:38 -msgid "Åland Islands" -msgstr "Åland" - -# @ woocommerce -#: classes/class-wc-countries.php:39 -msgid "Albania" -msgstr "Albania" - -# @ woocommerce -#: classes/class-wc-countries.php:40 -msgid "Algeria" -msgstr "Algerie" - -# @ woocommerce -#: classes/class-wc-countries.php:41 -msgid "Andorra" -msgstr "Andorra" - -# @ woocommerce -#: classes/class-wc-countries.php:42 -msgid "Angola" -msgstr "Angola" - -# @ woocommerce -#: classes/class-wc-countries.php:43 -msgid "Anguilla" -msgstr "Anguilla" - -# @ woocommerce -#: classes/class-wc-countries.php:44 -msgid "Antarctica" -msgstr "Antarktis" - -# @ woocommerce -#: classes/class-wc-countries.php:45 -msgid "Antigua and Barbuda" -msgstr "Antigua og Barbuda" - -# @ woocommerce -#: classes/class-wc-countries.php:46 -msgid "Argentina" -msgstr "Argentina" - -# @ woocommerce -#: classes/class-wc-countries.php:47 -msgid "Armenia" -msgstr "Armenia" - -# @ woocommerce -#: classes/class-wc-countries.php:48 -msgid "Aruba" -msgstr "Aruba" - -# @ woocommerce -#: classes/class-wc-countries.php:49 -msgid "Australia" -msgstr "Australia" - -# @ woocommerce -#: classes/class-wc-countries.php:50 -msgid "Austria" -msgstr "Austerrike" - -# @ woocommerce -#: classes/class-wc-countries.php:51 -msgid "Azerbaijan" -msgstr "Aserbajdsjan" - -# @ woocommerce -#: classes/class-wc-countries.php:52 -msgid "Bahamas" -msgstr "Bahamas" - -# @ woocommerce -#: classes/class-wc-countries.php:53 -msgid "Bahrain" -msgstr "Bahrain" - -# @ woocommerce -#: classes/class-wc-countries.php:54 -msgid "Bangladesh" -msgstr "Bangladesh" - -# @ woocommerce -#: classes/class-wc-countries.php:55 -msgid "Barbados" -msgstr "Barbados" - -# @ woocommerce -#: classes/class-wc-countries.php:56 -msgid "Belarus" -msgstr "Kviterussland" - -# @ woocommerce -#: classes/class-wc-countries.php:57 -msgid "Belgium" -msgstr "Belgia" - -# @ woocommerce -#: classes/class-wc-countries.php:58 -msgid "Belau" -msgstr "Belau" - -# @ woocommerce -#: classes/class-wc-countries.php:59 -msgid "Belize" -msgstr "Belize" - -# @ woocommerce -#: classes/class-wc-countries.php:60 -msgid "Benin" -msgstr "Benin" - -# @ woocommerce -#: classes/class-wc-countries.php:61 -msgid "Bermuda" -msgstr "Bermuda" - -# @ woocommerce -#: classes/class-wc-countries.php:62 -msgid "Bhutan" -msgstr "Bhutan" - -# @ woocommerce -#: classes/class-wc-countries.php:63 -msgid "Bolivia" -msgstr "Bolivia" - -# @ woocommerce -#: classes/class-wc-countries.php:64 -msgid "Bonaire, Saint Eustatius and Saba" -msgstr "Bonaire, St. Eustatius og Saba" - -# @ woocommerce -#: classes/class-wc-countries.php:65 -msgid "Bosnia and Herzegovina" -msgstr "Bosnia-Hercegovina" - -# @ woocommerce -#: classes/class-wc-countries.php:66 -msgid "Botswana" -msgstr "Botswana" - -# @ woocommerce -#: classes/class-wc-countries.php:67 -msgid "Bouvet Island" -msgstr "Bouvetøya" - -# @ woocommerce -#: classes/class-wc-countries.php:68 -msgid "Brazil" -msgstr "Brasil" - -# @ woocommerce -#: classes/class-wc-countries.php:69 -msgid "British Indian Ocean Territory" -msgstr "Det britiske området i Indiahavet" - -# @ woocommerce -#: classes/class-wc-countries.php:70 -msgid "British Virgin Islands" -msgstr "Jomfruøyane (Storbritannia)" - -# @ woocommerce -#: classes/class-wc-countries.php:71 -msgid "Brunei" -msgstr "Brunei" - -# @ woocommerce -#: classes/class-wc-countries.php:72 -msgid "Bulgaria" -msgstr "Bulgaria" - -# @ woocommerce -#: classes/class-wc-countries.php:73 -msgid "Burkina Faso" -msgstr "Burkina Faso" - -# @ woocommerce -#: classes/class-wc-countries.php:74 -msgid "Burundi" -msgstr "Burundi" - -# @ woocommerce -#: classes/class-wc-countries.php:75 -msgid "Cambodia" -msgstr "Kambodsja" - -# @ woocommerce -#: classes/class-wc-countries.php:76 -msgid "Cameroon" -msgstr "Kamerun" - -# @ woocommerce -#: classes/class-wc-countries.php:77 -msgid "Canada" -msgstr "Kanada" - -# @ woocommerce -#: classes/class-wc-countries.php:78 -msgid "Cape Verde" -msgstr "Kapp Verde" - -# @ woocommerce -#: classes/class-wc-countries.php:79 -msgid "Cayman Islands" -msgstr "Caymanøyane" - -# @ woocommerce -#: classes/class-wc-countries.php:80 -msgid "Central African Republic" -msgstr "Den sentralafrikanske republikken" - -# @ woocommerce -#: classes/class-wc-countries.php:81 -msgid "Chad" -msgstr "Tsjad" - -# @ woocommerce -#: classes/class-wc-countries.php:82 -msgid "Chile" -msgstr "Chile" - -# @ woocommerce -#: classes/class-wc-countries.php:83 -msgid "China" -msgstr "Kina" - -# @ woocommerce -#: classes/class-wc-countries.php:84 -msgid "Christmas Island" -msgstr "Christmasøya" - -# @ woocommerce -#: classes/class-wc-countries.php:85 -msgid "Cocos (Keeling) Islands" -msgstr "Kokosøyane" - -# @ woocommerce -#: classes/class-wc-countries.php:86 -msgid "Colombia" -msgstr "Colombia" - -# @ woocommerce -#: classes/class-wc-countries.php:87 -msgid "Comoros" -msgstr "Komorane" - -# @ woocommerce -#: classes/class-wc-countries.php:88 -msgid "Congo (Brazzaville)" -msgstr "Kongo-Brazzaville" - -# @ woocommerce -#: classes/class-wc-countries.php:89 -msgid "Congo (Kinshasa)" -msgstr "Kongo" - -# @ woocommerce -#: classes/class-wc-countries.php:90 -msgid "Cook Islands" -msgstr "Cookøyane" - -# @ woocommerce -#: classes/class-wc-countries.php:91 -msgid "Costa Rica" -msgstr "Costa Rica" - -# @ woocommerce -#: classes/class-wc-countries.php:92 -msgid "Croatia" -msgstr "Kroatia" - -# @ woocommerce -#: classes/class-wc-countries.php:93 -msgid "Cuba" -msgstr "Cuba" - -# @ woocommerce -#: classes/class-wc-countries.php:94 -msgid "CuraÇao" -msgstr "CuraÇao" - -# @ woocommerce -#: classes/class-wc-countries.php:95 -msgid "Cyprus" -msgstr "Kypros" - -# @ woocommerce -#: classes/class-wc-countries.php:96 -msgid "Czech Republic" -msgstr "Tsjekkia" - -# @ woocommerce -#: classes/class-wc-countries.php:97 -msgid "Denmark" -msgstr "Danmark" - -# @ woocommerce -#: classes/class-wc-countries.php:98 -msgid "Djibouti" -msgstr "Djibouti" - -# @ woocommerce -#: classes/class-wc-countries.php:99 -msgid "Dominica" -msgstr "Dominica" - -# @ woocommerce -#: classes/class-wc-countries.php:100 -msgid "Dominican Republic" -msgstr "Den dominikanske republikken" - -# @ woocommerce -#: classes/class-wc-countries.php:101 -msgid "Ecuador" -msgstr "Ecuador" - -# @ woocommerce -#: classes/class-wc-countries.php:102 -msgid "Egypt" -msgstr "Egypt" - -# @ woocommerce -#: classes/class-wc-countries.php:103 -msgid "El Salvador" -msgstr "El Salvador" - -# @ woocommerce -#: classes/class-wc-countries.php:104 -msgid "Equatorial Guinea" -msgstr "Ekvatorial-Guinea" - -# @ woocommerce -#: classes/class-wc-countries.php:105 -msgid "Eritrea" -msgstr "Eritrea" - -# @ woocommerce -#: classes/class-wc-countries.php:106 -msgid "Estonia" -msgstr "Estland" - -# @ woocommerce -#: classes/class-wc-countries.php:107 -msgid "Ethiopia" -msgstr "Etiopia" - -# @ woocommerce -#: classes/class-wc-countries.php:108 -msgid "Falkland Islands" -msgstr "Falklandsøyane" - -# @ woocommerce -#: classes/class-wc-countries.php:109 -msgid "Faroe Islands" -msgstr "Færøyane" - -# @ woocommerce -#: classes/class-wc-countries.php:110 -msgid "Fiji" -msgstr "Fiji" - -# @ woocommerce -#: classes/class-wc-countries.php:111 -msgid "Finland" -msgstr "Finland" - -# @ woocommerce -#: classes/class-wc-countries.php:112 -msgid "France" -msgstr "Frankrike" - -# @ woocommerce -#: classes/class-wc-countries.php:113 -msgid "French Guiana" -msgstr "Fransk Guyana" - -# @ woocommerce -#: classes/class-wc-countries.php:114 -msgid "French Polynesia" -msgstr "Fransk Polynesia" - -# @ woocommerce -#: classes/class-wc-countries.php:115 -msgid "French Southern Territories" -msgstr "Franske sørlege territorium" - -# @ woocommerce -#: classes/class-wc-countries.php:116 -msgid "Gabon" -msgstr "Gabon" - -# @ woocommerce -#: classes/class-wc-countries.php:117 -msgid "Gambia" -msgstr "Gambia" - -# @ woocommerce -#: classes/class-wc-countries.php:118 -#: i18n/states/US.php:23 -msgid "Georgia" -msgstr "Georgia" - -# @ woocommerce -#: classes/class-wc-countries.php:119 -msgid "Germany" -msgstr "Tyskland" - -# @ woocommerce -#: classes/class-wc-countries.php:120 -msgid "Ghana" -msgstr "Ghana" - -# @ woocommerce -#: classes/class-wc-countries.php:121 -msgid "Gibraltar" -msgstr "Gibraltar" - -# @ woocommerce -#: classes/class-wc-countries.php:122 -msgid "Greece" -msgstr "Hellas" - -# @ woocommerce -#: classes/class-wc-countries.php:123 -msgid "Greenland" -msgstr "Grønland" - -# @ woocommerce -#: classes/class-wc-countries.php:124 -msgid "Grenada" -msgstr "Grenada" - -# @ woocommerce -#: classes/class-wc-countries.php:125 -msgid "Guadeloupe" -msgstr "Guadeloupe" - -# @ woocommerce -#: classes/class-wc-countries.php:126 -msgid "Guatemala" -msgstr "Guatemala" - -# @ woocommerce -#: classes/class-wc-countries.php:127 -msgid "Guernsey" -msgstr "Guernsey" - -# @ woocommerce -#: classes/class-wc-countries.php:128 -msgid "Guinea" -msgstr "Guinea" - -# @ woocommerce -#: classes/class-wc-countries.php:129 -msgid "Guinea-Bissau" -msgstr "Guinea-Bissau" - -# @ woocommerce -#: classes/class-wc-countries.php:130 -msgid "Guyana" -msgstr "Guyana" - -# @ woocommerce -#: classes/class-wc-countries.php:131 -msgid "Haiti" -msgstr "Haiti" - -# @ woocommerce -#: classes/class-wc-countries.php:132 -msgid "Heard Island and McDonald Islands" -msgstr "Heard- og McDonald-øyane" - -# @ woocommerce -#: classes/class-wc-countries.php:133 -msgid "Honduras" -msgstr "Honduras" - -# @ woocommerce -#: classes/class-wc-countries.php:134 -msgid "Hong Kong" -msgstr "Hongkong" - -# @ woocommerce -#: classes/class-wc-countries.php:135 -msgid "Hungary" -msgstr "Ungarn" - -# @ woocommerce -#: classes/class-wc-countries.php:136 -msgid "Iceland" -msgstr "Island" - -# @ woocommerce -#: classes/class-wc-countries.php:137 -msgid "India" -msgstr "India" - -# @ woocommerce -#: classes/class-wc-countries.php:138 -msgid "Indonesia" -msgstr "Indonesia" - -# @ woocommerce -#: classes/class-wc-countries.php:139 -msgid "Iran" -msgstr "Iran" - -# @ woocommerce -#: classes/class-wc-countries.php:140 -msgid "Iraq" -msgstr "Irak" - -# @ woocommerce -#: classes/class-wc-countries.php:141 -msgid "Republic of Ireland" -msgstr "Republikken Irland" - -# @ woocommerce -#: classes/class-wc-countries.php:142 -msgid "Isle of Man" -msgstr "Øya Man" - -# @ woocommerce -#: classes/class-wc-countries.php:143 -msgid "Israel" -msgstr "Israel" - -# @ woocommerce -#: classes/class-wc-countries.php:144 -msgid "Italy" -msgstr "Italia" - -# @ woocommerce -#: classes/class-wc-countries.php:145 -msgid "Ivory Coast" -msgstr "Elfenbeinskysten" - -# @ woocommerce -#: classes/class-wc-countries.php:146 -msgid "Jamaica" -msgstr "Jamaica" - -# @ woocommerce -#: classes/class-wc-countries.php:147 -msgid "Japan" -msgstr "Japan" - -# @ woocommerce -#: classes/class-wc-countries.php:148 -msgid "Jersey" -msgstr "Jersey" - -# @ woocommerce -#: classes/class-wc-countries.php:149 -msgid "Jordan" -msgstr "Jordan" - -# @ woocommerce -#: classes/class-wc-countries.php:150 -msgid "Kazakhstan" -msgstr "Kasakhstan" - -# @ woocommerce -#: classes/class-wc-countries.php:151 -msgid "Kenya" -msgstr "Kenya" - -# @ woocommerce -#: classes/class-wc-countries.php:152 -msgid "Kiribati" -msgstr "Kiribati" - -# @ woocommerce -#: classes/class-wc-countries.php:153 -msgid "Kuwait" -msgstr "Kuwait" - -# @ woocommerce -#: classes/class-wc-countries.php:154 -msgid "Kyrgyzstan" -msgstr "Kirgisistan" - -# @ woocommerce -#: classes/class-wc-countries.php:155 -msgid "Laos" -msgstr "Laos" - -# @ woocommerce -#: classes/class-wc-countries.php:156 -msgid "Latvia" -msgstr "Latvia" - -# @ woocommerce -#: classes/class-wc-countries.php:157 -msgid "Lebanon" -msgstr "Libanon" - -# @ woocommerce -#: classes/class-wc-countries.php:158 -msgid "Lesotho" -msgstr "Lesotho" - -# @ woocommerce -#: classes/class-wc-countries.php:159 -msgid "Liberia" -msgstr "Liberia" - -# @ woocommerce -#: classes/class-wc-countries.php:160 -msgid "Libya" -msgstr "Libya" - -# @ woocommerce -#: classes/class-wc-countries.php:161 -msgid "Liechtenstein" -msgstr "Liechtenstein" - -# @ woocommerce -#: classes/class-wc-countries.php:162 -msgid "Lithuania" -msgstr "Litauen" - -# @ woocommerce -#: classes/class-wc-countries.php:163 -msgid "Luxembourg" -msgstr "Luxembourg" - -# @ woocommerce -#: classes/class-wc-countries.php:164 -msgid "Macao S.A.R., China" -msgstr "Macao, Kina" - -# @ woocommerce -#: classes/class-wc-countries.php:165 -msgid "Macedonia" -msgstr "Makedonia" - -# @ woocommerce -#: classes/class-wc-countries.php:166 -msgid "Madagascar" -msgstr "Madagaskar" - -# @ woocommerce -#: classes/class-wc-countries.php:167 -msgid "Malawi" -msgstr "Malawi" - -# @ woocommerce -#: classes/class-wc-countries.php:168 -msgid "Malaysia" -msgstr "Malaysia" - -# @ woocommerce -#: classes/class-wc-countries.php:169 -msgid "Maldives" -msgstr "Maldivane" - -# @ woocommerce -#: classes/class-wc-countries.php:170 -msgid "Mali" -msgstr "Mali" - -# @ woocommerce -#: classes/class-wc-countries.php:171 -msgid "Malta" -msgstr "Malta" - -# @ woocommerce -#: classes/class-wc-countries.php:172 -msgid "Marshall Islands" -msgstr "Marshalløyane" - -# @ woocommerce -#: classes/class-wc-countries.php:173 -msgid "Martinique" -msgstr "Martinique" - -# @ woocommerce -#: classes/class-wc-countries.php:174 -msgid "Mauritania" -msgstr "Mauritania" - -# @ woocommerce -#: classes/class-wc-countries.php:175 -msgid "Mauritius" -msgstr "Mauritius" - -# @ woocommerce -#: classes/class-wc-countries.php:176 -msgid "Mayotte" -msgstr "Mayotte" - -# @ woocommerce -#: classes/class-wc-countries.php:177 -msgid "Mexico" -msgstr "Mexico" - -# @ woocommerce -#: classes/class-wc-countries.php:178 -msgid "Micronesia" -msgstr "Mikronesiaføderasjonen" - -# @ woocommerce -#: classes/class-wc-countries.php:179 -msgid "Moldova" -msgstr "Moldova" - -# @ woocommerce -#: classes/class-wc-countries.php:180 -msgid "Monaco" -msgstr "Monaco" - -# @ woocommerce -#: classes/class-wc-countries.php:181 -msgid "Mongolia" -msgstr "Mongolia" - -# @ woocommerce -#: classes/class-wc-countries.php:182 -msgid "Montenegro" -msgstr "Montenegro" - -# @ woocommerce -#: classes/class-wc-countries.php:183 -msgid "Montserrat" -msgstr "Montserrat" - -# @ woocommerce -#: classes/class-wc-countries.php:184 -msgid "Morocco" -msgstr "Marokko" - -# @ woocommerce -#: classes/class-wc-countries.php:185 -msgid "Mozambique" -msgstr "Mosambik" - -# @ woocommerce -#: classes/class-wc-countries.php:186 -msgid "Myanmar" -msgstr "Myanmar" - -# @ woocommerce -#: classes/class-wc-countries.php:187 -msgid "Namibia" -msgstr "Namibia" - -# @ woocommerce -#: classes/class-wc-countries.php:188 -msgid "Nauru" -msgstr "Nauru" - -# @ woocommerce -#: classes/class-wc-countries.php:189 -msgid "Nepal" -msgstr "Nepal" - -# @ woocommerce -#: classes/class-wc-countries.php:190 -msgid "Netherlands" -msgstr "Nederland" - -# @ woocommerce -#: classes/class-wc-countries.php:191 -msgid "Netherlands Antilles" -msgstr "Dei nederlandske Antillane" - -# @ woocommerce -#: classes/class-wc-countries.php:192 -msgid "New Caledonia" -msgstr "Ny-Caledonia" - -# @ woocommerce -#: classes/class-wc-countries.php:193 -msgid "New Zealand" -msgstr "New Zealand" - -# @ woocommerce -#: classes/class-wc-countries.php:194 -msgid "Nicaragua" -msgstr "Nicaragua" - -# @ woocommerce -#: classes/class-wc-countries.php:195 -msgid "Niger" -msgstr "Niger" - -# @ woocommerce -#: classes/class-wc-countries.php:196 -msgid "Nigeria" -msgstr "Nigeria" - -# @ woocommerce -#: classes/class-wc-countries.php:197 -msgid "Niue" -msgstr "Niue" - -# @ woocommerce -#: classes/class-wc-countries.php:198 -msgid "Norfolk Island" -msgstr "Norfolkøya; Norfolk Island" - -# @ woocommerce -#: classes/class-wc-countries.php:199 -msgid "North Korea" -msgstr "Nord-Korea" - -# @ woocommerce -#: classes/class-wc-countries.php:200 -msgid "Norway" -msgstr "Noreg" - -# @ woocommerce -#: classes/class-wc-countries.php:201 -msgid "Oman" -msgstr "Oman" - -# @ woocommerce -#: classes/class-wc-countries.php:202 -msgid "Pakistan" -msgstr "Pakistan" - -# @ woocommerce -#: classes/class-wc-countries.php:203 -msgid "Palestinian Territory" -msgstr "Palestinsk territorium" - -# @ woocommerce -#: classes/class-wc-countries.php:204 -msgid "Panama" -msgstr "Panama" - -# @ woocommerce -#: classes/class-wc-countries.php:205 -msgid "Papua New Guinea" -msgstr "Papua Ny-Guinea" - -# @ woocommerce -#: classes/class-wc-countries.php:206 -msgid "Paraguay" -msgstr "Paraguay" - -# @ woocommerce -#: classes/class-wc-countries.php:207 -msgid "Peru" -msgstr "Peru" - -# @ woocommerce -#: classes/class-wc-countries.php:208 -msgid "Philippines" -msgstr "Filippinane" - -# @ woocommerce -#: classes/class-wc-countries.php:209 -msgid "Pitcairn" -msgstr "Pitcairn" - -# @ woocommerce -#: classes/class-wc-countries.php:210 -msgid "Poland" -msgstr "Polen" - -# @ woocommerce -#: classes/class-wc-countries.php:211 -msgid "Portugal" -msgstr "Portugal" - -# @ woocommerce -#: classes/class-wc-countries.php:212 -msgid "Qatar" -msgstr "Qatar" - -# @ woocommerce -#: classes/class-wc-countries.php:213 -msgid "Reunion" -msgstr "Réunion" - -# @ woocommerce -#: classes/class-wc-countries.php:214 -msgid "Romania" -msgstr "Romania" - -# @ woocommerce -#: classes/class-wc-countries.php:215 -msgid "Russia" -msgstr "Russland" - -# @ woocommerce -#: classes/class-wc-countries.php:216 -msgid "Rwanda" -msgstr "Rwanda" - -# @ woocommerce -#: classes/class-wc-countries.php:217 -msgid "Saint Barthélemy" -msgstr "Saint Barthélemy" - -# @ woocommerce -#: classes/class-wc-countries.php:218 -msgid "Saint Helena" -msgstr "St. Helena" - -# @ woocommerce -#: classes/class-wc-countries.php:219 -msgid "Saint Kitts and Nevis" -msgstr "St. Kitts og Nevis" - -# @ woocommerce -#: classes/class-wc-countries.php:220 -msgid "Saint Lucia" -msgstr "St. Lucia" - -# @ woocommerce -#: classes/class-wc-countries.php:221 -msgid "Saint Martin (French part)" -msgstr "Saint Martin (fransk del)" - -# @ woocommerce -#: classes/class-wc-countries.php:222 -msgid "Saint Martin (Dutch part)" -msgstr "Saint Martin (nederlandsk del)" - -# @ woocommerce -#: classes/class-wc-countries.php:223 -msgid "Saint Pierre and Miquelon" -msgstr "Saint-Pierre-et-Miquelon" - -# @ woocommerce -#: classes/class-wc-countries.php:224 -msgid "Saint Vincent and the Grenadines" -msgstr "St. Vincent og Grenadinane" - -# @ woocommerce -#: classes/class-wc-countries.php:225 -msgid "Samoa" -msgstr "Samoa" - -# @ woocommerce -#: classes/class-wc-countries.php:226 -msgid "San Marino" -msgstr "San Marino" - -# @ woocommerce -#: classes/class-wc-countries.php:227 -msgid "São Tomé and Príncipe" -msgstr "São Tomé and Príncipe" - -# @ woocommerce -#: classes/class-wc-countries.php:228 -msgid "Saudi Arabia" -msgstr "Saudi-Arabia" - -# @ woocommerce -#: classes/class-wc-countries.php:229 -msgid "Senegal" -msgstr "Senegal" - -# @ woocommerce -#: classes/class-wc-countries.php:230 -msgid "Serbia" -msgstr "Serbia" - -# @ woocommerce -#: classes/class-wc-countries.php:231 -msgid "Seychelles" -msgstr "Seychellane" - -# @ woocommerce -#: classes/class-wc-countries.php:232 -msgid "Sierra Leone" -msgstr "Sierra Leone" - -# @ woocommerce -#: classes/class-wc-countries.php:233 -msgid "Singapore" -msgstr "Singapore" - -# @ woocommerce -#: classes/class-wc-countries.php:234 -msgid "Slovakia" -msgstr "Slovakia" - -# @ woocommerce -#: classes/class-wc-countries.php:235 -msgid "Slovenia" -msgstr "Slovenia" - -# @ woocommerce -#: classes/class-wc-countries.php:236 -msgid "Solomon Islands" -msgstr "Salomonøyane" - -# @ woocommerce -#: classes/class-wc-countries.php:237 -msgid "Somalia" -msgstr "Somalia" - -# @ woocommerce -#: classes/class-wc-countries.php:238 -msgid "South Africa" -msgstr "Sør-Afrika" - -# @ woocommerce -#: classes/class-wc-countries.php:239 -msgid "South Georgia/Sandwich Islands" -msgstr "Sør-Georgia og dei sørlege Sandwichøyane" - -# @ woocommerce -#: classes/class-wc-countries.php:240 -msgid "South Korea" -msgstr "Sør-Korea" - -# @ woocommerce -#: classes/class-wc-countries.php:241 -msgid "South Sudan" -msgstr "Sør-Sudan" - -# @ woocommerce -#: classes/class-wc-countries.php:242 -msgid "Spain" -msgstr "Spania" - -# @ woocommerce -#: classes/class-wc-countries.php:243 -msgid "Sri Lanka" -msgstr "Sri Lanka" - -# @ woocommerce -#: classes/class-wc-countries.php:244 -msgid "Sudan" -msgstr "Sudan" - -# @ woocommerce -#: classes/class-wc-countries.php:245 -msgid "Suriname" -msgstr "Surinam" - -# @ woocommerce -#: classes/class-wc-countries.php:246 -msgid "Svalbard and Jan Mayen" -msgstr "Svalbard og Jan Mayen" - -# @ woocommerce -#: classes/class-wc-countries.php:247 -msgid "Swaziland" -msgstr "Swaziland" - -# @ woocommerce -#: classes/class-wc-countries.php:248 -msgid "Sweden" -msgstr "Sverige" - -# @ woocommerce -#: classes/class-wc-countries.php:249 -msgid "Switzerland" -msgstr "Sveits" - -# @ woocommerce -#: classes/class-wc-countries.php:250 -msgid "Syria" -msgstr "Syria" - -# @ woocommerce -#: classes/class-wc-countries.php:251 -msgid "Taiwan" -msgstr "Taiwan" - -# @ woocommerce -#: classes/class-wc-countries.php:252 -msgid "Tajikistan" -msgstr "Tadsjikistan" - -# @ woocommerce -#: classes/class-wc-countries.php:253 -msgid "Tanzania" -msgstr "Tanzania" - -# @ woocommerce -#: classes/class-wc-countries.php:254 -msgid "Thailand" -msgstr "Thailand" - -# @ woocommerce -#: classes/class-wc-countries.php:255 -msgid "Timor-Leste" -msgstr "Aust-Timor" - -# @ woocommerce -#: classes/class-wc-countries.php:256 -msgid "Togo" -msgstr "Togo" - -# @ woocommerce -#: classes/class-wc-countries.php:257 -msgid "Tokelau" -msgstr "Tokelau" - -# @ woocommerce -#: classes/class-wc-countries.php:258 -msgid "Tonga" -msgstr "Tonga" - -# @ woocommerce -#: classes/class-wc-countries.php:259 -msgid "Trinidad and Tobago" -msgstr "Trinidad og Tobago" - -# @ woocommerce -#: classes/class-wc-countries.php:260 -msgid "Tunisia" -msgstr "Tunisia" - -# @ woocommerce -#: classes/class-wc-countries.php:261 -msgid "Turkey" -msgstr "Turkey" - -# @ woocommerce -#: classes/class-wc-countries.php:262 -msgid "Turkmenistan" -msgstr "Turkmenistan" - -# @ woocommerce -#: classes/class-wc-countries.php:263 -msgid "Turks and Caicos Islands" -msgstr "Turks- og Caicosøyane" - -# @ woocommerce -#: classes/class-wc-countries.php:264 -msgid "Tuvalu" -msgstr "Tuvalu" - -# @ woocommerce -#: classes/class-wc-countries.php:265 -msgid "Uganda" -msgstr "Uganda" - -# @ woocommerce -#: classes/class-wc-countries.php:266 -msgid "Ukraine" -msgstr "Ukraina" - -# @ woocommerce -#: classes/class-wc-countries.php:267 -msgid "United Arab Emirates" -msgstr "Dei sameinte arabiske emirata" - -# @ woocommerce -#: classes/class-wc-countries.php:268 -msgid "United Kingdom" -msgstr "Storbritannia" - -# @ woocommerce -#: classes/class-wc-countries.php:269 -msgid "United States" -msgstr "USA" - -# @ woocommerce -#: classes/class-wc-countries.php:270 -msgid "Uruguay" -msgstr "Uruguay" - -# @ woocommerce -#: classes/class-wc-countries.php:271 -msgid "Uzbekistan" -msgstr "Usbekistan" - -# @ woocommerce -#: classes/class-wc-countries.php:272 -msgid "Vanuatu" -msgstr "Vanuatu" - -# @ woocommerce -#: classes/class-wc-countries.php:273 -msgid "Vatican" -msgstr "Vatikanstaten" - -# @ woocommerce -#: classes/class-wc-countries.php:274 -msgid "Venezuela" -msgstr "Venezuela" - -# @ woocommerce -#: classes/class-wc-countries.php:275 -msgid "Vietnam" -msgstr "Vietnam" - -# @ woocommerce -#: classes/class-wc-countries.php:276 -msgid "Wallis and Futuna" -msgstr "Wallis- og Futunaøyane" - -# @ woocommerce -#: classes/class-wc-countries.php:277 -msgid "Western Sahara" -msgstr "Vest-Sahara" - -# @ woocommerce -#: classes/class-wc-countries.php:278 -msgid "Yemen" -msgstr "Jemen" - -# @ woocommerce -#: classes/class-wc-countries.php:279 -msgid "Zambia" -msgstr "Zambia" - -# @ woocommerce -#: classes/class-wc-countries.php:280 -msgid "Zimbabwe" -msgstr "Zimbabwe" - -# @ woocommerce -#: classes/class-wc-countries.php:418 -msgid "to the" -msgstr "til" - -# @ woocommerce -#: classes/class-wc-countries.php:419 -msgid "to" -msgstr "til" - -# @ woocommerce -#: classes/class-wc-countries.php:432 -msgid "the" -msgstr "den" - -# @ woocommerce -#: classes/class-wc-countries.php:444 -msgid "VAT" -msgstr "Mva" - -# @ woocommerce -#: classes/class-wc-countries.php:444 -#: templates/cart/totals.php:110 -#: templates/checkout/review-order.php:113 -msgid "Tax" -msgstr "Avgift" - -# @ woocommerce -#: classes/class-wc-countries.php:457 -msgid "(incl. VAT)" -msgstr "(inkl.mva)" - -# @ woocommerce -#: classes/class-wc-countries.php:457 -msgid "(incl. tax)" -msgstr "(inkl. mva.)" - -# @ woocommerce -#: classes/class-wc-countries.php:470 -msgid "(ex. VAT)" -msgstr "(ekskl.mva)" - -# @ woocommerce -#: classes/class-wc-countries.php:470 -msgid "(ex. tax)" -msgstr "(u/mva)" - -# @ woocommerce -#: classes/class-wc-countries.php:694 -#: classes/class-wc-countries.php:704 -#: classes/class-wc-countries.php:724 -#: classes/class-wc-countries.php:779 -#: classes/class-wc-countries.php:803 -#: classes/class-wc-countries.php:848 -#: classes/class-wc-countries.php:872 -msgid "Province" -msgstr "Provins" - -# @ woocommerce -#: classes/class-wc-countries.php:710 -msgid "Canton" -msgstr "Kantone" - -# @ woocommerce -#: classes/class-wc-countries.php:719 -#: classes/class-wc-countries.php:854 -msgid "Municipality" -msgstr "Kommune" - -# @ woocommerce -#: classes/class-wc-countries.php:766 -msgid "Town / District" -msgstr "By/område" - -# @ woocommerce -#: classes/class-wc-countries.php:769 -msgid "Region" -msgstr "Region" - -# @ woocommerce -#: classes/class-wc-countries.php:877 -msgid "Zip" -msgstr "Postnummer" - -# @ woocommerce -#: classes/class-wc-countries.php:880 -msgid "State" -msgstr "Delstat" - -# @ woocommerce -#: classes/class-wc-countries.php:885 -#: templates/cart/shipping-calculator.php:68 -msgid "Postcode" -msgstr "Postnummer" - -# @ woocommerce -#: classes/class-wc-countries.php:888 -msgid "County" -msgstr "Fylke" - -# @ woocommerce -#: classes/class-wc-countries.php:920 -#: classes/class-wc-countries.php:921 -#: classes/class-wc-countries.php:996 -#: templates/cart/shipping-calculator.php:68 -msgid "Postcode / Zip" -msgstr "Postnummer" - -# @ woocommerce -#: classes/class-wc-countries.php:925 -#: classes/class-wc-countries.php:926 -#: classes/class-wc-countries.php:985 -msgid "Town / City" -msgstr "Poststad" - -# @ woocommerce -#: classes/class-wc-countries.php:930 -#: classes/class-wc-countries.php:931 -#: classes/class-wc-countries.php:991 -msgid "State / County" -msgstr "Delstat/fylke" - -# @ woocommerce -#: classes/class-wc-countries.php:955 -msgid "Country" -msgstr "Land" - -# @ woocommerce -#: classes/class-wc-countries.php:960 -msgid "First Name" -msgstr "Førenamn" - -# @ woocommerce -#: classes/class-wc-countries.php:965 -msgid "Last Name" -msgstr "Etternamn" - -# @ woocommerce -#: classes/class-wc-countries.php:971 -msgid "Company Name" -msgstr "Firmanamn" - -# @ woocommerce -#: classes/class-wc-countries.php:975 -msgid "Address" -msgstr "Adresse" - -# @ woocommerce -#: classes/class-wc-countries.php:976 -msgctxt "placeholder" -msgid "Street address" -msgstr "Gateadresse" - -# @ woocommerce -#: classes/class-wc-countries.php:981 -msgctxt "placeholder" -msgid "Apartment, suite, unit etc. (optional)" -msgstr "Leilegheit, oppgang, avdeling osb (valfritt)" - -# @ woocommerce -#: classes/class-wc-countries.php:1038 -msgid "Email Address" -msgstr "Epostadresse" - -# @ woocommerce -#: classes/class-wc-countries.php:1044 -msgid "Phone" -msgstr "Telefon" - -# @ woocommerce -#: classes/class-wc-coupon.php:420 -msgid "Coupon code applied successfully." -msgstr "Kupongkoden vart brukt." - -# @ woocommerce -#: classes/class-wc-coupon.php:441 -msgid "Coupon is not valid." -msgstr "Kupongen er ikkje gyldig." - -# @ woocommerce -#: classes/class-wc-coupon.php:444 -#: classes/class-wc-coupon.php:494 -msgid "Coupon does not exist!" -msgstr "Kupongen finst ikkje!" - -# @ woocommerce -#: classes/class-wc-coupon.php:447 -msgid "Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from your order." -msgstr "Det ser ut som kupongen «%s» er ugyldig - me har fjerna han frå bestillinga di." - -# @ woocommerce -#: classes/class-wc-coupon.php:450 -msgid "Sorry, it seems the coupon \"%s\" is not yours - it has now been removed from your order." -msgstr "Det ser ut som rabattkupongen «%s» ikkje er din - me har fjerna han frå bestillinga di." - -# @ woocommerce -#: classes/class-wc-coupon.php:453 -msgid "Coupon code already applied!" -msgstr "Du har allereie brukt denne kupongkoden!" - -# @ woocommerce -#: classes/class-wc-coupon.php:456 -msgid "Sorry, coupon \"%s\" has already been applied and cannot be used in conjunction with other coupons." -msgstr "Kupongen «%s» er allereie teken i bruk, og kan ikkje brukast saman med andre kupongrabattar." - -# @ woocommerce -#: classes/class-wc-coupon.php:459 -msgid "Coupon usage limit has been reached." -msgstr "Du har nådd grensa for å bruka denne kupongen." - -# @ woocommerce -#: classes/class-wc-coupon.php:462 -msgid "This coupon has expired." -msgstr "Denne rabattkupongen har gått ut" - -# @ woocommerce -#: classes/class-wc-coupon.php:465 -msgid "The minimum spend for this coupon is %s." -msgstr "For å bruka denne rabattkupongen, må du handla for minst %s." - -# @ woocommerce -#: classes/class-wc-coupon.php:468 -msgid "Sorry, this coupon is not applicable to your cart contents." -msgstr "Denne kupongrabatten gjeld diverre ikkje innhaldet i handlekorga di." - -# @ woocommerce -#: classes/class-wc-coupon.php:471 -msgid "Sorry, this coupon is not valid for sale items." -msgstr "Denne kupongrabatten gjeld diverre ikkje for varer som er på sal." - -# @ woocommerce -#: classes/class-wc-coupon.php:497 -msgid "Please enter a coupon code." -msgstr "Skriv inn ein rabattkupongkode." - -# @ woocommerce -#: classes/class-wc-customer.php:628 -#: classes/class-wc-customer.php:638 -msgid "File %d" -msgstr "Fil %d" - -# @ woocommerce -#: classes/class-wc-emails.php:246 -msgid "Note" -msgstr "Merknad" - -# @ woocommerce -#: classes/class-wc-emails.php:281 -msgid "Product low in stock" -msgstr "Snart tomt for vara" - -# @ woocommerce -#: classes/class-wc-emails.php:286 -#: classes/class-wc-emails.php:318 -#: classes/class-wc-emails.php:362 -msgid "Variation #%s of %s" -msgstr "Variant nr %s av %s" - -# @ woocommerce -#: classes/class-wc-emails.php:288 -#: classes/class-wc-emails.php:320 -#: classes/class-wc-emails.php:364 -msgid "Product #%s - %s" -msgstr "Produkt nr. %s - %s" - -# @ woocommerce -#: classes/class-wc-emails.php:290 -msgid "is low in stock." -msgstr "har lite att på lager." - -# @ woocommerce -#: classes/class-wc-emails.php:313 -msgid "Product out of stock" -msgstr "Vara er ikkje på lager" - -# @ woocommerce -#: classes/class-wc-emails.php:322 -msgid "is out of stock." -msgstr "er ikkje på lager." - -# @ woocommerce -#: classes/class-wc-emails.php:357 -msgid "Product Backorder" -msgstr "Restordre" - -# @ woocommerce -#: classes/class-wc-emails.php:366 -msgid "%s units of %s have been backordered in order #%s." -msgstr "%s av %s einingar er bestilte som restordre i tinging nr #%s." - -# @ woocommerce -#: classes/class-wc-order.php:283 -msgctxt "hash before order number" -msgid "#" -msgstr "Nr. " - -# @ woocommerce -#: classes/class-wc-order.php:858 -msgid " %svia %s" -msgstr " %s via %s" - -# @ woocommerce -#: classes/class-wc-order.php:923 -msgid "Cart Subtotal:" -msgstr "Sum varer:" - -# @ woocommerce -#: classes/class-wc-order.php:929 -msgid "Cart Discount:" -msgstr "Rabatt på handlekorga:" - -# @ woocommerce -#: classes/class-wc-order.php:935 -msgid "Shipping:" -msgstr "Frakt:" - -# @ woocommerce -#: classes/class-wc-order.php:980 -msgid "Subtotal:" -msgstr "Subtotal:" - -# @ woocommerce -#: classes/class-wc-order.php:1006 -msgid "Order Discount:" -msgstr "Rabatt på bestillinga:" - -# @ woocommerce -#: classes/class-wc-order.php:1011 -msgid "Order Total:" -msgstr "I alt:" - -# @ woocommerce -#: classes/class-wc-order.php:1034 -#: templates/cart/totals.php:145 -#: templates/checkout/review-order.php:151 -msgid "(Includes %s)" -msgstr "(inkluderer %s)" - -# @ woocommerce -#: classes/class-wc-order.php:1183 -#: classes/class-wc-order.php:1185 -#: classes/class-wc-order.php:1188 -msgid "WooCommerce" -msgstr "WooCommerce" - -# @ woocommerce -#: classes/class-wc-order.php:1235 -msgid "Order status changed from %s to %s." -msgstr "Statusen på bestillinga di er endra frå %s til %s." - -# @ woocommerce -#: classes/class-wc-order.php:1461 -#: woocommerce-ajax.php:1163 -#: woocommerce-ajax.php:1164 -msgid "Item #%s stock reduced from %s to %s." -msgstr "Lagermengda for vara #%s er minka frå %s til %s." - -# @ woocommerce -#: classes/class-wc-order.php:1473 -msgid "Order item stock reduced successfully." -msgstr "Reduserte lagermengda av den bestilte vara." - -# @ woocommerce -#: classes/class-wc-product-external.php:56 -msgid "Buy product" -msgstr "Kjøp" - -# @ woocommerce -#: classes/class-wc-shortcodes.php:571 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:257 -#: templates/loop/add-to-cart.php:46 -#: templates/single-product/add-to-cart/grouped.php:45 -#: templates/single-product/add-to-cart/grouped.php:75 -#: templates/single-product/add-to-cart/simple.php:42 -#: templates/single-product/add-to-cart/variable.php:78 -msgid "Add to cart" -msgstr "Legg i korga" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:24 -msgid "Completed order" -msgstr "Fullført tinging" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:25 -msgid "Order complete emails are sent to the customer when the order is marked complete and usual indicates that the order has been shipped." -msgstr "Epostar med melding om fullført tinging blir sende til kunden når tinginga er merka med fullført. Det tyder vanlegvis at tinginga er send." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:27 -msgid "Your order is complete" -msgstr "Bestillinga er fullført" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:28 -msgid "Your {blogname} order from {order_date} is complete" -msgstr "Tinginga di frå {blogname} {order_date} er fullført" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:37 -msgid "Your order is complete - download your files" -msgstr "Bestillinga er fullført - du kan lasta ned filene dine" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:38 -msgid "Your {blogname} order from {order_date} is complete - download your files" -msgstr "Tinginga di frå {blogname} {order_date} er fullført - du kan lasta ned filene dine" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:141 -#: classes/emails/class-wc-email-new-order.php:128 -msgid "Subject" -msgstr "Emne" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:148 -#: classes/emails/class-wc-email-new-order.php:135 -msgid "Email Heading" -msgstr "Overskrift for eposten" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:155 -msgid "Subject (downloadable)" -msgstr "Emne (nedlastingar)" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:162 -msgid "Email Heading (downloadable)" -msgstr "Epostoverskrift (nedlastingar)" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:27 -msgid "Customer invoice" -msgstr "Kundefaktura" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:28 -msgid "Customer invoice emails can be sent to the user containing order info and payment links." -msgstr "Du kan senda kundane faktura-epostar som inneheld info om tinginga og lenkjer til å betala henne." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:33 -msgid "Invoice for order {order_number} from {order_date}" -msgstr "Rekning for ordrenr. {order_number} {order_date}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:34 -msgid "Invoice for order {order_number}" -msgstr "Faktura for bestillinga {order_number}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:36 -msgid "Your {blogname} order from {order_date}" -msgstr "Tinginga di frå {blogname} {order_date}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:37 -msgid "Order {order_number} details" -msgstr "Detaljar om ordrenr. {order_number}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:158 -msgid "Email subject (paid)" -msgstr "Emne for epostar (betalt)" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:165 -msgid "Email heading (paid)" -msgstr "Epostoverskrift (betalt)" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:31 -msgid "New account" -msgstr "Ny brukarkonto" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:32 -msgid "Customer new account emails are sent when a customer signs up via the checkout or My Account page." -msgstr "Epostar om nye kundekontoar blir sende når ein kunde registrerer seg på kassa- eller kontosida." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:37 -msgid "Your account on {blogname}" -msgstr "Brukarkontoen din på {blogname}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:38 -msgid "Welcome to {blogname}" -msgstr "Velkomen til {blogname}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:29 -msgid "Customer note" -msgstr "Kundemerknad" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:30 -msgid "Customer note emails are sent when you add a note to an order." -msgstr "Epostar om ordremerknader blir sende når du lagar ein merknad til ei tinging." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:35 -msgid "Note added to your {blogname} order from {order_date}" -msgstr "Merknad til tinginga di hjå {blogname} {order_date}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:36 -msgid "A note has been added to your order" -msgstr "Ein merknad er lagt til bestillinga di" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:24 -msgid "Processing order" -msgstr "Handsamar tinginga" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:25 -msgid "This is an order notification sent to the customer after payment containing order details." -msgstr "Dette er ei ordrestadfesting som blir send til kunden etter betaling. Stadfestinga inneheld detaljar om tinginga." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:27 -msgid "Thank you for your order" -msgstr "Takk for bestillinga!" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:28 -msgid "Your {blogname} order receipt from {order_date}" -msgstr "Kvitteringa for kjøpet ditt frå {blogname} {order_date}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:36 -msgid "Reset password" -msgstr "Nullstill passordet" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:37 -msgid "Customer reset password emails are sent when a customer resets their password." -msgstr "Epostar om passordnullstilling blir sende når ein kunde nullstiller passordet sitt." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:42 -msgid "Password Reset for {blogname}" -msgstr "Nullstill passordet på {blogname}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:43 -msgid "Password Reset Instructions" -msgstr "Instruksar for å nullstilla passordet" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:24 -msgid "New order" -msgstr "Ny tinging" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:25 -msgid "New order emails are sent when an order is received/paid by a customer." -msgstr "Epostar om nye tingingar blir sende når ein kunde legg inn eller betaler ei tinging." - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:27 -msgid "New customer order" -msgstr "Ny tinging" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:28 -msgid "[{blogname}] New customer order ({order_number}) - {order_date}" -msgstr "[{blogname}] Ny tinging, ordrenr. ({order_number}) - {order_date}" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:121 -msgid "Recipient(s)" -msgstr "Mottakar(ar)" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:123 -msgid "Enter recipients (comma separated) for this email. Defaults to %s." -msgstr "Skriv inn mottakarar (skilde med komma) for denne eposten. Standarden er %s." - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:130 -msgid "This controls the email subject line. Leave blank to use the default subject: %s." -msgstr "Her skriv du inn emnet for eposten. La stå tomt for å bruka standardemnet: %s." - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:137 -msgid "This controls the main heading contained within the email notification. Leave blank to use the default heading: %s." -msgstr "Her kontrollerer du hovudoverskrifta i epostmeldinga. La stå tomt for å bruka standardoverskrifta: %s." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:28 -msgid "Bacs" -msgstr "Bankoverf." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:65 -msgid "Enable Bank Transfer" -msgstr "Bruk overføring til konto" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:69 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:63 -#: classes/gateways/cod/class-wc-gateway-cod.php:87 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:171 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:125 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:104 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:84 -msgid "Title" -msgstr "Tittel" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:71 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:65 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:173 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:127 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:85 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:83 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:60 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:106 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:86 -msgid "This controls the title which the user sees during checkout." -msgstr "Her kontrollerer du kva tittel brukaren ser i kassa." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:72 -msgid "Direct Bank Transfer" -msgstr "Overføring til bankkonto" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:76 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:70 -msgid "Customer Message" -msgstr "Kundemelding" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:78 -msgid "Give the customer instructions for paying via BACS, and let them know that their order won't be shipping until the money is received." -msgstr "Gje kundane instruksar for å betala til bankkonto, og gjer dei merksame på at bestillinga fyrst blir sendt når betalinga er motteken." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:79 -msgid "Make your payment directly into our bank account. Please use your Order ID as the payment reference. Your order wont be shipped until the funds have cleared in our account." -msgstr "Ver god å betala til bankkontoen vår. Merk betalinga med tingingsnummeret. Me sender bestillinga når me har registrert betalinga di." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:82 -msgid "Account Details" -msgstr "Kontodetaljar" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:84 -msgid "Optionally enter your bank details below for customers to pay into." -msgstr "Skriv eventuelt inn opplysingar om bankkontoen du vil kundane skal betala til." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:88 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:163 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:203 -msgid "Account Name" -msgstr "Kontonamn" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:94 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:164 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:204 -msgid "Account Number" -msgstr "Kontonummer" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:100 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:165 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:205 -msgid "Sort Code" -msgstr "Sorteringskode" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:106 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:166 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:206 -msgid "Bank Name" -msgstr "Namn på banken" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:112 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:167 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:207 -msgid "IBAN" -msgstr "IBAN" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:117 -msgid "BIC (formerly Swift)" -msgstr "BIC (tidlegare Swift)" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:136 -msgid "BACS Payment" -msgstr "Clearing system-betaling" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:137 -msgid "Allows payments by BACS (Bank Account Clearing System), more commonly known as direct bank/wire transfer." -msgstr "Gjev høve til bankbetaling, dvs. førehandsbetaling til bankkonto." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:158 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:200 -msgid "Our Details" -msgstr "Meir om oss" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:168 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:208 -msgid "BIC" -msgstr "BIC" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:234 -msgid "Awaiting BACS payment" -msgstr "Ventar på bankbetaling" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:28 -msgid "Cheque" -msgstr "Sjekk" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:59 -msgid "Enable Cheque Payment" -msgstr "Skru på sjekkbetaling" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:66 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:90 -msgid "Cheque Payment" -msgstr "Betaling med sjekk" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:72 -msgid "Let the customer know the payee and where they should be sending the cheque to and that their order won't be shipping until you receive it." -msgstr "Gje kundane opplysingar om betalingsmottakar og kvar dei skal senda sjekken, og at bestillinga ikkje blir send før du har fått sjekken." - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:73 -msgid "Please send your cheque to Store Name, Store Street, Store Town, Store State / County, Store Postcode." -msgstr "Send sjekken din til denne adressa: butikk, adresse, postnummer og -stad." - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:91 -msgid "Allows cheque payments. Why would you take cheques in this day and age? Well you probably wouldn't but it does allow you to make test purchases for testing order emails and the 'success' pages etc." -msgstr "Gjev høve til betaling med sjekk, kven som no brukar sjekk i våre dagar. Truleg vil du neppe ha betaling med sjekk, men her kan du prøva ut betalingsmåten, epostane og sidene kunden ser." - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:147 -msgid "Awaiting cheque payment" -msgstr "Ventar på sjekkbetaling" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:27 -#: classes/gateways/cod/class-wc-gateway-cod.php:54 -#: classes/gateways/cod/class-wc-gateway-cod.php:90 -msgid "Cash on Delivery" -msgstr "Kontant ved henting" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:55 -msgid "Have your customers pay with cash (or by other means) upon delivery." -msgstr "La kundane betala med kontantar (eller på anna vis) ved varelevering." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:80 -msgid "Enable COD" -msgstr "Bruk betaling ved henting" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:81 -msgid "Enable Cash on Delivery" -msgstr "Skru på betalingsmåten «Kontant ved levering»" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:89 -msgid "Payment method title that the customer will see on your website." -msgstr "Namnet på betalingsmåten, slik kunden vil sjå det på nettsida di." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:94 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:178 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:132 -#: woocommerce-template.php:748 -msgid "Description" -msgstr "Skildring" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:96 -msgid "Payment method description that the customer will see on your website." -msgstr "Skildring for betalingsmåten, slik kunden vil sjå det på nettsida di." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:97 -#: classes/gateways/cod/class-wc-gateway-cod.php:103 -msgid "Pay with cash upon delivery." -msgstr "Betal kontant ved levering." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:100 -msgid "Instructions" -msgstr "Instruksar" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:102 -msgid "Instructions that will be added to the thank you page." -msgstr "Instruksar som kjem på " - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:106 -msgid "Enable for shipping methods" -msgstr "Skru på for fraktmåtane" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:111 -msgid "If COD is only available for certain methods, set it up here. Leave blank to enable for all methods." -msgstr "Viss kontantbetaling er tilgjengeleg for nokre fraktmåtar, set du det opp her. La stå tomt for å skru på for alle fraktmåtar." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:176 -msgid "Payment to be made upon delivery." -msgstr "Bestillinga skal betalast ved levering." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:31 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:196 -msgid "Mijireh Checkout" -msgstr "Mijireh-kasse" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:143 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:321 -msgid "Mijireh error:" -msgstr "Mijireh-feil:" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:160 -msgid "Enable Mijireh Checkout" -msgstr "Skru på Mijireh-kassa" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:164 -msgid "Access Key" -msgstr "Tilgangslykjel" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:166 -msgid "The Mijireh access key for your store." -msgstr "Mijireh-lykjelen for butikken din." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:174 -msgid "Credit Card" -msgstr "Kort" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:180 -msgid "Pay securely with you credit card." -msgstr "Betal trygt med kort." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:181 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:134 -msgid "This controls the description which the user sees during checkout." -msgstr "Her kontrollerer du skildringa kundane ser når dei går til kassa." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:200 -msgid "Get started with Mijireh Checkout" -msgstr "Kom i gang med Mijireh-kassa" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:201 -msgid "provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site. Mijireh supports a wide variety of payment gateways: Stripe, Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and more." -msgstr "gjev ein PCI-kompatibel og sikker måte å samla inn og overføra kortinformasjon til betalingsløysinga di, der du framleis har kontroll over korleis nettstaden din ser ut. Mijireh støttar mange betalingsportar: Stripe, Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, og fleire." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:203 -msgid "Join for free" -msgstr "Bli med gratis" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:203 -msgid "Learn more about WooCommerce and Mijireh" -msgstr "Lær meir om Woocommerce og Mijireh" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:207 -msgid "provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." -msgstr "gjev ein PCI-kompatibel og sikker måte å samla inn og overføra kortinformasjon til betalingsløysinga di, der du framleis har kontroll over korleis nettstaden din ser ut." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:34 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:128 -msgid "PayPal" -msgstr "PayPal" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:90 -msgid "PayPal standard" -msgstr "PayPal standard" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:91 -msgid "PayPal standard works by sending the user to PayPal to enter their payment information." -msgstr "PayPal standard-betalingsløysinga sender kundane dine til PayPal for å skriva inn betalingsopplysingane." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:103 -msgid "Gateway Disabled" -msgstr "Portnaren er skrudd av" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:103 -msgid "PayPal does not support your store currency." -msgstr "PayPal kan ikkje bruka valutaen i butikken din." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:121 -msgid "Enable PayPal standard" -msgstr "Skru på PayPal standard" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:135 -msgid "Pay via PayPal; you can pay with your credit card if you don't have a PayPal account" -msgstr "Betal med PayPal; du kan betala med kort sjølv om du ikkje har ein PayPal-konto" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:138 -msgid "PayPal Email" -msgstr "PayPal-epostadresse" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:140 -msgid "Please enter your PayPal email address; this is needed in order to take payment." -msgstr "Skriv inn PayPal-epostadressa di. Du treng henne for å betala." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:146 -msgid "Invoice Prefix" -msgstr "Fakturaprefiks" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:148 -msgid "Please enter a prefix for your invoice numbers. If you use your PayPal account for multiple stores ensure this prefix is unique as PayPal will not allow orders with the same invoice number." -msgstr "Skriv inn eit prefiks for fakturanumra dine. Viss du bruker ein PayPal-konto for fleire butikkar, bør du sjå til at dette prefikset er unikt, ettersom PayPal ikkje godtek kundar med same fakturanummer." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:153 -msgid "Submission method" -msgstr "Innsendingsmetode" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:155 -msgid "Use form submission method." -msgstr "Bruk skjemainnsendingsmetoden." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:156 -msgid "Enable this to post order data to PayPal via a form instead of using a redirect/querystring." -msgstr "Skru på dette for å senda tingingsopplysingar til PayPal med eit skjema i staden for direkte vidaresending/spørjestreng." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:160 -msgid "Page Style" -msgstr "Sidestil" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:162 -msgid "Optionally enter the name of the page style you wish to use. These are defined within your PayPal account." -msgstr "Skriv eventuelt inn namnet på sidestilen du vil bruka. Desse set du opp i PayPal-kontoen din." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:165 -msgid "Optional" -msgstr "Valfritt" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:168 -msgid "Shipping options" -msgstr "Val for frakt" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:173 -msgid "Shipping details" -msgstr "Fraktopplysingar" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:175 -msgid "Send shipping details to PayPal instead of billing." -msgstr "Send PayPal fraktadressa i staden for fakturaadressa." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:177 -msgid "PayPal allows us to send 1 address. If you are using PayPal for shipping labels you may prefer to send the shipping address rather than billing." -msgstr "PayPal gjev oss lov til å senda éi adresse. Viss du brukar PayPal til å skriva fraktetikettar, kan det henda du heller vil senda frakt- enn fakturaadressa til PayPal." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:181 -msgid "Address override" -msgstr "Overstyr adresse" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:183 -msgid "Enable \"address_override\" to prevent address information from being changed." -msgstr "Skru på «address_override» for å hindra at adresseopplysingane blir endra." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:184 -msgid "PayPal verifies addresses therefore this setting can cause errors (we recommend keeping it disabled)." -msgstr "PayPal godkjenner adresser, og difor kan denne innstillinga føra til feil (me rår til at du ikkje brukar henne)." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:188 -msgid "Gateway Testing" -msgstr "Test betalingsmåtar" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:193 -msgid "PayPal sandbox" -msgstr "Paypal-sandkasse" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:195 -msgid "Enable PayPal sandbox" -msgstr "Skru på PayPal-sandkassa" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:197 -msgid "PayPal sandbox can be used to test payments. Sign up for a developer account here." -msgstr "Du kan bruka PayPal-sandkassa til å prøva ut betalingsmåtar. Få ein utviklarkonto her." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:200 -msgid "Debug Log" -msgstr "Feilrettingslogg" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:202 -msgid "Enable logging" -msgstr "Slå på logging" - -# @ default -#: classes/gateways/paypal/class-wc-gateway-paypal.php:204 -msgid "Log PayPal events, such as IPN requests, inside woocommerce/logs/paypal.txt" -msgstr "Logg PayPal-hendingar, slik som direktebetalingsstrengar, i loggfila woocommerce/logs/paypal.txt" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:313 -msgid "Order %s" -msgstr "Bestilling %s" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:323 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:373 -msgid "Shipping via" -msgstr "Frakt via" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:414 -msgid "Thank you for your order. We are now redirecting you to PayPal to make payment." -msgstr "Takk for bestillinga. Neste steg er å gå til PayPal for å betala." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:435 -msgid "Pay via PayPal" -msgstr "Betal med PayPal" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:435 -msgid "Cancel order & restore cart" -msgstr "Avbryt bestillinga & nullstill handlekorga" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:489 -msgid "Thank you for your order, please click the button below to pay with PayPal." -msgstr "Takk for bestillinga. Klikk knappen under for å betala med PayPal." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:634 -msgid "Validation error: PayPal amounts do not match (gross %s)." -msgstr "Godkjenningsfeil: PayPal-beløpa stemmer ikkje (brutto %s)." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:652 -msgid "IPN payment completed" -msgstr "Direktebetalinga er fullførd." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:664 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:672 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:690 -msgid "Payment %s via IPN." -msgstr "Betaling %s via IPN (direktebetaling)," - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:677 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:695 -msgid "Order refunded/reversed" -msgstr "Bestillinga er refundert/heva" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:678 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:696 -msgid "Order %s has been marked as refunded - PayPal reason code: %s" -msgstr "Bestillinga %s er merka som refundert - grunngjevingskoden frå PayPal: %s" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:681 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:699 -msgid "Payment for order %s refunded/reversed" -msgstr "Betalinga for bestillinga %s er stoppa eller heva" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:26 -msgid "Google Analytics" -msgstr "Google Analytics" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:27 -msgid "Google Analytics is a free service offered by Google that generates detailed statistics about the visitors to a website." -msgstr "Google Analytics er ei gratistenest frå Google som lagar detaljert statistikk over kven som vitjar ein nettstad." - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:62 -msgid "Google Analytics ID" -msgstr "Google Analytics-ID" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:63 -msgid "Log into your google analytics account to find your ID. e.g. UA-XXXXX-X" -msgstr "Logg inn på Google analytics-kontoen din for å finna ID-en din, til dømes UA-XXXXX-X" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:68 -msgid "Tracking code" -msgstr "Sporingsnummer" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:69 -msgid "Add tracking code to your site's footer. You don't need to enable this if using a 3rd party analytics plugin." -msgstr "Legg til sporingskode på botnen av sida di. Du treng ikkje skru på dette viss du brukar eit analyseprogram frå nokon andre." - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:75 -msgid "Add eCommerce tracking code to the thankyou page" -msgstr "Legg til eCommerce-sporingskode til takkesida" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:81 -msgid "Add event tracking code for add to cart actions" -msgstr "Legg til sporingskode for legg i korga-hendingar" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:113 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:168 -#: woocommerce-ajax.php:1725 -msgid "Guest" -msgstr "Gjest" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:201 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:258 -#: templates/single-product/meta.php:19 -msgid "SKU:" -msgstr "SKU:" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:256 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:276 -#: woocommerce.php:948 -msgid "Products" -msgstr "Varer" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:277 -msgid "Add to Cart" -msgstr "Legg i korga" - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:26 -msgid "ShareDaddy" -msgstr "ShareDaddy" - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:27 -msgid "ShareDaddy is a sharing plugin bundled with JetPack." -msgstr "ShareDaddy er eit deleverktøy som fylgjer med JetPack." - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:51 -msgid "Output ShareDaddy button?" -msgstr "Vis ShareDaddy-knappen?" - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:52 -msgid "Enable this option to show the ShareDaddy button on the product page." -msgstr "Bruk dette valet for å visa ShareDaddy-knappar på varesida." - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:29 -msgid "ShareThis" -msgstr "ShareThis" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:30 -msgid "ShareThis offers a sharing widget which will allow customers to share links to products with their friends." -msgstr "ShareThis er eit småprogram for deling, som let kundar dela lenkjer til varene dine med kjenningar og vener." - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:63 -msgid "ShareThis Publisher ID" -msgstr "Publiserar-ID for ShareThis" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:64 -msgid "Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons on product pages." -msgstr "Skriv inn %1$spubliserar-IDen til ShareThis%2$s for å visa knappar for sosial deling på varesidene‪ dine." - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:69 -msgid "ShareThis Code" -msgstr "ShareThis-kode" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:70 -msgid "You can tweak the ShareThis code by editing this option." -msgstr "Du kan finstilla ShareThis-koden ved å endra dette innstillinga." - -# @ woocommerce -# @ default -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:22 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:329 -msgid "ShareYourCart" -msgstr "ShareYourCart" - -# @ woocommerce -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:23 -msgid "Increase your social media exposure by 10 percent! ShareYourCart helps you get more customers by motivating satisfied customers to talk with their friends about your products. For help with ShareYourCart view the documentation." -msgstr "Bli 10 prosent meir synleg på sosiale media! ShareYourCart hjelper deg å få fleire kundar ved å motivera fornøgde kundar til å prata med venene sine om butikken din. For å få hjelp med ShareYourCart, kan du lesa dokumentasjonen." - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:328 -msgid "Share your cart settings" -msgstr "Del handlekorga-innstillingar" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:342 -msgid "Button" -msgstr "Knapp" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:343 -msgid "Customize Button" -msgstr "Set opp knappen" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:351 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:352 -msgid "Documentation" -msgstr "Hjelp" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:33 -msgid "Setup your ShareYourCart account" -msgstr "Set opp ShareYourCart-kontoen din" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Create an account" -msgstr "Lag ein brukarkonto" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Can't access your account?" -msgstr "Får du ikkje tilgang til kontoen di?" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:100 -msgid "Configure" -msgstr "Set opp" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:110 -#: classes/integrations/shareyourcart/views/button-settings-page.php:120 -msgid "Save changes" -msgstr "Lagra endringane" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/button-settings-page.php:8 -#: classes/integrations/shareyourcart/views/button-settings-page.php:11 -msgid "Button style" -msgstr "Knappestil" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:25 -msgid "Flat rate" -msgstr "Fast frakt" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:28 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:461 -msgid "Flat Rates" -msgstr "Faste satsar" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:29 -msgid "Flat rates let you define a standard rate per item, or per order." -msgstr "Fast takst let deg bruka ein standardtakst per vare, eller per tinging." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:79 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:54 -msgid "Enable this shipping method" -msgstr "Bruk denne fraktmåten" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:83 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:81 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:58 -msgid "Method Title" -msgstr "Tittel på metoden" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:86 -msgid "Flat Rate" -msgstr "Fast frakt" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:90 -msgid "Cost per order" -msgstr "Kostnad pr. tinging" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:96 -msgid "Enter a cost (excluding tax) per order, e.g. 5.00. Leave blank to disable." -msgstr "Skriv inn kostnad (ekskl. mva) pr. tinging, td. 5. La stå tomt om du ikkje vil bruka det." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:102 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:88 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:143 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:99 -msgid "Method availability" -msgstr "Om metoden er tilgjengeleg" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:107 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:93 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:148 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:104 -msgid "All allowed countries" -msgstr "Alle tillatne land" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:108 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:112 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:98 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:149 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:153 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:105 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:109 -msgid "Specific Countries" -msgstr "Visse land" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:120 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:83 -msgid "Calculation Type" -msgstr "Utrekningstype" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:124 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:87 -msgid "Per Order - charge shipping for the entire order as a whole" -msgstr "Per tinging - rekna fraktkostnad for heile bestillinga under eitt" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:125 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:88 -msgid "Per Item - charge shipping for each item individually" -msgstr "Per vare - rekna fraktkostnad for kvar vare i bestillinga" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:126 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:89 -msgid "Per Class - charge shipping for each shipping class in an order" -msgstr "Per klasse - rekna fraktkostnad for kvar fraktklasse i ei tinging" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:130 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:93 -msgid "Tax Status" -msgstr "Avgiftsstatus" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:134 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:97 -msgid "Taxable" -msgstr "Skal ha mva" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:135 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:98 -msgid "None" -msgstr "Ingen" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:139 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:102 -msgid "Default Cost" -msgstr "Standardkostnad" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:145 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:108 -msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -msgstr "Pris ekskl. mva. Skriv inn eit tal, td. 2,50." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:151 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:114 -msgid "Default Handling Fee" -msgstr "Standard ekspedisjonsgebyr" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:153 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:116 -msgid "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. Leave blank to disable." -msgstr "Gebyr utan mva. Skriv inn eit tal, td. 2,50, eller ein prosentsats, td. 5%. La stå tomt for å skru av." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:159 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:122 -msgid "Minimum Fee" -msgstr "Minste avgift" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:165 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:128 -msgid "Enter a minimum fee amount. Fee's less than this will be increased. Leave blank to disable." -msgstr "Skriv inn ein minste avgiftssats. Avgifter mindre enn dette vil bli auka til minstesatsen. La stå tomt om du ikkje vil bruka det." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:171 -msgid "Shipping Options" -msgstr "Val for frakt" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:173 -msgid "Optional extra shipping options with additional costs (one per line). Example: Option Name|Cost|Per-order (yes or no). Example: Priority Mail|6.95|yes. If per-order is set to no, it will use the \"Calculation Type\" setting." -msgstr "Ekstra fraktinnstillingar med ekstra kostnader (ein på kvar linje). Døme: Namn på fraktinnstillinga|Kostnad|Per tinging (yes eller no). Døme: Ekspresspost|85|yes. Viss du ikkje bruker utrekning per tinging (den siste innstillinga), vil innstillinga frå «Utrekningstype» bli brukt." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:176 -msgid "Option Name|Cost|Per-order (yes or no)" -msgstr "Namn på innstillinga|Pris|Per tinging (yes eller no)." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:467 -#: woocommerce.php:857 -msgid "Shipping Class" -msgstr "Fraktklasse" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:468 -msgid "Cost" -msgstr "Kostnad" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:468 -msgid "Cost, excluding tax." -msgstr "Pris utan mva." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:469 -msgid "Handling Fee" -msgstr "Ekspedisjonsgebyr" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:469 -msgid "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -msgstr "Gebyr utan mva. Skriv inn eit tal, td. 2,50, eller ein prosentsats, td. 5%." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:474 -msgid "+ Add Flat Rate" -msgstr "+ Legg til sats for fast frakt" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:475 -msgid "Add rates for shipping classes here — they will override the default costs defined above." -msgstr "Legg til fraktsatsar her — dei vil overstyra standardsatsane over." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:475 -msgid "Delete selected rates" -msgstr "Slett desse satsane" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:495 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:528 -msgid "Select a class…" -msgstr "Vel ei klasse…" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:500 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:501 -msgid "0.00" -msgstr "0,00" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:542 -msgid "Delete the selected rates?" -msgstr "Slett desse satsane?" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:25 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:145 -msgid "Free Shipping" -msgstr "Fri frakt" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:77 -msgid "Enable Free Shipping" -msgstr "Skru på fri frakt" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:106 -msgid "Free Shipping Requires..." -msgstr "Fri frakt krev..." - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:110 -#: templates/order/order-details.php:110 -#: templates/order/order-details.php:125 -msgid "N/A" -msgstr "I/T" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:111 -msgid "A valid free shipping coupon" -msgstr "Ein gyldig fri frakt-rabattkupong" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:112 -msgid "A minimum order amount (defined below)" -msgstr "Minste ordresum (set opp under)" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:113 -msgid "A minimum order amount OR a coupon" -msgstr "Ein minste ordresum ELLER ein kupong" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:114 -msgid "A minimum order amount AND a coupon" -msgstr "Ein minste ordresum OG ein kupong" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:118 -msgid "Minimum Order Amount" -msgstr "Minste ordresum" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:124 -msgid "Users will need to spend this amount to get free shipping (if enabled above)." -msgstr "Kundane må handla for minst denne summen for å få fri frakt (viss fri frakt er på)" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:28 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:31 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:61 -msgid "International Delivery" -msgstr "Internasjonal frakt" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:32 -msgid "International delivery based on flat rate shipping." -msgstr "Internasjonal frakt basert på fast fraktsats." - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:65 -msgid "Availability" -msgstr "Tilgjengeleg" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:70 -msgid "Selected countries" -msgstr "Valde land" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:71 -msgid "Excluding selected countries" -msgstr "Utelèt desse landa" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:75 -msgid "Countries" -msgstr "Land" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:25 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:107 -msgid "Local Delivery" -msgstr "Lokal levering" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:98 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:78 -msgid "Enable" -msgstr "Skru på" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:100 -msgid "Enable local delivery" -msgstr "Bruk lokal levering" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:111 -msgid "Fee Type" -msgstr "Gebyrtype" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:113 -msgid "How to calculate delivery charges" -msgstr "Korleis du reknar ut leveringstakstar" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 -msgid "Fixed amount" -msgstr "Fast sats" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:117 -msgid "Percentage of cart total" -msgstr "Prosentdel av summen i handlekorga" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:118 -msgid "Fixed amount per product" -msgstr "Fast sum per vare" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:123 -msgid "Delivery Fee" -msgstr "Leveringavgift" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:129 -msgid "What fee do you want to charge for local delivery, disregarded if you choose free. Leave blank to disable." -msgstr "Kva gebyr vil du bruka for lokal levering? Blir oversett om du vel gratis. La stå tomt for å skru av." - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:135 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:91 -msgid "Zip/Post Codes" -msgstr "Postnummer" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:137 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:93 -msgid "What zip/post codes would you like to offer delivery to? Separate codes with a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -msgstr "Kva postnummer vil du levera til? Skil kodane med eit komma. Godtek jokerteikn, td. 6* vil inkludera postnummeret 6848." - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:172 -msgid "Local delivery is a simple shipping method for delivering orders locally." -msgstr "Lokal levering er ein enkel fraktmåte for å levera bestillingar lokalt." - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:25 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:87 -msgid "Local Pickup" -msgstr "Henting lokalt" - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:80 -msgid "Enable local pickup" -msgstr "Bruk lokal henting" - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:117 -msgid "Apply base tax rate" -msgstr "Bruk grunnavgift" - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:119 -msgid "When this shipping method is chosen, apply the base tax rate rather than for the customer's given address." -msgstr "Bruk grunnlagsavgiftssatsen i staden for avgifta for kundeadressa når du bruker denne fraktmåten." - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:134 -msgid "Local pickup is a simple method which allows the customer to pick up their order themselves." -msgstr "Henting lokalt er ein enkel fraktmåte som let kundane sjølve henta varene dei har tinga." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-cart.php:54 -#: woocommerce-functions.php:1637 -msgid "Please enter a valid postcode/ZIP." -msgstr "Skriv inn eit gyldig postnummer." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-cart.php:65 -#: classes/shortcodes/class-wc-shortcode-cart.php:71 -msgid "Shipping costs updated." -msgstr "Oppdaterte fraktkostnadene." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-checkout.php:64 -msgid "The order totals have been updated. Please confirm your order by pressing the Place Order button at the bottom of the page." -msgstr "Ordresummen er oppdatert. Stadfest bestillinga di ved å klikka på knappen med «Send bestillinga» nedst på denne sida." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:80 -#: woocommerce-core-functions.php:2488 -#: woocommerce-functions.php:1559 -msgid "Please enter your password." -msgstr "Skriv inn passordet." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:95 -msgid "Your password has been reset." -msgstr "Passordet ditt er nullstilt." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:95 -msgid "Log in" -msgstr "Logg inn" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:116 -msgid "Enter a username or e-mail address." -msgstr "Skriv inn ei epostadresse eller brukarnamn." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:123 -msgid "There is no user registered with that email address." -msgstr "Det finst ingen brukar med denne epostadressa." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:138 -msgid "Invalid username or e-mail." -msgstr "Ugyldig epost eller brukarnamn." - -# @ default -#: classes/shortcodes/class-wc-shortcode-lost-password.php:152 -msgid "Password reset is not allowed for this user" -msgstr "Du kan ikkje nullstilla passordet for denne brukaren" - -# @ default -#: classes/shortcodes/class-wc-shortcode-lost-password.php:180 -msgid "Check your e-mail for the confirmation link." -msgstr "Sjekk eposten din for stadfesting." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:200 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:205 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:212 -msgid "Invalid key" -msgstr "Ugyldig lykjel" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:53 -msgid "Please enter a valid order ID" -msgstr "Skriv inn eit gyldig ordrenummer" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:57 -msgid "Please enter a valid order email" -msgstr "Skriv inn ei gyldig epostadresse" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:76 -msgid "Sorry, we could not find that order id in our database." -msgstr "Orsak, me finn ikkje det ordrenummeret i databasen vår." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:65 -#: classes/shortcodes/class-wc-shortcode-pay.php:118 -msgid "Your order has already been paid for. Please contact us if you need assistance." -msgstr "Du har alt betalt for bestillinga. Kontakt oss viss du treng hjelp." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:70 -#: classes/shortcodes/class-wc-shortcode-pay.php:125 -#: classes/shortcodes/class-wc-shortcode-view-order.php:49 -#: woocommerce-functions.php:880 -#: woocommerce-functions.php:959 -msgid "Invalid order." -msgstr "Ugyldig tinging." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:90 -#: templates/checkout/thankyou.php:40 -#: templates/emails/customer-completed-order.php:18 -#: templates/emails/customer-invoice.php:22 -#: templates/emails/customer-note.php:22 -#: templates/emails/customer-processing-order.php:18 -msgid "Order:" -msgstr "Bestilling:" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:94 -#: templates/checkout/thankyou.php:44 -msgid "Date:" -msgstr "Dato:" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:98 -#: templates/checkout/thankyou.php:48 -msgid "Total:" -msgstr "Sum:" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:103 -#: templates/checkout/thankyou.php:53 -msgid "Payment method:" -msgstr "Betalingsmåte:" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:49 -msgid "My Account →" -msgstr "Brukarkonto →" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:56 -msgid "Order %s made on %s" -msgstr "Bestillinga %s den %s" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:57 -msgid "Order status: %s" -msgstr "Ordrestatus: %s" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:63 -#: templates/order/tracking.php:31 -msgid "Order Updates" -msgstr "Oppdateringar for bestillinga" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:69 -msgid "l jS \\of F Y, h:ia" -msgstr "h:i:s D j. F Y" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:31 -msgid "Display a list of your best selling products on your site." -msgstr "Vis ei liste over bestseljarane på nettstaden din." - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:33 -msgid "WooCommerce Best Sellers" -msgstr "WooCommerce-bestseljarar" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:71 -msgid "Best Sellers" -msgstr "Bestseljarar" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:192 -#: classes/widgets/class-wc-widget-cart.php:115 -#: classes/widgets/class-wc-widget-featured-products.php:172 -#: classes/widgets/class-wc-widget-layered-nav.php:349 -#: classes/widgets/class-wc-widget-onsale.php:177 -#: classes/widgets/class-wc-widget-price-filter.php:179 -#: classes/widgets/class-wc-widget-product-categories.php:185 -#: classes/widgets/class-wc-widget-product-search.php:91 -#: classes/widgets/class-wc-widget-product-tag-cloud.php:101 -#: classes/widgets/class-wc-widget-random-products.php:133 -#: classes/widgets/class-wc-widget-recent-products.php:169 -#: classes/widgets/class-wc-widget-recent-reviews.php:158 -#: classes/widgets/class-wc-widget-recently-viewed.php:166 -#: classes/widgets/class-wc-widget-top-rated-products.php:159 -msgid "Title:" -msgstr "Tittel:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:195 -#: classes/widgets/class-wc-widget-featured-products.php:175 -#: classes/widgets/class-wc-widget-onsale.php:180 -#: classes/widgets/class-wc-widget-random-products.php:138 -#: classes/widgets/class-wc-widget-recent-products.php:172 -#: classes/widgets/class-wc-widget-recent-reviews.php:161 -#: classes/widgets/class-wc-widget-recently-viewed.php:169 -#: classes/widgets/class-wc-widget-top-rated-products.php:162 -msgid "Number of products to show:" -msgstr "Kor mange varer som skal visast:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:199 -msgid "Hide free products" -msgstr "Gøym gratisvarer" - -# @ woocommerce -#: classes/widgets/class-wc-widget-cart.php:33 -msgid "Display the user's Cart in the sidebar." -msgstr "Vis handlekorga til kunden i sidestolpen." - -# @ woocommerce -#: classes/widgets/class-wc-widget-cart.php:35 -msgid "WooCommerce Cart" -msgstr "WooCommerce handlekorg" - -# @ woocommerce -#: classes/widgets/class-wc-widget-cart.php:119 -msgid "Hide if cart is empty" -msgstr "Gøym viss handlekorga er tom" - -# @ woocommerce -#: classes/widgets/class-wc-widget-featured-products.php:35 -msgid "Display a list of featured products on your site." -msgstr "Vis ei liste over framheva varer på nettstaden din." - -# @ woocommerce -#: classes/widgets/class-wc-widget-featured-products.php:37 -msgid "WooCommerce Featured Products" -msgstr "WooCommerce: Framheva varer" - -# @ woocommerce -#: classes/widgets/class-wc-widget-featured-products.php:75 -msgid "Featured Products" -msgstr "Framheva vareer" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:31 -msgid "Shows active layered nav filters so users can see and deactivate them." -msgstr "Vis aktive lagdelte navigasjonsfilter, så brukarane kan sjå dei og skru dei av." - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:33 -msgid "WooCommerce Layered Nav Filters" -msgstr "WooCommerce lagnavigasjonsfilter" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:62 -msgid "Active filters" -msgstr "Aktive filter" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:93 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Remove filter" -msgstr "Fjern filter" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -msgid "Min" -msgstr "Min" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Max" -msgstr "Maks" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:31 -msgid "Shows a custom attribute in a widget which lets you narrow down the list of products when viewing product categories." -msgstr "Viser ein eigenlaga eigenskap i eit småprogram, slik at du kan tynna ut varelista når du ser på varekategoriar." - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:33 -msgid "WooCommerce Layered Nav" -msgstr "WooCommerce lagnavigasjon" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:100 -msgid "Any %s" -msgstr "Alle %s" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:352 -msgid "Attribute:" -msgstr "Eigenskap:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:363 -msgid "Display Type:" -msgstr "Visingstype:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:365 -msgid "List" -msgstr "Liste" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:366 -msgid "Dropdown" -msgstr "Nedtrekksliste" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:369 -msgid "Query Type:" -msgstr "Spørjingstype:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:371 -msgid "AND" -msgstr "OG" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:372 -msgid "OR" -msgstr "ELLER" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:31 -msgid "Display a login area and \"My Account\" links in the sidebar." -msgstr "Vis eit innloggingsfelt og lenkjer til brukarkontoen i sidestolpen." - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:33 -msgid "WooCommerce Login" -msgstr "WooCommerce-innlogging" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:59 -#: classes/widgets/class-wc-widget-login.php:223 -msgid "Customer Login" -msgstr "Kundeinnlogging" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:60 -#: classes/widgets/class-wc-widget-login.php:226 -msgid "Welcome %s" -msgstr "Velkomen %s" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:76 -msgid "My account" -msgstr "Kontoen min" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:77 -msgid "Change my password" -msgstr "Byt passord" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:78 -msgid "Logout" -msgstr "Logg ut" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:116 -#: templates/myaccount/form-login.php:29 -#: templates/myaccount/form-lost-password.php:24 -#: templates/shop/form-login.php:20 -msgid "Username or email" -msgstr "Brukarnamn eller epost" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:118 -#: templates/myaccount/form-login.php:33 -#: templates/myaccount/form-login.php:85 -#: templates/shop/form-login.php:24 -msgid "Password" -msgstr "Passord" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:120 -#: woocommerce-functions.php:945 -msgid "Login →" -msgstr "Logg inn →" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:120 -msgid "Lost password?" -msgstr "Mista passordet?" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:222 -msgid "Logged out title:" -msgstr "Tittel for logga ut:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:225 -msgid "Logged in title:" -msgstr "Tittel for logga inn:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-onsale.php:31 -msgid "Display a list of your on-sale products on your site." -msgstr "Viser ei liste over varer som er på sal på nettstaden din." - -# @ woocommerce -#: classes/widgets/class-wc-widget-onsale.php:33 -msgid "WooCommerce On-sale" -msgstr "WooCommerce på sal" - -# @ woocommerce -#: classes/widgets/class-wc-widget-onsale.php:70 -msgid "On Sale" -msgstr "På tilbod" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:33 -msgid "Shows a price filter slider in a widget which lets you narrow down the list of shown products when viewing product categories." -msgstr "Viser eit skyvefelt for å velja pris som småprogram, slik at du kan velja varer ut frå pris når du ser på varekategoriar." - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:35 -msgid "WooCommerce Price Filter" -msgstr "WooCommerce prisfilter" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:136 -msgid "Min price" -msgstr "Minstepris" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:137 -msgid "Max price" -msgstr "Makspris" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:138 -msgid "Filter" -msgstr "Filter" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:140 -msgid "Price:" -msgstr "Pris:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:162 -msgid "Filter by price" -msgstr "Filtrer etter pris" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:33 -msgid "A list or dropdown of product categories." -msgstr "Ei liste eller ein nedtrekksmeny over varekategoriar." - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:35 -msgid "WooCommerce Product Categories" -msgstr "WooCommerce-varekategoriar" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:57 -#: woocommerce.php:787 -#: woocommerce.php:789 -msgid "Product Categories" -msgstr "Varekategoriar" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:129 -msgid "No product categories exist." -msgstr "Det finst ingen produktkategoriar." - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:188 -msgid "Order by:" -msgstr "Sorter etter:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:190 -msgid "Category Order" -msgstr "Kategorirekkefølgje" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:191 -#: templates/single-product-reviews.php:99 -#: woocommerce-ajax.php:1244 -msgid "Name" -msgstr "Namn" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:195 -msgid "Show as dropdown" -msgstr "Vis som rullegardinliste" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:198 -msgid "Show post counts" -msgstr "Vis tal på innlegg" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:201 -msgid "Show hierarchy" -msgstr "Vis hierarki" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:204 -msgid "Only show children for the current category" -msgstr "Vis berre underkategoriar av denne kategorien" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-search.php:31 -msgid "A Search box for products only." -msgstr "Eit søkjefelt berre for varer på nettbutikken." - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-search.php:33 -msgid "WooCommerce Product Search" -msgstr "WooCommerce-varesøk" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-tag-cloud.php:31 -msgid "Your most used product tags in cloud format." -msgstr "Dei mest brukte varemerkelappane dine som ordsky." - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-tag-cloud.php:33 -msgid "WooCommerce Product Tags" -msgstr "WooCommerce-produktmerke" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-tag-cloud.php:58 -#: woocommerce.php:823 -#: woocommerce.php:825 -msgid "Product Tags" -msgstr "Merkelappar for varer" - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:24 -msgid "WooCommerce Random Products" -msgstr "WooCommerce tilfeldige produkt" - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:27 -msgid "Display a list of random products on your site." -msgstr "Vis ei liste med tilfeldige produkt på nettsida di." - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:46 -msgid "Random Products" -msgstr "Tilfeldige produkt" - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:144 -#: classes/widgets/class-wc-widget-recent-products.php:176 -msgid "Show hidden product variations" -msgstr "Vis gøymde produktvariantar" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-products.php:31 -msgid "Display a list of your most recent products on your site." -msgstr "Vis ei liste over dei nyaste varene på nettstaden din." - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-products.php:33 -msgid "WooCommerce Recent Products" -msgstr "WooCommerce nyaste varer" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-products.php:70 -msgid "New Products" -msgstr "Nye varer" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:31 -msgid "Display a list of your most recent reviews on your site." -msgstr "Vis ei liste over dei siste vurderingane på nettstaden din." - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:33 -msgid "WooCommerce Recent Reviews" -msgstr "WooCommerce nyaste vurderingar" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:71 -msgid "Recent Reviews" -msgstr "Nye vurderingar" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:97 -msgctxt "by comment author" -msgid "by %1$s" -msgstr "av %1$s" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recently-viewed.php:31 -msgid "Display a list of recently viewed products." -msgstr "Vis ei liste over dei siste varene du såg på." - -# @ woocommerce -#: classes/widgets/class-wc-widget-recently-viewed.php:33 -msgid "WooCommerce Recently Viewed Products" -msgstr "WooCommerce sist sette varer" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recently-viewed.php:76 -msgid "Recently viewed" -msgstr "Du såg sist på" - -# @ woocommerce -#: classes/widgets/class-wc-widget-top-rated-products.php:33 -msgid "Display a list of top rated products on your site." -msgstr "Vis ei liste over dei høgast vurderte produkta på nettstaden din." - -# @ woocommerce -#: classes/widgets/class-wc-widget-top-rated-products.php:35 -msgid "WooCommerce Top Rated Products" -msgstr "WooCommerce høgast vurderte" - -# @ woocommerce -#: classes/widgets/class-wc-widget-top-rated-products.php:72 -msgid "Top Rated Products" -msgstr "Høgast vurderte produkt" - -# @ woocommerce -#: i18n/states/AU.php:13 -msgid "Australian Capital Territory" -msgstr "Australian Capital Territory" - -# @ woocommerce -#: i18n/states/AU.php:14 -msgid "New South Wales" -msgstr "New South Wales" - -# @ woocommerce -#: i18n/states/AU.php:15 -msgid "Northern Territory" -msgstr "Northern Territory" - -# @ woocommerce -#: i18n/states/AU.php:16 -msgid "Queensland" -msgstr "Queensland" - -# @ woocommerce -#: i18n/states/AU.php:17 -msgid "South Australia" -msgstr "Sør-Australia" - -# @ woocommerce -#: i18n/states/AU.php:18 -msgid "Tasmania" -msgstr "Tasmania" - -# @ woocommerce -#: i18n/states/AU.php:19 -msgid "Victoria" -msgstr "Victoria" - -# @ woocommerce -#: i18n/states/AU.php:20 -msgid "Western Australia" -msgstr "Vest-Australia" - -# @ woocommerce -#: i18n/states/BR.php:13 -msgid "Acre" -msgstr "Acre" - -# @ woocommerce -#: i18n/states/BR.php:14 -msgid "Alagoas" -msgstr "Alagoas" - -# @ woocommerce -#: i18n/states/BR.php:15 -msgid "Amapá" -msgstr "Amapá" - -# @ woocommerce -#: i18n/states/BR.php:16 -msgid "Amazonas" -msgstr "Amazonas" - -# @ woocommerce -#: i18n/states/BR.php:17 -msgid "Bahia" -msgstr "Bahia" - -# @ woocommerce -#: i18n/states/BR.php:18 -msgid "Ceará" -msgstr "Ceará" - -# @ woocommerce -#: i18n/states/BR.php:19 -msgid "Distrito Federal" -msgstr "Distrito Federal" - -# @ woocommerce -#: i18n/states/BR.php:20 -msgid "Espírito Santo" -msgstr "Espírito Santo" - -# @ woocommerce -#: i18n/states/BR.php:21 -msgid "Goiás" -msgstr "Goiás" - -# @ woocommerce -#: i18n/states/BR.php:22 -msgid "Maranhão" -msgstr "Maranhão" - -# @ woocommerce -#: i18n/states/BR.php:23 -msgid "Mato Grosso" -msgstr "Mato Grosso" - -# @ woocommerce -#: i18n/states/BR.php:24 -msgid "Mato Grosso do Sul" -msgstr "Mato Grosso do Sul" - -# @ woocommerce -#: i18n/states/BR.php:25 -msgid "Minas Gerais" -msgstr "Minas Gerais" - -# @ woocommerce -#: i18n/states/BR.php:26 -msgid "Pará" -msgstr "Pará" - -# @ woocommerce -#: i18n/states/BR.php:27 -msgid "Paraíba" -msgstr "Paraíba" - -# @ woocommerce -#: i18n/states/BR.php:28 -msgid "Paraná" -msgstr "Paraná" - -# @ woocommerce -#: i18n/states/BR.php:29 -msgid "Pernambuco" -msgstr "c" - -# @ woocommerce -#: i18n/states/BR.php:30 -msgid "Piauí" -msgstr "c" - -# @ woocommerce -#: i18n/states/BR.php:31 -msgid "Rio de Janeiro" -msgstr "Rio de Janeiro" - -# @ woocommerce -#: i18n/states/BR.php:32 -msgid "Rio Grande do Norte" -msgstr "Rio Grande do Norte" - -# @ woocommerce -#: i18n/states/BR.php:33 -msgid "Rio Grande do Sul" -msgstr "Rio Grande do Sul" - -# @ woocommerce -#: i18n/states/BR.php:34 -msgid "Rondônia" -msgstr "Rondônia" - -# @ woocommerce -#: i18n/states/BR.php:35 -msgid "Roraima" -msgstr "Roraima" - -# @ woocommerce -#: i18n/states/BR.php:36 -msgid "Santa Catarina" -msgstr "Santa Catarina" - -# @ woocommerce -#: i18n/states/BR.php:37 -msgid "São Paulo" -msgstr "São Paulo" - -# @ woocommerce -#: i18n/states/BR.php:38 -msgid "Sergipe" -msgstr "Sergipe" - -# @ woocommerce -#: i18n/states/BR.php:39 -msgid "Tocantins" -msgstr "Tocantins" - -# @ woocommerce -#: i18n/states/CA.php:13 -msgid "Alberta" -msgstr "Alberta" - -# @ woocommerce -#: i18n/states/CA.php:14 -msgid "British Columbia" -msgstr "British Columbia" - -# @ woocommerce -#: i18n/states/CA.php:15 -msgid "Manitoba" -msgstr "Manitoba" - -# @ woocommerce -#: i18n/states/CA.php:16 -msgid "New Brunswick" -msgstr "New Brunswick" - -# @ woocommerce -#: i18n/states/CA.php:17 -msgid "Newfoundland" -msgstr "Newfoundland" - -# @ woocommerce -#: i18n/states/CA.php:18 -msgid "Northwest Territories" -msgstr "Nordvest-territoria" - -# @ woocommerce -#: i18n/states/CA.php:19 -msgid "Nova Scotia" -msgstr "Nova Scotia" - -# @ woocommerce -#: i18n/states/CA.php:20 -msgid "Nunavut" -msgstr "Nunavut" - -# @ woocommerce -#: i18n/states/CA.php:21 -msgid "Ontario" -msgstr "Ontario" - -# @ woocommerce -#: i18n/states/CA.php:22 -msgid "Prince Edward Island" -msgstr "Prince Edward Island" - -# @ woocommerce -#: i18n/states/CA.php:23 -msgid "Quebec" -msgstr "Quebec" - -# @ woocommerce -#: i18n/states/CA.php:24 -msgid "Saskatchewan" -msgstr "Saskatchewan" - -# @ woocommerce -#: i18n/states/CA.php:25 -msgid "Yukon Territory" -msgstr "Yukon-territoriet" - -# @ woocommerce -#: i18n/states/CN.php:13 -msgid "Yunnan / 云南" -msgstr "Yunnan / 云南" - -# @ woocommerce -#: i18n/states/CN.php:14 -msgid "Beijing / 北京" -msgstr "Beijing / 北京" - -# @ woocommerce -#: i18n/states/CN.php:15 -msgid "Tianjin / 天津" -msgstr "Tianjin / 天津" - -# @ woocommerce -#: i18n/states/CN.php:16 -msgid "Hebei / 河北" -msgstr "Hebei / 河北" - -# @ woocommerce -#: i18n/states/CN.php:17 -msgid "Shanxi / 山西" -msgstr "Shanxi / 山西" - -# @ woocommerce -#: i18n/states/CN.php:18 -msgid "Inner Mongolia / 內蒙古" -msgstr "Indre Mongolia / 內蒙古" - -# @ woocommerce -#: i18n/states/CN.php:19 -msgid "Liaoning / 辽宁" -msgstr "Liaoning / 辽宁" - -# @ woocommerce -#: i18n/states/CN.php:20 -msgid "Jilin / 吉林" -msgstr "Jilin / 吉林" - -# @ woocommerce -#: i18n/states/CN.php:21 -msgid "Heilongjiang / 黑龙江" -msgstr "Heilongjiang / 黑龙江" - -# @ woocommerce -#: i18n/states/CN.php:22 -msgid "Shanghai / 上海" -msgstr "Shanghai / 上海" - -# @ woocommerce -#: i18n/states/CN.php:23 -msgid "Jiangsu / 江苏" -msgstr "Jiangsu / 江苏" - -# @ woocommerce -#: i18n/states/CN.php:24 -msgid "Zhejiang / 浙江" -msgstr "Zhejiang / 浙江" - -# @ woocommerce -#: i18n/states/CN.php:25 -msgid "Anhui / 安徽" -msgstr "Anhui / 安徽" - -# @ woocommerce -#: i18n/states/CN.php:26 -msgid "Fujian / 福建" -msgstr "Fujian / 福建" - -# @ woocommerce -#: i18n/states/CN.php:27 -msgid "Jiangxi / 江西" -msgstr "Jiangxi / 江西" - -# @ woocommerce -#: i18n/states/CN.php:28 -msgid "Shandong / 山东" -msgstr "Shandong / 山东" - -# @ woocommerce -#: i18n/states/CN.php:29 -msgid "Henan / 河南" -msgstr "Henan / 河南" - -# @ woocommerce -#: i18n/states/CN.php:30 -msgid "Hubei / 湖北" -msgstr "Hubei / 湖北" - -# @ woocommerce -#: i18n/states/CN.php:31 -msgid "Hunan / 湖南" -msgstr "Hunan / 湖南" - -# @ woocommerce -#: i18n/states/CN.php:32 -msgid "Guangdong / 广东" -msgstr "Guangdong / 广东" - -# @ woocommerce -#: i18n/states/CN.php:33 -msgid "Guangxi Zhuang / 广西壮族" -msgstr "Guangxi Zhuang / 广西壮族" - -# @ woocommerce -#: i18n/states/CN.php:34 -msgid "Hainan / 海南" -msgstr "Hainan / 海南" - -# @ woocommerce -#: i18n/states/CN.php:35 -msgid "Chongqing / 重庆" -msgstr "Chongqing / 重庆" - -# @ woocommerce -#: i18n/states/CN.php:36 -msgid "Sichuan / 四川" -msgstr "Sichuan / 四川" - -# @ woocommerce -#: i18n/states/CN.php:37 -msgid "Guizhou / 贵州" -msgstr "Guizhou / 贵州" - -# @ woocommerce -#: i18n/states/CN.php:38 -msgid "Shaanxi / 陕西" -msgstr "Shaanxi / 陕西" - -# @ woocommerce -#: i18n/states/CN.php:39 -msgid "Gansu / 甘肃" -msgstr "Gansu / 甘肃" - -# @ woocommerce -#: i18n/states/CN.php:40 -msgid "Qinghai / 青海" -msgstr "Qinghai / 青海" - -# @ woocommerce -#: i18n/states/CN.php:41 -msgid "Ningxia Hui / 宁夏" -msgstr "Ningxia Hui / 宁夏" - -# @ woocommerce -#: i18n/states/CN.php:42 -msgid "Macau / 澳门" -msgstr "Macau / 澳门" - -# @ woocommerce -#: i18n/states/CN.php:43 -msgid "Tibet / 西藏" -msgstr "Tibet / 西藏" - -# @ woocommerce -#: i18n/states/CN.php:44 -msgid "Xinjiang / 新疆" -msgstr "Xinjiang / 新疆" - -# @ woocommerce -#: i18n/states/HK.php:13 -msgid "Hong Kong Island" -msgstr "Hong Kong-øya" - -# @ woocommerce -#: i18n/states/HK.php:14 -msgid "Kowloon" -msgstr "Kowloon" - -# @ woocommerce -#: i18n/states/HK.php:15 -msgid "New Territories" -msgstr "New Territories" - -# @ woocommerce -#: i18n/states/HU.php:13 -msgid "Bács-Kiskun" -msgstr "Bács-Kiskun" - -# @ woocommerce -#: i18n/states/HU.php:14 -msgid "Békés" -msgstr "Békés" - -# @ woocommerce -#: i18n/states/HU.php:15 -msgid "Baranya" -msgstr "Baranya" - -# @ woocommerce -#: i18n/states/HU.php:16 -msgid "Borsod-Abaúj-Zemplén" -msgstr "Borsod-Abaúj-Zemplén" - -# @ woocommerce -#: i18n/states/HU.php:17 -msgid "Budapest" -msgstr "Budapest" - -# @ woocommerce -#: i18n/states/HU.php:18 -msgid "Csongrád" -msgstr "Csongrád" - -# @ woocommerce -#: i18n/states/HU.php:19 -msgid "Fejér" -msgstr "Fejér" - -# @ woocommerce -#: i18n/states/HU.php:20 -msgid "Győr-Moson-Sopron" -msgstr "Győr-Moson-Sopron" - -# @ woocommerce -#: i18n/states/HU.php:21 -msgid "Hajdú-Bihar" -msgstr "Hajdú-Bihar" - -# @ woocommerce -#: i18n/states/HU.php:22 -msgid "Heves" -msgstr "Heves" - -# @ woocommerce -#: i18n/states/HU.php:23 -msgid "Jász-Nagykun-Szolnok" -msgstr "Jász-Nagykun-Szolnok" - -# @ woocommerce -#: i18n/states/HU.php:24 -msgid "Komárom-Esztergom" -msgstr "Komárom-Esztergom" - -# @ woocommerce -#: i18n/states/HU.php:25 -msgid "Nógrád" -msgstr "Nógrád" - -# @ woocommerce -#: i18n/states/HU.php:26 -msgid "Pest" -msgstr "Pest" - -# @ woocommerce -#: i18n/states/HU.php:27 -msgid "Somogy" -msgstr "Somogy" - -# @ woocommerce -#: i18n/states/HU.php:28 -msgid "Szabolcs-Szatmár-Bereg" -msgstr "Szabolcs-Szatmár-Bereg" - -# @ woocommerce -#: i18n/states/HU.php:29 -msgid "Tolna" -msgstr "Tolna" - -# @ woocommerce -#: i18n/states/HU.php:30 -msgid "Vas" -msgstr "Vas" - -# @ woocommerce -#: i18n/states/HU.php:31 -msgid "Veszprém" -msgstr "Veszprém" - -# @ woocommerce -#: i18n/states/HU.php:32 -msgid "Zala" -msgstr "Zala" - -# @ woocommerce -#: i18n/states/HZ.php:13 -msgid "Auckland" -msgstr "Auckland" - -# @ woocommerce -#: i18n/states/HZ.php:14 -msgid "Bay of Plenty" -msgstr "Bay of Plenty" - -# @ woocommerce -#: i18n/states/HZ.php:15 -msgid "Canterbury" -msgstr "Canterbury" - -# @ woocommerce -#: i18n/states/HZ.php:16 -msgid "Hawke’s Bay" -msgstr "Hawke’s Bay" - -# @ woocommerce -#: i18n/states/HZ.php:17 -msgid "Manawatu-Wanganui" -msgstr "Manawatu-Wanganui" - -# @ woocommerce -#: i18n/states/HZ.php:18 -msgid "Marlborough" -msgstr "Marlborough" - -# @ woocommerce -#: i18n/states/HZ.php:19 -msgid "Nelson" -msgstr "Nelson" - -# @ woocommerce -#: i18n/states/HZ.php:20 -msgid "Northland" -msgstr "Northland" - -# @ woocommerce -#: i18n/states/HZ.php:21 -msgid "Otago" -msgstr "Otago" - -# @ woocommerce -#: i18n/states/HZ.php:22 -msgid "Southland" -msgstr "Southland" - -# @ woocommerce -#: i18n/states/HZ.php:23 -msgid "Taranaki" -msgstr "Taranaki" - -# @ woocommerce -#: i18n/states/HZ.php:24 -msgid "Tasman" -msgstr "Tasman" - -# @ woocommerce -#: i18n/states/HZ.php:25 -msgid "Waikato" -msgstr "Waikato" - -# @ woocommerce -#: i18n/states/HZ.php:26 -msgid "Wellington" -msgstr "Wellington" - -# @ woocommerce -#: i18n/states/HZ.php:27 -msgid "West Coast" -msgstr "Vestkysten" - -# @ woocommerce -#: i18n/states/ID.php:13 -msgid "Daerah Istimewa Aceh" -msgstr "Daerah Istimewa Aceh" - -# @ woocommerce -#: i18n/states/ID.php:14 -msgid "Sumatera Utara" -msgstr "Sumatera Utara" - -# @ woocommerce -#: i18n/states/ID.php:15 -msgid "Sumatera Barat" -msgstr "Sumatera Barat" - -# @ woocommerce -#: i18n/states/ID.php:16 -msgid "Riau" -msgstr "Riau" - -# @ woocommerce -#: i18n/states/ID.php:17 -msgid "Kepulauan Riau" -msgstr "Kepulauan Riau" - -# @ woocommerce -#: i18n/states/ID.php:18 -msgid "Jambi" -msgstr "Jambi" - -# @ woocommerce -#: i18n/states/ID.php:19 -msgid "Sumatera Selatan" -msgstr "Sumatera Selatan" - -# @ woocommerce -#: i18n/states/ID.php:20 -msgid "Bangka Belitung" -msgstr "Bangka Belitung" - -# @ woocommerce -#: i18n/states/ID.php:21 -msgid "Bengkulu" -msgstr "Bengkulu" - -# @ woocommerce -#: i18n/states/ID.php:22 -msgid "Lampung" -msgstr "Lampung" - -# @ woocommerce -#: i18n/states/ID.php:23 -msgid "DKI Jakarta" -msgstr "DKI Jakarta" - -# @ woocommerce -#: i18n/states/ID.php:24 -msgid "Jawa Barat" -msgstr "Jawa Barat" - -# @ woocommerce -#: i18n/states/ID.php:25 -msgid "Banten" -msgstr "Banten" - -# @ woocommerce -#: i18n/states/ID.php:26 -msgid "Jawa Tengah" -msgstr "Jawa Tengah" - -# @ woocommerce -#: i18n/states/ID.php:27 -msgid "Jawa Timur" -msgstr "Jawa Timur" - -# @ woocommerce -#: i18n/states/ID.php:28 -msgid "Daerah Istimewa Yogyakarta" -msgstr "Daerah Istimewa Yogyakarta" - -# @ woocommerce -#: i18n/states/ID.php:29 -msgid "Bali" -msgstr "Bali" - -# @ woocommerce -#: i18n/states/ID.php:30 -msgid "Nusa Tenggara Barat" -msgstr "Nusa Tenggara Barat" - -# @ woocommerce -#: i18n/states/ID.php:31 -msgid "Nusa Tenggara Timur" -msgstr "Nusa Tenggara Timur" - -# @ woocommerce -#: i18n/states/ID.php:32 -msgid "Kalimantan Barat" -msgstr "Kalimantan Barat" - -# @ woocommerce -#: i18n/states/ID.php:33 -msgid "Kalimantan Tengah" -msgstr "Kalimantan Tengah" - -# @ woocommerce -#: i18n/states/ID.php:34 -msgid "Kalimantan Timur" -msgstr "Kalimantan Timur" - -# @ woocommerce -#: i18n/states/ID.php:35 -msgid "Kalimantan Selatan" -msgstr "Kalimantan Selatan" - -# @ woocommerce -#: i18n/states/ID.php:36 -msgid "Kalimantan Utara" -msgstr "Kalimantan Utara" - -# @ woocommerce -#: i18n/states/ID.php:37 -msgid "Sulawesi Utara" -msgstr "Sulawesi Utara" - -# @ woocommerce -#: i18n/states/ID.php:38 -msgid "Sulawesi Tengah" -msgstr "Sulawesi Tengah" - -# @ woocommerce -#: i18n/states/ID.php:39 -msgid "Sulawesi Tenggara" -msgstr "Sulawesi Tenggara" - -# @ woocommerce -#: i18n/states/ID.php:40 -msgid "Sulawesi Barat" -msgstr "Sulawesi Barat" - -# @ woocommerce -#: i18n/states/ID.php:41 -msgid "Sulawesi Selatan" -msgstr "Sulawesi Selatan" - -# @ woocommerce -#: i18n/states/ID.php:42 -msgid "Gorontalo" -msgstr "Gorontalo" - -# @ woocommerce -#: i18n/states/ID.php:43 -msgid "Maluku" -msgstr "Maluku" - -# @ woocommerce -#: i18n/states/ID.php:44 -msgid "Maluku Utara" -msgstr "Maluku Utara" - -# @ woocommerce -#: i18n/states/ID.php:45 -msgid "Papua" -msgstr "Papua" - -# @ woocommerce -#: i18n/states/ID.php:46 -msgid "Papua Barat" -msgstr "Papua Barat" - -# @ woocommerce -#: i18n/states/IN.php:13 -msgid "Andra Pradesh" -msgstr "Andra Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:14 -msgid "Arunachal Pradesh" -msgstr "Arunachal Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:15 -msgid "Assam" -msgstr "Assam" - -# @ woocommerce -#: i18n/states/IN.php:16 -msgid "Bihar" -msgstr "Bihar" - -# @ woocommerce -#: i18n/states/IN.php:17 -msgid "Chhattisgarh" -msgstr "Chhattisgarh" - -# @ woocommerce -#: i18n/states/IN.php:18 -msgid "Goa" -msgstr "Goa" - -# @ woocommerce -#: i18n/states/IN.php:19 -msgid "Gujarat" -msgstr "Gujarat" - -# @ woocommerce -#: i18n/states/IN.php:20 -msgid "Haryana" -msgstr "Haryana" - -# @ woocommerce -#: i18n/states/IN.php:21 -msgid "Himachal Pradesh" -msgstr "Himachal Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:22 -msgid "Jammu and Kashmir" -msgstr "Jammu og Kashmir" - -# @ woocommerce -#: i18n/states/IN.php:23 -msgid "Jharkhand" -msgstr "Jharkhand" - -# @ woocommerce -#: i18n/states/IN.php:24 -msgid "Karnataka" -msgstr "Karnataka" - -# @ woocommerce -#: i18n/states/IN.php:25 -msgid "Kerala" -msgstr "Kerala" - -# @ woocommerce -#: i18n/states/IN.php:26 -msgid "Madhya Pradesh" -msgstr "Madhya Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:27 -msgid "Maharashtra" -msgstr "Maharashtra" - -# @ woocommerce -#: i18n/states/IN.php:28 -msgid "Manipur" -msgstr "Manipur" - -# @ woocommerce -#: i18n/states/IN.php:29 -msgid "Meghalaya" -msgstr "Meghalaya" - -# @ woocommerce -#: i18n/states/IN.php:30 -msgid "Mizoram" -msgstr "Mizoram" - -# @ woocommerce -#: i18n/states/IN.php:31 -msgid "Nagaland" -msgstr "Nagaland" - -# @ woocommerce -#: i18n/states/IN.php:32 -msgid "Orissa" -msgstr "Orissa" - -# @ woocommerce -#: i18n/states/IN.php:33 -msgid "Punjab" -msgstr "Punjab" - -# @ woocommerce -#: i18n/states/IN.php:34 -msgid "Rajasthan" -msgstr "Rajasthan" - -# @ woocommerce -#: i18n/states/IN.php:35 -msgid "Sikkim" -msgstr "Sikkim" - -# @ woocommerce -#: i18n/states/IN.php:36 -msgid "Tamil Nadu" -msgstr "Tamil Nadu" - -# @ woocommerce -#: i18n/states/IN.php:37 -msgid "Tripura" -msgstr "Tripura" - -# @ woocommerce -#: i18n/states/IN.php:38 -msgid "Uttaranchal" -msgstr "Uttaranchal" - -# @ woocommerce -#: i18n/states/IN.php:39 -msgid "Uttar Pradesh" -msgstr "Uttar Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:40 -msgid "West Bengal" -msgstr "Vest-Bengal" - -# @ woocommerce -#: i18n/states/IN.php:41 -msgid "Andaman and Nicobar Islands" -msgstr "Andaman- og Nicobar-øyane" - -# @ woocommerce -#: i18n/states/IN.php:42 -msgid "Chandigarh" -msgstr "Chandigarh" - -# @ woocommerce -#: i18n/states/IN.php:43 -msgid "Dadar and Nagar Haveli" -msgstr "Dadar og Nagar Haveli" - -# @ woocommerce -#: i18n/states/IN.php:44 -msgid "Daman and Diu" -msgstr "Daman og Diu" - -# @ woocommerce -#: i18n/states/IN.php:45 -msgid "Delhi" -msgstr "Delhi" - -# @ woocommerce -#: i18n/states/IN.php:46 -msgid "Lakshadeep" -msgstr "Lakshadeep" - -# @ woocommerce -#: i18n/states/IN.php:47 -msgid "Pondicherry (Puducherry)" -msgstr "Pondicherry (Puducherry)" - -# @ woocommerce -#: i18n/states/MY.php:13 -msgid "Johor" -msgstr "Johor" - -# @ woocommerce -#: i18n/states/MY.php:14 -msgid "Kedah" -msgstr "Kedah" - -# @ woocommerce -#: i18n/states/MY.php:15 -msgid "Kelantan" -msgstr "Kelantan" - -# @ woocommerce -#: i18n/states/MY.php:16 -msgid "Melaka" -msgstr "Melaka" - -# @ woocommerce -#: i18n/states/MY.php:17 -msgid "Negeri Sembilan" -msgstr "Negeri Sembilan" - -# @ woocommerce -#: i18n/states/MY.php:18 -msgid "Pahang" -msgstr "Pahang" - -# @ woocommerce -#: i18n/states/MY.php:19 -msgid "Perak" -msgstr "Perak" - -# @ woocommerce -#: i18n/states/MY.php:20 -msgid "Perlis" -msgstr "Perlis" - -# @ woocommerce -#: i18n/states/MY.php:21 -msgid "Pulau Pinang" -msgstr "Pulau Pinang" - -# @ woocommerce -#: i18n/states/MY.php:22 -msgid "Sabah" -msgstr "Sabah" - -# @ woocommerce -#: i18n/states/MY.php:23 -msgid "Sarawak" -msgstr "c" - -# @ woocommerce -#: i18n/states/MY.php:24 -msgid "Selangor" -msgstr "Selangor" - -# @ woocommerce -#: i18n/states/MY.php:25 -msgid "Terengganu" -msgstr "Terengganu" - -# @ woocommerce -#: i18n/states/MY.php:26 -msgid "W.P. Kuala Lumpur" -msgstr "W.P. Kuala Lumpur" - -# @ woocommerce -#: i18n/states/MY.php:27 -msgid "W.P. Labuan" -msgstr "W.P. Labuan" - -# @ woocommerce -#: i18n/states/MY.php:28 -msgid "W.P. Putrajaya" -msgstr "c" - -# @ woocommerce -#: i18n/states/TH.php:13 -msgid "Amnat Charoen (อำนาจเจริญ)" -msgstr "Amnat Charoen (อำนาจเจริญ)" - -# @ woocommerce -#: i18n/states/TH.php:14 -msgid "Ang Thong (อ่างทอง)" -msgstr "Ang Thong (อ่างทอง)" - -# @ woocommerce -#: i18n/states/TH.php:15 -msgid "Ayutthaya (พระนครศรีอยุธยา)" -msgstr "Ayutthaya (พระนครศรีอยุธยา)" - -# @ woocommerce -#: i18n/states/TH.php:16 -msgid "Bangkok (กรุงเทพมหานคร)" -msgstr "Bangkok (กรุงเทพมหานคร)" - -# @ woocommerce -#: i18n/states/TH.php:17 -msgid "Bueng Kan (บึงกาฬ)" -msgstr "Bueng Kan (บึงกาฬ)" - -# @ woocommerce -#: i18n/states/TH.php:18 -msgid "Buri Ram (บุรีรัมย์)" -msgstr "Buri Ram (บุรีรัมย์)" - -# @ woocommerce -#: i18n/states/TH.php:19 -msgid "Chachoengsao (ฉะเชิงเทรา)" -msgstr "Chachoengsao (ฉะเชิงเทรา)" - -# @ woocommerce -#: i18n/states/TH.php:20 -msgid "Chai Nat (ชัยนาท)" -msgstr "Chai Nat (ชัยนาท)" - -# @ woocommerce -#: i18n/states/TH.php:21 -msgid "Chaiyaphum (ชัยภูมิ)" -msgstr "Chaiyaphum (ชัยภูมิ)" - -# @ woocommerce -#: i18n/states/TH.php:22 -msgid "Chanthaburi (จันทบุรี)" -msgstr "Chanthaburi (จันทบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:23 -msgid "Chiang Mai (เชียงใหม่)" -msgstr "Chiang Mai (เชียงใหม่)" - -# @ woocommerce -#: i18n/states/TH.php:24 -msgid "Chiang Rai (เชียงราย)" -msgstr "Chiang Rai (เชียงราย)" - -# @ woocommerce -#: i18n/states/TH.php:25 -msgid "Chonburi (ชลบุรี)" -msgstr "Chonburi (ชลบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:26 -msgid "Chumphon (ชุมพร)" -msgstr "Chumphon (ชุมพร)" - -# @ woocommerce -#: i18n/states/TH.php:27 -msgid "Kalasin (กาฬสินธุ์)" -msgstr "Kalasin (กาฬสินธุ์)" - -# @ woocommerce -#: i18n/states/TH.php:28 -msgid "Kamphaeng Phet (กำแพงเพชร)" -msgstr "Kamphaeng Phet (กำแพงเพชร)" - -# @ woocommerce -#: i18n/states/TH.php:29 -msgid "Kanchanaburi (กาญจนบุรี)" -msgstr "Kanchanaburi (กาญจนบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:30 -msgid "Khon Kaen (ขอนแก่น)" -msgstr "Khon Kaen (ขอนแก่น)" - -# @ woocommerce -#: i18n/states/TH.php:31 -msgid "Krabi (กระบี่)" -msgstr "Krabi (กระบี่)" - -# @ woocommerce -#: i18n/states/TH.php:32 -msgid "Lampang (ลำปาง)" -msgstr "Lampang (ลำปาง)" - -# @ woocommerce -#: i18n/states/TH.php:33 -msgid "Lamphun (ลำพูน)" -msgstr "Lamphun (ลำพูน)" - -# @ woocommerce -#: i18n/states/TH.php:34 -msgid "Loei (เลย)" -msgstr "Loei (เลย)" - -# @ woocommerce -#: i18n/states/TH.php:35 -msgid "Lopburi (ลพบุรี)" -msgstr "Lopburi (ลพบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:36 -msgid "Mae Hong Son (แม่ฮ่องสอน)" -msgstr "Mae Hong Son (แม่ฮ่องสอน)" - -# @ woocommerce -#: i18n/states/TH.php:37 -msgid "Maha Sarakham (มหาสารคาม)" -msgstr "Maha Sarakham (มหาสารคาม)" - -# @ woocommerce -#: i18n/states/TH.php:38 -msgid "Mukdahan (มุกดาหาร)" -msgstr "Mukdahan (มุกดาหาร)" - -# @ woocommerce -#: i18n/states/TH.php:39 -msgid "Nakhon Nayok (นครนายก)" -msgstr "Nakhon Nayok (นครนายก)" - -# @ woocommerce -#: i18n/states/TH.php:40 -msgid "Nakhon Pathom (นครปฐม)" -msgstr "Nakhon Pathom (นครปฐม)" - -# @ woocommerce -#: i18n/states/TH.php:41 -msgid "Nakhon Phanom (นครพนม)" -msgstr "Nakhon Phanom (นครพนม)" - -# @ woocommerce -#: i18n/states/TH.php:42 -msgid "Nakhon Ratchasima (นครราชสีมา)" -msgstr "Nakhon Ratchasima (นครราชสีมา)" - -# @ woocommerce -#: i18n/states/TH.php:43 -msgid "Nakhon Sawan (นครสวรรค์)" -msgstr "Nakhon Sawan (นครสวรรค์)" - -# @ woocommerce -#: i18n/states/TH.php:44 -msgid "Nakhon Si Thammarat (นครศรีธรรมราช)" -msgstr "Nakhon Si Thammarat (นครศรีธรรมราช)" - -# @ woocommerce -#: i18n/states/TH.php:45 -msgid "Nan (น่าน)" -msgstr "Nan (น่าน)" - -# @ woocommerce -#: i18n/states/TH.php:46 -msgid "Narathiwat (นราธิวาส)" -msgstr "Narathiwat (นราธิวาส)" - -# @ woocommerce -#: i18n/states/TH.php:47 -msgid "Nong Bua Lam Phu (หนองบัวลำภู)" -msgstr "Nong Bua Lam Phu (หนองบัวลำภู)" - -# @ woocommerce -#: i18n/states/TH.php:48 -msgid "Nong Khai (หนองคาย)" -msgstr "Nong Khai (หนองคาย)" - -# @ woocommerce -#: i18n/states/TH.php:49 -msgid "Nonthaburi (นนทบุรี)" -msgstr "Nonthaburi (นนทบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:50 -msgid "Pathum Thani (ปทุมธานี)" -msgstr "Pathum Thani (ปทุมธานี)" - -# @ woocommerce -#: i18n/states/TH.php:51 -msgid "Pattani (ปัตตานี)" -msgstr "Pattani (ปัตตานี)" - -# @ woocommerce -#: i18n/states/TH.php:52 -msgid "Phang Nga (พังงา)" -msgstr "Phang Nga (พังงา)" - -# @ woocommerce -#: i18n/states/TH.php:53 -msgid "Phatthalung (พัทลุง)" -msgstr "Phatthalung (พัทลุง)" - -# @ woocommerce -#: i18n/states/TH.php:54 -msgid "Phayao (พะเยา)" -msgstr "Phayao (พะเยา)" - -# @ woocommerce -#: i18n/states/TH.php:55 -msgid "Phetchabun (เพชรบูรณ์)" -msgstr "Phetchabun (เพชรบูรณ์)" - -# @ woocommerce -#: i18n/states/TH.php:56 -msgid "Phetchaburi (เพชรบุรี)" -msgstr "Phetchaburi (เพชรบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:57 -msgid "Phichit (พิจิตร)" -msgstr "Phichit (พิจิตร)" - -# @ woocommerce -#: i18n/states/TH.php:58 -msgid "Phitsanulok (พิษณุโลก)" -msgstr "Phitsanulok (พิษณุโลก)" - -# @ woocommerce -#: i18n/states/TH.php:59 -msgid "Phrae (แพร่)" -msgstr "Phrae (แพร่)" - -# @ woocommerce -#: i18n/states/TH.php:60 -msgid "Phuket (ภูเก็ต)" -msgstr "Phuket (ภูเก็ต)" - -# @ woocommerce -#: i18n/states/TH.php:61 -msgid "Prachin Buri (ปราจีนบุรี)" -msgstr "Prachin Buri (ปราจีนบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:62 -msgid "Prachuap Khiri Khan (ประจวบคีรีขันธ์)" -msgstr "Prachuap Khiri Khan (ประจวบคีรีขันธ์)" - -# @ woocommerce -#: i18n/states/TH.php:63 -msgid "Ranong (ระนอง)" -msgstr "Ranong (ระนอง)" - -# @ woocommerce -#: i18n/states/TH.php:64 -msgid "Ratchaburi (ราชบุรี)" -msgstr "Ratchaburi (ราชบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:65 -msgid "Rayong (ระยอง)" -msgstr "Rayong (ระยอง)" - -# @ woocommerce -#: i18n/states/TH.php:66 -msgid "Roi Et (ร้อยเอ็ด)" -msgstr "Roi Et (ร้อยเอ็ด)" - -# @ woocommerce -#: i18n/states/TH.php:67 -msgid "Sa Kaeo (สระแก้ว)" -msgstr "Sa Kaeo (สระแก้ว)" - -# @ woocommerce -#: i18n/states/TH.php:68 -msgid "Sakon Nakhon (สกลนคร)" -msgstr "Sakon Nakhon (สกลนคร)" - -# @ woocommerce -#: i18n/states/TH.php:69 -msgid "Samut Prakan (สมุทรปราการ)" -msgstr "Samut Prakan (สมุทรปราการ)" - -# @ woocommerce -#: i18n/states/TH.php:70 -msgid "Samut Sakhon (สมุทรสาคร)" -msgstr "Samut Sakhon (สมุทรสาคร)" - -# @ woocommerce -#: i18n/states/TH.php:71 -msgid "Samut Songkhram (สมุทรสงคราม)" -msgstr "Samut Songkhram (สมุทรสงคราม)" - -# @ woocommerce -#: i18n/states/TH.php:72 -msgid "Saraburi (สระบุรี)" -msgstr "Saraburi (สระบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:73 -msgid "Satun (สตูล)" -msgstr "Satun (สตูล)" - -# @ woocommerce -#: i18n/states/TH.php:74 -msgid "Sing Buri (สิงห์บุรี)" -msgstr "Sing Buri (สิงห์บุรี)" - -# @ woocommerce -#: i18n/states/TH.php:75 -msgid "Sisaket (ศรีสะเกษ)" -msgstr "Sisaket (ศรีสะเกษ)" - -# @ woocommerce -#: i18n/states/TH.php:76 -msgid "Songkhla (สงขลา)" -msgstr "Songkhla (สงขลา)" - -# @ woocommerce -#: i18n/states/TH.php:77 -msgid "Sukhothai (สุโขทัย)" -msgstr "Sukhothai (สุโขทัย)" - -# @ woocommerce -#: i18n/states/TH.php:78 -msgid "Suphan Buri (สุพรรณบุรี)" -msgstr "Suphan Buri (สุพรรณบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:79 -msgid "Surat Thani (สุราษฎร์ธานี)" -msgstr "Surat Thani (สุราษฎร์ธานี)" - -# @ woocommerce -#: i18n/states/TH.php:80 -msgid "Surin (สุรินทร์)" -msgstr "Surin (สุรินทร์)" - -# @ woocommerce -#: i18n/states/TH.php:81 -msgid "Tak (ตาก)" -msgstr "Tak (ตาก)" - -# @ woocommerce -#: i18n/states/TH.php:82 -msgid "Trang (ตรัง)" -msgstr "Trang (ตรัง)" - -# @ woocommerce -#: i18n/states/TH.php:83 -msgid "Trat (ตราด)" -msgstr "Trat (ตราด)" - -# @ woocommerce -#: i18n/states/TH.php:84 -msgid "Ubon Ratchathani (อุบลราชธานี)" -msgstr "Ubon Ratchathani (อุบลราชธานี)" - -# @ woocommerce -#: i18n/states/TH.php:85 -msgid "Udon Thani (อุดรธานี)" -msgstr "Udon Thani (อุดรธานี)" - -# @ woocommerce -#: i18n/states/TH.php:86 -msgid "Uthai Thani (อุทัยธานี)" -msgstr "Uthai Thani (อุทัยธานี)" - -# @ woocommerce -#: i18n/states/TH.php:87 -msgid "Uttaradit (อุตรดิตถ์)" -msgstr "Uttaradit (อุตรดิตถ์)" - -# @ woocommerce -#: i18n/states/TH.php:88 -msgid "Yala (ยะลา)" -msgstr "Yala (ยะลา)" - -# @ woocommerce -#: i18n/states/TH.php:89 -msgid "Yasothon (ยโสธร)" -msgstr "Yasothon (ยโสธร)" - -# @ woocommerce -#: i18n/states/US.php:13 -msgid "Alabama" -msgstr "Alabama" - -# @ woocommerce -#: i18n/states/US.php:14 -msgid "Alaska" -msgstr "Alaska" - -# @ woocommerce -#: i18n/states/US.php:15 -msgid "Arizona" -msgstr "Arizona" - -# @ woocommerce -#: i18n/states/US.php:16 -msgid "Arkansas" -msgstr "Arkansas" - -# @ woocommerce -#: i18n/states/US.php:17 -msgid "California" -msgstr "California" - -# @ woocommerce -#: i18n/states/US.php:18 -msgid "Colorado" -msgstr "Colorado" - -# @ woocommerce -#: i18n/states/US.php:19 -msgid "Connecticut" -msgstr "Connecticut" - -# @ woocommerce -#: i18n/states/US.php:20 -msgid "Delaware" -msgstr "Delaware" - -# @ woocommerce -#: i18n/states/US.php:21 -msgid "District Of Columbia" -msgstr "District Of Columbia" - -# @ woocommerce -#: i18n/states/US.php:22 -msgid "Florida" -msgstr "c" - -# @ woocommerce -#: i18n/states/US.php:24 -msgid "Hawaii" -msgstr "Hawaii" - -# @ woocommerce -#: i18n/states/US.php:25 -msgid "Idaho" -msgstr "Idaho" - -# @ woocommerce -#: i18n/states/US.php:26 -msgid "Illinois" -msgstr "Illinois" - -# @ woocommerce -#: i18n/states/US.php:27 -msgid "Indiana" -msgstr "Indiana" - -# @ woocommerce -#: i18n/states/US.php:28 -msgid "Iowa" -msgstr "Iowa" - -# @ woocommerce -#: i18n/states/US.php:29 -msgid "Kansas" -msgstr "Kansas" - -# @ woocommerce -#: i18n/states/US.php:30 -msgid "Kentucky" -msgstr "Kentucky" - -# @ woocommerce -#: i18n/states/US.php:31 -msgid "Louisiana" -msgstr "Louisiana" - -# @ woocommerce -#: i18n/states/US.php:32 -msgid "Maine" -msgstr "Maine" - -# @ woocommerce -#: i18n/states/US.php:33 -msgid "Maryland" -msgstr "Maryland" - -# @ woocommerce -#: i18n/states/US.php:34 -msgid "Massachusetts" -msgstr "c" - -# @ woocommerce -#: i18n/states/US.php:35 -msgid "Michigan" -msgstr "Michigan" - -# @ woocommerce -#: i18n/states/US.php:36 -msgid "Minnesota" -msgstr "Minnesota" - -# @ woocommerce -#: i18n/states/US.php:37 -msgid "Mississippi" -msgstr "c" - -# @ woocommerce -#: i18n/states/US.php:38 -msgid "Missouri" -msgstr "Missouri" - -# @ woocommerce -#: i18n/states/US.php:39 -msgid "Montana" -msgstr "Montana" - -# @ woocommerce -#: i18n/states/US.php:40 -msgid "Nebraska" -msgstr "Nebraska" - -# @ woocommerce -#: i18n/states/US.php:41 -msgid "Nevada" -msgstr "Nevada" - -# @ woocommerce -#: i18n/states/US.php:42 -msgid "New Hampshire" -msgstr "New Hampshire" - -# @ woocommerce -#: i18n/states/US.php:43 -msgid "New Jersey" -msgstr "New Jersey" - -# @ woocommerce -#: i18n/states/US.php:44 -msgid "New Mexico" -msgstr "New Mexico" - -# @ woocommerce -#: i18n/states/US.php:45 -msgid "New York" -msgstr "New York" - -# @ woocommerce -#: i18n/states/US.php:46 -msgid "North Carolina" -msgstr "Nord-Carolina" - -# @ woocommerce -#: i18n/states/US.php:47 -msgid "North Dakota" -msgstr "Nord-Dakota" - -# @ woocommerce -#: i18n/states/US.php:48 -msgid "Ohio" -msgstr "Ohio" - -# @ woocommerce -#: i18n/states/US.php:49 -msgid "Oklahoma" -msgstr "Oklahoma" - -# @ woocommerce -#: i18n/states/US.php:50 -msgid "Oregon" -msgstr "Oregon" - -# @ woocommerce -#: i18n/states/US.php:51 -msgid "Pennsylvania" -msgstr "Pennsylvania" - -# @ woocommerce -#: i18n/states/US.php:52 -msgid "Rhode Island" -msgstr "Rhode Island" - -# @ woocommerce -#: i18n/states/US.php:53 -msgid "South Carolina" -msgstr "Sør-Carolina" - -# @ woocommerce -#: i18n/states/US.php:54 -msgid "South Dakota" -msgstr "Sør-Dakota" - -# @ woocommerce -#: i18n/states/US.php:55 -msgid "Tennessee" -msgstr "Tennessee" - -# @ woocommerce -#: i18n/states/US.php:56 -msgid "Texas" -msgstr "Texas" - -# @ woocommerce -#: i18n/states/US.php:57 -msgid "Utah" -msgstr "Utah" - -# @ woocommerce -#: i18n/states/US.php:58 -msgid "Vermont" -msgstr "Vermont" - -# @ woocommerce -#: i18n/states/US.php:59 -msgid "Virginia" -msgstr "Virginia" - -# @ woocommerce -#: i18n/states/US.php:60 -msgid "Washington" -msgstr "Washington" - -# @ woocommerce -#: i18n/states/US.php:61 -msgid "West Virginia" -msgstr "West Virginia" - -# @ woocommerce -#: i18n/states/US.php:62 -msgid "Wisconsin" -msgstr "Wisconsin" - -# @ woocommerce -#: i18n/states/US.php:63 -msgid "Wyoming" -msgstr "Wyoming" - -# @ woocommerce -#: i18n/states/US.php:64 -msgid "Armed Forces (AA)" -msgstr "Amerikanske militære styrkar (AA)" - -# @ woocommerce -#: i18n/states/US.php:65 -msgid "Armed Forces (AE)" -msgstr "Amerikanske militære styrkar (AE)" - -# @ woocommerce -#: i18n/states/US.php:66 -msgid "Armed Forces (AP)" -msgstr "Amerikanske militære styrkar (AP)" - -# @ woocommerce -#: i18n/states/US.php:67 -msgid "American Samoa" -msgstr "Amerikansk Samoa" - -# @ woocommerce -#: i18n/states/US.php:68 -msgid "Guam" -msgstr "Guam" - -# @ woocommerce -#: i18n/states/US.php:69 -msgid "Northern Mariana Islands" -msgstr "Nord-Marianane" - -# @ woocommerce -#: i18n/states/US.php:70 -msgid "Puerto Rico" -msgstr "Puerto Rico" - -# @ woocommerce -#: i18n/states/US.php:71 -msgid "US Minor Outlying Islands" -msgstr "Mindre utanforliggjande øyar til USA" - -# @ woocommerce -#: i18n/states/US.php:72 -msgid "US Virgin Islands" -msgstr "US Virgin Islands" - -# @ woocommerce -#: i18n/states/ZA.php:13 -msgid "Eastern Cape" -msgstr "Austkapp" - -# @ woocommerce -#: i18n/states/ZA.php:14 -msgid "Free State" -msgstr "Fristaten" - -# @ woocommerce -#: i18n/states/ZA.php:15 -msgid "Gauteng" -msgstr "Gauteng" - -# @ woocommerce -#: i18n/states/ZA.php:16 -msgid "KwaZulu-Natal" -msgstr "KwaZulu-Natal" - -# @ woocommerce -#: i18n/states/ZA.php:17 -msgid "Limpopo" -msgstr "Limpopo" - -# @ woocommerce -#: i18n/states/ZA.php:18 -msgid "Mpumalanga" -msgstr "Mpumalanga" - -# @ woocommerce -#: i18n/states/ZA.php:19 -msgid "Northern Cape" -msgstr "Northern Cape" - -# @ woocommerce -#: i18n/states/ZA.php:20 -msgid "North West" -msgstr "Nord vest" - -# @ woocommerce -#: i18n/states/ZA.php:21 -msgid "Western Cape" -msgstr "Western Cape" - -# @ woocommerce -#: i18n/strings.php:16 -msgid "pending" -msgstr "ventar" - -# @ woocommerce -#: i18n/strings.php:17 -msgid "failed" -msgstr "mislukka" - -# @ woocommerce -#: i18n/strings.php:18 -msgid "on-hold" -msgstr "på vent" - -# @ woocommerce -#: i18n/strings.php:19 -msgid "processing" -msgstr "handterer" - -# @ woocommerce -#: i18n/strings.php:20 -msgid "completed" -msgstr "fullført" - -# @ woocommerce -#: i18n/strings.php:21 -msgid "refunded" -msgstr "refundert" - -# @ woocommerce -#: i18n/strings.php:22 -msgid "cancelled" -msgstr "avbrote" - -# @ woocommerce -#: templates/cart/cart-empty.php:14 -msgid "Your cart is currently empty." -msgstr "Handlekorga di er tom." - -# @ woocommerce -#: templates/cart/cart-empty.php:18 -msgid "← Return To Shop" -msgstr "← Tilbake til butikken" - -# @ woocommerce -#: templates/cart/cart.php:28 -#: templates/checkout/form-pay.php:19 -#: templates/checkout/review-order.php:21 -#: templates/emails/admin-new-order.php:22 -#: templates/emails/customer-completed-order.php:23 -#: templates/emails/customer-invoice.php:27 -#: templates/emails/customer-note.php:27 -#: templates/emails/customer-processing-order.php:23 -#: templates/order/order-details.php:20 -#: woocommerce.php:949 -msgid "Product" -msgstr "Vare" - -# @ woocommerce -#: templates/cart/cart.php:29 -#: templates/emails/admin-new-order.php:24 -#: templates/emails/customer-completed-order.php:25 -#: templates/emails/customer-invoice.php:29 -#: templates/emails/customer-note.php:29 -#: templates/emails/customer-processing-order.php:25 -msgid "Price" -msgstr "Pris" - -# @ woocommerce -#: templates/cart/cart.php:30 -#: templates/emails/admin-new-order.php:23 -#: templates/emails/customer-completed-order.php:24 -#: templates/emails/customer-invoice.php:28 -#: templates/emails/customer-note.php:28 -#: templates/emails/customer-processing-order.php:24 -msgid "Quantity" -msgstr "Mengd" - -# @ woocommerce -#: templates/cart/cart.php:31 -#: templates/checkout/review-order.php:22 -#: templates/myaccount/my-orders.php:35 -#: templates/order/order-details.php:21 -msgid "Total" -msgstr "Sum" - -# @ woocommerce -#: templates/cart/cart.php:47 -msgid "Remove this item" -msgstr "Fjern denne vara" - -# @ woocommerce -#: templates/cart/cart.php:100 -#: templates/single-product/add-to-cart/quantity.php:13 -msgctxt "Product quantity input tooltip" -msgid "Qty" -msgstr "Mengd" - -# @ woocommerce -#: templates/cart/cart.php:127 -#: woocommerce.php:1062 -msgid "Coupon" -msgstr "Rabattkupong" - -# @ woocommerce -#: templates/cart/cart.php:127 -#: templates/checkout/form-coupon.php:29 -msgid "Apply Coupon" -msgstr "Bruk rabattkupong" - -# @ woocommerce -#: templates/cart/cart.php:134 -msgid "Update Cart" -msgstr "Oppdater korga" - -# @ woocommerce -#: templates/cart/cart.php:134 -msgid "Proceed to Checkout →" -msgstr "Gå til kassa →" - -# @ woocommerce -#: templates/cart/cross-sells.php:40 -msgid "You may be interested in…" -msgstr "Du kan kanskje vera interessert i…" - -# @ woocommerce -#: templates/cart/mini-cart.php:55 -msgid "No products in the cart." -msgstr "Ingen varer i handlekorga." - -# @ woocommerce -#: templates/cart/mini-cart.php:63 -#: templates/cart/totals.php:92 -#: templates/checkout/review-order.php:93 -msgid "Subtotal" -msgstr "Subtotal" - -# @ woocommerce -#: templates/cart/mini-cart.php:69 -msgid "Checkout →" -msgstr "Kassa →" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:20 -msgid "Calculate Shipping" -msgstr "Rekn ut frakt" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:24 -#: woocommerce-template.php:1327 -msgid "Select a country…" -msgstr "Vel land&hellip" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:42 -#: templates/cart/shipping-calculator.php:50 -#: templates/cart/shipping-calculator.php:61 -msgid "State / county" -msgstr "Delstat/fylke" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:50 -#: woocommerce-template.php:1377 -msgid "Select a state…" -msgstr "Vel delstat/fylke…" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:71 -msgid "Update Totals" -msgstr "Oppdater summane" - -# @ woocommerce -#: templates/cart/shipping-methods.php:32 -msgid "Free" -msgstr "Gratis" - -# @ woocommerce -#: templates/cart/shipping-methods.php:67 -msgid "Please fill in your details to see available shipping methods." -msgstr "Skriv inn opplysingane for å sjå fraktmåtar." - -# @ woocommerce -#: templates/cart/shipping-methods.php:69 -msgid "Sorry, it seems that there are no available shipping methods for your state. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "Orsak, det ser ikkje ut som det finst gyl" - -# @ woocommerce -#: templates/cart/totals.php:22 -msgid "Cart Totals" -msgstr "Totalt i handlekorga" - -# @ woocommerce -#: templates/cart/totals.php:28 -#: templates/checkout/review-order.php:27 -msgid "Cart Subtotal" -msgstr "Sum handlekorga" - -# @ woocommerce -#: templates/cart/totals.php:35 -#: templates/checkout/review-order.php:34 -#: woocommerce.php:1655 -msgid "Cart Discount" -msgstr "Kupongrabatt" - -# @ woocommerce -#: templates/cart/totals.php:35 -#: templates/cart/totals.php:120 -msgid "[Remove]" -msgstr "[Fjern]" - -# @ woocommerce -#: templates/cart/totals.php:46 -#: templates/checkout/review-order.php:45 -msgid "Shipping" -msgstr "Frakt" - -# @ woocommerce -#: templates/cart/totals.php:120 -#: templates/checkout/review-order.php:124 -msgid "Order Discount" -msgstr "Rabatt" - -# @ woocommerce -#: templates/cart/totals.php:129 -#: templates/checkout/review-order.php:133 -msgid "Order Total" -msgstr "I alt:" - -# @ woocommerce -#: templates/cart/totals.php:161 -msgid " (taxes estimated for %s)" -msgstr "(avgifter rekna ut for %s)" - -# @ woocommerce -#: templates/cart/totals.php:163 -msgid "Note: Shipping and taxes are estimated%s and will be updated during checkout based on your billing and shipping information." -msgstr "Hugs: Frakt og moms er gjevne som overslag%s, og blir oppdaterte når du kjem til kassa." - -# @ woocommerce -#: templates/cart/totals.php:175 -msgid "No shipping methods were found; please recalculate your shipping and enter your state/county and zip/postcode to ensure there are no other available methods for your location." -msgstr "Fann ingen fraktmåtar. Ver god å rekna ut frakta på nytt, og skriv inn postnummer for å bli sikker på at det ikkje finst andre fraktmåtar til adressa di." - -# @ woocommerce -#: templates/cart/totals.php:183 -msgid "Sorry, it seems that there are no available shipping methods for your location (%s)." -msgstr "Orsak, det ser ikkje ut som det finst gyldige fraktmåtar til adressa di (%s)." - -# @ woocommerce -#: templates/cart/totals.php:185 -msgid "If you require assistance or wish to make alternate arrangements please contact us." -msgstr "Kontakt oss viss du treng hjelp, eller vil ordna bestillinga på ein annan måte." - -# @ woocommerce -#: templates/checkout/cart-errors.php:16 -msgid "There are some issues with the items in your cart (shown above). Please go back to the cart page and resolve these issues before checking out." -msgstr "Det er nokre problem med varene i handlekorga di (sjå over). Ver snill å gå tilbake til handlekorgsida, og sjå over problema før du går til kassa." - -# @ woocommerce -#: templates/checkout/cart-errors.php:20 -msgid "← Return To Cart" -msgstr "← Tilbake til handlekorga" - -# @ woocommerce -#: templates/checkout/form-billing.php:17 -msgid "Billing & Shipping" -msgstr "Faktura & frakt" - -# @ woocommerce -#: templates/checkout/form-billing.php:21 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:19 -#: templates/myaccount/my-address.php:25 -#: templates/order/order-details.php:106 -msgid "Billing Address" -msgstr "Fakturaadresse" - -# @ woocommerce -#: templates/checkout/form-billing.php:42 -msgid "Create an account?" -msgstr "Vil du laga ein brukarkonto?" - -# @ woocommerce -#: templates/checkout/form-billing.php:51 -msgid "Create an account by entering the information below. If you are a returning customer please login at the top of the page." -msgstr "Lag ein konto med opplysingane under. Viss du har vore her før, kan du logga inn øvst på denne sida." - -# @ woocommerce -#: templates/checkout/form-checkout.php:20 -msgid "You must be logged in to checkout." -msgstr "Du må vera innlogga for å gå til kassa." - -# @ woocommerce -#: templates/checkout/form-checkout.php:51 -msgid "Your order" -msgstr "Bestillinga di" - -# @ woocommerce -#: templates/checkout/form-coupon.php:17 -msgid "Have a coupon?" -msgstr "Har du ein rabattkupong?" - -# @ woocommerce -#: templates/checkout/form-coupon.php:20 -msgid "Click here to enter your code" -msgstr "Klikk her for å skriva inn koden" - -# @ woocommerce -#: templates/checkout/form-coupon.php:25 -msgid "Coupon code" -msgstr "Kupongkode" - -# @ woocommerce -#: templates/checkout/form-login.php:14 -msgid "Returning customer?" -msgstr "Handla her før?" - -# @ woocommerce -#: templates/checkout/form-login.php:17 -msgid "Click here to login" -msgstr "Klikk her for å logga inn" - -# @ woocommerce -#: templates/checkout/form-login.php:22 -msgid "If you have shopped with us before, please enter your details in the boxes below. If you are a new customer please proceed to the Billing & Shipping section." -msgstr "Viss du har handla hjå oss før, kan du skriva inn brukarnamnet og passordet ditt i boksane under. Viss du er ny kunde, kan du gå til «Betaling og frakt»." - -# @ woocommerce -#: templates/checkout/form-pay.php:20 -msgid "Qty" -msgstr "Mengd" - -# @ woocommerce -#: templates/checkout/form-pay.php:21 -msgid "Totals" -msgstr "Sum" - -# @ woocommerce -#: templates/checkout/form-pay.php:78 -msgid "Sorry, it seems that there are no available payment methods for your location. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "Orsak, det ser ikkje ut som det finst gyldige betalingsmåtar for adressa di. Kontakt oss om du treng hjelp, eller vil ordna bestillinga på annan måte." - -# @ woocommerce -#: templates/checkout/form-pay.php:87 -msgid "Pay for order" -msgstr "Betal bestillinga" - -# @ woocommerce -#: templates/checkout/form-shipping.php:32 -msgid "Ship to billing address?" -msgstr "Send til fakturaadressa?" - -# @ woocommerce -#: templates/checkout/form-shipping.php:35 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:20 -#: templates/order/order-details.php:121 -msgid "Shipping Address" -msgstr "Fraktadresse" - -# @ woocommerce -#: templates/checkout/form-shipping.php:59 -#: templates/single-product/tabs/additional-information.php:14 -#: woocommerce-template.php:756 -msgid "Additional Information" -msgstr "Tilleggsopplysingar" - -# @ woocommerce -#: templates/checkout/review-order.php:217 -msgid "Please fill in your details above to see available payment methods." -msgstr "Skriv inn opplysingane for å sjå betalingsmåtar." - -# @ woocommerce -#: templates/checkout/review-order.php:219 -msgid "Sorry, it seems that there are no available payment methods for your state. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "Orsak, det ser ikkje ut som det finst gyldige betalingsmåtar for delstaten din. Kontakt oss om du treng hjelp, eller vil ordna bestillinga på annan måte." - -# @ woocommerce -#: templates/checkout/review-order.php:228 -msgid "Since your browser does not support JavaScript, or it is disabled, please ensure you click the Update Totals button before placing your order. You may be charged more than the amount stated above if you fail to do so." -msgstr "Sidan nettlesaren din anten ikkje har skrudd på eller ikkje støttar Javascript, må du passa på å klikka knappen med Oppdater summen før du stadfestar bestillinga. Viss du let vera å klikka, kan det henda du blir kravd for meir enn det du skal betala." - -# @ woocommerce -#: templates/checkout/review-order.php:228 -msgid "Update totals" -msgstr "Oppdater summen" - -# @ woocommerce -#: templates/checkout/review-order.php:234 -msgid "Place order" -msgstr "Send bestillinga" - -# @ woocommerce -#: templates/checkout/review-order.php:238 -msgid "I have read and accept the" -msgstr "Eg har lese og godtek" - -# @ woocommerce -#: templates/checkout/review-order.php:238 -msgid "terms & conditions" -msgstr "bruks- og kjøpsvilkår" - -# @ woocommerce -#: templates/checkout/thankyou.php:18 -msgid "Unfortunately your order cannot be processed as the originating bank/merchant has declined your transaction." -msgstr "Me kan diverre ikkje gjennomføra bestillinga di, fordi banken/kjøpmannen ikkje godkjende overføringa." - -# @ woocommerce -#: templates/checkout/thankyou.php:22 -msgid "Please attempt your purchase again or go to your account page." -msgstr "Prøv å handla ein gong til, eller gå til brukarkontoen din." - -# @ woocommerce -#: templates/checkout/thankyou.php:24 -msgid "Please attempt your purchase again." -msgstr "Prøv å handla ein gong til." - -# @ woocommerce -#: templates/checkout/thankyou.php:36 -#: templates/checkout/thankyou.php:67 -msgid "Thank you. Your order has been received." -msgstr "Mange takk - me har fått bestillinga di." - -# @ woocommerce -#: templates/emails/admin-new-order.php:13 -#: templates/emails/plain/admin-new-order.php:13 -msgid "You have received an order from %s. Their order is as follows:" -msgstr "Du har fått ei tinging frå %s. Her er tinginga:" - -# @ woocommerce -#: templates/emails/admin-new-order.php:17 -msgid "Order: %s" -msgstr "Bestilling: %s" - -# @ woocommerce -#: templates/emails/admin-new-order.php:50 -#: templates/emails/customer-completed-order.php:51 -#: templates/emails/customer-note.php:55 -#: templates/emails/customer-processing-order.php:51 -#: templates/emails/plain/admin-new-order.php:38 -#: templates/order/order-details.php:88 -msgid "Customer details" -msgstr "Kundedetaljar" - -# @ woocommerce -#: templates/emails/admin-new-order.php:53 -#: templates/emails/customer-completed-order.php:54 -#: templates/emails/customer-note.php:58 -#: templates/emails/customer-processing-order.php:54 -#: templates/emails/plain/admin-new-order.php:41 -#: templates/emails/plain/customer-completed-order.php:41 -#: templates/emails/plain/customer-note.php:49 -#: templates/emails/plain/customer-processing-order.php:41 -#: templates/order/order-details.php:92 -msgid "Email:" -msgstr "Epost:" - -# @ woocommerce -#: templates/emails/admin-new-order.php:56 -#: templates/emails/customer-completed-order.php:57 -#: templates/emails/customer-note.php:61 -#: templates/emails/customer-processing-order.php:57 -#: templates/emails/plain/admin-new-order.php:44 -#: templates/emails/plain/customer-completed-order.php:44 -#: templates/emails/plain/customer-note.php:52 -#: templates/emails/plain/customer-processing-order.php:44 -msgid "Tel:" -msgstr "Tlf:" - -# @ woocommerce -#: templates/emails/customer-completed-order.php:14 -#: templates/emails/plain/customer-completed-order.php:13 -msgid "Hi there. Your recent order on %s has been completed. Your order details are shown below for your reference:" -msgstr "Hei du! Bestillinga di på %s er fullført. Her er opplysingar om henne." - -# @ woocommerce -#: templates/emails/customer-invoice.php:16 -#: templates/emails/plain/customer-invoice.php:14 -msgid "An order has been created for you on %s. To pay for this order please use the following link: %s" -msgstr "Det er laga ei tinging for deg på %s. Gå hit for å betala for bestillinga: %s" - -# @ woocommerce -#: templates/emails/customer-invoice.php:16 -msgid "pay" -msgstr "betal" - -# @ woocommerce -#: templates/emails/customer-new-account.php:14 -#: templates/emails/plain/customer-new-account.php:13 -msgid "Thanks for creating an account on %s. Your username is %s." -msgstr "Takk for at du laga ein brukarkonto hjå %s. Brukarnamnet ditt er %s." - -# @ woocommerce -#: templates/emails/customer-new-account.php:16 -#: templates/emails/plain/customer-new-account.php:15 -msgid "You can access your account area here: %s." -msgstr "Du kan gå til brukarkontoen din her: %s." - -# @ woocommerce -#: templates/emails/customer-note.php:14 -#: templates/emails/plain/customer-note.php:13 -msgid "Hello, a note has just been added to your order:" -msgstr "Hei, det er akkurat skrive ein merknad til bestillinga di:" - -# @ woocommerce -#: templates/emails/customer-note.php:18 -#: templates/emails/plain/customer-note.php:21 -msgid "For your reference, your order details are shown below." -msgstr "Her er opplysingane om bestillinga di." - -# @ woocommerce -#: templates/emails/customer-processing-order.php:14 -#: templates/emails/plain/customer-processing-order.php:13 -msgid "Your order has been received and is now being processed. Your order details are shown below for your reference:" -msgstr "Me har fått tinginga di, og handterer hennen no. Detaljane om tinginga står under:" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:14 -#: templates/emails/plain/customer-reset-password.php:13 -msgid "Someone requested that the password be reset for the following account:" -msgstr "Nokon har bede om å få nullstilt passordet for denne brukarkontoen:" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:15 -#: templates/emails/plain/customer-reset-password.php:15 -msgid "Username: %s" -msgstr "Brukarnamn: %s" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:16 -#: templates/emails/plain/customer-reset-password.php:16 -msgid "If this was a mistake, just ignore this email and nothing will happen." -msgstr "Viss dette er feil, kan du berre sjå bort frå denne eposten, og ingenting vil henda." - -# @ woocommerce -#: templates/emails/customer-reset-password.php:17 -#: templates/emails/plain/customer-reset-password.php:17 -msgid "To reset your password, visit the following address:" -msgstr "For å nullstilla passordet ditt, kan du gå til denne adressa:" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:20 -msgid "Click here to reset your password" -msgstr "Klikk her for å nullstilla passordet ditt" - -# @ woocommerce -#: templates/emails/email-addresses.php:18 -#: templates/emails/plain/email-addresses.php:12 -msgid "Billing address" -msgstr "Fakturaadresse" - -# @ woocommerce -#: templates/emails/email-addresses.php:28 -#: templates/emails/plain/email-addresses.php:17 -msgid "Shipping address" -msgstr "Fraktadresse" - -# @ woocommerce -#: templates/emails/email-order-items.php:40 -msgid "Download %d:" -msgstr "Last ned %d:" - -# @ woocommerce -#: templates/emails/email-order-items.php:42 -msgid "Download:" -msgstr "Last ned:" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:19 -#: templates/emails/plain/customer-completed-order.php:19 -#: templates/emails/plain/customer-invoice.php:20 -#: templates/emails/plain/customer-note.php:27 -#: templates/emails/plain/customer-processing-order.php:19 -msgid "Order number: %s" -msgstr "Ordrenummer: %s" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:20 -#: templates/emails/plain/customer-completed-order.php:20 -#: templates/emails/plain/customer-invoice.php:21 -#: templates/emails/plain/customer-note.php:28 -#: templates/emails/plain/customer-processing-order.php:20 -msgid "Order date: %s" -msgstr "Ordredato: %s" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:20 -msgid "jS F Y" -msgstr "D j. F Y" - -# @ woocommerce -#: templates/emails/plain/customer-completed-order.php:38 -#: templates/emails/plain/customer-note.php:46 -#: templates/emails/plain/customer-processing-order.php:38 -msgid "Your details" -msgstr "Detaljar" - -# @ woocommerce -#: templates/emails/plain/email-order-items.php:28 -msgid "Quantity: %s" -msgstr "Mengd: %s" - -# @ woocommerce -#: templates/emails/plain/email-order-items.php:31 -msgid "Cost: %s" -msgstr "Kostnad: %s" - -# @ woocommerce -#: templates/loop/add-to-cart.php:17 -#: templates/loop/add-to-cart.php:41 -#: templates/loop/add-to-cart.php:50 -msgid "Read More" -msgstr "Les meir" - -# @ woocommerce -#: templates/loop/add-to-cart.php:33 -msgid "Select options" -msgstr "Val" - -# @ woocommerce -#: templates/loop/add-to-cart.php:37 -msgid "View options" -msgstr "Sjå val" - -# @ woocommerce -#: templates/loop/no-products-found.php:14 -#: templates/loop-shop.php:40 -msgid "No products found which match your selection." -msgstr "Fann ingen varer som passar." - -# @ woocommerce -#: templates/loop/orderby.php:21 -msgid "Default sorting" -msgstr "Standardsortering" - -# @ woocommerce -#: templates/loop/orderby.php:22 -msgid "Sort by popularity" -msgstr "Sorter etter popularitet" - -# @ woocommerce -#: templates/loop/orderby.php:23 -msgid "Sort by average rating" -msgstr "Sorter etter vurdering" - -# @ woocommerce -#: templates/loop/orderby.php:24 -msgid "Sort by newness" -msgstr "Sorter etter nyaste" - -# @ woocommerce -#: templates/loop/orderby.php:25 -msgid "Sort by price: low to high" -msgstr "Sorter etter pris: låg til høg" - -# @ woocommerce -#: templates/loop/orderby.php:26 -msgid "Sort by price: high to low" -msgstr "Sorter etter pris: høg til låg" - -# @ woocommerce -#: templates/loop/result-count.php:28 -msgid "Showing the single result" -msgstr "Viser det einaste resultatet" - -# @ woocommerce -#: templates/loop/result-count.php:30 -msgid "Showing all %d results" -msgstr "Vis alle %d resultata" - -# @ woocommerce -#: templates/loop/result-count.php:32 -msgctxt "%1$d = first, %2$d = last, %3$d = total" -msgid "Showing %1$d–%2$d of %3$d results" -msgstr "Viser %1$d–%2$d av %3$d resultat" - -# @ woocommerce -#: templates/loop/sale-flash.php:16 -#: templates/single-product/sale-flash.php:16 -msgid "Sale!" -msgstr "Sal!" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:20 -#: templates/myaccount/form-lost-password.php:31 -msgid "New password" -msgstr "Nytt passord" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:24 -#: templates/myaccount/form-lost-password.php:35 -msgid "Re-enter new password" -msgstr "Skriv inn det nye passordet ditt." - -# @ woocommerce -#: templates/myaccount/form-change-password.php:29 -#: templates/myaccount/form-lost-password.php:45 -msgid "Save" -msgstr "Lagra" - -# @ woocommerce -#: templates/myaccount/form-edit-address.php:43 -msgid "Save Address" -msgstr "Lagra adressa" - -# @ woocommerce -#: templates/myaccount/form-login.php:26 -#: templates/myaccount/form-login.php:40 -#: templates/shop/form-login.php:31 -msgid "Login" -msgstr "Logg inn" - -# @ woocommerce -#: templates/myaccount/form-login.php:50 -#: templates/shop/form-login.php:33 -msgid "Lost Password?" -msgstr "Mista passordet?" - -# @ woocommerce -#: templates/myaccount/form-login.php:60 -#: templates/myaccount/form-login.php:101 -msgid "Register" -msgstr "Registrer" - -# @ woocommerce -#: templates/myaccount/form-login.php:66 -msgid "Username" -msgstr "Brukarnamn" - -# @ woocommerce -#: templates/myaccount/form-login.php:78 -#: templates/single-product-reviews.php:101 -msgid "Email" -msgstr "Epost" - -# @ woocommerce -#: templates/myaccount/form-login.php:89 -msgid "Re-enter password" -msgstr "Skriv inn passordet ein gong til" - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:22 -msgid "Lost your password? Please enter your username or email address. You will receive a link to create a new password via email." -msgstr "Har du gløymt passordet ditt? Skriv inn brukarnamnet eller epostadressa di. Då får du ei lenkje til å nullstilla passordet." - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:28 -msgid "Enter a new password below." -msgstr "Skriv inn det nye passordet ditt under." - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:45 -msgid "Reset Password" -msgstr "Nullstill passordet" - -# @ woocommerce -#: templates/myaccount/my-account.php:19 -msgid "Hello, %s. From your account dashboard you can view your recent orders, manage your shipping and billing addresses and change your password." -msgstr "Hei %s. På styringspanelet ditt kan du sjå på og endra dei siste bestillingane dine, setja opp adressene dine og endra passordet ditt." - -# @ woocommerce -#: templates/myaccount/my-address.php:17 -msgid "My Addresses" -msgstr "Adressene mine" - -# @ woocommerce -#: templates/myaccount/my-address.php:23 -msgid "My Address" -msgstr "Adressa mi" - -# @ woocommerce -#: templates/myaccount/my-address.php:35 -msgid "The following addresses will be used on the checkout page by default." -msgstr "Denne adressa vil bli brukt som standard på kassa-sida." - -# @ default -# @ woocommerce -#: templates/myaccount/my-address.php:45 -#: woocommerce.php:917 -#: woocommerce.php:953 -#: woocommerce.php:990 -#: woocommerce.php:1028 -#: woocommerce.php:1066 -msgid "Edit" -msgstr "Rediger" - -# @ woocommerce -#: templates/myaccount/my-address.php:64 -msgid "You have not set up this type of address yet." -msgstr "Du har ikkje sett opp denne typen adresse enno." - -# @ woocommerce -#: templates/myaccount/my-downloads.php:18 -msgid "Available downloads" -msgstr "Tilgjengelege nedlastingar" - -# @ woocommerce -#: templates/myaccount/my-downloads.php:27 -msgid "%s download remaining" -msgid_plural "%s downloads remaining" -msgstr[0] "%s nedlasting att" -msgstr[1] "%s nedlastingar att" - -# @ woocommerce -#: templates/myaccount/my-orders.php:26 -msgid "Recent Orders" -msgstr "Dei siste bestillingane dine" - -# @ woocommerce -#: templates/myaccount/my-orders.php:32 -#: woocommerce.php:1025 -msgid "Order" -msgstr "Send bestillinga" - -# @ woocommerce -#: templates/myaccount/my-orders.php:33 -msgid "Date" -msgstr "Dato" - -# @ woocommerce -#: templates/myaccount/my-orders.php:34 -msgid "Status" -msgstr "Status" - -# @ woocommerce -#: templates/myaccount/my-orders.php:62 -msgid "%s for %s item" -msgid_plural "%s for %s items" -msgstr[0] "%s for %s element" -msgstr[1] "%s for %s element" - -# @ woocommerce -#: templates/myaccount/my-orders.php:77 -msgid "Cancel" -msgstr "Avbryt" - -# @ default -# @ woocommerce -#: templates/myaccount/my-orders.php:82 -msgid "View" -msgstr "Vis" - -# @ woocommerce -#: templates/order/form-tracking.php:17 -msgid "To track your order please enter your Order ID in the box below and press return. This was given to you on your receipt and in the confirmation email you should have received." -msgstr "For å spora bestillinga di, kan du skriva inn ordrenummeret i boksen under, og trykkja linjeskift (enter). Du fekk ordrenummeret i kvitteringa, og i eposten du fekk." - -# @ woocommerce -#: templates/order/form-tracking.php:19 -msgid "Order ID" -msgstr "Bestillings-ID" - -# @ woocommerce -#: templates/order/form-tracking.php:19 -msgid "Found in your order confirmation email." -msgstr "I epost-stadfestinga du fekk." - -# @ woocommerce -#: templates/order/form-tracking.php:20 -msgid "Billing Email" -msgstr "Epostadresse" - -# @ woocommerce -#: templates/order/form-tracking.php:20 -msgid "Email you used during checkout." -msgstr "Epostadressa du skreiv inn i kassa." - -# @ woocommerce -#: templates/order/form-tracking.php:23 -msgid "Track" -msgstr "Spor" - -# @ woocommerce -#: templates/order/order-details.php:16 -msgid "Order Details" -msgstr "Bestillingsdetaljar" - -# @ woocommerce -#: templates/order/order-details.php:57 -msgid "Download file %s →" -msgstr "Last ned fila %s →" - -# @ woocommerce -#: templates/order/order-details.php:81 -msgid "Order Again" -msgstr "Same bestillinga ein gong til" - -# @ woocommerce -#: templates/order/order-details.php:93 -msgid "Telephone:" -msgstr "Telefonnummer:" - -# @ woocommerce -#: templates/order/tracking.php:18 -msgid "Order %s which was made %s has the status “%s”" -msgstr "Bestillinga %s som vart sendt %s har statusen “%s”" - -# @ woocommerce -#: templates/order/tracking.php:18 -msgid "ago" -msgstr "sidan" - -# @ woocommerce -#: templates/order/tracking.php:20 -msgid "and was completed" -msgstr "og vart fullført" - -# @ woocommerce -#: templates/order/tracking.php:20 -msgid " ago" -msgstr " sidan" - -# @ woocommerce -#: templates/shop/breadcrumb.php:66 -msgid "Products tagged “" -msgstr "Produkt merka “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:94 -#: templates/shop/breadcrumb.php:196 -msgid "Search results for “" -msgstr "Treff på “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:154 -msgid "Error 404" -msgstr "404-feil" - -# @ woocommerce -#: templates/shop/breadcrumb.php:200 -msgid "Posts tagged “" -msgstr "Innlegg merka “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:205 -msgid "Author:" -msgstr "Forfattar:" - -# @ woocommerce -#: templates/shop/breadcrumb.php:210 -msgid "Page" -msgstr "Side" - -# @ woocommerce -#: templates/single-product/add-to-cart/variable.php:24 -msgid "Choose an option" -msgstr "Vel type" - -# @ woocommerce -#: templates/single-product/add-to-cart/variable.php:64 -msgid "Clear selection" -msgstr "Fjern merkinga" - -# @ product_cat -#: templates/single-product/meta.php:22 -msgid "Category:" -msgid_plural "Categories:" -msgstr[0] "Kategori:" -msgstr[1] "Kategoriar:" - -# @ product_tag -#: templates/single-product/meta.php:24 -msgid "Tag:" -msgid_plural "Tags:" -msgstr[0] "Merkelapp:" -msgstr[1] "Merkelappar:" - -# @ woocommerce -#: templates/single-product/product-attributes.php:28 -msgid "Weight" -msgstr "Vekt" - -# @ woocommerce -#: templates/single-product/product-attributes.php:37 -msgid "Dimensions" -msgstr "Storleik" - -# @ woocommerce -#: templates/single-product/related.php:36 -msgid "Related Products" -msgstr "Liknande varer" - -# @ woocommerce -#: templates/single-product/review.php:26 -msgid "Rated %d out of 5" -msgstr "Vurdert til %d av 5" - -# @ woocommerce -#: templates/single-product/review.php:33 -msgid "Your comment is awaiting approval" -msgstr "Innspelet ditt ventar på godkjenning." - -# @ woocommerce -#: templates/single-product/review.php:40 -msgid "verified owner" -msgstr "godkjent eigar" - -# @ woocommerce -#: templates/single-product/tabs/description.php:14 -msgid "Product Description" -msgstr "Vareskildring" - -# @ woocommerce -#: templates/single-product/up-sells.php:41 -msgid "You may also like…" -msgstr "Kan hende du likar…" - -# @ woocommerce -#: templates/single-product-reviews.php:45 -msgid "%s review for %s" -msgid_plural "%s reviews for %s" -msgstr[0] "%s vurdering av %s" -msgstr[1] "%s vurderingar av %s" - -# @ woocommerce -#: templates/single-product-reviews.php:51 -#: templates/single-product-reviews.php:57 -msgid "Reviews" -msgstr "Vurderingar" - -# @ woocommerce -#: templates/single-product-reviews.php:73 -msgid " Previous" -msgstr " Førre" - -# @ woocommerce -#: templates/single-product-reviews.php:74 -msgid "Next " -msgstr "Neste " - -# @ woocommerce -#: templates/single-product-reviews.php:78 -msgid "Add Your Review" -msgstr "Vurder produktet" - -# @ woocommerce -#: templates/single-product-reviews.php:78 -msgid "Add Review" -msgstr "Skriv ei vurdering" - -# @ woocommerce -#: templates/single-product-reviews.php:80 -msgid "Add a review" -msgstr "Skriv ei vurdering" - -# @ woocommerce -#: templates/single-product-reviews.php:84 -msgid "Be the first to review" -msgstr "Skriv ei vurdering av" - -# @ woocommerce -#: templates/single-product-reviews.php:86 -msgid "There are no reviews yet, would you like to submit yours?" -msgstr "Ingen har vurdert denne enno, kanskje du vil gjera det?" - -# @ woocommerce -#: templates/single-product-reviews.php:104 -msgid "Submit Review" -msgstr "Send inn vurderinga" - -# @ woocommerce -#: templates/single-product-reviews.php:111 -msgid "Rating" -msgstr "Vurdering" - -# @ woocommerce -#: templates/single-product-reviews.php:112 -msgid "Rate…" -msgstr "Sats…" - -# @ woocommerce -#: templates/single-product-reviews.php:113 -msgid "Perfect" -msgstr "Framifrå" - -# @ woocommerce -#: templates/single-product-reviews.php:114 -msgid "Good" -msgstr "Bra" - -# @ woocommerce -#: templates/single-product-reviews.php:115 -msgid "Average" -msgstr "Passe" - -# @ woocommerce -#: templates/single-product-reviews.php:116 -msgid "Not that bad" -msgstr "Ikkje så verst" - -# @ woocommerce -#: templates/single-product-reviews.php:117 -msgid "Very Poor" -msgstr "Veldig dårleg" - -# @ woocommerce -#: templates/single-product-reviews.php:122 -msgid "Your Review" -msgstr "Vurderinga di" - -# @ woocommerce -#: woocommerce-ajax.php:111 -msgid "Please enter your username and password to login." -msgstr "Skriv inn brukarnamnet og passordet for å logga inn." - -# @ woocommerce -#: woocommerce-ajax.php:191 -msgid "Sorry, your session has expired." -msgstr "Økta di har gått ut." - -# @ woocommerce -#: woocommerce-ajax.php:191 -msgid "Return to homepage →" -msgstr "Gå til heimesida →" - -# @ woocommerce -#: woocommerce-ajax.php:332 -#: woocommerce-ajax.php:366 -#: woocommerce-ajax.php:389 -msgid "You do not have sufficient permissions to access this page." -msgstr "Du har ikkje løyve til å få tilgang til denne sida." - -# @ woocommerce -#: woocommerce-ajax.php:334 -#: woocommerce-ajax.php:367 -#: woocommerce-ajax.php:390 -msgid "You have taken too long. Please go back and retry." -msgstr "Du brukte for lang tid. Gå tilbake og prøv ein gong til." - -# @ woocommerce -#: woocommerce-ajax.php:626 -msgid "Same as parent" -msgstr "Same som forelderen" - -# @ woocommerce -#: woocommerce-ajax.php:627 -msgid "Standard" -msgstr "Vanleg" - -# @ woocommerce -#: woocommerce-ajax.php:1172 -msgid "No products had their stock reduced - they may not have stock management enabled." -msgstr "Ingen varer fekk redusert lagermengd - kan henda dei ikkje bruker lagerstyring." - -# @ woocommerce -#: woocommerce-ajax.php:1215 -#: woocommerce-ajax.php:1216 -msgid "Item #%s stock increased from %s to %s." -msgstr "Lagermengda for vara #%s er auka frå %s til %s." - -# @ woocommerce -#: woocommerce-ajax.php:1223 -msgid "No products had their stock increased - they may not have stock management enabled." -msgstr "Ingen varer fekk auka lagermengd - kan henda dei ikkje bruker lagerstyring." - -# @ woocommerce -#: woocommerce-ajax.php:1244 -msgid "Value" -msgstr "Verdi" - -# @ woocommerce -#: woocommerce-ajax.php:1558 -msgid "Delete note" -msgstr "Slett merknaden" - -# @ woocommerce -#: woocommerce-core-functions.php:268 -msgid "%s – %s%s" -msgstr "%s – %s%s" - -# @ woocommerce -#: woocommerce-core-functions.php:675 -msgid "Australian Dollars" -msgstr "Australske dollar" - -# @ woocommerce -#: woocommerce-core-functions.php:676 -msgid "Brazilian Real" -msgstr "Brasiliansk real" - -# @ woocommerce -#: woocommerce-core-functions.php:677 -msgid "Canadian Dollars" -msgstr "Kanadiske dollar" - -# @ woocommerce -#: woocommerce-core-functions.php:678 -msgid "Chinese Yuan" -msgstr "Kinesisk yuan" - -# @ woocommerce -#: woocommerce-core-functions.php:679 -msgid "Czech Koruna" -msgstr "Tsjekkisk koruna" - -# @ woocommerce -#: woocommerce-core-functions.php:680 -msgid "Danish Krone" -msgstr "Danske kroner" - -# @ woocommerce -#: woocommerce-core-functions.php:681 -msgid "Euros" -msgstr "Euro" - -# @ woocommerce -#: woocommerce-core-functions.php:682 -msgid "Hong Kong Dollar" -msgstr "Hong Kong-dollar" - -# @ woocommerce -#: woocommerce-core-functions.php:683 -msgid "Hungarian Forint" -msgstr "Ungarsk forint" - -# @ woocommerce -#: woocommerce-core-functions.php:684 -msgid "Indonesia Rupiah" -msgstr "Indonesisk rupiah" - -# @ woocommerce -#: woocommerce-core-functions.php:685 -msgid "Israeli Shekel" -msgstr "Israelsk shekel" - -# @ woocommerce -#: woocommerce-core-functions.php:686 -msgid "Japanese Yen" -msgstr "Japansk yen" - -# @ woocommerce -#: woocommerce-core-functions.php:687 -msgid "Malaysian Ringgits" -msgstr "Malaysiske ringgit" - -# @ woocommerce -#: woocommerce-core-functions.php:688 -msgid "Mexican Peso" -msgstr "Meksikanske pesos" - -# @ woocommerce -#: woocommerce-core-functions.php:689 -msgid "Norwegian Krone" -msgstr "Norske kroner" - -# @ woocommerce -#: woocommerce-core-functions.php:690 -msgid "New Zealand Dollar" -msgstr "New zealandske dollar" - -# @ woocommerce -#: woocommerce-core-functions.php:691 -msgid "Philippine Pesos" -msgstr "Filippinske pesos" - -# @ woocommerce -#: woocommerce-core-functions.php:692 -msgid "Polish Zloty" -msgstr "Polske złoty" - -# @ woocommerce -#: woocommerce-core-functions.php:693 -msgid "Pounds Sterling" -msgstr "Britiske pund" - -# @ woocommerce -#: woocommerce-core-functions.php:694 -msgid "Romanian Leu" -msgstr "Rumenske leu" - -# @ woocommerce -#: woocommerce-core-functions.php:695 -msgid "Singapore Dollar" -msgstr "Singapore-dollar" - -# @ woocommerce -#: woocommerce-core-functions.php:696 -msgid "South African rand" -msgstr "Sørafrikanske rand" - -# @ woocommerce -#: woocommerce-core-functions.php:697 -msgid "Swedish Krona" -msgstr "Svenske kroner" - -# @ woocommerce -#: woocommerce-core-functions.php:698 -msgid "Swiss Franc" -msgstr "Sveitserfranc" - -# @ woocommerce -#: woocommerce-core-functions.php:699 -msgid "Taiwan New Dollars" -msgstr "Taiwanske ny-dollar" - -# @ woocommerce -#: woocommerce-core-functions.php:700 -msgid "Thai Baht" -msgstr "Thailandsk baht" - -# @ woocommerce -#: woocommerce-core-functions.php:701 -msgid "Turkish Lira" -msgstr "Tyrkiske lire" - -# @ woocommerce -#: woocommerce-core-functions.php:702 -msgid "US Dollars" -msgstr "Amerikanske dollar" - -# @ woocommerce -#: woocommerce-core-functions.php:1189 -#: woocommerce-core-functions.php:1215 -msgid "Download Permissions Granted" -msgstr "Nedlastingar løyvde" - -# @ woocommerce -#: woocommerce-core-functions.php:1328 -msgctxt "slug" -msgid "uncategorized" -msgstr "ukategorisert" - -# @ woocommerce -#: woocommerce-core-functions.php:1517 -msgid "Select a category" -msgstr "Vel kategori" - -# @ woocommerce -#: woocommerce-core-functions.php:1521 -msgid "Uncategorized" -msgstr "Ukategorisert" - -# @ woocommerce -#: woocommerce-core-functions.php:1893 -msgid "Customer" -msgstr "Kunde" - -# @ woocommerce -#: woocommerce-core-functions.php:1900 -msgid "Shop Manager" -msgstr "Butikkstyrar" - -# @ woocommerce -#: woocommerce-core-functions.php:2433 -msgid "Unpaid order cancelled - time limit reached." -msgstr "Tidsgrensa er nådd, og den ubetalte tinginga er kansellert." - -# @ woocommerce -#: woocommerce-core-functions.php:2485 -#: woocommerce-functions.php:703 -msgid "Please enter a username." -msgstr "Skriv inn eit brukarnamn." - -# @ woocommerce -#: woocommerce-functions.php:208 -#: woocommerce-functions.php:253 -msgid "Cart updated." -msgstr "Oppdaterte handlekorga." - -# @ woocommerce -#: woocommerce-functions.php:239 -msgid "You can only have 1 %s in your cart." -msgstr "Du kan berre ha 1 %s i korga." - -# @ woocommerce -#: woocommerce-functions.php:296 -#: woocommerce-functions.php:343 -msgid "Please choose product options…" -msgstr "Vel eit alternativ…" - -# @ woocommerce -#: woocommerce-functions.php:378 -msgid "Please choose the quantity of items you wish to add to your cart…" -msgstr "Vel kor mange du vil leggja i handlekorga…" - -# @ woocommerce -#: woocommerce-functions.php:386 -msgid "Please choose a product to add to your cart…" -msgstr "Vel ei vare å leggja i handlekorga…" - -# @ woocommerce -#: woocommerce-functions.php:455 -msgid "Added "%s" to your cart." -msgstr "La «%s» i handlekorga di." - -# @ default -#: woocommerce-functions.php:455 -msgid "" and "" -msgstr "» og «" - -# @ woocommerce -#: woocommerce-functions.php:458 -msgid ""%s" was successfully added to your cart." -msgstr "«%s» vart lagt i handlekorga di." - -# @ woocommerce -#: woocommerce-functions.php:466 -msgid "Continue Shopping →" -msgstr "Handla meir →" - -# @ woocommerce -#: woocommerce-functions.php:633 -msgid "Username is required." -msgstr "Du må ha eit brukarnamn." - -# @ woocommerce -#: woocommerce-functions.php:634 -#: woocommerce-functions.php:729 -msgid "Password is required." -msgstr "Du må ha eit passord." - -# @ woocommerce -#: woocommerce-functions.php:705 -msgid "This username is invalid because it uses illegal characters. Please enter a valid username." -msgstr "Brukarnamnet inneheld ugyldige teikn. Skriv inn eit gyldig brukarnamn." - -# @ woocommerce -#: woocommerce-functions.php:708 -msgid "This username is already registered, please choose another one." -msgstr "Brukarnamnet er alt i bruk. Vel eit anna." - -# @ woocommerce -#: woocommerce-functions.php:720 -msgid "Please type your e-mail address." -msgstr "Skriv inn epostadressa di." - -# @ woocommerce -#: woocommerce-functions.php:722 -msgid "The email address isn’t correct." -msgstr "Epostadressa er ugyldig." - -# @ woocommerce -#: woocommerce-functions.php:725 -msgid "This email is already registered, please choose another one." -msgstr "Epostadressa er alt i bruk. Vel ei anna." - -# @ woocommerce -#: woocommerce-functions.php:730 -msgid "Re-enter your password." -msgstr "Skriv inn passordet på nytt." - -# @ woocommerce -#: woocommerce-functions.php:735 -msgid "Anti-spam field was filled in." -msgstr "Fylte inn anti-spam-feltet." - -# @ woocommerce -#: woocommerce-functions.php:841 -msgid "The cart has been filled with the items from your previous order." -msgstr "Me har fylt handlekorga di med dei varene du bestilte sist gong." - -# @ woocommerce -#: woocommerce-functions.php:867 -msgid "Order cancelled by customer." -msgstr "Kunden avlyste bestillinga." - -# @ woocommerce -#: woocommerce-functions.php:870 -msgid "Your order was cancelled." -msgstr "Bestillinga er avbroten." - -# @ woocommerce -#: woocommerce-functions.php:876 -msgid "Your order is no longer pending and could not be cancelled. Please contact us if you need assistance." -msgstr "Bestillinga di er ikkje på vent lenger, så du kan ikkje avlysa henne. Kontakt oss om du treng hjelp." - -# @ woocommerce -#: woocommerce-functions.php:911 -msgid "Invalid email address." -msgstr "Ugyldig epostadresse." - -# @ woocommerce -#: woocommerce-functions.php:911 -#: woocommerce-functions.php:933 -#: woocommerce-functions.php:953 -#: woocommerce-functions.php:959 -#: woocommerce-functions.php:963 -#: woocommerce-functions.php:966 -#: woocommerce-functions.php:996 -#: woocommerce-functions.php:1099 -msgid "Go to homepage →" -msgstr "Gå til heimesida →" - -# @ woocommerce -#: woocommerce-functions.php:933 -msgid "Invalid download." -msgstr "Ugyldig nedlasting." - -# @ woocommerce -#: woocommerce-functions.php:945 -msgid "You must be logged in to download files." -msgstr "Du må vera logga inn for å lasta ned filer." - -# @ woocommerce -#: woocommerce-functions.php:948 -msgid "This is not your download link." -msgstr "Dette er ikkje nedlastingslenkja di." - -# @ woocommerce -#: woocommerce-functions.php:953 -msgid "Product no longer exists." -msgstr "Produktet finst ikkje lenger." - -# @ woocommerce -#: woocommerce-functions.php:963 -msgid "Sorry, you have reached your download limit for this file" -msgstr "Du kan ikkje lasta ned denne fila fleire gonger." - -# @ woocommerce -#: woocommerce-functions.php:966 -msgid "Sorry, this download has expired" -msgstr "Denne nedlastinga har gått ut" - -# @ woocommerce -#: woocommerce-functions.php:996 -msgid "No file defined" -msgstr "Inga fil er definert." - -# @ woocommerce -#: woocommerce-functions.php:1099 -msgid "File not found" -msgstr "Fann ikkje fila" - -# @ woocommerce -#: woocommerce-functions.php:1209 -msgid "New products" -msgstr "Nye varer" - -# @ woocommerce -#: woocommerce-functions.php:1217 -msgid "New products added to %s" -msgstr "Nye varer i %s" - -# @ woocommerce -#: woocommerce-functions.php:1225 -msgid "New products tagged %s" -msgstr "Nye varer merka %s" - -# @ woocommerce -#: woocommerce-functions.php:1264 -msgid "You have taken too long. Please go back and refresh the page." -msgstr "Du brukte for lang tid. Gå tilbake og last sida på nytt." - -# @ woocommerce -#: woocommerce-functions.php:1267 -msgid "Please rate the product." -msgstr "Vurder denne" - -# @ woocommerce -#: woocommerce-functions.php:1575 -msgid "Password changed successfully." -msgstr "Passordet er endra." - -# @ woocommerce -#: woocommerce-functions.php:1651 -msgid "Address changed successfully." -msgstr "Adressa er endra." - -# @ woocommerce -#: woocommerce-template.php:196 -msgid "This is a demo store for testing purposes — no orders shall be fulfilled." -msgstr "Dette er ein butikk for utprøving, og me kjem ikkje til å handtera nokon bestillingar." - -# @ woocommerce -#: woocommerce-template.php:215 -msgid "Search Results: “%s”" -msgstr "Søkjeresultat: “%s”" - -# @ woocommerce -#: woocommerce-template.php:218 -msgid " – Page %s" -msgstr " – Side %s" - -# @ woocommerce -#: woocommerce-template.php:764 -msgid "Reviews (%d)" -msgstr "Vurderingar (%d)" - -# @ woocommerce -#: woocommerce-template.php:990 -msgctxt "breadcrumb" -msgid "Home" -msgstr "Heim" - -# @ woocommerce -#: woocommerce-template.php:1288 -#: woocommerce.php:1175 -msgid "required" -msgstr "kravd" - -# @ woocommerce -#: woocommerce-template.php:1334 -msgid "Update country" -msgstr "Oppdater land" - -# @ woocommerce -#: woocommerce-template.php:1489 -msgid "Search for:" -msgstr "Søk etter:" - -# @ woocommerce -#: woocommerce-template.php:1490 -msgid "Search for products" -msgstr "Søk etter varer" - -# @ woocommerce -#: woocommerce-template.php:1491 -#: woocommerce.php:913 -msgid "Search" -msgstr "Søk" - -# @ woocommerce -#: woocommerce.php:752 -msgctxt "slug" -msgid "product-category" -msgstr "vare-kategori" - -# @ woocommerce -#: woocommerce.php:753 -msgctxt "slug" -msgid "product-tag" -msgstr "vare-merkelapp" - -# @ woocommerce -#: woocommerce.php:755 -msgctxt "slug" -msgid "product" -msgstr "vare" - -# @ woocommerce -#: woocommerce.php:790 -msgid "Product Category" -msgstr "Varekategori" - -# @ woocommerce -#: woocommerce.php:791 -msgctxt "Admin menu name" -msgid "Categories" -msgstr "Kategoriar" - -# @ woocommerce -#: woocommerce.php:792 -msgid "Search Product Categories" -msgstr "Søk gjennom varekategoriar" - -# @ woocommerce -#: woocommerce.php:793 -msgid "All Product Categories" -msgstr "Alle varekategoriane" - -# @ woocommerce -#: woocommerce.php:794 -msgid "Parent Product Category" -msgstr "Foreldrekategori" - -# @ woocommerce -#: woocommerce.php:795 -msgid "Parent Product Category:" -msgstr "Foreldrekategori:" - -# @ woocommerce -#: woocommerce.php:796 -msgid "Edit Product Category" -msgstr "Endra varekategori" - -# @ woocommerce -#: woocommerce.php:797 -msgid "Update Product Category" -msgstr "Oppdater varekategorien" - -# @ woocommerce -#: woocommerce.php:798 -msgid "Add New Product Category" -msgstr "Legg til ein ny varekategori" - -# @ woocommerce -#: woocommerce.php:799 -msgid "New Product Category Name" -msgstr "Namn på den nye varekategorien" - -# @ woocommerce -#: woocommerce.php:826 -msgid "Product Tag" -msgstr "Merkelapp" - -# @ woocommerce -#: woocommerce.php:827 -msgctxt "Admin menu name" -msgid "Tags" -msgstr "Merkelappar" - -# @ woocommerce -#: woocommerce.php:828 -msgid "Search Product Tags" -msgstr "Søk gjennom merkelappar" - -# @ woocommerce -#: woocommerce.php:829 -msgid "All Product Tags" -msgstr "Alle merkelappar" - -# @ woocommerce -#: woocommerce.php:830 -msgid "Parent Product Tag" -msgstr "Foreldremerke" - -# @ woocommerce -#: woocommerce.php:831 -msgid "Parent Product Tag:" -msgstr "Foreldremerke:" - -# @ woocommerce -#: woocommerce.php:832 -msgid "Edit Product Tag" -msgstr "Endra merkelappen" - -# @ woocommerce -#: woocommerce.php:833 -msgid "Update Product Tag" -msgstr "Oppdater merkelappen" - -# @ woocommerce -#: woocommerce.php:834 -msgid "Add New Product Tag" -msgstr "Legg til ny merkelapp" - -# @ woocommerce -#: woocommerce.php:835 -msgid "New Product Tag Name" -msgstr "Namn på den nye merkelappen" - -# @ woocommerce -#: woocommerce.php:854 -#: woocommerce.php:856 -msgid "Shipping Classes" -msgstr "Fraktklasser" - -# @ woocommerce -#: woocommerce.php:858 -msgctxt "Admin menu name" -msgid "Shipping Classes" -msgstr "Portoklasser" - -# @ woocommerce -#: woocommerce.php:859 -msgid "Search Shipping Classes" -msgstr "Søk gjennom fraktklasser" - -# @ woocommerce -#: woocommerce.php:860 -msgid "All Shipping Classes" -msgstr "Alle fraktklasser" - -# @ woocommerce -#: woocommerce.php:861 -msgid "Parent Shipping Class" -msgstr "Foreldre-fraktklasse" - -# @ woocommerce -#: woocommerce.php:862 -msgid "Parent Shipping Class:" -msgstr "Foreldre-fraktklasse:" - -# @ woocommerce -#: woocommerce.php:863 -msgid "Edit Shipping Class" -msgstr "Endra fraktklasse" - -# @ woocommerce -#: woocommerce.php:864 -msgid "Update Shipping Class" -msgstr "Oppdater fraktklasse" - -# @ woocommerce -#: woocommerce.php:865 -msgid "Add New Shipping Class" -msgstr "Legg til ny fraktklasse" - -# @ woocommerce -#: woocommerce.php:866 -msgid "New Shipping Class Name" -msgstr "Namn på den nye fraktklassa" - -# @ woocommerce -#: woocommerce.php:914 -msgid "All" -msgstr "Alle" - -# @ woocommerce -#: woocommerce.php:915 -#: woocommerce.php:916 -msgid "Parent" -msgstr "Forelder" - -# @ woocommerce -#: woocommerce.php:918 -msgid "Update" -msgstr "Oppdater" - -# @ woocommerce -#: woocommerce.php:919 -msgid "Add New" -msgstr "Legg til ny" - -# @ woocommerce -#: woocommerce.php:920 -msgid "New" -msgstr "Ny" - -# @ woocommerce -#: woocommerce.php:950 -msgctxt "Admin menu name" -msgid "Products" -msgstr "Varer" - -# @ woocommerce -#: woocommerce.php:951 -msgid "Add Product" -msgstr "Legg til ei vare" - -# @ woocommerce -#: woocommerce.php:952 -msgid "Add New Product" -msgstr "Legg til ei ny vare" - -# @ woocommerce -#: woocommerce.php:954 -msgid "Edit Product" -msgstr "Endra vare" - -# @ woocommerce -#: woocommerce.php:955 -msgid "New Product" -msgstr "Ny vare" - -# @ woocommerce -#: woocommerce.php:956 -#: woocommerce.php:957 -msgid "View Product" -msgstr "Sjå vara" - -# @ woocommerce -#: woocommerce.php:958 -msgid "Search Products" -msgstr "Søk gjennom varer" - -# @ woocommerce -#: woocommerce.php:959 -msgid "No Products found" -msgstr "Fann ingen varer" - -# @ woocommerce -#: woocommerce.php:960 -msgid "No Products found in trash" -msgstr "Fann ingen varer i søpla" - -# @ woocommerce -#: woocommerce.php:961 -msgid "Parent Product" -msgstr "Foreldreprodukt" - -# @ woocommerce -#: woocommerce.php:963 -msgid "This is where you can add new products to your store." -msgstr "Her kan du leggja til nye varer i nettbutikken din." - -# @ woocommerce -#: woocommerce.php:986 -msgid "Variations" -msgstr "Variantar" - -# @ woocommerce -#: woocommerce.php:987 -msgid "Variation" -msgstr "Produktvariant" - -# @ woocommerce -#: woocommerce.php:988 -msgid "Add Variation" -msgstr "Legg til variant" - -# @ woocommerce -#: woocommerce.php:989 -msgid "Add New Variation" -msgstr "Legg til ny variant" - -# @ woocommerce -#: woocommerce.php:991 -msgid "Edit Variation" -msgstr "Endra variant" - -# @ woocommerce -#: woocommerce.php:992 -msgid "New Variation" -msgstr "Ny variant" - -# @ woocommerce -#: woocommerce.php:993 -#: woocommerce.php:994 -msgid "View Variation" -msgstr "Sjå på varianten" - -# @ woocommerce -#: woocommerce.php:995 -msgid "Search Variations" -msgstr "Søk gjennom variantar" - -# @ woocommerce -#: woocommerce.php:996 -msgid "No Variations found" -msgstr "Fann ingen variantar" - -# @ woocommerce -#: woocommerce.php:997 -msgid "No Variations found in trash" -msgstr "Fann ingen variantar i søpla" - -# @ woocommerce -#: woocommerce.php:998 -msgid "Parent Variation" -msgstr "Foreldrevariant" - -# @ woocommerce -#: woocommerce.php:1015 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Bestillingar" - -# @ woocommerce -#: woocommerce.php:1024 -msgid "Orders" -msgstr "Bestillingar" - -# @ woocommerce -#: woocommerce.php:1026 -msgid "Add Order" -msgstr "Legg til tinging" - -# @ woocommerce -#: woocommerce.php:1027 -msgid "Add New Order" -msgstr "Legg til ny tinging" - -# @ woocommerce -#: woocommerce.php:1029 -msgid "Edit Order" -msgstr "Endra bestillinga" - -# @ woocommerce -#: woocommerce.php:1030 -msgid "New Order" -msgstr "Ny tinging" - -# @ woocommerce -#: woocommerce.php:1033 -msgid "Search Orders" -msgstr "Søk gjennom bestillingar" - -# @ woocommerce -#: woocommerce.php:1034 -msgid "No Orders found" -msgstr "Fann ingen bestillingar" - -# @ woocommerce -#: woocommerce.php:1035 -msgid "No Orders found in trash" -msgstr "Fann ingen innlegg i søpla" - -# @ woocommerce -#: woocommerce.php:1036 -msgid "Parent Orders" -msgstr "Foreldrebestillingar" - -# @ woocommerce -#: woocommerce.php:1039 -msgid "This is where store orders are stored." -msgstr "Her blir bestillingane dine lagra." - -# @ woocommerce -#: woocommerce.php:1061 -msgid "Coupons" -msgstr "Rabattkupongar" - -# @ woocommerce -#: woocommerce.php:1063 -msgctxt "Admin menu name" -msgid "Coupons" -msgstr "Rabattkupongar" - -# @ woocommerce -#: woocommerce.php:1064 -msgid "Add Coupon" -msgstr "Legg til ein rabattkupong" - -# @ woocommerce -#: woocommerce.php:1065 -msgid "Add New Coupon" -msgstr "Legg til ny rabattkupong" - -# @ woocommerce -#: woocommerce.php:1067 -msgid "Edit Coupon" -msgstr "Endra kupong" - -# @ woocommerce -#: woocommerce.php:1068 -msgid "New Coupon" -msgstr "Ny kupong" - -# @ woocommerce -#: woocommerce.php:1069 -msgid "View Coupons" -msgstr "Sjå rabattkupongar" - -# @ woocommerce -#: woocommerce.php:1070 -msgid "View Coupon" -msgstr "Sjå rabattkupong" - -# @ woocommerce -#: woocommerce.php:1071 -msgid "Search Coupons" -msgstr "Søk gjennom rabattkupongar" - -# @ woocommerce -#: woocommerce.php:1072 -msgid "No Coupons found" -msgstr "Fann ingen rabattkupongar" - -# @ woocommerce -#: woocommerce.php:1073 -msgid "No Coupons found in trash" -msgstr "Fann ingen rabattkupongar i søpla" - -# @ woocommerce -#: woocommerce.php:1074 -msgid "Parent Coupon" -msgstr "Foreldrekupong" - -# @ woocommerce -#: woocommerce.php:1076 -msgid "This is where you can add new coupons that customers can use in your store." -msgstr "Her kan du leggja til nye rabattkupongar, slik at kundane kan bruka dei i butikken din." - -# @ woocommerce -#: woocommerce.php:1172 -msgid "Select an option…" -msgstr "Vel …" - -# @ woocommerce -#: woocommerce.php:1173 -msgid "Please select a rating" -msgstr "Vel ein karakter" - -# @ woocommerce -#: woocommerce.php:1174 -msgid "Sorry, no products matched your selection. Please choose a different combination." -msgstr "Ingen varer passa til utvalet ditt. Vel ein annan kombinasjon." - -# @ woocommerce -#: woocommerce.php:1656 -msgid "Cart % Discount" -msgstr "Prosentrabatt" - -# @ woocommerce -#: woocommerce.php:1657 -msgid "Product Discount" -msgstr "Enkeltvarerabatt" - -# @ woocommerce -#: woocommerce.php:1658 -msgid "Product % Discount" -msgstr "Prosentrabatt på produktet" - -# @ woocommerce -#: woocommerce.php:1723 -msgid "Action failed. Please refresh the page and retry." -msgstr "Dette gjekk ikkje. Last sida på nytt, og prøv ein gong til." - diff --git a/i18n/languages/woocommerce-pl_PL.mo b/i18n/languages/woocommerce-pl_PL.mo deleted file mode 100644 index 3ffdd74923e..00000000000 Binary files a/i18n/languages/woocommerce-pl_PL.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-pl_PL.po b/i18n/languages/woocommerce-pl_PL.po deleted file mode 100644 index 4f4eee12c98..00000000000 --- a/i18n/languages/woocommerce-pl_PL.po +++ /dev/null @@ -1,13863 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce v2.0.0\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-01-09 09:36:51+00:00\n" -"PO-Revision-Date: 2013-03-04 09:37:51+0000\n" -"Last-Translator: Ramon van Belzen \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Poedit 1.5.5\n" -"X-Poedit-Language: \n" -"X-Poedit-Country: \n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n" -"X-Poedit-Basepath: ../../\n" -"X-Poedit-Bookmarks: \n" -"X-Poedit-SearchPath-0: .\n" -"X-Textdomain-Support: yes" - -#: assets/js/admin/editor_plugin_lang.php:5 -#@ woocommerce -msgid "Insert Shortcode" -msgstr "" - -#: assets/js/admin/editor_plugin_lang.php:6 -#, fuzzy -#@ woocommerce -msgid "Product price/cart button" -msgstr "Opis produktu" - -#: assets/js/admin/editor_plugin_lang.php:7 -#, fuzzy -#@ woocommerce -msgid "Product by SKU/ID" -msgstr "SKU produktu:" - -#: assets/js/admin/editor_plugin_lang.php:8 -#, fuzzy -#@ woocommerce -msgid "Products by SKU/ID" -msgstr "SKU produktu:" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:116 -#: assets/js/admin/editor_plugin_lang.php:9 -#, fuzzy -#@ woocommerce -msgid "Product categories" -msgstr "Kategorie produktów" - -#: assets/js/admin/editor_plugin_lang.php:10 -#, fuzzy -#@ woocommerce -msgid "Products by category slug" -msgstr "Fraza kategorii produktów" - -#: assets/js/admin/editor_plugin_lang.php:11 -#, fuzzy -#@ woocommerce -msgid "Recent products" -msgstr "Nowe produkty" - -#: assets/js/admin/editor_plugin_lang.php:12 -#, fuzzy -#@ woocommerce -msgid "Featured products" -msgstr "Polecane Produkty" - -#: assets/js/admin/editor_plugin_lang.php:13 -#, fuzzy -#@ woocommerce -msgid "Shop Messages" -msgstr "Strony Sklepu" - -#: admin/woocommerce-admin-content.php:45 -#: admin/woocommerce-admin-settings.php:182 -#: assets/js/admin/editor_plugin_lang.php:14 -#@ woocommerce -msgid "Pages" -msgstr "Strony" - -#: admin/woocommerce-admin-install.php:195 -#: admin/woocommerce-admin-status.php:277 -#: assets/js/admin/editor_plugin_lang.php:15 -#: classes/widgets/class-wc-widget-cart.php:61 -#@ woocommerce -msgid "Cart" -msgstr "Koszyk" - -#: admin/settings/settings-init.php:114 -#: admin/woocommerce-admin-install.php:198 -#: admin/woocommerce-admin-status.php:281 -#: assets/js/admin/editor_plugin_lang.php:16 -#@ woocommerce -msgid "Checkout" -msgstr "Zamówienie" - -#: assets/js/admin/editor_plugin_lang.php:17 -#, fuzzy -#@ woocommerce -msgid "Order tracking" -msgstr "sledzenie-zamowienia" - -#: admin/woocommerce-admin-install.php:201 -#: admin/woocommerce-admin-status.php:293 -#: assets/js/admin/editor_plugin_lang.php:18 -#: templates/checkout/thankyou.php:30 -#@ woocommerce -msgid "My Account" -msgstr "Moje konto" - -#: admin/woocommerce-admin-status.php:297 -#: assets/js/admin/editor_plugin_lang.php:19 -#, fuzzy -#@ woocommerce -msgid "Edit Address" -msgstr "Edytuj adres" - -#: admin/woocommerce-admin-install.php:213 -#: admin/woocommerce-admin-status.php:305 -#: assets/js/admin/editor_plugin_lang.php:20 -#@ woocommerce -msgid "Change Password" -msgstr "Zmień hasło" - -#: admin/woocommerce-admin-install.php:210 -#: admin/woocommerce-admin-status.php:301 -#: assets/js/admin/editor_plugin_lang.php:21 -#: woocommerce.php:1031 -#: woocommerce.php:1032 -#@ woocommerce -msgid "View Order" -msgstr "Podgląd zamówienia" - -#: admin/woocommerce-admin-status.php:285 -#: assets/js/admin/editor_plugin_lang.php:22 -#: templates/checkout/thankyou.php:28 -#: templates/myaccount/my-orders.php:71 -#@ woocommerce -msgid "Pay" -msgstr "Płać" - -#: assets/js/admin/editor_plugin_lang.php:23 -#@ woocommerce -msgid "Thankyou" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:421 -#: classes/emails/class-wc-email-customer-completed-order.php:135 -#: classes/emails/class-wc-email-customer-invoice.php:138 -#: classes/emails/class-wc-email-new-order.php:115 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:63 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:57 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:158 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:119 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:77 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:75 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:52 -#@ woocommerce -msgid "Enable/Disable" -msgstr "Włącz/Wyłącz" - -#: classes/abstracts/abstract-wc-email.php:423 -#: classes/emails/class-wc-email-customer-completed-order.php:137 -#: classes/emails/class-wc-email-customer-invoice.php:140 -#: classes/emails/class-wc-email-new-order.php:117 -#, fuzzy -#@ woocommerce -msgid "Enable this email notification" -msgstr "Włącz powiadomienia o niskim stanie magazynowym" - -#: classes/abstracts/abstract-wc-email.php:427 -#: classes/emails/class-wc-email-customer-invoice.php:144 -#, fuzzy -#@ woocommerce -msgid "Email subject" -msgstr "E-maile" - -#: classes/abstracts/abstract-wc-email.php:429 -#: classes/abstracts/abstract-wc-email.php:436 -#: classes/emails/class-wc-email-customer-completed-order.php:143 -#: classes/emails/class-wc-email-customer-completed-order.php:150 -#: classes/emails/class-wc-email-customer-completed-order.php:157 -#: classes/emails/class-wc-email-customer-completed-order.php:164 -#: classes/emails/class-wc-email-customer-invoice.php:146 -#: classes/emails/class-wc-email-customer-invoice.php:153 -#: classes/emails/class-wc-email-customer-invoice.php:160 -#: classes/emails/class-wc-email-customer-invoice.php:167 -#, php-format -#@ woocommerce -msgid "Defaults to %s" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:434 -#: classes/emails/class-wc-email-customer-invoice.php:151 -#, fuzzy -#@ woocommerce -msgid "Email heading" -msgstr "Wyślij fakturę" - -#: classes/abstracts/abstract-wc-email.php:441 -#: classes/emails/class-wc-email-customer-completed-order.php:169 -#: classes/emails/class-wc-email-customer-invoice.php:172 -#: classes/emails/class-wc-email-new-order.php:142 -#, fuzzy -#@ woocommerce -msgid "Email type" -msgstr "Szablon maila" - -#: classes/abstracts/abstract-wc-email.php:443 -#: classes/emails/class-wc-email-customer-completed-order.php:171 -#: classes/emails/class-wc-email-customer-invoice.php:174 -#: classes/emails/class-wc-email-new-order.php:144 -#@ woocommerce -msgid "Choose which format of email to send." -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:447 -#: classes/emails/class-wc-email-customer-completed-order.php:175 -#: classes/emails/class-wc-email-customer-invoice.php:178 -#: classes/emails/class-wc-email-new-order.php:148 -#@ woocommerce -msgid "Plain text" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:448 -#: classes/emails/class-wc-email-customer-completed-order.php:176 -#: classes/emails/class-wc-email-customer-invoice.php:179 -#: classes/emails/class-wc-email-new-order.php:149 -#@ woocommerce -msgid "HTML" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:449 -#: classes/emails/class-wc-email-customer-completed-order.php:177 -#: classes/emails/class-wc-email-customer-invoice.php:180 -#: classes/emails/class-wc-email-new-order.php:150 -#@ woocommerce -msgid "Multipart" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:485 -#: classes/abstracts/abstract-wc-email.php:506 -#@ woocommerce -msgid "Could not write to template file." -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:533 -#@ woocommerce -msgid "Template file copied to theme." -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:542 -#@ woocommerce -msgid "Template file deleted from theme." -msgstr "" - -#: admin/includes/welcome.php:146 -#: admin/woocommerce-admin-content.php:41 -#: admin/woocommerce-admin-init.php:86 -#: admin/woocommerce-admin-status.php:252 -#: classes/abstracts/abstract-wc-email.php:550 -#: classes/abstracts/abstract-wc-integration.php:30 -#: classes/abstracts/abstract-wc-settings-api.php:39 -#@ woocommerce -msgid "Settings" -msgstr "Ustawienia" - -#: classes/abstracts/abstract-wc-email.php:562 -#, fuzzy -#@ woocommerce -msgid "HTML template" -msgstr "Szablon maila" - -#: classes/abstracts/abstract-wc-email.php:563 -#, fuzzy -#@ woocommerce -msgid "Plain text template" -msgstr "Szablon maila" - -#: classes/abstracts/abstract-wc-email.php:582 -#, fuzzy -#@ woocommerce -msgid "Delete template file" -msgstr "Usuń rzecz" - -#: classes/abstracts/abstract-wc-email.php:585 -#, php-format -#@ woocommerce -msgid "This template has been overridden by your theme and can be found in: %s." -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:600 -#@ woocommerce -msgid "Copy file to theme" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:603 -#, php-format -#@ woocommerce -msgid "To override and edit this email template copy %s to your theme folder: %s." -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:614 -#, fuzzy -#@ woocommerce -msgid "File was not found." -msgstr "Plik nie znaleziony" - -#: classes/abstracts/abstract-wc-email.php:639 -#, fuzzy -#@ woocommerce -msgid "View template" -msgstr "Szablon maila" - -#: classes/abstracts/abstract-wc-email.php:640 -#, fuzzy -#@ woocommerce -msgid "Hide template" -msgstr "Szablon maila" - -#: classes/abstracts/abstract-wc-email.php:651 -#, fuzzy -#@ woocommerce -msgid "Are you sure you want to delete this template file?" -msgstr "Czy na pewno chcesz usunąć ten atrybut?" - -#: admin/post-types/product.php:262 -#: admin/post-types/product.php:641 -#: admin/post-types/product.php:928 -#: admin/post-types/writepanels/writepanel-product_data.php:231 -#: classes/abstracts/abstract-wc-product.php:545 -#: classes/abstracts/abstract-wc-product.php:550 -#: classes/abstracts/abstract-wc-product.php:569 -#@ woocommerce -msgid "In stock" -msgstr "Na stanie" - -#: classes/abstracts/abstract-wc-product.php:550 -#, php-format -#@ woocommerce -msgid "Only %s left in stock" -msgstr "" - -#: classes/abstracts/abstract-wc-product.php:553 -#, php-format -#@ woocommerce -msgid "%s in stock" -msgstr "%s w magazynie" - -#: classes/abstracts/abstract-wc-product.php:560 -#@ woocommerce -msgid "(backorders allowed)" -msgstr "(zamówienia oczekujące dozwolone)" - -#: classes/abstracts/abstract-wc-product.php:566 -#: classes/abstracts/abstract-wc-product.php:579 -#: templates/cart/cart.php:76 -#@ woocommerce -msgid "Available on backorder" -msgstr "Produkt dostępny na zamówienie" - -#: admin/post-types/product.php:264 -#: admin/post-types/product.php:642 -#: admin/post-types/product.php:929 -#: admin/post-types/writepanels/writepanel-product_data.php:232 -#: admin/woocommerce-admin-reports.php:2103 -#: classes/abstracts/abstract-wc-product.php:572 -#: classes/abstracts/abstract-wc-product.php:582 -#: classes/abstracts/abstract-wc-product.php:586 -#@ woocommerce -msgid "Out of stock" -msgstr "Brak w magazynie" - -#: classes/abstracts/abstract-wc-product.php:849 -#: classes/abstracts/abstract-wc-product.php:855 -#: classes/class-wc-cart.php:1743 -#: classes/class-wc-order.php:863 -#: classes/class-wc-product-variable.php:274 -#: classes/class-wc-product-variable.php:283 -#: classes/class-wc-product-variation.php:246 -#@ woocommerce -msgid "Free!" -msgstr "Za darmo!" - -#: classes/abstracts/abstract-wc-product.php:873 -#@ woocommerce -msgctxt "min_price" -msgid "From:" -msgstr "Od:" - -#: classes/abstracts/abstract-wc-product.php:965 -#: templates/single-product-reviews.php:43 -#, php-format -#@ woocommerce -msgid "Rated %s out of 5" -msgstr "Oceniony %s na 5." - -#: admin/woocommerce-admin-dashboard.php:279 -#: classes/abstracts/abstract-wc-product.php:967 -#: templates/single-product/review.php:27 -#: templates/single-product-reviews.php:43 -#@ woocommerce -msgid "out of 5" -msgstr "z 5" - -#: classes/class-wc-coupon.php:447 -#, php-format -#@ woocommerce -msgid "Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from your order." -msgstr "" - -#: classes/class-wc-coupon.php:450 -#, php-format -#@ woocommerce -msgid "Sorry, it seems the coupon \"%s\" is not yours - it has now been removed from your order." -msgstr "" - -#: classes/class-wc-cart.php:464 -#, php-format -#@ woocommerce -msgid "Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in stock). Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "" - -#: classes/class-wc-cart.php:483 -#: classes/class-wc-cart.php:492 -#, fuzzy, php-format -#@ woocommerce -msgid "Sorry, we do not have enough \"%s\" in stock to fulfil your order (%s in stock). Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Przepraszamy, nie posiadamy wystarczających zapasów magazynowych, aby zrealizować zamówienie (Posiadamy %s szt.). Prosimy o edycję koszyka i ponowną próbę. Przepraszamy za niedogodności." - -#: classes/class-wc-cart.php:527 -#, fuzzy, php-format -#@ woocommerce -msgid "Sorry, we do not have enough \"%s\" in stock to fulfil your order right now. Please try again in %d minutes or edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Przepraszamy, nie posiadamy wystarczających zapasów magazynowych, aby zrealizować zamówienie. Prosimy o edycję koszyka i ponowną próbę. Przepraszamy za niedogodności." - -#: classes/class-wc-cart.php:537 -#, fuzzy, php-format -#@ woocommerce -msgid "Sorry, \"%s\" is not in stock. Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Przepraszamy, nie posiadamy wystarczających zapasów magazynowych, aby zrealizować zamówienie. Prosimy o edycję koszyka i ponowną próbę. Przepraszamy za niedogodności." - -#: classes/class-wc-cart.php:818 -#, fuzzy, php-format -#@ woocommerce -msgid "Sorry, "%s" cannot be purchased." -msgstr "Ten produkt nie może zostać kupiony." - -#: classes/class-wc-cart.php:825 -#, fuzzy, php-format -#@ woocommerce -msgid "You cannot add "%s" to the cart because the product is out of stock." -msgstr "Nie możesz dodać produktu do koszyka, ponieważ zabrakło go w magazynie." - -#: classes/class-wc-cart.php:830 -#, fuzzy, php-format -#@ woocommerce -msgid "You cannot add that amount of "%s" to the cart because there is not enough stock (%s remaining)." -msgstr "Nie możesz dodać takiej ilości do koszyka, ponieważ nie ma wystarczającej ilości w magazynie. Mamy %s w magazynie." - -#: classes/class-wc-cart.php:842 -#: classes/class-wc-cart.php:856 -#: classes/class-wc-cart.php:864 -#: templates/cart/mini-cart.php:68 -#: woocommerce-functions.php:470 -#: woocommerce.php:1176 -#@ woocommerce -msgid "View Cart →" -msgstr "Zobacz koszyk →" - -#: classes/class-wc-cart.php:842 -#@ woocommerce -msgid "You already have this item in your cart." -msgstr "" - -#: classes/class-wc-cart.php:856 -#: classes/class-wc-cart.php:864 -#, php-format -#@ woocommerce -msgid "%s You cannot add that amount to the cart — we have %s in stock and you already have %s in your cart." -msgstr "" - -#: classes/class-wc-cart.php:1755 -#@ woocommerce -msgid "via" -msgstr "przez" - -#: classes/class-wc-coupon.php:444 -#: classes/class-wc-coupon.php:494 -#@ woocommerce -msgid "Coupon does not exist!" -msgstr "Kupon nie istnieje!" - -#: classes/class-wc-checkout.php:64 -#@ woocommerce -msgid "Account username" -msgstr "Konto użytkownika" - -#: classes/class-wc-checkout.php:65 -#@ woocommerce -msgctxt "placeholder" -msgid "Username" -msgstr "" - -#: classes/class-wc-checkout.php:72 -#: classes/class-wc-checkout.php:79 -#@ woocommerce -msgid "Account password" -msgstr "Hasło" - -#: classes/class-wc-checkout.php:73 -#: classes/class-wc-checkout.php:80 -#@ woocommerce -msgctxt "placeholder" -msgid "Password" -msgstr "" - -#: admin/post-types/shop_order.php:48 -#: admin/post-types/writepanels/writepanels-init.php:71 -#: classes/class-wc-checkout.php:89 -#@ woocommerce -msgid "Order Notes" -msgstr "Uwagi do zamówienia" - -#: classes/class-wc-checkout.php:90 -#@ woocommerce -msgctxt "placeholder" -msgid "Notes about your order, e.g. special notes for delivery." -msgstr "" - -#: classes/class-wc-checkout.php:152 -#, php-format -#@ woocommerce -msgid "Order – %s" -msgstr "" - -#: classes/class-wc-checkout.php:152 -#, php-format -#@ woocommerce -msgctxt "Order date parsed by strftime" -msgid "%b %d, %Y @ %I:%M %p" -msgstr "" - -#: classes/class-wc-checkout.php:276 -#@ woocommerce -msgid "Backordered" -msgstr "" - -#: classes/class-wc-checkout.php:386 -#, php-format -#@ woocommerce -msgid "Sorry, your session has expired. Return to homepage →" -msgstr "Przepraszamy, Twoja sesja wygasła. Wróć do strony głównej →" - -#: classes/class-wc-checkout.php:438 -#: woocommerce-functions.php:1632 -#@ woocommerce -msgid "is a required field." -msgstr "jest wymaganym polem." - -#: classes/class-wc-checkout.php:451 -#, php-format -#@ woocommerce -msgid "(%s) is not a valid postcode/ZIP." -msgstr "" - -#: classes/class-wc-checkout.php:472 -#@ woocommerce -msgid "is not valid. Please enter one of the following:" -msgstr "" - -#: classes/class-wc-checkout.php:480 -#@ woocommerce -msgid "is not a valid number." -msgstr "nie jest poprawnym numerem." - -#: classes/class-wc-checkout.php:487 -#@ woocommerce -msgid "is not a valid email address." -msgstr "nie jest poprawnym adresem e-mail." - -#: classes/class-wc-checkout.php:543 -#@ woocommerce -msgid "Please enter an account username." -msgstr "Proszę wpisać nazwę użytkownika." - -#: classes/class-wc-checkout.php:547 -#@ woocommerce -msgid "Invalid email/username." -msgstr "Błędny e-mail lub nazwa użytkownika." - -#: classes/class-wc-checkout.php:550 -#@ woocommerce -msgid "An account is already registered with that username. Please choose another." -msgstr "Konto z taką nazwą użytkownika już istnieje. Wybierz inną." - -#: classes/class-wc-checkout.php:560 -#@ woocommerce -msgid "Please enter an account password." -msgstr "Proszę wpisać hasło." - -#: classes/class-wc-checkout.php:563 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:85 -#: woocommerce-functions.php:731 -#: woocommerce-functions.php:1562 -#@ woocommerce -msgid "Passwords do not match." -msgstr "Hasła się nie zgadzają." - -#: classes/class-wc-checkout.php:567 -#@ woocommerce -msgid "An account is already registered with your email address. Please login." -msgstr "Konto z tym adresem e-mail już istnieje. Zaloguj się." - -#: classes/class-wc-checkout.php:573 -#@ woocommerce -msgid "You must accept our Terms & Conditions." -msgstr "Musisz zaakceptować nasz Regulamin." - -#: classes/class-wc-checkout.php:582 -#@ woocommerce -msgid "Invalid shipping method." -msgstr "Błędny sposób wysyłki." - -#: classes/class-wc-checkout.php:595 -#@ woocommerce -msgid "Invalid payment method." -msgstr "Błędny sposób płatności." - -#: classes/class-wc-checkout.php:635 -#: woocommerce-core-functions.php:2485 -#: woocommerce-core-functions.php:2488 -#: woocommerce-functions.php:703 -#: woocommerce-functions.php:705 -#: woocommerce-functions.php:708 -#: woocommerce-functions.php:720 -#: woocommerce-functions.php:722 -#: woocommerce-functions.php:725 -#: woocommerce-functions.php:759 -#@ woocommerce -msgid "ERROR" -msgstr "BŁĄD" - -#: classes/class-wc-checkout.php:635 -#: woocommerce-functions.php:759 -#@ woocommerce -msgid "Couldn’t register you… please contact us if you continue to have problems." -msgstr "" - -#: classes/class-wc-countries.php:37 -#@ woocommerce -msgid "Afghanistan" -msgstr "Afganistan" - -#: classes/class-wc-countries.php:38 -#@ woocommerce -msgid "Åland Islands" -msgstr "" - -#: classes/class-wc-countries.php:39 -#@ woocommerce -msgid "Albania" -msgstr "Albania" - -#: classes/class-wc-countries.php:40 -#@ woocommerce -msgid "Algeria" -msgstr "Algieria" - -#: i18n/states/US.php:67 -#@ woocommerce -msgid "American Samoa" -msgstr "Samoa Amerykańskie" - -#: classes/class-wc-countries.php:41 -#@ woocommerce -msgid "Andorra" -msgstr "Andora" - -#: classes/class-wc-countries.php:42 -#@ woocommerce -msgid "Angola" -msgstr "Angola" - -#: classes/class-wc-countries.php:43 -#@ woocommerce -msgid "Anguilla" -msgstr "Anguilla" - -#: classes/class-wc-countries.php:44 -#@ woocommerce -msgid "Antarctica" -msgstr "Antarktyda" - -#: classes/class-wc-countries.php:45 -#@ woocommerce -msgid "Antigua and Barbuda" -msgstr "Antigua i Barbuda" - -#: classes/class-wc-countries.php:46 -#@ woocommerce -msgid "Argentina" -msgstr "Argentyna" - -#: classes/class-wc-countries.php:47 -#@ woocommerce -msgid "Armenia" -msgstr "Armenia" - -#: classes/class-wc-countries.php:48 -#@ woocommerce -msgid "Aruba" -msgstr "Aruba" - -#: classes/class-wc-countries.php:49 -#@ woocommerce -msgid "Australia" -msgstr "Australia" - -#: classes/class-wc-countries.php:50 -#@ woocommerce -msgid "Austria" -msgstr "Austria" - -#: classes/class-wc-countries.php:51 -#@ woocommerce -msgid "Azerbaijan" -msgstr "Azerbejdżan" - -#: classes/class-wc-countries.php:52 -#@ woocommerce -msgid "Bahamas" -msgstr "Bahamy" - -#: classes/class-wc-countries.php:53 -#@ woocommerce -msgid "Bahrain" -msgstr "Bahrajn" - -#: classes/class-wc-countries.php:54 -#@ woocommerce -msgid "Bangladesh" -msgstr "Bangladesz" - -#: classes/class-wc-countries.php:55 -#@ woocommerce -msgid "Barbados" -msgstr "Barbados" - -#: classes/class-wc-countries.php:56 -#@ woocommerce -msgid "Belarus" -msgstr "Białoruś" - -#: classes/class-wc-countries.php:57 -#@ woocommerce -msgid "Belgium" -msgstr "Belgia" - -#: classes/class-wc-countries.php:59 -#@ woocommerce -msgid "Belize" -msgstr "Belize" - -#: classes/class-wc-countries.php:60 -#@ woocommerce -msgid "Benin" -msgstr "Benin" - -#: classes/class-wc-countries.php:61 -#@ woocommerce -msgid "Bermuda" -msgstr "Bermudy" - -#: classes/class-wc-countries.php:62 -#@ woocommerce -msgid "Bhutan" -msgstr "Bhutan" - -#: classes/class-wc-countries.php:63 -#@ woocommerce -msgid "Bolivia" -msgstr "Boliwia" - -#: classes/class-wc-countries.php:64 -#@ woocommerce -msgid "Bonaire, Saint Eustatius and Saba" -msgstr "" - -#: classes/class-wc-countries.php:65 -#@ woocommerce -msgid "Bosnia and Herzegovina" -msgstr "Bośnia i Hercegowina" - -#: classes/class-wc-countries.php:66 -#@ woocommerce -msgid "Botswana" -msgstr "Botswana" - -#: classes/class-wc-countries.php:67 -#, fuzzy -#@ woocommerce -msgid "Bouvet Island" -msgstr "Rhode Island" - -#: classes/class-wc-countries.php:68 -#@ woocommerce -msgid "Brazil" -msgstr "Brazylia" - -#: classes/class-wc-countries.php:69 -#@ woocommerce -msgid "British Indian Ocean Territory" -msgstr "Brytyjskie Terytorium Oceanu Indyjskiego" - -#: classes/class-wc-countries.php:70 -#@ woocommerce -msgid "British Virgin Islands" -msgstr "Brytyjskie Wyspy Dziewicze" - -#: classes/class-wc-countries.php:71 -#@ woocommerce -msgid "Brunei" -msgstr "Brunei" - -#: classes/class-wc-countries.php:72 -#@ woocommerce -msgid "Bulgaria" -msgstr "Bułgaria" - -#: classes/class-wc-countries.php:73 -#@ woocommerce -msgid "Burkina Faso" -msgstr "Burkina Faso" - -#: classes/class-wc-countries.php:74 -#@ woocommerce -msgid "Burundi" -msgstr "Burundi" - -#: classes/class-wc-countries.php:75 -#@ woocommerce -msgid "Cambodia" -msgstr "Kambodża" - -#: classes/class-wc-countries.php:76 -#@ woocommerce -msgid "Cameroon" -msgstr "Kamerun" - -#: classes/class-wc-countries.php:77 -#@ woocommerce -msgid "Canada" -msgstr "Kanada" - -#: classes/class-wc-countries.php:78 -#@ woocommerce -msgid "Cape Verde" -msgstr "Republika Zielonego Przylądka" - -#: classes/class-wc-countries.php:79 -#@ woocommerce -msgid "Cayman Islands" -msgstr "Kajmany" - -#: classes/class-wc-countries.php:80 -#@ woocommerce -msgid "Central African Republic" -msgstr "Republika Południowej Afryki" - -#: classes/class-wc-countries.php:81 -#@ woocommerce -msgid "Chad" -msgstr "Czad" - -#: classes/class-wc-countries.php:82 -#@ woocommerce -msgid "Chile" -msgstr "Chile" - -#: classes/class-wc-countries.php:83 -#@ woocommerce -msgid "China" -msgstr "Chiny" - -#: classes/class-wc-countries.php:84 -#@ woocommerce -msgid "Christmas Island" -msgstr "Wyspa Wielkanocna" - -#: classes/class-wc-countries.php:85 -#@ woocommerce -msgid "Cocos (Keeling) Islands" -msgstr "Wyspy Kokosowe" - -#: classes/class-wc-countries.php:86 -#@ woocommerce -msgid "Colombia" -msgstr "Kolumbia" - -#: classes/class-wc-countries.php:87 -#@ woocommerce -msgid "Comoros" -msgstr "Komory" - -#: classes/class-wc-countries.php:88 -#@ woocommerce -msgid "Congo (Brazzaville)" -msgstr "Kongo" - -#: classes/class-wc-countries.php:89 -#@ woocommerce -msgid "Congo (Kinshasa)" -msgstr "Demokratyczna Republika Konga" - -#: classes/class-wc-countries.php:90 -#@ woocommerce -msgid "Cook Islands" -msgstr "Wyspy Cooka" - -#: classes/class-wc-countries.php:91 -#@ woocommerce -msgid "Costa Rica" -msgstr "Kostaryka" - -#: classes/class-wc-countries.php:92 -#@ woocommerce -msgid "Croatia" -msgstr "Chorwacja" - -#: classes/class-wc-countries.php:93 -#@ woocommerce -msgid "Cuba" -msgstr "Kuba" - -#: classes/class-wc-countries.php:94 -#@ woocommerce -msgid "CuraÇao" -msgstr "" - -#: classes/class-wc-countries.php:95 -#@ woocommerce -msgid "Cyprus" -msgstr "Cypr" - -#: classes/class-wc-countries.php:96 -#@ woocommerce -msgid "Czech Republic" -msgstr "Czechy" - -#: classes/class-wc-countries.php:97 -#@ woocommerce -msgid "Denmark" -msgstr "Dania" - -#: classes/class-wc-countries.php:98 -#@ woocommerce -msgid "Djibouti" -msgstr "Dżibuti" - -#: classes/class-wc-countries.php:99 -#@ woocommerce -msgid "Dominica" -msgstr "Dominika" - -#: classes/class-wc-countries.php:100 -#@ woocommerce -msgid "Dominican Republic" -msgstr "Dominikana" - -#: classes/class-wc-countries.php:101 -#@ woocommerce -msgid "Ecuador" -msgstr "Ekwador" - -#: classes/class-wc-countries.php:102 -#@ woocommerce -msgid "Egypt" -msgstr "Egipt" - -#: classes/class-wc-countries.php:103 -#@ woocommerce -msgid "El Salvador" -msgstr "Salwador" - -#: classes/class-wc-countries.php:104 -#@ woocommerce -msgid "Equatorial Guinea" -msgstr "Gwinea Równikowa" - -#: classes/class-wc-countries.php:105 -#@ woocommerce -msgid "Eritrea" -msgstr "Erytrea" - -#: classes/class-wc-countries.php:106 -#@ woocommerce -msgid "Estonia" -msgstr "Estonia" - -#: classes/class-wc-countries.php:107 -#@ woocommerce -msgid "Ethiopia" -msgstr "Etiopia" - -#: classes/class-wc-countries.php:108 -#@ woocommerce -msgid "Falkland Islands" -msgstr "Falklandy" - -#: classes/class-wc-countries.php:109 -#@ woocommerce -msgid "Faroe Islands" -msgstr "Wyspy Owcze" - -#: classes/class-wc-countries.php:110 -#@ woocommerce -msgid "Fiji" -msgstr "Fidżi" - -#: classes/class-wc-countries.php:111 -#@ woocommerce -msgid "Finland" -msgstr "Finlandia" - -#: classes/class-wc-countries.php:112 -#@ woocommerce -msgid "France" -msgstr "Francja" - -#: classes/class-wc-countries.php:113 -#@ woocommerce -msgid "French Guiana" -msgstr "Gujana Francuska" - -#: classes/class-wc-countries.php:114 -#@ woocommerce -msgid "French Polynesia" -msgstr "Polinezja Francuska" - -#: classes/class-wc-countries.php:115 -#@ woocommerce -msgid "French Southern Territories" -msgstr "Francuskie Terytoria Południowe i Antarktyczne" - -#: classes/class-wc-countries.php:116 -#@ woocommerce -msgid "Gabon" -msgstr "Gabon" - -#: classes/class-wc-countries.php:117 -#@ woocommerce -msgid "Gambia" -msgstr "Gambia" - -#: classes/class-wc-countries.php:118 -#: i18n/states/US.php:23 -#@ woocommerce -msgid "Georgia" -msgstr "Gruzja" - -#: classes/class-wc-countries.php:119 -#@ woocommerce -msgid "Germany" -msgstr "Niemcy" - -#: classes/class-wc-countries.php:120 -#@ woocommerce -msgid "Ghana" -msgstr "Ghana" - -#: classes/class-wc-countries.php:121 -#@ woocommerce -msgid "Gibraltar" -msgstr "Gibraltar" - -#: classes/class-wc-countries.php:122 -#@ woocommerce -msgid "Greece" -msgstr "Grecja" - -#: classes/class-wc-countries.php:123 -#@ woocommerce -msgid "Greenland" -msgstr "Grenlandia" - -#: classes/class-wc-countries.php:124 -#@ woocommerce -msgid "Grenada" -msgstr "Grenada" - -#: classes/class-wc-countries.php:125 -#@ woocommerce -msgid "Guadeloupe" -msgstr "Gwadelupa" - -#: i18n/states/US.php:68 -#@ woocommerce -msgid "Guam" -msgstr "Guam" - -#: classes/class-wc-countries.php:126 -#@ woocommerce -msgid "Guatemala" -msgstr "Gwatemala" - -#: classes/class-wc-countries.php:127 -#@ woocommerce -msgid "Guernsey" -msgstr "Guernsey" - -#: classes/class-wc-countries.php:128 -#@ woocommerce -msgid "Guinea" -msgstr "Gwinea" - -#: classes/class-wc-countries.php:129 -#@ woocommerce -msgid "Guinea-Bissau" -msgstr "Gwinea Bissau" - -#: classes/class-wc-countries.php:130 -#@ woocommerce -msgid "Guyana" -msgstr "Gujana" - -#: classes/class-wc-countries.php:131 -#@ woocommerce -msgid "Haiti" -msgstr "Haiti" - -#: classes/class-wc-countries.php:132 -#@ woocommerce -msgid "Heard Island and McDonald Islands" -msgstr "" - -#: classes/class-wc-countries.php:133 -#@ woocommerce -msgid "Honduras" -msgstr "Honduras" - -#: classes/class-wc-countries.php:134 -#@ woocommerce -msgid "Hong Kong" -msgstr "Hongkong" - -#: classes/class-wc-countries.php:135 -#@ woocommerce -msgid "Hungary" -msgstr "Węgry" - -#: classes/class-wc-countries.php:136 -#@ woocommerce -msgid "Iceland" -msgstr "Islandia" - -#: classes/class-wc-countries.php:137 -#@ woocommerce -msgid "India" -msgstr "Indie" - -#: classes/class-wc-countries.php:138 -#@ woocommerce -msgid "Indonesia" -msgstr "Indonezja" - -#: classes/class-wc-countries.php:139 -#@ woocommerce -msgid "Iran" -msgstr "Iran" - -#: classes/class-wc-countries.php:140 -#@ woocommerce -msgid "Iraq" -msgstr "Irak" - -#: classes/class-wc-countries.php:141 -#@ woocommerce -msgid "Republic of Ireland" -msgstr "" - -#: classes/class-wc-countries.php:142 -#@ woocommerce -msgid "Isle of Man" -msgstr "Wyspa Man" - -#: classes/class-wc-countries.php:143 -#@ woocommerce -msgid "Israel" -msgstr "Izrael" - -#: classes/class-wc-countries.php:144 -#@ woocommerce -msgid "Italy" -msgstr "Włochy" - -#: classes/class-wc-countries.php:145 -#@ woocommerce -msgid "Ivory Coast" -msgstr "Wybrzeże Kości Słoniowej" - -#: classes/class-wc-countries.php:146 -#@ woocommerce -msgid "Jamaica" -msgstr "Jamajka" - -#: classes/class-wc-countries.php:147 -#@ woocommerce -msgid "Japan" -msgstr "Japonia" - -#: classes/class-wc-countries.php:148 -#@ woocommerce -msgid "Jersey" -msgstr "Jersey" - -#: classes/class-wc-countries.php:149 -#@ woocommerce -msgid "Jordan" -msgstr "Jordania" - -#: classes/class-wc-countries.php:150 -#@ woocommerce -msgid "Kazakhstan" -msgstr "Kazachstan" - -#: classes/class-wc-countries.php:151 -#@ woocommerce -msgid "Kenya" -msgstr "Kenia" - -#: classes/class-wc-countries.php:152 -#@ woocommerce -msgid "Kiribati" -msgstr "Kiribati" - -#: classes/class-wc-countries.php:153 -#@ woocommerce -msgid "Kuwait" -msgstr "Kuwejt" - -#: classes/class-wc-countries.php:154 -#@ woocommerce -msgid "Kyrgyzstan" -msgstr "Kirgistan" - -#: classes/class-wc-countries.php:155 -#@ woocommerce -msgid "Laos" -msgstr "Laos" - -#: classes/class-wc-countries.php:156 -#@ woocommerce -msgid "Latvia" -msgstr "Łotwa" - -#: classes/class-wc-countries.php:157 -#@ woocommerce -msgid "Lebanon" -msgstr "Liban" - -#: classes/class-wc-countries.php:158 -#@ woocommerce -msgid "Lesotho" -msgstr "Lesotho" - -#: classes/class-wc-countries.php:159 -#@ woocommerce -msgid "Liberia" -msgstr "Liberia" - -#: classes/class-wc-countries.php:160 -#@ woocommerce -msgid "Libya" -msgstr "Libia" - -#: classes/class-wc-countries.php:161 -#@ woocommerce -msgid "Liechtenstein" -msgstr "Liechtenstein" - -#: classes/class-wc-countries.php:162 -#@ woocommerce -msgid "Lithuania" -msgstr "Litwa" - -#: classes/class-wc-countries.php:163 -#@ woocommerce -msgid "Luxembourg" -msgstr "Luksemburg" - -#: classes/class-wc-countries.php:164 -#@ woocommerce -msgid "Macao S.A.R., China" -msgstr "Makau" - -#: classes/class-wc-countries.php:165 -#@ woocommerce -msgid "Macedonia" -msgstr "Macedonia" - -#: classes/class-wc-countries.php:166 -#@ woocommerce -msgid "Madagascar" -msgstr "Madagaskar" - -#: classes/class-wc-countries.php:167 -#@ woocommerce -msgid "Malawi" -msgstr "Malawi" - -#: classes/class-wc-countries.php:168 -#@ woocommerce -msgid "Malaysia" -msgstr "Malezja" - -#: classes/class-wc-countries.php:169 -#@ woocommerce -msgid "Maldives" -msgstr "Malediwy" - -#: classes/class-wc-countries.php:170 -#@ woocommerce -msgid "Mali" -msgstr "Mali" - -#: classes/class-wc-countries.php:171 -#@ woocommerce -msgid "Malta" -msgstr "Malta" - -#: classes/class-wc-countries.php:172 -#@ woocommerce -msgid "Marshall Islands" -msgstr "Wyspy Marshalla" - -#: classes/class-wc-countries.php:173 -#@ woocommerce -msgid "Martinique" -msgstr "Martynika" - -#: classes/class-wc-countries.php:174 -#@ woocommerce -msgid "Mauritania" -msgstr "Mauretania" - -#: classes/class-wc-countries.php:175 -#@ woocommerce -msgid "Mauritius" -msgstr "Mauritius" - -#: classes/class-wc-countries.php:176 -#@ woocommerce -msgid "Mayotte" -msgstr "Majotta" - -#: classes/class-wc-countries.php:177 -#@ woocommerce -msgid "Mexico" -msgstr "Meksyk" - -#: classes/class-wc-countries.php:178 -#@ woocommerce -msgid "Micronesia" -msgstr "Mikronezja" - -#: classes/class-wc-countries.php:179 -#@ woocommerce -msgid "Moldova" -msgstr "Mołdawia" - -#: classes/class-wc-countries.php:180 -#@ woocommerce -msgid "Monaco" -msgstr "Monako" - -#: classes/class-wc-countries.php:181 -#@ woocommerce -msgid "Mongolia" -msgstr "Mongolia" - -#: classes/class-wc-countries.php:182 -#@ woocommerce -msgid "Montenegro" -msgstr "Czarnogóra" - -#: classes/class-wc-countries.php:183 -#@ woocommerce -msgid "Montserrat" -msgstr "Montserrat" - -#: classes/class-wc-countries.php:184 -#@ woocommerce -msgid "Morocco" -msgstr "Maroko" - -#: classes/class-wc-countries.php:185 -#@ woocommerce -msgid "Mozambique" -msgstr "Mozambik" - -#: classes/class-wc-countries.php:186 -#@ woocommerce -msgid "Myanmar" -msgstr "Birma" - -#: classes/class-wc-countries.php:187 -#@ woocommerce -msgid "Namibia" -msgstr "Namibia" - -#: classes/class-wc-countries.php:188 -#@ woocommerce -msgid "Nauru" -msgstr "Nauru" - -#: classes/class-wc-countries.php:189 -#@ woocommerce -msgid "Nepal" -msgstr "Nepal" - -#: classes/class-wc-countries.php:190 -#@ woocommerce -msgid "Netherlands" -msgstr "Holandia" - -#: classes/class-wc-countries.php:191 -#@ woocommerce -msgid "Netherlands Antilles" -msgstr "Antyle Holenderskie" - -#: classes/class-wc-countries.php:192 -#@ woocommerce -msgid "New Caledonia" -msgstr "Nowa Kaledonia" - -#: classes/class-wc-countries.php:193 -#@ woocommerce -msgid "New Zealand" -msgstr "Nowa Zelandia" - -#: classes/class-wc-countries.php:194 -#@ woocommerce -msgid "Nicaragua" -msgstr "Nikaragua" - -#: classes/class-wc-countries.php:195 -#@ woocommerce -msgid "Niger" -msgstr "Niger" - -#: classes/class-wc-countries.php:196 -#@ woocommerce -msgid "Nigeria" -msgstr "Nigeria" - -#: classes/class-wc-countries.php:197 -#@ woocommerce -msgid "Niue" -msgstr "Niue" - -#: classes/class-wc-countries.php:198 -#@ woocommerce -msgid "Norfolk Island" -msgstr "Wyspa Norfolk" - -#: classes/class-wc-countries.php:199 -#@ woocommerce -msgid "North Korea" -msgstr "Północna Korea" - -#: i18n/states/US.php:69 -#@ woocommerce -msgid "Northern Mariana Islands" -msgstr "Mariany Północne" - -#: classes/class-wc-countries.php:200 -#@ woocommerce -msgid "Norway" -msgstr "Norwegia" - -#: classes/class-wc-countries.php:201 -#@ woocommerce -msgid "Oman" -msgstr "Oman" - -#: classes/class-wc-countries.php:202 -#@ woocommerce -msgid "Pakistan" -msgstr "Pakistan" - -#: classes/class-wc-countries.php:203 -#@ woocommerce -msgid "Palestinian Territory" -msgstr "Palestyna" - -#: classes/class-wc-countries.php:204 -#@ woocommerce -msgid "Panama" -msgstr "Panama" - -#: classes/class-wc-countries.php:205 -#@ woocommerce -msgid "Papua New Guinea" -msgstr "Papua-Nowa Gwinea" - -#: classes/class-wc-countries.php:206 -#@ woocommerce -msgid "Paraguay" -msgstr "Paragwaj" - -#: classes/class-wc-countries.php:207 -#@ woocommerce -msgid "Peru" -msgstr "Peru" - -#: classes/class-wc-countries.php:208 -#@ woocommerce -msgid "Philippines" -msgstr "Filipiny" - -#: classes/class-wc-countries.php:209 -#@ woocommerce -msgid "Pitcairn" -msgstr "Pitcairn" - -#: classes/class-wc-countries.php:210 -#@ woocommerce -msgid "Poland" -msgstr "Polska" - -#: classes/class-wc-countries.php:211 -#@ woocommerce -msgid "Portugal" -msgstr "Portugalia" - -#: i18n/states/US.php:70 -#@ woocommerce -msgid "Puerto Rico" -msgstr "Portoryko" - -#: classes/class-wc-countries.php:212 -#@ woocommerce -msgid "Qatar" -msgstr "Katar" - -#: classes/class-wc-countries.php:213 -#@ woocommerce -msgid "Reunion" -msgstr "Reunion" - -#: classes/class-wc-countries.php:214 -#@ woocommerce -msgid "Romania" -msgstr "Rumunia" - -#: classes/class-wc-countries.php:215 -#@ woocommerce -msgid "Russia" -msgstr "Rosja" - -#: classes/class-wc-countries.php:216 -#@ woocommerce -msgid "Rwanda" -msgstr "Rwanda" - -#: classes/class-wc-countries.php:217 -#@ woocommerce -msgid "Saint Barthélemy" -msgstr "" - -#: classes/class-wc-countries.php:218 -#@ woocommerce -msgid "Saint Helena" -msgstr "Wyspa Świętej Heleny" - -#: classes/class-wc-countries.php:219 -#@ woocommerce -msgid "Saint Kitts and Nevis" -msgstr "Saint Kitts i Nevis" - -#: classes/class-wc-countries.php:220 -#@ woocommerce -msgid "Saint Lucia" -msgstr "Saint Lucia" - -#: classes/class-wc-countries.php:221 -#@ woocommerce -msgid "Saint Martin (French part)" -msgstr "Saint-Martin" - -#: classes/class-wc-countries.php:222 -#, fuzzy -#@ woocommerce -msgid "Saint Martin (Dutch part)" -msgstr "Saint-Martin" - -#: classes/class-wc-countries.php:223 -#@ woocommerce -msgid "Saint Pierre and Miquelon" -msgstr "Saint-Pierre i Miquelon" - -#: classes/class-wc-countries.php:224 -#@ woocommerce -msgid "Saint Vincent and the Grenadines" -msgstr "Saint Vincent i Grenadyny" - -#: classes/class-wc-countries.php:225 -#@ woocommerce -msgid "Samoa" -msgstr "Samoa" - -#: classes/class-wc-countries.php:226 -#@ woocommerce -msgid "San Marino" -msgstr "San Marino" - -#: classes/class-wc-countries.php:227 -#@ woocommerce -msgid "São Tomé and Príncipe" -msgstr "" - -#: classes/class-wc-countries.php:228 -#@ woocommerce -msgid "Saudi Arabia" -msgstr "Arabia Saudyjska" - -#: classes/class-wc-countries.php:229 -#@ woocommerce -msgid "Senegal" -msgstr "Senegal" - -#: classes/class-wc-countries.php:230 -#@ woocommerce -msgid "Serbia" -msgstr "Serbia" - -#: classes/class-wc-countries.php:231 -#@ woocommerce -msgid "Seychelles" -msgstr "Seszele" - -#: classes/class-wc-countries.php:232 -#@ woocommerce -msgid "Sierra Leone" -msgstr "Sierra Leone" - -#: classes/class-wc-countries.php:233 -#@ woocommerce -msgid "Singapore" -msgstr "Singapur" - -#: classes/class-wc-countries.php:234 -#@ woocommerce -msgid "Slovakia" -msgstr "Słowacja" - -#: classes/class-wc-countries.php:235 -#@ woocommerce -msgid "Slovenia" -msgstr "Słowenia" - -#: classes/class-wc-countries.php:236 -#@ woocommerce -msgid "Solomon Islands" -msgstr "Wyspy Salomona" - -#: classes/class-wc-countries.php:237 -#@ woocommerce -msgid "Somalia" -msgstr "Somalia" - -#: classes/class-wc-countries.php:238 -#@ woocommerce -msgid "South Africa" -msgstr "Republika Południowej Afryki" - -#: classes/class-wc-countries.php:239 -#@ woocommerce -msgid "South Georgia/Sandwich Islands" -msgstr "Georgia Południowa i Sandwich Południowy" - -#: classes/class-wc-countries.php:240 -#@ woocommerce -msgid "South Korea" -msgstr "Południowa Korea" - -#: classes/class-wc-countries.php:241 -#, fuzzy -#@ woocommerce -msgid "South Sudan" -msgstr "Karolina Południowa" - -#: classes/class-wc-countries.php:242 -#@ woocommerce -msgid "Spain" -msgstr "Hiszpania" - -#: classes/class-wc-countries.php:243 -#@ woocommerce -msgid "Sri Lanka" -msgstr "Sri Lanka" - -#: classes/class-wc-countries.php:244 -#@ woocommerce -msgid "Sudan" -msgstr "Sudan" - -#: classes/class-wc-countries.php:245 -#@ woocommerce -msgid "Suriname" -msgstr "Nazwisko" - -#: classes/class-wc-countries.php:246 -#@ woocommerce -msgid "Svalbard and Jan Mayen" -msgstr "Svalbard i Jan Mayen" - -#: classes/class-wc-countries.php:247 -#@ woocommerce -msgid "Swaziland" -msgstr "Suazi" - -#: classes/class-wc-countries.php:248 -#@ woocommerce -msgid "Sweden" -msgstr "Szwecja" - -#: classes/class-wc-countries.php:249 -#@ woocommerce -msgid "Switzerland" -msgstr "Szwajcaria" - -#: classes/class-wc-countries.php:250 -#@ woocommerce -msgid "Syria" -msgstr "Syria" - -#: classes/class-wc-countries.php:251 -#@ woocommerce -msgid "Taiwan" -msgstr "Tajwan" - -#: classes/class-wc-countries.php:252 -#@ woocommerce -msgid "Tajikistan" -msgstr "Tadżykistan" - -#: classes/class-wc-countries.php:253 -#@ woocommerce -msgid "Tanzania" -msgstr "Tanzania" - -#: classes/class-wc-countries.php:254 -#@ woocommerce -msgid "Thailand" -msgstr "Tajlandia" - -#: classes/class-wc-countries.php:255 -#@ woocommerce -msgid "Timor-Leste" -msgstr "Timor Wschodni" - -#: classes/class-wc-countries.php:256 -#@ woocommerce -msgid "Togo" -msgstr "Togo" - -#: classes/class-wc-countries.php:257 -#@ woocommerce -msgid "Tokelau" -msgstr "Tokelau" - -#: classes/class-wc-countries.php:258 -#@ woocommerce -msgid "Tonga" -msgstr "Tonga" - -#: classes/class-wc-countries.php:259 -#@ woocommerce -msgid "Trinidad and Tobago" -msgstr "Trinidad i Tobago" - -#: classes/class-wc-countries.php:260 -#@ woocommerce -msgid "Tunisia" -msgstr "Tunezja" - -#: classes/class-wc-countries.php:261 -#@ woocommerce -msgid "Turkey" -msgstr "Turcja" - -#: classes/class-wc-countries.php:262 -#@ woocommerce -msgid "Turkmenistan" -msgstr "Turkmenistan" - -#: classes/class-wc-countries.php:263 -#@ woocommerce -msgid "Turks and Caicos Islands" -msgstr "Turks i Caicos" - -#: classes/class-wc-countries.php:264 -#@ woocommerce -msgid "Tuvalu" -msgstr "Tuvalu" - -#: i18n/states/US.php:71 -#@ woocommerce -msgid "US Minor Outlying Islands" -msgstr "Dalekie Wyspy Mniejsze Stanów Zjednoczonych" - -#: classes/class-wc-countries.php:265 -#@ woocommerce -msgid "Uganda" -msgstr "Uganda" - -#: classes/class-wc-countries.php:266 -#@ woocommerce -msgid "Ukraine" -msgstr "Ukraina" - -#: classes/class-wc-countries.php:267 -#@ woocommerce -msgid "United Arab Emirates" -msgstr "Zjednoczone Emiraty Arabskie" - -#: classes/class-wc-countries.php:268 -#@ woocommerce -msgid "United Kingdom" -msgstr "Zjednoczone Królestwo" - -#: classes/class-wc-countries.php:269 -#@ woocommerce -msgid "United States" -msgstr "Stany Zjednoczone" - -#: classes/class-wc-countries.php:270 -#@ woocommerce -msgid "Uruguay" -msgstr "Urugwaj" - -#: classes/class-wc-countries.php:271 -#@ woocommerce -msgid "Uzbekistan" -msgstr "Uzbekistan" - -#: classes/class-wc-countries.php:272 -#@ woocommerce -msgid "Vanuatu" -msgstr "Vanuatu" - -#: classes/class-wc-countries.php:273 -#@ woocommerce -msgid "Vatican" -msgstr "Watykan" - -#: classes/class-wc-countries.php:274 -#@ woocommerce -msgid "Venezuela" -msgstr "Wenezuela" - -#: classes/class-wc-countries.php:275 -#@ woocommerce -msgid "Vietnam" -msgstr "Wietnam" - -#: classes/class-wc-countries.php:276 -#@ woocommerce -msgid "Wallis and Futuna" -msgstr "Wallis i Futuna" - -#: classes/class-wc-countries.php:277 -#@ woocommerce -msgid "Western Sahara" -msgstr "Sahara Zachodnia" - -#: classes/class-wc-countries.php:278 -#@ woocommerce -msgid "Yemen" -msgstr "Jemen" - -#: classes/class-wc-countries.php:279 -#@ woocommerce -msgid "Zambia" -msgstr "Zambia" - -#: classes/class-wc-countries.php:280 -#@ woocommerce -msgid "Zimbabwe" -msgstr "Zimbabwe" - -#: classes/class-wc-countries.php:418 -#@ woocommerce -msgid "to the" -msgstr "do" - -#: classes/class-wc-countries.php:419 -#@ woocommerce -msgid "to" -msgstr "do" - -#: classes/class-wc-countries.php:432 -#@ woocommerce -msgid "the" -msgstr " " - -#: classes/class-wc-countries.php:444 -#@ woocommerce -msgid "VAT" -msgstr "VAT" - -#: admin/post-types/writepanels/writepanel-order_data.php:352 -#: admin/settings/settings-tax-rates.php:387 -#: admin/settings/settings-tax-rates.php:466 -#: admin/woocommerce-admin-content.php:48 -#: admin/woocommerce-admin-settings.php:184 -#: classes/class-wc-countries.php:444 -#: templates/cart/totals.php:110 -#: templates/checkout/review-order.php:113 -#@ woocommerce -msgid "Tax" -msgstr "Podatek" - -#: classes/class-wc-countries.php:457 -#@ woocommerce -msgid "(incl. VAT)" -msgstr "(z VAT)" - -#: classes/class-wc-countries.php:457 -#@ woocommerce -msgid "(incl. tax)" -msgstr "(z podatkiem)" - -#: classes/class-wc-countries.php:470 -#@ woocommerce -msgid "(ex. VAT)" -msgstr "(bez VAT)" - -#: admin/post-types/writepanels/writepanel-order_data.php:549 -#: classes/class-wc-countries.php:470 -#@ woocommerce -msgid "(ex. tax)" -msgstr "(bez podatku)" - -#: classes/class-wc-countries.php:694 -#: classes/class-wc-countries.php:704 -#: classes/class-wc-countries.php:724 -#: classes/class-wc-countries.php:779 -#: classes/class-wc-countries.php:803 -#: classes/class-wc-countries.php:848 -#: classes/class-wc-countries.php:872 -#@ woocommerce -msgid "Province" -msgstr "Prowincja" - -#: classes/class-wc-countries.php:710 -#@ woocommerce -msgid "Canton" -msgstr "" - -#: classes/class-wc-countries.php:719 -#: classes/class-wc-countries.php:854 -#@ woocommerce -msgid "Municipality" -msgstr "Magistrat" - -#: classes/class-wc-countries.php:766 -#, fuzzy -#@ woocommerce -msgid "Town / District" -msgstr "Miasto/Okręg" - -#: classes/class-wc-countries.php:769 -#@ woocommerce -msgid "Region" -msgstr "Region" - -#: classes/class-wc-countries.php:877 -#@ woocommerce -msgid "Zip" -msgstr "Kod" - -#: classes/class-wc-countries.php:880 -#@ woocommerce -msgid "State" -msgstr "Region" - -#: admin/post-types/writepanels/writepanel-order_data.php:168 -#: admin/post-types/writepanels/writepanel-order_data.php:258 -#: admin/woocommerce-admin-users.php:171 -#: admin/woocommerce-admin-users.php:220 -#: classes/class-wc-countries.php:885 -#: templates/cart/shipping-calculator.php:68 -#@ woocommerce -msgid "Postcode" -msgstr "Kod pocztowy" - -#: classes/class-wc-countries.php:888 -#@ woocommerce -msgid "County" -msgstr "Okręg" - -#: classes/class-wc-countries.php:920 -#: classes/class-wc-countries.php:921 -#: classes/class-wc-countries.php:996 -#: templates/cart/shipping-calculator.php:68 -#, fuzzy -#@ woocommerce -msgid "Postcode / Zip" -msgstr "Kod pocztowy" - -#: classes/class-wc-countries.php:925 -#: classes/class-wc-countries.php:926 -#: classes/class-wc-countries.php:985 -#, fuzzy -#@ woocommerce -msgid "Town / City" -msgstr "Miasto" - -#: classes/class-wc-countries.php:930 -#: classes/class-wc-countries.php:931 -#: classes/class-wc-countries.php:991 -#, fuzzy -#@ woocommerce -msgid "State / County" -msgstr "Województwo" - -#: admin/post-types/writepanels/writepanel-order_data.php:172 -#: admin/post-types/writepanels/writepanel-order_data.php:262 -#: admin/woocommerce-admin-users.php:179 -#: admin/woocommerce-admin-users.php:228 -#: classes/class-wc-countries.php:955 -#@ woocommerce -msgid "Country" -msgstr "Kraj" - -#: admin/post-types/writepanels/writepanel-order_data.php:144 -#: admin/post-types/writepanels/writepanel-order_data.php:234 -#: classes/class-wc-countries.php:960 -#@ woocommerce -msgid "First Name" -msgstr "Imię" - -#: admin/post-types/writepanels/writepanel-order_data.php:148 -#: admin/post-types/writepanels/writepanel-order_data.php:238 -#: classes/class-wc-countries.php:965 -#@ woocommerce -msgid "Last Name" -msgstr "Nazwisko" - -#: classes/class-wc-countries.php:971 -#@ woocommerce -msgid "Company Name" -msgstr "Nazwa firmy" - -#: admin/post-types/writepanels/writepanel-order_data.php:193 -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#: admin/post-types/writepanels/writepanel-order_data.php:277 -#: admin/post-types/writepanels/writepanel-order_data.php:279 -#: classes/class-wc-countries.php:975 -#@ woocommerce -msgid "Address" -msgstr "Adres" - -#: classes/class-wc-countries.php:976 -#, fuzzy -#@ woocommerce -msgctxt "placeholder" -msgid "Street address" -msgstr "Zapisz adres" - -#: classes/class-wc-countries.php:981 -#@ woocommerce -msgctxt "placeholder" -msgid "Apartment, suite, unit etc. (optional)" -msgstr "" - -#: classes/class-wc-countries.php:1038 -#@ woocommerce -msgid "Email Address" -msgstr "Adres e-mail" - -#: admin/post-types/writepanels/writepanel-order_data.php:185 -#: classes/class-wc-countries.php:1044 -#@ woocommerce -msgid "Phone" -msgstr "Telefon" - -#: classes/class-wc-coupon.php:459 -#@ woocommerce -msgid "Coupon usage limit has been reached." -msgstr "" - -#: classes/class-wc-coupon.php:462 -#@ woocommerce -msgid "This coupon has expired." -msgstr "" - -#: classes/class-wc-coupon.php:465 -#, php-format -#@ woocommerce -msgid "The minimum spend for this coupon is %s." -msgstr "" - -#: classes/class-wc-coupon.php:468 -#@ woocommerce -msgid "Sorry, this coupon is not applicable to your cart contents." -msgstr "" - -#: classes/class-wc-customer.php:628 -#: classes/class-wc-customer.php:638 -#, fuzzy, php-format -#@ woocommerce -msgid "File %d" -msgstr "Ścieżka pliku" - -#: classes/class-wc-emails.php:246 -#@ woocommerce -msgid "Note" -msgstr "" - -#: classes/class-wc-emails.php:281 -#@ woocommerce -msgid "Product low in stock" -msgstr "Mała ilość produktów w magazynie" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:623 -#: classes/class-wc-emails.php:286 -#: classes/class-wc-emails.php:318 -#: classes/class-wc-emails.php:362 -#, php-format -#@ woocommerce -msgid "Variation #%s of %s" -msgstr "" - -#: classes/class-wc-emails.php:288 -#: classes/class-wc-emails.php:320 -#: classes/class-wc-emails.php:364 -#, php-format -#@ woocommerce -msgid "Product #%s - %s" -msgstr "" - -#: classes/class-wc-emails.php:290 -#@ woocommerce -msgid "is low in stock." -msgstr "jest mało w magazynie." - -#: classes/class-wc-emails.php:313 -#@ woocommerce -msgid "Product out of stock" -msgstr "Produktu brak na stanie" - -#: classes/class-wc-emails.php:322 -#@ woocommerce -msgid "is out of stock." -msgstr "brak na stanie." - -#: classes/class-wc-emails.php:357 -#@ woocommerce -msgid "Product Backorder" -msgstr "Produkt na zamówienie" - -#: classes/class-wc-emails.php:366 -#, php-format -#@ woocommerce -msgid "%s units of %s have been backordered in order #%s." -msgstr "" - -#: classes/class-wc-order.php:283 -#@ woocommerce -msgctxt "hash before order number" -msgid "#" -msgstr "" - -#: classes/class-wc-order.php:858 -#, php-format -#@ woocommerce -msgid " %svia %s" -msgstr "" - -#: classes/class-wc-order.php:923 -#@ woocommerce -msgid "Cart Subtotal:" -msgstr "Wartość produktów:" - -#: admin/post-types/writepanels/writepanel-order_data.php:499 -#: classes/class-wc-order.php:929 -#@ woocommerce -msgid "Cart Discount:" -msgstr "Rabat na cały koszyk:" - -#: classes/class-wc-order.php:935 -#@ woocommerce -msgid "Shipping:" -msgstr "Wysyłka" - -#: classes/class-wc-order.php:980 -#@ woocommerce -msgid "Subtotal:" -msgstr "Podsuma:" - -#: admin/post-types/writepanels/writepanel-order_data.php:507 -#: classes/class-wc-order.php:1006 -#@ woocommerce -msgid "Order Discount:" -msgstr "Rabat na zamówienie:" - -#: admin/post-types/writepanels/writepanel-order_data.php:653 -#: classes/class-wc-order.php:1011 -#@ woocommerce -msgid "Order Total:" -msgstr "Suma zamówienia:" - -#: classes/class-wc-order.php:1034 -#: templates/cart/totals.php:145 -#: templates/checkout/review-order.php:151 -#, php-format -#@ woocommerce -msgid "(Includes %s)" -msgstr "" - -#. translators: plugin header field 'Name' -#: admin/woocommerce-admin-content.php:83 -#: admin/woocommerce-admin-init.php:62 -#: classes/class-wc-order.php:1183 -#: classes/class-wc-order.php:1185 -#: classes/class-wc-order.php:1188 -#: woocommerce.php:0 -#@ woocommerce -msgid "WooCommerce" -msgstr "WooCommerce" - -#: classes/class-wc-order.php:1235 -#, php-format -#@ woocommerce -msgid "Order status changed from %s to %s." -msgstr "Status zamówienia zmieniony z %s na %s." - -#: classes/class-wc-order.php:1461 -#: woocommerce-ajax.php:1163 -#: woocommerce-ajax.php:1164 -#, php-format -#@ woocommerce -msgid "Item #%s stock reduced from %s to %s." -msgstr "Stan magazynowy #%s zmniejszony z %s do %s." - -#: classes/class-wc-order.php:1473 -#@ woocommerce -msgid "Order item stock reduced successfully." -msgstr "Stan magazynowy zamówienia pomyślnie zmniejszony." - -#: classes/class-wc-product-external.php:56 -#@ woocommerce -msgid "Buy product" -msgstr "Kup produkt" - -#: admin/settings/settings-init.php:500 -#: classes/class-wc-shortcodes.php:571 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:257 -#: templates/loop/add-to-cart.php:46 -#: templates/single-product/add-to-cart/grouped.php:45 -#: templates/single-product/add-to-cart/grouped.php:75 -#: templates/single-product/add-to-cart/simple.php:42 -#: templates/single-product/add-to-cart/variable.php:78 -#@ woocommerce -msgid "Add to cart" -msgstr "Dodaj do koszyka" - -#: classes/emails/class-wc-email-customer-completed-order.php:24 -#, fuzzy -#@ woocommerce -msgid "Completed order" -msgstr "Zrealizowane" - -#: classes/emails/class-wc-email-customer-completed-order.php:25 -#@ woocommerce -msgid "Order complete emails are sent to the customer when the order is marked complete and usual indicates that the order has been shipped." -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:27 -#, fuzzy -#@ woocommerce -msgid "Your order is complete" -msgstr "Twoje zamówienie zostało anulowane." - -#: classes/emails/class-wc-email-customer-completed-order.php:28 -#@ woocommerce -msgid "Your {blogname} order from {order_date} is complete" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:37 -#, fuzzy -#@ woocommerce -msgid "Your order is complete - download your files" -msgstr "Twoje zamówienie jest kompletne. Szczegóły zamówienia są poniżej:" - -#: classes/emails/class-wc-email-customer-completed-order.php:38 -#@ woocommerce -msgid "Your {blogname} order from {order_date} is complete - download your files" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:141 -#: classes/emails/class-wc-email-new-order.php:128 -#@ woocommerce -msgid "Subject" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:148 -#: classes/emails/class-wc-email-new-order.php:135 -#, fuzzy -#@ woocommerce -msgid "Email Heading" -msgstr "Wyślij fakturę" - -#: classes/emails/class-wc-email-customer-completed-order.php:155 -#, fuzzy -#@ woocommerce -msgid "Subject (downloadable)" -msgstr "Do pobrania" - -#: classes/emails/class-wc-email-customer-completed-order.php:162 -#@ woocommerce -msgid "Email Heading (downloadable)" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:27 -#, fuzzy -#@ woocommerce -msgid "Customer invoice" -msgstr "Notka dla klienta" - -#: classes/emails/class-wc-email-customer-invoice.php:28 -#, fuzzy -#@ woocommerce -msgid "Customer invoice emails can be sent to the user containing order info and payment links." -msgstr "Wyślij mailem fakturę do klienta. Nieopłacone zamówienia będą zawierały link do płatności." - -#: classes/emails/class-wc-email-customer-invoice.php:33 -#@ woocommerce -msgid "Invoice for order {order_number} from {order_date}" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:34 -#@ woocommerce -msgid "Invoice for order {order_number}" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:36 -#@ woocommerce -msgid "Your {blogname} order from {order_date}" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:37 -#@ woocommerce -msgid "Order {order_number} details" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:158 -#@ woocommerce -msgid "Email subject (paid)" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:165 -#@ woocommerce -msgid "Email heading (paid)" -msgstr "" - -#: classes/emails/class-wc-email-customer-new-account.php:31 -#, fuzzy -#@ woocommerce -msgid "New account" -msgstr "Moje konto" - -#: classes/emails/class-wc-email-customer-new-account.php:32 -#@ woocommerce -msgid "Customer new account emails are sent when a customer signs up via the checkout or My Account page." -msgstr "" - -#: classes/emails/class-wc-email-customer-new-account.php:37 -#, fuzzy -#@ woocommerce -msgid "Your account on {blogname}" -msgstr "Twoje konto w serwisie %s" - -#: classes/emails/class-wc-email-customer-new-account.php:38 -#@ woocommerce -msgid "Welcome to {blogname}" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_notes.php:62 -#: classes/emails/class-wc-email-customer-note.php:29 -#@ woocommerce -msgid "Customer note" -msgstr "Notka dla klienta" - -#: classes/emails/class-wc-email-customer-note.php:30 -#@ woocommerce -msgid "Customer note emails are sent when you add a note to an order." -msgstr "" - -#: classes/emails/class-wc-email-customer-note.php:35 -#@ woocommerce -msgid "Note added to your {blogname} order from {order_date}" -msgstr "" - -#: classes/emails/class-wc-email-customer-note.php:36 -#@ woocommerce -msgid "A note has been added to your order" -msgstr "Nowa notka została dodana do Twojego zamówienia" - -#: classes/emails/class-wc-email-customer-processing-order.php:24 -#, fuzzy -#@ woocommerce -msgid "Processing order" -msgstr "W trakcie realizacji" - -#: classes/emails/class-wc-email-customer-processing-order.php:25 -#@ woocommerce -msgid "This is an order notification sent to the customer after payment containing order details." -msgstr "" - -#: classes/emails/class-wc-email-customer-processing-order.php:27 -#, fuzzy -#@ woocommerce -msgid "Thank you for your order" -msgstr "Monitoruj swoje zamówienie" - -#: classes/emails/class-wc-email-customer-processing-order.php:28 -#@ woocommerce -msgid "Your {blogname} order receipt from {order_date}" -msgstr "" - -#: classes/emails/class-wc-email-customer-reset-password.php:36 -#, fuzzy -#@ woocommerce -msgid "Reset password" -msgstr "Powtórz hasło" - -#: classes/emails/class-wc-email-customer-reset-password.php:37 -#@ woocommerce -msgid "Customer reset password emails are sent when a customer resets their password." -msgstr "" - -#: classes/emails/class-wc-email-customer-reset-password.php:42 -#@ woocommerce -msgid "Password Reset for {blogname}" -msgstr "" - -#: classes/emails/class-wc-email-customer-reset-password.php:43 -#, fuzzy -#@ woocommerce -msgid "Password Reset Instructions" -msgstr "Instrukcje" - -#: classes/emails/class-wc-email-new-order.php:24 -#, fuzzy -#@ woocommerce -msgid "New order" -msgstr "Nowe zamówienie" - -#: classes/emails/class-wc-email-new-order.php:25 -#@ woocommerce -msgid "New order emails are sent when an order is received/paid by a customer." -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:27 -#, fuzzy -#@ woocommerce -msgid "New customer order" -msgstr "Nowe zamówienie od klienta" - -#: classes/emails/class-wc-email-new-order.php:28 -#@ woocommerce -msgid "[{blogname}] New customer order ({order_number}) - {order_date}" -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:121 -#@ woocommerce -msgid "Recipient(s)" -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:123 -#, php-format -#@ woocommerce -msgid "Enter recipients (comma separated) for this email. Defaults to %s." -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:130 -#, fuzzy, php-format -#@ woocommerce -msgid "This controls the email subject line. Leave blank to use the default subject: %s." -msgstr "Pokazywane w URL tagu produktu. Pozostaw puste aby użyć domyślnej frazy." - -#: classes/emails/class-wc-email-new-order.php:137 -#, php-format -#@ woocommerce -msgid "This controls the main heading contained within the email notification. Leave blank to use the default heading: %s." -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:28 -#@ woocommerce -msgid "Bacs" -msgstr "Bacs" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:65 -#@ woocommerce -msgid "Enable Bank Transfer" -msgstr "Włącz przelewy bankowe" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:69 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:63 -#: classes/gateways/cod/class-wc-gateway-cod.php:87 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:171 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:125 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:104 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:84 -#@ woocommerce -msgid "Title" -msgstr "Tytuł" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:71 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:65 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:173 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:127 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:85 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:83 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:60 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:106 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:86 -#@ woocommerce -msgid "This controls the title which the user sees during checkout." -msgstr "Tytuł, który widzi użytkownik podczas składania zamówienia." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:72 -#@ woocommerce -msgid "Direct Bank Transfer" -msgstr "Przelew bankowy" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:76 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:70 -#@ woocommerce -msgid "Customer Message" -msgstr "Wiadomość dla klienta" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:78 -#@ woocommerce -msgid "Give the customer instructions for paying via BACS, and let them know that their order won't be shipping until the money is received." -msgstr "Wpisz instrukcje dla klienta do płatności przelewem załączając informację, że zamówienie nie zostanie wysłane jeśli nie dokonają płatności." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:79 -#@ woocommerce -msgid "Make your payment directly into our bank account. Please use your Order ID as the payment reference. Your order wont be shipped until the funds have cleared in our account." -msgstr "Prosimy o wpłatę bezpośrednio na nasz konto bankowe. Proszę użyć numeru zamówienia jako tytuł płatności. Twoje zamówienie nie zostanie wysłane dopóki wpłata nie zostanie zaksięgowana na naszym koncie." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:82 -#@ woocommerce -msgid "Account Details" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:84 -#@ woocommerce -msgid "Optionally enter your bank details below for customers to pay into." -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:88 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:163 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:203 -#@ woocommerce -msgid "Account Name" -msgstr "Nazwa konta" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:94 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:164 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:204 -#@ woocommerce -msgid "Account Number" -msgstr "Numer konta" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:100 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:165 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:205 -#@ woocommerce -msgid "Sort Code" -msgstr "Numer rozliczeniowy (Sort Code)" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:106 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:166 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:206 -#@ woocommerce -msgid "Bank Name" -msgstr "Nazwa banku" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:112 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:167 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:207 -#@ woocommerce -msgid "IBAN" -msgstr "IBAN" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:117 -#@ woocommerce -msgid "BIC (formerly Swift)" -msgstr "BIC (dawny Swift)" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:136 -#@ woocommerce -msgid "BACS Payment" -msgstr "Płatność przelewem" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:137 -#@ woocommerce -msgid "Allows payments by BACS (Bank Account Clearing System), more commonly known as direct bank/wire transfer." -msgstr "Umożliwiaj płatności przelewem bankowym" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:158 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:200 -#@ woocommerce -msgid "Our Details" -msgstr "Nasze dane" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:168 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:208 -#@ woocommerce -msgid "BIC" -msgstr "BIC" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:234 -#@ woocommerce -msgid "Awaiting BACS payment" -msgstr "Czekanie na przelew" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:28 -#@ woocommerce -msgid "Cheque" -msgstr "Czek" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:59 -#@ woocommerce -msgid "Enable Cheque Payment" -msgstr "Włącz płatności czekiem" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:66 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:90 -#@ woocommerce -msgid "Cheque Payment" -msgstr "Płatność czekiem" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:72 -#@ woocommerce -msgid "Let the customer know the payee and where they should be sending the cheque to and that their order won't be shipping until you receive it." -msgstr "Wpisz instrukcje dla klienta do płatności czekiem załączając informację, że zamówienie nie zostanie wysłane jeśli nie dokona płatności." - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:73 -#@ woocommerce -msgid "Please send your cheque to Store Name, Store Street, Store Town, Store State / County, Store Postcode." -msgstr "Proszę przesłać czek na: nazwa sklepu, adres, miasto, region, kod pocztowy." - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:91 -#@ woocommerce -msgid "Allows cheque payments. Why would you take cheques in this day and age? Well you probably wouldn't but it does allow you to make test purchases for testing order emails and the 'success' pages etc." -msgstr "Włącz płatności czekiem. Prawdopodobnie nie będziesz ich używać w obecnych czasach, ale możesz ich użyć do testowania zamówień, e-maili i stron \"sukcesu\"." - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:147 -#@ woocommerce -msgid "Awaiting cheque payment" -msgstr "Czekanie na płatność czekiem" - -#: classes/gateways/cod/class-wc-gateway-cod.php:27 -#: classes/gateways/cod/class-wc-gateway-cod.php:54 -#: classes/gateways/cod/class-wc-gateway-cod.php:90 -#@ woocommerce -msgid "Cash on Delivery" -msgstr "Gotówka za pobraniem" - -#: classes/gateways/cod/class-wc-gateway-cod.php:55 -#@ woocommerce -msgid "Have your customers pay with cash (or by other means) upon delivery." -msgstr "Pozwól klientom płacić za pobraniem." - -#: classes/gateways/cod/class-wc-gateway-cod.php:80 -#@ woocommerce -msgid "Enable COD" -msgstr "Włącz płatności za pobraniem" - -#: classes/gateways/cod/class-wc-gateway-cod.php:81 -#@ woocommerce -msgid "Enable Cash on Delivery" -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:89 -#@ woocommerce -msgid "Payment method title that the customer will see on your website." -msgstr "Tytuł metody płatności, który klienci zobaczą na stronie." - -#: admin/post-types/shop_coupon.php:28 -#: classes/gateways/cod/class-wc-gateway-cod.php:94 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:178 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:132 -#: woocommerce-template.php:748 -#@ woocommerce -msgid "Description" -msgstr "Opis" - -#: classes/gateways/cod/class-wc-gateway-cod.php:96 -#@ woocommerce -msgid "Payment method description that the customer will see on your website." -msgstr "Opis metody płatności, który klienci zobaczą na stronie." - -#: classes/gateways/cod/class-wc-gateway-cod.php:100 -#@ woocommerce -msgid "Instructions" -msgstr "Instrukcje" - -#: classes/gateways/cod/class-wc-gateway-cod.php:102 -#@ woocommerce -msgid "Instructions that will be added to the thank you page." -msgstr "Instrukcje, które będą dołączone do strony z podziękowaniem." - -#: classes/gateways/cod/class-wc-gateway-cod.php:106 -#, fuzzy -#@ woocommerce -msgid "Enable for shipping methods" -msgstr "Włącz tę metodę wysyłki" - -#: classes/gateways/cod/class-wc-gateway-cod.php:111 -#@ woocommerce -msgid "If COD is only available for certain methods, set it up here. Leave blank to enable for all methods." -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:176 -#@ woocommerce -msgid "Payment to be made upon delivery." -msgstr "Płatność przy odbiorze." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:31 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:196 -#@ woocommerce -msgid "Mijireh Checkout" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:143 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:321 -#@ woocommerce -msgid "Mijireh error:" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:160 -#@ woocommerce -msgid "Enable Mijireh Checkout" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:164 -#@ woocommerce -msgid "Access Key" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:166 -#@ woocommerce -msgid "The Mijireh access key for your store." -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:174 -#@ woocommerce -msgid "Credit Card" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:180 -#@ woocommerce -msgid "Pay securely with you credit card." -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:181 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:134 -#@ woocommerce -msgid "This controls the description which the user sees during checkout." -msgstr "Opis, który użytkownik widzi podczas składania zamówienia." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:200 -#@ woocommerce -msgid "Get started with Mijireh Checkout" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:201 -#@ woocommerce -msgid "provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site. Mijireh supports a wide variety of payment gateways: Stripe, Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and more." -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:203 -#@ woocommerce -msgid "Join for free" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:203 -#@ woocommerce -msgid "Learn more about WooCommerce and Mijireh" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:207 -#@ woocommerce -msgid "provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:34 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:128 -#@ woocommerce -msgid "PayPal" -msgstr "PayPal" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:90 -#@ woocommerce -msgid "PayPal standard" -msgstr "PayPal standard" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:91 -#@ woocommerce -msgid "PayPal standard works by sending the user to PayPal to enter their payment information." -msgstr "PayPal standard wysyła klienta do strony PayPala, gdzie klient dokonuje płatności." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:103 -#@ woocommerce -msgid "Gateway Disabled" -msgstr "Bramka wyłączona" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:103 -#@ woocommerce -msgid "PayPal does not support your store currency." -msgstr "PayPal nie wspiera Twojej waluty." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:121 -#@ woocommerce -msgid "Enable PayPal standard" -msgstr "Włącz PayPal standard" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:135 -#@ woocommerce -msgid "Pay via PayPal; you can pay with your credit card if you don't have a PayPal account" -msgstr "Płać z PayPal; możesz zapłacić kartą kredytową jeśli nie masz konta PayPal" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:138 -#@ woocommerce -msgid "PayPal Email" -msgstr "E-mail konta PayPal" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:140 -#@ woocommerce -msgid "Please enter your PayPal email address; this is needed in order to take payment." -msgstr "Wpisz adres e-mail konta PayPal; jest wymagany, aby przyjąć płatność." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:146 -#@ woocommerce -msgid "Invoice Prefix" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:153 -#@ woocommerce -msgid "Submission method" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:155 -#@ woocommerce -msgid "Use form submission method." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:156 -#@ woocommerce -msgid "Enable this to post order data to PayPal via a form instead of using a redirect/querystring." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:160 -#@ woocommerce -msgid "Page Style" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:162 -#@ woocommerce -msgid "Optionally enter the name of the page style you wish to use. These are defined within your PayPal account." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:168 -#@ woocommerce -msgid "Shipping options" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:173 -#@ woocommerce -msgid "Shipping details" -msgstr "Dane wysyłki" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:175 -#@ woocommerce -msgid "Send shipping details to PayPal instead of billing." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:177 -#@ woocommerce -msgid "PayPal allows us to send 1 address. If you are using PayPal for shipping labels you may prefer to send the shipping address rather than billing." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:181 -#@ woocommerce -msgid "Address override" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:183 -#@ woocommerce -msgid "Enable \"address_override\" to prevent address information from being changed." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:184 -#@ woocommerce -msgid "PayPal verifies addresses therefore this setting can cause errors (we recommend keeping it disabled)." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:188 -#@ woocommerce -msgid "Gateway Testing" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:193 -#@ woocommerce -msgid "PayPal sandbox" -msgstr "Tryb testowy PayPal" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:195 -#@ woocommerce -msgid "Enable PayPal sandbox" -msgstr "Włącz tryb testowy (tryb piaskownicy) PayPal" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:197 -#, php-format -#@ woocommerce -msgid "PayPal sandbox can be used to test payments. Sign up for a developer account here." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:200 -#@ woocommerce -msgid "Debug Log" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:202 -#@ woocommerce -msgid "Enable logging" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:204 -#@ default -msgid "Log PayPal events, such as IPN requests, inside woocommerce/logs/paypal.txt" -msgstr "" - -#: admin/post-types/shop_order.php:98 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:313 -#, php-format -#@ woocommerce -msgid "Order %s" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:323 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:373 -#@ woocommerce -msgid "Shipping via" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:414 -#@ woocommerce -msgid "Thank you for your order. We are now redirecting you to PayPal to make payment." -msgstr "Dziękujemy za zamówienie. Przekierujemy Cię teraz na stronę PayPal, aby dokonać płatności." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:435 -#@ woocommerce -msgid "Pay via PayPal" -msgstr "Płać z PayPal" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:435 -#@ woocommerce -msgid "Cancel order & restore cart" -msgstr "Anuluj zamówienie i przywróć koszyk" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:489 -#@ woocommerce -msgid "Thank you for your order, please click the button below to pay with PayPal." -msgstr "Dziękujemy za zamówienie, kliknij przycisk poniżej, aby zapłacić przez PayPal." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:634 -#, php-format -#@ woocommerce -msgid "Validation error: PayPal amounts do not match (gross %s)." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:652 -#@ woocommerce -msgid "IPN payment completed" -msgstr "Płatność BPP (Błyskawiczne powiadamianie o płatności) zakończona" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:664 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:672 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:690 -#, php-format -#@ woocommerce -msgid "Payment %s via IPN." -msgstr "Płatność %s przez BPP (Błyskawiczne powiadamianie o płatności)." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:677 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:695 -#@ woocommerce -msgid "Order refunded/reversed" -msgstr "Zamówienie zrefundowane/zwrócone" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:678 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:696 -#, php-format -#@ woocommerce -msgid "Order %s has been marked as refunded - PayPal reason code: %s" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:681 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:699 -#, php-format -#@ woocommerce -msgid "Payment for order %s refunded/reversed" -msgstr "" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:26 -#@ woocommerce -msgid "Google Analytics" -msgstr "Google Analytics" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:27 -#@ woocommerce -msgid "Google Analytics is a free service offered by Google that generates detailed statistics about the visitors to a website." -msgstr "Google Analytics to darmowa usługa Google, która generuje szczegółowe statystyki odwiedzin strony." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:62 -#@ woocommerce -msgid "Google Analytics ID" -msgstr "ID Google Analytics" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:63 -#@ woocommerce -msgid "Log into your google analytics account to find your ID. e.g. UA-XXXXX-X" -msgstr "Zaloguj się na swoje konto Google Analytics, żeby znaleźć swoje ID. np. UA-XXXXX-X" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:68 -#@ woocommerce -msgid "Tracking code" -msgstr "Kod śledzenia" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:69 -#@ woocommerce -msgid "Add tracking code to your site's footer. You don't need to enable this if using a 3rd party analytics plugin." -msgstr "Dodaj kod śledzenia do stopki swojej strony. Nie musisz włączać tej opcji jeśli używasz innej wtyczki do statystyk." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:75 -#@ woocommerce -msgid "Add eCommerce tracking code to the thankyou page" -msgstr "Dodaj kod śledzenia eCommerce do strony z podziękowaniem" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:81 -#@ woocommerce -msgid "Add event tracking code for add to cart actions" -msgstr "" - -#: admin/post-types/shop_order.php:95 -#: admin/post-types/writepanels/writepanel-order_data.php:93 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:113 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:168 -#: woocommerce-ajax.php:1725 -#@ woocommerce -msgid "Guest" -msgstr "Gość" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:201 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:258 -#: templates/single-product/meta.php:19 -#@ woocommerce -msgid "SKU:" -msgstr "SKU:" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:74 -#: admin/woocommerce-admin-taxonomies.php:28 -#: admin/woocommerce-admin-taxonomies.php:122 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:256 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:276 -#: woocommerce.php:948 -#@ woocommerce -msgid "Products" -msgstr "Produkty" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:277 -#, fuzzy -#@ woocommerce -msgid "Add to Cart" -msgstr "Dodaj do koszyka" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:26 -#@ woocommerce -msgid "ShareDaddy" -msgstr "ShareDaddy" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:27 -#@ woocommerce -msgid "ShareDaddy is a sharing plugin bundled with JetPack." -msgstr "ShareDaddy jest wtyczką do dzielenia się włączoną do JetPacka." - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:51 -#@ woocommerce -msgid "Output ShareDaddy button?" -msgstr "Wyświetlać przycisk ShareDaddy?" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:52 -#@ woocommerce -msgid "Enable this option to show the ShareDaddy button on the product page." -msgstr "" - -#: classes/integrations/sharethis/class-wc-sharethis.php:29 -#@ woocommerce -msgid "ShareThis" -msgstr "ShareThis" - -#: classes/integrations/sharethis/class-wc-sharethis.php:30 -#@ woocommerce -msgid "ShareThis offers a sharing widget which will allow customers to share links to products with their friends." -msgstr "ShareThis oferuje widget, który umożliwia klientom na dzielenie się linkami do produktów ze znajomymi." - -#: classes/integrations/sharethis/class-wc-sharethis.php:63 -#@ woocommerce -msgid "ShareThis Publisher ID" -msgstr "ID Wydawcy w ShareThis" - -#: classes/integrations/sharethis/class-wc-sharethis.php:64 -#, php-format -#@ woocommerce -msgid "Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons on product pages." -msgstr "Wpisz swoje %1$sID wydawcy w ShareThis%2$s aby pokazywać opcje dzielenia się na stronach produktów." - -#: classes/integrations/sharethis/class-wc-sharethis.php:69 -#@ woocommerce -msgid "ShareThis Code" -msgstr "" - -#: classes/integrations/sharethis/class-wc-sharethis.php:70 -#@ woocommerce -msgid "You can tweak the ShareThis code by editing this option." -msgstr "" - -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:22 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:329 -#@ woocommerce -#@ default -msgid "ShareYourCart" -msgstr "" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:328 -#@ default -msgid "Share your cart settings" -msgstr "" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:342 -#@ default -msgid "Button" -msgstr "" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:343 -#, fuzzy -#@ default -msgid "Customize Button" -msgstr "Login Klienta" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:351 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:352 -#@ default -msgid "Documentation" -msgstr "Dokumentacja" - -#: classes/integrations/shareyourcart/views/admin-page.php:33 -#@ woocommerce -msgid "Setup your ShareYourCart account" -msgstr "" - -#: classes/integrations/shareyourcart/views/admin-page.php:35 -#@ woocommerce -msgid "Create an account" -msgstr "" - -#: classes/integrations/shareyourcart/views/admin-page.php:35 -#@ woocommerce -msgid "Can't access your account?" -msgstr "" - -#: classes/integrations/shareyourcart/views/admin-page.php:100 -#@ woocommerce -msgid "Configure" -msgstr "" - -#: admin/woocommerce-admin-settings.php:386 -#: classes/integrations/shareyourcart/views/admin-page.php:110 -#: classes/integrations/shareyourcart/views/button-settings-page.php:120 -#@ woocommerce -msgid "Save changes" -msgstr "Zapisz zmiany" - -#: classes/integrations/shareyourcart/views/button-settings-page.php:8 -#: classes/integrations/shareyourcart/views/button-settings-page.php:11 -#@ woocommerce -msgid "Button style" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:25 -#@ woocommerce -msgid "Flat rate" -msgstr "Płaska stawka" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:28 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:461 -#@ woocommerce -msgid "Flat Rates" -msgstr "Płaskie stawki" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:29 -#@ woocommerce -msgid "Flat rates let you define a standard rate per item, or per order." -msgstr "Płaskie stawki pozwalają ustawić standardową opłatę na produkt lub zamówienie." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:79 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:54 -#@ woocommerce -msgid "Enable this shipping method" -msgstr "Włącz tę metodę wysyłki" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:83 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:81 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:58 -#@ woocommerce -msgid "Method Title" -msgstr "Tytuł metody" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:86 -#@ woocommerce -msgid "Flat Rate" -msgstr "Płaska Stawka" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:90 -#@ woocommerce -msgid "Cost per order" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:96 -#, fuzzy -#@ woocommerce -msgid "Enter a cost (excluding tax) per order, e.g. 5.00. Leave blank to disable." -msgstr "Opłata bez podatku. Wpisz liczbę, np. 2,50, lub procent, np. 5%. Pozostaw puste pole, aby nie pobierać opłaty." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:102 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:88 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:143 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:99 -#@ woocommerce -msgid "Method availability" -msgstr "Dostępność" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:107 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:93 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:148 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:104 -#@ woocommerce -msgid "All allowed countries" -msgstr "Wszystkie dozwolone kraje" - -#: admin/settings/settings-init.php:68 -#: admin/settings/settings-init.php:73 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:108 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:112 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:98 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:149 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:153 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:105 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:109 -#@ woocommerce -msgid "Specific Countries" -msgstr "Wybrane kraje" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:120 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:83 -#@ woocommerce -msgid "Calculation Type" -msgstr "Typ obliczeń" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:124 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:87 -#@ woocommerce -msgid "Per Order - charge shipping for the entire order as a whole" -msgstr "Za zamówienie - koszty przesyłki za całe zamówienie" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:125 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:88 -#@ woocommerce -msgid "Per Item - charge shipping for each item individually" -msgstr "Za produkt - koszty przesyłki za każdy produkt osobno" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:126 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:89 -#@ woocommerce -msgid "Per Class - charge shipping for each shipping class in an order" -msgstr "Za klasę wysyłkową - koszty przesyłki za każdą klasę w zamówieniu" - -#: admin/post-types/writepanels/writepanel-product_data.php:178 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:130 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:93 -#@ woocommerce -msgid "Tax Status" -msgstr "Status podatku" - -#: admin/post-types/writepanels/order-fee-html.php:20 -#: admin/post-types/writepanels/writepanel-product_data.php:179 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:134 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:97 -#@ woocommerce -msgid "Taxable" -msgstr "Opodatkowany" - -#: admin/post-types/writepanels/writepanel-product_data.php:181 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:135 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:98 -#@ woocommerce -msgid "None" -msgstr "Brak" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:139 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:102 -#@ woocommerce -msgid "Default Cost" -msgstr "Domyślny koszt" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:145 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:108 -#@ woocommerce -msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -msgstr "Koszt bez podatku. Wpisz liczbę, np. 2,50." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:151 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:114 -#@ woocommerce -msgid "Default Handling Fee" -msgstr "Domyślna opłata manipulacyjna" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:153 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:116 -#@ woocommerce -msgid "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. Leave blank to disable." -msgstr "Opłata bez podatku. Wpisz liczbę, np. 2,50, lub procent, np. 5%. Pozostaw puste pole, aby nie pobierać opłaty." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:159 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:122 -#@ woocommerce -msgid "Minimum Fee" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:165 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:128 -#@ woocommerce -msgid "Enter a minimum fee amount. Fee's less than this will be increased. Leave blank to disable." -msgstr "" - -#: admin/settings/settings-init.php:833 -#: admin/woocommerce-admin-settings.php:290 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:171 -#@ woocommerce -msgid "Shipping Options" -msgstr "Opcje wysyłki" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:173 -#@ woocommerce -msgid "Optional extra shipping options with additional costs (one per line). Example: Option Name|Cost|Per-order (yes or no). Example: Priority Mail|6.95|yes. If per-order is set to no, it will use the \"Calculation Type\" setting." -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:467 -#: woocommerce.php:857 -#@ woocommerce -msgid "Shipping Class" -msgstr "Klasa wysyłkowa" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:468 -#@ woocommerce -msgid "Cost" -msgstr "Koszt" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:468 -#@ woocommerce -msgid "Cost, excluding tax." -msgstr "Koszy z wyłączeniem podatku." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:469 -#@ woocommerce -msgid "Handling Fee" -msgstr "Opłata manipulacyjna" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:469 -#@ woocommerce -msgid "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -msgstr "Opłata bez podatku. Wpisz wartość, np. 2,50 lub procent, np. 5%." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:474 -#@ woocommerce -msgid "+ Add Flat Rate" -msgstr "+ Dodaj płaską stawkę" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:475 -#@ woocommerce -msgid "Add rates for shipping classes here — they will override the default costs defined above." -msgstr "Dodaj stawki dla klas wysyłkowych — nadpiszą one domyślne ustawienia zdefiniowane powyżej." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:475 -#@ woocommerce -msgid "Delete selected rates" -msgstr "Usuń zaznaczone stawki" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:495 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:528 -#@ woocommerce -msgid "Select a class…" -msgstr "Wybierz klasę…" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:500 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:501 -#@ woocommerce -msgid "0.00" -msgstr "0,00" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:542 -#@ woocommerce -msgid "Delete the selected rates?" -msgstr "Usunąć wybrane stawki?" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:25 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:145 -#@ woocommerce -msgid "Free Shipping" -msgstr "Darmowa wysyłka" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:77 -#@ woocommerce -msgid "Enable Free Shipping" -msgstr "Włącz darmową wysyłkę" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:106 -#, fuzzy -#@ woocommerce -msgid "Free Shipping Requires..." -msgstr "Darmowa wysyłka" - -#: admin/post-types/writepanels/order-fee-html.php:19 -#: admin/post-types/writepanels/order-tax-html.php:8 -#: admin/post-types/writepanels/writepanel-order_data.php:558 -#: admin/post-types/writepanels/writepanel-order_data.php:663 -#: admin/woocommerce-admin-reports.php:1642 -#: admin/woocommerce-admin-reports.php:2655 -#: admin/woocommerce-admin-reports.php:2664 -#: admin/woocommerce-admin-users.php:90 -#: admin/woocommerce-admin-users.php:112 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:110 -#: templates/order/order-details.php:110 -#: templates/order/order-details.php:125 -#@ woocommerce -msgid "N/A" -msgstr "brak" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:111 -#, fuzzy -#@ woocommerce -msgid "A valid free shipping coupon" -msgstr "Darmowa wysyłka" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:112 -#@ woocommerce -msgid "A minimum order amount (defined below)" -msgstr "" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:113 -#, fuzzy -#@ woocommerce -msgid "A minimum order amount OR a coupon" -msgstr "Minimalna wartość zamówienia" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:114 -#, fuzzy -#@ woocommerce -msgid "A minimum order amount AND a coupon" -msgstr "Minimalna wartość zamówienia" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:118 -#@ woocommerce -msgid "Minimum Order Amount" -msgstr "Minimalna wartość zamówienia" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:124 -#, fuzzy -#@ woocommerce -msgid "Users will need to spend this amount to get free shipping (if enabled above)." -msgstr "Klienci będą musieli wydać tę kwotę, aby skorzystać z darmowej wysyłki. Pozostaw puste pole, aby wyłączyć darmową wysyłkę." - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:28 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:31 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:61 -#@ woocommerce -msgid "International Delivery" -msgstr "Międzynarodowa wysyłka" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:32 -#@ woocommerce -msgid "International delivery based on flat rate shipping." -msgstr "Międzynarodowa wysyłka oparta o płaską stawkę." - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:65 -#@ woocommerce -msgid "Availability" -msgstr "Dsotępność" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:70 -#@ woocommerce -msgid "Selected countries" -msgstr "Wybrane kraje" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:71 -#@ woocommerce -msgid "Excluding selected countries" -msgstr "Z wyjątkiem zaznaczonych krajów" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:75 -#@ woocommerce -msgid "Countries" -msgstr "Kraje" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:25 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:107 -#@ woocommerce -msgid "Local Delivery" -msgstr "Dostawa lokalna" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:98 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:78 -#@ woocommerce -msgid "Enable" -msgstr "Włącz" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:100 -#@ woocommerce -msgid "Enable local delivery" -msgstr "Włącz dostawę lokalną" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:111 -#@ woocommerce -msgid "Fee Type" -msgstr "Typ opłaty" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:113 -#@ woocommerce -msgid "How to calculate delivery charges" -msgstr "W jaki sposób obliczyć opłatę za dostawę" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 -#@ woocommerce -msgid "Fixed amount" -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:117 -#@ woocommerce -msgid "Percentage of cart total" -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:118 -#@ woocommerce -msgid "Fixed amount per product" -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:123 -#@ woocommerce -msgid "Delivery Fee" -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:129 -#@ woocommerce -msgid "What fee do you want to charge for local delivery, disregarded if you choose free. Leave blank to disable." -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:135 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:91 -#@ woocommerce -msgid "Zip/Post Codes" -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:137 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:93 -#@ woocommerce -msgid "What zip/post codes would you like to offer delivery to? Separate codes with a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:172 -#@ woocommerce -msgid "Local delivery is a simple shipping method for delivering orders locally." -msgstr "Lokalna dostawa to prosta metoda wysyłki do dostarczania zamówień lokalnie." - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:25 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:87 -#@ woocommerce -msgid "Local Pickup" -msgstr "Odbiór osobisty" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:80 -#@ woocommerce -msgid "Enable local pickup" -msgstr "Włącz odbiór osobisty" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:117 -#, fuzzy -#@ woocommerce -msgid "Apply base tax rate" -msgstr "Zastosuj przed podatkiem" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:119 -#@ woocommerce -msgid "When this shipping method is chosen, apply the base tax rate rather than for the customer's given address." -msgstr "" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:134 -#@ woocommerce -msgid "Local pickup is a simple method which allows the customer to pick up their order themselves." -msgstr "Odbiór osobisty to prosta metoda, która pozwala klientom odebrać zamówienia we własnym zakresie." - -#: classes/class-wc-coupon.php:497 -#@ woocommerce -msgid "Please enter a coupon code." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-cart.php:54 -#: woocommerce-functions.php:1637 -#@ woocommerce -msgid "Please enter a valid postcode/ZIP." -msgstr "Proszę podać poprawny kod pocztowy." - -#: classes/shortcodes/class-wc-shortcode-cart.php:65 -#: classes/shortcodes/class-wc-shortcode-cart.php:71 -#@ woocommerce -msgid "Shipping costs updated." -msgstr "Koszty wysyłki zaktualizowane." - -#: classes/shortcodes/class-wc-shortcode-checkout.php:64 -#@ woocommerce -msgid "The order totals have been updated. Please confirm your order by pressing the Place Order button at the bottom of the page." -msgstr "Zamówienie zostało zaktualizowane. Potwierdź zamówienie klikając w przycisk \"Złóż zamówienie\" na dole strony." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:80 -#: woocommerce-core-functions.php:2488 -#: woocommerce-functions.php:1559 -#@ woocommerce -msgid "Please enter your password." -msgstr "Proszę wpisać swoje hasło." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:95 -#, fuzzy -#@ woocommerce -msgid "Your password has been reset." -msgstr "Ustawienia zostały zapisane." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:95 -#@ woocommerce -msgid "Log in" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:116 -#, fuzzy -#@ woocommerce -msgid "Enter a username or e-mail address." -msgstr "Proszę wpisać swój adres e-mail." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:123 -#, fuzzy -#@ woocommerce -msgid "There is no user registered with that email address." -msgstr "Konto z tym adresem e-mail już istnieje. Zaloguj się." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:138 -#, fuzzy -#@ woocommerce -msgid "Invalid username or e-mail." -msgstr "Błędny e-mail lub nazwa użytkownika." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:152 -#@ default -msgid "Password reset is not allowed for this user" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:180 -#, fuzzy -#@ default -msgid "Check your e-mail for the confirmation link." -msgstr "Znaleziony w Twoim e-mailu potwierdzającym zamówienie." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:200 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:205 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:212 -#, fuzzy -#@ woocommerce -msgid "Invalid key" -msgstr "Nieprawidłowe zamówienie." - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:53 -#@ woocommerce -msgid "Please enter a valid order ID" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:57 -#@ woocommerce -msgid "Please enter a valid order email" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:76 -#@ woocommerce -msgid "Sorry, we could not find that order id in our database." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-pay.php:65 -#: classes/shortcodes/class-wc-shortcode-pay.php:118 -#@ woocommerce -msgid "Your order has already been paid for. Please contact us if you need assistance." -msgstr "Twoje zamówienie zostało już opłacone. Skontaktuj się z nami jeśli potrzebujesz pomocy." - -#: classes/shortcodes/class-wc-shortcode-pay.php:70 -#: classes/shortcodes/class-wc-shortcode-pay.php:125 -#: classes/shortcodes/class-wc-shortcode-view-order.php:49 -#: woocommerce-functions.php:880 -#: woocommerce-functions.php:959 -#@ woocommerce -msgid "Invalid order." -msgstr "Nieprawidłowe zamówienie." - -#: admin/woocommerce-admin-functions.php:188 -#: classes/shortcodes/class-wc-shortcode-pay.php:90 -#: templates/checkout/thankyou.php:40 -#: templates/emails/customer-completed-order.php:18 -#: templates/emails/customer-invoice.php:22 -#: templates/emails/customer-note.php:22 -#: templates/emails/customer-processing-order.php:18 -#@ woocommerce -msgid "Order:" -msgstr "Zamówienie:" - -#: classes/shortcodes/class-wc-shortcode-pay.php:94 -#: templates/checkout/thankyou.php:44 -#@ woocommerce -msgid "Date:" -msgstr "Data:" - -#: admin/woocommerce-admin-dashboard.php:239 -#: classes/shortcodes/class-wc-shortcode-pay.php:98 -#: templates/checkout/thankyou.php:48 -#@ woocommerce -msgid "Total:" -msgstr "Suma:" - -#: classes/shortcodes/class-wc-shortcode-pay.php:103 -#: templates/checkout/thankyou.php:53 -#@ woocommerce -msgid "Payment method:" -msgstr "Metoda płatności:" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:49 -#@ woocommerce -msgid "My Account →" -msgstr "Moje konto →" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:56 -#, php-format -#@ woocommerce -msgid "Order %s made on %s" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:57 -#, fuzzy, php-format -#@ woocommerce -msgid "Order status: %s" -msgstr ". Status zamówienia: %s" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:63 -#: templates/order/tracking.php:31 -#@ woocommerce -msgid "Order Updates" -msgstr "Aktualizacje zamówienia" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:69 -#, fuzzy -#@ woocommerce -msgid "l jS \\of F Y, h:ia" -msgstr "l jS \\z F Y h:i:s A" - -#: classes/widgets/class-wc-widget-best-sellers.php:31 -#@ woocommerce -msgid "Display a list of your best selling products on your site." -msgstr "Pokaż na stronie listę najlepiej sprzedających się produktów." - -#: classes/widgets/class-wc-widget-best-sellers.php:33 -#@ woocommerce -msgid "WooCommerce Best Sellers" -msgstr "Najlepsi sprzedawcy WooCommerce" - -#: classes/widgets/class-wc-widget-best-sellers.php:71 -#@ woocommerce -msgid "Best Sellers" -msgstr "Najlepsi sprzedawcy" - -#: classes/widgets/class-wc-widget-best-sellers.php:192 -#: classes/widgets/class-wc-widget-cart.php:115 -#: classes/widgets/class-wc-widget-featured-products.php:172 -#: classes/widgets/class-wc-widget-layered-nav.php:349 -#: classes/widgets/class-wc-widget-onsale.php:177 -#: classes/widgets/class-wc-widget-price-filter.php:179 -#: classes/widgets/class-wc-widget-product-categories.php:185 -#: classes/widgets/class-wc-widget-product-search.php:91 -#: classes/widgets/class-wc-widget-product-tag-cloud.php:101 -#: classes/widgets/class-wc-widget-random-products.php:133 -#: classes/widgets/class-wc-widget-recent-products.php:169 -#: classes/widgets/class-wc-widget-recent-reviews.php:158 -#: classes/widgets/class-wc-widget-recently-viewed.php:166 -#: classes/widgets/class-wc-widget-top-rated-products.php:159 -#@ woocommerce -msgid "Title:" -msgstr "Tytuł:" - -#: classes/widgets/class-wc-widget-best-sellers.php:195 -#: classes/widgets/class-wc-widget-featured-products.php:175 -#: classes/widgets/class-wc-widget-onsale.php:180 -#: classes/widgets/class-wc-widget-random-products.php:138 -#: classes/widgets/class-wc-widget-recent-products.php:172 -#: classes/widgets/class-wc-widget-recent-reviews.php:161 -#: classes/widgets/class-wc-widget-recently-viewed.php:169 -#: classes/widgets/class-wc-widget-top-rated-products.php:162 -#@ woocommerce -msgid "Number of products to show:" -msgstr "Ilość produktów do pokazania:" - -#: classes/widgets/class-wc-widget-best-sellers.php:199 -#@ woocommerce -msgid "Hide free products" -msgstr "" - -#: classes/widgets/class-wc-widget-cart.php:33 -#@ woocommerce -msgid "Display the user's Cart in the sidebar." -msgstr "" - -#: classes/widgets/class-wc-widget-cart.php:35 -#@ woocommerce -msgid "WooCommerce Cart" -msgstr "" - -#: classes/widgets/class-wc-widget-cart.php:119 -#@ woocommerce -msgid "Hide if cart is empty" -msgstr "Schowaj jeśli koszyk jest pusty" - -#: classes/widgets/class-wc-widget-featured-products.php:35 -#@ woocommerce -msgid "Display a list of featured products on your site." -msgstr "Pokaż na stronie listę polecanych produktów." - -#: classes/widgets/class-wc-widget-featured-products.php:37 -#@ woocommerce -msgid "WooCommerce Featured Products" -msgstr "Polecane Produkty WooCommerce " - -#: classes/widgets/class-wc-widget-featured-products.php:75 -#@ woocommerce -msgid "Featured Products" -msgstr "Polecane Produkty" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:31 -#@ woocommerce -msgid "Shows active layered nav filters so users can see and deactivate them." -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:33 -#, fuzzy -#@ woocommerce -msgid "WooCommerce Layered Nav Filters" -msgstr "Nawigacja WooCommerce" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:62 -#@ woocommerce -msgid "Active filters" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:93 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -#, fuzzy -#@ woocommerce -msgid "Remove filter" -msgstr "Usuń obrazek" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#, fuzzy -#@ woocommerce -msgid "Min" -msgstr "cale" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -#, fuzzy -#@ woocommerce -msgid "Max" -msgstr "Podatek" - -#: classes/widgets/class-wc-widget-layered-nav.php:31 -#@ woocommerce -msgid "Shows a custom attribute in a widget which lets you narrow down the list of products when viewing product categories." -msgstr "Pokazuje wybrany atrybut, który pozwala na zawężenie listy produktów na stronach kategorii." - -#: classes/widgets/class-wc-widget-layered-nav.php:33 -#@ woocommerce -msgid "WooCommerce Layered Nav" -msgstr "Nawigacja WooCommerce" - -#: classes/widgets/class-wc-widget-layered-nav.php:100 -#, php-format -#@ woocommerce -msgid "Any %s" -msgstr "Dowolny %s" - -#: classes/widgets/class-wc-widget-layered-nav.php:352 -#@ woocommerce -msgid "Attribute:" -msgstr "Atrybut:" - -#: classes/widgets/class-wc-widget-layered-nav.php:363 -#@ woocommerce -msgid "Display Type:" -msgstr "Typ wyświetlania:" - -#: classes/widgets/class-wc-widget-layered-nav.php:365 -#@ woocommerce -msgid "List" -msgstr "Lista" - -#: classes/widgets/class-wc-widget-layered-nav.php:366 -#@ woocommerce -msgid "Dropdown" -msgstr "Lista wyboru" - -#: classes/widgets/class-wc-widget-layered-nav.php:369 -#@ woocommerce -msgid "Query Type:" -msgstr "Typ zapytania:" - -#: classes/widgets/class-wc-widget-layered-nav.php:371 -#@ woocommerce -msgid "AND" -msgstr "I" - -#: classes/widgets/class-wc-widget-layered-nav.php:372 -#@ woocommerce -msgid "OR" -msgstr "LUB" - -#: classes/widgets/class-wc-widget-login.php:31 -#@ woocommerce -msgid "Display a login area and \"My Account\" links in the sidebar." -msgstr "Wyświetlaj pole logowania i linki do \"Mojego konta\" w pasku bocznym." - -#: classes/widgets/class-wc-widget-login.php:33 -#@ woocommerce -msgid "WooCommerce Login" -msgstr "Login WooCommerce" - -#: classes/widgets/class-wc-widget-login.php:59 -#: classes/widgets/class-wc-widget-login.php:223 -#@ woocommerce -msgid "Customer Login" -msgstr "Login Klienta" - -#: classes/widgets/class-wc-widget-login.php:60 -#: classes/widgets/class-wc-widget-login.php:226 -#, php-format -#@ woocommerce -msgid "Welcome %s" -msgstr "Witaj %s" - -#: classes/widgets/class-wc-widget-login.php:76 -#@ woocommerce -msgid "My account" -msgstr "Moje konto" - -#: classes/widgets/class-wc-widget-login.php:77 -#@ woocommerce -msgid "Change my password" -msgstr "Zmień moje hasło" - -#: admin/woocommerce-admin-install.php:216 -#: classes/widgets/class-wc-widget-login.php:78 -#@ woocommerce -msgid "Logout" -msgstr "Wyloguj" - -#: classes/widgets/class-wc-widget-login.php:116 -#: templates/myaccount/form-login.php:29 -#: templates/myaccount/form-lost-password.php:24 -#: templates/shop/form-login.php:20 -#, fuzzy -#@ woocommerce -msgid "Username or email" -msgstr "Nazwa użytkownika" - -#: classes/widgets/class-wc-widget-login.php:118 -#: templates/myaccount/form-login.php:33 -#: templates/myaccount/form-login.php:85 -#: templates/shop/form-login.php:24 -#@ woocommerce -msgid "Password" -msgstr "Hasło" - -#: classes/widgets/class-wc-widget-login.php:120 -#: woocommerce-functions.php:945 -#@ woocommerce -msgid "Login →" -msgstr "Zaloguj się →" - -#: classes/widgets/class-wc-widget-login.php:120 -#@ woocommerce -msgid "Lost password?" -msgstr "Straciłeś hasło?" - -#: classes/widgets/class-wc-widget-login.php:222 -#@ woocommerce -msgid "Logged out title:" -msgstr "Tytuł do wylogowania:" - -#: classes/widgets/class-wc-widget-login.php:225 -#@ woocommerce -msgid "Logged in title:" -msgstr "Tytuł do zalogowania:" - -#: classes/widgets/class-wc-widget-onsale.php:31 -#@ woocommerce -msgid "Display a list of your on-sale products on your site." -msgstr "Pokaż listę sprzedawanych produktów na swojej stronie." - -#: classes/widgets/class-wc-widget-onsale.php:33 -#@ woocommerce -msgid "WooCommerce On-sale" -msgstr "Na sprzedaż WooCommerce" - -#: classes/widgets/class-wc-widget-onsale.php:70 -#@ woocommerce -msgid "On Sale" -msgstr "Na sprzedaż" - -#: classes/widgets/class-wc-widget-price-filter.php:33 -#@ woocommerce -msgid "Shows a price filter slider in a widget which lets you narrow down the list of shown products when viewing product categories." -msgstr "Pokazuje suwak filtra cen w widgecie, który pozwala na filtrowanie listy pokazywanych produktów na stronach kategorii." - -#: classes/widgets/class-wc-widget-price-filter.php:35 -#@ woocommerce -msgid "WooCommerce Price Filter" -msgstr "Filtr cenowy WooCommerce" - -#: classes/widgets/class-wc-widget-price-filter.php:136 -#@ woocommerce -msgid "Min price" -msgstr "Cena min." - -#: classes/widgets/class-wc-widget-price-filter.php:137 -#@ woocommerce -msgid "Max price" -msgstr "Cena max." - -#: classes/widgets/class-wc-widget-price-filter.php:138 -#@ woocommerce -msgid "Filter" -msgstr "Filtruj" - -#: classes/widgets/class-wc-widget-price-filter.php:140 -#@ woocommerce -msgid "Price:" -msgstr "Cena:" - -#: classes/widgets/class-wc-widget-price-filter.php:162 -#@ woocommerce -msgid "Filter by price" -msgstr "Filtruj wg ceny" - -#: classes/widgets/class-wc-widget-product-categories.php:33 -#@ woocommerce -msgid "A list or dropdown of product categories." -msgstr "Rozwijana lista kategorii." - -#: classes/widgets/class-wc-widget-product-categories.php:35 -#@ woocommerce -msgid "WooCommerce Product Categories" -msgstr "Kategorie Produktów WooCommerce" - -#: classes/widgets/class-wc-widget-product-categories.php:57 -#: woocommerce.php:787 -#: woocommerce.php:789 -#@ woocommerce -msgid "Product Categories" -msgstr "Kategorie produktów" - -#: classes/widgets/class-wc-widget-product-categories.php:129 -#@ woocommerce -msgid "No product categories exist." -msgstr "" - -#: classes/widgets/class-wc-widget-product-categories.php:188 -#@ woocommerce -msgid "Order by:" -msgstr "Sortuj wg:" - -#: classes/widgets/class-wc-widget-product-categories.php:190 -#@ woocommerce -msgid "Category Order" -msgstr "Kolejność kategorii" - -#: admin/post-types/product.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:372 -#: admin/post-types/writepanels/writepanel-product_data.php:451 -#: admin/woocommerce-admin-attributes.php:232 -#: admin/woocommerce-admin-attributes.php:268 -#: admin/woocommerce-admin-attributes.php:306 -#: admin/woocommerce-admin-attributes.php:329 -#: admin/woocommerce-admin-attributes.php:373 -#: admin/woocommerce-admin-attributes.php:398 -#: admin/woocommerce-admin-init.php:450 -#: classes/widgets/class-wc-widget-product-categories.php:191 -#: templates/single-product-reviews.php:99 -#: woocommerce-ajax.php:1244 -#@ woocommerce -msgid "Name" -msgstr "Nazwa" - -#: classes/widgets/class-wc-widget-product-categories.php:195 -#@ woocommerce -msgid "Show as dropdown" -msgstr "Pokaż jako listę rozwijaną" - -#: classes/widgets/class-wc-widget-product-categories.php:198 -#@ woocommerce -msgid "Show post counts" -msgstr "Pokaż ilość wpisów" - -#: classes/widgets/class-wc-widget-product-categories.php:201 -#@ woocommerce -msgid "Show hierarchy" -msgstr "Pokaż hierarchię" - -#: classes/widgets/class-wc-widget-product-categories.php:204 -#@ woocommerce -msgid "Only show children for the current category" -msgstr "" - -#: classes/widgets/class-wc-widget-product-search.php:31 -#@ woocommerce -msgid "A Search box for products only." -msgstr "Okno wyszukiwania tylko dla produktów." - -#: classes/widgets/class-wc-widget-product-search.php:33 -#@ woocommerce -msgid "WooCommerce Product Search" -msgstr "Wyszukiwarka Produktów WooCommerce " - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:31 -#@ woocommerce -msgid "Your most used product tags in cloud format." -msgstr "Najczęściej używane produkty w formacie chmury tagów." - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:33 -#@ woocommerce -msgid "WooCommerce Product Tags" -msgstr "Tagi produktów WooCommerce" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:58 -#: woocommerce.php:823 -#: woocommerce.php:825 -#@ woocommerce -msgid "Product Tags" -msgstr "Tagi produktów" - -#: classes/widgets/class-wc-widget-random-products.php:24 -#@ woocommerce -msgid "WooCommerce Random Products" -msgstr "Losowe produkty" - -#: classes/widgets/class-wc-widget-random-products.php:27 -#@ woocommerce -msgid "Display a list of random products on your site." -msgstr "Pokaż listę losowych produktów w sklepie." - -#: classes/widgets/class-wc-widget-random-products.php:46 -#@ woocommerce -msgid "Random Products" -msgstr "Losowe produkty" - -#: classes/widgets/class-wc-widget-random-products.php:144 -#: classes/widgets/class-wc-widget-recent-products.php:176 -#@ woocommerce -msgid "Show hidden product variations" -msgstr "Pokaż ukryte warianty produktu" - -#: classes/widgets/class-wc-widget-recent-products.php:31 -#@ woocommerce -msgid "Display a list of your most recent products on your site." -msgstr "Pokaż listę najnowszych produktów na stronie." - -#: classes/widgets/class-wc-widget-recent-products.php:33 -#@ woocommerce -msgid "WooCommerce Recent Products" -msgstr "Najnowsze produkty WooCommerce" - -#: classes/widgets/class-wc-widget-recent-products.php:70 -#@ woocommerce -msgid "New Products" -msgstr "Nowe produkty" - -#: classes/widgets/class-wc-widget-recent-reviews.php:31 -#@ woocommerce -msgid "Display a list of your most recent reviews on your site." -msgstr "Pokaż listę ostatnio oglądanych recenzji na Twojej stronie." - -#: admin/woocommerce-admin-dashboard.php:45 -#: classes/widgets/class-wc-widget-recent-reviews.php:33 -#@ woocommerce -msgid "WooCommerce Recent Reviews" -msgstr "Najnowsze recenzje WooCommerce" - -#: classes/widgets/class-wc-widget-recent-reviews.php:71 -#@ woocommerce -msgid "Recent Reviews" -msgstr "Najnowsze recenzje" - -#: templates/single-product/review.php:26 -#, fuzzy, php-format -#@ woocommerce -msgid "Rated %d out of 5" -msgstr "Oceniony %s na 5." - -#: classes/widgets/class-wc-widget-recent-reviews.php:97 -#, php-format -#@ woocommerce -msgctxt "by comment author" -msgid "by %1$s" -msgstr "" - -#: classes/widgets/class-wc-widget-recently-viewed.php:31 -#@ woocommerce -msgid "Display a list of recently viewed products." -msgstr "Pokaż listę ostatnio oglądanych produktów." - -#: classes/widgets/class-wc-widget-recently-viewed.php:33 -#@ woocommerce -msgid "WooCommerce Recently Viewed Products" -msgstr "Ostatnio oglądane produkty WooCommerce" - -#: classes/widgets/class-wc-widget-recently-viewed.php:76 -#@ woocommerce -msgid "Recently viewed" -msgstr "Ostatnio oglądane" - -#: classes/widgets/class-wc-widget-top-rated-products.php:33 -#@ woocommerce -msgid "Display a list of top rated products on your site." -msgstr "Pokaż listę najwyżej ocenianych produktów na Twojej stronie." - -#: classes/widgets/class-wc-widget-top-rated-products.php:35 -#@ woocommerce -msgid "WooCommerce Top Rated Products" -msgstr "Najwyżej oceniane produkty WooCommerce" - -#: classes/widgets/class-wc-widget-top-rated-products.php:72 -#@ woocommerce -msgid "Top Rated Products" -msgstr "Najwyżej oceniane produkty" - -#: i18n/states/AU.php:13 -#@ woocommerce -msgid "Australian Capital Territory" -msgstr "Australijskie Terytorium Stołeczne" - -#: i18n/states/AU.php:14 -#@ woocommerce -msgid "New South Wales" -msgstr "Nowa Południowa Walia" - -#: i18n/states/AU.php:15 -#@ woocommerce -msgid "Northern Territory" -msgstr "Terytorium Północne" - -#: i18n/states/AU.php:16 -#@ woocommerce -msgid "Queensland" -msgstr "Queensland" - -#: i18n/states/AU.php:17 -#@ woocommerce -msgid "South Australia" -msgstr "Australia Południowa" - -#: i18n/states/AU.php:18 -#@ woocommerce -msgid "Tasmania" -msgstr "Tasmania" - -#: i18n/states/AU.php:19 -#@ woocommerce -msgid "Victoria" -msgstr "Wiktoria (stan Australii)" - -#: i18n/states/AU.php:20 -#@ woocommerce -msgid "Western Australia" -msgstr "Australia Zachodnia" - -#: i18n/states/BR.php:13 -#@ woocommerce -msgid "Acre" -msgstr "Acre" - -#: i18n/states/BR.php:14 -#@ woocommerce -msgid "Alagoas" -msgstr "Alagoas" - -#: i18n/states/BR.php:15 -#@ woocommerce -msgid "Amapá" -msgstr "Amapá" - -#: i18n/states/BR.php:16 -#@ woocommerce -msgid "Amazonas" -msgstr "Amazonas" - -#: i18n/states/BR.php:17 -#@ woocommerce -msgid "Bahia" -msgstr "Bahia" - -#: i18n/states/BR.php:18 -#@ woocommerce -msgid "Ceará" -msgstr "Ceará" - -#: i18n/states/BR.php:19 -#, fuzzy -#@ woocommerce -msgid "Distrito Federal" -msgstr "Dystrykt federalny" - -#: i18n/states/BR.php:20 -#@ woocommerce -msgid "Espírito Santo" -msgstr "" - -#: i18n/states/BR.php:21 -#@ woocommerce -msgid "Goiás" -msgstr "Goiás" - -#: i18n/states/BR.php:22 -#@ woocommerce -msgid "Maranhão" -msgstr "Maranhão" - -#: i18n/states/BR.php:23 -#, fuzzy -#@ woocommerce -msgid "Mato Grosso" -msgstr "Mato grosso" - -#: i18n/states/BR.php:24 -#, fuzzy -#@ woocommerce -msgid "Mato Grosso do Sul" -msgstr "Mato grosso do sul" - -#: i18n/states/BR.php:25 -#, fuzzy -#@ woocommerce -msgid "Minas Gerais" -msgstr "Minas gerais" - -#: i18n/states/BR.php:26 -#@ woocommerce -msgid "Pará" -msgstr "Pará" - -#: i18n/states/BR.php:27 -#@ woocommerce -msgid "Paraíba" -msgstr "" - -#: i18n/states/BR.php:28 -#@ woocommerce -msgid "Paraná" -msgstr "Paraná" - -#: i18n/states/BR.php:29 -#@ woocommerce -msgid "Pernambuco" -msgstr "Pernambuco" - -#: i18n/states/BR.php:30 -#@ woocommerce -msgid "Piauí" -msgstr "Piauí" - -#: i18n/states/BR.php:31 -#, fuzzy -#@ woocommerce -msgid "Rio de Janeiro" -msgstr "Rio de janeiro" - -#: i18n/states/BR.php:32 -#, fuzzy -#@ woocommerce -msgid "Rio Grande do Norte" -msgstr "Rio grande do norte" - -#: i18n/states/BR.php:33 -#, fuzzy -#@ woocommerce -msgid "Rio Grande do Sul" -msgstr "Rio grande do sul" - -#: i18n/states/BR.php:34 -#@ woocommerce -msgid "Rondônia" -msgstr "Rondônia" - -#: i18n/states/BR.php:35 -#@ woocommerce -msgid "Roraima" -msgstr "Roraima" - -#: i18n/states/BR.php:36 -#, fuzzy -#@ woocommerce -msgid "Santa Catarina" -msgstr "Santa catarina" - -#: i18n/states/BR.php:37 -#, fuzzy -#@ woocommerce -msgid "São Paulo" -msgstr "São paulo" - -#: i18n/states/BR.php:38 -#@ woocommerce -msgid "Sergipe" -msgstr "Sergipe" - -#: i18n/states/BR.php:39 -#@ woocommerce -msgid "Tocantins" -msgstr "Tocantins" - -#: i18n/states/CA.php:13 -#@ woocommerce -msgid "Alberta" -msgstr "Alberta" - -#: i18n/states/CA.php:14 -#@ woocommerce -msgid "British Columbia" -msgstr "Kolumbia Brytyjska" - -#: i18n/states/CA.php:15 -#@ woocommerce -msgid "Manitoba" -msgstr "Manitoba" - -#: i18n/states/CA.php:16 -#@ woocommerce -msgid "New Brunswick" -msgstr "Nowy Brunszwik" - -#: i18n/states/CA.php:17 -#@ woocommerce -msgid "Newfoundland" -msgstr "Nowa Fundlandia i Labrador" - -#: i18n/states/CA.php:18 -#@ woocommerce -msgid "Northwest Territories" -msgstr "Terytoria Północno-Zachodnie" - -#: i18n/states/CA.php:19 -#@ woocommerce -msgid "Nova Scotia" -msgstr "Nowa Szkocja" - -#: i18n/states/CA.php:20 -#@ woocommerce -msgid "Nunavut" -msgstr "Nunavut" - -#: i18n/states/CA.php:21 -#@ woocommerce -msgid "Ontario" -msgstr "Ontario" - -#: i18n/states/CA.php:22 -#@ woocommerce -msgid "Prince Edward Island" -msgstr "Wyspa Księcia Edwarda" - -#: i18n/states/CA.php:23 -#@ woocommerce -msgid "Quebec" -msgstr "Quebec" - -#: i18n/states/CA.php:24 -#@ woocommerce -msgid "Saskatchewan" -msgstr "Saskatchewan" - -#: i18n/states/CA.php:25 -#@ woocommerce -msgid "Yukon Territory" -msgstr "Jukon" - -#: i18n/states/CN.php:13 -#@ woocommerce -msgid "Yunnan / 云南" -msgstr "" - -#: i18n/states/CN.php:14 -#@ woocommerce -msgid "Beijing / 北京" -msgstr "" - -#: i18n/states/CN.php:15 -#@ woocommerce -msgid "Tianjin / 天津" -msgstr "" - -#: i18n/states/CN.php:16 -#@ woocommerce -msgid "Hebei / 河北" -msgstr "" - -#: i18n/states/CN.php:17 -#@ woocommerce -msgid "Shanxi / 山西" -msgstr "" - -#: i18n/states/CN.php:18 -#@ woocommerce -msgid "Inner Mongolia / 內蒙古" -msgstr "" - -#: i18n/states/CN.php:19 -#@ woocommerce -msgid "Liaoning / 辽宁" -msgstr "" - -#: i18n/states/CN.php:20 -#@ woocommerce -msgid "Jilin / 吉林" -msgstr "" - -#: i18n/states/CN.php:21 -#@ woocommerce -msgid "Heilongjiang / 黑龙江" -msgstr "" - -#: i18n/states/CN.php:22 -#@ woocommerce -msgid "Shanghai / 上海" -msgstr "" - -#: i18n/states/CN.php:23 -#@ woocommerce -msgid "Jiangsu / 江苏" -msgstr "" - -#: i18n/states/CN.php:24 -#@ woocommerce -msgid "Zhejiang / 浙江" -msgstr "" - -#: i18n/states/CN.php:25 -#@ woocommerce -msgid "Anhui / 安徽" -msgstr "" - -#: i18n/states/CN.php:26 -#@ woocommerce -msgid "Fujian / 福建" -msgstr "" - -#: i18n/states/CN.php:27 -#@ woocommerce -msgid "Jiangxi / 江西" -msgstr "" - -#: i18n/states/CN.php:28 -#@ woocommerce -msgid "Shandong / 山东" -msgstr "" - -#: i18n/states/CN.php:29 -#@ woocommerce -msgid "Henan / 河南" -msgstr "" - -#: i18n/states/CN.php:30 -#@ woocommerce -msgid "Hubei / 湖北" -msgstr "" - -#: i18n/states/CN.php:31 -#@ woocommerce -msgid "Hunan / 湖南" -msgstr "" - -#: i18n/states/CN.php:32 -#@ woocommerce -msgid "Guangdong / 广东" -msgstr "" - -#: i18n/states/CN.php:33 -#@ woocommerce -msgid "Guangxi Zhuang / 广西壮族" -msgstr "" - -#: i18n/states/CN.php:34 -#@ woocommerce -msgid "Hainan / 海南" -msgstr "" - -#: i18n/states/CN.php:35 -#@ woocommerce -msgid "Chongqing / 重庆" -msgstr "" - -#: i18n/states/CN.php:36 -#@ woocommerce -msgid "Sichuan / 四川" -msgstr "" - -#: i18n/states/CN.php:37 -#@ woocommerce -msgid "Guizhou / 贵州" -msgstr "" - -#: i18n/states/CN.php:38 -#@ woocommerce -msgid "Shaanxi / 陕西" -msgstr "" - -#: i18n/states/CN.php:39 -#@ woocommerce -msgid "Gansu / 甘肃" -msgstr "" - -#: i18n/states/CN.php:40 -#@ woocommerce -msgid "Qinghai / 青海" -msgstr "" - -#: i18n/states/CN.php:41 -#@ woocommerce -msgid "Ningxia Hui / 宁夏" -msgstr "" - -#: i18n/states/CN.php:42 -#@ woocommerce -msgid "Macau / 澳门" -msgstr "" - -#: i18n/states/CN.php:43 -#@ woocommerce -msgid "Tibet / 西藏" -msgstr "" - -#: i18n/states/CN.php:44 -#@ woocommerce -msgid "Xinjiang / 新疆" -msgstr "" - -#: i18n/states/HK.php:13 -#@ woocommerce -msgid "Hong Kong Island" -msgstr "Wyspa Hongkong" - -#: i18n/states/HK.php:14 -#@ woocommerce -msgid "Kowloon" -msgstr "" - -#: i18n/states/HK.php:15 -#@ woocommerce -msgid "New Territories" -msgstr "Nowe Terytoria" - -#: i18n/states/HZ.php:13 -#, fuzzy -#@ woocommerce -msgid "Auckland" -msgstr "Islandia" - -#: i18n/states/HZ.php:14 -#@ woocommerce -msgid "Bay of Plenty" -msgstr "" - -#: i18n/states/HZ.php:15 -#@ woocommerce -msgid "Canterbury" -msgstr "" - -#: i18n/states/HZ.php:16 -#@ woocommerce -msgid "Hawke’s Bay" -msgstr "" - -#: i18n/states/HZ.php:17 -#@ woocommerce -msgid "Manawatu-Wanganui" -msgstr "" - -#: i18n/states/HZ.php:18 -#@ woocommerce -msgid "Marlborough" -msgstr "" - -#: i18n/states/HZ.php:19 -#@ woocommerce -msgid "Nelson" -msgstr "" - -#: i18n/states/HZ.php:20 -#, fuzzy -#@ woocommerce -msgid "Northland" -msgstr "Holandia" - -#: i18n/states/HZ.php:21 -#@ woocommerce -msgid "Otago" -msgstr "" - -#: i18n/states/HZ.php:22 -#, fuzzy -#@ woocommerce -msgid "Southland" -msgstr "Polska" - -#: i18n/states/HZ.php:23 -#@ woocommerce -msgid "Taranaki" -msgstr "" - -#: i18n/states/HZ.php:24 -#, fuzzy -#@ woocommerce -msgid "Tasman" -msgstr "Tasmania" - -#: i18n/states/HZ.php:25 -#@ woocommerce -msgid "Waikato" -msgstr "" - -#: i18n/states/HZ.php:26 -#, fuzzy -#@ woocommerce -msgid "Wellington" -msgstr "Waszyngton" - -#: i18n/states/HZ.php:27 -#, fuzzy -#@ woocommerce -msgid "West Coast" -msgstr "Domyślny koszt" - -#: i18n/states/IN.php:13 -#@ woocommerce -msgid "Andra Pradesh" -msgstr "" - -#: i18n/states/IN.php:14 -#@ woocommerce -msgid "Arunachal Pradesh" -msgstr "" - -#: i18n/states/IN.php:15 -#@ woocommerce -msgid "Assam" -msgstr "" - -#: i18n/states/IN.php:16 -#@ woocommerce -msgid "Bihar" -msgstr "" - -#: i18n/states/IN.php:17 -#@ woocommerce -msgid "Chhattisgarh" -msgstr "" - -#: i18n/states/IN.php:18 -#, fuzzy -#@ woocommerce -msgid "Goa" -msgstr "Gruzja" - -#: i18n/states/IN.php:19 -#@ woocommerce -msgid "Gujarat" -msgstr "" - -#: i18n/states/IN.php:20 -#, fuzzy -#@ woocommerce -msgid "Haryana" -msgstr "Gujana" - -#: i18n/states/IN.php:21 -#@ woocommerce -msgid "Himachal Pradesh" -msgstr "" - -#: i18n/states/IN.php:22 -#@ woocommerce -msgid "Jammu and Kashmir" -msgstr "" - -#: i18n/states/IN.php:23 -#@ woocommerce -msgid "Jharkhand" -msgstr "" - -#: i18n/states/IN.php:24 -#@ woocommerce -msgid "Karnataka" -msgstr "" - -#: i18n/states/IN.php:25 -#, fuzzy -#@ woocommerce -msgid "Kerala" -msgstr "Ustawienia główne" - -#: i18n/states/IN.php:26 -#@ woocommerce -msgid "Madhya Pradesh" -msgstr "" - -#: i18n/states/IN.php:27 -#@ woocommerce -msgid "Maharashtra" -msgstr "" - -#: i18n/states/IN.php:28 -#@ woocommerce -msgid "Manipur" -msgstr "" - -#: i18n/states/IN.php:29 -#, fuzzy -#@ woocommerce -msgid "Meghalaya" -msgstr "Malezja" - -#: i18n/states/IN.php:30 -#@ woocommerce -msgid "Mizoram" -msgstr "" - -#: i18n/states/IN.php:31 -#, fuzzy -#@ woocommerce -msgid "Nagaland" -msgstr "Nowa Zelandia" - -#: i18n/states/IN.php:32 -#@ woocommerce -msgid "Orissa" -msgstr "" - -#: i18n/states/IN.php:33 -#@ woocommerce -msgid "Punjab" -msgstr "" - -#: i18n/states/IN.php:34 -#@ woocommerce -msgid "Rajasthan" -msgstr "" - -#: i18n/states/IN.php:35 -#@ woocommerce -msgid "Sikkim" -msgstr "" - -#: i18n/states/IN.php:36 -#@ woocommerce -msgid "Tamil Nadu" -msgstr "" - -#: i18n/states/IN.php:37 -#@ woocommerce -msgid "Tripura" -msgstr "" - -#: i18n/states/IN.php:38 -#@ woocommerce -msgid "Uttaranchal" -msgstr "" - -#: i18n/states/IN.php:39 -#@ woocommerce -msgid "Uttar Pradesh" -msgstr "" - -#: i18n/states/IN.php:40 -#@ woocommerce -msgid "West Bengal" -msgstr "" - -#: i18n/states/IN.php:41 -#, fuzzy -#@ woocommerce -msgid "Andaman and Nicobar Islands" -msgstr "Turks i Caicos" - -#: i18n/states/IN.php:42 -#, fuzzy -#@ woocommerce -msgid "Chandigarh" -msgstr "Zmień" - -#: i18n/states/IN.php:43 -#@ woocommerce -msgid "Dadar and Nagar Haveli" -msgstr "" - -#: i18n/states/IN.php:44 -#@ woocommerce -msgid "Daman and Diu" -msgstr "" - -#: i18n/states/IN.php:45 -#@ woocommerce -msgid "Delhi" -msgstr "" - -#: i18n/states/IN.php:46 -#@ woocommerce -msgid "Lakshadeep" -msgstr "" - -#: i18n/states/IN.php:47 -#@ woocommerce -msgid "Pondicherry (Puducherry)" -msgstr "" - -#: i18n/states/MY.php:13 -#@ woocommerce -msgid "Johor" -msgstr "" - -#: i18n/states/MY.php:14 -#@ woocommerce -msgid "Kedah" -msgstr "" - -#: i18n/states/MY.php:15 -#@ woocommerce -msgid "Kelantan" -msgstr "" - -#: i18n/states/MY.php:16 -#@ woocommerce -msgid "Melaka" -msgstr "" - -#: i18n/states/MY.php:17 -#@ woocommerce -msgid "Negeri Sembilan" -msgstr "" - -#: i18n/states/MY.php:18 -#, fuzzy -#@ woocommerce -msgid "Pahang" -msgstr "Zmień" - -#: i18n/states/MY.php:19 -#@ woocommerce -msgid "Perak" -msgstr "" - -#: i18n/states/MY.php:20 -#@ woocommerce -msgid "Perlis" -msgstr "" - -#: i18n/states/MY.php:21 -#@ woocommerce -msgid "Pulau Pinang" -msgstr "" - -#: i18n/states/MY.php:22 -#@ woocommerce -msgid "Sabah" -msgstr "" - -#: i18n/states/MY.php:23 -#@ woocommerce -msgid "Sarawak" -msgstr "" - -#: i18n/states/MY.php:24 -#@ woocommerce -msgid "Selangor" -msgstr "" - -#: i18n/states/MY.php:25 -#@ woocommerce -msgid "Terengganu" -msgstr "" - -#: i18n/states/MY.php:26 -#@ woocommerce -msgid "W.P. Kuala Lumpur" -msgstr "" - -#: i18n/states/MY.php:27 -#@ woocommerce -msgid "W.P. Labuan" -msgstr "" - -#: i18n/states/MY.php:28 -#@ woocommerce -msgid "W.P. Putrajaya" -msgstr "" - -#: i18n/states/TH.php:13 -#@ woocommerce -msgid "Amnat Charoen (อำนาจเจริญ)" -msgstr "" - -#: i18n/states/TH.php:14 -#@ woocommerce -msgid "Ang Thong (อ่างทอง)" -msgstr "" - -#: i18n/states/TH.php:15 -#@ woocommerce -msgid "Ayutthaya (พระนครศรีอยุธยา)" -msgstr "" - -#: i18n/states/TH.php:16 -#@ woocommerce -msgid "Bangkok (กรุงเทพมหานคร)" -msgstr "" - -#: i18n/states/TH.php:17 -#@ woocommerce -msgid "Bueng Kan (บึงกาฬ)" -msgstr "" - -#: i18n/states/TH.php:18 -#@ woocommerce -msgid "Buri Ram (บุรีรัมย์)" -msgstr "" - -#: i18n/states/TH.php:19 -#@ woocommerce -msgid "Chachoengsao (ฉะเชิงเทรา)" -msgstr "" - -#: i18n/states/TH.php:20 -#@ woocommerce -msgid "Chai Nat (ชัยนาท)" -msgstr "" - -#: i18n/states/TH.php:21 -#@ woocommerce -msgid "Chaiyaphum (ชัยภูมิ)" -msgstr "" - -#: i18n/states/TH.php:22 -#@ woocommerce -msgid "Chanthaburi (จันทบุรี)" -msgstr "" - -#: i18n/states/TH.php:23 -#@ woocommerce -msgid "Chiang Mai (เชียงใหม่)" -msgstr "" - -#: i18n/states/TH.php:24 -#@ woocommerce -msgid "Chiang Rai (เชียงราย)" -msgstr "" - -#: i18n/states/TH.php:25 -#@ woocommerce -msgid "Chonburi (ชลบุรี)" -msgstr "" - -#: i18n/states/TH.php:26 -#@ woocommerce -msgid "Chumphon (ชุมพร)" -msgstr "" - -#: i18n/states/TH.php:27 -#@ woocommerce -msgid "Kalasin (กาฬสินธุ์)" -msgstr "" - -#: i18n/states/TH.php:28 -#@ woocommerce -msgid "Kamphaeng Phet (กำแพงเพชร)" -msgstr "" - -#: i18n/states/TH.php:29 -#@ woocommerce -msgid "Kanchanaburi (กาญจนบุรี)" -msgstr "" - -#: i18n/states/TH.php:30 -#@ woocommerce -msgid "Khon Kaen (ขอนแก่น)" -msgstr "" - -#: i18n/states/TH.php:31 -#@ woocommerce -msgid "Krabi (กระบี่)" -msgstr "" - -#: i18n/states/TH.php:32 -#@ woocommerce -msgid "Lampang (ลำปาง)" -msgstr "" - -#: i18n/states/TH.php:33 -#@ woocommerce -msgid "Lamphun (ลำพูน)" -msgstr "" - -#: i18n/states/TH.php:34 -#@ woocommerce -msgid "Loei (เลย)" -msgstr "" - -#: i18n/states/TH.php:35 -#@ woocommerce -msgid "Lopburi (ลพบุรี)" -msgstr "" - -#: i18n/states/TH.php:36 -#@ woocommerce -msgid "Mae Hong Son (แม่ฮ่องสอน)" -msgstr "" - -#: i18n/states/TH.php:37 -#@ woocommerce -msgid "Maha Sarakham (มหาสารคาม)" -msgstr "" - -#: i18n/states/TH.php:38 -#@ woocommerce -msgid "Mukdahan (มุกดาหาร)" -msgstr "" - -#: i18n/states/TH.php:39 -#@ woocommerce -msgid "Nakhon Nayok (นครนายก)" -msgstr "" - -#: i18n/states/TH.php:40 -#@ woocommerce -msgid "Nakhon Pathom (นครปฐม)" -msgstr "" - -#: i18n/states/TH.php:41 -#@ woocommerce -msgid "Nakhon Phanom (นครพนม)" -msgstr "" - -#: i18n/states/TH.php:42 -#@ woocommerce -msgid "Nakhon Ratchasima (นครราชสีมา)" -msgstr "" - -#: i18n/states/TH.php:43 -#@ woocommerce -msgid "Nakhon Sawan (นครสวรรค์)" -msgstr "" - -#: i18n/states/TH.php:44 -#@ woocommerce -msgid "Nakhon Si Thammarat (นครศรีธรรมราช)" -msgstr "" - -#: i18n/states/TH.php:45 -#@ woocommerce -msgid "Nan (น่าน)" -msgstr "" - -#: i18n/states/TH.php:46 -#@ woocommerce -msgid "Narathiwat (นราธิวาส)" -msgstr "" - -#: i18n/states/TH.php:47 -#@ woocommerce -msgid "Nong Bua Lam Phu (หนองบัวลำภู)" -msgstr "" - -#: i18n/states/TH.php:48 -#@ woocommerce -msgid "Nong Khai (หนองคาย)" -msgstr "" - -#: i18n/states/TH.php:49 -#@ woocommerce -msgid "Nonthaburi (นนทบุรี)" -msgstr "" - -#: i18n/states/TH.php:50 -#@ woocommerce -msgid "Pathum Thani (ปทุมธานี)" -msgstr "" - -#: i18n/states/TH.php:51 -#@ woocommerce -msgid "Pattani (ปัตตานี)" -msgstr "" - -#: i18n/states/TH.php:52 -#@ woocommerce -msgid "Phang Nga (พังงา)" -msgstr "" - -#: i18n/states/TH.php:53 -#@ woocommerce -msgid "Phatthalung (พัทลุง)" -msgstr "" - -#: i18n/states/TH.php:54 -#@ woocommerce -msgid "Phayao (พะเยา)" -msgstr "" - -#: i18n/states/TH.php:55 -#@ woocommerce -msgid "Phetchabun (เพชรบูรณ์)" -msgstr "" - -#: i18n/states/TH.php:56 -#@ woocommerce -msgid "Phetchaburi (เพชรบุรี)" -msgstr "" - -#: i18n/states/TH.php:57 -#@ woocommerce -msgid "Phichit (พิจิตร)" -msgstr "" - -#: i18n/states/TH.php:58 -#@ woocommerce -msgid "Phitsanulok (พิษณุโลก)" -msgstr "" - -#: i18n/states/TH.php:59 -#@ woocommerce -msgid "Phrae (แพร่)" -msgstr "" - -#: i18n/states/TH.php:60 -#@ woocommerce -msgid "Phuket (ภูเก็ต)" -msgstr "" - -#: i18n/states/TH.php:61 -#@ woocommerce -msgid "Prachin Buri (ปราจีนบุรี)" -msgstr "" - -#: i18n/states/TH.php:62 -#@ woocommerce -msgid "Prachuap Khiri Khan (ประจวบคีรีขันธ์)" -msgstr "" - -#: i18n/states/TH.php:63 -#@ woocommerce -msgid "Ranong (ระนอง)" -msgstr "" - -#: i18n/states/TH.php:64 -#@ woocommerce -msgid "Ratchaburi (ราชบุรี)" -msgstr "" - -#: i18n/states/TH.php:65 -#@ woocommerce -msgid "Rayong (ระยอง)" -msgstr "" - -#: i18n/states/TH.php:66 -#@ woocommerce -msgid "Roi Et (ร้อยเอ็ด)" -msgstr "" - -#: i18n/states/TH.php:67 -#@ woocommerce -msgid "Sa Kaeo (สระแก้ว)" -msgstr "" - -#: i18n/states/TH.php:68 -#@ woocommerce -msgid "Sakon Nakhon (สกลนคร)" -msgstr "" - -#: i18n/states/TH.php:69 -#@ woocommerce -msgid "Samut Prakan (สมุทรปราการ)" -msgstr "" - -#: i18n/states/TH.php:70 -#@ woocommerce -msgid "Samut Sakhon (สมุทรสาคร)" -msgstr "" - -#: i18n/states/TH.php:71 -#@ woocommerce -msgid "Samut Songkhram (สมุทรสงคราม)" -msgstr "" - -#: i18n/states/TH.php:72 -#@ woocommerce -msgid "Saraburi (สระบุรี)" -msgstr "" - -#: i18n/states/TH.php:73 -#@ woocommerce -msgid "Satun (สตูล)" -msgstr "" - -#: i18n/states/TH.php:74 -#@ woocommerce -msgid "Sing Buri (สิงห์บุรี)" -msgstr "" - -#: i18n/states/TH.php:75 -#@ woocommerce -msgid "Sisaket (ศรีสะเกษ)" -msgstr "" - -#: i18n/states/TH.php:76 -#@ woocommerce -msgid "Songkhla (สงขลา)" -msgstr "" - -#: i18n/states/TH.php:77 -#@ woocommerce -msgid "Sukhothai (สุโขทัย)" -msgstr "" - -#: i18n/states/TH.php:78 -#@ woocommerce -msgid "Suphan Buri (สุพรรณบุรี)" -msgstr "" - -#: i18n/states/TH.php:79 -#@ woocommerce -msgid "Surat Thani (สุราษฎร์ธานี)" -msgstr "" - -#: i18n/states/TH.php:80 -#@ woocommerce -msgid "Surin (สุรินทร์)" -msgstr "" - -#: i18n/states/TH.php:81 -#@ woocommerce -msgid "Tak (ตาก)" -msgstr "" - -#: i18n/states/TH.php:82 -#@ woocommerce -msgid "Trang (ตรัง)" -msgstr "" - -#: i18n/states/TH.php:83 -#@ woocommerce -msgid "Trat (ตราด)" -msgstr "" - -#: i18n/states/TH.php:84 -#@ woocommerce -msgid "Ubon Ratchathani (อุบลราชธานี)" -msgstr "" - -#: i18n/states/TH.php:85 -#@ woocommerce -msgid "Udon Thani (อุดรธานี)" -msgstr "" - -#: i18n/states/TH.php:86 -#@ woocommerce -msgid "Uthai Thani (อุทัยธานี)" -msgstr "" - -#: i18n/states/TH.php:87 -#@ woocommerce -msgid "Uttaradit (อุตรดิตถ์)" -msgstr "" - -#: i18n/states/TH.php:88 -#@ woocommerce -msgid "Yala (ยะลา)" -msgstr "" - -#: i18n/states/TH.php:89 -#@ woocommerce -msgid "Yasothon (ยโสธร)" -msgstr "" - -#: i18n/states/US.php:13 -#@ woocommerce -msgid "Alabama" -msgstr "Alabama" - -#: i18n/states/US.php:14 -#@ woocommerce -msgid "Alaska" -msgstr "Alaska" - -#: i18n/states/US.php:15 -#@ woocommerce -msgid "Arizona" -msgstr "Arizona" - -#: i18n/states/US.php:16 -#@ woocommerce -msgid "Arkansas" -msgstr "Arkansas" - -#: i18n/states/US.php:17 -#@ woocommerce -msgid "California" -msgstr "Kalifornia" - -#: i18n/states/US.php:18 -#@ woocommerce -msgid "Colorado" -msgstr "Kolorado" - -#: i18n/states/US.php:19 -#@ woocommerce -msgid "Connecticut" -msgstr "Connecticut" - -#: i18n/states/US.php:20 -#@ woocommerce -msgid "Delaware" -msgstr "Delaware" - -#: i18n/states/US.php:21 -#@ woocommerce -msgid "District Of Columbia" -msgstr "Dystrykt Kolumbii" - -#: i18n/states/US.php:22 -#@ woocommerce -msgid "Florida" -msgstr "Floryda" - -#: i18n/states/US.php:24 -#@ woocommerce -msgid "Hawaii" -msgstr "Hawaje" - -#: i18n/states/US.php:25 -#@ woocommerce -msgid "Idaho" -msgstr "Idaho" - -#: i18n/states/US.php:26 -#@ woocommerce -msgid "Illinois" -msgstr "Illinois" - -#: i18n/states/US.php:27 -#@ woocommerce -msgid "Indiana" -msgstr "Indiana" - -#: i18n/states/US.php:28 -#@ woocommerce -msgid "Iowa" -msgstr "Iowa" - -#: i18n/states/US.php:29 -#@ woocommerce -msgid "Kansas" -msgstr "Kansas" - -#: i18n/states/US.php:30 -#@ woocommerce -msgid "Kentucky" -msgstr "Kentucky" - -#: i18n/states/US.php:31 -#@ woocommerce -msgid "Louisiana" -msgstr "Luizjana" - -#: i18n/states/US.php:32 -#@ woocommerce -msgid "Maine" -msgstr "Maine" - -#: i18n/states/US.php:33 -#@ woocommerce -msgid "Maryland" -msgstr "Maryland" - -#: i18n/states/US.php:34 -#@ woocommerce -msgid "Massachusetts" -msgstr "Massachusetts" - -#: i18n/states/US.php:35 -#@ woocommerce -msgid "Michigan" -msgstr "Michigan" - -#: i18n/states/US.php:36 -#@ woocommerce -msgid "Minnesota" -msgstr "Minnesota" - -#: i18n/states/US.php:37 -#@ woocommerce -msgid "Mississippi" -msgstr "Mississippi" - -#: i18n/states/US.php:38 -#@ woocommerce -msgid "Missouri" -msgstr "Missouri" - -#: i18n/states/US.php:39 -#@ woocommerce -msgid "Montana" -msgstr "Montana" - -#: i18n/states/US.php:40 -#@ woocommerce -msgid "Nebraska" -msgstr "Nebraska" - -#: i18n/states/US.php:41 -#@ woocommerce -msgid "Nevada" -msgstr "Nevada" - -#: i18n/states/US.php:42 -#@ woocommerce -msgid "New Hampshire" -msgstr "New Hampshire" - -#: i18n/states/US.php:43 -#@ woocommerce -msgid "New Jersey" -msgstr "New Jersey" - -#: i18n/states/US.php:44 -#@ woocommerce -msgid "New Mexico" -msgstr "Nowy Meksyk" - -#: i18n/states/US.php:45 -#@ woocommerce -msgid "New York" -msgstr "Nowy Jork" - -#: i18n/states/US.php:46 -#@ woocommerce -msgid "North Carolina" -msgstr "Karolina Północna" - -#: i18n/states/US.php:47 -#@ woocommerce -msgid "North Dakota" -msgstr "Dakota Północna" - -#: i18n/states/US.php:48 -#@ woocommerce -msgid "Ohio" -msgstr "Ohio" - -#: i18n/states/US.php:49 -#@ woocommerce -msgid "Oklahoma" -msgstr "Oklahoma" - -#: i18n/states/US.php:50 -#@ woocommerce -msgid "Oregon" -msgstr "Oregon" - -#: i18n/states/US.php:51 -#@ woocommerce -msgid "Pennsylvania" -msgstr "Pennsylvania" - -#: i18n/states/US.php:52 -#@ woocommerce -msgid "Rhode Island" -msgstr "Rhode Island" - -#: i18n/states/US.php:53 -#@ woocommerce -msgid "South Carolina" -msgstr "Karolina Południowa" - -#: i18n/states/US.php:54 -#@ woocommerce -msgid "South Dakota" -msgstr "Dakota Południowa" - -#: i18n/states/US.php:55 -#@ woocommerce -msgid "Tennessee" -msgstr "Tennessee" - -#: i18n/states/US.php:56 -#@ woocommerce -msgid "Texas" -msgstr "Teksas" - -#: i18n/states/US.php:57 -#@ woocommerce -msgid "Utah" -msgstr "Utah" - -#: i18n/states/US.php:58 -#@ woocommerce -msgid "Vermont" -msgstr "Vermont" - -#: i18n/states/US.php:59 -#@ woocommerce -msgid "Virginia" -msgstr "Wirginia" - -#: i18n/states/US.php:60 -#@ woocommerce -msgid "Washington" -msgstr "Waszyngton" - -#: i18n/states/US.php:61 -#@ woocommerce -msgid "West Virginia" -msgstr "Wirginia Zachodnia" - -#: i18n/states/US.php:62 -#@ woocommerce -msgid "Wisconsin" -msgstr "Wisconsin" - -#: i18n/states/US.php:63 -#@ woocommerce -msgid "Wyoming" -msgstr "Wyoming" - -#: i18n/states/US.php:64 -#, fuzzy -#@ woocommerce -msgid "Armed Forces (AA)" -msgstr "Siły Zbrojne Stanów Zjednoczonych" - -#: i18n/states/US.php:65 -#, fuzzy -#@ woocommerce -msgid "Armed Forces (AE)" -msgstr "Siły Zbrojne Stanów Zjednoczonych" - -#: i18n/states/US.php:66 -#, fuzzy -#@ woocommerce -msgid "Armed Forces (AP)" -msgstr "Siły Zbrojne Stanów Zjednoczonych" - -#: i18n/states/ZA.php:13 -#@ woocommerce -msgid "Eastern Cape" -msgstr "" - -#: i18n/states/ZA.php:14 -#, fuzzy -#@ woocommerce -msgid "Free State" -msgstr "Region" - -#: i18n/states/ZA.php:15 -#@ woocommerce -msgid "Gauteng" -msgstr "" - -#: i18n/states/ZA.php:16 -#@ woocommerce -msgid "KwaZulu-Natal" -msgstr "" - -#: i18n/states/ZA.php:17 -#@ woocommerce -msgid "Limpopo" -msgstr "" - -#: i18n/states/ZA.php:18 -#@ woocommerce -msgid "Mpumalanga" -msgstr "" - -#: i18n/states/ZA.php:19 -#, fuzzy -#@ woocommerce -msgid "Northern Cape" -msgstr "Terytorium Północne" - -#: i18n/states/ZA.php:20 -#, fuzzy -#@ woocommerce -msgid "North West" -msgstr "Północna Korea" - -#: i18n/states/ZA.php:21 -#, fuzzy -#@ woocommerce -msgid "Western Cape" -msgstr "Sahara Zachodnia" - -#: i18n/strings.php:16 -#@ woocommerce -msgid "pending" -msgstr "nierozstrzygnięte" - -#: i18n/strings.php:17 -#@ woocommerce -msgid "failed" -msgstr "nieudane" - -#: i18n/strings.php:18 -#@ woocommerce -msgid "on-hold" -msgstr "wstrzymane" - -#: i18n/strings.php:19 -#@ woocommerce -msgid "processing" -msgstr "przetwarzane" - -#: i18n/strings.php:20 -#@ woocommerce -msgid "completed" -msgstr "zakończone" - -#: i18n/strings.php:21 -#@ woocommerce -msgid "refunded" -msgstr "zwrócone" - -#: i18n/strings.php:22 -#@ woocommerce -msgid "cancelled" -msgstr "odwołane" - -#: templates/loop/no-products-found.php:14 -#: templates/loop-shop.php:40 -#@ woocommerce -msgid "No products found which match your selection." -msgstr "Nie znaleziono produktów które pasują do Twoich wyborów." - -#: admin/post-types/product.php:96 -#: admin/post-types/product.php:568 -#: admin/post-types/product.php:787 -#: admin/woocommerce-admin-functions.php:196 -#: templates/cart/cart.php:29 -#: templates/emails/admin-new-order.php:24 -#: templates/emails/customer-completed-order.php:25 -#: templates/emails/customer-invoice.php:29 -#: templates/emails/customer-note.php:29 -#: templates/emails/customer-processing-order.php:25 -#@ woocommerce -msgid "Price" -msgstr "Cena" - -#: admin/woocommerce-admin-functions.php:195 -#: templates/cart/cart.php:30 -#: templates/emails/admin-new-order.php:23 -#: templates/emails/customer-completed-order.php:24 -#: templates/emails/customer-invoice.php:28 -#: templates/emails/customer-note.php:28 -#: templates/emails/customer-processing-order.php:24 -#@ woocommerce -msgid "Quantity" -msgstr "Ilość" - -#: admin/post-types/writepanels/order-fee-html.php:43 -#: admin/post-types/writepanels/order-item-html.php:110 -#: admin/woocommerce-admin-reports.php:1546 -#: admin/woocommerce-admin-reports.php:1599 -#: admin/woocommerce-admin-reports.php:2370 -#: admin/woocommerce-admin-reports.php:2539 -#: admin/woocommerce-admin-reports.php:2617 -#: templates/cart/cart.php:31 -#: templates/checkout/review-order.php:22 -#: templates/myaccount/my-orders.php:35 -#: templates/order/order-details.php:21 -#@ woocommerce -msgid "Total" -msgstr "Suma" - -#: templates/cart/cart.php:47 -#@ woocommerce -msgid "Remove this item" -msgstr "Usuń rzecz" - -#: templates/cart/cart.php:100 -#: templates/single-product/add-to-cart/quantity.php:13 -#, fuzzy -#@ woocommerce -msgctxt "Product quantity input tooltip" -msgid "Qty" -msgstr "Ilość" - -#: admin/woocommerce-admin-reports.php:1531 -#: templates/cart/cart.php:127 -#: woocommerce.php:1062 -#@ woocommerce -msgid "Coupon" -msgstr "Kupon" - -#: templates/cart/cart.php:127 -#: templates/checkout/form-coupon.php:29 -#@ woocommerce -msgid "Apply Coupon" -msgstr "Zastosuj kupon" - -#: templates/cart/cart.php:134 -#@ woocommerce -msgid "Update Cart" -msgstr "Zaktualizuj koszyk" - -#: templates/cart/cart.php:134 -#@ woocommerce -msgid "Proceed to Checkout →" -msgstr "Przejdź do zamówienia →" - -#: templates/cart/cross-sells.php:40 -#@ woocommerce -msgid "You may be interested in…" -msgstr "Możesz być zainteresowany także…" - -#: templates/cart/cart-empty.php:14 -#@ woocommerce -msgid "Your cart is currently empty." -msgstr "Twój koszyk jest pusty." - -#: templates/cart/cart-empty.php:18 -#@ woocommerce -msgid "← Return To Shop" -msgstr "← Powrót do sklepu" - -#: templates/cart/mini-cart.php:55 -#@ woocommerce -msgid "No products in the cart." -msgstr "Brak produktów w koszyku." - -#: admin/post-types/writepanels/order-item-html.php:112 -#: templates/cart/mini-cart.php:63 -#: templates/cart/totals.php:92 -#: templates/checkout/review-order.php:93 -#@ woocommerce -msgid "Subtotal" -msgstr "Podsuma" - -#: templates/cart/mini-cart.php:69 -#@ woocommerce -msgid "Checkout →" -msgstr "Zamówienie" - -#: templates/cart/shipping-calculator.php:20 -#@ woocommerce -msgid "Calculate Shipping" -msgstr "Oblicz koszty wysyłki" - -#: admin/post-types/writepanels/writepanel-order_data.php:175 -#: admin/post-types/writepanels/writepanel-order_data.php:265 -#: templates/cart/shipping-calculator.php:24 -#: woocommerce-template.php:1327 -#@ woocommerce -msgid "Select a country…" -msgstr "Wybierz kraj…" - -#: templates/cart/shipping-calculator.php:50 -#: woocommerce-template.php:1377 -#@ woocommerce -msgid "Select a state…" -msgstr "Wybierz stan…" - -#: templates/cart/shipping-calculator.php:42 -#: templates/cart/shipping-calculator.php:50 -#: templates/cart/shipping-calculator.php:61 -#, fuzzy -#@ woocommerce -msgid "State / county" -msgstr "Województwo" - -#: templates/cart/shipping-calculator.php:71 -#@ woocommerce -msgid "Update Totals" -msgstr "Uaktualnij sumy" - -#: templates/cart/shipping-methods.php:32 -#, fuzzy -#@ woocommerce -msgid "Free" -msgstr "Za darmo!" - -#: templates/cart/shipping-methods.php:67 -#@ woocommerce -msgid "Please fill in your details to see available shipping methods." -msgstr "Proszę wypełnić swoje dane, aby zobaczyć sposoby wysyłki." - -#: templates/cart/shipping-methods.php:69 -#@ woocommerce -msgid "Sorry, it seems that there are no available shipping methods for your state. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "Przykro nam, ale dla Twojej lokalizacji nie jest udostępniony żaden sposób wysyłki. Prosimy skontaktuj się z nami, jeśli potrzebujesz wyjaśnień lub chcesz zaproponować alternatywny sposób wysłania." - -#: templates/cart/totals.php:22 -#@ woocommerce -msgid "Cart Totals" -msgstr "Podsumowanie koszyka" - -#: templates/cart/totals.php:28 -#: templates/checkout/review-order.php:27 -#@ woocommerce -msgid "Cart Subtotal" -msgstr "Wartość produktów" - -#: templates/cart/totals.php:35 -#: templates/checkout/review-order.php:34 -#: woocommerce.php:1655 -#@ woocommerce -msgid "Cart Discount" -msgstr "Rabat na cały koszyk" - -#: templates/cart/totals.php:35 -#: templates/cart/totals.php:120 -#@ woocommerce -msgid "[Remove]" -msgstr "[Usuń]" - -#: admin/post-types/shop_order.php:46 -#: admin/post-types/writepanels/writepanel-order_data.php:536 -#: admin/post-types/writepanels/writepanel-product_data.php:81 -#: admin/settings/settings-tax-rates.php:52 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-content.php:49 -#: admin/woocommerce-admin-settings.php:185 -#: templates/cart/totals.php:46 -#: templates/checkout/review-order.php:45 -#@ woocommerce -msgid "Shipping" -msgstr "Wysyłka" - -#: templates/cart/totals.php:120 -#: templates/checkout/review-order.php:124 -#@ woocommerce -msgid "Order Discount" -msgstr "Rabat na zamówienie" - -#: admin/post-types/shop_order.php:47 -#: templates/cart/totals.php:129 -#: templates/checkout/review-order.php:133 -#@ woocommerce -msgid "Order Total" -msgstr "Suma zamówienia" - -#: templates/cart/totals.php:161 -#, fuzzy, php-format -#@ woocommerce -msgid " (taxes estimated for %s)" -msgstr "(szacunkowe podatki: %s)" - -#: templates/cart/totals.php:163 -#, php-format -#@ woocommerce -msgid "Note: Shipping and taxes are estimated%s and will be updated during checkout based on your billing and shipping information." -msgstr "Uwaga: Koszty wysyłki i podatki są szacunkowe%s i zostaną uaktualnione po podaniu danych do płatności i wysyłki." - -#: templates/cart/totals.php:175 -#, fuzzy -#@ woocommerce -msgid "No shipping methods were found; please recalculate your shipping and enter your state/county and zip/postcode to ensure there are no other available methods for your location." -msgstr "Nie znaleziono metod wysyłki; proszę aktualizuj swoje dane wysyłkowe i wpisz region/kod pocztowy aby upewnić się, że nie ma innych dostępnych metod dla Twojej lokalizacji." - -#: templates/cart/totals.php:183 -#, php-format -#@ woocommerce -msgid "Sorry, it seems that there are no available shipping methods for your location (%s)." -msgstr "Przykro nam, ale dla Twojej lokalizacji nie jest udostępniony żaden sposób wysyłki (%s)." - -#: templates/cart/totals.php:185 -#@ woocommerce -msgid "If you require assistance or wish to make alternate arrangements please contact us." -msgstr " Jeśli potrzebujesz porady lub chcesz spersonalizować swoje zamówienie, skontaktuj się z nami." - -#: templates/checkout/cart-errors.php:16 -#@ woocommerce -msgid "There are some issues with the items in your cart (shown above). Please go back to the cart page and resolve these issues before checking out." -msgstr "Wystąpiły problemy w Twoim koszyku (pokazane powyżej). Prosimy o powrót do koszyka i rozwiązanie problemów i przejście dalej." - -#: templates/checkout/cart-errors.php:20 -#@ woocommerce -msgid "← Return To Cart" -msgstr "← Wróć do koszyka" - -#: templates/checkout/form-billing.php:17 -#@ woocommerce -msgid "Billing & Shipping" -msgstr "" - -#: admin/woocommerce-admin-users.php:26 -#: templates/checkout/form-billing.php:21 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:19 -#: templates/myaccount/my-address.php:25 -#: templates/order/order-details.php:106 -#@ woocommerce -msgid "Billing Address" -msgstr "Adres płatności" - -#: templates/checkout/form-billing.php:42 -#@ woocommerce -msgid "Create an account?" -msgstr "Stworzyć konto?" - -#: templates/checkout/form-billing.php:51 -#, fuzzy -#@ woocommerce -msgid "Create an account by entering the information below. If you are a returning customer please login at the top of the page." -msgstr "Stwórz konto podając informacje poniżej. Jeśli jesteś powracającym klientem zaloguj się na górze strony." - -#: templates/checkout/form-checkout.php:20 -#@ woocommerce -msgid "You must be logged in to checkout." -msgstr "Musisz być zalogowany aby zrealizować zamówienie." - -#: templates/checkout/form-checkout.php:51 -#@ woocommerce -msgid "Your order" -msgstr "Twoje zamówienie" - -#: templates/checkout/form-coupon.php:17 -#@ woocommerce -msgid "Have a coupon?" -msgstr "Masz kupon?" - -#: templates/checkout/form-coupon.php:20 -#@ woocommerce -msgid "Click here to enter your code" -msgstr "Kliknij tutaj, aby dodać kod" - -#: admin/post-types/writepanels/writepanels-init.php:100 -#: templates/checkout/form-coupon.php:25 -#@ woocommerce -msgid "Coupon code" -msgstr "Kod kuponu" - -#: templates/checkout/form-login.php:17 -#@ woocommerce -msgid "Click here to login" -msgstr "Kliknij tutaj, aby się zalogować" - -#: templates/checkout/form-login.php:22 -#, fuzzy -#@ woocommerce -msgid "If you have shopped with us before, please enter your details in the boxes below. If you are a new customer please proceed to the Billing & Shipping section." -msgstr "Jeśli robiłeś już u nas zakupy, wpisz swój login i hasło poniżej. Jeśli jesteś nowym klientem przejdź do sekcji Płatności i Wysyłka." - -#: admin/post-types/writepanels/writepanel-order_data.php:347 -#: templates/checkout/form-pay.php:20 -#@ woocommerce -msgid "Qty" -msgstr "Ilość" - -#: templates/checkout/form-pay.php:21 -#@ woocommerce -msgid "Totals" -msgstr "Łącznie" - -#: templates/checkout/form-pay.php:78 -#@ woocommerce -msgid "Sorry, it seems that there are no available payment methods for your location. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "Przykro nam, ale dla Twojej lokalizacji nie jest udostępniona żadna metoda płatności. Prosimy skontaktuj się z nami, jeśli potrzebujesz wyjaśnień lub chcesz omówić alternatywne sposoby płatności." - -#: templates/checkout/form-pay.php:87 -#@ woocommerce -msgid "Pay for order" -msgstr "Płać za zamówienie" - -#: templates/checkout/form-shipping.php:32 -#@ woocommerce -msgid "Ship to billing address?" -msgstr "" - -#: admin/woocommerce-admin-users.php:27 -#: templates/checkout/form-shipping.php:35 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:20 -#: templates/order/order-details.php:121 -#@ woocommerce -msgid "Shipping Address" -msgstr "Adres wysyłki" - -#: templates/checkout/form-shipping.php:59 -#: templates/single-product/tabs/additional-information.php:14 -#: woocommerce-template.php:756 -#@ woocommerce -msgid "Additional Information" -msgstr "Dodatkowe informacje" - -#: templates/checkout/review-order.php:217 -#@ woocommerce -msgid "Please fill in your details above to see available payment methods." -msgstr "Wypełnij powyższe szczegóły aby zobaczyć dostępne metody płatności." - -#: templates/checkout/review-order.php:219 -#@ woocommerce -msgid "Sorry, it seems that there are no available payment methods for your state. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "Przykro nam, ale dla Twojego regionu nie jest udostępniona żadna metoda płatności. Prosimy skontaktuj się z nami, jeśli potrzebujesz wyjaśnień lub chcesz omówić alternatywne sposoby płatności." - -#: templates/checkout/review-order.php:228 -#@ woocommerce -msgid "Since your browser does not support JavaScript, or it is disabled, please ensure you click the Update Totals button before placing your order. You may be charged more than the amount stated above if you fail to do so." -msgstr "Ponieważ Twoja przeglądarka nie wspiera JavaScriptu lub jest on wyłączony, upewnij się, że klikniesz przycisk Zaktualizuj koszyk przed złożeniem zamówienia. Możesz zapłacić więcej niż jest podane powyżej, jeśli tego nie zrobisz." - -#: templates/checkout/review-order.php:228 -#@ woocommerce -msgid "Update totals" -msgstr "Uaktualnij sumy" - -#: templates/checkout/review-order.php:234 -#@ woocommerce -msgid "Place order" -msgstr "Złóż zamówienie" - -#: templates/checkout/review-order.php:238 -#, fuzzy -#@ woocommerce -msgid "I have read and accept the" -msgstr "Akceptuję" - -#: templates/checkout/review-order.php:238 -#@ woocommerce -msgid "terms & conditions" -msgstr "warunki i zasady" - -#: templates/checkout/thankyou.php:18 -#@ woocommerce -msgid "Unfortunately your order cannot be processed as the originating bank/merchant has declined your transaction." -msgstr "Niestety Twoje zamówienie nie może zostać przetworzone, ponieważ bank odrzucił transakcje." - -#: templates/checkout/thankyou.php:22 -#@ woocommerce -msgid "Please attempt your purchase again or go to your account page." -msgstr "Proszę spróbuj ponownie dokonać zakupu lub udaj się na stronę swojego konta. " - -#: templates/checkout/thankyou.php:24 -#@ woocommerce -msgid "Please attempt your purchase again." -msgstr "Proszę spróbuj ponownie dokonać zakupu." - -#: templates/checkout/thankyou.php:36 -#: templates/checkout/thankyou.php:67 -#@ woocommerce -msgid "Thank you. Your order has been received." -msgstr "Dziękujemy. Otrzymaliśmy Twoje zamówienie." - -#: templates/emails/admin-new-order.php:13 -#: templates/emails/plain/admin-new-order.php:13 -#, fuzzy, php-format -#@ woocommerce -msgid "You have received an order from %s. Their order is as follows:" -msgstr "Otrzymałeś zamówienie od" - -#: templates/emails/admin-new-order.php:17 -#, fuzzy, php-format -#@ woocommerce -msgid "Order: %s" -msgstr "Zamówienie:" - -#: admin/woocommerce-admin-functions.php:214 -#: templates/emails/admin-new-order.php:50 -#: templates/emails/customer-completed-order.php:51 -#: templates/emails/customer-note.php:55 -#: templates/emails/customer-processing-order.php:51 -#: templates/emails/plain/admin-new-order.php:38 -#: templates/order/order-details.php:88 -#@ woocommerce -msgid "Customer details" -msgstr "Dane klienta" - -#: admin/post-types/shop_order.php:101 -#: templates/emails/admin-new-order.php:53 -#: templates/emails/customer-completed-order.php:54 -#: templates/emails/customer-note.php:58 -#: templates/emails/customer-processing-order.php:54 -#: templates/emails/plain/admin-new-order.php:41 -#: templates/emails/plain/customer-completed-order.php:41 -#: templates/emails/plain/customer-note.php:49 -#: templates/emails/plain/customer-processing-order.php:41 -#: templates/order/order-details.php:92 -#@ woocommerce -msgid "Email:" -msgstr "E-mail:" - -#: admin/post-types/shop_order.php:104 -#: templates/emails/admin-new-order.php:56 -#: templates/emails/customer-completed-order.php:57 -#: templates/emails/customer-note.php:61 -#: templates/emails/customer-processing-order.php:57 -#: templates/emails/plain/admin-new-order.php:44 -#: templates/emails/plain/customer-completed-order.php:44 -#: templates/emails/plain/customer-note.php:52 -#: templates/emails/plain/customer-processing-order.php:44 -#@ woocommerce -msgid "Tel:" -msgstr "Tel:" - -#: templates/emails/customer-completed-order.php:14 -#: templates/emails/plain/customer-completed-order.php:13 -#, fuzzy, php-format -#@ woocommerce -msgid "Hi there. Your recent order on %s has been completed. Your order details are shown below for your reference:" -msgstr "Twoje zamówienie jest kompletne. Szczegóły zamówienia są poniżej:" - -#: templates/emails/customer-invoice.php:16 -#: templates/emails/plain/customer-invoice.php:14 -#, fuzzy, php-format, php-format -#@ woocommerce -msgid "An order has been created for you on %s. To pay for this order please use the following link: %s" -msgstr "Zamówienie zostało stworzone: “%s”. Aby dokonać płatności użyj tego linku: Zapłać" - -#: templates/emails/customer-invoice.php:16 -#, fuzzy -#@ woocommerce -msgid "pay" -msgstr "zaplac" - -#: templates/emails/customer-new-account.php:14 -#: templates/emails/plain/customer-new-account.php:13 -#, php-format -#@ woocommerce -msgid "Thanks for creating an account on %s. Your username is %s." -msgstr "" - -#: templates/emails/customer-new-account.php:16 -#: templates/emails/plain/customer-new-account.php:15 -#, php-format -#@ woocommerce -msgid "You can access your account area here: %s." -msgstr "" - -#: templates/emails/customer-note.php:14 -#: templates/emails/plain/customer-note.php:13 -#@ woocommerce -msgid "Hello, a note has just been added to your order:" -msgstr "Witaj, dodatkowe informacje zostały właśnie dodane do Twojego zamówienia:" - -#: templates/emails/customer-note.php:18 -#: templates/emails/plain/customer-note.php:21 -#@ woocommerce -msgid "For your reference, your order details are shown below." -msgstr "Szczegóły zamówienia przedstawione są poniżej." - -#: templates/emails/customer-processing-order.php:14 -#: templates/emails/plain/customer-processing-order.php:13 -#@ woocommerce -msgid "Your order has been received and is now being processed. Your order details are shown below for your reference:" -msgstr "" - -#: templates/emails/customer-reset-password.php:14 -#: templates/emails/plain/customer-reset-password.php:13 -#@ woocommerce -msgid "Someone requested that the password be reset for the following account:" -msgstr "" - -#: templates/emails/customer-reset-password.php:15 -#: templates/emails/plain/customer-reset-password.php:15 -#, fuzzy, php-format, php-format -#@ woocommerce -msgid "Username: %s" -msgstr "Nazwa użytkownika" - -#: templates/emails/customer-reset-password.php:16 -#: templates/emails/plain/customer-reset-password.php:16 -#@ woocommerce -msgid "If this was a mistake, just ignore this email and nothing will happen." -msgstr "" - -#: templates/emails/customer-reset-password.php:17 -#: templates/emails/plain/customer-reset-password.php:17 -#@ woocommerce -msgid "To reset your password, visit the following address:" -msgstr "" - -#: templates/emails/customer-reset-password.php:20 -#, fuzzy -#@ woocommerce -msgid "Click here to reset your password" -msgstr "Kliknij tutaj, aby dodać kod" - -#: admin/woocommerce-admin-functions.php:220 -#: templates/emails/email-addresses.php:18 -#: templates/emails/plain/email-addresses.php:12 -#@ woocommerce -msgid "Billing address" -msgstr "Adres rozliczeniowy" - -#: admin/woocommerce-admin-functions.php:227 -#: templates/emails/email-addresses.php:28 -#: templates/emails/plain/email-addresses.php:17 -#@ woocommerce -msgid "Shipping address" -msgstr "Adres do wysyłki" - -#: templates/emails/email-order-items.php:40 -#, fuzzy, php-format -#@ woocommerce -msgid "Download %d:" -msgstr "Pobieranie:" - -#: templates/emails/email-order-items.php:42 -#@ woocommerce -msgid "Download:" -msgstr "Pobieranie:" - -#: templates/emails/plain/admin-new-order.php:19 -#: templates/emails/plain/customer-completed-order.php:19 -#: templates/emails/plain/customer-invoice.php:20 -#: templates/emails/plain/customer-note.php:27 -#: templates/emails/plain/customer-processing-order.php:19 -#, fuzzy, php-format, php-format -#@ woocommerce -msgid "Order number: %s" -msgstr "Sortuj wg:" - -#: templates/emails/plain/admin-new-order.php:20 -#: templates/emails/plain/customer-completed-order.php:20 -#: templates/emails/plain/customer-invoice.php:21 -#: templates/emails/plain/customer-note.php:28 -#: templates/emails/plain/customer-processing-order.php:20 -#, fuzzy, php-format, php-format -#@ woocommerce -msgid "Order date: %s" -msgstr "Aktualizacje zamówienia" - -#: templates/emails/plain/admin-new-order.php:20 -#@ woocommerce -msgid "jS F Y" -msgstr "" - -#: templates/emails/plain/customer-completed-order.php:38 -#: templates/emails/plain/customer-note.php:46 -#: templates/emails/plain/customer-processing-order.php:38 -#, fuzzy -#@ woocommerce -msgid "Your details" -msgstr "Nasze dane" - -#: templates/emails/plain/email-order-items.php:28 -#, fuzzy, php-format -#@ woocommerce -msgid "Quantity: %s" -msgstr "Ilość" - -#: templates/emails/plain/email-order-items.php:31 -#, fuzzy, php-format -#@ woocommerce -msgid "Cost: %s" -msgstr "Koszt" - -#: templates/loop/add-to-cart.php:17 -#: templates/loop/add-to-cart.php:41 -#: templates/loop/add-to-cart.php:50 -#@ woocommerce -msgid "Read More" -msgstr "Zobacz więcej" - -#: templates/loop/add-to-cart.php:33 -#@ woocommerce -msgid "Select options" -msgstr "Wybierz opcje" - -#: templates/loop/add-to-cart.php:37 -#@ woocommerce -msgid "View options" -msgstr "Zobacz opcje" - -#: templates/loop/result-count.php:28 -#@ woocommerce -msgid "Showing the single result" -msgstr "" - -#: templates/loop/result-count.php:30 -#, fuzzy, php-format -#@ woocommerce -msgid "Showing all %d results" -msgstr "Pokaż wszystkie podtypy" - -#: templates/loop/result-count.php:32 -#, php-format -#@ woocommerce -msgctxt "%1$d = first, %2$d = last, %3$d = total" -msgid "Showing %1$d–%2$d of %3$d results" -msgstr "" - -#: templates/loop/sale-flash.php:16 -#: templates/single-product/sale-flash.php:16 -#@ woocommerce -msgid "Sale!" -msgstr "Wyprzedaż!" - -#: templates/loop/orderby.php:21 -#@ woocommerce -msgid "Default sorting" -msgstr "" - -#: admin/settings/settings-init.php:462 -#@ woocommerce -msgid "Sort by most recent" -msgstr "" - -#: templates/myaccount/form-change-password.php:20 -#: templates/myaccount/form-lost-password.php:31 -#@ woocommerce -msgid "New password" -msgstr "Nowe hasło" - -#: templates/myaccount/form-change-password.php:24 -#: templates/myaccount/form-lost-password.php:35 -#@ woocommerce -msgid "Re-enter new password" -msgstr "Powtórz hasło" - -#: templates/myaccount/form-change-password.php:29 -#: templates/myaccount/form-lost-password.php:45 -#@ woocommerce -msgid "Save" -msgstr "Zapisz" - -#: templates/myaccount/form-edit-address.php:43 -#@ woocommerce -msgid "Save Address" -msgstr "Zapisz adres" - -#: templates/myaccount/form-login.php:26 -#: templates/myaccount/form-login.php:40 -#: templates/shop/form-login.php:31 -#@ woocommerce -msgid "Login" -msgstr "Zaloguj" - -#: templates/myaccount/form-login.php:50 -#: templates/shop/form-login.php:33 -#@ woocommerce -msgid "Lost Password?" -msgstr "Straciłeś hasło?" - -#: templates/myaccount/form-login.php:60 -#: templates/myaccount/form-login.php:101 -#@ woocommerce -msgid "Register" -msgstr "Zarejestruj" - -#: templates/myaccount/form-login.php:66 -#@ woocommerce -msgid "Username" -msgstr "Nazwa użytkownika" - -#: admin/post-types/writepanels/writepanel-order_data.php:182 -#: admin/woocommerce-admin-users.php:187 -#: templates/myaccount/form-login.php:78 -#: templates/single-product-reviews.php:101 -#@ woocommerce -msgid "Email" -msgstr "E-mail" - -#: templates/myaccount/form-login.php:89 -#@ woocommerce -msgid "Re-enter password" -msgstr "Powtórz hasło" - -#: templates/myaccount/form-lost-password.php:22 -#@ woocommerce -msgid "Lost your password? Please enter your username or email address. You will receive a link to create a new password via email." -msgstr "" - -#: templates/myaccount/form-lost-password.php:28 -#, fuzzy -#@ woocommerce -msgid "Enter a new password below." -msgstr "Powtórz hasło" - -#: templates/myaccount/form-lost-password.php:45 -#, fuzzy -#@ woocommerce -msgid "Reset Password" -msgstr "Straciłeś hasło?" - -#: templates/myaccount/my-account.php:19 -#, php-format -#@ woocommerce -msgid "Hello, %s. From your account dashboard you can view your recent orders, manage your shipping and billing addresses and change your password." -msgstr "Witaj, %s. W ustawieniach swojego konta, możesz sprawdzić swoje ostatnie zamówienia, zarządzać adresami płatności i dostawy, a także zmienić hasło." - -#: templates/myaccount/my-address.php:17 -#, fuzzy -#@ woocommerce -msgid "My Addresses" -msgstr "Edytuj adres" - -#: templates/myaccount/my-address.php:23 -#@ woocommerce -msgid "My Address" -msgstr "" - -#: templates/myaccount/my-address.php:35 -#@ woocommerce -msgid "The following addresses will be used on the checkout page by default." -msgstr "Następujące adresy zostaną domyślnie użyte na stronie zamówienia." - -#: admin/post-types/product.php:151 -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#: admin/post-types/writepanels/writepanel-order_data.php:387 -#: admin/post-types/writepanels/writepanel-product_data.php:1043 -#: admin/woocommerce-admin-attributes.php:322 -#: templates/myaccount/my-address.php:45 -#: woocommerce.php:917 -#: woocommerce.php:953 -#: woocommerce.php:990 -#: woocommerce.php:1028 -#: woocommerce.php:1066 -#@ default -#@ woocommerce -msgid "Edit" -msgstr "Edytuj" - -#: templates/myaccount/my-address.php:64 -#, fuzzy -#@ woocommerce -msgid "You have not set up this type of address yet." -msgstr "Nie ustawiłeś jeszcze adresu wysyłki." - -#: templates/myaccount/my-downloads.php:18 -#@ woocommerce -msgid "Available downloads" -msgstr "Dostępne do pobrania" - -#: templates/myaccount/my-downloads.php:27 -#, php-format -#@ woocommerce -msgid "%s download remaining" -msgid_plural "%s downloads remaining" -msgstr[0] "" -msgstr[1] "" - -#: templates/myaccount/my-orders.php:26 -#@ woocommerce -msgid "Recent Orders" -msgstr "Ostatnie zamówienia" - -#: admin/post-types/shop_order.php:44 -#: templates/myaccount/my-orders.php:32 -#: woocommerce.php:1025 -#@ woocommerce -msgid "Order" -msgstr "Zamówienie" - -#: admin/post-types/shop_order.php:43 -#: admin/settings/settings-payment-gateways.php:29 -#: admin/settings/settings-shipping-methods.php:31 -#: templates/myaccount/my-orders.php:34 -#@ woocommerce -msgid "Status" -msgstr "Status" - -#: admin/post-types/writepanels/writepanel-product_data.php:138 -#: admin/post-types/writepanels/writepanel-product_data.php:1064 -#: templates/myaccount/my-orders.php:77 -#@ woocommerce -msgid "Cancel" -msgstr "Anuluj" - -#: admin/post-types/product.php:167 -#: admin/post-types/shop_order.php:171 -#: templates/myaccount/my-orders.php:82 -#@ default -#@ woocommerce -msgid "View" -msgstr "Zobacz" - -#: templates/order/form-tracking.php:17 -#@ woocommerce -msgid "To track your order please enter your Order ID in the box below and press return. This was given to you on your receipt and in the confirmation email you should have received." -msgstr "Aby śledzić swoje zamówienie, proszę wpisać swój ID zamówienia w pole poniżej i potwierdzić enterem. Numer otrzymałeś na paragonie oraz w e-mailu potwierdzającym transakcje." - -#: templates/order/form-tracking.php:19 -#@ woocommerce -msgid "Order ID" -msgstr "ID zamówienia" - -#: templates/order/form-tracking.php:19 -#@ woocommerce -msgid "Found in your order confirmation email." -msgstr "Znaleziony w Twoim e-mailu potwierdzającym zamówienie." - -#: templates/order/form-tracking.php:20 -#@ woocommerce -msgid "Billing Email" -msgstr "E-mail płatności" - -#: templates/order/form-tracking.php:20 -#@ woocommerce -msgid "Email you used during checkout." -msgstr "E-mail który został użyty podczas składania zamówienia." - -#: templates/order/form-tracking.php:23 -#, fuzzy -#@ woocommerce -msgid "Track" -msgstr "Śledź\"" - -#: admin/post-types/writepanels/writepanel-order_data.php:59 -#: templates/order/order-details.php:16 -#@ woocommerce -msgid "Order Details" -msgstr "Szczegóły zamówienia" - -#: templates/order/order-details.php:57 -#, fuzzy, php-format -#@ woocommerce -msgid "Download file %s →" -msgstr "Pobierz plik →" - -#: templates/order/order-details.php:81 -#@ woocommerce -msgid "Order Again" -msgstr "" - -#: templates/order/order-details.php:93 -#@ woocommerce -msgid "Telephone:" -msgstr "Telefon:" - -#: templates/order/tracking.php:18 -#, php-format -#@ woocommerce -msgid "Order %s which was made %s has the status “%s”" -msgstr "" - -#: templates/order/tracking.php:18 -#@ woocommerce -msgid "ago" -msgstr "" - -#: templates/order/tracking.php:20 -#@ woocommerce -msgid "and was completed" -msgstr "i zostało zakończone" - -#: templates/order/tracking.php:20 -#@ woocommerce -msgid " ago" -msgstr " temu" - -#: templates/shop/breadcrumb.php:66 -#@ woocommerce -msgid "Products tagged “" -msgstr "Produkty oznaczone “" - -#: templates/shop/breadcrumb.php:94 -#: templates/shop/breadcrumb.php:196 -#@ woocommerce -msgid "Search results for “" -msgstr "Rezultaty wyszukiwania dla “" - -#: templates/shop/breadcrumb.php:154 -#@ woocommerce -msgid "Error 404" -msgstr "Błąd 404" - -#: templates/shop/breadcrumb.php:200 -#@ woocommerce -msgid "Posts tagged “" -msgstr "Wpisy oznaczone “" - -#: templates/shop/breadcrumb.php:205 -#@ woocommerce -msgid "Author:" -msgstr "Autor:" - -#: templates/shop/breadcrumb.php:210 -#@ woocommerce -msgid "Page" -msgstr "Strona" - -#: templates/single-product/add-to-cart/variable.php:24 -#@ woocommerce -msgid "Choose an option" -msgstr "Wybierz opcje" - -#: templates/single-product/add-to-cart/variable.php:64 -#@ woocommerce -msgid "Clear selection" -msgstr "" - -#: templates/single-product/meta.php:22 -#, fuzzy -#@ product_cat -msgid "Category:" -msgid_plural "Categories:" -msgstr[0] "Kategoria:" -msgstr[1] "Kategoria:" - -#: templates/single-product/meta.php:24 -#@ product_tag -msgid "Tag:" -msgid_plural "Tags:" -msgstr[0] "" -msgstr[1] "" - -#: admin/post-types/product.php:588 -#: admin/post-types/product.php:837 -#: admin/post-types/writepanels/variation-admin-html.php:90 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:273 -#: templates/single-product/product-attributes.php:28 -#@ woocommerce -msgid "Weight" -msgstr "Waga" - -#: admin/post-types/writepanels/writepanel-product_data.php:284 -#: templates/single-product/product-attributes.php:37 -#@ woocommerce -msgid "Dimensions" -msgstr "Wymiary" - -#: templates/single-product/related.php:36 -#@ woocommerce -msgid "Related Products" -msgstr "Pokrewne produkty" - -#: templates/single-product/review.php:33 -#@ woocommerce -msgid "Your comment is awaiting approval" -msgstr "Twój komentarz czeka na moderację" - -#: templates/single-product/review.php:40 -#@ woocommerce -msgid "verified owner" -msgstr "" - -#: templates/single-product/tabs/description.php:14 -#@ woocommerce -msgid "Product Description" -msgstr "Opis produktu" - -#: admin/post-types/writepanels/writepanels-init.php:64 -#: templates/single-product-reviews.php:51 -#: templates/single-product-reviews.php:57 -#@ woocommerce -msgid "Reviews" -msgstr "Recenzje" - -#: templates/single-product/up-sells.php:41 -#@ woocommerce -msgid "You may also like…" -msgstr "Możesz lubić także…" - -#: templates/single-product-reviews.php:45 -#, php-format -#@ woocommerce -msgid "%s review for %s" -msgid_plural "%s reviews for %s" -msgstr[0] "%s opinia o %s" -msgstr[1] "Opinie: %s o %s" - -#: templates/single-product-reviews.php:73 -#@ woocommerce -msgid " Previous" -msgstr " Poprzednie" - -#: templates/single-product-reviews.php:74 -#@ woocommerce -msgid "Next " -msgstr "Następne " - -#: templates/single-product-reviews.php:78 -#@ woocommerce -msgid "Add Review" -msgstr "Dodaj opinię" - -#: templates/single-product-reviews.php:80 -#@ woocommerce -msgid "Add a review" -msgstr "Dodaj opinię" - -#: templates/single-product-reviews.php:84 -#@ woocommerce -msgid "Be the first to review" -msgstr "Bądź pierwszym recenzentem" - -#: templates/single-product-reviews.php:86 -#@ woocommerce -msgid "There are no reviews yet, would you like to submit yours?" -msgstr "Nie ma jeszcze recenzji, czy chciałbyś napisać swoją?" - -#: templates/single-product-reviews.php:104 -#@ woocommerce -msgid "Submit Review" -msgstr "Dodaj opinię" - -#: templates/single-product-reviews.php:111 -#@ woocommerce -msgid "Rating" -msgstr "Ocena" - -#: templates/single-product-reviews.php:112 -#@ woocommerce -msgid "Rate…" -msgstr "" - -#: templates/single-product-reviews.php:113 -#@ woocommerce -msgid "Perfect" -msgstr "Idealne" - -#: templates/single-product-reviews.php:114 -#@ woocommerce -msgid "Good" -msgstr "Dobre" - -#: templates/single-product-reviews.php:115 -#@ woocommerce -msgid "Average" -msgstr "Średnie" - -#: templates/single-product-reviews.php:116 -#@ woocommerce -msgid "Not that bad" -msgstr "Nie takie złe" - -#: templates/single-product-reviews.php:117 -#@ woocommerce -msgid "Very Poor" -msgstr "Bardzo słabe" - -#: templates/single-product-reviews.php:122 -#@ woocommerce -msgid "Your Review" -msgstr "Twoja opinia" - -#: woocommerce-ajax.php:111 -#@ woocommerce -msgid "Please enter your username and password to login." -msgstr "" - -#: woocommerce-ajax.php:191 -#@ woocommerce -msgid "Sorry, your session has expired." -msgstr "Przykro mi, ale Twoja sesja wygasła." - -#: woocommerce-ajax.php:191 -#@ woocommerce -msgid "Return to homepage →" -msgstr "Wróć do strony głownej →" - -#: woocommerce-ajax.php:332 -#: woocommerce-ajax.php:366 -#: woocommerce-ajax.php:389 -#@ woocommerce -msgid "You do not have sufficient permissions to access this page." -msgstr "Nie masz wystarczających uprawnień na dostęp do tej strony." - -#: woocommerce-ajax.php:334 -#: woocommerce-ajax.php:367 -#: woocommerce-ajax.php:390 -#@ woocommerce -msgid "You have taken too long. Please go back and retry." -msgstr "Zabrało Ci to za dużo czasu. Wróć i spróbuj ponownie." - -#: admin/post-types/writepanels/variation-admin-html.php:113 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:53 -#: woocommerce-ajax.php:626 -#@ woocommerce -msgid "Same as parent" -msgstr "Taki sam jak nadrzedny" - -#: admin/post-types/writepanels/order-fee-html.php:25 -#: admin/post-types/writepanels/order-item-html.php:91 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:54 -#: admin/post-types/writepanels/writepanel-product_data.php:186 -#: admin/settings/settings-init.php:982 -#: admin/settings/settings-tax-rates.php:29 -#: admin/woocommerce-admin-settings.php:226 -#: woocommerce-ajax.php:627 -#@ woocommerce -msgid "Standard" -msgstr "Standardowa" - -#: woocommerce-ajax.php:1215 -#: woocommerce-ajax.php:1216 -#, php-format -#@ woocommerce -msgid "Item #%s stock increased from %s to %s." -msgstr "Stan magazynowy #%s zwiększony z %s do %s." - -#: woocommerce-ajax.php:1244 -#, fuzzy -#@ woocommerce -msgid "Value" -msgstr "Wartość (wartości)" - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -#: woocommerce-ajax.php:1558 -#@ woocommerce -msgid "Delete note" -msgstr "Usuń notkę" - -#: woocommerce-core-functions.php:1189 -#: woocommerce-core-functions.php:1215 -#@ woocommerce -msgid "Download Permissions Granted" -msgstr "" - -#: woocommerce-core-functions.php:1328 -#, fuzzy -#@ woocommerce -msgctxt "slug" -msgid "uncategorized" -msgstr "Kategorie" - -#: woocommerce-core-functions.php:1517 -#@ woocommerce -msgid "Select a category" -msgstr "Wybierz kategorię" - -#: woocommerce-core-functions.php:1521 -#@ woocommerce -msgid "Uncategorized" -msgstr "" - -#: woocommerce-core-functions.php:1893 -#@ woocommerce -msgid "Customer" -msgstr "Klient" - -#: woocommerce-core-functions.php:1900 -#@ woocommerce -msgid "Shop Manager" -msgstr "Kierownik sklepu" - -#: woocommerce-core-functions.php:2433 -#@ woocommerce -msgid "Unpaid order cancelled - time limit reached." -msgstr "" - -#: woocommerce-core-functions.php:2485 -#: woocommerce-functions.php:703 -#@ woocommerce -msgid "Please enter a username." -msgstr "Proszę wpisać nazwę użytkownika." - -#: woocommerce-functions.php:208 -#: woocommerce-functions.php:253 -#@ woocommerce -msgid "Cart updated." -msgstr "Koszyk zaktualizowany." - -#: woocommerce-functions.php:239 -#, php-format -#@ woocommerce -msgid "You can only have 1 %s in your cart." -msgstr "" - -#: woocommerce-functions.php:296 -#: woocommerce-functions.php:343 -#@ woocommerce -msgid "Please choose product options…" -msgstr "Proszę wybierz opcje produktów …" - -#: woocommerce-functions.php:378 -#@ woocommerce -msgid "Please choose the quantity of items you wish to add to your cart…" -msgstr "" - -#: woocommerce-functions.php:386 -#, fuzzy -#@ woocommerce -msgid "Please choose a product to add to your cart…" -msgstr "Proszę wybierz produkt…" - -#: woocommerce-functions.php:455 -#, php-format -#@ woocommerce -msgid "Added "%s" to your cart." -msgstr "" - -#: woocommerce-functions.php:455 -#@ default -msgid "" and "" -msgstr "" - -#: woocommerce-functions.php:458 -#, fuzzy, php-format -#@ woocommerce -msgid ""%s" was successfully added to your cart." -msgstr "Produkt pomyślnie dodany do Twojego koszyka." - -#: woocommerce-functions.php:466 -#@ woocommerce -msgid "Continue Shopping →" -msgstr "Kontynuuj zakupy →" - -#: woocommerce-functions.php:633 -#@ woocommerce -msgid "Username is required." -msgstr "Nazwa użytkownika jest wymagana." - -#: woocommerce-functions.php:634 -#: woocommerce-functions.php:729 -#@ woocommerce -msgid "Password is required." -msgstr "Hasło jest wymagane." - -#: woocommerce-functions.php:705 -#@ woocommerce -msgid "This username is invalid because it uses illegal characters. Please enter a valid username." -msgstr "Ta nazwa użytkownika jest błędna, ponieważ zawiera niedozwolone znaki. Proszę wpisać poprawną nazwę użytkownika." - -#: woocommerce-functions.php:708 -#@ woocommerce -msgid "This username is already registered, please choose another one." -msgstr "Ta nazwa użytkownika już istnieje, proszę wybrać inną." - -#: woocommerce-functions.php:720 -#@ woocommerce -msgid "Please type your e-mail address." -msgstr "Proszę wpisać swój adres e-mail." - -#: woocommerce-functions.php:722 -#@ woocommerce -msgid "The email address isn’t correct." -msgstr "Twój adres e-mail jest niepoprawny," - -#: woocommerce-functions.php:725 -#@ woocommerce -msgid "This email is already registered, please choose another one." -msgstr "Twn adres e-mail jest już zarejestrowany, proszę wybrać inny." - -#: woocommerce-functions.php:730 -#@ woocommerce -msgid "Re-enter your password." -msgstr "Powtórz hasło." - -#: woocommerce-functions.php:735 -#@ woocommerce -msgid "Anti-spam field was filled in." -msgstr "Pole antyspamowe zostało wypełnione." - -#: woocommerce-functions.php:841 -#@ woocommerce -msgid "The cart has been filled with the items from your previous order." -msgstr "" - -#: woocommerce-functions.php:867 -#@ woocommerce -msgid "Order cancelled by customer." -msgstr "Zamówienie zostało anulowane przez klienta." - -#: woocommerce-functions.php:870 -#@ woocommerce -msgid "Your order was cancelled." -msgstr "Twoje zamówienie zostało anulowane." - -#: woocommerce-functions.php:876 -#@ woocommerce -msgid "Your order is no longer pending and could not be cancelled. Please contact us if you need assistance." -msgstr "Twoje zamówienie zostało już przetworzone i nie może zostać anulowane. Proszę skontaktuj się z nami jeśli potrzebujesz pomocy." - -#: woocommerce-functions.php:911 -#@ woocommerce -msgid "Invalid email address." -msgstr "Błędny adres e-mail." - -#: woocommerce-functions.php:911 -#: woocommerce-functions.php:933 -#: woocommerce-functions.php:953 -#: woocommerce-functions.php:959 -#: woocommerce-functions.php:963 -#: woocommerce-functions.php:966 -#: woocommerce-functions.php:996 -#: woocommerce-functions.php:1099 -#@ woocommerce -msgid "Go to homepage →" -msgstr "Strona główna →" - -#: woocommerce-functions.php:933 -#@ woocommerce -msgid "Invalid download." -msgstr "Bład przy pobieraniu." - -#: woocommerce-functions.php:945 -#@ woocommerce -msgid "You must be logged in to download files." -msgstr "Musisz być zalogowany, aby pobierać pliki." - -#: woocommerce-functions.php:948 -#@ woocommerce -msgid "This is not your download link." -msgstr "To nie jest Twój link do pobierania." - -#: woocommerce-functions.php:953 -#, fuzzy -#@ woocommerce -msgid "Product no longer exists." -msgstr "Produkt już nie istnieje" - -#: woocommerce-functions.php:963 -#@ woocommerce -msgid "Sorry, you have reached your download limit for this file" -msgstr "Przepraszamy, osiągnąłeś swój limit pobierania tego pliku." - -#: woocommerce-functions.php:966 -#@ woocommerce -msgid "Sorry, this download has expired" -msgstr "" - -#: woocommerce-functions.php:1099 -#@ woocommerce -msgid "File not found" -msgstr "Plik nie znaleziony" - -#: woocommerce-functions.php:1209 -#@ woocommerce -msgid "New products" -msgstr "Nowe produkty" - -#: woocommerce-functions.php:1217 -#, php-format -#@ woocommerce -msgid "New products added to %s" -msgstr "Nowe produkty dodane do %s" - -#: woocommerce-functions.php:1225 -#, php-format -#@ woocommerce -msgid "New products tagged %s" -msgstr "Otagowane nowe produkty %s" - -#: woocommerce-functions.php:1264 -#@ woocommerce -msgid "You have taken too long. Please go back and refresh the page." -msgstr "Zabrało Ci to za dużo czasu. Proszę wrócić i odświeżyć stronę." - -#: woocommerce-functions.php:1267 -#@ woocommerce -msgid "Please rate the product." -msgstr "Proszę oceń ten produkt." - -#: admin/settings/settings-init.php:95 -#: woocommerce-template.php:196 -#@ woocommerce -msgid "This is a demo store for testing purposes — no orders shall be fulfilled." -msgstr "To jest wersja demonstracyjna sklepu do celów testowych— Zamówienia nie będą realizowane." - -#: woocommerce-template.php:215 -#, php-format -#@ woocommerce -msgid "Search Results: “%s”" -msgstr "" - -#: woocommerce-template.php:218 -#, php-format -#@ woocommerce -msgid " – Page %s" -msgstr "" - -#: woocommerce-template.php:990 -#@ woocommerce -msgctxt "breadcrumb" -msgid "Home" -msgstr "Glowna" - -#: woocommerce-template.php:1288 -#: woocommerce.php:1175 -#@ woocommerce -msgid "required" -msgstr "" - -#: woocommerce-template.php:1334 -#@ woocommerce -msgid "Update country" -msgstr "" - -#: woocommerce-template.php:1489 -#@ woocommerce -msgid "Search for:" -msgstr "Szukaj:" - -#: woocommerce-template.php:1490 -#@ woocommerce -msgid "Search for products" -msgstr "Szukaj produktów" - -#: admin/post-types/product.php:620 -#: admin/post-types/product.php:893 -#: admin/post-types/writepanels/writepanel-product_data.php:1030 -#: woocommerce-template.php:1491 -#: woocommerce.php:913 -#@ woocommerce -msgid "Search" -msgstr "Szukaj" - -#: admin/includes/updates/woocommerce-update-2.0.php:50 -#: admin/woocommerce-admin-init.php:895 -#: woocommerce.php:752 -#@ woocommerce -msgctxt "slug" -msgid "product-category" -msgstr "kategoria-produktu" - -#: admin/includes/updates/woocommerce-update-2.0.php:51 -#: admin/woocommerce-admin-init.php:908 -#: woocommerce.php:753 -#@ woocommerce -msgctxt "slug" -msgid "product-tag" -msgstr "tag-produktu" - -#: admin/includes/updates/woocommerce-update-2.0.php:59 -#: woocommerce.php:755 -#@ woocommerce -msgctxt "slug" -msgid "product" -msgstr "" - -#: woocommerce.php:791 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Categories" -msgstr "" - -#: woocommerce.php:792 -#@ woocommerce -msgid "Search Product Categories" -msgstr "Kategorie wyszukiwanych produktów" - -#: woocommerce.php:793 -#@ woocommerce -msgid "All Product Categories" -msgstr "Wszystkie kategorie produktów" - -#: woocommerce.php:794 -#@ woocommerce -msgid "Parent Product Category" -msgstr "Kategoria produktu nadrzędnego" - -#: woocommerce.php:795 -#@ woocommerce -msgid "Parent Product Category:" -msgstr "Kategoria produktu nadrzędnego:" - -#: woocommerce.php:796 -#@ woocommerce -msgid "Edit Product Category" -msgstr "Edytuj kategorię produktu" - -#: woocommerce.php:797 -#@ woocommerce -msgid "Update Product Category" -msgstr "Uaktualnij kategorię produktu" - -#: woocommerce.php:798 -#@ woocommerce -msgid "Add New Product Category" -msgstr "Dodaj nową kategorię produktu" - -#: woocommerce.php:799 -#@ woocommerce -msgid "New Product Category Name" -msgstr "Nowa nazwa kategorii produktu" - -#: woocommerce.php:827 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Tags" -msgstr "" - -#: woocommerce.php:828 -#@ woocommerce -msgid "Search Product Tags" -msgstr "Poszukiwane tagi produktu" - -#: woocommerce.php:829 -#@ woocommerce -msgid "All Product Tags" -msgstr "Wszystkie tagi produktów" - -#: woocommerce.php:830 -#@ woocommerce -msgid "Parent Product Tag" -msgstr "Tag produktu nadrzędnego" - -#: woocommerce.php:831 -#@ woocommerce -msgid "Parent Product Tag:" -msgstr "Tag produktu nadrzędnego:" - -#: woocommerce.php:832 -#@ woocommerce -msgid "Edit Product Tag" -msgstr "Edytuj tag produktu" - -#: woocommerce.php:833 -#@ woocommerce -msgid "Update Product Tag" -msgstr "Uaktualnij tag produktu" - -#: woocommerce.php:834 -#@ woocommerce -msgid "Add New Product Tag" -msgstr "Dodaj nowy tag produktu" - -#: woocommerce.php:835 -#@ woocommerce -msgid "New Product Tag Name" -msgstr "Nowa nazwa tagu produktu" - -#: woocommerce.php:854 -#: woocommerce.php:856 -#@ woocommerce -msgid "Shipping Classes" -msgstr "Klasy wysyłkowe" - -#: woocommerce.php:858 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Shipping Classes" -msgstr "" - -#: woocommerce.php:859 -#@ woocommerce -msgid "Search Shipping Classes" -msgstr "Szukaj klas wysyłkowych" - -#: woocommerce.php:860 -#@ woocommerce -msgid "All Shipping Classes" -msgstr "Wszystkie klasy wysyłkowe" - -#: woocommerce.php:861 -#@ woocommerce -msgid "Parent Shipping Class" -msgstr "Nadrzędna klasa wysyłkowa" - -#: woocommerce.php:862 -#@ woocommerce -msgid "Parent Shipping Class:" -msgstr "Nadrzędna klasa wysyłkowa:" - -#: woocommerce.php:863 -#@ woocommerce -msgid "Edit Shipping Class" -msgstr "Edytuj klasę wysyłkową" - -#: woocommerce.php:864 -#@ woocommerce -msgid "Update Shipping Class" -msgstr "Uaktualnij klasę wysyłkową" - -#: woocommerce.php:865 -#@ woocommerce -msgid "Add New Shipping Class" -msgstr "Dodaj nową klasę wysyłkową" - -#: woocommerce.php:866 -#@ woocommerce -msgid "New Shipping Class Name" -msgstr "Nazwa nowej klasy wysyłkowej" - -#: woocommerce.php:914 -#@ woocommerce -msgid "All" -msgstr "Wszystkie" - -#: woocommerce.php:915 -#: woocommerce.php:916 -#@ woocommerce -msgid "Parent" -msgstr "Rodzic" - -#: admin/woocommerce-admin-attributes.php:276 -#: woocommerce.php:918 -#@ woocommerce -msgid "Update" -msgstr "Uaktualnij" - -#: woocommerce.php:919 -#@ woocommerce -msgid "Add New" -msgstr "Dodaj nowy" - -#: woocommerce.php:920 -#@ woocommerce -msgid "New" -msgstr "Nowy" - -#: woocommerce.php:950 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Products" -msgstr "" - -#: woocommerce.php:951 -#@ woocommerce -msgid "Add Product" -msgstr "Dodaj produkt" - -#: woocommerce.php:952 -#@ woocommerce -msgid "Add New Product" -msgstr "Dodaj nowy produkt" - -#: woocommerce.php:954 -#@ woocommerce -msgid "Edit Product" -msgstr "Edytuj produkt" - -#: woocommerce.php:955 -#@ woocommerce -msgid "New Product" -msgstr "Nowy produkt" - -#: woocommerce.php:956 -#: woocommerce.php:957 -#@ woocommerce -msgid "View Product" -msgstr "Zobacz produkt" - -#: woocommerce.php:958 -#@ woocommerce -msgid "Search Products" -msgstr "Szukaj produktów" - -#: woocommerce.php:959 -#@ woocommerce -msgid "No Products found" -msgstr "Nie znaleziono produktów" - -#: woocommerce.php:960 -#@ woocommerce -msgid "No Products found in trash" -msgstr "Nie znaleziono produktów w koszu" - -#: woocommerce.php:961 -#@ woocommerce -msgid "Parent Product" -msgstr "Nadrzędny produkt" - -#: woocommerce.php:963 -#@ woocommerce -msgid "This is where you can add new products to your store." -msgstr "Tutaj możesz dodać nowe produkty do sklepu." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -#: woocommerce.php:986 -#@ woocommerce -msgid "Variations" -msgstr "Warianty" - -#: woocommerce.php:987 -#@ woocommerce -msgid "Variation" -msgstr "Wariant" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:193 -#: woocommerce.php:988 -#@ woocommerce -msgid "Add Variation" -msgstr "Dodaj wariant" - -#: woocommerce.php:989 -#@ woocommerce -msgid "Add New Variation" -msgstr "Dodaj nowy wariant" - -#: woocommerce.php:991 -#@ woocommerce -msgid "Edit Variation" -msgstr "Edytuj wariant" - -#: woocommerce.php:992 -#@ woocommerce -msgid "New Variation" -msgstr "Nowy wariant" - -#: woocommerce.php:993 -#: woocommerce.php:994 -#@ woocommerce -msgid "View Variation" -msgstr "Zobacz wariant" - -#: woocommerce.php:995 -#@ woocommerce -msgid "Search Variations" -msgstr "Szukaj wariantów" - -#: woocommerce.php:996 -#@ woocommerce -msgid "No Variations found" -msgstr "Nie znaleziono wariantów" - -#: woocommerce.php:997 -#@ woocommerce -msgid "No Variations found in trash" -msgstr "Nie znaleziono wariantów w koszu" - -#: woocommerce.php:998 -#@ woocommerce -msgid "Parent Variation" -msgstr "Nadrzędny wariant" - -#: admin/woocommerce-admin-init.php:140 -#: admin/woocommerce-admin-init.php:142 -#: woocommerce.php:1015 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Orders" -msgstr "" - -#: admin/woocommerce-admin-content.php:68 -#: admin/woocommerce-admin-dashboard.php:142 -#: woocommerce.php:1024 -#@ woocommerce -msgid "Orders" -msgstr "Zamówienia" - -#: woocommerce.php:1026 -#@ woocommerce -msgid "Add Order" -msgstr "Dodaj zamówienie" - -#: woocommerce.php:1027 -#@ woocommerce -msgid "Add New Order" -msgstr "Dodaj nowe zamówienie" - -#: woocommerce.php:1029 -#@ woocommerce -msgid "Edit Order" -msgstr "Edytuj zamówienie" - -#: woocommerce.php:1030 -#@ woocommerce -msgid "New Order" -msgstr "Nowe zamówienie" - -#: woocommerce.php:1033 -#@ woocommerce -msgid "Search Orders" -msgstr "Szukaj zamówień" - -#: woocommerce.php:1034 -#@ woocommerce -msgid "No Orders found" -msgstr "Nie znaleziono zamówień" - -#: woocommerce.php:1035 -#@ woocommerce -msgid "No Orders found in trash" -msgstr "Nie znaleziono zamówień w koszu" - -#: woocommerce.php:1036 -#@ woocommerce -msgid "Parent Orders" -msgstr "Nadrzędne zamówienia" - -#: woocommerce.php:1039 -#@ woocommerce -msgid "This is where store orders are stored." -msgstr "Tutaj przechowywane są zamówienia." - -#: admin/settings/settings-init.php:105 -#: admin/woocommerce-admin-content.php:61 -#: admin/woocommerce-admin-content.php:76 -#: admin/woocommerce-admin-reports.php:72 -#: woocommerce.php:1061 -#@ woocommerce -msgid "Coupons" -msgstr "Kupony" - -#: woocommerce.php:1063 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Coupons" -msgstr "" - -#: woocommerce.php:1064 -#@ woocommerce -msgid "Add Coupon" -msgstr "Dodaj kupon" - -#: woocommerce.php:1065 -#@ woocommerce -msgid "Add New Coupon" -msgstr "Dodaj nowy kupon" - -#: woocommerce.php:1067 -#@ woocommerce -msgid "Edit Coupon" -msgstr "Edytuj kupon" - -#: woocommerce.php:1068 -#@ woocommerce -msgid "New Coupon" -msgstr "Nowy kupon" - -#: woocommerce.php:1069 -#@ woocommerce -msgid "View Coupons" -msgstr "Zobacz kupony" - -#: woocommerce.php:1070 -#@ woocommerce -msgid "View Coupon" -msgstr "Zobacz kupon" - -#: woocommerce.php:1071 -#@ woocommerce -msgid "Search Coupons" -msgstr "Szukaj kuponów" - -#: woocommerce.php:1072 -#@ woocommerce -msgid "No Coupons found" -msgstr "Nie znaleziono kuponów" - -#: woocommerce.php:1073 -#@ woocommerce -msgid "No Coupons found in trash" -msgstr "Nie znaleziono kuponów w koszu" - -#: woocommerce.php:1074 -#@ woocommerce -msgid "Parent Coupon" -msgstr "Nadrzędny kupon" - -#: woocommerce.php:1076 -#@ woocommerce -msgid "This is where you can add new coupons that customers can use in your store." -msgstr "Tutaj możesz dodać nowe kupony, których klienci mogą używać w Twoim sklepie." - -#: woocommerce.php:1172 -#, fuzzy -#@ woocommerce -msgid "Select an option…" -msgstr "Wybierz kraj…" - -#: woocommerce.php:1173 -#, fuzzy -#@ woocommerce -msgid "Please select a rating" -msgstr "Usuń zaznaczone stawki" - -#: woocommerce.php:1174 -#@ woocommerce -msgid "Sorry, no products matched your selection. Please choose a different combination." -msgstr "" - -#: woocommerce.php:1656 -#@ woocommerce -msgid "Cart % Discount" -msgstr "Procentowy rabat na cały koszyk" - -#: woocommerce.php:1657 -#@ woocommerce -msgid "Product Discount" -msgstr "Rabat na produkt" - -#: woocommerce.php:1658 -#@ woocommerce -msgid "Product % Discount" -msgstr "Procentowy rabat na produkt" - -#: admin/woocommerce-admin-settings.php:45 -#: woocommerce.php:1723 -#@ woocommerce -msgid "Action failed. Please refresh the page and retry." -msgstr "Akcja nieudana. Odśwież stronę i spróbuj ponownie." - -#: admin/importers/importers-init.php:13 -#@ woocommerce -msgid "WooCommerce Tax Rates (CSV)" -msgstr "" - -#: admin/importers/importers-init.php:13 -#@ woocommerce -msgid "Import tax rates to your store via a csv file." -msgstr "" - -#: admin/importers/tax-rates-importer.php:103 -#: admin/importers/tax-rates-importer.php:186 -#: admin/importers/tax-rates-importer.php:226 -#: admin/importers/tax-rates-importer.php:241 -#@ woocommerce -msgid "Sorry, there has been an error." -msgstr "" - -#: admin/importers/tax-rates-importer.php:104 -#@ woocommerce -msgid "The file does not exist, please try again." -msgstr "" - -#: admin/importers/tax-rates-importer.php:187 -#@ woocommerce -msgid "The CSV is invalid." -msgstr "" - -#: admin/importers/tax-rates-importer.php:198 -#, php-format -#@ woocommerce -msgid "Import complete - imported %s tax rates and skipped %s." -msgstr "" - -#: admin/importers/tax-rates-importer.php:208 -#@ woocommerce -msgid "All done!" -msgstr "" - -#: admin/importers/tax-rates-importer.php:208 -#@ woocommerce -msgid "View Tax Rates" -msgstr "" - -#: admin/importers/tax-rates-importer.php:259 -#@ woocommerce -msgid "Import Tax Rates" -msgstr "" - -#: admin/importers/tax-rates-importer.php:282 -#@ woocommerce -msgid "Hi there! Upload a CSV file containing tax rates to import the contents into your shop. Choose a .csv file to upload, then click \"Upload file and import\"." -msgstr "" - -#: admin/importers/tax-rates-importer.php:284 -#, php-format -#@ woocommerce -msgid "Tax rates need to be defined with columns in a specific order (10 columns). Click here to download a sample." -msgstr "" - -#: admin/importers/tax-rates-importer.php:292 -#@ default -msgid "Before you can upload your import file, you will need to fix the following error:" -msgstr "" - -#: admin/importers/tax-rates-importer.php:301 -#@ default -msgid "Choose a file from your computer:" -msgstr "" - -#: admin/importers/tax-rates-importer.php:307 -#, php-format -#@ default -msgid "Maximum size: %s" -msgstr "" - -#: admin/importers/tax-rates-importer.php:312 -#@ woocommerce -msgid "OR enter path to file:" -msgstr "" - -#: admin/importers/tax-rates-importer.php:319 -#@ woocommerce -msgid "Delimiter" -msgstr "" - -#: admin/importers/tax-rates-importer.php:325 -#@ default -msgid "Upload file and import" -msgstr "" - -#: admin/includes/duplicate_product.php:23 -#@ woocommerce -msgid "No product to duplicate has been supplied!" -msgstr "" - -#: admin/includes/duplicate_product.php:43 -#@ woocommerce -msgid "Product creation failed, could not find original product:" -msgstr "" - -#: admin/includes/duplicate_product.php:89 -#@ woocommerce -msgid "(Copy)" -msgstr "" - -#: admin/includes/notice-install.php:6 -#@ woocommerce -msgid "Welcome to WooCommerce – You're almost ready to start selling :)" -msgstr "" - -#: admin/includes/notice-install.php:7 -#@ woocommerce -msgid "Install WooCommerce Pages" -msgstr "" - -#: admin/includes/notice-install.php:7 -#@ woocommerce -msgid "Skip setup" -msgstr "" - -#: admin/includes/notice-theme-support.php:6 -#@ woocommerce -msgid "Your theme does not declare WooCommerce support – if you encounter layout issues please read our integration guide or choose a WooCommerce theme :)" -msgstr "" - -#: admin/includes/notice-theme-support.php:7 -#@ woocommerce -msgid "Theme Integration Guide" -msgstr "" - -#: admin/includes/notice-theme-support.php:7 -#@ woocommerce -msgid "Hide this notice" -msgstr "" - -#: admin/includes/notice-update.php:6 -#@ woocommerce -msgid "Data Update Required – We just need to update your install to the latest version" -msgstr "" - -#: admin/includes/notice-update.php:7 -#@ woocommerce -msgid "Run the updater" -msgstr "" - -#: admin/includes/notice-update.php:12 -#@ woocommerce -msgid "It is strongly recommended that you backup your database before proceeding. Are you sure you wish to run the updater now?" -msgstr "" - -#: admin/includes/updates/woocommerce-update-2.0.php:180 -#: admin/woocommerce-admin-install.php:204 -#@ woocommerce -msgctxt "page_slug" -msgid "lost-password" -msgstr "" - -#: admin/includes/updates/woocommerce-update-2.0.php:180 -#: admin/woocommerce-admin-install.php:204 -#: admin/woocommerce-admin-status.php:309 -#@ woocommerce -msgid "Lost Password" -msgstr "" - -#: admin/includes/welcome.php:33 -#@ woocommerce -msgid "Welcome to WooCommerce" -msgstr "" - -#: admin/includes/welcome.php:128 -#, php-format -#@ woocommerce -msgid "Welcome to WooCommerce %s" -msgstr "" - -#: admin/includes/welcome.php:133 -#@ woocommerce -msgid "Thanks, all done!" -msgstr "" - -#: admin/includes/welcome.php:135 -#@ woocommerce -msgid "Thank you for updating to the latest version!" -msgstr "" - -#: admin/includes/welcome.php:137 -#@ woocommerce -msgid "Thanks for installing!" -msgstr "" - -#: admin/includes/welcome.php:139 -#, php-format -#@ woocommerce -msgid "%s WooCommerce %s is more powerful, stable, and secure than ever before. We hope you enjoy it." -msgstr "" - -#: admin/includes/welcome.php:143 -#, php-format -#@ default -msgid "Version %s" -msgstr "" - -#: admin/includes/welcome.php:147 -#@ woocommerce -msgid "Docs" -msgstr "" - -#: admin/includes/welcome.php:154 -#@ woocommerce -msgid "What's New" -msgstr "" - -#: admin/includes/welcome.php:156 -#@ woocommerce -msgid "Credits" -msgstr "" - -#: admin/includes/welcome.php:179 -#@ woocommerce -msgid "Security in mind" -msgstr "" - -#: admin/includes/welcome.php:183 -#@ woocommerce -msgid "Sucuri Safe Plugin" -msgstr "" - -#: admin/includes/welcome.php:184 -#@ woocommerce -msgid "You will be happy to learn that WooCommerce has been audited and certified by the Sucuri Security team. Whilst there is not much to be seen visually to understand the amount of work that went into this audit, rest assured that your website is powered by one of the most powerful and stable eCommerce plugins available." -msgstr "" - -#: admin/includes/welcome.php:187 -#@ woocommerce -msgid "A Smoother Admin Experience" -msgstr "" - -#: admin/includes/welcome.php:193 -#@ woocommerce -msgid "New Product Panel" -msgstr "" - -#: admin/includes/welcome.php:194 -#@ woocommerce -msgid "We have revised the product data panel making it cleaner, more streamlined, and more logical. Adding products is a breeze!" -msgstr "" - -#: admin/includes/welcome.php:199 -#@ woocommerce -msgid "Nicer Order Screens" -msgstr "" - -#: admin/includes/welcome.php:200 -#@ woocommerce -msgid "Order pages have had a cleanup, with a more easily scannable interface. We particularly like the new status icons!" -msgstr "" - -#: admin/includes/welcome.php:205 -#@ woocommerce -msgid "Multi-Download Support" -msgstr "" - -#: admin/includes/welcome.php:206 -#@ woocommerce -msgid "Products can have multiple downloadable files - purchasers will get access to all the files added." -msgstr "" - -#: admin/includes/welcome.php:211 -#@ woocommerce -msgid "Less Taxing Taxes" -msgstr "" - -#: admin/includes/welcome.php:217 -#@ woocommerce -msgid "New Tax Input Panel" -msgstr "" - -#: admin/includes/welcome.php:218 -#@ woocommerce -msgid "The tax input pages have been streamlined to make inputting taxes simpler - adding multiple taxes for a single jurisdiction is now much easier using the priority system. There is also CSV import/export support." -msgstr "" - -#: admin/includes/welcome.php:222 -#@ woocommerce -msgid "Improved Tax Options" -msgstr "" - -#: admin/includes/welcome.php:223 -#@ woocommerce -msgid "As requested by some users, we now support taxing the billing address instead of shipping (optional), and we allow you to choose which tax class applies to shipping." -msgstr "" - -#: admin/includes/welcome.php:228 -#@ woocommerce -msgid "Product Listing Improvements Customers Will Love" -msgstr "" - -#: admin/includes/welcome.php:234 -#@ woocommerce -msgid "New Sorting Options" -msgstr "" - -#: admin/includes/welcome.php:235 -#@ woocommerce -msgid "Customers can now sort products by popularity and ratings." -msgstr "" - -#: admin/includes/welcome.php:240 -#@ woocommerce -msgid "Better Pagination and Result Counts" -msgstr "" - -#: admin/includes/welcome.php:241 -#@ woocommerce -msgid "Numbered pagination has been added to core, and we show the number of results found above the listings." -msgstr "" - -#: admin/includes/welcome.php:246 -#@ woocommerce -msgid "Inline Star Rating Display" -msgstr "" - -#: admin/includes/welcome.php:247 -#@ woocommerce -msgid "We have added star ratings to the catalog which are pulled from reviews." -msgstr "" - -#: admin/includes/welcome.php:255 -#@ woocommerce -msgid "Under the Hood" -msgstr "" - -#: admin/includes/welcome.php:259 -#@ woocommerce -msgid "New product classes" -msgstr "" - -#: admin/includes/welcome.php:260 -#@ woocommerce -msgid "The product classes have been rewritten and are now factory based. Much more extendable, and easier to query products using the new get_product() function." -msgstr "" - -#: admin/includes/welcome.php:264 -#@ woocommerce -msgid "Capability overhaul" -msgstr "" - -#: admin/includes/welcome.php:265 -#@ woocommerce -msgid "More granular capabilities for admin/shop manager roles covering products, orders and coupons." -msgstr "" - -#: admin/includes/welcome.php:269 -#@ woocommerce -msgid "API Improvements" -msgstr "" - -#: admin/includes/welcome.php:270 -#@ woocommerce -msgid "WC-API now has real endpoints, and we've optimised the gateways API significantly by only loading gateways when needed." -msgstr "" - -#: admin/includes/welcome.php:276 -#@ woocommerce -msgid "Cache-friendly cart widgets" -msgstr "" - -#: admin/includes/welcome.php:277 -#@ woocommerce -msgid "Cart widgets and other \"fragments\" are now pulled in via AJAX - this works wonders with static page caching." -msgstr "" - -#: admin/includes/welcome.php:281 -#@ woocommerce -msgid "Session handling" -msgstr "" - -#: admin/includes/welcome.php:282 -#@ woocommerce -msgid "PHP SESSIONS have been a problem for many users in the past, so we've developed our own handler using cookies and options to make these more reliable." -msgstr "" - -#: admin/includes/welcome.php:286 -#@ woocommerce -msgid "Retina Ready" -msgstr "" - -#: admin/includes/welcome.php:287 -#@ woocommerce -msgid "All graphics within WC have been optimised for HiDPI displays." -msgstr "" - -#: admin/includes/welcome.php:294 -#@ woocommerce -msgid "Better stock handling" -msgstr "" - -#: admin/includes/welcome.php:295 -#@ woocommerce -msgid "We have added an option to hold stock for unpaid orders (defaults to 60mins). When this time limit is reached, and the order is not paid for, stock is released and the order is cancelled." -msgstr "" - -#: admin/includes/welcome.php:299 -#@ woocommerce -msgid "Improved Line-item storage" -msgstr "" - -#: admin/includes/welcome.php:300 -#@ woocommerce -msgid "We have changed how order items get stored making them easier (and faster) to access for reporting. Order items are no longer serialised within an order - they are stored within their own table." -msgstr "" - -#: admin/includes/welcome.php:304 -#@ woocommerce -msgid "Autoload" -msgstr "" - -#: admin/includes/welcome.php:305 -#@ woocommerce -msgid "We have setup autoloading for classes - this has dramatically reduced memory usage in 2.0." -msgstr "" - -#: admin/includes/welcome.php:312 -#@ woocommerce -msgid "Go to WooCommerce Settings" -msgstr "" - -#: admin/includes/welcome.php:330 -#@ woocommerce -msgid "WooCommerce is developed and maintained by a worldwide team of passionate individuals and backed by an awesome developer community. Want to see your name? Contribute to WooCommerce." -msgstr "" - -#: admin/includes/welcome.php:356 -#, php-format -#@ woocommerce -msgid "View %s" -msgstr "" - -#: admin/post-types/product.php:31 -#@ woocommerce -msgid "Make a duplicate from this product" -msgstr "" - -#: admin/post-types/product.php:32 -#@ woocommerce -msgid "Duplicate" -msgstr "" - -#: admin/post-types/product.php:61 -#@ woocommerce -msgid "Copy to a new draft" -msgstr "" - -#: admin/post-types/product.php:86 -#: admin/woocommerce-admin-taxonomies.php:297 -#@ woocommerce -msgid "Image" -msgstr "" - -#: admin/post-types/product.php:91 -#: admin/post-types/product.php:557 -#: admin/post-types/writepanels/variation-admin-html.php:46 -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#: admin/woocommerce-admin-reports.php:2083 -#: admin/woocommerce-admin-reports.php:2119 -#@ woocommerce -msgid "SKU" -msgstr "" - -#: admin/post-types/product.php:94 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:83 -#: admin/woocommerce-admin-content.php:63 -#: admin/woocommerce-admin-reports.php:99 -#@ woocommerce -msgid "Stock" -msgstr "" - -#: admin/post-types/product.php:98 -#@ woocommerce -msgid "Categories" -msgstr "" - -#: admin/post-types/product.php:99 -#@ woocommerce -msgid "Tags" -msgstr "" - -#: admin/post-types/product.php:100 -#: admin/post-types/product.php:632 -#: admin/post-types/product.php:904 -#: admin/post-types/writepanels/writepanel-product_data.php:1040 -#: admin/woocommerce-admin-init.php:463 -#@ woocommerce -msgid "Featured" -msgstr "" - -#: admin/post-types/product.php:101 -#: admin/woocommerce-admin-attributes.php:250 -#: admin/woocommerce-admin-attributes.php:308 -#: admin/woocommerce-admin-attributes.php:385 -#@ woocommerce -msgid "Type" -msgstr "" - -#: admin/post-types/product.php:102 -#: admin/post-types/shop_order.php:50 -#: templates/myaccount/my-orders.php:33 -#@ woocommerce -msgid "Date" -msgstr "" - -#: admin/post-types/product.php:151 -#@ default -msgid "Edit this item" -msgstr "" - -#: admin/post-types/product.php:152 -#@ default -msgid "Edit this item inline" -msgstr "" - -#: admin/post-types/product.php:152 -#@ default -msgid "Quick Edit" -msgstr "" - -#: admin/post-types/product.php:156 -#: admin/post-types/shop_coupon.php:65 -#@ default -msgid "Restore this item from the Trash" -msgstr "" - -#: admin/post-types/product.php:156 -#: admin/post-types/shop_coupon.php:65 -#@ default -msgid "Restore" -msgstr "" - -#: admin/post-types/product.php:158 -#: admin/post-types/shop_coupon.php:67 -#@ default -msgid "Move this item to the Trash" -msgstr "" - -#: admin/post-types/product.php:158 -#: admin/post-types/shop_coupon.php:67 -#@ default -msgid "Trash" -msgstr "" - -#: admin/post-types/product.php:160 -#: admin/post-types/shop_coupon.php:69 -#@ default -msgid "Delete this item permanently" -msgstr "" - -#: admin/post-types/product.php:160 -#: admin/post-types/shop_coupon.php:69 -#: admin/post-types/writepanels/writepanel-order_data.php:463 -#@ default -#@ woocommerce -msgid "Delete Permanently" -msgstr "" - -#: admin/post-types/product.php:165 -#, php-format -#@ default -msgid "Preview “%s”" -msgstr "" - -#: admin/post-types/product.php:165 -#@ default -msgid "Preview" -msgstr "" - -#: admin/post-types/product.php:167 -#, php-format -#@ default -msgid "View “%s”" -msgstr "" - -#: admin/post-types/product.php:214 -#@ woocommerce -msgid "Grouped" -msgstr "" - -#: admin/post-types/product.php:216 -#@ woocommerce -msgid "External/Affiliate" -msgstr "" - -#: admin/post-types/product.php:220 -#: admin/post-types/product.php:407 -#: admin/post-types/writepanels/variation-admin-html.php:168 -#: admin/post-types/writepanels/writepanel-product_data.php:52 -#@ woocommerce -msgid "Virtual" -msgstr "" - -#: admin/post-types/product.php:222 -#: admin/post-types/product.php:403 -#: admin/post-types/writepanels/variation-admin-html.php:166 -#: admin/post-types/writepanels/writepanel-product_data.php:58 -#@ woocommerce -msgid "Downloadable" -msgstr "" - -#: admin/post-types/product.php:224 -#@ woocommerce -msgid "Simple" -msgstr "" - -#: admin/post-types/product.php:228 -#: admin/post-types/product.php:387 -#@ woocommerce -msgid "Variable" -msgstr "" - -#: admin/post-types/product.php:251 -#@ woocommerce -msgid "Toggle featured" -msgstr "" - -#: admin/post-types/product.php:253 -#@ woocommerce -msgid "yes" -msgstr "" - -#: admin/post-types/product.php:255 -#@ woocommerce -msgid "no" -msgstr "" - -#: admin/post-types/product.php:373 -#@ woocommerce -msgid "Show all product types" -msgstr "" - -#: admin/post-types/product.php:381 -#: admin/post-types/writepanels/writepanel-product_data.php:39 -#@ woocommerce -msgid "Grouped product" -msgstr "" - -#: admin/post-types/product.php:383 -#: admin/post-types/writepanels/writepanel-product_data.php:40 -#@ woocommerce -msgid "External/Affiliate product" -msgstr "" - -#: admin/post-types/product.php:385 -#: admin/post-types/writepanels/writepanel-product_data.php:38 -#@ woocommerce -msgid "Simple product" -msgstr "" - -#: admin/post-types/product.php:399 -#@ woocommerce -msgid "Show all sub-types" -msgstr "" - -#: admin/post-types/product.php:520 -#, php-format -#@ woocommerce -msgid "[%s with SKU of %s]" -msgstr "" - -#: admin/post-types/product.php:526 -#, php-format -#@ woocommerce -msgid "[%s with ID of %d]" -msgstr "" - -#: admin/post-types/product.php:552 -#: admin/post-types/product.php:783 -#: admin/post-types/writepanels/writepanels-init.php:46 -#: admin/settings/settings-init.php:518 -#@ woocommerce -msgid "Product Data" -msgstr "" - -#: admin/post-types/product.php:570 -#@ woocommerce -msgid "Regular price" -msgstr "" - -#: admin/post-types/product.php:575 -#: admin/post-types/product.php:811 -#@ woocommerce -msgid "Sale" -msgstr "" - -#: admin/post-types/product.php:577 -#@ woocommerce -msgid "Sale price" -msgstr "" - -#: admin/post-types/product.php:599 -#: admin/post-types/product.php:861 -#@ woocommerce -msgid "L/W/H" -msgstr "" - -#: admin/post-types/product.php:601 -#: admin/post-types/product.php:877 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:85 -#: admin/post-types/writepanels/writepanel-product_data.php:286 -#@ woocommerce -msgid "Length" -msgstr "" - -#: admin/post-types/product.php:602 -#: admin/post-types/product.php:878 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:86 -#: admin/post-types/writepanels/writepanel-product_data.php:287 -#: admin/woocommerce-admin-settings.php:795 -#@ woocommerce -msgid "Width" -msgstr "" - -#: admin/post-types/product.php:603 -#: admin/post-types/product.php:879 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:87 -#: admin/post-types/writepanels/writepanel-product_data.php:288 -#: admin/woocommerce-admin-settings.php:797 -#@ woocommerce -msgid "Height" -msgstr "" - -#: admin/post-types/product.php:613 -#: admin/post-types/product.php:885 -#@ woocommerce -msgid "Visibility" -msgstr "" - -#: admin/post-types/product.php:618 -#: admin/post-types/product.php:891 -#@ woocommerce -msgid "Catalog & search" -msgstr "" - -#: admin/post-types/product.php:619 -#: admin/post-types/product.php:892 -#: admin/post-types/writepanels/writepanel-product_data.php:1029 -#: admin/woocommerce-admin-content.php:46 -#: admin/woocommerce-admin-settings.php:181 -#@ woocommerce -msgid "Catalog" -msgstr "" - -#: admin/post-types/product.php:621 -#: admin/post-types/product.php:894 -#: admin/post-types/writepanels/writepanel-product_data.php:1031 -#@ woocommerce -msgid "Hidden" -msgstr "" - -#: admin/post-types/product.php:636 -#: admin/post-types/product.php:922 -#@ woocommerce -msgid "In stock?" -msgstr "" - -#: admin/post-types/product.php:657 -#: admin/post-types/product.php:940 -#: admin/post-types/writepanels/writepanel-product_data.php:212 -#@ woocommerce -msgid "Manage stock?" -msgstr "" - -#: admin/post-types/product.php:661 -#: admin/post-types/product.php:959 -#: admin/post-types/product.php:975 -#: admin/post-types/writepanels/writepanel-product_data.php:219 -#@ woocommerce -msgid "Stock Qty" -msgstr "" - -#: admin/post-types/product.php:792 -#: admin/post-types/product.php:816 -#: admin/post-types/product.php:842 -#: admin/post-types/product.php:866 -#: admin/post-types/product.php:890 -#: admin/post-types/product.php:909 -#: admin/post-types/product.php:927 -#: admin/post-types/product.php:945 -#: admin/post-types/product.php:964 -#@ woocommerce -msgid "— No Change —" -msgstr "" - -#: admin/post-types/product.php:793 -#: admin/post-types/product.php:817 -#: admin/post-types/product.php:843 -#: admin/post-types/product.php:867 -#: admin/post-types/product.php:965 -#@ woocommerce -msgid "Change to:" -msgstr "" - -#: admin/post-types/product.php:794 -#: admin/post-types/product.php:818 -#@ woocommerce -msgid "Increase by (fixed amount or %):" -msgstr "" - -#: admin/post-types/product.php:795 -#: admin/post-types/product.php:819 -#@ woocommerce -msgid "Decrease by (fixed amount or %):" -msgstr "" - -#: admin/post-types/product.php:805 -#: admin/post-types/product.php:830 -#@ woocommerce -msgid "Enter price" -msgstr "" - -#: admin/post-types/product.php:820 -#@ woocommerce -msgid "Decrease regular price by (fixed amount or %):" -msgstr "" - -#: admin/post-types/product.php:910 -#: admin/post-types/product.php:946 -#: admin/post-types/shop_order.php:190 -#: admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:260 -#@ woocommerce -msgid "Yes" -msgstr "" - -#: admin/post-types/product.php:911 -#: admin/post-types/product.php:947 -#: admin/post-types/shop_order.php:192 -#: admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:260 -#@ woocommerce -msgid "No" -msgstr "" - -#: admin/post-types/product.php:1175 -#@ woocommerce -msgid "Sort Products" -msgstr "" - -#: admin/post-types/product.php:1214 -#@ woocommerce -msgid "Insert into product" -msgstr "" - -#: admin/post-types/product.php:1215 -#@ woocommerce -msgid "Uploaded to this product" -msgstr "" - -#: admin/post-types/shop_coupon.php:25 -#@ woocommerce -msgid "Code" -msgstr "" - -#: admin/post-types/shop_coupon.php:26 -#@ woocommerce -msgid "Coupon type" -msgstr "" - -#: admin/post-types/shop_coupon.php:27 -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -#@ woocommerce -msgid "Coupon amount" -msgstr "" - -#: admin/post-types/shop_coupon.php:29 -#@ woocommerce -msgid "Product IDs" -msgstr "" - -#: admin/post-types/shop_coupon.php:30 -#@ woocommerce -msgid "Usage / Limit" -msgstr "" - -#: admin/post-types/shop_coupon.php:31 -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -#@ woocommerce -msgid "Expiry date" -msgstr "" - -#: admin/post-types/shop_coupon.php:56 -#@ woocommerce -msgid "Edit coupon" -msgstr "" - -#: admin/post-types/shop_coupon.php:114 -#, php-format -#@ woocommerce -msgid "%s / %s" -msgstr "" - -#: admin/post-types/shop_coupon.php:116 -#, php-format -#@ woocommerce -msgid "%s / ∞" -msgstr "" - -#: admin/post-types/shop_coupon.php:149 -#: admin/post-types/shop_order.php:282 -#@ woocommerce -msgid "Show all statuses" -msgstr "" - -#: admin/post-types/shop_order.php:45 -#@ woocommerce -msgid "Billing" -msgstr "" - -#: admin/post-types/shop_order.php:49 -#@ woocommerce -msgid "Customer Notes" -msgstr "" - -#: admin/post-types/shop_order.php:51 -#: admin/post-types/writepanels/writepanel-order_data.php:386 -#: admin/post-types/writepanels/writepanel-order_data.php:433 -#@ woocommerce -msgid "Actions" -msgstr "" - -#: admin/post-types/shop_order.php:98 -#@ woocommerce -msgid "made by" -msgstr "" - -#: admin/post-types/shop_order.php:114 -#: admin/post-types/shop_order.php:123 -#@ woocommerce -msgid "Via" -msgstr "" - -#: admin/post-types/shop_order.php:131 -#@ woocommerce -msgid "Unpublished" -msgstr "" - -#: admin/post-types/shop_order.php:133 -#@ woocommerce -msgid "Y/m/d g:i:s A" -msgstr "" - -#: admin/post-types/shop_order.php:139 -#, php-format -#@ woocommerce -msgid "%s ago" -msgstr "" - -#: admin/post-types/shop_order.php:141 -#@ woocommerce -msgid "Y/m/d" -msgstr "" - -#: admin/post-types/shop_order.php:158 -#: admin/woocommerce-admin-dashboard.php:176 -#@ woocommerce -msgid "Processing" -msgstr "" - -#: admin/post-types/shop_order.php:165 -#@ woocommerce -msgid "Complete" -msgstr "" - -#: admin/post-types/shop_order.php:301 -#: admin/post-types/shop_order.php:326 -#@ woocommerce -msgid "Show all customers" -msgstr "" - -#: admin/post-types/writepanels/order-download-permission-html.php:6 -#@ woocommerce -msgid "Revoke Access" -msgstr "" - -#: admin/post-types/writepanels/order-download-permission-html.php:7 -#: admin/post-types/writepanels/variation-admin-html.php:7 -#: admin/post-types/writepanels/writepanel-product_data.php:365 -#: admin/post-types/writepanels/writepanel-product_data.php:444 -#: admin/woocommerce-admin-init.php:452 -#@ woocommerce -msgid "Click to toggle" -msgstr "" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -#, php-format -#@ woocommerce -msgid "File %d: %s" -msgstr "" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -#, php-format -#@ woocommerce -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: admin/post-types/writepanels/order-download-permission-html.php:16 -#@ woocommerce -msgid "Downloads Remaining" -msgstr "" - -#: admin/post-types/writepanels/order-download-permission-html.php:19 -#: admin/post-types/writepanels/variation-admin-html.php:143 -#: admin/post-types/writepanels/variation-admin-html.php:151 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -#@ woocommerce -msgid "Unlimited" -msgstr "" - -#: admin/post-types/writepanels/order-download-permission-html.php:22 -#@ woocommerce -msgid "Access Expires" -msgstr "" - -#: admin/post-types/writepanels/order-download-permission-html.php:23 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -#@ woocommerce -msgid "Never" -msgstr "" - -#: admin/post-types/writepanels/order-fee-html.php:10 -#@ woocommerce -msgid "Fee Name" -msgstr "" - -#: admin/post-types/writepanels/order-fee-html.php:17 -#: admin/post-types/writepanels/order-item-html.php:84 -#@ woocommerce -msgid "Tax class" -msgstr "" - -#: admin/post-types/writepanels/order-item-html.php:9 -#@ woocommerce -msgid "Product ID:" -msgstr "" - -#: admin/post-types/writepanels/order-item-html.php:12 -#@ woocommerce -msgid "Variation ID:" -msgstr "" - -#: admin/post-types/writepanels/order-item-html.php:15 -#@ woocommerce -msgid "Product SKU:" -msgstr "" - -#: admin/post-types/writepanels/order-item-html.php:33 -#@ woocommerce -msgid "Add meta" -msgstr "" - -#: admin/post-types/writepanels/order-tax-html.php:6 -#@ woocommerce -msgid "Tax Rate:" -msgstr "" - -#: admin/post-types/writepanels/order-tax-html.php:16 -#: admin/post-types/writepanels/writepanel-order_data.php:627 -#@ woocommerce -msgid "Sales Tax:" -msgstr "" - -#: admin/post-types/writepanels/order-tax-html.php:20 -#: admin/post-types/writepanels/writepanel-order_data.php:635 -#@ woocommerce -msgid "Shipping Tax:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:6 -#: admin/post-types/writepanels/writepanel-product_data.php:364 -#: admin/post-types/writepanels/writepanel-product_data.php:443 -#: admin/woocommerce-admin-init.php:451 -#@ woocommerce -msgid "Remove" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:20 -#@ woocommerce -msgid "Any" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:46 -#@ woocommerce -msgid "Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:57 -#@ woocommerce -msgid "Stock Qty:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:57 -#@ woocommerce -msgid "Enter a quantity to enable stock management at variation level, or leave blank to use the parent product's options." -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:66 -#@ woocommerce -msgid "Regular Price:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:67 -#@ woocommerce -msgid "Variation price (required)" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:70 -#@ woocommerce -msgid "Sale Price:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:70 -#: admin/post-types/writepanels/writepanel-product_data.php:125 -#@ woocommerce -msgid "Schedule" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:70 -#@ woocommerce -msgid "Cancel schedule" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:77 -#@ woocommerce -msgid "Sale start date:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:78 -#: admin/post-types/writepanels/writepanel-product_data.php:136 -#@ woocommerce -msgctxt "placeholder" -msgid "From…" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:81 -#@ woocommerce -msgid "Sale end date:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:82 -#: admin/post-types/writepanels/writepanel-product_data.php:137 -#@ woocommerce -msgctxt "placeholder" -msgid "To…" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:90 -#@ woocommerce -msgid "Enter a weight for this variation or leave blank to use the parent product weight." -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:98 -#@ woocommerce -msgid "Dimensions (L×W×H)" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:109 -#@ woocommerce -msgid "Shipping class:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:124 -#@ woocommerce -msgid "Tax class:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:135 -#@ woocommerce -msgid "File paths:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:135 -#@ woocommerce -msgid "Enter one or more File Paths, one per line, to make this variation a downloadable product, or leave blank." -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:136 -#: admin/post-types/writepanels/writepanel-product_data.php:153 -#@ woocommerce -msgid "File paths/URLs, one per line" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:137 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -#@ woocommerce -msgid "Choose a file" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:137 -#@ woocommerce -msgid "Upload" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:137 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -#@ woocommerce -msgid "Insert file URL" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:142 -#@ woocommerce -msgid "Download Limit:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:142 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -#@ woocommerce -msgid "Leave blank for unlimited re-downloads." -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:150 -#@ woocommerce -msgid "Download Expiry:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:150 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -#@ woocommerce -msgid "Enter the number of days before a download link expires, or leave blank." -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:164 -#@ woocommerce -msgid "Enabled" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:166 -#@ woocommerce -msgid "Enable this option if access is given to a downloadable file upon purchase of a product" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:168 -#@ woocommerce -msgid "Enable this option if a product is not shipped or there is no shipping cost" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -#@ woocommerce -msgid "Coupon description" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -#@ woocommerce -msgid "Optionally enter a description for this coupon for your reference." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:42 -#@ woocommerce -msgid "Discount type" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -#@ woocommerce -msgid "Enter an amount or percentage e.g. 2.99 or 15%" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -#@ woocommerce -msgid "Enable free shipping" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -#, php-format -#@ woocommerce -msgid "Check this box if the coupon grants free shipping. The free shipping method must be enabled with the \"must use coupon\" setting checked." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -#@ woocommerce -msgid "Individual use" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -#@ woocommerce -msgid "Check this box if the coupon cannot be used in conjunction with other coupons." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -#@ woocommerce -msgid "Apply before tax" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -#@ woocommerce -msgid "Check this box if the coupon should be applied before calculating cart tax." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -#@ woocommerce -msgid "Exclude sale items" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -#@ woocommerce -msgid "Check this box if the coupon should not apply to items on sale. Per-item coupons will only work if the item is not on sale. Per-cart coupons will only work if there are no sale items in the cart." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -#@ woocommerce -msgid "Minimum amount" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -#@ woocommerce -msgid "No minimum" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -#@ woocommerce -msgid "This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:75 -#: admin/post-types/writepanels/writepanel-order_data.php:400 -#: admin/post-types/writepanels/writepanel-product_data.php:504 -#: admin/post-types/writepanels/writepanel-product_data.php:521 -#: admin/woocommerce-admin-reports.php:1229 -#@ woocommerce -msgid "Search for a product…" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:89 -#@ woocommerce -msgid "Products which need to be in the cart to use this coupon or, for \"Product Discounts\", which products are discounted." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:94 -#@ woocommerce -msgid "Exclude products" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:95 -#@ woocommerce -msgid "Search for a product…" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:109 -#@ woocommerce -msgid "Products which must not be in the cart to use this coupon or, for \"Product Discounts\", which products are not discounted." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:117 -#@ woocommerce -msgid "Any category" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:125 -#@ woocommerce -msgid "A product must be in this category for the coupon to remain valid or, for \"Product Discounts\", products in these categories will be discounted." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:130 -#@ woocommerce -msgid "Exclude categories" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:131 -#@ woocommerce -msgid "No categories" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:139 -#@ woocommerce -msgid "Product must not be in this category for the coupon to remain valid or, for \"Product Discounts\", products in these categories will not be discounted." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -#@ woocommerce -msgid "Customer emails" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -#@ woocommerce -msgid "Any customer" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -#@ woocommerce -msgid "Comma separate email addresses to restrict this coupon to specific billing and user emails." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -#@ woocommerce -msgid "Usage limit" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -#@ woocommerce -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -#@ woocommerce -msgid "How many times this coupon can be used before it is void." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -#@ woocommerce -msgctxt "placeholder" -msgid "Never expire" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -#@ woocommerce -msgid "The date this coupon will expire, YYYY-MM-DD." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:195 -#@ woocommerce -msgid "Coupon code already exists - customers will use the latest coupon with this code." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:62 -#@ woocommerce -msgid "Order number" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:67 -#@ woocommerce -msgid "Customer IP:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:74 -#@ woocommerce -msgid "General Details" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:76 -#@ woocommerce -msgid "Order status:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:86 -#@ woocommerce -msgid "Order Date:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#@ woocommerce -msgid "h" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#: admin/settings/settings-init.php:577 -#@ woocommerce -msgid "m" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:91 -#@ woocommerce -msgid "Customer:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:131 -#@ woocommerce -msgid "Customer Note:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:132 -#@ woocommerce -msgid "Customer's notes about the order" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#@ woocommerce -msgid "Billing Details" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:152 -#: admin/post-types/writepanels/writepanel-order_data.php:242 -#: admin/woocommerce-admin-users.php:155 -#: admin/woocommerce-admin-users.php:204 -#@ woocommerce -msgid "Company" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:156 -#: admin/post-types/writepanels/writepanel-order_data.php:246 -#: admin/woocommerce-admin-users.php:159 -#: admin/woocommerce-admin-users.php:208 -#@ woocommerce -msgid "Address 1" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:160 -#: admin/post-types/writepanels/writepanel-order_data.php:250 -#: admin/woocommerce-admin-users.php:163 -#: admin/woocommerce-admin-users.php:212 -#@ woocommerce -msgid "Address 2" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:164 -#: admin/post-types/writepanels/writepanel-order_data.php:254 -#: admin/settings/settings-tax-rates.php:42 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-users.php:167 -#: admin/woocommerce-admin-users.php:216 -#@ woocommerce -msgid "City" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:178 -#: admin/post-types/writepanels/writepanel-order_data.php:268 -#: admin/woocommerce-admin-users.php:175 -#: admin/woocommerce-admin-users.php:224 -#@ woocommerce -msgid "State/County" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#@ woocommerce -msgid "No billing address set." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:208 -#@ woocommerce -msgid "Load billing address" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#@ woocommerce -msgid "Shipping Details" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:279 -#@ woocommerce -msgid "No shipping address set." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -#@ woocommerce -msgid "Load shipping address" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -#@ woocommerce -msgid "Copy from billing" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:339 -#@ woocommerce -msgid "Item" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#: admin/post-types/writepanels/writepanel-product_data.php:191 -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Tax Class" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#@ woocommerce -msgid "Tax class for the line item" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -#@ woocommerce -msgid "Line subtotals are before pre-tax discounts, totals are after." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:388 -#@ woocommerce -msgid "Delete Lines" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:390 -#@ woocommerce -msgid "Stock Actions" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:391 -#@ woocommerce -msgid "Reduce Line Stock" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:392 -#@ woocommerce -msgid "Increase Line Stock" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:396 -#: admin/post-types/writepanels/writepanel-order_data.php:456 -#@ woocommerce -msgid "Apply" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:402 -#@ woocommerce -msgid "Add item(s)" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:403 -#@ woocommerce -msgid "Add fee" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:434 -#@ woocommerce -msgid "Resend order emails" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:465 -#@ woocommerce -msgid "Move to Trash" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -#@ woocommerce -msgid "Save Order" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -#@ woocommerce -msgid "Save/update the order" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:495 -#@ woocommerce -msgid "Discounts" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:499 -#@ woocommerce -msgid "Discounts before tax - calculated by comparing subtotals to totals." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:507 -#@ woocommerce -msgid "Discounts after tax - user defined." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:540 -#@ woocommerce -msgid "Label:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:541 -#@ woocommerce -msgid "The shipping title the customer sees" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:548 -#@ woocommerce -msgid "Cost:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:556 -#@ woocommerce -msgid "Method:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:578 -#: admin/post-types/writepanels/writepanel-order_data.php:580 -#: admin/post-types/writepanels/writepanel-order_data.php:679 -#: admin/post-types/writepanels/writepanel-order_data.php:681 -#@ woocommerce -msgid "Other" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:594 -#@ woocommerce -msgid "Tax Rows" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:619 -#@ woocommerce -msgid "+ Add tax row" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:619 -#@ woocommerce -msgid "These rows contain taxes for this order. This allows you to display multiple or compound taxes rather than a single total." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:623 -#@ woocommerce -msgid "Tax Totals" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:627 -#@ woocommerce -msgid "Total tax for line items + fees." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:649 -#: admin/post-types/writepanels/writepanels-init.php:70 -#@ woocommerce -msgid "Order Totals" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:661 -#@ woocommerce -msgid "Payment Method:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:692 -#@ woocommerce -msgid "Calc taxes" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:694 -#@ woocommerce -msgid "Calc totals" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:57 -#@ woocommerce -msgid "Choose a downloadable product…" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:87 -#@ woocommerce -msgid "Grant Access" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:125 -#@ woocommerce -msgid "Could not grant access - the user may already have permission for this file or billing email is not set. Ensure the billing email is set, and the order has been saved." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:148 -#@ woocommerce -msgid "Are you sure you want to revoke access to this download?" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -#, php-format -#@ woocommerce -msgid "added %s ago" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_notes.php:50 -#@ woocommerce -msgid "There are no notes for this order yet." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -#@ woocommerce -msgid "Add note" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -#@ woocommerce -msgid "Add a note for your reference, or add a customer note (the user will be notified)." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_notes.php:63 -#@ woocommerce -msgid "Private note" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_notes.php:65 -#: admin/post-types/writepanels/writepanel-product_data.php:482 -#@ woocommerce -msgid "Add" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -#@ woocommerce -msgid "Variations for variable products are defined here." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:65 -#@ woocommerce -msgid "Before adding variations, add and save some attributes on the Attributes tab." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:67 -#@ woocommerce -msgid "Learn more" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -#@ woocommerce -msgid "Close all" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -#@ woocommerce -msgid "Expand all" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:75 -#@ woocommerce -msgid "Bulk edit:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:77 -#@ woocommerce -msgid "Toggle "Enabled"" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:78 -#@ woocommerce -msgid "Toggle "Downloadable"" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:79 -#@ woocommerce -msgid "Toggle "Virtual"" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:80 -#@ woocommerce -msgid "Delete all variations" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:81 -#@ woocommerce -msgid "Prices" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:82 -#@ woocommerce -msgid "Sale prices" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:88 -#@ woocommerce -msgid "File Path" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:89 -#@ woocommerce -msgid "Download limit" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:90 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -#@ woocommerce -msgid "Download Expiry" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:93 -#@ woocommerce -msgid "Go" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:195 -#@ woocommerce -msgid "Link all variations" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:197 -#@ woocommerce -msgid "Default selections:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:210 -#@ woocommerce -msgid "No default" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:293 -#@ woocommerce -msgid "Are you sure you want to link all variations? This will create a new variation for each and every possible combination of variation attributes (max 50 per run)." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:310 -#@ woocommerce -msgid "variation added" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:312 -#@ woocommerce -msgid "variations added" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:314 -#@ woocommerce -msgid "No variations added" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:337 -#@ woocommerce -msgid "Are you sure you want to remove this variation?" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:393 -#@ woocommerce -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:396 -#@ woocommerce -msgid "Last warning, are you sure?" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:433 -#@ woocommerce -msgid "Enter a value" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:511 -#: admin/woocommerce-admin-taxonomies.php:62 -#: admin/woocommerce-admin-taxonomies.php:154 -#@ woocommerce -msgid "Choose an image" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:513 -#@ woocommerce -msgid "Set variation image" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:557 -#@ woocommerce -msgid "Variable product" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:43 -#@ woocommerce -msgid "Product Type" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:53 -#@ woocommerce -msgid "Virtual products are intangible and aren't shipped." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:59 -#@ woocommerce -msgid "Downloadable products give access to a file upon purchase." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:77 -#: admin/woocommerce-admin-content.php:44 -#: admin/woocommerce-admin-settings.php:180 -#@ woocommerce -msgid "General" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:79 -#: admin/woocommerce-admin-content.php:47 -#: admin/woocommerce-admin-settings.php:183 -#@ woocommerce -msgid "Inventory" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:83 -#@ woocommerce -msgid "Linked Products" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:85 -#: admin/woocommerce-admin-attributes.php:298 -#: admin/woocommerce-admin-init.php:66 -#@ woocommerce -msgid "Attributes" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:87 -#@ woocommerce -msgid "Advanced" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#@ woocommerce -msgid "Stock Keeping Unit" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#@ woocommerce -msgid "SKU refers to a Stock-keeping unit, a unique identifier for each distinct product and service that can be purchased." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -#@ woocommerce -msgid "Product URL" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -#@ woocommerce -msgid "Enter the external URL to the product." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -#@ woocommerce -msgid "Button text" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -#@ woocommerce -msgctxt "placeholder" -msgid "Buy product" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -#@ woocommerce -msgid "This text will be shown on the button linking to the external product." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:119 -#@ woocommerce -msgid "Regular Price" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:125 -#@ woocommerce -msgid "Sale Price" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:135 -#@ woocommerce -msgid "Sale Price Dates" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:152 -#@ woocommerce -msgid "File paths (one per line)" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:158 -#@ woocommerce -msgid "Download Limit" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:180 -#@ woocommerce -msgid "Shipping only" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:212 -#@ woocommerce -msgid "Enable stock management at product level" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:219 -#@ woocommerce -msgid "Stock quantity. If this is a variable product this value will be used to control stock for all variations, unless you define stock at variation level." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:230 -#@ woocommerce -msgid "Stock status" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:233 -#@ woocommerce -msgid "Controls whether or not the product is listed as \"in stock\" or \"out of stock\" on the frontend." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:240 -#@ woocommerce -msgid "Allow Backorders?" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:241 -#@ woocommerce -msgid "Do not allow" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:242 -#@ woocommerce -msgid "Allow, but notify customer" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:243 -#@ woocommerce -msgid "Allow" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:244 -#@ woocommerce -msgid "If managing stock, this controls whether or not backorders are allowed for this product and variations. If enabled, stock quantity can go below 0." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -#@ woocommerce -msgid "Sold Individually" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -#@ woocommerce -msgid "Enable this to only allow one of this item to be bought in a single order" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:273 -#@ woocommerce -msgid "Weight in decimal form" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:290 -#@ woocommerce -msgid "LxWxH in decimal form" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:311 -#@ woocommerce -msgid "No shipping class" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -#@ woocommerce -msgid "Shipping class" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -#@ woocommerce -msgid "Shipping classes are used by certain shipping methods to group similar products." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:380 -#: admin/post-types/writepanels/writepanel-product_data.php:457 -#: admin/woocommerce-admin-init.php:453 -#@ woocommerce -msgid "Value(s)" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:382 -#@ woocommerce -msgid "Select terms" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:394 -#@ woocommerce -msgid "Select all" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:394 -#@ woocommerce -msgid "Select none" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:396 -#@ woocommerce -msgid "Add new" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:409 -#@ woocommerce -msgid "Pipe separate terms" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:416 -#: admin/post-types/writepanels/writepanel-product_data.php:463 -#: admin/woocommerce-admin-init.php:455 -#@ woocommerce -msgid "Visible on the product page" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:422 -#: admin/post-types/writepanels/writepanel-product_data.php:469 -#: admin/woocommerce-admin-init.php:456 -#@ woocommerce -msgid "Used for variations" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:458 -#: admin/woocommerce-admin-init.php:454 -#@ woocommerce -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:484 -#@ woocommerce -msgid "Custom product attribute" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:496 -#@ woocommerce -msgid "Save attributes" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:503 -#@ woocommerce -msgid "Up-Sells" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:518 -#@ woocommerce -msgid "Up-sells are products which you recommend instead of the currently viewed product, for example, products that are more profitable or better quality or more expensive." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:520 -#@ woocommerce -msgid "Cross-Sells" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:535 -#@ woocommerce -msgid "Cross-sells are products which you promote in the cart, based on the current product." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:545 -#@ woocommerce -msgid "Choose a grouped product…" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:571 -#@ woocommerce -msgid "Grouping" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:571 -#@ woocommerce -msgid "Set this option to make this product part of a grouped product." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:591 -#@ woocommerce -msgid "Purchase Note" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:591 -#@ woocommerce -msgid "Enter an optional note to send the customer after purchase." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:598 -#@ woocommerce -msgid "Menu order" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:598 -#@ woocommerce -msgid "Custom ordering position." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:606 -#@ woocommerce -msgid "Enable reviews" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:695 -#@ woocommerce -msgid "Product SKU must be unique." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:1028 -#@ woocommerce -msgid "Catalog/search" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:1035 -#@ woocommerce -msgid "Catalog visibility:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:1051 -#@ woocommerce -msgid "Define the loops this product should be visible in. The product will still be accessible directly." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:1057 -#@ woocommerce -msgid "Enable this option to feature this product." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:1059 -#@ woocommerce -msgid "Featured Product" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:1063 -#@ woocommerce -msgid "OK" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -#@ woocommerce -msgid "Delete image" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -#: admin/woocommerce-admin-attributes.php:322 -#@ woocommerce -msgid "Delete" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_images.php:53 -#@ woocommerce -msgid "Add product gallery images" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_images.php:79 -#@ woocommerce -msgid "Add Images to Product Gallery" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_images.php:81 -#@ woocommerce -msgid "Add to gallery" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:47 -#@ woocommerce -msgid "Product Gallery" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:55 -#@ woocommerce -msgid "Product Short Description" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:68 -#@ woocommerce -msgid "Order Data" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:69 -#@ woocommerce -msgid "Order Items" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:69 -#@ woocommerce -msgid "Note: if you edit quantities or remove items from the order you will need to manually update stock levels." -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:72 -#@ woocommerce -msgid "Downloadable Product Permissions" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:72 -#@ woocommerce -msgid "Note: Permissions for order items will automatically be granted when the order status changes to processing/completed." -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:73 -#@ woocommerce -msgid "Order Actions" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:81 -#@ woocommerce -msgid "Coupon Data" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:101 -#@ woocommerce -msgid "Product name" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:185 -#@ woocommerce -msgid "Allow reviews." -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:186 -#, php-format -#@ default -msgid "Allow trackbacks and pingbacks on this page." -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:186 -#@ default -msgid "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:23 -#@ woocommerce -msgid "Styles" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:43 -#@ woocommerce -msgid "Primary" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:43 -#@ woocommerce -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:44 -#@ woocommerce -msgid "Secondary" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:44 -#@ woocommerce -msgid "Buttons and tabs" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:45 -#@ woocommerce -msgid "Highlight" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:45 -#@ woocommerce -msgid "Price labels and Sale Flashes" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:46 -#@ woocommerce -msgid "Content" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:46 -#@ woocommerce -msgid "Your themes page background - used for tab active states" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:47 -#@ woocommerce -msgid "Subtext" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:47 -#@ woocommerce -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "" - -#: admin/settings/settings-frontend-styles.php:51 -#@ woocommerce -msgid "To edit colours woocommerce/assets/css/woocommerce-base.less and woocommerce.css need to be writable. See the Codex for more information." -msgstr "" - -#: admin/settings/settings-init.php:18 -#@ woocommerce -msgid "Localisation" -msgstr "" - -#: admin/settings/settings-init.php:19 -#, php-format -#@ woocommerce -msgid "Use informal localisation for %s" -msgstr "" - -#: admin/settings/settings-init.php:33 -#@ woocommerce -msgid "General Options" -msgstr "" - -#: admin/settings/settings-init.php:36 -#@ woocommerce -msgid "Base Location" -msgstr "" - -#: admin/settings/settings-init.php:37 -#@ woocommerce -msgid "This is the base location for your business. Tax rates will be based on this country." -msgstr "" - -#: admin/settings/settings-init.php:46 -#@ woocommerce -msgid "Currency" -msgstr "" - -#: admin/settings/settings-init.php:47 -#@ woocommerce -msgid "This controls what currency prices are listed at in the catalog and which currency gateways will take payments in." -msgstr "" - -#: admin/settings/settings-init.php:58 -#@ woocommerce -msgid "Allowed Countries" -msgstr "" - -#: admin/settings/settings-init.php:59 -#@ woocommerce -msgid "These are countries that you are willing to ship to." -msgstr "" - -#: admin/settings/settings-init.php:67 -#@ woocommerce -msgid "All Countries" -msgstr "" - -#: admin/settings/settings-init.php:84 -#@ woocommerce -msgid "Store Notice" -msgstr "" - -#: admin/settings/settings-init.php:85 -#@ woocommerce -msgid "Enable site-wide store notice text" -msgstr "" - -#: admin/settings/settings-init.php:92 -#@ woocommerce -msgid "Store Notice Text" -msgstr "" - -#: admin/settings/settings-init.php:102 -#@ woocommerce -msgid "Cart, Checkout and Accounts" -msgstr "" - -#: admin/settings/settings-init.php:106 -#@ woocommerce -msgid "Enable the use of coupons" -msgstr "" - -#: admin/settings/settings-init.php:110 -#@ woocommerce -msgid "Coupons can be applied from the cart and checkout pages." -msgstr "" - -#: admin/settings/settings-init.php:115 -#@ woocommerce -msgid "Enable guest checkout (no account required)" -msgstr "" - -#: admin/settings/settings-init.php:123 -#@ woocommerce -msgid "Enable customer note field on checkout" -msgstr "" - -#: admin/settings/settings-init.php:131 -#@ woocommerce -msgid "Force secure checkout" -msgstr "" - -#: admin/settings/settings-init.php:137 -#@ woocommerce -msgid "Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -msgstr "" - -#: admin/settings/settings-init.php:141 -#@ woocommerce -msgid "Un-force HTTPS when leaving the checkout" -msgstr "" - -#: admin/settings/settings-init.php:150 -#@ woocommerce -msgid "Registration" -msgstr "" - -#: admin/settings/settings-init.php:151 -#@ woocommerce -msgid "Allow registration on the checkout page" -msgstr "" - -#: admin/settings/settings-init.php:159 -#@ woocommerce -msgid "Allow registration on the \"My Account\" page" -msgstr "" - -#: admin/settings/settings-init.php:167 -#@ woocommerce -msgid "Register using the email address for the username" -msgstr "" - -#: admin/settings/settings-init.php:175 -#@ woocommerce -msgid "Customer Accounts" -msgstr "" - -#: admin/settings/settings-init.php:176 -#@ woocommerce -msgid "Prevent customers from accessing WordPress admin" -msgstr "" - -#: admin/settings/settings-init.php:184 -#@ woocommerce -msgid "Clear cart when logging out" -msgstr "" - -#: admin/settings/settings-init.php:192 -#@ woocommerce -msgid "Allow customers to repurchase orders from their account page" -msgstr "" - -#: admin/settings/settings-init.php:201 -#@ woocommerce -msgid "Styles and Scripts" -msgstr "" - -#: admin/settings/settings-init.php:204 -#@ woocommerce -msgid "Styling" -msgstr "" - -#: admin/settings/settings-init.php:205 -#@ woocommerce -msgid "Enable WooCommerce CSS" -msgstr "" - -#: admin/settings/settings-init.php:216 -#@ woocommerce -msgid "Scripts" -msgstr "" - -#: admin/settings/settings-init.php:217 -#@ woocommerce -msgid "Enable Lightbox" -msgstr "" - -#: admin/settings/settings-init.php:220 -#@ woocommerce -msgid "Include WooCommerce's lightbox. Product gallery images and the add review form will open in a lightbox." -msgstr "" - -#: admin/settings/settings-init.php:226 -#@ woocommerce -msgid "Enable enhanced country select boxes" -msgstr "" - -#: admin/settings/settings-init.php:231 -#@ woocommerce -msgid "This will enable a script allowing the country fields to be searchable." -msgstr "" - -#: admin/settings/settings-init.php:236 -#@ woocommerce -msgid "Downloadable Products" -msgstr "" - -#: admin/settings/settings-init.php:239 -#@ woocommerce -msgid "File Download Method" -msgstr "" - -#: admin/settings/settings-init.php:240 -#@ woocommerce -msgid "Forcing downloads will keep URLs hidden, but some servers may serve large files unreliably. If supported, X-Accel-Redirect/ X-Sendfile can be used to serve downloads instead (server requires mod_xsendfile)." -msgstr "" - -#: admin/settings/settings-init.php:248 -#@ woocommerce -msgid "Force Downloads" -msgstr "" - -#: admin/settings/settings-init.php:249 -#@ woocommerce -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "" - -#: admin/settings/settings-init.php:250 -#@ woocommerce -msgid "Redirect only" -msgstr "" - -#: admin/settings/settings-init.php:255 -#@ woocommerce -msgid "Access Restriction" -msgstr "" - -#: admin/settings/settings-init.php:256 -#@ woocommerce -msgid "Downloads require login" -msgstr "" - -#: admin/settings/settings-init.php:260 -#@ woocommerce -msgid "This setting does not apply to guest purchases." -msgstr "" - -#: admin/settings/settings-init.php:265 -#@ woocommerce -msgid "Grant access to downloadable products after payment" -msgstr "" - -#: admin/settings/settings-init.php:269 -#@ woocommerce -msgid "Enable this option to grant access to downloads when orders are \"processing\", rather than \"completed\"." -msgstr "" - -#: admin/settings/settings-init.php:285 -#@ woocommerce -msgid "Note: The shop page has children - child pages will not work if you enable this option." -msgstr "" - -#: admin/settings/settings-init.php:290 -#@ woocommerce -msgid "Page Setup" -msgstr "" - -#: admin/settings/settings-init.php:292 -#, php-format -#@ woocommerce -msgid "Set up core WooCommerce pages here, for example the base page. The base page can also be used in your %sproduct permalinks%s." -msgstr "" - -#: admin/settings/settings-init.php:297 -#@ woocommerce -msgid "Shop Base Page" -msgstr "" - -#: admin/settings/settings-init.php:298 -#@ woocommerce -msgid "This sets the base page of your shop - this is where your product archive will be." -msgstr "" - -#: admin/settings/settings-init.php:308 -#@ woocommerce -msgid "Base Page Title" -msgstr "" - -#: admin/settings/settings-init.php:309 -#@ woocommerce -msgid "This title to show on the shop base page. Leave blank to use the page title." -msgstr "" - -#: admin/settings/settings-init.php:318 -#@ woocommerce -msgid "Terms Page ID" -msgstr "" - -#: admin/settings/settings-init.php:319 -#@ woocommerce -msgid "If you define a \"Terms\" page the customer will be asked if they accept them when checking out." -msgstr "" - -#: admin/settings/settings-init.php:330 -#@ woocommerce -msgid "Shop Pages" -msgstr "" - -#: admin/settings/settings-init.php:330 -#@ woocommerce -msgid "The following pages need selecting so that WooCommerce knows where they are. These pages should have been created upon installation of the plugin, if not you will need to create them." -msgstr "" - -#: admin/settings/settings-init.php:333 -#@ woocommerce -msgid "Cart Page" -msgstr "" - -#: admin/settings/settings-init.php:334 -#@ woocommerce -msgid "Page contents: [woocommerce_cart]" -msgstr "" - -#: admin/settings/settings-init.php:344 -#@ woocommerce -msgid "Checkout Page" -msgstr "" - -#: admin/settings/settings-init.php:345 -#@ woocommerce -msgid "Page contents: [woocommerce_checkout]" -msgstr "" - -#: admin/settings/settings-init.php:355 -#@ woocommerce -msgid "Pay Page" -msgstr "" - -#: admin/settings/settings-init.php:356 -#@ woocommerce -msgid "Page contents: [woocommerce_pay] Parent: \"Checkout\"" -msgstr "" - -#: admin/settings/settings-init.php:366 -#@ woocommerce -msgid "Thanks Page" -msgstr "" - -#: admin/settings/settings-init.php:367 -#@ woocommerce -msgid "Page contents: [woocommerce_thankyou] Parent: \"Checkout\"" -msgstr "" - -#: admin/settings/settings-init.php:377 -#@ woocommerce -msgid "My Account Page" -msgstr "" - -#: admin/settings/settings-init.php:378 -#@ woocommerce -msgid "Page contents: [woocommerce_my_account]" -msgstr "" - -#: admin/settings/settings-init.php:388 -#@ woocommerce -msgid "Edit Address Page" -msgstr "" - -#: admin/settings/settings-init.php:389 -#@ woocommerce -msgid "Page contents: [woocommerce_edit_address] Parent: \"My Account\"" -msgstr "" - -#: admin/settings/settings-init.php:399 -#@ woocommerce -msgid "View Order Page" -msgstr "" - -#: admin/settings/settings-init.php:400 -#@ woocommerce -msgid "Page contents: [woocommerce_view_order] Parent: \"My Account\"" -msgstr "" - -#: admin/settings/settings-init.php:410 -#@ woocommerce -msgid "Change Password Page" -msgstr "" - -#: admin/settings/settings-init.php:411 -#@ woocommerce -msgid "Page contents: [woocommerce_change_password] Parent: \"My Account\"" -msgstr "" - -#: admin/settings/settings-init.php:421 -#@ woocommerce -msgid "Logout Page" -msgstr "" - -#: admin/settings/settings-init.php:422 -#@ woocommerce -msgid "Parent: \"My Account\"" -msgstr "" - -#: admin/settings/settings-init.php:432 -#@ woocommerce -msgid "Lost Password Page" -msgstr "" - -#: admin/settings/settings-init.php:433 -#@ woocommerce -msgid "Page contents: [woocommerce_lost_password] Parent: \"My Account\"" -msgstr "" - -#: admin/settings/settings-init.php:449 -#@ woocommerce -msgid "Catalog Options" -msgstr "" - -#: admin/settings/settings-init.php:452 -#@ woocommerce -msgid "Default Product Sorting" -msgstr "" - -#: admin/settings/settings-init.php:453 -#@ woocommerce -msgid "This controls the default sort order of the catalog." -msgstr "" - -#: admin/settings/settings-init.php:459 -#@ woocommerce -msgid "Default sorting (custom ordering + name)" -msgstr "" - -#: admin/settings/settings-init.php:460 -#@ woocommerce -msgid "Popularity (sales)" -msgstr "" - -#: admin/settings/settings-init.php:461 -#@ woocommerce -msgid "Average Rating" -msgstr "" - -#: admin/settings/settings-init.php:463 -#@ woocommerce -msgid "Sort by price (asc)" -msgstr "" - -#: admin/settings/settings-init.php:464 -#@ woocommerce -msgid "Sort by price (desc)" -msgstr "" - -#: admin/settings/settings-init.php:470 -#@ woocommerce -msgid "Shop Page Display" -msgstr "" - -#: admin/settings/settings-init.php:471 -#@ woocommerce -msgid "This controls what is shown on the product archive." -msgstr "" - -#: admin/settings/settings-init.php:477 -#: admin/settings/settings-init.php:492 -#@ woocommerce -msgid "Show products" -msgstr "" - -#: admin/settings/settings-init.php:478 -#: admin/settings/settings-init.php:493 -#@ woocommerce -msgid "Show subcategories" -msgstr "" - -#: admin/settings/settings-init.php:479 -#: admin/settings/settings-init.php:494 -#@ woocommerce -msgid "Show both" -msgstr "" - -#: admin/settings/settings-init.php:485 -#@ woocommerce -msgid "Default Category Display" -msgstr "" - -#: admin/settings/settings-init.php:486 -#@ woocommerce -msgid "This controls what is shown on category archives." -msgstr "" - -#: admin/settings/settings-init.php:501 -#@ woocommerce -msgid "Redirect to the cart page after successful addition" -msgstr "" - -#: admin/settings/settings-init.php:509 -#@ woocommerce -msgid "Enable AJAX add to cart buttons on archives" -msgstr "" - -#: admin/settings/settings-init.php:518 -#@ woocommerce -msgid "The following options affect the fields available on the edit product page." -msgstr "" - -#: admin/settings/settings-init.php:521 -#@ woocommerce -msgid "Product Fields" -msgstr "" - -#: admin/settings/settings-init.php:522 -#@ woocommerce -msgid "Enable the SKU field for products" -msgstr "" - -#: admin/settings/settings-init.php:530 -#@ woocommerce -msgid "Enable the weight field for products (some shipping methods may require this)" -msgstr "" - -#: admin/settings/settings-init.php:538 -#@ woocommerce -msgid "Enable the dimension fields for products (some shipping methods may require this)" -msgstr "" - -#: admin/settings/settings-init.php:546 -#@ woocommerce -msgid "Show weight and dimension values on the Additional Information tab" -msgstr "" - -#: admin/settings/settings-init.php:554 -#@ woocommerce -msgid "Weight Unit" -msgstr "" - -#: admin/settings/settings-init.php:555 -#@ woocommerce -msgid "This controls what unit you will define weights in." -msgstr "" - -#: admin/settings/settings-init.php:561 -#@ woocommerce -msgid "kg" -msgstr "" - -#: admin/settings/settings-init.php:562 -#@ woocommerce -msgid "g" -msgstr "" - -#: admin/settings/settings-init.php:563 -#@ woocommerce -msgid "lbs" -msgstr "" - -#: admin/settings/settings-init.php:564 -#@ woocommerce -msgid "oz" -msgstr "" - -#: admin/settings/settings-init.php:570 -#@ woocommerce -msgid "Dimensions Unit" -msgstr "" - -#: admin/settings/settings-init.php:571 -#@ woocommerce -msgid "This controls what unit you will define lengths in." -msgstr "" - -#: admin/settings/settings-init.php:578 -#@ woocommerce -msgid "cm" -msgstr "" - -#: admin/settings/settings-init.php:579 -#@ woocommerce -msgid "mm" -msgstr "" - -#: admin/settings/settings-init.php:580 -#@ woocommerce -msgid "in" -msgstr "" - -#: admin/settings/settings-init.php:581 -#@ woocommerce -msgid "yd" -msgstr "" - -#: admin/settings/settings-init.php:587 -#@ woocommerce -msgid "Product Ratings" -msgstr "" - -#: admin/settings/settings-init.php:588 -#@ woocommerce -msgid "Enable ratings on reviews" -msgstr "" - -#: admin/settings/settings-init.php:597 -#@ woocommerce -msgid "Ratings are required to leave a review" -msgstr "" - -#: admin/settings/settings-init.php:606 -#@ woocommerce -msgid "Show \"verified owner\" label for customer reviews" -msgstr "" - -#: admin/settings/settings-init.php:616 -#@ woocommerce -msgid "Pricing Options" -msgstr "" - -#: admin/settings/settings-init.php:616 -#@ woocommerce -msgid "The following options affect how prices are displayed on the frontend." -msgstr "" - -#: admin/settings/settings-init.php:619 -#@ woocommerce -msgid "Currency Position" -msgstr "" - -#: admin/settings/settings-init.php:620 -#@ woocommerce -msgid "This controls the position of the currency symbol." -msgstr "" - -#: admin/settings/settings-init.php:626 -#@ woocommerce -msgid "Left" -msgstr "" - -#: admin/settings/settings-init.php:627 -#@ woocommerce -msgid "Right" -msgstr "" - -#: admin/settings/settings-init.php:628 -#@ woocommerce -msgid "Left (with space)" -msgstr "" - -#: admin/settings/settings-init.php:629 -#@ woocommerce -msgid "Right (with space)" -msgstr "" - -#: admin/settings/settings-init.php:635 -#@ woocommerce -msgid "Thousand Separator" -msgstr "" - -#: admin/settings/settings-init.php:636 -#@ woocommerce -msgid "This sets the thousand separator of displayed prices." -msgstr "" - -#: admin/settings/settings-init.php:645 -#@ woocommerce -msgid "Decimal Separator" -msgstr "" - -#: admin/settings/settings-init.php:646 -#@ woocommerce -msgid "This sets the decimal separator of displayed prices." -msgstr "" - -#: admin/settings/settings-init.php:655 -#@ woocommerce -msgid "Number of Decimals" -msgstr "" - -#: admin/settings/settings-init.php:656 -#@ woocommerce -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "" - -#: admin/settings/settings-init.php:669 -#@ woocommerce -msgid "Trailing Zeros" -msgstr "" - -#: admin/settings/settings-init.php:670 -#@ woocommerce -msgid "Remove zeros after the decimal point. e.g. $10.00 becomes $10" -msgstr "" - -#: admin/settings/settings-init.php:678 -#@ woocommerce -msgid "Image Options" -msgstr "" - -#: admin/settings/settings-init.php:678 -#, php-format -#@ woocommerce -msgid "These settings affect the actual dimensions of images in your catalog - the display on the front-end will still be affected by CSS styles. After changing these settings you may need to regenerate your thumbnails." -msgstr "" - -#: admin/settings/settings-init.php:681 -#@ woocommerce -msgid "Catalog Images" -msgstr "" - -#: admin/settings/settings-init.php:682 -#@ woocommerce -msgid "This size is usually used in product listings" -msgstr "" - -#: admin/settings/settings-init.php:695 -#@ woocommerce -msgid "Single Product Image" -msgstr "" - -#: admin/settings/settings-init.php:696 -#@ woocommerce -msgid "This is the size used by the main image on the product page." -msgstr "" - -#: admin/settings/settings-init.php:709 -#@ woocommerce -msgid "Product Thumbnails" -msgstr "" - -#: admin/settings/settings-init.php:710 -#@ woocommerce -msgid "This size is usually used for the gallery of images on the product page." -msgstr "" - -#: admin/settings/settings-init.php:729 -#@ woocommerce -msgid "Inventory Options" -msgstr "" - -#: admin/settings/settings-init.php:732 -#@ woocommerce -msgid "Manage Stock" -msgstr "" - -#: admin/settings/settings-init.php:733 -#@ woocommerce -msgid "Enable stock management" -msgstr "" - -#: admin/settings/settings-init.php:740 -#@ woocommerce -msgid "Hold Stock (minutes)" -msgstr "" - -#: admin/settings/settings-init.php:741 -#@ woocommerce -msgid "Hold stock (for unpaid orders) for x minutes. When this limit is reached, the pending order will be cancelled. Leave blank to disable." -msgstr "" - -#: admin/settings/settings-init.php:753 -#@ woocommerce -msgid "Notifications" -msgstr "" - -#: admin/settings/settings-init.php:754 -#@ woocommerce -msgid "Enable low stock notifications" -msgstr "" - -#: admin/settings/settings-init.php:762 -#@ woocommerce -msgid "Enable out of stock notifications" -msgstr "" - -#: admin/settings/settings-init.php:770 -#@ woocommerce -msgid "Notification Recipient" -msgstr "" - -#: admin/settings/settings-init.php:778 -#@ woocommerce -msgid "Low Stock Threshold" -msgstr "" - -#: admin/settings/settings-init.php:791 -#@ woocommerce -msgid "Out Of Stock Threshold" -msgstr "" - -#: admin/settings/settings-init.php:804 -#@ woocommerce -msgid "Out Of Stock Visibility" -msgstr "" - -#: admin/settings/settings-init.php:805 -#@ woocommerce -msgid "Hide out of stock items from the catalog" -msgstr "" - -#: admin/settings/settings-init.php:812 -#@ woocommerce -msgid "Stock Display Format" -msgstr "" - -#: admin/settings/settings-init.php:813 -#@ woocommerce -msgid "This controls how stock is displayed on the frontend." -msgstr "" - -#: admin/settings/settings-init.php:819 -#@ woocommerce -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "" - -#: admin/settings/settings-init.php:820 -#@ woocommerce -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "" - -#: admin/settings/settings-init.php:821 -#@ woocommerce -msgid "Never show stock amount" -msgstr "" - -#: admin/settings/settings-init.php:836 -#@ woocommerce -msgid "Shipping Calculations" -msgstr "" - -#: admin/settings/settings-init.php:837 -#@ woocommerce -msgid "Enable shipping" -msgstr "" - -#: admin/settings/settings-init.php:845 -#@ woocommerce -msgid "Enable the shipping calculator on the cart page" -msgstr "" - -#: admin/settings/settings-init.php:853 -#@ woocommerce -msgid "Hide shipping costs until an address is entered" -msgstr "" - -#: admin/settings/settings-init.php:861 -#@ woocommerce -msgid "Shipping Method Display" -msgstr "" - -#: admin/settings/settings-init.php:862 -#@ woocommerce -msgid "This controls how multiple shipping methods are displayed on the frontend." -msgstr "" - -#: admin/settings/settings-init.php:868 -#@ woocommerce -msgid "Radio buttons" -msgstr "" - -#: admin/settings/settings-init.php:869 -#@ woocommerce -msgid "Select box" -msgstr "" - -#: admin/settings/settings-init.php:875 -#@ woocommerce -msgid "Shipping Destination" -msgstr "" - -#: admin/settings/settings-init.php:876 -#@ woocommerce -msgid "Only ship to the users billing address" -msgstr "" - -#: admin/settings/settings-init.php:884 -#@ woocommerce -msgid "Ship to billing address by default" -msgstr "" - -#: admin/settings/settings-init.php:892 -#@ woocommerce -msgid "Collect shipping address even when not required" -msgstr "" - -#: admin/settings/settings-init.php:910 -#: admin/woocommerce-admin-settings.php:186 -#: admin/woocommerce-admin-settings.php:327 -#@ woocommerce -msgid "Payment Gateways" -msgstr "" - -#: admin/settings/settings-init.php:910 -#@ woocommerce -msgid "Installed payment gateways are displayed below. Drag and drop payment gateways to control their display order on the checkout." -msgstr "" - -#: admin/settings/settings-init.php:928 -#: admin/woocommerce-admin-settings.php:220 -#@ woocommerce -msgid "Tax Options" -msgstr "" - -#: admin/settings/settings-init.php:931 -#@ woocommerce -msgid "Enable Taxes" -msgstr "" - -#: admin/settings/settings-init.php:932 -#@ woocommerce -msgid "Enable taxes and tax calculations" -msgstr "" - -#: admin/settings/settings-init.php:939 -#@ woocommerce -msgid "Prices Entered With Tax" -msgstr "" - -#: admin/settings/settings-init.php:943 -#@ woocommerce -msgid "This option is important as it will affect how you input prices. Changing it will not update existing products." -msgstr "" - -#: admin/settings/settings-init.php:945 -#@ woocommerce -msgid "Yes, I will enter prices inclusive of tax" -msgstr "" - -#: admin/settings/settings-init.php:946 -#@ woocommerce -msgid "No, I will enter prices exclusive of tax" -msgstr "" - -#: admin/settings/settings-init.php:951 -#@ woocommerce -msgid "Calculate Tax Based On:" -msgstr "" - -#: admin/settings/settings-init.php:953 -#@ woocommerce -msgid "This option determines which address is used to calculate tax." -msgstr "" - -#: admin/settings/settings-init.php:957 -#@ woocommerce -msgid "Customer shipping address" -msgstr "" - -#: admin/settings/settings-init.php:958 -#@ woocommerce -msgid "Customer billing address" -msgstr "" - -#: admin/settings/settings-init.php:959 -#: admin/settings/settings-init.php:971 -#@ woocommerce -msgid "Shop base address" -msgstr "" - -#: admin/settings/settings-init.php:964 -#@ woocommerce -msgid "Default Customer Address:" -msgstr "" - -#: admin/settings/settings-init.php:966 -#@ woocommerce -msgid "This option determines the customers default address (before they input their own)." -msgstr "" - -#: admin/settings/settings-init.php:970 -#@ woocommerce -msgid "No address" -msgstr "" - -#: admin/settings/settings-init.php:976 -#@ woocommerce -msgid "Shipping Tax Class:" -msgstr "" - -#: admin/settings/settings-init.php:977 -#@ woocommerce -msgid "Optionally control which tax class shipping gets, or leave it so shipping tax is based on the cart items themselves." -msgstr "" - -#: admin/settings/settings-init.php:982 -#@ woocommerce -msgid "Shipping tax class based on cart items" -msgstr "" - -#: admin/settings/settings-init.php:987 -#@ woocommerce -msgid "Rounding" -msgstr "" - -#: admin/settings/settings-init.php:988 -#@ woocommerce -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "" - -#: admin/settings/settings-init.php:995 -#@ woocommerce -msgid "Additional Tax Classes" -msgstr "" - -#: admin/settings/settings-init.php:996 -#@ woocommerce -msgid "List additonal tax classes below (1 per line). This is in addition to the default Standard Rate. Tax classes can be assigned to products." -msgstr "" - -#: admin/settings/settings-init.php:1000 -#, php-format -#@ woocommerce -msgid "Reduced Rate%sZero Rate" -msgstr "" - -#: admin/settings/settings-init.php:1004 -#@ woocommerce -msgid "Display prices during cart/checkout:" -msgstr "" - -#: admin/settings/settings-init.php:1009 -#@ woocommerce -msgid "Including tax" -msgstr "" - -#: admin/settings/settings-init.php:1010 -#@ woocommerce -msgid "Excluding tax" -msgstr "" - -#: admin/settings/settings-init.php:1022 -#@ woocommerce -msgid "Email Sender Options" -msgstr "" - -#: admin/settings/settings-init.php:1022 -#@ woocommerce -msgid "The following options affect the sender (email address and name) used in WooCommerce emails." -msgstr "" - -#: admin/settings/settings-init.php:1025 -#@ woocommerce -msgid "\"From\" Name" -msgstr "" - -#: admin/settings/settings-init.php:1034 -#@ woocommerce -msgid "\"From\" Email Address" -msgstr "" - -#: admin/settings/settings-init.php:1047 -#@ woocommerce -msgid "Email Template" -msgstr "" - -#: admin/settings/settings-init.php:1047 -#, php-format -#@ woocommerce -msgid "This section lets you customise the WooCommerce emails. Click here to preview your email template. For more advanced control copy woocommerce/templates/emails/ to yourtheme/woocommerce/emails/." -msgstr "" - -#: admin/settings/settings-init.php:1050 -#@ woocommerce -msgid "Header Image" -msgstr "" - -#: admin/settings/settings-init.php:1051 -#, php-format -#@ woocommerce -msgid "Enter a URL to an image you want to show in the email's header. Upload your image using the media uploader." -msgstr "" - -#: admin/settings/settings-init.php:1059 -#@ woocommerce -msgid "Email Footer Text" -msgstr "" - -#: admin/settings/settings-init.php:1060 -#@ woocommerce -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "" - -#: admin/settings/settings-init.php:1064 -#@ woocommerce -msgid "Powered by WooCommerce" -msgstr "" - -#: admin/settings/settings-init.php:1068 -#@ woocommerce -msgid "Base Colour" -msgstr "" - -#: admin/settings/settings-init.php:1069 -#@ woocommerce -msgid "The base colour for WooCommerce email templates. Default #557da1." -msgstr "" - -#: admin/settings/settings-init.php:1077 -#@ woocommerce -msgid "Background Colour" -msgstr "" - -#: admin/settings/settings-init.php:1078 -#@ woocommerce -msgid "The background colour for WooCommerce email templates. Default #f5f5f5." -msgstr "" - -#: admin/settings/settings-init.php:1086 -#@ woocommerce -msgid "Email Body Background Colour" -msgstr "" - -#: admin/settings/settings-init.php:1087 -#@ woocommerce -msgid "The main body background colour. Default #fdfdfd." -msgstr "" - -#: admin/settings/settings-init.php:1095 -#@ woocommerce -msgid "Email Body Text Colour" -msgstr "" - -#: admin/settings/settings-init.php:1096 -#@ woocommerce -msgid "The main body text colour. Default #505050." -msgstr "" - -#: admin/settings/settings-payment-gateways.php:27 -#: admin/settings/settings-shipping-methods.php:29 -#: admin/woocommerce-admin-init.php:767 -#: admin/woocommerce-admin-taxonomies.php:27 -#: admin/woocommerce-admin-taxonomies.php:121 -#@ woocommerce -#@ default -msgid "Default" -msgstr "" - -#: admin/settings/settings-payment-gateways.php:28 -#@ woocommerce -msgid "Gateway" -msgstr "" - -#: admin/settings/settings-payment-gateways.php:45 -#@ woocommerce -msgid "Gateway ID" -msgstr "" - -#: admin/settings/settings-shipping-methods.php:23 -#@ woocommerce -msgid "Shipping Methods" -msgstr "" - -#: admin/settings/settings-shipping-methods.php:25 -#@ woocommerce -msgid "Drag and drop methods to control their display order." -msgstr "" - -#: admin/settings/settings-shipping-methods.php:30 -#@ woocommerce -msgid "Shipping Method" -msgstr "" - -#: admin/settings/settings-shipping-methods.php:46 -#@ woocommerce -msgid "Method ID" -msgstr "" - -#: admin/settings/settings-tax-rates.php:29 -#, php-format -#@ woocommerce -msgid "Tax Rates for the \"%s\" Class" -msgstr "" - -#: admin/settings/settings-tax-rates.php:30 -#, php-format -#@ woocommerce -msgid "Define tax rates for countries and states below. See here for available alpha-2 country codes." -msgstr "" - -#: admin/settings/settings-tax-rates.php:36 -#@ woocommerce -msgid "Country Code" -msgstr "" - -#: admin/settings/settings-tax-rates.php:36 -#@ woocommerce -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "" - -#: admin/settings/settings-tax-rates.php:38 -#@ woocommerce -msgid "State Code" -msgstr "" - -#: admin/settings/settings-tax-rates.php:38 -#@ woocommerce -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "" - -#: admin/settings/settings-tax-rates.php:40 -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "ZIP/Postcode" -msgstr "" - -#: admin/settings/settings-tax-rates.php:40 -#@ woocommerce -msgid "Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank to apply to all areas. Wildcards (*) can be used. Ranges for numeric postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "" - -#: admin/settings/settings-tax-rates.php:42 -#@ woocommerce -msgid "Cities for this rule. Semi-colon (;) separate multiple values. Leave blank to apply to all cities." -msgstr "" - -#: admin/settings/settings-tax-rates.php:44 -#@ woocommerce -msgid "Rate %" -msgstr "" - -#: admin/settings/settings-tax-rates.php:44 -#@ woocommerce -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "" - -#: admin/settings/settings-tax-rates.php:46 -#@ woocommerce -msgid "Tax Name" -msgstr "" - -#: admin/settings/settings-tax-rates.php:46 -#@ woocommerce -msgid "Enter a name for this tax rate." -msgstr "" - -#: admin/settings/settings-tax-rates.php:48 -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Priority" -msgstr "" - -#: admin/settings/settings-tax-rates.php:48 -#@ woocommerce -msgid "Choose a priority for this tax rate. Only 1 matching rate per priority will be used. To define multiple tax rates for a single area you need to specify a different priority per rate." -msgstr "" - -#: admin/settings/settings-tax-rates.php:50 -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Compound" -msgstr "" - -#: admin/settings/settings-tax-rates.php:50 -#@ woocommerce -msgid "Choose whether or not this is a compound rate. Compound tax rates are applied on top of other tax rates." -msgstr "" - -#: admin/settings/settings-tax-rates.php:52 -#@ woocommerce -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "" - -#: admin/settings/settings-tax-rates.php:59 -#@ woocommerce -msgid "Insert row" -msgstr "" - -#: admin/settings/settings-tax-rates.php:60 -#@ woocommerce -msgid "Remove selected row(s)" -msgstr "" - -#: admin/settings/settings-tax-rates.php:62 -#@ woocommerce -msgid "Export CSV" -msgstr "" - -#: admin/settings/settings-tax-rates.php:63 -#@ woocommerce -msgid "Import CSV" -msgstr "" - -#: admin/settings/settings-tax-rates.php:163 -#@ woocommerce -msgid "No row(s) selected" -msgstr "" - -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Country Code" -msgstr "" - -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "State Code" -msgstr "" - -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Rate %" -msgstr "" - -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Tax Name" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:77 -#@ woocommerce -msgid "Please, provide an attribute name, slug and type." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:79 -#, php-format -#@ woocommerce -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:81 -#, php-format -#@ woocommerce -msgid "Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:85 -#: admin/woocommerce-admin-attributes.php:90 -#, php-format -#@ woocommerce -msgid "Slug “%s” is already in use. Change it, please." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:226 -#@ woocommerce -msgid "Edit Attribute" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:236 -#: admin/woocommerce-admin-attributes.php:375 -#@ woocommerce -msgid "Name for the attribute (shown on the front-end)." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:241 -#: admin/woocommerce-admin-attributes.php:307 -#: admin/woocommerce-admin-attributes.php:379 -#@ woocommerce -msgid "Slug" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:245 -#: admin/woocommerce-admin-attributes.php:381 -#@ woocommerce -msgid "Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:254 -#: admin/woocommerce-admin-attributes.php:387 -#@ woocommerce -msgid "Select" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:255 -#: admin/woocommerce-admin-attributes.php:388 -#@ woocommerce -msgid "Text" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:258 -#: admin/woocommerce-admin-attributes.php:391 -#@ woocommerce -msgid "Determines how you select attributes for products. Under admin panel -> products -> product data -> attributes -> values, Text allows manual entry whereas select allows pre-configured terms in a drop-down list." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:263 -#: admin/woocommerce-admin-attributes.php:395 -#@ woocommerce -msgid "Default sort order" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:267 -#: admin/woocommerce-admin-attributes.php:335 -#: admin/woocommerce-admin-attributes.php:397 -#@ woocommerce -msgid "Custom ordering" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:269 -#: admin/woocommerce-admin-attributes.php:332 -#: admin/woocommerce-admin-attributes.php:399 -#@ woocommerce -msgid "Term ID" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:271 -#: admin/woocommerce-admin-attributes.php:401 -#@ woocommerce -msgid "Determines the sort order of the terms on the frontend shop product pages. If using custom ordering, you can drag and drop the terms in this attribute." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:309 -#@ woocommerce -msgid "Order by" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:310 -#@ woocommerce -msgid "Terms" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:355 -#@ woocommerce -msgid "Configure terms" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:359 -#@ woocommerce -msgid "No attributes currently exist." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:369 -#@ woocommerce -msgid "Add New Attribute" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:370 -#@ woocommerce -msgid "Attributes let you define extra product data, such as size or colour. You can use these attributes in the shop sidebar using the \"layered nav\" widgets. Please note: you cannot rename an attribute later on." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:404 -#@ woocommerce -msgid "Add Attribute" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:415 -#@ woocommerce -msgid "Are you sure you want to delete this attribute?" -msgstr "" - -#: admin/woocommerce-admin-content.php:26 -#: admin/woocommerce-admin-reports.php:30 -#: admin/woocommerce-admin-reports.php:75 -#: admin/woocommerce-admin-reports.php:91 -#: admin/woocommerce-admin-reports.php:102 -#@ woocommerce -msgid "Overview" -msgstr "" - -#: admin/woocommerce-admin-content.php:29 -#, php-format -#@ woocommerce -msgid "Thank you for using WooCommerce :) Should you need help using or extending WooCommerce please read the documentation. For further assistance you can use the community forum or if you have access, our support desk." -msgstr "" - -#: admin/woocommerce-admin-content.php:31 -#@ woocommerce -msgid "If you are having problems, or to assist us with support, please check the status page to identify any problems with your configuration:" -msgstr "" - -#: admin/woocommerce-admin-content.php:33 -#: admin/woocommerce-admin-init.php:87 -#: admin/woocommerce-admin-status.php:26 -#@ woocommerce -msgid "System Status" -msgstr "" - -#: admin/woocommerce-admin-content.php:35 -#, php-format -#@ woocommerce -msgid "If you come across a bug, or wish to contribute to the project you can also get involved on GitHub." -msgstr "" - -#: admin/woocommerce-admin-content.php:43 -#@ woocommerce -msgid "Here you can set up your store and customise it to fit your needs. The sections available from the settings page include:" -msgstr "" - -#: admin/woocommerce-admin-content.php:44 -#@ woocommerce -msgid "General settings such as your shop base, currency, and script/styling options which affect features used in your store." -msgstr "" - -#: admin/woocommerce-admin-content.php:45 -#@ woocommerce -msgid "This is where important store page are defined. You can also set up other pages (such as a Terms page) here." -msgstr "" - -#: admin/woocommerce-admin-content.php:46 -#@ woocommerce -msgid "Options for how things like price, images and weights appear in your product catalog." -msgstr "" - -#: admin/woocommerce-admin-content.php:47 -#@ woocommerce -msgid "Options concerning stock and stock notices." -msgstr "" - -#: admin/woocommerce-admin-content.php:48 -#@ woocommerce -msgid "Options concerning tax, including international and local tax rates." -msgstr "" - -#: admin/woocommerce-admin-content.php:49 -#@ woocommerce -msgid "This is where shipping options are defined, and shipping methods are set up." -msgstr "" - -#: admin/woocommerce-admin-content.php:50 -#@ woocommerce -msgid "Payment Methods" -msgstr "" - -#: admin/woocommerce-admin-content.php:50 -#@ woocommerce -msgid "This is where payment gateway options are defined, and individual payment gateways are set up." -msgstr "" - -#: admin/woocommerce-admin-content.php:51 -#: admin/woocommerce-admin-settings.php:187 -#@ woocommerce -msgid "Emails" -msgstr "" - -#: admin/woocommerce-admin-content.php:51 -#@ woocommerce -msgid "Here you can customise the way WooCommerce emails appear." -msgstr "" - -#: admin/woocommerce-admin-content.php:52 -#: admin/woocommerce-admin-settings.php:188 -#@ woocommerce -msgid "Integration" -msgstr "" - -#: admin/woocommerce-admin-content.php:52 -#@ woocommerce -msgid "The integration section contains options for third party services which integrate with WooCommerce." -msgstr "" - -#: admin/woocommerce-admin-content.php:57 -#: admin/woocommerce-admin-init.php:64 -#@ woocommerce -msgid "Reports" -msgstr "" - -#: admin/woocommerce-admin-content.php:59 -#@ woocommerce -msgid "The reports section can be accessed from the left-hand navigation menu. Here you can generate reports for sales and customers." -msgstr "" - -#: admin/woocommerce-admin-content.php:60 -#: admin/woocommerce-admin-reports.php:27 -#: admin/woocommerce-admin-reports.php:986 -#: admin/woocommerce-admin-reports.php:1082 -#: admin/woocommerce-admin-reports.php:1199 -#@ woocommerce -msgid "Sales" -msgstr "" - -#: admin/woocommerce-admin-content.php:60 -#@ woocommerce -msgid "Reports for sales based on date, top sellers and top earners." -msgstr "" - -#: admin/woocommerce-admin-content.php:61 -#@ woocommerce -msgid "Coupon usage reports." -msgstr "" - -#: admin/woocommerce-admin-content.php:62 -#: admin/woocommerce-admin-reports.php:88 -#@ woocommerce -msgid "Customers" -msgstr "" - -#: admin/woocommerce-admin-content.php:62 -#@ woocommerce -msgid "Customer reports, such as signups per day." -msgstr "" - -#: admin/woocommerce-admin-content.php:63 -#@ woocommerce -msgid "Stock reports for low stock and out of stock items." -msgstr "" - -#: admin/woocommerce-admin-content.php:70 -#@ woocommerce -msgid "The orders section can be accessed from the left-hand navigation menu. Here you can view and manage customer orders." -msgstr "" - -#: admin/woocommerce-admin-content.php:71 -#@ woocommerce -msgid "Orders can also be added from this section if you want to set them up for a customer manually." -msgstr "" - -#: admin/woocommerce-admin-content.php:78 -#@ woocommerce -msgid "Coupons can be managed from this section. Once added, customers will be able to enter coupon codes on the cart/checkout page. If a customer uses a coupon code they will be viewable when viewing orders." -msgstr "" - -#: admin/woocommerce-admin-content.php:82 -#@ woocommerce -msgid "For more information:" -msgstr "" - -#: admin/woocommerce-admin-content.php:84 -#@ woocommerce -msgid "Project on WordPress.org" -msgstr "" - -#: admin/woocommerce-admin-content.php:85 -#@ woocommerce -msgid "Project on Github" -msgstr "" - -#: admin/woocommerce-admin-content.php:86 -#@ woocommerce -msgid "WooCommerce Docs" -msgstr "" - -#: admin/woocommerce-admin-content.php:87 -#@ woocommerce -msgid "Official Extensions" -msgstr "" - -#: admin/woocommerce-admin-content.php:88 -#@ woocommerce -msgid "Official Themes" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:40 -#@ woocommerce -msgid "Monthly Sales" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:43 -#@ woocommerce -msgid "WooCommerce Right Now" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:44 -#@ woocommerce -msgid "WooCommerce Recent Orders" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:78 -#@ woocommerce -msgid "Shop Content" -msgstr "" - -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:84 -#: admin/woocommerce-admin-functions.php:194 -#: admin/woocommerce-admin-init.php:771 -#: admin/woocommerce-admin-reports.php:985 -#: admin/woocommerce-admin-reports.php:1081 -#: templates/cart/cart.php:28 -#: templates/checkout/form-pay.php:19 -#: templates/checkout/review-order.php:21 -#: templates/emails/admin-new-order.php:22 -#: templates/emails/customer-completed-order.php:23 -#: templates/emails/customer-invoice.php:27 -#: templates/emails/customer-note.php:27 -#: templates/emails/customer-processing-order.php:23 -#: templates/order/order-details.php:20 -#: woocommerce.php:949 -#@ woocommerce -msgid "Product" -msgid_plural "Products" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:98 -#: woocommerce.php:790 -#@ woocommerce -msgid "Product Category" -msgid_plural "Product Categories" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:112 -#: woocommerce.php:826 -#@ woocommerce -msgid "Product Tag" -msgid_plural "Product Tags" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: admin/woocommerce-admin-dashboard.php:126 -#@ woocommerce -msgid "Attribute" -msgid_plural "Attributes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: admin/woocommerce-admin-dashboard.php:148 -#@ woocommerce -msgid "Pending" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:162 -#@ woocommerce -msgid "On-Hold" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:190 -#@ woocommerce -msgid "Completed" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:207 -#, php-format -#@ woocommerce -msgid "You are using WooCommerce %s." -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:238 -#@ woocommerce -msgid "l jS \\of F Y h:i:s A" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:239 -#@ woocommerce -msgid "item" -msgid_plural "items" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: admin/woocommerce-admin-dashboard.php:245 -#@ woocommerce -msgid "There are no product orders yet." -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:287 -#@ woocommerce -msgid "There are no product reviews yet." -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:428 -#@ woocommerce -msgid "Sold" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:429 -#@ woocommerce -msgid "Earned" -msgstr "" - -#: admin/woocommerce-admin-functions.php:184 -#: admin/woocommerce-admin-install.php:222 -#@ woocommerce -msgid "Order Received" -msgstr "" - -#: admin/woocommerce-admin-functions.php:186 -#@ woocommerce -msgid "Thank you, we are now processing your order. Your order's details are below." -msgstr "" - -#: admin/woocommerce-admin-functions.php:208 -#@ woocommerce -msgid "Order total:" -msgstr "" - -#: admin/woocommerce-admin-functions.php:459 -#@ woocommerce -msgid "Could not compile woocommerce.less:" -msgstr "" - -#: admin/woocommerce-admin-functions.php:480 -#: admin/woocommerce-admin-functions.php:481 -#@ woocommerce -msgid "Mark processing" -msgstr "" - -#: admin/woocommerce-admin-functions.php:483 -#: admin/woocommerce-admin-functions.php:484 -#@ woocommerce -msgid "Mark completed" -msgstr "" - -#: admin/woocommerce-admin-functions.php:521 -#@ woocommerce -msgid "Order status changed by bulk edit:" -msgstr "" - -#: admin/woocommerce-admin-functions.php:544 -#, php-format -#@ default -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: admin/woocommerce-admin-init.php:86 -#@ woocommerce -msgid "WooCommerce Settings" -msgstr "" - -#: admin/woocommerce-admin-init.php:87 -#@ woocommerce -msgid "WooCommerce Status" -msgstr "" - -#: admin/woocommerce-admin-init.php:446 -#@ woocommerce -msgid "Are you sure you want to remove the selected items? If you have previously reduced this item's stock, or this order was submitted by a customer, you will need to manually restore the item's stock." -msgstr "" - -#: admin/woocommerce-admin-init.php:447 -#@ woocommerce -msgid "Please select some items." -msgstr "" - -#: admin/woocommerce-admin-init.php:448 -#@ woocommerce -msgid "Remove this item meta?" -msgstr "" - -#: admin/woocommerce-admin-init.php:449 -#@ woocommerce -msgid "Remove this attribute?" -msgstr "" - -#: admin/woocommerce-admin-init.php:457 -#@ woocommerce -msgid "Enter a name for the new attribute term:" -msgstr "" - -#: admin/woocommerce-admin-init.php:458 -#@ woocommerce -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "" - -#: admin/woocommerce-admin-init.php:459 -#@ woocommerce -msgid "Calculate line taxes? This will calculate taxes based on the customers country. If no billing/shipping is set it will use the store base country." -msgstr "" - -#: admin/woocommerce-admin-init.php:460 -#@ woocommerce -msgid "Copy billing information to shipping information? This will remove any currently entered shipping information." -msgstr "" - -#: admin/woocommerce-admin-init.php:461 -#@ woocommerce -msgid "Load the customer's billing information? This will remove any currently entered billing information." -msgstr "" - -#: admin/woocommerce-admin-init.php:462 -#@ woocommerce -msgid "Load the customer's shipping information? This will remove any currently entered shipping information." -msgstr "" - -#: admin/woocommerce-admin-init.php:466 -#@ woocommerce -msgid "No customer selected" -msgstr "" - -#: admin/woocommerce-admin-init.php:675 -#, php-format -#@ woocommerce -msgid "Product updated. View Product" -msgstr "" - -#: admin/woocommerce-admin-init.php:676 -#: admin/woocommerce-admin-init.php:691 -#: admin/woocommerce-admin-init.php:706 -#@ woocommerce -msgid "Custom field updated." -msgstr "" - -#: admin/woocommerce-admin-init.php:677 -#: admin/woocommerce-admin-init.php:692 -#: admin/woocommerce-admin-init.php:707 -#@ woocommerce -msgid "Custom field deleted." -msgstr "" - -#: admin/woocommerce-admin-init.php:678 -#@ woocommerce -msgid "Product updated." -msgstr "" - -#: admin/woocommerce-admin-init.php:679 -#, php-format -#@ woocommerce -msgid "Product restored to revision from %s" -msgstr "" - -#: admin/woocommerce-admin-init.php:680 -#, php-format -#@ woocommerce -msgid "Product published. View Product" -msgstr "" - -#: admin/woocommerce-admin-init.php:681 -#@ woocommerce -msgid "Product saved." -msgstr "" - -#: admin/woocommerce-admin-init.php:682 -#, php-format -#@ woocommerce -msgid "Product submitted. Preview Product" -msgstr "" - -#: admin/woocommerce-admin-init.php:683 -#, php-format -#@ woocommerce -msgid "Product scheduled for: %1$s. Preview Product" -msgstr "" - -#: admin/woocommerce-admin-init.php:684 -#: admin/woocommerce-admin-init.php:699 -#: admin/woocommerce-admin-init.php:714 -#@ woocommerce -msgid "M j, Y @ G:i" -msgstr "" - -#: admin/woocommerce-admin-init.php:685 -#, php-format -#@ woocommerce -msgid "Product draft updated. Preview Product" -msgstr "" - -#: admin/woocommerce-admin-init.php:690 -#: admin/woocommerce-admin-init.php:693 -#: admin/woocommerce-admin-init.php:695 -#@ woocommerce -msgid "Order updated." -msgstr "" - -#: admin/woocommerce-admin-init.php:694 -#, php-format -#@ woocommerce -msgid "Order restored to revision from %s" -msgstr "" - -#: admin/woocommerce-admin-init.php:696 -#@ woocommerce -msgid "Order saved." -msgstr "" - -#: admin/woocommerce-admin-init.php:697 -#@ woocommerce -msgid "Order submitted." -msgstr "" - -#: admin/woocommerce-admin-init.php:698 -#, php-format -#@ woocommerce -msgid "Order scheduled for: %1$s." -msgstr "" - -#: admin/woocommerce-admin-init.php:700 -#@ woocommerce -msgid "Order draft updated." -msgstr "" - -#: admin/woocommerce-admin-init.php:705 -#: admin/woocommerce-admin-init.php:708 -#: admin/woocommerce-admin-init.php:710 -#@ woocommerce -msgid "Coupon updated." -msgstr "" - -#: admin/woocommerce-admin-init.php:709 -#, php-format -#@ woocommerce -msgid "Coupon restored to revision from %s" -msgstr "" - -#: admin/woocommerce-admin-init.php:711 -#@ woocommerce -msgid "Coupon saved." -msgstr "" - -#: admin/woocommerce-admin-init.php:712 -#@ woocommerce -msgid "Coupon submitted." -msgstr "" - -#: admin/woocommerce-admin-init.php:713 -#, php-format -#@ woocommerce -msgid "Coupon scheduled for: %1$s." -msgstr "" - -#: admin/woocommerce-admin-init.php:715 -#@ woocommerce -msgid "Coupon draft updated." -msgstr "" - -#: admin/woocommerce-admin-init.php:732 -#@ woocommerce -msgid "Order notes" -msgstr "" - -#: admin/woocommerce-admin-init.php:747 -#@ woocommerce -msgid "These settings control the permalinks used for products. These settings only apply when not using \"default\" permalinks above." -msgstr "" - -#: admin/woocommerce-admin-init.php:754 -#@ woocommerce -msgctxt "default-slug" -msgid "shop" -msgstr "" - -#: admin/woocommerce-admin-init.php:755 -#@ woocommerce -msgctxt "default-slug" -msgid "product" -msgstr "" - -#: admin/woocommerce-admin-init.php:776 -#@ woocommerce -msgid "Shop base" -msgstr "" - -#: admin/woocommerce-admin-init.php:780 -#@ woocommerce -msgid "Shop base with category" -msgstr "" - -#: admin/woocommerce-admin-init.php:786 -#@ woocommerce -msgid "Custom Base" -msgstr "" - -#: admin/woocommerce-admin-init.php:788 -#@ woocommerce -msgid "Enter a custom base to use. A base must be set or WordPress will use default instead." -msgstr "" - -#: admin/woocommerce-admin-init.php:816 -#@ woocommerce -msgid "Product permalink base" -msgstr "" - -#: admin/woocommerce-admin-init.php:821 -#@ woocommerce -msgid "Product category base" -msgstr "" - -#: admin/woocommerce-admin-init.php:828 -#@ woocommerce -msgid "Product tag base" -msgstr "" - -#: admin/woocommerce-admin-init.php:835 -#@ woocommerce -msgid "Product attribute base" -msgstr "" - -#: admin/woocommerce-admin-install.php:192 -#@ woocommerce -msgctxt "page_slug" -msgid "shop" -msgstr "" - -#: admin/woocommerce-admin-install.php:192 -#@ woocommerce -msgid "Shop" -msgstr "" - -#: admin/woocommerce-admin-install.php:195 -#@ woocommerce -msgctxt "page_slug" -msgid "cart" -msgstr "" - -#: admin/woocommerce-admin-install.php:198 -#@ woocommerce -msgctxt "page_slug" -msgid "checkout" -msgstr "" - -#: admin/woocommerce-admin-install.php:201 -#@ woocommerce -msgctxt "page_slug" -msgid "my-account" -msgstr "" - -#: admin/woocommerce-admin-install.php:207 -#@ woocommerce -msgctxt "page_slug" -msgid "edit-address" -msgstr "" - -#: admin/woocommerce-admin-install.php:207 -#@ woocommerce -msgid "Edit My Address" -msgstr "" - -#: admin/woocommerce-admin-install.php:210 -#@ woocommerce -msgctxt "page_slug" -msgid "view-order" -msgstr "" - -#: admin/woocommerce-admin-install.php:213 -#@ woocommerce -msgctxt "page_slug" -msgid "change-password" -msgstr "" - -#: admin/woocommerce-admin-install.php:216 -#@ woocommerce -msgctxt "page_slug" -msgid "logout" -msgstr "" - -#: admin/woocommerce-admin-install.php:219 -#@ woocommerce -msgctxt "page_slug" -msgid "pay" -msgstr "" - -#: admin/woocommerce-admin-install.php:219 -#@ woocommerce -msgid "Checkout → Pay" -msgstr "" - -#: admin/woocommerce-admin-install.php:222 -#@ woocommerce -msgctxt "page_slug" -msgid "order-received" -msgstr "" - -#: admin/woocommerce-admin-reports.php:36 -#@ woocommerce -msgid "Sales by day" -msgstr "" - -#: admin/woocommerce-admin-reports.php:41 -#@ woocommerce -msgid "Sales by month" -msgstr "" - -#: admin/woocommerce-admin-reports.php:46 -#@ woocommerce -msgid "Taxes by month" -msgstr "" - -#: admin/woocommerce-admin-reports.php:51 -#@ woocommerce -msgid "Product Sales" -msgstr "" - -#: admin/woocommerce-admin-reports.php:56 -#@ woocommerce -msgid "Top sellers" -msgstr "" - -#: admin/woocommerce-admin-reports.php:61 -#@ woocommerce -msgid "Top earners" -msgstr "" - -#: admin/woocommerce-admin-reports.php:66 -#@ woocommerce -msgid "Sales by category" -msgstr "" - -#: admin/woocommerce-admin-reports.php:81 -#@ woocommerce -msgid "Discounts by coupon" -msgstr "" - -#: admin/woocommerce-admin-reports.php:232 -#: admin/woocommerce-admin-reports.php:497 -#: admin/woocommerce-admin-reports.php:702 -#: admin/woocommerce-admin-reports.php:883 -#@ woocommerce -msgid "Sales amount" -msgstr "" - -#: admin/woocommerce-admin-reports.php:237 -#: admin/woocommerce-admin-reports.php:497 -#: admin/woocommerce-admin-reports.php:702 -#: admin/woocommerce-admin-reports.php:883 -#@ woocommerce -msgid "Number of sales" -msgstr "" - -#: admin/woocommerce-admin-reports.php:369 -#@ woocommerce -msgid "Total sales" -msgstr "" - -#: admin/woocommerce-admin-reports.php:371 -#: admin/woocommerce-admin-reports.php:377 -#: admin/woocommerce-admin-reports.php:383 -#: admin/woocommerce-admin-reports.php:389 -#: admin/woocommerce-admin-reports.php:395 -#: admin/woocommerce-admin-reports.php:401 -#: admin/woocommerce-admin-reports.php:644 -#: admin/woocommerce-admin-reports.php:650 -#: admin/woocommerce-admin-reports.php:656 -#: admin/woocommerce-admin-reports.php:662 -#: admin/woocommerce-admin-reports.php:828 -#: admin/woocommerce-admin-reports.php:834 -#: admin/woocommerce-admin-reports.php:840 -#: admin/woocommerce-admin-reports.php:846 -#: admin/woocommerce-admin-reports.php:1364 -#: admin/woocommerce-admin-reports.php:1370 -#: admin/woocommerce-admin-reports.php:1376 -#: admin/woocommerce-admin-reports.php:1810 -#: admin/woocommerce-admin-reports.php:1816 -#: admin/woocommerce-admin-reports.php:1822 -#: admin/woocommerce-admin-reports.php:1828 -#: admin/woocommerce-admin-reports.php:1834 -#: admin/woocommerce-admin-reports.php:1840 -#: admin/woocommerce-admin-reports.php:2304 -#: admin/woocommerce-admin-reports.php:2315 -#: admin/woocommerce-admin-reports.php:2326 -#@ woocommerce -msgid "n/a" -msgstr "" - -#: admin/woocommerce-admin-reports.php:375 -#@ woocommerce -msgid "Total orders" -msgstr "" - -#: admin/woocommerce-admin-reports.php:377 -#: admin/woocommerce-admin-reports.php:650 -#: admin/woocommerce-admin-reports.php:834 -#@ woocommerce -msgid "items" -msgstr "" - -#: admin/woocommerce-admin-reports.php:381 -#@ woocommerce -msgid "Average order total" -msgstr "" - -#: admin/woocommerce-admin-reports.php:387 -#@ woocommerce -msgid "Average order items" -msgstr "" - -#: admin/woocommerce-admin-reports.php:393 -#@ woocommerce -msgid "Discounts used" -msgstr "" - -#: admin/woocommerce-admin-reports.php:399 -#@ woocommerce -msgid "Total shipping costs" -msgstr "" - -#: admin/woocommerce-admin-reports.php:407 -#@ woocommerce -msgid "This month's sales" -msgstr "" - -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1356 -#@ woocommerce -msgid "From:" -msgstr "" - -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1356 -#@ woocommerce -msgid "To:" -msgstr "" - -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:821 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1229 -#: admin/woocommerce-admin-reports.php:1356 -#: admin/woocommerce-admin-reports.php:1489 -#: admin/woocommerce-admin-reports.php:2293 -#: admin/woocommerce-admin-reports.php:2476 -#@ woocommerce -msgid "Show" -msgstr "" - -#: admin/woocommerce-admin-reports.php:642 -#@ woocommerce -msgid "Total sales in range" -msgstr "" - -#: admin/woocommerce-admin-reports.php:648 -#@ woocommerce -msgid "Total orders in range" -msgstr "" - -#: admin/woocommerce-admin-reports.php:654 -#@ woocommerce -msgid "Average order total in range" -msgstr "" - -#: admin/woocommerce-admin-reports.php:660 -#@ woocommerce -msgid "Average order items in range" -msgstr "" - -#: admin/woocommerce-admin-reports.php:668 -#@ woocommerce -msgid "Sales in range" -msgstr "" - -#: admin/woocommerce-admin-reports.php:815 -#: admin/woocommerce-admin-reports.php:2287 -#@ woocommerce -msgid "Year:" -msgstr "" - -#: admin/woocommerce-admin-reports.php:826 -#@ woocommerce -msgid "Total sales for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:832 -#@ woocommerce -msgid "Total orders for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:838 -#@ woocommerce -msgid "Average order total for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:844 -#@ woocommerce -msgid "Average order items for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:852 -#@ woocommerce -msgid "Monthly sales for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1000 -#@ woocommerce -msgid "Product does not exist" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1097 -#@ woocommerce -msgid "Product no longer exists" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1194 -#, php-format -#@ woocommerce -msgid "Sales for %s:" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1198 -#: admin/woocommerce-admin-reports.php:2335 -#@ woocommerce -msgid "Month" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1219 -#@ woocommerce -msgid "No sales :(" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1362 -#@ woocommerce -msgid "Total orders containing coupons" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1368 -#@ woocommerce -msgid "Percent of orders containing coupons" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1374 -#@ woocommerce -msgid "Total coupon discount" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1383 -#@ woocommerce -msgid "Most popular coupons" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1393 -#, php-format -#@ woocommerce -msgid "Used 1 time" -msgid_plural "Used %d times" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: admin/woocommerce-admin-reports.php:1396 -#: admin/woocommerce-admin-reports.php:1418 -#@ woocommerce -msgid "No coupons found" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1405 -#@ woocommerce -msgid "Greatest discount amount" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1415 -#, php-format -#@ woocommerce -msgid "Discounted %s" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1474 -#: admin/woocommerce-admin-reports.php:2453 -#@ woocommerce -msgid "Show:" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1614 -#@ woocommerce -msgid "Top coupon" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1622 -#@ woocommerce -msgid "Worst coupon" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1630 -#@ woocommerce -msgid "Discount average" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1638 -#@ woocommerce -msgid "Discount median" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1658 -#@ woocommerce -msgid "Monthly discounts by coupon" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1808 -#@ woocommerce -msgid "Total customers" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1814 -#@ woocommerce -msgid "Total customer sales" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1820 -#@ woocommerce -msgid "Total guest sales" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1826 -#@ woocommerce -msgid "Total customer orders" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1832 -#@ woocommerce -msgid "Total guest orders" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1838 -#@ woocommerce -msgid "Average orders per customer" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1846 -#@ woocommerce -msgid "Signups per day" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2067 -#@ woocommerce -msgid "Low stock" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2090 -#: admin/woocommerce-admin-reports.php:2129 -#, php-format -#@ woocommerce -msgid "%d in stock" -msgid_plural "%d in stock" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: admin/woocommerce-admin-reports.php:2095 -#@ woocommerce -msgid "No products are low in stock." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2127 -#@ woocommerce -msgid "Marked out of stock" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2134 -#@ woocommerce -msgid "No products are out in stock." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2298 -#@ woocommerce -msgid "Total taxes for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2309 -#@ woocommerce -msgid "Total product taxes for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2320 -#@ woocommerce -msgid "Total shipping tax for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2336 -#@ woocommerce -msgid "Total Sales" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2336 -#@ woocommerce -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2337 -#@ woocommerce -msgid "Total Shipping" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2337 -#@ woocommerce -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2338 -#@ woocommerce -msgid "Total Product Taxes" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2338 -#@ woocommerce -msgid "This is the sum of the 'Cart Tax' field within your orders." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2339 -#@ woocommerce -msgid "Total Shipping Taxes" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2339 -#@ woocommerce -msgid "This is the sum of the 'Shipping Tax' field within your orders." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2340 -#@ woocommerce -msgid "Total Taxes" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2340 -#@ woocommerce -msgid "This is the sum of the 'Cart Tax' and 'Shipping Tax' fields within your orders." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2341 -#@ woocommerce -msgid "Net profit" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2341 -#@ woocommerce -msgid "Total sales minus shipping and tax." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2386 -#@ woocommerce -msgid "Toggle tax rows" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2529 -#@ woocommerce -msgid "Category" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2632 -#@ woocommerce -msgid "Top category" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2641 -#@ woocommerce -msgid "Worst category" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2649 -#@ woocommerce -msgid "Category sales average" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2660 -#@ woocommerce -msgid "Category sales median" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2680 -#@ woocommerce -msgid "Monthly sales by category" -msgstr "" - -#: admin/woocommerce-admin-settings.php:162 -#@ woocommerce -msgid "Your settings have been saved." -msgstr "" - -#: admin/woocommerce-admin-settings.php:208 -#, php-format -#@ woocommerce -msgid "More functionality and gateway options available via WC official extensions." -msgstr "" - -#: admin/woocommerce-admin-settings.php:226 -#@ woocommerce -msgid "Tax Rates" -msgstr "" - -#: admin/woocommerce-admin-settings.php:253 -#@ woocommerce -msgid "Email Options" -msgstr "" - -#: admin/woocommerce-admin-settings.php:427 -#@ woocommerce -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "" - -#: admin/woocommerce-admin-settings.php:799 -#@ woocommerce -msgid "Hard Crop" -msgstr "" - -#: admin/woocommerce-admin-settings.php:824 -#@ woocommerce -msgid "Select a page…" -msgstr "" - -#: admin/woocommerce-admin-settings.php:847 -#@ woocommerce -msgid "Choose a country…" -msgstr "" - -#: admin/woocommerce-admin-settings.php:867 -#@ woocommerce -msgid "Choose countries…" -msgstr "" - -#: admin/woocommerce-admin-status.php:27 -#: admin/woocommerce-admin-status.php:622 -#@ woocommerce -msgid "Tools" -msgstr "" - -#: admin/woocommerce-admin-status.php:62 -#@ woocommerce -msgid "Please include this information when requesting support:" -msgstr "" - -#: admin/woocommerce-admin-status.php:63 -#@ woocommerce -msgid "Download System Report File" -msgstr "" - -#: admin/woocommerce-admin-status.php:71 -#@ woocommerce -msgid "Environment" -msgstr "" - -#: admin/woocommerce-admin-status.php:77 -#@ woocommerce -msgid "Home URL" -msgstr "" - -#: admin/woocommerce-admin-status.php:81 -#@ woocommerce -msgid "Site URL" -msgstr "" - -#: admin/woocommerce-admin-status.php:85 -#@ woocommerce -msgid "WC Version" -msgstr "" - -#: admin/woocommerce-admin-status.php:89 -#@ woocommerce -msgid "WC Database Version" -msgstr "" - -#: admin/woocommerce-admin-status.php:93 -#@ woocommerce -msgid "WP Version" -msgstr "" - -#: admin/woocommerce-admin-status.php:97 -#@ woocommerce -msgid "Web Server Info" -msgstr "" - -#: admin/woocommerce-admin-status.php:101 -#@ woocommerce -msgid "PHP Version" -msgstr "" - -#: admin/woocommerce-admin-status.php:105 -#@ woocommerce -msgid "MySQL Version" -msgstr "" - -#: admin/woocommerce-admin-status.php:109 -#@ woocommerce -msgid "WP Memory Limit" -msgstr "" - -#: admin/woocommerce-admin-status.php:114 -#, php-format -#@ woocommerce -msgid "%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "" - -#: admin/woocommerce-admin-status.php:121 -#@ woocommerce -msgid "WP Debug Mode" -msgstr "" - -#: admin/woocommerce-admin-status.php:125 -#@ woocommerce -msgid "WP Max Upload Size" -msgstr "" - -#: admin/woocommerce-admin-status.php:129 -#@ woocommerce -msgid "PHP Post Max Size" -msgstr "" - -#: admin/woocommerce-admin-status.php:133 -#@ woocommerce -msgid "PHP Time Limit" -msgstr "" - -#: admin/woocommerce-admin-status.php:137 -#@ woocommerce -msgid "WC Logging" -msgstr "" - -#: admin/woocommerce-admin-status.php:140 -#@ woocommerce -msgid "Log directory is writable." -msgstr "" - -#: admin/woocommerce-admin-status.php:142 -#@ woocommerce -msgid "Log directory (woocommerce/logs/) is not writable. Logging will not be possible." -msgstr "" - -#: admin/woocommerce-admin-status.php:149 -#@ woocommerce -msgid "fsockopen/cURL" -msgstr "" - -#: admin/woocommerce-admin-status.php:152 -#@ woocommerce -msgid "Your server has fsockopen and cURL enabled." -msgstr "" - -#: admin/woocommerce-admin-status.php:154 -#@ woocommerce -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "" - -#: admin/woocommerce-admin-status.php:156 -#@ woocommerce -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "" - -#: admin/woocommerce-admin-status.php:160 -#@ woocommerce -msgid "Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider." -msgstr "" - -#: admin/woocommerce-admin-status.php:165 -#@ woocommerce -msgid "SOAP Client" -msgstr "" - -#: admin/woocommerce-admin-status.php:167 -#@ woocommerce -msgid "Your server has the SOAP Client class enabled." -msgstr "" - -#: admin/woocommerce-admin-status.php:170 -#, php-format -#@ woocommerce -msgid "Your server does not have the SOAP Client class enabled - some gateway plugins which use SOAP may not work as expected." -msgstr "" - -#: admin/woocommerce-admin-status.php:175 -#@ woocommerce -msgid "WP Remote Post" -msgstr "" - -#: admin/woocommerce-admin-status.php:186 -#@ woocommerce -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "" - -#: admin/woocommerce-admin-status.php:189 -#@ woocommerce -msgid "wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:" -msgstr "" - -#: admin/woocommerce-admin-status.php:192 -#@ woocommerce -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "" - -#: admin/woocommerce-admin-status.php:215 -#@ woocommerce -msgid "Plugins" -msgstr "" - -#: admin/woocommerce-admin-status.php:221 -#@ woocommerce -msgid "Installed Plugins" -msgstr "" - -#: admin/woocommerce-admin-status.php:236 -#@ woocommerce -msgid "by" -msgstr "" - -#: admin/woocommerce-admin-status.php:236 -#@ woocommerce -msgid "version" -msgstr "" - -#: admin/woocommerce-admin-status.php:259 -#@ woocommerce -msgid "Force SSL" -msgstr "" - -#: admin/woocommerce-admin-status.php:266 -#@ woocommerce -msgid "WC Pages" -msgstr "" - -#: admin/woocommerce-admin-status.php:273 -#@ woocommerce -msgid "Shop Base" -msgstr "" - -#: admin/woocommerce-admin-status.php:289 -#@ woocommerce -msgid "Thanks" -msgstr "" - -#: admin/woocommerce-admin-status.php:329 -#@ woocommerce -msgid "Page not set" -msgstr "" - -#: admin/woocommerce-admin-status.php:339 -#@ woocommerce -msgid "Page does not exist" -msgstr "" - -#: admin/woocommerce-admin-status.php:344 -#, php-format -#@ woocommerce -msgid "Page does not contain the shortcode: %s" -msgstr "" - -#: admin/woocommerce-admin-status.php:363 -#@ woocommerce -msgid "WC Taxonomies" -msgstr "" - -#: admin/woocommerce-admin-status.php:369 -#@ woocommerce -msgid "Order Statuses" -msgstr "" - -#: admin/woocommerce-admin-status.php:379 -#@ woocommerce -msgid "Product Types" -msgstr "" - -#: admin/woocommerce-admin-status.php:392 -#@ woocommerce -msgid "Templates" -msgstr "" - -#: admin/woocommerce-admin-status.php:398 -#@ woocommerce -msgid "Template Overrides" -msgstr "" - -#: admin/woocommerce-admin-status.php:416 -#@ woocommerce -msgid "No core overrides present in theme." -msgstr "" - -#: admin/woocommerce-admin-status.php:510 -#@ woocommerce -msgid "WC Transients" -msgstr "" - -#: admin/woocommerce-admin-status.php:511 -#@ woocommerce -msgid "Clear transients" -msgstr "" - -#: admin/woocommerce-admin-status.php:512 -#@ woocommerce -msgid "This tool will clear the product/shop transients cache." -msgstr "" - -#: admin/woocommerce-admin-status.php:515 -#@ woocommerce -msgid "Expired Transients" -msgstr "" - -#: admin/woocommerce-admin-status.php:516 -#@ woocommerce -msgid "Clear expired transients" -msgstr "" - -#: admin/woocommerce-admin-status.php:517 -#@ woocommerce -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "" - -#: admin/woocommerce-admin-status.php:520 -#@ woocommerce -msgid "Term counts" -msgstr "" - -#: admin/woocommerce-admin-status.php:521 -#@ woocommerce -msgid "Recount terms" -msgstr "" - -#: admin/woocommerce-admin-status.php:522 -#@ woocommerce -msgid "This tool will recount product terms - useful when changing your settings in a way which hides products from the catalog." -msgstr "" - -#: admin/woocommerce-admin-status.php:525 -#@ woocommerce -msgid "Capabilities" -msgstr "" - -#: admin/woocommerce-admin-status.php:526 -#@ woocommerce -msgid "Reset capabilities" -msgstr "" - -#: admin/woocommerce-admin-status.php:527 -#@ woocommerce -msgid "This tool will reset the admin, customer and shop_manager roles to default. Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "" - -#: admin/woocommerce-admin-status.php:537 -#@ woocommerce -msgid "Product Transients Cleared" -msgstr "" - -#: admin/woocommerce-admin-status.php:578 -#, php-format -#@ woocommerce -msgid "%d Transients Rows Cleared" -msgstr "" - -#: admin/woocommerce-admin-status.php:586 -#@ woocommerce -msgid "Roles successfully reset" -msgstr "" - -#: admin/woocommerce-admin-status.php:598 -#@ woocommerce -msgid "Terms successfully recounted" -msgstr "" - -#: admin/woocommerce-admin-status.php:607 -#, php-format -#@ woocommerce -msgid "There was an error calling %s::%s" -msgstr "" - -#: admin/woocommerce-admin-status.php:610 -#, php-format -#@ woocommerce -msgid "There was an error calling %s" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:25 -#: admin/woocommerce-admin-taxonomies.php:118 -#@ woocommerce -msgid "Display type" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:29 -#: admin/woocommerce-admin-taxonomies.php:123 -#@ woocommerce -msgid "Subcategories" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:30 -#: admin/woocommerce-admin-taxonomies.php:124 -#@ woocommerce -msgid "Both" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:34 -#: admin/woocommerce-admin-taxonomies.php:129 -#@ woocommerce -msgid "Thumbnail" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:38 -#: admin/woocommerce-admin-taxonomies.php:134 -#@ woocommerce -msgid "Upload/Add image" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:39 -#: admin/woocommerce-admin-taxonomies.php:135 -#@ woocommerce -msgid "Remove image" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:64 -#: admin/woocommerce-admin-taxonomies.php:156 -#@ woocommerce -msgid "Use image" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:222 -#@ woocommerce -msgid "Product categories for your store can be managed here. To change the order of categories on the front-end you can drag and drop to sort them. To see more categories listed click the \"screen options\" link at the top of the page." -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:237 -#@ woocommerce -msgid "Shipping classes can be used to group products of similar type. These groups can then be used by certain shipping methods to provide different rates to different products." -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:365 -#@ woocommerce -msgid "Configure shipping class" -msgstr "" - -#: admin/woocommerce-admin-users.php:28 -#@ woocommerce -msgid "Paying Customer?" -msgstr "" - -#: admin/woocommerce-admin-users.php:29 -#@ woocommerce -msgid "Completed Orders" -msgstr "" - -#: admin/woocommerce-admin-users.php:144 -#@ woocommerce -msgid "Customer Billing Address" -msgstr "" - -#: admin/woocommerce-admin-users.php:147 -#: admin/woocommerce-admin-users.php:196 -#@ woocommerce -msgid "First name" -msgstr "" - -#: admin/woocommerce-admin-users.php:151 -#: admin/woocommerce-admin-users.php:200 -#@ woocommerce -msgid "Last name" -msgstr "" - -#: admin/woocommerce-admin-users.php:176 -#@ woocommerce -msgid "Country or state code" -msgstr "" - -#: admin/woocommerce-admin-users.php:180 -#: admin/woocommerce-admin-users.php:229 -#@ woocommerce -msgid "2 letter Country code" -msgstr "" - -#: admin/woocommerce-admin-users.php:183 -#@ woocommerce -msgid "Telephone" -msgstr "" - -#: admin/woocommerce-admin-users.php:193 -#@ woocommerce -msgid "Customer Shipping Address" -msgstr "" - -#: admin/woocommerce-admin-users.php:225 -#@ woocommerce -msgid "State/County or state code" -msgstr "" - -#: classes/abstracts/abstract-wc-product.php:33 -#@ woocommerce -msgid "The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class directly." -msgstr "" - -#: classes/class-wc-countries.php:58 -#@ woocommerce -msgid "Belau" -msgstr "" - -#: classes/class-wc-coupon.php:420 -#@ woocommerce -msgid "Coupon code applied successfully." -msgstr "" - -#: classes/class-wc-coupon.php:441 -#@ woocommerce -msgid "Coupon is not valid." -msgstr "" - -#: classes/class-wc-coupon.php:453 -#@ woocommerce -msgid "Coupon code already applied!" -msgstr "" - -#: classes/class-wc-coupon.php:456 -#, php-format -#@ woocommerce -msgid "Sorry, coupon \"%s\" has already been applied and cannot be used in conjunction with other coupons." -msgstr "" - -#: classes/class-wc-coupon.php:471 -#@ woocommerce -msgid "Sorry, this coupon is not valid for sale items." -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:97 -#: classes/gateways/cod/class-wc-gateway-cod.php:103 -#@ woocommerce -msgid "Pay with cash upon delivery." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:148 -#@ woocommerce -msgid "Please enter a prefix for your invoice numbers. If you use your PayPal account for multiple stores ensure this prefix is unique as PayPal will not allow orders with the same invoice number." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:165 -#@ woocommerce -msgid "Optional" -msgstr "" - -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:23 -#@ woocommerce -msgid "Increase your social media exposure by 10 percent! ShareYourCart helps you get more customers by motivating satisfied customers to talk with their friends about your products. For help with ShareYourCart view the documentation." -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:176 -#@ woocommerce -msgid "Option Name|Cost|Per-order (yes or no)" -msgstr "" - -#: i18n/states/HU.php:13 -#@ woocommerce -msgid "Bács-Kiskun" -msgstr "" - -#: i18n/states/HU.php:14 -#@ woocommerce -msgid "Békés" -msgstr "" - -#: i18n/states/HU.php:15 -#@ woocommerce -msgid "Baranya" -msgstr "" - -#: i18n/states/HU.php:16 -#@ woocommerce -msgid "Borsod-Abaúj-Zemplén" -msgstr "" - -#: i18n/states/HU.php:17 -#@ woocommerce -msgid "Budapest" -msgstr "" - -#: i18n/states/HU.php:18 -#@ woocommerce -msgid "Csongrád" -msgstr "" - -#: i18n/states/HU.php:19 -#@ woocommerce -msgid "Fejér" -msgstr "" - -#: i18n/states/HU.php:20 -#@ woocommerce -msgid "Győr-Moson-Sopron" -msgstr "" - -#: i18n/states/HU.php:21 -#@ woocommerce -msgid "Hajdú-Bihar" -msgstr "" - -#: i18n/states/HU.php:22 -#@ woocommerce -msgid "Heves" -msgstr "" - -#: i18n/states/HU.php:23 -#@ woocommerce -msgid "Jász-Nagykun-Szolnok" -msgstr "" - -#: i18n/states/HU.php:24 -#@ woocommerce -msgid "Komárom-Esztergom" -msgstr "" - -#: i18n/states/HU.php:25 -#@ woocommerce -msgid "Nógrád" -msgstr "" - -#: i18n/states/HU.php:26 -#@ woocommerce -msgid "Pest" -msgstr "" - -#: i18n/states/HU.php:27 -#@ woocommerce -msgid "Somogy" -msgstr "" - -#: i18n/states/HU.php:28 -#@ woocommerce -msgid "Szabolcs-Szatmár-Bereg" -msgstr "" - -#: i18n/states/HU.php:29 -#@ woocommerce -msgid "Tolna" -msgstr "" - -#: i18n/states/HU.php:30 -#@ woocommerce -msgid "Vas" -msgstr "" - -#: i18n/states/HU.php:31 -#@ woocommerce -msgid "Veszprém" -msgstr "" - -#: i18n/states/HU.php:32 -#@ woocommerce -msgid "Zala" -msgstr "" - -#: i18n/states/ID.php:13 -#@ woocommerce -msgid "Daerah Istimewa Aceh" -msgstr "" - -#: i18n/states/ID.php:14 -#@ woocommerce -msgid "Sumatera Utara" -msgstr "" - -#: i18n/states/ID.php:15 -#@ woocommerce -msgid "Sumatera Barat" -msgstr "" - -#: i18n/states/ID.php:16 -#@ woocommerce -msgid "Riau" -msgstr "" - -#: i18n/states/ID.php:17 -#@ woocommerce -msgid "Kepulauan Riau" -msgstr "" - -#: i18n/states/ID.php:18 -#@ woocommerce -msgid "Jambi" -msgstr "" - -#: i18n/states/ID.php:19 -#@ woocommerce -msgid "Sumatera Selatan" -msgstr "" - -#: i18n/states/ID.php:20 -#@ woocommerce -msgid "Bangka Belitung" -msgstr "" - -#: i18n/states/ID.php:21 -#@ woocommerce -msgid "Bengkulu" -msgstr "" - -#: i18n/states/ID.php:22 -#@ woocommerce -msgid "Lampung" -msgstr "" - -#: i18n/states/ID.php:23 -#@ woocommerce -msgid "DKI Jakarta" -msgstr "" - -#: i18n/states/ID.php:24 -#@ woocommerce -msgid "Jawa Barat" -msgstr "" - -#: i18n/states/ID.php:25 -#@ woocommerce -msgid "Banten" -msgstr "" - -#: i18n/states/ID.php:26 -#@ woocommerce -msgid "Jawa Tengah" -msgstr "" - -#: i18n/states/ID.php:27 -#@ woocommerce -msgid "Jawa Timur" -msgstr "" - -#: i18n/states/ID.php:28 -#@ woocommerce -msgid "Daerah Istimewa Yogyakarta" -msgstr "" - -#: i18n/states/ID.php:29 -#@ woocommerce -msgid "Bali" -msgstr "" - -#: i18n/states/ID.php:30 -#@ woocommerce -msgid "Nusa Tenggara Barat" -msgstr "" - -#: i18n/states/ID.php:31 -#@ woocommerce -msgid "Nusa Tenggara Timur" -msgstr "" - -#: i18n/states/ID.php:32 -#@ woocommerce -msgid "Kalimantan Barat" -msgstr "" - -#: i18n/states/ID.php:33 -#@ woocommerce -msgid "Kalimantan Tengah" -msgstr "" - -#: i18n/states/ID.php:34 -#@ woocommerce -msgid "Kalimantan Timur" -msgstr "" - -#: i18n/states/ID.php:35 -#@ woocommerce -msgid "Kalimantan Selatan" -msgstr "" - -#: i18n/states/ID.php:36 -#@ woocommerce -msgid "Kalimantan Utara" -msgstr "" - -#: i18n/states/ID.php:37 -#@ woocommerce -msgid "Sulawesi Utara" -msgstr "" - -#: i18n/states/ID.php:38 -#@ woocommerce -msgid "Sulawesi Tengah" -msgstr "" - -#: i18n/states/ID.php:39 -#@ woocommerce -msgid "Sulawesi Tenggara" -msgstr "" - -#: i18n/states/ID.php:40 -#@ woocommerce -msgid "Sulawesi Barat" -msgstr "" - -#: i18n/states/ID.php:41 -#@ woocommerce -msgid "Sulawesi Selatan" -msgstr "" - -#: i18n/states/ID.php:42 -#@ woocommerce -msgid "Gorontalo" -msgstr "" - -#: i18n/states/ID.php:43 -#@ woocommerce -msgid "Maluku" -msgstr "" - -#: i18n/states/ID.php:44 -#@ woocommerce -msgid "Maluku Utara" -msgstr "" - -#: i18n/states/ID.php:45 -#@ woocommerce -msgid "Papua" -msgstr "" - -#: i18n/states/ID.php:46 -#@ woocommerce -msgid "Papua Barat" -msgstr "" - -#: i18n/states/US.php:72 -#@ woocommerce -msgid "US Virgin Islands" -msgstr "" - -#: templates/checkout/form-login.php:14 -#@ woocommerce -msgid "Returning customer?" -msgstr "" - -#: templates/loop/orderby.php:22 -#@ woocommerce -msgid "Sort by popularity" -msgstr "" - -#: templates/loop/orderby.php:23 -#@ woocommerce -msgid "Sort by average rating" -msgstr "" - -#: templates/loop/orderby.php:24 -#@ woocommerce -msgid "Sort by newness" -msgstr "" - -#: templates/loop/orderby.php:25 -#@ woocommerce -msgid "Sort by price: low to high" -msgstr "" - -#: templates/loop/orderby.php:26 -#@ woocommerce -msgid "Sort by price: high to low" -msgstr "" - -#: templates/myaccount/my-orders.php:62 -#, php-format -#@ woocommerce -msgid "%s for %s item" -msgid_plural "%s for %s items" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: templates/single-product-reviews.php:78 -#@ woocommerce -msgid "Add Your Review" -msgstr "" - -#: woocommerce-ajax.php:1172 -#@ woocommerce -msgid "No products had their stock reduced - they may not have stock management enabled." -msgstr "" - -#: woocommerce-ajax.php:1223 -#@ woocommerce -msgid "No products had their stock increased - they may not have stock management enabled." -msgstr "" - -#: woocommerce-core-functions.php:268 -#, php-format -#@ woocommerce -msgid "%s – %s%s" -msgstr "" - -#: woocommerce-core-functions.php:675 -#@ woocommerce -msgid "Australian Dollars" -msgstr "" - -#: woocommerce-core-functions.php:676 -#@ woocommerce -msgid "Brazilian Real" -msgstr "" - -#: woocommerce-core-functions.php:677 -#@ woocommerce -msgid "Canadian Dollars" -msgstr "" - -#: woocommerce-core-functions.php:678 -#@ woocommerce -msgid "Chinese Yuan" -msgstr "" - -#: woocommerce-core-functions.php:679 -#@ woocommerce -msgid "Czech Koruna" -msgstr "" - -#: woocommerce-core-functions.php:680 -#@ woocommerce -msgid "Danish Krone" -msgstr "" - -#: woocommerce-core-functions.php:681 -#@ woocommerce -msgid "Euros" -msgstr "" - -#: woocommerce-core-functions.php:682 -#@ woocommerce -msgid "Hong Kong Dollar" -msgstr "" - -#: woocommerce-core-functions.php:683 -#@ woocommerce -msgid "Hungarian Forint" -msgstr "" - -#: woocommerce-core-functions.php:684 -#@ woocommerce -msgid "Indonesia Rupiah" -msgstr "" - -#: woocommerce-core-functions.php:685 -#@ woocommerce -msgid "Israeli Shekel" -msgstr "" - -#: woocommerce-core-functions.php:686 -#@ woocommerce -msgid "Japanese Yen" -msgstr "" - -#: woocommerce-core-functions.php:687 -#@ woocommerce -msgid "Malaysian Ringgits" -msgstr "" - -#: woocommerce-core-functions.php:688 -#@ woocommerce -msgid "Mexican Peso" -msgstr "" - -#: woocommerce-core-functions.php:689 -#@ woocommerce -msgid "Norwegian Krone" -msgstr "" - -#: woocommerce-core-functions.php:690 -#@ woocommerce -msgid "New Zealand Dollar" -msgstr "" - -#: woocommerce-core-functions.php:691 -#@ woocommerce -msgid "Philippine Pesos" -msgstr "" - -#: woocommerce-core-functions.php:692 -#@ woocommerce -msgid "Polish Zloty" -msgstr "" - -#: woocommerce-core-functions.php:693 -#@ woocommerce -msgid "Pounds Sterling" -msgstr "" - -#: woocommerce-core-functions.php:694 -#@ woocommerce -msgid "Romanian Leu" -msgstr "" - -#: woocommerce-core-functions.php:695 -#@ woocommerce -msgid "Singapore Dollar" -msgstr "" - -#: woocommerce-core-functions.php:696 -#@ woocommerce -msgid "South African rand" -msgstr "" - -#: woocommerce-core-functions.php:697 -#@ woocommerce -msgid "Swedish Krona" -msgstr "" - -#: woocommerce-core-functions.php:698 -#@ woocommerce -msgid "Swiss Franc" -msgstr "" - -#: woocommerce-core-functions.php:699 -#@ woocommerce -msgid "Taiwan New Dollars" -msgstr "" - -#: woocommerce-core-functions.php:700 -#@ woocommerce -msgid "Thai Baht" -msgstr "" - -#: woocommerce-core-functions.php:701 -#@ woocommerce -msgid "Turkish Lira" -msgstr "" - -#: woocommerce-core-functions.php:702 -#@ woocommerce -msgid "US Dollars" -msgstr "" - -#: woocommerce-functions.php:996 -#@ woocommerce -msgid "No file defined" -msgstr "" - -#: woocommerce-functions.php:1575 -#@ woocommerce -msgid "Password changed successfully." -msgstr "" - -#: woocommerce-functions.php:1651 -#@ woocommerce -msgid "Address changed successfully." -msgstr "" - -#: woocommerce-template.php:764 -#, php-format -#@ woocommerce -msgid "Reviews (%d)" -msgstr "" - -#. translators: plugin header field 'PluginURI' -#: woocommerce.php:0 -#@ woocommerce -msgid "http://www.woothemes.com/woocommerce/" -msgstr "" - -#. translators: plugin header field 'Description' -#: woocommerce.php:0 -#@ woocommerce -msgid "An e-commerce toolkit that helps you sell anything. Beautifully." -msgstr "" - -#. translators: plugin header field 'Author' -#: woocommerce.php:0 -#@ woocommerce -msgid "WooThemes" -msgstr "" - -#. translators: plugin header field 'AuthorURI' -#: woocommerce.php:0 -#@ woocommerce -msgid "http://woothemes.com" -msgstr "" - -#. translators: plugin header field 'Version' -#: woocommerce.php:0 -#@ woocommerce -msgid "2.0.0" -msgstr "" - diff --git a/i18n/languages/woocommerce-pt_BR.mo b/i18n/languages/woocommerce-pt_BR.mo deleted file mode 100644 index 23db75bd822..00000000000 Binary files a/i18n/languages/woocommerce-pt_BR.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-pt_BR.po b/i18n/languages/woocommerce-pt_BR.po deleted file mode 100644 index b3b278f7653..00000000000 --- a/i18n/languages/woocommerce-pt_BR.po +++ /dev/null @@ -1,13631 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce v2.1-bleeding\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2013-06-10 13:56:11+0000\n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: CSL v1.x\n" -"X-Poedit-Language: \n" -"X-Poedit-Country: \n" -"X-Poedit-SourceCharset: utf-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n" -"X-Poedit-Basepath: \n" -"X-Poedit-Bookmarks: \n" -"X-Poedit-SearchPath-0: .\n" -"X-Textdomain-Support: yes" - -#: admin/post-types/writepanels/writepanel-product_data.php:85 -#: admin/woocommerce-admin-attributes.php:299 -#: admin/woocommerce-admin-init.php:66 -#@ woocommerce -msgid "Attributes" -msgstr "Atributos" - -#: admin/woocommerce-admin-attributes.php:227 -#@ woocommerce -msgid "Edit Attribute" -msgstr "Editar atributo" - -#: admin/woocommerce-admin-attributes.php:255 -#: admin/woocommerce-admin-attributes.php:388 -#@ woocommerce -msgid "Select" -msgstr "Selecionar" - -#: admin/woocommerce-admin-attributes.php:256 -#: admin/woocommerce-admin-attributes.php:389 -#@ woocommerce -msgid "Text" -msgstr "Texto" - -#: admin/post-types/product.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:376 -#: admin/post-types/writepanels/writepanel-product_data.php:470 -#: admin/woocommerce-admin-attributes.php:233 -#: admin/woocommerce-admin-attributes.php:269 -#: admin/woocommerce-admin-attributes.php:307 -#: admin/woocommerce-admin-attributes.php:330 -#: admin/woocommerce-admin-attributes.php:374 -#: admin/woocommerce-admin-attributes.php:399 -#: admin/woocommerce-admin-init.php:471 -#: classes/widgets/class-wc-widget-product-categories.php:39 -#: templates/single-product-reviews.php:84 -#: woocommerce-ajax.php:1173 -#@ woocommerce -msgid "Name" -msgstr "Nome" - -#: admin/post-types/product.php:101 -#: admin/woocommerce-admin-attributes.php:251 -#: admin/woocommerce-admin-attributes.php:309 -#: admin/woocommerce-admin-attributes.php:386 -#@ woocommerce -msgid "Type" -msgstr "Tipo" - -#: admin/woocommerce-admin-attributes.php:311 -#@ woocommerce -msgid "Terms" -msgstr "Termos" - -#: admin/post-types/product.php:151 -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#: admin/post-types/writepanels/writepanel-order_data.php:387 -#: admin/post-types/writepanels/writepanel-product_data.php:1061 -#: admin/woocommerce-admin-attributes.php:323 -#: admin/woocommerce-admin-customers.php:163 -#: classes/class-wc-post-types.php:241 -#: classes/class-wc-post-types.php:293 -#: classes/class-wc-post-types.php:331 -#: templates/myaccount/my-address.php:45 -#@ default -#@ woocommerce -msgid "Edit" -msgstr "Editar" - -#: admin/post-types/writepanels/writepanel-product_images.php:43 -#: admin/post-types/writepanels/writepanel-product_images.php:103 -#: admin/woocommerce-admin-attributes.php:323 -#@ woocommerce -msgid "Delete" -msgstr "Excluir" - -#: admin/woocommerce-admin-attributes.php:356 -#@ woocommerce -msgid "Configure terms" -msgstr "Configurar termos" - -#: admin/woocommerce-admin-attributes.php:360 -#@ woocommerce -msgid "No attributes currently exist." -msgstr "Não existem atributos definidos." - -#: admin/woocommerce-admin-attributes.php:370 -#@ woocommerce -msgid "Add New Attribute" -msgstr "Adicionar Novo Atributo" - -#: admin/woocommerce-admin-attributes.php:371 -#@ woocommerce -msgid "Attributes let you define extra product data, such as size or colour. You can use these attributes in the shop sidebar using the \"layered nav\" widgets. Please note: you cannot rename an attribute later on." -msgstr "Atributos permitem que você defina os dados extra do produto, como tamanho ou cor. Você pode usar estes atributos na barra lateral da loja usando o \"camadas de navegação\" widgets. Atenção: não é possível renomear um atributo mais tarde." - -#: admin/woocommerce-admin-attributes.php:259 -#: admin/woocommerce-admin-attributes.php:392 -#@ woocommerce -msgid "Determines how you select attributes for products. Under admin panel -> products -> product data -> attributes -> values, Text allows manual entry whereas select allows pre-configured terms in a drop-down list." -msgstr "Determina como você seleciona atributos para os produtos. Texto permite fazer entrada manual através da página do produto, ao passo que termos Select pode ser definido a partir desta seção. Se você planeja usar um atributo para variações use select." - -#: admin/woocommerce-admin-attributes.php:405 -#@ woocommerce -msgid "Add Attribute" -msgstr "Adicionar atributo" - -#: admin/woocommerce-admin-attributes.php:416 -#@ woocommerce -msgid "Are you sure you want to delete this attribute?" -msgstr "Tem certeza de que deseja excluir este atributo?" - -#: admin/woocommerce-admin-dashboard.php:78 -#@ woocommerce -msgid "Shop Content" -msgstr "Conteúdo da loja" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:74 -#: admin/woocommerce-admin-taxonomies.php:28 -#: admin/woocommerce-admin-taxonomies.php:122 -#: classes/class-wc-post-types.php:236 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:273 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:293 -#: classes/widgets/class-wc-widget-products.php:27 -#@ woocommerce -msgid "Products" -msgstr "Produtos" - -#: classes/class-wc-post-types.php:59 -#: classes/class-wc-post-types.php:61 -#@ woocommerce -msgid "Product Categories" -msgstr "Categorias de produtos" - -#: classes/class-wc-post-types.php:94 -#: classes/class-wc-post-types.php:96 -#: classes/widgets/class-wc-widget-product-tag-cloud.php:27 -#@ woocommerce -msgid "Product Tags" -msgstr "Tags do produto" - -#: admin/woocommerce-admin-content.php:68 -#: admin/woocommerce-admin-dashboard.php:142 -#: classes/class-wc-post-types.php:289 -#@ woocommerce -msgid "Orders" -msgstr "Pedidos" - -#: admin/woocommerce-admin-dashboard.php:148 -#@ woocommerce -msgid "Pending" -msgstr "Pendente" - -#: admin/woocommerce-admin-dashboard.php:162 -#@ woocommerce -msgid "On-Hold" -msgstr "Aguardando" - -#: admin/post-types/shop_order.php:158 -#: admin/woocommerce-admin-dashboard.php:176 -#@ woocommerce -msgid "Processing" -msgstr "Processando" - -#: admin/woocommerce-admin-dashboard.php:190 -#@ woocommerce -msgid "Completed" -msgstr "Concluído" - -#: admin/woocommerce-admin-dashboard.php:40 -#@ woocommerce -msgid "Monthly Sales" -msgstr "Vendas mensais" - -#: admin/woocommerce-admin-dashboard.php:239 -#@ woocommerce -msgid "item" -msgid_plural "items" -msgstr[0] "Item" -msgstr[1] "Itens" - -#: admin/woocommerce-admin-dashboard.php:279 -#: classes/abstracts/abstract-wc-product.php:965 -#: templates/single-product/review.php:27 -#: templates/single-product-reviews.php:28 -#@ woocommerce -msgid "out of 5" -msgstr "de 5" - -#: admin/woocommerce-admin-dashboard.php:287 -#@ woocommerce -msgid "There are no product reviews yet." -msgstr "Este produto ainda não recebeu opiniões." - -#. translators: plugin header field 'Name' -#: admin/woocommerce-admin-content.php:83 -#: admin/woocommerce-admin-init.php:62 -#: admin/woocommerce-admin-init.php:71 -#: admin/woocommerce-admin-init.php:439 -#: classes/class-wc-order.php:1219 -#: classes/class-wc-order.php:1221 -#: classes/class-wc-order.php:1224 -#: woocommerce.php:0 -#@ woocommerce -msgid "WooCommerce" -msgstr "WooCommerce" - -#: admin/includes/welcome.php:153 -#: admin/woocommerce-admin-content.php:41 -#: admin/woocommerce-admin-init.php:89 -#: admin/woocommerce-admin-status.php:288 -#: classes/abstracts/abstract-wc-email.php:560 -#: classes/abstracts/abstract-wc-integration.php:30 -#: classes/abstracts/abstract-wc-settings-api.php:39 -#: woocommerce.php:170 -#@ woocommerce -msgid "Settings" -msgstr "Configurações" - -#: admin/woocommerce-admin-content.php:57 -#: admin/woocommerce-admin-init.php:64 -#@ woocommerce -msgid "Reports" -msgstr "Relatórios" - -#: admin/woocommerce-admin-init.php:481 -#@ woocommerce -msgid "Copy billing information to shipping information? This will remove any currently entered shipping information." -msgstr "Copiar Informações de faturamento para o endereço de entrega? Isto irá remover todas as informações de endereço de entrega existentes atualmente." - -#: admin/post-types/writepanels/writepanel-product_data.php:386 -#@ woocommerce -msgid "Select terms" -msgstr "Selecione itens" - -#: admin/post-types/product.php:519 -#, php-format -#@ woocommerce -msgid "[%s with SKU of %s]" -msgstr "[%s com o código do produto %s]" - -#: admin/post-types/product.php:525 -#, php-format -#@ woocommerce -msgid "[%s with ID of %d]" -msgstr "[%s com ID do %d]" - -#: admin/includes/duplicate_product.php:23 -#@ woocommerce -msgid "No product to duplicate has been supplied!" -msgstr "Não foi informado um produto para ser duplicado!" - -#: admin/includes/duplicate_product.php:43 -#@ woocommerce -msgid "Product creation failed, could not find original product:" -msgstr "Falha ao tentar criar o produto, não foi possível encontrar o produto original:" - -#: admin/post-types/product.php:31 -#@ woocommerce -msgid "Make a duplicate from this product" -msgstr "Duplicar este produto" - -#: admin/post-types/product.php:32 -#@ woocommerce -msgid "Duplicate" -msgstr "Duplicado" - -#: admin/post-types/product.php:61 -#@ woocommerce -msgid "Copy to a new draft" -msgstr "Copiar para rascunho" - -#: admin/woocommerce-admin-install.php:205 -#@ woocommerce -msgctxt "page_slug" -msgid "shop" -msgstr "loja" - -#: admin/woocommerce-admin-install.php:206 -#@ woocommerce -msgid "Shop" -msgstr "Loja" - -#: admin/woocommerce-admin-install.php:210 -#@ woocommerce -msgctxt "page_slug" -msgid "cart" -msgstr "carrinho" - -#: admin/woocommerce-admin-install.php:211 -#: admin/woocommerce-admin-status.php:313 -#: assets/js/admin/editor_plugin_lang.php:15 -#: classes/widgets/class-wc-widget-cart.php:29 -#: classes/widgets/class-wc-widget-cart.php:57 -#@ woocommerce -msgid "Cart" -msgstr "Carrinho" - -#: admin/woocommerce-admin-install.php:215 -#@ woocommerce -msgctxt "page_slug" -msgid "checkout" -msgstr "finalizar-compra" - -#: admin/settings/settings-init.php:104 -#: admin/woocommerce-admin-install.php:216 -#: admin/woocommerce-admin-status.php:317 -#: assets/js/admin/editor_plugin_lang.php:16 -#@ woocommerce -msgid "Checkout" -msgstr "Finalizar compras" - -#: admin/woocommerce-admin-install.php:220 -#@ woocommerce -msgctxt "page_slug" -msgid "my-account" -msgstr "minha-conta" - -#: admin/woocommerce-admin-install.php:221 -#: admin/woocommerce-admin-status.php:321 -#: assets/js/admin/editor_plugin_lang.php:18 -#: templates/checkout/thankyou.php:30 -#@ woocommerce -msgid "My Account" -msgstr "Minha conta" - -#: admin/woocommerce-admin-install.php:231 -#@ woocommerce -msgctxt "page_slug" -msgid "edit-address" -msgstr "editar-endereco" - -#: admin/woocommerce-admin-install.php:232 -#@ woocommerce -msgid "Edit My Address" -msgstr "Alterar meu endereço" - -#: classes/class-wc-post-types.php:296 -#: classes/class-wc-post-types.php:297 -#@ woocommerce -msgid "View Order" -msgstr "Visualizar pedido" - -#: admin/woocommerce-admin-functions.php:192 -#@ woocommerce -msgid "Order Received" -msgstr "Pedido recebido" - -#: admin/post-types/shop_coupon.php:25 -#@ woocommerce -msgid "Code" -msgstr "Código" - -#: admin/post-types/shop_coupon.php:26 -#@ woocommerce -msgid "Coupon type" -msgstr "Tipo de cupom" - -#: admin/post-types/shop_coupon.php:27 -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -#@ woocommerce -msgid "Coupon amount" -msgstr "Quantidade de cupom" - -#: admin/post-types/shop_coupon.php:29 -#@ woocommerce -msgid "Product IDs" -msgstr "ID do Produto" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:150 -#@ woocommerce -msgid "Usage limit" -msgstr "Limite de uso" - -#: admin/post-types/shop_coupon.php:31 -#: admin/post-types/writepanels/writepanel-coupon_data.php:156 -#@ woocommerce -msgid "Expiry date" -msgstr "Data de validade" - -#: classes/class-wc-post-types.php:249 -#@ woocommerce -msgid "Parent Product" -msgstr "Produto principal" - -#: admin/post-types/product.php:86 -#: admin/woocommerce-admin-taxonomies.php:297 -#@ woocommerce -msgid "Image" -msgstr "Imagem" - -#: admin/post-types/product.php:98 -#@ woocommerce -msgid "Categories" -msgstr "Categorias" - -#: admin/post-types/product.php:99 -#@ woocommerce -msgid "Tags" -msgstr "Tags" - -#: admin/post-types/product.php:100 -#: admin/post-types/product.php:631 -#: admin/post-types/product.php:905 -#: admin/post-types/writepanels/writepanel-product_data.php:1058 -#: admin/woocommerce-admin-init.php:484 -#@ woocommerce -msgid "Featured" -msgstr "Destaque" - -#: admin/post-types/product.php:96 -#: admin/post-types/product.php:567 -#: admin/post-types/product.php:788 -#: admin/woocommerce-admin-functions.php:204 -#: classes/widgets/class-wc-widget-products.php:54 -#: templates/cart/cart.php:29 -#: templates/emails/admin-new-order.php:24 -#: templates/emails/customer-completed-order.php:25 -#: templates/emails/customer-invoice.php:29 -#: templates/emails/customer-note.php:29 -#: templates/emails/customer-processing-order.php:25 -#@ woocommerce -msgid "Price" -msgstr "Preço" - -#: admin/post-types/product.php:102 -#: admin/post-types/shop_order.php:50 -#: classes/widgets/class-wc-widget-products.php:53 -#: templates/myaccount/my-orders.php:33 -#@ woocommerce -msgid "Date" -msgstr "Data" - -#: admin/post-types/shop_order.php:131 -#@ woocommerce -msgid "Unpublished" -msgstr "Não publicado" - -#: admin/post-types/shop_order.php:133 -#@ woocommerce -msgid "Y/m/d g:i:s A" -msgstr "Y/m/d g:i:s A" - -#: admin/post-types/shop_order.php:139 -#, php-format -#@ woocommerce -msgid "%s ago" -msgstr "%s atras" - -#: admin/post-types/shop_order.php:141 -#@ woocommerce -msgid "Y/m/d" -msgstr "Y/m/d" - -#: admin/post-types/shop_order.php:43 -#: admin/settings/settings-payment-gateways.php:31 -#: admin/settings/settings-shipping-methods.php:31 -#: templates/myaccount/my-orders.php:34 -#@ woocommerce -msgid "Status" -msgstr "Status" - -#: admin/post-types/shop_order.php:44 -#: classes/class-wc-post-types.php:290 -#: classes/widgets/class-wc-widget-products.php:62 -#: templates/myaccount/my-orders.php:32 -#@ woocommerce -msgid "Order" -msgstr "Pedido" - -#: admin/post-types/shop_order.php:45 -#@ woocommerce -msgid "Billing" -msgstr "Faturamento" - -#: admin/post-types/shop_order.php:46 -#: admin/post-types/writepanels/writepanel-order_data.php:539 -#: admin/post-types/writepanels/writepanel-product_data.php:81 -#: admin/settings/settings-tax-rates.php:52 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-content.php:49 -#: admin/woocommerce-admin-settings.php:187 -#@ woocommerce -msgid "Shipping" -msgstr "Entrega" - -#: admin/post-types/shop_order.php:47 -#: templates/cart/totals.php:92 -#: templates/checkout/review-order.php:91 -#@ woocommerce -msgid "Order Total" -msgstr "Total de pedido" - -#: admin/post-types/shop_order.php:95 -#: admin/post-types/writepanels/writepanel-order_data.php:93 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:120 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:180 -#: woocommerce-ajax.php:1654 -#@ woocommerce -msgid "Guest" -msgstr "Visitante" - -#: admin/post-types/shop_order.php:282 -#@ woocommerce -msgid "Show all statuses" -msgstr "Mostrar todos os status" - -#: admin/post-types/shop_order.php:301 -#: admin/post-types/shop_order.php:326 -#@ woocommerce -msgid "Show all customers" -msgstr "Mostrar todos os clientes" - -#: woocommerce-ajax.php:256 -#: woocommerce-ajax.php:290 -#: woocommerce-ajax.php:313 -#@ woocommerce -msgid "You do not have sufficient permissions to access this page." -msgstr "Você não tem permissão suficiente para acessar esta página." - -#: woocommerce-ajax.php:258 -#: woocommerce-ajax.php:291 -#: woocommerce-ajax.php:314 -#@ woocommerce -msgid "You have taken too long. Please go back and retry." -msgstr "Você ficou muito tempo sem atividade, por segurança sua sessão foi encerrada. Por favor, tente novamente." - -#: admin/woocommerce-admin-content.php:26 -#: admin/woocommerce-admin-reports.php:26 -#: admin/woocommerce-admin-reports.php:66 -#: admin/woocommerce-admin-reports.php:82 -#: admin/woocommerce-admin-reports.php:93 -#@ woocommerce -msgid "Overview" -msgstr "Visão geral" - -#: admin/woocommerce-admin-reports.php:42 -#@ woocommerce -msgid "Product Sales" -msgstr "Venda de produtos" - -#: admin/woocommerce-admin-reports.php:47 -#@ woocommerce -msgid "Top sellers" -msgstr "Mais vendidos" - -#: admin/woocommerce-admin-reports.php:52 -#@ woocommerce -msgid "Top earners" -msgstr "Top consumidores" - -#: admin/woocommerce-admin-reports.php:380 -#@ woocommerce -msgid "Total sales" -msgstr "Total de vendas" - -#: admin/woocommerce-admin-reports.php:382 -#: admin/woocommerce-admin-reports.php:388 -#: admin/woocommerce-admin-reports.php:394 -#: admin/woocommerce-admin-reports.php:400 -#: admin/woocommerce-admin-reports.php:406 -#: admin/woocommerce-admin-reports.php:412 -#: admin/woocommerce-admin-reports.php:655 -#: admin/woocommerce-admin-reports.php:661 -#: admin/woocommerce-admin-reports.php:667 -#: admin/woocommerce-admin-reports.php:673 -#: admin/woocommerce-admin-reports.php:839 -#: admin/woocommerce-admin-reports.php:845 -#: admin/woocommerce-admin-reports.php:851 -#: admin/woocommerce-admin-reports.php:857 -#: admin/woocommerce-admin-reports.php:1380 -#: admin/woocommerce-admin-reports.php:1386 -#: admin/woocommerce-admin-reports.php:1392 -#: admin/woocommerce-admin-reports.php:1826 -#: admin/woocommerce-admin-reports.php:1832 -#: admin/woocommerce-admin-reports.php:1838 -#: admin/woocommerce-admin-reports.php:1844 -#: admin/woocommerce-admin-reports.php:1850 -#: admin/woocommerce-admin-reports.php:1856 -#: admin/woocommerce-admin-reports.php:2320 -#: admin/woocommerce-admin-reports.php:2331 -#: admin/woocommerce-admin-reports.php:2342 -#@ woocommerce -msgid "n/a" -msgstr "n/a" - -#: admin/woocommerce-admin-reports.php:386 -#@ woocommerce -msgid "Total orders" -msgstr "Total de pedidos" - -#: admin/woocommerce-admin-reports.php:392 -#@ woocommerce -msgid "Average order total" -msgstr "Média total de vendas" - -#: admin/woocommerce-admin-reports.php:398 -#@ woocommerce -msgid "Average order items" -msgstr "Média de itens por pedido" - -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1372 -#@ woocommerce -msgid "From:" -msgstr "De:" - -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1372 -#@ woocommerce -msgid "To:" -msgstr "Para:" - -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:832 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1245 -#: admin/woocommerce-admin-reports.php:1372 -#: admin/woocommerce-admin-reports.php:1505 -#: admin/woocommerce-admin-reports.php:2309 -#: admin/woocommerce-admin-reports.php:2492 -#: classes/widgets/class-wc-widget-products.php:41 -#@ woocommerce -msgid "Show" -msgstr "Mostrar" - -#: admin/woocommerce-admin-reports.php:653 -#@ woocommerce -msgid "Total sales in range" -msgstr "Média total de vendas" - -#: admin/woocommerce-admin-reports.php:659 -#@ woocommerce -msgid "Total orders in range" -msgstr "Total médio de pedidos" - -#: admin/woocommerce-admin-reports.php:665 -#@ woocommerce -msgid "Average order total in range" -msgstr "Total médio de pedidos na faixa" - -#: admin/woocommerce-admin-reports.php:671 -#@ woocommerce -msgid "Average order items in range" -msgstr "Média de itens do pedido na faixa" - -#: admin/woocommerce-admin-reports.php:679 -#@ woocommerce -msgid "Sales in range" -msgstr "Faixa de pedidos" - -#: admin/woocommerce-admin-reports.php:826 -#: admin/woocommerce-admin-reports.php:2303 -#@ woocommerce -msgid "Year:" -msgstr "Ano:" - -#: admin/woocommerce-admin-reports.php:837 -#@ woocommerce -msgid "Total sales for year" -msgstr "Total de vendas do ano" - -#: admin/woocommerce-admin-reports.php:843 -#@ woocommerce -msgid "Total orders for year" -msgstr "Total de pedidos do ano" - -#: admin/woocommerce-admin-reports.php:849 -#@ woocommerce -msgid "Average order total for year" -msgstr "Média total de pedidos do ano" - -#: admin/woocommerce-admin-reports.php:855 -#@ woocommerce -msgid "Average order items for year" -msgstr "Média de itens por pedido do ano" - -#: admin/woocommerce-admin-reports.php:863 -#@ woocommerce -msgid "Monthly sales for year" -msgstr "Vendas mensais do ano" - -#: admin/woocommerce-admin-content.php:60 -#: admin/woocommerce-admin-reports.php:23 -#: admin/woocommerce-admin-reports.php:997 -#: admin/woocommerce-admin-reports.php:1095 -#: admin/woocommerce-admin-reports.php:1214 -#: classes/widgets/class-wc-widget-products.php:56 -#@ woocommerce -msgid "Sales" -msgstr "Vendas" - -#: admin/woocommerce-admin-reports.php:1011 -#@ woocommerce -msgid "Product does not exist" -msgstr "Este produto não existe" - -#: admin/woocommerce-admin-reports.php:1213 -#: admin/woocommerce-admin-reports.php:2351 -#@ woocommerce -msgid "Month" -msgstr "Mês" - -#: admin/woocommerce-admin-reports.php:1235 -#@ woocommerce -msgid "No sales :(" -msgstr "Nenhuma venda :(" - -#: admin/woocommerce-admin-reports.php:1824 -#@ woocommerce -msgid "Total customers" -msgstr "Total de clientes" - -#: admin/woocommerce-admin-reports.php:1830 -#@ woocommerce -msgid "Total customer sales" -msgstr "Total de vendas clientes" - -#: admin/woocommerce-admin-reports.php:1836 -#@ woocommerce -msgid "Total guest sales" -msgstr "Total de vendas para desconhecidos" - -#: admin/woocommerce-admin-reports.php:1842 -#@ woocommerce -msgid "Total customer orders" -msgstr "Total de pedidos para clientes" - -#: admin/woocommerce-admin-reports.php:1848 -#@ woocommerce -msgid "Total guest orders" -msgstr "Total pedidos de desconhecidos" - -#: admin/woocommerce-admin-reports.php:1854 -#@ woocommerce -msgid "Average orders per customer" -msgstr "Média de pedidos por cliente" - -#: admin/woocommerce-admin-reports.php:1862 -#@ woocommerce -msgid "Signups per day" -msgstr "Cadastros por dia" - -#: admin/woocommerce-admin-reports.php:2083 -#@ woocommerce -msgid "Low stock" -msgstr "Estoque baixo" - -#: admin/woocommerce-admin-reports.php:2111 -#@ woocommerce -msgid "No products are low in stock." -msgstr "Nenhum produto abaixo do estoque." - -#: admin/post-types/product.php:264 -#: admin/post-types/product.php:641 -#: admin/post-types/product.php:930 -#: admin/post-types/writepanels/writepanel-product_data.php:232 -#: admin/woocommerce-admin-reports.php:2119 -#: classes/abstracts/abstract-wc-product.php:576 -#: classes/abstracts/abstract-wc-product.php:586 -#: classes/abstracts/abstract-wc-product.php:590 -#@ woocommerce -msgid "Out of stock" -msgstr "Sem estoque" - -#: admin/woocommerce-admin-reports.php:2150 -#@ woocommerce -msgid "No products are out in stock." -msgstr "Nenhum produto fora do estoque." - -#: admin/post-types/product.php:601 -#: admin/post-types/product.php:879 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:89 -#: admin/post-types/writepanels/writepanel-product_data.php:287 -#: admin/woocommerce-admin-settings.php:810 -#@ woocommerce -msgid "Width" -msgstr "Largura" - -#: admin/post-types/product.php:602 -#: admin/post-types/product.php:880 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:90 -#: admin/post-types/writepanels/writepanel-product_data.php:288 -#: admin/woocommerce-admin-settings.php:812 -#@ woocommerce -msgid "Height" -msgstr "Altura" - -#: admin/woocommerce-admin-settings.php:814 -#@ woocommerce -msgid "Hard Crop" -msgstr "Forçar corte" - -#: admin/settings/settings-init.php:25 -#@ woocommerce -msgid "General Options" -msgstr "Opções Gerais" - -#: admin/settings/settings-init.php:50 -#@ woocommerce -msgid "Allowed Countries" -msgstr "Países permitidos" - -#: admin/settings/settings-init.php:51 -#@ woocommerce -msgid "These are countries that you are willing to ship to." -msgstr "Estes são os países para os quais você pode enviar produtos." - -#: admin/settings/settings-init.php:59 -#@ woocommerce -msgid "All Countries" -msgstr "Todos os países" - -#: admin/settings/settings-init.php:60 -#: admin/settings/settings-init.php:65 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:95 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:99 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:98 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:149 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:153 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:105 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:109 -#@ woocommerce -msgid "Specific Countries" -msgstr "Países específicos" - -#: classes/integrations/sharethis/class-wc-sharethis.php:63 -#@ woocommerce -msgid "ShareThis Publisher ID" -msgstr "ID do editor ShareThis" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:63 -#@ woocommerce -msgid "Google Analytics ID" -msgstr "ID do Google Analytics" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:64 -#@ woocommerce -msgid "Log into your google analytics account to find your ID. e.g. UA-XXXXX-X" -msgstr "Entre na sua conta do Google Analytics para encontrar o seu ID. por exemplo UA-XXXXX-X" - -#: admin/settings/settings-init.php:248 -#@ woocommerce -msgid "Page Setup" -msgstr "Configurar Página" - -#: admin/settings/settings-init.php:255 -#@ woocommerce -msgid "Shop Base Page" -msgstr "Página principal da loja" - -#: admin/settings/settings-init.php:267 -#@ woocommerce -msgid "If you define a \"Terms\" page the customer will be asked if they accept them when checking out." -msgstr "Se você definir uma página de \"Termos de uso\" o cliente será perguntado se ele aceita os termos antes de finalizar a compra." - -#: admin/post-types/writepanels/writepanel-product_data.php:181 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:112 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:86 -#@ woocommerce -msgid "None" -msgstr "Nenhum" - -#: admin/settings/settings-init.php:278 -#@ woocommerce -msgid "Shop Pages" -msgstr "Páginas da loja" - -#: admin/settings/settings-init.php:281 -#@ woocommerce -msgid "Cart Page" -msgstr "Página do Carrinho" - -#: admin/settings/settings-init.php:282 -#@ woocommerce -msgid "Page contents: [woocommerce_cart]" -msgstr "Conteúdo da página: [woocommerce_cart]" - -#: admin/settings/settings-init.php:292 -#@ woocommerce -msgid "Checkout Page" -msgstr "Página de Finalizar Compra" - -#: admin/settings/settings-init.php:293 -#@ woocommerce -msgid "Page contents: [woocommerce_checkout]" -msgstr "Conteúdo da página: [woocommerce_checkout]" - -#: admin/settings/settings-init.php:303 -#@ woocommerce -msgid "My Account Page" -msgstr "Página Minha Conta" - -#: admin/settings/settings-init.php:304 -#@ woocommerce -msgid "Page contents: [woocommerce_my_account]" -msgstr "Conteúdo da página: [woocommerce_my_account]" - -#: admin/settings/settings-init.php:314 -#@ woocommerce -msgid "Edit Address Page" -msgstr "Página Editar Endereço" - -#: admin/settings/settings-init.php:315 -#@ woocommerce -msgid "Page contents: [woocommerce_edit_address] Parent: \"My Account\"" -msgstr "Conteúdo da página: [woocommerce_edit_address] pai: \"Minha Conta\"" - -#: admin/settings/settings-init.php:353 -#@ woocommerce -msgid "Catalog Options" -msgstr "Opções de catálogo" - -#: admin/settings/settings-init.php:458 -#@ woocommerce -msgid "Weight Unit" -msgstr "Unidade de peso" - -#: admin/settings/settings-init.php:459 -#@ woocommerce -msgid "This controls what unit you will define weights in." -msgstr "Isto controla qual unidade de peso será utilizado" - -#: admin/settings/settings-init.php:465 -#@ woocommerce -msgid "kg" -msgstr "kg" - -#: admin/settings/settings-init.php:467 -#@ woocommerce -msgid "lbs" -msgstr "lbs" - -#: admin/settings/settings-init.php:474 -#@ woocommerce -msgid "Dimensions Unit" -msgstr "Unidades de medida" - -#: admin/settings/settings-init.php:475 -#@ woocommerce -msgid "This controls what unit you will define lengths in." -msgstr "Isto controla qual unidade de tamanho será utilizada" - -#: admin/settings/settings-init.php:482 -#@ woocommerce -msgid "cm" -msgstr "cm" - -#: admin/settings/settings-init.php:484 -#@ woocommerce -msgid "in" -msgstr "in" - -#: admin/settings/settings-init.php:520 -#@ woocommerce -msgid "Pricing Options" -msgstr "Opções de preços" - -#: admin/settings/settings-init.php:38 -#@ woocommerce -msgid "Currency" -msgstr "Moeda" - -#: woocommerce-core-functions.php:780 -#@ woocommerce -msgid "Danish Krone" -msgstr "Coroa Dinamarquesa" - -#: woocommerce-core-functions.php:783 -#@ woocommerce -msgid "Hungarian Forint" -msgstr "Florim húngaro" - -#: woocommerce-core-functions.php:786 -#@ woocommerce -msgid "Israeli Shekel" -msgstr "Novo Shekel Israelense" - -#: woocommerce-core-functions.php:791 -#@ woocommerce -msgid "Norwegian Krone" -msgstr "Coroa Norueguesa" - -#: woocommerce-core-functions.php:793 -#@ woocommerce -msgid "Philippine Pesos" -msgstr "Peso Filipino" - -#: woocommerce-core-functions.php:794 -#@ woocommerce -msgid "Polish Zloty" -msgstr "Zloty Polonês" - -#: woocommerce-core-functions.php:800 -#@ woocommerce -msgid "Swedish Krona" -msgstr "Coroa Sueca" - -#: woocommerce-core-functions.php:801 -#@ woocommerce -msgid "Swiss Franc" -msgstr "Franco Suíço" - -#: woocommerce-core-functions.php:802 -#@ woocommerce -msgid "Taiwan New Dollars" -msgstr "Novo Dólar Taiwanês" - -#: woocommerce-core-functions.php:803 -#@ woocommerce -msgid "Thai Baht" -msgstr "Baht Tailandês" - -#: admin/settings/settings-init.php:523 -#@ woocommerce -msgid "Currency Position" -msgstr "Posição da moeda" - -#: admin/settings/settings-init.php:524 -#@ woocommerce -msgid "This controls the position of the currency symbol." -msgstr "Isto controla a posição do simbolo monetário." - -#: admin/settings/settings-init.php:530 -#@ woocommerce -msgid "Left" -msgstr "Esquerda" - -#: admin/settings/settings-init.php:531 -#@ woocommerce -msgid "Right" -msgstr "Direita" - -#: admin/settings/settings-init.php:532 -#@ woocommerce -msgid "Left (with space)" -msgstr "Esquerda (com espaço)" - -#: admin/settings/settings-init.php:533 -#@ woocommerce -msgid "Right (with space)" -msgstr "Direita (com espaço)" - -#: admin/settings/settings-init.php:540 -#@ woocommerce -msgid "This sets the thousand separator of displayed prices." -msgstr "Isto define o simbolo que separa a casa das milhares nos preços." - -#: admin/settings/settings-init.php:550 -#@ woocommerce -msgid "This sets the decimal separator of displayed prices." -msgstr "Isto define o simbolo exibido na casa decimal nos preços." - -#: admin/settings/settings-init.php:560 -#@ woocommerce -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "Isso define o número de casas decimais mostrado nos preços apresentados." - -#: admin/settings/settings-init.php:582 -#@ woocommerce -msgid "Image Options" -msgstr "Opções de imagem" - -#: admin/settings/settings-init.php:585 -#@ woocommerce -msgid "Catalog Images" -msgstr "Catálogo de imagens" - -#: admin/settings/settings-init.php:586 -#@ woocommerce -msgid "This size is usually used in product listings" -msgstr "O tamanho é usualmente usado na lista de produtos" - -#: admin/settings/settings-init.php:599 -#@ woocommerce -msgid "Single Product Image" -msgstr "Imagem do produto" - -#: admin/settings/settings-init.php:600 -#@ woocommerce -msgid "This is the size used by the main image on the product page." -msgstr "Isto é o tamanho usado pela imagem padrão na página do produto." - -#: admin/settings/settings-init.php:613 -#@ woocommerce -msgid "Product Thumbnails" -msgstr "Imagem miniatura do produto" - -#: admin/settings/settings-init.php:614 -#@ woocommerce -msgid "This size is usually used for the gallery of images on the product page." -msgstr "Isto é utilizado no tamanho das imagens exibidas na galeria de imagens da página do produto." - -#: admin/settings/settings-init.php:633 -#@ woocommerce -msgid "Inventory Options" -msgstr "Opções de inventário" - -#: admin/settings/settings-init.php:637 -#@ woocommerce -msgid "Enable stock management" -msgstr "Permitir a gestão de ações" - -#: admin/settings/settings-init.php:657 -#@ woocommerce -msgid "Notifications" -msgstr "Notificações" - -#: admin/settings/settings-init.php:658 -#@ woocommerce -msgid "Enable low stock notifications" -msgstr "Habilitar notificações de baixo estoque" - -#: admin/settings/settings-init.php:666 -#@ woocommerce -msgid "Enable out of stock notifications" -msgstr "Habilitar notificações de estoque" - -#: admin/settings/settings-init.php:709 -#@ woocommerce -msgid "Hide out of stock items from the catalog" -msgstr "Ocultar itens fora de estoque no catálogo" - -#: admin/settings/settings-init.php:737 -#: admin/woocommerce-admin-settings.php:292 -#@ woocommerce -msgid "Shipping Options" -msgstr "Opções de entrega" - -#: admin/settings/settings-init.php:749 -#@ woocommerce -msgid "Enable the shipping calculator on the cart page" -msgstr "Permitir a calculadora de frete na página de carrinho" - -#: admin/settings/settings-init.php:780 -#@ woocommerce -msgid "Only ship to the users billing address" -msgstr "Enviar somente para o endereço de cobrança do cliente" - -#: admin/settings/settings-init.php:832 -#: admin/woocommerce-admin-settings.php:222 -#@ woocommerce -msgid "Tax Options" -msgstr "Opções de impostos" - -#: admin/settings/settings-init.php:836 -#@ woocommerce -msgid "Enable taxes and tax calculations" -msgstr "Habilitar cálculo de taxas e impostos" - -#: admin/woocommerce-admin-settings.php:45 -#: woocommerce.php:1380 -#@ woocommerce -msgid "Action failed. Please refresh the page and retry." -msgstr "Falha. Por favor, atualize a página e tente novamente." - -#: admin/woocommerce-admin-settings.php:164 -#@ woocommerce -msgid "Your settings have been saved." -msgstr "Suas configurações foram salvas." - -#: admin/post-types/writepanels/writepanel-product_data.php:77 -#: admin/woocommerce-admin-content.php:44 -#: admin/woocommerce-admin-settings.php:182 -#@ woocommerce -msgid "General" -msgstr "Geral" - -#: admin/woocommerce-admin-content.php:45 -#: admin/woocommerce-admin-settings.php:184 -#: assets/js/admin/editor_plugin_lang.php:14 -#@ woocommerce -msgid "Pages" -msgstr "Páginas" - -#: admin/post-types/product.php:618 -#: admin/post-types/product.php:893 -#: admin/post-types/writepanels/writepanel-product_data.php:1047 -#: admin/woocommerce-admin-content.php:46 -#: admin/woocommerce-admin-settings.php:183 -#@ woocommerce -msgid "Catalog" -msgstr "Catálogo" - -#: admin/post-types/writepanels/writepanel-product_data.php:79 -#: admin/woocommerce-admin-content.php:47 -#: admin/woocommerce-admin-settings.php:185 -#@ woocommerce -msgid "Inventory" -msgstr "Inventário" - -#: admin/post-types/writepanels/writepanel-order_data.php:352 -#: admin/settings/settings-tax-rates.php:387 -#: admin/settings/settings-tax-rates.php:475 -#: admin/woocommerce-admin-content.php:48 -#: admin/woocommerce-admin-settings.php:186 -#: classes/class-wc-countries.php:444 -#@ woocommerce -msgid "Tax" -msgstr "Imposto" - -#: admin/settings/settings-shipping-methods.php:23 -#@ woocommerce -msgid "Shipping Methods" -msgstr "Métodos de entrega" - -#: admin/settings/settings-init.php:814 -#: admin/woocommerce-admin-settings.php:188 -#: admin/woocommerce-admin-settings.php:329 -#@ woocommerce -msgid "Payment Gateways" -msgstr "Portais de pagamento" - -#: admin/woocommerce-admin-settings.php:388 -#: templates/myaccount/form-edit-account.php:41 -#@ woocommerce -msgid "Save changes" -msgstr "Salve as alterações" - -#: admin/woocommerce-admin-settings.php:429 -#@ woocommerce -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "As alterações feitas serão perdidas se você sair desta página." - -#: admin/woocommerce-admin-taxonomies.php:34 -#: admin/woocommerce-admin-taxonomies.php:129 -#@ woocommerce -msgid "Thumbnail" -msgstr "Miniatura" - -#: admin/woocommerce-admin-taxonomies.php:38 -#: admin/woocommerce-admin-taxonomies.php:134 -#@ woocommerce -msgid "Upload/Add image" -msgstr "Upload/Adicionar imagem" - -#: admin/woocommerce-admin-taxonomies.php:39 -#: admin/woocommerce-admin-taxonomies.php:135 -#@ woocommerce -msgid "Remove image" -msgstr "Remover imagem" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:42 -#@ woocommerce -msgid "Discount type" -msgstr "Tipo de desconto" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:523 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:524 -#@ woocommerce -msgid "0.00" -msgstr "0.00" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -#@ woocommerce -msgid "Individual use" -msgstr "Uso individual" - -#: admin/post-types/writepanels/order-fee-html.php:19 -#: admin/post-types/writepanels/order-tax-html.php:8 -#: admin/post-types/writepanels/writepanel-order_data.php:561 -#: admin/post-types/writepanels/writepanel-order_data.php:666 -#: admin/woocommerce-admin-reports.php:1658 -#: admin/woocommerce-admin-reports.php:2671 -#: admin/woocommerce-admin-reports.php:2680 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:499 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:500 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:110 -#: templates/order/order-details.php:113 -#: templates/order/order-details.php:128 -#@ woocommerce -msgid "N/A" -msgstr "N/A" - -#: admin/post-types/writepanels/writepanels-init.php:100 -#: templates/checkout/form-coupon.php:25 -#@ woocommerce -msgid "Coupon code" -msgstr "Código do cupom" - -#: admin/woocommerce-admin-profile.php:22 -#@ woocommerce -msgid "Customer Billing Address" -msgstr "Endereço de cobrança do cliente" - -#: admin/woocommerce-admin-profile.php:71 -#@ woocommerce -msgid "Customer Shipping Address" -msgstr "Endereço para envio ao cliente" - -#: admin/post-types/writepanels/writepanel-order_data.php:76 -#@ woocommerce -msgid "Order status:" -msgstr "Status do pedido:" - -#: admin/post-types/writepanels/writepanel-order_data.php:91 -#@ woocommerce -msgid "Customer:" -msgstr "Cliente:" - -#: admin/post-types/writepanels/writepanel-order_data.php:131 -#@ woocommerce -msgid "Customer Note:" -msgstr "Nota do cliente:" - -#: admin/post-types/writepanels/writepanel-order_data.php:132 -#@ woocommerce -msgid "Customer's notes about the order" -msgstr "Nota do cliente sobre o pedido" - -#: admin/post-types/writepanels/writepanel-order_data.php:144 -#: admin/post-types/writepanels/writepanel-order_data.php:234 -#: classes/class-wc-countries.php:683 -#@ woocommerce -msgid "First Name" -msgstr "Primeiro nome" - -#: admin/post-types/writepanels/writepanel-order_data.php:148 -#: admin/post-types/writepanels/writepanel-order_data.php:238 -#: classes/class-wc-countries.php:688 -#@ woocommerce -msgid "Last Name" -msgstr "Sobre nome" - -#: admin/post-types/writepanels/writepanel-order_data.php:152 -#: admin/post-types/writepanels/writepanel-order_data.php:242 -#: admin/woocommerce-admin-profile.php:33 -#: admin/woocommerce-admin-profile.php:82 -#@ woocommerce -msgid "Company" -msgstr "Empresa" - -#: admin/post-types/writepanels/writepanel-order_data.php:156 -#: admin/post-types/writepanels/writepanel-order_data.php:246 -#: admin/woocommerce-admin-profile.php:37 -#: admin/woocommerce-admin-profile.php:86 -#@ woocommerce -msgid "Address 1" -msgstr "Endereço (linha 1)" - -#: admin/post-types/writepanels/writepanel-order_data.php:160 -#: admin/post-types/writepanels/writepanel-order_data.php:250 -#: admin/woocommerce-admin-profile.php:41 -#: admin/woocommerce-admin-profile.php:90 -#@ woocommerce -msgid "Address 2" -msgstr "Endereço (linha 2)" - -#: admin/post-types/writepanels/writepanel-order_data.php:164 -#: admin/post-types/writepanels/writepanel-order_data.php:254 -#: admin/settings/settings-tax-rates.php:42 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-profile.php:45 -#: admin/woocommerce-admin-profile.php:94 -#: templates/cart/shipping-calculator.php:72 -#@ woocommerce -msgid "City" -msgstr "Cidade" - -#: admin/post-types/writepanels/writepanel-order_data.php:168 -#: admin/post-types/writepanels/writepanel-order_data.php:258 -#: admin/woocommerce-admin-profile.php:49 -#: admin/woocommerce-admin-profile.php:98 -#: classes/class-wc-countries.php:977 -#@ woocommerce -msgid "Postcode" -msgstr "CEP" - -#: admin/post-types/writepanels/writepanel-order_data.php:172 -#: admin/post-types/writepanels/writepanel-order_data.php:262 -#: admin/woocommerce-admin-profile.php:57 -#: admin/woocommerce-admin-profile.php:106 -#: classes/class-wc-countries.php:678 -#@ woocommerce -msgid "Country" -msgstr "País" - -#: admin/post-types/writepanels/writepanel-order_data.php:178 -#: admin/post-types/writepanels/writepanel-order_data.php:268 -#: admin/woocommerce-admin-profile.php:53 -#: admin/woocommerce-admin-profile.php:102 -#@ woocommerce -msgid "State/County" -msgstr "Estado" - -#: classes/class-wc-countries.php:1081 -#@ woocommerce -msgid "Email Address" -msgstr "Endereço de email" - -#: admin/woocommerce-admin-functions.php:203 -#: templates/cart/cart.php:30 -#: templates/emails/admin-new-order.php:23 -#: templates/emails/customer-completed-order.php:24 -#: templates/emails/customer-invoice.php:28 -#: templates/emails/customer-note.php:28 -#: templates/emails/customer-processing-order.php:24 -#@ woocommerce -msgid "Quantity" -msgstr "Quantidade" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:486 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:100 -#@ woocommerce -msgid "Cost" -msgstr "Custo" - -#: admin/post-types/writepanels/variation-admin-html.php:6 -#: admin/post-types/writepanels/writepanel-product_data.php:368 -#: admin/post-types/writepanels/writepanel-product_data.php:462 -#: admin/woocommerce-admin-init.php:472 -#@ woocommerce -msgid "Remove" -msgstr "Remover" - -#: admin/post-types/writepanels/order-item-html.php:10 -#@ woocommerce -msgid "Product ID:" -msgstr "ID do produto:" - -#: admin/post-types/writepanels/order-item-html.php:13 -#@ woocommerce -msgid "Variation ID:" -msgstr "ID de variação:" - -#: admin/post-types/writepanels/order-item-html.php:16 -#@ woocommerce -msgid "Product SKU:" -msgstr "Produto REF:" - -#: admin/post-types/writepanels/order-item-html.php:44 -#@ woocommerce -msgid "Add meta" -msgstr "Adicionar meta" - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -#@ woocommerce -msgid "Save Order" -msgstr "Salvar pedido" - -#: admin/post-types/product.php:160 -#: admin/post-types/shop_coupon.php:69 -#: admin/post-types/writepanels/writepanel-order_data.php:463 -#@ default -#@ woocommerce -msgid "Delete Permanently" -msgstr "Excluir permanentemente" - -#: admin/post-types/writepanels/writepanel-order_data.php:465 -#@ woocommerce -msgid "Move to Trash" -msgstr "Mover para lixeira" - -#: admin/post-types/writepanels/writepanel-order_data.php:552 -#: classes/class-wc-countries.php:470 -#@ woocommerce -msgid "(ex. tax)" -msgstr "(ex. imposto)" - -#: admin/woocommerce-admin-dashboard.php:239 -#: classes/shortcodes/class-wc-shortcode-checkout.php:133 -#: templates/checkout/thankyou.php:48 -#@ woocommerce -msgid "Total:" -msgstr "Total:" - -#: classes/class-wc-order.php:1503 -#: woocommerce-ajax.php:1091 -#: woocommerce-ajax.php:1092 -#, php-format -#@ woocommerce -msgid "Item #%s stock reduced from %s to %s." -msgstr "Item #%s estoque reduzido de %s para %s." - -#: woocommerce-ajax.php:1144 -#: woocommerce-ajax.php:1145 -#, php-format -#@ woocommerce -msgid "Item #%s stock increased from %s to %s." -msgstr "Item #%s estoque aumentado de %s para %s." - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -#, php-format -#@ woocommerce -msgid "added %s ago" -msgstr "adicionado %s atrás" - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -#: woocommerce-ajax.php:1487 -#@ woocommerce -msgid "Delete note" -msgstr "Remover nota" - -#: admin/post-types/writepanels/writepanel-order_notes.php:50 -#@ woocommerce -msgid "There are no notes for this order yet." -msgstr "Não existem notas para este pedido." - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -#@ woocommerce -msgid "Add note" -msgstr "Adicionar nota" - -#: admin/post-types/writepanels/writepanel-order_notes.php:62 -#: classes/emails/class-wc-email-customer-note.php:29 -#@ woocommerce -msgid "Customer note" -msgstr "Notas do cliente" - -#: admin/post-types/writepanels/writepanel-order_notes.php:63 -#@ woocommerce -msgid "Private note" -msgstr "Nota privada" - -#: admin/post-types/writepanels/writepanel-order_notes.php:65 -#: admin/post-types/writepanels/writepanel-product_data.php:501 -#@ woocommerce -msgid "Add" -msgstr "Adicionar" - -#: admin/post-types/writepanels/writepanel-product_data.php:158 -#@ woocommerce -msgid "Download Limit" -msgstr "Limite de download" - -#: admin/post-types/writepanels/variation-admin-html.php:150 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -#@ woocommerce -msgid "Leave blank for unlimited re-downloads." -msgstr "Deixe em branco para permitir ilimitados downloads." - -#: admin/post-types/product.php:222 -#: admin/post-types/product.php:403 -#: admin/post-types/writepanels/variation-admin-html.php:174 -#: admin/post-types/writepanels/writepanel-product_data.php:58 -#@ woocommerce -msgid "Downloadable" -msgstr "Baixavel/Download" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#@ woocommerce -msgid "Bulk edit:" -msgstr "Edição em massa:" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:218 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:275 -#: templates/single-product/meta.php:19 -#@ woocommerce -msgid "SKU:" -msgstr "REF:" - -#: admin/post-types/product.php:587 -#: admin/post-types/product.php:838 -#: admin/post-types/writepanels/variation-admin-html.php:96 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:87 -#: admin/post-types/writepanels/writepanel-product_data.php:273 -#: templates/single-product/product-attributes.php:28 -#@ woocommerce -msgid "Weight" -msgstr "Peso" - -#: admin/post-types/writepanels/variation-admin-html.php:63 -#@ woocommerce -msgid "Stock Qty:" -msgstr "Quantidade em estoque:" - -#: classes/widgets/class-wc-widget-price-filter.php:134 -#@ woocommerce -msgid "Price:" -msgstr "Preço:" - -#: admin/post-types/writepanels/variation-admin-html.php:76 -#@ woocommerce -msgid "Sale Price:" -msgstr "Preço de venda:" - -#: admin/post-types/writepanels/variation-admin-html.php:172 -#@ woocommerce -msgid "Enabled" -msgstr "Habilitado" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:198 -#@ woocommerce -msgid "Add Variation" -msgstr "Adicionar variação" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:200 -#@ woocommerce -msgid "Link all variations" -msgstr "Linkar todas as variações" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:348 -#@ woocommerce -msgid "Are you sure you want to remove this variation?" -msgstr "Tem certeza de que deseja remover essa variação?" - -#: admin/post-types/product.php:220 -#: admin/post-types/product.php:407 -#: admin/post-types/writepanels/variation-admin-html.php:176 -#: admin/post-types/writepanels/writepanel-product_data.php:52 -#@ woocommerce -msgid "Virtual" -msgstr "Virtual" - -#: admin/post-types/writepanels/writepanel-product_data.php:537 -#@ woocommerce -msgid "Up-sells are products which you recommend instead of the currently viewed product, for example, products that are more profitable or better quality or more expensive." -msgstr "Aumenta vendas, são produtos que você deseja recomendar durante a visualização de um produto. Por exemplo: Produtos mais rentáveis, com maior qualidade ou mais recomendados." - -#: admin/post-types/writepanels/writepanel-product_data.php:554 -#@ woocommerce -msgid "Cross-sells are products which you promote in the cart, based on the current product." -msgstr "Venda cruzada, são produtos que você promove no carrinho, com base nos produtos atuais." - -#: admin/post-types/writepanels/writepanel-product_data.php:564 -#@ woocommerce -msgid "Choose a grouped product…" -msgstr "Escolha o produto agrupado" - -#: admin/post-types/writepanels/writepanel-product_data.php:590 -#@ woocommerce -msgid "Grouping" -msgstr "Agrupando" - -#: admin/post-types/product.php:91 -#: admin/post-types/product.php:556 -#: admin/post-types/writepanels/variation-admin-html.php:52 -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#: admin/woocommerce-admin-reports.php:2099 -#: admin/woocommerce-admin-reports.php:2135 -#@ woocommerce -msgid "SKU" -msgstr "REF" - -#: admin/post-types/writepanels/writepanel-product_data.php:119 -#@ woocommerce -msgid "Regular Price" -msgstr "Preço normal" - -#: admin/post-types/writepanels/writepanel-product_data.php:125 -#@ woocommerce -msgid "Sale Price" -msgstr "Preço de oferta" - -#: admin/post-types/writepanels/writepanel-product_data.php:135 -#@ woocommerce -msgid "Sale Price Dates" -msgstr "Datas da oferta" - -#: admin/post-types/writepanels/writepanel-product_data.php:284 -#: templates/single-product/product-attributes.php:37 -#@ woocommerce -msgid "Dimensions" -msgstr "Dimensões" - -#: admin/post-types/product.php:600 -#: admin/post-types/product.php:878 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:286 -#@ woocommerce -msgid "Length" -msgstr "Comprimento" - -#: admin/post-types/writepanels/writepanel-product_data.php:178 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:107 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:81 -#@ woocommerce -msgid "Tax Status" -msgstr "Situação Fiscal" - -#: admin/post-types/writepanels/order-fee-html.php:20 -#: admin/post-types/writepanels/writepanel-product_data.php:179 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:111 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:85 -#@ woocommerce -msgid "Taxable" -msgstr "Tributável" - -#: admin/post-types/writepanels/writepanel-product_data.php:180 -#@ woocommerce -msgid "Shipping only" -msgstr "Somente transporte" - -#: admin/post-types/writepanels/order-fee-html.php:25 -#: admin/post-types/writepanels/order-item-html.php:96 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:53 -#: admin/post-types/writepanels/writepanel-product_data.php:186 -#: admin/settings/settings-init.php:886 -#: admin/settings/settings-tax-rates.php:29 -#: admin/woocommerce-admin-settings.php:228 -#: woocommerce-ajax.php:551 -#@ woocommerce -msgid "Standard" -msgstr "Padrão" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#: admin/post-types/writepanels/writepanel-product_data.php:191 -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Tax Class" -msgstr "Classe de impostos" - -#: admin/post-types/product.php:656 -#: admin/post-types/product.php:941 -#: admin/post-types/writepanels/writepanel-product_data.php:212 -#@ woocommerce -msgid "Manage stock?" -msgstr "Gerenciar estoque?" - -#: admin/post-types/writepanels/writepanel-product_data.php:230 -#@ woocommerce -msgid "Stock status" -msgstr "Status do estoque" - -#: admin/post-types/product.php:262 -#: admin/post-types/product.php:640 -#: admin/post-types/product.php:929 -#: admin/post-types/writepanels/writepanel-product_data.php:231 -#: classes/abstracts/abstract-wc-product.php:549 -#: classes/abstracts/abstract-wc-product.php:554 -#: classes/abstracts/abstract-wc-product.php:573 -#@ woocommerce -msgid "In stock" -msgstr "No estoque" - -#: admin/post-types/product.php:660 -#: admin/post-types/product.php:960 -#: admin/post-types/product.php:976 -#: admin/post-types/writepanels/writepanel-product_data.php:219 -#@ woocommerce -msgid "Stock Qty" -msgstr "Quantidade estoque" - -#: admin/post-types/writepanels/writepanel-product_data.php:240 -#@ woocommerce -msgid "Allow Backorders?" -msgstr "Permitir pedidos não atendidos?" - -#: admin/post-types/writepanels/writepanel-product_data.php:241 -#@ woocommerce -msgid "Do not allow" -msgstr "Não permitir" - -#: admin/post-types/writepanels/writepanel-product_data.php:242 -#@ woocommerce -msgid "Allow, but notify customer" -msgstr "Permitir, mas informar o cliente" - -#: admin/post-types/writepanels/writepanel-product_data.php:243 -#@ woocommerce -msgid "Allow" -msgstr "Permitir" - -#: admin/post-types/writepanels/writepanel-product_data.php:384 -#: admin/post-types/writepanels/writepanel-product_data.php:476 -#: admin/woocommerce-admin-init.php:474 -#@ woocommerce -msgid "Value(s)" -msgstr "Valor(s)" - -#: admin/post-types/writepanels/writepanel-product_data.php:503 -#@ woocommerce -msgid "Custom product attribute" -msgstr "Atributos personalizados do produto" - -#: admin/post-types/writepanels/writepanel-product_data.php:522 -#@ woocommerce -msgid "Up-Sells" -msgstr "Aumenta vendas" - -#: admin/post-types/writepanels/writepanel-product_data.php:539 -#@ woocommerce -msgid "Cross-Sells" -msgstr "Venda cruzada" - -#: admin/post-types/writepanels/writepanel-product_data.php:714 -#@ woocommerce -msgid "Product SKU must be unique." -msgstr "REF do produto precisa ser único." - -#: admin/post-types/writepanels/writepanel-product_data.php:43 -#@ woocommerce -msgid "Product Type" -msgstr "Tipo de produto" - -#: admin/post-types/product.php:619 -#: admin/post-types/product.php:894 -#: admin/post-types/writepanels/writepanel-product_data.php:1048 -#: woocommerce-template.php:1550 -#@ woocommerce -msgid "Search" -msgstr "Pesquisa" - -#: admin/post-types/product.php:620 -#: admin/post-types/product.php:895 -#: admin/post-types/writepanels/writepanel-product_data.php:1049 -#@ woocommerce -msgid "Hidden" -msgstr "Escondido" - -#: admin/post-types/product.php:551 -#: admin/post-types/product.php:782 -#: admin/post-types/writepanels/writepanels-init.php:46 -#: admin/settings/settings-init.php:422 -#@ woocommerce -msgid "Product Data" -msgstr "Dados do produto" - -#: admin/post-types/writepanels/writepanels-init.php:68 -#@ woocommerce -msgid "Order Data" -msgstr "Dados do pedido" - -#: admin/post-types/writepanels/writepanel-order_data.php:652 -#: admin/post-types/writepanels/writepanels-init.php:70 -#@ woocommerce -msgid "Order Totals" -msgstr "Total do pedido" - -#: admin/post-types/shop_order.php:48 -#: admin/post-types/writepanels/writepanels-init.php:71 -#: classes/class-wc-checkout.php:77 -#@ woocommerce -msgid "Order Notes" -msgstr "Notas do pedido" - -#: admin/post-types/writepanels/writepanels-init.php:73 -#@ woocommerce -msgid "Order Actions" -msgstr "Ações do pedido" - -#: admin/post-types/writepanels/writepanels-init.php:81 -#@ woocommerce -msgid "Coupon Data" -msgstr "Dados do cupom" - -#: classes/class-wc-cart.php:460 -#, php-format -#@ woocommerce -msgid "Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in stock). Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Desculpe, não temos o suficiente estoque suficiente para atender seu pedido \"%s\" (existe %s em estoque). Por favor edite seu carrinho e tente novamente. Pedimos desculpas por qualquer inconveniente causado." - -#: classes/abstracts/abstract-wc-product.php:850 -#: classes/abstracts/abstract-wc-product.php:856 -#: classes/class-wc-cart.php:1802 -#: classes/class-wc-order.php:891 -#: classes/class-wc-product-variable.php:275 -#: classes/class-wc-product-variable.php:284 -#: classes/class-wc-product-variation.php:246 -#@ woocommerce -msgid "Free!" -msgstr "grátis" - -#: classes/class-wc-coupon.php:445 -#: classes/class-wc-coupon.php:495 -#@ woocommerce -msgid "Coupon does not exist!" -msgstr "Código de desconto informado não existe!" - -#: admin/post-types/writepanels/writepanel-order_data.php:193 -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#: admin/post-types/writepanels/writepanel-order_data.php:277 -#: admin/post-types/writepanels/writepanel-order_data.php:279 -#: classes/class-wc-countries.php:698 -#@ woocommerce -msgid "Address" -msgstr "Endereço" - -#: admin/post-types/writepanels/writepanel-order_data.php:185 -#: classes/class-wc-countries.php:1087 -#@ woocommerce -msgid "Phone" -msgstr "Telefone" - -#: templates/checkout/form-billing.php:21 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:19 -#: templates/myaccount/my-address.php:25 -#: templates/order/order-details.php:109 -#@ woocommerce -msgid "Billing Address" -msgstr "Endereço de cobrança" - -#: templates/checkout/form-billing.php:40 -#@ woocommerce -msgid "Create an account?" -msgstr "Criar uma conta?" - -#: classes/class-wc-checkout.php:60 -#@ woocommerce -msgid "Account username" -msgstr "Usuário conta" - -#: admin/woocommerce-admin-customers.php:220 -#: templates/myaccount/form-login.php:66 -#@ woocommerce -msgid "Username" -msgstr "Nome de usuário/username" - -#: classes/class-wc-checkout.php:68 -#@ woocommerce -msgid "Account password" -msgstr "Senha da conta" - -#: templates/myaccount/form-login.php:34 -#: templates/myaccount/form-login.php:78 -#: templates/shop/form-login.php:24 -#@ woocommerce -msgid "Password" -msgstr "Senha" - -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:20 -#: templates/order/order-details.php:124 -#@ woocommerce -msgid "Shipping Address" -msgstr "Endereço de entrega" - -#: admin/post-types/writepanels/writepanel-order_data.php:175 -#: admin/post-types/writepanels/writepanel-order_data.php:265 -#: templates/cart/shipping-calculator.php:28 -#: woocommerce-template.php:1386 -#@ woocommerce -msgid "Select a country…" -msgstr "Selecione o país" - -#: templates/cart/shipping-calculator.php:52 -#: woocommerce-template.php:1436 -#@ woocommerce -msgid "Select a state…" -msgstr "Selecione o estado (UF)" - -#: classes/class-wc-checkout.php:354 -#, php-format -#@ woocommerce -msgid "Sorry, your session has expired. Return to homepage →" -msgstr "Desculpe, sua sessão expirou. Volte à página principal →" - -#: woocommerce-functions.php:743 -#@ woocommerce -msgid "Please enter an account password." -msgstr "Por favor digite a senha de conta." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:83 -#: woocommerce-functions.php:1628 -#@ woocommerce -msgid "Passwords do not match." -msgstr "As senhas não coincidem." - -#: woocommerce-functions.php:723 -#@ woocommerce -msgid "An account is already registered with that username. Please choose another." -msgstr "Já existe uma conta com este nome de usuário. Por favor, escolha outro." - -#: woocommerce-functions.php:712 -#@ woocommerce -msgid "An account is already registered with your email address. Please login." -msgstr "Já existe uma conta com este email. Por favor, faça login." - -#: classes/class-wc-checkout.php:509 -#@ woocommerce -msgid "You must accept our Terms & Conditions." -msgstr "Você deve aceitar os Termos e Condições." - -#: classes/class-wc-checkout.php:518 -#@ woocommerce -msgid "Invalid shipping method." -msgstr "Método de envio inválido." - -#: classes/class-wc-checkout.php:531 -#@ woocommerce -msgid "Invalid payment method." -msgstr "Método de pagamento inválido." - -#: classes/class-wc-countries.php:418 -#@ woocommerce -msgid "to the" -msgstr "para o" - -#: classes/class-wc-countries.php:419 -#@ woocommerce -msgid "to" -msgstr "para" - -#: classes/abstracts/abstract-wc-email.php:431 -#: classes/emails/class-wc-email-customer-completed-order.php:135 -#: classes/emails/class-wc-email-customer-invoice.php:138 -#: classes/emails/class-wc-email-new-order.php:115 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:81 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:57 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:130 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:120 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:76 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:75 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:50 -#@ woocommerce -msgid "Enable/Disable" -msgstr "Habilita/Desabilita" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:83 -#@ woocommerce -msgid "Enable Bank Transfer" -msgstr "Habilitar Transferência Bancária" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:87 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:63 -#: classes/gateways/cod/class-wc-gateway-cod.php:87 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:143 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:126 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:104 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:84 -#: classes/widgets/class-wc-widget-cart.php:30 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:28 -#: classes/widgets/class-wc-widget-layered-nav.php:38 -#: classes/widgets/class-wc-widget-price-filter.php:30 -#: classes/widgets/class-wc-widget-product-categories.php:31 -#: classes/widgets/class-wc-widget-product-categories.php:36 -#: classes/widgets/class-wc-widget-product-search.php:28 -#: classes/widgets/class-wc-widget-product-tag-cloud.php:28 -#: classes/widgets/class-wc-widget-products.php:28 -#: classes/widgets/class-wc-widget-recent-reviews.php:28 -#: classes/widgets/class-wc-widget-recently-viewed.php:28 -#: classes/widgets/class-wc-widget-top-rated-products.php:30 -#@ woocommerce -msgid "Title" -msgstr "Título" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:89 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:65 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:145 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:128 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:83 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:58 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:106 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:86 -#@ woocommerce -msgid "This controls the title which the user sees during checkout." -msgstr "Isto controla o título que o usuário vê durante o checkout." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:90 -#@ woocommerce -msgid "Direct Bank Transfer" -msgstr "Transferência Bancária Direta" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:94 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:70 -#@ woocommerce -msgid "Customer Message" -msgstr "Mensagem do consumidor" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:96 -#@ woocommerce -msgid "Give the customer instructions for paying via BACS, and let them know that their order won't be shipping until the money is received." -msgstr "Dê instruções ao cliente para pagar por Banco, e deixe claro que o produto só será enviado quando o pagamento for confirmado." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:97 -#@ woocommerce -msgid "Make your payment directly into our bank account. Please use your Order ID as the payment reference. Your order wont be shipped until the funds have cleared in our account." -msgstr "Para fazer o pagamento diretamente em nossa conta bancária. Por favor use o ID do seu pedido como referência de pagamento.Seu pedido não será enviado até que o pagamento seja identificado. Você precisa entrar em contato informando os dados de seu depósito/transferência ." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:37 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:106 -#@ woocommerce -msgid "Account Name" -msgstr "Nome da conta" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:41 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:112 -#@ woocommerce -msgid "Account Number" -msgstr "Número de Conta" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:45 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:118 -#@ woocommerce -msgid "Sort Code" -msgstr "Agência" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:49 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:124 -#@ woocommerce -msgid "Bank Name" -msgstr "Nome do banco" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:53 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:130 -#@ woocommerce -msgid "IBAN" -msgstr "IBAN" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:135 -#@ woocommerce -msgid "BIC (formerly Swift)" -msgstr "BIC (antiga Swift)" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:154 -#@ woocommerce -msgid "BACS Payment" -msgstr "Pagamento bancário" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:155 -#@ woocommerce -msgid "Allows payments by BACS (Bank Account Clearing System), more commonly known as direct bank/wire transfer." -msgstr "Permite pagamentos por depósito (Sistema de Compensação de Conta bancária), mais comumente conhecido como transferência bancária / transferência eletrônica." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:176 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:211 -#@ woocommerce -msgid "Our Details" -msgstr "Nossos dados" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:57 -#@ woocommerce -msgid "BIC" -msgstr "BIC (Swift)" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:238 -#@ woocommerce -msgid "Awaiting BACS payment" -msgstr "Aguardando pagamento em conta" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:59 -#@ woocommerce -msgid "Enable Cheque Payment" -msgstr "Habilitar pagamento por cheque" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:66 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:90 -#@ woocommerce -msgid "Cheque Payment" -msgstr "Pagamento por cheque" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:72 -#@ woocommerce -msgid "Let the customer know the payee and where they should be sending the cheque to and that their order won't be shipping until you receive it." -msgstr "Deixe o cliente saber o nome do beneficiário. É importante informar que o pedido só será enviado após confirmar o recebimento." - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:91 -#@ woocommerce -msgid "Allows cheque payments. Why would you take cheques in this day and age? Well you probably wouldn't but it does allow you to make test purchases for testing order emails and the 'success' pages etc." -msgstr "Permite pagamentos em cheque. Por que você iria aceitar cheques neste dia e idade? Bem, você provavelmente não iria, mas não permite que você para fazer compras e-mails de teste para testar a ordem eo "sucesso" páginas etc" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:147 -#@ woocommerce -msgid "Awaiting cheque payment" -msgstr "À espera de pagamento de cheque" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:122 -#@ woocommerce -msgid "Enable PayPal standard" -msgstr "Habilitar PayPal padrão" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:34 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:129 -#@ woocommerce -msgid "PayPal" -msgstr "PayPal" - -#: admin/post-types/shop_coupon.php:28 -#: classes/gateways/cod/class-wc-gateway-cod.php:94 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:150 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:133 -#: woocommerce-template.php:751 -#@ woocommerce -msgid "Description" -msgstr "Descrição" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:153 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:135 -#@ woocommerce -msgid "This controls the description which the user sees during checkout." -msgstr "Isso controla a descrição que o usuário vê durante o checkout." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:136 -#@ woocommerce -msgid "Pay via PayPal; you can pay with your credit card if you don't have a PayPal account" -msgstr "Pagamento via PayPal. Você pode pagar com seu cartão de crédito" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:139 -#@ woocommerce -msgid "PayPal Email" -msgstr "E-mail PayPal" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:141 -#@ woocommerce -msgid "Please enter your PayPal email address; this is needed in order to take payment." -msgstr "Por favor digite o seu endereço de e-mail PayPal, que é necessário para receber o pagamento." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:182 -#@ woocommerce -msgid "Shipping details" -msgstr "Detalhes de entrega" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:202 -#@ woocommerce -msgid "PayPal sandbox" -msgstr "PayPal sandbox" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:204 -#@ woocommerce -msgid "Enable PayPal sandbox" -msgstr "Habilitar PayPal sandbox" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:91 -#@ woocommerce -msgid "PayPal standard" -msgstr "PayPal padrão" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:92 -#@ woocommerce -msgid "PayPal standard works by sending the user to PayPal to enter their payment information." -msgstr "PayPal padrão funciona enviando o usuário para o PayPal para inserir suas informações de pagamento." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:452 -#@ woocommerce -msgid "Pay via PayPal" -msgstr "Pagar com PayPal" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:452 -#@ woocommerce -msgid "Cancel order & restore cart" -msgstr "Cancelar pedido e Restaurar carrinho" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:427 -#@ woocommerce -msgid "Thank you for your order. We are now redirecting you to PayPal to make payment." -msgstr "Obrigado por fazer seu pedido. Agora estamos redirecionando você para o PayPal para efetuar o pagamento." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:682 -#@ woocommerce -msgid "IPN payment completed" -msgstr "Pagamento IPN concluída" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:697 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:705 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:723 -#, php-format -#@ woocommerce -msgid "Payment %s via IPN." -msgstr "Pagamento %s via IPN." - -#: classes/class-wc-order.php:1271 -#, php-format -#@ woocommerce -msgid "Order status changed from %s to %s." -msgstr "Status do pedido alterado de %s para %s." - -#: classes/class-wc-order.php:1515 -#@ woocommerce -msgid "Order item stock reduced successfully." -msgstr "Item reduzido com sucesso." - -#: classes/abstracts/abstract-wc-product.php:570 -#: classes/abstracts/abstract-wc-product.php:583 -#: templates/cart/cart.php:76 -#@ woocommerce -msgid "Available on backorder" -msgstr "Demanda não atendida está disponível" - -#: classes/abstracts/abstract-wc-product.php:963 -#: templates/single-product-reviews.php:28 -#, php-format -#@ woocommerce -msgid "Rated %s out of 5" -msgstr "Avaliação %s de 5" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:27 -#@ woocommerce -msgid "Flat rates let you define a standard rate per item, or per order." -msgstr "Taxas fixas permitem que você defina uma taxa padrão para cada item ou por pedido." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:82 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:81 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:56 -#@ woocommerce -msgid "Method Title" -msgstr "Método título" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:106 -#@ woocommerce -msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -msgstr "Custo sem impostos. Digite um valor, por exemplo: 2.50." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:487 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:112 -#@ woocommerce -msgid "Handling Fee" -msgstr "Taxa de manuseio" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:114 -#@ woocommerce -msgid "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. Leave blank to disable." -msgstr "Taxa sem impostos. Digite um valor, por exemplo: 2.50, ou uma porcentagem, por exemplo, 5%. Deixe em branco para desabilitar." - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:88 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:143 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:99 -#@ woocommerce -msgid "Method availability" -msgstr "Método disponível" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:93 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:148 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:104 -#@ woocommerce -msgid "All allowed countries" -msgstr "Países permitidos" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:25 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:145 -#@ woocommerce -msgid "Free Shipping" -msgstr "Frete Grátis" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:77 -#@ woocommerce -msgid "Enable Free Shipping" -msgstr "Habilitar frete grátis" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:118 -#@ woocommerce -msgid "Minimum Order Amount" -msgstr "Valor mínimo de encomenda" - -#: templates/cart/totals.php:35 -#: templates/checkout/review-order.php:34 -#: woocommerce.php:1312 -#@ woocommerce -msgid "Cart Discount" -msgstr "Desconto carrinho" - -#: woocommerce.php:1313 -#@ woocommerce -msgid "Cart % Discount" -msgstr "Desconto no carrinho %" - -#: woocommerce.php:1314 -#@ woocommerce -msgid "Product Discount" -msgstr "Desconto produto" - -#: classes/class-wc-countries.php:41 -#@ woocommerce -msgid "Andorra" -msgstr "Andorra" - -#: classes/class-wc-countries.php:266 -#@ woocommerce -msgid "United Arab Emirates" -msgstr "Emirados Árabes Unidos" - -#: classes/class-wc-countries.php:37 -#@ woocommerce -msgid "Afghanistan" -msgstr "Afeganistão" - -#: classes/class-wc-countries.php:45 -#@ woocommerce -msgid "Antigua and Barbuda" -msgstr "Antígua e Barbuda" - -#: classes/class-wc-countries.php:43 -#@ woocommerce -msgid "Anguilla" -msgstr "Anguilla" - -#: classes/class-wc-countries.php:39 -#@ woocommerce -msgid "Albania" -msgstr "Albânia" - -#: classes/class-wc-countries.php:47 -#@ woocommerce -msgid "Armenia" -msgstr "Armênia" - -#: classes/class-wc-countries.php:191 -#@ woocommerce -msgid "Netherlands Antilles" -msgstr "Antilhas Holandesas" - -#: classes/class-wc-countries.php:42 -#@ woocommerce -msgid "Angola" -msgstr "Angola" - -#: classes/class-wc-countries.php:44 -#@ woocommerce -msgid "Antarctica" -msgstr "Antártica" - -#: classes/class-wc-countries.php:46 -#@ woocommerce -msgid "Argentina" -msgstr "Argentina" - -#: i18n/states/US.php:67 -#@ woocommerce -msgid "American Samoa" -msgstr "Samoa Americana" - -#: classes/class-wc-countries.php:50 -#@ woocommerce -msgid "Austria" -msgstr "Áustria" - -#: classes/class-wc-countries.php:49 -#@ woocommerce -msgid "Australia" -msgstr "Austrália" - -#: classes/class-wc-countries.php:48 -#@ woocommerce -msgid "Aruba" -msgstr "Aruba" - -#: classes/class-wc-countries.php:51 -#@ woocommerce -msgid "Azerbaijan" -msgstr "Azerbaijão" - -#: classes/class-wc-countries.php:65 -#@ woocommerce -msgid "Bosnia and Herzegovina" -msgstr "Bósnia e Herzegovina" - -#: classes/class-wc-countries.php:55 -#@ woocommerce -msgid "Barbados" -msgstr "Barbados" - -#: classes/class-wc-countries.php:54 -#@ woocommerce -msgid "Bangladesh" -msgstr "Bangladesh" - -#: classes/class-wc-countries.php:57 -#@ woocommerce -msgid "Belgium" -msgstr "Bélgica" - -#: classes/class-wc-countries.php:73 -#@ woocommerce -msgid "Burkina Faso" -msgstr "Burquina Fasso" - -#: classes/class-wc-countries.php:72 -#@ woocommerce -msgid "Bulgaria" -msgstr "Bulgária" - -#: classes/class-wc-countries.php:53 -#@ woocommerce -msgid "Bahrain" -msgstr "Barém" - -#: classes/class-wc-countries.php:74 -#@ woocommerce -msgid "Burundi" -msgstr "Burúndi" - -#: classes/class-wc-countries.php:60 -#@ woocommerce -msgid "Benin" -msgstr "Benim" - -#: classes/class-wc-countries.php:61 -#@ woocommerce -msgid "Bermuda" -msgstr "Bermudas" - -#: classes/class-wc-countries.php:71 -#@ woocommerce -msgid "Brunei" -msgstr "Brunei" - -#: classes/class-wc-countries.php:63 -#@ woocommerce -msgid "Bolivia" -msgstr "Bolívia" - -#: classes/class-wc-countries.php:68 -#@ woocommerce -msgid "Brazil" -msgstr "Brasil" - -#: classes/class-wc-countries.php:52 -#@ woocommerce -msgid "Bahamas" -msgstr "Bahamas" - -#: classes/class-wc-countries.php:62 -#@ woocommerce -msgid "Bhutan" -msgstr "Butão" - -#: classes/class-wc-countries.php:66 -#@ woocommerce -msgid "Botswana" -msgstr "Botsuana" - -#: classes/class-wc-countries.php:56 -#@ woocommerce -msgid "Belarus" -msgstr "Bielorrússia" - -#: classes/class-wc-countries.php:59 -#@ woocommerce -msgid "Belize" -msgstr "Belize" - -#: classes/class-wc-countries.php:77 -#@ woocommerce -msgid "Canada" -msgstr "Canadá" - -#: classes/class-wc-countries.php:85 -#@ woocommerce -msgid "Cocos (Keeling) Islands" -msgstr "Ilhas Cocos" - -#: classes/class-wc-countries.php:89 -#@ woocommerce -msgid "Congo (Kinshasa)" -msgstr "Congo (Kinshasa)" - -#: classes/class-wc-countries.php:80 -#@ woocommerce -msgid "Central African Republic" -msgstr "República da África Central" - -#: classes/class-wc-countries.php:88 -#@ woocommerce -msgid "Congo (Brazzaville)" -msgstr "Congo (Brazzaville)" - -#: classes/class-wc-countries.php:248 -#@ woocommerce -msgid "Switzerland" -msgstr "Suiça" - -#: classes/class-wc-countries.php:145 -#@ woocommerce -msgid "Ivory Coast" -msgstr "Costa do Marfim" - -#: classes/class-wc-countries.php:90 -#@ woocommerce -msgid "Cook Islands" -msgstr "Ilhas Cook" - -#: classes/class-wc-countries.php:82 -#@ woocommerce -msgid "Chile" -msgstr "Chile" - -#: classes/class-wc-countries.php:76 -#@ woocommerce -msgid "Cameroon" -msgstr "Camarões" - -#: classes/class-wc-countries.php:83 -#@ woocommerce -msgid "China" -msgstr "China" - -#: classes/class-wc-countries.php:86 -#@ woocommerce -msgid "Colombia" -msgstr "Colômbia" - -#: classes/class-wc-countries.php:91 -#@ woocommerce -msgid "Costa Rica" -msgstr "Costa Rica" - -#: classes/class-wc-countries.php:93 -#@ woocommerce -msgid "Cuba" -msgstr "Cuba" - -#: classes/class-wc-countries.php:78 -#@ woocommerce -msgid "Cape Verde" -msgstr "Cabo Verde" - -#: classes/class-wc-countries.php:84 -#@ woocommerce -msgid "Christmas Island" -msgstr "Ilha Christmas" - -#: classes/class-wc-countries.php:95 -#@ woocommerce -msgid "Cyprus" -msgstr "Chipre" - -#: classes/class-wc-countries.php:96 -#@ woocommerce -msgid "Czech Republic" -msgstr "República Checa" - -#: classes/class-wc-countries.php:119 -#@ woocommerce -msgid "Germany" -msgstr "Alemanha" - -#: classes/class-wc-countries.php:98 -#@ woocommerce -msgid "Djibouti" -msgstr "Djibouti" - -#: classes/class-wc-countries.php:97 -#@ woocommerce -msgid "Denmark" -msgstr "Dinamarca" - -#: classes/class-wc-countries.php:99 -#@ woocommerce -msgid "Dominica" -msgstr "Dominica" - -#: classes/class-wc-countries.php:100 -#@ woocommerce -msgid "Dominican Republic" -msgstr "República Dominicana" - -#: classes/class-wc-countries.php:40 -#@ woocommerce -msgid "Algeria" -msgstr "Argélia" - -#: classes/class-wc-countries.php:101 -#@ woocommerce -msgid "Ecuador" -msgstr "Equador" - -#: classes/class-wc-countries.php:106 -#@ woocommerce -msgid "Estonia" -msgstr "Estônia" - -#: classes/class-wc-countries.php:102 -#@ woocommerce -msgid "Egypt" -msgstr "Egito" - -#: classes/class-wc-countries.php:276 -#@ woocommerce -msgid "Western Sahara" -msgstr "Saara Ocidental" - -#: classes/class-wc-countries.php:105 -#@ woocommerce -msgid "Eritrea" -msgstr "Eritreia" - -#: classes/class-wc-countries.php:241 -#@ woocommerce -msgid "Spain" -msgstr "Espanha" - -#: classes/class-wc-countries.php:107 -#@ woocommerce -msgid "Ethiopia" -msgstr "Etiópia" - -#: classes/class-wc-countries.php:111 -#@ woocommerce -msgid "Finland" -msgstr "Finlândia" - -#: classes/class-wc-countries.php:110 -#@ woocommerce -msgid "Fiji" -msgstr "Fiji" - -#: classes/class-wc-countries.php:108 -#@ woocommerce -msgid "Falkland Islands" -msgstr "Ilhas Malvinas" - -#: classes/class-wc-countries.php:178 -#@ woocommerce -msgid "Micronesia" -msgstr "Micronésia" - -#: classes/class-wc-countries.php:109 -#@ woocommerce -msgid "Faroe Islands" -msgstr "Ilhas Feroe" - -#: classes/class-wc-countries.php:112 -#@ woocommerce -msgid "France" -msgstr "França" - -#: classes/class-wc-countries.php:116 -#@ woocommerce -msgid "Gabon" -msgstr "Gabão" - -#: classes/class-wc-countries.php:267 -#@ woocommerce -msgid "United Kingdom" -msgstr "Reino Unido" - -#: classes/class-wc-countries.php:124 -#@ woocommerce -msgid "Grenada" -msgstr "Granada" - -#: classes/class-wc-countries.php:118 -#: i18n/states/US.php:23 -#@ woocommerce -msgid "Georgia" -msgstr "Geórgia" - -#: classes/class-wc-countries.php:113 -#@ woocommerce -msgid "French Guiana" -msgstr "Guiana Francesa" - -#: classes/class-wc-countries.php:127 -#@ woocommerce -msgid "Guernsey" -msgstr "Guernsey" - -#: classes/class-wc-countries.php:120 -#@ woocommerce -msgid "Ghana" -msgstr "Gana" - -#: classes/class-wc-countries.php:121 -#@ woocommerce -msgid "Gibraltar" -msgstr "Gibraltar" - -#: classes/class-wc-countries.php:123 -#@ woocommerce -msgid "Greenland" -msgstr "Groenlândia" - -#: classes/class-wc-countries.php:117 -#@ woocommerce -msgid "Gambia" -msgstr "Gâmbia" - -#: classes/class-wc-countries.php:128 -#@ woocommerce -msgid "Guinea" -msgstr "Guiné" - -#: classes/class-wc-countries.php:125 -#@ woocommerce -msgid "Guadeloupe" -msgstr "Guadalupe" - -#: classes/class-wc-countries.php:104 -#@ woocommerce -msgid "Equatorial Guinea" -msgstr "Guiné Equatorial" - -#: classes/class-wc-countries.php:122 -#@ woocommerce -msgid "Greece" -msgstr "Grécia" - -#: classes/class-wc-countries.php:126 -#@ woocommerce -msgid "Guatemala" -msgstr "Guatemala" - -#: i18n/states/US.php:68 -#@ woocommerce -msgid "Guam" -msgstr "Guam" - -#: classes/class-wc-countries.php:129 -#@ woocommerce -msgid "Guinea-Bissau" -msgstr "Guiné-Bissau" - -#: classes/class-wc-countries.php:130 -#@ woocommerce -msgid "Guyana" -msgstr "Guiana" - -#: classes/class-wc-countries.php:133 -#@ woocommerce -msgid "Honduras" -msgstr "Honduras" - -#: classes/class-wc-countries.php:92 -#@ woocommerce -msgid "Croatia" -msgstr "Croácia" - -#: classes/class-wc-countries.php:131 -#@ woocommerce -msgid "Haiti" -msgstr "Haiti" - -#: classes/class-wc-countries.php:135 -#@ woocommerce -msgid "Hungary" -msgstr "Hungria" - -#: classes/class-wc-countries.php:138 -#@ woocommerce -msgid "Indonesia" -msgstr "Indonésia" - -#: classes/class-wc-countries.php:143 -#@ woocommerce -msgid "Israel" -msgstr "Israel" - -#: classes/class-wc-countries.php:142 -#@ woocommerce -msgid "Isle of Man" -msgstr "Ilha de Man" - -#: classes/class-wc-countries.php:137 -#@ woocommerce -msgid "India" -msgstr "Índia" - -#: classes/class-wc-countries.php:69 -#@ woocommerce -msgid "British Indian Ocean Territory" -msgstr "Território Britânico do Oceano Índico" - -#: classes/class-wc-countries.php:140 -#@ woocommerce -msgid "Iraq" -msgstr "Iraque" - -#: classes/class-wc-countries.php:139 -#@ woocommerce -msgid "Iran" -msgstr "Irã" - -#: classes/class-wc-countries.php:136 -#@ woocommerce -msgid "Iceland" -msgstr "Islândia" - -#: classes/class-wc-countries.php:144 -#@ woocommerce -msgid "Italy" -msgstr "Itália" - -#: classes/class-wc-countries.php:148 -#@ woocommerce -msgid "Jersey" -msgstr "Jersey" - -#: classes/class-wc-countries.php:146 -#@ woocommerce -msgid "Jamaica" -msgstr "Jamaica" - -#: classes/class-wc-countries.php:149 -#@ woocommerce -msgid "Jordan" -msgstr "Jordânia" - -#: classes/class-wc-countries.php:147 -#@ woocommerce -msgid "Japan" -msgstr "Japão" - -#: classes/class-wc-countries.php:151 -#@ woocommerce -msgid "Kenya" -msgstr "Quênia" - -#: classes/class-wc-countries.php:154 -#@ woocommerce -msgid "Kyrgyzstan" -msgstr "Quirguistão" - -#: classes/class-wc-countries.php:75 -#@ woocommerce -msgid "Cambodia" -msgstr "Camboja" - -#: classes/class-wc-countries.php:152 -#@ woocommerce -msgid "Kiribati" -msgstr "Quiribáti" - -#: classes/class-wc-countries.php:87 -#@ woocommerce -msgid "Comoros" -msgstr "Comores" - -#: classes/class-wc-countries.php:219 -#@ woocommerce -msgid "Saint Kitts and Nevis" -msgstr "São Cristóvão e Nevis" - -#: classes/class-wc-countries.php:199 -#@ woocommerce -msgid "North Korea" -msgstr "Coréia do Norte" - -#: classes/class-wc-countries.php:239 -#@ woocommerce -msgid "South Korea" -msgstr "Coréia do Sul" - -#: classes/class-wc-countries.php:153 -#@ woocommerce -msgid "Kuwait" -msgstr "Kuweit" - -#: classes/class-wc-countries.php:79 -#@ woocommerce -msgid "Cayman Islands" -msgstr "Ilhas Cayman" - -#: classes/class-wc-countries.php:150 -#@ woocommerce -msgid "Kazakhstan" -msgstr "Cazaquistão" - -#: classes/class-wc-countries.php:155 -#@ woocommerce -msgid "Laos" -msgstr "Laos" - -#: classes/class-wc-countries.php:157 -#@ woocommerce -msgid "Lebanon" -msgstr "Líbano" - -#: classes/class-wc-countries.php:220 -#@ woocommerce -msgid "Saint Lucia" -msgstr "Santa Lúcia" - -#: classes/class-wc-countries.php:161 -#@ woocommerce -msgid "Liechtenstein" -msgstr "Liechtenstein" - -#: classes/class-wc-countries.php:242 -#@ woocommerce -msgid "Sri Lanka" -msgstr "Sri Lanka" - -#: classes/class-wc-countries.php:159 -#@ woocommerce -msgid "Liberia" -msgstr "Libéria" - -#: classes/class-wc-countries.php:158 -#@ woocommerce -msgid "Lesotho" -msgstr "Lesoto" - -#: classes/class-wc-countries.php:162 -#@ woocommerce -msgid "Lithuania" -msgstr "Lituânia" - -#: classes/class-wc-countries.php:163 -#@ woocommerce -msgid "Luxembourg" -msgstr "Luxemburgo" - -#: classes/class-wc-countries.php:156 -#@ woocommerce -msgid "Latvia" -msgstr "Látvia" - -#: classes/class-wc-countries.php:160 -#@ woocommerce -msgid "Libya" -msgstr "Líbia" - -#: classes/class-wc-countries.php:184 -#@ woocommerce -msgid "Morocco" -msgstr "Marrocos" - -#: classes/class-wc-countries.php:180 -#@ woocommerce -msgid "Monaco" -msgstr "Mônaco" - -#: classes/class-wc-countries.php:179 -#@ woocommerce -msgid "Moldova" -msgstr "Moldávia" - -#: classes/class-wc-countries.php:182 -#@ woocommerce -msgid "Montenegro" -msgstr "Montenegro" - -#: classes/class-wc-countries.php:221 -#@ woocommerce -msgid "Saint Martin (French part)" -msgstr "Ilha de São Martinho (República Francesa)" - -#: classes/class-wc-countries.php:166 -#@ woocommerce -msgid "Madagascar" -msgstr "Madagáscar" - -#: classes/class-wc-countries.php:172 -#@ woocommerce -msgid "Marshall Islands" -msgstr "Ilhas Marshall" - -#: classes/class-wc-countries.php:165 -#@ woocommerce -msgid "Macedonia" -msgstr "República da Macedónia" - -#: classes/class-wc-countries.php:170 -#@ woocommerce -msgid "Mali" -msgstr "Mali" - -#: classes/class-wc-countries.php:186 -#@ woocommerce -msgid "Myanmar" -msgstr "República da União de Myanmar" - -#: classes/class-wc-countries.php:181 -#@ woocommerce -msgid "Mongolia" -msgstr "Mongólia" - -#: classes/class-wc-countries.php:164 -#@ woocommerce -msgid "Macao S.A.R., China" -msgstr "Macau R.A.E, China" - -#: i18n/states/US.php:69 -#@ woocommerce -msgid "Northern Mariana Islands" -msgstr "Comunidade das Ilhas Marianas Setentrionais" - -#: classes/class-wc-countries.php:173 -#@ woocommerce -msgid "Martinique" -msgstr "Martinica" - -#: classes/class-wc-countries.php:174 -#@ woocommerce -msgid "Mauritania" -msgstr "Mauritânia" - -#: classes/class-wc-countries.php:183 -#@ woocommerce -msgid "Montserrat" -msgstr "Montserrat" - -#: classes/class-wc-countries.php:171 -#@ woocommerce -msgid "Malta" -msgstr "Malta" - -#: classes/class-wc-countries.php:175 -#@ woocommerce -msgid "Mauritius" -msgstr "Maurício" - -#: classes/class-wc-countries.php:169 -#@ woocommerce -msgid "Maldives" -msgstr "Maldivas" - -#: classes/class-wc-countries.php:167 -#@ woocommerce -msgid "Malawi" -msgstr "Malawi" - -#: classes/class-wc-countries.php:177 -#@ woocommerce -msgid "Mexico" -msgstr "México" - -#: classes/class-wc-countries.php:168 -#@ woocommerce -msgid "Malaysia" -msgstr "Malásia" - -#: classes/class-wc-countries.php:185 -#@ woocommerce -msgid "Mozambique" -msgstr "Moçambique" - -#: classes/class-wc-countries.php:187 -#@ woocommerce -msgid "Namibia" -msgstr "Namíbia" - -#: classes/class-wc-countries.php:192 -#@ woocommerce -msgid "New Caledonia" -msgstr "Nova Caledónia" - -#: classes/class-wc-countries.php:195 -#@ woocommerce -msgid "Niger" -msgstr "Níger" - -#: classes/class-wc-countries.php:198 -#@ woocommerce -msgid "Norfolk Island" -msgstr "Ilha Norfolk" - -#: classes/class-wc-countries.php:196 -#@ woocommerce -msgid "Nigeria" -msgstr "Nigéria" - -#: classes/class-wc-countries.php:194 -#@ woocommerce -msgid "Nicaragua" -msgstr "Nicarágua" - -#: classes/class-wc-countries.php:190 -#@ woocommerce -msgid "Netherlands" -msgstr "Holanda" - -#: classes/class-wc-countries.php:200 -#@ woocommerce -msgid "Norway" -msgstr "Noruega" - -#: classes/class-wc-countries.php:189 -#@ woocommerce -msgid "Nepal" -msgstr "Nepal" - -#: classes/class-wc-countries.php:188 -#@ woocommerce -msgid "Nauru" -msgstr "Nauru" - -#: classes/class-wc-countries.php:197 -#@ woocommerce -msgid "Niue" -msgstr "Niue" - -#: classes/class-wc-countries.php:193 -#@ woocommerce -msgid "New Zealand" -msgstr "Nova Zelândia" - -#: classes/class-wc-countries.php:201 -#@ woocommerce -msgid "Oman" -msgstr "Omã" - -#: classes/class-wc-countries.php:204 -#@ woocommerce -msgid "Panama" -msgstr "Panamá" - -#: classes/class-wc-countries.php:207 -#@ woocommerce -msgid "Peru" -msgstr "Peru" - -#: classes/class-wc-countries.php:114 -#@ woocommerce -msgid "French Polynesia" -msgstr "Polinésia Francesa" - -#: classes/class-wc-countries.php:205 -#@ woocommerce -msgid "Papua New Guinea" -msgstr "Papua-Nova Guiné" - -#: classes/class-wc-countries.php:208 -#@ woocommerce -msgid "Philippines" -msgstr "Filipinas" - -#: classes/class-wc-countries.php:202 -#@ woocommerce -msgid "Pakistan" -msgstr "Paquistão" - -#: classes/class-wc-countries.php:210 -#@ woocommerce -msgid "Poland" -msgstr "Polônia" - -#: classes/class-wc-countries.php:223 -#@ woocommerce -msgid "Saint Pierre and Miquelon" -msgstr "Saint-Pierre e Miquelon" - -#: classes/class-wc-countries.php:209 -#@ woocommerce -msgid "Pitcairn" -msgstr "Ilhas Pitcairn" - -#: i18n/states/US.php:70 -#@ woocommerce -msgid "Puerto Rico" -msgstr "Porto Rico" - -#: classes/class-wc-countries.php:203 -#@ woocommerce -msgid "Palestinian Territory" -msgstr "Território Palestino" - -#: classes/class-wc-countries.php:211 -#@ woocommerce -msgid "Portugal" -msgstr "Portugal" - -#: classes/class-wc-countries.php:206 -#@ woocommerce -msgid "Paraguay" -msgstr "Paraguai" - -#: classes/class-wc-countries.php:212 -#@ woocommerce -msgid "Qatar" -msgstr "Catar" - -#: classes/class-wc-countries.php:213 -#@ woocommerce -msgid "Reunion" -msgstr "Reunião" - -#: classes/class-wc-countries.php:214 -#@ woocommerce -msgid "Romania" -msgstr "Romênia" - -#: classes/class-wc-countries.php:229 -#@ woocommerce -msgid "Serbia" -msgstr "Sérvia" - -#: classes/class-wc-countries.php:215 -#@ woocommerce -msgid "Russia" -msgstr "Rússia" - -#: classes/class-wc-countries.php:216 -#@ woocommerce -msgid "Rwanda" -msgstr "Ruanda" - -#: classes/class-wc-countries.php:227 -#@ woocommerce -msgid "Saudi Arabia" -msgstr "Arábia Saudita" - -#: classes/class-wc-countries.php:235 -#@ woocommerce -msgid "Solomon Islands" -msgstr "Ilhas Salomão" - -#: classes/class-wc-countries.php:230 -#@ woocommerce -msgid "Seychelles" -msgstr "Seychelles" - -#: classes/class-wc-countries.php:243 -#@ woocommerce -msgid "Sudan" -msgstr "Sudão" - -#: classes/class-wc-countries.php:247 -#@ woocommerce -msgid "Sweden" -msgstr "Suécia" - -#: classes/class-wc-countries.php:232 -#@ woocommerce -msgid "Singapore" -msgstr "Cingapura" - -#: classes/class-wc-countries.php:218 -#@ woocommerce -msgid "Saint Helena" -msgstr "Santa Helena" - -#: classes/class-wc-countries.php:234 -#@ woocommerce -msgid "Slovenia" -msgstr "Eslovenia" - -#: classes/class-wc-countries.php:245 -#@ woocommerce -msgid "Svalbard and Jan Mayen" -msgstr "Svalbard e Jan Mayen" - -#: classes/class-wc-countries.php:233 -#@ woocommerce -msgid "Slovakia" -msgstr "Eslováquia" - -#: classes/class-wc-countries.php:231 -#@ woocommerce -msgid "Sierra Leone" -msgstr "Serra Leoa" - -#: classes/class-wc-countries.php:225 -#@ woocommerce -msgid "San Marino" -msgstr "San Marino" - -#: classes/class-wc-countries.php:228 -#@ woocommerce -msgid "Senegal" -msgstr "Senegal" - -#: classes/class-wc-countries.php:236 -#@ woocommerce -msgid "Somalia" -msgstr "Somália" - -#: classes/class-wc-countries.php:244 -#@ woocommerce -msgid "Suriname" -msgstr "Suriname" - -#: classes/class-wc-countries.php:103 -#@ woocommerce -msgid "El Salvador" -msgstr "El Salvador" - -#: classes/class-wc-countries.php:249 -#@ woocommerce -msgid "Syria" -msgstr "Síria" - -#: classes/class-wc-countries.php:246 -#@ woocommerce -msgid "Swaziland" -msgstr "Suazilândia" - -#: classes/class-wc-countries.php:262 -#@ woocommerce -msgid "Turks and Caicos Islands" -msgstr "Ilhas Turcas e Caicos" - -#: classes/class-wc-countries.php:81 -#@ woocommerce -msgid "Chad" -msgstr "Chade" - -#: classes/class-wc-countries.php:115 -#@ woocommerce -msgid "French Southern Territories" -msgstr "Território das Terras Austrais e Antárcticas Francesas" - -#: classes/class-wc-countries.php:255 -#@ woocommerce -msgid "Togo" -msgstr "Togo" - -#: classes/class-wc-countries.php:253 -#@ woocommerce -msgid "Thailand" -msgstr "Tailândia" - -#: classes/class-wc-countries.php:251 -#@ woocommerce -msgid "Tajikistan" -msgstr "Tajiquistão" - -#: classes/class-wc-countries.php:256 -#@ woocommerce -msgid "Tokelau" -msgstr "Tokelau" - -#: classes/class-wc-countries.php:254 -#@ woocommerce -msgid "Timor-Leste" -msgstr "Timor-Leste" - -#: classes/class-wc-countries.php:261 -#@ woocommerce -msgid "Turkmenistan" -msgstr "Turcomenistão" - -#: classes/class-wc-countries.php:259 -#@ woocommerce -msgid "Tunisia" -msgstr "Tunísia" - -#: classes/class-wc-countries.php:257 -#@ woocommerce -msgid "Tonga" -msgstr "Tonga" - -#: classes/class-wc-countries.php:260 -#@ woocommerce -msgid "Turkey" -msgstr "Turquia" - -#: classes/class-wc-countries.php:258 -#@ woocommerce -msgid "Trinidad and Tobago" -msgstr "Trinidad e Tobago" - -#: classes/class-wc-countries.php:263 -#@ woocommerce -msgid "Tuvalu" -msgstr "Tuvalu" - -#: classes/class-wc-countries.php:250 -#@ woocommerce -msgid "Taiwan" -msgstr "Taiwan" - -#: classes/class-wc-countries.php:252 -#@ woocommerce -msgid "Tanzania" -msgstr "Tanzânia" - -#: classes/class-wc-countries.php:265 -#@ woocommerce -msgid "Ukraine" -msgstr "Ucrânia" - -#: classes/class-wc-countries.php:264 -#@ woocommerce -msgid "Uganda" -msgstr "Uganda" - -#: classes/class-wc-countries.php:268 -#@ woocommerce -msgid "United States" -msgstr "Estados Unidos" - -#: classes/class-wc-countries.php:269 -#@ woocommerce -msgid "Uruguay" -msgstr "Uruguai" - -#: classes/class-wc-countries.php:270 -#@ woocommerce -msgid "Uzbekistan" -msgstr "Uzbequistão" - -#: classes/class-wc-countries.php:272 -#@ woocommerce -msgid "Vatican" -msgstr "Vaticano" - -#: classes/class-wc-countries.php:224 -#@ woocommerce -msgid "Saint Vincent and the Grenadines" -msgstr "São Vicente e Granadinas" - -#: classes/class-wc-countries.php:273 -#@ woocommerce -msgid "Venezuela" -msgstr "Venezuela" - -#: classes/class-wc-countries.php:70 -#@ woocommerce -msgid "British Virgin Islands" -msgstr "Ilhas Virgens Britânicas" - -#: classes/class-wc-countries.php:274 -#@ woocommerce -msgid "Vietnam" -msgstr "Vietnã" - -#: classes/class-wc-countries.php:271 -#@ woocommerce -msgid "Vanuatu" -msgstr "Vanuatu" - -#: classes/class-wc-countries.php:275 -#@ woocommerce -msgid "Wallis and Futuna" -msgstr "Wallis e Futuna" - -#: classes/class-wc-countries.php:278 -#@ woocommerce -msgid "Yemen" -msgstr "Iémen" - -#: classes/class-wc-countries.php:176 -#@ woocommerce -msgid "Mayotte" -msgstr "Mayotte" - -#: classes/class-wc-countries.php:237 -#@ woocommerce -msgid "South Africa" -msgstr "África do Sul" - -#: classes/class-wc-countries.php:279 -#@ woocommerce -msgid "Zambia" -msgstr "Zâmbia" - -#: classes/class-wc-countries.php:280 -#@ woocommerce -msgid "Zimbabwe" -msgstr "Zimbábue" - -#: i18n/states/AU.php:13 -#@ woocommerce -msgid "Australian Capital Territory" -msgstr "Território da Capital Australiana" - -#: i18n/states/AU.php:14 -#@ woocommerce -msgid "New South Wales" -msgstr "Nova Gales do Sul" - -#: i18n/states/AU.php:15 -#@ woocommerce -msgid "Northern Territory" -msgstr "Território do Norte" - -#: i18n/states/AU.php:16 -#@ woocommerce -msgid "Queensland" -msgstr "Queensland" - -#: i18n/states/AU.php:17 -#@ woocommerce -msgid "South Australia" -msgstr "Austrália Meridional" - -#: i18n/states/AU.php:18 -#@ woocommerce -msgid "Tasmania" -msgstr "Tasmânia" - -#: i18n/states/AU.php:19 -#@ woocommerce -msgid "Victoria" -msgstr "Victoria" - -#: i18n/states/AU.php:20 -#@ woocommerce -msgid "Western Australia" -msgstr "Austrália Ocidental" - -#: i18n/states/CA.php:13 -#@ woocommerce -msgid "Alberta" -msgstr "Alberta" - -#: i18n/states/CA.php:14 -#@ woocommerce -msgid "British Columbia" -msgstr "Colúmbia Britânica" - -#: i18n/states/CA.php:15 -#@ woocommerce -msgid "Manitoba" -msgstr "Manitoba" - -#: i18n/states/CA.php:16 -#@ woocommerce -msgid "New Brunswick" -msgstr "Nova Brunswick" - -#: i18n/states/CA.php:17 -#@ woocommerce -msgid "Newfoundland" -msgstr "Terra Nova" - -#: i18n/states/CA.php:18 -#@ woocommerce -msgid "Northwest Territories" -msgstr "Territórios do Noroeste" - -#: i18n/states/CA.php:19 -#@ woocommerce -msgid "Nova Scotia" -msgstr "Nova Escócia" - -#: i18n/states/CA.php:20 -#@ woocommerce -msgid "Nunavut" -msgstr "Nunavut" - -#: i18n/states/CA.php:21 -#@ woocommerce -msgid "Ontario" -msgstr "Ontário" - -#: i18n/states/CA.php:22 -#@ woocommerce -msgid "Prince Edward Island" -msgstr "Ilha do Príncipe Eduardo" - -#: i18n/states/CA.php:23 -#@ woocommerce -msgid "Quebec" -msgstr "Quebec" - -#: i18n/states/CA.php:24 -#@ woocommerce -msgid "Saskatchewan" -msgstr "Saskatchewan" - -#: i18n/states/CA.php:25 -#@ woocommerce -msgid "Yukon Territory" -msgstr "Yukon" - -#: i18n/states/US.php:13 -#@ woocommerce -msgid "Alabama" -msgstr "Alabama" - -#: i18n/states/US.php:15 -#@ woocommerce -msgid "Arizona" -msgstr "Arizona" - -#: i18n/states/US.php:16 -#@ woocommerce -msgid "Arkansas" -msgstr "Arkansas" - -#: i18n/states/US.php:17 -#@ woocommerce -msgid "California" -msgstr "Califórnia" - -#: i18n/states/US.php:18 -#@ woocommerce -msgid "Colorado" -msgstr "Colorado" - -#: i18n/states/US.php:19 -#@ woocommerce -msgid "Connecticut" -msgstr "Connecticut" - -#: i18n/states/US.php:20 -#@ woocommerce -msgid "Delaware" -msgstr "Delaware" - -#: i18n/states/US.php:21 -#@ woocommerce -msgid "District Of Columbia" -msgstr "Distrito de Columbia" - -#: i18n/states/US.php:22 -#@ woocommerce -msgid "Florida" -msgstr "Flórida" - -#: i18n/states/US.php:24 -#@ woocommerce -msgid "Hawaii" -msgstr "Havaí" - -#: i18n/states/US.php:25 -#@ woocommerce -msgid "Idaho" -msgstr "Idaho" - -#: i18n/states/US.php:26 -#@ woocommerce -msgid "Illinois" -msgstr "Illinois" - -#: i18n/states/US.php:27 -#@ woocommerce -msgid "Indiana" -msgstr "Indiana" - -#: i18n/states/US.php:28 -#@ woocommerce -msgid "Iowa" -msgstr "Iowa" - -#: i18n/states/US.php:29 -#@ woocommerce -msgid "Kansas" -msgstr "Kansas" - -#: i18n/states/US.php:30 -#@ woocommerce -msgid "Kentucky" -msgstr "Kentucky" - -#: i18n/states/US.php:31 -#@ woocommerce -msgid "Louisiana" -msgstr "Louisiana" - -#: i18n/states/US.php:32 -#@ woocommerce -msgid "Maine" -msgstr "Maine" - -#: i18n/states/US.php:33 -#@ woocommerce -msgid "Maryland" -msgstr "Maryland" - -#: i18n/states/US.php:34 -#@ woocommerce -msgid "Massachusetts" -msgstr "Massachusetts" - -#: i18n/states/US.php:35 -#@ woocommerce -msgid "Michigan" -msgstr "Michigan" - -#: i18n/states/US.php:36 -#@ woocommerce -msgid "Minnesota" -msgstr "Minnesota" - -#: i18n/states/US.php:37 -#@ woocommerce -msgid "Mississippi" -msgstr "Mississippi" - -#: i18n/states/US.php:38 -#@ woocommerce -msgid "Missouri" -msgstr "Missouri" - -#: i18n/states/US.php:39 -#@ woocommerce -msgid "Montana" -msgstr "Montana" - -#: i18n/states/US.php:40 -#@ woocommerce -msgid "Nebraska" -msgstr "Nebraska" - -#: i18n/states/US.php:41 -#@ woocommerce -msgid "Nevada" -msgstr "Nevada" - -#: i18n/states/US.php:42 -#@ woocommerce -msgid "New Hampshire" -msgstr "Nova Hampshire" - -#: i18n/states/US.php:43 -#@ woocommerce -msgid "New Jersey" -msgstr "Nova Jersey" - -#: i18n/states/US.php:44 -#@ woocommerce -msgid "New Mexico" -msgstr "Novo México" - -#: i18n/states/US.php:45 -#@ woocommerce -msgid "New York" -msgstr "Nova Iorque" - -#: i18n/states/US.php:46 -#@ woocommerce -msgid "North Carolina" -msgstr "Carolina do Norte" - -#: i18n/states/US.php:47 -#@ woocommerce -msgid "North Dakota" -msgstr "Dakota do Norte" - -#: i18n/states/US.php:48 -#@ woocommerce -msgid "Ohio" -msgstr "Ohio" - -#: i18n/states/US.php:49 -#@ woocommerce -msgid "Oklahoma" -msgstr "Oklahoma" - -#: i18n/states/US.php:50 -#@ woocommerce -msgid "Oregon" -msgstr "Oregon" - -#: i18n/states/US.php:51 -#@ woocommerce -msgid "Pennsylvania" -msgstr "Pensilvânia" - -#: i18n/states/US.php:52 -#@ woocommerce -msgid "Rhode Island" -msgstr "Rhode Island" - -#: i18n/states/US.php:53 -#@ woocommerce -msgid "South Carolina" -msgstr "Carolina do Sul" - -#: i18n/states/US.php:54 -#@ woocommerce -msgid "South Dakota" -msgstr "Dakota do Sul" - -#: i18n/states/US.php:55 -#@ woocommerce -msgid "Tennessee" -msgstr "Tennessee" - -#: i18n/states/US.php:56 -#@ woocommerce -msgid "Texas" -msgstr "Texas" - -#: i18n/states/US.php:57 -#@ woocommerce -msgid "Utah" -msgstr "Utah" - -#: i18n/states/US.php:58 -#@ woocommerce -msgid "Vermont" -msgstr "Vermont" - -#: i18n/states/US.php:59 -#@ woocommerce -msgid "Virginia" -msgstr "Virgínia" - -#: i18n/states/US.php:60 -#@ woocommerce -msgid "Washington" -msgstr "Washington" - -#: i18n/states/US.php:61 -#@ woocommerce -msgid "West Virginia" -msgstr "Virgínia Ocidental" - -#: i18n/states/US.php:62 -#@ woocommerce -msgid "Wisconsin" -msgstr "Wisconsin" - -#: i18n/states/US.php:63 -#@ woocommerce -msgid "Wyoming" -msgstr "Wyoming" - -#: classes/shortcodes/class-wc-shortcode-cart.php:53 -#: woocommerce-functions.php:1703 -#@ woocommerce -msgid "Please enter a valid postcode/ZIP." -msgstr "Digite um CEP válido." - -#: classes/shortcodes/class-wc-shortcode-cart.php:64 -#: classes/shortcodes/class-wc-shortcode-cart.php:70 -#@ woocommerce -msgid "Shipping costs updated." -msgstr "O custo de envio foi atualizado." - -#: templates/cart/cart-empty.php:14 -#@ woocommerce -msgid "Your cart is currently empty." -msgstr "Seu carrinho está vazio." - -#: templates/cart/cart-empty.php:18 -#@ woocommerce -msgid "← Return To Shop" -msgstr "← Voltar para Loja" - -#: templates/cart/cart.php:47 -#@ woocommerce -msgid "Remove this item" -msgstr "Remover este item" - -#: admin/woocommerce-admin-reports.php:1547 -#: classes/class-wc-post-types.php:327 -#: templates/cart/cart.php:127 -#@ woocommerce -msgid "Coupon" -msgstr "Cupom" - -#: templates/cart/cart.php:127 -#: templates/checkout/form-coupon.php:29 -#@ woocommerce -msgid "Apply Coupon" -msgstr "Aplicar cupom" - -#: templates/cart/cart.php:134 -#@ woocommerce -msgid "Proceed to Checkout →" -msgstr "Finalizar compra →" - -#: classes/shortcodes/class-wc-shortcode-checkout.php:225 -#@ woocommerce -msgid "The order totals have been updated. Please confirm your order by pressing the Place Order button at the bottom of the page." -msgstr "O total de pedidos foi atualizado. Por favor, confirme a sua encomenda, clicando no botão \"Confirmar pedido\" no final da página." - -#: templates/myaccount/my-downloads.php:18 -#@ woocommerce -msgid "Available downloads" -msgstr "Downloads disponíveis" - -#: templates/myaccount/my-orders.php:26 -#@ woocommerce -msgid "Recent Orders" -msgstr "Pedidos recentes" - -#: admin/post-types/writepanels/order-fee-html.php:43 -#: admin/post-types/writepanels/order-item-html.php:115 -#: admin/woocommerce-admin-reports.php:1562 -#: admin/woocommerce-admin-reports.php:1615 -#: admin/woocommerce-admin-reports.php:2386 -#: admin/woocommerce-admin-reports.php:2555 -#: admin/woocommerce-admin-reports.php:2633 -#: templates/cart/cart.php:31 -#: templates/checkout/review-order.php:22 -#: templates/myaccount/my-orders.php:35 -#: templates/order/order-details.php:21 -#@ woocommerce -msgid "Total" -msgstr "Total" - -#: templates/checkout/thankyou.php:28 -#: templates/myaccount/my-orders.php:71 -#@ woocommerce -msgid "Pay" -msgstr "Pagar" - -#: admin/post-types/writepanels/writepanel-product_data.php:138 -#: admin/post-types/writepanels/writepanel-product_data.php:1082 -#: templates/myaccount/my-orders.php:77 -#@ woocommerce -msgid "Cancel" -msgstr "Cancelar" - -#: admin/post-types/product.php:167 -#: admin/post-types/shop_order.php:171 -#: templates/myaccount/my-orders.php:82 -#@ default -#@ woocommerce -msgid "View" -msgstr "Visualizar" - -#: templates/myaccount/my-address.php:35 -#@ woocommerce -msgid "The following addresses will be used on the checkout page by default." -msgstr "O endereço a seguir será usado na página de checkout como endereço padrão, mas você poderá informar outros endereço diretamente no checkout." - -#: classes/class-wc-countries.php:972 -#@ woocommerce -msgid "State" -msgstr "Estado (UF)" - -#: templates/myaccount/form-edit-address.php:43 -#@ woocommerce -msgid "Save Address" -msgstr "Salvar endereços" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:78 -#@ woocommerce -msgid "Please enter your password." -msgstr "Por favor, Informe sua senha." - -#: templates/myaccount/form-lost-password.php:31 -#@ woocommerce -msgid "New password" -msgstr "Nova senha" - -#: templates/myaccount/form-lost-password.php:35 -#@ woocommerce -msgid "Re-enter new password" -msgstr "Digite sua senha novamente" - -#: templates/myaccount/form-lost-password.php:45 -#@ woocommerce -msgid "Save" -msgstr "Salvar" - -#: classes/shortcodes/class-wc-shortcode-my-account.php:99 -#: templates/order/tracking.php:31 -#@ woocommerce -msgid "Order Updates" -msgstr "Atualizações do pedido" - -#: admin/post-types/writepanels/writepanel-order_data.php:59 -#: templates/order/order-details.php:16 -#@ woocommerce -msgid "Order Details" -msgstr "Detalhes do pedido" - -#: admin/post-types/writepanels/writepanel-order_data.php:347 -#: templates/checkout/form-pay.php:20 -#@ woocommerce -msgid "Qty" -msgstr "Qtd" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -#: templates/checkout/form-pay.php:21 -#@ woocommerce -msgid "Totals" -msgstr "Total" - -#: admin/post-types/writepanels/order-item-html.php:117 -#: templates/cart/mini-cart.php:63 -#@ woocommerce -msgid "Subtotal" -msgstr "Subtotal" - -#: admin/woocommerce-admin-functions.php:222 -#: templates/emails/admin-new-order.php:50 -#: templates/emails/customer-completed-order.php:51 -#: templates/emails/customer-note.php:55 -#: templates/emails/customer-processing-order.php:51 -#: templates/emails/plain/admin-new-order.php:38 -#: templates/order/order-details.php:91 -#@ woocommerce -msgid "Customer details" -msgstr "Dados do cliente" - -#: admin/post-types/shop_order.php:101 -#: templates/emails/admin-new-order.php:53 -#: templates/emails/customer-completed-order.php:54 -#: templates/emails/customer-note.php:58 -#: templates/emails/customer-processing-order.php:54 -#: templates/emails/plain/admin-new-order.php:41 -#: templates/emails/plain/customer-completed-order.php:41 -#: templates/emails/plain/customer-note.php:49 -#: templates/emails/plain/customer-processing-order.php:41 -#: templates/order/order-details.php:95 -#@ woocommerce -msgid "Email:" -msgstr "Email:" - -#: templates/order/order-details.php:96 -#@ woocommerce -msgid "Telephone:" -msgstr "Telefone:" - -#: templates/order/tracking.php:20 -#@ woocommerce -msgid " ago" -msgstr "atrás" - -#: templates/order/form-tracking.php:17 -#@ woocommerce -msgid "To track your order please enter your Order ID in the box below and press return. This was given to you on your receipt and in the confirmation email you should have received." -msgstr "Para acompanhar o seu pedido, por favor digite o seu ID do Pedido na caixa abaixo e pressione enter. Esta informação foi enviada a você no email de confirmação da compra." - -#: templates/order/form-tracking.php:19 -#@ woocommerce -msgid "Order ID" -msgstr "ID do pedido" - -#: templates/order/form-tracking.php:19 -#@ woocommerce -msgid "Found in your order confirmation email." -msgstr "Encontrado no seu e-mail de confirmação do pedido." - -#: templates/order/form-tracking.php:20 -#@ woocommerce -msgid "Billing Email" -msgstr "E-mail de cobrança" - -#: templates/order/form-tracking.php:20 -#@ woocommerce -msgid "Email you used during checkout." -msgstr "Email utilizado durante o checkout." - -#: classes/shortcodes/class-wc-shortcode-checkout.php:103 -#: classes/shortcodes/class-wc-shortcode-checkout.php:153 -#@ woocommerce -msgid "Your order has already been paid for. Please contact us if you need assistance." -msgstr "Seu pedido já está pago. Entre em contato com nosso atendimento se precisar de ajuda." - -#: classes/shortcodes/class-wc-shortcode-checkout.php:108 -#: classes/shortcodes/class-wc-shortcode-checkout.php:160 -#: classes/shortcodes/class-wc-shortcode-my-account.php:86 -#: woocommerce-functions.php:946 -#: woocommerce-functions.php:1026 -#@ woocommerce -msgid "Invalid order." -msgstr "Pedido inválido." - -#: admin/woocommerce-admin-functions.php:196 -#: classes/shortcodes/class-wc-shortcode-checkout.php:125 -#: templates/checkout/thankyou.php:40 -#: templates/emails/customer-completed-order.php:18 -#: templates/emails/customer-invoice.php:22 -#: templates/emails/customer-note.php:22 -#: templates/emails/customer-processing-order.php:18 -#@ woocommerce -msgid "Order:" -msgstr "Pedido:" - -#: classes/shortcodes/class-wc-shortcode-checkout.php:129 -#: templates/checkout/thankyou.php:44 -#@ woocommerce -msgid "Date:" -msgstr "Data:" - -#: classes/shortcodes/class-wc-shortcode-checkout.php:138 -#: templates/checkout/thankyou.php:53 -#@ woocommerce -msgid "Payment method:" -msgstr "Meio de pagamento:" - -#: templates/checkout/thankyou.php:18 -#@ woocommerce -msgid "Unfortunately your order cannot be processed as the originating bank/merchant has declined your transaction." -msgstr "Infelizmente seu pedido não pode ser processado. O banco (ou operadora) não aprovou seu pagamento." - -#: templates/checkout/thankyou.php:22 -#@ woocommerce -msgid "Please attempt your purchase again or go to your account page." -msgstr "Por favor, tente realizar sua compra novamente ou vá para a página de sua conta." - -#: templates/checkout/thankyou.php:24 -#@ woocommerce -msgid "Please attempt your purchase again." -msgstr "Por favor, tente realizar a compra novamente." - -#: templates/checkout/thankyou.php:36 -#: templates/checkout/thankyou.php:67 -#@ woocommerce -msgid "Thank you. Your order has been received." -msgstr "Obrigado. Seu pedido foi recebido." - -#: templates/checkout/form-checkout.php:51 -#@ woocommerce -msgid "Your order" -msgstr "Seu pedido" - -#: templates/checkout/form-pay.php:78 -#@ woocommerce -msgid "Sorry, it seems that there are no available payment methods for your location. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "Desculpe, parece que não existem métodos de pagamento disponíveis para sua região. Entre em contato conosco se você precisar de ajuda ou quiser negociar outra forma de pagamento." - -#: templates/checkout/form-pay.php:87 -#@ woocommerce -msgid "Pay for order" -msgstr "Pagar pedido" - -#: templates/checkout/review-order.php:174 -#@ woocommerce -msgid "Please fill in your details above to see available payment methods." -msgstr "Por favor, informe os dados acima para ver os meios de pagamento disponíveis." - -#: templates/checkout/review-order.php:176 -#@ woocommerce -msgid "Sorry, it seems that there are no available payment methods for your state. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "Desculpe, parece que não existem métodos de pagamento disponíveis para sua região. Entre em contato conosco se você precisar de ajuda ou quiser negociar outra forma de pagamento." - -#: templates/checkout/review-order.php:185 -#@ woocommerce -msgid "Since your browser does not support JavaScript, or it is disabled, please ensure you click the Update Totals button before placing your order. You may be charged more than the amount stated above if you fail to do so." -msgstr "Seu navegador não suporta JavaScript ou ele está desativado, por favor clique no botão Atualizar antes de finalizar seu pedido. Você pode ser cobrado mais do que a quantidade indicada acima, se você deixar de clicar." - -#: templates/checkout/review-order.php:185 -#@ woocommerce -msgid "Update totals" -msgstr "Atualizar" - -#: templates/checkout/review-order.php:192 -#@ woocommerce -msgid "Place order" -msgstr "Finalizar pedido" - -#: templates/checkout/review-order.php:199 -#@ woocommerce -msgid "terms & conditions" -msgstr "termos & condições" - -#: classes/class-wc-order.php:961 -#@ woocommerce -msgid "Shipping:" -msgstr "Frete:" - -#: admin/post-types/shop_order.php:104 -#: templates/emails/admin-new-order.php:56 -#: templates/emails/customer-completed-order.php:57 -#: templates/emails/customer-note.php:61 -#: templates/emails/customer-processing-order.php:57 -#: templates/emails/plain/admin-new-order.php:44 -#: templates/emails/plain/customer-completed-order.php:44 -#: templates/emails/plain/customer-note.php:52 -#: templates/emails/plain/customer-processing-order.php:44 -#@ woocommerce -msgid "Tel:" -msgstr "Tel:" - -#: admin/woocommerce-admin-functions.php:228 -#: templates/emails/email-addresses.php:18 -#: templates/emails/plain/email-addresses.php:12 -#@ woocommerce -msgid "Billing address" -msgstr "Endereço de cobrança" - -#: admin/woocommerce-admin-functions.php:235 -#: templates/emails/email-addresses.php:28 -#: templates/emails/plain/email-addresses.php:17 -#@ woocommerce -msgid "Shipping address" -msgstr "Endereço de entrega" - -#: admin/settings/settings-init.php:968 -#@ woocommerce -msgid "Powered by WooCommerce" -msgstr "Criado com WooCommerce" - -#: templates/loop/no-products-found.php:14 -#: templates/loop-shop.php:40 -#@ woocommerce -msgid "No products found which match your selection." -msgstr "Nenhum produto foi encontrado para sua seleção." - -#: templates/single-product-reviews.php:30 -#, php-format -#@ woocommerce -msgid "%s review for %s" -msgid_plural "%s reviews for %s" -msgstr[0] "%s avaliação para %s" -msgstr[1] "%s avaliações para %s" - -#: admin/post-types/writepanels/writepanels-init.php:64 -#: templates/single-product-reviews.php:36 -#: templates/single-product-reviews.php:42 -#@ woocommerce -msgid "Reviews" -msgstr "Avaliações" - -#: templates/single-product-reviews.php:58 -#@ woocommerce -msgid " Previous" -msgstr " Anterior" - -#: templates/single-product-reviews.php:59 -#@ woocommerce -msgid "Next " -msgstr " próxima" - -#: templates/single-product-reviews.php:63 -#@ woocommerce -msgid "Add Review" -msgstr "Adicionar avaliação" - -#: templates/single-product-reviews.php:65 -#@ woocommerce -msgid "Add a review" -msgstr "Adicionar uma revisão" - -#: admin/post-types/writepanels/writepanel-order_data.php:182 -#: admin/woocommerce-admin-profile.php:65 -#: templates/single-product-reviews.php:86 -#@ woocommerce -msgid "Email" -msgstr "Email" - -#: templates/single-product-reviews.php:89 -#@ woocommerce -msgid "Submit Review" -msgstr "Enviar avaliação" - -#: templates/single-product-reviews.php:96 -#@ woocommerce -msgid "Rating" -msgstr "Nota" - -#: templates/single-product-reviews.php:98 -#@ woocommerce -msgid "Perfect" -msgstr "Perfeito" - -#: templates/single-product-reviews.php:99 -#@ woocommerce -msgid "Good" -msgstr "Bom" - -#: templates/single-product-reviews.php:100 -#@ woocommerce -msgid "Average" -msgstr "Razoável" - -#: templates/single-product-reviews.php:101 -#@ woocommerce -msgid "Not that bad" -msgstr "Nada mal" - -#: templates/single-product-reviews.php:102 -#@ woocommerce -msgid "Very Poor" -msgstr "Muito ruim" - -#: templates/cart/mini-cart.php:55 -#@ woocommerce -msgid "No products in the cart." -msgstr "Nenhum produto no carrinho." - -#: classes/class-wc-cart.php:869 -#: classes/class-wc-cart.php:883 -#: classes/class-wc-cart.php:891 -#: templates/cart/mini-cart.php:68 -#: woocommerce-functions.php:489 -#: woocommerce.php:833 -#@ woocommerce -msgid "View Cart →" -msgstr "Ver carrinho →" - -#: templates/cart/mini-cart.php:69 -#@ woocommerce -msgid "Checkout →" -msgstr "Finalizar →" - -#: classes/widgets/class-wc-widget-products.php:44 -#@ woocommerce -msgid "Featured Products" -msgstr "Produtos em destaque" - -#: classes/widgets/class-wc-widget-layered-nav.php:23 -#@ woocommerce -msgid "Shows a custom attribute in a widget which lets you narrow down the list of products when viewing product categories." -msgstr "Mostra um atributo personalizado em um widget que permite diminuir a lista de produtos ao visualizar categorias de produtos." - -#: classes/widgets/class-wc-widget-layered-nav.php:25 -#@ woocommerce -msgid "WooCommerce Layered Nav" -msgstr "WooCommerce Camada de navegação" - -#: classes/widgets/class-wc-widget-price-filter.php:23 -#@ woocommerce -msgid "Shows a price filter slider in a widget which lets you narrow down the list of shown products when viewing product categories." -msgstr "Mostra uma barra de filtro de preço em um widget que permite diminuir a lista de produtos apresentado as categorias de produtos." - -#: classes/widgets/class-wc-widget-price-filter.php:25 -#@ woocommerce -msgid "WooCommerce Price Filter" -msgstr "WooCommerce filtro de preço" - -#: classes/widgets/class-wc-widget-price-filter.php:29 -#@ woocommerce -msgid "Filter by price" -msgstr "Filtrado por preço" - -#: classes/widgets/class-wc-widget-product-categories.php:24 -#@ woocommerce -msgid "A list or dropdown of product categories." -msgstr "Uma lista da categoria de produtos." - -#: classes/widgets/class-wc-widget-product-categories.php:26 -#@ woocommerce -msgid "WooCommerce Product Categories" -msgstr "WooCommerce Categoria de produtos" - -#: classes/widgets/class-wc-widget-product-categories.php:45 -#@ woocommerce -msgid "Show as dropdown" -msgstr "Exibir dropdown" - -#: classes/widgets/class-wc-widget-product-categories.php:50 -#@ woocommerce -msgid "Show post counts" -msgstr "Exibir contagem de posts" - -#: classes/widgets/class-wc-widget-product-categories.php:55 -#@ woocommerce -msgid "Show hierarchy" -msgstr "Exibir hierarquia" - -#: classes/widgets/class-wc-widget-product-search.php:21 -#@ woocommerce -msgid "A Search box for products only." -msgstr "A caixa de pesquisa apenas para os produtos." - -#: classes/widgets/class-wc-widget-product-search.php:23 -#@ woocommerce -msgid "WooCommerce Product Search" -msgstr "WooCommerce Pesquisa de produtos" - -#: woocommerce-template.php:1548 -#@ woocommerce -msgid "Search for:" -msgstr "Pesquisar por:" - -#: woocommerce-template.php:1549 -#@ woocommerce -msgid "Search for products" -msgstr "Procurar produtos" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:21 -#@ woocommerce -msgid "Your most used product tags in cloud format." -msgstr "As etiquetas mais utilizadas são exibidas em forma de nuvem." - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:23 -#@ woocommerce -msgid "WooCommerce Product Tags" -msgstr "WooCommerce Etiqueta de produtos" - -#: classes/widgets/class-wc-widget-recent-reviews.php:21 -#@ woocommerce -msgid "Display a list of your most recent reviews on your site." -msgstr "Exibir uma lista de seus avaliações mais recentes no seu site." - -#: admin/woocommerce-admin-dashboard.php:45 -#: classes/widgets/class-wc-widget-recent-reviews.php:23 -#@ woocommerce -msgid "WooCommerce Recent Reviews" -msgstr "WooCommerce Avaliações recentes" - -#: classes/widgets/class-wc-widget-recent-reviews.php:27 -#@ woocommerce -msgid "Recent Reviews" -msgstr "Avaliações recentes" - -#: classes/widgets/class-wc-widget-recently-viewed.php:21 -#@ woocommerce -msgid "Display a list of recently viewed products." -msgstr "Exibir uma lista de produtos visualizados recentemente." - -#: classes/widgets/class-wc-widget-top-rated-products.php:25 -#@ woocommerce -msgid "WooCommerce Top Rated Products" -msgstr "WooCommerce Produtos mais avaliados" - -#: classes/widgets/class-wc-widget-product-categories.php:30 -#: classes/widgets/class-wc-widget-top-rated-products.php:29 -#@ woocommerce -msgid "Top Rated Products" -msgstr "Produtos mais vendidos" - -#: admin/woocommerce-admin-customers.php:29 -#: woocommerce-core-functions.php:2020 -#@ woocommerce -msgid "Customer" -msgstr "Cliente" - -#: woocommerce-core-functions.php:2027 -#@ woocommerce -msgid "Shop Manager" -msgstr "Gerenciar loja" - -#: woocommerce-functions.php:1305 -#@ woocommerce -msgid "You have taken too long. Please go back and refresh the page." -msgstr "Você ficou muito tempo inativo. Por favor, atualize a página." - -#: woocommerce-functions.php:1308 -#@ woocommerce -msgid "Please rate the product." -msgstr "Avalie este produto." - -#: templates/single-product/review.php:33 -#@ woocommerce -msgid "Your comment is awaiting approval" -msgstr "Seu comentário está aguardando aprovação" - -#: woocommerce-ajax.php:119 -#@ woocommerce -msgid "Sorry, your session has expired." -msgstr "Desculpe, sua sessão expirou." - -#: woocommerce-ajax.php:119 -#@ woocommerce -msgid "Return to homepage →" -msgstr "Retornar a página inicial →" - -#: woocommerce-functions.php:218 -#: woocommerce-functions.php:263 -#@ woocommerce -msgid "Cart updated." -msgstr "Carrinho atualizado." - -#: woocommerce-functions.php:307 -#: woocommerce-functions.php:365 -#@ woocommerce -msgid "Please choose product options…" -msgstr "Por favor, escolha as opções de produto" - -#: woocommerce-functions.php:653 -#@ woocommerce -msgid "Username is required." -msgstr "Nome de usuário é obrigatório" - -#: woocommerce-functions.php:655 -#@ woocommerce -msgid "Password is required." -msgstr "Senha é obrigatória." - -#: woocommerce-functions.php:933 -#@ woocommerce -msgid "Order cancelled by customer." -msgstr "Pedido cancelado pelo cliente." - -#: woocommerce-functions.php:936 -#@ woocommerce -msgid "Your order was cancelled." -msgstr "Seu pedido foi cancelado." - -#: woocommerce-functions.php:942 -#@ woocommerce -msgid "Your order is no longer pending and could not be cancelled. Please contact us if you need assistance." -msgstr "Seu pedido não está mais pendente e não pode ser cancelado. Entre em contato com nosso atendimento se precisar de ajuda." - -#: classes/class-wc-emails.php:284 -#@ woocommerce -msgid "Product low in stock" -msgstr "Produto com baixo estoque" - -#: classes/class-wc-emails.php:293 -#@ woocommerce -msgid "is low in stock." -msgstr "Está abaixo do estoque mínimo." - -#: classes/class-wc-emails.php:316 -#@ woocommerce -msgid "Product out of stock" -msgstr "Produto em falta" - -#: classes/class-wc-emails.php:325 -#@ woocommerce -msgid "is out of stock." -msgstr "Está em falta." - -#: classes/class-wc-emails.php:360 -#@ woocommerce -msgid "Product Backorder" -msgstr "Demanda de produto" - -#: classes/class-wc-post-types.php:64 -#@ woocommerce -msgid "Search Product Categories" -msgstr "Pesquisa de categoria de produtos" - -#: classes/class-wc-post-types.php:65 -#@ woocommerce -msgid "All Product Categories" -msgstr "Todas" - -#: classes/class-wc-post-types.php:66 -#@ woocommerce -msgid "Parent Product Category" -msgstr "Categoria de Produtos pai" - -#: classes/class-wc-post-types.php:67 -#@ woocommerce -msgid "Parent Product Category:" -msgstr "Categoria de Produtos pai:" - -#: classes/class-wc-post-types.php:68 -#@ woocommerce -msgid "Edit Product Category" -msgstr "Editar Categoria de Produto" - -#: classes/class-wc-post-types.php:69 -#@ woocommerce -msgid "Update Product Category" -msgstr "Atualização Categoria de Produto" - -#: classes/class-wc-post-types.php:70 -#@ woocommerce -msgid "Add New Product Category" -msgstr "Adicionar nova categoria de produto" - -#: classes/class-wc-post-types.php:71 -#@ woocommerce -msgid "New Product Category Name" -msgstr "Nome da nova categoria de produto" - -#: admin/includes/updates/woocommerce-update-2.0.php:49 -#: admin/woocommerce-admin-init.php:919 -#: classes/class-wc-post-types.php:82 -#@ woocommerce -msgctxt "slug" -msgid "product-category" -msgstr "categoria-produto" - -#: classes/class-wc-post-types.php:99 -#@ woocommerce -msgid "Search Product Tags" -msgstr "Pesquisar etiqueta de produto" - -#: classes/class-wc-post-types.php:100 -#@ woocommerce -msgid "All Product Tags" -msgstr "Todas as etiquetas de produtos" - -#: classes/class-wc-post-types.php:101 -#@ woocommerce -msgid "Parent Product Tag" -msgstr "Produto etiqueta pai" - -#: classes/class-wc-post-types.php:102 -#@ woocommerce -msgid "Parent Product Tag:" -msgstr "Produto Tag pai:" - -#: classes/class-wc-post-types.php:103 -#@ woocommerce -msgid "Edit Product Tag" -msgstr "Editar etiqueta de Produto" - -#: classes/class-wc-post-types.php:104 -#@ woocommerce -msgid "Update Product Tag" -msgstr "Atualizar etiqueta de produto" - -#: classes/class-wc-post-types.php:105 -#@ woocommerce -msgid "Add New Product Tag" -msgstr "Nova etiqueta de produto" - -#: classes/class-wc-post-types.php:106 -#@ woocommerce -msgid "New Product Tag Name" -msgstr "Nome da nova etiqueta" - -#: admin/includes/updates/woocommerce-update-2.0.php:50 -#: admin/woocommerce-admin-init.php:932 -#: classes/class-wc-post-types.php:117 -#@ woocommerce -msgctxt "slug" -msgid "product-tag" -msgstr "produto-etiqueta" - -#: classes/class-wc-post-types.php:239 -#@ woocommerce -msgid "Add Product" -msgstr "Novo produto" - -#: classes/class-wc-post-types.php:240 -#@ woocommerce -msgid "Add New Product" -msgstr "Novo produto" - -#: classes/class-wc-post-types.php:242 -#@ woocommerce -msgid "Edit Product" -msgstr "Editar produto" - -#: classes/class-wc-post-types.php:243 -#@ woocommerce -msgid "New Product" -msgstr "Novo produto" - -#: classes/class-wc-post-types.php:244 -#: classes/class-wc-post-types.php:245 -#@ woocommerce -msgid "View Product" -msgstr "Detalhes do produto" - -#: classes/class-wc-post-types.php:246 -#: classes/widgets/class-wc-widget-product-search.php:27 -#@ woocommerce -msgid "Search Products" -msgstr "Procurar produtos" - -#: classes/class-wc-post-types.php:247 -#@ woocommerce -msgid "No Products found" -msgstr "Nenhum produto encontrado" - -#: classes/class-wc-post-types.php:248 -#@ woocommerce -msgid "No Products found in trash" -msgstr "Nenhum produto encontrado na lixeira" - -#: classes/class-wc-post-types.php:251 -#@ woocommerce -msgid "This is where you can add new products to your store." -msgstr "Aqui você pode adicionar novos produtos para sua loja." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -#: classes/class-wc-post-types.php:271 -#@ woocommerce -msgid "Variations" -msgstr "Variações" - -#: classes/class-wc-post-types.php:291 -#@ woocommerce -msgid "Add Order" -msgstr "Adicionar pedido" - -#: classes/class-wc-post-types.php:292 -#@ woocommerce -msgid "Add New Order" -msgstr "Adicionar novo pedido" - -#: classes/class-wc-post-types.php:294 -#@ woocommerce -msgid "Edit Order" -msgstr "Editar pedido" - -#: classes/class-wc-post-types.php:295 -#@ woocommerce -msgid "New Order" -msgstr "Novo pedido" - -#: classes/class-wc-post-types.php:298 -#@ woocommerce -msgid "Search Orders" -msgstr "Pesquisar pedidos" - -#: classes/class-wc-post-types.php:299 -#@ woocommerce -msgid "No Orders found" -msgstr "Nenhum pedido encontrado" - -#: classes/class-wc-post-types.php:300 -#@ woocommerce -msgid "No Orders found in trash" -msgstr "Nenhum pedido na lixeira" - -#: classes/class-wc-post-types.php:301 -#@ woocommerce -msgid "Parent Orders" -msgstr "Pedidos principais" - -#: classes/class-wc-post-types.php:304 -#@ woocommerce -msgid "This is where store orders are stored." -msgstr "Isto é onde os pedidos são armazenados." - -#: admin/settings/settings-init.php:95 -#: admin/woocommerce-admin-content.php:61 -#: admin/woocommerce-admin-content.php:76 -#: admin/woocommerce-admin-reports.php:63 -#: classes/class-wc-post-types.php:326 -#@ woocommerce -msgid "Coupons" -msgstr "Cupons" - -#: classes/class-wc-post-types.php:329 -#@ woocommerce -msgid "Add Coupon" -msgstr "Adicionar cupom" - -#: classes/class-wc-post-types.php:330 -#@ woocommerce -msgid "Add New Coupon" -msgstr "Adicionar novo cupom" - -#: classes/class-wc-post-types.php:332 -#@ woocommerce -msgid "Edit Coupon" -msgstr "Editar cupom" - -#: classes/class-wc-post-types.php:333 -#@ woocommerce -msgid "New Coupon" -msgstr "Novo cupom" - -#: classes/class-wc-post-types.php:334 -#@ woocommerce -msgid "View Coupons" -msgstr "Ver cupons" - -#: classes/class-wc-post-types.php:335 -#@ woocommerce -msgid "View Coupon" -msgstr "Visualizar cupom" - -#: classes/class-wc-post-types.php:336 -#@ woocommerce -msgid "Search Coupons" -msgstr "Procurar cupons" - -#: classes/class-wc-post-types.php:337 -#@ woocommerce -msgid "No Coupons found" -msgstr "Nenhum cupom encontrado" - -#: classes/class-wc-post-types.php:338 -#@ woocommerce -msgid "No Coupons found in trash" -msgstr "Nenhum cupom encontrado na lixeira" - -#: classes/class-wc-post-types.php:339 -#@ woocommerce -msgid "Parent Coupon" -msgstr "Cupom principal" - -#: classes/class-wc-post-types.php:341 -#@ woocommerce -msgid "This is where you can add new coupons that customers can use in your store." -msgstr "Isto é onde você pode adicionar novos cupons para seus clientes usarem na sua loja." - -#: templates/loop/sale-flash.php:16 -#: templates/single-product/sale-flash.php:16 -#@ woocommerce -msgid "Sale!" -msgstr "Compre agora" - -#: templates/loop/add-to-cart.php:17 -#: templates/loop/add-to-cart.php:41 -#: templates/loop/add-to-cart.php:50 -#@ woocommerce -msgid "Read More" -msgstr "Saiba mais" - -#: templates/loop/add-to-cart.php:33 -#@ woocommerce -msgid "Select options" -msgstr "Ver opções" - -#: templates/loop/add-to-cart.php:37 -#@ woocommerce -msgid "View options" -msgstr "Ver opções" - -#: admin/settings/settings-init.php:404 -#: classes/class-wc-shortcodes.php:518 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:274 -#: templates/loop/add-to-cart.php:46 -#: templates/single-product/add-to-cart/grouped.php:45 -#: templates/single-product/add-to-cart/grouped.php:77 -#: templates/single-product/add-to-cart/simple.php:42 -#: templates/single-product/add-to-cart/variable.php:83 -#@ woocommerce -msgid "Add to cart" -msgstr "Comprar" - -#: templates/single-product/add-to-cart/variable.php:24 -#@ woocommerce -msgid "Choose an option" -msgstr "Escolha uma opção" - -#: templates/checkout/form-shipping.php:57 -#: templates/single-product/tabs/additional-information.php:14 -#: woocommerce-template.php:759 -#@ woocommerce -msgid "Additional Information" -msgstr "Informação adicional" - -#: templates/single-product/tabs/description.php:14 -#@ woocommerce -msgid "Product Description" -msgstr "Descrição do produto" - -#: templates/single-product/related.php:36 -#@ woocommerce -msgid "Related Products" -msgstr "Produtos relacionados" - -#: templates/cart/shipping-calculator.php:22 -#@ woocommerce -msgid "Calculate Shipping" -msgstr "Calcular frete" - -#: templates/cart/shipping-calculator.php:85 -#@ woocommerce -msgid "Update Totals" -msgstr "Atualizar total" - -#: templates/cart/totals.php:22 -#@ woocommerce -msgid "Cart Totals" -msgstr "Total no carrinho" - -#: templates/myaccount/form-login.php:26 -#: templates/myaccount/form-login.php:40 -#: templates/shop/form-login.php:31 -#@ woocommerce -msgid "Login" -msgstr "Login" - -#: templates/myaccount/form-login.php:49 -#: templates/shop/form-login.php:33 -#@ woocommerce -msgid "Lost Password?" -msgstr "Perdeu a senha?" - -#: templates/checkout/form-login.php:17 -#@ woocommerce -msgid "Click here to login" -msgstr "Clique aqui para entrar" - -#: woocommerce-template.php:1020 -#@ woocommerce -msgctxt "breadcrumb" -msgid "Home" -msgstr "Home" - -#: templates/shop/breadcrumb.php:63 -#@ woocommerce -msgid "Products tagged “" -msgstr "Produtos etiquetados com "" - -#: templates/shop/breadcrumb.php:91 -#: templates/shop/breadcrumb.php:188 -#@ woocommerce -msgid "Search results for “" -msgstr "Procurar produtos por “" - -#: templates/shop/breadcrumb.php:146 -#@ woocommerce -msgid "Error 404" -msgstr "Erro 404" - -#: templates/shop/breadcrumb.php:192 -#@ woocommerce -msgid "Posts tagged “" -msgstr "Posts com etiqueta "" - -#: templates/shop/breadcrumb.php:202 -#@ woocommerce -msgid "Page" -msgstr "Página" - -#: templates/single-product/up-sells.php:39 -#@ woocommerce -msgid "You may also like…" -msgstr "Você vai gostar disso…" - -#: templates/cart/cross-sells.php:38 -#@ woocommerce -msgid "You may be interested in…" -msgstr "Você pode se interessar por…" - -#: admin/settings/settings-init.php:85 -#: woocommerce-template.php:200 -#@ woocommerce -msgid "This is a demo store for testing purposes — no orders shall be fulfilled." -msgstr "Esta é uma loja de demonstração para fins de teste - As compras realizadas não são válidas." - -#: admin/post-types/product.php:373 -#@ woocommerce -msgid "Show all product types" -msgstr "Mostrar todo tipo de produto" - -#: admin/post-types/product.php:399 -#@ woocommerce -msgid "Show all sub-types" -msgstr "Mostrar todos os sub tipos" - -#: admin/post-types/shop_order.php:51 -#: admin/post-types/writepanels/writepanel-order_data.php:386 -#: admin/post-types/writepanels/writepanel-order_data.php:433 -#: admin/woocommerce-admin-customers.php:227 -#@ woocommerce -msgid "Actions" -msgstr "Ações" - -#: admin/post-types/shop_order.php:98 -#@ woocommerce -msgid "made by" -msgstr "feito por" - -#: admin/post-types/shop_order.php:114 -#: admin/post-types/shop_order.php:123 -#@ woocommerce -msgid "Via" -msgstr "Via" - -#: admin/post-types/shop_order.php:165 -#@ woocommerce -msgid "Complete" -msgstr "Completo" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -#@ woocommerce -msgid "Apply before tax" -msgstr "Aplicar antes do imposto" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -#@ woocommerce -msgid "Enable free shipping" -msgstr "Habilitar entrega gratuita" - -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#@ woocommerce -msgid "No billing address set." -msgstr "Nenhum endereço de cobrança adicionado." - -#: admin/post-types/writepanels/writepanel-order_data.php:279 -#@ woocommerce -msgid "No shipping address set." -msgstr "Nenhum endereço de entrega adicionado." - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -#@ woocommerce -msgid "Save/update the order" -msgstr "Salvar/Atualizar o pedido" - -#: admin/post-types/writepanels/writepanel-order_data.php:502 -#: classes/class-wc-order.php:955 -#@ woocommerce -msgid "Cart Discount:" -msgstr "Desconto do carrinho:" - -#: admin/post-types/writepanels/writepanel-order_data.php:510 -#: classes/class-wc-order.php:997 -#@ woocommerce -msgid "Order Discount:" -msgstr "Desconto da compra:" - -#: admin/post-types/writepanels/writepanel-order_data.php:656 -#: classes/class-wc-order.php:1002 -#@ woocommerce -msgid "Order Total:" -msgstr "Total da compra:" - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -#@ woocommerce -msgid "Add a note for your reference, or add a customer note (the user will be notified)." -msgstr "Adicionar uma nota para referencia, ou adicione uma nota (o cliente será notificado)." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -#@ woocommerce -msgid "Variations for variable products are defined here." -msgstr "Variações para produtos variáveis são definidas aqui." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:80 -#@ woocommerce -msgid "Prices" -msgstr "Preços" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:83 -#@ woocommerce -msgid "Sale prices" -msgstr "Preços de venda" - -#: admin/post-types/product.php:94 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:86 -#: admin/woocommerce-admin-content.php:63 -#: admin/woocommerce-admin-reports.php:90 -#@ woocommerce -msgid "Stock" -msgstr "Estoque" - -#: admin/post-types/writepanels/variation-admin-html.php:20 -#@ woocommerce -msgid "Any" -msgstr "Qualquer" - -#: admin/post-types/writepanels/variation-admin-html.php:52 -#@ woocommerce -msgid "Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "Informe um código de Referência (REF) para esta variação ou deixe em branco para usar a REF do produto anterior." - -#: admin/post-types/writepanels/variation-admin-html.php:96 -#@ woocommerce -msgid "Enter a weight for this variation or leave blank to use the parent product weight." -msgstr "Informe o peso para esta variação ou deixe em branco para usar o peso do produto pai." - -#: admin/post-types/writepanels/variation-admin-html.php:104 -#@ woocommerce -msgid "Dimensions (L×W×H)" -msgstr "Dimensões (C×L×A)" - -#: admin/post-types/writepanels/variation-admin-html.php:145 -#@ woocommerce -msgid "Upload" -msgstr "Upload" - -#: admin/post-types/writepanels/variation-admin-html.php:150 -#@ woocommerce -msgid "Download Limit:" -msgstr "Limite de downloads:" - -#: admin/post-types/writepanels/order-download-permission-html.php:19 -#: admin/post-types/writepanels/variation-admin-html.php:151 -#: admin/post-types/writepanels/variation-admin-html.php:159 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -#@ woocommerce -msgid "Unlimited" -msgstr "Ilimitado" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:215 -#@ woocommerce -msgid "No default" -msgstr "Nenhum padrão" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:635 -#@ woocommerce -msgid "Variable product" -msgstr "Produto variável" - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -#@ woocommerce -msgid "Product URL" -msgstr "URL do produto" - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -#@ woocommerce -msgid "Enter the external URL to the product." -msgstr "Informe um URL externo para o produto." - -#: admin/post-types/product.php:385 -#: admin/post-types/writepanels/writepanel-product_data.php:38 -#@ woocommerce -msgid "Simple product" -msgstr "Produto simples" - -#: admin/post-types/product.php:381 -#: admin/post-types/writepanels/writepanel-product_data.php:39 -#@ woocommerce -msgid "Grouped product" -msgstr "Grupo de produto" - -#: admin/post-types/product.php:383 -#: admin/post-types/writepanels/writepanel-product_data.php:40 -#@ woocommerce -msgid "External/Affiliate product" -msgstr "Externo/Produto de afiliado" - -#: admin/post-types/writepanels/variation-admin-html.php:176 -#@ woocommerce -msgid "Enable this option if a product is not shipped or there is no shipping cost" -msgstr "Habilite esta opção se o produto não é entregue ou não tem custos de entrega" - -#: admin/post-types/writepanels/variation-admin-html.php:174 -#@ woocommerce -msgid "Enable this option if access is given to a downloadable file upon purchase of a product" -msgstr "Habilite esta opção se será dado acesso ao download de um arquivo após a compra de um produto" - -#: admin/post-types/writepanels/writepanels-init.php:101 -#@ woocommerce -msgid "Product name" -msgstr "Nome do produto" - -#: admin/woocommerce-admin-attributes.php:237 -#: admin/woocommerce-admin-attributes.php:376 -#@ woocommerce -msgid "Name for the attribute (shown on the front-end)." -msgstr "Nome do atributo (mostrado no front-end)." - -#: admin/woocommerce-admin-attributes.php:246 -#: admin/woocommerce-admin-attributes.php:382 -#@ woocommerce -msgid "Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "Slug/referencia unica para o atributo, precisa ter no máximo 28 dígitos." - -#: admin/woocommerce-admin-attributes.php:277 -#@ woocommerce -msgid "Update" -msgstr "Atualizar" - -#: admin/woocommerce-admin-init.php:89 -#@ woocommerce -msgid "WooCommerce Settings" -msgstr "Opções WooCommerce" - -#: admin/woocommerce-admin-init.php:482 -#@ woocommerce -msgid "Load the customer's billing information? This will remove any currently entered billing information." -msgstr "Carregar informações de pagamento do cliente? Isto irá remover qualquer informação de pagamento existente." - -#: admin/woocommerce-admin-init.php:483 -#@ woocommerce -msgid "Load the customer's shipping information? This will remove any currently entered shipping information." -msgstr "Carregar informações de entrega do cliente? Isto irá remover qualquer informação de entrega existente." - -#: admin/woocommerce-admin-init.php:487 -#@ woocommerce -msgid "No customer selected" -msgstr "Nenhum cliente selecionado" - -#: admin/woocommerce-admin-reports.php:32 -#@ woocommerce -msgid "Sales by day" -msgstr "Vendas por dia" - -#: admin/woocommerce-admin-reports.php:37 -#@ woocommerce -msgid "Sales by month" -msgstr "Vendas por mês" - -#: admin/woocommerce-admin-reports.php:1110 -#@ woocommerce -msgid "Product no longer exists" -msgstr "Este produto não existe mais" - -#: admin/woocommerce-admin-settings.php:862 -#@ woocommerce -msgid "Choose a country…" -msgstr "Escolha o país…" - -#: admin/woocommerce-admin-settings.php:882 -#@ woocommerce -msgid "Choose countries…" -msgstr "Escolha os países…" - -#: admin/settings/settings-tax-rates.php:44 -#@ woocommerce -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "Informe uma Taxa fixa (porcentagem) de até 4 casas decimais." - -#: admin/settings/settings-tax-rates.php:52 -#@ woocommerce -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "Escolha se esta taxa será aplicada ou não a entrega." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:562 -#@ woocommerce -msgid "Delete the selected rates?" -msgstr "Excluir taxas selecionadas?" - -#: admin/settings/settings-init.php:39 -#@ woocommerce -msgid "This controls what currency prices are listed at in the catalog and which currency gateways will take payments in." -msgstr "Isto controla qual a moeda será utilizada e quais os gateways de pagamento" - -#: admin/settings/settings-init.php:174 -#@ woocommerce -msgid "Scripts" -msgstr "Scripts" - -#: admin/settings/settings-init.php:198 -#@ woocommerce -msgid "Forcing downloads will keep URLs hidden, but some servers may serve large files unreliably. If supported, X-Accel-Redirect/ X-Sendfile can be used to serve downloads instead (server requires mod_xsendfile)." -msgstr "Forçar downloads mantém a URLs dos arquivos escondida, mas alguns servidores não são confiáveis com arquivos grandes. Se suportado, X-Accel-Redirect/X-Sendfile pode ser usado para servir downloads (servidor requer mod_xsendfile)." - -#: admin/settings/settings-init.php:206 -#@ woocommerce -msgid "Force Downloads" -msgstr "Forçar downloads" - -#: admin/settings/settings-init.php:207 -#@ woocommerce -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "X-Accel-Redirect/X-Sendfile" - -#: admin/settings/settings-init.php:208 -#@ woocommerce -msgid "Redirect only" -msgstr "Apenas redirecionar" - -#: admin/settings/settings-init.php:582 -#, php-format -#@ woocommerce -msgid "These settings affect the actual dimensions of images in your catalog - the display on the front-end will still be affected by CSS styles. After changing these settings you may need to regenerate your thumbnails." -msgstr "Essas configurações afetam as dimensões reais das imagens em seu catálogo - a visão front-end ainda serão afetadas por estilos CSS. Depois de alterar essas configurações você pode precisar do plugin regenerate your thumbnails para reajustar o tamanho das imagens." - -#: admin/settings/settings-init.php:741 -#@ woocommerce -msgid "Enable shipping" -msgstr "Habilitar transporte" - -#: admin/settings/settings-init.php:788 -#@ woocommerce -msgid "Ship to billing address by default" -msgstr "Enviar para o endereço de cobrança por padrão" - -#: admin/settings/settings-init.php:926 -#@ woocommerce -msgid "Email Sender Options" -msgstr "Opções de remetente" - -#: admin/settings/settings-init.php:951 -#, php-format -#@ woocommerce -msgid "This section lets you customise the WooCommerce emails. Click here to preview your email template. For more advanced control copy woocommerce/templates/emails/ to yourtheme/woocommerce/emails/." -msgstr "Esta seção permite personalizar os emails do WooCommerce. Clique para ver prévia dos seus emails. Para controle mais avançado copie o woocommerce/templates/emails/ para seutema/woocommerce/emails/." - -#: admin/settings/settings-init.php:955 -#, php-format -#@ woocommerce -msgid "Enter a URL to an image you want to show in the email's header. Upload your image using the media uploader." -msgstr "Informe a URL para uma imagem que você deseja mostrar no cabeçalho do email. Envie uma imagem do computador utilizando media uploader." - -#: admin/settings/settings-init.php:964 -#@ woocommerce -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "O texto para aparecer no rodapé dos emails enviados pelo WooCommerce." - -#: admin/settings/settings-init.php:973 -#@ woocommerce -msgid "The base colour for WooCommerce email templates. Default #557da1." -msgstr "A base de cores para o template de email. O padrão é #557da1." - -#: admin/settings/settings-init.php:991 -#@ woocommerce -msgid "The main body background colour. Default #fdfdfd." -msgstr "A cor de fundo no corpo de email. O padrão é #fdfdfd." - -#: admin/settings/settings-init.php:1000 -#@ woocommerce -msgid "The main body text colour. Default #505050." -msgstr "A cor do texto no corpo do email. O padrão é #505050" - -#: classes/integrations/sharethis/class-wc-sharethis.php:29 -#@ woocommerce -msgid "ShareThis" -msgstr "ShareThis" - -#: classes/integrations/sharethis/class-wc-sharethis.php:30 -#@ woocommerce -msgid "ShareThis offers a sharing widget which will allow customers to share links to products with their friends." -msgstr "ShareThis oferece um widget de compartilhamento que permite os clientes da loja compartilhar link dos produtos com seus amigos nas redes sociais." - -#: classes/integrations/sharethis/class-wc-sharethis.php:64 -#, php-format -#@ woocommerce -msgid "Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons on product pages." -msgstr "Informe seu %1$sShareThis publisher ID%2$s para exibir os botões de compartilhamento social nas páginas de produtos." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:26 -#@ woocommerce -msgid "Google Analytics" -msgstr "Google Analytics" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:27 -#@ woocommerce -msgid "Google Analytics is a free service offered by Google that generates detailed statistics about the visitors to a website." -msgstr "Google Analytics é um serviço gratuito oferecido pelo Google, ele gera estatísticas sobre os visitantes do seu site." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:75 -#@ woocommerce -msgid "Tracking code" -msgstr "Código de monitoramento" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:76 -#@ woocommerce -msgid "Add tracking code to your site's footer. You don't need to enable this if using a 3rd party analytics plugin." -msgstr "Adicionar o código de monitoramento no rodapé do seu site. Você não precisa habilitar esta opção se estiver usando um 3º plugin de estatísticas." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:82 -#@ woocommerce -msgid "Add eCommerce tracking code to the thankyou page" -msgstr "Adicionar código de monitoramento na página \\\"Obrigado por sua compra\\\"" - -#: admin/includes/notice-install.php:7 -#@ woocommerce -msgid "Skip setup" -msgstr "Pular configuração" - -#: admin/woocommerce-admin-content.php:51 -#: admin/woocommerce-admin-settings.php:189 -#@ woocommerce -msgid "Emails" -msgstr "Emails" - -#: admin/woocommerce-admin-content.php:52 -#: admin/woocommerce-admin-settings.php:190 -#@ woocommerce -msgid "Integration" -msgstr "Integração" - -#: admin/settings/settings-shipping-methods.php:30 -#@ woocommerce -msgid "Shipping Method" -msgstr "Método de entrega" - -#: admin/settings/settings-shipping-methods.php:46 -#@ woocommerce -msgid "Method ID" -msgstr "ID do método" - -#: admin/settings/settings-payment-gateways.php:29 -#: admin/settings/settings-shipping-methods.php:29 -#: admin/woocommerce-admin-init.php:791 -#: admin/woocommerce-admin-taxonomies.php:27 -#: admin/woocommerce-admin-taxonomies.php:121 -#@ woocommerce -msgid "Default" -msgstr "Padrão" - -#: admin/settings/settings-payment-gateways.php:30 -#@ woocommerce -msgid "Gateway" -msgstr "Gateway" - -#: admin/settings/settings-payment-gateways.php:59 -#@ woocommerce -msgid "Gateway ID" -msgstr "Gateway ID" - -#: admin/woocommerce-admin-taxonomies.php:222 -#@ woocommerce -msgid "Product categories for your store can be managed here. To change the order of categories on the front-end you can drag and drop to sort them. To see more categories listed click the \"screen options\" link at the top of the page." -msgstr "As categorias de produtos da sua loja são organizadas aqui. Para alterar a ordem das categorias no front-end você pode arrastar e solta-los. Para ver mais categorias clique em \"opções de visualização\" no topo da página." - -#: admin/woocommerce-admin-taxonomies.php:237 -#@ woocommerce -msgid "Shipping classes can be used to group products of similar type. These groups can then be used by certain shipping methods to provide different rates to different products." -msgstr "Classes de de transporte podem ser usados ​​para agrupar os produtos do mesmo tipo. Esses grupos podem então ser usado por determinados métodos de transporte para fornecer taxas diferentes para diferentes produtos." - -#: admin/woocommerce-admin-profile.php:25 -#: admin/woocommerce-admin-profile.php:74 -#: templates/myaccount/form-edit-account.php:20 -#@ woocommerce -msgid "First name" -msgstr "Primeiro nome" - -#: admin/woocommerce-admin-profile.php:29 -#: admin/woocommerce-admin-profile.php:78 -#: templates/myaccount/form-edit-account.php:24 -#@ woocommerce -msgid "Last name" -msgstr "Sobrenome" - -#: admin/woocommerce-admin-profile.php:61 -#@ woocommerce -msgid "Telephone" -msgstr "Telefone" - -#: admin/woocommerce-admin-profile.php:103 -#@ woocommerce -msgid "State/County or state code" -msgstr "Estado" - -#: admin/woocommerce-admin-profile.php:58 -#: admin/woocommerce-admin-profile.php:107 -#@ woocommerce -msgid "2 letter Country code" -msgstr "Código do país com 2 letras" - -#: classes/class-wc-cart.php:1814 -#@ woocommerce -msgid "via" -msgstr "via" - -#: classes/class-wc-checkout.php:417 -#: woocommerce-functions.php:1698 -#@ woocommerce -msgid "is a required field." -msgstr "é um campo obrigatório" - -#: classes/class-wc-checkout.php:459 -#@ woocommerce -msgid "is not a valid number." -msgstr "não é um número válido." - -#: classes/class-wc-checkout.php:466 -#@ woocommerce -msgid "is not a valid email address." -msgstr "não é um endereço de email válido." - -#: classes/class-wc-countries.php:134 -#@ woocommerce -msgid "Hong Kong" -msgstr "Hong Kong" - -#: classes/class-wc-countries.php:238 -#@ woocommerce -msgid "South Georgia/Sandwich Islands" -msgstr "Ilhas Geórgia do Sul e Sandwich do Sul" - -#: i18n/states/US.php:71 -#@ woocommerce -msgid "US Minor Outlying Islands" -msgstr "Ilhas Menores Distantes dos Estados Unidos" - -#: i18n/states/BR.php:16 -#@ woocommerce -msgid "Amazonas" -msgstr "Amazonas" - -#: i18n/states/BR.php:13 -#@ woocommerce -msgid "Acre" -msgstr "Acre" - -#: i18n/states/BR.php:14 -#@ woocommerce -msgid "Alagoas" -msgstr "Alagoas" - -#: i18n/states/BR.php:15 -#@ woocommerce -msgid "Amapá" -msgstr "Amapá" - -#: i18n/states/BR.php:18 -#@ woocommerce -msgid "Ceará" -msgstr "Ceará" - -#: i18n/states/BR.php:22 -#@ woocommerce -msgid "Maranhão" -msgstr "Maranhão" - -#: i18n/states/BR.php:28 -#@ woocommerce -msgid "Paraná" -msgstr "Paraná" - -#: i18n/states/BR.php:29 -#@ woocommerce -msgid "Pernambuco" -msgstr "Pernambuco" - -#: i18n/states/BR.php:30 -#@ woocommerce -msgid "Piauí" -msgstr "Piauí" - -#: i18n/states/BR.php:34 -#@ woocommerce -msgid "Rondônia" -msgstr "Rondônia" - -#: i18n/states/BR.php:35 -#@ woocommerce -msgid "Roraima" -msgstr "Roraima" - -#: i18n/states/BR.php:38 -#@ woocommerce -msgid "Sergipe" -msgstr "Sergipe" - -#: i18n/states/BR.php:39 -#@ woocommerce -msgid "Tocantins" -msgstr "Tocantins" - -#: i18n/states/BR.php:26 -#@ woocommerce -msgid "Pará" -msgstr "Pará" - -#: i18n/states/BR.php:17 -#@ woocommerce -msgid "Bahia" -msgstr "Bahia" - -#: i18n/states/BR.php:21 -#@ woocommerce -msgid "Goiás" -msgstr "Goiás" - -#: i18n/states/HK.php:13 -#@ woocommerce -msgid "Hong Kong Island" -msgstr "Ilha de Hong Kong" - -#: i18n/states/HK.php:15 -#@ woocommerce -msgid "New Territories" -msgstr "Novos Territórios" - -#: i18n/states/US.php:14 -#@ woocommerce -msgid "Alaska" -msgstr "Alasca" - -#: classes/class-wc-countries.php:432 -#@ woocommerce -msgid "the" -msgstr "o" - -#: classes/class-wc-countries.php:444 -#@ woocommerce -msgid "VAT" -msgstr "ICMS" - -#: classes/class-wc-countries.php:470 -#@ woocommerce -msgid "(ex. VAT)" -msgstr "(ex. ICMS)" - -#: classes/class-wc-countries.php:774 -#: classes/class-wc-countries.php:784 -#: classes/class-wc-countries.php:804 -#: classes/class-wc-countries.php:859 -#: classes/class-wc-countries.php:878 -#: classes/class-wc-countries.php:890 -#: classes/class-wc-countries.php:940 -#: classes/class-wc-countries.php:964 -#: classes/class-wc-countries.php:1005 -#@ woocommerce -msgid "Province" -msgstr "Provincia" - -#: classes/class-wc-countries.php:799 -#: classes/class-wc-countries.php:946 -#@ woocommerce -msgid "Municipality" -msgstr "Municipio" - -#: classes/class-wc-countries.php:849 -#@ woocommerce -msgid "Region" -msgstr "Região" - -#: classes/class-wc-countries.php:969 -#@ woocommerce -msgid "Zip" -msgstr "CEP" - -#: classes/class-wc-countries.php:980 -#@ woocommerce -msgid "County" -msgstr "País" - -#: classes/class-wc-countries.php:694 -#@ woocommerce -msgid "Company Name" -msgstr "Nome da empresa" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:104 -#@ woocommerce -msgid "Gateway Disabled" -msgstr "Gateway desabilitado" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:104 -#@ woocommerce -msgid "PayPal does not support your store currency." -msgstr "PayPal não suporta a moeda atual utilizada na sua loja." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:710 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:728 -#@ woocommerce -msgid "Order refunded/reversed" -msgstr "Pedido cancelado/devolvido" - -#: templates/emails/email-order-items.php:49 -#@ woocommerce -msgid "Download:" -msgstr "Download:" - -#: classes/abstracts/abstract-wc-product.php:874 -#@ woocommerce -msgctxt "min_price" -msgid "From:" -msgstr "De:" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:25 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:85 -#@ woocommerce -msgid "Flat Rate" -msgstr "Taxa fixa" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:145 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:94 -#@ woocommerce -msgid "Per Order - charge shipping for the entire order as a whole" -msgstr "Por pedido - Cobrar o frete de todo o pedido com um todo" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:146 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:95 -#@ woocommerce -msgid "Per Item - charge shipping for each item individually" -msgstr "Por item - Cobrar o frete por cada item individualmente" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:147 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:96 -#@ woocommerce -msgid "Per Class - charge shipping for each shipping class in an order" -msgstr "Por classe - Cobrar frete por cada classe de entrega no pedido" - -#: classes/class-wc-post-types.php:131 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:485 -#@ woocommerce -msgid "Shipping Class" -msgstr "Classe de entrega" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:486 -#@ woocommerce -msgid "Cost, excluding tax." -msgstr "Custo, sem taxa" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:487 -#@ woocommerce -msgid "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -msgstr "Taxa sem imposto. Informe um valor ex. 2.50, ou uma porcentagem ex. 5%" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:518 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:548 -#@ woocommerce -msgid "Select a class…" -msgstr "Selecione uma classe…" - -#: classes/emails/class-wc-email-customer-note.php:36 -#@ woocommerce -msgid "A note has been added to your order" -msgstr "Uma nota foi adicionada ao seu pedido" - -#: i18n/strings.php:16 -#@ woocommerce -msgid "pending" -msgstr "pendente" - -#: i18n/strings.php:17 -#@ woocommerce -msgid "failed" -msgstr "falha" - -#: i18n/strings.php:18 -#@ woocommerce -msgid "on-hold" -msgstr "aguardando" - -#: i18n/strings.php:19 -#@ woocommerce -msgid "processing" -msgstr "processando" - -#: i18n/strings.php:20 -#@ woocommerce -msgid "completed" -msgstr "concluído" - -#: i18n/strings.php:21 -#@ woocommerce -msgid "refunded" -msgstr "reembolsado" - -#: i18n/strings.php:22 -#@ woocommerce -msgid "cancelled" -msgstr "cancelado" - -#: templates/cart/cart.php:134 -#@ woocommerce -msgid "Update Cart" -msgstr "Atualizar carrinho" - -#: templates/cart/totals.php:28 -#: templates/checkout/review-order.php:27 -#@ woocommerce -msgid "Cart Subtotal" -msgstr "Subtotal" - -#: templates/cart/totals.php:35 -#: templates/cart/totals.php:83 -#@ woocommerce -msgid "[Remove]" -msgstr "[Remover]" - -#: templates/cart/totals.php:83 -#: templates/checkout/review-order.php:82 -#@ woocommerce -msgid "Order Discount" -msgstr "Desconto do pedido" - -#: templates/cart/shipping-methods.php:76 -#: templates/cart/totals.php:147 -#, php-format -#@ woocommerce -msgid "Sorry, it seems that there are no available shipping methods for your location (%s)." -msgstr "Desculpe, aparentemente não existem métodos de entrega disponíveis para sua localidade (%s)." - -#: templates/cart/shipping-methods.php:76 -#: templates/cart/totals.php:147 -#@ woocommerce -msgid "If you require assistance or wish to make alternate arrangements please contact us." -msgstr "Se você precisa de ajuda ou deseja fazer uma negociação para realizar a entrega, entre em contato conosco." - -#: templates/checkout/form-coupon.php:17 -#@ woocommerce -msgid "Have a coupon?" -msgstr "Você tem um cupom de desconto?" - -#: templates/checkout/form-coupon.php:20 -#@ woocommerce -msgid "Click here to enter your code" -msgstr "Clique aqui e informe o código do seu cupom de desconto" - -#: templates/checkout/form-checkout.php:20 -#@ woocommerce -msgid "You must be logged in to checkout." -msgstr "Você precisa estar logado para fazer finalizar a compra." - -#: classes/class-wc-order.php:949 -#@ woocommerce -msgid "Cart Subtotal:" -msgstr "Subtotal:" - -#: templates/emails/customer-note.php:14 -#: templates/emails/plain/customer-note.php:13 -#@ woocommerce -msgid "Hello, a note has just been added to your order:" -msgstr "Olá, uma nota foi adicionada ao seu pedido:" - -#: templates/emails/customer-note.php:18 -#: templates/emails/plain/customer-note.php:21 -#@ woocommerce -msgid "For your reference, your order details are shown below." -msgstr "Para sua referência, os dados do seu pedido são mostrados a seguir." - -#: admin/woocommerce-admin-functions.php:194 -#@ woocommerce -msgid "Thank you, we are now processing your order. Your order's details are below." -msgstr "Obrigado, nós estamos processando seu pedido. Seguem detalhes da sua compra." - -#: templates/myaccount/form-login.php:59 -#: templates/myaccount/form-login.php:89 -#@ woocommerce -msgid "Register" -msgstr "Registrar" - -#: templates/order/tracking.php:20 -#@ woocommerce -msgid "and was completed" -msgstr "e foi concluído" - -#: templates/shop/breadcrumb.php:197 -#@ woocommerce -msgid "Author:" -msgstr "Autor:" - -#: classes/class-wc-product-external.php:56 -#@ woocommerce -msgid "Buy product" -msgstr "Comprar produto" - -#: templates/single-product-reviews.php:69 -#@ woocommerce -msgid "Be the first to review" -msgstr "Seja o primeiro a fazer um review" - -#: templates/single-product-reviews.php:107 -#@ woocommerce -msgid "Your Review" -msgstr "Sua avaliação sobre o produto" - -#: classes/widgets/class-wc-widget-cart.php:35 -#@ woocommerce -msgid "Hide if cart is empty" -msgstr "Esconder o carrinho se estiver vazio" - -#: classes/widgets/class-wc-widget-layered-nav.php:60 -#@ woocommerce -msgid "AND" -msgstr "E" - -#: classes/widgets/class-wc-widget-layered-nav.php:61 -#@ woocommerce -msgid "OR" -msgstr "OU" - -#: admin/woocommerce-admin-install.php:238 -#@ woocommerce -msgid "Logout" -msgstr "Sair" - -#: classes/widgets/class-wc-widget-price-filter.php:130 -#@ woocommerce -msgid "Min price" -msgstr "Preço mínimo" - -#: classes/widgets/class-wc-widget-price-filter.php:131 -#@ woocommerce -msgid "Max price" -msgstr "Preço máximo" - -#: classes/widgets/class-wc-widget-price-filter.php:132 -#@ woocommerce -msgid "Filter" -msgstr "Filtro" - -#: classes/widgets/class-wc-widget-product-categories.php:38 -#@ woocommerce -msgid "Category Order" -msgstr "Ordem de categoria" - -#: woocommerce-functions.php:808 -#@ woocommerce -msgid "Anti-spam field was filled in." -msgstr "Campo anti spam foi preenchido." - -#: woocommerce-functions.php:1251 -#@ woocommerce -msgid "New products" -msgstr "Novos produtos" - -#: woocommerce-functions.php:1259 -#, php-format -#@ woocommerce -msgid "New products added to %s" -msgstr "Novos produtos adicionados para %s" - -#: woocommerce-functions.php:1267 -#, php-format -#@ woocommerce -msgid "New products tagged %s" -msgstr "Novos produtos tageados %s" - -#: classes/class-wc-post-types.php:128 -#: classes/class-wc-post-types.php:130 -#@ woocommerce -msgid "Shipping Classes" -msgstr "Classes de entrega" - -#: classes/class-wc-post-types.php:133 -#@ woocommerce -msgid "Search Shipping Classes" -msgstr "Procurar Classes de entrega" - -#: classes/class-wc-post-types.php:134 -#@ woocommerce -msgid "All Shipping Classes" -msgstr "Todas as Classes de entrega" - -#: classes/class-wc-post-types.php:135 -#@ woocommerce -msgid "Parent Shipping Class" -msgstr "Classe de entrega pai" - -#: classes/class-wc-post-types.php:136 -#@ woocommerce -msgid "Parent Shipping Class:" -msgstr "Classe de entrega pai:" - -#: classes/class-wc-post-types.php:137 -#@ woocommerce -msgid "Edit Shipping Class" -msgstr "Editar Classe de entrega" - -#: classes/class-wc-post-types.php:138 -#@ woocommerce -msgid "Update Shipping Class" -msgstr "Atualizar Classe de entrega" - -#: classes/class-wc-post-types.php:139 -#@ woocommerce -msgid "Add New Shipping Class" -msgstr "Adicionar nova Classe de entrega" - -#: classes/class-wc-post-types.php:140 -#@ woocommerce -msgid "New Shipping Class Name" -msgstr "Nome da nova Classe de entrega" - -#: woocommerce.php:829 -#@ woocommerce -msgid "Select an option…" -msgstr "Selecione uma opção" - -#: woocommerce.php:1315 -#@ woocommerce -msgid "Product % Discount" -msgstr "Desconto do produto" - -#: admin/post-types/writepanels/writepanel-order_data.php:339 -#@ woocommerce -msgid "Item" -msgstr "Item" - -#: admin/post-types/writepanels/writepanel-order_data.php:498 -#@ woocommerce -msgid "Discounts" -msgstr "Descontos" - -#: admin/post-types/writepanels/writepanel-order_data.php:559 -#@ woocommerce -msgid "Method:" -msgstr "Método:" - -#: admin/post-types/writepanels/order-tax-html.php:20 -#: admin/post-types/writepanels/writepanel-order_data.php:638 -#@ woocommerce -msgid "Shipping Tax:" -msgstr "Imposto de Entrega:" - -#: admin/post-types/writepanels/writepanel-order_data.php:597 -#@ woocommerce -msgid "Tax Rows" -msgstr "Linhas de Impostos" - -#: admin/post-types/writepanels/writepanel-order_data.php:664 -#@ woocommerce -msgid "Payment Method:" -msgstr "Método de Pagamento:" - -#: admin/post-types/writepanels/variation-admin-html.php:76 -#: admin/post-types/writepanels/writepanel-product_data.php:125 -#@ woocommerce -msgid "Schedule" -msgstr "Programar" - -#: admin/woocommerce-admin-settings.php:228 -#@ woocommerce -msgid "Tax Rates" -msgstr "Taxas Fiscais" - -#: admin/settings/settings-tax-rates.php:50 -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Compound" -msgstr "Composto" - -#: admin/settings/settings-tax-rates.php:50 -#@ woocommerce -msgid "Choose whether or not this is a compound rate. Compound tax rates are applied on top of other tax rates." -msgstr "Escolha se essa é ou não uma taxa composta. Taxas compostas são aplicadas acima das taxas fiscais." - -#: templates/cart/totals.php:123 -#, php-format -#@ woocommerce -msgid "Note: Shipping and taxes are estimated%s and will be updated during checkout based on your billing and shipping information." -msgstr "Nota: Frete e impostos são estimados%s e serão atualizados durante a finalização com base nas suas informações de faturamento e envio." - -#: admin/post-types/product.php:152 -#@ default -msgid "Edit this item inline" -msgstr "Editar este item de linha" - -#: admin/post-types/product.php:152 -#@ default -msgid "Quick Edit" -msgstr "Edição Rápida" - -#: admin/post-types/product.php:156 -#: admin/post-types/shop_coupon.php:65 -#@ default -msgid "Restore this item from the Trash" -msgstr "Restaurar este item da Lixeira" - -#: admin/post-types/product.php:156 -#: admin/post-types/shop_coupon.php:65 -#@ default -msgid "Restore" -msgstr "Restaurar" - -#: admin/post-types/product.php:158 -#: admin/post-types/shop_coupon.php:67 -#@ default -msgid "Move this item to the Trash" -msgstr "Mover este item para a Lixeira" - -#: admin/post-types/product.php:158 -#: admin/post-types/shop_coupon.php:67 -#@ default -msgid "Trash" -msgstr "Lixeira" - -#: admin/post-types/product.php:160 -#: admin/post-types/shop_coupon.php:69 -#@ default -msgid "Delete this item permanently" -msgstr "Excluir este item permanentemente" - -#: admin/post-types/product.php:165 -#, php-format -#@ default -msgid "Preview “%s”" -msgstr "Visualizar “%s”" - -#: admin/post-types/product.php:165 -#@ default -msgid "Preview" -msgstr "Visualizar" - -#: admin/post-types/product.php:167 -#, php-format -#@ default -msgid "View “%s”" -msgstr "Exibir “%s”" - -#: admin/post-types/product.php:214 -#@ woocommerce -msgid "Grouped" -msgstr "Agrupado" - -#: admin/post-types/product.php:216 -#@ woocommerce -msgid "External/Affiliate" -msgstr "Externo/Afiliado" - -#: admin/post-types/product.php:224 -#@ woocommerce -msgid "Simple" -msgstr "Simples" - -#: admin/post-types/product.php:228 -#: admin/post-types/product.php:387 -#@ woocommerce -msgid "Variable" -msgstr "Variável" - -#: admin/post-types/product.php:569 -#@ woocommerce -msgid "Regular price" -msgstr "Preço normal" - -#: admin/post-types/product.php:574 -#: admin/post-types/product.php:812 -#@ woocommerce -msgid "Sale" -msgstr "Venda" - -#: admin/post-types/product.php:576 -#@ woocommerce -msgid "Sale price" -msgstr "Preço de venda" - -#: admin/post-types/product.php:598 -#: admin/post-types/product.php:862 -#@ woocommerce -msgid "L/W/H" -msgstr "C/L/A" - -#: admin/post-types/product.php:612 -#: admin/post-types/product.php:886 -#@ woocommerce -msgid "Visibility" -msgstr "Visibilidade" - -#: admin/post-types/product.php:617 -#: admin/post-types/product.php:892 -#@ woocommerce -msgid "Catalog & search" -msgstr "Catalogo & busca" - -#: admin/post-types/product.php:635 -#: admin/post-types/product.php:923 -#@ woocommerce -msgid "In stock?" -msgstr "Em estoque?" - -#: admin/post-types/product.php:793 -#: admin/post-types/product.php:817 -#: admin/post-types/product.php:843 -#: admin/post-types/product.php:867 -#: admin/post-types/product.php:891 -#: admin/post-types/product.php:910 -#: admin/post-types/product.php:928 -#: admin/post-types/product.php:946 -#: admin/post-types/product.php:965 -#@ woocommerce -msgid "— No Change —" -msgstr "— Sem mudanças —" - -#: admin/post-types/product.php:794 -#: admin/post-types/product.php:818 -#: admin/post-types/product.php:844 -#: admin/post-types/product.php:868 -#: admin/post-types/product.php:966 -#@ woocommerce -msgid "Change to:" -msgstr "Alterar para:" - -#: admin/post-types/product.php:911 -#: admin/post-types/product.php:947 -#: admin/post-types/shop_order.php:190 -#: admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:143 -#: admin/woocommerce-admin-status.php:296 -#@ woocommerce -msgid "Yes" -msgstr "Sim" - -#: admin/post-types/product.php:912 -#: admin/post-types/product.php:948 -#: admin/post-types/shop_order.php:192 -#: admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:143 -#: admin/woocommerce-admin-status.php:296 -#@ woocommerce -msgid "No" -msgstr "Não" - -#: admin/post-types/shop_order.php:49 -#@ woocommerce -msgid "Customer Notes" -msgstr "Notas para o cliente" - -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#@ woocommerce -msgid "Billing Details" -msgstr "Detalhes de Faturamento" - -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#@ woocommerce -msgid "Shipping Details" -msgstr "Detalhes para Envio" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#@ woocommerce -msgid "Tax class for the line item" -msgstr "Classe de impostos para o item." - -#: admin/post-types/writepanels/order-fee-html.php:17 -#: admin/post-types/writepanels/order-item-html.php:89 -#@ woocommerce -msgid "Tax class" -msgstr "Classe de imposto" - -#: admin/post-types/writepanels/writepanel-order_data.php:622 -#@ woocommerce -msgid "These rows contain taxes for this order. This allows you to display multiple or compound taxes rather than a single total." -msgstr "Essas linhas contêm taxas para esse pedido. Isso permite exibir múltiplas ou taxas compostas em vez de um único total." - -#: admin/post-types/writepanels/writepanel-order_data.php:622 -#@ woocommerce -msgid "+ Add tax row" -msgstr "+ Adicionar linha de imposto" - -#: admin/post-types/writepanels/writepanel-order_data.php:626 -#@ woocommerce -msgid "Tax Totals" -msgstr "Impostos totais" - -#: admin/post-types/writepanels/order-download-permission-html.php:6 -#@ woocommerce -msgid "Revoke Access" -msgstr "Cancelar acesso" - -#: admin/post-types/writepanels/order-download-permission-html.php:7 -#: admin/post-types/writepanels/variation-admin-html.php:7 -#: admin/post-types/writepanels/writepanel-product_data.php:369 -#: admin/post-types/writepanels/writepanel-product_data.php:463 -#: admin/woocommerce-admin-init.php:473 -#@ woocommerce -msgid "Click to toggle" -msgstr "Clique para alterar" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -#, php-format -#@ woocommerce -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "Baixado %s vez" -msgstr[1] "Baixado %s vezes" - -#: admin/post-types/writepanels/order-download-permission-html.php:16 -#@ woocommerce -msgid "Downloads Remaining" -msgstr "Downloads restantes" - -#: admin/post-types/writepanels/order-download-permission-html.php:22 -#@ woocommerce -msgid "Access Expires" -msgstr "Acesso expirado" - -#: admin/post-types/writepanels/order-download-permission-html.php:23 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -#@ woocommerce -msgid "Never" -msgstr "Nunca" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:57 -#@ woocommerce -msgid "Choose a downloadable product…" -msgstr "Escolha um producto para download…" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:86 -#@ woocommerce -msgid "Grant Access" -msgstr "Conceder Acesso" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:147 -#@ woocommerce -msgid "Are you sure you want to revoke access to this download?" -msgstr "Tem certeza de que quer revogar o acesso a este download?" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:73 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -#@ woocommerce -msgid "Close all" -msgstr "Fechar todos" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:73 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -#@ woocommerce -msgid "Expand all" -msgstr "Expandir todos" - -#: admin/post-types/writepanels/variation-admin-html.php:115 -#@ woocommerce -msgid "Shipping class:" -msgstr "Tipo de envio:" - -#: admin/post-types/writepanels/variation-admin-html.php:119 -#: admin/post-types/writepanels/variation-admin-html.php:132 -#: woocommerce-ajax.php:550 -#@ woocommerce -msgid "Same as parent" -msgstr "Igual ao api" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:202 -#@ woocommerce -msgid "Default selections:" -msgstr "Seleções padrão:" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:304 -#@ woocommerce -msgid "Are you sure you want to link all variations? This will create a new variation for each and every possible combination of variation attributes (max 50 per run)." -msgstr "Tem a certeza que pretende linkar todas as variações? Isto irá criar uma nova variação para cada possível combinação de atributos (máximo de 50 por vez)." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:321 -#@ woocommerce -msgid "variation added" -msgstr "variação adicionada" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:323 -#@ woocommerce -msgid "variations added" -msgstr "variações adicionadas" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:325 -#@ woocommerce -msgid "No variations added" -msgstr "Variações não adicionadas" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:404 -#@ woocommerce -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "Tem certeza de que deseja excluir todas as variações? Isso não poderá ser desfeito." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:407 -#@ woocommerce -msgid "Last warning, are you sure?" -msgstr "Último aviso, você tem certeza?" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#@ woocommerce -msgid "Stock Keeping Unit" -msgstr "Unidade de manutenção de estoque" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -#@ woocommerce -msgid "Button text" -msgstr "Texto do botão" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -#@ woocommerce -msgctxt "placeholder" -msgid "Buy product" -msgstr "Comprar produto" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -#@ woocommerce -msgid "This text will be shown on the button linking to the external product." -msgstr "Este texto será mostrado no botão que liga ao produto externo." - -#: admin/post-types/writepanels/variation-admin-html.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:136 -#@ woocommerce -msgctxt "placeholder" -msgid "From…" -msgstr "A partir de…" - -#: admin/post-types/writepanels/variation-admin-html.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:137 -#@ woocommerce -msgctxt "placeholder" -msgid "To…" -msgstr "Para…" - -#: admin/post-types/writepanels/writepanel-product_data.php:610 -#@ woocommerce -msgid "Purchase Note" -msgstr "Nota da Compra" - -#: admin/post-types/writepanels/writepanel-product_data.php:610 -#@ woocommerce -msgid "Enter an optional note to send the customer after purchase." -msgstr "Digite uma nota opcional para enviar ao cliente após a compra." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:93 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -#@ woocommerce -msgid "Download Expiry" -msgstr "Validade do Download" - -#: admin/post-types/writepanels/variation-admin-html.php:158 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -#@ woocommerce -msgid "Enter the number of days before a download link expires, or leave blank." -msgstr "Informe o número de dias antes do link de download expirar ou deixe em branco." - -#: admin/post-types/writepanels/writepanel-product_data.php:398 -#: admin/woocommerce-admin-settings.php:888 -#@ woocommerce -msgid "Select all" -msgstr "Selecionar todos" - -#: admin/post-types/writepanels/writepanel-product_data.php:398 -#: admin/woocommerce-admin-settings.php:888 -#@ woocommerce -msgid "Select none" -msgstr "Selecione nenhum" - -#: admin/post-types/writepanels/writepanel-product_data.php:427 -#: admin/post-types/writepanels/writepanel-product_data.php:482 -#: admin/woocommerce-admin-init.php:476 -#@ woocommerce -msgid "Visible on the product page" -msgstr "Visível na página de produto" - -#: admin/post-types/writepanels/writepanel-product_data.php:440 -#: admin/post-types/writepanels/writepanel-product_data.php:488 -#: admin/woocommerce-admin-init.php:477 -#@ woocommerce -msgid "Used for variations" -msgstr "Usado para variações" - -#: admin/post-types/writepanels/writepanel-product_data.php:477 -#: admin/woocommerce-admin-init.php:475 -#@ woocommerce -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "Digite algo ou atributos usando \"pipe\" (|) como separador" - -#: admin/woocommerce-admin-attributes.php:242 -#: admin/woocommerce-admin-attributes.php:308 -#: admin/woocommerce-admin-attributes.php:380 -#@ woocommerce -msgid "Slug" -msgstr "Slug" - -#: admin/woocommerce-admin-content.php:44 -#@ woocommerce -msgid "General settings such as your shop base, currency, and script/styling options which affect features used in your store." -msgstr "Configurações gerais de sua loja, como base, moeda, e opções de script/estilo que afetam as funcionalidades utilizadas em sua loja" - -#: admin/woocommerce-admin-content.php:45 -#@ woocommerce -msgid "This is where important store page are defined. You can also set up other pages (such as a Terms page) here." -msgstr "Aqui é onde páginas importantes da loja são definidas. Você pode também criar outras páginas (como a página de termos de serviço) aqui." - -#: admin/woocommerce-admin-content.php:46 -#@ woocommerce -msgid "Options for how things like price, images and weights appear in your product catalog." -msgstr "Opções para coisas como preços, imagens e pesos que aparecem no seu catálogo de produtos. " - -#: admin/woocommerce-admin-content.php:47 -#@ woocommerce -msgid "Options concerning stock and stock notices." -msgstr "Opções sobre estoque e notificações de estoque" - -#: admin/woocommerce-admin-content.php:48 -#@ woocommerce -msgid "Options concerning tax, including international and local tax rates." -msgstr "Opções relacionadas a impostos, incluindo taxas locais e internacionais" - -#: admin/woocommerce-admin-content.php:49 -#@ woocommerce -msgid "This is where shipping options are defined, and shipping methods are set up." -msgstr "Este é o lugar onde as opções de transporte são definidas, e os métodos de transporte são configurados." - -#: admin/woocommerce-admin-content.php:50 -#@ woocommerce -msgid "Payment Methods" -msgstr "Métodos de Pagamento" - -#: admin/woocommerce-admin-content.php:50 -#@ woocommerce -msgid "This is where payment gateway options are defined, and individual payment gateways are set up." -msgstr "Este é o local em que se definem as opções relacionadas aos método de pagamento e de configuração para cada um deles." - -#: admin/woocommerce-admin-content.php:51 -#@ woocommerce -msgid "Here you can customise the way WooCommerce emails appear." -msgstr "Aqui você pode customizar o modo como os emails do WooCommerce serão exibidos." - -#: admin/woocommerce-admin-content.php:52 -#@ woocommerce -msgid "The integration section contains options for third party services which integrate with WooCommerce." -msgstr "A seção Integração contém opções para integração de serviços de terceiros com WooCommerce." - -#: admin/woocommerce-admin-content.php:59 -#@ woocommerce -msgid "The reports section can be accessed from the left-hand navigation menu. Here you can generate reports for sales and customers." -msgstr "A seção de relatórios podem ser acessados ​​a partir do menu de navegação à esquerda. Aqui você pode gerar relatórios de vendas e clientes." - -#: admin/woocommerce-admin-content.php:60 -#@ woocommerce -msgid "Reports for sales based on date, top sellers and top earners." -msgstr "Relatório de clientes, como por exemplo mais vendidos ou mais rentáveis." - -#: admin/woocommerce-admin-content.php:62 -#: admin/woocommerce-admin-customers.php:30 -#: admin/woocommerce-admin-init.php:88 -#: admin/woocommerce-admin-init.php:345 -#: admin/woocommerce-admin-reports.php:79 -#@ woocommerce -#@ wc_software -msgid "Customers" -msgstr "Clientes" - -#: admin/woocommerce-admin-content.php:62 -#@ woocommerce -msgid "Customer reports, such as signups per day." -msgstr "Relatório de clientes, como por exemplo cadastros por dia." - -#: admin/woocommerce-admin-content.php:70 -#@ woocommerce -msgid "The orders section can be accessed from the left-hand navigation menu. Here you can view and manage customer orders." -msgstr "A seção de pedidos pode ser acessada a partir do menu de navegação à esquerda. Aqui você pode visualizar e gerenciar os pedidos dos clientes." - -#: admin/woocommerce-admin-content.php:71 -#@ woocommerce -msgid "Orders can also be added from this section if you want to set them up for a customer manually." -msgstr "Pedidos podem ser feitos por essa seção se você deseja configurá-los para um cliente manualmente." - -#: admin/woocommerce-admin-content.php:78 -#@ woocommerce -msgid "Coupons can be managed from this section. Once added, customers will be able to enter coupon codes on the cart/checkout page. If a customer uses a coupon code they will be viewable when viewing orders." -msgstr "Cupons podem ser gerenciados nesta seção. Uma vez adicionados, os clientes poderão inserir códigos de cupons na página de carrinho e/ou checkout. Caso um cliente utilize um código de cupom, ele poderá ser visualizado juntamente com os pedidos." - -#: admin/woocommerce-admin-content.php:82 -#@ woocommerce -msgid "For more information:" -msgstr "Para mais informações:" - -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:84 -#: admin/woocommerce-admin-functions.php:202 -#: admin/woocommerce-admin-init.php:795 -#: admin/woocommerce-admin-reports.php:996 -#: admin/woocommerce-admin-reports.php:1094 -#: classes/class-wc-post-types.php:237 -#: templates/cart/cart.php:28 -#: templates/checkout/form-pay.php:19 -#: templates/checkout/review-order.php:21 -#: templates/emails/admin-new-order.php:22 -#: templates/emails/customer-completed-order.php:23 -#: templates/emails/customer-invoice.php:27 -#: templates/emails/customer-note.php:27 -#: templates/emails/customer-processing-order.php:23 -#: templates/order/order-details.php:20 -#@ woocommerce -msgid "Product" -msgid_plural "Products" -msgstr[0] "Produto" -msgstr[1] "Produtos" - -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:98 -#: classes/class-wc-post-types.php:62 -#@ woocommerce -msgid "Product Category" -msgid_plural "Product Categories" -msgstr[0] "Categoria de produto" -msgstr[1] "Categorias de produto" - -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:112 -#: classes/class-wc-post-types.php:97 -#@ woocommerce -msgid "Product Tag" -msgid_plural "Product Tags" -msgstr[0] "Tag de produto" -msgstr[1] "Tags de produto" - -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:126 -#: classes/widgets/class-wc-widget-layered-nav.php:43 -#@ woocommerce -msgid "Attribute" -msgid_plural "Attributes" -msgstr[0] "Atributo" -msgstr[1] "Atributos" - -#: admin/woocommerce-admin-dashboard.php:207 -#, php-format -#@ woocommerce -msgid "You are using WooCommerce %s." -msgstr "Você está usando o WooCommerce %s." - -#: admin/woocommerce-admin-dashboard.php:43 -#@ woocommerce -msgid "WooCommerce Right Now" -msgstr "WooCommerce Agora" - -#: admin/woocommerce-admin-dashboard.php:44 -#@ woocommerce -msgid "WooCommerce Recent Orders" -msgstr "Pedidos recentes do WooCommerce" - -#: admin/woocommerce-admin-dashboard.php:238 -#@ woocommerce -msgid "l jS \\of F Y h:i:s A" -msgstr "l jS \\d\\e F \\d\\e Y h:i:s A" - -#: admin/woocommerce-admin-dashboard.php:245 -#@ woocommerce -msgid "There are no product orders yet." -msgstr "Não há nenhum pedido ainda." - -#: admin/includes/notice-install.php:6 -#@ woocommerce -msgid "Welcome to WooCommerce – You're almost ready to start selling :)" -msgstr "Bem vindo ao WooCommerce – Você está quase pronto para começar a vender :)" - -#: admin/includes/notice-install.php:7 -#@ woocommerce -msgid "Install WooCommerce Pages" -msgstr "Instalar as páginas do WooCommerce" - -#: admin/woocommerce-admin-init.php:470 -#@ woocommerce -msgid "Remove this attribute?" -msgstr "Deseja remover esse atributo?" - -#: admin/woocommerce-admin-init.php:480 -#@ woocommerce -msgid "Calculate line taxes? This will calculate taxes based on the customers country. If no billing/shipping is set it will use the store base country." -msgstr "Calcular linha de impostos? Isto irá calcular os impostos com base no país dos clientes. Se não houver cobrança / transporte está definido que o país sede da loja será utilizado." - -#: admin/woocommerce-admin-init.php:699 -#, php-format -#@ woocommerce -msgid "Product updated. View Product" -msgstr "Produto atualizado. Ver Produto" - -#: admin/woocommerce-admin-init.php:700 -#: admin/woocommerce-admin-init.php:715 -#: admin/woocommerce-admin-init.php:730 -#@ woocommerce -msgid "Custom field updated." -msgstr "Campo customizado atualizado." - -#: admin/woocommerce-admin-init.php:701 -#: admin/woocommerce-admin-init.php:716 -#: admin/woocommerce-admin-init.php:731 -#@ woocommerce -msgid "Custom field deleted." -msgstr "Campo personalizado excluído." - -#: admin/woocommerce-admin-init.php:702 -#@ woocommerce -msgid "Product updated." -msgstr "Produto atualizado." - -#: admin/woocommerce-admin-init.php:703 -#, php-format -#@ woocommerce -msgid "Product restored to revision from %s" -msgstr "Produto restaurado para revisão de %s" - -#: admin/woocommerce-admin-init.php:705 -#@ woocommerce -msgid "Product saved." -msgstr "Produto salvo." - -#: admin/woocommerce-admin-init.php:706 -#, php-format -#@ woocommerce -msgid "Product submitted. Preview Product" -msgstr "Produto cadastrado. Pré visualizar produto" - -#: admin/woocommerce-admin-init.php:707 -#, php-format -#@ woocommerce -msgid "Product scheduled for: %1$s. Preview Product" -msgstr "Produto programado para: %1$s. Ver Produto" - -#: admin/woocommerce-admin-init.php:708 -#: admin/woocommerce-admin-init.php:723 -#: admin/woocommerce-admin-init.php:738 -#@ woocommerce -msgid "M j, Y @ G:i" -msgstr "j \\d\\e F \\d\\e Y @ H:i" - -#: admin/woocommerce-admin-init.php:709 -#, php-format -#@ woocommerce -msgid "Product draft updated. Preview Product" -msgstr "Rascunho de produto atualizado. Pré visualizar produto" - -#: admin/woocommerce-admin-init.php:714 -#: admin/woocommerce-admin-init.php:717 -#: admin/woocommerce-admin-init.php:719 -#@ woocommerce -msgid "Order updated." -msgstr "Pedido atualizado." - -#: admin/woocommerce-admin-init.php:718 -#, php-format -#@ woocommerce -msgid "Order restored to revision from %s" -msgstr "Pedido restaurado para revisão de %s" - -#: admin/woocommerce-admin-init.php:720 -#@ woocommerce -msgid "Order saved." -msgstr "Pedido salvo." - -#: admin/woocommerce-admin-init.php:721 -#@ woocommerce -msgid "Order submitted." -msgstr "Pedido enviado." - -#: admin/woocommerce-admin-init.php:722 -#, php-format -#@ woocommerce -msgid "Order scheduled for: %1$s." -msgstr "Pedido agendado para: %1$s." - -#: admin/woocommerce-admin-init.php:724 -#@ woocommerce -msgid "Order draft updated." -msgstr "Rascunho de pedido atualizado." - -#: admin/woocommerce-admin-init.php:729 -#: admin/woocommerce-admin-init.php:732 -#: admin/woocommerce-admin-init.php:734 -#@ woocommerce -msgid "Coupon updated." -msgstr "Cupom atualizado." - -#: admin/woocommerce-admin-init.php:733 -#, php-format -#@ woocommerce -msgid "Coupon restored to revision from %s" -msgstr "Cupom restaurado para revisão de %s" - -#: admin/woocommerce-admin-init.php:735 -#@ woocommerce -msgid "Coupon saved." -msgstr "Cupom salvo." - -#: admin/woocommerce-admin-init.php:736 -#@ woocommerce -msgid "Coupon submitted." -msgstr "Cupom enviado." - -#: admin/woocommerce-admin-init.php:737 -#, php-format -#@ woocommerce -msgid "Coupon scheduled for: %1$s." -msgstr "Cupom agendado para: %1$s." - -#: admin/woocommerce-admin-init.php:739 -#@ woocommerce -msgid "Coupon draft updated." -msgstr "Rascunho de cupom atualizado." - -#: admin/settings/settings-init.php:167 -#@ woocommerce -msgid "Styles and Scripts" -msgstr "Estilos e Scripts" - -#: admin/settings/settings-init.php:243 -#@ woocommerce -msgid "Note: The shop page has children - child pages will not work if you enable this option." -msgstr "Observação: a página de venda possui páginas-filho, que não funcionarão se essa opção estiver habilitada." - -#: admin/settings/settings-init.php:256 -#@ woocommerce -msgid "This sets the base page of your shop - this is where your product archive will be." -msgstr "Isso define a página base de sua loja - é o lugar onde o seu arquivo de produto estará." - -#: admin/settings/settings-init.php:278 -#@ woocommerce -msgid "The following pages need selecting so that WooCommerce knows where they are. These pages should have been created upon installation of the plugin, if not you will need to create them." -msgstr "As seguintes páginas precisam ser selecionadas para que o WooCommerce saiba onde elas estão. Estas páginas devem ter sido criadas na instalação do plugin, caso contrário você terá de criá-las." - -#: admin/settings/settings-init.php:466 -#@ woocommerce -msgid "g" -msgstr "g" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#: admin/settings/settings-init.php:481 -#@ woocommerce -msgid "m" -msgstr "m" - -#: admin/settings/settings-init.php:483 -#@ woocommerce -msgid "mm" -msgstr "mm" - -#: admin/settings/settings-init.php:904 -#, php-format -#@ woocommerce -msgid "Reduced Rate%sZero Rate" -msgstr "Taxa Reduzida%sTaxa Zero" - -#: admin/settings/settings-init.php:926 -#@ woocommerce -msgid "The following options affect the sender (email address and name) used in WooCommerce emails." -msgstr "As opções a seguir afetam o remetente (endereço de email e nome) usado nas mensagens do WooCommerce enviadas por email." - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:26 -#@ woocommerce -msgid "ShareDaddy" -msgstr "ShareDaddy" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:27 -#@ woocommerce -msgid "ShareDaddy is a sharing plugin bundled with JetPack." -msgstr "ShareDaddy é um plugin de compartilhamento que acompanha o JetPack." - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:51 -#@ woocommerce -msgid "Output ShareDaddy button?" -msgstr "Exibir botão ShareDaddy?" - -#: admin/woocommerce-admin-settings.php:210 -#, php-format -#@ woocommerce -msgid "More functionality and gateway options available via WC official extensions." -msgstr "Mais funcionalidades e opções de Gateway disponíveis via Extensões Oficiais WC." - -#: classes/class-wc-cart.php:869 -#@ woocommerce -msgid "You already have this item in your cart." -msgstr "Esse produto já está em seu carrinho." - -#: woocommerce-functions.php:768 -#: woocommerce-functions.php:808 -#@ woocommerce -msgid "ERROR" -msgstr "ERRO" - -#: classes/class-wc-countries.php:457 -#@ woocommerce -msgid "(incl. VAT)" -msgstr "(incl. VAT)" - -#: classes/class-wc-countries.php:457 -#@ woocommerce -msgid "(incl. tax)" -msgstr "(incl. taxa)" - -#: classes/abstracts/abstract-wc-product.php:557 -#, php-format -#@ woocommerce -msgid "%s in stock" -msgstr "%s em estoque" - -#: classes/abstracts/abstract-wc-product.php:564 -#@ woocommerce -msgid "(backorders allowed)" -msgstr "(encomendas permitidas)" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:28 -#@ woocommerce -msgid "Bacs" -msgstr "Bancos" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:28 -#@ woocommerce -msgid "Cheque" -msgstr "Cheque" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:73 -#@ woocommerce -msgid "Please send your cheque to Store Name, Store Street, Store Town, Store State / County, Store Postcode." -msgstr "Por favor, envie seu cheque para Nome da Loja, Rua da Loja, Cidade da Loja, Estado / País da Loja, CEP da Loja." - -#: classes/gateways/cod/class-wc-gateway-cod.php:27 -#: classes/gateways/cod/class-wc-gateway-cod.php:54 -#: classes/gateways/cod/class-wc-gateway-cod.php:90 -#@ woocommerce -msgid "Cash on Delivery" -msgstr "Pagamento na Entrega" - -#: classes/gateways/cod/class-wc-gateway-cod.php:55 -#@ woocommerce -msgid "Have your customers pay with cash (or by other means) upon delivery." -msgstr "Permita que seus clientes pague com dinheiro (ou outras formas de pagamento) na entrega." - -#: classes/gateways/cod/class-wc-gateway-cod.php:80 -#@ woocommerce -msgid "Enable COD" -msgstr "Habilitar COD" - -#: classes/gateways/cod/class-wc-gateway-cod.php:89 -#@ woocommerce -msgid "Payment method title that the customer will see on your website." -msgstr "Título do método de pagamento que seu cliente verá no website." - -#: classes/gateways/cod/class-wc-gateway-cod.php:96 -#@ woocommerce -msgid "Payment method description that the customer will see on your website." -msgstr "Descrição do método de pagamento que seu cliente verá no website." - -#: classes/gateways/cod/class-wc-gateway-cod.php:100 -#@ woocommerce -msgid "Instructions" -msgstr "Instruções" - -#: classes/gateways/cod/class-wc-gateway-cod.php:102 -#@ woocommerce -msgid "Instructions that will be added to the thank you page." -msgstr "Instruções que serão adicionados à página de agradecimento." - -#: classes/gateways/cod/class-wc-gateway-cod.php:176 -#@ woocommerce -msgid "Payment to be made upon delivery." -msgstr "O pagamento será efetuado no momento da entrega." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:78 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:52 -#@ woocommerce -msgid "Enable this shipping method" -msgstr "Ativar este método de envio" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:29 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:59 -#@ woocommerce -msgid "International Delivery" -msgstr "Entrega internacional" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:30 -#@ woocommerce -msgid "International delivery based on flat rate shipping." -msgstr "Entrega internacional baseada no transporte de taxa fixa." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:89 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:63 -#@ woocommerce -msgid "Availability" -msgstr "Disponibilidade" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:68 -#@ woocommerce -msgid "Selected countries" -msgstr "Países selecionados" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:69 -#@ woocommerce -msgid "Excluding selected countries" -msgstr "Excluindo países selecionados" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:73 -#@ woocommerce -msgid "Countries" -msgstr "Países" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:25 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:107 -#@ woocommerce -msgid "Local Delivery" -msgstr "Entrega local" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:98 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:78 -#@ woocommerce -msgid "Enable" -msgstr "Permitir" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:100 -#@ woocommerce -msgid "Enable local delivery" -msgstr "Permitir entrega local" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:111 -#@ woocommerce -msgid "Fee Type" -msgstr "Tipo de taxa" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:113 -#@ woocommerce -msgid "How to calculate delivery charges" -msgstr "Como calcular taxas de entrega" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:172 -#@ woocommerce -msgid "Local delivery is a simple shipping method for delivering orders locally." -msgstr "Entrega local é um método de envio simples para entrega de encomendas localmente." - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:25 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:87 -#@ woocommerce -msgid "Local Pickup" -msgstr "Retirar no local" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:80 -#@ woocommerce -msgid "Enable local pickup" -msgstr "Habilitar retirada no local" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:134 -#@ woocommerce -msgid "Local pickup is a simple method which allows the customer to pick up their order themselves." -msgstr "Retirada no local é um método simples que permite que o cliente retire seu pedido ele mesmo." - -#: classes/shortcodes/class-wc-shortcode-my-account.php:86 -#@ woocommerce -msgid "My Account →" -msgstr "Minha Conta →" - -#: templates/cart/shipping-methods.php:68 -#@ woocommerce -msgid "Please fill in your details to see available shipping methods." -msgstr "Por favor, preencha seus dados para visualizar os métodos de envio disponíveis." - -#: templates/checkout/cart-errors.php:16 -#@ woocommerce -msgid "There are some issues with the items in your cart (shown above). Please go back to the cart page and resolve these issues before checking out." -msgstr "Ocorreu um problema com algum produto em seu carrinho (exibido acima). Por favor, volte para a página do carrinho e resolva esses problemas antes de finalizar o pedido." - -#: templates/checkout/cart-errors.php:20 -#@ woocommerce -msgid "← Return To Cart" -msgstr "← Retornar ao Carrinho" - -#: templates/myaccount/my-address.php:23 -#@ woocommerce -msgid "My Address" -msgstr "Meu Endereço" - -#: classes/widgets/class-wc-widget-layered-nav.php:126 -#, php-format -#@ woocommerce -msgid "Any %s" -msgstr "Qualquer %s" - -#: classes/widgets/class-wc-widget-layered-nav.php:51 -#@ woocommerce -msgid "List" -msgstr "Lista" - -#: classes/widgets/class-wc-widget-layered-nav.php:52 -#@ woocommerce -msgid "Dropdown" -msgstr "Dropdown" - -#: woocommerce-core-functions.php:1296 -#: woocommerce-core-functions.php:1322 -#@ woocommerce -msgid "Download Permissions Granted" -msgstr "Permissões de Download Concedidas" - -#: woocommerce-core-functions.php:1640 -#@ woocommerce -msgid "Select a category" -msgstr "Selecione uma categoria." - -#: woocommerce-functions.php:249 -#, php-format -#@ woocommerce -msgid "You can only have 1 %s in your cart." -msgstr "Você pode ter apenas 1 %s em seu carrinho." - -#: woocommerce-functions.php:485 -#@ woocommerce -msgid "Continue Shopping →" -msgstr "Continuar Comprando →" - -#: woocommerce-functions.php:977 -#@ woocommerce -msgid "Invalid email address." -msgstr "Endereço de e-mail inválido." - -#: woocommerce-functions.php:977 -#: woocommerce-functions.php:1000 -#: woocommerce-functions.php:1020 -#: woocommerce-functions.php:1026 -#: woocommerce-functions.php:1030 -#: woocommerce-functions.php:1033 -#: woocommerce-functions.php:1063 -#: woocommerce-functions.php:1195 -#@ woocommerce -msgid "Go to homepage →" -msgstr "Vá para a página inicial →" - -#: woocommerce-functions.php:1000 -#@ woocommerce -msgid "Invalid download." -msgstr "Download inválido." - -#: woocommerce-functions.php:1012 -#@ woocommerce -msgid "You must be logged in to download files." -msgstr "Você precisa estar logado para fazer download dos arquivos." - -#: woocommerce-functions.php:1012 -#@ woocommerce -msgid "Login →" -msgstr "Entrar →" - -#: woocommerce-functions.php:1015 -#@ woocommerce -msgid "This is not your download link." -msgstr "Este não é o seu link de download." - -#: woocommerce-functions.php:1030 -#@ woocommerce -msgid "Sorry, you have reached your download limit for this file" -msgstr "Desculpe, você atingiu o limite de downloads para esse arquivo." - -#: woocommerce-functions.php:1033 -#@ woocommerce -msgid "Sorry, this download has expired" -msgstr "Desculpe, este download expirou." - -#: woocommerce-functions.php:1195 -#@ woocommerce -msgid "File not found" -msgstr "Arquivo não encontrado." - -#: woocommerce-template.php:1344 -#: woocommerce.php:832 -#@ woocommerce -msgid "required" -msgstr "obrigatório" - -#. translators: plugin header field 'PluginURI' -#: woocommerce.php:0 -#@ woocommerce -msgid "http://www.woothemes.com/woocommerce/" -msgstr "http://www.woothemes.com/woocommerce/" - -#. translators: plugin header field 'Description' -#: woocommerce.php:0 -#@ woocommerce -msgid "An e-commerce toolkit that helps you sell anything. Beautifully." -msgstr "Uma ferramenta de e-commerce que te ajuda a vender qualquer coisa. Lindamente." - -#. translators: plugin header field 'Author' -#: woocommerce.php:0 -#@ woocommerce -msgid "WooThemes" -msgstr "WooThemes" - -#. translators: plugin header field 'AuthorURI' -#: woocommerce.php:0 -#@ woocommerce -msgid "http://woothemes.com" -msgstr "http://woothemes.com" - -#: admin/includes/duplicate_product.php:90 -#@ woocommerce -msgid "(Copy)" -msgstr "(Copiar)" - -#: admin/post-types/product.php:1182 -#@ woocommerce -msgid "Sort Products" -msgstr "Ordenar Produtos" - -#: admin/post-types/shop_order.php:98 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:322 -#, php-format -#@ woocommerce -msgid "Order %s" -msgstr "Pedido %s" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -#@ woocommerce -msgid "Minimum amount" -msgstr "Quantidade mínima" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -#@ woocommerce -msgid "No minimum" -msgstr "No mínimo" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -#@ woocommerce -msgid "This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "Este campo permite que você defina o subtotal mínimo necessário para utilizar o cupom." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:75 -#: admin/post-types/writepanels/writepanel-order_data.php:400 -#: admin/post-types/writepanels/writepanel-product_data.php:523 -#: admin/post-types/writepanels/writepanel-product_data.php:540 -#: admin/woocommerce-admin-reports.php:1245 -#@ woocommerce -msgid "Search for a product…" -msgstr "Procurar um produto…" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:88 -#@ woocommerce -msgid "Products which need to be in the cart to use this coupon or, for \"Product Discounts\", which products are discounted." -msgstr "Produtos que precisam estar no carrinho para utilizar este cupom, ou, para \"Descontos de produto\", os quais são os produtos com desconto." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:94 -#@ woocommerce -msgid "Search for a product…" -msgstr "Procurar um produto..." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:107 -#@ woocommerce -msgid "Products which must not be in the cart to use this coupon or, for \"Product Discounts\", which products are not discounted." -msgstr "Os produtos que não devem estar no carrinho para utilizar este cupom, ou, para \"Descontos do Produto\", que os produtos não serão descontados." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:115 -#@ woocommerce -msgid "Any category" -msgstr "Qualquer categoria" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:123 -#@ woocommerce -msgid "A product must be in this category for the coupon to remain valid or, for \"Product Discounts\", products in these categories will be discounted." -msgstr "Um produto deve estar nesta categoria para o cupom permanecer válido ou, para \"Descontos do produto\", produtos nestas categorias serão descontados." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:129 -#@ woocommerce -msgid "No categories" -msgstr "Nenhuma categoria." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:137 -#@ woocommerce -msgid "Product must not be in this category for the coupon to remain valid or, for \"Product Discounts\", products in these categories will not be discounted." -msgstr "O produto não pode estar nesta categoria para que o cupom permaneça válido, ou, para \"Descontos de Produtos\", produtos nesta categoria não receberão descontos." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:150 -#@ woocommerce -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "Uso ilimitado" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:156 -#@ woocommerce -msgctxt "placeholder" -msgid "Never expire" -msgstr "Nunca expira" - -#: admin/post-types/writepanels/writepanel-order_data.php:86 -#@ woocommerce -msgid "Order Date:" -msgstr "Data do pedido:" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#@ woocommerce -msgid "h" -msgstr "h" - -#: admin/post-types/writepanels/writepanel-order_data.php:402 -#@ woocommerce -msgid "Add item(s)" -msgstr "Adicionar item(ns)" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:64 -#@ woocommerce -msgid "Before adding variations, add and save some attributes on the Attributes tab." -msgstr "Antes de adicionar variações, adicione e salve algum atributo na aba Atributos." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:66 -#@ woocommerce -msgid "Learn more" -msgstr "Aprenda mais" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:91 -#@ woocommerce -msgid "File Path" -msgstr "Caminho do Arquivo" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:92 -#@ woocommerce -msgid "Download limit" -msgstr "Limite de download" - -#: admin/post-types/writepanels/variation-admin-html.php:130 -#@ woocommerce -msgid "Tax class:" -msgstr "Classe de imposto:" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:512 -#@ woocommerce -msgid "Enter a value" -msgstr "Informe um valor" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:701 -#: classes/class-wc-emails.php:289 -#: classes/class-wc-emails.php:321 -#: classes/class-wc-emails.php:365 -#, php-format -#@ woocommerce -msgid "Variation #%s of %s" -msgstr "Variação #%s de %s" - -#: admin/post-types/writepanels/writepanel-product_data.php:53 -#@ woocommerce -msgid "Virtual products are intangible and aren't shipped." -msgstr "Produtos virtuais não são tangíveis, portanto, não são enviados." - -#: admin/post-types/writepanels/writepanel-product_data.php:59 -#@ woocommerce -msgid "Downloadable products give access to a file upon purchase." -msgstr "Produtos de download dão acesso a um arquivo mediate pagamento" - -#: admin/post-types/writepanels/writepanel-product_data.php:87 -#@ woocommerce -msgid "Advanced" -msgstr "Avançado" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#@ woocommerce -msgid "SKU refers to a Stock-keeping unit, a unique identifier for each distinct product and service that can be purchased." -msgstr "UME refere-se a uma Unidade de Manutenção de Estoque, um identificador único para cada produto distinto e serviços que podem ser adquiridos." - -#: admin/post-types/writepanels/writepanel-product_data.php:273 -#@ woocommerce -msgid "Weight in decimal form" -msgstr "Peso na forma decimal" - -#: admin/post-types/writepanels/writepanel-product_data.php:290 -#@ woocommerce -msgid "LxWxH in decimal form" -msgstr "(CxLxA) Comprimento, Largura e Altura na forma decimal" - -#: admin/post-types/writepanels/writepanel-product_data.php:219 -#@ woocommerce -msgid "Stock quantity. If this is a variable product this value will be used to control stock for all variations, unless you define stock at variation level." -msgstr "Estoque disponível. Se este produto contiver variações, o valor será usado para controlar o estoque de todas as variações, a menos que você defina o estoque no nível da variação." - -#: admin/post-types/writepanels/writepanel-product_data.php:233 -#@ woocommerce -msgid "Controls whether or not the product is listed as \"in stock\" or \"out of stock\" on the frontend." -msgstr "Controla se o produto é listado na loja como \"em estoque\" ou \"fora de estoque\"." - -#: admin/post-types/writepanels/writepanel-product_data.php:244 -#@ woocommerce -msgid "If managing stock, this controls whether or not backorders are allowed for this product and variations. If enabled, stock quantity can go below 0." -msgstr "Se estiver gerenciando o estoque, estes controles forem ou não pedidos não atendidos são permitidos para este produto e variações. Se ativado, a quantidade de estoque pode ir abaixo de 0." - -#: admin/post-types/writepanels/writepanel-product_data.php:311 -#@ woocommerce -msgid "No shipping class" -msgstr "Nenhum classe de entrega" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -#@ woocommerce -msgid "Shipping class" -msgstr "Classes de frete" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -#@ woocommerce -msgid "Shipping classes are used by certain shipping methods to group similar products." -msgstr "Classes de frete são utilizados por certos métodos de envio para agrupar produtos semelhantes." - -#: admin/post-types/writepanels/writepanel-product_data.php:400 -#@ woocommerce -msgid "Add new" -msgstr "Adicionar novo" - -#: admin/post-types/writepanels/writepanel-product_data.php:617 -#@ woocommerce -msgid "Menu order" -msgstr "Ordem do menu" - -#: admin/post-types/writepanels/writepanel-product_data.php:617 -#@ woocommerce -msgid "Custom ordering position." -msgstr "Posição de ordenação personalizada." - -#: admin/post-types/writepanels/writepanel-product_data.php:625 -#@ woocommerce -msgid "Enable reviews" -msgstr "Habilitar resenhas" - -#: admin/post-types/writepanels/writepanel-product_data.php:1046 -#@ woocommerce -msgid "Catalog/search" -msgstr "Catálogo/Pesquisa" - -#: admin/post-types/writepanels/writepanel-product_data.php:1053 -#@ woocommerce -msgid "Catalog visibility:" -msgstr "Visibilidade do catálogo:" - -#: admin/post-types/writepanels/writepanel-product_data.php:1069 -#@ woocommerce -msgid "Define the loops this product should be visible in. The product will still be accessible directly." -msgstr "Definição dos laços deste produto devem ser visíveis internamente. O produto ainda poderá ser acessado diretamente." - -#: admin/post-types/writepanels/writepanel-product_data.php:1075 -#@ woocommerce -msgid "Enable this option to feature this product." -msgstr "Ative essa opção para destacar este produto." - -#: admin/post-types/writepanels/writepanel-product_data.php:1077 -#@ woocommerce -msgid "Featured Product" -msgstr "Produto Destacado" - -#: admin/post-types/writepanels/writepanel-product_data.php:1081 -#@ woocommerce -msgid "OK" -msgstr "OK" - -#: admin/post-types/writepanels/writepanels-init.php:55 -#@ woocommerce -msgid "Product Short Description" -msgstr "Breve descrição sobre o Produto" - -#: admin/post-types/writepanels/writepanels-init.php:185 -#@ woocommerce -msgid "Allow reviews." -msgstr "Permitir avaliações." - -#: admin/post-types/writepanels/writepanels-init.php:186 -#, php-format -#@ default -msgid "Allow trackbacks and pingbacks on this page." -msgstr "Permitir trackbacks e pingbacks nesta página." - -#: admin/post-types/writepanels/writepanels-init.php:186 -#@ default -msgid "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" -msgstr "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" - -#: admin/settings/settings-frontend-styles.php:23 -#@ woocommerce -msgid "Styles" -msgstr "Estilos" - -#: admin/settings/settings-frontend-styles.php:43 -#@ woocommerce -msgid "Primary" -msgstr "Primário" - -#: admin/settings/settings-frontend-styles.php:43 -#@ woocommerce -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "Chamada para botões de ação / Slider de preço / camadas de navegação na interface do usuário" - -#: admin/settings/settings-frontend-styles.php:44 -#@ woocommerce -msgid "Secondary" -msgstr "Secundário" - -#: admin/settings/settings-frontend-styles.php:44 -#@ woocommerce -msgid "Buttons and tabs" -msgstr "Botões e abas" - -#: admin/settings/settings-frontend-styles.php:45 -#@ woocommerce -msgid "Highlight" -msgstr "Realce" - -#: admin/settings/settings-frontend-styles.php:45 -#@ woocommerce -msgid "Price labels and Sale Flashes" -msgstr "Etiquetas de Preços e Promoções Relâmpagos" - -#: admin/settings/settings-frontend-styles.php:46 -#@ woocommerce -msgid "Content" -msgstr "Conteúdo" - -#: admin/settings/settings-frontend-styles.php:46 -#@ woocommerce -msgid "Your themes page background - used for tab active states" -msgstr "Suas páginas de fundo de tema - usado para ativar o estado das abas" - -#: admin/settings/settings-frontend-styles.php:47 -#@ woocommerce -msgid "Subtext" -msgstr "Subtexto" - -#: admin/settings/settings-frontend-styles.php:47 -#@ woocommerce -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "Utilizado para determinados textos, por exemplo, breadcrumbs, textos menores e outros." - -#: admin/settings/settings-frontend-styles.php:51 -#@ woocommerce -msgid "To edit colours woocommerce/assets/css/woocommerce-base.less and woocommerce.css need to be writable. See the Codex for more information." -msgstr "Para editar as cores os arquivos woocommerce/assets/css/woocommerce-base.less e woocommerce.css você precisa dar permissão de escrita para estes arquivos. Veja o Codex - Permissões de Arquivos para mais informações." - -#: admin/settings/settings-init.php:114 -#@ woocommerce -msgid "Force secure checkout" -msgstr "Forçar finalização segura" - -#: admin/settings/settings-init.php:124 -#@ woocommerce -msgid "Un-force HTTPS when leaving the checkout" -msgstr "Sair do HTTPS quando sair da finalização" - -#: admin/settings/settings-init.php:133 -#@ woocommerce -msgid "Registration" -msgstr "Registro" - -#: admin/settings/settings-init.php:184 -#@ woocommerce -msgid "Enable enhanced country select boxes" -msgstr "Habilitar caixas de seleção de país aprimoradas" - -#: admin/settings/settings-init.php:223 -#@ woocommerce -msgid "Grant access to downloadable products after payment" -msgstr "Conceder acesso para download do produto após o pagamento" - -#: admin/settings/settings-init.php:357 -#@ woocommerce -msgid "This controls the default sort order of the catalog." -msgstr "Isso controla a ordem padrão do catálogo." - -#: templates/loop/orderby.php:21 -#@ woocommerce -msgid "Default sorting" -msgstr "Ordenação padrão" - -#: admin/settings/settings-init.php:366 -#@ woocommerce -msgid "Sort by most recent" -msgstr "Ordenar por mais recentes" - -#: admin/settings/settings-init.php:382 -#: admin/settings/settings-init.php:397 -#@ woocommerce -msgid "Show subcategories" -msgstr "Exibir subcategorias" - -#: admin/settings/settings-init.php:422 -#@ woocommerce -msgid "The following options affect the fields available on the edit product page." -msgstr "As seguintes opções afetam os campos disponíveis na página de edição dos produtos." - -#: admin/settings/settings-init.php:468 -#@ woocommerce -msgid "oz" -msgstr "onça" - -#: admin/settings/settings-init.php:485 -#@ woocommerce -msgid "yd" -msgstr "jarda" - -#: admin/settings/settings-init.php:491 -#@ woocommerce -msgid "Product Ratings" -msgstr "Avaliações do Produto" - -#: admin/settings/settings-init.php:501 -#@ woocommerce -msgid "Ratings are required to leave a review" -msgstr "A avaliação é necessária para deixar o seu comentário sobre o produto" - -#: admin/settings/settings-init.php:510 -#@ woocommerce -msgid "Show \"verified owner\" label for customer reviews" -msgstr "Exibir \"dono de produto\" para reviews de clientes" - -#: admin/settings/settings-init.php:520 -#@ woocommerce -msgid "The following options affect how prices are displayed on the frontend." -msgstr "As opções a seguir afetam como os preços são exibidos no site." - -#: admin/settings/settings-init.php:574 -#@ woocommerce -msgid "Remove zeros after the decimal point. e.g. $10.00 becomes $10" -msgstr "Remover zeros depois da vírgula, por exemplo, R$ 10,00 torna-se R$ 10" - -#: admin/settings/settings-init.php:717 -#@ woocommerce -msgid "This controls how stock is displayed on the frontend." -msgstr "Isso controla como o estoque é exibido na página." - -#: admin/settings/settings-init.php:723 -#@ woocommerce -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "Sempre exibir a quantidade em estoque. Por exemplo: \"12 em estoque\"" - -#: admin/settings/settings-init.php:724 -#@ woocommerce -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "Exibir a quantidade em estoque apenas quando estiver baixa. Por exemplo: \"Apenas 2 sem estoque\" Vs. \"Em estoque\"" - -#: admin/settings/settings-init.php:725 -#@ woocommerce -msgid "Never show stock amount" -msgstr "Nunca exibir a quantidade em estoque" - -#: admin/settings/settings-init.php:757 -#@ woocommerce -msgid "Hide shipping costs until an address is entered" -msgstr "Omitir o custo de envio até que algum endereço de e-mail seja informado" - -#: admin/settings/settings-init.php:766 -#@ woocommerce -msgid "This controls how multiple shipping methods are displayed on the frontend." -msgstr "Controla como os diversos métodos de entrega são exibidos na página." - -#: admin/settings/settings-init.php:772 -#@ woocommerce -msgid "Radio buttons" -msgstr "Botões Radio" - -#: admin/settings/settings-init.php:773 -#@ woocommerce -msgid "Select box" -msgstr "Caixa de Seleção" - -#: admin/settings/settings-init.php:779 -#@ woocommerce -msgid "Shipping Destination" -msgstr "Destino da entrega" - -#: admin/settings/settings-init.php:796 -#@ woocommerce -msgid "Collect shipping address even when not required" -msgstr "Coletar endereço de entrega mesmo quando não seja necessário" - -#: admin/settings/settings-init.php:814 -#@ woocommerce -msgid "Installed payment gateways are displayed below. Drag and drop payment gateways to control their display order on the checkout." -msgstr "Os métodos de pagamentos instalados estão listados abaixo. Arraste e solte os métodos de pagamento para controlar a de exibição no checkout." - -#: admin/settings/settings-shipping-methods.php:25 -#@ woocommerce -msgid "Drag and drop methods to control their display order." -msgstr "Arraste e solte os métodos para controlar a ordem de exibição." - -#: admin/woocommerce-admin-content.php:31 -#@ woocommerce -msgid "If you are having problems, or to assist us with support, please check the status page to identify any problems with your configuration:" -msgstr "Se você está tendo problemas e necessita de algum suporte, por favor, verifique a página de status para identificar os problemas com sua configuração:" - -#: admin/woocommerce-admin-content.php:33 -#: admin/woocommerce-admin-init.php:90 -#: admin/woocommerce-admin-status.php:26 -#@ woocommerce -msgid "System Status" -msgstr "Status do Sistema" - -#: admin/woocommerce-admin-content.php:35 -#, php-format -#@ woocommerce -msgid "If you come across a bug, or wish to contribute to the project you can also get involved on GitHub." -msgstr "Caso você se depare com um bug, ou deseje contribuir com o projeto, você pode também participar no GitHub." - -#: admin/woocommerce-admin-content.php:43 -#@ woocommerce -msgid "Here you can set up your store and customise it to fit your needs. The sections available from the settings page include:" -msgstr "Aqui você pode configurar sua loja e personalizá-lo para atender às suas necessidades. As seções disponíveis na página de configurações incluem:" - -#: admin/woocommerce-admin-content.php:63 -#@ woocommerce -msgid "Stock reports for low stock and out of stock items." -msgstr "Relatórios de ações para baixo estoque e fora de estoque." - -#: admin/woocommerce-admin-reports.php:248 -#: admin/woocommerce-admin-reports.php:508 -#: admin/woocommerce-admin-reports.php:713 -#: admin/woocommerce-admin-reports.php:894 -#@ woocommerce -msgid "Number of sales" -msgstr "" -"Número de vendas\n" -"\n" - -#: admin/woocommerce-admin-reports.php:243 -#: admin/woocommerce-admin-reports.php:508 -#: admin/woocommerce-admin-reports.php:713 -#: admin/woocommerce-admin-reports.php:894 -#@ woocommerce -msgid "Sales amount" -msgstr "Quantidade de vendas" - -#: admin/woocommerce-admin-functions.php:467 -#@ woocommerce -msgid "Could not compile woocommerce.less:" -msgstr "Não foi possível compilar woocommerce.less:" - -#: admin/woocommerce-admin-functions.php:488 -#: admin/woocommerce-admin-functions.php:489 -#@ woocommerce -msgid "Mark processing" -msgstr "Marcar como processando" - -#: admin/woocommerce-admin-functions.php:491 -#: admin/woocommerce-admin-functions.php:492 -#@ woocommerce -msgid "Mark completed" -msgstr "Marcar como completo" - -#: admin/woocommerce-admin-functions.php:529 -#@ woocommerce -msgid "Order status changed by bulk edit:" -msgstr "Status do pedido alterado por edição em massa:" - -#: admin/woocommerce-admin-functions.php:552 -#, php-format -#@ default -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "Status de pedido alterado." -msgstr[1] "%s status de pedidos alterados." - -#: admin/woocommerce-admin-init.php:90 -#@ woocommerce -msgid "WooCommerce Status" -msgstr "WooCommerce Status" - -#: admin/woocommerce-admin-init.php:143 -#: admin/woocommerce-admin-init.php:145 -#: classes/class-wc-post-types.php:279 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Pedidos" - -#: admin/woocommerce-admin-init.php:478 -#@ woocommerce -msgid "Enter a name for the new attribute term:" -msgstr "Informe um nome para o novo atributo:" - -#: admin/woocommerce-admin-init.php:704 -#, php-format -#@ woocommerce -msgid "Product published. View Product" -msgstr "Produto publicado. Ver Produto" - -#: admin/woocommerce-admin-init.php:756 -#@ woocommerce -msgid "Order notes" -msgstr "Notas do pedido" - -#: admin/woocommerce-admin-reports.php:104 -#@ woocommerce -msgid "Taxes by month" -msgstr "Taxas por mês" - -#: admin/woocommerce-admin-reports.php:388 -#: admin/woocommerce-admin-reports.php:661 -#: admin/woocommerce-admin-reports.php:845 -#@ woocommerce -msgid "items" -msgstr "itens" - -#: admin/woocommerce-admin-reports.php:404 -#@ woocommerce -msgid "Discounts used" -msgstr "Descontos usados" - -#: admin/woocommerce-admin-reports.php:410 -#@ woocommerce -msgid "Total shipping costs" -msgstr "Total dos custos de entrega" - -#: admin/woocommerce-admin-reports.php:1209 -#, php-format -#@ woocommerce -msgid "Sales for %s:" -msgstr "Vendas por %s" - -#: admin/woocommerce-admin-reports.php:2106 -#: admin/woocommerce-admin-reports.php:2145 -#, php-format -#@ woocommerce -msgid "%d in stock" -msgid_plural "%d in stock" -msgstr[0] "%d em estoque" -msgstr[1] "%d em estoque" - -#: admin/woocommerce-admin-reports.php:2314 -#@ woocommerce -msgid "Total taxes for year" -msgstr "Total de taxas por ano" - -#: admin/woocommerce-admin-reports.php:2325 -#@ woocommerce -msgid "Total product taxes for year" -msgstr "Total de impostos de produtos para o ano" - -#: admin/woocommerce-admin-reports.php:2336 -#@ woocommerce -msgid "Total shipping tax for year" -msgstr "Total de taxas de entrega por ano" - -#: admin/woocommerce-admin-reports.php:2352 -#@ woocommerce -msgid "Total Sales" -msgstr "Total de Vendas" - -#: admin/woocommerce-admin-reports.php:2352 -#@ woocommerce -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "Esta é a soma do campo \"Total dos Pedidos\" dentro de seus pedidos" - -#: admin/woocommerce-admin-reports.php:2353 -#@ woocommerce -msgid "Total Shipping" -msgstr "Total de Entregas" - -#: admin/woocommerce-admin-reports.php:2353 -#@ woocommerce -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "Esta é a soma dos campos \"Total de frete\" em seus pedidos" - -#: admin/woocommerce-admin-reports.php:2354 -#@ woocommerce -msgid "Total Product Taxes" -msgstr "Total de impostos no produto" - -#: admin/woocommerce-admin-reports.php:2354 -#@ woocommerce -msgid "This is the sum of the 'Cart Tax' field within your orders." -msgstr "Esta é a soma do campo \"Imposto do carrinho\" dentro de seus pedidos." - -#: admin/woocommerce-admin-reports.php:2355 -#@ woocommerce -msgid "Total Shipping Taxes" -msgstr "Total de impostos de frete." - -#: admin/woocommerce-admin-reports.php:2355 -#@ woocommerce -msgid "This is the sum of the 'Shipping Tax' field within your orders." -msgstr "Esta é a soma do campo 'Taxas de Envio' dentro de suas ordens." - -#: admin/woocommerce-admin-reports.php:2356 -#@ woocommerce -msgid "Total Taxes" -msgstr "Total de impostos" - -#: admin/woocommerce-admin-reports.php:2356 -#@ woocommerce -msgid "This is the sum of the 'Cart Tax' and 'Shipping Tax' fields within your orders." -msgstr "Isto soma os campos de \"Imposto do Carrinho\" e \"Imposto de Entrega\" dentro dos pedidos." - -#: admin/woocommerce-admin-reports.php:2357 -#@ woocommerce -msgid "Net profit" -msgstr "Lucro líquido" - -#: admin/woocommerce-admin-reports.php:2357 -#@ woocommerce -msgid "Total sales minus shipping and tax." -msgstr "Total de vendas menos frete e impostos" - -#: admin/woocommerce-admin-reports.php:2402 -#@ woocommerce -msgid "Toggle tax rows" -msgstr "Alternar linhas fiscais" - -#: admin/woocommerce-admin-settings.php:839 -#@ woocommerce -msgid "Select a page…" -msgstr "Selecione uma página…" - -#: admin/woocommerce-admin-status.php:563 -#@ woocommerce -msgid "This tool will clear the product/shop transients cache." -msgstr "Esta ferramenta irá limpar o cache de transientes de produtos/loja." - -#: admin/woocommerce-admin-status.php:576 -#@ woocommerce -msgid "Capabilities" -msgstr "Capacidades" - -#: admin/woocommerce-admin-status.php:578 -#@ woocommerce -msgid "This tool will reset the admin, customer and shop_manager roles to default. Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "Esta ferramenta irá resetar os papéis do administrador, dos clientes e do gerente da loja para o padrão. Utilize caso seus usuários não consigam acessar todas as páginas administrativas do WooCommerce" - -#: admin/woocommerce-admin-status.php:593 -#@ woocommerce -msgid "Product Transients Cleared" -msgstr "Resetados os Transients de Produto" - -#: admin/woocommerce-admin-status.php:642 -#@ woocommerce -msgid "Roles successfully reset" -msgstr "Papéis resetados com sucesso" - -#: admin/woocommerce-admin-status.php:673 -#, php-format -#@ woocommerce -msgid "There was an error calling %s::%s" -msgstr "Houve um erro ao chamar %s::%s" - -#: admin/woocommerce-admin-status.php:676 -#, php-format -#@ woocommerce -msgid "There was an error calling %s" -msgstr "Houve um erro chamando %s" - -#: admin/woocommerce-admin-status.php:272 -#@ woocommerce -msgid "by" -msgstr "por" - -#: admin/woocommerce-admin-status.php:272 -#@ woocommerce -msgid "version" -msgstr "versão" - -#: admin/woocommerce-admin-status.php:77 -#@ woocommerce -msgid "Home URL" -msgstr "URL da página inicial" - -#: admin/woocommerce-admin-status.php:81 -#@ woocommerce -msgid "Site URL" -msgstr "URL do site" - -#: admin/woocommerce-admin-status.php:295 -#@ woocommerce -msgid "Force SSL" -msgstr "Forçar SSL" - -#: admin/woocommerce-admin-status.php:349 -#@ woocommerce -msgid "Page not set" -msgstr "Página não definida" - -#: admin/woocommerce-admin-status.php:364 -#, php-format -#@ woocommerce -msgid "Page does not contain the shortcode: %s" -msgstr "A página não pode conter o código: %s" - -#: admin/woocommerce-admin-status.php:101 -#@ woocommerce -msgid "PHP Version" -msgstr "Versão do PHP" - -#: admin/woocommerce-admin-status.php:125 -#@ woocommerce -msgid "WP Max Upload Size" -msgstr "Tamanho máximo do upload do WP" - -#: admin/woocommerce-admin-status.php:109 -#@ woocommerce -msgid "WP Memory Limit" -msgstr "Limite de Memória do WP" - -#: admin/woocommerce-admin-status.php:114 -#, php-format -#@ woocommerce -msgid "%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "%s - Recomendamos o valor de 64MB para o limite de memória. Veja mais em: Aumento de memória para PHP" - -#: admin/woocommerce-admin-status.php:121 -#@ woocommerce -msgid "WP Debug Mode" -msgstr "Modo WP Debug" - -#: admin/woocommerce-admin-status.php:147 -#@ woocommerce -msgid "WC Logging" -msgstr "Log do WC" - -#: admin/woocommerce-admin-status.php:150 -#@ woocommerce -msgid "Log directory is writable." -msgstr "Diretório de log é gravável." - -#: admin/woocommerce-admin-status.php:152 -#@ woocommerce -msgid "Log directory (woocommerce/logs/) is not writable. Logging will not be possible." -msgstr "O diretório do log (woocommerce/logs/) não é gravável. Não será possível gerar logs." - -#: admin/woocommerce-admin-status.php:159 -#@ woocommerce -msgid "fsockopen/cURL" -msgstr "fsockopen/cURL" - -#: admin/woocommerce-admin-status.php:162 -#@ woocommerce -msgid "Your server has fsockopen and cURL enabled." -msgstr "O servidor da sua hospedagem deve ter fsockopen e cURL habilitados." - -#: admin/woocommerce-admin-status.php:164 -#@ woocommerce -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "O servidor da sua hospedagem está com o fsockopen habilitado, mas o cURL desabilitado." - -#: admin/woocommerce-admin-status.php:166 -#@ woocommerce -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "O servidor da sua hospedagem está com o cURL habilitado, mas o fsockopen desabilitado." - -#: admin/woocommerce-admin-status.php:170 -#@ woocommerce -msgid "Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider." -msgstr "O servidor da sua hospedagem não possue o fsockopen e o cURL habilitados. PayPal IPN e outros scripts que se comunicam com o servidor não irão funcionar. Entre em contato com o seu provedor de hospedagem para mais detalhes." - -#: admin/woocommerce-admin-status.php:196 -#@ woocommerce -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "O wp_remote_post() funcionou - O IPN do PayPal IPN esta funcionando corretamente." - -#: admin/woocommerce-admin-status.php:199 -#@ woocommerce -msgid "wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:" -msgstr "wp_remote_post() falou. PayPal IPN não vai funcionar com o seu servidor. Contacte o seu provedor de hospedagem. Erro:" - -#: admin/woocommerce-admin-status.php:202 -#@ woocommerce -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "wp_remote_post() falou. PayPal IPN pode não estar funcionando com o seu servidor." - -#: admin/woocommerce-admin-status.php:27 -#: admin/woocommerce-admin-status.php:688 -#@ woocommerce -msgid "Tools" -msgstr "Ferramentas" - -#: classes/class-wc-coupon.php:448 -#, php-format -#@ woocommerce -msgid "Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from your order." -msgstr "Desculpe, mas parece que o cupom \"%s\" é inválido - e foi agora retirado de seu pedido." - -#: classes/class-wc-coupon.php:451 -#, php-format -#@ woocommerce -msgid "Sorry, it seems the coupon \"%s\" is not yours - it has now been removed from your order." -msgstr "Desculpe, mas parece que o cupom \"%s\" não é seu - e foi agora retirado de seu pedido" - -#: classes/class-wc-cart.php:883 -#: classes/class-wc-cart.php:891 -#, php-format -#@ woocommerce -msgid "%s You cannot add that amount to the cart — we have %s in stock and you already have %s in your cart." -msgstr "%s Desculpe, mas você não pode adicionar essa quantidade ao carrinho — nós temos apenas %s itens em estoque e você possui %s no seu carrinho." - -#: classes/class-wc-checkout.php:61 -#@ woocommerce -msgctxt "placeholder" -msgid "Username" -msgstr "Usuário" - -#: classes/class-wc-checkout.php:69 -#@ woocommerce -msgctxt "placeholder" -msgid "Password" -msgstr "Senha" - -#: classes/class-wc-checkout.php:78 -#@ woocommerce -msgctxt "placeholder" -msgid "Notes about your order, e.g. special notes for delivery." -msgstr "Notas sobre seu pedido (por exemplo, informações especiais sobre entrega)." - -#: classes/class-wc-checkout.php:430 -#, php-format -#@ woocommerce -msgid "(%s) is not a valid postcode/ZIP." -msgstr "(%s) não é um CEP válido." - -#: classes/class-wc-checkout.php:451 -#@ woocommerce -msgid "is not valid. Please enter one of the following:" -msgstr "não é válido. Por favor, informe algum dos seguintes:" - -#: woocommerce-functions.php:768 -#@ woocommerce -msgid "Couldn’t register you… please contact us if you continue to have problems." -msgstr "Não foi possível registrá-lo; por favor entre em contato conosco caso continue a ter problemas" - -#: classes/class-wc-checkout.php:140 -#, php-format -#@ woocommerce -msgid "Order – %s" -msgstr "Pedido – %s" - -#: classes/class-wc-checkout.php:140 -#, php-format -#@ woocommerce -msgctxt "Order date parsed by strftime" -msgid "%b %d, %Y @ %I:%M %p" -msgstr "%b %d, %Y @ %I:%M %p" - -#: classes/class-wc-checkout.php:244 -#@ woocommerce -msgid "Backordered" -msgstr "Encomendado" - -#: classes/class-wc-countries.php:38 -#@ woocommerce -msgid "Åland Islands" -msgstr "Ilhas Åland" - -#: classes/class-wc-countries.php:217 -#@ woocommerce -msgid "Saint Barthélemy" -msgstr "São Bartolomeu" - -#: classes/class-wc-countries.php:226 -#@ woocommerce -msgid "São Tomé and Príncipe" -msgstr "São Tomé e Príncipe" - -#: i18n/states/BR.php:20 -#@ woocommerce -msgid "Espírito Santo" -msgstr "Espírito Santo" - -#: i18n/states/BR.php:27 -#@ woocommerce -msgid "Paraíba" -msgstr "Paraíba" - -#: i18n/states/HK.php:14 -#@ woocommerce -msgid "Kowloon" -msgstr "Kowloon" - -#: classes/class-wc-countries.php:790 -#@ woocommerce -msgid "Canton" -msgstr "Canton" - -#: classes/class-wc-coupon.php:460 -#@ woocommerce -msgid "Coupon usage limit has been reached." -msgstr "O limite de uso do cupom foi alcançado." - -#: classes/class-wc-coupon.php:463 -#@ woocommerce -msgid "This coupon has expired." -msgstr "Este cupom expirou." - -#: classes/class-wc-coupon.php:466 -#, php-format -#@ woocommerce -msgid "The minimum spend for this coupon is %s." -msgstr "O valor mínimo do pedido para este cupom é %s." - -#: classes/class-wc-emails.php:291 -#: classes/class-wc-emails.php:323 -#: classes/class-wc-emails.php:367 -#, php-format -#@ woocommerce -msgid "Product #%s - %s" -msgstr "Produto #%s - %s" - -#: classes/class-wc-emails.php:249 -#@ woocommerce -msgid "Note" -msgstr "Nota" - -#: classes/class-wc-order.php:283 -#@ woocommerce -msgctxt "hash before order number" -msgid "#" -msgstr "#" - -#: classes/class-wc-order.php:886 -#, php-format -#@ woocommerce -msgid " %svia %s" -msgstr " %svia %s" - -#: classes/abstracts/abstract-wc-product.php:554 -#, php-format -#@ woocommerce -msgid "Only %s left in stock" -msgstr "Apenas %s em estoque" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:100 -#@ woocommerce -msgid "Account Details" -msgstr "Detalhes da Conta" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:102 -#@ woocommerce -msgid "Optionally enter your bank details below for customers to pay into." -msgstr "Opcionalmente, insira seus dados bancários abaixo para que os clientes possam pagar." - -#: classes/gateways/cod/class-wc-gateway-cod.php:81 -#@ woocommerce -msgid "Enable Cash on Delivery" -msgstr "Ativar Pagamento na Entrega" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:31 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:168 -#@ woocommerce -msgid "Mijireh Checkout" -msgstr "Mijireh Checkout" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:108 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:293 -#@ woocommerce -msgid "Mijireh error:" -msgstr "Erro no Mijireh:" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:132 -#@ woocommerce -msgid "Enable Mijireh Checkout" -msgstr "Habilitar checkout com Mijireh" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:136 -#@ woocommerce -msgid "Access Key" -msgstr "Chave de Acesso" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:138 -#@ woocommerce -msgid "The Mijireh access key for your store." -msgstr "Chave de acesso do Mijireh para sua loja." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:146 -#@ woocommerce -msgid "Credit Card" -msgstr "Cartão de Crédito" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:172 -#@ woocommerce -msgid "Get started with Mijireh Checkout" -msgstr "Como começar com o Mijireh" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:173 -#@ woocommerce -msgid "provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site. Mijireh supports a wide variety of payment gateways: Stripe, Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and more." -msgstr "fornece total compatibiliade com a Compilação PCI, uma forma segura para coletar e transmitir os dados dos cartões de crédito para o seu gateway de pagamento, mantendo controle sobre o design do seu site. Mijireh suporta uma ampla variedade de gateways de pagamento como: Stripe, Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap e muito mais." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:175 -#@ woocommerce -msgid "Join for free" -msgstr "Cadastre-se gratuitamente" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:175 -#@ woocommerce -msgid "Learn more about WooCommerce and Mijireh" -msgstr "Leia mais sobre o WooCommerce e Mijireh" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:179 -#@ woocommerce -msgid "provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." -msgstr "fornece total compatibiliade com a Compilação PCI, uma forma segura para coletar e transmitir os dados dos cartões de crédito para o seu gateway de pagamento, mantendo controle sobre o design do seu site." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:162 -#@ woocommerce -msgid "Submission method" -msgstr "Método de submissão" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:164 -#@ woocommerce -msgid "Use form submission method." -msgstr "Utilize o método de submissão do formulário." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:165 -#@ woocommerce -msgid "Enable this to post order data to PayPal via a form instead of using a redirect/querystring." -msgstr "Habilite para enviar informações do pedido para o PayPal pelo formulário ao invés de usar um redirecionamento/querystring." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:169 -#@ woocommerce -msgid "Page Style" -msgstr "Estilo da Página" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:171 -#@ woocommerce -msgid "Optionally enter the name of the page style you wish to use. These are defined within your PayPal account." -msgstr "Opcional: digite o nome do estilo de página que você deseja usar (definidos dentro da sua conta do PayPal)." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:177 -#@ woocommerce -msgid "Shipping options" -msgstr "Opções de Entrega" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:184 -#@ woocommerce -msgid "Send shipping details to PayPal instead of billing." -msgstr "Enviar detalhes de entrega para o PayPal em vez dos detalhes de cobrança." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:186 -#@ woocommerce -msgid "PayPal allows us to send 1 address. If you are using PayPal for shipping labels you may prefer to send the shipping address rather than billing." -msgstr "PayPal nos permite enviar 1 endereço. Se você está usando PayPal para etiquetas de entrega, você pode preferir enviar o endereço de entrega ao invés da conta." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:190 -#@ woocommerce -msgid "Address override" -msgstr "Substituir o endereço" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:192 -#@ woocommerce -msgid "Enable \"address_override\" to prevent address information from being changed." -msgstr "Ativar \"address_override\" para previnir que as informações de endereço sejam alteradas." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:193 -#@ woocommerce -msgid "PayPal verifies addresses therefore this setting can cause errors (we recommend keeping it disabled)." -msgstr "PayPal verifica os endereços portanto essa configuração pode causar erros (recomendamos manter desabilitado)." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:197 -#@ woocommerce -msgid "Gateway Testing" -msgstr "Gateway de Testes" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:206 -#, php-format -#@ woocommerce -msgid "PayPal sandbox can be used to test payments. Sign up for a developer account here." -msgstr "PayPal sandbox pode ser utilizado para testar os pagamentos. Entre com sua conta de desenvolvedor." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:209 -#@ woocommerce -msgid "Debug Log" -msgstr "Log de depuração" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:211 -#@ woocommerce -msgid "Enable logging" -msgstr "Ativar logs" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:332 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:386 -#@ woocommerce -msgid "Shipping via" -msgstr "Entrega via" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:711 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:729 -#, php-format -#@ woocommerce -msgid "Order %s has been marked as refunded - PayPal reason code: %s" -msgstr "O pedido %s foi marcado como reembolsado. Código do motivo do PayPal: %s" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:714 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:732 -#, php-format -#@ woocommerce -msgid "Payment for order %s refunded/reversed" -msgstr "O pagamento para o pedido %s foi rejeitado." - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:52 -#@ woocommerce -msgid "Enable this option to show the ShareDaddy button on the product page." -msgstr "Habilite esta opção para exibir o botão ShareDaddy em sua página de produto" - -#: classes/integrations/sharethis/class-wc-sharethis.php:69 -#@ woocommerce -msgid "ShareThis Code" -msgstr "Código do ShareThis" - -#: classes/integrations/sharethis/class-wc-sharethis.php:70 -#@ woocommerce -msgid "You can tweak the ShareThis code by editing this option." -msgstr "Você pode ajustar o código do ShareThis editando essa opção." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:116 -#@ woocommerce -msgid "Cost per order" -msgstr "Custo por pedido" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:160 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:126 -#@ woocommerce -msgid "Enter a minimum fee amount. Fee's less than this will be increased. Leave blank to disable." -msgstr "Digite uma taxa mínima. Taxas menores que essa serão aumentadas. Deixe em branco para desativar." - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 -#@ woocommerce -msgid "Fixed amount" -msgstr "Quantia fixa" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:117 -#@ woocommerce -msgid "Percentage of cart total" -msgstr "Porcentagem do total de carrinho" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:118 -#@ woocommerce -msgid "Fixed amount per product" -msgstr "Quantia fixa por produto" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:123 -#@ woocommerce -msgid "Delivery Fee" -msgstr "Entrega grátis" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:129 -#@ woocommerce -msgid "What fee do you want to charge for local delivery, disregarded if you choose free. Leave blank to disable." -msgstr "Qual a taxa que você deseja cobrar para entrega local, desconsiderando a opção de frete grátis. Deixe em branco para desabilitar." - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:135 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:91 -#@ woocommerce -msgid "Zip/Post Codes" -msgstr "CEP" - -#: classes/class-wc-coupon.php:498 -#@ woocommerce -msgid "Please enter a coupon code." -msgstr "Por favor, digite o código do cupom." - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:51 -#@ woocommerce -msgid "Please enter a valid order ID" -msgstr "Por favor insira um ID de pedido válido" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:55 -#@ woocommerce -msgid "Please enter a valid order email" -msgstr "Por favor, informe um e-mail de pedido válido" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:74 -#@ woocommerce -msgid "Sorry, we could not find that order id in our database." -msgstr "Desculpe, não conseguimos encontrar esse pedido em nossa base de dados." - -#: woocommerce-template.php:219 -#, php-format -#@ woocommerce -msgid "Search Results: “%s”" -msgstr "Resultados da Pesquisa: “%s”" - -#: woocommerce-template.php:222 -#, php-format -#@ woocommerce -msgid " – Page %s" -msgstr " – Página %s" - -#: templates/checkout/form-billing.php:17 -#@ woocommerce -msgid "Billing & Shipping" -msgstr "Pagamento & Entrega" - -#: templates/emails/plain/admin-new-order.php:20 -#@ woocommerce -msgid "jS F Y" -msgstr "j F Y" - -#: templates/emails/customer-new-account.php:14 -#: templates/emails/plain/customer-new-account.php:13 -#, php-format -#@ woocommerce -msgid "Thanks for creating an account on %s. Your username is %s." -msgstr "Obrigado por criar uma conta em %s. Seu nome de usuário é %s." - -#: woocommerce-template.php:1300 -#@ woocommerce -msgid "Order Again" -msgstr "Comprar novamente" - -#: templates/order/tracking.php:18 -#, php-format -#@ woocommerce -msgid "Order %s which was made %s has the status “%s”" -msgstr "Pedido %s feito em %s com o status “%s”" - -#: templates/order/tracking.php:18 -#@ woocommerce -msgid "ago" -msgstr "atrás" - -#: templates/single-product/add-to-cart/variable.php:69 -#@ woocommerce -msgid "Clear selection" -msgstr "Limpar seleção" - -#: templates/single-product/review.php:40 -#@ woocommerce -msgid "verified owner" -msgstr "proprietário verificado" - -#: templates/single-product-reviews.php:97 -#@ woocommerce -msgid "Rate…" -msgstr "Taxa…" - -#: classes/widgets/class-wc-widget-products.php:71 -#@ woocommerce -msgid "Hide free products" -msgstr "Ocultar produtos gratuitos" - -#: classes/widgets/class-wc-widget-cart.php:23 -#@ woocommerce -msgid "Display the user's Cart in the sidebar." -msgstr "Exibir o carrinho de compras na barra lateral." - -#: classes/widgets/class-wc-widget-cart.php:25 -#@ woocommerce -msgid "WooCommerce Cart" -msgstr "Carrinho do WooCommerce" - -#: classes/widgets/class-wc-widget-product-categories.php:151 -#@ woocommerce -msgid "No product categories exist." -msgstr "Não existem categorias de produtos." - -#: classes/widgets/class-wc-widget-recent-reviews.php:85 -#, php-format -#@ woocommerce -msgctxt "by comment author" -msgid "by %1$s" -msgstr "por %1$s" - -#: admin/includes/updates/woocommerce-update-2.0.php:58 -#: classes/class-wc-post-types.php:230 -#@ woocommerce -msgctxt "slug" -msgid "product" -msgstr "produto" - -#: woocommerce-core-functions.php:1644 -#@ woocommerce -msgid "Uncategorized" -msgstr "Sem categoria" - -#: woocommerce-functions.php:907 -#@ woocommerce -msgid "The cart has been filled with the items from your previous order." -msgstr "Os itens do seu pedido anterior foram inseridos no seu carrinho atual." - -#: woocommerce-template.php:1393 -#@ woocommerce -msgid "Update country" -msgstr "Atualizar país" - -#: classes/class-wc-post-types.php:63 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Categories" -msgstr "Categorias" - -#: classes/class-wc-post-types.php:98 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Tags" -msgstr "Tags" - -#: classes/class-wc-post-types.php:132 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Shipping Classes" -msgstr "Classes de Entrega" - -#: classes/class-wc-post-types.php:238 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Products" -msgstr "Produtos" - -#: classes/class-wc-post-types.php:328 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Coupons" -msgstr "Cupons" - -#: woocommerce.php:830 -#@ woocommerce -msgid "Please select a rating" -msgstr "Por favor, selecione uma classificação" - -#: admin/importers/importers-init.php:13 -#@ woocommerce -msgid "WooCommerce Tax Rates (CSV)" -msgstr "WooCommerce Impostos (CSV)" - -#: admin/importers/importers-init.php:13 -#@ woocommerce -msgid "Import tax rates to your store via a csv file." -msgstr "Importe os impostos para sua loja com um arquivo csv." - -#: admin/importers/tax-rates-importer.php:103 -#: admin/importers/tax-rates-importer.php:188 -#: admin/importers/tax-rates-importer.php:228 -#: admin/importers/tax-rates-importer.php:243 -#@ woocommerce -msgid "Sorry, there has been an error." -msgstr "Desculpe-nos, ocorreu um erro." - -#: admin/importers/tax-rates-importer.php:104 -#@ woocommerce -msgid "The file does not exist, please try again." -msgstr "O arquivo não existe, por favor tente novamente." - -#: admin/importers/tax-rates-importer.php:189 -#@ woocommerce -msgid "The CSV is invalid." -msgstr "O arquivo CSV é inválido." - -#: admin/importers/tax-rates-importer.php:200 -#, php-format -#@ woocommerce -msgid "Import complete - imported %s tax rates and skipped %s." -msgstr "Importação concluída - importados %s impostos e ignorados %s." - -#: admin/importers/tax-rates-importer.php:210 -#@ woocommerce -msgid "All done!" -msgstr "Tudo feito!" - -#: admin/importers/tax-rates-importer.php:210 -#@ woocommerce -msgid "View Tax Rates" -msgstr "Ver taxas de imposto" - -#: admin/importers/tax-rates-importer.php:261 -#@ woocommerce -msgid "Import Tax Rates" -msgstr "Importar Taxas de Imposto" - -#: admin/importers/tax-rates-importer.php:284 -#@ woocommerce -msgid "Hi there! Upload a CSV file containing tax rates to import the contents into your shop. Choose a .csv file to upload, then click \"Upload file and import\"." -msgstr "Olá! Faça upload de um arquivo CSV contendo os impostos a serem aplicados em sua loja. Escolha um arquivo .csv para fazer upload, então clique em \"Fazer upload de arquivo e importar\"." - -#: admin/importers/tax-rates-importer.php:286 -#, php-format -#@ woocommerce -msgid "Tax rates need to be defined with columns in a specific order (10 columns). Click here to download a sample." -msgstr "As taxas de impostos precisam ser definidas com colunas numa ordem específica (10 colunas). Clique aqui para fazer download de um exemplo." - -#: admin/importers/tax-rates-importer.php:294 -#@ default -msgid "Before you can upload your import file, you will need to fix the following error:" -msgstr "Antes de poder realizar upload do arquivo de importação, você deve corrigir os seguinte erro:" - -#: admin/importers/tax-rates-importer.php:303 -#@ default -msgid "Choose a file from your computer:" -msgstr "Selecione um arquivo no seu computador:" - -#: admin/importers/tax-rates-importer.php:309 -#, php-format -#@ default -msgid "Maximum size: %s" -msgstr "Tamanho máximo: %s" - -#: admin/importers/tax-rates-importer.php:314 -#@ woocommerce -msgid "OR enter path to file:" -msgstr "ou informe o caminho para o arquivo:" - -#: admin/importers/tax-rates-importer.php:321 -#@ woocommerce -msgid "Delimiter" -msgstr "Delimitador" - -#: admin/importers/tax-rates-importer.php:327 -#@ default -msgid "Upload file and import" -msgstr "Fazer upload do arquivo e importar" - -#: admin/includes/welcome.php:154 -#: woocommerce.php:171 -#@ woocommerce -msgid "Docs" -msgstr "Docs" - -#: admin/includes/notice-update.php:7 -#@ woocommerce -msgid "Run the updater" -msgstr "Fazer a atualização" - -#: admin/includes/notice-update.php:12 -#@ woocommerce -msgid "It is strongly recommended that you backup your database before proceeding. Are you sure you wish to run the updater now?" -msgstr "É extremamente recomendado que você faça backup de seu banco de dados antes de continuar. Você tem certeza que deseja fazer a atualização agora?" - -#: admin/post-types/product.php:795 -#: admin/post-types/product.php:819 -#@ woocommerce -msgid "Increase by (fixed amount or %):" -msgstr "Aumentar por (valor fixo ou %):" - -#: admin/post-types/product.php:796 -#: admin/post-types/product.php:820 -#@ woocommerce -msgid "Decrease by (fixed amount or %):" -msgstr "Diminuir por (valor fixo ou %):" - -#: admin/post-types/product.php:806 -#: admin/post-types/product.php:831 -#@ woocommerce -msgid "Enter price" -msgstr "Informe o preço" - -#: admin/post-types/product.php:821 -#@ woocommerce -msgid "Decrease regular price by (fixed amount or %):" -msgstr "Diminuir preço normal por (valor fixo ou %):" - -#: admin/post-types/product.php:1221 -#@ woocommerce -msgid "Insert into product" -msgstr "Inserir no produto" - -#: admin/post-types/product.php:1222 -#@ woocommerce -msgid "Uploaded to this product" -msgstr "Arquivo enviado para esse produto" - -#: admin/post-types/shop_coupon.php:30 -#@ woocommerce -msgid "Usage / Limit" -msgstr "Uso / Limite" - -#: admin/post-types/shop_coupon.php:56 -#@ woocommerce -msgid "Edit coupon" -msgstr "Editar cupom" - -#: admin/post-types/shop_coupon.php:114 -#, php-format -#@ woocommerce -msgid "%s / %s" -msgstr "%s / %s" - -#: admin/post-types/shop_coupon.php:116 -#, php-format -#@ woocommerce -msgid "%s / ∞" -msgstr "%s / ∞" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -#, php-format -#@ woocommerce -msgid "File %d: %s" -msgstr "Arquivo %d: %s" - -#: admin/post-types/writepanels/order-fee-html.php:10 -#@ woocommerce -msgid "Fee Name" -msgstr "Nome do imposto" - -#: admin/post-types/writepanels/order-tax-html.php:6 -#@ woocommerce -msgid "Tax Rate:" -msgstr "Valor do imposto:" - -#: admin/post-types/writepanels/order-tax-html.php:16 -#: admin/post-types/writepanels/writepanel-order_data.php:630 -#@ woocommerce -msgid "Sales Tax:" -msgstr "Imposto sobre as vendas:" - -#: admin/post-types/writepanels/variation-admin-html.php:76 -#@ woocommerce -msgid "Cancel schedule" -msgstr "Cancelar agendamento" - -#: admin/post-types/writepanels/variation-admin-html.php:83 -#@ woocommerce -msgid "Sale start date:" -msgstr "Data de início da venda:" - -#: admin/post-types/writepanels/variation-admin-html.php:87 -#@ woocommerce -msgid "Sale end date:" -msgstr "Data final de venda:" - -#: admin/post-types/writepanels/variation-admin-html.php:143 -#@ woocommerce -msgid "File paths:" -msgstr "Caminho do arquivo:" - -#: admin/post-types/writepanels/variation-admin-html.php:143 -#@ woocommerce -msgid "Enter one or more File Paths, one per line, to make this variation a downloadable product, or leave blank." -msgstr "Insira uma ou mais URLs do(s) arquivo(s), uma por linha, para fazer a variação de download para um produto ou deixe o campo em branco." - -#: admin/post-types/writepanels/variation-admin-html.php:144 -#: admin/post-types/writepanels/writepanel-product_data.php:153 -#@ woocommerce -msgid "File paths/URLs, one per line" -msgstr "Caminho do arquivo (URL), um por linha" - -#: admin/post-types/writepanels/variation-admin-html.php:145 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -#@ woocommerce -msgid "Choose a file" -msgstr "Escolha um arquivo" - -#: admin/post-types/writepanels/variation-admin-html.php:145 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -#@ woocommerce -msgid "Insert file URL" -msgstr "Inserir a URL do arquivo" - -#: admin/post-types/writepanels/variation-admin-html.php:158 -#@ woocommerce -msgid "Download Expiry:" -msgstr "Expiração do Download:" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -#@ woocommerce -msgid "Coupon description" -msgstr "Descrição do cupom" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -#@ woocommerce -msgid "Optionally enter a description for this coupon for your reference." -msgstr "Opcional: digite uma descrição para este cupom (para seu controle)." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -#, php-format -#@ woocommerce -msgid "Check this box if the coupon grants free shipping. The free shipping method must be enabled with the \"must use coupon\" setting checked." -msgstr "Marque essa caixa se o cupom garante entrega grátis. O método de entrega grátis precisa estar habilitado com a opção \"necessário usar cupom\" selecionada." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -#@ woocommerce -msgid "Check this box if the coupon cannot be used in conjunction with other coupons." -msgstr "Selecione essa caixa se o cupom não poderá ser usado em conjunto com outros cupons." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -#@ woocommerce -msgid "Check this box if the coupon should be applied before calculating cart tax." -msgstr "Habilte se o cupom de desconto deve ser usado antes de calcular o imposto no carrinho." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:93 -#@ woocommerce -msgid "Exclude products" -msgstr "Excluir produtos" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:114 -#: assets/js/admin/editor_plugin_lang.php:9 -#@ woocommerce -msgid "Product categories" -msgstr "Categorias de produto" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:128 -#@ woocommerce -msgid "Exclude categories" -msgstr "Excluir categorias" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:150 -#@ woocommerce -msgid "How many times this coupon can be used before it is void." -msgstr "Quantas vezes esse cupom pode ser usado antes de expirar." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:156 -#@ woocommerce -msgid "The date this coupon will expire, YYYY-MM-DD." -msgstr "Este cupom é válido até DD-MM-YYYY." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:193 -#@ woocommerce -msgid "Coupon code already exists - customers will use the latest coupon with this code." -msgstr "Já existe um cupom com esse código - os clientes usarão o último cupom criado com esse código." - -#: admin/post-types/writepanels/writepanel-order_data.php:62 -#@ woocommerce -msgid "Order number" -msgstr "Número do pedido" - -#: admin/post-types/writepanels/writepanel-order_data.php:67 -#@ woocommerce -msgid "Customer IP:" -msgstr "IP do Cliente:" - -#: admin/post-types/writepanels/writepanel-order_data.php:74 -#@ woocommerce -msgid "General Details" -msgstr "Detalhes Gerais" - -#: admin/post-types/writepanels/writepanel-order_data.php:208 -#@ woocommerce -msgid "Load billing address" -msgstr "Carregar endereço de cobrança" - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -#@ woocommerce -msgid "Load shipping address" -msgstr "Carregar endereço de entrega" - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -#@ woocommerce -msgid "Copy from billing" -msgstr "Copiar do pagamento" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -#@ woocommerce -msgid "Line subtotals are before pre-tax discounts, totals are after." -msgstr "Linhas subtotais são antes do desconto pré-imposto, totais são depois." - -#: admin/post-types/writepanels/writepanel-order_data.php:388 -#@ woocommerce -msgid "Delete Lines" -msgstr "Apagar linhas" - -#: admin/post-types/writepanels/writepanel-order_data.php:390 -#@ woocommerce -msgid "Stock Actions" -msgstr "Ações de estoque" - -#: admin/post-types/writepanels/writepanel-order_data.php:391 -#@ woocommerce -msgid "Reduce Line Stock" -msgstr "Reduzir estoque" - -#: admin/post-types/writepanels/writepanel-order_data.php:392 -#@ woocommerce -msgid "Increase Line Stock" -msgstr "Aumentar estoque" - -#: admin/post-types/writepanels/writepanel-order_data.php:396 -#: admin/post-types/writepanels/writepanel-order_data.php:456 -#@ woocommerce -msgid "Apply" -msgstr "Aplicar" - -#: admin/post-types/writepanels/writepanel-order_data.php:403 -#@ woocommerce -msgid "Add fee" -msgstr "Adicionar taxa" - -#: admin/post-types/writepanels/writepanel-order_data.php:434 -#@ woocommerce -msgid "Resend order emails" -msgstr "Reenviar e-mails de pedido" - -#: admin/post-types/writepanels/writepanel-order_data.php:502 -#@ woocommerce -msgid "Discounts before tax - calculated by comparing subtotals to totals." -msgstr "Descontos antes do imposto - calculado comparando subtotais com o total." - -#: admin/post-types/writepanels/writepanel-order_data.php:510 -#@ woocommerce -msgid "Discounts after tax - user defined." -msgstr "Descontos depois do imposto - definido pelo usuário." - -#: admin/post-types/writepanels/writepanel-order_data.php:543 -#@ woocommerce -msgid "Label:" -msgstr "Etiqueta:" - -#: admin/post-types/writepanels/writepanel-order_data.php:544 -#@ woocommerce -msgid "The shipping title the customer sees" -msgstr "O título de entrega que o cliente verá:" - -#: admin/post-types/writepanels/writepanel-order_data.php:551 -#@ woocommerce -msgid "Cost:" -msgstr "Custo:" - -#: admin/post-types/writepanels/writepanel-order_data.php:581 -#: admin/post-types/writepanels/writepanel-order_data.php:583 -#: admin/post-types/writepanels/writepanel-order_data.php:682 -#: admin/post-types/writepanels/writepanel-order_data.php:684 -#@ woocommerce -msgid "Other" -msgstr "Outro" - -#: admin/post-types/writepanels/writepanel-order_data.php:630 -#@ woocommerce -msgid "Total tax for line items + fees." -msgstr "Total de impostos para a linha de itens + taxas." - -#: admin/post-types/writepanels/writepanel-order_data.php:695 -#@ woocommerce -msgid "Calc taxes" -msgstr "Calcular impostos" - -#: admin/post-types/writepanels/writepanel-order_data.php:697 -#@ woocommerce -msgid "Calc totals" -msgstr "Calcular totais" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:76 -#@ woocommerce -msgid "Toggle "Enabled"" -msgstr "Alternar "Ativado"" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:77 -#@ woocommerce -msgid "Toggle "Downloadable"" -msgstr "Alternar "Baixável"" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:78 -#@ woocommerce -msgid "Toggle "Virtual"" -msgstr "Alternar "Virtual"" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:79 -#@ woocommerce -msgid "Delete all variations" -msgstr "Excluir todas as variações" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:96 -#@ woocommerce -msgid "Go" -msgstr "Ir" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:589 -#: admin/woocommerce-admin-taxonomies.php:62 -#: admin/woocommerce-admin-taxonomies.php:154 -#@ woocommerce -msgid "Choose an image" -msgstr "Escolher uma imagem" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:591 -#@ woocommerce -msgid "Set variation image" -msgstr "Configurar imagem da variação" - -#: admin/post-types/writepanels/writepanel-product_data.php:83 -#@ woocommerce -msgid "Linked Products" -msgstr "Produtos Relacionados" - -#: admin/post-types/writepanels/writepanel-product_data.php:152 -#@ woocommerce -msgid "File paths (one per line)" -msgstr "Caminho dos arquivos (um por linha)" - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -#@ woocommerce -msgid "Sold Individually" -msgstr "Vender individualmente" - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -#@ woocommerce -msgid "Enable this to only allow one of this item to be bought in a single order" -msgstr "Habilite para permitir que somente um item deste seja comprado por pedido." - -#: admin/post-types/writepanels/writepanel-product_data.php:515 -#@ woocommerce -msgid "Save attributes" -msgstr "Salvar atributos" - -#: admin/post-types/writepanels/writepanel-product_data.php:590 -#@ woocommerce -msgid "Set this option to make this product part of a grouped product." -msgstr "Selecione essa opção para fazer com que esse produto faça parte de um grupo." - -#: admin/post-types/writepanels/writepanel-product_images.php:43 -#: admin/post-types/writepanels/writepanel-product_images.php:103 -#@ woocommerce -msgid "Delete image" -msgstr "Apagar imagem" - -#: admin/post-types/writepanels/writepanel-product_images.php:54 -#@ woocommerce -msgid "Add product gallery images" -msgstr "Adicionar galeria de imagens do produto" - -#: admin/post-types/writepanels/writepanel-product_images.php:80 -#@ woocommerce -msgid "Add Images to Product Gallery" -msgstr "Adicionar Imagens à Galeria Produto" - -#: admin/post-types/writepanels/writepanel-product_images.php:82 -#@ woocommerce -msgid "Add to gallery" -msgstr "Adicionar na galeria" - -#: admin/post-types/writepanels/writepanels-init.php:47 -#@ woocommerce -msgid "Product Gallery" -msgstr "Galeria de Produtos" - -#: admin/post-types/writepanels/writepanels-init.php:69 -#@ woocommerce -msgid "Order Items" -msgstr "Ordem dos itens" - -#: admin/post-types/writepanels/writepanels-init.php:69 -#@ woocommerce -msgid "Note: if you edit quantities or remove items from the order you will need to manually update stock levels." -msgstr "Obs.: se você editar quantidades ou remover itens do pedido você terá que atualizar os níveis de estoque manualmente." - -#: admin/post-types/writepanels/writepanels-init.php:72 -#@ woocommerce -msgid "Downloadable Product Permissions" -msgstr "Permissões do Produto de Download" - -#: admin/post-types/writepanels/writepanels-init.php:72 -#@ woocommerce -msgid "Note: Permissions for order items will automatically be granted when the order status changes to processing/completed." -msgstr "Nota: As permissões para os itens do pedido serão concedidas automaticamente quando o status do pedido estiverem em processamento ou completado." - -#: admin/settings/settings-init.php:74 -#@ woocommerce -msgid "Store Notice" -msgstr "Notificação da loja" - -#: admin/settings/settings-init.php:82 -#@ woocommerce -msgid "Store Notice Text" -msgstr "Texto de notificação da loja" - -#: admin/settings/settings-init.php:197 -#@ woocommerce -msgid "File Download Method" -msgstr "Método de download de arquivo" - -#: admin/settings/settings-init.php:250 -#, php-format -#@ woocommerce -msgid "Set up core WooCommerce pages here, for example the base page. The base page can also be used in your %sproduct permalinks%s." -msgstr "Configurar as páginas principais do WooCommerce aqui. Essas páginas de base são usadas na estrutura do %sproduct permalinks%s." - -#: admin/settings/settings-init.php:266 -#@ woocommerce -msgid "Terms Page ID" -msgstr "Página de Termos de Uso" - -#: admin/settings/settings-init.php:336 -#@ woocommerce -msgid "Lost Password Page" -msgstr "Página de Senha Perdida" - -#: admin/settings/settings-init.php:337 -#@ woocommerce -msgid "Page contents: [woocommerce_lost_password] Parent: \"My Account\"" -msgstr "Conteúdo da página: [woocommerce_lost_password] Parente: \"Minha Conta\"" - -#: admin/settings/settings-init.php:356 -#@ woocommerce -msgid "Default Product Sorting" -msgstr "Ordem de produto padrão" - -#: admin/settings/settings-init.php:374 -#@ woocommerce -msgid "Shop Page Display" -msgstr "Exibir página da loja" - -#: admin/settings/settings-init.php:375 -#@ woocommerce -msgid "This controls what is shown on the product archive." -msgstr "Controla o que será exibido nos arquivos de produtos" - -#: admin/settings/settings-init.php:381 -#: admin/settings/settings-init.php:396 -#@ woocommerce -msgid "Show products" -msgstr "Exibir produtos" - -#: admin/settings/settings-init.php:383 -#: admin/settings/settings-init.php:398 -#@ woocommerce -msgid "Show both" -msgstr "Exibir ambos" - -#: admin/settings/settings-init.php:389 -#@ woocommerce -msgid "Default Category Display" -msgstr "Exibição de categoria padrão" - -#: admin/settings/settings-init.php:390 -#@ woocommerce -msgid "This controls what is shown on category archives." -msgstr "Controla o que é exibido nos arquivos de categorias." - -#: admin/settings/settings-init.php:425 -#@ woocommerce -msgid "Product Fields" -msgstr "Campos do Produto" - -#: admin/settings/settings-init.php:539 -#@ woocommerce -msgid "Thousand Separator" -msgstr "Separador de Milhares" - -#: admin/settings/settings-init.php:549 -#@ woocommerce -msgid "Decimal Separator" -msgstr "Separador Decimal" - -#: admin/settings/settings-init.php:559 -#@ woocommerce -msgid "Number of Decimals" -msgstr "Número de casas decimais" - -#: admin/settings/settings-init.php:573 -#@ woocommerce -msgid "Trailing Zeros" -msgstr "Zeros à direita" - -#: admin/settings/settings-init.php:636 -#@ woocommerce -msgid "Manage Stock" -msgstr "Gerenciar Estoque" - -#: admin/settings/settings-init.php:644 -#@ woocommerce -msgid "Hold Stock (minutes)" -msgstr "Manter Estoque (minutos)" - -#: admin/settings/settings-init.php:645 -#@ woocommerce -msgid "Hold stock (for unpaid orders) for x minutes. When this limit is reached, the pending order will be cancelled. Leave blank to disable." -msgstr "Manter estoque (para pedidos não pagos) por X minutos. Quando esse limite é atingido, o pedido pendente será cancelado. Deixe em branco para desabilitar." - -#: admin/settings/settings-init.php:682 -#@ woocommerce -msgid "Low Stock Threshold" -msgstr "Limite de estoque baixo" - -#: admin/settings/settings-init.php:695 -#@ woocommerce -msgid "Out Of Stock Threshold" -msgstr "Limitar \"Fora de Estoque\"" - -#: admin/settings/settings-init.php:708 -#@ woocommerce -msgid "Out Of Stock Visibility" -msgstr "Visibilidade de produtos \"Fora de Estoque\"" - -#: admin/settings/settings-init.php:716 -#@ woocommerce -msgid "Stock Display Format" -msgstr "Formato de exibição do Estoque" - -#: admin/settings/settings-init.php:740 -#@ woocommerce -msgid "Shipping Calculations" -msgstr "Cálculo de frete" - -#: admin/settings/settings-init.php:765 -#@ woocommerce -msgid "Shipping Method Display" -msgstr "Exibição de Método de Entrega" - -#: admin/settings/settings-init.php:835 -#@ woocommerce -msgid "Enable Taxes" -msgstr "Habilitar Impostos" - -#: admin/settings/settings-init.php:843 -#@ woocommerce -msgid "Prices Entered With Tax" -msgstr "Preços inseridos com imposto" - -#: admin/settings/settings-init.php:847 -#@ woocommerce -msgid "This option is important as it will affect how you input prices. Changing it will not update existing products." -msgstr "Essa opção é importante, já que afetará como você insere os preços. Alterando isso não atualizará produtos existentes." - -#: admin/settings/settings-init.php:849 -#@ woocommerce -msgid "Yes, I will enter prices inclusive of tax" -msgstr "Sim, eu incluirei valores com as taxas de impostos" - -#: admin/settings/settings-init.php:850 -#@ woocommerce -msgid "No, I will enter prices exclusive of tax" -msgstr "Não, eu informarei os valores sem as taxas de impostos" - -#: admin/settings/settings-init.php:855 -#@ woocommerce -msgid "Calculate Tax Based On:" -msgstr "Calcular o Imposto com base em:" - -#: admin/settings/settings-init.php:857 -#@ woocommerce -msgid "This option determines which address is used to calculate tax." -msgstr "Esta opção determina qual endereço é usado para calcular o imposto." - -#: admin/settings/settings-init.php:861 -#@ woocommerce -msgid "Customer shipping address" -msgstr "Endereço de entrega do cliente" - -#: admin/settings/settings-init.php:862 -#@ woocommerce -msgid "Customer billing address" -msgstr "Endereço de cobrança do cliente" - -#: admin/settings/settings-init.php:863 -#: admin/settings/settings-init.php:875 -#@ woocommerce -msgid "Shop base address" -msgstr "Endereço base da loja" - -#: admin/settings/settings-init.php:868 -#@ woocommerce -msgid "Default Customer Address:" -msgstr "Endereço Padrão do Cliente:" - -#: admin/settings/settings-init.php:870 -#@ woocommerce -msgid "This option determines the customers default address (before they input their own)." -msgstr "Esta opção determina o endereço padrão dos clientes (antes dele introduzir o seu próprio)." - -#: admin/settings/settings-init.php:874 -#@ woocommerce -msgid "No address" -msgstr "Sem endereço" - -#: admin/settings/settings-init.php:880 -#@ woocommerce -msgid "Shipping Tax Class:" -msgstr "Classe de Imposto de transporte:" - -#: admin/settings/settings-init.php:881 -#@ woocommerce -msgid "Optionally control which tax class shipping gets, or leave it so shipping tax is based on the cart items themselves." -msgstr "Opcionalmente você pode controlar os impostos sobre os tipos de transporte ou deixá-lo para calcular o imposto do transporte com base nos itens do carrinho." - -#: admin/settings/settings-init.php:891 -#@ woocommerce -msgid "Rounding" -msgstr "Arredondamento" - -#: admin/settings/settings-init.php:892 -#@ woocommerce -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "Arrendondar taxa de imposto sobre o subtotal, ao invés de arrendondar por cada linha." - -#: admin/settings/settings-init.php:899 -#@ woocommerce -msgid "Additional Tax Classes" -msgstr "Classes de impostos adicionais" - -#: admin/settings/settings-init.php:900 -#@ woocommerce -msgid "List additonal tax classes below (1 per line). This is in addition to the default Standard Rate. Tax classes can be assigned to products." -msgstr "Liste as classes adicionais de impostos logo abaixo (uma por linha). Essas classes adicionam os impostos na Taxa Padrão. As taxas adicionais podem ser atribuídas aos produtos." - -#: admin/settings/settings-init.php:908 -#@ woocommerce -msgid "Display prices during cart/checkout:" -msgstr "Mostrar preços durante carrinho/checkout:" - -#: admin/settings/settings-init.php:913 -#@ woocommerce -msgid "Including tax" -msgstr "Incluindo imposto." - -#: admin/settings/settings-init.php:914 -#@ woocommerce -msgid "Excluding tax" -msgstr "Excluindo imposto" - -#: admin/settings/settings-init.php:929 -#@ woocommerce -msgid "\"From\" Name" -msgstr "\"De\" Nome" - -#: admin/settings/settings-init.php:938 -#@ woocommerce -msgid "\"From\" Email Address" -msgstr "\"De\" Endereço de e-mail" - -#: admin/settings/settings-init.php:951 -#@ woocommerce -msgid "Email Template" -msgstr "Modelo do e-mail" - -#: admin/settings/settings-init.php:954 -#@ woocommerce -msgid "Header Image" -msgstr "Imagem de Cabeçalho" - -#: admin/settings/settings-init.php:963 -#@ woocommerce -msgid "Email Footer Text" -msgstr "Texto do rodapé do e-mail" - -#: admin/settings/settings-init.php:972 -#@ woocommerce -msgid "Base Colour" -msgstr "Cor de base" - -#: admin/settings/settings-init.php:981 -#@ woocommerce -msgid "Background Colour" -msgstr "Cor de Fundo" - -#: admin/settings/settings-init.php:982 -#@ woocommerce -msgid "The background colour for WooCommerce email templates. Default #f5f5f5." -msgstr "A cor de fundo padrão para os modelos dos e-mails do WooCommerce é #f5f5f5." - -#: admin/settings/settings-init.php:990 -#@ woocommerce -msgid "Email Body Background Colour" -msgstr "Cor de fundo para o corpo do e-mail" - -#: admin/settings/settings-init.php:999 -#@ woocommerce -msgid "Email Body Text Colour" -msgstr "Cor de texto para o corpo do e-mail" - -#: admin/settings/settings-tax-rates.php:29 -#, php-format -#@ woocommerce -msgid "Tax Rates for the \"%s\" Class" -msgstr "Taxa de impostos para a categoria \"%s\"" - -#: admin/settings/settings-tax-rates.php:36 -#@ woocommerce -msgid "Country Code" -msgstr "Código do país" - -#: admin/settings/settings-tax-rates.php:36 -#@ woocommerce -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "Um código de 2 dígitos do país, por exemplo: BR. Deixe em branco para aplicar a todos." - -#: admin/settings/settings-tax-rates.php:38 -#@ woocommerce -msgid "State Code" -msgstr "Código do estado" - -#: admin/settings/settings-tax-rates.php:38 -#@ woocommerce -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "Um código de 2 dígitos do estado, por exemplo: SP. Deixe em branco para aplicar a todos. " - -#: admin/settings/settings-tax-rates.php:40 -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "ZIP/Postcode" -msgstr "CEP" - -#: admin/settings/settings-tax-rates.php:40 -#@ woocommerce -msgid "Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank to apply to all areas. Wildcards (*) can be used. Ranges for numeric postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "CEP para essa regra. Ponto e vírgula separa múltiplos valores. Deixe em branco para aplicar em todas as áreas. \"Curingas\" (*) podem ser usados. Intervalos para CEP's numéricos serão expandidos em CEP's individuais" - -#: admin/settings/settings-tax-rates.php:42 -#@ woocommerce -msgid "Cities for this rule. Semi-colon (;) separate multiple values. Leave blank to apply to all cities." -msgstr "Definir cidades para essa configuração. Ponto e vírgula para separar múltiplos valores. Deixe em branco para aplicar em todas as cidades." - -#: admin/settings/settings-tax-rates.php:44 -#@ woocommerce -msgid "Rate %" -msgstr "Taxa %" - -#: admin/settings/settings-tax-rates.php:46 -#@ woocommerce -msgid "Tax Name" -msgstr "Nome do Imposto" - -#: admin/settings/settings-tax-rates.php:46 -#@ woocommerce -msgid "Enter a name for this tax rate." -msgstr "Digite um nome para esta taxa de imposto." - -#: admin/settings/settings-tax-rates.php:48 -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Priority" -msgstr "Prioridade" - -#: admin/settings/settings-tax-rates.php:48 -#@ woocommerce -msgid "Choose a priority for this tax rate. Only 1 matching rate per priority will be used. To define multiple tax rates for a single area you need to specify a different priority per rate." -msgstr "Escolha uma prioridade para esta taxa de imposto. Você pode usar apenas uma taxa de correspondência. Para definir alíquotas múltiplas para uma única área que você precisa especificar uma prioridade diferente por taxa." - -#: admin/settings/settings-tax-rates.php:59 -#@ woocommerce -msgid "Insert row" -msgstr "Inserir linha" - -#: admin/settings/settings-tax-rates.php:60 -#@ woocommerce -msgid "Remove selected row(s)" -msgstr "Remover linha(s) selecionada(s)" - -#: admin/settings/settings-tax-rates.php:62 -#@ woocommerce -msgid "Export CSV" -msgstr "Exportar CSV" - -#: admin/settings/settings-tax-rates.php:63 -#@ woocommerce -msgid "Import CSV" -msgstr "Importar CSV" - -#: admin/settings/settings-tax-rates.php:163 -#@ woocommerce -msgid "No row(s) selected" -msgstr "Nenhuma linha selecionada" - -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Country Code" -msgstr "Código do país" - -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "State Code" -msgstr "Estado" - -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Rate %" -msgstr "% da Taxa" - -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Tax Name" -msgstr "Nome do Imposto" - -#: admin/woocommerce-admin-attributes.php:264 -#: admin/woocommerce-admin-attributes.php:396 -#@ woocommerce -msgid "Default sort order" -msgstr "Ordem de classificação padrão" - -#: admin/woocommerce-admin-attributes.php:268 -#: admin/woocommerce-admin-attributes.php:336 -#: admin/woocommerce-admin-attributes.php:398 -#@ woocommerce -msgid "Custom ordering" -msgstr "Ordenação personalizada" - -#: admin/woocommerce-admin-attributes.php:270 -#: admin/woocommerce-admin-attributes.php:333 -#: admin/woocommerce-admin-attributes.php:400 -#@ woocommerce -msgid "Term ID" -msgstr "ID do Termo" - -#: admin/woocommerce-admin-attributes.php:272 -#: admin/woocommerce-admin-attributes.php:402 -#@ woocommerce -msgid "Determines the sort order of the terms on the frontend shop product pages. If using custom ordering, you can drag and drop the terms in this attribute." -msgstr "Determinar a ordem de classificação na frente do site para esse atributo. Se está usando ordenação customizada, você pode arrastar e soltar os termos nesse atributo" - -#: admin/woocommerce-admin-attributes.php:310 -#: classes/widgets/class-wc-widget-products.php:51 -#@ woocommerce -msgid "Order by" -msgstr "Ordenar por" - -#: admin/woocommerce-admin-dashboard.php:432 -#@ woocommerce -msgid "Sold" -msgstr "Vendido" - -#: admin/woocommerce-admin-dashboard.php:433 -#@ woocommerce -msgid "Earned" -msgstr "Ganhos" - -#: admin/woocommerce-admin-functions.php:216 -#@ woocommerce -msgid "Order total:" -msgstr "Total da pedido:" - -#: admin/woocommerce-admin-init.php:467 -#@ woocommerce -msgid "Are you sure you want to remove the selected items? If you have previously reduced this item's stock, or this order was submitted by a customer, you will need to manually restore the item's stock." -msgstr "Você tem certeza que deseja remover os produtos selecionados? Se você reduziu o estoque desse item anteriormente, ou esse pedido foi feito por um cliente, você precisará restaurar o estoque do produto manualmente." - -#: admin/woocommerce-admin-init.php:469 -#@ woocommerce -msgid "Remove this item meta?" -msgstr "Remover este item meta?" - -#: admin/woocommerce-admin-init.php:479 -#@ woocommerce -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "Calcular o total baseado em itens pedidos, descontos e frete?" - -#: admin/woocommerce-admin-init.php:771 -#@ woocommerce -msgid "These settings control the permalinks used for products. These settings only apply when not using \"default\" permalinks above." -msgstr "Essas configurações controlam os links permanentes de produtos. Essas configurações só se aplicam quando não utilizando links permanentes padrão acima." - -#: admin/woocommerce-admin-init.php:778 -#@ woocommerce -msgctxt "default-slug" -msgid "shop" -msgstr "loja" - -#: admin/woocommerce-admin-init.php:779 -#@ woocommerce -msgctxt "default-slug" -msgid "product" -msgstr "produto" - -#: admin/woocommerce-admin-init.php:800 -#@ woocommerce -msgid "Shop base" -msgstr "Loja base" - -#: admin/woocommerce-admin-init.php:804 -#@ woocommerce -msgid "Shop base with category" -msgstr "Loja base com Categoria" - -#: admin/woocommerce-admin-init.php:810 -#@ woocommerce -msgid "Custom Base" -msgstr "Base Personalizada" - -#: admin/woocommerce-admin-init.php:812 -#@ woocommerce -msgid "Enter a custom base to use. A base must be set or WordPress will use default instead." -msgstr "Insira uma base customizada para ser utilizada. A base deve ser configurada, caso contrário o Wordpress irá utilizar a base padrão." - -#: admin/woocommerce-admin-init.php:840 -#@ woocommerce -msgid "Product permalink base" -msgstr "Base do permalink do produto" - -#: admin/woocommerce-admin-init.php:845 -#@ woocommerce -msgid "Product category base" -msgstr "Base da categoria de produtos" - -#: admin/woocommerce-admin-init.php:852 -#@ woocommerce -msgid "Product tag base" -msgstr "Base da tag de produtos" - -#: admin/woocommerce-admin-init.php:859 -#@ woocommerce -msgid "Product attribute base" -msgstr "Base de atributos de produtos" - -#: admin/includes/updates/woocommerce-update-2.0.php:179 -#: admin/woocommerce-admin-install.php:225 -#@ woocommerce -msgctxt "page_slug" -msgid "lost-password" -msgstr "recuperar-senha" - -#: admin/includes/updates/woocommerce-update-2.0.php:179 -#: admin/woocommerce-admin-install.php:226 -#: admin/woocommerce-admin-status.php:329 -#@ woocommerce -msgid "Lost Password" -msgstr "Senha perdida" - -#: admin/woocommerce-admin-reports.php:57 -#@ woocommerce -msgid "Sales by category" -msgstr "Vendas por categoria" - -#: admin/woocommerce-admin-reports.php:72 -#@ woocommerce -msgid "Discounts by coupon" -msgstr "Descontos por cupom" - -#: admin/woocommerce-admin-reports.php:418 -#@ woocommerce -msgid "This month's sales" -msgstr "Vendas deste mês" - -#: admin/woocommerce-admin-reports.php:1378 -#@ woocommerce -msgid "Total orders containing coupons" -msgstr "Total de pedidos contendo cupons" - -#: admin/woocommerce-admin-reports.php:1384 -#@ woocommerce -msgid "Percent of orders containing coupons" -msgstr "Porcentagem dos pedidos contendo cupons" - -#: admin/woocommerce-admin-reports.php:1390 -#@ woocommerce -msgid "Total coupon discount" -msgstr "Total do Cupom de Descontos" - -#: admin/woocommerce-admin-reports.php:1399 -#@ woocommerce -msgid "Most popular coupons" -msgstr "Cupons mais populares" - -#: admin/woocommerce-admin-reports.php:1409 -#, php-format -#@ woocommerce -msgid "Used 1 time" -msgid_plural "Used %d times" -msgstr[0] "Usado 1 vez" -msgstr[1] "Usado %d vezes" - -#: admin/woocommerce-admin-reports.php:1412 -#: admin/woocommerce-admin-reports.php:1434 -#@ woocommerce -msgid "No coupons found" -msgstr "Nenhum cupom encontrado" - -#: admin/woocommerce-admin-reports.php:1421 -#@ woocommerce -msgid "Greatest discount amount" -msgstr "Maior valor de desconto" - -#: admin/woocommerce-admin-reports.php:1431 -#, php-format -#@ woocommerce -msgid "Discounted %s" -msgstr "Descontado %s" - -#: admin/woocommerce-admin-reports.php:1490 -#: admin/woocommerce-admin-reports.php:2469 -#@ woocommerce -msgid "Show:" -msgstr "Exibir:" - -#: admin/woocommerce-admin-reports.php:1630 -#@ woocommerce -msgid "Top coupon" -msgstr "Cupom mais usado" - -#: admin/woocommerce-admin-reports.php:1638 -#@ woocommerce -msgid "Worst coupon" -msgstr "Pior cupom" - -#: admin/woocommerce-admin-reports.php:1646 -#@ woocommerce -msgid "Discount average" -msgstr "Desconto médio" - -#: admin/woocommerce-admin-reports.php:1654 -#@ woocommerce -msgid "Discount median" -msgstr "Desconto mediano" - -#: admin/woocommerce-admin-reports.php:1674 -#@ woocommerce -msgid "Monthly discounts by coupon" -msgstr "Descontos mensais por cupom" - -#: admin/woocommerce-admin-reports.php:2545 -#@ woocommerce -msgid "Category" -msgstr "Categoria" - -#: admin/woocommerce-admin-reports.php:2648 -#@ woocommerce -msgid "Top category" -msgstr "Categoria mais vendida" - -#: admin/woocommerce-admin-reports.php:2657 -#@ woocommerce -msgid "Worst category" -msgstr "Pior categoria" - -#: admin/woocommerce-admin-reports.php:2665 -#@ woocommerce -msgid "Category sales average" -msgstr "Média de vendas por categoria" - -#: admin/woocommerce-admin-reports.php:2676 -#@ woocommerce -msgid "Category sales median" -msgstr "Mediana de vendas por categoria" - -#: admin/woocommerce-admin-reports.php:2696 -#@ woocommerce -msgid "Monthly sales by category" -msgstr "Vendas mensais por categoria" - -#: admin/woocommerce-admin-settings.php:255 -#@ woocommerce -msgid "Email Options" -msgstr "Opções de email" - -#: admin/woocommerce-admin-status.php:571 -#@ woocommerce -msgid "Term counts" -msgstr "Contagem de termos" - -#: admin/woocommerce-admin-status.php:573 -#@ woocommerce -msgid "This tool will recount product terms - useful when changing your settings in a way which hides products from the catalog." -msgstr "Essa ferramenta irá recontar os termos dos produtos - útil quando são alteradas as configurações de forma que os produtos ficam escondidos do catálogo." - -#: admin/woocommerce-admin-status.php:654 -#@ woocommerce -msgid "Terms successfully recounted" -msgstr "Termos recalculados com sucesso" - -#: admin/woocommerce-admin-status.php:389 -#@ woocommerce -msgid "Order Statuses" -msgstr "Status do pedido" - -#: admin/woocommerce-admin-status.php:175 -#@ woocommerce -msgid "SOAP Client" -msgstr "Cliente SOAP" - -#: admin/woocommerce-admin-status.php:177 -#@ woocommerce -msgid "Your server has the SOAP Client class enabled." -msgstr "O seu servidor possui o cliente SOAP ativado." - -#: admin/woocommerce-admin-status.php:180 -#, php-format -#@ woocommerce -msgid "Your server does not have the SOAP Client class enabled - some gateway plugins which use SOAP may not work as expected." -msgstr "Seu servidor não possui a classe SOAP Client habilitada - alguns plugins de pagamento que utilizam essa classe podem não funcionar como esperado." - -#: admin/woocommerce-admin-taxonomies.php:25 -#: admin/woocommerce-admin-taxonomies.php:118 -#: classes/widgets/class-wc-widget-layered-nav.php:49 -#@ woocommerce -msgid "Display type" -msgstr "Tipo de exibição" - -#: admin/woocommerce-admin-taxonomies.php:29 -#: admin/woocommerce-admin-taxonomies.php:123 -#@ woocommerce -msgid "Subcategories" -msgstr "Subcategorias" - -#: admin/woocommerce-admin-taxonomies.php:30 -#: admin/woocommerce-admin-taxonomies.php:124 -#@ woocommerce -msgid "Both" -msgstr "Ambos" - -#: admin/woocommerce-admin-taxonomies.php:64 -#: admin/woocommerce-admin-taxonomies.php:156 -#@ woocommerce -msgid "Use image" -msgstr "Usar imagem" - -#: admin/woocommerce-admin-profile.php:54 -#@ woocommerce -msgid "Country or state code" -msgstr "Código do país ou estado" - -#: assets/js/admin/editor_plugin_lang.php:5 -#@ woocommerce -msgid "Insert Shortcode" -msgstr "Inserir Shortcode" - -#: assets/js/admin/editor_plugin_lang.php:6 -#@ woocommerce -msgid "Product price/cart button" -msgstr "Preço do produto/botão de carrinho" - -#: assets/js/admin/editor_plugin_lang.php:7 -#@ woocommerce -msgid "Product by SKU/ID" -msgstr "Produto por SKU/ID" - -#: assets/js/admin/editor_plugin_lang.php:8 -#@ woocommerce -msgid "Products by SKU/ID" -msgstr "Produtos por SKU/ID" - -#: assets/js/admin/editor_plugin_lang.php:10 -#@ woocommerce -msgid "Products by category slug" -msgstr "Produtos por slug de categoria" - -#: assets/js/admin/editor_plugin_lang.php:11 -#@ woocommerce -msgid "Recent products" -msgstr "Produtos recentes" - -#: assets/js/admin/editor_plugin_lang.php:12 -#@ woocommerce -msgid "Featured products" -msgstr "Produtos em destaque" - -#: assets/js/admin/editor_plugin_lang.php:13 -#@ woocommerce -msgid "Shop Messages" -msgstr "Mensagens da loja" - -#: assets/js/admin/editor_plugin_lang.php:17 -#@ woocommerce -msgid "Order tracking" -msgstr "Acompanhamento de pedido" - -#: admin/woocommerce-admin-status.php:325 -#: assets/js/admin/editor_plugin_lang.php:19 -#@ woocommerce -msgid "Edit Address" -msgstr "Editar endereço" - -#: classes/class-wc-cart.php:479 -#: classes/class-wc-cart.php:488 -#, php-format -#@ woocommerce -msgid "Sorry, we do not have enough \"%s\" in stock to fulfil your order (%s in stock). Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Desculpe-nos, mas não temos \"%s\" suficiente em estoque para atender seu pedido (%s em estoque). Por favor, edite seu carrinho e tente novamente. Desculpe-nos pelo inconveniente." - -#: classes/class-wc-cart.php:523 -#, php-format -#@ woocommerce -msgid "Sorry, we do not have enough \"%s\" in stock to fulfil your order right now. Please try again in %d minutes or edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Desculpe-nos, mas não temos \"%s\" suficiente em estoque para atender seu pedido nesse momento (%d em estoque). Por favor, edite seu carrinho e tente novamente. Desculpe-nos pelo inconveniente." - -#: classes/class-wc-cart.php:533 -#, php-format -#@ woocommerce -msgid "Sorry, \"%s\" is not in stock. Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Desculpe, mas \"%s\" está em falta no estoque. Por favor, edite seu carrinho de compras e tente novamente. Desculpe-nos por qualquer inconveniente causado." - -#: classes/class-wc-cart.php:845 -#, php-format -#@ woocommerce -msgid "Sorry, "%s" cannot be purchased." -msgstr "Desculpe-nos, "%s" não pode ser comprado." - -#: classes/class-wc-cart.php:852 -#, php-format -#@ woocommerce -msgid "You cannot add "%s" to the cart because the product is out of stock." -msgstr "Você não pode adicionar "%s" ao carrinho porque o produto está sem estoque." - -#: classes/class-wc-cart.php:857 -#, php-format -#@ woocommerce -msgid "You cannot add that amount of "%s" to the cart because there is not enough stock (%s remaining)." -msgstr "Você não pode adicionar essa quantidade de "%s" porque a quantidade em estoque não é suficiente (restando %s)." - -#: classes/class-wc-countries.php:64 -#@ woocommerce -msgid "Bonaire, Saint Eustatius and Saba" -msgstr "Bonaire, Saint Eustatius e Saba" - -#: classes/class-wc-countries.php:67 -#@ woocommerce -msgid "Bouvet Island" -msgstr "Ilha Bouvet" - -#: classes/class-wc-countries.php:94 -#@ woocommerce -msgid "CuraÇao" -msgstr "CuraÇao" - -#: classes/class-wc-countries.php:132 -#@ woocommerce -msgid "Heard Island and McDonald Islands" -msgstr "Ilha Heard e Ilhas McDonald" - -#: classes/class-wc-countries.php:141 -#@ woocommerce -msgid "Republic of Ireland" -msgstr "República da Irlanda" - -#: classes/class-wc-countries.php:222 -#@ woocommerce -msgid "Saint Martin (Dutch part)" -msgstr "Saint Martin (parte Holandesa)" - -#: classes/class-wc-countries.php:240 -#@ woocommerce -msgid "South Sudan" -msgstr "Sudão do Sul" - -#: i18n/states/BR.php:19 -#@ woocommerce -msgid "Distrito Federal" -msgstr "Distrito Federal" - -#: i18n/states/BR.php:23 -#@ woocommerce -msgid "Mato Grosso" -msgstr "Mato Grosso" - -#: i18n/states/BR.php:24 -#@ woocommerce -msgid "Mato Grosso do Sul" -msgstr "Mato Grosso do Sul" - -#: i18n/states/BR.php:25 -#@ woocommerce -msgid "Minas Gerais" -msgstr "Minas Gerais" - -#: i18n/states/BR.php:31 -#@ woocommerce -msgid "Rio de Janeiro" -msgstr "Rio de Janeiro" - -#: i18n/states/BR.php:32 -#@ woocommerce -msgid "Rio Grande do Norte" -msgstr "Rio Grande do Norte" - -#: i18n/states/BR.php:33 -#@ woocommerce -msgid "Rio Grande do Sul" -msgstr "Rio Grande do Sul" - -#: i18n/states/BR.php:36 -#@ woocommerce -msgid "Santa Catarina" -msgstr "Santa Catarina" - -#: i18n/states/BR.php:37 -#@ woocommerce -msgid "São Paulo" -msgstr "São Paulo" - -#: i18n/states/HZ.php:13 -#: i18n/states/NZ.php:14 -#@ woocommerce -msgid "Auckland" -msgstr "Auckland" - -#: i18n/states/HZ.php:14 -#: i18n/states/NZ.php:16 -#@ woocommerce -msgid "Bay of Plenty" -msgstr "Bay of Plenty" - -#: i18n/states/HZ.php:15 -#: i18n/states/NZ.php:25 -#@ woocommerce -msgid "Canterbury" -msgstr "Canterbury" - -#: i18n/states/HZ.php:16 -#: i18n/states/NZ.php:18 -#@ woocommerce -msgid "Hawke’s Bay" -msgstr "Hawke’s Bay" - -#: i18n/states/HZ.php:17 -#: i18n/states/NZ.php:19 -#@ woocommerce -msgid "Manawatu-Wanganui" -msgstr "Manawatu-Wanganui" - -#: i18n/states/HZ.php:18 -#: i18n/states/NZ.php:22 -#@ woocommerce -msgid "Marlborough" -msgstr "Marlborough" - -#: i18n/states/HZ.php:19 -#: i18n/states/NZ.php:21 -#@ woocommerce -msgid "Nelson" -msgstr "Nelson" - -#: i18n/states/HZ.php:20 -#: i18n/states/NZ.php:13 -#@ woocommerce -msgid "Northland" -msgstr "Northland" - -#: i18n/states/HZ.php:21 -#: i18n/states/NZ.php:26 -#@ woocommerce -msgid "Otago" -msgstr "Otago" - -#: i18n/states/HZ.php:22 -#: i18n/states/NZ.php:27 -#@ woocommerce -msgid "Southland" -msgstr "Southland" - -#: i18n/states/HZ.php:23 -#: i18n/states/NZ.php:17 -#@ woocommerce -msgid "Taranaki" -msgstr "Taranaki" - -#: i18n/states/HZ.php:24 -#: i18n/states/NZ.php:23 -#@ woocommerce -msgid "Tasman" -msgstr "Tasman" - -#: i18n/states/HZ.php:25 -#: i18n/states/NZ.php:15 -#@ woocommerce -msgid "Waikato" -msgstr "Waikato" - -#: i18n/states/HZ.php:26 -#: i18n/states/NZ.php:20 -#@ woocommerce -msgid "Wellington" -msgstr "Wellington" - -#: i18n/states/HZ.php:27 -#: i18n/states/NZ.php:24 -#@ woocommerce -msgid "West Coast" -msgstr "Costa Oeste dos Estados Unidos" - -#: i18n/states/US.php:64 -#@ woocommerce -msgid "Armed Forces (AA)" -msgstr "Forças Armadas (AA)" - -#: i18n/states/US.php:65 -#@ woocommerce -msgid "Armed Forces (AE)" -msgstr "Forças Armadas (AE)" - -#: i18n/states/US.php:66 -#@ woocommerce -msgid "Armed Forces (AP)" -msgstr "Forças Armadas (AP)" - -#: classes/class-wc-coupon.php:469 -#@ woocommerce -msgid "Sorry, this coupon is not applicable to your cart contents." -msgstr "Desculpe, este cupom não é aplicável ao conteúdo do seu carrinho." - -#: classes/class-wc-customer.php:628 -#: classes/class-wc-customer.php:640 -#, php-format -#@ woocommerce -msgid "File %d" -msgstr "Arquivo %d" - -#: classes/class-wc-order.php:1016 -#: templates/cart/totals.php:105 -#: templates/checkout/review-order.php:104 -#, php-format -#@ woocommerce -msgid "(Includes %s)" -msgstr "(Inclui %s)" - -#: classes/emails/class-wc-email-customer-completed-order.php:24 -#@ woocommerce -msgid "Completed order" -msgstr "Pedido completo" - -#: classes/emails/class-wc-email-customer-completed-order.php:25 -#@ woocommerce -msgid "Order complete emails are sent to the customer when the order is marked complete and usual indicates that the order has been shipped." -msgstr "E-mails de pedido completo são enviados para o cliente quando o pedido é marcado como completo, normalmente isso indica o pedido foi enviado." - -#: classes/emails/class-wc-email-customer-completed-order.php:27 -#@ woocommerce -msgid "Your order is complete" -msgstr "Seu pedido está completo" - -#: classes/emails/class-wc-email-customer-completed-order.php:28 -#@ woocommerce -msgid "Your {blogname} order from {order_date} is complete" -msgstr "Seu pedido {order_date} na loja {blogname} está completo" - -#: classes/emails/class-wc-email-customer-completed-order.php:37 -#@ woocommerce -msgid "Your order is complete - download your files" -msgstr "Seu pedido está completo - faça download de seus arquivos" - -#: classes/emails/class-wc-email-customer-completed-order.php:38 -#@ woocommerce -msgid "Your {blogname} order from {order_date} is complete - download your files" -msgstr "Seu {blogname} pedido de {order_date} está completo - faça download de seus arquivos." - -#: classes/abstracts/abstract-wc-email.php:433 -#: classes/emails/class-wc-email-customer-completed-order.php:137 -#: classes/emails/class-wc-email-customer-invoice.php:140 -#: classes/emails/class-wc-email-new-order.php:117 -#@ woocommerce -msgid "Enable this email notification" -msgstr "Habilitar esse e-mail de notificação" - -#: classes/emails/class-wc-email-customer-completed-order.php:141 -#: classes/emails/class-wc-email-new-order.php:128 -#@ woocommerce -msgid "Subject" -msgstr "Assunto" - -#: classes/abstracts/abstract-wc-email.php:439 -#: classes/abstracts/abstract-wc-email.php:446 -#: classes/emails/class-wc-email-customer-completed-order.php:143 -#: classes/emails/class-wc-email-customer-completed-order.php:150 -#: classes/emails/class-wc-email-customer-completed-order.php:157 -#: classes/emails/class-wc-email-customer-completed-order.php:164 -#: classes/emails/class-wc-email-customer-invoice.php:146 -#: classes/emails/class-wc-email-customer-invoice.php:153 -#: classes/emails/class-wc-email-customer-invoice.php:160 -#: classes/emails/class-wc-email-customer-invoice.php:167 -#, php-format -#@ woocommerce -msgid "Defaults to %s" -msgstr "Padrões para %s" - -#: classes/emails/class-wc-email-customer-completed-order.php:148 -#: classes/emails/class-wc-email-new-order.php:135 -#@ woocommerce -msgid "Email Heading" -msgstr "Cabeçalho do E-mail" - -#: classes/emails/class-wc-email-customer-completed-order.php:155 -#@ woocommerce -msgid "Subject (downloadable)" -msgstr "Assunto (download)" - -#: classes/emails/class-wc-email-customer-completed-order.php:162 -#@ woocommerce -msgid "Email Heading (downloadable)" -msgstr "Cabeçalho do E-mail (Produto para download)" - -#: classes/abstracts/abstract-wc-email.php:451 -#: classes/emails/class-wc-email-customer-completed-order.php:169 -#: classes/emails/class-wc-email-customer-invoice.php:172 -#: classes/emails/class-wc-email-new-order.php:142 -#@ woocommerce -msgid "Email type" -msgstr "Tipo do e-mail" - -#: classes/abstracts/abstract-wc-email.php:453 -#: classes/emails/class-wc-email-customer-completed-order.php:171 -#: classes/emails/class-wc-email-customer-invoice.php:174 -#: classes/emails/class-wc-email-new-order.php:144 -#@ woocommerce -msgid "Choose which format of email to send." -msgstr "Escolha o formato de e-mail para enviar." - -#: classes/abstracts/abstract-wc-email.php:457 -#: classes/emails/class-wc-email-customer-completed-order.php:175 -#: classes/emails/class-wc-email-customer-invoice.php:178 -#: classes/emails/class-wc-email-new-order.php:148 -#@ woocommerce -msgid "Plain text" -msgstr "Texto simples" - -#: classes/abstracts/abstract-wc-email.php:458 -#: classes/emails/class-wc-email-customer-completed-order.php:176 -#: classes/emails/class-wc-email-customer-invoice.php:179 -#: classes/emails/class-wc-email-new-order.php:149 -#@ woocommerce -msgid "HTML" -msgstr "HTML" - -#: classes/abstracts/abstract-wc-email.php:459 -#: classes/emails/class-wc-email-customer-completed-order.php:177 -#: classes/emails/class-wc-email-customer-invoice.php:180 -#: classes/emails/class-wc-email-new-order.php:150 -#@ woocommerce -msgid "Multipart" -msgstr "Multipart (MIME)" - -#: classes/emails/class-wc-email-customer-invoice.php:27 -#@ woocommerce -msgid "Customer invoice" -msgstr "Fatura" - -#: classes/emails/class-wc-email-customer-invoice.php:28 -#@ woocommerce -msgid "Customer invoice emails can be sent to the user containing order info and payment links." -msgstr "E-mails de fatura do Cliente pode ser enviado para o usuário contendo informações e links de pagamento." - -#: classes/emails/class-wc-email-customer-invoice.php:33 -#@ woocommerce -msgid "Invoice for order {order_number} from {order_date}" -msgstr "Fatura para o pedido #{order_number} de {order_date}" - -#: classes/emails/class-wc-email-customer-invoice.php:34 -#@ woocommerce -msgid "Invoice for order {order_number}" -msgstr "Fatura do pedido {order_number}" - -#: classes/emails/class-wc-email-customer-invoice.php:36 -#@ woocommerce -msgid "Your {blogname} order from {order_date}" -msgstr "Seu pedido de {order_date} na loja {blogname}" - -#: classes/emails/class-wc-email-customer-invoice.php:37 -#@ woocommerce -msgid "Order {order_number} details" -msgstr "Detalhes do pedido {order_number}" - -#: classes/abstracts/abstract-wc-email.php:437 -#: classes/emails/class-wc-email-customer-invoice.php:144 -#@ woocommerce -msgid "Email subject" -msgstr "Assunto do e-mail" - -#: classes/abstracts/abstract-wc-email.php:444 -#: classes/emails/class-wc-email-customer-invoice.php:151 -#@ woocommerce -msgid "Email heading" -msgstr "Cabeçalho do e-mail" - -#: classes/emails/class-wc-email-customer-invoice.php:158 -#@ woocommerce -msgid "Email subject (paid)" -msgstr "Assunto do e-mail (pago)" - -#: classes/emails/class-wc-email-customer-invoice.php:165 -#@ woocommerce -msgid "Email heading (paid)" -msgstr "Título do e-mail (pago)" - -#: classes/emails/class-wc-email-customer-new-account.php:31 -#@ woocommerce -msgid "New account" -msgstr "Nova conta" - -#: classes/emails/class-wc-email-customer-new-account.php:32 -#@ woocommerce -msgid "Customer new account emails are sent when a customer signs up via the checkout or My Account page." -msgstr "E-mails de novas contas de clientes são enviados quando um cliente se cadastra na finalização de compra ou na página Minha Conta." - -#: classes/emails/class-wc-email-customer-new-account.php:37 -#@ woocommerce -msgid "Your account on {blogname}" -msgstr "Sua conta em {blogname}" - -#: classes/emails/class-wc-email-customer-new-account.php:38 -#@ woocommerce -msgid "Welcome to {blogname}" -msgstr "Bem-vindo ao {blogname}" - -#: classes/emails/class-wc-email-customer-note.php:30 -#@ woocommerce -msgid "Customer note emails are sent when you add a note to an order." -msgstr "E-mails de nota são enviados aos clientes quando você adicionar uma nota ao pedido." - -#: classes/emails/class-wc-email-customer-note.php:35 -#@ woocommerce -msgid "Note added to your {blogname} order from {order_date}" -msgstr "Nota adicionada ao seu pedido {order_date} na loja {blogname}" - -#: classes/emails/class-wc-email-customer-processing-order.php:24 -#@ woocommerce -msgid "Processing order" -msgstr "Processando pedido" - -#: classes/emails/class-wc-email-customer-processing-order.php:25 -#@ woocommerce -msgid "This is an order notification sent to the customer after payment containing order details." -msgstr "Esta é uma notificação de pedido enviada ao cliente depois dos dados de pagamento do pedido." - -#: classes/emails/class-wc-email-customer-processing-order.php:27 -#@ woocommerce -msgid "Thank you for your order" -msgstr "Obrigado pelo seu pedido" - -#: classes/emails/class-wc-email-customer-processing-order.php:28 -#@ woocommerce -msgid "Your {blogname} order receipt from {order_date}" -msgstr "Seu recibo do pedido de {order_date} na loja {blogname}" - -#: classes/emails/class-wc-email-customer-reset-password.php:36 -#@ woocommerce -msgid "Reset password" -msgstr "Redefinir senha" - -#: classes/emails/class-wc-email-customer-reset-password.php:37 -#@ woocommerce -msgid "Customer reset password emails are sent when a customer resets their password." -msgstr "E-mails de redefinição de senha são enviados quando um cliente solicita sua redefinição de senha." - -#: classes/emails/class-wc-email-customer-reset-password.php:42 -#@ woocommerce -msgid "Password Reset for {blogname}" -msgstr "Senha redefinida por {blogname}" - -#: classes/emails/class-wc-email-customer-reset-password.php:43 -#@ woocommerce -msgid "Password Reset Instructions" -msgstr "Instruções para redefinição de senha" - -#: classes/emails/class-wc-email-new-order.php:24 -#@ woocommerce -msgid "New order" -msgstr "Novo pedido" - -#: classes/emails/class-wc-email-new-order.php:25 -#@ woocommerce -msgid "New order emails are sent when an order is received/paid by a customer." -msgstr "E-mails de novos pedidos são enviados quando um pedido é recebido/pago por um cliente." - -#: classes/emails/class-wc-email-new-order.php:27 -#@ woocommerce -msgid "New customer order" -msgstr "Novo pedido de cliente" - -#: classes/emails/class-wc-email-new-order.php:28 -#@ woocommerce -msgid "[{blogname}] New customer order ({order_number}) - {order_date}" -msgstr "[{blogname}] Novo pedido de cliente ({order_number}) - {order_date}" - -#: classes/emails/class-wc-email-new-order.php:121 -#@ woocommerce -msgid "Recipient(s)" -msgstr "Recipiente(s)" - -#: classes/emails/class-wc-email-new-order.php:123 -#, php-format -#@ woocommerce -msgid "Enter recipients (comma separated) for this email. Defaults to %s." -msgstr "Informe os destinatários para esse e-mail (separados por vírgula). Padrão para %s." - -#: classes/emails/class-wc-email-new-order.php:130 -#, php-format -#@ woocommerce -msgid "This controls the email subject line. Leave blank to use the default subject: %s." -msgstr "Isso controla a linha de assunto do e-mail. Deixe em branco para utilizar o assunto padrão: %s." - -#: classes/emails/class-wc-email-new-order.php:137 -#, php-format -#@ woocommerce -msgid "This controls the main heading contained within the email notification. Leave blank to use the default heading: %s." -msgstr "Isso controla o cabeçalho do conteúdo dentro do e-mail de notificação. Deixe em branco para utilizar o cabeçalho padrão: %s." - -#: classes/abstracts/abstract-wc-email.php:495 -#: classes/abstracts/abstract-wc-email.php:516 -#@ woocommerce -msgid "Could not write to template file." -msgstr "Impossível escrever no arquivo de template." - -#: classes/abstracts/abstract-wc-email.php:543 -#@ woocommerce -msgid "Template file copied to theme." -msgstr "Arquivo de modelo copiado para o tema." - -#: classes/abstracts/abstract-wc-email.php:552 -#@ woocommerce -msgid "Template file deleted from theme." -msgstr "Arquivo de modelo excluído do tema." - -#: classes/abstracts/abstract-wc-email.php:572 -#@ woocommerce -msgid "HTML template" -msgstr "Modelo em HTML" - -#: classes/abstracts/abstract-wc-email.php:573 -#@ woocommerce -msgid "Plain text template" -msgstr "Modelo em texto simples" - -#: classes/abstracts/abstract-wc-email.php:592 -#@ woocommerce -msgid "Delete template file" -msgstr "Excluir arquivo de modelo" - -#: classes/abstracts/abstract-wc-email.php:595 -#, php-format -#@ woocommerce -msgid "This template has been overridden by your theme and can be found in: %s." -msgstr "Esse modelo foi sobrescrito por seu tema e pode ser encontrado em: %s." - -#: classes/abstracts/abstract-wc-email.php:610 -#@ woocommerce -msgid "Copy file to theme" -msgstr "Copiar o arquivo para o tema" - -#: classes/abstracts/abstract-wc-email.php:613 -#, php-format -#@ woocommerce -msgid "To override and edit this email template copy %s to your theme folder: %s." -msgstr "Para sobrescrever e editar esse modelo de email, copie %s para a pasta do seu tema: %s." - -#: classes/abstracts/abstract-wc-email.php:624 -#@ woocommerce -msgid "File was not found." -msgstr "O arquivo não foi encontrado." - -#: classes/abstracts/abstract-wc-email.php:649 -#@ woocommerce -msgid "View template" -msgstr "Ver modelo" - -#: classes/abstracts/abstract-wc-email.php:650 -#@ woocommerce -msgid "Hide template" -msgstr "Esconder modelo" - -#: classes/abstracts/abstract-wc-email.php:661 -#@ woocommerce -msgid "Are you sure you want to delete this template file?" -msgstr "Tem certeza de que deseja excluir este arquivo de modelo?" - -#: classes/gateways/cod/class-wc-gateway-cod.php:106 -#@ woocommerce -msgid "Enable for shipping methods" -msgstr "Ativar para os métodos de entrega" - -#: classes/gateways/cod/class-wc-gateway-cod.php:111 -#@ woocommerce -msgid "If COD is only available for certain methods, set it up here. Leave blank to enable for all methods." -msgstr "Se COD só está disponível para determinados métodos, informe-os aqui. Caso contrário, deixe em branco para ativar para todos os métodos." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:155 -#@ woocommerce -msgid "Invoice Prefix" -msgstr "Prefixo da fatura" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:653 -#, php-format -#@ woocommerce -msgid "Validation error: PayPal amounts do not match (gross %s)." -msgstr "Erro de validação: As quantidades no PayPal não conferem (total %s)" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:88 -#@ woocommerce -msgid "Add event tracking code for add to cart actions" -msgstr "Adicione códigos de evento para ações de adicionar ao carrinho" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:294 -#@ woocommerce -msgid "Add to Cart" -msgstr "Adicionar ao carrinho" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:106 -#@ woocommerce -msgid "Free Shipping Requires..." -msgstr "Frete Grátis Necessita..." - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:111 -#@ woocommerce -msgid "A valid free shipping coupon" -msgstr "Um cupom de entrega gratuito válido" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:112 -#@ woocommerce -msgid "A minimum order amount (defined below)" -msgstr "Quantidade mínima para pedido (definido abaixo)" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:113 -#@ woocommerce -msgid "A minimum order amount OR a coupon" -msgstr "Valor mínimo de compra OU um cupom" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:114 -#@ woocommerce -msgid "A minimum order amount AND a coupon" -msgstr "Valor mínimo de compra E um cupom" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:124 -#@ woocommerce -msgid "Users will need to spend this amount to get free shipping (if enabled above)." -msgstr "Os usuários terão que gastar este montante para obter frete grátis (caso esteja habilitado acima)." - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:137 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:93 -#@ woocommerce -msgid "What zip/post codes would you like to offer delivery to? Separate codes with a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -msgstr "Para quais CEPs você gostaria de oferecer entrega? Separe os códigos com vírgulas. Aceita curingas, por exemplo P* irá corresponder a um código postal PE30." - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:117 -#@ woocommerce -msgid "Apply base tax rate" -msgstr "Aplicar uma taxa de imposto de base" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:119 -#@ woocommerce -msgid "When this shipping method is chosen, apply the base tax rate rather than for the customer's given address." -msgstr "Quando esse método for escolhido aplicar a taxa base ao invés de calcular pelo endereço informado pelo cliente." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:93 -#@ woocommerce -msgid "Your password has been reset." -msgstr "Sua senha foi redefinida." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:93 -#@ woocommerce -msgid "Log in" -msgstr "Acessar" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:114 -#@ woocommerce -msgid "Enter a username or e-mail address." -msgstr "Informe um nome de usuário ou endereço de e-mail" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:121 -#@ woocommerce -msgid "There is no user registered with that email address." -msgstr "Não há nenhum usuário cadastrado com esse endereço de e-mail." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:136 -#@ woocommerce -msgid "Invalid username or e-mail." -msgstr "Nome de usuário ou e-mail inválido" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:150 -#@ default -msgid "Password reset is not allowed for this user" -msgstr "Não é permitido redefinir a senha desse usuário" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:178 -#@ default -msgid "Check your e-mail for the confirmation link." -msgstr "Verifique seu e-mail para obter o link de confirmação." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:198 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:203 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:210 -#@ woocommerce -msgid "Invalid key" -msgstr "Chave inválida" - -#: classes/shortcodes/class-wc-shortcode-my-account.php:93 -#, php-format -#@ woocommerce -msgid "Order %s made on %s" -msgstr "Pedido %s feito em %s" - -#: classes/shortcodes/class-wc-shortcode-my-account.php:94 -#, php-format -#@ woocommerce -msgid "Order status: %s" -msgstr "Status do Pedido: %s" - -#: classes/shortcodes/class-wc-shortcode-my-account.php:105 -#: templates/order/tracking.php:37 -#@ woocommerce -msgid "l jS \\of F Y, h:ia" -msgstr "l jS \\of F Y, h:ia" - -#: templates/cart/shipping-methods.php:32 -#@ woocommerce -msgid "Free" -msgstr "Grátis" - -#: templates/cart/totals.php:121 -#, php-format -#@ woocommerce -msgid " (taxes estimated for %s)" -msgstr " (estimativa de taxas para %s)" - -#: templates/cart/totals.php:135 -#@ woocommerce -msgid "No shipping methods were found; please recalculate your shipping and enter your state/county and zip/postcode to ensure there are no other available methods for your location." -msgstr "Nenhum método de envio encontrado. Por favor, recalcule seu frete informando seu estado/país e o CEP para verificar se há algum método de envio disponível para sua região." - -#: templates/checkout/form-billing.php:51 -#@ woocommerce -msgid "Create an account by entering the information below. If you are a returning customer please login at the top of the page." -msgstr "Crie uma conta preenchendo as informações abaixo. Se você já comprou conosco antes, faça o login no topo da página." - -#: templates/checkout/form-login.php:22 -#@ woocommerce -msgid "If you have shopped with us before, please enter your details in the boxes below. If you are a new customer please proceed to the Billing & Shipping section." -msgstr "Se você já comprou conosco antes, informe seus dados nos campos abaixo. Se você é um cliente novo, por favor, siga para a seção Faturamento & Expedição." - -#: templates/checkout/review-order.php:199 -#@ woocommerce -msgid "I have read and accept the" -msgstr "Eu li e aceito o" - -#: templates/emails/admin-new-order.php:13 -#: templates/emails/plain/admin-new-order.php:13 -#, php-format -#@ woocommerce -msgid "You have received an order from %s. Their order is as follows:" -msgstr "Você recebeu um pedido de %s. O pedido é o seguinte:" - -#: templates/emails/admin-new-order.php:17 -#, php-format -#@ woocommerce -msgid "Order: %s" -msgstr "Pedido: %s" - -#: templates/emails/customer-completed-order.php:14 -#: templates/emails/plain/customer-completed-order.php:13 -#, php-format -#@ woocommerce -msgid "Hi there. Your recent order on %s has been completed. Your order details are shown below for your reference:" -msgstr "Olá. Seu pedido recente em %s foi completado. Os detalhes do pedido serão exibidos abaixo para sua conferência:" - -#: templates/emails/customer-invoice.php:16 -#: templates/emails/plain/customer-invoice.php:14 -#, php-format -#@ woocommerce -msgid "An order has been created for you on %s. To pay for this order please use the following link: %s" -msgstr "Um pedido foi criado para você em %s. Para pagar esse pedido, por favor, use o seguinte link: %s" - -#: templates/emails/customer-invoice.php:16 -#@ woocommerce -msgid "pay" -msgstr "pagar" - -#: templates/emails/customer-processing-order.php:14 -#: templates/emails/plain/customer-processing-order.php:13 -#@ woocommerce -msgid "Your order has been received and is now being processed. Your order details are shown below for your reference:" -msgstr "Seu pedido foi recebido e está sendo processado. Os detalhes do pedido serão exibidos abaixo para sua conferência:" - -#: templates/emails/customer-reset-password.php:14 -#: templates/emails/plain/customer-reset-password.php:13 -#@ woocommerce -msgid "Someone requested that the password be reset for the following account:" -msgstr "Alguém solicitou que a senha fosse redefinida para a seguinte conta:" - -#: templates/emails/customer-reset-password.php:15 -#: templates/emails/plain/customer-reset-password.php:15 -#, php-format -#@ woocommerce -msgid "Username: %s" -msgstr "Usuário: %s" - -#: templates/emails/customer-reset-password.php:16 -#: templates/emails/plain/customer-reset-password.php:16 -#@ woocommerce -msgid "If this was a mistake, just ignore this email and nothing will happen." -msgstr "Se isso foi um engano, apenas ignore este e-mail e nada acontecerá." - -#: templates/emails/customer-reset-password.php:17 -#: templates/emails/plain/customer-reset-password.php:17 -#@ woocommerce -msgid "To reset your password, visit the following address:" -msgstr "Para redefinir sua senha, visite o seguinte endereço:" - -#: templates/emails/customer-reset-password.php:20 -#@ woocommerce -msgid "Click here to reset your password" -msgstr "Clique aqui para redefinir sua senha" - -#: templates/emails/email-order-items.php:47 -#, php-format -#@ woocommerce -msgid "Download %d:" -msgstr "Download %d:" - -#: templates/emails/plain/admin-new-order.php:19 -#: templates/emails/plain/customer-completed-order.php:19 -#: templates/emails/plain/customer-invoice.php:20 -#: templates/emails/plain/customer-note.php:27 -#: templates/emails/plain/customer-processing-order.php:19 -#, php-format -#@ woocommerce -msgid "Order number: %s" -msgstr "Número do pedido: %s" - -#: templates/emails/plain/admin-new-order.php:20 -#: templates/emails/plain/customer-completed-order.php:20 -#: templates/emails/plain/customer-invoice.php:21 -#: templates/emails/plain/customer-note.php:28 -#: templates/emails/plain/customer-processing-order.php:20 -#, php-format -#@ woocommerce -msgid "Order date: %s" -msgstr "Data do pedido: %s" - -#: templates/emails/plain/customer-completed-order.php:38 -#: templates/emails/plain/customer-note.php:46 -#: templates/emails/plain/customer-processing-order.php:38 -#@ woocommerce -msgid "Your details" -msgstr "Seus detalhes" - -#: templates/emails/plain/email-order-items.php:28 -#, php-format -#@ woocommerce -msgid "Quantity: %s" -msgstr "Quantidade: %s" - -#: templates/emails/plain/email-order-items.php:31 -#, php-format -#@ woocommerce -msgid "Cost: %s" -msgstr "Custo: %s" - -#: templates/myaccount/form-lost-password.php:24 -#: templates/shop/form-login.php:20 -#@ woocommerce -msgid "Username or email" -msgstr "Nome de usuário ou e-mail" - -#: templates/myaccount/form-lost-password.php:22 -#@ woocommerce -msgid "Lost your password? Please enter your username or email address. You will receive a link to create a new password via email." -msgstr "Perdeu sua senha? Digite seu nome de usuário ou endereço de e-mail. Você receberá um link por e-mail para criar uma nova senha." - -#: templates/myaccount/form-lost-password.php:28 -#@ woocommerce -msgid "Enter a new password below." -msgstr "Digite uma nova senha abaixo." - -#: templates/myaccount/form-lost-password.php:45 -#@ woocommerce -msgid "Reset Password" -msgstr "Redefinir senha" - -#: templates/myaccount/my-downloads.php:27 -#, php-format -#@ woocommerce -msgid "%s download remaining" -msgid_plural "%s downloads remaining" -msgstr[0] "%s download restante" -msgstr[1] "%s downloads restantes" - -#: templates/single-product/meta.php:24 -#@ woocommerce -msgid "Category:" -msgid_plural "Categories:" -msgstr[0] "Categoria" -msgstr[1] "Categorias" - -#: templates/single-product/meta.php:29 -#@ woocommerce -msgid "Tag:" -msgid_plural "Tags:" -msgstr[0] "Tag" -msgstr[1] "Tags" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:21 -#@ woocommerce -msgid "Shows active layered nav filters so users can see and deactivate them." -msgstr "Exibir filtros de navegação ativos em camadas para que os usuários possam vê-los e desativá-los." - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:23 -#@ woocommerce -msgid "WooCommerce Layered Nav Filters" -msgstr "WooCommerce Filtros de Navegação em Camadas" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:83 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:89 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:94 -#@ woocommerce -msgid "Remove filter" -msgstr "Remover filtro" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:89 -#@ woocommerce -msgid "Min" -msgstr "Mínimo" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:94 -#@ woocommerce -msgid "Max" -msgstr "Máximo" - -#: classes/widgets/class-wc-widget-product-categories.php:60 -#@ woocommerce -msgid "Only show children for the current category" -msgstr "Mostrar apenas a sub-categorias para a categoria atual" - -#: woocommerce-ajax.php:1173 -#@ woocommerce -msgid "Value" -msgstr "Valor" - -#: woocommerce-core-functions.php:1449 -#@ woocommerce -msgctxt "slug" -msgid "uncategorized" -msgstr "sem categoria" - -#: woocommerce-core-functions.php:2584 -#@ woocommerce -msgid "Unpaid order cancelled - time limit reached." -msgstr "Pedido cancelado por falta de pagamento - tempo limite ultrapassado." - -#: woocommerce-functions.php:398 -#@ woocommerce -msgid "Please choose the quantity of items you wish to add to your cart…" -msgstr "Por favor, selecione a quantidade de itens que você deseja adicionar ao seu carrinho…" - -#: woocommerce-functions.php:405 -#@ woocommerce -msgid "Please choose a product to add to your cart…" -msgstr "Por favor, selecione um produto para adicionar ao seu carrinho…" - -#: woocommerce-functions.php:474 -#, php-format -#@ woocommerce -msgid "Added "%s" to your cart." -msgstr "Adicionado "%s" ao seu carrinho" - -#: woocommerce-functions.php:474 -#@ woocommerce -msgid "" and "" -msgstr "" e "" - -#: woocommerce-functions.php:477 -#, php-format -#@ woocommerce -msgid ""%s" was successfully added to your cart." -msgstr ""%s" foi adicionado com sucesso ao seu carrinho." - -#: woocommerce-functions.php:1020 -#@ woocommerce -msgid "Product no longer exists." -msgstr "Este produto não existe mais." - -#: admin/post-types/product.php:151 -#@ default -msgid "Edit this item" -msgstr "Editar este item" - -#: admin/post-types/product.php:251 -#@ woocommerce -msgid "Toggle featured" -msgstr "Alternar destaque" - -#: admin/post-types/product.php:253 -#@ woocommerce -msgid "yes" -msgstr "sim" - -#: admin/post-types/product.php:255 -#@ woocommerce -msgid "no" -msgstr "não" - -#: admin/post-types/writepanels/variation-admin-html.php:72 -#@ woocommerce -msgid "Regular Price:" -msgstr "Preço normal:" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -#@ woocommerce -msgid "Exclude sale items" -msgstr "Excluir itens de venda" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -#@ woocommerce -msgid "Check this box if the coupon should not apply to items on sale. Per-item coupons will only work if the item is not on sale. Per-cart coupons will only work if there are no sale items in the cart." -msgstr "Marque esta caixa se o cupom não se aplica aos itens à venda. Cupons por item só irão funcionar se o item não está à venda. Cupons por carrinho só irão funcionar se não houver itens de venda no carrinho." - -#: admin/settings/settings-init.php:363 -#@ woocommerce -msgid "Default sorting (custom ordering + name)" -msgstr "Ordenação padrão (ordenação personalizada + nome)" - -#: admin/settings/settings-init.php:364 -#@ woocommerce -msgid "Popularity (sales)" -msgstr "Popularidade (vendas)" - -#: admin/settings/settings-init.php:365 -#@ woocommerce -msgid "Average Rating" -msgstr "Classificação média" - -#: admin/settings/settings-init.php:367 -#@ woocommerce -msgid "Sort by price (asc)" -msgstr "Ordenar por preço (ASC)" - -#: admin/settings/settings-init.php:368 -#@ woocommerce -msgid "Sort by price (desc)" -msgstr "Ordenar por preço (DESC)" - -#: admin/settings/settings-init.php:492 -#@ woocommerce -msgid "Enable ratings on reviews" -msgstr "Permitir avaliações sobre as análises" - -#: admin/settings/settings-init.php:674 -#@ woocommerce -msgid "Notification Recipient" -msgstr "Notificação de destinatário" - -#: admin/woocommerce-admin-attributes.php:77 -#@ woocommerce -msgid "Please, provide an attribute name, slug and type." -msgstr "Por favor, forneça os atributos nome, slug e tipo." - -#: admin/woocommerce-admin-attributes.php:79 -#, php-format -#@ woocommerce -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "O slug \\\"%s\\\" é muito longo (máximo 28 caracteres). Encurte por favor." - -#: admin/woocommerce-admin-attributes.php:81 -#, php-format -#@ woocommerce -msgid "Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "O slug \\\"%s\\\" não é permitido porque é termo reservado. Por favor, escolha outro." - -#: admin/woocommerce-admin-attributes.php:86 -#: admin/woocommerce-admin-attributes.php:91 -#, php-format -#@ woocommerce -msgid "Slug “%s” is already in use. Change it, please." -msgstr "O slug \\\"%s\\\" já está em uso. Por favor, escolha outro." - -#: admin/woocommerce-admin-status.php:561 -#@ woocommerce -msgid "WC Transients" -msgstr "WC Transientes" - -#: admin/woocommerce-admin-status.php:562 -#@ woocommerce -msgid "Clear transients" -msgstr "Limpar transientes" - -#: admin/woocommerce-admin-status.php:566 -#@ woocommerce -msgid "Expired Transients" -msgstr "Transientes expirados" - -#: admin/woocommerce-admin-status.php:567 -#@ woocommerce -msgid "Clear expired transients" -msgstr "Limpar transientes expirados" - -#: admin/woocommerce-admin-status.php:568 -#@ woocommerce -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "Esta ferramenta irá limpar todos os transientes expirados no WordPress." - -#: admin/woocommerce-admin-status.php:572 -#@ woocommerce -msgid "Recount terms" -msgstr "Recontar termos" - -#: admin/woocommerce-admin-status.php:577 -#@ woocommerce -msgid "Reset capabilities" -msgstr "Resetar capacidades" - -#: admin/woocommerce-admin-status.php:634 -#, php-format -#@ woocommerce -msgid "%d Transients Rows Cleared" -msgstr "%d linhas transientes limpas" - -#: admin/woocommerce-admin-status.php:359 -#@ woocommerce -msgid "Page does not exist" -msgstr "Página não existe" - -#: classes/class-wc-coupon.php:454 -#@ woocommerce -msgid "Coupon code already applied!" -msgstr "Código de cupom já aplicado!" - -#: classes/class-wc-coupon.php:421 -#@ woocommerce -msgid "Coupon code applied successfully." -msgstr "Código de cupom aplicado com sucesso." - -#: classes/class-wc-countries.php:58 -#@ woocommerce -msgid "Belau" -msgstr "Belau" - -#: classes/class-wc-countries.php:846 -#@ woocommerce -msgid "Town / District" -msgstr "Cidade / Estado" - -#: classes/class-wc-countries.php:734 -#: classes/class-wc-countries.php:735 -#: templates/cart/shipping-calculator.php:80 -#@ woocommerce -msgid "Postcode / Zip" -msgstr "CEP" - -#: classes/class-wc-countries.php:715 -#: classes/class-wc-countries.php:716 -#@ woocommerce -msgid "Town / City" -msgstr "Cidade" - -#: classes/class-wc-countries.php:725 -#: classes/class-wc-countries.php:726 -#@ woocommerce -msgid "State / County" -msgstr "Estado / País" - -#: classes/class-wc-countries.php:699 -#@ woocommerce -msgctxt "placeholder" -msgid "Street address" -msgstr "Endereço" - -#: classes/class-wc-countries.php:707 -#@ woocommerce -msgctxt "placeholder" -msgid "Apartment, suite, unit etc. (optional)" -msgstr "Apartamento, suite, casa, etc (opcional)" - -#: classes/class-wc-coupon.php:472 -#@ woocommerce -msgid "Sorry, this coupon is not valid for sale items." -msgstr "Desculpe, este cupom não é válido para itens de venda." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:174 -#@ woocommerce -msgid "Optional" -msgstr "Opcional" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:122 -#@ woocommerce -msgid "Enter a cost (excluding tax) per order, e.g. 5.00. Leave blank to disable." -msgstr "Digite um custo (excluindo impostos) por venda, por exemplo, 5.00. Deixe em branco para desabilitar." - -#: i18n/states/CN.php:13 -#@ woocommerce -msgid "Yunnan / 云南" -msgstr "" - -#: i18n/states/CN.php:14 -#@ woocommerce -msgid "Beijing / 北京" -msgstr "" - -#: i18n/states/CN.php:15 -#@ woocommerce -msgid "Tianjin / 天津" -msgstr "" - -#: i18n/states/CN.php:16 -#@ woocommerce -msgid "Hebei / 河北" -msgstr "" - -#: i18n/states/CN.php:17 -#@ woocommerce -msgid "Shanxi / 山西" -msgstr "" - -#: i18n/states/CN.php:18 -#@ woocommerce -msgid "Inner Mongolia / 內蒙古" -msgstr "" - -#: i18n/states/CN.php:19 -#@ woocommerce -msgid "Liaoning / 辽宁" -msgstr "" - -#: i18n/states/CN.php:20 -#@ woocommerce -msgid "Jilin / 吉林" -msgstr "" - -#: i18n/states/CN.php:21 -#@ woocommerce -msgid "Heilongjiang / 黑龙江" -msgstr "" - -#: i18n/states/CN.php:22 -#@ woocommerce -msgid "Shanghai / 上海" -msgstr "" - -#: i18n/states/CN.php:23 -#@ woocommerce -msgid "Jiangsu / 江苏" -msgstr "" - -#: i18n/states/CN.php:24 -#@ woocommerce -msgid "Zhejiang / 浙江" -msgstr "" - -#: i18n/states/CN.php:25 -#@ woocommerce -msgid "Anhui / 安徽" -msgstr "" - -#: i18n/states/CN.php:26 -#@ woocommerce -msgid "Fujian / 福建" -msgstr "" - -#: i18n/states/CN.php:27 -#@ woocommerce -msgid "Jiangxi / 江西" -msgstr "" - -#: i18n/states/CN.php:28 -#@ woocommerce -msgid "Shandong / 山东" -msgstr "" - -#: i18n/states/CN.php:29 -#@ woocommerce -msgid "Henan / 河南" -msgstr "" - -#: i18n/states/CN.php:30 -#@ woocommerce -msgid "Hubei / 湖北" -msgstr "" - -#: i18n/states/CN.php:31 -#@ woocommerce -msgid "Hunan / 湖南" -msgstr "" - -#: i18n/states/CN.php:32 -#@ woocommerce -msgid "Guangdong / 广东" -msgstr "" - -#: i18n/states/CN.php:33 -#@ woocommerce -msgid "Guangxi Zhuang / 广西壮族" -msgstr "" - -#: i18n/states/CN.php:34 -#@ woocommerce -msgid "Hainan / 海南" -msgstr "" - -#: i18n/states/CN.php:35 -#@ woocommerce -msgid "Chongqing / 重庆" -msgstr "" - -#: i18n/states/CN.php:36 -#@ woocommerce -msgid "Sichuan / 四川" -msgstr "" - -#: i18n/states/CN.php:37 -#@ woocommerce -msgid "Guizhou / 贵州" -msgstr "" - -#: i18n/states/CN.php:38 -#@ woocommerce -msgid "Shaanxi / 陕西" -msgstr "" - -#: i18n/states/CN.php:39 -#@ woocommerce -msgid "Gansu / 甘肃" -msgstr "" - -#: i18n/states/CN.php:40 -#@ woocommerce -msgid "Qinghai / 青海" -msgstr "" - -#: i18n/states/CN.php:41 -#@ woocommerce -msgid "Ningxia Hui / 宁夏" -msgstr "" - -#: i18n/states/CN.php:42 -#@ woocommerce -msgid "Macau / 澳门" -msgstr "" - -#: i18n/states/CN.php:43 -#@ woocommerce -msgid "Tibet / 西藏" -msgstr "" - -#: i18n/states/CN.php:44 -#@ woocommerce -msgid "Xinjiang / 新疆" -msgstr "" - -#: i18n/states/IN.php:13 -#@ woocommerce -msgid "Andra Pradesh" -msgstr "" - -#: i18n/states/IN.php:14 -#@ woocommerce -msgid "Arunachal Pradesh" -msgstr "" - -#: i18n/states/IN.php:15 -#@ woocommerce -msgid "Assam" -msgstr "" - -#: i18n/states/IN.php:16 -#@ woocommerce -msgid "Bihar" -msgstr "" - -#: i18n/states/IN.php:17 -#@ woocommerce -msgid "Chhattisgarh" -msgstr "" - -#: i18n/states/IN.php:18 -#@ woocommerce -msgid "Goa" -msgstr "" - -#: i18n/states/IN.php:19 -#@ woocommerce -msgid "Gujarat" -msgstr "" - -#: i18n/states/IN.php:20 -#@ woocommerce -msgid "Haryana" -msgstr "" - -#: i18n/states/IN.php:21 -#@ woocommerce -msgid "Himachal Pradesh" -msgstr "" - -#: i18n/states/IN.php:22 -#@ woocommerce -msgid "Jammu and Kashmir" -msgstr "" - -#: i18n/states/IN.php:23 -#@ woocommerce -msgid "Jharkhand" -msgstr "" - -#: i18n/states/IN.php:24 -#@ woocommerce -msgid "Karnataka" -msgstr "" - -#: i18n/states/IN.php:25 -#@ woocommerce -msgid "Kerala" -msgstr "" - -#: i18n/states/IN.php:26 -#@ woocommerce -msgid "Madhya Pradesh" -msgstr "" - -#: i18n/states/IN.php:27 -#@ woocommerce -msgid "Maharashtra" -msgstr "" - -#: i18n/states/IN.php:28 -#@ woocommerce -msgid "Manipur" -msgstr "" - -#: i18n/states/IN.php:29 -#@ woocommerce -msgid "Meghalaya" -msgstr "" - -#: i18n/states/IN.php:30 -#@ woocommerce -msgid "Mizoram" -msgstr "" - -#: i18n/states/IN.php:31 -#@ woocommerce -msgid "Nagaland" -msgstr "" - -#: i18n/states/IN.php:32 -#@ woocommerce -msgid "Orissa" -msgstr "" - -#: i18n/states/IN.php:33 -#@ woocommerce -msgid "Punjab" -msgstr "" - -#: i18n/states/IN.php:34 -#@ woocommerce -msgid "Rajasthan" -msgstr "" - -#: i18n/states/IN.php:35 -#@ woocommerce -msgid "Sikkim" -msgstr "" - -#: i18n/states/IN.php:36 -#@ woocommerce -msgid "Tamil Nadu" -msgstr "" - -#: i18n/states/IN.php:37 -#@ woocommerce -msgid "Tripura" -msgstr "" - -#: i18n/states/IN.php:38 -#@ woocommerce -msgid "Uttaranchal" -msgstr "" - -#: i18n/states/IN.php:39 -#@ woocommerce -msgid "Uttar Pradesh" -msgstr "" - -#: i18n/states/IN.php:40 -#@ woocommerce -msgid "West Bengal" -msgstr "" - -#: i18n/states/IN.php:41 -#@ woocommerce -msgid "Andaman and Nicobar Islands" -msgstr "" - -#: i18n/states/IN.php:42 -#@ woocommerce -msgid "Chandigarh" -msgstr "" - -#: i18n/states/IN.php:43 -#@ woocommerce -msgid "Dadar and Nagar Haveli" -msgstr "" - -#: i18n/states/IN.php:44 -#@ woocommerce -msgid "Daman and Diu" -msgstr "" - -#: i18n/states/IN.php:45 -#@ woocommerce -msgid "Delhi" -msgstr "" - -#: i18n/states/IN.php:46 -#@ woocommerce -msgid "Lakshadeep" -msgstr "" - -#: i18n/states/IN.php:47 -#@ woocommerce -msgid "Pondicherry (Puducherry)" -msgstr "" - -#: i18n/states/MY.php:13 -#@ woocommerce -msgid "Johor" -msgstr "" - -#: i18n/states/MY.php:14 -#@ woocommerce -msgid "Kedah" -msgstr "" - -#: i18n/states/MY.php:15 -#@ woocommerce -msgid "Kelantan" -msgstr "" - -#: i18n/states/MY.php:16 -#@ woocommerce -msgid "Melaka" -msgstr "" - -#: i18n/states/MY.php:17 -#@ woocommerce -msgid "Negeri Sembilan" -msgstr "" - -#: i18n/states/MY.php:18 -#@ woocommerce -msgid "Pahang" -msgstr "" - -#: i18n/states/MY.php:19 -#@ woocommerce -msgid "Perak" -msgstr "" - -#: i18n/states/MY.php:20 -#@ woocommerce -msgid "Perlis" -msgstr "" - -#: i18n/states/MY.php:21 -#@ woocommerce -msgid "Pulau Pinang" -msgstr "" - -#: i18n/states/MY.php:22 -#@ woocommerce -msgid "Sabah" -msgstr "" - -#: i18n/states/MY.php:23 -#@ woocommerce -msgid "Sarawak" -msgstr "" - -#: i18n/states/MY.php:24 -#@ woocommerce -msgid "Selangor" -msgstr "" - -#: i18n/states/MY.php:25 -#@ woocommerce -msgid "Terengganu" -msgstr "" - -#: i18n/states/MY.php:26 -#@ woocommerce -msgid "W.P. Kuala Lumpur" -msgstr "" - -#: i18n/states/MY.php:27 -#@ woocommerce -msgid "W.P. Labuan" -msgstr "" - -#: i18n/states/MY.php:28 -#@ woocommerce -msgid "W.P. Putrajaya" -msgstr "" - -#: i18n/states/TH.php:13 -#@ woocommerce -msgid "Amnat Charoen (อำนาจเจริญ)" -msgstr "" - -#: i18n/states/TH.php:14 -#@ woocommerce -msgid "Ang Thong (อ่างทอง)" -msgstr "" - -#: i18n/states/TH.php:15 -#@ woocommerce -msgid "Ayutthaya (พระนครศรีอยุธยา)" -msgstr "" - -#: i18n/states/TH.php:16 -#@ woocommerce -msgid "Bangkok (กรุงเทพมหานคร)" -msgstr "" - -#: i18n/states/TH.php:17 -#@ woocommerce -msgid "Bueng Kan (บึงกาฬ)" -msgstr "" - -#: i18n/states/TH.php:18 -#@ woocommerce -msgid "Buri Ram (บุรีรัมย์)" -msgstr "" - -#: i18n/states/TH.php:19 -#@ woocommerce -msgid "Chachoengsao (ฉะเชิงเทรา)" -msgstr "" - -#: i18n/states/TH.php:20 -#@ woocommerce -msgid "Chai Nat (ชัยนาท)" -msgstr "" - -#: i18n/states/TH.php:21 -#@ woocommerce -msgid "Chaiyaphum (ชัยภูมิ)" -msgstr "" - -#: i18n/states/TH.php:22 -#@ woocommerce -msgid "Chanthaburi (จันทบุรี)" -msgstr "" - -#: i18n/states/TH.php:23 -#@ woocommerce -msgid "Chiang Mai (เชียงใหม่)" -msgstr "" - -#: i18n/states/TH.php:24 -#@ woocommerce -msgid "Chiang Rai (เชียงราย)" -msgstr "" - -#: i18n/states/TH.php:25 -#@ woocommerce -msgid "Chonburi (ชลบุรี)" -msgstr "" - -#: i18n/states/TH.php:26 -#@ woocommerce -msgid "Chumphon (ชุมพร)" -msgstr "" - -#: i18n/states/TH.php:27 -#@ woocommerce -msgid "Kalasin (กาฬสินธุ์)" -msgstr "" - -#: i18n/states/TH.php:28 -#@ woocommerce -msgid "Kamphaeng Phet (กำแพงเพชร)" -msgstr "" - -#: i18n/states/TH.php:29 -#@ woocommerce -msgid "Kanchanaburi (กาญจนบุรี)" -msgstr "" - -#: i18n/states/TH.php:30 -#@ woocommerce -msgid "Khon Kaen (ขอนแก่น)" -msgstr "" - -#: i18n/states/TH.php:31 -#@ woocommerce -msgid "Krabi (กระบี่)" -msgstr "" - -#: i18n/states/TH.php:32 -#@ woocommerce -msgid "Lampang (ลำปาง)" -msgstr "" - -#: i18n/states/TH.php:33 -#@ woocommerce -msgid "Lamphun (ลำพูน)" -msgstr "" - -#: i18n/states/TH.php:34 -#@ woocommerce -msgid "Loei (เลย)" -msgstr "" - -#: i18n/states/TH.php:35 -#@ woocommerce -msgid "Lopburi (ลพบุรี)" -msgstr "" - -#: i18n/states/TH.php:36 -#@ woocommerce -msgid "Mae Hong Son (แม่ฮ่องสอน)" -msgstr "" - -#: i18n/states/TH.php:37 -#@ woocommerce -msgid "Maha Sarakham (มหาสารคาม)" -msgstr "" - -#: i18n/states/TH.php:38 -#@ woocommerce -msgid "Mukdahan (มุกดาหาร)" -msgstr "" - -#: i18n/states/TH.php:39 -#@ woocommerce -msgid "Nakhon Nayok (นครนายก)" -msgstr "" - -#: i18n/states/TH.php:40 -#@ woocommerce -msgid "Nakhon Pathom (นครปฐม)" -msgstr "" - -#: i18n/states/TH.php:41 -#@ woocommerce -msgid "Nakhon Phanom (นครพนม)" -msgstr "" - -#: i18n/states/TH.php:42 -#@ woocommerce -msgid "Nakhon Ratchasima (นครราชสีมา)" -msgstr "" - -#: i18n/states/TH.php:43 -#@ woocommerce -msgid "Nakhon Sawan (นครสวรรค์)" -msgstr "" - -#: i18n/states/TH.php:44 -#@ woocommerce -msgid "Nakhon Si Thammarat (นครศรีธรรมราช)" -msgstr "" - -#: i18n/states/TH.php:45 -#@ woocommerce -msgid "Nan (น่าน)" -msgstr "" - -#: i18n/states/TH.php:46 -#@ woocommerce -msgid "Narathiwat (นราธิวาส)" -msgstr "" - -#: i18n/states/TH.php:47 -#@ woocommerce -msgid "Nong Bua Lam Phu (หนองบัวลำภู)" -msgstr "" - -#: i18n/states/TH.php:48 -#@ woocommerce -msgid "Nong Khai (หนองคาย)" -msgstr "" - -#: i18n/states/TH.php:49 -#@ woocommerce -msgid "Nonthaburi (นนทบุรี)" -msgstr "" - -#: i18n/states/TH.php:50 -#@ woocommerce -msgid "Pathum Thani (ปทุมธานี)" -msgstr "" - -#: i18n/states/TH.php:51 -#@ woocommerce -msgid "Pattani (ปัตตานี)" -msgstr "" - -#: i18n/states/TH.php:52 -#@ woocommerce -msgid "Phang Nga (พังงา)" -msgstr "" - -#: i18n/states/TH.php:53 -#@ woocommerce -msgid "Phatthalung (พัทลุง)" -msgstr "" - -#: i18n/states/TH.php:54 -#@ woocommerce -msgid "Phayao (พะเยา)" -msgstr "" - -#: i18n/states/TH.php:55 -#@ woocommerce -msgid "Phetchabun (เพชรบูรณ์)" -msgstr "" - -#: i18n/states/TH.php:56 -#@ woocommerce -msgid "Phetchaburi (เพชรบุรี)" -msgstr "" - -#: i18n/states/TH.php:57 -#@ woocommerce -msgid "Phichit (พิจิตร)" -msgstr "" - -#: i18n/states/TH.php:58 -#@ woocommerce -msgid "Phitsanulok (พิษณุโลก)" -msgstr "" - -#: i18n/states/TH.php:59 -#@ woocommerce -msgid "Phrae (แพร่)" -msgstr "" - -#: i18n/states/TH.php:60 -#@ woocommerce -msgid "Phuket (ภูเก็ต)" -msgstr "" - -#: i18n/states/TH.php:61 -#@ woocommerce -msgid "Prachin Buri (ปราจีนบุรี)" -msgstr "" - -#: i18n/states/TH.php:62 -#@ woocommerce -msgid "Prachuap Khiri Khan (ประจวบคีรีขันธ์)" -msgstr "" - -#: i18n/states/TH.php:63 -#@ woocommerce -msgid "Ranong (ระนอง)" -msgstr "" - -#: i18n/states/TH.php:64 -#@ woocommerce -msgid "Ratchaburi (ราชบุรี)" -msgstr "" - -#: i18n/states/TH.php:65 -#@ woocommerce -msgid "Rayong (ระยอง)" -msgstr "" - -#: i18n/states/TH.php:66 -#@ woocommerce -msgid "Roi Et (ร้อยเอ็ด)" -msgstr "" - -#: i18n/states/TH.php:67 -#@ woocommerce -msgid "Sa Kaeo (สระแก้ว)" -msgstr "" - -#: i18n/states/TH.php:68 -#@ woocommerce -msgid "Sakon Nakhon (สกลนคร)" -msgstr "" - -#: i18n/states/TH.php:69 -#@ woocommerce -msgid "Samut Prakan (สมุทรปราการ)" -msgstr "" - -#: i18n/states/TH.php:70 -#@ woocommerce -msgid "Samut Sakhon (สมุทรสาคร)" -msgstr "" - -#: i18n/states/TH.php:71 -#@ woocommerce -msgid "Samut Songkhram (สมุทรสงคราม)" -msgstr "" - -#: i18n/states/TH.php:72 -#@ woocommerce -msgid "Saraburi (สระบุรี)" -msgstr "" - -#: i18n/states/TH.php:73 -#@ woocommerce -msgid "Satun (สตูล)" -msgstr "" - -#: i18n/states/TH.php:74 -#@ woocommerce -msgid "Sing Buri (สิงห์บุรี)" -msgstr "" - -#: i18n/states/TH.php:75 -#@ woocommerce -msgid "Sisaket (ศรีสะเกษ)" -msgstr "" - -#: i18n/states/TH.php:76 -#@ woocommerce -msgid "Songkhla (สงขลา)" -msgstr "" - -#: i18n/states/TH.php:77 -#@ woocommerce -msgid "Sukhothai (สุโขทัย)" -msgstr "" - -#: i18n/states/TH.php:78 -#@ woocommerce -msgid "Suphan Buri (สุพรรณบุรี)" -msgstr "" - -#: i18n/states/TH.php:79 -#@ woocommerce -msgid "Surat Thani (สุราษฎร์ธานี)" -msgstr "" - -#: i18n/states/TH.php:80 -#@ woocommerce -msgid "Surin (สุรินทร์)" -msgstr "" - -#: i18n/states/TH.php:81 -#@ woocommerce -msgid "Tak (ตาก)" -msgstr "" - -#: i18n/states/TH.php:82 -#@ woocommerce -msgid "Trang (ตรัง)" -msgstr "" - -#: i18n/states/TH.php:83 -#@ woocommerce -msgid "Trat (ตราด)" -msgstr "" - -#: i18n/states/TH.php:84 -#@ woocommerce -msgid "Ubon Ratchathani (อุบลราชธานี)" -msgstr "" - -#: i18n/states/TH.php:85 -#@ woocommerce -msgid "Udon Thani (อุดรธานี)" -msgstr "" - -#: i18n/states/TH.php:86 -#@ woocommerce -msgid "Uthai Thani (อุทัยธานี)" -msgstr "" - -#: i18n/states/TH.php:87 -#@ woocommerce -msgid "Uttaradit (อุตรดิตถ์)" -msgstr "" - -#: i18n/states/TH.php:88 -#@ woocommerce -msgid "Yala (ยะลา)" -msgstr "" - -#: i18n/states/TH.php:89 -#@ woocommerce -msgid "Yasothon (ยโสธร)" -msgstr "" - -#: i18n/states/ZA.php:13 -#@ woocommerce -msgid "Eastern Cape" -msgstr "" - -#: i18n/states/ZA.php:14 -#@ woocommerce -msgid "Free State" -msgstr "" - -#: i18n/states/ZA.php:15 -#@ woocommerce -msgid "Gauteng" -msgstr "" - -#: i18n/states/ZA.php:16 -#@ woocommerce -msgid "KwaZulu-Natal" -msgstr "" - -#: i18n/states/ZA.php:17 -#@ woocommerce -msgid "Limpopo" -msgstr "" - -#: i18n/states/ZA.php:18 -#@ woocommerce -msgid "Mpumalanga" -msgstr "" - -#: i18n/states/ZA.php:19 -#@ woocommerce -msgid "Northern Cape" -msgstr "" - -#: i18n/states/ZA.php:20 -#@ woocommerce -msgid "North West" -msgstr "" - -#: i18n/states/ZA.php:21 -#@ woocommerce -msgid "Western Cape" -msgstr "" - -#: templates/cart/cart.php:100 -#: templates/single-product/add-to-cart/quantity.php:12 -#@ woocommerce -msgctxt "Product quantity input tooltip" -msgid "Qty" -msgstr "Qt" - -#: templates/cart/shipping-calculator.php:45 -#: templates/cart/shipping-calculator.php:51 -#: templates/cart/shipping-calculator.php:63 -#@ woocommerce -msgid "State / county" -msgstr "Estado / país" - -#: templates/checkout/form-login.php:14 -#@ woocommerce -msgid "Returning customer?" -msgstr "Cliente já cadastrado?" - -#: templates/loop/result-count.php:28 -#@ woocommerce -msgid "Showing the single result" -msgstr "Mostrando o resultado simples" - -#: templates/loop/result-count.php:30 -#, php-format -#@ woocommerce -msgid "Showing all %d results" -msgstr "Mostrando todos %d resultados" - -#: templates/loop/result-count.php:32 -#, php-format -#@ woocommerce -msgctxt "%1$d = first, %2$d = last, %3$d = total" -msgid "Showing %1$d–%2$d of %3$d results" -msgstr "Mostrando %1$d-%2$d de %3$d resultados" - -#: templates/loop/orderby.php:22 -#@ woocommerce -msgid "Sort by popularity" -msgstr "Ordenar por popularidade" - -#: templates/loop/orderby.php:23 -#@ woocommerce -msgid "Sort by average rating" -msgstr "Ordenar por média de classificação" - -#: templates/loop/orderby.php:24 -#@ woocommerce -msgid "Sort by newness" -msgstr "Ordenar por mais novos" - -#: templates/loop/orderby.php:25 -#@ woocommerce -msgid "Sort by price: low to high" -msgstr "Ordenar por preço: menor para maior" - -#: templates/loop/orderby.php:26 -#@ woocommerce -msgid "Sort by price: high to low" -msgstr "Ordenar por preço: maior para menor" - -#: templates/myaccount/my-address.php:17 -#@ woocommerce -msgid "My Addresses" -msgstr "Meus endereços" - -#: templates/myaccount/my-address.php:64 -#@ woocommerce -msgid "You have not set up this type of address yet." -msgstr "Você não pode criar este tipo de endereço." - -#: templates/order/form-tracking.php:23 -#@ woocommerce -msgid "Track" -msgstr "Faixa" - -#: templates/single-product/review.php:26 -#, php-format -#@ woocommerce -msgid "Rated %d out of 5" -msgstr "Avaliado em %d de 5" - -#: templates/single-product-reviews.php:63 -#: templates/single-product-reviews.php:71 -#@ woocommerce -msgid "Add Your Review" -msgstr "Dê sua opinião" - -#: classes/class-wc-product-variation.php:474 -#, php-format -#@ woocommerce -msgid "%s – %s%s" -msgstr "" - -#: woocommerce-functions.php:1717 -#@ woocommerce -msgid "Address changed successfully." -msgstr "Endereço alterado com sucesso." - -#: woocommerce.php:831 -#@ woocommerce -msgid "Sorry, no products matched your selection. Please choose a different combination." -msgstr "Desculpe, nenhum produto encontrado com os termos selecionados. Por favor escolha uma combinação diferente." - -#: admin/post-types/writepanels/variation-admin-html.php:63 -#@ woocommerce -msgid "Enter a quantity to enable stock management at variation level, or leave blank to use the parent product's options." -msgstr "Introduza uma quantidade para permitir a gestão de ações em nível de variação, ou deixe em branco para usar as opções do produto pai." - -#: admin/post-types/writepanels/variation-admin-html.php:73 -#@ woocommerce -msgid "Variation price (required)" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:212 -#@ woocommerce -msgid "Enable stock management at product level" -msgstr "Ativar gestão de stock a nível de produto" - -#: admin/settings/settings-init.php:886 -#@ woocommerce -msgid "Shipping tax class based on cart items" -msgstr "" - -#: admin/settings/settings-tax-rates.php:30 -#, php-format -#@ woocommerce -msgid "Define tax rates for countries and states below. See here for available alpha-2 country codes." -msgstr "" - -#: admin/woocommerce-admin-content.php:61 -#@ woocommerce -msgid "Coupon usage reports." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2143 -#@ woocommerce -msgid "Marked out of stock" -msgstr "" - -#: admin/woocommerce-admin-status.php:62 -#@ woocommerce -msgid "Please include this information when requesting support:" -msgstr "Por favor, inclua esta informação ao solicitar suporte:" - -#: admin/woocommerce-admin-status.php:63 -#@ woocommerce -msgid "Download System Report File" -msgstr "Baixar arquivo de relatório do sistema" - -#: admin/woocommerce-admin-status.php:71 -#@ woocommerce -msgid "Environment" -msgstr "Ambiente" - -#: admin/woocommerce-admin-status.php:85 -#@ woocommerce -msgid "WC Version" -msgstr "Versão do WC" - -#: admin/woocommerce-admin-status.php:89 -#@ woocommerce -msgid "WC Database Version" -msgstr "Versão do banco de dados do WC" - -#: admin/woocommerce-admin-status.php:93 -#@ woocommerce -msgid "WP Version" -msgstr "Versão do WP" - -#: admin/woocommerce-admin-status.php:97 -#@ woocommerce -msgid "Web Server Info" -msgstr "" - -#: admin/woocommerce-admin-status.php:105 -#@ woocommerce -msgid "MySQL Version" -msgstr "Versão do MySQL" - -#: admin/woocommerce-admin-status.php:130 -#@ woocommerce -msgid "PHP Post Max Size" -msgstr "Tamanho máximo para upload no PHP" - -#: admin/woocommerce-admin-status.php:134 -#@ woocommerce -msgid "PHP Time Limit" -msgstr "Limite de tempo PHP" - -#: admin/woocommerce-admin-status.php:185 -#@ woocommerce -msgid "WP Remote Post" -msgstr "" - -#: admin/woocommerce-admin-status.php:225 -#@ woocommerce -msgid "Plugins" -msgstr "" - -#: admin/woocommerce-admin-status.php:231 -#@ woocommerce -msgid "Installed Plugins" -msgstr "Plugins Instalados" - -#: admin/woocommerce-admin-status.php:302 -#@ woocommerce -msgid "WC Pages" -msgstr "Páginas do WC" - -#: admin/woocommerce-admin-status.php:309 -#@ woocommerce -msgid "Shop Base" -msgstr "Loja base" - -#: admin/woocommerce-admin-status.php:383 -#@ woocommerce -msgid "WC Taxonomies" -msgstr "Taxonomias do WC" - -#: admin/woocommerce-admin-status.php:399 -#@ woocommerce -msgid "Product Types" -msgstr "Tipos de produto" - -#: classes/gateways/cod/class-wc-gateway-cod.php:97 -#: classes/gateways/cod/class-wc-gateway-cod.php:103 -#@ woocommerce -msgid "Pay with cash upon delivery." -msgstr "Pague em dinheiro na entrega." - -#: i18n/states/ID.php:13 -#@ woocommerce -msgid "Daerah Istimewa Aceh" -msgstr "" - -#: i18n/states/ID.php:14 -#@ woocommerce -msgid "Sumatera Utara" -msgstr "" - -#: i18n/states/ID.php:15 -#@ woocommerce -msgid "Sumatera Barat" -msgstr "" - -#: i18n/states/ID.php:16 -#@ woocommerce -msgid "Riau" -msgstr "" - -#: i18n/states/ID.php:17 -#@ woocommerce -msgid "Kepulauan Riau" -msgstr "" - -#: i18n/states/ID.php:18 -#@ woocommerce -msgid "Jambi" -msgstr "" - -#: i18n/states/ID.php:19 -#@ woocommerce -msgid "Sumatera Selatan" -msgstr "" - -#: i18n/states/ID.php:20 -#@ woocommerce -msgid "Bangka Belitung" -msgstr "" - -#: i18n/states/ID.php:21 -#@ woocommerce -msgid "Bengkulu" -msgstr "" - -#: i18n/states/ID.php:22 -#@ woocommerce -msgid "Lampung" -msgstr "" - -#: i18n/states/ID.php:23 -#@ woocommerce -msgid "DKI Jakarta" -msgstr "" - -#: i18n/states/ID.php:24 -#@ woocommerce -msgid "Jawa Barat" -msgstr "" - -#: i18n/states/ID.php:25 -#@ woocommerce -msgid "Banten" -msgstr "" - -#: i18n/states/ID.php:26 -#@ woocommerce -msgid "Jawa Tengah" -msgstr "" - -#: i18n/states/ID.php:27 -#@ woocommerce -msgid "Jawa Timur" -msgstr "" - -#: i18n/states/ID.php:28 -#@ woocommerce -msgid "Daerah Istimewa Yogyakarta" -msgstr "" - -#: i18n/states/ID.php:29 -#@ woocommerce -msgid "Bali" -msgstr "" - -#: i18n/states/ID.php:30 -#@ woocommerce -msgid "Nusa Tenggara Barat" -msgstr "" - -#: i18n/states/ID.php:31 -#@ woocommerce -msgid "Nusa Tenggara Timur" -msgstr "" - -#: i18n/states/ID.php:32 -#@ woocommerce -msgid "Kalimantan Barat" -msgstr "" - -#: i18n/states/ID.php:33 -#@ woocommerce -msgid "Kalimantan Tengah" -msgstr "" - -#: i18n/states/ID.php:34 -#@ woocommerce -msgid "Kalimantan Timur" -msgstr "" - -#: i18n/states/ID.php:35 -#@ woocommerce -msgid "Kalimantan Selatan" -msgstr "" - -#: i18n/states/ID.php:36 -#@ woocommerce -msgid "Kalimantan Utara" -msgstr "" - -#: i18n/states/ID.php:37 -#@ woocommerce -msgid "Sulawesi Utara" -msgstr "" - -#: i18n/states/ID.php:38 -#@ woocommerce -msgid "Sulawesi Tengah" -msgstr "" - -#: i18n/states/ID.php:39 -#@ woocommerce -msgid "Sulawesi Tenggara" -msgstr "" - -#: i18n/states/ID.php:40 -#@ woocommerce -msgid "Sulawesi Barat" -msgstr "" - -#: i18n/states/ID.php:41 -#@ woocommerce -msgid "Sulawesi Selatan" -msgstr "" - -#: i18n/states/ID.php:42 -#@ woocommerce -msgid "Gorontalo" -msgstr "" - -#: i18n/states/ID.php:43 -#@ woocommerce -msgid "Maluku" -msgstr "" - -#: i18n/states/ID.php:44 -#@ woocommerce -msgid "Maluku Utara" -msgstr "" - -#: i18n/states/ID.php:45 -#@ woocommerce -msgid "Papua" -msgstr "" - -#: i18n/states/ID.php:46 -#@ woocommerce -msgid "Papua Barat" -msgstr "" - -#: woocommerce-core-functions.php:775 -#@ woocommerce -msgid "Australian Dollars" -msgstr "" - -#: woocommerce-core-functions.php:776 -#@ woocommerce -msgid "Brazilian Real" -msgstr "Real Brasileiro" - -#: woocommerce-core-functions.php:777 -#@ woocommerce -msgid "Canadian Dollars" -msgstr "" - -#: woocommerce-core-functions.php:778 -#@ woocommerce -msgid "Chinese Yuan" -msgstr "" - -#: woocommerce-core-functions.php:779 -#@ woocommerce -msgid "Czech Koruna" -msgstr "" - -#: woocommerce-core-functions.php:781 -#@ woocommerce -msgid "Euros" -msgstr "" - -#: woocommerce-core-functions.php:782 -#@ woocommerce -msgid "Hong Kong Dollar" -msgstr "" - -#: woocommerce-core-functions.php:784 -#@ woocommerce -msgid "Indonesia Rupiah" -msgstr "" - -#: woocommerce-core-functions.php:787 -#@ woocommerce -msgid "Japanese Yen" -msgstr "" - -#: woocommerce-core-functions.php:789 -#@ woocommerce -msgid "Malaysian Ringgits" -msgstr "" - -#: woocommerce-core-functions.php:790 -#@ woocommerce -msgid "Mexican Peso" -msgstr "" - -#: woocommerce-core-functions.php:792 -#@ woocommerce -msgid "New Zealand Dollar" -msgstr "" - -#: woocommerce-core-functions.php:795 -#@ woocommerce -msgid "Pounds Sterling" -msgstr "" - -#: woocommerce-core-functions.php:796 -#@ woocommerce -msgid "Romanian Leu" -msgstr "" - -#: woocommerce-core-functions.php:798 -#@ woocommerce -msgid "Singapore Dollar" -msgstr "" - -#: woocommerce-core-functions.php:799 -#@ woocommerce -msgid "South African rand" -msgstr "" - -#: woocommerce-core-functions.php:804 -#@ woocommerce -msgid "Turkish Lira" -msgstr "" - -#: woocommerce-core-functions.php:805 -#@ woocommerce -msgid "US Dollars" -msgstr "" - -#: woocommerce-functions.php:1063 -#@ woocommerce -msgid "No file defined" -msgstr "Nenhum arquivo definido" - -#: admin/includes/notice-theme-support.php:6 -#@ woocommerce -msgid "Your theme does not declare WooCommerce support – if you encounter layout issues please read our integration guide or choose a WooCommerce theme :)" -msgstr "" - -#: admin/includes/notice-theme-support.php:7 -#@ woocommerce -msgid "Theme Integration Guide" -msgstr "" - -#: admin/includes/notice-theme-support.php:7 -#@ woocommerce -msgid "Hide this notice" -msgstr "" - -#: admin/includes/welcome.php:48 -#@ woocommerce -msgid "Welcome to WooCommerce" -msgstr "Bem-vindo ao WooCommerce" - -#: admin/includes/welcome.php:135 -#, php-format -#@ woocommerce -msgid "Welcome to WooCommerce %s" -msgstr "Bem-vindo ao WooCommerce %s" - -#: admin/includes/welcome.php:140 -#@ woocommerce -msgid "Thanks, all done!" -msgstr "" - -#: admin/includes/welcome.php:142 -#@ woocommerce -msgid "Thank you for updating to the latest version!" -msgstr "" - -#: admin/includes/welcome.php:144 -#@ woocommerce -msgid "Thanks for installing!" -msgstr "Obrigado por instalar!" - -#: admin/includes/welcome.php:146 -#, php-format -#@ woocommerce -msgid "%s WooCommerce %s is more powerful, stable, and secure than ever before. We hope you enjoy it." -msgstr "%s WooCommerce %s esta mais poderoso, estável e seguro do que nunca. Nós esperamos que você goste." - -#: admin/includes/welcome.php:150 -#, php-format -#@ woocommerce -msgid "Version %s" -msgstr "" - -#: admin/includes/welcome.php:161 -#@ woocommerce -msgid "What's New" -msgstr "O que há de novo" - -#: admin/includes/welcome.php:163 -#@ woocommerce -msgid "Credits" -msgstr "Créditos" - -#: admin/includes/welcome.php:186 -#@ woocommerce -msgid "Security in mind" -msgstr "" - -#: admin/includes/welcome.php:190 -#@ woocommerce -msgid "Sucuri Safe Plugin" -msgstr "" - -#: admin/includes/welcome.php:191 -#@ woocommerce -msgid "You will be happy to learn that WooCommerce has been audited and certified by the Sucuri Security team. Whilst there is not much to be seen visually to understand the amount of work that went into this audit, rest assured that your website is powered by one of the most powerful and stable eCommerce plugins available." -msgstr "" - -#: admin/includes/welcome.php:194 -#@ woocommerce -msgid "A Smoother Admin Experience" -msgstr "" - -#: admin/includes/welcome.php:200 -#@ woocommerce -msgid "New Product Panel" -msgstr "" - -#: admin/includes/welcome.php:201 -#@ woocommerce -msgid "We have revised the product data panel making it cleaner, more streamlined, and more logical. Adding products is a breeze!" -msgstr "" - -#: admin/includes/welcome.php:206 -#@ woocommerce -msgid "Nicer Order Screens" -msgstr "" - -#: admin/includes/welcome.php:207 -#@ woocommerce -msgid "Order pages have had a cleanup, with a more easily scannable interface. We particularly like the new status icons!" -msgstr "" - -#: admin/includes/welcome.php:212 -#@ woocommerce -msgid "Multi-Download Support" -msgstr "" - -#: admin/includes/welcome.php:213 -#@ woocommerce -msgid "Products can have multiple downloadable files - purchasers will get access to all the files added." -msgstr "" - -#: admin/includes/welcome.php:218 -#@ woocommerce -msgid "Less Taxing Taxes" -msgstr "" - -#: admin/includes/welcome.php:224 -#@ woocommerce -msgid "New Tax Input Panel" -msgstr "" - -#: admin/includes/welcome.php:225 -#@ woocommerce -msgid "The tax input pages have been streamlined to make inputting taxes simpler - adding multiple taxes for a single jurisdiction is now much easier using the priority system. There is also CSV import/export support." -msgstr "" - -#: admin/includes/welcome.php:229 -#@ woocommerce -msgid "Improved Tax Options" -msgstr "" - -#: admin/includes/welcome.php:230 -#@ woocommerce -msgid "As requested by some users, we now support taxing the billing address instead of shipping (optional), and we allow you to choose which tax class applies to shipping." -msgstr "" - -#: admin/includes/welcome.php:235 -#@ woocommerce -msgid "Product Listing Improvements Customers Will Love" -msgstr "" - -#: admin/includes/welcome.php:241 -#@ woocommerce -msgid "New Sorting Options" -msgstr "" - -#: admin/includes/welcome.php:242 -#@ woocommerce -msgid "Customers can now sort products by popularity and ratings." -msgstr "" - -#: admin/includes/welcome.php:247 -#@ woocommerce -msgid "Better Pagination and Result Counts" -msgstr "" - -#: admin/includes/welcome.php:248 -#@ woocommerce -msgid "Numbered pagination has been added to core, and we show the number of results found above the listings." -msgstr "" - -#: admin/includes/welcome.php:253 -#@ woocommerce -msgid "Inline Star Rating Display" -msgstr "" - -#: admin/includes/welcome.php:254 -#@ woocommerce -msgid "We have added star ratings to the catalog which are pulled from reviews." -msgstr "" - -#: admin/includes/welcome.php:262 -#@ woocommerce -msgid "Under the Hood" -msgstr "" - -#: admin/includes/welcome.php:266 -#@ woocommerce -msgid "New product classes" -msgstr "" - -#: admin/includes/welcome.php:267 -#@ woocommerce -msgid "The product classes have been rewritten and are now factory based. Much more extendable, and easier to query products using the new get_product() function." -msgstr "" - -#: admin/includes/welcome.php:271 -#@ woocommerce -msgid "Capability overhaul" -msgstr "" - -#: admin/includes/welcome.php:272 -#@ woocommerce -msgid "More granular capabilities for admin/shop manager roles covering products, orders and coupons." -msgstr "" - -#: admin/includes/welcome.php:276 -#@ woocommerce -msgid "API Improvements" -msgstr "" - -#: admin/includes/welcome.php:277 -#@ woocommerce -msgid "WC-API now has real endpoints, and we've optimised the gateways API significantly by only loading gateways when needed." -msgstr "" - -#: admin/includes/welcome.php:283 -#@ woocommerce -msgid "Cache-friendly cart widgets" -msgstr "" - -#: admin/includes/welcome.php:284 -#@ woocommerce -msgid "Cart widgets and other \"fragments\" are now pulled in via AJAX - this works wonders with static page caching." -msgstr "" - -#: admin/includes/welcome.php:288 -#@ woocommerce -msgid "Session handling" -msgstr "" - -#: admin/includes/welcome.php:289 -#@ woocommerce -msgid "PHP SESSIONS have been a problem for many users in the past, so we've developed our own handler using cookies and options to make these more reliable." -msgstr "" - -#: admin/includes/welcome.php:293 -#@ woocommerce -msgid "Retina Ready" -msgstr "" - -#: admin/includes/welcome.php:294 -#@ woocommerce -msgid "All graphics within WC have been optimised for HiDPI displays." -msgstr "" - -#: admin/includes/welcome.php:301 -#@ woocommerce -msgid "Better stock handling" -msgstr "" - -#: admin/includes/welcome.php:302 -#@ woocommerce -msgid "We have added an option to hold stock for unpaid orders (defaults to 60mins). When this time limit is reached, and the order is not paid for, stock is released and the order is cancelled." -msgstr "" - -#: admin/includes/welcome.php:306 -#@ woocommerce -msgid "Improved Line-item storage" -msgstr "" - -#: admin/includes/welcome.php:307 -#@ woocommerce -msgid "We have changed how order items get stored making them easier (and faster) to access for reporting. Order items are no longer serialised within an order - they are stored within their own table." -msgstr "" - -#: admin/includes/welcome.php:311 -#@ woocommerce -msgid "Autoload" -msgstr "" - -#: admin/includes/welcome.php:312 -#@ woocommerce -msgid "We have setup autoloading for classes - this has dramatically reduced memory usage in 2.0." -msgstr "" - -#: admin/includes/welcome.php:319 -#@ woocommerce -msgid "Go to WooCommerce Settings" -msgstr "Ir para a página de Configurações do WooCommerce" - -#: admin/includes/welcome.php:337 -#@ woocommerce -msgid "WooCommerce is developed and maintained by a worldwide team of passionate individuals and backed by an awesome developer community. Want to see your name? Contribute to WooCommerce." -msgstr "" - -#: admin/includes/welcome.php:363 -#, php-format -#@ woocommerce -msgid "View %s" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:124 -#@ woocommerce -msgid "Could not grant access - the user may already have permission for this file or billing email is not set. Ensure the billing email is set, and the order has been saved." -msgstr "" - -#: admin/settings/settings-init.php:28 -#@ woocommerce -msgid "Base Location" -msgstr "Localização base" - -#: admin/settings/settings-init.php:29 -#@ woocommerce -msgid "This is the base location for your business. Tax rates will be based on this country." -msgstr "" - -#: admin/settings/settings-init.php:75 -#@ woocommerce -msgid "Enable site-wide store notice text" -msgstr "Habilitar em todo a loja o um aviso" - -#: admin/settings/settings-init.php:92 -#@ woocommerce -msgid "Cart, Checkout and Accounts" -msgstr "Carrinho, Checkout e Contas de usuário" - -#: admin/settings/settings-init.php:96 -#@ woocommerce -msgid "Enable the use of coupons" -msgstr "Permitir o uso de cupons" - -#: admin/settings/settings-init.php:100 -#@ woocommerce -msgid "Coupons can be applied from the cart and checkout pages." -msgstr "Os cupons podem ser aplicados a partir do carrinho e páginas de checkout." - -#: admin/settings/settings-init.php:120 -#@ woocommerce -msgid "Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -msgstr "Forçar SSL (HTTPS) nas páginas de checkout (é necessário um certificado SSL)." - -#: admin/settings/settings-init.php:175 -#@ woocommerce -msgid "Enable Lightbox" -msgstr "Ativar Lightbox" - -#: admin/settings/settings-init.php:178 -#@ woocommerce -msgid "Include WooCommerce's lightbox. Product gallery images and the add review form will open in a lightbox." -msgstr "Ativar o WooCommerce Lightbox. Galeria de imagens em produtos e também reviews serão abertos pelo Lightbox." - -#: admin/settings/settings-init.php:189 -#@ woocommerce -msgid "This will enable a script allowing the country fields to be searchable." -msgstr "Isto irá permitir que um script modifique o campo de país para inserir um campo de busca." - -#: admin/settings/settings-init.php:194 -#@ woocommerce -msgid "Downloadable Products" -msgstr "" - -#: admin/settings/settings-init.php:213 -#@ woocommerce -msgid "Access Restriction" -msgstr "Restrição de Acesso" - -#: admin/settings/settings-init.php:214 -#@ woocommerce -msgid "Downloads require login" -msgstr "Exigir login para fazer download" - -#: admin/settings/settings-init.php:218 -#@ woocommerce -msgid "This setting does not apply to guest purchases." -msgstr "Esta definição não se aplica a compras de visitantes sem cadastro." - -#: admin/settings/settings-init.php:227 -#@ woocommerce -msgid "Enable this option to grant access to downloads when orders are \"processing\", rather than \"completed\"." -msgstr "Ative essa opção para conceder acesso a downloads de quando os pedidos estão com o status de \\\"processamento\\\", em vez de \\\"concluído\\\"." - -#: admin/settings/settings-init.php:325 -#@ woocommerce -msgid "Logout Page" -msgstr "Página Sair" - -#: admin/settings/settings-init.php:326 -#@ woocommerce -msgid "Parent: \"My Account\"" -msgstr "" - -#: admin/settings/settings-init.php:405 -#@ woocommerce -msgid "Redirect to the cart page after successful addition" -msgstr "Redirecionar para a página do carrinho ao adicionar um produto" - -#: admin/settings/settings-init.php:413 -#@ woocommerce -msgid "Enable AJAX add to cart buttons on archives" -msgstr "Ativar os botões de adicionar ao carrinho com AJAX nos arquivos" - -#: admin/settings/settings-init.php:426 -#@ woocommerce -msgid "Enable the SKU field for products" -msgstr "Ativar o campo REF para os produtos" - -#: admin/settings/settings-init.php:434 -#@ woocommerce -msgid "Enable the weight field for products (some shipping methods may require this)" -msgstr "Ativar o campo peso para os produtos (alguns métodos de envio podem exigir este dado)" - -#: admin/settings/settings-init.php:442 -#@ woocommerce -msgid "Enable the dimension fields for products (some shipping methods may require this)" -msgstr "Ativar os campos de dimensões para os produtos (alguns métodos de envio podem exigir estes dados)" - -#: admin/settings/settings-init.php:450 -#@ woocommerce -msgid "Show weight and dimension values on the Additional Information tab" -msgstr "Exibir os valores de peso e dimensões na aba Informação adicional" - -#: admin/woocommerce-admin-content.php:29 -#, php-format -#@ woocommerce -msgid "Thank you for using WooCommerce :) Should you need help using or extending WooCommerce please read the documentation. For further assistance you can use the community forum or if you have access, our support desk." -msgstr "" - -#: admin/woocommerce-admin-content.php:84 -#@ woocommerce -msgid "Project on WordPress.org" -msgstr "" - -#: admin/woocommerce-admin-content.php:85 -#@ woocommerce -msgid "Project on Github" -msgstr "" - -#: admin/woocommerce-admin-content.php:86 -#@ woocommerce -msgid "WooCommerce Docs" -msgstr "WooCommerce Docs" - -#: admin/woocommerce-admin-content.php:87 -#@ woocommerce -msgid "Official Extensions" -msgstr "" - -#: admin/woocommerce-admin-content.php:88 -#@ woocommerce -msgid "Official Themes" -msgstr "" - -#: admin/woocommerce-admin-init.php:468 -#@ woocommerce -msgid "Please select some items." -msgstr "Por favor, selecione alguns itens." - -#: admin/woocommerce-admin-install.php:237 -#@ woocommerce -msgctxt "page_slug" -msgid "logout" -msgstr "" - -#: admin/woocommerce-admin-status.php:412 -#@ woocommerce -msgid "Templates" -msgstr "" - -#: admin/woocommerce-admin-status.php:418 -#@ woocommerce -msgid "Template Overrides" -msgstr "" - -#: admin/woocommerce-admin-status.php:436 -#@ woocommerce -msgid "No core overrides present in theme." -msgstr "Nenhum template foi sobrescrito neste tema." - -#: classes/abstracts/abstract-wc-product.php:33 -#@ woocommerce -msgid "The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class directly." -msgstr "" - -#: classes/class-wc-coupon.php:442 -#@ woocommerce -msgid "Coupon is not valid." -msgstr "" - -#: classes/class-wc-coupon.php:457 -#, php-format -#@ woocommerce -msgid "Sorry, coupon \"%s\" has already been applied and cannot be used in conjunction with other coupons." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:157 -#@ woocommerce -msgid "Please enter a prefix for your invoice numbers. If you use your PayPal account for multiple stores ensure this prefix is unique as PayPal will not allow orders with the same invoice number." -msgstr "" - -#: i18n/states/HU.php:13 -#@ woocommerce -msgid "Bács-Kiskun" -msgstr "" - -#: i18n/states/HU.php:14 -#@ woocommerce -msgid "Békés" -msgstr "" - -#: i18n/states/HU.php:15 -#@ woocommerce -msgid "Baranya" -msgstr "" - -#: i18n/states/HU.php:16 -#@ woocommerce -msgid "Borsod-Abaúj-Zemplén" -msgstr "" - -#: i18n/states/HU.php:17 -#@ woocommerce -msgid "Budapest" -msgstr "" - -#: i18n/states/HU.php:18 -#@ woocommerce -msgid "Csongrád" -msgstr "" - -#: i18n/states/HU.php:19 -#@ woocommerce -msgid "Fejér" -msgstr "" - -#: i18n/states/HU.php:20 -#@ woocommerce -msgid "Győr-Moson-Sopron" -msgstr "" - -#: i18n/states/HU.php:21 -#@ woocommerce -msgid "Hajdú-Bihar" -msgstr "" - -#: i18n/states/HU.php:22 -#@ woocommerce -msgid "Heves" -msgstr "" - -#: i18n/states/HU.php:23 -#@ woocommerce -msgid "Jász-Nagykun-Szolnok" -msgstr "" - -#: i18n/states/HU.php:24 -#@ woocommerce -msgid "Komárom-Esztergom" -msgstr "" - -#: i18n/states/HU.php:25 -#@ woocommerce -msgid "Nógrád" -msgstr "" - -#: i18n/states/HU.php:26 -#@ woocommerce -msgid "Pest" -msgstr "" - -#: i18n/states/HU.php:27 -#@ woocommerce -msgid "Somogy" -msgstr "" - -#: i18n/states/HU.php:28 -#@ woocommerce -msgid "Szabolcs-Szatmár-Bereg" -msgstr "" - -#: i18n/states/HU.php:29 -#@ woocommerce -msgid "Tolna" -msgstr "" - -#: i18n/states/HU.php:30 -#@ woocommerce -msgid "Vas" -msgstr "" - -#: i18n/states/HU.php:31 -#@ woocommerce -msgid "Veszprém" -msgstr "" - -#: i18n/states/HU.php:32 -#@ woocommerce -msgid "Zala" -msgstr "" - -#: i18n/states/US.php:72 -#@ woocommerce -msgid "US Virgin Islands" -msgstr "" - -#: templates/myaccount/my-orders.php:62 -#, php-format -#@ woocommerce -msgid "%s for %s item" -msgid_plural "%s for %s items" -msgstr[0] "" -msgstr[1] "" - -#: woocommerce-ajax.php:1100 -#@ woocommerce -msgid "No products had their stock reduced - they may not have stock management enabled." -msgstr "" - -#: woocommerce-ajax.php:1152 -#@ woocommerce -msgid "No products had their stock increased - they may not have stock management enabled." -msgstr "" - -#: woocommerce-template.php:767 -#, php-format -#@ woocommerce -msgid "Reviews (%d)" -msgstr "Avaliações (%d)" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -#@ woocommerce -msgid "Value of the coupon." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:413 -#@ woocommerce -msgid "Pipe (|) separate terms" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:365 -#@ woocommerce -msgid "Edit Class" -msgstr "Editar Classe" - -#: classes/class-wc-countries.php:277 -#@ woocommerce -msgid "Western Samoa" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:147 -#@ woocommerce -msgid "Receiver Email" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:149 -#@ woocommerce -msgid "If this differs from the email entered above, input your main receiver email for your PayPal account. This is used to validate IPN requests." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:664 -#, php-format -#@ woocommerce -msgid "Validation error: PayPal IPN response from a different email address (%s)." -msgstr "" - -#: templates/order/order-details.php:64 -#, php-format -#@ woocommerce -msgid "Download file%s" -msgstr "" - -#: woocommerce-core-functions.php:785 -#@ woocommerce -msgid "Indian Rupee" -msgstr "" - -#: admin/woocommerce-admin-status.php:269 -#@ woocommerce -msgid "is available" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:152 -#@ woocommerce -msgid "Pay securely with your credit card." -msgstr "Pague com segurança usando cartão de crédito." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:128 -#@ woocommerce -msgid "Additional Rates" -msgstr "Taxas Adicionais" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:130 -#@ woocommerce -msgid "Optional extra shipping options with additional costs (one per line): Option Name | Additional Cost | Per Cost Type (order, class, or item) Example: Priority Mail | 6.95 | order." -msgstr "Opções extras de transporte com custos adicionais (uma por linha): Nome da Opção | Custo Adicional | Tipo de Custo (order, classe ou item) Exemplo: Entrega Prioritária | 6.95 | order" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:133 -#@ woocommerce -msgid "Option Name | Additional Cost | Per Cost Type (order, class, or item)" -msgstr "Nome da Opção | Custo Adicional | Tipo de Custo (order, classe ou item)" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:136 -#@ woocommerce -msgid "Additional Costs" -msgstr "Custos Adicionais" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:138 -#@ woocommerce -msgid "Additional costs can be added below - these will all be added to the per-order cost above." -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:141 -#@ woocommerce -msgid "Costs Added..." -msgstr "Adicionado custos..." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:154 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:120 -#@ woocommerce -msgid "Minimum Handling Fee" -msgstr "Taxa de Mínima de Manuseio" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:479 -#@ woocommerce -msgid "Costs" -msgstr "Custos" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:492 -#@ woocommerce -msgid "+ Add Cost" -msgstr "+ Adicionar Custo" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:492 -#@ woocommerce -msgid "Delete selected costs" -msgstr "Deletar os custos selecionados" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:498 -#@ woocommerce -msgid "Any class" -msgstr "Qualquer classe" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:90 -#@ woocommerce -msgid "Cost Added..." -msgstr "Custos adicionados..." - -#: woocommerce-core-functions.php:788 -#@ woocommerce -msgid "South Korean Won" -msgstr "" - -#: woocommerce.php:172 -#@ woocommerce -msgid "Premium Support" -msgstr "" - -#: admin/includes/notice-update.php:6 -#@ woocommerce -msgid "WooCommerce Data Update Required – We just need to update your install to the latest version" -msgstr "" - -#: admin/post-types/shop_coupon.php:149 -#@ woocommerce -msgid "Show all types" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:143 -#@ woocommerce -msgid "Email restrictions" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:143 -#@ woocommerce -msgid "No restrictions" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:143 -#@ woocommerce -msgid "List of emails to check against the customer's billing email when an order is placed." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:81 -#@ woocommerce -msgid "Prices increase by (fixed amount or %)" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:82 -#@ woocommerce -msgid "Prices decrease by (fixed amount or %)" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:84 -#@ woocommerce -msgid "Sale prices increase by (fixed amount or %)" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:85 -#@ woocommerce -msgid "Sale prices decrease by (fixed amount or %)" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:444 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:461 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:478 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:495 -#@ woocommerce -msgid "Enter a value (fixed or %)" -msgstr "" - -#: admin/settings/settings-init.php:105 -#@ woocommerce -msgid "Enable guest checkout" -msgstr "Habilitar finalização como convidado" - -#: admin/settings/settings-init.php:106 -#@ woocommerce -msgid "Allows customers to checkout without creating an account." -msgstr "Permitir que os clientes finalizem a compra sem criar uma conta." - -#: admin/settings/settings-init.php:134 -#@ woocommerce -msgid "Enable registration on the \"Checkout\" page" -msgstr "Habilitar o registro na página de \"Checkout\"" - -#: admin/settings/settings-init.php:142 -#@ woocommerce -msgid "Enable registration on the \"My Account\" page" -msgstr "Habilitar o registro na página \"Minha conta\"" - -#: admin/settings/settings-init.php:150 -#@ woocommerce -msgid "Automatically generate username from customer email" -msgstr "Gerar automaticamente o nome de usuário utilizando o e-mail do cliente" - -#: admin/settings/settings-init.php:158 -#@ woocommerce -msgid "Automatically generate customer password" -msgstr "Gerar automaticamente a senha do cliente" - -#: admin/woocommerce-admin-customers.php:169 -#@ woocommerce -msgid "View orders" -msgstr "" - -#: admin/woocommerce-admin-customers.php:193 -#@ woocommerce -msgid "Link previous orders" -msgstr "" - -#: admin/woocommerce-admin-customers.php:219 -#@ woocommerce -msgid "Name (Last, First)" -msgstr "" - -#: admin/woocommerce-admin-customers.php:221 -#: templates/myaccount/form-edit-account.php:28 -#: templates/myaccount/form-login.php:73 -#@ woocommerce -msgid "Email address" -msgstr "" - -#: admin/woocommerce-admin-customers.php:222 -#@ woocommerce -msgid "Location" -msgstr "" - -#: admin/woocommerce-admin-customers.php:223 -#@ woocommerce -msgid "Paying customer?" -msgstr "" - -#: admin/woocommerce-admin-customers.php:224 -#@ woocommerce -msgid "Complete orders" -msgstr "" - -#: admin/woocommerce-admin-customers.php:225 -#@ woocommerce -msgid "Money spent" -msgstr "" - -#: admin/woocommerce-admin-customers.php:226 -#@ woocommerce -msgid "Last order" -msgstr "" - -#: admin/woocommerce-admin-init.php:351 -#, php-format -#@ woocommerce -msgid "%s previous order linked" -msgid_plural "%s previous orders linked" -msgstr[0] "" -msgstr[1] "" - -#: admin/woocommerce-admin-init.php:356 -#@ woocommerce -msgid "Search customers" -msgstr "" - -#: admin/woocommerce-admin-status.php:138 -#@ woocommerce -msgid "PHP Max Input Vars" -msgstr "" - -#: admin/woocommerce-admin-status.php:142 -#@ woocommerce -msgid "SUHOSIN Installed" -msgstr "" - -#: admin/woocommerce-admin-status.php:581 -#@ woocommerce -msgid "Customer Sessions" -msgstr "" - -#: admin/woocommerce-admin-status.php:582 -#@ woocommerce -msgid "Clear all sessions" -msgstr "" - -#: admin/woocommerce-admin-status.php:583 -#@ woocommerce -msgid "Warning This tool will delete all customer session data from the database, including any current live carts." -msgstr "Atenção Esta ferramenta irá apagar todos os dados da sessão do cliente do banco de dados, incluindo as dos clientes que estiverem comprando agora." - -#: classes/abstracts/abstract-wc-product.php:1292 -#, php-format -#@ woocommerce -msgid "%s – %s" -msgstr "" - -#: classes/class-wc-cache-helper.php:99 -#, php-format -#@ woocommerce -msgid "In order for database caching to work with WooCommerce you must add _wc_session_ to the \"Ignored Query Strings\" option in W3 Total Cache settings here." -msgstr "" - -#: classes/class-wc-emails.php:370 -#, php-format -#@ woocommerce -msgid "%s units of %s have been backordered in order %s." -msgstr "" - -#: classes/class-wc-post-types.php:187 -#, php-format -#@ woocommerce -msgid "Search %s" -msgstr "" - -#: classes/class-wc-post-types.php:188 -#, php-format -#@ woocommerce -msgid "All %s" -msgstr "" - -#: classes/class-wc-post-types.php:189 -#, php-format -#@ woocommerce -msgid "Parent %s" -msgstr "" - -#: classes/class-wc-post-types.php:190 -#, php-format -#@ woocommerce -msgid "Parent %s:" -msgstr "" - -#: classes/class-wc-post-types.php:191 -#, php-format -#@ woocommerce -msgid "Edit %s" -msgstr "" - -#: classes/class-wc-post-types.php:192 -#, php-format -#@ woocommerce -msgid "Update %s" -msgstr "" - -#: classes/class-wc-post-types.php:193 -#, php-format -#@ woocommerce -msgid "Add New %s" -msgstr "" - -#: classes/class-wc-post-types.php:194 -#, php-format -#@ woocommerce -msgid "New %s" -msgstr "" - -#: classes/class-wc-shortcodes.php:984 -#@ woocommerce -msgid "Use $args[\"posts_per_page\"] instead. Deprecated argument will be removed in WC 2.2." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:213 -#, php-format -#@ woocommerce -msgid "Log PayPal events, such as IPN requests, inside woocommerce/logs/paypal-%s.txt" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:510 -#@ woocommerce -msgid "Thank you - your order is now pending payment. You should be automatically redirected to PayPal to make payment." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:685 -#, php-format -#@ woocommerce -msgid "Payment pending: %s" -msgstr "" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:69 -#@ woocommerce -msgid "Set Domain Name" -msgstr "" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:70 -#, php-format -#@ woocommerce -msgid "(Optional) Sets the _setDomainName variable. See here for more information." -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:27 -#@ woocommerce -msgid "Active Filters" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav.php:37 -#@ woocommerce -msgid "Filter by" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav.php:58 -#@ woocommerce -msgid "Query type" -msgstr "" - -#: classes/widgets/class-wc-widget-products.php:21 -#@ woocommerce -msgid "Display a list of your products on your site." -msgstr "" - -#: classes/widgets/class-wc-widget-products.php:23 -#@ woocommerce -msgid "WooCommerce Products" -msgstr "" - -#: classes/widgets/class-wc-widget-products.php:36 -#: classes/widgets/class-wc-widget-recently-viewed.php:36 -#: classes/widgets/class-wc-widget-top-rated-products.php:38 -#@ woocommerce -msgid "Number of products to show" -msgstr "" - -#: classes/widgets/class-wc-widget-products.php:43 -#@ woocommerce -msgid "All Products" -msgstr "" - -#: classes/widgets/class-wc-widget-products.php:45 -#@ woocommerce -msgid "On-sale Products" -msgstr "" - -#: classes/widgets/class-wc-widget-products.php:55 -#@ woocommerce -msgid "Random" -msgstr "" - -#: classes/widgets/class-wc-widget-products.php:64 -#@ woocommerce -msgid "ASC" -msgstr "" - -#: classes/widgets/class-wc-widget-products.php:65 -#@ woocommerce -msgid "DESC" -msgstr "" - -#: classes/widgets/class-wc-widget-products.php:76 -#@ woocommerce -msgid "Show hidden products" -msgstr "" - -#: classes/widgets/class-wc-widget-recent-reviews.php:36 -#@ woocommerce -msgid "Number of reviews to show" -msgstr "" - -#: classes/widgets/class-wc-widget-recently-viewed.php:23 -#@ woocommerce -msgid "WooCommerce Recently Viewed" -msgstr "" - -#: classes/widgets/class-wc-widget-recently-viewed.php:27 -#@ woocommerce -msgid "Recently Viewed Products" -msgstr "" - -#: classes/widgets/class-wc-widget-top-rated-products.php:23 -#@ woocommerce -msgid "Display a list of your top rated products on your site." -msgstr "" - -#: templates/cart/totals.php:46 -#: templates/checkout/review-order.php:45 -#@ woocommerce -msgid "Shipping and Handling" -msgstr "" - -#: templates/checkout/form-shipping.php:31 -#@ woocommerce -msgid "Ship to a different address?" -msgstr "" - -#: templates/emails/customer-new-account.php:18 -#, php-format -#@ woocommerce -msgid "Your password has been automatically generated: %s" -msgstr "" - -#: templates/emails/customer-new-account.php:22 -#: templates/emails/plain/customer-new-account.php:18 -#, php-format -#@ woocommerce -msgid "You can access your account area to view your orders and change your password here: %s." -msgstr "" - -#: templates/emails/plain/customer-new-account.php:16 -#, php-format -#@ woocommerce -msgid "Your password is %s." -msgstr "" - -#: templates/myaccount/form-edit-account.php:32 -#@ woocommerce -msgid "Password (leave blank to leave unchanged)" -msgstr "" - -#: templates/myaccount/form-edit-account.php:36 -#@ woocommerce -msgid "Confirm new password" -msgstr "" - -#: templates/myaccount/form-login.php:30 -#@ woocommerce -msgid "Username or email address" -msgstr "" - -#: templates/myaccount/form-login.php:67 -#@ default -msgid "username" -msgstr "" - -#: templates/myaccount/form-login.php:74 -#@ default -msgid "email" -msgstr "" - -#: templates/myaccount/form-login.php:79 -#@ default -msgid "password" -msgstr "" - -#: templates/myaccount/my-account.php:19 -#, php-format -#@ woocommerce -msgid "Hello, %s. From your account dashboard you can view your recent orders, manage your shipping and billing addresses and edit your password and account details." -msgstr "" - -#: woocommerce-core-functions.php:797 -#@ woocommerce -msgid "Russian Ruble" -msgstr "" - -#: woocommerce-functions.php:653 -#: woocommerce-functions.php:655 -#: woocommerce-functions.php:663 -#@ woocommerce -msgid "Error" -msgstr "" - -#: woocommerce-functions.php:663 -#@ woocommerce -msgid "A user could not be found with this email address." -msgstr "" - -#: woocommerce-functions.php:709 -#: woocommerce-functions.php:1619 -#@ woocommerce -msgid "Please provide a valid email address." -msgstr "" - -#: woocommerce-functions.php:720 -#@ woocommerce -msgid "Please enter a valid account username." -msgstr "" - -#: woocommerce-functions.php:1616 -#@ woocommerce -msgid "Please enter your name." -msgstr "" - -#: woocommerce-functions.php:1622 -#@ woocommerce -msgid "This email address is already registered." -msgstr "" - -#: woocommerce-functions.php:1625 -#@ woocommerce -msgid "Please re-enter your password." -msgstr "" - -#: woocommerce-functions.php:1641 -#@ woocommerce -msgid "Account details changed successfully." -msgstr "" - -#: woocommerce-template.php:850 -#@ woocommerce -msgid "Use $args argument as an array instead. Deprecated argument will be removed in WC 2.2." -msgstr "" - -#. translators: plugin header field 'Version' -#: woocommerce.php:0 -#@ woocommerce -msgid "2.1-bleeding" -msgstr "" - -#: templates/single-product-reviews.php:71 -#, php-format -#@ woocommerce -msgid "There are no reviews yet, would you like to %s submit yours%s?" -msgstr "Não existem avaliações ainda, gostaria de %s enviar a sua%s?" - diff --git a/i18n/languages/woocommerce-pt_PT.mo b/i18n/languages/woocommerce-pt_PT.mo deleted file mode 100644 index dc376177afe..00000000000 Binary files a/i18n/languages/woocommerce-pt_PT.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-pt_PT.po b/i18n/languages/woocommerce-pt_PT.po deleted file mode 100644 index 8ee12c30fc2..00000000000 --- a/i18n/languages/woocommerce-pt_PT.po +++ /dev/null @@ -1,11503 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce v2.0.14\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2013-11-11 15:36+0\n" -"Last-Translator: \n" -"Language-Team: \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Easy Po 0.9.4\n" -"X-Poedit-Language: \n" -"X-Poedit-Country: \n" -"X-Poedit-SourceCharset: utf-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n" -"X-Poedit-Basepath: \n" -"X-Poedit-Bookmarks: \n" -"X-Poedit-SearchPath-0: .\n" - -#: admin/post-types/writepanels/writepanel-product_data.php:85 -#: admin/woocommerce-admin-attributes.php:306 -#: admin/woocommerce-admin-init.php:66 -msgid "Attributes" -msgstr "Atributos" - -#: admin/woocommerce-admin-attributes.php:235 -msgid "Edit Attribute" -msgstr "Editar atributo" - -#: admin/woocommerce-admin-attributes.php:263 -#: admin/woocommerce-admin-attributes.php:396 -msgid "Select" -msgstr "Selecionar" - -#: admin/woocommerce-admin-attributes.php:264 -#: admin/woocommerce-admin-attributes.php:397 -msgid "Text" -msgstr "Texto" - -#: admin/post-types/product.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:378 -#: admin/post-types/writepanels/writepanel-product_data.php:472 -#: admin/woocommerce-admin-attributes.php:241 -#: admin/woocommerce-admin-attributes.php:277 -#: admin/woocommerce-admin-attributes.php:315 -#: admin/woocommerce-admin-attributes.php:338 -#: admin/woocommerce-admin-attributes.php:382 -#: admin/woocommerce-admin-attributes.php:407 -#: admin/woocommerce-admin-init.php:437 -#: classes/widgets/class-wc-widget-product-categories.php:191 -#: templates/single-product-reviews.php:84 -#: woocommerce-ajax.php:1175 -msgid "Name" -msgstr "Nome" - -#: admin/post-types/product.php:101 -#: admin/woocommerce-admin-attributes.php:259 -#: admin/woocommerce-admin-attributes.php:317 -#: admin/woocommerce-admin-attributes.php:394 -msgid "Type" -msgstr "Tipo" - -#: admin/woocommerce-admin-attributes.php:319 -msgid "Terms" -msgstr "Termos" - -#: admin/post-types/product.php:151 -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#: admin/post-types/writepanels/writepanel-order_data.php:387 -#: admin/post-types/writepanels/writepanel-product_data.php:1069 -#: admin/woocommerce-admin-attributes.php:331 -#: templates/myaccount/my-address.php:45 -#: woocommerce.php:954 -#: woocommerce.php:990 -#: woocommerce.php:1027 -#: woocommerce.php:1065 -#: woocommerce.php:1103 -msgid "Edit" -msgstr "Editar" - -#: admin/post-types/writepanels/writepanel-product_images.php:43 -#: admin/post-types/writepanels/writepanel-product_images.php:103 -#: admin/woocommerce-admin-attributes.php:331 -msgid "Delete" -msgstr "Excluir" - -#: admin/woocommerce-admin-attributes.php:364 -msgid "Configure terms" -msgstr "Configurar termos" - -#: admin/woocommerce-admin-attributes.php:368 -msgid "No attributes currently exist." -msgstr "Não existem atributos definidos." - -#: admin/woocommerce-admin-attributes.php:378 -msgid "Add New Attribute" -msgstr "Adicionar Novo Atributo" - -#: admin/woocommerce-admin-attributes.php:379 -msgid "Attributes let you define extra product data, such as size or colour. You can use these attributes in the shop sidebar using the \"layered nav\" widgets. Please note: you cannot rename an attribute later on." -msgstr "Atributos permitem que você defina os dados extra do produto, como tamanho ou cor. Você pode usar estes atributos na barra lateral da loja usando o \"camadas de navegação\" widgets. Atenção: não é possível renomear um atributo mais tarde." - -#: admin/woocommerce-admin-attributes.php:267 -#: admin/woocommerce-admin-attributes.php:400 -msgid "Determines how you select attributes for products. Text allows manual entry via the product page, whereas select attribute terms can be defined from this section. If you plan on using an attribute for variations use select." -msgstr "Determina como você seleciona atributos para os produtos. Texto permite fazer entrada manual através da página do produto, ao passo que termos Select pode ser definido a partir desta seção. Se você planeia usar um atributo para variações use select." - -#: admin/woocommerce-admin-attributes.php:413 -msgid "Add Attribute" -msgstr "Adicionar atributo" - -#: admin/woocommerce-admin-attributes.php:424 -msgid "Are you sure you want to delete this attribute?" -msgstr "Tem certeza de que deseja excluir este atributo?" - -#: admin/woocommerce-admin-dashboard.php:78 -msgid "Shop Content" -msgstr "Conteúdo da loja" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:74 -#: admin/woocommerce-admin-taxonomies.php:28 -#: admin/woocommerce-admin-taxonomies.php:122 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:269 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:289 -#: woocommerce.php:985 -msgid "Products" -msgstr "Produtos" - -#: classes/widgets/class-wc-widget-product-categories.php:57 -#: woocommerce.php:821 -#: woocommerce.php:823 -msgid "Product Categories" -msgstr "Categorias de produtos" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:58 -#: woocommerce.php:857 -#: woocommerce.php:859 -msgid "Product Tags" -msgstr "Tags do produto" - -#: admin/woocommerce-admin-content.php:68 -#: admin/woocommerce-admin-dashboard.php:142 -#: woocommerce.php:1061 -msgid "Orders" -msgstr "Pedidos" - -#: admin/woocommerce-admin-dashboard.php:148 -msgid "Pending" -msgstr "Pendente" - -#: admin/woocommerce-admin-dashboard.php:162 -msgid "On-Hold" -msgstr "Aguardando" - -#: admin/post-types/shop_order.php:158 -#: admin/woocommerce-admin-dashboard.php:176 -msgid "Processing" -msgstr "Processando" - -#: admin/woocommerce-admin-dashboard.php:190 -msgid "Completed" -msgstr "Concluído" - -#: admin/woocommerce-admin-dashboard.php:40 -msgid "Monthly Sales" -msgstr "Vendas mensais" - -#: admin/woocommerce-admin-dashboard.php:239 -msgid "item" -msgid_plural "items" -msgstr[0] "Item" -msgstr[1] "Itens" - -#: admin/woocommerce-admin-dashboard.php:279 -#: classes/abstracts/abstract-wc-product.php:966 -#: templates/single-product/review.php:27 -#: templates/single-product-reviews.php:28 -msgid "out of 5" -msgstr "de 5" - -#: admin/woocommerce-admin-dashboard.php:287 -msgid "There are no product reviews yet." -msgstr "Este produto ainda não recebeu opiniões." - -#. translators: plugin header field 'Name' -#: admin/woocommerce-admin-content.php:83 -#: admin/woocommerce-admin-init.php:62 -#: admin/woocommerce-admin-init.php:71 -#: admin/woocommerce-admin-init.php:404 -#: classes/class-wc-order.php:1169 -#: classes/class-wc-order.php:1171 -#: classes/class-wc-order.php:1174 -#: woocommerce.php:0 -msgid "WooCommerce" -msgstr "WooCommerce" - -#: admin/includes/welcome.php:153 -#: admin/woocommerce-admin-content.php:41 -#: admin/woocommerce-admin-init.php:88 -#: admin/woocommerce-admin-status.php:289 -#: classes/abstracts/abstract-wc-email.php:562 -#: classes/abstracts/abstract-wc-integration.php:30 -#: classes/abstracts/abstract-wc-settings-api.php:39 -#: woocommerce.php:170 -msgid "Settings" -msgstr "Configurações" - -#: admin/woocommerce-admin-content.php:57 -#: admin/woocommerce-admin-init.php:64 -msgid "Reports" -msgstr "Relatórios" - -#: admin/woocommerce-admin-init.php:447 -msgid "Copy billing information to shipping information? This will remove any currently entered shipping information." -msgstr "Copiar informações de faturação para o endereço de entrega? Isto irá remover todas as informações de endereço de entrega existentes atualmente." - -#: admin/post-types/writepanels/writepanel-product_data.php:388 -msgid "Select terms" -msgstr "Selecione os termos" - -#: admin/post-types/product.php:520 -#, php-format -msgid "[%s with SKU of %s]" -msgstr "[%s com o código do produto %s]" - -#: admin/post-types/product.php:526 -#, php-format -msgid "[%s with ID of %d]" -msgstr "[%s com ID do %d]" - -#: admin/includes/duplicate_product.php:23 -msgid "No product to duplicate has been supplied!" -msgstr "Não foi selecionado um produto para ser duplicado!" - -#: admin/includes/duplicate_product.php:43 -msgid "Product creation failed, could not find original product:" -msgstr "Falha ao tentar criar o produto, não foi possível encontrar o produto original:" - -#: admin/post-types/product.php:31 -msgid "Make a duplicate from this product" -msgstr "Duplicar este produto" - -#: admin/post-types/product.php:32 -msgid "Duplicate" -msgstr "Duplicado" - -#: admin/post-types/product.php:61 -msgid "Copy to a new draft" -msgstr "Copiar para rascunho" - -#: admin/woocommerce-admin-install.php:195 -msgctxt "page_slug" -msgid "shop" -msgstr "loja" - -#: admin/woocommerce-admin-install.php:195 -msgid "Shop" -msgstr "Loja" - -#: admin/woocommerce-admin-install.php:198 -msgctxt "page_slug" -msgid "cart" -msgstr "carrinho" - -#: admin/woocommerce-admin-install.php:198 -#: admin/woocommerce-admin-status.php:314 -#: assets/js/admin/editor_plugin_lang.php:15 -#: classes/widgets/class-wc-widget-cart.php:61 -msgid "Cart" -msgstr "Carrinho" - -#: admin/woocommerce-admin-install.php:201 -msgctxt "page_slug" -msgid "checkout" -msgstr "finalizar-compra" - -#: admin/settings/settings-init.php:114 -#: admin/woocommerce-admin-install.php:201 -#: admin/woocommerce-admin-status.php:318 -#: assets/js/admin/editor_plugin_lang.php:16 -msgid "Checkout" -msgstr "Finalizar compras" - -#: admin/woocommerce-admin-install.php:204 -msgctxt "page_slug" -msgid "my-account" -msgstr "minha-conta" - -#: admin/woocommerce-admin-install.php:204 -#: admin/woocommerce-admin-status.php:330 -#: assets/js/admin/editor_plugin_lang.php:18 -#: templates/checkout/thankyou.php:30 -msgid "My Account" -msgstr "Minha conta" - -#: admin/woocommerce-admin-install.php:210 -msgctxt "page_slug" -msgid "edit-address" -msgstr "editar-endereco" - -#: admin/woocommerce-admin-install.php:210 -msgid "Edit My Address" -msgstr "Alterar o meu endereço" - -#: admin/woocommerce-admin-install.php:213 -msgctxt "page_slug" -msgid "view-order" -msgstr "visualizar-pedido" - -#: admin/woocommerce-admin-install.php:213 -#: admin/woocommerce-admin-status.php:338 -#: assets/js/admin/editor_plugin_lang.php:21 -#: woocommerce.php:1068 -#: woocommerce.php:1069 -msgid "View Order" -msgstr "Visualizar pedido" - -#: admin/woocommerce-admin-install.php:216 -msgctxt "page_slug" -msgid "change-password" -msgstr "alterar-senha" - -#: admin/woocommerce-admin-install.php:216 -#: admin/woocommerce-admin-status.php:342 -#: assets/js/admin/editor_plugin_lang.php:20 -msgid "Change Password" -msgstr "Alterar senha" - -#: admin/woocommerce-admin-install.php:222 -msgctxt "page_slug" -msgid "pay" -msgstr "pagar" - -#: admin/woocommerce-admin-install.php:222 -msgid "Checkout → Pay" -msgstr "Finalizar compra → Pagar" - -#: admin/woocommerce-admin-install.php:225 -msgctxt "page_slug" -msgid "order-received" -msgstr "pedido-recebido" - -#: admin/woocommerce-admin-functions.php:190 -#: admin/woocommerce-admin-install.php:225 -msgid "Order Received" -msgstr "Pedido recebido" - -#: admin/post-types/shop_coupon.php:25 -msgid "Code" -msgstr "Código" - -#: admin/post-types/shop_coupon.php:26 -msgid "Coupon type" -msgstr "Tipo de cupão" - -#: admin/post-types/shop_coupon.php:27 -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Coupon amount" -msgstr "Quantidade do cupão" - -#: admin/post-types/shop_coupon.php:29 -msgid "Product IDs" -msgstr "ID do Produto" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "Usage limit" -msgstr "Limite de uso" - -#: admin/post-types/shop_coupon.php:31 -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "Expiry date" -msgstr "Data de validade" - -#: woocommerce.php:998 -msgid "Parent Product" -msgstr "Produto principal" - -#: admin/post-types/product.php:86 -#: admin/woocommerce-admin-taxonomies.php:297 -msgid "Image" -msgstr "Imagem" - -#: admin/post-types/product.php:98 -msgid "Categories" -msgstr "Categorias" - -#: admin/post-types/product.php:99 -msgid "Tags" -msgstr "Tags" - -#: admin/post-types/product.php:100 -#: admin/post-types/product.php:632 -#: admin/post-types/product.php:906 -#: admin/post-types/writepanels/writepanel-product_data.php:1066 -#: admin/woocommerce-admin-init.php:450 -msgid "Featured" -msgstr "Destaque" - -#: admin/post-types/product.php:96 -#: admin/post-types/product.php:568 -#: admin/post-types/product.php:789 -#: admin/woocommerce-admin-functions.php:202 -#: templates/cart/cart.php:29 -#: templates/emails/admin-new-order.php:24 -#: templates/emails/customer-completed-order.php:25 -#: templates/emails/customer-invoice.php:29 -#: templates/emails/customer-note.php:29 -#: templates/emails/customer-processing-order.php:25 -msgid "Price" -msgstr "Preço" - -#: admin/post-types/product.php:102 -#: admin/post-types/shop_order.php:50 -#: templates/myaccount/my-orders.php:33 -msgid "Date" -msgstr "Data" - -#: admin/post-types/shop_order.php:131 -msgid "Unpublished" -msgstr "Não publicado" - -#: admin/post-types/shop_order.php:133 -msgid "Y/m/d g:i:s A" -msgstr "d/m/Y G:i:s" - -#: admin/post-types/shop_order.php:139 -#, php-format -msgid "%s ago" -msgstr "%s atrás" - -#: admin/post-types/shop_order.php:141 -msgid "Y/m/d" -msgstr "d/m/Y" - -#: admin/post-types/shop_order.php:43 -#: admin/settings/settings-payment-gateways.php:29 -#: admin/settings/settings-shipping-methods.php:33 -#: templates/myaccount/my-orders.php:34 -msgid "Status" -msgstr "Estado" - -#: admin/post-types/shop_order.php:44 -#: templates/myaccount/my-orders.php:32 -#: woocommerce.php:1062 -msgid "Order" -msgstr "Pedido" - -#: admin/post-types/shop_order.php:45 -msgid "Billing" -msgstr "Faturação" - -#: admin/post-types/shop_order.php:46 -#: admin/post-types/writepanels/writepanel-order_data.php:539 -#: admin/post-types/writepanels/writepanel-product_data.php:81 -#: admin/settings/settings-tax-rates.php:52 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-content.php:49 -#: admin/woocommerce-admin-settings.php:187 -#: templates/cart/totals.php:46 -#: templates/checkout/review-order.php:45 -msgid "Shipping" -msgstr "Envio" - -#: admin/post-types/shop_order.php:47 -#: templates/cart/totals.php:92 -#: templates/checkout/review-order.php:91 -msgid "Order Total" -msgstr "Total do pedido" - -#: admin/post-types/shop_order.php:95 -#: admin/post-types/writepanels/writepanel-order_data.php:93 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:120 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:178 -#: woocommerce-ajax.php:1654 -msgid "Guest" -msgstr "Visitante" - -#: admin/post-types/shop_order.php:282 -msgid "Show all statuses" -msgstr "Mostrar todos os estados" - -#: admin/post-types/shop_order.php:301 -#: admin/post-types/shop_order.php:326 -msgid "Show all customers" -msgstr "Mostrar todos os clientes" - -#: woocommerce-ajax.php:256 -#: woocommerce-ajax.php:290 -#: woocommerce-ajax.php:313 -msgid "You do not have sufficient permissions to access this page." -msgstr "Você não tem permissão suficiente para aceder a esta página." - -#: woocommerce-ajax.php:258 -#: woocommerce-ajax.php:291 -#: woocommerce-ajax.php:314 -msgid "You have taken too long. Please go back and retry." -msgstr "Você ficou muito tempo sem atividade, por segurança a sua sessão foi encerrada. Por favor, tente novamente." - -#: admin/woocommerce-admin-content.php:26 -#: admin/woocommerce-admin-reports.php:26 -#: admin/woocommerce-admin-reports.php:66 -#: admin/woocommerce-admin-reports.php:82 -#: admin/woocommerce-admin-reports.php:93 -msgid "Overview" -msgstr "Visão geral" - -#: admin/woocommerce-admin-reports.php:42 -msgid "Product Sales" -msgstr "Venda de produtos" - -#: admin/woocommerce-admin-reports.php:47 -msgid "Top sellers" -msgstr "Mais vendidos" - -#: admin/woocommerce-admin-reports.php:52 -msgid "Top earners" -msgstr "Top consumidores" - -#: admin/woocommerce-admin-reports.php:381 -msgid "Total sales" -msgstr "Total de vendas" - -#: admin/woocommerce-admin-reports.php:383 -#: admin/woocommerce-admin-reports.php:389 -#: admin/woocommerce-admin-reports.php:395 -#: admin/woocommerce-admin-reports.php:401 -#: admin/woocommerce-admin-reports.php:407 -#: admin/woocommerce-admin-reports.php:413 -#: admin/woocommerce-admin-reports.php:656 -#: admin/woocommerce-admin-reports.php:662 -#: admin/woocommerce-admin-reports.php:668 -#: admin/woocommerce-admin-reports.php:674 -#: admin/woocommerce-admin-reports.php:840 -#: admin/woocommerce-admin-reports.php:846 -#: admin/woocommerce-admin-reports.php:852 -#: admin/woocommerce-admin-reports.php:858 -#: admin/woocommerce-admin-reports.php:1381 -#: admin/woocommerce-admin-reports.php:1387 -#: admin/woocommerce-admin-reports.php:1393 -#: admin/woocommerce-admin-reports.php:1827 -#: admin/woocommerce-admin-reports.php:1833 -#: admin/woocommerce-admin-reports.php:1839 -#: admin/woocommerce-admin-reports.php:1845 -#: admin/woocommerce-admin-reports.php:1851 -#: admin/woocommerce-admin-reports.php:1857 -#: admin/woocommerce-admin-reports.php:2321 -#: admin/woocommerce-admin-reports.php:2332 -#: admin/woocommerce-admin-reports.php:2343 -msgid "n/a" -msgstr "n/a" - -#: admin/woocommerce-admin-reports.php:387 -msgid "Total orders" -msgstr "Total de pedidos" - -#: admin/woocommerce-admin-reports.php:393 -msgid "Average order total" -msgstr "Média total de vendas" - -#: admin/woocommerce-admin-reports.php:399 -msgid "Average order items" -msgstr "Média de itens por pedido" - -#: admin/woocommerce-admin-reports.php:648 -#: admin/woocommerce-admin-reports.php:992 -#: admin/woocommerce-admin-reports.php:1090 -#: admin/woocommerce-admin-reports.php:1373 -msgid "From:" -msgstr "De:" - -#: admin/woocommerce-admin-reports.php:648 -#: admin/woocommerce-admin-reports.php:992 -#: admin/woocommerce-admin-reports.php:1090 -#: admin/woocommerce-admin-reports.php:1373 -msgid "To:" -msgstr "Para:" - -#: admin/woocommerce-admin-reports.php:648 -#: admin/woocommerce-admin-reports.php:833 -#: admin/woocommerce-admin-reports.php:992 -#: admin/woocommerce-admin-reports.php:1090 -#: admin/woocommerce-admin-reports.php:1246 -#: admin/woocommerce-admin-reports.php:1373 -#: admin/woocommerce-admin-reports.php:1506 -#: admin/woocommerce-admin-reports.php:2310 -#: admin/woocommerce-admin-reports.php:2493 -msgid "Show" -msgstr "Mostrar" - -#: admin/woocommerce-admin-reports.php:654 -msgid "Total sales in range" -msgstr "Média total de vendas" - -#: admin/woocommerce-admin-reports.php:660 -msgid "Total orders in range" -msgstr "Total médio de pedidos" - -#: admin/woocommerce-admin-reports.php:666 -msgid "Average order total in range" -msgstr "Total médio de pedidos na faixa" - -#: admin/woocommerce-admin-reports.php:672 -msgid "Average order items in range" -msgstr "Média de itens do pedido na faixa" - -#: admin/woocommerce-admin-reports.php:680 -msgid "Sales in range" -msgstr "Faixa de pedidos" - -#: admin/woocommerce-admin-reports.php:827 -#: admin/woocommerce-admin-reports.php:2304 -msgid "Year:" -msgstr "Ano:" - -#: admin/woocommerce-admin-reports.php:838 -msgid "Total sales for year" -msgstr "Total de vendas do ano" - -#: admin/woocommerce-admin-reports.php:844 -msgid "Total orders for year" -msgstr "Total de pedidos do ano" - -#: admin/woocommerce-admin-reports.php:850 -msgid "Average order total for year" -msgstr "Média total de pedidos do ano" - -#: admin/woocommerce-admin-reports.php:856 -msgid "Average order items for year" -msgstr "Média de itens por pedido do ano" - -#: admin/woocommerce-admin-reports.php:864 -msgid "Monthly sales for year" -msgstr "Vendas mensais do ano" - -#: admin/woocommerce-admin-content.php:60 -#: admin/woocommerce-admin-reports.php:23 -#: admin/woocommerce-admin-reports.php:998 -#: admin/woocommerce-admin-reports.php:1096 -#: admin/woocommerce-admin-reports.php:1215 -msgid "Sales" -msgstr "Vendas" - -#: admin/woocommerce-admin-reports.php:1012 -msgid "Product does not exist" -msgstr "Este produto não existe" - -#: admin/woocommerce-admin-reports.php:1214 -#: admin/woocommerce-admin-reports.php:2352 -msgid "Month" -msgstr "Mês" - -#: admin/woocommerce-admin-reports.php:1236 -msgid "No sales :(" -msgstr "Nenhuma venda :(" - -#: admin/woocommerce-admin-reports.php:1825 -msgid "Total customers" -msgstr "Total de clientes" - -#: admin/woocommerce-admin-reports.php:1831 -msgid "Total customer sales" -msgstr "Total de vendas clientes" - -#: admin/woocommerce-admin-reports.php:1837 -msgid "Total guest sales" -msgstr "Total de vendas para desconhecidos" - -#: admin/woocommerce-admin-reports.php:1843 -msgid "Total customer orders" -msgstr "Total de pedidos para clientes" - -#: admin/woocommerce-admin-reports.php:1849 -msgid "Total guest orders" -msgstr "Total pedidos de desconhecidos" - -#: admin/woocommerce-admin-reports.php:1855 -msgid "Average orders per customer" -msgstr "Média de pedidos por cliente" - -#: admin/woocommerce-admin-reports.php:1863 -msgid "Signups per day" -msgstr "Registos por dia" - -#: admin/woocommerce-admin-reports.php:2084 -msgid "Low stock" -msgstr "Stock baixo" - -#: admin/woocommerce-admin-reports.php:2112 -msgid "No products are low in stock." -msgstr "Nenhum produto abaixo do stock." - -#: admin/post-types/product.php:264 -#: admin/post-types/product.php:642 -#: admin/post-types/product.php:931 -#: admin/post-types/writepanels/writepanel-product_data.php:232 -#: admin/woocommerce-admin-reports.php:2120 -#: classes/abstracts/abstract-wc-product.php:573 -#: classes/abstracts/abstract-wc-product.php:583 -#: classes/abstracts/abstract-wc-product.php:587 -msgid "Out of stock" -msgstr "Fora de stock" - -#: admin/woocommerce-admin-reports.php:2151 -msgid "No products are out in stock." -msgstr "Nenhum produto fora de stock." - -#: admin/post-types/product.php:602 -#: admin/post-types/product.php:880 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:85 -#: admin/post-types/writepanels/writepanel-product_data.php:287 -#: admin/woocommerce-admin-settings.php:798 -msgid "Width" -msgstr "Largura" - -#: admin/post-types/product.php:603 -#: admin/post-types/product.php:881 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:86 -#: admin/post-types/writepanels/writepanel-product_data.php:288 -#: admin/woocommerce-admin-settings.php:800 -msgid "Height" -msgstr "Altura" - -#: admin/woocommerce-admin-settings.php:802 -msgid "Hard Crop" -msgstr "Forçar corte" - -#: admin/settings/settings-init.php:33 -msgid "General Options" -msgstr "Opções Gerais" - -#: admin/settings/settings-init.php:58 -msgid "Allowed Countries" -msgstr "Países Permitidos" - -#: admin/settings/settings-init.php:59 -msgid "These are countries that you are willing to ship to." -msgstr "Estes são os países para os quais você pode enviar produtos." - -#: admin/settings/settings-init.php:67 -msgid "All Countries" -msgstr "Todos os Países" - -#: admin/settings/settings-init.php:68 -#: admin/settings/settings-init.php:73 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:95 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:99 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:98 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:149 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:153 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:103 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:107 -msgid "Specific Countries" -msgstr "Países Específicos" - -#: classes/integrations/sharethis/class-wc-sharethis.php:77 -msgid "ShareThis Publisher ID" -msgstr "ID do editor ShareThis" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:63 -msgid "Google Analytics ID" -msgstr "ID do Google Analytics" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:64 -msgid "Log into your google analytics account to find your ID. e.g. UA-XXXXX-X" -msgstr "Entre na sua conta do Google Analytics para encontrar o seu ID. por exemplo UA-XXXXX-X" - -#: admin/settings/settings-init.php:290 -msgid "Page Setup" -msgstr "Configurar Página" - -#: admin/settings/settings-init.php:297 -msgid "Shop Base Page" -msgstr "Página principal da loja" - -#: admin/settings/settings-init.php:309 -msgid "If you define a \"Terms\" page the customer will be asked if they accept them when checking out." -msgstr "Se você definir uma página de \"Termos de uso\" será perguntado ao cliente se ele aceita os termos antes de finalizar a compra." - -#: admin/post-types/writepanels/writepanel-product_data.php:181 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:112 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:86 -msgid "None" -msgstr "Nenhum" - -#: admin/settings/settings-init.php:320 -msgid "Shop Pages" -msgstr "Páginas da loja" - -#: admin/settings/settings-init.php:323 -msgid "Cart Page" -msgstr "Página do Carrinho" - -#: admin/settings/settings-init.php:324 -msgid "Page contents: [woocommerce_cart]" -msgstr "Conteúdo da página: [woocommerce_cart]" - -#: admin/settings/settings-init.php:334 -msgid "Checkout Page" -msgstr "Página de Finalizar Compra" - -#: admin/settings/settings-init.php:335 -msgid "Page contents: [woocommerce_checkout]" -msgstr "Conteúdo da página: [woocommerce_checkout]" - -#: admin/settings/settings-init.php:345 -msgid "Pay Page" -msgstr "Página de Pagamento" - -#: admin/settings/settings-init.php:346 -msgid "Page contents: [woocommerce_pay] Parent: \"Checkout\"" -msgstr "Conteúdo da página: [woocommerce_pay] Pai: \"finalizar compra\"" - -#: admin/settings/settings-init.php:356 -msgid "Thanks Page" -msgstr "Página de Confirmação da Compra" - -#: admin/settings/settings-init.php:357 -msgid "Page contents: [woocommerce_thankyou] Parent: \"Checkout\"" -msgstr "Conteúdo da página: [woocommerce_thankyou] Pai: \"Finalizar compra\"" - -#: admin/settings/settings-init.php:367 -msgid "My Account Page" -msgstr "Página Minha Conta" - -#: admin/settings/settings-init.php:368 -msgid "Page contents: [woocommerce_my_account]" -msgstr "Conteúdo da página: [woocommerce_my_account]" - -#: admin/settings/settings-init.php:378 -msgid "Edit Address Page" -msgstr "Página Editar Endereço" - -#: admin/settings/settings-init.php:379 -msgid "Page contents: [woocommerce_edit_address] Parent: \"My Account\"" -msgstr "Conteúdo da página: [woocommerce_edit_address] pai: \"Minha Conta\"" - -#: admin/settings/settings-init.php:389 -msgid "View Order Page" -msgstr "Ver Página de Pedidos" - -#: admin/settings/settings-init.php:390 -msgid "Page contents: [woocommerce_view_order] Parent: \"My Account\"" -msgstr "Conteúdo da página: [woocommerce_view_order] pai: \"Minha Conta\"" - -#: admin/settings/settings-init.php:400 -msgid "Change Password Page" -msgstr "Página Alterar Senha" - -#: admin/settings/settings-init.php:401 -msgid "Page contents: [woocommerce_change_password] Parent: \"My Account\"" -msgstr "Conteúdo da página: [woocommerce_change_password] pai: \"Minha Conta\"" - -#: admin/settings/settings-init.php:439 -msgid "Catalog Options" -msgstr "Opções de catálogo" - -#: admin/settings/settings-init.php:544 -msgid "Weight Unit" -msgstr "Unidade de peso" - -#: admin/settings/settings-init.php:545 -msgid "This controls what unit you will define weights in." -msgstr "Isto controla qual unidade de peso será utilizada" - -#: admin/settings/settings-init.php:551 -msgid "kg" -msgstr "kg" - -#: admin/settings/settings-init.php:553 -msgid "lbs" -msgstr "lbs" - -#: admin/settings/settings-init.php:560 -msgid "Dimensions Unit" -msgstr "Unidades de medida" - -#: admin/settings/settings-init.php:561 -msgid "This controls what unit you will define lengths in." -msgstr "Isto controla qual unidade de tamanho será utilizada" - -#: admin/settings/settings-init.php:568 -msgid "cm" -msgstr "cm" - -#: admin/settings/settings-init.php:570 -msgid "in" -msgstr "in" - -#: admin/settings/settings-init.php:606 -msgid "Pricing Options" -msgstr "Opções de preços" - -#: admin/settings/settings-init.php:46 -msgid "Currency" -msgstr "Moeda" - -#: woocommerce-core-functions.php:718 -msgid "Danish Krone" -msgstr "Coroa Dinamarquesa" - -#: woocommerce-core-functions.php:721 -msgid "Hungarian Forint" -msgstr "Florim Húngaro" - -#: woocommerce-core-functions.php:724 -msgid "Israeli Shekel" -msgstr "Novo Shekel Israelita" - -#: woocommerce-core-functions.php:729 -msgid "Norwegian Krone" -msgstr "Coroa Norueguesa" - -#: woocommerce-core-functions.php:731 -msgid "Philippine Pesos" -msgstr "Peso Filipino" - -#: woocommerce-core-functions.php:732 -msgid "Polish Zloty" -msgstr "Zloty Polaco" - -#: woocommerce-core-functions.php:738 -msgid "Swedish Krona" -msgstr "Coroa Sueca" - -#: woocommerce-core-functions.php:739 -msgid "Swiss Franc" -msgstr "Franco Suíço" - -#: woocommerce-core-functions.php:740 -msgid "Taiwan New Dollars" -msgstr "Novo Dólar Taiwanês" - -#: woocommerce-core-functions.php:741 -msgid "Thai Baht" -msgstr "Baht Tailandês" - -#: admin/settings/settings-init.php:609 -msgid "Currency Position" -msgstr "Posição da moeda" - -#: admin/settings/settings-init.php:610 -msgid "This controls the position of the currency symbol." -msgstr "Isto controla a posição do simbolo monetário." - -#: admin/settings/settings-init.php:616 -msgid "Left" -msgstr "Esquerda" - -#: admin/settings/settings-init.php:617 -msgid "Right" -msgstr "Direita" - -#: admin/settings/settings-init.php:618 -msgid "Left (with space)" -msgstr "Esquerda (com espaço)" - -#: admin/settings/settings-init.php:619 -msgid "Right (with space)" -msgstr "Direita (com espaço)" - -#: admin/settings/settings-init.php:626 -msgid "This sets the thousand separator of displayed prices." -msgstr "Isto define o simbolo que separa a casa dos milhares nos preços." - -#: admin/settings/settings-init.php:636 -msgid "This sets the decimal separator of displayed prices." -msgstr "Isto define o simbolo exibido na casa decimal nos preços." - -#: admin/settings/settings-init.php:646 -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "Isso define o número de casas decimais mostrado nos preços apresentados." - -#: admin/settings/settings-init.php:668 -msgid "Image Options" -msgstr "Opções de imagem" - -#: admin/settings/settings-init.php:671 -msgid "Catalog Images" -msgstr "Catálogo de imagens" - -#: admin/settings/settings-init.php:672 -msgid "This size is usually used in product listings" -msgstr "O tamanho é usualmente usado na lista de produtos" - -#: admin/settings/settings-init.php:685 -msgid "Single Product Image" -msgstr "Imagem do produto" - -#: admin/settings/settings-init.php:686 -msgid "This is the size used by the main image on the product page." -msgstr "Isto é o tamanho usado pela imagem padrão na página do produto." - -#: admin/settings/settings-init.php:699 -msgid "Product Thumbnails" -msgstr "Imagem miniatura do produto" - -#: admin/settings/settings-init.php:700 -msgid "This size is usually used for the gallery of images on the product page." -msgstr "Isto é utilizado no tamanho das imagens exibidas na galeria de imagens da página do produto." - -#: admin/settings/settings-init.php:719 -msgid "Inventory Options" -msgstr "Opções de inventário" - -#: admin/settings/settings-init.php:723 -msgid "Enable stock management" -msgstr "Habilitar a gestão de stock" - -#: admin/settings/settings-init.php:743 -msgid "Notifications" -msgstr "Notificações" - -#: admin/settings/settings-init.php:744 -msgid "Enable low stock notifications" -msgstr "Habilitar notificações de \"stock baixo\"" - -#: admin/settings/settings-init.php:752 -msgid "Enable out of stock notifications" -msgstr "Habilitar notificações de \"fora de stock\"" - -#: admin/settings/settings-init.php:795 -msgid "Hide out of stock items from the catalog" -msgstr "Ocultar itens fora de stock no catálogo" - -#: admin/settings/settings-init.php:823 -#: admin/woocommerce-admin-settings.php:292 -msgid "Shipping Options" -msgstr "Opções de entrega" - -#: admin/settings/settings-init.php:835 -msgid "Enable the shipping calculator on the cart page" -msgstr "Permitir a calculadora de expedição na página do carrinho" - -#: admin/settings/settings-init.php:866 -msgid "Only ship to the users billing address" -msgstr "Enviar somente para o endereço de faturação do cliente" - -#: admin/settings/settings-init.php:918 -#: admin/woocommerce-admin-settings.php:222 -msgid "Tax Options" -msgstr "Opções de impostos" - -#: admin/settings/settings-init.php:922 -msgid "Enable taxes and tax calculations" -msgstr "Habilitar cálculo de taxas e impostos" - -#: admin/woocommerce-admin-settings.php:45 -#: woocommerce.php:1759 -msgid "Action failed. Please refresh the page and retry." -msgstr "Falha. Por favor, atualize a página e tente novamente." - -#: admin/woocommerce-admin-settings.php:164 -msgid "Your settings have been saved." -msgstr "As suas configurações foram salvas." - -#: admin/post-types/writepanels/writepanel-product_data.php:77 -#: admin/woocommerce-admin-content.php:44 -#: admin/woocommerce-admin-settings.php:182 -msgid "General" -msgstr "Geral" - -#: admin/woocommerce-admin-content.php:45 -#: admin/woocommerce-admin-settings.php:184 -#: assets/js/admin/editor_plugin_lang.php:14 -msgid "Pages" -msgstr "Páginas" - -#: admin/post-types/product.php:619 -#: admin/post-types/product.php:894 -#: admin/post-types/writepanels/writepanel-product_data.php:1055 -#: admin/woocommerce-admin-content.php:46 -#: admin/woocommerce-admin-settings.php:183 -msgid "Catalog" -msgstr "Catálogo" - -#: admin/post-types/writepanels/writepanel-product_data.php:79 -#: admin/woocommerce-admin-content.php:47 -#: admin/woocommerce-admin-settings.php:185 -msgid "Inventory" -msgstr "Inventário" - -#: admin/post-types/writepanels/writepanel-order_data.php:352 -#: admin/settings/settings-tax-rates.php:387 -#: admin/settings/settings-tax-rates.php:475 -#: admin/woocommerce-admin-content.php:48 -#: admin/woocommerce-admin-settings.php:186 -#: classes/class-wc-countries.php:444 -msgid "Tax" -msgstr "Imposto" - -#: admin/settings/settings-shipping-methods.php:25 -msgid "Shipping Methods" -msgstr "Métodos de expedição" - -#: admin/settings/settings-init.php:900 -#: admin/woocommerce-admin-settings.php:188 -#: admin/woocommerce-admin-settings.php:329 -msgid "Payment Gateways" -msgstr "Gateways de pagamento" - -#: admin/woocommerce-admin-settings.php:388 -#: classes/integrations/shareyourcart/views/admin-page.php:110 -#: classes/integrations/shareyourcart/views/button-settings-page.php:120 -msgid "Save changes" -msgstr "Salve as alterações" - -#: admin/woocommerce-admin-settings.php:429 -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "As alterações feitas serão perdidas se você sair desta página." - -#: admin/woocommerce-admin-taxonomies.php:34 -#: admin/woocommerce-admin-taxonomies.php:129 -msgid "Thumbnail" -msgstr "Miniatura" - -#: admin/woocommerce-admin-taxonomies.php:38 -#: admin/woocommerce-admin-taxonomies.php:134 -msgid "Upload/Add image" -msgstr "Upload/Adicionar imagem" - -#: admin/woocommerce-admin-taxonomies.php:39 -#: admin/woocommerce-admin-taxonomies.php:135 -msgid "Remove image" -msgstr "Remover imagem" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:42 -msgid "Discount type" -msgstr "Tipo de desconto" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:523 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:524 -msgid "0.00" -msgstr "0.00" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "Individual use" -msgstr "Uso individual" - -#: admin/post-types/writepanels/order-fee-html.php:19 -#: admin/post-types/writepanels/order-tax-html.php:8 -#: admin/post-types/writepanels/writepanel-order_data.php:561 -#: admin/post-types/writepanels/writepanel-order_data.php:666 -#: admin/woocommerce-admin-reports.php:1659 -#: admin/woocommerce-admin-reports.php:2672 -#: admin/woocommerce-admin-reports.php:2681 -#: admin/woocommerce-admin-users.php:90 -#: admin/woocommerce-admin-users.php:112 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:499 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:500 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:110 -#: templates/order/order-details.php:119 -#: templates/order/order-details.php:134 -msgid "N/A" -msgstr "N/A" - -#: admin/post-types/writepanels/writepanels-init.php:100 -#: templates/checkout/form-coupon.php:25 -msgid "Coupon code" -msgstr "Código do cupão" - -#: admin/woocommerce-admin-users.php:144 -msgid "Customer Billing Address" -msgstr "Endereço de faturação do cliente" - -#: admin/woocommerce-admin-users.php:193 -msgid "Customer Shipping Address" -msgstr "Endereço para envio ao cliente" - -#: admin/post-types/writepanels/writepanel-order_data.php:76 -msgid "Order status:" -msgstr "Estado do pedido:" - -#: admin/post-types/writepanels/writepanel-order_data.php:91 -msgid "Customer:" -msgstr "Cliente:" - -#: admin/post-types/writepanels/writepanel-order_data.php:131 -msgid "Customer Note:" -msgstr "Nota do cliente:" - -#: admin/post-types/writepanels/writepanel-order_data.php:132 -msgid "Customer's notes about the order" -msgstr "Nota do cliente sobre o pedido" - -#: admin/post-types/writepanels/writepanel-order_data.php:144 -#: admin/post-types/writepanels/writepanel-order_data.php:234 -#: classes/class-wc-countries.php:683 -msgid "First Name" -msgstr "Primeiro nome" - -#: admin/post-types/writepanels/writepanel-order_data.php:148 -#: admin/post-types/writepanels/writepanel-order_data.php:238 -#: classes/class-wc-countries.php:688 -msgid "Last Name" -msgstr "Apelido" - -#: admin/post-types/writepanels/writepanel-order_data.php:152 -#: admin/post-types/writepanels/writepanel-order_data.php:242 -#: admin/woocommerce-admin-users.php:155 -#: admin/woocommerce-admin-users.php:204 -msgid "Company" -msgstr "Empresa" - -#: admin/post-types/writepanels/writepanel-order_data.php:156 -#: admin/post-types/writepanels/writepanel-order_data.php:246 -#: admin/woocommerce-admin-users.php:159 -#: admin/woocommerce-admin-users.php:208 -msgid "Address 1" -msgstr "Endereço (linha 1)" - -#: admin/post-types/writepanels/writepanel-order_data.php:160 -#: admin/post-types/writepanels/writepanel-order_data.php:250 -#: admin/woocommerce-admin-users.php:163 -#: admin/woocommerce-admin-users.php:212 -msgid "Address 2" -msgstr "Endereço (linha 2)" - -#: admin/post-types/writepanels/writepanel-order_data.php:164 -#: admin/post-types/writepanels/writepanel-order_data.php:254 -#: admin/settings/settings-tax-rates.php:42 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-users.php:167 -#: admin/woocommerce-admin-users.php:216 -#: templates/cart/shipping-calculator.php:72 -msgid "City" -msgstr "Cidade" - -#: admin/post-types/writepanels/writepanel-order_data.php:168 -#: admin/post-types/writepanels/writepanel-order_data.php:258 -#: admin/woocommerce-admin-users.php:171 -#: admin/woocommerce-admin-users.php:220 -#: classes/class-wc-countries.php:970 -msgid "Postcode" -msgstr "Código Postal" - -#: admin/post-types/writepanels/writepanel-order_data.php:172 -#: admin/post-types/writepanels/writepanel-order_data.php:262 -#: admin/woocommerce-admin-users.php:179 -#: admin/woocommerce-admin-users.php:228 -#: classes/class-wc-countries.php:678 -msgid "Country" -msgstr "País" - -#: admin/post-types/writepanels/writepanel-order_data.php:178 -#: admin/post-types/writepanels/writepanel-order_data.php:268 -#: admin/woocommerce-admin-users.php:175 -#: admin/woocommerce-admin-users.php:224 -msgid "State/County" -msgstr "Estado/País" - -#: classes/class-wc-countries.php:1074 -msgid "Email Address" -msgstr "Endereço de email" - -#: admin/woocommerce-admin-functions.php:201 -#: templates/cart/cart.php:30 -#: templates/emails/admin-new-order.php:23 -#: templates/emails/customer-completed-order.php:24 -#: templates/emails/customer-invoice.php:28 -#: templates/emails/customer-note.php:28 -#: templates/emails/customer-processing-order.php:24 -msgid "Quantity" -msgstr "Quantidade" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:486 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:100 -msgid "Cost" -msgstr "Custo" - -#: admin/post-types/writepanels/variation-admin-html.php:6 -#: admin/post-types/writepanels/writepanel-product_data.php:370 -#: admin/post-types/writepanels/writepanel-product_data.php:464 -#: admin/woocommerce-admin-init.php:438 -msgid "Remove" -msgstr "Remover" - -#: admin/post-types/writepanels/order-item-html.php:10 -msgid "Product ID:" -msgstr "ID do produto:" - -#: admin/post-types/writepanels/order-item-html.php:13 -msgid "Variation ID:" -msgstr "ID de variação:" - -#: admin/post-types/writepanels/order-item-html.php:16 -msgid "Product SKU:" -msgstr "Produto REF:" - -#: admin/post-types/writepanels/order-item-html.php:44 -msgid "Add meta" -msgstr "Adicionar meta" - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save Order" -msgstr "Salvar pedido" - -#: admin/post-types/product.php:160 -#: admin/post-types/shop_coupon.php:69 -#: admin/post-types/writepanels/writepanel-order_data.php:463 -msgid "Delete Permanently" -msgstr "Excluir permanentemente" - -#: admin/post-types/writepanels/writepanel-order_data.php:465 -msgid "Move to Trash" -msgstr "Mover para o lixo" - -#: admin/post-types/writepanels/writepanel-order_data.php:552 -#: classes/class-wc-countries.php:470 -msgid "(ex. tax)" -msgstr "(sem imposto)" - -#: admin/woocommerce-admin-dashboard.php:239 -#: classes/shortcodes/class-wc-shortcode-pay.php:98 -#: templates/checkout/thankyou.php:48 -msgid "Total:" -msgstr "Total:" - -#: classes/class-wc-order.php:1460 -#: woocommerce-ajax.php:1093 -#: woocommerce-ajax.php:1094 -#, php-format -msgid "Item #%s stock reduced from %s to %s." -msgstr "Item #%s stock reduzido de %s para %s." - -#: woocommerce-ajax.php:1146 -#: woocommerce-ajax.php:1147 -#, php-format -msgid "Item #%s stock increased from %s to %s." -msgstr "Item #%s stock aumentado de %s para %s." - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -#, php-format -msgid "added %s ago" -msgstr "adicionado %s atrás" - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -#: woocommerce-ajax.php:1487 -msgid "Delete note" -msgstr "Remover nota" - -#: admin/post-types/writepanels/writepanel-order_notes.php:50 -msgid "There are no notes for this order yet." -msgstr "Não existem notas para este pedido." - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "Add note" -msgstr "Adicionar nota" - -#: admin/post-types/writepanels/writepanel-order_notes.php:62 -#: classes/emails/class-wc-email-customer-note.php:29 -msgid "Customer note" -msgstr "Notas do cliente" - -#: admin/post-types/writepanels/writepanel-order_notes.php:63 -msgid "Private note" -msgstr "Nota privada" - -#: admin/post-types/writepanels/writepanel-order_notes.php:65 -#: admin/post-types/writepanels/writepanel-product_data.php:503 -msgid "Add" -msgstr "Adicionar" - -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Download Limit" -msgstr "Limite de download" - -#: admin/post-types/writepanels/variation-admin-html.php:150 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Leave blank for unlimited re-downloads." -msgstr "Deixe em branco para permitir downloads ilimitados." - -#: admin/post-types/product.php:222 -#: admin/post-types/product.php:403 -#: admin/post-types/writepanels/variation-admin-html.php:174 -#: admin/post-types/writepanels/writepanel-product_data.php:58 -msgid "Downloadable" -msgstr "Descarregar/Download" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -msgid "Bulk edit:" -msgstr "Edição em massa:" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:214 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:271 -#: templates/single-product/meta.php:19 -msgid "SKU:" -msgstr "REF:" - -#: admin/post-types/product.php:588 -#: admin/post-types/product.php:839 -#: admin/post-types/writepanels/variation-admin-html.php:96 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:83 -#: admin/post-types/writepanels/writepanel-product_data.php:273 -#: templates/single-product/product-attributes.php:28 -msgid "Weight" -msgstr "Peso" - -#: admin/post-types/writepanels/variation-admin-html.php:63 -msgid "Stock Qty:" -msgstr "Quantidade em stock:" - -#: classes/widgets/class-wc-widget-price-filter.php:144 -msgid "Price:" -msgstr "Preço:" - -#: admin/post-types/writepanels/variation-admin-html.php:76 -msgid "Sale Price:" -msgstr "Preço de venda:" - -#: admin/post-types/writepanels/variation-admin-html.php:172 -msgid "Enabled" -msgstr "Habilitado" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:194 -#: woocommerce.php:1025 -msgid "Add Variation" -msgstr "Adicionar variação" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:196 -msgid "Link all variations" -msgstr "Linkar todas as variações" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:344 -msgid "Are you sure you want to remove this variation?" -msgstr "Tem certeza de que deseja remover esta variação?" - -#: admin/post-types/product.php:220 -#: admin/post-types/product.php:407 -#: admin/post-types/writepanels/variation-admin-html.php:176 -#: admin/post-types/writepanels/writepanel-product_data.php:52 -msgid "Virtual" -msgstr "Virtual" - -#: admin/post-types/writepanels/writepanel-product_data.php:539 -msgid "Up-sells are products which you recommend instead of the currently viewed product, for example, products that are more profitable or better quality or more expensive." -msgstr "Aumenta vendas, são produtos que você deseja recomendar durante a visualização de um produto. Por exemplo: Produtos mais rentáveis, com maior qualidade ou mais recomendados." - -#: admin/post-types/writepanels/writepanel-product_data.php:557 -msgid "Cross-sells are products which you promote in the cart, based on the current product." -msgstr "Venda cruzada, são produtos que você promove no carrinho, com base nos produtos atuais." - -#: admin/post-types/writepanels/writepanel-product_data.php:567 -msgid "Choose a grouped product…" -msgstr "Escolha o produto agrupado" - -#: admin/post-types/writepanels/writepanel-product_data.php:593 -msgid "Grouping" -msgstr "Agrupando" - -#: admin/post-types/product.php:91 -#: admin/post-types/product.php:557 -#: admin/post-types/writepanels/variation-admin-html.php:52 -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#: admin/woocommerce-admin-reports.php:2100 -#: admin/woocommerce-admin-reports.php:2136 -msgid "SKU" -msgstr "REF" - -#: admin/post-types/writepanels/writepanel-product_data.php:119 -msgid "Regular Price" -msgstr "Preço normal" - -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Sale Price" -msgstr "Preço de oferta" - -#: admin/post-types/writepanels/writepanel-product_data.php:135 -msgid "Sale Price Dates" -msgstr "Datas da oferta" - -#: admin/post-types/writepanels/writepanel-product_data.php:284 -#: templates/single-product/product-attributes.php:37 -msgid "Dimensions" -msgstr "Dimensões (C x L x A)" - -#: admin/post-types/product.php:601 -#: admin/post-types/product.php:879 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:286 -msgid "Length" -msgstr "Comprimento" - -#: admin/post-types/writepanels/writepanel-product_data.php:178 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:107 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:81 -msgid "Tax Status" -msgstr "Situação Fiscal" - -#: admin/post-types/writepanels/order-fee-html.php:20 -#: admin/post-types/writepanels/writepanel-product_data.php:179 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:111 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:85 -msgid "Taxable" -msgstr "Tributável" - -#: admin/post-types/writepanels/writepanel-product_data.php:180 -msgid "Shipping only" -msgstr "Somente transporte" - -#: admin/post-types/writepanels/order-fee-html.php:25 -#: admin/post-types/writepanels/order-item-html.php:96 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:53 -#: admin/post-types/writepanels/writepanel-product_data.php:186 -#: admin/settings/settings-init.php:972 -#: admin/settings/settings-tax-rates.php:29 -#: admin/woocommerce-admin-settings.php:228 -#: woocommerce-ajax.php:551 -msgid "Standard" -msgstr "Padrão" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#: admin/post-types/writepanels/writepanel-product_data.php:191 -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Class" -msgstr "Classe de impostos" - -#: admin/post-types/product.php:657 -#: admin/post-types/product.php:942 -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Manage stock?" -msgstr "Gerenciar stock?" - -#: admin/post-types/writepanels/writepanel-product_data.php:230 -msgid "Stock status" -msgstr "Estado do stock" - -#: admin/post-types/product.php:262 -#: admin/post-types/product.php:641 -#: admin/post-types/product.php:930 -#: admin/post-types/writepanels/writepanel-product_data.php:231 -#: classes/abstracts/abstract-wc-product.php:546 -#: classes/abstracts/abstract-wc-product.php:551 -#: classes/abstracts/abstract-wc-product.php:570 -msgid "In stock" -msgstr "Em stock" - -#: admin/post-types/product.php:661 -#: admin/post-types/product.php:961 -#: admin/post-types/product.php:977 -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "Stock Qty" -msgstr "Quantidade de stock" - -#: admin/post-types/writepanels/writepanel-product_data.php:240 -msgid "Allow Backorders?" -msgstr "Permitir ordens pendentes?" - -#: admin/post-types/writepanels/writepanel-product_data.php:241 -msgid "Do not allow" -msgstr "Não permitir" - -#: admin/post-types/writepanels/writepanel-product_data.php:242 -msgid "Allow, but notify customer" -msgstr "Permitir, mas informar o cliente" - -#: admin/post-types/writepanels/writepanel-product_data.php:243 -msgid "Allow" -msgstr "Permitir" - -#: admin/post-types/writepanels/writepanel-product_data.php:386 -#: admin/post-types/writepanels/writepanel-product_data.php:478 -#: admin/woocommerce-admin-init.php:440 -msgid "Value(s)" -msgstr "Valor(s)" - -#: admin/post-types/writepanels/writepanel-product_data.php:505 -msgid "Custom product attribute" -msgstr "Atributos personalizados do produto" - -#: admin/post-types/writepanels/writepanel-product_data.php:524 -msgid "Up-Sells" -msgstr "Aumenta vendas" - -#: admin/post-types/writepanels/writepanel-product_data.php:541 -msgid "Cross-Sells" -msgstr "Vendas cruzadas" - -#: admin/post-types/writepanels/writepanel-product_data.php:722 -msgid "Product SKU must be unique." -msgstr "REF do produto precisa ser único." - -#: admin/post-types/writepanels/writepanel-product_data.php:43 -msgid "Product Type" -msgstr "Tipo de produto" - -#: admin/post-types/product.php:620 -#: admin/post-types/product.php:895 -#: admin/post-types/writepanels/writepanel-product_data.php:1056 -#: woocommerce-template.php:1500 -#: woocommerce.php:950 -msgid "Search" -msgstr "Pesquisa" - -#: admin/post-types/product.php:621 -#: admin/post-types/product.php:896 -#: admin/post-types/writepanels/writepanel-product_data.php:1057 -msgid "Hidden" -msgstr "Escondido" - -#: admin/post-types/product.php:552 -#: admin/post-types/product.php:783 -#: admin/post-types/writepanels/writepanels-init.php:46 -#: admin/settings/settings-init.php:508 -msgid "Product Data" -msgstr "Dados do produto" - -#: admin/post-types/writepanels/writepanels-init.php:68 -msgid "Order Data" -msgstr "Dados do pedido" - -#: admin/post-types/writepanels/writepanel-order_data.php:652 -#: admin/post-types/writepanels/writepanels-init.php:70 -msgid "Order Totals" -msgstr "Total do pedido" - -#: admin/post-types/shop_order.php:48 -#: admin/post-types/writepanels/writepanels-init.php:71 -#: classes/class-wc-checkout.php:89 -msgid "Order Notes" -msgstr "Notas do pedido" - -#: admin/post-types/writepanels/writepanels-init.php:73 -msgid "Order Actions" -msgstr "Ações do pedido" - -#: admin/post-types/writepanels/writepanels-init.php:81 -msgid "Coupon Data" -msgstr "Dados do cupão" - -#: classes/class-wc-cart.php:459 -#, php-format -msgid "Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in stock). Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Desculpe, não temos o stock suficiente para atender ao seu pedido \"%s\" (existe %s em stock). Por favor edite o seu carrinho e tente novamente. Pedimos desculpas por qualquer inconveniente causado." - -#: classes/abstracts/abstract-wc-product.php:851 -#: classes/abstracts/abstract-wc-product.php:857 -#: classes/class-wc-cart.php:1785 -#: classes/class-wc-order.php:891 -#: classes/class-wc-product-variable.php:272 -#: classes/class-wc-product-variable.php:281 -#: classes/class-wc-product-variation.php:247 -msgid "Free!" -msgstr "Grátis!" - -#: classes/class-wc-coupon.php:445 -#: classes/class-wc-coupon.php:495 -msgid "Coupon does not exist!" -msgstr "Código de desconto não existe!" - -#: admin/post-types/writepanels/writepanel-order_data.php:193 -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#: admin/post-types/writepanels/writepanel-order_data.php:277 -#: admin/post-types/writepanels/writepanel-order_data.php:279 -#: classes/class-wc-countries.php:698 -msgid "Address" -msgstr "Endereço" - -#: admin/post-types/writepanels/writepanel-order_data.php:185 -#: classes/class-wc-countries.php:1080 -msgid "Phone" -msgstr "Telefone" - -#: admin/woocommerce-admin-users.php:26 -#: templates/checkout/form-billing.php:21 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:19 -#: templates/myaccount/my-address.php:25 -#: templates/order/order-details.php:115 -msgid "Billing Address" -msgstr "Endereço de faturação" - -#: templates/checkout/form-billing.php:42 -msgid "Create an account?" -msgstr "Criar uma conta?" - -#: classes/class-wc-checkout.php:64 -msgid "Account username" -msgstr "Nome de utilizador da conta" - -#: templates/myaccount/form-login.php:66 -msgid "Username" -msgstr "Nome de utilizador" - -#: classes/class-wc-checkout.php:72 -msgid "Account password" -msgstr "Senha da conta" - -#: templates/myaccount/form-login.php:33 -#: templates/myaccount/form-login.php:85 -#: templates/shop/form-login.php:24 -msgid "Password" -msgstr "Senha" - -#: admin/woocommerce-admin-users.php:27 -#: templates/checkout/form-shipping.php:35 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:20 -#: templates/order/order-details.php:130 -msgid "Shipping Address" -msgstr "Endereço de entrega" - -#: admin/post-types/writepanels/writepanel-order_data.php:175 -#: admin/post-types/writepanels/writepanel-order_data.php:265 -#: templates/cart/shipping-calculator.php:28 -#: woocommerce-template.php:1336 -msgid "Select a country…" -msgstr "Selecione o país" - -#: templates/cart/shipping-calculator.php:52 -#: woocommerce-template.php:1386 -msgid "Select a state…" -msgstr "Selecione o distrito" - -#: classes/class-wc-checkout.php:388 -#, php-format -msgid "Sorry, your session has expired. Return to homepage →" -msgstr "Desculpe, a sua sessão expirou. Volte à página principal →" - -#: classes/class-wc-checkout.php:550 -msgid "Please enter an account username." -msgstr "Digite o nome de utilizador da conta." - -#: classes/class-wc-checkout.php:567 -msgid "Please enter an account password." -msgstr "Por favor digite a senha de conta." - -#: classes/class-wc-checkout.php:570 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:83 -#: woocommerce-functions.php:766 -#: woocommerce-functions.php:1638 -msgid "Passwords do not match." -msgstr "As senhas não coincidem." - -#: classes/class-wc-checkout.php:554 -msgid "Invalid email/username." -msgstr "E-mail / username inválido." - -#: classes/class-wc-checkout.php:557 -msgid "An account is already registered with that username. Please choose another." -msgstr "Já existe uma conta com este nome de utilizador. Por favor, escolha outro." - -#: classes/class-wc-checkout.php:574 -msgid "An account is already registered with your email address. Please login." -msgstr "Já existe uma conta com este email. Por favor, faça login." - -#: classes/class-wc-checkout.php:580 -msgid "You must accept our Terms & Conditions." -msgstr "Você deve aceitar os Termos e Condições." - -#: classes/class-wc-checkout.php:589 -msgid "Invalid shipping method." -msgstr "Método de envio inválido." - -#: classes/class-wc-checkout.php:602 -msgid "Invalid payment method." -msgstr "Método de pagamento inválido." - -#: classes/class-wc-countries.php:418 -msgid "to the" -msgstr "para o" - -#: classes/class-wc-countries.php:419 -msgid "to" -msgstr "para" - -#: classes/abstracts/abstract-wc-email.php:433 -#: classes/emails/class-wc-email-customer-completed-order.php:135 -#: classes/emails/class-wc-email-customer-invoice.php:141 -#: classes/emails/class-wc-email-new-order.php:115 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:63 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:57 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:130 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:120 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:76 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:75 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:50 -msgid "Enable/Disable" -msgstr "Habilita/Desabilita" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:65 -msgid "Enable Bank Transfer" -msgstr "Habilitar Transferência Bancária" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:69 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:63 -#: classes/gateways/cod/class-wc-gateway-cod.php:87 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:143 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:126 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:104 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:82 -msgid "Title" -msgstr "Título" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:71 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:65 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:145 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:128 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:83 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:58 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:106 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:84 -msgid "This controls the title which the user sees during checkout." -msgstr "Isto controla o título que o utilizador vê durante o checkout." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:72 -msgid "Direct Bank Transfer" -msgstr "Transferência Bancária" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:76 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:70 -msgid "Customer Message" -msgstr "Mensagem para o Cliente" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:78 -msgid "Give the customer instructions for paying via BACS, and let them know that their order won't be shipping until the money is received." -msgstr "Dê instruções ao cliente para pagar por Banco, e deixe claro que o produto só será enviado quando o pagamento for confirmado." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:79 -msgid "Make your payment directly into our bank account. Please use your Order ID as the payment reference. Your order wont be shipped until the funds have cleared in our account." -msgstr "Faça o pagamento diretamente para a nossa conta bancária. Por favor use o Nº do seu pedido como referência de pagamento. O seu pedido não será enviado até que o pagamento seja identificado." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:88 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:163 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:203 -msgid "Account Name" -msgstr "Nome da conta" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:94 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:164 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:204 -msgid "Account Number" -msgstr "Número de Identificação Bancária (NIB)" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:100 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:165 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:205 -msgid "Sort Code" -msgstr "Agência" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:106 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:166 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:206 -msgid "Bank Name" -msgstr "Nome do banco" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:112 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:167 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:207 -msgid "IBAN" -msgstr "IBAN" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:117 -msgid "BIC (formerly Swift)" -msgstr "BIC (antigo Swift)" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:136 -msgid "BACS Payment" -msgstr "Pagamento bancário" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:137 -msgid "Allows payments by BACS (Bank Account Clearing System), more commonly known as direct bank/wire transfer." -msgstr "Permite pagamentos por depósito (Sistema de Compensação de Conta bancária), mais comummente conhecido como transferência bancária / transferência eletrónica." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:158 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:200 -msgid "Our Details" -msgstr "Os nossos dados" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:168 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:208 -msgid "BIC" -msgstr "BIC (Swift)" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:234 -msgid "Awaiting BACS payment" -msgstr "Aguardando pagamento em conta" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:59 -msgid "Enable Cheque Payment" -msgstr "Habilitar pagamento por cheque" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:66 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:90 -msgid "Cheque Payment" -msgstr "Pagamento por Cheque" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:72 -msgid "Let the customer know the payee and where they should be sending the cheque to and that their order won't be shipping until you receive it." -msgstr "Deixe o cliente saber o nome do beneficiário. É importante informar que o pedido só será enviado após confirmar o recebimento." - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:91 -msgid "Allows cheque payments. Why would you take cheques in this day and age? Well you probably wouldn't but it does allow you to make test purchases for testing order emails and the 'success' pages etc." -msgstr "Permite pagamentos em cheque. Por que você iria aceitar cheques neste dia e idade? Bem, você provavelmente não iria, mas não

    permite que você faça compras de teste para e-mails de pedidos de testes e as páginas de 'sucesso', etc" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:147 -msgid "Awaiting cheque payment" -msgstr "À espera de pagamento por cheque" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:122 -msgid "Enable PayPal standard" -msgstr "Habilitar PayPal padrão" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:34 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:129 -msgid "PayPal" -msgstr "PayPal" - -#: admin/post-types/shop_coupon.php:28 -#: classes/gateways/cod/class-wc-gateway-cod.php:94 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:150 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:133 -#: woocommerce-template.php:751 -msgid "Description" -msgstr "Descrição" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:153 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:135 -msgid "This controls the description which the user sees during checkout." -msgstr "Isto controla a descrição que o utilizador vê durante o checkout." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:136 -msgid "Pay via PayPal; you can pay with your credit card if you don't have a PayPal account" -msgstr "Pagamento via PayPal. Você pode pagar com o seu cartão de crédito." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:139 -msgid "PayPal Email" -msgstr "E-mail PayPal" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:141 -msgid "Please enter your PayPal email address; this is needed in order to take payment." -msgstr "Por favor digite o seu endereço de e-mail PayPal, que é necessário para receber o pagamento." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:182 -msgid "Shipping details" -msgstr "Detalhes de entrega" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:202 -msgid "PayPal sandbox" -msgstr "PayPal sandbox" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:204 -msgid "Enable PayPal sandbox" -msgstr "Habilitar PayPal sandbox" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:91 -msgid "PayPal standard" -msgstr "PayPal padrão" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:92 -msgid "PayPal standard works by sending the user to PayPal to enter their payment information." -msgstr "PayPal padrão funciona enviando o utilizador para o PayPal para inserir as suas informações de pagamento." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:449 -msgid "Pay via PayPal" -msgstr "Pagar com PayPal" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:449 -msgid "Cancel order & restore cart" -msgstr "Cancelar pedido e restaurar carrinho" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:426 -msgid "Thank you for your order. We are now redirecting you to PayPal to make payment." -msgstr "Obrigado pelo seu pedido. Agora será redirecionado para o PayPal para efetuar o pagamento." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:503 -msgid "Thank you for your order, please click the button below to pay with PayPal." -msgstr "Obrigado pelo seu pedido, por favor clique no botão abaixo para pagar com PayPal." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:677 -msgid "IPN payment completed" -msgstr "Pagamento IPN concluído" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:692 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:700 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:717 -#, php-format -msgid "Payment %s via IPN." -msgstr "Pagamento %s via IPN." - -#: classes/class-wc-order.php:1221 -#, php-format -msgid "Order status changed from %s to %s." -msgstr "Estado do pedido alterado de %s para %s." - -#: classes/class-wc-order.php:1472 -msgid "Order item stock reduced successfully." -msgstr "Item reduzido com sucesso." - -#: classes/abstracts/abstract-wc-product.php:567 -#: classes/abstracts/abstract-wc-product.php:580 -#: templates/cart/cart.php:76 -msgid "Available on backorder" -msgstr "Disponível em pedido pendente" - -#: classes/abstracts/abstract-wc-product.php:964 -#: templates/single-product-reviews.php:28 -#, php-format -msgid "Rated %s out of 5" -msgstr "Avaliação %s de 5" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:27 -msgid "Flat rates let you define a standard rate per item, or per order." -msgstr "Taxas fixas permitem que você defina uma taxa padrão para cada item ou por pedido." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:82 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:81 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:56 -msgid "Method Title" -msgstr "Método título" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:106 -msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -msgstr "Custo sem impostos. Digite um valor, por exemplo: 2.50." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:487 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:112 -msgid "Handling Fee" -msgstr "Taxa de manuseio" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:114 -msgid "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. Leave blank to disable." -msgstr "Taxa sem impostos. Digite um valor, por exemplo: 2.50, ou uma porcentagem, por exemplo, 5%. Deixe em branco para desativar." - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:88 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:143 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:97 -msgid "Method availability" -msgstr "Método disponível" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:93 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:148 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:102 -msgid "All allowed countries" -msgstr "Países permitidos" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:25 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:145 -msgid "Free Shipping" -msgstr "Envio Grátis" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:77 -msgid "Enable Free Shipping" -msgstr "Habilitar envio grátis" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:118 -msgid "Minimum Order Amount" -msgstr "Valor mínimo da encomenda" - -#: templates/cart/totals.php:35 -#: templates/checkout/review-order.php:34 -#: woocommerce.php:1691 -msgid "Cart Discount" -msgstr "Desconto carrinho" - -#: woocommerce.php:1692 -msgid "Cart % Discount" -msgstr "Desconto no carrinho %" - -#: woocommerce.php:1693 -msgid "Product Discount" -msgstr "Desconto produto" - -#: classes/class-wc-countries.php:41 -msgid "Andorra" -msgstr "Andorra" - -#: classes/class-wc-countries.php:266 -msgid "United Arab Emirates" -msgstr "Emirados Árabes Unidos" - -#: classes/class-wc-countries.php:37 -msgid "Afghanistan" -msgstr "Afeganistão" - -#: classes/class-wc-countries.php:45 -msgid "Antigua and Barbuda" -msgstr "Antígua e Barbuda" - -#: classes/class-wc-countries.php:43 -msgid "Anguilla" -msgstr "Anguilla" - -#: classes/class-wc-countries.php:39 -msgid "Albania" -msgstr "Albânia" - -#: classes/class-wc-countries.php:47 -msgid "Armenia" -msgstr "Armênia" - -#: classes/class-wc-countries.php:191 -msgid "Netherlands Antilles" -msgstr "Antilhas Holandesas" - -#: classes/class-wc-countries.php:42 -msgid "Angola" -msgstr "Angola" - -#: classes/class-wc-countries.php:44 -msgid "Antarctica" -msgstr "Antártica" - -#: classes/class-wc-countries.php:46 -msgid "Argentina" -msgstr "Argentina" - -#: i18n/states/US.php:67 -msgid "American Samoa" -msgstr "Samoa Americana" - -#: classes/class-wc-countries.php:50 -msgid "Austria" -msgstr "Áustria" - -#: classes/class-wc-countries.php:49 -msgid "Australia" -msgstr "Austrália" - -#: classes/class-wc-countries.php:48 -msgid "Aruba" -msgstr "Aruba" - -#: classes/class-wc-countries.php:51 -msgid "Azerbaijan" -msgstr "Azerbaijão" - -#: classes/class-wc-countries.php:65 -msgid "Bosnia and Herzegovina" -msgstr "Bósnia e Herzegovina" - -#: classes/class-wc-countries.php:55 -msgid "Barbados" -msgstr "Barbados" - -#: classes/class-wc-countries.php:54 -msgid "Bangladesh" -msgstr "Bangladesh" - -#: classes/class-wc-countries.php:57 -msgid "Belgium" -msgstr "Bélgica" - -#: classes/class-wc-countries.php:73 -msgid "Burkina Faso" -msgstr "Burquina Fasso" - -#: classes/class-wc-countries.php:72 -msgid "Bulgaria" -msgstr "Bulgária" - -#: classes/class-wc-countries.php:53 -msgid "Bahrain" -msgstr "Barém" - -#: classes/class-wc-countries.php:74 -msgid "Burundi" -msgstr "Burúndi" - -#: classes/class-wc-countries.php:60 -msgid "Benin" -msgstr "Benim" - -#: classes/class-wc-countries.php:61 -msgid "Bermuda" -msgstr "Bermudas" - -#: classes/class-wc-countries.php:71 -msgid "Brunei" -msgstr "Brunei" - -#: classes/class-wc-countries.php:63 -msgid "Bolivia" -msgstr "Bolívia" - -#: classes/class-wc-countries.php:68 -msgid "Brazil" -msgstr "Brasil" - -#: classes/class-wc-countries.php:52 -msgid "Bahamas" -msgstr "Bahamas" - -#: classes/class-wc-countries.php:62 -msgid "Bhutan" -msgstr "Butão" - -#: classes/class-wc-countries.php:66 -msgid "Botswana" -msgstr "Botsuana" - -#: classes/class-wc-countries.php:56 -msgid "Belarus" -msgstr "Bielorrússia" - -#: classes/class-wc-countries.php:59 -msgid "Belize" -msgstr "Belize" - -#: classes/class-wc-countries.php:77 -msgid "Canada" -msgstr "Canadá" - -#: classes/class-wc-countries.php:85 -msgid "Cocos (Keeling) Islands" -msgstr "Ilhas Cocos" - -#: classes/class-wc-countries.php:89 -msgid "Congo (Kinshasa)" -msgstr "Congo (Kinshasa)" - -#: classes/class-wc-countries.php:80 -msgid "Central African Republic" -msgstr "República da África Central" - -#: classes/class-wc-countries.php:88 -msgid "Congo (Brazzaville)" -msgstr "Congo (Brazzaville)" - -#: classes/class-wc-countries.php:248 -msgid "Switzerland" -msgstr "Suiça" - -#: classes/class-wc-countries.php:145 -msgid "Ivory Coast" -msgstr "Costa do Marfim" - -#: classes/class-wc-countries.php:90 -msgid "Cook Islands" -msgstr "Ilhas Cook" - -#: classes/class-wc-countries.php:82 -msgid "Chile" -msgstr "Chile" - -#: classes/class-wc-countries.php:76 -msgid "Cameroon" -msgstr "Camarões" - -#: classes/class-wc-countries.php:83 -msgid "China" -msgstr "China" - -#: classes/class-wc-countries.php:86 -msgid "Colombia" -msgstr "Colômbia" - -#: classes/class-wc-countries.php:91 -msgid "Costa Rica" -msgstr "Costa Rica" - -#: classes/class-wc-countries.php:93 -msgid "Cuba" -msgstr "Cuba" - -#: classes/class-wc-countries.php:78 -msgid "Cape Verde" -msgstr "Cabo Verde" - -#: classes/class-wc-countries.php:84 -msgid "Christmas Island" -msgstr "Ilha Christmas" - -#: classes/class-wc-countries.php:95 -msgid "Cyprus" -msgstr "Chipre" - -#: classes/class-wc-countries.php:96 -msgid "Czech Republic" -msgstr "República Checa" - -#: classes/class-wc-countries.php:119 -msgid "Germany" -msgstr "Alemanha" - -#: classes/class-wc-countries.php:98 -msgid "Djibouti" -msgstr "Djibouti" - -#: classes/class-wc-countries.php:97 -msgid "Denmark" -msgstr "Dinamarca" - -#: classes/class-wc-countries.php:99 -msgid "Dominica" -msgstr "Dominica" - -#: classes/class-wc-countries.php:100 -msgid "Dominican Republic" -msgstr "República Dominicana" - -#: classes/class-wc-countries.php:40 -msgid "Algeria" -msgstr "Argélia" - -#: classes/class-wc-countries.php:101 -msgid "Ecuador" -msgstr "Equador" - -#: classes/class-wc-countries.php:106 -msgid "Estonia" -msgstr "Estônia" - -#: classes/class-wc-countries.php:102 -msgid "Egypt" -msgstr "Egito" - -#: classes/class-wc-countries.php:276 -msgid "Western Sahara" -msgstr "Saara Ocidental" - -#: classes/class-wc-countries.php:105 -msgid "Eritrea" -msgstr "Eritreia" - -#: classes/class-wc-countries.php:241 -msgid "Spain" -msgstr "Espanha" - -#: classes/class-wc-countries.php:107 -msgid "Ethiopia" -msgstr "Etiópia" - -#: classes/class-wc-countries.php:111 -msgid "Finland" -msgstr "Finlândia" - -#: classes/class-wc-countries.php:110 -msgid "Fiji" -msgstr "Fiji" - -#: classes/class-wc-countries.php:108 -msgid "Falkland Islands" -msgstr "Ilhas Malvinas" - -#: classes/class-wc-countries.php:178 -msgid "Micronesia" -msgstr "Micronésia" - -#: classes/class-wc-countries.php:109 -msgid "Faroe Islands" -msgstr "Ilhas Feroe" - -#: classes/class-wc-countries.php:112 -msgid "France" -msgstr "França" - -#: classes/class-wc-countries.php:116 -msgid "Gabon" -msgstr "Gabão" - -#: classes/class-wc-countries.php:267 -msgid "United Kingdom" -msgstr "Reino Unido" - -#: classes/class-wc-countries.php:124 -msgid "Grenada" -msgstr "Granada" - -#: classes/class-wc-countries.php:118 -#: i18n/states/US.php:23 -msgid "Georgia" -msgstr "Geórgia" - -#: classes/class-wc-countries.php:113 -msgid "French Guiana" -msgstr "Guiana Francesa" - -#: classes/class-wc-countries.php:127 -msgid "Guernsey" -msgstr "Guernsey" - -#: classes/class-wc-countries.php:120 -msgid "Ghana" -msgstr "Gana" - -#: classes/class-wc-countries.php:121 -msgid "Gibraltar" -msgstr "Gibraltar" - -#: classes/class-wc-countries.php:123 -msgid "Greenland" -msgstr "Groenlândia" - -#: classes/class-wc-countries.php:117 -msgid "Gambia" -msgstr "Gâmbia" - -#: classes/class-wc-countries.php:128 -msgid "Guinea" -msgstr "Guiné" - -#: classes/class-wc-countries.php:125 -msgid "Guadeloupe" -msgstr "Guadalupe" - -#: classes/class-wc-countries.php:104 -msgid "Equatorial Guinea" -msgstr "Guiné Equatorial" - -#: classes/class-wc-countries.php:122 -msgid "Greece" -msgstr "Grécia" - -#: classes/class-wc-countries.php:126 -msgid "Guatemala" -msgstr "Guatemala" - -#: i18n/states/US.php:68 -msgid "Guam" -msgstr "Guam" - -#: classes/class-wc-countries.php:129 -msgid "Guinea-Bissau" -msgstr "Guiné-Bissau" - -#: classes/class-wc-countries.php:130 -msgid "Guyana" -msgstr "Guiana" - -#: classes/class-wc-countries.php:133 -msgid "Honduras" -msgstr "Honduras" - -#: classes/class-wc-countries.php:92 -msgid "Croatia" -msgstr "Croácia" - -#: classes/class-wc-countries.php:131 -msgid "Haiti" -msgstr "Haiti" - -#: classes/class-wc-countries.php:135 -msgid "Hungary" -msgstr "Hungria" - -#: classes/class-wc-countries.php:138 -msgid "Indonesia" -msgstr "Indonésia" - -#: classes/class-wc-countries.php:143 -msgid "Israel" -msgstr "Israel" - -#: classes/class-wc-countries.php:142 -msgid "Isle of Man" -msgstr "Ilha de Man" - -#: classes/class-wc-countries.php:137 -msgid "India" -msgstr "Índia" - -#: classes/class-wc-countries.php:69 -msgid "British Indian Ocean Territory" -msgstr "Território Britânico do Oceano Índico" - -#: classes/class-wc-countries.php:140 -msgid "Iraq" -msgstr "Iraque" - -#: classes/class-wc-countries.php:139 -msgid "Iran" -msgstr "Irã" - -#: classes/class-wc-countries.php:136 -msgid "Iceland" -msgstr "Islândia" - -#: classes/class-wc-countries.php:144 -msgid "Italy" -msgstr "Itália" - -#: classes/class-wc-countries.php:148 -msgid "Jersey" -msgstr "Jersey" - -#: classes/class-wc-countries.php:146 -msgid "Jamaica" -msgstr "Jamaica" - -#: classes/class-wc-countries.php:149 -msgid "Jordan" -msgstr "Jordânia" - -#: classes/class-wc-countries.php:147 -msgid "Japan" -msgstr "Japão" - -#: classes/class-wc-countries.php:151 -msgid "Kenya" -msgstr "Quênia" - -#: classes/class-wc-countries.php:154 -msgid "Kyrgyzstan" -msgstr "Quirguistão" - -#: classes/class-wc-countries.php:75 -msgid "Cambodia" -msgstr "Camboja" - -#: classes/class-wc-countries.php:152 -msgid "Kiribati" -msgstr "Quiribáti" - -#: classes/class-wc-countries.php:87 -msgid "Comoros" -msgstr "Comores" - -#: classes/class-wc-countries.php:219 -msgid "Saint Kitts and Nevis" -msgstr "São Cristóvão e Nevis" - -#: classes/class-wc-countries.php:199 -msgid "North Korea" -msgstr "Coréia do Norte" - -#: classes/class-wc-countries.php:239 -msgid "South Korea" -msgstr "Coréia do Sul" - -#: classes/class-wc-countries.php:153 -msgid "Kuwait" -msgstr "Kuweit" - -#: classes/class-wc-countries.php:79 -msgid "Cayman Islands" -msgstr "Ilhas Cayman" - -#: classes/class-wc-countries.php:150 -msgid "Kazakhstan" -msgstr "Cazaquistão" - -#: classes/class-wc-countries.php:155 -msgid "Laos" -msgstr "Laos" - -#: classes/class-wc-countries.php:157 -msgid "Lebanon" -msgstr "Líbano" - -#: classes/class-wc-countries.php:220 -msgid "Saint Lucia" -msgstr "Santa Lúcia" - -#: classes/class-wc-countries.php:161 -msgid "Liechtenstein" -msgstr "Liechtenstein" - -#: classes/class-wc-countries.php:242 -msgid "Sri Lanka" -msgstr "Sri Lanka" - -#: classes/class-wc-countries.php:159 -msgid "Liberia" -msgstr "Libéria" - -#: classes/class-wc-countries.php:158 -msgid "Lesotho" -msgstr "Lesoto" - -#: classes/class-wc-countries.php:162 -msgid "Lithuania" -msgstr "Lituânia" - -#: classes/class-wc-countries.php:163 -msgid "Luxembourg" -msgstr "Luxemburgo" - -#: classes/class-wc-countries.php:156 -msgid "Latvia" -msgstr "Látvia" - -#: classes/class-wc-countries.php:160 -msgid "Libya" -msgstr "Líbia" - -#: classes/class-wc-countries.php:184 -msgid "Morocco" -msgstr "Marrocos" - -#: classes/class-wc-countries.php:180 -msgid "Monaco" -msgstr "Mônaco" - -#: classes/class-wc-countries.php:179 -msgid "Moldova" -msgstr "Moldávia" - -#: classes/class-wc-countries.php:182 -msgid "Montenegro" -msgstr "Montenegro" - -#: classes/class-wc-countries.php:221 -msgid "Saint Martin (French part)" -msgstr "Ilha de São Martinho (República Francesa)" - -#: classes/class-wc-countries.php:166 -msgid "Madagascar" -msgstr "Madagáscar" - -#: classes/class-wc-countries.php:172 -msgid "Marshall Islands" -msgstr "Ilhas Marshall" - -#: classes/class-wc-countries.php:165 -msgid "Macedonia" -msgstr "República da Macedónia" - -#: classes/class-wc-countries.php:170 -msgid "Mali" -msgstr "Mali" - -#: classes/class-wc-countries.php:186 -msgid "Myanmar" -msgstr "República da União de Myanmar" - -#: classes/class-wc-countries.php:181 -msgid "Mongolia" -msgstr "Mongólia" - -#: classes/class-wc-countries.php:164 -msgid "Macao S.A.R., China" -msgstr "Macau R.A.E, China" - -#: i18n/states/US.php:69 -msgid "Northern Mariana Islands" -msgstr "Comunidade das Ilhas Marianas Setentrionais" - -#: classes/class-wc-countries.php:173 -msgid "Martinique" -msgstr "Martinica" - -#: classes/class-wc-countries.php:174 -msgid "Mauritania" -msgstr "Mauritânia" - -#: classes/class-wc-countries.php:183 -msgid "Montserrat" -msgstr "Montserrat" - -#: classes/class-wc-countries.php:171 -msgid "Malta" -msgstr "Malta" - -#: classes/class-wc-countries.php:175 -msgid "Mauritius" -msgstr "Maurício" - -#: classes/class-wc-countries.php:169 -msgid "Maldives" -msgstr "Maldivas" - -#: classes/class-wc-countries.php:167 -msgid "Malawi" -msgstr "Malawi" - -#: classes/class-wc-countries.php:177 -msgid "Mexico" -msgstr "México" - -#: classes/class-wc-countries.php:168 -msgid "Malaysia" -msgstr "Malásia" - -#: classes/class-wc-countries.php:185 -msgid "Mozambique" -msgstr "Moçambique" - -#: classes/class-wc-countries.php:187 -msgid "Namibia" -msgstr "Namíbia" - -#: classes/class-wc-countries.php:192 -msgid "New Caledonia" -msgstr "Nova Caledónia" - -#: classes/class-wc-countries.php:195 -msgid "Niger" -msgstr "Níger" - -#: classes/class-wc-countries.php:198 -msgid "Norfolk Island" -msgstr "Ilha Norfolk" - -#: classes/class-wc-countries.php:196 -msgid "Nigeria" -msgstr "Nigéria" - -#: classes/class-wc-countries.php:194 -msgid "Nicaragua" -msgstr "Nicarágua" - -#: classes/class-wc-countries.php:190 -msgid "Netherlands" -msgstr "Holanda" - -#: classes/class-wc-countries.php:200 -msgid "Norway" -msgstr "Noruega" - -#: classes/class-wc-countries.php:189 -msgid "Nepal" -msgstr "Nepal" - -#: classes/class-wc-countries.php:188 -msgid "Nauru" -msgstr "Nauru" - -#: classes/class-wc-countries.php:197 -msgid "Niue" -msgstr "Niue" - -#: classes/class-wc-countries.php:193 -msgid "New Zealand" -msgstr "Nova Zelândia" - -#: classes/class-wc-countries.php:201 -msgid "Oman" -msgstr "Omã" - -#: classes/class-wc-countries.php:204 -msgid "Panama" -msgstr "Panamá" - -#: classes/class-wc-countries.php:207 -msgid "Peru" -msgstr "Peru" - -#: classes/class-wc-countries.php:114 -msgid "French Polynesia" -msgstr "Polinésia Francesa" - -#: classes/class-wc-countries.php:205 -msgid "Papua New Guinea" -msgstr "Papua-Nova Guiné" - -#: classes/class-wc-countries.php:208 -msgid "Philippines" -msgstr "Filipinas" - -#: classes/class-wc-countries.php:202 -msgid "Pakistan" -msgstr "Paquistão" - -#: classes/class-wc-countries.php:210 -msgid "Poland" -msgstr "Polônia" - -#: classes/class-wc-countries.php:223 -msgid "Saint Pierre and Miquelon" -msgstr "Saint-Pierre e Miquelon" - -#: classes/class-wc-countries.php:209 -msgid "Pitcairn" -msgstr "Ilhas Pitcairn" - -#: i18n/states/US.php:70 -msgid "Puerto Rico" -msgstr "Porto Rico" - -#: classes/class-wc-countries.php:203 -msgid "Palestinian Territory" -msgstr "Território Palestino" - -#: classes/class-wc-countries.php:211 -msgid "Portugal" -msgstr "Portugal" - -#: classes/class-wc-countries.php:206 -msgid "Paraguay" -msgstr "Paraguai" - -#: classes/class-wc-countries.php:212 -msgid "Qatar" -msgstr "Catar" - -#: classes/class-wc-countries.php:213 -msgid "Reunion" -msgstr "Reunião" - -#: classes/class-wc-countries.php:214 -msgid "Romania" -msgstr "Romênia" - -#: classes/class-wc-countries.php:229 -msgid "Serbia" -msgstr "Sérvia" - -#: classes/class-wc-countries.php:215 -msgid "Russia" -msgstr "Rússia" - -#: classes/class-wc-countries.php:216 -msgid "Rwanda" -msgstr "Ruanda" - -#: classes/class-wc-countries.php:227 -msgid "Saudi Arabia" -msgstr "Arábia Saudita" - -#: classes/class-wc-countries.php:235 -msgid "Solomon Islands" -msgstr "Ilhas Salomão" - -#: classes/class-wc-countries.php:230 -msgid "Seychelles" -msgstr "Seychelles" - -#: classes/class-wc-countries.php:243 -msgid "Sudan" -msgstr "Sudão" - -#: classes/class-wc-countries.php:247 -msgid "Sweden" -msgstr "Suécia" - -#: classes/class-wc-countries.php:232 -msgid "Singapore" -msgstr "Cingapura" - -#: classes/class-wc-countries.php:218 -msgid "Saint Helena" -msgstr "Santa Helena" - -#: classes/class-wc-countries.php:234 -msgid "Slovenia" -msgstr "Eslovenia" - -#: classes/class-wc-countries.php:245 -msgid "Svalbard and Jan Mayen" -msgstr "Svalbard e Jan Mayen" - -#: classes/class-wc-countries.php:233 -msgid "Slovakia" -msgstr "Eslováquia" - -#: classes/class-wc-countries.php:231 -msgid "Sierra Leone" -msgstr "Serra Leoa" - -#: classes/class-wc-countries.php:225 -msgid "San Marino" -msgstr "San Marino" - -#: classes/class-wc-countries.php:228 -msgid "Senegal" -msgstr "Senegal" - -#: classes/class-wc-countries.php:236 -msgid "Somalia" -msgstr "Somália" - -#: classes/class-wc-countries.php:244 -msgid "Suriname" -msgstr "Suriname" - -#: classes/class-wc-countries.php:103 -msgid "El Salvador" -msgstr "El Salvador" - -#: classes/class-wc-countries.php:249 -msgid "Syria" -msgstr "Síria" - -#: classes/class-wc-countries.php:246 -msgid "Swaziland" -msgstr "Suazilândia" - -#: classes/class-wc-countries.php:262 -msgid "Turks and Caicos Islands" -msgstr "Ilhas Turcas e Caicos" - -#: classes/class-wc-countries.php:81 -msgid "Chad" -msgstr "Chade" - -#: classes/class-wc-countries.php:115 -msgid "French Southern Territories" -msgstr "Território das Terras Austrais e Antárcticas Francesas" - -#: classes/class-wc-countries.php:255 -msgid "Togo" -msgstr "Togo" - -#: classes/class-wc-countries.php:253 -msgid "Thailand" -msgstr "Tailândia" - -#: classes/class-wc-countries.php:251 -msgid "Tajikistan" -msgstr "Tajiquistão" - -#: classes/class-wc-countries.php:256 -msgid "Tokelau" -msgstr "Tokelau" - -#: classes/class-wc-countries.php:254 -msgid "Timor-Leste" -msgstr "Timor-Leste" - -#: classes/class-wc-countries.php:261 -msgid "Turkmenistan" -msgstr "Turcomenistão" - -#: classes/class-wc-countries.php:259 -msgid "Tunisia" -msgstr "Tunísia" - -#: classes/class-wc-countries.php:257 -msgid "Tonga" -msgstr "Tonga" - -#: classes/class-wc-countries.php:260 -msgid "Turkey" -msgstr "Turquia" - -#: classes/class-wc-countries.php:258 -msgid "Trinidad and Tobago" -msgstr "Trinidad e Tobago" - -#: classes/class-wc-countries.php:263 -msgid "Tuvalu" -msgstr "Tuvalu" - -#: classes/class-wc-countries.php:250 -msgid "Taiwan" -msgstr "Taiwan" - -#: classes/class-wc-countries.php:252 -msgid "Tanzania" -msgstr "Tanzânia" - -#: classes/class-wc-countries.php:265 -msgid "Ukraine" -msgstr "Ucrânia" - -#: classes/class-wc-countries.php:264 -msgid "Uganda" -msgstr "Uganda" - -#: classes/class-wc-countries.php:268 -msgid "United States" -msgstr "Estados Unidos" - -#: classes/class-wc-countries.php:269 -msgid "Uruguay" -msgstr "Uruguai" - -#: classes/class-wc-countries.php:270 -msgid "Uzbekistan" -msgstr "Uzbequistão" - -#: classes/class-wc-countries.php:272 -msgid "Vatican" -msgstr "Vaticano" - -#: classes/class-wc-countries.php:224 -msgid "Saint Vincent and the Grenadines" -msgstr "São Vicente e Granadinas" - -#: classes/class-wc-countries.php:273 -msgid "Venezuela" -msgstr "Venezuela" - -#: classes/class-wc-countries.php:70 -msgid "British Virgin Islands" -msgstr "Ilhas Virgens Britânicas" - -#: classes/class-wc-countries.php:274 -msgid "Vietnam" -msgstr "Vietnã" - -#: classes/class-wc-countries.php:271 -msgid "Vanuatu" -msgstr "Vanuatu" - -#: classes/class-wc-countries.php:275 -msgid "Wallis and Futuna" -msgstr "Wallis e Futuna" - -#: classes/class-wc-countries.php:278 -msgid "Yemen" -msgstr "Iémen" - -#: classes/class-wc-countries.php:176 -msgid "Mayotte" -msgstr "Mayotte" - -#: classes/class-wc-countries.php:237 -msgid "South Africa" -msgstr "África do Sul" - -#: classes/class-wc-countries.php:279 -msgid "Zambia" -msgstr "Zâmbia" - -#: classes/class-wc-countries.php:280 -msgid "Zimbabwe" -msgstr "Zimbábue" - -#: i18n/states/AU.php:13 -msgid "Australian Capital Territory" -msgstr "Território da Capital Australiana" - -#: i18n/states/AU.php:14 -msgid "New South Wales" -msgstr "Nova Gales do Sul" - -#: i18n/states/AU.php:15 -msgid "Northern Territory" -msgstr "Território do Norte" - -#: i18n/states/AU.php:16 -msgid "Queensland" -msgstr "Queensland" - -#: i18n/states/AU.php:17 -msgid "South Australia" -msgstr "Austrália Meridional" - -#: i18n/states/AU.php:18 -msgid "Tasmania" -msgstr "Tasmânia" - -#: i18n/states/AU.php:19 -msgid "Victoria" -msgstr "Victoria" - -#: i18n/states/AU.php:20 -msgid "Western Australia" -msgstr "Austrália Ocidental" - -#: i18n/states/CA.php:13 -msgid "Alberta" -msgstr "Alberta" - -#: i18n/states/CA.php:14 -msgid "British Columbia" -msgstr "Colúmbia Britânica" - -#: i18n/states/CA.php:15 -msgid "Manitoba" -msgstr "Manitoba" - -#: i18n/states/CA.php:16 -msgid "New Brunswick" -msgstr "Nova Brunswick" - -#: i18n/states/CA.php:17 -msgid "Newfoundland" -msgstr "Terra Nova" - -#: i18n/states/CA.php:18 -msgid "Northwest Territories" -msgstr "Territórios do Noroeste" - -#: i18n/states/CA.php:19 -msgid "Nova Scotia" -msgstr "Nova Escócia" - -#: i18n/states/CA.php:20 -msgid "Nunavut" -msgstr "Nunavut" - -#: i18n/states/CA.php:21 -msgid "Ontario" -msgstr "Ontário" - -#: i18n/states/CA.php:22 -msgid "Prince Edward Island" -msgstr "Ilha do Príncipe Eduardo" - -#: i18n/states/CA.php:23 -msgid "Quebec" -msgstr "Quebec" - -#: i18n/states/CA.php:24 -msgid "Saskatchewan" -msgstr "Saskatchewan" - -#: i18n/states/CA.php:25 -msgid "Yukon Territory" -msgstr "Yukon" - -#: i18n/states/US.php:13 -msgid "Alabama" -msgstr "Alabama" - -#: i18n/states/US.php:15 -msgid "Arizona" -msgstr "Arizona" - -#: i18n/states/US.php:16 -msgid "Arkansas" -msgstr "Arkansas" - -#: i18n/states/US.php:17 -msgid "California" -msgstr "Califórnia" - -#: i18n/states/US.php:18 -msgid "Colorado" -msgstr "Colorado" - -#: i18n/states/US.php:19 -msgid "Connecticut" -msgstr "Connecticut" - -#: i18n/states/US.php:20 -msgid "Delaware" -msgstr "Delaware" - -#: i18n/states/US.php:21 -msgid "District Of Columbia" -msgstr "Distrito de Columbia" - -#: i18n/states/US.php:22 -msgid "Florida" -msgstr "Flórida" - -#: i18n/states/US.php:24 -msgid "Hawaii" -msgstr "Havaí" - -#: i18n/states/US.php:25 -msgid "Idaho" -msgstr "Idaho" - -#: i18n/states/US.php:26 -msgid "Illinois" -msgstr "Illinois" - -#: i18n/states/US.php:27 -msgid "Indiana" -msgstr "Indiana" - -#: i18n/states/US.php:28 -msgid "Iowa" -msgstr "Iowa" - -#: i18n/states/US.php:29 -msgid "Kansas" -msgstr "Kansas" - -#: i18n/states/US.php:30 -msgid "Kentucky" -msgstr "Kentucky" - -#: i18n/states/US.php:31 -msgid "Louisiana" -msgstr "Louisiana" - -#: i18n/states/US.php:32 -msgid "Maine" -msgstr "Maine" - -#: i18n/states/US.php:33 -msgid "Maryland" -msgstr "Maryland" - -#: i18n/states/US.php:34 -msgid "Massachusetts" -msgstr "Massachusetts" - -#: i18n/states/US.php:35 -msgid "Michigan" -msgstr "Michigan" - -#: i18n/states/US.php:36 -msgid "Minnesota" -msgstr "Minnesota" - -#: i18n/states/US.php:37 -msgid "Mississippi" -msgstr "Mississippi" - -#: i18n/states/US.php:38 -msgid "Missouri" -msgstr "Missouri" - -#: i18n/states/US.php:39 -msgid "Montana" -msgstr "Montana" - -#: i18n/states/US.php:40 -msgid "Nebraska" -msgstr "Nebraska" - -#: i18n/states/US.php:41 -msgid "Nevada" -msgstr "Nevada" - -#: i18n/states/US.php:42 -msgid "New Hampshire" -msgstr "Nova Hampshire" - -#: i18n/states/US.php:43 -msgid "New Jersey" -msgstr "Nova Jersey" - -#: i18n/states/US.php:44 -msgid "New Mexico" -msgstr "Novo México" - -#: i18n/states/US.php:45 -msgid "New York" -msgstr "Nova Iorque" - -#: i18n/states/US.php:46 -msgid "North Carolina" -msgstr "Carolina do Norte" - -#: i18n/states/US.php:47 -msgid "North Dakota" -msgstr "Dakota do Norte" - -#: i18n/states/US.php:48 -msgid "Ohio" -msgstr "Ohio" - -#: i18n/states/US.php:49 -msgid "Oklahoma" -msgstr "Oklahoma" - -#: i18n/states/US.php:50 -msgid "Oregon" -msgstr "Oregon" - -#: i18n/states/US.php:51 -msgid "Pennsylvania" -msgstr "Pensilvânia" - -#: i18n/states/US.php:52 -msgid "Rhode Island" -msgstr "Rhode Island" - -#: i18n/states/US.php:53 -msgid "South Carolina" -msgstr "Carolina do Sul" - -#: i18n/states/US.php:54 -msgid "South Dakota" -msgstr "Dakota do Sul" - -#: i18n/states/US.php:55 -msgid "Tennessee" -msgstr "Tennessee" - -#: i18n/states/US.php:56 -msgid "Texas" -msgstr "Texas" - -#: i18n/states/US.php:57 -msgid "Utah" -msgstr "Utah" - -#: i18n/states/US.php:58 -msgid "Vermont" -msgstr "Vermont" - -#: i18n/states/US.php:59 -msgid "Virginia" -msgstr "Virgínia" - -#: i18n/states/US.php:60 -msgid "Washington" -msgstr "Washington" - -#: i18n/states/US.php:61 -msgid "West Virginia" -msgstr "Virgínia Ocidental" - -#: i18n/states/US.php:62 -msgid "Wisconsin" -msgstr "Wisconsin" - -#: i18n/states/US.php:63 -msgid "Wyoming" -msgstr "Wyoming" - -#: classes/shortcodes/class-wc-shortcode-cart.php:53 -#: woocommerce-functions.php:1713 -msgid "Please enter a valid postcode/ZIP." -msgstr "Digite um Código Postal válido." - -#: classes/shortcodes/class-wc-shortcode-cart.php:64 -#: classes/shortcodes/class-wc-shortcode-cart.php:70 -msgid "Shipping costs updated." -msgstr "O custo de envio foi atualizado." - -#: templates/cart/cart-empty.php:14 -msgid "Your cart is currently empty." -msgstr "O seu carrinho está vazio." - -#: templates/cart/cart-empty.php:18 -msgid "← Return To Shop" -msgstr "← Voltar para a loja" - -#: templates/cart/cart.php:47 -msgid "Remove this item" -msgstr "Remover este item" - -#: admin/woocommerce-admin-reports.php:1548 -#: templates/cart/cart.php:127 -#: woocommerce.php:1099 -msgid "Coupon" -msgstr "Cupão" - -#: templates/cart/cart.php:127 -#: templates/checkout/form-coupon.php:29 -msgid "Apply Coupon" -msgstr "Aplicar cupão" - -#: templates/cart/cart.php:134 -msgid "Proceed to Checkout →" -msgstr "Finalizar compra →" - -#: classes/shortcodes/class-wc-shortcode-checkout.php:73 -msgid "The order totals have been updated. Please confirm your order by pressing the Place Order button at the bottom of the page." -msgstr "O total de pedidos foi atualizado. Por favor, confirme a sua encomenda, clicando no botão \"Confirmar pedido\" no final da página." - -#: templates/myaccount/my-account.php:19 -#, php-format -msgid "Hello, %s. From your account dashboard you can view your recent orders, manage your shipping and billing addresses and change your password." -msgstr "Olá %s. No painel da sua conta você pode ver os pedidos recentes, gerenciar o seu endereço de entrega e endereço de faturação, além de alterar a sua senha." - -#: templates/myaccount/my-downloads.php:18 -msgid "Available downloads" -msgstr "Downloads disponíveis" - -#: templates/myaccount/my-orders.php:26 -msgid "Recent Orders" -msgstr "Pedidos recentes" - -#: admin/post-types/writepanels/order-fee-html.php:43 -#: admin/post-types/writepanels/order-item-html.php:115 -#: admin/woocommerce-admin-reports.php:1563 -#: admin/woocommerce-admin-reports.php:1616 -#: admin/woocommerce-admin-reports.php:2387 -#: admin/woocommerce-admin-reports.php:2556 -#: admin/woocommerce-admin-reports.php:2634 -#: templates/cart/cart.php:31 -#: templates/checkout/review-order.php:22 -#: templates/myaccount/my-orders.php:35 -#: templates/order/order-details.php:21 -msgid "Total" -msgstr "Total" - -#: admin/woocommerce-admin-status.php:322 -#: assets/js/admin/editor_plugin_lang.php:22 -#: templates/checkout/thankyou.php:28 -#: templates/myaccount/my-orders.php:71 -msgid "Pay" -msgstr "Pagar" - -#: admin/post-types/writepanels/writepanel-product_data.php:138 -#: admin/post-types/writepanels/writepanel-product_data.php:1090 -#: templates/myaccount/my-orders.php:77 -msgid "Cancel" -msgstr "Cancelar" - -#: admin/post-types/product.php:167 -#: admin/post-types/shop_order.php:171 -#: templates/myaccount/my-orders.php:82 -msgid "View" -msgstr "Visualizar" - -#: templates/myaccount/my-address.php:35 -msgid "The following addresses will be used on the checkout page by default." -msgstr "O endereço a seguir será usado na página de pagamento como endereço padrão." - -#: classes/class-wc-countries.php:965 -msgid "State" -msgstr "Estado" - -#: templates/myaccount/form-edit-address.php:43 -msgid "Save Address" -msgstr "Salvar Endereço" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:78 -#: woocommerce-functions.php:1635 -msgid "Please enter your password." -msgstr "Por favor, Insira a sua senha." - -#: templates/myaccount/form-change-password.php:20 -#: templates/myaccount/form-lost-password.php:31 -msgid "New password" -msgstr "Nova senha" - -#: templates/myaccount/form-change-password.php:24 -#: templates/myaccount/form-lost-password.php:35 -msgid "Re-enter new password" -msgstr "Digite a sua senha novamente" - -#: templates/myaccount/form-change-password.php:29 -#: templates/myaccount/form-lost-password.php:45 -msgid "Save" -msgstr "Salvar" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:65 -#: templates/order/tracking.php:31 -msgid "Order Updates" -msgstr "Atualizações do pedido" - -#: admin/post-types/writepanels/writepanel-order_data.php:59 -#: templates/order/order-details.php:16 -msgid "Order Details" -msgstr "Detalhes do pedido" - -#: admin/post-types/writepanels/writepanel-order_data.php:347 -#: templates/checkout/form-pay.php:20 -msgid "Qty" -msgstr "Qtd" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -#: templates/checkout/form-pay.php:21 -msgid "Totals" -msgstr "Total" - -#: admin/post-types/writepanels/order-item-html.php:117 -#: templates/cart/mini-cart.php:63 -msgid "Subtotal" -msgstr "Subtotal" - -#: admin/woocommerce-admin-functions.php:220 -#: templates/emails/admin-new-order.php:50 -#: templates/emails/customer-completed-order.php:51 -#: templates/emails/customer-note.php:55 -#: templates/emails/customer-processing-order.php:51 -#: templates/emails/plain/admin-new-order.php:38 -#: templates/order/order-details.php:97 -msgid "Customer details" -msgstr "Dados do cliente" - -#: admin/post-types/shop_order.php:101 -#: templates/emails/admin-new-order.php:53 -#: templates/emails/customer-completed-order.php:54 -#: templates/emails/customer-note.php:58 -#: templates/emails/customer-processing-order.php:54 -#: templates/emails/plain/admin-new-order.php:41 -#: templates/emails/plain/customer-completed-order.php:41 -#: templates/emails/plain/customer-note.php:49 -#: templates/emails/plain/customer-processing-order.php:41 -#: templates/order/order-details.php:101 -msgid "Email:" -msgstr "Email:" - -#: templates/order/order-details.php:102 -msgid "Telephone:" -msgstr "Telefone:" - -#: templates/order/tracking.php:20 -msgid " ago" -msgstr "atrás" - -#: templates/order/form-tracking.php:17 -msgid "To track your order please enter your Order ID in the box below and press return. This was given to you on your receipt and in the confirmation email you should have received." -msgstr "Para acompanhar o seu pedido, por favor digite o seu ID do Pedido na caixa abaixo e pressione enter. Esta informação foi enviada para você no email de confirmação da compra." - -#: templates/order/form-tracking.php:19 -msgid "Order ID" -msgstr "ID do pedido" - -#: templates/order/form-tracking.php:19 -msgid "Found in your order confirmation email." -msgstr "Encontrado no seu e-mail de confirmação do pedido." - -#: templates/order/form-tracking.php:20 -msgid "Billing Email" -msgstr "E-mail de faturação" - -#: templates/order/form-tracking.php:20 -msgid "Email you used during checkout." -msgstr "Email utilizado durante o checkout." - -#: classes/shortcodes/class-wc-shortcode-pay.php:64 -#: classes/shortcodes/class-wc-shortcode-pay.php:118 -msgid "Your order has already been paid for. Please contact us if you need assistance." -msgstr "O seu pedido já foi pago. Por favor, contacte-nos se precisar de ajuda." - -#: classes/shortcodes/class-wc-shortcode-pay.php:69 -#: classes/shortcodes/class-wc-shortcode-pay.php:125 -#: classes/shortcodes/class-wc-shortcode-view-order.php:51 -#: woocommerce-functions.php:917 -#: woocommerce-functions.php:997 -msgid "Invalid order." -msgstr "Pedido inválido." - -#: admin/woocommerce-admin-functions.php:194 -#: classes/shortcodes/class-wc-shortcode-pay.php:90 -#: templates/checkout/thankyou.php:40 -#: templates/emails/customer-completed-order.php:18 -#: templates/emails/customer-invoice.php:22 -#: templates/emails/customer-note.php:22 -#: templates/emails/customer-processing-order.php:18 -msgid "Order:" -msgstr "Nº do Pedido:" - -#: classes/shortcodes/class-wc-shortcode-pay.php:94 -#: templates/checkout/thankyou.php:44 -msgid "Date:" -msgstr "Data:" - -#: classes/shortcodes/class-wc-shortcode-pay.php:103 -#: templates/checkout/thankyou.php:53 -msgid "Payment method:" -msgstr "Meio de pagamento:" - -#: templates/checkout/thankyou.php:18 -msgid "Unfortunately your order cannot be processed as the originating bank/merchant has declined your transaction." -msgstr "Infelizmente o seu pedido não pode ser processado. O banco/comerciante não aprovou o seu pagamento." - -#: templates/checkout/thankyou.php:22 -msgid "Please attempt your purchase again or go to your account page." -msgstr "Por favor, tente realizar a sua compra novamente ou vá para a página da sua conta." - -#: templates/checkout/thankyou.php:24 -msgid "Please attempt your purchase again." -msgstr "Por favor, tente realizar a compra novamente." - -#: templates/checkout/thankyou.php:36 -#: templates/checkout/thankyou.php:67 -msgid "Thank you. Your order has been received." -msgstr "Obrigado. O seu pedido foi recebido." - -#: templates/checkout/form-checkout.php:51 -msgid "Your order" -msgstr "O seu pedido" - -#: templates/checkout/form-pay.php:78 -msgid "Sorry, it seems that there are no available payment methods for your location. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "Desculpe, parece que não existem métodos de pagamento disponíveis para a sua região. Entre em contato connosco se precisar de ajuda ou quiser negociar outra forma de pagamento." - -#: templates/checkout/form-pay.php:87 -msgid "Pay for order" -msgstr "Pagar pedido" - -#: templates/checkout/review-order.php:174 -msgid "Please fill in your details above to see available payment methods." -msgstr "Por favor, indique os dados acima para ver os meios de pagamento disponíveis." - -#: templates/checkout/review-order.php:176 -msgid "Sorry, it seems that there are no available payment methods for your state. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "Desculpe, parece que não existem métodos de pagamento disponíveis para a sua região. Entre em contato connosco se precisar de ajuda ou quiser negociar outra forma de pagamento." - -#: templates/checkout/review-order.php:185 -msgid "Since your browser does not support JavaScript, or it is disabled, please ensure you click the Update Totals button before placing your order. You may be charged more than the amount stated above if you fail to do so." -msgstr "O seu navegador não suporta JavaScript ou ele está desativado, por favor clique no botão Atualizar antes de finalizar o seu pedido. Você pode pagar mais do que a quantidade indicada acima, se não clicar." - -#: templates/checkout/review-order.php:185 -msgid "Update totals" -msgstr "Atualizar" - -#: templates/checkout/review-order.php:192 -msgid "Place order" -msgstr "Finalizar pedido" - -#: templates/checkout/review-order.php:199 -msgid "terms & conditions" -msgstr "termos & condições" - -#: classes/class-wc-order.php:961 -msgid "Shipping:" -msgstr "Envio:" - -#: admin/post-types/shop_order.php:104 -#: templates/emails/admin-new-order.php:56 -#: templates/emails/customer-completed-order.php:57 -#: templates/emails/customer-note.php:61 -#: templates/emails/customer-processing-order.php:57 -#: templates/emails/plain/admin-new-order.php:44 -#: templates/emails/plain/customer-completed-order.php:44 -#: templates/emails/plain/customer-note.php:52 -#: templates/emails/plain/customer-processing-order.php:44 -msgid "Tel:" -msgstr "Tel:" - -#: admin/woocommerce-admin-functions.php:226 -#: templates/emails/email-addresses.php:18 -#: templates/emails/plain/email-addresses.php:12 -msgid "Billing address" -msgstr "Endereço de faturação" - -#: admin/woocommerce-admin-functions.php:233 -#: templates/emails/email-addresses.php:28 -#: templates/emails/plain/email-addresses.php:17 -msgid "Shipping address" -msgstr "Endereço de entrega" - -#: admin/settings/settings-init.php:1054 -msgid "Powered by WooCommerce" -msgstr "Criado com WooCommerce" - -#: templates/loop/no-products-found.php:14 -#: templates/loop-shop.php:40 -msgid "No products found which match your selection." -msgstr "Não foi encontrado nenhum produto para a sua seleção." - -#: templates/single-product-reviews.php:30 -#, php-format -msgid "%s review for %s" -msgid_plural "%s reviews for %s" -msgstr[0] "%s avaliação para %s" -msgstr[1] "%s avaliações para %s" - -#: admin/post-types/writepanels/writepanels-init.php:64 -#: templates/single-product-reviews.php:42 -msgid "Reviews" -msgstr "Avaliações" - -#: templates/single-product-reviews.php:58 -msgid " Previous" -msgstr " Anterior" - -#: templates/single-product-reviews.php:59 -msgid "Next " -msgstr " Seguinte" - -#: templates/single-product-reviews.php:63 -msgid "Add Review" -msgstr "Adicionar avaliação" - -#: templates/single-product-reviews.php:65 -msgid "Add a review" -msgstr "Adicionar uma avaliação" - -#: templates/single-product-reviews.php:71 -msgid "There are no reviews yet, would you like to submit yours?" -msgstr "Este produto ainda não foi avaliado, envie a sua avaliação." - -#: admin/post-types/writepanels/writepanel-order_data.php:182 -#: admin/woocommerce-admin-users.php:187 -#: templates/myaccount/form-login.php:78 -#: templates/single-product-reviews.php:86 -msgid "Email" -msgstr "Email" - -#: templates/single-product-reviews.php:89 -msgid "Submit Review" -msgstr "Enviar avaliação" - -#: templates/single-product-reviews.php:96 -msgid "Rating" -msgstr "Nota" - -#: templates/single-product-reviews.php:98 -msgid "Perfect" -msgstr "Perfeito" - -#: templates/single-product-reviews.php:99 -msgid "Good" -msgstr "Bom" - -#: templates/single-product-reviews.php:100 -msgid "Average" -msgstr "Razoável" - -#: templates/single-product-reviews.php:101 -msgid "Not that bad" -msgstr "Nada mal" - -#: templates/single-product-reviews.php:102 -msgid "Very Poor" -msgstr "Muito ruim" - -#: templates/cart/mini-cart.php:55 -msgid "No products in the cart." -msgstr "Nenhum produto no carrinho." - -#: classes/class-wc-cart.php:870 -#: classes/class-wc-cart.php:884 -#: classes/class-wc-cart.php:892 -#: templates/cart/mini-cart.php:68 -#: woocommerce-functions.php:503 -#: woocommerce.php:1212 -msgid "View Cart →" -msgstr "Ver carrinho →" - -#: templates/cart/mini-cart.php:69 -msgid "Checkout →" -msgstr "Pagar →" - -#: classes/widgets/class-wc-widget-best-sellers.php:191 -#: classes/widgets/class-wc-widget-cart.php:109 -#: classes/widgets/class-wc-widget-featured-products.php:169 -#: classes/widgets/class-wc-widget-layered-nav.php:352 -#: classes/widgets/class-wc-widget-onsale.php:178 -#: classes/widgets/class-wc-widget-price-filter.php:183 -#: classes/widgets/class-wc-widget-product-categories.php:185 -#: classes/widgets/class-wc-widget-product-search.php:91 -#: classes/widgets/class-wc-widget-product-tag-cloud.php:101 -#: classes/widgets/class-wc-widget-random-products.php:136 -#: classes/widgets/class-wc-widget-recent-products.php:172 -#: classes/widgets/class-wc-widget-recent-reviews.php:159 -#: classes/widgets/class-wc-widget-recently-viewed.php:168 -#: classes/widgets/class-wc-widget-top-rated-products.php:156 -msgid "Title:" -msgstr "Título:" - -#: classes/widgets/class-wc-widget-featured-products.php:35 -msgid "Display a list of featured products on your site." -msgstr "Exibe uma lista de produtos em destaque no site." - -#: classes/widgets/class-wc-widget-featured-products.php:37 -msgid "WooCommerce Featured Products" -msgstr "WooCommerce Produtos em destaque" - -#: classes/widgets/class-wc-widget-featured-products.php:75 -msgid "Featured Products" -msgstr "Produtos em destaque" - -#: classes/widgets/class-wc-widget-best-sellers.php:194 -#: classes/widgets/class-wc-widget-featured-products.php:172 -#: classes/widgets/class-wc-widget-onsale.php:181 -#: classes/widgets/class-wc-widget-random-products.php:141 -#: classes/widgets/class-wc-widget-recent-products.php:175 -#: classes/widgets/class-wc-widget-recent-reviews.php:162 -#: classes/widgets/class-wc-widget-recently-viewed.php:171 -#: classes/widgets/class-wc-widget-top-rated-products.php:159 -msgid "Number of products to show:" -msgstr "Número de produtos para exibir:" - -#: classes/widgets/class-wc-widget-layered-nav.php:31 -msgid "Shows a custom attribute in a widget which lets you narrow down the list of products when viewing product categories." -msgstr "Mostra um atributo personalizado num widget que permite diminuir a lista de produtos ao visualizar categorias de produtos." - -#: classes/widgets/class-wc-widget-layered-nav.php:33 -msgid "WooCommerce Layered Nav" -msgstr "WooCommerce Camada de navegação" - -#: classes/widgets/class-wc-widget-layered-nav.php:355 -msgid "Attribute:" -msgstr "Atributo:" - -#: classes/widgets/class-wc-widget-price-filter.php:33 -msgid "Shows a price filter slider in a widget which lets you narrow down the list of shown products when viewing product categories." -msgstr "Mostra uma barra de filtro de preço num widget que permite diminuir a lista de produtos apresentado as categorias de produtos." - -#: classes/widgets/class-wc-widget-price-filter.php:35 -msgid "WooCommerce Price Filter" -msgstr "WooCommerce Filtro de preço" - -#: classes/widgets/class-wc-widget-price-filter.php:166 -msgid "Filter by price" -msgstr "Filtrar por preço" - -#: classes/widgets/class-wc-widget-product-categories.php:33 -msgid "A list or dropdown of product categories." -msgstr "Uma lista da categoria de produtos." - -#: classes/widgets/class-wc-widget-product-categories.php:35 -msgid "WooCommerce Product Categories" -msgstr "WooCommerce Categoria de produtos" - -#: classes/widgets/class-wc-widget-product-categories.php:195 -msgid "Show as dropdown" -msgstr "Exibir dropdown" - -#: classes/widgets/class-wc-widget-product-categories.php:198 -msgid "Show post counts" -msgstr "Exibir contagem de posts" - -#: classes/widgets/class-wc-widget-product-categories.php:201 -msgid "Show hierarchy" -msgstr "Exibir hierarquia" - -#: classes/widgets/class-wc-widget-product-search.php:31 -msgid "A Search box for products only." -msgstr "Caixa de pesquisa apenas para os produtos." - -#: classes/widgets/class-wc-widget-product-search.php:33 -msgid "WooCommerce Product Search" -msgstr "WooCommerce Pesquisa de produtos" - -#: woocommerce-template.php:1498 -msgid "Search for:" -msgstr "Pesquisar por:" - -#: woocommerce-template.php:1499 -msgid "Search for products" -msgstr "Procurar produtos" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:31 -msgid "Your most used product tags in cloud format." -msgstr "As etiquetas mais utilizadas são exibidas em forma de nuvem." - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:33 -msgid "WooCommerce Product Tags" -msgstr "WooCommerce Etiqueta de produtos" - -#: classes/widgets/class-wc-widget-recent-products.php:31 -msgid "Display a list of your most recent products on your site." -msgstr "Exibir uma lista dos produtos mais recentes no seu site." - -#: classes/widgets/class-wc-widget-recent-products.php:33 -msgid "WooCommerce Recent Products" -msgstr "WooCommerce Produtos recentes" - -#: classes/widgets/class-wc-widget-recent-products.php:70 -msgid "New Products" -msgstr "Novos produtos" - -#: classes/widgets/class-wc-widget-random-products.php:147 -#: classes/widgets/class-wc-widget-recent-products.php:179 -msgid "Show hidden product variations" -msgstr "Mostrar variações de produtos" - -#: classes/widgets/class-wc-widget-recent-reviews.php:31 -msgid "Display a list of your most recent reviews on your site." -msgstr "Exibir uma lista de avaliações mais recentes no seu site." - -#: admin/woocommerce-admin-dashboard.php:45 -#: classes/widgets/class-wc-widget-recent-reviews.php:33 -msgid "WooCommerce Recent Reviews" -msgstr "WooCommerce Avaliações recentes" - -#: classes/widgets/class-wc-widget-recent-reviews.php:71 -msgid "Recent Reviews" -msgstr "Avaliações recentes" - -#: classes/widgets/class-wc-widget-recently-viewed.php:31 -msgid "Display a list of recently viewed products." -msgstr "Exibir uma lista de produtos visualizados recentemente." - -#: classes/widgets/class-wc-widget-recently-viewed.php:33 -msgid "WooCommerce Recently Viewed Products" -msgstr "WooCommerce Produtos visualizados recentemente" - -#: classes/widgets/class-wc-widget-recently-viewed.php:76 -msgid "Recently viewed" -msgstr "Recentemente visualizados" - -#: classes/widgets/class-wc-widget-top-rated-products.php:33 -msgid "Display a list of top rated products on your site." -msgstr "Exibir uma lista de produtos mais avaliados no seu site." - -#: classes/widgets/class-wc-widget-top-rated-products.php:35 -msgid "WooCommerce Top Rated Products" -msgstr "WooCommerce Produtos mais avaliados" - -#: classes/widgets/class-wc-widget-top-rated-products.php:72 -msgid "Top Rated Products" -msgstr "Produtos mais vendidos" - -#: woocommerce-core-functions.php:1954 -msgid "Customer" -msgstr "Cliente" - -#: woocommerce-core-functions.php:1961 -msgid "Shop Manager" -msgstr "Gerenciar loja" - -#: woocommerce-functions.php:1340 -msgid "You have taken too long. Please go back and refresh the page." -msgstr "Você ficou muito tempo inativo. Por favor, atualize a página." - -#: woocommerce-functions.php:1343 -msgid "Please rate the product." -msgstr "Avalie este produto." - -#: templates/single-product/review.php:33 -msgid "Your comment is awaiting approval" -msgstr "O seu comentário aguarda aprovação" - -#: woocommerce-ajax.php:119 -msgid "Sorry, your session has expired." -msgstr "Desculpe, a sua sessão expirou." - -#: woocommerce-ajax.php:119 -msgid "Return to homepage →" -msgstr "Voltar à página inicial →" - -#: woocommerce-functions.php:230 -#: woocommerce-functions.php:277 -msgid "Cart updated." -msgstr "Carrinho atualizado." - -#: woocommerce-functions.php:321 -#: woocommerce-functions.php:379 -msgid "Please choose product options…" -msgstr "Por favor, escolha as opções do produto" - -#: woocommerce-functions.php:670 -msgid "Username is required." -msgstr "Nome de utilizador é obrigatório" - -#: woocommerce-functions.php:672 -#: woocommerce-functions.php:764 -msgid "Password is required." -msgstr "Senha é obrigatória." - -#: woocommerce-functions.php:904 -msgid "Order cancelled by customer." -msgstr "Pedido cancelado pelo cliente." - -#: woocommerce-functions.php:907 -msgid "Your order was cancelled." -msgstr "O seu pedido foi cancelado." - -#: woocommerce-functions.php:913 -msgid "Your order is no longer pending and could not be cancelled. Please contact us if you need assistance." -msgstr "O seu pedido já não está pendente e não pode ser cancelado. Entre em contato connosco se precisar de ajuda." - -#: classes/class-wc-emails.php:282 -msgid "Product low in stock" -msgstr "Produto com stock baixo" - -#: classes/class-wc-emails.php:291 -msgid "is low in stock." -msgstr "está abaixo do stock mínimo." - -#: classes/class-wc-emails.php:314 -msgid "Product out of stock" -msgstr "Produto em falta" - -#: classes/class-wc-emails.php:323 -msgid "is out of stock." -msgstr "está em falta." - -#: classes/class-wc-emails.php:358 -msgid "Product Backorder" -msgstr "Produto Pendente" - -#: woocommerce.php:826 -msgid "Search Product Categories" -msgstr "Pesquisa de categoria de produtos" - -#: woocommerce.php:827 -msgid "All Product Categories" -msgstr "Todas" - -#: woocommerce.php:828 -msgid "Parent Product Category" -msgstr "Categoria de Produtos pai" - -#: woocommerce.php:829 -msgid "Parent Product Category:" -msgstr "Categoria de Produtos pai:" - -#: woocommerce.php:830 -msgid "Edit Product Category" -msgstr "Editar Categoria de Produto" - -#: woocommerce.php:831 -msgid "Update Product Category" -msgstr "Atualização Categoria de Produto" - -#: woocommerce.php:832 -msgid "Add New Product Category" -msgstr "Adicionar nova categoria de produto" - -#: woocommerce.php:833 -msgid "New Product Category Name" -msgstr "Nome da nova categoria de produto" - -#: admin/includes/updates/woocommerce-update-2.0.php:49 -#: admin/woocommerce-admin-init.php:890 -#: woocommerce.php:786 -msgctxt "slug" -msgid "product-category" -msgstr "categoria-produto" - -#: woocommerce.php:862 -msgid "Search Product Tags" -msgstr "Pesquisar etiqueta de produto" - -#: woocommerce.php:863 -msgid "All Product Tags" -msgstr "Todas as etiquetas de produtos" - -#: woocommerce.php:864 -msgid "Parent Product Tag" -msgstr "Produto Etiqueta Pai" - -#: woocommerce.php:865 -msgid "Parent Product Tag:" -msgstr "Produto Tag Pai:" - -#: woocommerce.php:866 -msgid "Edit Product Tag" -msgstr "Editar Etiqueta de Produto" - -#: woocommerce.php:867 -msgid "Update Product Tag" -msgstr "Atualizar etiqueta de produto" - -#: woocommerce.php:868 -msgid "Add New Product Tag" -msgstr "Nova etiqueta de produto" - -#: woocommerce.php:869 -msgid "New Product Tag Name" -msgstr "Nome da nova etiqueta" - -#: admin/includes/updates/woocommerce-update-2.0.php:50 -#: admin/woocommerce-admin-init.php:903 -#: woocommerce.php:787 -msgctxt "slug" -msgid "product-tag" -msgstr "produto-etiqueta" - -#: woocommerce.php:988 -msgid "Add Product" -msgstr "Novo produto" - -#: woocommerce.php:989 -msgid "Add New Product" -msgstr "Novo produto" - -#: woocommerce.php:991 -msgid "Edit Product" -msgstr "Editar produto" - -#: woocommerce.php:992 -msgid "New Product" -msgstr "Novo produto" - -#: woocommerce.php:993 -#: woocommerce.php:994 -msgid "View Product" -msgstr "Detalhes do produto" - -#: woocommerce.php:995 -msgid "Search Products" -msgstr "Procurar produtos" - -#: woocommerce.php:996 -msgid "No Products found" -msgstr "Nenhum produto encontrado" - -#: woocommerce.php:997 -msgid "No Products found in trash" -msgstr "Nenhum produto encontrado no lixo" - -#: woocommerce.php:1000 -msgid "This is where you can add new products to your store." -msgstr "Aqui você pode adicionar novos produtos para a sua loja." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -#: woocommerce.php:1023 -msgid "Variations" -msgstr "Variações" - -#: woocommerce.php:1024 -msgid "Variation" -msgstr "Variação" - -#: woocommerce.php:1026 -msgid "Add New Variation" -msgstr "Nova variação" - -#: woocommerce.php:1028 -msgid "Edit Variation" -msgstr "Editar variação" - -#: woocommerce.php:1029 -msgid "New Variation" -msgstr "Nova variação" - -#: woocommerce.php:1030 -#: woocommerce.php:1031 -msgid "View Variation" -msgstr "Detalhes da variação" - -#: woocommerce.php:1032 -msgid "Search Variations" -msgstr "Pesquisar variações" - -#: woocommerce.php:1033 -msgid "No Variations found" -msgstr "Nenhuma variação encontrada" - -#: woocommerce.php:1034 -msgid "No Variations found in trash" -msgstr "Nenhuma variação encontrada no lixo" - -#: woocommerce.php:1035 -msgid "Parent Variation" -msgstr "Variação pai" - -#: woocommerce.php:1063 -msgid "Add Order" -msgstr "Adicionar pedido" - -#: woocommerce.php:1064 -msgid "Add New Order" -msgstr "Adicionar novo pedido" - -#: woocommerce.php:1066 -msgid "Edit Order" -msgstr "Editar pedido" - -#: woocommerce.php:1067 -msgid "New Order" -msgstr "Novo pedido" - -#: woocommerce.php:1070 -msgid "Search Orders" -msgstr "Pesquisar pedidos" - -#: woocommerce.php:1071 -msgid "No Orders found" -msgstr "Nenhum pedido encontrado" - -#: woocommerce.php:1072 -msgid "No Orders found in trash" -msgstr "Nenhum pedido na lixeira" - -#: woocommerce.php:1073 -msgid "Parent Orders" -msgstr "Pedidos principais" - -#: woocommerce.php:1076 -msgid "This is where store orders are stored." -msgstr "Isto é onde os pedidos são armazenados." - -#: admin/settings/settings-init.php:105 -#: admin/woocommerce-admin-content.php:61 -#: admin/woocommerce-admin-content.php:76 -#: admin/woocommerce-admin-reports.php:63 -#: woocommerce.php:1098 -msgid "Coupons" -msgstr "Cupões" - -#: woocommerce.php:1101 -msgid "Add Coupon" -msgstr "Adicionar cupão" - -#: woocommerce.php:1102 -msgid "Add New Coupon" -msgstr "Adicionar novo cupão" - -#: woocommerce.php:1104 -msgid "Edit Coupon" -msgstr "Editar cupão" - -#: woocommerce.php:1105 -msgid "New Coupon" -msgstr "Novo cupão" - -#: woocommerce.php:1106 -msgid "View Coupons" -msgstr "Ver cupões" - -#: woocommerce.php:1107 -msgid "View Coupon" -msgstr "Visualizar cupões" - -#: woocommerce.php:1108 -msgid "Search Coupons" -msgstr "Procurar cupões" - -#: woocommerce.php:1109 -msgid "No Coupons found" -msgstr "Nenhum cupão encontrado" - -#: woocommerce.php:1110 -msgid "No Coupons found in trash" -msgstr "Nenhum cupão encontrado no lixo" - -#: woocommerce.php:1111 -msgid "Parent Coupon" -msgstr "Cupão principal" - -#: woocommerce.php:1113 -msgid "This is where you can add new coupons that customers can use in your store." -msgstr "Isto é onde você pode adicionar novos cupões para os clientes usarem na sua loja." - -#: templates/loop/sale-flash.php:16 -#: templates/single-product/sale-flash.php:16 -msgid "Sale!" -msgstr "Promoção" - -#: templates/loop/add-to-cart.php:17 -#: templates/loop/add-to-cart.php:41 -#: templates/loop/add-to-cart.php:50 -msgid "Read More" -msgstr "Saiba mais" - -#: templates/loop/add-to-cart.php:33 -msgid "Select options" -msgstr "Ver opções" - -#: templates/loop/add-to-cart.php:37 -msgid "View options" -msgstr "Ver opções" - -#: admin/settings/settings-init.php:490 -#: classes/class-wc-shortcodes.php:572 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:270 -#: templates/loop/add-to-cart.php:46 -#: templates/single-product/add-to-cart/grouped.php:45 -#: templates/single-product/add-to-cart/grouped.php:77 -#: templates/single-product/add-to-cart/simple.php:44 -#: templates/single-product/add-to-cart/variable.php:83 -msgid "Add to cart" -msgstr "Comprar" - -#: templates/single-product/add-to-cart/variable.php:24 -msgid "Choose an option" -msgstr "Escolha uma opção" - -#: templates/checkout/form-shipping.php:59 -#: woocommerce-template.php:759 -msgid "Additional Information" -msgstr "Informação adicional" - -#: templates/single-product/related.php:36 -msgid "Related Products" -msgstr "Produtos relacionados" - -#: templates/cart/shipping-calculator.php:22 -msgid "Calculate Shipping" -msgstr "Calcular envio" - -#: templates/cart/shipping-calculator.php:85 -msgid "Update Totals" -msgstr "Atualizar total" - -#: templates/cart/totals.php:22 -msgid "Cart Totals" -msgstr "Total no carrinho" - -#: templates/myaccount/form-login.php:26 -#: templates/myaccount/form-login.php:40 -#: templates/shop/form-login.php:31 -msgid "Login" -msgstr "Login" - -#: templates/myaccount/form-login.php:50 -#: templates/shop/form-login.php:33 -msgid "Lost Password?" -msgstr "Perdeu a senha?" - -#: templates/checkout/form-login.php:17 -msgid "Click here to login" -msgstr "Clique aqui para entrar" - -#: woocommerce-template.php:993 -msgctxt "breadcrumb" -msgid "Home" -msgstr "Home" - -#: templates/shop/breadcrumb.php:63 -msgid "Products tagged “" -msgstr "Produtos etiquetados com "" - -#: templates/shop/breadcrumb.php:91 -#: templates/shop/breadcrumb.php:189 -msgid "Search results for “" -msgstr "Procurar produtos por “" - -#: templates/shop/breadcrumb.php:147 -msgid "Error 404" -msgstr "Erro 404" - -#: templates/shop/breadcrumb.php:193 -msgid "Posts tagged “" -msgstr "Posts com etiqueta "" - -#: templates/shop/breadcrumb.php:203 -msgid "Page" -msgstr "Página" - -#: templates/single-product/up-sells.php:39 -msgid "You may also like…" -msgstr "Você também pode gostar…" - -#: templates/cart/cross-sells.php:38 -msgid "You may be interested in…" -msgstr "Você pode estar interessado em…" - -#: admin/settings/settings-init.php:95 -#: woocommerce-template.php:200 -msgid "This is a demo store for testing purposes — no orders shall be fulfilled." -msgstr "Esta é uma loja de demonstração para fins de teste - As compras realizadas não são válidas." - -#: admin/post-types/product.php:373 -msgid "Show all product types" -msgstr "Mostrar todo tipo de produtos" - -#: admin/post-types/product.php:399 -msgid "Show all sub-types" -msgstr "Mostrar todos os sub tipos" - -#: admin/post-types/shop_order.php:51 -#: admin/post-types/writepanels/writepanel-order_data.php:386 -#: admin/post-types/writepanels/writepanel-order_data.php:433 -msgid "Actions" -msgstr "Ações" - -#: admin/post-types/shop_order.php:98 -msgid "made by" -msgstr "feito por" - -#: admin/post-types/shop_order.php:114 -#: admin/post-types/shop_order.php:123 -msgid "Via" -msgstr "Via" - -#: admin/post-types/shop_order.php:165 -msgid "Complete" -msgstr "Completo" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "Apply before tax" -msgstr "Aplicar antes do imposto" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "Enable free shipping" -msgstr "Habilitar envio grátis" - -#: admin/post-types/writepanels/writepanel-order_data.php:195 -msgid "No billing address set." -msgstr "Nenhum endereço de faturação adicionado." - -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "No shipping address set." -msgstr "Nenhum endereço de entrega adicionado." - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save/update the order" -msgstr "Salvar/Atualizar o pedido" - -#: admin/post-types/writepanels/writepanel-order_data.php:502 -#: classes/class-wc-order.php:955 -msgid "Cart Discount:" -msgstr "Desconto do carrinho:" - -#: admin/post-types/writepanels/writepanel-order_data.php:510 -#: classes/class-wc-order.php:997 -msgid "Order Discount:" -msgstr "Desconto da compra:" - -#: admin/post-types/writepanels/writepanel-order_data.php:656 -#: classes/class-wc-order.php:1002 -msgid "Order Total:" -msgstr "Total da compra:" - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "Add a note for your reference, or add a customer note (the user will be notified)." -msgstr "Adicionar uma nota para sua referência, ou adicionar uma nota de cliente (o utilizador será notificado)." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations for variable products are defined here." -msgstr "Variações para produtos variáveis são definidas aqui." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:80 -msgid "Prices" -msgstr "Preço normal" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:81 -msgid "Sale prices" -msgstr "Preço de venda" - -#: admin/post-types/product.php:94 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:82 -#: admin/woocommerce-admin-content.php:63 -#: admin/woocommerce-admin-reports.php:90 -msgid "Stock" -msgstr "Stock" - -#: admin/post-types/writepanels/variation-admin-html.php:20 -msgid "Any" -msgstr "Qualquer" - -#: admin/post-types/writepanels/variation-admin-html.php:52 -msgid "Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "Indique um código de Referência (REF) para esta variação ou deixe em branco para usar a REF do produto anterior." - -#: admin/post-types/writepanels/variation-admin-html.php:96 -msgid "Enter a weight for this variation or leave blank to use the parent product weight." -msgstr "Indique o peso para esta variação ou deixe em branco para usar o peso do produto pai." - -#: admin/post-types/writepanels/variation-admin-html.php:104 -msgid "Dimensions (L×W×H)" -msgstr "Dimensões (C×L×A)" - -#: admin/post-types/writepanels/variation-admin-html.php:145 -msgid "Upload" -msgstr "Upload" - -#: admin/post-types/writepanels/variation-admin-html.php:150 -msgid "Download Limit:" -msgstr "Limite de downloads:" - -#: admin/post-types/writepanels/order-download-permission-html.php:19 -#: admin/post-types/writepanels/variation-admin-html.php:151 -#: admin/post-types/writepanels/variation-admin-html.php:159 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Unlimited" -msgstr "Ilimitado" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:211 -msgid "No default" -msgstr "Nenhum padrão" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:564 -msgid "Variable product" -msgstr "Produto variável" - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Product URL" -msgstr "URL do produto" - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Enter the external URL to the product." -msgstr "Indique um URL externo para o produto." - -#: admin/post-types/product.php:385 -#: admin/post-types/writepanels/writepanel-product_data.php:38 -msgid "Simple product" -msgstr "Produto simples" - -#: admin/post-types/product.php:381 -#: admin/post-types/writepanels/writepanel-product_data.php:39 -msgid "Grouped product" -msgstr "Grupo de produto" - -#: admin/post-types/product.php:383 -#: admin/post-types/writepanels/writepanel-product_data.php:40 -msgid "External/Affiliate product" -msgstr "Externo/Produto de afiliado" - -#: admin/post-types/writepanels/variation-admin-html.php:176 -msgid "Enable this option if a product is not shipped or there is no shipping cost" -msgstr "Habilite esta opção se o produto não é entregue ou não tem custos de entrega" - -#: admin/post-types/writepanels/variation-admin-html.php:174 -msgid "Enable this option if access is given to a downloadable file upon purchase of a product" -msgstr "Habilite esta opção se será dado acesso ao download de um arquivo após a compra de um produto" - -#: admin/post-types/writepanels/writepanels-init.php:101 -msgid "Product name" -msgstr "Nome do produto" - -#: admin/woocommerce-admin-attributes.php:245 -#: admin/woocommerce-admin-attributes.php:384 -msgid "Name for the attribute (shown on the front-end)." -msgstr "Nome do atributo (mostrado no front-end)." - -#: admin/woocommerce-admin-attributes.php:254 -#: admin/woocommerce-admin-attributes.php:390 -msgid "Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "Slug/referência única para o atributo, deve ser mais curta do que 28 carateres." - -#: woocommerce.php:951 -msgid "All" -msgstr "Todos" - -#: woocommerce.php:952 -#: woocommerce.php:953 -msgid "Parent" -msgstr "Pai" - -#: admin/woocommerce-admin-attributes.php:285 -#: woocommerce.php:955 -msgid "Update" -msgstr "Atualizar" - -#: woocommerce.php:956 -msgid "Add New" -msgstr "Adicionar novo" - -#: woocommerce.php:957 -msgid "New" -msgstr "Novo" - -#: admin/woocommerce-admin-init.php:88 -msgid "WooCommerce Settings" -msgstr "Opções WooCommerce" - -#: admin/woocommerce-admin-init.php:448 -msgid "Load the customer's billing information? This will remove any currently entered billing information." -msgstr "Carregar informações de pagamento do cliente? Isto irá remover qualquer informação de pagamento existente." - -#: admin/woocommerce-admin-init.php:449 -msgid "Load the customer's shipping information? This will remove any currently entered shipping information." -msgstr "Carregar informações de entrega do cliente? Isto irá remover qualquer informação de entrega existente." - -#: admin/woocommerce-admin-init.php:453 -msgid "No customer selected" -msgstr "Nenhum cliente selecionado" - -#: admin/woocommerce-admin-reports.php:32 -msgid "Sales by day" -msgstr "Vendas por dia" - -#: admin/woocommerce-admin-reports.php:37 -msgid "Sales by month" -msgstr "Vendas por mês" - -#: admin/woocommerce-admin-reports.php:1111 -msgid "Product no longer exists" -msgstr "Este produto não existe mais" - -#: admin/woocommerce-admin-settings.php:853 -msgid "Choose a country…" -msgstr "Escolha o país…" - -#: admin/woocommerce-admin-settings.php:873 -msgid "Choose countries…" -msgstr "Escolha os países…" - -#: admin/settings/settings-tax-rates.php:44 -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "Indique uma Taxa fixa (porcentagem) de até 4 casas decimais." - -#: admin/settings/settings-tax-rates.php:52 -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "Escolha se esta taxa será aplicada ou não ao envio." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:562 -msgid "Delete the selected rates?" -msgstr "Excluir taxas selecionadas?" - -#: admin/settings/settings-init.php:47 -msgid "This controls what currency prices are listed at in the catalog and which currency gateways will take payments in." -msgstr "Isto controla qual a moeda que será utilizada e quais os gateways de pagamento." - -#: admin/settings/settings-init.php:175 -msgid "Customer Accounts" -msgstr "Contas de clientes" - -#: admin/settings/settings-init.php:184 -msgid "Clear cart when logging out" -msgstr "Limpar carrinho quando terminar a sessão" - -#: admin/settings/settings-init.php:176 -msgid "Prevent customers from accessing WordPress admin" -msgstr "Impedir clientes de aceder à administração do sistema" - -#: admin/settings/settings-init.php:204 -msgid "Styling" -msgstr "Estilo" - -#: admin/settings/settings-init.php:216 -msgid "Scripts" -msgstr "Scripts" - -#: admin/settings/settings-init.php:240 -msgid "Forcing downloads will keep URLs hidden, but some servers may serve large files unreliably. If supported, X-Accel-Redirect/ X-Sendfile can be used to serve downloads instead (server requires mod_xsendfile)." -msgstr "Forçar downloads mantém a URLs dos arquivos escondida, mas alguns servidores podem gerir grandesarquivos de modo não confiável. Se suportado, X-Accel-Redirect/X-Sendfile pode ser usado para gerir downloads em vez disso(servidor requer mod_xsendfile)." - -#: admin/settings/settings-init.php:248 -msgid "Force Downloads" -msgstr "Forçar downloads" - -#: admin/settings/settings-init.php:249 -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "X-Accel-Redirect/X-Sendfile" - -#: admin/settings/settings-init.php:250 -msgid "Redirect only" -msgstr "Apenas redirecionar" - -#: admin/settings/settings-init.php:18 -msgid "Localisation" -msgstr "Localização" - -#: admin/settings/settings-init.php:668 -#, php-format -msgid "These settings affect the actual dimensions of images in your catalog - the display on the front-end will still be affected by CSS styles. After changing these settings you may need to regenerate your thumbnails." -msgstr "Estas configurações afetam as dimensões reais das imagens no seu catálogo - a visão front-end ainda será afetada por estilo CSS.

    Depois de alterar estas configurações pode precisar do plugin regenerate your thumbnails para reajustar o tamanho das imagens." - -#: admin/settings/settings-init.php:827 -msgid "Enable shipping" -msgstr "Habilitar envio" - -#: admin/settings/settings-init.php:874 -msgid "Ship to billing address by default" -msgstr "Enviar para o endereço de faturação por padrão" - -#: admin/settings/settings-init.php:1012 -msgid "Email Sender Options" -msgstr "Opções de remetente" - -#: admin/settings/settings-init.php:1037 -#, php-format -msgid "This section lets you customise the WooCommerce emails. Click here to preview your email template. For more advanced control copy woocommerce/templates/emails/ to yourtheme/woocommerce/emails/." -msgstr "Esta seção permite personalizar os emails do WooCommerce. Clique aqui para visualizar o modelo de e-mail. Para controle mais avançado copie woocommerce/templates/emails/ para seutema/woocommerce/emails/." - -#: admin/settings/settings-init.php:1041 -#, php-format -msgid "Enter a URL to an image you want to show in the email's header. Upload your image using the media uploader." -msgstr "Indique a URL para uma imagem que você deseja mostrar no cabeçalho do email. Envie uma imagem do computador utilizando media uploader." - -#: admin/settings/settings-init.php:1050 -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "O texto para aparecer no rodapé dos emails enviados pelo WooCommerce." - -#: admin/settings/settings-init.php:1059 -msgid "The base colour for WooCommerce email templates. Default #557da1." -msgstr "A base de cores para o template de email. O padrão é #557da1." - -#: admin/settings/settings-init.php:1077 -msgid "The main body background colour. Default #fdfdfd." -msgstr "A cor de fundo no corpo do email. O padrão é #fdfdfd." - -#: admin/settings/settings-init.php:1086 -msgid "The main body text colour. Default #505050." -msgstr "A cor do texto no corpo do email. O padrão é #505050" - -#: classes/integrations/sharethis/class-wc-sharethis.php:29 -msgid "ShareThis" -msgstr "ShareThis" - -#: classes/integrations/sharethis/class-wc-sharethis.php:30 -msgid "ShareThis offers a sharing widget which will allow customers to share links to products with their friends." -msgstr "ShareThis oferece um widget de compartilhamento que permite os clientes da loja compartilhar link dos produtos com os seus amigos nas redes sociais." - -#: classes/integrations/sharethis/class-wc-sharethis.php:78 -#, php-format -msgid "Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons on product pages." -msgstr "Indique o seu %1$sShareThis publisher ID%2$s para exibir os botões de compartilhamento social nas páginas de produtos." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:26 -msgid "Google Analytics" -msgstr "Google Analytics" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:27 -msgid "Google Analytics is a free service offered by Google that generates detailed statistics about the visitors to a website." -msgstr "Google Analytics é um serviço gratuito oferecido pelo Google, ele gera estatísticas sobre os visitantes do seu site." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:75 -msgid "Tracking code" -msgstr "Código de monitoramento" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:76 -msgid "Add tracking code to your site's footer. You don't need to enable this if using a 3rd party analytics plugin." -msgstr "Adicionar o código de monitoramento no rodapé do seu site. Você não precisa habilitar esta opção se estiver a usar um plugin de estatísticas de terceiros." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:82 -msgid "Add eCommerce tracking code to the thankyou page" -msgstr "Adicionar código de monitoramento na página \"Obrigado pela sua compra\"" - -#: admin/includes/notice-install.php:7 -msgid "Skip setup" -msgstr "Ignorar configuração" - -#: admin/woocommerce-admin-content.php:51 -#: admin/woocommerce-admin-settings.php:189 -msgid "Emails" -msgstr "Emails" - -#: admin/woocommerce-admin-content.php:52 -#: admin/woocommerce-admin-settings.php:190 -msgid "Integration" -msgstr "Integração" - -#: admin/settings/settings-shipping-methods.php:32 -msgid "Shipping Method" -msgstr "Método de entrega" - -#: admin/settings/settings-shipping-methods.php:46 -msgid "Method ID" -msgstr "ID do método" - -#: admin/settings/settings-payment-gateways.php:27 -#: admin/settings/settings-shipping-methods.php:31 -#: admin/woocommerce-admin-init.php:762 -#: admin/woocommerce-admin-taxonomies.php:27 -#: admin/woocommerce-admin-taxonomies.php:121 -msgid "Default" -msgstr "Padrão" - -#: admin/settings/settings-payment-gateways.php:28 -msgid "Gateway" -msgstr "Gateway" - -#: admin/settings/settings-payment-gateways.php:45 -msgid "Gateway ID" -msgstr "Gateway ID" - -#: admin/woocommerce-admin-taxonomies.php:222 -msgid "Product categories for your store can be managed here. To change the order of categories on the front-end you can drag and drop to sort them. To see more categories listed click the \"screen options\" link at the top of the page." -msgstr "As categorias de produtos da sua loja são organizadas aqui. Para alterar a ordem das categorias no front-end você pode arrastar e solta-los. Para ver mais categorias clique em \"opções de visualização\" no topo da página." - -#: admin/woocommerce-admin-taxonomies.php:237 -msgid "Shipping classes can be used to group products of similar type. These groups can then be used by certain shipping methods to provide different rates to different products." -msgstr "Classes de envio podem ser usados ​​para agrupar os produtos do mesmo tipo. Estes grupos podem então ser usados por determinados métodos de envio para fornecer taxas diferentes para diferentes produtos." - -#: admin/woocommerce-admin-users.php:28 -msgid "Paying Customer?" -msgstr "Cliente Pagante?" - -#: admin/woocommerce-admin-users.php:147 -#: admin/woocommerce-admin-users.php:196 -msgid "First name" -msgstr "Primeiro nome" - -#: admin/woocommerce-admin-users.php:151 -#: admin/woocommerce-admin-users.php:200 -msgid "Last name" -msgstr "Apelido" - -#: admin/woocommerce-admin-users.php:183 -msgid "Telephone" -msgstr "Telefone" - -#: admin/woocommerce-admin-users.php:225 -msgid "State/County or state code" -msgstr "Estado/País ou código do estado" - -#: admin/woocommerce-admin-users.php:180 -#: admin/woocommerce-admin-users.php:229 -msgid "2 letter Country code" -msgstr "Código do país com 2 letras" - -#: classes/class-wc-cart.php:1797 -msgid "via" -msgstr "via" - -#: classes/class-wc-checkout.php:445 -#: woocommerce-functions.php:1708 -msgid "is a required field." -msgstr "é um campo obrigatório" - -#: classes/class-wc-checkout.php:487 -msgid "is not a valid number." -msgstr "não é um número válido." - -#: classes/class-wc-checkout.php:494 -msgid "is not a valid email address." -msgstr "não é um endereço de email válido." - -#: classes/class-wc-countries.php:134 -msgid "Hong Kong" -msgstr "Hong Kong" - -#: classes/class-wc-countries.php:238 -msgid "South Georgia/Sandwich Islands" -msgstr "Ilhas Geórgia do Sul e Sandwich do Sul" - -#: i18n/states/US.php:71 -msgid "US Minor Outlying Islands" -msgstr "Ilhas Menores Distantes dos Estados Unidos" - -#: i18n/states/BR.php:16 -msgid "Amazonas" -msgstr "Amazonas" - -#: i18n/states/BR.php:13 -msgid "Acre" -msgstr "Acre" - -#: i18n/states/BR.php:14 -msgid "Alagoas" -msgstr "Alagoas" - -#: i18n/states/BR.php:15 -msgid "Amapá" -msgstr "Amapá" - -#: i18n/states/BR.php:18 -msgid "Ceará" -msgstr "Ceará" - -#: i18n/states/BR.php:22 -msgid "Maranhão" -msgstr "Maranhão" - -#: i18n/states/BR.php:28 -msgid "Paraná" -msgstr "Paraná" - -#: i18n/states/BR.php:29 -msgid "Pernambuco" -msgstr "Pernambuco" - -#: i18n/states/BR.php:30 -msgid "Piauí" -msgstr "Piauí" - -#: i18n/states/BR.php:34 -msgid "Rondônia" -msgstr "Rondônia" - -#: i18n/states/BR.php:35 -msgid "Roraima" -msgstr "Roraima" - -#: i18n/states/BR.php:38 -msgid "Sergipe" -msgstr "Sergipe" - -#: i18n/states/BR.php:39 -msgid "Tocantins" -msgstr "Tocantins" - -#: i18n/states/BR.php:26 -msgid "Pará" -msgstr "Pará" - -#: i18n/states/BR.php:17 -msgid "Bahia" -msgstr "Bahia" - -#: i18n/states/BR.php:21 -msgid "Goiás" -msgstr "Goiás" - -#: i18n/states/HK.php:13 -msgid "Hong Kong Island" -msgstr "Ilha de Hong Kong" - -#: i18n/states/HK.php:15 -msgid "New Territories" -msgstr "Novos Territórios" - -#: i18n/states/US.php:14 -msgid "Alaska" -msgstr "Alasca" - -#: classes/class-wc-countries.php:432 -msgid "the" -msgstr "o" - -#: classes/class-wc-countries.php:444 -msgid "VAT" -msgstr "IVA" - -#: classes/class-wc-countries.php:470 -msgid "(ex. VAT)" -msgstr "(sem IVA)" - -#: classes/class-wc-countries.php:774 -#: classes/class-wc-countries.php:784 -#: classes/class-wc-countries.php:804 -#: classes/class-wc-countries.php:859 -#: classes/class-wc-countries.php:883 -#: classes/class-wc-countries.php:933 -#: classes/class-wc-countries.php:957 -#: classes/class-wc-countries.php:998 -msgid "Province" -msgstr "Província" - -#: classes/class-wc-countries.php:799 -#: classes/class-wc-countries.php:939 -msgid "Municipality" -msgstr "Município" - -#: classes/class-wc-countries.php:849 -msgid "Region" -msgstr "Região" - -#: classes/class-wc-countries.php:962 -msgid "Zip" -msgstr "Código Postal" - -#: classes/class-wc-countries.php:973 -msgid "County" -msgstr "País" - -#: classes/class-wc-countries.php:694 -msgid "Company Name" -msgstr "Nome da empresa" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:104 -msgid "Gateway Disabled" -msgstr "Gateway desabilitado" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:104 -msgid "PayPal does not support your store currency." -msgstr "PayPal não suporta a moeda atual utilizada na sua loja." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:705 -msgid "Order refunded/reversed" -msgstr "Pedido cancelado/devolvido" - -#: templates/emails/email-order-items.php:50 -msgid "Download:" -msgstr "Download:" - -#: classes/abstracts/abstract-wc-product.php:875 -msgctxt "min_price" -msgid "From:" -msgstr "Desde:" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:25 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:85 -msgid "Flat Rate" -msgstr "Taxa fixa" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:145 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:94 -msgid "Per Order - charge shipping for the entire order as a whole" -msgstr "Por pedido - Cobrar o envio de todo o pedido como um todo" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:146 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:95 -msgid "Per Item - charge shipping for each item individually" -msgstr "Por item - Cobrar o envio por cada item individualmente" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:147 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:96 -msgid "Per Class - charge shipping for each shipping class in an order" -msgstr "Por classe - Cobrar envio por cada classe de entrega no pedido" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:485 -#: woocommerce.php:891 -msgid "Shipping Class" -msgstr "Classe de entrega" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:486 -msgid "Cost, excluding tax." -msgstr "Custo, sem taxa" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:487 -msgid "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -msgstr "Taxa sem imposto. Indique um valor ex. 2.50, ou uma porcentagem ex. 5%" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:518 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:548 -msgid "Select a class…" -msgstr "Selecione uma classe…" - -#: classes/emails/class-wc-email-customer-note.php:36 -msgid "A note has been added to your order" -msgstr "Uma nota foi adicionada ao seu pedido" - -#: i18n/strings.php:16 -msgid "pending" -msgstr "pendente" - -#: i18n/strings.php:17 -msgid "failed" -msgstr "falhou" - -#: i18n/strings.php:18 -msgid "on-hold" -msgstr "aguardando" - -#: i18n/strings.php:19 -msgid "processing" -msgstr "processando" - -#: i18n/strings.php:20 -msgid "completed" -msgstr "concluído" - -#: i18n/strings.php:21 -msgid "refunded" -msgstr "reembolsado" - -#: i18n/strings.php:22 -msgid "cancelled" -msgstr "cancelado" - -#: templates/cart/cart.php:134 -msgid "Update Cart" -msgstr "Atualizar carrinho" - -#: templates/cart/totals.php:28 -#: templates/checkout/review-order.php:27 -msgid "Cart Subtotal" -msgstr "Subtotal" - -#: templates/cart/totals.php:35 -#: templates/cart/totals.php:83 -msgid "[Remove]" -msgstr "[Remover]" - -#: templates/cart/totals.php:83 -#: templates/checkout/review-order.php:82 -msgid "Order Discount" -msgstr "Desconto do pedido" - -#: templates/cart/shipping-methods.php:76 -#: templates/cart/totals.php:147 -#, php-format -msgid "Sorry, it seems that there are no available shipping methods for your location (%s)." -msgstr "Desculpe, aparentemente não existem métodos de entrega disponíveis para a sua localidade (%s)." - -#: templates/cart/shipping-methods.php:76 -#: templates/cart/totals.php:147 -msgid "If you require assistance or wish to make alternate arrangements please contact us." -msgstr "Se você precisa de ajuda ou deseja fazer uma negociação para realizar a entrega, entre em contato connosco." - -#: templates/checkout/form-coupon.php:17 -msgid "Have a coupon?" -msgstr "Você tem um cupão de desconto?" - -#: templates/checkout/form-coupon.php:20 -msgid "Click here to enter your code" -msgstr "Clique aqui e indique o código do seu cupão de desconto" - -#: templates/checkout/form-checkout.php:20 -msgid "You must be logged in to checkout." -msgstr "Você precisa estar logado para poder finalizar a compra." - -#: classes/class-wc-order.php:949 -msgid "Cart Subtotal:" -msgstr "Subtotal:" - -#: templates/emails/customer-note.php:14 -#: templates/emails/plain/customer-note.php:13 -msgid "Hello, a note has just been added to your order:" -msgstr "Olá, uma nota foi adicionada ao seu pedido:" - -#: templates/emails/customer-note.php:18 -#: templates/emails/plain/customer-note.php:21 -msgid "For your reference, your order details are shown below." -msgstr "Para sua referência, os dados do seu pedido são mostrados a seguir." - -#: admin/woocommerce-admin-functions.php:192 -msgid "Thank you, we are now processing your order. Your order's details are below." -msgstr "Obrigado, iremos agora processar o seu pedido. Os detalhes do seu pedido estão abaixo." - -#: templates/myaccount/form-login.php:60 -#: templates/myaccount/form-login.php:101 -msgid "Register" -msgstr "Registar" - -#: templates/myaccount/form-login.php:89 -msgid "Re-enter password" -msgstr "Repita a senha" - -#: templates/order/tracking.php:20 -msgid "and was completed" -msgstr "e foi concluído" - -#: templates/shop/breadcrumb.php:198 -msgid "Author:" -msgstr "Autor:" - -#: classes/class-wc-product-external.php:56 -msgid "Buy product" -msgstr "Comprar produto" - -#: templates/single-product-reviews.php:69 -msgid "Be the first to review" -msgstr "Seja o primeiro a fazer uma avaliação" - -#: templates/single-product-reviews.php:107 -msgid "Your Review" -msgstr "

    A sua avaliação sobre o produto

    " - -#: classes/widgets/class-wc-widget-best-sellers.php:31 -msgid "Display a list of your best selling products on your site." -msgstr "Exibe uma lista dos produtos mais vendidos no seu site." - -#: classes/widgets/class-wc-widget-best-sellers.php:33 -msgid "WooCommerce Best Sellers" -msgstr "WooCommerce - Mais vendidos" - -#: classes/widgets/class-wc-widget-best-sellers.php:71 -msgid "Best Sellers" -msgstr "Mais vendidos" - -#: classes/widgets/class-wc-widget-cart.php:113 -msgid "Hide if cart is empty" -msgstr "Esconder o carrinho se estiver vazio" - -#: classes/widgets/class-wc-widget-layered-nav.php:372 -msgid "Query Type:" -msgstr "Tipo de consulta:" - -#: classes/widgets/class-wc-widget-layered-nav.php:374 -msgid "AND" -msgstr "E" - -#: classes/widgets/class-wc-widget-layered-nav.php:375 -msgid "OR" -msgstr "OU" - -#: admin/woocommerce-admin-install.php:219 -msgid "Logout" -msgstr "Sair" - -#: classes/widgets/class-wc-widget-onsale.php:31 -msgid "Display a list of your on-sale products on your site." -msgstr "Exibe uma lista dos produtos à venda no site." - -#: classes/widgets/class-wc-widget-onsale.php:33 -msgid "WooCommerce On-sale" -msgstr "WooCommerce À venda" - -#: classes/widgets/class-wc-widget-onsale.php:70 -msgid "On Sale" -msgstr "À venda" - -#: classes/widgets/class-wc-widget-price-filter.php:140 -msgid "Min price" -msgstr "Preço mínimo" - -#: classes/widgets/class-wc-widget-price-filter.php:141 -msgid "Max price" -msgstr "Preço máximo" - -#: classes/widgets/class-wc-widget-price-filter.php:142 -msgid "Filter" -msgstr "Filtro" - -#: classes/widgets/class-wc-widget-product-categories.php:188 -msgid "Order by:" -msgstr "Ordenar por:" - -#: classes/widgets/class-wc-widget-product-categories.php:190 -msgid "Category Order" -msgstr "Ordem de categoria" - -#: woocommerce-functions.php:765 -msgid "Re-enter your password." -msgstr "Repita a sua senha." - -#: woocommerce-functions.php:770 -msgid "Anti-spam field was filled in." -msgstr "Campo anti spam foi preenchido." - -#: woocommerce-functions.php:1286 -msgid "New products" -msgstr "Novos produtos" - -#: woocommerce-functions.php:1294 -#, php-format -msgid "New products added to %s" -msgstr "Novos produtos adicionados para %s" - -#: woocommerce-functions.php:1302 -#, php-format -msgid "New products tagged %s" -msgstr "Novos produtos tageados %s" - -#: woocommerce.php:888 -#: woocommerce.php:890 -msgid "Shipping Classes" -msgstr "Classes de entrega" - -#: woocommerce.php:893 -msgid "Search Shipping Classes" -msgstr "Procurar Classes de entrega" - -#: woocommerce.php:894 -msgid "All Shipping Classes" -msgstr "Todas as Classes de entrega" - -#: woocommerce.php:895 -msgid "Parent Shipping Class" -msgstr "Classe de entrega pai" - -#: woocommerce.php:896 -msgid "Parent Shipping Class:" -msgstr "Classe de entrega pai:" - -#: woocommerce.php:897 -msgid "Edit Shipping Class" -msgstr "Editar Classe de entrega" - -#: woocommerce.php:898 -msgid "Update Shipping Class" -msgstr "Atualizar Classe de entrega" - -#: woocommerce.php:899 -msgid "Add New Shipping Class" -msgstr "Adicionar nova Classe de entrega" - -#: woocommerce.php:900 -msgid "New Shipping Class Name" -msgstr "Nome da nova Classe de entrega" - -#: woocommerce.php:1208 -msgid "Select an option…" -msgstr "Selecione uma opção" - -#: woocommerce.php:1694 -msgid "Product % Discount" -msgstr "Desconto do produto %" - -#: admin/post-types/writepanels/writepanel-order_data.php:339 -msgid "Item" -msgstr "Item" - -#: admin/post-types/writepanels/writepanel-order_data.php:498 -msgid "Discounts" -msgstr "Descontos" - -#: admin/post-types/writepanels/writepanel-order_data.php:559 -msgid "Method:" -msgstr "Método:" - -#: admin/post-types/writepanels/order-tax-html.php:20 -#: admin/post-types/writepanels/writepanel-order_data.php:638 -msgid "Shipping Tax:" -msgstr "Imposto de Entrega:" - -#: admin/post-types/writepanels/writepanel-order_data.php:597 -msgid "Tax Rows" -msgstr "Linhas de Impostos" - -#: admin/post-types/writepanels/writepanel-order_data.php:664 -msgid "Payment Method:" -msgstr "Método de Pagamento:" - -#: admin/post-types/writepanels/variation-admin-html.php:76 -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Schedule" -msgstr "Programar" - -#: admin/woocommerce-admin-settings.php:228 -msgid "Tax Rates" -msgstr "Taxas Fiscais" - -#: admin/settings/settings-tax-rates.php:50 -#: admin/settings/settings-tax-rates.php:217 -msgid "Compound" -msgstr "Composto" - -#: admin/settings/settings-tax-rates.php:50 -msgid "Choose whether or not this is a compound rate. Compound tax rates are applied on top of other tax rates." -msgstr "Escolha se esta é ou não uma taxa composta. Taxas compostas são aplicadas preferêncialmente sobre taxas fiscais." - -#: templates/cart/totals.php:123 -#, php-format -msgid "Note: Shipping and taxes are estimated%s and will be updated during checkout based on your billing and shipping information." -msgstr "Nota: Envio e impostos são estimados%s e serão atualizados durante a finalização com base nas suas informações de faturação e envio." - -#: admin/post-types/product.php:152 -msgid "Edit this item inline" -msgstr "Editar este item de linha" - -#: admin/post-types/product.php:152 -msgid "Quick Edit" -msgstr "Edição Rápida" - -#: admin/post-types/product.php:156 -#: admin/post-types/shop_coupon.php:65 -msgid "Restore this item from the Trash" -msgstr "Restaurar este item do Lixo" - -#: admin/post-types/product.php:156 -#: admin/post-types/shop_coupon.php:65 -msgid "Restore" -msgstr "Restaurar" - -#: admin/post-types/product.php:158 -#: admin/post-types/shop_coupon.php:67 -msgid "Move this item to the Trash" -msgstr "Mover este item para o Lixo" - -#: admin/post-types/product.php:158 -#: admin/post-types/shop_coupon.php:67 -msgid "Trash" -msgstr "Lixo" - -#: admin/post-types/product.php:160 -#: admin/post-types/shop_coupon.php:69 -msgid "Delete this item permanently" -msgstr "Excluir este item permanentemente" - -#: admin/post-types/product.php:165 -#, php-format -msgid "Preview “%s”" -msgstr "Visualizar “%s”" - -#: admin/post-types/product.php:165 -msgid "Preview" -msgstr "Visualizar" - -#: admin/post-types/product.php:167 -#, php-format -msgid "View “%s”" -msgstr "Exibir “%s”" - -#: admin/post-types/product.php:214 -msgid "Grouped" -msgstr "Agrupado" - -#: admin/post-types/product.php:216 -msgid "External/Affiliate" -msgstr "Externo/Afiliado" - -#: admin/post-types/product.php:224 -msgid "Simple" -msgstr "Simples" - -#: admin/post-types/product.php:228 -#: admin/post-types/product.php:387 -msgid "Variable" -msgstr "Variável" - -#: admin/post-types/product.php:570 -msgid "Regular price" -msgstr "Preço normal" - -#: admin/post-types/product.php:575 -#: admin/post-types/product.php:813 -msgid "Sale" -msgstr "Venda" - -#: admin/post-types/product.php:577 -msgid "Sale price" -msgstr "Preço de venda" - -#: admin/post-types/product.php:599 -#: admin/post-types/product.php:863 -msgid "L/W/H" -msgstr "C/L/A" - -#: admin/post-types/product.php:613 -#: admin/post-types/product.php:887 -msgid "Visibility" -msgstr "Visibilidade" - -#: admin/post-types/product.php:618 -#: admin/post-types/product.php:893 -msgid "Catalog & search" -msgstr "Catálogo & pesquisa" - -#: admin/post-types/product.php:636 -#: admin/post-types/product.php:924 -msgid "In stock?" -msgstr "Em stock?" - -#: admin/post-types/product.php:794 -#: admin/post-types/product.php:818 -#: admin/post-types/product.php:844 -#: admin/post-types/product.php:868 -#: admin/post-types/product.php:892 -#: admin/post-types/product.php:911 -#: admin/post-types/product.php:929 -#: admin/post-types/product.php:947 -#: admin/post-types/product.php:966 -msgid "— No Change —" -msgstr "— Sem mudanças —" - -#: admin/post-types/product.php:795 -#: admin/post-types/product.php:819 -#: admin/post-types/product.php:845 -#: admin/post-types/product.php:869 -#: admin/post-types/product.php:967 -msgid "Change to:" -msgstr "Alterar para:" - -#: admin/post-types/product.php:912 -#: admin/post-types/product.php:948 -#: admin/post-types/shop_order.php:190 -#: admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:297 -msgid "Yes" -msgstr "Sim" - -#: admin/post-types/product.php:913 -#: admin/post-types/product.php:949 -#: admin/post-types/shop_order.php:192 -#: admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:297 -msgid "No" -msgstr "Não" - -#: admin/post-types/shop_order.php:49 -msgid "Customer Notes" -msgstr "Notas para o cliente" - -#: admin/post-types/writepanels/writepanel-order_data.php:140 -msgid "Billing Details" -msgstr "Detalhes de Faturação" - -#: admin/post-types/writepanels/writepanel-order_data.php:230 -msgid "Shipping Details" -msgstr "Detalhes para Envio" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -msgid "Tax class for the line item" -msgstr "Classe de impostos para o item." - -#: admin/post-types/writepanels/order-fee-html.php:17 -#: admin/post-types/writepanels/order-item-html.php:89 -msgid "Tax class" -msgstr "Classe de imposto" - -#: admin/post-types/writepanels/writepanel-order_data.php:622 -msgid "These rows contain taxes for this order. This allows you to display multiple or compound taxes rather than a single total." -msgstr "Estas linhas contêm taxas para este pedido. Isso permite exibir múltiplas ou taxas compostas em vez de um único total." - -#: admin/post-types/writepanels/writepanel-order_data.php:622 -msgid "+ Add tax row" -msgstr "+ Adicionar linha de imposto" - -#: admin/post-types/writepanels/writepanel-order_data.php:626 -msgid "Tax Totals" -msgstr "Impostos totais" - -#: admin/post-types/writepanels/order-download-permission-html.php:6 -msgid "Revoke Access" -msgstr "Cancelar acesso" - -#: admin/post-types/writepanels/order-download-permission-html.php:7 -#: admin/post-types/writepanels/variation-admin-html.php:7 -#: admin/post-types/writepanels/writepanel-product_data.php:371 -#: admin/post-types/writepanels/writepanel-product_data.php:465 -#: admin/woocommerce-admin-init.php:439 -msgid "Click to toggle" -msgstr "Clique para alterar" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -#, php-format -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "Descarregado %s vez" -msgstr[1] "Baixado %s vezes" - -#: admin/post-types/writepanels/order-download-permission-html.php:16 -msgid "Downloads Remaining" -msgstr "Downloads restantes" - -#: admin/post-types/writepanels/order-download-permission-html.php:22 -msgid "Access Expires" -msgstr "Acesso expirado" - -#: admin/post-types/writepanels/order-download-permission-html.php:23 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Never" -msgstr "Nunca" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:57 -msgid "Choose a downloadable product…" -msgstr "Escolha um producto para download…" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:87 -msgid "Grant Access" -msgstr "Conceder Acesso" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:148 -msgid "Are you sure you want to revoke access to this download?" -msgstr "Tem certeza de que quer revogar o acesso a este download?" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:73 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Close all" -msgstr "Fechar todos" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:73 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Expand all" -msgstr "Expandir todos" - -#: admin/post-types/writepanels/variation-admin-html.php:115 -msgid "Shipping class:" -msgstr "Tipo de envio:" - -#: admin/post-types/writepanels/variation-admin-html.php:119 -#: admin/post-types/writepanels/variation-admin-html.php:132 -#: woocommerce-ajax.php:550 -msgid "Same as parent" -msgstr "Igual ao api" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:198 -msgid "Default selections:" -msgstr "Seleções padrão:" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:300 -msgid "Are you sure you want to link all variations? This will create a new variation for each and every possible combination of variation attributes (max 50 per run)." -msgstr "Tem a certeza que pretende linkar todas as variações? Isto irá criar uma nova variação para cada possível combinação de atributos (máximo de 50 por vez)." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:317 -msgid "variation added" -msgstr "variação adicionada" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:319 -msgid "variations added" -msgstr "variações adicionadas" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:321 -msgid "No variations added" -msgstr "Variações não adicionadas" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:400 -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "Tem certeza de que deseja excluir todas as variações? Isso não poderá ser desfeito." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:403 -msgid "Last warning, are you sure?" -msgstr "Último aviso, você tem certeza?" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "Stock Keeping Unit" -msgstr "Unidade de manutenção de stock" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "Button text" -msgstr "Texto do botão" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgctxt "placeholder" -msgid "Buy product" -msgstr "Comprar produto" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "This text will be shown on the button linking to the external product." -msgstr "Este texto será mostrado no botão que liga ao produto externo." - -#: admin/post-types/writepanels/variation-admin-html.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:136 -msgctxt "placeholder" -msgid "From…" -msgstr "Desde…" - -#: admin/post-types/writepanels/variation-admin-html.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:137 -msgctxt "placeholder" -msgid "To…" -msgstr "Até…" - -#: admin/post-types/writepanels/writepanel-product_data.php:613 -msgid "Purchase Note" -msgstr "Nota da Compra" - -#: admin/post-types/writepanels/writepanel-product_data.php:613 -msgid "Enter an optional note to send the customer after purchase." -msgstr "Digite uma nota opcional para enviar ao cliente após a compra." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:89 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Download Expiry" -msgstr "Validade do Download" - -#: admin/post-types/writepanels/variation-admin-html.php:158 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Enter the number of days before a download link expires, or leave blank." -msgstr "Indique o número de dias antes do link de download expirar ou deixe em branco." - -#: admin/post-types/writepanels/writepanel-product_data.php:400 -msgid "Select all" -msgstr "Selecionar todos" - -#: admin/post-types/writepanels/writepanel-product_data.php:400 -msgid "Select none" -msgstr "Selecionar nenhum" - -#: admin/post-types/writepanels/writepanel-product_data.php:429 -#: admin/post-types/writepanels/writepanel-product_data.php:484 -#: admin/woocommerce-admin-init.php:442 -msgid "Visible on the product page" -msgstr "Visível na página do produto" - -#: admin/post-types/writepanels/writepanel-product_data.php:442 -#: admin/post-types/writepanels/writepanel-product_data.php:490 -#: admin/woocommerce-admin-init.php:443 -msgid "Used for variations" -msgstr "Usado para variações" - -#: admin/post-types/writepanels/writepanel-product_data.php:479 -#: admin/woocommerce-admin-init.php:441 -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "Digite algum texto, ou alguns atributos separando os valores por (|)." - -#: admin/woocommerce-admin-attributes.php:250 -#: admin/woocommerce-admin-attributes.php:316 -#: admin/woocommerce-admin-attributes.php:388 -msgid "Slug" -msgstr "Slug" - -#: admin/woocommerce-admin-content.php:44 -msgid "General settings such as your shop base, currency, and script/styling options which affect features used in your store." -msgstr "Configurações gerais da sua loja, como base, moeda, e opções de script/estilo que afetam as funcionalidades utilizadas na sua loja." - -#: admin/woocommerce-admin-content.php:45 -msgid "This is where important store page are defined. You can also set up other pages (such as a Terms page) here." -msgstr "Aqui é onde as páginas importantes da loja são definidas. Você pode também criar outras páginas (como a página de termos de serviço) aqui." - -#: admin/woocommerce-admin-content.php:46 -msgid "Options for how things like price, images and weights appear in your product catalog." -msgstr "Opções para coisas como preços, imagens e pesos que aparecem no seu catálogo de produtos. " - -#: admin/woocommerce-admin-content.php:47 -msgid "Options concerning stock and stock notices." -msgstr "Opções sobre stock e notificações de stock." - -#: admin/woocommerce-admin-content.php:48 -msgid "Options concerning tax, including international and local tax rates." -msgstr "Opções relacionadas a impostos, incluindo taxas locais e internacionais." - -#: admin/woocommerce-admin-content.php:49 -msgid "This is where shipping options are defined, and shipping methods are set up." -msgstr "Este é o lugar onde as opções de envio são definidas, e os métodos de envio são configurados." - -#: admin/woocommerce-admin-content.php:50 -msgid "Payment Methods" -msgstr "Métodos de Pagamento" - -#: admin/woocommerce-admin-content.php:50 -msgid "This is where payment gateway options are defined, and individual payment gateways are set up." -msgstr "Este é o local em que se definem as opções relacionadas aos método de pagamento e de configuração para cada um deles." - -#: admin/woocommerce-admin-content.php:51 -msgid "Here you can customise the way WooCommerce emails appear." -msgstr "Aqui você pode personalizar o modo como os emails do WooCommerce serão exibidos." - -#: admin/woocommerce-admin-content.php:52 -msgid "The integration section contains options for third party services which integrate with WooCommerce." -msgstr "A seção Integração contém opções para integração de serviços de terceiros com o WooCommerce." - -#: admin/woocommerce-admin-content.php:59 -msgid "The reports section can be accessed from the left-hand navigation menu. Here you can generate reports for sales and customers." -msgstr "A seção de relatórios pode ser acessada ​​a partir do menu de navegação à esquerda. Aqui você pode gerar relatórios de vendas e clientes." - -#: admin/woocommerce-admin-content.php:60 -msgid "Reports for sales based on date, top sellers and top earners." -msgstr "Relatórios de clientes, como por exemplo mais vendidos ou mais rentáveis." - -#: admin/woocommerce-admin-content.php:62 -#: admin/woocommerce-admin-reports.php:79 -msgid "Customers" -msgstr "Clientes" - -#: admin/woocommerce-admin-content.php:62 -msgid "Customer reports, such as signups per day." -msgstr "Relatório de clientes, como por exemplo registos por dia." - -#: admin/woocommerce-admin-content.php:70 -msgid "The orders section can be accessed from the left-hand navigation menu. Here you can view and manage customer orders." -msgstr "A seção de pedidos pode ser acessada a partir do menu de navegação à esquerda. Aqui você pode visualizar e gerenciar os pedidos dos clientes." - -#: admin/woocommerce-admin-content.php:71 -msgid "Orders can also be added from this section if you want to set them up for a customer manually." -msgstr "Pedidos podem ser feitos por esta seção se você deseja configurá-los para um cliente manualmente." - -#: admin/woocommerce-admin-content.php:78 -msgid "Coupons can be managed from this section. Once added, customers will be able to enter coupon codes on the cart/checkout page. If a customer uses a coupon code they will be viewable when viewing orders." -msgstr "Cupões podem ser gerenciados nesta seção. Uma vez adicionados, os clientes poderão inserir códigos de cupões na página do carrinho e/ou checkout. Caso um cliente utilize um código de cupão, ele poderá ser visualizado juntamente com os pedidos." - -#: admin/woocommerce-admin-content.php:82 -msgid "For more information:" -msgstr "Para mais informações:" - -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:84 -#: admin/woocommerce-admin-functions.php:200 -#: admin/woocommerce-admin-init.php:766 -#: admin/woocommerce-admin-reports.php:997 -#: admin/woocommerce-admin-reports.php:1095 -#: templates/cart/cart.php:28 -#: templates/checkout/form-pay.php:19 -#: templates/checkout/review-order.php:21 -#: templates/emails/admin-new-order.php:22 -#: templates/emails/customer-completed-order.php:23 -#: templates/emails/customer-invoice.php:27 -#: templates/emails/customer-note.php:27 -#: templates/emails/customer-processing-order.php:23 -#: templates/order/order-details.php:20 -#: woocommerce.php:986 -msgid "Product" -msgid_plural "Products" -msgstr[0] "Produto" -msgstr[1] "Produtos" - -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:98 -#: woocommerce.php:824 -msgid "Product Category" -msgid_plural "Product Categories" -msgstr[0] "Categoria do produto" -msgstr[1] "Categorias de produto" - -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:112 -#: woocommerce.php:860 -msgid "Product Tag" -msgid_plural "Product Tags" -msgstr[0] "Tag do produto" -msgstr[1] "Tags de produto" - -#: admin/woocommerce-admin-dashboard.php:126 -msgid "Attribute" -msgid_plural "Attributes" -msgstr[0] "Atributo" -msgstr[1] "Atributos" - -#: admin/woocommerce-admin-dashboard.php:207 -#, php-format -msgid "You are using WooCommerce %s." -msgstr "Você está a usar o WooCommerce %s." - -#: admin/woocommerce-admin-dashboard.php:43 -msgid "WooCommerce Right Now" -msgstr "WooCommerce Agora" - -#: admin/woocommerce-admin-dashboard.php:44 -msgid "WooCommerce Recent Orders" -msgstr "Pedidos recentes do WooCommerce" - -#: admin/woocommerce-admin-dashboard.php:238 -msgid "l jS \\of F Y h:i:s A" -msgstr "l jS \\d\\e F \\d\\e Y h:i:s A" - -#: admin/woocommerce-admin-dashboard.php:245 -msgid "There are no product orders yet." -msgstr "Não há nenhum pedido ainda." - -#: admin/includes/notice-install.php:6 -msgid "Welcome to WooCommerce – You're almost ready to start selling :)" -msgstr "Bem vindo ao WooCommerce – Você está quase pronto para começar a vender :)" - -#: admin/includes/notice-install.php:7 -msgid "Install WooCommerce Pages" -msgstr "Instalar as páginas do WooCommerce" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:351 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:352 -msgid "Documentation" -msgstr "Documentação" - -#: admin/woocommerce-admin-init.php:436 -msgid "Remove this attribute?" -msgstr "Deseja remover este atributo?" - -#: admin/woocommerce-admin-init.php:446 -msgid "Calculate line taxes? This will calculate taxes based on the customers country. If no billing/shipping is set it will use the store base country." -msgstr "Calcular linha de impostos? Isto irá calcular os impostos com base no país dos clientes. Se não estiver definido a faturação/entrega será usado o país base da loja." - -#: admin/woocommerce-admin-init.php:670 -#, php-format -msgid "Product updated. View Product" -msgstr "Produto atualizado. Ver Produto" - -#: admin/woocommerce-admin-init.php:671 -#: admin/woocommerce-admin-init.php:686 -#: admin/woocommerce-admin-init.php:701 -msgid "Custom field updated." -msgstr "Campo personalizado atualizado." - -#: admin/woocommerce-admin-init.php:672 -#: admin/woocommerce-admin-init.php:687 -#: admin/woocommerce-admin-init.php:702 -msgid "Custom field deleted." -msgstr "Campo personalizado excluído." - -#: admin/woocommerce-admin-init.php:673 -msgid "Product updated." -msgstr "Produto atualizado." - -#: admin/woocommerce-admin-init.php:674 -#, php-format -msgid "Product restored to revision from %s" -msgstr "Produto restaurado para revisão de %s" - -#: admin/woocommerce-admin-init.php:676 -msgid "Product saved." -msgstr "Produto salvo." - -#: admin/woocommerce-admin-init.php:677 -#, php-format -msgid "Product submitted. Preview Product" -msgstr "Produto registado. Pré visualizar produto" - -#: admin/woocommerce-admin-init.php:678 -#, php-format -msgid "Product scheduled for: %1$s. Preview Product" -msgstr "Produto programado para: %1$s. Ver Produto" - -#: admin/woocommerce-admin-init.php:679 -#: admin/woocommerce-admin-init.php:694 -#: admin/woocommerce-admin-init.php:709 -msgid "M j, Y @ G:i" -msgstr "j \\d\\e F \\d\\e Y @ H:i" - -#: admin/woocommerce-admin-init.php:680 -#, php-format -msgid "Product draft updated. Preview Product" -msgstr "Rascunho de produto atualizado. Pré visualizar produto" - -#: admin/woocommerce-admin-init.php:685 -#: admin/woocommerce-admin-init.php:688 -#: admin/woocommerce-admin-init.php:690 -msgid "Order updated." -msgstr "Pedido atualizado." - -#: admin/woocommerce-admin-init.php:689 -#, php-format -msgid "Order restored to revision from %s" -msgstr "Pedido restaurado para revisão de %s" - -#: admin/woocommerce-admin-init.php:691 -msgid "Order saved." -msgstr "Pedido salvo." - -#: admin/woocommerce-admin-init.php:692 -msgid "Order submitted." -msgstr "Pedido enviado." - -#: admin/woocommerce-admin-init.php:693 -#, php-format -msgid "Order scheduled for: %1$s." -msgstr "Pedido agendado para: %1$s." - -#: admin/woocommerce-admin-init.php:695 -msgid "Order draft updated." -msgstr "Rascunho de pedido atualizado." - -#: admin/woocommerce-admin-init.php:700 -#: admin/woocommerce-admin-init.php:703 -#: admin/woocommerce-admin-init.php:705 -msgid "Coupon updated." -msgstr "Cupom atualizado." - -#: admin/woocommerce-admin-init.php:704 -#, php-format -msgid "Coupon restored to revision from %s" -msgstr "Cupom restaurado para revisão de %s" - -#: admin/woocommerce-admin-init.php:706 -msgid "Coupon saved." -msgstr "Cupom salvo." - -#: admin/woocommerce-admin-init.php:707 -msgid "Coupon submitted." -msgstr "Cupom enviado." - -#: admin/woocommerce-admin-init.php:708 -#, php-format -msgid "Coupon scheduled for: %1$s." -msgstr "Cupão agendado para: %1$s." - -#: admin/woocommerce-admin-init.php:710 -msgid "Coupon draft updated." -msgstr "Rascunho de cupão atualizado." - -#: admin/settings/settings-init.php:201 -msgid "Styles and Scripts" -msgstr "Estilos e Scripts" - -#: admin/settings/settings-init.php:285 -msgid "Note: The shop page has children - child pages will not work if you enable this option." -msgstr "Observação: a página de venda possui páginas-filho, que não funcionarão se esta opção estiver habilitada." - -#: admin/settings/settings-init.php:298 -msgid "This sets the base page of your shop - this is where your product archive will be." -msgstr "Isto define a página base da sua loja - é o lugar onde o arquivo do produto estará." - -#: admin/settings/settings-init.php:320 -msgid "The following pages need selecting so that WooCommerce knows where they are. These pages should have been created upon installation of the plugin, if not you will need to create them." -msgstr "As seguintes páginas precisam ser selecionadas para que o WooCommerce saiba onde elas estão. Estas páginas devem ter sido criadas na instalação do plugin, caso contrário você terá de criá-las." - -#: admin/settings/settings-init.php:552 -msgid "g" -msgstr "g" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#: admin/settings/settings-init.php:567 -msgid "m" -msgstr "m" - -#: admin/settings/settings-init.php:569 -msgid "mm" -msgstr "mm" - -#: admin/settings/settings-init.php:990 -#, php-format -msgid "Reduced Rate%sZero Rate" -msgstr "Taxa Reduzida%sTaxa Zero" - -#: admin/settings/settings-init.php:1012 -msgid "The following options affect the sender (email address and name) used in WooCommerce emails." -msgstr "As opções a seguir afetam o remetente (endereço de email e nome) usado nas mensagens do WooCommerce enviadas por email." - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:26 -msgid "ShareDaddy" -msgstr "ShareDaddy" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:27 -msgid "ShareDaddy is a sharing plugin bundled with JetPack." -msgstr "ShareDaddy é um plugin de compartilhamento que acompanha o JetPack." - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:51 -msgid "Output ShareDaddy button?" -msgstr "Exibir botão ShareDaddy?" - -#: admin/woocommerce-admin-settings.php:210 -#, php-format -msgid "More functionality and gateway options available via WC official extensions." -msgstr "Mais funcionalidades e opções de Gateway disponíveis via Extensões Oficiais WC." - -#: classes/class-wc-cart.php:870 -msgid "You already have this item in your cart." -msgstr "Este produto já está no seu carrinho." - -#: classes/class-wc-checkout.php:642 -#: woocommerce-functions.php:738 -#: woocommerce-functions.php:740 -#: woocommerce-functions.php:743 -#: woocommerce-functions.php:755 -#: woocommerce-functions.php:757 -#: woocommerce-functions.php:760 -#: woocommerce-functions.php:794 -msgid "ERROR" -msgstr "ERRO" - -#: classes/class-wc-countries.php:457 -msgid "(incl. VAT)" -msgstr "(com IVA)" - -#: classes/class-wc-countries.php:457 -msgid "(incl. tax)" -msgstr "(com taxa)" - -#: classes/abstracts/abstract-wc-product.php:554 -#, php-format -msgid "%s in stock" -msgstr "%s em stock" - -#: classes/abstracts/abstract-wc-product.php:561 -msgid "(backorders allowed)" -msgstr "(encomendas permitidas)" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:28 -msgid "Bacs" -msgstr "Bancos" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:28 -msgid "Cheque" -msgstr "Cheque" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:73 -msgid "Please send your cheque to Store Name, Store Street, Store Town, Store State / County, Store Postcode." -msgstr "Por favor, envie o seu cheque para Nome da Loja, Rua da Loja, Cidade da Loja, Estado / País da Loja, Código Postal da Loja." - -#: classes/gateways/cod/class-wc-gateway-cod.php:27 -#: classes/gateways/cod/class-wc-gateway-cod.php:54 -#: classes/gateways/cod/class-wc-gateway-cod.php:90 -msgid "Cash on Delivery" -msgstr "Pagamento na entrega" - -#: classes/gateways/cod/class-wc-gateway-cod.php:55 -msgid "Have your customers pay with cash (or by other means) upon delivery." -msgstr "Permitir que os seus clientes paguem com dinheiro (ou outras formas de pagamento) na entrega." - -#: classes/gateways/cod/class-wc-gateway-cod.php:80 -msgid "Enable COD" -msgstr "Habilitar " - -#: classes/gateways/cod/class-wc-gateway-cod.php:89 -msgid "Payment method title that the customer will see on your website." -msgstr "Título do método de pagamento que o seu cliente verá no website." - -#: classes/gateways/cod/class-wc-gateway-cod.php:96 -msgid "Payment method description that the customer will see on your website." -msgstr "Descrição do método de pagamento que o seu cliente verá no website." - -#: classes/gateways/cod/class-wc-gateway-cod.php:100 -msgid "Instructions" -msgstr "Instruções" - -#: classes/gateways/cod/class-wc-gateway-cod.php:102 -msgid "Instructions that will be added to the thank you page." -msgstr "Instruções que serão adicionadas à página de agradecimento." - -#: classes/gateways/cod/class-wc-gateway-cod.php:176 -msgid "Payment to be made upon delivery." -msgstr "O pagamento será efetuado no momento da entrega." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:78 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:52 -msgid "Enable this shipping method" -msgstr "Ativar este método de envio" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:29 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:59 -msgid "International Delivery" -msgstr "Entrega internacional" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:30 -msgid "International delivery based on flat rate shipping." -msgstr "Entrega internacional baseada no transporte de taxa fixa." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:89 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:63 -msgid "Availability" -msgstr "Disponibilidade" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:68 -msgid "Selected countries" -msgstr "Países selecionados" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:69 -msgid "Excluding selected countries" -msgstr "Excluindo países selecionados" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:73 -msgid "Countries" -msgstr "Países" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:25 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:107 -msgid "Local Delivery" -msgstr "Entrega local" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:98 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:76 -msgid "Enable" -msgstr "Permitir" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:100 -msgid "Enable local delivery" -msgstr "Permitir entrega local" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:111 -msgid "Fee Type" -msgstr "Tipo de taxa" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:113 -msgid "How to calculate delivery charges" -msgstr "Como calcular taxas de entrega" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:172 -msgid "Local delivery is a simple shipping method for delivering orders locally." -msgstr "Entrega local é um método de envio simples para entrega de encomendas localmente." - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:25 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:85 -msgid "Local Pickup" -msgstr "Retirar no local" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:78 -msgid "Enable local pickup" -msgstr "Habilitar retirada no local" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:126 -msgid "Local pickup is a simple method which allows the customer to pick up their order themselves." -msgstr "Retirada no local é um método simples que permite que o cliente retire o seu pedido ele mesmo." - -#: classes/shortcodes/class-wc-shortcode-view-order.php:51 -msgid "My Account →" -msgstr "Minha Conta →" - -#: templates/cart/shipping-methods.php:68 -msgid "Please fill in your details to see available shipping methods." -msgstr "Por favor, preencha os seus dados para visualizar os métodos de envio disponíveis." - -#: templates/checkout/cart-errors.php:16 -msgid "There are some issues with the items in your cart (shown above). Please go back to the cart page and resolve these issues before checking out." -msgstr "Ocorreu um problema com algum produto no seu carrinho (exibido acima). Por favor, volte para a página do carrinho e resolva estes problemas antes de finalizar o pedido." - -#: templates/checkout/cart-errors.php:20 -msgid "← Return To Cart" -msgstr "← Voltar ao Carrinho" - -#: templates/myaccount/my-address.php:23 -msgid "My Address" -msgstr "Meu Endereço" - -#: classes/widgets/class-wc-widget-layered-nav.php:100 -#, php-format -msgid "Any %s" -msgstr "Qualquer %s" - -#: classes/widgets/class-wc-widget-layered-nav.php:366 -msgid "Display Type:" -msgstr "Tipo de exibição:" - -#: classes/widgets/class-wc-widget-layered-nav.php:368 -msgid "List" -msgstr "Lista" - -#: classes/widgets/class-wc-widget-layered-nav.php:369 -msgid "Dropdown" -msgstr "Dropdown" - -#: woocommerce-functions.php:738 -msgid "Please enter a username." -msgstr "Por favor, insira um nome de utilizador." - -#: classes/widgets/class-wc-widget-random-products.php:24 -msgid "WooCommerce Random Products" -msgstr "Produtos Aleatórios WooCommerce" - -#: classes/widgets/class-wc-widget-random-products.php:27 -msgid "Display a list of random products on your site." -msgstr "Mostra uma lista de produtos aleatórios no seu site." - -#: classes/widgets/class-wc-widget-random-products.php:46 -msgid "Random Products" -msgstr "Produtos Aleatórios" - -#: woocommerce-core-functions.php:1234 -#: woocommerce-core-functions.php:1260 -msgid "Download Permissions Granted" -msgstr "Permissões de Download Concedidas" - -#: woocommerce-core-functions.php:1577 -msgid "Select a category" -msgstr "Selecione uma categoria." - -#: woocommerce-functions.php:261 -#, php-format -msgid "You can only have 1 %s in your cart." -msgstr "Você pode ter apenas 1 %s no seu carrinho." - -#: woocommerce-functions.php:499 -msgid "Continue Shopping →" -msgstr "Continuar Compras →" - -#: woocommerce-functions.php:740 -msgid "This username is invalid because it uses illegal characters. Please enter a valid username." -msgstr "Este nome de utilizador é inválido porque usa caracteres ilegais. Por favor insira um nome de utilizador válido." - -#: woocommerce-functions.php:743 -msgid "This username is already registered, please choose another one." -msgstr "Este nome de utilizador já foi registado, por favor escolha outro." - -#: woocommerce-functions.php:755 -msgid "Please type your e-mail address." -msgstr "Por favor digite o seu endereço de email. " - -#: woocommerce-functions.php:757 -msgid "The email address isn’t correct." -msgstr "O endereço de e-mail não é válido." - -#: woocommerce-functions.php:760 -msgid "This email is already registered, please choose another one." -msgstr "Este email já está registado, por favor escolha outro email. " - -#: woocommerce-functions.php:948 -msgid "Invalid email address." -msgstr "Endereço de e-mail inválido." - -#: woocommerce-functions.php:948 -#: woocommerce-functions.php:971 -#: woocommerce-functions.php:991 -#: woocommerce-functions.php:997 -#: woocommerce-functions.php:1001 -#: woocommerce-functions.php:1004 -#: woocommerce-functions.php:1034 -#: woocommerce-functions.php:1170 -msgid "Go to homepage →" -msgstr "Vá para a página inicial →" - -#: woocommerce-functions.php:971 -msgid "Invalid download." -msgstr "Download inválido." - -#: woocommerce-functions.php:983 -msgid "You must be logged in to download files." -msgstr "Você precisa estar logado para fazer download dos arquivos." - -#: woocommerce-functions.php:983 -msgid "Login →" -msgstr "Entrar →" - -#: woocommerce-functions.php:986 -msgid "This is not your download link." -msgstr "Este não é o seu link de download." - -#: woocommerce-functions.php:1001 -msgid "Sorry, you have reached your download limit for this file" -msgstr "Desculpe, você atingiu o limite de downloads para este arquivo." - -#: woocommerce-functions.php:1004 -msgid "Sorry, this download has expired" -msgstr "Desculpe, este download expirou." - -#: woocommerce-functions.php:1170 -msgid "File not found" -msgstr "Arquivo não encontrado." - -#: woocommerce-template.php:1292 -#: woocommerce.php:1211 -msgid "required" -msgstr "obrigatório" - -#. translators: plugin header field 'PluginURI' -#: woocommerce.php:0 -msgid "http://www.woothemes.com/woocommerce/" -msgstr "http://www.woothemes.com/woocommerce/" - -#. translators: plugin header field 'Description' -#: woocommerce.php:0 -msgid "An e-commerce toolkit that helps you sell anything. Beautifully." -msgstr "Uma ferramenta de e-commerce que te ajuda a vender qualquer coisa. Lindamente." - -#. translators: plugin header field 'Author' -#: woocommerce.php:0 -msgid "WooThemes" -msgstr "WooThemes" - -#. translators: plugin header field 'AuthorURI' -#: woocommerce.php:0 -msgid "http://woothemes.com" -msgstr "http://woothemes.com" - -#: admin/includes/duplicate_product.php:90 -msgid "(Copy)" -msgstr "(Copiar)" - -#: admin/post-types/product.php:1183 -msgid "Sort Products" -msgstr "Ordenar Produtos" - -#: admin/post-types/shop_order.php:98 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:321 -#, php-format -msgid "Order %s" -msgstr "Pedido %s" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "Minimum amount" -msgstr "Quantidade mínima" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "No minimum" -msgstr "No mínimo" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "Este campo permite que você defina o subtotal mínimo necessário para utilizar o cupão." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:75 -#: admin/post-types/writepanels/writepanel-order_data.php:400 -#: admin/post-types/writepanels/writepanel-product_data.php:525 -#: admin/post-types/writepanels/writepanel-product_data.php:542 -#: admin/woocommerce-admin-reports.php:1246 -msgid "Search for a product…" -msgstr "Procurar um produto…" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:89 -msgid "Products which need to be in the cart to use this coupon or, for \"Product Discounts\", which products are discounted." -msgstr "Produtos que precisam estar no carrinho para utilizar este cupão, ou, para \"Descontos de produto\", os quais são os produtos com desconto." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:95 -msgid "Search for a product…" -msgstr "Procurar um produto..." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:109 -msgid "Products which must not be in the cart to use this coupon or, for \"Product Discounts\", which products are not discounted." -msgstr "Os produtos que não devem estar no carrinho para utilizar este cupão, ou, para \"Descontos do Produto\", produtos que não serão descontados." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:117 -msgid "Any category" -msgstr "Qualquer categoria" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:125 -msgid "A product must be in this category for the coupon to remain valid or, for \"Product Discounts\", products in these categories will be discounted." -msgstr "Um produto deve estar nesta categoria para o cupão permanecer válido ou, para \"Descontos do produto\", produtos nestas categorias serão descontados." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:131 -msgid "No categories" -msgstr "Nenhuma categoria." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:139 -msgid "Product must not be in this category for the coupon to remain valid or, for \"Product Discounts\", products in these categories will not be discounted." -msgstr "O produto não pode estar nesta categoria para que o cupão permaneça válido, ou, para \"Descontos de Produtos\", produtos nesta categoria não receberão descontos." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "Uso ilimitado" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgctxt "placeholder" -msgid "Never expire" -msgstr "Nunca expira" - -#: admin/post-types/writepanels/writepanel-order_data.php:86 -msgid "Order Date:" -msgstr "Data do pedido:" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -msgid "h" -msgstr "h" - -#: admin/post-types/writepanels/writepanel-order_data.php:402 -msgid "Add item(s)" -msgstr "Adicionar item(ns)" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:64 -msgid "Before adding variations, add and save some attributes on the Attributes tab." -msgstr "Antes de adicionar variações, adicione e salve algum atributo na aba Atributos." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:66 -msgid "Learn more" -msgstr "Aprenda mais" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:87 -msgid "File Path" -msgstr "Caminho do Arquivo" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:88 -msgid "Download limit" -msgstr "Limite de download" - -#: admin/post-types/writepanels/variation-admin-html.php:130 -msgid "Tax class:" -msgstr "Classe de imposto:" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:440 -msgid "Enter a value" -msgstr "Indique um valor" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:630 -#: classes/class-wc-emails.php:287 -#: classes/class-wc-emails.php:319 -#: classes/class-wc-emails.php:363 -#, php-format -msgid "Variation #%s of %s" -msgstr "Variação #%s de %s" - -#: admin/post-types/writepanels/writepanel-product_data.php:53 -msgid "Virtual products are intangible and aren't shipped." -msgstr "Produtos virtuais são imateriais, portanto, não são enviados." - -#: admin/post-types/writepanels/writepanel-product_data.php:59 -msgid "Downloadable products give access to a file upon purchase." -msgstr "Produtos de download dão acesso a um arquivo mediate pagamento." - -#: admin/post-types/writepanels/writepanel-product_data.php:87 -msgid "Advanced" -msgstr "Avançado" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "SKU refers to a Stock-keeping unit, a unique identifier for each distinct product and service that can be purchased." -msgstr "SKU refere-se a uma Únidade de Manutenção de Stock, um identificador único para cada produto distinto e serviços que podem ser adquiridos." - -#: admin/post-types/writepanels/writepanel-product_data.php:273 -msgid "Weight in decimal form" -msgstr "Peso na forma decimal" - -#: admin/post-types/writepanels/writepanel-product_data.php:290 -msgid "LxWxH in decimal form" -msgstr "(CxLxA) Comprimento, Largura e Altura na forma decimal" - -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "Stock quantity. If this is a variable product this value will be used to control stock for all variations, unless you define stock at variation level." -msgstr "Stock disponível. Se este produto contiver variações, o valor será usado para controlar o stock de todas as variações, a menos que você defina o stock no nível da variação." - -#: admin/post-types/writepanels/writepanel-product_data.php:233 -msgid "Controls whether or not the product is listed as \"in stock\" or \"out of stock\" on the frontend." -msgstr "Controla se o produto é listado na loja como \"em stock\" ou \"sem stock\"." - -#: admin/post-types/writepanels/writepanel-product_data.php:244 -msgid "If managing stock, this controls whether or not backorders are allowed for this product and variations. If enabled, stock quantity can go below 0." -msgstr "Se estiver gerenciando o stock, isto controla se os pedidos em atraso/pendentes são ou não permitidos para este produto e variações. Se ativado, a quantidade em stock pode ficar abaixo de 0." - -#: admin/post-types/writepanels/writepanel-product_data.php:311 -msgid "No shipping class" -msgstr "Nenhum classe de entrega" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "Shipping class" -msgstr "Classes de envio" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "Shipping classes are used by certain shipping methods to group similar products." -msgstr "Classes de envio são utilizados por certos métodos de envio para agrupar produtos semelhantes." - -#: admin/post-types/writepanels/writepanel-product_data.php:402 -msgid "Add new" -msgstr "Adicionar novo" - -#: admin/post-types/writepanels/writepanel-product_data.php:620 -msgid "Menu order" -msgstr "Ordem do menu" - -#: admin/post-types/writepanels/writepanel-product_data.php:620 -msgid "Custom ordering position." -msgstr "Posição de ordenação personalizada." - -#: admin/post-types/writepanels/writepanel-product_data.php:628 -msgid "Enable reviews" -msgstr "Habilitar avaliações" - -#: admin/post-types/writepanels/writepanel-product_data.php:1054 -msgid "Catalog/search" -msgstr "Catálogo/pesquisa" - -#: admin/post-types/writepanels/writepanel-product_data.php:1061 -msgid "Catalog visibility:" -msgstr "Visibilidade do catálogo:" - -#: admin/post-types/writepanels/writepanel-product_data.php:1077 -msgid "Define the loops this product should be visible in. The product will still be accessible directly." -msgstr "Definição dos laços deste produto devem ser visíveis internamente. O produto ainda poderá ser acessado diretamente." - -#: admin/post-types/writepanels/writepanel-product_data.php:1083 -msgid "Enable this option to feature this product." -msgstr "Ative esta opção para destacar este produto." - -#: admin/post-types/writepanels/writepanel-product_data.php:1085 -msgid "Featured Product" -msgstr "Produto Destacado" - -#: admin/post-types/writepanels/writepanel-product_data.php:1089 -msgid "OK" -msgstr "OK" - -#: admin/post-types/writepanels/writepanels-init.php:55 -msgid "Product Short Description" -msgstr "Breve descrição sobre o produto" - -#: admin/post-types/writepanels/writepanels-init.php:185 -msgid "Allow reviews." -msgstr "Permitir avaliações." - -#: admin/post-types/writepanels/writepanels-init.php:186 -#, php-format -msgid "Allow trackbacks and pingbacks on this page." -msgstr "Permitir trackbacks e pingbacks nesta página." - -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" -msgstr "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" - -#: admin/settings/settings-frontend-styles.php:23 -msgid "Styles" -msgstr "Estilos" - -#: admin/settings/settings-frontend-styles.php:43 -msgid "Primary" -msgstr "Primário" - -#: admin/settings/settings-frontend-styles.php:43 -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "Chamada para botões de ação / Slider de preço / camadas de navegação na interface do utilizador" - -#: admin/settings/settings-frontend-styles.php:44 -msgid "Secondary" -msgstr "Secundário" - -#: admin/settings/settings-frontend-styles.php:44 -msgid "Buttons and tabs" -msgstr "Botões e abas" - -#: admin/settings/settings-frontend-styles.php:45 -msgid "Highlight" -msgstr "Realce" - -#: admin/settings/settings-frontend-styles.php:45 -msgid "Price labels and Sale Flashes" -msgstr "Etiquetas de Preços e Promoções Relâmpagos" - -#: admin/settings/settings-frontend-styles.php:46 -msgid "Content" -msgstr "Conteúdo" - -#: admin/settings/settings-frontend-styles.php:46 -msgid "Your themes page background - used for tab active states" -msgstr "As suas páginas de fundo do tema - usado para ativar o estado das abas" - -#: admin/settings/settings-frontend-styles.php:47 -msgid "Subtext" -msgstr "Subtexto" - -#: admin/settings/settings-frontend-styles.php:47 -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "Utilizado para determinados textos, por exemplo, breadcrumbs, textos menores e outros." - -#: admin/settings/settings-frontend-styles.php:51 -msgid "To edit colours woocommerce/assets/css/woocommerce-base.less and woocommerce.css need to be writable. See the Codex for more information." -msgstr "Para editar as cores woocommerce/assets/css/woocommerce-base.less e woocommerce.css você precisa dar permissão de escrita a estes arquivos. Veja o Codex - Permissões de Arquivos para mais informações." - -#: admin/settings/settings-init.php:115 -msgid "Enable guest checkout (no account required)" -msgstr "Habilitar finalização do pedido como convidado (não é obrigatório ter uma conta)" - -#: admin/settings/settings-init.php:131 -msgid "Force secure checkout" -msgstr "Forçar finalização segura" - -#: admin/settings/settings-init.php:141 -msgid "Un-force HTTPS when leaving the checkout" -msgstr "Sair do HTTPS quando sair da finalização" - -#: admin/settings/settings-init.php:150 -msgid "Registration" -msgstr "Registo" - -#: admin/settings/settings-init.php:226 -msgid "Enable enhanced country select boxes" -msgstr "Habilitar caixas de seleção do país aprimoradas" - -#: admin/settings/settings-init.php:265 -msgid "Grant access to downloadable products after payment" -msgstr "Conceder acesso para download do produto após o pagamento" - -#: admin/settings/settings-init.php:443 -msgid "This controls the default sort order of the catalog." -msgstr "Isto controla a ordem padrão do catálogo." - -#: templates/loop/orderby.php:21 -msgid "Default sorting" -msgstr "Ordenação padrão" - -#: admin/settings/settings-init.php:452 -msgid "Sort by most recent" -msgstr "Ordenar por mais recentes" - -#: admin/settings/settings-init.php:468 -#: admin/settings/settings-init.php:483 -msgid "Show subcategories" -msgstr "Exibir subcategorias" - -#: admin/settings/settings-init.php:508 -msgid "The following options affect the fields available on the edit product page." -msgstr "As seguintes opções afetam os campos disponíveis na página de edição dos produtos." - -#: admin/settings/settings-init.php:554 -msgid "oz" -msgstr "onça" - -#: admin/settings/settings-init.php:571 -msgid "yd" -msgstr "jarda" - -#: admin/settings/settings-init.php:577 -msgid "Product Ratings" -msgstr "Avaliações do Produto" - -#: admin/settings/settings-init.php:587 -msgid "Ratings are required to leave a review" -msgstr "A avaliação é necessária para deixar o seu comentário sobre o produto" - -#: admin/settings/settings-init.php:596 -msgid "Show \"verified owner\" label for customer reviews" -msgstr "Exibir \"dono do produto\" para avaliação de clientes" - -#: admin/settings/settings-init.php:606 -msgid "The following options affect how prices are displayed on the frontend." -msgstr "As opções a seguir afetam como os preços são exibidos no site." - -#: admin/settings/settings-init.php:660 -msgid "Remove zeros after the decimal point. e.g. $10.00 becomes $10" -msgstr "Remover zeros depois da vírgula, por exemplo, € 10,00 torna-se € 10" - -#: admin/settings/settings-init.php:803 -msgid "This controls how stock is displayed on the frontend." -msgstr "Isto controla como o sock é exibido na página." - -#: admin/settings/settings-init.php:809 -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "Sempre exibir a quantidade em stock. Por exemplo: \"12 em stock\"" - -#: admin/settings/settings-init.php:810 -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "Exibir a quantidade em stock apenas quando estiver baixa. Por exemplo: \"Apenas 2 em stock\" Vs. \"Em Stock\"" - -#: admin/settings/settings-init.php:811 -msgid "Never show stock amount" -msgstr "Nunca exibir a quantidade em stock" - -#: admin/settings/settings-init.php:843 -msgid "Hide shipping costs until an address is entered" -msgstr "Omitir o custo de envio até que algum endereço de e-mail seja indicado" - -#: admin/settings/settings-init.php:852 -msgid "This controls how multiple shipping methods are displayed on the frontend." -msgstr "Controla como os diversos métodos de entrega são exibidos na página." - -#: admin/settings/settings-init.php:858 -msgid "Radio buttons" -msgstr "Botões Radio" - -#: admin/settings/settings-init.php:859 -msgid "Select box" -msgstr "Caixa de seleção" - -#: admin/settings/settings-init.php:865 -msgid "Shipping Destination" -msgstr "Destino da entrega" - -#: admin/settings/settings-init.php:882 -msgid "Collect shipping address even when not required" -msgstr "Coletar endereço de entrega mesmo quando não seja necessário" - -#: admin/settings/settings-init.php:900 -msgid "Installed payment gateways are displayed below. Drag and drop payment gateways to control their display order on the checkout." -msgstr "Os métodos de pagamentos instalados estão listados abaixo. Arraste e solte os métodos de pagamento para controlar a ordem de exibição no checkout." - -#: admin/settings/settings-shipping-methods.php:27 -msgid "Drag and drop methods to control their display order." -msgstr "Arraste e solte os métodos para controlar a ordem de exibição." - -#: admin/woocommerce-admin-content.php:31 -msgid "If you are having problems, or to assist us with support, please check the status page to identify any problems with your configuration:" -msgstr "Se você está a ter problemas e necessita de ajuda, por favor, verifique a página de estado para identificar os problemas com a sua configuração:" - -#: admin/woocommerce-admin-content.php:33 -#: admin/woocommerce-admin-init.php:89 -#: admin/woocommerce-admin-status.php:26 -msgid "System Status" -msgstr "Estado do Sistema" - -#: admin/woocommerce-admin-content.php:35 -#, php-format -msgid "If you come across a bug, or wish to contribute to the project you can also get involved on GitHub." -msgstr "Caso você se depare com um bug, ou deseje contribuir com o projeto, você pode também participar no GitHub." - -#: admin/woocommerce-admin-content.php:43 -msgid "Here you can set up your store and customise it to fit your needs. The sections available from the settings page include:" -msgstr "Aqui você pode configurar a sua loja e personalizá-la para atender às suas necessidades. As seções disponíveis na página de configurações incluem:" - -#: admin/woocommerce-admin-content.php:63 -msgid "Stock reports for low stock and out of stock items." -msgstr "Relatórios de ações para stock baixo e fora de stock." - -#: admin/woocommerce-admin-reports.php:249 -#: admin/woocommerce-admin-reports.php:509 -#: admin/woocommerce-admin-reports.php:714 -#: admin/woocommerce-admin-reports.php:895 -msgid "Number of sales" -msgstr "Número de vendas" - -#: admin/woocommerce-admin-reports.php:244 -#: admin/woocommerce-admin-reports.php:509 -#: admin/woocommerce-admin-reports.php:714 -#: admin/woocommerce-admin-reports.php:895 -msgid "Sales amount" -msgstr "Quantidade de vendas" - -#: admin/woocommerce-admin-functions.php:477 -msgid "Could not compile woocommerce.less:" -msgstr "Não foi possível compilar woocommerce.less:" - -#: admin/woocommerce-admin-functions.php:498 -#: admin/woocommerce-admin-functions.php:499 -msgid "Mark processing" -msgstr "Marcar como processando" - -#: admin/woocommerce-admin-functions.php:501 -#: admin/woocommerce-admin-functions.php:502 -msgid "Mark completed" -msgstr "Marcar como completo" - -#: admin/woocommerce-admin-functions.php:539 -msgid "Order status changed by bulk edit:" -msgstr "Estado do pedido alterado por edição em massa:" - -#: admin/woocommerce-admin-functions.php:562 -#, php-format -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "Estado do pedido alterado." -msgstr[1] "%s status de pedidos alterados." - -#: admin/woocommerce-admin-init.php:89 -msgid "WooCommerce Status" -msgstr "WooCommerce Estado" - -#: admin/woocommerce-admin-init.php:142 -#: admin/woocommerce-admin-init.php:144 -#: woocommerce.php:1052 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Pedidos" - -#: admin/woocommerce-admin-init.php:444 -msgid "Enter a name for the new attribute term:" -msgstr "Indique um nome para o novo atributo:" - -#: admin/woocommerce-admin-init.php:675 -#, php-format -msgid "Product published. View Product" -msgstr "Produto publicado. Ver Produto" - -#: admin/woocommerce-admin-init.php:727 -msgid "Order notes" -msgstr "Notas do pedido" - -#: admin/woocommerce-admin-reports.php:104 -msgid "Taxes by month" -msgstr "Taxas por mês" - -#: admin/woocommerce-admin-reports.php:389 -#: admin/woocommerce-admin-reports.php:662 -#: admin/woocommerce-admin-reports.php:846 -msgid "items" -msgstr "itens" - -#: admin/woocommerce-admin-reports.php:405 -msgid "Discounts used" -msgstr "Descontos usados" - -#: admin/woocommerce-admin-reports.php:411 -msgid "Total shipping costs" -msgstr "Total dos custos de envio" - -#: admin/woocommerce-admin-reports.php:1210 -#, php-format -msgid "Sales for %s:" -msgstr "Vendas por %s" - -#: admin/woocommerce-admin-reports.php:2107 -#: admin/woocommerce-admin-reports.php:2146 -#, php-format -msgid "%d in stock" -msgid_plural "%d in stock" -msgstr[0] "%d em stock" -msgstr[1] "%d em estoque" - -#: admin/woocommerce-admin-reports.php:2315 -msgid "Total taxes for year" -msgstr "Total de taxas por ano" - -#: admin/woocommerce-admin-reports.php:2326 -msgid "Total product taxes for year" -msgstr "Total de impostos de produtos para o ano" - -#: admin/woocommerce-admin-reports.php:2337 -msgid "Total shipping tax for year" -msgstr "Total de taxas de entrega por ano" - -#: admin/woocommerce-admin-reports.php:2353 -msgid "Total Sales" -msgstr "Total de Vendas" - -#: admin/woocommerce-admin-reports.php:2353 -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "Esta é a soma do campo \"Total dos Pedidos\" dentro dos seus pedidos." - -#: admin/woocommerce-admin-reports.php:2354 -msgid "Total Shipping" -msgstr "Total do Envio" - -#: admin/woocommerce-admin-reports.php:2354 -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "Esta é a soma dos campos \"Total do Envio\" nos seus pedidos." - -#: admin/woocommerce-admin-reports.php:2355 -msgid "Total Product Taxes" -msgstr "Total de impostos do produto" - -#: admin/woocommerce-admin-reports.php:2355 -msgid "This is the sum of the 'Cart Tax' field within your orders." -msgstr "Esta é a soma do campo \"Imposto do Carrinho\" dentro dos seus pedidos." - -#: admin/woocommerce-admin-reports.php:2356 -msgid "Total Shipping Taxes" -msgstr "Total de impostos de envio." - -#: admin/woocommerce-admin-reports.php:2356 -msgid "This is the sum of the 'Shipping Tax' field within your orders." -msgstr "Esta é a soma do campo 'Taxas de Envio' dentro das suas ordens." - -#: admin/woocommerce-admin-reports.php:2357 -msgid "Total Taxes" -msgstr "Total de impostos" - -#: admin/woocommerce-admin-reports.php:2357 -msgid "This is the sum of the 'Cart Tax' and 'Shipping Tax' fields within your orders." -msgstr "Isto soma os campos de \"Imposto do Carrinho\" e \"Imposto de Entrega\" dentro dos pedidos." - -#: admin/woocommerce-admin-reports.php:2358 -msgid "Net profit" -msgstr "Lucro líquido" - -#: admin/woocommerce-admin-reports.php:2358 -msgid "Total sales minus shipping and tax." -msgstr "Total de vendas menos envio e impostos." - -#: admin/woocommerce-admin-reports.php:2403 -msgid "Toggle tax rows" -msgstr "Alternar linhas fiscais" - -#: admin/woocommerce-admin-settings.php:827 -msgid "Select a page…" -msgstr "Selecione uma página…" - -#: admin/woocommerce-admin-status.php:611 -msgid "This tool will clear the product/shop transients cache." -msgstr "Esta ferramenta irá limpar o cache pouco usado de produtos/loja." - -#: admin/woocommerce-admin-status.php:624 -msgid "Capabilities" -msgstr "Capacidades" - -#: admin/woocommerce-admin-status.php:626 -msgid "This tool will reset the admin, customer and shop_manager roles to default. Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "Esta ferramenta irá redefinir os papéis do administrador, dos clientes e do gerente da loja para o padrão. Utilize caso os seus utilizadores não consigam aceder a todas as páginas administrativas do WooCommerce." - -#: admin/woocommerce-admin-status.php:641 -msgid "Product Transients Cleared" -msgstr "Limpo o cache pouco usado do Produto" - -#: admin/woocommerce-admin-status.php:690 -msgid "Roles successfully reset" -msgstr "Funções redefinidas com sucesso" - -#: admin/woocommerce-admin-status.php:721 -#, php-format -msgid "There was an error calling %s::%s" -msgstr "Houve um erro ao chamar %s::%s" - -#: admin/woocommerce-admin-status.php:724 -#, php-format -msgid "There was an error calling %s" -msgstr "Houve um erro chamando %s" - -#: admin/woocommerce-admin-status.php:273 -msgid "by" -msgstr "por" - -#: admin/woocommerce-admin-status.php:273 -msgid "version" -msgstr "versão" - -#: admin/woocommerce-admin-status.php:77 -msgid "Home URL" -msgstr "URL da página inicial" - -#: admin/woocommerce-admin-status.php:81 -msgid "Site URL" -msgstr "URL do site" - -#: admin/woocommerce-admin-status.php:296 -msgid "Force SSL" -msgstr "Forçar SSL" - -#: admin/woocommerce-admin-status.php:366 -msgid "Page not set" -msgstr "Página não definida" - -#: admin/woocommerce-admin-status.php:381 -#, php-format -msgid "Page does not contain the shortcode: %s" -msgstr "A página não pode conter o código: %s" - -#: admin/woocommerce-admin-status.php:101 -msgid "PHP Version" -msgstr "Versão do PHP" - -#: admin/woocommerce-admin-status.php:125 -msgid "WP Max Upload Size" -msgstr "Tamanho máximo do upload do WP" - -#: admin/woocommerce-admin-status.php:109 -msgid "WP Memory Limit" -msgstr "Limite de Memória do WP" - -#: admin/woocommerce-admin-status.php:114 -#, php-format -msgid "%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "%s - Recomendamos o valor de 64MB para o limite de memória. Veja mais em: Aumento de memória para PHP" - -#: admin/woocommerce-admin-status.php:121 -msgid "WP Debug Mode" -msgstr "Modo WP Debug" - -#: admin/woocommerce-admin-status.php:137 -msgid "WC Logging" -msgstr "Log do WC" - -#: admin/woocommerce-admin-status.php:140 -msgid "Log directory is writable." -msgstr "Diretório de log é gravável." - -#: admin/woocommerce-admin-status.php:142 -msgid "Log directory (woocommerce/logs/) is not writable. Logging will not be possible." -msgstr "O diretório do log (woocommerce/logs/) não é gravável. Não será possível gerar logs." - -#: admin/woocommerce-admin-status.php:160 -msgid "fsockopen/cURL" -msgstr "fsockopen/cURL" - -#: admin/woocommerce-admin-status.php:163 -msgid "Your server has fsockopen and cURL enabled." -msgstr "O servidor da sua hospedagem deve ter fsockopen e cURL habilitados." - -#: admin/woocommerce-admin-status.php:165 -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "O servidor da sua hospedagem está com o fsockopen habilitado, mas o cURL desabilitado." - -#: admin/woocommerce-admin-status.php:167 -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "O servidor da sua hospedagem está com o cURL habilitado, mas o fsockopen desabilitado." - -#: admin/woocommerce-admin-status.php:171 -msgid "Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider." -msgstr "O servidor da sua hospedagem não possue o fsockopen e o cURL habilitados. PayPal IPN e outros scripts que se comunicam com o servidor não irão funcionar. Entre em contato com o seu provedor de hospedagem para mais detalhes." - -#: admin/woocommerce-admin-status.php:197 -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "O wp_remote_post() funcionou - O IPN do PayPal IPN esta a funcionar corretamente." - -#: admin/woocommerce-admin-status.php:200 -msgid "wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:" -msgstr "wp_remote_post() falhou. PayPal IPN não vai funcionar com o seu servidor. Contacte o seu provedor de hospedagem. Erro:" - -#: admin/woocommerce-admin-status.php:203 -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "wp_remote_post() falhou. PayPal IPN pode não funcionar com o seu servidor." - -#: admin/woocommerce-admin-status.php:27 -#: admin/woocommerce-admin-status.php:736 -msgid "Tools" -msgstr "Ferramentas" - -#: classes/class-wc-coupon.php:448 -#, php-format -msgid "Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from your order." -msgstr "Desculpe, mas parece que o cupão \"%s\" é inválido - e foi agora retirado do seu pedido." - -#: classes/class-wc-coupon.php:451 -#, php-format -msgid "Sorry, it seems the coupon \"%s\" is not yours - it has now been removed from your order." -msgstr "Desculpe, mas parece que o cupão \"%s\" não é seu - e foi agora retirado do seu pedido." - -#: classes/class-wc-cart.php:884 -#: classes/class-wc-cart.php:892 -#, php-format -msgid "%s You cannot add that amount to the cart — we have %s in stock and you already have %s in your cart." -msgstr "%s Desculpe, mas você não pode adicionar esta quantidade ao carrinho — nós temos apenas %s itens em stock e você possui %s no seu carrinho." - -#: classes/class-wc-checkout.php:65 -msgctxt "placeholder" -msgid "Username" -msgstr "Utilizador" - -#: classes/class-wc-checkout.php:73 -msgctxt "placeholder" -msgid "Password" -msgstr "Senha" - -#: classes/class-wc-checkout.php:90 -msgctxt "placeholder" -msgid "Notes about your order, e.g. special notes for delivery." -msgstr "Notas sobre o seu pedido (por exemplo, informações especiais sobre entrega)." - -#: classes/class-wc-checkout.php:458 -#, php-format -msgid "(%s) is not a valid postcode/ZIP." -msgstr "(%s) não é um Código Postal válido." - -#: classes/class-wc-checkout.php:479 -msgid "is not valid. Please enter one of the following:" -msgstr "não é válido. Por favor, indique algum dos seguintes:" - -#: classes/class-wc-checkout.php:642 -#: woocommerce-functions.php:794 -msgid "Couldn’t register you… please contact us if you continue to have problems." -msgstr "Não foi possível registá-lo; por favor entre em contato connosco caso continue a ter problemas." - -#: classes/class-wc-checkout.php:152 -#, php-format -msgid "Order – %s" -msgstr "Pedido – %s" - -#: classes/class-wc-checkout.php:152 -#, php-format -msgctxt "Order date parsed by strftime" -msgid "%b %d, %Y @ %I:%M %p" -msgstr "%b %d, %Y @ %I:%M %p" - -#: classes/class-wc-checkout.php:278 -msgid "Backordered" -msgstr "Pendente" - -#: classes/class-wc-countries.php:38 -msgid "Åland Islands" -msgstr "Ilhas Åland" - -#: classes/class-wc-countries.php:217 -msgid "Saint Barthélemy" -msgstr "São Bartolomeu" - -#: classes/class-wc-countries.php:226 -msgid "São Tomé and Príncipe" -msgstr "São Tomé e Príncipe" - -#: i18n/states/BR.php:20 -msgid "Espírito Santo" -msgstr "Espírito Santo" - -#: i18n/states/BR.php:27 -msgid "Paraíba" -msgstr "Paraíba" - -#: i18n/states/HK.php:14 -msgid "Kowloon" -msgstr "Kowloon" - -#: classes/class-wc-countries.php:790 -msgid "Canton" -msgstr "Canton" - -#: classes/class-wc-coupon.php:460 -msgid "Coupon usage limit has been reached." -msgstr "O limite de uso do cupão foi alcançado." - -#: classes/class-wc-coupon.php:463 -msgid "This coupon has expired." -msgstr "Este cupão expirou." - -#: classes/class-wc-coupon.php:466 -#, php-format -msgid "The minimum spend for this coupon is %s." -msgstr "O valor mínimo do pedido para este cupão é %s." - -#: classes/class-wc-emails.php:289 -#: classes/class-wc-emails.php:321 -#: classes/class-wc-emails.php:365 -#, php-format -msgid "Product #%s - %s" -msgstr "Produto #%s - %s" - -#: classes/class-wc-emails.php:367 -#, php-format -msgid "%s units of %s have been backordered in order #%s." -msgstr "%s unidades de %s foram encomendados no pedido #%s." - -#: classes/class-wc-emails.php:246 -msgid "Note" -msgstr "Nota" - -#: classes/class-wc-order.php:283 -msgctxt "hash before order number" -msgid "#" -msgstr "#" - -#: classes/class-wc-order.php:886 -#, php-format -msgid " %svia %s" -msgstr " %svia %s" - -#: classes/abstracts/abstract-wc-product.php:551 -#, php-format -msgid "Only %s left in stock" -msgstr "Apenas %s em stock" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:82 -msgid "Account Details" -msgstr "Detalhes da Conta" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:84 -msgid "Optionally enter your bank details below for customers to pay into." -msgstr "Opcionalmente, insira os seus dados bancários abaixo para que os clientes possam pagar." - -#: classes/gateways/cod/class-wc-gateway-cod.php:81 -msgid "Enable Cash on Delivery" -msgstr "Ativar pagamento em dinheiro na entrega" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:31 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:168 -msgid "Mijireh Checkout" -msgstr "Mijireh Checkout" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:108 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:293 -msgid "Mijireh error:" -msgstr "Erro no Mijireh:" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:132 -msgid "Enable Mijireh Checkout" -msgstr "Habilitar checkout com Mijireh" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:136 -msgid "Access Key" -msgstr "Chave de Acesso" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:138 -msgid "The Mijireh access key for your store." -msgstr "Chave de acesso do Mijireh para a sua loja." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:146 -msgid "Credit Card" -msgstr "Cartão de Crédito" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:172 -msgid "Get started with Mijireh Checkout" -msgstr "Como começar com o Mijireh" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:173 -msgid "provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site. Mijireh supports a wide variety of payment gateways: Stripe, Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and more." -msgstr "fornece total compatibiliade com a Compilação PCI, uma forma segura para captar e transmitir os dados dos cartões de crédito para o seu gateway de pagamento, mantendo controle sobre o design do seu site. Mijireh suporta uma ampla variedade de gateways de pagamento como: Stripe, Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap e muito mais." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:175 -msgid "Join for free" -msgstr "Registe-se gratuitamente" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:175 -msgid "Learn more about WooCommerce and Mijireh" -msgstr "Leia mais sobre o WooCommerce e Mijireh" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:179 -msgid "provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." -msgstr "fornece total compatibiliade com a Compilação PCI, uma forma segura para captar e transmitir os dados dos cartões de crédito para o seu gateway de pagamento, mantendo controle sobre o design do seu site." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:162 -msgid "Submission method" -msgstr "Método de submissão" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:164 -msgid "Use form submission method." -msgstr "Utilize o método de submissão do formulário." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:165 -msgid "Enable this to post order data to PayPal via a form instead of using a redirect/querystring." -msgstr "Habilite para enviar informações do pedido para o PayPal pelo formulário ao invés de usar um redirecionamento/querystring." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:169 -msgid "Page Style" -msgstr "Estilo da página" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:171 -msgid "Optionally enter the name of the page style you wish to use. These are defined within your PayPal account." -msgstr "Opcional: digite o nome do estilo da página que você deseja usar (definidos dentro da sua conta do PayPal)." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:177 -msgid "Shipping options" -msgstr "Opções de Envio" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:184 -msgid "Send shipping details to PayPal instead of billing." -msgstr "Enviar detalhes de envio para o PayPal em vez dos detalhes de faturação." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:186 -msgid "PayPal allows us to send 1 address. If you are using PayPal for shipping labels you may prefer to send the shipping address rather than billing." -msgstr "PayPal permite-nos enviar 1 endereço. Se você está a usar o PayPal para endereços de entrega, você pode preferir enviar o endereço de entrega, em vez de faturação." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:190 -msgid "Address override" -msgstr "Substituir o endereço" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:192 -msgid "Enable \"address_override\" to prevent address information from being changed." -msgstr "Ativar \"address_override\" para previnir que as informações de endereço sejam alteradas." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:193 -msgid "PayPal verifies addresses therefore this setting can cause errors (we recommend keeping it disabled)." -msgstr "PayPal verifica os endereços portanto esta configuração pode causar erros (recomendamos manter desabilitado)." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:197 -msgid "Gateway Testing" -msgstr "Gateway de Testes" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:206 -#, php-format -msgid "PayPal sandbox can be used to test payments. Sign up for a developer account here." -msgstr "O PayPal sandbox pode ser utilizado para testar os pagamentos. Registe-se para uma conta de desenvolvedor AQUI." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:209 -msgid "Debug Log" -msgstr "Log de depuração" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:211 -msgid "Enable logging" -msgstr "Ativar logs" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:331 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:385 -msgid "Shipping via" -msgstr "Envio via" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:706 -#, php-format -msgid "Order %s has been marked as refunded - PayPal reason code: %s" -msgstr "O pedido %s foi marcado como reembolsado. Código do motivo do PayPal: %s" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:709 -#, php-format -msgid "Payment for order %s refunded/reversed" -msgstr "O pagamento para o pedido %s foi rejeitado." - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:52 -msgid "Enable this option to show the ShareDaddy button on the product page." -msgstr "Habilite esta opção para exibir o botão ShareDaddy na sua página do produto." - -#: classes/integrations/sharethis/class-wc-sharethis.php:83 -msgid "ShareThis Code" -msgstr "Código do ShareThis" - -#: classes/integrations/sharethis/class-wc-sharethis.php:84 -msgid "You can tweak the ShareThis code by editing this option." -msgstr "Você pode ajustar o código do ShareThis editando esta opção." - -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:22 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:329 -msgid "ShareYourCart" -msgstr "ShareYourCart" - -#: classes/integrations/shareyourcart/views/admin-page.php:33 -msgid "Setup your ShareYourCart account" -msgstr "Configurar a sua conta do ShareYourCart" - -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Create an account" -msgstr "Criar uma conta" - -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Can't access your account?" -msgstr "Não consegue aceder à sua conta?" - -#: classes/integrations/shareyourcart/views/admin-page.php:100 -msgid "Configure" -msgstr "Configurar" - -#: classes/integrations/shareyourcart/views/button-settings-page.php:8 -#: classes/integrations/shareyourcart/views/button-settings-page.php:11 -msgid "Button style" -msgstr "Estilo do botão" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:116 -msgid "Cost per order" -msgstr "Custo por pedido" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:160 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:126 -msgid "Enter a minimum fee amount. Fee's less than this will be increased. Leave blank to disable." -msgstr "Digite uma taxa mínima. Taxas menores que esta serão aumentadas. Deixe em branco para desativar." - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 -msgid "Fixed amount" -msgstr "Quantia fixa" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:117 -msgid "Percentage of cart total" -msgstr "Porcentagem do total do carrinho" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:118 -msgid "Fixed amount per product" -msgstr "Quantia fixa por produto" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:123 -msgid "Delivery Fee" -msgstr "Entrega grátis" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:129 -msgid "What fee do you want to charge for local delivery, disregarded if you choose free. Leave blank to disable." -msgstr "Qual a taxa que você deseja cobrar para a entrega local, excetuando a opção de envio grátis. Deixe em branco para desativar." - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:135 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:89 -msgid "Zip/Post Codes" -msgstr "Código Postal" - -#: classes/class-wc-coupon.php:498 -msgid "Please enter a coupon code." -msgstr "Por favor, digite o código do cupão." - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:51 -msgid "Please enter a valid order ID" -msgstr "Por favor insira um ID de pedido válido" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:55 -msgid "Please enter a valid order email" -msgstr "Por favor, indique um e-mail de pedido válido" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:74 -msgid "Sorry, we could not find that order id in our database." -msgstr "Desculpe, não conseguimos encontrar esse pedido na nossa base de dados." - -#: woocommerce-template.php:219 -#, php-format -msgid "Search Results: “%s”" -msgstr "Resultados da Pesquisa: “%s”" - -#: woocommerce-template.php:222 -#, php-format -msgid " – Page %s" -msgstr " – Página %s" - -#: templates/checkout/form-billing.php:17 -msgid "Billing & Shipping" -msgstr "Faturação & Envio" - -#: templates/checkout/form-shipping.php:32 -msgid "Ship to billing address?" -msgstr "Enviar para endereço de faturação?" - -#: templates/emails/plain/admin-new-order.php:20 -msgid "jS F Y" -msgstr "j F Y" - -#: templates/emails/customer-new-account.php:14 -#: templates/emails/plain/customer-new-account.php:13 -#, php-format -msgid "Thanks for creating an account on %s. Your username is %s." -msgstr "Obrigado por criar uma conta em %s. O seu nome de utilizador é %s." - -#: templates/emails/customer-new-account.php:16 -#: templates/emails/plain/customer-new-account.php:15 -#, php-format -msgid "You can access your account area here: %s." -msgstr "Você pode aceder à sua conta aqui: %s." - -#: templates/order/order-details.php:90 -msgid "Order Again" -msgstr "Comprar novamente" - -#: templates/order/tracking.php:18 -#, php-format -msgid "Order %s which was made %s has the status “%s”" -msgstr "Pedido %s feito em %s com o estado “%s”" - -#: templates/order/tracking.php:18 -msgid "ago" -msgstr "atrás" - -#: templates/single-product/add-to-cart/variable.php:69 -msgid "Clear selection" -msgstr "Limpar seleção" - -#: templates/single-product/review.php:40 -msgid "verified owner" -msgstr "proprietário verificado" - -#: templates/single-product-reviews.php:97 -msgid "Rate…" -msgstr "Taxa…" - -#: classes/widgets/class-wc-widget-best-sellers.php:198 -msgid "Hide free products" -msgstr "Ocultar produtos gratuitos" - -#: classes/widgets/class-wc-widget-cart.php:33 -msgid "Display the user's Cart in the sidebar." -msgstr "Exibir o carrinho de compras na barra lateral." - -#: classes/widgets/class-wc-widget-cart.php:35 -msgid "WooCommerce Cart" -msgstr "Carrinho do WooCommerce" - -#: classes/widgets/class-wc-widget-product-categories.php:129 -msgid "No product categories exist." -msgstr "Não existem categorias de produtos." - -#: classes/widgets/class-wc-widget-recent-reviews.php:97 -#, php-format -msgctxt "by comment author" -msgid "by %1$s" -msgstr "por %1$s" - -#: admin/includes/updates/woocommerce-update-2.0.php:58 -#: woocommerce.php:789 -msgctxt "slug" -msgid "product" -msgstr "produto" - -#: woocommerce-core-functions.php:1581 -msgid "Uncategorized" -msgstr "Sem categoria" - -#: woocommerce-functions.php:878 -msgid "The cart has been filled with the items from your previous order." -msgstr "Os itens do seu pedido anterior foram inseridos no seu carrinho atual." - -#: woocommerce-template.php:1343 -msgid "Update country" -msgstr "Atualizar país" - -#: woocommerce.php:825 -msgctxt "Admin menu name" -msgid "Categories" -msgstr "Categorias" - -#: woocommerce.php:861 -msgctxt "Admin menu name" -msgid "Tags" -msgstr "Tags" - -#: woocommerce.php:892 -msgctxt "Admin menu name" -msgid "Shipping Classes" -msgstr "Classes de Envio" - -#: woocommerce.php:987 -msgctxt "Admin menu name" -msgid "Products" -msgstr "Produtos" - -#: woocommerce.php:1100 -msgctxt "Admin menu name" -msgid "Coupons" -msgstr "Cupões" - -#: woocommerce.php:1209 -msgid "Please select a rating" -msgstr "Por favor, selecione uma classificação" - -#: admin/importers/importers-init.php:13 -msgid "WooCommerce Tax Rates (CSV)" -msgstr "WooCommerce Impostos (CSV)" - -#: admin/importers/importers-init.php:13 -msgid "Import tax rates to your store via a csv file." -msgstr "Importe os impostos para a sua loja via arquivo csv." - -#: admin/importers/tax-rates-importer.php:103 -#: admin/importers/tax-rates-importer.php:190 -#: admin/importers/tax-rates-importer.php:230 -#: admin/importers/tax-rates-importer.php:245 -msgid "Sorry, there has been an error." -msgstr "Desculpe, ocorreu um erro." - -#: admin/importers/tax-rates-importer.php:104 -msgid "The file does not exist, please try again." -msgstr "O arquivo não existe, por favor tente novamente." - -#: admin/importers/tax-rates-importer.php:191 -msgid "The CSV is invalid." -msgstr "O arquivo CSV é inválido." - -#: admin/importers/tax-rates-importer.php:202 -#, php-format -msgid "Import complete - imported %s tax rates and skipped %s." -msgstr "Importação concluída - importados %s impostos e ignorados %s." - -#: admin/importers/tax-rates-importer.php:212 -msgid "All done!" -msgstr "Tudo feito!" - -#: admin/importers/tax-rates-importer.php:212 -msgid "View Tax Rates" -msgstr "Ver taxas de imposto" - -#: admin/importers/tax-rates-importer.php:263 -msgid "Import Tax Rates" -msgstr "Importar Taxas de Imposto" - -#: admin/importers/tax-rates-importer.php:286 -msgid "Hi there! Upload a CSV file containing tax rates to import the contents into your shop. Choose a .csv file to upload, then click \"Upload file and import\"." -msgstr "Olá! Faça upload de um arquivo CSV contendo os impostos a serem aplicados na sua loja. Escolha um arquivo .csv para fazer upload, depois clique em \"Fazer upload de arquivo e importar\"." - -#: admin/importers/tax-rates-importer.php:288 -#, php-format -msgid "Tax rates need to be defined with columns in a specific order (10 columns). Click here to download a sample." -msgstr "As taxas de impostos precisam ser definidas com as colunas numa ordem específica (10 colunas). Clique aqui para fazer download de um exemplo." - -#: admin/importers/tax-rates-importer.php:296 -msgid "Before you can upload your import file, you will need to fix the following error:" -msgstr "Antes de poder realizar upload do arquivo de importação, você deve corrigir o seguinte erro:" - -#: admin/importers/tax-rates-importer.php:305 -msgid "Choose a file from your computer:" -msgstr "Selecione um arquivo no seu computador:" - -#: admin/importers/tax-rates-importer.php:311 -#, php-format -msgid "Maximum size: %s" -msgstr "Tamanho máximo: %s" - -#: admin/importers/tax-rates-importer.php:316 -msgid "OR enter path to file:" -msgstr "ou indique o caminho para o arquivo:" - -#: admin/importers/tax-rates-importer.php:323 -msgid "Delimiter" -msgstr "Delimitador" - -#: admin/importers/tax-rates-importer.php:329 -msgid "Upload file and import" -msgstr "Fazer upload do arquivo e importar" - -#: admin/includes/welcome.php:154 -#: woocommerce.php:171 -msgid "Docs" -msgstr "Docs" - -#: admin/includes/notice-update.php:6 -msgid "Data Update Required – We just need to update your install to the latest version" -msgstr "Atualização de dados obrigatória – Precisamos atualizar a sua instalação para a versão mais recente" - -#: admin/includes/notice-update.php:7 -msgid "Run the updater" -msgstr "Fazer a atualização" - -#: admin/includes/notice-update.php:12 -msgid "It is strongly recommended that you backup your database before proceeding. Are you sure you wish to run the updater now?" -msgstr "É extremamente recomendado que você faça backup de seu banco de dados antes de continuar. Você tem certeza que deseja fazer a atualização agora?" - -#: admin/post-types/product.php:796 -#: admin/post-types/product.php:820 -msgid "Increase by (fixed amount or %):" -msgstr "Aumentar por (valor fixo ou %):" - -#: admin/post-types/product.php:797 -#: admin/post-types/product.php:821 -msgid "Decrease by (fixed amount or %):" -msgstr "Diminuir por (valor fixo ou %):" - -#: admin/post-types/product.php:807 -#: admin/post-types/product.php:832 -msgid "Enter price" -msgstr "Indique o preço" - -#: admin/post-types/product.php:822 -msgid "Decrease regular price by (fixed amount or %):" -msgstr "Diminuir preço normal por (valor fixo ou %):" - -#: admin/post-types/product.php:1222 -msgid "Insert into product" -msgstr "Inserir no produto" - -#: admin/post-types/product.php:1223 -msgid "Uploaded to this product" -msgstr "Arquivo enviado para este produto" - -#: admin/post-types/shop_coupon.php:30 -msgid "Usage / Limit" -msgstr "Uso / Limite" - -#: admin/post-types/shop_coupon.php:56 -msgid "Edit coupon" -msgstr "Editar cupão" - -#: admin/post-types/shop_coupon.php:114 -#, php-format -msgid "%s / %s" -msgstr "%s / %s" - -#: admin/post-types/shop_coupon.php:116 -#, php-format -msgid "%s / ∞" -msgstr "%s / ∞" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -#, php-format -msgid "File %d: %s" -msgstr "Arquivo %d: %s" - -#: admin/post-types/writepanels/order-fee-html.php:10 -msgid "Fee Name" -msgstr "Nome da Taxa" - -#: admin/post-types/writepanels/order-tax-html.php:6 -msgid "Tax Rate:" -msgstr "Valor do imposto:" - -#: admin/post-types/writepanels/order-tax-html.php:16 -#: admin/post-types/writepanels/writepanel-order_data.php:630 -msgid "Sales Tax:" -msgstr "Imposto sobre as vendas:" - -#: admin/post-types/writepanels/variation-admin-html.php:76 -msgid "Cancel schedule" -msgstr "Cancelar agendamento" - -#: admin/post-types/writepanels/variation-admin-html.php:83 -msgid "Sale start date:" -msgstr "Data de início da venda:" - -#: admin/post-types/writepanels/variation-admin-html.php:87 -msgid "Sale end date:" -msgstr "Data final de venda:" - -#: admin/post-types/writepanels/variation-admin-html.php:143 -msgid "File paths:" -msgstr "Caminho do arquivo:" - -#: admin/post-types/writepanels/variation-admin-html.php:143 -msgid "Enter one or more File Paths, one per line, to make this variation a downloadable product, or leave blank." -msgstr "Insira uma ou mais URLs do(s) arquivo(s), uma por linha, para fazer a variação de download para um produto ou deixe o campo em branco." - -#: admin/post-types/writepanels/variation-admin-html.php:144 -#: admin/post-types/writepanels/writepanel-product_data.php:153 -msgid "File paths/URLs, one per line" -msgstr "Caminho do arquivo (URL), um por linha" - -#: admin/post-types/writepanels/variation-admin-html.php:145 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Choose a file" -msgstr "Escolha um arquivo" - -#: admin/post-types/writepanels/variation-admin-html.php:145 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Insert file URL" -msgstr "Inserir a URL do arquivo" - -#: admin/post-types/writepanels/variation-admin-html.php:158 -msgid "Download Expiry:" -msgstr "Expiração do Download:" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Coupon description" -msgstr "Descrição do cupão" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Optionally enter a description for this coupon for your reference." -msgstr "Opcional: digite uma descrição para este cupão (para sua referência)." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -#, php-format -msgid "Check this box if the coupon grants free shipping. The free shipping method must be enabled with the \"must use coupon\" setting checked." -msgstr "Marque esta caixa se o cupão garante o envio grátis. O método de envio grátis necessita estar habilitado com a opção \"necessário usar cupão\" selecionada." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "Check this box if the coupon cannot be used in conjunction with other coupons." -msgstr "Selecione esta caixa se o cupão não poder ser usado em conjunto com outros cupões." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "Check this box if the coupon should be applied before calculating cart tax." -msgstr "Habilte se o cupão de desconto deve ser usado antes de calcular o imposto no carrinho." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:94 -msgid "Exclude products" -msgstr "Excluir produtos" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:116 -#: assets/js/admin/editor_plugin_lang.php:9 -msgid "Product categories" -msgstr "Categorias de produto" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:130 -msgid "Exclude categories" -msgstr "Excluir categorias" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "How many times this coupon can be used before it is void." -msgstr "Quantas vezes este cupão pode ser usado antes de expirar." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "The date this coupon will expire, YYYY-MM-DD." -msgstr "Este cupão é válido até DD-MM-YYYY." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:195 -msgid "Coupon code already exists - customers will use the latest coupon with this code." -msgstr "Já existe um cupão com este código - os clientes usarão o último cupão criado com este código." - -#: admin/post-types/writepanels/writepanel-order_data.php:62 -msgid "Order number" -msgstr "Número do pedido" - -#: admin/post-types/writepanels/writepanel-order_data.php:67 -msgid "Customer IP:" -msgstr "IP do Cliente:" - -#: admin/post-types/writepanels/writepanel-order_data.php:74 -msgid "General Details" -msgstr "Detalhes Gerais" - -#: admin/post-types/writepanels/writepanel-order_data.php:208 -msgid "Load billing address" -msgstr "Carregar endereço de faturação" - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Load shipping address" -msgstr "Carregar endereço de entrega" - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Copy from billing" -msgstr "Copiar de faturação" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -msgid "Line subtotals are before pre-tax discounts, totals are after." -msgstr "Linhas subtotais são antes do desconto pré-imposto, totais são depois." - -#: admin/post-types/writepanels/writepanel-order_data.php:388 -msgid "Delete Lines" -msgstr "Apagar linhas" - -#: admin/post-types/writepanels/writepanel-order_data.php:390 -msgid "Stock Actions" -msgstr "Ações de stock" - -#: admin/post-types/writepanels/writepanel-order_data.php:391 -msgid "Reduce Line Stock" -msgstr "Reduzir stock" - -#: admin/post-types/writepanels/writepanel-order_data.php:392 -msgid "Increase Line Stock" -msgstr "Aumentar stock" - -#: admin/post-types/writepanels/writepanel-order_data.php:396 -#: admin/post-types/writepanels/writepanel-order_data.php:456 -msgid "Apply" -msgstr "Aplicar" - -#: admin/post-types/writepanels/writepanel-order_data.php:403 -msgid "Add fee" -msgstr "Adicionar taxa" - -#: admin/post-types/writepanels/writepanel-order_data.php:434 -msgid "Resend order emails" -msgstr "Reenviar e-mails do pedido" - -#: admin/post-types/writepanels/writepanel-order_data.php:502 -msgid "Discounts before tax - calculated by comparing subtotals to totals." -msgstr "Descontos antes do imposto - calculado comparando subtotais com o total." - -#: admin/post-types/writepanels/writepanel-order_data.php:510 -msgid "Discounts after tax - user defined." -msgstr "Descontos depois do imposto - definido pelo utilizador." - -#: admin/post-types/writepanels/writepanel-order_data.php:543 -msgid "Label:" -msgstr "Etiqueta:" - -#: admin/post-types/writepanels/writepanel-order_data.php:544 -msgid "The shipping title the customer sees" -msgstr "O título do envio que o cliente verá:" - -#: admin/post-types/writepanels/writepanel-order_data.php:551 -msgid "Cost:" -msgstr "Custo:" - -#: admin/post-types/writepanels/writepanel-order_data.php:581 -#: admin/post-types/writepanels/writepanel-order_data.php:583 -#: admin/post-types/writepanels/writepanel-order_data.php:682 -#: admin/post-types/writepanels/writepanel-order_data.php:684 -msgid "Other" -msgstr "Outro" - -#: admin/post-types/writepanels/writepanel-order_data.php:630 -msgid "Total tax for line items + fees." -msgstr "Total de impostos para a linha de itens + taxas." - -#: admin/post-types/writepanels/writepanel-order_data.php:695 -msgid "Calc taxes" -msgstr "Calcular impostos" - -#: admin/post-types/writepanels/writepanel-order_data.php:697 -msgid "Calc totals" -msgstr "Calcular totais" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:76 -msgid "Toggle "Enabled"" -msgstr "Alternar "Habilitado"" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:77 -msgid "Toggle "Downloadable"" -msgstr "Alternar "Descarregar/Download"" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:78 -msgid "Toggle "Virtual"" -msgstr "Alternar "Virtual"" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:79 -msgid "Delete all variations" -msgstr "Excluir todas as variações" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:92 -msgid "Go" -msgstr "Ir" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:518 -#: admin/woocommerce-admin-taxonomies.php:62 -#: admin/woocommerce-admin-taxonomies.php:154 -msgid "Choose an image" -msgstr "Escolher uma imagem" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:520 -msgid "Set variation image" -msgstr "Configurar imagem da variação" - -#: admin/post-types/writepanels/writepanel-product_data.php:83 -msgid "Linked Products" -msgstr "Produtos Relacionados" - -#: admin/post-types/writepanels/writepanel-product_data.php:152 -msgid "File paths (one per line)" -msgstr "Caminho dos arquivos (um por linha)" - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "Sold Individually" -msgstr "Vender individualmente" - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "Enable this to only allow one of this item to be bought in a single order" -msgstr "Habilite para permitir que somente um item deste seja comprado por pedido." - -#: admin/post-types/writepanels/writepanel-product_data.php:517 -msgid "Save attributes" -msgstr "Salvar atributos" - -#: admin/post-types/writepanels/writepanel-product_data.php:593 -msgid "Set this option to make this product part of a grouped product." -msgstr "Selecione esta opção para fazer com que este produto faça parte de um grupo." - -#: admin/post-types/writepanels/writepanel-product_images.php:43 -#: admin/post-types/writepanels/writepanel-product_images.php:103 -msgid "Delete image" -msgstr "Apagar imagem" - -#: admin/post-types/writepanels/writepanel-product_images.php:54 -msgid "Add product gallery images" -msgstr "Adicionar galeria de imagens do produto" - -#: admin/post-types/writepanels/writepanel-product_images.php:80 -msgid "Add Images to Product Gallery" -msgstr "Adicionar Imagens à Galeria Produto" - -#: admin/post-types/writepanels/writepanel-product_images.php:82 -msgid "Add to gallery" -msgstr "Adicionar na galeria" - -#: admin/post-types/writepanels/writepanels-init.php:47 -msgid "Product Gallery" -msgstr "Galeria de Produtos" - -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "Order Items" -msgstr "Ordem dos itens" - -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "Note: if you edit quantities or remove items from the order you will need to manually update stock levels." -msgstr "Obs: se você editar quantidades ou remover itens do pedido você terá que atualizar os níveis de stock manualmente." - -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "Downloadable Product Permissions" -msgstr "Permissões do Produto de Download" - -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "Note: Permissions for order items will automatically be granted when the order status changes to processing/completed." -msgstr "Nota: As permissões para os itens do pedido serão concedidas automaticamente quando o estado do pedido estiver em processamento ou completado." - -#: admin/settings/settings-init.php:151 -msgid "Allow registration on the checkout page" -msgstr "Permitir registo na página de \"Finalizar compra\"" - -#: admin/settings/settings-init.php:159 -msgid "Allow registration on the \"My Account\" page" -msgstr "Permitir registo na página \"Minha conta\"" - -#: admin/settings/settings-init.php:167 -msgid "Register using the email address for the username" -msgstr "Registar-se como utilizador usando o endereço de e-mail" - -#: admin/settings/settings-init.php:84 -msgid "Store Notice" -msgstr "Notificação da loja" - -#: admin/settings/settings-init.php:92 -msgid "Store Notice Text" -msgstr "Texto de notificação da loja" - -#: admin/settings/settings-init.php:239 -msgid "File Download Method" -msgstr "Método de download do arquivo" - -#: admin/settings/settings-init.php:292 -#, php-format -msgid "Set up core WooCommerce pages here, for example the base page. The base page can also be used in your %sproduct permalinks%s." -msgstr "Configure as páginas principais do WooCommerce aqui. Estas páginas de base são usadas na estrutura das %sligações permanentes do produto%s." - -#: admin/settings/settings-init.php:308 -msgid "Terms Page ID" -msgstr "Página de Termos de Uso" - -#: admin/settings/settings-init.php:422 -msgid "Lost Password Page" -msgstr "Página de Senha Perdida" - -#: admin/settings/settings-init.php:423 -msgid "Page contents: [woocommerce_lost_password] Parent: \"My Account\"" -msgstr "Conteúdo da página: [woocommerce_lost_password] Parente: \"Minha Conta\"" - -#: admin/settings/settings-init.php:442 -msgid "Default Product Sorting" -msgstr "Ordem de produto padrão" - -#: admin/settings/settings-init.php:460 -msgid "Shop Page Display" -msgstr "Exibir página da loja" - -#: admin/settings/settings-init.php:461 -msgid "This controls what is shown on the product archive." -msgstr "Controla o que será exibido nos arquivos de produtos" - -#: admin/settings/settings-init.php:467 -#: admin/settings/settings-init.php:482 -msgid "Show products" -msgstr "Exibir produtos" - -#: admin/settings/settings-init.php:469 -#: admin/settings/settings-init.php:484 -msgid "Show both" -msgstr "Exibir ambos" - -#: admin/settings/settings-init.php:475 -msgid "Default Category Display" -msgstr "Exibição de categoria padrão" - -#: admin/settings/settings-init.php:476 -msgid "This controls what is shown on category archives." -msgstr "Controla o que é exibido nos arquivos de categorias." - -#: admin/settings/settings-init.php:511 -msgid "Product Fields" -msgstr "Campos do Produto" - -#: admin/settings/settings-init.php:625 -msgid "Thousand Separator" -msgstr "Separador de Milhares" - -#: admin/settings/settings-init.php:635 -msgid "Decimal Separator" -msgstr "Separador Decimal" - -#: admin/settings/settings-init.php:645 -msgid "Number of Decimals" -msgstr "Número de casas decimais" - -#: admin/settings/settings-init.php:659 -msgid "Trailing Zeros" -msgstr "Zeros à direita" - -#: admin/settings/settings-init.php:722 -msgid "Manage Stock" -msgstr "Gerenciar Stock" - -#: admin/settings/settings-init.php:730 -msgid "Hold Stock (minutes)" -msgstr "Manter Stock (minutos)" - -#: admin/settings/settings-init.php:731 -msgid "Hold stock (for unpaid orders) for x minutes. When this limit is reached, the pending order will be cancelled. Leave blank to disable." -msgstr "Manter stock (para pedidos não pagos) por X minutos. Quando esse limite é atingido, o pedido pendente será cancelado. Deixe em branco para desativar." - -#: admin/settings/settings-init.php:768 -msgid "Low Stock Threshold" -msgstr "Limite de \"Stock Baixo\"" - -#: admin/settings/settings-init.php:781 -msgid "Out Of Stock Threshold" -msgstr "Limite de \"Fora de Stock\"" - -#: admin/settings/settings-init.php:794 -msgid "Out Of Stock Visibility" -msgstr "Visibilidade de produtos \"Fora de Stock\"" - -#: admin/settings/settings-init.php:802 -msgid "Stock Display Format" -msgstr "Formato de exibição do Stock" - -#: admin/settings/settings-init.php:826 -msgid "Shipping Calculations" -msgstr "Cálculo de envio" - -#: admin/settings/settings-init.php:851 -msgid "Shipping Method Display" -msgstr "Exibição do Método de Envio" - -#: admin/settings/settings-init.php:921 -msgid "Enable Taxes" -msgstr "Habilitar Impostos" - -#: admin/settings/settings-init.php:929 -msgid "Prices Entered With Tax" -msgstr "Preços inseridos com imposto" - -#: admin/settings/settings-init.php:933 -msgid "This option is important as it will affect how you input prices. Changing it will not update existing products." -msgstr "Esta opção é importante, já que afetará como você insere os preços. Alterando isto não atualizará produtos existentes." - -#: admin/settings/settings-init.php:935 -msgid "Yes, I will enter prices inclusive of tax" -msgstr "Sim, eu incluirei valores com as taxas de impostos" - -#: admin/settings/settings-init.php:936 -msgid "No, I will enter prices exclusive of tax" -msgstr "Não, eu incluirei os valores sem as taxas de impostos" - -#: admin/settings/settings-init.php:941 -msgid "Calculate Tax Based On:" -msgstr "Calcular o Imposto com base em:" - -#: admin/settings/settings-init.php:943 -msgid "This option determines which address is used to calculate tax." -msgstr "Esta opção determina qual endereço é usado para calcular o imposto." - -#: admin/settings/settings-init.php:947 -msgid "Customer shipping address" -msgstr "Endereço de entrega do cliente" - -#: admin/settings/settings-init.php:948 -msgid "Customer billing address" -msgstr "Endereço de faturação do cliente" - -#: admin/settings/settings-init.php:949 -#: admin/settings/settings-init.php:961 -msgid "Shop base address" -msgstr "Endereço base da loja" - -#: admin/settings/settings-init.php:954 -msgid "Default Customer Address:" -msgstr "Endereço Padrão do Cliente:" - -#: admin/settings/settings-init.php:956 -msgid "This option determines the customers default address (before they input their own)." -msgstr "Esta opção determina o endereço padrão dos clientes (antes dele introduzir o seu próprio)." - -#: admin/settings/settings-init.php:960 -msgid "No address" -msgstr "Sem endereço" - -#: admin/settings/settings-init.php:966 -msgid "Shipping Tax Class:" -msgstr "Classe de Imposto de transporte:" - -#: admin/settings/settings-init.php:967 -msgid "Optionally control which tax class shipping gets, or leave it so shipping tax is based on the cart items themselves." -msgstr "Opcionalmente você pode controlar os impostos sobre os tipos de transporte ou deixá-lo para calcular o imposto do transporte com base nos itens do carrinho." - -#: admin/settings/settings-init.php:977 -msgid "Rounding" -msgstr "Arredondamento" - -#: admin/settings/settings-init.php:978 -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "Arrendondar taxa de imposto sobre o subtotal, ao invés de arrendondar por cada linha." - -#: admin/settings/settings-init.php:985 -msgid "Additional Tax Classes" -msgstr "Classes de impostos adicionais" - -#: admin/settings/settings-init.php:986 -msgid "List additonal tax classes below (1 per line). This is in addition to the default Standard Rate. Tax classes can be assigned to products." -msgstr "Liste as classes adicionais de impostos logo abaixo (uma por linha). Estas classes adicionam os impostos na Taxa Padrão. As taxas adicionais podem ser atribuídas aos produtos." - -#: admin/settings/settings-init.php:994 -msgid "Display prices during cart/checkout:" -msgstr "Mostrar preços durante carrinho/checkout:" - -#: admin/settings/settings-init.php:999 -msgid "Including tax" -msgstr "Incluindo imposto." - -#: admin/settings/settings-init.php:1000 -msgid "Excluding tax" -msgstr "Excluindo imposto" - -#: admin/settings/settings-init.php:1015 -msgid "\"From\" Name" -msgstr "\"De\" Nome" - -#: admin/settings/settings-init.php:1024 -msgid "\"From\" Email Address" -msgstr "\"De\" Endereço de e-mail" - -#: admin/settings/settings-init.php:1037 -msgid "Email Template" -msgstr "Modelo do e-mail" - -#: admin/settings/settings-init.php:1040 -msgid "Header Image" -msgstr "Imagem de Cabeçalho" - -#: admin/settings/settings-init.php:1049 -msgid "Email Footer Text" -msgstr "Texto do rodapé do e-mail" - -#: admin/settings/settings-init.php:1058 -msgid "Base Colour" -msgstr "Cor de base" - -#: admin/settings/settings-init.php:1067 -msgid "Background Colour" -msgstr "Cor de fundo" - -#: admin/settings/settings-init.php:1068 -msgid "The background colour for WooCommerce email templates. Default #f5f5f5." -msgstr "A cor de fundo padrão para os modelos dos e-mails do WooCommerce é #f5f5f5." - -#: admin/settings/settings-init.php:1076 -msgid "Email Body Background Colour" -msgstr "Cor de fundo para o corpo do e-mail" - -#: admin/settings/settings-init.php:1085 -msgid "Email Body Text Colour" -msgstr "Cor de texto para o corpo do e-mail" - -#: admin/settings/settings-tax-rates.php:29 -#, php-format -msgid "Tax Rates for the \"%s\" Class" -msgstr "Taxa de impostos para a categoria \"%s\"" - -#: admin/settings/settings-tax-rates.php:36 -msgid "Country Code" -msgstr "Código do País" - -#: admin/settings/settings-tax-rates.php:36 -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "Um código de 2 dígitos do país, por exemplo: PT. Deixe em branco para aplicar a todos." - -#: admin/settings/settings-tax-rates.php:38 -msgid "State Code" -msgstr "Código do estado" - -#: admin/settings/settings-tax-rates.php:38 -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "Um código de 2 dígitos do estado, por exemplo: SP. Deixe em branco para aplicar a todos. " - -#: admin/settings/settings-tax-rates.php:40 -#: admin/settings/settings-tax-rates.php:217 -msgid "ZIP/Postcode" -msgstr "Código Postal" - -#: admin/settings/settings-tax-rates.php:40 -msgid "Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank to apply to all areas. Wildcards (*) can be used. Ranges for numeric postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "Código Postal para esta regra. Ponto e vírgula separa múltiplos valores. Deixe em branco para aplicar em todas as áreas. \"Asteriscos\" (*) podem ser usados. Intervalos para Códigos Postais numéricos serão expandidos em Códigos Postais individuais." - -#: admin/settings/settings-tax-rates.php:42 -msgid "Cities for this rule. Semi-colon (;) separate multiple values. Leave blank to apply to all cities." -msgstr "Definir cidades para esta configuração. Ponto e vírgula para separar múltiplos valores. Deixe em branco para aplicar em todas as cidades." - -#: admin/settings/settings-tax-rates.php:44 -msgid "Rate %" -msgstr "Taxa %" - -#: admin/settings/settings-tax-rates.php:46 -msgid "Tax Name" -msgstr "Nome do Imposto" - -#: admin/settings/settings-tax-rates.php:46 -msgid "Enter a name for this tax rate." -msgstr "Digite um nome para esta taxa de imposto." - -#: admin/settings/settings-tax-rates.php:48 -#: admin/settings/settings-tax-rates.php:217 -msgid "Priority" -msgstr "Prioridade" - -#: admin/settings/settings-tax-rates.php:48 -msgid "Choose a priority for this tax rate. Only 1 matching rate per priority will be used. To define multiple tax rates for a single area you need to specify a different priority per rate." -msgstr "Escolha uma prioridade para esta taxa de imposto. Só uma taxa de correspondência por prioridade será usada. Para definir várias taxas de imposto para uma única área, necessita especificar uma prioridade diferente por taxa." - -#: admin/settings/settings-tax-rates.php:59 -msgid "Insert row" -msgstr "Inserir linha" - -#: admin/settings/settings-tax-rates.php:60 -msgid "Remove selected row(s)" -msgstr "Remover linha(s) selecionada(s)" - -#: admin/settings/settings-tax-rates.php:62 -msgid "Export CSV" -msgstr "Exportar CSV" - -#: admin/settings/settings-tax-rates.php:63 -msgid "Import CSV" -msgstr "Importar CSV" - -#: admin/settings/settings-tax-rates.php:163 -msgid "No row(s) selected" -msgstr "Nenhuma linha selecionada" - -#: admin/settings/settings-tax-rates.php:217 -msgid "Country Code" -msgstr "Código do País" - -#: admin/settings/settings-tax-rates.php:217 -msgid "State Code" -msgstr "Código do Estado" - -#: admin/settings/settings-tax-rates.php:217 -msgid "Rate %" -msgstr "% da Taxa" - -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Name" -msgstr "Nome do Imposto" - -#: admin/woocommerce-admin-attributes.php:272 -#: admin/woocommerce-admin-attributes.php:404 -msgid "Default sort order" -msgstr "Ordem de classificação padrão" - -#: admin/woocommerce-admin-attributes.php:276 -#: admin/woocommerce-admin-attributes.php:344 -#: admin/woocommerce-admin-attributes.php:406 -msgid "Custom ordering" -msgstr "Ordem personalizada" - -#: admin/woocommerce-admin-attributes.php:278 -#: admin/woocommerce-admin-attributes.php:341 -#: admin/woocommerce-admin-attributes.php:408 -msgid "Term ID" -msgstr "ID do Termo" - -#: admin/woocommerce-admin-attributes.php:280 -#: admin/woocommerce-admin-attributes.php:410 -msgid "Determines the sort order on the frontend for this attribute. If using custom ordering, you can drag and drop the terms in this attribute" -msgstr "Determinar a ordem de classificação na frente do site para este atributo. Se está a usar ordem personalizada, você pode arrastar e soltar os termos neste atributo" - -#: admin/woocommerce-admin-attributes.php:318 -msgid "Order by" -msgstr "Ordenar por" - -#: admin/woocommerce-admin-dashboard.php:428 -msgid "Sold" -msgstr "Vendido" - -#: admin/woocommerce-admin-dashboard.php:429 -msgid "Earned" -msgstr "Ganhos" - -#: admin/woocommerce-admin-functions.php:214 -msgid "Order total:" -msgstr "Total do pedido:" - -#: admin/woocommerce-admin-init.php:433 -msgid "Are you sure you want to remove the selected items? If you have previously reduced this item's stock, or this order was submitted by a customer, you will need to manually restore the item's stock." -msgstr "Você tem certeza que deseja remover os produtos selecionados? Se você reduziu o stock deste item anteriormente, ou este pedido foi feito por um cliente, você precisará restaurar o stock do produto manualmente." - -#: admin/woocommerce-admin-init.php:435 -msgid "Remove this item meta?" -msgstr "Remover este item meta?" - -#: admin/woocommerce-admin-init.php:445 -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "Calcular o total baseado em itens pedidos, descontos e transporte?" - -#: admin/woocommerce-admin-init.php:742 -msgid "These settings control the permalinks used for products. These settings only apply when not using \"default\" permalinks above." -msgstr "Estas configurações controlam os links permanentes dos produtos. Estas configurações só se aplicam quando não utilizando links permanentes padrão acima." - -#: admin/woocommerce-admin-init.php:749 -msgctxt "default-slug" -msgid "shop" -msgstr "loja" - -#: admin/woocommerce-admin-init.php:750 -msgctxt "default-slug" -msgid "product" -msgstr "produto" - -#: admin/woocommerce-admin-init.php:771 -msgid "Shop base" -msgstr "Loja base" - -#: admin/woocommerce-admin-init.php:775 -msgid "Shop base with category" -msgstr "Loja base com Categoria" - -#: admin/woocommerce-admin-init.php:781 -msgid "Custom Base" -msgstr "Base Personalizada" - -#: admin/woocommerce-admin-init.php:783 -msgid "Enter a custom base to use. A base must be set or WordPress will use default instead." -msgstr "Insira uma base personalizada para ser utilizada. A base deve ser configurada, caso contrário o Wordpress irá utilizar a base padrão." - -#: admin/woocommerce-admin-init.php:811 -msgid "Product permalink base" -msgstr "Base do permalink do produto" - -#: admin/woocommerce-admin-init.php:816 -msgid "Product category base" -msgstr "Base da categoria de produtos" - -#: admin/woocommerce-admin-init.php:823 -msgid "Product tag base" -msgstr "Base da tag de produtos" - -#: admin/woocommerce-admin-init.php:830 -msgid "Product attribute base" -msgstr "Base de atributos de produtos" - -#: admin/includes/updates/woocommerce-update-2.0.php:179 -#: admin/woocommerce-admin-install.php:207 -msgctxt "page_slug" -msgid "lost-password" -msgstr "perdeu a senha" - -#: admin/includes/updates/woocommerce-update-2.0.php:179 -#: admin/woocommerce-admin-install.php:207 -#: admin/woocommerce-admin-status.php:346 -msgid "Lost Password" -msgstr "Senha perdida" - -#: admin/woocommerce-admin-reports.php:57 -msgid "Sales by category" -msgstr "Vendas por categoria" - -#: admin/woocommerce-admin-reports.php:72 -msgid "Discounts by coupon" -msgstr "Descontos por cupão" - -#: admin/woocommerce-admin-reports.php:419 -msgid "This month's sales" -msgstr "Vendas deste mês" - -#: admin/woocommerce-admin-reports.php:1379 -msgid "Total orders containing coupons" -msgstr "Total de pedidos contendo cupões" - -#: admin/woocommerce-admin-reports.php:1385 -msgid "Percent of orders containing coupons" -msgstr "Porcentagem dos pedidos contendo cupões" - -#: admin/woocommerce-admin-reports.php:1391 -msgid "Total coupon discount" -msgstr "Total do Cupão de Desconto" - -#: admin/woocommerce-admin-reports.php:1400 -msgid "Most popular coupons" -msgstr "Cupões mais populares" - -#: admin/woocommerce-admin-reports.php:1410 -#, php-format -msgid "Used 1 time" -msgid_plural "Used %d times" -msgstr[0] "Usado 1 vez" -msgstr[1] "Usado %d vezes" - -#: admin/woocommerce-admin-reports.php:1413 -#: admin/woocommerce-admin-reports.php:1435 -msgid "No coupons found" -msgstr "Nenhum cupão encontrado" - -#: admin/woocommerce-admin-reports.php:1422 -msgid "Greatest discount amount" -msgstr "Maior valor de desconto" - -#: admin/woocommerce-admin-reports.php:1432 -#, php-format -msgid "Discounted %s" -msgstr "Descontado %s" - -#: admin/woocommerce-admin-reports.php:1491 -#: admin/woocommerce-admin-reports.php:2470 -msgid "Show:" -msgstr "Exibir:" - -#: admin/woocommerce-admin-reports.php:1631 -msgid "Top coupon" -msgstr "Cupão mais usado" - -#: admin/woocommerce-admin-reports.php:1639 -msgid "Worst coupon" -msgstr "Pior cupão" - -#: admin/woocommerce-admin-reports.php:1647 -msgid "Discount average" -msgstr "Desconto médio" - -#: admin/woocommerce-admin-reports.php:1655 -msgid "Discount median" -msgstr "Desconto mediano" - -#: admin/woocommerce-admin-reports.php:1675 -msgid "Monthly discounts by coupon" -msgstr "Descontos mensais por cupão" - -#: admin/woocommerce-admin-reports.php:2546 -msgid "Category" -msgstr "Categoria" - -#: admin/woocommerce-admin-reports.php:2649 -msgid "Top category" -msgstr "Categoria mais vendida" - -#: admin/woocommerce-admin-reports.php:2658 -msgid "Worst category" -msgstr "Pior categoria" - -#: admin/woocommerce-admin-reports.php:2666 -msgid "Category sales average" -msgstr "Média de vendas por categoria" - -#: admin/woocommerce-admin-reports.php:2677 -msgid "Category sales median" -msgstr "Mediana de vendas por categoria" - -#: admin/woocommerce-admin-reports.php:2697 -msgid "Monthly sales by category" -msgstr "Vendas mensais por categoria" - -#: admin/woocommerce-admin-settings.php:255 -msgid "Email Options" -msgstr "Opções de email" - -#: admin/woocommerce-admin-status.php:619 -msgid "Term counts" -msgstr "Contagem de termos" - -#: admin/woocommerce-admin-status.php:621 -msgid "This tool will recount product terms - useful when changing your settings in a way which hides products from the catalog." -msgstr "Essa ferramenta irá recontar os termos dos produtos - útil quando são alteradas as configurações de forma que os produtos ficam escondidos do catálogo." - -#: admin/woocommerce-admin-status.php:702 -msgid "Terms successfully recounted" -msgstr "Termos recalculados com sucesso" - -#: admin/woocommerce-admin-status.php:406 -msgid "Order Statuses" -msgstr "Estado do pedido" - -#: admin/woocommerce-admin-status.php:176 -msgid "SOAP Client" -msgstr "Cliente SOAP" - -#: admin/woocommerce-admin-status.php:178 -msgid "Your server has the SOAP Client class enabled." -msgstr "O seu servidor possui o cliente SOAP ativo." - -#: admin/woocommerce-admin-status.php:181 -#, php-format -msgid "Your server does not have the SOAP Client class enabled - some gateway plugins which use SOAP may not work as expected." -msgstr "O seu servidor não possui a classe SOAP Client habilitada - alguns plugins de pagamento que utilizam essa classe podem não funcionar como esperado." - -#: admin/woocommerce-admin-taxonomies.php:25 -#: admin/woocommerce-admin-taxonomies.php:118 -msgid "Display type" -msgstr "Tipo de exibição" - -#: admin/woocommerce-admin-taxonomies.php:29 -#: admin/woocommerce-admin-taxonomies.php:123 -msgid "Subcategories" -msgstr "Subcategorias" - -#: admin/woocommerce-admin-taxonomies.php:30 -#: admin/woocommerce-admin-taxonomies.php:124 -msgid "Both" -msgstr "Ambos" - -#: admin/woocommerce-admin-taxonomies.php:64 -#: admin/woocommerce-admin-taxonomies.php:156 -msgid "Use image" -msgstr "Usar imagem" - -#: admin/woocommerce-admin-users.php:29 -msgid "Completed Orders" -msgstr "Pedidos Concluídos" - -#: admin/woocommerce-admin-users.php:176 -msgid "Country or state code" -msgstr "Código do país ou estado" - -#: assets/js/admin/editor_plugin_lang.php:5 -msgid "Insert Shortcode" -msgstr "Inserir Shortcode" - -#: assets/js/admin/editor_plugin_lang.php:6 -msgid "Product price/cart button" -msgstr "Preço do produto/botão de carrinho" - -#: assets/js/admin/editor_plugin_lang.php:7 -msgid "Product by SKU/ID" -msgstr "Produto por SKU/ID" - -#: assets/js/admin/editor_plugin_lang.php:8 -msgid "Products by SKU/ID" -msgstr "Produtos por SKU/ID" - -#: assets/js/admin/editor_plugin_lang.php:10 -msgid "Products by category slug" -msgstr "Produtos por slug de categoria" - -#: assets/js/admin/editor_plugin_lang.php:11 -msgid "Recent products" -msgstr "Produtos recentes" - -#: assets/js/admin/editor_plugin_lang.php:12 -msgid "Featured products" -msgstr "Produtos em destaque" - -#: assets/js/admin/editor_plugin_lang.php:13 -msgid "Shop Messages" -msgstr "Mensagens da loja" - -#: assets/js/admin/editor_plugin_lang.php:17 -msgid "Order tracking" -msgstr "Acompanhamento de pedido" - -#: admin/woocommerce-admin-status.php:334 -#: assets/js/admin/editor_plugin_lang.php:19 -msgid "Edit Address" -msgstr "Editar endereço" - -#: assets/js/admin/editor_plugin_lang.php:23 -msgid "Thankyou" -msgstr "Obrigado" - -#: classes/class-wc-cart.php:478 -#: classes/class-wc-cart.php:487 -#, php-format -msgid "Sorry, we do not have enough \"%s\" in stock to fulfil your order (%s in stock). Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Desculpe-nos, mas não temos \"%s\" suficiente em stock para atender o seu pedido (%s em stock). Por favor, edite o seu carrinho e tente novamente. Desculpe-nos pelo inconveniente." - -#: classes/class-wc-cart.php:522 -#, php-format -msgid "Sorry, we do not have enough \"%s\" in stock to fulfil your order right now. Please try again in %d minutes or edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Desculpe-nos, mas não temos \"%s\" suficiente em stock para atender o seu pedido neste momento (%d em stock). Por favor, edite o seu carrinho e tente novamente. Desculpe-nos pelo inconveniente." - -#: classes/class-wc-cart.php:532 -#, php-format -msgid "Sorry, \"%s\" is not in stock. Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Desculpe, mas \"%s\" está em falta no stock. Por favor, edite o seu carrinho de compras e tente novamente. Desculpe-nos por qualquer inconveniente causado." - -#: classes/class-wc-cart.php:846 -#, php-format -msgid "Sorry, "%s" cannot be purchased." -msgstr "Desculpe-nos, "%s" não pode ser comprado." - -#: classes/class-wc-cart.php:853 -#, php-format -msgid "You cannot add "%s" to the cart because the product is out of stock." -msgstr "Você não pode adicionar "%s" ao carrinho porque o produto está sem stock." - -#: classes/class-wc-cart.php:858 -#, php-format -msgid "You cannot add that amount of "%s" to the cart because there is not enough stock (%s remaining)." -msgstr "Você não pode adicionar esta quantidade de "%s" porque a quantidade em stock não é suficiente (restante %s)." - -#: classes/class-wc-countries.php:64 -msgid "Bonaire, Saint Eustatius and Saba" -msgstr "Bonaire, Saint Eustatius e Saba" - -#: classes/class-wc-countries.php:67 -msgid "Bouvet Island" -msgstr "Ilha Bouvet" - -#: classes/class-wc-countries.php:94 -msgid "CuraÇao" -msgstr "CuraÇao" - -#: classes/class-wc-countries.php:132 -msgid "Heard Island and McDonald Islands" -msgstr "Ilha Heard e Ilhas McDonald" - -#: classes/class-wc-countries.php:141 -msgid "Republic of Ireland" -msgstr "República da Irlanda" - -#: classes/class-wc-countries.php:222 -msgid "Saint Martin (Dutch part)" -msgstr "Saint Martin (parte Holandesa)" - -#: classes/class-wc-countries.php:240 -msgid "South Sudan" -msgstr "Sudão do Sul" - -#: i18n/states/BR.php:19 -msgid "Distrito Federal" -msgstr "Distrito Federal" - -#: i18n/states/BR.php:23 -msgid "Mato Grosso" -msgstr "Mato Grosso" - -#: i18n/states/BR.php:24 -msgid "Mato Grosso do Sul" -msgstr "Mato Grosso do Sul" - -#: i18n/states/BR.php:25 -msgid "Minas Gerais" -msgstr "Minas Gerais" - -#: i18n/states/BR.php:31 -msgid "Rio de Janeiro" -msgstr "Rio de Janeiro" - -#: i18n/states/BR.php:32 -msgid "Rio Grande do Norte" -msgstr "Rio Grande do Norte" - -#: i18n/states/BR.php:33 -msgid "Rio Grande do Sul" -msgstr "Rio Grande do Sul" - -#: i18n/states/BR.php:36 -msgid "Santa Catarina" -msgstr "Santa Catarina" - -#: i18n/states/BR.php:37 -msgid "São Paulo" -msgstr "São Paulo" - -#: i18n/states/HZ.php:13 -#: i18n/states/NZ.php:14 -msgid "Auckland" -msgstr "Auckland" - -#: i18n/states/HZ.php:14 -#: i18n/states/NZ.php:16 -msgid "Bay of Plenty" -msgstr "Bay of Plenty" - -#: i18n/states/HZ.php:15 -#: i18n/states/NZ.php:25 -msgid "Canterbury" -msgstr "Canterbury" - -#: i18n/states/HZ.php:16 -#: i18n/states/NZ.php:18 -msgid "Hawke’s Bay" -msgstr "Hawke’s Bay" - -#: i18n/states/HZ.php:17 -#: i18n/states/NZ.php:19 -msgid "Manawatu-Wanganui" -msgstr "Manawatu-Wanganui" - -#: i18n/states/HZ.php:18 -#: i18n/states/NZ.php:22 -msgid "Marlborough" -msgstr "Marlborough" - -#: i18n/states/HZ.php:19 -#: i18n/states/NZ.php:21 -msgid "Nelson" -msgstr "Nelson" - -#: i18n/states/HZ.php:20 -#: i18n/states/NZ.php:13 -msgid "Northland" -msgstr "Northland" - -#: i18n/states/HZ.php:21 -#: i18n/states/NZ.php:26 -msgid "Otago" -msgstr "Otago" - -#: i18n/states/HZ.php:22 -#: i18n/states/NZ.php:27 -msgid "Southland" -msgstr "Southland" - -#: i18n/states/HZ.php:23 -#: i18n/states/NZ.php:17 -msgid "Taranaki" -msgstr "Taranaki" - -#: i18n/states/HZ.php:24 -#: i18n/states/NZ.php:23 -msgid "Tasman" -msgstr "Tasman" - -#: i18n/states/HZ.php:25 -#: i18n/states/NZ.php:15 -msgid "Waikato" -msgstr "Waikato" - -#: i18n/states/HZ.php:26 -#: i18n/states/NZ.php:20 -msgid "Wellington" -msgstr "Wellington" - -#: i18n/states/HZ.php:27 -#: i18n/states/NZ.php:24 -msgid "West Coast" -msgstr "Costa Oeste dos Estados Unidos" - -#: i18n/states/US.php:64 -msgid "Armed Forces (AA)" -msgstr "Forças Armadas (AA)" - -#: i18n/states/US.php:65 -msgid "Armed Forces (AE)" -msgstr "Forças Armadas (AE)" - -#: i18n/states/US.php:66 -msgid "Armed Forces (AP)" -msgstr "Forças Armadas (AP)" - -#: classes/class-wc-coupon.php:469 -msgid "Sorry, this coupon is not applicable to your cart contents." -msgstr "Desculpe, este cupão não é aplicável ao conteúdo do seu carrinho." - -#: classes/class-wc-customer.php:635 -#: classes/class-wc-customer.php:647 -#, php-format -msgid "File %d" -msgstr "Arquivo %d" - -#: classes/class-wc-order.php:1016 -#: templates/cart/totals.php:105 -#: templates/checkout/review-order.php:104 -#, php-format -msgid "(Includes %s)" -msgstr "(Inclui %s)" - -#: classes/emails/class-wc-email-customer-completed-order.php:24 -msgid "Completed order" -msgstr "Pedido completo" - -#: classes/emails/class-wc-email-customer-completed-order.php:25 -msgid "Order complete emails are sent to the customer when the order is marked complete and usual indicates that the order has been shipped." -msgstr "E-mails de pedido completo são enviados para o cliente quando o pedido é marcado como completo, normalmente indica que o pedido foi enviado." - -#: classes/emails/class-wc-email-customer-completed-order.php:27 -msgid "Your order is complete" -msgstr "O seu pedido está completo" - -#: classes/emails/class-wc-email-customer-completed-order.php:28 -msgid "Your {blogname} order from {order_date} is complete" -msgstr "O seu pedido {order_date} na loja {blogname} está completo" - -#: classes/emails/class-wc-email-customer-completed-order.php:37 -msgid "Your order is complete - download your files" -msgstr "O seu pedido está completo - faça download dos seus arquivos" - -#: classes/emails/class-wc-email-customer-completed-order.php:38 -msgid "Your {blogname} order from {order_date} is complete - download your files" -msgstr "O seu pedido no site {blogname} em {order_date} está completo - faça download dos seus arquivos." - -#: classes/abstracts/abstract-wc-email.php:435 -#: classes/emails/class-wc-email-customer-completed-order.php:137 -#: classes/emails/class-wc-email-customer-invoice.php:143 -#: classes/emails/class-wc-email-new-order.php:117 -msgid "Enable this email notification" -msgstr "Habilitar este e-mail de notificação" - -#: classes/emails/class-wc-email-customer-completed-order.php:141 -#: classes/emails/class-wc-email-new-order.php:128 -msgid "Subject" -msgstr "Assunto" - -#: classes/abstracts/abstract-wc-email.php:441 -#: classes/abstracts/abstract-wc-email.php:448 -#: classes/emails/class-wc-email-customer-completed-order.php:143 -#: classes/emails/class-wc-email-customer-completed-order.php:150 -#: classes/emails/class-wc-email-customer-completed-order.php:157 -#: classes/emails/class-wc-email-customer-completed-order.php:164 -#: classes/emails/class-wc-email-customer-invoice.php:149 -#: classes/emails/class-wc-email-customer-invoice.php:156 -#: classes/emails/class-wc-email-customer-invoice.php:163 -#: classes/emails/class-wc-email-customer-invoice.php:170 -#, php-format -msgid "Defaults to %s" -msgstr "Padrões para %s" - -#: classes/emails/class-wc-email-customer-completed-order.php:148 -#: classes/emails/class-wc-email-new-order.php:135 -msgid "Email Heading" -msgstr "Cabeçalho do E-mail" - -#: classes/emails/class-wc-email-customer-completed-order.php:155 -msgid "Subject (downloadable)" -msgstr "Assunto (download)" - -#: classes/emails/class-wc-email-customer-completed-order.php:162 -msgid "Email Heading (downloadable)" -msgstr "Cabeçalho do E-mail (Produto para download)" - -#: classes/abstracts/abstract-wc-email.php:453 -#: classes/emails/class-wc-email-customer-completed-order.php:169 -#: classes/emails/class-wc-email-customer-invoice.php:175 -#: classes/emails/class-wc-email-new-order.php:142 -msgid "Email type" -msgstr "Tipo do e-mail" - -#: classes/abstracts/abstract-wc-email.php:455 -#: classes/emails/class-wc-email-customer-completed-order.php:171 -#: classes/emails/class-wc-email-customer-invoice.php:177 -#: classes/emails/class-wc-email-new-order.php:144 -msgid "Choose which format of email to send." -msgstr "Escolha o formato de e-mail para enviar." - -#: classes/abstracts/abstract-wc-email.php:459 -#: classes/emails/class-wc-email-customer-completed-order.php:175 -#: classes/emails/class-wc-email-customer-invoice.php:181 -#: classes/emails/class-wc-email-new-order.php:148 -msgid "Plain text" -msgstr "Texto simples" - -#: classes/abstracts/abstract-wc-email.php:460 -#: classes/emails/class-wc-email-customer-completed-order.php:176 -#: classes/emails/class-wc-email-customer-invoice.php:182 -#: classes/emails/class-wc-email-new-order.php:149 -msgid "HTML" -msgstr "HTML" - -#: classes/abstracts/abstract-wc-email.php:461 -#: classes/emails/class-wc-email-customer-completed-order.php:177 -#: classes/emails/class-wc-email-customer-invoice.php:183 -#: classes/emails/class-wc-email-new-order.php:150 -msgid "Multipart" -msgstr "Multipart (MIME)" - -#: classes/emails/class-wc-email-customer-invoice.php:27 -msgid "Customer invoice" -msgstr "Fatura" - -#: classes/emails/class-wc-email-customer-invoice.php:28 -msgid "Customer invoice emails can be sent to the user containing order info and payment links." -msgstr "E-mails de fatura do Cliente pode ser enviado para o utilizador contendo informações e links de pagamento." - -#: classes/emails/class-wc-email-customer-invoice.php:33 -msgid "Invoice for order {order_number} from {order_date}" -msgstr "Fatura para o pedido #{order_number} em {order_date}" - -#: classes/emails/class-wc-email-customer-invoice.php:34 -msgid "Invoice for order {order_number}" -msgstr "Fatura do pedido {order_number}" - -#: classes/emails/class-wc-email-customer-invoice.php:36 -msgid "Your {blogname} order from {order_date}" -msgstr "O seu pedido em {order_date} na loja {blogname}" - -#: classes/emails/class-wc-email-customer-invoice.php:37 -msgid "Order {order_number} details" -msgstr "Detalhes do pedido {order_number}" - -#: classes/abstracts/abstract-wc-email.php:439 -#: classes/emails/class-wc-email-customer-invoice.php:147 -msgid "Email subject" -msgstr "Assunto do e-mail" - -#: classes/abstracts/abstract-wc-email.php:446 -#: classes/emails/class-wc-email-customer-invoice.php:154 -msgid "Email heading" -msgstr "Cabeçalho do e-mail" - -#: classes/emails/class-wc-email-customer-invoice.php:161 -msgid "Email subject (paid)" -msgstr "Assunto do e-mail (pago)" - -#: classes/emails/class-wc-email-customer-invoice.php:168 -msgid "Email heading (paid)" -msgstr "Título do e-mail (pago)" - -#: classes/emails/class-wc-email-customer-new-account.php:31 -msgid "New account" -msgstr "Nova conta" - -#: classes/emails/class-wc-email-customer-new-account.php:32 -msgid "Customer new account emails are sent when a customer signs up via the checkout or My Account page." -msgstr "E-mails de novas contas de clientes são enviados quando um cliente se regista na finalização de compra ou na página Minha Conta." - -#: classes/emails/class-wc-email-customer-new-account.php:37 -msgid "Your account on {blogname}" -msgstr "A sua conta em {blogname}" - -#: classes/emails/class-wc-email-customer-new-account.php:38 -msgid "Welcome to {blogname}" -msgstr "Bem-vindo ao site {blogname}" - -#: classes/emails/class-wc-email-customer-note.php:30 -msgid "Customer note emails are sent when you add a note to an order." -msgstr "E-mails de nota são enviados aos clientes quando você adicionar uma nota ao pedido." - -#: classes/emails/class-wc-email-customer-note.php:35 -msgid "Note added to your {blogname} order from {order_date}" -msgstr "Nota adicionada ao seu pedido {order_date} na loja {blogname}" - -#: classes/emails/class-wc-email-customer-processing-order.php:24 -msgid "Processing order" -msgstr "Processando pedido" - -#: classes/emails/class-wc-email-customer-processing-order.php:25 -msgid "This is an order notification sent to the customer after payment containing order details." -msgstr "Esta é uma notificação de pedido enviada ao cliente depois dos dados de pagamento do pedido." - -#: classes/emails/class-wc-email-customer-processing-order.php:27 -msgid "Thank you for your order" -msgstr "Obrigado pelo seu pedido" - -#: classes/emails/class-wc-email-customer-processing-order.php:28 -msgid "Your {blogname} order receipt from {order_date}" -msgstr "O seu recibo do pedido em {order_date} na loja {blogname}" - -#: classes/emails/class-wc-email-customer-reset-password.php:36 -msgid "Reset password" -msgstr "Alterar senha" - -#: classes/emails/class-wc-email-customer-reset-password.php:37 -msgid "Customer reset password emails are sent when a customer resets their password." -msgstr "E-mails de alteração de senha são enviados quando um cliente solicita alteração de senha." - -#: classes/emails/class-wc-email-customer-reset-password.php:42 -msgid "Password Reset for {blogname}" -msgstr "Senha alterada para {blogname}" - -#: classes/emails/class-wc-email-customer-reset-password.php:43 -msgid "Password Reset Instructions" -msgstr "Instruções para alteração de senha" - -#: classes/emails/class-wc-email-new-order.php:24 -msgid "New order" -msgstr "Novo pedido" - -#: classes/emails/class-wc-email-new-order.php:27 -msgid "New customer order" -msgstr "Novo pedido de cliente" - -#: classes/emails/class-wc-email-new-order.php:28 -msgid "[{blogname}] New customer order ({order_number}) - {order_date}" -msgstr "[{blogname}] Novo pedido de cliente ({order_number}) - {order_date}" - -#: classes/emails/class-wc-email-new-order.php:121 -msgid "Recipient(s)" -msgstr "Destinatário(s)" - -#: classes/emails/class-wc-email-new-order.php:123 -#, php-format -msgid "Enter recipients (comma separated) for this email. Defaults to %s." -msgstr "Indique os destinatários para este e-mail (separados por vírgula). Padrão para %s." - -#: classes/emails/class-wc-email-new-order.php:130 -#, php-format -msgid "This controls the email subject line. Leave blank to use the default subject: %s." -msgstr "Isto controla a linha de assunto do e-mail. Deixe em branco para utilizar o assunto padrão: %s." - -#: classes/emails/class-wc-email-new-order.php:137 -#, php-format -msgid "This controls the main heading contained within the email notification. Leave blank to use the default heading: %s." -msgstr "Isto controla o cabeçalho do conteúdo dentro do e-mail de notificação. Deixe em branco para utilizar o cabeçalho padrão: %s." - -#: classes/abstracts/abstract-wc-email.php:497 -#: classes/abstracts/abstract-wc-email.php:518 -msgid "Could not write to template file." -msgstr "Impossível escrever no arquivo de template." - -#: classes/abstracts/abstract-wc-email.php:545 -msgid "Template file copied to theme." -msgstr "Arquivo de modelo copiado para o tema." - -#: classes/abstracts/abstract-wc-email.php:554 -msgid "Template file deleted from theme." -msgstr "Arquivo de modelo excluído do tema." - -#: classes/abstracts/abstract-wc-email.php:574 -msgid "HTML template" -msgstr "Modelo em HTML" - -#: classes/abstracts/abstract-wc-email.php:575 -msgid "Plain text template" -msgstr "Modelo em texto simples" - -#: classes/abstracts/abstract-wc-email.php:594 -msgid "Delete template file" -msgstr "Excluir arquivo de modelo" - -#: classes/abstracts/abstract-wc-email.php:597 -#, php-format -msgid "This template has been overridden by your theme and can be found in: %s." -msgstr "Este modelo foi sobrescrito pelo seu tema e pode ser encontrado em: %s." - -#: classes/abstracts/abstract-wc-email.php:612 -msgid "Copy file to theme" -msgstr "Copiar o arquivo para o tema" - -#: classes/abstracts/abstract-wc-email.php:615 -#, php-format -msgid "To override and edit this email template copy %s to your theme folder: %s." -msgstr "Para sobrescrever e editar este modelo de email, copie %s para a pasta do seu tema: %s." - -#: classes/abstracts/abstract-wc-email.php:626 -msgid "File was not found." -msgstr "O arquivo não foi encontrado." - -#: classes/abstracts/abstract-wc-email.php:651 -msgid "View template" -msgstr "Ver modelo" - -#: classes/abstracts/abstract-wc-email.php:652 -msgid "Hide template" -msgstr "Esconder modelo" - -#: classes/abstracts/abstract-wc-email.php:663 -msgid "Are you sure you want to delete this template file?" -msgstr "Tem certeza de que deseja excluir este arquivo de modelo?" - -#: classes/gateways/cod/class-wc-gateway-cod.php:106 -msgid "Enable for shipping methods" -msgstr "Ativar para os métodos de entrega" - -#: classes/gateways/cod/class-wc-gateway-cod.php:111 -msgid "If COD is only available for certain methods, set it up here. Leave blank to enable for all methods." -msgstr "Se COD só está disponível para determinados métodos, configure aqui. Caso contrário, deixe em branco para ativar para todos os métodos." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:155 -msgid "Invoice Prefix" -msgstr "Prefixo da fatura" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:648 -#, php-format -msgid "Validation error: PayPal amounts do not match (gross %s)." -msgstr "Erro de validação: As quantidades no PayPal não conferem (total %s)" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:88 -msgid "Add event tracking code for add to cart actions" -msgstr "Adicione códigos de evento para ações de adicionar ao carrinho" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:290 -msgid "Add to Cart" -msgstr "Adicionar ao carrinho" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:328 -msgid "Share your cart settings" -msgstr "Compartilhar as suas configurações de carrinho" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:342 -msgid "Button" -msgstr "Botão" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:343 -msgid "Customize Button" -msgstr "Personalizar botão" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:106 -msgid "Free Shipping Requires..." -msgstr "Envio Grátis Necessita..." - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:111 -msgid "A valid free shipping coupon" -msgstr "Um cupão de envio grátis válido" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:112 -msgid "A minimum order amount (defined below)" -msgstr "Quantidade mínima para pedido (definido abaixo)" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:113 -msgid "A minimum order amount OR a coupon" -msgstr "Valor mínimo de compra OU um cupão" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:114 -msgid "A minimum order amount AND a coupon" -msgstr "Valor mínimo de compra E um cupão" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:124 -msgid "Users will need to spend this amount to get free shipping (if enabled above)." -msgstr "Os utilizadores terão que gastar este montante para obter envio grátis (caso esteja habilitado acima)." - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:137 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:91 -msgid "What zip/post codes would you like to offer delivery to? Separate codes with a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -msgstr "Para quais Códigos Postais você gostaria de oferecer o envio? Separe os códigos com vírgulas. Aceita asteriscos, por exemplo P* irá corresponder a um código postal PE30." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:93 -msgid "Your password has been reset." -msgstr "A sua senha foi alterada." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:93 -msgid "Log in" -msgstr "Log in" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:114 -msgid "Enter a username or e-mail address." -msgstr "Insira um nome de utilizador ou endereço de e-mail." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:121 -msgid "There is no user registered with that email address." -msgstr "Não há nenhum utilizador registado com este endereço de e-mail." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:136 -msgid "Invalid username or e-mail." -msgstr "Nome de utilizador ou e-mail inválido" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:150 -msgid "Password reset is not allowed for this user" -msgstr "Não é permitido alterar a senha deste utilizador" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:178 -msgid "Check your e-mail for the confirmation link." -msgstr "Verifique o seu e-mail para obter o link de confirmação." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:198 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:203 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:210 -msgid "Invalid key" -msgstr "Chave inválida" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:58 -#, php-format -msgid "Order %s made on %s" -msgstr "Pedido %s feito em %s" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:59 -#, php-format -msgid "Order status: %s" -msgstr "Estado do Pedido: %s" - -#: templates/cart/shipping-methods.php:32 -msgid "Free" -msgstr "Grátis" - -#: templates/cart/totals.php:121 -#, php-format -msgid " (taxes estimated for %s)" -msgstr " (estimativa de taxas para %s)" - -#: templates/cart/totals.php:135 -msgid "No shipping methods were found; please recalculate your shipping and enter your state/county and zip/postcode to ensure there are no other available methods for your location." -msgstr "Nenhum método de envio encontrado. Por favor, recalcule o seu envio indicando o seu estado/país e o Código Postal para verificar se há algum método de envio disponível para a sua região." - -#: templates/checkout/form-billing.php:51 -msgid "Create an account by entering the information below. If you are a returning customer please login at the top of the page." -msgstr "Crie uma conta preenchendo as informações abaixo. Se você já é cliente e comprou aqui, faça o login no topo da página." - -#: templates/checkout/form-login.php:22 -msgid "If you have shopped with us before, please enter your details in the boxes below. If you are a new customer please proceed to the Billing & Shipping section." -msgstr "Se você já comprou aqui antes, indique os seus dados nos campos abaixo. Se você é um cliente novo, por favor, siga para a seção Faturação & Entrega." - -#: templates/checkout/review-order.php:199 -msgid "I have read and accept the" -msgstr "Eu li e aceito os" - -#: templates/emails/admin-new-order.php:13 -#: templates/emails/plain/admin-new-order.php:13 -#, php-format -msgid "You have received an order from %s. Their order is as follows:" -msgstr "Você recebeu um pedido de %s. O pedido é o seguinte:" - -#: templates/emails/admin-new-order.php:17 -#, php-format -msgid "Order: %s" -msgstr "Pedido: %s" - -#: templates/emails/customer-completed-order.php:14 -#: templates/emails/plain/customer-completed-order.php:13 -#, php-format -msgid "Hi there. Your recent order on %s has been completed. Your order details are shown below for your reference:" -msgstr "Olá. O seu pedido recente em %s foi completado. Os detalhes do pedido serão exibidos abaixo para sua referência:" - -#: templates/emails/customer-invoice.php:16 -#: templates/emails/plain/customer-invoice.php:14 -#, php-format -msgid "An order has been created for you on %s. To pay for this order please use the following link: %s" -msgstr "Um pedido foi criado para você em %s. Para pagar este pedido, por favor, use o seguinte link: %s" - -#: templates/emails/customer-invoice.php:16 -msgid "pay" -msgstr "pagar" - -#: templates/emails/customer-processing-order.php:14 -#: templates/emails/plain/customer-processing-order.php:13 -msgid "Your order has been received and is now being processed. Your order details are shown below for your reference:" -msgstr "O seu pedido foi recebido e está sendo processado. Os detalhes do pedido serão exibidos abaixo para sua referência:" - -#: templates/emails/customer-reset-password.php:14 -#: templates/emails/plain/customer-reset-password.php:13 -msgid "Someone requested that the password be reset for the following account:" -msgstr "Alguém solicitou que a senha fosse alterada para a seguinte conta:" - -#: templates/emails/customer-reset-password.php:15 -#: templates/emails/plain/customer-reset-password.php:15 -#, php-format -msgid "Username: %s" -msgstr "Utilizador: %s" - -#: templates/emails/customer-reset-password.php:16 -#: templates/emails/plain/customer-reset-password.php:16 -msgid "If this was a mistake, just ignore this email and nothing will happen." -msgstr "Se isto foi um engano, apenas ignore este e-mail e nada acontecerá." - -#: templates/emails/customer-reset-password.php:17 -#: templates/emails/plain/customer-reset-password.php:17 -msgid "To reset your password, visit the following address:" -msgstr "Para alterar a sua senha, visite o seguinte endereço:" - -#: templates/emails/customer-reset-password.php:20 -msgid "Click here to reset your password" -msgstr "Clique aqui para alterar a sua senha" - -#: templates/emails/email-order-items.php:48 -#, php-format -msgid "Download %d:" -msgstr "Download %d:" - -#: templates/emails/plain/admin-new-order.php:19 -#: templates/emails/plain/customer-completed-order.php:19 -#: templates/emails/plain/customer-invoice.php:20 -#: templates/emails/plain/customer-note.php:27 -#: templates/emails/plain/customer-processing-order.php:19 -#, php-format -msgid "Order number: %s" -msgstr "Número do pedido: %s" - -#: templates/emails/plain/admin-new-order.php:20 -#: templates/emails/plain/customer-completed-order.php:20 -#: templates/emails/plain/customer-invoice.php:21 -#: templates/emails/plain/customer-note.php:28 -#: templates/emails/plain/customer-processing-order.php:20 -#, php-format -msgid "Order date: %s" -msgstr "Data do pedido: %s" - -#: templates/emails/plain/customer-completed-order.php:38 -#: templates/emails/plain/customer-note.php:46 -#: templates/emails/plain/customer-processing-order.php:38 -msgid "Your details" -msgstr "Os seus detalhes" - -#: templates/emails/plain/email-order-items.php:28 -#, php-format -msgid "Quantity: %s" -msgstr "Quantidade: %s" - -#: templates/emails/plain/email-order-items.php:31 -#, php-format -msgid "Cost: %s" -msgstr "Custo: %s" - -#: templates/myaccount/form-login.php:29 -#: templates/myaccount/form-lost-password.php:24 -#: templates/shop/form-login.php:20 -msgid "Username or email" -msgstr "Nome de utilizador ou e-mail" - -#: templates/myaccount/form-lost-password.php:22 -msgid "Lost your password? Please enter your username or email address. You will receive a link to create a new password via email." -msgstr "Perdeu a sua senha? Digite o seu nome de utilizador ou endereço de e-mail. Você receberá um link por e-mail para criar uma nova senha." - -#: templates/myaccount/form-lost-password.php:28 -msgid "Enter a new password below." -msgstr "Digite uma nova senha abaixo." - -#: templates/myaccount/form-lost-password.php:45 -msgid "Reset Password" -msgstr "Alterar Senha" - -#: templates/myaccount/my-downloads.php:27 -#, php-format -msgid "%s download remaining" -msgid_plural "%s downloads remaining" -msgstr[0] "%s download restante" -msgstr[1] "%s downloads restantes" - -#: templates/single-product/meta.php:24 -msgid "Category:" -msgid_plural "Categories:" -msgstr[0] "Categoria:" -msgstr[1] "Categorias" - -#: templates/single-product/meta.php:29 -msgid "Tag:" -msgid_plural "Tags:" -msgstr[0] "Tag" -msgstr[1] "Tags" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:31 -msgid "Shows active layered nav filters so users can see and deactivate them." -msgstr "Exibir filtros de navegação ativos em camadas para que os utilizadores possam vê-los e desativá-los." - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:33 -msgid "WooCommerce Layered Nav Filters" -msgstr "WooCommerce Filtros de Navegação em Camadas" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:62 -msgid "Active filters" -msgstr "Filtros ativados" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:93 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Remove filter" -msgstr "Remover filtro" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -msgid "Min" -msgstr "Mínimo" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Max" -msgstr "Máximo" - -#: classes/widgets/class-wc-widget-product-categories.php:204 -msgid "Only show children for the current category" -msgstr "Mostrar apenas a sub-categorias para a categoria atual" - -#: woocommerce-ajax.php:1175 -msgid "Value" -msgstr "Valor" - -#: woocommerce-core-functions.php:1384 -msgctxt "slug" -msgid "uncategorized" -msgstr "sem categoria" - -#: woocommerce-core-functions.php:2520 -msgid "Unpaid order cancelled - time limit reached." -msgstr "Pedido cancelado por falta de pagamento - tempo limite ultrapassado." - -#: woocommerce-functions.php:412 -msgid "Please choose the quantity of items you wish to add to your cart…" -msgstr "Por favor, selecione a quantidade de itens que você deseja adicionar ao seu carrinho…" - -#: woocommerce-functions.php:419 -msgid "Please choose a product to add to your cart…" -msgstr "Por favor, selecione um produto para adicionar ao seu carrinho…" - -#: woocommerce-functions.php:488 -#, php-format -msgid "Added "%s" to your cart." -msgstr "Adicionado "%s" ao seu carrinho" - -#: woocommerce-functions.php:488 -msgid "" and "" -msgstr "" e "" - -#: woocommerce-functions.php:491 -#, php-format -msgid ""%s" was successfully added to your cart." -msgstr ""%s" foi adicionado com sucesso ao seu carrinho." - -#: woocommerce-functions.php:991 -msgid "Product no longer exists." -msgstr "Este produto não existe mais." - -#: admin/post-types/product.php:151 -msgid "Edit this item" -msgstr "Editar este item" - -#: admin/post-types/product.php:251 -msgid "Toggle featured" -msgstr "Alternar destaque" - -#: admin/post-types/product.php:253 -msgid "yes" -msgstr "sim" - -#: admin/post-types/product.php:255 -msgid "no" -msgstr "não" - -#: admin/post-types/writepanels/variation-admin-html.php:72 -msgid "Regular Price:" -msgstr "Preço normal:" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "Exclude sale items" -msgstr "Excluir itens de venda" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "Check this box if the coupon should not apply to items on sale. Per-item coupons will only work if the item is not on sale. Per-cart coupons will only work if there are no sale items in the cart." -msgstr "Marque esta caixa se o cupão não se aplica aos itens à venda. Cupões por item só irão funcionar se o item não está à venda. Cupões por carrinho só irão funcionar se não houver itens de venda no carrinho." - -#: admin/settings/settings-init.php:19 -#, php-format -msgid "Use informal localisation for %s" -msgstr "Usar tradução informal para %s" - -#: admin/settings/settings-init.php:449 -msgid "Default sorting (custom ordering + name)" -msgstr "Ordenação padrão (ordenação personalizada + nome)" - -#: admin/settings/settings-init.php:450 -msgid "Popularity (sales)" -msgstr "Popularidade (vendas)" - -#: admin/settings/settings-init.php:451 -msgid "Average Rating" -msgstr "Classificação média" - -#: admin/settings/settings-init.php:453 -msgid "Sort by price (asc)" -msgstr "Ordenar por preço (ASC)" - -#: admin/settings/settings-init.php:454 -msgid "Sort by price (desc)" -msgstr "Ordenar por preço (DESC)" - -#: admin/settings/settings-init.php:578 -msgid "Enable ratings on reviews" -msgstr "Permitir avaliações sobre as análises" - -#: admin/settings/settings-init.php:760 -msgid "Notification Recipient" -msgstr "Notificação do destinatário" - -#: admin/woocommerce-admin-attributes.php:78 -msgid "Please, provide an attribute name, slug and type." -msgstr "Por favor, forneça os atributos nome, slug e tipo." - -#: admin/woocommerce-admin-attributes.php:80 -#, php-format -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "O slug \\\"%s\\\" é muito longo (máximo 28 caracteres). Encurte por favor." - -#: admin/woocommerce-admin-attributes.php:82 -#, php-format -msgid "Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "O slug \\\"%s\\\" não é permitido porque é termo reservado. Por favor, escolha outro." - -#: admin/woocommerce-admin-attributes.php:87 -#: admin/woocommerce-admin-attributes.php:92 -#, php-format -msgid "Slug “%s” is already in use. Change it, please." -msgstr "O slug \\\"%s\\\" já está em uso. Por favor, escolha outro." - -#: admin/woocommerce-admin-status.php:609 -msgid "WC Transients" -msgstr "WC Transientes" - -#: admin/woocommerce-admin-status.php:610 -msgid "Clear transients" -msgstr "Limpar transientes" - -#: admin/woocommerce-admin-status.php:614 -msgid "Expired Transients" -msgstr "Transientes expirados" - -#: admin/woocommerce-admin-status.php:615 -msgid "Clear expired transients" -msgstr "Limpar transientes expirados" - -#: admin/woocommerce-admin-status.php:616 -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "Esta ferramenta irá limpar todos os transientes expirados no WordPress." - -#: admin/woocommerce-admin-status.php:620 -msgid "Recount terms" -msgstr "Recontar termos" - -#: admin/woocommerce-admin-status.php:625 -msgid "Reset capabilities" -msgstr "Restabelecer capacidades" - -#: admin/woocommerce-admin-status.php:682 -#, php-format -msgid "%d Transients Rows Cleared" -msgstr "%d linhas transientes limpas" - -#: admin/woocommerce-admin-status.php:376 -msgid "Page does not exist" -msgstr "Página não existe" - -#: classes/class-wc-coupon.php:454 -msgid "Coupon code already applied!" -msgstr "Código de cupão já aplicado!" - -#: classes/class-wc-coupon.php:421 -msgid "Coupon code applied successfully." -msgstr "Código de cupão aplicado com sucesso." - -#: classes/class-wc-countries.php:58 -msgid "Belau" -msgstr "Belau" - -#: classes/class-wc-countries.php:846 -msgid "Town / District" -msgstr "Cidade / Distrito" - -#: classes/class-wc-countries.php:734 -#: classes/class-wc-countries.php:735 -#: templates/cart/shipping-calculator.php:80 -msgid "Postcode / Zip" -msgstr "Código Postal" - -#: classes/class-wc-countries.php:715 -#: classes/class-wc-countries.php:716 -msgid "Town / City" -msgstr "Cidade" - -#: classes/class-wc-countries.php:725 -#: classes/class-wc-countries.php:726 -msgid "State / County" -msgstr "Estado / País" - -#: classes/class-wc-countries.php:699 -msgctxt "placeholder" -msgid "Street address" -msgstr "Endereço" - -#: classes/class-wc-countries.php:707 -msgctxt "placeholder" -msgid "Apartment, suite, unit etc. (optional)" -msgstr "Apartamento, suite, casa, etc (opcional)" - -#: classes/class-wc-coupon.php:472 -msgid "Sorry, this coupon is not valid for sale items." -msgstr "Desculpe, este cupão não é válido para itens de venda." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:174 -msgid "Optional" -msgstr "Opcional" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:122 -msgid "Enter a cost (excluding tax) per order, e.g. 5.00. Leave blank to disable." -msgstr "Digite um custo (excluindo impostos) por venda, por exemplo, 5.00. Deixe em branco para desativar." - -#: i18n/states/CN.php:13 -msgid "Yunnan / 云南" -msgstr "Yunnan / 云南" - -#: i18n/states/CN.php:14 -msgid "Beijing / 北京" -msgstr "Beijing / 北京" - -#: i18n/states/CN.php:15 -msgid "Tianjin / 天津" -msgstr "Tianjin / 天津" - -#: i18n/states/CN.php:16 -msgid "Hebei / 河北" -msgstr "Hebei / 河北" - -#: i18n/states/CN.php:17 -msgid "Shanxi / 山西" -msgstr "Shanxi / 山西" - -#: i18n/states/CN.php:18 -msgid "Inner Mongolia / 內蒙古" -msgstr "Inner Mongolia / 內蒙古" - -#: i18n/states/CN.php:19 -msgid "Liaoning / 辽宁" -msgstr "Liaoning / 辽宁" - -#: i18n/states/CN.php:20 -msgid "Jilin / 吉林" -msgstr "Jilin / 吉林" - -#: i18n/states/CN.php:21 -msgid "Heilongjiang / 黑龙江" -msgstr "Heilongjiang / 黑龙江" - -#: i18n/states/CN.php:22 -msgid "Shanghai / 上海" -msgstr "Shanghai / 上海" - -#: i18n/states/CN.php:23 -msgid "Jiangsu / 江苏" -msgstr "Jiangsu / 江苏" - -#: i18n/states/CN.php:24 -msgid "Zhejiang / 浙江" -msgstr "Zhejiang / 浙江" - -#: i18n/states/CN.php:25 -msgid "Anhui / 安徽" -msgstr "Anhui / 安徽" - -#: i18n/states/CN.php:26 -msgid "Fujian / 福建" -msgstr "Fujian / 福建" - -#: i18n/states/CN.php:27 -msgid "Jiangxi / 江西" -msgstr "Jiangxi / 江西" - -#: i18n/states/CN.php:28 -msgid "Shandong / 山东" -msgstr "Shandong / 山东" - -#: i18n/states/CN.php:29 -msgid "Henan / 河南" -msgstr "Henan / 河南" - -#: i18n/states/CN.php:30 -msgid "Hubei / 湖北" -msgstr "Hubei / 湖北" - -#: i18n/states/CN.php:31 -msgid "Hunan / 湖南" -msgstr "Hunan / 湖南" - -#: i18n/states/CN.php:32 -msgid "Guangdong / 广东" -msgstr "Guangdong / 广东" - -#: i18n/states/CN.php:33 -msgid "Guangxi Zhuang / 广西壮族" -msgstr "Guangxi Zhuang / 广西壮族" - -#: i18n/states/CN.php:34 -msgid "Hainan / 海南" -msgstr "Hainan / 海南" - -#: i18n/states/CN.php:35 -msgid "Chongqing / 重庆" -msgstr "Chongqing / 重庆" - -#: i18n/states/CN.php:36 -msgid "Sichuan / 四川" -msgstr "Sichuan / 四川" - -#: i18n/states/CN.php:37 -msgid "Guizhou / 贵州" -msgstr "Guizhou / 贵州" - -#: i18n/states/CN.php:38 -msgid "Shaanxi / 陕西" -msgstr "Shaanxi / 陕西" - -#: i18n/states/CN.php:39 -msgid "Gansu / 甘肃" -msgstr "Gansu / 甘肃" - -#: i18n/states/CN.php:40 -msgid "Qinghai / 青海" -msgstr "Qinghai / 青海" - -#: i18n/states/CN.php:41 -msgid "Ningxia Hui / 宁夏" -msgstr "Ningxia Hui / 宁夏" - -#: i18n/states/CN.php:42 -msgid "Macau / 澳门" -msgstr "Macau / 澳门" - -#: i18n/states/CN.php:43 -msgid "Tibet / 西藏" -msgstr "Tibet / 西藏" - -#: i18n/states/CN.php:44 -msgid "Xinjiang / 新疆" -msgstr "Xinjiang / 新疆" - -#: i18n/states/IN.php:13 -msgid "Andra Pradesh" -msgstr "Andra Pradesh" - -#: i18n/states/IN.php:14 -msgid "Arunachal Pradesh" -msgstr "Arunachal Pradesh" - -#: i18n/states/IN.php:15 -msgid "Assam" -msgstr "Assam" - -#: i18n/states/IN.php:16 -msgid "Bihar" -msgstr "Bihar" - -#: i18n/states/IN.php:17 -msgid "Chhattisgarh" -msgstr "Chhattisgarh" - -#: i18n/states/IN.php:18 -msgid "Goa" -msgstr "Goa" - -#: i18n/states/IN.php:19 -msgid "Gujarat" -msgstr "Gujarat" - -#: i18n/states/IN.php:20 -msgid "Haryana" -msgstr "Haryana" - -#: i18n/states/IN.php:21 -msgid "Himachal Pradesh" -msgstr "Himachal Pradesh" - -#: i18n/states/IN.php:22 -msgid "Jammu and Kashmir" -msgstr "Jammu and Kashmir" - -#: i18n/states/IN.php:23 -msgid "Jharkhand" -msgstr "Jharkhand" - -#: i18n/states/IN.php:24 -msgid "Karnataka" -msgstr "Karnataka" - -#: i18n/states/IN.php:25 -msgid "Kerala" -msgstr "Kerala" - -#: i18n/states/IN.php:26 -msgid "Madhya Pradesh" -msgstr "Madhya Pradesh" - -#: i18n/states/IN.php:27 -msgid "Maharashtra" -msgstr "Maharashtra" - -#: i18n/states/IN.php:28 -msgid "Manipur" -msgstr "Manipur" - -#: i18n/states/IN.php:29 -msgid "Meghalaya" -msgstr "Meghalaya" - -#: i18n/states/IN.php:30 -msgid "Mizoram" -msgstr "Mizoram" - -#: i18n/states/IN.php:31 -msgid "Nagaland" -msgstr "Nagaland" - -#: i18n/states/IN.php:32 -msgid "Orissa" -msgstr "Orissa" - -#: i18n/states/IN.php:33 -msgid "Punjab" -msgstr "Punjab" - -#: i18n/states/IN.php:34 -msgid "Rajasthan" -msgstr "Rajasthan" - -#: i18n/states/IN.php:35 -msgid "Sikkim" -msgstr "Sikkim" - -#: i18n/states/IN.php:36 -msgid "Tamil Nadu" -msgstr "Tamil Nadu" - -#: i18n/states/IN.php:37 -msgid "Tripura" -msgstr "Tripura" - -#: i18n/states/IN.php:38 -msgid "Uttaranchal" -msgstr "Uttaranchal" - -#: i18n/states/IN.php:39 -msgid "Uttar Pradesh" -msgstr "Uttar Pradesh" - -#: i18n/states/IN.php:40 -msgid "West Bengal" -msgstr "West Bengal" - -#: i18n/states/IN.php:41 -msgid "Andaman and Nicobar Islands" -msgstr "Andaman and Nicobar Islands" - -#: i18n/states/IN.php:42 -msgid "Chandigarh" -msgstr "Chandigarh" - -#: i18n/states/IN.php:43 -msgid "Dadar and Nagar Haveli" -msgstr "Dadar and Nagar Haveli" - -#: i18n/states/IN.php:44 -msgid "Daman and Diu" -msgstr "Daman and Diu" - -#: i18n/states/IN.php:45 -msgid "Delhi" -msgstr "Delhi" - -#: i18n/states/IN.php:46 -msgid "Lakshadeep" -msgstr "Lakshadeep" - -#: i18n/states/IN.php:47 -msgid "Pondicherry (Puducherry)" -msgstr "Pondicherry (Puducherry)" - -#: i18n/states/MY.php:13 -msgid "Johor" -msgstr "Johor" - -#: i18n/states/MY.php:14 -msgid "Kedah" -msgstr "Kedah" - -#: i18n/states/MY.php:15 -msgid "Kelantan" -msgstr "Kelantan" - -#: i18n/states/MY.php:16 -msgid "Melaka" -msgstr "Melaka" - -#: i18n/states/MY.php:17 -msgid "Negeri Sembilan" -msgstr "Negeri Sembilan" - -#: i18n/states/MY.php:18 -msgid "Pahang" -msgstr "Pahang" - -#: i18n/states/MY.php:19 -msgid "Perak" -msgstr "Perak" - -#: i18n/states/MY.php:20 -msgid "Perlis" -msgstr "Perlis" - -#: i18n/states/MY.php:21 -msgid "Pulau Pinang" -msgstr "Pulau Pinang" - -#: i18n/states/MY.php:22 -msgid "Sabah" -msgstr "Sabah" - -#: i18n/states/MY.php:23 -msgid "Sarawak" -msgstr "Sarawak" - -#: i18n/states/MY.php:24 -msgid "Selangor" -msgstr "Selangor" - -#: i18n/states/MY.php:25 -msgid "Terengganu" -msgstr "Terengganu" - -#: i18n/states/MY.php:26 -msgid "W.P. Kuala Lumpur" -msgstr "W.P. Kuala Lumpur" - -#: i18n/states/MY.php:27 -msgid "W.P. Labuan" -msgstr "W.P. Labuan" - -#: i18n/states/MY.php:28 -msgid "W.P. Putrajaya" -msgstr "W.P. Putrajaya" - -#: i18n/states/TH.php:13 -msgid "Amnat Charoen (อำนาจเจริญ)" -msgstr "Amnat Charoen (อำนาจเจริญ)" - -#: i18n/states/TH.php:14 -msgid "Ang Thong (อ่างทอง)" -msgstr "Ang Thong (อ่างทอง)" - -#: i18n/states/TH.php:15 -msgid "Ayutthaya (พระนครศรีอยุธยา)" -msgstr "Ayutthaya (พระนครศรีอยุธยา)" - -#: i18n/states/TH.php:16 -msgid "Bangkok (กรุงเทพมหานคร)" -msgstr "Bangkok (กรุงเทพมหานคร)" - -#: i18n/states/TH.php:17 -msgid "Bueng Kan (บึงกาฬ)" -msgstr "Bueng Kan (บึงกาฬ)" - -#: i18n/states/TH.php:18 -msgid "Buri Ram (บุรีรัมย์)" -msgstr "Buri Ram (บุรีรัมย์)" - -#: i18n/states/TH.php:19 -msgid "Chachoengsao (ฉะเชิงเทรา)" -msgstr "Chachoengsao (ฉะเชิงเทรา)" - -#: i18n/states/TH.php:20 -msgid "Chai Nat (ชัยนาท)" -msgstr "Chai Nat (ชัยนาท)" - -#: i18n/states/TH.php:21 -msgid "Chaiyaphum (ชัยภูมิ)" -msgstr "Chaiyaphum (ชัยภูมิ)" - -#: i18n/states/TH.php:22 -msgid "Chanthaburi (จันทบุรี)" -msgstr "Chanthaburi (จันทบุรี)" - -#: i18n/states/TH.php:23 -msgid "Chiang Mai (เชียงใหม่)" -msgstr "Chiang Mai (เชียงใหม่)" - -#: i18n/states/TH.php:24 -msgid "Chiang Rai (เชียงราย)" -msgstr "Chiang Rai (เชียงราย)" - -#: i18n/states/TH.php:25 -msgid "Chonburi (ชลบุรี)" -msgstr "Chonburi (ชลบุรี)" - -#: i18n/states/TH.php:26 -msgid "Chumphon (ชุมพร)" -msgstr "Chumphon (ชุมพร)" - -#: i18n/states/TH.php:27 -msgid "Kalasin (กาฬสินธุ์)" -msgstr "Kalasin (กาฬสินธุ์)" - -#: i18n/states/TH.php:28 -msgid "Kamphaeng Phet (กำแพงเพชร)" -msgstr "Kamphaeng Phet (กำแพงเพชร)" - -#: i18n/states/TH.php:29 -msgid "Kanchanaburi (กาญจนบุรี)" -msgstr "Kanchanaburi (กาญจนบุรี)" - -#: i18n/states/TH.php:30 -msgid "Khon Kaen (ขอนแก่น)" -msgstr "Khon Kaen (ขอนแก่น)" - -#: i18n/states/TH.php:31 -msgid "Krabi (กระบี่)" -msgstr "Krabi (กระบี่)" - -#: i18n/states/TH.php:32 -msgid "Lampang (ลำปาง)" -msgstr "Lampang (ลำปาง)" - -#: i18n/states/TH.php:33 -msgid "Lamphun (ลำพูน)" -msgstr "Lamphun (ลำพูน)" - -#: i18n/states/TH.php:34 -msgid "Loei (เลย)" -msgstr "Loei (เลย)" - -#: i18n/states/TH.php:35 -msgid "Lopburi (ลพบุรี)" -msgstr "Lopburi (ลพบุรี)" - -#: i18n/states/TH.php:36 -msgid "Mae Hong Son (แม่ฮ่องสอน)" -msgstr "Mae Hong Son (แม่ฮ่องสอน)" - -#: i18n/states/TH.php:37 -msgid "Maha Sarakham (มหาสารคาม)" -msgstr "Maha Sarakham (มหาสารคาม)" - -#: i18n/states/TH.php:38 -msgid "Mukdahan (มุกดาหาร)" -msgstr "Mukdahan (มุกดาหาร)" - -#: i18n/states/TH.php:39 -msgid "Nakhon Nayok (นครนายก)" -msgstr "Nakhon Nayok (นครนายก)" - -#: i18n/states/TH.php:40 -msgid "Nakhon Pathom (นครปฐม)" -msgstr "Nakhon Pathom (นครปฐม)" - -#: i18n/states/TH.php:41 -msgid "Nakhon Phanom (นครพนม)" -msgstr "Nakhon Phanom (นครพนม)" - -#: i18n/states/TH.php:42 -msgid "Nakhon Ratchasima (นครราชสีมา)" -msgstr "Nakhon Ratchasima (นครราชสีมา)" - -#: i18n/states/TH.php:43 -msgid "Nakhon Sawan (นครสวรรค์)" -msgstr "Nakhon Sawan (นครสวรรค์)" - -#: i18n/states/TH.php:44 -msgid "Nakhon Si Thammarat (นครศรีธรรมราช)" -msgstr "Nakhon Si Thammarat (นครศรีธรรมราช)" - -#: i18n/states/TH.php:45 -msgid "Nan (น่าน)" -msgstr "Nan (น่าน)" - -#: i18n/states/TH.php:46 -msgid "Narathiwat (นราธิวาส)" -msgstr "Narathiwat (นราธิวาส)" - -#: i18n/states/TH.php:47 -msgid "Nong Bua Lam Phu (หนองบัวลำภู)" -msgstr "Nong Bua Lam Phu (หนองบัวลำภู)" - -#: i18n/states/TH.php:48 -msgid "Nong Khai (หนองคาย)" -msgstr "Nong Khai (หนองคาย)" - -#: i18n/states/TH.php:49 -msgid "Nonthaburi (นนทบุรี)" -msgstr "Nonthaburi (นนทบุรี)" - -#: i18n/states/TH.php:50 -msgid "Pathum Thani (ปทุมธานี)" -msgstr "Pathum Thani (ปทุมธานี)" - -#: i18n/states/TH.php:51 -msgid "Pattani (ปัตตานี)" -msgstr "Pattani (ปัตตานี)" - -#: i18n/states/TH.php:52 -msgid "Phang Nga (พังงา)" -msgstr "Phang Nga (พังงา)" - -#: i18n/states/TH.php:53 -msgid "Phatthalung (พัทลุง)" -msgstr "Phatthalung (พัทลุง)" - -#: i18n/states/TH.php:54 -msgid "Phayao (พะเยา)" -msgstr "Phayao (พะเยา)" - -#: i18n/states/TH.php:55 -msgid "Phetchabun (เพชรบูรณ์)" -msgstr "Phetchabun (เพชรบูรณ์)" - -#: i18n/states/TH.php:56 -msgid "Phetchaburi (เพชรบุรี)" -msgstr "Phetchaburi (เพชรบุรี)" - -#: i18n/states/TH.php:57 -msgid "Phichit (พิจิตร)" -msgstr "Phichit (พิจิตร)" - -#: i18n/states/TH.php:58 -msgid "Phitsanulok (พิษณุโลก)" -msgstr "Phitsanulok (พิษณุโลก)" - -#: i18n/states/TH.php:59 -msgid "Phrae (แพร่)" -msgstr "Phrae (แพร่)" - -#: i18n/states/TH.php:60 -msgid "Phuket (ภูเก็ต)" -msgstr "Phuket (ภูเก็ต)" - -#: i18n/states/TH.php:61 -msgid "Prachin Buri (ปราจีนบุรี)" -msgstr "Prachin Buri (ปราจีนบุรี)" - -#: i18n/states/TH.php:62 -msgid "Prachuap Khiri Khan (ประจวบคีรีขันธ์)" -msgstr "Prachuap Khiri Khan (ประจวบคีรีขันธ์)" - -#: i18n/states/TH.php:63 -msgid "Ranong (ระนอง)" -msgstr "Ranong (ระนอง)" - -#: i18n/states/TH.php:64 -msgid "Ratchaburi (ราชบุรี)" -msgstr "Ratchaburi (ราชบุรี)" - -#: i18n/states/TH.php:65 -msgid "Rayong (ระยอง)" -msgstr "Rayong (ระยอง)" - -#: i18n/states/TH.php:66 -msgid "Roi Et (ร้อยเอ็ด)" -msgstr "Roi Et (ร้อยเอ็ด)" - -#: i18n/states/TH.php:67 -msgid "Sa Kaeo (สระแก้ว)" -msgstr "Sa Kaeo (สระแก้ว)" - -#: i18n/states/TH.php:68 -msgid "Sakon Nakhon (สกลนคร)" -msgstr "Sakon Nakhon (สกลนคร)" - -#: i18n/states/TH.php:69 -msgid "Samut Prakan (สมุทรปราการ)" -msgstr "Samut Prakan (สมุทรปราการ)" - -#: i18n/states/TH.php:70 -msgid "Samut Sakhon (สมุทรสาคร)" -msgstr "Samut Sakhon (สมุทรสาคร)" - -#: i18n/states/TH.php:71 -msgid "Samut Songkhram (สมุทรสงคราม)" -msgstr "Samut Songkhram (สมุทรสงคราม)" - -#: i18n/states/TH.php:72 -msgid "Saraburi (สระบุรี)" -msgstr "Saraburi (สระบุรี)" - -#: i18n/states/TH.php:73 -msgid "Satun (สตูล)" -msgstr "Satun (สตูล)" - -#: i18n/states/TH.php:74 -msgid "Sing Buri (สิงห์บุรี)" -msgstr "Sing Buri (สิงห์บุรี)" - -#: i18n/states/TH.php:75 -msgid "Sisaket (ศรีสะเกษ)" -msgstr "Sisaket (ศรีสะเกษ)" - -#: i18n/states/TH.php:76 -msgid "Songkhla (สงขลา)" -msgstr "Songkhla (สงขลา)" - -#: i18n/states/TH.php:77 -msgid "Sukhothai (สุโขทัย)" -msgstr "Sukhothai (สุโขทัย)" - -#: i18n/states/TH.php:78 -msgid "Suphan Buri (สุพรรณบุรี)" -msgstr "Suphan Buri (สุพรรณบุรี)" - -#: i18n/states/TH.php:79 -msgid "Surat Thani (สุราษฎร์ธานี)" -msgstr "Surat Thani (สุราษฎร์ธานี)" - -#: i18n/states/TH.php:80 -msgid "Surin (สุรินทร์)" -msgstr "Surin (สุรินทร์)" - -#: i18n/states/TH.php:81 -msgid "Tak (ตาก)" -msgstr "Tak (ตาก)" - -#: i18n/states/TH.php:82 -msgid "Trang (ตรัง)" -msgstr "Trang (ตรัง)" - -#: i18n/states/TH.php:83 -msgid "Trat (ตราด)" -msgstr "Trat (ตราด)" - -#: i18n/states/TH.php:84 -msgid "Ubon Ratchathani (อุบลราชธานี)" -msgstr "Ubon Ratchathani (อุบลราชธานี)" - -#: i18n/states/TH.php:85 -msgid "Udon Thani (อุดรธานี)" -msgstr "Udon Thani (อุดรธานี)" - -#: i18n/states/TH.php:86 -msgid "Uthai Thani (อุทัยธานี)" -msgstr "Uthai Thani (อุทัยธานี)" - -#: i18n/states/TH.php:87 -msgid "Uttaradit (อุตรดิตถ์)" -msgstr "Uttaradit (อุตรดิตถ์)" - -#: i18n/states/TH.php:88 -msgid "Yala (ยะลา)" -msgstr "Yala (ยะลา)" - -#: i18n/states/TH.php:89 -msgid "Yasothon (ยโสธร)" -msgstr "Yasothon (ยโสธร)" - -#: i18n/states/ZA.php:13 -msgid "Eastern Cape" -msgstr "Eastern Cape" - -#: i18n/states/ZA.php:14 -msgid "Free State" -msgstr "Free State" - -#: i18n/states/ZA.php:15 -msgid "Gauteng" -msgstr "Gauteng" - -#: i18n/states/ZA.php:16 -msgid "KwaZulu-Natal" -msgstr "KwaZulu-Natal" - -#: i18n/states/ZA.php:17 -msgid "Limpopo" -msgstr "Limpopo" - -#: i18n/states/ZA.php:18 -msgid "Mpumalanga" -msgstr "Mpumalanga" - -#: i18n/states/ZA.php:19 -msgid "Northern Cape" -msgstr "Northern Cape" - -#: i18n/states/ZA.php:20 -msgid "North West" -msgstr "North West" - -#: i18n/states/ZA.php:21 -msgid "Western Cape" -msgstr "Western Cape" - -#: templates/cart/cart.php:100 -#: templates/single-product/add-to-cart/quantity.php:12 -msgctxt "Product quantity input tooltip" -msgid "Qty" -msgstr "Qtd" - -#: templates/cart/shipping-calculator.php:45 -#: templates/cart/shipping-calculator.php:51 -#: templates/cart/shipping-calculator.php:63 -msgid "State / county" -msgstr "Estado / país" - -#: templates/checkout/form-login.php:14 -msgid "Returning customer?" -msgstr "Já tem conta no nosso site?" - -#: templates/loop/result-count.php:28 -msgid "Showing the single result" -msgstr "Apenas um artigo" - -#: templates/loop/result-count.php:30 -#, php-format -msgid "Showing all %d results" -msgstr "Todos os artigos (%d resultados)" - -#: templates/loop/result-count.php:32 -#, php-format -msgctxt "%1$d = first, %2$d = last, %3$d = total" -msgid "Showing %1$d–%2$d of %3$d results" -msgstr "A mostrar %1$d-%2$d de (%3$d resultados)" - -#: templates/loop/orderby.php:22 -msgid "Sort by popularity" -msgstr "Ordenar por popularidade" - -#: templates/loop/orderby.php:23 -msgid "Sort by average rating" -msgstr "Ordenar por média de classificação" - -#: templates/loop/orderby.php:24 -msgid "Sort by newness" -msgstr "Ordenar por mais novos" - -#: templates/loop/orderby.php:25 -msgid "Sort by price: low to high" -msgstr "Ordenar por preço: menor para maior" - -#: templates/loop/orderby.php:26 -msgid "Sort by price: high to low" -msgstr "Ordenar por preço: maior para menor" - -#: templates/myaccount/my-address.php:17 -msgid "My Addresses" -msgstr "Meus endereços" - -#: templates/myaccount/my-address.php:64 -msgid "You have not set up this type of address yet." -msgstr "Você ainda não configurou este endereço." - -#: templates/order/form-tracking.php:23 -msgid "Track" -msgstr "Faixa" - -#: templates/single-product/review.php:26 -#, php-format -msgid "Rated %d out of 5" -msgstr "Avaliado em %d de 5" - -#: templates/single-product-reviews.php:63 -msgid "Add Your Review" -msgstr "Dê a sua opinião" - -#: woocommerce-core-functions.php:275 -#, php-format -msgid "%s – %s%s" -msgstr "%s – %s%s" - -#: woocommerce-functions.php:1651 -msgid "Password changed successfully." -msgstr "Senha alterada com sucesso." - -#: woocommerce-functions.php:1727 -msgid "Address changed successfully." -msgstr "Endereço alterado com sucesso." - -#: woocommerce.php:1210 -msgid "Sorry, no products matched your selection. Please choose a different combination." -msgstr "Desculpe, nenhum produto encontrado com os termos selecionados. Por favor escolha uma combinação diferente." - -#: admin/post-types/writepanels/variation-admin-html.php:63 -msgid "Enter a quantity to enable stock management at variation level, or leave blank to use the parent product's options." -msgstr "Introduza uma quantidade para permitir a gestão de ações em nível de variação, ou deixe em branco para usar as opções do produto pai." - -#: admin/post-types/writepanels/variation-admin-html.php:73 -msgid "Variation price (required)" -msgstr "Preço da variação (obrigatório)" - -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Enable stock management at product level" -msgstr "Ativar gestão de stock a nível de produto" - -#: admin/settings/settings-init.php:972 -msgid "Shipping tax class based on cart items" -msgstr "Classe fiscal de transporte baseado em itens do carrinho" - -#: admin/settings/settings-tax-rates.php:30 -#, php-format -msgid "Define tax rates for countries and states below. See here for available alpha-2 country codes." -msgstr "Defina taxas de imposto para os países e estados abaixo. Consulte aqui para os códigos de país de alfa-2 disponível." - -#: admin/woocommerce-admin-content.php:61 -msgid "Coupon usage reports." -msgstr "Relatórios de uso do cupão." - -#: admin/woocommerce-admin-reports.php:2144 -msgid "Marked out of stock" -msgstr "Marcado fora de stock" - -#: admin/woocommerce-admin-status.php:62 -msgid "Please include this information when requesting support:" -msgstr "Por favor, inclua esta informação ao solicitar suporte:" - -#: admin/woocommerce-admin-status.php:63 -msgid "Download System Report File" -msgstr "Baixar arquivo de relatório do sistema" - -#: admin/woocommerce-admin-status.php:71 -msgid "Environment" -msgstr "Ambiente" - -#: admin/woocommerce-admin-status.php:85 -msgid "WC Version" -msgstr "Versão do WC" - -#: admin/woocommerce-admin-status.php:89 -msgid "WC Database Version" -msgstr "Versão do banco de dados do WC" - -#: admin/woocommerce-admin-status.php:93 -msgid "WP Version" -msgstr "Versão do WP" - -#: admin/woocommerce-admin-status.php:97 -msgid "Web Server Info" -msgstr "Informações do Servidor Web" - -#: admin/woocommerce-admin-status.php:105 -msgid "MySQL Version" -msgstr "Versão do MySQL" - -#: admin/woocommerce-admin-status.php:129 -msgid "PHP Post Max Size" -msgstr "Tamanho máximo para upload no PHP" - -#: admin/woocommerce-admin-status.php:133 -msgid "PHP Time Limit" -msgstr "Limite de tempo PHP" - -#: admin/woocommerce-admin-status.php:186 -msgid "WP Remote Post" -msgstr "WP Mensagem Remota" - -#: admin/woocommerce-admin-status.php:226 -msgid "Plugins" -msgstr "Plugins" - -#: admin/woocommerce-admin-status.php:232 -msgid "Installed Plugins" -msgstr "Plugins Instalados" - -#: admin/woocommerce-admin-status.php:303 -msgid "WC Pages" -msgstr "Páginas do WC" - -#: admin/woocommerce-admin-status.php:310 -msgid "Shop Base" -msgstr "Loja base" - -#: admin/woocommerce-admin-status.php:326 -msgid "Thanks" -msgstr "Confirmação" - -#: admin/woocommerce-admin-status.php:400 -msgid "WC Taxonomies" -msgstr "Taxonomias do WC" - -#: admin/woocommerce-admin-status.php:416 -msgid "Product Types" -msgstr "Tipos de produto" - -#: classes/gateways/cod/class-wc-gateway-cod.php:97 -#: classes/gateways/cod/class-wc-gateway-cod.php:103 -msgid "Pay with cash upon delivery." -msgstr "Pague em dinheiro na entrega." - -#: i18n/states/ID.php:13 -msgid "Daerah Istimewa Aceh" -msgstr "Daerah Istimewa Aceh" - -#: i18n/states/ID.php:14 -msgid "Sumatera Utara" -msgstr "Sumatera Utara" - -#: i18n/states/ID.php:15 -msgid "Sumatera Barat" -msgstr "Sumatera Barat" - -#: i18n/states/ID.php:16 -msgid "Riau" -msgstr "Riau" - -#: i18n/states/ID.php:17 -msgid "Kepulauan Riau" -msgstr "Kepulauan Riau" - -#: i18n/states/ID.php:18 -msgid "Jambi" -msgstr "Jambi" - -#: i18n/states/ID.php:19 -msgid "Sumatera Selatan" -msgstr "Sumatera Selatan" - -#: i18n/states/ID.php:20 -msgid "Bangka Belitung" -msgstr "Bangka Belitung" - -#: i18n/states/ID.php:21 -msgid "Bengkulu" -msgstr "Bengkulu" - -#: i18n/states/ID.php:22 -msgid "Lampung" -msgstr "Lampung" - -#: i18n/states/ID.php:23 -msgid "DKI Jakarta" -msgstr "DKI Jakarta" - -#: i18n/states/ID.php:24 -msgid "Jawa Barat" -msgstr "Jawa Barat" - -#: i18n/states/ID.php:25 -msgid "Banten" -msgstr "Banten" - -#: i18n/states/ID.php:26 -msgid "Jawa Tengah" -msgstr "Jawa Tengah" - -#: i18n/states/ID.php:27 -msgid "Jawa Timur" -msgstr "Jawa Timur" - -#: i18n/states/ID.php:28 -msgid "Daerah Istimewa Yogyakarta" -msgstr "Daerah Istimewa Yogyakarta" - -#: i18n/states/ID.php:29 -msgid "Bali" -msgstr "Bali" - -#: i18n/states/ID.php:30 -msgid "Nusa Tenggara Barat" -msgstr "Nusa Tenggara Barat" - -#: i18n/states/ID.php:31 -msgid "Nusa Tenggara Timur" -msgstr "Nusa Tenggara Timur" - -#: i18n/states/ID.php:32 -msgid "Kalimantan Barat" -msgstr "Kalimantan Barat" - -#: i18n/states/ID.php:33 -msgid "Kalimantan Tengah" -msgstr "Kalimantan Tengah" - -#: i18n/states/ID.php:34 -msgid "Kalimantan Timur" -msgstr "Kalimantan Timur" - -#: i18n/states/ID.php:35 -msgid "Kalimantan Selatan" -msgstr "Kalimantan Selatan" - -#: i18n/states/ID.php:36 -msgid "Kalimantan Utara" -msgstr "Kalimantan Utara" - -#: i18n/states/ID.php:37 -msgid "Sulawesi Utara" -msgstr "Sulawesi Utara" - -#: i18n/states/ID.php:38 -msgid "Sulawesi Tengah" -msgstr "Sulawesi Tengah" - -#: i18n/states/ID.php:39 -msgid "Sulawesi Tenggara" -msgstr "Sulawesi Tenggara" - -#: i18n/states/ID.php:40 -msgid "Sulawesi Barat" -msgstr "Sulawesi Barat" - -#: i18n/states/ID.php:41 -msgid "Sulawesi Selatan" -msgstr "Sulawesi Selatan" - -#: i18n/states/ID.php:42 -msgid "Gorontalo" -msgstr "Gorontalo" - -#: i18n/states/ID.php:43 -msgid "Maluku" -msgstr "Maluku" - -#: i18n/states/ID.php:44 -msgid "Maluku Utara" -msgstr "Maluku Utara" - -#: i18n/states/ID.php:45 -msgid "Papua" -msgstr "Papua" - -#: i18n/states/ID.php:46 -msgid "Papua Barat" -msgstr "Papua Barat" - -#: woocommerce-core-functions.php:713 -msgid "Australian Dollars" -msgstr "Dólares Australianos" - -#: woocommerce-core-functions.php:714 -msgid "Brazilian Real" -msgstr "Real Brasileiro" - -#: woocommerce-core-functions.php:715 -msgid "Canadian Dollars" -msgstr "Dólares Canadianos" - -#: woocommerce-core-functions.php:716 -msgid "Chinese Yuan" -msgstr "Yuan Chinês" - -#: woocommerce-core-functions.php:717 -msgid "Czech Koruna" -msgstr "Koruna Checa" - -#: woocommerce-core-functions.php:719 -msgid "Euros" -msgstr "Euros" - -#: woocommerce-core-functions.php:720 -msgid "Hong Kong Dollar" -msgstr "Dólar Hong Kong " - -#: woocommerce-core-functions.php:722 -msgid "Indonesia Rupiah" -msgstr "Rupiah Indonesia" - -#: woocommerce-core-functions.php:725 -msgid "Japanese Yen" -msgstr "Yen Japonês" - -#: woocommerce-core-functions.php:727 -msgid "Malaysian Ringgits" -msgstr "Malaysian Ringgits" - -#: woocommerce-core-functions.php:728 -msgid "Mexican Peso" -msgstr "Peso Mexicano" - -#: woocommerce-core-functions.php:730 -msgid "New Zealand Dollar" -msgstr "Dólar Neozelandês " - -#: woocommerce-core-functions.php:733 -msgid "Pounds Sterling" -msgstr "Pounds Sterling" - -#: woocommerce-core-functions.php:734 -msgid "Romanian Leu" -msgstr "Romanian Leu" - -#: woocommerce-core-functions.php:736 -msgid "Singapore Dollar" -msgstr "Singapore Dollar" - -#: woocommerce-core-functions.php:737 -msgid "South African rand" -msgstr "South African rand" - -#: woocommerce-core-functions.php:742 -msgid "Turkish Lira" -msgstr "Turkish Lira" - -#: woocommerce-core-functions.php:743 -msgid "US Dollars" -msgstr "Dólares Americanos" - -#: woocommerce-functions.php:1034 -msgid "No file defined" -msgstr "Nenhum arquivo definido" - -#: admin/includes/notice-theme-support.php:6 -msgid "Your theme does not declare WooCommerce support – if you encounter layout issues please read our integration guide or choose a WooCommerce theme :)" -msgstr " O seu tema não declarar suporte WooCommerce - sese deparar com problemas de layout, por favor leia o nosso guia de integração ou escolha umtema WooCommerce :)" - -#: admin/includes/notice-theme-support.php:7 -msgid "Theme Integration Guide" -msgstr "Guia de Integração do Tema" - -#: admin/includes/notice-theme-support.php:7 -msgid "Hide this notice" -msgstr "Ocultar este aviso" - -#: admin/includes/welcome.php:48 -msgid "Welcome to WooCommerce" -msgstr "Bem-vindo ao WooCommerce" - -#: admin/includes/welcome.php:135 -#, php-format -msgid "Welcome to WooCommerce %s" -msgstr "Bem-vindo ao WooCommerce %s" - -#: admin/includes/welcome.php:140 -msgid "Thanks, all done!" -msgstr "Obrigado, tudo feito!" - -#: admin/includes/welcome.php:142 -msgid "Thank you for updating to the latest version!" -msgstr "Obrigado por atualizar para a versão mais recente!" - -#: admin/includes/welcome.php:144 -msgid "Thanks for installing!" -msgstr "Obrigado por instalar!" - -#: admin/includes/welcome.php:146 -#, php-format -msgid "%s WooCommerce %s is more powerful, stable, and secure than ever before. We hope you enjoy it." -msgstr "%s WooCommerce %s esta mais poderoso, estável e seguro do que nunca. Nós esperamos que você goste." - -#: admin/includes/welcome.php:150 -#, php-format -msgid "Version %s" -msgstr "Versão %s" - -#: admin/includes/welcome.php:161 -msgid "What's New" -msgstr "O que há de novo" - -#: admin/includes/welcome.php:163 -msgid "Credits" -msgstr "Créditos" - -#: admin/includes/welcome.php:186 -msgid "Security in mind" -msgstr "A segurança em mente" - -#: admin/includes/welcome.php:190 -msgid "Sucuri Safe Plugin" -msgstr "Plugin Sucuri Safe" - -#: admin/includes/welcome.php:191 -msgid "You will be happy to learn that WooCommerce has been audited and certified by the Sucuri Security team. Whilst there is not much to be seen visually to understand the amount of work that went into this audit, rest assured that your website is powered by one of the most powerful and stable eCommerce plugins available." -msgstr "Você vai ficar feliz em saber que WooCommerce foi auditada e certificadapela equipe de Segurança Sucuri. Embora não haja muito para ser visto visualmentepara entender a quantidade de trabalho que foi para esta auditoria, pode ter a certeza de queo seu site é alimentado por um dos plugins eCommerce mais potente e estável disponíveis." - -#: admin/includes/welcome.php:194 -msgid "A Smoother Admin Experience" -msgstr "Uma experiência suave de Administrar" - -#: admin/includes/welcome.php:200 -msgid "New Product Panel" -msgstr "Novo Painel do Produto" - -#: admin/includes/welcome.php:201 -msgid "We have revised the product data panel making it cleaner, more streamlined, and more logical. Adding products is a breeze!" -msgstr "Revimos o painel de dados do produto tornando-o mais limpo, mais ágil,e mais lógico. Adiçionar produtos é rápido!" - -#: admin/includes/welcome.php:206 -msgid "Nicer Order Screens" -msgstr "Telas de ordem mais agradáveis" - -#: admin/includes/welcome.php:207 -msgid "Order pages have had a cleanup, with a more easily scannable interface. We particularly like the new status icons!" -msgstr "Páginas de ordem tiveram uma limpeza, com uma interface mais facilmente compreensível. Nós gostamos particularmente do novo estado dos ícones!" - -#: admin/includes/welcome.php:212 -msgid "Multi-Download Support" -msgstr "Suporte Multi-Download" - -#: admin/includes/welcome.php:213 -msgid "Products can have multiple downloadable files - purchasers will get access to all the files added." -msgstr "Os produtos podem ter vários arquivos para download - os compradores terão acessoa todos os ficheiros adicionados." - -#: admin/includes/welcome.php:218 -msgid "Less Taxing Taxes" -msgstr "Menos Impostos sobre Impostos" - -#: admin/includes/welcome.php:224 -msgid "New Tax Input Panel" -msgstr "Novo Painel de Entrada de Imposto" - -#: admin/includes/welcome.php:225 -msgid "The tax input pages have been streamlined to make inputting taxes simpler - adding multiple taxes for a single jurisdiction is now much easier using the priority system. There is also CSV import/export support." -msgstr "As páginas de entrada fiscais foram simplificados para tornar os impostos de entrada mais simples -adicionando vários impostos para uma única jurisdição é agora muito mais fácil usando osistema de prioridade. Também há suporte de importação/exportação CSV." - -#: admin/includes/welcome.php:229 -msgid "Improved Tax Options" -msgstr "Opções de Melhoria Fiscal" - -#: admin/includes/welcome.php:230 -msgid "As requested by some users, we now support taxing the billing address instead of shipping (optional), and we allow you to choose which tax class applies to shipping." -msgstr "Conforme solicitado por alguns utilizadores, agora podemos oferecer suporte para tributar o endereço de faturação em vez de transporte (opcional), e que permitem que você escolha qual classe fiscalse aplica ao transporte." - -#: admin/includes/welcome.php:235 -msgid "Product Listing Improvements Customers Will Love" -msgstr "Melhorias na listagem do produto que os clientes vão adorar" - -#: admin/includes/welcome.php:241 -msgid "New Sorting Options" -msgstr "Novas opções de ordenação" - -#: admin/includes/welcome.php:242 -msgid "Customers can now sort products by popularity and ratings." -msgstr "Os clientes podem agora classificar produtos por popularidade e avaliações." - -#: admin/includes/welcome.php:247 -msgid "Better Pagination and Result Counts" -msgstr "Melhor paginação e contagens de resultado" - -#: admin/includes/welcome.php:248 -msgid "Numbered pagination has been added to core, and we show the number of results found above the listings." -msgstr "Paginação numerada foi adicionado ao núcleo, e que mostram o número deresultados encontrados acima nas listas." - -#: admin/includes/welcome.php:253 -msgid "Inline Star Rating Display" -msgstr "Apresentação da classificação por estrelas em linha" - -#: admin/includes/welcome.php:254 -msgid "We have added star ratings to the catalog which are pulled from reviews." -msgstr "Nós adicionamos classificação por estrelas para o catálogo que são puxados a partir de comentários." - -#: admin/includes/welcome.php:262 -msgid "Under the Hood" -msgstr "Debaixo das aparências" - -#: admin/includes/welcome.php:266 -msgid "New product classes" -msgstr "Novas classes de produtos" - -#: admin/includes/welcome.php:267 -msgid "The product classes have been rewritten and are now factory based. Much more extendable, and easier to query products using the new get_product() function." -msgstr "As classes de produto foram reescritas e estão agora com a base de fábrica. Muito maistelescópico e mais fácil de consultar produtos usando a nova função get_product() < /código >." - -#: admin/includes/welcome.php:271 -msgid "Capability overhaul" -msgstr "Recurso revisão" - -#: admin/includes/welcome.php:272 -msgid "More granular capabilities for admin/shop manager roles covering products, orders and coupons." -msgstr "Recursos mais granulares para administrador/loja funções e gerente que abrangem produtos, encomendas e cupões." - -#: admin/includes/welcome.php:276 -msgid "API Improvements" -msgstr "Melhorias API" - -#: admin/includes/welcome.php:277 -msgid "WC-API now has real endpoints, and we've optimised the gateways API significantly by only loading gateways when needed." -msgstr "WC-API agora tem parâmetros reais, e nós otimizamos as gatewaysAPI significativamente apenas carregando os gateways quando necessário." - -#: admin/includes/welcome.php:283 -msgid "Cache-friendly cart widgets" -msgstr "Widgets de carrinho de cache-amigável" - -#: admin/includes/welcome.php:284 -msgid "Cart widgets and other \"fragments\" are now pulled in via AJAX - this works wonders with static page caching." -msgstr "Carrinho widgets e outros \"Fragmentos\" são puxados agora via AJAX - isto funcionaás maravilhas com cache de página estática." - -#: admin/includes/welcome.php:288 -msgid "Session handling" -msgstr "Manipulação de sessão" - -#: admin/includes/welcome.php:289 -msgid "PHP SESSIONS have been a problem for many users in the past, so we've developed our own handler using cookies and options to make these more reliable." -msgstr "Sessões PHP têm sido um problema para muitos utilizadores no passado, então nósdesenvolvemos o nosso próprio manipulador usando cookies e opções para os tornar maisfiáveis." - -#: admin/includes/welcome.php:293 -msgid "Retina Ready" -msgstr "Retina Pronto" - -#: admin/includes/welcome.php:294 -msgid "All graphics within WC have been optimised for HiDPI displays." -msgstr "Todos os gráficos dentro de WC foram otimizados para exibição HiDPI." - -#: admin/includes/welcome.php:301 -msgid "Better stock handling" -msgstr "Melhor manipulação de stock" - -#: admin/includes/welcome.php:302 -msgid "We have added an option to hold stock for unpaid orders (defaults to 60mins). When this time limit is reached, and the order is not paid for, stock is released and the order is cancelled." -msgstr "Nós adicionamos uma opção para manter o stock para pedidos não pagos (o padrão é 60 minutos). Quando este limite de tempo é atingido, e a ordem não é paga, é lançada e o pedido é cancelado." - -#: admin/includes/welcome.php:306 -msgid "Improved Line-item storage" -msgstr "Melhor armazenamento de item de linha" - -#: admin/includes/welcome.php:307 -msgid "We have changed how order items get stored making them easier (and faster) to access for reporting. Order items are no longer serialised within an order - they are stored within their own table." -msgstr "Nós mudamos a maneira como os itens são armazenados tornando-a mais fácil (e mais rápida) para acesso a relatórios. Encomendar os itens não é mais classificação por séries dentro de uma ordem - eles são armazenados dentro da sua própria mesa." - -#: admin/includes/welcome.php:311 -msgid "Autoload" -msgstr "Carregamento Automático" - -#: admin/includes/welcome.php:312 -msgid "We have setup autoloading for classes - this has dramatically reduced memory usage in 2.0." -msgstr "Temos a instalação do carregamento automático para classes - isto reduziu drasticamente o uso da memória na versão 2.0." - -#: admin/includes/welcome.php:319 -msgid "Go to WooCommerce Settings" -msgstr "Ir para a página de Configurações do WooCommerce" - -#: admin/includes/welcome.php:337 -msgid "WooCommerce is developed and maintained by a worldwide team of passionate individuals and backed by an awesome developer community. Want to see your name? Contribute to WooCommerce." -msgstr "WooCommerce é desenvolvido e mantido por uma equipa mundial de apaixonadosindivíduos e apoiados por uma comunidade incrível de desenvolvedores. Quer ver o seunome? Contribuir para o WooCommerce." - -#: admin/includes/welcome.php:363 -#, php-format -msgid "View %s" -msgstr "Ver %s" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:125 -msgid "Could not grant access - the user may already have permission for this file or billing email is not set. Ensure the billing email is set, and the order has been saved." -msgstr "Não foi possível conceder o acesso - o utilizador já pode ter permissão para este arquivo ou email de faturação não está definido. Certifique-se de que o email de faturação é definido, e a ordem foi salva." - -#: admin/settings/settings-init.php:36 -msgid "Base Location" -msgstr "Localização base" - -#: admin/settings/settings-init.php:37 -msgid "This is the base location for your business. Tax rates will be based on this country." -msgstr "Este é o local de base para o seu negócio. Taxas de imposto serão baseadas neste país." - -#: admin/settings/settings-init.php:85 -msgid "Enable site-wide store notice text" -msgstr "Habilitar em todo a loja um aviso" - -#: admin/settings/settings-init.php:102 -msgid "Cart, Checkout and Accounts" -msgstr "Carrinho, Checkout e Contas de Utilizador" - -#: admin/settings/settings-init.php:106 -msgid "Enable the use of coupons" -msgstr "Permitir o uso de cupões" - -#: admin/settings/settings-init.php:110 -msgid "Coupons can be applied from the cart and checkout pages." -msgstr "Os cupões podem ser aplicados a partir do carrinho e páginas de checkout." - -#: admin/settings/settings-init.php:123 -msgid "Enable customer note field on checkout" -msgstr "Ativar campo de notas do cliente no checkout" - -#: admin/settings/settings-init.php:137 -msgid "Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -msgstr "Forçar SSL (HTTPS) nas páginas de checkout (é necessário um certificado SSL)." - -#: admin/settings/settings-init.php:192 -msgid "Allow customers to repurchase orders from their account page" -msgstr "Permitir que clientes recomprem novamente pedidos antigos a partir da página da sua conta" - -#: admin/settings/settings-init.php:205 -msgid "Enable WooCommerce CSS" -msgstr "Ativar o CSS do WooCommerce" - -#: admin/settings/settings-init.php:217 -msgid "Enable Lightbox" -msgstr "Ativar Lightbox" - -#: admin/settings/settings-init.php:220 -msgid "Include WooCommerce's lightbox. Product gallery images and the add review form will open in a lightbox." -msgstr "Ativar o WooCommerce Lightbox. Galeria de imagens em produtos e também adicionar avaliação serão abertos pelo Lightbox." - -#: admin/settings/settings-init.php:231 -msgid "This will enable a script allowing the country fields to be searchable." -msgstr "Isto irá permitir que um script modifique o campo de país para inserir um campo de busca." - -#: admin/settings/settings-init.php:236 -msgid "Downloadable Products" -msgstr "Produtos para download" - -#: admin/settings/settings-init.php:255 -msgid "Access Restriction" -msgstr "Restrição de Acesso" - -#: admin/settings/settings-init.php:256 -msgid "Downloads require login" -msgstr "Exigir login para fazer download" - -#: admin/settings/settings-init.php:260 -msgid "This setting does not apply to guest purchases." -msgstr "Esta definição não se aplica a compras de visitantes sem registo." - -#: admin/settings/settings-init.php:269 -msgid "Enable this option to grant access to downloads when orders are \"processing\", rather than \"completed\"." -msgstr "Ative esta opção para conceder acesso a downloads quando os pedidos estão com o estado de \"processamento\", em vez de \"concluído\"." - -#: admin/settings/settings-init.php:411 -msgid "Logout Page" -msgstr "Página Sair" - -#: admin/settings/settings-init.php:412 -msgid "Parent: \"My Account\"" -msgstr "Pai: \"Minha Conta\"" - -#: admin/settings/settings-init.php:491 -msgid "Redirect to the cart page after successful addition" -msgstr "Redirecionar para a página do carrinho ao adicionar um produto" - -#: admin/settings/settings-init.php:499 -msgid "Enable AJAX add to cart buttons on archives" -msgstr "Ativar os botões de adicionar ao carrinho com AJAX nos arquivos" - -#: admin/settings/settings-init.php:512 -msgid "Enable the SKU field for products" -msgstr "Ativar o campo REF para os produtos" - -#: admin/settings/settings-init.php:520 -msgid "Enable the weight field for products (some shipping methods may require this)" -msgstr "Ativar o campo peso para os produtos (alguns métodos de envio podem exigir este dado)" - -#: admin/settings/settings-init.php:528 -msgid "Enable the dimension fields for products (some shipping methods may require this)" -msgstr "Ativar os campos de dimensões para os produtos (alguns métodos de envio podem exigir estes dados)" - -#: admin/settings/settings-init.php:536 -msgid "Show weight and dimension values on the Additional Information tab" -msgstr "Exibir os valores de peso e dimensões na aba Informação adicional" - -#: admin/woocommerce-admin-content.php:29 -#, php-format -msgid "Thank you for using WooCommerce :) Should you need help using or extending WooCommerce please read the documentation. For further assistance you can use the community forum or if you have access, our support desk." -msgstr "Obrigado por usar WooCommerce :) Se você precisar de ajuda para usar ou prolongarWooCommerce leia a documentação. Para obter mais ajuda você pode usar o fórum da comunidade ou se você tiveracesso, o nosso suporte ." - -#: admin/woocommerce-admin-content.php:84 -msgid "Project on WordPress.org" -msgstr "Projeto em WordPress.org" - -#: admin/woocommerce-admin-content.php:85 -msgid "Project on Github" -msgstr "Projeto no Github" - -#: admin/woocommerce-admin-content.php:86 -msgid "WooCommerce Docs" -msgstr "WooCommerce Docs" - -#: admin/woocommerce-admin-content.php:87 -msgid "Official Extensions" -msgstr "Extensões Oficiais" - -#: admin/woocommerce-admin-content.php:88 -msgid "Official Themes" -msgstr "Temas Oficiais" - -#: admin/woocommerce-admin-init.php:434 -msgid "Please select some items." -msgstr "Por favor, selecione alguns itens." - -#: admin/woocommerce-admin-install.php:219 -msgctxt "page_slug" -msgid "logout" -msgstr "sair" - -#: admin/woocommerce-admin-status.php:490 -msgid "Templates" -msgstr "Templates" - -#: admin/woocommerce-admin-status.php:496 -msgid "Template Overrides" -msgstr "Template Substituição" - -#: admin/woocommerce-admin-status.php:514 -msgid "No core overrides present in theme." -msgstr "Nenhum template foi sobrescrito neste tema." - -#: classes/abstracts/abstract-wc-product.php:33 -msgid "The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class directly." -msgstr "A classe WC_Product agora é abstrata. Use get_product() < /código > para criar uma instância de um produto em vez de chamar esta classediretamente." - -#: classes/class-wc-coupon.php:442 -msgid "Coupon is not valid." -msgstr "Cupão não é válido." - -#: classes/class-wc-coupon.php:457 -#, php-format -msgid "Sorry, coupon \"%s\" has already been applied and cannot be used in conjunction with other coupons." -msgstr "Desculpe, cupão \"%s\" já foi aplicado e não pode ser usado emconjunto com outros cupões." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:157 -msgid "Please enter a prefix for your invoice numbers. If you use your PayPal account for multiple stores ensure this prefix is unique as PayPal will not allow orders with the same invoice number." -msgstr "Por favor digite um prefixo para os seus números de fatura. Se você usa a sua conta do PayPal para várias lojas assegure-se que este prefixo é único, o PayPal não vai permitir as encomendas com o mesmo número da fatura." - -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:23 -msgid "Increase your social media exposure by 10 percent! ShareYourCart helps you get more customers by motivating satisfied customers to talk with their friends about your products. For help with ShareYourCart view the documentation." -msgstr "Aumente a sua exposição nos média social, em 10 por cento! ShareYourCart ajuda a obter mais clientes, motivando clientes satisfeitos para conversar com os seus amigos sobre os seus produtos. Para obter ajuda do ShareYourCart veja a documentação." - -#: i18n/states/HU.php:13 -msgid "Bács-Kiskun" -msgstr "Bács-Kiskun" - -#: i18n/states/HU.php:14 -msgid "Békés" -msgstr "Békés" - -#: i18n/states/HU.php:15 -msgid "Baranya" -msgstr "Baranya" - -#: i18n/states/HU.php:16 -msgid "Borsod-Abaúj-Zemplén" -msgstr "Borsod-Abaúj-Zemplén" - -#: i18n/states/HU.php:17 -msgid "Budapest" -msgstr "Budapest" - -#: i18n/states/HU.php:18 -msgid "Csongrád" -msgstr "Csongrád" - -#: i18n/states/HU.php:19 -msgid "Fejér" -msgstr "Fejér" - -#: i18n/states/HU.php:20 -msgid "Győr-Moson-Sopron" -msgstr "Győr-Moson-Sopron" - -#: i18n/states/HU.php:21 -msgid "Hajdú-Bihar" -msgstr "Hajdú-Bihar" - -#: i18n/states/HU.php:22 -msgid "Heves" -msgstr "Heves" - -#: i18n/states/HU.php:23 -msgid "Jász-Nagykun-Szolnok" -msgstr "Jász-Nagykun-Szolnok" - -#: i18n/states/HU.php:24 -msgid "Komárom-Esztergom" -msgstr "Komárom-Esztergom" - -#: i18n/states/HU.php:25 -msgid "Nógrád" -msgstr "Nógrád" - -#: i18n/states/HU.php:26 -msgid "Pest" -msgstr "Pest" - -#: i18n/states/HU.php:27 -msgid "Somogy" -msgstr "Somogy" - -#: i18n/states/HU.php:28 -msgid "Szabolcs-Szatmár-Bereg" -msgstr "Szabolcs-Szatmár-Bereg" - -#: i18n/states/HU.php:29 -msgid "Tolna" -msgstr "Tolna" - -#: i18n/states/HU.php:30 -msgid "Vas" -msgstr "Vas" - -#: i18n/states/HU.php:31 -msgid "Veszprém" -msgstr "Veszprém" - -#: i18n/states/HU.php:32 -msgid "Zala" -msgstr "Zala" - -#: i18n/states/US.php:72 -msgid "US Virgin Islands" -msgstr "US Virgin Islands" - -#: templates/myaccount/my-orders.php:62 -#, php-format -msgid "%s for %s item" -msgid_plural "%s for %s items" -msgstr[0] "%s por %s item" -msgstr[1] "%s for %s items" - -#: woocommerce-ajax.php:1102 -msgid "No products had their stock reduced - they may not have stock management enabled." -msgstr "Nenhum produto teve o seu stock reduzido - eles podem não ter o gerenciamento de stock habilitado." - -#: woocommerce-ajax.php:1154 -msgid "No products had their stock increased - they may not have stock management enabled." -msgstr "Nenhum produto teve o seu stock aumentado - eles podem não ter o gerenciamento de stock habilitado." - -#: woocommerce-template.php:767 -#, php-format -msgid "Reviews (%d)" -msgstr "Avaliações (%d)" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Value of the coupon." -msgstr "Valor do cupão." - -#: admin/post-types/writepanels/writepanel-product_data.php:415 -msgid "Pipe (|) separate terms" -msgstr "Termos separados por (|)" - -#: admin/woocommerce-admin-taxonomies.php:365 -msgid "Edit Class" -msgstr "Editar Classe" - -#: classes/class-wc-countries.php:277 -msgid "Western Samoa" -msgstr "Western Samoa" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:147 -msgid "Receiver Email" -msgstr "Destinatário do email" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:149 -msgid "If this differs from the email entered above, input your main receiver email for your PayPal account. This is used to validate IPN requests." -msgstr "Se este for diferente do e-mail digitado acima, insira o seu e-mail principal receptor da sua conta PayPal. Isso é usado para validar os pedidos IPN." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:659 -#, php-format -msgid "Validation error: PayPal IPN response from a different email address (%s)." -msgstr "Erro de validação: o PayPal IPN respondeu de um endereço de e-mail diferente (%s)." - -#: templates/order/order-details.php:64 -#, php-format -msgid "Download file%s" -msgstr "Download do arquivo%s" - -#: woocommerce-core-functions.php:723 -msgid "Indian Rupee" -msgstr "Indian Rupee" - -#: admin/woocommerce-admin-status.php:270 -#: admin/woocommerce-admin-status.php:477 -msgid "is available" -msgstr "está disponível" - -#: classes/class-wc-checkout.php:79 -msgid "Confirm password" -msgstr "Confirmar senha" - -#: classes/class-wc-checkout.php:80 -msgctxt "placeholder" -msgid "Confirm password" -msgstr "Confirmar senha" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:152 -msgid "Pay securely with your credit card." -msgstr "Pague com segurança usando cartão de crédito." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:128 -msgid "Additional Rates" -msgstr "Taxas Adicionais" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:130 -msgid "Optional extra shipping options with additional costs (one per line): Option Name | Additional Cost | Per Cost Type (order, class, or item) Example: Priority Mail | 6.95 | order." -msgstr "Opções extras de transporte com custos adicionais (uma por linha): Nome da Opção | Custo Adicional | Tipo de Custo (order, classe ou item) Exemplo: Entrega Prioritária | 6.95 | order" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:133 -msgid "Option Name | Additional Cost | Per Cost Type (order, class, or item)" -msgstr "Nome da Opção | Custo Adicional | Tipo de Custo (order, classe ou item)" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:136 -msgid "Additional Costs" -msgstr "Custos Adicionais" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:138 -msgid "Additional costs can be added below - these will all be added to the per-order cost above." -msgstr "Os custos adicionais podem ser adicionadas abaixo - estes serão adicionados ao custo por ordem acima." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:141 -msgid "Costs Added..." -msgstr "Adicionado custos..." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:154 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:120 -msgid "Minimum Handling Fee" -msgstr "Taxa de Mínima de Manuseio" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:479 -msgid "Costs" -msgstr "Custos" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:492 -msgid "+ Add Cost" -msgstr "+ Adicionar Custo" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:492 -msgid "Delete selected costs" -msgstr "Deletar os custos selecionados" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:498 -msgid "Any class" -msgstr "Qualquer classe" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:90 -msgid "Cost Added..." -msgstr "Custos adicionados..." - -#: woocommerce-core-functions.php:726 -msgid "South Korean Won" -msgstr "South Korean Won" - -#: woocommerce.php:172 -msgid "Premium Support" -msgstr "Suporte Premium" - -#: admin/post-types/shop_coupon.php:149 -msgid "Show all types" -msgstr "Mostrar todos os tipos" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "Email restrictions" -msgstr "Restrições de e-mail" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "No restrictions" -msgstr "Sem restrições" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "List of emails to check against the customer's billing email when an order is placed." -msgstr "Lista de e-mails para verificar contra e-mail de cobrança do cliente quando um pedido é feito." - -#: admin/woocommerce-admin-status.php:146 -msgid "Default Timezone" -msgstr "Fuso horário padrão" - -#: admin/woocommerce-admin-status.php:150 -#, php-format -msgid "Default timezone is %s - it should be UTC" -msgstr "Fuso horário padrão é %s - deve ser UTC" - -#: admin/woocommerce-admin-status.php:152 -#, php-format -msgid "Default timezone is %s" -msgstr "Fuso horário padrão é %s" - -#: admin/woocommerce-admin-status.php:429 -msgid "Theme" -msgstr "Tema" - -#: admin/woocommerce-admin-status.php:466 -msgid "Theme Name" -msgstr "Nome do tema" - -#: admin/woocommerce-admin-status.php:472 -msgid "Theme Version" -msgstr "Versão do tema" - -#: admin/woocommerce-admin-status.php:481 -msgid "Author URL" -msgstr "URL do autor" - -#: admin/woocommerce-admin-status.php:629 -msgid "Customer Sessions" -msgstr "Sessões de cliente" - -#: admin/woocommerce-admin-status.php:630 -msgid "Clear all sessions" -msgstr "Limpar todas as sessões" - -#: admin/woocommerce-admin-status.php:631 -msgid "Warning This tool will delete all customer session data from the database, including any current live carts." -msgstr "Aviso Esta ferramenta irá apagar todos os dados de sessão do cliente do banco de dados, incluindo qualquer carrinho atual." - -#: classes/class-wc-cache-helper.php:92 -#, php-format -msgid "In order for database caching to work with WooCommerce you must add _wc_session_ to the \"Ignored Query Strings\" option in W3 Total Cache settings here." -msgstr "Em ordem para o cache de banco de dados trabalhar com o WooCommerce você deve adicionar _wc_session_ à \"Ignored Query Strings\" opção nas configurações do W3 Total Cache aqui." - -#: classes/emails/class-wc-email-new-order.php:25 -msgid "New order emails are sent when an order is received." -msgstr "Nova ordem de e-mails é enviado quando um pedido é recebido." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:213 -#, php-format -msgid "Log PayPal events, such as IPN requests, inside woocommerce/logs/paypal-%s.txt" -msgstr "Log de eventos do PayPal, como solicitações IPN, dentro woocommerce/logs/paypal-%s.txt" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:680 -#, php-format -msgid "Payment pending: %s" -msgstr "Pagamento pendente: %s" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:722 -msgid "Order reversed" -msgstr "Ordem invertida" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:723 -#, php-format -msgid "Order %s has been marked on-hold due to a reversal - PayPal reason code: %s" -msgstr "Ordem %s foi marcada em espera devido a uma inversão - Código PayPal da razão: %s" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:726 -#, php-format -msgid "Payment for order %s reversed" -msgstr "Pagamento por ordem %s revertida" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:734 -msgid "Reversal Cancelled" -msgstr "Reversão Cancelada" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:735 -#, php-format -msgid "Order %s has had a reversal cancelled. Please check the status of payment and update the order status accordingly." -msgstr "Ordem %s teve uma reversão cancelada. Por favor, verifique o estado de pagamento e atualize o estado do pedido." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:738 -#, php-format -msgid "Reversal cancelled for order %s" -msgstr "Reversão cancelada para ordem %s" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:69 -msgid "Set Domain Name" -msgstr "Conjunto de nomes de domínio" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:70 -#, php-format -msgid "(Optional) Sets the _setDomainName variable. See here for more information." -msgstr "(Opcional) Define a _setDomainName variável. Veja aqui para mais informações." - -#: classes/shortcodes/class-wc-shortcode-checkout.php:45 -#, php-format -msgid "WooCommerce Config Error: The checkout thanks/pay pages are missing - these pages are required for the checkout to function correctly. Please configure the pages here." -msgstr "WooCommerce Erro de Configuração: Faltam as páginas de Pagamento/Obrigado - estas páginas são necessárias para o pagamento funcionar corretamente. Por favor, configure as páginas aqui." - -#: classes/shortcodes/class-wc-shortcode-view-order.php:71 -#: templates/order/tracking.php:37 -msgid "l jS \\o\\f F Y, h:ia" -msgstr "l j \\o\\f F Y, H:i" - -#: i18n/states/ES.php:13 -msgid "A Coruña" -msgstr "A Coruña" - -#: i18n/states/ES.php:14 -msgid "Álava" -msgstr "Álava" - -#: i18n/states/ES.php:15 -msgid "Albacete" -msgstr "Albacete" - -#: i18n/states/ES.php:16 -msgid "Alicante" -msgstr "Alicante" - -#: i18n/states/ES.php:17 -msgid "Almería" -msgstr "Almería" - -#: i18n/states/ES.php:18 -msgid "Asturias" -msgstr "Asturias" - -#: i18n/states/ES.php:19 -msgid "Ávila" -msgstr "Ávila" - -#: i18n/states/ES.php:20 -msgid "Badajoz" -msgstr "Badajoz" - -#: i18n/states/ES.php:21 -msgid "Baleares" -msgstr "Baleares" - -#: i18n/states/ES.php:22 -msgid "Barcelona" -msgstr "Barcelona" - -#: i18n/states/ES.php:23 -msgid "Burgos" -msgstr "Burgos" - -#: i18n/states/ES.php:24 -msgid "Cáceres" -msgstr "Cáceres" - -#: i18n/states/ES.php:25 -msgid "Cádiz" -msgstr "Cádiz" - -#: i18n/states/ES.php:26 -msgid "Cantabria" -msgstr "Cantabria" - -#: i18n/states/ES.php:27 -msgid "Castellón" -msgstr "Castellón" - -#: i18n/states/ES.php:28 -msgid "Ceuta" -msgstr "Ceuta" - -#: i18n/states/ES.php:29 -msgid "Ciudad Real" -msgstr "Ciudad Real" - -#: i18n/states/ES.php:30 -msgid "Córdoba" -msgstr "Córdoba" - -#: i18n/states/ES.php:31 -msgid "Cuenca" -msgstr "Cuenca" - -#: i18n/states/ES.php:32 -msgid "Girona" -msgstr "Girona" - -#: i18n/states/ES.php:33 -msgid "Granada" -msgstr "Granada" - -#: i18n/states/ES.php:34 -msgid "Guadalajara" -msgstr "Guadalajara" - -#: i18n/states/ES.php:35 -msgid "Guipúzcoa" -msgstr "Guipúzcoa" - -#: i18n/states/ES.php:36 -msgid "Huelva" -msgstr "Huelva" - -#: i18n/states/ES.php:37 -msgid "Huesca" -msgstr "Huesca" - -#: i18n/states/ES.php:38 -msgid "Jaén" -msgstr "Jaén" - -#: i18n/states/ES.php:39 -msgid "La Rioja" -msgstr "La Rioja" - -#: i18n/states/ES.php:40 -msgid "Las Palmas" -msgstr "Las Palmas" - -#: i18n/states/ES.php:41 -msgid "León" -msgstr "León" - -#: i18n/states/ES.php:42 -msgid "Lleida" -msgstr "Lleida" - -#: i18n/states/ES.php:43 -msgid "Lugo" -msgstr "Lugo" - -#: i18n/states/ES.php:44 -msgid "Madrid" -msgstr "Madrid" - -#: i18n/states/ES.php:45 -msgid "Málaga" -msgstr "Málaga" - -#: i18n/states/ES.php:46 -msgid "Melilla" -msgstr "Melilla" - -#: i18n/states/ES.php:47 -msgid "Murcia" -msgstr "Murcia" - -#: i18n/states/ES.php:48 -msgid "Navarra" -msgstr "Navarra" - -#: i18n/states/ES.php:49 -msgid "Ourense" -msgstr "Ourense" - -#: i18n/states/ES.php:50 -msgid "Palencia" -msgstr "Palencia" - -#: i18n/states/ES.php:51 -msgid "Pontevedra" -msgstr "Pontevedra" - -#: i18n/states/ES.php:52 -msgid "Salamanca" -msgstr "Salamanca" - -#: i18n/states/ES.php:53 -msgid "Santa Cruz de Tenerife" -msgstr "Santa Cruz de Tenerife" - -#: i18n/states/ES.php:54 -msgid "Segovia" -msgstr "Segovia" - -#: i18n/states/ES.php:55 -msgid "Sevilla" -msgstr "Sevilla" - -#: i18n/states/ES.php:56 -msgid "Soria" -msgstr "Soria" - -#: i18n/states/ES.php:57 -msgid "Tarragona" -msgstr "Tarragona" - -#: i18n/states/ES.php:58 -msgid "Teruel" -msgstr "Teruel" - -#: i18n/states/ES.php:59 -msgid "Toledo" -msgstr "Toledo" - -#: i18n/states/ES.php:60 -msgid "Valencia" -msgstr "Valencia" - -#: i18n/states/ES.php:61 -msgid "Valladolid" -msgstr "Valladolid" - -#: i18n/states/ES.php:62 -msgid "Vizcaya" -msgstr "Vizcaya" - -#: i18n/states/ES.php:63 -msgid "Zamora" -msgstr "Zamora" - -#: i18n/states/ES.php:64 -msgid "Zaragoza" -msgstr "Zaragoza" - -#: woocommerce-core-functions.php:735 -msgid "Russian Ruble" -msgstr "Rublo Russo" - -#: woocommerce-functions.php:670 -#: woocommerce-functions.php:672 -#: woocommerce-functions.php:680 -msgid "Error" -msgstr "Erro" - -#: woocommerce-functions.php:680 -msgid "A user could not be found with this email address." -msgstr "Um utilizador não pôde ser encontrado com este endereço de e-mail." - -#. translators: plugin header field 'Version' -#: woocommerce.php:0 -msgid "2.0.18" -msgstr "2.0.18" - -# Line: 27 #@ woocommerce \ No newline at end of file diff --git a/i18n/languages/woocommerce-ro_RO.mo b/i18n/languages/woocommerce-ro_RO.mo deleted file mode 100644 index c9f05b5a382..00000000000 Binary files a/i18n/languages/woocommerce-ro_RO.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-ro_RO.po b/i18n/languages/woocommerce-ro_RO.po deleted file mode 100644 index 9f35dbc0791..00000000000 --- a/i18n/languages/woocommerce-ro_RO.po +++ /dev/null @@ -1,8359 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce v2.0.0\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-04-29 16:02:06+00:00\n" -"PO-Revision-Date: 2013-05-06 18:05+0200\n" -"Last-Translator: Aurel Roman \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Poedit 1.5.5\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" -"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" -"X-Poedit-Basepath: ../../\n" -"X-Textdomain-Support: yes\n" -"X-Poedit-SearchPath-0: .\n" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:5 -msgid "Insert Shortcode" -msgstr "Inserează Scurtătură de Cod" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:6 -msgid "Product price/cart button" -msgstr "Buton preț / coș produs" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:7 -msgid "Product by SKU/ID" -msgstr "Produs după Cod Produs" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:8 -msgid "Products by SKU/ID" -msgstr "Produse după Cod Produs" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:9 -msgid "Product categories" -msgstr "Categorii de Produse" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:10 -msgid "Products by category slug" -msgstr "Produse după Numele Scurt al Categoriei" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:11 -msgid "Recent products" -msgstr "Produse Noi" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:12 -msgid "Featured products" -msgstr "Produse Recomandate" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:13 -msgid "Shop Messages" -msgstr "Mesajele Magazinului" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:14 -msgid "Pages" -msgstr "Pagini" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:15 -#: classes/widgets/class-wc-widget-cart.php:61 -msgid "Cart" -msgstr "Coș" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:16 -msgid "Checkout" -msgstr "Plasează Comanda" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:17 -msgid "Order tracking" -msgstr "Umărește Comanda" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:18 -#: templates/checkout/thankyou.php:30 -msgid "My Account" -msgstr "Contul Meu" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:19 -msgid "Edit Address" -msgstr "Modifică Adresa" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:20 -msgid "Change Password" -msgstr "Modifică Parola" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:21 woocommerce.php:1065 -#: woocommerce.php:1066 -msgid "View Order" -msgstr "Vezi Comandă" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:22 -#: templates/checkout/thankyou.php:28 templates/myaccount/my-orders.php:71 -msgid "Pay" -msgstr "Plătește" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:23 -msgid "Thankyou" -msgstr "Mulțumim" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:431 -#: classes/emails/class-wc-email-customer-completed-order.php:135 -#: classes/emails/class-wc-email-customer-invoice.php:138 -#: classes/emails/class-wc-email-new-order.php:115 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:63 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:57 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:122 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:120 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:76 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:75 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:50 -msgid "Enable/Disable" -msgstr "Activează / Dezactivează" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:433 -#: classes/emails/class-wc-email-customer-completed-order.php:137 -#: classes/emails/class-wc-email-customer-invoice.php:140 -#: classes/emails/class-wc-email-new-order.php:117 -msgid "Enable this email notification" -msgstr "Activează această notificare de e-mail" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:437 -#: classes/emails/class-wc-email-customer-invoice.php:144 -msgid "Email subject" -msgstr "Subiect Email" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:439 -#: classes/abstracts/abstract-wc-email.php:446 -#: classes/emails/class-wc-email-customer-completed-order.php:143 -#: classes/emails/class-wc-email-customer-completed-order.php:150 -#: classes/emails/class-wc-email-customer-completed-order.php:157 -#: classes/emails/class-wc-email-customer-completed-order.php:164 -#: classes/emails/class-wc-email-customer-invoice.php:146 -#: classes/emails/class-wc-email-customer-invoice.php:153 -#: classes/emails/class-wc-email-customer-invoice.php:160 -#: classes/emails/class-wc-email-customer-invoice.php:167 -msgid "Defaults to %s" -msgstr "Implicit la %s" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:444 -#: classes/emails/class-wc-email-customer-invoice.php:151 -msgid "Email heading" -msgstr "Antet Email" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:451 -#: classes/emails/class-wc-email-customer-completed-order.php:169 -#: classes/emails/class-wc-email-customer-invoice.php:172 -#: classes/emails/class-wc-email-new-order.php:142 -msgid "Email type" -msgstr "Tip email" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:453 -#: classes/emails/class-wc-email-customer-completed-order.php:171 -#: classes/emails/class-wc-email-customer-invoice.php:174 -#: classes/emails/class-wc-email-new-order.php:144 -msgid "Choose which format of email to send." -msgstr "Alege formatul de e-mail care va fi trimis." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:457 -#: classes/emails/class-wc-email-customer-completed-order.php:175 -#: classes/emails/class-wc-email-customer-invoice.php:178 -#: classes/emails/class-wc-email-new-order.php:148 -msgid "Plain text" -msgstr "Text Simplu" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:458 -#: classes/emails/class-wc-email-customer-completed-order.php:176 -#: classes/emails/class-wc-email-customer-invoice.php:179 -#: classes/emails/class-wc-email-new-order.php:149 -msgid "HTML" -msgstr "HTML" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:459 -#: classes/emails/class-wc-email-customer-completed-order.php:177 -#: classes/emails/class-wc-email-customer-invoice.php:180 -#: classes/emails/class-wc-email-new-order.php:150 -msgid "Multipart" -msgstr "Mai multe părţi" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:495 -#: classes/abstracts/abstract-wc-email.php:516 -msgid "Could not write to template file." -msgstr "Nu am putut scrie în fișierul șablon." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:543 -msgid "Template file copied to theme." -msgstr "Fișier șablon copiat în directorul temei." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:552 -msgid "Template file deleted from theme." -msgstr "Fișier șablon șters din temă." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:560 -#: classes/abstracts/abstract-wc-integration.php:30 -#: classes/abstracts/abstract-wc-settings-api.php:39 woocommerce.php:170 -msgid "Settings" -msgstr "Setări" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:572 -msgid "HTML template" -msgstr "Șablon - format HTML" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:573 -msgid "Plain text template" -msgstr "Șablon - format text simplu" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:592 -msgid "Delete template file" -msgstr "Șterge fișierul șablon" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:595 -msgid "" -"This template has been overridden by your theme and can be found in: " -"%s." -msgstr "" -"Acest șablon a fost înlocuit de tema dvs. și poate fi găsit la în: %s." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:610 -msgid "Copy file to theme" -msgstr "Copiază fișierul în directorul temei curente" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:613 -msgid "" -"To override and edit this email template copy %s to your theme " -"folder: %s." -msgstr "" -"Pentru a înlocui şi edita acest şablon de e-mail, copiază %s în " -"directorul: %s din interiorul temei active." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:624 -msgid "File was not found." -msgstr "Fișierul nu a fost găsit." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:649 -msgid "View template" -msgstr "Vizualizează șablon" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:650 -msgid "Hide template" -msgstr "Ascunde șablon" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:661 -msgid "Are you sure you want to delete this template file?" -msgstr "Ești sigur că vrei să ștergi acest șablon?" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:33 -msgid "" -"The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class " -"directly." -msgstr "" -"Clasa WC_Product este acum abstractă. Folosiți get_product" -"() pentru a obține instanța unui produs în loc să apelați această " -"clasă direct." - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:545 -#: classes/abstracts/abstract-wc-product.php:550 -#: classes/abstracts/abstract-wc-product.php:569 -msgid "In stock" -msgstr "În stoc" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:550 -msgid "Only %s left in stock" -msgstr "Doar %s rămase în stoc" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:553 -msgid "%s in stock" -msgstr "%s în stoc" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:560 -msgid "(backorders allowed)" -msgstr "(Comenzile în Așteptare sunt Permise)" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:566 -#: classes/abstracts/abstract-wc-product.php:579 templates/cart/cart.php:76 -msgid "Available on backorder" -msgstr "Disponibil pentru Comandă în Așteptare" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:572 -#: classes/abstracts/abstract-wc-product.php:582 -#: classes/abstracts/abstract-wc-product.php:586 -msgid "Out of stock" -msgstr "Stoc epuizat" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:846 -#: classes/abstracts/abstract-wc-product.php:852 -#: classes/class-wc-cart.php:1801 classes/class-wc-order.php:891 -#: classes/class-wc-product-variable.php:274 -#: classes/class-wc-product-variable.php:283 -#: classes/class-wc-product-variation.php:246 -msgid "Free!" -msgstr "Gratis!" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:870 -msgctxt "min_price" -msgid "From:" -msgstr "De la:" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:959 -#: templates/single-product-reviews.php:28 -msgid "Rated %s out of 5" -msgstr "Evaluat la %s stele din 5" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:961 -#: templates/single-product/review.php:27 -#: templates/single-product-reviews.php:28 -msgid "out of 5" -msgstr "din 5" - -#: classes/class-wc-cache-helper.php:92 -msgid "" -"In order for database caching to work with WooCommerce you " -"must add _wc_session_ to the \"Ignored Query Strings\" option " -"in W3 Total Cache settings here." -msgstr "" -"Pentru ca cache-ul bazei de date să lucreze cu " -"WooCommerce trebuie să adăugați _wc_session_ la opțiunea \" " -"Interogări ignorate ( Ignored Query Strings ) \" în setările W3 Total Cache " -" aici ." - -# @ woocommerce -#: classes/class-wc-cart.php:460 -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -"Ne pare rău însă nu avem suficiente produse \"%s\" în stoc pentru a vă onora " -"comanda. Doar %s produse sunt în stoc. Vă rugăm editați Coșul de Cumpărături " -"și încercați din nou. Ne pare rău pentru orice neplăcere creată." - -# @ woocommerce -#: classes/class-wc-cart.php:479 classes/class-wc-cart.php:488 -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfil your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -"Ne pare rău, însă nu avem suficiente produse \"%s\" în stoc pentru a vă " -"onora comanda ( doar %s produse sunt în stoc). Vă rugăm să modificați Coșul " -"de Cumpărături și încercați din nou. Ne pare rău pentru orice neplăcere " -"creată." - -# @ woocommerce -#: classes/class-wc-cart.php:523 -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfil your order right now. " -"Please try again in %d minutes or edit your cart and try again. We apologise " -"for any inconvenience caused." -msgstr "" -"Ne pare rău, însă în acest moment nu avem suficiente produse \"%s\" în stoc " -"pentru a vă onora comanda. Vă rugăm încercați din nou în %d minute sau " -"modificați Coșul de Cumpărături și încercați din nou. Ne pare rău pentru " -"orice neplăcere creată." - -# @ woocommerce -#: classes/class-wc-cart.php:533 -msgid "" -"Sorry, \"%s\" is not in stock. Please edit your cart and try again. We " -"apologise for any inconvenience caused." -msgstr "" -"Ne pare rău, însă produsul \"%s\" nu este în stoc. Vă rugăm să modificați " -"Coșul de Cumpărături și să încercați din nou. Ne pare rău pentru orice " -"neplăcere creată. " - -# @ woocommerce -#: classes/class-wc-cart.php:845 -msgid "Sorry, "%s" cannot be purchased." -msgstr "" -"Ne pare rău dar acest produs ( "%s" ) nu poate fi achiziționat." - -# @ woocommerce -#: classes/class-wc-cart.php:852 -msgid "" -"You cannot add "%s" to the cart because the product is out of " -"stock." -msgstr "" -"Nu puteți adăuga acest produs ("%s" ) în Coșul dvs., deoarece " -"produsul nu mai este în stoc." - -# @ woocommerce -#: classes/class-wc-cart.php:857 -msgid "" -"You cannot add that amount of "%s" to the cart because there is " -"not enough stock (%s remaining)." -msgstr "" -"Numărul de "%s" introdus nu poate fi adăugat în Coș, deoarce mai " -"avem doar %s produse în stoc." - -# @ woocommerce -#: classes/class-wc-cart.php:869 classes/class-wc-cart.php:883 -#: classes/class-wc-cart.php:891 templates/cart/mini-cart.php:68 -#: woocommerce-functions.php:497 woocommerce.php:1210 -msgid "View Cart →" -msgstr "Vezi Coș →" - -# @ woocommerce -#: classes/class-wc-cart.php:869 -msgid "You already have this item in your cart." -msgstr "Acest produs există deja în Coșul tău." - -# @ woocommerce -#: classes/class-wc-cart.php:883 classes/class-wc-cart.php:891 -msgid "" -"%s You cannot add that amount to the " -"cart — we have %s in stock and you already have %s in your cart." -msgstr "" -"%s Nu poți adăuga numărul acesta de " -"produse în Coș — Avem doar %s produse în stoc și ai deja %s în Coșul " -"de Cumpărături." - -# @ woocommerce -#: classes/class-wc-cart.php:1813 -msgid "via" -msgstr "prin" - -# @ woocommerce -#: classes/class-wc-checkout.php:64 -msgid "Account username" -msgstr "Cont Utilizator" - -# @ woocommerce -#: classes/class-wc-checkout.php:65 -msgctxt "placeholder" -msgid "Username" -msgstr "Nume Utilizator" - -# @ woocommerce -#: classes/class-wc-checkout.php:72 -msgid "Account password" -msgstr "Parolă Cont" - -# @ woocommerce -#: classes/class-wc-checkout.php:73 -msgctxt "placeholder" -msgid "Password" -msgstr "Parolă" - -# @ woocommerce -#: classes/class-wc-checkout.php:79 -msgid "Confirm password" -msgstr "Confirmă parola" - -# @ woocommerce -#: classes/class-wc-checkout.php:80 -msgctxt "placeholder" -msgid "Confirm password" -msgstr "Confirmă Parola" - -# @ woocommerce -#: classes/class-wc-checkout.php:89 -msgid "Order Notes" -msgstr "Mențiuni Comandă" - -# @ woocommerce -#: classes/class-wc-checkout.php:90 -msgctxt "placeholder" -msgid "Notes about your order, e.g. special notes for delivery." -msgstr "Notițe despre comanda ta, ex.: detalii de livrare, etc..." - -# @ woocommerce -#: classes/class-wc-checkout.php:152 -msgid "Order – %s" -msgstr "Comanda – %s" - -# @ woocommerce -#: classes/class-wc-checkout.php:152 -msgctxt "Order date parsed by strftime" -msgid "%b %d, %Y @ %I:%M %p" -msgstr "%b %d, %Y @ %I:%M %p" - -# @ woocommerce -#: classes/class-wc-checkout.php:278 -msgid "Backordered" -msgstr "Pus pe lista de așteptare" - -# @ woocommerce -#: classes/class-wc-checkout.php:388 -msgid "" -"Sorry, your session has expired. Return to homepage →" -msgstr "" -"Ne pare rău, sesiunea a expirat. Înapoi la pagina principală " -"→" - -# @ woocommerce -#: classes/class-wc-checkout.php:440 woocommerce-functions.php:1696 -msgid "is a required field." -msgstr "este un câmp obligatoriu." - -# @ woocommerce -#: classes/class-wc-checkout.php:453 -msgid "(%s) is not a valid postcode/ZIP." -msgstr "(%s) nu este un cod poștal valid." - -# @ woocommerce -#: classes/class-wc-checkout.php:474 -msgid "is not valid. Please enter one of the following:" -msgstr "nu este valid. Introdu una dintre următoarele:" - -# @ woocommerce -#: classes/class-wc-checkout.php:482 -msgid "is not a valid number." -msgstr "nu este un număr valid." - -# @ woocommerce -#: classes/class-wc-checkout.php:489 -msgid "is not a valid email address." -msgstr "nu este o adresă de email validă." - -# @ woocommerce -#: classes/class-wc-checkout.php:545 -msgid "Please enter an account username." -msgstr "Vă rugăm introduceți un nume de utilizator." - -# @ woocommerce -#: classes/class-wc-checkout.php:549 -msgid "Invalid email/username." -msgstr "Email sau nume utilizator invalid." - -# @ woocommerce -#: classes/class-wc-checkout.php:552 -msgid "" -"An account is already registered with that username. Please choose another." -msgstr "" -"Există deja un cont înregistrat cu acest nume utilizator. Alegeți altul." - -# @ woocommerce -#: classes/class-wc-checkout.php:562 -msgid "Please enter an account password." -msgstr "Vă rugăm introduceți o parolă pentru cont." - -# @ woocommerce -#: classes/class-wc-checkout.php:565 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:83 -#: woocommerce-functions.php:758 woocommerce-functions.php:1626 -msgid "Passwords do not match." -msgstr "Parolele nu se potrivesc." - -# @ woocommerce -#: classes/class-wc-checkout.php:569 -msgid "An account is already registered with your email address. Please login." -msgstr "" -"Există deja un cont înregistrat cu această adresă de email. Vă rugăm să vă " -"autentificați." - -# @ woocommerce -#: classes/class-wc-checkout.php:575 -msgid "You must accept our Terms & Conditions." -msgstr "Trebuie să acceptați Termenii și Condițiile noastre." - -# @ woocommerce -#: classes/class-wc-checkout.php:584 -msgid "Invalid shipping method." -msgstr "Metodă de transport necorespunzătoare." - -# @ woocommerce -#: classes/class-wc-checkout.php:597 -msgid "Invalid payment method." -msgstr "Metodă de plată necorespunzătoare." - -# @ woocommerce -#: classes/class-wc-checkout.php:637 woocommerce-functions.php:730 -#: woocommerce-functions.php:732 woocommerce-functions.php:735 -#: woocommerce-functions.php:747 woocommerce-functions.php:749 -#: woocommerce-functions.php:752 woocommerce-functions.php:786 -msgid "ERROR" -msgstr "EROARE" - -# @ woocommerce -#: classes/class-wc-checkout.php:637 woocommerce-functions.php:786 -msgid "" -"Couldn’t register you… please contact us if you continue to " -"have problems." -msgstr "" -"Nu te putem înregistra… Mai încearcă odată, nu ezita să ne contactezi " -"dacă problemele continuă." - -# @ woocommerce -#: classes/class-wc-countries.php:37 -msgid "Afghanistan" -msgstr "Afghanistan" - -# @ woocommerce -#: classes/class-wc-countries.php:38 -msgid "Åland Islands" -msgstr "Insulele Åland" - -# @ woocommerce -#: classes/class-wc-countries.php:39 -msgid "Albania" -msgstr "Albania" - -# @ woocommerce -#: classes/class-wc-countries.php:40 -msgid "Algeria" -msgstr "Algeria" - -# @ woocommerce -#: classes/class-wc-countries.php:41 -msgid "Andorra" -msgstr "Andorra" - -# @ woocommerce -#: classes/class-wc-countries.php:42 -msgid "Angola" -msgstr "Angola" - -# @ woocommerce -#: classes/class-wc-countries.php:43 -msgid "Anguilla" -msgstr "Anguilla" - -# @ woocommerce -#: classes/class-wc-countries.php:44 -msgid "Antarctica" -msgstr "Antarctica" - -# @ woocommerce -#: classes/class-wc-countries.php:45 -msgid "Antigua and Barbuda" -msgstr "Antigua și Barbuda" - -# @ woocommerce -#: classes/class-wc-countries.php:46 -msgid "Argentina" -msgstr "Argentina" - -# @ woocommerce -#: classes/class-wc-countries.php:47 -msgid "Armenia" -msgstr "Armenia" - -# @ woocommerce -#: classes/class-wc-countries.php:48 -msgid "Aruba" -msgstr "Aruba" - -# @ woocommerce -#: classes/class-wc-countries.php:49 -msgid "Australia" -msgstr "Australia" - -# @ woocommerce -#: classes/class-wc-countries.php:50 -msgid "Austria" -msgstr "Austria" - -# @ woocommerce -#: classes/class-wc-countries.php:51 -msgid "Azerbaijan" -msgstr "Azerbaidjan" - -# @ woocommerce -#: classes/class-wc-countries.php:52 -msgid "Bahamas" -msgstr "Bahamas" - -# @ woocommerce -#: classes/class-wc-countries.php:53 -msgid "Bahrain" -msgstr "Bahrain" - -# @ woocommerce -#: classes/class-wc-countries.php:54 -msgid "Bangladesh" -msgstr "Bangladesh" - -# @ woocommerce -#: classes/class-wc-countries.php:55 -msgid "Barbados" -msgstr "Barbados" - -# @ woocommerce -#: classes/class-wc-countries.php:56 -msgid "Belarus" -msgstr "Belarus" - -# @ woocommerce -#: classes/class-wc-countries.php:57 -msgid "Belgium" -msgstr "Belgia" - -# @ woocommerce -#: classes/class-wc-countries.php:58 -msgid "Belau" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:59 -msgid "Belize" -msgstr "Belize" - -# @ woocommerce -#: classes/class-wc-countries.php:60 -msgid "Benin" -msgstr "Benin" - -# @ woocommerce -#: classes/class-wc-countries.php:61 -msgid "Bermuda" -msgstr "Bermuda" - -# @ woocommerce -#: classes/class-wc-countries.php:62 -msgid "Bhutan" -msgstr "Bhutan" - -# @ woocommerce -#: classes/class-wc-countries.php:63 -msgid "Bolivia" -msgstr "Bolivia" - -# @ woocommerce -#: classes/class-wc-countries.php:64 -msgid "Bonaire, Saint Eustatius and Saba" -msgstr "Bonaire, Saint Eustatius și Saba" - -# @ woocommerce -#: classes/class-wc-countries.php:65 -msgid "Bosnia and Herzegovina" -msgstr "Bosnia și Herzegovina" - -# @ woocommerce -#: classes/class-wc-countries.php:66 -msgid "Botswana" -msgstr "Botswana" - -# @ woocommerce -#: classes/class-wc-countries.php:67 -msgid "Bouvet Island" -msgstr "Insula Bouvet" - -# @ woocommerce -#: classes/class-wc-countries.php:68 -msgid "Brazil" -msgstr "Brazilia" - -# @ woocommerce -#: classes/class-wc-countries.php:69 -msgid "British Indian Ocean Territory" -msgstr "Teritoriul Britanic din Oceanul Indian" - -# @ woocommerce -#: classes/class-wc-countries.php:70 -msgid "British Virgin Islands" -msgstr "Insulele Virgine Britanice" - -# @ woocommerce -#: classes/class-wc-countries.php:71 -msgid "Brunei" -msgstr "Brunei" - -# @ woocommerce -#: classes/class-wc-countries.php:72 -msgid "Bulgaria" -msgstr "Bulgaria" - -# @ woocommerce -#: classes/class-wc-countries.php:73 -msgid "Burkina Faso" -msgstr "Burkina Faso" - -# @ woocommerce -#: classes/class-wc-countries.php:74 -msgid "Burundi" -msgstr "Burundi" - -# @ woocommerce -#: classes/class-wc-countries.php:75 -msgid "Cambodia" -msgstr "Cambodgia" - -# @ woocommerce -#: classes/class-wc-countries.php:76 -msgid "Cameroon" -msgstr "Camerun" - -# @ woocommerce -#: classes/class-wc-countries.php:77 -msgid "Canada" -msgstr "Canada" - -# @ woocommerce -#: classes/class-wc-countries.php:78 -msgid "Cape Verde" -msgstr "Cap Verde" - -# @ woocommerce -#: classes/class-wc-countries.php:79 -msgid "Cayman Islands" -msgstr "Insulele Cayman" - -# @ woocommerce -#: classes/class-wc-countries.php:80 -msgid "Central African Republic" -msgstr "Republica Central African" - -# @ woocommerce -#: classes/class-wc-countries.php:81 -msgid "Chad" -msgstr "Ciad" - -# @ woocommerce -#: classes/class-wc-countries.php:82 -msgid "Chile" -msgstr "Chile" - -# @ woocommerce -#: classes/class-wc-countries.php:83 -msgid "China" -msgstr "China" - -# @ woocommerce -#: classes/class-wc-countries.php:84 -msgid "Christmas Island" -msgstr "Insula Crăciun" - -# @ woocommerce -#: classes/class-wc-countries.php:85 -msgid "Cocos (Keeling) Islands" -msgstr "Insulele Cocos (Keeling)" - -# @ woocommerce -#: classes/class-wc-countries.php:86 -msgid "Colombia" -msgstr "Columbia" - -# @ woocommerce -#: classes/class-wc-countries.php:87 -msgid "Comoros" -msgstr "Comoros" - -# @ woocommerce -#: classes/class-wc-countries.php:88 -msgid "Congo (Brazzaville)" -msgstr "Congo (Brazzaville)" - -# @ woocommerce -#: classes/class-wc-countries.php:89 -msgid "Congo (Kinshasa)" -msgstr "Congo (Kinshasa)" - -# @ woocommerce -#: classes/class-wc-countries.php:90 -msgid "Cook Islands" -msgstr "Insulele Cook" - -# @ woocommerce -#: classes/class-wc-countries.php:91 -msgid "Costa Rica" -msgstr "Costa Rica" - -# @ woocommerce -#: classes/class-wc-countries.php:92 -msgid "Croatia" -msgstr "Croatia" - -# @ woocommerce -#: classes/class-wc-countries.php:93 -msgid "Cuba" -msgstr "Cuba" - -# @ woocommerce -#: classes/class-wc-countries.php:94 -msgid "CuraÇao" -msgstr "CuraÇao" - -# @ woocommerce -#: classes/class-wc-countries.php:95 -msgid "Cyprus" -msgstr "Cipru" - -# @ woocommerce -#: classes/class-wc-countries.php:96 -msgid "Czech Republic" -msgstr "Republica Ceh" - -# @ woocommerce -#: classes/class-wc-countries.php:97 -msgid "Denmark" -msgstr "Danemarca" - -# @ woocommerce -#: classes/class-wc-countries.php:98 -msgid "Djibouti" -msgstr "Djibouti" - -# @ woocommerce -#: classes/class-wc-countries.php:99 -msgid "Dominica" -msgstr "Dominica" - -# @ woocommerce -#: classes/class-wc-countries.php:100 -msgid "Dominican Republic" -msgstr "Republica Dominican" - -# @ woocommerce -#: classes/class-wc-countries.php:101 -msgid "Ecuador" -msgstr "Ecuador" - -# @ woocommerce -#: classes/class-wc-countries.php:102 -msgid "Egypt" -msgstr "Egipt" - -# @ woocommerce -#: classes/class-wc-countries.php:103 -msgid "El Salvador" -msgstr "El Salvador" - -# @ woocommerce -#: classes/class-wc-countries.php:104 -msgid "Equatorial Guinea" -msgstr "Guineea Ecuatorial" - -# @ woocommerce -#: classes/class-wc-countries.php:105 -msgid "Eritrea" -msgstr "Eritrea" - -# @ woocommerce -#: classes/class-wc-countries.php:106 -msgid "Estonia" -msgstr "Estonia" - -# @ woocommerce -#: classes/class-wc-countries.php:107 -msgid "Ethiopia" -msgstr "Ethiopia" - -# @ woocommerce -#: classes/class-wc-countries.php:108 -msgid "Falkland Islands" -msgstr "Insulele Falkland" - -# @ woocommerce -#: classes/class-wc-countries.php:109 -msgid "Faroe Islands" -msgstr "Insulele Feroe" - -# @ woocommerce -#: classes/class-wc-countries.php:110 -msgid "Fiji" -msgstr "Fiji" - -# @ woocommerce -#: classes/class-wc-countries.php:111 -msgid "Finland" -msgstr "Finlanda" - -# @ woocommerce -#: classes/class-wc-countries.php:112 -msgid "France" -msgstr "Franța" - -# @ woocommerce -#: classes/class-wc-countries.php:113 -msgid "French Guiana" -msgstr "Guyana Francez" - -# @ woocommerce -#: classes/class-wc-countries.php:114 -msgid "French Polynesia" -msgstr "Polinezia Francez" - -# @ woocommerce -#: classes/class-wc-countries.php:115 -msgid "French Southern Territories" -msgstr "Teritoriile Franceze de Sud" - -# @ woocommerce -#: classes/class-wc-countries.php:116 -msgid "Gabon" -msgstr "Gabon" - -# @ woocommerce -#: classes/class-wc-countries.php:117 -msgid "Gambia" -msgstr "Gambia" - -# @ woocommerce -#: classes/class-wc-countries.php:118 i18n/states/US.php:23 -msgid "Georgia" -msgstr "Georgia" - -# @ woocommerce -#: classes/class-wc-countries.php:119 -msgid "Germany" -msgstr "Germania" - -# @ woocommerce -#: classes/class-wc-countries.php:120 -msgid "Ghana" -msgstr "Ghana" - -# @ woocommerce -#: classes/class-wc-countries.php:121 -msgid "Gibraltar" -msgstr "Gibraltar" - -# @ woocommerce -#: classes/class-wc-countries.php:122 -msgid "Greece" -msgstr "Grecia" - -# @ woocommerce -#: classes/class-wc-countries.php:123 -msgid "Greenland" -msgstr "Groenlanda" - -# @ woocommerce -#: classes/class-wc-countries.php:124 -msgid "Grenada" -msgstr "Grenada" - -# @ woocommerce -#: classes/class-wc-countries.php:125 -msgid "Guadeloupe" -msgstr "Guadelupe" - -# @ woocommerce -#: classes/class-wc-countries.php:126 -msgid "Guatemala" -msgstr "Guatemala" - -# @ woocommerce -#: classes/class-wc-countries.php:127 -msgid "Guernsey" -msgstr "Guernsey" - -# @ woocommerce -#: classes/class-wc-countries.php:128 -msgid "Guinea" -msgstr "Guineea" - -# @ woocommerce -#: classes/class-wc-countries.php:129 -msgid "Guinea-Bissau" -msgstr "Guineea-Bissau" - -# @ woocommerce -#: classes/class-wc-countries.php:130 -msgid "Guyana" -msgstr "Guyana" - -# @ woocommerce -#: classes/class-wc-countries.php:131 -msgid "Haiti" -msgstr "Haiti" - -# @ woocommerce -#: classes/class-wc-countries.php:132 -msgid "Heard Island and McDonald Islands" -msgstr "Insula Heard și Insula McDonald" - -# @ woocommerce -#: classes/class-wc-countries.php:133 -msgid "Honduras" -msgstr "Honduras" - -# @ woocommerce -#: classes/class-wc-countries.php:134 -msgid "Hong Kong" -msgstr "Hong Kong" - -# @ woocommerce -#: classes/class-wc-countries.php:135 -msgid "Hungary" -msgstr "Ungaria" - -# @ woocommerce -#: classes/class-wc-countries.php:136 -msgid "Iceland" -msgstr "Islanda" - -# @ woocommerce -#: classes/class-wc-countries.php:137 -msgid "India" -msgstr "India" - -# @ woocommerce -#: classes/class-wc-countries.php:138 -msgid "Indonesia" -msgstr "Indonesia" - -# @ woocommerce -#: classes/class-wc-countries.php:139 -msgid "Iran" -msgstr "Iran" - -# @ woocommerce -#: classes/class-wc-countries.php:140 -msgid "Iraq" -msgstr "Iraq" - -# @ woocommerce -#: classes/class-wc-countries.php:141 -msgid "Republic of Ireland" -msgstr "Irlanda" - -# @ woocommerce -#: classes/class-wc-countries.php:142 -msgid "Isle of Man" -msgstr "Insula Man" - -# @ woocommerce -#: classes/class-wc-countries.php:143 -msgid "Israel" -msgstr "Israel" - -# @ woocommerce -#: classes/class-wc-countries.php:144 -msgid "Italy" -msgstr "Italia" - -# @ woocommerce -#: classes/class-wc-countries.php:145 -msgid "Ivory Coast" -msgstr "Coasta de Filde" - -# @ woocommerce -#: classes/class-wc-countries.php:146 -msgid "Jamaica" -msgstr "Jamaica" - -# @ woocommerce -#: classes/class-wc-countries.php:147 -msgid "Japan" -msgstr "Japonia" - -# @ woocommerce -#: classes/class-wc-countries.php:148 -msgid "Jersey" -msgstr "Jersey" - -# @ woocommerce -#: classes/class-wc-countries.php:149 -msgid "Jordan" -msgstr "Iordan" - -# @ woocommerce -#: classes/class-wc-countries.php:150 -msgid "Kazakhstan" -msgstr "Kazakhstan" - -# @ woocommerce -#: classes/class-wc-countries.php:151 -msgid "Kenya" -msgstr "Kenya" - -# @ woocommerce -#: classes/class-wc-countries.php:152 -msgid "Kiribati" -msgstr "Kiribati" - -# @ woocommerce -#: classes/class-wc-countries.php:153 -msgid "Kuwait" -msgstr "Kuwait" - -# @ woocommerce -#: classes/class-wc-countries.php:154 -msgid "Kyrgyzstan" -msgstr "Kyrgyzstan" - -# @ woocommerce -#: classes/class-wc-countries.php:155 -msgid "Laos" -msgstr "Laos" - -# @ woocommerce -#: classes/class-wc-countries.php:156 -msgid "Latvia" -msgstr "Letonia" - -# @ woocommerce -#: classes/class-wc-countries.php:157 -msgid "Lebanon" -msgstr "Liban" - -# @ woocommerce -#: classes/class-wc-countries.php:158 -msgid "Lesotho" -msgstr "Lesotho" - -# @ woocommerce -#: classes/class-wc-countries.php:159 -msgid "Liberia" -msgstr "Liberia" - -# @ woocommerce -#: classes/class-wc-countries.php:160 -msgid "Libya" -msgstr "Libya" - -# @ woocommerce -#: classes/class-wc-countries.php:161 -msgid "Liechtenstein" -msgstr "Liechtenstein" - -# @ woocommerce -#: classes/class-wc-countries.php:162 -msgid "Lithuania" -msgstr "Lituania" - -# @ woocommerce -#: classes/class-wc-countries.php:163 -msgid "Luxembourg" -msgstr "Luxembourg" - -# @ woocommerce -#: classes/class-wc-countries.php:164 -msgid "Macao S.A.R., China" -msgstr "Macao S.A.R., China" - -# @ woocommerce -#: classes/class-wc-countries.php:165 -msgid "Macedonia" -msgstr "Macedonia" - -# @ woocommerce -#: classes/class-wc-countries.php:166 -msgid "Madagascar" -msgstr "Madagascar" - -# @ woocommerce -#: classes/class-wc-countries.php:167 -msgid "Malawi" -msgstr "Malawi" - -# @ woocommerce -#: classes/class-wc-countries.php:168 -msgid "Malaysia" -msgstr "Malaysia" - -# @ woocommerce -#: classes/class-wc-countries.php:169 -msgid "Maldives" -msgstr "Maldives" - -# @ woocommerce -#: classes/class-wc-countries.php:170 -msgid "Mali" -msgstr "Mali" - -# @ woocommerce -#: classes/class-wc-countries.php:171 -msgid "Malta" -msgstr "Malta" - -# @ woocommerce -#: classes/class-wc-countries.php:172 -msgid "Marshall Islands" -msgstr "Insulele Marshall" - -# @ woocommerce -#: classes/class-wc-countries.php:173 -msgid "Martinique" -msgstr "Martinica" - -# @ woocommerce -#: classes/class-wc-countries.php:174 -msgid "Mauritania" -msgstr "Mauritania" - -# @ woocommerce -#: classes/class-wc-countries.php:175 -msgid "Mauritius" -msgstr "Mauritius" - -# @ woocommerce -#: classes/class-wc-countries.php:176 -msgid "Mayotte" -msgstr "Mayotte" - -# @ woocommerce -#: classes/class-wc-countries.php:177 -msgid "Mexico" -msgstr "Mexic" - -# @ woocommerce -#: classes/class-wc-countries.php:178 -msgid "Micronesia" -msgstr "Micronesia" - -# @ woocommerce -#: classes/class-wc-countries.php:179 -msgid "Moldova" -msgstr "Moldova" - -# @ woocommerce -#: classes/class-wc-countries.php:180 -msgid "Monaco" -msgstr "Monaco" - -# @ woocommerce -#: classes/class-wc-countries.php:181 -msgid "Mongolia" -msgstr "Mongolia" - -# @ woocommerce -#: classes/class-wc-countries.php:182 -msgid "Montenegro" -msgstr "Muntenegru" - -# @ woocommerce -#: classes/class-wc-countries.php:183 -msgid "Montserrat" -msgstr "Montserrat" - -# @ woocommerce -#: classes/class-wc-countries.php:184 -msgid "Morocco" -msgstr "Maroc" - -# @ woocommerce -#: classes/class-wc-countries.php:185 -msgid "Mozambique" -msgstr "Mozambic" - -# @ woocommerce -#: classes/class-wc-countries.php:186 -msgid "Myanmar" -msgstr "Myanmar" - -# @ woocommerce -#: classes/class-wc-countries.php:187 -msgid "Namibia" -msgstr "Namibia" - -# @ woocommerce -#: classes/class-wc-countries.php:188 -msgid "Nauru" -msgstr "Nauru" - -# @ woocommerce -#: classes/class-wc-countries.php:189 -msgid "Nepal" -msgstr "Nepal" - -# @ woocommerce -#: classes/class-wc-countries.php:190 -msgid "Netherlands" -msgstr "Olanda" - -# @ woocommerce -#: classes/class-wc-countries.php:191 -msgid "Netherlands Antilles" -msgstr "Antilele Olandeze" - -# @ woocommerce -#: classes/class-wc-countries.php:192 -msgid "New Caledonia" -msgstr "Noua Caledonie" - -# @ woocommerce -#: classes/class-wc-countries.php:193 -msgid "New Zealand" -msgstr "Noua Zeelanda" - -# @ woocommerce -#: classes/class-wc-countries.php:194 -msgid "Nicaragua" -msgstr "Nicaragua" - -# @ woocommerce -#: classes/class-wc-countries.php:195 -msgid "Niger" -msgstr "Niger" - -# @ woocommerce -#: classes/class-wc-countries.php:196 -msgid "Nigeria" -msgstr "Nigeria" - -# @ woocommerce -#: classes/class-wc-countries.php:197 -msgid "Niue" -msgstr "Niue" - -# @ woocommerce -#: classes/class-wc-countries.php:198 -msgid "Norfolk Island" -msgstr "Insula Norkfold" - -# @ woocommerce -#: classes/class-wc-countries.php:199 -msgid "North Korea" -msgstr "Coreea de Nord" - -# @ woocommerce -#: classes/class-wc-countries.php:200 -msgid "Norway" -msgstr "Norvegia" - -# @ woocommerce -#: classes/class-wc-countries.php:201 -msgid "Oman" -msgstr "Oman" - -# @ woocommerce -#: classes/class-wc-countries.php:202 -msgid "Pakistan" -msgstr "Pakistan" - -# @ woocommerce -#: classes/class-wc-countries.php:203 -msgid "Palestinian Territory" -msgstr "Teritoriile Palestiniene" - -# @ woocommerce -#: classes/class-wc-countries.php:204 -msgid "Panama" -msgstr "Panama" - -# @ woocommerce -#: classes/class-wc-countries.php:205 -msgid "Papua New Guinea" -msgstr "Papua Noua Guinee" - -# @ woocommerce -#: classes/class-wc-countries.php:206 -msgid "Paraguay" -msgstr "Paraguay" - -# @ woocommerce -#: classes/class-wc-countries.php:207 -msgid "Peru" -msgstr "Peru" - -# @ woocommerce -#: classes/class-wc-countries.php:208 -msgid "Philippines" -msgstr "Filipine" - -# @ woocommerce -#: classes/class-wc-countries.php:209 -msgid "Pitcairn" -msgstr "Pitcairn" - -# @ woocommerce -#: classes/class-wc-countries.php:210 -msgid "Poland" -msgstr "Polonia" - -# @ woocommerce -#: classes/class-wc-countries.php:211 -msgid "Portugal" -msgstr "Portugalia" - -# @ woocommerce -#: classes/class-wc-countries.php:212 -msgid "Qatar" -msgstr "Qatar" - -# @ woocommerce -#: classes/class-wc-countries.php:213 -msgid "Reunion" -msgstr "Reunion" - -# @ woocommerce -#: classes/class-wc-countries.php:214 -msgid "Romania" -msgstr "România" - -# @ woocommerce -#: classes/class-wc-countries.php:215 -msgid "Russia" -msgstr "Rusia" - -# @ woocommerce -#: classes/class-wc-countries.php:216 -msgid "Rwanda" -msgstr "Rwanda" - -# @ woocommerce -#: classes/class-wc-countries.php:217 -msgid "Saint Barthélemy" -msgstr "Saint Barthélemy" - -# @ woocommerce -#: classes/class-wc-countries.php:218 -msgid "Saint Helena" -msgstr "Sfânta Elena" - -# @ woocommerce -#: classes/class-wc-countries.php:219 -msgid "Saint Kitts and Nevis" -msgstr "Saint Kitts și Nevis" - -# @ woocommerce -#: classes/class-wc-countries.php:220 -msgid "Saint Lucia" -msgstr "Sfânta Lucia" - -# @ woocommerce -#: classes/class-wc-countries.php:221 -msgid "Saint Martin (French part)" -msgstr "Saint Martin" - -# @ woocommerce -#: classes/class-wc-countries.php:222 -msgid "Saint Martin (Dutch part)" -msgstr "Saint Martin (Dutch part)" - -# @ woocommerce -#: classes/class-wc-countries.php:223 -msgid "Saint Pierre and Miquelon" -msgstr "Saint Pierre și Miquelon" - -# @ woocommerce -#: classes/class-wc-countries.php:224 -msgid "Saint Vincent and the Grenadines" -msgstr "Sfântul Vincențiu și Grenadine" - -# @ woocommerce -#: classes/class-wc-countries.php:225 -msgid "San Marino" -msgstr "San Marino" - -# @ woocommerce -#: classes/class-wc-countries.php:226 -msgid "São Tomé and Príncipe" -msgstr "São Tomé și Príncipe" - -# @ woocommerce -#: classes/class-wc-countries.php:227 -msgid "Saudi Arabia" -msgstr "Arabia Saudită" - -# @ woocommerce -#: classes/class-wc-countries.php:228 -msgid "Senegal" -msgstr "Senegal" - -# @ woocommerce -#: classes/class-wc-countries.php:229 -msgid "Serbia" -msgstr "Serbia" - -# @ woocommerce -#: classes/class-wc-countries.php:230 -msgid "Seychelles" -msgstr "Seychelles" - -# @ woocommerce -#: classes/class-wc-countries.php:231 -msgid "Sierra Leone" -msgstr "Sierra Leone" - -# @ woocommerce -#: classes/class-wc-countries.php:232 -msgid "Singapore" -msgstr "Singapore" - -# @ woocommerce -#: classes/class-wc-countries.php:233 -msgid "Slovakia" -msgstr "Slovacia" - -# @ woocommerce -#: classes/class-wc-countries.php:234 -msgid "Slovenia" -msgstr "Slovenia" - -# @ woocommerce -#: classes/class-wc-countries.php:235 -msgid "Solomon Islands" -msgstr "Insulele Solomon" - -# @ woocommerce -#: classes/class-wc-countries.php:236 -msgid "Somalia" -msgstr "Somalia" - -# @ woocommerce -#: classes/class-wc-countries.php:237 -msgid "South Africa" -msgstr "Africa de Sud" - -# @ woocommerce -#: classes/class-wc-countries.php:238 -msgid "South Georgia/Sandwich Islands" -msgstr "Georgia de Sud / Insulele Sandwich" - -# @ woocommerce -#: classes/class-wc-countries.php:239 -msgid "South Korea" -msgstr "Coreea de Sud" - -# @ woocommerce -#: classes/class-wc-countries.php:240 -msgid "South Sudan" -msgstr "Sudanul de Sud" - -# @ woocommerce -#: classes/class-wc-countries.php:241 -msgid "Spain" -msgstr "Spania" - -# @ woocommerce -#: classes/class-wc-countries.php:242 -msgid "Sri Lanka" -msgstr "Sri Lanka" - -# @ woocommerce -#: classes/class-wc-countries.php:243 -msgid "Sudan" -msgstr "Sudan" - -# @ woocommerce -#: classes/class-wc-countries.php:244 -msgid "Suriname" -msgstr "Surinam" - -# @ woocommerce -#: classes/class-wc-countries.php:245 -msgid "Svalbard and Jan Mayen" -msgstr "Svalbard și Jan Mayen" - -# @ woocommerce -#: classes/class-wc-countries.php:246 -msgid "Swaziland" -msgstr "Swaziland" - -# @ woocommerce -#: classes/class-wc-countries.php:247 -msgid "Sweden" -msgstr "Suedia" - -# @ woocommerce -#: classes/class-wc-countries.php:248 -msgid "Switzerland" -msgstr "Elveția" - -# @ woocommerce -#: classes/class-wc-countries.php:249 -msgid "Syria" -msgstr "Syria" - -# @ woocommerce -#: classes/class-wc-countries.php:250 -msgid "Taiwan" -msgstr "Taiwan" - -# @ woocommerce -#: classes/class-wc-countries.php:251 -msgid "Tajikistan" -msgstr "Tajdikistan" - -# @ woocommerce -#: classes/class-wc-countries.php:252 -msgid "Tanzania" -msgstr "Tanzania" - -# @ woocommerce -#: classes/class-wc-countries.php:253 -msgid "Thailand" -msgstr "Thailanda" - -# @ woocommerce -#: classes/class-wc-countries.php:254 -msgid "Timor-Leste" -msgstr "Timor-Leste" - -# @ woocommerce -#: classes/class-wc-countries.php:255 -msgid "Togo" -msgstr "Togo" - -# @ woocommerce -#: classes/class-wc-countries.php:256 -msgid "Tokelau" -msgstr "Tokelau" - -# @ woocommerce -#: classes/class-wc-countries.php:257 -msgid "Tonga" -msgstr "Tonga" - -# @ woocommerce -#: classes/class-wc-countries.php:258 -msgid "Trinidad and Tobago" -msgstr "Trinidad și Tobago" - -# @ woocommerce -#: classes/class-wc-countries.php:259 -msgid "Tunisia" -msgstr "Tunisia" - -# @ woocommerce -#: classes/class-wc-countries.php:260 -msgid "Turkey" -msgstr "Turcia" - -# @ woocommerce -#: classes/class-wc-countries.php:261 -msgid "Turkmenistan" -msgstr "Turkmenistan" - -# @ woocommerce -#: classes/class-wc-countries.php:262 -msgid "Turks and Caicos Islands" -msgstr "Insulele Turk și Caicos" - -# @ woocommerce -#: classes/class-wc-countries.php:263 -msgid "Tuvalu" -msgstr "Tuvalu" - -# @ woocommerce -#: classes/class-wc-countries.php:264 -msgid "Uganda" -msgstr "Uganda" - -# @ woocommerce -#: classes/class-wc-countries.php:265 -msgid "Ukraine" -msgstr "Ukraina" - -# @ woocommerce -#: classes/class-wc-countries.php:266 -msgid "United Arab Emirates" -msgstr "Emiratele Arabe Unite" - -# @ woocommerce -#: classes/class-wc-countries.php:267 -msgid "United Kingdom" -msgstr "Marea Britanie" - -# @ woocommerce -#: classes/class-wc-countries.php:268 -msgid "United States" -msgstr "Statele Unite ale Americii" - -# @ woocommerce -#: classes/class-wc-countries.php:269 -msgid "Uruguay" -msgstr "Uruguay" - -# @ woocommerce -#: classes/class-wc-countries.php:270 -msgid "Uzbekistan" -msgstr "Uzbekistan" - -# @ woocommerce -#: classes/class-wc-countries.php:271 -msgid "Vanuatu" -msgstr "Vanuatu" - -# @ woocommerce -#: classes/class-wc-countries.php:272 -msgid "Vatican" -msgstr "Vatican" - -# @ woocommerce -#: classes/class-wc-countries.php:273 -msgid "Venezuela" -msgstr "Venezuela" - -# @ woocommerce -#: classes/class-wc-countries.php:274 -msgid "Vietnam" -msgstr "Vietnam" - -# @ woocommerce -#: classes/class-wc-countries.php:275 -msgid "Wallis and Futuna" -msgstr "Wallis și Futuna" - -# @ woocommerce -#: classes/class-wc-countries.php:276 -msgid "Western Sahara" -msgstr "Sahara de Vest" - -# @ woocommerce -#: classes/class-wc-countries.php:277 -msgid "Western Samoa" -msgstr "Samoa de Vest" - -# @ woocommerce -#: classes/class-wc-countries.php:278 -msgid "Yemen" -msgstr "Yemen" - -# @ woocommerce -#: classes/class-wc-countries.php:279 -msgid "Zambia" -msgstr "Zambia" - -# @ woocommerce -#: classes/class-wc-countries.php:280 -msgid "Zimbabwe" -msgstr "Zimbabwe" - -# @ woocommerce -#: classes/class-wc-countries.php:418 -msgid "to the" -msgstr "către (?)" - -# @ woocommerce -#: classes/class-wc-countries.php:419 -msgid "to" -msgstr "la" - -# @ woocommerce -#: classes/class-wc-countries.php:432 -msgid "the" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:444 -msgid "VAT" -msgstr "TVA" - -# @ woocommerce -#: classes/class-wc-countries.php:444 -msgid "Tax" -msgstr "Taxă" - -# @ woocommerce -#: classes/class-wc-countries.php:457 -msgid "(incl. VAT)" -msgstr "(include TVA)" - -# @ woocommerce -#: classes/class-wc-countries.php:457 -msgid "(incl. tax)" -msgstr "(include Taxe)" - -# @ woocommerce -#: classes/class-wc-countries.php:470 -msgid "(ex. VAT)" -msgstr "(exclude TVA)" - -# @ woocommerce -#: classes/class-wc-countries.php:470 -msgid "(ex. tax)" -msgstr "(exclude taxe)" - -# @ woocommerce -#: classes/class-wc-countries.php:678 -msgid "Country" -msgstr "Țară" - -# @ woocommerce -#: classes/class-wc-countries.php:683 -msgid "First Name" -msgstr "Prenume" - -# @ woocommerce -#: classes/class-wc-countries.php:688 -msgid "Last Name" -msgstr "Nume" - -# @ woocommerce -#: classes/class-wc-countries.php:694 -msgid "Company Name" -msgstr "Nume Companie" - -# @ woocommerce -#: classes/class-wc-countries.php:698 -msgid "Address" -msgstr "Adresă" - -# @ woocommerce -#: classes/class-wc-countries.php:699 -msgctxt "placeholder" -msgid "Street address" -msgstr "Stradă" - -# @ woocommerce -#: classes/class-wc-countries.php:707 -msgctxt "placeholder" -msgid "Apartment, suite, unit etc. (optional)" -msgstr "Bloc, Etaj, Numar Aparatament (dacă este cazul)" - -# @ woocommerce -#: classes/class-wc-countries.php:715 classes/class-wc-countries.php:716 -msgid "Town / City" -msgstr "Oraș" - -# @ woocommerce -#: classes/class-wc-countries.php:725 classes/class-wc-countries.php:726 -msgid "State / County" -msgstr "Stat / Județ" - -# @ woocommerce -#: classes/class-wc-countries.php:734 classes/class-wc-countries.php:735 -#: templates/cart/shipping-calculator.php:80 -msgid "Postcode / Zip" -msgstr "Cod Poștal" - -# @ woocommerce -#: classes/class-wc-countries.php:774 classes/class-wc-countries.php:784 -#: classes/class-wc-countries.php:804 classes/class-wc-countries.php:859 -#: classes/class-wc-countries.php:883 classes/class-wc-countries.php:933 -#: classes/class-wc-countries.php:957 classes/class-wc-countries.php:998 -msgid "Province" -msgstr "Provincie" - -# @ woocommerce -#: classes/class-wc-countries.php:790 -msgid "Canton" -msgstr "Canton" - -# @ woocommerce -#: classes/class-wc-countries.php:799 classes/class-wc-countries.php:939 -msgid "Municipality" -msgstr "Municipalitate" - -# @ woocommerce -#: classes/class-wc-countries.php:846 -msgid "Town / District" -msgstr "Oraș / Sector" - -# @ woocommerce -#: classes/class-wc-countries.php:849 -msgid "Region" -msgstr "Regiune" - -# @ woocommerce -#: classes/class-wc-countries.php:962 -msgid "Zip" -msgstr "Cod Poștal" - -# @ woocommerce -#: classes/class-wc-countries.php:965 -msgid "State" -msgstr "Stat" - -# @ woocommerce -#: classes/class-wc-countries.php:970 -msgid "Postcode" -msgstr "Cod poștal" - -# @ woocommerce -#: classes/class-wc-countries.php:973 -msgid "County" -msgstr "Județ" - -# @ woocommerce -#: classes/class-wc-countries.php:1074 -msgid "Email Address" -msgstr "Adresă email" - -# @ woocommerce -#: classes/class-wc-countries.php:1080 -msgid "Phone" -msgstr "Telefon" - -# @ woocommerce -#: classes/class-wc-coupon.php:421 -msgid "Coupon code applied successfully." -msgstr "Codul Promoțional a fost aplicat cu succes." - -# @ woocommerce -#: classes/class-wc-coupon.php:442 -msgid "Coupon is not valid." -msgstr "Codul Promoțional nu este valid." - -# @ woocommerce -#: classes/class-wc-coupon.php:445 classes/class-wc-coupon.php:495 -msgid "Coupon does not exist!" -msgstr "Codul Promoțional nu există!" - -# @ woocommerce -#: classes/class-wc-coupon.php:448 -msgid "" -"Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from " -"your order." -msgstr "" -"Ne pare rău, cuponul \"%s\" este invalid - a fost eliminat din comanda dvs." - -# @ woocommerce -#: classes/class-wc-coupon.php:451 -msgid "" -"Sorry, it seems the coupon \"%s\" is not yours - it has now been removed " -"from your order." -msgstr "" -"Ne pare rău, cuponul \"%s\" nu vă aparține - a fost eliminat din comanda dvs." - -# @ woocommerce -#: classes/class-wc-coupon.php:454 -msgid "Coupon code already applied!" -msgstr "Codul Promoțional a fost deja aplicat!" - -# @ woocommerce -#: classes/class-wc-coupon.php:457 -msgid "" -"Sorry, coupon \"%s\" has already been applied and cannot be used in " -"conjunction with other coupons." -msgstr "" -"Ne pare rău, dar cuponul \"%s\" a fost deja folosit și nu poate fi folosit " -"împreună cu alte cupoane" - -# @ woocommerce -#: classes/class-wc-coupon.php:460 -msgid "Coupon usage limit has been reached." -msgstr "Limita de utilizare a Codului Promoțional a fost atinsă." - -# @ woocommerce -#: classes/class-wc-coupon.php:463 -msgid "This coupon has expired." -msgstr "Acest cupon a expirat." - -# @ woocommerce -#: classes/class-wc-coupon.php:466 -msgid "The minimum spend for this coupon is %s." -msgstr "Valoarea minimă a facturii pentru a utiliza acest cupon este de %s." - -# @ woocommerce -#: classes/class-wc-coupon.php:469 -msgid "Sorry, this coupon is not applicable to your cart contents." -msgstr "" -"Ne pare rău dar acest cupon nu se aplică pentru produsele aflate în Coș în " -"momentul de față." - -# @ woocommerce -#: classes/class-wc-coupon.php:472 -msgid "Sorry, this coupon is not valid for sale items." -msgstr "Ne pare rău, dar acest cupon nu este valabil pentru produsele reduse." - -# @ woocommerce -#: classes/class-wc-coupon.php:498 -msgid "Please enter a coupon code." -msgstr "Vă rugăm introduceți un cod de promoție." - -# @ woocommerce -#: classes/class-wc-customer.php:628 classes/class-wc-customer.php:638 -msgid "File %d" -msgstr "Fișier %d" - -# @ woocommerce -#: classes/class-wc-emails.php:246 -msgid "Note" -msgstr "Notiță" - -# @ woocommerce -#: classes/class-wc-emails.php:281 -msgid "Product low in stock" -msgstr "Produs cu stoc redus" - -# @ woocommerce -#: classes/class-wc-emails.php:286 classes/class-wc-emails.php:318 -#: classes/class-wc-emails.php:362 -msgid "Variation #%s of %s" -msgstr "Variația nr. %s din %s" - -# @ woocommerce -#: classes/class-wc-emails.php:288 classes/class-wc-emails.php:320 -#: classes/class-wc-emails.php:364 -msgid "Product #%s - %s" -msgstr "Produs #%s - %s" - -# @ woocommerce -#: classes/class-wc-emails.php:290 -msgid "is low in stock." -msgstr "are stoc redus." - -# @ woocommerce -#: classes/class-wc-emails.php:313 -msgid "Product out of stock" -msgstr "Produsul nu mai este pe stoc" - -# @ woocommerce -#: classes/class-wc-emails.php:322 -msgid "is out of stock." -msgstr "nu mai este pe stoc." - -# @ woocommerce -#: classes/class-wc-emails.php:357 -msgid "Product Backorder" -msgstr "Produs pe Lista de Așteptare" - -# @ woocommerce -#: classes/class-wc-emails.php:366 -msgid "%s units of %s have been backordered in order #%s." -msgstr "" -"%s unități din %s au fost comandate pe Lista de Așteptare, referință comandă " -"#%s." - -# @ woocommerce -#: classes/class-wc-order.php:283 -msgctxt "hash before order number" -msgid "#" -msgstr "#" - -# @ woocommerce -#: classes/class-wc-order.php:886 -msgid " %svia %s" -msgstr " %s via %s" - -# @ woocommerce -#: classes/class-wc-order.php:950 -msgid "Cart Subtotal:" -msgstr "Subtotal Coș" - -# @ woocommerce -#: classes/class-wc-order.php:956 -msgid "Cart Discount:" -msgstr "Reducere Coș" - -# @ woocommerce -#: classes/class-wc-order.php:962 -msgid "Shipping:" -msgstr "Transport:" - -# @ woocommerce -#: classes/class-wc-order.php:998 -msgid "Order Discount:" -msgstr "Reducere Comandă" - -# @ woocommerce -#: classes/class-wc-order.php:1003 -msgid "Order Total:" -msgstr "Total Comandă:" - -# @ woocommerce -#: classes/class-wc-order.php:1017 templates/cart/totals.php:105 -#: templates/checkout/review-order.php:104 -msgid "(Includes %s)" -msgstr "(Include %s)" - -# @ woocommerce -#: classes/class-wc-order.php:1168 classes/class-wc-order.php:1170 -#: classes/class-wc-order.php:1173 -msgid "WooCommerce" -msgstr "WooCommerce" - -# @ woocommerce -#: classes/class-wc-order.php:1220 -msgid "Order status changed from %s to %s." -msgstr "Status comandă modificat de la %s la %s." - -# @ woocommerce -#: classes/class-wc-order.php:1452 woocommerce-ajax.php:1089 -#: woocommerce-ajax.php:1090 -msgid "Item #%s stock reduced from %s to %s." -msgstr "Stocul articolului #%s a fost redus de la %s la %s." - -# @ woocommerce -#: classes/class-wc-order.php:1464 -msgid "Order item stock reduced successfully." -msgstr "Stocul produsului comandat a fost redus cu succes." - -# @ woocommerce -#: classes/class-wc-product-external.php:56 -msgid "Buy product" -msgstr "Cumpără produsul" - -# @ woocommerce -#: classes/class-wc-shortcodes.php:571 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:274 -#: templates/loop/add-to-cart.php:46 -#: templates/single-product/add-to-cart/grouped.php:45 -#: templates/single-product/add-to-cart/grouped.php:77 -#: templates/single-product/add-to-cart/simple.php:42 -#: templates/single-product/add-to-cart/variable.php:83 -msgid "Add to cart" -msgstr "Adaugă în Coș" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:24 -msgid "Completed order" -msgstr "Comandă finalizată" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:25 -msgid "" -"Order complete emails are sent to the customer when the order is marked " -"complete and usual indicates that the order has been shipped." -msgstr "" -"E-mailuri pentru \"Comandă completă\" sunt trimise către client atunci când " -"comanda este marcată ca completă și de obicei înseamnă că articolele din " -"comandă au fost expediate." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:27 -msgid "Your order is complete" -msgstr "Comanda dvs. a fost completă." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:28 -msgid "Your {blogname} order from {order_date} is complete" -msgstr "{blogname} - Comanda dvs. din {order_date} este completă" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:37 -msgid "Your order is complete - download your files" -msgstr "Comanda dvs. este completă - descărcați fișierele dvs." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:38 -msgid "" -"Your {blogname} order from {order_date} is complete - download your files" -msgstr "" -"Your {blogname} order from {order_date} is complete - descărcați fișierele " -"dvs." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:141 -#: classes/emails/class-wc-email-new-order.php:128 -msgid "Subject" -msgstr "Subiect" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:148 -#: classes/emails/class-wc-email-new-order.php:135 -msgid "Email Heading" -msgstr "Antet Email" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:155 -msgid "Subject (downloadable)" -msgstr "Subiect (Descărcabil)" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:162 -msgid "Email Heading (downloadable)" -msgstr "Antet Email (Produs Descărcabil)" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:27 -msgid "Customer invoice" -msgstr "Factură Client" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:28 -msgid "" -"Customer invoice emails can be sent to the user containing order info and " -"payment links." -msgstr "" -"Trimite factura clientului via email. Acest email va include detaliile " -"comenzii și un link către pagina de plată a facturii." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:33 -msgid "Invoice for order {order_number} from {order_date}" -msgstr "Factura pentru comanda {order_number} din {order_date}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:34 -msgid "Invoice for order {order_number}" -msgstr "Factură pentru Comanda {order_number}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:36 -msgid "Your {blogname} order from {order_date}" -msgstr "{blogname} - Comanda din {order_date}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:37 -msgid "Order {order_number} details" -msgstr "Detalii Comandă {order_number}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:158 -msgid "Email subject (paid)" -msgstr "Subiect Email (plătit)" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:165 -msgid "Email heading (paid)" -msgstr "Antet Email (plătit)" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:31 -msgid "New account" -msgstr "Cont Nou" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:32 -msgid "" -"Customer new account emails are sent when a customer signs up via the " -"checkout or My Account page." -msgstr "" -"Emailurile pentru Client Nou - sunt trimise atunci când un client se " -"înregistrează în Pagina Finalizare Comandă sau Pagina Contul Meu" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:37 -msgid "Your account on {blogname}" -msgstr "Contul tău pe {blogname}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:38 -msgid "Welcome to {blogname}" -msgstr "Bine ai venit la {blogname}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:29 -msgid "Customer note" -msgstr "Notiță Client" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:30 -msgid "Customer note emails are sent when you add a note to an order." -msgstr "" -"Emailurile pentru Notițe Client - sunt trimise atunci când adaugi o notită " -"la o comandă" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:35 -msgid "Note added to your {blogname} order from {order_date}" -msgstr "" -"{blogname} - A fost adăugată o nouă notiță la comanda dvs. din {order_date}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:36 -msgid "A note has been added to your order" -msgstr "A fost adăugată o notiță comenzii tale" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:24 -msgid "Processing order" -msgstr "Comanda în curs de procesare" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:25 -msgid "" -"This is an order notification sent to the customer after payment containing " -"order details." -msgstr "" -"Aceasta este o notificare care este trimisă la client după efectuarea " -"plății. Această notificare conține detaliile comenzii." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:27 -msgid "Thank you for your order" -msgstr "Mulțumim pentru comanda dvs." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:28 -msgid "Your {blogname} order receipt from {order_date}" -msgstr "{blogname} - Comandă primită în {order_date}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:36 -msgid "Reset password" -msgstr "Resetează parola" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:37 -msgid "" -"Customer reset password emails are sent when a customer resets their " -"password." -msgstr "" -"Emailurile pentru Resetare Parole sunt trimise atunci când un client își " -"resetează parola." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:42 -msgid "Password Reset for {blogname}" -msgstr "Resetează Parola pentru {blogname}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:43 -msgid "Password Reset Instructions" -msgstr "Instrucțiuni pentru Resetarea Parolei" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:24 -msgid "New order" -msgstr "Comandă Nouă" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:25 -msgid "New order emails are sent when an order is received/paid by a customer." -msgstr "" -"Emailurile pentru Comandă Nouă sunt trimise atunci când o comandă este " -"primită de la client / plătită de către client." - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:27 -msgid "New customer order" -msgstr "Comandă client nou" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:28 -msgid "[{blogname}] New customer order ({order_number}) - {order_date}" -msgstr "[{blogname}] - Comandă nouă ({order_number}) - {order_date}" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:121 -msgid "Recipient(s)" -msgstr "Destinatar(i)" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:123 -msgid "" -"Enter recipients (comma separated) for this email. Defaults to %s." -msgstr "" -"Introduceți desitanatarii (separați prin virgulă). Implicit către %s." - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:130 -msgid "" -"This controls the email subject line. Leave blank to use the default " -"subject: %s." -msgstr "" -"Această setare controlează Subiectul Emailului.Lasă cîmpul gol pentru a " -"utiliza forma setată implicit: %s." - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:137 -msgid "" -"This controls the main heading contained within the email notification. " -"Leave blank to use the default heading: %s." -msgstr "" -"Aceasta controlează Antetul principal conținut în notificările prin email. " -"Lăsaţi liber pentru a utiliza Antetul implicit: %s." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:28 -msgid "Bacs" -msgstr "Transfer Bancar" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:65 -msgid "Enable Bank Transfer" -msgstr "Activează opțiunea de Transfer Bancar" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:69 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:63 -#: classes/gateways/cod/class-wc-gateway-cod.php:87 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:135 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:126 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:104 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:84 -msgid "Title" -msgstr "Titlu" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:71 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:65 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:137 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:128 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:83 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:58 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:106 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:86 -msgid "This controls the title which the user sees during checkout." -msgstr "" -"Această opțiune controlează titlul pe care utilizatorul îl vede în timpul " -"procesării comenzii." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:72 -msgid "Direct Bank Transfer" -msgstr "Transfer Bancar direct" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:76 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:70 -msgid "Customer Message" -msgstr "Mesaj Client" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:78 -msgid "" -"Give the customer instructions for paying via BACS, and let them know that " -"their order won't be shipping until the money is received." -msgstr "" -"Oferă clienților instrucțiuni pentru operarea plății prin Transfer Bancar. " -"Comanda lor nu va fi trimisă pentru livrare până în momentul confirmării " -"plății." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:79 -msgid "" -"Make your payment directly into our bank account. Please use your Order ID " -"as the payment reference. Your order wont be shipped until the funds have " -"cleared in our account." -msgstr "" -"Plătește direct in contul nostru bancar. Vă rugăm să utilizați Codul de " -"Identificare a comenzii ca și referință de plată. Comanda dvs. nu va fi " -"expediată decât în momentul în care factura a fost achitată în contul nostru." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:82 -msgid "Account Details" -msgstr "Detalii Cont" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:84 -msgid "Optionally enter your bank details below for customers to pay into." -msgstr "" -"Opțional, introduceți detaliile bancare mai jos pentru a activa opțiunea " -"Transfer Bancar" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:88 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:163 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:203 -msgid "Account Name" -msgstr "Titular Cont" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:94 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:164 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:204 -msgid "Account Number" -msgstr "Număr Cont" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:100 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:165 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:205 -msgid "Sort Code" -msgstr "Cod Sortare" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:106 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:166 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:206 -msgid "Bank Name" -msgstr "Bancă" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:112 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:167 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:207 -msgid "IBAN" -msgstr "IBAN" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:117 -msgid "BIC (formerly Swift)" -msgstr "BIC (inițial Cod Swift)" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:136 -msgid "BACS Payment" -msgstr "Plată prin Transfer Bancar" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:137 -msgid "" -"Allows payments by BACS (Bank Account Clearing System), more commonly known " -"as direct bank/wire transfer." -msgstr "" -"Permite efectuarea de plăți prin BACS (Bank Account Clearing System), mai " -"bine cunoscut sub numele de Transfer Bancar." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:158 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:200 -msgid "Our Details" -msgstr "Detaliile noastre" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:168 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:208 -msgid "BIC" -msgstr "BIC" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:234 -msgid "Awaiting BACS payment" -msgstr "Așteaptă confirmare plată Transfer Bancar" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:28 -msgid "Cheque" -msgstr "CEC" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:59 -msgid "Enable Cheque Payment" -msgstr "Acceptă plăți cu cecuri" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:66 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:90 -msgid "Cheque Payment" -msgstr "Cec de plată" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:72 -msgid "" -"Let the customer know the payee and where they should be sending the cheque " -"to and that their order won't be shipping until you receive it." -msgstr "" -"Oferă-i clientului detaliile necesare pentru a completa și trimite cec-ul " -"pentru comanda sa, cu explicația: Comanda va fi expediată în momentul în " -"care cec-ul este recepționat. (?)" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:73 -msgid "" -"Please send your cheque to Store Name, Store Street, Store Town, Store " -"State / County, Store Postcode." -msgstr "" -"Vă rugăm să trimiteți cecu-ul dvs. către Nume Magazin, strada Magazin, oraș " -"Magazin, județ Magazin, cod poștal Magazin" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:91 -msgid "" -"Allows cheque payments. Why would you take cheques in this day and age? Well " -"you probably wouldn't but it does allow you to make test purchases for " -"testing order emails and the 'success' pages etc." -msgstr "" -"Permite efectuarea de plăți prin cec-uri. De ce ați accepta plata prin cec-" -"uri în ziua de astăzi?! Probabil nu ai accepta, însă această opțiune îți " -"permite să faci teste de cumpărare a unui produs și să verifici " -"redirecționările către restul paginilor după plasarea unei comenzi." - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:147 -msgid "Awaiting cheque payment" -msgstr "Plata prin cec este așteptată" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:27 -#: classes/gateways/cod/class-wc-gateway-cod.php:54 -#: classes/gateways/cod/class-wc-gateway-cod.php:90 -msgid "Cash on Delivery" -msgstr "Plata la Destinație » Ramburs" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:55 -msgid "Have your customers pay with cash (or by other means) upon delivery." -msgstr "Clienții plătesc numerar, la livrare." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:80 -msgid "Enable COD" -msgstr "Plata Ramburs" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:81 -msgid "Enable Cash on Delivery" -msgstr "Activează Plata Ramburs?" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:89 -msgid "Payment method title that the customer will see on your website." -msgstr "Titlul metodei de plată pe care clientul o vede pe site." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:94 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:142 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:133 -#: woocommerce-template.php:751 -msgid "Description" -msgstr "Descriere" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:96 -msgid "Payment method description that the customer will see on your website." -msgstr "Descrierea metodei de plată pe care clientul o vede pe site." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:97 -#: classes/gateways/cod/class-wc-gateway-cod.php:103 -msgid "Pay with cash upon delivery." -msgstr "Platește cu numerar la Livare." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:100 -msgid "Instructions" -msgstr "Instrucțiuni" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:102 -msgid "Instructions that will be added to the thank you page." -msgstr "Instrucțiunile vor fi adăugate pe pagina MULŢUMIM." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:106 -msgid "Enable for shipping methods" -msgstr "Activează pentru Metodele de Livrare" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:111 -msgid "" -"If COD is only available for certain methods, set it up here. Leave blank to " -"enable for all methods." -msgstr "" -"Dacă această metodă (Plată Ramburs) este disponilbilă numai pentru anumite " -"metode de livrare, introduceţi-le aici. Lăsaţi gol pentru a activa pentru " -"toate metodele." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:176 -msgid "Payment to be made upon delivery." -msgstr "Plata va fi efectuată la livrarea comenzii." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:31 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:160 -msgid "Mijireh Checkout" -msgstr "Procesatorul de plăți Mijireh" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:107 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:285 -msgid "Mijireh error:" -msgstr "Eroare Mijireh:" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:124 -msgid "Enable Mijireh Checkout" -msgstr "Activează procesarea plăților prin Mijireh" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:128 -msgid "Access Key" -msgstr "Cheie de Acces" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:130 -msgid "The Mijireh access key for your store." -msgstr "" -"Cheia de acces a procesatorului de plăți online Mijireh, validă pentru " -"magazinul tău." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:138 -msgid "Credit Card" -msgstr "Carte de Credit" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:144 -msgid "Pay securely with your credit card." -msgstr "Plătește în siguranță folosind cardul tău de credit." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:145 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:135 -msgid "This controls the description which the user sees during checkout." -msgstr "" -"Aceasta opțiune controlează ceea ce utilizator va vedea în timpul plasării " -"comenzii." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:164 -msgid "Get started with Mijireh Checkout" -msgstr "Începe colaborarea cu procesatorul de plăți Mijireh" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:165 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site. Mijireh supports a wide variety of payment gateways: Stripe, " -"Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and more." -msgstr "" -"oferă o metodă sigură și atestată de a colecta și transmite date de credit " -"card către portalul de plată în timp ce tu controlezi design-ul site-ului. " -"Mijireh suportă o varietate largă de gateway-uri de plată: Stripe, Authorize." -"net, PayPal, eWay, SagePay, Braintree, PayLeap precum și alții" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:167 -msgid "Join for free" -msgstr "Înscrie-te Gratuit!" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:167 -msgid "Learn more about WooCommerce and Mijireh" -msgstr "" -"Află mai multe detalii despre WooCommerce și Procesatorul de plăți online " -"Mijireh" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:171 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site." -msgstr "" -"oferă o metodă sigură și atestată de a colecta și transmite date de credit " -"card către portalul de plată în timp ce tu controlezi design-ul site-ului." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:34 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:129 -msgid "PayPal" -msgstr "PayPal" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:91 -msgid "PayPal standard" -msgstr "PayPal standard" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:92 -msgid "" -"PayPal standard works by sending the user to PayPal to enter their payment " -"information." -msgstr "" -"Modulul PayPal Standard redirecționează clientul către site-" -"ul PayPal pentru a introduce informațiile necesare efectuării plății." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:104 -msgid "Gateway Disabled" -msgstr "Portal Dezactivat" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:104 -msgid "PayPal does not support your store currency." -msgstr "PayPal nu suportă moneda setată implicit pentru magazinul tău." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:122 -msgid "Enable PayPal standard" -msgstr "Activează PayPal standard" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:136 -msgid "" -"Pay via PayPal; you can pay with your credit card if you don't have a PayPal " -"account" -msgstr "" -"Plătește prin PayPal. Poți plăti cu cardul de credit chiar dacă nu ai cont " -"de PayPal" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:139 -msgid "PayPal Email" -msgstr "Adresa contului de PayPal" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:141 -msgid "" -"Please enter your PayPal email address; this is needed in order to take " -"payment." -msgstr "" -"Adresa de email cu care a fost creat contul de PayPal; Această adresă de " -"email este necesară pentru ca plățile să fie procesate direct în contul tău " -"de PayPal." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:147 -msgid "Receiver Email" -msgstr "Adresa la care se vor primi emailurile" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:149 -msgid "" -"If this differs from the email entered above, input your main receiver email " -"for your PayPal account. This is used to validate IPN requests." -msgstr "" -"Dacă aceasta diferă de adresa de email introdusă mai sus, introduce-ți " -"adresa email principală a contului dvs. de PayPal. Aceasta este folosită " -"pentru a validat request-urile IPN." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:155 -msgid "Invoice Prefix" -msgstr "Prefix Factură" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:157 -msgid "" -"Please enter a prefix for your invoice numbers. If you use your PayPal " -"account for multiple stores ensure this prefix is unique as PayPal will not " -"allow orders with the same invoice number." -msgstr "" -"Vă rugăm să introduceți un prefix pentru numerele de facturi. Dacă utilizați " -"contul dvs. de PayPal pentru mai multe magazine, asigurați-vă că acest " -"prefix este unic, deoarece PayPal nu va permite comenzi cu același număr al " -"facturii." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:162 -msgid "Submission method" -msgstr "Metodă de trimitere a informațiilor" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:164 -msgid "Use form submission method." -msgstr "Utilizează metoda de execuție prin formular" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:165 -msgid "" -"Enable this to post order data to PayPal via a form instead of using a " -"redirect/querystring." -msgstr "" -"Activează această opțiune pentru a trimite datele către PayPal prin " -"intermediul unui formular în loc de a folosi o metodă de redirecționare sau " -"a unui șir de interogare." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:169 -msgid "Page Style" -msgstr "Stil pagină" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:171 -msgid "" -"Optionally enter the name of the page style you wish to use. These are " -"defined within your PayPal account." -msgstr "" -"Opțional, introduceți numele paginii pe care doriți să o folosiți ca șablon. " -"Aceste tipuri de pagină sunt definite în contul dvs. PayPal." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:174 -msgid "Optional" -msgstr "Opțional" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:177 -msgid "Shipping options" -msgstr "Opțiuni Livrare" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:182 -msgid "Shipping details" -msgstr "Detalii Livrare" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:184 -msgid "Send shipping details to PayPal instead of billing." -msgstr "În locul informațiilor de facturare, trimite informațiile de livrare." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:186 -msgid "" -"PayPal allows us to send 1 address. If you are using PayPal for shipping " -"labels you may prefer to send the shipping address rather than billing." -msgstr "" -"PayPal ne permite să trimitem către serverele o singură adresă. Dacă " -"folosești PayPal pentru a tipări Adresele de Livrare, ar fi indicat să " -"trimiți Adresa de Livrare în locul Adresei de Facturare." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:190 -msgid "Address override" -msgstr "Suprascrie Adresa" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:192 -msgid "" -"Enable \"address_override\" to prevent address information from being " -"changed." -msgstr "" -"Activează \"suprascriere_adresa\" pentru a preveni modificarea informației." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:193 -msgid "" -"PayPal verifies addresses therefore this setting can cause errors (we " -"recommend keeping it disabled)." -msgstr "" -"PayPal verifică adresele, de aceea aceasă setare poate cauza erori, " -"recomandăm să o păstrați dezactivată." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:197 -msgid "Gateway Testing" -msgstr "Testare Gateway" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:202 -msgid "PayPal sandbox" -msgstr "Modul Testare PayPal" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:204 -msgid "Enable PayPal sandbox" -msgstr "Activează Modul de Testare pentru PayPal" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:206 -msgid "" -"PayPal sandbox can be used to test payments. Sign up for a developer account " -"here." -msgstr "" -"Modul de Testare PayPal poate fi utilizat pentru verificarea stării de " -"funcționare a magazinului. Pentru a putea utiliza acest mod trebuie să vă " -"înregistrați creați un cont dezvoltator de aici." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:209 -msgid "Debug Log" -msgstr "Jurnal Depanare" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:211 -msgid "Enable logging" -msgstr "Activează înregistrarea informațiilor" - -# @ default -#: classes/gateways/paypal/class-wc-gateway-paypal.php:213 -msgid "" -"Log PayPal events, such as IPN requests, inside woocommerce/logs/" -"paypal-%s.txt" -msgstr "" -"Înregistrare conexiunile către serverele PayPal, cum ar fi solicitările IPN, " -"în fișierul woocommerce/logs/paypal-%s.txt" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:322 -msgid "Order %s" -msgstr "Comanda %s" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:332 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:386 -msgid "Shipping via" -msgstr "Livrare prin" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:427 -msgid "" -"Thank you for your order. We are now redirecting you to PayPal to make " -"payment." -msgstr "" -"Vă mulțumim pentru comanda dvs. Vă vom redirecționa către site-ul PayPal " -"pentru a efectua plata comenzii." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:448 -msgid "Pay via PayPal" -msgstr "Plătește prin PayPal" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:448 -msgid "Cancel order & restore cart" -msgstr "Anulează comand & restaurează Coșul" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:502 -msgid "" -"Thank you for your order, please click the button below to pay with PayPal." -msgstr "" -"Vă mulțumim pentru comanda dvs. Vă rugăm apăsați butonul de mai jos pentru a " -"achita comanda prin PayPal." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:644 -msgid "Validation error: PayPal amounts do not match (gross %s)." -msgstr "Eroare în timpul Validării: Sumele PayPal nu se potrivesc (brut %s )." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:655 -msgid "" -"Validation error: PayPal IPN response from a different email address (%s)." -msgstr "" -"Eroare în timpul Validării: Răspunul PayPal IPN este de la o adresă de email " -"diferită (%s)." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:673 -msgid "IPN payment completed" -msgstr "Plată IPN finalizată" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:685 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:693 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:711 -msgid "Payment %s via IPN." -msgstr "Plata %s prin IPN" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:698 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:716 -msgid "Order refunded/reversed" -msgstr "Comandă rambursată / inversată" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:699 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:717 -msgid "Order %s has been marked as refunded - PayPal reason code: %s" -msgstr "" -"Comanda %s a fost marcată ca rambursată - Codul motivului invocat de PayPal: " -"%s" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:702 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:720 -msgid "Payment for order %s refunded/reversed" -msgstr "Plata pentru comanda %s a fost rambursată / inversată" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:26 -msgid "Google Analytics" -msgstr "Google Analytics" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:27 -msgid "" -"Google Analytics is a free service offered by Google that generates detailed " -"statistics about the visitors to a website." -msgstr "" -"Google Analytics este un serviciu gratuit, oferit de Google, ce furnizează " -"statistici detaliate despre vizitatorii unui site." - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:63 -msgid "Google Analytics ID" -msgstr "Cod Google Analytics" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:64 -msgid "" -"Log into your google analytics account to find your ID. e.g. UA-XXXXX-" -"X" -msgstr "" -" Codul de forma: UA-XXXXX-X, îl găsiți în contul dvs. de " -"pe http://www.google.com/analytics" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:69 -msgid "Set Domain Name" -msgstr "Setează Numele Domeniului" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:70 -msgid "" -"(Optional) Sets the _setDomainName variable. See " -"here for more information." -msgstr "" -"(Opțional) Setează variabila _setDomainName . " -"Vezi aici pentru mai multe informații ." - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:75 -msgid "Tracking code" -msgstr "Cod de urmărire" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:76 -msgid "" -"Add tracking code to your site's footer. You don't need to enable this if " -"using a 3rd party analytics plugin." -msgstr "" -"Inserați codul de urmărire a vizitatorilor în subsolul paginii. Această " -"opțiune nu trebuie activată dacă se folosește un cod furnizat de altă " -"companie." - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:82 -msgid "Add eCommerce tracking code to the thankyou page" -msgstr "Inserați codul de urmărire a vizitatorilor la pagina de Thank You" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:88 -msgid "Add event tracking code for add to cart actions" -msgstr "" -"Adaugă cod de urmărire pentru acțiunile de adăugare a produselor în Coș." - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:120 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:180 -#: woocommerce-ajax.php:1652 -msgid "Guest" -msgstr "Musafir" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:218 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:275 -#: templates/single-product/meta.php:19 -msgid "SKU:" -msgstr "Cod Produs:" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:273 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:293 -#: woocommerce.php:982 -msgid "Products" -msgstr "Produse" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:294 -msgid "Add to Cart" -msgstr "Adaugă în Coș" - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:26 -msgid "ShareDaddy" -msgstr "ShareDaddy" - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:27 -msgid "ShareDaddy is a sharing plugin bundled with JetPack." -msgstr "ShareDaddy este un plugin de partajare ce vine la pachet cu JetPack" - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:51 -msgid "Output ShareDaddy button?" -msgstr "Afișează butonul ShareDaddy?" - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:52 -msgid "Enable this option to show the ShareDaddy button on the product page." -msgstr "" -"Activează această opțiune pentru a afișa butonul ShareDaddy pe pagina de " -"produs." - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:29 -msgid "ShareThis" -msgstr "ShareThis" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:30 -msgid "" -"ShareThis offers a sharing widget which will allow customers to share links " -"to products with their friends." -msgstr "" -"ShareThis oferă un widget de partajare ce va permite clienților dvs. să " -"distribuie link-uri cu produsele magazinului către prietenii lor." - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:63 -msgid "ShareThis Publisher ID" -msgstr "ID ShareThis" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:64 -msgid "" -"Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons on " -"product pages." -msgstr "" -"  Introdu %1$sCodul tău de distribuitor ShareThis%2$s pentru a adăuga " -"butoanele de partajere pe paginile de produs." - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:69 -msgid "ShareThis Code" -msgstr "Cod ShareThis" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:70 -msgid "You can tweak the ShareThis code by editing this option." -msgstr "Din casete de mai sus poți modifica codul ShareThis." - -# @ woocommerce -# @ default -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:22 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:329 -msgid "ShareYourCart" -msgstr "ShareYourCart" - -# @ woocommerce -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:23 -msgid "" -"Increase your social media exposure by 10 percent! ShareYourCart helps you " -"get more customers by motivating satisfied customers to talk with their " -"friends about your products. For help with ShareYourCart view the documentation." -msgstr "" -"Măriți-vă expunerea socială la mass-media cu 10 la suta! ShareYourCart vă " -"ajută să obțineți mai mulți clienți prin motivarea de clienti multumiti " -"pentru a vorbi cu prietenii lor despre produsele tale. Pentru ajutor cu " -"ShareYourCart vizualizați documentatia." - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:328 -msgid "Share your cart settings" -msgstr "Setări \"Share your cart\"" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:342 -msgid "Button" -msgstr "Buton" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:343 -msgid "Customize Button" -msgstr "Particularizează Buton" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:351 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:352 -msgid "Documentation" -msgstr "Documentație" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:33 -msgid "Setup your ShareYourCart account" -msgstr "Configurare cont ShareYourCart" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Create an account" -msgstr "Crează Cont" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Can't access your account?" -msgstr "Nu îți poți accesa contul?" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:100 -msgid "Configure" -msgstr "Configurează" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:110 -#: classes/integrations/shareyourcart/views/button-settings-page.php:120 -msgid "Save changes" -msgstr "Salvează modificări" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/button-settings-page.php:8 -#: classes/integrations/shareyourcart/views/button-settings-page.php:11 -msgid "Button style" -msgstr "Stil buton" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:25 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:85 -msgid "Flat Rate" -msgstr "Cost Fix" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:27 -msgid "Flat rates let you define a standard rate per item, or per order." -msgstr "" -"Cost Fix îți permite să definești o rată standard pentru articol sau comandă." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:78 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:52 -msgid "Enable this shipping method" -msgstr "Activează această Metodă de Livrare" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:82 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:81 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:56 -msgid "Method Title" -msgstr "Titlu Metodă" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:89 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:63 -msgid "Availability" -msgstr "Disponibilitate" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:93 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:148 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:104 -msgid "All allowed countries" -msgstr "Toate țările permise" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:95 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:99 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:98 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:149 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:153 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:105 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:109 -msgid "Specific Countries" -msgstr "Anumite țări" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:107 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:81 -msgid "Tax Status" -msgstr "Status Taxe" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:111 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:85 -msgid "Taxable" -msgstr "Taxabil" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:112 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:86 -msgid "None" -msgstr "Nici unul" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:116 -msgid "Cost per order" -msgstr "Cost per comandă" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:122 -msgid "" -"Enter a cost (excluding tax) per order, e.g. 5.00. Leave blank to disable." -msgstr "" -"Introdu un cost per comandă, de ex. 5,00. Lasă câmpul gol pentru a dezactiva " -"această opțiune." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:128 -msgid "Additional Rates" -msgstr "Taxe Adiționale" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:130 -msgid "" -"Optional extra shipping options with additional costs (one per line): Option " -"Name | Additional Cost | Per Cost Type (order, class, or item) Example: " -"Priority Mail | 6.95 | order." -msgstr "" -"Opțiuni adiționale pentru Livrare, cu costuri adiționale (una per linie). " -"Ex.: Nume Opțiune|Cost|Per Comandă (Da sau Nu). Ex.: " -"Poșta Română|6,95|da. (?)" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:133 -msgid "Option Name | Additional Cost | Per Cost Type (order, class, or item)" -msgstr "" -"Numele opțiunii | Cost suplimentar | Tip Cost Per (comandă, clasă de " -"expediție sau element)" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:136 -msgid "Additional Costs" -msgstr "Costuri Adiționale" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:138 -msgid "" -"Additional costs can be added below - these will all be added to the per-" -"order cost above." -msgstr "" -"Costurile suplimentare pot fi adăugate mai jos - acestea vor fi adăugate la " -"costul per-comanda de mai sus." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:141 -msgid "Costs Added..." -msgstr "Costuri Adăugate..." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:145 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:94 -msgid "Per Order - charge shipping for the entire order as a whole" -msgstr "Per Comandă - charge shipping for the entire order as a whole" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:146 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:95 -msgid "Per Item - charge shipping for each item individually" -msgstr "Per Articol - charge shipping for each item individually" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:147 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:96 -msgid "Per Class - charge shipping for each shipping class in an order" -msgstr "Per Clasă - charge shipping for each shipping class in an order" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:154 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:120 -msgid "Minimum Handling Fee" -msgstr "Comision minim de prelucrare a comenzii" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:160 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:126 -msgid "" -"Enter a minimum fee amount. Fee's less than this will be increased. Leave " -"blank to disable." -msgstr "" -"Introdu un comision minim. Comisioanele mai mici decât acesta vor fi " -"crescute automat. Lasă câmpul gol pentru a dezactiva opțiunea." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:479 -msgid "Costs" -msgstr "Costuri" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:485 -#: woocommerce.php:891 -msgid "Shipping Class" -msgstr "Clasă de Expediere" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:486 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:100 -msgid "Cost" -msgstr "Cost" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:486 -msgid "Cost, excluding tax." -msgstr "Cost, fără taxe. " - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:487 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:112 -msgid "Handling Fee" -msgstr "Comision de prelucrare a comenzii" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:487 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -msgstr "" -"Comision fără taxe. Introdu o sumă ( ex.: 2,25) sau un procent (ex.: 5%)." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:492 -msgid "+ Add Cost" -msgstr "+ Adaugă Cost" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:492 -msgid "Delete selected costs" -msgstr "Șterge costurile selectate" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:498 -msgid "Any class" -msgstr "Orice Clasă" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:499 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:500 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:110 -#: templates/order/order-details.php:119 templates/order/order-details.php:134 -msgid "N/A" -msgstr "N / A" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:518 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:548 -msgid "Select a class…" -msgstr "Selectați o clasă…" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:523 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:524 -msgid "0.00" -msgstr "0,00" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:562 -msgid "Delete the selected rates?" -msgstr "Șterge ratele selectate?" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:25 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:145 -msgid "Free Shipping" -msgstr "Livrare Gratuită" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:77 -msgid "Enable Free Shipping" -msgstr "Activează Livrare Gratuită" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:88 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:143 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:99 -msgid "Method availability" -msgstr "Disponibilitate metodă" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:106 -msgid "Free Shipping Requires..." -msgstr "Livrare Gratuită Necesită ..." - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:111 -msgid "A valid free shipping coupon" -msgstr "Cupon Valid pentru Livrare Gratuită" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:112 -msgid "A minimum order amount (defined below)" -msgstr "O Valoare minimă a Comenzii (definită mai jos)" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:113 -msgid "A minimum order amount OR a coupon" -msgstr "O Valoare minimă a Comenzii (definită mai jos) SAU cupon" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:114 -msgid "A minimum order amount AND a coupon" -msgstr "O Valoare minimă a Comenzii (definită mai jos) ȘI cupon" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:118 -msgid "Minimum Order Amount" -msgstr "Comandă minimă" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:124 -msgid "" -"Users will need to spend this amount to get free shipping (if enabled above)." -msgstr "" -"Pentru a beneficia de Livrare Gratuită, vizitatorii trebuie să aibă o " -"comandă cu această valoare minimă (dacă este activată mai sus)." - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:29 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:59 -msgid "International Delivery" -msgstr "Livrare Internațională" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:30 -msgid "International delivery based on flat rate shipping." -msgstr "Livrarea Internațională poate fi efectuată doar cu un cost fix." - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:68 -msgid "Selected countries" -msgstr "Țări selectate" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:69 -msgid "Excluding selected countries" -msgstr "Excluzând țările selectate" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:73 -msgid "Countries" -msgstr "Țări" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:90 -msgid "Cost Added..." -msgstr "Cost Adăugat..." - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:106 -msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -msgstr "Cost, fără taxe. Introdu o sumă, ex.: 2,23." - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:114 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. " -"Leave blank to disable." -msgstr "" -"Comision fără taxe. Introdu o sumă ( ex.: 2,25) sau un procent (ex.: 5%). " -"Lasă câmpul gol pentru a dezactiva opțiunea." - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:25 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:107 -msgid "Local Delivery" -msgstr "Livrare Locală" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:98 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:78 -msgid "Enable" -msgstr "Activează" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:100 -msgid "Enable local delivery" -msgstr "Activează Livrare Locală" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:111 -msgid "Fee Type" -msgstr "Tip Comision" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:113 -msgid "How to calculate delivery charges" -msgstr "Cum se calculează costurile de livrare" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 -msgid "Fixed amount" -msgstr "Sumă Fixă" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:117 -msgid "Percentage of cart total" -msgstr "Procent din totalul Coșului" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:118 -msgid "Fixed amount per product" -msgstr "Sumă fixă per produs" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:123 -msgid "Delivery Fee" -msgstr "Taxă de Livrare" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:129 -msgid "" -"What fee do you want to charge for local delivery, disregarded if you choose " -"free. Leave blank to disable." -msgstr "" -"Cât costă Livrarea Locală? (Suma introdusă este ignorată dacă se alege " -"Gratuit). Lasă câmpul gol pentru a dezactiva." - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:135 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:91 -msgid "Zip/Post Codes" -msgstr "Coduri Poștale" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:137 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:93 -msgid "" -"What zip/post codes would you like to offer delivery to? Separate codes with " -"a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -msgstr "" -"Pentru ce coduri poștale oferi livrarea produselor? Separă codurile poștale " -"cu o virgulă ( , ). Sunt aceptate metacaractere (ex P* se va potrivi cu " -"codul poștal PE30 și PF25)" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:172 -msgid "" -"Local delivery is a simple shipping method for delivering orders locally." -msgstr "Livrare locală este o metodă simplă de expediere locală a comenzilor." - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:25 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:87 -msgid "Local Pickup" -msgstr "Ridicare de la Sediu" - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:80 -msgid "Enable local pickup" -msgstr "Activează preluare locală" - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:117 -msgid "Apply base tax rate" -msgstr "Aplică taxele (cota de impozitare) de bază" - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:119 -msgid "" -"When this shipping method is chosen, apply the base tax rate rather than for " -"the customer's given address." -msgstr "Când este aleasă o metodă de livrare, aplicaţi " - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:134 -msgid "" -"Local pickup is a simple method which allows the customer to pick up their " -"order themselves." -msgstr "" -"Ridicarea de la Sediu este o metodă simplă prin care clientul își ridică " -"singur comanda." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-cart.php:53 -#: woocommerce-functions.php:1701 -msgid "Please enter a valid postcode/ZIP." -msgstr "Vă rugăm introduceți un cod poștal valid." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-cart.php:64 -#: classes/shortcodes/class-wc-shortcode-cart.php:70 -msgid "Shipping costs updated." -msgstr "Costuri de livrare actualizate." - -#: classes/shortcodes/class-wc-shortcode-checkout.php:45 -msgid "" -"WooCommerce Config Error: The checkout thanks/pay pages are missing - these " -"pages are required for the checkout to function correctly. Please configure " -"the pages here." -msgstr "" -"Eroare de Configurare a WooCommerce: Paginile Casă multumim / plată lipsesc " -"- aceste pagini sunt necesare pentru ca plata să funcționeze corect. Vă " -"rugăm să configurați paginile aici ." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-checkout.php:73 -msgid "" -"The order totals have been updated. Please confirm your order by pressing " -"the Place Order button at the bottom of the page." -msgstr "" -"Totalul comenzii a fost actualizat. Vă rugăm confirmați comanda dvs. prin " -"apăsarea butonului \"Plasare Comandă\" de la sfârșitul paginii." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:78 -#: woocommerce-functions.php:1623 -msgid "Please enter your password." -msgstr "Vă rugăm introduceți parola." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:93 -msgid "Your password has been reset." -msgstr "Parola dvs. a fost resetată" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:93 -msgid "Log in" -msgstr "Autentificare" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:114 -msgid "Enter a username or e-mail address." -msgstr "Introduceți un nume de utilizator sau o adresă de email." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:121 -msgid "There is no user registered with that email address." -msgstr "" -"Nu există nici un cont de utilizator înregistrat cu această adresă de email." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:136 -msgid "Invalid username or e-mail." -msgstr "Nume Utilizator sau Email Incorect." - -# @ default -#: classes/shortcodes/class-wc-shortcode-lost-password.php:150 -msgid "Password reset is not allowed for this user" -msgstr "" -"Ne pare rău,dar din păcate, resetarea parolei nu este permisă pentru acest " -"utilizator." - -# @ default -#: classes/shortcodes/class-wc-shortcode-lost-password.php:178 -msgid "Check your e-mail for the confirmation link." -msgstr "Vă rugăm verificați-vă e-mailul pentru link-ul de confirmare." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:198 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:203 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:210 -msgid "Invalid key" -msgstr "Cheie invalidă." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:51 -msgid "Please enter a valid order ID" -msgstr "Vă rugăm introduceți un ID (Cod Identificare) comandă valid" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:55 -msgid "Please enter a valid order email" -msgstr "Vă rugă introduceți o adresă de email validă pentru comandă." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:74 -msgid "Sorry, we could not find that order id in our database." -msgstr "" -"Ne pare rău dar nu găsim codul de identificare a comenzii în baza noastră de " -"date." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:64 -#: classes/shortcodes/class-wc-shortcode-pay.php:118 -msgid "" -"Your order has already been paid for. Please contact us if you need " -"assistance." -msgstr "" -"Comanda dvs. a fost deja achitată. Vă rugăm să ne contactați dacă aveți " -"nevoie de ajutor." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:69 -#: classes/shortcodes/class-wc-shortcode-pay.php:125 -#: classes/shortcodes/class-wc-shortcode-view-order.php:51 -#: woocommerce-functions.php:909 woocommerce-functions.php:989 -msgid "Invalid order." -msgstr "Comandă invalidă." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:90 -#: templates/checkout/thankyou.php:40 -#: templates/emails/customer-completed-order.php:18 -#: templates/emails/customer-invoice.php:22 -#: templates/emails/customer-note.php:22 -#: templates/emails/customer-processing-order.php:18 -msgid "Order:" -msgstr "Comandă:" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:94 -#: templates/checkout/thankyou.php:44 -msgid "Date:" -msgstr "Data:" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:98 -#: templates/checkout/thankyou.php:48 -msgid "Total:" -msgstr "Total:" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:103 -#: templates/checkout/thankyou.php:53 -msgid "Payment method:" -msgstr "Modalitate de Plată:" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:51 -msgid "My Account →" -msgstr "Contul Meu →" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:58 -msgid "" -"Order %s made on %s" -msgstr "" -"Comanda %s creată pe data de: %s" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:59 -msgid "Order status: %s" -msgstr "Status comandă: %s" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:65 -#: templates/order/tracking.php:31 -msgid "Order Updates" -msgstr "Actualizări Comandă" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:71 -msgid "l jS \\of F Y, h:ia" -msgstr "l, j F Y, Ora H:i:s" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:31 -msgid "Display a list of your best selling products on your site." -msgstr "Afișează o listă cu cele mai vândute produse de pe site." - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:33 -msgid "WooCommerce Best Sellers" -msgstr "WooCommerce Cele mai Vândute" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:71 -msgid "Best Sellers" -msgstr "Cele Mai Vândute" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:189 -#: classes/widgets/class-wc-widget-cart.php:109 -#: classes/widgets/class-wc-widget-featured-products.php:169 -#: classes/widgets/class-wc-widget-layered-nav.php:349 -#: classes/widgets/class-wc-widget-onsale.php:176 -#: classes/widgets/class-wc-widget-price-filter.php:179 -#: classes/widgets/class-wc-widget-product-categories.php:185 -#: classes/widgets/class-wc-widget-product-search.php:91 -#: classes/widgets/class-wc-widget-product-tag-cloud.php:101 -#: classes/widgets/class-wc-widget-random-products.php:134 -#: classes/widgets/class-wc-widget-recent-products.php:170 -#: classes/widgets/class-wc-widget-recent-reviews.php:158 -#: classes/widgets/class-wc-widget-recently-viewed.php:166 -#: classes/widgets/class-wc-widget-top-rated-products.php:156 -msgid "Title:" -msgstr "Titlu:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:192 -#: classes/widgets/class-wc-widget-featured-products.php:172 -#: classes/widgets/class-wc-widget-onsale.php:179 -#: classes/widgets/class-wc-widget-random-products.php:139 -#: classes/widgets/class-wc-widget-recent-products.php:173 -#: classes/widgets/class-wc-widget-recent-reviews.php:161 -#: classes/widgets/class-wc-widget-recently-viewed.php:169 -#: classes/widgets/class-wc-widget-top-rated-products.php:159 -msgid "Number of products to show:" -msgstr "Câte produse se vor afișa:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:196 -msgid "Hide free products" -msgstr "Ascunde produsele gratuite" - -# @ woocommerce -#: classes/widgets/class-wc-widget-cart.php:33 -msgid "Display the user's Cart in the sidebar." -msgstr "Afișează Coșul de Cumpărături în Bara Laterală." - -# @ woocommerce -#: classes/widgets/class-wc-widget-cart.php:35 -msgid "WooCommerce Cart" -msgstr "WooCommerce Coş" - -# @ woocommerce -#: classes/widgets/class-wc-widget-cart.php:113 -msgid "Hide if cart is empty" -msgstr "Ascunde în cazul în care Coșul este gol" - -# @ woocommerce -#: classes/widgets/class-wc-widget-featured-products.php:35 -msgid "Display a list of featured products on your site." -msgstr "Afișează o listă de produse recomandate pe site-ul dvs." - -# @ woocommerce -#: classes/widgets/class-wc-widget-featured-products.php:37 -msgid "WooCommerce Featured Products" -msgstr "WooCommerce Produse Recomandate" - -# @ woocommerce -#: classes/widgets/class-wc-widget-featured-products.php:75 -msgid "Featured Products" -msgstr "Produse Recomandate" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:31 -msgid "Shows active layered nav filters so users can see and deactivate them." -msgstr "" -"Afişează filtrele active, astfel încât utilizatorii le pot vede şi dezactiva." - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:33 -msgid "WooCommerce Layered Nav Filters" -msgstr "WooCommerce Layered Nav Filters" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:62 -msgid "Active filters" -msgstr "Fitre Active" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:93 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Remove filter" -msgstr "Șterge filtru" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -msgid "Min" -msgstr "Min" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Max" -msgstr "Max" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:31 -msgid "" -"Shows a custom attribute in a widget which lets you narrow down the list of " -"products when viewing product categories." -msgstr "" -"Afișează un widget cu atribute ce permite filtrarea produsele atunci când " -"este vizualizată o pagină de categorie." - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:33 -msgid "WooCommerce Layered Nav" -msgstr "WooCommerce Layered Nav" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:100 -msgid "Any %s" -msgstr "Orice %s" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:352 -msgid "Attribute:" -msgstr "Atribut:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:363 -msgid "Display Type:" -msgstr "Tip Afișare:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:365 -msgid "List" -msgstr "Listă" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:366 -msgid "Dropdown" -msgstr "Selecție" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:369 -msgid "Query Type:" -msgstr "Tip Interogare:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:371 -msgid "AND" -msgstr "ŞI" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:372 -msgid "OR" -msgstr "SAU" - -# @ woocommerce -#: classes/widgets/class-wc-widget-onsale.php:31 -msgid "Display a list of your on-sale products on your site." -msgstr "Afișează o listă cu produsele aflate la reducere." - -# @ woocommerce -#: classes/widgets/class-wc-widget-onsale.php:33 -msgid "WooCommerce On-sale" -msgstr "WooCommerce Reduceri" - -# @ woocommerce -#: classes/widgets/class-wc-widget-onsale.php:70 -msgid "On Sale" -msgstr "Reduceri" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:33 -msgid "" -"Shows a price filter slider in a widget which lets you narrow down the list " -"of shown products when viewing product categories." -msgstr "" -"Afișează un filtru de preț într-un widget ce permite micșorarea listei de " -"produse afișate, în funcție de minimul și maximul ales." - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:35 -msgid "WooCommerce Price Filter" -msgstr "WooCommerce Filtrează după Preţ" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:136 -msgid "Min price" -msgstr "Preț Minim" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:137 -msgid "Max price" -msgstr "Preț Maxim" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:138 -msgid "Filter" -msgstr "Filtrează" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:140 -msgid "Price:" -msgstr "Preț:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:162 -msgid "Filter by price" -msgstr "Filtrează după preț" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:33 -msgid "A list or dropdown of product categories." -msgstr "O listă cu selector de categorii de produse." - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:35 -msgid "WooCommerce Product Categories" -msgstr "WooCommerce Categorii de Produse" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:57 -#: woocommerce.php:821 woocommerce.php:823 -msgid "Product Categories" -msgstr "Categorii de Produse" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:129 -msgid "No product categories exist." -msgstr "Nu există nici o categorie de produs." - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:188 -msgid "Order by:" -msgstr "Sortează după:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:190 -msgid "Category Order" -msgstr "Sortează după Categorie" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:191 -#: templates/single-product-reviews.php:84 woocommerce-ajax.php:1171 -msgid "Name" -msgstr "Nume" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:195 -msgid "Show as dropdown" -msgstr "Afișează ca selectție" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:198 -msgid "Show post counts" -msgstr "Afișează numărul de mesaje" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:201 -msgid "Show hierarchy" -msgstr "Afișează ierarhie" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:204 -msgid "Only show children for the current category" -msgstr "Afișează doar subcategoriile din categoria curentă" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-search.php:31 -msgid "A Search box for products only." -msgstr "O căsuță de căutare doar pentru produse." - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-search.php:33 -msgid "WooCommerce Product Search" -msgstr "WooCommerce Caută Produs" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-tag-cloud.php:31 -msgid "Your most used product tags in cloud format." -msgstr "Cele mai utilizate produse în format nor." - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-tag-cloud.php:33 -msgid "WooCommerce Product Tags" -msgstr "WooCommerce Etichete Produs" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-tag-cloud.php:58 -#: woocommerce.php:857 woocommerce.php:859 -msgid "Product Tags" -msgstr "Etichete Produs" - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:24 -msgid "WooCommerce Random Products" -msgstr "WooCommerce Produse Aleatoare" - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:27 -msgid "Display a list of random products on your site." -msgstr "Afișează o listă de Produse Aleatoare pe site" - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:46 -msgid "Random Products" -msgstr "Produse Aleatoare" - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:145 -#: classes/widgets/class-wc-widget-recent-products.php:177 -msgid "Show hidden product variations" -msgstr "Afișează variațiunile de produs ascunse" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-products.php:31 -msgid "Display a list of your most recent products on your site." -msgstr "Afișează o listă cu produsele adăugate recent." - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-products.php:33 -msgid "WooCommerce Recent Products" -msgstr "WooCommerce Produse Recente" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-products.php:70 -msgid "New Products" -msgstr "Produse Noi" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:31 -msgid "Display a list of your most recent reviews on your site." -msgstr "Afișează o listă cu cele mai noi recenzii despre produse pe site." - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:33 -msgid "WooCommerce Recent Reviews" -msgstr "WooCommerce Recent Reviews" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:71 -msgid "Recent Reviews" -msgstr "Recenzii Recente" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:97 -msgctxt "by comment author" -msgid "by %1$s" -msgstr "de către %1$s" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recently-viewed.php:31 -msgid "Display a list of recently viewed products." -msgstr "Afișează o listă cu ultimele produse vizitate:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recently-viewed.php:33 -msgid "WooCommerce Recently Viewed Products" -msgstr "WooCommerce Ultimele Produse Vizualizate" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recently-viewed.php:76 -msgid "Recently viewed" -msgstr "Ultimele produse vizitate:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-top-rated-products.php:33 -msgid "Display a list of top rated products on your site." -msgstr "Afișează o listă a celor mai bine cotate produse de pe site." - -# @ woocommerce -#: classes/widgets/class-wc-widget-top-rated-products.php:35 -msgid "WooCommerce Top Rated Products" -msgstr "WooCommerce Cele mai bine cotate produse" - -# @ woocommerce -#: classes/widgets/class-wc-widget-top-rated-products.php:72 -msgid "Top Rated Products" -msgstr "Cele mai bine cotate produse" - -# @ woocommerce -#: i18n/states/AU.php:13 -msgid "Australian Capital Territory" -msgstr "Australian Capital Territory" - -# @ woocommerce -#: i18n/states/AU.php:14 -msgid "New South Wales" -msgstr "New South Wales" - -# @ woocommerce -#: i18n/states/AU.php:15 -msgid "Northern Territory" -msgstr "Northern Territory" - -# @ woocommerce -#: i18n/states/AU.php:16 -msgid "Queensland" -msgstr "Queensland" - -# @ woocommerce -#: i18n/states/AU.php:17 -msgid "South Australia" -msgstr "South Australia" - -# @ woocommerce -#: i18n/states/AU.php:18 -msgid "Tasmania" -msgstr "Tazmania" - -# @ woocommerce -#: i18n/states/AU.php:19 -msgid "Victoria" -msgstr "Victoria" - -# @ woocommerce -#: i18n/states/AU.php:20 -msgid "Western Australia" -msgstr "Western Australia" - -# @ woocommerce -#: i18n/states/BR.php:13 -msgid "Acre" -msgstr "Acre" - -# @ woocommerce -#: i18n/states/BR.php:14 -msgid "Alagoas" -msgstr "Alagoas" - -# @ woocommerce -#: i18n/states/BR.php:15 -msgid "Amapá" -msgstr "Amapá" - -# @ woocommerce -#: i18n/states/BR.php:16 -msgid "Amazonas" -msgstr "Amazonas" - -# @ woocommerce -#: i18n/states/BR.php:17 -msgid "Bahia" -msgstr "Bahia" - -# @ woocommerce -#: i18n/states/BR.php:18 -msgid "Ceará" -msgstr "Ceará" - -# @ woocommerce -#: i18n/states/BR.php:19 -msgid "Distrito Federal" -msgstr "Distrito Federal" - -# @ woocommerce -#: i18n/states/BR.php:20 -msgid "Espírito Santo" -msgstr "Espírito Santo" - -# @ woocommerce -#: i18n/states/BR.php:21 -msgid "Goiás" -msgstr "Goiás" - -# @ woocommerce -#: i18n/states/BR.php:22 -msgid "Maranhão" -msgstr "Maranhão" - -# @ woocommerce -#: i18n/states/BR.php:23 -msgid "Mato Grosso" -msgstr "Mato Grosso" - -# @ woocommerce -#: i18n/states/BR.php:24 -msgid "Mato Grosso do Sul" -msgstr "Mato Grosso do Sul" - -# @ woocommerce -#: i18n/states/BR.php:25 -msgid "Minas Gerais" -msgstr "Minas Gerais" - -# @ woocommerce -#: i18n/states/BR.php:26 -msgid "Pará" -msgstr "Pará" - -# @ woocommerce -#: i18n/states/BR.php:27 -msgid "Paraíba" -msgstr "Paraíba" - -# @ woocommerce -#: i18n/states/BR.php:28 -msgid "Paraná" -msgstr "Paraná" - -# @ woocommerce -#: i18n/states/BR.php:29 -msgid "Pernambuco" -msgstr "Pernambuco" - -# @ woocommerce -#: i18n/states/BR.php:30 -msgid "Piauí" -msgstr "Piauí" - -# @ woocommerce -#: i18n/states/BR.php:31 -msgid "Rio de Janeiro" -msgstr "Rio de Janeiro" - -# @ woocommerce -#: i18n/states/BR.php:32 -msgid "Rio Grande do Norte" -msgstr "Rio Grande do Norte" - -# @ woocommerce -#: i18n/states/BR.php:33 -msgid "Rio Grande do Sul" -msgstr "Rio Grande do Sul" - -# @ woocommerce -#: i18n/states/BR.php:34 -msgid "Rondônia" -msgstr "Rondônia" - -# @ woocommerce -#: i18n/states/BR.php:35 -msgid "Roraima" -msgstr "Roraima" - -# @ woocommerce -#: i18n/states/BR.php:36 -msgid "Santa Catarina" -msgstr "Santa Catarina" - -# @ woocommerce -#: i18n/states/BR.php:37 -msgid "São Paulo" -msgstr "São Paulo" - -# @ woocommerce -#: i18n/states/BR.php:38 -msgid "Sergipe" -msgstr "Sergipe" - -# @ woocommerce -#: i18n/states/BR.php:39 -msgid "Tocantins" -msgstr "Tocantins" - -# @ woocommerce -#: i18n/states/CA.php:13 -msgid "Alberta" -msgstr "Alberta" - -# @ woocommerce -#: i18n/states/CA.php:14 -msgid "British Columbia" -msgstr "British Columbia" - -# @ woocommerce -#: i18n/states/CA.php:15 -msgid "Manitoba" -msgstr "Manitoba" - -# @ woocommerce -#: i18n/states/CA.php:16 -msgid "New Brunswick" -msgstr "New Brunswick" - -# @ woocommerce -#: i18n/states/CA.php:17 -msgid "Newfoundland" -msgstr "Newfoundland" - -# @ woocommerce -#: i18n/states/CA.php:18 -msgid "Northwest Territories" -msgstr "Northwest Territories" - -# @ woocommerce -#: i18n/states/CA.php:19 -msgid "Nova Scotia" -msgstr "Nova Scotia" - -# @ woocommerce -#: i18n/states/CA.php:20 -msgid "Nunavut" -msgstr "Nunavut" - -# @ woocommerce -#: i18n/states/CA.php:21 -msgid "Ontario" -msgstr "Ontario" - -# @ woocommerce -#: i18n/states/CA.php:22 -msgid "Prince Edward Island" -msgstr "Insula Prince Edward" - -# @ woocommerce -#: i18n/states/CA.php:23 -msgid "Quebec" -msgstr "Quebec" - -# @ woocommerce -#: i18n/states/CA.php:24 -msgid "Saskatchewan" -msgstr "Saskatchewan" - -# @ woocommerce -#: i18n/states/CA.php:25 -msgid "Yukon Territory" -msgstr "Yukon Territory" - -# @ woocommerce -#: i18n/states/CN.php:13 -msgid "Yunnan / 云南" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:14 -msgid "Beijing / 北京" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:15 -msgid "Tianjin / 天津" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:16 -msgid "Hebei / 河北" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:17 -msgid "Shanxi / 山西" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:18 -msgid "Inner Mongolia / 內蒙古" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:19 -msgid "Liaoning / 辽宁" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:20 -msgid "Jilin / 吉林" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:21 -msgid "Heilongjiang / 黑龙江" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:22 -msgid "Shanghai / 上海" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:23 -msgid "Jiangsu / 江苏" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:24 -msgid "Zhejiang / 浙江" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:25 -msgid "Anhui / 安徽" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:26 -msgid "Fujian / 福建" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:27 -msgid "Jiangxi / 江西" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:28 -msgid "Shandong / 山东" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:29 -msgid "Henan / 河南" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:30 -msgid "Hubei / 湖北" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:31 -msgid "Hunan / 湖南" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:32 -msgid "Guangdong / 广东" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:33 -msgid "Guangxi Zhuang / 广西壮族" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:34 -msgid "Hainan / 海南" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:35 -msgid "Chongqing / 重庆" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:36 -msgid "Sichuan / 四川" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:37 -msgid "Guizhou / 贵州" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:38 -msgid "Shaanxi / 陕西" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:39 -msgid "Gansu / 甘肃" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:40 -msgid "Qinghai / 青海" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:41 -msgid "Ningxia Hui / 宁夏" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:42 -msgid "Macau / 澳门" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:43 -msgid "Tibet / 西藏" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:44 -msgid "Xinjiang / 新疆" -msgstr "" - -# @ woocommerce -#: i18n/states/HK.php:13 -msgid "Hong Kong Island" -msgstr "Insula Hong Kong" - -# @ woocommerce -#: i18n/states/HK.php:14 -msgid "Kowloon" -msgstr "Kowloon" - -# @ woocommerce -#: i18n/states/HK.php:15 -msgid "New Territories" -msgstr "New Territories" - -# @ woocommerce -#: i18n/states/HU.php:13 -msgid "Bács-Kiskun" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:14 -msgid "Békés" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:15 -msgid "Baranya" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:16 -msgid "Borsod-Abaúj-Zemplén" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:17 -msgid "Budapest" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:18 -msgid "Csongrád" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:19 -msgid "Fejér" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:20 -msgid "Győr-Moson-Sopron" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:21 -msgid "Hajdú-Bihar" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:22 -msgid "Heves" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:23 -msgid "Jász-Nagykun-Szolnok" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:24 -msgid "Komárom-Esztergom" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:25 -msgid "Nógrád" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:26 -msgid "Pest" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:27 -msgid "Somogy" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:28 -msgid "Szabolcs-Szatmár-Bereg" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:29 -msgid "Tolna" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:30 -msgid "Vas" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:31 -msgid "Veszprém" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:32 -msgid "Zala" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:13 i18n/states/NZ.php:14 -msgid "Auckland" -msgstr "Auckland" - -# @ woocommerce -#: i18n/states/HZ.php:14 i18n/states/NZ.php:16 -msgid "Bay of Plenty" -msgstr "Bay of Plenty" - -# @ woocommerce -#: i18n/states/HZ.php:15 i18n/states/NZ.php:25 -msgid "Canterbury" -msgstr "Canterbury" - -# @ woocommerce -#: i18n/states/HZ.php:16 i18n/states/NZ.php:18 -msgid "Hawke’s Bay" -msgstr "Hawke’s Bay" - -# @ woocommerce -#: i18n/states/HZ.php:17 i18n/states/NZ.php:19 -msgid "Manawatu-Wanganui" -msgstr "Manawatu-Wanganui" - -# @ woocommerce -#: i18n/states/HZ.php:18 i18n/states/NZ.php:22 -msgid "Marlborough" -msgstr "Marlborough" - -# @ woocommerce -#: i18n/states/HZ.php:19 i18n/states/NZ.php:21 -msgid "Nelson" -msgstr "Nelson" - -# @ woocommerce -#: i18n/states/HZ.php:20 i18n/states/NZ.php:13 -msgid "Northland" -msgstr "Northland" - -# @ woocommerce -#: i18n/states/HZ.php:21 i18n/states/NZ.php:26 -msgid "Otago" -msgstr "Otago" - -# @ woocommerce -#: i18n/states/HZ.php:22 i18n/states/NZ.php:27 -msgid "Southland" -msgstr "Southland" - -# @ woocommerce -#: i18n/states/HZ.php:23 i18n/states/NZ.php:17 -msgid "Taranaki" -msgstr "Taranaki" - -# @ woocommerce -#: i18n/states/HZ.php:24 i18n/states/NZ.php:23 -msgid "Tasman" -msgstr "Tasman" - -# @ woocommerce -#: i18n/states/HZ.php:25 i18n/states/NZ.php:15 -msgid "Waikato" -msgstr "Waikato" - -# @ woocommerce -#: i18n/states/HZ.php:26 i18n/states/NZ.php:20 -msgid "Wellington" -msgstr "Wellington" - -# @ woocommerce -#: i18n/states/HZ.php:27 i18n/states/NZ.php:24 -msgid "West Coast" -msgstr "West Coast" - -# @ woocommerce -#: i18n/states/ID.php:13 -msgid "Daerah Istimewa Aceh" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:14 -msgid "Sumatera Utara" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:15 -msgid "Sumatera Barat" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:16 -msgid "Riau" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:17 -msgid "Kepulauan Riau" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:18 -msgid "Jambi" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:19 -msgid "Sumatera Selatan" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:20 -msgid "Bangka Belitung" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:21 -msgid "Bengkulu" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:22 -msgid "Lampung" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:23 -msgid "DKI Jakarta" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:24 -msgid "Jawa Barat" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:25 -msgid "Banten" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:26 -msgid "Jawa Tengah" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:27 -msgid "Jawa Timur" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:28 -msgid "Daerah Istimewa Yogyakarta" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:29 -msgid "Bali" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:30 -msgid "Nusa Tenggara Barat" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:31 -msgid "Nusa Tenggara Timur" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:32 -msgid "Kalimantan Barat" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:33 -msgid "Kalimantan Tengah" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:34 -msgid "Kalimantan Timur" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:35 -msgid "Kalimantan Selatan" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:36 -msgid "Kalimantan Utara" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:37 -msgid "Sulawesi Utara" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:38 -msgid "Sulawesi Tengah" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:39 -msgid "Sulawesi Tenggara" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:40 -msgid "Sulawesi Barat" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:41 -msgid "Sulawesi Selatan" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:42 -msgid "Gorontalo" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:43 -msgid "Maluku" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:44 -msgid "Maluku Utara" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:45 -msgid "Papua" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:46 -msgid "Papua Barat" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:13 -msgid "Andra Pradesh" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:14 -msgid "Arunachal Pradesh" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:15 -msgid "Assam" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:16 -msgid "Bihar" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:17 -msgid "Chhattisgarh" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:18 -msgid "Goa" -msgstr "Goa" - -# @ woocommerce -#: i18n/states/IN.php:19 -msgid "Gujarat" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:20 -msgid "Haryana" -msgstr "Haryana" - -# @ woocommerce -#: i18n/states/IN.php:21 -msgid "Himachal Pradesh" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:22 -msgid "Jammu and Kashmir" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:23 -msgid "Jharkhand" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:24 -msgid "Karnataka" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:25 -msgid "Kerala" -msgstr "Kerala" - -# @ woocommerce -#: i18n/states/IN.php:26 -msgid "Madhya Pradesh" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:27 -msgid "Maharashtra" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:28 -msgid "Manipur" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:29 -msgid "Meghalaya" -msgstr "Meghalaya" - -# @ woocommerce -#: i18n/states/IN.php:30 -msgid "Mizoram" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:31 -msgid "Nagaland" -msgstr "Nagaland" - -# @ woocommerce -#: i18n/states/IN.php:32 -msgid "Orissa" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:33 -msgid "Punjab" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:34 -msgid "Rajasthan" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:35 -msgid "Sikkim" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:36 -msgid "Tamil Nadu" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:37 -msgid "Tripura" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:38 -msgid "Uttaranchal" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:39 -msgid "Uttar Pradesh" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:40 -msgid "West Bengal" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:41 -msgid "Andaman and Nicobar Islands" -msgstr "Insulele Andaman și Nicobar" - -# @ woocommerce -#: i18n/states/IN.php:42 -msgid "Chandigarh" -msgstr "Chandigarh" - -# @ woocommerce -#: i18n/states/IN.php:43 -msgid "Dadar and Nagar Haveli" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:44 -msgid "Daman and Diu" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:45 -msgid "Delhi" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:46 -msgid "Lakshadeep" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:47 -msgid "Pondicherry (Puducherry)" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:13 -msgid "Johor" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:14 -msgid "Kedah" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:15 -msgid "Kelantan" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:16 -msgid "Melaka" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:17 -msgid "Negeri Sembilan" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:18 -msgid "Pahang" -msgstr "Pahang" - -# @ woocommerce -#: i18n/states/MY.php:19 -msgid "Perak" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:20 -msgid "Perlis" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:21 -msgid "Pulau Pinang" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:22 -msgid "Sabah" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:23 -msgid "Sarawak" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:24 -msgid "Selangor" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:25 -msgid "Terengganu" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:26 -msgid "W.P. Kuala Lumpur" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:27 -msgid "W.P. Labuan" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:28 -msgid "W.P. Putrajaya" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:13 -msgid "" -"Amnat Charoen (อำนาจเจร" -"ิญ)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:14 -msgid "Ang Thong (อ่างทอง)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:15 -msgid "" -"Ayutthaya (พระนครศรี" -"อยุธยา)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:16 -msgid "" -"Bangkok (กรุงเทพมห" -"านคร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:17 -msgid "Bueng Kan (บึงกาฬ)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:18 -msgid "" -"Buri Ram (บุรีรัมย์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:19 -msgid "" -"Chachoengsao (ฉะเชิงเทร" -"า)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:20 -msgid "Chai Nat (ชัยนาท)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:21 -msgid "Chaiyaphum (ชัยภูมิ)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:22 -msgid "Chanthaburi (จันทบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:23 -msgid "" -"Chiang Mai (เชียงใหม่)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:24 -msgid "Chiang Rai (เชียงราย)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:25 -msgid "Chonburi (ชลบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:26 -msgid "Chumphon (ชุมพร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:27 -msgid "" -"Kalasin (กาฬสินธุ์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:28 -msgid "" -"Kamphaeng Phet (กำแพงเพช" -"ร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:29 -msgid "" -"Kanchanaburi (กาญจนบุร" -"ี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:30 -msgid "Khon Kaen (ขอนแก่น)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:31 -msgid "Krabi (กระบี่)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:32 -msgid "Lampang (ลำปาง)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:33 -msgid "Lamphun (ลำพูน)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:34 -msgid "Loei (เลย)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:35 -msgid "Lopburi (ลพบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:36 -msgid "" -"Mae Hong Son (แม่ฮ่องสอ" -"น)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:37 -msgid "" -"Maha Sarakham (มหาสารคา" -"ม)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:38 -msgid "Mukdahan (มุกดาหาร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:39 -msgid "Nakhon Nayok (นครนายก)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:40 -msgid "Nakhon Pathom (นครปฐม)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:41 -msgid "Nakhon Phanom (นครพนม)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:42 -msgid "" -"Nakhon Ratchasima (นครราชสี" -"มา)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:43 -msgid "" -"Nakhon Sawan (นครสวรรค" -"์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:44 -msgid "" -"Nakhon Si Thammarat (นครศรีธร" -"รมราช)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:45 -msgid "Nan (น่าน)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:46 -msgid "Narathiwat (นราธิวาส)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:47 -msgid "" -"Nong Bua Lam Phu (หนองบัวล" -"ำภู)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:48 -msgid "Nong Khai (หนองคาย)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:49 -msgid "Nonthaburi (นนทบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:50 -msgid "Pathum Thani (ปทุมธานี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:51 -msgid "Pattani (ปัตตานี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:52 -msgid "Phang Nga (พังงา)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:53 -msgid "Phatthalung (พัทลุง)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:54 -msgid "Phayao (พะเยา)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:55 -msgid "" -"Phetchabun (เพชรบูรณ์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:56 -msgid "Phetchaburi (เพชรบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:57 -msgid "Phichit (พิจิตร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:58 -msgid "Phitsanulok (พิษณุโลก)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:59 -msgid "Phrae (แพร่)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:60 -msgid "Phuket (ภูเก็ต)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:61 -msgid "" -"Prachin Buri (ปราจีนบุร" -"ี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:62 -msgid "" -"Prachuap Khiri Khan (ประจวบคี" -"รีขันธ์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:63 -msgid "Ranong (ระนอง)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:64 -msgid "Ratchaburi (ราชบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:65 -msgid "Rayong (ระยอง)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:66 -msgid "Roi Et (ร้อยเอ็ด)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:67 -msgid "Sa Kaeo (สระแก้ว)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:68 -msgid "Sakon Nakhon (สกลนคร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:69 -msgid "" -"Samut Prakan (สมุทรปราก" -"าร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:70 -msgid "" -"Samut Sakhon (สมุทรสาค" -"ร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:71 -msgid "" -"Samut Songkhram (สมุทรสงค" -"ราม)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:72 -msgid "Saraburi (สระบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:73 -msgid "Satun (สตูล)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:74 -msgid "" -"Sing Buri (สิงห์บุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:75 -msgid "Sisaket (ศรีสะเกษ)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:76 -msgid "Songkhla (สงขลา)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:77 -msgid "Sukhothai (สุโขทัย)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:78 -msgid "" -"Suphan Buri (สุพรรณบุร" -"ี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:79 -msgid "" -"Surat Thani (สุราษฎร์ธ" -"านี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:80 -msgid "Surin (สุรินทร์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:81 -msgid "Tak (ตาก)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:82 -msgid "Trang (ตรัง)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:83 -msgid "Trat (ตราด)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:84 -msgid "" -"Ubon Ratchathani (อุบลราชธ" -"านี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:85 -msgid "Udon Thani (อุดรธานี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:86 -msgid "" -"Uthai Thani (อุทัยธานี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:87 -msgid "" -"Uttaradit (อุตรดิตถ์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:88 -msgid "Yala (ยะลา)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:89 -msgid "Yasothon (ยโสธร)" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:13 -msgid "Alabama" -msgstr "Alabama" - -# @ woocommerce -#: i18n/states/US.php:14 -msgid "Alaska" -msgstr "Alaska" - -# @ woocommerce -#: i18n/states/US.php:15 -msgid "Arizona" -msgstr "Arizona" - -# @ woocommerce -#: i18n/states/US.php:16 -msgid "Arkansas" -msgstr "Arkansas" - -# @ woocommerce -#: i18n/states/US.php:17 -msgid "California" -msgstr "California" - -# @ woocommerce -#: i18n/states/US.php:18 -msgid "Colorado" -msgstr "Colorado" - -# @ woocommerce -#: i18n/states/US.php:19 -msgid "Connecticut" -msgstr "Connecticut" - -# @ woocommerce -#: i18n/states/US.php:20 -msgid "Delaware" -msgstr "Delaware" - -# @ woocommerce -#: i18n/states/US.php:21 -msgid "District Of Columbia" -msgstr "District Of Columbia" - -# @ woocommerce -#: i18n/states/US.php:22 -msgid "Florida" -msgstr "Florida" - -# @ woocommerce -#: i18n/states/US.php:24 -msgid "Hawaii" -msgstr "Hawaii" - -# @ woocommerce -#: i18n/states/US.php:25 -msgid "Idaho" -msgstr "Idaho" - -# @ woocommerce -#: i18n/states/US.php:26 -msgid "Illinois" -msgstr "Illinois" - -# @ woocommerce -#: i18n/states/US.php:27 -msgid "Indiana" -msgstr "Indiana" - -# @ woocommerce -#: i18n/states/US.php:28 -msgid "Iowa" -msgstr "Iowa" - -# @ woocommerce -#: i18n/states/US.php:29 -msgid "Kansas" -msgstr "Kansas" - -# @ woocommerce -#: i18n/states/US.php:30 -msgid "Kentucky" -msgstr "Kentucky" - -# @ woocommerce -#: i18n/states/US.php:31 -msgid "Louisiana" -msgstr "Louisiana" - -# @ woocommerce -#: i18n/states/US.php:32 -msgid "Maine" -msgstr "Maine" - -# @ woocommerce -#: i18n/states/US.php:33 -msgid "Maryland" -msgstr "Maryland" - -# @ woocommerce -#: i18n/states/US.php:34 -msgid "Massachusetts" -msgstr "Massachusetts" - -# @ woocommerce -#: i18n/states/US.php:35 -msgid "Michigan" -msgstr "Michigan" - -# @ woocommerce -#: i18n/states/US.php:36 -msgid "Minnesota" -msgstr "Minnesota" - -# @ woocommerce -#: i18n/states/US.php:37 -msgid "Mississippi" -msgstr "Mississippi" - -# @ woocommerce -#: i18n/states/US.php:38 -msgid "Missouri" -msgstr "Missouri" - -# @ woocommerce -#: i18n/states/US.php:39 -msgid "Montana" -msgstr "Montana" - -# @ woocommerce -#: i18n/states/US.php:40 -msgid "Nebraska" -msgstr "Nebraska" - -# @ woocommerce -#: i18n/states/US.php:41 -msgid "Nevada" -msgstr "Nebraska" - -# @ woocommerce -#: i18n/states/US.php:42 -msgid "New Hampshire" -msgstr "New Hampshire" - -# @ woocommerce -#: i18n/states/US.php:43 -msgid "New Jersey" -msgstr "New Jersey" - -# @ woocommerce -#: i18n/states/US.php:44 -msgid "New Mexico" -msgstr "New Mexico" - -# @ woocommerce -#: i18n/states/US.php:45 -msgid "New York" -msgstr "New York" - -# @ woocommerce -#: i18n/states/US.php:46 -msgid "North Carolina" -msgstr "North Carolina" - -# @ woocommerce -#: i18n/states/US.php:47 -msgid "North Dakota" -msgstr "North Dakota" - -# @ woocommerce -#: i18n/states/US.php:48 -msgid "Ohio" -msgstr "Ohio" - -# @ woocommerce -#: i18n/states/US.php:49 -msgid "Oklahoma" -msgstr "Oklahoma" - -# @ woocommerce -#: i18n/states/US.php:50 -msgid "Oregon" -msgstr "Oregon" - -# @ woocommerce -#: i18n/states/US.php:51 -msgid "Pennsylvania" -msgstr "Pennsylvania" - -# @ woocommerce -#: i18n/states/US.php:52 -msgid "Rhode Island" -msgstr "Rhode Island" - -# @ woocommerce -#: i18n/states/US.php:53 -msgid "South Carolina" -msgstr "South Carolina" - -# @ woocommerce -#: i18n/states/US.php:54 -msgid "South Dakota" -msgstr "South Dakota" - -# @ woocommerce -#: i18n/states/US.php:55 -msgid "Tennessee" -msgstr "Tennessee" - -# @ woocommerce -#: i18n/states/US.php:56 -msgid "Texas" -msgstr "Texas" - -# @ woocommerce -#: i18n/states/US.php:57 -msgid "Utah" -msgstr "Utah" - -# @ woocommerce -#: i18n/states/US.php:58 -msgid "Vermont" -msgstr "Vermont" - -# @ woocommerce -#: i18n/states/US.php:59 -msgid "Virginia" -msgstr "Virginia" - -# @ woocommerce -#: i18n/states/US.php:60 -msgid "Washington" -msgstr "Washington" - -# @ woocommerce -#: i18n/states/US.php:61 -msgid "West Virginia" -msgstr "West Virginia" - -# @ woocommerce -#: i18n/states/US.php:62 -msgid "Wisconsin" -msgstr "Wisconsin" - -# @ woocommerce -#: i18n/states/US.php:63 -msgid "Wyoming" -msgstr "Wyoming" - -# @ woocommerce -#: i18n/states/US.php:64 -msgid "Armed Forces (AA)" -msgstr "SUA, Forțele Armate" - -# @ woocommerce -#: i18n/states/US.php:65 -msgid "Armed Forces (AE)" -msgstr "SUA, Forțele Armate" - -# @ woocommerce -#: i18n/states/US.php:66 -msgid "Armed Forces (AP)" -msgstr "SUA, Forțele Armate" - -# @ woocommerce -#: i18n/states/US.php:67 -msgid "American Samoa" -msgstr "Samoa American" - -# @ woocommerce -#: i18n/states/US.php:68 -msgid "Guam" -msgstr "Guam" - -# @ woocommerce -#: i18n/states/US.php:69 -msgid "Northern Mariana Islands" -msgstr "Insula Mariana de Nord" - -# @ woocommerce -#: i18n/states/US.php:70 -msgid "Puerto Rico" -msgstr "Porto Rico" - -# @ woocommerce -#: i18n/states/US.php:71 -msgid "US Minor Outlying Islands" -msgstr "SUA, Insulele Minore Îndepărtate" - -# @ woocommerce -#: i18n/states/US.php:72 -msgid "US Virgin Islands" -msgstr "" - -# @ woocommerce -#: i18n/states/ZA.php:13 -msgid "Eastern Cape" -msgstr "" - -# @ woocommerce -#: i18n/states/ZA.php:14 -msgid "Free State" -msgstr "Free State" - -# @ woocommerce -#: i18n/states/ZA.php:15 -msgid "Gauteng" -msgstr "Gauteng" - -# @ woocommerce -#: i18n/states/ZA.php:16 -msgid "KwaZulu-Natal" -msgstr "KwaZulu-Natal" - -# @ woocommerce -#: i18n/states/ZA.php:17 -msgid "Limpopo" -msgstr "Limpopo" - -# @ woocommerce -#: i18n/states/ZA.php:18 -msgid "Mpumalanga" -msgstr "Mpumalanga" - -# @ woocommerce -#: i18n/states/ZA.php:19 -msgid "Northern Cape" -msgstr "Northern Cape" - -# @ woocommerce -#: i18n/states/ZA.php:20 -msgid "North West" -msgstr "North West" - -# @ woocommerce -#: i18n/states/ZA.php:21 -msgid "Western Cape" -msgstr "Western Cape" - -# @ woocommerce -#: i18n/strings.php:16 -msgid "pending" -msgstr "în așteptare" - -# @ woocommerce -#: i18n/strings.php:17 -msgid "failed" -msgstr "eșuată" - -# @ woocommerce -#: i18n/strings.php:18 -msgid "on-hold" -msgstr "păstrează (On-Hold)" - -# @ woocommerce -#: i18n/strings.php:19 -msgid "processing" -msgstr "în curs de procesare" - -# @ woocommerce -#: i18n/strings.php:20 -msgid "completed" -msgstr "finalizată" - -# @ woocommerce -#: i18n/strings.php:21 -msgid "refunded" -msgstr "rambursată" - -# @ woocommerce -#: i18n/strings.php:22 -msgid "cancelled" -msgstr "anulată" - -# @ woocommerce -#: templates/cart/cart-empty.php:14 -msgid "Your cart is currently empty." -msgstr "Coșul tău este gol." - -# @ woocommerce -#: templates/cart/cart-empty.php:18 -msgid "← Return To Shop" -msgstr "← Înapoi la Magazin" - -# @ woocommerce -#: templates/cart/cart.php:28 templates/checkout/form-pay.php:19 -#: templates/checkout/review-order.php:21 -#: templates/emails/admin-new-order.php:22 -#: templates/emails/customer-completed-order.php:23 -#: templates/emails/customer-invoice.php:27 -#: templates/emails/customer-note.php:27 -#: templates/emails/customer-processing-order.php:23 -#: templates/order/order-details.php:20 woocommerce.php:983 -msgid "Product" -msgstr "Produs" - -# @ woocommerce -#: templates/cart/cart.php:29 templates/emails/admin-new-order.php:24 -#: templates/emails/customer-completed-order.php:25 -#: templates/emails/customer-invoice.php:29 -#: templates/emails/customer-note.php:29 -#: templates/emails/customer-processing-order.php:25 -msgid "Price" -msgstr "Preț" - -# @ woocommerce -#: templates/cart/cart.php:30 templates/emails/admin-new-order.php:23 -#: templates/emails/customer-completed-order.php:24 -#: templates/emails/customer-invoice.php:28 -#: templates/emails/customer-note.php:28 -#: templates/emails/customer-processing-order.php:24 -msgid "Quantity" -msgstr "Cantitate" - -# @ woocommerce -#: templates/cart/cart.php:31 templates/checkout/review-order.php:22 -#: templates/myaccount/my-orders.php:35 templates/order/order-details.php:21 -msgid "Total" -msgstr "Total" - -# @ woocommerce -#: templates/cart/cart.php:47 -msgid "Remove this item" -msgstr "Șterge Acest articol" - -# @ woocommerce -#: templates/cart/cart.php:100 -#: templates/single-product/add-to-cart/quantity.php:12 -msgctxt "Product quantity input tooltip" -msgid "Qty" -msgstr "Cantitate" - -# @ woocommerce -#: templates/cart/cart.php:127 woocommerce.php:1096 -msgid "Coupon" -msgstr "Cupon" - -# @ woocommerce -#: templates/cart/cart.php:127 templates/checkout/form-coupon.php:29 -msgid "Apply Coupon" -msgstr "Aplică Cupon" - -# @ woocommerce -#: templates/cart/cart.php:134 -msgid "Update Cart" -msgstr "Actualizează Coș" - -# @ woocommerce -#: templates/cart/cart.php:134 -msgid "Proceed to Checkout →" -msgstr "Finalizare Comandă →" - -# @ woocommerce -#: templates/cart/cross-sells.php:38 -msgid "You may be interested in…" -msgstr "Ai mai putea fi interesat de:" - -# @ woocommerce -#: templates/cart/mini-cart.php:55 -msgid "No products in the cart." -msgstr "Nu este nici un produs în coș." - -# @ woocommerce -#: templates/cart/mini-cart.php:63 -msgid "Subtotal" -msgstr "Subtotal" - -# @ woocommerce -#: templates/cart/mini-cart.php:69 -msgid "Checkout →" -msgstr "Finalizare Comandă →" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:22 -msgid "Calculate Shipping" -msgstr "Calculează Costuri de Livrare" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:28 woocommerce-template.php:1334 -msgid "Select a country…" -msgstr "Selectează țara…" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:45 -#: templates/cart/shipping-calculator.php:51 -#: templates/cart/shipping-calculator.php:63 -msgid "State / county" -msgstr "Stat / Județ" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:52 woocommerce-template.php:1384 -msgid "Select a state…" -msgstr "Selectează Stat…" - -#: templates/cart/shipping-calculator.php:72 -msgid "City" -msgstr "Oraș" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:85 -msgid "Update Totals" -msgstr "Actualizează Totaluri" - -# @ woocommerce -#: templates/cart/shipping-methods.php:32 -msgid "Free" -msgstr "Gratis!" - -# @ woocommerce -#: templates/cart/shipping-methods.php:68 -msgid "Please fill in your details to see available shipping methods." -msgstr "" -"Vă rugăm introduceți datele mai sus pentru a vedea modalitățile de livrare." - -# @ woocommerce -#: templates/cart/shipping-methods.php:76 templates/cart/totals.php:147 -msgid "" -"Sorry, it seems that there are no available shipping methods for your " -"location (%s)." -msgstr "" -"Ne pare rău, dar se pare că nu există metode de livrare către adresa dvs. " -"(%s)." - -# @ woocommerce -#: templates/cart/shipping-methods.php:76 templates/cart/totals.php:147 -msgid "" -"If you require assistance or wish to make alternate arrangements please " -"contact us." -msgstr "" -"Dacă aveți nevoie de ajutor sau doriți să efectuați alte aranjamente nu " -"ezitați să ne contactați." - -# @ woocommerce -#: templates/cart/totals.php:22 -msgid "Cart Totals" -msgstr "Totaluri Coș" - -# @ woocommerce -#: templates/cart/totals.php:28 templates/checkout/review-order.php:27 -msgid "Cart Subtotal" -msgstr "Subtotaluri Coș" - -# @ woocommerce -#: templates/cart/totals.php:35 templates/checkout/review-order.php:34 -#: woocommerce.php:1690 -msgid "Cart Discount" -msgstr "Reducere Coș" - -# @ woocommerce -#: templates/cart/totals.php:35 templates/cart/totals.php:83 -msgid "[Remove]" -msgstr "[Șterge]" - -# @ woocommerce -#: templates/cart/totals.php:46 templates/checkout/review-order.php:45 -msgid "Shipping" -msgstr "Livrare" - -# @ woocommerce -#: templates/cart/totals.php:83 templates/checkout/review-order.php:82 -msgid "Order Discount" -msgstr "Reducere Comandă" - -# @ woocommerce -#: templates/cart/totals.php:92 templates/checkout/review-order.php:91 -msgid "Order Total" -msgstr "Total Comandă" - -# @ woocommerce -#: templates/cart/totals.php:121 -msgid " (taxes estimated for %s)" -msgstr "(taxe estimate pentru %s)" - -# @ woocommerce -#: templates/cart/totals.php:123 -msgid "" -"Note: Shipping and taxes are estimated%s and will be updated during checkout " -"based on your billing and shipping information." -msgstr "" -"Notă: Costurile de livrare sunt estimative, %s și vor fi actualizate în " -"timpul Finalizării Comenzii în funcție de informațiile de Facturare și " -"Livrare." - -# @ woocommerce -#: templates/cart/totals.php:135 -msgid "" -"No shipping methods were found; please recalculate your shipping and enter " -"your state/county and zip/postcode to ensure there are no other available " -"methods for your location." -msgstr "" -"Nu au fost găsite Metode de Livrare; vă rugăm recalculați costurile de " -"livrare și reintroduceți orașul / județul și codul poștal pentru a ne " -"asigura că nu există alte metode de livrare pentru locația dvs." - -# @ woocommerce -#: templates/checkout/cart-errors.php:16 -msgid "" -"There are some issues with the items in your cart (shown above). Please go " -"back to the cart page and resolve these issues before checking out." -msgstr "" -"Au fost semnalate câteva probleme cu produsele din coșul dvs. - Vedeți " -"informații mai sus. Vă rugăm să vă întoarceți la pagina de Coș și să " -"remediați aceste probleme înainte de Finaliza Comanda." - -# @ woocommerce -#: templates/checkout/cart-errors.php:20 -msgid "← Return To Cart" -msgstr "← Înapoi la Coș" - -# @ woocommerce -#: templates/checkout/form-billing.php:17 -msgid "Billing & Shipping" -msgstr "Facturare & Livrare" - -# @ woocommerce -#: templates/checkout/form-billing.php:21 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:19 templates/myaccount/my-address.php:25 -#: templates/order/order-details.php:115 -msgid "Billing Address" -msgstr "Adresă de Facturare" - -# @ woocommerce -#: templates/checkout/form-billing.php:42 -msgid "Create an account?" -msgstr "Creați un cont?" - -# @ woocommerce -#: templates/checkout/form-billing.php:51 -msgid "" -"Create an account by entering the information below. If you are a returning " -"customer please login at the top of the page." -msgstr "" -"Creează un cont prin completarea formularului de mai jos. Dacă ai deja cont, " -"te rugăm să te autentifici." - -# @ woocommerce -#: templates/checkout/form-checkout.php:20 -msgid "You must be logged in to checkout." -msgstr "Trebuie să fiți logat pentru a Finaliza Comanda." - -# @ woocommerce -#: templates/checkout/form-checkout.php:51 -msgid "Your order" -msgstr "Comanda dvs." - -# @ woocommerce -#: templates/checkout/form-coupon.php:17 -msgid "Have a coupon?" -msgstr "Aveți un Cupon de Promoție?" - -# @ woocommerce -#: templates/checkout/form-coupon.php:20 -msgid "Click here to enter your code" -msgstr "Click aici pentru a introduce codul cuponului" - -# @ woocommerce -#: templates/checkout/form-coupon.php:25 -msgid "Coupon code" -msgstr "Cod Promoțional" - -# @ woocommerce -#: templates/checkout/form-login.php:14 -msgid "Returning customer?" -msgstr "Client existent?" - -# @ woocommerce -#: templates/checkout/form-login.php:17 -msgid "Click here to login" -msgstr "Click aici pentru a vă autentifica." - -# @ woocommerce -#: templates/checkout/form-login.php:22 -msgid "" -"If you have shopped with us before, please enter your details in the boxes " -"below. If you are a new customer please proceed to the Billing & " -"Shipping section." -msgstr "" -"Dacă ai mai cumpărat de la noi, te rugăm să te autentifici. Dacă ești client " -"nou, continuă la pagina de Facturare & Livrare." - -# @ woocommerce -#: templates/checkout/form-pay.php:20 -msgid "Qty" -msgstr "Cantitate" - -# @ woocommerce -#: templates/checkout/form-pay.php:21 -msgid "Totals" -msgstr "Totaluri" - -# @ woocommerce -#: templates/checkout/form-pay.php:78 -msgid "" -"Sorry, it seems that there are no available payment methods for your " -"location. Please contact us if you require assistance or wish to make " -"alternate arrangements." -msgstr "" -"Ne pare rău dar se pare că nu există metode de acceptare a plății în locația " -"dvs. Vă rugăm să ne contactați dacă aveți nevoie de mai multe informații." - -# @ woocommerce -#: templates/checkout/form-pay.php:87 -msgid "Pay for order" -msgstr "Plătește pentru comandă" - -# @ woocommerce -#: templates/checkout/form-shipping.php:32 -msgid "Ship to billing address?" -msgstr "Livrează la Adresa de Facturare?" - -# @ woocommerce -#: templates/checkout/form-shipping.php:35 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:20 templates/order/order-details.php:130 -msgid "Shipping Address" -msgstr "Adresă de Livrare" - -# @ woocommerce -#: templates/checkout/form-shipping.php:59 -#: templates/single-product/tabs/additional-information.php:14 -#: woocommerce-template.php:759 -msgid "Additional Information" -msgstr "Informații adiționale" - -# @ woocommerce -#: templates/checkout/review-order.php:174 -msgid "Please fill in your details above to see available payment methods." -msgstr "" -"Vă rugăm să vă introduceți datele mai sus pentru a vedea modalitățile de " -"plată." - -# @ woocommerce -#: templates/checkout/review-order.php:176 -msgid "" -"Sorry, it seems that there are no available payment methods for your state. " -"Please contact us if you require assistance or wish to make alternate " -"arrangements." -msgstr "" -"Ne pare rău dar se pare că nu există metode de plată activate pentru statul " -"dvs. Vă rugăm să ne contactați dacă aveți nevoie de mai multe informații" - -# @ woocommerce -#: templates/checkout/review-order.php:185 -msgid "" -"Since your browser does not support JavaScript, or it is disabled, please " -"ensure you click the Update Totals button before placing your " -"order. You may be charged more than the amount stated above if you fail to " -"do so." -msgstr "" -"Având în vedere că browser-ul dvs. nu suportă JavaScript sau cel mai " -"probabil JavaScript-ul este dezactivat, vă rugăm să apăsați butonul " -"Actualizare Totaluri înainte de plasa comanda. Există riscul să vi " -"se factureze mai mult decât ar trebui dacă uitați să apăsați butonul " -"Actualizare Totaluri." - -# @ woocommerce -#: templates/checkout/review-order.php:185 -msgid "Update totals" -msgstr "Actualizează Totaluri" - -# @ woocommerce -#: templates/checkout/review-order.php:192 -msgid "Place order" -msgstr "Plasează Comanda" - -# @ woocommerce -#: templates/checkout/review-order.php:199 -msgid "I have read and accept the" -msgstr "Am citit și accept" - -# @ woocommerce -#: templates/checkout/review-order.php:199 -msgid "terms & conditions" -msgstr "Termenii și Condițiile" - -# @ woocommerce -#: templates/checkout/thankyou.php:18 -msgid "" -"Unfortunately your order cannot be processed as the originating bank/" -"merchant has declined your transaction." -msgstr "" -"Din păcate comanda dvs. nu poate fi procesată deoarece banca de origine sau " -"comerciantul a refuzat tranzacția." - -# @ woocommerce -#: templates/checkout/thankyou.php:22 -msgid "Please attempt your purchase again or go to your account page." -msgstr "" -"Încercați să efectuați comanda din nou sau mergeți la pagina dvs. de cont." - -# @ woocommerce -#: templates/checkout/thankyou.php:24 -msgid "Please attempt your purchase again." -msgstr "Vă rugăm să efectuați comanda din nou." - -# @ woocommerce -#: templates/checkout/thankyou.php:36 templates/checkout/thankyou.php:67 -msgid "Thank you. Your order has been received." -msgstr "Vă mulțumim! Comanda dvs. a fost recepționată." - -# @ woocommerce -#: templates/emails/admin-new-order.php:13 -#: templates/emails/plain/admin-new-order.php:13 -msgid "You have received an order from %s. Their order is as follows:" -msgstr "Ai primit o comadă de la %s. Comanda este următoarea:" - -# @ woocommerce -#: templates/emails/admin-new-order.php:17 -msgid "Order: %s" -msgstr "Comanda: %s" - -# @ woocommerce -#: templates/emails/admin-new-order.php:50 -#: templates/emails/customer-completed-order.php:51 -#: templates/emails/customer-note.php:55 -#: templates/emails/customer-processing-order.php:51 -#: templates/emails/plain/admin-new-order.php:38 -#: templates/order/order-details.php:97 -msgid "Customer details" -msgstr "Detalii Client" - -# @ woocommerce -#: templates/emails/admin-new-order.php:53 -#: templates/emails/customer-completed-order.php:54 -#: templates/emails/customer-note.php:58 -#: templates/emails/customer-processing-order.php:54 -#: templates/emails/plain/admin-new-order.php:41 -#: templates/emails/plain/customer-completed-order.php:41 -#: templates/emails/plain/customer-note.php:49 -#: templates/emails/plain/customer-processing-order.php:41 -#: templates/order/order-details.php:101 -msgid "Email:" -msgstr "Email" - -# @ woocommerce -#: templates/emails/admin-new-order.php:56 -#: templates/emails/customer-completed-order.php:57 -#: templates/emails/customer-note.php:61 -#: templates/emails/customer-processing-order.php:57 -#: templates/emails/plain/admin-new-order.php:44 -#: templates/emails/plain/customer-completed-order.php:44 -#: templates/emails/plain/customer-note.php:52 -#: templates/emails/plain/customer-processing-order.php:44 -msgid "Tel:" -msgstr "Tel:" - -# @ woocommerce -#: templates/emails/customer-completed-order.php:14 -#: templates/emails/plain/customer-completed-order.php:13 -msgid "" -"Hi there. Your recent order on %s has been completed. Your order details are " -"shown below for your reference:" -msgstr "" -"Comanda dvs. pe site-ul %s este completă. Detalii comenzii sunt afișate mai " -"jos:" - -# @ woocommerce -#: templates/emails/customer-invoice.php:16 -#: templates/emails/plain/customer-invoice.php:14 -msgid "" -"An order has been created for you on %s. To pay for this order please use " -"the following link: %s" -msgstr "" -"O comandă a fost creeată pentru dvs. pe site-ul “ %s ”. Pentru a " -"achita această comandă vă rugăm să urmați link-ul următor: %s" - -# @ woocommerce -#: templates/emails/customer-invoice.php:16 -msgid "pay" -msgstr "plătește" - -# @ woocommerce -#: templates/emails/customer-new-account.php:14 -#: templates/emails/plain/customer-new-account.php:13 -msgid "" -"Thanks for creating an account on %s. Your username is %s." -msgstr "" -"Vă mulțumim pentru creeare unui cont la magazinul %s. Numele de utilizator " -"este: %s ." - -# @ woocommerce -#: templates/emails/customer-new-account.php:16 -#: templates/emails/plain/customer-new-account.php:15 -msgid "You can access your account area here: %s." -msgstr "Vă puteți accesa contul aici: %s." - -# @ woocommerce -#: templates/emails/customer-note.php:14 -#: templates/emails/plain/customer-note.php:13 -msgid "Hello, a note has just been added to your order:" -msgstr "Bună! A fost adăugată o notiță la comanda dvs.:" - -# @ woocommerce -#: templates/emails/customer-note.php:18 -#: templates/emails/plain/customer-note.php:21 -msgid "For your reference, your order details are shown below." -msgstr "Detaliile despre comandă sunt afișate mai jos." - -# @ woocommerce -#: templates/emails/customer-processing-order.php:14 -#: templates/emails/plain/customer-processing-order.php:13 -msgid "" -"Your order has been received and is now being processed. Your order details " -"are shown below for your reference:" -msgstr "" -"Comanda dvs. a fost primită şi este în curs de procesare. Detaliile dvs. de " -"comandă sunt prezentate mai jos pentru referinţă:" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:14 -#: templates/emails/plain/customer-reset-password.php:13 -msgid "Someone requested that the password be reset for the following account:" -msgstr "Cineva a cerut ca parola să fie resetată pentru următorul cont:" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:15 -#: templates/emails/plain/customer-reset-password.php:15 -msgid "Username: %s" -msgstr "Nume Utilizator: %s" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:16 -#: templates/emails/plain/customer-reset-password.php:16 -msgid "If this was a mistake, just ignore this email and nothing will happen." -msgstr "" -"În cazul în care acest lucru a fost o greșeală, pur şi simplu ignoraţi acest " -"e-mail și nimic nu se va întâmpla." - -# @ woocommerce -#: templates/emails/customer-reset-password.php:17 -#: templates/emails/plain/customer-reset-password.php:17 -msgid "To reset your password, visit the following address:" -msgstr "Pentru a vă reseta parola, vă rugăm să vizitaţi următoarea adresă:" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:20 -msgid "Click here to reset your password" -msgstr "Click aici pentru a vă reseta parola" - -# @ woocommerce -#: templates/emails/email-addresses.php:18 -#: templates/emails/plain/email-addresses.php:12 -msgid "Billing address" -msgstr "Adresa de Facturare" - -# @ woocommerce -#: templates/emails/email-addresses.php:28 -#: templates/emails/plain/email-addresses.php:17 -msgid "Shipping address" -msgstr "Adresa de Livrare" - -# @ woocommerce -#: templates/emails/email-order-items.php:47 -msgid "Download %d:" -msgstr "Descărcare %d:" - -# @ woocommerce -#: templates/emails/email-order-items.php:49 -msgid "Download:" -msgstr "Descărcare:" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:19 -#: templates/emails/plain/customer-completed-order.php:19 -#: templates/emails/plain/customer-invoice.php:20 -#: templates/emails/plain/customer-note.php:27 -#: templates/emails/plain/customer-processing-order.php:19 -msgid "Order number: %s" -msgstr "Număr Comandă: %s" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:20 -#: templates/emails/plain/customer-completed-order.php:20 -#: templates/emails/plain/customer-invoice.php:21 -#: templates/emails/plain/customer-note.php:28 -#: templates/emails/plain/customer-processing-order.php:20 -msgid "Order date: %s" -msgstr "Dată Comandă: %s" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:20 -msgid "jS F Y" -msgstr "j F Y" - -# @ woocommerce -#: templates/emails/plain/customer-completed-order.php:38 -#: templates/emails/plain/customer-note.php:46 -#: templates/emails/plain/customer-processing-order.php:38 -msgid "Your details" -msgstr "Detaliile dumneavostră" - -# @ woocommerce -#: templates/emails/plain/email-order-items.php:28 -msgid "Quantity: %s" -msgstr "Cantitate: %s" - -# @ woocommerce -#: templates/emails/plain/email-order-items.php:31 -msgid "Cost: %s" -msgstr "Cost: %s" - -# @ woocommerce -#: templates/loop/add-to-cart.php:17 templates/loop/add-to-cart.php:41 -#: templates/loop/add-to-cart.php:50 -msgid "Read More" -msgstr "Citește mai mult" - -# @ woocommerce -#: templates/loop/add-to-cart.php:33 -msgid "Select options" -msgstr "Selectează opțiuni" - -# @ woocommerce -#: templates/loop/add-to-cart.php:37 -msgid "View options" -msgstr "Vezi opțiuni" - -# @ woocommerce -#: templates/loop/no-products-found.php:14 templates/loop-shop.php:40 -msgid "No products found which match your selection." -msgstr "" -"Nu a fost găsit nici un produs care să îndeplinească criteriile specificate " -"de dvs." - -# @ woocommerce -#: templates/loop/orderby.php:21 -msgid "Default sorting" -msgstr "Sortare implicită" - -# @ woocommerce -#: templates/loop/orderby.php:22 -msgid "Sort by popularity" -msgstr "Sortează după popularitate" - -# @ woocommerce -#: templates/loop/orderby.php:23 -msgid "Sort by average rating" -msgstr "Sortează dupa Notarea Medie " - -# @ woocommerce -#: templates/loop/orderby.php:24 -msgid "Sort by newness" -msgstr "Sortează după noutate" - -# @ woocommerce -#: templates/loop/orderby.php:25 -msgid "Sort by price: low to high" -msgstr "Sortează după preț: Mic la Mare" - -# @ woocommerce -#: templates/loop/orderby.php:26 -msgid "Sort by price: high to low" -msgstr "Sortează după preț: Mare la Mic" - -# @ woocommerce -#: templates/loop/result-count.php:28 -msgid "Showing the single result" -msgstr "Se afișează singurul rezultat" - -# @ woocommerce -#: templates/loop/result-count.php:30 -msgid "Showing all %d results" -msgstr "Se afișează toate cele %d de rezultate" - -# @ woocommerce -#: templates/loop/result-count.php:32 -msgctxt "%1$d = first, %2$d = last, %3$d = total" -msgid "Showing %1$d–%2$d of %3$d results" -msgstr "Se afișează %1$d–%2$d din %3$d rezultate" - -# @ woocommerce -#: templates/loop/sale-flash.php:16 templates/single-product/sale-flash.php:16 -msgid "Sale!" -msgstr "Reducere!" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:20 -#: templates/myaccount/form-lost-password.php:31 -msgid "New password" -msgstr "Parolă Nouă" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:24 -#: templates/myaccount/form-lost-password.php:35 -msgid "Re-enter new password" -msgstr "Introdu noua parolă încă o dată" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:29 -#: templates/myaccount/form-lost-password.php:45 -msgid "Save" -msgstr "Salvează" - -# @ woocommerce -#: templates/myaccount/form-edit-address.php:43 -msgid "Save Address" -msgstr "Salvează Adresa" - -# @ woocommerce -#: templates/myaccount/form-login.php:26 templates/myaccount/form-login.php:40 -#: templates/shop/form-login.php:31 -msgid "Login" -msgstr "Autentificare" - -# @ woocommerce -#: templates/myaccount/form-login.php:29 -#: templates/myaccount/form-lost-password.php:24 -#: templates/shop/form-login.php:20 -msgid "Username or email" -msgstr "Nume Utilizator sau Email" - -# @ woocommerce -#: templates/myaccount/form-login.php:33 templates/myaccount/form-login.php:85 -#: templates/shop/form-login.php:24 -msgid "Password" -msgstr "Parola" - -# @ woocommerce -#: templates/myaccount/form-login.php:50 templates/shop/form-login.php:33 -msgid "Lost Password?" -msgstr "Ai uitat parola?" - -# @ woocommerce -#: templates/myaccount/form-login.php:60 -#: templates/myaccount/form-login.php:101 -msgid "Register" -msgstr "Înregistrează" - -# @ woocommerce -#: templates/myaccount/form-login.php:66 -msgid "Username" -msgstr "Nume Utilizator" - -# @ woocommerce -#: templates/myaccount/form-login.php:78 -#: templates/single-product-reviews.php:86 -msgid "Email" -msgstr "Email" - -# @ woocommerce -#: templates/myaccount/form-login.php:89 -msgid "Re-enter password" -msgstr "Introdu parola din nou" - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:22 -msgid "" -"Lost your password? Please enter your username or email address. You will " -"receive a link to create a new password via email." -msgstr "" -"V-aţi uitat parola? Vă rugăm să introduceţi numele de utilizator sau adresa " -"de e-mail folosită la înregistrare. O să primiţi link-ul pentru resetarea " -"parolei pe adresa de e-mail utilizată la înregistrare" - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:28 -msgid "Enter a new password below." -msgstr "Introdu o parolă nouă mai jos." - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:45 -msgid "Reset Password" -msgstr "Resetează Parola" - -# @ woocommerce -#: templates/myaccount/my-account.php:19 -msgid "" -"Hello, %s. From your account dashboard you can view your " -"recent orders, manage your shipping and billing addresses and change your password." -msgstr "" -"Bună %s. Din Panoul de Control poți vedea comenzile " -"recente; Poți modifica adresele de Facturare sau Livrare și poți modifica parola." - -# @ woocommerce -#: templates/myaccount/my-address.php:17 -msgid "My Addresses" -msgstr "Adresa Mea" - -# @ woocommerce -#: templates/myaccount/my-address.php:23 -msgid "My Address" -msgstr "Adresa Mea" - -# @ woocommerce -#: templates/myaccount/my-address.php:35 -msgid "The following addresses will be used on the checkout page by default." -msgstr "Următoarea adresă va fi utilizată pe pagina Finalizare Comandă." - -# @ default -# @ woocommerce -#: templates/myaccount/my-address.php:45 woocommerce.php:951 -#: woocommerce.php:987 woocommerce.php:1024 woocommerce.php:1062 -#: woocommerce.php:1100 -msgid "Edit" -msgstr "Editare" - -# @ woocommerce -#: templates/myaccount/my-address.php:64 -msgid "You have not set up this type of address yet." -msgstr "Încă nu ai setat acest tip de adresă" - -# @ woocommerce -#: templates/myaccount/my-downloads.php:18 -msgid "Available downloads" -msgstr "Descărcări disponibile" - -# @ woocommerce -#: templates/myaccount/my-downloads.php:27 -msgid "%s download remaining" -msgid_plural "%s downloads remaining" -msgstr[0] "%s descărcare disponibilă" -msgstr[1] "%s descărcări disponibile" - -# @ woocommerce -#: templates/myaccount/my-orders.php:26 -msgid "Recent Orders" -msgstr "Comenzi Recente" - -# @ woocommerce -#: templates/myaccount/my-orders.php:32 woocommerce.php:1059 -msgid "Order" -msgstr "Comandă" - -# @ woocommerce -#: templates/myaccount/my-orders.php:33 -msgid "Date" -msgstr "Data" - -# @ woocommerce -#: templates/myaccount/my-orders.php:34 -msgid "Status" -msgstr "Status" - -# @ woocommerce -#: templates/myaccount/my-orders.php:62 -msgid "%s for %s item" -msgid_plural "%s for %s items" -msgstr[0] "%s pentru %s item" -msgstr[1] "%s pentru %s item-uri" - -# @ woocommerce -#: templates/myaccount/my-orders.php:77 -msgid "Cancel" -msgstr "Anulează" - -# @ default -# @ woocommerce -#: templates/myaccount/my-orders.php:82 -msgid "View" -msgstr "Vizualizare" - -# @ woocommerce -#: templates/order/form-tracking.php:17 -msgid "" -"To track your order please enter your Order ID in the box below and press " -"return. This was given to you on your receipt and in the confirmation email " -"you should have received." -msgstr "" -"Pentru a urmări comanda dvs. vă rugăm introduceți codul de identificare a " -"comenzii în căsuța de mai jos și apăsați \"Enter\". Codul de Identificare a " -"comenzii a fost trimis odată cu factura și emailul de confirmare a plasării " -"comenzii." - -# @ woocommerce -#: templates/order/form-tracking.php:19 -msgid "Order ID" -msgstr "Cod Identificare Comandă" - -# @ woocommerce -#: templates/order/form-tracking.php:19 -msgid "Found in your order confirmation email." -msgstr "Se află în emailul de confirmare primit." - -# @ woocommerce -#: templates/order/form-tracking.php:20 -msgid "Billing Email" -msgstr "Adresa de email utilizată pentru Facturare." - -# @ woocommerce -#: templates/order/form-tracking.php:20 -msgid "Email you used during checkout." -msgstr "Adresa de email utilizată la Plasarea Comenzii." - -# @ woocommerce -#: templates/order/form-tracking.php:23 -msgid "Track" -msgstr "Urmărește" - -# @ woocommerce -#: templates/order/order-details.php:16 -msgid "Order Details" -msgstr "Detalii Comandă" - -# @ woocommerce -#: templates/order/order-details.php:64 -msgid "Download file%s" -msgstr "Descarcă fișierul %s" - -# @ woocommerce -#: templates/order/order-details.php:90 -msgid "Order Again" -msgstr "Comandă din Nou" - -# @ woocommerce -#: templates/order/order-details.php:102 -msgid "Telephone:" -msgstr "Telefon:" - -# @ woocommerce -#: templates/order/tracking.php:18 -msgid "Order %s which was made %s has the status “%s”" -msgstr "" -"Comanda %s a fost efectuată în data de %s are statusul “%s”" - -# @ woocommerce -#: templates/order/tracking.php:18 -msgid "ago" -msgstr "în urmă" - -# @ woocommerce -#: templates/order/tracking.php:20 -msgid "and was completed" -msgstr "și a fost finalizată" - -# @ woocommerce -#: templates/order/tracking.php:20 -msgid " ago" -msgstr "în urmă" - -# @ woocommerce -#: templates/shop/breadcrumb.php:63 -msgid "Products tagged “" -msgstr "Produse etichetate “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:91 templates/shop/breadcrumb.php:188 -msgid "Search results for “" -msgstr "Rezultate căutări “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:146 -msgid "Error 404" -msgstr "Eroare 404" - -# @ woocommerce -#: templates/shop/breadcrumb.php:192 -msgid "Posts tagged “" -msgstr "Articole etichetate “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:197 -msgid "Author:" -msgstr "Autor:" - -# @ woocommerce -#: templates/shop/breadcrumb.php:202 -msgid "Page" -msgstr "Pagină" - -# @ woocommerce -#: templates/single-product/add-to-cart/variable.php:24 -msgid "Choose an option" -msgstr "Alege o opțiune" - -# @ woocommerce -#: templates/single-product/add-to-cart/variable.php:69 -msgid "Clear selection" -msgstr "Șterge selecția" - -# @ product_cat -#: templates/single-product/meta.php:24 -msgid "Category:" -msgid_plural "Categories:" -msgstr[0] "Categorie:" -msgstr[1] "Categorii:" - -# @ product_tag -#: templates/single-product/meta.php:29 -msgid "Tag:" -msgid_plural "Tags:" -msgstr[0] "Etichetă:" -msgstr[1] "Etichete:" - -# @ woocommerce -#: templates/single-product/product-attributes.php:28 -msgid "Weight" -msgstr "Greutate" - -# @ woocommerce -#: templates/single-product/product-attributes.php:37 -msgid "Dimensions" -msgstr "Dimensiuni" - -# @ woocommerce -#: templates/single-product/related.php:36 -msgid "Related Products" -msgstr "Produse similare" - -# @ woocommerce -#: templates/single-product/review.php:26 -msgid "Rated %d out of 5" -msgstr "Evaluat la %d stele din 5" - -# @ woocommerce -#: templates/single-product/review.php:33 -msgid "Your comment is awaiting approval" -msgstr "Comentariul tău este trimis spre aprobare" - -# @ woocommerce -#: templates/single-product/review.php:40 -msgid "verified owner" -msgstr "proprietar verificat" - -# @ woocommerce -#: templates/single-product/tabs/description.php:14 -msgid "Product Description" -msgstr "Descriere Produs" - -# @ woocommerce -#: templates/single-product/up-sells.php:39 -msgid "You may also like…" -msgstr "S-ar putea să îți placă și:" - -# @ woocommerce -#: templates/single-product-reviews.php:30 -msgid "%s review for %s" -msgid_plural "%s reviews for %s" -msgstr[0] "%s recenzie pentru %s" -msgstr[1] "%s recenzii pentru %s" - -# @ woocommerce -#: templates/single-product-reviews.php:36 -#: templates/single-product-reviews.php:42 -msgid "Reviews" -msgstr "Opinii" - -# @ woocommerce -#: templates/single-product-reviews.php:58 -msgid " Previous" -msgstr " Anterior" - -# @ woocommerce -#: templates/single-product-reviews.php:59 -msgid "Next " -msgstr "Următor " - -# @ woocommerce -#: templates/single-product-reviews.php:63 -msgid "Add Your Review" -msgstr "Adaugă Recenzie" - -# @ woocommerce -#: templates/single-product-reviews.php:63 -msgid "Add Review" -msgstr "Adaugă Comentariu" - -# @ woocommerce -#: templates/single-product-reviews.php:65 -msgid "Add a review" -msgstr "Adaugă un comentariu" - -# @ woocommerce -#: templates/single-product-reviews.php:69 -msgid "Be the first to review" -msgstr "Fii primul care comentează" - -# @ woocommerce -#: templates/single-product-reviews.php:71 -msgid "" -"There are no reviews yet, would you like to submit yours?" -msgstr "" -"Nu există nici un comentariu, vrei să fii primul care comentează? Dacă da, " -"atunci Click " -"Aici!" - -# @ woocommerce -#: templates/single-product-reviews.php:89 -msgid "Submit Review" -msgstr "Trimite Comentariu" - -# @ woocommerce -#: templates/single-product-reviews.php:96 -msgid "Rating" -msgstr "Notă" - -# @ woocommerce -#: templates/single-product-reviews.php:97 -msgid "Rate…" -msgstr "Rată…" - -# @ woocommerce -#: templates/single-product-reviews.php:98 -msgid "Perfect" -msgstr "Perfect" - -# @ woocommerce -#: templates/single-product-reviews.php:99 -msgid "Good" -msgstr "Bun" - -# @ woocommerce -#: templates/single-product-reviews.php:100 -msgid "Average" -msgstr "Potrivit" - -# @ woocommerce -#: templates/single-product-reviews.php:101 -msgid "Not that bad" -msgstr "Nu e rău" - -# @ woocommerce -#: templates/single-product-reviews.php:102 -msgid "Very Poor" -msgstr "Foarte slab" - -# @ woocommerce -#: templates/single-product-reviews.php:107 -msgid "Your Review" -msgstr "Recenzia ta" - -# @ woocommerce -#: woocommerce-ajax.php:119 -msgid "Sorry, your session has expired." -msgstr "Ne pare rău, sesiunea dvs. a expirat." - -# @ woocommerce -#: woocommerce-ajax.php:119 -msgid "Return to homepage →" -msgstr "Înapoi la Pagina Principală →" - -# @ woocommerce -#: woocommerce-ajax.php:256 woocommerce-ajax.php:290 woocommerce-ajax.php:313 -msgid "You do not have sufficient permissions to access this page." -msgstr "Nu aveți drepturi pentru a accesa această pagină." - -# @ woocommerce -#: woocommerce-ajax.php:258 woocommerce-ajax.php:291 woocommerce-ajax.php:314 -msgid "You have taken too long. Please go back and retry." -msgstr "" -"A durat prea mult timp. Vă rugăm să vă întoarceți și să încercați din nou." - -# @ woocommerce -#: woocommerce-ajax.php:550 -msgid "Same as parent" -msgstr "La fel ca părintele" - -# @ woocommerce -#: woocommerce-ajax.php:551 -msgid "Standard" -msgstr "Standard" - -# @ woocommerce -#: woocommerce-ajax.php:1098 -msgid "" -"No products had their stock reduced - they may not have stock management " -"enabled." -msgstr "" -"Nu a fost redus stocul niciunui produs - este posibil să nu aibă opțiunea de " -"gestionare a stocurilor activată " - -# @ woocommerce -#: woocommerce-ajax.php:1142 woocommerce-ajax.php:1143 -msgid "Item #%s stock increased from %s to %s." -msgstr "Stocul articolului #%s a fost crescut de la %s la %s." - -# @ woocommerce -#: woocommerce-ajax.php:1150 -msgid "" -"No products had their stock increased - they may not have stock management " -"enabled." -msgstr "" -"Nu a fost crescut stocul niciunui produs - este posibil să nu aibă opțiunea " -"de gestionare a stocurilor activată " - -# @ woocommerce -#: woocommerce-ajax.php:1171 -msgid "Value" -msgstr "Valoare" - -# @ woocommerce -#: woocommerce-ajax.php:1485 -msgid "Delete note" -msgstr "Șterge mențiune" - -# @ woocommerce -#: woocommerce-core-functions.php:275 -msgid "%s – %s%s" -msgstr "%s – %s%s" - -# @ woocommerce -#: woocommerce-core-functions.php:698 -msgid "Australian Dollars" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:699 -msgid "Brazilian Real" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:700 -msgid "Canadian Dollars" -msgstr "Dolari Canadieni" - -# @ woocommerce -#: woocommerce-core-functions.php:701 -msgid "Chinese Yuan" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:702 -msgid "Czech Koruna" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:703 -msgid "Danish Krone" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:704 -msgid "Euros" -msgstr "Euro" - -# @ woocommerce -#: woocommerce-core-functions.php:705 -msgid "Hong Kong Dollar" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:706 -msgid "Hungarian Forint" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:707 -msgid "Indonesia Rupiah" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:708 -msgid "Indian Rupee" -msgstr "Rupie Indiană" - -# @ woocommerce -#: woocommerce-core-functions.php:709 -msgid "Israeli Shekel" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:710 -msgid "Japanese Yen" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:711 -msgid "South Korean Won" -msgstr "Woni sud-coreeni" - -# @ woocommerce -#: woocommerce-core-functions.php:712 -msgid "Malaysian Ringgits" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:713 -msgid "Mexican Peso" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:714 -msgid "Norwegian Krone" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:715 -msgid "New Zealand Dollar" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:716 -msgid "Philippine Pesos" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:717 -msgid "Polish Zloty" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:718 -msgid "Pounds Sterling" -msgstr "Lire Sterline" - -# @ woocommerce -#: woocommerce-core-functions.php:719 -msgid "Romanian Leu" -msgstr "Lei" - -# @ woocommerce -#: woocommerce-core-functions.php:720 -msgid "Singapore Dollar" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:721 -msgid "South African rand" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:722 -msgid "Swedish Krona" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:723 -msgid "Swiss Franc" -msgstr "Franc Elvețian" - -# @ woocommerce -#: woocommerce-core-functions.php:724 -msgid "Taiwan New Dollars" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:725 -msgid "Thai Baht" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:726 -msgid "Turkish Lira" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:727 -msgid "US Dollars" -msgstr "Dolar American" - -# @ woocommerce -#: woocommerce-core-functions.php:1215 woocommerce-core-functions.php:1241 -msgid "Download Permissions Granted" -msgstr "Permisiunea de a descărca a fost acordată." - -# @ woocommerce -#: woocommerce-core-functions.php:1365 -msgctxt "slug" -msgid "uncategorized" -msgstr "fara-categorie" - -# @ woocommerce -#: woocommerce-core-functions.php:1554 -msgid "Select a category" -msgstr "Selectează o categorie" - -# @ woocommerce -#: woocommerce-core-functions.php:1558 -msgid "Uncategorized" -msgstr "Fără Categorie" - -# @ woocommerce -#: woocommerce-core-functions.php:1930 -msgid "Customer" -msgstr "Client" - -# @ woocommerce -#: woocommerce-core-functions.php:1937 -msgid "Shop Manager" -msgstr "Manager Magazin" - -# @ woocommerce -#: woocommerce-core-functions.php:2494 -msgid "Unpaid order cancelled - time limit reached." -msgstr "" -"Comenzile neachitate au fost anulate - Limita de timp în care se putea " -"efectua plata a fost atinsă." - -# @ woocommerce -#: woocommerce-functions.php:226 woocommerce-functions.php:271 -msgid "Cart updated." -msgstr "Coș actualizat." - -# @ woocommerce -#: woocommerce-functions.php:257 -msgid "You can only have 1 %s in your cart." -msgstr "Puteți avea în Coș doar 1 %s." - -# @ woocommerce -#: woocommerce-functions.php:315 woocommerce-functions.php:373 -msgid "Please choose product options…" -msgstr "Vă rugăm selectați opțiunile produsului …" - -# @ woocommerce -#: woocommerce-functions.php:406 -msgid "" -"Please choose the quantity of items you wish to add to your cart…" -msgstr "" -"Vă rugăm să alegeţi cantitatea de produse pe care doriți să le adăugați în " -"coş…" - -# @ woocommerce -#: woocommerce-functions.php:413 -msgid "Please choose a product to add to your cart…" -msgstr "Vă rugăm selectați un produs pentru a-l adăuga în coș …" - -# @ woocommerce -#: woocommerce-functions.php:482 -msgid "Added "%s" to your cart." -msgstr ""%s" adăugat în coș." - -# @ default -#: woocommerce-functions.php:482 -msgid "" and "" -msgstr "" şi "" - -# @ woocommerce -#: woocommerce-functions.php:485 -msgid ""%s" was successfully added to your cart." -msgstr "Produsul "%s" a fost adăugat cu succes în Coșul dvs." - -# @ woocommerce -#: woocommerce-functions.php:493 -msgid "Continue Shopping →" -msgstr "Continuați cumpărăturile →" - -# @ woocommerce -#: woocommerce-functions.php:660 -msgid "Username is required." -msgstr "Numele de utilizator este necesar." - -# @ woocommerce -#: woocommerce-functions.php:661 woocommerce-functions.php:756 -msgid "Password is required." -msgstr "Parola este necesară." - -# @ woocommerce -#: woocommerce-functions.php:730 -msgid "Please enter a username." -msgstr "Vă rugăm introduceți un nume de utilizator." - -# @ woocommerce -#: woocommerce-functions.php:732 -msgid "" -"This username is invalid because it uses illegal characters. Please enter a " -"valid username." -msgstr "" -"Acest nume de utilizator este invalid deoarece conține caractere nepermise. " -"Vă rugăm introduceți un nume de utilizator corespunzător." - -# @ woocommerce -#: woocommerce-functions.php:735 -msgid "This username is already registered, please choose another one." -msgstr "" -"Acest nume de utilizator există deja. Vă rugăm introduceți un alt nume de " -"utilizator." - -# @ woocommerce -#: woocommerce-functions.php:747 -msgid "Please type your e-mail address." -msgstr "Vă rugăm introduceți adresa dvs. de email." - -# @ woocommerce -#: woocommerce-functions.php:749 -msgid "The email address isn’t correct." -msgstr "Adresa de email nu este corectă." - -# @ woocommerce -#: woocommerce-functions.php:752 -msgid "This email is already registered, please choose another one." -msgstr "" -"Această adresă de email este deja utilizată. Folosiți o altă adresă de email." - -# @ woocommerce -#: woocommerce-functions.php:757 -msgid "Re-enter your password." -msgstr "Reintroduceți parola." - -# @ woocommerce -#: woocommerce-functions.php:762 -msgid "Anti-spam field was filled in." -msgstr "Câmpul anti-spam a fost completat." - -# @ woocommerce -#: woocommerce-functions.php:870 -msgid "The cart has been filled with the items from your previous order." -msgstr "Coșul de Cumpărături a fost umplut cu produse comandate anterior." - -# @ woocommerce -#: woocommerce-functions.php:896 -msgid "Order cancelled by customer." -msgstr "Comandă anulată de către client." - -# @ woocommerce -#: woocommerce-functions.php:899 -msgid "Your order was cancelled." -msgstr "Comanda dvs. a fost anulată." - -# @ woocommerce -#: woocommerce-functions.php:905 -msgid "" -"Your order is no longer pending and could not be cancelled. Please contact " -"us if you need assistance." -msgstr "" -"Comanda dvs. nu mai poate fi anulată. Vă rugăm să ne contactați dacă aveți " -"nevoie de asistență." - -# @ woocommerce -#: woocommerce-functions.php:940 -msgid "Invalid email address." -msgstr "Adresă de email invalidă." - -# @ woocommerce -#: woocommerce-functions.php:940 woocommerce-functions.php:963 -#: woocommerce-functions.php:983 woocommerce-functions.php:989 -#: woocommerce-functions.php:993 woocommerce-functions.php:996 -#: woocommerce-functions.php:1026 woocommerce-functions.php:1158 -msgid "Go to homepage →" -msgstr "Înapoi la Pagina Principală →" - -# @ woocommerce -#: woocommerce-functions.php:963 -msgid "Invalid download." -msgstr "Descărcare invalidă." - -# @ woocommerce -#: woocommerce-functions.php:975 -msgid "You must be logged in to download files." -msgstr "Trebuie să fi autentificat pentru a descărca fișiere." - -# @ woocommerce -#: woocommerce-functions.php:975 -msgid "Login →" -msgstr "Autentificare →" - -# @ woocommerce -#: woocommerce-functions.php:978 -msgid "This is not your download link." -msgstr "Acesta nu este link-ul tău pentru descărcări." - -# @ woocommerce -#: woocommerce-functions.php:983 -msgid "Product no longer exists." -msgstr "Produsul nu mai există." - -# @ woocommerce -#: woocommerce-functions.php:993 -msgid "Sorry, you have reached your download limit for this file" -msgstr "Ne pare rău ai atins limita permisă de descărcări pentru acest fișier." - -# @ woocommerce -#: woocommerce-functions.php:996 -msgid "Sorry, this download has expired" -msgstr "Ne pare rău acest fișier descărcabil nu mai este disponibil" - -# @ woocommerce -#: woocommerce-functions.php:1026 -msgid "No file defined" -msgstr "Nici un fișier definit" - -# @ woocommerce -#: woocommerce-functions.php:1158 -msgid "File not found" -msgstr "Fișierul nu a fost găsit" - -# @ woocommerce -#: woocommerce-functions.php:1274 -msgid "New products" -msgstr "Produse noi" - -# @ woocommerce -#: woocommerce-functions.php:1282 -msgid "New products added to %s" -msgstr "Produse noi adăugate la %s" - -# @ woocommerce -#: woocommerce-functions.php:1290 -msgid "New products tagged %s" -msgstr "Produse noi etichetate cu %s" - -# @ woocommerce -#: woocommerce-functions.php:1328 -msgid "You have taken too long. Please go back and refresh the page." -msgstr "" -"A durat prea mult timp. Vă rugăm să vă întoarceți și să reîncărcați pagina." - -# @ woocommerce -#: woocommerce-functions.php:1331 -msgid "Please rate the product." -msgstr "Vă rugăm evaluați produsul." - -# @ woocommerce -#: woocommerce-functions.php:1639 -msgid "Password changed successfully." -msgstr "Parola a fost schimbată cu succes" - -# @ woocommerce -#: woocommerce-functions.php:1715 -msgid "Address changed successfully." -msgstr "Adresa a fost schimbată cu succes" - -# @ woocommerce -#: woocommerce-template.php:200 -msgid "" -"This is a demo store for testing purposes — no orders shall be " -"fulfilled." -msgstr "" -"Acesta magazin demo pentru testare — nici o comandă nu va fi onorată." - -# @ woocommerce -#: woocommerce-template.php:219 -msgid "Search Results: “%s”" -msgstr "Rezultatele Căutării “%s”" - -# @ woocommerce -#: woocommerce-template.php:222 -msgid " – Page %s" -msgstr " – Pagina %s" - -# @ woocommerce -#: woocommerce-template.php:767 -msgid "Reviews (%d)" -msgstr "Recenzii (%d)" - -# @ woocommerce -#: woocommerce-template.php:993 -msgctxt "breadcrumb" -msgid "Home" -msgstr "Acasă" - -# @ woocommerce -#: woocommerce-template.php:1292 woocommerce.php:1209 -msgid "required" -msgstr "obligatoriu" - -# @ woocommerce -#: woocommerce-template.php:1341 -msgid "Update country" -msgstr "Actualizează țara" - -# @ woocommerce -#: woocommerce-template.php:1496 -msgid "Search for:" -msgstr "Caută:" - -# @ woocommerce -#: woocommerce-template.php:1497 -msgid "Search for products" -msgstr "Caută produse:" - -# @ woocommerce -#: woocommerce-template.php:1498 woocommerce.php:947 -msgid "Search" -msgstr "Caută" - -#: woocommerce.php:171 -msgid "Docs" -msgstr "Documentație" - -#: woocommerce.php:172 -msgid "Premium Support" -msgstr "Suport Premium" - -# @ woocommerce -#: woocommerce.php:786 -msgctxt "slug" -msgid "product-category" -msgstr "categorie-produs" - -# @ woocommerce -#: woocommerce.php:787 -msgctxt "slug" -msgid "product-tag" -msgstr "eticheta-produs" - -# @ woocommerce -#: woocommerce.php:789 -msgctxt "slug" -msgid "product" -msgstr "produs" - -# @ woocommerce -#: woocommerce.php:824 -msgid "Product Category" -msgstr "Categorie Produs" - -# @ woocommerce -#: woocommerce.php:825 -msgctxt "Admin menu name" -msgid "Categories" -msgstr "Categorii" - -# @ woocommerce -#: woocommerce.php:826 -msgid "Search Product Categories" -msgstr "Caută prin Categoriile de Produs" - -# @ woocommerce -#: woocommerce.php:827 -msgid "All Product Categories" -msgstr "Toate Categoriile de Produs" - -# @ woocommerce -#: woocommerce.php:828 -msgid "Parent Product Category" -msgstr "Categorie Principală de Produs" - -# @ woocommerce -#: woocommerce.php:829 -msgid "Parent Product Category:" -msgstr "Categorie Principală de Produs:" - -# @ woocommerce -#: woocommerce.php:830 -msgid "Edit Product Category" -msgstr "Modifică Categorie Produs" - -# @ woocommerce -#: woocommerce.php:831 -msgid "Update Product Category" -msgstr "Actualizează Categorie Produs" - -# @ woocommerce -#: woocommerce.php:832 -msgid "Add New Product Category" -msgstr "Adaugă Categorie Nouă de Produs" - -# @ woocommerce -#: woocommerce.php:833 -msgid "New Product Category Name" -msgstr "Adaugă nume nou pentru Categorie de produs" - -# @ woocommerce -#: woocommerce.php:860 -msgid "Product Tag" -msgstr "Etichetă Produs" - -# @ woocommerce -#: woocommerce.php:861 -msgctxt "Admin menu name" -msgid "Tags" -msgstr "Etichete" - -# @ woocommerce -#: woocommerce.php:862 -msgid "Search Product Tags" -msgstr "Caută prin Etichetele de Produs" - -# @ woocommerce -#: woocommerce.php:863 -msgid "All Product Tags" -msgstr "Toate Etichetele de Produs" - -# @ woocommerce -#: woocommerce.php:864 -msgid "Parent Product Tag" -msgstr "Etichetă Principală Produs" - -# @ woocommerce -#: woocommerce.php:865 -msgid "Parent Product Tag:" -msgstr "Etichetă Principală Produs:" - -# @ woocommerce -#: woocommerce.php:866 -msgid "Edit Product Tag" -msgstr "Modifică Etichetă de Produs" - -# @ woocommerce -#: woocommerce.php:867 -msgid "Update Product Tag" -msgstr "Actualizează Etichetă de Produs" - -# @ woocommerce -#: woocommerce.php:868 -msgid "Add New Product Tag" -msgstr "Adaugă Etichetă de Produs (?)" - -# @ woocommerce -#: woocommerce.php:869 -msgid "New Product Tag Name" -msgstr "Adaugă Etichetă Principală Produs" - -# @ woocommerce -#: woocommerce.php:888 woocommerce.php:890 -msgid "Shipping Classes" -msgstr "Clase de Expediere" - -# @ woocommerce -#: woocommerce.php:892 -msgctxt "Admin menu name" -msgid "Shipping Classes" -msgstr "Clase de Expediere" - -# @ woocommerce -#: woocommerce.php:893 -msgid "Search Shipping Classes" -msgstr "Caută în Clasele de Expediere" - -# @ woocommerce -#: woocommerce.php:894 -msgid "All Shipping Classes" -msgstr "Toate Clasele de Expediere" - -# @ woocommerce -#: woocommerce.php:895 -msgid "Parent Shipping Class" -msgstr "Clasă Principală de Expediere" - -# @ woocommerce -#: woocommerce.php:896 -msgid "Parent Shipping Class:" -msgstr "Clasă Principală de Expediere:" - -# @ woocommerce -#: woocommerce.php:897 -msgid "Edit Shipping Class" -msgstr "Modfică Clasă de Expediere" - -# @ woocommerce -#: woocommerce.php:898 -msgid "Update Shipping Class" -msgstr "Actualizează Clasă de Expediere" - -# @ woocommerce -#: woocommerce.php:899 -msgid "Add New Shipping Class" -msgstr "Adaugă Clasă de Expediere" - -# @ woocommerce -#: woocommerce.php:900 -msgid "New Shipping Class Name" -msgstr "Adaugă nume nou pentru Clasă de Expediere" - -# @ woocommerce -#: woocommerce.php:948 -msgid "All" -msgstr "Toate" - -# @ woocommerce -#: woocommerce.php:949 woocommerce.php:950 -msgid "Parent" -msgstr "Părinte" - -# @ woocommerce -#: woocommerce.php:952 -msgid "Update" -msgstr "Actualizează" - -# @ woocommerce -#: woocommerce.php:953 -msgid "Add New" -msgstr "Adaugă Nou" - -# @ woocommerce -#: woocommerce.php:954 -msgid "New" -msgstr "Nou" - -# @ woocommerce -#: woocommerce.php:984 -msgctxt "Admin menu name" -msgid "Products" -msgstr "Produse" - -# @ woocommerce -#: woocommerce.php:985 -msgid "Add Product" -msgstr "Adaugă Produs" - -# @ woocommerce -#: woocommerce.php:986 -msgid "Add New Product" -msgstr "Adaugă un Produs nou" - -# @ woocommerce -#: woocommerce.php:988 -msgid "Edit Product" -msgstr "Editează Produs" - -# @ woocommerce -#: woocommerce.php:989 -msgid "New Product" -msgstr "Produs Nou" - -# @ woocommerce -#: woocommerce.php:990 woocommerce.php:991 -msgid "View Product" -msgstr "Vizualizează Produs" - -# @ woocommerce -#: woocommerce.php:992 -msgid "Search Products" -msgstr "Caută Produse" - -# @ woocommerce -#: woocommerce.php:993 -msgid "No Products found" -msgstr "Nu a fost găsit nici un produs" - -# @ woocommerce -#: woocommerce.php:994 -msgid "No Products found in trash" -msgstr "Nu a fost găsit nici un produs la Gunoi" - -# @ woocommerce -#: woocommerce.php:995 -msgid "Parent Product" -msgstr "Produs mamă" - -# @ woocommerce -#: woocommerce.php:997 -msgid "This is where you can add new products to your store." -msgstr "De aici poți adăuga produse noi pentru magazin." - -# @ woocommerce -#: woocommerce.php:1020 -msgid "Variations" -msgstr "Variații" - -# @ woocommerce -#: woocommerce.php:1021 -msgid "Variation" -msgstr "Variație" - -# @ woocommerce -#: woocommerce.php:1022 -msgid "Add Variation" -msgstr "Adaugă Varianție Produs" - -# @ woocommerce -#: woocommerce.php:1023 -msgid "Add New Variation" -msgstr "Adaugă Variație Nouă" - -# @ woocommerce -#: woocommerce.php:1025 -msgid "Edit Variation" -msgstr "Modificare Variație" - -# @ woocommerce -#: woocommerce.php:1026 -msgid "New Variation" -msgstr "Variație Nouă" - -# @ woocommerce -#: woocommerce.php:1027 woocommerce.php:1028 -msgid "View Variation" -msgstr "Vezi Variație" - -# @ woocommerce -#: woocommerce.php:1029 -msgid "Search Variations" -msgstr "Caută prin varianțiile unui produs" - -# @ woocommerce -#: woocommerce.php:1030 -msgid "No Variations found" -msgstr "Nu a fost găsită nici o varianție" - -# @ woocommerce -#: woocommerce.php:1031 -msgid "No Variations found in trash" -msgstr "Nu a fost găsită nici o varianție la Gunoi" - -# @ woocommerce -#: woocommerce.php:1032 -msgid "Parent Variation" -msgstr "Variație mamă" - -# @ woocommerce -#: woocommerce.php:1049 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Comenzi" - -# @ woocommerce -#: woocommerce.php:1058 -msgid "Orders" -msgstr "Comenzi" - -# @ woocommerce -#: woocommerce.php:1060 -msgid "Add Order" -msgstr "Adaugă Comandă" - -# @ woocommerce -#: woocommerce.php:1061 -msgid "Add New Order" -msgstr "Adaugă Comandă Nouă" - -# @ woocommerce -#: woocommerce.php:1063 -msgid "Edit Order" -msgstr "Editează Comandă" - -# @ woocommerce -#: woocommerce.php:1064 -msgid "New Order" -msgstr "Comandă Nouă" - -# @ woocommerce -#: woocommerce.php:1067 -msgid "Search Orders" -msgstr "Caută prin Comenzi" - -# @ woocommerce -#: woocommerce.php:1068 -msgid "No Orders found" -msgstr "Nu a fost găsită nici o comandă" - -# @ woocommerce -#: woocommerce.php:1069 -msgid "No Orders found in trash" -msgstr "Nu a fost găsită nici o comandă la Gunoi" - -# @ woocommerce -#: woocommerce.php:1070 -msgid "Parent Orders" -msgstr "Părinte Comandă" - -# @ woocommerce -#: woocommerce.php:1073 -msgid "This is where store orders are stored." -msgstr "Aici sunt stocate Comenzile Magazinului" - -# @ woocommerce -#: woocommerce.php:1095 -msgid "Coupons" -msgstr "Cupoane" - -# @ woocommerce -#: woocommerce.php:1097 -msgctxt "Admin menu name" -msgid "Coupons" -msgstr "Cupoane" - -# @ woocommerce -#: woocommerce.php:1098 -msgid "Add Coupon" -msgstr "Adaugă Cupon" - -# @ woocommerce -#: woocommerce.php:1099 -msgid "Add New Coupon" -msgstr "Adaugă Cupon Nou" - -# @ woocommerce -#: woocommerce.php:1101 -msgid "Edit Coupon" -msgstr "Modifică Cupon" - -# @ woocommerce -#: woocommerce.php:1102 -msgid "New Coupon" -msgstr "Cupoane Nou" - -# @ woocommerce -#: woocommerce.php:1103 -msgid "View Coupons" -msgstr "Vezi Cupoane" - -# @ woocommerce -#: woocommerce.php:1104 -msgid "View Coupon" -msgstr "Vezi Cupoane" - -# @ woocommerce -#: woocommerce.php:1105 -msgid "Search Coupons" -msgstr "Caută prin Cupoane" - -# @ woocommerce -#: woocommerce.php:1106 -msgid "No Coupons found" -msgstr "Nici un Cupon nu a fost găsit" - -# @ woocommerce -#: woocommerce.php:1107 -msgid "No Coupons found in trash" -msgstr "Nici un Cupon nu a fost găsit la Gunoi" - -# @ woocommerce -#: woocommerce.php:1108 -msgid "Parent Coupon" -msgstr "Părinte Cupon" - -# @ woocommerce -#: woocommerce.php:1110 -msgid "" -"This is where you can add new coupons that customers can use in your store." -msgstr "" -"De aici se pot adăuga cupoane ce pot fi utilizate de clienții magazinului." - -# @ woocommerce -#: woocommerce.php:1206 -msgid "Select an option…" -msgstr "Selectează o opțiune…" - -# @ woocommerce -#: woocommerce.php:1207 -msgid "Please select a rating" -msgstr "Vă rugăm selectați o notă" - -# @ woocommerce -#: woocommerce.php:1208 -msgid "" -"Sorry, no products matched your selection. Please choose a different " -"combination." -msgstr "" -"Ne pare rău, dar nu avem produse care sa corespundă criteriilor dvs. Vă " -"rugăm încercați o altă combinație." - -# @ woocommerce -#: woocommerce.php:1691 -msgid "Cart % Discount" -msgstr "Reducere % Coș" - -# @ woocommerce -#: woocommerce.php:1692 -msgid "Product Discount" -msgstr "Reducere Produs" - -# @ woocommerce -#: woocommerce.php:1693 -msgid "Product % Discount" -msgstr "Reducere % Produs" - -# @ woocommerce -#: woocommerce.php:1758 -msgid "Action failed. Please refresh the page and retry." -msgstr "Acțiune eșuată. Reîmporpătați pagini și încecați din nou!" diff --git a/i18n/languages/woocommerce-ru_RU.mo b/i18n/languages/woocommerce-ru_RU.mo deleted file mode 100644 index a9bb4fa3d61..00000000000 Binary files a/i18n/languages/woocommerce-ru_RU.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-ru_RU.po b/i18n/languages/woocommerce-ru_RU.po deleted file mode 100644 index 2e2267a3387..00000000000 --- a/i18n/languages/woocommerce-ru_RU.po +++ /dev/null @@ -1,13864 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce v2.0.0\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-01-09 09:36:51+00:00\n" -"PO-Revision-Date: 2013-03-04 09:39:43+0000\n" -"Last-Translator: Ramon van Belzen \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%100/10==1 ? 2 : n%10==1 ? 0 : (n+9)%10>3 ? 2 : 1;\n" -"X-Generator: Poedit 1.5.5\n" -"X-Poedit-Language: \n" -"X-Poedit-Country: \n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n" -"X-Poedit-Basepath: ../../\n" -"X-Poedit-Bookmarks: \n" -"X-Poedit-SearchPath-0: .\n" -"X-Textdomain-Support: yes" - -#: assets/js/admin/editor_plugin_lang.php:5 -#@ woocommerce -msgid "Insert Shortcode" -msgstr "" - -#: assets/js/admin/editor_plugin_lang.php:6 -#, fuzzy -#@ woocommerce -msgid "Product price/cart button" -msgstr "Описание товара" - -#: assets/js/admin/editor_plugin_lang.php:7 -#, fuzzy -#@ woocommerce -msgid "Product by SKU/ID" -msgstr "Кол-во товара:" - -#: assets/js/admin/editor_plugin_lang.php:8 -#, fuzzy -#@ woocommerce -msgid "Products by SKU/ID" -msgstr "Кол-во товара:" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:116 -#: assets/js/admin/editor_plugin_lang.php:9 -#, fuzzy -#@ woocommerce -msgid "Product categories" -msgstr "Категории товара" - -#: assets/js/admin/editor_plugin_lang.php:10 -#, fuzzy -#@ woocommerce -msgid "Products by category slug" -msgstr "УРЛ товарной категории" - -#: assets/js/admin/editor_plugin_lang.php:11 -#, fuzzy -#@ woocommerce -msgid "Recent products" -msgstr "Новые товары" - -#: assets/js/admin/editor_plugin_lang.php:12 -#, fuzzy -#@ woocommerce -msgid "Featured products" -msgstr "Рекомендуемые товары" - -#: assets/js/admin/editor_plugin_lang.php:13 -#, fuzzy -#@ woocommerce -msgid "Shop Messages" -msgstr "Страницы магазина" - -#: admin/woocommerce-admin-content.php:45 -#: admin/woocommerce-admin-settings.php:182 -#: assets/js/admin/editor_plugin_lang.php:14 -#@ woocommerce -msgid "Pages" -msgstr "Страницы" - -#: admin/woocommerce-admin-install.php:195 -#: admin/woocommerce-admin-status.php:277 -#: assets/js/admin/editor_plugin_lang.php:15 -#: classes/widgets/class-wc-widget-cart.php:61 -#@ woocommerce -msgid "Cart" -msgstr "Корзина" - -#: admin/settings/settings-init.php:114 -#: admin/woocommerce-admin-install.php:198 -#: admin/woocommerce-admin-status.php:281 -#: assets/js/admin/editor_plugin_lang.php:16 -#@ woocommerce -msgid "Checkout" -msgstr "Оплата" - -#: assets/js/admin/editor_plugin_lang.php:17 -#, fuzzy -#@ woocommerce -msgid "Order tracking" -msgstr "отслеживание-заказа" - -#: admin/woocommerce-admin-install.php:201 -#: admin/woocommerce-admin-status.php:293 -#: assets/js/admin/editor_plugin_lang.php:18 -#: templates/checkout/thankyou.php:30 -#@ woocommerce -msgid "My Account" -msgstr "Профиль" - -#: admin/woocommerce-admin-status.php:297 -#: assets/js/admin/editor_plugin_lang.php:19 -#, fuzzy -#@ woocommerce -msgid "Edit Address" -msgstr "Изменить мой адрес" - -#: admin/woocommerce-admin-install.php:213 -#: admin/woocommerce-admin-status.php:305 -#: assets/js/admin/editor_plugin_lang.php:20 -#@ woocommerce -msgid "Change Password" -msgstr "Изменить пароль" - -#: admin/woocommerce-admin-install.php:210 -#: admin/woocommerce-admin-status.php:301 -#: assets/js/admin/editor_plugin_lang.php:21 -#: woocommerce.php:1031 -#: woocommerce.php:1032 -#@ woocommerce -msgid "View Order" -msgstr "Посмотреть заказ" - -#: admin/woocommerce-admin-status.php:285 -#: assets/js/admin/editor_plugin_lang.php:22 -#: templates/checkout/thankyou.php:28 -#: templates/myaccount/my-orders.php:71 -#@ woocommerce -msgid "Pay" -msgstr "Оплатить" - -#: assets/js/admin/editor_plugin_lang.php:23 -#@ woocommerce -msgid "Thankyou" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:421 -#: classes/emails/class-wc-email-customer-completed-order.php:135 -#: classes/emails/class-wc-email-customer-invoice.php:138 -#: classes/emails/class-wc-email-new-order.php:115 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:63 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:57 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:158 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:119 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:77 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:75 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:52 -#@ woocommerce -msgid "Enable/Disable" -msgstr "Включить/отключить" - -#: classes/abstracts/abstract-wc-email.php:423 -#: classes/emails/class-wc-email-customer-completed-order.php:137 -#: classes/emails/class-wc-email-customer-invoice.php:140 -#: classes/emails/class-wc-email-new-order.php:117 -#, fuzzy -#@ woocommerce -msgid "Enable this email notification" -msgstr "Включить уведомления о «низком наличии»" - -#: classes/abstracts/abstract-wc-email.php:427 -#: classes/emails/class-wc-email-customer-invoice.php:144 -#, fuzzy -#@ woocommerce -msgid "Email subject" -msgstr "Emails" - -#: classes/abstracts/abstract-wc-email.php:429 -#: classes/abstracts/abstract-wc-email.php:436 -#: classes/emails/class-wc-email-customer-completed-order.php:143 -#: classes/emails/class-wc-email-customer-completed-order.php:150 -#: classes/emails/class-wc-email-customer-completed-order.php:157 -#: classes/emails/class-wc-email-customer-completed-order.php:164 -#: classes/emails/class-wc-email-customer-invoice.php:146 -#: classes/emails/class-wc-email-customer-invoice.php:153 -#: classes/emails/class-wc-email-customer-invoice.php:160 -#: classes/emails/class-wc-email-customer-invoice.php:167 -#, php-format -#@ woocommerce -msgid "Defaults to %s" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:434 -#: classes/emails/class-wc-email-customer-invoice.php:151 -#, fuzzy -#@ woocommerce -msgid "Email heading" -msgstr "Email-счет" - -#: classes/abstracts/abstract-wc-email.php:441 -#: classes/emails/class-wc-email-customer-completed-order.php:169 -#: classes/emails/class-wc-email-customer-invoice.php:172 -#: classes/emails/class-wc-email-new-order.php:142 -#, fuzzy -#@ woocommerce -msgid "Email type" -msgstr "Шаблон письма" - -#: classes/abstracts/abstract-wc-email.php:443 -#: classes/emails/class-wc-email-customer-completed-order.php:171 -#: classes/emails/class-wc-email-customer-invoice.php:174 -#: classes/emails/class-wc-email-new-order.php:144 -#@ woocommerce -msgid "Choose which format of email to send." -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:447 -#: classes/emails/class-wc-email-customer-completed-order.php:175 -#: classes/emails/class-wc-email-customer-invoice.php:178 -#: classes/emails/class-wc-email-new-order.php:148 -#@ woocommerce -msgid "Plain text" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:448 -#: classes/emails/class-wc-email-customer-completed-order.php:176 -#: classes/emails/class-wc-email-customer-invoice.php:179 -#: classes/emails/class-wc-email-new-order.php:149 -#@ woocommerce -msgid "HTML" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:449 -#: classes/emails/class-wc-email-customer-completed-order.php:177 -#: classes/emails/class-wc-email-customer-invoice.php:180 -#: classes/emails/class-wc-email-new-order.php:150 -#@ woocommerce -msgid "Multipart" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:485 -#: classes/abstracts/abstract-wc-email.php:506 -#@ woocommerce -msgid "Could not write to template file." -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:533 -#@ woocommerce -msgid "Template file copied to theme." -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:542 -#@ woocommerce -msgid "Template file deleted from theme." -msgstr "" - -#: admin/includes/welcome.php:146 -#: admin/woocommerce-admin-content.php:41 -#: admin/woocommerce-admin-init.php:86 -#: admin/woocommerce-admin-status.php:252 -#: classes/abstracts/abstract-wc-email.php:550 -#: classes/abstracts/abstract-wc-integration.php:30 -#: classes/abstracts/abstract-wc-settings-api.php:39 -#@ woocommerce -msgid "Settings" -msgstr "Настройки" - -#: classes/abstracts/abstract-wc-email.php:562 -#, fuzzy -#@ woocommerce -msgid "HTML template" -msgstr "Шаблон письма" - -#: classes/abstracts/abstract-wc-email.php:563 -#, fuzzy -#@ woocommerce -msgid "Plain text template" -msgstr "Шаблон письма" - -#: classes/abstracts/abstract-wc-email.php:582 -#, fuzzy -#@ woocommerce -msgid "Delete template file" -msgstr "Удалить наименование" - -#: classes/abstracts/abstract-wc-email.php:585 -#, php-format -#@ woocommerce -msgid "This template has been overridden by your theme and can be found in: %s." -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:600 -#@ woocommerce -msgid "Copy file to theme" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:603 -#, php-format -#@ woocommerce -msgid "To override and edit this email template copy %s to your theme folder: %s." -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:614 -#, fuzzy -#@ woocommerce -msgid "File was not found." -msgstr "Файл не найден" - -#: classes/abstracts/abstract-wc-email.php:639 -#, fuzzy -#@ woocommerce -msgid "View template" -msgstr "Шаблон письма" - -#: classes/abstracts/abstract-wc-email.php:640 -#, fuzzy -#@ woocommerce -msgid "Hide template" -msgstr "Шаблон письма" - -#: classes/abstracts/abstract-wc-email.php:651 -#, fuzzy -#@ woocommerce -msgid "Are you sure you want to delete this template file?" -msgstr "Вы уверены, что хотите удалить это свойство?" - -#: admin/post-types/product.php:262 -#: admin/post-types/product.php:641 -#: admin/post-types/product.php:928 -#: admin/post-types/writepanels/writepanel-product_data.php:231 -#: classes/abstracts/abstract-wc-product.php:545 -#: classes/abstracts/abstract-wc-product.php:550 -#: classes/abstracts/abstract-wc-product.php:569 -#@ woocommerce -msgid "In stock" -msgstr "в наличии" - -#: classes/abstracts/abstract-wc-product.php:550 -#, php-format -#@ woocommerce -msgid "Only %s left in stock" -msgstr "" - -#: classes/abstracts/abstract-wc-product.php:553 -#, php-format -#@ woocommerce -msgid "%s in stock" -msgstr "%s в наличии" - -#: classes/abstracts/abstract-wc-product.php:560 -#@ woocommerce -msgid "(backorders allowed)" -msgstr "(отзыв заказа разрешен)" - -#: classes/abstracts/abstract-wc-product.php:566 -#: classes/abstracts/abstract-wc-product.php:579 -#: templates/cart/cart.php:76 -#@ woocommerce -msgid "Available on backorder" -msgstr "Доступно для отмены" - -#: admin/post-types/product.php:264 -#: admin/post-types/product.php:642 -#: admin/post-types/product.php:929 -#: admin/post-types/writepanels/writepanel-product_data.php:232 -#: admin/woocommerce-admin-reports.php:2103 -#: classes/abstracts/abstract-wc-product.php:572 -#: classes/abstracts/abstract-wc-product.php:582 -#: classes/abstracts/abstract-wc-product.php:586 -#@ woocommerce -msgid "Out of stock" -msgstr "Нет в наличии" - -#: classes/abstracts/abstract-wc-product.php:849 -#: classes/abstracts/abstract-wc-product.php:855 -#: classes/class-wc-cart.php:1743 -#: classes/class-wc-order.php:863 -#: classes/class-wc-product-variable.php:274 -#: classes/class-wc-product-variable.php:283 -#: classes/class-wc-product-variation.php:246 -#@ woocommerce -msgid "Free!" -msgstr "Бесплатно!" - -#: classes/abstracts/abstract-wc-product.php:873 -#@ woocommerce -msgctxt "min_price" -msgid "From:" -msgstr "От:" - -#: classes/abstracts/abstract-wc-product.php:965 -#: templates/single-product-reviews.php:43 -#, php-format -#@ woocommerce -msgid "Rated %s out of 5" -msgstr "Рейтинг %s из 5" - -#: admin/woocommerce-admin-dashboard.php:279 -#: classes/abstracts/abstract-wc-product.php:967 -#: templates/single-product/review.php:27 -#: templates/single-product-reviews.php:43 -#@ woocommerce -msgid "out of 5" -msgstr "из 5" - -#: classes/class-wc-coupon.php:447 -#, php-format -#@ woocommerce -msgid "Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from your order." -msgstr "" - -#: classes/class-wc-coupon.php:450 -#, php-format -#@ woocommerce -msgid "Sorry, it seems the coupon \"%s\" is not yours - it has now been removed from your order." -msgstr "Извините, похоже купон \"%s\" не ваш — он был удален из вашего заказа." - -#: classes/class-wc-cart.php:464 -#, php-format -#@ woocommerce -msgid "Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in stock). Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "К сожалению, у нас нет достаточно \"%s\" в наличии для исполнения заказа (%s в наличии). Пожалуйста, измените значение в корзине и попробуйте еще раз. Мы приносим свои извинения за данное неудобство." - -#: classes/class-wc-cart.php:483 -#: classes/class-wc-cart.php:492 -#, fuzzy, php-format -#@ woocommerce -msgid "Sorry, we do not have enough \"%s\" in stock to fulfil your order (%s in stock). Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "К сожалению, у нас нет достаточно \"%s\" в наличии для исполнения заказа (%s в наличии). Пожалуйста, измените значение в корзине и попробуйте еще раз. Мы приносим свои извинения за данное неудобство." - -#: classes/class-wc-cart.php:527 -#, fuzzy, php-format -#@ woocommerce -msgid "Sorry, we do not have enough \"%s\" in stock to fulfil your order right now. Please try again in %d minutes or edit your cart and try again. We apologise for any inconvenience caused." -msgstr "К сожалению, у нас нет достаточно \"%s\" в наличии для исполнения заказа. Пожалуйста, измените значение в корзине и попробуйте еще раз. Мы приносим свои извинения за данное неудобство." - -#: classes/class-wc-cart.php:537 -#, fuzzy, php-format -#@ woocommerce -msgid "Sorry, \"%s\" is not in stock. Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "К сожалению, у нас нет достаточно \"%s\" в наличии для исполнения заказа. Пожалуйста, измените значение в корзине и попробуйте еще раз. Мы приносим свои извинения за данное неудобство." - -#: classes/class-wc-cart.php:818 -#, fuzzy, php-format -#@ woocommerce -msgid "Sorry, "%s" cannot be purchased." -msgstr "Этот товар не может быть приобретен." - -#: classes/class-wc-cart.php:825 -#, fuzzy, php-format -#@ woocommerce -msgid "You cannot add "%s" to the cart because the product is out of stock." -msgstr "Вы не можете добавить товар в корзину, поскольку его нет в наличии." - -#: classes/class-wc-cart.php:830 -#, fuzzy, php-format -#@ woocommerce -msgid "You cannot add that amount of "%s" to the cart because there is not enough stock (%s remaining)." -msgstr "Вы не можете добавить такое количество в корзину, поскольку товара нет в наличии в таком количестве. В наличии %s." - -#: classes/class-wc-cart.php:842 -#: classes/class-wc-cart.php:856 -#: classes/class-wc-cart.php:864 -#: templates/cart/mini-cart.php:68 -#: woocommerce-functions.php:470 -#: woocommerce.php:1176 -#@ woocommerce -msgid "View Cart →" -msgstr "Просмотр корзины →" - -#: classes/class-wc-cart.php:842 -#@ woocommerce -msgid "You already have this item in your cart." -msgstr "Это наименование уже добавлено в вашу корзину." - -#: classes/class-wc-cart.php:856 -#: classes/class-wc-cart.php:864 -#, php-format -#@ woocommerce -msgid "%s You cannot add that amount to the cart — we have %s in stock and you already have %s in your cart." -msgstr "" - -#: classes/class-wc-cart.php:1755 -#@ woocommerce -msgid "via" -msgstr "через" - -#: classes/class-wc-coupon.php:444 -#: classes/class-wc-coupon.php:494 -#@ woocommerce -msgid "Coupon does not exist!" -msgstr "Такой купон не существует!" - -#: classes/class-wc-checkout.php:64 -#@ woocommerce -msgid "Account username" -msgstr "Профиль пользователя" - -#: classes/class-wc-checkout.php:65 -#@ woocommerce -msgctxt "placeholder" -msgid "Username" -msgstr "Пользователь" - -#: classes/class-wc-checkout.php:72 -#: classes/class-wc-checkout.php:79 -#@ woocommerce -msgid "Account password" -msgstr "Пароль аккаунта" - -#: classes/class-wc-checkout.php:73 -#: classes/class-wc-checkout.php:80 -#@ woocommerce -msgctxt "placeholder" -msgid "Password" -msgstr "Пароль" - -#: admin/post-types/shop_order.php:48 -#: admin/post-types/writepanels/writepanels-init.php:71 -#: classes/class-wc-checkout.php:89 -#@ woocommerce -msgid "Order Notes" -msgstr "Заметки к заказу" - -#: classes/class-wc-checkout.php:90 -#@ woocommerce -msgctxt "placeholder" -msgid "Notes about your order, e.g. special notes for delivery." -msgstr "Примечания к вашему заказу, например, особые пожелания отделу доставки." - -#: classes/class-wc-checkout.php:152 -#, php-format -#@ woocommerce -msgid "Order – %s" -msgstr "" - -#: classes/class-wc-checkout.php:152 -#, php-format -#@ woocommerce -msgctxt "Order date parsed by strftime" -msgid "%b %d, %Y @ %I:%M %p" -msgstr "" - -#: classes/class-wc-checkout.php:276 -#@ woocommerce -msgid "Backordered" -msgstr "" - -#: classes/class-wc-checkout.php:386 -#, php-format -#@ woocommerce -msgid "Sorry, your session has expired. Return to homepage →" -msgstr "К сожалению, сессия истекла. Вернуться на главную →" - -#: classes/class-wc-checkout.php:438 -#: woocommerce-functions.php:1632 -#@ woocommerce -msgid "is a required field." -msgstr "обязательное поле." - -#: classes/class-wc-checkout.php:451 -#, php-format -#@ woocommerce -msgid "(%s) is not a valid postcode/ZIP." -msgstr "" - -#: classes/class-wc-checkout.php:472 -#@ woocommerce -msgid "is not valid. Please enter one of the following:" -msgstr "" - -#: classes/class-wc-checkout.php:480 -#@ woocommerce -msgid "is not a valid number." -msgstr "неправильный номер." - -#: classes/class-wc-checkout.php:487 -#@ woocommerce -msgid "is not a valid email address." -msgstr "email-адрес набран с ошибкой." - -#: classes/class-wc-checkout.php:543 -#@ woocommerce -msgid "Please enter an account username." -msgstr "Пожалуйста, введите имя пользователя." - -#: classes/class-wc-checkout.php:547 -#@ woocommerce -msgid "Invalid email/username." -msgstr "Ошибочный email / пользователь." - -#: classes/class-wc-checkout.php:550 -#@ woocommerce -msgid "An account is already registered with that username. Please choose another." -msgstr "Аккаунт с таким именем пользователя уже зарегистрирован. Пожалуйста, выберите другое имя." - -#: classes/class-wc-checkout.php:560 -#@ woocommerce -msgid "Please enter an account password." -msgstr "Пожалуйста, введите пароль для аккаунта." - -#: classes/class-wc-checkout.php:563 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:85 -#: woocommerce-functions.php:731 -#: woocommerce-functions.php:1562 -#@ woocommerce -msgid "Passwords do not match." -msgstr "Пароли не совпадают." - -#: classes/class-wc-checkout.php:567 -#@ woocommerce -msgid "An account is already registered with your email address. Please login." -msgstr "Аккаунт с данным email-адресом уже зарегистрирован. Пожалуйста, авторизуйтесь." - -#: classes/class-wc-checkout.php:573 -#@ woocommerce -msgid "You must accept our Terms & Conditions." -msgstr "Вам необходимо принять наши условия и правила." - -#: classes/class-wc-checkout.php:582 -#@ woocommerce -msgid "Invalid shipping method." -msgstr "Ошибочный метод доставки." - -#: classes/class-wc-checkout.php:595 -#@ woocommerce -msgid "Invalid payment method." -msgstr "Ошибочный платежный метод." - -#: classes/class-wc-checkout.php:635 -#: woocommerce-core-functions.php:2485 -#: woocommerce-core-functions.php:2488 -#: woocommerce-functions.php:703 -#: woocommerce-functions.php:705 -#: woocommerce-functions.php:708 -#: woocommerce-functions.php:720 -#: woocommerce-functions.php:722 -#: woocommerce-functions.php:725 -#: woocommerce-functions.php:759 -#@ woocommerce -msgid "ERROR" -msgstr "ОШИБКА" - -#: classes/class-wc-checkout.php:635 -#: woocommerce-functions.php:759 -#@ woocommerce -msgid "Couldn’t register you… please contact us if you continue to have problems." -msgstr "" - -#: classes/class-wc-countries.php:37 -#@ woocommerce -msgid "Afghanistan" -msgstr "Афганистан" - -#: classes/class-wc-countries.php:38 -#@ woocommerce -msgid "Åland Islands" -msgstr "" - -#: classes/class-wc-countries.php:39 -#@ woocommerce -msgid "Albania" -msgstr "Албания" - -#: classes/class-wc-countries.php:40 -#@ woocommerce -msgid "Algeria" -msgstr "Алжир" - -#: i18n/states/US.php:67 -#@ woocommerce -msgid "American Samoa" -msgstr "Американское Самоа" - -#: classes/class-wc-countries.php:41 -#@ woocommerce -msgid "Andorra" -msgstr "Андорра" - -#: classes/class-wc-countries.php:42 -#@ woocommerce -msgid "Angola" -msgstr "Ангола" - -#: classes/class-wc-countries.php:43 -#@ woocommerce -msgid "Anguilla" -msgstr "Ангилья" - -#: classes/class-wc-countries.php:44 -#@ woocommerce -msgid "Antarctica" -msgstr "Антарктика" - -#: classes/class-wc-countries.php:45 -#@ woocommerce -msgid "Antigua and Barbuda" -msgstr "Антигуа и Барбуда" - -#: classes/class-wc-countries.php:46 -#@ woocommerce -msgid "Argentina" -msgstr "Аргентина" - -#: classes/class-wc-countries.php:47 -#@ woocommerce -msgid "Armenia" -msgstr "Армения" - -#: classes/class-wc-countries.php:48 -#@ woocommerce -msgid "Aruba" -msgstr "Аруба" - -#: classes/class-wc-countries.php:49 -#@ woocommerce -msgid "Australia" -msgstr "Австралия" - -#: classes/class-wc-countries.php:50 -#@ woocommerce -msgid "Austria" -msgstr "Австрия" - -#: classes/class-wc-countries.php:51 -#@ woocommerce -msgid "Azerbaijan" -msgstr "Азербайджан" - -#: classes/class-wc-countries.php:52 -#@ woocommerce -msgid "Bahamas" -msgstr "Багамы" - -#: classes/class-wc-countries.php:53 -#@ woocommerce -msgid "Bahrain" -msgstr "Бахрейн" - -#: classes/class-wc-countries.php:54 -#@ woocommerce -msgid "Bangladesh" -msgstr "Бангладеш" - -#: classes/class-wc-countries.php:55 -#@ woocommerce -msgid "Barbados" -msgstr "Барбадос" - -#: classes/class-wc-countries.php:56 -#@ woocommerce -msgid "Belarus" -msgstr "Белорусь" - -#: classes/class-wc-countries.php:57 -#@ woocommerce -msgid "Belgium" -msgstr "Бельгия" - -#: classes/class-wc-countries.php:59 -#@ woocommerce -msgid "Belize" -msgstr "Белиз" - -#: classes/class-wc-countries.php:60 -#@ woocommerce -msgid "Benin" -msgstr "Бенин" - -#: classes/class-wc-countries.php:61 -#@ woocommerce -msgid "Bermuda" -msgstr "Бермуды" - -#: classes/class-wc-countries.php:62 -#@ woocommerce -msgid "Bhutan" -msgstr "Бутан" - -#: classes/class-wc-countries.php:63 -#@ woocommerce -msgid "Bolivia" -msgstr "Боливия" - -#: classes/class-wc-countries.php:64 -#@ woocommerce -msgid "Bonaire, Saint Eustatius and Saba" -msgstr "" - -#: classes/class-wc-countries.php:65 -#@ woocommerce -msgid "Bosnia and Herzegovina" -msgstr "Босния и Герцеговина" - -#: classes/class-wc-countries.php:66 -#@ woocommerce -msgid "Botswana" -msgstr "Ботсвана" - -#: classes/class-wc-countries.php:67 -#, fuzzy -#@ woocommerce -msgid "Bouvet Island" -msgstr "Род-Айленд" - -#: classes/class-wc-countries.php:68 -#@ woocommerce -msgid "Brazil" -msgstr "Бразилия" - -#: classes/class-wc-countries.php:69 -#@ woocommerce -msgid "British Indian Ocean Territory" -msgstr "Британская территория Индийского океана" - -#: classes/class-wc-countries.php:70 -#@ woocommerce -msgid "British Virgin Islands" -msgstr "Британские Виргинские острова" - -#: classes/class-wc-countries.php:71 -#@ woocommerce -msgid "Brunei" -msgstr "Бруней" - -#: classes/class-wc-countries.php:72 -#@ woocommerce -msgid "Bulgaria" -msgstr "Болгария" - -#: classes/class-wc-countries.php:73 -#@ woocommerce -msgid "Burkina Faso" -msgstr "Буркина-Фасо" - -#: classes/class-wc-countries.php:74 -#@ woocommerce -msgid "Burundi" -msgstr "Бурунди" - -#: classes/class-wc-countries.php:75 -#@ woocommerce -msgid "Cambodia" -msgstr "Камбоджа" - -#: classes/class-wc-countries.php:76 -#@ woocommerce -msgid "Cameroon" -msgstr "Камерун" - -#: classes/class-wc-countries.php:77 -#@ woocommerce -msgid "Canada" -msgstr "Канада" - -#: classes/class-wc-countries.php:78 -#@ woocommerce -msgid "Cape Verde" -msgstr "Кабо-Верде" - -#: classes/class-wc-countries.php:79 -#@ woocommerce -msgid "Cayman Islands" -msgstr "Кайманские острова" - -#: classes/class-wc-countries.php:80 -#@ woocommerce -msgid "Central African Republic" -msgstr "Центральная Африканская Республика" - -#: classes/class-wc-countries.php:81 -#@ woocommerce -msgid "Chad" -msgstr "Чад" - -#: classes/class-wc-countries.php:82 -#@ woocommerce -msgid "Chile" -msgstr "Чили" - -#: classes/class-wc-countries.php:83 -#@ woocommerce -msgid "China" -msgstr "Китай" - -#: classes/class-wc-countries.php:84 -#@ woocommerce -msgid "Christmas Island" -msgstr "Остров Рождества" - -#: classes/class-wc-countries.php:85 -#@ woocommerce -msgid "Cocos (Keeling) Islands" -msgstr "Кокосовые (Килинг) острова" - -#: classes/class-wc-countries.php:86 -#@ woocommerce -msgid "Colombia" -msgstr "Колумбия" - -#: classes/class-wc-countries.php:87 -#@ woocommerce -msgid "Comoros" -msgstr "Коморские острова" - -#: classes/class-wc-countries.php:88 -#@ woocommerce -msgid "Congo (Brazzaville)" -msgstr "Конго (Браззавиль)" - -#: classes/class-wc-countries.php:89 -#@ woocommerce -msgid "Congo (Kinshasa)" -msgstr "Конго (Киншаса)" - -#: classes/class-wc-countries.php:90 -#@ woocommerce -msgid "Cook Islands" -msgstr "Острова Кука" - -#: classes/class-wc-countries.php:91 -#@ woocommerce -msgid "Costa Rica" -msgstr "Коста-Рика" - -#: classes/class-wc-countries.php:92 -#@ woocommerce -msgid "Croatia" -msgstr "Хорватия" - -#: classes/class-wc-countries.php:93 -#@ woocommerce -msgid "Cuba" -msgstr "Куба" - -#: classes/class-wc-countries.php:94 -#@ woocommerce -msgid "CuraÇao" -msgstr "" - -#: classes/class-wc-countries.php:95 -#@ woocommerce -msgid "Cyprus" -msgstr "Кипр" - -#: classes/class-wc-countries.php:96 -#@ woocommerce -msgid "Czech Republic" -msgstr "Чешская Республика" - -#: classes/class-wc-countries.php:97 -#@ woocommerce -msgid "Denmark" -msgstr "Дания" - -#: classes/class-wc-countries.php:98 -#@ woocommerce -msgid "Djibouti" -msgstr "Джибути" - -#: classes/class-wc-countries.php:99 -#@ woocommerce -msgid "Dominica" -msgstr "Доминика" - -#: classes/class-wc-countries.php:100 -#@ woocommerce -msgid "Dominican Republic" -msgstr "Доминиканская Республика" - -#: classes/class-wc-countries.php:101 -#@ woocommerce -msgid "Ecuador" -msgstr "Эквадор" - -#: classes/class-wc-countries.php:102 -#@ woocommerce -msgid "Egypt" -msgstr "Египет" - -#: classes/class-wc-countries.php:103 -#@ woocommerce -msgid "El Salvador" -msgstr "Сальвадор" - -#: classes/class-wc-countries.php:104 -#@ woocommerce -msgid "Equatorial Guinea" -msgstr "Экваториальная Гвинея" - -#: classes/class-wc-countries.php:105 -#@ woocommerce -msgid "Eritrea" -msgstr "Эритрея" - -#: classes/class-wc-countries.php:106 -#@ woocommerce -msgid "Estonia" -msgstr "Эстония" - -#: classes/class-wc-countries.php:107 -#@ woocommerce -msgid "Ethiopia" -msgstr "Эфиопия" - -#: classes/class-wc-countries.php:108 -#@ woocommerce -msgid "Falkland Islands" -msgstr "Фолклендские острова" - -#: classes/class-wc-countries.php:109 -#@ woocommerce -msgid "Faroe Islands" -msgstr "Фарерские острова" - -#: classes/class-wc-countries.php:110 -#@ woocommerce -msgid "Fiji" -msgstr "Фиджи" - -#: classes/class-wc-countries.php:111 -#@ woocommerce -msgid "Finland" -msgstr "Финляндия" - -#: classes/class-wc-countries.php:112 -#@ woocommerce -msgid "France" -msgstr "Франция" - -#: classes/class-wc-countries.php:113 -#@ woocommerce -msgid "French Guiana" -msgstr "Французская Гвиана" - -#: classes/class-wc-countries.php:114 -#@ woocommerce -msgid "French Polynesia" -msgstr "Французская Полинезия" - -#: classes/class-wc-countries.php:115 -#@ woocommerce -msgid "French Southern Territories" -msgstr "Французские южные территории" - -#: classes/class-wc-countries.php:116 -#@ woocommerce -msgid "Gabon" -msgstr "Габон" - -#: classes/class-wc-countries.php:117 -#@ woocommerce -msgid "Gambia" -msgstr "Гамбия" - -#: classes/class-wc-countries.php:118 -#: i18n/states/US.php:23 -#@ woocommerce -msgid "Georgia" -msgstr "Грузия" - -#: classes/class-wc-countries.php:119 -#@ woocommerce -msgid "Germany" -msgstr "Германия" - -#: classes/class-wc-countries.php:120 -#@ woocommerce -msgid "Ghana" -msgstr "Гана" - -#: classes/class-wc-countries.php:121 -#@ woocommerce -msgid "Gibraltar" -msgstr "Гибралтар" - -#: classes/class-wc-countries.php:122 -#@ woocommerce -msgid "Greece" -msgstr "Греция" - -#: classes/class-wc-countries.php:123 -#@ woocommerce -msgid "Greenland" -msgstr "Гренландия" - -#: classes/class-wc-countries.php:124 -#@ woocommerce -msgid "Grenada" -msgstr "Гренада" - -#: classes/class-wc-countries.php:125 -#@ woocommerce -msgid "Guadeloupe" -msgstr "Гваделупа" - -#: i18n/states/US.php:68 -#@ woocommerce -msgid "Guam" -msgstr "Гуам" - -#: classes/class-wc-countries.php:126 -#@ woocommerce -msgid "Guatemala" -msgstr "Гватемала" - -#: classes/class-wc-countries.php:127 -#@ woocommerce -msgid "Guernsey" -msgstr "Гернси" - -#: classes/class-wc-countries.php:128 -#@ woocommerce -msgid "Guinea" -msgstr "Гвинея" - -#: classes/class-wc-countries.php:129 -#@ woocommerce -msgid "Guinea-Bissau" -msgstr "Гвинея-Бисау" - -#: classes/class-wc-countries.php:130 -#@ woocommerce -msgid "Guyana" -msgstr "Гайана" - -#: classes/class-wc-countries.php:131 -#@ woocommerce -msgid "Haiti" -msgstr "Гаити" - -#: classes/class-wc-countries.php:132 -#@ woocommerce -msgid "Heard Island and McDonald Islands" -msgstr "" - -#: classes/class-wc-countries.php:133 -#@ woocommerce -msgid "Honduras" -msgstr "Гондурас" - -#: classes/class-wc-countries.php:134 -#@ woocommerce -msgid "Hong Kong" -msgstr "Гонконг" - -#: classes/class-wc-countries.php:135 -#@ woocommerce -msgid "Hungary" -msgstr "Венгрия" - -#: classes/class-wc-countries.php:136 -#@ woocommerce -msgid "Iceland" -msgstr "Исландия" - -#: classes/class-wc-countries.php:137 -#@ woocommerce -msgid "India" -msgstr "Индия" - -#: classes/class-wc-countries.php:138 -#@ woocommerce -msgid "Indonesia" -msgstr "Индонезия" - -#: classes/class-wc-countries.php:139 -#@ woocommerce -msgid "Iran" -msgstr "Иран" - -#: classes/class-wc-countries.php:140 -#@ woocommerce -msgid "Iraq" -msgstr "Ирак" - -#: classes/class-wc-countries.php:141 -#@ woocommerce -msgid "Republic of Ireland" -msgstr "" - -#: classes/class-wc-countries.php:142 -#@ woocommerce -msgid "Isle of Man" -msgstr "Остров Мэн" - -#: classes/class-wc-countries.php:143 -#@ woocommerce -msgid "Israel" -msgstr "Израиль" - -#: classes/class-wc-countries.php:144 -#@ woocommerce -msgid "Italy" -msgstr "Италия" - -#: classes/class-wc-countries.php:145 -#@ woocommerce -msgid "Ivory Coast" -msgstr "Берег Слоновой Кости" - -#: classes/class-wc-countries.php:146 -#@ woocommerce -msgid "Jamaica" -msgstr "Ямайка" - -#: classes/class-wc-countries.php:147 -#@ woocommerce -msgid "Japan" -msgstr "Япония" - -#: classes/class-wc-countries.php:148 -#@ woocommerce -msgid "Jersey" -msgstr "Джерси" - -#: classes/class-wc-countries.php:149 -#@ woocommerce -msgid "Jordan" -msgstr "Иордания" - -#: classes/class-wc-countries.php:150 -#@ woocommerce -msgid "Kazakhstan" -msgstr "Казахстан" - -#: classes/class-wc-countries.php:151 -#@ woocommerce -msgid "Kenya" -msgstr "Кения" - -#: classes/class-wc-countries.php:152 -#@ woocommerce -msgid "Kiribati" -msgstr "Кирибати" - -#: classes/class-wc-countries.php:153 -#@ woocommerce -msgid "Kuwait" -msgstr "Кувейт" - -#: classes/class-wc-countries.php:154 -#@ woocommerce -msgid "Kyrgyzstan" -msgstr "Киргистан" - -#: classes/class-wc-countries.php:155 -#@ woocommerce -msgid "Laos" -msgstr "Лаос" - -#: classes/class-wc-countries.php:156 -#@ woocommerce -msgid "Latvia" -msgstr "Латвия" - -#: classes/class-wc-countries.php:157 -#@ woocommerce -msgid "Lebanon" -msgstr "Ливан" - -#: classes/class-wc-countries.php:158 -#@ woocommerce -msgid "Lesotho" -msgstr "Лесото" - -#: classes/class-wc-countries.php:159 -#@ woocommerce -msgid "Liberia" -msgstr "Либерия" - -#: classes/class-wc-countries.php:160 -#@ woocommerce -msgid "Libya" -msgstr "Ливия" - -#: classes/class-wc-countries.php:161 -#@ woocommerce -msgid "Liechtenstein" -msgstr "Лихтенштейн" - -#: classes/class-wc-countries.php:162 -#@ woocommerce -msgid "Lithuania" -msgstr "Литва" - -#: classes/class-wc-countries.php:163 -#@ woocommerce -msgid "Luxembourg" -msgstr "Люксембург" - -#: classes/class-wc-countries.php:164 -#@ woocommerce -msgid "Macao S.A.R., China" -msgstr "Макао S.A.R., Китай" - -#: classes/class-wc-countries.php:165 -#@ woocommerce -msgid "Macedonia" -msgstr "Македония" - -#: classes/class-wc-countries.php:166 -#@ woocommerce -msgid "Madagascar" -msgstr "Мадагаскар" - -#: classes/class-wc-countries.php:167 -#@ woocommerce -msgid "Malawi" -msgstr "Малави" - -#: classes/class-wc-countries.php:168 -#@ woocommerce -msgid "Malaysia" -msgstr "Малайзия" - -#: classes/class-wc-countries.php:169 -#@ woocommerce -msgid "Maldives" -msgstr "Мальдивы" - -#: classes/class-wc-countries.php:170 -#@ woocommerce -msgid "Mali" -msgstr "Мали" - -#: classes/class-wc-countries.php:171 -#@ woocommerce -msgid "Malta" -msgstr "Мальта" - -#: classes/class-wc-countries.php:172 -#@ woocommerce -msgid "Marshall Islands" -msgstr "Маршалловы острова" - -#: classes/class-wc-countries.php:173 -#@ woocommerce -msgid "Martinique" -msgstr "Мартиника" - -#: classes/class-wc-countries.php:174 -#@ woocommerce -msgid "Mauritania" -msgstr "Мавритания" - -#: classes/class-wc-countries.php:175 -#@ woocommerce -msgid "Mauritius" -msgstr "Маврикий" - -#: classes/class-wc-countries.php:176 -#@ woocommerce -msgid "Mayotte" -msgstr "Майотта" - -#: classes/class-wc-countries.php:177 -#@ woocommerce -msgid "Mexico" -msgstr "Мексика" - -#: classes/class-wc-countries.php:178 -#@ woocommerce -msgid "Micronesia" -msgstr "Микронезия" - -#: classes/class-wc-countries.php:179 -#@ woocommerce -msgid "Moldova" -msgstr "Молдова" - -#: classes/class-wc-countries.php:180 -#@ woocommerce -msgid "Monaco" -msgstr "Монако" - -#: classes/class-wc-countries.php:181 -#@ woocommerce -msgid "Mongolia" -msgstr "Монголия" - -#: classes/class-wc-countries.php:182 -#@ woocommerce -msgid "Montenegro" -msgstr "Черногория" - -#: classes/class-wc-countries.php:183 -#@ woocommerce -msgid "Montserrat" -msgstr "Монтсеррат" - -#: classes/class-wc-countries.php:184 -#@ woocommerce -msgid "Morocco" -msgstr "Морокко" - -#: classes/class-wc-countries.php:185 -#@ woocommerce -msgid "Mozambique" -msgstr "Мозамбик" - -#: classes/class-wc-countries.php:186 -#@ woocommerce -msgid "Myanmar" -msgstr "Мьянма" - -#: classes/class-wc-countries.php:187 -#@ woocommerce -msgid "Namibia" -msgstr "Намибия" - -#: classes/class-wc-countries.php:188 -#@ woocommerce -msgid "Nauru" -msgstr "Науру" - -#: classes/class-wc-countries.php:189 -#@ woocommerce -msgid "Nepal" -msgstr "Непал" - -#: classes/class-wc-countries.php:190 -#@ woocommerce -msgid "Netherlands" -msgstr "Нидерланды" - -#: classes/class-wc-countries.php:191 -#@ woocommerce -msgid "Netherlands Antilles" -msgstr "Нидерландские Антильские острова" - -#: classes/class-wc-countries.php:192 -#@ woocommerce -msgid "New Caledonia" -msgstr "Новая Каледония" - -#: classes/class-wc-countries.php:193 -#@ woocommerce -msgid "New Zealand" -msgstr "Новая Зеландия" - -#: classes/class-wc-countries.php:194 -#@ woocommerce -msgid "Nicaragua" -msgstr "Никарагуа" - -#: classes/class-wc-countries.php:195 -#@ woocommerce -msgid "Niger" -msgstr "Нигер" - -#: classes/class-wc-countries.php:196 -#@ woocommerce -msgid "Nigeria" -msgstr "Нигерия" - -#: classes/class-wc-countries.php:197 -#@ woocommerce -msgid "Niue" -msgstr "Ниуэ" - -#: classes/class-wc-countries.php:198 -#@ woocommerce -msgid "Norfolk Island" -msgstr "Остров Норфолк" - -#: classes/class-wc-countries.php:199 -#@ woocommerce -msgid "North Korea" -msgstr "Северная Корея" - -#: i18n/states/US.php:69 -#@ woocommerce -msgid "Northern Mariana Islands" -msgstr "Северные Марианские острова" - -#: classes/class-wc-countries.php:200 -#@ woocommerce -msgid "Norway" -msgstr "Норвегия" - -#: classes/class-wc-countries.php:201 -#@ woocommerce -msgid "Oman" -msgstr "Оман" - -#: classes/class-wc-countries.php:202 -#@ woocommerce -msgid "Pakistan" -msgstr "Пакистан" - -#: classes/class-wc-countries.php:203 -#@ woocommerce -msgid "Palestinian Territory" -msgstr "Палестинские территории" - -#: classes/class-wc-countries.php:204 -#@ woocommerce -msgid "Panama" -msgstr "Панама" - -#: classes/class-wc-countries.php:205 -#@ woocommerce -msgid "Papua New Guinea" -msgstr "Папуа-Новая Гвинея" - -#: classes/class-wc-countries.php:206 -#@ woocommerce -msgid "Paraguay" -msgstr "Парагвай" - -#: classes/class-wc-countries.php:207 -#@ woocommerce -msgid "Peru" -msgstr "Перу" - -#: classes/class-wc-countries.php:208 -#@ woocommerce -msgid "Philippines" -msgstr "Филиппины" - -#: classes/class-wc-countries.php:209 -#@ woocommerce -msgid "Pitcairn" -msgstr "Питкэрн" - -#: classes/class-wc-countries.php:210 -#@ woocommerce -msgid "Poland" -msgstr "Польша" - -#: classes/class-wc-countries.php:211 -#@ woocommerce -msgid "Portugal" -msgstr "Португалия" - -#: i18n/states/US.php:70 -#@ woocommerce -msgid "Puerto Rico" -msgstr "Пуэрто-Рико" - -#: classes/class-wc-countries.php:212 -#@ woocommerce -msgid "Qatar" -msgstr "Катар" - -#: classes/class-wc-countries.php:213 -#@ woocommerce -msgid "Reunion" -msgstr "Реюньон" - -#: classes/class-wc-countries.php:214 -#@ woocommerce -msgid "Romania" -msgstr "Румыния" - -#: classes/class-wc-countries.php:215 -#@ woocommerce -msgid "Russia" -msgstr "Россия" - -#: classes/class-wc-countries.php:216 -#@ woocommerce -msgid "Rwanda" -msgstr "Руанда" - -#: classes/class-wc-countries.php:217 -#@ woocommerce -msgid "Saint Barthélemy" -msgstr "" - -#: classes/class-wc-countries.php:218 -#@ woocommerce -msgid "Saint Helena" -msgstr "Остров Святой Елены" - -#: classes/class-wc-countries.php:219 -#@ woocommerce -msgid "Saint Kitts and Nevis" -msgstr "Сент-Китс и Невис" - -#: classes/class-wc-countries.php:220 -#@ woocommerce -msgid "Saint Lucia" -msgstr "Сент-Люсия" - -#: classes/class-wc-countries.php:221 -#@ woocommerce -msgid "Saint Martin (French part)" -msgstr "Сен-Мартин (Французская часть)" - -#: classes/class-wc-countries.php:222 -#, fuzzy -#@ woocommerce -msgid "Saint Martin (Dutch part)" -msgstr "Сен-Мартин (Французская часть)" - -#: classes/class-wc-countries.php:223 -#@ woocommerce -msgid "Saint Pierre and Miquelon" -msgstr "Сен-Пьер и Микелон" - -#: classes/class-wc-countries.php:224 -#@ woocommerce -msgid "Saint Vincent and the Grenadines" -msgstr "Сент-Винсент и Гренадины" - -#: classes/class-wc-countries.php:225 -#@ woocommerce -msgid "Samoa" -msgstr "Самоа" - -#: classes/class-wc-countries.php:226 -#@ woocommerce -msgid "San Marino" -msgstr "Сан-Марино" - -#: classes/class-wc-countries.php:227 -#@ woocommerce -msgid "São Tomé and Príncipe" -msgstr "" - -#: classes/class-wc-countries.php:228 -#@ woocommerce -msgid "Saudi Arabia" -msgstr "Саудовская Аравия" - -#: classes/class-wc-countries.php:229 -#@ woocommerce -msgid "Senegal" -msgstr "Сенегал" - -#: classes/class-wc-countries.php:230 -#@ woocommerce -msgid "Serbia" -msgstr "Сербия" - -#: classes/class-wc-countries.php:231 -#@ woocommerce -msgid "Seychelles" -msgstr "Сейшельские Острова" - -#: classes/class-wc-countries.php:232 -#@ woocommerce -msgid "Sierra Leone" -msgstr "Сьерра-Леоне" - -#: classes/class-wc-countries.php:233 -#@ woocommerce -msgid "Singapore" -msgstr "Сингапур" - -#: classes/class-wc-countries.php:234 -#@ woocommerce -msgid "Slovakia" -msgstr "Словакия" - -#: classes/class-wc-countries.php:235 -#@ woocommerce -msgid "Slovenia" -msgstr "Словения" - -#: classes/class-wc-countries.php:236 -#@ woocommerce -msgid "Solomon Islands" -msgstr "Соломоновы Острова" - -#: classes/class-wc-countries.php:237 -#@ woocommerce -msgid "Somalia" -msgstr "Сомали" - -#: classes/class-wc-countries.php:238 -#@ woocommerce -msgid "South Africa" -msgstr "Южная Африка" - -#: classes/class-wc-countries.php:239 -#@ woocommerce -msgid "South Georgia/Sandwich Islands" -msgstr "Южная Джорджия/Сандвичевы острова" - -#: classes/class-wc-countries.php:240 -#@ woocommerce -msgid "South Korea" -msgstr "Южная Корея" - -#: classes/class-wc-countries.php:241 -#, fuzzy -#@ woocommerce -msgid "South Sudan" -msgstr "Южная Каролина" - -#: classes/class-wc-countries.php:242 -#@ woocommerce -msgid "Spain" -msgstr "Испания" - -#: classes/class-wc-countries.php:243 -#@ woocommerce -msgid "Sri Lanka" -msgstr "Шри-Ланка" - -#: classes/class-wc-countries.php:244 -#@ woocommerce -msgid "Sudan" -msgstr "Судан" - -#: classes/class-wc-countries.php:245 -#@ woocommerce -msgid "Suriname" -msgstr "Суринам" - -#: classes/class-wc-countries.php:246 -#@ woocommerce -msgid "Svalbard and Jan Mayen" -msgstr "Шпицберген и Ян-Майен" - -#: classes/class-wc-countries.php:247 -#@ woocommerce -msgid "Swaziland" -msgstr "Свазиленд" - -#: classes/class-wc-countries.php:248 -#@ woocommerce -msgid "Sweden" -msgstr "Швеция" - -#: classes/class-wc-countries.php:249 -#@ woocommerce -msgid "Switzerland" -msgstr "Швейцария" - -#: classes/class-wc-countries.php:250 -#@ woocommerce -msgid "Syria" -msgstr "Сирия" - -#: classes/class-wc-countries.php:251 -#@ woocommerce -msgid "Taiwan" -msgstr "Тайвань" - -#: classes/class-wc-countries.php:252 -#@ woocommerce -msgid "Tajikistan" -msgstr "Таджикистан" - -#: classes/class-wc-countries.php:253 -#@ woocommerce -msgid "Tanzania" -msgstr "Танзания" - -#: classes/class-wc-countries.php:254 -#@ woocommerce -msgid "Thailand" -msgstr "Тайланд" - -#: classes/class-wc-countries.php:255 -#@ woocommerce -msgid "Timor-Leste" -msgstr "Тимор-Лешти" - -#: classes/class-wc-countries.php:256 -#@ woocommerce -msgid "Togo" -msgstr "Того" - -#: classes/class-wc-countries.php:257 -#@ woocommerce -msgid "Tokelau" -msgstr "Токелау" - -#: classes/class-wc-countries.php:258 -#@ woocommerce -msgid "Tonga" -msgstr "Тонга" - -#: classes/class-wc-countries.php:259 -#@ woocommerce -msgid "Trinidad and Tobago" -msgstr "Тринидад и Тобаго" - -#: classes/class-wc-countries.php:260 -#@ woocommerce -msgid "Tunisia" -msgstr "Тунис" - -#: classes/class-wc-countries.php:261 -#@ woocommerce -msgid "Turkey" -msgstr "Турция" - -#: classes/class-wc-countries.php:262 -#@ woocommerce -msgid "Turkmenistan" -msgstr "Туркменистан" - -#: classes/class-wc-countries.php:263 -#@ woocommerce -msgid "Turks and Caicos Islands" -msgstr "Острова Теркс и Кайкос" - -#: classes/class-wc-countries.php:264 -#@ woocommerce -msgid "Tuvalu" -msgstr "Тувалу" - -#: i18n/states/US.php:71 -#@ woocommerce -msgid "US Minor Outlying Islands" -msgstr "Внешние малые острова США" - -#: classes/class-wc-countries.php:265 -#@ woocommerce -msgid "Uganda" -msgstr "Уганда" - -#: classes/class-wc-countries.php:266 -#@ woocommerce -msgid "Ukraine" -msgstr "Украина" - -#: classes/class-wc-countries.php:267 -#@ woocommerce -msgid "United Arab Emirates" -msgstr "Объединенные Арабские Эмираты" - -#: classes/class-wc-countries.php:268 -#@ woocommerce -msgid "United Kingdom" -msgstr "Великобритания" - -#: classes/class-wc-countries.php:269 -#@ woocommerce -msgid "United States" -msgstr "Соединенные Штаты Америки" - -#: classes/class-wc-countries.php:270 -#@ woocommerce -msgid "Uruguay" -msgstr "Уругвай" - -#: classes/class-wc-countries.php:271 -#@ woocommerce -msgid "Uzbekistan" -msgstr "Узбекистан" - -#: classes/class-wc-countries.php:272 -#@ woocommerce -msgid "Vanuatu" -msgstr "Вануату" - -#: classes/class-wc-countries.php:273 -#@ woocommerce -msgid "Vatican" -msgstr "Ватикан" - -#: classes/class-wc-countries.php:274 -#@ woocommerce -msgid "Venezuela" -msgstr "Венесуэла" - -#: classes/class-wc-countries.php:275 -#@ woocommerce -msgid "Vietnam" -msgstr "Вьетнам" - -#: classes/class-wc-countries.php:276 -#@ woocommerce -msgid "Wallis and Futuna" -msgstr "Уоллис и Футуна" - -#: classes/class-wc-countries.php:277 -#@ woocommerce -msgid "Western Sahara" -msgstr "Западная Сахара" - -#: classes/class-wc-countries.php:278 -#@ woocommerce -msgid "Yemen" -msgstr "Йемен" - -#: classes/class-wc-countries.php:279 -#@ woocommerce -msgid "Zambia" -msgstr "Замбия" - -#: classes/class-wc-countries.php:280 -#@ woocommerce -msgid "Zimbabwe" -msgstr "Зимбабве" - -#: classes/class-wc-countries.php:418 -#@ woocommerce -msgid "to the" -msgstr "для" - -#: classes/class-wc-countries.php:419 -#@ woocommerce -msgid "to" -msgstr "к" - -#: classes/class-wc-countries.php:432 -#@ woocommerce -msgid "the" -msgstr "" - -#: classes/class-wc-countries.php:444 -#@ woocommerce -msgid "VAT" -msgstr "НДС" - -#: admin/post-types/writepanels/writepanel-order_data.php:352 -#: admin/settings/settings-tax-rates.php:387 -#: admin/settings/settings-tax-rates.php:466 -#: admin/woocommerce-admin-content.php:48 -#: admin/woocommerce-admin-settings.php:184 -#: classes/class-wc-countries.php:444 -#: templates/cart/totals.php:110 -#: templates/checkout/review-order.php:113 -#@ woocommerce -msgid "Tax" -msgstr "Налог" - -#: classes/class-wc-countries.php:457 -#@ woocommerce -msgid "(incl. VAT)" -msgstr "(вкл. НДС)" - -#: classes/class-wc-countries.php:457 -#@ woocommerce -msgid "(incl. tax)" -msgstr "(вкл. налоги)" - -#: classes/class-wc-countries.php:470 -#@ woocommerce -msgid "(ex. VAT)" -msgstr "(без НДС)" - -#: admin/post-types/writepanels/writepanel-order_data.php:549 -#: classes/class-wc-countries.php:470 -#@ woocommerce -msgid "(ex. tax)" -msgstr "(без налога)" - -#: classes/class-wc-countries.php:694 -#: classes/class-wc-countries.php:704 -#: classes/class-wc-countries.php:724 -#: classes/class-wc-countries.php:779 -#: classes/class-wc-countries.php:803 -#: classes/class-wc-countries.php:848 -#: classes/class-wc-countries.php:872 -#@ woocommerce -msgid "Province" -msgstr "Провинция" - -#: classes/class-wc-countries.php:710 -#@ woocommerce -msgid "Canton" -msgstr "" - -#: classes/class-wc-countries.php:719 -#: classes/class-wc-countries.php:854 -#@ woocommerce -msgid "Municipality" -msgstr "Муниципалитет" - -#: classes/class-wc-countries.php:766 -#, fuzzy -#@ woocommerce -msgid "Town / District" -msgstr "Город/Район" - -#: classes/class-wc-countries.php:769 -#@ woocommerce -msgid "Region" -msgstr "Регион" - -#: classes/class-wc-countries.php:877 -#@ woocommerce -msgid "Zip" -msgstr "Почтовый индекс" - -#: classes/class-wc-countries.php:880 -#@ woocommerce -msgid "State" -msgstr "Штат" - -#: admin/post-types/writepanels/writepanel-order_data.php:168 -#: admin/post-types/writepanels/writepanel-order_data.php:258 -#: admin/woocommerce-admin-users.php:171 -#: admin/woocommerce-admin-users.php:220 -#: classes/class-wc-countries.php:885 -#: templates/cart/shipping-calculator.php:68 -#@ woocommerce -msgid "Postcode" -msgstr "Почтовый индекс" - -#: classes/class-wc-countries.php:888 -#@ woocommerce -msgid "County" -msgstr "Страна" - -#: classes/class-wc-countries.php:920 -#: classes/class-wc-countries.php:921 -#: classes/class-wc-countries.php:996 -#: templates/cart/shipping-calculator.php:68 -#, fuzzy -#@ woocommerce -msgid "Postcode / Zip" -msgstr "Почтовый индекс" - -#: classes/class-wc-countries.php:925 -#: classes/class-wc-countries.php:926 -#: classes/class-wc-countries.php:985 -#, fuzzy -#@ woocommerce -msgid "Town / City" -msgstr "Город" - -#: classes/class-wc-countries.php:930 -#: classes/class-wc-countries.php:931 -#: classes/class-wc-countries.php:991 -#, fuzzy -#@ woocommerce -msgid "State / County" -msgstr "Штат/Страна" - -#: admin/post-types/writepanels/writepanel-order_data.php:172 -#: admin/post-types/writepanels/writepanel-order_data.php:262 -#: admin/woocommerce-admin-users.php:179 -#: admin/woocommerce-admin-users.php:228 -#: classes/class-wc-countries.php:955 -#@ woocommerce -msgid "Country" -msgstr "Страна" - -#: admin/post-types/writepanels/writepanel-order_data.php:144 -#: admin/post-types/writepanels/writepanel-order_data.php:234 -#: classes/class-wc-countries.php:960 -#@ woocommerce -msgid "First Name" -msgstr "Имя" - -#: admin/post-types/writepanels/writepanel-order_data.php:148 -#: admin/post-types/writepanels/writepanel-order_data.php:238 -#: classes/class-wc-countries.php:965 -#@ woocommerce -msgid "Last Name" -msgstr "Фамилия" - -#: classes/class-wc-countries.php:971 -#@ woocommerce -msgid "Company Name" -msgstr "Название компании" - -#: admin/post-types/writepanels/writepanel-order_data.php:193 -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#: admin/post-types/writepanels/writepanel-order_data.php:277 -#: admin/post-types/writepanels/writepanel-order_data.php:279 -#: classes/class-wc-countries.php:975 -#@ woocommerce -msgid "Address" -msgstr "Адрес" - -#: classes/class-wc-countries.php:976 -#, fuzzy -#@ woocommerce -msgctxt "placeholder" -msgid "Street address" -msgstr "Сохранить адрес" - -#: classes/class-wc-countries.php:981 -#@ woocommerce -msgctxt "placeholder" -msgid "Apartment, suite, unit etc. (optional)" -msgstr "" - -#: classes/class-wc-countries.php:1038 -#@ woocommerce -msgid "Email Address" -msgstr "Email-адрес" - -#: admin/post-types/writepanels/writepanel-order_data.php:185 -#: classes/class-wc-countries.php:1044 -#@ woocommerce -msgid "Phone" -msgstr "Телефон" - -#: classes/class-wc-coupon.php:459 -#@ woocommerce -msgid "Coupon usage limit has been reached." -msgstr "" - -#: classes/class-wc-coupon.php:462 -#@ woocommerce -msgid "This coupon has expired." -msgstr "" - -#: classes/class-wc-coupon.php:465 -#, php-format -#@ woocommerce -msgid "The minimum spend for this coupon is %s." -msgstr "" - -#: classes/class-wc-coupon.php:468 -#@ woocommerce -msgid "Sorry, this coupon is not applicable to your cart contents." -msgstr "" - -#: classes/class-wc-customer.php:628 -#: classes/class-wc-customer.php:638 -#, fuzzy, php-format -#@ woocommerce -msgid "File %d" -msgstr "Путь к файлу" - -#: classes/class-wc-emails.php:246 -#@ woocommerce -msgid "Note" -msgstr "Примечание" - -#: classes/class-wc-emails.php:281 -#@ woocommerce -msgid "Product low in stock" -msgstr "Товара мало в наличии" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:623 -#: classes/class-wc-emails.php:286 -#: classes/class-wc-emails.php:318 -#: classes/class-wc-emails.php:362 -#, php-format -#@ woocommerce -msgid "Variation #%s of %s" -msgstr "Вариация #%s из %s" - -#: classes/class-wc-emails.php:288 -#: classes/class-wc-emails.php:320 -#: classes/class-wc-emails.php:364 -#, php-format -#@ woocommerce -msgid "Product #%s - %s" -msgstr "Товар #%s - %s" - -#: classes/class-wc-emails.php:290 -#@ woocommerce -msgid "is low in stock." -msgstr "мало в наличии." - -#: classes/class-wc-emails.php:313 -#@ woocommerce -msgid "Product out of stock" -msgstr "Товара нет в наличии" - -#: classes/class-wc-emails.php:322 -#@ woocommerce -msgid "is out of stock." -msgstr "нет в наличии." - -#: classes/class-wc-emails.php:357 -#@ woocommerce -msgid "Product Backorder" -msgstr "Удержание товара" - -#: classes/class-wc-emails.php:366 -#, php-format -#@ woocommerce -msgid "%s units of %s have been backordered in order #%s." -msgstr "%s шт. из %s были отозваны из заказа #%s." - -#: classes/class-wc-order.php:283 -#@ woocommerce -msgctxt "hash before order number" -msgid "#" -msgstr "" - -#: classes/class-wc-order.php:858 -#, php-format -#@ woocommerce -msgid " %svia %s" -msgstr "" - -#: classes/class-wc-order.php:923 -#@ woocommerce -msgid "Cart Subtotal:" -msgstr "Подитог корзины:" - -#: admin/post-types/writepanels/writepanel-order_data.php:499 -#: classes/class-wc-order.php:929 -#@ woocommerce -msgid "Cart Discount:" -msgstr "Скидка на корзину:" - -#: classes/class-wc-order.php:935 -#@ woocommerce -msgid "Shipping:" -msgstr "Доставка:" - -#: classes/class-wc-order.php:980 -#@ woocommerce -msgid "Subtotal:" -msgstr "Подытог:" - -#: admin/post-types/writepanels/writepanel-order_data.php:507 -#: classes/class-wc-order.php:1006 -#@ woocommerce -msgid "Order Discount:" -msgstr "Скидка на заказ:" - -#: admin/post-types/writepanels/writepanel-order_data.php:653 -#: classes/class-wc-order.php:1011 -#@ woocommerce -msgid "Order Total:" -msgstr "Итого:" - -#: classes/class-wc-order.php:1034 -#: templates/cart/totals.php:145 -#: templates/checkout/review-order.php:151 -#, php-format -#@ woocommerce -msgid "(Includes %s)" -msgstr "" - -#. translators: plugin header field 'Name' -#: admin/woocommerce-admin-content.php:83 -#: admin/woocommerce-admin-init.php:62 -#: classes/class-wc-order.php:1183 -#: classes/class-wc-order.php:1185 -#: classes/class-wc-order.php:1188 -#: woocommerce.php:0 -#@ woocommerce -msgid "WooCommerce" -msgstr "" - -#: classes/class-wc-order.php:1235 -#, php-format -#@ woocommerce -msgid "Order status changed from %s to %s." -msgstr "Статус заказа изменен с %s на %s." - -#: classes/class-wc-order.php:1461 -#: woocommerce-ajax.php:1163 -#: woocommerce-ajax.php:1164 -#, php-format -#@ woocommerce -msgid "Item #%s stock reduced from %s to %s." -msgstr "Наличие позиции #%s сокращено с %s до %s." - -#: classes/class-wc-order.php:1473 -#@ woocommerce -msgid "Order item stock reduced successfully." -msgstr "Позиции в заказе успешно снижены." - -#: classes/class-wc-product-external.php:56 -#@ woocommerce -msgid "Buy product" -msgstr "Купить товар" - -#: admin/settings/settings-init.php:500 -#: classes/class-wc-shortcodes.php:571 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:257 -#: templates/loop/add-to-cart.php:46 -#: templates/single-product/add-to-cart/grouped.php:45 -#: templates/single-product/add-to-cart/grouped.php:75 -#: templates/single-product/add-to-cart/simple.php:42 -#: templates/single-product/add-to-cart/variable.php:78 -#@ woocommerce -msgid "Add to cart" -msgstr "Добавить в корзину" - -#: classes/emails/class-wc-email-customer-completed-order.php:24 -#, fuzzy -#@ woocommerce -msgid "Completed order" -msgstr "Завершено" - -#: classes/emails/class-wc-email-customer-completed-order.php:25 -#@ woocommerce -msgid "Order complete emails are sent to the customer when the order is marked complete and usual indicates that the order has been shipped." -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:27 -#, fuzzy -#@ woocommerce -msgid "Your order is complete" -msgstr "Ваш заказ отменен." - -#: classes/emails/class-wc-email-customer-completed-order.php:28 -#@ woocommerce -msgid "Your {blogname} order from {order_date} is complete" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:37 -#, fuzzy -#@ woocommerce -msgid "Your order is complete - download your files" -msgstr "Ваш заказ выполнен. Информация о нем ниже:" - -#: classes/emails/class-wc-email-customer-completed-order.php:38 -#@ woocommerce -msgid "Your {blogname} order from {order_date} is complete - download your files" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:141 -#: classes/emails/class-wc-email-new-order.php:128 -#@ woocommerce -msgid "Subject" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:148 -#: classes/emails/class-wc-email-new-order.php:135 -#, fuzzy -#@ woocommerce -msgid "Email Heading" -msgstr "Email-счет" - -#: classes/emails/class-wc-email-customer-completed-order.php:155 -#, fuzzy -#@ woocommerce -msgid "Subject (downloadable)" -msgstr "Загружаемый" - -#: classes/emails/class-wc-email-customer-completed-order.php:162 -#@ woocommerce -msgid "Email Heading (downloadable)" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:27 -#, fuzzy -#@ woocommerce -msgid "Customer invoice" -msgstr "Заметка клиента" - -#: classes/emails/class-wc-email-customer-invoice.php:28 -#, fuzzy -#@ woocommerce -msgid "Customer invoice emails can be sent to the user containing order info and payment links." -msgstr "Отправить заказ клиенту по почте. Неоплаченные заказы включают ссылку на оплату." - -#: classes/emails/class-wc-email-customer-invoice.php:33 -#@ woocommerce -msgid "Invoice for order {order_number} from {order_date}" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:34 -#@ woocommerce -msgid "Invoice for order {order_number}" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:36 -#@ woocommerce -msgid "Your {blogname} order from {order_date}" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:37 -#@ woocommerce -msgid "Order {order_number} details" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:158 -#@ woocommerce -msgid "Email subject (paid)" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:165 -#@ woocommerce -msgid "Email heading (paid)" -msgstr "" - -#: classes/emails/class-wc-email-customer-new-account.php:31 -#, fuzzy -#@ woocommerce -msgid "New account" -msgstr "Мой профиль" - -#: classes/emails/class-wc-email-customer-new-account.php:32 -#@ woocommerce -msgid "Customer new account emails are sent when a customer signs up via the checkout or My Account page." -msgstr "" - -#: classes/emails/class-wc-email-customer-new-account.php:37 -#, fuzzy -#@ woocommerce -msgid "Your account on {blogname}" -msgstr "Ваш профиль на %s" - -#: classes/emails/class-wc-email-customer-new-account.php:38 -#@ woocommerce -msgid "Welcome to {blogname}" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_notes.php:62 -#: classes/emails/class-wc-email-customer-note.php:29 -#@ woocommerce -msgid "Customer note" -msgstr "Заметка клиента" - -#: classes/emails/class-wc-email-customer-note.php:30 -#@ woocommerce -msgid "Customer note emails are sent when you add a note to an order." -msgstr "" - -#: classes/emails/class-wc-email-customer-note.php:35 -#@ woocommerce -msgid "Note added to your {blogname} order from {order_date}" -msgstr "" - -#: classes/emails/class-wc-email-customer-note.php:36 -#@ woocommerce -msgid "A note has been added to your order" -msgstr "Примечание добавлено для вашего заказа" - -#: classes/emails/class-wc-email-customer-processing-order.php:24 -#, fuzzy -#@ woocommerce -msgid "Processing order" -msgstr "Обработка" - -#: classes/emails/class-wc-email-customer-processing-order.php:25 -#@ woocommerce -msgid "This is an order notification sent to the customer after payment containing order details." -msgstr "" - -#: classes/emails/class-wc-email-customer-processing-order.php:27 -#, fuzzy -#@ woocommerce -msgid "Thank you for your order" -msgstr "Отслеживание заказа" - -#: classes/emails/class-wc-email-customer-processing-order.php:28 -#@ woocommerce -msgid "Your {blogname} order receipt from {order_date}" -msgstr "" - -#: classes/emails/class-wc-email-customer-reset-password.php:36 -#, fuzzy -#@ woocommerce -msgid "Reset password" -msgstr "Повторите пароль" - -#: classes/emails/class-wc-email-customer-reset-password.php:37 -#@ woocommerce -msgid "Customer reset password emails are sent when a customer resets their password." -msgstr "" - -#: classes/emails/class-wc-email-customer-reset-password.php:42 -#@ woocommerce -msgid "Password Reset for {blogname}" -msgstr "" - -#: classes/emails/class-wc-email-customer-reset-password.php:43 -#, fuzzy -#@ woocommerce -msgid "Password Reset Instructions" -msgstr "Инструкции" - -#: classes/emails/class-wc-email-new-order.php:24 -#, fuzzy -#@ woocommerce -msgid "New order" -msgstr "Новый заказ" - -#: classes/emails/class-wc-email-new-order.php:25 -#@ woocommerce -msgid "New order emails are sent when an order is received/paid by a customer." -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:27 -#, fuzzy -#@ woocommerce -msgid "New customer order" -msgstr "Новый заказ" - -#: classes/emails/class-wc-email-new-order.php:28 -#@ woocommerce -msgid "[{blogname}] New customer order ({order_number}) - {order_date}" -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:121 -#@ woocommerce -msgid "Recipient(s)" -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:123 -#, php-format -#@ woocommerce -msgid "Enter recipients (comma separated) for this email. Defaults to %s." -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:130 -#, fuzzy, php-format -#@ woocommerce -msgid "This controls the email subject line. Leave blank to use the default subject: %s." -msgstr "Подставляет метку товара в URL. Оставить пустым для использования обычного URL." - -#: classes/emails/class-wc-email-new-order.php:137 -#, php-format -#@ woocommerce -msgid "This controls the main heading contained within the email notification. Leave blank to use the default heading: %s." -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:28 -#@ woocommerce -msgid "Bacs" -msgstr "Безнал" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:65 -#@ woocommerce -msgid "Enable Bank Transfer" -msgstr "Активировать прямую оплату через банк" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:69 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:63 -#: classes/gateways/cod/class-wc-gateway-cod.php:87 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:171 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:125 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:104 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:84 -#@ woocommerce -msgid "Title" -msgstr "Заголовок." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:71 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:65 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:173 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:127 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:85 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:83 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:60 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:106 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:86 -#@ woocommerce -msgid "This controls the title which the user sees during checkout." -msgstr "Это позволяет задать заголовок, который видит пользователь в процессе оплаты." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:72 -#@ woocommerce -msgid "Direct Bank Transfer" -msgstr "Прямой банковский перевод" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:76 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:70 -#@ woocommerce -msgid "Customer Message" -msgstr "Сообщение клиенту" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:78 -#@ woocommerce -msgid "Give the customer instructions for paying via BACS, and let them know that their order won't be shipping until the money is received." -msgstr "Дайте инструкции пользователю по оплате через банк и проинформируйте их о том, что их заказ не будет оформлен до получения денег." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:79 -#@ woocommerce -msgid "Make your payment directly into our bank account. Please use your Order ID as the payment reference. Your order wont be shipped until the funds have cleared in our account." -msgstr "Совершайте платежи напрямую через банковский счет. Пожалуйста, используйте ID-заказа в качестве назначения платежа. Обратите внимание, что мы не сможем оформить доставку или отгрузку заказа до появление платежа на нашем расчетном счете." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:82 -#@ woocommerce -msgid "Account Details" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:84 -#@ woocommerce -msgid "Optionally enter your bank details below for customers to pay into." -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:88 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:163 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:203 -#@ woocommerce -msgid "Account Name" -msgstr "Имя получателя" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:94 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:164 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:204 -#@ woocommerce -msgid "Account Number" -msgstr "Расчетный счет" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:100 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:165 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:205 -#@ woocommerce -msgid "Sort Code" -msgstr "Кор. счет" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:106 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:166 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:206 -#@ woocommerce -msgid "Bank Name" -msgstr "Название банка" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:112 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:167 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:207 -#@ woocommerce -msgid "IBAN" -msgstr "IBAN" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:117 -#@ woocommerce -msgid "BIC (formerly Swift)" -msgstr "БИК" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:136 -#@ woocommerce -msgid "BACS Payment" -msgstr "Банковский платеж" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:137 -#@ woocommerce -msgid "Allows payments by BACS (Bank Account Clearing System), more commonly known as direct bank/wire transfer." -msgstr "Разрешить банковские платежи (простой банковский перевод с одного р/с на другой без участия платежных шлюзов)." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:158 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:200 -#@ woocommerce -msgid "Our Details" -msgstr "Описание заказа" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:168 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:208 -#@ woocommerce -msgid "BIC" -msgstr "БИК" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:234 -#@ woocommerce -msgid "Awaiting BACS payment" -msgstr "Ожидание зачисления банковского платежа" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:28 -#@ woocommerce -msgid "Cheque" -msgstr "Чек" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:59 -#@ woocommerce -msgid "Enable Cheque Payment" -msgstr "Активировать оплату чеками" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:66 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:90 -#@ woocommerce -msgid "Cheque Payment" -msgstr "Оплата чеками" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:72 -#@ woocommerce -msgid "Let the customer know the payee and where they should be sending the cheque to and that their order won't be shipping until you receive it." -msgstr "Сообщить клиенту их платежного агента, куда и на кого им необходимо отправлять чек и что их заказ не будет оформляться до получения чека." - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:73 -#@ woocommerce -msgid "Please send your cheque to Store Name, Store Street, Store Town, Store State / County, Store Postcode." -msgstr "Пожалуйста отправьте ваш чек, указав данные магазина: название, улицу, город, страну/штат, почтовый индекс." - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:91 -#@ woocommerce -msgid "Allows cheque payments. Why would you take cheques in this day and age? Well you probably wouldn't but it does allow you to make test purchases for testing order emails and the 'success' pages etc." -msgstr "Разрешает оплату по чекам. Почему именно чеки? С их помощью можно оформлять тестовые покупки и страницы оформления заказов." - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:147 -#@ woocommerce -msgid "Awaiting cheque payment" -msgstr "Ожидание оплаты по чеку" - -#: classes/gateways/cod/class-wc-gateway-cod.php:27 -#: classes/gateways/cod/class-wc-gateway-cod.php:54 -#: classes/gateways/cod/class-wc-gateway-cod.php:90 -#@ woocommerce -msgid "Cash on Delivery" -msgstr "Наличными" - -#: classes/gateways/cod/class-wc-gateway-cod.php:55 -#@ woocommerce -msgid "Have your customers pay with cash (or by other means) upon delivery." -msgstr "Оплата наличными (или иным методом) по факту доставки." - -#: classes/gateways/cod/class-wc-gateway-cod.php:80 -#@ woocommerce -msgid "Enable COD" -msgstr "Разрешить оплату наличными" - -#: classes/gateways/cod/class-wc-gateway-cod.php:81 -#@ woocommerce -msgid "Enable Cash on Delivery" -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:89 -#@ woocommerce -msgid "Payment method title that the customer will see on your website." -msgstr "Название метода оплаты, которое будет видеть клиент на вашем сайте." - -#: admin/post-types/shop_coupon.php:28 -#: classes/gateways/cod/class-wc-gateway-cod.php:94 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:178 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:132 -#: woocommerce-template.php:748 -#@ woocommerce -msgid "Description" -msgstr "Описание" - -#: classes/gateways/cod/class-wc-gateway-cod.php:96 -#@ woocommerce -msgid "Payment method description that the customer will see on your website." -msgstr "Описанием метода оплаты которое клиент будет видеть на вашем сайте." - -#: classes/gateways/cod/class-wc-gateway-cod.php:100 -#@ woocommerce -msgid "Instructions" -msgstr "Инструкции" - -#: classes/gateways/cod/class-wc-gateway-cod.php:102 -#@ woocommerce -msgid "Instructions that will be added to the thank you page." -msgstr "Инструкции, которые будут добавлены на страницу благодарностей." - -#: classes/gateways/cod/class-wc-gateway-cod.php:106 -#, fuzzy -#@ woocommerce -msgid "Enable for shipping methods" -msgstr "Активировать этот метод доставки" - -#: classes/gateways/cod/class-wc-gateway-cod.php:111 -#@ woocommerce -msgid "If COD is only available for certain methods, set it up here. Leave blank to enable for all methods." -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:176 -#@ woocommerce -msgid "Payment to be made upon delivery." -msgstr "Оплата по факту доставки." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:31 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:196 -#@ woocommerce -msgid "Mijireh Checkout" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:143 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:321 -#@ woocommerce -msgid "Mijireh error:" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:160 -#@ woocommerce -msgid "Enable Mijireh Checkout" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:164 -#@ woocommerce -msgid "Access Key" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:166 -#@ woocommerce -msgid "The Mijireh access key for your store." -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:174 -#@ woocommerce -msgid "Credit Card" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:180 -#@ woocommerce -msgid "Pay securely with you credit card." -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:181 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:134 -#@ woocommerce -msgid "This controls the description which the user sees during checkout." -msgstr "Тут можно изменять описание, которое видит пользователь при проведении платежа." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:200 -#@ woocommerce -msgid "Get started with Mijireh Checkout" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:201 -#@ woocommerce -msgid "provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site. Mijireh supports a wide variety of payment gateways: Stripe, Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and more." -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:203 -#@ woocommerce -msgid "Join for free" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:203 -#@ woocommerce -msgid "Learn more about WooCommerce and Mijireh" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:207 -#@ woocommerce -msgid "provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:34 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:128 -#@ woocommerce -msgid "PayPal" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:90 -#@ woocommerce -msgid "PayPal standard" -msgstr "PayPal стандарт" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:91 -#@ woocommerce -msgid "PayPal standard works by sending the user to PayPal to enter their payment information." -msgstr "PayPal стандарт работает через отправку пользователя на PayPal для ввода платежной информации." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:103 -#@ woocommerce -msgid "Gateway Disabled" -msgstr "Шлюз отключен" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:103 -#@ woocommerce -msgid "PayPal does not support your store currency." -msgstr "PayPal не поддерживает валюту вашего магазина." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:121 -#@ woocommerce -msgid "Enable PayPal standard" -msgstr "Включи PayPal стандарт" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:135 -#@ woocommerce -msgid "Pay via PayPal; you can pay with your credit card if you don't have a PayPal account" -msgstr "Заплатить через PayPal; вы можете заплатить пластиковой картой если у вас нет PayPal аккаунта" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:138 -#@ woocommerce -msgid "PayPal Email" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:140 -#@ woocommerce -msgid "Please enter your PayPal email address; this is needed in order to take payment." -msgstr "Пожалуйста, введите свой PayPal email-адрес; это необходимо для получения платежа." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:146 -#@ woocommerce -msgid "Invoice Prefix" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:153 -#@ woocommerce -msgid "Submission method" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:155 -#@ woocommerce -msgid "Use form submission method." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:156 -#@ woocommerce -msgid "Enable this to post order data to PayPal via a form instead of using a redirect/querystring." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:160 -#@ woocommerce -msgid "Page Style" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:162 -#@ woocommerce -msgid "Optionally enter the name of the page style you wish to use. These are defined within your PayPal account." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:168 -#@ woocommerce -msgid "Shipping options" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:173 -#@ woocommerce -msgid "Shipping details" -msgstr "Детали доставки" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:175 -#@ woocommerce -msgid "Send shipping details to PayPal instead of billing." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:177 -#@ woocommerce -msgid "PayPal allows us to send 1 address. If you are using PayPal for shipping labels you may prefer to send the shipping address rather than billing." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:181 -#@ woocommerce -msgid "Address override" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:183 -#@ woocommerce -msgid "Enable \"address_override\" to prevent address information from being changed." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:184 -#@ woocommerce -msgid "PayPal verifies addresses therefore this setting can cause errors (we recommend keeping it disabled)." -msgstr "PayPal сверяет адреса, поэтому эта настройка может вызывать ошибки (рекомендуем не включать ее)." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:188 -#@ woocommerce -msgid "Gateway Testing" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:193 -#@ woocommerce -msgid "PayPal sandbox" -msgstr "PayPal «песочница»" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:195 -#@ woocommerce -msgid "Enable PayPal sandbox" -msgstr "Включить PayPal «песочницу»" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:197 -#, php-format -#@ woocommerce -msgid "PayPal sandbox can be used to test payments. Sign up for a developer account here." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:200 -#@ woocommerce -msgid "Debug Log" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:202 -#@ woocommerce -msgid "Enable logging" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:204 -#@ default -msgid "Log PayPal events, such as IPN requests, inside woocommerce/logs/paypal.txt" -msgstr "" - -#: admin/post-types/shop_order.php:98 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:313 -#, php-format -#@ woocommerce -msgid "Order %s" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:323 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:373 -#@ woocommerce -msgid "Shipping via" -msgstr "Доставка" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:414 -#@ woocommerce -msgid "Thank you for your order. We are now redirecting you to PayPal to make payment." -msgstr "Спасибо за заказ. Мы перенаправляем вас на PayPal для проведения оплаты." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:435 -#@ woocommerce -msgid "Pay via PayPal" -msgstr "Заплатить через PayPal" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:435 -#@ woocommerce -msgid "Cancel order & restore cart" -msgstr "Отменить заказ & восстановить корзину" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:489 -#@ woocommerce -msgid "Thank you for your order, please click the button below to pay with PayPal." -msgstr "Спасибо за заказ, пожалуйста, нажмите на кнопку внизу, чтобы оплатить при помощи PayPal." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:634 -#, php-format -#@ woocommerce -msgid "Validation error: PayPal amounts do not match (gross %s)." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:652 -#@ woocommerce -msgid "IPN payment completed" -msgstr "IPN-оплата проведена" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:664 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:672 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:690 -#, php-format -#@ woocommerce -msgid "Payment %s via IPN." -msgstr "Платеж %s через IPN." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:677 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:695 -#@ woocommerce -msgid "Order refunded/reversed" -msgstr "Заказ возмещен/отменен" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:678 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:696 -#, php-format -#@ woocommerce -msgid "Order %s has been marked as refunded - PayPal reason code: %s" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:681 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:699 -#, php-format -#@ woocommerce -msgid "Payment for order %s refunded/reversed" -msgstr "" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:26 -#@ woocommerce -msgid "Google Analytics" -msgstr "" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:27 -#@ woocommerce -msgid "Google Analytics is a free service offered by Google that generates detailed statistics about the visitors to a website." -msgstr "Google Analytics — это бесплатный сервис от Google, генерирующий детальные статистические отчет о посещаемости сайта." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:62 -#@ woocommerce -msgid "Google Analytics ID" -msgstr "" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:63 -#@ woocommerce -msgid "Log into your google analytics account to find your ID. e.g. UA-XXXXX-X" -msgstr "Зайдите в google analytics и найдите свой ID, например, UA-XXXXX-X" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:68 -#@ woocommerce -msgid "Tracking code" -msgstr "Трекинг код" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:69 -#@ woocommerce -msgid "Add tracking code to your site's footer. You don't need to enable this if using a 3rd party analytics plugin." -msgstr "Добавить трекинг-код на ваш сайт в «подвал». Вам не нужно включать эту опцию если вы используете плагин сторонних разработчиков для отслеживания статистики." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:75 -#@ woocommerce -msgid "Add eCommerce tracking code to the thankyou page" -msgstr "Добавить eCommerce трекинг код на страницу благодарностей" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:81 -#@ woocommerce -msgid "Add event tracking code for add to cart actions" -msgstr "" - -#: admin/post-types/shop_order.php:95 -#: admin/post-types/writepanels/writepanel-order_data.php:93 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:113 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:168 -#: woocommerce-ajax.php:1725 -#@ woocommerce -msgid "Guest" -msgstr "Гость" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:201 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:258 -#: templates/single-product/meta.php:19 -#@ woocommerce -msgid "SKU:" -msgstr "Кол-во:" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:74 -#: admin/woocommerce-admin-taxonomies.php:28 -#: admin/woocommerce-admin-taxonomies.php:122 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:256 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:276 -#: woocommerce.php:948 -#@ woocommerce -msgid "Products" -msgstr "Товары" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:277 -#, fuzzy -#@ woocommerce -msgid "Add to Cart" -msgstr "Добавить в корзину" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:26 -#@ woocommerce -msgid "ShareDaddy" -msgstr "" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:27 -#@ woocommerce -msgid "ShareDaddy is a sharing plugin bundled with JetPack." -msgstr "ShareDaddy — это плагин в комплексе с JetPack, который позволяет вашим клиентам делиться ссылками с их друзьями." - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:51 -#@ woocommerce -msgid "Output ShareDaddy button?" -msgstr "Выводить кнопку ShareDaddy?" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:52 -#@ woocommerce -msgid "Enable this option to show the ShareDaddy button on the product page." -msgstr "" - -#: classes/integrations/sharethis/class-wc-sharethis.php:29 -#@ woocommerce -msgid "ShareThis" -msgstr "Поделиться" - -#: classes/integrations/sharethis/class-wc-sharethis.php:30 -#@ woocommerce -msgid "ShareThis offers a sharing widget which will allow customers to share links to products with their friends." -msgstr "ShareThis предлагает виджет, который позволяет вашим клиентам делиться ссылками на товары с их друзьями." - -#: classes/integrations/sharethis/class-wc-sharethis.php:63 -#@ woocommerce -msgid "ShareThis Publisher ID" -msgstr "ID-издателя ShareThis" - -#: classes/integrations/sharethis/class-wc-sharethis.php:64 -#, php-format -#@ woocommerce -msgid "Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons on product pages." -msgstr "Введите свой %1$sShareThis publisher ID%2$s для вывода кнопок социальных сервисов на страницах товара." - -#: classes/integrations/sharethis/class-wc-sharethis.php:69 -#@ woocommerce -msgid "ShareThis Code" -msgstr "" - -#: classes/integrations/sharethis/class-wc-sharethis.php:70 -#@ woocommerce -msgid "You can tweak the ShareThis code by editing this option." -msgstr "" - -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:22 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:329 -#@ woocommerce -#@ default -msgid "ShareYourCart" -msgstr "" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:328 -#@ default -msgid "Share your cart settings" -msgstr "" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:342 -#, fuzzy -#@ default -msgid "Button" -msgstr "Текст кнопки" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:343 -#, fuzzy -#@ default -msgid "Customize Button" -msgstr "Авторизация клиента" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:351 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:352 -#@ default -msgid "Documentation" -msgstr "Документация" - -#: classes/integrations/shareyourcart/views/admin-page.php:33 -#@ woocommerce -msgid "Setup your ShareYourCart account" -msgstr "" - -#: classes/integrations/shareyourcart/views/admin-page.php:35 -#@ woocommerce -msgid "Create an account" -msgstr "" - -#: classes/integrations/shareyourcart/views/admin-page.php:35 -#@ woocommerce -msgid "Can't access your account?" -msgstr "" - -#: classes/integrations/shareyourcart/views/admin-page.php:100 -#@ woocommerce -msgid "Configure" -msgstr "" - -#: admin/woocommerce-admin-settings.php:386 -#: classes/integrations/shareyourcart/views/admin-page.php:110 -#: classes/integrations/shareyourcart/views/button-settings-page.php:120 -#@ woocommerce -msgid "Save changes" -msgstr "Сохранить изменения" - -#: classes/integrations/shareyourcart/views/button-settings-page.php:8 -#: classes/integrations/shareyourcart/views/button-settings-page.php:11 -#@ woocommerce -msgid "Button style" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:25 -#@ woocommerce -msgid "Flat rate" -msgstr "Единые ставки" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:28 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:461 -#@ woocommerce -msgid "Flat Rates" -msgstr "Единые ставки" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:29 -#@ woocommerce -msgid "Flat rates let you define a standard rate per item, or per order." -msgstr "Единые ставки позволяют определять стандартную ставку за позицию или весь заказ." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:79 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:54 -#@ woocommerce -msgid "Enable this shipping method" -msgstr "Активировать этот метод доставки" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:83 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:81 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:58 -#@ woocommerce -msgid "Method Title" -msgstr "Заголовок метода" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:86 -#@ woocommerce -msgid "Flat Rate" -msgstr "Единая ставка" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:90 -#@ woocommerce -msgid "Cost per order" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:96 -#, fuzzy -#@ woocommerce -msgid "Enter a cost (excluding tax) per order, e.g. 5.00. Leave blank to disable." -msgstr "Взнос без налога. Введите значение, например, 2.50, или проценты, например, 5%. Оставьте пустым, чтобы было неактивным." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:102 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:88 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:143 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:99 -#@ woocommerce -msgid "Method availability" -msgstr "Метод доступности" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:107 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:93 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:148 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:104 -#@ woocommerce -msgid "All allowed countries" -msgstr "Все разрешенные страны" - -#: admin/settings/settings-init.php:68 -#: admin/settings/settings-init.php:73 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:108 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:112 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:98 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:149 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:153 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:105 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:109 -#@ woocommerce -msgid "Specific Countries" -msgstr "Определенные страны" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:120 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:83 -#@ woocommerce -msgid "Calculation Type" -msgstr "Тип расчета" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:124 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:87 -#@ woocommerce -msgid "Per Order - charge shipping for the entire order as a whole" -msgstr "Целый заказ — доставка оплачивается за весь заказ" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:125 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:88 -#@ woocommerce -msgid "Per Item - charge shipping for each item individually" -msgstr "За наименование — доставка оплачивается за каждое наименование в заказе" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:126 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:89 -#@ woocommerce -msgid "Per Class - charge shipping for each shipping class in an order" -msgstr "За класс — оплата доставки осуществляется за каждый отдельный класс в заказе" - -#: admin/post-types/writepanels/writepanel-product_data.php:178 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:130 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:93 -#@ woocommerce -msgid "Tax Status" -msgstr "Статус налога" - -#: admin/post-types/writepanels/order-fee-html.php:20 -#: admin/post-types/writepanels/writepanel-product_data.php:179 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:134 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:97 -#@ woocommerce -msgid "Taxable" -msgstr "Налогооблагаемый" - -#: admin/post-types/writepanels/writepanel-product_data.php:181 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:135 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:98 -#@ woocommerce -msgid "None" -msgstr "Нет" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:139 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:102 -#@ woocommerce -msgid "Default Cost" -msgstr "Стандартная цена" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:145 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:108 -#@ woocommerce -msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -msgstr "Цена исключая налог. Введите значение, например, 2.50" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:151 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:114 -#@ woocommerce -msgid "Default Handling Fee" -msgstr "Стандартный платеж за обработку" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:153 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:116 -#@ woocommerce -msgid "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. Leave blank to disable." -msgstr "Взнос без налога. Введите значение, например, 2.50, или проценты, например, 5%. Оставьте пустым, чтобы было неактивным." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:159 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:122 -#@ woocommerce -msgid "Minimum Fee" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:165 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:128 -#@ woocommerce -msgid "Enter a minimum fee amount. Fee's less than this will be increased. Leave blank to disable." -msgstr "" - -#: admin/settings/settings-init.php:833 -#: admin/woocommerce-admin-settings.php:290 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:171 -#@ woocommerce -msgid "Shipping Options" -msgstr "Настройки доставки" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:173 -#@ woocommerce -msgid "Optional extra shipping options with additional costs (one per line). Example: Option Name|Cost|Per-order (yes or no). Example: Priority Mail|6.95|yes. If per-order is set to no, it will use the \"Calculation Type\" setting." -msgstr "Дополнительные настройки доставки с дополнительной стоимостью (одна на линию). Пример: Название|Цена|За весь заказ (да или нет). Живой пример: Бандероль|300|да. Если для «За весь заказ» указано «нет», то будет произведен \"Calculation Type\" подсчет на основе настроек." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:467 -#: woocommerce.php:857 -#@ woocommerce -msgid "Shipping Class" -msgstr "Класс доставки" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:468 -#@ woocommerce -msgid "Cost" -msgstr "Цена" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:468 -#@ woocommerce -msgid "Cost, excluding tax." -msgstr "Цена, исключая налог." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:469 -#@ woocommerce -msgid "Handling Fee" -msgstr "Взнос за обработку" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:469 -#@ woocommerce -msgid "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -msgstr "Плата за исключением налога. Введите значение, к примеру, 2.50 или укажите процент, к примеру, 5%." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:474 -#@ woocommerce -msgid "+ Add Flat Rate" -msgstr "+ Добавить единую ставку" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:475 -#@ woocommerce -msgid "Add rates for shipping classes here — they will override the default costs defined above." -msgstr "Добавить ставки для классов доставки — они переназначат стандартные цены, указанные выше." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:475 -#@ woocommerce -msgid "Delete selected rates" -msgstr "Удалить выбранные классы" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:495 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:528 -#@ woocommerce -msgid "Select a class…" -msgstr "Выбрать класс…" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:500 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:501 -#@ woocommerce -msgid "0.00" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:542 -#@ woocommerce -msgid "Delete the selected rates?" -msgstr "Удалить выбранные ставки?" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:25 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:145 -#@ woocommerce -msgid "Free Shipping" -msgstr "Бесплатная доставка" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:77 -#@ woocommerce -msgid "Enable Free Shipping" -msgstr "Активировать бесплатную доставку" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:106 -#, fuzzy -#@ woocommerce -msgid "Free Shipping Requires..." -msgstr "Бесплатная доставка" - -#: admin/post-types/writepanels/order-fee-html.php:19 -#: admin/post-types/writepanels/order-tax-html.php:8 -#: admin/post-types/writepanels/writepanel-order_data.php:558 -#: admin/post-types/writepanels/writepanel-order_data.php:663 -#: admin/woocommerce-admin-reports.php:1642 -#: admin/woocommerce-admin-reports.php:2655 -#: admin/woocommerce-admin-reports.php:2664 -#: admin/woocommerce-admin-users.php:90 -#: admin/woocommerce-admin-users.php:112 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:110 -#: templates/order/order-details.php:110 -#: templates/order/order-details.php:125 -#@ woocommerce -msgid "N/A" -msgstr "Нет" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:111 -#, fuzzy -#@ woocommerce -msgid "A valid free shipping coupon" -msgstr "Активировать бесплатную доставку" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:112 -#@ woocommerce -msgid "A minimum order amount (defined below)" -msgstr "" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:113 -#, fuzzy -#@ woocommerce -msgid "A minimum order amount OR a coupon" -msgstr "Минимальный заказ" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:114 -#, fuzzy -#@ woocommerce -msgid "A minimum order amount AND a coupon" -msgstr "Минимальный заказ" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:118 -#@ woocommerce -msgid "Minimum Order Amount" -msgstr "Минимальный заказ" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:124 -#, fuzzy -#@ woocommerce -msgid "Users will need to spend this amount to get free shipping (if enabled above)." -msgstr "Пользователям необходимо потратить именно столько, чтобы получить бесплатную доставку. Оставьте пустым, чтобы опция была неактивной." - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:28 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:31 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:61 -#@ woocommerce -msgid "International Delivery" -msgstr "Международная доставка" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:32 -#@ woocommerce -msgid "International delivery based on flat rate shipping." -msgstr "Международная доставка на основе единой ставки доставки." - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:65 -#@ woocommerce -msgid "Availability" -msgstr "Доступность" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:70 -#@ woocommerce -msgid "Selected countries" -msgstr "Выбранные страны" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:71 -#@ woocommerce -msgid "Excluding selected countries" -msgstr "Исключая выбранные страны" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:75 -#@ woocommerce -msgid "Countries" -msgstr "Страны" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:25 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:107 -#@ woocommerce -msgid "Local Delivery" -msgstr "Местная доставка" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:98 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:78 -#@ woocommerce -msgid "Enable" -msgstr "Включить" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:100 -#@ woocommerce -msgid "Enable local delivery" -msgstr "Активировать местную доставку" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:111 -#@ woocommerce -msgid "Fee Type" -msgstr "Тип платежа" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:113 -#@ woocommerce -msgid "How to calculate delivery charges" -msgstr "Каким образом подсчитывать стоимость доставки" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 -#@ woocommerce -msgid "Fixed amount" -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:117 -#@ woocommerce -msgid "Percentage of cart total" -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:118 -#@ woocommerce -msgid "Fixed amount per product" -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:123 -#@ woocommerce -msgid "Delivery Fee" -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:129 -#@ woocommerce -msgid "What fee do you want to charge for local delivery, disregarded if you choose free. Leave blank to disable." -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:135 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:91 -#@ woocommerce -msgid "Zip/Post Codes" -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:137 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:93 -#@ woocommerce -msgid "What zip/post codes would you like to offer delivery to? Separate codes with a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:172 -#@ woocommerce -msgid "Local delivery is a simple shipping method for delivering orders locally." -msgstr "Местная доставка — это простой метод доставки товаров в пределах города или района." - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:25 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:87 -#@ woocommerce -msgid "Local Pickup" -msgstr "Самовывоз" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:80 -#@ woocommerce -msgid "Enable local pickup" -msgstr "Активировать самовывоз" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:117 -#, fuzzy -#@ woocommerce -msgid "Apply base tax rate" -msgstr "Применить до налога" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:119 -#@ woocommerce -msgid "When this shipping method is chosen, apply the base tax rate rather than for the customer's given address." -msgstr "" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:134 -#@ woocommerce -msgid "Local pickup is a simple method which allows the customer to pick up their order themselves." -msgstr "Самовывоз — это простой метод, позволяющий клиенту указать в заказе его желание лично забрать товар со склада или из офиса." - -#: classes/class-wc-coupon.php:497 -#@ woocommerce -msgid "Please enter a coupon code." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-cart.php:54 -#: woocommerce-functions.php:1637 -#@ woocommerce -msgid "Please enter a valid postcode/ZIP." -msgstr "Пожалуйста, введите правильный почтовый индекс." - -#: classes/shortcodes/class-wc-shortcode-cart.php:65 -#: classes/shortcodes/class-wc-shortcode-cart.php:71 -#@ woocommerce -msgid "Shipping costs updated." -msgstr "Цена доставки обновлена." - -#: classes/shortcodes/class-wc-shortcode-checkout.php:64 -#@ woocommerce -msgid "The order totals have been updated. Please confirm your order by pressing the Place Order button at the bottom of the page." -msgstr "Итоговая сумма заказа обновлена. Пожалуйста, подтвердите заказ по нажатию кнопки «Разместить заказ» внизу страницы." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:80 -#: woocommerce-core-functions.php:2488 -#: woocommerce-functions.php:1559 -#@ woocommerce -msgid "Please enter your password." -msgstr "Пожалуйста введите свой пароль" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:95 -#, fuzzy -#@ woocommerce -msgid "Your password has been reset." -msgstr "Ваши настройки сохранены." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:95 -#@ woocommerce -msgid "Log in" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:116 -#, fuzzy -#@ woocommerce -msgid "Enter a username or e-mail address." -msgstr "Пожалуйста, введите ваш email-адрес." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:123 -#, fuzzy -#@ woocommerce -msgid "There is no user registered with that email address." -msgstr "Аккаунт с данным email-адресом уже зарегистрирован. Пожалуйста, авторизуйтесь." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:138 -#, fuzzy -#@ woocommerce -msgid "Invalid username or e-mail." -msgstr "Ошибочный email / пользователь." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:152 -#@ default -msgid "Password reset is not allowed for this user" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:180 -#, fuzzy -#@ default -msgid "Check your e-mail for the confirmation link." -msgstr "Можно найти в заказе по подтвержденному email-адресу." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:200 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:205 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:212 -#, fuzzy -#@ woocommerce -msgid "Invalid key" -msgstr "Ошибка в заказе." - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:53 -#@ woocommerce -msgid "Please enter a valid order ID" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:57 -#@ woocommerce -msgid "Please enter a valid order email" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:76 -#@ woocommerce -msgid "Sorry, we could not find that order id in our database." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-pay.php:65 -#: classes/shortcodes/class-wc-shortcode-pay.php:118 -#@ woocommerce -msgid "Your order has already been paid for. Please contact us if you need assistance." -msgstr "Этот заказ уже оплачен. Пожалуйста, свяжитесь с нами если вам необходима консультация." - -#: classes/shortcodes/class-wc-shortcode-pay.php:70 -#: classes/shortcodes/class-wc-shortcode-pay.php:125 -#: classes/shortcodes/class-wc-shortcode-view-order.php:49 -#: woocommerce-functions.php:880 -#: woocommerce-functions.php:959 -#@ woocommerce -msgid "Invalid order." -msgstr "Ошибка в заказе." - -#: admin/woocommerce-admin-functions.php:188 -#: classes/shortcodes/class-wc-shortcode-pay.php:90 -#: templates/checkout/thankyou.php:40 -#: templates/emails/customer-completed-order.php:18 -#: templates/emails/customer-invoice.php:22 -#: templates/emails/customer-note.php:22 -#: templates/emails/customer-processing-order.php:18 -#@ woocommerce -msgid "Order:" -msgstr "Заказ:" - -#: classes/shortcodes/class-wc-shortcode-pay.php:94 -#: templates/checkout/thankyou.php:44 -#@ woocommerce -msgid "Date:" -msgstr "Дата:" - -#: admin/woocommerce-admin-dashboard.php:239 -#: classes/shortcodes/class-wc-shortcode-pay.php:98 -#: templates/checkout/thankyou.php:48 -#@ woocommerce -msgid "Total:" -msgstr "Всего:" - -#: classes/shortcodes/class-wc-shortcode-pay.php:103 -#: templates/checkout/thankyou.php:53 -#@ woocommerce -msgid "Payment method:" -msgstr "Метод оплаты:" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:49 -#@ woocommerce -msgid "My Account →" -msgstr "Мой аккаунт →" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:56 -#, php-format -#@ woocommerce -msgid "Order %s made on %s" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:57 -#, fuzzy, php-format -#@ woocommerce -msgid "Order status: %s" -msgstr ". Статус заказа: %s" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:63 -#: templates/order/tracking.php:31 -#@ woocommerce -msgid "Order Updates" -msgstr "Заказ обновлен" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:69 -#@ woocommerce -msgid "l jS \\of F Y, h:ia" -msgstr "" - -#: classes/widgets/class-wc-widget-best-sellers.php:31 -#@ woocommerce -msgid "Display a list of your best selling products on your site." -msgstr "Показывать список популярных товаров на сайте." - -#: classes/widgets/class-wc-widget-best-sellers.php:33 -#@ woocommerce -msgid "WooCommerce Best Sellers" -msgstr "WooCommerce Популярные товары" - -#: classes/widgets/class-wc-widget-best-sellers.php:71 -#@ woocommerce -msgid "Best Sellers" -msgstr "Популярные товары" - -#: classes/widgets/class-wc-widget-best-sellers.php:192 -#: classes/widgets/class-wc-widget-cart.php:115 -#: classes/widgets/class-wc-widget-featured-products.php:172 -#: classes/widgets/class-wc-widget-layered-nav.php:349 -#: classes/widgets/class-wc-widget-onsale.php:177 -#: classes/widgets/class-wc-widget-price-filter.php:179 -#: classes/widgets/class-wc-widget-product-categories.php:185 -#: classes/widgets/class-wc-widget-product-search.php:91 -#: classes/widgets/class-wc-widget-product-tag-cloud.php:101 -#: classes/widgets/class-wc-widget-random-products.php:133 -#: classes/widgets/class-wc-widget-recent-products.php:169 -#: classes/widgets/class-wc-widget-recent-reviews.php:158 -#: classes/widgets/class-wc-widget-recently-viewed.php:166 -#: classes/widgets/class-wc-widget-top-rated-products.php:159 -#@ woocommerce -msgid "Title:" -msgstr "Заголовок:" - -#: classes/widgets/class-wc-widget-best-sellers.php:195 -#: classes/widgets/class-wc-widget-featured-products.php:175 -#: classes/widgets/class-wc-widget-onsale.php:180 -#: classes/widgets/class-wc-widget-random-products.php:138 -#: classes/widgets/class-wc-widget-recent-products.php:172 -#: classes/widgets/class-wc-widget-recent-reviews.php:161 -#: classes/widgets/class-wc-widget-recently-viewed.php:169 -#: classes/widgets/class-wc-widget-top-rated-products.php:162 -#@ woocommerce -msgid "Number of products to show:" -msgstr "Количество товаров для демонстрации:" - -#: classes/widgets/class-wc-widget-best-sellers.php:199 -#@ woocommerce -msgid "Hide free products" -msgstr "" - -#: classes/widgets/class-wc-widget-cart.php:33 -#@ woocommerce -msgid "Display the user's Cart in the sidebar." -msgstr "" - -#: classes/widgets/class-wc-widget-cart.php:35 -#@ woocommerce -msgid "WooCommerce Cart" -msgstr "" - -#: classes/widgets/class-wc-widget-cart.php:119 -#@ woocommerce -msgid "Hide if cart is empty" -msgstr "Спрятать если корзина пуста" - -#: classes/widgets/class-wc-widget-featured-products.php:35 -#@ woocommerce -msgid "Display a list of featured products on your site." -msgstr "Показывать список рекомендуемых товаров на сайте." - -#: classes/widgets/class-wc-widget-featured-products.php:37 -#@ woocommerce -msgid "WooCommerce Featured Products" -msgstr "WooCommerce Рекомендуемые товары" - -#: classes/widgets/class-wc-widget-featured-products.php:75 -#@ woocommerce -msgid "Featured Products" -msgstr "Рекомендуемые товары" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:31 -#@ woocommerce -msgid "Shows active layered nav filters so users can see and deactivate them." -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:33 -#, fuzzy -#@ woocommerce -msgid "WooCommerce Layered Nav Filters" -msgstr "WooCommerce Навигация по слоям" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:62 -#@ woocommerce -msgid "Active filters" -msgstr "" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:93 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -#, fuzzy -#@ woocommerce -msgid "Remove filter" -msgstr "Убрать изображение" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#, fuzzy -#@ woocommerce -msgid "Min" -msgstr "дюйм" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -#, fuzzy -#@ woocommerce -msgid "Max" -msgstr "Налог" - -#: classes/widgets/class-wc-widget-layered-nav.php:31 -#@ woocommerce -msgid "Shows a custom attribute in a widget which lets you narrow down the list of products when viewing product categories." -msgstr "Показывать выборочное свойство в виджете, которое позволяет составлять небольшой список товаров при навигации по товарным категориям." - -#: classes/widgets/class-wc-widget-layered-nav.php:33 -#@ woocommerce -msgid "WooCommerce Layered Nav" -msgstr "WooCommerce Навигация по слоям" - -#: classes/widgets/class-wc-widget-layered-nav.php:100 -#, php-format -#@ woocommerce -msgid "Any %s" -msgstr "Любой %s" - -#: classes/widgets/class-wc-widget-layered-nav.php:352 -#@ woocommerce -msgid "Attribute:" -msgstr "Свойств:" - -#: classes/widgets/class-wc-widget-layered-nav.php:363 -#@ woocommerce -msgid "Display Type:" -msgstr "Тип отображения:" - -#: classes/widgets/class-wc-widget-layered-nav.php:365 -#@ woocommerce -msgid "List" -msgstr "Список" - -#: classes/widgets/class-wc-widget-layered-nav.php:366 -#@ woocommerce -msgid "Dropdown" -msgstr "Выпадающее меню" - -#: classes/widgets/class-wc-widget-layered-nav.php:369 -#@ woocommerce -msgid "Query Type:" -msgstr "Тип запроса:" - -#: classes/widgets/class-wc-widget-layered-nav.php:371 -#@ woocommerce -msgid "AND" -msgstr "И" - -#: classes/widgets/class-wc-widget-layered-nav.php:372 -#@ woocommerce -msgid "OR" -msgstr "ИЛИ" - -#: classes/widgets/class-wc-widget-login.php:31 -#@ woocommerce -msgid "Display a login area and \"My Account\" links in the sidebar." -msgstr "Показывать поле авторизации и \"My Account\" ссылки в колонке." - -#: classes/widgets/class-wc-widget-login.php:33 -#@ woocommerce -msgid "WooCommerce Login" -msgstr "WooCommerce Авторизация" - -#: classes/widgets/class-wc-widget-login.php:59 -#: classes/widgets/class-wc-widget-login.php:223 -#@ woocommerce -msgid "Customer Login" -msgstr "Авторизация клиента" - -#: classes/widgets/class-wc-widget-login.php:60 -#: classes/widgets/class-wc-widget-login.php:226 -#, php-format -#@ woocommerce -msgid "Welcome %s" -msgstr "Добро пожаловать, %s" - -#: classes/widgets/class-wc-widget-login.php:76 -#@ woocommerce -msgid "My account" -msgstr "Мой профиль" - -#: classes/widgets/class-wc-widget-login.php:77 -#@ woocommerce -msgid "Change my password" -msgstr "Изменить мой пароль" - -#: admin/woocommerce-admin-install.php:216 -#: classes/widgets/class-wc-widget-login.php:78 -#@ woocommerce -msgid "Logout" -msgstr "Выйти" - -#: classes/widgets/class-wc-widget-login.php:116 -#: templates/myaccount/form-login.php:29 -#: templates/myaccount/form-lost-password.php:24 -#: templates/shop/form-login.php:20 -#, fuzzy -#@ woocommerce -msgid "Username or email" -msgstr "Пользователь" - -#: classes/widgets/class-wc-widget-login.php:118 -#: templates/myaccount/form-login.php:33 -#: templates/myaccount/form-login.php:85 -#: templates/shop/form-login.php:24 -#@ woocommerce -msgid "Password" -msgstr "Пароль" - -#: classes/widgets/class-wc-widget-login.php:120 -#: woocommerce-functions.php:945 -#@ woocommerce -msgid "Login →" -msgstr "Авторизация →" - -#: classes/widgets/class-wc-widget-login.php:120 -#@ woocommerce -msgid "Lost password?" -msgstr "Потеряли пароль?" - -#: classes/widgets/class-wc-widget-login.php:222 -#@ woocommerce -msgid "Logged out title:" -msgstr "Вышел в качестве:" - -#: classes/widgets/class-wc-widget-login.php:225 -#@ woocommerce -msgid "Logged in title:" -msgstr "Авторизован в качестве:" - -#: classes/widgets/class-wc-widget-onsale.php:31 -#@ woocommerce -msgid "Display a list of your on-sale products on your site." -msgstr "Показывает список товаров со скидкой." - -#: classes/widgets/class-wc-widget-onsale.php:33 -#@ woocommerce -msgid "WooCommerce On-sale" -msgstr "WooCommerce Распродажа" - -#: classes/widgets/class-wc-widget-onsale.php:70 -#@ woocommerce -msgid "On Sale" -msgstr "Распродажа" - -#: classes/widgets/class-wc-widget-price-filter.php:33 -#@ woocommerce -msgid "Shows a price filter slider in a widget which lets you narrow down the list of shown products when viewing product categories." -msgstr "Показывает слайдер ценовой сортировки, который позволяет выбирать из списков товары по категориям." - -#: classes/widgets/class-wc-widget-price-filter.php:35 -#@ woocommerce -msgid "WooCommerce Price Filter" -msgstr "WooCommerce Сортировка по цене" - -#: classes/widgets/class-wc-widget-price-filter.php:136 -#@ woocommerce -msgid "Min price" -msgstr "Минимальная цена" - -#: classes/widgets/class-wc-widget-price-filter.php:137 -#@ woocommerce -msgid "Max price" -msgstr "Максимальная цена" - -#: classes/widgets/class-wc-widget-price-filter.php:138 -#@ woocommerce -msgid "Filter" -msgstr "Сортировка" - -#: classes/widgets/class-wc-widget-price-filter.php:140 -#@ woocommerce -msgid "Price:" -msgstr "Цена:" - -#: classes/widgets/class-wc-widget-price-filter.php:162 -#@ woocommerce -msgid "Filter by price" -msgstr "Сортировка по цене" - -#: classes/widgets/class-wc-widget-product-categories.php:33 -#@ woocommerce -msgid "A list or dropdown of product categories." -msgstr "Список или выпадающий список категорий товара." - -#: classes/widgets/class-wc-widget-product-categories.php:35 -#@ woocommerce -msgid "WooCommerce Product Categories" -msgstr "WooCommerce Категории товара" - -#: classes/widgets/class-wc-widget-product-categories.php:57 -#: woocommerce.php:787 -#: woocommerce.php:789 -#@ woocommerce -msgid "Product Categories" -msgstr "Категории товара" - -#: classes/widgets/class-wc-widget-product-categories.php:129 -#@ woocommerce -msgid "No product categories exist." -msgstr "" - -#: classes/widgets/class-wc-widget-product-categories.php:188 -#@ woocommerce -msgid "Order by:" -msgstr "Сортировать по:" - -#: classes/widgets/class-wc-widget-product-categories.php:190 -#@ woocommerce -msgid "Category Order" -msgstr "Порядок категорий" - -#: admin/post-types/product.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:372 -#: admin/post-types/writepanels/writepanel-product_data.php:451 -#: admin/woocommerce-admin-attributes.php:232 -#: admin/woocommerce-admin-attributes.php:268 -#: admin/woocommerce-admin-attributes.php:306 -#: admin/woocommerce-admin-attributes.php:329 -#: admin/woocommerce-admin-attributes.php:373 -#: admin/woocommerce-admin-attributes.php:398 -#: admin/woocommerce-admin-init.php:450 -#: classes/widgets/class-wc-widget-product-categories.php:191 -#: templates/single-product-reviews.php:99 -#: woocommerce-ajax.php:1244 -#@ woocommerce -msgid "Name" -msgstr "Имя" - -#: classes/widgets/class-wc-widget-product-categories.php:195 -#@ woocommerce -msgid "Show as dropdown" -msgstr "Показывать выпадающим списком" - -#: classes/widgets/class-wc-widget-product-categories.php:198 -#@ woocommerce -msgid "Show post counts" -msgstr "Показывать счетчик сообщений" - -#: classes/widgets/class-wc-widget-product-categories.php:201 -#@ woocommerce -msgid "Show hierarchy" -msgstr "Показывать иерархию" - -#: classes/widgets/class-wc-widget-product-categories.php:204 -#, fuzzy -#@ woocommerce -msgid "Only show children for the current category" -msgstr "Показать подкатегории только для текущей категории" - -#: classes/widgets/class-wc-widget-product-search.php:31 -#@ woocommerce -msgid "A Search box for products only." -msgstr "Поисковое поле только по товарам." - -#: classes/widgets/class-wc-widget-product-search.php:33 -#@ woocommerce -msgid "WooCommerce Product Search" -msgstr "WooCommerce Поиск по товарам" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:31 -#@ woocommerce -msgid "Your most used product tags in cloud format." -msgstr "Часто используемые метки товаров в формате облака." - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:33 -#@ woocommerce -msgid "WooCommerce Product Tags" -msgstr "WooCommerce Метки товаров" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:58 -#: woocommerce.php:823 -#: woocommerce.php:825 -#@ woocommerce -msgid "Product Tags" -msgstr "Метки товара" - -#: classes/widgets/class-wc-widget-random-products.php:24 -#@ woocommerce -msgid "WooCommerce Random Products" -msgstr "WooCommerce Случайные товары" - -#: classes/widgets/class-wc-widget-random-products.php:27 -#@ woocommerce -msgid "Display a list of random products on your site." -msgstr "Показывает список случайных товаров на сайте." - -#: classes/widgets/class-wc-widget-random-products.php:46 -#@ woocommerce -msgid "Random Products" -msgstr "Случайные товары" - -#: classes/widgets/class-wc-widget-random-products.php:144 -#: classes/widgets/class-wc-widget-recent-products.php:176 -#@ woocommerce -msgid "Show hidden product variations" -msgstr "Показывать варианты для скрытых товаров" - -#: classes/widgets/class-wc-widget-recent-products.php:31 -#@ woocommerce -msgid "Display a list of your most recent products on your site." -msgstr "Показывать список новых товаров на сайте." - -#: classes/widgets/class-wc-widget-recent-products.php:33 -#@ woocommerce -msgid "WooCommerce Recent Products" -msgstr "WooCommerce Новые товары" - -#: classes/widgets/class-wc-widget-recent-products.php:70 -#@ woocommerce -msgid "New Products" -msgstr "Новые товары" - -#: classes/widgets/class-wc-widget-recent-reviews.php:31 -#@ woocommerce -msgid "Display a list of your most recent reviews on your site." -msgstr "Показывать список новых отзывов на сайте." - -#: admin/woocommerce-admin-dashboard.php:45 -#: classes/widgets/class-wc-widget-recent-reviews.php:33 -#@ woocommerce -msgid "WooCommerce Recent Reviews" -msgstr "WooCommerce Новые отзывы" - -#: classes/widgets/class-wc-widget-recent-reviews.php:71 -#@ woocommerce -msgid "Recent Reviews" -msgstr "Недавние отзывы" - -#: templates/single-product/review.php:26 -#, fuzzy, php-format -#@ woocommerce -msgid "Rated %d out of 5" -msgstr "Рейтинг %s из 5" - -#: classes/widgets/class-wc-widget-recent-reviews.php:97 -#, php-format -#@ woocommerce -msgctxt "by comment author" -msgid "by %1$s" -msgstr "на %1$s" - -#: classes/widgets/class-wc-widget-recently-viewed.php:31 -#@ woocommerce -msgid "Display a list of recently viewed products." -msgstr "Показывать список недавно просмотренных товаров." - -#: classes/widgets/class-wc-widget-recently-viewed.php:33 -#@ woocommerce -msgid "WooCommerce Recently Viewed Products" -msgstr "WooCommerce Недавно просмотренные товары" - -#: classes/widgets/class-wc-widget-recently-viewed.php:76 -#@ woocommerce -msgid "Recently viewed" -msgstr "Недавно просмотренные" - -#: classes/widgets/class-wc-widget-top-rated-products.php:33 -#@ woocommerce -msgid "Display a list of top rated products on your site." -msgstr "Отображать список товаров с большим рейтингом на сайте." - -#: classes/widgets/class-wc-widget-top-rated-products.php:35 -#@ woocommerce -msgid "WooCommerce Top Rated Products" -msgstr "WooCommerce Товары с высоким рейтингом" - -#: classes/widgets/class-wc-widget-top-rated-products.php:72 -#@ woocommerce -msgid "Top Rated Products" -msgstr "Товары с высоким рейтингом" - -#: i18n/states/AU.php:13 -#@ woocommerce -msgid "Australian Capital Territory" -msgstr "Австралийская столичная территория" - -#: i18n/states/AU.php:14 -#@ woocommerce -msgid "New South Wales" -msgstr "Новый Южный Уэльс" - -#: i18n/states/AU.php:15 -#@ woocommerce -msgid "Northern Territory" -msgstr "Северная территория" - -#: i18n/states/AU.php:16 -#@ woocommerce -msgid "Queensland" -msgstr "Квинсленд" - -#: i18n/states/AU.php:17 -#@ woocommerce -msgid "South Australia" -msgstr "Южная Австралия" - -#: i18n/states/AU.php:18 -#@ woocommerce -msgid "Tasmania" -msgstr "Тасмания" - -#: i18n/states/AU.php:19 -#@ woocommerce -msgid "Victoria" -msgstr "Виктория" - -#: i18n/states/AU.php:20 -#@ woocommerce -msgid "Western Australia" -msgstr "Западная Австралия" - -#: i18n/states/BR.php:13 -#@ woocommerce -msgid "Acre" -msgstr "Акр" - -#: i18n/states/BR.php:14 -#@ woocommerce -msgid "Alagoas" -msgstr "Алагоас" - -#: i18n/states/BR.php:15 -#@ woocommerce -msgid "Amapá" -msgstr "Амапа" - -#: i18n/states/BR.php:16 -#@ woocommerce -msgid "Amazonas" -msgstr "Амазонас" - -#: i18n/states/BR.php:17 -#@ woocommerce -msgid "Bahia" -msgstr "Багия" - -#: i18n/states/BR.php:18 -#@ woocommerce -msgid "Ceará" -msgstr "Сеара" - -#: i18n/states/BR.php:19 -#, fuzzy -#@ woocommerce -msgid "Distrito Federal" -msgstr "Федеральный округ" - -#: i18n/states/BR.php:20 -#@ woocommerce -msgid "Espírito Santo" -msgstr "" - -#: i18n/states/BR.php:21 -#@ woocommerce -msgid "Goiás" -msgstr "Гоая" - -#: i18n/states/BR.php:22 -#@ woocommerce -msgid "Maranhão" -msgstr "Мараньян" - -#: i18n/states/BR.php:23 -#, fuzzy -#@ woocommerce -msgid "Mato Grosso" -msgstr "Мату-Гросу" - -#: i18n/states/BR.php:24 -#, fuzzy -#@ woocommerce -msgid "Mato Grosso do Sul" -msgstr "Мату-Гросу-ду-Сул" - -#: i18n/states/BR.php:25 -#, fuzzy -#@ woocommerce -msgid "Minas Gerais" -msgstr "Минас-Жерайс" - -#: i18n/states/BR.php:26 -#@ woocommerce -msgid "Pará" -msgstr "Пара" - -#: i18n/states/BR.php:27 -#@ woocommerce -msgid "Paraíba" -msgstr "" - -#: i18n/states/BR.php:28 -#@ woocommerce -msgid "Paraná" -msgstr "Парана" - -#: i18n/states/BR.php:29 -#@ woocommerce -msgid "Pernambuco" -msgstr "Пернамбуку" - -#: i18n/states/BR.php:30 -#@ woocommerce -msgid "Piauí" -msgstr "Пиауи" - -#: i18n/states/BR.php:31 -#, fuzzy -#@ woocommerce -msgid "Rio de Janeiro" -msgstr "Рио-де-Жанейро" - -#: i18n/states/BR.php:32 -#, fuzzy -#@ woocommerce -msgid "Rio Grande do Norte" -msgstr "Рио-Гранде-ду-Норти" - -#: i18n/states/BR.php:33 -#, fuzzy -#@ woocommerce -msgid "Rio Grande do Sul" -msgstr "Рио-Гранде-ду-Сул" - -#: i18n/states/BR.php:34 -#@ woocommerce -msgid "Rondônia" -msgstr "Рондония" - -#: i18n/states/BR.php:35 -#@ woocommerce -msgid "Roraima" -msgstr "Рорайма" - -#: i18n/states/BR.php:36 -#, fuzzy -#@ woocommerce -msgid "Santa Catarina" -msgstr "Санта-Катарина" - -#: i18n/states/BR.php:37 -#, fuzzy -#@ woocommerce -msgid "São Paulo" -msgstr "Сан-Паулу" - -#: i18n/states/BR.php:38 -#@ woocommerce -msgid "Sergipe" -msgstr "Сержипи" - -#: i18n/states/BR.php:39 -#@ woocommerce -msgid "Tocantins" -msgstr "Токантинс" - -#: i18n/states/CA.php:13 -#@ woocommerce -msgid "Alberta" -msgstr "Алберта" - -#: i18n/states/CA.php:14 -#@ woocommerce -msgid "British Columbia" -msgstr "Британская Колумбия" - -#: i18n/states/CA.php:15 -#@ woocommerce -msgid "Manitoba" -msgstr "Манитоба" - -#: i18n/states/CA.php:16 -#@ woocommerce -msgid "New Brunswick" -msgstr "Нью-Брвнсуик" - -#: i18n/states/CA.php:17 -#@ woocommerce -msgid "Newfoundland" -msgstr "Ньюфаундленд" - -#: i18n/states/CA.php:18 -#@ woocommerce -msgid "Northwest Territories" -msgstr "Северо-западные территории" - -#: i18n/states/CA.php:19 -#@ woocommerce -msgid "Nova Scotia" -msgstr "Новая Шотландия" - -#: i18n/states/CA.php:20 -#@ woocommerce -msgid "Nunavut" -msgstr "Нунавут" - -#: i18n/states/CA.php:21 -#@ woocommerce -msgid "Ontario" -msgstr "Онтарио" - -#: i18n/states/CA.php:22 -#@ woocommerce -msgid "Prince Edward Island" -msgstr "Остров Принца Эдуарда" - -#: i18n/states/CA.php:23 -#@ woocommerce -msgid "Quebec" -msgstr "Квебек" - -#: i18n/states/CA.php:24 -#@ woocommerce -msgid "Saskatchewan" -msgstr "Саскачеван" - -#: i18n/states/CA.php:25 -#@ woocommerce -msgid "Yukon Territory" -msgstr "Территория Юкон" - -#: i18n/states/CN.php:13 -#@ woocommerce -msgid "Yunnan / 云南" -msgstr "" - -#: i18n/states/CN.php:14 -#@ woocommerce -msgid "Beijing / 北京" -msgstr "" - -#: i18n/states/CN.php:15 -#@ woocommerce -msgid "Tianjin / 天津" -msgstr "" - -#: i18n/states/CN.php:16 -#@ woocommerce -msgid "Hebei / 河北" -msgstr "" - -#: i18n/states/CN.php:17 -#@ woocommerce -msgid "Shanxi / 山西" -msgstr "" - -#: i18n/states/CN.php:18 -#@ woocommerce -msgid "Inner Mongolia / 內蒙古" -msgstr "" - -#: i18n/states/CN.php:19 -#@ woocommerce -msgid "Liaoning / 辽宁" -msgstr "" - -#: i18n/states/CN.php:20 -#@ woocommerce -msgid "Jilin / 吉林" -msgstr "" - -#: i18n/states/CN.php:21 -#@ woocommerce -msgid "Heilongjiang / 黑龙江" -msgstr "" - -#: i18n/states/CN.php:22 -#@ woocommerce -msgid "Shanghai / 上海" -msgstr "" - -#: i18n/states/CN.php:23 -#@ woocommerce -msgid "Jiangsu / 江苏" -msgstr "" - -#: i18n/states/CN.php:24 -#@ woocommerce -msgid "Zhejiang / 浙江" -msgstr "" - -#: i18n/states/CN.php:25 -#@ woocommerce -msgid "Anhui / 安徽" -msgstr "" - -#: i18n/states/CN.php:26 -#@ woocommerce -msgid "Fujian / 福建" -msgstr "" - -#: i18n/states/CN.php:27 -#@ woocommerce -msgid "Jiangxi / 江西" -msgstr "" - -#: i18n/states/CN.php:28 -#@ woocommerce -msgid "Shandong / 山东" -msgstr "" - -#: i18n/states/CN.php:29 -#@ woocommerce -msgid "Henan / 河南" -msgstr "" - -#: i18n/states/CN.php:30 -#@ woocommerce -msgid "Hubei / 湖北" -msgstr "" - -#: i18n/states/CN.php:31 -#@ woocommerce -msgid "Hunan / 湖南" -msgstr "" - -#: i18n/states/CN.php:32 -#@ woocommerce -msgid "Guangdong / 广东" -msgstr "" - -#: i18n/states/CN.php:33 -#@ woocommerce -msgid "Guangxi Zhuang / 广西壮族" -msgstr "" - -#: i18n/states/CN.php:34 -#@ woocommerce -msgid "Hainan / 海南" -msgstr "" - -#: i18n/states/CN.php:35 -#@ woocommerce -msgid "Chongqing / 重庆" -msgstr "" - -#: i18n/states/CN.php:36 -#@ woocommerce -msgid "Sichuan / 四川" -msgstr "" - -#: i18n/states/CN.php:37 -#@ woocommerce -msgid "Guizhou / 贵州" -msgstr "" - -#: i18n/states/CN.php:38 -#@ woocommerce -msgid "Shaanxi / 陕西" -msgstr "" - -#: i18n/states/CN.php:39 -#@ woocommerce -msgid "Gansu / 甘肃" -msgstr "" - -#: i18n/states/CN.php:40 -#@ woocommerce -msgid "Qinghai / 青海" -msgstr "" - -#: i18n/states/CN.php:41 -#@ woocommerce -msgid "Ningxia Hui / 宁夏" -msgstr "" - -#: i18n/states/CN.php:42 -#@ woocommerce -msgid "Macau / 澳门" -msgstr "" - -#: i18n/states/CN.php:43 -#@ woocommerce -msgid "Tibet / 西藏" -msgstr "" - -#: i18n/states/CN.php:44 -#@ woocommerce -msgid "Xinjiang / 新疆" -msgstr "" - -#: i18n/states/HK.php:13 -#@ woocommerce -msgid "Hong Kong Island" -msgstr "Остров Гонконг" - -#: i18n/states/HK.php:14 -#@ woocommerce -msgid "Kowloon" -msgstr "" - -#: i18n/states/HK.php:15 -#@ woocommerce -msgid "New Territories" -msgstr "Новые территории" - -#: i18n/states/HZ.php:13 -#, fuzzy -#@ woocommerce -msgid "Auckland" -msgstr "Исландия" - -#: i18n/states/HZ.php:14 -#@ woocommerce -msgid "Bay of Plenty" -msgstr "" - -#: i18n/states/HZ.php:15 -#@ woocommerce -msgid "Canterbury" -msgstr "" - -#: i18n/states/HZ.php:16 -#@ woocommerce -msgid "Hawke’s Bay" -msgstr "" - -#: i18n/states/HZ.php:17 -#@ woocommerce -msgid "Manawatu-Wanganui" -msgstr "" - -#: i18n/states/HZ.php:18 -#@ woocommerce -msgid "Marlborough" -msgstr "" - -#: i18n/states/HZ.php:19 -#@ woocommerce -msgid "Nelson" -msgstr "" - -#: i18n/states/HZ.php:20 -#, fuzzy -#@ woocommerce -msgid "Northland" -msgstr "Нидерланды" - -#: i18n/states/HZ.php:21 -#@ woocommerce -msgid "Otago" -msgstr "" - -#: i18n/states/HZ.php:22 -#, fuzzy -#@ woocommerce -msgid "Southland" -msgstr "Польша" - -#: i18n/states/HZ.php:23 -#@ woocommerce -msgid "Taranaki" -msgstr "" - -#: i18n/states/HZ.php:24 -#, fuzzy -#@ woocommerce -msgid "Tasman" -msgstr "Тасмания" - -#: i18n/states/HZ.php:25 -#@ woocommerce -msgid "Waikato" -msgstr "" - -#: i18n/states/HZ.php:26 -#, fuzzy -#@ woocommerce -msgid "Wellington" -msgstr "Вашингтон" - -#: i18n/states/HZ.php:27 -#, fuzzy -#@ woocommerce -msgid "West Coast" -msgstr "Стандартная цена" - -#: i18n/states/IN.php:13 -#@ woocommerce -msgid "Andra Pradesh" -msgstr "" - -#: i18n/states/IN.php:14 -#@ woocommerce -msgid "Arunachal Pradesh" -msgstr "" - -#: i18n/states/IN.php:15 -#@ woocommerce -msgid "Assam" -msgstr "" - -#: i18n/states/IN.php:16 -#@ woocommerce -msgid "Bihar" -msgstr "" - -#: i18n/states/IN.php:17 -#@ woocommerce -msgid "Chhattisgarh" -msgstr "" - -#: i18n/states/IN.php:18 -#, fuzzy -#@ woocommerce -msgid "Goa" -msgstr "Грузия" - -#: i18n/states/IN.php:19 -#@ woocommerce -msgid "Gujarat" -msgstr "" - -#: i18n/states/IN.php:20 -#, fuzzy -#@ woocommerce -msgid "Haryana" -msgstr "Гайана" - -#: i18n/states/IN.php:21 -#@ woocommerce -msgid "Himachal Pradesh" -msgstr "" - -#: i18n/states/IN.php:22 -#@ woocommerce -msgid "Jammu and Kashmir" -msgstr "" - -#: i18n/states/IN.php:23 -#@ woocommerce -msgid "Jharkhand" -msgstr "" - -#: i18n/states/IN.php:24 -#@ woocommerce -msgid "Karnataka" -msgstr "" - -#: i18n/states/IN.php:25 -#, fuzzy -#@ woocommerce -msgid "Kerala" -msgstr "Общие" - -#: i18n/states/IN.php:26 -#@ woocommerce -msgid "Madhya Pradesh" -msgstr "" - -#: i18n/states/IN.php:27 -#@ woocommerce -msgid "Maharashtra" -msgstr "" - -#: i18n/states/IN.php:28 -#@ woocommerce -msgid "Manipur" -msgstr "" - -#: i18n/states/IN.php:29 -#, fuzzy -#@ woocommerce -msgid "Meghalaya" -msgstr "Малайзия" - -#: i18n/states/IN.php:30 -#@ woocommerce -msgid "Mizoram" -msgstr "" - -#: i18n/states/IN.php:31 -#, fuzzy -#@ woocommerce -msgid "Nagaland" -msgstr "Новая Зеландия" - -#: i18n/states/IN.php:32 -#@ woocommerce -msgid "Orissa" -msgstr "" - -#: i18n/states/IN.php:33 -#@ woocommerce -msgid "Punjab" -msgstr "" - -#: i18n/states/IN.php:34 -#@ woocommerce -msgid "Rajasthan" -msgstr "" - -#: i18n/states/IN.php:35 -#@ woocommerce -msgid "Sikkim" -msgstr "" - -#: i18n/states/IN.php:36 -#@ woocommerce -msgid "Tamil Nadu" -msgstr "" - -#: i18n/states/IN.php:37 -#@ woocommerce -msgid "Tripura" -msgstr "" - -#: i18n/states/IN.php:38 -#@ woocommerce -msgid "Uttaranchal" -msgstr "" - -#: i18n/states/IN.php:39 -#@ woocommerce -msgid "Uttar Pradesh" -msgstr "" - -#: i18n/states/IN.php:40 -#@ woocommerce -msgid "West Bengal" -msgstr "" - -#: i18n/states/IN.php:41 -#, fuzzy -#@ woocommerce -msgid "Andaman and Nicobar Islands" -msgstr "Острова Теркс и Кайкос" - -#: i18n/states/IN.php:42 -#, fuzzy -#@ woocommerce -msgid "Chandigarh" -msgstr "Изменить" - -#: i18n/states/IN.php:43 -#@ woocommerce -msgid "Dadar and Nagar Haveli" -msgstr "" - -#: i18n/states/IN.php:44 -#@ woocommerce -msgid "Daman and Diu" -msgstr "" - -#: i18n/states/IN.php:45 -#@ woocommerce -msgid "Delhi" -msgstr "" - -#: i18n/states/IN.php:46 -#@ woocommerce -msgid "Lakshadeep" -msgstr "" - -#: i18n/states/IN.php:47 -#@ woocommerce -msgid "Pondicherry (Puducherry)" -msgstr "" - -#: i18n/states/MY.php:13 -#@ woocommerce -msgid "Johor" -msgstr "" - -#: i18n/states/MY.php:14 -#@ woocommerce -msgid "Kedah" -msgstr "" - -#: i18n/states/MY.php:15 -#@ woocommerce -msgid "Kelantan" -msgstr "" - -#: i18n/states/MY.php:16 -#@ woocommerce -msgid "Melaka" -msgstr "" - -#: i18n/states/MY.php:17 -#@ woocommerce -msgid "Negeri Sembilan" -msgstr "" - -#: i18n/states/MY.php:18 -#, fuzzy -#@ woocommerce -msgid "Pahang" -msgstr "Изменить" - -#: i18n/states/MY.php:19 -#@ woocommerce -msgid "Perak" -msgstr "" - -#: i18n/states/MY.php:20 -#@ woocommerce -msgid "Perlis" -msgstr "" - -#: i18n/states/MY.php:21 -#@ woocommerce -msgid "Pulau Pinang" -msgstr "" - -#: i18n/states/MY.php:22 -#@ woocommerce -msgid "Sabah" -msgstr "" - -#: i18n/states/MY.php:23 -#@ woocommerce -msgid "Sarawak" -msgstr "" - -#: i18n/states/MY.php:24 -#@ woocommerce -msgid "Selangor" -msgstr "" - -#: i18n/states/MY.php:25 -#@ woocommerce -msgid "Terengganu" -msgstr "" - -#: i18n/states/MY.php:26 -#@ woocommerce -msgid "W.P. Kuala Lumpur" -msgstr "" - -#: i18n/states/MY.php:27 -#@ woocommerce -msgid "W.P. Labuan" -msgstr "" - -#: i18n/states/MY.php:28 -#@ woocommerce -msgid "W.P. Putrajaya" -msgstr "" - -#: i18n/states/TH.php:13 -#@ woocommerce -msgid "Amnat Charoen (อำนาจเจริญ)" -msgstr "" - -#: i18n/states/TH.php:14 -#@ woocommerce -msgid "Ang Thong (อ่างทอง)" -msgstr "" - -#: i18n/states/TH.php:15 -#@ woocommerce -msgid "Ayutthaya (พระนครศรีอยุธยา)" -msgstr "" - -#: i18n/states/TH.php:16 -#@ woocommerce -msgid "Bangkok (กรุงเทพมหานคร)" -msgstr "" - -#: i18n/states/TH.php:17 -#@ woocommerce -msgid "Bueng Kan (บึงกาฬ)" -msgstr "" - -#: i18n/states/TH.php:18 -#@ woocommerce -msgid "Buri Ram (บุรีรัมย์)" -msgstr "" - -#: i18n/states/TH.php:19 -#@ woocommerce -msgid "Chachoengsao (ฉะเชิงเทรา)" -msgstr "" - -#: i18n/states/TH.php:20 -#@ woocommerce -msgid "Chai Nat (ชัยนาท)" -msgstr "" - -#: i18n/states/TH.php:21 -#@ woocommerce -msgid "Chaiyaphum (ชัยภูมิ)" -msgstr "" - -#: i18n/states/TH.php:22 -#@ woocommerce -msgid "Chanthaburi (จันทบุรี)" -msgstr "" - -#: i18n/states/TH.php:23 -#@ woocommerce -msgid "Chiang Mai (เชียงใหม่)" -msgstr "" - -#: i18n/states/TH.php:24 -#@ woocommerce -msgid "Chiang Rai (เชียงราย)" -msgstr "" - -#: i18n/states/TH.php:25 -#@ woocommerce -msgid "Chonburi (ชลบุรี)" -msgstr "" - -#: i18n/states/TH.php:26 -#@ woocommerce -msgid "Chumphon (ชุมพร)" -msgstr "" - -#: i18n/states/TH.php:27 -#@ woocommerce -msgid "Kalasin (กาฬสินธุ์)" -msgstr "" - -#: i18n/states/TH.php:28 -#@ woocommerce -msgid "Kamphaeng Phet (กำแพงเพชร)" -msgstr "" - -#: i18n/states/TH.php:29 -#@ woocommerce -msgid "Kanchanaburi (กาญจนบุรี)" -msgstr "" - -#: i18n/states/TH.php:30 -#@ woocommerce -msgid "Khon Kaen (ขอนแก่น)" -msgstr "" - -#: i18n/states/TH.php:31 -#@ woocommerce -msgid "Krabi (กระบี่)" -msgstr "" - -#: i18n/states/TH.php:32 -#@ woocommerce -msgid "Lampang (ลำปาง)" -msgstr "" - -#: i18n/states/TH.php:33 -#@ woocommerce -msgid "Lamphun (ลำพูน)" -msgstr "" - -#: i18n/states/TH.php:34 -#@ woocommerce -msgid "Loei (เลย)" -msgstr "" - -#: i18n/states/TH.php:35 -#@ woocommerce -msgid "Lopburi (ลพบุรี)" -msgstr "" - -#: i18n/states/TH.php:36 -#@ woocommerce -msgid "Mae Hong Son (แม่ฮ่องสอน)" -msgstr "" - -#: i18n/states/TH.php:37 -#@ woocommerce -msgid "Maha Sarakham (มหาสารคาม)" -msgstr "" - -#: i18n/states/TH.php:38 -#@ woocommerce -msgid "Mukdahan (มุกดาหาร)" -msgstr "" - -#: i18n/states/TH.php:39 -#@ woocommerce -msgid "Nakhon Nayok (นครนายก)" -msgstr "" - -#: i18n/states/TH.php:40 -#@ woocommerce -msgid "Nakhon Pathom (นครปฐม)" -msgstr "" - -#: i18n/states/TH.php:41 -#@ woocommerce -msgid "Nakhon Phanom (นครพนม)" -msgstr "" - -#: i18n/states/TH.php:42 -#@ woocommerce -msgid "Nakhon Ratchasima (นครราชสีมา)" -msgstr "" - -#: i18n/states/TH.php:43 -#@ woocommerce -msgid "Nakhon Sawan (นครสวรรค์)" -msgstr "" - -#: i18n/states/TH.php:44 -#@ woocommerce -msgid "Nakhon Si Thammarat (นครศรีธรรมราช)" -msgstr "" - -#: i18n/states/TH.php:45 -#@ woocommerce -msgid "Nan (น่าน)" -msgstr "" - -#: i18n/states/TH.php:46 -#@ woocommerce -msgid "Narathiwat (นราธิวาส)" -msgstr "" - -#: i18n/states/TH.php:47 -#@ woocommerce -msgid "Nong Bua Lam Phu (หนองบัวลำภู)" -msgstr "" - -#: i18n/states/TH.php:48 -#@ woocommerce -msgid "Nong Khai (หนองคาย)" -msgstr "" - -#: i18n/states/TH.php:49 -#@ woocommerce -msgid "Nonthaburi (นนทบุรี)" -msgstr "" - -#: i18n/states/TH.php:50 -#@ woocommerce -msgid "Pathum Thani (ปทุมธานี)" -msgstr "" - -#: i18n/states/TH.php:51 -#@ woocommerce -msgid "Pattani (ปัตตานี)" -msgstr "" - -#: i18n/states/TH.php:52 -#@ woocommerce -msgid "Phang Nga (พังงา)" -msgstr "" - -#: i18n/states/TH.php:53 -#@ woocommerce -msgid "Phatthalung (พัทลุง)" -msgstr "" - -#: i18n/states/TH.php:54 -#@ woocommerce -msgid "Phayao (พะเยา)" -msgstr "" - -#: i18n/states/TH.php:55 -#@ woocommerce -msgid "Phetchabun (เพชรบูรณ์)" -msgstr "" - -#: i18n/states/TH.php:56 -#@ woocommerce -msgid "Phetchaburi (เพชรบุรี)" -msgstr "" - -#: i18n/states/TH.php:57 -#@ woocommerce -msgid "Phichit (พิจิตร)" -msgstr "" - -#: i18n/states/TH.php:58 -#@ woocommerce -msgid "Phitsanulok (พิษณุโลก)" -msgstr "" - -#: i18n/states/TH.php:59 -#@ woocommerce -msgid "Phrae (แพร่)" -msgstr "" - -#: i18n/states/TH.php:60 -#@ woocommerce -msgid "Phuket (ภูเก็ต)" -msgstr "" - -#: i18n/states/TH.php:61 -#@ woocommerce -msgid "Prachin Buri (ปราจีนบุรี)" -msgstr "" - -#: i18n/states/TH.php:62 -#@ woocommerce -msgid "Prachuap Khiri Khan (ประจวบคีรีขันธ์)" -msgstr "" - -#: i18n/states/TH.php:63 -#@ woocommerce -msgid "Ranong (ระนอง)" -msgstr "" - -#: i18n/states/TH.php:64 -#@ woocommerce -msgid "Ratchaburi (ราชบุรี)" -msgstr "" - -#: i18n/states/TH.php:65 -#@ woocommerce -msgid "Rayong (ระยอง)" -msgstr "" - -#: i18n/states/TH.php:66 -#@ woocommerce -msgid "Roi Et (ร้อยเอ็ด)" -msgstr "" - -#: i18n/states/TH.php:67 -#@ woocommerce -msgid "Sa Kaeo (สระแก้ว)" -msgstr "" - -#: i18n/states/TH.php:68 -#@ woocommerce -msgid "Sakon Nakhon (สกลนคร)" -msgstr "" - -#: i18n/states/TH.php:69 -#@ woocommerce -msgid "Samut Prakan (สมุทรปราการ)" -msgstr "" - -#: i18n/states/TH.php:70 -#@ woocommerce -msgid "Samut Sakhon (สมุทรสาคร)" -msgstr "" - -#: i18n/states/TH.php:71 -#@ woocommerce -msgid "Samut Songkhram (สมุทรสงคราม)" -msgstr "" - -#: i18n/states/TH.php:72 -#@ woocommerce -msgid "Saraburi (สระบุรี)" -msgstr "" - -#: i18n/states/TH.php:73 -#@ woocommerce -msgid "Satun (สตูล)" -msgstr "" - -#: i18n/states/TH.php:74 -#@ woocommerce -msgid "Sing Buri (สิงห์บุรี)" -msgstr "" - -#: i18n/states/TH.php:75 -#@ woocommerce -msgid "Sisaket (ศรีสะเกษ)" -msgstr "" - -#: i18n/states/TH.php:76 -#@ woocommerce -msgid "Songkhla (สงขลา)" -msgstr "" - -#: i18n/states/TH.php:77 -#@ woocommerce -msgid "Sukhothai (สุโขทัย)" -msgstr "" - -#: i18n/states/TH.php:78 -#@ woocommerce -msgid "Suphan Buri (สุพรรณบุรี)" -msgstr "" - -#: i18n/states/TH.php:79 -#@ woocommerce -msgid "Surat Thani (สุราษฎร์ธานี)" -msgstr "" - -#: i18n/states/TH.php:80 -#@ woocommerce -msgid "Surin (สุรินทร์)" -msgstr "" - -#: i18n/states/TH.php:81 -#@ woocommerce -msgid "Tak (ตาก)" -msgstr "" - -#: i18n/states/TH.php:82 -#@ woocommerce -msgid "Trang (ตรัง)" -msgstr "" - -#: i18n/states/TH.php:83 -#@ woocommerce -msgid "Trat (ตราด)" -msgstr "" - -#: i18n/states/TH.php:84 -#@ woocommerce -msgid "Ubon Ratchathani (อุบลราชธานี)" -msgstr "" - -#: i18n/states/TH.php:85 -#@ woocommerce -msgid "Udon Thani (อุดรธานี)" -msgstr "" - -#: i18n/states/TH.php:86 -#@ woocommerce -msgid "Uthai Thani (อุทัยธานี)" -msgstr "" - -#: i18n/states/TH.php:87 -#@ woocommerce -msgid "Uttaradit (อุตรดิตถ์)" -msgstr "" - -#: i18n/states/TH.php:88 -#@ woocommerce -msgid "Yala (ยะลา)" -msgstr "" - -#: i18n/states/TH.php:89 -#@ woocommerce -msgid "Yasothon (ยโสธร)" -msgstr "" - -#: i18n/states/US.php:13 -#@ woocommerce -msgid "Alabama" -msgstr "Алабама" - -#: i18n/states/US.php:14 -#@ woocommerce -msgid "Alaska" -msgstr "Аляска" - -#: i18n/states/US.php:15 -#@ woocommerce -msgid "Arizona" -msgstr "Аризона" - -#: i18n/states/US.php:16 -#@ woocommerce -msgid "Arkansas" -msgstr "Арканзас" - -#: i18n/states/US.php:17 -#@ woocommerce -msgid "California" -msgstr "Калифорния" - -#: i18n/states/US.php:18 -#@ woocommerce -msgid "Colorado" -msgstr "Колорадо" - -#: i18n/states/US.php:19 -#@ woocommerce -msgid "Connecticut" -msgstr "Коннектикут" - -#: i18n/states/US.php:20 -#@ woocommerce -msgid "Delaware" -msgstr "Делавер" - -#: i18n/states/US.php:21 -#@ woocommerce -msgid "District Of Columbia" -msgstr "Федеральный округ Колумбия" - -#: i18n/states/US.php:22 -#@ woocommerce -msgid "Florida" -msgstr "Флорида" - -#: i18n/states/US.php:24 -#@ woocommerce -msgid "Hawaii" -msgstr "Гавайи" - -#: i18n/states/US.php:25 -#@ woocommerce -msgid "Idaho" -msgstr "Айдахо" - -#: i18n/states/US.php:26 -#@ woocommerce -msgid "Illinois" -msgstr "Иллинойс" - -#: i18n/states/US.php:27 -#@ woocommerce -msgid "Indiana" -msgstr "Индиана" - -#: i18n/states/US.php:28 -#@ woocommerce -msgid "Iowa" -msgstr "Айова" - -#: i18n/states/US.php:29 -#@ woocommerce -msgid "Kansas" -msgstr "Канзас" - -#: i18n/states/US.php:30 -#@ woocommerce -msgid "Kentucky" -msgstr "Кентукки" - -#: i18n/states/US.php:31 -#@ woocommerce -msgid "Louisiana" -msgstr "Луизиана" - -#: i18n/states/US.php:32 -#@ woocommerce -msgid "Maine" -msgstr "Мэн" - -#: i18n/states/US.php:33 -#@ woocommerce -msgid "Maryland" -msgstr "Мэриленд" - -#: i18n/states/US.php:34 -#@ woocommerce -msgid "Massachusetts" -msgstr "Массачусетс" - -#: i18n/states/US.php:35 -#@ woocommerce -msgid "Michigan" -msgstr "Мичиган" - -#: i18n/states/US.php:36 -#@ woocommerce -msgid "Minnesota" -msgstr "Миннесота" - -#: i18n/states/US.php:37 -#@ woocommerce -msgid "Mississippi" -msgstr "Миссисипи" - -#: i18n/states/US.php:38 -#@ woocommerce -msgid "Missouri" -msgstr "Миссури" - -#: i18n/states/US.php:39 -#@ woocommerce -msgid "Montana" -msgstr "Монтана" - -#: i18n/states/US.php:40 -#@ woocommerce -msgid "Nebraska" -msgstr "Небраска" - -#: i18n/states/US.php:41 -#@ woocommerce -msgid "Nevada" -msgstr "Невада" - -#: i18n/states/US.php:42 -#@ woocommerce -msgid "New Hampshire" -msgstr "Нью-Гемпшир " - -#: i18n/states/US.php:43 -#@ woocommerce -msgid "New Jersey" -msgstr "Нью-Джерси" - -#: i18n/states/US.php:44 -#@ woocommerce -msgid "New Mexico" -msgstr "Нью-Мексико" - -#: i18n/states/US.php:45 -#@ woocommerce -msgid "New York" -msgstr "Нью-Йорк" - -#: i18n/states/US.php:46 -#@ woocommerce -msgid "North Carolina" -msgstr "Северная Каролина" - -#: i18n/states/US.php:47 -#@ woocommerce -msgid "North Dakota" -msgstr "Северная Дакота" - -#: i18n/states/US.php:48 -#@ woocommerce -msgid "Ohio" -msgstr "Огайо" - -#: i18n/states/US.php:49 -#@ woocommerce -msgid "Oklahoma" -msgstr "Оклахома" - -#: i18n/states/US.php:50 -#@ woocommerce -msgid "Oregon" -msgstr "Орегон" - -#: i18n/states/US.php:51 -#@ woocommerce -msgid "Pennsylvania" -msgstr "Пенсильвания" - -#: i18n/states/US.php:52 -#@ woocommerce -msgid "Rhode Island" -msgstr "Род-Айленд" - -#: i18n/states/US.php:53 -#@ woocommerce -msgid "South Carolina" -msgstr "Южная Каролина" - -#: i18n/states/US.php:54 -#@ woocommerce -msgid "South Dakota" -msgstr "Южная Дакота" - -#: i18n/states/US.php:55 -#@ woocommerce -msgid "Tennessee" -msgstr "Теннесси" - -#: i18n/states/US.php:56 -#@ woocommerce -msgid "Texas" -msgstr "Техас" - -#: i18n/states/US.php:57 -#@ woocommerce -msgid "Utah" -msgstr "Юта" - -#: i18n/states/US.php:58 -#@ woocommerce -msgid "Vermont" -msgstr "Вермонт" - -#: i18n/states/US.php:59 -#@ woocommerce -msgid "Virginia" -msgstr "Виргиния" - -#: i18n/states/US.php:60 -#@ woocommerce -msgid "Washington" -msgstr "Вашингтон" - -#: i18n/states/US.php:61 -#@ woocommerce -msgid "West Virginia" -msgstr "Западная Виргиния" - -#: i18n/states/US.php:62 -#@ woocommerce -msgid "Wisconsin" -msgstr "Висконсин" - -#: i18n/states/US.php:63 -#@ woocommerce -msgid "Wyoming" -msgstr "Вайоминг" - -#: i18n/states/US.php:64 -#, fuzzy -#@ woocommerce -msgid "Armed Forces (AA)" -msgstr "Вооруженные силы США" - -#: i18n/states/US.php:65 -#, fuzzy -#@ woocommerce -msgid "Armed Forces (AE)" -msgstr "Вооруженные силы США" - -#: i18n/states/US.php:66 -#, fuzzy -#@ woocommerce -msgid "Armed Forces (AP)" -msgstr "Вооруженные силы США" - -#: i18n/states/ZA.php:13 -#@ woocommerce -msgid "Eastern Cape" -msgstr "" - -#: i18n/states/ZA.php:14 -#, fuzzy -#@ woocommerce -msgid "Free State" -msgstr "Штат" - -#: i18n/states/ZA.php:15 -#@ woocommerce -msgid "Gauteng" -msgstr "" - -#: i18n/states/ZA.php:16 -#@ woocommerce -msgid "KwaZulu-Natal" -msgstr "" - -#: i18n/states/ZA.php:17 -#@ woocommerce -msgid "Limpopo" -msgstr "" - -#: i18n/states/ZA.php:18 -#@ woocommerce -msgid "Mpumalanga" -msgstr "" - -#: i18n/states/ZA.php:19 -#, fuzzy -#@ woocommerce -msgid "Northern Cape" -msgstr "Северная территория" - -#: i18n/states/ZA.php:20 -#, fuzzy -#@ woocommerce -msgid "North West" -msgstr "Северная Корея" - -#: i18n/states/ZA.php:21 -#, fuzzy -#@ woocommerce -msgid "Western Cape" -msgstr "Западная Сахара" - -#: i18n/strings.php:16 -#@ woocommerce -msgid "pending" -msgstr "ожидание" - -#: i18n/strings.php:17 -#@ woocommerce -msgid "failed" -msgstr "неудавшийся" - -#: i18n/strings.php:18 -#@ woocommerce -msgid "on-hold" -msgstr "зарезервирован" - -#: i18n/strings.php:19 -#@ woocommerce -msgid "processing" -msgstr "обработка" - -#: i18n/strings.php:20 -#@ woocommerce -msgid "completed" -msgstr "выполнен" - -#: i18n/strings.php:21 -#@ woocommerce -msgid "refunded" -msgstr "возмещен" - -#: i18n/strings.php:22 -#@ woocommerce -msgid "cancelled" -msgstr "отменен" - -#: templates/loop/no-products-found.php:14 -#: templates/loop-shop.php:40 -#@ woocommerce -msgid "No products found which match your selection." -msgstr "Не найдено товаров, которые отвечают критерию выбора." - -#: admin/post-types/product.php:96 -#: admin/post-types/product.php:568 -#: admin/post-types/product.php:787 -#: admin/woocommerce-admin-functions.php:196 -#: templates/cart/cart.php:29 -#: templates/emails/admin-new-order.php:24 -#: templates/emails/customer-completed-order.php:25 -#: templates/emails/customer-invoice.php:29 -#: templates/emails/customer-note.php:29 -#: templates/emails/customer-processing-order.php:25 -#@ woocommerce -msgid "Price" -msgstr "По цене" - -#: admin/woocommerce-admin-functions.php:195 -#: templates/cart/cart.php:30 -#: templates/emails/admin-new-order.php:23 -#: templates/emails/customer-completed-order.php:24 -#: templates/emails/customer-invoice.php:28 -#: templates/emails/customer-note.php:28 -#: templates/emails/customer-processing-order.php:24 -#@ woocommerce -msgid "Quantity" -msgstr "Кол-во" - -#: admin/post-types/writepanels/order-fee-html.php:43 -#: admin/post-types/writepanels/order-item-html.php:110 -#: admin/woocommerce-admin-reports.php:1546 -#: admin/woocommerce-admin-reports.php:1599 -#: admin/woocommerce-admin-reports.php:2370 -#: admin/woocommerce-admin-reports.php:2539 -#: admin/woocommerce-admin-reports.php:2617 -#: templates/cart/cart.php:31 -#: templates/checkout/review-order.php:22 -#: templates/myaccount/my-orders.php:35 -#: templates/order/order-details.php:21 -#@ woocommerce -msgid "Total" -msgstr "Итого" - -#: templates/cart/cart.php:47 -#@ woocommerce -msgid "Remove this item" -msgstr "Удалить эту позицию" - -#: templates/cart/cart.php:100 -#: templates/single-product/add-to-cart/quantity.php:13 -#, fuzzy -#@ woocommerce -msgctxt "Product quantity input tooltip" -msgid "Qty" -msgstr "Кол-во" - -#: admin/woocommerce-admin-reports.php:1531 -#: templates/cart/cart.php:127 -#: woocommerce.php:1062 -#@ woocommerce -msgid "Coupon" -msgstr "Купон" - -#: templates/cart/cart.php:127 -#: templates/checkout/form-coupon.php:29 -#@ woocommerce -msgid "Apply Coupon" -msgstr "Использовать купон" - -#: templates/cart/cart.php:134 -#@ woocommerce -msgid "Update Cart" -msgstr "Обновить корзину" - -#: templates/cart/cart.php:134 -#@ woocommerce -msgid "Proceed to Checkout →" -msgstr "Перейти к оплате →" - -#: templates/cart/cross-sells.php:40 -#@ woocommerce -msgid "You may be interested in…" -msgstr "Вы можете быть заинтересованы в…" - -#: templates/cart/cart-empty.php:14 -#@ woocommerce -msgid "Your cart is currently empty." -msgstr "Ваша корзина пуста." - -#: templates/cart/cart-empty.php:18 -#@ woocommerce -msgid "← Return To Shop" -msgstr "← Вернуться в магазин" - -#: templates/cart/mini-cart.php:55 -#@ woocommerce -msgid "No products in the cart." -msgstr "Нет товаров в корзине." - -#: admin/post-types/writepanels/order-item-html.php:112 -#: templates/cart/mini-cart.php:63 -#: templates/cart/totals.php:92 -#: templates/checkout/review-order.php:93 -#@ woocommerce -msgid "Subtotal" -msgstr "Подытог" - -#: templates/cart/mini-cart.php:69 -#@ woocommerce -msgid "Checkout →" -msgstr "Оплата →" - -#: templates/cart/shipping-calculator.php:20 -#@ woocommerce -msgid "Calculate Shipping" -msgstr "Подсчитать доставку" - -#: admin/post-types/writepanels/writepanel-order_data.php:175 -#: admin/post-types/writepanels/writepanel-order_data.php:265 -#: templates/cart/shipping-calculator.php:24 -#: woocommerce-template.php:1327 -#@ woocommerce -msgid "Select a country…" -msgstr "Выберите страну…" - -#: templates/cart/shipping-calculator.php:50 -#: woocommerce-template.php:1377 -#@ woocommerce -msgid "Select a state…" -msgstr "Выберите область…" - -#: templates/cart/shipping-calculator.php:42 -#: templates/cart/shipping-calculator.php:50 -#: templates/cart/shipping-calculator.php:61 -#, fuzzy -#@ woocommerce -msgid "State / county" -msgstr "Штат/Страна" - -#: templates/cart/shipping-calculator.php:71 -#@ woocommerce -msgid "Update Totals" -msgstr "Обновить итог" - -#: templates/cart/shipping-methods.php:32 -#, fuzzy -#@ woocommerce -msgid "Free" -msgstr "Бесплатно!" - -#: templates/cart/shipping-methods.php:67 -#@ woocommerce -msgid "Please fill in your details to see available shipping methods." -msgstr "Введите свои данные для того, чтобы увидеть доступные методы доставки." - -#: templates/cart/shipping-methods.php:69 -#@ woocommerce -msgid "Sorry, it seems that there are no available shipping methods for your state. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "К сожалению, у нас не предусмотрены подходящие методы для доставки в вашу страну. Пожалуйста, свяжитесь с нами если вам необходима консультация или специальные условия." - -#: templates/cart/totals.php:22 -#@ woocommerce -msgid "Cart Totals" -msgstr "Сумма в корзине" - -#: templates/cart/totals.php:28 -#: templates/checkout/review-order.php:27 -#@ woocommerce -msgid "Cart Subtotal" -msgstr "Подитог корзины" - -#: templates/cart/totals.php:35 -#: templates/checkout/review-order.php:34 -#: woocommerce.php:1655 -#@ woocommerce -msgid "Cart Discount" -msgstr "Скидка в корзине" - -#: templates/cart/totals.php:35 -#: templates/cart/totals.php:120 -#@ woocommerce -msgid "[Remove]" -msgstr "[Убрать]" - -#: admin/post-types/shop_order.php:46 -#: admin/post-types/writepanels/writepanel-order_data.php:536 -#: admin/post-types/writepanels/writepanel-product_data.php:81 -#: admin/settings/settings-tax-rates.php:52 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-content.php:49 -#: admin/woocommerce-admin-settings.php:185 -#: templates/cart/totals.php:46 -#: templates/checkout/review-order.php:45 -#@ woocommerce -msgid "Shipping" -msgstr "Доставка" - -#: templates/cart/totals.php:120 -#: templates/checkout/review-order.php:124 -#@ woocommerce -msgid "Order Discount" -msgstr "Скидка на заказ" - -#: admin/post-types/shop_order.php:47 -#: templates/cart/totals.php:129 -#: templates/checkout/review-order.php:133 -#@ woocommerce -msgid "Order Total" -msgstr "Сумма заказа" - -#: templates/cart/totals.php:161 -#, fuzzy, php-format -#@ woocommerce -msgid " (taxes estimated for %s)" -msgstr "(налоги составят примерно %s)" - -#: templates/cart/totals.php:163 -#, php-format -#@ woocommerce -msgid "Note: Shipping and taxes are estimated%s and will be updated during checkout based on your billing and shipping information." -msgstr "Обратите внимание: Доставка и налоги составят приблизительно %s и будут указаны в процессе оплаты на основе ваших реквизитов и данных об адресе доставки." - -#: templates/cart/totals.php:175 -#, fuzzy -#@ woocommerce -msgid "No shipping methods were found; please recalculate your shipping and enter your state/county and zip/postcode to ensure there are no other available methods for your location." -msgstr "Не обнаружен выбранный метод доставки; пожалуйста, пересчитайте доставку и введите страну и почтовый индекс, чтобы удостовериться в существовании иных методов доставки до вашего адреса." - -#: templates/cart/totals.php:183 -#, php-format -#@ woocommerce -msgid "Sorry, it seems that there are no available shipping methods for your location (%s)." -msgstr "К сожалению, у нас нет возможности организовать доставку по данному адресу (%s)." - -#: templates/cart/totals.php:185 -#@ woocommerce -msgid "If you require assistance or wish to make alternate arrangements please contact us." -msgstr "Если вам необходима помощь или вы желаете внести какие-либо корректировки, пожалуйста, сообщите нам об этом." - -#: templates/checkout/cart-errors.php:16 -#@ woocommerce -msgid "There are some issues with the items in your cart (shown above). Please go back to the cart page and resolve these issues before checking out." -msgstr "Возникли проблемы с наименованиями в вашей корзине (указаны ниже). Просим вернуться на страницу корзины и попытаться устранить эти проблемы до оплаты." - -#: templates/checkout/cart-errors.php:20 -#@ woocommerce -msgid "← Return To Cart" -msgstr "← Вернуться к корзине" - -#: templates/checkout/form-billing.php:17 -#@ woocommerce -msgid "Billing & Shipping" -msgstr "" - -#: admin/woocommerce-admin-users.php:26 -#: templates/checkout/form-billing.php:21 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:19 -#: templates/myaccount/my-address.php:25 -#: templates/order/order-details.php:106 -#@ woocommerce -msgid "Billing Address" -msgstr "Реквизиты оплаты" - -#: templates/checkout/form-billing.php:42 -#@ woocommerce -msgid "Create an account?" -msgstr "Зарегистрировать вас?" - -#: templates/checkout/form-billing.php:51 -#, fuzzy -#@ woocommerce -msgid "Create an account by entering the information below. If you are a returning customer please login at the top of the page." -msgstr "Заполнив нижеуказанные поля, можно создать постоянный профиль на нашем сайте. Если вы уже совершали покупки у нас и регистрировались ранее, то вы можете авторизоваться, заполнив поле логина и пароля наверху." - -#: templates/checkout/form-checkout.php:20 -#@ woocommerce -msgid "You must be logged in to checkout." -msgstr "Вам необходимо авторизоваться для оплаты." - -#: templates/checkout/form-checkout.php:51 -#@ woocommerce -msgid "Your order" -msgstr "Ваш заказ" - -#: templates/checkout/form-coupon.php:17 -#@ woocommerce -msgid "Have a coupon?" -msgstr "У вас есть купон?" - -#: templates/checkout/form-coupon.php:20 -#@ woocommerce -msgid "Click here to enter your code" -msgstr "Нажмите здесь для введения кода" - -#: admin/post-types/writepanels/writepanels-init.php:100 -#: templates/checkout/form-coupon.php:25 -#@ woocommerce -msgid "Coupon code" -msgstr "Код купона" - -#: templates/checkout/form-login.php:17 -#@ woocommerce -msgid "Click here to login" -msgstr "Нажмите для авторизации" - -#: templates/checkout/form-login.php:22 -#, fuzzy -#@ woocommerce -msgid "If you have shopped with us before, please enter your details in the boxes below. If you are a new customer please proceed to the Billing & Shipping section." -msgstr "Если вы раньше делали заказ, пожалуйста, введите имя пользователя и пароль в полях снизу. Если вы новый клиент, то, пожалуйста, заполните раздел с информацией об оплате и доставке." - -#: admin/post-types/writepanels/writepanel-order_data.php:347 -#: templates/checkout/form-pay.php:20 -#@ woocommerce -msgid "Qty" -msgstr "Кол-во" - -#: templates/checkout/form-pay.php:21 -#@ woocommerce -msgid "Totals" -msgstr "Итого" - -#: templates/checkout/form-pay.php:78 -#@ woocommerce -msgid "Sorry, it seems that there are no available payment methods for your location. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "К сожалению, у нас не предусмотрены доступные методы оплаты для вашей страны. Пожалуйста, свяжитесь с нами если вам необходимо консультация или специальные условия." - -#: templates/checkout/form-pay.php:87 -#@ woocommerce -msgid "Pay for order" -msgstr "Оплатить заказ" - -#: templates/checkout/form-shipping.php:32 -#@ woocommerce -msgid "Ship to billing address?" -msgstr "" - -#: admin/woocommerce-admin-users.php:27 -#: templates/checkout/form-shipping.php:35 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:20 -#: templates/order/order-details.php:121 -#@ woocommerce -msgid "Shipping Address" -msgstr "Адрес доставки" - -#: templates/checkout/form-shipping.php:59 -#: templates/single-product/tabs/additional-information.php:14 -#: woocommerce-template.php:756 -#@ woocommerce -msgid "Additional Information" -msgstr "Характеристики" - -#: templates/checkout/review-order.php:217 -#@ woocommerce -msgid "Please fill in your details above to see available payment methods." -msgstr "Пожалуйста, введите детали выше, чтобы увидеть доступные методы оплаты." - -#: templates/checkout/review-order.php:219 -#@ woocommerce -msgid "Sorry, it seems that there are no available payment methods for your state. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "К сожалению, у нас не предусмотрены доступные методы оплаты для вашей страны. Пожалуйста, свяжитесь с нами если вам необходима консультация или специальные условия." - -#: templates/checkout/review-order.php:228 -#@ woocommerce -msgid "Since your browser does not support JavaScript, or it is disabled, please ensure you click the Update Totals button before placing your order. You may be charged more than the amount stated above if you fail to do so." -msgstr "Поскольку ваш браузер не поддерживает JavaScript или в нем он отключен, просим убедиться в том, что вы нажали кнопку обновить итоги перед размещением заказа. Есть риск неправильного подсчета стоимости если вышеуказанное действие не было произведено." - -#: templates/checkout/review-order.php:228 -#@ woocommerce -msgid "Update totals" -msgstr "Обновить итог" - -#: templates/checkout/review-order.php:234 -#@ woocommerce -msgid "Place order" -msgstr "Разместить заказ" - -#: templates/checkout/review-order.php:238 -#, fuzzy -#@ woocommerce -msgid "I have read and accept the" -msgstr "Я принимаю" - -#: templates/checkout/review-order.php:238 -#@ woocommerce -msgid "terms & conditions" -msgstr "условия & правила" - -#: templates/checkout/thankyou.php:18 -#@ woocommerce -msgid "Unfortunately your order cannot be processed as the originating bank/merchant has declined your transaction." -msgstr "К сожалению, ваш заказ не может быть обработан из-за месторасположения банка и продавца, поэтому транзакция была отклонена." - -#: templates/checkout/thankyou.php:22 -#@ woocommerce -msgid "Please attempt your purchase again or go to your account page." -msgstr "Пожалуйста, попробуйте осуществить покупку снова или проверьте информацию в профиле." - -#: templates/checkout/thankyou.php:24 -#@ woocommerce -msgid "Please attempt your purchase again." -msgstr "Пожалуйста, попробуйте повторить покупку." - -#: templates/checkout/thankyou.php:36 -#: templates/checkout/thankyou.php:67 -#@ woocommerce -msgid "Thank you. Your order has been received." -msgstr "Благодарим за заказ. Наши менеджеры получили информацию и вскоре её обработают." - -#: templates/emails/admin-new-order.php:13 -#: templates/emails/plain/admin-new-order.php:13 -#, fuzzy, php-format -#@ woocommerce -msgid "You have received an order from %s. Their order is as follows:" -msgstr "Вы получили заказ от" - -#: templates/emails/admin-new-order.php:17 -#, fuzzy, php-format -#@ woocommerce -msgid "Order: %s" -msgstr "Заказ:" - -#: admin/woocommerce-admin-functions.php:214 -#: templates/emails/admin-new-order.php:50 -#: templates/emails/customer-completed-order.php:51 -#: templates/emails/customer-note.php:55 -#: templates/emails/customer-processing-order.php:51 -#: templates/emails/plain/admin-new-order.php:38 -#: templates/order/order-details.php:88 -#@ woocommerce -msgid "Customer details" -msgstr "Информация о клиенте" - -#: admin/post-types/shop_order.php:101 -#: templates/emails/admin-new-order.php:53 -#: templates/emails/customer-completed-order.php:54 -#: templates/emails/customer-note.php:58 -#: templates/emails/customer-processing-order.php:54 -#: templates/emails/plain/admin-new-order.php:41 -#: templates/emails/plain/customer-completed-order.php:41 -#: templates/emails/plain/customer-note.php:49 -#: templates/emails/plain/customer-processing-order.php:41 -#: templates/order/order-details.php:92 -#@ woocommerce -msgid "Email:" -msgstr "" - -#: admin/post-types/shop_order.php:104 -#: templates/emails/admin-new-order.php:56 -#: templates/emails/customer-completed-order.php:57 -#: templates/emails/customer-note.php:61 -#: templates/emails/customer-processing-order.php:57 -#: templates/emails/plain/admin-new-order.php:44 -#: templates/emails/plain/customer-completed-order.php:44 -#: templates/emails/plain/customer-note.php:52 -#: templates/emails/plain/customer-processing-order.php:44 -#@ woocommerce -msgid "Tel:" -msgstr "Тел:" - -#: templates/emails/customer-completed-order.php:14 -#: templates/emails/plain/customer-completed-order.php:13 -#, fuzzy, php-format -#@ woocommerce -msgid "Hi there. Your recent order on %s has been completed. Your order details are shown below for your reference:" -msgstr "Ваш заказ выполнен. Информация о нем ниже:" - -#: templates/emails/customer-invoice.php:16 -#: templates/emails/plain/customer-invoice.php:14 -#, fuzzy, php-format, php-format -#@ woocommerce -msgid "An order has been created for you on %s. To pay for this order please use the following link: %s" -msgstr "Ваш заказ создан “%s”. Для оплаты заказа воспользуйтесь этой ссылкой: Оплатить" - -#: templates/emails/customer-invoice.php:16 -#, fuzzy -#@ woocommerce -msgid "pay" -msgstr "оплата" - -#: templates/emails/customer-new-account.php:14 -#: templates/emails/plain/customer-new-account.php:13 -#, php-format -#@ woocommerce -msgid "Thanks for creating an account on %s. Your username is %s." -msgstr "" - -#: templates/emails/customer-new-account.php:16 -#: templates/emails/plain/customer-new-account.php:15 -#, php-format -#@ woocommerce -msgid "You can access your account area here: %s." -msgstr "" - -#: templates/emails/customer-note.php:14 -#: templates/emails/plain/customer-note.php:13 -#@ woocommerce -msgid "Hello, a note has just been added to your order:" -msgstr "Здравствуйте, к вашему заказу была добавлена заметка" - -#: templates/emails/customer-note.php:18 -#: templates/emails/plain/customer-note.php:21 -#@ woocommerce -msgid "For your reference, your order details are shown below." -msgstr "Обратите внимание, что детали заказа указаны ниже." - -#: templates/emails/customer-processing-order.php:14 -#: templates/emails/plain/customer-processing-order.php:13 -#@ woocommerce -msgid "Your order has been received and is now being processed. Your order details are shown below for your reference:" -msgstr "" - -#: templates/emails/customer-reset-password.php:14 -#: templates/emails/plain/customer-reset-password.php:13 -#@ woocommerce -msgid "Someone requested that the password be reset for the following account:" -msgstr "" - -#: templates/emails/customer-reset-password.php:15 -#: templates/emails/plain/customer-reset-password.php:15 -#, fuzzy, php-format, php-format -#@ woocommerce -msgid "Username: %s" -msgstr "Пользователь" - -#: templates/emails/customer-reset-password.php:16 -#: templates/emails/plain/customer-reset-password.php:16 -#@ woocommerce -msgid "If this was a mistake, just ignore this email and nothing will happen." -msgstr "" - -#: templates/emails/customer-reset-password.php:17 -#: templates/emails/plain/customer-reset-password.php:17 -#@ woocommerce -msgid "To reset your password, visit the following address:" -msgstr "" - -#: templates/emails/customer-reset-password.php:20 -#, fuzzy -#@ woocommerce -msgid "Click here to reset your password" -msgstr "Нажмите здесь для введения кода" - -#: admin/woocommerce-admin-functions.php:220 -#: templates/emails/email-addresses.php:18 -#: templates/emails/plain/email-addresses.php:12 -#@ woocommerce -msgid "Billing address" -msgstr "Реквизиты для оплаты" - -#: admin/woocommerce-admin-functions.php:227 -#: templates/emails/email-addresses.php:28 -#: templates/emails/plain/email-addresses.php:17 -#@ woocommerce -msgid "Shipping address" -msgstr "Адрес доставки" - -#: templates/emails/email-order-items.php:40 -#, fuzzy, php-format -#@ woocommerce -msgid "Download %d:" -msgstr "Загрузить:" - -#: templates/emails/email-order-items.php:42 -#@ woocommerce -msgid "Download:" -msgstr "Загрузить:" - -#: templates/emails/plain/admin-new-order.php:19 -#: templates/emails/plain/customer-completed-order.php:19 -#: templates/emails/plain/customer-invoice.php:20 -#: templates/emails/plain/customer-note.php:27 -#: templates/emails/plain/customer-processing-order.php:19 -#, fuzzy, php-format, php-format -#@ woocommerce -msgid "Order number: %s" -msgstr "Сортировать по:" - -#: templates/emails/plain/admin-new-order.php:20 -#: templates/emails/plain/customer-completed-order.php:20 -#: templates/emails/plain/customer-invoice.php:21 -#: templates/emails/plain/customer-note.php:28 -#: templates/emails/plain/customer-processing-order.php:20 -#, fuzzy, php-format, php-format -#@ woocommerce -msgid "Order date: %s" -msgstr "Заказ обновлен" - -#: templates/emails/plain/admin-new-order.php:20 -#@ woocommerce -msgid "jS F Y" -msgstr "" - -#: templates/emails/plain/customer-completed-order.php:38 -#: templates/emails/plain/customer-note.php:46 -#: templates/emails/plain/customer-processing-order.php:38 -#, fuzzy -#@ woocommerce -msgid "Your details" -msgstr "Описание заказа" - -#: templates/emails/plain/email-order-items.php:28 -#, fuzzy, php-format -#@ woocommerce -msgid "Quantity: %s" -msgstr "Кол-во" - -#: templates/emails/plain/email-order-items.php:31 -#, fuzzy, php-format -#@ woocommerce -msgid "Cost: %s" -msgstr "Цена" - -#: templates/loop/add-to-cart.php:17 -#: templates/loop/add-to-cart.php:41 -#: templates/loop/add-to-cart.php:50 -#@ woocommerce -msgid "Read More" -msgstr "Подробнее" - -#: templates/loop/add-to-cart.php:33 -#@ woocommerce -msgid "Select options" -msgstr "Выбрать модификации" - -#: templates/loop/add-to-cart.php:37 -#@ woocommerce -msgid "View options" -msgstr "Выбрать варианты" - -#: templates/loop/result-count.php:28 -#@ woocommerce -msgid "Showing the single result" -msgstr "" - -#: templates/loop/result-count.php:30 -#, fuzzy, php-format -#@ woocommerce -msgid "Showing all %d results" -msgstr "Показать все под-типы" - -#: templates/loop/result-count.php:32 -#, php-format -#@ woocommerce -msgctxt "%1$d = first, %2$d = last, %3$d = total" -msgid "Showing %1$d–%2$d of %3$d results" -msgstr "" - -#: templates/loop/sale-flash.php:16 -#: templates/single-product/sale-flash.php:16 -#@ woocommerce -msgid "Sale!" -msgstr "Распродажа!" - -#: templates/loop/orderby.php:21 -#@ woocommerce -msgid "Default sorting" -msgstr "" - -#: admin/settings/settings-init.php:462 -#@ woocommerce -msgid "Sort by most recent" -msgstr "" - -#: templates/myaccount/form-change-password.php:20 -#: templates/myaccount/form-lost-password.php:31 -#@ woocommerce -msgid "New password" -msgstr "Новый пароль" - -#: templates/myaccount/form-change-password.php:24 -#: templates/myaccount/form-lost-password.php:35 -#@ woocommerce -msgid "Re-enter new password" -msgstr "Повторить новый пароль" - -#: templates/myaccount/form-change-password.php:29 -#: templates/myaccount/form-lost-password.php:45 -#@ woocommerce -msgid "Save" -msgstr "Сохранить" - -#: templates/myaccount/form-edit-address.php:43 -#@ woocommerce -msgid "Save Address" -msgstr "Сохранить адрес" - -#: templates/myaccount/form-login.php:26 -#: templates/myaccount/form-login.php:40 -#: templates/shop/form-login.php:31 -#@ woocommerce -msgid "Login" -msgstr "Авторизация" - -#: templates/myaccount/form-login.php:50 -#: templates/shop/form-login.php:33 -#@ woocommerce -msgid "Lost Password?" -msgstr "Потеряли пароль?" - -#: templates/myaccount/form-login.php:60 -#: templates/myaccount/form-login.php:101 -#@ woocommerce -msgid "Register" -msgstr "Регистрация" - -#: templates/myaccount/form-login.php:66 -#@ woocommerce -msgid "Username" -msgstr "Пользователь" - -#: admin/post-types/writepanels/writepanel-order_data.php:182 -#: admin/woocommerce-admin-users.php:187 -#: templates/myaccount/form-login.php:78 -#: templates/single-product-reviews.php:101 -#@ woocommerce -msgid "Email" -msgstr "" - -#: templates/myaccount/form-login.php:89 -#@ woocommerce -msgid "Re-enter password" -msgstr "Повторите пароль" - -#: templates/myaccount/form-lost-password.php:22 -#@ woocommerce -msgid "Lost your password? Please enter your username or email address. You will receive a link to create a new password via email." -msgstr "" - -#: templates/myaccount/form-lost-password.php:28 -#, fuzzy -#@ woocommerce -msgid "Enter a new password below." -msgstr "Повторить новый пароль" - -#: templates/myaccount/form-lost-password.php:45 -#, fuzzy -#@ woocommerce -msgid "Reset Password" -msgstr "Потеряли пароль?" - -#: templates/myaccount/my-account.php:19 -#, php-format -#@ woocommerce -msgid "Hello, %s. From your account dashboard you can view your recent orders, manage your shipping and billing addresses and change your password." -msgstr "Привет, %s. Здесь можно посмотреть ваши последние заказы, изменить информацию о доставке и реквизиты для оплаты, а также сменить пароль." - -#: templates/myaccount/my-address.php:17 -#, fuzzy -#@ woocommerce -msgid "My Addresses" -msgstr "Мой адрес" - -#: templates/myaccount/my-address.php:23 -#@ woocommerce -msgid "My Address" -msgstr "Мой адрес" - -#: templates/myaccount/my-address.php:35 -#@ woocommerce -msgid "The following addresses will be used on the checkout page by default." -msgstr "Следующие адреса будут использованы для страницы оплаты по-умолчанию." - -#: admin/post-types/product.php:151 -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#: admin/post-types/writepanels/writepanel-order_data.php:387 -#: admin/post-types/writepanels/writepanel-product_data.php:1043 -#: admin/woocommerce-admin-attributes.php:322 -#: templates/myaccount/my-address.php:45 -#: woocommerce.php:917 -#: woocommerce.php:953 -#: woocommerce.php:990 -#: woocommerce.php:1028 -#: woocommerce.php:1066 -#@ default -#@ woocommerce -msgid "Edit" -msgstr "Изменить" - -#: templates/myaccount/my-address.php:64 -#, fuzzy -#@ woocommerce -msgid "You have not set up this type of address yet." -msgstr "Вы пока не указали адрес доставки." - -#: templates/myaccount/my-downloads.php:18 -#@ woocommerce -msgid "Available downloads" -msgstr "Доступно загрузок" - -#: templates/myaccount/my-downloads.php:27 -#, fuzzy, php-format -#@ woocommerce -msgid "%s download remaining" -msgid_plural "%s downloads remaining" -msgstr[0] "Осталось загрузок" -msgstr[1] "Осталось загрузок" - -#: templates/myaccount/my-orders.php:26 -#@ woocommerce -msgid "Recent Orders" -msgstr "Последние заказы" - -#: admin/post-types/shop_order.php:44 -#: templates/myaccount/my-orders.php:32 -#: woocommerce.php:1025 -#@ woocommerce -msgid "Order" -msgstr "Заказ" - -#: admin/post-types/shop_order.php:43 -#: admin/settings/settings-payment-gateways.php:29 -#: admin/settings/settings-shipping-methods.php:31 -#: templates/myaccount/my-orders.php:34 -#@ woocommerce -msgid "Status" -msgstr "Статус" - -#: admin/post-types/writepanels/writepanel-product_data.php:138 -#: admin/post-types/writepanels/writepanel-product_data.php:1064 -#: templates/myaccount/my-orders.php:77 -#@ woocommerce -msgid "Cancel" -msgstr "Отменить" - -#: admin/post-types/product.php:167 -#: admin/post-types/shop_order.php:171 -#: templates/myaccount/my-orders.php:82 -#@ default -#@ woocommerce -msgid "View" -msgstr "Просмотр" - -#: templates/order/form-tracking.php:17 -#@ woocommerce -msgid "To track your order please enter your Order ID in the box below and press return. This was given to you on your receipt and in the confirmation email you should have received." -msgstr "Для отслеживания заказа, пожалуйста, введите ID-заказа в поле ниже и нажмите на кнопку. ID-заказа указан в письме, которое вы получили по электронной почте." - -#: templates/order/form-tracking.php:19 -#@ woocommerce -msgid "Order ID" -msgstr "ID-заказа" - -#: templates/order/form-tracking.php:19 -#@ woocommerce -msgid "Found in your order confirmation email." -msgstr "Можно найти в заказе по подтвержденному email-адресу." - -#: templates/order/form-tracking.php:20 -#@ woocommerce -msgid "Billing Email" -msgstr "Email оплаты" - -#: templates/order/form-tracking.php:20 -#@ woocommerce -msgid "Email you used during checkout." -msgstr "Email, использованный в процессе оплаты." - -#: templates/order/form-tracking.php:23 -#, fuzzy -#@ woocommerce -msgid "Track" -msgstr "Отслеживание\"" - -#: admin/post-types/writepanels/writepanel-order_data.php:59 -#: templates/order/order-details.php:16 -#@ woocommerce -msgid "Order Details" -msgstr "Информация о заказе" - -#: templates/order/order-details.php:57 -#, fuzzy, php-format -#@ woocommerce -msgid "Download file %s →" -msgstr "Загрузить файл →" - -#: templates/order/order-details.php:81 -#@ woocommerce -msgid "Order Again" -msgstr "Закажите еще раз" - -#: templates/order/order-details.php:93 -#@ woocommerce -msgid "Telephone:" -msgstr "Телефон:" - -#: templates/order/tracking.php:18 -#, php-format -#@ woocommerce -msgid "Order %s which was made %s has the status “%s”" -msgstr "" - -#: templates/order/tracking.php:18 -#@ woocommerce -msgid "ago" -msgstr "" - -#: templates/order/tracking.php:20 -#@ woocommerce -msgid "and was completed" -msgstr "и был выполнен" - -#: templates/order/tracking.php:20 -#@ woocommerce -msgid " ago" -msgstr " назад" - -#: templates/shop/breadcrumb.php:66 -#@ woocommerce -msgid "Products tagged “" -msgstr "Товары с пометкой “" - -#: templates/shop/breadcrumb.php:94 -#: templates/shop/breadcrumb.php:196 -#@ woocommerce -msgid "Search results for “" -msgstr "Результаты поиска для “" - -#: templates/shop/breadcrumb.php:154 -#@ woocommerce -msgid "Error 404" -msgstr "Ошибка 404" - -#: templates/shop/breadcrumb.php:200 -#@ woocommerce -msgid "Posts tagged “" -msgstr "Сообщения с пометкой “" - -#: templates/shop/breadcrumb.php:205 -#@ woocommerce -msgid "Author:" -msgstr "Автор:" - -#: templates/shop/breadcrumb.php:210 -#@ woocommerce -msgid "Page" -msgstr "Страница" - -#: templates/single-product/add-to-cart/variable.php:24 -#@ woocommerce -msgid "Choose an option" -msgstr "Выбрать вариант" - -#: templates/single-product/add-to-cart/variable.php:64 -#@ woocommerce -msgid "Clear selection" -msgstr "" - -#: templates/single-product/meta.php:22 -#, fuzzy -#@ product_cat -msgid "Category:" -msgid_plural "Categories:" -msgstr[0] "Категория:" -msgstr[1] "Категория:" - -#: templates/single-product/meta.php:24 -#@ product_tag -msgid "Tag:" -msgid_plural "Tags:" -msgstr[0] "" -msgstr[1] "" - -#: admin/post-types/product.php:588 -#: admin/post-types/product.php:837 -#: admin/post-types/writepanels/variation-admin-html.php:90 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:273 -#: templates/single-product/product-attributes.php:28 -#@ woocommerce -msgid "Weight" -msgstr "Вес" - -#: admin/post-types/writepanels/writepanel-product_data.php:284 -#: templates/single-product/product-attributes.php:37 -#@ woocommerce -msgid "Dimensions" -msgstr "Размеры" - -#: templates/single-product/related.php:36 -#@ woocommerce -msgid "Related Products" -msgstr "Похожие товары" - -#: templates/single-product/review.php:33 -#@ woocommerce -msgid "Your comment is awaiting approval" -msgstr "Ваш комментарий ожидает одобрения" - -#: templates/single-product/review.php:40 -#@ woocommerce -msgid "verified owner" -msgstr "" - -#: templates/single-product/tabs/description.php:14 -#@ woocommerce -msgid "Product Description" -msgstr "Описание товара" - -#: admin/post-types/writepanels/writepanels-init.php:64 -#: templates/single-product-reviews.php:51 -#: templates/single-product-reviews.php:57 -#@ woocommerce -msgid "Reviews" -msgstr "Отзывы" - -#: templates/single-product/up-sells.php:41 -#@ woocommerce -msgid "You may also like…" -msgstr "Вам также может понравиться…" - -#: templates/single-product-reviews.php:45 -#, php-format -#@ woocommerce -msgid "%s review for %s" -msgid_plural "%s reviews for %s" -msgstr[0] "%s отзывов для %s" -msgstr[1] "%s отзыв для %s" - -#: templates/single-product-reviews.php:73 -#@ woocommerce -msgid " Previous" -msgstr " Предыдущий" - -#: templates/single-product-reviews.php:74 -#@ woocommerce -msgid "Next " -msgstr "Следующий " - -#: templates/single-product-reviews.php:78 -#@ woocommerce -msgid "Add Review" -msgstr "Добавить отзыв" - -#: templates/single-product-reviews.php:80 -#@ woocommerce -msgid "Add a review" -msgstr "Добавить отзыв" - -#: templates/single-product-reviews.php:84 -#@ woocommerce -msgid "Be the first to review" -msgstr "Добавьте первый отзыв" - -#: templates/single-product-reviews.php:86 -#@ woocommerce -msgid "There are no reviews yet, would you like to submit yours?" -msgstr "Пока нет отзывов, хотели бы вы добавить свой отзыв?" - -#: templates/single-product-reviews.php:104 -#@ woocommerce -msgid "Submit Review" -msgstr "Добавить отзыв" - -#: templates/single-product-reviews.php:111 -#@ woocommerce -msgid "Rating" -msgstr "Рейтинг" - -#: templates/single-product-reviews.php:112 -#@ woocommerce -msgid "Rate…" -msgstr "" - -#: templates/single-product-reviews.php:113 -#@ woocommerce -msgid "Perfect" -msgstr "Отлично" - -#: templates/single-product-reviews.php:114 -#@ woocommerce -msgid "Good" -msgstr "Хорошо" - -#: templates/single-product-reviews.php:115 -#@ woocommerce -msgid "Average" -msgstr "Средне" - -#: templates/single-product-reviews.php:116 -#@ woocommerce -msgid "Not that bad" -msgstr "Неплохо" - -#: templates/single-product-reviews.php:117 -#@ woocommerce -msgid "Very Poor" -msgstr "Плохо" - -#: templates/single-product-reviews.php:122 -#@ woocommerce -msgid "Your Review" -msgstr "Ваши отзывы" - -#: woocommerce-ajax.php:111 -#@ woocommerce -msgid "Please enter your username and password to login." -msgstr "" - -#: woocommerce-ajax.php:191 -#@ woocommerce -msgid "Sorry, your session has expired." -msgstr "К сожалению, время вашей сессии истекло." - -#: woocommerce-ajax.php:191 -#@ woocommerce -msgid "Return to homepage →" -msgstr "Вернуться на главную страницу →" - -#: woocommerce-ajax.php:332 -#: woocommerce-ajax.php:366 -#: woocommerce-ajax.php:389 -#@ woocommerce -msgid "You do not have sufficient permissions to access this page." -msgstr "Ваши права ограничивают доступ к этой странице." - -#: woocommerce-ajax.php:334 -#: woocommerce-ajax.php:367 -#: woocommerce-ajax.php:390 -#@ woocommerce -msgid "You have taken too long. Please go back and retry." -msgstr "Прошло слишком много времени. Пожалуйста, вернитесь и попытайтесь снова." - -#: admin/post-types/writepanels/variation-admin-html.php:113 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:53 -#: woocommerce-ajax.php:626 -#@ woocommerce -msgid "Same as parent" -msgstr "Такая же как у главного" - -#: admin/post-types/writepanels/order-fee-html.php:25 -#: admin/post-types/writepanels/order-item-html.php:91 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:54 -#: admin/post-types/writepanels/writepanel-product_data.php:186 -#: admin/settings/settings-init.php:982 -#: admin/settings/settings-tax-rates.php:29 -#: admin/woocommerce-admin-settings.php:226 -#: woocommerce-ajax.php:627 -#@ woocommerce -msgid "Standard" -msgstr "Стандарт" - -#: woocommerce-ajax.php:1215 -#: woocommerce-ajax.php:1216 -#, php-format -#@ woocommerce -msgid "Item #%s stock increased from %s to %s." -msgstr "Для позиции #%s наличие увеличено с %s до %s" - -#: woocommerce-ajax.php:1244 -#, fuzzy -#@ woocommerce -msgid "Value" -msgstr "Значение(я)" - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -#: woocommerce-ajax.php:1558 -#@ woocommerce -msgid "Delete note" -msgstr "Удалить заметку" - -#: woocommerce-core-functions.php:1189 -#: woocommerce-core-functions.php:1215 -#@ woocommerce -msgid "Download Permissions Granted" -msgstr "Получено разрешение на загрузку" - -#: woocommerce-core-functions.php:1328 -#, fuzzy -#@ woocommerce -msgctxt "slug" -msgid "uncategorized" -msgstr "Категории" - -#: woocommerce-core-functions.php:1517 -#@ woocommerce -msgid "Select a category" -msgstr "Выбрать категорию" - -#: woocommerce-core-functions.php:1521 -#@ woocommerce -msgid "Uncategorized" -msgstr "" - -#: woocommerce-core-functions.php:1893 -#@ woocommerce -msgid "Customer" -msgstr "Клиент" - -#: woocommerce-core-functions.php:1900 -#@ woocommerce -msgid "Shop Manager" -msgstr "Управление магазином" - -#: woocommerce-core-functions.php:2433 -#@ woocommerce -msgid "Unpaid order cancelled - time limit reached." -msgstr "" - -#: woocommerce-core-functions.php:2485 -#: woocommerce-functions.php:703 -#@ woocommerce -msgid "Please enter a username." -msgstr "Введите имя пользователя." - -#: woocommerce-functions.php:208 -#: woocommerce-functions.php:253 -#@ woocommerce -msgid "Cart updated." -msgstr "Корзина обновлена." - -#: woocommerce-functions.php:239 -#, php-format -#@ woocommerce -msgid "You can only have 1 %s in your cart." -msgstr "В корзину можно положить только 1 %s." - -#: woocommerce-functions.php:296 -#: woocommerce-functions.php:343 -#@ woocommerce -msgid "Please choose product options…" -msgstr "Пожалуйста, укажите опции товара…" - -#: woocommerce-functions.php:378 -#@ woocommerce -msgid "Please choose the quantity of items you wish to add to your cart…" -msgstr "" - -#: woocommerce-functions.php:386 -#, fuzzy -#@ woocommerce -msgid "Please choose a product to add to your cart…" -msgstr "Пожалуйста, выберите товар…" - -#: woocommerce-functions.php:455 -#, php-format -#@ woocommerce -msgid "Added "%s" to your cart." -msgstr "" - -#: woocommerce-functions.php:455 -#@ default -msgid "" and "" -msgstr "" - -#: woocommerce-functions.php:458 -#, fuzzy, php-format -#@ woocommerce -msgid ""%s" was successfully added to your cart." -msgstr "Товар успешно добавлен в корзину." - -#: woocommerce-functions.php:466 -#@ woocommerce -msgid "Continue Shopping →" -msgstr "Продолжить закупку →" - -#: woocommerce-functions.php:633 -#@ woocommerce -msgid "Username is required." -msgstr "Необходимо ввести имя пользователя." - -#: woocommerce-functions.php:634 -#: woocommerce-functions.php:729 -#@ woocommerce -msgid "Password is required." -msgstr "Необходимо ввести пароль." - -#: woocommerce-functions.php:705 -#@ woocommerce -msgid "This username is invalid because it uses illegal characters. Please enter a valid username." -msgstr "Это имя пользователя неверно, поскольку использует недопустимые символы. Введите подходящее имя пользователя." - -#: woocommerce-functions.php:708 -#@ woocommerce -msgid "This username is already registered, please choose another one." -msgstr "Это имя пользователя уже зарегистрировано, просьба ввести другое." - -#: woocommerce-functions.php:720 -#@ woocommerce -msgid "Please type your e-mail address." -msgstr "Пожалуйста, введите ваш email-адрес." - -#: woocommerce-functions.php:722 -#@ woocommerce -msgid "The email address isn’t correct." -msgstr "Email-адрес указан неверно." - -#: woocommerce-functions.php:725 -#@ woocommerce -msgid "This email is already registered, please choose another one." -msgstr "Этот email уже зарегистрирован, просьба ввести другой." - -#: woocommerce-functions.php:730 -#@ woocommerce -msgid "Re-enter your password." -msgstr "Повторите ваш пароль." - -#: woocommerce-functions.php:735 -#@ woocommerce -msgid "Anti-spam field was filled in." -msgstr "Анти-спам поле было заполнено." - -#: woocommerce-functions.php:841 -#@ woocommerce -msgid "The cart has been filled with the items from your previous order." -msgstr "Это корзина была наполнена наименованиями из вашего предыдущего заказа." - -#: woocommerce-functions.php:867 -#@ woocommerce -msgid "Order cancelled by customer." -msgstr "Заказ отменен клиентом." - -#: woocommerce-functions.php:870 -#@ woocommerce -msgid "Your order was cancelled." -msgstr "Ваш заказ отменен." - -#: woocommerce-functions.php:876 -#@ woocommerce -msgid "Your order is no longer pending and could not be cancelled. Please contact us if you need assistance." -msgstr "Ваш заказ не будет исполнен и его невозможно отменить. Пожалуйста, свяжитесь с нами если вам необходима консультация." - -#: woocommerce-functions.php:911 -#@ woocommerce -msgid "Invalid email address." -msgstr "Неверный email-адрес." - -#: woocommerce-functions.php:911 -#: woocommerce-functions.php:933 -#: woocommerce-functions.php:953 -#: woocommerce-functions.php:959 -#: woocommerce-functions.php:963 -#: woocommerce-functions.php:966 -#: woocommerce-functions.php:996 -#: woocommerce-functions.php:1099 -#@ woocommerce -msgid "Go to homepage →" -msgstr "Вернуться на главную страницу →" - -#: woocommerce-functions.php:933 -#@ woocommerce -msgid "Invalid download." -msgstr "Ошибка загрузки." - -#: woocommerce-functions.php:945 -#@ woocommerce -msgid "You must be logged in to download files." -msgstr "Вам необходимо авторизоваться для загрузки файлов." - -#: woocommerce-functions.php:948 -#@ woocommerce -msgid "This is not your download link." -msgstr "Это не ваша ссылка на загрузку." - -#: woocommerce-functions.php:953 -#, fuzzy -#@ woocommerce -msgid "Product no longer exists." -msgstr "Такого товара не существует" - -#: woocommerce-functions.php:963 -#@ woocommerce -msgid "Sorry, you have reached your download limit for this file" -msgstr "Вы достигли лимита на загрузку для этого файла" - -#: woocommerce-functions.php:966 -#@ woocommerce -msgid "Sorry, this download has expired" -msgstr "Приносим свои извинения, срок этой загрузки истек" - -#: woocommerce-functions.php:1099 -#@ woocommerce -msgid "File not found" -msgstr "Файл не найден" - -#: woocommerce-functions.php:1209 -#@ woocommerce -msgid "New products" -msgstr "Новые товары" - -#: woocommerce-functions.php:1217 -#, php-format -#@ woocommerce -msgid "New products added to %s" -msgstr "Новые товары добавлены в %s" - -#: woocommerce-functions.php:1225 -#, php-format -#@ woocommerce -msgid "New products tagged %s" -msgstr "Новые товары помечены %s" - -#: woocommerce-functions.php:1264 -#@ woocommerce -msgid "You have taken too long. Please go back and refresh the page." -msgstr "Превышено время ожидания. Пожалуйста, вернитесь и обновите страницу." - -#: woocommerce-functions.php:1267 -#@ woocommerce -msgid "Please rate the product." -msgstr "Пожалуйста, оцените товар." - -#: admin/settings/settings-init.php:95 -#: woocommerce-template.php:196 -#@ woocommerce -msgid "This is a demo store for testing purposes — no orders shall be fulfilled." -msgstr "Это демо-магазин для тестирования — заказы не исполняются, но мы ждем вас на открытие 17.11." - -#: woocommerce-template.php:215 -#, php-format -#@ woocommerce -msgid "Search Results: “%s”" -msgstr "" - -#: woocommerce-template.php:218 -#, php-format -#@ woocommerce -msgid " – Page %s" -msgstr "" - -#: woocommerce-template.php:990 -#@ woocommerce -msgctxt "breadcrumb" -msgid "Home" -msgstr "Главная" - -#: woocommerce-template.php:1288 -#: woocommerce.php:1175 -#@ woocommerce -msgid "required" -msgstr "" - -#: woocommerce-template.php:1334 -#@ woocommerce -msgid "Update country" -msgstr "" - -#: woocommerce-template.php:1489 -#@ woocommerce -msgid "Search for:" -msgstr "Искать:" - -#: woocommerce-template.php:1490 -#@ woocommerce -msgid "Search for products" -msgstr "Поиск товаров" - -#: admin/post-types/product.php:620 -#: admin/post-types/product.php:893 -#: admin/post-types/writepanels/writepanel-product_data.php:1030 -#: woocommerce-template.php:1491 -#: woocommerce.php:913 -#@ woocommerce -msgid "Search" -msgstr "Поиск" - -#: admin/includes/updates/woocommerce-update-2.0.php:50 -#: admin/woocommerce-admin-init.php:895 -#: woocommerce.php:752 -#@ woocommerce -msgctxt "slug" -msgid "product-category" -msgstr "товарная-категория" - -#: admin/includes/updates/woocommerce-update-2.0.php:51 -#: admin/woocommerce-admin-init.php:908 -#: woocommerce.php:753 -#@ woocommerce -msgctxt "slug" -msgid "product-tag" -msgstr "товарный-тег" - -#: admin/includes/updates/woocommerce-update-2.0.php:59 -#: woocommerce.php:755 -#@ woocommerce -msgctxt "slug" -msgid "product" -msgstr "товар" - -#: woocommerce.php:791 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Categories" -msgstr "" - -#: woocommerce.php:792 -#@ woocommerce -msgid "Search Product Categories" -msgstr "Поиск по категориям товара" - -#: woocommerce.php:793 -#@ woocommerce -msgid "All Product Categories" -msgstr "Все категории товара" - -#: woocommerce.php:794 -#@ woocommerce -msgid "Parent Product Category" -msgstr "Главная категория товара" - -#: woocommerce.php:795 -#@ woocommerce -msgid "Parent Product Category:" -msgstr "Главная категория товара:" - -#: woocommerce.php:796 -#@ woocommerce -msgid "Edit Product Category" -msgstr "Изменить категорию товара" - -#: woocommerce.php:797 -#@ woocommerce -msgid "Update Product Category" -msgstr "Обновить категорию товара" - -#: woocommerce.php:798 -#@ woocommerce -msgid "Add New Product Category" -msgstr "Добавить новую категорию товара" - -#: woocommerce.php:799 -#@ woocommerce -msgid "New Product Category Name" -msgstr "Новое имя категории товара" - -#: woocommerce.php:827 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Tags" -msgstr "" - -#: woocommerce.php:828 -#@ woocommerce -msgid "Search Product Tags" -msgstr "Поиск по меткам товара" - -#: woocommerce.php:829 -#@ woocommerce -msgid "All Product Tags" -msgstr "Все метки товаров" - -#: woocommerce.php:830 -#@ woocommerce -msgid "Parent Product Tag" -msgstr "Главный тег товара" - -#: woocommerce.php:831 -#@ woocommerce -msgid "Parent Product Tag:" -msgstr "Главный тег товара:" - -#: woocommerce.php:832 -#@ woocommerce -msgid "Edit Product Tag" -msgstr "Изменить тег товара" - -#: woocommerce.php:833 -#@ woocommerce -msgid "Update Product Tag" -msgstr "Обновить тег товара" - -#: woocommerce.php:834 -#@ woocommerce -msgid "Add New Product Tag" -msgstr "Добавить новый тег товара" - -#: woocommerce.php:835 -#@ woocommerce -msgid "New Product Tag Name" -msgstr "Новый тег товара" - -#: woocommerce.php:854 -#: woocommerce.php:856 -#@ woocommerce -msgid "Shipping Classes" -msgstr "Классы доставки" - -#: woocommerce.php:858 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Shipping Classes" -msgstr "" - -#: woocommerce.php:859 -#@ woocommerce -msgid "Search Shipping Classes" -msgstr "Искать по классам доставки" - -#: woocommerce.php:860 -#@ woocommerce -msgid "All Shipping Classes" -msgstr "Все классы доставки" - -#: woocommerce.php:861 -#@ woocommerce -msgid "Parent Shipping Class" -msgstr "Главный класс доставки" - -#: woocommerce.php:862 -#@ woocommerce -msgid "Parent Shipping Class:" -msgstr "Главный класс доставки:" - -#: woocommerce.php:863 -#@ woocommerce -msgid "Edit Shipping Class" -msgstr "Изменить класс доставки" - -#: woocommerce.php:864 -#@ woocommerce -msgid "Update Shipping Class" -msgstr "Обновить класс доставки" - -#: woocommerce.php:865 -#@ woocommerce -msgid "Add New Shipping Class" -msgstr "Добавить новый класс доставки" - -#: woocommerce.php:866 -#@ woocommerce -msgid "New Shipping Class Name" -msgstr "Имя нового класса доставки" - -#: woocommerce.php:914 -#@ woocommerce -msgid "All" -msgstr "Все" - -#: woocommerce.php:915 -#: woocommerce.php:916 -#@ woocommerce -msgid "Parent" -msgstr "Главный" - -#: admin/woocommerce-admin-attributes.php:276 -#: woocommerce.php:918 -#@ woocommerce -msgid "Update" -msgstr "Обновить" - -#: woocommerce.php:919 -#@ woocommerce -msgid "Add New" -msgstr "Добавить новый" - -#: woocommerce.php:920 -#@ woocommerce -msgid "New" -msgstr "Новый" - -#: woocommerce.php:950 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Products" -msgstr "" - -#: woocommerce.php:951 -#@ woocommerce -msgid "Add Product" -msgstr "Добавить товар" - -#: woocommerce.php:952 -#@ woocommerce -msgid "Add New Product" -msgstr "Добавить новый товар" - -#: woocommerce.php:954 -#@ woocommerce -msgid "Edit Product" -msgstr "Изменить товар" - -#: woocommerce.php:955 -#@ woocommerce -msgid "New Product" -msgstr "Новый товар" - -#: woocommerce.php:956 -#: woocommerce.php:957 -#@ woocommerce -msgid "View Product" -msgstr "Посмотреть товар" - -#: woocommerce.php:958 -#@ woocommerce -msgid "Search Products" -msgstr "Поиск по товарам" - -#: woocommerce.php:959 -#@ woocommerce -msgid "No Products found" -msgstr "Товары не найдены" - -#: woocommerce.php:960 -#@ woocommerce -msgid "No Products found in trash" -msgstr "Не найдено удаленных товаров" - -#: woocommerce.php:961 -#@ woocommerce -msgid "Parent Product" -msgstr "Главный товар" - -#: woocommerce.php:963 -#@ woocommerce -msgid "This is where you can add new products to your store." -msgstr "Здесь можно добавить новые товары в магазин." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -#: woocommerce.php:986 -#@ woocommerce -msgid "Variations" -msgstr "Варианты" - -#: woocommerce.php:987 -#@ woocommerce -msgid "Variation" -msgstr "Вариант" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:193 -#: woocommerce.php:988 -#@ woocommerce -msgid "Add Variation" -msgstr "Добавить вариант" - -#: woocommerce.php:989 -#@ woocommerce -msgid "Add New Variation" -msgstr "Добавить новый вариант" - -#: woocommerce.php:991 -#@ woocommerce -msgid "Edit Variation" -msgstr "Изменить вариант" - -#: woocommerce.php:992 -#@ woocommerce -msgid "New Variation" -msgstr "Новый вариант" - -#: woocommerce.php:993 -#: woocommerce.php:994 -#@ woocommerce -msgid "View Variation" -msgstr "Посмотреть варианты" - -#: woocommerce.php:995 -#@ woocommerce -msgid "Search Variations" -msgstr "Искать варианты" - -#: woocommerce.php:996 -#@ woocommerce -msgid "No Variations found" -msgstr "Не найдено вариантов" - -#: woocommerce.php:997 -#@ woocommerce -msgid "No Variations found in trash" -msgstr "Не найдено удаленных вариантов" - -#: woocommerce.php:998 -#@ woocommerce -msgid "Parent Variation" -msgstr "Главные варианты" - -#: admin/woocommerce-admin-init.php:140 -#: admin/woocommerce-admin-init.php:142 -#: woocommerce.php:1015 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Orders" -msgstr "" - -#: admin/woocommerce-admin-content.php:68 -#: admin/woocommerce-admin-dashboard.php:142 -#: woocommerce.php:1024 -#@ woocommerce -msgid "Orders" -msgstr "Заказы" - -#: woocommerce.php:1026 -#@ woocommerce -msgid "Add Order" -msgstr "Добавить заказ" - -#: woocommerce.php:1027 -#@ woocommerce -msgid "Add New Order" -msgstr "Добавить новый заказ" - -#: woocommerce.php:1029 -#@ woocommerce -msgid "Edit Order" -msgstr "Изменить заказ" - -#: woocommerce.php:1030 -#@ woocommerce -msgid "New Order" -msgstr "Новый заказ" - -#: woocommerce.php:1033 -#@ woocommerce -msgid "Search Orders" -msgstr "Поиск по заказам" - -#: woocommerce.php:1034 -#@ woocommerce -msgid "No Orders found" -msgstr "Не найдено заказов" - -#: woocommerce.php:1035 -#@ woocommerce -msgid "No Orders found in trash" -msgstr "Не найдено удаленных заказов" - -#: woocommerce.php:1036 -#@ woocommerce -msgid "Parent Orders" -msgstr "Главные заказы" - -#: woocommerce.php:1039 -#@ woocommerce -msgid "This is where store orders are stored." -msgstr "Здесь хранятся заказы." - -#: admin/settings/settings-init.php:105 -#: admin/woocommerce-admin-content.php:61 -#: admin/woocommerce-admin-content.php:76 -#: admin/woocommerce-admin-reports.php:72 -#: woocommerce.php:1061 -#@ woocommerce -msgid "Coupons" -msgstr "Купоны" - -#: woocommerce.php:1063 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Coupons" -msgstr "" - -#: woocommerce.php:1064 -#@ woocommerce -msgid "Add Coupon" -msgstr "Добавить купон" - -#: woocommerce.php:1065 -#@ woocommerce -msgid "Add New Coupon" -msgstr "Добавить новый купон" - -#: woocommerce.php:1067 -#@ woocommerce -msgid "Edit Coupon" -msgstr "Изменить купон" - -#: woocommerce.php:1068 -#@ woocommerce -msgid "New Coupon" -msgstr "Новый купон" - -#: woocommerce.php:1069 -#@ woocommerce -msgid "View Coupons" -msgstr "Просмотр купонов" - -#: woocommerce.php:1070 -#@ woocommerce -msgid "View Coupon" -msgstr "Просмотр купона" - -#: woocommerce.php:1071 -#@ woocommerce -msgid "Search Coupons" -msgstr "Поиск купонов" - -#: woocommerce.php:1072 -#@ woocommerce -msgid "No Coupons found" -msgstr "Не найдено купонов" - -#: woocommerce.php:1073 -#@ woocommerce -msgid "No Coupons found in trash" -msgstr "Не найдено удаленных купонов" - -#: woocommerce.php:1074 -#@ woocommerce -msgid "Parent Coupon" -msgstr "Главный купон" - -#: woocommerce.php:1076 -#@ woocommerce -msgid "This is where you can add new coupons that customers can use in your store." -msgstr "Здесь можно добавить новые купоны, которые пользователи смогут использовать в магазине" - -#: woocommerce.php:1172 -#, fuzzy -#@ woocommerce -msgid "Select an option…" -msgstr "Выберите страну…" - -#: woocommerce.php:1173 -#, fuzzy -#@ woocommerce -msgid "Please select a rating" -msgstr "Удалить выбранные классы" - -#: woocommerce.php:1174 -#@ woocommerce -msgid "Sorry, no products matched your selection. Please choose a different combination." -msgstr "" - -#: woocommerce.php:1656 -#@ woocommerce -msgid "Cart % Discount" -msgstr "Скидка в корзине %" - -#: woocommerce.php:1657 -#@ woocommerce -msgid "Product Discount" -msgstr "Скидка на товар" - -#: woocommerce.php:1658 -#@ woocommerce -msgid "Product % Discount" -msgstr "Скадка на товар %" - -#: admin/woocommerce-admin-settings.php:45 -#: woocommerce.php:1723 -#@ woocommerce -msgid "Action failed. Please refresh the page and retry." -msgstr "Действие не выполнено. Пожалуйста, обновите страницу и повторите попытку." - -#: admin/importers/importers-init.php:13 -#@ woocommerce -msgid "WooCommerce Tax Rates (CSV)" -msgstr "" - -#: admin/importers/importers-init.php:13 -#@ woocommerce -msgid "Import tax rates to your store via a csv file." -msgstr "" - -#: admin/importers/tax-rates-importer.php:103 -#: admin/importers/tax-rates-importer.php:186 -#: admin/importers/tax-rates-importer.php:226 -#: admin/importers/tax-rates-importer.php:241 -#@ woocommerce -msgid "Sorry, there has been an error." -msgstr "" - -#: admin/importers/tax-rates-importer.php:104 -#@ woocommerce -msgid "The file does not exist, please try again." -msgstr "" - -#: admin/importers/tax-rates-importer.php:187 -#@ woocommerce -msgid "The CSV is invalid." -msgstr "" - -#: admin/importers/tax-rates-importer.php:198 -#, php-format -#@ woocommerce -msgid "Import complete - imported %s tax rates and skipped %s." -msgstr "" - -#: admin/importers/tax-rates-importer.php:208 -#@ woocommerce -msgid "All done!" -msgstr "" - -#: admin/importers/tax-rates-importer.php:208 -#@ woocommerce -msgid "View Tax Rates" -msgstr "" - -#: admin/importers/tax-rates-importer.php:259 -#@ woocommerce -msgid "Import Tax Rates" -msgstr "" - -#: admin/importers/tax-rates-importer.php:282 -#@ woocommerce -msgid "Hi there! Upload a CSV file containing tax rates to import the contents into your shop. Choose a .csv file to upload, then click \"Upload file and import\"." -msgstr "" - -#: admin/importers/tax-rates-importer.php:284 -#, php-format -#@ woocommerce -msgid "Tax rates need to be defined with columns in a specific order (10 columns). Click here to download a sample." -msgstr "" - -#: admin/importers/tax-rates-importer.php:292 -#@ default -msgid "Before you can upload your import file, you will need to fix the following error:" -msgstr "" - -#: admin/importers/tax-rates-importer.php:301 -#@ default -msgid "Choose a file from your computer:" -msgstr "" - -#: admin/importers/tax-rates-importer.php:307 -#, php-format -#@ default -msgid "Maximum size: %s" -msgstr "" - -#: admin/importers/tax-rates-importer.php:312 -#@ woocommerce -msgid "OR enter path to file:" -msgstr "" - -#: admin/importers/tax-rates-importer.php:319 -#@ woocommerce -msgid "Delimiter" -msgstr "" - -#: admin/importers/tax-rates-importer.php:325 -#@ default -msgid "Upload file and import" -msgstr "" - -#: admin/includes/duplicate_product.php:23 -#@ woocommerce -msgid "No product to duplicate has been supplied!" -msgstr "" - -#: admin/includes/duplicate_product.php:43 -#@ woocommerce -msgid "Product creation failed, could not find original product:" -msgstr "" - -#: admin/includes/duplicate_product.php:89 -#@ woocommerce -msgid "(Copy)" -msgstr "" - -#: admin/includes/notice-install.php:6 -#@ woocommerce -msgid "Welcome to WooCommerce – You're almost ready to start selling :)" -msgstr "" - -#: admin/includes/notice-install.php:7 -#@ woocommerce -msgid "Install WooCommerce Pages" -msgstr "" - -#: admin/includes/notice-install.php:7 -#@ woocommerce -msgid "Skip setup" -msgstr "" - -#: admin/includes/notice-theme-support.php:6 -#@ woocommerce -msgid "Your theme does not declare WooCommerce support – if you encounter layout issues please read our integration guide or choose a WooCommerce theme :)" -msgstr "" - -#: admin/includes/notice-theme-support.php:7 -#@ woocommerce -msgid "Theme Integration Guide" -msgstr "" - -#: admin/includes/notice-theme-support.php:7 -#@ woocommerce -msgid "Hide this notice" -msgstr "" - -#: admin/includes/notice-update.php:6 -#@ woocommerce -msgid "Data Update Required – We just need to update your install to the latest version" -msgstr "" - -#: admin/includes/notice-update.php:7 -#@ woocommerce -msgid "Run the updater" -msgstr "" - -#: admin/includes/notice-update.php:12 -#@ woocommerce -msgid "It is strongly recommended that you backup your database before proceeding. Are you sure you wish to run the updater now?" -msgstr "" - -#: admin/includes/updates/woocommerce-update-2.0.php:180 -#: admin/woocommerce-admin-install.php:204 -#@ woocommerce -msgctxt "page_slug" -msgid "lost-password" -msgstr "" - -#: admin/includes/updates/woocommerce-update-2.0.php:180 -#: admin/woocommerce-admin-install.php:204 -#: admin/woocommerce-admin-status.php:309 -#@ woocommerce -msgid "Lost Password" -msgstr "" - -#: admin/includes/welcome.php:33 -#@ woocommerce -msgid "Welcome to WooCommerce" -msgstr "" - -#: admin/includes/welcome.php:128 -#, php-format -#@ woocommerce -msgid "Welcome to WooCommerce %s" -msgstr "" - -#: admin/includes/welcome.php:133 -#@ woocommerce -msgid "Thanks, all done!" -msgstr "" - -#: admin/includes/welcome.php:135 -#@ woocommerce -msgid "Thank you for updating to the latest version!" -msgstr "" - -#: admin/includes/welcome.php:137 -#@ woocommerce -msgid "Thanks for installing!" -msgstr "" - -#: admin/includes/welcome.php:139 -#, php-format -#@ woocommerce -msgid "%s WooCommerce %s is more powerful, stable, and secure than ever before. We hope you enjoy it." -msgstr "" - -#: admin/includes/welcome.php:143 -#, php-format -#@ default -msgid "Version %s" -msgstr "" - -#: admin/includes/welcome.php:147 -#@ woocommerce -msgid "Docs" -msgstr "" - -#: admin/includes/welcome.php:154 -#@ woocommerce -msgid "What's New" -msgstr "" - -#: admin/includes/welcome.php:156 -#@ woocommerce -msgid "Credits" -msgstr "" - -#: admin/includes/welcome.php:179 -#@ woocommerce -msgid "Security in mind" -msgstr "" - -#: admin/includes/welcome.php:183 -#@ woocommerce -msgid "Sucuri Safe Plugin" -msgstr "" - -#: admin/includes/welcome.php:184 -#@ woocommerce -msgid "You will be happy to learn that WooCommerce has been audited and certified by the Sucuri Security team. Whilst there is not much to be seen visually to understand the amount of work that went into this audit, rest assured that your website is powered by one of the most powerful and stable eCommerce plugins available." -msgstr "" - -#: admin/includes/welcome.php:187 -#@ woocommerce -msgid "A Smoother Admin Experience" -msgstr "" - -#: admin/includes/welcome.php:193 -#@ woocommerce -msgid "New Product Panel" -msgstr "" - -#: admin/includes/welcome.php:194 -#@ woocommerce -msgid "We have revised the product data panel making it cleaner, more streamlined, and more logical. Adding products is a breeze!" -msgstr "" - -#: admin/includes/welcome.php:199 -#@ woocommerce -msgid "Nicer Order Screens" -msgstr "" - -#: admin/includes/welcome.php:200 -#@ woocommerce -msgid "Order pages have had a cleanup, with a more easily scannable interface. We particularly like the new status icons!" -msgstr "" - -#: admin/includes/welcome.php:205 -#@ woocommerce -msgid "Multi-Download Support" -msgstr "" - -#: admin/includes/welcome.php:206 -#@ woocommerce -msgid "Products can have multiple downloadable files - purchasers will get access to all the files added." -msgstr "" - -#: admin/includes/welcome.php:211 -#@ woocommerce -msgid "Less Taxing Taxes" -msgstr "" - -#: admin/includes/welcome.php:217 -#@ woocommerce -msgid "New Tax Input Panel" -msgstr "" - -#: admin/includes/welcome.php:218 -#@ woocommerce -msgid "The tax input pages have been streamlined to make inputting taxes simpler - adding multiple taxes for a single jurisdiction is now much easier using the priority system. There is also CSV import/export support." -msgstr "" - -#: admin/includes/welcome.php:222 -#@ woocommerce -msgid "Improved Tax Options" -msgstr "" - -#: admin/includes/welcome.php:223 -#@ woocommerce -msgid "As requested by some users, we now support taxing the billing address instead of shipping (optional), and we allow you to choose which tax class applies to shipping." -msgstr "" - -#: admin/includes/welcome.php:228 -#@ woocommerce -msgid "Product Listing Improvements Customers Will Love" -msgstr "" - -#: admin/includes/welcome.php:234 -#@ woocommerce -msgid "New Sorting Options" -msgstr "" - -#: admin/includes/welcome.php:235 -#@ woocommerce -msgid "Customers can now sort products by popularity and ratings." -msgstr "" - -#: admin/includes/welcome.php:240 -#@ woocommerce -msgid "Better Pagination and Result Counts" -msgstr "" - -#: admin/includes/welcome.php:241 -#@ woocommerce -msgid "Numbered pagination has been added to core, and we show the number of results found above the listings." -msgstr "" - -#: admin/includes/welcome.php:246 -#@ woocommerce -msgid "Inline Star Rating Display" -msgstr "" - -#: admin/includes/welcome.php:247 -#@ woocommerce -msgid "We have added star ratings to the catalog which are pulled from reviews." -msgstr "" - -#: admin/includes/welcome.php:255 -#@ woocommerce -msgid "Under the Hood" -msgstr "" - -#: admin/includes/welcome.php:259 -#@ woocommerce -msgid "New product classes" -msgstr "" - -#: admin/includes/welcome.php:260 -#@ woocommerce -msgid "The product classes have been rewritten and are now factory based. Much more extendable, and easier to query products using the new get_product() function." -msgstr "" - -#: admin/includes/welcome.php:264 -#@ woocommerce -msgid "Capability overhaul" -msgstr "" - -#: admin/includes/welcome.php:265 -#@ woocommerce -msgid "More granular capabilities for admin/shop manager roles covering products, orders and coupons." -msgstr "" - -#: admin/includes/welcome.php:269 -#@ woocommerce -msgid "API Improvements" -msgstr "" - -#: admin/includes/welcome.php:270 -#@ woocommerce -msgid "WC-API now has real endpoints, and we've optimised the gateways API significantly by only loading gateways when needed." -msgstr "" - -#: admin/includes/welcome.php:276 -#@ woocommerce -msgid "Cache-friendly cart widgets" -msgstr "" - -#: admin/includes/welcome.php:277 -#@ woocommerce -msgid "Cart widgets and other \"fragments\" are now pulled in via AJAX - this works wonders with static page caching." -msgstr "" - -#: admin/includes/welcome.php:281 -#@ woocommerce -msgid "Session handling" -msgstr "" - -#: admin/includes/welcome.php:282 -#@ woocommerce -msgid "PHP SESSIONS have been a problem for many users in the past, so we've developed our own handler using cookies and options to make these more reliable." -msgstr "" - -#: admin/includes/welcome.php:286 -#@ woocommerce -msgid "Retina Ready" -msgstr "" - -#: admin/includes/welcome.php:287 -#@ woocommerce -msgid "All graphics within WC have been optimised for HiDPI displays." -msgstr "" - -#: admin/includes/welcome.php:294 -#@ woocommerce -msgid "Better stock handling" -msgstr "" - -#: admin/includes/welcome.php:295 -#@ woocommerce -msgid "We have added an option to hold stock for unpaid orders (defaults to 60mins). When this time limit is reached, and the order is not paid for, stock is released and the order is cancelled." -msgstr "" - -#: admin/includes/welcome.php:299 -#@ woocommerce -msgid "Improved Line-item storage" -msgstr "" - -#: admin/includes/welcome.php:300 -#@ woocommerce -msgid "We have changed how order items get stored making them easier (and faster) to access for reporting. Order items are no longer serialised within an order - they are stored within their own table." -msgstr "" - -#: admin/includes/welcome.php:304 -#@ woocommerce -msgid "Autoload" -msgstr "" - -#: admin/includes/welcome.php:305 -#@ woocommerce -msgid "We have setup autoloading for classes - this has dramatically reduced memory usage in 2.0." -msgstr "" - -#: admin/includes/welcome.php:312 -#@ woocommerce -msgid "Go to WooCommerce Settings" -msgstr "" - -#: admin/includes/welcome.php:330 -#@ woocommerce -msgid "WooCommerce is developed and maintained by a worldwide team of passionate individuals and backed by an awesome developer community. Want to see your name? Contribute to WooCommerce." -msgstr "" - -#: admin/includes/welcome.php:356 -#, php-format -#@ woocommerce -msgid "View %s" -msgstr "" - -#: admin/post-types/product.php:31 -#@ woocommerce -msgid "Make a duplicate from this product" -msgstr "" - -#: admin/post-types/product.php:32 -#@ woocommerce -msgid "Duplicate" -msgstr "" - -#: admin/post-types/product.php:61 -#@ woocommerce -msgid "Copy to a new draft" -msgstr "" - -#: admin/post-types/product.php:86 -#: admin/woocommerce-admin-taxonomies.php:297 -#@ woocommerce -msgid "Image" -msgstr "" - -#: admin/post-types/product.php:91 -#: admin/post-types/product.php:557 -#: admin/post-types/writepanels/variation-admin-html.php:46 -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#: admin/woocommerce-admin-reports.php:2083 -#: admin/woocommerce-admin-reports.php:2119 -#@ woocommerce -msgid "SKU" -msgstr "" - -#: admin/post-types/product.php:94 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:83 -#: admin/woocommerce-admin-content.php:63 -#: admin/woocommerce-admin-reports.php:99 -#@ woocommerce -msgid "Stock" -msgstr "" - -#: admin/post-types/product.php:98 -#@ woocommerce -msgid "Categories" -msgstr "" - -#: admin/post-types/product.php:99 -#@ woocommerce -msgid "Tags" -msgstr "" - -#: admin/post-types/product.php:100 -#: admin/post-types/product.php:632 -#: admin/post-types/product.php:904 -#: admin/post-types/writepanels/writepanel-product_data.php:1040 -#: admin/woocommerce-admin-init.php:463 -#@ woocommerce -msgid "Featured" -msgstr "" - -#: admin/post-types/product.php:101 -#: admin/woocommerce-admin-attributes.php:250 -#: admin/woocommerce-admin-attributes.php:308 -#: admin/woocommerce-admin-attributes.php:385 -#@ woocommerce -msgid "Type" -msgstr "" - -#: admin/post-types/product.php:102 -#: admin/post-types/shop_order.php:50 -#: templates/myaccount/my-orders.php:33 -#@ woocommerce -msgid "Date" -msgstr "" - -#: admin/post-types/product.php:151 -#@ default -msgid "Edit this item" -msgstr "" - -#: admin/post-types/product.php:152 -#@ default -msgid "Edit this item inline" -msgstr "" - -#: admin/post-types/product.php:152 -#@ default -msgid "Quick Edit" -msgstr "" - -#: admin/post-types/product.php:156 -#: admin/post-types/shop_coupon.php:65 -#@ default -msgid "Restore this item from the Trash" -msgstr "" - -#: admin/post-types/product.php:156 -#: admin/post-types/shop_coupon.php:65 -#@ default -msgid "Restore" -msgstr "" - -#: admin/post-types/product.php:158 -#: admin/post-types/shop_coupon.php:67 -#@ default -msgid "Move this item to the Trash" -msgstr "" - -#: admin/post-types/product.php:158 -#: admin/post-types/shop_coupon.php:67 -#@ default -msgid "Trash" -msgstr "" - -#: admin/post-types/product.php:160 -#: admin/post-types/shop_coupon.php:69 -#@ default -msgid "Delete this item permanently" -msgstr "" - -#: admin/post-types/product.php:160 -#: admin/post-types/shop_coupon.php:69 -#: admin/post-types/writepanels/writepanel-order_data.php:463 -#@ default -#@ woocommerce -msgid "Delete Permanently" -msgstr "" - -#: admin/post-types/product.php:165 -#, php-format -#@ default -msgid "Preview “%s”" -msgstr "" - -#: admin/post-types/product.php:165 -#@ default -msgid "Preview" -msgstr "" - -#: admin/post-types/product.php:167 -#, php-format -#@ default -msgid "View “%s”" -msgstr "" - -#: admin/post-types/product.php:214 -#@ woocommerce -msgid "Grouped" -msgstr "" - -#: admin/post-types/product.php:216 -#@ woocommerce -msgid "External/Affiliate" -msgstr "" - -#: admin/post-types/product.php:220 -#: admin/post-types/product.php:407 -#: admin/post-types/writepanels/variation-admin-html.php:168 -#: admin/post-types/writepanels/writepanel-product_data.php:52 -#@ woocommerce -msgid "Virtual" -msgstr "" - -#: admin/post-types/product.php:222 -#: admin/post-types/product.php:403 -#: admin/post-types/writepanels/variation-admin-html.php:166 -#: admin/post-types/writepanels/writepanel-product_data.php:58 -#@ woocommerce -msgid "Downloadable" -msgstr "" - -#: admin/post-types/product.php:224 -#@ woocommerce -msgid "Simple" -msgstr "" - -#: admin/post-types/product.php:228 -#: admin/post-types/product.php:387 -#@ woocommerce -msgid "Variable" -msgstr "" - -#: admin/post-types/product.php:251 -#@ woocommerce -msgid "Toggle featured" -msgstr "" - -#: admin/post-types/product.php:253 -#@ woocommerce -msgid "yes" -msgstr "" - -#: admin/post-types/product.php:255 -#@ woocommerce -msgid "no" -msgstr "" - -#: admin/post-types/product.php:373 -#@ woocommerce -msgid "Show all product types" -msgstr "" - -#: admin/post-types/product.php:381 -#: admin/post-types/writepanels/writepanel-product_data.php:39 -#@ woocommerce -msgid "Grouped product" -msgstr "" - -#: admin/post-types/product.php:383 -#: admin/post-types/writepanels/writepanel-product_data.php:40 -#@ woocommerce -msgid "External/Affiliate product" -msgstr "" - -#: admin/post-types/product.php:385 -#: admin/post-types/writepanels/writepanel-product_data.php:38 -#@ woocommerce -msgid "Simple product" -msgstr "" - -#: admin/post-types/product.php:399 -#@ woocommerce -msgid "Show all sub-types" -msgstr "" - -#: admin/post-types/product.php:520 -#, php-format -#@ woocommerce -msgid "[%s with SKU of %s]" -msgstr "" - -#: admin/post-types/product.php:526 -#, php-format -#@ woocommerce -msgid "[%s with ID of %d]" -msgstr "" - -#: admin/post-types/product.php:552 -#: admin/post-types/product.php:783 -#: admin/post-types/writepanels/writepanels-init.php:46 -#: admin/settings/settings-init.php:518 -#@ woocommerce -msgid "Product Data" -msgstr "" - -#: admin/post-types/product.php:570 -#@ woocommerce -msgid "Regular price" -msgstr "" - -#: admin/post-types/product.php:575 -#: admin/post-types/product.php:811 -#@ woocommerce -msgid "Sale" -msgstr "" - -#: admin/post-types/product.php:577 -#@ woocommerce -msgid "Sale price" -msgstr "" - -#: admin/post-types/product.php:599 -#: admin/post-types/product.php:861 -#@ woocommerce -msgid "L/W/H" -msgstr "" - -#: admin/post-types/product.php:601 -#: admin/post-types/product.php:877 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:85 -#: admin/post-types/writepanels/writepanel-product_data.php:286 -#@ woocommerce -msgid "Length" -msgstr "" - -#: admin/post-types/product.php:602 -#: admin/post-types/product.php:878 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:86 -#: admin/post-types/writepanels/writepanel-product_data.php:287 -#: admin/woocommerce-admin-settings.php:795 -#@ woocommerce -msgid "Width" -msgstr "" - -#: admin/post-types/product.php:603 -#: admin/post-types/product.php:879 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:87 -#: admin/post-types/writepanels/writepanel-product_data.php:288 -#: admin/woocommerce-admin-settings.php:797 -#@ woocommerce -msgid "Height" -msgstr "" - -#: admin/post-types/product.php:613 -#: admin/post-types/product.php:885 -#@ woocommerce -msgid "Visibility" -msgstr "" - -#: admin/post-types/product.php:618 -#: admin/post-types/product.php:891 -#@ woocommerce -msgid "Catalog & search" -msgstr "" - -#: admin/post-types/product.php:619 -#: admin/post-types/product.php:892 -#: admin/post-types/writepanels/writepanel-product_data.php:1029 -#: admin/woocommerce-admin-content.php:46 -#: admin/woocommerce-admin-settings.php:181 -#@ woocommerce -msgid "Catalog" -msgstr "" - -#: admin/post-types/product.php:621 -#: admin/post-types/product.php:894 -#: admin/post-types/writepanels/writepanel-product_data.php:1031 -#@ woocommerce -msgid "Hidden" -msgstr "" - -#: admin/post-types/product.php:636 -#: admin/post-types/product.php:922 -#@ woocommerce -msgid "In stock?" -msgstr "" - -#: admin/post-types/product.php:657 -#: admin/post-types/product.php:940 -#: admin/post-types/writepanels/writepanel-product_data.php:212 -#@ woocommerce -msgid "Manage stock?" -msgstr "" - -#: admin/post-types/product.php:661 -#: admin/post-types/product.php:959 -#: admin/post-types/product.php:975 -#: admin/post-types/writepanels/writepanel-product_data.php:219 -#@ woocommerce -msgid "Stock Qty" -msgstr "" - -#: admin/post-types/product.php:792 -#: admin/post-types/product.php:816 -#: admin/post-types/product.php:842 -#: admin/post-types/product.php:866 -#: admin/post-types/product.php:890 -#: admin/post-types/product.php:909 -#: admin/post-types/product.php:927 -#: admin/post-types/product.php:945 -#: admin/post-types/product.php:964 -#@ woocommerce -msgid "— No Change —" -msgstr "" - -#: admin/post-types/product.php:793 -#: admin/post-types/product.php:817 -#: admin/post-types/product.php:843 -#: admin/post-types/product.php:867 -#: admin/post-types/product.php:965 -#@ woocommerce -msgid "Change to:" -msgstr "" - -#: admin/post-types/product.php:794 -#: admin/post-types/product.php:818 -#@ woocommerce -msgid "Increase by (fixed amount or %):" -msgstr "" - -#: admin/post-types/product.php:795 -#: admin/post-types/product.php:819 -#@ woocommerce -msgid "Decrease by (fixed amount or %):" -msgstr "" - -#: admin/post-types/product.php:805 -#: admin/post-types/product.php:830 -#@ woocommerce -msgid "Enter price" -msgstr "" - -#: admin/post-types/product.php:820 -#@ woocommerce -msgid "Decrease regular price by (fixed amount or %):" -msgstr "" - -#: admin/post-types/product.php:910 -#: admin/post-types/product.php:946 -#: admin/post-types/shop_order.php:190 -#: admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:260 -#@ woocommerce -msgid "Yes" -msgstr "" - -#: admin/post-types/product.php:911 -#: admin/post-types/product.php:947 -#: admin/post-types/shop_order.php:192 -#: admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:260 -#@ woocommerce -msgid "No" -msgstr "" - -#: admin/post-types/product.php:1175 -#@ woocommerce -msgid "Sort Products" -msgstr "" - -#: admin/post-types/product.php:1214 -#@ woocommerce -msgid "Insert into product" -msgstr "" - -#: admin/post-types/product.php:1215 -#@ woocommerce -msgid "Uploaded to this product" -msgstr "" - -#: admin/post-types/shop_coupon.php:25 -#@ woocommerce -msgid "Code" -msgstr "" - -#: admin/post-types/shop_coupon.php:26 -#@ woocommerce -msgid "Coupon type" -msgstr "" - -#: admin/post-types/shop_coupon.php:27 -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -#@ woocommerce -msgid "Coupon amount" -msgstr "" - -#: admin/post-types/shop_coupon.php:29 -#@ woocommerce -msgid "Product IDs" -msgstr "" - -#: admin/post-types/shop_coupon.php:30 -#@ woocommerce -msgid "Usage / Limit" -msgstr "" - -#: admin/post-types/shop_coupon.php:31 -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -#@ woocommerce -msgid "Expiry date" -msgstr "" - -#: admin/post-types/shop_coupon.php:56 -#@ woocommerce -msgid "Edit coupon" -msgstr "" - -#: admin/post-types/shop_coupon.php:114 -#, php-format -#@ woocommerce -msgid "%s / %s" -msgstr "" - -#: admin/post-types/shop_coupon.php:116 -#, php-format -#@ woocommerce -msgid "%s / ∞" -msgstr "" - -#: admin/post-types/shop_coupon.php:149 -#: admin/post-types/shop_order.php:282 -#@ woocommerce -msgid "Show all statuses" -msgstr "" - -#: admin/post-types/shop_order.php:45 -#@ woocommerce -msgid "Billing" -msgstr "" - -#: admin/post-types/shop_order.php:49 -#@ woocommerce -msgid "Customer Notes" -msgstr "" - -#: admin/post-types/shop_order.php:51 -#: admin/post-types/writepanels/writepanel-order_data.php:386 -#: admin/post-types/writepanels/writepanel-order_data.php:433 -#@ woocommerce -msgid "Actions" -msgstr "" - -#: admin/post-types/shop_order.php:98 -#@ woocommerce -msgid "made by" -msgstr "" - -#: admin/post-types/shop_order.php:114 -#: admin/post-types/shop_order.php:123 -#@ woocommerce -msgid "Via" -msgstr "" - -#: admin/post-types/shop_order.php:131 -#@ woocommerce -msgid "Unpublished" -msgstr "" - -#: admin/post-types/shop_order.php:133 -#@ woocommerce -msgid "Y/m/d g:i:s A" -msgstr "" - -#: admin/post-types/shop_order.php:139 -#, php-format -#@ woocommerce -msgid "%s ago" -msgstr "" - -#: admin/post-types/shop_order.php:141 -#@ woocommerce -msgid "Y/m/d" -msgstr "" - -#: admin/post-types/shop_order.php:158 -#: admin/woocommerce-admin-dashboard.php:176 -#@ woocommerce -msgid "Processing" -msgstr "" - -#: admin/post-types/shop_order.php:165 -#@ woocommerce -msgid "Complete" -msgstr "" - -#: admin/post-types/shop_order.php:301 -#: admin/post-types/shop_order.php:326 -#@ woocommerce -msgid "Show all customers" -msgstr "" - -#: admin/post-types/writepanels/order-download-permission-html.php:6 -#@ woocommerce -msgid "Revoke Access" -msgstr "" - -#: admin/post-types/writepanels/order-download-permission-html.php:7 -#: admin/post-types/writepanels/variation-admin-html.php:7 -#: admin/post-types/writepanels/writepanel-product_data.php:365 -#: admin/post-types/writepanels/writepanel-product_data.php:444 -#: admin/woocommerce-admin-init.php:452 -#@ woocommerce -msgid "Click to toggle" -msgstr "" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -#, php-format -#@ woocommerce -msgid "File %d: %s" -msgstr "" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -#, php-format -#@ woocommerce -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: admin/post-types/writepanels/order-download-permission-html.php:16 -#@ woocommerce -msgid "Downloads Remaining" -msgstr "" - -#: admin/post-types/writepanels/order-download-permission-html.php:19 -#: admin/post-types/writepanels/variation-admin-html.php:143 -#: admin/post-types/writepanels/variation-admin-html.php:151 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -#@ woocommerce -msgid "Unlimited" -msgstr "" - -#: admin/post-types/writepanels/order-download-permission-html.php:22 -#@ woocommerce -msgid "Access Expires" -msgstr "" - -#: admin/post-types/writepanels/order-download-permission-html.php:23 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -#@ woocommerce -msgid "Never" -msgstr "" - -#: admin/post-types/writepanels/order-fee-html.php:10 -#@ woocommerce -msgid "Fee Name" -msgstr "" - -#: admin/post-types/writepanels/order-fee-html.php:17 -#: admin/post-types/writepanels/order-item-html.php:84 -#@ woocommerce -msgid "Tax class" -msgstr "" - -#: admin/post-types/writepanels/order-item-html.php:9 -#@ woocommerce -msgid "Product ID:" -msgstr "" - -#: admin/post-types/writepanels/order-item-html.php:12 -#@ woocommerce -msgid "Variation ID:" -msgstr "" - -#: admin/post-types/writepanels/order-item-html.php:15 -#@ woocommerce -msgid "Product SKU:" -msgstr "" - -#: admin/post-types/writepanels/order-item-html.php:33 -#@ woocommerce -msgid "Add meta" -msgstr "" - -#: admin/post-types/writepanels/order-tax-html.php:6 -#@ woocommerce -msgid "Tax Rate:" -msgstr "" - -#: admin/post-types/writepanels/order-tax-html.php:16 -#: admin/post-types/writepanels/writepanel-order_data.php:627 -#@ woocommerce -msgid "Sales Tax:" -msgstr "" - -#: admin/post-types/writepanels/order-tax-html.php:20 -#: admin/post-types/writepanels/writepanel-order_data.php:635 -#@ woocommerce -msgid "Shipping Tax:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:6 -#: admin/post-types/writepanels/writepanel-product_data.php:364 -#: admin/post-types/writepanels/writepanel-product_data.php:443 -#: admin/woocommerce-admin-init.php:451 -#@ woocommerce -msgid "Remove" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:20 -#@ woocommerce -msgid "Any" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:46 -#@ woocommerce -msgid "Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:57 -#@ woocommerce -msgid "Stock Qty:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:57 -#@ woocommerce -msgid "Enter a quantity to enable stock management at variation level, or leave blank to use the parent product's options." -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:66 -#@ woocommerce -msgid "Regular Price:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:67 -#@ woocommerce -msgid "Variation price (required)" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:70 -#@ woocommerce -msgid "Sale Price:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:70 -#: admin/post-types/writepanels/writepanel-product_data.php:125 -#@ woocommerce -msgid "Schedule" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:70 -#@ woocommerce -msgid "Cancel schedule" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:77 -#@ woocommerce -msgid "Sale start date:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:78 -#: admin/post-types/writepanels/writepanel-product_data.php:136 -#@ woocommerce -msgctxt "placeholder" -msgid "From…" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:81 -#@ woocommerce -msgid "Sale end date:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:82 -#: admin/post-types/writepanels/writepanel-product_data.php:137 -#@ woocommerce -msgctxt "placeholder" -msgid "To…" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:90 -#@ woocommerce -msgid "Enter a weight for this variation or leave blank to use the parent product weight." -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:98 -#@ woocommerce -msgid "Dimensions (L×W×H)" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:109 -#@ woocommerce -msgid "Shipping class:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:124 -#@ woocommerce -msgid "Tax class:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:135 -#@ woocommerce -msgid "File paths:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:135 -#@ woocommerce -msgid "Enter one or more File Paths, one per line, to make this variation a downloadable product, or leave blank." -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:136 -#: admin/post-types/writepanels/writepanel-product_data.php:153 -#@ woocommerce -msgid "File paths/URLs, one per line" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:137 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -#@ woocommerce -msgid "Choose a file" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:137 -#@ woocommerce -msgid "Upload" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:137 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -#@ woocommerce -msgid "Insert file URL" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:142 -#@ woocommerce -msgid "Download Limit:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:142 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -#@ woocommerce -msgid "Leave blank for unlimited re-downloads." -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:150 -#@ woocommerce -msgid "Download Expiry:" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:150 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -#@ woocommerce -msgid "Enter the number of days before a download link expires, or leave blank." -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:164 -#@ woocommerce -msgid "Enabled" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:166 -#@ woocommerce -msgid "Enable this option if access is given to a downloadable file upon purchase of a product" -msgstr "" - -#: admin/post-types/writepanels/variation-admin-html.php:168 -#@ woocommerce -msgid "Enable this option if a product is not shipped or there is no shipping cost" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -#@ woocommerce -msgid "Coupon description" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -#@ woocommerce -msgid "Optionally enter a description for this coupon for your reference." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:42 -#@ woocommerce -msgid "Discount type" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -#@ woocommerce -msgid "Enter an amount or percentage e.g. 2.99 or 15%" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -#@ woocommerce -msgid "Enable free shipping" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -#, php-format -#@ woocommerce -msgid "Check this box if the coupon grants free shipping. The free shipping method must be enabled with the \"must use coupon\" setting checked." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -#@ woocommerce -msgid "Individual use" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -#@ woocommerce -msgid "Check this box if the coupon cannot be used in conjunction with other coupons." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -#@ woocommerce -msgid "Apply before tax" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -#@ woocommerce -msgid "Check this box if the coupon should be applied before calculating cart tax." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -#@ woocommerce -msgid "Exclude sale items" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -#@ woocommerce -msgid "Check this box if the coupon should not apply to items on sale. Per-item coupons will only work if the item is not on sale. Per-cart coupons will only work if there are no sale items in the cart." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -#@ woocommerce -msgid "Minimum amount" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -#@ woocommerce -msgid "No minimum" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -#@ woocommerce -msgid "This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:75 -#: admin/post-types/writepanels/writepanel-order_data.php:400 -#: admin/post-types/writepanels/writepanel-product_data.php:504 -#: admin/post-types/writepanels/writepanel-product_data.php:521 -#: admin/woocommerce-admin-reports.php:1229 -#@ woocommerce -msgid "Search for a product…" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:89 -#@ woocommerce -msgid "Products which need to be in the cart to use this coupon or, for \"Product Discounts\", which products are discounted." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:94 -#@ woocommerce -msgid "Exclude products" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:95 -#@ woocommerce -msgid "Search for a product…" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:109 -#@ woocommerce -msgid "Products which must not be in the cart to use this coupon or, for \"Product Discounts\", which products are not discounted." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:117 -#@ woocommerce -msgid "Any category" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:125 -#@ woocommerce -msgid "A product must be in this category for the coupon to remain valid or, for \"Product Discounts\", products in these categories will be discounted." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:130 -#@ woocommerce -msgid "Exclude categories" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:131 -#@ woocommerce -msgid "No categories" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:139 -#@ woocommerce -msgid "Product must not be in this category for the coupon to remain valid or, for \"Product Discounts\", products in these categories will not be discounted." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -#@ woocommerce -msgid "Customer emails" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -#@ woocommerce -msgid "Any customer" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -#@ woocommerce -msgid "Comma separate email addresses to restrict this coupon to specific billing and user emails." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -#@ woocommerce -msgid "Usage limit" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -#@ woocommerce -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -#@ woocommerce -msgid "How many times this coupon can be used before it is void." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -#@ woocommerce -msgctxt "placeholder" -msgid "Never expire" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -#@ woocommerce -msgid "The date this coupon will expire, YYYY-MM-DD." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:195 -#@ woocommerce -msgid "Coupon code already exists - customers will use the latest coupon with this code." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:62 -#@ woocommerce -msgid "Order number" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:67 -#@ woocommerce -msgid "Customer IP:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:74 -#@ woocommerce -msgid "General Details" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:76 -#@ woocommerce -msgid "Order status:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:86 -#@ woocommerce -msgid "Order Date:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#@ woocommerce -msgid "h" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#: admin/settings/settings-init.php:577 -#@ woocommerce -msgid "m" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:91 -#@ woocommerce -msgid "Customer:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:131 -#@ woocommerce -msgid "Customer Note:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:132 -#@ woocommerce -msgid "Customer's notes about the order" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#@ woocommerce -msgid "Billing Details" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:152 -#: admin/post-types/writepanels/writepanel-order_data.php:242 -#: admin/woocommerce-admin-users.php:155 -#: admin/woocommerce-admin-users.php:204 -#@ woocommerce -msgid "Company" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:156 -#: admin/post-types/writepanels/writepanel-order_data.php:246 -#: admin/woocommerce-admin-users.php:159 -#: admin/woocommerce-admin-users.php:208 -#@ woocommerce -msgid "Address 1" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:160 -#: admin/post-types/writepanels/writepanel-order_data.php:250 -#: admin/woocommerce-admin-users.php:163 -#: admin/woocommerce-admin-users.php:212 -#@ woocommerce -msgid "Address 2" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:164 -#: admin/post-types/writepanels/writepanel-order_data.php:254 -#: admin/settings/settings-tax-rates.php:42 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-users.php:167 -#: admin/woocommerce-admin-users.php:216 -#@ woocommerce -msgid "City" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:178 -#: admin/post-types/writepanels/writepanel-order_data.php:268 -#: admin/woocommerce-admin-users.php:175 -#: admin/woocommerce-admin-users.php:224 -#@ woocommerce -msgid "State/County" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#@ woocommerce -msgid "No billing address set." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:208 -#@ woocommerce -msgid "Load billing address" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#@ woocommerce -msgid "Shipping Details" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:279 -#@ woocommerce -msgid "No shipping address set." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -#@ woocommerce -msgid "Load shipping address" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -#@ woocommerce -msgid "Copy from billing" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:339 -#@ woocommerce -msgid "Item" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#: admin/post-types/writepanels/writepanel-product_data.php:191 -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Tax Class" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#@ woocommerce -msgid "Tax class for the line item" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -#@ woocommerce -msgid "Line subtotals are before pre-tax discounts, totals are after." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:388 -#@ woocommerce -msgid "Delete Lines" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:390 -#@ woocommerce -msgid "Stock Actions" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:391 -#@ woocommerce -msgid "Reduce Line Stock" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:392 -#@ woocommerce -msgid "Increase Line Stock" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:396 -#: admin/post-types/writepanels/writepanel-order_data.php:456 -#@ woocommerce -msgid "Apply" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:402 -#@ woocommerce -msgid "Add item(s)" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:403 -#@ woocommerce -msgid "Add fee" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:434 -#@ woocommerce -msgid "Resend order emails" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:465 -#@ woocommerce -msgid "Move to Trash" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -#@ woocommerce -msgid "Save Order" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -#@ woocommerce -msgid "Save/update the order" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:495 -#@ woocommerce -msgid "Discounts" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:499 -#@ woocommerce -msgid "Discounts before tax - calculated by comparing subtotals to totals." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:507 -#@ woocommerce -msgid "Discounts after tax - user defined." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:540 -#@ woocommerce -msgid "Label:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:541 -#@ woocommerce -msgid "The shipping title the customer sees" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:548 -#@ woocommerce -msgid "Cost:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:556 -#@ woocommerce -msgid "Method:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:578 -#: admin/post-types/writepanels/writepanel-order_data.php:580 -#: admin/post-types/writepanels/writepanel-order_data.php:679 -#: admin/post-types/writepanels/writepanel-order_data.php:681 -#@ woocommerce -msgid "Other" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:594 -#@ woocommerce -msgid "Tax Rows" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:619 -#@ woocommerce -msgid "+ Add tax row" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:619 -#@ woocommerce -msgid "These rows contain taxes for this order. This allows you to display multiple or compound taxes rather than a single total." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:623 -#@ woocommerce -msgid "Tax Totals" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:627 -#@ woocommerce -msgid "Total tax for line items + fees." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:649 -#: admin/post-types/writepanels/writepanels-init.php:70 -#@ woocommerce -msgid "Order Totals" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:661 -#@ woocommerce -msgid "Payment Method:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:692 -#@ woocommerce -msgid "Calc taxes" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:694 -#@ woocommerce -msgid "Calc totals" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:57 -#@ woocommerce -msgid "Choose a downloadable product…" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:87 -#@ woocommerce -msgid "Grant Access" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:125 -#@ woocommerce -msgid "Could not grant access - the user may already have permission for this file or billing email is not set. Ensure the billing email is set, and the order has been saved." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:148 -#@ woocommerce -msgid "Are you sure you want to revoke access to this download?" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -#, php-format -#@ woocommerce -msgid "added %s ago" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_notes.php:50 -#@ woocommerce -msgid "There are no notes for this order yet." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -#@ woocommerce -msgid "Add note" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -#@ woocommerce -msgid "Add a note for your reference, or add a customer note (the user will be notified)." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_notes.php:63 -#@ woocommerce -msgid "Private note" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_notes.php:65 -#: admin/post-types/writepanels/writepanel-product_data.php:482 -#@ woocommerce -msgid "Add" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -#@ woocommerce -msgid "Variations for variable products are defined here." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:65 -#@ woocommerce -msgid "Before adding variations, add and save some attributes on the Attributes tab." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:67 -#@ woocommerce -msgid "Learn more" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -#@ woocommerce -msgid "Close all" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -#@ woocommerce -msgid "Expand all" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:75 -#@ woocommerce -msgid "Bulk edit:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:77 -#@ woocommerce -msgid "Toggle "Enabled"" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:78 -#@ woocommerce -msgid "Toggle "Downloadable"" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:79 -#@ woocommerce -msgid "Toggle "Virtual"" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:80 -#@ woocommerce -msgid "Delete all variations" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:81 -#@ woocommerce -msgid "Prices" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:82 -#@ woocommerce -msgid "Sale prices" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:88 -#@ woocommerce -msgid "File Path" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:89 -#@ woocommerce -msgid "Download limit" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:90 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -#@ woocommerce -msgid "Download Expiry" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:93 -#@ woocommerce -msgid "Go" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:195 -#@ woocommerce -msgid "Link all variations" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:197 -#@ woocommerce -msgid "Default selections:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:210 -#@ woocommerce -msgid "No default" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:293 -#@ woocommerce -msgid "Are you sure you want to link all variations? This will create a new variation for each and every possible combination of variation attributes (max 50 per run)." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:310 -#@ woocommerce -msgid "variation added" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:312 -#@ woocommerce -msgid "variations added" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:314 -#@ woocommerce -msgid "No variations added" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:337 -#@ woocommerce -msgid "Are you sure you want to remove this variation?" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:393 -#@ woocommerce -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:396 -#@ woocommerce -msgid "Last warning, are you sure?" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:433 -#@ woocommerce -msgid "Enter a value" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:511 -#: admin/woocommerce-admin-taxonomies.php:62 -#: admin/woocommerce-admin-taxonomies.php:154 -#@ woocommerce -msgid "Choose an image" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:513 -#@ woocommerce -msgid "Set variation image" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:557 -#@ woocommerce -msgid "Variable product" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:43 -#@ woocommerce -msgid "Product Type" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:53 -#@ woocommerce -msgid "Virtual products are intangible and aren't shipped." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:59 -#@ woocommerce -msgid "Downloadable products give access to a file upon purchase." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:77 -#: admin/woocommerce-admin-content.php:44 -#: admin/woocommerce-admin-settings.php:180 -#@ woocommerce -msgid "General" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:79 -#: admin/woocommerce-admin-content.php:47 -#: admin/woocommerce-admin-settings.php:183 -#@ woocommerce -msgid "Inventory" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:83 -#@ woocommerce -msgid "Linked Products" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:85 -#: admin/woocommerce-admin-attributes.php:298 -#: admin/woocommerce-admin-init.php:66 -#@ woocommerce -msgid "Attributes" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:87 -#@ woocommerce -msgid "Advanced" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#@ woocommerce -msgid "Stock Keeping Unit" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#@ woocommerce -msgid "SKU refers to a Stock-keeping unit, a unique identifier for each distinct product and service that can be purchased." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -#@ woocommerce -msgid "Product URL" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -#@ woocommerce -msgid "Enter the external URL to the product." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -#@ woocommerce -msgid "Button text" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -#@ woocommerce -msgctxt "placeholder" -msgid "Buy product" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -#@ woocommerce -msgid "This text will be shown on the button linking to the external product." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:119 -#@ woocommerce -msgid "Regular Price" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:125 -#@ woocommerce -msgid "Sale Price" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:135 -#@ woocommerce -msgid "Sale Price Dates" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:152 -#@ woocommerce -msgid "File paths (one per line)" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:158 -#@ woocommerce -msgid "Download Limit" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:180 -#@ woocommerce -msgid "Shipping only" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:212 -#@ woocommerce -msgid "Enable stock management at product level" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:219 -#@ woocommerce -msgid "Stock quantity. If this is a variable product this value will be used to control stock for all variations, unless you define stock at variation level." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:230 -#@ woocommerce -msgid "Stock status" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:233 -#@ woocommerce -msgid "Controls whether or not the product is listed as \"in stock\" or \"out of stock\" on the frontend." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:240 -#@ woocommerce -msgid "Allow Backorders?" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:241 -#@ woocommerce -msgid "Do not allow" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:242 -#@ woocommerce -msgid "Allow, but notify customer" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:243 -#@ woocommerce -msgid "Allow" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:244 -#@ woocommerce -msgid "If managing stock, this controls whether or not backorders are allowed for this product and variations. If enabled, stock quantity can go below 0." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -#@ woocommerce -msgid "Sold Individually" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -#@ woocommerce -msgid "Enable this to only allow one of this item to be bought in a single order" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:273 -#@ woocommerce -msgid "Weight in decimal form" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:290 -#@ woocommerce -msgid "LxWxH in decimal form" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:311 -#@ woocommerce -msgid "No shipping class" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -#@ woocommerce -msgid "Shipping class" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -#@ woocommerce -msgid "Shipping classes are used by certain shipping methods to group similar products." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:380 -#: admin/post-types/writepanels/writepanel-product_data.php:457 -#: admin/woocommerce-admin-init.php:453 -#@ woocommerce -msgid "Value(s)" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:382 -#@ woocommerce -msgid "Select terms" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:394 -#@ woocommerce -msgid "Select all" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:394 -#@ woocommerce -msgid "Select none" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:396 -#@ woocommerce -msgid "Add new" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:409 -#@ woocommerce -msgid "Pipe separate terms" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:416 -#: admin/post-types/writepanels/writepanel-product_data.php:463 -#: admin/woocommerce-admin-init.php:455 -#@ woocommerce -msgid "Visible on the product page" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:422 -#: admin/post-types/writepanels/writepanel-product_data.php:469 -#: admin/woocommerce-admin-init.php:456 -#@ woocommerce -msgid "Used for variations" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:458 -#: admin/woocommerce-admin-init.php:454 -#@ woocommerce -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:484 -#@ woocommerce -msgid "Custom product attribute" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:496 -#@ woocommerce -msgid "Save attributes" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:503 -#@ woocommerce -msgid "Up-Sells" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:518 -#@ woocommerce -msgid "Up-sells are products which you recommend instead of the currently viewed product, for example, products that are more profitable or better quality or more expensive." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:520 -#@ woocommerce -msgid "Cross-Sells" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:535 -#@ woocommerce -msgid "Cross-sells are products which you promote in the cart, based on the current product." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:545 -#@ woocommerce -msgid "Choose a grouped product…" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:571 -#@ woocommerce -msgid "Grouping" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:571 -#@ woocommerce -msgid "Set this option to make this product part of a grouped product." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:591 -#@ woocommerce -msgid "Purchase Note" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:591 -#@ woocommerce -msgid "Enter an optional note to send the customer after purchase." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:598 -#@ woocommerce -msgid "Menu order" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:598 -#@ woocommerce -msgid "Custom ordering position." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:606 -#@ woocommerce -msgid "Enable reviews" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:695 -#@ woocommerce -msgid "Product SKU must be unique." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:1028 -#@ woocommerce -msgid "Catalog/search" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:1035 -#@ woocommerce -msgid "Catalog visibility:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:1051 -#@ woocommerce -msgid "Define the loops this product should be visible in. The product will still be accessible directly." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:1057 -#@ woocommerce -msgid "Enable this option to feature this product." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:1059 -#@ woocommerce -msgid "Featured Product" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:1063 -#@ woocommerce -msgid "OK" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -#@ woocommerce -msgid "Delete image" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -#: admin/woocommerce-admin-attributes.php:322 -#@ woocommerce -msgid "Delete" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_images.php:53 -#@ woocommerce -msgid "Add product gallery images" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_images.php:79 -#@ woocommerce -msgid "Add Images to Product Gallery" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_images.php:81 -#@ woocommerce -msgid "Add to gallery" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:47 -#@ woocommerce -msgid "Product Gallery" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:55 -#@ woocommerce -msgid "Product Short Description" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:68 -#@ woocommerce -msgid "Order Data" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:69 -#@ woocommerce -msgid "Order Items" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:69 -#@ woocommerce -msgid "Note: if you edit quantities or remove items from the order you will need to manually update stock levels." -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:72 -#@ woocommerce -msgid "Downloadable Product Permissions" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:72 -#@ woocommerce -msgid "Note: Permissions for order items will automatically be granted when the order status changes to processing/completed." -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:73 -#@ woocommerce -msgid "Order Actions" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:81 -#@ woocommerce -msgid "Coupon Data" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:101 -#@ woocommerce -msgid "Product name" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:185 -#@ woocommerce -msgid "Allow reviews." -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:186 -#, php-format -#@ default -msgid "Allow trackbacks and pingbacks on this page." -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:186 -#@ default -msgid "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:23 -#@ woocommerce -msgid "Styles" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:43 -#@ woocommerce -msgid "Primary" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:43 -#@ woocommerce -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:44 -#@ woocommerce -msgid "Secondary" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:44 -#@ woocommerce -msgid "Buttons and tabs" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:45 -#@ woocommerce -msgid "Highlight" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:45 -#@ woocommerce -msgid "Price labels and Sale Flashes" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:46 -#@ woocommerce -msgid "Content" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:46 -#@ woocommerce -msgid "Your themes page background - used for tab active states" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:47 -#@ woocommerce -msgid "Subtext" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:47 -#@ woocommerce -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "" - -#: admin/settings/settings-frontend-styles.php:51 -#@ woocommerce -msgid "To edit colours woocommerce/assets/css/woocommerce-base.less and woocommerce.css need to be writable. See the Codex for more information." -msgstr "" - -#: admin/settings/settings-init.php:18 -#@ woocommerce -msgid "Localisation" -msgstr "" - -#: admin/settings/settings-init.php:19 -#, php-format -#@ woocommerce -msgid "Use informal localisation for %s" -msgstr "" - -#: admin/settings/settings-init.php:33 -#@ woocommerce -msgid "General Options" -msgstr "" - -#: admin/settings/settings-init.php:36 -#@ woocommerce -msgid "Base Location" -msgstr "" - -#: admin/settings/settings-init.php:37 -#@ woocommerce -msgid "This is the base location for your business. Tax rates will be based on this country." -msgstr "" - -#: admin/settings/settings-init.php:46 -#@ woocommerce -msgid "Currency" -msgstr "" - -#: admin/settings/settings-init.php:47 -#@ woocommerce -msgid "This controls what currency prices are listed at in the catalog and which currency gateways will take payments in." -msgstr "" - -#: admin/settings/settings-init.php:58 -#@ woocommerce -msgid "Allowed Countries" -msgstr "" - -#: admin/settings/settings-init.php:59 -#@ woocommerce -msgid "These are countries that you are willing to ship to." -msgstr "" - -#: admin/settings/settings-init.php:67 -#@ woocommerce -msgid "All Countries" -msgstr "" - -#: admin/settings/settings-init.php:84 -#@ woocommerce -msgid "Store Notice" -msgstr "" - -#: admin/settings/settings-init.php:85 -#@ woocommerce -msgid "Enable site-wide store notice text" -msgstr "" - -#: admin/settings/settings-init.php:92 -#@ woocommerce -msgid "Store Notice Text" -msgstr "" - -#: admin/settings/settings-init.php:102 -#@ woocommerce -msgid "Cart, Checkout and Accounts" -msgstr "" - -#: admin/settings/settings-init.php:106 -#@ woocommerce -msgid "Enable the use of coupons" -msgstr "" - -#: admin/settings/settings-init.php:110 -#@ woocommerce -msgid "Coupons can be applied from the cart and checkout pages." -msgstr "" - -#: admin/settings/settings-init.php:115 -#@ woocommerce -msgid "Enable guest checkout (no account required)" -msgstr "" - -#: admin/settings/settings-init.php:123 -#@ woocommerce -msgid "Enable customer note field on checkout" -msgstr "" - -#: admin/settings/settings-init.php:131 -#@ woocommerce -msgid "Force secure checkout" -msgstr "" - -#: admin/settings/settings-init.php:137 -#@ woocommerce -msgid "Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -msgstr "" - -#: admin/settings/settings-init.php:141 -#@ woocommerce -msgid "Un-force HTTPS when leaving the checkout" -msgstr "" - -#: admin/settings/settings-init.php:150 -#@ woocommerce -msgid "Registration" -msgstr "" - -#: admin/settings/settings-init.php:151 -#@ woocommerce -msgid "Allow registration on the checkout page" -msgstr "" - -#: admin/settings/settings-init.php:159 -#@ woocommerce -msgid "Allow registration on the \"My Account\" page" -msgstr "" - -#: admin/settings/settings-init.php:167 -#@ woocommerce -msgid "Register using the email address for the username" -msgstr "" - -#: admin/settings/settings-init.php:175 -#@ woocommerce -msgid "Customer Accounts" -msgstr "" - -#: admin/settings/settings-init.php:176 -#@ woocommerce -msgid "Prevent customers from accessing WordPress admin" -msgstr "" - -#: admin/settings/settings-init.php:184 -#@ woocommerce -msgid "Clear cart when logging out" -msgstr "" - -#: admin/settings/settings-init.php:192 -#@ woocommerce -msgid "Allow customers to repurchase orders from their account page" -msgstr "" - -#: admin/settings/settings-init.php:201 -#@ woocommerce -msgid "Styles and Scripts" -msgstr "" - -#: admin/settings/settings-init.php:204 -#@ woocommerce -msgid "Styling" -msgstr "" - -#: admin/settings/settings-init.php:205 -#@ woocommerce -msgid "Enable WooCommerce CSS" -msgstr "" - -#: admin/settings/settings-init.php:216 -#@ woocommerce -msgid "Scripts" -msgstr "" - -#: admin/settings/settings-init.php:217 -#@ woocommerce -msgid "Enable Lightbox" -msgstr "" - -#: admin/settings/settings-init.php:220 -#@ woocommerce -msgid "Include WooCommerce's lightbox. Product gallery images and the add review form will open in a lightbox." -msgstr "" - -#: admin/settings/settings-init.php:226 -#@ woocommerce -msgid "Enable enhanced country select boxes" -msgstr "" - -#: admin/settings/settings-init.php:231 -#@ woocommerce -msgid "This will enable a script allowing the country fields to be searchable." -msgstr "" - -#: admin/settings/settings-init.php:236 -#@ woocommerce -msgid "Downloadable Products" -msgstr "" - -#: admin/settings/settings-init.php:239 -#@ woocommerce -msgid "File Download Method" -msgstr "" - -#: admin/settings/settings-init.php:240 -#@ woocommerce -msgid "Forcing downloads will keep URLs hidden, but some servers may serve large files unreliably. If supported, X-Accel-Redirect/ X-Sendfile can be used to serve downloads instead (server requires mod_xsendfile)." -msgstr "" - -#: admin/settings/settings-init.php:248 -#@ woocommerce -msgid "Force Downloads" -msgstr "" - -#: admin/settings/settings-init.php:249 -#@ woocommerce -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "" - -#: admin/settings/settings-init.php:250 -#@ woocommerce -msgid "Redirect only" -msgstr "" - -#: admin/settings/settings-init.php:255 -#@ woocommerce -msgid "Access Restriction" -msgstr "" - -#: admin/settings/settings-init.php:256 -#@ woocommerce -msgid "Downloads require login" -msgstr "" - -#: admin/settings/settings-init.php:260 -#@ woocommerce -msgid "This setting does not apply to guest purchases." -msgstr "" - -#: admin/settings/settings-init.php:265 -#@ woocommerce -msgid "Grant access to downloadable products after payment" -msgstr "" - -#: admin/settings/settings-init.php:269 -#@ woocommerce -msgid "Enable this option to grant access to downloads when orders are \"processing\", rather than \"completed\"." -msgstr "" - -#: admin/settings/settings-init.php:285 -#@ woocommerce -msgid "Note: The shop page has children - child pages will not work if you enable this option." -msgstr "" - -#: admin/settings/settings-init.php:290 -#@ woocommerce -msgid "Page Setup" -msgstr "" - -#: admin/settings/settings-init.php:292 -#, php-format -#@ woocommerce -msgid "Set up core WooCommerce pages here, for example the base page. The base page can also be used in your %sproduct permalinks%s." -msgstr "" - -#: admin/settings/settings-init.php:297 -#@ woocommerce -msgid "Shop Base Page" -msgstr "" - -#: admin/settings/settings-init.php:298 -#@ woocommerce -msgid "This sets the base page of your shop - this is where your product archive will be." -msgstr "" - -#: admin/settings/settings-init.php:308 -#@ woocommerce -msgid "Base Page Title" -msgstr "" - -#: admin/settings/settings-init.php:309 -#@ woocommerce -msgid "This title to show on the shop base page. Leave blank to use the page title." -msgstr "" - -#: admin/settings/settings-init.php:318 -#@ woocommerce -msgid "Terms Page ID" -msgstr "" - -#: admin/settings/settings-init.php:319 -#@ woocommerce -msgid "If you define a \"Terms\" page the customer will be asked if they accept them when checking out." -msgstr "" - -#: admin/settings/settings-init.php:330 -#@ woocommerce -msgid "Shop Pages" -msgstr "" - -#: admin/settings/settings-init.php:330 -#@ woocommerce -msgid "The following pages need selecting so that WooCommerce knows where they are. These pages should have been created upon installation of the plugin, if not you will need to create them." -msgstr "" - -#: admin/settings/settings-init.php:333 -#@ woocommerce -msgid "Cart Page" -msgstr "" - -#: admin/settings/settings-init.php:334 -#@ woocommerce -msgid "Page contents: [woocommerce_cart]" -msgstr "" - -#: admin/settings/settings-init.php:344 -#@ woocommerce -msgid "Checkout Page" -msgstr "" - -#: admin/settings/settings-init.php:345 -#@ woocommerce -msgid "Page contents: [woocommerce_checkout]" -msgstr "" - -#: admin/settings/settings-init.php:355 -#@ woocommerce -msgid "Pay Page" -msgstr "" - -#: admin/settings/settings-init.php:356 -#@ woocommerce -msgid "Page contents: [woocommerce_pay] Parent: \"Checkout\"" -msgstr "" - -#: admin/settings/settings-init.php:366 -#@ woocommerce -msgid "Thanks Page" -msgstr "" - -#: admin/settings/settings-init.php:367 -#@ woocommerce -msgid "Page contents: [woocommerce_thankyou] Parent: \"Checkout\"" -msgstr "" - -#: admin/settings/settings-init.php:377 -#@ woocommerce -msgid "My Account Page" -msgstr "" - -#: admin/settings/settings-init.php:378 -#@ woocommerce -msgid "Page contents: [woocommerce_my_account]" -msgstr "" - -#: admin/settings/settings-init.php:388 -#@ woocommerce -msgid "Edit Address Page" -msgstr "" - -#: admin/settings/settings-init.php:389 -#@ woocommerce -msgid "Page contents: [woocommerce_edit_address] Parent: \"My Account\"" -msgstr "" - -#: admin/settings/settings-init.php:399 -#@ woocommerce -msgid "View Order Page" -msgstr "" - -#: admin/settings/settings-init.php:400 -#@ woocommerce -msgid "Page contents: [woocommerce_view_order] Parent: \"My Account\"" -msgstr "" - -#: admin/settings/settings-init.php:410 -#@ woocommerce -msgid "Change Password Page" -msgstr "" - -#: admin/settings/settings-init.php:411 -#@ woocommerce -msgid "Page contents: [woocommerce_change_password] Parent: \"My Account\"" -msgstr "" - -#: admin/settings/settings-init.php:421 -#@ woocommerce -msgid "Logout Page" -msgstr "" - -#: admin/settings/settings-init.php:422 -#@ woocommerce -msgid "Parent: \"My Account\"" -msgstr "" - -#: admin/settings/settings-init.php:432 -#@ woocommerce -msgid "Lost Password Page" -msgstr "" - -#: admin/settings/settings-init.php:433 -#@ woocommerce -msgid "Page contents: [woocommerce_lost_password] Parent: \"My Account\"" -msgstr "" - -#: admin/settings/settings-init.php:449 -#@ woocommerce -msgid "Catalog Options" -msgstr "" - -#: admin/settings/settings-init.php:452 -#@ woocommerce -msgid "Default Product Sorting" -msgstr "" - -#: admin/settings/settings-init.php:453 -#@ woocommerce -msgid "This controls the default sort order of the catalog." -msgstr "" - -#: admin/settings/settings-init.php:459 -#@ woocommerce -msgid "Default sorting (custom ordering + name)" -msgstr "" - -#: admin/settings/settings-init.php:460 -#@ woocommerce -msgid "Popularity (sales)" -msgstr "" - -#: admin/settings/settings-init.php:461 -#@ woocommerce -msgid "Average Rating" -msgstr "" - -#: admin/settings/settings-init.php:463 -#@ woocommerce -msgid "Sort by price (asc)" -msgstr "" - -#: admin/settings/settings-init.php:464 -#@ woocommerce -msgid "Sort by price (desc)" -msgstr "" - -#: admin/settings/settings-init.php:470 -#@ woocommerce -msgid "Shop Page Display" -msgstr "" - -#: admin/settings/settings-init.php:471 -#@ woocommerce -msgid "This controls what is shown on the product archive." -msgstr "" - -#: admin/settings/settings-init.php:477 -#: admin/settings/settings-init.php:492 -#@ woocommerce -msgid "Show products" -msgstr "" - -#: admin/settings/settings-init.php:478 -#: admin/settings/settings-init.php:493 -#@ woocommerce -msgid "Show subcategories" -msgstr "" - -#: admin/settings/settings-init.php:479 -#: admin/settings/settings-init.php:494 -#@ woocommerce -msgid "Show both" -msgstr "" - -#: admin/settings/settings-init.php:485 -#@ woocommerce -msgid "Default Category Display" -msgstr "" - -#: admin/settings/settings-init.php:486 -#@ woocommerce -msgid "This controls what is shown on category archives." -msgstr "" - -#: admin/settings/settings-init.php:501 -#@ woocommerce -msgid "Redirect to the cart page after successful addition" -msgstr "" - -#: admin/settings/settings-init.php:509 -#@ woocommerce -msgid "Enable AJAX add to cart buttons on archives" -msgstr "" - -#: admin/settings/settings-init.php:518 -#@ woocommerce -msgid "The following options affect the fields available on the edit product page." -msgstr "" - -#: admin/settings/settings-init.php:521 -#@ woocommerce -msgid "Product Fields" -msgstr "" - -#: admin/settings/settings-init.php:522 -#@ woocommerce -msgid "Enable the SKU field for products" -msgstr "" - -#: admin/settings/settings-init.php:530 -#@ woocommerce -msgid "Enable the weight field for products (some shipping methods may require this)" -msgstr "" - -#: admin/settings/settings-init.php:538 -#@ woocommerce -msgid "Enable the dimension fields for products (some shipping methods may require this)" -msgstr "" - -#: admin/settings/settings-init.php:546 -#@ woocommerce -msgid "Show weight and dimension values on the Additional Information tab" -msgstr "" - -#: admin/settings/settings-init.php:554 -#@ woocommerce -msgid "Weight Unit" -msgstr "" - -#: admin/settings/settings-init.php:555 -#@ woocommerce -msgid "This controls what unit you will define weights in." -msgstr "" - -#: admin/settings/settings-init.php:561 -#@ woocommerce -msgid "kg" -msgstr "" - -#: admin/settings/settings-init.php:562 -#@ woocommerce -msgid "g" -msgstr "" - -#: admin/settings/settings-init.php:563 -#@ woocommerce -msgid "lbs" -msgstr "" - -#: admin/settings/settings-init.php:564 -#@ woocommerce -msgid "oz" -msgstr "" - -#: admin/settings/settings-init.php:570 -#@ woocommerce -msgid "Dimensions Unit" -msgstr "" - -#: admin/settings/settings-init.php:571 -#@ woocommerce -msgid "This controls what unit you will define lengths in." -msgstr "" - -#: admin/settings/settings-init.php:578 -#@ woocommerce -msgid "cm" -msgstr "" - -#: admin/settings/settings-init.php:579 -#@ woocommerce -msgid "mm" -msgstr "" - -#: admin/settings/settings-init.php:580 -#@ woocommerce -msgid "in" -msgstr "" - -#: admin/settings/settings-init.php:581 -#@ woocommerce -msgid "yd" -msgstr "" - -#: admin/settings/settings-init.php:587 -#@ woocommerce -msgid "Product Ratings" -msgstr "" - -#: admin/settings/settings-init.php:588 -#@ woocommerce -msgid "Enable ratings on reviews" -msgstr "" - -#: admin/settings/settings-init.php:597 -#@ woocommerce -msgid "Ratings are required to leave a review" -msgstr "" - -#: admin/settings/settings-init.php:606 -#@ woocommerce -msgid "Show \"verified owner\" label for customer reviews" -msgstr "" - -#: admin/settings/settings-init.php:616 -#@ woocommerce -msgid "Pricing Options" -msgstr "" - -#: admin/settings/settings-init.php:616 -#@ woocommerce -msgid "The following options affect how prices are displayed on the frontend." -msgstr "" - -#: admin/settings/settings-init.php:619 -#@ woocommerce -msgid "Currency Position" -msgstr "" - -#: admin/settings/settings-init.php:620 -#@ woocommerce -msgid "This controls the position of the currency symbol." -msgstr "" - -#: admin/settings/settings-init.php:626 -#@ woocommerce -msgid "Left" -msgstr "" - -#: admin/settings/settings-init.php:627 -#@ woocommerce -msgid "Right" -msgstr "" - -#: admin/settings/settings-init.php:628 -#@ woocommerce -msgid "Left (with space)" -msgstr "" - -#: admin/settings/settings-init.php:629 -#@ woocommerce -msgid "Right (with space)" -msgstr "" - -#: admin/settings/settings-init.php:635 -#@ woocommerce -msgid "Thousand Separator" -msgstr "" - -#: admin/settings/settings-init.php:636 -#@ woocommerce -msgid "This sets the thousand separator of displayed prices." -msgstr "" - -#: admin/settings/settings-init.php:645 -#@ woocommerce -msgid "Decimal Separator" -msgstr "" - -#: admin/settings/settings-init.php:646 -#@ woocommerce -msgid "This sets the decimal separator of displayed prices." -msgstr "" - -#: admin/settings/settings-init.php:655 -#@ woocommerce -msgid "Number of Decimals" -msgstr "" - -#: admin/settings/settings-init.php:656 -#@ woocommerce -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "" - -#: admin/settings/settings-init.php:669 -#@ woocommerce -msgid "Trailing Zeros" -msgstr "" - -#: admin/settings/settings-init.php:670 -#@ woocommerce -msgid "Remove zeros after the decimal point. e.g. $10.00 becomes $10" -msgstr "" - -#: admin/settings/settings-init.php:678 -#@ woocommerce -msgid "Image Options" -msgstr "" - -#: admin/settings/settings-init.php:678 -#, php-format -#@ woocommerce -msgid "These settings affect the actual dimensions of images in your catalog - the display on the front-end will still be affected by CSS styles. After changing these settings you may need to regenerate your thumbnails." -msgstr "" - -#: admin/settings/settings-init.php:681 -#@ woocommerce -msgid "Catalog Images" -msgstr "" - -#: admin/settings/settings-init.php:682 -#@ woocommerce -msgid "This size is usually used in product listings" -msgstr "" - -#: admin/settings/settings-init.php:695 -#@ woocommerce -msgid "Single Product Image" -msgstr "" - -#: admin/settings/settings-init.php:696 -#@ woocommerce -msgid "This is the size used by the main image on the product page." -msgstr "" - -#: admin/settings/settings-init.php:709 -#@ woocommerce -msgid "Product Thumbnails" -msgstr "" - -#: admin/settings/settings-init.php:710 -#@ woocommerce -msgid "This size is usually used for the gallery of images on the product page." -msgstr "" - -#: admin/settings/settings-init.php:729 -#@ woocommerce -msgid "Inventory Options" -msgstr "" - -#: admin/settings/settings-init.php:732 -#@ woocommerce -msgid "Manage Stock" -msgstr "" - -#: admin/settings/settings-init.php:733 -#@ woocommerce -msgid "Enable stock management" -msgstr "" - -#: admin/settings/settings-init.php:740 -#@ woocommerce -msgid "Hold Stock (minutes)" -msgstr "" - -#: admin/settings/settings-init.php:741 -#@ woocommerce -msgid "Hold stock (for unpaid orders) for x minutes. When this limit is reached, the pending order will be cancelled. Leave blank to disable." -msgstr "" - -#: admin/settings/settings-init.php:753 -#@ woocommerce -msgid "Notifications" -msgstr "" - -#: admin/settings/settings-init.php:754 -#@ woocommerce -msgid "Enable low stock notifications" -msgstr "" - -#: admin/settings/settings-init.php:762 -#@ woocommerce -msgid "Enable out of stock notifications" -msgstr "" - -#: admin/settings/settings-init.php:770 -#@ woocommerce -msgid "Notification Recipient" -msgstr "" - -#: admin/settings/settings-init.php:778 -#@ woocommerce -msgid "Low Stock Threshold" -msgstr "" - -#: admin/settings/settings-init.php:791 -#@ woocommerce -msgid "Out Of Stock Threshold" -msgstr "" - -#: admin/settings/settings-init.php:804 -#@ woocommerce -msgid "Out Of Stock Visibility" -msgstr "" - -#: admin/settings/settings-init.php:805 -#@ woocommerce -msgid "Hide out of stock items from the catalog" -msgstr "" - -#: admin/settings/settings-init.php:812 -#@ woocommerce -msgid "Stock Display Format" -msgstr "" - -#: admin/settings/settings-init.php:813 -#@ woocommerce -msgid "This controls how stock is displayed on the frontend." -msgstr "" - -#: admin/settings/settings-init.php:819 -#@ woocommerce -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "" - -#: admin/settings/settings-init.php:820 -#@ woocommerce -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "" - -#: admin/settings/settings-init.php:821 -#@ woocommerce -msgid "Never show stock amount" -msgstr "" - -#: admin/settings/settings-init.php:836 -#@ woocommerce -msgid "Shipping Calculations" -msgstr "" - -#: admin/settings/settings-init.php:837 -#@ woocommerce -msgid "Enable shipping" -msgstr "" - -#: admin/settings/settings-init.php:845 -#@ woocommerce -msgid "Enable the shipping calculator on the cart page" -msgstr "" - -#: admin/settings/settings-init.php:853 -#@ woocommerce -msgid "Hide shipping costs until an address is entered" -msgstr "" - -#: admin/settings/settings-init.php:861 -#@ woocommerce -msgid "Shipping Method Display" -msgstr "" - -#: admin/settings/settings-init.php:862 -#@ woocommerce -msgid "This controls how multiple shipping methods are displayed on the frontend." -msgstr "" - -#: admin/settings/settings-init.php:868 -#@ woocommerce -msgid "Radio buttons" -msgstr "" - -#: admin/settings/settings-init.php:869 -#@ woocommerce -msgid "Select box" -msgstr "" - -#: admin/settings/settings-init.php:875 -#@ woocommerce -msgid "Shipping Destination" -msgstr "" - -#: admin/settings/settings-init.php:876 -#@ woocommerce -msgid "Only ship to the users billing address" -msgstr "" - -#: admin/settings/settings-init.php:884 -#@ woocommerce -msgid "Ship to billing address by default" -msgstr "" - -#: admin/settings/settings-init.php:892 -#@ woocommerce -msgid "Collect shipping address even when not required" -msgstr "" - -#: admin/settings/settings-init.php:910 -#: admin/woocommerce-admin-settings.php:186 -#: admin/woocommerce-admin-settings.php:327 -#@ woocommerce -msgid "Payment Gateways" -msgstr "" - -#: admin/settings/settings-init.php:910 -#@ woocommerce -msgid "Installed payment gateways are displayed below. Drag and drop payment gateways to control their display order on the checkout." -msgstr "" - -#: admin/settings/settings-init.php:928 -#: admin/woocommerce-admin-settings.php:220 -#@ woocommerce -msgid "Tax Options" -msgstr "" - -#: admin/settings/settings-init.php:931 -#@ woocommerce -msgid "Enable Taxes" -msgstr "" - -#: admin/settings/settings-init.php:932 -#@ woocommerce -msgid "Enable taxes and tax calculations" -msgstr "" - -#: admin/settings/settings-init.php:939 -#@ woocommerce -msgid "Prices Entered With Tax" -msgstr "" - -#: admin/settings/settings-init.php:943 -#@ woocommerce -msgid "This option is important as it will affect how you input prices. Changing it will not update existing products." -msgstr "" - -#: admin/settings/settings-init.php:945 -#@ woocommerce -msgid "Yes, I will enter prices inclusive of tax" -msgstr "" - -#: admin/settings/settings-init.php:946 -#@ woocommerce -msgid "No, I will enter prices exclusive of tax" -msgstr "" - -#: admin/settings/settings-init.php:951 -#@ woocommerce -msgid "Calculate Tax Based On:" -msgstr "" - -#: admin/settings/settings-init.php:953 -#@ woocommerce -msgid "This option determines which address is used to calculate tax." -msgstr "" - -#: admin/settings/settings-init.php:957 -#@ woocommerce -msgid "Customer shipping address" -msgstr "" - -#: admin/settings/settings-init.php:958 -#@ woocommerce -msgid "Customer billing address" -msgstr "" - -#: admin/settings/settings-init.php:959 -#: admin/settings/settings-init.php:971 -#@ woocommerce -msgid "Shop base address" -msgstr "" - -#: admin/settings/settings-init.php:964 -#@ woocommerce -msgid "Default Customer Address:" -msgstr "" - -#: admin/settings/settings-init.php:966 -#@ woocommerce -msgid "This option determines the customers default address (before they input their own)." -msgstr "" - -#: admin/settings/settings-init.php:970 -#@ woocommerce -msgid "No address" -msgstr "" - -#: admin/settings/settings-init.php:976 -#@ woocommerce -msgid "Shipping Tax Class:" -msgstr "" - -#: admin/settings/settings-init.php:977 -#@ woocommerce -msgid "Optionally control which tax class shipping gets, or leave it so shipping tax is based on the cart items themselves." -msgstr "" - -#: admin/settings/settings-init.php:982 -#@ woocommerce -msgid "Shipping tax class based on cart items" -msgstr "" - -#: admin/settings/settings-init.php:987 -#@ woocommerce -msgid "Rounding" -msgstr "" - -#: admin/settings/settings-init.php:988 -#@ woocommerce -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "" - -#: admin/settings/settings-init.php:995 -#@ woocommerce -msgid "Additional Tax Classes" -msgstr "" - -#: admin/settings/settings-init.php:996 -#@ woocommerce -msgid "List additonal tax classes below (1 per line). This is in addition to the default Standard Rate. Tax classes can be assigned to products." -msgstr "" - -#: admin/settings/settings-init.php:1000 -#, php-format -#@ woocommerce -msgid "Reduced Rate%sZero Rate" -msgstr "" - -#: admin/settings/settings-init.php:1004 -#@ woocommerce -msgid "Display prices during cart/checkout:" -msgstr "" - -#: admin/settings/settings-init.php:1009 -#@ woocommerce -msgid "Including tax" -msgstr "" - -#: admin/settings/settings-init.php:1010 -#@ woocommerce -msgid "Excluding tax" -msgstr "" - -#: admin/settings/settings-init.php:1022 -#@ woocommerce -msgid "Email Sender Options" -msgstr "" - -#: admin/settings/settings-init.php:1022 -#@ woocommerce -msgid "The following options affect the sender (email address and name) used in WooCommerce emails." -msgstr "" - -#: admin/settings/settings-init.php:1025 -#@ woocommerce -msgid "\"From\" Name" -msgstr "" - -#: admin/settings/settings-init.php:1034 -#@ woocommerce -msgid "\"From\" Email Address" -msgstr "" - -#: admin/settings/settings-init.php:1047 -#@ woocommerce -msgid "Email Template" -msgstr "" - -#: admin/settings/settings-init.php:1047 -#, php-format -#@ woocommerce -msgid "This section lets you customise the WooCommerce emails. Click here to preview your email template. For more advanced control copy woocommerce/templates/emails/ to yourtheme/woocommerce/emails/." -msgstr "" - -#: admin/settings/settings-init.php:1050 -#@ woocommerce -msgid "Header Image" -msgstr "" - -#: admin/settings/settings-init.php:1051 -#, php-format -#@ woocommerce -msgid "Enter a URL to an image you want to show in the email's header. Upload your image using the media uploader." -msgstr "" - -#: admin/settings/settings-init.php:1059 -#@ woocommerce -msgid "Email Footer Text" -msgstr "" - -#: admin/settings/settings-init.php:1060 -#@ woocommerce -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "" - -#: admin/settings/settings-init.php:1064 -#@ woocommerce -msgid "Powered by WooCommerce" -msgstr "" - -#: admin/settings/settings-init.php:1068 -#@ woocommerce -msgid "Base Colour" -msgstr "" - -#: admin/settings/settings-init.php:1069 -#@ woocommerce -msgid "The base colour for WooCommerce email templates. Default #557da1." -msgstr "" - -#: admin/settings/settings-init.php:1077 -#@ woocommerce -msgid "Background Colour" -msgstr "" - -#: admin/settings/settings-init.php:1078 -#@ woocommerce -msgid "The background colour for WooCommerce email templates. Default #f5f5f5." -msgstr "" - -#: admin/settings/settings-init.php:1086 -#@ woocommerce -msgid "Email Body Background Colour" -msgstr "" - -#: admin/settings/settings-init.php:1087 -#@ woocommerce -msgid "The main body background colour. Default #fdfdfd." -msgstr "" - -#: admin/settings/settings-init.php:1095 -#@ woocommerce -msgid "Email Body Text Colour" -msgstr "" - -#: admin/settings/settings-init.php:1096 -#@ woocommerce -msgid "The main body text colour. Default #505050." -msgstr "" - -#: admin/settings/settings-payment-gateways.php:27 -#: admin/settings/settings-shipping-methods.php:29 -#: admin/woocommerce-admin-init.php:767 -#: admin/woocommerce-admin-taxonomies.php:27 -#: admin/woocommerce-admin-taxonomies.php:121 -#@ woocommerce -#@ default -msgid "Default" -msgstr "" - -#: admin/settings/settings-payment-gateways.php:28 -#@ woocommerce -msgid "Gateway" -msgstr "" - -#: admin/settings/settings-payment-gateways.php:45 -#@ woocommerce -msgid "Gateway ID" -msgstr "" - -#: admin/settings/settings-shipping-methods.php:23 -#@ woocommerce -msgid "Shipping Methods" -msgstr "" - -#: admin/settings/settings-shipping-methods.php:25 -#@ woocommerce -msgid "Drag and drop methods to control their display order." -msgstr "" - -#: admin/settings/settings-shipping-methods.php:30 -#@ woocommerce -msgid "Shipping Method" -msgstr "" - -#: admin/settings/settings-shipping-methods.php:46 -#@ woocommerce -msgid "Method ID" -msgstr "" - -#: admin/settings/settings-tax-rates.php:29 -#, php-format -#@ woocommerce -msgid "Tax Rates for the \"%s\" Class" -msgstr "" - -#: admin/settings/settings-tax-rates.php:30 -#, php-format -#@ woocommerce -msgid "Define tax rates for countries and states below. See here for available alpha-2 country codes." -msgstr "" - -#: admin/settings/settings-tax-rates.php:36 -#@ woocommerce -msgid "Country Code" -msgstr "" - -#: admin/settings/settings-tax-rates.php:36 -#@ woocommerce -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "" - -#: admin/settings/settings-tax-rates.php:38 -#@ woocommerce -msgid "State Code" -msgstr "" - -#: admin/settings/settings-tax-rates.php:38 -#@ woocommerce -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "" - -#: admin/settings/settings-tax-rates.php:40 -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "ZIP/Postcode" -msgstr "" - -#: admin/settings/settings-tax-rates.php:40 -#@ woocommerce -msgid "Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank to apply to all areas. Wildcards (*) can be used. Ranges for numeric postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "" - -#: admin/settings/settings-tax-rates.php:42 -#@ woocommerce -msgid "Cities for this rule. Semi-colon (;) separate multiple values. Leave blank to apply to all cities." -msgstr "" - -#: admin/settings/settings-tax-rates.php:44 -#@ woocommerce -msgid "Rate %" -msgstr "" - -#: admin/settings/settings-tax-rates.php:44 -#@ woocommerce -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "" - -#: admin/settings/settings-tax-rates.php:46 -#@ woocommerce -msgid "Tax Name" -msgstr "" - -#: admin/settings/settings-tax-rates.php:46 -#@ woocommerce -msgid "Enter a name for this tax rate." -msgstr "" - -#: admin/settings/settings-tax-rates.php:48 -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Priority" -msgstr "" - -#: admin/settings/settings-tax-rates.php:48 -#@ woocommerce -msgid "Choose a priority for this tax rate. Only 1 matching rate per priority will be used. To define multiple tax rates for a single area you need to specify a different priority per rate." -msgstr "" - -#: admin/settings/settings-tax-rates.php:50 -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Compound" -msgstr "" - -#: admin/settings/settings-tax-rates.php:50 -#@ woocommerce -msgid "Choose whether or not this is a compound rate. Compound tax rates are applied on top of other tax rates." -msgstr "" - -#: admin/settings/settings-tax-rates.php:52 -#@ woocommerce -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "" - -#: admin/settings/settings-tax-rates.php:59 -#@ woocommerce -msgid "Insert row" -msgstr "" - -#: admin/settings/settings-tax-rates.php:60 -#@ woocommerce -msgid "Remove selected row(s)" -msgstr "" - -#: admin/settings/settings-tax-rates.php:62 -#@ woocommerce -msgid "Export CSV" -msgstr "" - -#: admin/settings/settings-tax-rates.php:63 -#@ woocommerce -msgid "Import CSV" -msgstr "" - -#: admin/settings/settings-tax-rates.php:163 -#@ woocommerce -msgid "No row(s) selected" -msgstr "" - -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Country Code" -msgstr "" - -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "State Code" -msgstr "" - -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Rate %" -msgstr "" - -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Tax Name" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:77 -#@ woocommerce -msgid "Please, provide an attribute name, slug and type." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:79 -#, php-format -#@ woocommerce -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:81 -#, php-format -#@ woocommerce -msgid "Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:85 -#: admin/woocommerce-admin-attributes.php:90 -#, php-format -#@ woocommerce -msgid "Slug “%s” is already in use. Change it, please." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:226 -#@ woocommerce -msgid "Edit Attribute" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:236 -#: admin/woocommerce-admin-attributes.php:375 -#@ woocommerce -msgid "Name for the attribute (shown on the front-end)." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:241 -#: admin/woocommerce-admin-attributes.php:307 -#: admin/woocommerce-admin-attributes.php:379 -#@ woocommerce -msgid "Slug" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:245 -#: admin/woocommerce-admin-attributes.php:381 -#@ woocommerce -msgid "Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:254 -#: admin/woocommerce-admin-attributes.php:387 -#@ woocommerce -msgid "Select" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:255 -#: admin/woocommerce-admin-attributes.php:388 -#@ woocommerce -msgid "Text" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:258 -#: admin/woocommerce-admin-attributes.php:391 -#@ woocommerce -msgid "Determines how you select attributes for products. Under admin panel -> products -> product data -> attributes -> values, Text allows manual entry whereas select allows pre-configured terms in a drop-down list." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:263 -#: admin/woocommerce-admin-attributes.php:395 -#@ woocommerce -msgid "Default sort order" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:267 -#: admin/woocommerce-admin-attributes.php:335 -#: admin/woocommerce-admin-attributes.php:397 -#@ woocommerce -msgid "Custom ordering" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:269 -#: admin/woocommerce-admin-attributes.php:332 -#: admin/woocommerce-admin-attributes.php:399 -#@ woocommerce -msgid "Term ID" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:271 -#: admin/woocommerce-admin-attributes.php:401 -#@ woocommerce -msgid "Determines the sort order of the terms on the frontend shop product pages. If using custom ordering, you can drag and drop the terms in this attribute." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:309 -#@ woocommerce -msgid "Order by" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:310 -#@ woocommerce -msgid "Terms" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:355 -#@ woocommerce -msgid "Configure terms" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:359 -#@ woocommerce -msgid "No attributes currently exist." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:369 -#@ woocommerce -msgid "Add New Attribute" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:370 -#@ woocommerce -msgid "Attributes let you define extra product data, such as size or colour. You can use these attributes in the shop sidebar using the \"layered nav\" widgets. Please note: you cannot rename an attribute later on." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:404 -#@ woocommerce -msgid "Add Attribute" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:415 -#@ woocommerce -msgid "Are you sure you want to delete this attribute?" -msgstr "" - -#: admin/woocommerce-admin-content.php:26 -#: admin/woocommerce-admin-reports.php:30 -#: admin/woocommerce-admin-reports.php:75 -#: admin/woocommerce-admin-reports.php:91 -#: admin/woocommerce-admin-reports.php:102 -#@ woocommerce -msgid "Overview" -msgstr "" - -#: admin/woocommerce-admin-content.php:29 -#, php-format -#@ woocommerce -msgid "Thank you for using WooCommerce :) Should you need help using or extending WooCommerce please read the documentation. For further assistance you can use the community forum or if you have access, our support desk." -msgstr "" - -#: admin/woocommerce-admin-content.php:31 -#@ woocommerce -msgid "If you are having problems, or to assist us with support, please check the status page to identify any problems with your configuration:" -msgstr "" - -#: admin/woocommerce-admin-content.php:33 -#: admin/woocommerce-admin-init.php:87 -#: admin/woocommerce-admin-status.php:26 -#@ woocommerce -msgid "System Status" -msgstr "" - -#: admin/woocommerce-admin-content.php:35 -#, php-format -#@ woocommerce -msgid "If you come across a bug, or wish to contribute to the project you can also get involved on GitHub." -msgstr "" - -#: admin/woocommerce-admin-content.php:43 -#@ woocommerce -msgid "Here you can set up your store and customise it to fit your needs. The sections available from the settings page include:" -msgstr "" - -#: admin/woocommerce-admin-content.php:44 -#@ woocommerce -msgid "General settings such as your shop base, currency, and script/styling options which affect features used in your store." -msgstr "" - -#: admin/woocommerce-admin-content.php:45 -#@ woocommerce -msgid "This is where important store page are defined. You can also set up other pages (such as a Terms page) here." -msgstr "" - -#: admin/woocommerce-admin-content.php:46 -#@ woocommerce -msgid "Options for how things like price, images and weights appear in your product catalog." -msgstr "" - -#: admin/woocommerce-admin-content.php:47 -#@ woocommerce -msgid "Options concerning stock and stock notices." -msgstr "" - -#: admin/woocommerce-admin-content.php:48 -#@ woocommerce -msgid "Options concerning tax, including international and local tax rates." -msgstr "" - -#: admin/woocommerce-admin-content.php:49 -#@ woocommerce -msgid "This is where shipping options are defined, and shipping methods are set up." -msgstr "" - -#: admin/woocommerce-admin-content.php:50 -#@ woocommerce -msgid "Payment Methods" -msgstr "" - -#: admin/woocommerce-admin-content.php:50 -#@ woocommerce -msgid "This is where payment gateway options are defined, and individual payment gateways are set up." -msgstr "" - -#: admin/woocommerce-admin-content.php:51 -#: admin/woocommerce-admin-settings.php:187 -#@ woocommerce -msgid "Emails" -msgstr "" - -#: admin/woocommerce-admin-content.php:51 -#@ woocommerce -msgid "Here you can customise the way WooCommerce emails appear." -msgstr "" - -#: admin/woocommerce-admin-content.php:52 -#: admin/woocommerce-admin-settings.php:188 -#@ woocommerce -msgid "Integration" -msgstr "" - -#: admin/woocommerce-admin-content.php:52 -#@ woocommerce -msgid "The integration section contains options for third party services which integrate with WooCommerce." -msgstr "" - -#: admin/woocommerce-admin-content.php:57 -#: admin/woocommerce-admin-init.php:64 -#@ woocommerce -msgid "Reports" -msgstr "" - -#: admin/woocommerce-admin-content.php:59 -#@ woocommerce -msgid "The reports section can be accessed from the left-hand navigation menu. Here you can generate reports for sales and customers." -msgstr "" - -#: admin/woocommerce-admin-content.php:60 -#: admin/woocommerce-admin-reports.php:27 -#: admin/woocommerce-admin-reports.php:986 -#: admin/woocommerce-admin-reports.php:1082 -#: admin/woocommerce-admin-reports.php:1199 -#@ woocommerce -msgid "Sales" -msgstr "" - -#: admin/woocommerce-admin-content.php:60 -#@ woocommerce -msgid "Reports for sales based on date, top sellers and top earners." -msgstr "" - -#: admin/woocommerce-admin-content.php:61 -#@ woocommerce -msgid "Coupon usage reports." -msgstr "" - -#: admin/woocommerce-admin-content.php:62 -#: admin/woocommerce-admin-reports.php:88 -#@ woocommerce -msgid "Customers" -msgstr "" - -#: admin/woocommerce-admin-content.php:62 -#@ woocommerce -msgid "Customer reports, such as signups per day." -msgstr "" - -#: admin/woocommerce-admin-content.php:63 -#@ woocommerce -msgid "Stock reports for low stock and out of stock items." -msgstr "" - -#: admin/woocommerce-admin-content.php:70 -#@ woocommerce -msgid "The orders section can be accessed from the left-hand navigation menu. Here you can view and manage customer orders." -msgstr "" - -#: admin/woocommerce-admin-content.php:71 -#@ woocommerce -msgid "Orders can also be added from this section if you want to set them up for a customer manually." -msgstr "" - -#: admin/woocommerce-admin-content.php:78 -#@ woocommerce -msgid "Coupons can be managed from this section. Once added, customers will be able to enter coupon codes on the cart/checkout page. If a customer uses a coupon code they will be viewable when viewing orders." -msgstr "" - -#: admin/woocommerce-admin-content.php:82 -#@ woocommerce -msgid "For more information:" -msgstr "" - -#: admin/woocommerce-admin-content.php:84 -#@ woocommerce -msgid "Project on WordPress.org" -msgstr "" - -#: admin/woocommerce-admin-content.php:85 -#@ woocommerce -msgid "Project on Github" -msgstr "" - -#: admin/woocommerce-admin-content.php:86 -#@ woocommerce -msgid "WooCommerce Docs" -msgstr "" - -#: admin/woocommerce-admin-content.php:87 -#@ woocommerce -msgid "Official Extensions" -msgstr "" - -#: admin/woocommerce-admin-content.php:88 -#@ woocommerce -msgid "Official Themes" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:40 -#@ woocommerce -msgid "Monthly Sales" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:43 -#@ woocommerce -msgid "WooCommerce Right Now" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:44 -#@ woocommerce -msgid "WooCommerce Recent Orders" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:78 -#@ woocommerce -msgid "Shop Content" -msgstr "" - -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:84 -#: admin/woocommerce-admin-functions.php:194 -#: admin/woocommerce-admin-init.php:771 -#: admin/woocommerce-admin-reports.php:985 -#: admin/woocommerce-admin-reports.php:1081 -#: templates/cart/cart.php:28 -#: templates/checkout/form-pay.php:19 -#: templates/checkout/review-order.php:21 -#: templates/emails/admin-new-order.php:22 -#: templates/emails/customer-completed-order.php:23 -#: templates/emails/customer-invoice.php:27 -#: templates/emails/customer-note.php:27 -#: templates/emails/customer-processing-order.php:23 -#: templates/order/order-details.php:20 -#: woocommerce.php:949 -#@ woocommerce -msgid "Product" -msgid_plural "Products" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:98 -#: woocommerce.php:790 -#@ woocommerce -msgid "Product Category" -msgid_plural "Product Categories" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:112 -#: woocommerce.php:826 -#@ woocommerce -msgid "Product Tag" -msgid_plural "Product Tags" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: admin/woocommerce-admin-dashboard.php:126 -#@ woocommerce -msgid "Attribute" -msgid_plural "Attributes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: admin/woocommerce-admin-dashboard.php:148 -#@ woocommerce -msgid "Pending" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:162 -#@ woocommerce -msgid "On-Hold" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:190 -#@ woocommerce -msgid "Completed" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:207 -#, php-format -#@ woocommerce -msgid "You are using WooCommerce %s." -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:238 -#@ woocommerce -msgid "l jS \\of F Y h:i:s A" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:239 -#@ woocommerce -msgid "item" -msgid_plural "items" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: admin/woocommerce-admin-dashboard.php:245 -#@ woocommerce -msgid "There are no product orders yet." -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:287 -#@ woocommerce -msgid "There are no product reviews yet." -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:428 -#@ woocommerce -msgid "Sold" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:429 -#@ woocommerce -msgid "Earned" -msgstr "" - -#: admin/woocommerce-admin-functions.php:184 -#: admin/woocommerce-admin-install.php:222 -#@ woocommerce -msgid "Order Received" -msgstr "" - -#: admin/woocommerce-admin-functions.php:186 -#@ woocommerce -msgid "Thank you, we are now processing your order. Your order's details are below." -msgstr "" - -#: admin/woocommerce-admin-functions.php:208 -#@ woocommerce -msgid "Order total:" -msgstr "" - -#: admin/woocommerce-admin-functions.php:459 -#@ woocommerce -msgid "Could not compile woocommerce.less:" -msgstr "" - -#: admin/woocommerce-admin-functions.php:480 -#: admin/woocommerce-admin-functions.php:481 -#@ woocommerce -msgid "Mark processing" -msgstr "" - -#: admin/woocommerce-admin-functions.php:483 -#: admin/woocommerce-admin-functions.php:484 -#@ woocommerce -msgid "Mark completed" -msgstr "" - -#: admin/woocommerce-admin-functions.php:521 -#@ woocommerce -msgid "Order status changed by bulk edit:" -msgstr "" - -#: admin/woocommerce-admin-functions.php:544 -#, php-format -#@ default -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: admin/woocommerce-admin-init.php:86 -#@ woocommerce -msgid "WooCommerce Settings" -msgstr "" - -#: admin/woocommerce-admin-init.php:87 -#@ woocommerce -msgid "WooCommerce Status" -msgstr "" - -#: admin/woocommerce-admin-init.php:446 -#@ woocommerce -msgid "Are you sure you want to remove the selected items? If you have previously reduced this item's stock, or this order was submitted by a customer, you will need to manually restore the item's stock." -msgstr "" - -#: admin/woocommerce-admin-init.php:447 -#@ woocommerce -msgid "Please select some items." -msgstr "" - -#: admin/woocommerce-admin-init.php:448 -#@ woocommerce -msgid "Remove this item meta?" -msgstr "" - -#: admin/woocommerce-admin-init.php:449 -#@ woocommerce -msgid "Remove this attribute?" -msgstr "" - -#: admin/woocommerce-admin-init.php:457 -#@ woocommerce -msgid "Enter a name for the new attribute term:" -msgstr "" - -#: admin/woocommerce-admin-init.php:458 -#@ woocommerce -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "" - -#: admin/woocommerce-admin-init.php:459 -#@ woocommerce -msgid "Calculate line taxes? This will calculate taxes based on the customers country. If no billing/shipping is set it will use the store base country." -msgstr "" - -#: admin/woocommerce-admin-init.php:460 -#@ woocommerce -msgid "Copy billing information to shipping information? This will remove any currently entered shipping information." -msgstr "" - -#: admin/woocommerce-admin-init.php:461 -#@ woocommerce -msgid "Load the customer's billing information? This will remove any currently entered billing information." -msgstr "" - -#: admin/woocommerce-admin-init.php:462 -#@ woocommerce -msgid "Load the customer's shipping information? This will remove any currently entered shipping information." -msgstr "" - -#: admin/woocommerce-admin-init.php:466 -#@ woocommerce -msgid "No customer selected" -msgstr "" - -#: admin/woocommerce-admin-init.php:675 -#, php-format -#@ woocommerce -msgid "Product updated. View Product" -msgstr "" - -#: admin/woocommerce-admin-init.php:676 -#: admin/woocommerce-admin-init.php:691 -#: admin/woocommerce-admin-init.php:706 -#@ woocommerce -msgid "Custom field updated." -msgstr "" - -#: admin/woocommerce-admin-init.php:677 -#: admin/woocommerce-admin-init.php:692 -#: admin/woocommerce-admin-init.php:707 -#@ woocommerce -msgid "Custom field deleted." -msgstr "" - -#: admin/woocommerce-admin-init.php:678 -#@ woocommerce -msgid "Product updated." -msgstr "" - -#: admin/woocommerce-admin-init.php:679 -#, php-format -#@ woocommerce -msgid "Product restored to revision from %s" -msgstr "" - -#: admin/woocommerce-admin-init.php:680 -#, php-format -#@ woocommerce -msgid "Product published. View Product" -msgstr "" - -#: admin/woocommerce-admin-init.php:681 -#@ woocommerce -msgid "Product saved." -msgstr "" - -#: admin/woocommerce-admin-init.php:682 -#, php-format -#@ woocommerce -msgid "Product submitted. Preview Product" -msgstr "" - -#: admin/woocommerce-admin-init.php:683 -#, php-format -#@ woocommerce -msgid "Product scheduled for: %1$s. Preview Product" -msgstr "" - -#: admin/woocommerce-admin-init.php:684 -#: admin/woocommerce-admin-init.php:699 -#: admin/woocommerce-admin-init.php:714 -#@ woocommerce -msgid "M j, Y @ G:i" -msgstr "" - -#: admin/woocommerce-admin-init.php:685 -#, php-format -#@ woocommerce -msgid "Product draft updated. Preview Product" -msgstr "" - -#: admin/woocommerce-admin-init.php:690 -#: admin/woocommerce-admin-init.php:693 -#: admin/woocommerce-admin-init.php:695 -#@ woocommerce -msgid "Order updated." -msgstr "" - -#: admin/woocommerce-admin-init.php:694 -#, php-format -#@ woocommerce -msgid "Order restored to revision from %s" -msgstr "" - -#: admin/woocommerce-admin-init.php:696 -#@ woocommerce -msgid "Order saved." -msgstr "" - -#: admin/woocommerce-admin-init.php:697 -#@ woocommerce -msgid "Order submitted." -msgstr "" - -#: admin/woocommerce-admin-init.php:698 -#, php-format -#@ woocommerce -msgid "Order scheduled for: %1$s." -msgstr "" - -#: admin/woocommerce-admin-init.php:700 -#@ woocommerce -msgid "Order draft updated." -msgstr "" - -#: admin/woocommerce-admin-init.php:705 -#: admin/woocommerce-admin-init.php:708 -#: admin/woocommerce-admin-init.php:710 -#@ woocommerce -msgid "Coupon updated." -msgstr "" - -#: admin/woocommerce-admin-init.php:709 -#, php-format -#@ woocommerce -msgid "Coupon restored to revision from %s" -msgstr "" - -#: admin/woocommerce-admin-init.php:711 -#@ woocommerce -msgid "Coupon saved." -msgstr "" - -#: admin/woocommerce-admin-init.php:712 -#@ woocommerce -msgid "Coupon submitted." -msgstr "" - -#: admin/woocommerce-admin-init.php:713 -#, php-format -#@ woocommerce -msgid "Coupon scheduled for: %1$s." -msgstr "" - -#: admin/woocommerce-admin-init.php:715 -#@ woocommerce -msgid "Coupon draft updated." -msgstr "" - -#: admin/woocommerce-admin-init.php:732 -#@ woocommerce -msgid "Order notes" -msgstr "" - -#: admin/woocommerce-admin-init.php:747 -#@ woocommerce -msgid "These settings control the permalinks used for products. These settings only apply when not using \"default\" permalinks above." -msgstr "" - -#: admin/woocommerce-admin-init.php:754 -#@ woocommerce -msgctxt "default-slug" -msgid "shop" -msgstr "" - -#: admin/woocommerce-admin-init.php:755 -#@ woocommerce -msgctxt "default-slug" -msgid "product" -msgstr "" - -#: admin/woocommerce-admin-init.php:776 -#@ woocommerce -msgid "Shop base" -msgstr "" - -#: admin/woocommerce-admin-init.php:780 -#@ woocommerce -msgid "Shop base with category" -msgstr "" - -#: admin/woocommerce-admin-init.php:786 -#@ woocommerce -msgid "Custom Base" -msgstr "" - -#: admin/woocommerce-admin-init.php:788 -#@ woocommerce -msgid "Enter a custom base to use. A base must be set or WordPress will use default instead." -msgstr "" - -#: admin/woocommerce-admin-init.php:816 -#@ woocommerce -msgid "Product permalink base" -msgstr "" - -#: admin/woocommerce-admin-init.php:821 -#@ woocommerce -msgid "Product category base" -msgstr "" - -#: admin/woocommerce-admin-init.php:828 -#@ woocommerce -msgid "Product tag base" -msgstr "" - -#: admin/woocommerce-admin-init.php:835 -#@ woocommerce -msgid "Product attribute base" -msgstr "" - -#: admin/woocommerce-admin-install.php:192 -#@ woocommerce -msgctxt "page_slug" -msgid "shop" -msgstr "" - -#: admin/woocommerce-admin-install.php:192 -#@ woocommerce -msgid "Shop" -msgstr "" - -#: admin/woocommerce-admin-install.php:195 -#@ woocommerce -msgctxt "page_slug" -msgid "cart" -msgstr "" - -#: admin/woocommerce-admin-install.php:198 -#@ woocommerce -msgctxt "page_slug" -msgid "checkout" -msgstr "" - -#: admin/woocommerce-admin-install.php:201 -#@ woocommerce -msgctxt "page_slug" -msgid "my-account" -msgstr "" - -#: admin/woocommerce-admin-install.php:207 -#@ woocommerce -msgctxt "page_slug" -msgid "edit-address" -msgstr "" - -#: admin/woocommerce-admin-install.php:207 -#@ woocommerce -msgid "Edit My Address" -msgstr "" - -#: admin/woocommerce-admin-install.php:210 -#@ woocommerce -msgctxt "page_slug" -msgid "view-order" -msgstr "" - -#: admin/woocommerce-admin-install.php:213 -#@ woocommerce -msgctxt "page_slug" -msgid "change-password" -msgstr "" - -#: admin/woocommerce-admin-install.php:216 -#@ woocommerce -msgctxt "page_slug" -msgid "logout" -msgstr "" - -#: admin/woocommerce-admin-install.php:219 -#@ woocommerce -msgctxt "page_slug" -msgid "pay" -msgstr "" - -#: admin/woocommerce-admin-install.php:219 -#@ woocommerce -msgid "Checkout → Pay" -msgstr "" - -#: admin/woocommerce-admin-install.php:222 -#@ woocommerce -msgctxt "page_slug" -msgid "order-received" -msgstr "" - -#: admin/woocommerce-admin-reports.php:36 -#@ woocommerce -msgid "Sales by day" -msgstr "" - -#: admin/woocommerce-admin-reports.php:41 -#@ woocommerce -msgid "Sales by month" -msgstr "" - -#: admin/woocommerce-admin-reports.php:46 -#@ woocommerce -msgid "Taxes by month" -msgstr "" - -#: admin/woocommerce-admin-reports.php:51 -#@ woocommerce -msgid "Product Sales" -msgstr "" - -#: admin/woocommerce-admin-reports.php:56 -#@ woocommerce -msgid "Top sellers" -msgstr "" - -#: admin/woocommerce-admin-reports.php:61 -#@ woocommerce -msgid "Top earners" -msgstr "" - -#: admin/woocommerce-admin-reports.php:66 -#@ woocommerce -msgid "Sales by category" -msgstr "" - -#: admin/woocommerce-admin-reports.php:81 -#@ woocommerce -msgid "Discounts by coupon" -msgstr "" - -#: admin/woocommerce-admin-reports.php:232 -#: admin/woocommerce-admin-reports.php:497 -#: admin/woocommerce-admin-reports.php:702 -#: admin/woocommerce-admin-reports.php:883 -#@ woocommerce -msgid "Sales amount" -msgstr "" - -#: admin/woocommerce-admin-reports.php:237 -#: admin/woocommerce-admin-reports.php:497 -#: admin/woocommerce-admin-reports.php:702 -#: admin/woocommerce-admin-reports.php:883 -#@ woocommerce -msgid "Number of sales" -msgstr "" - -#: admin/woocommerce-admin-reports.php:369 -#@ woocommerce -msgid "Total sales" -msgstr "" - -#: admin/woocommerce-admin-reports.php:371 -#: admin/woocommerce-admin-reports.php:377 -#: admin/woocommerce-admin-reports.php:383 -#: admin/woocommerce-admin-reports.php:389 -#: admin/woocommerce-admin-reports.php:395 -#: admin/woocommerce-admin-reports.php:401 -#: admin/woocommerce-admin-reports.php:644 -#: admin/woocommerce-admin-reports.php:650 -#: admin/woocommerce-admin-reports.php:656 -#: admin/woocommerce-admin-reports.php:662 -#: admin/woocommerce-admin-reports.php:828 -#: admin/woocommerce-admin-reports.php:834 -#: admin/woocommerce-admin-reports.php:840 -#: admin/woocommerce-admin-reports.php:846 -#: admin/woocommerce-admin-reports.php:1364 -#: admin/woocommerce-admin-reports.php:1370 -#: admin/woocommerce-admin-reports.php:1376 -#: admin/woocommerce-admin-reports.php:1810 -#: admin/woocommerce-admin-reports.php:1816 -#: admin/woocommerce-admin-reports.php:1822 -#: admin/woocommerce-admin-reports.php:1828 -#: admin/woocommerce-admin-reports.php:1834 -#: admin/woocommerce-admin-reports.php:1840 -#: admin/woocommerce-admin-reports.php:2304 -#: admin/woocommerce-admin-reports.php:2315 -#: admin/woocommerce-admin-reports.php:2326 -#@ woocommerce -msgid "n/a" -msgstr "" - -#: admin/woocommerce-admin-reports.php:375 -#@ woocommerce -msgid "Total orders" -msgstr "" - -#: admin/woocommerce-admin-reports.php:377 -#: admin/woocommerce-admin-reports.php:650 -#: admin/woocommerce-admin-reports.php:834 -#@ woocommerce -msgid "items" -msgstr "" - -#: admin/woocommerce-admin-reports.php:381 -#@ woocommerce -msgid "Average order total" -msgstr "" - -#: admin/woocommerce-admin-reports.php:387 -#@ woocommerce -msgid "Average order items" -msgstr "" - -#: admin/woocommerce-admin-reports.php:393 -#@ woocommerce -msgid "Discounts used" -msgstr "" - -#: admin/woocommerce-admin-reports.php:399 -#@ woocommerce -msgid "Total shipping costs" -msgstr "" - -#: admin/woocommerce-admin-reports.php:407 -#@ woocommerce -msgid "This month's sales" -msgstr "" - -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1356 -#@ woocommerce -msgid "From:" -msgstr "" - -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1356 -#@ woocommerce -msgid "To:" -msgstr "" - -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:821 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1229 -#: admin/woocommerce-admin-reports.php:1356 -#: admin/woocommerce-admin-reports.php:1489 -#: admin/woocommerce-admin-reports.php:2293 -#: admin/woocommerce-admin-reports.php:2476 -#@ woocommerce -msgid "Show" -msgstr "" - -#: admin/woocommerce-admin-reports.php:642 -#@ woocommerce -msgid "Total sales in range" -msgstr "" - -#: admin/woocommerce-admin-reports.php:648 -#@ woocommerce -msgid "Total orders in range" -msgstr "" - -#: admin/woocommerce-admin-reports.php:654 -#@ woocommerce -msgid "Average order total in range" -msgstr "" - -#: admin/woocommerce-admin-reports.php:660 -#@ woocommerce -msgid "Average order items in range" -msgstr "" - -#: admin/woocommerce-admin-reports.php:668 -#@ woocommerce -msgid "Sales in range" -msgstr "" - -#: admin/woocommerce-admin-reports.php:815 -#: admin/woocommerce-admin-reports.php:2287 -#@ woocommerce -msgid "Year:" -msgstr "" - -#: admin/woocommerce-admin-reports.php:826 -#@ woocommerce -msgid "Total sales for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:832 -#@ woocommerce -msgid "Total orders for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:838 -#@ woocommerce -msgid "Average order total for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:844 -#@ woocommerce -msgid "Average order items for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:852 -#@ woocommerce -msgid "Monthly sales for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1000 -#@ woocommerce -msgid "Product does not exist" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1097 -#@ woocommerce -msgid "Product no longer exists" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1194 -#, php-format -#@ woocommerce -msgid "Sales for %s:" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1198 -#: admin/woocommerce-admin-reports.php:2335 -#@ woocommerce -msgid "Month" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1219 -#@ woocommerce -msgid "No sales :(" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1362 -#@ woocommerce -msgid "Total orders containing coupons" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1368 -#@ woocommerce -msgid "Percent of orders containing coupons" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1374 -#@ woocommerce -msgid "Total coupon discount" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1383 -#@ woocommerce -msgid "Most popular coupons" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1393 -#, php-format -#@ woocommerce -msgid "Used 1 time" -msgid_plural "Used %d times" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: admin/woocommerce-admin-reports.php:1396 -#: admin/woocommerce-admin-reports.php:1418 -#@ woocommerce -msgid "No coupons found" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1405 -#@ woocommerce -msgid "Greatest discount amount" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1415 -#, php-format -#@ woocommerce -msgid "Discounted %s" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1474 -#: admin/woocommerce-admin-reports.php:2453 -#@ woocommerce -msgid "Show:" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1614 -#@ woocommerce -msgid "Top coupon" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1622 -#@ woocommerce -msgid "Worst coupon" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1630 -#@ woocommerce -msgid "Discount average" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1638 -#@ woocommerce -msgid "Discount median" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1658 -#@ woocommerce -msgid "Monthly discounts by coupon" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1808 -#@ woocommerce -msgid "Total customers" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1814 -#@ woocommerce -msgid "Total customer sales" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1820 -#@ woocommerce -msgid "Total guest sales" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1826 -#@ woocommerce -msgid "Total customer orders" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1832 -#@ woocommerce -msgid "Total guest orders" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1838 -#@ woocommerce -msgid "Average orders per customer" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1846 -#@ woocommerce -msgid "Signups per day" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2067 -#@ woocommerce -msgid "Low stock" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2090 -#: admin/woocommerce-admin-reports.php:2129 -#, php-format -#@ woocommerce -msgid "%d in stock" -msgid_plural "%d in stock" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: admin/woocommerce-admin-reports.php:2095 -#@ woocommerce -msgid "No products are low in stock." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2127 -#@ woocommerce -msgid "Marked out of stock" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2134 -#@ woocommerce -msgid "No products are out in stock." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2298 -#@ woocommerce -msgid "Total taxes for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2309 -#@ woocommerce -msgid "Total product taxes for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2320 -#@ woocommerce -msgid "Total shipping tax for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2336 -#@ woocommerce -msgid "Total Sales" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2336 -#@ woocommerce -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2337 -#@ woocommerce -msgid "Total Shipping" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2337 -#@ woocommerce -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2338 -#@ woocommerce -msgid "Total Product Taxes" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2338 -#@ woocommerce -msgid "This is the sum of the 'Cart Tax' field within your orders." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2339 -#@ woocommerce -msgid "Total Shipping Taxes" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2339 -#@ woocommerce -msgid "This is the sum of the 'Shipping Tax' field within your orders." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2340 -#@ woocommerce -msgid "Total Taxes" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2340 -#@ woocommerce -msgid "This is the sum of the 'Cart Tax' and 'Shipping Tax' fields within your orders." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2341 -#@ woocommerce -msgid "Net profit" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2341 -#@ woocommerce -msgid "Total sales minus shipping and tax." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2386 -#@ woocommerce -msgid "Toggle tax rows" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2529 -#@ woocommerce -msgid "Category" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2632 -#@ woocommerce -msgid "Top category" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2641 -#@ woocommerce -msgid "Worst category" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2649 -#@ woocommerce -msgid "Category sales average" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2660 -#@ woocommerce -msgid "Category sales median" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2680 -#@ woocommerce -msgid "Monthly sales by category" -msgstr "" - -#: admin/woocommerce-admin-settings.php:162 -#@ woocommerce -msgid "Your settings have been saved." -msgstr "" - -#: admin/woocommerce-admin-settings.php:208 -#, php-format -#@ woocommerce -msgid "More functionality and gateway options available via WC official extensions." -msgstr "" - -#: admin/woocommerce-admin-settings.php:226 -#@ woocommerce -msgid "Tax Rates" -msgstr "" - -#: admin/woocommerce-admin-settings.php:253 -#@ woocommerce -msgid "Email Options" -msgstr "" - -#: admin/woocommerce-admin-settings.php:427 -#@ woocommerce -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "" - -#: admin/woocommerce-admin-settings.php:799 -#@ woocommerce -msgid "Hard Crop" -msgstr "" - -#: admin/woocommerce-admin-settings.php:824 -#@ woocommerce -msgid "Select a page…" -msgstr "" - -#: admin/woocommerce-admin-settings.php:847 -#@ woocommerce -msgid "Choose a country…" -msgstr "" - -#: admin/woocommerce-admin-settings.php:867 -#@ woocommerce -msgid "Choose countries…" -msgstr "" - -#: admin/woocommerce-admin-status.php:27 -#: admin/woocommerce-admin-status.php:622 -#@ woocommerce -msgid "Tools" -msgstr "" - -#: admin/woocommerce-admin-status.php:62 -#@ woocommerce -msgid "Please include this information when requesting support:" -msgstr "" - -#: admin/woocommerce-admin-status.php:63 -#@ woocommerce -msgid "Download System Report File" -msgstr "" - -#: admin/woocommerce-admin-status.php:71 -#@ woocommerce -msgid "Environment" -msgstr "" - -#: admin/woocommerce-admin-status.php:77 -#@ woocommerce -msgid "Home URL" -msgstr "" - -#: admin/woocommerce-admin-status.php:81 -#@ woocommerce -msgid "Site URL" -msgstr "" - -#: admin/woocommerce-admin-status.php:85 -#@ woocommerce -msgid "WC Version" -msgstr "" - -#: admin/woocommerce-admin-status.php:89 -#@ woocommerce -msgid "WC Database Version" -msgstr "" - -#: admin/woocommerce-admin-status.php:93 -#@ woocommerce -msgid "WP Version" -msgstr "" - -#: admin/woocommerce-admin-status.php:97 -#@ woocommerce -msgid "Web Server Info" -msgstr "" - -#: admin/woocommerce-admin-status.php:101 -#@ woocommerce -msgid "PHP Version" -msgstr "" - -#: admin/woocommerce-admin-status.php:105 -#@ woocommerce -msgid "MySQL Version" -msgstr "" - -#: admin/woocommerce-admin-status.php:109 -#@ woocommerce -msgid "WP Memory Limit" -msgstr "" - -#: admin/woocommerce-admin-status.php:114 -#, php-format -#@ woocommerce -msgid "%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "" - -#: admin/woocommerce-admin-status.php:121 -#@ woocommerce -msgid "WP Debug Mode" -msgstr "" - -#: admin/woocommerce-admin-status.php:125 -#@ woocommerce -msgid "WP Max Upload Size" -msgstr "" - -#: admin/woocommerce-admin-status.php:129 -#@ woocommerce -msgid "PHP Post Max Size" -msgstr "" - -#: admin/woocommerce-admin-status.php:133 -#@ woocommerce -msgid "PHP Time Limit" -msgstr "" - -#: admin/woocommerce-admin-status.php:137 -#@ woocommerce -msgid "WC Logging" -msgstr "" - -#: admin/woocommerce-admin-status.php:140 -#@ woocommerce -msgid "Log directory is writable." -msgstr "" - -#: admin/woocommerce-admin-status.php:142 -#@ woocommerce -msgid "Log directory (woocommerce/logs/) is not writable. Logging will not be possible." -msgstr "" - -#: admin/woocommerce-admin-status.php:149 -#@ woocommerce -msgid "fsockopen/cURL" -msgstr "" - -#: admin/woocommerce-admin-status.php:152 -#@ woocommerce -msgid "Your server has fsockopen and cURL enabled." -msgstr "" - -#: admin/woocommerce-admin-status.php:154 -#@ woocommerce -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "" - -#: admin/woocommerce-admin-status.php:156 -#@ woocommerce -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "" - -#: admin/woocommerce-admin-status.php:160 -#@ woocommerce -msgid "Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider." -msgstr "" - -#: admin/woocommerce-admin-status.php:165 -#@ woocommerce -msgid "SOAP Client" -msgstr "" - -#: admin/woocommerce-admin-status.php:167 -#@ woocommerce -msgid "Your server has the SOAP Client class enabled." -msgstr "" - -#: admin/woocommerce-admin-status.php:170 -#, php-format -#@ woocommerce -msgid "Your server does not have the SOAP Client class enabled - some gateway plugins which use SOAP may not work as expected." -msgstr "" - -#: admin/woocommerce-admin-status.php:175 -#@ woocommerce -msgid "WP Remote Post" -msgstr "" - -#: admin/woocommerce-admin-status.php:186 -#@ woocommerce -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "" - -#: admin/woocommerce-admin-status.php:189 -#@ woocommerce -msgid "wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:" -msgstr "" - -#: admin/woocommerce-admin-status.php:192 -#@ woocommerce -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "" - -#: admin/woocommerce-admin-status.php:215 -#@ woocommerce -msgid "Plugins" -msgstr "" - -#: admin/woocommerce-admin-status.php:221 -#@ woocommerce -msgid "Installed Plugins" -msgstr "" - -#: admin/woocommerce-admin-status.php:236 -#@ woocommerce -msgid "by" -msgstr "" - -#: admin/woocommerce-admin-status.php:236 -#@ woocommerce -msgid "version" -msgstr "" - -#: admin/woocommerce-admin-status.php:259 -#@ woocommerce -msgid "Force SSL" -msgstr "" - -#: admin/woocommerce-admin-status.php:266 -#@ woocommerce -msgid "WC Pages" -msgstr "" - -#: admin/woocommerce-admin-status.php:273 -#@ woocommerce -msgid "Shop Base" -msgstr "" - -#: admin/woocommerce-admin-status.php:289 -#@ woocommerce -msgid "Thanks" -msgstr "" - -#: admin/woocommerce-admin-status.php:329 -#@ woocommerce -msgid "Page not set" -msgstr "" - -#: admin/woocommerce-admin-status.php:339 -#@ woocommerce -msgid "Page does not exist" -msgstr "" - -#: admin/woocommerce-admin-status.php:344 -#, php-format -#@ woocommerce -msgid "Page does not contain the shortcode: %s" -msgstr "" - -#: admin/woocommerce-admin-status.php:363 -#@ woocommerce -msgid "WC Taxonomies" -msgstr "" - -#: admin/woocommerce-admin-status.php:369 -#@ woocommerce -msgid "Order Statuses" -msgstr "" - -#: admin/woocommerce-admin-status.php:379 -#@ woocommerce -msgid "Product Types" -msgstr "" - -#: admin/woocommerce-admin-status.php:392 -#@ woocommerce -msgid "Templates" -msgstr "" - -#: admin/woocommerce-admin-status.php:398 -#@ woocommerce -msgid "Template Overrides" -msgstr "" - -#: admin/woocommerce-admin-status.php:416 -#@ woocommerce -msgid "No core overrides present in theme." -msgstr "" - -#: admin/woocommerce-admin-status.php:510 -#@ woocommerce -msgid "WC Transients" -msgstr "" - -#: admin/woocommerce-admin-status.php:511 -#@ woocommerce -msgid "Clear transients" -msgstr "" - -#: admin/woocommerce-admin-status.php:512 -#@ woocommerce -msgid "This tool will clear the product/shop transients cache." -msgstr "" - -#: admin/woocommerce-admin-status.php:515 -#@ woocommerce -msgid "Expired Transients" -msgstr "" - -#: admin/woocommerce-admin-status.php:516 -#@ woocommerce -msgid "Clear expired transients" -msgstr "" - -#: admin/woocommerce-admin-status.php:517 -#@ woocommerce -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "" - -#: admin/woocommerce-admin-status.php:520 -#@ woocommerce -msgid "Term counts" -msgstr "" - -#: admin/woocommerce-admin-status.php:521 -#@ woocommerce -msgid "Recount terms" -msgstr "" - -#: admin/woocommerce-admin-status.php:522 -#@ woocommerce -msgid "This tool will recount product terms - useful when changing your settings in a way which hides products from the catalog." -msgstr "" - -#: admin/woocommerce-admin-status.php:525 -#@ woocommerce -msgid "Capabilities" -msgstr "" - -#: admin/woocommerce-admin-status.php:526 -#@ woocommerce -msgid "Reset capabilities" -msgstr "" - -#: admin/woocommerce-admin-status.php:527 -#@ woocommerce -msgid "This tool will reset the admin, customer and shop_manager roles to default. Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "" - -#: admin/woocommerce-admin-status.php:537 -#@ woocommerce -msgid "Product Transients Cleared" -msgstr "" - -#: admin/woocommerce-admin-status.php:578 -#, php-format -#@ woocommerce -msgid "%d Transients Rows Cleared" -msgstr "" - -#: admin/woocommerce-admin-status.php:586 -#@ woocommerce -msgid "Roles successfully reset" -msgstr "" - -#: admin/woocommerce-admin-status.php:598 -#@ woocommerce -msgid "Terms successfully recounted" -msgstr "" - -#: admin/woocommerce-admin-status.php:607 -#, php-format -#@ woocommerce -msgid "There was an error calling %s::%s" -msgstr "" - -#: admin/woocommerce-admin-status.php:610 -#, php-format -#@ woocommerce -msgid "There was an error calling %s" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:25 -#: admin/woocommerce-admin-taxonomies.php:118 -#@ woocommerce -msgid "Display type" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:29 -#: admin/woocommerce-admin-taxonomies.php:123 -#@ woocommerce -msgid "Subcategories" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:30 -#: admin/woocommerce-admin-taxonomies.php:124 -#@ woocommerce -msgid "Both" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:34 -#: admin/woocommerce-admin-taxonomies.php:129 -#@ woocommerce -msgid "Thumbnail" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:38 -#: admin/woocommerce-admin-taxonomies.php:134 -#@ woocommerce -msgid "Upload/Add image" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:39 -#: admin/woocommerce-admin-taxonomies.php:135 -#@ woocommerce -msgid "Remove image" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:64 -#: admin/woocommerce-admin-taxonomies.php:156 -#@ woocommerce -msgid "Use image" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:222 -#@ woocommerce -msgid "Product categories for your store can be managed here. To change the order of categories on the front-end you can drag and drop to sort them. To see more categories listed click the \"screen options\" link at the top of the page." -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:237 -#@ woocommerce -msgid "Shipping classes can be used to group products of similar type. These groups can then be used by certain shipping methods to provide different rates to different products." -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:365 -#@ woocommerce -msgid "Configure shipping class" -msgstr "" - -#: admin/woocommerce-admin-users.php:28 -#@ woocommerce -msgid "Paying Customer?" -msgstr "" - -#: admin/woocommerce-admin-users.php:29 -#@ woocommerce -msgid "Completed Orders" -msgstr "" - -#: admin/woocommerce-admin-users.php:144 -#@ woocommerce -msgid "Customer Billing Address" -msgstr "" - -#: admin/woocommerce-admin-users.php:147 -#: admin/woocommerce-admin-users.php:196 -#@ woocommerce -msgid "First name" -msgstr "" - -#: admin/woocommerce-admin-users.php:151 -#: admin/woocommerce-admin-users.php:200 -#@ woocommerce -msgid "Last name" -msgstr "" - -#: admin/woocommerce-admin-users.php:176 -#@ woocommerce -msgid "Country or state code" -msgstr "" - -#: admin/woocommerce-admin-users.php:180 -#: admin/woocommerce-admin-users.php:229 -#@ woocommerce -msgid "2 letter Country code" -msgstr "" - -#: admin/woocommerce-admin-users.php:183 -#@ woocommerce -msgid "Telephone" -msgstr "" - -#: admin/woocommerce-admin-users.php:193 -#@ woocommerce -msgid "Customer Shipping Address" -msgstr "" - -#: admin/woocommerce-admin-users.php:225 -#@ woocommerce -msgid "State/County or state code" -msgstr "" - -#: classes/abstracts/abstract-wc-product.php:33 -#@ woocommerce -msgid "The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class directly." -msgstr "" - -#: classes/class-wc-countries.php:58 -#@ woocommerce -msgid "Belau" -msgstr "" - -#: classes/class-wc-coupon.php:420 -#@ woocommerce -msgid "Coupon code applied successfully." -msgstr "" - -#: classes/class-wc-coupon.php:441 -#@ woocommerce -msgid "Coupon is not valid." -msgstr "" - -#: classes/class-wc-coupon.php:453 -#@ woocommerce -msgid "Coupon code already applied!" -msgstr "" - -#: classes/class-wc-coupon.php:456 -#, php-format -#@ woocommerce -msgid "Sorry, coupon \"%s\" has already been applied and cannot be used in conjunction with other coupons." -msgstr "" - -#: classes/class-wc-coupon.php:471 -#@ woocommerce -msgid "Sorry, this coupon is not valid for sale items." -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:97 -#: classes/gateways/cod/class-wc-gateway-cod.php:103 -#@ woocommerce -msgid "Pay with cash upon delivery." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:148 -#@ woocommerce -msgid "Please enter a prefix for your invoice numbers. If you use your PayPal account for multiple stores ensure this prefix is unique as PayPal will not allow orders with the same invoice number." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:165 -#@ woocommerce -msgid "Optional" -msgstr "" - -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:23 -#@ woocommerce -msgid "Increase your social media exposure by 10 percent! ShareYourCart helps you get more customers by motivating satisfied customers to talk with their friends about your products. For help with ShareYourCart view the documentation." -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:176 -#@ woocommerce -msgid "Option Name|Cost|Per-order (yes or no)" -msgstr "" - -#: i18n/states/HU.php:13 -#@ woocommerce -msgid "Bács-Kiskun" -msgstr "" - -#: i18n/states/HU.php:14 -#@ woocommerce -msgid "Békés" -msgstr "" - -#: i18n/states/HU.php:15 -#@ woocommerce -msgid "Baranya" -msgstr "" - -#: i18n/states/HU.php:16 -#@ woocommerce -msgid "Borsod-Abaúj-Zemplén" -msgstr "" - -#: i18n/states/HU.php:17 -#@ woocommerce -msgid "Budapest" -msgstr "" - -#: i18n/states/HU.php:18 -#@ woocommerce -msgid "Csongrád" -msgstr "" - -#: i18n/states/HU.php:19 -#@ woocommerce -msgid "Fejér" -msgstr "" - -#: i18n/states/HU.php:20 -#@ woocommerce -msgid "Győr-Moson-Sopron" -msgstr "" - -#: i18n/states/HU.php:21 -#@ woocommerce -msgid "Hajdú-Bihar" -msgstr "" - -#: i18n/states/HU.php:22 -#@ woocommerce -msgid "Heves" -msgstr "" - -#: i18n/states/HU.php:23 -#@ woocommerce -msgid "Jász-Nagykun-Szolnok" -msgstr "" - -#: i18n/states/HU.php:24 -#@ woocommerce -msgid "Komárom-Esztergom" -msgstr "" - -#: i18n/states/HU.php:25 -#@ woocommerce -msgid "Nógrád" -msgstr "" - -#: i18n/states/HU.php:26 -#@ woocommerce -msgid "Pest" -msgstr "" - -#: i18n/states/HU.php:27 -#@ woocommerce -msgid "Somogy" -msgstr "" - -#: i18n/states/HU.php:28 -#@ woocommerce -msgid "Szabolcs-Szatmár-Bereg" -msgstr "" - -#: i18n/states/HU.php:29 -#@ woocommerce -msgid "Tolna" -msgstr "" - -#: i18n/states/HU.php:30 -#@ woocommerce -msgid "Vas" -msgstr "" - -#: i18n/states/HU.php:31 -#@ woocommerce -msgid "Veszprém" -msgstr "" - -#: i18n/states/HU.php:32 -#@ woocommerce -msgid "Zala" -msgstr "" - -#: i18n/states/ID.php:13 -#@ woocommerce -msgid "Daerah Istimewa Aceh" -msgstr "" - -#: i18n/states/ID.php:14 -#@ woocommerce -msgid "Sumatera Utara" -msgstr "" - -#: i18n/states/ID.php:15 -#@ woocommerce -msgid "Sumatera Barat" -msgstr "" - -#: i18n/states/ID.php:16 -#@ woocommerce -msgid "Riau" -msgstr "" - -#: i18n/states/ID.php:17 -#@ woocommerce -msgid "Kepulauan Riau" -msgstr "" - -#: i18n/states/ID.php:18 -#@ woocommerce -msgid "Jambi" -msgstr "" - -#: i18n/states/ID.php:19 -#@ woocommerce -msgid "Sumatera Selatan" -msgstr "" - -#: i18n/states/ID.php:20 -#@ woocommerce -msgid "Bangka Belitung" -msgstr "" - -#: i18n/states/ID.php:21 -#@ woocommerce -msgid "Bengkulu" -msgstr "" - -#: i18n/states/ID.php:22 -#@ woocommerce -msgid "Lampung" -msgstr "" - -#: i18n/states/ID.php:23 -#@ woocommerce -msgid "DKI Jakarta" -msgstr "" - -#: i18n/states/ID.php:24 -#@ woocommerce -msgid "Jawa Barat" -msgstr "" - -#: i18n/states/ID.php:25 -#@ woocommerce -msgid "Banten" -msgstr "" - -#: i18n/states/ID.php:26 -#@ woocommerce -msgid "Jawa Tengah" -msgstr "" - -#: i18n/states/ID.php:27 -#@ woocommerce -msgid "Jawa Timur" -msgstr "" - -#: i18n/states/ID.php:28 -#@ woocommerce -msgid "Daerah Istimewa Yogyakarta" -msgstr "" - -#: i18n/states/ID.php:29 -#@ woocommerce -msgid "Bali" -msgstr "" - -#: i18n/states/ID.php:30 -#@ woocommerce -msgid "Nusa Tenggara Barat" -msgstr "" - -#: i18n/states/ID.php:31 -#@ woocommerce -msgid "Nusa Tenggara Timur" -msgstr "" - -#: i18n/states/ID.php:32 -#@ woocommerce -msgid "Kalimantan Barat" -msgstr "" - -#: i18n/states/ID.php:33 -#@ woocommerce -msgid "Kalimantan Tengah" -msgstr "" - -#: i18n/states/ID.php:34 -#@ woocommerce -msgid "Kalimantan Timur" -msgstr "" - -#: i18n/states/ID.php:35 -#@ woocommerce -msgid "Kalimantan Selatan" -msgstr "" - -#: i18n/states/ID.php:36 -#@ woocommerce -msgid "Kalimantan Utara" -msgstr "" - -#: i18n/states/ID.php:37 -#@ woocommerce -msgid "Sulawesi Utara" -msgstr "" - -#: i18n/states/ID.php:38 -#@ woocommerce -msgid "Sulawesi Tengah" -msgstr "" - -#: i18n/states/ID.php:39 -#@ woocommerce -msgid "Sulawesi Tenggara" -msgstr "" - -#: i18n/states/ID.php:40 -#@ woocommerce -msgid "Sulawesi Barat" -msgstr "" - -#: i18n/states/ID.php:41 -#@ woocommerce -msgid "Sulawesi Selatan" -msgstr "" - -#: i18n/states/ID.php:42 -#@ woocommerce -msgid "Gorontalo" -msgstr "" - -#: i18n/states/ID.php:43 -#@ woocommerce -msgid "Maluku" -msgstr "" - -#: i18n/states/ID.php:44 -#@ woocommerce -msgid "Maluku Utara" -msgstr "" - -#: i18n/states/ID.php:45 -#@ woocommerce -msgid "Papua" -msgstr "" - -#: i18n/states/ID.php:46 -#@ woocommerce -msgid "Papua Barat" -msgstr "" - -#: i18n/states/US.php:72 -#@ woocommerce -msgid "US Virgin Islands" -msgstr "" - -#: templates/checkout/form-login.php:14 -#@ woocommerce -msgid "Returning customer?" -msgstr "" - -#: templates/loop/orderby.php:22 -#@ woocommerce -msgid "Sort by popularity" -msgstr "" - -#: templates/loop/orderby.php:23 -#@ woocommerce -msgid "Sort by average rating" -msgstr "" - -#: templates/loop/orderby.php:24 -#@ woocommerce -msgid "Sort by newness" -msgstr "" - -#: templates/loop/orderby.php:25 -#@ woocommerce -msgid "Sort by price: low to high" -msgstr "" - -#: templates/loop/orderby.php:26 -#@ woocommerce -msgid "Sort by price: high to low" -msgstr "" - -#: templates/myaccount/my-orders.php:62 -#, php-format -#@ woocommerce -msgid "%s for %s item" -msgid_plural "%s for %s items" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: templates/single-product-reviews.php:78 -#@ woocommerce -msgid "Add Your Review" -msgstr "" - -#: woocommerce-ajax.php:1172 -#@ woocommerce -msgid "No products had their stock reduced - they may not have stock management enabled." -msgstr "" - -#: woocommerce-ajax.php:1223 -#@ woocommerce -msgid "No products had their stock increased - they may not have stock management enabled." -msgstr "" - -#: woocommerce-core-functions.php:268 -#, php-format -#@ woocommerce -msgid "%s – %s%s" -msgstr "" - -#: woocommerce-core-functions.php:675 -#@ woocommerce -msgid "Australian Dollars" -msgstr "" - -#: woocommerce-core-functions.php:676 -#@ woocommerce -msgid "Brazilian Real" -msgstr "" - -#: woocommerce-core-functions.php:677 -#@ woocommerce -msgid "Canadian Dollars" -msgstr "" - -#: woocommerce-core-functions.php:678 -#@ woocommerce -msgid "Chinese Yuan" -msgstr "" - -#: woocommerce-core-functions.php:679 -#@ woocommerce -msgid "Czech Koruna" -msgstr "" - -#: woocommerce-core-functions.php:680 -#@ woocommerce -msgid "Danish Krone" -msgstr "" - -#: woocommerce-core-functions.php:681 -#@ woocommerce -msgid "Euros" -msgstr "" - -#: woocommerce-core-functions.php:682 -#@ woocommerce -msgid "Hong Kong Dollar" -msgstr "" - -#: woocommerce-core-functions.php:683 -#@ woocommerce -msgid "Hungarian Forint" -msgstr "" - -#: woocommerce-core-functions.php:684 -#@ woocommerce -msgid "Indonesia Rupiah" -msgstr "" - -#: woocommerce-core-functions.php:685 -#@ woocommerce -msgid "Israeli Shekel" -msgstr "" - -#: woocommerce-core-functions.php:686 -#@ woocommerce -msgid "Japanese Yen" -msgstr "" - -#: woocommerce-core-functions.php:687 -#@ woocommerce -msgid "Malaysian Ringgits" -msgstr "" - -#: woocommerce-core-functions.php:688 -#@ woocommerce -msgid "Mexican Peso" -msgstr "" - -#: woocommerce-core-functions.php:689 -#@ woocommerce -msgid "Norwegian Krone" -msgstr "" - -#: woocommerce-core-functions.php:690 -#@ woocommerce -msgid "New Zealand Dollar" -msgstr "" - -#: woocommerce-core-functions.php:691 -#@ woocommerce -msgid "Philippine Pesos" -msgstr "" - -#: woocommerce-core-functions.php:692 -#@ woocommerce -msgid "Polish Zloty" -msgstr "" - -#: woocommerce-core-functions.php:693 -#@ woocommerce -msgid "Pounds Sterling" -msgstr "" - -#: woocommerce-core-functions.php:694 -#@ woocommerce -msgid "Romanian Leu" -msgstr "" - -#: woocommerce-core-functions.php:695 -#@ woocommerce -msgid "Singapore Dollar" -msgstr "" - -#: woocommerce-core-functions.php:696 -#@ woocommerce -msgid "South African rand" -msgstr "" - -#: woocommerce-core-functions.php:697 -#@ woocommerce -msgid "Swedish Krona" -msgstr "" - -#: woocommerce-core-functions.php:698 -#@ woocommerce -msgid "Swiss Franc" -msgstr "" - -#: woocommerce-core-functions.php:699 -#@ woocommerce -msgid "Taiwan New Dollars" -msgstr "" - -#: woocommerce-core-functions.php:700 -#@ woocommerce -msgid "Thai Baht" -msgstr "" - -#: woocommerce-core-functions.php:701 -#@ woocommerce -msgid "Turkish Lira" -msgstr "" - -#: woocommerce-core-functions.php:702 -#@ woocommerce -msgid "US Dollars" -msgstr "" - -#: woocommerce-functions.php:996 -#@ woocommerce -msgid "No file defined" -msgstr "" - -#: woocommerce-functions.php:1575 -#@ woocommerce -msgid "Password changed successfully." -msgstr "" - -#: woocommerce-functions.php:1651 -#@ woocommerce -msgid "Address changed successfully." -msgstr "" - -#: woocommerce-template.php:764 -#, php-format -#@ woocommerce -msgid "Reviews (%d)" -msgstr "" - -#. translators: plugin header field 'PluginURI' -#: woocommerce.php:0 -#@ woocommerce -msgid "http://www.woothemes.com/woocommerce/" -msgstr "" - -#. translators: plugin header field 'Description' -#: woocommerce.php:0 -#@ woocommerce -msgid "An e-commerce toolkit that helps you sell anything. Beautifully." -msgstr "" - -#. translators: plugin header field 'Author' -#: woocommerce.php:0 -#@ woocommerce -msgid "WooThemes" -msgstr "" - -#. translators: plugin header field 'AuthorURI' -#: woocommerce.php:0 -#@ woocommerce -msgid "http://woothemes.com" -msgstr "" - -#. translators: plugin header field 'Version' -#: woocommerce.php:0 -#@ woocommerce -msgid "2.0.0" -msgstr "" - diff --git a/i18n/languages/woocommerce-sk_SK.mo b/i18n/languages/woocommerce-sk_SK.mo deleted file mode 100644 index bc6f4075b03..00000000000 Binary files a/i18n/languages/woocommerce-sk_SK.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-sk_SK.po b/i18n/languages/woocommerce-sk_SK.po deleted file mode 100644 index 793349efd6b..00000000000 --- a/i18n/languages/woocommerce-sk_SK.po +++ /dev/null @@ -1,6321 +0,0 @@ -# Translation of 2.0.x in Slovak -# This file is distributed under the same license as the 2.0.x package. -msgid "" -msgstr "" -"PO-Revision-Date: 2013-10-21 13:31:07+0000\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: GlotPress/0.1\n" -"Project-Id-Version: 2.0.x\n" - -#: classes/class-wc-countries.php:277 -msgid "Western Samoa" -msgstr "Western Samoa" - -#: classes/shortcodes/class-wc-shortcode-checkout.php:45 -msgid "WooCommerce Config Error: The checkout thanks/pay pages are missing - these pages are required for the checkout to function correctly. Please configure the pages here." -msgstr "Chyba konfigurácie WooCommerce: Stránky platby/poďakovania chýbajú. Tieto stránky sú vyžadované pre správne fungovanie. Prosím nastavte ich tu." - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:90 -msgid "Cost Added..." -msgstr "Pridané náklady..." - -#: templates/order/order-details.php:64 -msgid "Download file%s" -msgstr "Stiahnuť súbor %s" - -#: woocommerce.php:171 -msgid "Docs" -msgstr "Dokumenty" - -#: templates/cart/shipping-calculator.php:72 -msgid "City" -msgstr "Mesto" - -#: classes/class-wc-cache-helper.php:92 -msgid "In order for database caching to work with WooCommerce you must add _wc_session_ to the \"Ignored Query Strings\" option in W3 Total Cache settings here." -msgstr "Aby fugovala cache databázy správne s WooCommerce je potrebné zadať _wc_session_ kód do \"Ignorovnané dotazy reťazca\" nastavenia v W3 Total Cache nastaveniach tu." - -#: classes/class-wc-checkout.php:79 -msgid "Confirm password" -msgstr "Potvrďte heslo" - -#: classes/class-wc-checkout.php:80 -msgctxt "placeholder" -msgid "Confirm password" -msgstr "Potvrďte heslo" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:144 -msgid "Pay securely with your credit card." -msgstr "Zaplaťte bezpečne pomocou vašej platobnej karty." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:147 -msgid "Receiver Email" -msgstr "Email príjemcu" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:149 -msgid "If this differs from the email entered above, input your main receiver email for your PayPal account. This is used to validate IPN requests." -msgstr "Ak sa líši od zadaného emailu, zadajte email vašeho PayPal účtu. Tento email slúži na overenie žiadosti IPN." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:213 -msgid "Log PayPal events, such as IPN requests, inside woocommerce/logs/paypal-%s.txt" -msgstr "Zaznamenávať udalosti zo služby PayPal, ako napríklad IPN žiadosti, v súbore woocommerce/logs/paypal-%s.txt" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:655 -msgid "Validation error: PayPal IPN response from a different email address (%s)." -msgstr "Chyba overenia: PayPal IPN odpovedalo pomocou odlišnej emailovej adresy (%s)." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:69 -msgid "Set Domain Name" -msgstr "Nastaviť meno domény" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:70 -msgid "(Optional) Sets the _setDomainName variable. See here for more information." -msgstr "(Doplnkové) Nastavuje premennú_setDomainName. Pozrite sa sem pre viac informácií." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:128 -msgid "Additional Rates" -msgstr "Dodatočné spoplatnenia" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:130 -msgid "Optional extra shipping options with additional costs (one per line): Option Name | Additional Cost | Per Cost Type (order, class, or item) Example: Priority Mail | 6.95 | order." -msgstr "Doplnkové možnosti zasielania, ktoré obsahujú aj náklady.(Jedna možnosť na riadok): Meno možnosti | Dodatočný náklad | Typ ceny podla typu (objednávka, trieda alebo položka) Napríklad: Prioritná pošta | 6,95 | obejdnávka." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:133 -msgid "Option Name | Additional Cost | Per Cost Type (order, class, or item)" -msgstr "Meno možnosti | Dodatočný náklad | Typ ceny podla typu (objednávka, trieda alebo položka)" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:136 -msgid "Additional Costs" -msgstr "Dodatočné náklady" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:138 -msgid "Additional costs can be added below - these will all be added to the per-order cost above." -msgstr "Dodatočné náklady môžu byť pridané nižšie - budú pridané do nákladov na jednu objednávku." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:141 -msgid "Costs Added..." -msgstr "Náklady pridané..." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:154 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:120 -msgid "Minimum Handling Fee" -msgstr "Minimálny manipulačný poplatok" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:479 -msgid "Costs" -msgstr "Náklady" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:492 -msgid "+ Add Cost" -msgstr "+ Pridať náklad" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:492 -msgid "Delete selected costs" -msgstr "Vymazať vybrané náklady" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:498 -msgid "Any class" -msgstr "Ľubovoľná trieda" - -#: woocommerce-core-functions.php:708 -msgid "Indian Rupee" -msgstr "Indian Rupee" - -#: woocommerce-core-functions.php:711 -msgid "South Korean Won" -msgstr "South Korean Won" - -#: woocommerce.php:172 -msgid "Premium Support" -msgstr "Platená podpora" - -#: classes/class-wc-countries.php:156 -msgid "Latvia" -msgstr "Latvia" - -#: classes/class-wc-countries.php:157 -msgid "Lebanon" -msgstr "Lebanon" - -#: classes/class-wc-countries.php:158 -msgid "Lesotho" -msgstr "Lesotho" - -#: classes/class-wc-countries.php:159 -msgid "Liberia" -msgstr "Liberia" - -#: classes/class-wc-countries.php:160 -msgid "Libya" -msgstr "Libya" - -#: classes/class-wc-countries.php:161 -msgid "Liechtenstein" -msgstr "Liechtenstein" - -#: classes/class-wc-countries.php:162 -msgid "Lithuania" -msgstr "Lithuania" - -#: classes/class-wc-countries.php:163 -msgid "Luxembourg" -msgstr "Luxembourg" - -#: classes/class-wc-countries.php:164 -msgid "Macao S.A.R., China" -msgstr "Macao S.A.R., China" - -#: classes/class-wc-countries.php:165 -msgid "Macedonia" -msgstr "Macedonia" - -#: classes/class-wc-countries.php:166 -msgid "Madagascar" -msgstr "Madagascar" - -#: classes/class-wc-countries.php:167 -msgid "Malawi" -msgstr "Malawi" - -#: classes/class-wc-countries.php:168 -msgid "Malaysia" -msgstr "Malaysia" - -#: classes/class-wc-countries.php:169 -msgid "Maldives" -msgstr "Maldives" - -#: classes/class-wc-countries.php:170 -msgid "Mali" -msgstr "Mali" - -#: classes/class-wc-countries.php:171 -msgid "Malta" -msgstr "Malta" - -#: classes/class-wc-countries.php:172 -msgid "Marshall Islands" -msgstr "Marshall Islands" - -#: classes/class-wc-countries.php:173 -msgid "Martinique" -msgstr "Martinique" - -#: classes/class-wc-countries.php:174 -msgid "Mauritania" -msgstr "Mauritania" - -#: classes/class-wc-countries.php:175 -msgid "Mauritius" -msgstr "Mauritius" - -#: classes/class-wc-countries.php:176 -msgid "Mayotte" -msgstr "Mayotte" - -#: classes/class-wc-countries.php:177 -msgid "Mexico" -msgstr "Mexico" - -#: classes/class-wc-countries.php:178 -msgid "Micronesia" -msgstr "Micronesia" - -#: classes/class-wc-countries.php:179 -msgid "Moldova" -msgstr "Moldova" - -#: classes/class-wc-countries.php:180 -msgid "Monaco" -msgstr "Monaco" - -#: classes/class-wc-countries.php:181 -msgid "Mongolia" -msgstr "Mongolia" - -#: classes/class-wc-countries.php:182 -msgid "Montenegro" -msgstr "Montenegro" - -#: classes/class-wc-countries.php:183 -msgid "Montserrat" -msgstr "Montserrat" - -#: classes/class-wc-countries.php:184 -msgid "Morocco" -msgstr "Morocco" - -#: classes/class-wc-countries.php:185 -msgid "Mozambique" -msgstr "Mozambique" - -#: classes/class-wc-countries.php:186 -msgid "Myanmar" -msgstr "Myanmar" - -#: classes/class-wc-countries.php:187 -msgid "Namibia" -msgstr "Namibia" - -#: classes/class-wc-countries.php:188 -msgid "Nauru" -msgstr "Nauru" - -#: classes/class-wc-countries.php:189 -msgid "Nepal" -msgstr "Nepal" - -#: classes/class-wc-countries.php:190 -msgid "Netherlands" -msgstr "Netherlands" - -#: classes/class-wc-countries.php:191 -msgid "Netherlands Antilles" -msgstr "Netherlands Antilles" - -#: classes/class-wc-countries.php:192 -msgid "New Caledonia" -msgstr "New Caledonia" - -#: classes/class-wc-countries.php:193 -msgid "New Zealand" -msgstr "New Zealand" - -#: classes/class-wc-countries.php:194 -msgid "Nicaragua" -msgstr "Nicaragua" - -#: classes/class-wc-countries.php:195 -msgid "Niger" -msgstr "Niger" - -#: classes/class-wc-countries.php:196 -msgid "Nigeria" -msgstr "Nigeria" - -#: classes/class-wc-countries.php:197 -msgid "Niue" -msgstr "Niue" - -#: classes/class-wc-countries.php:198 -msgid "Norfolk Island" -msgstr "Norfolk Island" - -#: classes/class-wc-countries.php:199 -msgid "North Korea" -msgstr "North Korea" - -#: classes/class-wc-countries.php:200 -msgid "Norway" -msgstr "Norway" - -#: classes/class-wc-countries.php:201 -msgid "Oman" -msgstr "Oman" - -#: classes/class-wc-countries.php:202 -msgid "Pakistan" -msgstr "Pakistan" - -#: classes/class-wc-countries.php:203 -msgid "Palestinian Territory" -msgstr "Palestinian Territory" - -#: classes/class-wc-countries.php:204 -msgid "Panama" -msgstr "Panama" - -#: classes/class-wc-countries.php:205 -msgid "Papua New Guinea" -msgstr "Papua New Guinea" - -#: classes/class-wc-countries.php:206 -msgid "Paraguay" -msgstr "Paraguay" - -#: classes/class-wc-countries.php:207 -msgid "Peru" -msgstr "Peru" - -#: classes/class-wc-countries.php:208 -msgid "Philippines" -msgstr "Philippines" - -#: classes/class-wc-countries.php:209 -msgid "Pitcairn" -msgstr "Pitcairn" - -#: classes/class-wc-countries.php:210 -msgid "Poland" -msgstr "Poland" - -#: classes/class-wc-countries.php:211 -msgid "Portugal" -msgstr "Portugal" - -#: classes/class-wc-countries.php:212 -msgid "Qatar" -msgstr "Qatar" - -#: classes/class-wc-countries.php:213 -msgid "Reunion" -msgstr "Reunion" - -#: classes/class-wc-countries.php:214 -msgid "Romania" -msgstr "Romania" - -#: classes/class-wc-countries.php:215 -msgid "Russia" -msgstr "Russia" - -#: classes/class-wc-countries.php:216 -msgid "Rwanda" -msgstr "Rwanda" - -#: classes/class-wc-countries.php:217 -msgid "Saint Barthélemy" -msgstr "Saint Barthélemy" - -#: classes/class-wc-countries.php:218 -msgid "Saint Helena" -msgstr "Saint Helena" - -#: classes/class-wc-countries.php:219 -msgid "Saint Kitts and Nevis" -msgstr "Saint Kitts and Nevis" - -#: classes/class-wc-countries.php:220 -msgid "Saint Lucia" -msgstr "Saint Lucia" - -#: classes/class-wc-countries.php:221 -msgid "Saint Martin (French part)" -msgstr "Saint Martin (French part)" - -#: classes/class-wc-countries.php:222 -msgid "Saint Martin (Dutch part)" -msgstr "Saint Martin (Dutch part)" - -#: classes/class-wc-countries.php:223 -msgid "Saint Pierre and Miquelon" -msgstr "Saint Pierre and Miquelon" - -#: classes/class-wc-countries.php:224 -msgid "Saint Vincent and the Grenadines" -msgstr "Saint Vincent and the Grenadines" - -#: classes/class-wc-countries.php:225 -msgid "San Marino" -msgstr "San Marino" - -#: classes/class-wc-countries.php:226 -msgid "São Tomé and Príncipe" -msgstr "São Tomé and Príncipe" - -#: classes/class-wc-countries.php:227 -msgid "Saudi Arabia" -msgstr "Saudi Arabia" - -#: classes/class-wc-countries.php:228 -msgid "Senegal" -msgstr "Senegal" - -#: classes/class-wc-countries.php:229 -msgid "Serbia" -msgstr "Serbia" - -#: classes/class-wc-countries.php:230 -msgid "Seychelles" -msgstr "Seychelles" - -#: classes/class-wc-countries.php:231 -msgid "Sierra Leone" -msgstr "Sierra Leone" - -#: classes/class-wc-countries.php:232 -msgid "Singapore" -msgstr "Singapore" - -#: classes/class-wc-countries.php:233 -msgid "Slovakia" -msgstr "Slovakia" - -#: classes/class-wc-countries.php:234 -msgid "Slovenia" -msgstr "Slovenia" - -#: classes/class-wc-countries.php:235 -msgid "Solomon Islands" -msgstr "Solomon Islands" - -#: classes/class-wc-countries.php:236 -msgid "Somalia" -msgstr "Somalia" - -#: classes/class-wc-countries.php:237 -msgid "South Africa" -msgstr "South Africa" - -#: classes/class-wc-countries.php:238 -msgid "South Georgia/Sandwich Islands" -msgstr "South Georgia/Sandwich Islands" - -#: classes/class-wc-countries.php:239 -msgid "South Korea" -msgstr "South Korea" - -#: classes/class-wc-countries.php:240 -msgid "South Sudan" -msgstr "South Sudan" - -#: classes/class-wc-countries.php:241 -msgid "Spain" -msgstr "Spain" - -#: classes/class-wc-countries.php:242 -msgid "Sri Lanka" -msgstr "Sri Lanka" - -#: classes/class-wc-countries.php:243 -msgid "Sudan" -msgstr "Sudan" - -#: classes/class-wc-countries.php:244 -msgid "Suriname" -msgstr "Suriname" - -#: classes/class-wc-countries.php:245 -msgid "Svalbard and Jan Mayen" -msgstr "Svalbard and Jan Mayen" - -#: classes/class-wc-countries.php:246 -msgid "Swaziland" -msgstr "Swaziland" - -#: classes/class-wc-countries.php:247 -msgid "Sweden" -msgstr "Sweden" - -#: classes/class-wc-countries.php:248 -msgid "Switzerland" -msgstr "Switzerland" - -#: classes/class-wc-countries.php:249 -msgid "Syria" -msgstr "Syria" - -#: classes/class-wc-countries.php:250 -msgid "Taiwan" -msgstr "Taiwan" - -#: classes/class-wc-countries.php:251 -msgid "Tajikistan" -msgstr "Tajikistan" - -#: classes/class-wc-countries.php:252 -msgid "Tanzania" -msgstr "Tanzania" - -#: classes/class-wc-countries.php:253 -msgid "Thailand" -msgstr "Thailand" - -#: classes/class-wc-countries.php:254 -msgid "Timor-Leste" -msgstr "Timor-Leste" - -#: classes/class-wc-countries.php:255 -msgid "Togo" -msgstr "Togo" - -#: classes/class-wc-countries.php:256 -msgid "Tokelau" -msgstr "Tokelau" - -#: classes/class-wc-countries.php:257 -msgid "Tonga" -msgstr "Tonga" - -#: classes/class-wc-countries.php:258 -msgid "Trinidad and Tobago" -msgstr "Trinidad and Tobago" - -#: classes/class-wc-countries.php:259 -msgid "Tunisia" -msgstr "Tunisia" - -#: classes/class-wc-countries.php:260 -msgid "Turkey" -msgstr "Turkey" - -#: classes/class-wc-countries.php:261 -msgid "Turkmenistan" -msgstr "Turkmenistan" - -#: classes/class-wc-countries.php:262 -msgid "Turks and Caicos Islands" -msgstr "Turks and Caicos Islands" - -#: classes/class-wc-countries.php:263 -msgid "Tuvalu" -msgstr "Tuvalu" - -#: classes/class-wc-countries.php:264 -msgid "Uganda" -msgstr "Uganda" - -#: classes/class-wc-countries.php:265 -msgid "Ukraine" -msgstr "Ukraine" - -#: classes/class-wc-countries.php:266 -msgid "United Arab Emirates" -msgstr "United Arab Emirates" - -#: classes/class-wc-countries.php:267 -msgid "United Kingdom" -msgstr "United Kingdom" - -#: classes/class-wc-countries.php:268 -msgid "United States" -msgstr "United States" - -#: classes/class-wc-countries.php:269 -msgid "Uruguay" -msgstr "Uruguay" - -#: classes/class-wc-countries.php:270 -msgid "Uzbekistan" -msgstr "Uzbekistan" - -#: classes/class-wc-countries.php:271 -msgid "Vanuatu" -msgstr "Vanuatu" - -#: classes/class-wc-countries.php:272 -msgid "Vatican" -msgstr "Vatican" - -#: classes/class-wc-countries.php:273 -msgid "Venezuela" -msgstr "Venezuela" - -#: classes/class-wc-countries.php:274 -msgid "Vietnam" -msgstr "Vietnam" - -#: classes/class-wc-countries.php:275 -msgid "Wallis and Futuna" -msgstr "Wallis and Futuna" - -#: classes/class-wc-countries.php:276 -msgid "Western Sahara" -msgstr "Western Sahara" - -#: classes/class-wc-countries.php:278 -msgid "Yemen" -msgstr "Yemen" - -#: classes/class-wc-countries.php:279 -msgid "Zambia" -msgstr "Zambia" - -#: classes/class-wc-countries.php:280 -msgid "Zimbabwe" -msgstr "Zimbabwe" - -#: classes/class-wc-countries.php:418 -msgid "to the" -msgstr "na" - -#: classes/class-wc-countries.php:419 -msgid "to" -msgstr "k" - -#: classes/class-wc-countries.php:432 -msgid "the" -msgstr "ten" - -#: classes/class-wc-countries.php:444 -msgid "VAT" -msgstr "DPH" - -#: classes/class-wc-countries.php:444 -msgid "Tax" -msgstr "DPH" - -#: classes/class-wc-countries.php:457 -msgid "(incl. VAT)" -msgstr "(s DPH)" - -#: classes/class-wc-countries.php:457 -msgid "(incl. tax)" -msgstr "(vr. dane)" - -#: classes/class-wc-countries.php:470 -msgid "(ex. VAT)" -msgstr "(bez DPH)" - -#: classes/class-wc-countries.php:470 -msgid "(ex. tax)" -msgstr "(bez DPH)" - -#: classes/class-wc-countries.php:774 classes/class-wc-countries.php:784 -#: classes/class-wc-countries.php:804 classes/class-wc-countries.php:859 -#: classes/class-wc-countries.php:883 classes/class-wc-countries.php:933 -#: classes/class-wc-countries.php:957 classes/class-wc-countries.php:998 -msgid "Province" -msgstr "Provincia" - -#: classes/class-wc-countries.php:790 -msgid "Canton" -msgstr "Okres" - -#: classes/class-wc-countries.php:799 classes/class-wc-countries.php:939 -msgid "Municipality" -msgstr "Obec" - -#: classes/class-wc-countries.php:846 -msgid "Town / District" -msgstr "Mesto" - -#: classes/class-wc-countries.php:849 -msgid "Region" -msgstr "Kraj" - -#: classes/class-wc-countries.php:962 -msgid "Zip" -msgstr "PSČ" - -#: classes/class-wc-countries.php:965 -msgid "State" -msgstr "Štát" - -#: classes/class-wc-countries.php:970 -msgid "Postcode" -msgstr "PSČ" - -#: classes/class-wc-countries.php:973 -msgid "County" -msgstr "Kraj" - -#: classes/class-wc-countries.php:734 classes/class-wc-countries.php:735 -#: templates/cart/shipping-calculator.php:80 -msgid "Postcode / Zip" -msgstr "PSČ" - -#: classes/class-wc-countries.php:715 classes/class-wc-countries.php:716 -msgid "Town / City" -msgstr "Mesto" - -#: classes/class-wc-countries.php:725 classes/class-wc-countries.php:726 -msgid "State / County" -msgstr "Krajina" - -#: classes/class-wc-countries.php:678 -msgid "Country" -msgstr "Krajina" - -#: classes/class-wc-countries.php:683 -msgid "First Name" -msgstr "Krstné meno" - -#: classes/class-wc-countries.php:688 -msgid "Last Name" -msgstr "Priezvisko" - -#: classes/class-wc-countries.php:694 -msgid "Company Name" -msgstr "Názov spoločnosti" - -#: classes/class-wc-countries.php:698 -msgid "Address" -msgstr "Adresa" - -#: classes/class-wc-countries.php:699 -msgctxt "placeholder" -msgid "Street address" -msgstr "Adresa" - -#: classes/class-wc-countries.php:707 -msgctxt "placeholder" -msgid "Apartment, suite, unit etc. (optional)" -msgstr "Číslo bytu (voliteľné)" - -#: classes/class-wc-countries.php:1074 -msgid "Email Address" -msgstr "E-mailová adresa" - -#: classes/class-wc-countries.php:1080 -msgid "Phone" -msgstr "Telefón" - -#: classes/class-wc-coupon.php:421 -msgid "Coupon code applied successfully." -msgstr "Kód kupónu bol úspešne použitý." - -#: classes/class-wc-coupon.php:442 -msgid "Coupon is not valid." -msgstr "Kupón nie je platný." - -#: classes/class-wc-coupon.php:445 classes/class-wc-coupon.php:495 -msgid "Coupon does not exist!" -msgstr "Kupón neexistuje!" - -#: classes/class-wc-coupon.php:448 -msgid "Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from your order." -msgstr "Prepáčte, vyzerá to, že kupón \"%s\" je neplatný - bol práve odobraný z vášho košíka." - -#: classes/class-wc-coupon.php:451 -msgid "Sorry, it seems the coupon \"%s\" is not yours - it has now been removed from your order." -msgstr "Prepáčte, vyzerá to, že kupón \"%s\" nie je váš - bol práve odobraný z vášho košíka." - -#: classes/class-wc-coupon.php:454 -msgid "Coupon code already applied!" -msgstr "Kód kupónu bol už použitý!" - -#: classes/class-wc-coupon.php:457 -msgid "Sorry, coupon \"%s\" has already been applied and cannot be used in conjunction with other coupons." -msgstr "Prepáčte, kupón \"%s\" už bol použitý a nemôže sa použiť v kombinácií s inými kupónmi." - -#: classes/class-wc-coupon.php:460 -msgid "Coupon usage limit has been reached." -msgstr "Dosiahli ste maximálny počet použití kupónu." - -#: classes/class-wc-coupon.php:463 -msgid "This coupon has expired." -msgstr "Kupónu vypršala platnosť." - -#: classes/class-wc-coupon.php:466 -msgid "The minimum spend for this coupon is %s." -msgstr "Minimálna útrata pre tento kupón je %s." - -#: classes/class-wc-coupon.php:469 -msgid "Sorry, this coupon is not applicable to your cart contents." -msgstr "Prepáčte, tento kupón sa nevzťahuje na obsah vašeho košíka." - -#: classes/class-wc-coupon.php:472 -msgid "Sorry, this coupon is not valid for sale items." -msgstr "Ľutujeme, tento kupón sa nevzťahuje zľavnený tovar." - -#: classes/class-wc-coupon.php:498 -msgid "Please enter a coupon code." -msgstr "Prosím zadajte kód kupónu." - -#: classes/class-wc-customer.php:628 classes/class-wc-customer.php:638 -msgid "File %d" -msgstr "Súbor %d" - -#: classes/class-wc-emails.php:246 -msgid "Note" -msgstr "Poznámka" - -#: classes/class-wc-emails.php:281 -msgid "Product low in stock" -msgstr "Produkt má nízke skladové zásoby" - -#: classes/class-wc-emails.php:286 classes/class-wc-emails.php:318 -#: classes/class-wc-emails.php:362 -msgid "Variation #%s of %s" -msgstr "Variácia #%s z %s" - -#: classes/class-wc-emails.php:288 classes/class-wc-emails.php:320 -#: classes/class-wc-emails.php:364 -msgid "Product #%s - %s" -msgstr "Produkt #%s - %s" - -#: classes/class-wc-emails.php:290 -msgid "is low in stock." -msgstr "už končí na sklade." - -#: classes/class-wc-emails.php:313 -msgid "Product out of stock" -msgstr "Produkt už nie je na sklade" - -#: classes/class-wc-emails.php:322 -msgid "is out of stock." -msgstr "nie je na sklade." - -#: classes/class-wc-emails.php:357 -msgid "Product Backorder" -msgstr "Nevybavená objednávka" - -#: classes/class-wc-emails.php:366 -msgid "%s units of %s have been backordered in order #%s." -msgstr "%s kusov %s bolo objednaných v objednávke #%s." - -#: classes/class-wc-order.php:283 -msgctxt "hash before order number" -msgid "#" -msgstr "#" - -#: classes/class-wc-order.php:886 -msgid " %svia %s" -msgstr " %svia %s" - -#: classes/class-wc-order.php:950 -msgid "Cart Subtotal:" -msgstr "Medzisúčet:" - -#: classes/class-wc-order.php:956 -msgid "Cart Discount:" -msgstr "Zľava:" - -#: classes/class-wc-order.php:962 -msgid "Shipping:" -msgstr "Doručenie:" - -#: classes/class-wc-order.php:998 -msgid "Order Discount:" -msgstr "Zľava k objednávke:" - -#: classes/class-wc-order.php:1003 -msgid "Order Total:" -msgstr "Cena spolu:" - -#: classes/class-wc-order.php:1017 templates/cart/totals.php:105 -#: templates/checkout/review-order.php:104 -msgid "(Includes %s)" -msgstr "(vrátane %s)" - -#: classes/class-wc-order.php:1168 classes/class-wc-order.php:1170 -#: classes/class-wc-order.php:1173 -msgid "WooCommerce" -msgstr "E-shop" - -#: classes/class-wc-order.php:1220 -msgid "Order status changed from %s to %s." -msgstr "Zmena stavu objednávky z %s na %s." - -#: classes/class-wc-order.php:1452 woocommerce-ajax.php:1089 -#: woocommerce-ajax.php:1090 -msgid "Item #%s stock reduced from %s to %s." -msgstr "Zásoby položky č. %s klesly z %s na %s." - -#: classes/class-wc-order.php:1464 -msgid "Order item stock reduced successfully." -msgstr "Objednaný tovar bol úspešne odpísaný zo skladu." - -#: classes/class-wc-product-external.php:56 -msgid "Buy product" -msgstr "Kúpiť produkt" - -#: classes/class-wc-shortcodes.php:571 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:274 -#: templates/loop/add-to-cart.php:46 -#: templates/single-product/add-to-cart/grouped.php:45 -#: templates/single-product/add-to-cart/grouped.php:77 -#: templates/single-product/add-to-cart/simple.php:42 -#: templates/single-product/add-to-cart/variable.php:83 -msgid "Add to cart" -msgstr "Kúpiť" - -#: classes/emails/class-wc-email-customer-completed-order.php:24 -msgid "Completed order" -msgstr "Vybavená obejdnávka" - -#: classes/emails/class-wc-email-customer-completed-order.php:25 -msgid "Order complete emails are sent to the customer when the order is marked complete and usual indicates that the order has been shipped." -msgstr "Emaily o vybavení objednávky sú zasielané zákazníkom keď je objednávka označená za vybavenú.Obyčajne to znamená, že bola odoslaná." - -#: classes/emails/class-wc-email-customer-completed-order.php:27 -msgid "Your order is complete" -msgstr "Vaša objednávka je vybavená" - -#: classes/emails/class-wc-email-customer-completed-order.php:28 -msgid "Your {blogname} order from {order_date} is complete" -msgstr "Vaša {blogname} objednávka zo {order_date} je vybavená" - -#: classes/emails/class-wc-email-customer-completed-order.php:37 -msgid "Your order is complete - download your files" -msgstr "Vaša objednávka je vybavená - stiahnite si súbory" - -#: classes/emails/class-wc-email-customer-completed-order.php:38 -msgid "Your {blogname} order from {order_date} is complete - download your files" -msgstr "Vaša {blogname} objednávka zo {order_date} je vybavená - stiahnite si súbory" - -#: classes/emails/class-wc-email-customer-completed-order.php:141 -#: classes/emails/class-wc-email-new-order.php:128 -msgid "Subject" -msgstr "Predmet" - -#: classes/emails/class-wc-email-customer-completed-order.php:148 -#: classes/emails/class-wc-email-new-order.php:135 -msgid "Email Heading" -msgstr "Hlavička emailu" - -#: classes/emails/class-wc-email-customer-completed-order.php:155 -msgid "Subject (downloadable)" -msgstr "Predmet(stiahnuteľný)" - -#: classes/emails/class-wc-email-customer-completed-order.php:162 -msgid "Email Heading (downloadable)" -msgstr "Hlavička emailu (stiahnuteľná)" - -#: classes/emails/class-wc-email-customer-invoice.php:27 -msgid "Customer invoice" -msgstr "Zákaznícka faktúra" - -#: classes/emails/class-wc-email-customer-invoice.php:28 -msgid "Customer invoice emails can be sent to the user containing order info and payment links." -msgstr "Zákaznícke faktúry môžu byť zaslané užívateľovi obsahujúce údaje o objednávke a platobné údaje." - -#: classes/emails/class-wc-email-customer-invoice.php:33 -msgid "Invoice for order {order_number} from {order_date}" -msgstr "Faktúra objednávky číslo {order_number} z dňa {order_date}" - -#: classes/emails/class-wc-email-customer-invoice.php:34 -msgid "Invoice for order {order_number}" -msgstr "Faktúra objednávky číslo {order_number}" - -#: classes/emails/class-wc-email-customer-invoice.php:36 -msgid "Your {blogname} order from {order_date}" -msgstr "Vaša objednávka na stránke {blogname} zo dňa {order_date}" - -#: classes/emails/class-wc-email-customer-invoice.php:37 -msgid "Order {order_number} details" -msgstr "Detaily objednávky číslo {order_number}" - -#: classes/emails/class-wc-email-customer-invoice.php:158 -msgid "Email subject (paid)" -msgstr "Predmet emailu (zaplatená)" - -#: classes/emails/class-wc-email-customer-invoice.php:165 -msgid "Email heading (paid)" -msgstr "Hlavička emailu (zaplatená)" - -#: classes/emails/class-wc-email-customer-new-account.php:31 -msgid "New account" -msgstr "Nový účet" - -#: classes/emails/class-wc-email-customer-new-account.php:32 -msgid "Customer new account emails are sent when a customer signs up via the checkout or My Account page." -msgstr "Emaily novým zákazníkom sa zasielajú pri registrácií po platbe alebo na stránke Môj účet." - -#: classes/emails/class-wc-email-customer-new-account.php:37 -msgid "Your account on {blogname}" -msgstr "Váš účet na {blogname}" - -#: classes/emails/class-wc-email-customer-new-account.php:38 -msgid "Welcome to {blogname}" -msgstr "Vitajte na {blogname}" - -#: classes/emails/class-wc-email-customer-note.php:29 -msgid "Customer note" -msgstr "Poznámky zákazníka" - -#: classes/emails/class-wc-email-customer-note.php:30 -msgid "Customer note emails are sent when you add a note to an order." -msgstr "Email s poznámkou sa pošle keď pridáte poznámku k objednávke." - -#: classes/emails/class-wc-email-customer-note.php:35 -msgid "Note added to your {blogname} order from {order_date}" -msgstr "Poznámka pridaná objednávky zo stránky {blogname} zo dňa {order_date}" - -#: classes/emails/class-wc-email-customer-note.php:36 -msgid "A note has been added to your order" -msgstr "K vašej objednávke bola pridaná poznámka." - -#: classes/emails/class-wc-email-customer-processing-order.php:24 -msgid "Processing order" -msgstr "Spracovávam objednávku" - -#: classes/emails/class-wc-email-customer-processing-order.php:25 -msgid "This is an order notification sent to the customer after payment containing order details." -msgstr "Toto je notifikácia zaslaná po platbe zákazníkovi, ktorá obsahuje detaily objednávky." - -#: classes/emails/class-wc-email-customer-processing-order.php:27 -msgid "Thank you for your order" -msgstr "Ďakujeme za vašu objednávku" - -#: classes/emails/class-wc-email-customer-processing-order.php:28 -msgid "Your {blogname} order receipt from {order_date}" -msgstr "{blogname} - potvrdenie objednávky zo dňa {order_date}" - -#: classes/emails/class-wc-email-customer-reset-password.php:36 -msgid "Reset password" -msgstr "Obnova hesla" - -#: classes/emails/class-wc-email-customer-reset-password.php:37 -msgid "Customer reset password emails are sent when a customer resets their password." -msgstr "Email s obnovou hesla zákazníka je odoslaný ked zákaznik obnoví svoje heslo." - -#: classes/emails/class-wc-email-customer-reset-password.php:42 -msgid "Password Reset for {blogname}" -msgstr "Obnova hesla - {blogname}" - -#: classes/emails/class-wc-email-customer-reset-password.php:43 -msgid "Password Reset Instructions" -msgstr "Návod na obnovu hesla" - -#: classes/emails/class-wc-email-new-order.php:24 -msgid "New order" -msgstr "Nová objednávka" - -#: classes/emails/class-wc-email-new-order.php:25 -msgid "New order emails are sent when an order is received/paid by a customer." -msgstr "Emaily nových objednávok sú odoslané po prijatí/zaplatení objednávky zákazníkom." - -#: classes/emails/class-wc-email-new-order.php:27 -msgid "New customer order" -msgstr "Nová zákaznícka objednávka" - -#: classes/emails/class-wc-email-new-order.php:28 -msgid "[{blogname}] New customer order ({order_number}) - {order_date}" -msgstr "[{blogname}] Nová zákaznícka objednávka ({order_number}) - {order_date}" - -#: classes/emails/class-wc-email-new-order.php:121 -msgid "Recipient(s)" -msgstr "Príjemca/príjemcovia" - -#: classes/emails/class-wc-email-new-order.php:123 -msgid "Enter recipients (comma separated) for this email. Defaults to %s." -msgstr "Zadajte príjemcov (rôznych príjemcov oddeľte čiarkou) pre tento email. Štandardne pre %s." - -#: classes/emails/class-wc-email-new-order.php:130 -msgid "This controls the email subject line. Leave blank to use the default subject: %s." -msgstr "Toto kontroluje predmet emailu. Nechajte prázdne pre štandardný predmet: %s." - -#: classes/emails/class-wc-email-new-order.php:137 -msgid "This controls the main heading contained within the email notification. Leave blank to use the default heading: %s." -msgstr "Toto kontroluje hlavný nadpis zahrnutý v oznamovacích emailoch. . Nechajte prázdne pre štandardný nadpis: %s." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:28 -msgid "Bacs" -msgstr "Banka" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:65 -msgid "Enable Bank Transfer" -msgstr "Povoliť bankový prevod" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:69 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:63 -#: classes/gateways/cod/class-wc-gateway-cod.php:87 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:135 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:126 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:104 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:84 -msgid "Title" -msgstr "Názov" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:71 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:65 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:137 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:128 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:83 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:58 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:106 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:86 -msgid "This controls the title which the user sees during checkout." -msgstr "Nadpis, ktorý vidí užívateľ počas platenia." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:72 -msgid "Direct Bank Transfer" -msgstr "Bankovým prevodom" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:76 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:70 -msgid "Customer Message" -msgstr "Spresňujúce pokyny" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:78 -msgid "Give the customer instructions for paying via BACS, and let them know that their order won't be shipping until the money is received." -msgstr "Dajte zákazníkovi inštrukcie na platenie prevodom (ak bude platba rozpoznaná - variabilný symbol / správa pre príjemcu) a oznámte mu, že tovar nebude expedovaný skôr, ako príde platba na Váš účet." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:79 -msgid "Make your payment directly into our bank account. Please use your Order ID as the payment reference. Your order wont be shipped until the funds have cleared in our account." -msgstr "Preveďte platbu priamo na náš bankový účet. Posím použite číslo objednávky ako variabilný symbol. Bez uvedenia čísla objednávky nemožno Vašu platbu rozpoznať." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:82 -msgid "Account Details" -msgstr "Detaily Účtu" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:84 -msgid "Optionally enter your bank details below for customers to pay into." -msgstr "Nepovinne zadajte nižšie vaše bankové spojenie na ktoré vaši zákazníci platia." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:88 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:163 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:203 -msgid "Account Name" -msgstr "Názov účtu" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:94 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:164 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:204 -msgid "Account Number" -msgstr "Číslo účtu" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:100 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:165 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:205 -msgid "Sort Code" -msgstr "Sort Code (len zahraničie)" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:106 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:166 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:206 -msgid "Bank Name" -msgstr "Názov banky" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:112 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:167 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:207 -msgid "IBAN" -msgstr "IBAN" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:117 -msgid "BIC (formerly Swift)" -msgstr "BIC (predtým Swift)" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:136 -msgid "BACS Payment" -msgstr "Platba prevodom na účet" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:137 -msgid "Allows payments by BACS (Bank Account Clearing System), more commonly known as direct bank/wire transfer." -msgstr "Umožňuje bezhotovostnú platbu prevodom na bankový účet." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:158 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:200 -msgid "Our Details" -msgstr "Naše údaje" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:168 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:208 -msgid "BIC" -msgstr "BIC" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:234 -msgid "Awaiting BACS payment" -msgstr "Čaká sa na prijatie platby prevodom." - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:28 -msgid "Cheque" -msgstr "Šek" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:59 -msgid "Enable Cheque Payment" -msgstr "Povoliť platbu šekom" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:66 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:90 -msgid "Cheque Payment" -msgstr "Platba šekom" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:72 -msgid "Let the customer know the payee and where they should be sending the cheque to and that their order won't be shipping until you receive it." -msgstr "Umožní nakupujúcemu vidieť údaje o predávajúcom. Objednávka nebude expedovaná kým Vám (predávajúcemu) nepríde platba." - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:73 -msgid "Please send your cheque to Store Name, Store Street, Store Town, Store State / County, Store Postcode." -msgstr "Prosím pošlite váš šek na meno obchodu, ulicu, mesto, štát, PSČ." - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:91 -msgid "Allows cheque payments. Why would you take cheques in this day and age? Well you probably wouldn't but it does allow you to make test purchases for testing order emails and the 'success' pages etc." -msgstr "Umožňuje platbu šekom." - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:147 -msgid "Awaiting cheque payment" -msgstr "Čaká sa na platbu šekom" - -#: classes/gateways/cod/class-wc-gateway-cod.php:27 -#: classes/gateways/cod/class-wc-gateway-cod.php:54 -#: classes/gateways/cod/class-wc-gateway-cod.php:90 -msgid "Cash on Delivery" -msgstr "Platba pri doručení/prevzatí" - -#: classes/gateways/cod/class-wc-gateway-cod.php:55 -msgid "Have your customers pay with cash (or by other means) upon delivery." -msgstr "Zákazníci majú platiť v hotovosti pri dodaní." - -#: classes/gateways/cod/class-wc-gateway-cod.php:80 -msgid "Enable COD" -msgstr "Povoliť COD" - -#: classes/gateways/cod/class-wc-gateway-cod.php:81 -msgid "Enable Cash on Delivery" -msgstr "Povoliť Dobierku" - -#: classes/gateways/cod/class-wc-gateway-cod.php:89 -msgid "Payment method title that the customer will see on your website." -msgstr "titulok spôsoby platby, ktorý zákazník uvidí na webových stránkach" - -#: classes/gateways/cod/class-wc-gateway-cod.php:94 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:142 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:133 -#: woocommerce-template.php:751 -msgid "Description" -msgstr "Popis" - -#: classes/gateways/cod/class-wc-gateway-cod.php:96 -msgid "Payment method description that the customer will see on your website." -msgstr "popis spôsoby platby, ktorý zákazník uvidí na webových stránkach" - -#: classes/gateways/cod/class-wc-gateway-cod.php:97 -#: classes/gateways/cod/class-wc-gateway-cod.php:103 -msgid "Pay with cash upon delivery." -msgstr "Zaplatiť hotovosťou pri prebratí zásielky." - -#: classes/gateways/cod/class-wc-gateway-cod.php:100 -msgid "Instructions" -msgstr "Pokyny" - -#: classes/gateways/cod/class-wc-gateway-cod.php:102 -msgid "Instructions that will be added to the thank you page." -msgstr "pokyny, ktoré budú pridané do stránky poďakovania" - -#: classes/gateways/cod/class-wc-gateway-cod.php:106 -msgid "Enable for shipping methods" -msgstr "Povoliť pre rôzne spôsoby dopravy" - -#: classes/gateways/cod/class-wc-gateway-cod.php:111 -msgid "If COD is only available for certain methods, set it up here. Leave blank to enable for all methods." -msgstr "Ak si želáte nastaviť COD dostupné len pri určitých spôsoboch, nastavte ho tu. Nechajte prázdne pre zapnuté pri všetkých spôsoboch." - -#: classes/gateways/cod/class-wc-gateway-cod.php:176 -msgid "Payment to be made upon delivery." -msgstr "platba musí byť vykonaná pri dodaní" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:31 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:160 -msgid "Mijireh Checkout" -msgstr "Mijireh Pokladňa" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:107 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:285 -msgid "Mijireh error:" -msgstr "Mijireh chyba:" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:124 -msgid "Enable Mijireh Checkout" -msgstr "Povoliť Mijireh Pokladňu" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:128 -msgid "Access Key" -msgstr "Prístupový kľúč" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:130 -msgid "The Mijireh access key for your store." -msgstr "Mijireh prístupový kľúč k vášmu obchodu." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:138 -msgid "Credit Card" -msgstr "Platobná Karta" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:145 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:135 -msgid "This controls the description which the user sees during checkout." -msgstr "Popis, ktorý uživatel uvidí pri platení v pokladni." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:164 -msgid "Get started with Mijireh Checkout" -msgstr "Začnite s Mijireh Pokladňou" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:165 -msgid "provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site. Mijireh supports a wide variety of payment gateways: Stripe, Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and more." -msgstr "sprostredkúva plne PCI Kompatibilný, bezpečný spôsb zberu a posielania dát z platobných kariet k vašej platobnej bráne kým zachováva design vašej stránky.Mijireh podporuje široký výer platobných brán: Stripe, Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and iné." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:167 -msgid "Join for free" -msgstr "Prihláste sa zdarma" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:167 -msgid "Learn more about WooCommerce and Mijireh" -msgstr "Zistiť viac o WooCommerce a Mijireh" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:171 -msgid "provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." -msgstr "sprostredkúva plne PCI Kompatibilný, bezpečný spôsb zberu a posielania dát z platobných kariet k vašej platobnej bráne kým zachováva design vašej stránky." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:34 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:129 -msgid "PayPal" -msgstr "PayPal" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:91 -msgid "PayPal standard" -msgstr "PayPal standard" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:92 -msgid "PayPal standard works by sending the user to PayPal to enter their payment information." -msgstr "PayPal standard presmeruje užívateľa na stánku spoločnosti PayPal, kde vloží svoje platobné údaje." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:104 -msgid "Gateway Disabled" -msgstr "Metóda zakázaná" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:104 -msgid "PayPal does not support your store currency." -msgstr "PayPal nepodporuje menu Vášho obchodu." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:122 -msgid "Enable PayPal standard" -msgstr "Povoliť platbu pomocou PayPal standard" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:136 -msgid "Pay via PayPal; you can pay with your credit card if you don't have a PayPal account" -msgstr "PayPal platba; môžete zaplatiť vašou kreditnou kartou aj keď nemáte PayPal účet " - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:139 -msgid "PayPal Email" -msgstr "PayPal E-mail" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:141 -msgid "Please enter your PayPal email address; this is needed in order to take payment." -msgstr "Prosím, zadajte svoju e-mailovú adresu spojenú s účtom PayPal, čo je podmienkou, aby platba prebehla." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:155 -msgid "Invoice Prefix" -msgstr "Predčíslie faktúry" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:157 -msgid "Please enter a prefix for your invoice numbers. If you use your PayPal account for multiple stores ensure this prefix is unique as PayPal will not allow orders with the same invoice number." -msgstr "Prosím zadajte predčíslie faktúry. Ak používate PayPal účet pre viac obchodov, uistite sa že predčíslie je unikátne, nakoľko PayPal neumožňuje objednávky s rovnakým číslom faktúry" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:162 -msgid "Submission method" -msgstr "Metóda zaslania" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:164 -msgid "Use form submission method." -msgstr "Použite metódu zaslania formulára." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:165 -msgid "Enable this to post order data to PayPal via a form instead of using a redirect/querystring." -msgstr "Povoliť túto možnost pre zasielanie dát objednávok PayPal-u pomocou formulára namiesto presmerovania/dopytového reťazca." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:169 -msgid "Page Style" -msgstr "Štýl Stránky" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:171 -msgid "Optionally enter the name of the page style you wish to use. These are defined within your PayPal account." -msgstr "Nepovinne zadajte meno štýlu sránky ktorý chcete použiť. Tie sú definované vo vašom PayPal účte." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:174 -msgid "Optional" -msgstr "Voliteľné" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:177 -msgid "Shipping options" -msgstr "Možnosti prepravy" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:182 -msgid "Shipping details" -msgstr "Údaje o doprave" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:184 -msgid "Send shipping details to PayPal instead of billing." -msgstr "Poslať prepravné detialy PayPal-u miesto platobných." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:186 -msgid "PayPal allows us to send 1 address. If you are using PayPal for shipping labels you may prefer to send the shipping address rather than billing." -msgstr "PayPal povoľuje zaslanie len 1 adresy. Ak používate PayPal, pre prepravné označenie by ste mali preverovať zaslanie doručovacej adresy skôr ako platobnej adresy." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:190 -msgid "Address override" -msgstr "Nahradiť adresu" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:192 -msgid "Enable \"address_override\" to prevent address information from being changed." -msgstr "Povoliť \"address_override a predísť zmene adresy." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:193 -msgid "PayPal verifies addresses therefore this setting can cause errors (we recommend keeping it disabled)." -msgstr "PatPal overuje adresy preto toto nastavenie môže spôsobovať chyby(odporúčame ho nechať vypnuté)." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:197 -msgid "Gateway Testing" -msgstr "Test brány" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:202 -msgid "PayPal sandbox" -msgstr "PayPal sandbox" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:204 -msgid "Enable PayPal sandbox" -msgstr "Povoliť PayPal sandbox (= testovací mód, simulácia platby)" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:206 -msgid "PayPal sandbox can be used to test payments. Sign up for a developer account here." -msgstr "PayPal sandbox môže byť použitý pre test platieb. Prihláste sa pre vývojársky účet tu." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:209 -msgid "Debug Log" -msgstr "Protokol Záznamu Chýb" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:211 -msgid "Enable logging" -msgstr "Zapnúť záznam chýb" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:322 -msgid "Order %s" -msgstr "Objednávka %s" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:332 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:386 -msgid "Shipping via" -msgstr "Preprava pomocou" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:427 -msgid "Thank you for your order. We are now redirecting you to PayPal to make payment." -msgstr "Ďakujeme Vám za Vašu objednávku. Teraz budete presmerovaný na stránky spoločnosti PayPal, kde uskutočnite platbu." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:448 -msgid "Pay via PayPal" -msgstr "Zaplatiť cez PayPal" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:448 -msgid "Cancel order & restore cart" -msgstr "Zrušiť objednávku a vyprázdniť košík" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:502 -msgid "Thank you for your order, please click the button below to pay with PayPal." -msgstr "Ďakujeme Vám za Vašu objednávku, prosím kliknite na tlačidlo nižšie a zaplaťte cez PayPal." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:644 -msgid "Validation error: PayPal amounts do not match (gross %s)." -msgstr "Chyba overenia: Nesedia sumy z PayPal (celkom %s)" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:673 -msgid "IPN payment completed" -msgstr "IPN platba dokončená" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:685 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:693 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:711 -msgid "Payment %s via IPN." -msgstr "Platba %s pomocou IPN (oznámenie o platbe v reálnom čase)." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:698 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:716 -msgid "Order refunded/reversed" -msgstr "Objednávka refundovaná / vrátený tovar" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:699 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:717 -msgid "Order %s has been marked as refunded - PayPal reason code: %s" -msgstr "Objednávka %s bola označená ako refundovaná - PayPal kód príčiny: %s" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:702 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:720 -msgid "Payment for order %s refunded/reversed" -msgstr "Platba objednávky %s refundovaná/zrušená" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:26 -msgid "Google Analytics" -msgstr "Google Analytika" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:27 -msgid "Google Analytics is a free service offered by Google that generates detailed statistics about the visitors to a website." -msgstr "Google Analytics je bezplatná služba ponúkaná spoločnosťou Google, ktorá vytvára detailné štatistiky o návštevníkoch na internetových stránkach." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:63 -msgid "Google Analytics ID" -msgstr "Google Analytika ID" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:64 -msgid "Log into your google analytics account to find your ID. e.g. UA-XXXXX-X" -msgstr "Prihláste sa na svojom účte Google Analytika, kde zistíte svoju ID (napr. UA-XXXXX-X)." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:75 -msgid "Tracking code" -msgstr "Sledovací kód" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:76 -msgid "Add tracking code to your site's footer. You don't need to enable this if using a 3rd party analytics plugin." -msgstr "Pridáva štandardný sledovací kód do zápätia webu. Túto voľbu vypnite, keď používate plugin pre Google Analytiku tretích strán." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:82 -msgid "Add eCommerce tracking code to the thankyou page" -msgstr "Pridá eCommerce sledovací kód na \"Ďakovné\" stránky." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:88 -msgid "Add event tracking code for add to cart actions" -msgstr "Pridať sledovanie objednávky do možností pridať do košíka" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:120 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:180 -#: woocommerce-ajax.php:1652 -msgid "Guest" -msgstr "Neregistrovaný" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:218 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:275 -#: templates/single-product/meta.php:19 -msgid "SKU:" -msgstr "Katalógové číslo:" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:273 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:293 -#: woocommerce.php:982 -msgid "Products" -msgstr "Produkty" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:294 -msgid "Add to Cart" -msgstr "Pridať do košíka" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:26 -msgid "ShareDaddy" -msgstr "ShareDaddy" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:27 -msgid "ShareDaddy is a sharing plugin bundled with JetPack." -msgstr "ShareDaddy je zdieľací plugin prbalený v plugine JetPack." - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:51 -msgid "Output ShareDaddy button?" -msgstr "Odovzdať ShareDaddy tlačidlo?" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:52 -msgid "Enable this option to show the ShareDaddy button on the product page." -msgstr "Povolte túto možnosť a zobrazte ShareDaddy tlačidlo na stránke produktu." - -#: classes/integrations/sharethis/class-wc-sharethis.php:29 -msgid "ShareThis" -msgstr "Zdieľajte" - -#: classes/integrations/sharethis/class-wc-sharethis.php:30 -msgid "ShareThis offers a sharing widget which will allow customers to share links to products with their friends." -msgstr "ShareThis ponúka sharing widget, ktorý umožní zákazníkom zdieľať odkazy na produkty so svojimi priateľmi." - -#: classes/integrations/sharethis/class-wc-sharethis.php:63 -msgid "ShareThis Publisher ID" -msgstr "ShareThis Publisher ID" - -#: classes/integrations/sharethis/class-wc-sharethis.php:64 -msgid "Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons on product pages." -msgstr "Zadajte svoje %1$sShareThis publisher ID%2$s a objaví sa voľba ShareThis na stránke produktu." - -#: classes/integrations/sharethis/class-wc-sharethis.php:69 -msgid "ShareThis Code" -msgstr "ShareThis Kód" - -#: classes/integrations/sharethis/class-wc-sharethis.php:70 -msgid "You can tweak the ShareThis code by editing this option." -msgstr "Môžete upraviť ShareThis kód upravením tejto možnosti." - -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:22 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:329 -msgid "ShareYourCart" -msgstr "ShareYourCart" - -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:23 -msgid "Increase your social media exposure by 10 percent! ShareYourCart helps you get more customers by motivating satisfied customers to talk with their friends about your products. For help with ShareYourCart view the documentation." -msgstr "Zvýšte vaše sociálne zviditeľnenie o 10 percent! ShareYourCart pomáha získať viac zákazníkov motiváciou spokojných zákazníkov aby sa podelili so skúsenosťami priateľom. Pre pomoc s ShareYourCart si pozrite documentáciu." - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:328 -msgid "Share your cart settings" -msgstr "Share your cart nastavenia" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:342 -msgid "Button" -msgstr "Tlačidlo" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:343 -msgid "Customize Button" -msgstr "Upraviť tlačidlo" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:351 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:352 -msgid "Documentation" -msgstr "Dokumentácia" - -#: classes/integrations/shareyourcart/views/admin-page.php:33 -msgid "Setup your ShareYourCart account" -msgstr "Nastavte si ShareYourCart účet" - -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Create an account" -msgstr "Vytvoriť účet" - -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Can't access your account?" -msgstr "Nemôžete sa prihlásiť do svojho účtu?" - -#: classes/integrations/shareyourcart/views/admin-page.php:100 -msgid "Configure" -msgstr "Nastaviť" - -#: classes/integrations/shareyourcart/views/admin-page.php:110 -#: classes/integrations/shareyourcart/views/button-settings-page.php:120 -msgid "Save changes" -msgstr "Uložiť zmeny" - -#: classes/integrations/shareyourcart/views/button-settings-page.php:8 -#: classes/integrations/shareyourcart/views/button-settings-page.php:11 -msgid "Button style" -msgstr "Štýl tlačidla" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:27 -msgid "Flat rates let you define a standard rate per item, or per order." -msgstr "Tu stanovte základnú sadzbu na doručenie za položku, alebo na objednávku." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:78 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:52 -msgid "Enable this shipping method" -msgstr "Povoliť tento spôsob dopravy" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:82 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:81 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:56 -msgid "Method Title" -msgstr "Názov metódy" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:25 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:85 -msgid "Flat Rate" -msgstr "paušálna sadzba" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:116 -msgid "Cost per order" -msgstr "Cena za objednávku" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:122 -msgid "Enter a cost (excluding tax) per order, e.g. 5.00. Leave blank to disable." -msgstr "Zadajte cenu (bez dane) za objednávku, napr. 5.00. Nechajte prázdne pre vypnutie." - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:88 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:143 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:99 -msgid "Method availability" -msgstr "Dostupnosť metódy" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:93 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:148 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:104 -msgid "All allowed countries" -msgstr "Všetky povolené krajiny" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:95 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:99 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:98 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:149 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:153 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:105 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:109 -msgid "Specific Countries" -msgstr "Špecifické krajiny" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:145 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:94 -msgid "Per Order - charge shipping for the entire order as a whole" -msgstr "Na objednávku - cena dopravy pre celú objednávku " - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:146 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:95 -msgid "Per Item - charge shipping for each item individually" -msgstr "Za položku - poplatok poštovné pre každú položku zvlášť" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:147 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:96 -msgid "Per Class - charge shipping for each shipping class in an order" -msgstr "Podľa triedy - poplatok za každú dodaciu triedu v objednávke" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:107 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:81 -msgid "Tax Status" -msgstr "Stav zdaniteľnosti" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:111 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:85 -msgid "Taxable" -msgstr "Zdaniteľný" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:112 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:86 -msgid "None" -msgstr "Žiadny" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:106 -msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -msgstr "Náklady na poštovné v EUR bez dane. Zadajte čiastku, napr. 2.50." - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:114 -msgid "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. Leave blank to disable." -msgstr "Poplatek v EUR bez dane. Zadajte čiastku, napr. 2.50, alebo v percentách, napr. 5%. Nechajte prázdne na vypnutie možností." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:160 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:126 -msgid "Enter a minimum fee amount. Fee's less than this will be increased. Leave blank to disable." -msgstr "Zadajte minimálny poplatok. Poplatky nižšie budú zdvihnuté. Nechajte prázdne pre deaktiváciu." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:485 -#: woocommerce.php:891 -msgid "Shipping Class" -msgstr "Prepravná trieda" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:486 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:100 -msgid "Cost" -msgstr "Náklady" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:486 -msgid "Cost, excluding tax." -msgstr "Náklady bez DPH" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:487 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:112 -msgid "Handling Fee" -msgstr "Manipulačný poplatok" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:487 -msgid "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -msgstr "Poplatok bez dane. Zadajte čiastku, napr. 2.50, alebo percento, napr. 5%." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:518 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:548 -msgid "Select a class…" -msgstr "Zvoľte triedu…" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:523 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:524 -msgid "0.00" -msgstr "0" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:562 -msgid "Delete the selected rates?" -msgstr "Zmazať zvolené sadzby?" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:25 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:145 -msgid "Free Shipping" -msgstr "Doprava zdarma" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:77 -msgid "Enable Free Shipping" -msgstr "Povoliť dopravu zdarma" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:106 -msgid "Free Shipping Requires..." -msgstr "Doprava zdarma vyžaduje..." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:499 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:500 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:110 -#: templates/order/order-details.php:119 templates/order/order-details.php:134 -msgid "N/A" -msgstr "-" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:111 -msgid "A valid free shipping coupon" -msgstr "Platný kupón doprava zdarma" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:112 -msgid "A minimum order amount (defined below)" -msgstr "Minimálna hodnota objednávky (určená nižšie)" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:113 -msgid "A minimum order amount OR a coupon" -msgstr "Minimálna hodnota objednávky alebo kupón" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:114 -msgid "A minimum order amount AND a coupon" -msgstr "Minimálna hodnota objednávky a kupón" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:118 -msgid "Minimum Order Amount" -msgstr "Minimálne objednané množstvo" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:124 -msgid "Users will need to spend this amount to get free shipping (if enabled above)." -msgstr "Zákazníci budú musieť minúť minimálne takúto sumu peňazí aby získali poštovné zadarmo." - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:29 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:59 -msgid "International Delivery" -msgstr "Medzinárodná preprava" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:30 -msgid "International delivery based on flat rate shipping." -msgstr "medzinárodné doručenie na základe paušálneho doručenia" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:89 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:63 -msgid "Availability" -msgstr "Dostupnosť " - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:68 -msgid "Selected countries" -msgstr "vybraté krajiny" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:69 -msgid "Excluding selected countries" -msgstr "s výminkou vybratých krajín" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:73 -msgid "Countries" -msgstr "Krajiny" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:25 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:107 -msgid "Local Delivery" -msgstr "Lokálne doručenie" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:98 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:78 -msgid "Enable" -msgstr "Povoliť" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:100 -msgid "Enable local delivery" -msgstr "Povoliť lokálne doručenie" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:111 -msgid "Fee Type" -msgstr "Typ poplatku" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:113 -msgid "How to calculate delivery charges" -msgstr "ako vypočítať poplatky za doručenie" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 -msgid "Fixed amount" -msgstr "Fixná suma" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:117 -msgid "Percentage of cart total" -msgstr "Percento z celého košíka" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:118 -msgid "Fixed amount per product" -msgstr "Fixná suma na produkt" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:123 -msgid "Delivery Fee" -msgstr "Prepravný Poplatok" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:129 -msgid "What fee do you want to charge for local delivery, disregarded if you choose free. Leave blank to disable." -msgstr "Aký poplatok požadujete za miestne doručenie, nevšímajte si ak je zdarma. Nechajte prázdne pre vypnutie." - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:135 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:91 -msgid "Zip/Post Codes" -msgstr "PSČ/Poštový kód" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:137 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:93 -msgid "What zip/post codes would you like to offer delivery to? Separate codes with a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -msgstr "Ktorým poštovým číslam chcete ponúkať dopravu? Oddeľte čísla čiarkami. Akceptuje náhradné znaky, napr. P* zahŕňa PSČ P30." - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:172 -msgid "Local delivery is a simple shipping method for delivering orders locally." -msgstr "Lokálne doručenie je jednoduchý sposob doručenia objednávok lokálne." - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:25 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:87 -msgid "Local Pickup" -msgstr "Osobný odber" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:80 -msgid "Enable local pickup" -msgstr "Povoliť osobný odber" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:117 -msgid "Apply base tax rate" -msgstr "Použiť základnú daňovú sadzbu" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:119 -msgid "When this shipping method is chosen, apply the base tax rate rather than for the customer's given address." -msgstr "Keď zákazník zvolí spôsob dopravy, použiť základnú daňovú sadzbu radšej ako sadzbu podľa adresy zákazníka." - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:134 -msgid "Local pickup is a simple method which allows the customer to pick up their order themselves." -msgstr "Osobný odber umožňuje zákazníkom prevziať si objednaný tovar osobne. " - -#: classes/shortcodes/class-wc-shortcode-cart.php:53 -#: woocommerce-functions.php:1701 -msgid "Please enter a valid postcode/ZIP." -msgstr "Zadajte, prosím, platné PSČ." - -#: classes/shortcodes/class-wc-shortcode-cart.php:64 -#: classes/shortcodes/class-wc-shortcode-cart.php:70 -msgid "Shipping costs updated." -msgstr "Náklady na doručenie aktualizované." - -#: classes/shortcodes/class-wc-shortcode-checkout.php:73 -msgid "The order totals have been updated. Please confirm your order by pressing the Place Order button at the bottom of the page." -msgstr "Celková cena objednávky bola aktualizovaná. Prosím potvrďte Vašu objednávku tlačídlom \"Objednať\" dole na stránke." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:78 -#: woocommerce-functions.php:1623 -msgid "Please enter your password." -msgstr "Prosím, zadajte svoje heslo." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:93 -msgid "Your password has been reset." -msgstr "Vaše heslo bolo obnovené." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:93 -msgid "Log in" -msgstr "Prihlásiť" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:114 -msgid "Enter a username or e-mail address." -msgstr "Zadajte používateľské meno alebo emailovú adresu." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:121 -msgid "There is no user registered with that email address." -msgstr "Žiadny užívateľ so zadanou emailovou adresou." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:136 -msgid "Invalid username or e-mail." -msgstr "Chybné používateľské meno alebo email." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:150 -msgid "Password reset is not allowed for this user" -msgstr "Obnova hesla nie je povolená tomuto užívateľovi" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:178 -msgid "Check your e-mail for the confirmation link." -msgstr "Skontrolujte si email pre potvrdzovací odkaz." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:198 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:203 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:210 -msgid "Invalid key" -msgstr "Nesprávny kľúč" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:51 -msgid "Please enter a valid order ID" -msgstr "Prosím zadajte platné ID objednávky" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:55 -msgid "Please enter a valid order email" -msgstr "Prosím zadajte platný email" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:74 -msgid "Sorry, we could not find that order id in our database." -msgstr "Prepáčte, nemôžeme nájsť ID objednávky v našej databáze" - -#: classes/shortcodes/class-wc-shortcode-pay.php:64 -#: classes/shortcodes/class-wc-shortcode-pay.php:118 -msgid "Your order has already been paid for. Please contact us if you need assistance." -msgstr "Vaša objednávka už bola zaplatená. Prosím, kontaktujte nás v prípade potreby." - -#: classes/shortcodes/class-wc-shortcode-pay.php:69 -#: classes/shortcodes/class-wc-shortcode-pay.php:125 -#: classes/shortcodes/class-wc-shortcode-view-order.php:51 -#: woocommerce-functions.php:909 woocommerce-functions.php:989 -msgid "Invalid order." -msgstr "Neplatná objednávka." - -#: classes/shortcodes/class-wc-shortcode-pay.php:90 -#: templates/checkout/thankyou.php:40 -#: templates/emails/customer-completed-order.php:18 -#: templates/emails/customer-invoice.php:22 -#: templates/emails/customer-note.php:22 -#: templates/emails/customer-processing-order.php:18 -msgid "Order:" -msgstr "Objednávka:" - -#: classes/shortcodes/class-wc-shortcode-pay.php:94 -#: templates/checkout/thankyou.php:44 -msgid "Date:" -msgstr "Dátum:" - -#: classes/shortcodes/class-wc-shortcode-pay.php:98 -#: templates/checkout/thankyou.php:48 -msgid "Total:" -msgstr "Cena spolu:" - -#: classes/shortcodes/class-wc-shortcode-pay.php:103 -#: templates/checkout/thankyou.php:53 -msgid "Payment method:" -msgstr "Spôsob platby:" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:51 -msgid "My Account →" -msgstr "Môj profil →" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:58 -msgid "Order %s made on %s" -msgstr "Objednávka %s realizovaná %s" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:59 -msgid "Order status: %s" -msgstr "Stav objednávky: %s" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:65 -#: templates/order/tracking.php:31 -msgid "Order Updates" -msgstr "Aktualizácia objednávky" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:71 -msgid "l jS \\of F Y, h:ia" -msgstr "j. F Y, G:i" - -#: classes/widgets/class-wc-widget-best-sellers.php:31 -msgid "Display a list of your best selling products on your site." -msgstr "Zobrazí zoznam Vašich nejpredávanejších produktov." - -#: classes/widgets/class-wc-widget-best-sellers.php:33 -msgid "WooCommerce Best Sellers" -msgstr "E-shop - najpredávanejšie" - -#: classes/widgets/class-wc-widget-best-sellers.php:71 -msgid "Best Sellers" -msgstr "Najpredávanejšie" - -#: classes/widgets/class-wc-widget-best-sellers.php:189 -#: classes/widgets/class-wc-widget-cart.php:109 -#: classes/widgets/class-wc-widget-featured-products.php:169 -#: classes/widgets/class-wc-widget-layered-nav.php:349 -#: classes/widgets/class-wc-widget-onsale.php:176 -#: classes/widgets/class-wc-widget-price-filter.php:179 -#: classes/widgets/class-wc-widget-product-categories.php:185 -#: classes/widgets/class-wc-widget-product-search.php:91 -#: classes/widgets/class-wc-widget-product-tag-cloud.php:101 -#: classes/widgets/class-wc-widget-random-products.php:134 -#: classes/widgets/class-wc-widget-recent-products.php:170 -#: classes/widgets/class-wc-widget-recent-reviews.php:158 -#: classes/widgets/class-wc-widget-recently-viewed.php:166 -#: classes/widgets/class-wc-widget-top-rated-products.php:156 -msgid "Title:" -msgstr "Názov:" - -#: classes/widgets/class-wc-widget-best-sellers.php:192 -#: classes/widgets/class-wc-widget-featured-products.php:172 -#: classes/widgets/class-wc-widget-onsale.php:179 -#: classes/widgets/class-wc-widget-random-products.php:139 -#: classes/widgets/class-wc-widget-recent-products.php:173 -#: classes/widgets/class-wc-widget-recent-reviews.php:161 -#: classes/widgets/class-wc-widget-recently-viewed.php:169 -#: classes/widgets/class-wc-widget-top-rated-products.php:159 -msgid "Number of products to show:" -msgstr "Počet produktov na zobrazenie:" - -#: classes/widgets/class-wc-widget-best-sellers.php:196 -msgid "Hide free products" -msgstr "Schovať produkty zdarma" - -#: classes/widgets/class-wc-widget-cart.php:33 -msgid "Display the user's Cart in the sidebar." -msgstr "Zobraziť používateľský košík v bočnej lište." - -#: classes/widgets/class-wc-widget-cart.php:35 -msgid "WooCommerce Cart" -msgstr "WooCommerce Košík" - -#: classes/widgets/class-wc-widget-cart.php:113 -msgid "Hide if cart is empty" -msgstr "Skryť v prípade, aj je košík prázdny" - -#: classes/widgets/class-wc-widget-featured-products.php:35 -msgid "Display a list of featured products on your site." -msgstr "Zobraziť zoznam špeciálnych ponúk na Vašich stránkach." - -#: classes/widgets/class-wc-widget-featured-products.php:37 -msgid "WooCommerce Featured Products" -msgstr "E-shop - Špeciálna ponuka" - -#: classes/widgets/class-wc-widget-featured-products.php:75 -msgid "Featured Products" -msgstr "Špeciálna ponuka" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:31 -msgid "Shows active layered nav filters so users can see and deactivate them." -msgstr "Zobrazuje aktívne navigačné filtre, aby ich užívateľ mohol deaktivovať" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:33 -msgid "WooCommerce Layered Nav Filters" -msgstr "WooCommerce Layered Nav Filters" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:62 -msgid "Active filters" -msgstr "Aktívne filtre" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:93 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Remove filter" -msgstr "Zrušiť filter" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -msgid "Min" -msgstr "Min" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Max" -msgstr "Max" - -#: classes/widgets/class-wc-widget-layered-nav.php:31 -msgid "Shows a custom attribute in a widget which lets you narrow down the list of products when viewing product categories." -msgstr "Zobrazuje užívateľsky nastavenú vlastnosť vo widgete, ktorý vám umožní zúžiť zoznam produktov pri prezeraní kategórií produktov." - -#: classes/widgets/class-wc-widget-layered-nav.php:33 -msgid "WooCommerce Layered Nav" -msgstr "E-shop - vrstvená navigácia" - -#: classes/widgets/class-wc-widget-layered-nav.php:100 -msgid "Any %s" -msgstr "Akákoľvek %s" - -#: classes/widgets/class-wc-widget-layered-nav.php:352 -msgid "Attribute:" -msgstr "Vlastnosť:" - -#: classes/widgets/class-wc-widget-layered-nav.php:363 -msgid "Display Type:" -msgstr "zobraziť:" - -#: classes/widgets/class-wc-widget-layered-nav.php:365 -msgid "List" -msgstr "Zoznam" - -#: classes/widgets/class-wc-widget-layered-nav.php:366 -msgid "Dropdown" -msgstr "rozbaľovaciu ponuku" - -#: classes/widgets/class-wc-widget-layered-nav.php:369 -msgid "Query Type:" -msgstr "Typ dopytu:" - -#: classes/widgets/class-wc-widget-layered-nav.php:371 -msgid "AND" -msgstr "AND" - -#: classes/widgets/class-wc-widget-layered-nav.php:372 -msgid "OR" -msgstr "OR" - -#: templates/myaccount/form-login.php:29 -#: templates/myaccount/form-lost-password.php:24 -#: templates/shop/form-login.php:20 -msgid "Username or email" -msgstr "Používateľské meno alebo email" - -#: templates/myaccount/form-login.php:33 templates/myaccount/form-login.php:85 -#: templates/shop/form-login.php:24 -msgid "Password" -msgstr "Heslo" - -#: woocommerce-functions.php:975 -msgid "Login →" -msgstr "Prihlásiť sa →" - -#: classes/widgets/class-wc-widget-onsale.php:31 -msgid "Display a list of your on-sale products on your site." -msgstr "Zobraziť zoznam Vašich posledných produktov" - -#: classes/widgets/class-wc-widget-onsale.php:33 -msgid "WooCommerce On-sale" -msgstr "E-shop - výpredaj" - -#: classes/widgets/class-wc-widget-onsale.php:70 -msgid "On Sale" -msgstr "Výpredaj" - -#: classes/widgets/class-wc-widget-price-filter.php:33 -msgid "Shows a price filter slider in a widget which lets you narrow down the list of shown products when viewing product categories." -msgstr "Zobraziť widget cenového filtra s posuvníkom, ktorý Vám umožní špecifikovať cenové rozpätie zobrazených produktov danej kategórie." - -#: classes/widgets/class-wc-widget-price-filter.php:35 -msgid "WooCommerce Price Filter" -msgstr "E-shop - cenový filter" - -#: classes/widgets/class-wc-widget-price-filter.php:136 -msgid "Min price" -msgstr "Minimálna cena" - -#: classes/widgets/class-wc-widget-price-filter.php:137 -msgid "Max price" -msgstr "Maximálna cena" - -#: classes/widgets/class-wc-widget-price-filter.php:138 -msgid "Filter" -msgstr "Filter" - -#: classes/widgets/class-wc-widget-price-filter.php:140 -msgid "Price:" -msgstr "Cena:" - -#: classes/widgets/class-wc-widget-price-filter.php:162 -msgid "Filter by price" -msgstr "Filtrovať podľa ceny" - -#: classes/widgets/class-wc-widget-product-categories.php:33 -msgid "A list or dropdown of product categories." -msgstr "Zoznam alebo rozbaľovacia ponuka kategórií produktov." - -#: classes/widgets/class-wc-widget-product-categories.php:35 -msgid "WooCommerce Product Categories" -msgstr "E-shop - kategórie produktov" - -#: classes/widgets/class-wc-widget-product-categories.php:57 -#: woocommerce.php:821 woocommerce.php:823 -msgid "Product Categories" -msgstr "Kategórie produktov" - -#: classes/widgets/class-wc-widget-product-categories.php:129 -msgid "No product categories exist." -msgstr "Neexistujú kategórie produktov" - -#: classes/widgets/class-wc-widget-product-categories.php:188 -msgid "Order by:" -msgstr "Zoradiť podľa:" - -#: classes/widgets/class-wc-widget-product-categories.php:190 -msgid "Category Order" -msgstr "kategórie objednávky" - -#: classes/widgets/class-wc-widget-product-categories.php:191 -#: templates/single-product-reviews.php:84 woocommerce-ajax.php:1171 -msgid "Name" -msgstr "Meno" - -#: classes/widgets/class-wc-widget-product-categories.php:195 -msgid "Show as dropdown" -msgstr "Zobraziť ako rozbaľovaciu ponuku" - -#: classes/widgets/class-wc-widget-product-categories.php:198 -msgid "Show post counts" -msgstr "Zobraziť počet príspevkov" - -#: classes/widgets/class-wc-widget-product-categories.php:201 -msgid "Show hierarchy" -msgstr "Zobraziť hierarchiu" - -#: classes/widgets/class-wc-widget-product-categories.php:204 -msgid "Only show children for the current category" -msgstr "Zobraziť len odvodené z aktuálnej kategórie" - -#: classes/widgets/class-wc-widget-product-search.php:31 -msgid "A Search box for products only." -msgstr "Vyhľadávacie pole len pre produkty." - -#: classes/widgets/class-wc-widget-product-search.php:33 -msgid "WooCommerce Product Search" -msgstr "E-shop - vyhľadávač produktov" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:31 -msgid "Your most used product tags in cloud format." -msgstr "Vaše nejpoužívanejšie značky produktov usporiadané do formátu oblaku." - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:33 -msgid "WooCommerce Product Tags" -msgstr "E-shop - značky produktu" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:58 woocommerce.php:857 -#: woocommerce.php:859 -msgid "Product Tags" -msgstr "Značky produktu" - -#: classes/widgets/class-wc-widget-random-products.php:24 -msgid "WooCommerce Random Products" -msgstr "WooCommerce náhodné produkty" - -#: classes/widgets/class-wc-widget-random-products.php:27 -msgid "Display a list of random products on your site." -msgstr "Zobraziť zoznam náhodných produktov na vašej stránke." - -#: classes/widgets/class-wc-widget-random-products.php:46 -msgid "Random Products" -msgstr "Náhodné produkty" - -#: classes/widgets/class-wc-widget-random-products.php:145 -#: classes/widgets/class-wc-widget-recent-products.php:177 -msgid "Show hidden product variations" -msgstr "Zobraziť skryté varianty produktu" - -#: classes/widgets/class-wc-widget-recent-products.php:31 -msgid "Display a list of your most recent products on your site." -msgstr "Zobraziť zoznam Vašich posledných produktov" - -#: classes/widgets/class-wc-widget-recent-products.php:33 -msgid "WooCommerce Recent Products" -msgstr "E-shop - posledné produkty" - -#: classes/widgets/class-wc-widget-recent-products.php:70 -msgid "New Products" -msgstr "Nové produkty" - -#: classes/widgets/class-wc-widget-recent-reviews.php:31 -msgid "Display a list of your most recent reviews on your site." -msgstr "Zobraziť zoznam vašich posledných recenzií na webe." - -#: classes/widgets/class-wc-widget-recent-reviews.php:33 -msgid "WooCommerce Recent Reviews" -msgstr "E-shop - posledné recenzie" - -#: classes/widgets/class-wc-widget-recent-reviews.php:71 -msgid "Recent Reviews" -msgstr "Nedávne recenzie" - -#: classes/widgets/class-wc-widget-recent-reviews.php:97 -msgctxt "by comment author" -msgid "by %1$s" -msgstr "od %1$s" - -#: classes/widgets/class-wc-widget-recently-viewed.php:31 -msgid "Display a list of recently viewed products." -msgstr "Zobraziť zoznam naposledy prezeraných produktov." - -#: classes/widgets/class-wc-widget-recently-viewed.php:33 -msgid "WooCommerce Recently Viewed Products" -msgstr "E-shop - naposledy prezerané produkty" - -#: classes/widgets/class-wc-widget-recently-viewed.php:76 -msgid "Recently viewed" -msgstr "Nedávno zobrazené" - -#: classes/widgets/class-wc-widget-top-rated-products.php:33 -msgid "Display a list of top rated products on your site." -msgstr "Zobraziť zoznam nejlepšie hodnotených produktov na Vašich stránkách." - -#: classes/widgets/class-wc-widget-top-rated-products.php:35 -msgid "WooCommerce Top Rated Products" -msgstr "E-shop - nejlepšie hodnotené produkty" - -#: classes/widgets/class-wc-widget-top-rated-products.php:72 -msgid "Top Rated Products" -msgstr "Nejlepšie hodnotené produkty" - -#: i18n/states/AU.php:13 -msgid "Australian Capital Territory" -msgstr "Australian Capital Territory" - -#: i18n/states/AU.php:14 -msgid "New South Wales" -msgstr "New South Wales" - -#: i18n/states/AU.php:15 -msgid "Northern Territory" -msgstr "Northern Territory" - -#: i18n/states/AU.php:16 -msgid "Queensland" -msgstr "Queensland" - -#: i18n/states/AU.php:17 -msgid "South Australia" -msgstr "South Australia" - -#: i18n/states/AU.php:18 -msgid "Tasmania" -msgstr "Tasmania" - -#: i18n/states/AU.php:19 -msgid "Victoria" -msgstr "Victoria" - -#: i18n/states/AU.php:20 -msgid "Western Australia" -msgstr "Western Australia" - -#: i18n/states/BR.php:13 -msgid "Acre" -msgstr "Acre" - -#: i18n/states/BR.php:14 -msgid "Alagoas" -msgstr "Alagoas" - -#: i18n/states/BR.php:15 -msgid "Amapá" -msgstr "Amapá" - -#: i18n/states/BR.php:16 -msgid "Amazonas" -msgstr "Amazonas" - -#: i18n/states/BR.php:17 -msgid "Bahia" -msgstr "Bahia" - -#: i18n/states/BR.php:18 -msgid "Ceará" -msgstr "Ceará" - -#: i18n/states/BR.php:19 -msgid "Distrito Federal" -msgstr "Distrito Federal" - -#: i18n/states/BR.php:20 -msgid "Espírito Santo" -msgstr "Espírito Santo" - -#: i18n/states/BR.php:21 -msgid "Goiás" -msgstr "Goiás" - -#: i18n/states/BR.php:22 -msgid "Maranhão" -msgstr "Maranhão" - -#: i18n/states/BR.php:23 -msgid "Mato Grosso" -msgstr "Mato Grosso" - -#: i18n/states/BR.php:24 -msgid "Mato Grosso do Sul" -msgstr "Mato Grosso do Sul" - -#: i18n/states/BR.php:25 -msgid "Minas Gerais" -msgstr "Minas Gerais" - -#: i18n/states/BR.php:26 -msgid "Pará" -msgstr "Pará" - -#: i18n/states/BR.php:27 -msgid "Paraíba" -msgstr "Paraíba" - -#: i18n/states/BR.php:28 -msgid "Paraná" -msgstr "Paraná" - -#: i18n/states/BR.php:29 -msgid "Pernambuco" -msgstr "Pernambuco" - -#: i18n/states/BR.php:30 -msgid "Piauí" -msgstr "Piauí" - -#: i18n/states/BR.php:31 -msgid "Rio de Janeiro" -msgstr "Rio de Janeiro" - -#: i18n/states/BR.php:32 -msgid "Rio Grande do Norte" -msgstr "Rio Grande do Norte" - -#: i18n/states/BR.php:33 -msgid "Rio Grande do Sul" -msgstr "Rio Grande do Sul" - -#: i18n/states/BR.php:34 -msgid "Rondônia" -msgstr "Rondônia" - -#: i18n/states/BR.php:35 -msgid "Roraima" -msgstr "Roraima" - -#: i18n/states/BR.php:36 -msgid "Santa Catarina" -msgstr "Santa Catarina" - -#: i18n/states/BR.php:37 -msgid "São Paulo" -msgstr "São Paulo" - -#: i18n/states/BR.php:38 -msgid "Sergipe" -msgstr "Sergipe" - -#: i18n/states/BR.php:39 -msgid "Tocantins" -msgstr "Tocantins" - -#: i18n/states/CA.php:13 -msgid "Alberta" -msgstr "Alberta" - -#: i18n/states/CA.php:14 -msgid "British Columbia" -msgstr "British Columbia" - -#: i18n/states/CA.php:15 -msgid "Manitoba" -msgstr "Manitoba" - -#: i18n/states/CA.php:16 -msgid "New Brunswick" -msgstr "New Brunswick" - -#: i18n/states/CA.php:17 -msgid "Newfoundland" -msgstr "Newfoundland" - -#: i18n/states/CA.php:18 -msgid "Northwest Territories" -msgstr "Northwest Territories" - -#: i18n/states/CA.php:19 -msgid "Nova Scotia" -msgstr "Nova Scotia" - -#: i18n/states/CA.php:20 -msgid "Nunavut" -msgstr "Nunavut" - -#: i18n/states/CA.php:21 -msgid "Ontario" -msgstr "Ontario" - -#: i18n/states/CA.php:22 -msgid "Prince Edward Island" -msgstr "Prince Edward Island" - -#: i18n/states/CA.php:23 -msgid "Quebec" -msgstr "Quebec" - -#: i18n/states/CA.php:24 -msgid "Saskatchewan" -msgstr "Saskatchewan" - -#: i18n/states/CA.php:25 -msgid "Yukon Territory" -msgstr "Yukon Territory" - -#: i18n/states/CN.php:13 -msgid "Yunnan / 云南" -msgstr "Yunnan / 云南" - -#: i18n/states/CN.php:14 -msgid "Beijing / 北京" -msgstr "Beijing / 北京" - -#: i18n/states/CN.php:15 -msgid "Tianjin / 天津" -msgstr "Tianjin / 天津" - -#: i18n/states/CN.php:16 -msgid "Hebei / 河北" -msgstr "Hebei / 河北" - -#: i18n/states/CN.php:17 -msgid "Shanxi / 山西" -msgstr "Shanxi / 山西" - -#: i18n/states/CN.php:18 -msgid "Inner Mongolia / 內蒙古" -msgstr "Inner Mongolia / 內蒙古" - -#: i18n/states/CN.php:19 -msgid "Liaoning / 辽宁" -msgstr "Liaoning / 辽宁" - -#: i18n/states/CN.php:20 -msgid "Jilin / 吉林" -msgstr "Jilin / 吉林" - -#: i18n/states/CN.php:21 -msgid "Heilongjiang / 黑龙江" -msgstr "Heilongjiang / 黑龙江" - -#: i18n/states/CN.php:22 -msgid "Shanghai / 上海" -msgstr "Shanghai / 上海" - -#: i18n/states/CN.php:23 -msgid "Jiangsu / 江苏" -msgstr "Jiangsu / 江苏" - -#: i18n/states/CN.php:24 -msgid "Zhejiang / 浙江" -msgstr "Zhejiang / 浙江" - -#: i18n/states/CN.php:25 -msgid "Anhui / 安徽" -msgstr "Anhui / 安徽" - -#: i18n/states/CN.php:26 -msgid "Fujian / 福建" -msgstr "Fujian / 福建" - -#: i18n/states/CN.php:27 -msgid "Jiangxi / 江西" -msgstr "Jiangxi / 江西" - -#: i18n/states/CN.php:28 -msgid "Shandong / 山东" -msgstr "Shandong / 山东" - -#: i18n/states/CN.php:29 -msgid "Henan / 河南" -msgstr "Henan / 河南" - -#: i18n/states/CN.php:30 -msgid "Hubei / 湖北" -msgstr "Hubei / 湖北" - -#: i18n/states/CN.php:31 -msgid "Hunan / 湖南" -msgstr "Hunan / 湖南" - -#: i18n/states/CN.php:32 -msgid "Guangdong / 广东" -msgstr "Guangdong / 广东" - -#: i18n/states/CN.php:33 -msgid "Guangxi Zhuang / 广西壮族" -msgstr "Guangxi Zhuang / 广西壮族" - -#: i18n/states/CN.php:34 -msgid "Hainan / 海南" -msgstr "Hainan / 海南" - -#: i18n/states/CN.php:35 -msgid "Chongqing / 重庆" -msgstr "Chongqing / 重庆" - -#: i18n/states/CN.php:36 -msgid "Sichuan / 四川" -msgstr "Sichuan / 四川" - -#: i18n/states/CN.php:37 -msgid "Guizhou / 贵州" -msgstr "Guizhou / 贵州" - -#: i18n/states/CN.php:38 -msgid "Shaanxi / 陕西" -msgstr "Shaanxi / 陕西" - -#: i18n/states/CN.php:39 -msgid "Gansu / 甘肃" -msgstr "Gansu / 甘肃" - -#: i18n/states/CN.php:40 -msgid "Qinghai / 青海" -msgstr "Qinghai / 青海" - -#: i18n/states/CN.php:41 -msgid "Ningxia Hui / 宁夏" -msgstr "Ningxia Hui / 宁夏" - -#: i18n/states/CN.php:42 -msgid "Macau / 澳门" -msgstr "Macau / 澳门" - -#: i18n/states/CN.php:43 -msgid "Tibet / 西藏" -msgstr "Tibet / 西藏" - -#: i18n/states/CN.php:44 -msgid "Xinjiang / 新疆" -msgstr "Xinjiang / 新疆" - -#: i18n/states/HK.php:13 -msgid "Hong Kong Island" -msgstr "Hong Kong Island" - -#: i18n/states/HK.php:14 -msgid "Kowloon" -msgstr "Kowloon" - -#: i18n/states/HK.php:15 -msgid "New Territories" -msgstr "New Territories" - -#: i18n/states/HU.php:13 -msgid "Bács-Kiskun" -msgstr "Bács-Kiskun" - -#: i18n/states/HU.php:14 -msgid "Békés" -msgstr "Békés" - -#: i18n/states/HU.php:15 -msgid "Baranya" -msgstr "Baranya" - -#: i18n/states/HU.php:16 -msgid "Borsod-Abaúj-Zemplén" -msgstr "Borsod-Abaúj-Zemplén" - -#: i18n/states/HU.php:17 -msgid "Budapest" -msgstr "Budapest" - -#: i18n/states/HU.php:18 -msgid "Csongrád" -msgstr "Csongrád" - -#: i18n/states/HU.php:19 -msgid "Fejér" -msgstr "Fejér" - -#: i18n/states/HU.php:20 -msgid "Győr-Moson-Sopron" -msgstr "Győr-Moson-Sopron" - -#: i18n/states/HU.php:21 -msgid "Hajdú-Bihar" -msgstr "Hajdú-Bihar" - -#: i18n/states/HU.php:22 -msgid "Heves" -msgstr "Heves" - -#: i18n/states/HU.php:23 -msgid "Jász-Nagykun-Szolnok" -msgstr "Jász-Nagykun-Szolnok" - -#: i18n/states/HU.php:24 -msgid "Komárom-Esztergom" -msgstr "Komárom-Esztergom" - -#: i18n/states/HU.php:25 -msgid "Nógrád" -msgstr "Nógrád" - -#: i18n/states/HU.php:26 -msgid "Pest" -msgstr "Pest" - -#: i18n/states/HU.php:27 -msgid "Somogy" -msgstr "Somogy" - -#: i18n/states/HU.php:28 -msgid "Szabolcs-Szatmár-Bereg" -msgstr "Szabolcs-Szatmár-Bereg" - -#: i18n/states/HU.php:29 -msgid "Tolna" -msgstr "Tolna" - -#: i18n/states/HU.php:30 -msgid "Vas" -msgstr "Vas" - -#: i18n/states/HU.php:31 -msgid "Veszprém" -msgstr "Veszprém" - -#: i18n/states/HU.php:32 -msgid "Zala" -msgstr "Zala" - -#: i18n/states/HZ.php:13 i18n/states/NZ.php:14 -msgid "Auckland" -msgstr "Auckland" - -#: i18n/states/HZ.php:14 i18n/states/NZ.php:16 -msgid "Bay of Plenty" -msgstr "Bay of Plenty" - -#: i18n/states/HZ.php:15 i18n/states/NZ.php:25 -msgid "Canterbury" -msgstr "Canterbury" - -#: i18n/states/HZ.php:16 i18n/states/NZ.php:18 -msgid "Hawke’s Bay" -msgstr "Hawke’s Bay" - -#: i18n/states/HZ.php:17 i18n/states/NZ.php:19 -msgid "Manawatu-Wanganui" -msgstr "Manawatu-Wanganui" - -#: i18n/states/HZ.php:18 i18n/states/NZ.php:22 -msgid "Marlborough" -msgstr "Marlborough" - -#: i18n/states/HZ.php:19 i18n/states/NZ.php:21 -msgid "Nelson" -msgstr "Nelson" - -#: i18n/states/HZ.php:20 i18n/states/NZ.php:13 -msgid "Northland" -msgstr "Northland" - -#: i18n/states/HZ.php:21 i18n/states/NZ.php:26 -msgid "Otago" -msgstr "Otago" - -#: i18n/states/HZ.php:22 i18n/states/NZ.php:27 -msgid "Southland" -msgstr "Southland" - -#: i18n/states/HZ.php:23 i18n/states/NZ.php:17 -msgid "Taranaki" -msgstr "Taranaki" - -#: i18n/states/HZ.php:24 i18n/states/NZ.php:23 -msgid "Tasman" -msgstr "Tasman" - -#: i18n/states/HZ.php:25 i18n/states/NZ.php:15 -msgid "Waikato" -msgstr "Waikato" - -#: i18n/states/HZ.php:26 i18n/states/NZ.php:20 -msgid "Wellington" -msgstr "Wellington" - -#: i18n/states/HZ.php:27 i18n/states/NZ.php:24 -msgid "West Coast" -msgstr "West Coast" - -#: i18n/states/ID.php:13 -msgid "Daerah Istimewa Aceh" -msgstr "Daerah Istimewa Aceh" - -#: i18n/states/ID.php:14 -msgid "Sumatera Utara" -msgstr "Sumatera Utara" - -#: i18n/states/ID.php:15 -msgid "Sumatera Barat" -msgstr "Sumatera Barat" - -#: i18n/states/ID.php:16 -msgid "Riau" -msgstr "Riau" - -#: i18n/states/ID.php:17 -msgid "Kepulauan Riau" -msgstr "Kepulauan Riau" - -#: i18n/states/ID.php:18 -msgid "Jambi" -msgstr "Jambi" - -#: i18n/states/ID.php:19 -msgid "Sumatera Selatan" -msgstr "Sumatera Selatan" - -#: i18n/states/ID.php:20 -msgid "Bangka Belitung" -msgstr "Bangka Belitung" - -#: i18n/states/ID.php:21 -msgid "Bengkulu" -msgstr "Bengkulu" - -#: i18n/states/ID.php:22 -msgid "Lampung" -msgstr "Lampung" - -#: i18n/states/ID.php:23 -msgid "DKI Jakarta" -msgstr "DKI Jakarta" - -#: i18n/states/ID.php:24 -msgid "Jawa Barat" -msgstr "Jawa Barat" - -#: i18n/states/ID.php:25 -msgid "Banten" -msgstr "Banten" - -#: i18n/states/ID.php:26 -msgid "Jawa Tengah" -msgstr "Jawa Tengah" - -#: i18n/states/ID.php:27 -msgid "Jawa Timur" -msgstr "Jawa Timur" - -#: i18n/states/ID.php:28 -msgid "Daerah Istimewa Yogyakarta" -msgstr "Daerah Istimewa Yogyakarta" - -#: i18n/states/ID.php:29 -msgid "Bali" -msgstr "Bali" - -#: i18n/states/ID.php:30 -msgid "Nusa Tenggara Barat" -msgstr "Nusa Tenggara Barat" - -#: i18n/states/ID.php:31 -msgid "Nusa Tenggara Timur" -msgstr "Nusa Tenggara Timur" - -#: i18n/states/ID.php:32 -msgid "Kalimantan Barat" -msgstr "Kalimantan Barat" - -#: i18n/states/ID.php:33 -msgid "Kalimantan Tengah" -msgstr "Kalimantan Tengah" - -#: i18n/states/ID.php:34 -msgid "Kalimantan Timur" -msgstr "Kalimantan Timur" - -#: i18n/states/ID.php:35 -msgid "Kalimantan Selatan" -msgstr "Kalimantan Selatan" - -#: i18n/states/ID.php:36 -msgid "Kalimantan Utara" -msgstr "Kalimantan Utara" - -#: i18n/states/ID.php:37 -msgid "Sulawesi Utara" -msgstr "Sulawesi Utara" - -#: i18n/states/ID.php:38 -msgid "Sulawesi Tengah" -msgstr "Sulawesi Tengah" - -#: i18n/states/ID.php:39 -msgid "Sulawesi Tenggara" -msgstr "Sulawesi Tenggara" - -#: i18n/states/ID.php:40 -msgid "Sulawesi Barat" -msgstr "Sulawesi Barat" - -#: i18n/states/ID.php:41 -msgid "Sulawesi Selatan" -msgstr "Sulawesi Selatan" - -#: i18n/states/ID.php:42 -msgid "Gorontalo" -msgstr "Gorontalo" - -#: i18n/states/ID.php:43 -msgid "Maluku" -msgstr "Maluku" - -#: i18n/states/ID.php:44 -msgid "Maluku Utara" -msgstr "Maluku Utara" - -#: i18n/states/ID.php:45 -msgid "Papua" -msgstr "Papua" - -#: i18n/states/ID.php:46 -msgid "Papua Barat" -msgstr "Papua Barat" - -#: i18n/states/IN.php:13 -msgid "Andra Pradesh" -msgstr "Andra Pradesh" - -#: i18n/states/IN.php:14 -msgid "Arunachal Pradesh" -msgstr "Arunachal Pradesh" - -#: i18n/states/IN.php:15 -msgid "Assam" -msgstr "Assam" - -#: i18n/states/IN.php:16 -msgid "Bihar" -msgstr "Bihar" - -#: i18n/states/IN.php:17 -msgid "Chhattisgarh" -msgstr "Chhattisgarh" - -#: i18n/states/IN.php:18 -msgid "Goa" -msgstr "Goa" - -#: i18n/states/IN.php:19 -msgid "Gujarat" -msgstr "Gujarat" - -#: i18n/states/IN.php:20 -msgid "Haryana" -msgstr "Haryana" - -#: i18n/states/IN.php:21 -msgid "Himachal Pradesh" -msgstr "Himachal Pradesh" - -#: i18n/states/IN.php:22 -msgid "Jammu and Kashmir" -msgstr "Jammu and Kashmir" - -#: i18n/states/IN.php:23 -msgid "Jharkhand" -msgstr "Jharkhand" - -#: i18n/states/IN.php:24 -msgid "Karnataka" -msgstr "Karnataka" - -#: i18n/states/IN.php:25 -msgid "Kerala" -msgstr "Kerala" - -#: i18n/states/IN.php:26 -msgid "Madhya Pradesh" -msgstr "Madhya Pradesh" - -#: i18n/states/IN.php:27 -msgid "Maharashtra" -msgstr "Maharashtra" - -#: i18n/states/IN.php:28 -msgid "Manipur" -msgstr "Manipur" - -#: i18n/states/IN.php:29 -msgid "Meghalaya" -msgstr "Meghalaya" - -#: i18n/states/IN.php:30 -msgid "Mizoram" -msgstr "Mizoram" - -#: i18n/states/IN.php:31 -msgid "Nagaland" -msgstr "Nagaland" - -#: i18n/states/IN.php:32 -msgid "Orissa" -msgstr "Orissa" - -#: i18n/states/IN.php:33 -msgid "Punjab" -msgstr "Punjab" - -#: i18n/states/IN.php:34 -msgid "Rajasthan" -msgstr "Rajasthan" - -#: i18n/states/IN.php:35 -msgid "Sikkim" -msgstr "Sikkim" - -#: i18n/states/IN.php:36 -msgid "Tamil Nadu" -msgstr "Tamil Nadu" - -#: i18n/states/IN.php:37 -msgid "Tripura" -msgstr "Tripura" - -#: i18n/states/IN.php:38 -msgid "Uttaranchal" -msgstr "Uttaranchal" - -#: i18n/states/IN.php:39 -msgid "Uttar Pradesh" -msgstr "Uttar Pradesh" - -#: i18n/states/IN.php:40 -msgid "West Bengal" -msgstr "West Bengal" - -#: i18n/states/IN.php:41 -msgid "Andaman and Nicobar Islands" -msgstr "Andaman and Nicobar Islands" - -#: i18n/states/IN.php:42 -msgid "Chandigarh" -msgstr "Chandigarh" - -#: i18n/states/IN.php:43 -msgid "Dadar and Nagar Haveli" -msgstr "Dadar and Nagar Haveli" - -#: i18n/states/IN.php:44 -msgid "Daman and Diu" -msgstr "Daman and Diu" - -#: i18n/states/IN.php:45 -msgid "Delhi" -msgstr "Delhi" - -#: i18n/states/IN.php:46 -msgid "Lakshadeep" -msgstr "Lakshadeep" - -#: i18n/states/IN.php:47 -msgid "Pondicherry (Puducherry)" -msgstr "Pondicherry (Puducherry)" - -#: i18n/states/MY.php:13 -msgid "Johor" -msgstr "Johor" - -#: i18n/states/MY.php:14 -msgid "Kedah" -msgstr "Kedah" - -#: i18n/states/MY.php:15 -msgid "Kelantan" -msgstr "Kelantan" - -#: i18n/states/MY.php:16 -msgid "Melaka" -msgstr "Melaka" - -#: i18n/states/MY.php:17 -msgid "Negeri Sembilan" -msgstr "Negeri Sembilan" - -#: i18n/states/MY.php:18 -msgid "Pahang" -msgstr "Pahang" - -#: i18n/states/MY.php:19 -msgid "Perak" -msgstr "Perak" - -#: i18n/states/MY.php:20 -msgid "Perlis" -msgstr "Perlis" - -#: i18n/states/MY.php:21 -msgid "Pulau Pinang" -msgstr "Pulau Pinang" - -#: i18n/states/MY.php:22 -msgid "Sabah" -msgstr "Sabah" - -#: i18n/states/MY.php:23 -msgid "Sarawak" -msgstr "Sarawak" - -#: i18n/states/MY.php:24 -msgid "Selangor" -msgstr "Selangor" - -#: i18n/states/MY.php:25 -msgid "Terengganu" -msgstr "Terengganu" - -#: i18n/states/MY.php:26 -msgid "W.P. Kuala Lumpur" -msgstr "W.P. Kuala Lumpur" - -#: i18n/states/MY.php:27 -msgid "W.P. Labuan" -msgstr "W.P. Labuan" - -#: i18n/states/MY.php:28 -msgid "W.P. Putrajaya" -msgstr "W.P. Putrajaya" - -#: i18n/states/TH.php:13 -msgid "Amnat Charoen (อำนาจเจริญ)" -msgstr "Amnat Charoen (อำนาจเจริญ)" - -#: i18n/states/TH.php:14 -msgid "Ang Thong (อ่างทอง)" -msgstr "Ang Thong (อ่างทอง)" - -#: i18n/states/TH.php:15 -msgid "Ayutthaya (พระนครศรีอยุธยา)" -msgstr "Ayutthaya (พระนครศรีอยุธยา)" - -#: i18n/states/TH.php:16 -msgid "Bangkok (กรุงเทพมหานคร)" -msgstr "Bangkok (กรุงเทพมหานคร)" - -#: i18n/states/TH.php:17 -msgid "Bueng Kan (บึงกาฬ)" -msgstr "Bueng Kan (บึงกาฬ)" - -#: i18n/states/TH.php:18 -msgid "Buri Ram (บุรีรัมย์)" -msgstr "Buri Ram (บุรีรัมย์)" - -#: i18n/states/TH.php:19 -msgid "Chachoengsao (ฉะเชิงเทรา)" -msgstr "Chachoengsao (ฉะเชิงเทรา)" - -#: i18n/states/TH.php:20 -msgid "Chai Nat (ชัยนาท)" -msgstr "Chai Nat (ชัยนาท)" - -#: i18n/states/TH.php:21 -msgid "Chaiyaphum (ชัยภูมิ)" -msgstr "Chaiyaphum (ชัยภูมิ)" - -#: i18n/states/TH.php:22 -msgid "Chanthaburi (จันทบุรี)" -msgstr "Chanthaburi (จันทบุรี)" - -#: i18n/states/TH.php:23 -msgid "Chiang Mai (เชียงใหม่)" -msgstr "Chiang Mai (เชียงใหม่)" - -#: i18n/states/TH.php:24 -msgid "Chiang Rai (เชียงราย)" -msgstr "Chiang Rai (เชียงราย)" - -#: i18n/states/TH.php:25 -msgid "Chonburi (ชลบุรี)" -msgstr "Chonburi (ชลบุรี)" - -#: i18n/states/TH.php:26 -msgid "Chumphon (ชุมพร)" -msgstr "Chumphon (ชุมพร)" - -#: i18n/states/TH.php:27 -msgid "Kalasin (กาฬสินธุ์)" -msgstr "Kalasin (กาฬสินธุ์)" - -#: i18n/states/TH.php:28 -msgid "Kamphaeng Phet (กำแพงเพชร)" -msgstr "Kamphaeng Phet (กำแพงเพชร)" - -#: i18n/states/TH.php:29 -msgid "Kanchanaburi (กาญจนบุรี)" -msgstr "Kanchanaburi (กาญจนบุรี)" - -#: i18n/states/TH.php:30 -msgid "Khon Kaen (ขอนแก่น)" -msgstr "Khon Kaen (ขอนแก่น)" - -#: i18n/states/TH.php:31 -msgid "Krabi (กระบี่)" -msgstr "Krabi (กระบี่)" - -#: i18n/states/TH.php:32 -msgid "Lampang (ลำปาง)" -msgstr "Lampang (ลำปาง)" - -#: i18n/states/TH.php:33 -msgid "Lamphun (ลำพูน)" -msgstr "Lamphun (ลำพูน)" - -#: i18n/states/TH.php:34 -msgid "Loei (เลย)" -msgstr "Loei (เลย)" - -#: i18n/states/TH.php:35 -msgid "Lopburi (ลพบุรี)" -msgstr "Lopburi (ลพบุรี)" - -#: i18n/states/TH.php:36 -msgid "Mae Hong Son (แม่ฮ่องสอน)" -msgstr "Mae Hong Son (แม่ฮ่องสอน)" - -#: i18n/states/TH.php:37 -msgid "Maha Sarakham (มหาสารคาม)" -msgstr "Maha Sarakham (มหาสารคาม)" - -#: i18n/states/TH.php:38 -msgid "Mukdahan (มุกดาหาร)" -msgstr "Mukdahan (มุกดาหาร)" - -#: i18n/states/TH.php:39 -msgid "Nakhon Nayok (นครนายก)" -msgstr "Nakhon Nayok (นครนายก)" - -#: i18n/states/TH.php:40 -msgid "Nakhon Pathom (นครปฐม)" -msgstr "Nakhon Pathom (นครปฐม)" - -#: i18n/states/TH.php:41 -msgid "Nakhon Phanom (นครพนม)" -msgstr "Nakhon Phanom (นครพนม)" - -#: i18n/states/TH.php:42 -msgid "Nakhon Ratchasima (นครราชสีมา)" -msgstr "Nakhon Ratchasima (นครราชสีมา)" - -#: i18n/states/TH.php:43 -msgid "Nakhon Sawan (นครสวรรค์)" -msgstr "Nakhon Sawan (นครสวรรค์)" - -#: i18n/states/TH.php:44 -msgid "Nakhon Si Thammarat (นครศรีธรรมราช)" -msgstr "Nakhon Si Thammarat (นครศรีธรรมราช)" - -#: i18n/states/TH.php:45 -msgid "Nan (น่าน)" -msgstr "Nan (น่าน)" - -#: i18n/states/TH.php:46 -msgid "Narathiwat (นราธิวาส)" -msgstr "Narathiwat (นราธิวาส)" - -#: i18n/states/TH.php:47 -msgid "Nong Bua Lam Phu (หนองบัวลำภู)" -msgstr "Nong Bua Lam Phu (หนองบัวลำภู)" - -#: i18n/states/TH.php:48 -msgid "Nong Khai (หนองคาย)" -msgstr "Nong Khai (หนองคาย)" - -#: i18n/states/TH.php:49 -msgid "Nonthaburi (นนทบุรี)" -msgstr "Nonthaburi (นนทบุรี)" - -#: i18n/states/TH.php:50 -msgid "Pathum Thani (ปทุมธานี)" -msgstr "Pathum Thani (ปทุมธานี)" - -#: i18n/states/TH.php:51 -msgid "Pattani (ปัตตานี)" -msgstr "Pattani (ปัตตานี)" - -#: i18n/states/TH.php:52 -msgid "Phang Nga (พังงา)" -msgstr "Phang Nga (พังงา)" - -#: i18n/states/TH.php:53 -msgid "Phatthalung (พัทลุง)" -msgstr "Phatthalung (พัทลุง)" - -#: i18n/states/TH.php:54 -msgid "Phayao (พะเยา)" -msgstr "Phayao (พะเยา)" - -#: i18n/states/TH.php:55 -msgid "Phetchabun (เพชรบูรณ์)" -msgstr "Phetchabun (เพชรบูรณ์)" - -#: i18n/states/TH.php:56 -msgid "Phetchaburi (เพชรบุรี)" -msgstr "Phetchaburi (เพชรบุรี)" - -#: i18n/states/TH.php:57 -msgid "Phichit (พิจิตร)" -msgstr "Phichit (พิจิตร)" - -#: i18n/states/TH.php:58 -msgid "Phitsanulok (พิษณุโลก)" -msgstr "Phitsanulok (พิษณุโลก)" - -#: i18n/states/TH.php:59 -msgid "Phrae (แพร่)" -msgstr "Phrae (แพร่)" - -#: i18n/states/TH.php:60 -msgid "Phuket (ภูเก็ต)" -msgstr "Phuket (ภูเก็ต)" - -#: i18n/states/TH.php:61 -msgid "Prachin Buri (ปราจีนบุรี)" -msgstr "Prachin Buri (ปราจีนบุรี)" - -#: i18n/states/TH.php:62 -msgid "Prachuap Khiri Khan (ประจวบคีรีขันธ์)" -msgstr "Prachuap Khiri Khan (ประจวบคีรีขันธ์)" - -#: i18n/states/TH.php:63 -msgid "Ranong (ระนอง)" -msgstr "Ranong (ระนอง)" - -#: i18n/states/TH.php:64 -msgid "Ratchaburi (ราชบุรี)" -msgstr "Ratchaburi (ราชบุรี)" - -#: i18n/states/TH.php:65 -msgid "Rayong (ระยอง)" -msgstr "Rayong (ระยอง)" - -#: i18n/states/TH.php:66 -msgid "Roi Et (ร้อยเอ็ด)" -msgstr "Roi Et (ร้อยเอ็ด)" - -#: i18n/states/TH.php:67 -msgid "Sa Kaeo (สระแก้ว)" -msgstr "Sa Kaeo (สระแก้ว)" - -#: i18n/states/TH.php:68 -msgid "Sakon Nakhon (สกลนคร)" -msgstr "Sakon Nakhon (สกลนคร)" - -#: i18n/states/TH.php:69 -msgid "Samut Prakan (สมุทรปราการ)" -msgstr "Samut Prakan (สมุทรปราการ)" - -#: i18n/states/TH.php:70 -msgid "Samut Sakhon (สมุทรสาคร)" -msgstr "Samut Sakhon (สมุทรสาคร)" - -#: i18n/states/TH.php:71 -msgid "Samut Songkhram (สมุทรสงคราม)" -msgstr "Samut Songkhram (สมุทรสงคราม)" - -#: i18n/states/TH.php:72 -msgid "Saraburi (สระบุรี)" -msgstr "Saraburi (สระบุรี)" - -#: i18n/states/TH.php:73 -msgid "Satun (สตูล)" -msgstr "Satun (สตูล)" - -#: i18n/states/TH.php:74 -msgid "Sing Buri (สิงห์บุรี)" -msgstr "Sing Buri (สิงห์บุรี)" - -#: i18n/states/TH.php:75 -msgid "Sisaket (ศรีสะเกษ)" -msgstr "Sisaket (ศรีสะเกษ)" - -#: i18n/states/TH.php:76 -msgid "Songkhla (สงขลา)" -msgstr "Songkhla (สงขลา)" - -#: i18n/states/TH.php:77 -msgid "Sukhothai (สุโขทัย)" -msgstr "Sukhothai (สุโขทัย)" - -#: i18n/states/TH.php:78 -msgid "Suphan Buri (สุพรรณบุรี)" -msgstr "Suphan Buri (สุพรรณบุรี)" - -#: i18n/states/TH.php:79 -msgid "Surat Thani (สุราษฎร์ธานี)" -msgstr "Surat Thani (สุราษฎร์ธานี)" - -#: i18n/states/TH.php:80 -msgid "Surin (สุรินทร์)" -msgstr "Surin (สุรินทร์)" - -#: i18n/states/TH.php:81 -msgid "Tak (ตาก)" -msgstr "Tak (ตาก)" - -#: i18n/states/TH.php:82 -msgid "Trang (ตรัง)" -msgstr "Trang (ตรัง)" - -#: i18n/states/TH.php:83 -msgid "Trat (ตราด)" -msgstr "Trat (ตราด)" - -#: i18n/states/TH.php:84 -msgid "Ubon Ratchathani (อุบลราชธานี)" -msgstr "Ubon Ratchathani (อุบลราชธานี)" - -#: i18n/states/TH.php:85 -msgid "Udon Thani (อุดรธานี)" -msgstr "Udon Thani (อุดรธานี)" - -#: i18n/states/TH.php:86 -msgid "Uthai Thani (อุทัยธานี)" -msgstr "Uthai Thani (อุทัยธานี)" - -#: i18n/states/TH.php:87 -msgid "Uttaradit (อุตรดิตถ์)" -msgstr "Uttaradit (อุตรดิตถ์)" - -#: i18n/states/TH.php:88 -msgid "Yala (ยะลา)" -msgstr "Yala (ยะลา)" - -#: i18n/states/TH.php:89 -msgid "Yasothon (ยโสธร)" -msgstr "Yasothon (ยโสธร)" - -#: i18n/states/US.php:13 -msgid "Alabama" -msgstr "Alabama" - -#: i18n/states/US.php:14 -msgid "Alaska" -msgstr "Aljaška" - -#: i18n/states/US.php:15 -msgid "Arizona" -msgstr "Arizona" - -#: i18n/states/US.php:16 -msgid "Arkansas" -msgstr "Arkansas" - -#: i18n/states/US.php:17 -msgid "California" -msgstr "California" - -#: i18n/states/US.php:18 -msgid "Colorado" -msgstr "Colorado" - -#: i18n/states/US.php:19 -msgid "Connecticut" -msgstr "Connecticut" - -#: i18n/states/US.php:20 -msgid "Delaware" -msgstr "Delaware" - -#: i18n/states/US.php:21 -msgid "District Of Columbia" -msgstr "District Of Columbia" - -#: i18n/states/US.php:22 -msgid "Florida" -msgstr "Florida" - -#: i18n/states/US.php:24 -msgid "Hawaii" -msgstr "Hawaii" - -#: i18n/states/US.php:25 -msgid "Idaho" -msgstr "Idaho" - -#: i18n/states/US.php:26 -msgid "Illinois" -msgstr "Illinois" - -#: i18n/states/US.php:27 -msgid "Indiana" -msgstr "Indiana" - -#: i18n/states/US.php:28 -msgid "Iowa" -msgstr "Iowa" - -#: i18n/states/US.php:29 -msgid "Kansas" -msgstr "Kansas" - -#: i18n/states/US.php:30 -msgid "Kentucky" -msgstr "Kentucky" - -#: i18n/states/US.php:31 -msgid "Louisiana" -msgstr "Louisiana" - -#: i18n/states/US.php:32 -msgid "Maine" -msgstr "Maine" - -#: i18n/states/US.php:33 -msgid "Maryland" -msgstr "Maryland" - -#: i18n/states/US.php:34 -msgid "Massachusetts" -msgstr "Massachusetts" - -#: i18n/states/US.php:35 -msgid "Michigan" -msgstr "Michigan" - -#: i18n/states/US.php:36 -msgid "Minnesota" -msgstr "Minnesota" - -#: i18n/states/US.php:37 -msgid "Mississippi" -msgstr "Mississippi" - -#: i18n/states/US.php:38 -msgid "Missouri" -msgstr "Missouri" - -#: i18n/states/US.php:39 -msgid "Montana" -msgstr "Montana" - -#: i18n/states/US.php:40 -msgid "Nebraska" -msgstr "Nebraska" - -#: i18n/states/US.php:41 -msgid "Nevada" -msgstr "Nevada" - -#: i18n/states/US.php:42 -msgid "New Hampshire" -msgstr "New Hampshire" - -#: i18n/states/US.php:43 -msgid "New Jersey" -msgstr "New Jersey" - -#: i18n/states/US.php:44 -msgid "New Mexico" -msgstr "New Mexico" - -#: i18n/states/US.php:45 -msgid "New York" -msgstr "New York" - -#: i18n/states/US.php:46 -msgid "North Carolina" -msgstr "North Carolina" - -#: i18n/states/US.php:47 -msgid "North Dakota" -msgstr "North Dakota" - -#: i18n/states/US.php:48 -msgid "Ohio" -msgstr "Ohio" - -#: i18n/states/US.php:49 -msgid "Oklahoma" -msgstr "Oklahoma" - -#: i18n/states/US.php:50 -msgid "Oregon" -msgstr "Oregon" - -#: i18n/states/US.php:51 -msgid "Pennsylvania" -msgstr "Pennsylvania" - -#: i18n/states/US.php:52 -msgid "Rhode Island" -msgstr "Rhode Island" - -#: i18n/states/US.php:53 -msgid "South Carolina" -msgstr "South Carolina" - -#: i18n/states/US.php:54 -msgid "South Dakota" -msgstr "South Dakota" - -#: i18n/states/US.php:55 -msgid "Tennessee" -msgstr "Tennessee" - -#: i18n/states/US.php:56 -msgid "Texas" -msgstr "Texas" - -#: i18n/states/US.php:57 -msgid "Utah" -msgstr "Utah" - -#: i18n/states/US.php:58 -msgid "Vermont" -msgstr "Vermont" - -#: i18n/states/US.php:59 -msgid "Virginia" -msgstr "Virginia" - -#: i18n/states/US.php:60 -msgid "Washington" -msgstr "Washington" - -#: i18n/states/US.php:61 -msgid "West Virginia" -msgstr "West Virginia" - -#: i18n/states/US.php:62 -msgid "Wisconsin" -msgstr "Wisconsin" - -#: i18n/states/US.php:63 -msgid "Wyoming" -msgstr "Wyoming" - -#: i18n/states/US.php:64 -msgid "Armed Forces (AA)" -msgstr "Armed Forces (AA)" - -#: i18n/states/US.php:65 -msgid "Armed Forces (AE)" -msgstr "Armed Forces (AE)" - -#: i18n/states/US.php:66 -msgid "Armed Forces (AP)" -msgstr "Armed Forces (AP)" - -#: i18n/states/US.php:67 -msgid "American Samoa" -msgstr "American Samoa" - -#: i18n/states/US.php:68 -msgid "Guam" -msgstr "Guam" - -#: i18n/states/US.php:69 -msgid "Northern Mariana Islands" -msgstr "Northern Mariana Islands" - -#: i18n/states/US.php:70 -msgid "Puerto Rico" -msgstr "Puerto Rico" - -#: i18n/states/US.php:71 -msgid "US Minor Outlying Islands" -msgstr "South Georgia/Sandwich Islands" - -#: i18n/states/US.php:72 -msgid "US Virgin Islands" -msgstr "US Virgin Islands" - -#: i18n/states/ZA.php:13 -msgid "Eastern Cape" -msgstr "Eastern Cape" - -#: i18n/states/ZA.php:14 -msgid "Free State" -msgstr "Free State" - -#: i18n/states/ZA.php:15 -msgid "Gauteng" -msgstr "Gauteng" - -#: i18n/states/ZA.php:16 -msgid "KwaZulu-Natal" -msgstr "KwaZulu-Natal" - -#: i18n/states/ZA.php:17 -msgid "Limpopo" -msgstr "Limpopo" - -#: i18n/states/ZA.php:18 -msgid "Mpumalanga" -msgstr "Mpumalanga" - -#: i18n/states/ZA.php:19 -msgid "Northern Cape" -msgstr "Northern Cape" - -#: i18n/states/ZA.php:20 -msgid "North West" -msgstr "North West" - -#: i18n/states/ZA.php:21 -msgid "Western Cape" -msgstr "Western Cape" - -#: i18n/strings.php:16 -msgid "pending" -msgstr "Čaká na vybavenie" - -#: i18n/strings.php:17 -msgid "failed" -msgstr "Neúspešná" - -#: i18n/strings.php:18 -msgid "on-hold" -msgstr "Pozastavená" - -#: i18n/strings.php:19 -msgid "processing" -msgstr "Spracováva sa" - -#: i18n/strings.php:20 -msgid "completed" -msgstr "Vybavená" - -#: i18n/strings.php:21 -msgid "refunded" -msgstr "Refundovaná" - -#: i18n/strings.php:22 -msgid "cancelled" -msgstr "Zrušená" - -#: templates/cart/cart-empty.php:14 -msgid "Your cart is currently empty." -msgstr "Váš košík je prázdny." - -#: templates/cart/cart-empty.php:18 -msgid "← Return To Shop" -msgstr "← späť do obchodu" - -#: templates/cart/cart.php:28 templates/checkout/form-pay.php:19 -#: templates/checkout/review-order.php:21 -#: templates/emails/admin-new-order.php:22 -#: templates/emails/customer-completed-order.php:23 -#: templates/emails/customer-invoice.php:27 -#: templates/emails/customer-note.php:27 -#: templates/emails/customer-processing-order.php:23 -#: templates/order/order-details.php:20 woocommerce.php:983 -msgid "Product" -msgstr "Produkt" - -#: templates/cart/cart.php:29 templates/emails/admin-new-order.php:24 -#: templates/emails/customer-completed-order.php:25 -#: templates/emails/customer-invoice.php:29 -#: templates/emails/customer-note.php:29 -#: templates/emails/customer-processing-order.php:25 -msgid "Price" -msgstr "Cena" - -#: templates/cart/cart.php:30 templates/emails/admin-new-order.php:23 -#: templates/emails/customer-completed-order.php:24 -#: templates/emails/customer-invoice.php:28 -#: templates/emails/customer-note.php:28 -#: templates/emails/customer-processing-order.php:24 -msgid "Quantity" -msgstr "Množstvo" - -#: templates/cart/cart.php:31 templates/checkout/review-order.php:22 -#: templates/myaccount/my-orders.php:35 templates/order/order-details.php:21 -msgid "Total" -msgstr "Cena spolu" - -#: templates/cart/cart.php:47 -msgid "Remove this item" -msgstr "Odstrániť túto položku" - -#: templates/cart/cart.php:100 -#: templates/single-product/add-to-cart/quantity.php:12 -msgctxt "Product quantity input tooltip" -msgid "Qty" -msgstr "Počet" - -#: templates/cart/cart.php:127 woocommerce.php:1096 -msgid "Coupon" -msgstr "Zľavový kupón" - -#: templates/cart/cart.php:127 templates/checkout/form-coupon.php:29 -msgid "Apply Coupon" -msgstr "Použiť zľavový kupón" - -#: templates/cart/cart.php:134 -msgid "Update Cart" -msgstr "Aktualizovať" - -#: templates/cart/cart.php:134 -msgid "Proceed to Checkout →" -msgstr "Pokračovať do pokladne →" - -#: templates/cart/cross-sells.php:38 -msgid "You may be interested in…" -msgstr "Možno by Vás zaujímalo…" - -#: templates/cart/mini-cart.php:55 -msgid "No products in the cart." -msgstr "Žiadne produkty v košíku." - -#: templates/cart/mini-cart.php:63 -msgid "Subtotal" -msgstr "Medzisúčet" - -#: templates/cart/mini-cart.php:69 -msgid "Checkout →" -msgstr "Pokladňa →" - -#: templates/cart/shipping-calculator.php:22 -msgid "Calculate Shipping" -msgstr "Vypočítať poplatok za dopravu" - -#: templates/cart/shipping-calculator.php:28 woocommerce-template.php:1334 -msgid "Select a country…" -msgstr "Vyberte krajinu…" - -#: templates/cart/shipping-calculator.php:45 -#: templates/cart/shipping-calculator.php:51 -#: templates/cart/shipping-calculator.php:63 -msgid "State / county" -msgstr "Okres" - -#: templates/cart/shipping-calculator.php:52 woocommerce-template.php:1384 -msgid "Select a state…" -msgstr "Vyberte štát…" - -#: templates/cart/shipping-calculator.php:85 -msgid "Update Totals" -msgstr "Aktualizovať celkové čiastky" - -#: templates/cart/shipping-methods.php:32 -msgid "Free" -msgstr "Zadarmo" - -#: templates/cart/shipping-methods.php:68 -msgid "Please fill in your details to see available shipping methods." -msgstr "Prosím, vyplňte vaše údaje pre zobrazenie dostupných spôsobov prepravy." - -#: templates/cart/totals.php:22 -msgid "Cart Totals" -msgstr "Celkom k platbe" - -#: templates/cart/totals.php:28 templates/checkout/review-order.php:27 -msgid "Cart Subtotal" -msgstr "Medzisúčet" - -#: templates/cart/totals.php:35 templates/checkout/review-order.php:34 -#: woocommerce.php:1690 -msgid "Cart Discount" -msgstr "Zľava z nákupu" - -#: templates/cart/totals.php:35 templates/cart/totals.php:83 -msgid "[Remove]" -msgstr "[Odstrániť]" - -#: templates/cart/totals.php:46 templates/checkout/review-order.php:45 -msgid "Shipping" -msgstr "Doprava" - -#: templates/cart/totals.php:83 templates/checkout/review-order.php:82 -msgid "Order Discount" -msgstr "Zľava na nákup" - -#: templates/cart/totals.php:92 templates/checkout/review-order.php:91 -msgid "Order Total" -msgstr "Cena spolu" - -#: templates/cart/totals.php:121 -msgid " (taxes estimated for %s)" -msgstr "(dane určené pre %s)" - -#: templates/cart/totals.php:123 -msgid "Note: Shipping and taxes are estimated%s and will be updated during checkout based on your billing and shipping information." -msgstr "Cena za dopravu (pošta, kuriér) bude stanovená dodatočne na základe Vašich údajov z objednávky (miesta doručenia)" - -#: templates/cart/totals.php:135 -msgid "No shipping methods were found; please recalculate your shipping and enter your state/county and zip/postcode to ensure there are no other available methods for your location." -msgstr "Nenašli za žiadne spôsoby dopravy, prosím prepočítajte si dopravu a zadajte PSČ pre uistenie, že neexistujú žiadne spôsoby dopravy pre vašu adresu." - -#: templates/cart/shipping-methods.php:76 templates/cart/totals.php:147 -msgid "Sorry, it seems that there are no available shipping methods for your location (%s)." -msgstr "Je nám ľúto, ale zdá sa, že nie sú k dispozícii žiadne spôsoby dopravy do Vášho štátu (%s)." - -#: templates/cart/shipping-methods.php:76 templates/cart/totals.php:147 -msgid "If you require assistance or wish to make alternate arrangements please contact us." -msgstr "Ak potrebujete našu pomoc, alebo si želáte dohodnúť sa na inom postupe, neváhajte nás kontaktovať." - -#: templates/checkout/cart-errors.php:16 -msgid "There are some issues with the items in your cart (shown above). Please go back to the cart page and resolve these issues before checking out." -msgstr "Existujú niektoré problémy s položkami v vašom košíku (pozri vyššie). Prosím, vráťte sa do košíka a vyriešte tieto problémy before checking out." - -#: templates/checkout/cart-errors.php:20 -msgid "← Return To Cart" -msgstr "← Späť do košíka" - -#: templates/checkout/form-billing.php:17 -msgid "Billing & Shipping" -msgstr "Platobná & Dopravná" - -#: templates/checkout/form-billing.php:21 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:19 templates/myaccount/my-address.php:25 -#: templates/order/order-details.php:115 -msgid "Billing Address" -msgstr "Fakturačná adresa" - -#: templates/checkout/form-billing.php:42 -msgid "Create an account?" -msgstr "Vytvoriť účet?" - -#: templates/checkout/form-billing.php:51 -msgid "Create an account by entering the information below. If you are a returning customer please login at the top of the page." -msgstr "Vytvorte si účet vyplnením informácií. Ak ste už zaregistrovaný prosím prihláste sa" - -#: templates/checkout/form-checkout.php:20 -msgid "You must be logged in to checkout." -msgstr "Aby ste mohli zaplatiť, musíte byť prihlásený." - -#: templates/checkout/form-checkout.php:51 -msgid "Your order" -msgstr "Vaša objednávka" - -#: templates/checkout/form-coupon.php:17 -msgid "Have a coupon?" -msgstr "Máte kupón?" - -#: templates/checkout/form-coupon.php:20 -msgid "Click here to enter your code" -msgstr "Kliknite sem pre zadanie kódu" - -#: templates/checkout/form-coupon.php:25 -msgid "Coupon code" -msgstr "Kód kupónu" - -#: templates/checkout/form-login.php:14 -msgid "Returning customer?" -msgstr "Už ste u nás nakupovali?" - -#: templates/checkout/form-login.php:17 -msgid "Click here to login" -msgstr "Kliknite sem pre prihlásenie" - -#: templates/checkout/form-login.php:22 -msgid "If you have shopped with us before, please enter your details in the boxes below. If you are a new customer please proceed to the Billing & Shipping section." -msgstr "Ak ste u nás už nakupovali, prosím, vyplňte vaše údaje. Ak ste nový zákazník, pokračujte, prosím, na stránku Platenie & Doprava." - -#: templates/checkout/form-pay.php:20 -msgid "Qty" -msgstr "Počet ks" - -#: templates/checkout/form-pay.php:21 -msgid "Totals" -msgstr "Spolu" - -#: templates/checkout/form-pay.php:78 -msgid "Sorry, it seems that there are no available payment methods for your location. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "Ospravedlňujeme sa, ale zdá sa, že nie sú k dispozícii žiadne spôsoby platby pre Váš región. Prosím, kontaktujte nás, ak budete potrebovať pomoc, alebo dohodnúťsa na náhradnom riešení." - -#: templates/checkout/form-pay.php:87 -msgid "Pay for order" -msgstr "Zaplatiť za objednávku" - -#: templates/checkout/form-shipping.php:32 -msgid "Ship to billing address?" -msgstr "Doručiť na fakturačnú adresu?" - -#: templates/checkout/form-shipping.php:35 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:20 templates/order/order-details.php:130 -msgid "Shipping Address" -msgstr "Adresa pre zaslanie" - -#: templates/checkout/form-shipping.php:59 -#: templates/single-product/tabs/additional-information.php:14 -#: woocommerce-template.php:759 -msgid "Additional Information" -msgstr "Ďalšie informácie" - -#: templates/checkout/review-order.php:174 -msgid "Please fill in your details above to see available payment methods." -msgstr "Vyplňte, prosím, svoje kontaktné údaje vyššie na zobrazenie dostupných spôsobov platby." - -#: templates/checkout/review-order.php:176 -msgid "Sorry, it seems that there are no available payment methods for your state. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "Ospravedlňujeme sa, ale zdá sa, že nie sú k dispozícii žiadne spôsoby platby pre Váš štát. Prosím, kontaktujte nás, ak budete potrebovať pomoc, alebo dohodnúť sa na náhradnom riešení." - -#: templates/checkout/review-order.php:185 -msgid "Since your browser does not support JavaScript, or it is disabled, please ensure you click the Update Totals button before placing your order. You may be charged more than the amount stated above if you fail to do so." -msgstr "Protože Váš prehliadač nepodporuje JavaScript, alebo je zakázaný, prosím, ubezpečte sa kliknutím na tlačidlo Prepočítať pred odoslaním objednávky. Ak tak nespravíte, poplatky sa môžu líšiť od tých uvedených vyššie." - -#: templates/checkout/review-order.php:185 -msgid "Update totals" -msgstr "Prepočítať" - -#: templates/checkout/review-order.php:192 -msgid "Place order" -msgstr "Objednať" - -#: templates/checkout/review-order.php:199 -msgid "I have read and accept the" -msgstr "Súhlasím s " - -#: templates/checkout/review-order.php:199 -msgid "terms & conditions" -msgstr "Obchodnými podmienkami" - -#: templates/checkout/thankyou.php:18 -msgid "Unfortunately your order cannot be processed as the originating bank/merchant has declined your transaction." -msgstr "Žiaľ Vaša objednávka nemôže byť spracovaná kvôli odmietnutiu transakcie platobnou bránou." - -#: templates/checkout/thankyou.php:22 -msgid "Please attempt your purchase again or go to your account page." -msgstr "Prosím, zopakujte svoj nákup alebo prejdite na stránku svojho účtu" - -#: templates/checkout/thankyou.php:24 -msgid "Please attempt your purchase again." -msgstr "Prosím, zopakujte svoj nákup." - -#: templates/checkout/thankyou.php:36 templates/checkout/thankyou.php:67 -msgid "Thank you. Your order has been received." -msgstr "Ďakujeme. Vaša objednávka bola prijatá." - -#: templates/emails/admin-new-order.php:13 -#: templates/emails/plain/admin-new-order.php:13 -msgid "You have received an order from %s. Their order is as follows:" -msgstr "Dostali ste objednávku od %s. Objednávka obsahuje:" - -#: templates/emails/admin-new-order.php:17 -msgid "Order: %s" -msgstr "Objednávka: %s" - -#: templates/emails/admin-new-order.php:50 -#: templates/emails/customer-completed-order.php:51 -#: templates/emails/customer-note.php:55 -#: templates/emails/customer-processing-order.php:51 -#: templates/emails/plain/admin-new-order.php:38 -#: templates/order/order-details.php:97 -msgid "Customer details" -msgstr "Informácie o zákazníkovi" - -#: templates/emails/admin-new-order.php:53 -#: templates/emails/customer-completed-order.php:54 -#: templates/emails/customer-note.php:58 -#: templates/emails/customer-processing-order.php:54 -#: templates/emails/plain/admin-new-order.php:41 -#: templates/emails/plain/customer-completed-order.php:41 -#: templates/emails/plain/customer-note.php:49 -#: templates/emails/plain/customer-processing-order.php:41 -#: templates/order/order-details.php:101 -msgid "Email:" -msgstr "E-mail:" - -#: templates/emails/admin-new-order.php:56 -#: templates/emails/customer-completed-order.php:57 -#: templates/emails/customer-note.php:61 -#: templates/emails/customer-processing-order.php:57 -#: templates/emails/plain/admin-new-order.php:44 -#: templates/emails/plain/customer-completed-order.php:44 -#: templates/emails/plain/customer-note.php:52 -#: templates/emails/plain/customer-processing-order.php:44 -msgid "Tel:" -msgstr "Tel:" - -#: templates/emails/customer-completed-order.php:14 -#: templates/emails/plain/customer-completed-order.php:13 -msgid "Hi there. Your recent order on %s has been completed. Your order details are shown below for your reference:" -msgstr "" -"Vážený zákazník, \n" -"Vaša objednávka v eshope %s bola vybavená. Podrobnosti objednávky sú zobrazené nižšie:" - -#: templates/emails/customer-invoice.php:16 -#: templates/emails/plain/customer-invoice.php:14 -msgid "An order has been created for you on %s. To pay for this order please use the following link: %s" -msgstr "Vaša objednávka na stránke %s bola vytvorená. Pre zaplatenie, prosím, použite nasledujúci odkaz: %s" - -#: templates/emails/customer-invoice.php:16 -msgid "pay" -msgstr "zaplatiť" - -#: templates/emails/customer-new-account.php:14 -#: templates/emails/plain/customer-new-account.php:13 -msgid "Thanks for creating an account on %s. Your username is %s." -msgstr "Vitajte na %s. Ďakujeme, že ste si u nás vytvorili účet. Vaše používateľské meno je: %s. " - -#: templates/emails/customer-new-account.php:16 -#: templates/emails/plain/customer-new-account.php:15 -msgid "You can access your account area here: %s." -msgstr "Na Váš účet sa môžete prihlásiť tu: %s." - -#: templates/emails/customer-note.php:14 -#: templates/emails/plain/customer-note.php:13 -msgid "Hello, a note has just been added to your order:" -msgstr "Dobrý deň, k Vašej objednávke bola pridaná poznámka:" - -#: templates/emails/customer-note.php:18 -#: templates/emails/plain/customer-note.php:21 -msgid "For your reference, your order details are shown below." -msgstr "Tu je zhrnutie Vašej objednávky pre Váš prehľad:" - -#: templates/emails/customer-processing-order.php:14 -#: templates/emails/plain/customer-processing-order.php:13 -msgid "Your order has been received and is now being processed. Your order details are shown below for your reference:" -msgstr "Vaša objednávka bola prijatá a práve ju spracúvame. Detaily objednávky sú zobrazené nižšie:" - -#: templates/emails/customer-reset-password.php:14 -#: templates/emails/plain/customer-reset-password.php:13 -msgid "Someone requested that the password be reset for the following account:" -msgstr "Niekto si vyžiadal obnovu hesla pre nasledujúci účet." - -#: templates/emails/customer-reset-password.php:15 -#: templates/emails/plain/customer-reset-password.php:15 -msgid "Username: %s" -msgstr "Používateľské meno: %s" - -#: templates/emails/customer-reset-password.php:16 -#: templates/emails/plain/customer-reset-password.php:16 -msgid "If this was a mistake, just ignore this email and nothing will happen." -msgstr "Ak to bola chyba, len ignorujte tento email a nič sa nestane." - -#: templates/emails/customer-reset-password.php:17 -#: templates/emails/plain/customer-reset-password.php:17 -msgid "To reset your password, visit the following address:" -msgstr "Pre obnovu hesla navštívte nasledujúci odkaz:" - -#: templates/emails/customer-reset-password.php:20 -msgid "Click here to reset your password" -msgstr "Kliknite sem pre obnovenie hesla." - -#: templates/emails/email-addresses.php:18 -#: templates/emails/plain/email-addresses.php:12 -msgid "Billing address" -msgstr "Fakturačná adresa" - -#: templates/emails/email-addresses.php:28 -#: templates/emails/plain/email-addresses.php:17 -msgid "Shipping address" -msgstr "Dodacia adresa" - -#: templates/emails/email-order-items.php:47 -msgid "Download %d:" -msgstr "Stiahnuť %d:" - -#: templates/emails/email-order-items.php:49 -msgid "Download:" -msgstr "Stiahnutie:" - -#: templates/emails/plain/admin-new-order.php:19 -#: templates/emails/plain/customer-completed-order.php:19 -#: templates/emails/plain/customer-invoice.php:20 -#: templates/emails/plain/customer-note.php:27 -#: templates/emails/plain/customer-processing-order.php:19 -msgid "Order number: %s" -msgstr "Číslo objednávky: %s" - -#: templates/emails/plain/admin-new-order.php:20 -#: templates/emails/plain/customer-completed-order.php:20 -#: templates/emails/plain/customer-invoice.php:21 -#: templates/emails/plain/customer-note.php:28 -#: templates/emails/plain/customer-processing-order.php:20 -msgid "Order date: %s" -msgstr "Dátum objednávky: %s" - -#: templates/emails/plain/admin-new-order.php:20 -msgid "jS F Y" -msgstr "jS F Y" - -#: templates/emails/plain/customer-completed-order.php:38 -#: templates/emails/plain/customer-note.php:46 -#: templates/emails/plain/customer-processing-order.php:38 -msgid "Your details" -msgstr "Vaše podrobnosti" - -#: templates/emails/plain/email-order-items.php:28 -msgid "Quantity: %s" -msgstr "Počet: %s" - -#: templates/emails/plain/email-order-items.php:31 -msgid "Cost: %s" -msgstr "Cena: %s" - -#: templates/loop/add-to-cart.php:17 templates/loop/add-to-cart.php:41 -#: templates/loop/add-to-cart.php:50 -msgid "Read More" -msgstr "Viac…" - -#: templates/loop/add-to-cart.php:33 -msgid "Select options" -msgstr "Výber možností" - -#: templates/loop/add-to-cart.php:37 -msgid "View options" -msgstr "Zobraziť možnosti" - -#: templates/loop/no-products-found.php:14 templates/loop-shop.php:40 -msgid "No products found which match your selection." -msgstr "Tovar, ktorý by zodpovedal Vášmu výberu, nebol nájdený. Pravdepodobne nie je na sklade. " - -#: templates/loop/orderby.php:21 -msgid "Default sorting" -msgstr "Prednastavené zoradenie" - -#: templates/loop/orderby.php:22 -msgid "Sort by popularity" -msgstr "Zoradiť podľa populárnosti" - -#: templates/loop/orderby.php:23 -msgid "Sort by average rating" -msgstr "Zoradiť podľa priemerného hodnotenia" - -#: templates/loop/orderby.php:24 -msgid "Sort by newness" -msgstr "Zoradiť podľa najnovších" - -#: templates/loop/orderby.php:25 -msgid "Sort by price: low to high" -msgstr "Zoradiť od najlacnejších" - -#: templates/loop/orderby.php:26 -msgid "Sort by price: high to low" -msgstr "Zoradiť od najdrahších" - -#: templates/loop/result-count.php:28 -msgid "Showing the single result" -msgstr "Zobraziť jediný výsledok" - -#: templates/loop/result-count.php:30 -msgid "Showing all %d results" -msgstr "Počet výsledkov na zobrazenie %d" - -#: templates/loop/result-count.php:32 -msgctxt "%1$d = first, %2$d = last, %3$d = total" -msgid "Showing %1$d–%2$d of %3$d results" -msgstr "Zobrazujem %1$d–%2$d z %3$d výsledkov" - -#: templates/loop/sale-flash.php:16 templates/single-product/sale-flash.php:16 -msgid "Sale!" -msgstr "Zľava!" - -#: templates/myaccount/form-change-password.php:20 -#: templates/myaccount/form-lost-password.php:31 -msgid "New password" -msgstr "Nové heslo" - -#: templates/myaccount/form-change-password.php:24 -#: templates/myaccount/form-lost-password.php:35 -msgid "Re-enter new password" -msgstr "Znovu zadajte nové heslo" - -#: templates/myaccount/form-change-password.php:29 -#: templates/myaccount/form-lost-password.php:45 -msgid "Save" -msgstr "Uložiť" - -#: templates/myaccount/form-edit-address.php:43 -msgid "Save Address" -msgstr "Uložiť" - -#: templates/myaccount/form-login.php:26 templates/myaccount/form-login.php:40 -#: templates/shop/form-login.php:31 -msgid "Login" -msgstr "Prihlásenie" - -#: templates/myaccount/form-login.php:50 templates/shop/form-login.php:33 -msgid "Lost Password?" -msgstr "Zabudli ste heslo?" - -#: templates/myaccount/form-login.php:60 templates/myaccount/form-login.php:101 -msgid "Register" -msgstr "Registrovať sa" - -#: templates/myaccount/form-login.php:66 -msgid "Username" -msgstr "Meno užívateľa" - -#: templates/myaccount/form-login.php:78 -#: templates/single-product-reviews.php:86 -msgid "Email" -msgstr "E-mail" - -#: templates/myaccount/form-login.php:89 -msgid "Re-enter password" -msgstr "Znova zadajte heslo" - -#: templates/myaccount/form-lost-password.php:22 -msgid "Lost your password? Please enter your username or email address. You will receive a link to create a new password via email." -msgstr "Stratili ste heslo? Prosím zadajte používateľské meno alebo emailovú adresu. Zašleme vám odkaz pre vytvorenie nového hesla cez email." - -#: templates/myaccount/form-lost-password.php:28 -msgid "Enter a new password below." -msgstr "Zadajte nové heslo" - -#: templates/myaccount/form-lost-password.php:45 -msgid "Reset Password" -msgstr "Obnoviť heslo" - -#: templates/myaccount/my-account.php:19 -msgid "Hello, %s. From your account dashboard you can view your recent orders, manage your shipping and billing addresses and change your password." -msgstr "Dobrý deň, %s. Na stránke vášho profilu si môžete prezerať posledné objednávky, upraviť fakturačnú a dodaciu adresu a zmeniť heslo." - -#: templates/myaccount/my-address.php:17 -msgid "My Addresses" -msgstr "Moje adresy" - -#: templates/myaccount/my-address.php:23 -msgid "My Address" -msgstr "Moja adresa" - -#: templates/myaccount/my-address.php:35 -msgid "The following addresses will be used on the checkout page by default." -msgstr "Nasledujúce adresy budú použité pri zúčtovaní v predvolenom nastavení." - -#: templates/myaccount/my-address.php:45 woocommerce.php:951 -#: woocommerce.php:987 woocommerce.php:1024 woocommerce.php:1062 -#: woocommerce.php:1100 -msgid "Edit" -msgstr "Upraviť" - -#: templates/myaccount/my-address.php:64 -msgid "You have not set up this type of address yet." -msgstr "Ešte ste nenastavili tento typ adresy" - -#: templates/myaccount/my-downloads.php:18 -msgid "Available downloads" -msgstr "K dispozícii na stiahnutie" - -#: templates/myaccount/my-downloads.php:27 -msgid "%s download remaining" -msgid_plural "%s downloads remaining" -msgstr[0] "zostáva %s stiahnutie" -msgstr[1] "zostávajú %s stiahnutia" -msgstr[2] "zostáva %s stiahnutí" - -#: templates/myaccount/my-orders.php:26 -msgid "Recent Orders" -msgstr "Nedávne objednávky" - -#: templates/myaccount/my-orders.php:32 woocommerce.php:1059 -msgid "Order" -msgstr "Objednávka" - -#: templates/myaccount/my-orders.php:33 -msgid "Date" -msgstr "Dátum" - -#: templates/myaccount/my-orders.php:34 -msgid "Status" -msgstr "Stav" - -#: templates/myaccount/my-orders.php:62 -msgid "%s for %s item" -msgid_plural "%s for %s items" -msgstr[0] "%s za %s položku" -msgstr[1] "%s za %s položky" -msgstr[2] "%s za %s položiek" - -#: templates/myaccount/my-orders.php:77 -msgid "Cancel" -msgstr "Zrušiť" - -#: templates/myaccount/my-orders.php:82 -msgid "View" -msgstr "Zobraziť" - -#: templates/order/form-tracking.php:17 -msgid "To track your order please enter your Order ID in the box below and press return. This was given to you on your receipt and in the confirmation email you should have received." -msgstr "Ak chcete sledovať objednávku, zadajte, prosím, svoje číslo objednávky do rámčeka nižšie a stlačte Enter. Číslo objednávky nájdete na potvrdení objednávky, ktoré Vám bolo zasláné e-mailom." - -#: templates/order/form-tracking.php:19 -msgid "Order ID" -msgstr "Číslo objednávky" - -#: templates/order/form-tracking.php:19 -msgid "Found in your order confirmation email." -msgstr "Nájdete v e-maili s potvrdením objednávky." - -#: templates/order/form-tracking.php:20 -msgid "Billing Email" -msgstr "Fakturačný e-mail" - -#: templates/order/form-tracking.php:20 -msgid "Email you used during checkout." -msgstr "E-mail, ktorý ste použili pri platení." - -#: templates/order/form-tracking.php:23 -msgid "Track" -msgstr "Sledovať" - -#: templates/order/order-details.php:16 -msgid "Order Details" -msgstr "Podrobnosti o objednávke" - -#: templates/order/order-details.php:90 -msgid "Order Again" -msgstr "Objednať znova" - -#: templates/order/order-details.php:102 -msgid "Telephone:" -msgstr "Telefón:" - -#: templates/order/tracking.php:18 -msgid "Order %s which was made %s has the status “%s”" -msgstr "Objednávka %s z dňa %s je v stave “%s”" - -#: templates/order/tracking.php:18 -msgid "ago" -msgstr "pred" - -#: templates/order/tracking.php:20 -msgid "and was completed" -msgstr "a bola vybavená" - -#: templates/order/tracking.php:20 -msgid " ago" -msgstr "pred" - -#: templates/shop/breadcrumb.php:63 -msgid "Products tagged “" -msgstr "Označkované produkty “" - -#: templates/shop/breadcrumb.php:91 templates/shop/breadcrumb.php:188 -msgid "Search results for “" -msgstr "Výsledky hľadania pro výraz “" - -#: templates/shop/breadcrumb.php:146 -msgid "Error 404" -msgstr "Chyba 404 - Nenájdené" - -#: templates/shop/breadcrumb.php:192 -msgid "Posts tagged “" -msgstr "Články so značkou “" - -#: templates/shop/breadcrumb.php:197 -msgid "Author:" -msgstr "Autor:" - -#: templates/shop/breadcrumb.php:202 -msgid "Page" -msgstr "Stránka" - -#: templates/single-product/add-to-cart/variable.php:24 -msgid "Choose an option" -msgstr "Vyberte možnosť" - -#: templates/single-product/add-to-cart/variable.php:69 -msgid "Clear selection" -msgstr "Zrušiť výber" - -#: templates/single-product/meta.php:24 -msgid "Category:" -msgid_plural "Categories:" -msgstr[0] "Kategórie:" -msgstr[1] "Kategórie:" -msgstr[2] "Kategórie:" - -#: templates/single-product/meta.php:29 -msgid "Tag:" -msgid_plural "Tags:" -msgstr[0] "Značka:" -msgstr[1] "Značky:" -msgstr[2] "Značiek:" - -#: templates/single-product/product-attributes.php:28 -msgid "Weight" -msgstr "Hmotnosť" - -#: templates/single-product/product-attributes.php:37 -msgid "Dimensions" -msgstr "Rozmery" - -#: templates/single-product/related.php:36 -msgid "Related Products" -msgstr "Súvisiace produkty" - -#: templates/single-product/review.php:26 -msgid "Rated %d out of 5" -msgstr "Ohodnotené %d z 5" - -#: templates/single-product/review.php:33 -msgid "Your comment is awaiting approval" -msgstr "Váš komentár čaká na schválenie" - -#: templates/single-product/review.php:40 -msgid "verified owner" -msgstr "overený majiteľ" - -#: templates/single-product/tabs/description.php:14 -msgid "Product Description" -msgstr "Bližšie informácie" - -#: templates/single-product/up-sells.php:39 -msgid "You may also like…" -msgstr "Možno by sa Vám páčilo…" - -#: templates/single-product-reviews.php:30 -msgid "%s review for %s" -msgid_plural "%s reviews for %s" -msgstr[0] "%s recenzia na %s" -msgstr[1] "%s recenzií na %s" -msgstr[2] "" - -#: templates/single-product-reviews.php:36 -#: templates/single-product-reviews.php:42 -msgid "Reviews" -msgstr "Recenzie" - -#: templates/single-product-reviews.php:58 -msgid " Previous" -msgstr " Predchádzajúci" - -#: templates/single-product-reviews.php:59 -msgid "Next " -msgstr "Ďalší " - -#: templates/single-product-reviews.php:63 -msgid "Add Your Review" -msgstr "Pridať vašu recenziu" - -#: templates/single-product-reviews.php:63 -msgid "Add Review" -msgstr "Pridať recenziu" - -#: templates/single-product-reviews.php:65 -msgid "Add a review" -msgstr "Pridať recenciu" - -#: templates/single-product-reviews.php:69 -msgid "Be the first to review" -msgstr "Buďte prvý, kto napíše recenziu" - -#: templates/single-product-reviews.php:71 -msgid "There are no reviews yet, would you like to submit yours?" -msgstr "Zatiaľ nie sú nijaké recencie. Chcete pomôcť ostatným pridaním recencie? Podeľte sa o vašu skúsenosť." - -#: templates/single-product-reviews.php:89 -msgid "Submit Review" -msgstr "Odeslať recenziu" - -#: templates/single-product-reviews.php:96 -msgid "Rating" -msgstr "Hodnotenie" - -#: templates/single-product-reviews.php:97 -msgid "Rate…" -msgstr "Ohodnotiť…" - -#: templates/single-product-reviews.php:98 -msgid "Perfect" -msgstr "Výborné" - -#: templates/single-product-reviews.php:99 -msgid "Good" -msgstr "Dobré" - -#: templates/single-product-reviews.php:100 -msgid "Average" -msgstr "Priemerné" - -#: templates/single-product-reviews.php:101 -msgid "Not that bad" -msgstr "Nie tak zlé" - -#: templates/single-product-reviews.php:102 -msgid "Very Poor" -msgstr "Veľmi slabé" - -#: templates/single-product-reviews.php:107 -msgid "Your Review" -msgstr "Vaša recenzia" - -#: woocommerce-ajax.php:119 -msgid "Sorry, your session has expired." -msgstr "Ľutujeme, ale Vaša relácia vypršala." - -#: woocommerce-ajax.php:119 -msgid "Return to homepage →" -msgstr "Späť na domovskú stránku →" - -#: woocommerce-ajax.php:256 woocommerce-ajax.php:290 woocommerce-ajax.php:313 -msgid "You do not have sufficient permissions to access this page." -msgstr "Nemáte dostatočné oprávnenie prístupu na túto stránku." - -#: woocommerce-ajax.php:258 woocommerce-ajax.php:291 woocommerce-ajax.php:314 -msgid "You have taken too long. Please go back and retry." -msgstr "Trvalo Vám to príliš dlho. Prosím, vráťte sa späť a skúste to znova." - -#: woocommerce-ajax.php:550 -msgid "Same as parent" -msgstr "Rovnaká ako nadradená" - -#: woocommerce-ajax.php:551 -msgid "Standard" -msgstr "Štandardné" - -#: woocommerce-ajax.php:1098 -msgid "No products had their stock reduced - they may not have stock management enabled." -msgstr "Žiadnym tovarom sa neznížil tovar na sklade - pravdepodobne nemajú zapnutú správu skladu." - -#: woocommerce-ajax.php:1142 woocommerce-ajax.php:1143 -msgid "Item #%s stock increased from %s to %s." -msgstr "Zásoby položky č. %s vzrástli z %s na %s." - -#: woocommerce-ajax.php:1150 -msgid "No products had their stock increased - they may not have stock management enabled." -msgstr "Žiadnym tovarom sa nezvýšil tovar na sklade - pravdepodobne nemajú zapnutú správu skladu." - -#: woocommerce-ajax.php:1171 -msgid "Value" -msgstr "Hodnota" - -#: woocommerce-ajax.php:1485 -msgid "Delete note" -msgstr "Vymazať poznámku" - -#: woocommerce-core-functions.php:275 -msgid "%s – %s%s" -msgstr "%s – %s%s" - -#: woocommerce-core-functions.php:698 -msgid "Australian Dollars" -msgstr "Australian Dollars" - -#: woocommerce-core-functions.php:699 -msgid "Brazilian Real" -msgstr "Brazilian Real" - -#: woocommerce-core-functions.php:700 -msgid "Canadian Dollars" -msgstr "Canadian Dollars" - -#: woocommerce-core-functions.php:701 -msgid "Chinese Yuan" -msgstr "Chinese Yuan" - -#: woocommerce-core-functions.php:702 -msgid "Czech Koruna" -msgstr "Česká koruna" - -#: woocommerce-core-functions.php:703 -msgid "Danish Krone" -msgstr "Dánska koruna" - -#: woocommerce-core-functions.php:704 -msgid "Euros" -msgstr "Eurá" - -#: woocommerce-core-functions.php:705 -msgid "Hong Kong Dollar" -msgstr "Hong Kong Dollar" - -#: woocommerce-core-functions.php:706 -msgid "Hungarian Forint" -msgstr "Maďarský forint" - -#: woocommerce-core-functions.php:707 -msgid "Indonesia Rupiah" -msgstr "Indonesia Rupiah" - -#: woocommerce-core-functions.php:709 -msgid "Israeli Shekel" -msgstr "Izraelský šekel" - -#: woocommerce-core-functions.php:710 -msgid "Japanese Yen" -msgstr "Japanese Yen" - -#: woocommerce-core-functions.php:712 -msgid "Malaysian Ringgits" -msgstr "Malaysian Ringgits" - -#: woocommerce-core-functions.php:713 -msgid "Mexican Peso" -msgstr "Mexican Peso" - -#: woocommerce-core-functions.php:714 -msgid "Norwegian Krone" -msgstr "Nórska koruna" - -#: woocommerce-core-functions.php:715 -msgid "New Zealand Dollar" -msgstr "New Zealand Dollar" - -#: woocommerce-core-functions.php:716 -msgid "Philippine Pesos" -msgstr "Filipínske pesos" - -#: woocommerce-core-functions.php:717 -msgid "Polish Zloty" -msgstr "Poľský zlotý" - -#: woocommerce-core-functions.php:718 -msgid "Pounds Sterling" -msgstr "Pounds Sterling" - -#: woocommerce-core-functions.php:719 -msgid "Romanian Leu" -msgstr "Romanian Leu" - -#: woocommerce-core-functions.php:720 -msgid "Singapore Dollar" -msgstr "Singapore Dollar" - -#: woocommerce-core-functions.php:721 -msgid "South African rand" -msgstr "South African rand" - -#: woocommerce-core-functions.php:722 -msgid "Swedish Krona" -msgstr "Švédska koruna" - -#: woocommerce-core-functions.php:723 -msgid "Swiss Franc" -msgstr "Švajčiarsky frank" - -#: woocommerce-core-functions.php:724 -msgid "Taiwan New Dollars" -msgstr "Tchaj-wanské nové doláre" - -#: woocommerce-core-functions.php:725 -msgid "Thai Baht" -msgstr "Thajský baht" - -#: woocommerce-core-functions.php:726 -msgid "Turkish Lira" -msgstr "Turkish Lira" - -#: woocommerce-core-functions.php:727 -msgid "US Dollars" -msgstr "US Dollars" - -#: woocommerce-core-functions.php:1215 woocommerce-core-functions.php:1241 -msgid "Download Permissions Granted" -msgstr "stiahnuť udelené oprávnenia" - -#: woocommerce-core-functions.php:1365 -msgctxt "slug" -msgid "uncategorized" -msgstr "nezaradené" - -#: woocommerce-core-functions.php:1554 -msgid "Select a category" -msgstr "Vyberte kategóriu" - -#: woocommerce-core-functions.php:1558 -msgid "Uncategorized" -msgstr "Nezaradené" - -#: woocommerce-core-functions.php:1930 -msgid "Customer" -msgstr "Zákazník" - -#: woocommerce-core-functions.php:1937 -msgid "Shop Manager" -msgstr "Správca obchodu" - -#: woocommerce-core-functions.php:2494 -msgid "Unpaid order cancelled - time limit reached." -msgstr "Nezaplatená objednávka zrušená - vypršal časový limit." - -#: woocommerce-functions.php:730 -msgid "Please enter a username." -msgstr "Zadajte prosím uživateľské meno." - -#: woocommerce-functions.php:226 woocommerce-functions.php:271 -msgid "Cart updated." -msgstr "Košík aktualizovaný." - -#: woocommerce-functions.php:257 -msgid "You can only have 1 %s in your cart." -msgstr "Možete mať len 1 %s vo Vašom košíku." - -#: woocommerce-functions.php:315 woocommerce-functions.php:373 -msgid "Please choose product options…" -msgstr "Prosím zvoľte možnosti produktu…" - -#: woocommerce-functions.php:406 -msgid "Please choose the quantity of items you wish to add to your cart…" -msgstr "Prosím vyberte počet kusov položiek ktoré chcete pridať do košíka…" - -#: woocommerce-functions.php:413 -msgid "Please choose a product to add to your cart…" -msgstr "Prosím zvoľte produkt ktorý chcete pridať do košíka…" - -#: woocommerce-functions.php:482 -msgid "Added "%s" to your cart." -msgstr "Pridané "%s" do košíka." - -#: woocommerce-functions.php:482 -msgid "" and "" -msgstr "" a "" - -#: woocommerce-functions.php:485 -msgid ""%s" was successfully added to your cart." -msgstr "Produkt "%s" bol pridaný do košíka." - -#: woocommerce-functions.php:493 -msgid "Continue Shopping →" -msgstr "Pokračovať v nákupe →" - -#: woocommerce-functions.php:660 -msgid "Username is required." -msgstr "Meno užívateľa je povinné." - -#: woocommerce-functions.php:661 woocommerce-functions.php:756 -msgid "Password is required." -msgstr "Heslo je povinné." - -#: woocommerce-functions.php:732 -msgid "This username is invalid because it uses illegal characters. Please enter a valid username." -msgstr "Meno užívateľa je neplatné, pretože sú použité nepovolené znaky. Zadajte platné meno, prosím." - -#: woocommerce-functions.php:735 -msgid "This username is already registered, please choose another one." -msgstr "Toto užívateľské meno je už registrované, použite iné prosím." - -#: woocommerce-functions.php:747 -msgid "Please type your e-mail address." -msgstr "Zadajte Vašu e-mailovú adresu." - -#: woocommerce-functions.php:749 -msgid "The email address isn’t correct." -msgstr "E-mailová adresa nemá správny formát." - -#: woocommerce-functions.php:752 -msgid "This email is already registered, please choose another one." -msgstr "Táto e-mailová adresa je už registrovaná, zadajte inú." - -#: woocommerce-functions.php:757 -msgid "Re-enter your password." -msgstr "Zadajte svoje heslo znovu, prosím." - -#: woocommerce-functions.php:762 -msgid "Anti-spam field was filled in." -msgstr "Anti-spamové pole bolo vyplnené. Ak chcete pokračovať nechajte ho voľné." - -#: woocommerce-functions.php:870 -msgid "The cart has been filled with the items from your previous order." -msgstr "Košík bol naplnený položkami z vášho predchádzajúceho nákupu." - -#: woocommerce-functions.php:896 -msgid "Order cancelled by customer." -msgstr "Objednávka bola zrušená zákazníkom." - -#: woocommerce-functions.php:899 -msgid "Your order was cancelled." -msgstr "Vaša objednávka bola zrušená." - -#: woocommerce-functions.php:905 -msgid "Your order is no longer pending and could not be cancelled. Please contact us if you need assistance." -msgstr "Vaša objednávka už bola potvrdená a nedá sa zrušiť. V prípade potreby nás neváhajte kontaktovať." - -#: woocommerce-functions.php:940 -msgid "Invalid email address." -msgstr "Neplatná emailová adresa." - -#: woocommerce-functions.php:940 woocommerce-functions.php:963 -#: woocommerce-functions.php:983 woocommerce-functions.php:989 -#: woocommerce-functions.php:993 woocommerce-functions.php:996 -#: woocommerce-functions.php:1026 woocommerce-functions.php:1158 -msgid "Go to homepage →" -msgstr "Domov →" - -#: woocommerce-functions.php:963 -msgid "Invalid download." -msgstr "Neplatné stiahnutie." - -#: woocommerce-functions.php:975 -msgid "You must be logged in to download files." -msgstr "Aby ste mohli sťahovať, musíte byť prihlásený." - -#: woocommerce-functions.php:978 -msgid "This is not your download link." -msgstr "Toto nie je váš odkaz na stiahnutie." - -#: woocommerce-functions.php:983 -msgid "Product no longer exists." -msgstr "Produkt už neexistuje." - -#: woocommerce-functions.php:993 -msgid "Sorry, you have reached your download limit for this file" -msgstr "Je nám ľúto, dosiahli ste limit sťahovania pre tento súbor" - -#: woocommerce-functions.php:996 -msgid "Sorry, this download has expired" -msgstr "Prepáčte, súbor na stiahnutie už expiroval" - -#: woocommerce-functions.php:1026 -msgid "No file defined" -msgstr "Nedefinovaný súbor" - -#: woocommerce-functions.php:1158 -msgid "File not found" -msgstr "Súbor nenájdený" - -#: woocommerce-functions.php:1274 -msgid "New products" -msgstr "Nové produkty" - -#: woocommerce-functions.php:1282 -msgid "New products added to %s" -msgstr "Nové produkty pridané do %s" - -#: woocommerce-functions.php:1290 -msgid "New products tagged %s" -msgstr "Nové produkty označené %s" - -#: woocommerce-functions.php:1328 -msgid "You have taken too long. Please go back and refresh the page." -msgstr "Trvalo Vám to príliš dlho. Prosím, vráťte sa späť a obnovte stránku." - -#: woocommerce-functions.php:1331 -msgid "Please rate the product." -msgstr "Ohodnoťte produkt, prosím." - -#: woocommerce-functions.php:1639 -msgid "Password changed successfully." -msgstr "Heslo úspešne zmenené." - -#: woocommerce-functions.php:1715 -msgid "Address changed successfully." -msgstr "Adresa úspešne zmenená." - -#: woocommerce-template.php:200 -msgid "This is a demo store for testing purposes — no orders shall be fulfilled." -msgstr "Toto je ukážkový obchod na testovacie účely. Objednávky nebudú vybavené." - -#: woocommerce-template.php:219 -msgid "Search Results: “%s”" -msgstr "Výsledky hľadania: “%s”" - -#: woocommerce-template.php:222 -msgid " – Page %s" -msgstr " – Stránka %s" - -#: woocommerce-template.php:767 -msgid "Reviews (%d)" -msgstr "Recenzie (%d)" - -#: woocommerce-template.php:993 -msgctxt "breadcrumb" -msgid "Home" -msgstr "Domov" - -#: woocommerce-template.php:1292 woocommerce.php:1209 -msgid "required" -msgstr "požadovaný" - -#: woocommerce-template.php:1341 -msgid "Update country" -msgstr "Aktualizovať krajinu" - -#: woocommerce-template.php:1496 -msgid "Search for:" -msgstr "Hľadať:" - -#: woocommerce-template.php:1497 -msgid "Search for products" -msgstr "Hľadať produkty" - -#: woocommerce-template.php:1498 woocommerce.php:947 -msgid "Search" -msgstr "Hľadanie" - -#: woocommerce.php:786 -msgctxt "slug" -msgid "product-category" -msgstr "kategoria-produktu" - -#: woocommerce.php:787 -msgctxt "slug" -msgid "product-tag" -msgstr "značka-produktu" - -#: woocommerce.php:789 -msgctxt "slug" -msgid "product" -msgstr "produkt" - -#: woocommerce.php:824 -msgid "Product Category" -msgstr "Kategória produktu" - -#: woocommerce.php:825 -msgctxt "Admin menu name" -msgid "Categories" -msgstr "Kategórie produktov" - -#: woocommerce.php:826 -msgid "Search Product Categories" -msgstr "Vyhľadávať v kategóriách produktov" - -#: woocommerce.php:827 -msgid "All Product Categories" -msgstr "Všetky kategórie produktov" - -#: woocommerce.php:828 -msgid "Parent Product Category" -msgstr "Nadradená kategória produktu" - -#: woocommerce.php:829 -msgid "Parent Product Category:" -msgstr "Nadradená kategória produktu:" - -#: woocommerce.php:830 -msgid "Edit Product Category" -msgstr "Upraviť kategóriu produktu" - -#: woocommerce.php:831 -msgid "Update Product Category" -msgstr "Aktualizovať kategóriu produktu" - -#: woocommerce.php:832 -msgid "Add New Product Category" -msgstr "Pridať novú kategóriu produktu" - -#: woocommerce.php:833 -msgid "New Product Category Name" -msgstr "Názov novej kategórie produktu" - -#: woocommerce.php:860 -msgid "Product Tag" -msgstr "Značka produktu" - -#: woocommerce.php:861 -msgctxt "Admin menu name" -msgid "Tags" -msgstr "Značky" - -#: woocommerce.php:862 -msgid "Search Product Tags" -msgstr "Vyhľadávať v značkách produktov" - -#: woocommerce.php:863 -msgid "All Product Tags" -msgstr "Všetky značky produktov" - -#: woocommerce.php:864 -msgid "Parent Product Tag" -msgstr "Nadradená značka produktu" - -#: woocommerce.php:865 -msgid "Parent Product Tag:" -msgstr "Nadradená značka produktu:" - -#: woocommerce.php:866 -msgid "Edit Product Tag" -msgstr "Upraviť značku produktu" - -#: woocommerce.php:867 -msgid "Update Product Tag" -msgstr "Aktualizovať značku produktu" - -#: woocommerce.php:868 -msgid "Add New Product Tag" -msgstr "Pridať novú značku produktu" - -#: woocommerce.php:869 -msgid "New Product Tag Name" -msgstr "Názov novej značky produktu" - -#: woocommerce.php:888 woocommerce.php:890 -msgid "Shipping Classes" -msgstr "Prepravné triedy" - -#: woocommerce.php:892 -msgctxt "Admin menu name" -msgid "Shipping Classes" -msgstr "Prepravné triedy" - -#: woocommerce.php:893 -msgid "Search Shipping Classes" -msgstr "Hľadať v prepravných triedach" - -#: woocommerce.php:894 -msgid "All Shipping Classes" -msgstr "Všetky prepravné triedy" - -#: woocommerce.php:895 -msgid "Parent Shipping Class" -msgstr "Nadradená prepravná trieda" - -#: woocommerce.php:896 -msgid "Parent Shipping Class:" -msgstr "Nadradená prepravná trieda:" - -#: woocommerce.php:897 -msgid "Edit Shipping Class" -msgstr "Upraviť prepravnú triedu" - -#: woocommerce.php:898 -msgid "Update Shipping Class" -msgstr "Aktualizovať prepravnú triedu" - -#: woocommerce.php:899 -msgid "Add New Shipping Class" -msgstr "Pridať novú prepravnú triedu" - -#: woocommerce.php:900 -msgid "New Shipping Class Name" -msgstr "Názov prepravnej triedy" - -#: woocommerce.php:948 -msgid "All" -msgstr "Všetko" - -#: woocommerce.php:949 woocommerce.php:950 -msgid "Parent" -msgstr "Nadradené" - -#: woocommerce.php:952 -msgid "Update" -msgstr "Aktualizovať" - -#: woocommerce.php:953 -msgid "Add New" -msgstr "Pridať nový" - -#: woocommerce.php:954 -msgid "New" -msgstr "Nový" - -#: woocommerce.php:984 -msgctxt "Admin menu name" -msgid "Products" -msgstr "Produkty" - -#: woocommerce.php:985 -msgid "Add Product" -msgstr "Pridať produkt" - -#: woocommerce.php:986 -msgid "Add New Product" -msgstr "Pridať nový produkt" - -#: woocommerce.php:988 -msgid "Edit Product" -msgstr "Upraviť produkt" - -#: woocommerce.php:989 -msgid "New Product" -msgstr "Nový produkt" - -#: woocommerce.php:990 woocommerce.php:991 -msgid "View Product" -msgstr "Zobraziť produkt" - -#: woocommerce.php:992 -msgid "Search Products" -msgstr "Hľadať produkty" - -#: woocommerce.php:993 -msgid "No Products found" -msgstr "Nenájdené žiadne produkty" - -#: woocommerce.php:994 -msgid "No Products found in trash" -msgstr "Žiadne produkty v koši" - -#: woocommerce.php:995 -msgid "Parent Product" -msgstr "Nadradený produkt" - -#: woocommerce.php:997 -msgid "This is where you can add new products to your store." -msgstr "Na tomto mieste môžete pridávať nové produkty do Vášho obchodu." - -#: woocommerce.php:1020 -msgid "Variations" -msgstr "Varianty" - -#: woocommerce.php:1021 -msgid "Variation" -msgstr "Variant" - -#: woocommerce.php:1022 -msgid "Add Variation" -msgstr "Pridať variant" - -#: woocommerce.php:1023 -msgid "Add New Variation" -msgstr "Pridať nový variant" - -#: woocommerce.php:1025 -msgid "Edit Variation" -msgstr "Upraviť variant" - -#: woocommerce.php:1026 -msgid "New Variation" -msgstr "Nový variant" - -#: woocommerce.php:1027 woocommerce.php:1028 -msgid "View Variation" -msgstr "Zobraziť variant" - -#: woocommerce.php:1029 -msgid "Search Variations" -msgstr "Hľadať varianty" - -#: woocommerce.php:1030 -msgid "No Variations found" -msgstr "Nenájdený nijaký variant" - -#: woocommerce.php:1031 -msgid "No Variations found in trash" -msgstr "Nenájdené žiadne varianty v koši" - -#: woocommerce.php:1032 -msgid "Parent Variation" -msgstr "Nadradený variant" - -#: woocommerce.php:1049 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Objednávky" - -#: woocommerce.php:1058 -msgid "Orders" -msgstr "Objednávky" - -#: woocommerce.php:1060 -msgid "Add Order" -msgstr "Pridať objednávku" - -#: woocommerce.php:1061 -msgid "Add New Order" -msgstr "Pridať novú objednávku" - -#: woocommerce.php:1063 -msgid "Edit Order" -msgstr "Upraviť objednávku" - -#: woocommerce.php:1064 -msgid "New Order" -msgstr "Nová objednávka" - -#: woocommerce.php:1067 -msgid "Search Orders" -msgstr "Vyhľadávanie Objednávky" - -#: woocommerce.php:1068 -msgid "No Orders found" -msgstr "Nenájdená žiadna objednávka" - -#: woocommerce.php:1069 -msgid "No Orders found in trash" -msgstr "Nenájdená žiadna objednávka v koši" - -#: woocommerce.php:1070 -msgid "Parent Orders" -msgstr "Nadradené Objednávky" - -#: woocommerce.php:1073 -msgid "This is where store orders are stored." -msgstr "Toto je miesto, kde sú uložené obchodné objednávky." - -#: woocommerce.php:1095 -msgid "Coupons" -msgstr "Zľavové kupóny" - -#: woocommerce.php:1097 -msgctxt "Admin menu name" -msgid "Coupons" -msgstr "Zľavové kupóny" - -#: woocommerce.php:1098 -msgid "Add Coupon" -msgstr "Pridať kupón" - -#: woocommerce.php:1099 -msgid "Add New Coupon" -msgstr "Pridať nový kupón" - -#: woocommerce.php:1101 -msgid "Edit Coupon" -msgstr "Upraviť kupón" - -#: woocommerce.php:1102 -msgid "New Coupon" -msgstr "Nový kupón" - -#: woocommerce.php:1103 -msgid "View Coupons" -msgstr "Zobraziť kupóny" - -#: woocommerce.php:1104 -msgid "View Coupon" -msgstr "Zobraziť kupón" - -#: woocommerce.php:1105 -msgid "Search Coupons" -msgstr "Hľadať kupón" - -#: woocommerce.php:1106 -msgid "No Coupons found" -msgstr "Nenájdené žiadne kupóny " - -#: woocommerce.php:1107 -msgid "No Coupons found in trash" -msgstr "Nenájdené žiadne kupóny v koši" - -#: woocommerce.php:1108 -msgid "Parent Coupon" -msgstr "Nadradený kupón" - -#: woocommerce.php:1110 -msgid "This is where you can add new coupons that customers can use in your store." -msgstr "Sem môžete pridávať nové zľavové kupóny, ktoré môžu zákazníci využiť vo vašom obchode." - -#: woocommerce.php:1206 -msgid "Select an option…" -msgstr "Vyberte jednu z možností…" - -#: woocommerce.php:1207 -msgid "Please select a rating" -msgstr "Prosím ohodnoťte" - -#: woocommerce.php:1208 -msgid "Sorry, no products matched your selection. Please choose a different combination." -msgstr "Ľutujeme, žiadne produkty sa nezhodujú s vašim výberom. Prosím zvoľte inú kombináciu." - -#: woocommerce.php:1691 -msgid "Cart % Discount" -msgstr "Percentuálna zľava z nákupu (%)" - -#: woocommerce.php:1692 -msgid "Product Discount" -msgstr "Zľava na produkt" - -#: woocommerce.php:1693 -msgid "Product % Discount" -msgstr "Percentuálna zľava na produkt (%)" - -#: woocommerce.php:1758 -msgid "Action failed. Please refresh the page and retry." -msgstr "Akcia sa nepodarila. Prosím obnovte stránku a skúste to znova." - -#: assets/js/admin/editor_plugin_lang.php:5 -msgid "Insert Shortcode" -msgstr "Vložiť skrátený kód" - -#: assets/js/admin/editor_plugin_lang.php:6 -msgid "Product price/cart button" -msgstr "Cena produktu/tlačidlo košíka" - -#: assets/js/admin/editor_plugin_lang.php:7 -msgid "Product by SKU/ID" -msgstr "Produkt podľa SKU/ID" - -#: assets/js/admin/editor_plugin_lang.php:8 -msgid "Products by SKU/ID" -msgstr "Produkty podľa SKU/ID" - -#: assets/js/admin/editor_plugin_lang.php:9 -msgid "Product categories" -msgstr "Kategórie produktov" - -#: assets/js/admin/editor_plugin_lang.php:10 -msgid "Products by category slug" -msgstr "Produkty podla slugu kategórie" - -#: assets/js/admin/editor_plugin_lang.php:11 -msgid "Recent products" -msgstr "Najnovšie produkty" - -#: assets/js/admin/editor_plugin_lang.php:12 -msgid "Featured products" -msgstr "Odporúčané produkty" - -#: assets/js/admin/editor_plugin_lang.php:13 -msgid "Shop Messages" -msgstr "Správy obchodu" - -#: assets/js/admin/editor_plugin_lang.php:14 -msgid "Pages" -msgstr "Stránky" - -#: assets/js/admin/editor_plugin_lang.php:15 -#: classes/widgets/class-wc-widget-cart.php:61 -msgid "Cart" -msgstr "Košík" - -#: assets/js/admin/editor_plugin_lang.php:16 -msgid "Checkout" -msgstr "Pokladňa" - -#: assets/js/admin/editor_plugin_lang.php:17 -msgid "Order tracking" -msgstr "Sledovanie objednávky" - -#: assets/js/admin/editor_plugin_lang.php:18 templates/checkout/thankyou.php:30 -msgid "My Account" -msgstr "Môj účet" - -#: assets/js/admin/editor_plugin_lang.php:19 -msgid "Edit Address" -msgstr "Upraviť adresy" - -#: assets/js/admin/editor_plugin_lang.php:20 -msgid "Change Password" -msgstr "Zmena hesla" - -#: assets/js/admin/editor_plugin_lang.php:21 woocommerce.php:1065 -#: woocommerce.php:1066 -msgid "View Order" -msgstr "Zobraziť objednávku" - -#: assets/js/admin/editor_plugin_lang.php:22 templates/checkout/thankyou.php:28 -#: templates/myaccount/my-orders.php:71 -msgid "Pay" -msgstr "Zaplatiť" - -#: assets/js/admin/editor_plugin_lang.php:23 -msgid "Thankyou" -msgstr "Ďakujeme" - -#: classes/abstracts/abstract-wc-email.php:431 -#: classes/emails/class-wc-email-customer-completed-order.php:135 -#: classes/emails/class-wc-email-customer-invoice.php:138 -#: classes/emails/class-wc-email-new-order.php:115 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:63 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:57 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:122 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:120 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:76 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:75 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:50 -msgid "Enable/Disable" -msgstr "Povoliť / zakázať" - -#: classes/abstracts/abstract-wc-email.php:433 -#: classes/emails/class-wc-email-customer-completed-order.php:137 -#: classes/emails/class-wc-email-customer-invoice.php:140 -#: classes/emails/class-wc-email-new-order.php:117 -msgid "Enable this email notification" -msgstr "Povoliť tieto emailové oznámenia" - -#: classes/abstracts/abstract-wc-email.php:437 -#: classes/emails/class-wc-email-customer-invoice.php:144 -msgid "Email subject" -msgstr "Predmet emailu" - -#: classes/abstracts/abstract-wc-email.php:439 -#: classes/abstracts/abstract-wc-email.php:446 -#: classes/emails/class-wc-email-customer-completed-order.php:143 -#: classes/emails/class-wc-email-customer-completed-order.php:150 -#: classes/emails/class-wc-email-customer-completed-order.php:157 -#: classes/emails/class-wc-email-customer-completed-order.php:164 -#: classes/emails/class-wc-email-customer-invoice.php:146 -#: classes/emails/class-wc-email-customer-invoice.php:153 -#: classes/emails/class-wc-email-customer-invoice.php:160 -#: classes/emails/class-wc-email-customer-invoice.php:167 -msgid "Defaults to %s" -msgstr "Štandardné pre %s" - -#: classes/abstracts/abstract-wc-email.php:444 -#: classes/emails/class-wc-email-customer-invoice.php:151 -msgid "Email heading" -msgstr "Hlavička emailu" - -#: classes/abstracts/abstract-wc-email.php:451 -#: classes/emails/class-wc-email-customer-completed-order.php:169 -#: classes/emails/class-wc-email-customer-invoice.php:172 -#: classes/emails/class-wc-email-new-order.php:142 -msgid "Email type" -msgstr "Typ emailu" - -#: classes/abstracts/abstract-wc-email.php:453 -#: classes/emails/class-wc-email-customer-completed-order.php:171 -#: classes/emails/class-wc-email-customer-invoice.php:174 -#: classes/emails/class-wc-email-new-order.php:144 -msgid "Choose which format of email to send." -msgstr "Zvoľte typ emailu na odosielanie" - -#: classes/abstracts/abstract-wc-email.php:457 -#: classes/emails/class-wc-email-customer-completed-order.php:175 -#: classes/emails/class-wc-email-customer-invoice.php:178 -#: classes/emails/class-wc-email-new-order.php:148 -msgid "Plain text" -msgstr "Čistý text" - -#: classes/abstracts/abstract-wc-email.php:458 -#: classes/emails/class-wc-email-customer-completed-order.php:176 -#: classes/emails/class-wc-email-customer-invoice.php:179 -#: classes/emails/class-wc-email-new-order.php:149 -msgid "HTML" -msgstr "HTML" - -#: classes/abstracts/abstract-wc-email.php:459 -#: classes/emails/class-wc-email-customer-completed-order.php:177 -#: classes/emails/class-wc-email-customer-invoice.php:180 -#: classes/emails/class-wc-email-new-order.php:150 -msgid "Multipart" -msgstr "Viacdielne" - -#: classes/abstracts/abstract-wc-email.php:495 -#: classes/abstracts/abstract-wc-email.php:516 -msgid "Could not write to template file." -msgstr "Nemožno zapísať do súboru šablóny." - -#: classes/abstracts/abstract-wc-email.php:543 -msgid "Template file copied to theme." -msgstr "Súbor šablóny skopírovaný do témy." - -#: classes/abstracts/abstract-wc-email.php:552 -msgid "Template file deleted from theme." -msgstr "Súbor šablóny zmazaný z témy." - -#: classes/abstracts/abstract-wc-email.php:560 -#: classes/abstracts/abstract-wc-integration.php:30 -#: classes/abstracts/abstract-wc-settings-api.php:39 woocommerce.php:170 -msgid "Settings" -msgstr "Nastavenia" - -#: classes/abstracts/abstract-wc-email.php:572 -msgid "HTML template" -msgstr "HTML šablóna" - -#: classes/abstracts/abstract-wc-email.php:573 -msgid "Plain text template" -msgstr "Šablóna čistého textu" - -#: classes/abstracts/abstract-wc-email.php:592 -msgid "Delete template file" -msgstr "Vymazať súbor šablóny" - -#: classes/abstracts/abstract-wc-email.php:595 -msgid "This template has been overridden by your theme and can be found in: %s." -msgstr "Táto šablóna bola nahradená vašou témou a nachádza sa v:%s." - -#: classes/abstracts/abstract-wc-email.php:610 -msgid "Copy file to theme" -msgstr "Kopírovať súbor do témy" - -#: classes/abstracts/abstract-wc-email.php:613 -msgid "To override and edit this email template copy %s to your theme folder: %s." -msgstr "Pre nahradenie a upravenie šabóny emailu skopírujte %s do adresára témy %s." - -#: classes/abstracts/abstract-wc-email.php:624 -msgid "File was not found." -msgstr "Súbor nebol nájdený." - -#: classes/abstracts/abstract-wc-email.php:649 -msgid "View template" -msgstr "Zobraziť šablónu" - -#: classes/abstracts/abstract-wc-email.php:650 -msgid "Hide template" -msgstr "Schovať šablónu" - -#: classes/abstracts/abstract-wc-email.php:661 -msgid "Are you sure you want to delete this template file?" -msgstr "Ste si istý, že chcete vymazať tento súbor zo šablóny?" - -#: classes/abstracts/abstract-wc-product.php:33 -msgid "The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class directly." -msgstr "Trieda WC_Produkt je abstraktná. Použite get_product() pre konkretizovanie produktu radšej ako použitie tejto triedy." - -#: classes/abstracts/abstract-wc-product.php:545 -#: classes/abstracts/abstract-wc-product.php:550 -#: classes/abstracts/abstract-wc-product.php:569 -msgid "In stock" -msgstr "Na sklade" - -#: classes/abstracts/abstract-wc-product.php:550 -msgid "Only %s left in stock" -msgstr "Len %s skladom" - -#: classes/abstracts/abstract-wc-product.php:553 -msgid "%s in stock" -msgstr "%s na sklade" - -#: classes/abstracts/abstract-wc-product.php:560 -msgid "(backorders allowed)" -msgstr "(Backorder povolený)" - -#: classes/abstracts/abstract-wc-product.php:566 -#: classes/abstracts/abstract-wc-product.php:579 templates/cart/cart.php:76 -msgid "Available on backorder" -msgstr "dostupné na Backorder" - -#: classes/abstracts/abstract-wc-product.php:572 -#: classes/abstracts/abstract-wc-product.php:582 -#: classes/abstracts/abstract-wc-product.php:586 -msgid "Out of stock" -msgstr "Nie je na sklade" - -#: classes/abstracts/abstract-wc-product.php:846 -#: classes/abstracts/abstract-wc-product.php:852 classes/class-wc-cart.php:1801 -#: classes/class-wc-order.php:891 classes/class-wc-product-variable.php:274 -#: classes/class-wc-product-variable.php:283 -#: classes/class-wc-product-variation.php:246 -msgid "Free!" -msgstr "Zadarmo!" - -#: classes/abstracts/abstract-wc-product.php:870 -msgctxt "min_price" -msgid "From:" -msgstr "od:" - -#: classes/abstracts/abstract-wc-product.php:959 -#: templates/single-product-reviews.php:28 -msgid "Rated %s out of 5" -msgstr "Hodnotenie %s z 5" - -#: classes/abstracts/abstract-wc-product.php:961 -#: templates/single-product/review.php:27 -#: templates/single-product-reviews.php:28 -msgid "out of 5" -msgstr "z 5" - -#: classes/class-wc-cart.php:460 -msgid "Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in stock). Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Ľutujeme, ale nemáme dosť \"%s\" na sklade na vybavenie objednávky (%s na sklade). Upravte, prosím, Váš košík a vyskúšajte to znova. Ospravedlňujeme sa za spôsobené nepríjemnosti." - -#: classes/class-wc-cart.php:479 classes/class-wc-cart.php:488 -msgid "Sorry, we do not have enough \"%s\" in stock to fulfil your order (%s in stock). Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Ľutujeme, ale nemáme dosť \"%s\" na sklade na vybavenie objednávky (%s na sklade). Upravte, prosím, Váš košík a vyskúšajte to znova. Ospravedlňujeme sa za spôsobené nepríjemnosti." - -#: classes/class-wc-cart.php:523 -msgid "Sorry, we do not have enough \"%s\" in stock to fulfil your order right now. Please try again in %d minutes or edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Ľutujeme, ale nemáme dosť \"%s\" na sklade na vybavenie objednávky. Upravte, prosím, Váš košík a vyskúšajte to znova za %d minút. Ospravedlňujeme sa za spôsobené nepríjemnosti." - -#: classes/class-wc-cart.php:533 -msgid "Sorry, \"%s\" is not in stock. Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Ľutujeme, \"%s\" nie je skladom. Upravte, prosím, Váš košík a vyskúšajte to znova. Ospravedlňujeme sa za spôsobené nepríjemnosti." - -#: classes/class-wc-cart.php:845 -msgid "Sorry, "%s" cannot be purchased." -msgstr "Ľutujeme, "%s" sa nedá kúpiť." - -#: classes/class-wc-cart.php:852 -msgid "You cannot add "%s" to the cart because the product is out of stock." -msgstr "Nemôžete pridať"%s" do košíka pretože produkt nie je skladom." - -#: classes/class-wc-cart.php:857 -msgid "You cannot add that amount of "%s" to the cart because there is not enough stock (%s remaining)." -msgstr "Počet "%s" nie je možné pridať do košíka, pretože nie je dostatočné množstvo skladom (na sklade zostáva %s)." - -#: classes/class-wc-cart.php:869 classes/class-wc-cart.php:883 -#: classes/class-wc-cart.php:891 templates/cart/mini-cart.php:68 -#: woocommerce-functions.php:497 woocommerce.php:1210 -msgid "View Cart →" -msgstr "Zobraz košík →" - -#: classes/class-wc-cart.php:869 -msgid "You already have this item in your cart." -msgstr "Túto položku už máte v nákupnom košíku." - -#: classes/class-wc-cart.php:883 classes/class-wc-cart.php:891 -msgid "%s You cannot add that amount to the cart — we have %s in stock and you already have %s in your cart." -msgstr "%s Nemôžete ridať taký počet do košíka — máme %s skladom, a vy máte %s v košíku." - -#: classes/class-wc-cart.php:1813 -msgid "via" -msgstr "via" - -#: classes/class-wc-checkout.php:64 -msgid "Account username" -msgstr "Uživateľské meno" - -#: classes/class-wc-checkout.php:65 -msgctxt "placeholder" -msgid "Username" -msgstr "Používateľské meno" - -#: classes/class-wc-checkout.php:72 -msgid "Account password" -msgstr "Heslo k účtu" - -#: classes/class-wc-checkout.php:73 -msgctxt "placeholder" -msgid "Password" -msgstr "Heslo" - -#: classes/class-wc-checkout.php:89 -msgid "Order Notes" -msgstr "Poznámky k objednávke" - -#: classes/class-wc-checkout.php:90 -msgctxt "placeholder" -msgid "Notes about your order, e.g. special notes for delivery." -msgstr "Poznámka k objednávke" - -#: classes/class-wc-checkout.php:152 -msgid "Order – %s" -msgstr "Objednať – %s" - -#: classes/class-wc-checkout.php:152 -msgctxt "Order date parsed by strftime" -msgid "%b %d, %Y @ %I:%M %p" -msgstr "%b %d, %Y @ %I:%M %p" - -#: classes/class-wc-checkout.php:278 -msgid "Backordered" -msgstr "Vrátené" - -#: classes/class-wc-checkout.php:388 -msgid "Sorry, your session has expired. Return to homepage →" -msgstr "Ľutujeme, ale Vaša relácia vypršala. Vráťte sa na domovskú stránku →" - -#: classes/class-wc-checkout.php:440 woocommerce-functions.php:1696 -msgid "is a required field." -msgstr "je povinné pole. Prosím vyplňte ho." - -#: classes/class-wc-checkout.php:453 -msgid "(%s) is not a valid postcode/ZIP." -msgstr "(%s) nie je správne PSČ/Poštové číslo." - -#: classes/class-wc-checkout.php:474 -msgid "is not valid. Please enter one of the following:" -msgstr "je neplatné. Prosím zadajte jedno z nasledujúcich:" - -#: classes/class-wc-checkout.php:482 -msgid "is not a valid number." -msgstr "neplatné číslo" - -#: classes/class-wc-checkout.php:489 -msgid "is not a valid email address." -msgstr "neplatná emailová adresa" - -#: classes/class-wc-checkout.php:545 -msgid "Please enter an account username." -msgstr "Zadajte, prosím ,uživateľské meno k Vášmu účtu." - -#: classes/class-wc-checkout.php:549 -msgid "Invalid email/username." -msgstr "Neplatný e-mail a/alebo uživateľské meno." - -#: classes/class-wc-checkout.php:552 -msgid "An account is already registered with that username. Please choose another." -msgstr "Účet s týmto uživateľským menom už je zaregistrovaný. Zvoľte si, prosím, iné." - -#: classes/class-wc-checkout.php:562 -msgid "Please enter an account password." -msgstr "Zadajte, prosím, heslo k účtu." - -#: classes/class-wc-checkout.php:565 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:83 -#: woocommerce-functions.php:758 woocommerce-functions.php:1626 -msgid "Passwords do not match." -msgstr "Heslá sa nezhodujú." - -#: classes/class-wc-checkout.php:569 -msgid "An account is already registered with your email address. Please login." -msgstr "Účet s touto e-mailovou adresou je už zaregistrovaný. Prosím prihláste sa." - -#: classes/class-wc-checkout.php:575 -msgid "You must accept our Terms & Conditions." -msgstr "Pro pokračovanie je nutné súhlasiť s našimi obchodnými podmienkami." - -#: classes/class-wc-checkout.php:584 -msgid "Invalid shipping method." -msgstr "Neplatný spôsob dopravy." - -#: classes/class-wc-checkout.php:597 -msgid "Invalid payment method." -msgstr "Neplatný spôsob platby." - -#: classes/class-wc-checkout.php:637 woocommerce-functions.php:730 -#: woocommerce-functions.php:732 woocommerce-functions.php:735 -#: woocommerce-functions.php:747 woocommerce-functions.php:749 -#: woocommerce-functions.php:752 woocommerce-functions.php:786 -msgid "ERROR" -msgstr "CHYBA" - -#: classes/class-wc-checkout.php:637 woocommerce-functions.php:786 -msgid "Couldn’t register you… please contact us if you continue to have problems." -msgstr "Nemožno vás zaregistrovať, prosím kontaktujte nás ak problém bude pretrvávať." - -#: classes/class-wc-countries.php:37 -msgid "Afghanistan" -msgstr "Afghanistan" - -#: classes/class-wc-countries.php:38 -msgid "Åland Islands" -msgstr "Åland Islands" - -#: classes/class-wc-countries.php:39 -msgid "Albania" -msgstr "Albania" - -#: classes/class-wc-countries.php:40 -msgid "Algeria" -msgstr "Algeria" - -#: classes/class-wc-countries.php:41 -msgid "Andorra" -msgstr "Andorra" - -#: classes/class-wc-countries.php:42 -msgid "Angola" -msgstr "Angola" - -#: classes/class-wc-countries.php:43 -msgid "Anguilla" -msgstr "Anguilla" - -#: classes/class-wc-countries.php:44 -msgid "Antarctica" -msgstr "Antarctica" - -#: classes/class-wc-countries.php:45 -msgid "Antigua and Barbuda" -msgstr "Antigua and Barbuda" - -#: classes/class-wc-countries.php:46 -msgid "Argentina" -msgstr "Argentina" - -#: classes/class-wc-countries.php:47 -msgid "Armenia" -msgstr "Armenia" - -#: classes/class-wc-countries.php:48 -msgid "Aruba" -msgstr "Aruba" - -#: classes/class-wc-countries.php:49 -msgid "Australia" -msgstr "Australia" - -#: classes/class-wc-countries.php:50 -msgid "Austria" -msgstr "Austria" - -#: classes/class-wc-countries.php:51 -msgid "Azerbaijan" -msgstr "Azerbaijan" - -#: classes/class-wc-countries.php:52 -msgid "Bahamas" -msgstr "Bahamas" - -#: classes/class-wc-countries.php:53 -msgid "Bahrain" -msgstr "Bahrain" - -#: classes/class-wc-countries.php:54 -msgid "Bangladesh" -msgstr "Bangladesh" - -#: classes/class-wc-countries.php:55 -msgid "Barbados" -msgstr "Barbados" - -#: classes/class-wc-countries.php:56 -msgid "Belarus" -msgstr "Belarus" - -#: classes/class-wc-countries.php:57 -msgid "Belgium" -msgstr "Belgium" - -#: classes/class-wc-countries.php:58 -msgid "Belau" -msgstr "Belau" - -#: classes/class-wc-countries.php:59 -msgid "Belize" -msgstr "Belize" - -#: classes/class-wc-countries.php:60 -msgid "Benin" -msgstr "Benin" - -#: classes/class-wc-countries.php:61 -msgid "Bermuda" -msgstr "Bermuda" - -#: classes/class-wc-countries.php:62 -msgid "Bhutan" -msgstr "Bhutan" - -#: classes/class-wc-countries.php:63 -msgid "Bolivia" -msgstr "Bolivia" - -#: classes/class-wc-countries.php:64 -msgid "Bonaire, Saint Eustatius and Saba" -msgstr "Bonaire, Saint Eustatius and Saba" - -#: classes/class-wc-countries.php:65 -msgid "Bosnia and Herzegovina" -msgstr "Bosnia and Herzegovina" - -#: classes/class-wc-countries.php:66 -msgid "Botswana" -msgstr "Botswana" - -#: classes/class-wc-countries.php:67 -msgid "Bouvet Island" -msgstr "Bouvet Island" - -#: classes/class-wc-countries.php:68 -msgid "Brazil" -msgstr "Brazil" - -#: classes/class-wc-countries.php:69 -msgid "British Indian Ocean Territory" -msgstr "British Indian Ocean Territory" - -#: classes/class-wc-countries.php:70 -msgid "British Virgin Islands" -msgstr "British Virgin Islands" - -#: classes/class-wc-countries.php:71 -msgid "Brunei" -msgstr "Brunei" - -#: classes/class-wc-countries.php:72 -msgid "Bulgaria" -msgstr "Bulgaria" - -#: classes/class-wc-countries.php:73 -msgid "Burkina Faso" -msgstr "Burkina Faso" - -#: classes/class-wc-countries.php:74 -msgid "Burundi" -msgstr "Burundi" - -#: classes/class-wc-countries.php:75 -msgid "Cambodia" -msgstr "Cambodia" - -#: classes/class-wc-countries.php:76 -msgid "Cameroon" -msgstr "Cameroon" - -#: classes/class-wc-countries.php:77 -msgid "Canada" -msgstr "Canada" - -#: classes/class-wc-countries.php:78 -msgid "Cape Verde" -msgstr "Cape Verde" - -#: classes/class-wc-countries.php:79 -msgid "Cayman Islands" -msgstr "Cayman Islands" - -#: classes/class-wc-countries.php:80 -msgid "Central African Republic" -msgstr "Central African Republic" - -#: classes/class-wc-countries.php:81 -msgid "Chad" -msgstr "Chad" - -#: classes/class-wc-countries.php:82 -msgid "Chile" -msgstr "Chile" - -#: classes/class-wc-countries.php:83 -msgid "China" -msgstr "China" - -#: classes/class-wc-countries.php:84 -msgid "Christmas Island" -msgstr "Christmas Island" - -#: classes/class-wc-countries.php:85 -msgid "Cocos (Keeling) Islands" -msgstr "Cocos (Keeling) Islands" - -#: classes/class-wc-countries.php:86 -msgid "Colombia" -msgstr "Colombia" - -#: classes/class-wc-countries.php:87 -msgid "Comoros" -msgstr "Comoros" - -#: classes/class-wc-countries.php:88 -msgid "Congo (Brazzaville)" -msgstr "Congo (Brazzaville)" - -#: classes/class-wc-countries.php:89 -msgid "Congo (Kinshasa)" -msgstr "Congo (Kinshasa)" - -#: classes/class-wc-countries.php:90 -msgid "Cook Islands" -msgstr "Cook Islands" - -#: classes/class-wc-countries.php:91 -msgid "Costa Rica" -msgstr "Costa Rica" - -#: classes/class-wc-countries.php:92 -msgid "Croatia" -msgstr "Croatia" - -#: classes/class-wc-countries.php:93 -msgid "Cuba" -msgstr "Cuba" - -#: classes/class-wc-countries.php:94 -msgid "CuraÇao" -msgstr "CuraÇao" - -#: classes/class-wc-countries.php:95 -msgid "Cyprus" -msgstr "Cyprus" - -#: classes/class-wc-countries.php:96 -msgid "Czech Republic" -msgstr "Czech Republic" - -#: classes/class-wc-countries.php:97 -msgid "Denmark" -msgstr "Denmark" - -#: classes/class-wc-countries.php:98 -msgid "Djibouti" -msgstr "Djibouti" - -#: classes/class-wc-countries.php:99 -msgid "Dominica" -msgstr "Dominica" - -#: classes/class-wc-countries.php:100 -msgid "Dominican Republic" -msgstr "Dominican Republic" - -#: classes/class-wc-countries.php:101 -msgid "Ecuador" -msgstr "Ecuador" - -#: classes/class-wc-countries.php:102 -msgid "Egypt" -msgstr "Egypt" - -#: classes/class-wc-countries.php:103 -msgid "El Salvador" -msgstr "El Salvador" - -#: classes/class-wc-countries.php:104 -msgid "Equatorial Guinea" -msgstr "Equatorial Guinea" - -#: classes/class-wc-countries.php:105 -msgid "Eritrea" -msgstr "Eritrea" - -#: classes/class-wc-countries.php:106 -msgid "Estonia" -msgstr "Estonia" - -#: classes/class-wc-countries.php:107 -msgid "Ethiopia" -msgstr "Ethiopia" - -#: classes/class-wc-countries.php:108 -msgid "Falkland Islands" -msgstr "Falkland Islands" - -#: classes/class-wc-countries.php:109 -msgid "Faroe Islands" -msgstr "Faroe Islands" - -#: classes/class-wc-countries.php:110 -msgid "Fiji" -msgstr "Fiji" - -#: classes/class-wc-countries.php:111 -msgid "Finland" -msgstr "Finland" - -#: classes/class-wc-countries.php:112 -msgid "France" -msgstr "France" - -#: classes/class-wc-countries.php:113 -msgid "French Guiana" -msgstr "French Guiana" - -#: classes/class-wc-countries.php:114 -msgid "French Polynesia" -msgstr "French Polynesia" - -#: classes/class-wc-countries.php:115 -msgid "French Southern Territories" -msgstr "French Southern Territories" - -#: classes/class-wc-countries.php:116 -msgid "Gabon" -msgstr "Gabon" - -#: classes/class-wc-countries.php:117 -msgid "Gambia" -msgstr "Gambia" - -#: classes/class-wc-countries.php:118 i18n/states/US.php:23 -msgid "Georgia" -msgstr "Georgia" - -#: classes/class-wc-countries.php:119 -msgid "Germany" -msgstr "Germany" - -#: classes/class-wc-countries.php:120 -msgid "Ghana" -msgstr "Ghana" - -#: classes/class-wc-countries.php:121 -msgid "Gibraltar" -msgstr "Gibraltar" - -#: classes/class-wc-countries.php:122 -msgid "Greece" -msgstr "Greece" - -#: classes/class-wc-countries.php:123 -msgid "Greenland" -msgstr "Greenland" - -#: classes/class-wc-countries.php:124 -msgid "Grenada" -msgstr "Grenada" - -#: classes/class-wc-countries.php:125 -msgid "Guadeloupe" -msgstr "Guadeloupe" - -#: classes/class-wc-countries.php:126 -msgid "Guatemala" -msgstr "Guatemala" - -#: classes/class-wc-countries.php:127 -msgid "Guernsey" -msgstr "Guernsey" - -#: classes/class-wc-countries.php:128 -msgid "Guinea" -msgstr "Guinea" - -#: classes/class-wc-countries.php:129 -msgid "Guinea-Bissau" -msgstr "Guinea-Bissau" - -#: classes/class-wc-countries.php:130 -msgid "Guyana" -msgstr "Guyana" - -#: classes/class-wc-countries.php:131 -msgid "Haiti" -msgstr "Haiti" - -#: classes/class-wc-countries.php:132 -msgid "Heard Island and McDonald Islands" -msgstr "Heard Island and McDonald Islands" - -#: classes/class-wc-countries.php:133 -msgid "Honduras" -msgstr "Honduras" - -#: classes/class-wc-countries.php:134 -msgid "Hong Kong" -msgstr "Hong Kong" - -#: classes/class-wc-countries.php:135 -msgid "Hungary" -msgstr "Hungary" - -#: classes/class-wc-countries.php:136 -msgid "Iceland" -msgstr "Iceland" - -#: classes/class-wc-countries.php:137 -msgid "India" -msgstr "India" - -#: classes/class-wc-countries.php:138 -msgid "Indonesia" -msgstr "Indonesia" - -#: classes/class-wc-countries.php:139 -msgid "Iran" -msgstr "Iran" - -#: classes/class-wc-countries.php:140 -msgid "Iraq" -msgstr "Iraq" - -#: classes/class-wc-countries.php:141 -msgid "Republic of Ireland" -msgstr "Republic of Ireland" - -#: classes/class-wc-countries.php:142 -msgid "Isle of Man" -msgstr "Isle of Man" - -#: classes/class-wc-countries.php:143 -msgid "Israel" -msgstr "Israel" - -#: classes/class-wc-countries.php:144 -msgid "Italy" -msgstr "Italy" - -#: classes/class-wc-countries.php:145 -msgid "Ivory Coast" -msgstr "Ivory Coast" - -#: classes/class-wc-countries.php:146 -msgid "Jamaica" -msgstr "Jamaica" - -#: classes/class-wc-countries.php:147 -msgid "Japan" -msgstr "Japan" - -#: classes/class-wc-countries.php:148 -msgid "Jersey" -msgstr "Jersey" - -#: classes/class-wc-countries.php:149 -msgid "Jordan" -msgstr "Jordan" - -#: classes/class-wc-countries.php:150 -msgid "Kazakhstan" -msgstr "Kazakhstan" - -#: classes/class-wc-countries.php:151 -msgid "Kenya" -msgstr "Kenya" - -#: classes/class-wc-countries.php:152 -msgid "Kiribati" -msgstr "Kiribati" - -#: classes/class-wc-countries.php:153 -msgid "Kuwait" -msgstr "Kuwait" - -#: classes/class-wc-countries.php:154 -msgid "Kyrgyzstan" -msgstr "Kyrgyzstan" - -#: classes/class-wc-countries.php:155 -msgid "Laos" -msgstr "Laos" \ No newline at end of file diff --git a/i18n/languages/woocommerce-sv_SE.mo b/i18n/languages/woocommerce-sv_SE.mo deleted file mode 100644 index fd0306a2a7c..00000000000 Binary files a/i18n/languages/woocommerce-sv_SE.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-sv_SE.po b/i18n/languages/woocommerce-sv_SE.po deleted file mode 100644 index 658ebac73f4..00000000000 --- a/i18n/languages/woocommerce-sv_SE.po +++ /dev/null @@ -1,14735 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce v2.0.10\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2013-05-20 19:18+0100\n" -"Last-Translator: Björn Sennbrink \n" -"Language-Team: FS Data and Sennbrink Kommunikation \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Poedit 1.5.5\n" -"X-Poedit-SourceCharset: utf-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" -"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" -"X-Poedit-Basepath: .\n" -"X-Textdomain-Support: yes\n" -"X-Poedit-SearchPath-0: .\n" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:85 -#: admin/woocommerce-admin-attributes.php:299 -#: admin/woocommerce-admin-init.php:66 -msgid "Attributes" -msgstr "Attribut" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:227 -msgid "Edit Attribute" -msgstr "Redigera attribut" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:255 -#: admin/woocommerce-admin-attributes.php:388 -msgid "Select" -msgstr "Förval" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:256 -#: admin/woocommerce-admin-attributes.php:389 -msgid "Text" -msgstr "Text" - -# @ woocommerce -#: admin/post-types/product.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:376 -#: admin/post-types/writepanels/writepanel-product_data.php:470 -#: admin/woocommerce-admin-attributes.php:233 -#: admin/woocommerce-admin-attributes.php:269 -#: admin/woocommerce-admin-attributes.php:307 -#: admin/woocommerce-admin-attributes.php:330 -#: admin/woocommerce-admin-attributes.php:374 -#: admin/woocommerce-admin-attributes.php:399 -#: admin/woocommerce-admin-init.php:437 -#: classes/widgets/class-wc-widget-product-categories.php:191 -#: templates/single-product-reviews.php:84 woocommerce-ajax.php:1173 -msgid "Name" -msgstr "Namn" - -# @ woocommerce -#: admin/post-types/product.php:101 admin/woocommerce-admin-attributes.php:251 -#: admin/woocommerce-admin-attributes.php:309 -#: admin/woocommerce-admin-attributes.php:386 -msgid "Type" -msgstr "Typ" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:311 -msgid "Terms" -msgstr "Villkor" - -# @ default -# @ woocommerce -#: admin/post-types/product.php:151 -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#: admin/post-types/writepanels/writepanel-order_data.php:387 -#: admin/post-types/writepanels/writepanel-product_data.php:1061 -#: admin/woocommerce-admin-attributes.php:323 -#: templates/myaccount/my-address.php:45 woocommerce.php:951 -#: woocommerce.php:987 woocommerce.php:1024 woocommerce.php:1062 -#: woocommerce.php:1100 -msgid "Edit" -msgstr "Redigera" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:43 -#: admin/post-types/writepanels/writepanel-product_images.php:103 -#: admin/woocommerce-admin-attributes.php:323 -msgid "Delete" -msgstr "Radera" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:360 -msgid "No attributes currently exist." -msgstr "Det existerar för tillfället inga attribut" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:370 -msgid "Add New Attribute" -msgstr "Lägg till nytt attribut" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:371 -msgid "" -"Attributes let you define extra product data, such as size or colour. You " -"can use these attributes in the shop sidebar using the \"layered nav\" " -"widgets. Please note: you cannot rename an attribute later on." -msgstr "" -"Attribut låter dig deffiniera extra produktdata, som storlek eller färg. Du " -"kan använda dessa attribut i butikens sidebar genom att använda \"layered nav" -"\" widgets. Observera: du kan inte byta namn på ett attribut senare." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:259 -#: admin/woocommerce-admin-attributes.php:392 -msgid "" -"Determines how you select attributes for products. Text " -"allows manual entry via the product page, whereas select " -"attribute terms can be defined from this section. If you plan on using an " -"attribute for variations use select." -msgstr "" -"Bestämmer hur du väljer attribut för produkter. Text " -"tillåter manuell inmatning på produktsidan, men förvalens " -"attributvillkor kan definieras från den här sektionen. Planerar du att " -"använda ett attribut för variationer, använd förval." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:405 -msgid "Add Attribute" -msgstr "Lägg till attribut" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:416 -msgid "Are you sure you want to delete this attribute?" -msgstr "Är du säker på att du vill radera det här attributet?" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:78 -msgid "Shop Content" -msgstr "Butiksinnehåll" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:74 -#: admin/woocommerce-admin-taxonomies.php:28 -#: admin/woocommerce-admin-taxonomies.php:122 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:273 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:293 -#: woocommerce.php:982 -msgid "Products" -msgstr "Produkter" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:57 -#: woocommerce.php:821 woocommerce.php:823 -msgid "Product Categories" -msgstr "Produktkategorier" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-tag-cloud.php:58 -#: woocommerce.php:857 woocommerce.php:859 -msgid "Product Tags" -msgstr "Produktetiketter" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:68 -#: admin/woocommerce-admin-dashboard.php:142 woocommerce.php:1058 -msgid "Orders" -msgstr "Ordrar" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:148 -msgid "Pending" -msgstr "Väntande" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:162 -msgid "On-Hold" -msgstr "Parkerad" - -# @ woocommerce -#: admin/post-types/shop_order.php:158 -#: admin/woocommerce-admin-dashboard.php:176 -msgid "Processing" -msgstr "Pågående" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:190 -msgid "Completed" -msgstr "Genomförd" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:40 -msgid "Monthly Sales" -msgstr "Månatlig försäljning" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:239 -msgid "item" -msgid_plural "items" -msgstr[0] "artikel" -msgstr[1] "artiklar" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:279 -#: classes/abstracts/abstract-wc-product.php:962 -#: templates/single-product/review.php:27 -#: templates/single-product-reviews.php:28 -msgid "out of 5" -msgstr "av 5" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:287 -msgid "There are no product reviews yet." -msgstr "Det finns inga produktrecensioner ännu." - -# @ woocommerce -#. translators: plugin header field 'Name' -#: admin/woocommerce-admin-content.php:83 admin/woocommerce-admin-init.php:62 -#: admin/woocommerce-admin-init.php:71 admin/woocommerce-admin-init.php:404 -#: classes/class-wc-order.php:1167 classes/class-wc-order.php:1169 -#: classes/class-wc-order.php:1172 woocommerce.php:0 -msgid "WooCommerce" -msgstr "WooCommerce" - -# @ woocommerce -#: admin/includes/welcome.php:153 admin/woocommerce-admin-content.php:41 -#: admin/woocommerce-admin-init.php:88 admin/woocommerce-admin-status.php:278 -#: classes/abstracts/abstract-wc-email.php:560 -#: classes/abstracts/abstract-wc-integration.php:30 -#: classes/abstracts/abstract-wc-settings-api.php:39 woocommerce.php:170 -msgid "Settings" -msgstr "Inställningar" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:57 admin/woocommerce-admin-init.php:64 -msgid "Reports" -msgstr "Rapporter" - -# @ woocommerce -#: woocommerce-ajax.php:256 woocommerce-ajax.php:290 woocommerce-ajax.php:313 -msgid "You do not have sufficient permissions to access this page." -msgstr "Du saknar den behörighet som krävs för att se den här sidan." - -# @ woocommerce -#: woocommerce-ajax.php:258 woocommerce-ajax.php:291 woocommerce-ajax.php:314 -msgid "You have taken too long. Please go back and retry." -msgstr "Det tog för lång tid. Var vänlig gå tillbaka och försök igen." - -# @ woocommerce -#: admin/post-types/product.php:520 -#, php-format -msgid "[%s with SKU of %s]" -msgstr "[%s med Art. nr. av %s]" - -# @ woocommerce -#: admin/post-types/product.php:526 -#, php-format -msgid "[%s with ID of %d]" -msgstr "[%s med ID av %d]" - -# @ woocommerce -#: admin/includes/duplicate_product.php:23 -msgid "No product to duplicate has been supplied!" -msgstr "Ingen produkt att duplicera har valts!" - -# @ woocommerce -#: admin/includes/duplicate_product.php:43 -msgid "Product creation failed, could not find original product:" -msgstr "Skapande av produkt misslyckades, kunde inte hitta originalprodukten:" - -# @ woocommerce -#: admin/post-types/product.php:31 -msgid "Make a duplicate from this product" -msgstr "Skapa en dublett av den här produkten" - -# @ woocommerce -#: admin/post-types/product.php:32 -msgid "Duplicate" -msgstr "Duplicera" - -# @ woocommerce -#: admin/post-types/product.php:61 -msgid "Copy to a new draft" -msgstr "Kopiera till nytt utkast" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:195 -msgctxt "page_slug" -msgid "shop" -msgstr "butik" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:195 -msgid "Shop" -msgstr "Butik" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:198 -msgctxt "page_slug" -msgid "cart" -msgstr "varukorg" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:198 -#: admin/woocommerce-admin-status.php:303 -#: assets/js/admin/editor_plugin_lang.php:15 -#: classes/widgets/class-wc-widget-cart.php:61 -msgid "Cart" -msgstr "Varukorg" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:201 -msgctxt "page_slug" -msgid "checkout" -msgstr "till kassan" - -# @ woocommerce -#: admin/settings/settings-init.php:114 -#: admin/woocommerce-admin-install.php:201 -#: admin/woocommerce-admin-status.php:307 -#: assets/js/admin/editor_plugin_lang.php:16 -msgid "Checkout" -msgstr "Till kassan" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:204 -msgctxt "page_slug" -msgid "my-account" -msgstr "mitt-konto" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:204 -#: admin/woocommerce-admin-status.php:319 -#: assets/js/admin/editor_plugin_lang.php:18 -#: templates/checkout/thankyou.php:30 -msgid "My Account" -msgstr "Mitt konto" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:210 -msgctxt "page_slug" -msgid "edit-address" -msgstr "redigera-adress" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:210 -msgid "Edit My Address" -msgstr "Redigera min adress" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:213 -msgctxt "page_slug" -msgid "view-order" -msgstr "visa-order" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:213 -#: admin/woocommerce-admin-status.php:327 -#: assets/js/admin/editor_plugin_lang.php:21 woocommerce.php:1065 -#: woocommerce.php:1066 -msgid "View Order" -msgstr "Visa order" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:216 -msgctxt "page_slug" -msgid "change-password" -msgstr "andra-losenord" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:216 -#: admin/woocommerce-admin-status.php:331 -#: assets/js/admin/editor_plugin_lang.php:20 -msgid "Change Password" -msgstr "Ändra lösenord" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:222 -msgctxt "page_slug" -msgid "pay" -msgstr "betala" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:222 -msgid "Checkout → Pay" -msgstr "Till kassan → Betala" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:225 -msgctxt "page_slug" -msgid "order-received" -msgstr "order-mottagen" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:190 -#: admin/woocommerce-admin-install.php:225 -msgid "Order Received" -msgstr "Order mottagen" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:25 -msgid "Code" -msgstr "Kod" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:26 -msgid "Coupon type" -msgstr "Kupongtyp" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:27 -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Coupon amount" -msgstr "Kupongbelopp" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:29 -msgid "Product IDs" -msgstr "Produkt IDn" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "Usage limit" -msgstr "Användningsgräns" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:31 -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "Expiry date" -msgstr "Gäller till" - -# @ woocommerce -#: woocommerce.php:995 -msgid "Parent Product" -msgstr "Produktförälder" - -# @ woocommerce -#: admin/post-types/product.php:86 admin/woocommerce-admin-taxonomies.php:297 -msgid "Image" -msgstr "Bild" - -# @ woocommerce -#: admin/post-types/product.php:98 -msgid "Categories" -msgstr "Kategorier" - -# @ woocommerce -#: admin/post-types/product.php:99 -msgid "Tags" -msgstr "Etiketter" - -# @ woocommerce -#: admin/post-types/product.php:100 admin/post-types/product.php:632 -#: admin/post-types/product.php:906 -#: admin/post-types/writepanels/writepanel-product_data.php:1058 -#: admin/woocommerce-admin-init.php:450 -msgid "Featured" -msgstr "Framhävd" - -# @ woocommerce -#: admin/post-types/product.php:96 admin/post-types/product.php:568 -#: admin/post-types/product.php:789 admin/woocommerce-admin-functions.php:202 -#: templates/cart/cart.php:29 templates/emails/admin-new-order.php:24 -#: templates/emails/customer-completed-order.php:25 -#: templates/emails/customer-invoice.php:29 -#: templates/emails/customer-note.php:29 -#: templates/emails/customer-processing-order.php:25 -msgid "Price" -msgstr "Pris" - -# @ woocommerce -#: admin/post-types/product.php:102 admin/post-types/shop_order.php:50 -#: templates/myaccount/my-orders.php:33 -msgid "Date" -msgstr "Datum" - -# @ woocommerce -#: admin/post-types/shop_order.php:131 -msgid "Unpublished" -msgstr "Ej publicerad" - -# @ woocommerce -#: admin/post-types/shop_order.php:133 -msgid "Y/m/d g:i:s A" -msgstr "Y/m/d H:i:s" - -# @ woocommerce -#: admin/post-types/shop_order.php:139 -#, php-format -msgid "%s ago" -msgstr "%s sedan" - -# @ woocommerce -#: admin/post-types/shop_order.php:141 -msgid "Y/m/d" -msgstr "Y/m/d" - -# @ woocommerce -#: admin/post-types/shop_order.php:43 -#: admin/settings/settings-payment-gateways.php:29 -#: admin/settings/settings-shipping-methods.php:31 -#: templates/myaccount/my-orders.php:34 -msgid "Status" -msgstr "Status" - -# @ woocommerce -#: admin/post-types/shop_order.php:44 templates/myaccount/my-orders.php:32 -#: woocommerce.php:1059 -msgid "Order" -msgstr "Order" - -# @ woocommerce -#: admin/post-types/shop_order.php:45 -msgid "Billing" -msgstr "Fakturering" - -# @ woocommerce -#: admin/post-types/shop_order.php:46 -#: admin/post-types/writepanels/writepanel-order_data.php:539 -#: admin/post-types/writepanels/writepanel-product_data.php:81 -#: admin/settings/settings-tax-rates.php:52 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-content.php:49 -#: admin/woocommerce-admin-settings.php:187 templates/cart/totals.php:46 -#: templates/checkout/review-order.php:45 -msgid "Shipping" -msgstr "Frakt" - -# @ woocommerce -#: admin/post-types/shop_order.php:47 templates/cart/totals.php:92 -#: templates/checkout/review-order.php:91 -msgid "Order Total" -msgstr "Ordertotal" - -# @ woocommerce -#: admin/post-types/shop_order.php:95 -#: admin/post-types/writepanels/writepanel-order_data.php:93 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:120 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:180 -#: woocommerce-ajax.php:1654 -msgid "Guest" -msgstr "Gäst" - -# @ woocommerce -#: admin/post-types/shop_order.php:282 -msgid "Show all statuses" -msgstr "Visa alla statusar" - -# @ woocommerce -#: admin/post-types/shop_order.php:301 admin/post-types/shop_order.php:326 -msgid "Show all customers" -msgstr "Visa alla kunder" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:26 -#: admin/woocommerce-admin-reports.php:26 -#: admin/woocommerce-admin-reports.php:66 -#: admin/woocommerce-admin-reports.php:82 -#: admin/woocommerce-admin-reports.php:93 -msgid "Overview" -msgstr "Översikt" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:42 -msgid "Product Sales" -msgstr "Produktförsäljning" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:47 -msgid "Top sellers" -msgstr "Toppsäljare" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:52 -msgid "Top earners" -msgstr "Produkter med bäst förtjänst" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:380 -msgid "Total sales" -msgstr "Antal försäljningar" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:382 -#: admin/woocommerce-admin-reports.php:388 -#: admin/woocommerce-admin-reports.php:394 -#: admin/woocommerce-admin-reports.php:400 -#: admin/woocommerce-admin-reports.php:406 -#: admin/woocommerce-admin-reports.php:412 -#: admin/woocommerce-admin-reports.php:655 -#: admin/woocommerce-admin-reports.php:661 -#: admin/woocommerce-admin-reports.php:667 -#: admin/woocommerce-admin-reports.php:673 -#: admin/woocommerce-admin-reports.php:839 -#: admin/woocommerce-admin-reports.php:845 -#: admin/woocommerce-admin-reports.php:851 -#: admin/woocommerce-admin-reports.php:857 -#: admin/woocommerce-admin-reports.php:1380 -#: admin/woocommerce-admin-reports.php:1386 -#: admin/woocommerce-admin-reports.php:1392 -#: admin/woocommerce-admin-reports.php:1826 -#: admin/woocommerce-admin-reports.php:1832 -#: admin/woocommerce-admin-reports.php:1838 -#: admin/woocommerce-admin-reports.php:1844 -#: admin/woocommerce-admin-reports.php:1850 -#: admin/woocommerce-admin-reports.php:1856 -#: admin/woocommerce-admin-reports.php:2320 -#: admin/woocommerce-admin-reports.php:2331 -#: admin/woocommerce-admin-reports.php:2342 -msgid "n/a" -msgstr "Inte tillgänglig" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:386 -msgid "Total orders" -msgstr "Totalt antal ordrar" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:392 -msgid "Average order total" -msgstr "Genomsnittlig ordertotal" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:398 -msgid "Average order items" -msgstr "Genomsnittligt antal produkter" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1372 -msgid "From:" -msgstr "Från:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1372 -msgid "To:" -msgstr "Till:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:832 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1245 -#: admin/woocommerce-admin-reports.php:1372 -#: admin/woocommerce-admin-reports.php:1505 -#: admin/woocommerce-admin-reports.php:2309 -#: admin/woocommerce-admin-reports.php:2492 -msgid "Show" -msgstr "Visa" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:653 -msgid "Total sales in range" -msgstr "Total försäljning i urval" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:659 -msgid "Total orders in range" -msgstr "Totalt antal ordrar i urval" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:665 -msgid "Average order total in range" -msgstr "Genomsnittligt ordervärde i urval" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:671 -msgid "Average order items in range" -msgstr "Genomsnittligt antal produkter i urval" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:679 -msgid "Sales in range" -msgstr "Försäljning i urval" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:826 -#: admin/woocommerce-admin-reports.php:2303 -msgid "Year:" -msgstr "År:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:837 -msgid "Total sales for year" -msgstr "Total försäljning för året" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:843 -msgid "Total orders for year" -msgstr "Totalt antal ordrar för året" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:849 -msgid "Average order total for year" -msgstr "Genomsnittligt antal ordrar för år" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:855 -msgid "Average order items for year" -msgstr "Genomsnittligt antal produkter per order och år" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:863 -msgid "Monthly sales for year" -msgstr "Månatlig försäljning för år" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:60 -#: admin/woocommerce-admin-reports.php:23 -#: admin/woocommerce-admin-reports.php:997 -#: admin/woocommerce-admin-reports.php:1095 -#: admin/woocommerce-admin-reports.php:1214 -msgid "Sales" -msgstr "Rea" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1011 -msgid "Product does not exist" -msgstr "Produkten existerar inte" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1213 -#: admin/woocommerce-admin-reports.php:2351 -msgid "Month" -msgstr "Månad" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1235 -msgid "No sales :(" -msgstr "Ingen rea :(" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1824 -msgid "Total customers" -msgstr "Totalt antal kunder" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1830 -msgid "Total customer sales" -msgstr "Total försäljning kunder" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1836 -msgid "Total guest sales" -msgstr "Total försäljning gäster" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1842 -msgid "Total customer orders" -msgstr "Totalt antal ordrar per kund" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1848 -msgid "Total guest orders" -msgstr "Totalt antal ordrar per gäst" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1854 -msgid "Average orders per customer" -msgstr "Genomsnittligt antal ordrar per kund" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1862 -msgid "Signups per day" -msgstr "Registreringar per dag" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2083 -msgid "Low stock" -msgstr "Lågt lagersaldo" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2111 -msgid "No products are low in stock." -msgstr "Inga produkter har lågt lagersaldo" - -# @ woocommerce -#: admin/post-types/product.php:264 admin/post-types/product.php:642 -#: admin/post-types/product.php:931 -#: admin/post-types/writepanels/writepanel-product_data.php:232 -#: admin/woocommerce-admin-reports.php:2119 -#: classes/abstracts/abstract-wc-product.php:573 -#: classes/abstracts/abstract-wc-product.php:583 -#: classes/abstracts/abstract-wc-product.php:587 -msgid "Out of stock" -msgstr "Slut i lager" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2150 -msgid "No products are out in stock." -msgstr "Inga produkter är slut" - -# @ woocommerce -#: admin/post-types/product.php:602 admin/post-types/product.php:880 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:86 -#: admin/post-types/writepanels/writepanel-product_data.php:287 -#: admin/woocommerce-admin-settings.php:797 -msgid "Width" -msgstr "Bredd" - -# @ woocommerce -#: admin/post-types/product.php:603 admin/post-types/product.php:881 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:87 -#: admin/post-types/writepanels/writepanel-product_data.php:288 -#: admin/woocommerce-admin-settings.php:799 -msgid "Height" -msgstr "Höjd" - -# @ woocommerce -#: admin/settings/settings-init.php:33 -msgid "General Options" -msgstr "Generella alternativ" - -# @ woocommerce -#: admin/settings/settings-init.php:58 -msgid "Allowed Countries" -msgstr "Tillåtna länder" - -# @ woocommerce -#: admin/settings/settings-init.php:59 -msgid "These are countries that you are willing to ship to." -msgstr "Det här länderna är du villig att leverera till." - -# @ woocommerce -#: admin/settings/settings-init.php:67 -msgid "All Countries" -msgstr "Alla länder" - -# @ woocommerce -#: admin/settings/settings-init.php:68 admin/settings/settings-init.php:73 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:95 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:99 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:98 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:149 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:153 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:105 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:109 -msgid "Specific Countries" -msgstr "Specifika länder" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:63 -msgid "ShareThis Publisher ID" -msgstr "ShareThis Publisher ID" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:63 -msgid "Google Analytics ID" -msgstr "Google Analytics ID" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:64 -msgid "" -"Log into your google analytics account to find your ID. e.g. UA-XXXXX-" -"X" -msgstr "" -"Logga in till ditt Google Analytics-konto för hitta ditt ID t.ex. UA-" -"XXXXX-X" - -# @ woocommerce -#: admin/settings/settings-init.php:290 -msgid "Page Setup" -msgstr "Inställningar för sida" - -# @ woocommerce -#: admin/settings/settings-init.php:297 -msgid "Shop Base Page" -msgstr "Bassida för butik" - -# @ woocommerce -#: admin/settings/settings-init.php:309 -msgid "" -"If you define a \"Terms\" page the customer will be asked if they accept " -"them when checking out." -msgstr "" -"Om du definierar en sida för \"Villkor\" så måste kunden acceptera dessa för " -"att kunna gå vidare med ordern." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:181 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:112 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:86 -msgid "None" -msgstr "Ingen" - -# @ woocommerce -#: admin/settings/settings-init.php:320 -msgid "Shop Pages" -msgstr "Butikssidor" - -# @ woocommerce -#: admin/settings/settings-init.php:323 -msgid "Cart Page" -msgstr "Sida för Varukorg" - -# @ woocommerce -#: admin/settings/settings-init.php:324 -msgid "Page contents: [woocommerce_cart]" -msgstr "Sida: [woocommerce_cart]" - -# @ woocommerce -#: admin/settings/settings-init.php:334 -msgid "Checkout Page" -msgstr "Kassasida" - -# @ woocommerce -#: admin/settings/settings-init.php:335 -msgid "Page contents: [woocommerce_checkout]" -msgstr "Sida: [woocommerce_checkout]" - -# @ woocommerce -#: admin/settings/settings-init.php:345 -msgid "Pay Page" -msgstr "Betalningssida" - -# @ woocommerce -#: admin/settings/settings-init.php:346 -msgid "Page contents: [woocommerce_pay] Parent: \"Checkout\"" -msgstr "Sida: [woocommerce_pay] Förälder: \"Kassa\"" - -# @ woocommerce -#: admin/settings/settings-init.php:356 -msgid "Thanks Page" -msgstr "Tacksida" - -# @ woocommerce -#: admin/settings/settings-init.php:357 -msgid "Page contents: [woocommerce_thankyou] Parent: \"Checkout\"" -msgstr "Sida: [woocommerce_thankyou] Förälder: \"Kassa\"" - -# @ woocommerce -#: admin/settings/settings-init.php:367 -msgid "My Account Page" -msgstr "Mitt konto" - -# @ woocommerce -#: admin/settings/settings-init.php:368 -msgid "Page contents: [woocommerce_my_account]" -msgstr "Sida: [woocommerce_my_account]" - -# @ woocommerce -#: admin/settings/settings-init.php:378 -msgid "Edit Address Page" -msgstr "Redigera adress" - -# @ woocommerce -#: admin/settings/settings-init.php:379 -msgid "Page contents: [woocommerce_edit_address] Parent: \"My Account\"" -msgstr "Sida: [woocommerce_edit_address] Parent: \"Mitt konto\"" - -# @ woocommerce -#: admin/settings/settings-init.php:389 -msgid "View Order Page" -msgstr "Visa order" - -# @ woocommerce -#: admin/settings/settings-init.php:390 -msgid "Page contents: [woocommerce_view_order] Parent: \"My Account\"" -msgstr "Sida: [woocommerce_view_order] Förälder: \"Mitt konto\"" - -# @ woocommerce -#: admin/settings/settings-init.php:400 -msgid "Change Password Page" -msgstr "Ändra lösenord" - -# @ woocommerce -#: admin/settings/settings-init.php:401 -msgid "Page contents: [woocommerce_change_password] Parent: \"My Account\"" -msgstr "Sida: [woocommerce_change_password] Förälder: \"Mitt konto\"" - -# @ woocommerce -#: admin/settings/settings-init.php:439 -msgid "Catalog Options" -msgstr "Katalogalternativ" - -# @ woocommerce -#: admin/settings/settings-init.php:544 -msgid "Weight Unit" -msgstr "Viktenhet" - -# @ woocommerce -#: admin/settings/settings-init.php:545 -msgid "This controls what unit you will define weights in." -msgstr "Det här kontrollerar vilken viktenhet som används för produkter." - -# @ woocommerce -#: admin/settings/settings-init.php:551 -msgid "kg" -msgstr "kg" - -# @ woocommerce -#: admin/settings/settings-init.php:553 -msgid "lbs" -msgstr "lbs" - -# @ woocommerce -#: admin/settings/settings-init.php:668 -msgid "Image Options" -msgstr "Bildalternativ" - -# @ woocommerce -#: admin/settings/settings-init.php:606 -msgid "Pricing Options" -msgstr "Prisalternativ" - -# @ woocommerce -#: admin/settings/settings-init.php:46 -msgid "Currency" -msgstr "Valuta" - -# @ woocommerce -#: woocommerce-core-functions.php:703 -msgid "Danish Krone" -msgstr "Danska kronor" - -# @ woocommerce -#: woocommerce-core-functions.php:706 -msgid "Hungarian Forint" -msgstr "Ungerska Forinter" - -# @ woocommerce -#: woocommerce-core-functions.php:709 -msgid "Israeli Shekel" -msgstr "Israeliska Shekel" - -# @ woocommerce -#: woocommerce-core-functions.php:714 -msgid "Norwegian Krone" -msgstr "Norska kronor" - -# @ woocommerce -#: woocommerce-core-functions.php:716 -msgid "Philippine Pesos" -msgstr "Philippinska Pesos" - -# @ woocommerce -#: woocommerce-core-functions.php:717 -msgid "Polish Zloty" -msgstr "Polska Zloty" - -# @ woocommerce -#: woocommerce-core-functions.php:723 -msgid "Swedish Krona" -msgstr "Svensk krona" - -# @ woocommerce -#: woocommerce-core-functions.php:724 -msgid "Swiss Franc" -msgstr "Schweiziska Franc" - -# @ woocommerce -#: woocommerce-core-functions.php:725 -msgid "Taiwan New Dollars" -msgstr "Taiwanesiska Nya Dollar" - -# @ woocommerce -#: woocommerce-core-functions.php:726 -msgid "Thai Baht" -msgstr "Thailändska Baht" - -# @ woocommerce -#: admin/settings/settings-init.php:609 -msgid "Currency Position" -msgstr "Valutaposition" - -# @ woocommerce -#: admin/settings/settings-init.php:610 -msgid "This controls the position of the currency symbol." -msgstr "Det här kontrollerar positionen för valutasymbolen." - -# @ woocommerce -#: admin/settings/settings-init.php:616 -msgid "Left" -msgstr "Vänster" - -# @ woocommerce -#: admin/settings/settings-init.php:617 -msgid "Right" -msgstr "Höger" - -# @ woocommerce -#: admin/settings/settings-init.php:618 -msgid "Left (with space)" -msgstr "Vänster (med mellanrum)" - -# @ woocommerce -#: admin/settings/settings-init.php:619 -msgid "Right (with space)" -msgstr "Höger (med mellanrum)" - -# @ woocommerce -#: admin/settings/settings-init.php:626 -msgid "This sets the thousand separator of displayed prices." -msgstr "Det här bestämmer tusentalsavgränsare för visade priser." - -# @ woocommerce -#: admin/settings/settings-init.php:636 -msgid "This sets the decimal separator of displayed prices." -msgstr "" -"Det här bestämmer vilken decimalavgränsare som används för visade priser." - -# @ woocommerce -#: admin/settings/settings-init.php:646 -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "Det här bestämmer antalet decimalpunkter för visade priser." - -# @ woocommerce -#: admin/settings/settings-init.php:719 -msgid "Inventory Options" -msgstr "Lagersaldo inställningar" - -# @ woocommerce -#: admin/settings/settings-init.php:723 -msgid "Enable stock management" -msgstr "Aktivera lagerhantering" - -# @ woocommerce -#: admin/settings/settings-init.php:743 -msgid "Notifications" -msgstr "Meddelanden" - -# @ woocommerce -#: admin/settings/settings-init.php:744 -msgid "Enable low stock notifications" -msgstr "Aktivera meddelanden för lågt lagersaldo" - -# @ woocommerce -#: admin/settings/settings-init.php:752 -msgid "Enable out of stock notifications" -msgstr "Aktivera meddelanden för slut i lager" - -# @ woocommerce -#: admin/settings/settings-init.php:795 -msgid "Hide out of stock items from the catalog" -msgstr "Dölj produkter i katalogen som är slut i lager" - -# @ woocommerce -#: admin/settings/settings-init.php:823 -#: admin/woocommerce-admin-settings.php:292 -msgid "Shipping Options" -msgstr "Fraktalternativ" - -# @ woocommerce -#: admin/settings/settings-init.php:835 -msgid "Enable the shipping calculator on the cart page" -msgstr "Aktivera fraktkostnadskalkylator i varukorgen" - -# @ woocommerce -#: admin/settings/settings-init.php:866 -msgid "Only ship to the users billing address" -msgstr "Leverera endast till fakturaadress" - -# @ woocommerce -#: admin/settings/settings-init.php:918 -#: admin/woocommerce-admin-settings.php:222 -msgid "Tax Options" -msgstr "Momsalternativ" - -# @ woocommerce -#: admin/settings/settings-init.php:922 -msgid "Enable taxes and tax calculations" -msgstr "Aktivera moms och momsberäkningar" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:45 woocommerce.php:1758 -msgid "Action failed. Please refresh the page and retry." -msgstr "Processen misslyckades. Uppdatera sidan och försök igen." - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:164 -msgid "Your settings have been saved." -msgstr "Dina inställningar har sparats." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:77 -#: admin/woocommerce-admin-content.php:44 -#: admin/woocommerce-admin-settings.php:182 -msgid "General" -msgstr "Generellt" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:45 -#: admin/woocommerce-admin-settings.php:184 -#: assets/js/admin/editor_plugin_lang.php:14 -msgid "Pages" -msgstr "Sidor" - -# @ woocommerce -#: admin/post-types/product.php:619 admin/post-types/product.php:894 -#: admin/post-types/writepanels/writepanel-product_data.php:1047 -#: admin/woocommerce-admin-content.php:46 -#: admin/woocommerce-admin-settings.php:183 -msgid "Catalog" -msgstr "Produktkatalog" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:79 -#: admin/woocommerce-admin-content.php:47 -#: admin/woocommerce-admin-settings.php:185 -msgid "Inventory" -msgstr "Lagersaldo" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:352 -#: admin/settings/settings-tax-rates.php:387 -#: admin/settings/settings-tax-rates.php:475 -#: admin/woocommerce-admin-content.php:48 -#: admin/woocommerce-admin-settings.php:186 classes/class-wc-countries.php:444 -msgid "Tax" -msgstr "Moms" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:23 -msgid "Shipping Methods" -msgstr "Fraktmetoder" - -# @ woocommerce -#: admin/settings/settings-init.php:900 -#: admin/woocommerce-admin-settings.php:188 -#: admin/woocommerce-admin-settings.php:329 -msgid "Payment Gateways" -msgstr "Betalning" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:388 -#: classes/integrations/shareyourcart/views/admin-page.php:110 -#: classes/integrations/shareyourcart/views/button-settings-page.php:120 -msgid "Save changes" -msgstr "Spara ändringar" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:429 -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "Ändringar som du genomfört förloras om du lämnar denna sida." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:42 -msgid "Discount type" -msgstr "Rabattyp" - -# @ woocommerce -#: templates/cart/totals.php:35 templates/checkout/review-order.php:34 -#: woocommerce.php:1690 -msgid "Cart Discount" -msgstr "Varukorgsrabatt" - -# @ woocommerce -#: woocommerce.php:1691 -msgid "Cart % Discount" -msgstr "Procentuell % rabatt i varukorg" - -# @ woocommerce -#: woocommerce.php:1692 -msgid "Product Discount" -msgstr "Rabatt på produkt" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "Individual use" -msgstr "Enskilt användande" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:100 -#: templates/checkout/form-coupon.php:25 -msgid "Coupon code" -msgstr "Kupongkod" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:144 -msgid "Customer Billing Address" -msgstr "Fakturaadress för kund" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:193 -msgid "Customer Shipping Address" -msgstr "Leveransadress för kund" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:76 -msgid "Order status:" -msgstr "Orderstatus:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:91 -msgid "Customer:" -msgstr "Kund:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:131 -msgid "Customer Note:" -msgstr "Kundnotering:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:132 -msgid "Customer's notes about the order" -msgstr "Kundens notering gällande ordern" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:144 -#: admin/post-types/writepanels/writepanel-order_data.php:234 -#: classes/class-wc-countries.php:683 -msgid "First Name" -msgstr "Förnamn" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:148 -#: admin/post-types/writepanels/writepanel-order_data.php:238 -#: classes/class-wc-countries.php:688 -msgid "Last Name" -msgstr "Efternamn" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:152 -#: admin/post-types/writepanels/writepanel-order_data.php:242 -#: admin/woocommerce-admin-users.php:155 admin/woocommerce-admin-users.php:204 -msgid "Company" -msgstr "Företag" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:156 -#: admin/post-types/writepanels/writepanel-order_data.php:246 -#: admin/woocommerce-admin-users.php:159 admin/woocommerce-admin-users.php:208 -msgid "Address 1" -msgstr "Adress 1" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:160 -#: admin/post-types/writepanels/writepanel-order_data.php:250 -#: admin/woocommerce-admin-users.php:163 admin/woocommerce-admin-users.php:212 -msgid "Address 2" -msgstr "Adress 2" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:164 -#: admin/post-types/writepanels/writepanel-order_data.php:254 -#: admin/settings/settings-tax-rates.php:42 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-users.php:167 admin/woocommerce-admin-users.php:216 -#: templates/cart/shipping-calculator.php:72 -msgid "City" -msgstr "Stad" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:168 -#: admin/post-types/writepanels/writepanel-order_data.php:258 -#: admin/woocommerce-admin-users.php:171 admin/woocommerce-admin-users.php:220 -#: classes/class-wc-countries.php:970 -msgid "Postcode" -msgstr "Postnummer" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:172 -#: admin/post-types/writepanels/writepanel-order_data.php:262 -#: admin/woocommerce-admin-users.php:179 admin/woocommerce-admin-users.php:228 -#: classes/class-wc-countries.php:678 -msgid "Country" -msgstr "Land" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:178 -#: admin/post-types/writepanels/writepanel-order_data.php:268 -#: admin/woocommerce-admin-users.php:175 admin/woocommerce-admin-users.php:224 -msgid "State/County" -msgstr "Län" - -# @ woocommerce -#: classes/class-wc-countries.php:1074 -msgid "Email Address" -msgstr "E-postadress" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:201 templates/cart/cart.php:30 -#: templates/emails/admin-new-order.php:23 -#: templates/emails/customer-completed-order.php:24 -#: templates/emails/customer-invoice.php:28 -#: templates/emails/customer-note.php:28 -#: templates/emails/customer-processing-order.php:24 -msgid "Quantity" -msgstr "Antal" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:486 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:100 -msgid "Cost" -msgstr "Kostnad" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:6 -#: admin/post-types/writepanels/writepanel-product_data.php:368 -#: admin/post-types/writepanels/writepanel-product_data.php:462 -#: admin/woocommerce-admin-init.php:438 -msgid "Remove" -msgstr "Ta bort" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:10 -msgid "Product ID:" -msgstr "Produkt-ID:" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:13 -msgid "Variation ID:" -msgstr "Variant-ID:" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:16 -msgid "Product SKU:" -msgstr "Artikelnummer:" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:44 -msgid "Add meta" -msgstr "Lägg till meta" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save Order" -msgstr "Spara order" - -# @ default -# @ woocommerce -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -#: admin/post-types/writepanels/writepanel-order_data.php:463 -msgid "Delete Permanently" -msgstr "Radera permanent" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:465 -msgid "Move to Trash" -msgstr "Flytta till papperskorgen" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:552 -#: classes/class-wc-countries.php:470 -msgid "(ex. tax)" -msgstr " (exkl. moms)" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:239 -#: classes/shortcodes/class-wc-shortcode-pay.php:98 -#: templates/checkout/thankyou.php:48 -msgid "Total:" -msgstr "Totalt:" - -# @ woocommerce -#: classes/class-wc-order.php:1451 woocommerce-ajax.php:1091 -#: woocommerce-ajax.php:1092 -#, php-format -msgid "Item #%s stock reduced from %s to %s." -msgstr "Produkt #%s lagersaldo minskades från %s till %s." - -# @ woocommerce -#: woocommerce-ajax.php:1144 woocommerce-ajax.php:1145 -#, php-format -msgid "Item #%s stock increased from %s to %s." -msgstr "Produkt #%s lagersaldo ökades från %s till %s." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -#, php-format -msgid "added %s ago" -msgstr "tillagd för %s timmar sedan" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -#: woocommerce-ajax.php:1487 -msgid "Delete note" -msgstr "Radera notering" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:50 -msgid "There are no notes for this order yet." -msgstr "Det finns inga noteringar för denna order ännu." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "Add note" -msgstr "Lägg till notering" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:62 -#: classes/emails/class-wc-email-customer-note.php:29 -msgid "Customer note" -msgstr "Kundnotering" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:63 -msgid "Private note" -msgstr "Egen notering" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:65 -#: admin/post-types/writepanels/writepanel-product_data.php:501 -msgid "Add" -msgstr "Lägg till" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Download Limit" -msgstr "Gräns för nedladdning" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:148 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Leave blank for unlimited re-downloads." -msgstr "Lämna blankt för obegränsad åternedladdning" - -# @ woocommerce -#: admin/post-types/product.php:222 admin/post-types/product.php:403 -#: admin/post-types/writepanels/variation-admin-html.php:172 -#: admin/post-types/writepanels/writepanel-product_data.php:58 -msgid "Downloadable" -msgstr "Nedladdningsbar" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:75 -msgid "Bulk edit:" -msgstr "Redigera fler" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:218 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:275 -#: templates/single-product/meta.php:19 -msgid "SKU:" -msgstr "Art. nr." - -# @ woocommerce -#: admin/post-types/product.php:588 admin/post-types/product.php:839 -#: admin/post-types/writepanels/variation-admin-html.php:96 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:273 -#: templates/single-product/product-attributes.php:28 -msgid "Weight" -msgstr "Vikt" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:63 -msgid "Stock Qty:" -msgstr "Lagersaldo:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:140 -msgid "Price:" -msgstr "Pris:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:76 -msgid "Sale Price:" -msgstr "Reapris:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:170 -msgid "Enabled" -msgstr "Aktiverad" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:193 -#: woocommerce.php:1022 -msgid "Add Variation" -msgstr "Lägg till variant" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:195 -msgid "Link all variations" -msgstr "Länka alla varianter" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:343 -msgid "Are you sure you want to remove this variation?" -msgstr "Är du säker på att du vill ta bort den här varianten?" - -# @ woocommerce -#: admin/post-types/product.php:220 admin/post-types/product.php:407 -#: admin/post-types/writepanels/variation-admin-html.php:174 -#: admin/post-types/writepanels/writepanel-product_data.php:52 -msgid "Virtual" -msgstr "Virtuell" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:537 -msgid "" -"Up-sells are products which you recommend instead of the currently viewed " -"product, for example, products that are more profitable or better quality or " -"more expensive." -msgstr "" -"Uppförsäljning är produkter som du rekommenderar istället för visad produkt, " -"t.ex. produkter som är mer prisvärda eller har en högre kvalitet eller är " -"dyrare." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:554 -msgid "" -"Cross-sells are products which you promote in the cart, based on the current " -"product." -msgstr "" -"Korsförsäljning är produkter som du vill marknadsföra i varukorgen, baserad " -"på existerande produkt." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:564 -msgid "Choose a grouped product…" -msgstr "Välj en grupperad produkt…" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:590 -msgid "Grouping" -msgstr "Gruppering" - -# @ woocommerce -#: admin/post-types/product.php:91 admin/post-types/product.php:557 -#: admin/post-types/writepanels/variation-admin-html.php:52 -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#: admin/woocommerce-admin-reports.php:2099 -#: admin/woocommerce-admin-reports.php:2135 -msgid "SKU" -msgstr "Art. nr." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:119 -msgid "Regular Price" -msgstr "Ordinarie pris" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Sale Price" -msgstr "Reapris" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:135 -msgid "Sale Price Dates" -msgstr "Reaprisdatum" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:178 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:107 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:81 -msgid "Tax Status" -msgstr "Momsstatus" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:20 -#: admin/post-types/writepanels/writepanel-product_data.php:179 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:111 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:85 -msgid "Taxable" -msgstr "Momsbelagd" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:180 -msgid "Shipping only" -msgstr "Endast frakt" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:25 -#: admin/post-types/writepanels/order-item-html.php:96 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:54 -#: admin/post-types/writepanels/writepanel-product_data.php:186 -#: admin/settings/settings-init.php:972 -#: admin/settings/settings-tax-rates.php:29 -#: admin/woocommerce-admin-settings.php:228 woocommerce-ajax.php:551 -msgid "Standard" -msgstr "Standard" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#: admin/post-types/writepanels/writepanel-product_data.php:191 -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Class" -msgstr "Momsgrupp" - -# @ woocommerce -#: admin/post-types/product.php:657 admin/post-types/product.php:942 -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Manage stock?" -msgstr "Hantera lager?" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:230 -msgid "Stock status" -msgstr "Lagerstatus" - -# @ woocommerce -#: admin/post-types/product.php:262 admin/post-types/product.php:641 -#: admin/post-types/product.php:930 -#: admin/post-types/writepanels/writepanel-product_data.php:231 -#: classes/abstracts/abstract-wc-product.php:546 -#: classes/abstracts/abstract-wc-product.php:551 -#: classes/abstracts/abstract-wc-product.php:570 -msgid "In stock" -msgstr "I lager" - -# @ woocommerce -#: admin/post-types/product.php:661 admin/post-types/product.php:961 -#: admin/post-types/product.php:977 -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "Stock Qty" -msgstr "Lagersaldo" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:240 -msgid "Allow Backorders?" -msgstr "Tillåt bokning av produkter?" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:241 -msgid "Do not allow" -msgstr "Tillåt inte" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:242 -msgid "Allow, but notify customer" -msgstr "Tillåt men meddela kund" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:243 -msgid "Allow" -msgstr "Tillåt" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:384 -#: admin/post-types/writepanels/writepanel-product_data.php:476 -#: admin/woocommerce-admin-init.php:440 -msgid "Value(s)" -msgstr "Värde(n)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:503 -msgid "Custom product attribute" -msgstr "Eget produktattribut" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:522 -msgid "Up-Sells" -msgstr "Uppförsäljning" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:539 -msgid "Cross-Sells" -msgstr "Korsförsäljning" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:714 -msgid "Product SKU must be unique." -msgstr "Produktens artikelnummer måste vara unikt." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:43 -msgid "Product Type" -msgstr "Produkttyp" - -# @ woocommerce -#: admin/post-types/product.php:620 admin/post-types/product.php:895 -#: admin/post-types/writepanels/writepanel-product_data.php:1048 -#: woocommerce-template.php:1498 woocommerce.php:947 -msgid "Search" -msgstr "Sök" - -# @ woocommerce -#: admin/post-types/product.php:621 admin/post-types/product.php:896 -#: admin/post-types/writepanels/writepanel-product_data.php:1049 -msgid "Hidden" -msgstr "Dold" - -# @ woocommerce -#: admin/post-types/product.php:552 admin/post-types/product.php:783 -#: admin/post-types/writepanels/writepanels-init.php:46 -#: admin/settings/settings-init.php:508 -msgid "Product Data" -msgstr "Produktdata" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:68 -msgid "Order Data" -msgstr "Orderdata" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:652 -#: admin/post-types/writepanels/writepanels-init.php:70 -msgid "Order Totals" -msgstr "Ordertotal" - -# @ woocommerce -#: admin/post-types/shop_order.php:48 -#: admin/post-types/writepanels/writepanels-init.php:71 -#: classes/class-wc-checkout.php:89 -msgid "Order Notes" -msgstr "Ordernoteringar" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:73 -msgid "Order Actions" -msgstr "Orderhändelser" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:81 -msgid "Coupon Data" -msgstr "Kupongdata" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:447 -msgid "" -"Copy billing information to shipping information? This will remove any " -"currently entered shipping information." -msgstr "" -"Kopiera fakturauppgifterna till leveransuppgifter? Detta raderar befintliga " -"leveransuppgifter." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:386 -msgid "Select terms" -msgstr "Välj villkor" - -# @ woocommerce -#: classes/class-wc-cart.php:460 -#, php-format -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -"Vi har tyvärr inte tillräckligt många \"%s\" i lager som du önskar (%s i " -"lager). Redigera din varukorg och försök igen. Vi ber om ursäkt för " -"olägenheten." - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:847 -#: classes/abstracts/abstract-wc-product.php:853 -#: classes/class-wc-cart.php:1802 classes/class-wc-order.php:891 -#: classes/class-wc-product-variable.php:274 -#: classes/class-wc-product-variable.php:283 -#: classes/class-wc-product-variation.php:246 -msgid "Free!" -msgstr "Gratis!" - -# @ woocommerce -#: classes/class-wc-coupon.php:445 classes/class-wc-coupon.php:495 -msgid "Coupon does not exist!" -msgstr "Rabattkupongen existerar inte!" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:193 -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#: admin/post-types/writepanels/writepanel-order_data.php:277 -#: admin/post-types/writepanels/writepanel-order_data.php:279 -#: classes/class-wc-countries.php:698 -msgid "Address" -msgstr "Adress" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:185 -#: classes/class-wc-countries.php:1080 -msgid "Phone" -msgstr "Telefon" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:26 templates/checkout/form-billing.php:21 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:19 templates/myaccount/my-address.php:25 -#: templates/order/order-details.php:115 -msgid "Billing Address" -msgstr "Fakturaadress" - -# @ woocommerce -#: templates/checkout/form-billing.php:42 -msgid "Create an account?" -msgstr "Skapa ett konto?" - -# @ woocommerce -#: classes/class-wc-checkout.php:64 -msgid "Account username" -msgstr "Kontots användarnamn" - -# @ woocommerce -#: templates/myaccount/form-login.php:66 -msgid "Username" -msgstr "Användarnamn" - -# @ woocommerce -#: classes/class-wc-checkout.php:72 -msgid "Account password" -msgstr "Kontots lösenord" - -# @ woocommerce -#: templates/myaccount/form-login.php:33 templates/myaccount/form-login.php:85 -#: templates/shop/form-login.php:24 -msgid "Password" -msgstr "Lösenord" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:27 -#: templates/checkout/form-shipping.php:35 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:20 templates/order/order-details.php:130 -msgid "Shipping Address" -msgstr "Leveransadress" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:175 -#: admin/post-types/writepanels/writepanel-order_data.php:265 -#: templates/cart/shipping-calculator.php:28 woocommerce-template.php:1334 -msgid "Select a country…" -msgstr "Välj land…" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:52 woocommerce-template.php:1384 -msgid "Select a state…" -msgstr "Välj en status…" - -# @ woocommerce -#: classes/class-wc-checkout.php:388 -#, php-format -msgid "" -"Sorry, your session has expired. Return to homepage →" -msgstr "Din session har gått ut. Gå till startsidan →" - -# @ woocommerce -#: classes/class-wc-checkout.php:545 -msgid "Please enter an account username." -msgstr "Skriv in ett användarnamn för kontot." - -# @ woocommerce -#: classes/class-wc-checkout.php:562 -msgid "Please enter an account password." -msgstr "Skriv in ett lösenord för kontot." - -# @ woocommerce -#: classes/class-wc-checkout.php:565 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:83 -#: woocommerce-functions.php:760 woocommerce-functions.php:1628 -msgid "Passwords do not match." -msgstr "Lösenorden matchar inte." - -# @ woocommerce -#: classes/class-wc-checkout.php:549 -msgid "Invalid email/username." -msgstr "Ogiltigt användarnamn/e-postadress." - -# @ woocommerce -#: classes/class-wc-checkout.php:552 -msgid "" -"An account is already registered with that username. Please choose another." -msgstr "" -"Ett konto är redan registrerat med det användarnamnet. Var vänlig välj ett " -"annat." - -# @ woocommerce -#: classes/class-wc-checkout.php:569 -msgid "An account is already registered with your email address. Please login." -msgstr "" -"Ett konto är redan registrerat med din e-postadress. Var vänlig logga in." - -# @ woocommerce -#: classes/class-wc-checkout.php:575 -msgid "You must accept our Terms & Conditions." -msgstr "Du måste acceptera villkoren." - -# @ woocommerce -#: classes/class-wc-checkout.php:584 -msgid "Invalid shipping method." -msgstr "Ogiltig fraktmetod" - -# @ woocommerce -#: classes/class-wc-checkout.php:597 -msgid "Invalid payment method." -msgstr "Ogiltig betalningsmetod" - -# @ woocommerce -#: classes/class-wc-countries.php:418 -msgid "to the" -msgstr "till" - -# @ woocommerce -#: classes/class-wc-countries.php:419 -msgid "to" -msgstr "till" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:431 -#: classes/emails/class-wc-email-customer-completed-order.php:135 -#: classes/emails/class-wc-email-customer-invoice.php:138 -#: classes/emails/class-wc-email-new-order.php:115 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:63 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:57 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:130 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:120 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:76 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:75 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:50 -msgid "Enable/Disable" -msgstr "Aktivera/avaktivera" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:65 -msgid "Enable Bank Transfer" -msgstr "Aktivera banköverföring" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:69 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:63 -#: classes/gateways/cod/class-wc-gateway-cod.php:87 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:143 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:126 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:104 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:84 -msgid "Title" -msgstr "Titel" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:71 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:65 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:145 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:128 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:83 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:58 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:106 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:86 -msgid "This controls the title which the user sees during checkout." -msgstr "Det här kontrollerar vilken titel kunden ser i kassan." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:72 -msgid "Direct Bank Transfer" -msgstr "Direkt banköverföring" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:76 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:70 -msgid "Customer Message" -msgstr "Kundmeddelande" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:78 -msgid "" -"Give the customer instructions for paying via BACS, and let them know that " -"their order won't be shipping until the money is received." -msgstr "" -"Ge kunden instruktioner hur man betalar via BACS och låt kunden veta att " -"ordern inte levereras innan betalningen mottagits." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:79 -msgid "" -"Make your payment directly into our bank account. Please use your Order ID " -"as the payment reference. Your order wont be shipped until the funds have " -"cleared in our account." -msgstr "" -"Gör din betalning direkt till vårt bankkonto. Använd order-ID som " -"betalningsreferens. Din order levereras när vi mottagit din betalning." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:88 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:163 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:203 -msgid "Account Name" -msgstr "Kontonamn" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:94 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:164 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:204 -msgid "Account Number" -msgstr "Kontonummer" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:100 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:165 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:205 -msgid "Sort Code" -msgstr "Sorteringskod" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:106 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:166 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:206 -msgid "Bank Name" -msgstr "Banknamn" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:112 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:167 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:207 -msgid "IBAN" -msgstr "IBAN" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:117 -msgid "BIC (formerly Swift)" -msgstr "BIC (tidigare Swift)" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:136 -msgid "BACS Payment" -msgstr "BACS betalning" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:137 -msgid "" -"Allows payments by BACS (Bank Account Clearing System), more commonly known " -"as direct bank/wire transfer." -msgstr "" -"Tillåt betalning via BACS (Bank Account Clearing System), mer känt som " -"direkt banköverföring." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:158 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:200 -msgid "Our Details" -msgstr "Våra uppgifter" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:168 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:208 -msgid "BIC" -msgstr "BIC" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:234 -msgid "Awaiting BACS payment" -msgstr "Väntande BACS betalning" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:59 -msgid "Enable Cheque Payment" -msgstr "Aktivera checkbetalning" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:66 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:90 -msgid "Cheque Payment" -msgstr "Checkbetalning" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:91 -msgid "" -"Allows cheque payments. Why would you take cheques in this day and age? Well " -"you probably wouldn't but it does allow you to make test purchases for " -"testing order emails and the 'success' pages etc." -msgstr "" -"Tillåt checkbetalning. Varför skulle du ta checkar nu för tiden? Troligtvis " -"gör du det inte, men det tillåter dig att göra testbeställningar så du kan " -"se e-postmeddelanden för order och sidor för \"order genomförd\" t.ex." - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:147 -msgid "Awaiting cheque payment" -msgstr "Väntande checkbetalning" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:122 -msgid "Enable PayPal standard" -msgstr "Aktivera PayPal standard" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:34 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:129 -msgid "PayPal" -msgstr "PayPal" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:28 -#: classes/gateways/cod/class-wc-gateway-cod.php:94 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:150 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:133 -#: woocommerce-template.php:751 -msgid "Description" -msgstr "Beskrivning" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:153 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:135 -msgid "This controls the description which the user sees during checkout." -msgstr "Det här kontrollerar beskrivningen som kunden får i kassan." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:136 -msgid "" -"Pay via PayPal; you can pay with your credit card if you don't have a PayPal " -"account" -msgstr "" -"Betala via PayPal. Du kan betala med kredit- eller bankkort om du inte har " -"något PayPal-konto" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:139 -msgid "PayPal Email" -msgstr "PayPal e-postadress" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:141 -msgid "" -"Please enter your PayPal email address; this is needed in order to take " -"payment." -msgstr "" -"Uppge den e-postadress du använder för PayPal. Detta behövs för att du ska " -"kunna ta betalt." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:182 -msgid "Shipping details" -msgstr "Fraktinformation" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:202 -msgid "PayPal sandbox" -msgstr "PayPal sandbox" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:204 -msgid "Enable PayPal sandbox" -msgstr "Aktivera PayPal sandbox" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:91 -msgid "PayPal standard" -msgstr "PayPal standard" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:92 -msgid "" -"PayPal standard works by sending the user to PayPal to enter their payment " -"information." -msgstr "" -"PayPal standard fungerar som så att kunden skickas till PayPal för att uppge " -"sin betalningsinformation." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:449 -msgid "Pay via PayPal" -msgstr "Betala via PayPal" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:449 -msgid "Cancel order & restore cart" -msgstr "Avbryt order & återställ varukorgen" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:426 -msgid "" -"Thank you for your order. We are now redirecting you to PayPal to make " -"payment." -msgstr "Tack för din order! Du omdirigeras nu till PayPal för betalning." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:503 -msgid "" -"Thank you for your order, please click the button below to pay with PayPal." -msgstr "" -"Tack för din order! Klicka på knappen nedanför för att betala med PayPal." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:674 -msgid "IPN payment completed" -msgstr "IPM-betalning slutförd" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:686 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:694 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:712 -#, php-format -msgid "Payment %s via IPN." -msgstr "Betalning %s via IPN." - -# @ woocommerce -#: classes/class-wc-order.php:1219 -#, php-format -msgid "Order status changed from %s to %s." -msgstr "Orderstatus ändrad från %s till %s." - -# @ woocommerce -#: classes/class-wc-order.php:1463 -msgid "Order item stock reduced successfully." -msgstr "Minskning av lagersaldo lyckades." - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:567 -#: classes/abstracts/abstract-wc-product.php:580 templates/cart/cart.php:76 -msgid "Available on backorder" -msgstr "Available on backorder!" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:960 -#: templates/single-product-reviews.php:28 -#, php-format -msgid "Rated %s out of 5" -msgstr "Betyg %s av 5" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:27 -msgid "Flat rates let you define a standard rate per item, or per order." -msgstr "" -"Enhetsfrakt låter dig definiera en standardtaxa per produkt eller per order." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:82 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:81 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:56 -msgid "Method Title" -msgstr "Titel för metod" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:106 -msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -msgstr "Kostnad exkl. moms. Uppge ett värde t.ex. 2.50." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:487 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:112 -msgid "Handling Fee" -msgstr "Expeditionsavgift" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:114 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. " -"Leave blank to disable." -msgstr "" -"Avgift exkl. moms. Uppge ett värde t.ex. 2.50 eller ett procentvärde t.ex. " -"5%. Lämna tomt för att inaktivera." - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:88 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:143 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:99 -msgid "Method availability" -msgstr "Tillgänglig metod" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:93 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:148 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:104 -msgid "All allowed countries" -msgstr "Alla tillåtna länder" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:25 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:145 -msgid "Free Shipping" -msgstr "Fraktfritt" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:77 -msgid "Enable Free Shipping" -msgstr "Aktivera fri frakt" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:118 -msgid "Minimum Order Amount" -msgstr "Minsta orderbelopp" - -# @ woocommerce -#: classes/class-wc-countries.php:41 -msgid "Andorra" -msgstr "Andorra" - -# @ woocommerce -#: classes/class-wc-countries.php:266 -msgid "United Arab Emirates" -msgstr "Förenade Arabemiraten" - -# @ woocommerce -#: classes/class-wc-countries.php:37 -msgid "Afghanistan" -msgstr "Afghanistan" - -# @ woocommerce -#: classes/class-wc-countries.php:45 -msgid "Antigua and Barbuda" -msgstr "Antigua och Barbuda" - -# @ woocommerce -#: classes/class-wc-countries.php:43 -msgid "Anguilla" -msgstr "Anguilla" - -# @ woocommerce -#: classes/class-wc-countries.php:39 -msgid "Albania" -msgstr "Albanien" - -# @ woocommerce -#: classes/class-wc-countries.php:47 -msgid "Armenia" -msgstr "Armenien" - -# @ woocommerce -#: classes/class-wc-countries.php:191 -msgid "Netherlands Antilles" -msgstr "Nederländska Antillerna" - -# @ woocommerce -#: classes/class-wc-countries.php:42 -msgid "Angola" -msgstr "Angola" - -# @ woocommerce -#: classes/class-wc-countries.php:44 -msgid "Antarctica" -msgstr "Antarktis" - -# @ woocommerce -#: classes/class-wc-countries.php:46 -msgid "Argentina" -msgstr "Argentina" - -# @ woocommerce -#: i18n/states/US.php:67 -msgid "American Samoa" -msgstr "Amerikanska Samoa" - -# @ woocommerce -#: classes/class-wc-countries.php:50 -msgid "Austria" -msgstr "Österrike" - -# @ woocommerce -#: classes/class-wc-countries.php:49 -msgid "Australia" -msgstr "Australien" - -# @ woocommerce -#: classes/class-wc-countries.php:48 -msgid "Aruba" -msgstr "Aruba" - -# @ woocommerce -#: classes/class-wc-countries.php:51 -msgid "Azerbaijan" -msgstr "Azerbaijan" - -# @ woocommerce -#: classes/class-wc-countries.php:65 -msgid "Bosnia and Herzegovina" -msgstr "Bosnien Hercegovina" - -# @ woocommerce -#: classes/class-wc-countries.php:55 -msgid "Barbados" -msgstr "Barbados" - -# @ woocommerce -#: classes/class-wc-countries.php:54 -msgid "Bangladesh" -msgstr "Bangladesh" - -# @ woocommerce -#: classes/class-wc-countries.php:57 -msgid "Belgium" -msgstr "Belgien" - -# @ woocommerce -#: classes/class-wc-countries.php:73 -msgid "Burkina Faso" -msgstr "Burkina Faso" - -# @ woocommerce -#: classes/class-wc-countries.php:72 -msgid "Bulgaria" -msgstr "Bulgarien" - -# @ woocommerce -#: classes/class-wc-countries.php:53 -msgid "Bahrain" -msgstr "Bahrain" - -# @ woocommerce -#: classes/class-wc-countries.php:74 -msgid "Burundi" -msgstr "Burundi" - -# @ woocommerce -#: classes/class-wc-countries.php:60 -msgid "Benin" -msgstr "Benin" - -# @ woocommerce -#: classes/class-wc-countries.php:61 -msgid "Bermuda" -msgstr "Bermuda" - -# @ woocommerce -#: classes/class-wc-countries.php:71 -msgid "Brunei" -msgstr "Brunei" - -# @ woocommerce -#: classes/class-wc-countries.php:63 -msgid "Bolivia" -msgstr "Bolivia" - -# @ woocommerce -#: classes/class-wc-countries.php:68 -msgid "Brazil" -msgstr "Brasilien" - -# @ woocommerce -#: classes/class-wc-countries.php:52 -msgid "Bahamas" -msgstr "Bahamas" - -# @ woocommerce -#: classes/class-wc-countries.php:62 -msgid "Bhutan" -msgstr "Bhutan" - -# @ woocommerce -#: classes/class-wc-countries.php:66 -msgid "Botswana" -msgstr "Botswana" - -# @ woocommerce -#: classes/class-wc-countries.php:56 -msgid "Belarus" -msgstr "Vitryssland" - -# @ woocommerce -#: classes/class-wc-countries.php:59 -msgid "Belize" -msgstr "Belize" - -# @ woocommerce -#: classes/class-wc-countries.php:77 -msgid "Canada" -msgstr "Kanada" - -# @ woocommerce -#: classes/class-wc-countries.php:85 -msgid "Cocos (Keeling) Islands" -msgstr "Kokosöarna (Keeling)" - -# @ woocommerce -#: classes/class-wc-countries.php:89 -msgid "Congo (Kinshasa)" -msgstr "Kongo (Kinshasa)" - -# @ woocommerce -#: classes/class-wc-countries.php:80 -msgid "Central African Republic" -msgstr "Centralafrikanska republiken" - -# @ woocommerce -#: classes/class-wc-countries.php:88 -msgid "Congo (Brazzaville)" -msgstr "Kongo (Brazzaville)" - -# @ woocommerce -#: classes/class-wc-countries.php:248 -msgid "Switzerland" -msgstr "Schweiz" - -# @ woocommerce -#: classes/class-wc-countries.php:145 -msgid "Ivory Coast" -msgstr "Elfenbenskusten" - -# @ woocommerce -#: classes/class-wc-countries.php:90 -msgid "Cook Islands" -msgstr "Cooköarna" - -# @ woocommerce -#: classes/class-wc-countries.php:82 -msgid "Chile" -msgstr "Chile" - -# @ woocommerce -#: classes/class-wc-countries.php:76 -msgid "Cameroon" -msgstr "Kamerun" - -# @ woocommerce -#: classes/class-wc-countries.php:83 -msgid "China" -msgstr "Kina" - -# @ woocommerce -#: classes/class-wc-countries.php:86 -msgid "Colombia" -msgstr "Colombia" - -# @ woocommerce -#: classes/class-wc-countries.php:91 -msgid "Costa Rica" -msgstr "Costa Rica" - -# @ woocommerce -#: classes/class-wc-countries.php:93 -msgid "Cuba" -msgstr "Kuba" - -# @ woocommerce -#: classes/class-wc-countries.php:78 -msgid "Cape Verde" -msgstr "Cap Verde" - -# @ woocommerce -#: classes/class-wc-countries.php:84 -msgid "Christmas Island" -msgstr "Julön" - -# @ woocommerce -#: classes/class-wc-countries.php:95 -msgid "Cyprus" -msgstr "Cypern" - -# @ woocommerce -#: classes/class-wc-countries.php:96 -msgid "Czech Republic" -msgstr "Tjeckien" - -# @ woocommerce -#: classes/class-wc-countries.php:119 -msgid "Germany" -msgstr "Tyskland" - -# @ woocommerce -#: classes/class-wc-countries.php:98 -msgid "Djibouti" -msgstr "Djibouti" - -# @ woocommerce -#: classes/class-wc-countries.php:97 -msgid "Denmark" -msgstr "Danmark" - -# @ woocommerce -#: classes/class-wc-countries.php:99 -msgid "Dominica" -msgstr "Dominica" - -# @ woocommerce -#: classes/class-wc-countries.php:100 -msgid "Dominican Republic" -msgstr "Dominikanska Republiken" - -# @ woocommerce -#: classes/class-wc-countries.php:40 -msgid "Algeria" -msgstr "Algeriet" - -# @ woocommerce -#: classes/class-wc-countries.php:101 -msgid "Ecuador" -msgstr "Ecuador" - -# @ woocommerce -#: classes/class-wc-countries.php:106 -msgid "Estonia" -msgstr "Estland" - -# @ woocommerce -#: classes/class-wc-countries.php:102 -msgid "Egypt" -msgstr "Egypten" - -# @ woocommerce -#: classes/class-wc-countries.php:276 -msgid "Western Sahara" -msgstr "Västra Sahara" - -# @ woocommerce -#: classes/class-wc-countries.php:105 -msgid "Eritrea" -msgstr "Eritrea" - -# @ woocommerce -#: classes/class-wc-countries.php:241 -msgid "Spain" -msgstr "Spanien" - -# @ woocommerce -#: classes/class-wc-countries.php:107 -msgid "Ethiopia" -msgstr "Etiopien" - -# @ woocommerce -#: classes/class-wc-countries.php:111 -msgid "Finland" -msgstr "Finland" - -# @ woocommerce -#: classes/class-wc-countries.php:110 -msgid "Fiji" -msgstr "Fiji" - -# @ woocommerce -#: classes/class-wc-countries.php:108 -msgid "Falkland Islands" -msgstr "Falklandsöarna" - -# @ woocommerce -#: classes/class-wc-countries.php:178 -msgid "Micronesia" -msgstr "Mikronesien" - -# @ woocommerce -#: classes/class-wc-countries.php:109 -msgid "Faroe Islands" -msgstr "Faroeöarna" - -# @ woocommerce -#: classes/class-wc-countries.php:112 -msgid "France" -msgstr "Frankrike" - -# @ woocommerce -#: classes/class-wc-countries.php:116 -msgid "Gabon" -msgstr "Gabon" - -# @ woocommerce -#: classes/class-wc-countries.php:267 -msgid "United Kingdom" -msgstr "Storbritannien" - -# @ woocommerce -#: classes/class-wc-countries.php:124 -msgid "Grenada" -msgstr "Grenada" - -# @ woocommerce -#: classes/class-wc-countries.php:118 i18n/states/US.php:23 -msgid "Georgia" -msgstr "Georgien" - -# @ woocommerce -#: classes/class-wc-countries.php:113 -msgid "French Guiana" -msgstr "Franska Guiana" - -# @ woocommerce -#: classes/class-wc-countries.php:127 -msgid "Guernsey" -msgstr "Guernsey" - -# @ woocommerce -#: classes/class-wc-countries.php:120 -msgid "Ghana" -msgstr "Ghana" - -# @ woocommerce -#: classes/class-wc-countries.php:121 -msgid "Gibraltar" -msgstr "Gibraltar" - -# @ woocommerce -#: classes/class-wc-countries.php:123 -msgid "Greenland" -msgstr "Grönland" - -# @ woocommerce -#: classes/class-wc-countries.php:117 -msgid "Gambia" -msgstr "Gambia" - -# @ woocommerce -#: classes/class-wc-countries.php:128 -msgid "Guinea" -msgstr "Guinea" - -# @ woocommerce -#: classes/class-wc-countries.php:125 -msgid "Guadeloupe" -msgstr "Guadeloupe" - -# @ woocommerce -#: classes/class-wc-countries.php:104 -msgid "Equatorial Guinea" -msgstr "Equatorial Guinea" - -# @ woocommerce -#: classes/class-wc-countries.php:122 -msgid "Greece" -msgstr "Grekland" - -# @ woocommerce -#: classes/class-wc-countries.php:126 -msgid "Guatemala" -msgstr "Guatemala" - -# @ woocommerce -#: i18n/states/US.php:68 -msgid "Guam" -msgstr "Guam" - -# @ woocommerce -#: classes/class-wc-countries.php:129 -msgid "Guinea-Bissau" -msgstr "Guinea-Bissau" - -# @ woocommerce -#: classes/class-wc-countries.php:130 -msgid "Guyana" -msgstr "Guyana" - -# @ woocommerce -#: classes/class-wc-countries.php:133 -msgid "Honduras" -msgstr "Honduras" - -# @ woocommerce -#: classes/class-wc-countries.php:92 -msgid "Croatia" -msgstr "Kroatien" - -# @ woocommerce -#: classes/class-wc-countries.php:131 -msgid "Haiti" -msgstr "Haiti" - -# @ woocommerce -#: classes/class-wc-countries.php:135 -msgid "Hungary" -msgstr "Ungern" - -# @ woocommerce -#: classes/class-wc-countries.php:138 -msgid "Indonesia" -msgstr "Indonesien" - -# @ woocommerce -#: classes/class-wc-countries.php:143 -msgid "Israel" -msgstr "Israel" - -# @ woocommerce -#: classes/class-wc-countries.php:142 -msgid "Isle of Man" -msgstr "Isle of Man" - -# @ woocommerce -#: classes/class-wc-countries.php:137 -msgid "India" -msgstr "Indien" - -# @ woocommerce -#: classes/class-wc-countries.php:69 -msgid "British Indian Ocean Territory" -msgstr "British Indian Oceanterritoriet" - -# @ woocommerce -#: classes/class-wc-countries.php:140 -msgid "Iraq" -msgstr "Irak" - -# @ woocommerce -#: classes/class-wc-countries.php:139 -msgid "Iran" -msgstr "Iran" - -# @ woocommerce -#: classes/class-wc-countries.php:136 -msgid "Iceland" -msgstr "Island" - -# @ woocommerce -#: classes/class-wc-countries.php:144 -msgid "Italy" -msgstr "Italien" - -# @ woocommerce -#: classes/class-wc-countries.php:148 -msgid "Jersey" -msgstr "Jersey" - -# @ woocommerce -#: classes/class-wc-countries.php:146 -msgid "Jamaica" -msgstr "Jamaica" - -# @ woocommerce -#: classes/class-wc-countries.php:149 -msgid "Jordan" -msgstr "Jordanien" - -# @ woocommerce -#: classes/class-wc-countries.php:147 -msgid "Japan" -msgstr "Japan" - -# @ woocommerce -#: classes/class-wc-countries.php:151 -msgid "Kenya" -msgstr "Kenya" - -# @ woocommerce -#: classes/class-wc-countries.php:154 -msgid "Kyrgyzstan" -msgstr "Kirigistan" - -# @ woocommerce -#: classes/class-wc-countries.php:75 -msgid "Cambodia" -msgstr "Kambodja" - -# @ woocommerce -#: classes/class-wc-countries.php:152 -msgid "Kiribati" -msgstr "Kiribati" - -# @ woocommerce -#: classes/class-wc-countries.php:87 -msgid "Comoros" -msgstr "Comoros" - -# @ woocommerce -#: classes/class-wc-countries.php:219 -msgid "Saint Kitts and Nevis" -msgstr "Saint Kitts och Nevis" - -# @ woocommerce -#: classes/class-wc-countries.php:199 -msgid "North Korea" -msgstr "Nordkorea" - -# @ woocommerce -#: classes/class-wc-countries.php:239 -msgid "South Korea" -msgstr "Sydkorea" - -# @ woocommerce -#: classes/class-wc-countries.php:153 -msgid "Kuwait" -msgstr "Kuwait" - -# @ woocommerce -#: classes/class-wc-countries.php:79 -msgid "Cayman Islands" -msgstr "Caymanöarna" - -# @ woocommerce -#: classes/class-wc-countries.php:150 -msgid "Kazakhstan" -msgstr "Kazakhstan" - -# @ woocommerce -#: classes/class-wc-countries.php:155 -msgid "Laos" -msgstr "Laos" - -# @ woocommerce -#: classes/class-wc-countries.php:157 -msgid "Lebanon" -msgstr "Libanon" - -# @ woocommerce -#: classes/class-wc-countries.php:220 -msgid "Saint Lucia" -msgstr "Sankta Lucia" - -# @ woocommerce -#: classes/class-wc-countries.php:161 -msgid "Liechtenstein" -msgstr "Liechtenstein" - -# @ woocommerce -#: classes/class-wc-countries.php:242 -msgid "Sri Lanka" -msgstr "Sri Lanka" - -# @ woocommerce -#: classes/class-wc-countries.php:159 -msgid "Liberia" -msgstr "Liberia" - -# @ woocommerce -#: classes/class-wc-countries.php:158 -msgid "Lesotho" -msgstr "Lesotho" - -# @ woocommerce -#: classes/class-wc-countries.php:162 -msgid "Lithuania" -msgstr "Litauen" - -# @ woocommerce -#: classes/class-wc-countries.php:163 -msgid "Luxembourg" -msgstr "Luxemburg" - -# @ woocommerce -#: classes/class-wc-countries.php:156 -msgid "Latvia" -msgstr "Lettland" - -# @ woocommerce -#: classes/class-wc-countries.php:160 -msgid "Libya" -msgstr "Libyen" - -# @ woocommerce -#: classes/class-wc-countries.php:184 -msgid "Morocco" -msgstr "Marocco" - -# @ woocommerce -#: classes/class-wc-countries.php:180 -msgid "Monaco" -msgstr "Monaco" - -# @ woocommerce -#: classes/class-wc-countries.php:179 -msgid "Moldova" -msgstr "Moldavien" - -# @ woocommerce -#: classes/class-wc-countries.php:182 -msgid "Montenegro" -msgstr "Montenegro" - -# @ woocommerce -#: classes/class-wc-countries.php:221 -msgid "Saint Martin (French part)" -msgstr "Saint Martin (Franska delen)" - -# @ woocommerce -#: classes/class-wc-countries.php:166 -msgid "Madagascar" -msgstr "Madagaskar" - -# @ woocommerce -#: classes/class-wc-countries.php:172 -msgid "Marshall Islands" -msgstr "Marshall Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:165 -msgid "Macedonia" -msgstr "Makedonien" - -# @ woocommerce -#: classes/class-wc-countries.php:170 -msgid "Mali" -msgstr "Mali" - -# @ woocommerce -#: classes/class-wc-countries.php:186 -msgid "Myanmar" -msgstr "Myanmar" - -# @ woocommerce -#: classes/class-wc-countries.php:181 -msgid "Mongolia" -msgstr "Mongolien" - -# @ woocommerce -#: classes/class-wc-countries.php:164 -msgid "Macao S.A.R., China" -msgstr "Macao S.A.R., Kina" - -# @ woocommerce -#: i18n/states/US.php:69 -msgid "Northern Mariana Islands" -msgstr "Norra Marianaöarna" - -# @ woocommerce -#: classes/class-wc-countries.php:173 -msgid "Martinique" -msgstr "Martinique" - -# @ woocommerce -#: classes/class-wc-countries.php:174 -msgid "Mauritania" -msgstr "Mauritanien" - -# @ woocommerce -#: classes/class-wc-countries.php:183 -msgid "Montserrat" -msgstr "Montserrat" - -# @ woocommerce -#: classes/class-wc-countries.php:171 -msgid "Malta" -msgstr "Malta" - -# @ woocommerce -#: classes/class-wc-countries.php:175 -msgid "Mauritius" -msgstr "Mauritius" - -# @ woocommerce -#: classes/class-wc-countries.php:169 -msgid "Maldives" -msgstr "Maldiverna" - -# @ woocommerce -#: classes/class-wc-countries.php:167 -msgid "Malawi" -msgstr "Malawi" - -# @ woocommerce -#: classes/class-wc-countries.php:177 -msgid "Mexico" -msgstr "Mexico" - -# @ woocommerce -#: classes/class-wc-countries.php:168 -msgid "Malaysia" -msgstr "Malaysia" - -# @ woocommerce -#: classes/class-wc-countries.php:185 -msgid "Mozambique" -msgstr "Mozambique" - -# @ woocommerce -#: classes/class-wc-countries.php:187 -msgid "Namibia" -msgstr "Namibia" - -# @ woocommerce -#: classes/class-wc-countries.php:192 -msgid "New Caledonia" -msgstr "Nya Caledonien" - -# @ woocommerce -#: classes/class-wc-countries.php:195 -msgid "Niger" -msgstr "Niger" - -# @ woocommerce -#: classes/class-wc-countries.php:198 -msgid "Norfolk Island" -msgstr "Norfolk Island" - -# @ woocommerce -#: classes/class-wc-countries.php:196 -msgid "Nigeria" -msgstr "Nigeria" - -# @ woocommerce -#: classes/class-wc-countries.php:194 -msgid "Nicaragua" -msgstr "Nicaragua" - -# @ woocommerce -#: classes/class-wc-countries.php:190 -msgid "Netherlands" -msgstr "Nederländerna" - -# @ woocommerce -#: classes/class-wc-countries.php:200 -msgid "Norway" -msgstr "Norge" - -# @ woocommerce -#: classes/class-wc-countries.php:189 -msgid "Nepal" -msgstr "Nepal" - -# @ woocommerce -#: classes/class-wc-countries.php:188 -msgid "Nauru" -msgstr "Nauru" - -# @ woocommerce -#: classes/class-wc-countries.php:197 -msgid "Niue" -msgstr "Niue" - -# @ woocommerce -#: classes/class-wc-countries.php:193 -msgid "New Zealand" -msgstr "Nya Zeeland" - -# @ woocommerce -#: classes/class-wc-countries.php:201 -msgid "Oman" -msgstr "Oman" - -# @ woocommerce -#: classes/class-wc-countries.php:204 -msgid "Panama" -msgstr "Panama" - -# @ woocommerce -#: classes/class-wc-countries.php:207 -msgid "Peru" -msgstr "Peru" - -# @ woocommerce -#: classes/class-wc-countries.php:114 -msgid "French Polynesia" -msgstr "Franska polynesien" - -# @ woocommerce -#: classes/class-wc-countries.php:205 -msgid "Papua New Guinea" -msgstr "Papua New Guinea" - -# @ woocommerce -#: classes/class-wc-countries.php:208 -msgid "Philippines" -msgstr "Filippinerna" - -# @ woocommerce -#: classes/class-wc-countries.php:202 -msgid "Pakistan" -msgstr "Pakistan" - -# @ woocommerce -#: classes/class-wc-countries.php:210 -msgid "Poland" -msgstr "Polen" - -# @ woocommerce -#: classes/class-wc-countries.php:223 -msgid "Saint Pierre and Miquelon" -msgstr "Saint Pierre och Miquelon" - -# @ woocommerce -#: classes/class-wc-countries.php:209 -msgid "Pitcairn" -msgstr "Pitcairn" - -# @ woocommerce -#: i18n/states/US.php:70 -msgid "Puerto Rico" -msgstr "Puerto Rico" - -# @ woocommerce -#: classes/class-wc-countries.php:203 -msgid "Palestinian Territory" -msgstr "Palestinska territoriet" - -# @ woocommerce -#: classes/class-wc-countries.php:211 -msgid "Portugal" -msgstr "Portugal" - -# @ woocommerce -#: classes/class-wc-countries.php:206 -msgid "Paraguay" -msgstr "Paraguay" - -# @ woocommerce -#: classes/class-wc-countries.php:212 -msgid "Qatar" -msgstr "Qatar" - -# @ woocommerce -#: classes/class-wc-countries.php:213 -msgid "Reunion" -msgstr "Reunion" - -# @ woocommerce -#: classes/class-wc-countries.php:214 -msgid "Romania" -msgstr "Rumänien" - -# @ woocommerce -#: classes/class-wc-countries.php:229 -msgid "Serbia" -msgstr "Serbien" - -# @ woocommerce -#: classes/class-wc-countries.php:215 -msgid "Russia" -msgstr "Ryssland" - -# @ woocommerce -#: classes/class-wc-countries.php:216 -msgid "Rwanda" -msgstr "Rwanda" - -# @ woocommerce -#: classes/class-wc-countries.php:227 -msgid "Saudi Arabia" -msgstr "Saudi Arabien" - -# @ woocommerce -#: classes/class-wc-countries.php:235 -msgid "Solomon Islands" -msgstr "Solomon Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:230 -msgid "Seychelles" -msgstr "Seychellerna" - -# @ woocommerce -#: classes/class-wc-countries.php:243 -msgid "Sudan" -msgstr "Sudan" - -# @ woocommerce -#: classes/class-wc-countries.php:247 -msgid "Sweden" -msgstr "Sverige" - -# @ woocommerce -#: classes/class-wc-countries.php:232 -msgid "Singapore" -msgstr "Singapore" - -# @ woocommerce -#: classes/class-wc-countries.php:218 -msgid "Saint Helena" -msgstr "Sankt Helena" - -# @ woocommerce -#: classes/class-wc-countries.php:234 -msgid "Slovenia" -msgstr "Slovenien" - -# @ woocommerce -#: classes/class-wc-countries.php:245 -msgid "Svalbard and Jan Mayen" -msgstr "Svalbard och Jan Mayen" - -# @ woocommerce -#: classes/class-wc-countries.php:233 -msgid "Slovakia" -msgstr "Slovakien" - -# @ woocommerce -#: classes/class-wc-countries.php:231 -msgid "Sierra Leone" -msgstr "Sierra Leone" - -# @ woocommerce -#: classes/class-wc-countries.php:225 -msgid "San Marino" -msgstr "San Marino" - -# @ woocommerce -#: classes/class-wc-countries.php:228 -msgid "Senegal" -msgstr "Senegal" - -# @ woocommerce -#: classes/class-wc-countries.php:236 -msgid "Somalia" -msgstr "Somalia" - -# @ woocommerce -#: classes/class-wc-countries.php:244 -msgid "Suriname" -msgstr "Surinam" - -# @ woocommerce -#: classes/class-wc-countries.php:103 -msgid "El Salvador" -msgstr "El Salvador" - -# @ woocommerce -#: classes/class-wc-countries.php:249 -msgid "Syria" -msgstr "Syrien" - -# @ woocommerce -#: classes/class-wc-countries.php:246 -msgid "Swaziland" -msgstr "Swaziland" - -# @ woocommerce -#: classes/class-wc-countries.php:262 -msgid "Turks and Caicos Islands" -msgstr "Turks- och Caicosöarna" - -# @ woocommerce -#: classes/class-wc-countries.php:81 -msgid "Chad" -msgstr "Chad" - -# @ woocommerce -#: classes/class-wc-countries.php:115 -msgid "French Southern Territories" -msgstr "Franska södra territorierna" - -# @ woocommerce -#: classes/class-wc-countries.php:255 -msgid "Togo" -msgstr "Togo" - -# @ woocommerce -#: classes/class-wc-countries.php:253 -msgid "Thailand" -msgstr "Thailand" - -# @ woocommerce -#: classes/class-wc-countries.php:251 -msgid "Tajikistan" -msgstr "Tachikistan" - -# @ woocommerce -#: classes/class-wc-countries.php:256 -msgid "Tokelau" -msgstr "Tokelau" - -# @ woocommerce -#: classes/class-wc-countries.php:254 -msgid "Timor-Leste" -msgstr "Timor-Leste" - -# @ woocommerce -#: classes/class-wc-countries.php:261 -msgid "Turkmenistan" -msgstr "Turkmenistan" - -# @ woocommerce -#: classes/class-wc-countries.php:259 -msgid "Tunisia" -msgstr "Tunisien" - -# @ woocommerce -#: classes/class-wc-countries.php:257 -msgid "Tonga" -msgstr "Tonga" - -# @ woocommerce -#: classes/class-wc-countries.php:260 -msgid "Turkey" -msgstr "Turkiet" - -# @ woocommerce -#: classes/class-wc-countries.php:258 -msgid "Trinidad and Tobago" -msgstr "Trinidad och Tobago" - -# @ woocommerce -#: classes/class-wc-countries.php:263 -msgid "Tuvalu" -msgstr "Tuvalu" - -# @ woocommerce -#: classes/class-wc-countries.php:250 -msgid "Taiwan" -msgstr "Taiwan" - -# @ woocommerce -#: classes/class-wc-countries.php:252 -msgid "Tanzania" -msgstr "Tanzania" - -# @ woocommerce -#: classes/class-wc-countries.php:265 -msgid "Ukraine" -msgstr "Ukraina" - -# @ woocommerce -#: classes/class-wc-countries.php:264 -msgid "Uganda" -msgstr "Uganda" - -# @ woocommerce -#: classes/class-wc-countries.php:268 -msgid "United States" -msgstr "USA" - -# @ woocommerce -#: classes/class-wc-countries.php:269 -msgid "Uruguay" -msgstr "Uruguay" - -# @ woocommerce -#: classes/class-wc-countries.php:270 -msgid "Uzbekistan" -msgstr "Usbekistan" - -# @ woocommerce -#: classes/class-wc-countries.php:272 -msgid "Vatican" -msgstr "Vatikanstaten" - -# @ woocommerce -#: classes/class-wc-countries.php:224 -msgid "Saint Vincent and the Grenadines" -msgstr "Saint Vincent och Grenadinerna" - -# @ woocommerce -#: classes/class-wc-countries.php:273 -msgid "Venezuela" -msgstr "Venezuela" - -# @ woocommerce -#: classes/class-wc-countries.php:70 -msgid "British Virgin Islands" -msgstr "Jungfruöarna (Storbritannien)" - -# @ woocommerce -#: classes/class-wc-countries.php:274 -msgid "Vietnam" -msgstr "Vietnam" - -# @ woocommerce -#: classes/class-wc-countries.php:271 -msgid "Vanuatu" -msgstr "Vanuatu" - -# @ woocommerce -#: classes/class-wc-countries.php:275 -msgid "Wallis and Futuna" -msgstr "Wallis och Futuna" - -# @ woocommerce -#: classes/class-wc-countries.php:278 -msgid "Yemen" -msgstr "Yemen" - -# @ woocommerce -#: classes/class-wc-countries.php:176 -msgid "Mayotte" -msgstr "Mayotte" - -# @ woocommerce -#: classes/class-wc-countries.php:237 -msgid "South Africa" -msgstr "Sydafrika" - -# @ woocommerce -#: classes/class-wc-countries.php:279 -msgid "Zambia" -msgstr "Zambia" - -# @ woocommerce -#: classes/class-wc-countries.php:280 -msgid "Zimbabwe" -msgstr "Zimbabwe" - -# @ woocommerce -#: i18n/states/AU.php:13 -msgid "Australian Capital Territory" -msgstr "Australian Capital Territory" - -# @ woocommerce -#: i18n/states/AU.php:14 -msgid "New South Wales" -msgstr "New South Wales" - -# @ woocommerce -#: i18n/states/AU.php:15 -msgid "Northern Territory" -msgstr "Northern Territory" - -# @ woocommerce -#: i18n/states/AU.php:16 -msgid "Queensland" -msgstr "Queensland" - -# @ woocommerce -#: i18n/states/AU.php:17 -msgid "South Australia" -msgstr "Sydaustralien" - -# @ woocommerce -#: i18n/states/AU.php:18 -msgid "Tasmania" -msgstr "Tasmania" - -# @ woocommerce -#: i18n/states/AU.php:19 -msgid "Victoria" -msgstr "Victoria" - -# @ woocommerce -#: i18n/states/AU.php:20 -msgid "Western Australia" -msgstr "Western Australia" - -# @ woocommerce -#: i18n/states/CA.php:13 -msgid "Alberta" -msgstr "Alberta" - -# @ woocommerce -#: i18n/states/CA.php:14 -msgid "British Columbia" -msgstr "British Columbia" - -# @ woocommerce -#: i18n/states/CA.php:15 -msgid "Manitoba" -msgstr "Manitoba" - -# @ woocommerce -#: i18n/states/CA.php:16 -msgid "New Brunswick" -msgstr "New Brunswick" - -# @ woocommerce -#: i18n/states/CA.php:17 -msgid "Newfoundland" -msgstr "Newfoundland" - -# @ woocommerce -#: i18n/states/CA.php:18 -msgid "Northwest Territories" -msgstr "Northwest Territories" - -# @ woocommerce -#: i18n/states/CA.php:19 -msgid "Nova Scotia" -msgstr "Nova Scotia" - -# @ woocommerce -#: i18n/states/CA.php:20 -msgid "Nunavut" -msgstr "Nunavut" - -# @ woocommerce -#: i18n/states/CA.php:21 -msgid "Ontario" -msgstr "Ontario" - -# @ woocommerce -#: i18n/states/CA.php:22 -msgid "Prince Edward Island" -msgstr "Prince Edward Island" - -# @ woocommerce -#: i18n/states/CA.php:23 -msgid "Quebec" -msgstr "Quebec" - -# @ woocommerce -#: i18n/states/CA.php:24 -msgid "Saskatchewan" -msgstr "Saskatchewan" - -# @ woocommerce -#: i18n/states/CA.php:25 -msgid "Yukon Territory" -msgstr "Yukon Territory" - -# @ woocommerce -#: i18n/states/US.php:15 -msgid "Arizona" -msgstr "Arizona" - -# @ woocommerce -#: i18n/states/US.php:16 -msgid "Arkansas" -msgstr "Arkansas" - -# @ woocommerce -#: i18n/states/US.php:17 -msgid "California" -msgstr "Kalifornien" - -# @ woocommerce -#: i18n/states/US.php:18 -msgid "Colorado" -msgstr "Colorado" - -# @ woocommerce -#: i18n/states/US.php:19 -msgid "Connecticut" -msgstr "Connecticut" - -# @ woocommerce -#: i18n/states/US.php:20 -msgid "Delaware" -msgstr "Delaware" - -# @ woocommerce -#: i18n/states/US.php:21 -msgid "District Of Columbia" -msgstr "District Of Columbia" - -# @ woocommerce -#: i18n/states/US.php:22 -msgid "Florida" -msgstr "Florida" - -# @ woocommerce -#: i18n/states/US.php:24 -msgid "Hawaii" -msgstr "Hawaii" - -# @ woocommerce -#: i18n/states/US.php:25 -msgid "Idaho" -msgstr "Idaho" - -# @ woocommerce -#: i18n/states/US.php:26 -msgid "Illinois" -msgstr "Illinois" - -# @ woocommerce -#: i18n/states/US.php:27 -msgid "Indiana" -msgstr "Indiana" - -# @ woocommerce -#: i18n/states/US.php:28 -msgid "Iowa" -msgstr "Iowa" - -# @ woocommerce -#: i18n/states/US.php:29 -msgid "Kansas" -msgstr "Kansas" - -# @ woocommerce -#: i18n/states/US.php:30 -msgid "Kentucky" -msgstr "Kentucky" - -# @ woocommerce -#: i18n/states/US.php:31 -msgid "Louisiana" -msgstr "Louisiana" - -# @ woocommerce -#: i18n/states/US.php:32 -msgid "Maine" -msgstr "Maine" - -# @ woocommerce -#: i18n/states/US.php:33 -msgid "Maryland" -msgstr "Maryland" - -# @ woocommerce -#: i18n/states/US.php:34 -msgid "Massachusetts" -msgstr "Massachusetts" - -# @ woocommerce -#: i18n/states/US.php:35 -msgid "Michigan" -msgstr "Michigan" - -# @ woocommerce -#: i18n/states/US.php:36 -msgid "Minnesota" -msgstr "Minnesota" - -# @ woocommerce -#: i18n/states/US.php:37 -msgid "Mississippi" -msgstr "Mississippi" - -# @ woocommerce -#: i18n/states/US.php:38 -msgid "Missouri" -msgstr "Missouri" - -# @ woocommerce -#: i18n/states/US.php:39 -msgid "Montana" -msgstr "Montana" - -# @ woocommerce -#: i18n/states/US.php:40 -msgid "Nebraska" -msgstr "Nebraska" - -# @ woocommerce -#: i18n/states/US.php:41 -msgid "Nevada" -msgstr "Nevada" - -# @ woocommerce -#: i18n/states/US.php:42 -msgid "New Hampshire" -msgstr "New Hampshire" - -# @ woocommerce -#: i18n/states/US.php:43 -msgid "New Jersey" -msgstr "New Jersey" - -# @ woocommerce -#: i18n/states/US.php:44 -msgid "New Mexico" -msgstr "New Mexico" - -# @ woocommerce -#: i18n/states/US.php:45 -msgid "New York" -msgstr "New York" - -# @ woocommerce -#: i18n/states/US.php:46 -msgid "North Carolina" -msgstr "North Carolina" - -# @ woocommerce -#: i18n/states/US.php:47 -msgid "North Dakota" -msgstr "North Dakota" - -# @ woocommerce -#: i18n/states/US.php:48 -msgid "Ohio" -msgstr "Ohio" - -# @ woocommerce -#: i18n/states/US.php:49 -msgid "Oklahoma" -msgstr "Oklahoma" - -# @ woocommerce -#: i18n/states/US.php:50 -msgid "Oregon" -msgstr "Oregon" - -# @ woocommerce -#: i18n/states/US.php:51 -msgid "Pennsylvania" -msgstr "Pennsylvania" - -# @ woocommerce -#: i18n/states/US.php:52 -msgid "Rhode Island" -msgstr "Rhode Island" - -# @ woocommerce -#: i18n/states/US.php:53 -msgid "South Carolina" -msgstr "South Carolina" - -# @ woocommerce -#: i18n/states/US.php:54 -msgid "South Dakota" -msgstr "South Dakota" - -# @ woocommerce -#: i18n/states/US.php:55 -msgid "Tennessee" -msgstr "Tennessee" - -# @ woocommerce -#: i18n/states/US.php:56 -msgid "Texas" -msgstr "Texas" - -# @ woocommerce -#: i18n/states/US.php:57 -msgid "Utah" -msgstr "Utah" - -# @ woocommerce -#: i18n/states/US.php:58 -msgid "Vermont" -msgstr "Vermont" - -# @ woocommerce -#: i18n/states/US.php:59 -msgid "Virginia" -msgstr "Virginia" - -# @ woocommerce -#: i18n/states/US.php:60 -msgid "Washington" -msgstr "Washington" - -# @ woocommerce -#: i18n/states/US.php:61 -msgid "West Virginia" -msgstr "West Virginia" - -# @ woocommerce -#: i18n/states/US.php:62 -msgid "Wisconsin" -msgstr "Wisconsin" - -# @ woocommerce -#: i18n/states/US.php:63 -msgid "Wyoming" -msgstr "Wyoming" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-cart.php:53 -#: woocommerce-functions.php:1703 -msgid "Please enter a valid postcode/ZIP." -msgstr "Var vänlig uppge ett giltigt postnummer" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-cart.php:64 -#: classes/shortcodes/class-wc-shortcode-cart.php:70 -msgid "Shipping costs updated." -msgstr "Fraktkostnader uppdaterades." - -# @ woocommerce -#: templates/cart/cart-empty.php:14 -msgid "Your cart is currently empty." -msgstr "Din varukorg är tom." - -# @ woocommerce -#: templates/cart/cart-empty.php:18 -msgid "← Return To Shop" -msgstr "← Fortsätt handla" - -# @ woocommerce -#: templates/cart/cart.php:47 -msgid "Remove this item" -msgstr "Ta bort den här produkten" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1547 templates/cart/cart.php:127 -#: woocommerce.php:1096 -msgid "Coupon" -msgstr "Rabattkupong" - -# @ woocommerce -#: templates/cart/cart.php:127 templates/checkout/form-coupon.php:29 -msgid "Apply Coupon" -msgstr "Lägg till rabattkupong" - -# @ woocommerce -#: templates/cart/cart.php:134 -msgid "Proceed to Checkout →" -msgstr "Fortsätt till kassan →" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-checkout.php:73 -msgid "" -"The order totals have been updated. Please confirm your order by pressing " -"the Place Order button at the bottom of the page." -msgstr "" -"Orderns totalbelopp har uppdaterats. Bekräfta din order genom att klicka på " -"knappen Skicka order längst ner på sidan." - -# @ woocommerce -#: templates/myaccount/my-account.php:19 -#, php-format -msgid "" -"Hello, %s. From your account dashboard you can view your " -"recent orders, manage your shipping and billing addresses and change your password." -msgstr "" -"Hej %s! Via ditt kontos kontrollpanel kan du se tidigare " -"ordrar, hantera din leveransinformation, dina adresser och ändra ditt lösenord." - -# @ woocommerce -#: templates/myaccount/my-downloads.php:18 -msgid "Available downloads" -msgstr "Tillgängliga nedladdningar" - -# @ woocommerce -#: templates/myaccount/my-orders.php:26 -msgid "Recent Orders" -msgstr "Tidigare ordrar" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:43 -#: admin/post-types/writepanels/order-item-html.php:115 -#: admin/woocommerce-admin-reports.php:1562 -#: admin/woocommerce-admin-reports.php:1615 -#: admin/woocommerce-admin-reports.php:2386 -#: admin/woocommerce-admin-reports.php:2555 -#: admin/woocommerce-admin-reports.php:2633 templates/cart/cart.php:31 -#: templates/checkout/review-order.php:22 templates/myaccount/my-orders.php:35 -#: templates/order/order-details.php:21 -msgid "Total" -msgstr "Total" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:311 -#: assets/js/admin/editor_plugin_lang.php:22 -#: templates/checkout/thankyou.php:28 templates/myaccount/my-orders.php:71 -msgid "Pay" -msgstr "Betala" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:138 -#: admin/post-types/writepanels/writepanel-product_data.php:1082 -#: templates/myaccount/my-orders.php:77 -msgid "Cancel" -msgstr "Avbryt" - -# @ default -# @ woocommerce -#: admin/post-types/product.php:167 admin/post-types/shop_order.php:171 -#: templates/myaccount/my-orders.php:82 -msgid "View" -msgstr "Visa" - -# @ woocommerce -#: templates/myaccount/my-address.php:35 -msgid "The following addresses will be used on the checkout page by default." -msgstr "Följande adresser kommer att användas i kassan som standard." - -# @ woocommerce -#: templates/myaccount/form-edit-address.php:43 -msgid "Save Address" -msgstr "Spara adress" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:78 -#: woocommerce-functions.php:1625 -msgid "Please enter your password." -msgstr "Skriv in ditt lösenord" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:20 -#: templates/myaccount/form-lost-password.php:31 -msgid "New password" -msgstr "Nytt lösenord" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:24 -#: templates/myaccount/form-lost-password.php:35 -msgid "Re-enter new password" -msgstr "Upprepa lösenord" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:29 -#: templates/myaccount/form-lost-password.php:45 -msgid "Save" -msgstr "Spara" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:65 -#: templates/order/tracking.php:31 -msgid "Order Updates" -msgstr "Orderuppdateringar" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:59 -#: templates/order/order-details.php:16 -msgid "Order Details" -msgstr "Orderdetaljer" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:347 -#: templates/checkout/form-pay.php:20 -msgid "Qty" -msgstr "Antal" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:349 -#: templates/checkout/form-pay.php:21 -msgid "Totals" -msgstr "Totalt" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:117 -#: templates/cart/mini-cart.php:63 -msgid "Subtotal" -msgstr "Delsumma" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:220 -#: templates/emails/admin-new-order.php:50 -#: templates/emails/customer-completed-order.php:51 -#: templates/emails/customer-note.php:55 -#: templates/emails/customer-processing-order.php:51 -#: templates/emails/plain/admin-new-order.php:38 -#: templates/order/order-details.php:97 -msgid "Customer details" -msgstr "Kunddetaljer" - -# @ woocommerce -#: admin/post-types/shop_order.php:101 templates/emails/admin-new-order.php:53 -#: templates/emails/customer-completed-order.php:54 -#: templates/emails/customer-note.php:58 -#: templates/emails/customer-processing-order.php:54 -#: templates/emails/plain/admin-new-order.php:41 -#: templates/emails/plain/customer-completed-order.php:41 -#: templates/emails/plain/customer-note.php:49 -#: templates/emails/plain/customer-processing-order.php:41 -#: templates/order/order-details.php:101 -msgid "Email:" -msgstr "E-postadress:" - -# @ woocommerce -#: templates/order/order-details.php:102 -msgid "Telephone:" -msgstr "Telefon:" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:19 -#: admin/post-types/writepanels/order-tax-html.php:8 -#: admin/post-types/writepanels/writepanel-order_data.php:561 -#: admin/post-types/writepanels/writepanel-order_data.php:666 -#: admin/woocommerce-admin-reports.php:1658 -#: admin/woocommerce-admin-reports.php:2671 -#: admin/woocommerce-admin-reports.php:2680 -#: admin/woocommerce-admin-users.php:90 admin/woocommerce-admin-users.php:112 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:499 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:500 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:110 -#: templates/order/order-details.php:119 templates/order/order-details.php:134 -msgid "N/A" -msgstr "Inte tillgänglig" - -# @ woocommerce -#: templates/order/tracking.php:20 -msgid " ago" -msgstr "sedan" - -# @ woocommerce -#: templates/order/form-tracking.php:17 -msgid "" -"To track your order please enter your Order ID in the box below and press " -"return. This was given to you on your receipt and in the confirmation email " -"you should have received." -msgstr "" -"För att spåra din order, skriv ditt order-ID här nedanför och tryck enter. " -"Order-ID hittar du i ditt kvitto och i orderbekräftelsen" - -# @ woocommerce -#: templates/order/form-tracking.php:19 -msgid "Order ID" -msgstr "Order-ID" - -# @ woocommerce -#: templates/order/form-tracking.php:19 -msgid "Found in your order confirmation email." -msgstr "Finns i din orderbekräftelse." - -# @ woocommerce -#: templates/order/form-tracking.php:20 -msgid "Billing Email" -msgstr "E-postadress för betalning" - -# @ woocommerce -#: templates/order/form-tracking.php:20 -msgid "Email you used during checkout." -msgstr "E-postadressen som du uppgav i kassan." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:64 -#: classes/shortcodes/class-wc-shortcode-pay.php:118 -msgid "" -"Your order has already been paid for. Please contact us if you need " -"assistance." -msgstr "" -"Din order är redan betald. Var vänlig kontakta oss om du behöver hjälp." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:69 -#: classes/shortcodes/class-wc-shortcode-pay.php:125 -#: classes/shortcodes/class-wc-shortcode-view-order.php:51 -#: woocommerce-functions.php:911 woocommerce-functions.php:991 -msgid "Invalid order." -msgstr "Felaktig order:" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:194 -#: classes/shortcodes/class-wc-shortcode-pay.php:90 -#: templates/checkout/thankyou.php:40 -#: templates/emails/customer-completed-order.php:18 -#: templates/emails/customer-invoice.php:22 -#: templates/emails/customer-note.php:22 -#: templates/emails/customer-processing-order.php:18 -msgid "Order:" -msgstr "Order:" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:94 -#: templates/checkout/thankyou.php:44 -msgid "Date:" -msgstr "Datum:" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:103 -#: templates/checkout/thankyou.php:53 -msgid "Payment method:" -msgstr "Betalningsmetod:" - -# @ woocommerce -#: templates/checkout/thankyou.php:18 -msgid "" -"Unfortunately your order cannot be processed as the originating bank/" -"merchant has declined your transaction." -msgstr "" -"Tyvärr kan din order inte genomföras då din betalning inte har godtagits av " -"din bank/kortutfärdare." - -# @ woocommerce -#: templates/checkout/thankyou.php:36 templates/checkout/thankyou.php:67 -msgid "Thank you. Your order has been received." -msgstr "Tack! Vi har mottagit din order." - -# @ woocommerce -#: templates/checkout/form-checkout.php:51 -msgid "Your order" -msgstr "Din order" - -# @ woocommerce -#: templates/checkout/form-pay.php:78 -msgid "" -"Sorry, it seems that there are no available payment methods for your " -"location. Please contact us if you require assistance or wish to make " -"alternate arrangements." -msgstr "" -"Det ser inte ut som det finns några betalningsalternativ för din adress. " -"Kontakta oss om du behöver hjälp, eller vill veta andra alternativ." - -# @ woocommerce -#: templates/checkout/form-pay.php:87 -msgid "Pay for order" -msgstr "Betala din order" - -# @ woocommerce -#: templates/checkout/review-order.php:174 -msgid "Please fill in your details above to see available payment methods." -msgstr "" -"Var vänlig att fyll i dina uppgifter här ovanför för att se tillgängliga " -"betalningsalternativ." - -# @ woocommerce -#: templates/checkout/review-order.php:176 -msgid "" -"Sorry, it seems that there are no available payment methods for your state. " -"Please contact us if you require assistance or wish to make alternate " -"arrangements." -msgstr "" -"Det ser inte ut att finnas något betalningsalternativ för ditt län. Kontakta " -"oss om du behöver hjälp, eller vill veta vilka alternativ som finns." - -# @ woocommerce -#: templates/checkout/review-order.php:185 -msgid "" -"Since your browser does not support JavaScript, or it is disabled, please " -"ensure you click the Update Totals button before placing your " -"order. You may be charged more than the amount stated above if you fail to " -"do so." -msgstr "" -"Eftersom din webbläsare inte stödjer JavaScript, eller för att JavaScript är " -"avstängt, så måste du klicka på Uppdatera total innan du skickar " -"ordern. Om du inte uppdaterar så riskerar du att betala mer än det som visas " -"här ovanför." - -# @ woocommerce -#: templates/checkout/review-order.php:185 -msgid "Update totals" -msgstr "Uppdatera total" - -# @ woocommerce -#: templates/checkout/review-order.php:192 -msgid "Place order" -msgstr "Skicka order" - -# @ woocommerce -#: templates/checkout/review-order.php:199 -msgid "terms & conditions" -msgstr "villkoren" - -# @ woocommerce -#: classes/class-wc-order.php:961 -msgid "Shipping:" -msgstr "Frakt:" - -# @ woocommerce -#: admin/post-types/shop_order.php:104 templates/emails/admin-new-order.php:56 -#: templates/emails/customer-completed-order.php:57 -#: templates/emails/customer-note.php:61 -#: templates/emails/customer-processing-order.php:57 -#: templates/emails/plain/admin-new-order.php:44 -#: templates/emails/plain/customer-completed-order.php:44 -#: templates/emails/plain/customer-note.php:52 -#: templates/emails/plain/customer-processing-order.php:44 -msgid "Tel:" -msgstr "Tfn:" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:226 -#: templates/emails/email-addresses.php:18 -#: templates/emails/plain/email-addresses.php:12 -msgid "Billing address" -msgstr "Fakturaadress" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:233 -#: templates/emails/email-addresses.php:28 -#: templates/emails/plain/email-addresses.php:17 -msgid "Shipping address" -msgstr "Leveransadress" - -# @ woocommerce -#: admin/settings/settings-init.php:1054 -msgid "Powered by WooCommerce" -msgstr "Drivs med WooCommerce" - -# @ woocommerce -#: templates/loop/no-products-found.php:14 templates/loop-shop.php:40 -msgid "No products found which match your selection." -msgstr "Inga produkter matchade ditt val." - -# @ woocommerce -#: templates/single-product-reviews.php:30 -#, php-format -msgid "%s review for %s" -msgid_plural "%s reviews for %s" -msgstr[0] "%s recension för %s" -msgstr[1] "%s recensioner för %s" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:64 -#: templates/single-product-reviews.php:36 -#: templates/single-product-reviews.php:42 -msgid "Reviews" -msgstr "Recensioner" - -# @ woocommerce -#: templates/single-product-reviews.php:58 -msgid " Previous" -msgstr " Föregående" - -# @ woocommerce -#: templates/single-product-reviews.php:59 -msgid "Next " -msgstr "Nästa " - -# @ woocommerce -#: templates/single-product-reviews.php:63 -msgid "Add Review" -msgstr "Skriv recension" - -# @ woocommerce -#: templates/single-product-reviews.php:65 -msgid "Add a review" -msgstr "Skriv en recension" - -# @ woocommerce -#: templates/single-product-reviews.php:71 -msgid "" -"There are no reviews yet, would you like to submit yours?" -msgstr "" -"Det finns ingen recension ännu, vill du skriva en?" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:182 -#: admin/woocommerce-admin-users.php:187 templates/myaccount/form-login.php:78 -#: templates/single-product-reviews.php:86 -msgid "Email" -msgstr "E-post" - -# @ woocommerce -#: templates/single-product-reviews.php:89 -msgid "Submit Review" -msgstr "Skicka recension" - -# @ woocommerce -#: templates/single-product-reviews.php:96 -msgid "Rating" -msgstr "Betyg" - -# @ woocommerce -#: templates/single-product-reviews.php:98 -msgid "Perfect" -msgstr "Mycket bra" - -# @ woocommerce -#: templates/single-product-reviews.php:99 -msgid "Good" -msgstr "Bra" - -# @ woocommerce -#: templates/single-product-reviews.php:100 -msgid "Average" -msgstr "Ok" - -# @ woocommerce -#: templates/single-product-reviews.php:101 -msgid "Not that bad" -msgstr "Inte så dålig" - -# @ woocommerce -#: templates/single-product-reviews.php:102 -msgid "Very Poor" -msgstr "Mycket dålig" - -# @ woocommerce -#: templates/cart/mini-cart.php:55 -msgid "No products in the cart." -msgstr "Du har inga produkter i varukorgen." - -# @ woocommerce -#: classes/class-wc-cart.php:869 classes/class-wc-cart.php:883 -#: classes/class-wc-cart.php:891 templates/cart/mini-cart.php:68 -#: woocommerce-functions.php:497 woocommerce.php:1210 -msgid "View Cart →" -msgstr "Visa varukorgen →" - -# @ woocommerce -#: templates/cart/mini-cart.php:69 -msgid "Checkout →" -msgstr "Till kassan →" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:189 -#: classes/widgets/class-wc-widget-cart.php:109 -#: classes/widgets/class-wc-widget-featured-products.php:169 -#: classes/widgets/class-wc-widget-layered-nav.php:352 -#: classes/widgets/class-wc-widget-onsale.php:176 -#: classes/widgets/class-wc-widget-price-filter.php:179 -#: classes/widgets/class-wc-widget-product-categories.php:185 -#: classes/widgets/class-wc-widget-product-search.php:91 -#: classes/widgets/class-wc-widget-product-tag-cloud.php:101 -#: classes/widgets/class-wc-widget-random-products.php:134 -#: classes/widgets/class-wc-widget-recent-products.php:170 -#: classes/widgets/class-wc-widget-recent-reviews.php:158 -#: classes/widgets/class-wc-widget-recently-viewed.php:166 -#: classes/widgets/class-wc-widget-top-rated-products.php:156 -msgid "Title:" -msgstr "Titel:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-featured-products.php:35 -msgid "Display a list of featured products on your site." -msgstr "Visa en lista på alla utvalda produkter i butiken." - -# @ woocommerce -#: classes/widgets/class-wc-widget-featured-products.php:37 -msgid "WooCommerce Featured Products" -msgstr "WooCommerce utvalda produkter" - -# @ woocommerce -#: classes/widgets/class-wc-widget-featured-products.php:75 -msgid "Featured Products" -msgstr "Rekommenderade produkter" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:192 -#: classes/widgets/class-wc-widget-featured-products.php:172 -#: classes/widgets/class-wc-widget-onsale.php:179 -#: classes/widgets/class-wc-widget-random-products.php:139 -#: classes/widgets/class-wc-widget-recent-products.php:173 -#: classes/widgets/class-wc-widget-recent-reviews.php:161 -#: classes/widgets/class-wc-widget-recently-viewed.php:169 -#: classes/widgets/class-wc-widget-top-rated-products.php:159 -msgid "Number of products to show:" -msgstr "Antal produkter att visa:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:31 -msgid "" -"Shows a custom attribute in a widget which lets you narrow down the list of " -"products when viewing product categories." -msgstr "" -"Visar ett eget attribut i en widget som låter dig begränsa listan av " -"produkter i produktkategorier." - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:33 -msgid "WooCommerce Layered Nav" -msgstr "WooCommerce skiktade navigering" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:355 -msgid "Attribute:" -msgstr "Attribut:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:33 -msgid "" -"Shows a price filter slider in a widget which lets you narrow down the list " -"of shown products when viewing product categories." -msgstr "" -"Visa ett reglage för prisfilter i en widget som låter dig begränsa " -"prisspannet på visade produkter i produktkategorier." - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:35 -msgid "WooCommerce Price Filter" -msgstr "WooCommerce Prisfilter" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:162 -msgid "Filter by price" -msgstr "Filtrera på pris" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:33 -msgid "A list or dropdown of product categories." -msgstr "En lista eller rullgardin av produktkategorier" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:35 -msgid "WooCommerce Product Categories" -msgstr "WooCommerce produktkategorier" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:195 -msgid "Show as dropdown" -msgstr "Visa som rullgardin" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:198 -msgid "Show post counts" -msgstr "Visa antal inlägg" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:201 -msgid "Show hierarchy" -msgstr "Visa hirarki" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-search.php:31 -msgid "A Search box for products only." -msgstr "En sökbox enbart för produkter." - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-search.php:33 -msgid "WooCommerce Product Search" -msgstr "WooCommerce produktsök" - -# @ woocommerce -#: woocommerce-template.php:1496 -msgid "Search for:" -msgstr "Sök efter:" - -# @ woocommerce -#: woocommerce-template.php:1497 -msgid "Search for products" -msgstr "Sök efter produkter" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-tag-cloud.php:31 -msgid "Your most used product tags in cloud format." -msgstr "Dina mest använda produktetiketter i molnformat." - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-tag-cloud.php:33 -msgid "WooCommerce Product Tags" -msgstr "WooCommerce produktetiketter" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-products.php:31 -msgid "Display a list of your most recent products on your site." -msgstr "Visa en lista på senaste produkterna på din webbplats." - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-products.php:33 -msgid "WooCommerce Recent Products" -msgstr "WooCommerce senaste produkter" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-products.php:70 -msgid "New Products" -msgstr "Nya produkter" - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:145 -#: classes/widgets/class-wc-widget-recent-products.php:177 -msgid "Show hidden product variations" -msgstr "Visa dolda produktvariationer" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:31 -msgid "Display a list of your most recent reviews on your site." -msgstr "Visa en lista på de senaste recensionerna på din webbplats." - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:45 -#: classes/widgets/class-wc-widget-recent-reviews.php:33 -msgid "WooCommerce Recent Reviews" -msgstr "WooCommerce senaste recensioner" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:71 -msgid "Recent Reviews" -msgstr "Senaste recensionerna" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recently-viewed.php:31 -msgid "Display a list of recently viewed products." -msgstr "Visa en lista på nyligen visade produkter." - -# @ woocommerce -#: classes/widgets/class-wc-widget-recently-viewed.php:33 -msgid "WooCommerce Recently Viewed Products" -msgstr "WC nyligen visade produkter" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recently-viewed.php:76 -msgid "Recently viewed" -msgstr "Nyligen visade" - -# @ woocommerce -#: classes/widgets/class-wc-widget-top-rated-products.php:33 -msgid "Display a list of top rated products on your site." -msgstr "Visa en lista med de produkter som har högst betyg på din webbplats." - -# @ woocommerce -#: classes/widgets/class-wc-widget-top-rated-products.php:35 -msgid "WooCommerce Top Rated Products" -msgstr "WC produkter med högst betyg" - -# @ woocommerce -#: classes/widgets/class-wc-widget-top-rated-products.php:72 -msgid "Top Rated Products" -msgstr "Produkter med bäst betyg" - -# @ woocommerce -#: woocommerce-core-functions.php:1938 -msgid "Customer" -msgstr "Kund" - -# @ woocommerce -#: woocommerce-core-functions.php:1945 -msgid "Shop Manager" -msgstr "Butiksägare" - -# @ woocommerce -#: woocommerce-functions.php:1330 -msgid "You have taken too long. Please go back and refresh the page." -msgstr "Det tog för lång tid. Gå tillbaks och ladda om sidan." - -# @ woocommerce -#: woocommerce-functions.php:1333 -msgid "Please rate the product." -msgstr "Recensera produkten" - -# @ woocommerce -#: templates/single-product/review.php:33 -msgid "Your comment is awaiting approval" -msgstr "Dinn kommentar väntar på godkännande" - -# @ woocommerce -#: woocommerce-ajax.php:119 -msgid "Sorry, your session has expired." -msgstr "Ledsen, din session har gått ut." - -# @ woocommerce -#: woocommerce-ajax.php:119 -msgid "Return to homepage →" -msgstr "Återgå till startsidan" - -# @ woocommerce -#: woocommerce-functions.php:226 woocommerce-functions.php:271 -msgid "Cart updated." -msgstr "Varukorgen uppdaterad" - -# @ woocommerce -#: woocommerce-functions.php:315 woocommerce-functions.php:373 -msgid "Please choose product options…" -msgstr "Välj produktalternativ…" - -# @ woocommerce -#: woocommerce-functions.php:664 -msgid "Username is required." -msgstr "Användarnamn krävs." - -# @ woocommerce -#: woocommerce-functions.php:666 woocommerce-functions.php:758 -msgid "Password is required." -msgstr "Lösenord krävs." - -# @ woocommerce -#: woocommerce-functions.php:898 -msgid "Order cancelled by customer." -msgstr "Order avbruten av kund." - -# @ woocommerce -#: woocommerce-functions.php:901 -msgid "Your order was cancelled." -msgstr "Din order är avbruten." - -# @ woocommerce -#: woocommerce-functions.php:907 -msgid "" -"Your order is no longer pending and could not be cancelled. Please contact " -"us if you need assistance." -msgstr "Din order är behandlad och kan ej avbrytas. Kontakta oss för hjälp." - -# @ woocommerce -#: classes/class-wc-emails.php:281 -msgid "Product low in stock" -msgstr "Få i lager av denna produkt" - -# @ woocommerce -#: classes/class-wc-emails.php:290 -msgid "is low in stock." -msgstr "är få i lager." - -# @ woocommerce -#: classes/class-wc-emails.php:313 -msgid "Product out of stock" -msgstr "Produkten finns inte i lager" - -# @ woocommerce -#: classes/class-wc-emails.php:322 -msgid "is out of stock." -msgstr "är slut i lager." - -# @ woocommerce -#: classes/class-wc-emails.php:357 -msgid "Product Backorder" -msgstr "Produktbokning" - -# @ woocommerce -#: woocommerce.php:826 -msgid "Search Product Categories" -msgstr "Sök produktkategori" - -# @ woocommerce -#: woocommerce.php:827 -msgid "All Product Categories" -msgstr "Alla produktkategorier" - -# @ woocommerce -#: woocommerce.php:828 -msgid "Parent Product Category" -msgstr "Förälder produktkategori" - -# @ woocommerce -#: woocommerce.php:829 -msgid "Parent Product Category:" -msgstr "Förälder produktkategori:" - -# @ woocommerce -#: woocommerce.php:830 -msgid "Edit Product Category" -msgstr "Redigera produktkategori" - -# @ woocommerce -#: woocommerce.php:831 -msgid "Update Product Category" -msgstr "Uppdatera produktkategori" - -# @ woocommerce -#: woocommerce.php:832 -msgid "Add New Product Category" -msgstr "Lägg till ny produktkategori" - -# @ woocommerce -#: woocommerce.php:833 -msgid "New Product Category Name" -msgstr "Ny produktkategori" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:49 -#: admin/woocommerce-admin-init.php:885 woocommerce.php:786 -msgctxt "slug" -msgid "product-category" -msgstr "produkt-kategori" - -# @ woocommerce -#: woocommerce.php:862 -msgid "Search Product Tags" -msgstr "Sök produktetikett" - -# @ woocommerce -#: woocommerce.php:863 -msgid "All Product Tags" -msgstr "Alla produktetiketter" - -# @ woocommerce -#: woocommerce.php:864 -msgid "Parent Product Tag" -msgstr "Förälder produktetikett" - -# @ woocommerce -#: woocommerce.php:865 -msgid "Parent Product Tag:" -msgstr "Förälder produktetikett:" - -# @ woocommerce -#: woocommerce.php:866 -msgid "Edit Product Tag" -msgstr "Redigera produktetikett" - -# @ woocommerce -#: woocommerce.php:867 -msgid "Update Product Tag" -msgstr "Uppdatera produktetikett" - -# @ woocommerce -#: woocommerce.php:868 -msgid "Add New Product Tag" -msgstr "Lägg till ny produktetikett" - -# @ woocommerce -#: woocommerce.php:869 -msgid "New Product Tag Name" -msgstr "Ny produktetikett" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:50 -#: admin/woocommerce-admin-init.php:898 woocommerce.php:787 -msgctxt "slug" -msgid "product-tag" -msgstr "produkt-etikett" - -# @ woocommerce -#: woocommerce.php:985 -msgid "Add Product" -msgstr "Lägg till produkt" - -# @ woocommerce -#: woocommerce.php:986 -msgid "Add New Product" -msgstr "Lägg till ny produkt" - -# @ woocommerce -#: woocommerce.php:988 -msgid "Edit Product" -msgstr "Redigera produkt" - -# @ woocommerce -#: woocommerce.php:989 -msgid "New Product" -msgstr "Ny produkt" - -# @ woocommerce -#: woocommerce.php:990 woocommerce.php:991 -msgid "View Product" -msgstr "Visa produkt" - -# @ woocommerce -#: woocommerce.php:992 -msgid "Search Products" -msgstr "Sök produkter" - -# @ woocommerce -#: woocommerce.php:993 -msgid "No Products found" -msgstr "Inga produkter hittades" - -# @ woocommerce -#: woocommerce.php:994 -msgid "No Products found in trash" -msgstr "Inga produkter hittades i papperskorgen" - -# @ woocommerce -#: woocommerce.php:997 -msgid "This is where you can add new products to your store." -msgstr "Här kan du lägga till nya produkter i din butik" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -#: woocommerce.php:1020 -msgid "Variations" -msgstr "Varianter" - -# @ woocommerce -#: woocommerce.php:1021 -msgid "Variation" -msgstr "Variant" - -# @ woocommerce -#: woocommerce.php:1023 -msgid "Add New Variation" -msgstr "Lägg till ny variant" - -# @ woocommerce -#: woocommerce.php:1025 -msgid "Edit Variation" -msgstr "Redigera variant" - -# @ woocommerce -#: woocommerce.php:1026 -msgid "New Variation" -msgstr "Ny variant" - -# @ woocommerce -#: woocommerce.php:1027 woocommerce.php:1028 -msgid "View Variation" -msgstr "Visa varianter" - -# @ woocommerce -#: woocommerce.php:1029 -msgid "Search Variations" -msgstr "Sök varianter" - -# @ woocommerce -#: woocommerce.php:1030 -msgid "No Variations found" -msgstr "Inga varianter hittades" - -# @ woocommerce -#: woocommerce.php:1031 -msgid "No Variations found in trash" -msgstr "Inga föräldravarianter hittades i papperskorgen" - -# @ woocommerce -#: woocommerce.php:1032 -msgid "Parent Variation" -msgstr "Föräldravariant" - -# @ woocommerce -#: woocommerce.php:1060 -msgid "Add Order" -msgstr "Lägg till order" - -# @ woocommerce -#: woocommerce.php:1061 -msgid "Add New Order" -msgstr "Lägg till ny order" - -# @ woocommerce -#: woocommerce.php:1063 -msgid "Edit Order" -msgstr "Redigera order" - -# @ woocommerce -#: woocommerce.php:1064 -msgid "New Order" -msgstr "Ny order" - -# @ woocommerce -#: woocommerce.php:1067 -msgid "Search Orders" -msgstr "Sök ordrar" - -# @ woocommerce -#: woocommerce.php:1068 -msgid "No Orders found" -msgstr "Inga ordrar hittades" - -# @ woocommerce -#: woocommerce.php:1069 -msgid "No Orders found in trash" -msgstr "Inga ordrar hittades i papperskorgen" - -# @ woocommerce -#: woocommerce.php:1070 -msgid "Parent Orders" -msgstr "Föräldraordrar" - -# @ woocommerce -#: woocommerce.php:1073 -msgid "This is where store orders are stored." -msgstr "Här lagras butiksordrar" - -# @ woocommerce -#: admin/settings/settings-init.php:105 admin/woocommerce-admin-content.php:61 -#: admin/woocommerce-admin-content.php:76 -#: admin/woocommerce-admin-reports.php:63 woocommerce.php:1095 -msgid "Coupons" -msgstr "Rabattkuponger" - -# @ woocommerce -#: woocommerce.php:1098 -msgid "Add Coupon" -msgstr "Lägg till rabattkupong" - -# @ woocommerce -#: woocommerce.php:1099 -msgid "Add New Coupon" -msgstr "Lägg till ny rabattkupong" - -# @ woocommerce -#: woocommerce.php:1101 -msgid "Edit Coupon" -msgstr "Redigera rabattkupong" - -# @ woocommerce -#: woocommerce.php:1102 -msgid "New Coupon" -msgstr "Ny rabattkupong" - -# @ woocommerce -#: woocommerce.php:1103 -msgid "View Coupons" -msgstr "Visa rabattkuponger" - -# @ woocommerce -#: woocommerce.php:1104 -msgid "View Coupon" -msgstr "Visa rabattkupong" - -# @ woocommerce -#: woocommerce.php:1105 -msgid "Search Coupons" -msgstr "Sök efter rabattkuponger" - -# @ woocommerce -#: woocommerce.php:1106 -msgid "No Coupons found" -msgstr "Inga rabattkuponger hittades" - -# @ woocommerce -#: woocommerce.php:1107 -msgid "No Coupons found in trash" -msgstr "Inga rabattkuponger hittades i papperskorgen" - -# @ woocommerce -#: woocommerce.php:1108 -msgid "Parent Coupon" -msgstr "Föräldrakupong" - -# @ woocommerce -#: woocommerce.php:1110 -msgid "" -"This is where you can add new coupons that customers can use in your store." -msgstr "" -"Här kan du lägga till nya rabattkuponger som kunderna kan använda i butiken." - -# @ woocommerce -#: templates/loop/sale-flash.php:16 templates/single-product/sale-flash.php:16 -msgid "Sale!" -msgstr "Rea!" - -# @ woocommerce -#: templates/loop/add-to-cart.php:17 templates/loop/add-to-cart.php:41 -#: templates/loop/add-to-cart.php:50 -msgid "Read More" -msgstr "Läs mer" - -# @ woocommerce -#: templates/loop/add-to-cart.php:33 -msgid "Select options" -msgstr "Välj alternativ" - -# @ woocommerce -#: templates/loop/add-to-cart.php:37 -msgid "View options" -msgstr "Visa alternativ" - -# @ woocommerce -#: admin/settings/settings-init.php:490 classes/class-wc-shortcodes.php:571 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:274 -#: templates/loop/add-to-cart.php:46 -#: templates/single-product/add-to-cart/grouped.php:45 -#: templates/single-product/add-to-cart/grouped.php:77 -#: templates/single-product/add-to-cart/simple.php:42 -#: templates/single-product/add-to-cart/variable.php:83 -msgid "Add to cart" -msgstr "Lägg i varukorg" - -# @ woocommerce -#: templates/single-product/add-to-cart/variable.php:24 -msgid "Choose an option" -msgstr "Välj ett alternativ" - -# @ woocommerce -#: templates/checkout/form-shipping.php:59 -#: templates/single-product/tabs/additional-information.php:14 -#: woocommerce-template.php:759 -msgid "Additional Information" -msgstr "Mer information" - -# @ woocommerce -#: templates/single-product/tabs/description.php:14 -msgid "Product Description" -msgstr "Produktbeskrivning" - -# @ woocommerce -#: templates/single-product/related.php:36 -msgid "Related Products" -msgstr "Relaterade produkter" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:22 -msgid "Calculate Shipping" -msgstr "Beräkna frakt" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:85 -msgid "Update Totals" -msgstr "Uppdatera total" - -# @ woocommerce -#: templates/cart/totals.php:22 -msgid "Cart Totals" -msgstr "Varukorg totalt" - -# @ woocommerce -#: templates/myaccount/form-login.php:26 templates/myaccount/form-login.php:40 -#: templates/shop/form-login.php:31 -msgid "Login" -msgstr "Logga in" - -# @ woocommerce -#: templates/myaccount/form-login.php:50 templates/shop/form-login.php:33 -msgid "Lost Password?" -msgstr "Glömt lösenordet?" - -# @ woocommerce -#: templates/checkout/form-login.php:17 -msgid "Click here to login" -msgstr "Klicka här för att logga in" - -# @ woocommerce -#: woocommerce-template.php:993 -msgctxt "breadcrumb" -msgid "Home" -msgstr "Hem" - -# @ woocommerce -#: templates/shop/breadcrumb.php:63 -msgid "Products tagged “" -msgstr "Produkter taggade “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:91 templates/shop/breadcrumb.php:188 -msgid "Search results for “" -msgstr "Sökresultat för “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:146 -msgid "Error 404" -msgstr "Fel 404" - -# @ woocommerce -#: templates/shop/breadcrumb.php:192 -msgid "Posts tagged “" -msgstr "Inläggsetiketter “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:202 -msgid "Page" -msgstr "Sida" - -# @ woocommerce -#: templates/single-product/up-sells.php:39 -msgid "You may also like…" -msgstr "Du gillar kanske också…" - -# @ woocommerce -#: templates/cart/cross-sells.php:38 -msgid "You may be interested in…" -msgstr "Du kanske är intresserad av…" - -# @ woocommerce -#: admin/settings/settings-init.php:95 woocommerce-template.php:200 -msgid "" -"This is a demo store for testing purposes — no orders shall be " -"fulfilled." -msgstr "" -"Det här är en demobutik för testning — Inga beställningar kan göras." - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:72 -msgid "" -"Let the customer know the payee and where they should be sending the cheque " -"to and that their order won't be shipping until you receive it." -msgstr "" -"Låt kunden veta vilken betalningsmottagaren är och vart de ska skicka " -"checken. Tala också om att kundens order inte levereras innan du mottagit " -"betalningen." - -# @ woocommerce -#: classes/class-wc-countries.php:965 -msgid "State" -msgstr "Län" - -# @ woocommerce -#: templates/checkout/thankyou.php:22 -msgid "Please attempt your purchase again or go to your account page." -msgstr "" -"Var vänlig och försök genomföra ditt köp igen eller go till ditt konto." - -# @ woocommerce -#: templates/checkout/thankyou.php:24 -msgid "Please attempt your purchase again." -msgstr "Var vänlig och försök genomföra ditt köp igen." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:356 -msgid "Configure terms" -msgstr "Konfigurera villkor" - -# @ woocommerce -#: woocommerce.php:948 -msgid "All" -msgstr "Alla" - -# @ woocommerce -#: woocommerce.php:949 woocommerce.php:950 -msgid "Parent" -msgstr "Förälder" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:277 woocommerce.php:952 -msgid "Update" -msgstr "Uppdatera" - -# @ woocommerce -#: woocommerce.php:953 -msgid "Add New" -msgstr "Lägg till ny" - -# @ woocommerce -#: woocommerce.php:954 -msgid "New" -msgstr "Ny" - -# @ woocommerce -#: admin/post-types/product.php:373 -msgid "Show all product types" -msgstr "Visa alla produkttyper" - -# @ woocommerce -#: admin/post-types/product.php:399 -msgid "Show all sub-types" -msgstr "Visa alla undertyper" - -# @ woocommerce -#: admin/post-types/shop_order.php:51 -#: admin/post-types/writepanels/writepanel-order_data.php:386 -#: admin/post-types/writepanels/writepanel-order_data.php:433 -msgid "Actions" -msgstr "Händelser" - -# @ woocommerce -#: admin/post-types/shop_order.php:165 -msgid "Complete" -msgstr "Genomförd" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:801 -msgid "Hard Crop" -msgstr "Hård beskärning" - -# @ woocommerce -#: admin/settings/settings-init.php:47 -msgid "" -"This controls what currency prices are listed at in the catalog and which " -"currency gateways will take payments in." -msgstr "" -"Det här kontrollerar vilken valuta priser är listade med i produktkatalogen " -"och vilken förmedlingsnod som ska användas för att hantera betalningar." - -# @ woocommerce -#: admin/settings/settings-init.php:18 -msgid "Localisation" -msgstr "Språk" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:29 -msgid "ShareThis" -msgstr "ShareThis" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:64 -#, php-format -msgid "" -"Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons on " -"product pages." -msgstr "" -"Uppge ditt %1$sShareThis publisher ID%2$s för att visa sociala " -"delningsknappar på produktsidor." - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:26 -msgid "Google Analytics" -msgstr "Google Analytics" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:75 -msgid "Tracking code" -msgstr "Spårningskod" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:76 -msgid "" -"Add tracking code to your site's footer. You don't need to enable this if " -"using a 3rd party analytics plugin." -msgstr "" -"Lägg till spårningskod till din webbplats sidfot. Du behöver inte använda " -"detta om du använder tillägg för analytics från tredje-part." - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:82 -msgid "Add eCommerce tracking code to the thankyou page" -msgstr "Lägg till spårningskod för e-handel på tacksidan." - -# @ woocommerce -#: admin/settings/settings-init.php:560 -msgid "Dimensions Unit" -msgstr "Enhet för dimensioner" - -# @ woocommerce -#: admin/settings/settings-init.php:561 -msgid "This controls what unit you will define lengths in." -msgstr "Det här kontrollerar vilken längdenhet som används." - -# @ woocommerce -#: admin/settings/settings-init.php:568 -msgid "cm" -msgstr "cm" - -# @ woocommerce -#: admin/settings/settings-init.php:570 -msgid "in" -msgstr "tum" - -# @ woocommerce -#: admin/settings/settings-init.php:671 -msgid "Catalog Images" -msgstr "Katalogbilder" - -# @ woocommerce -#: admin/settings/settings-init.php:672 -msgid "This size is usually used in product listings" -msgstr "Den här storleken används normalt i produktlistningar." - -# @ woocommerce -#: admin/settings/settings-init.php:685 -msgid "Single Product Image" -msgstr "Ensam produktbild" - -# @ woocommerce -#: admin/settings/settings-init.php:686 -msgid "This is the size used by the main image on the product page." -msgstr "Den här storleken används av huvudbilden på produktsidan." - -# @ woocommerce -#: admin/settings/settings-init.php:699 -msgid "Product Thumbnails" -msgstr "Tumnaglar för produkt" - -# @ woocommerce -#: admin/settings/settings-init.php:700 -msgid "" -"This size is usually used for the gallery of images on the product page." -msgstr "Den här storleken används normalt till galleribilder på produktsidan." - -# @ woocommerce -#: admin/settings/settings-init.php:827 -msgid "Enable shipping" -msgstr "Aktivera frakt" - -# @ woocommerce -#: admin/settings/settings-init.php:1012 -msgid "Email Sender Options" -msgstr "Avsändare för e-post" - -# @ woocommerce -#: admin/settings/settings-init.php:1041 -#, php-format -msgid "" -"Enter a URL to an image you want to show in the email's header. Upload your " -"image using the media uploader." -msgstr "" -"Skriv in sökvägen till bilden du vill använda i sidhuvudet. Ladda upp din " -"bild genom att använda mediauppladdaren." - -# @ woocommerce -#: admin/settings/settings-init.php:1050 -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "Texten visas i sidfoten för e-post från WooCommerce." - -# @ woocommerce -#: admin/settings/settings-init.php:1059 -msgid "" -"The base colour for WooCommerce email templates. Default #557da1." -msgstr "" -"Det här är basfärgen för e-postmallarna i WooCommerce. Standard " -"#557da1." - -# @ woocommerce -#: admin/settings/settings-init.php:1077 -msgid "The main body background colour. Default #fdfdfd." -msgstr "Bakgrundsfärgen för innehållet. Standard #fdfdfd." - -# @ woocommerce -#: admin/settings/settings-init.php:1086 -msgid "The main body text colour. Default #505050." -msgstr "Textfärgen för innhållstexten. Standard #505050." - -# @ woocommerce -#: admin/includes/notice-install.php:7 -msgid "Skip setup" -msgstr "Hoppa över konfiguration" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:51 -#: admin/woocommerce-admin-settings.php:189 -msgid "Emails" -msgstr "E-post" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:34 -#: admin/woocommerce-admin-taxonomies.php:129 -msgid "Thumbnail" -msgstr "Tumnagel" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:38 -#: admin/woocommerce-admin-taxonomies.php:134 -msgid "Upload/Add image" -msgstr "Ladda upp/lägg till bild" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:39 -#: admin/woocommerce-admin-taxonomies.php:135 -msgid "Remove image" -msgstr "Ta bort bild" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:523 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:524 -msgid "0.00" -msgstr "0.00" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations for variable products are defined here." -msgstr "Varianter för variabla produkter definieras här." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:81 -msgid "Prices" -msgstr "Priser" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:82 -msgid "Sale prices" -msgstr "Reapriser" - -# @ woocommerce -#: admin/post-types/product.php:94 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:83 -#: admin/woocommerce-admin-content.php:63 -#: admin/woocommerce-admin-reports.php:90 -msgid "Stock" -msgstr "Lager" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:20 -msgid "Any" -msgstr "Vilken som helst" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:52 -msgid "" -"Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "" -"Uppge ett artikelnummer för den här varianten eller lämna blankt för att " -"använda förälderns artikelnummer." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:96 -msgid "" -"Enter a weight for this variation or leave blank to use the parent product " -"weight." -msgstr "" -"Uppge en vikt för den här varianten eller lämna blankt för att använda " -"förälderns vikt." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:143 -msgid "Upload" -msgstr "Ladda upp" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:148 -msgid "Download Limit:" -msgstr "Gräns för nedladdning:" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:19 -#: admin/post-types/writepanels/variation-admin-html.php:149 -#: admin/post-types/writepanels/variation-admin-html.php:157 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Unlimited" -msgstr "Obegränsad" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:210 -msgid "No default" -msgstr "Inte standard" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:563 -msgid "Variable product" -msgstr "Variabel produkt" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Product URL" -msgstr "URL till produkt" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Enter the external URL to the product." -msgstr "Uppge en extern URL till produkten." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:284 -#: templates/single-product/product-attributes.php:37 -msgid "Dimensions" -msgstr "Dimensioner" - -# @ woocommerce -#: admin/post-types/product.php:601 admin/post-types/product.php:879 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:85 -#: admin/post-types/writepanels/writepanel-product_data.php:286 -msgid "Length" -msgstr "Längd" - -# @ woocommerce -#: admin/post-types/product.php:385 -#: admin/post-types/writepanels/writepanel-product_data.php:38 -msgid "Simple product" -msgstr "Enkel produkt" - -# @ woocommerce -#: admin/post-types/product.php:381 -#: admin/post-types/writepanels/writepanel-product_data.php:39 -msgid "Grouped product" -msgstr "Grupperad produkt" - -# @ woocommerce -#: admin/post-types/product.php:383 -#: admin/post-types/writepanels/writepanel-product_data.php:40 -msgid "External/Affiliate product" -msgstr "Extern/Affiliateprodukt" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:174 -msgid "" -"Enable this option if a product is not shipped or there is no shipping cost" -msgstr "" -"Aktivera det här alternativet om en produkt inte kan skickas eller om det " -"inte finns någon fraktkostnad" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:172 -msgid "" -"Enable this option if access is given to a downloadable file upon purchase " -"of a product" -msgstr "" -"Aktivera det här alternativet om tillgång till nedladdningsbar fil ges vid " -"köp av produkt" - -# @ woocommerce -#: classes/class-wc-cart.php:1814 -msgid "via" -msgstr "via" - -# @ woocommerce -#: classes/class-wc-countries.php:432 -msgid "the" -msgstr " " - -# @ woocommerce -#: classes/class-wc-countries.php:444 -msgid "VAT" -msgstr "Moms" - -# @ woocommerce -#: classes/class-wc-countries.php:470 -msgid "(ex. VAT)" -msgstr "(exkl. moms)" - -# @ woocommerce -#: woocommerce.php:1693 -msgid "Product % Discount" -msgstr "% Produktrabatt" - -# @ woocommerce -#: i18n/states/US.php:13 -msgid "Alabama" -msgstr "Alabama" - -# @ woocommerce -#: i18n/states/US.php:14 -msgid "Alaska" -msgstr "Alaska" - -# @ woocommerce -#: templates/order/tracking.php:20 -msgid "and was completed" -msgstr "och genomfördes" - -# @ woocommerce -#: templates/checkout/form-checkout.php:20 -msgid "You must be logged in to checkout." -msgstr "Du måste vara inloggad för att kunna checka ut." - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:192 -msgid "" -"Thank you, we are now processing your order. Your order's details are below." -msgstr "" -"Tack! Vi har tagit emot din order. Dina orderuppgifter ser du här nedanför." - -# @ woocommerce -#: templates/single-product-reviews.php:69 -msgid "Be the first to review" -msgstr "Bli den första att skriva en recension" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:31 -msgid "Display a list of your best selling products on your site." -msgstr "Visa en lista på de bäst säljande produkterna i din butik." - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:33 -msgid "WooCommerce Best Sellers" -msgstr "WooCommerce Bästsäljare" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:71 -msgid "Best Sellers" -msgstr "Bästsäljare" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:219 -msgid "Logout" -msgstr "Logga ut" - -# @ woocommerce -#: classes/widgets/class-wc-widget-onsale.php:31 -msgid "Display a list of your on-sale products on your site." -msgstr "Visa en lista på dina reaprodukter i butiken." - -# @ woocommerce -#: classes/widgets/class-wc-widget-onsale.php:33 -msgid "WooCommerce On-sale" -msgstr "WooCommerce Rea" - -# @ woocommerce -#: classes/widgets/class-wc-widget-onsale.php:70 -msgid "On Sale" -msgstr "Rea" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:138 -msgid "Filter" -msgstr "Filter" - -# @ woocommerce -#: woocommerce-functions.php:1276 -msgid "New products" -msgstr "Nya produkter" - -# @ woocommerce -#: woocommerce-functions.php:1284 -#, php-format -msgid "New products added to %s" -msgstr "Nya produkter tillagda i %s" - -# @ woocommerce -#: woocommerce-functions.php:1292 -#, php-format -msgid "New products tagged %s" -msgstr "Nya produkters etiktetter %s" - -# @ woocommerce -#: classes/class-wc-product-external.php:56 -msgid "Buy product" -msgstr "Köp produkt" - -# @ woocommerce -#: templates/cart/shipping-methods.php:76 templates/cart/totals.php:147 -#, php-format -msgid "" -"Sorry, it seems that there are no available shipping methods for your " -"location (%s)." -msgstr "Det ser inte ut som det finns några fraktalternativ för din ort. (%s)." - -# @ woocommerce -#: templates/cart/shipping-methods.php:76 templates/cart/totals.php:147 -msgid "" -"If you require assistance or wish to make alternate arrangements please " -"contact us." -msgstr "Om du behöver hjälp eller få veta alternativ, kontakta oss." - -# @ woocommerce -#: templates/shop/breadcrumb.php:197 -msgid "Author:" -msgstr "Författare:" - -# @ woocommerce -#: admin/post-types/shop_order.php:98 -msgid "made by" -msgstr "skapad av" - -# @ woocommerce -#: admin/post-types/shop_order.php:114 admin/post-types/shop_order.php:123 -msgid "Via" -msgstr "Via" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "Apply before tax" -msgstr "Applicera innan skatt" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "Enable free shipping" -msgstr "Aktivera fri frakt" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:195 -msgid "No billing address set." -msgstr "Ingen debiteringsadress angiven." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "No shipping address set." -msgstr "Ingen leveransadress angiven." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:339 -msgid "Item" -msgstr "Artikel" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save/update the order" -msgstr "Spara/uppdatera ordern" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:498 -msgid "Discounts" -msgstr "Rabatter" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:502 -#: classes/class-wc-order.php:955 -msgid "Cart Discount:" -msgstr "Total Rabatt:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:510 -#: classes/class-wc-order.php:997 -msgid "Order Discount:" -msgstr "Orderns Rabatt:" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:20 -#: admin/post-types/writepanels/writepanel-order_data.php:638 -msgid "Shipping Tax:" -msgstr "Fraktmoms:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:597 -msgid "Tax Rows" -msgstr "Momsrader" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:656 -#: classes/class-wc-order.php:1002 -msgid "Order Total:" -msgstr "Totalt för ordern:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:664 -msgid "Payment Method:" -msgstr "Betalningsmetod:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "" -"Add a note for your reference, or add a customer note (the user will be " -"notified)." -msgstr "" -"Lägg till en anteckning för egen referens eller lägg till en anteckning för " -"kunden (kommer notifieras)" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:104 -msgid "Dimensions (L×W×H)" -msgstr "Dimensioner (L×B×H)" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:76 -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Schedule" -msgstr "Schemalägg" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:101 -msgid "Product name" -msgstr "Produktnamn" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:237 -#: admin/woocommerce-admin-attributes.php:376 -msgid "Name for the attribute (shown on the front-end)." -msgstr "Namn för attributen (som det visas för kunderna)." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:246 -#: admin/woocommerce-admin-attributes.php:382 -msgid "" -"Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "" -"Unik url-kod för att referera till attributen; måste vara kortare än 28 " -"tecken." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:88 -msgid "WooCommerce Settings" -msgstr "WooCommerce-inställningar" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:448 -msgid "" -"Load the customer's billing information? This will remove any currently " -"entered billing information." -msgstr "" -"Ladda kundens debiteringsinformation? Detta kommer ersätta nuvarande angiven " -"information." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:449 -msgid "" -"Load the customer's shipping information? This will remove any currently " -"entered shipping information." -msgstr "" -"Ladda kundens leveransinformation? Detta kommer ersätta all nuvarande " -"angiven leveransinformation." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:453 -msgid "No customer selected" -msgstr "Ingen kund vald" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:32 -msgid "Sales by day" -msgstr "Försäljningar per dag" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:37 -msgid "Sales by month" -msgstr "Försäljningar per månad" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1110 -msgid "Product no longer exists" -msgstr "Produkten existerar inte längre" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:849 -msgid "Choose a country…" -msgstr "Välj land…" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:869 -msgid "Choose countries…" -msgstr "Välj länder…" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:228 -msgid "Tax Rates" -msgstr "Momssatser" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:44 -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "Ange momssats (procent) med upp till 4 decimaler" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:50 -#: admin/settings/settings-tax-rates.php:217 -msgid "Compound" -msgstr "Sammansatt skattesats" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:50 -msgid "" -"Choose whether or not this is a compound rate. Compound tax rates are " -"applied on top of other tax rates." -msgstr "" -"Ange om detta är en sammansatt skattesats. Sammansatta skattesatser " -"appliceras ovanpå andra skattesatser." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:52 -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "Välj ifall denna skattesats även gäller frakten" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:562 -msgid "Delete the selected rates?" -msgstr "Radera valda skattesatser?" - -# @ woocommerce -#: admin/settings/settings-init.php:175 -msgid "Customer Accounts" -msgstr "Kundkonton" - -# @ woocommerce -#: admin/settings/settings-init.php:184 -msgid "Clear cart when logging out" -msgstr "Rensa varukorg när användare loggar ut" - -# @ woocommerce -#: admin/settings/settings-init.php:176 -msgid "Prevent customers from accessing WordPress admin" -msgstr "Förhindra kunder att nå WordPress administrationspanel" - -# @ woocommerce -#: admin/settings/settings-init.php:204 -msgid "Styling" -msgstr "Utseende" - -# @ woocommerce -#: admin/settings/settings-init.php:216 -msgid "Scripts" -msgstr "Script" - -# @ woocommerce -#: admin/settings/settings-init.php:240 -msgid "" -"Forcing downloads will keep URLs hidden, but some servers may serve large " -"files unreliably. If supported, X-Accel-Redirect/ X-" -"Sendfile can be used to serve downloads instead (server requires " -"mod_xsendfile)." -msgstr "" -"Tvingad nedladdning kommer dölja dina urler men vissa servrar kan hantera " -"stora filer otillräckligt. Om det finns stöd för det kan X-Accel-" -"Redirect/ X-Sendfile användas för att ladda ner filer " -"istället (servern behöver ha mod_xsendfile)." - -# @ woocommerce -#: admin/settings/settings-init.php:248 -msgid "Force Downloads" -msgstr "Tvinga nedladdning" - -# @ woocommerce -#: admin/settings/settings-init.php:249 -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "X-Accel-Redirect/X-Sendfile" - -# @ woocommerce -#: admin/settings/settings-init.php:250 -msgid "Redirect only" -msgstr "Endast omdirigering" - -# @ woocommerce -#: admin/settings/settings-init.php:668 -#, php-format -msgid "" -"These settings affect the actual dimensions of images in your catalog - the " -"display on the front-end will still be affected by CSS styles. After " -"changing these settings you may need to regenerate your " -"thumbnails." -msgstr "" -"Dessa inställningar påverkar dimensionerna på bilderna i katalogen - " -"visningen av bilderna för kunderna kommer fortfarande påverkas av CSS-" -"stilmallar. Efter att du ändrar detta kan du behöva regenerera dina miniatyrbilder" - -# @ woocommerce -#: admin/settings/settings-init.php:874 -msgid "Ship to billing address by default" -msgstr "Skicka till debiteringsadress som standard" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:30 -msgid "" -"ShareThis offers a sharing widget which will allow customers to share links " -"to products with their friends." -msgstr "" -"ShareThis erbjuder en widget för delning som gör så att kunder kan dela " -"länkar till produkter med sina vänner." - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:27 -msgid "" -"Google Analytics is a free service offered by Google that generates detailed " -"statistics about the visitors to a website." -msgstr "" -"Google Analytics är en gratis tjänst för att visa statistik om besökare på " -"en hemsida." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:52 -#: admin/woocommerce-admin-settings.php:190 -msgid "Integration" -msgstr "Integration" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:30 -msgid "Shipping Method" -msgstr "Fraktmetod" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:46 -msgid "Method ID" -msgstr "Metod ID" - -# @ woocommerce -#: admin/settings/settings-payment-gateways.php:27 -#: admin/settings/settings-shipping-methods.php:29 -#: admin/woocommerce-admin-init.php:757 -#: admin/woocommerce-admin-taxonomies.php:27 -#: admin/woocommerce-admin-taxonomies.php:121 -msgid "Default" -msgstr "Standard" - -# @ woocommerce -#: admin/settings/settings-payment-gateways.php:28 -msgid "Gateway" -msgstr "Förmedlingsnod" - -# @ woocommerce -#: admin/settings/settings-payment-gateways.php:45 -msgid "Gateway ID" -msgstr "Förmedlingsnod ID" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:222 -msgid "" -"Product categories for your store can be managed here. To change the order " -"of categories on the front-end you can drag and drop to sort them. To see " -"more categories listed click the \"screen options\" link at the top of the " -"page." -msgstr "" -"Produktkategorier för din affär kan hanteras här. För att ändra ordning av " -"visningen av kategorierna för kunden kan du dra och släppa för att sortera. " -"För att se fler kategorier klicka på \"panelinställningar\" längst upp på " -"sidan." - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:237 -msgid "" -"Shipping classes can be used to group products of similar type. These groups " -"can then be used by certain shipping methods to provide different rates to " -"different products." -msgstr "" -"Fraktklasser kan användas för att gruppera likartade produkter. Dessa " -"grupper kan sen användas av olika fraktmetoder för att ge olika lösningar/" -"prisförlsag för frakt." - -# @ woocommerce -#: admin/woocommerce-admin-users.php:28 -msgid "Paying Customer?" -msgstr "Betalande kund?" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:147 admin/woocommerce-admin-users.php:196 -msgid "First name" -msgstr "Förnamn" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:151 admin/woocommerce-admin-users.php:200 -msgid "Last name" -msgstr "Efternamn" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:183 -msgid "Telephone" -msgstr "Telefon" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:225 -msgid "State/County or state code" -msgstr "Stat/kommun eller statens kod" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:180 admin/woocommerce-admin-users.php:229 -msgid "2 letter Country code" -msgstr "Landskod (2 bokstäver)" - -# @ woocommerce -#: classes/class-wc-checkout.php:440 woocommerce-functions.php:1698 -msgid "is a required field." -msgstr "är ett obligatoriskt fält" - -# @ woocommerce -#: classes/class-wc-checkout.php:482 -msgid "is not a valid number." -msgstr "är inte ett giltigt nummer" - -# @ woocommerce -#: classes/class-wc-checkout.php:489 -msgid "is not a valid email address." -msgstr "är inte en giltig e-postadress." - -# @ woocommerce -#: classes/class-wc-countries.php:134 -msgid "Hong Kong" -msgstr "Hong Kong" - -# @ woocommerce -#: classes/class-wc-countries.php:238 -msgid "South Georgia/Sandwich Islands" -msgstr "Sydgeorgien och Sydsandwichöarna" - -# @ woocommerce -#: i18n/states/US.php:71 -msgid "US Minor Outlying Islands" -msgstr "Förenta staternas mindre öar i Oceanien och Västindien" - -# @ woocommerce -#: i18n/states/BR.php:16 -msgid "Amazonas" -msgstr "Amazonas regnskog" - -# @ woocommerce -#: i18n/states/BR.php:13 -msgid "Acre" -msgstr "Acre" - -# @ woocommerce -#: i18n/states/BR.php:14 -msgid "Alagoas" -msgstr "Alagoas (Brasilien)" - -# @ woocommerce -#: i18n/states/BR.php:15 -msgid "Amapá" -msgstr "Amapá" - -# @ woocommerce -#: i18n/states/BR.php:18 -msgid "Ceará" -msgstr "Ceará" - -# @ woocommerce -#: i18n/states/BR.php:22 -msgid "Maranhão" -msgstr "Maranhão" - -# @ woocommerce -#: i18n/states/BR.php:28 -msgid "Paraná" -msgstr "Paraná" - -# @ woocommerce -#: i18n/states/BR.php:29 -msgid "Pernambuco" -msgstr "Pernambuco" - -# @ woocommerce -#: i18n/states/BR.php:30 -msgid "Piauí" -msgstr "Piauí" - -# @ woocommerce -#: i18n/states/BR.php:34 -msgid "Rondônia" -msgstr "Rondônia" - -# @ woocommerce -#: i18n/states/BR.php:35 -msgid "Roraima" -msgstr "Roraima" - -# @ woocommerce -#: i18n/states/BR.php:38 -msgid "Sergipe" -msgstr "Sergipe" - -# @ woocommerce -#: i18n/states/BR.php:39 -msgid "Tocantins" -msgstr "Tocantins" - -# @ woocommerce -#: i18n/states/BR.php:26 -msgid "Pará" -msgstr "Pará" - -# @ woocommerce -#: i18n/states/BR.php:17 -msgid "Bahia" -msgstr "Bahia" - -# @ woocommerce -#: i18n/states/BR.php:21 -msgid "Goiás" -msgstr "Goiás" - -# @ woocommerce -#: i18n/states/HK.php:13 -msgid "Hong Kong Island" -msgstr "Hongkongön" - -# @ woocommerce -#: i18n/states/HK.php:15 -msgid "New Territories" -msgstr "New Territories" - -# @ woocommerce -#: classes/class-wc-countries.php:774 classes/class-wc-countries.php:784 -#: classes/class-wc-countries.php:804 classes/class-wc-countries.php:859 -#: classes/class-wc-countries.php:883 classes/class-wc-countries.php:933 -#: classes/class-wc-countries.php:957 classes/class-wc-countries.php:998 -msgid "Province" -msgstr "Provins" - -# @ woocommerce -#: classes/class-wc-countries.php:799 classes/class-wc-countries.php:939 -msgid "Municipality" -msgstr "Kommun" - -# @ woocommerce -#: classes/class-wc-countries.php:849 -msgid "Region" -msgstr "Landskap" - -# @ woocommerce -#: classes/class-wc-countries.php:962 -msgid "Zip" -msgstr "Postkod" - -# @ woocommerce -#: classes/class-wc-countries.php:973 -msgid "County" -msgstr "Land" - -# @ woocommerce -#: classes/class-wc-countries.php:694 -msgid "Company Name" -msgstr "Företagsnamn" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:104 -msgid "Gateway Disabled" -msgstr "Förmedlingsnod inaktiverad" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:104 -msgid "PayPal does not support your store currency." -msgstr "PayPal saknar stöd för din butiks valuta." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:699 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:717 -msgid "Order refunded/reversed" -msgstr "Order återbetalas/återköps" - -# @ woocommerce -#: classes/class-wc-order.php:949 -msgid "Cart Subtotal:" -msgstr "Kundvagn delsumma:" - -# @ woocommerce -#: templates/emails/email-order-items.php:49 -msgid "Download:" -msgstr "Ladda ner:" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:871 -msgctxt "min_price" -msgid "From:" -msgstr "fran:" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:25 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:85 -msgid "Flat Rate" -msgstr "Fast pris" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:145 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:94 -msgid "Per Order - charge shipping for the entire order as a whole" -msgstr "Per order - ta betalt för frakt för hela ordern tillsammans" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:146 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:95 -msgid "Per Item - charge shipping for each item individually" -msgstr "Per artikel - ta betalt för frakt för varje enskild artikel" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:147 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:96 -msgid "Per Class - charge shipping for each shipping class in an order" -msgstr "Per fraktklass - ta betalt för frakt för varje fraktklass i ordern" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:485 -#: woocommerce.php:891 -msgid "Shipping Class" -msgstr "Fraktklass" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:486 -msgid "Cost, excluding tax." -msgstr "Kostnad, exkl. moms." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:487 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -msgstr "Kostnad exkl. moms. Ange ett värde ex. 35 eller procent ex. 5%." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:518 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:548 -msgid "Select a class…" -msgstr "Välj en klass…" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:36 -msgid "A note has been added to your order" -msgstr "En anteckning har skapats för din order" - -# @ woocommerce -#: i18n/strings.php:16 -msgid "pending" -msgstr "avvaktande" - -# @ woocommerce -#: i18n/strings.php:17 -msgid "failed" -msgstr "misslyckades" - -# @ woocommerce -#: i18n/strings.php:18 -msgid "on-hold" -msgstr "väntande" - -# @ woocommerce -#: i18n/strings.php:19 -msgid "processing" -msgstr "processar" - -# @ woocommerce -#: i18n/strings.php:20 -msgid "completed" -msgstr "genomfört" - -# @ woocommerce -#: i18n/strings.php:21 -msgid "refunded" -msgstr "återbetalad" - -# @ woocommerce -#: i18n/strings.php:22 -msgid "cancelled" -msgstr "avbruten" - -# @ woocommerce -#: templates/cart/cart.php:134 -msgid "Update Cart" -msgstr "Uppdatera kundvagn" - -# @ woocommerce -#: templates/cart/totals.php:28 templates/checkout/review-order.php:27 -msgid "Cart Subtotal" -msgstr "Kundvagn delsumma" - -# @ woocommerce -#: templates/cart/totals.php:35 templates/cart/totals.php:83 -msgid "[Remove]" -msgstr "[Ta bort]" - -# @ woocommerce -#: templates/cart/totals.php:83 templates/checkout/review-order.php:82 -msgid "Order Discount" -msgstr "Rabatt för order" - -# @ woocommerce -#: templates/cart/totals.php:123 -#, php-format -msgid "" -"Note: Shipping and taxes are estimated%s and will be updated during checkout " -"based on your billing and shipping information." -msgstr "" -"Obs: Frakt och moms/skatt beräknas ungefärligt%s och kommer att uppdateras " -"när du går till kassan och anger betalnings- och fraktinformation." - -# @ woocommerce -#: templates/checkout/form-coupon.php:17 -msgid "Have a coupon?" -msgstr "Har du en kupong?" - -# @ woocommerce -#: templates/checkout/form-coupon.php:20 -msgid "Click here to enter your code" -msgstr "Klicka här för att ange kod" - -# @ woocommerce -#: templates/emails/customer-note.php:14 -#: templates/emails/plain/customer-note.php:13 -msgid "Hello, a note has just been added to your order:" -msgstr "Hej! En anteckning har just lagts skapats för din order:" - -# @ woocommerce -#: templates/emails/customer-note.php:18 -#: templates/emails/plain/customer-note.php:21 -msgid "For your reference, your order details are shown below." -msgstr "För din referens finns alla orderdetaljer nedan." - -# @ woocommerce -#: templates/myaccount/form-login.php:60 -#: templates/myaccount/form-login.php:101 -msgid "Register" -msgstr "Registrera" - -# @ woocommerce -#: templates/myaccount/form-login.php:89 -msgid "Re-enter password" -msgstr "Lösenord igen" - -# @ woocommerce -#: templates/single-product-reviews.php:107 -msgid "Your Review" -msgstr "Din Recension" - -# @ woocommerce -#: classes/widgets/class-wc-widget-cart.php:113 -msgid "Hide if cart is empty" -msgstr "Göm om kundvagnen är tom" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:372 -msgid "Query Type:" -msgstr "Anropstyp:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:374 -msgid "AND" -msgstr "AND" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:375 -msgid "OR" -msgstr "OR" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:136 -msgid "Min price" -msgstr "Pris från" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:137 -msgid "Max price" -msgstr "Pris till" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:188 -msgid "Order by:" -msgstr "Sortera efter:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:190 -msgid "Category Order" -msgstr "Kategoriordning" - -# @ woocommerce -#: woocommerce-functions.php:759 -msgid "Re-enter your password." -msgstr "Ange lösenord igen." - -# @ woocommerce -#: woocommerce-functions.php:764 -msgid "Anti-spam field was filled in." -msgstr "Anti-skräppost filtrer fylldes i." - -# @ woocommerce -#: woocommerce.php:888 woocommerce.php:890 -msgid "Shipping Classes" -msgstr "Fraktklasser" - -# @ woocommerce -#: woocommerce.php:893 -msgid "Search Shipping Classes" -msgstr "Sök fraktklasser" - -# @ woocommerce -#: woocommerce.php:894 -msgid "All Shipping Classes" -msgstr "Alla fraktklasser" - -# @ woocommerce -#: woocommerce.php:895 -msgid "Parent Shipping Class" -msgstr "Förälderklass för frakt" - -# @ woocommerce -#: woocommerce.php:896 -msgid "Parent Shipping Class:" -msgstr "Förälderklass för frakt:" - -# @ woocommerce -#: woocommerce.php:897 -msgid "Edit Shipping Class" -msgstr "Redigera fraktklass" - -# @ woocommerce -#: woocommerce.php:898 -msgid "Update Shipping Class" -msgstr "Uppdatera fraktklass" - -# @ woocommerce -#: woocommerce.php:899 -msgid "Add New Shipping Class" -msgstr "Lägg till fraktklass" - -# @ woocommerce -#: woocommerce.php:900 -msgid "New Shipping Class Name" -msgstr "Ny fraktklass namn" - -# @ woocommerce -#: woocommerce.php:1206 -msgid "Select an option…" -msgstr "Välj ett alternativ…" - -# @ default -#: admin/post-types/product.php:152 -msgid "Edit this item inline" -msgstr "Redigera artikel direkt" - -# @ default -#: admin/post-types/product.php:152 -msgid "Quick Edit" -msgstr "Snabbredigering" - -# @ default -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore this item from the Trash" -msgstr "Återställ artikel från Papperskorgen" - -# @ default -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore" -msgstr "Återställ" - -# @ default -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Move this item to the Trash" -msgstr "Flytta artikel till Papperskorgen" - -# @ default -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Trash" -msgstr "Papperskorg" - -# @ default -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -msgid "Delete this item permanently" -msgstr "Radera artikel permanent" - -# @ default -#: admin/post-types/product.php:165 -#, php-format -msgid "Preview “%s”" -msgstr "Förhandsgranska “%s”" - -# @ default -#: admin/post-types/product.php:165 -msgid "Preview" -msgstr "Förhandsgranska" - -# @ default -#: admin/post-types/product.php:167 -#, php-format -msgid "View “%s”" -msgstr "Visa “%s”" - -# @ woocommerce -#: admin/post-types/product.php:214 -msgid "Grouped" -msgstr "Grupperad" - -# @ woocommerce -#: admin/post-types/product.php:216 -msgid "External/Affiliate" -msgstr "Extern/Återförsäljare" - -# @ woocommerce -#: admin/post-types/product.php:224 -msgid "Simple" -msgstr "Enkel" - -# @ woocommerce -#: admin/post-types/product.php:228 admin/post-types/product.php:387 -msgid "Variable" -msgstr "Variabel" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:140 -msgid "Billing Details" -msgstr "Debiteringsinformation" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:230 -msgid "Shipping Details" -msgstr "Leveransinformation" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:344 -msgid "Tax class for the line item" -msgstr "Momsgrupp för radens artikel" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:17 -#: admin/post-types/writepanels/order-item-html.php:89 -msgid "Tax class" -msgstr "Momsgrupp" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:622 -msgid "" -"These rows contain taxes for this order. This allows you to display multiple " -"or compound taxes rather than a single total." -msgstr "" -"Dessa rader innehåller moms för den här kundordern. Detta gör att du kan " -"visa multipla eller sammansatt moms snarare än en enda totalsumma." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:622 -msgid "+ Add tax row" -msgstr "+ Lägg till momsrad" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:626 -msgid "Tax Totals" -msgstr "Momstotaler" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:115 -msgid "Shipping class:" -msgstr "Fraktklass:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:119 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:53 -#: woocommerce-ajax.php:550 -msgid "Same as parent" -msgstr "Samma som förälder" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:299 -msgid "" -"Are you sure you want to link all variations? This will create a new " -"variation for each and every possible combination of variation attributes " -"(max 50 per run)." -msgstr "" -"Är du säker på att du vill länka alla variationer? Detta kommer skapa en ny " -"variation för varje möjlig kombination av alla attribut (max 50 per omgång)." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:316 -msgid "variation added" -msgstr "variation tillagd" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:318 -msgid "variations added" -msgstr "variationer tillagda" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:320 -msgid "No variations added" -msgstr "Inga variationer tillagda" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:399 -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "" -"Är du säker på att du vill radera alla variationer? Detta kan inte ångras." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:402 -msgid "Last warning, are you sure?" -msgstr "Sista varningen, är du säker?" - -# @ woocommerce -#: admin/post-types/product.php:613 admin/post-types/product.php:887 -msgid "Visibility" -msgstr "Synlighet" - -# @ woocommerce -#: admin/post-types/product.php:618 admin/post-types/product.php:893 -msgid "Catalog & search" -msgstr "Sök i katalogen" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:44 -msgid "" -"General settings such as your shop base, currency, and script/styling " -"options which affect features used in your store." -msgstr "" -"Generella inställningar för saker såsom butikens bassida, valuta och skrip/" -"utseendealternativ som påverkar funktioner i e-butiken." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:45 -msgid "" -"This is where important store page are defined. You can also set up other " -"pages (such as a Terms page) here." -msgstr "" -"Detta är där du hanterar webb-shoppens sidor. Du kan också konfigurera andra " -"sidor (exempelvis policy) här." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:46 -msgid "" -"Options for how things like price, images and weights appear in your product " -"catalog." -msgstr "" -"Inställning för hur saker såsom pris, bilder och vikt visas i din " -"produktkatalog." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:47 -msgid "Options concerning stock and stock notices." -msgstr "Inställningar för lagersaldo och lagernotifieringar." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:48 -msgid "Options concerning tax, including international and local tax rates." -msgstr "" -"Inställningar för moms, inklusive internationell skatt och lokala " -"skatteregler." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:49 -msgid "" -"This is where shipping options are defined, and shipping methods are set up." -msgstr "Detta är stället du hanterar fraktinställningar." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:50 -msgid "Payment Methods" -msgstr "Betalningslösningar" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:50 -msgid "" -"This is where payment gateway options are defined, and individual payment " -"gateways are set up." -msgstr "" -"Här konfigurerar du och gör inställningar för dina olika betalningslösningar." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:51 -msgid "Here you can customise the way WooCommerce emails appear." -msgstr "Här ställer du in hur e-postutskicken från WooCommerce kommer se ut." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:52 -msgid "" -"The integration section contains options for third party services which " -"integrate with WooCommerce." -msgstr "" -"Intagrationsinställningarna innehåller inställningar för att ansluta " -"tredjepartstjänster med WooCommerce." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:59 -msgid "" -"The reports section can be accessed from the left-hand navigation menu. Here " -"you can generate reports for sales and customers." -msgstr "" -"Rapport-sektionen kan nås från den vänstra navigationsmenyn. Här kan du " -"generera rapporter/statistik för försäljning och kunder." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:60 -msgid "Reports for sales based on date, top sellers and top earners." -msgstr "" -"Rapporter för försäljning baserat på datum, mest sålda varor och mest " -"betalande produkter." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:62 -#: admin/woocommerce-admin-reports.php:79 -msgid "Customers" -msgstr "Kunder" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:62 -msgid "Customer reports, such as signups per day." -msgstr "Kundrapporter, exempelvis registreringar per dag." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:70 -msgid "" -"The orders section can be accessed from the left-hand navigation menu. Here " -"you can view and manage customer orders." -msgstr "" -"Order-sektionen kan nås från vänsta navigationsmenyn. Här kan du visa och " -"hantera kundordrar." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:71 -msgid "" -"Orders can also be added from this section if you want to set them up for a " -"customer manually." -msgstr "" -"Ordrar kan också läggas till från denna sektion om du vill lägga till dem " -"manuellt." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:78 -msgid "" -"Coupons can be managed from this section. Once added, customers will be able " -"to enter coupon codes on the cart/checkout page. If a customer uses a coupon " -"code they will be viewable when viewing orders." -msgstr "" -"Kuponger hanteras från denna sektion. När de lagts till kan kunder ange " -"kupongkoder i kassan. Om en kund använder en kupong kommer det att synas vid " -"visning av ordrar." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:82 -msgid "For more information:" -msgstr "För mer information:" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:238 -msgid "l jS \\of F Y h:i:s A" -msgstr "l jS \\of F Y h:i:s A" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:245 -msgid "There are no product orders yet." -msgstr "Det finns inga produktordrar ännu." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:446 -msgid "" -"Calculate line taxes? This will calculate taxes based on the customers " -"country. If no billing/shipping is set it will use the store base country." -msgstr "" -"Beräkna orderradsmoms? Detta beräknar moms baserat på kundernas länder. Om " -"ingen fakturering/frakt bestäms kommer butikens basland att användas." - -# @ woocommerce -#: admin/settings/settings-init.php:552 -msgid "g" -msgstr "g" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#: admin/settings/settings-init.php:567 -msgid "m" -msgstr "m" - -# @ woocommerce -#: admin/settings/settings-init.php:569 -msgid "mm" -msgstr "mm" - -# @ woocommerce -#: admin/settings/settings-init.php:990 -#, php-format -msgid "Reduced Rate%sZero Rate" -msgstr "Reducerad taxa%sNolltaxa" - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:26 -msgid "ShareDaddy" -msgstr "ShareDaddy" - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:27 -msgid "ShareDaddy is a sharing plugin bundled with JetPack." -msgstr "ShareDaddy är ett tillägg för delning som kommer med JetPack." - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:51 -msgid "Output ShareDaddy button?" -msgstr "Visa ShareDaddy knapp?" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:210 -#, php-format -msgid "" -"More functionality and gateway options available via WC official extensions." -msgstr "" -"Utökad funktionalitet och fler förmedlingsnoder för betalningar finner du " -"via WC official extensions." - -# @ woocommerce -#: classes/class-wc-checkout.php:637 woocommerce-functions.php:732 -#: woocommerce-functions.php:734 woocommerce-functions.php:737 -#: woocommerce-functions.php:749 woocommerce-functions.php:751 -#: woocommerce-functions.php:754 woocommerce-functions.php:788 -msgid "ERROR" -msgstr "FEL" - -# @ woocommerce -#: classes/class-wc-countries.php:457 -msgid "(incl. VAT)" -msgstr "(inkl moms)" - -# @ woocommerce -#: classes/class-wc-countries.php:457 -msgid "(incl. tax)" -msgstr "(inkl. moms)" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:28 -msgid "Bacs" -msgstr "Bank" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:28 -msgid "Cheque" -msgstr "Check" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:73 -msgid "" -"Please send your cheque to Store Name, Store Street, Store Town, Store " -"State / County, Store Postcode." -msgstr "" -"Vänligen sänd din check till Butiksnamn, butikens gata, butikens stad, " -"butikens postnummer." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:27 -#: classes/gateways/cod/class-wc-gateway-cod.php:54 -#: classes/gateways/cod/class-wc-gateway-cod.php:90 -msgid "Cash on Delivery" -msgstr "Förskottsbetalning" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:55 -msgid "Have your customers pay with cash (or by other means) upon delivery." -msgstr "Låt dina kunder betala kontakt (eller med kort) vid leverans." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:80 -msgid "Enable COD" -msgstr "Aktivera betalning vid leverans" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:89 -msgid "Payment method title that the customer will see on your website." -msgstr "Namn för betalningsmetodens som kunden kommer se på hemsidan." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:96 -msgid "Payment method description that the customer will see on your website." -msgstr "Beskrivning av betalningsmetoden som kunden kommer se på hemsidan." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:100 -msgid "Instructions" -msgstr "Instruktioner" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:102 -msgid "Instructions that will be added to the thank you page." -msgstr "Instruktioner som kommer visas på \\\"tack\\\"-sidan." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:176 -msgid "Payment to be made upon delivery." -msgstr "Betalning sker vid leverans." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:78 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:52 -msgid "Enable this shipping method" -msgstr "Aktivera fraktmetod" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:29 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:59 -msgid "International Delivery" -msgstr "Internationell frakt" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:30 -msgid "International delivery based on flat rate shipping." -msgstr "Internationell frakt med standardpris (flat rate)" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:89 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:63 -msgid "Availability" -msgstr "Tillgänglighet" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:68 -msgid "Selected countries" -msgstr "Valda länder" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:69 -msgid "Excluding selected countries" -msgstr "Exkludera valda länder" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:73 -msgid "Countries" -msgstr "Länder" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:25 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:107 -msgid "Local Delivery" -msgstr "Lokal frakt" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:98 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:78 -msgid "Enable" -msgstr "Aktivera" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:100 -msgid "Enable local delivery" -msgstr "Aktivera lokal frakt" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:111 -msgid "Fee Type" -msgstr "Avgiftstyp" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:113 -msgid "How to calculate delivery charges" -msgstr "Hur fraktkostnad beräknas" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:172 -msgid "" -"Local delivery is a simple shipping method for delivering orders locally." -msgstr "Lokal frakt är en simpel fraktmetod för att leverera ordrar lokalt." - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:25 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:87 -msgid "Local Pickup" -msgstr "Hämta själv" - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:80 -msgid "Enable local pickup" -msgstr "Tillåt kunder att hämta själv" - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:134 -msgid "" -"Local pickup is a simple method which allows the customer to pick up their " -"order themselves." -msgstr "" -"Att hämta själv är en fraktmetod som tillåter kunder att hämta sin order " -"själv hos er." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:51 -msgid "My Account →" -msgstr "Mitt Konto →" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:100 -#, php-format -msgid "Any %s" -msgstr "Vilken %s som helst" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:366 -msgid "Display Type:" -msgstr "Visningstyp:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:368 -msgid "List" -msgstr "Lista" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:369 -msgid "Dropdown" -msgstr "Rullgardinsmeny" - -# @ woocommerce -#: woocommerce-functions.php:732 -msgid "Please enter a username." -msgstr "Vänligen ange ett användarnamn." - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:24 -msgid "WooCommerce Random Products" -msgstr "WooCommerce Slumpade Produkter" - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:27 -msgid "Display a list of random products on your site." -msgstr "Visar en lista med slumpade produkter på din hemsida." - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:46 -msgid "Random Products" -msgstr "Slumpade Produkter" - -# @ woocommerce -#: woocommerce-core-functions.php:1562 -msgid "Select a category" -msgstr "Välj kategori" - -# @ woocommerce -#: woocommerce-functions.php:493 -msgid "Continue Shopping →" -msgstr "Fortsätt handla →" - -# @ woocommerce -#: woocommerce-functions.php:734 -msgid "" -"This username is invalid because it uses illegal characters. Please enter a " -"valid username." -msgstr "" -"Användarnamnet är ogiltigt för att du har använt ogiltiga tecken. Vänligen " -"ange ett giltigt användarnamn." - -# @ woocommerce -#: woocommerce-functions.php:737 -msgid "This username is already registered, please choose another one." -msgstr "Användarnamnet finns redan, vänligen välj ett annat." - -# @ woocommerce -#: woocommerce-functions.php:749 -msgid "Please type your e-mail address." -msgstr "Vänligen ange e-postadress." - -# @ woocommerce -#: woocommerce-functions.php:751 -msgid "The email address isn’t correct." -msgstr "E-postadressen är inte korrekt." - -# @ woocommerce -#: woocommerce-functions.php:754 -msgid "This email is already registered, please choose another one." -msgstr "Denna e-postadress är redan registrerad, vänligen välj en annan." - -# @ woocommerce -#: woocommerce-functions.php:942 -msgid "Invalid email address." -msgstr "Ogiltig e-postadress." - -# @ woocommerce -#: woocommerce-functions.php:942 woocommerce-functions.php:965 -#: woocommerce-functions.php:985 woocommerce-functions.php:991 -#: woocommerce-functions.php:995 woocommerce-functions.php:998 -#: woocommerce-functions.php:1028 woocommerce-functions.php:1160 -msgid "Go to homepage →" -msgstr "Gå till startsidan →" - -# @ woocommerce -#: woocommerce-functions.php:965 -msgid "Invalid download." -msgstr "Ogiltig nedladdning." - -# @ woocommerce -#: woocommerce-functions.php:977 -msgid "You must be logged in to download files." -msgstr "Du måste vara inloggad för att ladda ner filer." - -# @ woocommerce -#: woocommerce-functions.php:977 -msgid "Login →" -msgstr "Logga in →" - -# @ woocommerce -#: woocommerce-functions.php:980 -msgid "This is not your download link." -msgstr "Detta är inte din nedladdningslänk." - -# @ woocommerce -#: woocommerce-functions.php:995 -msgid "Sorry, you have reached your download limit for this file" -msgstr "Tyvärr, du har nått gränsen för nedladdning av denna fil" - -# @ woocommerce -#: woocommerce-functions.php:1160 -msgid "File not found" -msgstr "Inte hittat" - -# @ woocommerce -#. translators: plugin header field 'PluginURI' -#: woocommerce.php:0 -msgid "http://www.woothemes.com/woocommerce/" -msgstr "http://www.woothemes.com/woocommerce/" - -# @ woocommerce -#. translators: plugin header field 'Description' -#: woocommerce.php:0 -msgid "An e-commerce toolkit that helps you sell anything. Beautifully." -msgstr "Ett e-handelsverktyg som hjälper dig att sälja vad du vill. Med stil." - -# @ woocommerce -#. translators: plugin header field 'Author' -#: woocommerce.php:0 -msgid "WooThemes" -msgstr "WooThemes" - -# @ woocommerce -#. translators: plugin header field 'AuthorURI' -#: woocommerce.php:0 -msgid "http://woothemes.com" -msgstr "http://woothemes.com" - -# @ woocommerce -#: admin/post-types/product.php:570 -msgid "Regular price" -msgstr "Normalpris" - -# @ woocommerce -#: admin/post-types/product.php:575 admin/post-types/product.php:813 -msgid "Sale" -msgstr "Rea" - -# @ woocommerce -#: admin/post-types/product.php:577 -msgid "Sale price" -msgstr "Rea-pris" - -# @ woocommerce -#: admin/post-types/product.php:599 admin/post-types/product.php:863 -msgid "L/W/H" -msgstr "L/B/H" - -# @ woocommerce -#: admin/post-types/product.php:636 admin/post-types/product.php:924 -msgid "In stock?" -msgstr "I lager?" - -# @ woocommerce -#: admin/post-types/product.php:794 admin/post-types/product.php:818 -#: admin/post-types/product.php:844 admin/post-types/product.php:868 -#: admin/post-types/product.php:892 admin/post-types/product.php:911 -#: admin/post-types/product.php:929 admin/post-types/product.php:947 -#: admin/post-types/product.php:966 -msgid "— No Change —" -msgstr "— Ingen ändring —" - -# @ woocommerce -#: admin/post-types/product.php:795 admin/post-types/product.php:819 -#: admin/post-types/product.php:845 admin/post-types/product.php:869 -#: admin/post-types/product.php:967 -msgid "Change to:" -msgstr "Ändra till:" - -# @ woocommerce -#: admin/post-types/product.php:912 admin/post-types/product.php:948 -#: admin/post-types/shop_order.php:190 admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:286 -msgid "Yes" -msgstr "Ja" - -# @ woocommerce -#: admin/post-types/product.php:913 admin/post-types/product.php:949 -#: admin/post-types/shop_order.php:192 admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:286 -msgid "No" -msgstr "Nej" - -# @ woocommerce -#: admin/post-types/shop_order.php:49 -msgid "Customer Notes" -msgstr "Kundnoteringar" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:6 -msgid "Revoke Access" -msgstr "Dra tillbaka tillgång till" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:7 -#: admin/post-types/writepanels/variation-admin-html.php:7 -#: admin/post-types/writepanels/writepanel-product_data.php:369 -#: admin/post-types/writepanels/writepanel-product_data.php:463 -#: admin/woocommerce-admin-init.php:439 -msgid "Click to toggle" -msgstr "Click för att visa eller dölja" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:9 -#, php-format -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "Nerladdad %s gång" -msgstr[1] "Nerladdad %s gånger" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:16 -msgid "Downloads Remaining" -msgstr "Återstående nerladdningar" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:22 -msgid "Access Expires" -msgstr "Åtkomst upphör" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:23 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Never" -msgstr "Aldrig" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:57 -msgid "Choose a downloadable product…" -msgstr "Välj en nerladdingsbar produkt…" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:87 -msgid "Grant Access" -msgstr "Ge tillgång till" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:148 -msgid "Are you sure you want to revoke access to this download?" -msgstr "" -"Är du säker på att du vill dra tillbaka möjligheten att ladda ner detta?" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Close all" -msgstr "Stäng alla" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Expand all" -msgstr "Expandera alla" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:197 -msgid "Default selections:" -msgstr "Standardval:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "Stock Keeping Unit" -msgstr "Artikelnummer" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "Button text" -msgstr "Knapptext" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgctxt "placeholder" -msgid "Buy product" -msgstr "Köp produkt" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "This text will be shown on the button linking to the external product." -msgstr "" -"Den här texten kommer att visas på knappen som länkar till den externt " -"lokaliserade produkten." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:136 -msgctxt "placeholder" -msgid "From…" -msgstr "Från…" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:137 -msgctxt "placeholder" -msgid "To…" -msgstr "Till…" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:610 -msgid "Purchase Note" -msgstr "Köpnotering" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:610 -msgid "Enter an optional note to send the customer after purchase." -msgstr "Skriv in valfri notering att skicka till kund efter köp." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:90 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Download Expiry" -msgstr "Nerladdning upphör" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:156 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "" -"Enter the number of days before a download link expires, or leave blank." -msgstr "" -"Ange antal dagar före att en nedladdningslänk slutar att fungera, eller " -"lämna tomt." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:398 -msgid "Select all" -msgstr "Välj alla" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:398 -msgid "Select none" -msgstr "Välj ingen" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:427 -#: admin/post-types/writepanels/writepanel-product_data.php:482 -#: admin/woocommerce-admin-init.php:442 -msgid "Visible on the product page" -msgstr "Synlig på produktsidan" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:440 -#: admin/post-types/writepanels/writepanel-product_data.php:488 -#: admin/woocommerce-admin-init.php:443 -msgid "Used for variations" -msgstr "Används för variationer" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:477 -#: admin/woocommerce-admin-init.php:441 -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "Mata in lite text, eller några attribut separerade med en pipe (|)." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:242 -#: admin/woocommerce-admin-attributes.php:308 -#: admin/woocommerce-admin-attributes.php:380 -msgid "Slug" -msgstr "Slug" - -# @ woocommerce -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:84 -#: admin/woocommerce-admin-functions.php:200 -#: admin/woocommerce-admin-init.php:761 -#: admin/woocommerce-admin-reports.php:996 -#: admin/woocommerce-admin-reports.php:1094 templates/cart/cart.php:28 -#: templates/checkout/form-pay.php:19 templates/checkout/review-order.php:21 -#: templates/emails/admin-new-order.php:22 -#: templates/emails/customer-completed-order.php:23 -#: templates/emails/customer-invoice.php:27 -#: templates/emails/customer-note.php:27 -#: templates/emails/customer-processing-order.php:23 -#: templates/order/order-details.php:20 woocommerce.php:983 -msgid "Product" -msgid_plural "Products" -msgstr[0] "Produkt" -msgstr[1] "Produkter" - -# @ woocommerce -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:98 woocommerce.php:824 -msgid "Product Category" -msgid_plural "Product Categories" -msgstr[0] "Produktkategori" -msgstr[1] "Produktkategorier" - -# @ woocommerce -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:112 woocommerce.php:860 -msgid "Product Tag" -msgid_plural "Product Tags" -msgstr[0] "Produktetikett" -msgstr[1] "Produktetiketter" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:126 -msgid "Attribute" -msgid_plural "Attributes" -msgstr[0] "Attribut" -msgstr[1] "Attribut" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:207 -#, php-format -msgid "You are using WooCommerce %s." -msgstr "Du använder WooCommerce %s." - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:43 -msgid "WooCommerce Right Now" -msgstr "WooCommerce Just nu" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:44 -msgid "WooCommerce Recent Orders" -msgstr "WooCommerce Senaste ordrar" - -# @ woocommerce -#: admin/includes/notice-install.php:6 -msgid "" -"Welcome to WooCommerce – You're almost ready to start " -"selling :)" -msgstr "" -"Välkommen till WooCommerce – Nu är du snart redo att " -"börja sälja :)" - -# @ woocommerce -#: admin/includes/notice-install.php:7 -msgid "Install WooCommerce Pages" -msgstr "Installera WooCommerce-sidorna" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:351 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:352 -msgid "Documentation" -msgstr "Dokumentation" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:436 -msgid "Remove this attribute?" -msgstr "Radera detta attribut?" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:665 -#, php-format -msgid "Product updated. View Product" -msgstr "Produkt uppdaterad. Visa produkt" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:666 admin/woocommerce-admin-init.php:681 -#: admin/woocommerce-admin-init.php:696 -msgid "Custom field updated." -msgstr "Eget fält uppdaterat." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:667 admin/woocommerce-admin-init.php:682 -#: admin/woocommerce-admin-init.php:697 -msgid "Custom field deleted." -msgstr "Eget fält raderat." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:668 -msgid "Product updated." -msgstr "Produkt uppdaterad." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:669 -#, php-format -msgid "Product restored to revision from %s" -msgstr "Produkt återställd till revision från %s" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:671 -msgid "Product saved." -msgstr "Produkt sparad." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:672 -#, php-format -msgid "Product submitted. Preview Product" -msgstr "" -"Produkt skickad. Förhandsgranska produkt" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:673 -#, php-format -msgid "" -"Product scheduled for: %1$s. Preview Product" -msgstr "" -"Produkt schemalagd för: %1$s. Förhandsgranska produkt" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:674 admin/woocommerce-admin-init.php:689 -#: admin/woocommerce-admin-init.php:704 -msgid "M j, Y @ G:i" -msgstr "M j, Y @ G:i" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:675 -#, php-format -msgid "" -"Product draft updated. Preview Product" -msgstr "" -"Produktutkast uppdaterat. Förhandsgranska " -"produkt" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:680 admin/woocommerce-admin-init.php:683 -#: admin/woocommerce-admin-init.php:685 -msgid "Order updated." -msgstr "Order uppdaterad." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:684 -#, php-format -msgid "Order restored to revision from %s" -msgstr "Order återställd till revision från %s" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:686 -msgid "Order saved." -msgstr "Order sparad." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:687 -msgid "Order submitted." -msgstr "Order sänd." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:688 -#, php-format -msgid "Order scheduled for: %1$s." -msgstr "Order schemalagd för: %1$s." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:690 -msgid "Order draft updated." -msgstr "Utkast till order uppdaterad." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:695 admin/woocommerce-admin-init.php:698 -#: admin/woocommerce-admin-init.php:700 -msgid "Coupon updated." -msgstr "Kupong uppdaterad." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:699 -#, php-format -msgid "Coupon restored to revision from %s" -msgstr "Kupong återställd till revision från %s" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:701 -msgid "Coupon saved." -msgstr "Kupong sparad." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:702 -msgid "Coupon submitted." -msgstr "Kupong sparad." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:703 -#, php-format -msgid "Coupon scheduled for: %1$s." -msgstr "Kupong schemalagd för: %1$s." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:705 -msgid "Coupon draft updated." -msgstr "Utkast till kupong uppdaterat." - -# @ woocommerce -#: admin/settings/settings-init.php:201 -msgid "Styles and Scripts" -msgstr "Utseende och funktioner" - -# @ woocommerce -#: admin/settings/settings-init.php:285 -msgid "" -"Note: The shop page has children - child pages will not work if you enable " -"this option." -msgstr "" -"Observera att butikssidan har barn - barnsidor kommer inte att fungera om du " -"aktiverar detta." - -# @ woocommerce -#: admin/settings/settings-init.php:298 -msgid "" -"This sets the base page of your shop - this is where your product archive " -"will be." -msgstr "" -"Det bestämmer startsidan för din butik - det är här som ditt produktarkiv " -"kommer att finnas." - -# @ woocommerce -#: admin/settings/settings-init.php:320 -msgid "" -"The following pages need selecting so that WooCommerce knows where they are. " -"These pages should have been created upon installation of the plugin, if not " -"you will need to create them." -msgstr "" -"Följande sidor måste lyfta fram så att WooCommerce vet var de finns. Dessa " -"sidor skapades vid installationen av WooCommerce, om så ej skedde behöver du " -"skapa sidorna." - -# @ woocommerce -#: admin/settings/settings-init.php:1012 -msgid "" -"The following options affect the sender (email address and name) used in " -"WooCommerce emails." -msgstr "" -"Följande inställningar påverkar avsändaren (e-postadress och namn) som " -"används i WooCommerce-mail." - -# @ woocommerce -#: admin/settings/settings-init.php:1037 -#, php-format -msgid "" -"This section lets you customise the WooCommerce emails. Click here to preview your email template. For more " -"advanced control copy woocommerce/templates/emails/ to " -"yourtheme/woocommerce/emails/." -msgstr "" -"Den här sektionen används för att anpassa utseendet på e-mail som sänds via " -"WooCommerce. Klicka här för att " -"förhandsgranska ditt e-post-template. För mer avancerad kontroll över " -"detta, kopiera woocommerce/templates/emails/ till ditt-" -"tema/woocommerce/emails/." - -# @ woocommerce -#: classes/class-wc-cart.php:869 -msgid "You already have this item in your cart." -msgstr "Du har redan denna vara i din kundvagn." - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:554 -#, php-format -msgid "%s in stock" -msgstr "%s i lager" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:561 -msgid "(backorders allowed)" -msgstr "(tillåtet att återköpa tidigare lagd order)" - -# @ woocommerce -#: templates/cart/shipping-methods.php:68 -msgid "Please fill in your details to see available shipping methods." -msgstr "Var god fyll i uppgifter för att se tillgängliga fraktmetoder." - -# @ woocommerce -#: templates/checkout/cart-errors.php:16 -msgid "" -"There are some issues with the items in your cart (shown above). Please go " -"back to the cart page and resolve these issues before checking out." -msgstr "" -"Det är några problem med varorna i din kundvagn (se ovan). Var god gå " -"tillbaka till kundvagnssidan och lös problemen innan du går till kassan." - -# @ woocommerce -#: templates/checkout/cart-errors.php:20 -msgid "← Return To Cart" -msgstr "← Återvänd till Kundvagn" - -# @ woocommerce -#: templates/myaccount/my-address.php:23 -msgid "My Address" -msgstr "Min adress" - -# @ woocommerce -#: woocommerce-core-functions.php:1219 woocommerce-core-functions.php:1245 -msgid "Download Permissions Granted" -msgstr "Tillåtelse att ladda ner" - -# @ woocommerce -#: woocommerce-functions.php:257 -#, php-format -msgid "You can only have 1 %s in your cart." -msgstr "Du kan endast ha 1 %s i din kundvagn." - -# @ woocommerce -#: woocommerce-functions.php:998 -msgid "Sorry, this download has expired" -msgstr "Den här nerladdningen har upphört." - -# @ woocommerce -#: woocommerce-template.php:1292 woocommerce.php:1209 -msgid "required" -msgstr "krävs" - -# @ woocommerce -#: admin/includes/duplicate_product.php:90 -msgid "(Copy)" -msgstr "(Kopia)" - -# @ woocommerce -#: admin/post-types/product.php:1183 -msgid "Sort Products" -msgstr "Sortera produkter" - -# @ woocommerce -#: admin/post-types/shop_order.php:98 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:321 -#, php-format -msgid "Order %s" -msgstr "Order %s" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "Minimum amount" -msgstr "Minsta mängd" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "No minimum" -msgstr "Inget minimum" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "" -"This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "" -"Detta fält ger dig möjlighet att bestämma ett lägsta totalpris som måste " -"uppnås för att kupongen ska kunna användas." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:75 -#: admin/post-types/writepanels/writepanel-order_data.php:400 -#: admin/post-types/writepanels/writepanel-product_data.php:523 -#: admin/post-types/writepanels/writepanel-product_data.php:540 -#: admin/woocommerce-admin-reports.php:1245 -msgid "Search for a product…" -msgstr "Sök efter en produkt…" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:89 -msgid "" -"Products which need to be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are discounted." -msgstr "" -"Produkter som måste finnas i varukorgen för att den här kupongen ska kunna " -"användas eller, för \"Produkt-rabatter\", för produkter som är rabatterade." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:95 -msgid "Search for a product…" -msgstr "Sök efter en produkt.." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:109 -msgid "" -"Products which must not be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are not discounted." -msgstr "" -"Produkter som inte måste finnas i varukorgen för att den här kupongen ska " -"kunna användas eller, för \"Produkt-rabatter\", för produkter som inte är " -"rabatterade." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:117 -msgid "Any category" -msgstr "Vilken kategori som helst" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:125 -msgid "" -"A product must be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will be discounted." -msgstr "" -"En produkt måste finnas i den här kategorin för att kupongen ska behålla sin " -"giltighet eller, för \"Produkt-rabatter\", produkter i dessa kategorier " -"kommer att rabatteras." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:131 -msgid "No categories" -msgstr "Inga kategorier" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:139 -msgid "" -"Product must not be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will not be discounted." -msgstr "" -"En produkt måste inte finnas i den här kategorin för att kupongen ska " -"behålla sin giltighet eller, för \"Produkt-rabatter\", produkter i dessa " -"kategorier kommer inte att rabatteras." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "Obegränsad användning" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgctxt "placeholder" -msgid "Never expire" -msgstr "Upphör aldrig" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:86 -msgid "Order Date:" -msgstr "Orderdatum:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:87 -msgid "h" -msgstr "h" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:402 -msgid "Add item(s)" -msgstr "Lägg till" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:65 -msgid "" -"Before adding variations, add and save some attributes on the " -"Attributes tab." -msgstr "" -"Innan du lägger till varianter, lägg till och spara några attribut på " -"Attribut-fliken." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:67 -msgid "Learn more" -msgstr "Lär dig mer" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:88 -msgid "File Path" -msgstr "Sökväg" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:89 -msgid "Download limit" -msgstr "Nedladdningsgräns" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:130 -msgid "Tax class:" -msgstr "Momsklasser" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:439 -msgid "Enter a value" -msgstr "Ange ett värde" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:629 -#: classes/class-wc-emails.php:286 classes/class-wc-emails.php:318 -#: classes/class-wc-emails.php:362 -#, php-format -msgid "Variation #%s of %s" -msgstr "Variation #%s av %s" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:311 -msgid "No shipping class" -msgstr "Ingen fraktklass" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "Shipping class" -msgstr "Frakt-klass" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "" -"Shipping classes are used by certain shipping methods to group similar " -"products." -msgstr "" -"Frakt-klasser används av vissa fraktmetoder för att gruppera liknande " -"produkter." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "" -"Stock quantity. If this is a variable product this value will be used to " -"control stock for all variations, unless you define stock at variation level." -msgstr "" -"Lagersaldo. Om det här är en variabel produkt kommer det här värdet att " -"användas för att hantera lagersaldo för alla varianter, om du inte bestämmer " -"lagersaldo på variantnivå." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:233 -msgid "" -"Controls whether or not the product is listed as \"in stock\" or \"out of " -"stock\" on the frontend." -msgstr "" -"Bestämmer huruvida en produkt listas som \"i lager\" or \"ej i lager\" ur " -"ett kundperspektiv." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:244 -msgid "" -"If managing stock, this controls whether or not backorders are allowed for " -"this product and variations. If enabled, stock quantity can go below 0." -msgstr "" -"Om lagersaldo hanteras, kommer detta att bestämma om återkommande köp är " -"tillåtet för den här produkten och dess varianter. Om aktiverat finns det " -"risk för att lagersaldo kan understiga noll." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:400 -msgid "Add new" -msgstr "Lägg till ny" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:55 -msgid "Product Short Description" -msgstr "Kort produktbeskrivning" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:185 -msgid "Allow reviews." -msgstr "Tillåt kundrecensioner." - -# @ default -#: admin/post-types/writepanels/writepanels-init.php:186 -#, php-format -msgid "" -"Allow trackbacks and pingbacks on this " -"page." -msgstr "" -"Tillåt trackbacks och pingbacks på den " -"här sidan." - -# @ default -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" -msgstr "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:23 -msgid "Styles" -msgstr "Stilar" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:43 -msgid "Primary" -msgstr "Primär" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:43 -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "Call to action-knappar/prisfilter/flernivåsnavigering" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:44 -msgid "Secondary" -msgstr "Sekundär" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:44 -msgid "Buttons and tabs" -msgstr "Knappar och flikar" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:45 -msgid "Highlight" -msgstr "Framhäv" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:45 -msgid "Price labels and Sale Flashes" -msgstr "Prisuppgifter och Rea-notiser" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:46 -msgid "Content" -msgstr "Innehåll" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:46 -msgid "Your themes page background - used for tab active states" -msgstr "Din temasidas bakgrund - används för aktiva flikar" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:47 -msgid "Subtext" -msgstr "Undertext" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:47 -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "" -"Används för viss text och så kallade asides - brödsmulor, liten text etc." - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:51 -msgid "" -"To edit colours woocommerce/assets/css/woocommerce-base.less " -"and woocommerce.css need to be writable. See the Codex for more " -"information." -msgstr "" -"För att redigera färger måste woocommerce/assets/css/woocommerce-base." -"less och woocommerce.css vara skrivbara. Se the Codex för " -"mer information." - -# @ woocommerce -#: admin/settings/settings-init.php:115 -msgid "Enable guest checkout (no account required)" -msgstr "Låt kunder handla utan krav på registrering av användarkonto" - -# @ woocommerce -#: admin/settings/settings-init.php:131 -msgid "Force secure checkout" -msgstr "Tvinga säker kassafunktion" - -# @ woocommerce -#: admin/settings/settings-init.php:141 -msgid "Un-force HTTPS when leaving the checkout" -msgstr "Ta bort HTTPS när kunden lämnar kassan" - -# @ woocommerce -#: admin/settings/settings-init.php:150 -msgid "Registration" -msgstr "Registrering" - -# @ woocommerce -#: admin/settings/settings-init.php:226 -msgid "Enable enhanced country select boxes" -msgstr "Aktivera utökade boxar för val av land" - -# @ woocommerce -#: admin/settings/settings-init.php:265 -msgid "Grant access to downloadable products after payment" -msgstr "Ge tillgång till nedladdningsbara produkter efter betalning" - -# @ woocommerce -#: admin/settings/settings-init.php:443 -msgid "This controls the default sort order of the catalog." -msgstr "Det här bestämmer standardsorteringen av katalogen." - -# @ woocommerce -#: templates/loop/orderby.php:21 -msgid "Default sorting" -msgstr "Standardsortering" - -# @ woocommerce -#: admin/settings/settings-init.php:452 -msgid "Sort by most recent" -msgstr "Sortera efter senaste" - -# @ woocommerce -#: admin/settings/settings-init.php:468 admin/settings/settings-init.php:483 -msgid "Show subcategories" -msgstr "Visa underkategorier" - -# @ woocommerce -#: admin/settings/settings-init.php:508 -msgid "" -"The following options affect the fields available on the edit product page." -msgstr "" -"Följande alternativ påverkar vilka fält som är synliga när du redigerar en " -"produkt." - -# @ woocommerce -#: admin/settings/settings-init.php:554 -msgid "oz" -msgstr "oz" - -# @ woocommerce -#: admin/settings/settings-init.php:571 -msgid "yd" -msgstr "yd" - -# @ woocommerce -#: admin/settings/settings-init.php:577 -msgid "Product Ratings" -msgstr "Produktbetyg" - -# @ woocommerce -#: admin/settings/settings-init.php:587 -msgid "Ratings are required to leave a review" -msgstr "Betygsättning är ett krav för att kunna lämna en recension" - -# @ woocommerce -#: admin/settings/settings-init.php:596 -msgid "Show \"verified owner\" label for customer reviews" -msgstr "Visa \"verifierad ägare\"-notis för kundrecensioner" - -# @ woocommerce -#: admin/settings/settings-init.php:606 -msgid "The following options affect how prices are displayed on the frontend." -msgstr "" -"Följande alternativ påverkar på vilket sätt som priser visas i butiken." - -# @ woocommerce -#: admin/settings/settings-init.php:660 -msgid "" -"Remove zeros after the decimal point. e.g. $10.00 becomes " -"$10" -msgstr "" -"Ta bort nollor efter decimaltecknet så att t.ex. $10.00 visas " -"som $10" - -# @ woocommerce -#: admin/settings/settings-init.php:803 -msgid "This controls how stock is displayed on the frontend." -msgstr "Det här kontrollerar hur lagersaldo visas i butiken." - -# @ woocommerce -#: admin/settings/settings-init.php:809 -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "Visa alltid lagersaldo t.ex. \"12 i lager\"" - -# @ woocommerce -#: admin/settings/settings-init.php:810 -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "" -"Visa endast lagersaldo när saldot är lågt t.ex. \"Endast 2 kvar i lager\" " -"vs. \"I lager\"" - -# @ woocommerce -#: admin/settings/settings-init.php:811 -msgid "Never show stock amount" -msgstr "Visa aldrig antal i lager" - -# @ woocommerce -#: admin/settings/settings-init.php:843 -msgid "Hide shipping costs until an address is entered" -msgstr "Dölj fraktkostnader tills en adress är angiven" - -# @ woocommerce -#: admin/settings/settings-init.php:852 -msgid "" -"This controls how multiple shipping methods are displayed on the frontend." -msgstr "Det här bestämmer hur flera olika fraktmetoder visas i butiken." - -# @ woocommerce -#: admin/settings/settings-init.php:858 -msgid "Radio buttons" -msgstr "Radioknapp" - -# @ woocommerce -#: admin/settings/settings-init.php:859 -msgid "Select box" -msgstr "Kryssruta" - -# @ woocommerce -#: admin/settings/settings-init.php:865 -msgid "Shipping Destination" -msgstr "Leveransadress" - -# @ woocommerce -#: admin/settings/settings-init.php:882 -msgid "Collect shipping address even when not required" -msgstr "Samla in leveransadresser även när det inte krävs" - -# @ woocommerce -#: admin/settings/settings-init.php:900 -msgid "" -"Installed payment gateways are displayed below. Drag and drop payment " -"gateways to control their display order on the checkout." -msgstr "" -"Installerade förmedlingsnoder för betalningar visas nedan. Dra och släpp " -"respektive förmedlingsnod för att bestämma deras visningsordning i kassan." - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:25 -msgid "Drag and drop methods to control their display order." -msgstr "Dra och flytta fraktmetoder för att bestämma deras visningsordning." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:31 -msgid "" -"If you are having problems, or to assist us with support, please check the " -"status page to identify any problems with your configuration:" -msgstr "" -"Om du har problem, eller för att hjälpa oss vid support, vänligen se " -"statussidan för att identifiera eventuella problem med din konfiguration." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:33 admin/woocommerce-admin-init.php:89 -#: admin/woocommerce-admin-status.php:26 -msgid "System Status" -msgstr "System-status" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:35 -#, php-format -msgid "" -"If you come across a bug, or wish to contribute to the project you can also " -"get involved on GitHub." -msgstr "" -"Om du har hittat en bugg, eller om du vill bidra till projektet kan du göra " -"det på GitHub." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:43 -msgid "" -"Here you can set up your store and customise it to fit your needs. The " -"sections available from the settings page include:" -msgstr "" -"Här kan du göra inställningar för din butik så att den passar dina behov. " -"Tillgängliga sektioner från inställningssidan inkluderar:" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:63 -msgid "Stock reports for low stock and out of stock items." -msgstr "Lagerrapporter för låg lagernivå och ej i lager-artiklar." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:248 -#: admin/woocommerce-admin-reports.php:508 -#: admin/woocommerce-admin-reports.php:713 -#: admin/woocommerce-admin-reports.php:894 -msgid "Number of sales" -msgstr "Antal försäljningar" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:243 -#: admin/woocommerce-admin-reports.php:508 -#: admin/woocommerce-admin-reports.php:713 -#: admin/woocommerce-admin-reports.php:894 -msgid "Sales amount" -msgstr "Försäljningsvärde" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:465 -msgid "Could not compile woocommerce.less:" -msgstr "Kunde inte kompilera woocommerce.less:" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:486 -#: admin/woocommerce-admin-functions.php:487 -msgid "Mark processing" -msgstr "Märk som processar" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:489 -#: admin/woocommerce-admin-functions.php:490 -msgid "Mark completed" -msgstr "Märk som genomförda" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:527 -msgid "Order status changed by bulk edit:" -msgstr "Orderstatus ändrad av massredigering:" - -# @ default -#: admin/woocommerce-admin-functions.php:550 -#, php-format -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "Orderstatus ändrad." -msgstr[1] "%s orderstatusar ändrade." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:89 -msgid "WooCommerce Status" -msgstr "WooCommerce-status" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:444 -msgid "Enter a name for the new attribute term:" -msgstr "Ange ett namn för den nya attribut-termen:" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:670 -#, php-format -msgid "Product published. View Product" -msgstr "Produkt publicerad. Visa produkt" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:722 -msgid "Order notes" -msgstr "Ordernoteringar" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:388 -#: admin/woocommerce-admin-reports.php:661 -#: admin/woocommerce-admin-reports.php:845 -msgid "items" -msgstr "varor" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:404 -msgid "Discounts used" -msgstr "Använda rabatter" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:410 -msgid "Total shipping costs" -msgstr "Total fraktkostnad" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1209 -#, php-format -msgid "Sales for %s:" -msgstr "Försäljning för %s:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2106 -#: admin/woocommerce-admin-reports.php:2145 -#, php-format -msgid "%d in stock" -msgid_plural "%d in stock" -msgstr[0] "%d i lager" -msgstr[1] "%d i lager" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:826 -msgid "Select a page…" -msgstr "Välj en sida…" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:539 -msgid "This tool will clear the product/shop transients cache." -msgstr "Det här verktyget rensar produkt/transients-cache." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:552 -msgid "Capabilities" -msgstr "Förmågor" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:554 -msgid "" -"This tool will reset the admin, customer and shop_manager roles to default. " -"Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "" -"Det här verktyget återställer rollerna Administratör, Kund och Shop Manager " -"till ursprungsinställningen. Använd detta om dina användare inte kan nå alla " -"administratörssidor i WooCommerce." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:569 -msgid "Product Transients Cleared" -msgstr "Produkts-transients rensade" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:618 -msgid "Roles successfully reset" -msgstr "Användarroller har återställts" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:649 -#, php-format -msgid "There was an error calling %s::%s" -msgstr "Ett fel uppstod vid anrop av %s::%s" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:652 -#, php-format -msgid "There was an error calling %s" -msgstr "Ett fel uppstod vid anrop av %s" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:262 -msgid "by" -msgstr "av" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:262 -msgid "version" -msgstr "version" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:77 -msgid "Home URL" -msgstr "Hem-URL" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:81 -msgid "Site URL" -msgstr "Sajt-URL" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:285 -msgid "Force SSL" -msgstr "Tvinga SSL" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:355 -msgid "Page not set" -msgstr "Sida ej bestämd" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:370 -#, php-format -msgid "Page does not contain the shortcode: %s" -msgstr "Sidan innehåller inte shortcoden: %s" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:101 -msgid "PHP Version" -msgstr "PHP-version" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:125 -msgid "WP Max Upload Size" -msgstr "WP Max uppladdningsstorlek" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:109 -msgid "WP Memory Limit" -msgstr "WP Minnesgräns" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:114 -#, php-format -msgid "" -"%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "" -"%s - Vi rekommenderar att du sätter minnet till minst 64MB. Läs mer: Öka minnet allokerat till PHP" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:121 -msgid "WP Debug Mode" -msgstr "WP Debug-läge" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:137 -msgid "WC Logging" -msgstr "WC-loggning" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:140 -msgid "Log directory is writable." -msgstr "Loggningsmapp är skrivbar." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:142 -msgid "" -"Log directory (woocommerce/logs/) is not writable. Logging will " -"not be possible." -msgstr "" -"Loggningsmapp (woocommerce/logs/) är inte skrivbar. Loggning " -"kommer inte att fungera." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:149 -msgid "fsockopen/cURL" -msgstr "fsockopen/cURL" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:152 -msgid "Your server has fsockopen and cURL enabled." -msgstr "Din server har fsockopen och cURL aktiverat." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:154 -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "Din server har fsockopen aktiverat, cURL är deaktiverat." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:156 -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "Din server har cURL aktiverat, fsockopen är deaktiverat." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:160 -msgid "" -"Your server does not have fsockopen or cURL enabled - PayPal IPN and other " -"scripts which communicate with other servers will not work. Contact your " -"hosting provider." -msgstr "" -"Din server har inte fsockopen eller cURL aktiverat - PayPal Instant Payment " -"Notification och andra skript som kommunicerar med andra servrar kommer inte " -"att fungera. Kontakta ditt webbhotell." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:186 -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "" -"wp_remote_post() fungerade - PayPal Instant Payment Notification fungerar." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:189 -msgid "" -"wp_remote_post() failed. PayPal IPN won't work with your server. Contact " -"your hosting provider. Error:" -msgstr "" -"wp_remote_post() misslyckades. PayPal Instant Payment Notification kommer " -"inte att fungera på din server. Kontakta ditt webbhotell. Error: " - -# @ woocommerce -#: admin/woocommerce-admin-status.php:192 -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "" -"wp_remote_post() misslyckades. PayPal Instant Payment Notification kommer " -"kanske inte att fungera på din server." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:27 -#: admin/woocommerce-admin-status.php:664 -msgid "Tools" -msgstr "Verktyg" - -# @ woocommerce -#: classes/class-wc-coupon.php:448 -#, php-format -msgid "" -"Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from " -"your order." -msgstr "" -"Tyvärr, det verkar som att kupongen \"%s\" är ogiltig - den har nu tagits " -"bort från din beställning." - -# @ woocommerce -#: classes/class-wc-coupon.php:451 -#, php-format -msgid "" -"Sorry, it seems the coupon \"%s\" is not yours - it has now been removed " -"from your order." -msgstr "" -"Tyvärr, det ser ut som att kupongen \"%s\" inte är din - den har nu tagits " -"bort från din beställning." - -# @ woocommerce -#: classes/class-wc-cart.php:883 classes/class-wc-cart.php:891 -#, php-format -msgid "" -"%s You cannot add that amount to the " -"cart — we have %s in stock and you already have %s in your cart." -msgstr "" -"%s Du kan inte lägga till det antalet i " -"varukorgen — vi har %s i lager och du har redan %s i din varukorg." - -# @ woocommerce -#: classes/class-wc-checkout.php:65 -msgctxt "placeholder" -msgid "Username" -msgstr "Användarnamn" - -# @ woocommerce -#: classes/class-wc-checkout.php:73 -msgctxt "placeholder" -msgid "Password" -msgstr "Lösenord" - -# @ woocommerce -#: classes/class-wc-checkout.php:90 -msgctxt "placeholder" -msgid "Notes about your order, e.g. special notes for delivery." -msgstr "Noteringar angående din order." - -# @ woocommerce -#: classes/class-wc-checkout.php:453 -#, php-format -msgid "(%s) is not a valid postcode/ZIP." -msgstr "(%s) är ett ogiltigt postnummer." - -# @ woocommerce -#: classes/class-wc-checkout.php:474 -msgid "is not valid. Please enter one of the following:" -msgstr "är ogiltig(t). Vänligen ange en/ett av de följande:" - -# @ woocommerce -#: classes/class-wc-checkout.php:637 woocommerce-functions.php:788 -msgid "" -"Couldn’t register you… please contact us if you continue to " -"have problems." -msgstr "" -"Kunde inte registrera dig, vänligen kontakta oss om du upplever problem igen." - -# @ woocommerce -#: classes/class-wc-checkout.php:152 -#, php-format -msgid "Order – %s" -msgstr "Order – %s" - -# @ woocommerce -#: classes/class-wc-checkout.php:152 -#, php-format -msgctxt "Order date parsed by strftime" -msgid "%b %d, %Y @ %I:%M %p" -msgstr "%b %d, %Y @ %I:%M %p" - -# @ woocommerce -#: classes/class-wc-checkout.php:278 -msgid "Backordered" -msgstr "Återbeställd" - -# @ woocommerce -#: classes/class-wc-countries.php:38 -msgid "Åland Islands" -msgstr "Åland Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:217 -msgid "Saint Barthélemy" -msgstr "Saint Barthélemy" - -# @ woocommerce -#: classes/class-wc-countries.php:226 -msgid "São Tomé and Príncipe" -msgstr "São Tomé and Príncipe" - -# @ woocommerce -#: i18n/states/BR.php:20 -msgid "Espírito Santo" -msgstr "Espírito Santo" - -# @ woocommerce -#: i18n/states/BR.php:27 -msgid "Paraíba" -msgstr "Paraíba" - -# @ woocommerce -#: i18n/states/HK.php:14 -msgid "Kowloon" -msgstr "Kowloon" - -# @ woocommerce -#: classes/class-wc-countries.php:790 -msgid "Canton" -msgstr "Canton" - -# @ woocommerce -#: classes/class-wc-coupon.php:460 -msgid "Coupon usage limit has been reached." -msgstr "Kupongens värde är uppnått." - -# @ woocommerce -#: classes/class-wc-coupon.php:463 -msgid "This coupon has expired." -msgstr "Denna kupong har upphört." - -# @ woocommerce -#: classes/class-wc-coupon.php:466 -#, php-format -msgid "The minimum spend for this coupon is %s." -msgstr "Du måste handla för minst %s för att kunna använda denna kupong." - -# @ woocommerce -#: classes/class-wc-emails.php:288 classes/class-wc-emails.php:320 -#: classes/class-wc-emails.php:364 -#, php-format -msgid "Product #%s - %s" -msgstr "Produkt #%s - %s" - -# @ woocommerce -#: classes/class-wc-emails.php:366 -#, php-format -msgid "%s units of %s have been backordered in order #%s." -msgstr "%s av %s har återbeställts i order #%s." - -# @ woocommerce -#: classes/class-wc-emails.php:246 -msgid "Note" -msgstr "Notering" - -# @ woocommerce -#: classes/class-wc-order.php:283 -msgctxt "hash before order number" -msgid "#" -msgstr "#" - -# @ woocommerce -#: classes/class-wc-order.php:886 -#, php-format -msgid " %svia %s" -msgstr " %svia %s" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:551 -#, php-format -msgid "Only %s left in stock" -msgstr "Endast %s kvar i lager" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:81 -msgid "Enable Cash on Delivery" -msgstr "Aktivera förskottsbetalning (Cash on Delivery)" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:31 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:168 -msgid "Mijireh Checkout" -msgstr "Mijireh-kassa" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:108 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:293 -msgid "Mijireh error:" -msgstr "Mijireh-error:" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:132 -msgid "Enable Mijireh Checkout" -msgstr "Aktivera Mijireh-kassafunktionen" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:136 -msgid "Access Key" -msgstr "Behörighetsnyckel" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:138 -msgid "The Mijireh access key for your store." -msgstr "Mijireh-behörighetsnyckeln för din butik." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:146 -msgid "Credit Card" -msgstr "Kreditkort" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:172 -msgid "Get started with Mijireh Checkout" -msgstr "Kom igång med Mijireh-kassan" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:173 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site. Mijireh supports a wide variety of payment gateways: Stripe, " -"Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and more." -msgstr "" -"levererar en komplett PCI-medgörlig, säker metod för att samla in och sända " -"kreditkortsdata till din förmedlingsnod för betalning samtidigt som du " -"behåller kontrollen över utseendet på din sajt. Mijireh har stöd för ett " -"brett utbud av förmedlingsnoder för betalningar: Stripe, Authorize.net, " -"PayPal, eWay, SagePay, Braintree, PayLeap, med flera." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:175 -msgid "Join for free" -msgstr "Gå med utan kostnad" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:175 -msgid "Learn more about WooCommerce and Mijireh" -msgstr "Lär dig mer om WooCommerce och Mijireh" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:179 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site." -msgstr "" -"levererar en komplett PCI-medgörlig, säker metod för att samla in och sända " -"kreditkortsdata till din förmedlingsnod för betalning samtidigt som du " -"behåller kontrollen över utseendet på din sajt" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:184 -msgid "Send shipping details to PayPal instead of billing." -msgstr "Skicka leveransuppgifter till PayPal istället för fakturering." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:186 -msgid "" -"PayPal allows us to send 1 address. If you are using PayPal for shipping " -"labels you may prefer to send the shipping address rather than billing." -msgstr "" -"PayPal låter oss sända 1 adress. Om du använder PayPal för fraktsedlar " -"kanske du föredrar att sända leveransadressen snarare än " -"faktureringsadressen." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:190 -msgid "Address override" -msgstr "Adress-åsidosättande" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:192 -msgid "" -"Enable \"address_override\" to prevent address information from being " -"changed." -msgstr "" -"Aktivera \"address_override\" för att motverka att adressinformation ändras." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:193 -msgid "" -"PayPal verifies addresses therefore this setting can cause errors (we " -"recommend keeping it disabled)." -msgstr "" -"PayPal verifierar adresser och den här inställningen kan orsaka ett fel (vår " -"rekommendation är att ha funktionen deaktiverad)." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:162 -msgid "Submission method" -msgstr "Sändningsmetod" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:164 -msgid "Use form submission method." -msgstr "Använd metod för sändning av formulär." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:165 -msgid "" -"Enable this to post order data to PayPal via a form instead of using a " -"redirect/querystring." -msgstr "" -"Aktivera detta för att sända beställningsdata till PayPal via formulär " -"istället för omdirigering/kodsträng." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:169 -msgid "Page Style" -msgstr "Sidutseende" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:171 -msgid "" -"Optionally enter the name of the page style you wish to use. These are " -"defined within your PayPal account." -msgstr "" -"Alternativt ange namnet på det sidutseende du vill använda. Dessa definieras " -"i ditt PayPal-konto." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:206 -#, php-format -msgid "" -"PayPal sandbox can be used to test payments. Sign up for a developer account " -"here." -msgstr "" -"PayPals sandlåda kan använda för att testa betalningar. Registrera ett " -"utvecklarkonto here." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:209 -msgid "Debug Log" -msgstr "Debugg-logg" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:211 -msgid "Enable logging" -msgstr "Aktivera loggning" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:331 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:385 -msgid "Shipping via" -msgstr "Leverans via" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:700 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:718 -#, php-format -msgid "Order %s has been marked as refunded - PayPal reason code: %s" -msgstr "Order %s har markerats som återbetald - PayPals anledningskod: %s" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:703 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:721 -#, php-format -msgid "Payment for order %s refunded/reversed" -msgstr "Betalning för order %s återbetald/krediterad" - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:52 -msgid "Enable this option to show the ShareDaddy button on the product page." -msgstr "Välj detta för att visa ShareDaddy-knappen på produktsidan." - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:69 -msgid "ShareThis Code" -msgstr "ShareThis-kod" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:70 -msgid "You can tweak the ShareThis code by editing this option." -msgstr "Du kan förändra ShareThis-koden genom att redigera detta alternativ." - -# @ woocommerce -# @ default -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:22 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:329 -msgid "ShareYourCart" -msgstr "ShareYourCart" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:33 -msgid "Setup your ShareYourCart account" -msgstr "Skapa ditt ShareYourCart-konto" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Create an account" -msgstr "Skapa ett konto" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Can't access your account?" -msgstr "Kan du inte komma åt ditt konto?" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:100 -msgid "Configure" -msgstr "Konfigurera" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/button-settings-page.php:8 -#: classes/integrations/shareyourcart/views/button-settings-page.php:11 -msgid "Button style" -msgstr "Knapp-utseende" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:116 -msgid "Cost per order" -msgstr "Kostnad per order" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:160 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:126 -msgid "" -"Enter a minimum fee amount. Fee's less than this will be increased. Leave " -"blank to disable." -msgstr "" -"Ange ett lägsta belopp. Avgifter lägre än detta kommer att ökas. Lämna " -"blankt för att deaktivera." - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 -msgid "Fixed amount" -msgstr "Fast belopp" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:117 -msgid "Percentage of cart total" -msgstr "Procent av varukorgens total" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:118 -msgid "Fixed amount per product" -msgstr "Fast belopp per produkt" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:123 -msgid "Delivery Fee" -msgstr "Leveransavgift" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:129 -msgid "" -"What fee do you want to charge for local delivery, disregarded if you choose " -"free. Leave blank to disable." -msgstr "" -"Vilken avgift vill du ta ut för lokal leverans, förbisett om du väljer " -"gratis. Lämna tomt för att deaktivera." - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:135 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:91 -msgid "Zip/Post Codes" -msgstr "Postnummer" - -# @ woocommerce -#: classes/class-wc-coupon.php:498 -msgid "Please enter a coupon code." -msgstr "Vänligen mata in en kupongkod." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:51 -msgid "Please enter a valid order ID" -msgstr "Vänligen mata in ett giltigt order-ID" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:55 -msgid "Please enter a valid order email" -msgstr "Vänligen ange en giltig orderkopplad e-postadress" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:74 -msgid "Sorry, we could not find that order id in our database." -msgstr "Tyvärr, vi kunde inte hitta det order-ID-numret i vår databas." - -# @ woocommerce -#: woocommerce-template.php:219 -#, php-format -msgid "Search Results: “%s”" -msgstr "Sökresultat: “%s”" - -# @ woocommerce -#: woocommerce-template.php:222 -#, php-format -msgid " – Page %s" -msgstr " – Sida %s" - -# @ woocommerce -#: templates/checkout/form-billing.php:17 -msgid "Billing & Shipping" -msgstr "Fakturering & Leverans" - -# @ woocommerce -#: templates/checkout/form-shipping.php:32 -msgid "Ship to billing address?" -msgstr "Skicka till faktureringsadress?" - -# @ woocommerce -#: templates/emails/customer-new-account.php:14 -#: templates/emails/plain/customer-new-account.php:13 -#, php-format -msgid "" -"Thanks for creating an account on %s. Your username is %s." -msgstr "" -"Tack för att du skapat ett konto på %s. Ditt användarnamn är %s." - -# @ woocommerce -#: templates/emails/customer-new-account.php:16 -#: templates/emails/plain/customer-new-account.php:15 -#, php-format -msgid "You can access your account area here: %s." -msgstr "Du når ditt konto här: %s." - -# @ woocommerce -#: templates/order/order-details.php:90 -msgid "Order Again" -msgstr "Beställ igen" - -# @ woocommerce -#: templates/order/tracking.php:18 -#, php-format -msgid "Order %s which was made %s has the status “%s”" -msgstr "Order %s som gjordes %s har status “%s”" - -# @ woocommerce -#: templates/order/tracking.php:18 -msgid "ago" -msgstr "sedan" - -# @ woocommerce -#: templates/single-product/add-to-cart/variable.php:69 -msgid "Clear selection" -msgstr "Rensa" - -# @ woocommerce -#: templates/single-product/review.php:40 -msgid "verified owner" -msgstr "Verifierad ägare" - -# @ woocommerce -#: templates/single-product-reviews.php:97 -msgid "Rate…" -msgstr "Betygsätt…" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:196 -msgid "Hide free products" -msgstr "Dölj gratis produkter" - -# @ woocommerce -#: classes/widgets/class-wc-widget-cart.php:33 -msgid "Display the user's Cart in the sidebar." -msgstr "Visa användarens varukorg i sidokolumnen." - -# @ woocommerce -#: classes/widgets/class-wc-widget-cart.php:35 -msgid "WooCommerce Cart" -msgstr "WooCommerce Varukorgen" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:129 -msgid "No product categories exist." -msgstr "Inga produktkategorier existerar." - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:97 -#, php-format -msgctxt "by comment author" -msgid "by %1$s" -msgstr "av %1$s" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:58 woocommerce.php:789 -msgctxt "slug" -msgid "product" -msgstr "produkt" - -# @ woocommerce -#: woocommerce-core-functions.php:1566 -msgid "Uncategorized" -msgstr "Okategoriserad" - -# @ woocommerce -#: woocommerce-functions.php:872 -msgid "The cart has been filled with the items from your previous order." -msgstr "Kundvagnen har fyllts med varorna från din förra beställning." - -# @ woocommerce -#: woocommerce-template.php:1341 -msgid "Update country" -msgstr "Uppdatera land" - -# @ woocommerce -#: woocommerce.php:861 -msgctxt "Admin menu name" -msgid "Tags" -msgstr "Etiketter" - -# @ woocommerce -#: woocommerce.php:892 -msgctxt "Admin menu name" -msgid "Shipping Classes" -msgstr "Fraktklasser" - -# @ woocommerce -#: woocommerce.php:984 -msgctxt "Admin menu name" -msgid "Products" -msgstr "Produkter" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:142 admin/woocommerce-admin-init.php:144 -#: woocommerce.php:1049 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Ordrar" - -# @ woocommerce -#: woocommerce.php:1097 -msgctxt "Admin menu name" -msgid "Coupons" -msgstr "Kuponger" - -# @ woocommerce -#: woocommerce.php:1207 -msgid "Please select a rating" -msgstr "Var god välj betyg" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:53 -msgid "Virtual products are intangible and aren't shipped." -msgstr "Virtuella produkter är immateriella och skickas inte." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:59 -msgid "Downloadable products give access to a file upon purchase." -msgstr "" -"Nedladdningsbara produkter ger tillgång till en fil efter genomfört köp." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:87 -msgid "Advanced" -msgstr "Avancerad" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "" -"SKU refers to a Stock-keeping unit, a unique identifier for each distinct " -"product and service that can be purchased." -msgstr "" -"SKU är en referens till Stock-keep unit, på svenska 'artikelnummer', en unik " -"identifierare för varje vara eller tjänst som kan köpas." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:273 -msgid "Weight in decimal form" -msgstr "Vikt i decimalform" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:290 -msgid "LxWxH in decimal form" -msgstr "LxBxH i decimalform" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:617 -msgid "Menu order" -msgstr "Menyordning" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:617 -msgid "Custom ordering position." -msgstr "Anpassad sorteringsordning." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:625 -msgid "Enable reviews" -msgstr "Aktivera kundrecensioner" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1046 -msgid "Catalog/search" -msgstr "Katalog/sök" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1053 -msgid "Catalog visibility:" -msgstr "Katalog synlighet:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1069 -msgid "" -"Define the loops this product should be visible in. The product will still " -"be accessible directly." -msgstr "" -"Definierar loopen som den här produkten kommer att vara synlig inom. " -"Produkten kommer fortfarande att kunna nås via en direktlänk." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1075 -msgid "Enable this option to feature this product." -msgstr "Aktivera för att framhäva den här produkten." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1077 -msgid "Featured Product" -msgstr "Framhävd produkt (featured)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1081 -msgid "OK" -msgstr "OK" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:104 -msgid "Taxes by month" -msgstr "Moms per månad" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2314 -msgid "Total taxes for year" -msgstr "Total moms per år" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2325 -msgid "Total product taxes for year" -msgstr "Total produktmoms per år" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2336 -msgid "Total shipping tax for year" -msgstr "Total fraktmoms per år" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2352 -msgid "Total Sales" -msgstr "Total försäljning" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2352 -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "Den här är summan av 'Ordertotal'-fälten för dina ordrar." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2353 -msgid "Total Shipping" -msgstr "Total frakt" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2353 -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "Det här är summan av totala fraktkostnader-fältet för dina ordrar." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2354 -msgid "Total Product Taxes" -msgstr "Total för produkters moms" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2354 -msgid "This is the sum of the 'Cart Tax' field within your orders." -msgstr "Summa för 'Varukorgsmoms' för dina kundordrar." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2355 -msgid "Total Shipping Taxes" -msgstr "Total för fraktmoms" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2355 -msgid "This is the sum of the 'Shipping Tax' field within your orders." -msgstr "Summa fraktmoms för dina kundordrar." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2356 -msgid "Total Taxes" -msgstr "Total för moms" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2356 -msgid "" -"This is the sum of the 'Cart Tax' and 'Shipping Tax' fields within your " -"orders." -msgstr "Summa 'Varukorgens moms' och 'Fraktmoms\\\" för dina kundordrar." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2357 -msgid "Net profit" -msgstr "Nettovinst" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2357 -msgid "Total sales minus shipping and tax." -msgstr "Total försäljning minus frakt och moms." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2402 -msgid "Toggle tax rows" -msgstr "Visa-dölj momsrader" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:82 -msgid "Account Details" -msgstr "Kontouppgifter" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:84 -msgid "Optionally enter your bank details below for customers to pay into." -msgstr "Ange dina bankuppgifter nedan för kunder att betala till." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:177 -msgid "Shipping options" -msgstr "Fraktval" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:197 -msgid "Gateway Testing" -msgstr "Test av förmedlingsnod" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:20 -msgid "jS F Y" -msgstr "jS F Y" - -# @ woocommerce -#: woocommerce.php:825 -msgctxt "Admin menu name" -msgid "Categories" -msgstr "Kategorier" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:208 -msgid "Load billing address" -msgstr "Ladda faktureringsadress" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Load shipping address" -msgstr "Ladda leveransadress" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Copy from billing" -msgstr "Kopiera från fakturering" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:581 -#: admin/post-types/writepanels/writepanel-order_data.php:583 -#: admin/post-types/writepanels/writepanel-order_data.php:682 -#: admin/post-types/writepanels/writepanel-order_data.php:684 -msgid "Other" -msgstr "Annan" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:544 -msgid "The shipping title the customer sees" -msgstr "Namn på frakten, som kunden ser" - -# @ woocommerce -#: admin/settings/settings-init.php:151 -msgid "Allow registration on the checkout page" -msgstr "Tillåt registrering (av användarkonto) i kassan" - -# @ woocommerce -#: admin/settings/settings-init.php:159 -msgid "Allow registration on the \"My Account\" page" -msgstr "Tillåt registrering på \"Mitt Konto\"-sidan" - -# @ woocommerce -#: admin/settings/settings-init.php:167 -msgid "Register using the email address for the username" -msgstr "Registrera med e-postadress som användarnamn" - -# @ woocommerce -#: admin/settings/settings-init.php:84 -msgid "Store Notice" -msgstr "Butiksnotering" - -# @ woocommerce -#: admin/settings/settings-init.php:92 -msgid "Store Notice Text" -msgstr "Butiksnoteringstext" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:214 -msgid "Order total:" -msgstr "Beställning total:" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:395 -msgid "Order Statuses" -msgstr "Orderstatus" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:176 -msgid "Country or state code" -msgstr "Land eller kod för stat" - -# @ woocommerce -#: classes/class-wc-countries.php:141 -msgid "Republic of Ireland" -msgstr "Irland" - -# @ woocommerce -#: i18n/states/BR.php:19 -msgid "Distrito Federal" -msgstr "Brasiliens federala distrikt" - -# @ woocommerce -#: i18n/states/BR.php:32 -msgid "Rio Grande do Norte" -msgstr "Rio Grande do Norte" - -# @ woocommerce -#: i18n/states/BR.php:33 -msgid "Rio Grande do Sul" -msgstr "Rio Grande do Sul" - -# @ woocommerce -#: i18n/states/BR.php:36 -msgid "Santa Catarina" -msgstr "Santa Catarina" - -# @ woocommerce -#: i18n/states/BR.php:23 -msgid "Mato Grosso" -msgstr "Mato Grosso" - -# @ woocommerce -#: i18n/states/BR.php:24 -msgid "Mato Grosso do Sul" -msgstr "Mato Grosso do Sul" - -# @ woocommerce -#: i18n/states/BR.php:31 -msgid "Rio de Janeiro" -msgstr "Rio de Janeiro" - -# @ woocommerce -#: i18n/states/BR.php:37 -msgid "São Paulo" -msgstr "São Paulo" - -# @ woocommerce -#: i18n/states/BR.php:25 -msgid "Minas Gerais" -msgstr "Minas Gerais" - -# @ woocommerce -#: i18n/states/HZ.php:20 i18n/states/NZ.php:13 -msgid "Northland" -msgstr "Northland" - -# @ woocommerce -#: i18n/states/HZ.php:13 i18n/states/NZ.php:14 -msgid "Auckland" -msgstr "Auckland" - -# @ woocommerce -#: i18n/states/HZ.php:25 i18n/states/NZ.php:15 -msgid "Waikato" -msgstr "Waikato" - -# @ woocommerce -#: i18n/states/HZ.php:14 i18n/states/NZ.php:16 -msgid "Bay of Plenty" -msgstr "Bay of Plenty" - -# @ woocommerce -#: i18n/states/HZ.php:23 i18n/states/NZ.php:17 -msgid "Taranaki" -msgstr "Taranaki" - -# @ woocommerce -#: i18n/states/HZ.php:16 i18n/states/NZ.php:18 -msgid "Hawke’s Bay" -msgstr "Hawke’s Bay" - -# @ woocommerce -#: i18n/states/HZ.php:17 i18n/states/NZ.php:19 -msgid "Manawatu-Wanganui" -msgstr "Manawatu-Wanganui" - -# @ woocommerce -#: i18n/states/HZ.php:26 i18n/states/NZ.php:20 -msgid "Wellington" -msgstr "Wellington" - -# @ woocommerce -#: i18n/states/HZ.php:19 i18n/states/NZ.php:21 -msgid "Nelson" -msgstr "Nelson" - -# @ woocommerce -#: i18n/states/HZ.php:18 i18n/states/NZ.php:22 -msgid "Marlborough" -msgstr "Marlborough" - -# @ woocommerce -#: i18n/states/HZ.php:24 i18n/states/NZ.php:23 -msgid "Tasman" -msgstr "Tasman" - -# @ woocommerce -#: i18n/states/HZ.php:27 i18n/states/NZ.php:24 -msgid "West Coast" -msgstr "West Coast" - -# @ woocommerce -#: i18n/states/HZ.php:15 i18n/states/NZ.php:25 -msgid "Canterbury" -msgstr "Canterbury" - -# @ woocommerce -#: i18n/states/HZ.php:21 i18n/states/NZ.php:26 -msgid "Otago" -msgstr "Otago" - -# @ woocommerce -#: i18n/states/HZ.php:22 i18n/states/NZ.php:27 -msgid "Southland" -msgstr "Southland" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:155 -msgid "Invoice Prefix" -msgstr "Faktura-prefix" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:88 -msgid "Add event tracking code for add to cart actions" -msgstr "Lägg till händelsespårningskod för Lägg till i varukorg-användning" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:294 -msgid "Add to Cart" -msgstr "Lägg i varukorg" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:58 -#, php-format -msgid "" -"Order %s made on %s" -msgstr "" -"Order %s lagd " -"%s" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:59 -#, php-format -msgid "Order status: %s" -msgstr "Orderstatus: %s" - -# @ woocommerce -#: templates/checkout/form-billing.php:51 -msgid "" -"Create an account by entering the information below. If you are a returning " -"customer please login at the top of the page." -msgstr "" -"Skapa ett konto genom att fylla i information nedan. Om du är en " -"återvändande kund vänligen logga in högst upp på den här sidan." - -# @ woocommerce -#: templates/checkout/form-login.php:22 -msgid "" -"If you have shopped with us before, please enter your details in the boxes " -"below. If you are a new customer please proceed to the Billing & " -"Shipping section." -msgstr "" -"Om du har handlat av oss tidigare, vänligen fyll i dina uppgifter i boxarna " -"nedan. Om du är ny kund vänligen fortsättning till fakturerings- och " -"leveranssektionen." - -# @ woocommerce -#: templates/myaccount/form-login.php:29 -#: templates/myaccount/form-lost-password.php:24 -#: templates/shop/form-login.php:20 -msgid "Username or email" -msgstr "Användarnamn eller e-postadress" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:204 -msgid "Only show children for the current category" -msgstr "Visa endast barn för den aktuella kategorin" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:645 -#, php-format -msgid "Validation error: PayPal amounts do not match (gross %s)." -msgstr "Valideringsfel: PayPal-belopp matchar inte (brutto %s)." - -# @ woocommerce -#: admin/importers/importers-init.php:13 -msgid "WooCommerce Tax Rates (CSV)" -msgstr "WooCommerce skattesatser (CSV)" - -# @ woocommerce -#: admin/importers/importers-init.php:13 -msgid "Import tax rates to your store via a csv file." -msgstr "Importera skattesatser till din butik via en CSV-fil." - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:103 -#: admin/importers/tax-rates-importer.php:188 -#: admin/importers/tax-rates-importer.php:228 -#: admin/importers/tax-rates-importer.php:243 -msgid "Sorry, there has been an error." -msgstr "Oj, nu blev det fel." - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:104 -msgid "The file does not exist, please try again." -msgstr "Filen finns inte, vänligen försök igen." - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:189 -msgid "The CSV is invalid." -msgstr "CSV-filen är ogiltig." - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:200 -#, php-format -msgid "" -"Import complete - imported %s tax rates and skipped " -"%s." -msgstr "" -"Import genomförd - importerade %s skattesatser och skippade " -"%s." - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:210 -msgid "All done!" -msgstr "Allt klart!" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:210 -msgid "View Tax Rates" -msgstr "Visa skattesatser" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:261 -msgid "Import Tax Rates" -msgstr "Importera skattesatser" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:284 -msgid "" -"Hi there! Upload a CSV file containing tax rates to import the contents into " -"your shop. Choose a .csv file to upload, then click \"Upload file and import" -"\"." -msgstr "" -"Hej! Ladda upp en CSV-fil som innehåller skattesatser för att importera " -"innehåll in i din butik. Välj en .csv-fil att ladda upp, klicka därefter på " -"\"Upload file and import\"." - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:286 -#, php-format -msgid "" -"Tax rates need to be defined with columns in a specific order (10 columns). " -"Click here to download a sample." -msgstr "" -"Momssatser måste definieras med kolumnerna i en specifik ordning (10 " -"kolumner). Klicka här för att ladda ner ett exempel." - -# @ default -#: admin/importers/tax-rates-importer.php:294 -msgid "" -"Before you can upload your import file, you will need to fix the following " -"error:" -msgstr "Innan du kan ladda upp importfilen måste du åtgärda följande fel:" - -# @ default -#: admin/importers/tax-rates-importer.php:303 -msgid "Choose a file from your computer:" -msgstr "Välj en fil från din dator:" - -# @ default -#: admin/importers/tax-rates-importer.php:309 -#, php-format -msgid "Maximum size: %s" -msgstr "Max storlek: %s" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:314 -msgid "OR enter path to file:" -msgstr "ELLER ange sökväg till fil:" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:321 -msgid "Delimiter" -msgstr "Avdelare" - -# @ default -#: admin/importers/tax-rates-importer.php:327 -msgid "Upload file and import" -msgstr "Ladda upp fil och importera" - -# @ woocommerce -#: admin/includes/welcome.php:154 woocommerce.php:171 -msgid "Docs" -msgstr "Dokument" - -# @ woocommerce -#: admin/includes/notice-theme-support.php:6 -msgid "" -"Your theme does not declare WooCommerce support – if " -"you encounter layout issues please read our integration guide or choose a " -"WooCommerce theme :)" -msgstr "" -"Ditt tema har inte deklarerat WooCommerce-support – " -"Om du ser problem med layouten vänligen läs integrationsguiden eller välj " -"ett dedikerad WooCommerce-tema :)" - -# @ woocommerce -#: admin/includes/notice-theme-support.php:7 -msgid "Theme Integration Guide" -msgstr "Tema integrationsguide" - -# @ woocommerce -#: admin/includes/notice-theme-support.php:7 -msgid "Hide this notice" -msgstr "Dölj notis" - -# @ woocommerce -#: admin/includes/notice-update.php:6 -msgid "" -"Data Update Required – We just need to update your " -"install to the latest version" -msgstr "" -"Datauppdatering nödvändig – Vi behöver bara uppdatera " -"din installation till den senaste versionen" - -# @ woocommerce -#: admin/includes/notice-update.php:7 -msgid "Run the updater" -msgstr "Kör uppdateraren" - -# @ woocommerce -#: admin/includes/notice-update.php:12 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" -"Det är verkligen rekommenderat att du tar en backup av din databas innan du " -"fortsätter. Är du säker på att du vill köra uppdateraren nu?" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:179 -#: admin/woocommerce-admin-install.php:207 -msgctxt "page_slug" -msgid "lost-password" -msgstr "lost-password" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:179 -#: admin/woocommerce-admin-install.php:207 -#: admin/woocommerce-admin-status.php:335 -msgid "Lost Password" -msgstr "Förlorad lösenord" - -# @ default -#: admin/post-types/product.php:151 -msgid "Edit this item" -msgstr "Redigera denna produkt" - -# @ woocommerce -#: admin/post-types/product.php:251 -msgid "Toggle featured" -msgstr "Toggla rekommenderad" - -# @ woocommerce -#: admin/post-types/product.php:253 -msgid "yes" -msgstr "ja" - -# @ woocommerce -#: admin/post-types/product.php:255 -msgid "no" -msgstr "nej" - -# @ woocommerce -#: admin/post-types/product.php:796 admin/post-types/product.php:820 -msgid "Increase by (fixed amount or %):" -msgstr "Öka med (fast belopp eller %).)" - -# @ woocommerce -#: admin/post-types/product.php:797 admin/post-types/product.php:821 -msgid "Decrease by (fixed amount or %):" -msgstr "Minska med (fast belopp eller %)." - -# @ woocommerce -#: admin/post-types/product.php:807 admin/post-types/product.php:832 -msgid "Enter price" -msgstr "Ange pris" - -# @ woocommerce -#: admin/post-types/product.php:822 -msgid "Decrease regular price by (fixed amount or %):" -msgstr "Minska ordinarie pris med (fast belopp eller %)." - -# @ woocommerce -#: admin/post-types/product.php:1222 -msgid "Insert into product" -msgstr "Addera till produkt" - -# @ woocommerce -#: admin/post-types/product.php:1223 -msgid "Uploaded to this product" -msgstr "Upladdat till den här produkten" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:30 -msgid "Usage / Limit" -msgstr "Användning / Begränsning" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:56 -msgid "Edit coupon" -msgstr "Redigera kupong" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:114 -#, php-format -msgid "%s / %s" -msgstr "%s / %s" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:116 -#, php-format -msgid "%s / ∞" -msgstr "%s / ∞" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:9 -#, php-format -msgid "File %d: %s" -msgstr "Fil %d: %s" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:10 -msgid "Fee Name" -msgstr "Avgiftsnamn" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:6 -msgid "Tax Rate:" -msgstr "Skattesats:" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:16 -#: admin/post-types/writepanels/writepanel-order_data.php:630 -msgid "Sales Tax:" -msgstr "Moms:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:63 -msgid "" -"Enter a quantity to enable stock management at variation level, or leave " -"blank to use the parent product's options." -msgstr "" -"Ange ett antal för att möjliggöra lagerhantering på variationsnivå, eller " -"lämna tomt för att använda inställningarna hos moderprodukten." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:72 -msgid "Regular Price:" -msgstr "Ordinarie pris:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:73 -msgid "Variation price (required)" -msgstr "Variations pris (krävs)" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:76 -msgid "Cancel schedule" -msgstr "Avbryt schemaläggning" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:83 -msgid "Sale start date:" -msgstr "Rea startdatum:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:87 -msgid "Sale end date:" -msgstr "Rea slutdatum:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:141 -msgid "File paths:" -msgstr "Sökvägar:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:141 -msgid "" -"Enter one or more File Paths, one per line, to make this variation a " -"downloadable product, or leave blank." -msgstr "" -"Ange eller flera sökvägar, en per rad, för att göra denna variation till en " -"nedladdningsbar produkt, eller lämna tomt." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:142 -#: admin/post-types/writepanels/writepanel-product_data.php:153 -msgid "File paths/URLs, one per line" -msgstr "Sökvägar/URLar, en per rad" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:143 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Choose a file" -msgstr "Välj en fil" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:143 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Insert file URL" -msgstr "Ange filens URL" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:156 -msgid "Download Expiry:" -msgstr "Nedladdning upphörande:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Coupon description" -msgstr "Kupongbeskrivning" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Optionally enter a description for this coupon for your reference." -msgstr "" -"Valfritt, ange en beskrivning av den här kupongen för din egen referens." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -#, php-format -msgid "" -"Check this box if the coupon grants free shipping. The free " -"shipping method must be enabled with the \"must use coupon\" setting " -"checked." -msgstr "" -"Kryssa den här rutaan om kupongen ger fri frakt. Metoden free " -"shipping method måste vara aktiverad med \"must use coupon\" ikryssad." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "" -"Check this box if the coupon cannot be used in conjunction with other " -"coupons." -msgstr "" -"Kryssa den här rutan om kupongen inte kan kombineras med andra kuponger." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "" -"Check this box if the coupon should be applied before calculating cart tax." -msgstr "" -"Kryssa den här rutan om kupongen ska appliceras före beräkning av " -"skattesatser (t.ex. moms)." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "Exclude sale items" -msgstr "Exkludera rea-varor" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "" -"Check this box if the coupon should not apply to items on sale. Per-item " -"coupons will only work if the item is not on sale. Per-cart coupons will " -"only work if there are no sale items in the cart." -msgstr "" -"Markera den här rutan om kupongen inte ska tillämpas på reavaror. Per-" -"produktkuponger kommer bara att fungera om produkten inte är på rea. Per-" -"varukorgkuponger kommer bara att fungera om det saknas reavaror i varukorgen." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:94 -msgid "Exclude products" -msgstr "Exkludera produkter" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:116 -#: assets/js/admin/editor_plugin_lang.php:9 -msgid "Product categories" -msgstr "Produktkategorier" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:130 -msgid "Exclude categories" -msgstr "Exkludera kategorier" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "How many times this coupon can be used before it is void." -msgstr "Hur många gånger den här kupongen kan användas innan den går ut." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "The date this coupon will expire, YYYY-MM-DD." -msgstr "Datumet när den här kupongen går ut, YYYY-MM-DD." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:195 -msgid "" -"Coupon code already exists - customers will use the latest coupon with this " -"code." -msgstr "" -"Kupongkoden finns redan - kunder kommer att kunna använda befintlig kupong " -"med den här koden." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:62 -msgid "Order number" -msgstr "Ordernummer" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:67 -msgid "Customer IP:" -msgstr "Kundens IP:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:74 -msgid "General Details" -msgstr "Generella uppgifter" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:349 -msgid "Line subtotals are before pre-tax discounts, totals are after." -msgstr "Delsumma per orderrad är innan före-moms-rabatter, totaler är efteråt." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:388 -msgid "Delete Lines" -msgstr "Radera rader" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:390 -msgid "Stock Actions" -msgstr "Lagerhändelser" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:391 -msgid "Reduce Line Stock" -msgstr "Reducera lagersaldo" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:392 -msgid "Increase Line Stock" -msgstr "Öka lagersaldo" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:396 -#: admin/post-types/writepanels/writepanel-order_data.php:456 -msgid "Apply" -msgstr "Applicera" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:403 -msgid "Add fee" -msgstr "Lägg till avgift" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:434 -msgid "Resend order emails" -msgstr "Skicka om ordermail" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:502 -msgid "Discounts before tax - calculated by comparing subtotals to totals." -msgstr "" -"Rabatter för skatt - kalkyleras genom att jämföra delsummor med totaler." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:510 -msgid "Discounts after tax - user defined." -msgstr "Rabatter efter skatt - användardefinierat." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:543 -msgid "Label:" -msgstr "Beteckning:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:551 -msgid "Cost:" -msgstr "Kostnad:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:559 -msgid "Method:" -msgstr "Metod:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:630 -msgid "Total tax for line items + fees." -msgstr "Total skatt för orderrader + avgifter" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:695 -msgid "Calc taxes" -msgstr "Kalk. skatter" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:697 -msgid "Calc totals" -msgstr "Kalk. totaler" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:77 -msgid "Toggle "Enabled"" -msgstr "Toggla "Aktivera"" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:78 -msgid "Toggle "Downloadable"" -msgstr "Toggla "Nedladdningsbar"" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:79 -msgid "Toggle "Virtual"" -msgstr "Toggla "Virtuell"" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:80 -msgid "Delete all variations" -msgstr "Radera alla variationer" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:93 -msgid "Go" -msgstr "Kör" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:517 -#: admin/woocommerce-admin-taxonomies.php:62 -#: admin/woocommerce-admin-taxonomies.php:154 -msgid "Choose an image" -msgstr "Välj en bild" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:519 -msgid "Set variation image" -msgstr "Bestäm variantionsbild" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:83 -msgid "Linked Products" -msgstr "Länkade produkter" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:152 -msgid "File paths (one per line)" -msgstr "Sökvägar (en per rad)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Enable stock management at product level" -msgstr "Hantera lagersaldo på produktnivå" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "Sold Individually" -msgstr "Såld individuellt" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "" -"Enable this to only allow one of this item to be bought in a single order" -msgstr "" -"Aktivera detta för att endast tillåta att en av dessa köps i en enskild order" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:515 -msgid "Save attributes" -msgstr "Spara attribut" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:590 -msgid "Set this option to make this product part of a grouped product." -msgstr "" -"Markera det här alternativet för att göra denna produkt en del av en " -"grupperad produkt." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:43 -#: admin/post-types/writepanels/writepanel-product_images.php:103 -msgid "Delete image" -msgstr "Radera bild" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:54 -msgid "Add product gallery images" -msgstr "Lägg till bilder till produktgalleri" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:80 -msgid "Add Images to Product Gallery" -msgstr "Lägg till bilder till produktgalleri" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:82 -msgid "Add to gallery" -msgstr "Addera till galleri" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:47 -msgid "Product Gallery" -msgstr "Produktgalleri" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "Order Items" -msgstr "Orderrader" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "" -"Note: if you edit quantities or remove items from the order you will need to " -"manually update stock levels." -msgstr "" -"Not: om du redigerar antal eller tar bort saker från ordern måste du " -"manuellt uppdatera lagersaldot." - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "Downloadable Product Permissions" -msgstr "Rättigheter för nedladdningsbara produkter" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "" -"Note: Permissions for order items will automatically be granted when the " -"order status changes to processing/completed." -msgstr "" -"Not: Rättigheten till orderinnehåll kommer att aktiveras automatiskt när " -"oderstatus ändras till processar/genomförd." - -# @ woocommerce -#: admin/settings/settings-init.php:19 -#, php-format -msgid "Use informal localisation for %s" -msgstr "Använd informell översättning för %s" - -# @ woocommerce -#: admin/settings/settings-init.php:36 -msgid "Base Location" -msgstr "Basland" - -# @ woocommerce -#: admin/settings/settings-init.php:37 -msgid "" -"This is the base location for your business. Tax rates will be based on this " -"country." -msgstr "" -"Det här är baslandet för din butik. Momssatser kommer att baseras på det här " -"landet." - -# @ woocommerce -#: admin/settings/settings-init.php:85 -msgid "Enable site-wide store notice text" -msgstr "Aktivera butiksnotis för hela webbplatsen" - -# @ woocommerce -#: admin/settings/settings-init.php:102 -msgid "Cart, Checkout and Accounts" -msgstr "Varukorg, Kassan och Kundkonton" - -# @ woocommerce -#: admin/settings/settings-init.php:106 -msgid "Enable the use of coupons" -msgstr "Aktivera användning av kuponger (rabattkoder)" - -# @ woocommerce -#: admin/settings/settings-init.php:110 -msgid "Coupons can be applied from the cart and checkout pages." -msgstr "Kuponger kan appliceras i såväl varukorgen som i kassan." - -# @ woocommerce -#: admin/settings/settings-init.php:123 -msgid "Enable customer note field on checkout" -msgstr "Aktivera kundnoteringsfältet i kassan" - -# @ woocommerce -#: admin/settings/settings-init.php:137 -msgid "" -"Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -msgstr "Tvinga SSL (HTTPS) i kassan (ett SSL-certifikat krävs)." - -# @ woocommerce -#: admin/settings/settings-init.php:192 -msgid "Allow customers to repurchase orders from their account page" -msgstr "" -"Tillåt kunder att återköpa tidigare lagda ordrar från deras kundkontosida" - -# @ woocommerce -#: admin/settings/settings-init.php:205 -msgid "Enable WooCommerce CSS" -msgstr "Aktivera WooCommerce CSS" - -# @ woocommerce -#: admin/settings/settings-init.php:217 -msgid "Enable Lightbox" -msgstr "Aktivera Lightbox" - -# @ woocommerce -#: admin/settings/settings-init.php:220 -msgid "" -"Include WooCommerce's lightbox. Product gallery images and the add review " -"form will open in a lightbox." -msgstr "" -"Inkludera WooCommerce lightbox. Produktgalleribilder och formuläret för " -"kundrecensioner kommer att öppnas i en lightbox." - -# @ woocommerce -#: admin/settings/settings-init.php:231 -msgid "This will enable a script allowing the country fields to be searchable." -msgstr "Det här aktiverar ett script som gör landsfältet sökbart." - -# @ woocommerce -#: admin/settings/settings-init.php:236 -msgid "Downloadable Products" -msgstr "Nedladdningsbara produkter" - -# @ woocommerce -#: admin/settings/settings-init.php:239 -msgid "File Download Method" -msgstr "Metod för filnedladdning" - -# @ woocommerce -#: admin/settings/settings-init.php:255 -msgid "Access Restriction" -msgstr "Begränsa access" - -# @ woocommerce -#: admin/settings/settings-init.php:256 -msgid "Downloads require login" -msgstr "Nedladdningar kräver inloggning" - -# @ woocommerce -#: admin/settings/settings-init.php:260 -msgid "This setting does not apply to guest purchases." -msgstr "" -"Den här inställningen appliceras inte på köp av ej registrerade (gästköp)." - -# @ woocommerce -#: admin/settings/settings-init.php:269 -msgid "" -"Enable this option to grant access to downloads when orders are \"processing" -"\", rather than \"completed\"." -msgstr "" -"Aktivera det här alternativet för att ge access till nedladdningen när " -"ordrar har statusen \"processar\", snarare än \"genomförd\"." - -# @ woocommerce -#: admin/settings/settings-init.php:292 -#, php-format -msgid "" -"Set up core WooCommerce pages here, for example the base page. The base page " -"can also be used in your %sproduct permalinks%s." -msgstr "" -"Ställ in WooCommerce-grundsidorna, t.ex. butikssidan. Den sidan kan också " -"användas i dina %spermalänkinställningar%s." - -# @ woocommerce -#: admin/settings/settings-init.php:308 -msgid "Terms Page ID" -msgstr "ID för sida med köpvillkor" - -# @ woocommerce -#: admin/settings/settings-init.php:411 -msgid "Logout Page" -msgstr "Utloggningssida" - -# @ woocommerce -#: admin/settings/settings-init.php:412 -msgid "Parent: \"My Account\"" -msgstr "Förälder: \"Mitt konto\"" - -# @ woocommerce -#: admin/settings/settings-init.php:422 -msgid "Lost Password Page" -msgstr "Sida för förlorad lösenord" - -# @ woocommerce -#: admin/settings/settings-init.php:423 -msgid "Page contents: [woocommerce_lost_password] Parent: \"My Account\"" -msgstr "Sidinnehåll: [woocommerce_lost_password] Förälder: \"Mitt konto\"" - -# @ woocommerce -#: admin/settings/settings-init.php:442 -msgid "Default Product Sorting" -msgstr "Standard produktsortering" - -# @ woocommerce -#: admin/settings/settings-init.php:449 -msgid "Default sorting (custom ordering + name)" -msgstr "Standardsortering (egen sortering + namn)" - -# @ woocommerce -#: admin/settings/settings-init.php:450 -msgid "Popularity (sales)" -msgstr "Popularitet (försäljningar)" - -# @ woocommerce -#: admin/settings/settings-init.php:451 -msgid "Average Rating" -msgstr "Genomsnittligt betyg" - -# @ woocommerce -#: admin/settings/settings-init.php:453 -msgid "Sort by price (asc)" -msgstr "Sortera efter pris (stigande)" - -# @ woocommerce -#: admin/settings/settings-init.php:454 -msgid "Sort by price (desc)" -msgstr "Sortera efter pris (fallande)" - -# @ woocommerce -#: admin/settings/settings-init.php:460 -msgid "Shop Page Display" -msgstr "Bassida för butik" - -# @ woocommerce -#: admin/settings/settings-init.php:461 -msgid "This controls what is shown on the product archive." -msgstr "Det här kontrollerar vad som visas i produktarkiven." - -# @ woocommerce -#: admin/settings/settings-init.php:467 admin/settings/settings-init.php:482 -msgid "Show products" -msgstr "Visa produkter" - -# @ woocommerce -#: admin/settings/settings-init.php:469 admin/settings/settings-init.php:484 -msgid "Show both" -msgstr "Visa båda" - -# @ woocommerce -#: admin/settings/settings-init.php:475 -msgid "Default Category Display" -msgstr "Standard kategorivisning" - -# @ woocommerce -#: admin/settings/settings-init.php:476 -msgid "This controls what is shown on category archives." -msgstr "Det här kontrollerar vad som visas i kategoriarkiven." - -# @ woocommerce -#: admin/settings/settings-init.php:491 -msgid "Redirect to the cart page after successful addition" -msgstr "Omdirigera till varukorgssidan efter att produkt adderats" - -# @ woocommerce -#: admin/settings/settings-init.php:499 -msgid "Enable AJAX add to cart buttons on archives" -msgstr "Aktivera AJAX för Lägg i varukorg-knapparna i arkiven" - -# @ woocommerce -#: admin/settings/settings-init.php:511 -msgid "Product Fields" -msgstr "Produktfält" - -# @ woocommerce -#: admin/settings/settings-init.php:512 -msgid "Enable the SKU field for products" -msgstr "Aktivera artikelnummerfältet för produkter" - -# @ woocommerce -#: admin/settings/settings-init.php:520 -msgid "" -"Enable the weight field for products (some shipping methods " -"may require this)" -msgstr "" -"Aktivera viktfältet för produkter (somliga fraktmetoder kan " -"kräva detta)" - -# @ woocommerce -#: admin/settings/settings-init.php:528 -msgid "" -"Enable the dimension fields for products (some shipping " -"methods may require this)" -msgstr "" -"Aktivera måttfälten för produkter (somliga fraktmetoder kan " -"kräva detta)" - -# @ woocommerce -#: admin/settings/settings-init.php:536 -msgid "" -"Show weight and dimension values on the Additional " -"Information tab" -msgstr "" -"Visa vikt- och måttvärdenExtra information-fliken" - -# @ woocommerce -#: admin/settings/settings-init.php:578 -msgid "Enable ratings on reviews" -msgstr "Aktivera betyg på kundrecensioner" - -# @ woocommerce -#: admin/settings/settings-init.php:625 -msgid "Thousand Separator" -msgstr "Tusendelsseparerare" - -# @ woocommerce -#: admin/settings/settings-init.php:635 -msgid "Decimal Separator" -msgstr "Decimalseparerare" - -# @ woocommerce -#: admin/settings/settings-init.php:645 -msgid "Number of Decimals" -msgstr "Antal decimaler" - -# @ woocommerce -#: admin/settings/settings-init.php:659 -msgid "Trailing Zeros" -msgstr "Efterföljande nollor" - -# @ woocommerce -#: admin/settings/settings-init.php:722 -msgid "Manage Stock" -msgstr "Hantera lager" - -# @ woocommerce -#: admin/settings/settings-init.php:730 -msgid "Hold Stock (minutes)" -msgstr "Reservera artiklar (minuter)" - -# @ woocommerce -#: admin/settings/settings-init.php:731 -msgid "" -"Hold stock (for unpaid orders) for x minutes. When this limit is reached, " -"the pending order will be cancelled. Leave blank to disable." -msgstr "" -"Reservera artiklar (i obetalda ordrar) i x minuter. När denna gräns nås " -"avbryts obetalda ordrar. Lämna tomt för att avaktivera." - -# @ woocommerce -#: admin/settings/settings-init.php:760 -msgid "Notification Recipient" -msgstr "Meddelandemottagare" - -# @ woocommerce -#: admin/settings/settings-init.php:768 -msgid "Low Stock Threshold" -msgstr "Gränsvärde för lågt lagersaldo" - -# @ woocommerce -#: admin/settings/settings-init.php:781 -msgid "Out Of Stock Threshold" -msgstr "Gränsvärde för slut i lager" - -# @ woocommerce -#: admin/settings/settings-init.php:794 -msgid "Out Of Stock Visibility" -msgstr "Synlighet för slut i lager" - -# @ woocommerce -#: admin/settings/settings-init.php:802 -msgid "Stock Display Format" -msgstr "Visningsformat för lager" - -# @ woocommerce -#: admin/settings/settings-init.php:826 -msgid "Shipping Calculations" -msgstr "Fraktberäkningar" - -# @ woocommerce -#: admin/settings/settings-init.php:851 -msgid "Shipping Method Display" -msgstr "Visning av fraktmetoder" - -# @ woocommerce -#: admin/settings/settings-init.php:921 -msgid "Enable Taxes" -msgstr "Aktivera moms" - -# @ woocommerce -#: admin/settings/settings-init.php:929 -msgid "Prices Entered With Tax" -msgstr "Priser angivna med moms" - -# @ woocommerce -#: admin/settings/settings-init.php:933 -msgid "" -"This option is important as it will affect how you input prices. Changing it " -"will not update existing products." -msgstr "" -"Det här alternativet är viktigt eftersom det kommer att påverka hur du ange " -"priser. Ändring här påverkar inte befintliga produkter." - -# @ woocommerce -#: admin/settings/settings-init.php:935 -msgid "Yes, I will enter prices inclusive of tax" -msgstr "Ja, jag ska ange priser inklusive moms" - -# @ woocommerce -#: admin/settings/settings-init.php:936 -msgid "No, I will enter prices exclusive of tax" -msgstr "Nej, jag ska ange priser exklusive moms" - -# @ woocommerce -#: admin/settings/settings-init.php:941 -msgid "Calculate Tax Based On:" -msgstr "Beräkna moms baserat på:" - -# @ woocommerce -#: admin/settings/settings-init.php:943 -msgid "This option determines which address is used to calculate tax." -msgstr "" -"Det här alternativet bestämmer vilken adress som ska användas för att " -"beräkna moms." - -# @ woocommerce -#: admin/settings/settings-init.php:947 -msgid "Customer shipping address" -msgstr "Kundens leveransadress" - -# @ woocommerce -#: admin/settings/settings-init.php:948 -msgid "Customer billing address" -msgstr "Kundens faktureringsadress" - -# @ woocommerce -#: admin/settings/settings-init.php:949 admin/settings/settings-init.php:961 -msgid "Shop base address" -msgstr "Butikens adress" - -# @ woocommerce -#: admin/settings/settings-init.php:954 -msgid "Default Customer Address:" -msgstr "Standard kundadress:" - -# @ woocommerce -#: admin/settings/settings-init.php:956 -msgid "" -"This option determines the customers default address (before they input " -"their own)." -msgstr "" -"Det här alternativet bestämmer kundens standardadress (innan de anger sin " -"egen)." - -# @ woocommerce -#: admin/settings/settings-init.php:960 -msgid "No address" -msgstr "Ingen adress" - -# @ woocommerce -#: admin/settings/settings-init.php:966 -msgid "Shipping Tax Class:" -msgstr "Momsklass för frakt:" - -# @ woocommerce -#: admin/settings/settings-init.php:967 -msgid "" -"Optionally control which tax class shipping gets, or leave it so shipping " -"tax is based on the cart items themselves." -msgstr "" -"Alternativt välj vilken momsklass frakt ges, eller låt det vara så att " -"fraktmomsen baseras på innehållet i varukorgen." - -# @ woocommerce -#: admin/settings/settings-init.php:972 -msgid "Shipping tax class based on cart items" -msgstr "Momsklass för frakt baserat på varukorgens innehåll" - -# @ woocommerce -#: admin/settings/settings-init.php:977 -msgid "Rounding" -msgstr "Avrundning" - -# @ woocommerce -#: admin/settings/settings-init.php:978 -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "Avrunda på delsummenivå istället för att avrunda varje orderrad" - -# @ woocommerce -#: admin/settings/settings-init.php:985 -msgid "Additional Tax Classes" -msgstr "Extra momsklasser" - -# @ woocommerce -#: admin/settings/settings-init.php:986 -msgid "" -"List additonal tax classes below (1 per line). This is in addition to the " -"default Standard Rate. Tax classes can be assigned to products." -msgstr "" -"Lista extra momsklasser nedan (1 per rad). Detta är ett tillägg till " -"Standardmoms. Momsklasser kan kopplas till produkter." - -# @ woocommerce -#: admin/settings/settings-init.php:994 -msgid "Display prices during cart/checkout:" -msgstr "Visa priser i varukorgen/kassan:" - -# @ woocommerce -#: admin/settings/settings-init.php:999 -msgid "Including tax" -msgstr "Inkluderar moms" - -# @ woocommerce -#: admin/settings/settings-init.php:1000 -msgid "Excluding tax" -msgstr "Exkluderar moms" - -# @ woocommerce -#: admin/settings/settings-init.php:1015 -msgid "\"From\" Name" -msgstr "\"Från\" Namn" - -# @ woocommerce -#: admin/settings/settings-init.php:1024 -msgid "\"From\" Email Address" -msgstr "\"Från\" E-postadress" - -# @ woocommerce -#: admin/settings/settings-init.php:1037 -msgid "Email Template" -msgstr "Epostmall" - -# @ woocommerce -#: admin/settings/settings-init.php:1040 -msgid "Header Image" -msgstr "Sidhuvud bild" - -# @ woocommerce -#: admin/settings/settings-init.php:1049 -msgid "Email Footer Text" -msgstr "Epost text i sidfot" - -# @ woocommerce -#: admin/settings/settings-init.php:1058 -msgid "Base Colour" -msgstr "Grundfärg" - -# @ woocommerce -#: admin/settings/settings-init.php:1067 -msgid "Background Colour" -msgstr "Bakgrundsfärg" - -# @ woocommerce -#: admin/settings/settings-init.php:1068 -msgid "" -"The background colour for WooCommerce email templates. Default " -"#f5f5f5." -msgstr "" -"Bakgrundsfärgen för WooCommerce epostmallar. Standard #f5f5f5." - -# @ woocommerce -#: admin/settings/settings-init.php:1076 -msgid "Email Body Background Colour" -msgstr "Epost bakgrundsfärg på yta för meddelande" - -# @ woocommerce -#: admin/settings/settings-init.php:1085 -msgid "Email Body Text Colour" -msgstr "Epost färg på meddelandetext" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:29 -#, php-format -msgid "Tax Rates for the \"%s\" Class" -msgstr "Momssatser för klassen \"%s\"" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:30 -#, php-format -msgid "" -"Define tax rates for countries and states below. See here " -"for available alpha-2 country codes." -msgstr "" -"Definiera skatt- och momssatser för länderna och staterna nedan. Se här för landskoder som du kan använda." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:36 -msgid "Country Code" -msgstr "Land kod" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:36 -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "" -"En landskod bestående av två tecken t.ex US. Lämna blankt för att applicera " -"på alla." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:38 -msgid "State Code" -msgstr "Stat kod" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:38 -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "" -"En kod med två tecken för stat t.ex. AL. Lämna blankt för att applicera på " -"alla." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:40 -#: admin/settings/settings-tax-rates.php:217 -msgid "ZIP/Postcode" -msgstr "Postnummer" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:40 -msgid "" -"Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all areas. Wildcards (*) can be used. Ranges for numeric " -"postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "" -"Postnummer för den här regeln. Semikolon (;) separerar flera värden. Lämna " -"blankt för att applicera på alla områden. Wildcards (*) kan användas. Omfång " -"(eng. ranges) för numeriska postnummer (t.ex. 12345-12350) kommer att " -"expanderas till individuella postnummer." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:42 -msgid "" -"Cities for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all cities." -msgstr "" -"Städer för den här regeln. Semikolon (;) separerar flera värden. Lämna " -"blankt för att applicera på alla städer." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:44 -msgid "Rate %" -msgstr "Taxa %" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:46 -msgid "Tax Name" -msgstr "Moms namn" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:46 -msgid "Enter a name for this tax rate." -msgstr "Ange ett namn för den här momssatsen." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:48 -#: admin/settings/settings-tax-rates.php:217 -msgid "Priority" -msgstr "Prioritet" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:48 -msgid "" -"Choose a priority for this tax rate. Only 1 matching rate per priority will " -"be used. To define multiple tax rates for a single area you need to specify " -"a different priority per rate." -msgstr "" -"Välj en prioritet för den här momsnivån. Endast 1 matchande nivå per " -"prioritet kommer att användas. För att definiera multipla momssatser för ett " -"enskilt område måste du specificera olika prioritet per nivå." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:59 -msgid "Insert row" -msgstr "Infoga rad" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:60 -msgid "Remove selected row(s)" -msgstr "Ta bort markerade rader" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:62 -msgid "Export CSV" -msgstr "Exportera CSV" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:63 -msgid "Import CSV" -msgstr "Importera CSV" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:163 -msgid "No row(s) selected" -msgstr "Inga rader valda" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Country Code" -msgstr "Landskod" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "State Code" -msgstr "Statkod" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Rate %" -msgstr "Momssats %" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Name" -msgstr "Momsnamn" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:77 -msgid "Please, provide an attribute name, slug and type." -msgstr "Vänligen ange attributnamn, slug och typ." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:79 -#, php-format -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "Sluggen \\\"%s\\\" är för lång (28 tecken max). Korta ner den." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:81 -#, php-format -msgid "" -"Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "" -"Sluggen \\\"%s\\\" är inte tillåten eftersom det är en reserverad term. " -"Ändra den." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:86 -#: admin/woocommerce-admin-attributes.php:91 -#, php-format -msgid "Slug “%s” is already in use. Change it, please." -msgstr "Sluggen \\\"%s\\\" används redan. Välj en annan." - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:264 -#: admin/woocommerce-admin-attributes.php:396 -msgid "Default sort order" -msgstr "Standard sorteringsordning" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:268 -#: admin/woocommerce-admin-attributes.php:336 -#: admin/woocommerce-admin-attributes.php:398 -msgid "Custom ordering" -msgstr "Egen sorteringsordning" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:270 -#: admin/woocommerce-admin-attributes.php:333 -#: admin/woocommerce-admin-attributes.php:400 -msgid "Term ID" -msgstr "Term ID" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:272 -#: admin/woocommerce-admin-attributes.php:402 -msgid "" -"Determines the sort order on the frontend for this attribute. If using " -"custom ordering, you can drag and drop the terms in this attribute" -msgstr "" -"Bestämmer sorteringsordningen i butiken för det här attributet. Om du " -"använder en egen sorteringsordning kan du dra och släppa termer för det här " -"attributet" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:310 -msgid "Order by" -msgstr "Sortera efter " - -# @ woocommerce -#: admin/woocommerce-admin-content.php:61 -msgid "Coupon usage reports." -msgstr "Rapporter för användning av kuponger." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:84 -msgid "Project on WordPress.org" -msgstr "Projekt på WordPress.org" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:85 -msgid "Project on Github" -msgstr "Projekt på GitHub" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:86 -msgid "WooCommerce Docs" -msgstr "WooCommerce-dokument" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:87 -msgid "Official Extensions" -msgstr "Officiella tillägg" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:88 -msgid "Official Themes" -msgstr "Officiella teman" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:428 -msgid "Sold" -msgstr "Såld" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:429 -msgid "Earned" -msgstr "Intjänad" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:433 -msgid "" -"Are you sure you want to remove the selected items? If you have previously " -"reduced this item's stock, or this order was submitted by a customer, you " -"will need to manually restore the item's stock." -msgstr "" -"Är du säker på att du vill ta bort valda produkter? Om du tidigare har " -"reducerat produktens lagersaldo, eller om den här orden lades av en kund, " -"behöver du manuellt återställa lagersaldot för produkten." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:435 -msgid "Remove this item meta?" -msgstr "Ta bort meta för produkt?" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:445 -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "Beräkna totaler utifrån produkter, rabatter och frakt?" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:737 -msgid "" -"These settings control the permalinks used for products. These settings only " -"apply when not using \"default\" permalinks above." -msgstr "" -"Dessa inställningar kontrollerar permalänkarna som används för produkter. " -"Dessa inställningar gäller endast när \"default\" permalänkar ovan inte " -"används." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:744 -msgctxt "default-slug" -msgid "shop" -msgstr "butik" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:745 -msgctxt "default-slug" -msgid "product" -msgstr "product" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:766 -msgid "Shop base" -msgstr "Butiksbas" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:770 -msgid "Shop base with category" -msgstr "Butiksbas med kategori" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:776 -msgid "Custom Base" -msgstr "Egen bas" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:778 -msgid "" -"Enter a custom base to use. A base must be set or WordPress " -"will use default instead." -msgstr "" -"Mata in en egen bas. En bas måste bestämmas annars kommer standardbasen " -"istället användas av WordPress." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:806 -msgid "Product permalink base" -msgstr "Bas för produktpermalänk" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:811 -msgid "Product category base" -msgstr "Bas för produktarkiv" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:818 -msgid "Product tag base" -msgstr "Bas för etikett" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:825 -msgid "Product attribute base" -msgstr "Bas för attribut" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:219 -msgctxt "page_slug" -msgid "logout" -msgstr "logga-ut" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:57 -msgid "Sales by category" -msgstr "Försäljning per kategori" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:72 -msgid "Discounts by coupon" -msgstr "Rabatt per kupong" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:418 -msgid "This month's sales" -msgstr "Den här månadens försäljning" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1378 -msgid "Total orders containing coupons" -msgstr "Alla ordrar innehållande kuponger" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1384 -msgid "Percent of orders containing coupons" -msgstr "Procent av ordrarna som innehåller kuponger" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1390 -msgid "Total coupon discount" -msgstr "Total kupong-rabatt" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1399 -msgid "Most popular coupons" -msgstr "Mest populära kuponger" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1409 -#, php-format -msgid "Used 1 time" -msgid_plural "Used %d times" -msgstr[0] "Använd 1 gång" -msgstr[1] "Använd %d gånger" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1412 -#: admin/woocommerce-admin-reports.php:1434 -msgid "No coupons found" -msgstr "Inga kuponger funna" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1421 -msgid "Greatest discount amount" -msgstr "Största rabattbelopp" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1431 -#, php-format -msgid "Discounted %s" -msgstr "Rabatterade %s" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1490 -#: admin/woocommerce-admin-reports.php:2469 -msgid "Show:" -msgstr "Visa:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1630 -msgid "Top coupon" -msgstr "Topp-kupong" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1638 -msgid "Worst coupon" -msgstr "Sämsta kupong" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1646 -msgid "Discount average" -msgstr "Genomsnittlig rabatt" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1654 -msgid "Discount median" -msgstr "Median rabatt" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1674 -msgid "Monthly discounts by coupon" -msgstr "Månatliga rabatter per kupong" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2143 -msgid "Marked out of stock" -msgstr "Markerat som slut i lager" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2545 -msgid "Category" -msgstr "Kategori" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2648 -msgid "Top category" -msgstr "Toppkategori" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2657 -msgid "Worst category" -msgstr "Sämsta kategori" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2665 -msgid "Category sales average" -msgstr "Försäljningsgenomsnitt kategori" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2676 -msgid "Category sales median" -msgstr "Försäljningsmedian kategori" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2696 -msgid "Monthly sales by category" -msgstr "Månatlig försäljning per kategori" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:255 -msgid "Email Options" -msgstr "E-postalternativ" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:62 -msgid "Please include this information when requesting support:" -msgstr "Vänligen inkludera den här information vid begäran om support:" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:63 -msgid "Download System Report File" -msgstr "Ladda ner systemrapportsfil" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:71 -msgid "Environment" -msgstr "Miljö" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:85 -msgid "WC Version" -msgstr "WC-version" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:89 -msgid "WC Database Version" -msgstr "WC databasversion" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:93 -msgid "WP Version" -msgstr "WP-version" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:97 -msgid "Web Server Info" -msgstr "Webbserverinformation" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:105 -msgid "MySQL Version" -msgstr "MySQL-version" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:129 -msgid "PHP Post Max Size" -msgstr "PHP Post Max Size" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:133 -msgid "PHP Time Limit" -msgstr "PHP Time Limit" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:165 -msgid "SOAP Client" -msgstr "SOAP Client" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:167 -msgid "Your server has the SOAP Client class enabled." -msgstr "Din server har SOAP-klientklassen aktiverad." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:170 -#, php-format -msgid "" -"Your server does not have the SOAP Client class enabled - " -"some gateway plugins which use SOAP may not work as expected." -msgstr "" -"Din server har inte SOAP Client-klassen aktiverad - en " -"del gatewaytillägg som använder SOAP kommer kanske inte att fungera som " -"förväntat." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:175 -msgid "WP Remote Post" -msgstr "WP Remote Post" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:215 -msgid "Plugins" -msgstr "Tillägg" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:221 -msgid "Installed Plugins" -msgstr "Installerade tillägg" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:292 -msgid "WC Pages" -msgstr "WC-sidor" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:299 -msgid "Shop Base" -msgstr "Butiksbas" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:315 -msgid "Thanks" -msgstr "Tack" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:323 -#: assets/js/admin/editor_plugin_lang.php:19 -msgid "Edit Address" -msgstr "Redigera adress" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:365 -msgid "Page does not exist" -msgstr "Sidan finns inte" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:389 -msgid "WC Taxonomies" -msgstr "WC-taxonomier" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:405 -msgid "Product Types" -msgstr "Produkttyper" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:418 -msgid "Templates" -msgstr "Mallar" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:424 -msgid "Template Overrides" -msgstr "Mall-åsidosättningar" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:442 -msgid "No core overrides present in theme." -msgstr "Inga core-åsidosättningar finns i temat." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:537 -msgid "WC Transients" -msgstr "WC Transients" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:538 -msgid "Clear transients" -msgstr "Rensa transients" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:542 -msgid "Expired Transients" -msgstr "Utgångna transients" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:543 -msgid "Clear expired transients" -msgstr "Rensa utgångna transients" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:544 -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "Det här verktyget rensar bort ALLA utgångna transients från WordPress." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:547 -msgid "Term counts" -msgstr "Term antal" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:548 -msgid "Recount terms" -msgstr "Räkna om termer" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:549 -msgid "" -"This tool will recount product terms - useful when changing your settings in " -"a way which hides products from the catalog." -msgstr "" -"Det här verktyget räknar om produkttermer - användbart när du ändrar " -"inställningar som innebär att produkter ej visas i katalogen." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:553 -msgid "Reset capabilities" -msgstr "Återställ kapacitet" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:610 -#, php-format -msgid "%d Transients Rows Cleared" -msgstr "%d transients-rader rensade" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:630 -msgid "Terms successfully recounted" -msgstr "Termer framgångsrikt omräknade" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:25 -#: admin/woocommerce-admin-taxonomies.php:118 -msgid "Display type" -msgstr "Visningstyp" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:29 -#: admin/woocommerce-admin-taxonomies.php:123 -msgid "Subcategories" -msgstr "Underkategorier" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:30 -#: admin/woocommerce-admin-taxonomies.php:124 -msgid "Both" -msgstr "Bägge" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:64 -#: admin/woocommerce-admin-taxonomies.php:156 -msgid "Use image" -msgstr "Använd bild" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:29 -msgid "Completed Orders" -msgstr "Genomförda ordrar" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:5 -msgid "Insert Shortcode" -msgstr "Infoga shortcode" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:6 -msgid "Product price/cart button" -msgstr "Produkts pris/varukorgsknapp" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:7 -msgid "Product by SKU/ID" -msgstr "Produkt utifrån Art.nr./ID" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:8 -msgid "Products by SKU/ID" -msgstr "Produkter utifrån Art.nr./ID" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:10 -msgid "Products by category slug" -msgstr "Produkt utifrån kategori-slug" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:11 -msgid "Recent products" -msgstr "Nya produkter" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:12 -msgid "Featured products" -msgstr "Rekommenderade produkter" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:13 -msgid "Shop Messages" -msgstr "Butiksmeddelanden" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:17 -msgid "Order tracking" -msgstr "Orderspårning" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:23 -msgid "Thankyou" -msgstr "Tack" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:433 -#: classes/emails/class-wc-email-customer-completed-order.php:137 -#: classes/emails/class-wc-email-customer-invoice.php:140 -#: classes/emails/class-wc-email-new-order.php:117 -msgid "Enable this email notification" -msgstr "Aktivera den här epostnotisen" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:437 -#: classes/emails/class-wc-email-customer-invoice.php:144 -msgid "Email subject" -msgstr "Epost ämne" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:439 -#: classes/abstracts/abstract-wc-email.php:446 -#: classes/emails/class-wc-email-customer-completed-order.php:143 -#: classes/emails/class-wc-email-customer-completed-order.php:150 -#: classes/emails/class-wc-email-customer-completed-order.php:157 -#: classes/emails/class-wc-email-customer-completed-order.php:164 -#: classes/emails/class-wc-email-customer-invoice.php:146 -#: classes/emails/class-wc-email-customer-invoice.php:153 -#: classes/emails/class-wc-email-customer-invoice.php:160 -#: classes/emails/class-wc-email-customer-invoice.php:167 -#, php-format -msgid "Defaults to %s" -msgstr "Standardvärde %s" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:444 -#: classes/emails/class-wc-email-customer-invoice.php:151 -msgid "Email heading" -msgstr "Epost sidhuvud" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:451 -#: classes/emails/class-wc-email-customer-completed-order.php:169 -#: classes/emails/class-wc-email-customer-invoice.php:172 -#: classes/emails/class-wc-email-new-order.php:142 -msgid "Email type" -msgstr "Epost typ" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:453 -#: classes/emails/class-wc-email-customer-completed-order.php:171 -#: classes/emails/class-wc-email-customer-invoice.php:174 -#: classes/emails/class-wc-email-new-order.php:144 -msgid "Choose which format of email to send." -msgstr "Välj epostformat att sända." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:457 -#: classes/emails/class-wc-email-customer-completed-order.php:175 -#: classes/emails/class-wc-email-customer-invoice.php:178 -#: classes/emails/class-wc-email-new-order.php:148 -msgid "Plain text" -msgstr "Vanlig text" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:458 -#: classes/emails/class-wc-email-customer-completed-order.php:176 -#: classes/emails/class-wc-email-customer-invoice.php:179 -#: classes/emails/class-wc-email-new-order.php:149 -msgid "HTML" -msgstr "HTML" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:459 -#: classes/emails/class-wc-email-customer-completed-order.php:177 -#: classes/emails/class-wc-email-customer-invoice.php:180 -#: classes/emails/class-wc-email-new-order.php:150 -msgid "Multipart" -msgstr "Båda i samma" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:495 -#: classes/abstracts/abstract-wc-email.php:516 -msgid "Could not write to template file." -msgstr "Kunde inte skriva till mallfil." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:543 -msgid "Template file copied to theme." -msgstr "Mallfil kopierad till tema." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:552 -msgid "Template file deleted from theme." -msgstr "Mallfil raderad från tema." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:572 -msgid "HTML template" -msgstr "HTML-mall" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:573 -msgid "Plain text template" -msgstr "Mall för vanlig text" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:592 -msgid "Delete template file" -msgstr "Radera mallfil" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:595 -#, php-format -msgid "" -"This template has been overridden by your theme and can be found in: " -"%s." -msgstr "" -"Den här mallen har åsidosatts av ditt tema och återfinns i %s." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:610 -msgid "Copy file to theme" -msgstr "Kopiera fil till tema" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:613 -#, php-format -msgid "" -"To override and edit this email template copy %s to your theme " -"folder: %s." -msgstr "" -"För att åsidosätta och redigera den här epostmallkopian %s till " -"din temamapp: %s." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:624 -msgid "File was not found." -msgstr "Fil hittades inte." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:649 -msgid "View template" -msgstr "Visa mall" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:650 -msgid "Hide template" -msgstr "Dölj mall" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:661 -msgid "Are you sure you want to delete this template file?" -msgstr "Är du säker att du vill radera den här mallfilen?" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:33 -msgid "" -"The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class " -"directly." -msgstr "" -"Koden WC_Products är idag abstrakt. Använd get_product() för att initiera en instans av en produkt istället för att anropa " -"klassen direkt." - -# @ woocommerce -#: classes/class-wc-cart.php:479 classes/class-wc-cart.php:488 -#, php-format -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfil your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -"Tyvärr, vi har inte tillräckligt med \"%s\" i lager för att ta emot din " -"order (%s i lager). Vänligen redigera din varukorg och försök igen. Vi ber " -"om ursäkt för besväret som detta skapade." - -# @ woocommerce -#: classes/class-wc-cart.php:523 -#, php-format -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfil your order right now. " -"Please try again in %d minutes or edit your cart and try again. We apologise " -"for any inconvenience caused." -msgstr "" -"Tyvärr, vi har inte tillräckligt med \"%s\" i lager för att ta emot din " -"order just nu. Vänligen försök igen om %d minuter eller redigera din " -"varukorg och försök igen. Vi ber om ursäkt för besväret som detta kan ha " -"skapat." - -# @ woocommerce -#: classes/class-wc-cart.php:533 -#, php-format -msgid "" -"Sorry, \"%s\" is not in stock. Please edit your cart and try again. We " -"apologise for any inconvenience caused." -msgstr "" -"Tyvärr, \"%s\" finns inte i lager. Vänligen redigera din varukorg och försök " -"igen. Vi ber om ursäkt för besväret." - -# @ woocommerce -#: classes/class-wc-cart.php:845 -#, php-format -msgid "Sorry, "%s" cannot be purchased." -msgstr "Tyvärr, men "%s" kan inte köpas." - -# @ woocommerce -#: classes/class-wc-cart.php:852 -#, php-format -msgid "" -"You cannot add "%s" to the cart because the product is out of " -"stock." -msgstr "" -"Du kan inte lägga till "%s" till varukorgen för produkten är slut " -"i lager." - -# @ woocommerce -#: classes/class-wc-cart.php:857 -#, php-format -msgid "" -"You cannot add that amount of "%s" to the cart because there is " -"not enough stock (%s remaining)." -msgstr "" -"Du kan inte lägga till det antalet av "%s" i din varukorg eftersom " -"det inte finns tillräckligt många i lager (%s återstår)." - -# @ woocommerce -#: classes/class-wc-countries.php:58 -msgid "Belau" -msgstr "Belau" - -# @ woocommerce -#: classes/class-wc-countries.php:64 -msgid "Bonaire, Saint Eustatius and Saba" -msgstr "Bonaire, Saint Eustatius och Saba" - -# @ woocommerce -#: classes/class-wc-countries.php:67 -msgid "Bouvet Island" -msgstr "Bouvet Island" - -# @ woocommerce -#: classes/class-wc-countries.php:94 -msgid "CuraÇao" -msgstr "CuraÇao" - -# @ woocommerce -#: classes/class-wc-countries.php:132 -msgid "Heard Island and McDonald Islands" -msgstr "Heard Island och McDonald Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:222 -msgid "Saint Martin (Dutch part)" -msgstr "Saint Martin (Dutch part)" - -# @ woocommerce -#: classes/class-wc-countries.php:240 -msgid "South Sudan" -msgstr "South Sudan" - -# @ woocommerce -#: classes/class-wc-countries.php:846 -msgid "Town / District" -msgstr "Stad / Distrikt" - -# @ woocommerce -#: classes/class-wc-countries.php:734 classes/class-wc-countries.php:735 -#: templates/cart/shipping-calculator.php:80 -msgid "Postcode / Zip" -msgstr "Postnummer" - -# @ woocommerce -#: classes/class-wc-countries.php:715 classes/class-wc-countries.php:716 -msgid "Town / City" -msgstr "Stad" - -# @ woocommerce -#: classes/class-wc-countries.php:725 classes/class-wc-countries.php:726 -msgid "State / County" -msgstr "Stat / Kommun" - -# @ woocommerce -#: classes/class-wc-countries.php:699 -msgctxt "placeholder" -msgid "Street address" -msgstr "Gatuadress" - -# @ woocommerce -#: classes/class-wc-countries.php:707 -msgctxt "placeholder" -msgid "Apartment, suite, unit etc. (optional)" -msgstr "Lägenhetsnummer, enhet etc. (valfritt)" - -# @ woocommerce -#: classes/class-wc-coupon.php:421 -msgid "Coupon code applied successfully." -msgstr "Kupongkod applicerad framgångsrikt" - -# @ woocommerce -#: classes/class-wc-coupon.php:442 -msgid "Coupon is not valid." -msgstr "Kupong är ogiltig." - -# @ woocommerce -#: classes/class-wc-coupon.php:454 -msgid "Coupon code already applied!" -msgstr "Kupongkod redan använd!" - -# @ woocommerce -#: classes/class-wc-coupon.php:457 -#, php-format -msgid "" -"Sorry, coupon \"%s\" has already been applied and cannot be used in " -"conjunction with other coupons." -msgstr "" -"Tyvärr, kupong \"%s\" har redan använts och kan inte inte kombineras med " -"andra kuponger." - -# @ woocommerce -#: classes/class-wc-coupon.php:469 -msgid "Sorry, this coupon is not applicable to your cart contents." -msgstr "" -"Tyvärr, den här kupongen kan inte appliceras på innehållet i din varukorg." - -# @ woocommerce -#: classes/class-wc-coupon.php:472 -msgid "Sorry, this coupon is not valid for sale items." -msgstr "Tyvärr, den här kupongen är inte giltig för reavaror." - -# @ woocommerce -#: classes/class-wc-customer.php:628 classes/class-wc-customer.php:640 -#, php-format -msgid "File %d" -msgstr "Fil %d" - -# @ woocommerce -#: classes/class-wc-order.php:1016 templates/cart/totals.php:105 -#: templates/checkout/review-order.php:104 -#, php-format -msgid "(Includes %s)" -msgstr "(inkluderar %s)" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:24 -msgid "Completed order" -msgstr "Genomförd order" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:25 -msgid "" -"Order complete emails are sent to the customer when the order is marked " -"complete and usual indicates that the order has been shipped." -msgstr "" -"Order genomförd-mail sänds till kunden när ordern är markerad som genomförd " -"och indikerar vanligtvis att orden har skeppats." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:27 -msgid "Your order is complete" -msgstr "Din order är genomförd" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:28 -msgid "Your {blogname} order from {order_date} is complete" -msgstr "Din {blogname}-order från {order_date} är genomförd" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:37 -msgid "Your order is complete - download your files" -msgstr "Din order är genomförd - ladda ner dina filer" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:38 -msgid "" -"Your {blogname} order from {order_date} is complete - download your files" -msgstr "" -"Din {blogname}-order från {order_date} är genomförd - ladda ner dina filer" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:141 -#: classes/emails/class-wc-email-new-order.php:128 -msgid "Subject" -msgstr "Ämne" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:148 -#: classes/emails/class-wc-email-new-order.php:135 -msgid "Email Heading" -msgstr "Epost sidhuvud" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:155 -msgid "Subject (downloadable)" -msgstr "Ämne (nedladdningsbar)" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:162 -msgid "Email Heading (downloadable)" -msgstr "Epost sidhuvud (nedladdningsbar)" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:27 -msgid "Customer invoice" -msgstr "Kundfaktura" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:28 -msgid "" -"Customer invoice emails can be sent to the user containing order info and " -"payment links." -msgstr "" -"Orderbekräftelse kan sändas via e-post till kunden och innehålla " -"orderinformation samt betalningslänkar." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:33 -msgid "Invoice for order {order_number} from {order_date}" -msgstr "Faktura för order {order_number} från {order_date}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:34 -msgid "Invoice for order {order_number}" -msgstr "Faktura för order {order_number}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:36 -msgid "Your {blogname} order from {order_date}" -msgstr "Din {blogname}-order från {order_date}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:37 -msgid "Order {order_number} details" -msgstr "Information om order med nummer {order_number}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:158 -msgid "Email subject (paid)" -msgstr "Epost ämne (betald)" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:165 -msgid "Email heading (paid)" -msgstr "Epost inledning (betald)" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:31 -msgid "New account" -msgstr "Nytt konto" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:32 -msgid "" -"Customer new account emails are sent when a customer signs up via the " -"checkout or My Account page." -msgstr "" -"Bekräftelsemail går ut till nya kunder när de registrerar sig i kassan eller " -"på Mitt konto-sidan." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:37 -msgid "Your account on {blogname}" -msgstr "Ditt konto på {blogname}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:38 -msgid "Welcome to {blogname}" -msgstr "Välkommen till {blogname}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:30 -msgid "Customer note emails are sent when you add a note to an order." -msgstr "När du lägger till en notis på en order sänds ett mail om det." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:35 -msgid "Note added to your {blogname} order from {order_date}" -msgstr "Notis adderad till din {blogname}-order från {order_date}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:24 -msgid "Processing order" -msgstr "Bearbetar order" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:25 -msgid "" -"This is an order notification sent to the customer after payment containing " -"order details." -msgstr "" -"Det här är en ordernotifiering som sänts till kunden efter betalning, " -"innehållandes orderinformation." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:27 -msgid "Thank you for your order" -msgstr "Tack för din beställning/order" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:28 -msgid "Your {blogname} order receipt from {order_date}" -msgstr "Ditt {blogname}-kvitto från {order_date}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:36 -msgid "Reset password" -msgstr "Återställ lösenord" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:37 -msgid "" -"Customer reset password emails are sent when a customer resets their " -"password." -msgstr "" -"När kunder återställer sina lösenord sänds ett mail till kunden om det." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:42 -msgid "Password Reset for {blogname}" -msgstr "Lösenordsåterställning för {blogname}" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:43 -msgid "Password Reset Instructions" -msgstr "Instruktioner för lösenordsåterställning" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:24 -msgid "New order" -msgstr "Ny order" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:25 -msgid "New order emails are sent when an order is received/paid by a customer." -msgstr "Ny order-mail sänds när en order är mottagen/betalad av kunden." - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:27 -msgid "New customer order" -msgstr "Ny kundorder" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:28 -msgid "[{blogname}] New customer order ({order_number}) - {order_date}" -msgstr "[{blogname}] Ny kundorder ({order_number}) - {order_date}" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:121 -msgid "Recipient(s)" -msgstr "Mottagare" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:123 -#, php-format -msgid "" -"Enter recipients (comma separated) for this email. Defaults to %s." -msgstr "" -"Mata in mottagare (separera med kommatecken) av det här mailet. " -"Standardvärde %s." - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:130 -#, php-format -msgid "" -"This controls the email subject line. Leave blank to use the default " -"subject: %s." -msgstr "" -"Det här kontrollerar ämnesraden i mailet. Lämna blankt för att använda " -"standardvärdet för ämne: %s." - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:137 -#, php-format -msgid "" -"This controls the main heading contained within the email notification. " -"Leave blank to use the default heading: %s." -msgstr "" -"Det här kontrollerar inledningen i mailnotifikationen. Lämna blankt för att " -"använda standardvärdet: %s." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:97 -#: classes/gateways/cod/class-wc-gateway-cod.php:103 -msgid "Pay with cash upon delivery." -msgstr "Betala kontant vid leverans." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:106 -msgid "Enable for shipping methods" -msgstr "Aktivera för fraktmetoder" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:111 -msgid "" -"If COD is only available for certain methods, set it up here. Leave blank to " -"enable for all methods." -msgstr "" -"Om COD (Cash on Delivery) bara är tillgängligt för vissa metoder, bestäm det " -"här. Lämna blankt för att aktivera för alla metoder." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:174 -msgid "Optional" -msgstr "Valfritt" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:328 -msgid "Share your cart settings" -msgstr "Dela din varukorgsinställningar" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:342 -msgid "Button" -msgstr "Knapp" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:343 -msgid "Customize Button" -msgstr "Anpassa knapp" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:122 -msgid "" -"Enter a cost (excluding tax) per order, e.g. 5.00. Leave blank to disable." -msgstr "" -"Ange en kostnad (exklusive moms) per order t.ex. 5.00. Lämna blankt för att " -"inaktivera." - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:106 -msgid "Free Shipping Requires..." -msgstr "Fri frakt kräver.." - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:111 -msgid "A valid free shipping coupon" -msgstr "En giltig Fri frakt-kupong" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:112 -msgid "A minimum order amount (defined below)" -msgstr "Ett lägsta orderbelopp (definieras nedan)" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:113 -msgid "A minimum order amount OR a coupon" -msgstr "Ett lägsta orderbelopp ELLER en kupong" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:114 -msgid "A minimum order amount AND a coupon" -msgstr "Ett lägsta orderbelopp OCH en kupong" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:124 -msgid "" -"Users will need to spend this amount to get free shipping (if enabled above)." -msgstr "" -"Besökare måste spendera det här beloppet för att få fri frakt (om aktiverat " -"ovan)." - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:137 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:93 -msgid "" -"What zip/post codes would you like to offer delivery to? Separate codes with " -"a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -msgstr "" -"Vilka postnummer vill du leverera till? Separera postnummer med ett " -"kommatecken. Wildcards accepteras där t.ex. P* matchar ett postnummer såsom " -"PE30." - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:117 -msgid "Apply base tax rate" -msgstr "Applicera momssatsbas" - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:119 -msgid "" -"When this shipping method is chosen, apply the base tax rate rather than for " -"the customer's given address." -msgstr "" -"När den här fraktmetoden används, applicera momssatsbasen snarare än för " -"kundens angivna adress." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:93 -msgid "Your password has been reset." -msgstr "Ditt lösenord har återställts." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:93 -msgid "Log in" -msgstr "Logga in" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:114 -msgid "Enter a username or e-mail address." -msgstr "Mata in användarnamn eller e-postadress" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:121 -msgid "There is no user registered with that email address." -msgstr "Det finns ingen användare med den e-postadressen." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:136 -msgid "Invalid username or e-mail." -msgstr "Ogiltigt användarnamn eller e-postadress." - -# @ default -#: classes/shortcodes/class-wc-shortcode-lost-password.php:150 -msgid "Password reset is not allowed for this user" -msgstr "Lösenordsåterställning är inte tillåtet för den här användaren" - -# @ default -#: classes/shortcodes/class-wc-shortcode-lost-password.php:178 -msgid "Check your e-mail for the confirmation link." -msgstr "Kolla din e-post för bekräftelselänken." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:198 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:203 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:210 -msgid "Invalid key" -msgstr "Ogiltig nyckel" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:71 -msgid "l jS \\of F Y, h:ia" -msgstr "l jS \\of F Y, h:ia" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:31 -msgid "Shows active layered nav filters so users can see and deactivate them." -msgstr "" -"Visar aktiva navigeringsfilter i flera nivåer så att besökare kan se och " -"deaktivera dem." - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:33 -msgid "WooCommerce Layered Nav Filters" -msgstr "WooCmmerce flernivås navigationsfilter" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:62 -msgid "Active filters" -msgstr "Aktiva filter" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:93 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Remove filter" -msgstr "Ta bort filter" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -msgid "Min" -msgstr "Min" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Max" -msgstr "Max" - -# @ woocommerce -#: i18n/states/CN.php:13 -msgid "Yunnan / 云南" -msgstr "Yunnan / 云南" - -# @ woocommerce -#: i18n/states/CN.php:14 -msgid "Beijing / 北京" -msgstr "Beijing / 北京" - -# @ woocommerce -#: i18n/states/CN.php:15 -msgid "Tianjin / 天津" -msgstr "Tianjin / 天津" - -# @ woocommerce -#: i18n/states/CN.php:16 -msgid "Hebei / 河北" -msgstr "Hebei / 河北" - -# @ woocommerce -#: i18n/states/CN.php:17 -msgid "Shanxi / 山西" -msgstr "Shanxi / 山西" - -# @ woocommerce -#: i18n/states/CN.php:18 -msgid "Inner Mongolia / 內蒙古" -msgstr "Inner Mongolia / 內蒙古" - -# @ woocommerce -#: i18n/states/CN.php:19 -msgid "Liaoning / 辽宁" -msgstr "Liaoning / 辽宁" - -# @ woocommerce -#: i18n/states/CN.php:20 -msgid "Jilin / 吉林" -msgstr "Jilin / 吉林" - -# @ woocommerce -#: i18n/states/CN.php:21 -msgid "Heilongjiang / 黑龙江" -msgstr "Heilongjiang / 黑龙江" - -# @ woocommerce -#: i18n/states/CN.php:22 -msgid "Shanghai / 上海" -msgstr "Shanghai / 上海" - -# @ woocommerce -#: i18n/states/CN.php:23 -msgid "Jiangsu / 江苏" -msgstr "Jiangsu / 江苏" - -# @ woocommerce -#: i18n/states/CN.php:24 -msgid "Zhejiang / 浙江" -msgstr "Zhejiang / 浙江" - -# @ woocommerce -#: i18n/states/CN.php:25 -msgid "Anhui / 安徽" -msgstr "Anhui / 安徽" - -# @ woocommerce -#: i18n/states/CN.php:26 -msgid "Fujian / 福建" -msgstr "Fujian / 福建" - -# @ woocommerce -#: i18n/states/CN.php:27 -msgid "Jiangxi / 江西" -msgstr "Jiangxi / 江西" - -# @ woocommerce -#: i18n/states/CN.php:28 -msgid "Shandong / 山东" -msgstr "Shandong / 山东" - -# @ woocommerce -#: i18n/states/CN.php:29 -msgid "Henan / 河南" -msgstr "Henan / 河南" - -# @ woocommerce -#: i18n/states/CN.php:30 -msgid "Hubei / 湖北" -msgstr "Hubei / 湖北" - -# @ woocommerce -#: i18n/states/CN.php:31 -msgid "Hunan / 湖南" -msgstr "Hunan / 湖南" - -# @ woocommerce -#: i18n/states/CN.php:32 -msgid "Guangdong / 广东" -msgstr "Guangdong / 广东" - -# @ woocommerce -#: i18n/states/CN.php:33 -msgid "Guangxi Zhuang / 广西壮族" -msgstr "Guangxi Zhuang / 广西壮族" - -# @ woocommerce -#: i18n/states/CN.php:34 -msgid "Hainan / 海南" -msgstr "Hainan / 海南" - -# @ woocommerce -#: i18n/states/CN.php:35 -msgid "Chongqing / 重庆" -msgstr "Chongqing / 重庆" - -# @ woocommerce -#: i18n/states/CN.php:36 -msgid "Sichuan / 四川" -msgstr "Sichuan / 四川" - -# @ woocommerce -#: i18n/states/CN.php:37 -msgid "Guizhou / 贵州" -msgstr "Guizhou / 贵州" - -# @ woocommerce -#: i18n/states/CN.php:38 -msgid "Shaanxi / 陕西" -msgstr "Shaanxi / 陕西" - -# @ woocommerce -#: i18n/states/CN.php:39 -msgid "Gansu / 甘肃" -msgstr "Gansu / 甘肃" - -# @ woocommerce -#: i18n/states/CN.php:40 -msgid "Qinghai / 青海" -msgstr "Qinghai / 青海" - -# @ woocommerce -#: i18n/states/CN.php:41 -msgid "Ningxia Hui / 宁夏" -msgstr "Ningxia Hui / 宁夏" - -# @ woocommerce -#: i18n/states/CN.php:42 -msgid "Macau / 澳门" -msgstr "Macau / 澳门" - -# @ woocommerce -#: i18n/states/CN.php:43 -msgid "Tibet / 西藏" -msgstr "Tibet / 西藏" - -# @ woocommerce -#: i18n/states/CN.php:44 -msgid "Xinjiang / 新疆" -msgstr "Xinjiang / 新疆" - -# @ woocommerce -#: i18n/states/HU.php:13 -msgid "Bács-Kiskun" -msgstr "Bács-Kiskun" - -# @ woocommerce -#: i18n/states/HU.php:14 -msgid "Békés" -msgstr "Békés" - -# @ woocommerce -#: i18n/states/HU.php:15 -msgid "Baranya" -msgstr "Baranya" - -# @ woocommerce -#: i18n/states/HU.php:16 -msgid "Borsod-Abaúj-Zemplén" -msgstr "Borsod-Abaúj-Zemplén" - -# @ woocommerce -#: i18n/states/HU.php:17 -msgid "Budapest" -msgstr "Budapest" - -# @ woocommerce -#: i18n/states/HU.php:18 -msgid "Csongrád" -msgstr "Csongrád" - -# @ woocommerce -#: i18n/states/HU.php:19 -msgid "Fejér" -msgstr "Fejér" - -# @ woocommerce -#: i18n/states/HU.php:20 -msgid "Győr-Moson-Sopron" -msgstr "Győr-Moson-Sopron" - -# @ woocommerce -#: i18n/states/HU.php:21 -msgid "Hajdú-Bihar" -msgstr "Hajdú-Bihar" - -# @ woocommerce -#: i18n/states/HU.php:22 -msgid "Heves" -msgstr "Heves" - -# @ woocommerce -#: i18n/states/HU.php:23 -msgid "Jász-Nagykun-Szolnok" -msgstr "Jász-Nagykun-Szolnok" - -# @ woocommerce -#: i18n/states/HU.php:24 -msgid "Komárom-Esztergom" -msgstr "Komárom-Esztergom" - -# @ woocommerce -#: i18n/states/HU.php:25 -msgid "Nógrád" -msgstr "Nógrád" - -# @ woocommerce -#: i18n/states/HU.php:26 -msgid "Pest" -msgstr "Pest" - -# @ woocommerce -#: i18n/states/HU.php:27 -msgid "Somogy" -msgstr "Somogy" - -# @ woocommerce -#: i18n/states/HU.php:28 -msgid "Szabolcs-Szatmár-Bereg" -msgstr "Szabolcs-Szatmár-Bereg" - -# @ woocommerce -#: i18n/states/HU.php:29 -msgid "Tolna" -msgstr "Tolna" - -# @ woocommerce -#: i18n/states/HU.php:30 -msgid "Vas" -msgstr "Vas" - -# @ woocommerce -#: i18n/states/HU.php:31 -msgid "Veszprém" -msgstr "Veszprém" - -# @ woocommerce -#: i18n/states/HU.php:32 -msgid "Zala" -msgstr "Zala" - -# @ woocommerce -#: i18n/states/ID.php:13 -msgid "Daerah Istimewa Aceh" -msgstr "Daerah Istimewa Aceh" - -# @ woocommerce -#: i18n/states/ID.php:14 -msgid "Sumatera Utara" -msgstr "Sumatera Utara" - -# @ woocommerce -#: i18n/states/ID.php:15 -msgid "Sumatera Barat" -msgstr "Sumatera Barat" - -# @ woocommerce -#: i18n/states/ID.php:16 -msgid "Riau" -msgstr "Riau" - -# @ woocommerce -#: i18n/states/ID.php:17 -msgid "Kepulauan Riau" -msgstr "Kepulauan Riau" - -# @ woocommerce -#: i18n/states/ID.php:18 -msgid "Jambi" -msgstr "Jambi" - -# @ woocommerce -#: i18n/states/ID.php:19 -msgid "Sumatera Selatan" -msgstr "Sumatera Selatan" - -# @ woocommerce -#: i18n/states/ID.php:20 -msgid "Bangka Belitung" -msgstr "Bangka Belitung" - -# @ woocommerce -#: i18n/states/ID.php:21 -msgid "Bengkulu" -msgstr "Bengkulu" - -# @ woocommerce -#: i18n/states/ID.php:22 -msgid "Lampung" -msgstr "Lampung" - -# @ woocommerce -#: i18n/states/ID.php:23 -msgid "DKI Jakarta" -msgstr "DKI Jakarta" - -# @ woocommerce -#: i18n/states/ID.php:24 -msgid "Jawa Barat" -msgstr "Jawa Barat" - -# @ woocommerce -#: i18n/states/ID.php:25 -msgid "Banten" -msgstr "Banten" - -# @ woocommerce -#: i18n/states/ID.php:26 -msgid "Jawa Tengah" -msgstr "Jawa Tengah" - -# @ woocommerce -#: i18n/states/ID.php:27 -msgid "Jawa Timur" -msgstr "Jawa Timur" - -# @ woocommerce -#: i18n/states/ID.php:28 -msgid "Daerah Istimewa Yogyakarta" -msgstr "Daerah Istimewa Yogyakarta" - -# @ woocommerce -#: i18n/states/ID.php:29 -msgid "Bali" -msgstr "Bali" - -# @ woocommerce -#: i18n/states/ID.php:30 -msgid "Nusa Tenggara Barat" -msgstr "Nusa Tenggara Barat" - -# @ woocommerce -#: i18n/states/ID.php:31 -msgid "Nusa Tenggara Timur" -msgstr "Nusa Tenggara Timur" - -# @ woocommerce -#: i18n/states/ID.php:32 -msgid "Kalimantan Barat" -msgstr "Kalimantan Barat" - -# @ woocommerce -#: i18n/states/ID.php:33 -msgid "Kalimantan Tengah" -msgstr "Kalimantan Tengah" - -# @ woocommerce -#: i18n/states/ID.php:34 -msgid "Kalimantan Timur" -msgstr "Kalimantan Timur" - -# @ woocommerce -#: i18n/states/ID.php:35 -msgid "Kalimantan Selatan" -msgstr "Kalimantan Selatan" - -# @ woocommerce -#: i18n/states/ID.php:36 -msgid "Kalimantan Utara" -msgstr "Kalimantan Utara" - -# @ woocommerce -#: i18n/states/ID.php:37 -msgid "Sulawesi Utara" -msgstr "Sulawesi Utara" - -# @ woocommerce -#: i18n/states/ID.php:38 -msgid "Sulawesi Tengah" -msgstr "Sulawesi Tengah" - -# @ woocommerce -#: i18n/states/ID.php:39 -msgid "Sulawesi Tenggara" -msgstr "Sulawesi Tenggara" - -# @ woocommerce -#: i18n/states/ID.php:40 -msgid "Sulawesi Barat" -msgstr "Sulawesi Barat" - -# @ woocommerce -#: i18n/states/ID.php:41 -msgid "Sulawesi Selatan" -msgstr "Sulawesi Selatan" - -# @ woocommerce -#: i18n/states/ID.php:42 -msgid "Gorontalo" -msgstr "Gorontalo" - -# @ woocommerce -#: i18n/states/ID.php:43 -msgid "Maluku" -msgstr "Maluku" - -# @ woocommerce -#: i18n/states/ID.php:44 -msgid "Maluku Utara" -msgstr "Maluku Utara" - -# @ woocommerce -#: i18n/states/ID.php:45 -msgid "Papua" -msgstr "Papua" - -# @ woocommerce -#: i18n/states/ID.php:46 -msgid "Papua Barat" -msgstr "Papua Barat" - -# @ woocommerce -#: i18n/states/IN.php:13 -msgid "Andra Pradesh" -msgstr "Andra Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:14 -msgid "Arunachal Pradesh" -msgstr "Arunachal Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:15 -msgid "Assam" -msgstr "Assam" - -# @ woocommerce -#: i18n/states/IN.php:16 -msgid "Bihar" -msgstr "Bihar" - -# @ woocommerce -#: i18n/states/IN.php:17 -msgid "Chhattisgarh" -msgstr "Chhattisgarh" - -# @ woocommerce -#: i18n/states/IN.php:18 -msgid "Goa" -msgstr "Goa" - -# @ woocommerce -#: i18n/states/IN.php:19 -msgid "Gujarat" -msgstr "Gujarat" - -# @ woocommerce -#: i18n/states/IN.php:20 -msgid "Haryana" -msgstr "Haryana" - -# @ woocommerce -#: i18n/states/IN.php:21 -msgid "Himachal Pradesh" -msgstr "Himachal Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:22 -msgid "Jammu and Kashmir" -msgstr "Jammu and Kashmir" - -# @ woocommerce -#: i18n/states/IN.php:23 -msgid "Jharkhand" -msgstr "Jharkhand" - -# @ woocommerce -#: i18n/states/IN.php:24 -msgid "Karnataka" -msgstr "Karnataka" - -# @ woocommerce -#: i18n/states/IN.php:25 -msgid "Kerala" -msgstr "Kerala" - -# @ woocommerce -#: i18n/states/IN.php:26 -msgid "Madhya Pradesh" -msgstr "Madhya Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:27 -msgid "Maharashtra" -msgstr "Maharashtra" - -# @ woocommerce -#: i18n/states/IN.php:28 -msgid "Manipur" -msgstr "Manipur" - -# @ woocommerce -#: i18n/states/IN.php:29 -msgid "Meghalaya" -msgstr "Meghalaya" - -# @ woocommerce -#: i18n/states/IN.php:30 -msgid "Mizoram" -msgstr "Mizoram" - -# @ woocommerce -#: i18n/states/IN.php:31 -msgid "Nagaland" -msgstr "Nagaland" - -# @ woocommerce -#: i18n/states/IN.php:32 -msgid "Orissa" -msgstr "Orissa" - -# @ woocommerce -#: i18n/states/IN.php:33 -msgid "Punjab" -msgstr "Punjab" - -# @ woocommerce -#: i18n/states/IN.php:34 -msgid "Rajasthan" -msgstr "Rajasthan" - -# @ woocommerce -#: i18n/states/IN.php:35 -msgid "Sikkim" -msgstr "Sikkim" - -# @ woocommerce -#: i18n/states/IN.php:36 -msgid "Tamil Nadu" -msgstr "Tamil Nadu" - -# @ woocommerce -#: i18n/states/IN.php:37 -msgid "Tripura" -msgstr "Tripura" - -# @ woocommerce -#: i18n/states/IN.php:38 -msgid "Uttaranchal" -msgstr "Uttaranchal" - -# @ woocommerce -#: i18n/states/IN.php:39 -msgid "Uttar Pradesh" -msgstr "Uttar Pradesh" - -# @ woocommerce -#: i18n/states/IN.php:40 -msgid "West Bengal" -msgstr "West Bengal" - -# @ woocommerce -#: i18n/states/IN.php:41 -msgid "Andaman and Nicobar Islands" -msgstr "Andaman and Nicobar Islands" - -# @ woocommerce -#: i18n/states/IN.php:42 -msgid "Chandigarh" -msgstr "Chandigarh" - -# @ woocommerce -#: i18n/states/IN.php:43 -msgid "Dadar and Nagar Haveli" -msgstr "Dadar and Nagar Haveli" - -# @ woocommerce -#: i18n/states/IN.php:44 -msgid "Daman and Diu" -msgstr "Daman and Diu" - -# @ woocommerce -#: i18n/states/IN.php:45 -msgid "Delhi" -msgstr "Delhi" - -# @ woocommerce -#: i18n/states/IN.php:46 -msgid "Lakshadeep" -msgstr "Lakshadeep" - -# @ woocommerce -#: i18n/states/IN.php:47 -msgid "Pondicherry (Puducherry)" -msgstr "Pondicherry (Puducherry)" - -# @ woocommerce -#: i18n/states/MY.php:13 -msgid "Johor" -msgstr "Johor" - -# @ woocommerce -#: i18n/states/MY.php:14 -msgid "Kedah" -msgstr "Kedah" - -# @ woocommerce -#: i18n/states/MY.php:15 -msgid "Kelantan" -msgstr "Kelantan" - -# @ woocommerce -#: i18n/states/MY.php:16 -msgid "Melaka" -msgstr "Melaka" - -# @ woocommerce -#: i18n/states/MY.php:17 -msgid "Negeri Sembilan" -msgstr "Negeri Sembilan" - -# @ woocommerce -#: i18n/states/MY.php:18 -msgid "Pahang" -msgstr "Pahang" - -# @ woocommerce -#: i18n/states/MY.php:19 -msgid "Perak" -msgstr "Perak" - -# @ woocommerce -#: i18n/states/MY.php:20 -msgid "Perlis" -msgstr "Perlis" - -# @ woocommerce -#: i18n/states/MY.php:21 -msgid "Pulau Pinang" -msgstr "Pulau Pinang" - -# @ woocommerce -#: i18n/states/MY.php:22 -msgid "Sabah" -msgstr "Sabah" - -# @ woocommerce -#: i18n/states/MY.php:23 -msgid "Sarawak" -msgstr "Sarawak" - -# @ woocommerce -#: i18n/states/MY.php:24 -msgid "Selangor" -msgstr "Selangor" - -# @ woocommerce -#: i18n/states/MY.php:25 -msgid "Terengganu" -msgstr "Terengganu" - -# @ woocommerce -#: i18n/states/MY.php:26 -msgid "W.P. Kuala Lumpur" -msgstr "W.P. Kuala Lumpur" - -# @ woocommerce -#: i18n/states/MY.php:27 -msgid "W.P. Labuan" -msgstr "W.P. Labuan" - -# @ woocommerce -#: i18n/states/MY.php:28 -msgid "W.P. Putrajaya" -msgstr "W.P. Putrajaya" - -# @ woocommerce -#: i18n/states/TH.php:13 -msgid "" -"Amnat Charoen (อำนาจเจร" -"ิญ)" -msgstr "" -"Amnat Charoen (อำนาจเจร" -"ิญ)" - -# @ woocommerce -#: i18n/states/TH.php:14 -msgid "Ang Thong (อ่างทอง)" -msgstr "Ang Thong (อ่างทอง)" - -# @ woocommerce -#: i18n/states/TH.php:15 -msgid "" -"Ayutthaya (พระนครศรี" -"อยุธยา)" -msgstr "" -"Ayutthaya (พระนครศรี" -"อยุธยา)" - -# @ woocommerce -#: i18n/states/TH.php:16 -msgid "" -"Bangkok (กรุงเทพมห" -"านคร)" -msgstr "" -"Bangkok (กรุงเทพมห" -"านคร)" - -# @ woocommerce -#: i18n/states/TH.php:17 -msgid "Bueng Kan (บึงกาฬ)" -msgstr "Bueng Kan (บึงกาฬ)" - -# @ woocommerce -#: i18n/states/TH.php:18 -msgid "" -"Buri Ram (บุรีรัมย์)" -msgstr "" -"Buri Ram (บุรีรัมย์)" - -# @ woocommerce -#: i18n/states/TH.php:19 -msgid "" -"Chachoengsao (ฉะเชิงเทร" -"า)" -msgstr "" -"Chachoengsao (ฉะเชิงเทร" -"า)" - -# @ woocommerce -#: i18n/states/TH.php:20 -msgid "Chai Nat (ชัยนาท)" -msgstr "Chai Nat (ชัยนาท)" - -# @ woocommerce -#: i18n/states/TH.php:21 -msgid "Chaiyaphum (ชัยภูมิ)" -msgstr "Chaiyaphum (ชัยภูมิ)" - -# @ woocommerce -#: i18n/states/TH.php:22 -msgid "Chanthaburi (จันทบุรี)" -msgstr "Chanthaburi (จันทบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:23 -msgid "" -"Chiang Mai (เชียงใหม่)" -msgstr "" -"Chiang Mai (เชียงใหม่)" - -# @ woocommerce -#: i18n/states/TH.php:24 -msgid "Chiang Rai (เชียงราย)" -msgstr "Chiang Rai (เชียงราย)" - -# @ woocommerce -#: i18n/states/TH.php:25 -msgid "Chonburi (ชลบุรี)" -msgstr "Chonburi (ชลบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:26 -msgid "Chumphon (ชุมพร)" -msgstr "Chumphon (ชุมพร)" - -# @ woocommerce -#: i18n/states/TH.php:27 -msgid "" -"Kalasin (กาฬสินธุ์)" -msgstr "" -"Kalasin (กาฬสินธุ์)" - -# @ woocommerce -#: i18n/states/TH.php:28 -msgid "" -"Kamphaeng Phet (กำแพงเพช" -"ร)" -msgstr "" -"Kamphaeng Phet (กำแพงเพช" -"ร)" - -# @ woocommerce -#: i18n/states/TH.php:29 -msgid "" -"Kanchanaburi (กาญจนบุร" -"ี)" -msgstr "" -"Kanchanaburi (กาญจนบุร" -"ี)" - -# @ woocommerce -#: i18n/states/TH.php:30 -msgid "Khon Kaen (ขอนแก่น)" -msgstr "Khon Kaen (ขอนแก่น)" - -# @ woocommerce -#: i18n/states/TH.php:31 -msgid "Krabi (กระบี่)" -msgstr "Krabi (กระบี่)" - -# @ woocommerce -#: i18n/states/TH.php:32 -msgid "Lampang (ลำปาง)" -msgstr "Lampang (ลำปาง)" - -# @ woocommerce -#: i18n/states/TH.php:33 -msgid "Lamphun (ลำพูน)" -msgstr "Lamphun (ลำพูน)" - -# @ woocommerce -#: i18n/states/TH.php:34 -msgid "Loei (เลย)" -msgstr "Loei (เลย)" - -# @ woocommerce -#: i18n/states/TH.php:35 -msgid "Lopburi (ลพบุรี)" -msgstr "Lopburi (ลพบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:36 -msgid "" -"Mae Hong Son (แม่ฮ่องสอ" -"น)" -msgstr "" -"Mae Hong Son (แม่ฮ่องสอ" -"น)" - -# @ woocommerce -#: i18n/states/TH.php:37 -msgid "" -"Maha Sarakham (มหาสารคา" -"ม)" -msgstr "" -"Maha Sarakham (มหาสารคา" -"ม)" - -# @ woocommerce -#: i18n/states/TH.php:38 -msgid "Mukdahan (มุกดาหาร)" -msgstr "Mukdahan (มุกดาหาร)" - -# @ woocommerce -#: i18n/states/TH.php:39 -msgid "Nakhon Nayok (นครนายก)" -msgstr "Nakhon Nayok (นครนายก)" - -# @ woocommerce -#: i18n/states/TH.php:40 -msgid "Nakhon Pathom (นครปฐม)" -msgstr "Nakhon Pathom (นครปฐม)" - -# @ woocommerce -#: i18n/states/TH.php:41 -msgid "Nakhon Phanom (นครพนม)" -msgstr "Nakhon Phanom (นครพนม)" - -# @ woocommerce -#: i18n/states/TH.php:42 -msgid "" -"Nakhon Ratchasima (นครราชสี" -"มา)" -msgstr "" -"Nakhon Ratchasima (นครราชสี" -"มา)" - -# @ woocommerce -#: i18n/states/TH.php:43 -msgid "" -"Nakhon Sawan (นครสวรรค" -"์)" -msgstr "" -"Nakhon Sawan (นครสวรรค" -"์)" - -# @ woocommerce -#: i18n/states/TH.php:44 -msgid "" -"Nakhon Si Thammarat (นครศรีธร" -"รมราช)" -msgstr "" -"Nakhon Si Thammarat (นครศรีธร" -"รมราช)" - -# @ woocommerce -#: i18n/states/TH.php:45 -msgid "Nan (น่าน)" -msgstr "Nan (น่าน)" - -# @ woocommerce -#: i18n/states/TH.php:46 -msgid "Narathiwat (นราธิวาส)" -msgstr "Narathiwat (นราธิวาส)" - -# @ woocommerce -#: i18n/states/TH.php:47 -msgid "" -"Nong Bua Lam Phu (หนองบัวล" -"ำภู)" -msgstr "" -"Nong Bua Lam Phu (หนองบัวล" -"ำภู)" - -# @ woocommerce -#: i18n/states/TH.php:48 -msgid "Nong Khai (หนองคาย)" -msgstr "Nong Khai (หนองคาย)" - -# @ woocommerce -#: i18n/states/TH.php:49 -msgid "Nonthaburi (นนทบุรี)" -msgstr "Nonthaburi (นนทบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:50 -msgid "Pathum Thani (ปทุมธานี)" -msgstr "" -"Pathum Thani (ปทุมธานี)" - -# @ woocommerce -#: i18n/states/TH.php:51 -msgid "Pattani (ปัตตานี)" -msgstr "Pattani (ปัตตานี)" - -# @ woocommerce -#: i18n/states/TH.php:52 -msgid "Phang Nga (พังงา)" -msgstr "Phang Nga (พังงา)" - -# @ woocommerce -#: i18n/states/TH.php:53 -msgid "Phatthalung (พัทลุง)" -msgstr "Phatthalung (พัทลุง)" - -# @ woocommerce -#: i18n/states/TH.php:54 -msgid "Phayao (พะเยา)" -msgstr "Phayao (พะเยา)" - -# @ woocommerce -#: i18n/states/TH.php:55 -msgid "" -"Phetchabun (เพชรบูรณ์)" -msgstr "" -"Phetchabun (เพชรบูรณ์)" - -# @ woocommerce -#: i18n/states/TH.php:56 -msgid "Phetchaburi (เพชรบุรี)" -msgstr "Phetchaburi (เพชรบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:57 -msgid "Phichit (พิจิตร)" -msgstr "Phichit (พิจิตร)" - -# @ woocommerce -#: i18n/states/TH.php:58 -msgid "Phitsanulok (พิษณุโลก)" -msgstr "Phitsanulok (พิษณุโลก)" - -# @ woocommerce -#: i18n/states/TH.php:59 -msgid "Phrae (แพร่)" -msgstr "Phrae (แพร่)" - -# @ woocommerce -#: i18n/states/TH.php:60 -msgid "Phuket (ภูเก็ต)" -msgstr "Phuket (ภูเก็ต)" - -# @ woocommerce -#: i18n/states/TH.php:61 -msgid "" -"Prachin Buri (ปราจีนบุร" -"ี)" -msgstr "" -"Prachin Buri (ปราจีนบุร" -"ี)" - -# @ woocommerce -#: i18n/states/TH.php:62 -msgid "" -"Prachuap Khiri Khan (ประจวบคี" -"รีขันธ์)" -msgstr "" -"Prachuap Khiri Khan (ประจวบคี" -"รีขันธ์)" - -# @ woocommerce -#: i18n/states/TH.php:63 -msgid "Ranong (ระนอง)" -msgstr "Ranong (ระนอง)" - -# @ woocommerce -#: i18n/states/TH.php:64 -msgid "Ratchaburi (ราชบุรี)" -msgstr "Ratchaburi (ราชบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:65 -msgid "Rayong (ระยอง)" -msgstr "Rayong (ระยอง)" - -# @ woocommerce -#: i18n/states/TH.php:66 -msgid "Roi Et (ร้อยเอ็ด)" -msgstr "Roi Et (ร้อยเอ็ด)" - -# @ woocommerce -#: i18n/states/TH.php:67 -msgid "Sa Kaeo (สระแก้ว)" -msgstr "Sa Kaeo (สระแก้ว)" - -# @ woocommerce -#: i18n/states/TH.php:68 -msgid "Sakon Nakhon (สกลนคร)" -msgstr "Sakon Nakhon (สกลนคร)" - -# @ woocommerce -#: i18n/states/TH.php:69 -msgid "" -"Samut Prakan (สมุทรปราก" -"าร)" -msgstr "" -"Samut Prakan (สมุทรปราก" -"าร)" - -# @ woocommerce -#: i18n/states/TH.php:70 -msgid "" -"Samut Sakhon (สมุทรสาค" -"ร)" -msgstr "" -"Samut Sakhon (สมุทรสาค" -"ร)" - -# @ woocommerce -#: i18n/states/TH.php:71 -msgid "" -"Samut Songkhram (สมุทรสงค" -"ราม)" -msgstr "" -"Samut Songkhram (สมุทรสงค" -"ราม)" - -# @ woocommerce -#: i18n/states/TH.php:72 -msgid "Saraburi (สระบุรี)" -msgstr "Saraburi (สระบุรี)" - -# @ woocommerce -#: i18n/states/TH.php:73 -msgid "Satun (สตูล)" -msgstr "Satun (สตูล)" - -# @ woocommerce -#: i18n/states/TH.php:74 -msgid "" -"Sing Buri (สิงห์บุรี)" -msgstr "" -"Sing Buri (สิงห์บุรี)" - -# @ woocommerce -#: i18n/states/TH.php:75 -msgid "Sisaket (ศรีสะเกษ)" -msgstr "Sisaket (ศรีสะเกษ)" - -# @ woocommerce -#: i18n/states/TH.php:76 -msgid "Songkhla (สงขลา)" -msgstr "Songkhla (สงขลา)" - -# @ woocommerce -#: i18n/states/TH.php:77 -msgid "Sukhothai (สุโขทัย)" -msgstr "Sukhothai (สุโขทัย)" - -# @ woocommerce -#: i18n/states/TH.php:78 -msgid "" -"Suphan Buri (สุพรรณบุร" -"ี)" -msgstr "" -"Suphan Buri (สุพรรณบุร" -"ี)" - -# @ woocommerce -#: i18n/states/TH.php:79 -msgid "" -"Surat Thani (สุราษฎร์ธ" -"านี)" -msgstr "" -"Surat Thani (สุราษฎร์ธ" -"านี)" - -# @ woocommerce -#: i18n/states/TH.php:80 -msgid "Surin (สุรินทร์)" -msgstr "Surin (สุรินทร์)" - -# @ woocommerce -#: i18n/states/TH.php:81 -msgid "Tak (ตาก)" -msgstr "Tak (ตาก)" - -# @ woocommerce -#: i18n/states/TH.php:82 -msgid "Trang (ตรัง)" -msgstr "Trang (ตรัง)" - -# @ woocommerce -#: i18n/states/TH.php:83 -msgid "Trat (ตราด)" -msgstr "Trat (ตราด)" - -# @ woocommerce -#: i18n/states/TH.php:84 -msgid "" -"Ubon Ratchathani (อุบลราชธ" -"านี)" -msgstr "" -"Ubon Ratchathani (อุบลราชธ" -"านี)" - -# @ woocommerce -#: i18n/states/TH.php:85 -msgid "Udon Thani (อุดรธานี)" -msgstr "Udon Thani (อุดรธานี)" - -# @ woocommerce -#: i18n/states/TH.php:86 -msgid "" -"Uthai Thani (อุทัยธานี)" -msgstr "" -"Uthai Thani (อุทัยธานี)" - -# @ woocommerce -#: i18n/states/TH.php:87 -msgid "" -"Uttaradit (อุตรดิตถ์)" -msgstr "" -"Uttaradit (อุตรดิตถ์)" - -# @ woocommerce -#: i18n/states/TH.php:88 -msgid "Yala (ยะลา)" -msgstr "Yala (ยะลา)" - -# @ woocommerce -#: i18n/states/TH.php:89 -msgid "Yasothon (ยโสธร)" -msgstr "Yasothon (ยโสธร)" - -# @ woocommerce -#: i18n/states/US.php:64 -msgid "Armed Forces (AA)" -msgstr "Armed Forces (AA)" - -# @ woocommerce -#: i18n/states/US.php:65 -msgid "Armed Forces (AE)" -msgstr "Armed Forces (AE)" - -# @ woocommerce -#: i18n/states/US.php:66 -msgid "Armed Forces (AP)" -msgstr "Armed Forces (AP)" - -# @ woocommerce -#: i18n/states/ZA.php:13 -msgid "Eastern Cape" -msgstr "Eastern Cape" - -# @ woocommerce -#: i18n/states/ZA.php:14 -msgid "Free State" -msgstr "Free State" - -# @ woocommerce -#: i18n/states/ZA.php:15 -msgid "Gauteng" -msgstr "Gauteng" - -# @ woocommerce -#: i18n/states/ZA.php:16 -msgid "KwaZulu-Natal" -msgstr "KwaZulu-Natal" - -# @ woocommerce -#: i18n/states/ZA.php:17 -msgid "Limpopo" -msgstr "Limpopo" - -# @ woocommerce -#: i18n/states/ZA.php:18 -msgid "Mpumalanga" -msgstr "Mpumalanga" - -# @ woocommerce -#: i18n/states/ZA.php:19 -msgid "Northern Cape" -msgstr "Northern Cape" - -# @ woocommerce -#: i18n/states/ZA.php:20 -msgid "North West" -msgstr "North West" - -# @ woocommerce -#: i18n/states/ZA.php:21 -msgid "Western Cape" -msgstr "Western Cape" - -# @ woocommerce -#: templates/cart/cart.php:100 -#: templates/single-product/add-to-cart/quantity.php:12 -msgctxt "Product quantity input tooltip" -msgid "Qty" -msgstr "Antal" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:45 -#: templates/cart/shipping-calculator.php:51 -#: templates/cart/shipping-calculator.php:63 -msgid "State / county" -msgstr "Stat / county" - -# @ woocommerce -#: templates/cart/shipping-methods.php:32 -msgid "Free" -msgstr "Gratis" - -# @ woocommerce -#: templates/cart/totals.php:121 -#, php-format -msgid " (taxes estimated for %s)" -msgstr "(moms uppskattad för %s)" - -# @ woocommerce -#: templates/cart/totals.php:135 -msgid "" -"No shipping methods were found; please recalculate your shipping and enter " -"your state/county and zip/postcode to ensure there are no other available " -"methods for your location." -msgstr "" -"Inga fraktmetoder hittades, vänligen gör en omberäkning av din frakt och " -"ange din kompletta postadress inklusive kommun och postnummer för att " -"säkerställa att det inte finns några andra fraktmetoder för din plats." - -# @ woocommerce -#: templates/checkout/form-login.php:14 -msgid "Returning customer?" -msgstr "Återkommande kund?" - -# @ woocommerce -#: templates/checkout/review-order.php:199 -msgid "I have read and accept the" -msgstr "Jag har läst och accepterar" - -# @ woocommerce -#: templates/emails/admin-new-order.php:13 -#: templates/emails/plain/admin-new-order.php:13 -#, php-format -msgid "You have received an order from %s. Their order is as follows:" -msgstr "Du har tagit emot en order från %s. Deras order är enligt följande:" - -# @ woocommerce -#: templates/emails/admin-new-order.php:17 -#, php-format -msgid "Order: %s" -msgstr "Order: %s" - -# @ woocommerce -#: templates/emails/customer-completed-order.php:14 -#: templates/emails/plain/customer-completed-order.php:13 -#, php-format -msgid "" -"Hi there. Your recent order on %s has been completed. Your order details are " -"shown below for your reference:" -msgstr "" -"Hej. Din senaste order på %s har genomförts. Orderdetaljer visas nedan för " -"din egen referens:" - -# @ woocommerce -#: templates/emails/customer-invoice.php:16 -#: templates/emails/plain/customer-invoice.php:14 -#, php-format -msgid "" -"An order has been created for you on %s. To pay for this order please use " -"the following link: %s" -msgstr "" -"En order har skapats för dig på %s. För att betala för ordern vänligen " -"använd följande länk: %s" - -# @ woocommerce -#: templates/emails/customer-invoice.php:16 -msgid "pay" -msgstr "betala" - -# @ woocommerce -#: templates/emails/customer-processing-order.php:14 -#: templates/emails/plain/customer-processing-order.php:13 -msgid "" -"Your order has been received and is now being processed. Your order details " -"are shown below for your reference:" -msgstr "" -"Din order har tagits emot och den bearbetas just nu. Dina orderdetaljer " -"visas nedan för din egen referens:" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:14 -#: templates/emails/plain/customer-reset-password.php:13 -msgid "Someone requested that the password be reset for the following account:" -msgstr "Någon begärde att lösenordet skulle återställas för följande konto:" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:15 -#: templates/emails/plain/customer-reset-password.php:15 -#, php-format -msgid "Username: %s" -msgstr "Användarnamn: %s" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:16 -#: templates/emails/plain/customer-reset-password.php:16 -msgid "If this was a mistake, just ignore this email and nothing will happen." -msgstr "" -"Om detta var ett misstag, ignorera det här mail och inget kommer att hända." - -# @ woocommerce -#: templates/emails/customer-reset-password.php:17 -#: templates/emails/plain/customer-reset-password.php:17 -msgid "To reset your password, visit the following address:" -msgstr "Återställ ditt lösenord genom att besöka följande adress:" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:20 -msgid "Click here to reset your password" -msgstr "Klicka här för att återställa ditt lösenord" - -# @ woocommerce -#: templates/emails/email-order-items.php:47 -#, php-format -msgid "Download %d:" -msgstr "Ladda ner %d" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:19 -#: templates/emails/plain/customer-completed-order.php:19 -#: templates/emails/plain/customer-invoice.php:20 -#: templates/emails/plain/customer-note.php:27 -#: templates/emails/plain/customer-processing-order.php:19 -#, php-format -msgid "Order number: %s" -msgstr "Ordernummer: %s" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:20 -#: templates/emails/plain/customer-completed-order.php:20 -#: templates/emails/plain/customer-invoice.php:21 -#: templates/emails/plain/customer-note.php:28 -#: templates/emails/plain/customer-processing-order.php:20 -#, php-format -msgid "Order date: %s" -msgstr "Orderdatum: %s" - -# @ woocommerce -#: templates/emails/plain/customer-completed-order.php:38 -#: templates/emails/plain/customer-note.php:46 -#: templates/emails/plain/customer-processing-order.php:38 -msgid "Your details" -msgstr "Dina uppgifter" - -# @ woocommerce -#: templates/emails/plain/email-order-items.php:28 -#, php-format -msgid "Quantity: %s" -msgstr "Antal: %s" - -# @ woocommerce -#: templates/emails/plain/email-order-items.php:31 -#, php-format -msgid "Cost: %s" -msgstr "Kostnad: %s" - -# @ woocommerce -#: templates/loop/orderby.php:22 -msgid "Sort by popularity" -msgstr "Sortera utifrån populäritet" - -# @ woocommerce -#: templates/loop/orderby.php:23 -msgid "Sort by average rating" -msgstr "Sortera utifrån genomsnittligt betyg" - -# @ woocommerce -#: templates/loop/orderby.php:24 -msgid "Sort by newness" -msgstr "Sortera utifrån fräschör" - -# @ woocommerce -#: templates/loop/orderby.php:25 -msgid "Sort by price: low to high" -msgstr "Sortera utifrån pris: lågt till högt" - -# @ woocommerce -#: templates/loop/orderby.php:26 -msgid "Sort by price: high to low" -msgstr "Sortera utifrån pris: högt till lågt" - -# @ woocommerce -#: templates/loop/result-count.php:28 -msgid "Showing the single result" -msgstr "Visar det enskilda resultatet" - -# @ woocommerce -#: templates/loop/result-count.php:30 -#, php-format -msgid "Showing all %d results" -msgstr "Visar alla %d resultat" - -# @ woocommerce -#: templates/loop/result-count.php:32 -#, php-format -msgctxt "%1$d = first, %2$d = last, %3$d = total" -msgid "Showing %1$d–%2$d of %3$d results" -msgstr "Visar %1$d–%2$d av %3$d resultat" - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:22 -msgid "" -"Lost your password? Please enter your username or email address. You will " -"receive a link to create a new password via email." -msgstr "" -"Förlorat ditt lösenord? Vänligen ange ditt användarnamn eller din e-" -"postadress. Du kommer att få ett mail med en länk för att återställa ditt " -"lösenord." - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:28 -msgid "Enter a new password below." -msgstr "Mata in ett nytt lösenord nedan." - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:45 -msgid "Reset Password" -msgstr "Återställ lösenord" - -# @ woocommerce -#: templates/myaccount/my-address.php:17 -msgid "My Addresses" -msgstr "Mina adresser" - -# @ woocommerce -#: templates/myaccount/my-address.php:64 -msgid "You have not set up this type of address yet." -msgstr "Du har inte skapat denna typ av adress än." - -# @ woocommerce -#: templates/myaccount/my-downloads.php:27 -#, php-format -msgid "%s download remaining" -msgid_plural "%s downloads remaining" -msgstr[0] "%s nedladdning återstår" -msgstr[1] "%s nedladdningar återstår" - -# @ woocommerce -#: templates/myaccount/my-orders.php:62 -#, php-format -msgid "%s for %s item" -msgid_plural "%s for %s items" -msgstr[0] "%s för %s produkt" -msgstr[1] "%s för %s produkter" - -# @ woocommerce -#: templates/order/form-tracking.php:23 -msgid "Track" -msgstr "Spåra" - -# @ woocommerce -#: templates/single-product/meta.php:24 -msgid "Category:" -msgid_plural "Categories:" -msgstr[0] "Kategori:" -msgstr[1] "Kategorier:" - -# @ woocommerce -#: templates/single-product/meta.php:29 -msgid "Tag:" -msgid_plural "Tags:" -msgstr[0] "Etikett:" -msgstr[1] "Etiketter:" - -# @ woocommerce -#: templates/single-product/review.php:26 -#, php-format -msgid "Rated %d out of 5" -msgstr "Betygsatt %d av 5" - -# @ woocommerce -#: templates/single-product-reviews.php:63 -msgid "Add Your Review" -msgstr "Skriv din recension" - -# @ woocommerce -#: woocommerce-ajax.php:1173 -msgid "Value" -msgstr "Värde" - -# @ woocommerce -#: woocommerce-core-functions.php:275 -#, php-format -msgid "%s – %s%s" -msgstr "%s – %s%s" - -# @ woocommerce -#: woocommerce-core-functions.php:698 -msgid "Australian Dollars" -msgstr "Australian Dollars" - -# @ woocommerce -#: woocommerce-core-functions.php:699 -msgid "Brazilian Real" -msgstr "Brazilian Real" - -# @ woocommerce -#: woocommerce-core-functions.php:700 -msgid "Canadian Dollars" -msgstr "Canadian Dollars" - -# @ woocommerce -#: woocommerce-core-functions.php:701 -msgid "Chinese Yuan" -msgstr "Chinese Yuan" - -# @ woocommerce -#: woocommerce-core-functions.php:702 -msgid "Czech Koruna" -msgstr "Czech Koruna" - -# @ woocommerce -#: woocommerce-core-functions.php:704 -msgid "Euros" -msgstr "Euros" - -# @ woocommerce -#: woocommerce-core-functions.php:705 -msgid "Hong Kong Dollar" -msgstr "Hong Kong Dollar" - -# @ woocommerce -#: woocommerce-core-functions.php:707 -msgid "Indonesia Rupiah" -msgstr "Indonesia Rupiah" - -# @ woocommerce -#: woocommerce-core-functions.php:710 -msgid "Japanese Yen" -msgstr "Japanese Yen" - -# @ woocommerce -#: woocommerce-core-functions.php:712 -msgid "Malaysian Ringgits" -msgstr "Malaysian Ringgits" - -# @ woocommerce -#: woocommerce-core-functions.php:713 -msgid "Mexican Peso" -msgstr "Mexican Peso" - -# @ woocommerce -#: woocommerce-core-functions.php:715 -msgid "New Zealand Dollar" -msgstr "New Zealand Dollar" - -# @ woocommerce -#: woocommerce-core-functions.php:718 -msgid "Pounds Sterling" -msgstr "Pounds Sterling" - -# @ woocommerce -#: woocommerce-core-functions.php:719 -msgid "Romanian Leu" -msgstr "Romanian Leu" - -# @ woocommerce -#: woocommerce-core-functions.php:721 -msgid "Singapore Dollar" -msgstr "Singapore Dollar" - -# @ woocommerce -#: woocommerce-core-functions.php:722 -msgid "South African rand" -msgstr "South African rand" - -# @ woocommerce -#: woocommerce-core-functions.php:727 -msgid "Turkish Lira" -msgstr "Turkish Lira" - -# @ woocommerce -#: woocommerce-core-functions.php:728 -msgid "US Dollars" -msgstr "US Dollars" - -# @ woocommerce -#: woocommerce-core-functions.php:1369 -msgctxt "slug" -msgid "uncategorized" -msgstr "okategoriserad" - -# @ woocommerce -#: woocommerce-core-functions.php:2502 -msgid "Unpaid order cancelled - time limit reached." -msgstr "Obetald order avbruten - tidsbegränsning nådd." - -# @ woocommerce -#: woocommerce-functions.php:406 -msgid "" -"Please choose the quantity of items you wish to add to your cart…" -msgstr "" -"Vänligen ange det antal produkter som du önskar lägga i varukorgen…" - -# @ woocommerce -#: woocommerce-functions.php:413 -msgid "Please choose a product to add to your cart…" -msgstr "Vänligen välj en produkt att lägga i varukorgen…" - -# @ woocommerce -#: woocommerce-functions.php:482 -#, php-format -msgid "Added "%s" to your cart." -msgstr "La till "%s" i din varukorg." - -# @ woocommerce -#: woocommerce-functions.php:482 -msgid "" and "" -msgstr "" och "" - -# @ woocommerce -#: woocommerce-functions.php:485 -#, php-format -msgid ""%s" was successfully added to your cart." -msgstr ""%s" placerades i din varukorg." - -# @ woocommerce -#: woocommerce-functions.php:985 -msgid "Product no longer exists." -msgstr "Produkten existerar inte längre." - -# @ woocommerce -#: woocommerce-functions.php:1028 -msgid "No file defined" -msgstr "Ingen fil definierad" - -# @ woocommerce -#: woocommerce-functions.php:1641 -msgid "Password changed successfully." -msgstr "Ändring av lösenord lyckades." - -# @ woocommerce -#: woocommerce-functions.php:1717 -msgid "Address changed successfully." -msgstr "Adressändring lyckades" - -# @ woocommerce -#: woocommerce-template.php:767 -#, php-format -msgid "Reviews (%d)" -msgstr "Recensioner (%d)" - -# @ woocommerce -#: woocommerce.php:1208 -msgid "" -"Sorry, no products matched your selection. Please choose a different " -"combination." -msgstr "" -"Tyvärr, inga produkter matchade ditt val. Vänligen välj en annorlunda " -"kombination." - -# @ woocommerce -#: admin/includes/welcome.php:48 -msgid "Welcome to WooCommerce" -msgstr "Välkommen till WooCommerce" - -# @ woocommerce -#: admin/includes/welcome.php:135 -#, php-format -msgid "Welcome to WooCommerce %s" -msgstr "Välkommen till WooCommerce %s" - -# @ woocommerce -#: admin/includes/welcome.php:140 -msgid "Thanks, all done!" -msgstr "Tack, allt klart!" - -# @ woocommerce -#: admin/includes/welcome.php:142 -msgid "Thank you for updating to the latest version!" -msgstr "Tack för att du uppdaterade till senaste versionen!" - -# @ woocommerce -#: admin/includes/welcome.php:144 -msgid "Thanks for installing!" -msgstr "Tack för att du installerade!" - -# @ woocommerce -#: admin/includes/welcome.php:146 -#, php-format -msgid "" -"%s WooCommerce %s is more powerful, stable, and secure than ever before. We " -"hope you enjoy it." -msgstr "" -"%s WooCommerce %s är kraftfullare, stabilare och säkrare än någonsin " -"tidigare. Vi hoppas att du kommer att uppskatta det." - -# @ woocommerce -#: admin/includes/welcome.php:150 -#, php-format -msgid "Version %s" -msgstr "Version %s" - -# @ woocommerce -#: admin/includes/welcome.php:161 -msgid "What's New" -msgstr "Vad är nytt?" - -# @ woocommerce -#: admin/includes/welcome.php:163 -msgid "Credits" -msgstr "Medverkande" - -# @ woocommerce -#: admin/includes/welcome.php:186 -msgid "Security in mind" -msgstr "Säkerhet i fokus" - -# @ woocommerce -#: admin/includes/welcome.php:190 -msgid "Sucuri Safe Plugin" -msgstr "Sucuri-säkrat tillägg" - -# @ woocommerce -#: admin/includes/welcome.php:191 -msgid "" -"You will be happy to learn that WooCommerce has been audited and certified " -"by the Sucuri Security team. Whilst there is not much to be seen visually to " -"understand the amount of work that went into this audit, rest assured that " -"your website is powered by one of the most powerful and stable eCommerce " -"plugins available." -msgstr "" -"Du blir säkert glad av att höra om hur Sucuris säkerhetsteam har granskat " -"och certifierat WooCommerce. Även om det inte går att se med blotta ögat " -"allt arbete som lagts på granskningen, kan du vara säker på att din " -"webbplats drivs av ett av de mest kraftfulla och stabila e-handelstilläggen " -"tillgängliga idag." - -# @ woocommerce -#: admin/includes/welcome.php:194 -msgid "A Smoother Admin Experience" -msgstr "En smidigare adminupplevelse" - -# @ woocommerce -#: admin/includes/welcome.php:200 -msgid "New Product Panel" -msgstr "Ny produktpanel" - -# @ woocommerce -#: admin/includes/welcome.php:201 -msgid "" -"We have revised the product data panel making it cleaner, more streamlined, " -"and more logical. Adding products is a breeze!" -msgstr "" -"Vi har reviderat produktdatapanelen och gjort den renare, mer " -"strömlinjeformad och mer logisk. Lägga till produkter är en barnlek!" - -# @ woocommerce -#: admin/includes/welcome.php:206 -msgid "Nicer Order Screens" -msgstr "Trevligare orderöversikter" - -# @ woocommerce -#: admin/includes/welcome.php:207 -msgid "" -"Order pages have had a cleanup, with a more easily scannable interface. We " -"particularly like the new status icons!" -msgstr "" -"Ordersidorna har städats upp, och blivit lättare att överblicka. Vi gillar " -"särskilt de nya statusikonerna!" - -# @ woocommerce -#: admin/includes/welcome.php:212 -msgid "Multi-Download Support" -msgstr "Stöd för multi-nedladdning" - -# @ woocommerce -#: admin/includes/welcome.php:213 -msgid "" -"Products can have multiple downloadable files - purchasers will get access " -"to all the files added." -msgstr "" -"Produkter kan nu ha flera nedladdningsbara filer - köpare får access till " -"samtliga filer som lagts till." - -# @ woocommerce -#: admin/includes/welcome.php:218 -msgid "Less Taxing Taxes" -msgstr "Smartare skattehantering" - -# @ woocommerce -#: admin/includes/welcome.php:224 -msgid "New Tax Input Panel" -msgstr "Ny panel för moms (skatter)" - -# @ woocommerce -#: admin/includes/welcome.php:225 -msgid "" -"The tax input pages have been streamlined to make inputting taxes simpler - " -"adding multiple taxes for a single jurisdiction is now much easier using the " -"priority system. There is also CSV import/export support." -msgstr "" -"Sidorna för skatter (moms) har förenklats för att göra inmatningar smidigare " -"- att lägga till fler skattesatser för ett enskild område är nu mycket " -"enklare tack vare prioritetssystemet. Det finns även stöd för import- och " -"export med CSV." - -# @ woocommerce -#: admin/includes/welcome.php:229 -msgid "Improved Tax Options" -msgstr "Förbättrade skatteinställningar" - -# @ woocommerce -#: admin/includes/welcome.php:230 -msgid "" -"As requested by some users, we now support taxing the billing address " -"instead of shipping (optional), and we allow you to choose which tax class " -"applies to shipping." -msgstr "" -"Som begärt av vissa, har vi nu stöd för att beskatta faktureringsadressen " -"istället den för leverans och vi låter dig välja vilken skatt som gäller för " -"frakt." - -# @ woocommerce -#: admin/includes/welcome.php:235 -msgid "Product Listing Improvements Customers Will Love" -msgstr "Förbättrade presentationer av produkter som kunderna kommer att älska" - -# @ woocommerce -#: admin/includes/welcome.php:241 -msgid "New Sorting Options" -msgstr "Nya sorteringsalternativ" - -# @ woocommerce -#: admin/includes/welcome.php:242 -msgid "Customers can now sort products by popularity and ratings." -msgstr "Kunder kan nu sortera produkter efter popularitet och betyg." - -# @ woocommerce -#: admin/includes/welcome.php:247 -msgid "Better Pagination and Result Counts" -msgstr "Förbättrad sidhantering och antal träffar (resultat)" - -# @ woocommerce -#: admin/includes/welcome.php:248 -msgid "" -"Numbered pagination has been added to core, and we show the number of " -"results found above the listings." -msgstr "" -"Sidnumrering har adderats till grundkoden och vi visar antalet träffar " -"ovanför listningen." - -# @ woocommerce -#: admin/includes/welcome.php:253 -msgid "Inline Star Rating Display" -msgstr "Stjärnor på rad" - -# @ woocommerce -#: admin/includes/welcome.php:254 -msgid "" -"We have added star ratings to the catalog which are pulled from reviews." -msgstr "" -"Vi har lagt till stjärnbetyg till katalogen, vilka hämtas från " -"kundrecensioner." - -# @ woocommerce -#: admin/includes/welcome.php:262 -msgid "Under the Hood" -msgstr "Under huven" - -# @ woocommerce -#: admin/includes/welcome.php:266 -msgid "New product classes" -msgstr "Nya produktklasser" - -# @ woocommerce -#: admin/includes/welcome.php:267 -msgid "" -"The product classes have been rewritten and are now factory based. Much more " -"extendable, and easier to query products using the new get_product() function." -msgstr "" -"Produktklasserna har kodats om och är nu ‘factory based‘. " -"Lättare att utöka och enklare att efterfråga produkter genom den nya " -"funktionen get_product()." - -# @ woocommerce -#: admin/includes/welcome.php:271 -msgid "Capability overhaul" -msgstr "Genomgångna förmågor" - -# @ woocommerce -#: admin/includes/welcome.php:272 -msgid "" -"More granular capabilities for admin/shop manager roles covering products, " -"orders and coupons." -msgstr "" -"Utökade förmågor för admin/butiksägarerollerna inkluderande produkter, " -"ordrar och kuponger." - -# @ woocommerce -#: admin/includes/welcome.php:276 -msgid "API Improvements" -msgstr "API-förbättringar" - -# @ woocommerce -#: admin/includes/welcome.php:277 -msgid "" -"WC-API now has real endpoints, and we've optimised the gateways " -"API significantly by only loading gateways when needed." -msgstr "" -"WC-API har nu ‘real endpoints\\\" och vi har optimerat " -"gateway-API:erna ordentligt genom att endast ladda gateways när de behövs." - -# @ woocommerce -#: admin/includes/welcome.php:283 -msgid "Cache-friendly cart widgets" -msgstr "Cache-vänliga varukorgswidgets" - -# @ woocommerce -#: admin/includes/welcome.php:284 -msgid "" -"Cart widgets and other \"fragments\" are now pulled in via AJAX - this works " -"wonders with static page caching." -msgstr "" -"Varukorgswidgets och andra \"fragment\" läses nu in via AJAX - vilket " -"fungerar perfekt med cachning av statiska sidor." - -# @ woocommerce -#: admin/includes/welcome.php:288 -msgid "Session handling" -msgstr "Sessions-hantering" - -# @ woocommerce -#: admin/includes/welcome.php:289 -msgid "" -"PHP SESSIONS have been a problem for many users in the past, so we've " -"developed our own handler using cookies and options to make these more " -"reliable." -msgstr "" -"PHP SESSIONS har varit ett problem för många användare tidigare, så vi har " -"utvecklat en egen ‘handles‘ som använder ‘cookies‘ " -"och alternativ för att göra dessa mer pålitliga." - -# @ woocommerce -#: admin/includes/welcome.php:293 -msgid "Retina Ready" -msgstr "Retina-redo" - -# @ woocommerce -#: admin/includes/welcome.php:294 -msgid "All graphics within WC have been optimised for HiDPI displays." -msgstr "All grafik inom WC har optimerats för HiDPI-displayer." - -# @ woocommerce -#: admin/includes/welcome.php:301 -msgid "Better stock handling" -msgstr "Bättre lagerhantering" - -# @ woocommerce -#: admin/includes/welcome.php:302 -msgid "" -"We have added an option to hold stock for unpaid orders (defaults to " -"60mins). When this time limit is reached, and the order is not paid for, " -"stock is released and the order is cancelled." -msgstr "" -"Vi har lagt till en valmöjlighet att reservera lagersaldot för obetalda " -"ordrar (standardvärde är 60 minuter). När tidsgränsen nås och ordern inte " -"betalas släpps lagersaldot och order avbryts." - -# @ woocommerce -#: admin/includes/welcome.php:306 -msgid "Improved Line-item storage" -msgstr "Bättre lagring av orderrader" - -# @ woocommerce -#: admin/includes/welcome.php:307 -msgid "" -"We have changed how order items get stored making them easier (and faster) " -"to access for reporting. Order items are no longer serialised within an " -"order - they are stored within their own table." -msgstr "" -"Vi har ändrat hur orderrader lagras för ge enklare (och snabbare) access " -"till dem för rapportering. Orderrader är ej längre serialiserade inom en " -"order - de lagras i en egen tabell." - -# @ woocommerce -#: admin/includes/welcome.php:311 -msgid "Autoload" -msgstr "Autoladdning" - -# @ woocommerce -#: admin/includes/welcome.php:312 -msgid "" -"We have setup autoloading for classes - this has dramatically reduced memory " -"usage in 2.0." -msgstr "" -"Vi har satt upp autoladdning för klasser - vilket gett en dramatisk " -"reducering av minnesanväning i 2.0." - -# @ woocommerce -#: admin/includes/welcome.php:319 -msgid "Go to WooCommerce Settings" -msgstr "Gå till WooCommerce-inställningarna" - -# @ woocommerce -#: admin/includes/welcome.php:337 -msgid "" -"WooCommerce is developed and maintained by a worldwide team of passionate " -"individuals and backed by an awesome developer community. Want to see your " -"name? Contribute to WooCommerce." -msgstr "" -"WooCommerce är utvecklat och förvaltat av ett världsomspännande team av " -"passionerade personer och uppbackade av en fantastisk gemenskap av " -"utvecklare. Vill du se ditt namn här? Bidra till WooCommerce." - -# @ woocommerce -#: admin/includes/welcome.php:363 -#, php-format -msgid "View %s" -msgstr "Visa %s" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:125 -msgid "" -"Could not grant access - the user may already have permission for this file " -"or billing email is not set. Ensure the billing email is set, and the order " -"has been saved." -msgstr "" -"Kunde inte ge access - användaren kanske redan har access till den här filen " -"eller så är faktureringsmail ej bestämts. Kontrollera så att " -"faktureringsmail är satts och att ordern har sparats." - -# @ woocommerce -#: admin/woocommerce-admin-content.php:29 -#, php-format -msgid "" -"Thank you for using WooCommerce :) Should you need help using or extending " -"WooCommerce please read the documentation. For further " -"assistance you can use the community forum or if you have " -"access, our support desk." -msgstr "" -"Tack för att du använder WooCommerce :) Skulle du behöva hjälp eller utöka " -"WooCommerce vänligen läs dokumentationen. För mer hjälp " -"kan du använda forumet eller om du har access, vår kundtjänst." - -# @ woocommerce -#: admin/woocommerce-admin-init.php:434 -msgid "Please select some items." -msgstr "Vänligen välj något." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:157 -msgid "" -"Please enter a prefix for your invoice numbers. If you use your PayPal " -"account for multiple stores ensure this prefix is unique as PayPal will not " -"allow orders with the same invoice number." -msgstr "" -"Var god och ange ett prefix för dina fakturanummer. Om du använder ditt " -"PayPal-konto för fler än en butik måste du se till så att prefixet är unikt " -"eftersom PayPal inte tillåter ordrar med samma fakturanummer." - -# @ woocommerce -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:23 -msgid "" -"Increase your social media exposure by 10 percent! ShareYourCart helps you " -"get more customers by motivating satisfied customers to talk with their " -"friends about your products. For help with ShareYourCart view the documentation." -msgstr "" -"Öka din social media-exponering med 10 procent! ShareYourCart hjälper dig " -"att få fler kunder genom att motivera dina nöjda kunder att berätta för sina " -"vänner om dina produkter. För hjälp med ShareYourCart se dokumentationen." - -# @ woocommerce -#: i18n/states/US.php:72 -msgid "US Virgin Islands" -msgstr "US Virgin Islands" - -# @ woocommerce -#: woocommerce-ajax.php:1100 -msgid "" -"No products had their stock reduced - they may not have stock management " -"enabled." -msgstr "" -"Inga produkter fick sitt lager reducerat - de har kanske inte hantering av " -"lagersaldo aktiverat." - -# @ woocommerce -#: woocommerce-ajax.php:1152 -msgid "" -"No products had their stock increased - they may not have stock management " -"enabled." -msgstr "" -"Inga produkter fick sitt lager utökat - de har kanske inte hantering av " -"lagersaldo aktiverat." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Value of the coupon." -msgstr "Kupongens värde" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:413 -msgid "Pipe (|) separate terms" -msgstr "Pie (|) separerar termer" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:365 -msgid "Edit Class" -msgstr "Redigera klass" - -# @ woocommerce -#: classes/class-wc-countries.php:277 -msgid "Western Samoa" -msgstr "Västra Samoa" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:147 -msgid "Receiver Email" -msgstr "Mottagarmail" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:149 -msgid "" -"If this differs from the email entered above, input your main receiver email " -"for your PayPal account. This is used to validate IPN requests." -msgstr "" -"Om denna skiljer sig åt från e-postadressen inmatad ovan, ange din " -"huvudsakliga mottagarepostadress för ditt PayPal-konto. Detta används för " -"att validera IPN-förfrågningar." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:656 -#, php-format -msgid "" -"Validation error: PayPal IPN response from a different email address (%s)." -msgstr "Valideringsfel: PayPal IPN svar från en annan e-postadress (%s)" - -# @ woocommerce -#: templates/order/order-details.php:64 -#, php-format -msgid "Download file%s" -msgstr "Ladda ner fil%s" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:128 -msgid "Additional Rates" -msgstr "Ytterligare taxesatser" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:130 -msgid "" -"Optional extra shipping options with additional costs (one per line): Option " -"Name | Additional Cost | Per Cost Type (order, class, or item) Example: " -"Priority Mail | 6.95 | order." -msgstr "" -"Valfria extra fraktalternativ med ytterligare kostnader (en per rad): " -"Alternativnamn | Ytterligare kostnad | Kostnadsberäkning (per order, klass " -"eller produkt) Exempel: Prioriterad post | 6.95 | order." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:133 -msgid "Option Name | Additional Cost | Per Cost Type (order, class, or item)" -msgstr "" -"Alternativnamn | Ytterligare kostnad | Kostnadsberäkning (per order, klass " -"eller produkt)" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:136 -msgid "Additional Costs" -msgstr "Ytterligare kostnader" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:138 -msgid "" -"Additional costs can be added below - these will all be added to the per-" -"order cost above." -msgstr "" -"Ytterligare kostnader kan läggas till nedan - dessa kommer alla att adderas " -"till kostnadsposten per order ovan." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:141 -msgid "Costs Added..." -msgstr "Kostnader adderade..." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:154 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:120 -msgid "Minimum Handling Fee" -msgstr "Lägsta orderhanteringsavgift" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:479 -msgid "Costs" -msgstr "Kostnader" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:492 -msgid "+ Add Cost" -msgstr "+ Lägg till kostnad" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:492 -msgid "Delete selected costs" -msgstr "Radera valda kostnader" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:498 -msgid "Any class" -msgstr "Vilken klass som helst" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:90 -msgid "Cost Added..." -msgstr "Kostnad adderad..." - -# @ woocommerce -#: woocommerce-core-functions.php:708 -msgid "Indian Rupee" -msgstr "Indian Rupee" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:259 -msgid "is available" -msgstr "är tillgänglig" - -# @ woocommerce -#: classes/class-wc-checkout.php:79 -msgid "Confirm password" -msgstr "Bekräfta lösenord" - -# @ woocommerce -#: classes/class-wc-checkout.php:80 -msgctxt "placeholder" -msgid "Confirm password" -msgstr "Bekräfta lösenord" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:152 -msgid "Pay securely with your credit card." -msgstr "Betala säkert med ditt kreditkort" - -# @ woocommerce -#: woocommerce-core-functions.php:711 -msgid "South Korean Won" -msgstr "South Korean Won" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:149 -msgid "Show all types" -msgstr "Visa alla sorter" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:557 -msgid "Customer Sessions" -msgstr "Kundsessioner" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:558 -msgid "Clear all sessions" -msgstr "Rensa alla sessioner" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:559 -msgid "" -"Warning This tool will delete all customer " -"session data from the database, including any current live carts." -msgstr "" -"Varning Det här verktyget kommer att radera " -"all kundsessioner från databasen inklusive de som är aktiva just nu." - -# @ woocommerce -#: classes/class-wc-cache-helper.php:92 -#, php-format -msgid "" -"In order for database caching to work with WooCommerce you " -"must add _wc_session_ to the \"Ignored Query Strings\" option " -"in W3 Total Cache settings here." -msgstr "" -"För att cache av databas ska fungera tillsammans med " -"WooCommerce måste du lägga till _wc_session_ till \"Ignored " -"Query Strings\" i W3 Total Cache-inställningarna här." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:213 -#, php-format -msgid "" -"Log PayPal events, such as IPN requests, inside woocommerce/logs/" -"paypal-%s.txt" -msgstr "" -"Logga PayPal-händelser, såsom IPN-förfrågningar, i woocommerce/logs/" -"paypal-%s.txt" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:69 -msgid "Set Domain Name" -msgstr "Bestäm domännamn" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:70 -#, php-format -msgid "" -"(Optional) Sets the _setDomainName variable. See " -"here for more information." -msgstr "" -"(Valfritt) Bestämmer _setDomainName-variabeln. Se detta för mer information." - -# @ woocommerce -#: woocommerce.php:172 -msgid "Premium Support" -msgstr "Premium-support" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "Email restrictions" -msgstr "Epostbegränsningar" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "No restrictions" -msgstr "Inga begränsningar" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "" -"List of emails to check against the customer's billing email when an order " -"is placed." -msgstr "" -"Lista med epostsadresser att kontrollera mot kundens faktureringsadress när " -"en order läggs." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-checkout.php:45 -#, php-format -msgid "" -"WooCommerce Config Error: The checkout thanks/pay pages are missing - these " -"pages are required for the checkout to function correctly. Please configure " -"the pages here." -msgstr "" -"WooCommerce konfigurationsfel: Kassans tack/betala-sidor saknas - dessa " -"sidor krävs för att kassan ska fungera korrekt. Vänligen konfigurera sidorna " -"here." - -# @ woocommerce -#: woocommerce-core-functions.php:720 -msgid "Russian Ruble" -msgstr "Ryska rubel" - -# @ woocommerce -#: woocommerce-functions.php:664 woocommerce-functions.php:666 -#: woocommerce-functions.php:674 -msgid "Error" -msgstr "Error" - -# @ woocommerce -#: woocommerce-functions.php:674 -msgid "A user could not be found with this email address." -msgstr "En användare med denna e-postadress kunde inte hittas." - -# @ woocommerce -#. translators: plugin header field 'Version' -#: woocommerce.php:0 -msgid "2.0.10" -msgstr "2.0.10" diff --git a/i18n/languages/woocommerce-tr_TR.mo b/i18n/languages/woocommerce-tr_TR.mo deleted file mode 100644 index 655f7ec5f59..00000000000 Binary files a/i18n/languages/woocommerce-tr_TR.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-tr_TR.po b/i18n/languages/woocommerce-tr_TR.po deleted file mode 100644 index 2f7fbe031ad..00000000000 --- a/i18n/languages/woocommerce-tr_TR.po +++ /dev/null @@ -1,13591 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce v2.1.2\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-01-09 09:36:51+00:00\n" -"PO-Revision-Date: 2013-03-04 09:41:25+0000\n" -"Last-Translator: M Ali Recai Aydoğdu \n" -"Language-Team: ManusH ; BetaTeknoloji \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Poedit 1.5.5\n" -"X-Poedit-Language: \n" -"X-Poedit-Country: \n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n" -"X-Poedit-Basepath: ../../\n" -"X-Poedit-Bookmarks: \n" -"X-Poedit-SearchPath-0: .\n" -"X-Textdomain-Support: yes" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:5 -msgid "Insert Shortcode" -msgstr "Kısakod Ekle" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:6 -msgid "Product price/cart button" -msgstr "Ürün fiyat/sepet düğmesi" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:7 -msgid "Product by SKU/ID" -msgstr "SKU/ID kodu ile Ürün" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:8 -msgid "Products by SKU/ID" -msgstr "SKU/ID kodu ile Ürünler" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:116 -#: assets/js/admin/editor_plugin_lang.php:9 -msgid "Product categories" -msgstr "Ürün Kategorileri" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:10 -msgid "Products by category slug" -msgstr "kategori-kısaismi ile Ürünler" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:11 -msgid "Recent products" -msgstr "En son Ürünler" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:12 -msgid "Featured products" -msgstr "Öneçıkan Ürünler" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:13 -msgid "Shop Messages" -msgstr "Mağaza Mesajları" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:45 -#: admin/woocommerce-admin-settings.php:182 -#: assets/js/admin/editor_plugin_lang.php:14 -msgid "Pages" -msgstr "Sayfalar" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:195 -#: admin/woocommerce-admin-status.php:277 -#: assets/js/admin/editor_plugin_lang.php:15 -#: classes/widgets/class-wc-widget-cart.php:61 -msgid "Cart" -msgstr "Sepet" - -# @ woocommerce -#: admin/settings/settings-init.php:114 -#: admin/woocommerce-admin-install.php:198 -#: admin/woocommerce-admin-status.php:281 -#: assets/js/admin/editor_plugin_lang.php:16 -msgid "Checkout" -msgstr "Sipariş Ver" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:17 -msgid "Order tracking" -msgstr "Sipariş Takip" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:201 -#: admin/woocommerce-admin-status.php:293 -#: assets/js/admin/editor_plugin_lang.php:18 -#: templates/checkout/thankyou.php:30 -msgid "My Account" -msgstr "Hesabım" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:297 -#: assets/js/admin/editor_plugin_lang.php:19 -msgid "Edit Address" -msgstr "Adres Düzenle" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:213 -#: admin/woocommerce-admin-status.php:305 -#: assets/js/admin/editor_plugin_lang.php:20 -msgid "Change Password" -msgstr "Şifre Değiştir" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:210 -#: admin/woocommerce-admin-status.php:301 -#: assets/js/admin/editor_plugin_lang.php:21 woocommerce.php:1031 -#: woocommerce.php:1032 -msgid "View Order" -msgstr "Sipariş Görüntüle" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:285 -#: assets/js/admin/editor_plugin_lang.php:22 -#: templates/checkout/thankyou.php:28 templates/myaccount/my-orders.php:71 -msgid "Pay" -msgstr "Ödeme" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:23 -msgid "Thankyou" -msgstr "Teşekkürler" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:421 -#: classes/emails/class-wc-email-customer-completed-order.php:135 -#: classes/emails/class-wc-email-customer-invoice.php:138 -#: classes/emails/class-wc-email-new-order.php:115 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:63 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:57 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:158 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:119 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:77 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:75 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:52 -msgid "Enable/Disable" -msgstr "Etkin/Devredışı" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:423 -#: classes/emails/class-wc-email-customer-completed-order.php:137 -#: classes/emails/class-wc-email-customer-invoice.php:140 -#: classes/emails/class-wc-email-new-order.php:117 -msgid "Enable this email notification" -msgstr "Bu email bilgilendirmesini Etkinleştir" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:427 -#: classes/emails/class-wc-email-customer-invoice.php:144 -msgid "Email subject" -msgstr "Email Konusu" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:429 -#: classes/abstracts/abstract-wc-email.php:436 -#: classes/emails/class-wc-email-customer-completed-order.php:143 -#: classes/emails/class-wc-email-customer-completed-order.php:150 -#: classes/emails/class-wc-email-customer-completed-order.php:157 -#: classes/emails/class-wc-email-customer-completed-order.php:164 -#: classes/emails/class-wc-email-customer-invoice.php:146 -#: classes/emails/class-wc-email-customer-invoice.php:153 -#: classes/emails/class-wc-email-customer-invoice.php:160 -#: classes/emails/class-wc-email-customer-invoice.php:167 -#, php-format -msgid "Defaults to %s" -msgstr "Varsayılan %s" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:434 -#: classes/emails/class-wc-email-customer-invoice.php:151 -msgid "Email heading" -msgstr "Email Başlık" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:441 -#: classes/emails/class-wc-email-customer-completed-order.php:169 -#: classes/emails/class-wc-email-customer-invoice.php:172 -#: classes/emails/class-wc-email-new-order.php:142 -msgid "Email type" -msgstr "Email Türü" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:443 -#: classes/emails/class-wc-email-customer-completed-order.php:171 -#: classes/emails/class-wc-email-customer-invoice.php:174 -#: classes/emails/class-wc-email-new-order.php:144 -msgid "Choose which format of email to send." -msgstr "Göndermek istediğiniz Email formatını belirleyin" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:447 -#: classes/emails/class-wc-email-customer-completed-order.php:175 -#: classes/emails/class-wc-email-customer-invoice.php:178 -#: classes/emails/class-wc-email-new-order.php:148 -msgid "Plain text" -msgstr "Düz Metin" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:448 -#: classes/emails/class-wc-email-customer-completed-order.php:176 -#: classes/emails/class-wc-email-customer-invoice.php:179 -#: classes/emails/class-wc-email-new-order.php:149 -msgid "HTML" -msgstr "HTML" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:449 -#: classes/emails/class-wc-email-customer-completed-order.php:177 -#: classes/emails/class-wc-email-customer-invoice.php:180 -#: classes/emails/class-wc-email-new-order.php:150 -msgid "Multipart" -msgstr "Çok-parçalı" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:485 -#: classes/abstracts/abstract-wc-email.php:506 -msgid "Could not write to template file." -msgstr "Şablon dosyasına Yazdırılamıyor." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:533 -msgid "Template file copied to theme." -msgstr "Şablon dosyası Temaya Kopyalandı." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:542 -msgid "Template file deleted from theme." -msgstr "Şablon dosyası Temadan Silindi." - -# @ woocommerce -#: admin/includes/welcome.php:146 admin/woocommerce-admin-content.php:41 -#: admin/woocommerce-admin-init.php:86 admin/woocommerce-admin-status.php:252 -#: classes/abstracts/abstract-wc-email.php:550 -#: classes/abstracts/abstract-wc-integration.php:30 -#: classes/abstracts/abstract-wc-settings-api.php:39 -msgid "Settings" -msgstr "Ayarlar" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:562 -msgid "HTML template" -msgstr "HTML Şablon" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:563 -msgid "Plain text template" -msgstr "Düz Metin Şablon" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:582 -msgid "Delete template file" -msgstr "Şablonu Sil" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:585 -#, php-format -msgid "This template has been overridden by your theme and can be found in: " -"%s." -msgstr "Bu şablon kullandığınız tema tarafından değiştiriliyor: %s" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:600 -msgid "Copy file to theme" -msgstr "Şablonu Temaya Kopyala" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:603 -#, php-format -msgid "To override and edit this email template copy %s to your theme " -"folder: %s." -msgstr "Bu şablonu düzenlemek için %s dosyasını temanın %s klasörüne Kopyala." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:614 -msgid "File was not found." -msgstr "Dosya Bulunamadı." - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:639 -msgid "View template" -msgstr "Şablona Gözat" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:640 -msgid "Hide template" -msgstr "Şablonu Gizle" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:651 -msgid "Are you sure you want to delete this template file?" -msgstr "Bu şablonu silmek istediğinizden emin misiniz?" - -# @ woocommerce -#: admin/post-types/product.php:262 admin/post-types/product.php:641 -#: admin/post-types/product.php:928 -#: admin/post-types/writepanels/writepanel-product_data.php:231 -#: classes/abstracts/abstract-wc-product.php:545 -#: classes/abstracts/abstract-wc-product.php:550 -#: classes/abstracts/abstract-wc-product.php:569 -msgid "In stock" -msgstr "Stokta" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:550 -#, php-format -msgid "Only %s left in stock" -msgstr "Sadece %s Adet kaldı" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:553 -#, php-format -msgid "%s in stock" -msgstr "%s Stok Kaldı" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:560 -msgid "(backorders allowed)" -msgstr "(önsiparişe açık)" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:566 -#: classes/abstracts/abstract-wc-product.php:579 templates/cart/cart.php:76 -msgid "Available on backorder" -msgstr "Önsiparişe Uygun" - -# @ woocommerce -#: admin/post-types/product.php:264 admin/post-types/product.php:642 -#: admin/post-types/product.php:929 -#: admin/post-types/writepanels/writepanel-product_data.php:232 -#: admin/woocommerce-admin-reports.php:2103 -#: classes/abstracts/abstract-wc-product.php:572 -#: classes/abstracts/abstract-wc-product.php:582 -#: classes/abstracts/abstract-wc-product.php:586 -msgid "Out of stock" -msgstr "Stokta Yok" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:849 -#: classes/abstracts/abstract-wc-product.php:855 -#: classes/class-wc-cart.php:1743 classes/class-wc-order.php:863 -#: classes/class-wc-product-variable.php:274 -#: classes/class-wc-product-variable.php:283 -#: classes/class-wc-product-variation.php:246 -msgid "Free!" -msgstr "Ücretsiz!" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:873 -msgctxt "min_price" -msgid "From:" -msgstr "En Düşük:" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:965 -#: templates/single-product-reviews.php:43 -#, php-format -msgid "Rated %s out of 5" -msgstr "5 üzerinden %s değerlendirilmiş" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:279 -#: classes/abstracts/abstract-wc-product.php:967 -#: templates/single-product/review.php:27 -#: templates/single-product-reviews.php:43 -msgid "out of 5" -msgstr "5 üzerinden" - -# @ woocommerce -#: classes/class-wc-coupon.php:447 -#, php-format -msgid "Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from your order." -msgstr "Özür dileriz ancak girdiğiniz Kupon Kodu \"%s\" GEÇERSİZ - bu nedenle sipariş talebinizden kupon işlemi çıkarılmıştır." - -# @ woocommerce -#: classes/class-wc-coupon.php:450 -#, php-format -msgid "Sorry, it seems the coupon \"%s\" is not yours - it has now been removed from your order." -msgstr "Üzgünüz, ancak kullanıdığınız \"%s\" Kupon Kodu size ait görünmüyor! Siparişinizden ilgili kupon çıkarılmıştır." - -# @ woocommerce -#: classes/class-wc-cart.php:464 -#, php-format -msgid "Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in stock). Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Üzgünüz, depomuzda siparişinizi karşılayacak sayıda \"%s\" yok; (stok sayısı: %s). Lütfen sepetinizi düzenleyerek yeniden deneyiniz. Oluşan bu rahatsızlık için özür dileriz." - -# @ woocommerce -#: classes/class-wc-cart.php:483 classes/class-wc-cart.php:492 -#, php-format -msgid "Sorry, we do not have enough \"%s\" in stock to fulfil your order (%s in stock). Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Üzgünüz, stoklarımızda \"%s\" siparişinizi karşılayacak kadar ürün bulunmamaktadır (%s Stok Kaldı). Lütfen sepetinizi değiştirerek yeniden deneyiniz. Oluşan bu aksaklık için tekrar özür dileriz." - -# @ woocommerce -#: classes/class-wc-cart.php:527 -#, php-format -msgid "Sorry, we do not have enough \"%s\" in stock to fulfil your order right now. Please try again in %d minutes or edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Üzgünüz, bu ürün için vermiş olduğumuz \"%s\" stok sayısı bitmiştir. Lütfen %d dakika sonra tekrar deneyin yada sepetinizi tekrar düzenleyin. Verdiğimiz rahatsızlıktan dolayı özür dileriz." - -# @ woocommerce -#: classes/class-wc-cart.php:537 -#, php-format -msgid "Sorry, \"%s\" is not in stock. Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Üzgünüz, stoklarımızda \"%s\" bulunmamaktadır. Lütfen sepetinizi değiştirerek yeniden deneyiniz. Oluşan bu aksaklık için tekrar özür dileriz." - -# @ woocommerce -#: classes/class-wc-cart.php:818 -#, php-format -msgid "Sorry, "%s" cannot be purchased." -msgstr "Üzgüneüz, "%s" satışta değil." - -# @ woocommerce -#: classes/class-wc-cart.php:825 -#, php-format -msgid "You cannot add "%s" to the cart because the product is out of stock." -msgstr "Ürün stoklarımızda kalmadığından, sepetinize "%s" ekleyemezsiniz." - -# @ woocommerce -#: classes/class-wc-cart.php:830 -#, php-format -msgid "You cannot add that amount of "%s" to the cart because there is not enough stock (%s remaining)." -msgstr "Stoklarda yeterli miktarda kalmadığından (stokta: %s); sepetinize bu kadar "%s" ekleyemezsiniz." - -# @ woocommerce -#: classes/class-wc-cart.php:842 classes/class-wc-cart.php:856 -#: classes/class-wc-cart.php:864 templates/cart/mini-cart.php:68 -#: woocommerce-functions.php:470 woocommerce.php:1176 -msgid "View Cart →" -msgstr "Sepete Git →" - -# @ woocommerce -#: classes/class-wc-cart.php:842 -msgid "You already have this item in your cart." -msgstr "Bu ürün zaten sepetinizde var." - -# @ woocommerce -#: classes/class-wc-cart.php:856 classes/class-wc-cart.php:864 -#, php-format -msgid "%s You cannot add that amount to the cart — we have %s in stock and you already have %s in your cart." -msgstr "%s Sepetinize bu miktarda ürün ekleyemezsiniz — şu an stoklarımızda %s adet mevcut ve sepetinizde de %s adet bulunuyor." - -# @ woocommerce -#: classes/class-wc-cart.php:1755 -msgid "via" -msgstr "-" - -# @ woocommerce -#: classes/class-wc-coupon.php:444 classes/class-wc-coupon.php:494 -msgid "Coupon does not exist!" -msgstr "İndirim Kuponu bulunamadı!" - -# @ woocommerce -#: classes/class-wc-checkout.php:64 -msgid "Account username" -msgstr "Hesap Kullanıcı adı" - -# @ woocommerce -#: classes/class-wc-checkout.php:65 -msgctxt "placeholder" -msgid "Username" -msgstr "Kullanıcı Adı" - -# @ woocommerce -#: classes/class-wc-checkout.php:72 classes/class-wc-checkout.php:79 -msgid "Account password" -msgstr "Hesap şifresi" - -# @ woocommerce -#: classes/class-wc-checkout.php:73 classes/class-wc-checkout.php:80 -msgctxt "placeholder" -msgid "Password" -msgstr "Şifre" - -# @ woocommerce -#: admin/post-types/shop_order.php:48 -#: admin/post-types/writepanels/writepanels-init.php:71 -#: classes/class-wc-checkout.php:89 -msgid "Order Notes" -msgstr "Sipariş Notları" - -# @ woocommerce -#: classes/class-wc-checkout.php:90 -msgctxt "placeholder" -msgid "Notes about your order, e.g. special notes for delivery." -msgstr "Siparişiniz ile ilgili notlar, örn: teslimat ile ilgili özel bilgiler." - -# @ woocommerce -#: classes/class-wc-checkout.php:152 -#, php-format -msgid "Order – %s" -msgstr "Sipariş – %s" - -# @ woocommerce -#: classes/class-wc-checkout.php:152 -#, php-format -msgctxt "Order date parsed by strftime" -msgid "%b %d, %Y @ %I:%M %p" -msgstr "" - -# @ woocommerce -#: classes/class-wc-checkout.php:276 -msgid "Backordered" -msgstr "ÖnSipariş verildi" - -# @ woocommerce -#: classes/class-wc-checkout.php:386 -#, php-format -msgid "Sorry, your session has expired. Return to homepage →" -msgstr "Üzgünüz, oturum süresi aşıldı. Anasayfaya geri dön →" - -# @ woocommerce -#: classes/class-wc-checkout.php:438 woocommerce-functions.php:1632 -msgid "is a required field." -msgstr "gerekli bir alandır." - -# @ woocommerce -#: classes/class-wc-checkout.php:451 -#, php-format -msgid "(%s) is not a valid postcode/ZIP." -msgstr "(%s) geçerli bir Posta Kodu değil!" - -# @ woocommerce -#: classes/class-wc-checkout.php:472 -msgid "is not valid. Please enter one of the following:" -msgstr "geçerli değil. Lütfen şunlardan birini girin:" - -# @ woocommerce -#: classes/class-wc-checkout.php:480 -msgid "is not a valid number." -msgstr "geçerli bir sayı değil." - -# @ woocommerce -#: classes/class-wc-checkout.php:487 -msgid "is not a valid email address." -msgstr "geçerli bir e-posta değil." - -# @ woocommerce -#: classes/class-wc-checkout.php:543 -msgid "Please enter an account username." -msgstr "Lütfen kullanıcı adınızı giriniz." - -# @ woocommerce -#: classes/class-wc-checkout.php:547 -msgid "Invalid email/username." -msgstr "E-posta/Kullanıcı adı geçersiz." - -# @ woocommerce -#: classes/class-wc-checkout.php:550 -msgid "An account is already registered with that username. Please choose another." -msgstr "Girdiğiniz Kullanıcı Adı daha önce sistemimize kayıt olmuş. Lütfen başka bir Kullanıcı Adı seçiniz." - -# @ woocommerce -#: classes/class-wc-checkout.php:560 -msgid "Please enter an account password." -msgstr "Lütfen hesap şifrenizi giriniz" - -# @ woocommerce -#: classes/class-wc-checkout.php:563 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:85 -#: woocommerce-functions.php:731 woocommerce-functions.php:1562 -msgid "Passwords do not match." -msgstr "Şifreleriniz birbirleriyle eşleşmiyor." - -# @ woocommerce -#: classes/class-wc-checkout.php:567 -msgid "An account is already registered with your email address. Please login." -msgstr "" -"Girdiğiniz E-posta adresi ile daha önce zaten bir hesap oluşturulmuş. Lütfen " -"o bilgileri kullanarak giriş yapın." - -# @ woocommerce -#: classes/class-wc-checkout.php:573 -msgid "You must accept our Terms & Conditions." -msgstr "Şartları & Koşulları kabul etmeniz gerekir." - -# @ woocommerce -#: classes/class-wc-checkout.php:582 -msgid "Invalid shipping method." -msgstr "Geçersiz Kargo Yöntemi" - -# @ woocommerce -#: classes/class-wc-checkout.php:595 -msgid "Invalid payment method." -msgstr "Geçersiz Ödeme Yöntemi." - -# @ woocommerce -#: classes/class-wc-checkout.php:635 woocommerce-core-functions.php:2485 -#: woocommerce-core-functions.php:2488 woocommerce-functions.php:703 -#: woocommerce-functions.php:705 woocommerce-functions.php:708 -#: woocommerce-functions.php:720 woocommerce-functions.php:722 -#: woocommerce-functions.php:725 woocommerce-functions.php:759 -msgid "ERROR" -msgstr "H A T A" - -# @ woocommerce -#: classes/class-wc-checkout.php:635 woocommerce-functions.php:759 -msgid "Couldn’t register you… please contact us if you continue to have problems." -msgstr "Kaydınız tamamlanamıyor … lütfen sorun yaşamaya devam ederseniz bizimle irtibata geçiniz." - -# @ woocommerce -#: classes/class-wc-countries.php:37 -msgid "Afghanistan" -msgstr "Afganistan" - -# @ woocommerce -#: classes/class-wc-countries.php:38 -msgid "Åland Islands" -msgstr "Åland Adaları" - -# @ woocommerce -#: classes/class-wc-countries.php:39 -msgid "Albania" -msgstr "Arnavutluk" - -# @ woocommerce -#: classes/class-wc-countries.php:40 -msgid "Algeria" -msgstr "Cezayir" - -# @ woocommerce -#: i18n/states/US.php:67 -msgid "American Samoa" -msgstr "Amerikan Samoası" - -# @ woocommerce -#: classes/class-wc-countries.php:41 -msgid "Andorra" -msgstr "Andorra" - -# @ woocommerce -#: classes/class-wc-countries.php:42 -msgid "Angola" -msgstr "Angola" - -# @ woocommerce -#: classes/class-wc-countries.php:43 -msgid "Anguilla" -msgstr "Anguilla" - -# @ woocommerce -#: classes/class-wc-countries.php:44 -msgid "Antarctica" -msgstr "Antartika" - -# @ woocommerce -#: classes/class-wc-countries.php:45 -msgid "Antigua and Barbuda" -msgstr "Antigua ve Barbuda" - -# @ woocommerce -#: classes/class-wc-countries.php:46 -msgid "Argentina" -msgstr "Arjantin" - -# @ woocommerce -#: classes/class-wc-countries.php:47 -msgid "Armenia" -msgstr "Ermenistan" - -# @ woocommerce -#: classes/class-wc-countries.php:48 -msgid "Aruba" -msgstr "Aruba" - -# @ woocommerce -#: classes/class-wc-countries.php:49 -msgid "Australia" -msgstr "Avustralya" - -# @ woocommerce -#: classes/class-wc-countries.php:50 -msgid "Austria" -msgstr "Avusturya" - -# @ woocommerce -#: classes/class-wc-countries.php:51 -msgid "Azerbaijan" -msgstr "Azerbeycan" - -# @ woocommerce -#: classes/class-wc-countries.php:52 -msgid "Bahamas" -msgstr "Bahamalar" - -# @ woocommerce -#: classes/class-wc-countries.php:53 -msgid "Bahrain" -msgstr "Bahreyn" - -# @ woocommerce -#: classes/class-wc-countries.php:54 -msgid "Bangladesh" -msgstr "Bangladeş" - -# @ woocommerce -#: classes/class-wc-countries.php:55 -msgid "Barbados" -msgstr "Barbados" - -# @ woocommerce -#: classes/class-wc-countries.php:56 -msgid "Belarus" -msgstr "Beyaz Rusya" - -# @ woocommerce -#: classes/class-wc-countries.php:57 -msgid "Belgium" -msgstr "Belçika" - -# @ woocommerce -#: classes/class-wc-countries.php:59 -msgid "Belize" -msgstr "Belize" - -# @ woocommerce -#: classes/class-wc-countries.php:60 -msgid "Benin" -msgstr "Benin" - -# @ woocommerce -#: classes/class-wc-countries.php:61 -msgid "Bermuda" -msgstr "Bermuda" - -# @ woocommerce -#: classes/class-wc-countries.php:62 -msgid "Bhutan" -msgstr "Butan" - -# @ woocommerce -#: classes/class-wc-countries.php:63 -msgid "Bolivia" -msgstr "Bolivya" - -# @ woocommerce -#: classes/class-wc-countries.php:64 -msgid "Bonaire, Saint Eustatius and Saba" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:65 -msgid "Bosnia and Herzegovina" -msgstr "Bosna Hersek" - -# @ woocommerce -#: classes/class-wc-countries.php:66 -msgid "Botswana" -msgstr "Botsvana" - -# @ woocommerce -#: classes/class-wc-countries.php:67 -msgid "Bouvet Island" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:68 -msgid "Brazil" -msgstr "Brezilya" - -# @ woocommerce -#: classes/class-wc-countries.php:69 -msgid "British Indian Ocean Territory" -msgstr "Hint Okyanusu İngiliz Bölgesi" - -# @ woocommerce -#: classes/class-wc-countries.php:70 -msgid "British Virgin Islands" -msgstr "Virjin Adaları (İngiliz)" - -# @ woocommerce -#: classes/class-wc-countries.php:71 -msgid "Brunei" -msgstr "Brunei Sultanlığı" - -# @ woocommerce -#: classes/class-wc-countries.php:72 -msgid "Bulgaria" -msgstr "Bulgaristan" - -# @ woocommerce -#: classes/class-wc-countries.php:73 -msgid "Burkina Faso" -msgstr "Burkina Faso" - -# @ woocommerce -#: classes/class-wc-countries.php:74 -msgid "Burundi" -msgstr "Burundi" - -# @ woocommerce -#: classes/class-wc-countries.php:75 -msgid "Cambodia" -msgstr "Kamboçya" - -# @ woocommerce -#: classes/class-wc-countries.php:76 -msgid "Cameroon" -msgstr "Kamerun" - -# @ woocommerce -#: classes/class-wc-countries.php:77 -msgid "Canada" -msgstr "Kanada" - -# @ woocommerce -#: classes/class-wc-countries.php:78 -msgid "Cape Verde" -msgstr "Cape Verde" - -# @ woocommerce -#: classes/class-wc-countries.php:79 -msgid "Cayman Islands" -msgstr "Cayman Adaları" - -# @ woocommerce -#: classes/class-wc-countries.php:80 -msgid "Central African Republic" -msgstr "Orta Afrika Cumhuriyeti" - -# @ woocommerce -#: classes/class-wc-countries.php:81 -msgid "Chad" -msgstr "Çat" - -# @ woocommerce -#: classes/class-wc-countries.php:82 -msgid "Chile" -msgstr "Şili" - -# @ woocommerce -#: classes/class-wc-countries.php:83 -msgid "China" -msgstr "Çin" - -# @ woocommerce -#: classes/class-wc-countries.php:84 -msgid "Christmas Island" -msgstr "Christmas Adaları" - -# @ woocommerce -#: classes/class-wc-countries.php:85 -msgid "Cocos (Keeling) Islands" -msgstr "Cocos (Keeling) Adaları" - -# @ woocommerce -#: classes/class-wc-countries.php:86 -msgid "Colombia" -msgstr "Kolombiya" - -# @ woocommerce -#: classes/class-wc-countries.php:87 -msgid "Comoros" -msgstr "Comoros" - -# @ woocommerce -#: classes/class-wc-countries.php:88 -msgid "Congo (Brazzaville)" -msgstr "Kongo (Brazzaville)" - -# @ woocommerce -#: classes/class-wc-countries.php:89 -msgid "Congo (Kinshasa)" -msgstr "Kongo (Kinshasa)" - -# @ woocommerce -#: classes/class-wc-countries.php:90 -msgid "Cook Islands" -msgstr "Cook Adaları" - -# @ woocommerce -#: classes/class-wc-countries.php:91 -msgid "Costa Rica" -msgstr "Kostarika" - -# @ woocommerce -#: classes/class-wc-countries.php:92 -msgid "Croatia" -msgstr "Hırvatistan" - -# @ woocommerce -#: classes/class-wc-countries.php:93 -msgid "Cuba" -msgstr "Küba" - -# @ woocommerce -#: classes/class-wc-countries.php:94 -msgid "CuraÇao" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:95 -msgid "Cyprus" -msgstr "K.K.T.C." - -# @ woocommerce -#: classes/class-wc-countries.php:96 -msgid "Czech Republic" -msgstr "Çek Cumhuriyeti" - -# @ woocommerce -#: classes/class-wc-countries.php:97 -msgid "Denmark" -msgstr "Danimarka" - -# @ woocommerce -#: classes/class-wc-countries.php:98 -msgid "Djibouti" -msgstr "Cibuti" - -# @ woocommerce -#: classes/class-wc-countries.php:99 -msgid "Dominica" -msgstr "Dominika" - -# @ woocommerce -#: classes/class-wc-countries.php:100 -msgid "Dominican Republic" -msgstr "Dominik Cumhuriyeti" - -# @ woocommerce -#: classes/class-wc-countries.php:101 -msgid "Ecuador" -msgstr "Ekvator" - -# @ woocommerce -#: classes/class-wc-countries.php:102 -msgid "Egypt" -msgstr "Mısır" - -# @ woocommerce -#: classes/class-wc-countries.php:103 -msgid "El Salvador" -msgstr "El Salvador" - -# @ woocommerce -#: classes/class-wc-countries.php:104 -msgid "Equatorial Guinea" -msgstr "Ekvator Ginesi" - -# @ woocommerce -#: classes/class-wc-countries.php:105 -msgid "Eritrea" -msgstr "Eritre" - -# @ woocommerce -#: classes/class-wc-countries.php:106 -msgid "Estonia" -msgstr "Estonya" - -# @ woocommerce -#: classes/class-wc-countries.php:107 -msgid "Ethiopia" -msgstr "Etiyopya" - -# @ woocommerce -#: classes/class-wc-countries.php:108 -msgid "Falkland Islands" -msgstr "Falkland Adaları" - -# @ woocommerce -#: classes/class-wc-countries.php:109 -msgid "Faroe Islands" -msgstr "Faroe Adaları" - -# @ woocommerce -#: classes/class-wc-countries.php:110 -msgid "Fiji" -msgstr "Fiji" - -# @ woocommerce -#: classes/class-wc-countries.php:111 -msgid "Finland" -msgstr "Finlandiya" - -# @ woocommerce -#: classes/class-wc-countries.php:112 -msgid "France" -msgstr "Fransa" - -# @ woocommerce -#: classes/class-wc-countries.php:113 -msgid "French Guiana" -msgstr "Fransız Guyanası" - -# @ woocommerce -#: classes/class-wc-countries.php:114 -msgid "French Polynesia" -msgstr "Fransız Poliznezyası" - -# @ woocommerce -#: classes/class-wc-countries.php:115 -msgid "French Southern Territories" -msgstr "Fransız Güney Bölgeleri" - -# @ woocommerce -#: classes/class-wc-countries.php:116 -msgid "Gabon" -msgstr "Gabon" - -# @ woocommerce -#: classes/class-wc-countries.php:117 -msgid "Gambia" -msgstr "Gambiya" - -# @ woocommerce -#: classes/class-wc-countries.php:118 i18n/states/US.php:23 -msgid "Georgia" -msgstr "Gürcistan" - -# @ woocommerce -#: classes/class-wc-countries.php:119 -msgid "Germany" -msgstr "Almanya" - -# @ woocommerce -#: classes/class-wc-countries.php:120 -msgid "Ghana" -msgstr "Gana" - -# @ woocommerce -#: classes/class-wc-countries.php:121 -msgid "Gibraltar" -msgstr "Cebelitarık" - -# @ woocommerce -#: classes/class-wc-countries.php:122 -msgid "Greece" -msgstr "Yunanistan" - -# @ woocommerce -#: classes/class-wc-countries.php:123 -msgid "Greenland" -msgstr "Grönland" - -# @ woocommerce -#: classes/class-wc-countries.php:124 -msgid "Grenada" -msgstr "Grenada" - -# @ woocommerce -#: classes/class-wc-countries.php:125 -msgid "Guadeloupe" -msgstr "Guadeloupe" - -# @ woocommerce -#: i18n/states/US.php:68 -msgid "Guam" -msgstr "Guam" - -# @ woocommerce -#: classes/class-wc-countries.php:126 -msgid "Guatemala" -msgstr "Guatemala" - -# @ woocommerce -#: classes/class-wc-countries.php:127 -msgid "Guernsey" -msgstr "Guernsey" - -# @ woocommerce -#: classes/class-wc-countries.php:128 -msgid "Guinea" -msgstr "Gine" - -# @ woocommerce -#: classes/class-wc-countries.php:129 -msgid "Guinea-Bissau" -msgstr "Gine-Bissau Cumhuriyeti" - -# @ woocommerce -#: classes/class-wc-countries.php:130 -msgid "Guyana" -msgstr "Guyana" - -# @ woocommerce -#: classes/class-wc-countries.php:131 -msgid "Haiti" -msgstr "Haiti" - -# @ woocommerce -#: classes/class-wc-countries.php:132 -msgid "Heard Island and McDonald Islands" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:133 -msgid "Honduras" -msgstr "Honduras" - -# @ woocommerce -#: classes/class-wc-countries.php:134 -msgid "Hong Kong" -msgstr "Hong Kong" - -# @ woocommerce -#: classes/class-wc-countries.php:135 -msgid "Hungary" -msgstr "Macaristan" - -# @ woocommerce -#: classes/class-wc-countries.php:136 -msgid "Iceland" -msgstr "İzlanda" - -# @ woocommerce -#: classes/class-wc-countries.php:137 -msgid "India" -msgstr "Hindistan" - -# @ woocommerce -#: classes/class-wc-countries.php:138 -msgid "Indonesia" -msgstr "Endonezya" - -# @ woocommerce -#: classes/class-wc-countries.php:139 -msgid "Iran" -msgstr "İran" - -# @ woocommerce -#: classes/class-wc-countries.php:140 -msgid "Iraq" -msgstr "Irak" - -# @ woocommerce -#: classes/class-wc-countries.php:141 -msgid "Republic of Ireland" -msgstr "İrlanda Cumhuriyeti" - -# @ woocommerce -#: classes/class-wc-countries.php:142 -msgid "Isle of Man" -msgstr "İnsan Adası" - -# @ woocommerce -#: classes/class-wc-countries.php:143 -msgid "Israel" -msgstr "İsrail" - -# @ woocommerce -#: classes/class-wc-countries.php:144 -msgid "Italy" -msgstr "İtalya" - -# @ woocommerce -#: classes/class-wc-countries.php:145 -msgid "Ivory Coast" -msgstr "Fildişi Sahilleri" - -# @ woocommerce -#: classes/class-wc-countries.php:146 -msgid "Jamaica" -msgstr "Jamaika" - -# @ woocommerce -#: classes/class-wc-countries.php:147 -msgid "Japan" -msgstr "Japonya" - -# @ woocommerce -#: classes/class-wc-countries.php:148 -msgid "Jersey" -msgstr "Jersey" - -# @ woocommerce -#: classes/class-wc-countries.php:149 -msgid "Jordan" -msgstr "Ürdün" - -# @ woocommerce -#: classes/class-wc-countries.php:150 -msgid "Kazakhstan" -msgstr "Kazakistan" - -# @ woocommerce -#: classes/class-wc-countries.php:151 -msgid "Kenya" -msgstr "Kenya" - -# @ woocommerce -#: classes/class-wc-countries.php:152 -msgid "Kiribati" -msgstr "Kiribati" - -# @ woocommerce -#: classes/class-wc-countries.php:153 -msgid "Kuwait" -msgstr "Kuveyt" - -# @ woocommerce -#: classes/class-wc-countries.php:154 -msgid "Kyrgyzstan" -msgstr "Kırgızistan" - -# @ woocommerce -#: classes/class-wc-countries.php:155 -msgid "Laos" -msgstr "Laos" - -# @ woocommerce -#: classes/class-wc-countries.php:156 -msgid "Latvia" -msgstr "Letonya" - -# @ woocommerce -#: classes/class-wc-countries.php:157 -msgid "Lebanon" -msgstr "Lübnan" - -# @ woocommerce -#: classes/class-wc-countries.php:158 -msgid "Lesotho" -msgstr "Lesoto" - -# @ woocommerce -#: classes/class-wc-countries.php:159 -msgid "Liberia" -msgstr "Liberya" - -# @ woocommerce -#: classes/class-wc-countries.php:160 -msgid "Libya" -msgstr "Libya" - -# @ woocommerce -#: classes/class-wc-countries.php:161 -msgid "Liechtenstein" -msgstr "Lihtenştayn" - -# @ woocommerce -#: classes/class-wc-countries.php:162 -msgid "Lithuania" -msgstr "Litvanya" - -# @ woocommerce -#: classes/class-wc-countries.php:163 -msgid "Luxembourg" -msgstr "Lüksemburg" - -# @ woocommerce -#: classes/class-wc-countries.php:164 -msgid "Macao S.A.R., China" -msgstr "Makao" - -# @ woocommerce -#: classes/class-wc-countries.php:165 -msgid "Macedonia" -msgstr "Makedonya Cumhuriyeti" - -# @ woocommerce -#: classes/class-wc-countries.php:166 -msgid "Madagascar" -msgstr "Madagaskar" - -# @ woocommerce -#: classes/class-wc-countries.php:167 -msgid "Malawi" -msgstr "Malavi" - -# @ woocommerce -#: classes/class-wc-countries.php:168 -msgid "Malaysia" -msgstr "Malezya" - -# @ woocommerce -#: classes/class-wc-countries.php:169 -msgid "Maldives" -msgstr "Maldivler" - -# @ woocommerce -#: classes/class-wc-countries.php:170 -msgid "Mali" -msgstr "Mali" - -# @ woocommerce -#: classes/class-wc-countries.php:171 -msgid "Malta" -msgstr "Malta" - -# @ woocommerce -#: classes/class-wc-countries.php:172 -msgid "Marshall Islands" -msgstr "Marshall Adaları" - -# @ woocommerce -#: classes/class-wc-countries.php:173 -msgid "Martinique" -msgstr "Martinik" - -# @ woocommerce -#: classes/class-wc-countries.php:174 -msgid "Mauritania" -msgstr "Moritanya" - -# @ woocommerce -#: classes/class-wc-countries.php:175 -msgid "Mauritius" -msgstr "Mauritius" - -# @ woocommerce -#: classes/class-wc-countries.php:176 -msgid "Mayotte" -msgstr "Mayotte" - -# @ woocommerce -#: classes/class-wc-countries.php:177 -msgid "Mexico" -msgstr "Meksika" - -# @ woocommerce -#: classes/class-wc-countries.php:178 -msgid "Micronesia" -msgstr "Mikronezya" - -# @ woocommerce -#: classes/class-wc-countries.php:179 -msgid "Moldova" -msgstr "Moldova Cumhuriyeti" - -# @ woocommerce -#: classes/class-wc-countries.php:180 -msgid "Monaco" -msgstr "Monako" - -# @ woocommerce -#: classes/class-wc-countries.php:181 -msgid "Mongolia" -msgstr "Moğolistan" - -# @ woocommerce -#: classes/class-wc-countries.php:182 -msgid "Montenegro" -msgstr "Karadağ" - -# @ woocommerce -#: classes/class-wc-countries.php:183 -msgid "Montserrat" -msgstr "Montserrat" - -# @ woocommerce -#: classes/class-wc-countries.php:184 -msgid "Morocco" -msgstr "Fas" - -# @ woocommerce -#: classes/class-wc-countries.php:185 -msgid "Mozambique" -msgstr "Mozambik" - -# @ woocommerce -#: classes/class-wc-countries.php:186 -msgid "Myanmar" -msgstr "Myanmar" - -# @ woocommerce -#: classes/class-wc-countries.php:187 -msgid "Namibia" -msgstr "Namibya" - -# @ woocommerce -#: classes/class-wc-countries.php:188 -msgid "Nauru" -msgstr "Nauru" - -# @ woocommerce -#: classes/class-wc-countries.php:189 -msgid "Nepal" -msgstr "Nepal" - -# @ woocommerce -#: classes/class-wc-countries.php:190 -msgid "Netherlands" -msgstr "Hollanda" - -# @ woocommerce -#: classes/class-wc-countries.php:191 -msgid "Netherlands Antilles" -msgstr "Hollanda Antilleri" - -# @ woocommerce -#: classes/class-wc-countries.php:192 -msgid "New Caledonia" -msgstr "Yeni Kaledonya" - -# @ woocommerce -#: classes/class-wc-countries.php:193 -msgid "New Zealand" -msgstr "Yeni Zelanda" - -# @ woocommerce -#: classes/class-wc-countries.php:194 -msgid "Nicaragua" -msgstr "Nikaragua" - -# @ woocommerce -#: classes/class-wc-countries.php:195 -msgid "Niger" -msgstr "Nijer" - -# @ woocommerce -#: classes/class-wc-countries.php:196 -msgid "Nigeria" -msgstr "Nijerya" - -# @ woocommerce -#: classes/class-wc-countries.php:197 -msgid "Niue" -msgstr "Niue" - -# @ woocommerce -#: classes/class-wc-countries.php:198 -msgid "Norfolk Island" -msgstr "Norfolk Adası" - -# @ woocommerce -#: classes/class-wc-countries.php:199 -msgid "North Korea" -msgstr "Kuzey Korea" - -# @ woocommerce -#: i18n/states/US.php:69 -msgid "Northern Mariana Islands" -msgstr "Kuzey Mariana Adaları" - -# @ woocommerce -#: classes/class-wc-countries.php:200 -msgid "Norway" -msgstr "Norveç" - -# @ woocommerce -#: classes/class-wc-countries.php:201 -msgid "Oman" -msgstr "Umman" - -# @ woocommerce -#: classes/class-wc-countries.php:202 -msgid "Pakistan" -msgstr "Pakistan" - -# @ woocommerce -#: classes/class-wc-countries.php:203 -msgid "Palestinian Territory" -msgstr "Filistin" - -# @ woocommerce -#: classes/class-wc-countries.php:204 -msgid "Panama" -msgstr "Panama" - -# @ woocommerce -#: classes/class-wc-countries.php:205 -msgid "Papua New Guinea" -msgstr "Papua Yeni Gine" - -# @ woocommerce -#: classes/class-wc-countries.php:206 -msgid "Paraguay" -msgstr "Paraguay" - -# @ woocommerce -#: classes/class-wc-countries.php:207 -msgid "Peru" -msgstr "Peru" - -# @ woocommerce -#: classes/class-wc-countries.php:208 -msgid "Philippines" -msgstr "Filipinler" - -# @ woocommerce -#: classes/class-wc-countries.php:209 -msgid "Pitcairn" -msgstr "Pitcairn Adası" - -# @ woocommerce -#: classes/class-wc-countries.php:210 -msgid "Poland" -msgstr "Polonya" - -# @ woocommerce -#: classes/class-wc-countries.php:211 -msgid "Portugal" -msgstr "Portekiz" - -# @ woocommerce -#: i18n/states/US.php:70 -msgid "Puerto Rico" -msgstr "Porto Riko" - -# @ woocommerce -#: classes/class-wc-countries.php:212 -msgid "Qatar" -msgstr "Katar" - -# @ woocommerce -#: classes/class-wc-countries.php:213 -msgid "Reunion" -msgstr "Reunion Adası" - -# @ woocommerce -#: classes/class-wc-countries.php:214 -msgid "Romania" -msgstr "Romanya" - -# @ woocommerce -#: classes/class-wc-countries.php:215 -msgid "Russia" -msgstr "Rusya Federasyonu" - -# @ woocommerce -#: classes/class-wc-countries.php:216 -msgid "Rwanda" -msgstr "Ruanda" - -# @ woocommerce -#: classes/class-wc-countries.php:217 -msgid "Saint Barthélemy" -msgstr "Saint Barthelemy" - -# @ woocommerce -#: classes/class-wc-countries.php:218 -msgid "Saint Helena" -msgstr "Saint Helena" - -# @ woocommerce -#: classes/class-wc-countries.php:219 -msgid "Saint Kitts and Nevis" -msgstr "Saint Kitts ve Nevis" - -# @ woocommerce -#: classes/class-wc-countries.php:220 -msgid "Saint Lucia" -msgstr "Santa Luçia" - -# @ woocommerce -#: classes/class-wc-countries.php:221 -msgid "Saint Martin (French part)" -msgstr "Saint Martin (Fransız Kesimi)" - -# @ woocommerce -#: classes/class-wc-countries.php:222 -msgid "Saint Martin (Dutch part)" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:223 -msgid "Saint Pierre and Miquelon" -msgstr "Saint Pierre ve Miquelon" - -# @ woocommerce -#: classes/class-wc-countries.php:224 -msgid "Saint Vincent and the Grenadines" -msgstr "Saint Vincent ve Grenadinler" - -# @ woocommerce -#: classes/class-wc-countries.php:225 -msgid "Samoa" -msgstr "Samoa" - -# @ woocommerce -#: classes/class-wc-countries.php:226 -msgid "San Marino" -msgstr "San Marino" - -# @ woocommerce -#: classes/class-wc-countries.php:227 -msgid "São Tomé and Príncipe" -msgstr "Sao Tome and Principe" - -# @ woocommerce -#: classes/class-wc-countries.php:228 -msgid "Saudi Arabia" -msgstr "Sudi Arabistan" - -# @ woocommerce -#: classes/class-wc-countries.php:229 -msgid "Senegal" -msgstr "Senegal" - -# @ woocommerce -#: classes/class-wc-countries.php:230 -msgid "Serbia" -msgstr "Sırbistan" - -# @ woocommerce -#: classes/class-wc-countries.php:231 -msgid "Seychelles" -msgstr "Seyşeller" - -# @ woocommerce -#: classes/class-wc-countries.php:232 -msgid "Sierra Leone" -msgstr "Sierra Leone" - -# @ woocommerce -#: classes/class-wc-countries.php:233 -msgid "Singapore" -msgstr "Singapur" - -# @ woocommerce -#: classes/class-wc-countries.php:234 -msgid "Slovakia" -msgstr "Slovakya" - -# @ woocommerce -#: classes/class-wc-countries.php:235 -msgid "Slovenia" -msgstr "Slovenya" - -# @ woocommerce -#: classes/class-wc-countries.php:236 -msgid "Solomon Islands" -msgstr "Solomon Adaları" - -# @ woocommerce -#: classes/class-wc-countries.php:237 -msgid "Somalia" -msgstr "Somali" - -# @ woocommerce -#: classes/class-wc-countries.php:238 -msgid "South Africa" -msgstr "Güney Afrika" - -# @ woocommerce -#: classes/class-wc-countries.php:239 -msgid "South Georgia/Sandwich Islands" -msgstr "South Georgia/Sandwich Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:240 -msgid "South Korea" -msgstr "Güney Korea" - -# @ woocommerce -#: classes/class-wc-countries.php:241 -msgid "South Sudan" -msgstr "Güney Sudan" - -# @ woocommerce -#: classes/class-wc-countries.php:242 -msgid "Spain" -msgstr "İspanya" - -# @ woocommerce -#: classes/class-wc-countries.php:243 -msgid "Sri Lanka" -msgstr "Sri Lanka" - -# @ woocommerce -#: classes/class-wc-countries.php:244 -msgid "Sudan" -msgstr "Sudan" - -# @ woocommerce -#: classes/class-wc-countries.php:245 -msgid "Suriname" -msgstr "Surinam" - -# @ woocommerce -#: classes/class-wc-countries.php:246 -msgid "Svalbard and Jan Mayen" -msgstr "Svalbard ve Jan Mayen Adaları" - -# @ woocommerce -#: classes/class-wc-countries.php:247 -msgid "Swaziland" -msgstr "Svaziland" - -# @ woocommerce -#: classes/class-wc-countries.php:248 -msgid "Sweden" -msgstr "İsveç" - -# @ woocommerce -#: classes/class-wc-countries.php:249 -msgid "Switzerland" -msgstr "İsviçre" - -# @ woocommerce -#: classes/class-wc-countries.php:250 -msgid "Syria" -msgstr "Suriye" - -# @ woocommerce -#: classes/class-wc-countries.php:251 -msgid "Taiwan" -msgstr "Tayvan" - -# @ woocommerce -#: classes/class-wc-countries.php:252 -msgid "Tajikistan" -msgstr "Tacikistan" - -# @ woocommerce -#: classes/class-wc-countries.php:253 -msgid "Tanzania" -msgstr "Tanzanya" - -# @ woocommerce -#: classes/class-wc-countries.php:254 -msgid "Thailand" -msgstr "Tayland" - -# @ woocommerce -#: classes/class-wc-countries.php:255 -msgid "Timor-Leste" -msgstr "Timor-Leste" - -# @ woocommerce -#: classes/class-wc-countries.php:256 -msgid "Togo" -msgstr "Togo" - -# @ woocommerce -#: classes/class-wc-countries.php:257 -msgid "Tokelau" -msgstr "Tokelau" - -# @ woocommerce -#: classes/class-wc-countries.php:258 -msgid "Tonga" -msgstr "Tonga" - -# @ woocommerce -#: classes/class-wc-countries.php:259 -msgid "Trinidad and Tobago" -msgstr "Trinidad ve Tobago" - -# @ woocommerce -#: classes/class-wc-countries.php:260 -msgid "Tunisia" -msgstr "Tunus" - -# @ woocommerce -#: classes/class-wc-countries.php:261 -msgid "Turkey" -msgstr "Türkiye" - -# @ woocommerce -#: classes/class-wc-countries.php:262 -msgid "Turkmenistan" -msgstr "Türkmenistan" - -# @ woocommerce -#: classes/class-wc-countries.php:263 -msgid "Turks and Caicos Islands" -msgstr "Turks ve Caicos Adaları" - -# @ woocommerce -#: classes/class-wc-countries.php:264 -msgid "Tuvalu" -msgstr "Tuvalu" - -# @ woocommerce -#: i18n/states/US.php:71 -msgid "US Minor Outlying Islands" -msgstr "US Minor Outlying Islands" - -# @ woocommerce -#: classes/class-wc-countries.php:265 -msgid "Uganda" -msgstr "Uganda" - -# @ woocommerce -#: classes/class-wc-countries.php:266 -msgid "Ukraine" -msgstr "Ukrayna" - -# @ woocommerce -#: classes/class-wc-countries.php:267 -msgid "United Arab Emirates" -msgstr "Birleşik Arap Emirlikleri" - -# @ woocommerce -#: classes/class-wc-countries.php:268 -msgid "United Kingdom" -msgstr "İngiltere (Birleşik Krallık)" - -# @ woocommerce -#: classes/class-wc-countries.php:269 -msgid "United States" -msgstr "A.B.D." - -# @ woocommerce -#: classes/class-wc-countries.php:270 -msgid "Uruguay" -msgstr "Uruguay" - -# @ woocommerce -#: classes/class-wc-countries.php:271 -msgid "Uzbekistan" -msgstr "Özbekistan" - -# @ woocommerce -#: classes/class-wc-countries.php:272 -msgid "Vanuatu" -msgstr "Vanuatu" - -# @ woocommerce -#: classes/class-wc-countries.php:273 -msgid "Vatican" -msgstr "Vatikan" - -# @ woocommerce -#: classes/class-wc-countries.php:274 -msgid "Venezuela" -msgstr "Venezuela" - -# @ woocommerce -#: classes/class-wc-countries.php:275 -msgid "Vietnam" -msgstr "Vietnam" - -# @ woocommerce -#: classes/class-wc-countries.php:276 -msgid "Wallis and Futuna" -msgstr "Wallis ve Futuna" - -# @ woocommerce -#: classes/class-wc-countries.php:277 -msgid "Western Sahara" -msgstr "Batı Sahra" - -# @ woocommerce -#: classes/class-wc-countries.php:278 -msgid "Yemen" -msgstr "Yemen" - -# @ woocommerce -#: classes/class-wc-countries.php:279 -msgid "Zambia" -msgstr "Zambia" - -# @ woocommerce -#: classes/class-wc-countries.php:280 -msgid "Zimbabwe" -msgstr "Zimbabve" - -# @ woocommerce -#: classes/class-wc-countries.php:418 -msgid "to the" -msgstr " " - -# @ woocommerce -#: classes/class-wc-countries.php:419 -msgid "to" -msgstr " " - -# @ woocommerce -#: classes/class-wc-countries.php:432 -msgid "the" -msgstr " " - -# @ woocommerce -#: classes/class-wc-countries.php:444 -msgid "VAT" -msgstr "KDV" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:352 -#: admin/settings/settings-tax-rates.php:387 -#: admin/settings/settings-tax-rates.php:466 -#: admin/woocommerce-admin-content.php:48 -#: admin/woocommerce-admin-settings.php:184 classes/class-wc-countries.php:444 -#: templates/cart/totals.php:110 templates/checkout/review-order.php:113 -msgid "Tax" -msgstr "Vergi" - -# @ woocommerce -#: classes/class-wc-countries.php:457 -msgid "(incl. VAT)" -msgstr "(KDV dahil)" - -# @ woocommerce -#: classes/class-wc-countries.php:457 -msgid "(incl. tax)" -msgstr "(vergi dahil)" - -# @ woocommerce -#: classes/class-wc-countries.php:470 -msgid "(ex. VAT)" -msgstr "(KDV hariç)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:549 -#: classes/class-wc-countries.php:470 -msgid "(ex. tax)" -msgstr "(vergi hariç)" - -# @ woocommerce -#: classes/class-wc-countries.php:694 classes/class-wc-countries.php:704 -#: classes/class-wc-countries.php:724 classes/class-wc-countries.php:779 -#: classes/class-wc-countries.php:803 classes/class-wc-countries.php:848 -#: classes/class-wc-countries.php:872 -msgid "Province" -msgstr "İl" - -# @ woocommerce -#: classes/class-wc-countries.php:710 -msgid "Canton" -msgstr "Kanton" - -# @ woocommerce -#: classes/class-wc-countries.php:719 classes/class-wc-countries.php:854 -msgid "Municipality" -msgstr "Belediye" - -# @ woocommerce -#: classes/class-wc-countries.php:766 -#, fuzzy -msgid "Town / District" -msgstr "Kasaba / İlçe" - -# @ woocommerce -#: classes/class-wc-countries.php:769 -msgid "Region" -msgstr "Bölge" - -# @ woocommerce -#: classes/class-wc-countries.php:877 -msgid "Zip" -msgstr "Posta Kodu" - -# @ woocommerce -#: classes/class-wc-countries.php:880 -msgid "State" -msgstr "Eyalet" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:168 -#: admin/post-types/writepanels/writepanel-order_data.php:258 -#: admin/woocommerce-admin-users.php:171 admin/woocommerce-admin-users.php:220 -#: classes/class-wc-countries.php:885 -#: templates/cart/shipping-calculator.php:68 -msgid "Postcode" -msgstr "Posta Kodu" - -# @ woocommerce -#: classes/class-wc-countries.php:888 -msgid "County" -msgstr "Eyalet" - -# @ woocommerce -#: classes/class-wc-countries.php:920 classes/class-wc-countries.php:921 -#: classes/class-wc-countries.php:996 -#: templates/cart/shipping-calculator.php:68 -#, fuzzy -msgid "Postcode / Zip" -msgstr "Posta Kodu" - -# @ woocommerce -#: classes/class-wc-countries.php:925 classes/class-wc-countries.php:926 -#: classes/class-wc-countries.php:985 -#, fuzzy -msgid "Town / City" -msgstr "Şehir / İl" - -# @ woocommerce -#: classes/class-wc-countries.php:930 classes/class-wc-countries.php:931 -#: classes/class-wc-countries.php:991 -#, fuzzy -msgid "State / County" -msgstr "Devlet/Eyalet" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:172 -#: admin/post-types/writepanels/writepanel-order_data.php:262 -#: admin/woocommerce-admin-users.php:179 admin/woocommerce-admin-users.php:228 -#: classes/class-wc-countries.php:955 -msgid "Country" -msgstr "Ülke" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:144 -#: admin/post-types/writepanels/writepanel-order_data.php:234 -#: classes/class-wc-countries.php:960 -msgid "First Name" -msgstr "İsim" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:148 -#: admin/post-types/writepanels/writepanel-order_data.php:238 -#: classes/class-wc-countries.php:965 -msgid "Last Name" -msgstr "Soyisim" - -# @ woocommerce -#: classes/class-wc-countries.php:971 -msgid "Company Name" -msgstr "Firma Adı" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:193 -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#: admin/post-types/writepanels/writepanel-order_data.php:277 -#: admin/post-types/writepanels/writepanel-order_data.php:279 -#: classes/class-wc-countries.php:975 -msgid "Address" -msgstr "Adres" - -# @ woocommerce -#: classes/class-wc-countries.php:976 -#, fuzzy -msgctxt "placeholder" -msgid "Street address" -msgstr "Kaydet" - -# @ woocommerce -#: classes/class-wc-countries.php:981 -msgctxt "placeholder" -msgid "Apartment, suite, unit etc. (optional)" -msgstr "Apartman, daire (İsteğe Bağlı)" - -# @ woocommerce -#: classes/class-wc-countries.php:1038 -msgid "Email Address" -msgstr "E-posta Adresi" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:185 -#: classes/class-wc-countries.php:1044 -msgid "Phone" -msgstr "Telefon" - -# @ woocommerce -#: classes/class-wc-coupon.php:459 -msgid "Coupon usage limit has been reached." -msgstr "Kupon Kullanım sınırına ulaşıldı." - -# @ woocommerce -#: classes/class-wc-coupon.php:462 -msgid "This coupon has expired." -msgstr "Bu kuponun geçerlilik süresi dolmuş." - -# @ woocommerce -#: classes/class-wc-coupon.php:465 -#, php-format -msgid "The minimum spend for this coupon is %s." -msgstr "Bu kuponun kullanılabilmesi için harcanması gereken en az tutar: %s." - -# @ woocommerce -#: classes/class-wc-coupon.php:468 -msgid "Sorry, this coupon is not applicable to your cart contents." -msgstr "Üzgünüz, bu kupon sepetinizdeki ürünlere uygulanabilir değil!" - -# @ woocommerce -#: classes/class-wc-customer.php:628 classes/class-wc-customer.php:638 -#, php-format -msgid "File %d" -msgstr "Dosya %d" - -# @ woocommerce -#: classes/class-wc-emails.php:246 -msgid "Note" -msgstr "NoT" - -# @ woocommerce -#: classes/class-wc-emails.php:281 -msgid "Product low in stock" -msgstr "Düşük stoklu Ürün" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:623 -#: classes/class-wc-emails.php:286 classes/class-wc-emails.php:318 -#: classes/class-wc-emails.php:362 -#, php-format -msgid "Variation #%s of %s" -msgstr "" - -# @ woocommerce -#: classes/class-wc-emails.php:288 classes/class-wc-emails.php:320 -#: classes/class-wc-emails.php:364 -#, php-format -msgid "Product #%s - %s" -msgstr "Ürün #%s - %s" - -# @ woocommerce -#: classes/class-wc-emails.php:290 -msgid "is low in stock." -msgstr "düşük stoklu" - -# @ woocommerce -#: classes/class-wc-emails.php:313 -msgid "Product out of stock" -msgstr "Ürün stokta yok" - -# @ woocommerce -#: classes/class-wc-emails.php:322 -msgid "is out of stock." -msgstr "stokta yok." - -# @ woocommerce -#: classes/class-wc-emails.php:357 -msgid "Product Backorder" -msgstr "Ürün Önsipariş" - -# @ woocommerce -#: classes/class-wc-emails.php:366 -#, php-format -msgid "%s units of %s have been backordered in order #%s." -msgstr "%s adet %s ürünü için ön sipariş yapıldı: #%s." - -# @ woocommerce -#: classes/class-wc-order.php:283 -msgctxt "hash before order number" -msgid "#" -msgstr "" - -# @ woocommerce -#: classes/class-wc-order.php:858 -#, php-format -msgid " %svia %s" -msgstr " %s -- %s" - -# @ woocommerce -#: classes/class-wc-order.php:923 -msgid "Cart Subtotal:" -msgstr "Sepet Ara-Toplamı:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:499 -#: classes/class-wc-order.php:929 -msgid "Cart Discount:" -msgstr "Sepet İndirimi:" - -# @ woocommerce -#: classes/class-wc-order.php:935 -msgid "Shipping:" -msgstr "Kargo:" - -# @ woocommerce -#: classes/class-wc-order.php:980 -msgid "Subtotal:" -msgstr "Ara-Toplam:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:507 -#: classes/class-wc-order.php:1006 -msgid "Order Discount:" -msgstr "Sipariş İndirimi:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:653 -#: classes/class-wc-order.php:1011 -msgid "Order Total:" -msgstr "Sipariş Tutarı:" - -# @ woocommerce -#: classes/class-wc-order.php:1034 templates/cart/totals.php:145 -#: templates/checkout/review-order.php:151 -#, php-format -msgid "(Includes %s)" -msgstr "(%s Dahil)" - -# @ woocommerce -#. translators: plugin header field 'Name' -#: admin/woocommerce-admin-content.php:83 admin/woocommerce-admin-init.php:62 -#: classes/class-wc-order.php:1183 classes/class-wc-order.php:1185 -#: classes/class-wc-order.php:1188 woocommerce.php:0 -msgid "WooCommerce" -msgstr "WooCommerce" - -# @ woocommerce -#: classes/class-wc-order.php:1235 -#, php-format -msgid "Order status changed from %s to %s." -msgstr "Sipariş Durumu: %s, %s olarak değişti." - -# @ woocommerce -#: classes/class-wc-order.php:1461 woocommerce-ajax.php:1163 -#: woocommerce-ajax.php:1164 -#, php-format -msgid "Item #%s stock reduced from %s to %s." -msgstr "Ürün: #%s için stok durumu %s 'ten %s 'e azaltıldı." - -# @ woocommerce -#: classes/class-wc-order.php:1473 -msgid "Order item stock reduced successfully." -msgstr "Siparişteki ürünler stoklardan düşürülmüştür." - -# @ woocommerce -#: classes/class-wc-product-external.php:56 -msgid "Buy product" -msgstr "Ürünü Satın Al" - -# @ woocommerce -#: admin/settings/settings-init.php:500 classes/class-wc-shortcodes.php:571 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:257 -#: templates/loop/add-to-cart.php:46 -#: templates/single-product/add-to-cart/grouped.php:45 -#: templates/single-product/add-to-cart/grouped.php:75 -#: templates/single-product/add-to-cart/simple.php:42 -#: templates/single-product/add-to-cart/variable.php:78 -msgid "Add to cart" -msgstr "Sepete Ekle" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:24 -msgid "Completed order" -msgstr "Tamamlanmış Sipariş" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:25 -msgid "Order complete emails are sent to the customer when the order is marked complete and usual indicates that the order has been shipped." -msgstr "Tamamlanmış Sipariş Email-i, sipariş durumu tamamlandı olarak değiştirildiğinde gönderilir ve genellikle siparişin hazırlanarak kargoya verildiğini belirtir." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:27 -msgid "Your order is complete" -msgstr "Siparişiniz Tamamlandı" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:28 -msgid "Your {blogname} order from {order_date} is complete" -msgstr "{blogname} üzerinden yaptığınız {order_date} tarihli siparişiniz Tamamlandı" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:37 -msgid "Your order is complete - download your files" -msgstr "Siparişiniz Tamamlandı - dosyalarınızı indirebilirsiniz" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:38 -msgid "Your {blogname} order from {order_date} is complete - download your files" -msgstr "{blogname} üzerinden yaptığınız {order_date} tarihli siparişiniz Tamamlandı - dosyalarınızı indirebilirsiniz" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:141 -#: classes/emails/class-wc-email-new-order.php:128 -msgid "Subject" -msgstr "Konu" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:148 -#: classes/emails/class-wc-email-new-order.php:135 -msgid "Email Heading" -msgstr "Email Başlığı" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:155 -msgid "Subject (downloadable)" -msgstr "Konu (indirilebilir)" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:162 -msgid "Email Heading (downloadable)" -msgstr "Email Başlığı (indirilebilir)" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:27 -msgid "Customer invoice" -msgstr "Müşteri Faturası" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:28 -msgid "Customer invoice emails can be sent to the user containing order info and payment links." -msgstr "Müşteri Fatura e-postaları, kullanıcıya sipariş bilgileri ve ödeme bağlantılarını içerecek şekilde gönderilebilir." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:33 -msgid "Invoice for order {order_number} from {order_date}" -msgstr "{order_date} tarihli {order_number} numaralı sipariş için Fatura" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:34 -msgid "Invoice for order {order_number}" -msgstr "{order_number} numaralı sipariş için Fatura" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:36 -msgid "Your {blogname} order from {order_date}" -msgstr "{blogname} üzerinden {order_date} tarihli tarihli Siparişiniz" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:37 -msgid "Order {order_number} details" -msgstr "{order_number} numaralı Siparişinizin Detayları" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:158 -msgid "Email subject (paid)" -msgstr "Email Konusu (ödendi)" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:165 -msgid "Email heading (paid)" -msgstr "Email Başlık (ödendi)" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:31 -msgid "New account" -msgstr "Yeni Hesap" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:32 -msgid "Customer new account emails are sent when a customer signs up via the checkout or My Account page." -msgstr "Yeni Müşteri Hesabı Emaili, Üye Olmak istendiğinde site üzerinden Yeni Kayıt formu doldurulduğunda gönderilir. " - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:37 -msgid "Your account on {blogname}" -msgstr "{blogname} sistemindeki Yeni Hesabınız" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:38 -msgid "Welcome to {blogname}" -msgstr "{blogname}-e Hoşgeldiniz" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:62 -#: classes/emails/class-wc-email-customer-note.php:29 -msgid "Customer note" -msgstr "Müşteri Notu" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:30 -msgid "Customer note emails are sent when you add a note to an order." -msgstr "" -"Müşteri Notu Emaili, sipariş kontrolleri sırasında siparişe bir not " -"eklendiğinde gönderilir." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:35 -msgid "Note added to your {blogname} order from {order_date}" -msgstr "" -"{blogname} üzerinden yaptığınız {order_date} tarihli siparişinize bir not " -"eklendi" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:36 -msgid "A note has been added to your order" -msgstr "Siparişinize bir not eklenmiştir." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:24 -msgid "Processing order" -msgstr "Sipariş Hazırlanıyor" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:25 -msgid "This is an order notification sent to the customer after payment containing order details." -msgstr "Ödeme yapıldıktan sonra Müşteriye gönderilen ve Sipariş Detaylarını içeren Sipariş Bilgilendirme mesajıdır." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:27 -msgid "Thank you for your order" -msgstr "Siparişiniz için Teşekkür Ederiz" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:28 -msgid "Your {blogname} order receipt from {order_date}" -msgstr "{blogname} üzerinden yaptığınız {order_date} tarihli Siparişinizin Makbuzu" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:36 -msgid "Reset password" -msgstr "Şifre Sıfırla" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:37 -msgid "Customer reset password emails are sent when a customer resets their password." -msgstr "Müşteri şifre sınırlama e-postası, bir müşteri kendi şifresinin sıfırlanmasını istediğinde gönderilir." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:42 -msgid "Password Reset for {blogname}" -msgstr "{blogname} için Şifre Sıfırlama" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:43 -msgid "Password Reset Instructions" -msgstr "Şifre Sıfırlama işlemleri" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:24 -msgid "New order" -msgstr "Yeni Sipariş" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:25 -msgid "New order emails are sent when an order is received/paid by a customer." -msgstr "" -"Yeni Sipariş Emaili, müşteri tarafından bir sipariş sonlandırılıp/ödendiği " -"zaman gönderilir." - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:27 -msgid "New customer order" -msgstr "Yeni Müşteri Siparişi" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:28 -msgid "[{blogname}] New customer order ({order_number}) - {order_date}" -msgstr "[{blogname}] Yeni Müşteri Siparişi ({order_number}) - {order_date}" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:121 -msgid "Recipient(s)" -msgstr "Alıcı(lar)" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:123 -#, php-format -msgid "Enter recipients (comma separated) for this email. Defaults to %s." -msgstr "" -"Bu email için Alıcı(ları) belirleyin; 1den fazla alıcı için (,) ile ayırabilirsiniz. (Varsayılan: %s)" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:130 -#, php-format -msgid "This controls the email subject line. Leave blank to use the default subject: %s." -msgstr "Email-in Konu satırını kontrol eder. Varsayılan konuyu (%s) kullanmak isterseniz boş bırakabilirsiniz." - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:137 -#, php-format -msgid "This controls the main heading contained within the email notification. Leave blank to use the default heading: %s." -msgstr "Bilgilendirme Email-inin içeriğindeki başlık bölmesini kontrol eder. Varsayılan başlığı (%s) kullanmak isterseniz boş bırakabilirsiniz." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:28 -msgid "Bacs" -msgstr "Havale-Eft" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:65 -msgid "Enable Bank Transfer" -msgstr "Banka Havalesini Etkinleştir" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:69 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:63 -#: classes/gateways/cod/class-wc-gateway-cod.php:87 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:171 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:125 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:104 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:84 -msgid "Title" -msgstr "Başlık" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:71 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:65 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:173 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:127 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:85 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:83 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:60 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:106 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:86 -msgid "This controls the title which the user sees during checkout." -msgstr "" -"Bu alan Ödeme işlemi sırasında müşterinizin göreceği başlığı kontrol eder." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:72 -msgid "Direct Bank Transfer" -msgstr "Banka Havalesi" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:76 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:70 -msgid "Customer Message" -msgstr "Müşteri Mesajı" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:78 -msgid "Give the customer instructions for paying via BACS, and let them know that their order won't be shipping until the money is received." -msgstr "Havale-Eft ile yapılacak ödemeler ile ilgili talimatları yazın. Gönderilen havalenin/eftnin hesaba geçtiği tarafınızca teyit edilmedikçe siparişin geçerli olmayacağını, kargonun gönderilmeyeceğini bildirin." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:79 -msgid "Make your payment directly into our bank account. Please use your Order ID as the payment reference. Your order wont be shipped until the funds have cleared in our account." -msgstr "Ödemeyi bilgileri verilen Banka Hesabımıza yatırın. Lütfen ilgili Sipariş Numarasını havale dekontunun açıklama kısmına yazınız. Siparişiniz abanka havalesi onaylanmadıkça işleme alınmayacaktır." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:82 -msgid "Account Details" -msgstr "Hesap Detayları" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:84 -msgid "Optionally enter your bank details below for customers to pay into." -msgstr "" -"Dilerseniz, müşterilerin ödeme yapabilmeleri için Banka Hesap Bilgilerinizi " -"aşağıya ekleyebilirsiniz." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:88 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:163 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:203 -msgid "Account Name" -msgstr "Hesap Adı" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:94 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:164 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:204 -msgid "Account Number" -msgstr "Hesap Numarası" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:100 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:165 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:205 -msgid "Sort Code" -msgstr "Sıralama Kodu" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:106 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:166 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:206 -msgid "Bank Name" -msgstr "Banka Adı" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:112 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:167 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:207 -msgid "IBAN" -msgstr "IBAN" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:117 -msgid "BIC (formerly Swift)" -msgstr "BIC (Swift olarak da bilinir)" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:136 -msgid "BACS Payment" -msgstr "Havale-Eft Ödemesi" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:137 -msgid "Allows payments by BACS (Bank Account Clearing System), more commonly known as direct bank/wire transfer." -msgstr "Havale-Eft ile ödemeler için bu alanı kullanın." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:158 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:200 -msgid "Our Details" -msgstr "Banka Bilgilerimiz" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:168 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:208 -msgid "BIC" -msgstr "BIC" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:234 -msgid "Awaiting BACS payment" -msgstr "Havale-Eft ödemesi bekleniyor" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:28 -msgid "Cheque" -msgstr "Çek" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:59 -msgid "Enable Cheque Payment" -msgstr "Çekle Ödemeyi Etkinleştir" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:66 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:90 -msgid "Cheque Payment" -msgstr "Çekle Ödeme" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:72 -msgid "Let the customer know the payee and where they should be sending the cheque to and that their order won't be shipping until you receive it." -msgstr "Çekle Ödeme yapılabilmesi için gereken; Alıcı adı, ünvanı, adresi vs. gibi talimatları yazın ve gönderilen çekin hesaba geçmeden siparişin geçerli olmayacağını, kargonun gönderilmeyeceğini bildirin." - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:73 -msgid "Please send your cheque to Store Name, Store Street, Store Town, Store State / County, Store Postcode." -msgstr "Lütfen Çeklerinizi Firmamızın İsim, Ünvan, Adres, Şehir, Posta Kodu, Ülke detaylarını tam olarak içerecek şekilde doldurarak gönderiniz." - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:91 -msgid "Allows cheque payments. Why would you take cheques in this day and age? Well you probably wouldn't but it does allow you to make test purchases for testing order emails and the 'success' pages etc." -msgstr "Çekle Ödeme sağlar. Bu şartlarda çekle ödeme kullanılmak mantıklı olmayabilir! Ama yine de sistemi test ederken, deneme siparişleri için kullanılabilir ve Ödeme sayfalarına geçişi sağlayabilir." - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:147 -msgid "Awaiting cheque payment" -msgstr "Çekin Ödenmesi bekleniyor" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:27 -#: classes/gateways/cod/class-wc-gateway-cod.php:54 -#: classes/gateways/cod/class-wc-gateway-cod.php:90 -msgid "Cash on Delivery" -msgstr "Kapıda Ödeme" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:55 -msgid "Have your customers pay with cash (or by other means) upon delivery." -msgstr "" -"Müşterilerinizin ödemeyi Teslimat anında Nakit (veya bir diğer yolla) " -"yapması yöntemidir." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:80 -msgid "Enable COD" -msgstr "Kapıda Ödeme (CoD) Etkinleştir" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:81 -msgid "Enable Cash on Delivery" -msgstr "Kapıda Ödeme (CoD) Etkinleştir" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:89 -msgid "Payment method title that the customer will see on your website." -msgstr "Sitenizde müşterilerinizin göreceği Ödeme Yöntemi Başlığı" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:28 -#: classes/gateways/cod/class-wc-gateway-cod.php:94 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:178 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:132 -#: woocommerce-template.php:748 -msgid "Description" -msgstr "Açıklama" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:96 -msgid "Payment method description that the customer will see on your website." -msgstr "Sitenizde müşterilerinizin göreceği Ödeme Yöntemi Açıklaması" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:100 -msgid "Instructions" -msgstr "Talimatlar" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:102 -msgid "Instructions that will be added to the thank you page." -msgstr "Teşekkür Sayfasına eklenecek Talimatlar" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:106 -msgid "Enable for shipping methods" -msgstr "Kargo Yöntemleri için etkinleştir" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:111 -msgid "If COD is only available for certain methods, set it up here. Leave blank to enable for all methods." -msgstr "Eğer Kapıda Ödeme sadece bazı yöntemler için geçerli olacaksa, burada belirleyebilirsiniz. Tüm yöntemlerde geçerli olması için boş bırakmanız yeterli." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:176 -msgid "Payment to be made upon delivery." -msgstr "Ödeme teslimat anında gerçekleştirilecektir." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:31 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:196 -msgid "Mijireh Checkout" -msgstr "Mijireh ile Ödeme" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:143 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:321 -msgid "Mijireh error:" -msgstr "Mijireh hatası:" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:160 -msgid "Enable Mijireh Checkout" -msgstr "Mijireh ile Ödemeyi Etkinleştir" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:164 -msgid "Access Key" -msgstr "Erişim Anahtarı" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:166 -msgid "The Mijireh access key for your store." -msgstr "Mağazanız için Mijireh erişim anahtarı." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:174 -msgid "Credit Card" -msgstr "Kredi Kartı" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:180 -msgid "Pay securely with you credit card." -msgstr "Kredi Kartınızı güvenle kullanabilirsiniz." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:181 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:134 -msgid "This controls the description which the user sees during checkout." -msgstr "" -"Bu alanda müşterinin Ödeme işlemi sırasında görmesini istediğiniz açıklama " -"bilgisini yazınız." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:200 -msgid "Get started with Mijireh Checkout" -msgstr "Mijireh ile Ödeme Yöntemi hakkında" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:201 -msgid "provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site. Mijireh supports a wide variety of payment gateways: Stripe, Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and more." -msgstr "Ödemelerinizi güvenli bir şekilde PCI yöntemi ile toplayarak sitenizin tasarımıyla uyumlu veri iletişimi sağlar. Mijireh bir çok ödeme yöntemini desteklemektedir: Stripe, Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, ve daha fazlası." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:203 -msgid "Join for free" -msgstr "Ücretsiz, katılın" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:203 -msgid "Learn more about WooCommerce and Mijireh" -msgstr "WooCommerce ve Mijireh hakkında daha fazla bilgi alın" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:207 -msgid "provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." -msgstr "" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:34 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:128 -msgid "PayPal" -msgstr "PayPal" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:90 -msgid "PayPal standard" -msgstr "PayPal standard" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:91 -msgid "PayPal standard works by sending the user to PayPal to enter their payment information." -msgstr "PayPal Standart Ödeme Sistemi, ödeme bilgilerini girmek ve ödemeyi tamamlamak için müşteriyi PayPal sayfasına yönlendirir." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:103 -msgid "Gateway Disabled" -msgstr "Ödeme Yöntemi devre dışı" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:103 -msgid "PayPal does not support your store currency." -msgstr "PayPal, mağazanıza seçtiğiniz Para Birimi'ni desteklemiyor." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:121 -msgid "Enable PayPal standard" -msgstr "PayPal Standart etkinleştir." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:135 -msgid "Pay via PayPal; you can pay with your credit card if you don't have a PayPal account" -msgstr "PayPal aracılığıyla Ödeme, PayPal hesabınız yoksa bile Kredi Kartı ile ödeme yapabilirsiniz." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:138 -msgid "PayPal Email" -msgstr "PayPal E-posta Adresiniz" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:140 -msgid "Please enter your PayPal email address; this is needed in order to take payment." -msgstr "Lütfen PayPal'a kayıt olduğunuz e-posta adresinizi girin. Ödemeyi alabilmeniz için gerekli bir alandır." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:146 -msgid "Invoice Prefix" -msgstr "Fatura Ön-eki" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:153 -msgid "Submission method" -msgstr "Gönderme Yöntemi" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:155 -msgid "Use form submission method." -msgstr "Form Gönderme Yöntemini Kullan." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:156 -msgid "Enable this to post order data to PayPal via a form instead of using a redirect/querystring." -msgstr "Paypal-e Sipariş Bilgilerini, yönlendirme veya sorgu ifadeleri yerine, bir Form aracılığı ile göndermek için bu seçeneği etkinleştirin." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:160 -msgid "Page Style" -msgstr "Sayfa Stili" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:162 -msgid "Optionally enter the name of the page style you wish to use. These are defined within your PayPal account." -msgstr "Kullanmak istediğiniz Sayfa Stilinizi belirleyebilirsiniz. Bunlar PayPal hesabınızda tanımlanmıştır." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:168 -msgid "Shipping options" -msgstr "Kargo Seçenekleri" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:173 -msgid "Shipping details" -msgstr "Kargo Detayları" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:175 -msgid "Send shipping details to PayPal instead of billing." -msgstr "PayPal-e Fatura Adresini değil Kargo Adresini gönder." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:177 -msgid "PayPal allows us to send 1 address. If you are using PayPal for shipping labels you may prefer to send the shipping address rather than billing." -msgstr "PayPal sadece tek 1 adres bilgisi gönderilmesine izin verir. Kargo Etiketleri için PayPal detaylarını kullanıyorsanız, Fatura Adresi yerine Kargo Adresini göndermek isteyebilirsiniz." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:181 -msgid "Address override" -msgstr "Adres geçersiz" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:183 -msgid "Enable \"address_override\" to prevent address information from being changed." -msgstr "Adres bilgisinin değiştirilmesini engellemek için \"address_override\" etkinleştir." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:184 -msgid "PayPal verifies addresses therefore this setting can cause errors (we recommend keeping it disabled)." -msgstr "PayPal adresleri karşılaştırarak onaylamak isteyecektir, bu nedenle bu ayar hatalara neden olabilir (etkinleştirilmemesi tavsiye edilir)." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:188 -msgid "Gateway Testing" -msgstr "Ödeme Ağgeçidi Testi" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:193 -msgid "PayPal sandbox" -msgstr "PayPal sandbox" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:195 -msgid "Enable PayPal sandbox" -msgstr "PayPal sandbox Etkinleştir" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:197 -#, php-format -msgid "PayPal sandbox can be used to test payments. Sign up for a developer account here." -msgstr "Deneme ödemeleri/işlemleri için PayPal sandbox kullanabilir. Buradan bir Geliştirici hesabı oluşturabilirsiniz." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:200 -msgid "Debug Log" -msgstr "Hata Ayıklama Kaydı" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:202 -msgid "Enable logging" -msgstr "Kaydı Etkinleştir" - -# @ default -#: classes/gateways/paypal/class-wc-gateway-paypal.php:204 -msgid "Log PayPal events, such as IPN requests, inside woocommerce/logs/paypal.txt" -msgstr "PayPal işlemlerini (IPN talepleri vb.) dosyaya kaydet: woocommerce/logs/paypal.txt" - -# @ woocommerce -#: admin/post-types/shop_order.php:98 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:313 -#, php-format -msgid "Order %s" -msgstr "Sipariş %s" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:323 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:373 -msgid "Shipping via" -msgstr "Kargo yolu:" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:414 -msgid "Thank you for your order. We are now redirecting you to PayPal to make payment." -msgstr "Siparişiniz için teşekkür ederiz. Ödemenizi yapmanız için şimdi PayPal ödeme sayfasına yönlendiriliyorsunuz." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:435 -msgid "Pay via PayPal" -msgstr "PayPal ile Ödeme" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:435 -msgid "Cancel order & restore cart" -msgstr "Siparişi İptal Et & Sepete geri dön" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:489 -msgid "Thank you for your order, please click the button below to pay with PayPal." -msgstr "Bizi tercih ettiğiniz için teşekkür ederiz. PayPal ile Ödeme yapmak için aşağıdaki butona tıklayınız." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:634 -#, php-format -msgid "Validation error: PayPal amounts do not match (gross %s)." -msgstr "Onaylama Hatası: PayPal miktarları uyuşmuyor (brüt %s)" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:652 -msgid "IPN payment completed" -msgstr "IPN ödeme tamamlandı" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:664 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:672 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:690 -#, php-format -msgid "Payment %s via IPN." -msgstr "%s IPN ile Ödeme." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:677 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:695 -msgid "Order refunded/reversed" -msgstr "Sipariş ödemesi iade/geri döndü" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:678 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:696 -#, php-format -msgid "Order %s has been marked as refunded - PayPal reason code: %s" -msgstr "" -"Sipariş %s Ödemesi İade Edildi olarak işaretlenmiş - PayPay gerekçe kodu: %s" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:681 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:699 -#, php-format -msgid "Payment for order %s refunded/reversed" -msgstr "Sipariş %s için Ödeme, geri döndü / iade edildi" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:26 -msgid "Google Analytics" -msgstr "Google Analitik" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:27 -msgid "Google Analytics is a free service offered by Google that generates detailed statistics about the visitors to a website." -msgstr "Google Analytics, Google'ın kullanıcıları için bir sitenin ziyaretçilerine dair detaylı istatistiki bilgiler sunan ücretsiz bir hizmetidir." - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:62 -msgid "Google Analytics ID" -msgstr "Google Analitik ID" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:63 -msgid "Log into your google analytics account to find your ID. e.g. UA-XXXXX-X" -msgstr "Google Analytics kodunuzu öğrenmek için hesabınıza giriş yapmanız gerekebilir. örn:UA-XXXXX-X" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:68 -msgid "Tracking code" -msgstr "İzleme Kodu" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:69 -msgid "Add tracking code to your site's footer. You don't need to enable this if using a 3rd party analytics plugin." -msgstr "Sayfaların altkısmına izleme kodu ekleyin. 3. parti bir analitik eklentisi kullanıyorsanız bunu etkinleştirmeniz gerekmez." - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:75 -msgid "Add eCommerce tracking code to the thankyou page" -msgstr "Teşekkür Sayfasına e-Ticaret İzleme Kodu Ekle" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:81 -msgid "Add event tracking code for add to cart actions" -msgstr "(Sepete Ekle) işlemlerine (İzleme Kodu) ekle" - -# @ woocommerce -#: admin/post-types/shop_order.php:95 -#: admin/post-types/writepanels/writepanel-order_data.php:93 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:113 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:168 -#: woocommerce-ajax.php:1725 -msgid "Guest" -msgstr "Misafir" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:201 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:258 -#: templates/single-product/meta.php:19 -msgid "SKU:" -msgstr "Stok Kodu:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:74 -#: admin/woocommerce-admin-taxonomies.php:28 -#: admin/woocommerce-admin-taxonomies.php:122 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:256 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:276 -#: woocommerce.php:948 -msgid "Products" -msgstr "Ürünler" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:277 -msgid "Add to Cart" -msgstr "Sepete Ekle" - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:26 -msgid "ShareDaddy" -msgstr "ShareDaddy" - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:27 -msgid "ShareDaddy is a sharing plugin bundled with JetPack." -msgstr "ShareDaddy, JetPack ile birlikte sunulan bir paylaşım eklentisidir." - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:51 -msgid "Output ShareDaddy button?" -msgstr "ShareDaddy düğmesi ?" - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:52 -msgid "Enable this option to show the ShareDaddy button on the product page." -msgstr "Ürün Sayfasında ShareDaddy düğmesi yayınlamak için Etkinleştirin." - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:29 -msgid "ShareThis" -msgstr "ShareThis" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:30 -msgid "ShareThis offers a sharing widget which will allow customers to share links to products with their friends." -msgstr "ShareThis müşteriler için ürün sayfalarını dostları ile paylaşabilmeleri için bir paylaşım bileşeni hizmeti verir." - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:63 -msgid "ShareThis Publisher ID" -msgstr "ShareThis Yayıncı Kodu" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:64 -#, php-format -msgid "Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons on product pages." -msgstr "Ürün sayfalarında sosyal paylaşım düğmelerinin görünmesi için, %1$sShareThis Yayıncı Kodu%2$snuzu girin." - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:69 -msgid "ShareThis Code" -msgstr "ShareThis Kodu" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:70 -msgid "You can tweak the ShareThis code by editing this option." -msgstr "Bu seçeneği düzenleyerek ShareThis kodunu değiştirebilirsiniz." - -# @ woocommerce -# @ default -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:22 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:329 -msgid "ShareYourCart" -msgstr "Sepetinizi Paylaşın" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:328 -msgid "Share your cart settings" -msgstr "Sepet paylaşma ayarları" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:342 -msgid "Button" -msgstr "Buton" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:343 -msgid "Customize Button" -msgstr "Buton Özelleştirme" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:351 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:352 -msgid "Documentation" -msgstr "Belgeleme" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:33 -msgid "Setup your ShareYourCart account" -msgstr "ShareYourCart hesabınızı kurun" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Create an account" -msgstr "Bir hesap oluşturun" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Can't access your account?" -msgstr "Hesabınıza ulaşamıyor musunuz?" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:100 -msgid "Configure" -msgstr "Yapılandır" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:386 -#: classes/integrations/shareyourcart/views/admin-page.php:110 -#: classes/integrations/shareyourcart/views/button-settings-page.php:120 -msgid "Save changes" -msgstr "Değişiklikleri Kaydet" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/button-settings-page.php:8 -#: classes/integrations/shareyourcart/views/button-settings-page.php:11 -msgid "Button style" -msgstr "Düğme stili" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:25 -msgid "Flat rate" -msgstr "Sabit Oran" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:28 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:461 -msgid "Flat Rates" -msgstr "Sabit Oranlar" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:29 -msgid "Flat rates let you define a standard rate per item, or per order." -msgstr "" -"Sabit oranlar, kargo ücretlendirmesinde tek tek ürün veya toplam sipariş " -"başına standart bir sabit oran belirlemenizi sağlar." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:79 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:54 -msgid "Enable this shipping method" -msgstr "Bu Kargo Yöntemini Etkinleştir" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:83 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:81 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:58 -msgid "Method Title" -msgstr "Yöntem Başlığı" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:86 -msgid "Flat Rate" -msgstr "Sabit Oran" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:90 -msgid "Cost per order" -msgstr "Sipariş Maliyeti" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:96 -#, fuzzy -msgid "Enter a cost (excluding tax) per order, e.g. 5.00. Leave blank to disable." -msgstr "Sipariş için bir Maliyet tutarı girin (örn: 5.00). Kullanmayacaksanız boş bırakabilirsiniz." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:102 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:88 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:143 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:99 -msgid "Method availability" -msgstr "Yöntem Uygunluğu" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:107 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:93 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:148 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:104 -msgid "All allowed countries" -msgstr "İzin Verin Tüm Ülkeler" - -# @ woocommerce -#: admin/settings/settings-init.php:68 admin/settings/settings-init.php:73 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:108 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:112 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:98 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:149 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:153 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:105 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:109 -msgid "Specific Countries" -msgstr "Sadece Belirli Ülkeler" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:120 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:83 -msgid "Calculation Type" -msgstr "Hesaplama Yöntemi" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:124 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:87 -msgid "Per Order - charge shipping for the entire order as a whole" -msgstr "" -"Sipariş bazında - tüm siparişi tek bir bütün olarak değerlendirerek kargo " -"hesaplanır" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:125 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:88 -msgid "Per Item - charge shipping for each item individually" -msgstr "Parça bazında - kargo her ürün için ayrı hesaplanır" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:126 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:89 -msgid "Per Class - charge shipping for each shipping class in an order" -msgstr "" -"Sınıf bazında - kargo ücreti siparişteki her Kargo Sınıfı için ayrı " -"hesaplanır" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:178 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:130 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:93 -msgid "Tax Status" -msgstr "Vergi Durumu" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:20 -#: admin/post-types/writepanels/writepanel-product_data.php:179 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:134 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:97 -msgid "Taxable" -msgstr "Vergiye Tabi" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:181 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:135 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:98 -msgid "None" -msgstr "Yok" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:139 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:102 -msgid "Default Cost" -msgstr "Varsayılan Maliyet" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:145 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:108 -msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -msgstr "Vergi hariç Maliyet. Bir değer girin (örn: 2.50)." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:151 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:114 -msgid "Default Handling Fee" -msgstr "Varsayılan Taşıma Ücreti" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:153 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:116 -msgid "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. Leave blank to disable." -msgstr "Vergi hariç ücreti. Bir değer (örn: 2.50) yada yüzde oranı (örn: 5%) girin. Devre dışı bırakmak için boş bırakın." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:159 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:122 -msgid "Minimum Fee" -msgstr "Asgari Tutar" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:165 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:128 -msgid "Enter a minimum fee amount. Fee's less than this will be increased. Leave blank to disable." -msgstr "Uygulanabilecek en düşük ücreti giriniz. Bunun altındaki tutarlar için fiyat bu seviyeye çıkarılacaktır. Devredışı bırakmak için boş bırakınız." - -# @ woocommerce -#: admin/settings/settings-init.php:833 -#: admin/woocommerce-admin-settings.php:290 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:171 -msgid "Shipping Options" -msgstr "Kargo Seçenekleri" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:173 -msgid "Optional extra shipping options with additional costs (one per line). Example: Option Name|Cost|Per-order (yes or no). Example: Priority Mail|6.95|yes. If per-order is set to no, it will use the \"Calculation Type\" setting." -msgstr "İlave maliyetler getiren opsiyonel ekstra Kargo Seçenekleri (her satıra 1 adet). Şablon detayı: Kargo Yöntemi İsmi|Maliyet|Sipariş başına mı (yes VEYA no)?. Örnek Uygulama:: Acil Hava Kurye|19.99|yes. Eğer sipariş başına maliyet uygulanmayacaksa HESAPLAMA TİPİ ayarları kullanılacaktır." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:467 -#: woocommerce.php:857 -msgid "Shipping Class" -msgstr "Kargo Sınıfı" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:349 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:468 -msgid "Cost" -msgstr "Maliyet" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:468 -msgid "Cost, excluding tax." -msgstr "Vergi hariç Maliyet." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:469 -msgid "Handling Fee" -msgstr "Kargo Ücreti" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:469 -msgid "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -msgstr "Vergi hariç tutar. (Bir miktar veya oran girin; örn: 2.50 veya 5% )." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:474 -msgid "+ Add Flat Rate" -msgstr "+ Sabit Oran Ekle" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:475 -msgid "Add rates for shipping classes here — they will override the default costs defined above." -msgstr "Kargo Sınıfları için tutarları burada girin — yukarıda tanımlanmış varsayılan değerlerin yerine geçeceklerdir." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:475 -msgid "Delete selected rates" -msgstr "Seçili fiyatları sil" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:495 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:528 -msgid "Select a class…" -msgstr "Bir sınıf seçin…" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:500 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:501 -msgid "0.00" -msgstr "0.00" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:542 -msgid "Delete the selected rates?" -msgstr "Seçili fiyatlar silinsin mi?" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:25 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:145 -msgid "Free Shipping" -msgstr "Ücretsiz Kargo" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:77 -msgid "Enable Free Shipping" -msgstr "Ücretsiz Kargo Etkin" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:106 -msgid "Free Shipping Requires..." -msgstr "Ücretsiz Kargo Koşulu :" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:19 -#: admin/post-types/writepanels/order-tax-html.php:8 -#: admin/post-types/writepanels/writepanel-order_data.php:558 -#: admin/post-types/writepanels/writepanel-order_data.php:663 -#: admin/woocommerce-admin-reports.php:1642 -#: admin/woocommerce-admin-reports.php:2655 -#: admin/woocommerce-admin-reports.php:2664 -#: admin/woocommerce-admin-users.php:90 admin/woocommerce-admin-users.php:112 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:110 -#: templates/order/order-details.php:110 templates/order/order-details.php:125 -msgid "N/A" -msgstr "yok" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:111 -msgid "A valid free shipping coupon" -msgstr "Geçerli bir Ücretsiz Kargo Kuponu" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:112 -msgid "A minimum order amount (defined below)" -msgstr "Minimum Sipariş Tutarı (aşağıda tanımlanan)" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:113 -msgid "A minimum order amount OR a coupon" -msgstr "Miminum Satış Tutarı VEYA Kupon" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:114 -msgid "A minimum order amount AND a coupon" -msgstr "Miminum Satış Tutarı VE Kupon" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:118 -msgid "Minimum Order Amount" -msgstr "Minimum Sipariş Miktarı" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:124 -msgid "Users will need to spend this amount to get free shipping (if enabled above)." -msgstr "(Yukarıda bu koşul seçilmişse) Ücretsiz Kargo'dan faydalanabilmek için Müşteriler en az bu tutarda sipariş vermiş olmalılar." - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:28 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:31 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:61 -msgid "International Delivery" -msgstr "Uluslararası Kargo" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:32 -msgid "International delivery based on flat rate shipping." -msgstr "Sabit oranlı/fiyatlı gönderime dayalı Uluslararası Kargo" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:65 -msgid "Availability" -msgstr "Uygunluk" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:70 -msgid "Selected countries" -msgstr "Seçilen Ülkeler" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:71 -msgid "Excluding selected countries" -msgstr "Seçilen Ülkeler hariç" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:75 -msgid "Countries" -msgstr "Ülkeler" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:25 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:107 -msgid "Local Delivery" -msgstr "Yerel Teslimat" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:98 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:78 -msgid "Enable" -msgstr "İzin ver" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:100 -msgid "Enable local delivery" -msgstr "Yerel Teslimatı etkinleştir" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:111 -msgid "Fee Type" -msgstr "Ücret Tipi" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:113 -msgid "How to calculate delivery charges" -msgstr "Teslimat masrafları nasıl hesaplanacak" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 -msgid "Fixed amount" -msgstr "Sabit miktar" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:117 -msgid "Percentage of cart total" -msgstr "Sepet Toplamının yüzdesi" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:118 -msgid "Fixed amount per product" -msgstr "Her bir Ürün başına Sabit miktar" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:123 -msgid "Delivery Fee" -msgstr "Kargo Ücreti" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:129 -msgid "What fee do you want to charge for local delivery, disregarded if you choose free. Leave blank to disable." -msgstr "Yerel Teslimat için ne kadar Ücret tahsil etmek istiyorsanız buraya girin. Bedava Kargo seçilmişse gözardı edilecektir. Devre Dışı kalması için Boş Bırakabilirsiniz." - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:135 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:91 -msgid "Zip/Post Codes" -msgstr "Posta Kodları" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:137 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:93 -msgid "What zip/post codes would you like to offer delivery to? Separate codes with a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -msgstr "Teslimat yapılmaya elverişli Posta Kodlarını burada belirleyebilirsiniz. Kodları (,) ile ayırabilirsiniz. Joker seçimler uygulanabilir (örn: P* ile PK30 şeklindeki tüm kodlar eşleşir)" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:172 -msgid "Local delivery is a simple shipping method for delivering orders locally." -msgstr "Yerel Teslimat, siparişlerin yerel olarak teslim edildiği kargo yöntemidir." - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:25 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:87 -msgid "Local Pickup" -msgstr "Mağazadan Teslim" - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:80 -msgid "Enable local pickup" -msgstr "Mağazadan Teslimatı etkinleştir" - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:117 -msgid "Apply base tax rate" -msgstr "Temel Vergi Oranını Uygula" - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:119 -msgid "When this shipping method is chosen, apply the base tax rate rather than for the customer's given address." -msgstr "Bu Kargo Yöntemi seçildiğinde, müşterinin adresi yerine Temel Vergi Oranını Uygula." - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:134 -msgid "Local pickup is a simple method which allows the customer to pick up their order themselves." -msgstr "Mağazadan Teslimat, müşterilerin siparişlerini kendileri mağazaya gelerek teslim aldıkları basit bir teslimat yöntemidir." - -# @ woocommerce -#: classes/class-wc-coupon.php:497 -msgid "Please enter a coupon code." -msgstr "Lütfen bir Kupon Kodu girin." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-cart.php:54 -#: woocommerce-functions.php:1637 -msgid "Please enter a valid postcode/ZIP." -msgstr "Lütfen geçerli bir Posta Kodu girin." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-cart.php:65 -#: classes/shortcodes/class-wc-shortcode-cart.php:71 -msgid "Shipping costs updated." -msgstr "Sipariş Kargo Maliyeti güncellendi." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-checkout.php:64 -msgid "The order totals have been updated. Please confirm your order by pressing the Place Order button at the bottom of the page." -msgstr "Sipariş Toplamları güncellendi. Lütfen, \" Siparişi Onayla \" düğmesine tıklayarak siparişinizi tamamlayın." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:80 -#: woocommerce-core-functions.php:2488 woocommerce-functions.php:1559 -msgid "Please enter your password." -msgstr "Lütfen şifrenizi girin." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:95 -msgid "Your password has been reset." -msgstr "Şifreniz yenilendi." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:95 -msgid "Log in" -msgstr "Giriş" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:116 -msgid "Enter a username or e-mail address." -msgstr "Kullanıcı Adı veya Eposta" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:123 -msgid "There is no user registered with that email address." -msgstr "Bu e-posta adresi ile kayıtlı bir kullanıcı bulunmamaktadır." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:138 -msgid "Invalid username or e-mail." -msgstr "Geçersiz Kullanıcı Adı / E-posta." - -# @ default -#: classes/shortcodes/class-wc-shortcode-lost-password.php:152 -msgid "Password reset is not allowed for this user" -msgstr "Parola sıfırlama bu kullanıcı için izin verilmez" - -# @ default -#: classes/shortcodes/class-wc-shortcode-lost-password.php:180 -msgid "Check your e-mail for the confirmation link." -msgstr "Onaylamak için e-postanızı kontrol edin." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:200 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:205 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:212 -msgid "Invalid key" -msgstr "Geçersiz anahtar" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:53 -msgid "Please enter a valid order ID" -msgstr "Lütfen Geçerli bir Sipariş No girin." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:57 -msgid "Please enter a valid order email" -msgstr "Lütfen Geçerli bir Sipariş e-Postası girin" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:76 -msgid "Sorry, we could not find that order id in our database." -msgstr "Özür dileriz, kayıtlarımızda bu şekilde bir sipariş bulunmamaktadır." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:65 -#: classes/shortcodes/class-wc-shortcode-pay.php:118 -msgid "Your order has already been paid for. Please contact us if you need assistance." -msgstr "Siparişiniz zaten ödenmiştir. Eğer yardıma ihtiyacınız varsa lütfen bizimle irtibata geçiniz." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:70 -#: classes/shortcodes/class-wc-shortcode-pay.php:125 -#: classes/shortcodes/class-wc-shortcode-view-order.php:49 -#: woocommerce-functions.php:880 woocommerce-functions.php:959 -msgid "Invalid order." -msgstr "Geçersiz sipariş." - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:188 -#: classes/shortcodes/class-wc-shortcode-pay.php:90 -#: templates/checkout/thankyou.php:40 -#: templates/emails/customer-completed-order.php:18 -#: templates/emails/customer-invoice.php:22 -#: templates/emails/customer-note.php:22 -#: templates/emails/customer-processing-order.php:18 -msgid "Order:" -msgstr "SİPARİŞ NO:" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:94 -#: templates/checkout/thankyou.php:44 -msgid "Date:" -msgstr "TARİH:" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:239 -#: classes/shortcodes/class-wc-shortcode-pay.php:98 -#: templates/checkout/thankyou.php:48 -msgid "Total:" -msgstr "Toplam:" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:103 -#: templates/checkout/thankyou.php:53 -msgid "Payment method:" -msgstr "ÖDEME YÖNTEMİ:" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:49 -msgid "My Account →" -msgstr "Hesabım →" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:56 -#, php-format -msgid "Order %s made on %s" -msgstr "Sipariş No: %s , Sipariş Tarihi: %s" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:57 -#, php-format -msgid "Order status: %s" -msgstr ">Sipariş Durumu: %s" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:63 -#: templates/order/tracking.php:31 -msgid "Order Updates" -msgstr "Sipariş Güncellemeleri" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:69 -msgid "l jS \\of F Y, h:ia" -msgstr "" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:31 -msgid "Display a list of your best selling products on your site." -msgstr "Sitenizde En Çok Satılan Ürünler listesi yayınlar." - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:33 -msgid "WooCommerce Best Sellers" -msgstr "WooCommerce- En çok Satanlar" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:71 -msgid "Best Sellers" -msgstr "En çok satanlar" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:192 -#: classes/widgets/class-wc-widget-cart.php:115 -#: classes/widgets/class-wc-widget-featured-products.php:172 -#: classes/widgets/class-wc-widget-layered-nav.php:349 -#: classes/widgets/class-wc-widget-onsale.php:177 -#: classes/widgets/class-wc-widget-price-filter.php:179 -#: classes/widgets/class-wc-widget-product-categories.php:185 -#: classes/widgets/class-wc-widget-product-search.php:91 -#: classes/widgets/class-wc-widget-product-tag-cloud.php:101 -#: classes/widgets/class-wc-widget-random-products.php:133 -#: classes/widgets/class-wc-widget-recent-products.php:169 -#: classes/widgets/class-wc-widget-recent-reviews.php:158 -#: classes/widgets/class-wc-widget-recently-viewed.php:166 -#: classes/widgets/class-wc-widget-top-rated-products.php:159 -msgid "Title:" -msgstr "Başlık:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:195 -#: classes/widgets/class-wc-widget-featured-products.php:175 -#: classes/widgets/class-wc-widget-onsale.php:180 -#: classes/widgets/class-wc-widget-random-products.php:138 -#: classes/widgets/class-wc-widget-recent-products.php:172 -#: classes/widgets/class-wc-widget-recent-reviews.php:161 -#: classes/widgets/class-wc-widget-recently-viewed.php:169 -#: classes/widgets/class-wc-widget-top-rated-products.php:162 -msgid "Number of products to show:" -msgstr "Gösterilecek Ürün Sayısı:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:199 -msgid "Hide free products" -msgstr "Ücretsiz Ürünleri Gizle" - -# @ woocommerce -#: classes/widgets/class-wc-widget-cart.php:33 -msgid "Display the user's Cart in the sidebar." -msgstr "Kullanıcının Sepeti'ni yan-panelde yayınlar." - -# @ woocommerce -#: classes/widgets/class-wc-widget-cart.php:35 -msgid "WooCommerce Cart" -msgstr "Woo-Sepet" - -# @ woocommerce -#: classes/widgets/class-wc-widget-cart.php:119 -msgid "Hide if cart is empty" -msgstr "Sepet boş ise sakla" - -# @ woocommerce -#: classes/widgets/class-wc-widget-featured-products.php:35 -msgid "Display a list of featured products on your site." -msgstr "Sitenizde Öne Çıkan Ürünler listesi yayınlar." - -# @ woocommerce -#: classes/widgets/class-wc-widget-featured-products.php:37 -msgid "WooCommerce Featured Products" -msgstr "WooCommerce- Öne Çıkan Ürünler" - -# @ woocommerce -#: classes/widgets/class-wc-widget-featured-products.php:75 -msgid "Featured Products" -msgstr "Öne Çıkanlar" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:31 -msgid "Shows active layered nav filters so users can see and deactivate them." -msgstr "" -"Kullanıcıların görebilmesi ve etkisizleştirmek için seçebilmeleri için aktif " -"olan WooCommerce- Seçim Daraltma Filtrelerini Gösterir." - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:33 -msgid "WooCommerce Layered Nav Filters" -msgstr "WooCommerce- Seçim Daraltma Filtreleri" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:62 -msgid "Active filters" -msgstr "Aktif Filtreler" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:93 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Remove filter" -msgstr "Filtreyi Kaldır" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -msgid "Min" -msgstr "Dakika" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Max" -msgstr "" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:31 -msgid "Shows a custom attribute in a widget which lets you narrow down the list of products when viewing product categories." -msgstr "Ürün kategorilerini görüntülerken, listelenen ürün yelpazesini daraltmak için bir Özellik bileşeni gösterir." - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:33 -msgid "WooCommerce Layered Nav" -msgstr "WooCommerce- Seçim Daraltma" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:100 -#, php-format -msgid "Any %s" -msgstr "Herhangi %s" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:352 -msgid "Attribute:" -msgstr "Özellikler:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:363 -msgid "Display Type:" -msgstr "Görüntüleme Tipi:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:365 -msgid "List" -msgstr "Liste" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:366 -msgid "Dropdown" -msgstr "Açılır Menü" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:369 -msgid "Query Type:" -msgstr "Sorgu Tipi:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:371 -msgid "AND" -msgstr "VE" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:372 -msgid "OR" -msgstr "VEYA" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:31 -msgid "Display a login area and \"My Account\" links in the sidebar." -msgstr "Yan sütunda bir Giriş alanı ve \"Hesabım\" bağlantısı gösterir." - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:33 -msgid "WooCommerce Login" -msgstr "WooCommerce- Kullanıcı Girişi" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:59 -#: classes/widgets/class-wc-widget-login.php:223 -msgid "Customer Login" -msgstr "Müşteri Girişi" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:60 -#: classes/widgets/class-wc-widget-login.php:226 -#, php-format -msgid "Welcome %s" -msgstr "Sayın %s , Hoşgeldiniz!" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:76 -msgid "My account" -msgstr "Hesabım" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:77 -msgid "Change my password" -msgstr "Şifre Değiştir" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:216 -#: classes/widgets/class-wc-widget-login.php:78 -msgid "Logout" -msgstr "Çıkış" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:116 -#: templates/myaccount/form-login.php:29 -#: templates/myaccount/form-lost-password.php:24 -#: templates/shop/form-login.php:20 -msgid "Username or email" -msgstr "Kullanıcı Adı veya ePosta" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:118 -#: templates/myaccount/form-login.php:33 templates/myaccount/form-login.php:85 -#: templates/shop/form-login.php:24 -msgid "Password" -msgstr "Şifre" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:120 woocommerce-functions.php:945 -msgid "Login →" -msgstr "Giriş →" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:120 -msgid "Lost password?" -msgstr "Şifrenizi mi unuttunuz?" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:222 -msgid "Logged out title:" -msgstr "Çıkış Başlığı:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:225 -msgid "Logged in title:" -msgstr "Giriş Başlığı:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-onsale.php:31 -msgid "Display a list of your on-sale products on your site." -msgstr "Sitenizde İndirimdeki ürünlerinin bir listesini görüntüler." - -# @ woocommerce -#: classes/widgets/class-wc-widget-onsale.php:33 -msgid "WooCommerce On-sale" -msgstr "WooCommerce- İndirimdekiler" - -# @ woocommerce -#: classes/widgets/class-wc-widget-onsale.php:70 -msgid "On Sale" -msgstr "İndirimdekiler" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:33 -msgid "Shows a price filter slider in a widget which lets you narrow down the list of shown products when viewing product categories." -msgstr "Ürün kategorilerini görüntülerken, listelenen ürün yelpazesini daraltmak için bir Fiyat Aralığı Filtresi Çubuğu bileşeni gösterir." - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:35 -msgid "WooCommerce Price Filter" -msgstr "WooCommerce- Fiyat Süzgeci" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:136 -msgid "Min price" -msgstr "En Düşük Fiyat" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:137 -msgid "Max price" -msgstr "En Yüksek Fiyat" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:138 -msgid "Filter" -msgstr "Filtrele" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:140 -msgid "Price:" -msgstr "Fiyat:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:162 -msgid "Filter by price" -msgstr "Fiyat Aralığı Filtresi" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:33 -msgid "A list or dropdown of product categories." -msgstr "Ürün Kategorileri için liste veya açılır menü." - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:35 -msgid "WooCommerce Product Categories" -msgstr "WooCommerce- Ürün Kategorileri" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:57 -#: woocommerce.php:787 woocommerce.php:789 -msgid "Product Categories" -msgstr "Ürün Kategorileri" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:129 -msgid "No product categories exist." -msgstr "Ürün Kategorisi yok!" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:188 -msgid "Order by:" -msgstr "Sıralama Koşulu:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:190 -msgid "Category Order" -msgstr "Kategori Sırası" - -# @ woocommerce -#: admin/post-types/product.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:372 -#: admin/post-types/writepanels/writepanel-product_data.php:451 -#: admin/woocommerce-admin-attributes.php:232 -#: admin/woocommerce-admin-attributes.php:268 -#: admin/woocommerce-admin-attributes.php:306 -#: admin/woocommerce-admin-attributes.php:329 -#: admin/woocommerce-admin-attributes.php:373 -#: admin/woocommerce-admin-attributes.php:398 -#: admin/woocommerce-admin-init.php:450 -#: classes/widgets/class-wc-widget-product-categories.php:191 -#: templates/single-product-reviews.php:99 woocommerce-ajax.php:1244 -msgid "Name" -msgstr "İsim" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:195 -msgid "Show as dropdown" -msgstr "Açılır Menü olarak göster" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:198 -msgid "Show post counts" -msgstr "Ürün Adetlerini göster." - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:201 -msgid "Show hierarchy" -msgstr "Hiyerarşiyi Göster" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:204 -msgid "Only show children for the current category" -msgstr "Sadece geçerli kategori için alt-kategorileri göster" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-search.php:31 -msgid "A Search box for products only." -msgstr "Sadece Ürünler için Arama Kutusu." - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-search.php:33 -msgid "WooCommerce Product Search" -msgstr "WooCommerce- Ürün Arama" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-tag-cloud.php:31 -msgid "Your most used product tags in cloud format." -msgstr "En çok kullanılan Ürün Etiketleriniz, Bulut formunda." - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-tag-cloud.php:33 -msgid "WooCommerce Product Tags" -msgstr "WooCommerce- Ürün Etiketleri" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-tag-cloud.php:58 -#: woocommerce.php:823 woocommerce.php:825 -msgid "Product Tags" -msgstr "Ürün Etiketleri" - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:24 -msgid "WooCommerce Random Products" -msgstr "WooCommerce- Rasgele Ürünler" - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:27 -msgid "Display a list of random products on your site." -msgstr "Sitenizde rasgele ürünler listeleminizi sağlar." - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:46 -msgid "Random Products" -msgstr "Rasgele Ürünler" - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:144 -#: classes/widgets/class-wc-widget-recent-products.php:176 -msgid "Show hidden product variations" -msgstr "" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-products.php:31 -msgid "Display a list of your most recent products on your site." -msgstr "En Yeni Ürünler listesi yayınlar." - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-products.php:33 -msgid "WooCommerce Recent Products" -msgstr "WooCommerce- Yeni Ürünler" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-products.php:70 -msgid "New Products" -msgstr "Yeni Ürünler" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:31 -msgid "Display a list of your most recent reviews on your site." -msgstr "Sitenizdeki en son değerlendirme listesini görüntüleyin." - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:45 -#: classes/widgets/class-wc-widget-recent-reviews.php:33 -msgid "WooCommerce Recent Reviews" -msgstr "WooCommerce- Son Yorumlar" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:71 -msgid "Recent Reviews" -msgstr "Son Yorumlar" - -# @ woocommerce -#: templates/single-product/review.php:26 -#, fuzzy, php-format -msgid "Rated %d out of 5" -msgstr "5 üzerinden %s değerlendirilmiş" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:97 -#, php-format -msgctxt "by comment author" -msgid "by %1$s" -msgstr "%1$s tarafından" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recently-viewed.php:31 -msgid "Display a list of recently viewed products." -msgstr "En Son Görüntülenen Ürünler listesi yayınlar." - -# @ woocommerce -#: classes/widgets/class-wc-widget-recently-viewed.php:33 -msgid "WooCommerce Recently Viewed Products" -msgstr "WooCommerce- Son İncelenen Ürünler" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recently-viewed.php:76 -msgid "Recently viewed" -msgstr "Son İncelenenler" - -# @ woocommerce -#: classes/widgets/class-wc-widget-top-rated-products.php:33 -msgid "Display a list of top rated products on your site." -msgstr "Sitenizde en çok oy alan ürünlerin bir listesini gösterir." - -# @ woocommerce -#: classes/widgets/class-wc-widget-top-rated-products.php:35 -msgid "WooCommerce Top Rated Products" -msgstr "WooCommerce- En Beğenilen Ürünler" - -# @ woocommerce -#: classes/widgets/class-wc-widget-top-rated-products.php:72 -msgid "Top Rated Products" -msgstr "En Beğenilen Ürünler" - -# @ woocommerce -#: i18n/states/AU.php:13 -msgid "Australian Capital Territory" -msgstr "Avustralya Başkent Bölgesi" - -# @ woocommerce -#: i18n/states/AU.php:14 -msgid "New South Wales" -msgstr "Yeni Güney Galler" - -# @ woocommerce -#: i18n/states/AU.php:15 -msgid "Northern Territory" -msgstr "Kuzey Bölgesi" - -# @ woocommerce -#: i18n/states/AU.php:16 -msgid "Queensland" -msgstr "Queensland" - -# @ woocommerce -#: i18n/states/AU.php:17 -msgid "South Australia" -msgstr "Güney Avustralya" - -# @ woocommerce -#: i18n/states/AU.php:18 -msgid "Tasmania" -msgstr "Tazmanya" - -# @ woocommerce -#: i18n/states/AU.php:19 -msgid "Victoria" -msgstr "Viktorya" - -# @ woocommerce -#: i18n/states/AU.php:20 -msgid "Western Australia" -msgstr "Batı Avustralya" - -# @ woocommerce -#: i18n/states/BR.php:13 -msgid "Acre" -msgstr "Acre" - -# @ woocommerce -#: i18n/states/BR.php:14 -msgid "Alagoas" -msgstr "Alagoas" - -# @ woocommerce -#: i18n/states/BR.php:15 -msgid "Amapá" -msgstr "Amapá" - -# @ woocommerce -#: i18n/states/BR.php:16 -msgid "Amazonas" -msgstr "Amazonas" - -# @ woocommerce -#: i18n/states/BR.php:17 -msgid "Bahia" -msgstr "Bahia" - -# @ woocommerce -#: i18n/states/BR.php:18 -msgid "Ceará" -msgstr "Ceará" - -# @ woocommerce -#: i18n/states/BR.php:19 -msgid "Distrito Federal" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:20 -msgid "Espírito Santo" -msgstr "Espirito Santo" - -# @ woocommerce -#: i18n/states/BR.php:21 -msgid "Goiás" -msgstr "Goiás" - -# @ woocommerce -#: i18n/states/BR.php:22 -msgid "Maranhão" -msgstr "Maranhão" - -# @ woocommerce -#: i18n/states/BR.php:23 -msgid "Mato Grosso" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:24 -msgid "Mato Grosso do Sul" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:25 -msgid "Minas Gerais" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:26 -msgid "Pará" -msgstr "Pará" - -# @ woocommerce -#: i18n/states/BR.php:27 -msgid "Paraíba" -msgstr "Paraiba" - -# @ woocommerce -#: i18n/states/BR.php:28 -msgid "Paraná" -msgstr "Paraná" - -# @ woocommerce -#: i18n/states/BR.php:29 -msgid "Pernambuco" -msgstr "Pernambuco" - -# @ woocommerce -#: i18n/states/BR.php:30 -msgid "Piauí" -msgstr "Piauí" - -# @ woocommerce -#: i18n/states/BR.php:31 -msgid "Rio de Janeiro" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:32 -msgid "Rio Grande do Norte" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:33 -msgid "Rio Grande do Sul" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:34 -msgid "Rondônia" -msgstr "Rondônia" - -# @ woocommerce -#: i18n/states/BR.php:35 -msgid "Roraima" -msgstr "Roraima" - -# @ woocommerce -#: i18n/states/BR.php:36 -msgid "Santa Catarina" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:37 -msgid "São Paulo" -msgstr "" - -# @ woocommerce -#: i18n/states/BR.php:38 -msgid "Sergipe" -msgstr "Sergipe" - -# @ woocommerce -#: i18n/states/BR.php:39 -msgid "Tocantins" -msgstr "Tocantins" - -# @ woocommerce -#: i18n/states/CA.php:13 -msgid "Alberta" -msgstr "Alberta" - -# @ woocommerce -#: i18n/states/CA.php:14 -msgid "British Columbia" -msgstr "British Columbia" - -# @ woocommerce -#: i18n/states/CA.php:15 -msgid "Manitoba" -msgstr "Manitoba" - -# @ woocommerce -#: i18n/states/CA.php:16 -msgid "New Brunswick" -msgstr "New Brunswick" - -# @ woocommerce -#: i18n/states/CA.php:17 -msgid "Newfoundland" -msgstr "Newfoundland" - -# @ woocommerce -#: i18n/states/CA.php:18 -msgid "Northwest Territories" -msgstr "Northwest Territories" - -# @ woocommerce -#: i18n/states/CA.php:19 -msgid "Nova Scotia" -msgstr "Nova Scotia" - -# @ woocommerce -#: i18n/states/CA.php:20 -msgid "Nunavut" -msgstr "Nunavut" - -# @ woocommerce -#: i18n/states/CA.php:21 -msgid "Ontario" -msgstr "Ontario" - -# @ woocommerce -#: i18n/states/CA.php:22 -msgid "Prince Edward Island" -msgstr "Prince Edward Island" - -# @ woocommerce -#: i18n/states/CA.php:23 -msgid "Quebec" -msgstr "Quebec" - -# @ woocommerce -#: i18n/states/CA.php:24 -msgid "Saskatchewan" -msgstr "Saskatchewan" - -# @ woocommerce -#: i18n/states/CA.php:25 -msgid "Yukon Territory" -msgstr "Yukon Territory" - -# @ woocommerce -#: i18n/states/CN.php:13 -msgid "Yunnan / 云南" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:14 -msgid "Beijing / 北京" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:15 -msgid "Tianjin / 天津" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:16 -msgid "Hebei / 河北" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:17 -msgid "Shanxi / 山西" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:18 -msgid "Inner Mongolia / 內蒙古" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:19 -msgid "Liaoning / 辽宁" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:20 -msgid "Jilin / 吉林" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:21 -msgid "Heilongjiang / 黑龙江" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:22 -msgid "Shanghai / 上海" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:23 -msgid "Jiangsu / 江苏" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:24 -msgid "Zhejiang / 浙江" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:25 -msgid "Anhui / 安徽" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:26 -msgid "Fujian / 福建" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:27 -msgid "Jiangxi / 江西" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:28 -msgid "Shandong / 山东" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:29 -msgid "Henan / 河南" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:30 -msgid "Hubei / 湖北" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:31 -msgid "Hunan / 湖南" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:32 -msgid "Guangdong / 广东" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:33 -msgid "Guangxi Zhuang / 广西壮族" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:34 -msgid "Hainan / 海南" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:35 -msgid "Chongqing / 重庆" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:36 -msgid "Sichuan / 四川" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:37 -msgid "Guizhou / 贵州" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:38 -msgid "Shaanxi / 陕西" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:39 -msgid "Gansu / 甘肃" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:40 -msgid "Qinghai / 青海" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:41 -msgid "Ningxia Hui / 宁夏" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:42 -msgid "Macau / 澳门" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:43 -msgid "Tibet / 西藏" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:44 -msgid "Xinjiang / 新疆" -msgstr "" - -# @ woocommerce -#: i18n/states/HK.php:13 -msgid "Hong Kong Island" -msgstr "Hong Kong Island" - -# @ woocommerce -#: i18n/states/HK.php:14 -msgid "Kowloon" -msgstr "Kowloon" - -# @ woocommerce -#: i18n/states/HK.php:15 -msgid "New Territories" -msgstr "Yeni Bölgeler" - -# @ woocommerce -#: i18n/states/HZ.php:13 -msgid "Auckland" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:14 -msgid "Bay of Plenty" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:15 -msgid "Canterbury" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:16 -msgid "Hawke’s Bay" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:17 -msgid "Manawatu-Wanganui" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:18 -msgid "Marlborough" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:19 -msgid "Nelson" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:20 -msgid "Northland" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:21 -msgid "Otago" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:22 -msgid "Southland" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:23 -msgid "Taranaki" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:24 -msgid "Tasman" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:25 -msgid "Waikato" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:26 -msgid "Wellington" -msgstr "" - -# @ woocommerce -#: i18n/states/HZ.php:27 -msgid "West Coast" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:13 -msgid "Andra Pradesh" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:14 -msgid "Arunachal Pradesh" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:15 -msgid "Assam" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:16 -msgid "Bihar" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:17 -msgid "Chhattisgarh" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:18 -#, fuzzy -msgid "Goa" -msgstr "Gürcistan" - -# @ woocommerce -#: i18n/states/IN.php:19 -msgid "Gujarat" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:20 -#, fuzzy -msgid "Haryana" -msgstr "Guyana" - -# @ woocommerce -#: i18n/states/IN.php:21 -msgid "Himachal Pradesh" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:22 -msgid "Jammu and Kashmir" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:23 -msgid "Jharkhand" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:24 -msgid "Karnataka" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:25 -#, fuzzy -msgid "Kerala" -msgstr "Genel" - -# @ woocommerce -#: i18n/states/IN.php:26 -msgid "Madhya Pradesh" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:27 -msgid "Maharashtra" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:28 -msgid "Manipur" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:29 -#, fuzzy -msgid "Meghalaya" -msgstr "Malezya" - -# @ woocommerce -#: i18n/states/IN.php:30 -msgid "Mizoram" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:31 -#, fuzzy -msgid "Nagaland" -msgstr "Yeni Zelanda" - -# @ woocommerce -#: i18n/states/IN.php:32 -msgid "Orissa" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:33 -msgid "Punjab" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:34 -msgid "Rajasthan" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:35 -msgid "Sikkim" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:36 -msgid "Tamil Nadu" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:37 -msgid "Tripura" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:38 -msgid "Uttaranchal" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:39 -msgid "Uttar Pradesh" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:40 -msgid "West Bengal" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:41 -#, fuzzy -msgid "Andaman and Nicobar Islands" -msgstr "Turks ve Caicos Adaları" - -# @ woocommerce -#: i18n/states/IN.php:42 -#, fuzzy -msgid "Chandigarh" -msgstr "Değiştir" - -# @ woocommerce -#: i18n/states/IN.php:43 -msgid "Dadar and Nagar Haveli" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:44 -msgid "Daman and Diu" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:45 -msgid "Delhi" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:46 -msgid "Lakshadeep" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:47 -msgid "Pondicherry (Puducherry)" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:13 -msgid "Johor" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:14 -msgid "Kedah" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:15 -msgid "Kelantan" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:16 -msgid "Melaka" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:17 -msgid "Negeri Sembilan" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:18 -#, fuzzy -msgid "Pahang" -msgstr "Değiştir" - -# @ woocommerce -#: i18n/states/MY.php:19 -msgid "Perak" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:20 -msgid "Perlis" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:21 -msgid "Pulau Pinang" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:22 -msgid "Sabah" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:23 -msgid "Sarawak" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:24 -msgid "Selangor" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:25 -msgid "Terengganu" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:26 -msgid "W.P. Kuala Lumpur" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:27 -msgid "W.P. Labuan" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:28 -msgid "W.P. Putrajaya" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:13 -msgid "Amnat Charoen (อำนาจเจริญ)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:14 -msgid "Ang Thong (อ่างทอง)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:15 -msgid "Ayutthaya (พระนครศรีอยุธยา)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:16 -msgid "Bangkok (กรุงเทพมหานคร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:17 -msgid "Bueng Kan (บึงกาฬ)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:18 -msgid "Buri Ram (บุรีรัมย์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:19 -msgid "Chachoengsao (ฉะเชิงเทรา)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:20 -msgid "Chai Nat (ชัยนาท)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:21 -msgid "Chaiyaphum (ชัยภูมิ)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:22 -msgid "Chanthaburi (จันทบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:23 -msgid "Chiang Mai (เชียงใหม่)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:24 -msgid "Chiang Rai (เชียงราย)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:25 -msgid "Chonburi (ชลบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:26 -msgid "Chumphon (ชุมพร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:27 -msgid "Kalasin (กาฬสินธุ์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:28 -msgid "Kamphaeng Phet (กำแพงเพชร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:29 -msgid "Kanchanaburi (กาญจนบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:30 -msgid "Khon Kaen (ขอนแก่น)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:31 -msgid "Krabi (กระบี่)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:32 -msgid "Lampang (ลำปาง)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:33 -msgid "Lamphun (ลำพูน)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:34 -msgid "Loei (เลย)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:35 -msgid "Lopburi (ลพบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:36 -msgid "Mae Hong Son (แม่ฮ่องสอน)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:37 -msgid "Maha Sarakham (มหาสารคาม)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:38 -msgid "Mukdahan (มุกดาหาร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:39 -msgid "Nakhon Nayok (นครนายก)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:40 -msgid "Nakhon Pathom (นครปฐม)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:41 -msgid "Nakhon Phanom (นครพนม)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:42 -msgid "Nakhon Ratchasima (นครราชสีมา)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:43 -msgid "Nakhon Sawan (นครสวรรค์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:44 -msgid "Nakhon Si Thammarat (นครศรีธรรมราช)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:45 -msgid "Nan (น่าน)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:46 -msgid "Narathiwat (นราธิวาส)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:47 -msgid "Nong Bua Lam Phu (หนองบัวลำภู)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:48 -msgid "Nong Khai (หนองคาย)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:49 -msgid "Nonthaburi (นนทบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:50 -msgid "Pathum Thani (ปทุมธานี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:51 -msgid "Pattani (ปัตตานี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:52 -msgid "Phang Nga (พังงา)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:53 -msgid "Phatthalung (พัทลุง)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:54 -msgid "Phayao (พะเยา)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:55 -msgid "Phetchabun (เพชรบูรณ์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:56 -msgid "Phetchaburi (เพชรบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:57 -msgid "Phichit (พิจิตร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:58 -msgid "Phitsanulok (พิษณุโลก)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:59 -msgid "Phrae (แพร่)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:60 -msgid "Phuket (ภูเก็ต)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:61 -msgid "Prachin Buri (ปราจีนบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:62 -msgid "Prachuap Khiri Khan (ประจวบคีรีขันธ์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:63 -msgid "Ranong (ระนอง)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:64 -msgid "Ratchaburi (ราชบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:65 -msgid "Rayong (ระยอง)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:66 -msgid "Roi Et (ร้อยเอ็ด)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:67 -msgid "Sa Kaeo (สระแก้ว)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:68 -msgid "Sakon Nakhon (สกลนคร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:69 -msgid "Samut Prakan (สมุทรปราการ)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:70 -msgid "Samut Sakhon (สมุทรสาคร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:71 -msgid "Samut Songkhram (สมุทรสงคราม)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:72 -msgid "Saraburi (สระบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:73 -msgid "Satun (สตูล)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:74 -msgid "Sing Buri (สิงห์บุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:75 -msgid "Sisaket (ศรีสะเกษ)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:76 -msgid "Songkhla (สงขลา)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:77 -msgid "Sukhothai (สุโขทัย)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:78 -msgid "Suphan Buri (สุพรรณบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:79 -msgid "Surat Thani (สุราษฎร์ธานี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:80 -msgid "Surin (สุรินทร์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:81 -msgid "Tak (ตาก)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:82 -msgid "Trang (ตรัง)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:83 -msgid "Trat (ตราด)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:84 -msgid "Ubon Ratchathani (อุบลราชธานี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:85 -msgid "Udon Thani (อุดรธานี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:86 -msgid "Uthai Thani (อุทัยธานี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:87 -msgid "Uttaradit (อุตรดิตถ์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:88 -msgid "Yala (ยะลา)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:89 -msgid "Yasothon (ยโสธร)" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:13 -msgid "Alabama" -msgstr "Alabama" - -# @ woocommerce -#: i18n/states/US.php:14 -msgid "Alaska" -msgstr "Alaska" - -# @ woocommerce -#: i18n/states/US.php:15 -msgid "Arizona" -msgstr "Arizona" - -# @ woocommerce -#: i18n/states/US.php:16 -msgid "Arkansas" -msgstr "Arkansas" - -# @ woocommerce -#: i18n/states/US.php:17 -msgid "California" -msgstr "California" - -# @ woocommerce -#: i18n/states/US.php:18 -msgid "Colorado" -msgstr "Colorado" - -# @ woocommerce -#: i18n/states/US.php:19 -msgid "Connecticut" -msgstr "Connecticut" - -# @ woocommerce -#: i18n/states/US.php:20 -msgid "Delaware" -msgstr "Delaware" - -# @ woocommerce -#: i18n/states/US.php:21 -msgid "District Of Columbia" -msgstr "District Of Columbia" - -# @ woocommerce -#: i18n/states/US.php:22 -msgid "Florida" -msgstr "Florida" - -# @ woocommerce -#: i18n/states/US.php:24 -msgid "Hawaii" -msgstr "Hawaii" - -# @ woocommerce -#: i18n/states/US.php:25 -msgid "Idaho" -msgstr "Idaho" - -# @ woocommerce -#: i18n/states/US.php:26 -msgid "Illinois" -msgstr "Illinois" - -# @ woocommerce -#: i18n/states/US.php:27 -msgid "Indiana" -msgstr "Indiana" - -# @ woocommerce -#: i18n/states/US.php:28 -msgid "Iowa" -msgstr "Iowa" - -# @ woocommerce -#: i18n/states/US.php:29 -msgid "Kansas" -msgstr "Kansas" - -# @ woocommerce -#: i18n/states/US.php:30 -msgid "Kentucky" -msgstr "Kentucky" - -# @ woocommerce -#: i18n/states/US.php:31 -msgid "Louisiana" -msgstr "Louisiana" - -# @ woocommerce -#: i18n/states/US.php:32 -msgid "Maine" -msgstr "Maine" - -# @ woocommerce -#: i18n/states/US.php:33 -msgid "Maryland" -msgstr "Maryland" - -# @ woocommerce -#: i18n/states/US.php:34 -msgid "Massachusetts" -msgstr "Massachusetts" - -# @ woocommerce -#: i18n/states/US.php:35 -msgid "Michigan" -msgstr "Michigan" - -# @ woocommerce -#: i18n/states/US.php:36 -msgid "Minnesota" -msgstr "Minnesota" - -# @ woocommerce -#: i18n/states/US.php:37 -msgid "Mississippi" -msgstr "Mississippi" - -# @ woocommerce -#: i18n/states/US.php:38 -msgid "Missouri" -msgstr "Missouri" - -# @ woocommerce -#: i18n/states/US.php:39 -msgid "Montana" -msgstr "Montana" - -# @ woocommerce -#: i18n/states/US.php:40 -msgid "Nebraska" -msgstr "Nebraska" - -# @ woocommerce -#: i18n/states/US.php:41 -msgid "Nevada" -msgstr "Nevada" - -# @ woocommerce -#: i18n/states/US.php:42 -msgid "New Hampshire" -msgstr "New Hampshire" - -# @ woocommerce -#: i18n/states/US.php:43 -msgid "New Jersey" -msgstr "New Jersey" - -# @ woocommerce -#: i18n/states/US.php:44 -msgid "New Mexico" -msgstr "New Mexico" - -# @ woocommerce -#: i18n/states/US.php:45 -msgid "New York" -msgstr "New York" - -# @ woocommerce -#: i18n/states/US.php:46 -msgid "North Carolina" -msgstr "Kuzey Carolina" - -# @ woocommerce -#: i18n/states/US.php:47 -msgid "North Dakota" -msgstr "Kuzey Dakota" - -# @ woocommerce -#: i18n/states/US.php:48 -msgid "Ohio" -msgstr "Ohio" - -# @ woocommerce -#: i18n/states/US.php:49 -msgid "Oklahoma" -msgstr "Oklahoma" - -# @ woocommerce -#: i18n/states/US.php:50 -msgid "Oregon" -msgstr "Oregon" - -# @ woocommerce -#: i18n/states/US.php:51 -msgid "Pennsylvania" -msgstr "Pennsylvania" - -# @ woocommerce -#: i18n/states/US.php:52 -msgid "Rhode Island" -msgstr "Rhode Island" - -# @ woocommerce -#: i18n/states/US.php:53 -msgid "South Carolina" -msgstr "Güney Carolina" - -# @ woocommerce -#: i18n/states/US.php:54 -msgid "South Dakota" -msgstr "Güney Dakota" - -# @ woocommerce -#: i18n/states/US.php:55 -msgid "Tennessee" -msgstr "Tennessee" - -# @ woocommerce -#: i18n/states/US.php:56 -msgid "Texas" -msgstr "Texas" - -# @ woocommerce -#: i18n/states/US.php:57 -msgid "Utah" -msgstr "Utah" - -# @ woocommerce -#: i18n/states/US.php:58 -msgid "Vermont" -msgstr "Vermont" - -# @ woocommerce -#: i18n/states/US.php:59 -msgid "Virginia" -msgstr "Virginia" - -# @ woocommerce -#: i18n/states/US.php:60 -msgid "Washington" -msgstr "Washington" - -# @ woocommerce -#: i18n/states/US.php:61 -msgid "West Virginia" -msgstr "Batı Virginia" - -# @ woocommerce -#: i18n/states/US.php:62 -msgid "Wisconsin" -msgstr "Wisconsin" - -# @ woocommerce -#: i18n/states/US.php:63 -msgid "Wyoming" -msgstr "Wyoming" - -# @ woocommerce -#: i18n/states/US.php:64 -msgid "Armed Forces (AA)" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:65 -msgid "Armed Forces (AE)" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:66 -msgid "Armed Forces (AP)" -msgstr "" - -# @ woocommerce -#: i18n/states/ZA.php:13 -msgid "Eastern Cape" -msgstr "" - -# @ woocommerce -#: i18n/states/ZA.php:14 -#, fuzzy -msgid "Free State" -msgstr "Eyalet" - -# @ woocommerce -#: i18n/states/ZA.php:15 -msgid "Gauteng" -msgstr "" - -# @ woocommerce -#: i18n/states/ZA.php:16 -msgid "KwaZulu-Natal" -msgstr "" - -# @ woocommerce -#: i18n/states/ZA.php:17 -msgid "Limpopo" -msgstr "" - -# @ woocommerce -#: i18n/states/ZA.php:18 -msgid "Mpumalanga" -msgstr "" - -# @ woocommerce -#: i18n/states/ZA.php:19 -#, fuzzy -msgid "Northern Cape" -msgstr "Kuzey Bölgesi" - -# @ woocommerce -#: i18n/states/ZA.php:20 -#, fuzzy -msgid "North West" -msgstr "Kuzey Korea" - -# @ woocommerce -#: i18n/states/ZA.php:21 -#, fuzzy -msgid "Western Cape" -msgstr "Batı Sahra" - -# @ woocommerce -#: i18n/strings.php:16 -msgid "pending" -msgstr "bekliyor" - -# @ woocommerce -#: i18n/strings.php:17 -msgid "failed" -msgstr "başarısız" - -# @ woocommerce -#: i18n/strings.php:18 -msgid "on-hold" -msgstr "beklemede" - -# @ woocommerce -#: i18n/strings.php:19 -msgid "processing" -msgstr "işleniyor" - -# @ woocommerce -#: i18n/strings.php:20 -msgid "completed" -msgstr "tamamlandı" - -# @ woocommerce -#: i18n/strings.php:21 -msgid "refunded" -msgstr "ödeme iade edildi" - -# @ woocommerce -#: i18n/strings.php:22 -msgid "cancelled" -msgstr "iptal" - -# @ woocommerce -#: templates/loop/no-products-found.php:14 templates/loop-shop.php:40 -msgid "No products found which match your selection." -msgstr "Arama kriterlerinize uygun ürün bulunamadı." - -# @ woocommerce -#: admin/post-types/product.php:96 admin/post-types/product.php:568 -#: admin/post-types/product.php:787 admin/woocommerce-admin-functions.php:196 -#: templates/cart/cart.php:29 templates/emails/admin-new-order.php:24 -#: templates/emails/customer-completed-order.php:25 -#: templates/emails/customer-invoice.php:29 -#: templates/emails/customer-note.php:29 -#: templates/emails/customer-processing-order.php:25 -msgid "Price" -msgstr "Fiyat" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:195 templates/cart/cart.php:30 -#: templates/emails/admin-new-order.php:23 -#: templates/emails/customer-completed-order.php:24 -#: templates/emails/customer-invoice.php:28 -#: templates/emails/customer-note.php:28 -#: templates/emails/customer-processing-order.php:24 -msgid "Quantity" -msgstr "Miktar" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:43 -#: admin/post-types/writepanels/order-item-html.php:110 -#: admin/woocommerce-admin-reports.php:1546 -#: admin/woocommerce-admin-reports.php:1599 -#: admin/woocommerce-admin-reports.php:2370 -#: admin/woocommerce-admin-reports.php:2539 -#: admin/woocommerce-admin-reports.php:2617 templates/cart/cart.php:31 -#: templates/checkout/review-order.php:22 templates/myaccount/my-orders.php:35 -#: templates/order/order-details.php:21 -msgid "Total" -msgstr "Toplam" - -# @ woocommerce -#: templates/cart/cart.php:47 -msgid "Remove this item" -msgstr "Bu ürünü çıkar" - -# @ woocommerce -#: templates/cart/cart.php:100 -#: templates/single-product/add-to-cart/quantity.php:13 -#, fuzzy -msgctxt "Product quantity input tooltip" -msgid "Qty" -msgstr "Miktar" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1531 templates/cart/cart.php:127 -#: woocommerce.php:1062 -msgid "Coupon" -msgstr "Kupon" - -# @ woocommerce -#: templates/cart/cart.php:127 templates/checkout/form-coupon.php:29 -msgid "Apply Coupon" -msgstr "Kuponu Uygula" - -# @ woocommerce -#: templates/cart/cart.php:134 -msgid "Update Cart" -msgstr "Sepeti Güncelle" - -# @ woocommerce -#: templates/cart/cart.php:134 -msgid "Proceed to Checkout →" -msgstr "Siparişi Ver →" - -# @ woocommerce -#: templates/cart/cross-sells.php:40 -msgid "You may be interested in…" -msgstr "İlginizi çekebilir…" - -# @ woocommerce -#: templates/cart/cart-empty.php:14 -msgid "Your cart is currently empty." -msgstr "Sepetiniz boş." - -# @ woocommerce -#: templates/cart/cart-empty.php:18 -msgid "← Return To Shop" -msgstr "← Alışverişe geri dön" - -# @ woocommerce -#: templates/cart/mini-cart.php:55 -msgid "No products in the cart." -msgstr "Sepetiniz boş." - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:112 -#: templates/cart/mini-cart.php:63 templates/cart/totals.php:92 -#: templates/checkout/review-order.php:93 -msgid "Subtotal" -msgstr "Ara Toplam" - -# @ woocommerce -#: templates/cart/mini-cart.php:69 -msgid "Checkout →" -msgstr "Sipariş Ver →" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:20 -msgid "Calculate Shipping" -msgstr "Kargo Hesapla" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:175 -#: admin/post-types/writepanels/writepanel-order_data.php:265 -#: templates/cart/shipping-calculator.php:24 woocommerce-template.php:1327 -msgid "Select a country…" -msgstr "Ülke seçin…" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:50 woocommerce-template.php:1377 -msgid "Select a state…" -msgstr "Devler seçin…" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:42 -#: templates/cart/shipping-calculator.php:50 -#: templates/cart/shipping-calculator.php:61 -#, fuzzy -msgid "State / county" -msgstr "Devlet/Eyalet" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:71 -msgid "Update Totals" -msgstr "Toplamları Güncelle" - -# @ woocommerce -#: templates/cart/shipping-methods.php:32 -msgid "Free" -msgstr "Ücretsiz" - -# @ woocommerce -#: templates/cart/shipping-methods.php:67 -msgid "Please fill in your details to see available shipping methods." -msgstr "" -"Lütfen uygun Kargo Yöntemlerini görmek için ilgili bilgilerinizi girin." - -# @ woocommerce -#: templates/cart/shipping-methods.php:69 -msgid "Sorry, it seems that there are no available shipping methods for your state. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "Üzgünüz, bulunduğunuz konum için her hangi bir Kargo Yöntemi bulunmamaktadır. Yardıma ihtiyaç duyuyor yada alternatif düzenlemeler yapmak istiyorsanız lütfen bizimle irtibata geçiniz." - -# @ woocommerce -#: templates/cart/totals.php:22 -msgid "Cart Totals" -msgstr "Sepet Toplamı" - -# @ woocommerce -#: templates/cart/totals.php:28 templates/checkout/review-order.php:27 -msgid "Cart Subtotal" -msgstr "Sepet Ara-Toplamı" - -# @ woocommerce -#: templates/cart/totals.php:35 templates/checkout/review-order.php:34 -#: woocommerce.php:1655 -msgid "Cart Discount" -msgstr "Sepette İndirim" - -# @ woocommerce -#: templates/cart/totals.php:35 templates/cart/totals.php:120 -msgid "[Remove]" -msgstr "[Kaldır]" - -# @ woocommerce -#: admin/post-types/shop_order.php:46 -#: admin/post-types/writepanels/writepanel-order_data.php:536 -#: admin/post-types/writepanels/writepanel-product_data.php:81 -#: admin/settings/settings-tax-rates.php:52 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-content.php:49 -#: admin/woocommerce-admin-settings.php:185 templates/cart/totals.php:46 -#: templates/checkout/review-order.php:45 -msgid "Shipping" -msgstr "Kargo" - -# @ woocommerce -#: templates/cart/totals.php:120 templates/checkout/review-order.php:124 -msgid "Order Discount" -msgstr "Sipariş İndirimi" - -# @ woocommerce -#: admin/post-types/shop_order.php:47 templates/cart/totals.php:129 -#: templates/checkout/review-order.php:133 -msgid "Order Total" -msgstr "Sipariş Toplamı" - -# @ woocommerce -#: templates/cart/totals.php:161 -#, php-format -msgid " (taxes estimated for %s)" -msgstr " (%s için tahmini Vergi)" - -# @ woocommerce -#: templates/cart/totals.php:163 -#, php-format -msgid "Note: Shipping and taxes are estimated%s and will be updated during checkout based on your billing and shipping information." -msgstr "NOT: Kargo ve vergiler yaklaşık olarak %s ve çıkış işlemleri sırasında Fatura ve Kargo Adresinize göre yeniden hesaplanarak güncellenecektir." - -# @ woocommerce -#: templates/cart/totals.php:175 -msgid "No shipping methods were found; please recalculate your shipping and enter your state/county and zip/postcode to ensure there are no other available methods for your location." -msgstr "Kargo yöntemi bulunamadı; lütfen konumunuza uygun başka bir yöntem bulunmadığına emin olmak için şehir ve posta kodu bilgilerinizi tekrar girerek kargoyu hesaplayınız." - -# @ woocommerce -#: templates/cart/totals.php:183 -#, php-format -msgid "Sorry, it seems that there are no available shipping methods for your location (%s)." -msgstr "Üzgünüz, seçmiş olduğunuz konum için herhangi bir kargo seçeneği bulunmamaktadır. ( %s )" - -# @ woocommerce -#: templates/cart/totals.php:185 -msgid "If you require assistance or wish to make alternate arrangements please contact us." -msgstr "Yardıma ihtiyacınız veya alternatif düzenleme talebiniz varsa, lütfen bizimle irtibata geçin." - -# @ woocommerce -#: templates/checkout/cart-errors.php:16 -msgid "There are some issues with the items in your cart (shown above). Please go back to the cart page and resolve these issues before checking out." -msgstr "Sepetinizdeki ürünlere dair (yukarıda belirtilen) hatalar söz konusu. Lütfen Sepet Sayfasına geri dönerek önce o hataları gideriniz." - -# @ woocommerce -#: templates/checkout/cart-errors.php:20 -msgid "← Return To Cart" -msgstr "← Sepete Geri Dön" - -# @ woocommerce -#: templates/checkout/form-billing.php:17 -msgid "Billing & Shipping" -msgstr "Fatura & Kargo" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:26 templates/checkout/form-billing.php:21 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:19 templates/myaccount/my-address.php:25 -#: templates/order/order-details.php:106 -msgid "Billing Address" -msgstr "Fatura Adresi" - -# @ woocommerce -#: templates/checkout/form-billing.php:42 -msgid "Create an account?" -msgstr "Hesap oluştur?" - -# @ woocommerce -#: templates/checkout/form-billing.php:51 -msgid "Create an account by entering the information below. If you are a returning customer please login at the top of the page." -msgstr "Aşağıdaki bilgileri doldurarak yeni bir hesap oluşturabilirsiniz. Eğer zaten üye iseniz sayfanın üst kısmından Üye Girişi yapabilirsiniz." - -# @ woocommerce -#: templates/checkout/form-checkout.php:20 -msgid "You must be logged in to checkout." -msgstr "Ödeme kısmına geçmek için Oturum açmanız gerekir." - -# @ woocommerce -#: templates/checkout/form-checkout.php:51 -msgid "Your order" -msgstr "Siparişiniz" - -# @ woocommerce -#: templates/checkout/form-coupon.php:17 -msgid "Have a coupon?" -msgstr "Kuponunuz var mı?" - -# @ woocommerce -#: templates/checkout/form-coupon.php:20 -msgid "Click here to enter your code" -msgstr "Kodunuzu girmek için buraya tıklayın" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:100 -#: templates/checkout/form-coupon.php:25 -msgid "Coupon code" -msgstr "Kupon Kodu" - -# @ woocommerce -#: templates/checkout/form-login.php:17 -msgid "Click here to login" -msgstr "Giriş yapmak için tıklayın" - -# @ woocommerce -#: templates/checkout/form-login.php:22 -msgid "If you have shopped with us before, please enter your details in the boxes below. If you are a new customer please proceed to the Billing & Shipping section." -msgstr "Eğer bizimle daha önce alışveriş yaptı iseniz, lütfen aşağıdaki kutucuklara ilgili detayları doldurunuz. Eğer ilk kez işlem yapıyorsanız lütfen Fatura ve Kargo Bölümü'ne devam ediniz." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:347 -#: templates/checkout/form-pay.php:20 -msgid "Qty" -msgstr "Miktar" - -# @ woocommerce -#: templates/checkout/form-pay.php:21 -msgid "Totals" -msgstr "Toplamlar" - -# @ woocommerce -#: templates/checkout/form-pay.php:78 -msgid "Sorry, it seems that there are no available payment methods for your location. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "Üzgünüz, bulunduğunuz konum için her hangi bir Ödeme Yöntemi bulunmamaktadır. Yardıma ihtiyaç duyuyor veya alternatif düzenlemeler yapmak istiyorsanız lütfen bizimle irtibata geçin." - -# @ woocommerce -#: templates/checkout/form-pay.php:87 -msgid "Pay for order" -msgstr "Sipariş için Ödeme" - -# @ woocommerce -#: templates/checkout/form-shipping.php:32 -msgid "Ship to billing address?" -msgstr "Fatura Adresine gönderilsin mi?" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:27 -#: templates/checkout/form-shipping.php:35 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:20 templates/order/order-details.php:121 -msgid "Shipping Address" -msgstr "Kargo Adresi" - -# @ woocommerce -#: templates/checkout/form-shipping.php:59 -#: templates/single-product/tabs/additional-information.php:14 -#: woocommerce-template.php:756 -msgid "Additional Information" -msgstr "Ek Bilgi" - -# @ woocommerce -#: templates/checkout/review-order.php:217 -msgid "Please fill in your details above to see available payment methods." -msgstr "" -"Mevcut ödeme yöntemlerini görmek için yukarıdaki bilgilerinizi doldurunuz." - -# @ woocommerce -#: templates/checkout/review-order.php:219 -msgid "Sorry, it seems that there are no available payment methods for your state. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "Üzgünüz, bulunduğunuz konum için her hangi bir Ödeme Yöntemi bulunmamaktadır. Yardıma ihtiyaç duyuyor veya alternatif düzenlemeler yapmak istiyorsanız lütfen bizimle irtibata geçin." - -# @ woocommerce -#: templates/checkout/review-order.php:228 -msgid "Since your browser does not support JavaScript, or it is disabled, please ensure you click the Update Totals button before placing your order. You may be charged more than the amount stated above if you fail to do so." -msgstr "Web tarayıcınız JavaScripti desteklemiyor yada tarayıcınızın bu özelliği kapalı. Lütfen, sipariş vermeden önce Toplamları Güncelle butonuna tıklayın. Bunu yapmazsanız yukarıda görülen sipariş toplamından farklı bir ücret ödemeniz söz konusu olabilir." - -# @ woocommerce -#: templates/checkout/review-order.php:228 -msgid "Update totals" -msgstr "Toplamları Güncelle" - -# @ woocommerce -#: templates/checkout/review-order.php:234 -msgid "Place order" -msgstr "Siparişi Onayla" - -# @ woocommerce -#: templates/checkout/review-order.php:238 -msgid "I have read and accept the" -msgstr "Okudum ve Onayladım:" - -# @ woocommerce -#: templates/checkout/review-order.php:238 -msgid "terms & conditions" -msgstr "Şartları & koşulları kabul ediyorum." - -# @ woocommerce -#: templates/checkout/thankyou.php:18 -msgid "Unfortunately your order cannot be processed as the originating bank/merchant has declined your transaction." -msgstr "Ne yazık ki; transfer işlemi ilgili banka tarafından onaylanmadığı için siparişiniz işleme alınamıyor." - -# @ woocommerce -#: templates/checkout/thankyou.php:22 -msgid "Please attempt your purchase again or go to your account page." -msgstr "Lütfen satın alma işleminizi yineleyiniz veya hesap sayfanıza gidiniz." - -# @ woocommerce -#: templates/checkout/thankyou.php:24 -msgid "Please attempt your purchase again." -msgstr "Lütfen satın alma işleminizi tekrarlayınız." - -# @ woocommerce -#: templates/checkout/thankyou.php:36 templates/checkout/thankyou.php:67 -msgid "Thank you. Your order has been received." -msgstr "Teşekkür ederiz. Siparişiniz alınmıştır." - -# @ woocommerce -#: templates/emails/admin-new-order.php:13 -#: templates/emails/plain/admin-new-order.php:13 -#, php-format -msgid "You have received an order from %s. Their order is as follows:" -msgstr "%s-den bir Sipariş aldınız. Sipariş Detayları şöyledir:" - -# @ woocommerce -#: templates/emails/admin-new-order.php:17 -#, php-format -msgid "Order: %s" -msgstr "Sipariş: %s" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:214 -#: templates/emails/admin-new-order.php:50 -#: templates/emails/customer-completed-order.php:51 -#: templates/emails/customer-note.php:55 -#: templates/emails/customer-processing-order.php:51 -#: templates/emails/plain/admin-new-order.php:38 -#: templates/order/order-details.php:88 -msgid "Customer details" -msgstr "Müşteri Bilgileri" - -# @ woocommerce -#: admin/post-types/shop_order.php:101 templates/emails/admin-new-order.php:53 -#: templates/emails/customer-completed-order.php:54 -#: templates/emails/customer-note.php:58 -#: templates/emails/customer-processing-order.php:54 -#: templates/emails/plain/admin-new-order.php:41 -#: templates/emails/plain/customer-completed-order.php:41 -#: templates/emails/plain/customer-note.php:49 -#: templates/emails/plain/customer-processing-order.php:41 -#: templates/order/order-details.php:92 -msgid "Email:" -msgstr "E-posta:" - -# @ woocommerce -#: admin/post-types/shop_order.php:104 templates/emails/admin-new-order.php:56 -#: templates/emails/customer-completed-order.php:57 -#: templates/emails/customer-note.php:61 -#: templates/emails/customer-processing-order.php:57 -#: templates/emails/plain/admin-new-order.php:44 -#: templates/emails/plain/customer-completed-order.php:44 -#: templates/emails/plain/customer-note.php:52 -#: templates/emails/plain/customer-processing-order.php:44 -msgid "Tel:" -msgstr "Telefon:" - -# @ woocommerce -#: templates/emails/customer-completed-order.php:14 -#: templates/emails/plain/customer-completed-order.php:13 -#, php-format -msgid "Hi there. Your recent order on %s has been completed. Your order details are shown below for your reference:" -msgstr "Son %s siparişiniz tamamlandı. Sipariş Detayları aşağıda bilginize sunulmuştur:" - -# @ woocommerce -#: templates/emails/customer-invoice.php:16 -#: templates/emails/plain/customer-invoice.php:14 -#, php-format -msgid "An order has been created for you on %s. To pay for this order please use the following link: %s" -msgstr "Yeni bir sipariş oluşturuldu ( %s ). Ödemesini yapmak için bağlantıyı kullanabilirsiniz: %s" - -# @ woocommerce -#: templates/emails/customer-invoice.php:16 -msgid "pay" -msgstr "öde" - -# @ woocommerce -#: templates/emails/customer-new-account.php:14 -#: templates/emails/plain/customer-new-account.php:13 -#, php-format -msgid "Thanks for creating an account on %s. Your username is %s." -msgstr "%s sistemimizde hesap açtığınız için teşekkür ederiz. Kullanıcı adınız: %s" - -# @ woocommerce -#: templates/emails/customer-new-account.php:16 -#: templates/emails/plain/customer-new-account.php:15 -#, php-format -msgid "You can access your account area here: %s." -msgstr "Hesabınıza erişmek için bağlantıyı takip ediniz: %s ." - -# @ woocommerce -#: templates/emails/customer-note.php:14 -#: templates/emails/plain/customer-note.php:13 -msgid "Hello, a note has just been added to your order:" -msgstr "Merhaba, siparişinize bir not eklendi:" - -# @ woocommerce -#: templates/emails/customer-note.php:18 -#: templates/emails/plain/customer-note.php:21 -msgid "For your reference, your order details are shown below." -msgstr "" -"Bilginiz olması açısından, Sipariş detaylarınız aşağıda gösterilmiştir." - -# @ woocommerce -#: templates/emails/customer-processing-order.php:14 -#: templates/emails/plain/customer-processing-order.php:13 -msgid "Your order has been received and is now being processed. Your order details are shown below for your reference:" -msgstr "Siparişiniz tarafımıza ulaşmış ve işleme alınmıştır. Siparişinizin Detayları aşağıda bilginize sunulmuştur:" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:14 -#: templates/emails/plain/customer-reset-password.php:13 -msgid "Someone requested that the password be reset for the following account:" -msgstr "Hesabınız için sistem üzerinden Şifre Sıfırlama talebinde bulunuldu:" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:15 -#: templates/emails/plain/customer-reset-password.php:15 -#, php-format -msgid "Username: %s" -msgstr "Kullanıcı Adı: %s" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:16 -#: templates/emails/plain/customer-reset-password.php:16 -msgid "If this was a mistake, just ignore this email and nothing will happen." -msgstr "" -"Eğer bunun bir hata olduğunu düşünüyorsanız, bu e-postayı önemsemeyin ve hiç " -"bir işlem yapmayın. Herhangi bir değişiklik olmayacaktır." - -# @ woocommerce -#: templates/emails/customer-reset-password.php:17 -#: templates/emails/plain/customer-reset-password.php:17 -msgid "To reset your password, visit the following address:" -msgstr "Şifrenizi sıfırlamak isterseniz, aşağıdaki bağlantıyı takip edin:" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:20 -msgid "Click here to reset your password" -msgstr "Şifrenizi sıfırlamak için BURAYA tıklayın" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:220 -#: templates/emails/email-addresses.php:18 -#: templates/emails/plain/email-addresses.php:12 -msgid "Billing address" -msgstr "Fatura Adresi" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:227 -#: templates/emails/email-addresses.php:28 -#: templates/emails/plain/email-addresses.php:17 -msgid "Shipping address" -msgstr "Kargo Adresi" - -# @ woocommerce -#: templates/emails/email-order-items.php:40 -#, php-format -msgid "Download %d:" -msgstr "İndir %d:" - -# @ woocommerce -#: templates/emails/email-order-items.php:42 -msgid "Download:" -msgstr "İndir:" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:19 -#: templates/emails/plain/customer-completed-order.php:19 -#: templates/emails/plain/customer-invoice.php:20 -#: templates/emails/plain/customer-note.php:27 -#: templates/emails/plain/customer-processing-order.php:19 -#, php-format -msgid "Order number: %s" -msgstr "Sipariş Numarası: %s" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:20 -#: templates/emails/plain/customer-completed-order.php:20 -#: templates/emails/plain/customer-invoice.php:21 -#: templates/emails/plain/customer-note.php:28 -#: templates/emails/plain/customer-processing-order.php:20 -#, php-format -msgid "Order date: %s" -msgstr "Sipariş Tarihi: %s" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:20 -msgid "jS F Y" -msgstr "" - -# @ woocommerce -#: templates/emails/plain/customer-completed-order.php:38 -#: templates/emails/plain/customer-note.php:46 -#: templates/emails/plain/customer-processing-order.php:38 -msgid "Your details" -msgstr "Detaylarınız" - -# @ woocommerce -#: templates/emails/plain/email-order-items.php:28 -#, php-format -msgid "Quantity: %s" -msgstr "Miktar: %s" - -# @ woocommerce -#: templates/emails/plain/email-order-items.php:31 -#, php-format -msgid "Cost: %s" -msgstr "Tutar: %s" - -# @ woocommerce -#: templates/loop/add-to-cart.php:17 templates/loop/add-to-cart.php:41 -#: templates/loop/add-to-cart.php:50 -msgid "Read More" -msgstr "Devamını oku..." - -# @ woocommerce -#: templates/loop/add-to-cart.php:33 -msgid "Select options" -msgstr "Seçenekleri belirle" - -# @ woocommerce -#: templates/loop/add-to-cart.php:37 -msgid "View options" -msgstr "Seçenekleri Görüntüle" - -# @ woocommerce -#: templates/loop/result-count.php:28 -msgid "Showing the single result" -msgstr "Tek bir sonuç gösteriliyor" - -# @ woocommerce -#: templates/loop/result-count.php:30 -#, php-format -msgid "Showing all %d results" -msgstr "Gösterilen sonuç sayısı %d" - -# @ woocommerce -#: templates/loop/result-count.php:32 -#, fuzzy, php-format -msgctxt "%1$d = first, %2$d = last, %3$d = total" -msgid "Showing %1$d–%2$d of %3$d results" -msgstr "Gösterilen: (%s - %s) / Toplam: %s" - -# @ woocommerce -#: templates/loop/sale-flash.php:16 templates/single-product/sale-flash.php:16 -msgid "Sale!" -msgstr "İndirim!" - -# @ woocommerce -#: templates/loop/orderby.php:21 -msgid "Default sorting" -msgstr "Varsayılan Sıralama" - -# @ woocommerce -#: admin/settings/settings-init.php:462 -msgid "Sort by most recent" -msgstr "Tarihe Göre sırala" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:20 -#: templates/myaccount/form-lost-password.php:31 -msgid "New password" -msgstr "Yeni şifre" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:24 -#: templates/myaccount/form-lost-password.php:35 -msgid "Re-enter new password" -msgstr "Yeni şifrenizi tekrar girin" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:29 -#: templates/myaccount/form-lost-password.php:45 -msgid "Save" -msgstr "Kaydet" - -# @ woocommerce -#: templates/myaccount/form-edit-address.php:43 -msgid "Save Address" -msgstr "Kaydet" - -# @ woocommerce -#: templates/myaccount/form-login.php:26 templates/myaccount/form-login.php:40 -#: templates/shop/form-login.php:31 -msgid "Login" -msgstr "Giriş" - -# @ woocommerce -#: templates/myaccount/form-login.php:50 templates/shop/form-login.php:33 -msgid "Lost Password?" -msgstr "Şifrenizi mi unuttunuz?" - -# @ woocommerce -#: templates/myaccount/form-login.php:60 -#: templates/myaccount/form-login.php:101 -msgid "Register" -msgstr "Kayıt Ol" - -# @ woocommerce -#: templates/myaccount/form-login.php:66 -msgid "Username" -msgstr "Kullanıcı Adı" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:182 -#: admin/woocommerce-admin-users.php:187 templates/myaccount/form-login.php:78 -#: templates/single-product-reviews.php:101 -msgid "Email" -msgstr "E-Posta" - -# @ woocommerce -#: templates/myaccount/form-login.php:89 -msgid "Re-enter password" -msgstr "Şifre ( yeniden )" - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:22 -msgid "Lost your password? Please enter your username or email address. You will receive a link to create a new password via email." -msgstr "Şifrenizi mi Unuttunuz? Lütfen Kullanıcı Adı veya E-posta'nızı giriniz. Yeni şifre oluşturmanız için kayıtlı adresinize bir e-posta gönderilecektir." - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:28 -msgid "Enter a new password below." -msgstr "Yeni bir Şifre belirleyin." - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:45 -msgid "Reset Password" -msgstr "Şifre Sıfırla" - -# @ woocommerce -#: templates/myaccount/my-account.php:19 -#, php-format -msgid "Hello, %s. From your account dashboard you can view your recent orders, manage your shipping and billing addresses and change your password." -msgstr "Merhaba, %s. Hesabım sayfanızdan geçmiş siparişlerinizi görebilir, fatura ve kargo adreslerinizi yönetebilirsiniz. Ayrıca şifrenizi de değiştirebilirsiniz." - -# @ woocommerce -#: templates/myaccount/my-address.php:17 -msgid "My Addresses" -msgstr "Adreslerim" - -# @ woocommerce -#: templates/myaccount/my-address.php:23 -msgid "My Address" -msgstr "Adresim" - -# @ woocommerce -#: templates/myaccount/my-address.php:35 -msgid "The following addresses will be used on the checkout page by default." -msgstr "" -"Belirttiğiniz adresler Ödeme sayfasında varsayılan olarak kullanılacaktır." - -# @ default -# @ woocommerce -#: admin/post-types/product.php:151 -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#: admin/post-types/writepanels/writepanel-order_data.php:387 -#: admin/post-types/writepanels/writepanel-product_data.php:1043 -#: admin/woocommerce-admin-attributes.php:322 -#: templates/myaccount/my-address.php:45 woocommerce.php:917 -#: woocommerce.php:953 woocommerce.php:990 woocommerce.php:1028 -#: woocommerce.php:1066 -msgid "Edit" -msgstr "Düzenle" - -# @ woocommerce -#: templates/myaccount/my-address.php:64 -msgid "You have not set up this type of address yet." -msgstr "Henüz bu tür bir adres bilgisi düzenlenmemiş." - -# @ woocommerce -#: templates/myaccount/my-downloads.php:18 -msgid "Available downloads" -msgstr "İndirilebilir Dosyalar" - -# @ woocommerce -#: templates/myaccount/my-downloads.php:27 -#, php-format -msgid "%s download remaining" -msgid_plural "%s downloads remaining" -msgstr[0] "" - -# @ woocommerce -#: templates/myaccount/my-orders.php:26 -msgid "Recent Orders" -msgstr "Son Siparişler" - -# @ woocommerce -#: admin/post-types/shop_order.php:44 templates/myaccount/my-orders.php:32 -#: woocommerce.php:1025 -msgid "Order" -msgstr "Sipariş" - -# @ woocommerce -#: admin/post-types/shop_order.php:43 -#: admin/settings/settings-payment-gateways.php:29 -#: admin/settings/settings-shipping-methods.php:31 -#: templates/myaccount/my-orders.php:34 -msgid "Status" -msgstr "Durum" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:138 -#: admin/post-types/writepanels/writepanel-product_data.php:1064 -#: templates/myaccount/my-orders.php:77 -msgid "Cancel" -msgstr "Vazgeç" - -# @ default -# @ woocommerce -#: admin/post-types/product.php:167 admin/post-types/shop_order.php:171 -#: templates/myaccount/my-orders.php:82 -msgid "View" -msgstr "İncele" - -# @ woocommerce -#: templates/order/form-tracking.php:17 -msgid "To track your order please enter your Order ID in the box below and press return. This was given to you on your receipt and in the confirmation email you should have received." -msgstr "Siparişinizi takip etmek için, lütfen aşağıdaki kutuya Sipariş Numaranızı girin ve enter tuşuna basın. Sipariş numaranız, siparişinizi onayladığınızda tarafınıza gönderilen e-posta'da yeralır." - -# @ woocommerce -#: templates/order/form-tracking.php:19 -msgid "Order ID" -msgstr "Şipariş ID" - -# @ woocommerce -#: templates/order/form-tracking.php:19 -msgid "Found in your order confirmation email." -msgstr "Sipariş Onay E-postasında bulunur." - -# @ woocommerce -#: templates/order/form-tracking.php:20 -msgid "Billing Email" -msgstr "Fatura E-Posta" - -# @ woocommerce -#: templates/order/form-tracking.php:20 -msgid "Email you used during checkout." -msgstr "Ödeme sırasında kullanmış olduğunuz e-posta adresi." - -# @ woocommerce -#: templates/order/form-tracking.php:23 -#, fuzzy -msgid "Track" -msgstr "Takip Et\"" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:59 -#: templates/order/order-details.php:16 -msgid "Order Details" -msgstr "Sipariş Detayları" - -# @ woocommerce -#: templates/order/order-details.php:57 -#, php-format -msgid "Download file %s →" -msgstr "Dosyayı İndir %s →" - -# @ woocommerce -#: templates/order/order-details.php:81 -msgid "Order Again" -msgstr "Tekrar Sipariş Et" - -# @ woocommerce -#: templates/order/order-details.php:93 -msgid "Telephone:" -msgstr "Telefon:" - -# @ woocommerce -#: templates/order/tracking.php:18 -#, php-format -msgid "Order %s which was made %s has the status “%s”" -msgstr "Siparişiniz: %s ( %s tarihli) için durum: “%s”" - -# @ woocommerce -#: templates/order/tracking.php:18 -msgid "ago" -msgstr "önce" - -# @ woocommerce -#: templates/order/tracking.php:20 -msgid "and was completed" -msgstr ", Tamamlandı: " - -# @ woocommerce -#: templates/order/tracking.php:20 -msgid " ago" -msgstr " önce" - -# @ woocommerce -#: templates/shop/breadcrumb.php:66 -msgid "Products tagged “" -msgstr "Etiketli Ürünler “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:94 templates/shop/breadcrumb.php:196 -msgid "Search results for “" -msgstr "Arama sonuçları “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:154 -msgid "Error 404" -msgstr "HATA 404" - -# @ woocommerce -#: templates/shop/breadcrumb.php:200 -msgid "Posts tagged “" -msgstr "Yazılardaki etiketler “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:205 -msgid "Author:" -msgstr "Yazar:" - -# @ woocommerce -#: templates/shop/breadcrumb.php:210 -msgid "Page" -msgstr "Sayfa" - -# @ woocommerce -#: templates/single-product/add-to-cart/variable.php:24 -msgid "Choose an option" -msgstr "Bir seçim yapın" - -# @ woocommerce -#: templates/single-product/add-to-cart/variable.php:64 -msgid "Clear selection" -msgstr "Seçimi temizle" - -# @ product_cat -#: templates/single-product/meta.php:22 -msgid "Category:" -msgid_plural "Categories:" -msgstr[0] "" - -# @ product_tag -#: templates/single-product/meta.php:24 -msgid "Tag:" -msgid_plural "Tags:" -msgstr[0] "" - -# @ woocommerce -#: admin/post-types/product.php:588 admin/post-types/product.php:837 -#: admin/post-types/writepanels/variation-admin-html.php:90 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:273 -#: templates/single-product/product-attributes.php:28 -msgid "Weight" -msgstr "Ağırlık" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:284 -#: templates/single-product/product-attributes.php:37 -msgid "Dimensions" -msgstr "Boyutlar" - -# @ woocommerce -#: templates/single-product/related.php:36 -msgid "Related Products" -msgstr "İlgili Ürünler" - -# @ woocommerce -#: templates/single-product/review.php:33 -msgid "Your comment is awaiting approval" -msgstr "Yorumunuz onay bekliyor. Anlayışınız için teşekkür ederiz." - -# @ woocommerce -#: templates/single-product/review.php:40 -msgid "verified owner" -msgstr "Doğrulanmış Kullanıcı" - -# @ woocommerce -#: templates/single-product/tabs/description.php:14 -msgid "Product Description" -msgstr "Ürün Açıklaması" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:64 -#: templates/single-product-reviews.php:51 -#: templates/single-product-reviews.php:57 -msgid "Reviews" -msgstr "Yorumlar" - -# @ woocommerce -#: templates/single-product/up-sells.php:41 -msgid "You may also like…" -msgstr "Hoşunuza gidebilir…" - -# @ woocommerce -#: templates/single-product-reviews.php:45 -#, php-format -msgid "%s review for %s" -msgid_plural "%s reviews for %s" -msgstr[0] "" - -# @ woocommerce -#: templates/single-product-reviews.php:73 -msgid " Previous" -msgstr " Önceki" - -# @ woocommerce -#: templates/single-product-reviews.php:74 -msgid "Next " -msgstr "Sonraki " - -# @ woocommerce -#: templates/single-product-reviews.php:78 -msgid "Add Review" -msgstr "Yorum Yap" - -# @ woocommerce -#: templates/single-product-reviews.php:80 -msgid "Add a review" -msgstr "Yorum Yap" - -# @ woocommerce -#: templates/single-product-reviews.php:84 -msgid "Be the first to review" -msgstr "İlk yorumlayan siz olun:" - -# @ woocommerce -#: templates/single-product-reviews.php:86 -msgid "There are no reviews yet, would you like to submit yours?" -msgstr "Bu ürüne henüz yorum yapılmamış. Siz Yorum Yapmak ister misiniz?" - -# @ woocommerce -#: templates/single-product-reviews.php:104 -msgid "Submit Review" -msgstr "Yorumu Gönder" - -# @ woocommerce -#: templates/single-product-reviews.php:111 -msgid "Rating" -msgstr "Oy ver" - -# @ woocommerce -#: templates/single-product-reviews.php:112 -msgid "Rate…" -msgstr "Oran…" - -# @ woocommerce -#: templates/single-product-reviews.php:113 -msgid "Perfect" -msgstr "Mükemmel" - - -# @ woocommerce -#: templates/single-product-reviews.php:114 -msgid "Good" -msgstr "İyi" - -# @ woocommerce -#: templates/single-product-reviews.php:115 -msgid "Average" -msgstr "Ortalama" - -# @ woocommerce -#: templates/single-product-reviews.php:116 -msgid "Not that bad" -msgstr "Kötü değil" - -# @ woocommerce -#: templates/single-product-reviews.php:117 -msgid "Very Poor" -msgstr "İyi değil" - -# @ woocommerce -#: templates/single-product-reviews.php:122 -msgid "Your Review" -msgstr "Yorumunuz" - -# @ woocommerce -#: woocommerce-ajax.php:111 -msgid "Please enter your username and password to login." -msgstr "Lütfen giriş yapmak için Kullanıcı Adınızı ve Şifrenizi girin." - -# @ woocommerce -#: woocommerce-ajax.php:191 -msgid "Sorry, your session has expired." -msgstr "Üzgünüz, oturumunuz sona ermiş." - -# @ woocommerce -#: woocommerce-ajax.php:191 -msgid "Return to homepage →" -msgstr "Anasayfaya geri dön →" - -# @ woocommerce -#: woocommerce-ajax.php:332 woocommerce-ajax.php:366 woocommerce-ajax.php:389 -msgid "You do not have sufficient permissions to access this page." -msgstr "Bu sayfaya erişmek için gerekli izinlere sahip değilsiniz." - -# @ woocommerce -#: woocommerce-ajax.php:334 woocommerce-ajax.php:367 woocommerce-ajax.php:390 -msgid "You have taken too long. Please go back and retry." -msgstr "Zaman Aşımı gerçekleşti. Lütfen geri dönün ve tekrar deneyin." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:113 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:53 -#: woocommerce-ajax.php:626 -msgid "Same as parent" -msgstr "Ebeveyn ile aynı" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:25 -#: admin/post-types/writepanels/order-item-html.php:91 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:54 -#: admin/post-types/writepanels/writepanel-product_data.php:186 -#: admin/settings/settings-init.php:982 -#: admin/settings/settings-tax-rates.php:29 -#: admin/woocommerce-admin-settings.php:226 woocommerce-ajax.php:627 -msgid "Standard" -msgstr "Standard" - -# @ woocommerce -#: woocommerce-ajax.php:1215 woocommerce-ajax.php:1216 -#, php-format -msgid "Item #%s stock increased from %s to %s." -msgstr "Ürün: #%s için stok miktarı %s 'ten %s 'e arttırıldı." - -# @ woocommerce -#: woocommerce-ajax.php:1244 -msgid "Value" -msgstr "Değer" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -#: woocommerce-ajax.php:1558 -msgid "Delete note" -msgstr "Notu SiL" - -# @ woocommerce -#: woocommerce-core-functions.php:1189 woocommerce-core-functions.php:1215 -msgid "Download Permissions Granted" -msgstr "İndirme Yetkileri Verildi" - -# @ woocommerce -#: woocommerce-core-functions.php:1328 -msgctxt "slug" -msgid "uncategorized" -msgstr "kategorilenmemis" - -# @ woocommerce -#: woocommerce-core-functions.php:1517 -msgid "Select a category" -msgstr "Kategori seçin" - -# @ woocommerce -#: woocommerce-core-functions.php:1521 -msgid "Uncategorized" -msgstr "Genel" - -# @ woocommerce -#: woocommerce-core-functions.php:1893 -msgid "Customer" -msgstr "Müşteri" - -# @ woocommerce -#: woocommerce-core-functions.php:1900 -msgid "Shop Manager" -msgstr "Mağaza Yöneticisi" - -# @ woocommerce -#: woocommerce-core-functions.php:2433 -msgid "Unpaid order cancelled - time limit reached." -msgstr "Ödemesi yapılmayan sipariş İPTAL edildi - bekleme süresi doldu." - -# @ woocommerce -#: woocommerce-core-functions.php:2485 woocommerce-functions.php:703 -msgid "Please enter a username." -msgstr "Lütfen bir Kullanıcı Adı giriniz." - -# @ woocommerce -#: woocommerce-functions.php:208 woocommerce-functions.php:253 -msgid "Cart updated." -msgstr "Sepet güncellendi." - -# @ woocommerce -#: woocommerce-functions.php:239 -#, php-format -msgid "You can only have 1 %s in your cart." -msgstr "Sepetinizde sadece 1 %s var." - -# @ woocommerce -#: woocommerce-functions.php:296 woocommerce-functions.php:343 -msgid "Please choose product options…" -msgstr "Lütfen ürün seçeneklerini belirleyin…" - -# @ woocommerce -#: woocommerce-functions.php:378 -msgid "Please choose the quantity of items you wish to add to your cart…" -msgstr "Lütfen sepetinize eklemek istediğiniz ürünlerin miktarlarını belirleyiniz …" - -# @ woocommerce -#: woocommerce-functions.php:386 -msgid "Please choose a product to add to your cart…" -msgstr "Lütfen sepetinize eklemek için bir ürün seçiniz …" - -# @ woocommerce -#: woocommerce-functions.php:455 -#, php-format -msgid "Added "%s" to your cart." -msgstr " "%s" sepetinize eklendi." - -# @ default -#: woocommerce-functions.php:455 -msgid "" and "" -msgstr "" - -# @ woocommerce -#: woocommerce-functions.php:458 -#, php-format -msgid ""%s" was successfully added to your cart." -msgstr ""%s" sepetinize başarıyla eklendi." - -# @ woocommerce -#: woocommerce-functions.php:466 -msgid "Continue Shopping →" -msgstr "Alışverişe Devam →" - -# @ woocommerce -#: woocommerce-functions.php:633 -msgid "Username is required." -msgstr "Kullanıcı adı zorunludur." - -# @ woocommerce -#: woocommerce-functions.php:634 woocommerce-functions.php:729 -msgid "Password is required." -msgstr "Şifre zorunludur." - -# @ woocommerce -#: woocommerce-functions.php:705 -msgid "This username is invalid because it uses illegal characters. Please enter a valid username." -msgstr "Bu kullanıcı adı, uygun olmayan karakterler içerdiğinden geçersizdir. Lütfen geçerli bir kullanıcı adı seçiniz." - -# @ woocommerce -#: woocommerce-functions.php:708 -msgid "This username is already registered, please choose another one." -msgstr "" -"Bu kullanıcı adı zaten kayıtlıdır, lütfen başka bir kullanıcı adı seçiniz." - -# @ woocommerce -#: woocommerce-functions.php:720 -msgid "Please type your e-mail address." -msgstr "Lütfen e-posta adresinizi yazınız." - -# @ woocommerce -#: woocommerce-functions.php:722 -msgid "The email address isn’t correct." -msgstr "e-posta adresi geçerli değil." - -# @ woocommerce -#: woocommerce-functions.php:725 -msgid "This email is already registered, please choose another one." -msgstr "Bu e-posta adresi zaten kayıtlı, lütfen başka bir tane seçiniz." - -# @ woocommerce -#: woocommerce-functions.php:730 -msgid "Re-enter your password." -msgstr "Şifrenizi tekrar girin." - -# @ woocommerce -#: woocommerce-functions.php:735 -msgid "Anti-spam field was filled in." -msgstr "Anti-spam alanı doldurulmuş!" - -# @ woocommerce -#: woocommerce-functions.php:841 -msgid "The cart has been filled with the items from your previous order." -msgstr "Sepetiniz, bir önceki siparişinizdeki ürünlerle doldurulmuştur." - -# @ woocommerce -#: woocommerce-functions.php:867 -msgid "Order cancelled by customer." -msgstr "Sipariş müşteri tarafından iptal edildi." - -# @ woocommerce -#: woocommerce-functions.php:870 -msgid "Your order was cancelled." -msgstr "Siparişiniz iptal edildi." - -# @ woocommerce -#: woocommerce-functions.php:876 -msgid "Your order is no longer pending and could not be cancelled. Please contact us if you need assistance." -msgstr "Siparişiniz artık beklemede olmadığından iptal edemezsiniz. Eğer yardıma ihtiyacınız varsa lütfen bizimle irtibata geçin." - -# @ woocommerce -#: woocommerce-functions.php:911 -msgid "Invalid email address." -msgstr "Geçersiz e-posta adresi." - -# @ woocommerce -#: woocommerce-functions.php:911 woocommerce-functions.php:933 -#: woocommerce-functions.php:953 woocommerce-functions.php:959 -#: woocommerce-functions.php:963 woocommerce-functions.php:966 -#: woocommerce-functions.php:996 woocommerce-functions.php:1099 -msgid "Go to homepage →" -msgstr "Anasayfaya git →" - -# @ woocommerce -#: woocommerce-functions.php:933 -msgid "Invalid download." -msgstr "İndirme geçersiz." - -# @ woocommerce -#: woocommerce-functions.php:945 -msgid "You must be logged in to download files." -msgstr "Dosya indirebilmeniz için kullanıcı girişi yapmanız gerekir." - -# @ woocommerce -#: woocommerce-functions.php:948 -msgid "This is not your download link." -msgstr "Bu indirme linki değildir." - -# @ woocommerce -#: woocommerce-functions.php:953 -msgid "Product no longer exists." -msgstr "Ürün artık bulunmuyor." - -# @ woocommerce -#: woocommerce-functions.php:963 -msgid "Sorry, you have reached your download limit for this file" -msgstr "Üzgünüz, bu dosya için indirme limitinizi doldurdunuz." - -# @ woocommerce -#: woocommerce-functions.php:966 -msgid "Sorry, this download has expired" -msgstr "Üzgünüz, bu indirmenin süresi dolmuş" - -# @ woocommerce -#: woocommerce-functions.php:1099 -msgid "File not found" -msgstr "Dosya bulunamadı" - -# @ woocommerce -#: woocommerce-functions.php:1209 -msgid "New products" -msgstr "Yeni ürün" - -# @ woocommerce -#: woocommerce-functions.php:1217 -#, php-format -msgid "New products added to %s" -msgstr "%s yeni ürünler eklendi" - -# @ woocommerce -#: woocommerce-functions.php:1225 -#, php-format -msgid "New products tagged %s" -msgstr "Yeni Ürün Etiketi, %s" - -# @ woocommerce -#: woocommerce-functions.php:1264 -msgid "You have taken too long. Please go back and refresh the page." -msgstr "" -"Uzun süre işlem yapılmadığından sayfa zaman aşımına uğramış. Lütfen geri " -"dönün ve sayfayı yenileyin." - -# @ woocommerce -#: woocommerce-functions.php:1267 -msgid "Please rate the product." -msgstr "Lütfen ürün için oy verin." - -# @ woocommerce -#: admin/settings/settings-init.php:95 woocommerce-template.php:196 -msgid "This is a demo store for testing purposes — no orders shall be fulfilled." -msgstr "Burası denemeler yapmak amacıyla oluşturulmuş bir Demo/Test sistemidir. — Sipariş işlemleri sonladırılamayacaktır, Lütfen herhangi bir ödeme işlemi yapmayın." - -# @ woocommerce -#: woocommerce-template.php:215 -#, php-format -msgid "Search Results: “%s”" -msgstr "Arama Sonuçları: “%s”" - -# @ woocommerce -#: woocommerce-template.php:218 -#, php-format -msgid " – Page %s" -msgstr " – Sayfa %s" - -# @ woocommerce -#: woocommerce-template.php:990 -msgctxt "breadcrumb" -msgid "Home" -msgstr "Anasayfa" - -# @ woocommerce -#: woocommerce-template.php:1288 woocommerce.php:1175 -msgid "required" -msgstr "gerekli" - -# @ woocommerce -#: woocommerce-template.php:1334 -msgid "Update country" -msgstr "Ülke Güncelle" - -# @ woocommerce -#: woocommerce-template.php:1489 -msgid "Search for:" -msgstr "Ara:" - -# @ woocommerce -#: woocommerce-template.php:1490 -msgid "Search for products" -msgstr "Ürün ara..." - -# @ woocommerce -#: admin/post-types/product.php:620 admin/post-types/product.php:893 -#: admin/post-types/writepanels/writepanel-product_data.php:1030 -#: woocommerce-template.php:1491 woocommerce.php:913 -msgid "Search" -msgstr "Ara" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:50 -#: admin/woocommerce-admin-init.php:895 woocommerce.php:752 -msgctxt "slug" -msgid "product-category" -msgstr "urun-kategori" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:51 -#: admin/woocommerce-admin-init.php:908 woocommerce.php:753 -msgctxt "slug" -msgid "product-tag" -msgstr "urun-etiketi" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:59 woocommerce.php:755 -msgctxt "slug" -msgid "product" -msgstr "urun" - -# @ woocommerce -#: woocommerce.php:791 -msgctxt "Admin menu name" -msgid "Categories" -msgstr "Kategoriler" - -# @ woocommerce -#: woocommerce.php:792 -msgid "Search Product Categories" -msgstr "Ürün Kategorisi Ara" - -# @ woocommerce -#: woocommerce.php:793 -msgid "All Product Categories" -msgstr "Tüm Ürün Kategorileri" - -# @ woocommerce -#: woocommerce.php:794 -msgid "Parent Product Category" -msgstr "Üst-Ürün Kategorisi" - -# @ woocommerce -#: woocommerce.php:795 -msgid "Parent Product Category:" -msgstr "Üst-Ürün Kategorisi:" - -# @ woocommerce -#: woocommerce.php:796 -msgid "Edit Product Category" -msgstr "Ürün Kategorisini Düzenle" - -# @ woocommerce -#: woocommerce.php:797 -msgid "Update Product Category" -msgstr "Ürün Kategorisini Güncelle" - -# @ woocommerce -#: woocommerce.php:798 -msgid "Add New Product Category" -msgstr "Yeni Ürün Kategorisi Ekle" - -# @ woocommerce -#: woocommerce.php:799 -msgid "New Product Category Name" -msgstr "Yeni Ürün Kategorisi Adı" - -# @ woocommerce -#: woocommerce.php:827 -msgctxt "Admin menu name" -msgid "Tags" -msgstr "Etiketler" - -# @ woocommerce -#: woocommerce.php:828 -msgid "Search Product Tags" -msgstr "Ürün Etiketi Ara" - -# @ woocommerce -#: woocommerce.php:829 -msgid "All Product Tags" -msgstr "Tüm Ürün Etiketleri" - -# @ woocommerce -#: woocommerce.php:830 -msgid "Parent Product Tag" -msgstr "Üst-Ürün Etiketi" - -# @ woocommerce -#: woocommerce.php:831 -msgid "Parent Product Tag:" -msgstr "Üst-Ürün Etiketi:" - -# @ woocommerce -#: woocommerce.php:832 -msgid "Edit Product Tag" -msgstr "Ürün Etiketini Düzenle" - -# @ woocommerce -#: woocommerce.php:833 -msgid "Update Product Tag" -msgstr "Ürün Etiketini Güncelle" - -# @ woocommerce -#: woocommerce.php:834 -msgid "Add New Product Tag" -msgstr "Yeni Ürün Etiketi Ekle" - -# @ woocommerce -#: woocommerce.php:835 -msgid "New Product Tag Name" -msgstr "Yeni Ürün Etiketi Adı" - -# @ woocommerce -#: woocommerce.php:854 woocommerce.php:856 -msgid "Shipping Classes" -msgstr "Kargo Sınıfları" - -# @ woocommerce -#: woocommerce.php:858 -msgctxt "Admin menu name" -msgid "Shipping Classes" -msgstr "Kargo Sınıfları" - -# @ woocommerce -#: woocommerce.php:859 -msgid "Search Shipping Classes" -msgstr "Kargo Sınıflarında Ara" - -# @ woocommerce -#: woocommerce.php:860 -msgid "All Shipping Classes" -msgstr "Tüm Kargo Sınıfları" - -# @ woocommerce -#: woocommerce.php:861 -msgid "Parent Shipping Class" -msgstr "Üst-Kargo Sınıfı" - -# @ woocommerce -#: woocommerce.php:862 -msgid "Parent Shipping Class:" -msgstr "Üst-Kargo Sınıfı:" - -# @ woocommerce -#: woocommerce.php:863 -msgid "Edit Shipping Class" -msgstr "Kargo Sınıfını Düzenle" - -# @ woocommerce -#: woocommerce.php:864 -msgid "Update Shipping Class" -msgstr "Kargo Sınıfını Güncelle" - -# @ woocommerce -#: woocommerce.php:865 -msgid "Add New Shipping Class" -msgstr "Yeni Kargo Sınıfı Ekle" - -# @ woocommerce -#: woocommerce.php:866 -msgid "New Shipping Class Name" -msgstr "Yeni Kargo Sınıfı Adı" - -# @ woocommerce -#: woocommerce.php:914 -msgid "All" -msgstr "Tümü" - -# @ woocommerce -#: woocommerce.php:915 woocommerce.php:916 -msgid "Parent" -msgstr "Üst" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:276 woocommerce.php:918 -msgid "Update" -msgstr "Güncelle" - -# @ woocommerce -#: woocommerce.php:919 -msgid "Add New" -msgstr "Yeni Ekle" - -# @ woocommerce -#: woocommerce.php:920 -msgid "New" -msgstr "Yeni" - -# @ woocommerce -#: woocommerce.php:950 -msgctxt "Admin menu name" -msgid "Products" -msgstr "Ürünler" - -# @ woocommerce -#: woocommerce.php:951 -msgid "Add Product" -msgstr "Ürün Ekle" - -# @ woocommerce -#: woocommerce.php:952 -msgid "Add New Product" -msgstr "Yeni Ürün Ekle" - -# @ woocommerce -#: woocommerce.php:954 -msgid "Edit Product" -msgstr "Ürün Düzenle" - -# @ woocommerce -#: woocommerce.php:955 -msgid "New Product" -msgstr "Yeni Ürün" - -# @ woocommerce -#: woocommerce.php:956 woocommerce.php:957 -msgid "View Product" -msgstr "Ürünü Görüntüle" - -# @ woocommerce -#: woocommerce.php:958 -msgid "Search Products" -msgstr "Ürün Ara" - -# @ woocommerce -#: woocommerce.php:959 -msgid "No Products found" -msgstr "Ürün bulunamadı" - -# @ woocommerce -#: woocommerce.php:960 -msgid "No Products found in trash" -msgstr "Silinmiş ürün yok." - -# @ woocommerce -#: woocommerce.php:961 -msgid "Parent Product" -msgstr "Üst-Ürün" - -# @ woocommerce -#: woocommerce.php:963 -msgid "This is where you can add new products to your store." -msgstr "Mağazanıza Yeni Ürünler Eklemek için burayı kullanabilirsiniz." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -#: woocommerce.php:986 -msgid "Variations" -msgstr "" - -# @ woocommerce -#: woocommerce.php:987 -msgid "Variation" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:193 -#: woocommerce.php:988 -msgid "Add Variation" -msgstr "" - -# @ woocommerce -#: woocommerce.php:989 -msgid "Add New Variation" -msgstr "" - -# @ woocommerce -#: woocommerce.php:991 -msgid "Edit Variation" -msgstr "" - -# @ woocommerce -#: woocommerce.php:992 -msgid "New Variation" -msgstr "" - -# @ woocommerce -#: woocommerce.php:993 woocommerce.php:994 -msgid "View Variation" -msgstr "" - -# @ woocommerce -#: woocommerce.php:995 -msgid "Search Variations" -msgstr "" - -# @ woocommerce -#: woocommerce.php:996 -msgid "No Variations found" -msgstr "" - -# @ woocommerce -#: woocommerce.php:997 -msgid "No Variations found in trash" -msgstr "" - -# @ woocommerce -#: woocommerce.php:998 -msgid "Parent Variation" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:140 admin/woocommerce-admin-init.php:142 -#: woocommerce.php:1015 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Siparişler" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:68 -#: admin/woocommerce-admin-dashboard.php:142 woocommerce.php:1024 -msgid "Orders" -msgstr "Siparişler" - -# @ woocommerce -#: woocommerce.php:1026 -msgid "Add Order" -msgstr "Sipariş Ekle" - -# @ woocommerce -#: woocommerce.php:1027 -msgid "Add New Order" -msgstr "Yeni Sipariş Ekle" - -# @ woocommerce -#: woocommerce.php:1029 -msgid "Edit Order" -msgstr "Sipariş Düzenle" - -# @ woocommerce -#: woocommerce.php:1030 -msgid "New Order" -msgstr "Yeni Sipariş" - -# @ woocommerce -#: woocommerce.php:1033 -msgid "Search Orders" -msgstr "Sipariş Ara" - -# @ woocommerce -#: woocommerce.php:1034 -msgid "No Orders found" -msgstr "Sipariş bulunamadı" - -# @ woocommerce -#: woocommerce.php:1035 -msgid "No Orders found in trash" -msgstr "Silinmiş bir sipariş yok" - -# @ woocommerce -#: woocommerce.php:1036 -msgid "Parent Orders" -msgstr "Üst-Siparişler" - -# @ woocommerce -#: woocommerce.php:1039 -msgid "This is where store orders are stored." -msgstr "Mağaza siparişlerinin depolandığı yer." - -# @ woocommerce -#: admin/settings/settings-init.php:105 admin/woocommerce-admin-content.php:61 -#: admin/woocommerce-admin-content.php:76 -#: admin/woocommerce-admin-reports.php:72 woocommerce.php:1061 -msgid "Coupons" -msgstr "Kuponlar" - -# @ woocommerce -#: woocommerce.php:1063 -msgctxt "Admin menu name" -msgid "Coupons" -msgstr "Kuponlar" - -# @ woocommerce -#: woocommerce.php:1064 -msgid "Add Coupon" -msgstr "Kupon Ekle" - -# @ woocommerce -#: woocommerce.php:1065 -msgid "Add New Coupon" -msgstr "Yeni Kupon Ekle" - -# @ woocommerce -#: woocommerce.php:1067 -msgid "Edit Coupon" -msgstr "Kupon Düzenle" - -# @ woocommerce -#: woocommerce.php:1068 -msgid "New Coupon" -msgstr "Yeni Kupon" - -# @ woocommerce -#: woocommerce.php:1069 -msgid "View Coupons" -msgstr "Kuponları Görüntüle" - -# @ woocommerce -#: woocommerce.php:1070 -msgid "View Coupon" -msgstr "Kupon Görüntüle" - -# @ woocommerce -#: woocommerce.php:1071 -msgid "Search Coupons" -msgstr "Kuponları Ara" - -# @ woocommerce -#: woocommerce.php:1072 -msgid "No Coupons found" -msgstr "Kupon bulunamadı" - -# @ woocommerce -#: woocommerce.php:1073 -msgid "No Coupons found in trash" -msgstr "Silinmiş Kupon yok" - -# @ woocommerce -#: woocommerce.php:1074 -msgid "Parent Coupon" -msgstr "Üst-Kupon" - -# @ woocommerce -#: woocommerce.php:1076 -msgid "This is where you can add new coupons that customers can use in your store." -msgstr "Müşterilerinizin mağazanızdan yapacakları alışverişlerinde kullanabileceği Yeni Kuponları buradan ekleyebilirsiniz." - -# @ woocommerce -#: woocommerce.php:1172 -#, fuzzy -msgid "Select an option…" -msgstr "Sayfa Seçin…" - -# @ woocommerce -#: woocommerce.php:1173 -msgid "Please select a rating" -msgstr "Lütfen bir derecelendirme seçin" - -# @ woocommerce -#: woocommerce.php:1174 -msgid "Sorry, no products matched your selection. Please choose a different combination." -msgstr "Üzgünüz, seçtiğiniz ürünler uyumlu değil. Farklı bir kombinasyon seçin." - -# @ woocommerce -#: woocommerce.php:1656 -msgid "Cart % Discount" -msgstr "Sepette % İndirim" - -# @ woocommerce -#: woocommerce.php:1657 -msgid "Product Discount" -msgstr "Üründe İndirim" - -# @ woocommerce -#: woocommerce.php:1658 -msgid "Product % Discount" -msgstr "Üründe % İndirim" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:45 woocommerce.php:1723 -msgid "Action failed. Please refresh the page and retry." -msgstr "İşlem başarısız. Lütfen sayfayı yenileyin ve tekrar deneyin." - -# @ woocommerce -#: admin/importers/importers-init.php:13 -msgid "WooCommerce Tax Rates (CSV)" -msgstr "WooCommerce Vergi Oranları (CSV)" - -# @ woocommerce -#: admin/importers/importers-init.php:13 -msgid "Import tax rates to your store via a csv file." -msgstr "Vergi Oranlarını csv dosyasına aktar." - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:103 -#: admin/importers/tax-rates-importer.php:186 -#: admin/importers/tax-rates-importer.php:226 -#: admin/importers/tax-rates-importer.php:241 -msgid "Sorry, there has been an error." -msgstr "Üzgünüz, bir hata oluştu." - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:104 -msgid "The file does not exist, please try again." -msgstr "Dosya yok, lütfen tekrar deneyin." - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:187 -msgid "The CSV is invalid." -msgstr "Geçersiz CSV." - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:198 -#, php-format -msgid "Import complete - imported %s tax rates and skipped %s." -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:208 -msgid "All done!" -msgstr "Hepsi bitti!" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:208 -msgid "View Tax Rates" -msgstr "Vergi Oranları Görünümü" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:259 -msgid "Import Tax Rates" -msgstr "Vergi Oranlarını Aktar" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:282 -msgid "Hi there! Upload a CSV file containing tax rates to import the contents into your shop. Choose a .csv file to upload, then click \"Upload file and import\"." -msgstr "Merhaba! Dükkanınıza almak için vergi oranları içeren bir CSV dosyası yükleyin. Yüklemek için bir .csv dosyası seçin, \"Dosya yükle ve ekle\" tıklayın." - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:284 -#, php-format -msgid "Tax rates need to be defined with columns in a specific order (10 columns). Click here to download a sample." -msgstr "Vergi oranları belirli bir sıra (10 sütun) tanımlanması gerekir. bir örnek indirmek için tıklayınız ." - -# @ default -#: admin/importers/tax-rates-importer.php:292 -msgid "Before you can upload your import file, you will need to fix the following error:" -msgstr "Dosya yükleyebilmeniz için önce aşağıdaki hataları düzeltmeniz gerekmekte:" - -# @ default -#: admin/importers/tax-rates-importer.php:301 -msgid "Choose a file from your computer:" -msgstr "Bilgisayarınızdan bir dosya seçin:" - -# @ default -#: admin/importers/tax-rates-importer.php:307 -#, php-format -msgid "Maximum size: %s" -msgstr "Maximum boyut: %s" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:312 -msgid "OR enter path to file:" -msgstr "Veya dosya konumunu girin:" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:319 -msgid "Delimiter" -msgstr "Sınırlayıcı" - -# @ default -#: admin/importers/tax-rates-importer.php:325 -msgid "Upload file and import" -msgstr "Dosya yükle ve ekle" - -# @ woocommerce -#: admin/includes/duplicate_product.php:23 -msgid "No product to duplicate has been supplied!" -msgstr "" - -# @ woocommerce -#: admin/includes/duplicate_product.php:43 -msgid "Product creation failed, could not find original product:" -msgstr "Ürün oluşturma başarısız oldu, orijinal ürün bulamadı:" - -# @ woocommerce -#: admin/includes/duplicate_product.php:89 -msgid "(Copy)" -msgstr "(Kopyala)" - -# @ woocommerce -#: admin/includes/notice-install.php:6 -msgid "Welcome to WooCommerce – You're almost ready to start selling :)" -msgstr "WooCommerce Hoşgeldiniz – Hemen satışa başlayabilirsiniz :)" - -# @ woocommerce -#: admin/includes/notice-install.php:7 -msgid "Install WooCommerce Pages" -msgstr "WooCommerce Sayfalarını Yükle" - -# @ woocommerce -#: admin/includes/notice-install.php:7 -msgid "Skip setup" -msgstr "Kurulumu geç (Önerilmez)" - -# @ woocommerce -#: admin/includes/notice-theme-support.php:6 -msgid "Your theme does not declare WooCommerce support – if you encounter layout issues please read our integration guide or choose a WooCommerce theme :)" -msgstr "Temanızda WooCommerce desteği bulunamadı – sorunlarla karşılaşırsanız ürün desteğine başvurabilir veya WooCommerce teması seçebilirsiniz :)" - -# @ woocommerce -#: admin/includes/notice-theme-support.php:7 -msgid "Theme Integration Guide" -msgstr "Tema Entegrasyon Kılavuzu" - -# @ woocommerce -#: admin/includes/notice-theme-support.php:7 -msgid "Hide this notice" -msgstr "Bu uyarıyı gizle" - -# @ woocommerce -#: admin/includes/notice-update.php:6 -msgid "Data Update Required – We just need to update your install to the latest version" -msgstr "Güncelleme Gerekli – Son versiyona yükseltin" - -# @ woocommerce -#: admin/includes/notice-update.php:7 -msgid "Run the updater" -msgstr "Güncellemeyi çalıştırın" - -# @ woocommerce -#: admin/includes/notice-update.php:12 -msgid "It is strongly recommended that you backup your database before proceeding. Are you sure you wish to run the updater now?" -msgstr "Devam etmeden önce veritabanınızı yedeklemeniz önerilir. Güncelleştirmeyi şimdi çalıştırmak istiyor musunuz?" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:180 -#: admin/woocommerce-admin-install.php:204 -msgctxt "page_slug" -msgid "lost-password" -msgstr "" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:180 -#: admin/woocommerce-admin-install.php:204 -#: admin/woocommerce-admin-status.php:309 -msgid "Lost Password" -msgstr "Şifremi Unuttum" - -# @ woocommerce -#: admin/includes/welcome.php:33 -msgid "Welcome to WooCommerce" -msgstr "WooCommerce Hoşgeldiniz" - -# @ woocommerce -#: admin/includes/welcome.php:128 -#, php-format -msgid "Welcome to WooCommerce %s" -msgstr "%s WooCommerce Hoşgeldiniz" - -# @ woocommerce -#: admin/includes/welcome.php:133 -msgid "Thanks, all done!" -msgstr "Teşekkürler, bitti!" - -# @ woocommerce -#: admin/includes/welcome.php:135 -msgid "Thank you for updating to the latest version!" -msgstr "Son sürüme güncelleştirdiğiniz için teşekkür ederiz!" - -# @ woocommerce -#: admin/includes/welcome.php:137 -msgid "Thanks for installing!" -msgstr "Yüklediğiniz için teşekkürler!" - -# @ woocommerce -#: admin/includes/welcome.php:139 -#, php-format -msgid "%s WooCommerce %s is more powerful, stable, and secure than ever before. We hope you enjoy it." -msgstr "%s WooCommerce %s her zamankinden daha güçlü, istikrarlı ve güvenli. Beğeneceğinizi umuyoruz." - -# @ default -#: admin/includes/welcome.php:143 -#, php-format -msgid "Version %s" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:147 -msgid "Docs" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:154 -msgid "What's New" -msgstr "Neler Yeni" - -# @ woocommerce -#: admin/includes/welcome.php:156 -msgid "Credits" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:179 -msgid "Security in mind" -msgstr "Güvenlik fikirleri" - -# @ woocommerce -#: admin/includes/welcome.php:183 -msgid "Sucuri Safe Plugin" -msgstr "Sucuri Güvenli Eklenti" - -# @ woocommerce -#: admin/includes/welcome.php:184 -msgid "You will be happy to learn that WooCommerce has been audited and certified by the Sucuri Security team. Whilst there is not much to be seen visually to understand the amount of work that went into this audit, rest assured that your website is powered by one of the most powerful and stable eCommerce plugins available." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:187 -msgid "A Smoother Admin Experience" -msgstr "Daha Kolay Bir Yönetim Deneyimi" - -# @ woocommerce -#: admin/includes/welcome.php:193 -msgid "New Product Panel" -msgstr "Yeni Ürün Paneli" - -# @ woocommerce -#: admin/includes/welcome.php:194 -msgid "We have revised the product data panel making it cleaner, more streamlined, and more logical. Adding products is a breeze!" -msgstr "Ürün eklemesi kolay! Daha akıcı, daha temiz, daha mantıksal bir ürün yönetim paneli ekledik." - -# @ woocommerce -#: admin/includes/welcome.php:199 -msgid "Nicer Order Screens" -msgstr "Kolay Sipariş Ekranları" - -# @ woocommerce -#: admin/includes/welcome.php:200 -msgid "Order pages have had a cleanup, with a more easily scannable interface. We particularly like the new status icons!" -msgstr "Sipariş sayfaları temizlenerek daha kolay bir arayüz yapıldı. Durum ikonlarını beğeneceksiniz!" - -# @ woocommerce -#: admin/includes/welcome.php:205 -msgid "Multi-Download Support" -msgstr "Çoklu-Yükleme Desteği" - -# @ woocommerce -#: admin/includes/welcome.php:206 -msgid "Products can have multiple downloadable files - purchasers will get access to all the files added." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:211 -msgid "Less Taxing Taxes" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:217 -msgid "New Tax Input Panel" -msgstr "Yeni Vergi Giriş Paneli" - -# @ woocommerce -#: admin/includes/welcome.php:218 -msgid "The tax input pages have been streamlined to make inputting taxes simpler - adding multiple taxes for a single jurisdiction is now much easier using the priority system. There is also CSV import/export support." -msgstr "Vergi girişini kolaylaştırmak için vergi sayfaları aerodinamik olmuştur - tek bir yargı için birden fazla vergi eklemek çok daha kolaydır. CSV ekleme/çıkarma desteği de bulunmaktadır." - -# @ woocommerce -#: admin/includes/welcome.php:222 -msgid "Improved Tax Options" -msgstr "Geliştirilmiş Vergi Seçenekleri" - -# @ woocommerce -#: admin/includes/welcome.php:223 -msgid "As requested by some users, we now support taxing the billing address instead of shipping (optional), and we allow you to choose which tax class applies to shipping." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:228 -msgid "Product Listing Improvements Customers Will Love" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:234 -msgid "New Sorting Options" -msgstr "Yeni Sıralama Seçenekleri" - -# @ woocommerce -#: admin/includes/welcome.php:235 -msgid "Customers can now sort products by popularity and ratings." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:240 -msgid "Better Pagination and Result Counts" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:241 -msgid "Numbered pagination has been added to core, and we show the number of results found above the listings." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:246 -msgid "Inline Star Rating Display" -msgstr "Derecerine Göre Sıralama" - -# @ woocommerce -#: admin/includes/welcome.php:247 -msgid "We have added star ratings to the catalog which are pulled from reviews." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:255 -msgid "Under the Hood" -msgstr "Başlık Altında" - -# @ woocommerce -#: admin/includes/welcome.php:259 -msgid "New product classes" -msgstr "Yeni ürün sınıfları" - -# @ woocommerce -#: admin/includes/welcome.php:260 -msgid "The product classes have been rewritten and are now factory based. Much more extendable, and easier to query products using the new get_product() function." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:264 -msgid "Capability overhaul" -msgstr "Özelliği yenile" - -# @ woocommerce -#: admin/includes/welcome.php:265 -msgid "More granular capabilities for admin/shop manager roles covering products, orders and coupons." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:269 -msgid "API Improvements" -msgstr "API Geliştirmeleri" - -# @ woocommerce -#: admin/includes/welcome.php:270 -msgid "WC-API now has real endpoints, and we've optimised the gateways API significantly by only loading gateways when needed." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:276 -msgid "Cache-friendly cart widgets" -msgstr "Önbellek-dostu sepet widgetları" - -# @ woocommerce -#: admin/includes/welcome.php:277 -msgid "Cart widgets and other \"fragments\" are now pulled in via AJAX - this works wonders with static page caching." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:281 -msgid "Session handling" -msgstr "Oturum yönetimi" - -# @ woocommerce -#: admin/includes/welcome.php:282 -msgid "PHP SESSIONS have been a problem for many users in the past, so we've developed our own handler using cookies and options to make these more reliable." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:286 -msgid "Retina Ready" -msgstr "Hazır Retina" - -# @ woocommerce -#: admin/includes/welcome.php:287 -msgid "All graphics within WC have been optimised for HiDPI displays." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:294 -msgid "Better stock handling" -msgstr "Daha iyi stok yönetimi" - -# @ woocommerce -#: admin/includes/welcome.php:295 -msgid "We have added an option to hold stock for unpaid orders (defaults to 60mins). When this time limit is reached, and the order is not paid for, stock is released and the order is cancelled." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:299 -msgid "Improved Line-item storage" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:300 -msgid "We have changed how order items get stored making them easier (and faster) to access for reporting. Order items are no longer serialised within an order - they are stored within their own table." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:304 -msgid "Autoload" -msgstr "Otomatik yükleme" - -# @ woocommerce -#: admin/includes/welcome.php:305 -msgid "We have setup autoloading for classes - this has dramatically reduced memory usage in 2.0." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:312 -msgid "Go to WooCommerce Settings" -msgstr "WooCommerce Ayarlarına Git" - -# @ woocommerce -#: admin/includes/welcome.php:330 -msgid "WooCommerce is developed and maintained by a worldwide team of passionate individuals and backed by an awesome developer community. Want to see your name? Contribute to WooCommerce." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:356 -#, php-format -msgid "View %s" -msgstr "%s Göster" - -# @ woocommerce -#: admin/post-types/product.php:31 -msgid "Make a duplicate from this product" -msgstr "Bu ürünü çoğalt" - -# @ woocommerce -#: admin/post-types/product.php:32 -msgid "Duplicate" -msgstr "Çoğalt" - -# @ woocommerce -#: admin/post-types/product.php:61 -msgid "Copy to a new draft" -msgstr "Yeni bir taslak kopyalayın" - -# @ woocommerce -#: admin/post-types/product.php:86 admin/woocommerce-admin-taxonomies.php:297 -msgid "Image" -msgstr "Resim" - -# @ woocommerce -#: admin/post-types/product.php:91 admin/post-types/product.php:557 -#: admin/post-types/writepanels/variation-admin-html.php:46 -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#: admin/woocommerce-admin-reports.php:2083 -#: admin/woocommerce-admin-reports.php:2119 -msgid "SKU" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:94 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:83 -#: admin/woocommerce-admin-content.php:63 -#: admin/woocommerce-admin-reports.php:99 -msgid "Stock" -msgstr "Stok" - -# @ woocommerce -#: admin/post-types/product.php:98 -msgid "Categories" -msgstr "Kategoriler" - -# @ woocommerce -#: admin/post-types/product.php:99 -msgid "Tags" -msgstr "Etiketler" - -# @ woocommerce -#: admin/post-types/product.php:100 admin/post-types/product.php:632 -#: admin/post-types/product.php:904 -#: admin/post-types/writepanels/writepanel-product_data.php:1040 -#: admin/woocommerce-admin-init.php:463 -msgid "Featured" -msgstr "Nitelik" - -# @ woocommerce -#: admin/post-types/product.php:101 admin/woocommerce-admin-attributes.php:250 -#: admin/woocommerce-admin-attributes.php:308 -#: admin/woocommerce-admin-attributes.php:385 -msgid "Type" -msgstr "Tür" - -# @ woocommerce -#: admin/post-types/product.php:102 admin/post-types/shop_order.php:50 -#: templates/myaccount/my-orders.php:33 -msgid "Date" -msgstr "Tarih" - -# @ default -#: admin/post-types/product.php:151 -msgid "Edit this item" -msgstr "Öğeyi düzenle" - -# @ default -#: admin/post-types/product.php:152 -msgid "Edit this item inline" -msgstr "Satıriçi öğeyi düzenle" - -# @ default -#: admin/post-types/product.php:152 -msgid "Quick Edit" -msgstr "Hızlı Düzenle" - -# @ default -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore this item from the Trash" -msgstr "Bu öğeyi çöpten geri yükle" - -# @ default -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore" -msgstr "Geri Yükleme" - -# @ default -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Move this item to the Trash" -msgstr "Bu öğeyi çöpe taşı" - -# @ default -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Trash" -msgstr "Çöp" - -# @ default -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -msgid "Delete this item permanently" -msgstr "Bu öğeyi kalıcı olarak sil" - -# @ default -# @ woocommerce -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -#: admin/post-types/writepanels/writepanel-order_data.php:463 -msgid "Delete Permanently" -msgstr "Kalıcı Olarak Sil" - -# @ default -#: admin/post-types/product.php:165 -#, php-format -msgid "Preview “%s”" -msgstr "Önizleme “%s”" - -# @ default -#: admin/post-types/product.php:165 -msgid "Preview" -msgstr "Önizleme" - -# @ default -#: admin/post-types/product.php:167 -#, php-format -msgid "View “%s”" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:214 -msgid "Grouped" -msgstr "Gruplandır" - -# @ woocommerce -#: admin/post-types/product.php:216 -msgid "External/Affiliate" -msgstr "Harici/Ortaklık" - -# @ woocommerce -#: admin/post-types/product.php:220 admin/post-types/product.php:407 -#: admin/post-types/writepanels/variation-admin-html.php:168 -#: admin/post-types/writepanels/writepanel-product_data.php:52 -msgid "Virtual" -msgstr "Sanal" - -# @ woocommerce -#: admin/post-types/product.php:222 admin/post-types/product.php:403 -#: admin/post-types/writepanels/variation-admin-html.php:166 -#: admin/post-types/writepanels/writepanel-product_data.php:58 -msgid "Downloadable" -msgstr "İndirmeler" - -# @ woocommerce -#: admin/post-types/product.php:224 -msgid "Simple" -msgstr "Basit" - -# @ woocommerce -#: admin/post-types/product.php:228 admin/post-types/product.php:387 -msgid "Variable" -msgstr "Değişken" - -# @ woocommerce -#: admin/post-types/product.php:251 -msgid "Toggle featured" -msgstr "Özellikli Geçiş" - -# @ woocommerce -#: admin/post-types/product.php:253 -msgid "yes" -msgstr "evet" - -# @ woocommerce -#: admin/post-types/product.php:255 -msgid "no" -msgstr "hayır" - -# @ woocommerce -#: admin/post-types/product.php:373 -msgid "Show all product types" -msgstr "Tüm ürün çeşitlerini göster" - -# @ woocommerce -#: admin/post-types/product.php:381 -#: admin/post-types/writepanels/writepanel-product_data.php:39 -msgid "Grouped product" -msgstr "Gruplandırılmış ürün" - -# @ woocommerce -#: admin/post-types/product.php:383 -#: admin/post-types/writepanels/writepanel-product_data.php:40 -msgid "External/Affiliate product" -msgstr "Harici/Ortaklı ürün" - -# @ woocommerce -#: admin/post-types/product.php:385 -#: admin/post-types/writepanels/writepanel-product_data.php:38 -msgid "Simple product" -msgstr "Basit ürün" - -# @ woocommerce -#: admin/post-types/product.php:399 -msgid "Show all sub-types" -msgstr "Tüm alt türleri göster" - -# @ woocommerce -#: admin/post-types/product.php:520 -#, php-format -msgid "[%s with SKU of %s]" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:526 -#, php-format -msgid "[%s with ID of %d]" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:552 admin/post-types/product.php:783 -#: admin/post-types/writepanels/writepanels-init.php:46 -#: admin/settings/settings-init.php:518 -msgid "Product Data" -msgstr "Ürün Bilgisi" - -# @ woocommerce -#: admin/post-types/product.php:570 -msgid "Regular price" -msgstr "Normal fiyat" - -# @ woocommerce -#: admin/post-types/product.php:575 admin/post-types/product.php:811 -msgid "Sale" -msgstr "Satış" - -# @ woocommerce -#: admin/post-types/product.php:577 -msgid "Sale price" -msgstr "Satış fiyatı" - -# @ woocommerce -#: admin/post-types/product.php:599 admin/post-types/product.php:861 -msgid "L/W/H" -msgstr "U/G/Y" - -# @ woocommerce -#: admin/post-types/product.php:601 admin/post-types/product.php:877 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:85 -#: admin/post-types/writepanels/writepanel-product_data.php:286 -msgid "Length" -msgstr "Uzunluk" - -# @ woocommerce -#: admin/post-types/product.php:602 admin/post-types/product.php:878 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:86 -#: admin/post-types/writepanels/writepanel-product_data.php:287 -#: admin/woocommerce-admin-settings.php:795 -msgid "Width" -msgstr "Genişlik" - -# @ woocommerce -#: admin/post-types/product.php:603 admin/post-types/product.php:879 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:87 -#: admin/post-types/writepanels/writepanel-product_data.php:288 -#: admin/woocommerce-admin-settings.php:797 -msgid "Height" -msgstr "Yükseklik" - -# @ woocommerce -#: admin/post-types/product.php:613 admin/post-types/product.php:885 -msgid "Visibility" -msgstr "Görünürlük" - -# @ woocommerce -#: admin/post-types/product.php:618 admin/post-types/product.php:891 -msgid "Catalog & search" -msgstr "Katalog & arama" - -# @ woocommerce -#: admin/post-types/product.php:619 admin/post-types/product.php:892 -#: admin/post-types/writepanels/writepanel-product_data.php:1029 -#: admin/woocommerce-admin-content.php:46 -#: admin/woocommerce-admin-settings.php:181 -msgid "Catalog" -msgstr "Katalog" - -# @ woocommerce -#: admin/post-types/product.php:621 admin/post-types/product.php:894 -#: admin/post-types/writepanels/writepanel-product_data.php:1031 -msgid "Hidden" -msgstr "Gizli" - -# @ woocommerce -#: admin/post-types/product.php:636 admin/post-types/product.php:922 -msgid "In stock?" -msgstr "Stok?" - -# @ woocommerce -#: admin/post-types/product.php:657 admin/post-types/product.php:940 -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Manage stock?" -msgstr "Stok yönetimi?" - -# @ woocommerce -#: admin/post-types/product.php:661 admin/post-types/product.php:959 -#: admin/post-types/product.php:975 -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "Stock Qty" -msgstr "Stok Miktarı" - -# @ woocommerce -#: admin/post-types/product.php:792 admin/post-types/product.php:816 -#: admin/post-types/product.php:842 admin/post-types/product.php:866 -#: admin/post-types/product.php:890 admin/post-types/product.php:909 -#: admin/post-types/product.php:927 admin/post-types/product.php:945 -#: admin/post-types/product.php:964 -msgid "— No Change —" -msgstr "— Değişiklik Yok —" - -# @ woocommerce -#: admin/post-types/product.php:793 admin/post-types/product.php:817 -#: admin/post-types/product.php:843 admin/post-types/product.php:867 -#: admin/post-types/product.php:965 -msgid "Change to:" -msgstr "Aşağıdaki gibi değişir:" - -# @ woocommerce -#: admin/post-types/product.php:794 admin/post-types/product.php:818 -msgid "Increase by (fixed amount or %):" -msgstr "(Sabit tutar veya %) Artış:" - -# @ woocommerce -#: admin/post-types/product.php:795 admin/post-types/product.php:819 -msgid "Decrease by (fixed amount or %):" -msgstr "(Sabit tutar veya %) Düşük:" - -# @ woocommerce -#: admin/post-types/product.php:805 admin/post-types/product.php:830 -msgid "Enter price" -msgstr "Fiyat girin" - -# @ woocommerce -#: admin/post-types/product.php:820 -msgid "Decrease regular price by (fixed amount or %):" -msgstr "(Sabit tutar veya %) düzenli fiyat azaltma:" - -# @ woocommerce -#: admin/post-types/product.php:910 admin/post-types/product.php:946 -#: admin/post-types/shop_order.php:190 admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:260 -msgid "Yes" -msgstr "Evet" - -# @ woocommerce -#: admin/post-types/product.php:911 admin/post-types/product.php:947 -#: admin/post-types/shop_order.php:192 admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:260 -msgid "No" -msgstr "Hayır" - -# @ woocommerce -#: admin/post-types/product.php:1175 -msgid "Sort Products" -msgstr "Ürünleri Sırala" - -# @ woocommerce -#: admin/post-types/product.php:1214 -msgid "Insert into product" -msgstr "Ürün içine ekle" - -# @ woocommerce -#: admin/post-types/product.php:1215 -msgid "Uploaded to this product" -msgstr "Bu ürün yüklendi" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:25 -msgid "Code" -msgstr "Kod" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:26 -msgid "Coupon type" -msgstr "Kupon türü" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:27 -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Coupon amount" -msgstr "Kupon miktarı" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:29 -msgid "Product IDs" -msgstr "Ürün ID" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:30 -msgid "Usage / Limit" -msgstr "Kullanım / Limit" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:31 -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "Expiry date" -msgstr "Sok kullanma tarihi" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:56 -msgid "Edit coupon" -msgstr "Kuponu düzenle" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:114 -#, php-format -msgid "%s / %s" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:116 -#, php-format -msgid "%s / ∞" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:149 admin/post-types/shop_order.php:282 -msgid "Show all statuses" -msgstr "Tüm durumları göster" - -# @ woocommerce -#: admin/post-types/shop_order.php:45 -msgid "Billing" -msgstr "Fatura" - -# @ woocommerce -#: admin/post-types/shop_order.php:49 -msgid "Customer Notes" -msgstr "Müşteri Notları" - -# @ woocommerce -#: admin/post-types/shop_order.php:51 -#: admin/post-types/writepanels/writepanel-order_data.php:386 -#: admin/post-types/writepanels/writepanel-order_data.php:433 -msgid "Actions" -msgstr "Eylemler" - -# @ woocommerce -#: admin/post-types/shop_order.php:98 -msgid "made by" -msgstr "oluşturan" - -# @ woocommerce -#: admin/post-types/shop_order.php:114 admin/post-types/shop_order.php:123 -msgid "Via" -msgstr "Yöntem" - -# @ woocommerce -#: admin/post-types/shop_order.php:131 -msgid "Unpublished" -msgstr "Yayınlanmamış" - -# @ woocommerce -#: admin/post-types/shop_order.php:133 -msgid "Y/m/d g:i:s A" -msgstr "Y/a/g g:i:s A" - -# @ woocommerce -#: admin/post-types/shop_order.php:139 -#, php-format -msgid "%s ago" -msgstr "%s önce" - -# @ woocommerce -#: admin/post-types/shop_order.php:141 -msgid "Y/m/d" -msgstr "Y/a/g" - -# @ woocommerce -#: admin/post-types/shop_order.php:158 -#: admin/woocommerce-admin-dashboard.php:176 -msgid "Processing" -msgstr "İşleniyor" - -# @ woocommerce -#: admin/post-types/shop_order.php:165 -msgid "Complete" -msgstr "Tamamla" - -# @ woocommerce -#: admin/post-types/shop_order.php:301 admin/post-types/shop_order.php:326 -msgid "Show all customers" -msgstr "Tüm müşterileri göster" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:6 -msgid "Revoke Access" -msgstr "Erişimi Kaldır" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:7 -#: admin/post-types/writepanels/variation-admin-html.php:7 -#: admin/post-types/writepanels/writepanel-product_data.php:365 -#: admin/post-types/writepanels/writepanel-product_data.php:444 -#: admin/woocommerce-admin-init.php:452 -msgid "Click to toggle" -msgstr "Geçiş yapmak için tıklatın" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:9 -#, php-format -msgid "File %d: %s" -msgstr "Dosya %d: %s" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:9 -#, php-format -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:16 -msgid "Downloads Remaining" -msgstr "Kalan Yüklemeler" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:19 -#: admin/post-types/writepanels/variation-admin-html.php:143 -#: admin/post-types/writepanels/variation-admin-html.php:151 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Unlimited" -msgstr "Sınırsız" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:22 -msgid "Access Expires" -msgstr "Erişim Bitiş Tarihi" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:23 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Never" -msgstr "Süresiz" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:10 -msgid "Fee Name" -msgstr "Ödeme İsmi" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:17 -#: admin/post-types/writepanels/order-item-html.php:84 -msgid "Tax class" -msgstr "Vergi türü" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:9 -msgid "Product ID:" -msgstr "Ürün ID:" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:12 -msgid "Variation ID:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:15 -msgid "Product SKU:" -msgstr "Ürün SKU:" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:33 -msgid "Add meta" -msgstr "Meta ekle" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:6 -msgid "Tax Rate:" -msgstr "Vergi Oranı:" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:16 -#: admin/post-types/writepanels/writepanel-order_data.php:627 -msgid "Sales Tax:" -msgstr "Satış Vergisi:" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:20 -#: admin/post-types/writepanels/writepanel-order_data.php:635 -msgid "Shipping Tax:" -msgstr "Kargo Vergisi:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:6 -#: admin/post-types/writepanels/writepanel-product_data.php:364 -#: admin/post-types/writepanels/writepanel-product_data.php:443 -#: admin/woocommerce-admin-init.php:451 -msgid "Remove" -msgstr "Kaldır" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:20 -msgid "Any" -msgstr "Herhangi" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:46 -msgid "Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:57 -msgid "Stock Qty:" -msgstr "Stok Miktarı:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:57 -msgid "Enter a quantity to enable stock management at variation level, or leave blank to use the parent product's options." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:66 -msgid "Regular Price:" -msgstr "Normal Fiyat:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:67 -msgid "Variation price (required)" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:70 -msgid "Sale Price:" -msgstr "Satış Fiyatı" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:70 -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Schedule" -msgstr "Zamanlama" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:70 -msgid "Cancel schedule" -msgstr "Zamanlamayı iptal et" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:77 -msgid "Sale start date:" -msgstr "Satış başlangıç tarihi:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:78 -#: admin/post-types/writepanels/writepanel-product_data.php:136 -msgctxt "placeholder" -msgid "From…" -msgstr "From…" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:81 -msgid "Sale end date:" -msgstr "Satış bitiş tarihi:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:82 -#: admin/post-types/writepanels/writepanel-product_data.php:137 -msgctxt "placeholder" -msgid "To…" -msgstr "To…" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:90 -msgid "Enter a weight for this variation or leave blank to use the parent product weight." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:98 -msgid "Dimensions (L×W×H)" -msgstr "Boyutlar (U×G×Y)" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:109 -msgid "Shipping class:" -msgstr "Kargo türü:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:124 -msgid "Tax class:" -msgstr "Vergi türü:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:135 -msgid "File paths:" -msgstr "Dosya yolları:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:135 -msgid "Enter one or more File Paths, one per line, to make this variation a downloadable product, or leave blank." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:136 -#: admin/post-types/writepanels/writepanel-product_data.php:153 -msgid "File paths/URLs, one per line" -msgstr "Dosya yolları/URL, her satırda bir tane" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:137 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Choose a file" -msgstr "Dosya seç" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:137 -msgid "Upload" -msgstr "Yükle" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:137 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Insert file URL" -msgstr "Dosya URL Ekle" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:142 -msgid "Download Limit:" -msgstr "İndirme Limiti:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:142 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Leave blank for unlimited re-downloads." -msgstr "Sınırsız yeniden indirme için boş bırakın." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:150 -msgid "Download Expiry:" -msgstr "İndirme Bitişi:" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:150 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Enter the number of days before a download link expires, or leave blank." -msgstr "İndirme bağlantısı süresi dolmadan önceki gün sayısını girin veya boş bırakın." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:164 -msgid "Enabled" -msgstr "Etkin" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:166 -msgid "Enable this option if access is given to a downloadable file upon purchase of a product" -msgstr "Bir ürünü satın alma üzerine dosyaya erişim izni verilecekse bu seçeneği etkinleştirin" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:168 -msgid "Enable this option if a product is not shipped or there is no shipping cost" -msgstr "Eğer bir ürün kargolanmıyacaksa veya kargo maliyeti yoksa bu seçeneği etkinleştirin." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Coupon description" -msgstr "Kupon açıklaması" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Optionally enter a description for this coupon for your reference." -msgstr "Referansınız için bu kupona isteğe bağlı bir açıklama girin." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:42 -msgid "Discount type" -msgstr "İndirim türü" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Enter an amount or percentage e.g. 2.99 or 15%" -msgstr "Bir tutar veya yüzde girin ör. 2,99 veya % 15" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "Enable free shipping" -msgstr "Ücretsiz kargo etkin" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -#, php-format -msgid "Check this box if the coupon grants free shipping. The free shipping method must be enabled with the \"must use coupon\" setting checked." -msgstr "Kupon ücretsiz kargo ekleyecekse bu kutuyu işaretleyin. Ücretsiz kargo yöntemi mutlaka etkin olmalı ve \"kupon kullanma\" ayarı yapılmalıdır." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "Individual use" -msgstr "Bireysel kullanım" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "Check this box if the coupon cannot be used in conjunction with other coupons." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "Apply before tax" -msgstr "Vergiyi önce uygula" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "Check this box if the coupon should be applied before calculating cart tax." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "Exclude sale items" -msgstr "Satılık ürünler hariç" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "Check this box if the coupon should not apply to items on sale. Per-item coupons will only work if the item is not on sale. Per-cart coupons will only work if there are no sale items in the cart." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "Minimum amount" -msgstr "En düşük tutar" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "No minimum" -msgstr "En düşük tutar yok" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:75 -#: admin/post-types/writepanels/writepanel-order_data.php:400 -#: admin/post-types/writepanels/writepanel-product_data.php:504 -#: admin/post-types/writepanels/writepanel-product_data.php:521 -#: admin/woocommerce-admin-reports.php:1229 -msgid "Search for a product…" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:89 -msgid "Products which need to be in the cart to use this coupon or, for \"Product Discounts\", which products are discounted." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:94 -msgid "Exclude products" -msgstr "Ürünler hariç" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:95 -msgid "Search for a product…" -msgstr "Bir ürün için ara..." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:109 -msgid "Products which must not be in the cart to use this coupon or, for \"Product Discounts\", which products are not discounted." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:117 -msgid "Any category" -msgstr "Herhangi bir kategori" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:125 -msgid "A product must be in this category for the coupon to remain valid or, for \"Product Discounts\", products in these categories will be discounted." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:130 -msgid "Exclude categories" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:131 -msgid "No categories" -msgstr "Kategori yok" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:139 -msgid "Product must not be in this category for the coupon to remain valid or, for \"Product Discounts\", products in these categories will not be discounted." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "Customer emails" -msgstr "Müşteri e-postaları" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "Any customer" -msgstr "Herhangi bir müşteri" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "Comma separate email addresses to restrict this coupon to specific billing and user emails." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "Usage limit" -msgstr "Kullanım sınırı" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "Sınırsız kullanım" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "How many times this coupon can be used before it is void." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgctxt "placeholder" -msgid "Never expire" -msgstr "Hiçbir zaman bitmez" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "The date this coupon will expire, YYYY-MM-DD." -msgstr "Bu kupon YYYY-MM-DD tarihinde sona erecek." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:195 -msgid "Coupon code already exists - customers will use the latest coupon with this code." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:62 -msgid "Order number" -msgstr "Sipariş numarası" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:67 -msgid "Customer IP:" -msgstr "Müşteri IP:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:74 -msgid "General Details" -msgstr "Genel Bilgiler" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:76 -msgid "Order status:" -msgstr "Sipariş durumu:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:86 -msgid "Order Date:" -msgstr "Sipariş Tarihi:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:87 -msgid "h" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#: admin/settings/settings-init.php:577 -msgid "m" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:91 -msgid "Customer:" -msgstr "Müşteri:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:131 -msgid "Customer Note:" -msgstr "Müşteri Notu:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:132 -msgid "Customer's notes about the order" -msgstr "Sipariş ile ilgili müşteri notları" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:140 -msgid "Billing Details" -msgstr "Fatura Detayları" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:152 -#: admin/post-types/writepanels/writepanel-order_data.php:242 -#: admin/woocommerce-admin-users.php:155 admin/woocommerce-admin-users.php:204 -msgid "Company" -msgstr "Şirket" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:156 -#: admin/post-types/writepanels/writepanel-order_data.php:246 -#: admin/woocommerce-admin-users.php:159 admin/woocommerce-admin-users.php:208 -msgid "Address 1" -msgstr "Adres 1" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:160 -#: admin/post-types/writepanels/writepanel-order_data.php:250 -#: admin/woocommerce-admin-users.php:163 admin/woocommerce-admin-users.php:212 -msgid "Address 2" -msgstr "Adres 2" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:164 -#: admin/post-types/writepanels/writepanel-order_data.php:254 -#: admin/settings/settings-tax-rates.php:42 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-users.php:167 admin/woocommerce-admin-users.php:216 -msgid "City" -msgstr "Şehir" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:178 -#: admin/post-types/writepanels/writepanel-order_data.php:268 -#: admin/woocommerce-admin-users.php:175 admin/woocommerce-admin-users.php:224 -msgid "State/County" -msgstr "Devlet/Eyalet" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:195 -msgid "No billing address set." -msgstr "Fatura adresi ayarlanmadı." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:208 -msgid "Load billing address" -msgstr "Fatura adresi ekleyin" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:230 -msgid "Shipping Details" -msgstr "Kargo Bilgileri" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "No shipping address set." -msgstr "Kargo adresi ayarlanmadı." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Load shipping address" -msgstr "Kargo adresi ekleyin" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Copy from billing" -msgstr "Faturadan kopyala" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:339 -msgid "Item" -msgstr "Ürün" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#: admin/post-types/writepanels/writepanel-product_data.php:191 -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Class" -msgstr "Vergi Türü" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:344 -msgid "Tax class for the line item" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:349 -msgid "Line subtotals are before pre-tax discounts, totals are after." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:388 -msgid "Delete Lines" -msgstr "Satırları Sil" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:390 -msgid "Stock Actions" -msgstr "Stok İşlemleri" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:391 -msgid "Reduce Line Stock" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:392 -msgid "Increase Line Stock" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:396 -#: admin/post-types/writepanels/writepanel-order_data.php:456 -msgid "Apply" -msgstr "Uygula" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:402 -msgid "Add item(s)" -msgstr "Ürün(ler) ekle" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:403 -msgid "Add fee" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:434 -msgid "Resend order emails" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:465 -msgid "Move to Trash" -msgstr "Çöpe Taşı" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save Order" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save/update the order" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:495 -msgid "Discounts" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:499 -msgid "Discounts before tax - calculated by comparing subtotals to totals." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:507 -msgid "Discounts after tax - user defined." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:540 -msgid "Label:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:541 -msgid "The shipping title the customer sees" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:548 -msgid "Cost:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:556 -msgid "Method:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:578 -#: admin/post-types/writepanels/writepanel-order_data.php:580 -#: admin/post-types/writepanels/writepanel-order_data.php:679 -#: admin/post-types/writepanels/writepanel-order_data.php:681 -msgid "Other" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:594 -msgid "Tax Rows" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:619 -msgid "+ Add tax row" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:619 -msgid "These rows contain taxes for this order. This allows you to display multiple or compound taxes rather than a single total." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:623 -msgid "Tax Totals" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:627 -msgid "Total tax for line items + fees." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:649 -#: admin/post-types/writepanels/writepanels-init.php:70 -msgid "Order Totals" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:661 -msgid "Payment Method:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:692 -msgid "Calc taxes" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:694 -msgid "Calc totals" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:57 -msgid "Choose a downloadable product…" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:87 -msgid "Grant Access" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:125 -msgid "Could not grant access - the user may already have permission for this file or billing email is not set. Ensure the billing email is set, and the order has been saved." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:148 -msgid "Are you sure you want to revoke access to this download?" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -#, php-format -msgid "added %s ago" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:50 -msgid "There are no notes for this order yet." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "Add note" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "Add a note for your reference, or add a customer note (the user will be notified)." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:63 -msgid "Private note" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:65 -#: admin/post-types/writepanels/writepanel-product_data.php:482 -msgid "Add" -msgstr "Ekle" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations for variable products are defined here." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:65 -msgid "Before adding variations, add and save some attributes on the Attributes tab." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:67 -msgid "Learn more" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Close all" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Expand all" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:75 -msgid "Bulk edit:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:77 -msgid "Toggle "Enabled"" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:78 -msgid "Toggle "Downloadable"" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:79 -msgid "Toggle "Virtual"" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:80 -msgid "Delete all variations" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:81 -msgid "Prices" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:82 -msgid "Sale prices" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:88 -msgid "File Path" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:89 -msgid "Download limit" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:90 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Download Expiry" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:93 -msgid "Go" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:195 -msgid "Link all variations" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:197 -msgid "Default selections:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:210 -msgid "No default" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:293 -msgid "Are you sure you want to link all variations? This will create a new variation for each and every possible combination of variation attributes (max 50 per run)." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:310 -msgid "variation added" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:312 -msgid "variations added" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:314 -msgid "No variations added" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:337 -msgid "Are you sure you want to remove this variation?" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:393 -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:396 -msgid "Last warning, are you sure?" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:433 -msgid "Enter a value" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:511 -#: admin/woocommerce-admin-taxonomies.php:62 -#: admin/woocommerce-admin-taxonomies.php:154 -msgid "Choose an image" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:513 -msgid "Set variation image" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:557 -msgid "Variable product" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:43 -msgid "Product Type" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:53 -msgid "Virtual products are intangible and aren't shipped." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:59 -msgid "Downloadable products give access to a file upon purchase." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:77 -#: admin/woocommerce-admin-content.php:44 -#: admin/woocommerce-admin-settings.php:180 -msgid "General" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:79 -#: admin/woocommerce-admin-content.php:47 -#: admin/woocommerce-admin-settings.php:183 -msgid "Inventory" -msgstr "Envanter - SKU" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:83 -msgid "Linked Products" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:85 -#: admin/woocommerce-admin-attributes.php:298 -#: admin/woocommerce-admin-init.php:66 -msgid "Attributes" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:87 -msgid "Advanced" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "Stock Keeping Unit" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "SKU refers to a Stock-keeping unit, a unique identifier for each distinct product and service that can be purchased." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Product URL" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Enter the external URL to the product." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "Button text" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgctxt "placeholder" -msgid "Buy product" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "This text will be shown on the button linking to the external product." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:119 -msgid "Regular Price" -msgstr "Normal Fiyat" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Sale Price" -msgstr "Satış Fiyatı" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:135 -msgid "Sale Price Dates" -msgstr "Satış Fiyatı Tarihleri" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:152 -msgid "File paths (one per line)" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Download Limit" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:180 -msgid "Shipping only" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Enable stock management at product level" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "Stock quantity. If this is a variable product this value will be used to control stock for all variations, unless you define stock at variation level." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:230 -msgid "Stock status" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:233 -msgid "Controls whether or not the product is listed as \"in stock\" or \"out of stock\" on the frontend." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:240 -msgid "Allow Backorders?" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:241 -msgid "Do not allow" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:242 -msgid "Allow, but notify customer" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:243 -msgid "Allow" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:244 -msgid "If managing stock, this controls whether or not backorders are allowed for this product and variations. If enabled, stock quantity can go below 0." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "Sold Individually" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "Enable this to only allow one of this item to be bought in a single order" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:273 -msgid "Weight in decimal form" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:290 -msgid "LxWxH in decimal form" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:311 -msgid "No shipping class" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "Shipping class" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "Shipping classes are used by certain shipping methods to group similar products." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:380 -#: admin/post-types/writepanels/writepanel-product_data.php:457 -#: admin/woocommerce-admin-init.php:453 -msgid "Value(s)" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:382 -msgid "Select terms" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:394 -msgid "Select all" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:394 -msgid "Select none" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:396 -msgid "Add new" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:409 -msgid "Pipe separate terms" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:416 -#: admin/post-types/writepanels/writepanel-product_data.php:463 -#: admin/woocommerce-admin-init.php:455 -msgid "Visible on the product page" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:422 -#: admin/post-types/writepanels/writepanel-product_data.php:469 -#: admin/woocommerce-admin-init.php:456 -msgid "Used for variations" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:458 -#: admin/woocommerce-admin-init.php:454 -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:484 -msgid "Custom product attribute" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:496 -msgid "Save attributes" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:503 -msgid "Up-Sells" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:518 -msgid "Up-sells are products which you recommend instead of the currently viewed product, for example, products that are more profitable or better quality or more expensive." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:520 -msgid "Cross-Sells" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:535 -msgid "Cross-sells are products which you promote in the cart, based on the current product." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:545 -msgid "Choose a grouped product…" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:571 -msgid "Grouping" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:571 -msgid "Set this option to make this product part of a grouped product." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:591 -msgid "Purchase Note" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:591 -msgid "Enter an optional note to send the customer after purchase." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:598 -msgid "Menu order" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:598 -msgid "Custom ordering position." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:606 -msgid "Enable reviews" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:695 -msgid "Product SKU must be unique." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1028 -msgid "Catalog/search" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1035 -msgid "Catalog visibility:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1051 -msgid "Define the loops this product should be visible in. The product will still be accessible directly." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1057 -msgid "Enable this option to feature this product." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1059 -msgid "Featured Product" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1063 -msgid "OK" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -msgid "Delete image" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -#: admin/woocommerce-admin-attributes.php:322 -msgid "Delete" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:53 -msgid "Add product gallery images" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:79 -msgid "Add Images to Product Gallery" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:81 -msgid "Add to gallery" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:47 -msgid "Product Gallery" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:55 -msgid "Product Short Description" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:68 -msgid "Order Data" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "Order Items" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "Note: if you edit quantities or remove items from the order you will need to manually update stock levels." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "Downloadable Product Permissions" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "Note: Permissions for order items will automatically be granted when the order status changes to processing/completed." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:73 -msgid "Order Actions" -msgstr "Sipariş İşlemleri" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:81 -msgid "Coupon Data" -msgstr "Kupon Bilgisi" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:101 -msgid "Product name" -msgstr "Ürün adı" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:185 -msgid "Allow reviews." -msgstr "Değerlendirmelere izin ver." - -# @ default -#: admin/post-types/writepanels/writepanels-init.php:186 -#, php-format -msgid "Allow trackbacks and pingbacks on this page." -msgstr "" - -# @ default -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:23 -msgid "Styles" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:43 -msgid "Primary" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:43 -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:44 -msgid "Secondary" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:44 -msgid "Buttons and tabs" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:45 -msgid "Highlight" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:45 -msgid "Price labels and Sale Flashes" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:46 -msgid "Content" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:46 -msgid "Your themes page background - used for tab active states" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:47 -msgid "Subtext" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:47 -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:51 -msgid "To edit colours woocommerce/assets/css/woocommerce-base.less and woocommerce.css need to be writable. See the Codex for more information." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:18 -msgid "Localisation" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:19 -#, php-format -msgid "Use informal localisation for %s" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:33 -msgid "General Options" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:36 -msgid "Base Location" -msgstr "Konumunuz" - -# @ woocommerce -#: admin/settings/settings-init.php:37 -msgid "This is the base location for your business. Tax rates will be based on this country." -msgstr "İşyerinizin bulunduğu ülkeyi seçin. Vergi oranlarını bu ülkeye göre ayarlayın." - -# @ woocommerce -#: admin/settings/settings-init.php:46 -msgid "Currency" -msgstr "Para Birimi" - -# @ woocommerce -#: admin/settings/settings-init.php:47 -msgid "This controls what currency prices are listed at in the catalog and which currency gateways will take payments in." -msgstr "Ödemeleri hangi para birimiyle alacağınızı belirtir." - -# @ woocommerce -#: admin/settings/settings-init.php:58 -msgid "Allowed Countries" -msgstr "İzinverilen Ülkeler" - -# @ woocommerce -#: admin/settings/settings-init.php:59 -msgid "These are countries that you are willing to ship to." -msgstr "Burada kargo göndereceğiniz ülkeleri seçin." - -# @ woocommerce -#: admin/settings/settings-init.php:67 -msgid "All Countries" -msgstr "Bütün Ülkeler" - -# @ woocommerce -#: admin/settings/settings-init.php:84 -msgid "Store Notice" -msgstr "Mağaza Duyurusu" - -# @ woocommerce -#: admin/settings/settings-init.php:85 -msgid "Enable site-wide store notice text" -msgstr "Site genelindeki mağaza duyuru metnini etkinleştir" - -# @ woocommerce -#: admin/settings/settings-init.php:92 -msgid "Store Notice Text" -msgstr "Mağaza Duyuru Metni" - -# @ woocommerce -#: admin/settings/settings-init.php:102 -msgid "Cart, Checkout and Accounts" -msgstr "Alışveriş Sepeti, Ödemeler ve Hesaplar" - -# @ woocommerce -#: admin/settings/settings-init.php:106 -msgid "Enable the use of coupons" -msgstr "Kuponların kullanımını etkinleştir" - -# @ woocommerce -#: admin/settings/settings-init.php:110 -msgid "Coupons can be applied from the cart and checkout pages." -msgstr "Kuponlar sepette ve ödeme sayfalarında kullanılır." - -# @ woocommerce -#: admin/settings/settings-init.php:115 -msgid "Enable guest checkout (no account required)" -msgstr "Misafir alışverişini etkinleştir (Üyelik Gerektirmez)" - -# @ woocommerce -#: admin/settings/settings-init.php:123 -msgid "Enable customer note field on checkout" -msgstr "Güvenli ödemeye zorla" - -# @ woocommerce -#: admin/settings/settings-init.php:131 -msgid "Force secure checkout" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:137 -msgid "Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -msgstr "SSL (HTTPS) üzerinden alışveriş (SSL Sertifikası gerektirir)." - -# @ woocommerce -#: admin/settings/settings-init.php:141 -msgid "Un-force HTTPS when leaving the checkout" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:150 -msgid "Registration" -msgstr "Kayıt" - -# @ woocommerce -#: admin/settings/settings-init.php:151 -msgid "Allow registration on the checkout page" -msgstr "Ödeme sayfasında üye olmaya izin ver." - -# @ woocommerce -#: admin/settings/settings-init.php:159 -msgid "Allow registration on the \"My Account\" page" -msgstr "\"Hesabım\" sayfasından kayıt olmaya izin ver" - -# @ woocommerce -#: admin/settings/settings-init.php:167 -msgid "Register using the email address for the username" -msgstr "Kullanıcı adı yerine e-posta adresini kullanılsın" - -# @ woocommerce -#: admin/settings/settings-init.php:175 -msgid "Customer Accounts" -msgstr "Müşteri Hesapları" - -# @ woocommerce -#: admin/settings/settings-init.php:176 -msgid "Prevent customers from accessing WordPress admin" -msgstr "Müşteriler WordPress paneline erişebilsin" - -# @ woocommerce -#: admin/settings/settings-init.php:184 -msgid "Clear cart when logging out" -msgstr "Çıkış yaparken sepet temizlensin" - -# @ woocommerce -#: admin/settings/settings-init.php:192 -msgid "Allow customers to repurchase orders from their account page" -msgstr "Müşteriler hesabım sayfasından aynı siparişi verebilsin" - -# @ woocommerce -#: admin/settings/settings-init.php:201 -msgid "Styles and Scripts" -msgstr "Stiller ve Komut Dosyaları" - -# @ woocommerce -#: admin/settings/settings-init.php:204 -msgid "Styling" -msgstr "Stiller" - -# @ woocommerce -#: admin/settings/settings-init.php:205 -msgid "Enable WooCommerce CSS" -msgstr "WooCommerce CSS Etkinleştir" - -# @ woocommerce -#: admin/settings/settings-init.php:216 -msgid "Scripts" -msgstr "Komut Dosyaları" - -# @ woocommerce -#: admin/settings/settings-init.php:217 -msgid "Enable Lightbox" -msgstr "Lightbox Etkinleştir" - -# @ woocommerce -#: admin/settings/settings-init.php:220 -msgid "Include WooCommerce's lightbox. Product gallery images and the add review form will open in a lightbox." -msgstr "WooCommerce'de lightbox içermektedir. Ürün galerisi resimleri ve yorum ekleme formu lightbox ile açılacaktır." - -# @ woocommerce -#: admin/settings/settings-init.php:226 -msgid "Enable enhanced country select boxes" -msgstr "Gelişmiş ülke arama kutusunu etkinleştir" - -# @ woocommerce -#: admin/settings/settings-init.php:231 -msgid "This will enable a script allowing the country fields to be searchable." -msgstr "" -"Bu ülkelerin aranabilir olmasını sağlayan bir komut dosyası sağlayacaktır." - -# @ woocommerce -#: admin/settings/settings-init.php:236 -msgid "Downloadable Products" -msgstr "İndirilebilir Ürünler" - -# @ woocommerce -#: admin/settings/settings-init.php:239 -msgid "File Download Method" -msgstr "Dosya İndirme Yöntemi" - -# @ woocommerce -#: admin/settings/settings-init.php:240 -msgid "Forcing downloads will keep URLs hidden, but some servers may serve large files unreliably. If supported, X-Accel-Redirect/ X-Sendfile can be used to serve downloads instead (server requires mod_xsendfile)." -msgstr "URL gizleyerek indirmeyi sağlar, ancak bazı sunucularda büyük dosyalara güvenilmez. Eğer sunucu destekliyorsa X-Accel-Redirect/ X-Sendfile indirme hizmeti yerine kullanılabilir (sunucu gereksinimi mod_xsendfile)." - -# @ woocommerce -#: admin/settings/settings-init.php:248 -msgid "Force Downloads" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:249 -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:250 -msgid "Redirect only" -msgstr "Sadece yönlendir" - -# @ woocommerce -#: admin/settings/settings-init.php:255 -msgid "Access Restriction" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:256 -msgid "Downloads require login" -msgstr "İndirmeler için giriş yapılmalı" - -# @ woocommerce -#: admin/settings/settings-init.php:260 -msgid "This setting does not apply to guest purchases." -msgstr "Bu özellik misafir alışverişleri için geçerli değildir." - -# @ woocommerce -#: admin/settings/settings-init.php:265 -msgid "Grant access to downloadable products after payment" -msgstr "İndirmelere ödeme yapıldıktan sonra erişim izin verilsin." - -# @ woocommerce -#: admin/settings/settings-init.php:269 -msgid "Enable this option to grant access to downloads when orders are \"processing\", rather than \"completed\"." -msgstr "Siparişler \"tamamlandı\" yerine \"işleniyor\" olduğunda bile indirmelere izin verilir." - -# @ woocommerce -#: admin/settings/settings-init.php:285 -msgid "Note: The shop page has children - child pages will not work if you enable this option." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:290 -msgid "Page Setup" -msgstr "Sayfa Ayarları" - -# @ woocommerce -#: admin/settings/settings-init.php:292 -#, php-format -msgid "Set up core WooCommerce pages here, for example the base page. The base page can also be used in your %sproduct permalinks%s." -msgstr "Buradaki WooCommerce varsayılan sayfaları, kendi sayfalarınızla değiştirebilirsiniz. Bu sayfalarda %skalıcı bağlantı ayarları%s kullanılır." - -# @ woocommerce -#: admin/settings/settings-init.php:297 -msgid "Shop Base Page" -msgstr "Mağaza Sayfası" - -# @ woocommerce -#: admin/settings/settings-init.php:298 -msgid "This sets the base page of your shop - this is where your product archive will be." -msgstr "Mağazanızın varsayılan sayfası - burada ürünleriniz listelenecektir." - -# @ woocommerce -#: admin/settings/settings-init.php:308 -msgid "Base Page Title" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:309 -msgid "This title to show on the shop base page. Leave blank to use the page title." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:318 -msgid "Terms Page ID" -msgstr "Koşullar Sayfa ID" - -# @ woocommerce -#: admin/settings/settings-init.php:319 -msgid "If you define a \"Terms\" page the customer will be asked if they accept them when checking out." -msgstr "\"Koşullar\" sayfası tanımlarsanız müşterilerinizin bunu kabul etmesi gerekir." - -# @ woocommerce -#: admin/settings/settings-init.php:330 -msgid "Shop Pages" -msgstr "Mağaza Sayfaları" - -# @ woocommerce -#: admin/settings/settings-init.php:330 -msgid "The following pages need selecting so that WooCommerce knows where they are. These pages should have been created upon installation of the plugin, if not you will need to create them." -msgstr "Sayfaların yerlerini WooCommerce seçmiştir. Bu sayfalar eklenti kurulumu üzerine oluşturulmuş olmalıdır, değilse bunları oluşturmanız gerekir." - -# @ woocommerce -#: admin/settings/settings-init.php:333 -msgid "Cart Page" -msgstr "Alışveriş Sepeti Sayfası" - -# @ woocommerce -#: admin/settings/settings-init.php:334 -msgid "Page contents: [woocommerce_cart]" -msgstr "Sayfa içeriği: [woocommerce_cart]" - -# @ woocommerce -#: admin/settings/settings-init.php:344 -msgid "Checkout Page" -msgstr "Sipariş Sayfası" - -# @ woocommerce -#: admin/settings/settings-init.php:345 -msgid "Page contents: [woocommerce_checkout]" -msgstr "Sayfa içeriği: [woocommerce_checkout]" - -# @ woocommerce -#: admin/settings/settings-init.php:355 -msgid "Pay Page" -msgstr "Ödeme Sayfası" - -# @ woocommerce -#: admin/settings/settings-init.php:356 -msgid "Page contents: [woocommerce_pay] Parent: \"Checkout\"" -msgstr "Sayfa içeriği: [woocommerce_pay] Kaynak: \"Sipariş Ver\"" - -# @ woocommerce -#: admin/settings/settings-init.php:366 -msgid "Thanks Page" -msgstr "Teşekkürler Sayfası" - -# @ woocommerce -#: admin/settings/settings-init.php:367 -msgid "Page contents: [woocommerce_thankyou] Parent: \"Checkout\"" -msgstr "Sayfa içeriği: [woocommerce_thankyou] Kaynak: \"Sipariş Ver\"" - -# @ woocommerce -#: admin/settings/settings-init.php:377 -msgid "My Account Page" -msgstr "Hesabım Sayfası" - -# @ woocommerce -#: admin/settings/settings-init.php:378 -msgid "Page contents: [woocommerce_my_account]" -msgstr "Sayfa içeriği: [woocommerce_my_account]" - -# @ woocommerce -#: admin/settings/settings-init.php:388 -msgid "Edit Address Page" -msgstr "Adres Düzenleme Sayfası" - -# @ woocommerce -#: admin/settings/settings-init.php:389 -msgid "Page contents: [woocommerce_edit_address] Parent: \"My Account\"" -msgstr "Sayfa içeriği: [woocommerce_edit_address] Kaynak: \"Hesabım\"" - -# @ woocommerce -#: admin/settings/settings-init.php:399 -msgid "View Order Page" -msgstr "Sipariş Bilgileri Sayfası" - -# @ woocommerce -#: admin/settings/settings-init.php:400 -msgid "Page contents: [woocommerce_view_order] Parent: \"My Account\"" -msgstr "Sayfa içeriği: [woocommerce_view_order] Kaynak: \"Hesabım\"" - -# @ woocommerce -#: admin/settings/settings-init.php:410 -msgid "Change Password Page" -msgstr "Şifre Değiştirme Sayfası" - -# @ woocommerce -#: admin/settings/settings-init.php:411 -msgid "Page contents: [woocommerce_change_password] Parent: \"My Account\"" -msgstr "Sayfa içeriği: [woocommerce_change_password] Kaynak: \"Hesabım\"" - -# @ woocommerce -#: admin/settings/settings-init.php:421 -msgid "Logout Page" -msgstr "Çıkış Sayfası" - -# @ woocommerce -#: admin/settings/settings-init.php:422 -msgid "Parent: \"My Account\"" -msgstr "Kaynak: \"Hesabım\"" - -# @ woocommerce -#: admin/settings/settings-init.php:432 -msgid "Lost Password Page" -msgstr "Kayıp Şifre Sayfası" - -# @ woocommerce -#: admin/settings/settings-init.php:433 -msgid "Page contents: [woocommerce_lost_password] Parent: \"My Account\"" -msgstr "Sayfa içeriği: [woocommerce_lost_password] Kaynak: \"Hesabım\"" - -# @ woocommerce -#: admin/settings/settings-init.php:449 -msgid "Catalog Options" -msgstr "Katalog Ayarları" - -# @ woocommerce -#: admin/settings/settings-init.php:452 -msgid "Default Product Sorting" -msgstr "Varsayılan Ürün Sıralama" - -# @ woocommerce -#: admin/settings/settings-init.php:453 -msgid "This controls the default sort order of the catalog." -msgstr "Bu kataloğun varsayılan sıralama düzenini belirler." - -# @ woocommerce -#: admin/settings/settings-init.php:459 -msgid "Default sorting (custom ordering + name)" -msgstr "Varsayılan sıralama (özel sipariş + adı)" - -# @ woocommerce -#: admin/settings/settings-init.php:460 -msgid "Popularity (sales)" -msgstr "Popüler (satış)" - -# @ woocommerce -#: admin/settings/settings-init.php:461 -msgid "Average Rating" -msgstr "Ortalama Puan" - -# @ woocommerce -#: admin/settings/settings-init.php:463 -msgid "Sort by price (asc)" -msgstr "Fiyata göre sırala (artan)" - -# @ woocommerce -#: admin/settings/settings-init.php:464 -msgid "Sort by price (desc)" -msgstr "Fiyata göre sırala (azalan)" - -# @ woocommerce -#: admin/settings/settings-init.php:470 -msgid "Shop Page Display" -msgstr "Alışveriş Sayfası Görünümü" - -# @ woocommerce -#: admin/settings/settings-init.php:471 -msgid "This controls what is shown on the product archive." -msgstr "Ürün arşivi görünümünün nasıl olacağını seçin." - -# @ woocommerce -#: admin/settings/settings-init.php:477 admin/settings/settings-init.php:492 -msgid "Show products" -msgstr "Ürünleri göster" - -# @ woocommerce -#: admin/settings/settings-init.php:478 admin/settings/settings-init.php:493 -msgid "Show subcategories" -msgstr "Alt kategorileri göster" - -# @ woocommerce -#: admin/settings/settings-init.php:479 admin/settings/settings-init.php:494 -msgid "Show both" -msgstr "İkisinide göster" - -# @ woocommerce -#: admin/settings/settings-init.php:485 -msgid "Default Category Display" -msgstr "Varsayılan Kategori Görünümü" - -# @ woocommerce -#: admin/settings/settings-init.php:486 -msgid "This controls what is shown on category archives." -msgstr "Kategori arşivi görünümünün nasıl olacağını seçin." - -# @ woocommerce -#: admin/settings/settings-init.php:501 -msgid "Redirect to the cart page after successful addition" -msgstr "Sepete ekledikten sonra yönlendir" - -# @ woocommerce -#: admin/settings/settings-init.php:509 -msgid "Enable AJAX add to cart buttons on archives" -msgstr "Sepete ekleme butonunda AJAX etkin olsun." - -# @ woocommerce -#: admin/settings/settings-init.php:518 -msgid "The following options affect the fields available on the edit product page." -msgstr "Aşağıdaki seçenekler ürün ekleme sayfasında kullanılan alanları etkiler." - -# @ woocommerce -#: admin/settings/settings-init.php:521 -msgid "Product Fields" -msgstr "Ürün Özellikleri" - -# @ woocommerce -#: admin/settings/settings-init.php:522 -msgid "Enable the SKU field for products" -msgstr "Ürünler için SKU etkinleştirin" - -# @ woocommerce -#: admin/settings/settings-init.php:530 -msgid "Enable the weight field for products (some shipping methods may require this)" -msgstr "Ürünler için ağırlık alanını etkinleştir. (bunun için bazı kargo yöntemleri gerekebilir)" - -# @ woocommerce -#: admin/settings/settings-init.php:538 -msgid "Enable the dimension fields for products (some shipping methods may require this)" -msgstr "Ürünler için boyut alanını etkinleştir. (bunun için bazı kargo yöntemleri gerekebilir)" - -# @ woocommerce -#: admin/settings/settings-init.php:546 -msgid "Show weight and dimension values on the Additional Information tab" -msgstr "Ağırlık ve boyut alanlarını Ek bilgi sekmesinde göster" - -# @ woocommerce -#: admin/settings/settings-init.php:554 -msgid "Weight Unit" -msgstr "Ağırlık Birimi" - -# @ woocommerce -#: admin/settings/settings-init.php:555 -msgid "This controls what unit you will define weights in." -msgstr "Burada ağırlık birimini seçebilirsiniz." - -# @ woocommerce -#: admin/settings/settings-init.php:561 -msgid "kg" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:562 -msgid "g" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:563 -msgid "lbs" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:564 -msgid "oz" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:570 -msgid "Dimensions Unit" -msgstr "Uzunluk Birimi" - -# @ woocommerce -#: admin/settings/settings-init.php:571 -msgid "This controls what unit you will define lengths in." -msgstr "Burada uzunluk birimini seçebilirsiniz." - -# @ woocommerce -#: admin/settings/settings-init.php:578 -msgid "cm" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:579 -msgid "mm" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:580 -msgid "in" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:581 -msgid "yd" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:587 -msgid "Product Ratings" -msgstr "Ürün Puanları" - -# @ woocommerce -#: admin/settings/settings-init.php:588 -msgid "Enable ratings on reviews" -msgstr "Yorumlar için oylamayı etkinleştir" - -# @ woocommerce -#: admin/settings/settings-init.php:597 -msgid "Ratings are required to leave a review" -msgstr "Oy verebilmek için yorum bırakmak gerekli." - -# @ woocommerce -#: admin/settings/settings-init.php:606 -msgid "Show \"verified owner\" label for customer reviews" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:616 -msgid "Pricing Options" -msgstr "Fiyat Seçenekleri" - -# @ woocommerce -#: admin/settings/settings-init.php:616 -msgid "The following options affect how prices are displayed on the frontend." -msgstr "Aşağıdaki seçeneklerden fiyatların nasıl görüntüleneceğini seçin." - -# @ woocommerce -#: admin/settings/settings-init.php:619 -msgid "Currency Position" -msgstr "Para Birimi Konumu" - -# @ woocommerce -#: admin/settings/settings-init.php:620 -msgid "This controls the position of the currency symbol." -msgstr "Para birimi simgesinin konumunu belirtin." - -# @ woocommerce -#: admin/settings/settings-init.php:626 -msgid "Left" -msgstr "Solda" - -# @ woocommerce -#: admin/settings/settings-init.php:627 -msgid "Right" -msgstr "Sağda" - -# @ woocommerce -#: admin/settings/settings-init.php:628 -msgid "Left (with space)" -msgstr "Solda + Boşluk" - -# @ woocommerce -#: admin/settings/settings-init.php:629 -msgid "Right (with space)" -msgstr "Sağda + Boşluk" - -# @ woocommerce -#: admin/settings/settings-init.php:635 -msgid "Thousand Separator" -msgstr "Binlik Ayırıcı" - -# @ woocommerce -#: admin/settings/settings-init.php:636 -msgid "This sets the thousand separator of displayed prices." -msgstr "Fiyatlarda binlik ayıraç ayarı." - -# @ woocommerce -#: admin/settings/settings-init.php:645 -msgid "Decimal Separator" -msgstr "Ondalık Ayırıcı" - -# @ woocommerce -#: admin/settings/settings-init.php:646 -msgid "This sets the decimal separator of displayed prices." -msgstr "Fiyatlarda onluk ayıraç ayarı." - -# @ woocommerce -#: admin/settings/settings-init.php:655 -msgid "Number of Decimals" -msgstr "Ondalık Sayısı" - -# @ woocommerce -#: admin/settings/settings-init.php:656 -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "Fiyatlarda ondalık nokta sayısını belirler." - -# @ woocommerce -#: admin/settings/settings-init.php:669 -msgid "Trailing Zeros" -msgstr "Sıfır Ayıracı" - -# @ woocommerce -#: admin/settings/settings-init.php:670 -msgid "Remove zeros after the decimal point. e.g. $10.00 becomes $10" -msgstr "Ondalık noktadan sonra sıfır ayıracını kaldırırsanız; $10,00 $10 olur" - -# @ woocommerce -#: admin/settings/settings-init.php:678 -msgid "Image Options" -msgstr "Resim Ayarları" - -# @ woocommerce -#: admin/settings/settings-init.php:678 -#, php-format -msgid "These settings affect the actual dimensions of images in your catalog - the display on the front-end will still be affected by CSS styles. After changing these settings you may need to regenerate your thumbnails." -msgstr "Bu ayarlar katalog resimlerinin boyutlarını ve CSS stillerini etkiler. Bu ayarları değiştirdikten sonra küçük resimleri yeniden boyutlandırın." - -# @ woocommerce -#: admin/settings/settings-init.php:681 -msgid "Catalog Images" -msgstr "Katalog Resimleri" - -# @ woocommerce -#: admin/settings/settings-init.php:682 -msgid "This size is usually used in product listings" -msgstr "Bu boyut genellikle ürün listelerinde kullanılır" - -# @ woocommerce -#: admin/settings/settings-init.php:695 -msgid "Single Product Image" -msgstr "Ana Ürün Resmi" - -# @ woocommerce -#: admin/settings/settings-init.php:696 -msgid "This is the size used by the main image on the product page." -msgstr "Bu ürün sayfasında kullanılan ana resim boyutudur." - -# @ woocommerce -#: admin/settings/settings-init.php:709 -msgid "Product Thumbnails" -msgstr "Küçük Ürün Resmi" - -# @ woocommerce -#: admin/settings/settings-init.php:710 -msgid "This size is usually used for the gallery of images on the product page." -msgstr "Bu boyut ürün sayfasında görüntülenen resim galerisi için kullanılır." - -# @ woocommerce -#: admin/settings/settings-init.php:729 -msgid "Inventory Options" -msgstr "Envanter Seçenekleri" - -# @ woocommerce -#: admin/settings/settings-init.php:732 -msgid "Manage Stock" -msgstr "Stok Yönetimi" - -# @ woocommerce -#: admin/settings/settings-init.php:733 -msgid "Enable stock management" -msgstr "Etkinleştir" - -# @ woocommerce -#: admin/settings/settings-init.php:740 -msgid "Hold Stock (minutes)" -msgstr "Stok Tutma (dakika)" - -# @ woocommerce -#: admin/settings/settings-init.php:741 -msgid "Hold stock (for unpaid orders) for x minutes. When this limit is reached, the pending order will be cancelled. Leave blank to disable." -msgstr "Ödenmemiş siparişlerin stoklarını x dakika bekletin. Bu sınıra ulaşıldığında, bekleyen sipariş iptal edilecektir. Devre dışı bırakmak için boş bırakın." - -# @ woocommerce -#: admin/settings/settings-init.php:753 -msgid "Notifications" -msgstr "Uyarılar" - -# @ woocommerce -#: admin/settings/settings-init.php:754 -msgid "Enable low stock notifications" -msgstr "Düşük stok bildirimlerini etkinleştir" - -# @ woocommerce -#: admin/settings/settings-init.php:762 -msgid "Enable out of stock notifications" -msgstr "Stok tükenme bildirimlerini etkinleştir" - -# @ woocommerce -#: admin/settings/settings-init.php:770 -msgid "Notification Recipient" -msgstr "Bildirilecek Alıcı" - -# @ woocommerce -#: admin/settings/settings-init.php:778 -msgid "Low Stock Threshold" -msgstr "Düşük Stok Sınırı" - -# @ woocommerce -#: admin/settings/settings-init.php:791 -msgid "Out Of Stock Threshold" -msgstr "Stok Tükenme Sınırı" - -# @ woocommerce -#: admin/settings/settings-init.php:804 -msgid "Out Of Stock Visibility" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:805 -msgid "Hide out of stock items from the catalog" -msgstr "Stokları biten ürünleri gizle" - -# @ woocommerce -#: admin/settings/settings-init.php:812 -msgid "Stock Display Format" -msgstr "Stok Görüntüleme Biçimi" - -# @ woocommerce -#: admin/settings/settings-init.php:813 -msgid "This controls how stock is displayed on the frontend." -msgstr "Stokların hangi formatta görüntüleneceğini belirler." - -# @ woocommerce -#: admin/settings/settings-init.php:819 -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "Stokları her zaman göster örn. \"12 Stok Kaldı\"" - -# @ woocommerce -#: admin/settings/settings-init.php:820 -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "Yalnızca düşük stok kaldığı zaman göster örn. \"Sadece %s Adet kaldı\"" - -# @ woocommerce -#: admin/settings/settings-init.php:821 -msgid "Never show stock amount" -msgstr "Stok miktarını gösterme örn. \"Stokta\"" - -# @ woocommerce -#: admin/settings/settings-init.php:836 -msgid "Shipping Calculations" -msgstr "Kargo Hesaplamaları" - -# @ woocommerce -#: admin/settings/settings-init.php:837 -msgid "Enable shipping" -msgstr "Kargoyu etkinleştir" - -# @ woocommerce -#: admin/settings/settings-init.php:845 -msgid "Enable the shipping calculator on the cart page" -msgstr "Sepet sayfasındaki nakliye hesaplamayı etkinleştir." - -# @ woocommerce -#: admin/settings/settings-init.php:853 -msgid "Hide shipping costs until an address is entered" -msgstr "Bir adres girilene kadar nakliye ücretini gizle" - -# @ woocommerce -#: admin/settings/settings-init.php:861 -msgid "Shipping Method Display" -msgstr "Nakliye yöntemini görüntüle" - -# @ woocommerce -#: admin/settings/settings-init.php:862 -msgid "This controls how multiple shipping methods are displayed on the frontend." -msgstr "Birden fazla nakliye yönteminin nasıl görüntüleneceğini belirler." - -# @ woocommerce -#: admin/settings/settings-init.php:868 -msgid "Radio buttons" -msgstr "Yuvarlak kutu" - -# @ woocommerce -#: admin/settings/settings-init.php:869 -msgid "Select box" -msgstr "Seçim kutusu" - -# @ woocommerce -#: admin/settings/settings-init.php:875 -msgid "Shipping Destination" -msgstr "Kargo Hedefi" - -# @ woocommerce -#: admin/settings/settings-init.php:876 -msgid "Only ship to the users billing address" -msgstr "Müşterinin fatura adresine kargola" - -# @ woocommerce -#: admin/settings/settings-init.php:884 -msgid "Ship to billing address by default" -msgstr "Varsayılan adresine kargola" - -# @ woocommerce -#: admin/settings/settings-init.php:892 -msgid "Collect shipping address even when not required" -msgstr "Kargo adresini istemeye gerek yok" - -# @ woocommerce -#: admin/settings/settings-init.php:910 -#: admin/woocommerce-admin-settings.php:186 -#: admin/woocommerce-admin-settings.php:327 -msgid "Payment Gateways" -msgstr "Ödeme Yöntemleri" - -# @ woocommerce -#: admin/settings/settings-init.php:910 -msgid "Installed payment gateways are displayed below. Drag and drop payment gateways to control their display order on the checkout." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:928 -#: admin/woocommerce-admin-settings.php:220 -msgid "Tax Options" -msgstr "Vergilendirme Ayarları" - -# @ woocommerce -#: admin/settings/settings-init.php:931 -msgid "Enable Taxes" -msgstr "Vergileri Etkinleştir" - -# @ woocommerce -#: admin/settings/settings-init.php:932 -msgid "Enable taxes and tax calculations" -msgstr "Vergilendirmeyi ve vergi hesaplamalarını etkinleştir" - -# @ woocommerce -#: admin/settings/settings-init.php:939 -msgid "Prices Entered With Tax" -msgstr "Girdiğiniz Fiyatlar" - -# @ woocommerce -#: admin/settings/settings-init.php:943 -msgid "This option is important as it will affect how you input prices. Changing it will not update existing products." -msgstr "Bu seçenek ürün fiyatlarını etkileyecektir. Bunu değiştirdiğinizde mevcut ürünlerinizde güncelleme yapılmayacaktır." - -# @ woocommerce -#: admin/settings/settings-init.php:945 -msgid "Yes, I will enter prices inclusive of tax" -msgstr "Vergiler dahil" - -# @ woocommerce -#: admin/settings/settings-init.php:946 -msgid "No, I will enter prices exclusive of tax" -msgstr "Vergiler hariç" - -# @ woocommerce -#: admin/settings/settings-init.php:951 -msgid "Calculate Tax Based On:" -msgstr "Vergi Hesaplama Türü" - -# @ woocommerce -#: admin/settings/settings-init.php:953 -msgid "This option determines which address is used to calculate tax." -msgstr "Burada vergilerin hesaplanacağı yeri seçebilirsiniz." - -# @ woocommerce -#: admin/settings/settings-init.php:957 -msgid "Customer shipping address" -msgstr "Müşteri teslimat adresi" - -# @ woocommerce -#: admin/settings/settings-init.php:958 -msgid "Customer billing address" -msgstr "Müşteri fatura adresi" - -# @ woocommerce -#: admin/settings/settings-init.php:959 admin/settings/settings-init.php:971 -msgid "Shop base address" -msgstr "Mağaza adresi" - -# @ woocommerce -#: admin/settings/settings-init.php:964 -msgid "Default Customer Address:" -msgstr "Varsayılan Müşteri Adresi:" - -# @ woocommerce -#: admin/settings/settings-init.php:966 -msgid "This option determines the customers default address (before they input their own)." -msgstr "Bu seçenek, müşterilerin varsayılan adresini (eklemedikleri sürece) belirler." - -# @ woocommerce -#: admin/settings/settings-init.php:970 -msgid "No address" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:976 -msgid "Shipping Tax Class:" -msgstr "Kargo Versi Türü:" - -# @ woocommerce -#: admin/settings/settings-init.php:977 -msgid "Optionally control which tax class shipping gets, or leave it so shipping tax is based on the cart items themselves." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:982 -msgid "Shipping tax class based on cart items" -msgstr "Sepetteki ürünlerin vergi türüne göre" - -# @ woocommerce -#: admin/settings/settings-init.php:987 -msgid "Rounding" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:988 -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:995 -msgid "Additional Tax Classes" -msgstr "Ek Vergi Türleri" - -# @ woocommerce -#: admin/settings/settings-init.php:996 -msgid "List additonal tax classes below (1 per line). This is in addition to the default Standard Rate. Tax classes can be assigned to products." -msgstr "Aşağıda satır başına bir vergi türü listelidir. Bunlar Standard Rate yerine eklenebilir. Bu vergi türlerine ürünler atayabilirsiniz." - -# @ woocommerce -#: admin/settings/settings-init.php:1000 -#, php-format -msgid "Reduced Rate%sZero Rate" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1004 -msgid "Display prices during cart/checkout:" -msgstr "Fiyatların Sepet/Ödeme ekranında görüntülenmesi" - -# @ woocommerce -#: admin/settings/settings-init.php:1009 -msgid "Including tax" -msgstr "Vergiler dahil" - -# @ woocommerce -#: admin/settings/settings-init.php:1010 -msgid "Excluding tax" -msgstr "Vergiler ayrı" - -# @ woocommerce -#: admin/settings/settings-init.php:1022 -msgid "Email Sender Options" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1022 -msgid "The following options affect the sender (email address and name) used in WooCommerce emails." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1025 -msgid "\"From\" Name" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1034 -msgid "\"From\" Email Address" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1047 -msgid "Email Template" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1047 -#, php-format -msgid "This section lets you customise the WooCommerce emails. Click here to preview your email template. For more advanced control copy woocommerce/templates/emails/ to yourtheme/woocommerce/emails/." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1050 -msgid "Header Image" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1051 -#, php-format -msgid "Enter a URL to an image you want to show in the email's header. Upload your image using the media uploader." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1059 -msgid "Email Footer Text" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1060 -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1064 -msgid "Powered by WooCommerce" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1068 -msgid "Base Colour" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1069 -msgid "The base colour for WooCommerce email templates. Default #557da1." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1077 -msgid "Background Colour" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1078 -msgid "The background colour for WooCommerce email templates. Default #f5f5f5." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1086 -msgid "Email Body Background Colour" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1087 -msgid "The main body background colour. Default #fdfdfd." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1095 -msgid "Email Body Text Colour" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1096 -msgid "The main body text colour. Default #505050." -msgstr "" - -# @ woocommerce -# @ default -#: admin/settings/settings-payment-gateways.php:27 -#: admin/settings/settings-shipping-methods.php:29 -#: admin/woocommerce-admin-init.php:767 -#: admin/woocommerce-admin-taxonomies.php:27 -#: admin/woocommerce-admin-taxonomies.php:121 -msgid "Default" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-payment-gateways.php:28 -msgid "Gateway" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-payment-gateways.php:45 -msgid "Gateway ID" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:23 -msgid "Shipping Methods" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:25 -msgid "Drag and drop methods to control their display order." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:30 -msgid "Shipping Method" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:46 -msgid "Method ID" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:29 -#, php-format -msgid "Tax Rates for the \"%s\" Class" -msgstr "\"%s\" türü için vergi oranları" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:30 -#, php-format -msgid "Define tax rates for countries and states below. See here for available alpha-2 country codes." -msgstr "Aşağıdaki ülkeler için vergi oranları tanımlayın. Kullanılabilir alpha-2 ülke kodları için buraya bakın." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:36 -msgid "Country Code" -msgstr "Ülke Kodu" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:36 -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "2 Haneli ülke kodu girin, örn. TR. Tamamınıda boş bırakabilirsiniz." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:38 -msgid "State Code" -msgstr "Eyalet Kodu" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:38 -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "2 Haneli eyalet kodu girin, örn. AZ. Tamamınıda boş bırakabilirsiniz." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:40 -#: admin/settings/settings-tax-rates.php:217 -msgid "ZIP/Postcode" -msgstr "ZIP/Posta Kodu" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:40 -msgid "Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank to apply to all areas. Wildcards (*) can be used. Ranges for numeric postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "Bu kural için birden çok posta kodu belirleyebilirsiniz. Bu değerleri noktalı virgülle (;) ayırabilirsiniz. bunun yerine boşta bırakabilirsiniz. Özel semboller (*) kullanılabilir. Aralıkları ayrı posta kodları (örn. 12.345-12.350) içinde genişletilebilirsiniz." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:42 -msgid "Cities for this rule. Semi-colon (;) separate multiple values. Leave blank to apply to all cities." -msgstr "Bu kural için birden çok şehir belirleyebilirsiniz. Bu değerleri noktalı virgülle (;) ayırabilirsiniz. Tüm şehirleri boşta bırakabilirsiniz." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:44 -msgid "Rate %" -msgstr "Oran %" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:44 -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "Ondalık (örn. 18) bir vergi oranı girin." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:46 -msgid "Tax Name" -msgstr "Verdi Adı" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:46 -msgid "Enter a name for this tax rate." -msgstr "Bu vergi oranı için bir isim verin." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:48 -#: admin/settings/settings-tax-rates.php:217 -msgid "Priority" -msgstr "Öncelik" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:48 -msgid "Choose a priority for this tax rate. Only 1 matching rate per priority will be used. To define multiple tax rates for a single area you need to specify a different priority per rate." -msgstr "Öncelik başına sadece 1 eşleştirme oranı kullanılacaktır. Tek bir alan için birden fazla vergi oranı tanımlamak için puan başına farklı öncelik belirtmeniz gerekir." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:50 -#: admin/settings/settings-tax-rates.php:217 -msgid "Compound" -msgstr "Bileşik" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:50 -msgid "Choose whether or not this is a compound rate. Compound tax rates are applied on top of other tax rates." -msgstr "Bu bir bileşik faiz olup olmadığını seçin. Bileşik vergi oranları diğer vergi oranları üzerine uygulanır." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:52 -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "Bu vergi türünün kargo için uygulanıp uygulanmayacağını seçin." - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:59 -msgid "Insert row" -msgstr "Satır Ekle" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:60 -msgid "Remove selected row(s)" -msgstr "Seçili Satırları Sil" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:62 -msgid "Export CSV" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:63 -msgid "Import CSV" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:163 -msgid "No row(s) selected" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Country Code" -msgstr "Ülke Kodu" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "State Code" -msgstr "Eyalet Kodu" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Rate %" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Name" -msgstr "Vergi Adı" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:77 -msgid "Please, provide an attribute name, slug and type." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:79 -#, php-format -msgid "Slug \"%s\" is too long (28 characters max). Shorten it, please." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:81 -#, php-format -msgid "Slug \"%s\" is not allowed because it is a reserved term. Change it, please." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:85 -#: admin/woocommerce-admin-attributes.php:90 -#, php-format -msgid "Slug \"%s\" is already in use. Change it, please." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:226 -msgid "Edit Attribute" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:236 -#: admin/woocommerce-admin-attributes.php:375 -msgid "Name for the attribute (shown on the front-end)." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:241 -#: admin/woocommerce-admin-attributes.php:307 -#: admin/woocommerce-admin-attributes.php:379 -msgid "Slug" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:245 -#: admin/woocommerce-admin-attributes.php:381 -msgid "Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:254 -#: admin/woocommerce-admin-attributes.php:387 -msgid "Select" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:255 -#: admin/woocommerce-admin-attributes.php:388 -msgid "Text" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:258 -#: admin/woocommerce-admin-attributes.php:391 -msgid "Determines how you select attributes for products. Under admin panel -> products -> product data -> attributes -> values, Text allows manual entry whereas select allows pre-configured terms in a drop-down list." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:263 -#: admin/woocommerce-admin-attributes.php:395 -msgid "Default sort order" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:267 -#: admin/woocommerce-admin-attributes.php:335 -#: admin/woocommerce-admin-attributes.php:397 -msgid "Custom ordering" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:269 -#: admin/woocommerce-admin-attributes.php:332 -#: admin/woocommerce-admin-attributes.php:399 -msgid "Term ID" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:271 -#: admin/woocommerce-admin-attributes.php:401 -msgid "Determines the sort order of the terms on the frontend shop product pages. If using custom ordering, you can drag and drop the terms in this attribute." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:309 -msgid "Order by" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:310 -msgid "Terms" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:355 -msgid "Configure terms" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:359 -msgid "No attributes currently exist." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:369 -msgid "Add New Attribute" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:370 -msgid "Attributes let you define extra product data, such as size or colour. You can use these attributes in the shop sidebar using the \"layered nav\" widgets. Please note: you cannot rename an attribute later on." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:404 -msgid "Add Attribute" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:415 -msgid "Are you sure you want to delete this attribute?" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:26 -#: admin/woocommerce-admin-reports.php:30 -#: admin/woocommerce-admin-reports.php:75 -#: admin/woocommerce-admin-reports.php:91 -#: admin/woocommerce-admin-reports.php:102 -msgid "Overview" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:29 -#, php-format -msgid "Thank you for using WooCommerce :) Should you need help using or extending WooCommerce please read the documentation. For further assistance you can use the community forum or if you have access, our support desk." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:31 -msgid "If you are having problems, or to assist us with support, please check the status page to identify any problems with your configuration:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:33 admin/woocommerce-admin-init.php:87 -#: admin/woocommerce-admin-status.php:26 -msgid "System Status" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:35 -#, php-format -msgid "If you come across a bug, or wish to contribute to the project you can also get involved on GitHub." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:43 -msgid "Here you can set up your store and customise it to fit your needs. The sections available from the settings page include:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:44 -msgid "General settings such as your shop base, currency, and script/styling options which affect features used in your store." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:45 -msgid "This is where important store page are defined. You can also set up other pages (such as a Terms page) here." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:46 -msgid "Options for how things like price, images and weights appear in your product catalog." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:47 -msgid "Options concerning stock and stock notices." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:48 -msgid "Options concerning tax, including international and local tax rates." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:49 -msgid "This is where shipping options are defined, and shipping methods are set up." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:50 -msgid "Payment Methods" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:50 -msgid "This is where payment gateway options are defined, and individual payment gateways are set up." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:51 -#: admin/woocommerce-admin-settings.php:187 -msgid "Emails" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:51 -msgid "Here you can customise the way WooCommerce emails appear." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:52 -#: admin/woocommerce-admin-settings.php:188 -msgid "Integration" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:52 -msgid "The integration section contains options for third party services which integrate with WooCommerce." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:57 admin/woocommerce-admin-init.php:64 -msgid "Reports" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:59 -msgid "The reports section can be accessed from the left-hand navigation menu. Here you can generate reports for sales and customers." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:60 -#: admin/woocommerce-admin-reports.php:27 -#: admin/woocommerce-admin-reports.php:986 -#: admin/woocommerce-admin-reports.php:1082 -#: admin/woocommerce-admin-reports.php:1199 -msgid "Sales" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:60 -msgid "Reports for sales based on date, top sellers and top earners." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:61 -msgid "Coupon usage reports." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:62 -#: admin/woocommerce-admin-reports.php:88 -msgid "Customers" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:62 -msgid "Customer reports, such as signups per day." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:63 -msgid "Stock reports for low stock and out of stock items." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:70 -msgid "The orders section can be accessed from the left-hand navigation menu. Here you can view and manage customer orders." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:71 -msgid "Orders can also be added from this section if you want to set them up for a customer manually." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:78 -msgid "Coupons can be managed from this section. Once added, customers will be able to enter coupon codes on the cart/checkout page. If a customer uses a coupon code they will be viewable when viewing orders." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:82 -msgid "For more information:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:84 -msgid "Project on WordPress.org" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:85 -msgid "Project on Github" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:86 -msgid "WooCommerce Docs" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:87 -msgid "Official Extensions" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:88 -msgid "Official Themes" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:40 -msgid "Monthly Sales" -msgstr "Aylık Satış" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:43 -msgid "WooCommerce Right Now" -msgstr "WooCommerce Şu Anda" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:44 -msgid "WooCommerce Recent Orders" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:78 -msgid "Shop Content" -msgstr "Mağaza İçeriği" - -# @ woocommerce -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:84 -#: admin/woocommerce-admin-functions.php:194 -#: admin/woocommerce-admin-init.php:771 -#: admin/woocommerce-admin-reports.php:985 -#: admin/woocommerce-admin-reports.php:1081 templates/cart/cart.php:28 -#: templates/checkout/form-pay.php:19 templates/checkout/review-order.php:21 -#: templates/emails/admin-new-order.php:22 -#: templates/emails/customer-completed-order.php:23 -#: templates/emails/customer-invoice.php:27 -#: templates/emails/customer-note.php:27 -#: templates/emails/customer-processing-order.php:23 -#: templates/order/order-details.php:20 woocommerce.php:949 -msgid "Product" -msgid_plural "Products" -msgstr[0] "" - -# @ woocommerce -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:98 woocommerce.php:790 -msgid "Product Category" -msgid_plural "Product Categories" -msgstr[0] "" - -# @ woocommerce -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:112 woocommerce.php:826 -msgid "Product Tag" -msgid_plural "Product Tags" -msgstr[0] "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:126 -msgid "Attribute" -msgid_plural "Attributes" -msgstr[0] "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:148 -msgid "Pending" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:162 -msgid "On-Hold" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:190 -msgid "Completed" -msgstr "Tamamlandı" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:207 -#, php-format -msgid "You are using WooCommerce %s." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:238 -msgid "l jS \\of F Y h:i:s A" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:239 -msgid "item" -msgid_plural "items" -msgstr[0] "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:245 -msgid "There are no product orders yet." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:287 -msgid "There are no product reviews yet." -msgstr "Herhangi bir ürün yorumu yok." - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:428 -msgid "Sold" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:429 -msgid "Earned" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:184 -#: admin/woocommerce-admin-install.php:222 -msgid "Order Received" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:186 -msgid "Thank you, we are now processing your order. Your order's details are below." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:208 -msgid "Order total:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:459 -msgid "Could not compile woocommerce.less:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:480 -#: admin/woocommerce-admin-functions.php:481 -msgid "Mark processing" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:483 -#: admin/woocommerce-admin-functions.php:484 -msgid "Mark completed" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:521 -msgid "Order status changed by bulk edit:" -msgstr "" - -# @ default -#: admin/woocommerce-admin-functions.php:544 -#, php-format -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:86 -msgid "WooCommerce Settings" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:87 -msgid "WooCommerce Status" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:446 -msgid "Are you sure you want to remove the selected items? If you have previously reduced this item's stock, or this order was submitted by a customer, you will need to manually restore the item's stock." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:447 -msgid "Please select some items." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:448 -msgid "Remove this item meta?" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:449 -msgid "Remove this attribute?" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:457 -msgid "Enter a name for the new attribute term:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:458 -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:459 -msgid "Calculate line taxes? This will calculate taxes based on the customers country. If no billing/shipping is set it will use the store base country." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:460 -msgid "Copy billing information to shipping information? This will remove any currently entered shipping information." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:461 -msgid "Load the customer's billing information? This will remove any currently entered billing information." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:462 -msgid "Load the customer's shipping information? This will remove any currently entered shipping information." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:466 -msgid "No customer selected" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:675 -#, php-format -msgid "Product updated. View Product" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:676 admin/woocommerce-admin-init.php:691 -#: admin/woocommerce-admin-init.php:706 -msgid "Custom field updated." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:677 admin/woocommerce-admin-init.php:692 -#: admin/woocommerce-admin-init.php:707 -msgid "Custom field deleted." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:678 -msgid "Product updated." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:679 -#, php-format -msgid "Product restored to revision from %s" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:680 -#, php-format -msgid "Product published. View Product" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:681 -msgid "Product saved." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:682 -#, php-format -msgid "Product submitted. Preview Product" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:683 -#, php-format -msgid "Product scheduled for: %1$s. Preview Product" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:684 admin/woocommerce-admin-init.php:699 -#: admin/woocommerce-admin-init.php:714 -msgid "M j, Y @ G:i" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:685 -#, php-format -msgid "Product draft updated. Preview Product" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:690 admin/woocommerce-admin-init.php:693 -#: admin/woocommerce-admin-init.php:695 -msgid "Order updated." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:694 -#, php-format -msgid "Order restored to revision from %s" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:696 -msgid "Order saved." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:697 -msgid "Order submitted." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:698 -#, php-format -msgid "Order scheduled for: %1$s." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:700 -msgid "Order draft updated." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:705 admin/woocommerce-admin-init.php:708 -#: admin/woocommerce-admin-init.php:710 -msgid "Coupon updated." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:709 -#, php-format -msgid "Coupon restored to revision from %s" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:711 -msgid "Coupon saved." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:712 -msgid "Coupon submitted." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:713 -#, php-format -msgid "Coupon scheduled for: %1$s." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:715 -msgid "Coupon draft updated." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:732 -msgid "Order notes" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:747 -msgid "These settings control the permalinks used for products. These settings only apply when not using \"default\" permalinks above." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:754 -msgctxt "default-slug" -msgid "shop" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:755 -msgctxt "default-slug" -msgid "product" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:776 -msgid "Shop base" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:780 -msgid "Shop base with category" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:786 -msgid "Custom Base" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:788 -msgid "Enter a custom base to use. A base must be set or WordPress will use default instead." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:816 -msgid "Product permalink base" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:821 -msgid "Product category base" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:828 -msgid "Product tag base" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:835 -msgid "Product attribute base" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:192 -msgctxt "page_slug" -msgid "shop" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:192 -msgid "Shop" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:195 -msgctxt "page_slug" -msgid "cart" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:198 -msgctxt "page_slug" -msgid "checkout" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:201 -msgctxt "page_slug" -msgid "my-account" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:207 -msgctxt "page_slug" -msgid "edit-address" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:207 -msgid "Edit My Address" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:210 -msgctxt "page_slug" -msgid "view-order" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:213 -msgctxt "page_slug" -msgid "change-password" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:216 -msgctxt "page_slug" -msgid "logout" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:219 -msgctxt "page_slug" -msgid "pay" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:219 -msgid "Checkout → Pay" -msgstr "Ödeme Yap →" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:222 -msgctxt "page_slug" -msgid "order-received" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:36 -msgid "Sales by day" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:41 -msgid "Sales by month" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:46 -msgid "Taxes by month" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:51 -msgid "Product Sales" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:56 -msgid "Top sellers" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:61 -msgid "Top earners" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:66 -msgid "Sales by category" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:81 -msgid "Discounts by coupon" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:232 -#: admin/woocommerce-admin-reports.php:497 -#: admin/woocommerce-admin-reports.php:702 -#: admin/woocommerce-admin-reports.php:883 -msgid "Sales amount" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:237 -#: admin/woocommerce-admin-reports.php:497 -#: admin/woocommerce-admin-reports.php:702 -#: admin/woocommerce-admin-reports.php:883 -msgid "Number of sales" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:369 -msgid "Total sales" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:371 -#: admin/woocommerce-admin-reports.php:377 -#: admin/woocommerce-admin-reports.php:383 -#: admin/woocommerce-admin-reports.php:389 -#: admin/woocommerce-admin-reports.php:395 -#: admin/woocommerce-admin-reports.php:401 -#: admin/woocommerce-admin-reports.php:644 -#: admin/woocommerce-admin-reports.php:650 -#: admin/woocommerce-admin-reports.php:656 -#: admin/woocommerce-admin-reports.php:662 -#: admin/woocommerce-admin-reports.php:828 -#: admin/woocommerce-admin-reports.php:834 -#: admin/woocommerce-admin-reports.php:840 -#: admin/woocommerce-admin-reports.php:846 -#: admin/woocommerce-admin-reports.php:1364 -#: admin/woocommerce-admin-reports.php:1370 -#: admin/woocommerce-admin-reports.php:1376 -#: admin/woocommerce-admin-reports.php:1810 -#: admin/woocommerce-admin-reports.php:1816 -#: admin/woocommerce-admin-reports.php:1822 -#: admin/woocommerce-admin-reports.php:1828 -#: admin/woocommerce-admin-reports.php:1834 -#: admin/woocommerce-admin-reports.php:1840 -#: admin/woocommerce-admin-reports.php:2304 -#: admin/woocommerce-admin-reports.php:2315 -#: admin/woocommerce-admin-reports.php:2326 -msgid "n/a" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:375 -msgid "Total orders" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:377 -#: admin/woocommerce-admin-reports.php:650 -#: admin/woocommerce-admin-reports.php:834 -msgid "items" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:381 -msgid "Average order total" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:387 -msgid "Average order items" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:393 -msgid "Discounts used" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:399 -msgid "Total shipping costs" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:407 -msgid "This month's sales" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1356 -msgid "From:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1356 -msgid "To:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:821 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1229 -#: admin/woocommerce-admin-reports.php:1356 -#: admin/woocommerce-admin-reports.php:1489 -#: admin/woocommerce-admin-reports.php:2293 -#: admin/woocommerce-admin-reports.php:2476 -msgid "Show" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:642 -msgid "Total sales in range" -msgstr "Toplam satış sırası" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:648 -msgid "Total orders in range" -msgstr "Sırasıyla toplam siparişler" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:654 -msgid "Average order total in range" -msgstr "Sırasıyla toplam sipariş yüzdesi" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:660 -msgid "Average order items in range" -msgstr "Sırasıyla toplam ürün yüzdesi" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:668 -msgid "Sales in range" -msgstr "Sırasıyla satışlar" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:815 -#: admin/woocommerce-admin-reports.php:2287 -msgid "Year:" -msgstr "Yıl:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:826 -msgid "Total sales for year" -msgstr "Yıllık toplam satış" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:832 -msgid "Total orders for year" -msgstr "Yıllık toplam sipariş" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:838 -msgid "Average order total for year" -msgstr "Yıllık toplam sipariş yüzdesi" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:844 -msgid "Average order items for year" -msgstr "Yıllık ortalama ürünlerin sipariş yüzdesi" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:852 -msgid "Monthly sales for year" -msgstr "Yılda aylık satış" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1000 -msgid "Product does not exist" -msgstr "Ürün yok" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1097 -msgid "Product no longer exists" -msgstr "Ürün kalmadı" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1194 -#, php-format -msgid "Sales for %s:" -msgstr "%s için satış:" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1198 -#: admin/woocommerce-admin-reports.php:2335 -msgid "Month" -msgstr "Ay" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1219 -msgid "No sales :(" -msgstr "Satış yok :(" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1362 -msgid "Total orders containing coupons" -msgstr "Kupon kullanılan toplam sipariş" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1368 -msgid "Percent of orders containing coupons" -msgstr "Kupon kullanılan siparişlerin yüzdesi" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1374 -msgid "Total coupon discount" -msgstr "Toplam indirim kuponu" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1383 -msgid "Most popular coupons" -msgstr "En popüler kuponlar" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1393 -#, php-format -msgid "Used 1 time" -msgid_plural "Used %d times" -msgstr[0] "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1396 -#: admin/woocommerce-admin-reports.php:1418 -msgid "No coupons found" -msgstr "Kupon bulunamadı" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1405 -msgid "Greatest discount amount" -msgstr "En büyük indirim tutarı" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1415 -#, php-format -msgid "Discounted %s" -msgstr "%s İndirimli" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1474 -#: admin/woocommerce-admin-reports.php:2453 -msgid "Show:" -msgstr "Göster:" - - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1614 -msgid "Top coupon" -msgstr "En iyi kupon" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1622 -msgid "Worst coupon" -msgstr "En kötü kupon" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1630 -msgid "Discount average" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1638 -msgid "Discount median" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1658 -msgid "Monthly discounts by coupon" -msgstr "Aylık indirim kuponu" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1808 -msgid "Total customers" -msgstr "Toplam müşteriler" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1814 -msgid "Total customer sales" -msgstr "Toplam müşteri satışları" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1820 -msgid "Total guest sales" -msgstr "Toplam misafir satışları" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1826 -msgid "Total customer orders" -msgstr "Toplam müşteri siparişleri" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1832 -msgid "Total guest orders" -msgstr "Toplam misafir siparişleri" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1838 -msgid "Average orders per customer" -msgstr "Müşteri başına ortalama sipariş" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1846 -msgid "Signups per day" -msgstr "Günlük kayıtlar" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2067 -msgid "Low stock" -msgstr "Düşük stok" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2090 -#: admin/woocommerce-admin-reports.php:2129 -#, php-format -msgid "%d in stock" -msgid_plural "%d in stock" -msgstr[0] "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2095 -msgid "No products are low in stock." -msgstr "Ürün stoğu düşük." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2127 -msgid "Marked out of stock" -msgstr "Ürün stokta" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2134 -msgid "No products are out in stock." -msgstr "Ürün stok sınırında." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2298 -msgid "Total taxes for year" -msgstr "Yıllık toplam vergiler" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2309 -msgid "Total product taxes for year" -msgstr "Yıllık toplam ürün vergileri" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2320 -msgid "Total shipping tax for year" -msgstr "Yıllık toplam kargo vergisi" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2336 -msgid "Total Sales" -msgstr "Toplam Satış" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2336 -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "Siparişinizin 'Toplam Alışveriş' bölümü." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2337 -msgid "Total Shipping" -msgstr "Toplam Kargo" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2337 -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "Siparişinizin \"Kargo Toplamı\" bölümü." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2338 -msgid "Total Product Taxes" -msgstr "Toplam Vergi" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2338 -msgid "This is the sum of the 'Cart Tax' field within your orders." -msgstr "Siparişinizin 'Alışveriş Vergisi' toplamı." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2339 -msgid "Total Shipping Taxes" -msgstr "Toplam Kargo Vergileri" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2339 -msgid "This is the sum of the 'Shipping Tax' field within your orders." -msgstr "Siparişinizin 'Kargo Vergisi' toplamı." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2340 -msgid "Total Taxes" -msgstr "Toplam Vergi" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2340 -msgid "This is the sum of the 'Cart Tax' and 'Shipping Tax' fields within your orders." -msgstr "Siparişinizdeki \"Alışveriş Vergisi\" ve \"Kargo Vergisi\" toplamı." - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2341 -msgid "Net profit" -msgstr "Net kar" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2341 -msgid "Total sales minus shipping and tax." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2386 -msgid "Toggle tax rows" -msgstr "Vergi satırları" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2529 -msgid "Category" -msgstr "Kategori" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2632 -msgid "Top category" -msgstr "Üst kategori" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2641 -msgid "Worst category" -msgstr "Worst category" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2649 -msgid "Category sales average" -msgstr "Kategori satış ortalaması" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2660 -msgid "Category sales median" -msgstr "Kategori satış değeri" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2680 -msgid "Monthly sales by category" -msgstr "Kategoriye göre aylık satış" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:162 -msgid "Your settings have been saved." -msgstr "Ayarlarınızı kaydedildi." - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:208 -#, php-format -msgid "More functionality and gateway options available via WC official extensions." -msgstr "Daha fazla eklenti için WC resmi eklentiler kullanılabilir." - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:226 -msgid "Tax Rates" -msgstr "Vergi Oranları" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:253 -msgid "Email Options" -msgstr "E-posta seçenekleri" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:427 -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "Bu sayfadan giderseniz yaptığınız değişiklikler kaybolacak." - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:799 -msgid "Hard Crop" -msgstr "Sabit Boyut" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:824 -msgid "Select a page…" -msgstr "Bir sayfa seçin…" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:847 -msgid "Choose a country…" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:867 -msgid "Choose countries…" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:27 -#: admin/woocommerce-admin-status.php:622 -msgid "Tools" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:62 -msgid "Please include this information when requesting support:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:63 -msgid "Download System Report File" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:71 -msgid "Environment" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:77 -msgid "Home URL" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:81 -msgid "Site URL" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:85 -msgid "WC Version" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:89 -msgid "WC Database Version" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:93 -msgid "WP Version" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:97 -msgid "Web Server Info" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:101 -msgid "PHP Version" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:105 -msgid "MySQL Version" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:109 -msgid "WP Memory Limit" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:114 -#, php-format -msgid "%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "%s - En az 64MB bellek ayarlamanızı öneririz. Bkz: PHP belleğini yükseltme." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:121 -msgid "WP Debug Mode" -msgstr "WP Hata Ayıklama Modu" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:125 -msgid "WP Max Upload Size" -msgstr "WP Max Yükleme Boyutu" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:129 -msgid "PHP Post Max Size" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:133 -msgid "PHP Time Limit" -msgstr "PHP Zaman Aşımı" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:137 -msgid "WC Logging" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:140 -msgid "Log directory is writable." -msgstr "Kayıt dizini yazılabilir." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:142 -msgid "Log directory (woocommerce/logs/) is not writable. Logging will not be possible." -msgstr "Günlük dizinine (woocommerce/logs/) yazılamıyor. Kayıt mümkün değil." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:149 -msgid "fsockopen/cURL" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:152 -msgid "Your server has fsockopen and cURL enabled." -msgstr "Sunucuda fsockopen ve cURL etkin." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:154 -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "Sunucuda fsockopen etkin, cURL devredışı." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:156 -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "Sunucuda cURL etkin, fsockopen devredışı." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:160 -msgid "Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:165 -msgid "SOAP Client" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:167 -msgid "Your server has the SOAP Client class enabled." -msgstr "Sunucunuzda SOAP Client etkindir." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:170 -#, php-format -msgid "Your server does not have the SOAP Client class enabled - some gateway plugins which use SOAP may not work as expected." -msgstr "Sunucunuzda SOAP Client sunucu sınıfı etkin değil - SOAP kullanan bazı ağ geçidi eklentileri beklendiği gibi çalışmayabilir." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:175 -msgid "WP Remote Post" -msgstr "WP Mesaj Yönetimi" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:186 -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "wp_remote_post() was successful - PayPal IPN çalışıyor." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:189 -msgid "wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:" -msgstr "wp_remote_post() başarısız. PayPal IPN sunucunuzda çalışmaz. Hosting sağlayıcınıza danışın. Error:" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:192 -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "wp_remote_post() başarısız. PayPal IPN sunucunuzla çalışmayabilir." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:215 -msgid "Plugins" -msgstr "Eklentiler" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:221 -msgid "Installed Plugins" -msgstr "Yüklü Eklentiler" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:236 -msgid "by" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:236 -msgid "version" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:259 -msgid "Force SSL" -msgstr "SSL Kullan" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:266 -msgid "WC Pages" -msgstr "WC Sayfalar" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:273 -msgid "Shop Base" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:289 -msgid "Thanks" -msgstr "Teşekkürler" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:329 -msgid "Page not set" -msgstr "Sayfa ayarlanmamış" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:339 -msgid "Page does not exist" -msgstr "Sayfa yok" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:344 -#, php-format -msgid "Page does not contain the shortcode: %s" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:363 -msgid "WC Taxonomies" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:369 -msgid "Order Statuses" -msgstr "Sipariş Durumu" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:379 -msgid "Product Types" -msgstr "Ürün Çeşitleri" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:392 -msgid "Templates" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:398 -msgid "Template Overrides" -msgstr "Template Geçersiz Kıl" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:416 -msgid "No core overrides present in theme." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:510 -msgid "WC Transients" -msgstr "WC Çerezler" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:511 -msgid "Clear transients" -msgstr "Çerezleri temizle" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:512 -msgid "This tool will clear the product/shop transients cache." -msgstr "Bu araç ile ürünün/dükkanın geçici çerezleri temizlenir" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:515 -msgid "Expired Transients" -msgstr "Süresi Biten Çerezler" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:516 -msgid "Clear expired transients" -msgstr "Süresi Biten Çerezleri temizle" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:517 -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "Bu araç ile Wordpress'ten süresi biten çerezler temizlenir." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:520 -msgid "Term counts" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:521 -msgid "Recount terms" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:522 -msgid "This tool will recount product terms - useful when changing your settings in a way which hides products from the catalog." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:525 -msgid "Capabilities" -msgstr "Özellikler" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:526 -msgid "Reset capabilities" -msgstr "Özellikleri sıfırla" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:527 -msgid "This tool will reset the admin, customer and shop_manager roles to default. Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "Bu araç, müşteri, yönetici ve shop_manager rollerini varsayılana sıfırlar. Kullanıcılar WooCommerce yönetici sayfalarına erişemiyorsa bunu kullanın." - -# @ woocommerce -#: admin/woocommerce-admin-status.php:537 -msgid "Product Transients Cleared" -msgstr "Ürün Çerezleri Temizlendi" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:578 -#, php-format -msgid "%d Transients Rows Cleared" -msgstr "%d Geçici Satırlar Temizlendi" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:586 -msgid "Roles successfully reset" -msgstr "Roller başarıyla sıfırlandı" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:598 -msgid "Terms successfully recounted" -msgstr "Şartlar başarıyla aktarıldı" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:607 -#, php-format -msgid "There was an error calling %s::%s" -msgstr "Aramada bir hata var: %s::%s" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:610 -#, php-format -msgid "There was an error calling %s" -msgstr "Aramada bir hata var: %s" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:25 -#: admin/woocommerce-admin-taxonomies.php:118 -msgid "Display type" -msgstr "Görüntüleme Türü" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:29 -#: admin/woocommerce-admin-taxonomies.php:123 -msgid "Subcategories" -msgstr "Alt Kategoriler" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:30 -#: admin/woocommerce-admin-taxonomies.php:124 -msgid "Both" -msgstr "İkiside" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:34 -#: admin/woocommerce-admin-taxonomies.php:129 -msgid "Thumbnail" -msgstr "Küçük Resim" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:38 -#: admin/woocommerce-admin-taxonomies.php:134 -msgid "Upload/Add image" -msgstr "Resim Yükle/Ekle" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:39 -#: admin/woocommerce-admin-taxonomies.php:135 -msgid "Remove image" -msgstr "Resmi sil" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:64 -#: admin/woocommerce-admin-taxonomies.php:156 -msgid "Use image" -msgstr "Resmi kullan" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:222 -msgid "Product categories for your store can be managed here. To change the order of categories on the front-end you can drag and drop to sort them. To see more categories listed click the \"screen options\" link at the top of the page." -msgstr "Mağaza ürün kategorileri burada yönetilebilir. Kategorilerin sırasını değiştirmek için aşağı-yukarı sürükleyin ve bunları sıralamak için bırakın. Daha fazla kategori listelemek için sayfasının üst kısmındaki \"screen options\" linkine tıklayın." - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:237 -msgid "Shipping classes can be used to group products of similar type. These groups can then be used by certain shipping methods to provide different rates to different products." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:365 -msgid "Configure shipping class" -msgstr "Kargo grubu tanımlama" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:28 -msgid "Paying Customer?" -msgstr "Alıcı Ödeme?" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:29 -msgid "Completed Orders" -msgstr "Tamamlanan Siparişler" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:144 -msgid "Customer Billing Address" -msgstr "Alıcı Fatura Adresi" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:147 admin/woocommerce-admin-users.php:196 -msgid "First name" -msgstr "Ad" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:151 admin/woocommerce-admin-users.php:200 -msgid "Last name" -msgstr "Soyad" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:176 -msgid "Country or state code" -msgstr "Ülke veya posta kodu" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:180 admin/woocommerce-admin-users.php:229 -msgid "2 letter Country code" -msgstr "Ülke adı 2 harf" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:183 -msgid "Telephone" -msgstr "Telefon" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:193 -msgid "Customer Shipping Address" -msgstr "Alıcı Teslimat Adresi" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:225 -msgid "State/County or state code" -msgstr "Devlet/Eyalet veya posta kodu" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:33 -msgid "The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class directly." -msgstr "WC_Product class ayrılmış. Bunun yerine direk bu class ı çağıran get_product() örneğini kullanın." - -# @ woocommerce -#: classes/class-wc-countries.php:58 -msgid "Belau" -msgstr "" - -# @ woocommerce -#: classes/class-wc-coupon.php:420 -msgid "Coupon code applied successfully." -msgstr "Kupon kodu başarıyla uygulandı." - -# @ woocommerce -#: classes/class-wc-coupon.php:441 -msgid "Coupon is not valid." -msgstr "Kupon geçerli değildir." - -# @ woocommerce -#: classes/class-wc-coupon.php:453 -msgid "Coupon code already applied!" -msgstr "Kupon kodu zaten kullanıldı!" - -# @ woocommerce -#: classes/class-wc-coupon.php:456 -#, php-format -msgid "Sorry, coupon \"%s\" has already been applied and cannot be used in conjunction with other coupons." -msgstr "Üzgünüz, \"%s\" bu kupon zaten kullanılmış ve diğer kuponlar ile birlikte kullanılamaz." - -# @ woocommerce -#: classes/class-wc-coupon.php:471 -msgid "Sorry, this coupon is not valid for sale items." -msgstr "Üzgünüz, kupon numarası bu ürün için geçerli değildir." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:97 -#: classes/gateways/cod/class-wc-gateway-cod.php:103 -msgid "Pay with cash upon delivery." -msgstr "Teslimat anında kapıda ödeme." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:148 -msgid "Please enter a prefix for your invoice numbers. If you use your PayPal account for multiple stores ensure this prefix is unique as PayPal will not allow orders with the same invoice number." -msgstr "Faturalarınızın seri numarasını girin. Eğer PayPal hesabınızı birden fazla mağaza için kullanıyorsanız aynı seri numarası ile satış yapmanıza izin verilmez." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:165 -msgid "Optional" -msgstr "Opsiyonel" - -# @ woocommerce -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:23 -msgid "Increase your social media exposure by 10 percent! ShareYourCart helps you get more customers by motivating satisfied customers to talk with their friends about your products. For help with ShareYourCart view the documentation." -msgstr "Sosyal medya değerinizi yüzde 10 artırın! Daha fazla müşteriye ulaşabilmeniz için arkadaşlarınıza ürünleriniz hakkında konuşun." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:176 -msgid "Option Name|Cost|Per-order (yes or no)" -msgstr "Seçenek Adı|Maliyet|Sipariş Naşına (evet veya hayır)" - -# @ woocommerce -#: i18n/states/HU.php:13 -msgid "Bács-Kiskun" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:14 -msgid "Békés" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:15 -msgid "Baranya" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:16 -msgid "Borsod-Abaúj-Zemplén" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:17 -msgid "Budapest" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:18 -msgid "Csongrád" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:19 -msgid "Fejér" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:20 -msgid "Győr-Moson-Sopron" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:21 -msgid "Hajdú-Bihar" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:22 -msgid "Heves" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:23 -msgid "Jász-Nagykun-Szolnok" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:24 -msgid "Komárom-Esztergom" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:25 -msgid "Nógrád" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:26 -msgid "Pest" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:27 -msgid "Somogy" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:28 -msgid "Szabolcs-Szatmár-Bereg" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:29 -msgid "Tolna" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:30 -msgid "Vas" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:31 -msgid "Veszprém" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:32 -msgid "Zala" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:13 -msgid "Daerah Istimewa Aceh" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:14 -msgid "Sumatera Utara" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:15 -msgid "Sumatera Barat" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:16 -msgid "Riau" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:17 -msgid "Kepulauan Riau" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:18 -msgid "Jambi" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:19 -msgid "Sumatera Selatan" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:20 -msgid "Bangka Belitung" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:21 -msgid "Bengkulu" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:22 -msgid "Lampung" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:23 -msgid "DKI Jakarta" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:24 -msgid "Jawa Barat" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:25 -msgid "Banten" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:26 -msgid "Jawa Tengah" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:27 -msgid "Jawa Timur" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:28 -msgid "Daerah Istimewa Yogyakarta" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:29 -msgid "Bali" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:30 -msgid "Nusa Tenggara Barat" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:31 -msgid "Nusa Tenggara Timur" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:32 -msgid "Kalimantan Barat" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:33 -msgid "Kalimantan Tengah" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:34 -msgid "Kalimantan Timur" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:35 -msgid "Kalimantan Selatan" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:36 -msgid "Kalimantan Utara" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:37 -msgid "Sulawesi Utara" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:38 -msgid "Sulawesi Tengah" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:39 -msgid "Sulawesi Tenggara" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:40 -msgid "Sulawesi Barat" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:41 -msgid "Sulawesi Selatan" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:42 -msgid "Gorontalo" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:43 -msgid "Maluku" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:44 -msgid "Maluku Utara" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:45 -msgid "Papua" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:46 -msgid "Papua Barat" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:72 -msgid "US Virgin Islands" -msgstr "ABD Virgin Adaları" - -# @ woocommerce -#: templates/checkout/form-login.php:14 -msgid "Returning customer?" -msgstr "Üyemisiniz?" - -# @ woocommerce -#: templates/loop/orderby.php:22 -msgid "Sort by popularity" -msgstr "Popülerliğe göre sırala" - -# @ woocommerce -#: templates/loop/orderby.php:23 -msgid "Sort by average rating" -msgstr "Oylara göre sırala" - -# @ woocommerce -#: templates/loop/orderby.php:24 -msgid "Sort by newness" -msgstr "Yenileri sırala" - -# @ woocommerce -#: templates/loop/orderby.php:25 -msgid "Sort by price: low to high" -msgstr "Sırala: düşükten yükseğe" - -# @ woocommerce -#: templates/loop/orderby.php:26 -msgid "Sort by price: high to low" -msgstr "Sırala: yüksekten düşüğe" - -# @ woocommerce -#: templates/myaccount/my-orders.php:62 -#, php-format -msgid "%s for %s item" -msgid_plural "%s for %s items" -msgstr[0] "" - -# @ woocommerce -#: templates/single-product-reviews.php:78 -msgid "Add Your Review" -msgstr "Yorum Bırakın" - -# @ woocommerce -#: woocommerce-ajax.php:1172 -msgid "No products had their stock reduced - they may not have stock management enabled." -msgstr "Ürünün stok değeri düştü - stok yönetimi etkin olmayabilir." - -# @ woocommerce -#: woocommerce-ajax.php:1223 -msgid "No products had their stock increased - they may not have stock management enabled." -msgstr "Ürünün stok değeri arttı - stok yönetimi etkin olmayabilir." - -# @ woocommerce -#: woocommerce-core-functions.php:268 -#, php-format -msgid "%s – %s%s" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:675 -msgid "Australian Dollars" -msgstr "Avustralya Doları" - -# @ woocommerce -#: woocommerce-core-functions.php:676 -msgid "Brazilian Real" -msgstr "Brezilya Reali" - -# @ woocommerce -#: woocommerce-core-functions.php:677 -msgid "Canadian Dollars" -msgstr "Kanada Doları" - -# @ woocommerce -#: woocommerce-core-functions.php:678 -msgid "Chinese Yuan" -msgstr "Çin Yuanı" - -# @ woocommerce -#: woocommerce-core-functions.php:679 -msgid "Czech Koruna" -msgstr "Çek Korunası" - -# @ woocommerce -#: woocommerce-core-functions.php:680 -msgid "Danish Krone" -msgstr "Danimarka Kronu" - -# @ woocommerce -#: woocommerce-core-functions.php:681 -msgid "Euros" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:682 -msgid "Hong Kong Dollar" -msgstr "Hong Kong Doları" - -# @ woocommerce -#: woocommerce-core-functions.php:683 -msgid "Hungarian Forint" -msgstr "Macar Forinti" - -# @ woocommerce -#: woocommerce-core-functions.php:684 -msgid "Indonesia Rupiah" -msgstr "Endonezya Rupiah" - -# @ woocommerce -#: woocommerce-core-functions.php:685 -msgid "Israeli Shekel" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:686 -msgid "Japanese Yen" -msgstr "Japon Yeni" - -# @ woocommerce -#: woocommerce-core-functions.php:687 -msgid "Malaysian Ringgits" -msgstr "Malezya Ringiti" - -# @ woocommerce -#: woocommerce-core-functions.php:688 -msgid "Mexican Peso" -msgstr "Meksika Pezosu" - -# @ woocommerce -#: woocommerce-core-functions.php:689 -msgid "Norwegian Krone" -msgstr "Norveç Kronu" - -# @ woocommerce -#: woocommerce-core-functions.php:690 -msgid "New Zealand Dollar" -msgstr "Yeni Zellanda Doları" - -# @ woocommerce -#: woocommerce-core-functions.php:691 -msgid "Philippine Pesos" -msgstr "Filipin Pezosu" - -# @ woocommerce -#: woocommerce-core-functions.php:692 -msgid "Polish Zloty" -msgstr "Polonya Zlotisi" - -# @ woocommerce -#: woocommerce-core-functions.php:693 -msgid "Pounds Sterling" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:694 -msgid "Romanian Leu" -msgstr "Romanya Leyi" - -# @ woocommerce -#: woocommerce-core-functions.php:695 -msgid "Singapore Dollar" -msgstr "Singapur Doları" - -# @ woocommerce -#: woocommerce-core-functions.php:696 -msgid "South African rand" -msgstr "Güney Afrika Randı" - -# @ woocommerce -#: woocommerce-core-functions.php:697 -msgid "Swedish Krona" -msgstr "İsveç Kronu" - -# @ woocommerce -#: woocommerce-core-functions.php:698 -msgid "Swiss Franc" -msgstr "İsviçre Frangı" - -# @ woocommerce -#: woocommerce-core-functions.php:699 -msgid "Taiwan New Dollars" -msgstr "Tayvan Yeni Doları" - -# @ woocommerce -#: woocommerce-core-functions.php:700 -msgid "Thai Baht" -msgstr "Tayland Bahtı" - -# @ woocommerce -#: woocommerce-core-functions.php:701 -msgid "Turkish Lira" -msgstr "Türk Lirası" - -# @ woocommerce -#: woocommerce-core-functions.php:702 -msgid "US Dollars" -msgstr "ABD Doları" - -# @ woocommerce -#: woocommerce-functions.php:996 -msgid "No file defined" -msgstr "Tanımlı dosya yok" - -# @ woocommerce -#: woocommerce-functions.php:1575 -msgid "Password changed successfully." -msgstr "Parola başarıyla değiştirildi." - -# @ woocommerce -#: woocommerce-functions.php:1651 -msgid "Address changed successfully." -msgstr "Adresiniz başarıyla değiştirildi." - -# @ woocommerce -#: woocommerce-template.php:764 -#, php-format -msgid "Reviews (%d)" -msgstr "Yorumlar (%d)" - -# @ woocommerce -#. translators: plugin header field 'PluginURI' -#: woocommerce.php:0 -msgid "http://www.woothemes.com/woocommerce/" -msgstr "" - -# @ woocommerce -#. translators: plugin header field 'Description' -#: woocommerce.php:0 -msgid "An e-commerce toolkit that helps you sell anything. Beautifully." -msgstr "Herşeyi satabileceğiniz güzel bir e-alışveriş eklentisi." - -# @ woocommerce -#. translators: plugin header field 'Author' -#: woocommerce.php:0 -msgid "WooThemes" -msgstr "" - -# @ woocommerce -#. translators: plugin header field 'AuthorURI' -#: woocommerce.php:0 -msgid "http://woothemes.com" -msgstr "" - -# @ woocommerce -#. translators: plugin header field 'Version' -#: woocommerce.php:0 -msgid "2.0.0" -msgstr "" \ No newline at end of file diff --git a/i18n/languages/woocommerce-uk_UA.mo b/i18n/languages/woocommerce-uk_UA.mo deleted file mode 100644 index 418b6d7a48b..00000000000 Binary files a/i18n/languages/woocommerce-uk_UA.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-uk_UA.po b/i18n/languages/woocommerce-uk_UA.po deleted file mode 100644 index 81efa04d9ed..00000000000 --- a/i18n/languages/woocommerce-uk_UA.po +++ /dev/null @@ -1,14080 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce v2.0.13\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2013-07-22 01:00:31+0000\n" -"Last-Translator: Andriy Gusak \n" -"Language-Team: Andriy Gusak \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%100/10==1 ? 2 : n%10==1 ? 0 : (n+9)%10>3 ? 2 : 1;\n" -"X-Generator: Poedit 1.5.5\n" -"X-Poedit-Language: \n" -"X-Poedit-Country: \n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n" -"X-Poedit-Basepath: ../../\n" -"X-Poedit-Bookmarks: \n" -"X-Poedit-SearchPath-0: .\n" -"X-Textdomain-Support: yes" - -#: admin/importers/importers-init.php:13 -#@ woocommerce -msgid "WooCommerce Tax Rates (CSV)" -msgstr "WooCommerce ставки оподаткування (CSV)" - -#: admin/importers/importers-init.php:13 -#@ woocommerce -msgid "Import tax rates to your store via a csv file." -msgstr "Імпортувати податкові ставки в магазин за допомогою csv файлу." - -#: admin/importers/tax-rates-importer.php:103 -#: admin/importers/tax-rates-importer.php:188 -#: admin/importers/tax-rates-importer.php:228 -#: admin/importers/tax-rates-importer.php:243 -#@ woocommerce -msgid "Sorry, there has been an error." -msgstr "Вибачте, виникла помилка." - -#: admin/importers/tax-rates-importer.php:104 -#@ woocommerce -msgid "The file does not exist, please try again." -msgstr "Такого файлу не існує, спробуйте знову." - -#: admin/importers/tax-rates-importer.php:189 -#@ woocommerce -msgid "The CSV is invalid." -msgstr "Неприпустимий файл CSV." - -#: admin/importers/tax-rates-importer.php:200 -#, php-format -#@ woocommerce -msgid "Import complete - imported %s tax rates and skipped %s." -msgstr "Імпорт завершено - імпортовано %s податкових ставок і пропущено %s." - -#: admin/importers/tax-rates-importer.php:210 -#@ woocommerce -msgid "All done!" -msgstr "Все готово!" - -#: admin/importers/tax-rates-importer.php:210 -#@ woocommerce -msgid "View Tax Rates" -msgstr "Переглянути ставки оподаткування" - -#: admin/importers/tax-rates-importer.php:261 -#@ woocommerce -msgid "Import Tax Rates" -msgstr "Іпорт ставок оподаткування" - -#: admin/importers/tax-rates-importer.php:284 -#@ woocommerce -msgid "Hi there! Upload a CSV file containing tax rates to import the contents into your shop. Choose a .csv file to upload, then click \"Upload file and import\"." -msgstr "Вітаємо! Завантажте файл CSV, що містить податкові ставки, щоб імпортувати його вміст у ваш магазин. Оберіть .CSV-файл для завантаження, а потім натисніть кнопку \"Завантаження та імпорт\"." - -#: admin/importers/tax-rates-importer.php:286 -#, php-format -#@ woocommerce -msgid "Tax rates need to be defined with columns in a specific order (10 columns). Click here to download a sample." -msgstr "Податкові ставки повинні бути рознесені у стовпці у певному порядку (10 стовпців). Натисніть тут, щоб завантажити зразок." - -#: admin/importers/tax-rates-importer.php:294 -#@ default -msgid "Before you can upload your import file, you will need to fix the following error:" -msgstr "" - -#: admin/importers/tax-rates-importer.php:303 -#@ default -msgid "Choose a file from your computer:" -msgstr "" - -#: admin/importers/tax-rates-importer.php:309 -#, php-format -#@ default -msgid "Maximum size: %s" -msgstr "" - -#: admin/importers/tax-rates-importer.php:314 -#@ woocommerce -msgid "OR enter path to file:" -msgstr "АБО введіть шлях до файлу:" - -#: admin/importers/tax-rates-importer.php:321 -#@ woocommerce -msgid "Delimiter" -msgstr "Деламітер (символ розділення)" - -#: admin/importers/tax-rates-importer.php:327 -#@ default -msgid "Upload file and import" -msgstr "Завантажити файл та імпортувати" - -#: admin/includes/duplicate_product.php:23 -#@ woocommerce -msgid "No product to duplicate has been supplied!" -msgstr "Жоден товар не був обраний для дублювання!" - -#: admin/includes/duplicate_product.php:43 -#@ woocommerce -msgid "Product creation failed, could not find original product:" -msgstr "Створення товару, пройшло не вдало, не вдалося знайти вихідний товар:" - -#: admin/includes/duplicate_product.php:90 -#@ woocommerce -msgid "(Copy)" -msgstr "(Копія)" - -#: admin/includes/notice-install.php:6 -#@ woocommerce -msgid "Welcome to WooCommerce – You're almost ready to start selling :)" -msgstr "Вітаємо у WooCommerce – Майже все готово для початку продаж :)" - -#: admin/includes/notice-install.php:7 -#@ woocommerce -msgid "Install WooCommerce Pages" -msgstr "Встановлення сторінок WooCommerce" - -#: admin/includes/notice-install.php:7 -#@ woocommerce -msgid "Skip setup" -msgstr "Пропустити налаштування" - -#: admin/includes/notice-theme-support.php:6 -#@ woocommerce -msgid "Your theme does not declare WooCommerce support – if you encounter layout issues please read our integration guide or choose a WooCommerce theme :)" -msgstr "Ваша тема не заявляє підтриму WooCommerce – якщо ви зіткнулися з проблемами сумісності, будь ласка, прочитайте нашу інструкцію з інтеграції або використовуйте WooCommerce тему :)" - -#: admin/includes/notice-theme-support.php:7 -#@ woocommerce -msgid "Theme Integration Guide" -msgstr "Інструкція з інтеграції теми" - -#: admin/includes/notice-theme-support.php:7 -#@ woocommerce -msgid "Hide this notice" -msgstr "Заховати цю нотатку" - -#: admin/includes/notice-update.php:6 -#@ woocommerce -msgid "Data Update Required – We just need to update your install to the latest version" -msgstr "Необхідне оновлення даних – Нам просто потрібно оновити вашу програму до останньої версії" - -#: admin/includes/notice-update.php:7 -#@ woocommerce -msgid "Run the updater" -msgstr "Запустити оновлювач" - -#: admin/includes/notice-update.php:12 -#@ woocommerce -msgid "It is strongly recommended that you backup your database before proceeding. Are you sure you wish to run the updater now?" -msgstr "Настійливо рекомендується створити резервну копію бази даних, перш ніж продовжити. Ви впевнені, що хочете запустити програму оновлення зараз?" - -#: admin/includes/updates/woocommerce-update-2.0.php:49 -#: admin/woocommerce-admin-init.php:885 -#: woocommerce.php:786 -#@ woocommerce -msgctxt "slug" -msgid "product-category" -msgstr "" - -#: admin/includes/updates/woocommerce-update-2.0.php:50 -#: admin/woocommerce-admin-init.php:898 -#: woocommerce.php:787 -#@ woocommerce -msgctxt "slug" -msgid "product-tag" -msgstr "мітка-товару" - -#: admin/includes/updates/woocommerce-update-2.0.php:58 -#: woocommerce.php:789 -#@ woocommerce -msgctxt "slug" -msgid "product" -msgstr "товар" - -#: admin/includes/updates/woocommerce-update-2.0.php:179 -#: admin/woocommerce-admin-install.php:207 -#@ woocommerce -msgctxt "page_slug" -msgid "lost-password" -msgstr "втрачений-пароль" - -#: admin/includes/updates/woocommerce-update-2.0.php:179 -#: admin/woocommerce-admin-install.php:207 -#: admin/woocommerce-admin-status.php:335 -#@ woocommerce -msgid "Lost Password" -msgstr "Загубили пароль" - -#: admin/includes/welcome.php:48 -#@ woocommerce -msgid "Welcome to WooCommerce" -msgstr "Вітаємо у WooCommerce" - -#: admin/includes/welcome.php:135 -#, php-format -#@ woocommerce -msgid "Welcome to WooCommerce %s" -msgstr "Вітаємо у WooCommerce %s" - -#: admin/includes/welcome.php:140 -#@ woocommerce -msgid "Thanks, all done!" -msgstr "Дякуємо, все готово!" - -#: admin/includes/welcome.php:142 -#@ woocommerce -msgid "Thank you for updating to the latest version!" -msgstr "Дякуємо за оновлення до останньої версії!" - -#: admin/includes/welcome.php:144 -#@ woocommerce -msgid "Thanks for installing!" -msgstr "Дякуємо за встановлення!" - -#: admin/includes/welcome.php:146 -#, php-format -#@ woocommerce -msgid "%s WooCommerce %s is more powerful, stable, and secure than ever before. We hope you enjoy it." -msgstr "%s WooCommerce %s потужніший, стабільніший, та захищеніший ніж коли небуть. Ми сподіваємося він вам сподобається." - -#: admin/includes/welcome.php:150 -#, php-format -#@ woocommerce -msgid "Version %s" -msgstr "Версія %s" - -#: admin/includes/welcome.php:153 -#: admin/woocommerce-admin-content.php:41 -#: admin/woocommerce-admin-init.php:88 -#: admin/woocommerce-admin-status.php:278 -#: classes/abstracts/abstract-wc-email.php:560 -#: classes/abstracts/abstract-wc-integration.php:30 -#: classes/abstracts/abstract-wc-settings-api.php:39 -#: woocommerce.php:170 -#@ woocommerce -msgid "Settings" -msgstr "Налаштування" - -#: admin/includes/welcome.php:154 -#: woocommerce.php:171 -#@ woocommerce -msgid "Docs" -msgstr "Документи" - -#: admin/includes/welcome.php:161 -#@ woocommerce -msgid "What's New" -msgstr "Що нового" - -#: admin/includes/welcome.php:163 -#@ woocommerce -msgid "Credits" -msgstr "" - -#: admin/includes/welcome.php:186 -#@ woocommerce -msgid "Security in mind" -msgstr "Пам'ятай про безпеку" - -#: admin/includes/welcome.php:190 -#@ woocommerce -msgid "Sucuri Safe Plugin" -msgstr "" - -#: admin/includes/welcome.php:191 -#@ woocommerce -msgid "You will be happy to learn that WooCommerce has been audited and certified by the Sucuri Security team. Whilst there is not much to be seen visually to understand the amount of work that went into this audit, rest assured that your website is powered by one of the most powerful and stable eCommerce plugins available." -msgstr "" - -#: admin/includes/welcome.php:194 -#@ woocommerce -msgid "A Smoother Admin Experience" -msgstr "" - -#: admin/includes/welcome.php:200 -#@ woocommerce -msgid "New Product Panel" -msgstr "Нова панель товарів" - -#: admin/includes/welcome.php:201 -#@ woocommerce -msgid "We have revised the product data panel making it cleaner, more streamlined, and more logical. Adding products is a breeze!" -msgstr "" - -#: admin/includes/welcome.php:206 -#@ woocommerce -msgid "Nicer Order Screens" -msgstr "Гарніший екран замовлення" - -#: admin/includes/welcome.php:207 -#@ woocommerce -msgid "Order pages have had a cleanup, with a more easily scannable interface. We particularly like the new status icons!" -msgstr "Сторінки замовлення отримали чистіший інтерфейс, який легше сприймати. Нам особливо подобаються нові іконки статусу!" - -#: admin/includes/welcome.php:212 -#@ woocommerce -msgid "Multi-Download Support" -msgstr "Підтримка Мулти-завантаження" - -#: admin/includes/welcome.php:213 -#@ woocommerce -msgid "Products can have multiple downloadable files - purchasers will get access to all the files added." -msgstr "" - -#: admin/includes/welcome.php:218 -#@ woocommerce -msgid "Less Taxing Taxes" -msgstr "" - -#: admin/includes/welcome.php:224 -#@ woocommerce -msgid "New Tax Input Panel" -msgstr "Нова панель введення податків" - -#: admin/includes/welcome.php:225 -#@ woocommerce -msgid "The tax input pages have been streamlined to make inputting taxes simpler - adding multiple taxes for a single jurisdiction is now much easier using the priority system. There is also CSV import/export support." -msgstr "" - -#: admin/includes/welcome.php:229 -#@ woocommerce -msgid "Improved Tax Options" -msgstr "Покращене налаштування податків" - -#: admin/includes/welcome.php:230 -#@ woocommerce -msgid "As requested by some users, we now support taxing the billing address instead of shipping (optional), and we allow you to choose which tax class applies to shipping." -msgstr "На прохання деяких користувачів, тепер ми підтримуємо податкову адресу для виставлення рахунку, а доставку (за бажанням), і ми даємо Вам можливість обрати, який клас оподаткування відноситься до доставки." - -#: admin/includes/welcome.php:235 -#@ woocommerce -msgid "Product Listing Improvements Customers Will Love" -msgstr "Поліпшення списку товарів сподобається клієнтам" - -#: admin/includes/welcome.php:241 -#@ woocommerce -msgid "New Sorting Options" -msgstr "Налаштування нового сортування" - -#: admin/includes/welcome.php:242 -#@ woocommerce -msgid "Customers can now sort products by popularity and ratings." -msgstr "Відвідувачі можуть сортувати товари за популярністю і рейтингом." - -#: admin/includes/welcome.php:247 -#@ woocommerce -msgid "Better Pagination and Result Counts" -msgstr "" - -#: admin/includes/welcome.php:248 -#@ woocommerce -msgid "Numbered pagination has been added to core, and we show the number of results found above the listings." -msgstr "" - -#: admin/includes/welcome.php:253 -#@ woocommerce -msgid "Inline Star Rating Display" -msgstr "" - -#: admin/includes/welcome.php:254 -#@ woocommerce -msgid "We have added star ratings to the catalog which are pulled from reviews." -msgstr "Ми додали зірковий рейтинг в каталог, якій зібралі з Ваших відгуків." - -#: admin/includes/welcome.php:262 -#@ woocommerce -msgid "Under the Hood" -msgstr "Під капотом" - -#: admin/includes/welcome.php:266 -#@ woocommerce -msgid "New product classes" -msgstr "Класи нового товару" - -#: admin/includes/welcome.php:267 -#@ woocommerce -msgid "The product classes have been rewritten and are now factory based. Much more extendable, and easier to query products using the new get_product() function." -msgstr "" - -#: admin/includes/welcome.php:271 -#@ woocommerce -msgid "Capability overhaul" -msgstr "" - -#: admin/includes/welcome.php:272 -#@ woocommerce -msgid "More granular capabilities for admin/shop manager roles covering products, orders and coupons." -msgstr "Вдосконалені можливості для адміністратора/менеджера магазину, що стосується товарів, замовлень і купонів." - -#: admin/includes/welcome.php:276 -#@ woocommerce -msgid "API Improvements" -msgstr "Впровадження API" - -#: admin/includes/welcome.php:277 -#@ woocommerce -msgid "WC-API now has real endpoints, and we've optimised the gateways API significantly by only loading gateways when needed." -msgstr "" - -#: admin/includes/welcome.php:283 -#@ woocommerce -msgid "Cache-friendly cart widgets" -msgstr "Кеш-френдлі віджети кошика" - -#: admin/includes/welcome.php:284 -#@ woocommerce -msgid "Cart widgets and other \"fragments\" are now pulled in via AJAX - this works wonders with static page caching." -msgstr "" - -#: admin/includes/welcome.php:288 -#@ woocommerce -msgid "Session handling" -msgstr "" - -#: admin/includes/welcome.php:289 -#@ woocommerce -msgid "PHP SESSIONS have been a problem for many users in the past, so we've developed our own handler using cookies and options to make these more reliable." -msgstr "" - -#: admin/includes/welcome.php:293 -#@ woocommerce -msgid "Retina Ready" -msgstr "Готова для Retina" - -#: admin/includes/welcome.php:294 -#@ woocommerce -msgid "All graphics within WC have been optimised for HiDPI displays." -msgstr "Вся графіка в WC була оптимізована для HiDPI дисплеїв." - -#: admin/includes/welcome.php:301 -#@ woocommerce -msgid "Better stock handling" -msgstr "Покращене керування складом" - -#: admin/includes/welcome.php:302 -#@ woocommerce -msgid "We have added an option to hold stock for unpaid orders (defaults to 60mins). When this time limit is reached, and the order is not paid for, stock is released and the order is cancelled." -msgstr "Ми додали можливість утримувати товар на складі для неоплачених замовлень (за умовчуванням 60 хвилин). Коли цей час спливає, і замовлення не було оплачено, замовлення анулюється і резервування скасовується." - -#: admin/includes/welcome.php:306 -#@ woocommerce -msgid "Improved Line-item storage" -msgstr "Покращене по-позиційне зберігання" - -#: admin/includes/welcome.php:307 -#@ woocommerce -msgid "We have changed how order items get stored making them easier (and faster) to access for reporting. Order items are no longer serialised within an order - they are stored within their own table." -msgstr "" - -#: admin/includes/welcome.php:311 -#@ woocommerce -msgid "Autoload" -msgstr "Автозавантаження" - -#: admin/includes/welcome.php:312 -#@ woocommerce -msgid "We have setup autoloading for classes - this has dramatically reduced memory usage in 2.0." -msgstr "Ми додали автозавантаження класів - це суттєво зменшило використання пам'яті в вер. 2.0." - -#: admin/includes/welcome.php:319 -#@ woocommerce -msgid "Go to WooCommerce Settings" -msgstr "Перейти до налаштувань WooCommerce" - -#: admin/includes/welcome.php:337 -#@ woocommerce -msgid "WooCommerce is developed and maintained by a worldwide team of passionate individuals and backed by an awesome developer community. Want to see your name? Contribute to WooCommerce." -msgstr "" - -#: admin/includes/welcome.php:363 -#, php-format -#@ woocommerce -msgid "View %s" -msgstr "Перегляд %s" - -#: admin/post-types/product.php:31 -#@ woocommerce -msgid "Make a duplicate from this product" -msgstr "Зробити дублікат цього товару" - -#: admin/post-types/product.php:32 -#@ woocommerce -msgid "Duplicate" -msgstr "Дублікат" - -#: admin/post-types/product.php:61 -#@ woocommerce -msgid "Copy to a new draft" -msgstr "Копіювати до нової чернетки" - -#: admin/post-types/product.php:86 -#: admin/woocommerce-admin-taxonomies.php:297 -#@ woocommerce -msgid "Image" -msgstr "Зображення" - -#: admin/post-types/product.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:376 -#: admin/post-types/writepanels/writepanel-product_data.php:470 -#: admin/woocommerce-admin-attributes.php:240 -#: admin/woocommerce-admin-attributes.php:276 -#: admin/woocommerce-admin-attributes.php:314 -#: admin/woocommerce-admin-attributes.php:337 -#: admin/woocommerce-admin-attributes.php:381 -#: admin/woocommerce-admin-attributes.php:406 -#: admin/woocommerce-admin-init.php:437 -#: classes/widgets/class-wc-widget-product-categories.php:191 -#: templates/single-product-reviews.php:84 -#: woocommerce-ajax.php:1173 -#@ woocommerce -msgid "Name" -msgstr "Назва" - -#: admin/post-types/product.php:91 -#: admin/post-types/product.php:557 -#: admin/post-types/writepanels/variation-admin-html.php:52 -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#: admin/woocommerce-admin-reports.php:2099 -#: admin/woocommerce-admin-reports.php:2135 -#@ woocommerce -msgid "SKU" -msgstr "Артикул" - -#: admin/post-types/product.php:94 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:82 -#: admin/woocommerce-admin-content.php:63 -#: admin/woocommerce-admin-reports.php:90 -#@ woocommerce -msgid "Stock" -msgstr "Склад" - -#: admin/post-types/product.php:96 -#: admin/post-types/product.php:568 -#: admin/post-types/product.php:789 -#: admin/woocommerce-admin-functions.php:202 -#: templates/cart/cart.php:29 -#: templates/emails/admin-new-order.php:24 -#: templates/emails/customer-completed-order.php:25 -#: templates/emails/customer-invoice.php:29 -#: templates/emails/customer-note.php:29 -#: templates/emails/customer-processing-order.php:25 -#@ woocommerce -msgid "Price" -msgstr "Ціна" - -#: admin/post-types/product.php:98 -#@ woocommerce -msgid "Categories" -msgstr "Категорії" - -#: admin/post-types/product.php:99 -#@ woocommerce -msgid "Tags" -msgstr "Мітки" - -#: admin/post-types/product.php:100 -#: admin/post-types/product.php:632 -#: admin/post-types/product.php:906 -#: admin/post-types/writepanels/writepanel-product_data.php:1059 -#: admin/woocommerce-admin-init.php:450 -#@ woocommerce -msgid "Featured" -msgstr "Популярні" - -#: admin/post-types/product.php:101 -#: admin/woocommerce-admin-attributes.php:258 -#: admin/woocommerce-admin-attributes.php:316 -#: admin/woocommerce-admin-attributes.php:393 -#@ woocommerce -msgid "Type" -msgstr "Тип" - -#: admin/post-types/product.php:102 -#: admin/post-types/shop_order.php:50 -#: templates/myaccount/my-orders.php:33 -#@ woocommerce -msgid "Date" -msgstr "Дата" - -#: admin/post-types/product.php:151 -#@ default -msgid "Edit this item" -msgstr "" - -#: admin/post-types/product.php:151 -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#: admin/post-types/writepanels/writepanel-order_data.php:387 -#: admin/post-types/writepanels/writepanel-product_data.php:1062 -#: admin/woocommerce-admin-attributes.php:330 -#: templates/myaccount/my-address.php:45 -#: woocommerce.php:951 -#: woocommerce.php:987 -#: woocommerce.php:1024 -#: woocommerce.php:1062 -#: woocommerce.php:1100 -#@ default -#@ woocommerce -msgid "Edit" -msgstr "Редагувати" - -#: admin/post-types/product.php:152 -#@ default -msgid "Edit this item inline" -msgstr "" - -#: admin/post-types/product.php:152 -#@ default -msgid "Quick Edit" -msgstr "" - -#: admin/post-types/product.php:156 -#: admin/post-types/shop_coupon.php:65 -#@ default -msgid "Restore this item from the Trash" -msgstr "" - -#: admin/post-types/product.php:156 -#: admin/post-types/shop_coupon.php:65 -#@ default -msgid "Restore" -msgstr "" - -#: admin/post-types/product.php:158 -#: admin/post-types/shop_coupon.php:67 -#@ default -msgid "Move this item to the Trash" -msgstr "Перемістити це в Кошик" - -#: admin/post-types/product.php:158 -#: admin/post-types/shop_coupon.php:67 -#@ default -msgid "Trash" -msgstr "" - -#: admin/post-types/product.php:160 -#: admin/post-types/shop_coupon.php:69 -#@ default -msgid "Delete this item permanently" -msgstr "" - -#: admin/post-types/product.php:160 -#: admin/post-types/shop_coupon.php:69 -#: admin/post-types/writepanels/writepanel-order_data.php:463 -#@ default -#@ woocommerce -msgid "Delete Permanently" -msgstr "Видалити назавжди" - -#: admin/post-types/product.php:165 -#, php-format -#@ default -msgid "Preview “%s”" -msgstr "" - -#: admin/post-types/product.php:165 -#@ default -msgid "Preview" -msgstr "" - -#: admin/post-types/product.php:167 -#, php-format -#@ default -msgid "View “%s”" -msgstr "Перегляд “%s”" - -#: admin/post-types/product.php:167 -#: admin/post-types/shop_order.php:171 -#: templates/myaccount/my-orders.php:82 -#@ default -#@ woocommerce -msgid "View" -msgstr "Перегляд" - -#: admin/post-types/product.php:214 -#@ woocommerce -msgid "Grouped" -msgstr "Згрупований" - -#: admin/post-types/product.php:216 -#@ woocommerce -msgid "External/Affiliate" -msgstr "Зовнішній/Приєднаний" - -#: admin/post-types/product.php:220 -#: admin/post-types/product.php:407 -#: admin/post-types/writepanels/variation-admin-html.php:176 -#: admin/post-types/writepanels/writepanel-product_data.php:52 -#@ woocommerce -msgid "Virtual" -msgstr "Віртуальний" - -#: admin/post-types/product.php:222 -#: admin/post-types/product.php:403 -#: admin/post-types/writepanels/variation-admin-html.php:174 -#: admin/post-types/writepanels/writepanel-product_data.php:58 -#@ woocommerce -msgid "Downloadable" -msgstr "Скачуваний" - -#: admin/post-types/product.php:224 -#@ woocommerce -msgid "Simple" -msgstr "Звичайний" - -#: admin/post-types/product.php:228 -#: admin/post-types/product.php:387 -#@ woocommerce -msgid "Variable" -msgstr "Варіативний" - -#: admin/post-types/product.php:251 -#@ woocommerce -msgid "Toggle featured" -msgstr "" - -#: admin/post-types/product.php:253 -#@ woocommerce -msgid "yes" -msgstr "так" - -#: admin/post-types/product.php:255 -#@ woocommerce -msgid "no" -msgstr "ні" - -#: admin/post-types/product.php:262 -#: admin/post-types/product.php:641 -#: admin/post-types/product.php:930 -#: admin/post-types/writepanels/writepanel-product_data.php:231 -#: classes/abstracts/abstract-wc-product.php:546 -#: classes/abstracts/abstract-wc-product.php:551 -#: classes/abstracts/abstract-wc-product.php:570 -#@ woocommerce -msgid "In stock" -msgstr "На складі" - -#: admin/post-types/product.php:264 -#: admin/post-types/product.php:642 -#: admin/post-types/product.php:931 -#: admin/post-types/writepanels/writepanel-product_data.php:232 -#: admin/woocommerce-admin-reports.php:2119 -#: classes/abstracts/abstract-wc-product.php:573 -#: classes/abstracts/abstract-wc-product.php:583 -#: classes/abstracts/abstract-wc-product.php:587 -#@ woocommerce -msgid "Out of stock" -msgstr "Немає в наявності" - -#: admin/post-types/product.php:373 -#@ woocommerce -msgid "Show all product types" -msgstr "Показати всі типи товарів" - -#: admin/post-types/product.php:381 -#: admin/post-types/writepanels/writepanel-product_data.php:39 -#@ woocommerce -msgid "Grouped product" -msgstr "Згрупований товар" - -#: admin/post-types/product.php:383 -#: admin/post-types/writepanels/writepanel-product_data.php:40 -#@ woocommerce -msgid "External/Affiliate product" -msgstr "Зовнішній/Приєднаний товар" - -#: admin/post-types/product.php:385 -#: admin/post-types/writepanels/writepanel-product_data.php:38 -#@ woocommerce -msgid "Simple product" -msgstr "Звичайний товар" - -#: admin/post-types/product.php:399 -#@ woocommerce -msgid "Show all sub-types" -msgstr "Показати всі під-типи" - -#: admin/post-types/product.php:520 -#, php-format -#@ woocommerce -msgid "[%s with SKU of %s]" -msgstr "[%s з Артикулом з %s]" - -#: admin/post-types/product.php:526 -#, php-format -#@ woocommerce -msgid "[%s with ID of %d]" -msgstr "[%s з ID з %d]" - -#: admin/post-types/product.php:552 -#: admin/post-types/product.php:783 -#: admin/post-types/writepanels/writepanels-init.php:46 -#: admin/settings/settings-init.php:508 -#@ woocommerce -msgid "Product Data" -msgstr "Інформація про товар" - -#: admin/post-types/product.php:570 -#@ woocommerce -msgid "Regular price" -msgstr "Звичайна ціна" - -#: admin/post-types/product.php:575 -#: admin/post-types/product.php:813 -#@ woocommerce -msgid "Sale" -msgstr "Акція" - -#: admin/post-types/product.php:577 -#@ woocommerce -msgid "Sale price" -msgstr "Акційна ціна" - -#: admin/post-types/product.php:588 -#: admin/post-types/product.php:839 -#: admin/post-types/writepanels/variation-admin-html.php:96 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:83 -#: admin/post-types/writepanels/writepanel-product_data.php:273 -#: templates/single-product/product-attributes.php:28 -#@ woocommerce -msgid "Weight" -msgstr "Вага" - -#: admin/post-types/product.php:599 -#: admin/post-types/product.php:863 -#@ woocommerce -msgid "L/W/H" -msgstr "Д/Ш/В" - -#: admin/post-types/product.php:601 -#: admin/post-types/product.php:879 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:286 -#@ woocommerce -msgid "Length" -msgstr "Довжина" - -#: admin/post-types/product.php:602 -#: admin/post-types/product.php:880 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:85 -#: admin/post-types/writepanels/writepanel-product_data.php:287 -#: admin/woocommerce-admin-settings.php:797 -#@ woocommerce -msgid "Width" -msgstr "Ширина" - -#: admin/post-types/product.php:603 -#: admin/post-types/product.php:881 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:86 -#: admin/post-types/writepanels/writepanel-product_data.php:288 -#: admin/woocommerce-admin-settings.php:799 -#@ woocommerce -msgid "Height" -msgstr "Висота" - -#: admin/post-types/product.php:613 -#: admin/post-types/product.php:887 -#@ woocommerce -msgid "Visibility" -msgstr "Видимість" - -#: admin/post-types/product.php:618 -#: admin/post-types/product.php:893 -#@ woocommerce -msgid "Catalog & search" -msgstr "Каталог & пошук" - -#: admin/post-types/product.php:619 -#: admin/post-types/product.php:894 -#: admin/post-types/writepanels/writepanel-product_data.php:1048 -#: admin/woocommerce-admin-content.php:46 -#: admin/woocommerce-admin-settings.php:183 -#@ woocommerce -msgid "Catalog" -msgstr "Каталог" - -#: admin/post-types/product.php:620 -#: admin/post-types/product.php:895 -#: admin/post-types/writepanels/writepanel-product_data.php:1049 -#: woocommerce-template.php:1498 -#: woocommerce.php:947 -#@ woocommerce -msgid "Search" -msgstr "Пошук" - -#: admin/post-types/product.php:621 -#: admin/post-types/product.php:896 -#: admin/post-types/writepanels/writepanel-product_data.php:1050 -#@ woocommerce -msgid "Hidden" -msgstr "Прихований" - -#: admin/post-types/product.php:636 -#: admin/post-types/product.php:924 -#@ woocommerce -msgid "In stock?" -msgstr "На складі?" - -#: admin/post-types/product.php:657 -#: admin/post-types/product.php:942 -#: admin/post-types/writepanels/writepanel-product_data.php:212 -#@ woocommerce -msgid "Manage stock?" -msgstr "Управляти складом?" - -#: admin/post-types/product.php:661 -#: admin/post-types/product.php:961 -#: admin/post-types/product.php:977 -#: admin/post-types/writepanels/writepanel-product_data.php:219 -#@ woocommerce -msgid "Stock Qty" -msgstr "К-ть на сладі" - -#: admin/post-types/product.php:794 -#: admin/post-types/product.php:818 -#: admin/post-types/product.php:844 -#: admin/post-types/product.php:868 -#: admin/post-types/product.php:892 -#: admin/post-types/product.php:911 -#: admin/post-types/product.php:929 -#: admin/post-types/product.php:947 -#: admin/post-types/product.php:966 -#@ woocommerce -msgid "— No Change —" -msgstr "— Не змінювати —" - -#: admin/post-types/product.php:795 -#: admin/post-types/product.php:819 -#: admin/post-types/product.php:845 -#: admin/post-types/product.php:869 -#: admin/post-types/product.php:967 -#@ woocommerce -msgid "Change to:" -msgstr "Змінити на:" - -#: admin/post-types/product.php:796 -#: admin/post-types/product.php:820 -#@ woocommerce -msgid "Increase by (fixed amount or %):" -msgstr "Збільшити на (фіксовану величину або %):" - -#: admin/post-types/product.php:797 -#: admin/post-types/product.php:821 -#@ woocommerce -msgid "Decrease by (fixed amount or %):" -msgstr "Зменшити на (фіксовану величину або %):" - -#: admin/post-types/product.php:807 -#: admin/post-types/product.php:832 -#@ woocommerce -msgid "Enter price" -msgstr "Введіть ціну" - -#: admin/post-types/product.php:822 -#@ woocommerce -msgid "Decrease regular price by (fixed amount or %):" -msgstr "Змешити постійну ціну на (фіксовану величину або %):" - -#: admin/post-types/product.php:912 -#: admin/post-types/product.php:948 -#: admin/post-types/shop_order.php:190 -#: admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:286 -#@ woocommerce -msgid "Yes" -msgstr "Так" - -#: admin/post-types/product.php:913 -#: admin/post-types/product.php:949 -#: admin/post-types/shop_order.php:192 -#: admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:286 -#@ woocommerce -msgid "No" -msgstr "Ні" - -#: admin/post-types/product.php:1183 -#@ woocommerce -msgid "Sort Products" -msgstr "Сортування товарів" - -#: admin/post-types/product.php:1222 -#@ woocommerce -msgid "Insert into product" -msgstr "Вставити в товар" - -#: admin/post-types/product.php:1223 -#@ woocommerce -msgid "Uploaded to this product" -msgstr "Завантажено в цей товар" - -#: admin/post-types/shop_coupon.php:25 -#@ woocommerce -msgid "Code" -msgstr "Код" - -#: admin/post-types/shop_coupon.php:26 -#@ woocommerce -msgid "Coupon type" -msgstr "Тип купону" - -#: admin/post-types/shop_coupon.php:27 -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -#@ woocommerce -msgid "Coupon amount" -msgstr "Розмір купону" - -#: admin/post-types/shop_coupon.php:28 -#: classes/gateways/cod/class-wc-gateway-cod.php:94 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:150 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:133 -#: woocommerce-template.php:751 -#@ woocommerce -msgid "Description" -msgstr "Опис" - -#: admin/post-types/shop_coupon.php:29 -#@ woocommerce -msgid "Product IDs" -msgstr "ID товару" - -#: admin/post-types/shop_coupon.php:30 -#@ woocommerce -msgid "Usage / Limit" -msgstr "Використання / Обмеження" - -#: admin/post-types/shop_coupon.php:31 -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -#@ woocommerce -msgid "Expiry date" -msgstr "Дата закінчення" - -#: admin/post-types/shop_coupon.php:56 -#@ woocommerce -msgid "Edit coupon" -msgstr "Редагувати купон" - -#: admin/post-types/shop_coupon.php:114 -#, php-format -#@ woocommerce -msgid "%s / %s" -msgstr "%s / %s" - -#: admin/post-types/shop_coupon.php:116 -#, php-format -#@ woocommerce -msgid "%s / ∞" -msgstr "%s / ∞" - -#: admin/post-types/shop_coupon.php:149 -#@ woocommerce -msgid "Show all types" -msgstr "Показати всі типи" - -#: admin/post-types/shop_order.php:43 -#: admin/settings/settings-payment-gateways.php:29 -#: admin/settings/settings-shipping-methods.php:31 -#: templates/myaccount/my-orders.php:34 -#@ woocommerce -msgid "Status" -msgstr "Стан" - -#: admin/post-types/shop_order.php:44 -#: templates/myaccount/my-orders.php:32 -#: woocommerce.php:1059 -#@ woocommerce -msgid "Order" -msgstr "Замовлення" - -#: admin/post-types/shop_order.php:45 -#@ woocommerce -msgid "Billing" -msgstr "Рахунки" - -#: admin/post-types/shop_order.php:46 -#: admin/post-types/writepanels/writepanel-order_data.php:539 -#: admin/post-types/writepanels/writepanel-product_data.php:81 -#: admin/settings/settings-tax-rates.php:52 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-content.php:49 -#: admin/woocommerce-admin-settings.php:187 -#: templates/cart/totals.php:46 -#: templates/checkout/review-order.php:45 -#@ woocommerce -msgid "Shipping" -msgstr "Доставка" - -#: admin/post-types/shop_order.php:47 -#: templates/cart/totals.php:92 -#: templates/checkout/review-order.php:91 -#@ woocommerce -msgid "Order Total" -msgstr "Підсумок замовлення" - -#: admin/post-types/shop_order.php:48 -#: admin/post-types/writepanels/writepanels-init.php:71 -#: classes/class-wc-checkout.php:89 -#@ woocommerce -msgid "Order Notes" -msgstr "Нотатки до замовлення" - -#: admin/post-types/shop_order.php:49 -#@ woocommerce -msgid "Customer Notes" -msgstr "Примітка клієнта" - -#: admin/post-types/shop_order.php:51 -#: admin/post-types/writepanels/writepanel-order_data.php:386 -#: admin/post-types/writepanels/writepanel-order_data.php:433 -#@ woocommerce -msgid "Actions" -msgstr "Дії" - -#: admin/post-types/shop_order.php:95 -#: admin/post-types/writepanels/writepanel-order_data.php:93 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:120 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:180 -#: woocommerce-ajax.php:1654 -#@ woocommerce -msgid "Guest" -msgstr "Гість" - -#: admin/post-types/shop_order.php:98 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:321 -#, php-format -#@ woocommerce -msgid "Order %s" -msgstr "Замовлення %s" - -#: admin/post-types/shop_order.php:98 -#@ woocommerce -msgid "made by" -msgstr "Зроблено" - -#: admin/post-types/shop_order.php:101 -#: templates/emails/admin-new-order.php:53 -#: templates/emails/customer-completed-order.php:54 -#: templates/emails/customer-note.php:58 -#: templates/emails/customer-processing-order.php:54 -#: templates/emails/plain/admin-new-order.php:41 -#: templates/emails/plain/customer-completed-order.php:41 -#: templates/emails/plain/customer-note.php:49 -#: templates/emails/plain/customer-processing-order.php:41 -#: templates/order/order-details.php:101 -#@ woocommerce -msgid "Email:" -msgstr "Email:" - -#: admin/post-types/shop_order.php:104 -#: templates/emails/admin-new-order.php:56 -#: templates/emails/customer-completed-order.php:57 -#: templates/emails/customer-note.php:61 -#: templates/emails/customer-processing-order.php:57 -#: templates/emails/plain/admin-new-order.php:44 -#: templates/emails/plain/customer-completed-order.php:44 -#: templates/emails/plain/customer-note.php:52 -#: templates/emails/plain/customer-processing-order.php:44 -#@ woocommerce -msgid "Tel:" -msgstr "Тел:" - -#: admin/post-types/shop_order.php:114 -#: admin/post-types/shop_order.php:123 -#@ woocommerce -msgid "Via" -msgstr "через" - -#: admin/post-types/shop_order.php:131 -#@ woocommerce -msgid "Unpublished" -msgstr "Неопубліковане" - -#: admin/post-types/shop_order.php:133 -#@ woocommerce -msgid "Y/m/d g:i:s A" -msgstr "" - -#: admin/post-types/shop_order.php:139 -#, php-format -#@ woocommerce -msgid "%s ago" -msgstr "%s тому" - -#: admin/post-types/shop_order.php:141 -#@ woocommerce -msgid "Y/m/d" -msgstr "Р/м/д" - -#: admin/post-types/shop_order.php:158 -#: admin/woocommerce-admin-dashboard.php:176 -#@ woocommerce -msgid "Processing" -msgstr "Виконується" - -#: admin/post-types/shop_order.php:165 -#@ woocommerce -msgid "Complete" -msgstr "Завершено" - -#: admin/post-types/shop_order.php:282 -#@ woocommerce -msgid "Show all statuses" -msgstr "Показати всі статуси" - -#: admin/post-types/shop_order.php:301 -#: admin/post-types/shop_order.php:326 -#@ woocommerce -msgid "Show all customers" -msgstr "Показати всіх клієнтів" - -#: admin/post-types/writepanels/order-download-permission-html.php:6 -#@ woocommerce -msgid "Revoke Access" -msgstr "Заборонити доступ" - -#: admin/post-types/writepanels/order-download-permission-html.php:7 -#: admin/post-types/writepanels/variation-admin-html.php:7 -#: admin/post-types/writepanels/writepanel-product_data.php:369 -#: admin/post-types/writepanels/writepanel-product_data.php:463 -#: admin/woocommerce-admin-init.php:439 -#@ woocommerce -msgid "Click to toggle" -msgstr "Клацніть для перемикання" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -#, php-format -#@ woocommerce -msgid "File %d: %s" -msgstr "Файл %d: %s" - -#: admin/post-types/writepanels/order-download-permission-html.php:9 -#, php-format -#@ woocommerce -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "Скачано %s раз" -msgstr[1] "Скачано %s раз" -msgstr[2] "Скачано %s раз" - -#: admin/post-types/writepanels/order-download-permission-html.php:16 -#@ woocommerce -msgid "Downloads Remaining" -msgstr "Залишилось завантажень" - -#: admin/post-types/writepanels/order-download-permission-html.php:19 -#: admin/post-types/writepanels/variation-admin-html.php:151 -#: admin/post-types/writepanels/variation-admin-html.php:159 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -#@ woocommerce -msgid "Unlimited" -msgstr "Необмежено" - -#: admin/post-types/writepanels/order-download-permission-html.php:22 -#@ woocommerce -msgid "Access Expires" -msgstr "Час доступу закінчується" - -#: admin/post-types/writepanels/order-download-permission-html.php:23 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -#@ woocommerce -msgid "Never" -msgstr "Ніколи" - -#: admin/post-types/writepanels/order-fee-html.php:10 -#@ woocommerce -msgid "Fee Name" -msgstr "Назва для оплати" - -#: admin/post-types/writepanels/order-fee-html.php:17 -#: admin/post-types/writepanels/order-item-html.php:89 -#@ woocommerce -msgid "Tax class" -msgstr "Клас податку" - -#: admin/post-types/writepanels/order-fee-html.php:19 -#: admin/post-types/writepanels/order-tax-html.php:8 -#: admin/post-types/writepanels/writepanel-order_data.php:561 -#: admin/post-types/writepanels/writepanel-order_data.php:666 -#: admin/woocommerce-admin-reports.php:1658 -#: admin/woocommerce-admin-reports.php:2671 -#: admin/woocommerce-admin-reports.php:2680 -#: admin/woocommerce-admin-users.php:90 -#: admin/woocommerce-admin-users.php:112 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:499 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:500 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:110 -#: templates/order/order-details.php:119 -#: templates/order/order-details.php:134 -#@ woocommerce -msgid "N/A" -msgstr "Н/Д" - -#: admin/post-types/writepanels/order-fee-html.php:20 -#: admin/post-types/writepanels/writepanel-product_data.php:179 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:111 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:85 -#@ woocommerce -msgid "Taxable" -msgstr "Неоподатковуваний" - -#: admin/post-types/writepanels/order-fee-html.php:25 -#: admin/post-types/writepanels/order-item-html.php:96 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:53 -#: admin/post-types/writepanels/writepanel-product_data.php:186 -#: admin/settings/settings-init.php:972 -#: admin/settings/settings-tax-rates.php:29 -#: admin/woocommerce-admin-settings.php:228 -#: woocommerce-ajax.php:551 -#@ woocommerce -msgid "Standard" -msgstr "Стандарт" - -#: admin/post-types/writepanels/order-fee-html.php:43 -#: admin/post-types/writepanels/order-item-html.php:115 -#: admin/woocommerce-admin-reports.php:1562 -#: admin/woocommerce-admin-reports.php:1615 -#: admin/woocommerce-admin-reports.php:2386 -#: admin/woocommerce-admin-reports.php:2555 -#: admin/woocommerce-admin-reports.php:2633 -#: templates/cart/cart.php:31 -#: templates/checkout/review-order.php:22 -#: templates/myaccount/my-orders.php:35 -#: templates/order/order-details.php:21 -#@ woocommerce -msgid "Total" -msgstr "Всього" - -#: admin/post-types/writepanels/order-item-html.php:10 -#@ woocommerce -msgid "Product ID:" -msgstr "ID товару:" - -#: admin/post-types/writepanels/order-item-html.php:13 -#@ woocommerce -msgid "Variation ID:" -msgstr "ID Варіанту:" - -#: admin/post-types/writepanels/order-item-html.php:16 -#@ woocommerce -msgid "Product SKU:" -msgstr "Артикул товара:" - -#: admin/post-types/writepanels/order-item-html.php:44 -#@ woocommerce -msgid "Add meta" -msgstr "Додати meta" - -#: admin/post-types/writepanels/order-item-html.php:117 -#: templates/cart/mini-cart.php:63 -#@ woocommerce -msgid "Subtotal" -msgstr "Попередній підсумок" - -#: admin/post-types/writepanels/order-tax-html.php:6 -#@ woocommerce -msgid "Tax Rate:" -msgstr "Ставка податку:" - -#: admin/post-types/writepanels/order-tax-html.php:16 -#: admin/post-types/writepanels/writepanel-order_data.php:630 -#@ woocommerce -msgid "Sales Tax:" -msgstr "Податки на акційну ціну:" - -#: admin/post-types/writepanels/order-tax-html.php:20 -#: admin/post-types/writepanels/writepanel-order_data.php:638 -#@ woocommerce -msgid "Shipping Tax:" -msgstr "Оподаткування доставки:" - -#: admin/post-types/writepanels/variation-admin-html.php:6 -#: admin/post-types/writepanels/writepanel-product_data.php:368 -#: admin/post-types/writepanels/writepanel-product_data.php:462 -#: admin/woocommerce-admin-init.php:438 -#@ woocommerce -msgid "Remove" -msgstr "Прибрати" - -#: admin/post-types/writepanels/variation-admin-html.php:20 -#@ woocommerce -msgid "Any" -msgstr "Будь-який" - -#: admin/post-types/writepanels/variation-admin-html.php:52 -#@ woocommerce -msgid "Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "Введіть артикул для цього варіанту або залиште порожнім, щоб використовувати артикул батьківського продукту." - -#: admin/post-types/writepanels/variation-admin-html.php:63 -#@ woocommerce -msgid "Stock Qty:" -msgstr "К-ть на складі:" - -#: admin/post-types/writepanels/variation-admin-html.php:63 -#@ woocommerce -msgid "Enter a quantity to enable stock management at variation level, or leave blank to use the parent product's options." -msgstr "Введіть кількість щоб включити управління на рівні варіантів, або залиште порожнім, щоб використовувати налаштування батьківського товару." - -#: admin/post-types/writepanels/variation-admin-html.php:72 -#@ woocommerce -msgid "Regular Price:" -msgstr "Звичайна ціна:" - -#: admin/post-types/writepanels/variation-admin-html.php:73 -#@ woocommerce -msgid "Variation price (required)" -msgstr "Варіативна ціна (обов'язково)" - -#: admin/post-types/writepanels/variation-admin-html.php:76 -#@ woocommerce -msgid "Sale Price:" -msgstr "Акційна ціна:" - -#: admin/post-types/writepanels/variation-admin-html.php:76 -#: admin/post-types/writepanels/writepanel-product_data.php:125 -#@ woocommerce -msgid "Schedule" -msgstr "Розклад" - -#: admin/post-types/writepanels/variation-admin-html.php:76 -#@ woocommerce -msgid "Cancel schedule" -msgstr "Відмінити розклад" - -#: admin/post-types/writepanels/variation-admin-html.php:83 -#@ woocommerce -msgid "Sale start date:" -msgstr "Дата початку акції:" - -#: admin/post-types/writepanels/variation-admin-html.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:136 -#@ woocommerce -msgctxt "placeholder" -msgid "From…" -msgstr "З…" - -#: admin/post-types/writepanels/variation-admin-html.php:87 -#@ woocommerce -msgid "Sale end date:" -msgstr "Дата закінчення акції:" - -#: admin/post-types/writepanels/variation-admin-html.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:137 -#@ woocommerce -msgctxt "placeholder" -msgid "To…" -msgstr "До…" - -#: admin/post-types/writepanels/variation-admin-html.php:96 -#@ woocommerce -msgid "Enter a weight for this variation or leave blank to use the parent product weight." -msgstr "Введіть вагу для цього варіанту товару, або залиште порожнім, щоб використовувати вагу батьківського товару." - -#: admin/post-types/writepanels/variation-admin-html.php:104 -#@ woocommerce -msgid "Dimensions (L×W×H)" -msgstr "Розміри (Д×Ш×В)" - -#: admin/post-types/writepanels/variation-admin-html.php:115 -#@ woocommerce -msgid "Shipping class:" -msgstr "Клас доставки:" - -#: admin/post-types/writepanels/variation-admin-html.php:119 -#: admin/post-types/writepanels/variation-admin-html.php:132 -#: woocommerce-ajax.php:550 -#@ woocommerce -msgid "Same as parent" -msgstr "Як у батьківського" - -#: admin/post-types/writepanels/variation-admin-html.php:130 -#@ woocommerce -msgid "Tax class:" -msgstr "Клас оподаткування:" - -#: admin/post-types/writepanels/variation-admin-html.php:143 -#@ woocommerce -msgid "File paths:" -msgstr "Шляхи до файлу:" - -#: admin/post-types/writepanels/variation-admin-html.php:143 -#@ woocommerce -msgid "Enter one or more File Paths, one per line, to make this variation a downloadable product, or leave blank." -msgstr "Введіть один або декілька шляхів до файлу, один на рядок, щоб зробити цей варіант товару скачуваним, або залиште порожнім." - -#: admin/post-types/writepanels/variation-admin-html.php:144 -#: admin/post-types/writepanels/writepanel-product_data.php:153 -#@ woocommerce -msgid "File paths/URLs, one per line" -msgstr "Шляхи до файлів/URLs, один на рядок" - -#: admin/post-types/writepanels/variation-admin-html.php:145 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -#@ woocommerce -msgid "Choose a file" -msgstr "Оберіть файл" - -#: admin/post-types/writepanels/variation-admin-html.php:145 -#@ woocommerce -msgid "Upload" -msgstr "Завантажити" - -#: admin/post-types/writepanels/variation-admin-html.php:145 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -#@ woocommerce -msgid "Insert file URL" -msgstr "Вставити URL адресу" - -#: admin/post-types/writepanels/variation-admin-html.php:150 -#@ woocommerce -msgid "Download Limit:" -msgstr "Обмеження завантажень:" - -#: admin/post-types/writepanels/variation-admin-html.php:150 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -#@ woocommerce -msgid "Leave blank for unlimited re-downloads." -msgstr "Залиште порожнім, щоб не обмежувати кількість перезавантажень" - -#: admin/post-types/writepanels/variation-admin-html.php:158 -#@ woocommerce -msgid "Download Expiry:" -msgstr "Час закінчення завантаження:" - -#: admin/post-types/writepanels/variation-admin-html.php:158 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -#@ woocommerce -msgid "Enter the number of days before a download link expires, or leave blank." -msgstr "Введіть кількість днів до того як посилання перестане працювати, або залиште порожнім." - -#: admin/post-types/writepanels/variation-admin-html.php:172 -#@ woocommerce -msgid "Enabled" -msgstr "Включено" - -#: admin/post-types/writepanels/variation-admin-html.php:174 -#@ woocommerce -msgid "Enable this option if access is given to a downloadable file upon purchase of a product" -msgstr "Включити цю опцію якщо доступ надано до завантажуваного файлу після того як товар буде куплено." - -#: admin/post-types/writepanels/variation-admin-html.php:176 -#@ woocommerce -msgid "Enable this option if a product is not shipped or there is no shipping cost" -msgstr "Включіть цю опцію якщо товар не відправляється або доставка безкоштовна" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -#@ woocommerce -msgid "Coupon description" -msgstr "Опис купона" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -#@ woocommerce -msgid "Optionally enter a description for this coupon for your reference." -msgstr "За бажанням додайте опис для цього купона для довідки." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:42 -#@ woocommerce -msgid "Discount type" -msgstr "Тип знижки" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -#@ woocommerce -msgid "Value of the coupon." -msgstr "Значення купону" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -#@ woocommerce -msgid "Enable free shipping" -msgstr "Включення безкоштовної доставки" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -#, php-format -#@ woocommerce -msgid "Check this box if the coupon grants free shipping. The free shipping method must be enabled with the \"must use coupon\" setting checked." -msgstr "Поставте відмітку, якщо купон дає право на безкоштовку доставку. Безкоштовна доставка має бути включена з увікнутою опцією \"обов'язкове використання купона\"." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -#@ woocommerce -msgid "Individual use" -msgstr "Індивідуальне використання" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -#@ woocommerce -msgid "Check this box if the coupon cannot be used in conjunction with other coupons." -msgstr "Поставте відмітку тут якщо цей купон не може використовуватись у поєднанні з іншими купонами." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -#@ woocommerce -msgid "Apply before tax" -msgstr "Застосувати до оподаткування" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -#@ woocommerce -msgid "Check this box if the coupon should be applied before calculating cart tax." -msgstr "Виберіть цю опцію, якщо купон повинен бути введений до того як розраховується податок на кошик." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -#@ woocommerce -msgid "Exclude sale items" -msgstr "Виключити акційні товари" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -#@ woocommerce -msgid "Check this box if the coupon should not apply to items on sale. Per-item coupons will only work if the item is not on sale. Per-cart coupons will only work if there are no sale items in the cart." -msgstr "Виберіть цю опцію, якщо купон не застосовується для акційних товарів. Купони, які діють на товари будуть працювати тільки в тому випадку, якщо товар не акційний. Купони, що діють на весь кошик будуть діяти, якщо в кошику немає акційних товарів." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -#@ woocommerce -msgid "Minimum amount" -msgstr "Мінімальна сума" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -#@ woocommerce -msgid "No minimum" -msgstr "Без мінімуму" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -#@ woocommerce -msgid "This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "Це поле дозволяє Вам встановити мінімальну суму необхідну для вікористання цього купону." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:74 -#: admin/woocommerce-admin-taxonomies.php:28 -#: admin/woocommerce-admin-taxonomies.php:122 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:273 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:293 -#: woocommerce.php:982 -#@ woocommerce -msgid "Products" -msgstr "Товари" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:75 -#: admin/post-types/writepanels/writepanel-order_data.php:400 -#: admin/post-types/writepanels/writepanel-product_data.php:523 -#: admin/post-types/writepanels/writepanel-product_data.php:540 -#: admin/woocommerce-admin-reports.php:1245 -#@ woocommerce -msgid "Search for a product…" -msgstr "Пошук товару…" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:89 -#@ woocommerce -msgid "Products which need to be in the cart to use this coupon or, for \"Product Discounts\", which products are discounted." -msgstr "Продукти, які повинні бути у кошику, щоб використовувати цей купон або, \"Знижки на продукти\", які продукти зі знижкою." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:94 -#@ woocommerce -msgid "Exclude products" -msgstr "Виключити товари" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:95 -#@ woocommerce -msgid "Search for a product…" -msgstr "Пошук товарів..." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:109 -#@ woocommerce -msgid "Products which must not be in the cart to use this coupon or, for \"Product Discounts\", which products are not discounted." -msgstr "Продукти, які повинні бути у кошику, щоб використовувати цей купон або, \"Знижки на продукти\", які продукти без знижки." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:116 -#: assets/js/admin/editor_plugin_lang.php:9 -#@ woocommerce -msgid "Product categories" -msgstr "Категорії товарів" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:117 -#@ woocommerce -msgid "Any category" -msgstr "Всі категорії" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:125 -#@ woocommerce -msgid "A product must be in this category for the coupon to remain valid or, for \"Product Discounts\", products in these categories will be discounted." -msgstr "Товар повинен бути в цій категорії для того щоб можна було скористатися купоном або, для \"Продукт Купони\", продукти в цій категорії будуть зі знижкою." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:130 -#@ woocommerce -msgid "Exclude categories" -msgstr "Виключити категоії" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:131 -#@ woocommerce -msgid "No categories" -msgstr "Без категорій" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:139 -#@ woocommerce -msgid "Product must not be in this category for the coupon to remain valid or, for \"Product Discounts\", products in these categories will not be discounted." -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -#@ woocommerce -msgid "Usage limit" -msgstr "Обмеження використання" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -#@ woocommerce -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "Необмежене користування" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -#@ woocommerce -msgid "How many times this coupon can be used before it is void." -msgstr "Скільки разів цей купон може бути використаний?" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -#@ woocommerce -msgctxt "placeholder" -msgid "Never expire" -msgstr "Без строку закінчення" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -#@ woocommerce -msgid "The date this coupon will expire, YYYY-MM-DD." -msgstr "Дата закінчення дії цього купона, YYYY-MM-DD." - -#: admin/post-types/writepanels/writepanel-coupon_data.php:195 -#@ woocommerce -msgid "Coupon code already exists - customers will use the latest coupon with this code." -msgstr "Купон вже існує - клієнти будуть використовувати останній купон з цим кодом." - -#: admin/post-types/writepanels/writepanel-order_data.php:59 -#: templates/order/order-details.php:16 -#@ woocommerce -msgid "Order Details" -msgstr "Деталі замовлення" - -#: admin/post-types/writepanels/writepanel-order_data.php:62 -#@ woocommerce -msgid "Order number" -msgstr "Номер замовлення" - -#: admin/post-types/writepanels/writepanel-order_data.php:67 -#@ woocommerce -msgid "Customer IP:" -msgstr "IP клієнта:" - -#: admin/post-types/writepanels/writepanel-order_data.php:74 -#@ woocommerce -msgid "General Details" -msgstr "Загальні деталі" - -#: admin/post-types/writepanels/writepanel-order_data.php:76 -#@ woocommerce -msgid "Order status:" -msgstr "Статус замовлення:" - -#: admin/post-types/writepanels/writepanel-order_data.php:86 -#@ woocommerce -msgid "Order Date:" -msgstr "Дата замовлення:" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#@ woocommerce -msgid "h" -msgstr "г" - -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#: admin/settings/settings-init.php:567 -#@ woocommerce -msgid "m" -msgstr "хв" - -#: admin/post-types/writepanels/writepanel-order_data.php:91 -#@ woocommerce -msgid "Customer:" -msgstr "Клієнт:" - -#: admin/post-types/writepanels/writepanel-order_data.php:131 -#@ woocommerce -msgid "Customer Note:" -msgstr "Нотатки клієнта:" - -#: admin/post-types/writepanels/writepanel-order_data.php:132 -#@ woocommerce -msgid "Customer's notes about the order" -msgstr "Нотатки клієнта про замовлення" - -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#@ woocommerce -msgid "Billing Details" -msgstr "Деталі рахунку" - -#: admin/post-types/writepanels/writepanel-order_data.php:144 -#: admin/post-types/writepanels/writepanel-order_data.php:234 -#: classes/class-wc-countries.php:683 -#@ woocommerce -msgid "First Name" -msgstr "Ім'я" - -#: admin/post-types/writepanels/writepanel-order_data.php:148 -#: admin/post-types/writepanels/writepanel-order_data.php:238 -#: classes/class-wc-countries.php:688 -#@ woocommerce -msgid "Last Name" -msgstr "Прізвище" - -#: admin/post-types/writepanels/writepanel-order_data.php:152 -#: admin/post-types/writepanels/writepanel-order_data.php:242 -#: admin/woocommerce-admin-users.php:155 -#: admin/woocommerce-admin-users.php:204 -#@ woocommerce -msgid "Company" -msgstr "Компанія" - -#: admin/post-types/writepanels/writepanel-order_data.php:156 -#: admin/post-types/writepanels/writepanel-order_data.php:246 -#: admin/woocommerce-admin-users.php:159 -#: admin/woocommerce-admin-users.php:208 -#@ woocommerce -msgid "Address 1" -msgstr "Адреса 1" - -#: admin/post-types/writepanels/writepanel-order_data.php:160 -#: admin/post-types/writepanels/writepanel-order_data.php:250 -#: admin/woocommerce-admin-users.php:163 -#: admin/woocommerce-admin-users.php:212 -#@ woocommerce -msgid "Address 2" -msgstr "Адреса 2" - -#: admin/post-types/writepanels/writepanel-order_data.php:164 -#: admin/post-types/writepanels/writepanel-order_data.php:254 -#: admin/settings/settings-tax-rates.php:42 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-users.php:167 -#: admin/woocommerce-admin-users.php:216 -#: templates/cart/shipping-calculator.php:72 -#@ woocommerce -msgid "City" -msgstr "Місто" - -#: admin/post-types/writepanels/writepanel-order_data.php:168 -#: admin/post-types/writepanels/writepanel-order_data.php:258 -#: admin/woocommerce-admin-users.php:171 -#: admin/woocommerce-admin-users.php:220 -#: classes/class-wc-countries.php:970 -#@ woocommerce -msgid "Postcode" -msgstr "Поштовий індекс" - -#: admin/post-types/writepanels/writepanel-order_data.php:172 -#: admin/post-types/writepanels/writepanel-order_data.php:262 -#: admin/woocommerce-admin-users.php:179 -#: admin/woocommerce-admin-users.php:228 -#: classes/class-wc-countries.php:678 -#@ woocommerce -msgid "Country" -msgstr "Країна" - -#: admin/post-types/writepanels/writepanel-order_data.php:175 -#: admin/post-types/writepanels/writepanel-order_data.php:265 -#: templates/cart/shipping-calculator.php:28 -#: woocommerce-template.php:1334 -#@ woocommerce -msgid "Select a country…" -msgstr "Обреіть країну…" - -#: admin/post-types/writepanels/writepanel-order_data.php:178 -#: admin/post-types/writepanels/writepanel-order_data.php:268 -#: admin/woocommerce-admin-users.php:175 -#: admin/woocommerce-admin-users.php:224 -#@ woocommerce -msgid "State/County" -msgstr "Країна/штат" - -#: admin/post-types/writepanels/writepanel-order_data.php:182 -#: admin/woocommerce-admin-users.php:187 -#: templates/myaccount/form-login.php:78 -#: templates/single-product-reviews.php:86 -#@ woocommerce -msgid "Email" -msgstr "Email" - -#: admin/post-types/writepanels/writepanel-order_data.php:185 -#: classes/class-wc-countries.php:1080 -#@ woocommerce -msgid "Phone" -msgstr "Телефон" - -#: admin/post-types/writepanels/writepanel-order_data.php:193 -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#: admin/post-types/writepanels/writepanel-order_data.php:277 -#: admin/post-types/writepanels/writepanel-order_data.php:279 -#: classes/class-wc-countries.php:698 -#@ woocommerce -msgid "Address" -msgstr "Адреса" - -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#@ woocommerce -msgid "No billing address set." -msgstr "Не було вказано адреси для виставлення рахунків." - -#: admin/post-types/writepanels/writepanel-order_data.php:208 -#@ woocommerce -msgid "Load billing address" -msgstr "Завантажити адресу для рахунків." - -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#@ woocommerce -msgid "Shipping Details" -msgstr "Деталі доставки" - -#: admin/post-types/writepanels/writepanel-order_data.php:279 -#@ woocommerce -msgid "No shipping address set." -msgstr "Не задана адреси доставки." - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -#@ woocommerce -msgid "Load shipping address" -msgstr "Завантажити адресу доставки." - -#: admin/post-types/writepanels/writepanel-order_data.php:292 -#@ woocommerce -msgid "Copy from billing" -msgstr "Копіювати з рахунків" - -#: admin/post-types/writepanels/writepanel-order_data.php:339 -#@ woocommerce -msgid "Item" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#: admin/post-types/writepanels/writepanel-product_data.php:191 -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Tax Class" -msgstr "Податковий клас" - -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#@ woocommerce -msgid "Tax class for the line item" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:347 -#: templates/checkout/form-pay.php:20 -#@ woocommerce -msgid "Qty" -msgstr "К-ть" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:486 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:100 -#@ woocommerce -msgid "Cost" -msgstr "Ціна" - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -#@ woocommerce -msgid "Line subtotals are before pre-tax discounts, totals are after." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:352 -#: admin/settings/settings-tax-rates.php:387 -#: admin/settings/settings-tax-rates.php:475 -#: admin/woocommerce-admin-content.php:48 -#: admin/woocommerce-admin-settings.php:186 -#: classes/class-wc-countries.php:444 -#@ woocommerce -msgid "Tax" -msgstr "Податок" - -#: admin/post-types/writepanels/writepanel-order_data.php:388 -#@ woocommerce -msgid "Delete Lines" -msgstr "Видалити лінії" - -#: admin/post-types/writepanels/writepanel-order_data.php:390 -#@ woocommerce -msgid "Stock Actions" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:391 -#@ woocommerce -msgid "Reduce Line Stock" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:392 -#@ woocommerce -msgid "Increase Line Stock" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:396 -#: admin/post-types/writepanels/writepanel-order_data.php:456 -#@ woocommerce -msgid "Apply" -msgstr "Застосувати" - -#: admin/post-types/writepanels/writepanel-order_data.php:402 -#@ woocommerce -msgid "Add item(s)" -msgstr "Додати товар(и)" - -#: admin/post-types/writepanels/writepanel-order_data.php:403 -#@ woocommerce -msgid "Add fee" -msgstr "Додати плату" - -#: admin/post-types/writepanels/writepanel-order_data.php:434 -#@ woocommerce -msgid "Resend order emails" -msgstr "Пошти останніх замовлень" - -#: admin/post-types/writepanels/writepanel-order_data.php:465 -#@ woocommerce -msgid "Move to Trash" -msgstr "Перемістити в кошик" - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -#@ woocommerce -msgid "Save Order" -msgstr "Зберегти замовлення" - -#: admin/post-types/writepanels/writepanel-order_data.php:470 -#@ woocommerce -msgid "Save/update the order" -msgstr "Зберегти/оновити замовлення" - -#: admin/post-types/writepanels/writepanel-order_data.php:498 -#@ woocommerce -msgid "Discounts" -msgstr "Знижки" - -#: admin/post-types/writepanels/writepanel-order_data.php:502 -#: classes/class-wc-order.php:955 -#@ woocommerce -msgid "Cart Discount:" -msgstr "Знажка на кошик:" - -#: admin/post-types/writepanels/writepanel-order_data.php:502 -#@ woocommerce -msgid "Discounts before tax - calculated by comparing subtotals to totals." -msgstr "Знижки до оподаткування - розраховується шляхом порівняння проміжних підсумків і підсумків." - -#: admin/post-types/writepanels/writepanel-order_data.php:510 -#: classes/class-wc-order.php:997 -#@ woocommerce -msgid "Order Discount:" -msgstr "Знижка на замовлення:" - -#: admin/post-types/writepanels/writepanel-order_data.php:510 -#@ woocommerce -msgid "Discounts after tax - user defined." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:543 -#@ woocommerce -msgid "Label:" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:544 -#@ woocommerce -msgid "The shipping title the customer sees" -msgstr "Назва доставки, яка відобрається клієнту" - -#: admin/post-types/writepanels/writepanel-order_data.php:551 -#@ woocommerce -msgid "Cost:" -msgstr "Ціна:" - -#: admin/post-types/writepanels/writepanel-order_data.php:552 -#: classes/class-wc-countries.php:470 -#@ woocommerce -msgid "(ex. tax)" -msgstr "(без податку)" - -#: admin/post-types/writepanels/writepanel-order_data.php:559 -#@ woocommerce -msgid "Method:" -msgstr "Спосіб:" - -#: admin/post-types/writepanels/writepanel-order_data.php:581 -#: admin/post-types/writepanels/writepanel-order_data.php:583 -#: admin/post-types/writepanels/writepanel-order_data.php:682 -#: admin/post-types/writepanels/writepanel-order_data.php:684 -#@ woocommerce -msgid "Other" -msgstr "Інше" - -#: admin/post-types/writepanels/writepanel-order_data.php:597 -#@ woocommerce -msgid "Tax Rows" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:622 -#@ woocommerce -msgid "+ Add tax row" -msgstr "+ Додати рядок податку" - -#: admin/post-types/writepanels/writepanel-order_data.php:622 -#@ woocommerce -msgid "These rows contain taxes for this order. This allows you to display multiple or compound taxes rather than a single total." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:626 -#@ woocommerce -msgid "Tax Totals" -msgstr "Всього податків" - -#: admin/post-types/writepanels/writepanel-order_data.php:630 -#@ woocommerce -msgid "Total tax for line items + fees." -msgstr "Всього податків по-товарно + збори." - -#: admin/post-types/writepanels/writepanel-order_data.php:652 -#: admin/post-types/writepanels/writepanels-init.php:70 -#@ woocommerce -msgid "Order Totals" -msgstr "Підсумок замовлення" - -#: admin/post-types/writepanels/writepanel-order_data.php:656 -#: classes/class-wc-order.php:1002 -#@ woocommerce -msgid "Order Total:" -msgstr "Підсумок замовлення:" - -#: admin/post-types/writepanels/writepanel-order_data.php:664 -#@ woocommerce -msgid "Payment Method:" -msgstr "Спосіб оплати:" - -#: admin/post-types/writepanels/writepanel-order_data.php:695 -#@ woocommerce -msgid "Calc taxes" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_data.php:697 -#@ woocommerce -msgid "Calc totals" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:57 -#@ woocommerce -msgid "Choose a downloadable product…" -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:87 -#@ woocommerce -msgid "Grant Access" -msgstr "Надати доступ" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:125 -#@ woocommerce -msgid "Could not grant access - the user may already have permission for this file or billing email is not set. Ensure the billing email is set, and the order has been saved." -msgstr "" - -#: admin/post-types/writepanels/writepanel-order_downloads.php:148 -#@ woocommerce -msgid "Are you sure you want to revoke access to this download?" -msgstr "Ви впевнені, що хочете скасувати доступ до цього завантаження?" - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -#, php-format -#@ woocommerce -msgid "added %s ago" -msgstr "додано %s тому" - -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -#: woocommerce-ajax.php:1487 -#@ woocommerce -msgid "Delete note" -msgstr "Видалити замітку" - -#: admin/post-types/writepanels/writepanel-order_notes.php:50 -#@ woocommerce -msgid "There are no notes for this order yet." -msgstr "Немає заміток для цього замовлення." - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -#@ woocommerce -msgid "Add note" -msgstr "Додати замітку" - -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -#@ woocommerce -msgid "Add a note for your reference, or add a customer note (the user will be notified)." -msgstr "Додати примітку для власного використання, або додати примітку для клієнта (користувач буде повідомлений)." - -#: admin/post-types/writepanels/writepanel-order_notes.php:62 -#: classes/emails/class-wc-email-customer-note.php:29 -#@ woocommerce -msgid "Customer note" -msgstr "Примітка клієнта" - -#: admin/post-types/writepanels/writepanel-order_notes.php:63 -#@ woocommerce -msgid "Private note" -msgstr "Персональна замітка" - -#: admin/post-types/writepanels/writepanel-order_notes.php:65 -#: admin/post-types/writepanels/writepanel-product_data.php:501 -#@ woocommerce -msgid "Add" -msgstr "Додати" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -#@ woocommerce -msgid "Variations for variable products are defined here." -msgstr "Варіанти варіативних продуктів задаються тут." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -#: woocommerce.php:1020 -#@ woocommerce -msgid "Variations" -msgstr "Варіанти" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:64 -#@ woocommerce -msgid "Before adding variations, add and save some attributes on the Attributes tab." -msgstr "Перед додаванням варіантів, додайте і збережіть декілька атрибутів у вкладці Атрибути." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:66 -#@ woocommerce -msgid "Learn more" -msgstr "Докладніше" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:73 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -#@ woocommerce -msgid "Close all" -msgstr "Закрити все" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:73 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -#@ woocommerce -msgid "Expand all" -msgstr "Розгорнути все" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#@ woocommerce -msgid "Bulk edit:" -msgstr "Масове редагування:" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:76 -#@ woocommerce -msgid "Toggle "Enabled"" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:77 -#@ woocommerce -msgid "Toggle "Downloadable"" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:78 -#@ woocommerce -msgid "Toggle "Virtual"" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:79 -#@ woocommerce -msgid "Delete all variations" -msgstr "Видалити всі варіанти" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:80 -#@ woocommerce -msgid "Prices" -msgstr "Ціни" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:81 -#@ woocommerce -msgid "Sale prices" -msgstr "Акційні ціни" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:87 -#@ woocommerce -msgid "File Path" -msgstr "Шлях до файлу" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:88 -#@ woocommerce -msgid "Download limit" -msgstr "Ліміт завантажень" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:89 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -#@ woocommerce -msgid "Download Expiry" -msgstr "Термін завантаження" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:92 -#@ woocommerce -msgid "Go" -msgstr "Так" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:194 -#: woocommerce.php:1022 -#@ woocommerce -msgid "Add Variation" -msgstr "Додати варіант" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:196 -#@ woocommerce -msgid "Link all variations" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:198 -#@ woocommerce -msgid "Default selections:" -msgstr "Вибір за умовчанням:" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:211 -#@ woocommerce -msgid "No default" -msgstr "Немає" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:300 -#@ woocommerce -msgid "Are you sure you want to link all variations? This will create a new variation for each and every possible combination of variation attributes (max 50 per run)." -msgstr "Ви впевнені, що хочете зв'язати всі варіанти? Це створить новий варіант для кожної можливої ​​комбінації атрибутів варіантів (не більше 50 за один цикл)." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:317 -#@ woocommerce -msgid "variation added" -msgstr "варіант доданий" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:319 -#@ woocommerce -msgid "variations added" -msgstr "варіанти додані" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:321 -#@ woocommerce -msgid "No variations added" -msgstr "Жодного варіанту не додано" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:344 -#@ woocommerce -msgid "Are you sure you want to remove this variation?" -msgstr "Ви впевнені, що хочете видалити цей варіант?" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:400 -#@ woocommerce -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "Ви впевнені, що хочете видалити всі варіанти? Ці дію неможливо скасувати." - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:403 -#@ woocommerce -msgid "Last warning, are you sure?" -msgstr "Останнє попереджання, ви впевнені?" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:440 -#@ woocommerce -msgid "Enter a value" -msgstr "Введіть значеня" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:518 -#: admin/woocommerce-admin-taxonomies.php:62 -#: admin/woocommerce-admin-taxonomies.php:154 -#@ woocommerce -msgid "Choose an image" -msgstr "Обрати зображення" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:520 -#@ woocommerce -msgid "Set variation image" -msgstr "Встановити зображення для варіанту" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:564 -#@ woocommerce -msgid "Variable product" -msgstr "Варіативний продукт" - -#: admin/post-types/writepanels/writepanel-product-type-variable.php:630 -#: classes/class-wc-emails.php:286 -#: classes/class-wc-emails.php:318 -#: classes/class-wc-emails.php:362 -#, php-format -#@ woocommerce -msgid "Variation #%s of %s" -msgstr "Варіант #%s з %s" - -#: admin/post-types/writepanels/writepanel-product_data.php:43 -#@ woocommerce -msgid "Product Type" -msgstr "Тип товару" - -#: admin/post-types/writepanels/writepanel-product_data.php:53 -#@ woocommerce -msgid "Virtual products are intangible and aren't shipped." -msgstr "Віртуальні продукти є нематеріальними і не мають доставки." - -#: admin/post-types/writepanels/writepanel-product_data.php:59 -#@ woocommerce -msgid "Downloadable products give access to a file upon purchase." -msgstr "Завантажувані товари надають доступ до файлів після покупки." - -#: admin/post-types/writepanels/writepanel-product_data.php:77 -#: admin/woocommerce-admin-content.php:44 -#: admin/woocommerce-admin-settings.php:182 -#@ woocommerce -msgid "General" -msgstr "Загальні" - -#: admin/post-types/writepanels/writepanel-product_data.php:79 -#: admin/woocommerce-admin-content.php:47 -#: admin/woocommerce-admin-settings.php:185 -#@ woocommerce -msgid "Inventory" -msgstr "Запаси" - -#: admin/post-types/writepanels/writepanel-product_data.php:83 -#@ woocommerce -msgid "Linked Products" -msgstr "Пов'язані товари" - -#: admin/post-types/writepanels/writepanel-product_data.php:85 -#: admin/woocommerce-admin-attributes.php:306 -#: admin/woocommerce-admin-init.php:66 -#@ woocommerce -msgid "Attributes" -msgstr "Атрибути" - -#: admin/post-types/writepanels/writepanel-product_data.php:87 -#@ woocommerce -msgid "Advanced" -msgstr "Розширені" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#@ woocommerce -msgid "Stock Keeping Unit" -msgstr "Одиниці зберігання на складі" - -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#@ woocommerce -msgid "SKU refers to a Stock-keeping unit, a unique identifier for each distinct product and service that can be purchased." -msgstr "Артикул це унікальний ідентифікатор для кожного окремого продукту або послуги, які можуть бути придбані." - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -#@ woocommerce -msgid "Product URL" -msgstr "URL товару" - -#: admin/post-types/writepanels/writepanel-product_data.php:109 -#@ woocommerce -msgid "Enter the external URL to the product." -msgstr "Введіть зовнішнє посилання для цього товару" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -#@ woocommerce -msgid "Button text" -msgstr "Текст кнопки" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -#@ woocommerce -msgctxt "placeholder" -msgid "Buy product" -msgstr "Купити товар" - -#: admin/post-types/writepanels/writepanel-product_data.php:112 -#@ woocommerce -msgid "This text will be shown on the button linking to the external product." -msgstr "Цей текст буде відображатися на кнопці, що веде до зовнішнього товару." - -#: admin/post-types/writepanels/writepanel-product_data.php:119 -#@ woocommerce -msgid "Regular Price" -msgstr "Звичайна ціна" - -#: admin/post-types/writepanels/writepanel-product_data.php:125 -#@ woocommerce -msgid "Sale Price" -msgstr "Акціна ціна" - -#: admin/post-types/writepanels/writepanel-product_data.php:135 -#@ woocommerce -msgid "Sale Price Dates" -msgstr "Дати акційної ціни" - -#: admin/post-types/writepanels/writepanel-product_data.php:138 -#: admin/post-types/writepanels/writepanel-product_data.php:1083 -#: templates/myaccount/my-orders.php:77 -#@ woocommerce -msgid "Cancel" -msgstr "Відмінити" - -#: admin/post-types/writepanels/writepanel-product_data.php:152 -#@ woocommerce -msgid "File paths (one per line)" -msgstr "Шлях до файлу (один в рядок)" - -#: admin/post-types/writepanels/writepanel-product_data.php:158 -#@ woocommerce -msgid "Download Limit" -msgstr "Ліміт завантажень" - -#: admin/post-types/writepanels/writepanel-product_data.php:178 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:107 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:81 -#@ woocommerce -msgid "Tax Status" -msgstr "Стан податків" - -#: admin/post-types/writepanels/writepanel-product_data.php:180 -#@ woocommerce -msgid "Shipping only" -msgstr "Лише доставка" - -#: admin/post-types/writepanels/writepanel-product_data.php:181 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:112 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:86 -#@ woocommerce -msgid "None" -msgstr "Немає" - -#: admin/post-types/writepanels/writepanel-product_data.php:212 -#@ woocommerce -msgid "Enable stock management at product level" -msgstr "Включити керування складом на рівні товару" - -#: admin/post-types/writepanels/writepanel-product_data.php:219 -#@ woocommerce -msgid "Stock quantity. If this is a variable product this value will be used to control stock for all variations, unless you define stock at variation level." -msgstr "Кількість на складі. Якщо це продукт з варіантами, то це значення буде використовуватися для всіх варіантів, якщо ви не задасте кількість на рівні варіантів." - -#: admin/post-types/writepanels/writepanel-product_data.php:230 -#@ woocommerce -msgid "Stock status" -msgstr "Стан складу" - -#: admin/post-types/writepanels/writepanel-product_data.php:233 -#@ woocommerce -msgid "Controls whether or not the product is listed as \"in stock\" or \"out of stock\" on the frontend." -msgstr "Тут налаштовується відображення на вітрині магазину значень \"на складі\" або \"немає в наявності\"." - -#: admin/post-types/writepanels/writepanel-product_data.php:240 -#@ woocommerce -msgid "Allow Backorders?" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:241 -#@ woocommerce -msgid "Do not allow" -msgstr "Не дозволено" - -#: admin/post-types/writepanels/writepanel-product_data.php:242 -#@ woocommerce -msgid "Allow, but notify customer" -msgstr "Дозволено, але повідомляти клієнта" - -#: admin/post-types/writepanels/writepanel-product_data.php:243 -#@ woocommerce -msgid "Allow" -msgstr "Дозволено" - -#: admin/post-types/writepanels/writepanel-product_data.php:244 -#@ woocommerce -msgid "If managing stock, this controls whether or not backorders are allowed for this product and variations. If enabled, stock quantity can go below 0." -msgstr "Для управління складом. Тут контролюється можливість замовлення товару і його варіантів не залежно від кількості на сладі. Якщо включена ця опція, то кількість товарів на складі може опускатися нижче 0." - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -#@ woocommerce -msgid "Sold Individually" -msgstr "Продавати індивідуально" - -#: admin/post-types/writepanels/writepanel-product_data.php:255 -#@ woocommerce -msgid "Enable this to only allow one of this item to be bought in a single order" -msgstr "Включити це щоб дозволити купували лише одну з цих одиниць в одному замовлені" - -#: admin/post-types/writepanels/writepanel-product_data.php:273 -#@ woocommerce -msgid "Weight in decimal form" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:284 -#: templates/single-product/product-attributes.php:37 -#@ woocommerce -msgid "Dimensions" -msgstr "Розміри упаковки" - -#: admin/post-types/writepanels/writepanel-product_data.php:290 -#@ woocommerce -msgid "LxWxH in decimal form" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:311 -#@ woocommerce -msgid "No shipping class" -msgstr "Немає класів доставки" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -#@ woocommerce -msgid "Shipping class" -msgstr "Клас доставки" - -#: admin/post-types/writepanels/writepanel-product_data.php:317 -#@ woocommerce -msgid "Shipping classes are used by certain shipping methods to group similar products." -msgstr "Класи доставка використовуються певні методи доставки для групування аналогічних продуктів." - -#: admin/post-types/writepanels/writepanel-product_data.php:384 -#: admin/post-types/writepanels/writepanel-product_data.php:476 -#: admin/woocommerce-admin-init.php:440 -#@ woocommerce -msgid "Value(s)" -msgstr "Значення" - -#: admin/post-types/writepanels/writepanel-product_data.php:386 -#@ woocommerce -msgid "Select terms" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:398 -#@ woocommerce -msgid "Select all" -msgstr "Обрати все" - -#: admin/post-types/writepanels/writepanel-product_data.php:398 -#@ woocommerce -msgid "Select none" -msgstr "Нічого не обирати" - -#: admin/post-types/writepanels/writepanel-product_data.php:400 -#@ woocommerce -msgid "Add new" -msgstr "Додати нове" - -#: admin/post-types/writepanels/writepanel-product_data.php:413 -#@ woocommerce -msgid "Pipe (|) separate terms" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:427 -#: admin/post-types/writepanels/writepanel-product_data.php:482 -#: admin/woocommerce-admin-init.php:442 -#@ woocommerce -msgid "Visible on the product page" -msgstr "Відображається на сторінці товару" - -#: admin/post-types/writepanels/writepanel-product_data.php:440 -#: admin/post-types/writepanels/writepanel-product_data.php:488 -#: admin/woocommerce-admin-init.php:443 -#@ woocommerce -msgid "Used for variations" -msgstr "Використовується для варіантів" - -#: admin/post-types/writepanels/writepanel-product_data.php:477 -#: admin/woocommerce-admin-init.php:441 -#@ woocommerce -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:503 -#@ woocommerce -msgid "Custom product attribute" -msgstr "Власний атрибут товару" - -#: admin/post-types/writepanels/writepanel-product_data.php:515 -#@ woocommerce -msgid "Save attributes" -msgstr "Зберегти атрибути" - -#: admin/post-types/writepanels/writepanel-product_data.php:522 -#@ woocommerce -msgid "Up-Sells" -msgstr "Ап-Сайл" - -#: admin/post-types/writepanels/writepanel-product_data.php:537 -#@ woocommerce -msgid "Up-sells are products which you recommend instead of the currently viewed product, for example, products that are more profitable or better quality or more expensive." -msgstr "Ап-Сайл товарів, які ви рекомендували замість товару, що переглядавася, наприклад, продукти, які є більш вигідними або більш високої якості або більш дорогими." - -#: admin/post-types/writepanels/writepanel-product_data.php:539 -#@ woocommerce -msgid "Cross-Sells" -msgstr "Кросс-продажі" - -#: admin/post-types/writepanels/writepanel-product_data.php:555 -#@ woocommerce -msgid "Cross-sells are products which you promote in the cart, based on the current product." -msgstr "Кросс-продажі продуктів які ви рекламуєте в кошику, відштовухючись від даного продукту." - -#: admin/post-types/writepanels/writepanel-product_data.php:565 -#@ woocommerce -msgid "Choose a grouped product…" -msgstr "Обрати згруповані товари…" - -#: admin/post-types/writepanels/writepanel-product_data.php:591 -#@ woocommerce -msgid "Grouping" -msgstr "Групування" - -#: admin/post-types/writepanels/writepanel-product_data.php:591 -#@ woocommerce -msgid "Set this option to make this product part of a grouped product." -msgstr "Оберіть цю опцію, щоб зробити товар частиною згрупованого товару." - -#: admin/post-types/writepanels/writepanel-product_data.php:611 -#@ woocommerce -msgid "Purchase Note" -msgstr "Коментар до покупки" - -#: admin/post-types/writepanels/writepanel-product_data.php:611 -#@ woocommerce -msgid "Enter an optional note to send the customer after purchase." -msgstr "Введіть додаткове повідомлення для покупця, яке буде відправлене йому після покупки." - -#: admin/post-types/writepanels/writepanel-product_data.php:618 -#@ woocommerce -msgid "Menu order" -msgstr "Порядок меню" - -#: admin/post-types/writepanels/writepanel-product_data.php:618 -#@ woocommerce -msgid "Custom ordering position." -msgstr "Власне розташування." - -#: admin/post-types/writepanels/writepanel-product_data.php:626 -#@ woocommerce -msgid "Enable reviews" -msgstr "Включити відгуки" - -#: admin/post-types/writepanels/writepanel-product_data.php:715 -#@ woocommerce -msgid "Product SKU must be unique." -msgstr "Артикул товару має бути унікальним." - -#: admin/post-types/writepanels/writepanel-product_data.php:1047 -#@ woocommerce -msgid "Catalog/search" -msgstr "Каталог/пошук" - -#: admin/post-types/writepanels/writepanel-product_data.php:1054 -#@ woocommerce -msgid "Catalog visibility:" -msgstr "Відображення у каталозі:" - -#: admin/post-types/writepanels/writepanel-product_data.php:1070 -#@ woocommerce -msgid "Define the loops this product should be visible in. The product will still be accessible directly." -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:1076 -#@ woocommerce -msgid "Enable this option to feature this product." -msgstr "Включити цю опцію щоб зробити товар спеціальним." - -#: admin/post-types/writepanels/writepanel-product_data.php:1078 -#@ woocommerce -msgid "Featured Product" -msgstr "" - -#: admin/post-types/writepanels/writepanel-product_data.php:1082 -#@ woocommerce -msgid "OK" -msgstr "ОК" - -#: admin/post-types/writepanels/writepanel-product_images.php:43 -#: admin/post-types/writepanels/writepanel-product_images.php:103 -#@ woocommerce -msgid "Delete image" -msgstr "Видалити зображення" - -#: admin/post-types/writepanels/writepanel-product_images.php:43 -#: admin/post-types/writepanels/writepanel-product_images.php:103 -#: admin/woocommerce-admin-attributes.php:330 -#@ woocommerce -msgid "Delete" -msgstr "Видалити" - -#: admin/post-types/writepanels/writepanel-product_images.php:54 -#@ woocommerce -msgid "Add product gallery images" -msgstr "Додати зображення до галереї товару" - -#: admin/post-types/writepanels/writepanel-product_images.php:80 -#@ woocommerce -msgid "Add Images to Product Gallery" -msgstr "Додати картинку в Галерею товару" - -#: admin/post-types/writepanels/writepanel-product_images.php:82 -#@ woocommerce -msgid "Add to gallery" -msgstr "Додати галерею" - -#: admin/post-types/writepanels/writepanels-init.php:47 -#@ woocommerce -msgid "Product Gallery" -msgstr "Галерея товару" - -#: admin/post-types/writepanels/writepanels-init.php:55 -#@ woocommerce -msgid "Product Short Description" -msgstr "Короткий опис товару" - -#: admin/post-types/writepanels/writepanels-init.php:64 -#: templates/single-product-reviews.php:36 -#: templates/single-product-reviews.php:42 -#@ woocommerce -msgid "Reviews" -msgstr "Відгуки" - -#: admin/post-types/writepanels/writepanels-init.php:68 -#@ woocommerce -msgid "Order Data" -msgstr "Дані замовлення" - -#: admin/post-types/writepanels/writepanels-init.php:69 -#@ woocommerce -msgid "Order Items" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:69 -#@ woocommerce -msgid "Note: if you edit quantities or remove items from the order you will need to manually update stock levels." -msgstr "Примітка: якщо ви редагуєте кількість або видаляєте товари з замовлення ви повинні вручну оновити кількість на складі." - -#: admin/post-types/writepanels/writepanels-init.php:72 -#@ woocommerce -msgid "Downloadable Product Permissions" -msgstr "Дозволи по Цифрових товарах" - -#: admin/post-types/writepanels/writepanels-init.php:72 -#@ woocommerce -msgid "Note: Permissions for order items will automatically be granted when the order status changes to processing/completed." -msgstr "Примітка: Дозволи для позицій замовлення будуть надаватися автоматично при зміні статусу замовлення на виконується/виконано." - -#: admin/post-types/writepanels/writepanels-init.php:73 -#@ woocommerce -msgid "Order Actions" -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:81 -#@ woocommerce -msgid "Coupon Data" -msgstr "Дані купона" - -#: admin/post-types/writepanels/writepanels-init.php:100 -#: templates/checkout/form-coupon.php:25 -#@ woocommerce -msgid "Coupon code" -msgstr "Код купона" - -#: admin/post-types/writepanels/writepanels-init.php:101 -#@ woocommerce -msgid "Product name" -msgstr "Назва товару" - -#: admin/post-types/writepanels/writepanels-init.php:185 -#@ woocommerce -msgid "Allow reviews." -msgstr "Дозволити відгуки." - -#: admin/post-types/writepanels/writepanels-init.php:186 -#, php-format -#@ default -msgid "Allow trackbacks and pingbacks on this page." -msgstr "" - -#: admin/post-types/writepanels/writepanels-init.php:186 -#@ default -msgid "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:23 -#@ woocommerce -msgid "Styles" -msgstr "Стилі" - -#: admin/settings/settings-frontend-styles.php:43 -#@ woocommerce -msgid "Primary" -msgstr "Головний" - -#: admin/settings/settings-frontend-styles.php:43 -#@ woocommerce -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:44 -#@ woocommerce -msgid "Secondary" -msgstr "Другорядне" - -#: admin/settings/settings-frontend-styles.php:44 -#@ woocommerce -msgid "Buttons and tabs" -msgstr "Кнопки і вкладки" - -#: admin/settings/settings-frontend-styles.php:45 -#@ woocommerce -msgid "Highlight" -msgstr "Виділення" - -#: admin/settings/settings-frontend-styles.php:45 -#@ woocommerce -msgid "Price labels and Sale Flashes" -msgstr "Цінники і Акіцйні стікери" - -#: admin/settings/settings-frontend-styles.php:46 -#@ woocommerce -msgid "Content" -msgstr "Вміст" - -#: admin/settings/settings-frontend-styles.php:46 -#@ woocommerce -msgid "Your themes page background - used for tab active states" -msgstr "" - -#: admin/settings/settings-frontend-styles.php:47 -#@ woocommerce -msgid "Subtext" -msgstr "Підтекст" - -#: admin/settings/settings-frontend-styles.php:47 -#@ woocommerce -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "Використовується для певного тексту і відступів - хлібних крихт, дрібного тексту тощо." - -#: admin/settings/settings-frontend-styles.php:51 -#@ woocommerce -msgid "To edit colours woocommerce/assets/css/woocommerce-base.less and woocommerce.css need to be writable. See the Codex for more information." -msgstr "Щоб редагувати кольори woocommerce/assets/css/woocommerce-base.less і woocommerce.css повинні бути перезаписуваними. Див Кодекс для отримання додаткової інформації." - -#: admin/settings/settings-init.php:18 -#@ woocommerce -msgid "Localisation" -msgstr "Переклад" - -#: admin/settings/settings-init.php:19 -#, php-format -#@ woocommerce -msgid "Use informal localisation for %s" -msgstr "Використовувати неформальну локалізацію для %s" - -#: admin/settings/settings-init.php:33 -#@ woocommerce -msgid "General Options" -msgstr "Загальні налаштування" - -#: admin/settings/settings-init.php:36 -#@ woocommerce -msgid "Base Location" -msgstr "Базове розташування" - -#: admin/settings/settings-init.php:37 -#@ woocommerce -msgid "This is the base location for your business. Tax rates will be based on this country." -msgstr "Це місце розташування вашого бізнесу. Податкові ставки будуть взяті виходячи з країни, що вказана в цьому полі." - -#: admin/settings/settings-init.php:46 -#@ woocommerce -msgid "Currency" -msgstr "Валюта" - -#: admin/settings/settings-init.php:47 -#@ woocommerce -msgid "This controls what currency prices are listed at in the catalog and which currency gateways will take payments in." -msgstr "Тут вказується валюта, у якій будуть відображатися ціни на сайті, а токож у якій буде проходити оплата через платіжні системи." - -#: admin/settings/settings-init.php:58 -#@ woocommerce -msgid "Allowed Countries" -msgstr "Дозволені країни" - -#: admin/settings/settings-init.php:59 -#@ woocommerce -msgid "These are countries that you are willing to ship to." -msgstr "Це країни в які ви маєте можливість зробити доставку." - -#: admin/settings/settings-init.php:67 -#@ woocommerce -msgid "All Countries" -msgstr "Всі країни" - -#: admin/settings/settings-init.php:68 -#: admin/settings/settings-init.php:73 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:95 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:99 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:98 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:149 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:153 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:105 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:109 -#@ woocommerce -msgid "Specific Countries" -msgstr "Визначені країни" - -#: admin/settings/settings-init.php:84 -#@ woocommerce -msgid "Store Notice" -msgstr "Повідомлення магазину" - -#: admin/settings/settings-init.php:85 -#@ woocommerce -msgid "Enable site-wide store notice text" -msgstr "Включення текстового повідомлення на всю ширину сторінки" - -#: admin/settings/settings-init.php:92 -#@ woocommerce -msgid "Store Notice Text" -msgstr "Текст повідомлення" - -#: admin/settings/settings-init.php:95 -#: woocommerce-template.php:200 -#@ woocommerce -msgid "This is a demo store for testing purposes — no orders shall be fulfilled." -msgstr "Це демо версія магазину. Лише для тестування можливостей — замовлення не будуть виконуватись." - -#: admin/settings/settings-init.php:102 -#@ woocommerce -msgid "Cart, Checkout and Accounts" -msgstr "Кошик, Оформлення та Облікові записи" - -#: admin/settings/settings-init.php:105 -#: admin/woocommerce-admin-content.php:61 -#: admin/woocommerce-admin-content.php:76 -#: admin/woocommerce-admin-reports.php:63 -#: woocommerce.php:1095 -#@ woocommerce -msgid "Coupons" -msgstr "Купони" - -#: admin/settings/settings-init.php:106 -#@ woocommerce -msgid "Enable the use of coupons" -msgstr "Дозволити використання купонів" - -#: admin/settings/settings-init.php:110 -#@ woocommerce -msgid "Coupons can be applied from the cart and checkout pages." -msgstr "Купони можуть бути застосовані з кошуку, або зі сторінки оформлення замовлення." - -#: admin/settings/settings-init.php:114 -#: admin/woocommerce-admin-install.php:201 -#: admin/woocommerce-admin-status.php:307 -#: assets/js/admin/editor_plugin_lang.php:16 -#@ woocommerce -msgid "Checkout" -msgstr "Оформлення" - -#: admin/settings/settings-init.php:115 -#@ woocommerce -msgid "Enable guest checkout (no account required)" -msgstr "Дозволити оформлення покупки Гостям (не потрібно реєструватися)" - -#: admin/settings/settings-init.php:123 -#@ woocommerce -msgid "Enable customer note field on checkout" -msgstr "Включити для покупців поле приміток під час оформлення " - -#: admin/settings/settings-init.php:131 -#@ woocommerce -msgid "Force secure checkout" -msgstr "Включити безпечне оформлення" - -#: admin/settings/settings-init.php:137 -#@ woocommerce -msgid "Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -msgstr "Включити SSL (HTTPS) на сторінці оформлення (потрібен SSL Сертифікат)." - -#: admin/settings/settings-init.php:141 -#@ woocommerce -msgid "Un-force HTTPS when leaving the checkout" -msgstr "Відключити HTTPS після виходу зі сторінки оформлення" - -#: admin/settings/settings-init.php:150 -#@ woocommerce -msgid "Registration" -msgstr "Реєстрація" - -#: admin/settings/settings-init.php:151 -#@ woocommerce -msgid "Allow registration on the checkout page" -msgstr "Дозволити реєстрацію на сторінці оформлення замовлення" - -#: admin/settings/settings-init.php:159 -#@ woocommerce -msgid "Allow registration on the \"My Account\" page" -msgstr "Дозволити реєстрацію на сторінці облікового запису" - -#: admin/settings/settings-init.php:167 -#@ woocommerce -msgid "Register using the email address for the username" -msgstr "Реєструватися використовуючи email як ім'я користувача" - -#: admin/settings/settings-init.php:175 -#@ woocommerce -msgid "Customer Accounts" -msgstr "Клієнтські облікові записи" - -#: admin/settings/settings-init.php:176 -#@ woocommerce -msgid "Prevent customers from accessing WordPress admin" -msgstr "Не допускати клієнтів до адміністративної панелі WordPress" - -#: admin/settings/settings-init.php:184 -#@ woocommerce -msgid "Clear cart when logging out" -msgstr "Очистити кошик після виходу" - -#: admin/settings/settings-init.php:192 -#@ woocommerce -msgid "Allow customers to repurchase orders from their account page" -msgstr "Дозволити клієнтам купувати ще раз їх замовлення зі сторінки свого облікового запису" - -#: admin/settings/settings-init.php:201 -#@ woocommerce -msgid "Styles and Scripts" -msgstr "Стилі і Скрипти" - -#: admin/settings/settings-init.php:204 -#@ woocommerce -msgid "Styling" -msgstr "Стилізація" - -#: admin/settings/settings-init.php:205 -#@ woocommerce -msgid "Enable WooCommerce CSS" -msgstr "Включити WooCommerce CSS" - -#: admin/settings/settings-init.php:216 -#@ woocommerce -msgid "Scripts" -msgstr "Скрипти" - -#: admin/settings/settings-init.php:217 -#@ woocommerce -msgid "Enable Lightbox" -msgstr "Включити Lightbox" - -#: admin/settings/settings-init.php:220 -#@ woocommerce -msgid "Include WooCommerce's lightbox. Product gallery images and the add review form will open in a lightbox." -msgstr "Активація ціє опції увікне WooCommerce lightbox. Галерея зображень товару та форма додавання відгуку відкриватимется в lightbox." - -#: admin/settings/settings-init.php:226 -#@ woocommerce -msgid "Enable enhanced country select boxes" -msgstr "" - -#: admin/settings/settings-init.php:231 -#@ woocommerce -msgid "This will enable a script allowing the country fields to be searchable." -msgstr "" - -#: admin/settings/settings-init.php:236 -#@ woocommerce -msgid "Downloadable Products" -msgstr "Товари, що завантажуються" - -#: admin/settings/settings-init.php:239 -#@ woocommerce -msgid "File Download Method" -msgstr "Спосіб завантаження файлу" - -#: admin/settings/settings-init.php:240 -#@ woocommerce -msgid "Forcing downloads will keep URLs hidden, but some servers may serve large files unreliably. If supported, X-Accel-Redirect/ X-Sendfile can be used to serve downloads instead (server requires mod_xsendfile)." -msgstr "" - -#: admin/settings/settings-init.php:248 -#@ woocommerce -msgid "Force Downloads" -msgstr "" - -#: admin/settings/settings-init.php:249 -#@ woocommerce -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "" - -#: admin/settings/settings-init.php:250 -#@ woocommerce -msgid "Redirect only" -msgstr "" - -#: admin/settings/settings-init.php:255 -#@ woocommerce -msgid "Access Restriction" -msgstr "Обмеження доступу" - -#: admin/settings/settings-init.php:256 -#@ woocommerce -msgid "Downloads require login" -msgstr "Закачки вимагають авторизації" - -#: admin/settings/settings-init.php:260 -#@ woocommerce -msgid "This setting does not apply to guest purchases." -msgstr "Це налаштування не застосовуються до замовлень гостей." - -#: admin/settings/settings-init.php:265 -#@ woocommerce -msgid "Grant access to downloadable products after payment" -msgstr "Надання доступу до товару, що заванатжується після оплати" - -#: admin/settings/settings-init.php:269 -#@ woocommerce -msgid "Enable this option to grant access to downloads when orders are \"processing\", rather than \"completed\"." -msgstr "Включити цю опцію щоб надати доступ до скачування ще на етапі \"виконання\" замовлення, до того як воно \"виконане\"." - -#: admin/settings/settings-init.php:285 -#@ woocommerce -msgid "Note: The shop page has children - child pages will not work if you enable this option." -msgstr "" - -#: admin/settings/settings-init.php:290 -#@ woocommerce -msgid "Page Setup" -msgstr "Налаштування сторінок" - -#: admin/settings/settings-init.php:292 -#, php-format -#@ woocommerce -msgid "Set up core WooCommerce pages here, for example the base page. The base page can also be used in your %sproduct permalinks%s." -msgstr "Вибір ключових сторінок WooCommerce, наприклад, базової сторінки магазину. Базові сторінки також можуть бути використані в %sproduct permalinks%s." - -#: admin/settings/settings-init.php:297 -#@ woocommerce -msgid "Shop Base Page" -msgstr "Базова сторінка магазину" - -#: admin/settings/settings-init.php:298 -#@ woocommerce -msgid "This sets the base page of your shop - this is where your product archive will be." -msgstr "" - -#: admin/settings/settings-init.php:308 -#@ woocommerce -msgid "Terms Page ID" -msgstr "" - -#: admin/settings/settings-init.php:309 -#@ woocommerce -msgid "If you define a \"Terms\" page the customer will be asked if they accept them when checking out." -msgstr "" - -#: admin/settings/settings-init.php:320 -#@ woocommerce -msgid "Shop Pages" -msgstr "Сторінки магазину" - -#: admin/settings/settings-init.php:320 -#@ woocommerce -msgid "The following pages need selecting so that WooCommerce knows where they are. These pages should have been created upon installation of the plugin, if not you will need to create them." -msgstr "Сторінки наведені нижче потрібні WooCommerce для того аби знати, де вони знаходяться. Ці сторінки потрібно було створити під час встановлення плагіна, якщо це не було зроблено, то їх потрібно створювати окремо." - -#: admin/settings/settings-init.php:323 -#@ woocommerce -msgid "Cart Page" -msgstr "Сторінка кошику" - -#: admin/settings/settings-init.php:324 -#@ woocommerce -msgid "Page contents: [woocommerce_cart]" -msgstr "Сторінка змісту: [woocommerce_cart]" - -#: admin/settings/settings-init.php:334 -#@ woocommerce -msgid "Checkout Page" -msgstr "Сторінка оформлення замовлення" - -#: admin/settings/settings-init.php:335 -#@ woocommerce -msgid "Page contents: [woocommerce_checkout]" -msgstr "Зміст сторінки: [woocommerce_checkout]" - -#: admin/settings/settings-init.php:345 -#@ woocommerce -msgid "Pay Page" -msgstr "Сторінка оплати" - -#: admin/settings/settings-init.php:346 -#@ woocommerce -msgid "Page contents: [woocommerce_pay] Parent: \"Checkout\"" -msgstr "Зміст сторінки: [woocommerce_pay] Головна: \"Оформлення\"" - -#: admin/settings/settings-init.php:356 -#@ woocommerce -msgid "Thanks Page" -msgstr "Сторінка подяки" - -#: admin/settings/settings-init.php:357 -#@ woocommerce -msgid "Page contents: [woocommerce_thankyou] Parent: \"Checkout\"" -msgstr "Зміст сторінки: [woocommerce_thankyou] Головна: \"Оформлення\"" - -#: admin/settings/settings-init.php:367 -#@ woocommerce -msgid "My Account Page" -msgstr "Сторінка облікового запису" - -#: admin/settings/settings-init.php:368 -#@ woocommerce -msgid "Page contents: [woocommerce_my_account]" -msgstr "" - -#: admin/settings/settings-init.php:378 -#@ woocommerce -msgid "Edit Address Page" -msgstr "Редагувати сторінку адреси" - -#: admin/settings/settings-init.php:379 -#@ woocommerce -msgid "Page contents: [woocommerce_edit_address] Parent: \"My Account\"" -msgstr "" - -#: admin/settings/settings-init.php:389 -#@ woocommerce -msgid "View Order Page" -msgstr "Сторінка перегляду замолвення" - -#: admin/settings/settings-init.php:390 -#@ woocommerce -msgid "Page contents: [woocommerce_view_order] Parent: \"My Account\"" -msgstr "" - -#: admin/settings/settings-init.php:400 -#@ woocommerce -msgid "Change Password Page" -msgstr "Сторінка зміни пароля" - -#: admin/settings/settings-init.php:401 -#@ woocommerce -msgid "Page contents: [woocommerce_change_password] Parent: \"My Account\"" -msgstr "" - -#: admin/settings/settings-init.php:411 -#@ woocommerce -msgid "Logout Page" -msgstr "Сторінка виходу" - -#: admin/settings/settings-init.php:412 -#@ woocommerce -msgid "Parent: \"My Account\"" -msgstr "" - -#: admin/settings/settings-init.php:422 -#@ woocommerce -msgid "Lost Password Page" -msgstr "Сторінка втрати пароля" - -#: admin/settings/settings-init.php:423 -#@ woocommerce -msgid "Page contents: [woocommerce_lost_password] Parent: \"My Account\"" -msgstr "" - -#: admin/settings/settings-init.php:439 -#@ woocommerce -msgid "Catalog Options" -msgstr "Налашатування каталогу" - -#: admin/settings/settings-init.php:442 -#@ woocommerce -msgid "Default Product Sorting" -msgstr "Сортування товарів за замовчуванням" - -#: admin/settings/settings-init.php:443 -#@ woocommerce -msgid "This controls the default sort order of the catalog." -msgstr "Керування соруванням каталогу за замовчуванням." - -#: admin/settings/settings-init.php:449 -#@ woocommerce -msgid "Default sorting (custom ordering + name)" -msgstr "Сортування за замовчуванням (налаштований порядок + ім'я)" - -#: admin/settings/settings-init.php:450 -#@ woocommerce -msgid "Popularity (sales)" -msgstr "Популярність (продажі)" - -#: admin/settings/settings-init.php:451 -#@ woocommerce -msgid "Average Rating" -msgstr "Середній рейтинг" - -#: admin/settings/settings-init.php:452 -#@ woocommerce -msgid "Sort by most recent" -msgstr "Сортувати за найновішими" - -#: admin/settings/settings-init.php:453 -#@ woocommerce -msgid "Sort by price (asc)" -msgstr "Сортувати за ціною (ріст)" - -#: admin/settings/settings-init.php:454 -#@ woocommerce -msgid "Sort by price (desc)" -msgstr "Сортувати за ціною (спад)" - -#: admin/settings/settings-init.php:460 -#@ woocommerce -msgid "Shop Page Display" -msgstr "Відображення сторінки магазину" - -#: admin/settings/settings-init.php:461 -#@ woocommerce -msgid "This controls what is shown on the product archive." -msgstr "Що відображати в архіві товарів?" - -#: admin/settings/settings-init.php:467 -#: admin/settings/settings-init.php:482 -#@ woocommerce -msgid "Show products" -msgstr "Показати товари" - -#: admin/settings/settings-init.php:468 -#: admin/settings/settings-init.php:483 -#@ woocommerce -msgid "Show subcategories" -msgstr "Показати підкатегорії" - -#: admin/settings/settings-init.php:469 -#: admin/settings/settings-init.php:484 -#@ woocommerce -msgid "Show both" -msgstr "Показати обі" - -#: admin/settings/settings-init.php:475 -#@ woocommerce -msgid "Default Category Display" -msgstr "" - -#: admin/settings/settings-init.php:476 -#@ woocommerce -msgid "This controls what is shown on category archives." -msgstr "" - -#: admin/settings/settings-init.php:490 -#: classes/class-wc-shortcodes.php:571 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:274 -#: templates/loop/add-to-cart.php:46 -#: templates/single-product/add-to-cart/grouped.php:45 -#: templates/single-product/add-to-cart/grouped.php:77 -#: templates/single-product/add-to-cart/simple.php:42 -#: templates/single-product/add-to-cart/variable.php:83 -#@ woocommerce -msgid "Add to cart" -msgstr "Додати в кошик" - -#: admin/settings/settings-init.php:491 -#@ woocommerce -msgid "Redirect to the cart page after successful addition" -msgstr "Перейти на сторінку кошика після успішного додавання" - -#: admin/settings/settings-init.php:499 -#@ woocommerce -msgid "Enable AJAX add to cart buttons on archives" -msgstr "Включити AJAX кнопки додати в кошик у архіві" - -#: admin/settings/settings-init.php:508 -#@ woocommerce -msgid "The following options affect the fields available on the edit product page." -msgstr "" - -#: admin/settings/settings-init.php:511 -#@ woocommerce -msgid "Product Fields" -msgstr "Поля товару" - -#: admin/settings/settings-init.php:512 -#@ woocommerce -msgid "Enable the SKU field for products" -msgstr "Включити поле АРТИКУЛ для товару" - -#: admin/settings/settings-init.php:520 -#@ woocommerce -msgid "Enable the weight field for products (some shipping methods may require this)" -msgstr "Включити поле вага товару (деякі методи доставки можуть вимагати цього)" - -#: admin/settings/settings-init.php:528 -#@ woocommerce -msgid "Enable the dimension fields for products (some shipping methods may require this)" -msgstr "Включити поле габарити товару (деякі методи доставки можуть вимагати цього)" - -#: admin/settings/settings-init.php:536 -#@ woocommerce -msgid "Show weight and dimension values on the Additional Information tab" -msgstr "Показувати розміри та вагу у вкладці Додаткова інформація" - -#: admin/settings/settings-init.php:544 -#@ woocommerce -msgid "Weight Unit" -msgstr "Одиниці ваги" - -#: admin/settings/settings-init.php:545 -#@ woocommerce -msgid "This controls what unit you will define weights in." -msgstr "Цей блок керує налаштуваннями одиниць виміру ваги." - -#: admin/settings/settings-init.php:551 -#@ woocommerce -msgid "kg" -msgstr "кг" - -#: admin/settings/settings-init.php:552 -#@ woocommerce -msgid "g" -msgstr "г" - -#: admin/settings/settings-init.php:553 -#@ woocommerce -msgid "lbs" -msgstr "фунтів" - -#: admin/settings/settings-init.php:554 -#@ woocommerce -msgid "oz" -msgstr "унцій" - -#: admin/settings/settings-init.php:560 -#@ woocommerce -msgid "Dimensions Unit" -msgstr "Одиниці розміру" - -#: admin/settings/settings-init.php:561 -#@ woocommerce -msgid "This controls what unit you will define lengths in." -msgstr "Цей блок керує налаштуваннями одиниць виміру довжини." - -#: admin/settings/settings-init.php:568 -#@ woocommerce -msgid "cm" -msgstr "см" - -#: admin/settings/settings-init.php:569 -#@ woocommerce -msgid "mm" -msgstr "мм" - -#: admin/settings/settings-init.php:570 -#@ woocommerce -msgid "in" -msgstr "дюйм" - -#: admin/settings/settings-init.php:571 -#@ woocommerce -msgid "yd" -msgstr "" - -#: admin/settings/settings-init.php:577 -#@ woocommerce -msgid "Product Ratings" -msgstr "Рейтинг товару" - -#: admin/settings/settings-init.php:578 -#@ woocommerce -msgid "Enable ratings on reviews" -msgstr "Включити рейтинг у відгуках" - -#: admin/settings/settings-init.php:587 -#@ woocommerce -msgid "Ratings are required to leave a review" -msgstr "Рейтинги необхідні щоб залишити відгук" - -#: admin/settings/settings-init.php:596 -#@ woocommerce -msgid "Show \"verified owner\" label for customer reviews" -msgstr "Показувати позначку \"Підтвержений власник\" для відгуків покупців" - -#: admin/settings/settings-init.php:606 -#@ woocommerce -msgid "Pricing Options" -msgstr "Налаштування ціни" - -#: admin/settings/settings-init.php:606 -#@ woocommerce -msgid "The following options affect how prices are displayed on the frontend." -msgstr "Ця опція впливає на відображення цін на вітрині магазину." - -#: admin/settings/settings-init.php:609 -#@ woocommerce -msgid "Currency Position" -msgstr "Розташування символу валюти" - -#: admin/settings/settings-init.php:610 -#@ woocommerce -msgid "This controls the position of the currency symbol." -msgstr "Налаштування позиції символу валюти." - -#: admin/settings/settings-init.php:616 -#@ woocommerce -msgid "Left" -msgstr "Ліворуч" - -#: admin/settings/settings-init.php:617 -#@ woocommerce -msgid "Right" -msgstr "Праворуч" - -#: admin/settings/settings-init.php:618 -#@ woocommerce -msgid "Left (with space)" -msgstr "Ліворуч (з пробілом)" - -#: admin/settings/settings-init.php:619 -#@ woocommerce -msgid "Right (with space)" -msgstr "Праворуч (з пробілом)" - -#: admin/settings/settings-init.php:625 -#@ woocommerce -msgid "Thousand Separator" -msgstr "Відділяти тисячі" - -#: admin/settings/settings-init.php:626 -#@ woocommerce -msgid "This sets the thousand separator of displayed prices." -msgstr "Це " - -#: admin/settings/settings-init.php:635 -#@ woocommerce -msgid "Decimal Separator" -msgstr "Відокремлення десятих" - -#: admin/settings/settings-init.php:636 -#@ woocommerce -msgid "This sets the decimal separator of displayed prices." -msgstr "Це налаштування відокремлення десятих для відображення цін." - -#: admin/settings/settings-init.php:645 -#@ woocommerce -msgid "Number of Decimals" -msgstr "Кількість знаків після коми" - -#: admin/settings/settings-init.php:646 -#@ woocommerce -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "Це налаштування кількості знаків після коми у відображенні ціни." - -#: admin/settings/settings-init.php:659 -#@ woocommerce -msgid "Trailing Zeros" -msgstr "Прикінцеві нулі" - -#: admin/settings/settings-init.php:660 -#@ woocommerce -msgid "Remove zeros after the decimal point. e.g. $10.00 becomes $10" -msgstr "Прибирати нулі піся коми, наприклад, 10.00 грн. відображатиметься як 10 грн." - -#: admin/settings/settings-init.php:668 -#@ woocommerce -msgid "Image Options" -msgstr "Налаштування зображень" - -#: admin/settings/settings-init.php:668 -#, php-format -#@ woocommerce -msgid "These settings affect the actual dimensions of images in your catalog - the display on the front-end will still be affected by CSS styles. After changing these settings you may need to regenerate your thumbnails." -msgstr "Ці налаштування впливають на актуальні розміри зображень в вашому каталозі - на те як вони відображатімуться на вітрині все ще впливатиме стиль CSS шаблону. Після внесення змін, можливо, знадобиться перегенерувати ескізи." - -#: admin/settings/settings-init.php:671 -#@ woocommerce -msgid "Catalog Images" -msgstr "Зображення каталогу" - -#: admin/settings/settings-init.php:672 -#@ woocommerce -msgid "This size is usually used in product listings" -msgstr "Цей розмір зазвичай використовується в списку товарів" - -#: admin/settings/settings-init.php:685 -#@ woocommerce -msgid "Single Product Image" -msgstr "Зображення на сторінці товару" - -#: admin/settings/settings-init.php:686 -#@ woocommerce -msgid "This is the size used by the main image on the product page." -msgstr "Розмір зображення, що використовується як головне зображення на сторінці товару." - -#: admin/settings/settings-init.php:699 -#@ woocommerce -msgid "Product Thumbnails" -msgstr "Мініатюра товару" - -#: admin/settings/settings-init.php:700 -#@ woocommerce -msgid "This size is usually used for the gallery of images on the product page." -msgstr "Розмір зображення, що використовується як зображення в галереї на сторінці товару." - -#: admin/settings/settings-init.php:719 -#@ woocommerce -msgid "Inventory Options" -msgstr "Опції запасів" - -#: admin/settings/settings-init.php:722 -#@ woocommerce -msgid "Manage Stock" -msgstr "Керування складом" - -#: admin/settings/settings-init.php:723 -#@ woocommerce -msgid "Enable stock management" -msgstr "Включити керування складом" - -#: admin/settings/settings-init.php:730 -#@ woocommerce -msgid "Hold Stock (minutes)" -msgstr "Відкладування на складі (хвилин)" - -#: admin/settings/settings-init.php:731 -#@ woocommerce -msgid "Hold stock (for unpaid orders) for x minutes. When this limit is reached, the pending order will be cancelled. Leave blank to disable." -msgstr "Утримувати на складі (неоплачений товар) протягом х-хвилин. Коли цей ліміт вичерпано, замовлення буде відмінене автоматично. Щоб відключити, залишете це поле порожнім." - -#: admin/settings/settings-init.php:743 -#@ woocommerce -msgid "Notifications" -msgstr "Повідомлення" - -#: admin/settings/settings-init.php:744 -#@ woocommerce -msgid "Enable low stock notifications" -msgstr "Включити повідомлення про маленьку кількість на складі" - -#: admin/settings/settings-init.php:752 -#@ woocommerce -msgid "Enable out of stock notifications" -msgstr "Включити повідомлення про закінчення товару" - -#: admin/settings/settings-init.php:760 -#@ woocommerce -msgid "Notification Recipient" -msgstr "Отримувач повідомлень" - -#: admin/settings/settings-init.php:768 -#@ woocommerce -msgid "Low Stock Threshold" -msgstr "Вкрай низький залишок" - -#: admin/settings/settings-init.php:781 -#@ woocommerce -msgid "Out Of Stock Threshold" -msgstr "Немає на складі" - -#: admin/settings/settings-init.php:794 -#@ woocommerce -msgid "Out Of Stock Visibility" -msgstr "Видимість відсутніх на складі товарі" - -#: admin/settings/settings-init.php:795 -#@ woocommerce -msgid "Hide out of stock items from the catalog" -msgstr "Приховувати відсутні на складі товари з каталогу" - -#: admin/settings/settings-init.php:802 -#@ woocommerce -msgid "Stock Display Format" -msgstr "Формат відображення складу" - -#: admin/settings/settings-init.php:803 -#@ woocommerce -msgid "This controls how stock is displayed on the frontend." -msgstr "Налаштування відображення складу на сторінці магазину." - -#: admin/settings/settings-init.php:809 -#@ woocommerce -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "Завжди показувати склад напр. \"12 на слкаді\"" - -#: admin/settings/settings-init.php:810 -#@ woocommerce -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "Показувати склад при маленьких запасах \"Лише 2 залишилось на складі \" замість \"На складі\"" - -#: admin/settings/settings-init.php:811 -#@ woocommerce -msgid "Never show stock amount" -msgstr "Ніколи не відображати кількість на складі" - -#: admin/settings/settings-init.php:823 -#: admin/woocommerce-admin-settings.php:292 -#@ woocommerce -msgid "Shipping Options" -msgstr "Налаштування доставки" - -#: admin/settings/settings-init.php:826 -#@ woocommerce -msgid "Shipping Calculations" -msgstr "Розрахунок доставки" - -#: admin/settings/settings-init.php:827 -#@ woocommerce -msgid "Enable shipping" -msgstr "Включити доставку" - -#: admin/settings/settings-init.php:835 -#@ woocommerce -msgid "Enable the shipping calculator on the cart page" -msgstr "Включити калькулятор доставки на сторінці кошика" - -#: admin/settings/settings-init.php:843 -#@ woocommerce -msgid "Hide shipping costs until an address is entered" -msgstr "Приховувати вартість доставки допоки не введено адресу" - -#: admin/settings/settings-init.php:851 -#@ woocommerce -msgid "Shipping Method Display" -msgstr "Відображення способу доставки" - -#: admin/settings/settings-init.php:852 -#@ woocommerce -msgid "This controls how multiple shipping methods are displayed on the frontend." -msgstr "Цей блок дозволяє контролювати, як кілька методів доставки відображаються на інтерфейсі." - -#: admin/settings/settings-init.php:858 -#@ woocommerce -msgid "Radio buttons" -msgstr "Перемикачі" - -#: admin/settings/settings-init.php:859 -#@ woocommerce -msgid "Select box" -msgstr "Вибір зі списку" - -#: admin/settings/settings-init.php:865 -#@ woocommerce -msgid "Shipping Destination" -msgstr "Місце доставки" - -#: admin/settings/settings-init.php:866 -#@ woocommerce -msgid "Only ship to the users billing address" -msgstr "Доставляти лише на адресу для виставлення рахунків" - -#: admin/settings/settings-init.php:874 -#@ woocommerce -msgid "Ship to billing address by default" -msgstr "Доставка на адресу для рахунків за замовчуванням" - -#: admin/settings/settings-init.php:882 -#@ woocommerce -msgid "Collect shipping address even when not required" -msgstr "Збирати адресу доставки, навіть якщо це не потрібно" - -#: admin/settings/settings-init.php:900 -#: admin/woocommerce-admin-settings.php:188 -#: admin/woocommerce-admin-settings.php:329 -#@ woocommerce -msgid "Payment Gateways" -msgstr "Методи оплати" - -#: admin/settings/settings-init.php:900 -#@ woocommerce -msgid "Installed payment gateways are displayed below. Drag and drop payment gateways to control their display order on the checkout." -msgstr "Встановлені платіжні шлюзи показані нижче. Перетягніть платіжні шлюзи, щоб змінити їх відображення на сторінці оформлення." - -#: admin/settings/settings-init.php:918 -#: admin/woocommerce-admin-settings.php:222 -#@ woocommerce -msgid "Tax Options" -msgstr "Налаштування податків" - -#: admin/settings/settings-init.php:921 -#@ woocommerce -msgid "Enable Taxes" -msgstr "Увімкнути податки" - -#: admin/settings/settings-init.php:922 -#@ woocommerce -msgid "Enable taxes and tax calculations" -msgstr "Увімкнути податки на розрухунок опадаткування" - -#: admin/settings/settings-init.php:929 -#@ woocommerce -msgid "Prices Entered With Tax" -msgstr "Ціни введені з податками" - -#: admin/settings/settings-init.php:933 -#@ woocommerce -msgid "This option is important as it will affect how you input prices. Changing it will not update existing products." -msgstr "Це дуже важливе налаштування. Воно впливатиме на те як ви вводите ціну. Зміни тут не оновлюватимуть вже існуючі товари." - -#: admin/settings/settings-init.php:935 -#@ woocommerce -msgid "Yes, I will enter prices inclusive of tax" -msgstr "Так, я вводитиму ціну з урахуванням податків" - -#: admin/settings/settings-init.php:936 -#@ woocommerce -msgid "No, I will enter prices exclusive of tax" -msgstr "Ні, я буду вводити ціни без урахування податків" - -#: admin/settings/settings-init.php:941 -#@ woocommerce -msgid "Calculate Tax Based On:" -msgstr "Розрахунок податку на основі:" - -#: admin/settings/settings-init.php:943 -#@ woocommerce -msgid "This option determines which address is used to calculate tax." -msgstr "Ця опція задає адресу, яка використовується для підрахунку податку." - -#: admin/settings/settings-init.php:947 -#@ woocommerce -msgid "Customer shipping address" -msgstr "Адреса доставки" - -#: admin/settings/settings-init.php:948 -#@ woocommerce -msgid "Customer billing address" -msgstr "Адреса для рахунків" - -#: admin/settings/settings-init.php:949 -#: admin/settings/settings-init.php:961 -#@ woocommerce -msgid "Shop base address" -msgstr "Базова адреса магазин" - -#: admin/settings/settings-init.php:954 -#@ woocommerce -msgid "Default Customer Address:" -msgstr "Адреса клієнта за замовчуванням:" - -#: admin/settings/settings-init.php:956 -#@ woocommerce -msgid "This option determines the customers default address (before they input their own)." -msgstr "Ця опція задає адресу клієнта за замовчуванням (поки вони не введуть свою власну)." - -#: admin/settings/settings-init.php:960 -#@ woocommerce -msgid "No address" -msgstr "Немає адреси" - -#: admin/settings/settings-init.php:966 -#@ woocommerce -msgid "Shipping Tax Class:" -msgstr "Клас податку на доставку:" - -#: admin/settings/settings-init.php:967 -#@ woocommerce -msgid "Optionally control which tax class shipping gets, or leave it so shipping tax is based on the cart items themselves." -msgstr "Опціональний контроль податків на доставку, або залиште так як є щоб податок залежав від товарів які є у кошику." - -#: admin/settings/settings-init.php:972 -#@ woocommerce -msgid "Shipping tax class based on cart items" -msgstr "Податки на доставку залежать від товарів у кошику" - -#: admin/settings/settings-init.php:977 -#@ woocommerce -msgid "Rounding" -msgstr "Округлення" - -#: admin/settings/settings-init.php:978 -#@ woocommerce -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "Округляти податки на рівні суми, а не порядково" - -#: admin/settings/settings-init.php:985 -#@ woocommerce -msgid "Additional Tax Classes" -msgstr "Додаткові класи оподаткування" - -#: admin/settings/settings-init.php:986 -#@ woocommerce -msgid "List additonal tax classes below (1 per line). This is in addition to the default Standard Rate. Tax classes can be assigned to products." -msgstr "" - -#: admin/settings/settings-init.php:990 -#, php-format -#@ woocommerce -msgid "Reduced Rate%sZero Rate" -msgstr "" - -#: admin/settings/settings-init.php:994 -#@ woocommerce -msgid "Display prices during cart/checkout:" -msgstr "Показувати ціни під час покупки/оформлення:" - -#: admin/settings/settings-init.php:999 -#@ woocommerce -msgid "Including tax" -msgstr "Включаючи податки" - -#: admin/settings/settings-init.php:1000 -#@ woocommerce -msgid "Excluding tax" -msgstr "Без податків" - -#: admin/settings/settings-init.php:1012 -#@ woocommerce -msgid "Email Sender Options" -msgstr "Налаштування відправника пошти" - -#: admin/settings/settings-init.php:1012 -#@ woocommerce -msgid "The following options affect the sender (email address and name) used in WooCommerce emails." -msgstr "" - -#: admin/settings/settings-init.php:1015 -#@ woocommerce -msgid "\"From\" Name" -msgstr "\"Від\" Ім'я" - -#: admin/settings/settings-init.php:1024 -#@ woocommerce -msgid "\"From\" Email Address" -msgstr "\"Від\" Електронна пошта" - -#: admin/settings/settings-init.php:1037 -#@ woocommerce -msgid "Email Template" -msgstr "Шаблон електронного листа" - -#: admin/settings/settings-init.php:1037 -#, php-format -#@ woocommerce -msgid "This section lets you customise the WooCommerce emails. Click here to preview your email template. For more advanced control copy woocommerce/templates/emails/ to yourtheme/woocommerce/emails/." -msgstr "У цьому розділі можна налаштувати електронну пошту WooCommerce. Натисніть тут, щоб переглянути шаблон електронного листа. Для більш розширеного керування скопіюйте woocommerce/templates/emails/ в yourtheme/woocommerce/emails/." - -#: admin/settings/settings-init.php:1040 -#@ woocommerce -msgid "Header Image" -msgstr "Верхнє зображення" - -#: admin/settings/settings-init.php:1041 -#, php-format -#@ woocommerce -msgid "Enter a URL to an image you want to show in the email's header. Upload your image using the media uploader." -msgstr "Введіть посилання на зображення, яке ви хочете показати в шапці електронної пошти. Завантажте ваше зображення за допомогою завантаження медіафайлів." - -#: admin/settings/settings-init.php:1049 -#@ woocommerce -msgid "Email Footer Text" -msgstr "Текст в нижній частині електронного листа" - -#: admin/settings/settings-init.php:1050 -#@ woocommerce -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "Текст розташований в нижній частині електронного листа WooCommerce" - -#: admin/settings/settings-init.php:1054 -#@ woocommerce -msgid "Powered by WooCommerce" -msgstr "Створено WooCommerce" - -#: admin/settings/settings-init.php:1058 -#@ woocommerce -msgid "Base Colour" -msgstr "Основний колір" - -#: admin/settings/settings-init.php:1059 -#@ woocommerce -msgid "The base colour for WooCommerce email templates. Default #557da1." -msgstr "Основний колір для шаблону електронного листа WooCommerce. За промовчанням #557da1." - -#: admin/settings/settings-init.php:1067 -#@ woocommerce -msgid "Background Colour" -msgstr "Колір фону" - -#: admin/settings/settings-init.php:1068 -#@ woocommerce -msgid "The background colour for WooCommerce email templates. Default #f5f5f5." -msgstr "Колір фону для WooCommerce шаблону електронног листа. За промовчанням #f5f5f5." - -#: admin/settings/settings-init.php:1076 -#@ woocommerce -msgid "Email Body Background Colour" -msgstr "Фоновий колір електронного листа" - -#: admin/settings/settings-init.php:1077 -#@ woocommerce -msgid "The main body background colour. Default #fdfdfd." -msgstr "Основний фоновий колір. За промовчанням code>#fdfdfd." - -#: admin/settings/settings-init.php:1085 -#@ woocommerce -msgid "Email Body Text Colour" -msgstr "Колір основного тексту" - -#: admin/settings/settings-init.php:1086 -#@ woocommerce -msgid "The main body text colour. Default #505050." -msgstr "Колір основного тексту тіла. За промовчанням #505050." - -#: admin/settings/settings-payment-gateways.php:27 -#: admin/settings/settings-shipping-methods.php:29 -#: admin/woocommerce-admin-init.php:757 -#: admin/woocommerce-admin-taxonomies.php:27 -#: admin/woocommerce-admin-taxonomies.php:121 -#@ woocommerce -msgid "Default" -msgstr "За замовчуванням" - -#: admin/settings/settings-payment-gateways.php:28 -#@ woocommerce -msgid "Gateway" -msgstr "Шлюз" - -#: admin/settings/settings-payment-gateways.php:45 -#@ woocommerce -msgid "Gateway ID" -msgstr "ID шлюзу" - -#: admin/settings/settings-shipping-methods.php:23 -#@ woocommerce -msgid "Shipping Methods" -msgstr "Способи доставки" - -#: admin/settings/settings-shipping-methods.php:25 -#@ woocommerce -msgid "Drag and drop methods to control their display order." -msgstr "Перетягніть і відпустіть методи для того аби змінити порядок їх відображення." - -#: admin/settings/settings-shipping-methods.php:30 -#@ woocommerce -msgid "Shipping Method" -msgstr "Спосіб доставки" - -#: admin/settings/settings-shipping-methods.php:46 -#@ woocommerce -msgid "Method ID" -msgstr "ID способу" - -#: admin/settings/settings-tax-rates.php:29 -#, php-format -#@ woocommerce -msgid "Tax Rates for the \"%s\" Class" -msgstr "Ставки оподаткування для класу \"%s\" " - -#: admin/settings/settings-tax-rates.php:30 -#, php-format -#@ woocommerce -msgid "Define tax rates for countries and states below. See here for available alpha-2 country codes." -msgstr "Визначення податкових ставок для країн і штатів нижче. Дивіться тут доступні альфа-2 коди країн." - -#: admin/settings/settings-tax-rates.php:36 -#@ woocommerce -msgid "Country Code" -msgstr "Код країни" - -#: admin/settings/settings-tax-rates.php:36 -#@ woocommerce -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "2-буквенний код країни, напр. US. Залиште порожнім, щоб застосувати до всіх." - -#: admin/settings/settings-tax-rates.php:38 -#@ woocommerce -msgid "State Code" -msgstr "Державний код" - -#: admin/settings/settings-tax-rates.php:38 -#@ woocommerce -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "2-буквенний код штату, напр. AL. Залиште порожнім, щоб застосувати до всіх." - -#: admin/settings/settings-tax-rates.php:40 -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "ZIP/Postcode" -msgstr "Індекс" - -#: admin/settings/settings-tax-rates.php:40 -#@ woocommerce -msgid "Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank to apply to all areas. Wildcards (*) can be used. Ranges for numeric postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "" - -#: admin/settings/settings-tax-rates.php:42 -#@ woocommerce -msgid "Cities for this rule. Semi-colon (;) separate multiple values. Leave blank to apply to all cities." -msgstr "" - -#: admin/settings/settings-tax-rates.php:44 -#@ woocommerce -msgid "Rate %" -msgstr "Рейтинг %" - -#: admin/settings/settings-tax-rates.php:44 -#@ woocommerce -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "Введіть податкову ставку (у відсотках) до 4 знаків після коми." - -#: admin/settings/settings-tax-rates.php:46 -#@ woocommerce -msgid "Tax Name" -msgstr "Назва податку" - -#: admin/settings/settings-tax-rates.php:46 -#@ woocommerce -msgid "Enter a name for this tax rate." -msgstr "Введіть назву для цієї ставки оподаткування." - -#: admin/settings/settings-tax-rates.php:48 -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Priority" -msgstr "Приорітет" - -#: admin/settings/settings-tax-rates.php:48 -#@ woocommerce -msgid "Choose a priority for this tax rate. Only 1 matching rate per priority will be used. To define multiple tax rates for a single area you need to specify a different priority per rate." -msgstr "Виберіть пріоритет для даного податку. Тільки 1 значення пріоритету буде використовуватися. Для визначення декількох податкових ставок для однієї області необхідно вказати різні пріоритети." - -#: admin/settings/settings-tax-rates.php:50 -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Compound" -msgstr "Складний" - -#: admin/settings/settings-tax-rates.php:50 -#@ woocommerce -msgid "Choose whether or not this is a compound rate. Compound tax rates are applied on top of other tax rates." -msgstr "Виберіть, чи буде ця ставка складною. Складні ставки оподаткування застосовуються поверх інших податкових ставок." - -#: admin/settings/settings-tax-rates.php:52 -#@ woocommerce -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "Виберіть, чи буде ця податкова ставка застосовуватися для для доставки." - -#: admin/settings/settings-tax-rates.php:59 -#@ woocommerce -msgid "Insert row" -msgstr "Вставити рядок" - -#: admin/settings/settings-tax-rates.php:60 -#@ woocommerce -msgid "Remove selected row(s)" -msgstr "Прибрати обрані рядки(-ок)" - -#: admin/settings/settings-tax-rates.php:62 -#@ woocommerce -msgid "Export CSV" -msgstr "Експорт CSV" - -#: admin/settings/settings-tax-rates.php:63 -#@ woocommerce -msgid "Import CSV" -msgstr "Імпорт CSV" - -#: admin/settings/settings-tax-rates.php:163 -#@ woocommerce -msgid "No row(s) selected" -msgstr "Жодного рядка не вибрано" - -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Country Code" -msgstr "Код країни" - -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "State Code" -msgstr "Код штату" - -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Rate %" -msgstr "Рейтинг %" - -#: admin/settings/settings-tax-rates.php:217 -#@ woocommerce -msgid "Tax Name" -msgstr "Назва податку" - -#: admin/woocommerce-admin-attributes.php:77 -#@ woocommerce -msgid "Please, provide an attribute name, slug and type." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:79 -#, php-format -#@ woocommerce -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:81 -#, php-format -#@ woocommerce -msgid "Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:86 -#: admin/woocommerce-admin-attributes.php:91 -#, php-format -#@ woocommerce -msgid "Slug “%s” is already in use. Change it, please." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:234 -#@ woocommerce -msgid "Edit Attribute" -msgstr "Редагувати Атрибут" - -#: admin/woocommerce-admin-attributes.php:244 -#: admin/woocommerce-admin-attributes.php:383 -#@ woocommerce -msgid "Name for the attribute (shown on the front-end)." -msgstr "Назва атрибута (відображатиметься у користувацікій частині сайту)." - -#: admin/woocommerce-admin-attributes.php:249 -#: admin/woocommerce-admin-attributes.php:315 -#: admin/woocommerce-admin-attributes.php:387 -#@ woocommerce -msgid "Slug" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:253 -#: admin/woocommerce-admin-attributes.php:389 -#@ woocommerce -msgid "Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "Унікальні пули/посилання для атрибута; має бути коротшим ніж 28 символів." - -#: admin/woocommerce-admin-attributes.php:262 -#: admin/woocommerce-admin-attributes.php:395 -#@ woocommerce -msgid "Select" -msgstr "Вибір" - -#: admin/woocommerce-admin-attributes.php:263 -#: admin/woocommerce-admin-attributes.php:396 -#@ woocommerce -msgid "Text" -msgstr "Текст" - -#: admin/woocommerce-admin-attributes.php:266 -#: admin/woocommerce-admin-attributes.php:399 -#@ woocommerce -msgid "Determines how you select attributes for products. Text allows manual entry via the product page, whereas select attribute terms can be defined from this section. If you plan on using an attribute for variations use select." -msgstr "" - -#: admin/woocommerce-admin-attributes.php:271 -#: admin/woocommerce-admin-attributes.php:403 -#@ woocommerce -msgid "Default sort order" -msgstr "Порядок сортування за замовчуванням" - -#: admin/woocommerce-admin-attributes.php:275 -#: admin/woocommerce-admin-attributes.php:343 -#: admin/woocommerce-admin-attributes.php:405 -#@ woocommerce -msgid "Custom ordering" -msgstr "Настроюване розташування" - -#: admin/woocommerce-admin-attributes.php:277 -#: admin/woocommerce-admin-attributes.php:340 -#: admin/woocommerce-admin-attributes.php:407 -#@ woocommerce -msgid "Term ID" -msgstr "" - -#: admin/woocommerce-admin-attributes.php:279 -#: admin/woocommerce-admin-attributes.php:409 -#@ woocommerce -msgid "Determines the sort order on the frontend for this attribute. If using custom ordering, you can drag and drop the terms in this attribute" -msgstr "Визначає порядок сортування на сайті для цього атрибута. Якщо використовується користувацьке сортування, ви можете перетягнути і відпустити умови для цього атрибута." - -#: admin/woocommerce-admin-attributes.php:284 -#: woocommerce.php:952 -#@ woocommerce -msgid "Update" -msgstr "Оновити" - -#: admin/woocommerce-admin-attributes.php:317 -#@ woocommerce -msgid "Order by" -msgstr "Сортування по" - -#: admin/woocommerce-admin-attributes.php:318 -#@ woocommerce -msgid "Terms" -msgstr "Умови" - -#: admin/woocommerce-admin-attributes.php:363 -#@ woocommerce -msgid "Configure terms" -msgstr "Редагуваня умов" - -#: admin/woocommerce-admin-attributes.php:367 -#@ woocommerce -msgid "No attributes currently exist." -msgstr "На даний момент атрибутів не існує." - -#: admin/woocommerce-admin-attributes.php:377 -#@ woocommerce -msgid "Add New Attribute" -msgstr "Додати Атрибут" - -#: admin/woocommerce-admin-attributes.php:378 -#@ woocommerce -msgid "Attributes let you define extra product data, such as size or colour. You can use these attributes in the shop sidebar using the \"layered nav\" widgets. Please note: you cannot rename an attribute later on." -msgstr "Атрибути дозволяють Вам визначати додаткову інформацію про товар, таку як розмір чи колір. Ви можете використовувати атрибути в боковій панелі магазину за допомогою віджету \"layered nav\". Зауважте: у майбутньому ви не зможете перейменувати атрибут." - -#: admin/woocommerce-admin-attributes.php:412 -#@ woocommerce -msgid "Add Attribute" -msgstr "Додати Атрибут" - -#: admin/woocommerce-admin-attributes.php:423 -#@ woocommerce -msgid "Are you sure you want to delete this attribute?" -msgstr "Ви впевнені, що хочете видалити цей атрибут?" - -#: admin/woocommerce-admin-content.php:26 -#: admin/woocommerce-admin-reports.php:26 -#: admin/woocommerce-admin-reports.php:66 -#: admin/woocommerce-admin-reports.php:82 -#: admin/woocommerce-admin-reports.php:93 -#@ woocommerce -msgid "Overview" -msgstr "Огляд" - -#: admin/woocommerce-admin-content.php:29 -#, php-format -#@ woocommerce -msgid "Thank you for using WooCommerce :) Should you need help using or extending WooCommerce please read the documentation. For further assistance you can use the community forum or if you have access, our support desk." -msgstr "Дякуємо за використання WooCommerce :) Раптом вам знадобиться допомога у використанні WooCommerce будь ласка почитайте документацію. Для отримання додаткової допомоги ви можете використовувати форум спільноти або, якщо у вас є доступ то, нашу службу підтримки." - -#: admin/woocommerce-admin-content.php:31 -#@ woocommerce -msgid "If you are having problems, or to assist us with support, please check the status page to identify any problems with your configuration:" -msgstr "Якщо у вас виникли проблеми, або, бажання звернутися до нас за підтримкою, будь ласка, перевірте сторінку стану, щоб виявити будь-які проблеми з конфігурацією:" - -#: admin/woocommerce-admin-content.php:33 -#: admin/woocommerce-admin-init.php:89 -#: admin/woocommerce-admin-status.php:26 -#@ woocommerce -msgid "System Status" -msgstr "Стан системи" - -#: admin/woocommerce-admin-content.php:35 -#, php-format -#@ woocommerce -msgid "If you come across a bug, or wish to contribute to the project you can also get involved on GitHub." -msgstr "" - -#: admin/woocommerce-admin-content.php:43 -#@ woocommerce -msgid "Here you can set up your store and customise it to fit your needs. The sections available from the settings page include:" -msgstr "Тут ви можете налаштувати свій магазин під свої потреби. Розділи доступні на сторінці налаштувань включають в себе:" - -#: admin/woocommerce-admin-content.php:44 -#@ woocommerce -msgid "General settings such as your shop base, currency, and script/styling options which affect features used in your store." -msgstr "Загальні параметри, такі як база вашого магазину, валюти і сценарії/варіанти, які впливають на функції, що використовуються в вашому магазині." - -#: admin/woocommerce-admin-content.php:45 -#: admin/woocommerce-admin-settings.php:184 -#: assets/js/admin/editor_plugin_lang.php:14 -#@ woocommerce -msgid "Pages" -msgstr "Сторінки" - -#: admin/woocommerce-admin-content.php:45 -#@ woocommerce -msgid "This is where important store page are defined. You can also set up other pages (such as a Terms page) here." -msgstr "" - -#: admin/woocommerce-admin-content.php:46 -#@ woocommerce -msgid "Options for how things like price, images and weights appear in your product catalog." -msgstr "" - -#: admin/woocommerce-admin-content.php:47 -#@ woocommerce -msgid "Options concerning stock and stock notices." -msgstr "" - -#: admin/woocommerce-admin-content.php:48 -#@ woocommerce -msgid "Options concerning tax, including international and local tax rates." -msgstr "" - -#: admin/woocommerce-admin-content.php:49 -#@ woocommerce -msgid "This is where shipping options are defined, and shipping methods are set up." -msgstr "" - -#: admin/woocommerce-admin-content.php:50 -#@ woocommerce -msgid "Payment Methods" -msgstr "Способи оплати" - -#: admin/woocommerce-admin-content.php:50 -#@ woocommerce -msgid "This is where payment gateway options are defined, and individual payment gateways are set up." -msgstr "" - -#: admin/woocommerce-admin-content.php:51 -#: admin/woocommerce-admin-settings.php:189 -#@ woocommerce -msgid "Emails" -msgstr "Електронні пошти" - -#: admin/woocommerce-admin-content.php:51 -#@ woocommerce -msgid "Here you can customise the way WooCommerce emails appear." -msgstr "Тут ви можете налаштувати спосіб появи листів WooCommerce." - -#: admin/woocommerce-admin-content.php:52 -#: admin/woocommerce-admin-settings.php:190 -#@ woocommerce -msgid "Integration" -msgstr "Інтреграція" - -#: admin/woocommerce-admin-content.php:52 -#@ woocommerce -msgid "The integration section contains options for third party services which integrate with WooCommerce." -msgstr "Розділ Інтеграції містить параметри додаткових сервісів від сторонніх розробників, які інтегруються з WooCommerce." - -#: admin/woocommerce-admin-content.php:57 -#: admin/woocommerce-admin-init.php:64 -#@ woocommerce -msgid "Reports" -msgstr "Звіти" - -#: admin/woocommerce-admin-content.php:59 -#@ woocommerce -msgid "The reports section can be accessed from the left-hand navigation menu. Here you can generate reports for sales and customers." -msgstr "Розділ звітів може бути доступний з лівого меню навігації. Тут ви можете створювати звіти по продажах та клієнтах." - -#: admin/woocommerce-admin-content.php:60 -#: admin/woocommerce-admin-reports.php:23 -#: admin/woocommerce-admin-reports.php:997 -#: admin/woocommerce-admin-reports.php:1095 -#: admin/woocommerce-admin-reports.php:1214 -#@ woocommerce -msgid "Sales" -msgstr "Продажі" - -#: admin/woocommerce-admin-content.php:60 -#@ woocommerce -msgid "Reports for sales based on date, top sellers and top earners." -msgstr "Звіти по продажах на дату, найпродаваніших і найприбутковіших." - -#: admin/woocommerce-admin-content.php:61 -#@ woocommerce -msgid "Coupon usage reports." -msgstr "Звіти по використанню купонів." - -#: admin/woocommerce-admin-content.php:62 -#: admin/woocommerce-admin-reports.php:79 -#@ woocommerce -msgid "Customers" -msgstr "Клієнти" - -#: admin/woocommerce-admin-content.php:62 -#@ woocommerce -msgid "Customer reports, such as signups per day." -msgstr "Звіти по клієнтах, наприклад реєстрацій на день." - -#: admin/woocommerce-admin-content.php:63 -#@ woocommerce -msgid "Stock reports for low stock and out of stock items." -msgstr "Звіти по залишаках для товарів, що закінчуються і тих що повністю продані." - -#: admin/woocommerce-admin-content.php:68 -#: admin/woocommerce-admin-dashboard.php:142 -#: woocommerce.php:1058 -#@ woocommerce -msgid "Orders" -msgstr "Замовлення" - -#: admin/woocommerce-admin-content.php:70 -#@ woocommerce -msgid "The orders section can be accessed from the left-hand navigation menu. Here you can view and manage customer orders." -msgstr "" - -#: admin/woocommerce-admin-content.php:71 -#@ woocommerce -msgid "Orders can also be added from this section if you want to set them up for a customer manually." -msgstr "Замовлення також можуть бути додані у цьому розділі, якщо ви хочете, налаштувати їх для клієнта вручну." - -#: admin/woocommerce-admin-content.php:78 -#@ woocommerce -msgid "Coupons can be managed from this section. Once added, customers will be able to enter coupon codes on the cart/checkout page. If a customer uses a coupon code they will be viewable when viewing orders." -msgstr "Купони управляються з цього розділу. Одного разу додані купони можуть використовуватись покупцями в кошику або під час оформлення замовлення. Якщо покупець використає код під час покупки це відображатиметься в замовленні." - -#: admin/woocommerce-admin-content.php:82 -#@ woocommerce -msgid "For more information:" -msgstr "Для отримання додаткової інформації:" - -#. translators: plugin header field 'Name' -#: admin/woocommerce-admin-content.php:83 -#: admin/woocommerce-admin-init.php:62 -#: admin/woocommerce-admin-init.php:71 -#: admin/woocommerce-admin-init.php:404 -#: classes/class-wc-order.php:1167 -#: classes/class-wc-order.php:1169 -#: classes/class-wc-order.php:1172 -#: woocommerce.php:0 -#@ woocommerce -msgid "WooCommerce" -msgstr "WooCommerce" - -#: admin/woocommerce-admin-content.php:84 -#@ woocommerce -msgid "Project on WordPress.org" -msgstr "Проект на WordPress.org" - -#: admin/woocommerce-admin-content.php:85 -#@ woocommerce -msgid "Project on Github" -msgstr "Проект на Github" - -#: admin/woocommerce-admin-content.php:86 -#@ woocommerce -msgid "WooCommerce Docs" -msgstr "WooCommerce документація" - -#: admin/woocommerce-admin-content.php:87 -#@ woocommerce -msgid "Official Extensions" -msgstr "Офіційні орширення" - -#: admin/woocommerce-admin-content.php:88 -#@ woocommerce -msgid "Official Themes" -msgstr "Офіційні теми" - -#: admin/woocommerce-admin-dashboard.php:40 -#@ woocommerce -msgid "Monthly Sales" -msgstr "Продажі за місяць" - -#: admin/woocommerce-admin-dashboard.php:43 -#@ woocommerce -msgid "WooCommerce Right Now" -msgstr "WooCommerce зараз" - -#: admin/woocommerce-admin-dashboard.php:44 -#@ woocommerce -msgid "WooCommerce Recent Orders" -msgstr "Останні замовлення WooCommerce" - -#: admin/woocommerce-admin-dashboard.php:45 -#: classes/widgets/class-wc-widget-recent-reviews.php:33 -#@ woocommerce -msgid "WooCommerce Recent Reviews" -msgstr "WooCommerce останні відгуки" - -#: admin/woocommerce-admin-dashboard.php:78 -#@ woocommerce -msgid "Shop Content" -msgstr "Вміст магазину" - -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:84 -#: admin/woocommerce-admin-functions.php:200 -#: admin/woocommerce-admin-init.php:761 -#: admin/woocommerce-admin-reports.php:996 -#: admin/woocommerce-admin-reports.php:1094 -#: templates/cart/cart.php:28 -#: templates/checkout/form-pay.php:19 -#: templates/checkout/review-order.php:21 -#: templates/emails/admin-new-order.php:22 -#: templates/emails/customer-completed-order.php:23 -#: templates/emails/customer-invoice.php:27 -#: templates/emails/customer-note.php:27 -#: templates/emails/customer-processing-order.php:23 -#: templates/order/order-details.php:20 -#: woocommerce.php:983 -#@ woocommerce -msgid "Product" -msgid_plural "Products" -msgstr[0] "Товар" -msgstr[1] "Товар" -msgstr[2] "Товар" - -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:98 -#: woocommerce.php:824 -#@ woocommerce -msgid "Product Category" -msgid_plural "Product Categories" -msgstr[0] "Категорія товарів" -msgstr[1] "Категорії товарів" -msgstr[2] "Категорії товарів" - -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:112 -#: woocommerce.php:860 -#@ woocommerce -msgid "Product Tag" -msgid_plural "Product Tags" -msgstr[0] "Мітки товару" -msgstr[1] "Мітки товару" -msgstr[2] "Мітки товару" - -#: admin/woocommerce-admin-dashboard.php:126 -#@ woocommerce -msgid "Attribute" -msgid_plural "Attributes" -msgstr[0] "Атрибут" -msgstr[1] "Атрибути" -msgstr[2] "Атрибути" - -#: admin/woocommerce-admin-dashboard.php:148 -#@ woocommerce -msgid "Pending" -msgstr "В черзі" - -#: admin/woocommerce-admin-dashboard.php:162 -#@ woocommerce -msgid "On-Hold" -msgstr "Опрацьовується" - -#: admin/woocommerce-admin-dashboard.php:190 -#@ woocommerce -msgid "Completed" -msgstr "Виконано" - -#: admin/woocommerce-admin-dashboard.php:207 -#, php-format -#@ woocommerce -msgid "You are using WooCommerce %s." -msgstr "Ви використовуєте WooCommerce %s." - -#: admin/woocommerce-admin-dashboard.php:238 -#@ woocommerce -msgid "l jS \\of F Y h:i:s A" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:239 -#@ woocommerce -msgid "item" -msgid_plural "items" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: admin/woocommerce-admin-dashboard.php:239 -#: classes/shortcodes/class-wc-shortcode-pay.php:98 -#: templates/checkout/thankyou.php:48 -#@ woocommerce -msgid "Total:" -msgstr "Всього:" - -#: admin/woocommerce-admin-dashboard.php:245 -#@ woocommerce -msgid "There are no product orders yet." -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:279 -#: classes/abstracts/abstract-wc-product.php:966 -#: templates/single-product/review.php:27 -#: templates/single-product-reviews.php:28 -#@ woocommerce -msgid "out of 5" -msgstr "" - -#: admin/woocommerce-admin-dashboard.php:287 -#@ woocommerce -msgid "There are no product reviews yet." -msgstr "У цього товару ще немає відгуків." - -#: admin/woocommerce-admin-dashboard.php:428 -#@ woocommerce -msgid "Sold" -msgstr "Продано" - -#: admin/woocommerce-admin-dashboard.php:429 -#@ woocommerce -msgid "Earned" -msgstr "Зароблено" - -#: admin/woocommerce-admin-functions.php:190 -#: admin/woocommerce-admin-install.php:225 -#@ woocommerce -msgid "Order Received" -msgstr "Замовлення отримане" - -#: admin/woocommerce-admin-functions.php:192 -#@ woocommerce -msgid "Thank you, we are now processing your order. Your order's details are below." -msgstr "Дякуємо, Ваше замовлення виконується. Деталі Вашого замовлення наведені нижче." - -#: admin/woocommerce-admin-functions.php:194 -#: classes/shortcodes/class-wc-shortcode-pay.php:90 -#: templates/checkout/thankyou.php:40 -#: templates/emails/customer-completed-order.php:18 -#: templates/emails/customer-invoice.php:22 -#: templates/emails/customer-note.php:22 -#: templates/emails/customer-processing-order.php:18 -#@ woocommerce -msgid "Order:" -msgstr "Замовлення:" - -#: admin/woocommerce-admin-functions.php:201 -#: templates/cart/cart.php:30 -#: templates/emails/admin-new-order.php:23 -#: templates/emails/customer-completed-order.php:24 -#: templates/emails/customer-invoice.php:28 -#: templates/emails/customer-note.php:28 -#: templates/emails/customer-processing-order.php:24 -#@ woocommerce -msgid "Quantity" -msgstr "Кількість" - -#: admin/woocommerce-admin-functions.php:214 -#@ woocommerce -msgid "Order total:" -msgstr "Всього по замовленню:" - -#: admin/woocommerce-admin-functions.php:220 -#: templates/emails/admin-new-order.php:50 -#: templates/emails/customer-completed-order.php:51 -#: templates/emails/customer-note.php:55 -#: templates/emails/customer-processing-order.php:51 -#: templates/emails/plain/admin-new-order.php:38 -#: templates/order/order-details.php:97 -#@ woocommerce -msgid "Customer details" -msgstr "Інформація про клієнта" - -#: admin/woocommerce-admin-functions.php:226 -#: templates/emails/email-addresses.php:18 -#: templates/emails/plain/email-addresses.php:12 -#@ woocommerce -msgid "Billing address" -msgstr "Адреса для рахунків" - -#: admin/woocommerce-admin-functions.php:233 -#: templates/emails/email-addresses.php:28 -#: templates/emails/plain/email-addresses.php:17 -#@ woocommerce -msgid "Shipping address" -msgstr "Адреса доставки" - -#: admin/woocommerce-admin-functions.php:473 -#@ woocommerce -msgid "Could not compile woocommerce.less:" -msgstr "" - -#: admin/woocommerce-admin-functions.php:494 -#: admin/woocommerce-admin-functions.php:495 -#@ woocommerce -msgid "Mark processing" -msgstr "Помітити, що виконується" - -#: admin/woocommerce-admin-functions.php:497 -#: admin/woocommerce-admin-functions.php:498 -#@ woocommerce -msgid "Mark completed" -msgstr "Помітити як виконане" - -#: admin/woocommerce-admin-functions.php:535 -#@ woocommerce -msgid "Order status changed by bulk edit:" -msgstr "Статус замолвення змінено масовою зміною:" - -#: admin/woocommerce-admin-functions.php:558 -#, php-format -#@ default -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: admin/woocommerce-admin-init.php:88 -#@ woocommerce -msgid "WooCommerce Settings" -msgstr "Налаштування WooCommerce" - -#: admin/woocommerce-admin-init.php:89 -#@ woocommerce -msgid "WooCommerce Status" -msgstr "Стан WooCommerce" - -#: admin/woocommerce-admin-init.php:142 -#: admin/woocommerce-admin-init.php:144 -#: woocommerce.php:1049 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Orders" -msgstr "Замовлення" - -#: admin/woocommerce-admin-init.php:433 -#@ woocommerce -msgid "Are you sure you want to remove the selected items? If you have previously reduced this item's stock, or this order was submitted by a customer, you will need to manually restore the item's stock." -msgstr "" - -#: admin/woocommerce-admin-init.php:434 -#@ woocommerce -msgid "Please select some items." -msgstr "Будь ласка, оберіть позиції." - -#: admin/woocommerce-admin-init.php:435 -#@ woocommerce -msgid "Remove this item meta?" -msgstr "Видалити цю позначку позиції?" - -#: admin/woocommerce-admin-init.php:436 -#@ woocommerce -msgid "Remove this attribute?" -msgstr "Прибрати цей атрибут?" - -#: admin/woocommerce-admin-init.php:444 -#@ woocommerce -msgid "Enter a name for the new attribute term:" -msgstr "Введіть ім'я для нового атрибуту:" - -#: admin/woocommerce-admin-init.php:445 -#@ woocommerce -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "Розрахувати підсумки беручи за основу замовлення товарів, знижки і доставку?" - -#: admin/woocommerce-admin-init.php:446 -#@ woocommerce -msgid "Calculate line taxes? This will calculate taxes based on the customers country. If no billing/shipping is set it will use the store base country." -msgstr "Розрахувати податки порядково? Податки будуть розраховані беручи за основу країну клієнта. Якщо адреси рахунків/доставки не вказані, то за осноу буде братися базова країна магазину." - -#: admin/woocommerce-admin-init.php:447 -#@ woocommerce -msgid "Copy billing information to shipping information? This will remove any currently entered shipping information." -msgstr "" - -#: admin/woocommerce-admin-init.php:448 -#@ woocommerce -msgid "Load the customer's billing information? This will remove any currently entered billing information." -msgstr "" - -#: admin/woocommerce-admin-init.php:449 -#@ woocommerce -msgid "Load the customer's shipping information? This will remove any currently entered shipping information." -msgstr "" - -#: admin/woocommerce-admin-init.php:453 -#@ woocommerce -msgid "No customer selected" -msgstr "Не обрано жодного клієнта" - -#: admin/woocommerce-admin-init.php:665 -#, php-format -#@ woocommerce -msgid "Product updated. View Product" -msgstr "Товар оновлено. Переглянути товар" - -#: admin/woocommerce-admin-init.php:666 -#: admin/woocommerce-admin-init.php:681 -#: admin/woocommerce-admin-init.php:696 -#@ woocommerce -msgid "Custom field updated." -msgstr "Власне поле оновлено." - -#: admin/woocommerce-admin-init.php:667 -#: admin/woocommerce-admin-init.php:682 -#: admin/woocommerce-admin-init.php:697 -#@ woocommerce -msgid "Custom field deleted." -msgstr "Власне поле видалене." - -#: admin/woocommerce-admin-init.php:668 -#@ woocommerce -msgid "Product updated." -msgstr "Товар оновлено." - -#: admin/woocommerce-admin-init.php:669 -#, php-format -#@ woocommerce -msgid "Product restored to revision from %s" -msgstr "" - -#: admin/woocommerce-admin-init.php:670 -#, php-format -#@ woocommerce -msgid "Product published. View Product" -msgstr "Товар опубліковано на сайті. Переглянути товар" - -#: admin/woocommerce-admin-init.php:671 -#@ woocommerce -msgid "Product saved." -msgstr "" - -#: admin/woocommerce-admin-init.php:672 -#, php-format -#@ woocommerce -msgid "Product submitted. Preview Product" -msgstr "" - -#: admin/woocommerce-admin-init.php:673 -#, php-format -#@ woocommerce -msgid "Product scheduled for: %1$s. Preview Product" -msgstr "" - -#: admin/woocommerce-admin-init.php:674 -#: admin/woocommerce-admin-init.php:689 -#: admin/woocommerce-admin-init.php:704 -#@ woocommerce -msgid "M j, Y @ G:i" -msgstr "" - -#: admin/woocommerce-admin-init.php:675 -#, php-format -#@ woocommerce -msgid "Product draft updated. Preview Product" -msgstr "" - -#: admin/woocommerce-admin-init.php:680 -#: admin/woocommerce-admin-init.php:683 -#: admin/woocommerce-admin-init.php:685 -#@ woocommerce -msgid "Order updated." -msgstr "Замовлення оновлене." - -#: admin/woocommerce-admin-init.php:684 -#, php-format -#@ woocommerce -msgid "Order restored to revision from %s" -msgstr "Замовлення відновлене до версії від %s" - -#: admin/woocommerce-admin-init.php:686 -#@ woocommerce -msgid "Order saved." -msgstr "Замовлення забережене." - -#: admin/woocommerce-admin-init.php:687 -#@ woocommerce -msgid "Order submitted." -msgstr "Замовлення підтверджене." - -#: admin/woocommerce-admin-init.php:688 -#, php-format -#@ woocommerce -msgid "Order scheduled for: %1$s." -msgstr "Замовити запланована на: %1$s." - -#: admin/woocommerce-admin-init.php:690 -#@ woocommerce -msgid "Order draft updated." -msgstr "Чернетка замовлення оновлена." - -#: admin/woocommerce-admin-init.php:695 -#: admin/woocommerce-admin-init.php:698 -#: admin/woocommerce-admin-init.php:700 -#@ woocommerce -msgid "Coupon updated." -msgstr "Купон оновлено." - -#: admin/woocommerce-admin-init.php:699 -#, php-format -#@ woocommerce -msgid "Coupon restored to revision from %s" -msgstr "" - -#: admin/woocommerce-admin-init.php:701 -#@ woocommerce -msgid "Coupon saved." -msgstr "" - -#: admin/woocommerce-admin-init.php:702 -#@ woocommerce -msgid "Coupon submitted." -msgstr "" - -#: admin/woocommerce-admin-init.php:703 -#, php-format -#@ woocommerce -msgid "Coupon scheduled for: %1$s." -msgstr "" - -#: admin/woocommerce-admin-init.php:705 -#@ woocommerce -msgid "Coupon draft updated." -msgstr "" - -#: admin/woocommerce-admin-init.php:722 -#@ woocommerce -msgid "Order notes" -msgstr "" - -#: admin/woocommerce-admin-init.php:737 -#@ woocommerce -msgid "These settings control the permalinks used for products. These settings only apply when not using \"default\" permalinks above." -msgstr "Ці налаштування керуються постійними посиланнями для товарів. Ці налаштування застосовуються лише коли не використовуються постійні посилання \"за промовчуванням\" вище." - -#: admin/woocommerce-admin-init.php:744 -#@ woocommerce -msgctxt "default-slug" -msgid "shop" -msgstr "магазин" - -#: admin/woocommerce-admin-init.php:745 -#@ woocommerce -msgctxt "default-slug" -msgid "product" -msgstr "товар" - -#: admin/woocommerce-admin-init.php:766 -#@ woocommerce -msgid "Shop base" -msgstr "База магазину" - -#: admin/woocommerce-admin-init.php:770 -#@ woocommerce -msgid "Shop base with category" -msgstr "База магазину з категоріями" - -#: admin/woocommerce-admin-init.php:776 -#@ woocommerce -msgid "Custom Base" -msgstr "Бласна база." - -#: admin/woocommerce-admin-init.php:778 -#@ woocommerce -msgid "Enter a custom base to use. A base must be set or WordPress will use default instead." -msgstr "" - -#: admin/woocommerce-admin-init.php:806 -#@ woocommerce -msgid "Product permalink base" -msgstr "" - -#: admin/woocommerce-admin-init.php:811 -#@ woocommerce -msgid "Product category base" -msgstr "" - -#: admin/woocommerce-admin-init.php:818 -#@ woocommerce -msgid "Product tag base" -msgstr "" - -#: admin/woocommerce-admin-init.php:825 -#@ woocommerce -msgid "Product attribute base" -msgstr "" - -#: admin/woocommerce-admin-install.php:195 -#@ woocommerce -msgctxt "page_slug" -msgid "shop" -msgstr "магазин" - -#: admin/woocommerce-admin-install.php:195 -#@ woocommerce -msgid "Shop" -msgstr "Магазин" - -#: admin/woocommerce-admin-install.php:198 -#@ woocommerce -msgctxt "page_slug" -msgid "cart" -msgstr "кошик" - -#: admin/woocommerce-admin-install.php:198 -#: admin/woocommerce-admin-status.php:303 -#: assets/js/admin/editor_plugin_lang.php:15 -#: classes/widgets/class-wc-widget-cart.php:61 -#@ woocommerce -msgid "Cart" -msgstr "Кошик" - -#: admin/woocommerce-admin-install.php:201 -#@ woocommerce -msgctxt "page_slug" -msgid "checkout" -msgstr "оформлення" - -#: admin/woocommerce-admin-install.php:204 -#@ woocommerce -msgctxt "page_slug" -msgid "my-account" -msgstr "my-account" - -#: admin/woocommerce-admin-install.php:204 -#: admin/woocommerce-admin-status.php:319 -#: assets/js/admin/editor_plugin_lang.php:18 -#: templates/checkout/thankyou.php:30 -#@ woocommerce -msgid "My Account" -msgstr "Мій обліковий запис" - -#: admin/woocommerce-admin-install.php:210 -#@ woocommerce -msgctxt "page_slug" -msgid "edit-address" -msgstr "редагування адреси" - -#: admin/woocommerce-admin-install.php:210 -#@ woocommerce -msgid "Edit My Address" -msgstr "Редагувати маю адресу" - -#: admin/woocommerce-admin-install.php:213 -#@ woocommerce -msgctxt "page_slug" -msgid "view-order" -msgstr "" - -#: admin/woocommerce-admin-install.php:213 -#: admin/woocommerce-admin-status.php:327 -#: assets/js/admin/editor_plugin_lang.php:21 -#: woocommerce.php:1065 -#: woocommerce.php:1066 -#@ woocommerce -msgid "View Order" -msgstr "Переглянути замовлення" - -#: admin/woocommerce-admin-install.php:216 -#@ woocommerce -msgctxt "page_slug" -msgid "change-password" -msgstr "" - -#: admin/woocommerce-admin-install.php:216 -#: admin/woocommerce-admin-status.php:331 -#: assets/js/admin/editor_plugin_lang.php:20 -#@ woocommerce -msgid "Change Password" -msgstr "" - -#: admin/woocommerce-admin-install.php:219 -#@ woocommerce -msgctxt "page_slug" -msgid "logout" -msgstr "" - -#: admin/woocommerce-admin-install.php:219 -#@ woocommerce -msgid "Logout" -msgstr "" - -#: admin/woocommerce-admin-install.php:222 -#@ woocommerce -msgctxt "page_slug" -msgid "pay" -msgstr "" - -#: admin/woocommerce-admin-install.php:222 -#@ woocommerce -msgid "Checkout → Pay" -msgstr "Оформлення → Оплата" - -#: admin/woocommerce-admin-install.php:225 -#@ woocommerce -msgctxt "page_slug" -msgid "order-received" -msgstr "" - -#: admin/woocommerce-admin-reports.php:32 -#@ woocommerce -msgid "Sales by day" -msgstr "Продажі за день" - -#: admin/woocommerce-admin-reports.php:37 -#@ woocommerce -msgid "Sales by month" -msgstr "Продажі за місяць" - -#: admin/woocommerce-admin-reports.php:42 -#@ woocommerce -msgid "Product Sales" -msgstr "Продажі товару" - -#: admin/woocommerce-admin-reports.php:47 -#@ woocommerce -msgid "Top sellers" -msgstr "Найпродаваніші" - -#: admin/woocommerce-admin-reports.php:52 -#@ woocommerce -msgid "Top earners" -msgstr "Найприбутковіші" - -#: admin/woocommerce-admin-reports.php:57 -#@ woocommerce -msgid "Sales by category" -msgstr "Продажі по категоріях" - -#: admin/woocommerce-admin-reports.php:72 -#@ woocommerce -msgid "Discounts by coupon" -msgstr "" - -#: admin/woocommerce-admin-reports.php:104 -#@ woocommerce -msgid "Taxes by month" -msgstr "" - -#: admin/woocommerce-admin-reports.php:243 -#: admin/woocommerce-admin-reports.php:508 -#: admin/woocommerce-admin-reports.php:713 -#: admin/woocommerce-admin-reports.php:894 -#@ woocommerce -msgid "Sales amount" -msgstr "Об'єм продаж" - -#: admin/woocommerce-admin-reports.php:248 -#: admin/woocommerce-admin-reports.php:508 -#: admin/woocommerce-admin-reports.php:713 -#: admin/woocommerce-admin-reports.php:894 -#@ woocommerce -msgid "Number of sales" -msgstr "" - -#: admin/woocommerce-admin-reports.php:380 -#@ woocommerce -msgid "Total sales" -msgstr "Всього продано" - -#: admin/woocommerce-admin-reports.php:382 -#: admin/woocommerce-admin-reports.php:388 -#: admin/woocommerce-admin-reports.php:394 -#: admin/woocommerce-admin-reports.php:400 -#: admin/woocommerce-admin-reports.php:406 -#: admin/woocommerce-admin-reports.php:412 -#: admin/woocommerce-admin-reports.php:655 -#: admin/woocommerce-admin-reports.php:661 -#: admin/woocommerce-admin-reports.php:667 -#: admin/woocommerce-admin-reports.php:673 -#: admin/woocommerce-admin-reports.php:839 -#: admin/woocommerce-admin-reports.php:845 -#: admin/woocommerce-admin-reports.php:851 -#: admin/woocommerce-admin-reports.php:857 -#: admin/woocommerce-admin-reports.php:1380 -#: admin/woocommerce-admin-reports.php:1386 -#: admin/woocommerce-admin-reports.php:1392 -#: admin/woocommerce-admin-reports.php:1826 -#: admin/woocommerce-admin-reports.php:1832 -#: admin/woocommerce-admin-reports.php:1838 -#: admin/woocommerce-admin-reports.php:1844 -#: admin/woocommerce-admin-reports.php:1850 -#: admin/woocommerce-admin-reports.php:1856 -#: admin/woocommerce-admin-reports.php:2320 -#: admin/woocommerce-admin-reports.php:2331 -#: admin/woocommerce-admin-reports.php:2342 -#@ woocommerce -msgid "n/a" -msgstr "н/д" - -#: admin/woocommerce-admin-reports.php:386 -#@ woocommerce -msgid "Total orders" -msgstr "Всього замовлень" - -#: admin/woocommerce-admin-reports.php:388 -#: admin/woocommerce-admin-reports.php:661 -#: admin/woocommerce-admin-reports.php:845 -#@ woocommerce -msgid "items" -msgstr "" - -#: admin/woocommerce-admin-reports.php:392 -#@ woocommerce -msgid "Average order total" -msgstr "" - -#: admin/woocommerce-admin-reports.php:398 -#@ woocommerce -msgid "Average order items" -msgstr "" - -#: admin/woocommerce-admin-reports.php:404 -#@ woocommerce -msgid "Discounts used" -msgstr "Знижок використано" - -#: admin/woocommerce-admin-reports.php:410 -#@ woocommerce -msgid "Total shipping costs" -msgstr "Загальна вартість доставок" - -#: admin/woocommerce-admin-reports.php:418 -#@ woocommerce -msgid "This month's sales" -msgstr "Продажі за останній місяць" - -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1372 -#@ woocommerce -msgid "From:" -msgstr "від:" - -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1372 -#@ woocommerce -msgid "To:" -msgstr "" - -#: admin/woocommerce-admin-reports.php:647 -#: admin/woocommerce-admin-reports.php:832 -#: admin/woocommerce-admin-reports.php:991 -#: admin/woocommerce-admin-reports.php:1089 -#: admin/woocommerce-admin-reports.php:1245 -#: admin/woocommerce-admin-reports.php:1372 -#: admin/woocommerce-admin-reports.php:1505 -#: admin/woocommerce-admin-reports.php:2309 -#: admin/woocommerce-admin-reports.php:2492 -#@ woocommerce -msgid "Show" -msgstr "Показати" - -#: admin/woocommerce-admin-reports.php:653 -#@ woocommerce -msgid "Total sales in range" -msgstr "Всього продаж в діапазоні" - -#: admin/woocommerce-admin-reports.php:659 -#@ woocommerce -msgid "Total orders in range" -msgstr "Всього замовлень у діапазоні" - -#: admin/woocommerce-admin-reports.php:665 -#@ woocommerce -msgid "Average order total in range" -msgstr "" - -#: admin/woocommerce-admin-reports.php:671 -#@ woocommerce -msgid "Average order items in range" -msgstr "" - -#: admin/woocommerce-admin-reports.php:679 -#@ woocommerce -msgid "Sales in range" -msgstr "Продажі в діапазоні" - -#: admin/woocommerce-admin-reports.php:826 -#: admin/woocommerce-admin-reports.php:2303 -#@ woocommerce -msgid "Year:" -msgstr "" - -#: admin/woocommerce-admin-reports.php:837 -#@ woocommerce -msgid "Total sales for year" -msgstr "Всього продаж за рік" - -#: admin/woocommerce-admin-reports.php:843 -#@ woocommerce -msgid "Total orders for year" -msgstr "Всього замовлень за рік" - -#: admin/woocommerce-admin-reports.php:849 -#@ woocommerce -msgid "Average order total for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:855 -#@ woocommerce -msgid "Average order items for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:863 -#@ woocommerce -msgid "Monthly sales for year" -msgstr "Місячні продажі за рік" - -#: admin/woocommerce-admin-reports.php:1011 -#@ woocommerce -msgid "Product does not exist" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1110 -#@ woocommerce -msgid "Product no longer exists" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1209 -#, php-format -#@ woocommerce -msgid "Sales for %s:" -msgstr "Продажі для %s:" - -#: admin/woocommerce-admin-reports.php:1213 -#: admin/woocommerce-admin-reports.php:2351 -#@ woocommerce -msgid "Month" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1235 -#@ woocommerce -msgid "No sales :(" -msgstr "Немає продаж :(" - -#: admin/woocommerce-admin-reports.php:1378 -#@ woocommerce -msgid "Total orders containing coupons" -msgstr "Всього замовлень з купонами" - -#: admin/woocommerce-admin-reports.php:1384 -#@ woocommerce -msgid "Percent of orders containing coupons" -msgstr "Відсоток замовлень з купонами" - -#: admin/woocommerce-admin-reports.php:1390 -#@ woocommerce -msgid "Total coupon discount" -msgstr "Загальна знижка по купону" - -#: admin/woocommerce-admin-reports.php:1399 -#@ woocommerce -msgid "Most popular coupons" -msgstr "Найпопулярніші купони" - -#: admin/woocommerce-admin-reports.php:1409 -#, php-format -#@ woocommerce -msgid "Used 1 time" -msgid_plural "Used %d times" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: admin/woocommerce-admin-reports.php:1412 -#: admin/woocommerce-admin-reports.php:1434 -#@ woocommerce -msgid "No coupons found" -msgstr "Купонів не знайдено" - -#: admin/woocommerce-admin-reports.php:1421 -#@ woocommerce -msgid "Greatest discount amount" -msgstr "Найбільша сума знижки" - -#: admin/woocommerce-admin-reports.php:1431 -#, php-format -#@ woocommerce -msgid "Discounted %s" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1490 -#: admin/woocommerce-admin-reports.php:2469 -#@ woocommerce -msgid "Show:" -msgstr "Показати:" - -#: admin/woocommerce-admin-reports.php:1547 -#: templates/cart/cart.php:127 -#: woocommerce.php:1096 -#@ woocommerce -msgid "Coupon" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1630 -#@ woocommerce -msgid "Top coupon" -msgstr "Топ купон" - -#: admin/woocommerce-admin-reports.php:1638 -#@ woocommerce -msgid "Worst coupon" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1646 -#@ woocommerce -msgid "Discount average" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1654 -#@ woocommerce -msgid "Discount median" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1674 -#@ woocommerce -msgid "Monthly discounts by coupon" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1824 -#@ woocommerce -msgid "Total customers" -msgstr "Всього клієнтів" - -#: admin/woocommerce-admin-reports.php:1830 -#@ woocommerce -msgid "Total customer sales" -msgstr "Всього покупок зроблених клієнтами" - -#: admin/woocommerce-admin-reports.php:1836 -#@ woocommerce -msgid "Total guest sales" -msgstr "Всього покупок зроблених гостями" - -#: admin/woocommerce-admin-reports.php:1842 -#@ woocommerce -msgid "Total customer orders" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1848 -#@ woocommerce -msgid "Total guest orders" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1854 -#@ woocommerce -msgid "Average orders per customer" -msgstr "" - -#: admin/woocommerce-admin-reports.php:1862 -#@ woocommerce -msgid "Signups per day" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2083 -#@ woocommerce -msgid "Low stock" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2106 -#: admin/woocommerce-admin-reports.php:2145 -#, php-format -#@ woocommerce -msgid "%d in stock" -msgid_plural "%d in stock" -msgstr[0] "%d на складі" -msgstr[1] "%d на складі" -msgstr[2] "%d на складі" - -#: admin/woocommerce-admin-reports.php:2111 -#@ woocommerce -msgid "No products are low in stock." -msgstr "На складі немає товарів, які закінчуються." - -#: admin/woocommerce-admin-reports.php:2143 -#@ woocommerce -msgid "Marked out of stock" -msgstr "Помічений як відсутній на складі" - -#: admin/woocommerce-admin-reports.php:2150 -#@ woocommerce -msgid "No products are out in stock." -msgstr "Немає товарів, що закінчилися." - -#: admin/woocommerce-admin-reports.php:2314 -#@ woocommerce -msgid "Total taxes for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2325 -#@ woocommerce -msgid "Total product taxes for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2336 -#@ woocommerce -msgid "Total shipping tax for year" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2352 -#@ woocommerce -msgid "Total Sales" -msgstr "Загальний обсяг продажів" - -#: admin/woocommerce-admin-reports.php:2352 -#@ woocommerce -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2353 -#@ woocommerce -msgid "Total Shipping" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2353 -#@ woocommerce -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2354 -#@ woocommerce -msgid "Total Product Taxes" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2354 -#@ woocommerce -msgid "This is the sum of the 'Cart Tax' field within your orders." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2355 -#@ woocommerce -msgid "Total Shipping Taxes" -msgstr "Загальна сума податків на доставку" - -#: admin/woocommerce-admin-reports.php:2355 -#@ woocommerce -msgid "This is the sum of the 'Shipping Tax' field within your orders." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2356 -#@ woocommerce -msgid "Total Taxes" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2356 -#@ woocommerce -msgid "This is the sum of the 'Cart Tax' and 'Shipping Tax' fields within your orders." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2357 -#@ woocommerce -msgid "Net profit" -msgstr "Чистий прибуток" - -#: admin/woocommerce-admin-reports.php:2357 -#@ woocommerce -msgid "Total sales minus shipping and tax." -msgstr "" - -#: admin/woocommerce-admin-reports.php:2402 -#@ woocommerce -msgid "Toggle tax rows" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2545 -#@ woocommerce -msgid "Category" -msgstr "Категорія" - -#: admin/woocommerce-admin-reports.php:2648 -#@ woocommerce -msgid "Top category" -msgstr "Топ категорія" - -#: admin/woocommerce-admin-reports.php:2657 -#@ woocommerce -msgid "Worst category" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2665 -#@ woocommerce -msgid "Category sales average" -msgstr "" - -#: admin/woocommerce-admin-reports.php:2676 -#@ woocommerce -msgid "Category sales median" -msgstr "Категорія продажів Медіана" - -#: admin/woocommerce-admin-reports.php:2696 -#@ woocommerce -msgid "Monthly sales by category" -msgstr "Продажі за місяць по категоріях" - -#: admin/woocommerce-admin-settings.php:45 -#: woocommerce.php:1758 -#@ woocommerce -msgid "Action failed. Please refresh the page and retry." -msgstr "Не вдалося виконати цю дію. Оновлення сторінку і повторіть спробу." - -#: admin/woocommerce-admin-settings.php:164 -#@ woocommerce -msgid "Your settings have been saved." -msgstr "Ваші налаштування були збережені." - -#: admin/woocommerce-admin-settings.php:210 -#, php-format -#@ woocommerce -msgid "More functionality and gateway options available via WC official extensions." -msgstr "Розширення функціоналу та додаткові шлюзи оплати доступні на сайті офійних розширень WC." - -#: admin/woocommerce-admin-settings.php:228 -#@ woocommerce -msgid "Tax Rates" -msgstr "" - -#: admin/woocommerce-admin-settings.php:255 -#@ woocommerce -msgid "Email Options" -msgstr "" - -#: admin/woocommerce-admin-settings.php:388 -#: classes/integrations/shareyourcart/views/admin-page.php:110 -#: classes/integrations/shareyourcart/views/button-settings-page.php:120 -#@ woocommerce -msgid "Save changes" -msgstr "Зберегти зміни" - -#: admin/woocommerce-admin-settings.php:429 -#@ woocommerce -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "" - -#: admin/woocommerce-admin-settings.php:801 -#@ woocommerce -msgid "Hard Crop" -msgstr "" - -#: admin/woocommerce-admin-settings.php:826 -#@ woocommerce -msgid "Select a page…" -msgstr "" - -#: admin/woocommerce-admin-settings.php:849 -#@ woocommerce -msgid "Choose a country…" -msgstr "Оберіть країну…" - -#: admin/woocommerce-admin-settings.php:869 -#@ woocommerce -msgid "Choose countries…" -msgstr "Оберіть країни…" - -#: admin/woocommerce-admin-status.php:27 -#: admin/woocommerce-admin-status.php:692 -#@ woocommerce -msgid "Tools" -msgstr "" - -#: admin/woocommerce-admin-status.php:62 -#@ woocommerce -msgid "Please include this information when requesting support:" -msgstr "" - -#: admin/woocommerce-admin-status.php:63 -#@ woocommerce -msgid "Download System Report File" -msgstr "" - -#: admin/woocommerce-admin-status.php:71 -#@ woocommerce -msgid "Environment" -msgstr "" - -#: admin/woocommerce-admin-status.php:77 -#@ woocommerce -msgid "Home URL" -msgstr "" - -#: admin/woocommerce-admin-status.php:81 -#@ woocommerce -msgid "Site URL" -msgstr "" - -#: admin/woocommerce-admin-status.php:85 -#@ woocommerce -msgid "WC Version" -msgstr "" - -#: admin/woocommerce-admin-status.php:89 -#@ woocommerce -msgid "WC Database Version" -msgstr "" - -#: admin/woocommerce-admin-status.php:93 -#@ woocommerce -msgid "WP Version" -msgstr "" - -#: admin/woocommerce-admin-status.php:97 -#@ woocommerce -msgid "Web Server Info" -msgstr "" - -#: admin/woocommerce-admin-status.php:101 -#@ woocommerce -msgid "PHP Version" -msgstr "" - -#: admin/woocommerce-admin-status.php:105 -#@ woocommerce -msgid "MySQL Version" -msgstr "Версія MySQL" - -#: admin/woocommerce-admin-status.php:109 -#@ woocommerce -msgid "WP Memory Limit" -msgstr "" - -#: admin/woocommerce-admin-status.php:114 -#, php-format -#@ woocommerce -msgid "%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "" - -#: admin/woocommerce-admin-status.php:121 -#@ woocommerce -msgid "WP Debug Mode" -msgstr "" - -#: admin/woocommerce-admin-status.php:125 -#@ woocommerce -msgid "WP Max Upload Size" -msgstr "" - -#: admin/woocommerce-admin-status.php:129 -#@ woocommerce -msgid "PHP Post Max Size" -msgstr "" - -#: admin/woocommerce-admin-status.php:133 -#@ woocommerce -msgid "PHP Time Limit" -msgstr "" - -#: admin/woocommerce-admin-status.php:137 -#@ woocommerce -msgid "WC Logging" -msgstr "" - -#: admin/woocommerce-admin-status.php:140 -#@ woocommerce -msgid "Log directory is writable." -msgstr "" - -#: admin/woocommerce-admin-status.php:142 -#@ woocommerce -msgid "Log directory (woocommerce/logs/) is not writable. Logging will not be possible." -msgstr "" - -#: admin/woocommerce-admin-status.php:149 -#@ woocommerce -msgid "fsockopen/cURL" -msgstr "" - -#: admin/woocommerce-admin-status.php:152 -#@ woocommerce -msgid "Your server has fsockopen and cURL enabled." -msgstr "" - -#: admin/woocommerce-admin-status.php:154 -#@ woocommerce -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "" - -#: admin/woocommerce-admin-status.php:156 -#@ woocommerce -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "" - -#: admin/woocommerce-admin-status.php:160 -#@ woocommerce -msgid "Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider." -msgstr "Ваш сервер не має включених fsockopen або cURL - PayPal IPN та інші скрипти, котрі спілкуються з іншими серверами не будуть працювати. Зверніться до вашого хостинг-провайдера." - -#: admin/woocommerce-admin-status.php:165 -#@ woocommerce -msgid "SOAP Client" -msgstr "" - -#: admin/woocommerce-admin-status.php:167 -#@ woocommerce -msgid "Your server has the SOAP Client class enabled." -msgstr "" - -#: admin/woocommerce-admin-status.php:170 -#, php-format -#@ woocommerce -msgid "Your server does not have the SOAP Client class enabled - some gateway plugins which use SOAP may not work as expected." -msgstr "" - -#: admin/woocommerce-admin-status.php:175 -#@ woocommerce -msgid "WP Remote Post" -msgstr "" - -#: admin/woocommerce-admin-status.php:186 -#@ woocommerce -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "" - -#: admin/woocommerce-admin-status.php:189 -#@ woocommerce -msgid "wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:" -msgstr "wp_remote_post() не доступний. PayPal IPN не може працювати з Вашим сервером. Зверніться до Вашого хостинг провайдеру. Помилка:" - -#: admin/woocommerce-admin-status.php:192 -#@ woocommerce -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "" - -#: admin/woocommerce-admin-status.php:215 -#@ woocommerce -msgid "Plugins" -msgstr "Додатки" - -#: admin/woocommerce-admin-status.php:221 -#@ woocommerce -msgid "Installed Plugins" -msgstr "Встановлені додатки" - -#: admin/woocommerce-admin-status.php:259 -#@ woocommerce -msgid "is available" -msgstr "доступне" - -#: admin/woocommerce-admin-status.php:262 -#@ woocommerce -msgid "by" -msgstr " " - -#: admin/woocommerce-admin-status.php:262 -#@ woocommerce -msgid "version" -msgstr "версія" - -#: admin/woocommerce-admin-status.php:285 -#@ woocommerce -msgid "Force SSL" -msgstr "" - -#: admin/woocommerce-admin-status.php:292 -#@ woocommerce -msgid "WC Pages" -msgstr "" - -#: admin/woocommerce-admin-status.php:299 -#@ woocommerce -msgid "Shop Base" -msgstr "База магазину" - -#: admin/woocommerce-admin-status.php:311 -#: assets/js/admin/editor_plugin_lang.php:22 -#: templates/checkout/thankyou.php:28 -#: templates/myaccount/my-orders.php:71 -#@ woocommerce -msgid "Pay" -msgstr "" - -#: admin/woocommerce-admin-status.php:315 -#@ woocommerce -msgid "Thanks" -msgstr "Дякуємо" - -#: admin/woocommerce-admin-status.php:323 -#: assets/js/admin/editor_plugin_lang.php:19 -#@ woocommerce -msgid "Edit Address" -msgstr "Редагувати адресу" - -#: admin/woocommerce-admin-status.php:355 -#@ woocommerce -msgid "Page not set" -msgstr "" - -#: admin/woocommerce-admin-status.php:365 -#@ woocommerce -msgid "Page does not exist" -msgstr "" - -#: admin/woocommerce-admin-status.php:370 -#, php-format -#@ woocommerce -msgid "Page does not contain the shortcode: %s" -msgstr "" - -#: admin/woocommerce-admin-status.php:389 -#@ woocommerce -msgid "WC Taxonomies" -msgstr "" - -#: admin/woocommerce-admin-status.php:395 -#@ woocommerce -msgid "Order Statuses" -msgstr "Статуси замовлень" - -#: admin/woocommerce-admin-status.php:405 -#@ woocommerce -msgid "Product Types" -msgstr "Типи товарів" - -#: admin/woocommerce-admin-status.php:446 -#@ woocommerce -msgid "Templates" -msgstr "Шаблони" - -#: admin/woocommerce-admin-status.php:452 -#@ woocommerce -msgid "Template Overrides" -msgstr "" - -#: admin/woocommerce-admin-status.php:470 -#@ woocommerce -msgid "No core overrides present in theme." -msgstr "" - -#: admin/woocommerce-admin-status.php:565 -#@ woocommerce -msgid "WC Transients" -msgstr "" - -#: admin/woocommerce-admin-status.php:566 -#@ woocommerce -msgid "Clear transients" -msgstr "" - -#: admin/woocommerce-admin-status.php:567 -#@ woocommerce -msgid "This tool will clear the product/shop transients cache." -msgstr "" - -#: admin/woocommerce-admin-status.php:570 -#@ woocommerce -msgid "Expired Transients" -msgstr "" - -#: admin/woocommerce-admin-status.php:571 -#@ woocommerce -msgid "Clear expired transients" -msgstr "" - -#: admin/woocommerce-admin-status.php:572 -#@ woocommerce -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "" - -#: admin/woocommerce-admin-status.php:575 -#@ woocommerce -msgid "Term counts" -msgstr "" - -#: admin/woocommerce-admin-status.php:576 -#@ woocommerce -msgid "Recount terms" -msgstr "" - -#: admin/woocommerce-admin-status.php:577 -#@ woocommerce -msgid "This tool will recount product terms - useful when changing your settings in a way which hides products from the catalog." -msgstr "" - -#: admin/woocommerce-admin-status.php:580 -#@ woocommerce -msgid "Capabilities" -msgstr "" - -#: admin/woocommerce-admin-status.php:581 -#@ woocommerce -msgid "Reset capabilities" -msgstr "" - -#: admin/woocommerce-admin-status.php:582 -#@ woocommerce -msgid "This tool will reset the admin, customer and shop_manager roles to default. Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "" - -#: admin/woocommerce-admin-status.php:585 -#@ woocommerce -msgid "Customer Sessions" -msgstr "Клієнтські сесії" - -#: admin/woocommerce-admin-status.php:586 -#@ woocommerce -msgid "Clear all sessions" -msgstr "" - -#: admin/woocommerce-admin-status.php:587 -#@ woocommerce -msgid "Warning This tool will delete all customer session data from the database, including any current live carts." -msgstr "Увага Цей інструмент видалить з бази данних всю інформацію користувачів, включаючи кошики, що оформляються в цею секунду." - -#: admin/woocommerce-admin-status.php:597 -#@ woocommerce -msgid "Product Transients Cleared" -msgstr "" - -#: admin/woocommerce-admin-status.php:638 -#, php-format -#@ woocommerce -msgid "%d Transients Rows Cleared" -msgstr "" - -#: admin/woocommerce-admin-status.php:646 -#@ woocommerce -msgid "Roles successfully reset" -msgstr "" - -#: admin/woocommerce-admin-status.php:658 -#@ woocommerce -msgid "Terms successfully recounted" -msgstr "" - -#: admin/woocommerce-admin-status.php:677 -#, php-format -#@ woocommerce -msgid "There was an error calling %s::%s" -msgstr "Виникла помилка %s::%s" - -#: admin/woocommerce-admin-status.php:680 -#, php-format -#@ woocommerce -msgid "There was an error calling %s" -msgstr "Виникла помилка %s" - -#: admin/woocommerce-admin-taxonomies.php:25 -#: admin/woocommerce-admin-taxonomies.php:118 -#@ woocommerce -msgid "Display type" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:29 -#: admin/woocommerce-admin-taxonomies.php:123 -#@ woocommerce -msgid "Subcategories" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:30 -#: admin/woocommerce-admin-taxonomies.php:124 -#@ woocommerce -msgid "Both" -msgstr "" - -#: admin/woocommerce-admin-taxonomies.php:34 -#: admin/woocommerce-admin-taxonomies.php:129 -#@ woocommerce -msgid "Thumbnail" -msgstr "Мініатюра" - -#: admin/woocommerce-admin-taxonomies.php:38 -#: admin/woocommerce-admin-taxonomies.php:134 -#@ woocommerce -msgid "Upload/Add image" -msgstr "Завантажити/Додати зображення" - -#: admin/woocommerce-admin-taxonomies.php:39 -#: admin/woocommerce-admin-taxonomies.php:135 -#@ woocommerce -msgid "Remove image" -msgstr "Прибрати зображення" - -#: admin/woocommerce-admin-taxonomies.php:64 -#: admin/woocommerce-admin-taxonomies.php:156 -#@ woocommerce -msgid "Use image" -msgstr "Використання зображення" - -#: admin/woocommerce-admin-taxonomies.php:222 -#@ woocommerce -msgid "Product categories for your store can be managed here. To change the order of categories on the front-end you can drag and drop to sort them. To see more categories listed click the \"screen options\" link at the top of the page." -msgstr "Тут можна керувати категоріями продуктів для вашого магазину. Ви можете змінити порядок відображення категорій на сайті просто перетягнувший їх. Щоб відобразити більше категорій натисніть \"Налаштування екрану\" зверху сторінки." - -#: admin/woocommerce-admin-taxonomies.php:237 -#@ woocommerce -msgid "Shipping classes can be used to group products of similar type. These groups can then be used by certain shipping methods to provide different rates to different products." -msgstr "Класи доставки можуть використовуватись для групування товарів подібного типу. В подальшому ці групи можна використовувати у різних методах доставки для встановлення різних ставок для різних товарів." - -#: admin/woocommerce-admin-taxonomies.php:365 -#@ woocommerce -msgid "Edit Class" -msgstr "Редагувати клас" - -#: admin/woocommerce-admin-users.php:26 -#: templates/checkout/form-billing.php:21 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:19 -#: templates/myaccount/my-address.php:25 -#: templates/order/order-details.php:115 -#@ woocommerce -msgid "Billing Address" -msgstr "Адреса для рахунків" - -#: admin/woocommerce-admin-users.php:27 -#: templates/checkout/form-shipping.php:35 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:20 -#: templates/order/order-details.php:130 -#@ woocommerce -msgid "Shipping Address" -msgstr "Адреса доставки" - -#: admin/woocommerce-admin-users.php:28 -#@ woocommerce -msgid "Paying Customer?" -msgstr "Платоспроможні клієнти?" - -#: admin/woocommerce-admin-users.php:29 -#@ woocommerce -msgid "Completed Orders" -msgstr "Виконані замовлення" - -#: admin/woocommerce-admin-users.php:144 -#@ woocommerce -msgid "Customer Billing Address" -msgstr "Клієнтьска адерса для рахунків" - -#: admin/woocommerce-admin-users.php:147 -#: admin/woocommerce-admin-users.php:196 -#@ woocommerce -msgid "First name" -msgstr "Ім'я" - -#: admin/woocommerce-admin-users.php:151 -#: admin/woocommerce-admin-users.php:200 -#@ woocommerce -msgid "Last name" -msgstr "Прізвище" - -#: admin/woocommerce-admin-users.php:176 -#@ woocommerce -msgid "Country or state code" -msgstr "Код країни або штату" - -#: admin/woocommerce-admin-users.php:180 -#: admin/woocommerce-admin-users.php:229 -#@ woocommerce -msgid "2 letter Country code" -msgstr "2-буквенний код країни" - -#: admin/woocommerce-admin-users.php:183 -#@ woocommerce -msgid "Telephone" -msgstr "Телефон" - -#: admin/woocommerce-admin-users.php:193 -#@ woocommerce -msgid "Customer Shipping Address" -msgstr "Клієнтська адреса доставки" - -#: admin/woocommerce-admin-users.php:225 -#@ woocommerce -msgid "State/County or state code" -msgstr "" - -#: assets/js/admin/editor_plugin_lang.php:5 -#@ woocommerce -msgid "Insert Shortcode" -msgstr "Вставити Shortcode" - -#: assets/js/admin/editor_plugin_lang.php:6 -#@ woocommerce -msgid "Product price/cart button" -msgstr "Ціна товару/кнопка кошику" - -#: assets/js/admin/editor_plugin_lang.php:7 -#@ woocommerce -msgid "Product by SKU/ID" -msgstr "Товари по Артикулу/ID" - -#: assets/js/admin/editor_plugin_lang.php:8 -#@ woocommerce -msgid "Products by SKU/ID" -msgstr "Товари по Артикулу/ID" - -#: assets/js/admin/editor_plugin_lang.php:10 -#@ woocommerce -msgid "Products by category slug" -msgstr "" - -#: assets/js/admin/editor_plugin_lang.php:11 -#@ woocommerce -msgid "Recent products" -msgstr "" - -#: assets/js/admin/editor_plugin_lang.php:12 -#@ woocommerce -msgid "Featured products" -msgstr "Рекомендовані товари" - -#: assets/js/admin/editor_plugin_lang.php:13 -#@ woocommerce -msgid "Shop Messages" -msgstr "Повідомлення магазину" - -#: assets/js/admin/editor_plugin_lang.php:17 -#@ woocommerce -msgid "Order tracking" -msgstr "Відстежування замовлення" - -#: assets/js/admin/editor_plugin_lang.php:23 -#@ woocommerce -msgid "Thankyou" -msgstr "Дякуємо" - -#: classes/abstracts/abstract-wc-email.php:431 -#: classes/emails/class-wc-email-customer-completed-order.php:135 -#: classes/emails/class-wc-email-customer-invoice.php:138 -#: classes/emails/class-wc-email-new-order.php:115 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:63 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:57 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:130 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:120 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:76 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:75 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:50 -#@ woocommerce -msgid "Enable/Disable" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:433 -#: classes/emails/class-wc-email-customer-completed-order.php:137 -#: classes/emails/class-wc-email-customer-invoice.php:140 -#: classes/emails/class-wc-email-new-order.php:117 -#@ woocommerce -msgid "Enable this email notification" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:437 -#: classes/emails/class-wc-email-customer-invoice.php:144 -#@ woocommerce -msgid "Email subject" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:439 -#: classes/abstracts/abstract-wc-email.php:446 -#: classes/emails/class-wc-email-customer-completed-order.php:143 -#: classes/emails/class-wc-email-customer-completed-order.php:150 -#: classes/emails/class-wc-email-customer-completed-order.php:157 -#: classes/emails/class-wc-email-customer-completed-order.php:164 -#: classes/emails/class-wc-email-customer-invoice.php:146 -#: classes/emails/class-wc-email-customer-invoice.php:153 -#: classes/emails/class-wc-email-customer-invoice.php:160 -#: classes/emails/class-wc-email-customer-invoice.php:167 -#, php-format -#@ woocommerce -msgid "Defaults to %s" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:444 -#: classes/emails/class-wc-email-customer-invoice.php:151 -#@ woocommerce -msgid "Email heading" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:451 -#: classes/emails/class-wc-email-customer-completed-order.php:169 -#: classes/emails/class-wc-email-customer-invoice.php:172 -#: classes/emails/class-wc-email-new-order.php:142 -#@ woocommerce -msgid "Email type" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:453 -#: classes/emails/class-wc-email-customer-completed-order.php:171 -#: classes/emails/class-wc-email-customer-invoice.php:174 -#: classes/emails/class-wc-email-new-order.php:144 -#@ woocommerce -msgid "Choose which format of email to send." -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:457 -#: classes/emails/class-wc-email-customer-completed-order.php:175 -#: classes/emails/class-wc-email-customer-invoice.php:178 -#: classes/emails/class-wc-email-new-order.php:148 -#@ woocommerce -msgid "Plain text" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:458 -#: classes/emails/class-wc-email-customer-completed-order.php:176 -#: classes/emails/class-wc-email-customer-invoice.php:179 -#: classes/emails/class-wc-email-new-order.php:149 -#@ woocommerce -msgid "HTML" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:459 -#: classes/emails/class-wc-email-customer-completed-order.php:177 -#: classes/emails/class-wc-email-customer-invoice.php:180 -#: classes/emails/class-wc-email-new-order.php:150 -#@ woocommerce -msgid "Multipart" -msgstr "Багато-частинність" - -#: classes/abstracts/abstract-wc-email.php:495 -#: classes/abstracts/abstract-wc-email.php:516 -#@ woocommerce -msgid "Could not write to template file." -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:543 -#@ woocommerce -msgid "Template file copied to theme." -msgstr "Файш шаблону скопійовано в тему." - -#: classes/abstracts/abstract-wc-email.php:552 -#@ woocommerce -msgid "Template file deleted from theme." -msgstr "Файл шаблону видалено з теми." - -#: classes/abstracts/abstract-wc-email.php:572 -#@ woocommerce -msgid "HTML template" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:573 -#@ woocommerce -msgid "Plain text template" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:592 -#@ woocommerce -msgid "Delete template file" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:595 -#, php-format -#@ woocommerce -msgid "This template has been overridden by your theme and can be found in: %s." -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:610 -#@ woocommerce -msgid "Copy file to theme" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:613 -#, php-format -#@ woocommerce -msgid "To override and edit this email template copy %s to your theme folder: %s." -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:624 -#@ woocommerce -msgid "File was not found." -msgstr "Файл не знайдено." - -#: classes/abstracts/abstract-wc-email.php:649 -#@ woocommerce -msgid "View template" -msgstr "Проглянути шаблон" - -#: classes/abstracts/abstract-wc-email.php:650 -#@ woocommerce -msgid "Hide template" -msgstr "" - -#: classes/abstracts/abstract-wc-email.php:661 -#@ woocommerce -msgid "Are you sure you want to delete this template file?" -msgstr "Ви впевнені, що хочете видалити цей файл шаблону?" - -#: classes/abstracts/abstract-wc-product.php:33 -#@ woocommerce -msgid "The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class directly." -msgstr "" - -#: classes/abstracts/abstract-wc-product.php:551 -#, php-format -#@ woocommerce -msgid "Only %s left in stock" -msgstr "Всього %s залишилось" - -#: classes/abstracts/abstract-wc-product.php:554 -#, php-format -#@ woocommerce -msgid "%s in stock" -msgstr "%s у наявності" - -#: classes/abstracts/abstract-wc-product.php:561 -#@ woocommerce -msgid "(backorders allowed)" -msgstr "(відмова від замовлення дозволена)" - -#: classes/abstracts/abstract-wc-product.php:567 -#: classes/abstracts/abstract-wc-product.php:580 -#: templates/cart/cart.php:76 -#@ woocommerce -msgid "Available on backorder" -msgstr "" - -#: classes/abstracts/abstract-wc-product.php:851 -#: classes/abstracts/abstract-wc-product.php:857 -#: classes/class-wc-cart.php:1803 -#: classes/class-wc-order.php:891 -#: classes/class-wc-product-variable.php:272 -#: classes/class-wc-product-variable.php:281 -#: classes/class-wc-product-variation.php:247 -#@ woocommerce -msgid "Free!" -msgstr "" - -#: classes/abstracts/abstract-wc-product.php:875 -#@ woocommerce -msgctxt "min_price" -msgid "From:" -msgstr "від:" - -#: classes/abstracts/abstract-wc-product.php:964 -#: templates/single-product-reviews.php:28 -#, php-format -#@ woocommerce -msgid "Rated %s out of 5" -msgstr "" - -#: classes/class-wc-cache-helper.php:92 -#, php-format -#@ woocommerce -msgid "In order for database caching to work with WooCommerce you must add _wc_session_ to the \"Ignored Query Strings\" option in W3 Total Cache settings here." -msgstr "" - -#: classes/class-wc-cart.php:460 -#, php-format -#@ woocommerce -msgid "Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in stock). Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Нам шкода, але у нас немає достатньої кількості \"%s\" у наявності для виконання вашого замовлення (%s в наявності). Будь ласка відредагуйте кількість у Вашому кошику і спробуйте ще раз. Пробачте за незручність." - -#: classes/class-wc-cart.php:479 -#: classes/class-wc-cart.php:488 -#, php-format -#@ woocommerce -msgid "Sorry, we do not have enough \"%s\" in stock to fulfil your order (%s in stock). Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Нам шкода, але у нас немає достатньої кількості \"%s\" у наявності для виконання вашого замовлення (%s в наявності). Будь ласка відредагуйте кількість у Вашому кошику і спробуйте ще раз. Пробачте за незручність." - -#: classes/class-wc-cart.php:523 -#, php-format -#@ woocommerce -msgid "Sorry, we do not have enough \"%s\" in stock to fulfil your order right now. Please try again in %d minutes or edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Нам шкода, але у нас немає достатньої кількості \"%s\" у наявності для виконання вашого замовлення. Будь ласка спробуйте через %d хвилин або відредагуйте кількість у Вашому кошику і спробуйте ще раз. Пробачте за незручність." - -#: classes/class-wc-cart.php:533 -#, php-format -#@ woocommerce -msgid "Sorry, \"%s\" is not in stock. Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "Нам шкода, але товару \"%s\" немає у наявності. Будь ласка відредагуйте кошик і спробуйте ще раз. Вибачте за незручність." - -#: classes/class-wc-cart.php:845 -#, php-format -#@ woocommerce -msgid "Sorry, "%s" cannot be purchased." -msgstr "" - -#: classes/class-wc-cart.php:852 -#, php-format -#@ woocommerce -msgid "You cannot add "%s" to the cart because the product is out of stock." -msgstr "Ви не можете додати "%s" у кошик, тому що такого продукту немає у наявності." - -#: classes/class-wc-cart.php:857 -#, php-format -#@ woocommerce -msgid "You cannot add that amount of "%s" to the cart because there is not enough stock (%s remaining)." -msgstr "Ви не можете додати таку кількість "%s" у кошик бо такої кількості немає у наявності (%s залишилось)." - -#: classes/class-wc-cart.php:869 -#: classes/class-wc-cart.php:883 -#: classes/class-wc-cart.php:891 -#: templates/cart/mini-cart.php:68 -#: woocommerce-functions.php:497 -#: woocommerce.php:1210 -#@ woocommerce -msgid "View Cart →" -msgstr "Переглянути Кошик →" - -#: classes/class-wc-cart.php:869 -#@ woocommerce -msgid "You already have this item in your cart." -msgstr "Ви вже додали цей товар у кошик." - -#: classes/class-wc-cart.php:883 -#: classes/class-wc-cart.php:891 -#, php-format -#@ woocommerce -msgid "%s You cannot add that amount to the cart — we have %s in stock and you already have %s in your cart." -msgstr "%s Ви не можете додати таку кількість товару у кошик — у нас залишилось %s в наявності і Ви вже маєте %s у кошику." - -#: classes/class-wc-cart.php:1815 -#@ woocommerce -msgid "via" -msgstr "через" - -#: classes/class-wc-checkout.php:64 -#@ woocommerce -msgid "Account username" -msgstr "Ім'я облікового запису" - -#: classes/class-wc-checkout.php:65 -#@ woocommerce -msgctxt "placeholder" -msgid "Username" -msgstr "Ім'я користувача" - -#: classes/class-wc-checkout.php:72 -#@ woocommerce -msgid "Account password" -msgstr "Пароль облікового запису" - -#: classes/class-wc-checkout.php:73 -#@ woocommerce -msgctxt "placeholder" -msgid "Password" -msgstr "" - -#: classes/class-wc-checkout.php:79 -#@ woocommerce -msgid "Confirm password" -msgstr "" - -#: classes/class-wc-checkout.php:80 -#@ woocommerce -msgctxt "placeholder" -msgid "Confirm password" -msgstr "" - -#: classes/class-wc-checkout.php:90 -#@ woocommerce -msgctxt "placeholder" -msgid "Notes about your order, e.g. special notes for delivery." -msgstr "Нотатки про ваше замовлення, спеціальні примітки про доставку тощо." - -#: classes/class-wc-checkout.php:152 -#, php-format -#@ woocommerce -msgid "Order – %s" -msgstr "" - -#: classes/class-wc-checkout.php:152 -#, php-format -#@ woocommerce -msgctxt "Order date parsed by strftime" -msgid "%b %d, %Y @ %I:%M %p" -msgstr "" - -#: classes/class-wc-checkout.php:278 -#@ woocommerce -msgid "Backordered" -msgstr "" - -#: classes/class-wc-checkout.php:388 -#, php-format -#@ woocommerce -msgid "Sorry, your session has expired. Return to homepage →" -msgstr "" - -#: classes/class-wc-checkout.php:445 -#: woocommerce-functions.php:1698 -#@ woocommerce -msgid "is a required field." -msgstr "" - -#: classes/class-wc-checkout.php:458 -#, php-format -#@ woocommerce -msgid "(%s) is not a valid postcode/ZIP." -msgstr "(%s) не доступний індекс." - -#: classes/class-wc-checkout.php:479 -#@ woocommerce -msgid "is not valid. Please enter one of the following:" -msgstr "" - -#: classes/class-wc-checkout.php:487 -#@ woocommerce -msgid "is not a valid number." -msgstr "" - -#: classes/class-wc-checkout.php:494 -#@ woocommerce -msgid "is not a valid email address." -msgstr "не дійсна адреса електронної пошти." - -#: classes/class-wc-checkout.php:550 -#@ woocommerce -msgid "Please enter an account username." -msgstr "" - -#: classes/class-wc-checkout.php:554 -#@ woocommerce -msgid "Invalid email/username." -msgstr "" - -#: classes/class-wc-checkout.php:557 -#@ woocommerce -msgid "An account is already registered with that username. Please choose another." -msgstr "Обліковий запис з цим ім'ям вже зареєстрований. Буль ласка, оберіть інше." - -#: classes/class-wc-checkout.php:567 -#@ woocommerce -msgid "Please enter an account password." -msgstr "" - -#: classes/class-wc-checkout.php:570 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:83 -#: woocommerce-functions.php:760 -#: woocommerce-functions.php:1628 -#@ woocommerce -msgid "Passwords do not match." -msgstr "" - -#: classes/class-wc-checkout.php:574 -#@ woocommerce -msgid "An account is already registered with your email address. Please login." -msgstr "Обліковий запис з вашою електронною адресою вже зареєстровано. Будь ласка увійдіть." - -#: classes/class-wc-checkout.php:580 -#@ woocommerce -msgid "You must accept our Terms & Conditions." -msgstr "" - -#: classes/class-wc-checkout.php:589 -#@ woocommerce -msgid "Invalid shipping method." -msgstr "" - -#: classes/class-wc-checkout.php:602 -#@ woocommerce -msgid "Invalid payment method." -msgstr "" - -#: classes/class-wc-checkout.php:642 -#: woocommerce-functions.php:732 -#: woocommerce-functions.php:734 -#: woocommerce-functions.php:737 -#: woocommerce-functions.php:749 -#: woocommerce-functions.php:751 -#: woocommerce-functions.php:754 -#: woocommerce-functions.php:788 -#@ woocommerce -msgid "ERROR" -msgstr "ПОМИЛКА" - -#: classes/class-wc-checkout.php:642 -#: woocommerce-functions.php:788 -#@ woocommerce -msgid "Couldn’t register you… please contact us if you continue to have problems." -msgstr "" - -#: classes/class-wc-countries.php:37 -#@ woocommerce -msgid "Afghanistan" -msgstr "Афганістан" - -#: classes/class-wc-countries.php:38 -#@ woocommerce -msgid "Åland Islands" -msgstr "" - -#: classes/class-wc-countries.php:39 -#@ woocommerce -msgid "Albania" -msgstr "Албанія" - -#: classes/class-wc-countries.php:40 -#@ woocommerce -msgid "Algeria" -msgstr "Алжир" - -#: classes/class-wc-countries.php:41 -#@ woocommerce -msgid "Andorra" -msgstr "Андорра" - -#: classes/class-wc-countries.php:42 -#@ woocommerce -msgid "Angola" -msgstr "Ангола" - -#: classes/class-wc-countries.php:43 -#@ woocommerce -msgid "Anguilla" -msgstr "Ангілья" - -#: classes/class-wc-countries.php:44 -#@ woocommerce -msgid "Antarctica" -msgstr "Антарктида" - -#: classes/class-wc-countries.php:45 -#@ woocommerce -msgid "Antigua and Barbuda" -msgstr "Антигуа і Барбуда" - -#: classes/class-wc-countries.php:46 -#@ woocommerce -msgid "Argentina" -msgstr "Аргентина" - -#: classes/class-wc-countries.php:47 -#@ woocommerce -msgid "Armenia" -msgstr "Вірменія" - -#: classes/class-wc-countries.php:48 -#@ woocommerce -msgid "Aruba" -msgstr "Аруба" - -#: classes/class-wc-countries.php:49 -#@ woocommerce -msgid "Australia" -msgstr "Австралія" - -#: classes/class-wc-countries.php:50 -#@ woocommerce -msgid "Austria" -msgstr "Австрія" - -#: classes/class-wc-countries.php:51 -#@ woocommerce -msgid "Azerbaijan" -msgstr "" - -#: classes/class-wc-countries.php:52 -#@ woocommerce -msgid "Bahamas" -msgstr "" - -#: classes/class-wc-countries.php:53 -#@ woocommerce -msgid "Bahrain" -msgstr "" - -#: classes/class-wc-countries.php:54 -#@ woocommerce -msgid "Bangladesh" -msgstr "" - -#: classes/class-wc-countries.php:55 -#@ woocommerce -msgid "Barbados" -msgstr "" - -#: classes/class-wc-countries.php:56 -#@ woocommerce -msgid "Belarus" -msgstr "" - -#: classes/class-wc-countries.php:57 -#@ woocommerce -msgid "Belgium" -msgstr "" - -#: classes/class-wc-countries.php:58 -#@ woocommerce -msgid "Belau" -msgstr "" - -#: classes/class-wc-countries.php:59 -#@ woocommerce -msgid "Belize" -msgstr "" - -#: classes/class-wc-countries.php:60 -#@ woocommerce -msgid "Benin" -msgstr "" - -#: classes/class-wc-countries.php:61 -#@ woocommerce -msgid "Bermuda" -msgstr "" - -#: classes/class-wc-countries.php:62 -#@ woocommerce -msgid "Bhutan" -msgstr "" - -#: classes/class-wc-countries.php:63 -#@ woocommerce -msgid "Bolivia" -msgstr "" - -#: classes/class-wc-countries.php:64 -#@ woocommerce -msgid "Bonaire, Saint Eustatius and Saba" -msgstr "" - -#: classes/class-wc-countries.php:65 -#@ woocommerce -msgid "Bosnia and Herzegovina" -msgstr "" - -#: classes/class-wc-countries.php:66 -#@ woocommerce -msgid "Botswana" -msgstr "" - -#: classes/class-wc-countries.php:67 -#@ woocommerce -msgid "Bouvet Island" -msgstr "" - -#: classes/class-wc-countries.php:68 -#@ woocommerce -msgid "Brazil" -msgstr "" - -#: classes/class-wc-countries.php:69 -#@ woocommerce -msgid "British Indian Ocean Territory" -msgstr "" - -#: classes/class-wc-countries.php:70 -#@ woocommerce -msgid "British Virgin Islands" -msgstr "" - -#: classes/class-wc-countries.php:71 -#@ woocommerce -msgid "Brunei" -msgstr "" - -#: classes/class-wc-countries.php:72 -#@ woocommerce -msgid "Bulgaria" -msgstr "" - -#: classes/class-wc-countries.php:73 -#@ woocommerce -msgid "Burkina Faso" -msgstr "" - -#: classes/class-wc-countries.php:74 -#@ woocommerce -msgid "Burundi" -msgstr "" - -#: classes/class-wc-countries.php:75 -#@ woocommerce -msgid "Cambodia" -msgstr "" - -#: classes/class-wc-countries.php:76 -#@ woocommerce -msgid "Cameroon" -msgstr "" - -#: classes/class-wc-countries.php:77 -#@ woocommerce -msgid "Canada" -msgstr "" - -#: classes/class-wc-countries.php:78 -#@ woocommerce -msgid "Cape Verde" -msgstr "" - -#: classes/class-wc-countries.php:79 -#@ woocommerce -msgid "Cayman Islands" -msgstr "" - -#: classes/class-wc-countries.php:80 -#@ woocommerce -msgid "Central African Republic" -msgstr "" - -#: classes/class-wc-countries.php:81 -#@ woocommerce -msgid "Chad" -msgstr "" - -#: classes/class-wc-countries.php:82 -#@ woocommerce -msgid "Chile" -msgstr "" - -#: classes/class-wc-countries.php:83 -#@ woocommerce -msgid "China" -msgstr "" - -#: classes/class-wc-countries.php:84 -#@ woocommerce -msgid "Christmas Island" -msgstr "" - -#: classes/class-wc-countries.php:85 -#@ woocommerce -msgid "Cocos (Keeling) Islands" -msgstr "" - -#: classes/class-wc-countries.php:86 -#@ woocommerce -msgid "Colombia" -msgstr "" - -#: classes/class-wc-countries.php:87 -#@ woocommerce -msgid "Comoros" -msgstr "" - -#: classes/class-wc-countries.php:88 -#@ woocommerce -msgid "Congo (Brazzaville)" -msgstr "" - -#: classes/class-wc-countries.php:89 -#@ woocommerce -msgid "Congo (Kinshasa)" -msgstr "" - -#: classes/class-wc-countries.php:90 -#@ woocommerce -msgid "Cook Islands" -msgstr "" - -#: classes/class-wc-countries.php:91 -#@ woocommerce -msgid "Costa Rica" -msgstr "" - -#: classes/class-wc-countries.php:92 -#@ woocommerce -msgid "Croatia" -msgstr "" - -#: classes/class-wc-countries.php:93 -#@ woocommerce -msgid "Cuba" -msgstr "" - -#: classes/class-wc-countries.php:94 -#@ woocommerce -msgid "CuraÇao" -msgstr "" - -#: classes/class-wc-countries.php:95 -#@ woocommerce -msgid "Cyprus" -msgstr "" - -#: classes/class-wc-countries.php:96 -#@ woocommerce -msgid "Czech Republic" -msgstr "" - -#: classes/class-wc-countries.php:97 -#@ woocommerce -msgid "Denmark" -msgstr "" - -#: classes/class-wc-countries.php:98 -#@ woocommerce -msgid "Djibouti" -msgstr "" - -#: classes/class-wc-countries.php:99 -#@ woocommerce -msgid "Dominica" -msgstr "" - -#: classes/class-wc-countries.php:100 -#@ woocommerce -msgid "Dominican Republic" -msgstr "" - -#: classes/class-wc-countries.php:101 -#@ woocommerce -msgid "Ecuador" -msgstr "" - -#: classes/class-wc-countries.php:102 -#@ woocommerce -msgid "Egypt" -msgstr "" - -#: classes/class-wc-countries.php:103 -#@ woocommerce -msgid "El Salvador" -msgstr "" - -#: classes/class-wc-countries.php:104 -#@ woocommerce -msgid "Equatorial Guinea" -msgstr "" - -#: classes/class-wc-countries.php:105 -#@ woocommerce -msgid "Eritrea" -msgstr "" - -#: classes/class-wc-countries.php:106 -#@ woocommerce -msgid "Estonia" -msgstr "" - -#: classes/class-wc-countries.php:107 -#@ woocommerce -msgid "Ethiopia" -msgstr "" - -#: classes/class-wc-countries.php:108 -#@ woocommerce -msgid "Falkland Islands" -msgstr "" - -#: classes/class-wc-countries.php:109 -#@ woocommerce -msgid "Faroe Islands" -msgstr "" - -#: classes/class-wc-countries.php:110 -#@ woocommerce -msgid "Fiji" -msgstr "" - -#: classes/class-wc-countries.php:111 -#@ woocommerce -msgid "Finland" -msgstr "" - -#: classes/class-wc-countries.php:112 -#@ woocommerce -msgid "France" -msgstr "" - -#: classes/class-wc-countries.php:113 -#@ woocommerce -msgid "French Guiana" -msgstr "" - -#: classes/class-wc-countries.php:114 -#@ woocommerce -msgid "French Polynesia" -msgstr "" - -#: classes/class-wc-countries.php:115 -#@ woocommerce -msgid "French Southern Territories" -msgstr "" - -#: classes/class-wc-countries.php:116 -#@ woocommerce -msgid "Gabon" -msgstr "" - -#: classes/class-wc-countries.php:117 -#@ woocommerce -msgid "Gambia" -msgstr "" - -#: classes/class-wc-countries.php:118 -#: i18n/states/US.php:23 -#@ woocommerce -msgid "Georgia" -msgstr "" - -#: classes/class-wc-countries.php:119 -#@ woocommerce -msgid "Germany" -msgstr "" - -#: classes/class-wc-countries.php:120 -#@ woocommerce -msgid "Ghana" -msgstr "" - -#: classes/class-wc-countries.php:121 -#@ woocommerce -msgid "Gibraltar" -msgstr "" - -#: classes/class-wc-countries.php:122 -#@ woocommerce -msgid "Greece" -msgstr "" - -#: classes/class-wc-countries.php:123 -#@ woocommerce -msgid "Greenland" -msgstr "" - -#: classes/class-wc-countries.php:124 -#@ woocommerce -msgid "Grenada" -msgstr "" - -#: classes/class-wc-countries.php:125 -#@ woocommerce -msgid "Guadeloupe" -msgstr "" - -#: classes/class-wc-countries.php:126 -#@ woocommerce -msgid "Guatemala" -msgstr "" - -#: classes/class-wc-countries.php:127 -#@ woocommerce -msgid "Guernsey" -msgstr "" - -#: classes/class-wc-countries.php:128 -#@ woocommerce -msgid "Guinea" -msgstr "" - -#: classes/class-wc-countries.php:129 -#@ woocommerce -msgid "Guinea-Bissau" -msgstr "" - -#: classes/class-wc-countries.php:130 -#@ woocommerce -msgid "Guyana" -msgstr "" - -#: classes/class-wc-countries.php:131 -#@ woocommerce -msgid "Haiti" -msgstr "" - -#: classes/class-wc-countries.php:132 -#@ woocommerce -msgid "Heard Island and McDonald Islands" -msgstr "" - -#: classes/class-wc-countries.php:133 -#@ woocommerce -msgid "Honduras" -msgstr "" - -#: classes/class-wc-countries.php:134 -#@ woocommerce -msgid "Hong Kong" -msgstr "" - -#: classes/class-wc-countries.php:135 -#@ woocommerce -msgid "Hungary" -msgstr "" - -#: classes/class-wc-countries.php:136 -#@ woocommerce -msgid "Iceland" -msgstr "" - -#: classes/class-wc-countries.php:137 -#@ woocommerce -msgid "India" -msgstr "" - -#: classes/class-wc-countries.php:138 -#@ woocommerce -msgid "Indonesia" -msgstr "" - -#: classes/class-wc-countries.php:139 -#@ woocommerce -msgid "Iran" -msgstr "" - -#: classes/class-wc-countries.php:140 -#@ woocommerce -msgid "Iraq" -msgstr "" - -#: classes/class-wc-countries.php:141 -#@ woocommerce -msgid "Republic of Ireland" -msgstr "" - -#: classes/class-wc-countries.php:142 -#@ woocommerce -msgid "Isle of Man" -msgstr "" - -#: classes/class-wc-countries.php:143 -#@ woocommerce -msgid "Israel" -msgstr "" - -#: classes/class-wc-countries.php:144 -#@ woocommerce -msgid "Italy" -msgstr "" - -#: classes/class-wc-countries.php:145 -#@ woocommerce -msgid "Ivory Coast" -msgstr "" - -#: classes/class-wc-countries.php:146 -#@ woocommerce -msgid "Jamaica" -msgstr "" - -#: classes/class-wc-countries.php:147 -#@ woocommerce -msgid "Japan" -msgstr "" - -#: classes/class-wc-countries.php:148 -#@ woocommerce -msgid "Jersey" -msgstr "" - -#: classes/class-wc-countries.php:149 -#@ woocommerce -msgid "Jordan" -msgstr "" - -#: classes/class-wc-countries.php:150 -#@ woocommerce -msgid "Kazakhstan" -msgstr "" - -#: classes/class-wc-countries.php:151 -#@ woocommerce -msgid "Kenya" -msgstr "" - -#: classes/class-wc-countries.php:152 -#@ woocommerce -msgid "Kiribati" -msgstr "" - -#: classes/class-wc-countries.php:153 -#@ woocommerce -msgid "Kuwait" -msgstr "" - -#: classes/class-wc-countries.php:154 -#@ woocommerce -msgid "Kyrgyzstan" -msgstr "" - -#: classes/class-wc-countries.php:155 -#@ woocommerce -msgid "Laos" -msgstr "" - -#: classes/class-wc-countries.php:156 -#@ woocommerce -msgid "Latvia" -msgstr "" - -#: classes/class-wc-countries.php:157 -#@ woocommerce -msgid "Lebanon" -msgstr "" - -#: classes/class-wc-countries.php:158 -#@ woocommerce -msgid "Lesotho" -msgstr "" - -#: classes/class-wc-countries.php:159 -#@ woocommerce -msgid "Liberia" -msgstr "" - -#: classes/class-wc-countries.php:160 -#@ woocommerce -msgid "Libya" -msgstr "" - -#: classes/class-wc-countries.php:161 -#@ woocommerce -msgid "Liechtenstein" -msgstr "" - -#: classes/class-wc-countries.php:162 -#@ woocommerce -msgid "Lithuania" -msgstr "" - -#: classes/class-wc-countries.php:163 -#@ woocommerce -msgid "Luxembourg" -msgstr "" - -#: classes/class-wc-countries.php:164 -#@ woocommerce -msgid "Macao S.A.R., China" -msgstr "" - -#: classes/class-wc-countries.php:165 -#@ woocommerce -msgid "Macedonia" -msgstr "" - -#: classes/class-wc-countries.php:166 -#@ woocommerce -msgid "Madagascar" -msgstr "" - -#: classes/class-wc-countries.php:167 -#@ woocommerce -msgid "Malawi" -msgstr "" - -#: classes/class-wc-countries.php:168 -#@ woocommerce -msgid "Malaysia" -msgstr "" - -#: classes/class-wc-countries.php:169 -#@ woocommerce -msgid "Maldives" -msgstr "" - -#: classes/class-wc-countries.php:170 -#@ woocommerce -msgid "Mali" -msgstr "" - -#: classes/class-wc-countries.php:171 -#@ woocommerce -msgid "Malta" -msgstr "" - -#: classes/class-wc-countries.php:172 -#@ woocommerce -msgid "Marshall Islands" -msgstr "" - -#: classes/class-wc-countries.php:173 -#@ woocommerce -msgid "Martinique" -msgstr "" - -#: classes/class-wc-countries.php:174 -#@ woocommerce -msgid "Mauritania" -msgstr "" - -#: classes/class-wc-countries.php:175 -#@ woocommerce -msgid "Mauritius" -msgstr "" - -#: classes/class-wc-countries.php:176 -#@ woocommerce -msgid "Mayotte" -msgstr "" - -#: classes/class-wc-countries.php:177 -#@ woocommerce -msgid "Mexico" -msgstr "" - -#: classes/class-wc-countries.php:178 -#@ woocommerce -msgid "Micronesia" -msgstr "" - -#: classes/class-wc-countries.php:179 -#@ woocommerce -msgid "Moldova" -msgstr "" - -#: classes/class-wc-countries.php:180 -#@ woocommerce -msgid "Monaco" -msgstr "" - -#: classes/class-wc-countries.php:181 -#@ woocommerce -msgid "Mongolia" -msgstr "" - -#: classes/class-wc-countries.php:182 -#@ woocommerce -msgid "Montenegro" -msgstr "" - -#: classes/class-wc-countries.php:183 -#@ woocommerce -msgid "Montserrat" -msgstr "Монтсеррат" - -#: classes/class-wc-countries.php:184 -#@ woocommerce -msgid "Morocco" -msgstr "Марокко" - -#: classes/class-wc-countries.php:185 -#@ woocommerce -msgid "Mozambique" -msgstr "Мозамбік" - -#: classes/class-wc-countries.php:186 -#@ woocommerce -msgid "Myanmar" -msgstr "М'янма" - -#: classes/class-wc-countries.php:187 -#@ woocommerce -msgid "Namibia" -msgstr "Намібія" - -#: classes/class-wc-countries.php:188 -#@ woocommerce -msgid "Nauru" -msgstr "Науру" - -#: classes/class-wc-countries.php:189 -#@ woocommerce -msgid "Nepal" -msgstr "Непал" - -#: classes/class-wc-countries.php:190 -#@ woocommerce -msgid "Netherlands" -msgstr "Нідерланди" - -#: classes/class-wc-countries.php:191 -#@ woocommerce -msgid "Netherlands Antilles" -msgstr "Нідерландські Антильські острови" - -#: classes/class-wc-countries.php:192 -#@ woocommerce -msgid "New Caledonia" -msgstr "Нью-Каледонія" - -#: classes/class-wc-countries.php:193 -#@ woocommerce -msgid "New Zealand" -msgstr "Нова Зеландія" - -#: classes/class-wc-countries.php:194 -#@ woocommerce -msgid "Nicaragua" -msgstr "Нікарагуа" - -#: classes/class-wc-countries.php:195 -#@ woocommerce -msgid "Niger" -msgstr "" - -#: classes/class-wc-countries.php:196 -#@ woocommerce -msgid "Nigeria" -msgstr "" - -#: classes/class-wc-countries.php:197 -#@ woocommerce -msgid "Niue" -msgstr "" - -#: classes/class-wc-countries.php:198 -#@ woocommerce -msgid "Norfolk Island" -msgstr "" - -#: classes/class-wc-countries.php:199 -#@ woocommerce -msgid "North Korea" -msgstr "" - -#: classes/class-wc-countries.php:200 -#@ woocommerce -msgid "Norway" -msgstr "" - -#: classes/class-wc-countries.php:201 -#@ woocommerce -msgid "Oman" -msgstr "" - -#: classes/class-wc-countries.php:202 -#@ woocommerce -msgid "Pakistan" -msgstr "" - -#: classes/class-wc-countries.php:203 -#@ woocommerce -msgid "Palestinian Territory" -msgstr "" - -#: classes/class-wc-countries.php:204 -#@ woocommerce -msgid "Panama" -msgstr "" - -#: classes/class-wc-countries.php:205 -#@ woocommerce -msgid "Papua New Guinea" -msgstr "" - -#: classes/class-wc-countries.php:206 -#@ woocommerce -msgid "Paraguay" -msgstr "" - -#: classes/class-wc-countries.php:207 -#@ woocommerce -msgid "Peru" -msgstr "" - -#: classes/class-wc-countries.php:208 -#@ woocommerce -msgid "Philippines" -msgstr "" - -#: classes/class-wc-countries.php:209 -#@ woocommerce -msgid "Pitcairn" -msgstr "" - -#: classes/class-wc-countries.php:210 -#@ woocommerce -msgid "Poland" -msgstr "" - -#: classes/class-wc-countries.php:211 -#@ woocommerce -msgid "Portugal" -msgstr "" - -#: classes/class-wc-countries.php:212 -#@ woocommerce -msgid "Qatar" -msgstr "" - -#: classes/class-wc-countries.php:213 -#@ woocommerce -msgid "Reunion" -msgstr "" - -#: classes/class-wc-countries.php:214 -#@ woocommerce -msgid "Romania" -msgstr "" - -#: classes/class-wc-countries.php:215 -#@ woocommerce -msgid "Russia" -msgstr "" - -#: classes/class-wc-countries.php:216 -#@ woocommerce -msgid "Rwanda" -msgstr "" - -#: classes/class-wc-countries.php:217 -#@ woocommerce -msgid "Saint Barthélemy" -msgstr "" - -#: classes/class-wc-countries.php:218 -#@ woocommerce -msgid "Saint Helena" -msgstr "" - -#: classes/class-wc-countries.php:219 -#@ woocommerce -msgid "Saint Kitts and Nevis" -msgstr "" - -#: classes/class-wc-countries.php:220 -#@ woocommerce -msgid "Saint Lucia" -msgstr "" - -#: classes/class-wc-countries.php:221 -#@ woocommerce -msgid "Saint Martin (French part)" -msgstr "" - -#: classes/class-wc-countries.php:222 -#@ woocommerce -msgid "Saint Martin (Dutch part)" -msgstr "" - -#: classes/class-wc-countries.php:223 -#@ woocommerce -msgid "Saint Pierre and Miquelon" -msgstr "" - -#: classes/class-wc-countries.php:224 -#@ woocommerce -msgid "Saint Vincent and the Grenadines" -msgstr "" - -#: classes/class-wc-countries.php:225 -#@ woocommerce -msgid "San Marino" -msgstr "" - -#: classes/class-wc-countries.php:226 -#@ woocommerce -msgid "São Tomé and Príncipe" -msgstr "" - -#: classes/class-wc-countries.php:227 -#@ woocommerce -msgid "Saudi Arabia" -msgstr "" - -#: classes/class-wc-countries.php:228 -#@ woocommerce -msgid "Senegal" -msgstr "" - -#: classes/class-wc-countries.php:229 -#@ woocommerce -msgid "Serbia" -msgstr "" - -#: classes/class-wc-countries.php:230 -#@ woocommerce -msgid "Seychelles" -msgstr "" - -#: classes/class-wc-countries.php:231 -#@ woocommerce -msgid "Sierra Leone" -msgstr "" - -#: classes/class-wc-countries.php:232 -#@ woocommerce -msgid "Singapore" -msgstr "" - -#: classes/class-wc-countries.php:233 -#@ woocommerce -msgid "Slovakia" -msgstr "" - -#: classes/class-wc-countries.php:234 -#@ woocommerce -msgid "Slovenia" -msgstr "" - -#: classes/class-wc-countries.php:235 -#@ woocommerce -msgid "Solomon Islands" -msgstr "" - -#: classes/class-wc-countries.php:236 -#@ woocommerce -msgid "Somalia" -msgstr "" - -#: classes/class-wc-countries.php:237 -#@ woocommerce -msgid "South Africa" -msgstr "" - -#: classes/class-wc-countries.php:238 -#@ woocommerce -msgid "South Georgia/Sandwich Islands" -msgstr "" - -#: classes/class-wc-countries.php:239 -#@ woocommerce -msgid "South Korea" -msgstr "" - -#: classes/class-wc-countries.php:240 -#@ woocommerce -msgid "South Sudan" -msgstr "" - -#: classes/class-wc-countries.php:241 -#@ woocommerce -msgid "Spain" -msgstr "" - -#: classes/class-wc-countries.php:242 -#@ woocommerce -msgid "Sri Lanka" -msgstr "" - -#: classes/class-wc-countries.php:243 -#@ woocommerce -msgid "Sudan" -msgstr "" - -#: classes/class-wc-countries.php:244 -#@ woocommerce -msgid "Suriname" -msgstr "" - -#: classes/class-wc-countries.php:245 -#@ woocommerce -msgid "Svalbard and Jan Mayen" -msgstr "" - -#: classes/class-wc-countries.php:246 -#@ woocommerce -msgid "Swaziland" -msgstr "" - -#: classes/class-wc-countries.php:247 -#@ woocommerce -msgid "Sweden" -msgstr "" - -#: classes/class-wc-countries.php:248 -#@ woocommerce -msgid "Switzerland" -msgstr "" - -#: classes/class-wc-countries.php:249 -#@ woocommerce -msgid "Syria" -msgstr "" - -#: classes/class-wc-countries.php:250 -#@ woocommerce -msgid "Taiwan" -msgstr "" - -#: classes/class-wc-countries.php:251 -#@ woocommerce -msgid "Tajikistan" -msgstr "" - -#: classes/class-wc-countries.php:252 -#@ woocommerce -msgid "Tanzania" -msgstr "" - -#: classes/class-wc-countries.php:253 -#@ woocommerce -msgid "Thailand" -msgstr "" - -#: classes/class-wc-countries.php:254 -#@ woocommerce -msgid "Timor-Leste" -msgstr "" - -#: classes/class-wc-countries.php:255 -#@ woocommerce -msgid "Togo" -msgstr "" - -#: classes/class-wc-countries.php:256 -#@ woocommerce -msgid "Tokelau" -msgstr "" - -#: classes/class-wc-countries.php:257 -#@ woocommerce -msgid "Tonga" -msgstr "" - -#: classes/class-wc-countries.php:258 -#@ woocommerce -msgid "Trinidad and Tobago" -msgstr "" - -#: classes/class-wc-countries.php:259 -#@ woocommerce -msgid "Tunisia" -msgstr "Туніс" - -#: classes/class-wc-countries.php:260 -#@ woocommerce -msgid "Turkey" -msgstr "Туреччина" - -#: classes/class-wc-countries.php:261 -#@ woocommerce -msgid "Turkmenistan" -msgstr "Туркменістан" - -#: classes/class-wc-countries.php:262 -#@ woocommerce -msgid "Turks and Caicos Islands" -msgstr "Острови Теркс і Кайкос" - -#: classes/class-wc-countries.php:263 -#@ woocommerce -msgid "Tuvalu" -msgstr "Тувалу" - -#: classes/class-wc-countries.php:264 -#@ woocommerce -msgid "Uganda" -msgstr "" - -#: classes/class-wc-countries.php:265 -#@ woocommerce -msgid "Ukraine" -msgstr "Україна" - -#: classes/class-wc-countries.php:266 -#@ woocommerce -msgid "United Arab Emirates" -msgstr "Об'єднані Арабські Емірати" - -#: classes/class-wc-countries.php:267 -#@ woocommerce -msgid "United Kingdom" -msgstr "Великобританія" - -#: classes/class-wc-countries.php:268 -#@ woocommerce -msgid "United States" -msgstr "Сполучені Штати" - -#: classes/class-wc-countries.php:269 -#@ woocommerce -msgid "Uruguay" -msgstr "Уругвай" - -#: classes/class-wc-countries.php:270 -#@ woocommerce -msgid "Uzbekistan" -msgstr "Узбекістан" - -#: classes/class-wc-countries.php:271 -#@ woocommerce -msgid "Vanuatu" -msgstr "" - -#: classes/class-wc-countries.php:272 -#@ woocommerce -msgid "Vatican" -msgstr "Ватикан" - -#: classes/class-wc-countries.php:273 -#@ woocommerce -msgid "Venezuela" -msgstr "Венесуела" - -#: classes/class-wc-countries.php:274 -#@ woocommerce -msgid "Vietnam" -msgstr "В'єтнам" - -#: classes/class-wc-countries.php:275 -#@ woocommerce -msgid "Wallis and Futuna" -msgstr "" - -#: classes/class-wc-countries.php:276 -#@ woocommerce -msgid "Western Sahara" -msgstr "" - -#: classes/class-wc-countries.php:277 -#@ woocommerce -msgid "Western Samoa" -msgstr "" - -#: classes/class-wc-countries.php:278 -#@ woocommerce -msgid "Yemen" -msgstr "" - -#: classes/class-wc-countries.php:279 -#@ woocommerce -msgid "Zambia" -msgstr "Замбія" - -#: classes/class-wc-countries.php:280 -#@ woocommerce -msgid "Zimbabwe" -msgstr "Зімбабве" - -#: classes/class-wc-countries.php:418 -#@ woocommerce -msgid "to the" -msgstr "" - -#: classes/class-wc-countries.php:419 -#@ woocommerce -msgid "to" -msgstr "" - -#: classes/class-wc-countries.php:432 -#@ woocommerce -msgid "the" -msgstr "" - -#: classes/class-wc-countries.php:444 -#@ woocommerce -msgid "VAT" -msgstr "ПДВ" - -#: classes/class-wc-countries.php:457 -#@ woocommerce -msgid "(incl. VAT)" -msgstr "(з ПДВ)" - -#: classes/class-wc-countries.php:457 -#@ woocommerce -msgid "(incl. tax)" -msgstr "(з податками)" - -#: classes/class-wc-countries.php:470 -#@ woocommerce -msgid "(ex. VAT)" -msgstr "(без ПДВ)" - -#: classes/class-wc-countries.php:694 -#@ woocommerce -msgid "Company Name" -msgstr "Назва компанії" - -#: classes/class-wc-countries.php:699 -#@ woocommerce -msgctxt "placeholder" -msgid "Street address" -msgstr "Вулиця" - -#: classes/class-wc-countries.php:707 -#@ woocommerce -msgctxt "placeholder" -msgid "Apartment, suite, unit etc. (optional)" -msgstr "Номер квартири, апартаментів, номер в готелі, тощо. (за бажанням)" - -#: classes/class-wc-countries.php:715 -#: classes/class-wc-countries.php:716 -#@ woocommerce -msgid "Town / City" -msgstr "Місто / Населений пункт" - -#: classes/class-wc-countries.php:725 -#: classes/class-wc-countries.php:726 -#@ woocommerce -msgid "State / County" -msgstr "Країна" - -#: classes/class-wc-countries.php:734 -#: classes/class-wc-countries.php:735 -#: templates/cart/shipping-calculator.php:80 -#@ woocommerce -msgid "Postcode / Zip" -msgstr "Індекс" - -#: classes/class-wc-countries.php:774 -#: classes/class-wc-countries.php:784 -#: classes/class-wc-countries.php:804 -#: classes/class-wc-countries.php:859 -#: classes/class-wc-countries.php:883 -#: classes/class-wc-countries.php:933 -#: classes/class-wc-countries.php:957 -#: classes/class-wc-countries.php:998 -#@ woocommerce -msgid "Province" -msgstr "" - -#: classes/class-wc-countries.php:790 -#@ woocommerce -msgid "Canton" -msgstr "" - -#: classes/class-wc-countries.php:799 -#: classes/class-wc-countries.php:939 -#@ woocommerce -msgid "Municipality" -msgstr "Муніципалітет" - -#: classes/class-wc-countries.php:846 -#@ woocommerce -msgid "Town / District" -msgstr "Місто / район" - -#: classes/class-wc-countries.php:849 -#@ woocommerce -msgid "Region" -msgstr "" - -#: classes/class-wc-countries.php:962 -#@ woocommerce -msgid "Zip" -msgstr "Zip" - -#: classes/class-wc-countries.php:965 -#@ woocommerce -msgid "State" -msgstr "Штат" - -#: classes/class-wc-countries.php:973 -#@ woocommerce -msgid "County" -msgstr "" - -#: classes/class-wc-countries.php:1074 -#@ woocommerce -msgid "Email Address" -msgstr "Адреса e-mail" - -#: classes/class-wc-coupon.php:421 -#@ woocommerce -msgid "Coupon code applied successfully." -msgstr "Код купона успішно застосовано." - -#: classes/class-wc-coupon.php:442 -#@ woocommerce -msgid "Coupon is not valid." -msgstr "" - -#: classes/class-wc-coupon.php:445 -#: classes/class-wc-coupon.php:495 -#@ woocommerce -msgid "Coupon does not exist!" -msgstr "" - -#: classes/class-wc-coupon.php:448 -#, php-format -#@ woocommerce -msgid "Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from your order." -msgstr "" - -#: classes/class-wc-coupon.php:451 -#, php-format -#@ woocommerce -msgid "Sorry, it seems the coupon \"%s\" is not yours - it has now been removed from your order." -msgstr "" - -#: classes/class-wc-coupon.php:454 -#@ woocommerce -msgid "Coupon code already applied!" -msgstr "Код купона вже було використано!" - -#: classes/class-wc-coupon.php:457 -#, php-format -#@ woocommerce -msgid "Sorry, coupon \"%s\" has already been applied and cannot be used in conjunction with other coupons." -msgstr "" - -#: classes/class-wc-coupon.php:460 -#@ woocommerce -msgid "Coupon usage limit has been reached." -msgstr "" - -#: classes/class-wc-coupon.php:463 -#@ woocommerce -msgid "This coupon has expired." -msgstr "" - -#: classes/class-wc-coupon.php:466 -#, php-format -#@ woocommerce -msgid "The minimum spend for this coupon is %s." -msgstr "" - -#: classes/class-wc-coupon.php:469 -#@ woocommerce -msgid "Sorry, this coupon is not applicable to your cart contents." -msgstr "На жаль, цей купон не можна застосувати до вмісту Вашого кошика." - -#: classes/class-wc-coupon.php:472 -#@ woocommerce -msgid "Sorry, this coupon is not valid for sale items." -msgstr "На жаль, цей купон не діє для акційних товарів." - -#: classes/class-wc-coupon.php:498 -#@ woocommerce -msgid "Please enter a coupon code." -msgstr "Будь ласка, введіть код купона." - -#: classes/class-wc-customer.php:628 -#: classes/class-wc-customer.php:640 -#, php-format -#@ woocommerce -msgid "File %d" -msgstr "" - -#: classes/class-wc-emails.php:246 -#@ woocommerce -msgid "Note" -msgstr "Замітка" - -#: classes/class-wc-emails.php:281 -#@ woocommerce -msgid "Product low in stock" -msgstr "" - -#: classes/class-wc-emails.php:288 -#: classes/class-wc-emails.php:320 -#: classes/class-wc-emails.php:364 -#, php-format -#@ woocommerce -msgid "Product #%s - %s" -msgstr "" - -#: classes/class-wc-emails.php:290 -#@ woocommerce -msgid "is low in stock." -msgstr "" - -#: classes/class-wc-emails.php:313 -#@ woocommerce -msgid "Product out of stock" -msgstr "" - -#: classes/class-wc-emails.php:322 -#@ woocommerce -msgid "is out of stock." -msgstr "" - -#: classes/class-wc-emails.php:357 -#@ woocommerce -msgid "Product Backorder" -msgstr "" - -#: classes/class-wc-emails.php:366 -#, php-format -#@ woocommerce -msgid "%s units of %s have been backordered in order #%s." -msgstr "%s шт. з %s були відкликані з замовлення #%s." - -#: classes/class-wc-order.php:283 -#@ woocommerce -msgctxt "hash before order number" -msgid "#" -msgstr "" - -#: classes/class-wc-order.php:886 -#, php-format -#@ woocommerce -msgid " %svia %s" -msgstr "" - -#: classes/class-wc-order.php:949 -#@ woocommerce -msgid "Cart Subtotal:" -msgstr "Попередній підсумок кошика:" - -#: classes/class-wc-order.php:961 -#@ woocommerce -msgid "Shipping:" -msgstr "Доставка:" - -#: classes/class-wc-order.php:1016 -#: templates/cart/totals.php:105 -#: templates/checkout/review-order.php:104 -#, php-format -#@ woocommerce -msgid "(Includes %s)" -msgstr "" - -#: classes/class-wc-order.php:1219 -#, php-format -#@ woocommerce -msgid "Order status changed from %s to %s." -msgstr "Статус замовлення змінено з %s на %s." - -#: classes/class-wc-order.php:1451 -#: woocommerce-ajax.php:1091 -#: woocommerce-ajax.php:1092 -#, php-format -#@ woocommerce -msgid "Item #%s stock reduced from %s to %s." -msgstr "" - -#: classes/class-wc-order.php:1463 -#@ woocommerce -msgid "Order item stock reduced successfully." -msgstr "" - -#: classes/class-wc-product-external.php:56 -#@ woocommerce -msgid "Buy product" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:24 -#@ woocommerce -msgid "Completed order" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:25 -#@ woocommerce -msgid "Order complete emails are sent to the customer when the order is marked complete and usual indicates that the order has been shipped." -msgstr "Листи з поміткою Замовлення виконане надсилаються покупцеві коли замовлення помічається як виконане і зазвичай означає, що замовлення будо надіслане." - -#: classes/emails/class-wc-email-customer-completed-order.php:27 -#@ woocommerce -msgid "Your order is complete" -msgstr "Ваше замовлення виконане" - -#: classes/emails/class-wc-email-customer-completed-order.php:28 -#@ woocommerce -msgid "Your {blogname} order from {order_date} is complete" -msgstr "Ваше, {blogname}, замовлення від {order_date} виконане" - -#: classes/emails/class-wc-email-customer-completed-order.php:37 -#@ woocommerce -msgid "Your order is complete - download your files" -msgstr "Ваше замовлення виконане - скачайте Ваші файли" - -#: classes/emails/class-wc-email-customer-completed-order.php:38 -#@ woocommerce -msgid "Your {blogname} order from {order_date} is complete - download your files" -msgstr "Ваше, {blogname}, замовлення від {order_date} виконане - скачайте Ваші файли" - -#: classes/emails/class-wc-email-customer-completed-order.php:141 -#: classes/emails/class-wc-email-new-order.php:128 -#@ woocommerce -msgid "Subject" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:148 -#: classes/emails/class-wc-email-new-order.php:135 -#@ woocommerce -msgid "Email Heading" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:155 -#@ woocommerce -msgid "Subject (downloadable)" -msgstr "" - -#: classes/emails/class-wc-email-customer-completed-order.php:162 -#@ woocommerce -msgid "Email Heading (downloadable)" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:27 -#@ woocommerce -msgid "Customer invoice" -msgstr "Рахунок клієнта" - -#: classes/emails/class-wc-email-customer-invoice.php:28 -#@ woocommerce -msgid "Customer invoice emails can be sent to the user containing order info and payment links." -msgstr "Рахунки можуть бути відправлені клієнту електронною поштою, що містить інформацію про замовлення та посилання для оплати." - -#: classes/emails/class-wc-email-customer-invoice.php:33 -#@ woocommerce -msgid "Invoice for order {order_number} from {order_date}" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:34 -#@ woocommerce -msgid "Invoice for order {order_number}" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:36 -#@ woocommerce -msgid "Your {blogname} order from {order_date}" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:37 -#@ woocommerce -msgid "Order {order_number} details" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:158 -#@ woocommerce -msgid "Email subject (paid)" -msgstr "" - -#: classes/emails/class-wc-email-customer-invoice.php:165 -#@ woocommerce -msgid "Email heading (paid)" -msgstr "" - -#: classes/emails/class-wc-email-customer-new-account.php:31 -#@ woocommerce -msgid "New account" -msgstr "Новий облікова запис" - -#: classes/emails/class-wc-email-customer-new-account.php:32 -#@ woocommerce -msgid "Customer new account emails are sent when a customer signs up via the checkout or My Account page." -msgstr "Email \\\"Новий обліковий запис\\\" надсилається клієнту коли він зареєструвався на сайті через Оформелння замовлення або меню Мій обліковий запис." - -#: classes/emails/class-wc-email-customer-new-account.php:37 -#@ woocommerce -msgid "Your account on {blogname}" -msgstr "" - -#: classes/emails/class-wc-email-customer-new-account.php:38 -#@ woocommerce -msgid "Welcome to {blogname}" -msgstr "" - -#: classes/emails/class-wc-email-customer-note.php:30 -#@ woocommerce -msgid "Customer note emails are sent when you add a note to an order." -msgstr "Email \\\"Нотатка\\\" надсилаєтсья клієнту як тільки Ви додали примітку до замовлення." - -#: classes/emails/class-wc-email-customer-note.php:35 -#@ woocommerce -msgid "Note added to your {blogname} order from {order_date}" -msgstr "" - -#: classes/emails/class-wc-email-customer-note.php:36 -#@ woocommerce -msgid "A note has been added to your order" -msgstr "Примітка додана для вашого замовлення" - -#: classes/emails/class-wc-email-customer-processing-order.php:24 -#@ woocommerce -msgid "Processing order" -msgstr "Замовелння виконується" - -#: classes/emails/class-wc-email-customer-processing-order.php:25 -#@ woocommerce -msgid "This is an order notification sent to the customer after payment containing order details." -msgstr "" - -#: classes/emails/class-wc-email-customer-processing-order.php:27 -#@ woocommerce -msgid "Thank you for your order" -msgstr "Дякуємо за замовлення" - -#: classes/emails/class-wc-email-customer-processing-order.php:28 -#@ woocommerce -msgid "Your {blogname} order receipt from {order_date}" -msgstr "Ваше замовлення у магазині {blogname} від {order_date} отримано" - -#: classes/emails/class-wc-email-customer-reset-password.php:36 -#@ woocommerce -msgid "Reset password" -msgstr "" - -#: classes/emails/class-wc-email-customer-reset-password.php:37 -#@ woocommerce -msgid "Customer reset password emails are sent when a customer resets their password." -msgstr "Email \\\"Скидання паролю\\\" відправляються, коли клієнт скидає свій пароль." - -#: classes/emails/class-wc-email-customer-reset-password.php:42 -#@ woocommerce -msgid "Password Reset for {blogname}" -msgstr "" - -#: classes/emails/class-wc-email-customer-reset-password.php:43 -#@ woocommerce -msgid "Password Reset Instructions" -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:24 -#@ woocommerce -msgid "New order" -msgstr "Нове замовлення" - -#: classes/emails/class-wc-email-new-order.php:25 -#@ woocommerce -msgid "New order emails are sent when an order is received/paid by a customer." -msgstr "Листи про нові замовлення надсилаються, коли замовлення отримано/оплачено клієнтом." - -#: classes/emails/class-wc-email-new-order.php:27 -#@ woocommerce -msgid "New customer order" -msgstr "Нове замовлення клієнта" - -#: classes/emails/class-wc-email-new-order.php:28 -#@ woocommerce -msgid "[{blogname}] New customer order ({order_number}) - {order_date}" -msgstr "[{blogname}] Замовлення нового клієнту ({order_number}) - {order_date}" - -#: classes/emails/class-wc-email-new-order.php:121 -#@ woocommerce -msgid "Recipient(s)" -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:123 -#, php-format -#@ woocommerce -msgid "Enter recipients (comma separated) for this email. Defaults to %s." -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:130 -#, php-format -#@ woocommerce -msgid "This controls the email subject line. Leave blank to use the default subject: %s." -msgstr "" - -#: classes/emails/class-wc-email-new-order.php:137 -#, php-format -#@ woocommerce -msgid "This controls the main heading contained within the email notification. Leave blank to use the default heading: %s." -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:28 -#@ woocommerce -msgid "Bacs" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:65 -#@ woocommerce -msgid "Enable Bank Transfer" -msgstr "Дозволити оплату через банк" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:69 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:63 -#: classes/gateways/cod/class-wc-gateway-cod.php:87 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:143 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:126 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:104 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:84 -#@ woocommerce -msgid "Title" -msgstr "Назва" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:71 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:65 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:145 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:128 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:83 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:58 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:106 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:86 -#@ woocommerce -msgid "This controls the title which the user sees during checkout." -msgstr "Це налаштування назви, яку покупець бачить під час оформлення." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:72 -#@ woocommerce -msgid "Direct Bank Transfer" -msgstr "Оплата через банк" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:76 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:70 -#@ woocommerce -msgid "Customer Message" -msgstr "Повідомлення клієнта" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:78 -#@ woocommerce -msgid "Give the customer instructions for paying via BACS, and let them know that their order won't be shipping until the money is received." -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:79 -#@ woocommerce -msgid "Make your payment directly into our bank account. Please use your Order ID as the payment reference. Your order wont be shipped until the funds have cleared in our account." -msgstr "Будь-ласка, оплатіть рахунок у будь-якому відділені банку. У графі призначення платежу вкажіть Номер замовлення. Ваше замовлення буде відправлене як тільки кошти з'являться на нашому рахунку." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:82 -#@ woocommerce -msgid "Account Details" -msgstr "Деталі облікового запису" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:84 -#@ woocommerce -msgid "Optionally enter your bank details below for customers to pay into." -msgstr "За бажанням введіть інформацію про свій банківський рахунок на який буде здійснюватись оплата." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:88 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:163 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:203 -#@ woocommerce -msgid "Account Name" -msgstr "Отримувач платежу" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:94 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:164 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:204 -#@ woocommerce -msgid "Account Number" -msgstr "Рахунок" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:100 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:165 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:205 -#@ woocommerce -msgid "Sort Code" -msgstr "Код сортування" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:106 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:166 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:206 -#@ woocommerce -msgid "Bank Name" -msgstr "Назва банку" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:112 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:167 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:207 -#@ woocommerce -msgid "IBAN" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:117 -#@ woocommerce -msgid "BIC (formerly Swift)" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:136 -#@ woocommerce -msgid "BACS Payment" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:137 -#@ woocommerce -msgid "Allows payments by BACS (Bank Account Clearing System), more commonly known as direct bank/wire transfer." -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:158 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:200 -#@ woocommerce -msgid "Our Details" -msgstr "Наші реквізити" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:168 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:208 -#@ woocommerce -msgid "BIC" -msgstr "" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:234 -#@ woocommerce -msgid "Awaiting BACS payment" -msgstr "" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:28 -#@ woocommerce -msgid "Cheque" -msgstr "" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:59 -#@ woocommerce -msgid "Enable Cheque Payment" -msgstr "" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:66 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:90 -#@ woocommerce -msgid "Cheque Payment" -msgstr "" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:72 -#@ woocommerce -msgid "Let the customer know the payee and where they should be sending the cheque to and that their order won't be shipping until you receive it." -msgstr "" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:73 -#@ woocommerce -msgid "Please send your cheque to Store Name, Store Street, Store Town, Store State / County, Store Postcode." -msgstr "" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:91 -#@ woocommerce -msgid "Allows cheque payments. Why would you take cheques in this day and age? Well you probably wouldn't but it does allow you to make test purchases for testing order emails and the 'success' pages etc." -msgstr "" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:147 -#@ woocommerce -msgid "Awaiting cheque payment" -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:27 -#: classes/gateways/cod/class-wc-gateway-cod.php:54 -#: classes/gateways/cod/class-wc-gateway-cod.php:90 -#@ woocommerce -msgid "Cash on Delivery" -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:55 -#@ woocommerce -msgid "Have your customers pay with cash (or by other means) upon delivery." -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:80 -#@ woocommerce -msgid "Enable COD" -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:81 -#@ woocommerce -msgid "Enable Cash on Delivery" -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:89 -#@ woocommerce -msgid "Payment method title that the customer will see on your website." -msgstr "Назва способу оплати, яку клієнт буде бачити на Вашому сайті." - -#: classes/gateways/cod/class-wc-gateway-cod.php:96 -#@ woocommerce -msgid "Payment method description that the customer will see on your website." -msgstr "Опис методу оплати, який відвідувачі будуть бачити на сайті." - -#: classes/gateways/cod/class-wc-gateway-cod.php:97 -#: classes/gateways/cod/class-wc-gateway-cod.php:103 -#@ woocommerce -msgid "Pay with cash upon delivery." -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:100 -#@ woocommerce -msgid "Instructions" -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:102 -#@ woocommerce -msgid "Instructions that will be added to the thank you page." -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:106 -#@ woocommerce -msgid "Enable for shipping methods" -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:111 -#@ woocommerce -msgid "If COD is only available for certain methods, set it up here. Leave blank to enable for all methods." -msgstr "" - -#: classes/gateways/cod/class-wc-gateway-cod.php:176 -#@ woocommerce -msgid "Payment to be made upon delivery." -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:31 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:168 -#@ woocommerce -msgid "Mijireh Checkout" -msgstr "Mijireh Оформлення" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:108 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:293 -#@ woocommerce -msgid "Mijireh error:" -msgstr "Mijireh помилка:" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:132 -#@ woocommerce -msgid "Enable Mijireh Checkout" -msgstr "Дозволити Mijireh Оформлення" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:136 -#@ woocommerce -msgid "Access Key" -msgstr "Ключ доступу" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:138 -#@ woocommerce -msgid "The Mijireh access key for your store." -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:146 -#@ woocommerce -msgid "Credit Card" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:152 -#@ woocommerce -msgid "Pay securely with your credit card." -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:153 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:135 -#@ woocommerce -msgid "This controls the description which the user sees during checkout." -msgstr "Це налаштування опису, який покупець бачить під час оформлення." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:172 -#@ woocommerce -msgid "Get started with Mijireh Checkout" -msgstr "Почати роботу з Mijireh Оформленням" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:173 -#@ woocommerce -msgid "provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site. Mijireh supports a wide variety of payment gateways: Stripe, Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and more." -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:175 -#@ woocommerce -msgid "Join for free" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:175 -#@ woocommerce -msgid "Learn more about WooCommerce and Mijireh" -msgstr "" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:179 -#@ woocommerce -msgid "provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:34 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:129 -#@ woocommerce -msgid "PayPal" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:91 -#@ woocommerce -msgid "PayPal standard" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:92 -#@ woocommerce -msgid "PayPal standard works by sending the user to PayPal to enter their payment information." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:104 -#@ woocommerce -msgid "Gateway Disabled" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:104 -#@ woocommerce -msgid "PayPal does not support your store currency." -msgstr "PayPal не підтримує валюту вашого магазину." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:122 -#@ woocommerce -msgid "Enable PayPal standard" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:136 -#@ woocommerce -msgid "Pay via PayPal; you can pay with your credit card if you don't have a PayPal account" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:139 -#@ woocommerce -msgid "PayPal Email" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:141 -#@ woocommerce -msgid "Please enter your PayPal email address; this is needed in order to take payment." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:147 -#@ woocommerce -msgid "Receiver Email" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:149 -#@ woocommerce -msgid "If this differs from the email entered above, input your main receiver email for your PayPal account. This is used to validate IPN requests." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:155 -#@ woocommerce -msgid "Invoice Prefix" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:157 -#@ woocommerce -msgid "Please enter a prefix for your invoice numbers. If you use your PayPal account for multiple stores ensure this prefix is unique as PayPal will not allow orders with the same invoice number." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:162 -#@ woocommerce -msgid "Submission method" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:164 -#@ woocommerce -msgid "Use form submission method." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:165 -#@ woocommerce -msgid "Enable this to post order data to PayPal via a form instead of using a redirect/querystring." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:169 -#@ woocommerce -msgid "Page Style" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:171 -#@ woocommerce -msgid "Optionally enter the name of the page style you wish to use. These are defined within your PayPal account." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:174 -#@ woocommerce -msgid "Optional" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:177 -#@ woocommerce -msgid "Shipping options" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:182 -#@ woocommerce -msgid "Shipping details" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:184 -#@ woocommerce -msgid "Send shipping details to PayPal instead of billing." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:186 -#@ woocommerce -msgid "PayPal allows us to send 1 address. If you are using PayPal for shipping labels you may prefer to send the shipping address rather than billing." -msgstr "PayPal дозволяє нам відправити на 1 адресу. Якщо ви використовуєте PayPal, Ви можете надати перевагу, адресі доставки, а не адресі виставлення рахунків." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:190 -#@ woocommerce -msgid "Address override" -msgstr "Адресу перевизначено" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:192 -#@ woocommerce -msgid "Enable \"address_override\" to prevent address information from being changed." -msgstr "Включити \"address_override \", щоб заборонити зміну адреси." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:193 -#@ woocommerce -msgid "PayPal verifies addresses therefore this setting can cause errors (we recommend keeping it disabled)." -msgstr "PayPal перевіряє адреси, отже, цей параметр може призвести до помилок (ми рекомендуємо тримати його відключити)." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:197 -#@ woocommerce -msgid "Gateway Testing" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:202 -#@ woocommerce -msgid "PayPal sandbox" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:204 -#@ woocommerce -msgid "Enable PayPal sandbox" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:206 -#, php-format -#@ woocommerce -msgid "PayPal sandbox can be used to test payments. Sign up for a developer account here." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:209 -#@ woocommerce -msgid "Debug Log" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:211 -#@ woocommerce -msgid "Enable logging" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:213 -#, php-format -#@ woocommerce -msgid "Log PayPal events, such as IPN requests, inside woocommerce/logs/paypal-%s.txt" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:331 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:385 -#@ woocommerce -msgid "Shipping via" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:426 -#@ woocommerce -msgid "Thank you for your order. We are now redirecting you to PayPal to make payment." -msgstr "Дякуємо за замовлення. Ми перенаправляємо вас на PayPal для проведення оплати." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:449 -#@ woocommerce -msgid "Pay via PayPal" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:449 -#@ woocommerce -msgid "Cancel order & restore cart" -msgstr "Відмінити замовлення & відновити кошик" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:503 -#@ woocommerce -msgid "Thank you for your order, please click the button below to pay with PayPal." -msgstr "Дякуємо за замовлення, будь ласка, натисніть на кнопку внизу, щоб оплатити за допомогою PayPal." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:647 -#, php-format -#@ woocommerce -msgid "Validation error: PayPal amounts do not match (gross %s)." -msgstr "Помилка перевірки: PayPal суми не збігаються (брутто %s)." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:658 -#, php-format -#@ woocommerce -msgid "Validation error: PayPal IPN response from a different email address (%s)." -msgstr "Помилка перевірки: PayPal IPN запит з іншої email адреси (%s). " - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:676 -#@ woocommerce -msgid "IPN payment completed" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:691 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:699 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:717 -#, php-format -#@ woocommerce -msgid "Payment %s via IPN." -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:704 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:722 -#@ woocommerce -msgid "Order refunded/reversed" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:705 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:723 -#, php-format -#@ woocommerce -msgid "Order %s has been marked as refunded - PayPal reason code: %s" -msgstr "Замовлення %s було помічене як повернене - PayPal код причини: %s" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:708 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:726 -#, php-format -#@ woocommerce -msgid "Payment for order %s refunded/reversed" -msgstr "" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:26 -#@ woocommerce -msgid "Google Analytics" -msgstr "" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:27 -#@ woocommerce -msgid "Google Analytics is a free service offered by Google that generates detailed statistics about the visitors to a website." -msgstr "" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:63 -#@ woocommerce -msgid "Google Analytics ID" -msgstr "" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:64 -#@ woocommerce -msgid "Log into your google analytics account to find your ID. e.g. UA-XXXXX-X" -msgstr "" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:69 -#@ woocommerce -msgid "Set Domain Name" -msgstr "" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:70 -#, php-format -#@ woocommerce -msgid "(Optional) Sets the _setDomainName variable. See here for more information." -msgstr "(За бажанням) Додайте _setDomainName змінне. Тут додаткова інформація." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:75 -#@ woocommerce -msgid "Tracking code" -msgstr "Код відстежування" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:76 -#@ woocommerce -msgid "Add tracking code to your site's footer. You don't need to enable this if using a 3rd party analytics plugin." -msgstr "Додайте код відстеження в футер вашого сайту. Вам не потрібно включити цю опцію якщо Ви використовуєте плагіни сторонніх виробників." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:82 -#@ woocommerce -msgid "Add eCommerce tracking code to the thankyou page" -msgstr "Додати код відстеження на сторінку подяки" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:88 -#@ woocommerce -msgid "Add event tracking code for add to cart actions" -msgstr "Дадти код відстеження події на додавання товару у кошик " - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:218 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:275 -#: templates/single-product/meta.php:19 -#@ woocommerce -msgid "SKU:" -msgstr "Артикул:" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:294 -#@ woocommerce -msgid "Add to Cart" -msgstr "Додати в кошик" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:26 -#@ woocommerce -msgid "ShareDaddy" -msgstr "" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:27 -#@ woocommerce -msgid "ShareDaddy is a sharing plugin bundled with JetPack." -msgstr "" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:51 -#@ woocommerce -msgid "Output ShareDaddy button?" -msgstr "" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:52 -#@ woocommerce -msgid "Enable this option to show the ShareDaddy button on the product page." -msgstr "" - -#: classes/integrations/sharethis/class-wc-sharethis.php:29 -#@ woocommerce -msgid "ShareThis" -msgstr "" - -#: classes/integrations/sharethis/class-wc-sharethis.php:30 -#@ woocommerce -msgid "ShareThis offers a sharing widget which will allow customers to share links to products with their friends." -msgstr "" - -#: classes/integrations/sharethis/class-wc-sharethis.php:63 -#@ woocommerce -msgid "ShareThis Publisher ID" -msgstr "" - -#: classes/integrations/sharethis/class-wc-sharethis.php:64 -#, php-format -#@ woocommerce -msgid "Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons on product pages." -msgstr "" - -#: classes/integrations/sharethis/class-wc-sharethis.php:69 -#@ woocommerce -msgid "ShareThis Code" -msgstr "" - -#: classes/integrations/sharethis/class-wc-sharethis.php:70 -#@ woocommerce -msgid "You can tweak the ShareThis code by editing this option." -msgstr "" - -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:22 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:329 -#@ woocommerce -#@ default -msgid "ShareYourCart" -msgstr "" - -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:23 -#@ woocommerce -msgid "Increase your social media exposure by 10 percent! ShareYourCart helps you get more customers by motivating satisfied customers to talk with their friends about your products. For help with ShareYourCart view the documentation." -msgstr "Збільшіть Ваш соціальний вплив на 10 відсотків! ShareYourCart допоможе Вам отримати нових покупців мотивуючи ваших клієнтів говорити з друзями про Ваші товари. Потрібна допомога з ShareYourCart почитайте документацію." - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:328 -#@ default -msgid "Share your cart settings" -msgstr "" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:342 -#@ default -msgid "Button" -msgstr "" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:343 -#@ default -msgid "Customize Button" -msgstr "" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:351 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:352 -#@ default -msgid "Documentation" -msgstr "" - -#: classes/integrations/shareyourcart/views/admin-page.php:33 -#@ woocommerce -msgid "Setup your ShareYourCart account" -msgstr "" - -#: classes/integrations/shareyourcart/views/admin-page.php:35 -#@ woocommerce -msgid "Create an account" -msgstr "" - -#: classes/integrations/shareyourcart/views/admin-page.php:35 -#@ woocommerce -msgid "Can't access your account?" -msgstr "" - -#: classes/integrations/shareyourcart/views/admin-page.php:100 -#@ woocommerce -msgid "Configure" -msgstr "" - -#: classes/integrations/shareyourcart/views/button-settings-page.php:8 -#: classes/integrations/shareyourcart/views/button-settings-page.php:11 -#@ woocommerce -msgid "Button style" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:25 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:85 -#@ woocommerce -msgid "Flat Rate" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:27 -#@ woocommerce -msgid "Flat rates let you define a standard rate per item, or per order." -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:78 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:52 -#@ woocommerce -msgid "Enable this shipping method" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:82 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:81 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:56 -#@ woocommerce -msgid "Method Title" -msgstr "Назва способу" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:89 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:63 -#@ woocommerce -msgid "Availability" -msgstr "Доступність" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:93 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:148 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:104 -#@ woocommerce -msgid "All allowed countries" -msgstr "Всі дозволені країни" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:116 -#@ woocommerce -msgid "Cost per order" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:122 -#@ woocommerce -msgid "Enter a cost (excluding tax) per order, e.g. 5.00. Leave blank to disable." -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:128 -#@ woocommerce -msgid "Additional Rates" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:130 -#@ woocommerce -msgid "Optional extra shipping options with additional costs (one per line): Option Name | Additional Cost | Per Cost Type (order, class, or item) Example: Priority Mail | 6.95 | order." -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:133 -#@ woocommerce -msgid "Option Name | Additional Cost | Per Cost Type (order, class, or item)" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:136 -#@ woocommerce -msgid "Additional Costs" -msgstr "Додаткові затрати" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:138 -#@ woocommerce -msgid "Additional costs can be added below - these will all be added to the per-order cost above." -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:141 -#@ woocommerce -msgid "Costs Added..." -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:145 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:94 -#@ woocommerce -msgid "Per Order - charge shipping for the entire order as a whole" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:146 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:95 -#@ woocommerce -msgid "Per Item - charge shipping for each item individually" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:147 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:96 -#@ woocommerce -msgid "Per Class - charge shipping for each shipping class in an order" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:154 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:120 -#@ woocommerce -msgid "Minimum Handling Fee" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:160 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:126 -#@ woocommerce -msgid "Enter a minimum fee amount. Fee's less than this will be increased. Leave blank to disable." -msgstr "Введіть мінімальну суму. Сума менша, ніж ця буде збільшена. Залиште порожнім, щоб відключити." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:479 -#@ woocommerce -msgid "Costs" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:485 -#: woocommerce.php:891 -#@ woocommerce -msgid "Shipping Class" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:486 -#@ woocommerce -msgid "Cost, excluding tax." -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:487 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:112 -#@ woocommerce -msgid "Handling Fee" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:487 -#@ woocommerce -msgid "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:492 -#@ woocommerce -msgid "+ Add Cost" -msgstr "+ Додати ціну" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:492 -#@ woocommerce -msgid "Delete selected costs" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:498 -#@ woocommerce -msgid "Any class" -msgstr "Будь-який клас" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:518 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:548 -#@ woocommerce -msgid "Select a class…" -msgstr "" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:523 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:524 -#@ woocommerce -msgid "0.00" -msgstr "0.00" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:562 -#@ woocommerce -msgid "Delete the selected rates?" -msgstr "" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:25 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:145 -#@ woocommerce -msgid "Free Shipping" -msgstr "Безкоштовна доставка" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:77 -#@ woocommerce -msgid "Enable Free Shipping" -msgstr "Безкоштовна доставка включена" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:88 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:143 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:99 -#@ woocommerce -msgid "Method availability" -msgstr "Доступність способу" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:106 -#@ woocommerce -msgid "Free Shipping Requires..." -msgstr "Безкоштовна доставка вимагає..." - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:111 -#@ woocommerce -msgid "A valid free shipping coupon" -msgstr "Діючий купон на безкоштовну доставку" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:112 -#@ woocommerce -msgid "A minimum order amount (defined below)" -msgstr "Мінімальна сума замовлення (встановлюється нижче)" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:113 -#@ woocommerce -msgid "A minimum order amount OR a coupon" -msgstr "Мінімальна сума замовлення АБО купон" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:114 -#@ woocommerce -msgid "A minimum order amount AND a coupon" -msgstr "Мінімальна сума замовлення ТА купон" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:118 -#@ woocommerce -msgid "Minimum Order Amount" -msgstr "Мінімальна сума замовлення" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:124 -#@ woocommerce -msgid "Users will need to spend this amount to get free shipping (if enabled above)." -msgstr "Клієнти повинні витратити цю суму, щоб отримати безкоштовну доставку (якщо опція включена вище)." - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:29 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:59 -#@ woocommerce -msgid "International Delivery" -msgstr "" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:30 -#@ woocommerce -msgid "International delivery based on flat rate shipping." -msgstr "" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:68 -#@ woocommerce -msgid "Selected countries" -msgstr "Обрані країни" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:69 -#@ woocommerce -msgid "Excluding selected countries" -msgstr "Крім обраних країн" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:73 -#@ woocommerce -msgid "Countries" -msgstr "Країни" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:90 -#@ woocommerce -msgid "Cost Added..." -msgstr "" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:106 -#@ woocommerce -msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -msgstr "" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:114 -#@ woocommerce -msgid "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. Leave blank to disable." -msgstr "" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:25 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:107 -#@ woocommerce -msgid "Local Delivery" -msgstr "Місцева доставка" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:98 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:78 -#@ woocommerce -msgid "Enable" -msgstr "Включити" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:100 -#@ woocommerce -msgid "Enable local delivery" -msgstr "Включити місцеву доставку" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:111 -#@ woocommerce -msgid "Fee Type" -msgstr "Тип оплати" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:113 -#@ woocommerce -msgid "How to calculate delivery charges" -msgstr "Як розраховувати вартість доставки" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 -#@ woocommerce -msgid "Fixed amount" -msgstr "Фіксована ставка" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:117 -#@ woocommerce -msgid "Percentage of cart total" -msgstr "Відсоток від вартості кошику" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:118 -#@ woocommerce -msgid "Fixed amount per product" -msgstr "Фіксована ставка за одиницю товару" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:123 -#@ woocommerce -msgid "Delivery Fee" -msgstr "Вартість доставки" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:129 -#@ woocommerce -msgid "What fee do you want to charge for local delivery, disregarded if you choose free. Leave blank to disable." -msgstr "Яку плату ви хочете отримувати за місцеву доставку? Не звертайте увагу, якщо доставка безкоштовна. Залиште порожнім, щоб відключити." - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:135 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:91 -#@ woocommerce -msgid "Zip/Post Codes" -msgstr "Поштовий індекс" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:137 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:93 -#@ woocommerce -msgid "What zip/post codes would you like to offer delivery to? Separate codes with a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -msgstr "Визначення zip кодів/поштових індексів яким ви готові запропонувати доставку. Розділяйте коди комами. Приймаються символи, наприклад Р * буде відповідати поштовому індексу PE30." - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:172 -#@ woocommerce -msgid "Local delivery is a simple shipping method for delivering orders locally." -msgstr "Місцева доставка це простий спосіб доставки замовлень локально. Наприклад, в межах одного міста." - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:25 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:87 -#@ woocommerce -msgid "Local Pickup" -msgstr "Самовивоз" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:80 -#@ woocommerce -msgid "Enable local pickup" -msgstr "Включити самовивоз" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:117 -#@ woocommerce -msgid "Apply base tax rate" -msgstr "Застосовувати базову ставку оподаткування" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:119 -#@ woocommerce -msgid "When this shipping method is chosen, apply the base tax rate rather than for the customer's given address." -msgstr "Якщо обрано цей спосіб доставки, застосовується базова ставка податку, а не та, що відповідає адресі клієнта." - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:134 -#@ woocommerce -msgid "Local pickup is a simple method which allows the customer to pick up their order themselves." -msgstr "Самовивоз це простий метод, який дозволяє клієнту забрати своє замовлення самостійно." - -#: classes/shortcodes/class-wc-shortcode-cart.php:53 -#: woocommerce-functions.php:1703 -#@ woocommerce -msgid "Please enter a valid postcode/ZIP." -msgstr "Будь ласка, введіть дійсний поштовий індекс/ZIP" - -#: classes/shortcodes/class-wc-shortcode-cart.php:64 -#: classes/shortcodes/class-wc-shortcode-cart.php:70 -#@ woocommerce -msgid "Shipping costs updated." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-checkout.php:73 -#@ woocommerce -msgid "The order totals have been updated. Please confirm your order by pressing the Place Order button at the bottom of the page." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:78 -#: woocommerce-functions.php:1625 -#@ woocommerce -msgid "Please enter your password." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:93 -#@ woocommerce -msgid "Your password has been reset." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:93 -#@ woocommerce -msgid "Log in" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:114 -#@ woocommerce -msgid "Enter a username or e-mail address." -msgstr "Введіть ім'я користувача або e-mail." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:121 -#@ woocommerce -msgid "There is no user registered with that email address." -msgstr "Користувачів з такою email адресою не зареєстровано." - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:136 -#@ woocommerce -msgid "Invalid username or e-mail." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:150 -#@ default -msgid "Password reset is not allowed for this user" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:178 -#@ default -msgid "Check your e-mail for the confirmation link." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:198 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:203 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:210 -#@ woocommerce -msgid "Invalid key" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:51 -#@ woocommerce -msgid "Please enter a valid order ID" -msgstr "Будь ласка, введіть дійсний Номер замовлення" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:55 -#@ woocommerce -msgid "Please enter a valid order email" -msgstr "Будь ласка, введіть дійсну адресу електронної пошти" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:74 -#@ woocommerce -msgid "Sorry, we could not find that order id in our database." -msgstr "На жаль, нам не вдалося знайти, цей Номер замовлення в нашій базі." - -#: classes/shortcodes/class-wc-shortcode-pay.php:64 -#: classes/shortcodes/class-wc-shortcode-pay.php:118 -#@ woocommerce -msgid "Your order has already been paid for. Please contact us if you need assistance." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-pay.php:69 -#: classes/shortcodes/class-wc-shortcode-pay.php:125 -#: classes/shortcodes/class-wc-shortcode-view-order.php:51 -#: woocommerce-functions.php:911 -#: woocommerce-functions.php:991 -#@ woocommerce -msgid "Invalid order." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-pay.php:94 -#: templates/checkout/thankyou.php:44 -#@ woocommerce -msgid "Date:" -msgstr "Дата:" - -#: classes/shortcodes/class-wc-shortcode-pay.php:103 -#: templates/checkout/thankyou.php:53 -#@ woocommerce -msgid "Payment method:" -msgstr "Спосіб оплати:" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:51 -#@ woocommerce -msgid "My Account →" -msgstr "Мій обліковий запис →" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:58 -#, php-format -#@ woocommerce -msgid "Order %s made on %s" -msgstr "Замовлення %s зроблене %s" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:59 -#, php-format -#@ woocommerce -msgid "Order status: %s" -msgstr "Статус замовлення: %s" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:65 -#: templates/order/tracking.php:31 -#@ woocommerce -msgid "Order Updates" -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:71 -#@ woocommerce -msgid "l jS \\of F Y, h:ia" -msgstr "" - -#: classes/widgets/class-wc-widget-best-sellers.php:31 -#@ woocommerce -msgid "Display a list of your best selling products on your site." -msgstr "Відображення списку найпопулярніших товарів на сайті." - -#: classes/widgets/class-wc-widget-best-sellers.php:33 -#@ woocommerce -msgid "WooCommerce Best Sellers" -msgstr "WooCommerce найпопулярніші товари" - -#: classes/widgets/class-wc-widget-best-sellers.php:71 -#@ woocommerce -msgid "Best Sellers" -msgstr "Найпопулярніші" - -#: classes/widgets/class-wc-widget-best-sellers.php:191 -#: classes/widgets/class-wc-widget-cart.php:109 -#: classes/widgets/class-wc-widget-featured-products.php:169 -#: classes/widgets/class-wc-widget-layered-nav.php:352 -#: classes/widgets/class-wc-widget-onsale.php:178 -#: classes/widgets/class-wc-widget-price-filter.php:180 -#: classes/widgets/class-wc-widget-product-categories.php:185 -#: classes/widgets/class-wc-widget-product-search.php:91 -#: classes/widgets/class-wc-widget-product-tag-cloud.php:101 -#: classes/widgets/class-wc-widget-random-products.php:136 -#: classes/widgets/class-wc-widget-recent-products.php:172 -#: classes/widgets/class-wc-widget-recent-reviews.php:158 -#: classes/widgets/class-wc-widget-recently-viewed.php:168 -#: classes/widgets/class-wc-widget-top-rated-products.php:156 -#@ woocommerce -msgid "Title:" -msgstr "Назва:" - -#: classes/widgets/class-wc-widget-best-sellers.php:194 -#: classes/widgets/class-wc-widget-featured-products.php:172 -#: classes/widgets/class-wc-widget-onsale.php:181 -#: classes/widgets/class-wc-widget-random-products.php:141 -#: classes/widgets/class-wc-widget-recent-products.php:175 -#: classes/widgets/class-wc-widget-recent-reviews.php:161 -#: classes/widgets/class-wc-widget-recently-viewed.php:171 -#: classes/widgets/class-wc-widget-top-rated-products.php:159 -#@ woocommerce -msgid "Number of products to show:" -msgstr "Кількість товарі, що відображаються:" - -#: classes/widgets/class-wc-widget-best-sellers.php:198 -#@ woocommerce -msgid "Hide free products" -msgstr "Приховувати безкоштовні товари" - -#: classes/widgets/class-wc-widget-cart.php:33 -#@ woocommerce -msgid "Display the user's Cart in the sidebar." -msgstr "Відображення Кошика користувача на боковій панелі." - -#: classes/widgets/class-wc-widget-cart.php:35 -#@ woocommerce -msgid "WooCommerce Cart" -msgstr "Кошик WooCommerce" - -#: classes/widgets/class-wc-widget-cart.php:113 -#@ woocommerce -msgid "Hide if cart is empty" -msgstr "Приховувати якщо кошик порожній" - -#: classes/widgets/class-wc-widget-featured-products.php:35 -#@ woocommerce -msgid "Display a list of featured products on your site." -msgstr "Відображати список рекомендованих товарів на сайті." - -#: classes/widgets/class-wc-widget-featured-products.php:37 -#@ woocommerce -msgid "WooCommerce Featured Products" -msgstr "WooCommerce Рекомендовані товари" - -#: classes/widgets/class-wc-widget-featured-products.php:75 -#@ woocommerce -msgid "Featured Products" -msgstr "Рекомендовані товари" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:31 -#@ woocommerce -msgid "Shows active layered nav filters so users can see and deactivate them." -msgstr "Показує активні багаторівневі nav фільтри так, що користувачі можуть бачити і деактивувати їх." - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:33 -#@ woocommerce -msgid "WooCommerce Layered Nav Filters" -msgstr "Фільт багаторівневої навігації WooCommerce" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:62 -#@ woocommerce -msgid "Active filters" -msgstr "Активні фільтри" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:93 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -#@ woocommerce -msgid "Remove filter" -msgstr "Прибрати фільтр" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#@ woocommerce -msgid "Min" -msgstr "Мінімум" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -#@ woocommerce -msgid "Max" -msgstr "Максимум" - -#: classes/widgets/class-wc-widget-layered-nav.php:31 -#@ woocommerce -msgid "Shows a custom attribute in a widget which lets you narrow down the list of products when viewing product categories." -msgstr "Показує користувальницький атрибут у віджеті, який дозволяє звузити список продуктів при перегляді категорій товарів." - -#: classes/widgets/class-wc-widget-layered-nav.php:33 -#@ woocommerce -msgid "WooCommerce Layered Nav" -msgstr "WooCommerce багаторівнева навігація" - -#: classes/widgets/class-wc-widget-layered-nav.php:100 -#, php-format -#@ woocommerce -msgid "Any %s" -msgstr "Будь-який %s " - -#: classes/widgets/class-wc-widget-layered-nav.php:355 -#@ woocommerce -msgid "Attribute:" -msgstr "Атрибут:" - -#: classes/widgets/class-wc-widget-layered-nav.php:366 -#@ woocommerce -msgid "Display Type:" -msgstr "Тип відображення:" - -#: classes/widgets/class-wc-widget-layered-nav.php:368 -#@ woocommerce -msgid "List" -msgstr "Список" - -#: classes/widgets/class-wc-widget-layered-nav.php:369 -#@ woocommerce -msgid "Dropdown" -msgstr "Випадаюче меню" - -#: classes/widgets/class-wc-widget-layered-nav.php:372 -#@ woocommerce -msgid "Query Type:" -msgstr "Тип запиту:" - -#: classes/widgets/class-wc-widget-layered-nav.php:374 -#@ woocommerce -msgid "AND" -msgstr "ТА" - -#: classes/widgets/class-wc-widget-layered-nav.php:375 -#@ woocommerce -msgid "OR" -msgstr "АБО" - -#: classes/widgets/class-wc-widget-onsale.php:31 -#@ woocommerce -msgid "Display a list of your on-sale products on your site." -msgstr "Відображення списку акційних товарів на вашому сайті." - -#: classes/widgets/class-wc-widget-onsale.php:33 -#@ woocommerce -msgid "WooCommerce On-sale" -msgstr "WooCommerce розпродаж" - -#: classes/widgets/class-wc-widget-onsale.php:70 -#@ woocommerce -msgid "On Sale" -msgstr "Розпродаж" - -#: classes/widgets/class-wc-widget-price-filter.php:33 -#@ woocommerce -msgid "Shows a price filter slider in a widget which lets you narrow down the list of shown products when viewing product categories." -msgstr "Показує віджет фільту зі слайдером ціни, який дозволяє звузити список продуктів, що відображатимуться при перегляді категорій товарів." - -#: classes/widgets/class-wc-widget-price-filter.php:35 -#@ woocommerce -msgid "WooCommerce Price Filter" -msgstr "WooCommerce Фільтр по ціні" - -#: classes/widgets/class-wc-widget-price-filter.php:137 -#@ woocommerce -msgid "Min price" -msgstr "Мінімальна ціна" - -#: classes/widgets/class-wc-widget-price-filter.php:138 -#@ woocommerce -msgid "Max price" -msgstr "Максимальна ціна" - -#: classes/widgets/class-wc-widget-price-filter.php:139 -#@ woocommerce -msgid "Filter" -msgstr "Фільтр" - -#: classes/widgets/class-wc-widget-price-filter.php:141 -#@ woocommerce -msgid "Price:" -msgstr "Ціна:" - -#: classes/widgets/class-wc-widget-price-filter.php:163 -#@ woocommerce -msgid "Filter by price" -msgstr "Фільтр по ціні" - -#: classes/widgets/class-wc-widget-product-categories.php:33 -#@ woocommerce -msgid "A list or dropdown of product categories." -msgstr "Список або випадаюче меню категорій товару." - -#: classes/widgets/class-wc-widget-product-categories.php:35 -#@ woocommerce -msgid "WooCommerce Product Categories" -msgstr "Категорії товарів WooCommerce" - -#: classes/widgets/class-wc-widget-product-categories.php:57 -#: woocommerce.php:821 -#: woocommerce.php:823 -#@ woocommerce -msgid "Product Categories" -msgstr "Категорії товарів" - -#: classes/widgets/class-wc-widget-product-categories.php:129 -#@ woocommerce -msgid "No product categories exist." -msgstr "Не існує категорій товарів." - -#: classes/widgets/class-wc-widget-product-categories.php:188 -#@ woocommerce -msgid "Order by:" -msgstr "Сортувати за:" - -#: classes/widgets/class-wc-widget-product-categories.php:190 -#@ woocommerce -msgid "Category Order" -msgstr "Порядок категорії" - -#: classes/widgets/class-wc-widget-product-categories.php:195 -#@ woocommerce -msgid "Show as dropdown" -msgstr "Відображати як випадаюче меню" - -#: classes/widgets/class-wc-widget-product-categories.php:198 -#@ woocommerce -msgid "Show post counts" -msgstr "" - -#: classes/widgets/class-wc-widget-product-categories.php:201 -#@ woocommerce -msgid "Show hierarchy" -msgstr "Відображати ієрархію" - -#: classes/widgets/class-wc-widget-product-categories.php:204 -#@ woocommerce -msgid "Only show children for the current category" -msgstr "Лише відображати дітей для цієї категорії" - -#: classes/widgets/class-wc-widget-product-search.php:31 -#@ woocommerce -msgid "A Search box for products only." -msgstr "Пошукове поле для пошуку лише по товарах." - -#: classes/widgets/class-wc-widget-product-search.php:33 -#@ woocommerce -msgid "WooCommerce Product Search" -msgstr "Пошук по товарах WooCommerce" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:31 -#@ woocommerce -msgid "Your most used product tags in cloud format." -msgstr "Товарні мітки, що найчастіше використовуються у форматі хмаринки тегів." - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:33 -#@ woocommerce -msgid "WooCommerce Product Tags" -msgstr "WooCommerce мітки товару" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:58 -#: woocommerce.php:857 -#: woocommerce.php:859 -#@ woocommerce -msgid "Product Tags" -msgstr "Мітки товару" - -#: classes/widgets/class-wc-widget-random-products.php:24 -#@ woocommerce -msgid "WooCommerce Random Products" -msgstr "Випадкові товари WooCommerce" - -#: classes/widgets/class-wc-widget-random-products.php:27 -#@ woocommerce -msgid "Display a list of random products on your site." -msgstr "" - -#: classes/widgets/class-wc-widget-random-products.php:46 -#@ woocommerce -msgid "Random Products" -msgstr "" - -#: classes/widgets/class-wc-widget-random-products.php:147 -#: classes/widgets/class-wc-widget-recent-products.php:179 -#@ woocommerce -msgid "Show hidden product variations" -msgstr "Відображати приховані варіанти товарів" - -#: classes/widgets/class-wc-widget-recent-products.php:31 -#@ woocommerce -msgid "Display a list of your most recent products on your site." -msgstr "" - -#: classes/widgets/class-wc-widget-recent-products.php:33 -#@ woocommerce -msgid "WooCommerce Recent Products" -msgstr "WooCommerce останні товари" - -#: classes/widgets/class-wc-widget-recent-products.php:70 -#@ woocommerce -msgid "New Products" -msgstr "Нові товари" - -#: classes/widgets/class-wc-widget-recent-reviews.php:31 -#@ woocommerce -msgid "Display a list of your most recent reviews on your site." -msgstr "Показувати список останніх відгуків на вашому сайті." - -#: classes/widgets/class-wc-widget-recent-reviews.php:71 -#@ woocommerce -msgid "Recent Reviews" -msgstr "Останні відгуки" - -#: classes/widgets/class-wc-widget-recent-reviews.php:97 -#, php-format -#@ woocommerce -msgctxt "by comment author" -msgid "by %1$s" -msgstr "від %1$s" - -#: classes/widgets/class-wc-widget-recently-viewed.php:31 -#@ woocommerce -msgid "Display a list of recently viewed products." -msgstr "Відображати список нещодавно переглянутих товарів." - -#: classes/widgets/class-wc-widget-recently-viewed.php:33 -#@ woocommerce -msgid "WooCommerce Recently Viewed Products" -msgstr "WooCommerce нещодавно переглянуті товари." - -#: classes/widgets/class-wc-widget-recently-viewed.php:76 -#@ woocommerce -msgid "Recently viewed" -msgstr "Останні переглянуті" - -#: classes/widgets/class-wc-widget-top-rated-products.php:33 -#@ woocommerce -msgid "Display a list of top rated products on your site." -msgstr "Показувати список товарів з найвищим рейтингом." - -#: classes/widgets/class-wc-widget-top-rated-products.php:35 -#@ woocommerce -msgid "WooCommerce Top Rated Products" -msgstr "WooCommerce товари з найвищим рейтингом." - -#: classes/widgets/class-wc-widget-top-rated-products.php:72 -#@ woocommerce -msgid "Top Rated Products" -msgstr "Товари з найвищим рейтингом" - -#: i18n/states/AU.php:13 -#@ woocommerce -msgid "Australian Capital Territory" -msgstr "Австралійська столична територія" - -#: i18n/states/AU.php:14 -#@ woocommerce -msgid "New South Wales" -msgstr "" - -#: i18n/states/AU.php:15 -#@ woocommerce -msgid "Northern Territory" -msgstr "" - -#: i18n/states/AU.php:16 -#@ woocommerce -msgid "Queensland" -msgstr "" - -#: i18n/states/AU.php:17 -#@ woocommerce -msgid "South Australia" -msgstr "" - -#: i18n/states/AU.php:18 -#@ woocommerce -msgid "Tasmania" -msgstr "" - -#: i18n/states/AU.php:19 -#@ woocommerce -msgid "Victoria" -msgstr "Вікторія" - -#: i18n/states/AU.php:20 -#@ woocommerce -msgid "Western Australia" -msgstr "" - -#: i18n/states/BR.php:13 -#@ woocommerce -msgid "Acre" -msgstr "Акр" - -#: i18n/states/BR.php:14 -#@ woocommerce -msgid "Alagoas" -msgstr "Алагоас" - -#: i18n/states/BR.php:15 -#@ woocommerce -msgid "Amapá" -msgstr "Амапа" - -#: i18n/states/BR.php:16 -#@ woocommerce -msgid "Amazonas" -msgstr "Амазонас" - -#: i18n/states/BR.php:17 -#@ woocommerce -msgid "Bahia" -msgstr "" - -#: i18n/states/BR.php:18 -#@ woocommerce -msgid "Ceará" -msgstr "" - -#: i18n/states/BR.php:19 -#@ woocommerce -msgid "Distrito Federal" -msgstr "" - -#: i18n/states/BR.php:20 -#@ woocommerce -msgid "Espírito Santo" -msgstr "" - -#: i18n/states/BR.php:21 -#@ woocommerce -msgid "Goiás" -msgstr "" - -#: i18n/states/BR.php:22 -#@ woocommerce -msgid "Maranhão" -msgstr "" - -#: i18n/states/BR.php:23 -#@ woocommerce -msgid "Mato Grosso" -msgstr "" - -#: i18n/states/BR.php:24 -#@ woocommerce -msgid "Mato Grosso do Sul" -msgstr "" - -#: i18n/states/BR.php:25 -#@ woocommerce -msgid "Minas Gerais" -msgstr "" - -#: i18n/states/BR.php:26 -#@ woocommerce -msgid "Pará" -msgstr "" - -#: i18n/states/BR.php:27 -#@ woocommerce -msgid "Paraíba" -msgstr "" - -#: i18n/states/BR.php:28 -#@ woocommerce -msgid "Paraná" -msgstr "" - -#: i18n/states/BR.php:29 -#@ woocommerce -msgid "Pernambuco" -msgstr "" - -#: i18n/states/BR.php:30 -#@ woocommerce -msgid "Piauí" -msgstr "" - -#: i18n/states/BR.php:31 -#@ woocommerce -msgid "Rio de Janeiro" -msgstr "" - -#: i18n/states/BR.php:32 -#@ woocommerce -msgid "Rio Grande do Norte" -msgstr "" - -#: i18n/states/BR.php:33 -#@ woocommerce -msgid "Rio Grande do Sul" -msgstr "" - -#: i18n/states/BR.php:34 -#@ woocommerce -msgid "Rondônia" -msgstr "" - -#: i18n/states/BR.php:35 -#@ woocommerce -msgid "Roraima" -msgstr "" - -#: i18n/states/BR.php:36 -#@ woocommerce -msgid "Santa Catarina" -msgstr "" - -#: i18n/states/BR.php:37 -#@ woocommerce -msgid "São Paulo" -msgstr "" - -#: i18n/states/BR.php:38 -#@ woocommerce -msgid "Sergipe" -msgstr "" - -#: i18n/states/BR.php:39 -#@ woocommerce -msgid "Tocantins" -msgstr "" - -#: i18n/states/CA.php:13 -#@ woocommerce -msgid "Alberta" -msgstr "Альберта" - -#: i18n/states/CA.php:14 -#@ woocommerce -msgid "British Columbia" -msgstr "" - -#: i18n/states/CA.php:15 -#@ woocommerce -msgid "Manitoba" -msgstr "" - -#: i18n/states/CA.php:16 -#@ woocommerce -msgid "New Brunswick" -msgstr "Нью-Брансвік" - -#: i18n/states/CA.php:17 -#@ woocommerce -msgid "Newfoundland" -msgstr "Ньюфаундленд" - -#: i18n/states/CA.php:18 -#@ woocommerce -msgid "Northwest Territories" -msgstr "" - -#: i18n/states/CA.php:19 -#@ woocommerce -msgid "Nova Scotia" -msgstr "" - -#: i18n/states/CA.php:20 -#@ woocommerce -msgid "Nunavut" -msgstr "" - -#: i18n/states/CA.php:21 -#@ woocommerce -msgid "Ontario" -msgstr "" - -#: i18n/states/CA.php:22 -#@ woocommerce -msgid "Prince Edward Island" -msgstr "" - -#: i18n/states/CA.php:23 -#@ woocommerce -msgid "Quebec" -msgstr "" - -#: i18n/states/CA.php:24 -#@ woocommerce -msgid "Saskatchewan" -msgstr "" - -#: i18n/states/CA.php:25 -#@ woocommerce -msgid "Yukon Territory" -msgstr "" - -#: i18n/states/CN.php:13 -#@ woocommerce -msgid "Yunnan / 云南" -msgstr "" - -#: i18n/states/CN.php:14 -#@ woocommerce -msgid "Beijing / 北京" -msgstr "" - -#: i18n/states/CN.php:15 -#@ woocommerce -msgid "Tianjin / 天津" -msgstr "" - -#: i18n/states/CN.php:16 -#@ woocommerce -msgid "Hebei / 河北" -msgstr "" - -#: i18n/states/CN.php:17 -#@ woocommerce -msgid "Shanxi / 山西" -msgstr "" - -#: i18n/states/CN.php:18 -#@ woocommerce -msgid "Inner Mongolia / 內蒙古" -msgstr "" - -#: i18n/states/CN.php:19 -#@ woocommerce -msgid "Liaoning / 辽宁" -msgstr "" - -#: i18n/states/CN.php:20 -#@ woocommerce -msgid "Jilin / 吉林" -msgstr "" - -#: i18n/states/CN.php:21 -#@ woocommerce -msgid "Heilongjiang / 黑龙江" -msgstr "" - -#: i18n/states/CN.php:22 -#@ woocommerce -msgid "Shanghai / 上海" -msgstr "" - -#: i18n/states/CN.php:23 -#@ woocommerce -msgid "Jiangsu / 江苏" -msgstr "" - -#: i18n/states/CN.php:24 -#@ woocommerce -msgid "Zhejiang / 浙江" -msgstr "" - -#: i18n/states/CN.php:25 -#@ woocommerce -msgid "Anhui / 安徽" -msgstr "Аньхой / 安徽" - -#: i18n/states/CN.php:26 -#@ woocommerce -msgid "Fujian / 福建" -msgstr "" - -#: i18n/states/CN.php:27 -#@ woocommerce -msgid "Jiangxi / 江西" -msgstr "" - -#: i18n/states/CN.php:28 -#@ woocommerce -msgid "Shandong / 山东" -msgstr "" - -#: i18n/states/CN.php:29 -#@ woocommerce -msgid "Henan / 河南" -msgstr "" - -#: i18n/states/CN.php:30 -#@ woocommerce -msgid "Hubei / 湖北" -msgstr "" - -#: i18n/states/CN.php:31 -#@ woocommerce -msgid "Hunan / 湖南" -msgstr "" - -#: i18n/states/CN.php:32 -#@ woocommerce -msgid "Guangdong / 广东" -msgstr "" - -#: i18n/states/CN.php:33 -#@ woocommerce -msgid "Guangxi Zhuang / 广西壮族" -msgstr "" - -#: i18n/states/CN.php:34 -#@ woocommerce -msgid "Hainan / 海南" -msgstr "" - -#: i18n/states/CN.php:35 -#@ woocommerce -msgid "Chongqing / 重庆" -msgstr "" - -#: i18n/states/CN.php:36 -#@ woocommerce -msgid "Sichuan / 四川" -msgstr "" - -#: i18n/states/CN.php:37 -#@ woocommerce -msgid "Guizhou / 贵州" -msgstr "" - -#: i18n/states/CN.php:38 -#@ woocommerce -msgid "Shaanxi / 陕西" -msgstr "" - -#: i18n/states/CN.php:39 -#@ woocommerce -msgid "Gansu / 甘肃" -msgstr "" - -#: i18n/states/CN.php:40 -#@ woocommerce -msgid "Qinghai / 青海" -msgstr "" - -#: i18n/states/CN.php:41 -#@ woocommerce -msgid "Ningxia Hui / 宁夏" -msgstr "" - -#: i18n/states/CN.php:42 -#@ woocommerce -msgid "Macau / 澳门" -msgstr "" - -#: i18n/states/CN.php:43 -#@ woocommerce -msgid "Tibet / 西藏" -msgstr "" - -#: i18n/states/CN.php:44 -#@ woocommerce -msgid "Xinjiang / 新疆" -msgstr "" - -#: i18n/states/HK.php:13 -#@ woocommerce -msgid "Hong Kong Island" -msgstr "" - -#: i18n/states/HK.php:14 -#@ woocommerce -msgid "Kowloon" -msgstr "" - -#: i18n/states/HK.php:15 -#@ woocommerce -msgid "New Territories" -msgstr "" - -#: i18n/states/HU.php:13 -#@ woocommerce -msgid "Bács-Kiskun" -msgstr "" - -#: i18n/states/HU.php:14 -#@ woocommerce -msgid "Békés" -msgstr "" - -#: i18n/states/HU.php:15 -#@ woocommerce -msgid "Baranya" -msgstr "" - -#: i18n/states/HU.php:16 -#@ woocommerce -msgid "Borsod-Abaúj-Zemplén" -msgstr "" - -#: i18n/states/HU.php:17 -#@ woocommerce -msgid "Budapest" -msgstr "" - -#: i18n/states/HU.php:18 -#@ woocommerce -msgid "Csongrád" -msgstr "" - -#: i18n/states/HU.php:19 -#@ woocommerce -msgid "Fejér" -msgstr "" - -#: i18n/states/HU.php:20 -#@ woocommerce -msgid "Győr-Moson-Sopron" -msgstr "" - -#: i18n/states/HU.php:21 -#@ woocommerce -msgid "Hajdú-Bihar" -msgstr "" - -#: i18n/states/HU.php:22 -#@ woocommerce -msgid "Heves" -msgstr "" - -#: i18n/states/HU.php:23 -#@ woocommerce -msgid "Jász-Nagykun-Szolnok" -msgstr "" - -#: i18n/states/HU.php:24 -#@ woocommerce -msgid "Komárom-Esztergom" -msgstr "" - -#: i18n/states/HU.php:25 -#@ woocommerce -msgid "Nógrád" -msgstr "" - -#: i18n/states/HU.php:26 -#@ woocommerce -msgid "Pest" -msgstr "" - -#: i18n/states/HU.php:27 -#@ woocommerce -msgid "Somogy" -msgstr "" - -#: i18n/states/HU.php:28 -#@ woocommerce -msgid "Szabolcs-Szatmár-Bereg" -msgstr "" - -#: i18n/states/HU.php:29 -#@ woocommerce -msgid "Tolna" -msgstr "" - -#: i18n/states/HU.php:30 -#@ woocommerce -msgid "Vas" -msgstr "" - -#: i18n/states/HU.php:31 -#@ woocommerce -msgid "Veszprém" -msgstr "Веспрем" - -#: i18n/states/HU.php:32 -#@ woocommerce -msgid "Zala" -msgstr "Зала" - -#: i18n/states/HZ.php:13 -#: i18n/states/NZ.php:14 -#@ woocommerce -msgid "Auckland" -msgstr "Окленд" - -#: i18n/states/HZ.php:14 -#: i18n/states/NZ.php:16 -#@ woocommerce -msgid "Bay of Plenty" -msgstr "" - -#: i18n/states/HZ.php:15 -#: i18n/states/NZ.php:25 -#@ woocommerce -msgid "Canterbury" -msgstr "" - -#: i18n/states/HZ.php:16 -#: i18n/states/NZ.php:18 -#@ woocommerce -msgid "Hawke’s Bay" -msgstr "" - -#: i18n/states/HZ.php:17 -#: i18n/states/NZ.php:19 -#@ woocommerce -msgid "Manawatu-Wanganui" -msgstr "" - -#: i18n/states/HZ.php:18 -#: i18n/states/NZ.php:22 -#@ woocommerce -msgid "Marlborough" -msgstr "" - -#: i18n/states/HZ.php:19 -#: i18n/states/NZ.php:21 -#@ woocommerce -msgid "Nelson" -msgstr "Нельсон" - -#: i18n/states/HZ.php:20 -#: i18n/states/NZ.php:13 -#@ woocommerce -msgid "Northland" -msgstr "" - -#: i18n/states/HZ.php:21 -#: i18n/states/NZ.php:26 -#@ woocommerce -msgid "Otago" -msgstr "" - -#: i18n/states/HZ.php:22 -#: i18n/states/NZ.php:27 -#@ woocommerce -msgid "Southland" -msgstr "" - -#: i18n/states/HZ.php:23 -#: i18n/states/NZ.php:17 -#@ woocommerce -msgid "Taranaki" -msgstr "" - -#: i18n/states/HZ.php:24 -#: i18n/states/NZ.php:23 -#@ woocommerce -msgid "Tasman" -msgstr "" - -#: i18n/states/HZ.php:25 -#: i18n/states/NZ.php:15 -#@ woocommerce -msgid "Waikato" -msgstr "" - -#: i18n/states/HZ.php:26 -#: i18n/states/NZ.php:20 -#@ woocommerce -msgid "Wellington" -msgstr "" - -#: i18n/states/HZ.php:27 -#: i18n/states/NZ.php:24 -#@ woocommerce -msgid "West Coast" -msgstr "" - -#: i18n/states/ID.php:13 -#@ woocommerce -msgid "Daerah Istimewa Aceh" -msgstr "" - -#: i18n/states/ID.php:14 -#@ woocommerce -msgid "Sumatera Utara" -msgstr "" - -#: i18n/states/ID.php:15 -#@ woocommerce -msgid "Sumatera Barat" -msgstr "" - -#: i18n/states/ID.php:16 -#@ woocommerce -msgid "Riau" -msgstr "" - -#: i18n/states/ID.php:17 -#@ woocommerce -msgid "Kepulauan Riau" -msgstr "" - -#: i18n/states/ID.php:18 -#@ woocommerce -msgid "Jambi" -msgstr "" - -#: i18n/states/ID.php:19 -#@ woocommerce -msgid "Sumatera Selatan" -msgstr "" - -#: i18n/states/ID.php:20 -#@ woocommerce -msgid "Bangka Belitung" -msgstr "" - -#: i18n/states/ID.php:21 -#@ woocommerce -msgid "Bengkulu" -msgstr "" - -#: i18n/states/ID.php:22 -#@ woocommerce -msgid "Lampung" -msgstr "" - -#: i18n/states/ID.php:23 -#@ woocommerce -msgid "DKI Jakarta" -msgstr "" - -#: i18n/states/ID.php:24 -#@ woocommerce -msgid "Jawa Barat" -msgstr "" - -#: i18n/states/ID.php:25 -#@ woocommerce -msgid "Banten" -msgstr "" - -#: i18n/states/ID.php:26 -#@ woocommerce -msgid "Jawa Tengah" -msgstr "" - -#: i18n/states/ID.php:27 -#@ woocommerce -msgid "Jawa Timur" -msgstr "" - -#: i18n/states/ID.php:28 -#@ woocommerce -msgid "Daerah Istimewa Yogyakarta" -msgstr "" - -#: i18n/states/ID.php:29 -#@ woocommerce -msgid "Bali" -msgstr "" - -#: i18n/states/ID.php:30 -#@ woocommerce -msgid "Nusa Tenggara Barat" -msgstr "" - -#: i18n/states/ID.php:31 -#@ woocommerce -msgid "Nusa Tenggara Timur" -msgstr "" - -#: i18n/states/ID.php:32 -#@ woocommerce -msgid "Kalimantan Barat" -msgstr "" - -#: i18n/states/ID.php:33 -#@ woocommerce -msgid "Kalimantan Tengah" -msgstr "" - -#: i18n/states/ID.php:34 -#@ woocommerce -msgid "Kalimantan Timur" -msgstr "" - -#: i18n/states/ID.php:35 -#@ woocommerce -msgid "Kalimantan Selatan" -msgstr "" - -#: i18n/states/ID.php:36 -#@ woocommerce -msgid "Kalimantan Utara" -msgstr "" - -#: i18n/states/ID.php:37 -#@ woocommerce -msgid "Sulawesi Utara" -msgstr "" - -#: i18n/states/ID.php:38 -#@ woocommerce -msgid "Sulawesi Tengah" -msgstr "" - -#: i18n/states/ID.php:39 -#@ woocommerce -msgid "Sulawesi Tenggara" -msgstr "" - -#: i18n/states/ID.php:40 -#@ woocommerce -msgid "Sulawesi Barat" -msgstr "" - -#: i18n/states/ID.php:41 -#@ woocommerce -msgid "Sulawesi Selatan" -msgstr "" - -#: i18n/states/ID.php:42 -#@ woocommerce -msgid "Gorontalo" -msgstr "" - -#: i18n/states/ID.php:43 -#@ woocommerce -msgid "Maluku" -msgstr "" - -#: i18n/states/ID.php:44 -#@ woocommerce -msgid "Maluku Utara" -msgstr "" - -#: i18n/states/ID.php:45 -#@ woocommerce -msgid "Papua" -msgstr "" - -#: i18n/states/ID.php:46 -#@ woocommerce -msgid "Papua Barat" -msgstr "" - -#: i18n/states/IN.php:13 -#@ woocommerce -msgid "Andra Pradesh" -msgstr "Андхра-Прадеш" - -#: i18n/states/IN.php:14 -#@ woocommerce -msgid "Arunachal Pradesh" -msgstr "Аруначал-Прадеш" - -#: i18n/states/IN.php:15 -#@ woocommerce -msgid "Assam" -msgstr "Ассам" - -#: i18n/states/IN.php:16 -#@ woocommerce -msgid "Bihar" -msgstr "" - -#: i18n/states/IN.php:17 -#@ woocommerce -msgid "Chhattisgarh" -msgstr "" - -#: i18n/states/IN.php:18 -#@ woocommerce -msgid "Goa" -msgstr "" - -#: i18n/states/IN.php:19 -#@ woocommerce -msgid "Gujarat" -msgstr "" - -#: i18n/states/IN.php:20 -#@ woocommerce -msgid "Haryana" -msgstr "" - -#: i18n/states/IN.php:21 -#@ woocommerce -msgid "Himachal Pradesh" -msgstr "" - -#: i18n/states/IN.php:22 -#@ woocommerce -msgid "Jammu and Kashmir" -msgstr "" - -#: i18n/states/IN.php:23 -#@ woocommerce -msgid "Jharkhand" -msgstr "" - -#: i18n/states/IN.php:24 -#@ woocommerce -msgid "Karnataka" -msgstr "" - -#: i18n/states/IN.php:25 -#@ woocommerce -msgid "Kerala" -msgstr "" - -#: i18n/states/IN.php:26 -#@ woocommerce -msgid "Madhya Pradesh" -msgstr "" - -#: i18n/states/IN.php:27 -#@ woocommerce -msgid "Maharashtra" -msgstr "" - -#: i18n/states/IN.php:28 -#@ woocommerce -msgid "Manipur" -msgstr "" - -#: i18n/states/IN.php:29 -#@ woocommerce -msgid "Meghalaya" -msgstr "" - -#: i18n/states/IN.php:30 -#@ woocommerce -msgid "Mizoram" -msgstr "" - -#: i18n/states/IN.php:31 -#@ woocommerce -msgid "Nagaland" -msgstr "Нагаленда" - -#: i18n/states/IN.php:32 -#@ woocommerce -msgid "Orissa" -msgstr "" - -#: i18n/states/IN.php:33 -#@ woocommerce -msgid "Punjab" -msgstr "" - -#: i18n/states/IN.php:34 -#@ woocommerce -msgid "Rajasthan" -msgstr "" - -#: i18n/states/IN.php:35 -#@ woocommerce -msgid "Sikkim" -msgstr "" - -#: i18n/states/IN.php:36 -#@ woocommerce -msgid "Tamil Nadu" -msgstr "" - -#: i18n/states/IN.php:37 -#@ woocommerce -msgid "Tripura" -msgstr "Тріпура" - -#: i18n/states/IN.php:38 -#@ woocommerce -msgid "Uttaranchal" -msgstr "Уттаранчал" - -#: i18n/states/IN.php:39 -#@ woocommerce -msgid "Uttar Pradesh" -msgstr "Уттар-Прадеш" - -#: i18n/states/IN.php:40 -#@ woocommerce -msgid "West Bengal" -msgstr "" - -#: i18n/states/IN.php:41 -#@ woocommerce -msgid "Andaman and Nicobar Islands" -msgstr "Андаманські і Нікобарські острови" - -#: i18n/states/IN.php:42 -#@ woocommerce -msgid "Chandigarh" -msgstr "" - -#: i18n/states/IN.php:43 -#@ woocommerce -msgid "Dadar and Nagar Haveli" -msgstr "" - -#: i18n/states/IN.php:44 -#@ woocommerce -msgid "Daman and Diu" -msgstr "" - -#: i18n/states/IN.php:45 -#@ woocommerce -msgid "Delhi" -msgstr "" - -#: i18n/states/IN.php:46 -#@ woocommerce -msgid "Lakshadeep" -msgstr "" - -#: i18n/states/IN.php:47 -#@ woocommerce -msgid "Pondicherry (Puducherry)" -msgstr "" - -#: i18n/states/MY.php:13 -#@ woocommerce -msgid "Johor" -msgstr "" - -#: i18n/states/MY.php:14 -#@ woocommerce -msgid "Kedah" -msgstr "" - -#: i18n/states/MY.php:15 -#@ woocommerce -msgid "Kelantan" -msgstr "" - -#: i18n/states/MY.php:16 -#@ woocommerce -msgid "Melaka" -msgstr "" - -#: i18n/states/MY.php:17 -#@ woocommerce -msgid "Negeri Sembilan" -msgstr "Негрі Сембілан" - -#: i18n/states/MY.php:18 -#@ woocommerce -msgid "Pahang" -msgstr "" - -#: i18n/states/MY.php:19 -#@ woocommerce -msgid "Perak" -msgstr "" - -#: i18n/states/MY.php:20 -#@ woocommerce -msgid "Perlis" -msgstr "" - -#: i18n/states/MY.php:21 -#@ woocommerce -msgid "Pulau Pinang" -msgstr "" - -#: i18n/states/MY.php:22 -#@ woocommerce -msgid "Sabah" -msgstr "" - -#: i18n/states/MY.php:23 -#@ woocommerce -msgid "Sarawak" -msgstr "" - -#: i18n/states/MY.php:24 -#@ woocommerce -msgid "Selangor" -msgstr "" - -#: i18n/states/MY.php:25 -#@ woocommerce -msgid "Terengganu" -msgstr "" - -#: i18n/states/MY.php:26 -#@ woocommerce -msgid "W.P. Kuala Lumpur" -msgstr "" - -#: i18n/states/MY.php:27 -#@ woocommerce -msgid "W.P. Labuan" -msgstr "" - -#: i18n/states/MY.php:28 -#@ woocommerce -msgid "W.P. Putrajaya" -msgstr "" - -#: i18n/states/TH.php:13 -#@ woocommerce -msgid "Amnat Charoen (อำนาจเจริญ)" -msgstr "Амнат Хароєн (อำนาจเจริญ)" - -#: i18n/states/TH.php:14 -#@ woocommerce -msgid "Ang Thong (อ่างทอง)" -msgstr "Анг Тхонг (อ่างทอง)" - -#: i18n/states/TH.php:15 -#@ woocommerce -msgid "Ayutthaya (พระนครศรีอยุธยา)" -msgstr "" - -#: i18n/states/TH.php:16 -#@ woocommerce -msgid "Bangkok (กรุงเทพมหานคร)" -msgstr "" - -#: i18n/states/TH.php:17 -#@ woocommerce -msgid "Bueng Kan (บึงกาฬ)" -msgstr "" - -#: i18n/states/TH.php:18 -#@ woocommerce -msgid "Buri Ram (บุรีรัมย์)" -msgstr "" - -#: i18n/states/TH.php:19 -#@ woocommerce -msgid "Chachoengsao (ฉะเชิงเทรา)" -msgstr "" - -#: i18n/states/TH.php:20 -#@ woocommerce -msgid "Chai Nat (ชัยนาท)" -msgstr "" - -#: i18n/states/TH.php:21 -#@ woocommerce -msgid "Chaiyaphum (ชัยภูมิ)" -msgstr "" - -#: i18n/states/TH.php:22 -#@ woocommerce -msgid "Chanthaburi (จันทบุรี)" -msgstr "" - -#: i18n/states/TH.php:23 -#@ woocommerce -msgid "Chiang Mai (เชียงใหม่)" -msgstr "" - -#: i18n/states/TH.php:24 -#@ woocommerce -msgid "Chiang Rai (เชียงราย)" -msgstr "" - -#: i18n/states/TH.php:25 -#@ woocommerce -msgid "Chonburi (ชลบุรี)" -msgstr "" - -#: i18n/states/TH.php:26 -#@ woocommerce -msgid "Chumphon (ชุมพร)" -msgstr "" - -#: i18n/states/TH.php:27 -#@ woocommerce -msgid "Kalasin (กาฬสินธุ์)" -msgstr "" - -#: i18n/states/TH.php:28 -#@ woocommerce -msgid "Kamphaeng Phet (กำแพงเพชร)" -msgstr "" - -#: i18n/states/TH.php:29 -#@ woocommerce -msgid "Kanchanaburi (กาญจนบุรี)" -msgstr "" - -#: i18n/states/TH.php:30 -#@ woocommerce -msgid "Khon Kaen (ขอนแก่น)" -msgstr "" - -#: i18n/states/TH.php:31 -#@ woocommerce -msgid "Krabi (กระบี่)" -msgstr "" - -#: i18n/states/TH.php:32 -#@ woocommerce -msgid "Lampang (ลำปาง)" -msgstr "" - -#: i18n/states/TH.php:33 -#@ woocommerce -msgid "Lamphun (ลำพูน)" -msgstr "" - -#: i18n/states/TH.php:34 -#@ woocommerce -msgid "Loei (เลย)" -msgstr "" - -#: i18n/states/TH.php:35 -#@ woocommerce -msgid "Lopburi (ลพบุรี)" -msgstr "" - -#: i18n/states/TH.php:36 -#@ woocommerce -msgid "Mae Hong Son (แม่ฮ่องสอน)" -msgstr "" - -#: i18n/states/TH.php:37 -#@ woocommerce -msgid "Maha Sarakham (มหาสารคาม)" -msgstr "" - -#: i18n/states/TH.php:38 -#@ woocommerce -msgid "Mukdahan (มุกดาหาร)" -msgstr "" - -#: i18n/states/TH.php:39 -#@ woocommerce -msgid "Nakhon Nayok (นครนายก)" -msgstr "" - -#: i18n/states/TH.php:40 -#@ woocommerce -msgid "Nakhon Pathom (นครปฐม)" -msgstr "" - -#: i18n/states/TH.php:41 -#@ woocommerce -msgid "Nakhon Phanom (นครพนม)" -msgstr "" - -#: i18n/states/TH.php:42 -#@ woocommerce -msgid "Nakhon Ratchasima (นครราชสีมา)" -msgstr "" - -#: i18n/states/TH.php:43 -#@ woocommerce -msgid "Nakhon Sawan (นครสวรรค์)" -msgstr "" - -#: i18n/states/TH.php:44 -#@ woocommerce -msgid "Nakhon Si Thammarat (นครศรีธรรมราช)" -msgstr "" - -#: i18n/states/TH.php:45 -#@ woocommerce -msgid "Nan (น่าน)" -msgstr "" - -#: i18n/states/TH.php:46 -#@ woocommerce -msgid "Narathiwat (นราธิวาส)" -msgstr "" - -#: i18n/states/TH.php:47 -#@ woocommerce -msgid "Nong Bua Lam Phu (หนองบัวลำภู)" -msgstr "" - -#: i18n/states/TH.php:48 -#@ woocommerce -msgid "Nong Khai (หนองคาย)" -msgstr "" - -#: i18n/states/TH.php:49 -#@ woocommerce -msgid "Nonthaburi (นนทบุรี)" -msgstr "" - -#: i18n/states/TH.php:50 -#@ woocommerce -msgid "Pathum Thani (ปทุมธานี)" -msgstr "" - -#: i18n/states/TH.php:51 -#@ woocommerce -msgid "Pattani (ปัตตานี)" -msgstr "" - -#: i18n/states/TH.php:52 -#@ woocommerce -msgid "Phang Nga (พังงา)" -msgstr "" - -#: i18n/states/TH.php:53 -#@ woocommerce -msgid "Phatthalung (พัทลุง)" -msgstr "" - -#: i18n/states/TH.php:54 -#@ woocommerce -msgid "Phayao (พะเยา)" -msgstr "" - -#: i18n/states/TH.php:55 -#@ woocommerce -msgid "Phetchabun (เพชรบูรณ์)" -msgstr "" - -#: i18n/states/TH.php:56 -#@ woocommerce -msgid "Phetchaburi (เพชรบุรี)" -msgstr "" - -#: i18n/states/TH.php:57 -#@ woocommerce -msgid "Phichit (พิจิตร)" -msgstr "" - -#: i18n/states/TH.php:58 -#@ woocommerce -msgid "Phitsanulok (พิษณุโลก)" -msgstr "" - -#: i18n/states/TH.php:59 -#@ woocommerce -msgid "Phrae (แพร่)" -msgstr "" - -#: i18n/states/TH.php:60 -#@ woocommerce -msgid "Phuket (ภูเก็ต)" -msgstr "" - -#: i18n/states/TH.php:61 -#@ woocommerce -msgid "Prachin Buri (ปราจีนบุรี)" -msgstr "" - -#: i18n/states/TH.php:62 -#@ woocommerce -msgid "Prachuap Khiri Khan (ประจวบคีรีขันธ์)" -msgstr "" - -#: i18n/states/TH.php:63 -#@ woocommerce -msgid "Ranong (ระนอง)" -msgstr "" - -#: i18n/states/TH.php:64 -#@ woocommerce -msgid "Ratchaburi (ราชบุรี)" -msgstr "" - -#: i18n/states/TH.php:65 -#@ woocommerce -msgid "Rayong (ระยอง)" -msgstr "" - -#: i18n/states/TH.php:66 -#@ woocommerce -msgid "Roi Et (ร้อยเอ็ด)" -msgstr "" - -#: i18n/states/TH.php:67 -#@ woocommerce -msgid "Sa Kaeo (สระแก้ว)" -msgstr "" - -#: i18n/states/TH.php:68 -#@ woocommerce -msgid "Sakon Nakhon (สกลนคร)" -msgstr "" - -#: i18n/states/TH.php:69 -#@ woocommerce -msgid "Samut Prakan (สมุทรปราการ)" -msgstr "" - -#: i18n/states/TH.php:70 -#@ woocommerce -msgid "Samut Sakhon (สมุทรสาคร)" -msgstr "" - -#: i18n/states/TH.php:71 -#@ woocommerce -msgid "Samut Songkhram (สมุทรสงคราม)" -msgstr "" - -#: i18n/states/TH.php:72 -#@ woocommerce -msgid "Saraburi (สระบุรี)" -msgstr "" - -#: i18n/states/TH.php:73 -#@ woocommerce -msgid "Satun (สตูล)" -msgstr "" - -#: i18n/states/TH.php:74 -#@ woocommerce -msgid "Sing Buri (สิงห์บุรี)" -msgstr "" - -#: i18n/states/TH.php:75 -#@ woocommerce -msgid "Sisaket (ศรีสะเกษ)" -msgstr "" - -#: i18n/states/TH.php:76 -#@ woocommerce -msgid "Songkhla (สงขลา)" -msgstr "" - -#: i18n/states/TH.php:77 -#@ woocommerce -msgid "Sukhothai (สุโขทัย)" -msgstr "" - -#: i18n/states/TH.php:78 -#@ woocommerce -msgid "Suphan Buri (สุพรรณบุรี)" -msgstr "" - -#: i18n/states/TH.php:79 -#@ woocommerce -msgid "Surat Thani (สุราษฎร์ธานี)" -msgstr "" - -#: i18n/states/TH.php:80 -#@ woocommerce -msgid "Surin (สุรินทร์)" -msgstr "" - -#: i18n/states/TH.php:81 -#@ woocommerce -msgid "Tak (ตาก)" -msgstr "" - -#: i18n/states/TH.php:82 -#@ woocommerce -msgid "Trang (ตรัง)" -msgstr "" - -#: i18n/states/TH.php:83 -#@ woocommerce -msgid "Trat (ตราด)" -msgstr "" - -#: i18n/states/TH.php:84 -#@ woocommerce -msgid "Ubon Ratchathani (อุบลราชธานี)" -msgstr "" - -#: i18n/states/TH.php:85 -#@ woocommerce -msgid "Udon Thani (อุดรธานี)" -msgstr "" - -#: i18n/states/TH.php:86 -#@ woocommerce -msgid "Uthai Thani (อุทัยธานี)" -msgstr "" - -#: i18n/states/TH.php:87 -#@ woocommerce -msgid "Uttaradit (อุตรดิตถ์)" -msgstr "" - -#: i18n/states/TH.php:88 -#@ woocommerce -msgid "Yala (ยะลา)" -msgstr "" - -#: i18n/states/TH.php:89 -#@ woocommerce -msgid "Yasothon (ยโสธร)" -msgstr "" - -#: i18n/states/US.php:13 -#@ woocommerce -msgid "Alabama" -msgstr "Алабама" - -#: i18n/states/US.php:14 -#@ woocommerce -msgid "Alaska" -msgstr "Аляска" - -#: i18n/states/US.php:15 -#@ woocommerce -msgid "Arizona" -msgstr "Арізона" - -#: i18n/states/US.php:16 -#@ woocommerce -msgid "Arkansas" -msgstr "Арканзас" - -#: i18n/states/US.php:17 -#@ woocommerce -msgid "California" -msgstr "" - -#: i18n/states/US.php:18 -#@ woocommerce -msgid "Colorado" -msgstr "" - -#: i18n/states/US.php:19 -#@ woocommerce -msgid "Connecticut" -msgstr "" - -#: i18n/states/US.php:20 -#@ woocommerce -msgid "Delaware" -msgstr "" - -#: i18n/states/US.php:21 -#@ woocommerce -msgid "District Of Columbia" -msgstr "" - -#: i18n/states/US.php:22 -#@ woocommerce -msgid "Florida" -msgstr "" - -#: i18n/states/US.php:24 -#@ woocommerce -msgid "Hawaii" -msgstr "" - -#: i18n/states/US.php:25 -#@ woocommerce -msgid "Idaho" -msgstr "" - -#: i18n/states/US.php:26 -#@ woocommerce -msgid "Illinois" -msgstr "" - -#: i18n/states/US.php:27 -#@ woocommerce -msgid "Indiana" -msgstr "" - -#: i18n/states/US.php:28 -#@ woocommerce -msgid "Iowa" -msgstr "" - -#: i18n/states/US.php:29 -#@ woocommerce -msgid "Kansas" -msgstr "" - -#: i18n/states/US.php:30 -#@ woocommerce -msgid "Kentucky" -msgstr "" - -#: i18n/states/US.php:31 -#@ woocommerce -msgid "Louisiana" -msgstr "" - -#: i18n/states/US.php:32 -#@ woocommerce -msgid "Maine" -msgstr "" - -#: i18n/states/US.php:33 -#@ woocommerce -msgid "Maryland" -msgstr "" - -#: i18n/states/US.php:34 -#@ woocommerce -msgid "Massachusetts" -msgstr "" - -#: i18n/states/US.php:35 -#@ woocommerce -msgid "Michigan" -msgstr "" - -#: i18n/states/US.php:36 -#@ woocommerce -msgid "Minnesota" -msgstr "" - -#: i18n/states/US.php:37 -#@ woocommerce -msgid "Mississippi" -msgstr "" - -#: i18n/states/US.php:38 -#@ woocommerce -msgid "Missouri" -msgstr "" - -#: i18n/states/US.php:39 -#@ woocommerce -msgid "Montana" -msgstr "" - -#: i18n/states/US.php:40 -#@ woocommerce -msgid "Nebraska" -msgstr "Небраска" - -#: i18n/states/US.php:41 -#@ woocommerce -msgid "Nevada" -msgstr "украинскийрусскийанглийскийНевада" - -#: i18n/states/US.php:42 -#@ woocommerce -msgid "New Hampshire" -msgstr "Нью-Гемпшир" - -#: i18n/states/US.php:43 -#@ woocommerce -msgid "New Jersey" -msgstr "Нью-Джерсі" - -#: i18n/states/US.php:44 -#@ woocommerce -msgid "New Mexico" -msgstr "Нью-Мексико" - -#: i18n/states/US.php:45 -#@ woocommerce -msgid "New York" -msgstr "Нью-Йорк" - -#: i18n/states/US.php:46 -#@ woocommerce -msgid "North Carolina" -msgstr "" - -#: i18n/states/US.php:47 -#@ woocommerce -msgid "North Dakota" -msgstr "" - -#: i18n/states/US.php:48 -#@ woocommerce -msgid "Ohio" -msgstr "" - -#: i18n/states/US.php:49 -#@ woocommerce -msgid "Oklahoma" -msgstr "" - -#: i18n/states/US.php:50 -#@ woocommerce -msgid "Oregon" -msgstr "" - -#: i18n/states/US.php:51 -#@ woocommerce -msgid "Pennsylvania" -msgstr "" - -#: i18n/states/US.php:52 -#@ woocommerce -msgid "Rhode Island" -msgstr "" - -#: i18n/states/US.php:53 -#@ woocommerce -msgid "South Carolina" -msgstr "" - -#: i18n/states/US.php:54 -#@ woocommerce -msgid "South Dakota" -msgstr "" - -#: i18n/states/US.php:55 -#@ woocommerce -msgid "Tennessee" -msgstr "" - -#: i18n/states/US.php:56 -#@ woocommerce -msgid "Texas" -msgstr "" - -#: i18n/states/US.php:57 -#@ woocommerce -msgid "Utah" -msgstr "Юта" - -#: i18n/states/US.php:58 -#@ woocommerce -msgid "Vermont" -msgstr "Вермонт" - -#: i18n/states/US.php:59 -#@ woocommerce -msgid "Virginia" -msgstr "" - -#: i18n/states/US.php:60 -#@ woocommerce -msgid "Washington" -msgstr "" - -#: i18n/states/US.php:61 -#@ woocommerce -msgid "West Virginia" -msgstr "" - -#: i18n/states/US.php:62 -#@ woocommerce -msgid "Wisconsin" -msgstr "" - -#: i18n/states/US.php:63 -#@ woocommerce -msgid "Wyoming" -msgstr "" - -#: i18n/states/US.php:64 -#@ woocommerce -msgid "Armed Forces (AA)" -msgstr "Збройні сили (AA)" - -#: i18n/states/US.php:65 -#@ woocommerce -msgid "Armed Forces (AE)" -msgstr "Збройні сили (AЕ)" - -#: i18n/states/US.php:66 -#@ woocommerce -msgid "Armed Forces (AP)" -msgstr "Збройні сили (AР)" - -#: i18n/states/US.php:67 -#@ woocommerce -msgid "American Samoa" -msgstr "Американське Самоа" - -#: i18n/states/US.php:68 -#@ woocommerce -msgid "Guam" -msgstr "" - -#: i18n/states/US.php:69 -#@ woocommerce -msgid "Northern Mariana Islands" -msgstr "" - -#: i18n/states/US.php:70 -#@ woocommerce -msgid "Puerto Rico" -msgstr "" - -#: i18n/states/US.php:71 -#@ woocommerce -msgid "US Minor Outlying Islands" -msgstr "Зовнішні малі острови США" - -#: i18n/states/US.php:72 -#@ woocommerce -msgid "US Virgin Islands" -msgstr "Американські Віргінські острови" - -#: i18n/states/ZA.php:13 -#@ woocommerce -msgid "Eastern Cape" -msgstr "" - -#: i18n/states/ZA.php:14 -#@ woocommerce -msgid "Free State" -msgstr "" - -#: i18n/states/ZA.php:15 -#@ woocommerce -msgid "Gauteng" -msgstr "" - -#: i18n/states/ZA.php:16 -#@ woocommerce -msgid "KwaZulu-Natal" -msgstr "" - -#: i18n/states/ZA.php:17 -#@ woocommerce -msgid "Limpopo" -msgstr "" - -#: i18n/states/ZA.php:18 -#@ woocommerce -msgid "Mpumalanga" -msgstr "Мпумаланга" - -#: i18n/states/ZA.php:19 -#@ woocommerce -msgid "Northern Cape" -msgstr "" - -#: i18n/states/ZA.php:20 -#@ woocommerce -msgid "North West" -msgstr "" - -#: i18n/states/ZA.php:21 -#@ woocommerce -msgid "Western Cape" -msgstr "" - -#: i18n/strings.php:16 -#@ woocommerce -msgid "pending" -msgstr "очікує" - -#: i18n/strings.php:17 -#@ woocommerce -msgid "failed" -msgstr "не вдалося" - -#: i18n/strings.php:18 -#@ woocommerce -msgid "on-hold" -msgstr "резерв" - -#: i18n/strings.php:19 -#@ woocommerce -msgid "processing" -msgstr "Виконується" - -#: i18n/strings.php:20 -#@ woocommerce -msgid "completed" -msgstr "завершено" - -#: i18n/strings.php:21 -#@ woocommerce -msgid "refunded" -msgstr "оплачений" - -#: i18n/strings.php:22 -#@ woocommerce -msgid "cancelled" -msgstr "скасований" - -#: templates/cart/cart-empty.php:14 -#@ woocommerce -msgid "Your cart is currently empty." -msgstr "Ваш кошик порожній." - -#: templates/cart/cart-empty.php:18 -#@ woocommerce -msgid "← Return To Shop" -msgstr "← Повернутися до магазину" - -#: templates/cart/cart.php:47 -#@ woocommerce -msgid "Remove this item" -msgstr "Видалити цей елемент" - -#: templates/cart/cart.php:100 -#: templates/single-product/add-to-cart/quantity.php:12 -#@ woocommerce -msgctxt "Product quantity input tooltip" -msgid "Qty" -msgstr "К-ть" - -#: templates/cart/cart.php:127 -#: templates/checkout/form-coupon.php:29 -#@ woocommerce -msgid "Apply Coupon" -msgstr "Використати купон" - -#: templates/cart/cart.php:134 -#@ woocommerce -msgid "Update Cart" -msgstr "Оновити кошик" - -#: templates/cart/cart.php:134 -#@ woocommerce -msgid "Proceed to Checkout →" -msgstr "Перейти до оформлення →" - -#: templates/cart/cross-sells.php:38 -#@ woocommerce -msgid "You may be interested in…" -msgstr "Вас може зацікавити …" - -#: templates/cart/mini-cart.php:55 -#@ woocommerce -msgid "No products in the cart." -msgstr "У кошику немає товарів." - -#: templates/cart/mini-cart.php:69 -#@ woocommerce -msgid "Checkout →" -msgstr "Оформлення →" - -#: templates/cart/shipping-calculator.php:22 -#@ woocommerce -msgid "Calculate Shipping" -msgstr "Порахувати доставку" - -#: templates/cart/shipping-calculator.php:45 -#: templates/cart/shipping-calculator.php:51 -#: templates/cart/shipping-calculator.php:63 -#@ woocommerce -msgid "State / county" -msgstr "Країна" - -#: templates/cart/shipping-calculator.php:52 -#: woocommerce-template.php:1384 -#@ woocommerce -msgid "Select a state…" -msgstr "Оберіть країну…" - -#: templates/cart/shipping-calculator.php:85 -#@ woocommerce -msgid "Update Totals" -msgstr "Оновити підсумок" - -#: templates/cart/shipping-methods.php:32 -#@ woocommerce -msgid "Free" -msgstr "Безкоштовно" - -#: templates/cart/shipping-methods.php:68 -#@ woocommerce -msgid "Please fill in your details to see available shipping methods." -msgstr "Будь ласка, введіть ваші дані, щоб побачити доступні методи доставки." - -#: templates/cart/shipping-methods.php:76 -#: templates/cart/totals.php:147 -#, php-format -#@ woocommerce -msgid "Sorry, it seems that there are no available shipping methods for your location (%s)." -msgstr "Шкода, але здається, що немає можливості доставити товар у Ваш регіон (%s)." - -#: templates/cart/shipping-methods.php:76 -#: templates/cart/totals.php:147 -#@ woocommerce -msgid "If you require assistance or wish to make alternate arrangements please contact us." -msgstr "Якщо вам потрібна допомога або порада, будь ласка звертайтеся до нас." - -#: templates/cart/totals.php:22 -#@ woocommerce -msgid "Cart Totals" -msgstr "Всього" - -#: templates/cart/totals.php:28 -#: templates/checkout/review-order.php:27 -#@ woocommerce -msgid "Cart Subtotal" -msgstr "Попередній підсумок" - -#: templates/cart/totals.php:35 -#: templates/checkout/review-order.php:34 -#: woocommerce.php:1690 -#@ woocommerce -msgid "Cart Discount" -msgstr "Зни" - -#: templates/cart/totals.php:35 -#: templates/cart/totals.php:83 -#@ woocommerce -msgid "[Remove]" -msgstr "[Прибрати]" - -#: templates/cart/totals.php:83 -#: templates/checkout/review-order.php:82 -#@ woocommerce -msgid "Order Discount" -msgstr "Знижка на замовлення" - -#: templates/cart/totals.php:121 -#, php-format -#@ woocommerce -msgid " (taxes estimated for %s)" -msgstr "" - -#: templates/cart/totals.php:123 -#, php-format -#@ woocommerce -msgid "Note: Shipping and taxes are estimated%s and will be updated during checkout based on your billing and shipping information." -msgstr "Примітка: Доставка та податки розраховуються%s та будуть оновлені під час оформлення виходячи з інформації про доставку та оплату." - -#: templates/cart/totals.php:135 -#@ woocommerce -msgid "No shipping methods were found; please recalculate your shipping and enter your state/county and zip/postcode to ensure there are no other available methods for your location." -msgstr "Жодного способу доставки не було знайдено, будь ласка, перерахуйте доставку і введіть країну/штат і zip/поштовий індекс, щоб переконатися, що немає ніяких інших доступних методів для вашого місця розташування." - -#: templates/checkout/cart-errors.php:16 -#@ woocommerce -msgid "There are some issues with the items in your cart (shown above). Please go back to the cart page and resolve these issues before checking out." -msgstr "Є деякі проблеми з товарами у Вашому кошику (див. вище). Будь ласка, поверніться на сторінку кошика і вирішіть ці проблеми перед оформленням заявки." - -#: templates/checkout/cart-errors.php:20 -#@ woocommerce -msgid "← Return To Cart" -msgstr "← Повернутися до кошика" - -#: templates/checkout/form-billing.php:17 -#@ woocommerce -msgid "Billing & Shipping" -msgstr "Оплата і Доставка" - -#: templates/checkout/form-billing.php:42 -#@ woocommerce -msgid "Create an account?" -msgstr "Створити обліковий запис?" - -#: templates/checkout/form-billing.php:51 -#@ woocommerce -msgid "Create an account by entering the information below. If you are a returning customer please login at the top of the page." -msgstr "" - -#: templates/checkout/form-checkout.php:20 -#@ woocommerce -msgid "You must be logged in to checkout." -msgstr "Вам потрібно увійти в систему, щоб оформити замовлення." - -#: templates/checkout/form-checkout.php:51 -#@ woocommerce -msgid "Your order" -msgstr "Ваше замовлення" - -#: templates/checkout/form-coupon.php:17 -#@ woocommerce -msgid "Have a coupon?" -msgstr "Маєте купон?" - -#: templates/checkout/form-coupon.php:20 -#@ woocommerce -msgid "Click here to enter your code" -msgstr "Натисніть тут щоб ввести код" - -#: templates/checkout/form-login.php:14 -#@ woocommerce -msgid "Returning customer?" -msgstr "Постійний клієт?" - -#: templates/checkout/form-login.php:17 -#@ woocommerce -msgid "Click here to login" -msgstr "Натисніть тут щоб увійти" - -#: templates/checkout/form-login.php:22 -#@ woocommerce -msgid "If you have shopped with us before, please enter your details in the boxes below. If you are a new customer please proceed to the Billing & Shipping section." -msgstr "Якщо ви купували у нас раніше, будь ласка введіть Ваші дані нажче. Якщо Ви новий клієнт будь ласка заповніть розділи Оплати та Доставки." - -#: admin/post-types/writepanels/writepanel-order_data.php:349 -#: templates/checkout/form-pay.php:21 -#@ woocommerce -msgid "Totals" -msgstr "Підсумок" - -#: templates/checkout/form-pay.php:78 -#@ woocommerce -msgid "Sorry, it seems that there are no available payment methods for your location. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "" - -#: templates/checkout/form-pay.php:87 -#@ woocommerce -msgid "Pay for order" -msgstr "" - -#: templates/checkout/form-shipping.php:32 -#@ woocommerce -msgid "Ship to billing address?" -msgstr "Відплявти на адресу для рахунків?" - -#: templates/checkout/form-shipping.php:59 -#: templates/single-product/tabs/additional-information.php:14 -#: woocommerce-template.php:759 -#@ woocommerce -msgid "Additional Information" -msgstr "Додаткова інформація" - -#: templates/checkout/review-order.php:174 -#@ woocommerce -msgid "Please fill in your details above to see available payment methods." -msgstr "Будь ласка, введіть ваші дані, щоб побачити доступні методи оплати." - -#: templates/checkout/review-order.php:176 -#@ woocommerce -msgid "Sorry, it seems that there are no available payment methods for your state. Please contact us if you require assistance or wish to make alternate arrangements." -msgstr "" - -#: templates/checkout/review-order.php:185 -#@ woocommerce -msgid "Since your browser does not support JavaScript, or it is disabled, please ensure you click the Update Totals button before placing your order. You may be charged more than the amount stated above if you fail to do so." -msgstr "" - -#: templates/checkout/review-order.php:185 -#@ woocommerce -msgid "Update totals" -msgstr "Оновоти підсумок" - -#: templates/checkout/review-order.php:192 -#@ woocommerce -msgid "Place order" -msgstr "Розмістити замовлення" - -#: templates/checkout/review-order.php:199 -#@ woocommerce -msgid "I have read and accept the" -msgstr "Я прочитав та приймаю" - -#: templates/checkout/review-order.php:199 -#@ woocommerce -msgid "terms & conditions" -msgstr "Правила та умови" - -#: templates/checkout/thankyou.php:18 -#@ woocommerce -msgid "Unfortunately your order cannot be processed as the originating bank/merchant has declined your transaction." -msgstr "На жаль, Ваше замовлення не може бути оброблене. Банк відмовив у транзакції." - -#: templates/checkout/thankyou.php:22 -#@ woocommerce -msgid "Please attempt your purchase again or go to your account page." -msgstr "" - -#: templates/checkout/thankyou.php:24 -#@ woocommerce -msgid "Please attempt your purchase again." -msgstr "" - -#: templates/checkout/thankyou.php:36 -#: templates/checkout/thankyou.php:67 -#@ woocommerce -msgid "Thank you. Your order has been received." -msgstr "Дякуємо. Ваше замовлення було отримане." - -#: templates/emails/admin-new-order.php:13 -#: templates/emails/plain/admin-new-order.php:13 -#, php-format -#@ woocommerce -msgid "You have received an order from %s. Their order is as follows:" -msgstr "" - -#: templates/emails/admin-new-order.php:17 -#, php-format -#@ woocommerce -msgid "Order: %s" -msgstr "Замовлення: %s" - -#: templates/emails/customer-completed-order.php:14 -#: templates/emails/plain/customer-completed-order.php:13 -#, php-format -#@ woocommerce -msgid "Hi there. Your recent order on %s has been completed. Your order details are shown below for your reference:" -msgstr "" - -#: templates/emails/customer-invoice.php:16 -#: templates/emails/plain/customer-invoice.php:14 -#, php-format -#@ woocommerce -msgid "An order has been created for you on %s. To pay for this order please use the following link: %s" -msgstr "Замовлення було створено для вас на %s. Щоб заплатити за це замовлення, будь ласка, використовуйте це посилання: %s" - -#: templates/emails/customer-invoice.php:16 -#@ woocommerce -msgid "pay" -msgstr "оплата" - -#: templates/emails/customer-new-account.php:14 -#: templates/emails/plain/customer-new-account.php:13 -#, php-format -#@ woocommerce -msgid "Thanks for creating an account on %s. Your username is %s." -msgstr "" - -#: templates/emails/customer-new-account.php:16 -#: templates/emails/plain/customer-new-account.php:15 -#, php-format -#@ woocommerce -msgid "You can access your account area here: %s." -msgstr "" - -#: templates/emails/customer-note.php:14 -#: templates/emails/plain/customer-note.php:13 -#@ woocommerce -msgid "Hello, a note has just been added to your order:" -msgstr "Примітку, щойно було додано до Вашого замовлення:" - -#: templates/emails/customer-note.php:18 -#: templates/emails/plain/customer-note.php:21 -#@ woocommerce -msgid "For your reference, your order details are shown below." -msgstr "" - -#: templates/emails/customer-processing-order.php:14 -#: templates/emails/plain/customer-processing-order.php:13 -#@ woocommerce -msgid "Your order has been received and is now being processed. Your order details are shown below for your reference:" -msgstr "Ми отримали Ваше замовлення і вже опрацьовуємо його. Деталі вашого замовлення наведені нижче:" - -#: templates/emails/customer-reset-password.php:14 -#: templates/emails/plain/customer-reset-password.php:13 -#@ woocommerce -msgid "Someone requested that the password be reset for the following account:" -msgstr "" - -#: templates/emails/customer-reset-password.php:15 -#: templates/emails/plain/customer-reset-password.php:15 -#, php-format -#@ woocommerce -msgid "Username: %s" -msgstr "Ім'я користувача: %s" - -#: templates/emails/customer-reset-password.php:16 -#: templates/emails/plain/customer-reset-password.php:16 -#@ woocommerce -msgid "If this was a mistake, just ignore this email and nothing will happen." -msgstr "" - -#: templates/emails/customer-reset-password.php:17 -#: templates/emails/plain/customer-reset-password.php:17 -#@ woocommerce -msgid "To reset your password, visit the following address:" -msgstr "Щоб скинути пароль, перейдіть за цією адресою:" - -#: templates/emails/customer-reset-password.php:20 -#@ woocommerce -msgid "Click here to reset your password" -msgstr "" - -#: templates/emails/email-order-items.php:47 -#, php-format -#@ woocommerce -msgid "Download %d:" -msgstr "" - -#: templates/emails/email-order-items.php:49 -#@ woocommerce -msgid "Download:" -msgstr "Завантажити:" - -#: templates/emails/plain/admin-new-order.php:19 -#: templates/emails/plain/customer-completed-order.php:19 -#: templates/emails/plain/customer-invoice.php:20 -#: templates/emails/plain/customer-note.php:27 -#: templates/emails/plain/customer-processing-order.php:19 -#, php-format -#@ woocommerce -msgid "Order number: %s" -msgstr "" - -#: templates/emails/plain/admin-new-order.php:20 -#: templates/emails/plain/customer-completed-order.php:20 -#: templates/emails/plain/customer-invoice.php:21 -#: templates/emails/plain/customer-note.php:28 -#: templates/emails/plain/customer-processing-order.php:20 -#, php-format -#@ woocommerce -msgid "Order date: %s" -msgstr "Дата замовлення: %s" - -#: templates/emails/plain/admin-new-order.php:20 -#@ woocommerce -msgid "jS F Y" -msgstr "" - -#: templates/emails/plain/customer-completed-order.php:38 -#: templates/emails/plain/customer-note.php:46 -#: templates/emails/plain/customer-processing-order.php:38 -#@ woocommerce -msgid "Your details" -msgstr "Ваші дані" - -#: templates/emails/plain/email-order-items.php:28 -#, php-format -#@ woocommerce -msgid "Quantity: %s" -msgstr "Кількість: %s" - -#: templates/emails/plain/email-order-items.php:31 -#, php-format -#@ woocommerce -msgid "Cost: %s" -msgstr "Ціна: %s" - -#: templates/loop/add-to-cart.php:17 -#: templates/loop/add-to-cart.php:41 -#: templates/loop/add-to-cart.php:50 -#@ woocommerce -msgid "Read More" -msgstr "Докладніше" - -#: templates/loop/add-to-cart.php:33 -#@ woocommerce -msgid "Select options" -msgstr "Обрати опції" - -#: templates/loop/add-to-cart.php:37 -#@ woocommerce -msgid "View options" -msgstr "Переглянути опції" - -#: templates/loop/no-products-found.php:14 -#: templates/loop-shop.php:40 -#@ woocommerce -msgid "No products found which match your selection." -msgstr "Не знайдено товарів, що відповідають вашому вибору." - -#: templates/loop/orderby.php:21 -#@ woocommerce -msgid "Default sorting" -msgstr "Сортування за замовчуванням" - -#: templates/loop/orderby.php:22 -#@ woocommerce -msgid "Sort by popularity" -msgstr "За популярністтю" - -#: templates/loop/orderby.php:23 -#@ woocommerce -msgid "Sort by average rating" -msgstr "За середнім рейтингом" - -#: templates/loop/orderby.php:24 -#@ woocommerce -msgid "Sort by newness" -msgstr "За новизною" - -#: templates/loop/orderby.php:25 -#@ woocommerce -msgid "Sort by price: low to high" -msgstr "За ціною: від низької до високої" - -#: templates/loop/orderby.php:26 -#@ woocommerce -msgid "Sort by price: high to low" -msgstr "За ціною: від високої до низької" - -#: templates/loop/result-count.php:28 -#@ woocommerce -msgid "Showing the single result" -msgstr "Відображається єдиний результат" - -#: templates/loop/result-count.php:30 -#, php-format -#@ woocommerce -msgid "Showing all %d results" -msgstr "Відображаються всі %d результати" - -#: templates/loop/result-count.php:32 -#, php-format -#@ woocommerce -msgctxt "%1$d = first, %2$d = last, %3$d = total" -msgid "Showing %1$d–%2$d of %3$d results" -msgstr "Відображається %1$d–%2$d з %3$d результатів" - -#: templates/loop/sale-flash.php:16 -#: templates/single-product/sale-flash.php:16 -#@ woocommerce -msgid "Sale!" -msgstr "Акція" - -#: templates/myaccount/form-change-password.php:20 -#: templates/myaccount/form-lost-password.php:31 -#@ woocommerce -msgid "New password" -msgstr "Новий пароль" - -#: templates/myaccount/form-change-password.php:24 -#: templates/myaccount/form-lost-password.php:35 -#@ woocommerce -msgid "Re-enter new password" -msgstr "Новий пароль ще раз" - -#: templates/myaccount/form-change-password.php:29 -#: templates/myaccount/form-lost-password.php:45 -#@ woocommerce -msgid "Save" -msgstr "Зберегти" - -#: templates/myaccount/form-edit-address.php:43 -#@ woocommerce -msgid "Save Address" -msgstr "Зберегти адреси" - -#: templates/myaccount/form-login.php:26 -#: templates/myaccount/form-login.php:40 -#: templates/shop/form-login.php:31 -#@ woocommerce -msgid "Login" -msgstr "Логін" - -#: templates/myaccount/form-login.php:29 -#: templates/myaccount/form-lost-password.php:24 -#: templates/shop/form-login.php:20 -#@ woocommerce -msgid "Username or email" -msgstr "Ім'я користувача або email" - -#: templates/myaccount/form-login.php:33 -#: templates/myaccount/form-login.php:85 -#: templates/shop/form-login.php:24 -#@ woocommerce -msgid "Password" -msgstr "Пароль" - -#: templates/myaccount/form-login.php:50 -#: templates/shop/form-login.php:33 -#@ woocommerce -msgid "Lost Password?" -msgstr "Згубили пароль?" - -#: templates/myaccount/form-login.php:60 -#: templates/myaccount/form-login.php:101 -#@ woocommerce -msgid "Register" -msgstr "Реєстрація" - -#: templates/myaccount/form-login.php:66 -#@ woocommerce -msgid "Username" -msgstr "Ім'я користувача" - -#: templates/myaccount/form-login.php:89 -#@ woocommerce -msgid "Re-enter password" -msgstr "Пароль ще раз" - -#: templates/myaccount/form-lost-password.php:22 -#@ woocommerce -msgid "Lost your password? Please enter your username or email address. You will receive a link to create a new password via email." -msgstr "Загубили пароль? Будь ласка, введіть ім'я користувача або e-mail адресу. Ви отримаєте посилання для зміни пароля на свою електронну пошту." - -#: templates/myaccount/form-lost-password.php:28 -#@ woocommerce -msgid "Enter a new password below." -msgstr "Введіть новий пароль нище." - -#: templates/myaccount/form-lost-password.php:45 -#@ woocommerce -msgid "Reset Password" -msgstr "Скинути пароль" - -#: templates/myaccount/my-account.php:19 -#, php-format -#@ woocommerce -msgid "Hello, %s. From your account dashboard you can view your recent orders, manage your shipping and billing addresses and change your password." -msgstr "Вітаємо, %s. У панелі Вашого облікового запису Ви можете переглядати Ваші замовлення, керувати доставкою та адресам, а також змінювати пароль." - -#: templates/myaccount/my-address.php:17 -#@ woocommerce -msgid "My Addresses" -msgstr "Мої адреси" - -#: templates/myaccount/my-address.php:23 -#@ woocommerce -msgid "My Address" -msgstr "Моя адреса" - -#: templates/myaccount/my-address.php:35 -#@ woocommerce -msgid "The following addresses will be used on the checkout page by default." -msgstr "Вказані адреси будуть використовуватися на сторінці оформлення замовлення за замовчуванням." - -#: templates/myaccount/my-address.php:64 -#@ woocommerce -msgid "You have not set up this type of address yet." -msgstr "Ви вже встановили цю адресу." - -#: templates/myaccount/my-downloads.php:18 -#@ woocommerce -msgid "Available downloads" -msgstr "Доступні закачки" - -#: templates/myaccount/my-downloads.php:27 -#, php-format -#@ woocommerce -msgid "%s download remaining" -msgid_plural "%s downloads remaining" -msgstr[0] "%s скачувать залишилось" -msgstr[1] "%s скачувать залишилось" -msgstr[2] "%s скачувать залишилось" - -#: templates/myaccount/my-orders.php:26 -#@ woocommerce -msgid "Recent Orders" -msgstr "Останні замовлення" - -#: templates/myaccount/my-orders.php:62 -#, php-format -#@ woocommerce -msgid "%s for %s item" -msgid_plural "%s for %s items" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: templates/order/form-tracking.php:17 -#@ woocommerce -msgid "To track your order please enter your Order ID in the box below and press return. This was given to you on your receipt and in the confirmation email you should have received." -msgstr "Для відстеження вашого замовлення введіть Номер замовлення і Адресу електронної пошти в поле нижче і натисніть Відстежити. Номер замовлення Ви повинні були отримати після завершення оформлення, а також у листі підтверження, що був автоматично надісланий на вказану під час оформлення електронну пошту." - -#: templates/order/form-tracking.php:19 -#@ woocommerce -msgid "Order ID" -msgstr "Номер замовлення" - -#: templates/order/form-tracking.php:19 -#@ woocommerce -msgid "Found in your order confirmation email." -msgstr "Знайдіть у листі, що підтвердив Ваше замовлення." - -#: templates/order/form-tracking.php:20 -#@ woocommerce -msgid "Billing Email" -msgstr "Адреса електронної пошти" - -#: templates/order/form-tracking.php:20 -#@ woocommerce -msgid "Email you used during checkout." -msgstr "Email, що Ви використовували під час оформлення." - -#: templates/order/form-tracking.php:23 -#@ woocommerce -msgid "Track" -msgstr "Відстежити" - -#: templates/order/order-details.php:64 -#, php-format -#@ woocommerce -msgid "Download file%s" -msgstr "Скачати файл%s" - -#: templates/order/order-details.php:90 -#@ woocommerce -msgid "Order Again" -msgstr "Замовити ще раз" - -#: templates/order/order-details.php:102 -#@ woocommerce -msgid "Telephone:" -msgstr "Телефон:" - -#: templates/order/tracking.php:18 -#, php-format -#@ woocommerce -msgid "Order %s which was made %s has the status “%s”" -msgstr "Замовлення %s, що було зроблене %s має статус “%s”" - -#: templates/order/tracking.php:18 -#@ woocommerce -msgid "ago" -msgstr "тому" - -#: templates/order/tracking.php:20 -#@ woocommerce -msgid "and was completed" -msgstr "і було закінчено" - -#: templates/order/tracking.php:20 -#@ woocommerce -msgid " ago" -msgstr "тому" - -#: templates/shop/breadcrumb.php:63 -#@ woocommerce -msgid "Products tagged “" -msgstr "Товари з міткою “" - -#: templates/shop/breadcrumb.php:91 -#: templates/shop/breadcrumb.php:188 -#@ woocommerce -msgid "Search results for “" -msgstr "Результати пошуку для “" - -#: templates/shop/breadcrumb.php:146 -#@ woocommerce -msgid "Error 404" -msgstr "Помилка 404" - -#: templates/shop/breadcrumb.php:192 -#@ woocommerce -msgid "Posts tagged “" -msgstr "" - -#: templates/shop/breadcrumb.php:197 -#@ woocommerce -msgid "Author:" -msgstr "Автор:" - -#: templates/shop/breadcrumb.php:202 -#@ woocommerce -msgid "Page" -msgstr "Сторінка" - -#: templates/single-product/add-to-cart/variable.php:24 -#@ woocommerce -msgid "Choose an option" -msgstr "Оберіть варіант" - -#: templates/single-product/add-to-cart/variable.php:69 -#@ woocommerce -msgid "Clear selection" -msgstr "Очистити вибір" - -#: templates/single-product/meta.php:24 -#@ woocommerce -msgid "Category:" -msgid_plural "Categories:" -msgstr[0] "Категорія:" -msgstr[1] "Категорія:" -msgstr[2] "Категорія:" - -#: templates/single-product/meta.php:29 -#@ woocommerce -msgid "Tag:" -msgid_plural "Tags:" -msgstr[0] "Мітка:" -msgstr[1] "Мітки:" -msgstr[2] "Мітки:" - -#: templates/single-product/related.php:36 -#@ woocommerce -msgid "Related Products" -msgstr "Пов'язані товари" - -#: templates/single-product/review.php:26 -#, php-format -#@ woocommerce -msgid "Rated %d out of 5" -msgstr "Рейтинг %d з 5" - -#: templates/single-product/review.php:33 -#@ woocommerce -msgid "Your comment is awaiting approval" -msgstr "Ваш коментар очікує схвалення" - -#: templates/single-product/review.php:40 -#@ woocommerce -msgid "verified owner" -msgstr "Підтвержений власник" - -#: templates/single-product/tabs/description.php:14 -#@ woocommerce -msgid "Product Description" -msgstr "Опис товару" - -#: templates/single-product/up-sells.php:39 -#@ woocommerce -msgid "You may also like…" -msgstr "Вам також може сподобатись…" - -#: templates/single-product-reviews.php:30 -#, php-format -#@ woocommerce -msgid "%s review for %s" -msgid_plural "%s reviews for %s" -msgstr[0] "%s відгук для %s" -msgstr[1] "%s відгуків для %s" -msgstr[2] "%s відгуків для %s" - -#: templates/single-product-reviews.php:58 -#@ woocommerce -msgid " Previous" -msgstr " Назад" - -#: templates/single-product-reviews.php:59 -#@ woocommerce -msgid "Next " -msgstr "Вперед " - -#: templates/single-product-reviews.php:63 -#@ woocommerce -msgid "Add Your Review" -msgstr "Додати відгук" - -#: templates/single-product-reviews.php:63 -#@ woocommerce -msgid "Add Review" -msgstr "Додати відгук" - -#: templates/single-product-reviews.php:65 -#@ woocommerce -msgid "Add a review" -msgstr "Додати відгук" - -#: templates/single-product-reviews.php:69 -#@ woocommerce -msgid "Be the first to review" -msgstr "Залиште відгук першим" - -#: templates/single-product-reviews.php:71 -#@ woocommerce -msgid "There are no reviews yet, would you like to submit yours?" -msgstr "Ще немає жодного відгуку! Будьте першим хто напише свій та отримайте купон на знижку!" - -#: templates/single-product-reviews.php:89 -#@ woocommerce -msgid "Submit Review" -msgstr "Надіслати відгук" - -#: templates/single-product-reviews.php:96 -#@ woocommerce -msgid "Rating" -msgstr "Рейтинг" - -#: templates/single-product-reviews.php:97 -#@ woocommerce -msgid "Rate…" -msgstr "Оцінка…" - -#: templates/single-product-reviews.php:98 -#@ woocommerce -msgid "Perfect" -msgstr "Чудово" - -#: templates/single-product-reviews.php:99 -#@ woocommerce -msgid "Good" -msgstr "Добре" - -#: templates/single-product-reviews.php:100 -#@ woocommerce -msgid "Average" -msgstr "Середньо" - -#: templates/single-product-reviews.php:101 -#@ woocommerce -msgid "Not that bad" -msgstr "Погано" - -#: templates/single-product-reviews.php:102 -#@ woocommerce -msgid "Very Poor" -msgstr "Дуже погано" - -#: templates/single-product-reviews.php:107 -#@ woocommerce -msgid "Your Review" -msgstr "Ваш відгук" - -#: woocommerce-ajax.php:119 -#@ woocommerce -msgid "Sorry, your session has expired." -msgstr "Вибачте, Ваша сесія закінчилась." - -#: woocommerce-ajax.php:119 -#@ woocommerce -msgid "Return to homepage →" -msgstr "Повернутися на головну →" - -#: woocommerce-ajax.php:256 -#: woocommerce-ajax.php:290 -#: woocommerce-ajax.php:313 -#@ woocommerce -msgid "You do not have sufficient permissions to access this page." -msgstr "У Вас немає необхідних прав для доступу на цю сторінку." - -#: woocommerce-ajax.php:258 -#: woocommerce-ajax.php:291 -#: woocommerce-ajax.php:314 -#@ woocommerce -msgid "You have taken too long. Please go back and retry." -msgstr "Ви робили це занадто довго. Будь ласка поверніться і спробуйте ще раз." - -#: woocommerce-ajax.php:1100 -#@ woocommerce -msgid "No products had their stock reduced - they may not have stock management enabled." -msgstr "немає товарів кількість яких знизилась - можливо, у них не включена функція управління запасами?" - -#: woocommerce-ajax.php:1144 -#: woocommerce-ajax.php:1145 -#, php-format -#@ woocommerce -msgid "Item #%s stock increased from %s to %s." -msgstr "Кількість товару #%s на складі збільшилась з %s до %s." - -#: woocommerce-ajax.php:1152 -#@ woocommerce -msgid "No products had their stock increased - they may not have stock management enabled." -msgstr "немає товарів кількість яких збільшилась - можливо, у них не включена функція управління запасами?" - -#: woocommerce-ajax.php:1173 -#@ woocommerce -msgid "Value" -msgstr "Значення" - -#: woocommerce-core-functions.php:275 -#, php-format -#@ woocommerce -msgid "%s – %s%s" -msgstr "%s – %s%s" - -#: woocommerce-core-functions.php:698 -#@ woocommerce -msgid "Australian Dollars" -msgstr "Австралійський долар" - -#: woocommerce-core-functions.php:699 -#@ woocommerce -msgid "Brazilian Real" -msgstr "Бразильський реал" - -#: woocommerce-core-functions.php:700 -#@ woocommerce -msgid "Canadian Dollars" -msgstr "Канадський долар" - -#: woocommerce-core-functions.php:701 -#@ woocommerce -msgid "Chinese Yuan" -msgstr "Китайська ієна" - -#: woocommerce-core-functions.php:702 -#@ woocommerce -msgid "Czech Koruna" -msgstr "Чеська крона" - -#: woocommerce-core-functions.php:703 -#@ woocommerce -msgid "Danish Krone" -msgstr "Дацька крона" - -#: woocommerce-core-functions.php:704 -#@ woocommerce -msgid "Euros" -msgstr "Євро" - -#: woocommerce-core-functions.php:705 -#@ woocommerce -msgid "Hong Kong Dollar" -msgstr "Гонконгський долар" - -#: woocommerce-core-functions.php:706 -#@ woocommerce -msgid "Hungarian Forint" -msgstr "Угорський форинт" - -#: woocommerce-core-functions.php:707 -#@ woocommerce -msgid "Indonesia Rupiah" -msgstr "Індонезійська рупія" - -#: woocommerce-core-functions.php:708 -#@ woocommerce -msgid "Indian Rupee" -msgstr "Індійська рупія" - -#: woocommerce-core-functions.php:709 -#@ woocommerce -msgid "Israeli Shekel" -msgstr "Ізраїльський шекель" - -#: woocommerce-core-functions.php:710 -#@ woocommerce -msgid "Japanese Yen" -msgstr "Японська ієна" - -#: woocommerce-core-functions.php:711 -#@ woocommerce -msgid "South Korean Won" -msgstr "Південнокорейська вона" - -#: woocommerce-core-functions.php:712 -#@ woocommerce -msgid "Malaysian Ringgits" -msgstr "Малайзійський рінггіт" - -#: woocommerce-core-functions.php:713 -#@ woocommerce -msgid "Mexican Peso" -msgstr "Мексиканське песо" - -#: woocommerce-core-functions.php:714 -#@ woocommerce -msgid "Norwegian Krone" -msgstr "Норвезька крона" - -#: woocommerce-core-functions.php:715 -#@ woocommerce -msgid "New Zealand Dollar" -msgstr "Новозеландський долар" - -#: woocommerce-core-functions.php:716 -#@ woocommerce -msgid "Philippine Pesos" -msgstr "Філіппінське песо" - -#: woocommerce-core-functions.php:717 -#@ woocommerce -msgid "Polish Zloty" -msgstr "Польський злотий" - -#: woocommerce-core-functions.php:718 -#@ woocommerce -msgid "Pounds Sterling" -msgstr "Фунти стерлінгів" - -#: woocommerce-core-functions.php:719 -#@ woocommerce -msgid "Romanian Leu" -msgstr "Румунський лей" - -#: woocommerce-core-functions.php:721 -#@ woocommerce -msgid "Singapore Dollar" -msgstr "Сінгапурський долар" - -#: woocommerce-core-functions.php:722 -#@ woocommerce -msgid "South African rand" -msgstr "Південно-африканський ранд" - -#: woocommerce-core-functions.php:723 -#@ woocommerce -msgid "Swedish Krona" -msgstr "Шведська крона" - -#: woocommerce-core-functions.php:724 -#@ woocommerce -msgid "Swiss Franc" -msgstr "Швейцарський франк" - -#: woocommerce-core-functions.php:725 -#@ woocommerce -msgid "Taiwan New Dollars" -msgstr "Новий тайванський долар" - -#: woocommerce-core-functions.php:726 -#@ woocommerce -msgid "Thai Baht" -msgstr "Тайський бат" - -#: woocommerce-core-functions.php:727 -#@ woocommerce -msgid "Turkish Lira" -msgstr "Турецька ліра" - -#: woocommerce-core-functions.php:728 -#@ woocommerce -msgid "US Dollars" -msgstr "Долари США" - -#: woocommerce-core-functions.php:1223 -#: woocommerce-core-functions.php:1249 -#@ woocommerce -msgid "Download Permissions Granted" -msgstr "Дозволи на закачування надані" - -#: woocommerce-core-functions.php:1373 -#@ woocommerce -msgctxt "slug" -msgid "uncategorized" -msgstr "Некатегорієзована" - -#: woocommerce-core-functions.php:1566 -#@ woocommerce -msgid "Select a category" -msgstr "Оберіть категорію" - -#: woocommerce-core-functions.php:1570 -#@ woocommerce -msgid "Uncategorized" -msgstr "Без категорії" - -#: woocommerce-core-functions.php:1942 -#@ woocommerce -msgid "Customer" -msgstr "Клієнт" - -#: woocommerce-core-functions.php:1949 -#@ woocommerce -msgid "Shop Manager" -msgstr "Менеджер магазину" - -#: woocommerce-core-functions.php:2506 -#@ woocommerce -msgid "Unpaid order cancelled - time limit reached." -msgstr "Неоплачене замовлення скасоване - вийшов час." - -#: woocommerce-functions.php:226 -#: woocommerce-functions.php:271 -#@ woocommerce -msgid "Cart updated." -msgstr "Кошик оновлено." - -#: woocommerce-functions.php:257 -#, php-format -#@ woocommerce -msgid "You can only have 1 %s in your cart." -msgstr "Допускається лише 1 %s на кошик." - -#: woocommerce-functions.php:315 -#: woocommerce-functions.php:373 -#@ woocommerce -msgid "Please choose product options…" -msgstr "Будь ласка оберіть опції товару…" - -#: woocommerce-functions.php:406 -#@ woocommerce -msgid "Please choose the quantity of items you wish to add to your cart…" -msgstr "Будь ласка оберіть кількість товару, яку ви бажаєте додати до кошика…" - -#: woocommerce-functions.php:413 -#@ woocommerce -msgid "Please choose a product to add to your cart…" -msgstr "Будь ласка оберіть товар, який Ви бажаєте додати до кошика…" - -#: woocommerce-functions.php:482 -#, php-format -#@ woocommerce -msgid "Added "%s" to your cart." -msgstr "Додано "%s" у Ваш кошик." - -#: woocommerce-functions.php:482 -#@ woocommerce -msgid "" and "" -msgstr "" і "" - -#: woocommerce-functions.php:485 -#, php-format -#@ woocommerce -msgid ""%s" was successfully added to your cart." -msgstr ""%s" було успішно додано до Вашого кошика." - -#: woocommerce-functions.php:493 -#@ woocommerce -msgid "Continue Shopping →" -msgstr "Продовжити покупки →" - -#: woocommerce-functions.php:664 -#@ woocommerce -msgid "Username is required." -msgstr "Потрібне ім'я користувача." - -#: woocommerce-functions.php:666 -#: woocommerce-functions.php:758 -#@ woocommerce -msgid "Password is required." -msgstr "Потрібен пароль." - -#: woocommerce-functions.php:732 -#@ woocommerce -msgid "Please enter a username." -msgstr "Будь ласка, введіть ім'я користувача." - -#: woocommerce-functions.php:734 -#@ woocommerce -msgid "This username is invalid because it uses illegal characters. Please enter a valid username." -msgstr "Невірне ім'я користувача, тому-що використані недопустимі символи. Будь ласка введіть вірне ім'я користувача." - -#: woocommerce-functions.php:737 -#@ woocommerce -msgid "This username is already registered, please choose another one." -msgstr "Таке ім'я вже зайняте, будь ласка оберіть інше ім'я користувача." - -#: woocommerce-functions.php:749 -#@ woocommerce -msgid "Please type your e-mail address." -msgstr "Будь ласка, введіть свою адресу електронної пошти." - -#: woocommerce-functions.php:751 -#@ woocommerce -msgid "The email address isn’t correct." -msgstr "Невірна адреса електронної пошти." - -#: woocommerce-functions.php:754 -#@ woocommerce -msgid "This email is already registered, please choose another one." -msgstr "Цей email вже зайнятий, будь ласка оберіть інший." - -#: woocommerce-functions.php:759 -#@ woocommerce -msgid "Re-enter your password." -msgstr "Введіть пароль ще раз." - -#: woocommerce-functions.php:764 -#@ woocommerce -msgid "Anti-spam field was filled in." -msgstr "Анти-спам поле було заповнене." - -#: woocommerce-functions.php:872 -#@ woocommerce -msgid "The cart has been filled with the items from your previous order." -msgstr "У кошик було додано товари з Вашого попереднього замовлення." - -#: woocommerce-functions.php:898 -#@ woocommerce -msgid "Order cancelled by customer." -msgstr "Замовлення відмінене клієнтом." - -#: woocommerce-functions.php:901 -#@ woocommerce -msgid "Your order was cancelled." -msgstr "Ваше замовлення було відмінене." - -#: woocommerce-functions.php:907 -#@ woocommerce -msgid "Your order is no longer pending and could not be cancelled. Please contact us if you need assistance." -msgstr "Ваше замовлення вже не відкладене і не може бути скасоване. Будь ласка, зв'яжіться з нами, якщо вам потрібна допомога." - -#: woocommerce-functions.php:942 -#@ woocommerce -msgid "Invalid email address." -msgstr "Неправильна адреса електронної пошти." - -#: woocommerce-functions.php:942 -#: woocommerce-functions.php:965 -#: woocommerce-functions.php:985 -#: woocommerce-functions.php:991 -#: woocommerce-functions.php:995 -#: woocommerce-functions.php:998 -#: woocommerce-functions.php:1028 -#: woocommerce-functions.php:1160 -#@ woocommerce -msgid "Go to homepage →" -msgstr "Перейти на головну сторінку →" - -#: woocommerce-functions.php:965 -#@ woocommerce -msgid "Invalid download." -msgstr "Невірне скачування." - -#: woocommerce-functions.php:977 -#@ woocommerce -msgid "You must be logged in to download files." -msgstr "Ви повинні увійти в систему для завантаження файлів." - -#: woocommerce-functions.php:977 -#@ woocommerce -msgid "Login →" -msgstr "Увійти →" - -#: woocommerce-functions.php:980 -#@ woocommerce -msgid "This is not your download link." -msgstr "Це не ваша посилання для завантаження." - -#: woocommerce-functions.php:985 -#@ woocommerce -msgid "Product no longer exists." -msgstr "Такого товару більше не існує." - -#: woocommerce-functions.php:995 -#@ woocommerce -msgid "Sorry, you have reached your download limit for this file" -msgstr "На жаль, ви досягнули ліміту завантажень для цього файлу" - -#: woocommerce-functions.php:998 -#@ woocommerce -msgid "Sorry, this download has expired" -msgstr "На жаль, час цього завантаження закінчився." - -#: woocommerce-functions.php:1028 -#@ woocommerce -msgid "No file defined" -msgstr "Файли не визначені" - -#: woocommerce-functions.php:1160 -#@ woocommerce -msgid "File not found" -msgstr "Файл не знайдено" - -#: woocommerce-functions.php:1276 -#@ woocommerce -msgid "New products" -msgstr "Нові товари" - -#: woocommerce-functions.php:1284 -#, php-format -#@ woocommerce -msgid "New products added to %s" -msgstr "Нові товари додано до %s" - -#: woocommerce-functions.php:1292 -#, php-format -#@ woocommerce -msgid "New products tagged %s" -msgstr "Нові товари помічені %s" - -#: woocommerce-functions.php:1330 -#@ woocommerce -msgid "You have taken too long. Please go back and refresh the page." -msgstr "Занадто довго. Будь ласка поверніться і обновіть сторінку." - -#: woocommerce-functions.php:1333 -#@ woocommerce -msgid "Please rate the product." -msgstr "Будь ласка, оцініть цей товар." - -#: woocommerce-functions.php:1641 -#@ woocommerce -msgid "Password changed successfully." -msgstr "Пароль успішно змінений." - -#: woocommerce-functions.php:1717 -#@ woocommerce -msgid "Address changed successfully." -msgstr "Адреса успішно змінена." - -#: woocommerce-template.php:219 -#, php-format -#@ woocommerce -msgid "Search Results: “%s”" -msgstr "Результати пошуку: “%s”" - -#: woocommerce-template.php:222 -#, php-format -#@ woocommerce -msgid " – Page %s" -msgstr " – сторінка %s" - -#: woocommerce-template.php:767 -#, php-format -#@ woocommerce -msgid "Reviews (%d)" -msgstr "Відгуки (%d)" - -#: woocommerce-template.php:993 -#@ woocommerce -msgctxt "breadcrumb" -msgid "Home" -msgstr "Головна" - -#: woocommerce-template.php:1292 -#: woocommerce.php:1209 -#@ woocommerce -msgid "required" -msgstr "необхідний(-а)" - -#: woocommerce-template.php:1341 -#@ woocommerce -msgid "Update country" -msgstr "Оновити країну" - -#: woocommerce-template.php:1496 -#@ woocommerce -msgid "Search for:" -msgstr "Пошук:" - -#: woocommerce-template.php:1497 -#@ woocommerce -msgid "Search for products" -msgstr "Пошук товарів" - -#. translators: plugin header field 'PluginURI' -#: woocommerce.php:0 -#@ woocommerce -msgid "http://www.woothemes.com/woocommerce/" -msgstr "http://www.woothemes.com/woocommerce/" - -#. translators: plugin header field 'Description' -#: woocommerce.php:0 -#@ woocommerce -msgid "An e-commerce toolkit that helps you sell anything. Beautifully." -msgstr "Інструментарій електронної комерції, який допоможе вам продати будь-що. Красиво." - -#. translators: plugin header field 'Author' -#: woocommerce.php:0 -#@ woocommerce -msgid "WooThemes" -msgstr "WooThemes" - -#. translators: plugin header field 'AuthorURI' -#: woocommerce.php:0 -#@ woocommerce -msgid "http://woothemes.com" -msgstr "http://woothemes.com" - -#: woocommerce.php:172 -#@ woocommerce -msgid "Premium Support" -msgstr "Преміум підтримка" - -#: woocommerce.php:825 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Categories" -msgstr "Категорії" - -#: woocommerce.php:826 -#@ woocommerce -msgid "Search Product Categories" -msgstr "Пошук у категоріях товарів" - -#: woocommerce.php:827 -#@ woocommerce -msgid "All Product Categories" -msgstr "Всі категорії товарів" - -#: woocommerce.php:828 -#@ woocommerce -msgid "Parent Product Category" -msgstr "Батьківська категорія товарів" - -#: woocommerce.php:829 -#@ woocommerce -msgid "Parent Product Category:" -msgstr "Категорія батьківського продкту:" - -#: woocommerce.php:830 -#@ woocommerce -msgid "Edit Product Category" -msgstr "Редагувати категорію товарів" - -#: woocommerce.php:831 -#@ woocommerce -msgid "Update Product Category" -msgstr "Оновити категорію товарів" - -#: woocommerce.php:832 -#@ woocommerce -msgid "Add New Product Category" -msgstr "Додати нову категорію товарів" - -#: woocommerce.php:833 -#@ woocommerce -msgid "New Product Category Name" -msgstr "Назва нової категорії товарів" - -#: woocommerce.php:861 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Tags" -msgstr "Мітки" - -#: woocommerce.php:862 -#@ woocommerce -msgid "Search Product Tags" -msgstr "Пошук міток товару" - -#: woocommerce.php:863 -#@ woocommerce -msgid "All Product Tags" -msgstr "Мітки всіх товарів" - -#: woocommerce.php:864 -#@ woocommerce -msgid "Parent Product Tag" -msgstr "Мітка батьківського товару" - -#: woocommerce.php:865 -#@ woocommerce -msgid "Parent Product Tag:" -msgstr "Мітка батьківського товру:" - -#: woocommerce.php:866 -#@ woocommerce -msgid "Edit Product Tag" -msgstr "Редагувати мітку товару" - -#: woocommerce.php:867 -#@ woocommerce -msgid "Update Product Tag" -msgstr "Оновити мітку товару" - -#: woocommerce.php:868 -#@ woocommerce -msgid "Add New Product Tag" -msgstr "Додати нову мітку товару" - -#: woocommerce.php:869 -#@ woocommerce -msgid "New Product Tag Name" -msgstr "Назва нової мітки товару" - -#: woocommerce.php:888 -#: woocommerce.php:890 -#@ woocommerce -msgid "Shipping Classes" -msgstr "Класи доставки" - -#: woocommerce.php:892 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Shipping Classes" -msgstr "Класи доставки" - -#: woocommerce.php:893 -#@ woocommerce -msgid "Search Shipping Classes" -msgstr "Пошук класів доставки" - -#: woocommerce.php:894 -#@ woocommerce -msgid "All Shipping Classes" -msgstr "Всі класи доставки" - -#: woocommerce.php:895 -#@ woocommerce -msgid "Parent Shipping Class" -msgstr "Батьківський клас доставки" - -#: woocommerce.php:896 -#@ woocommerce -msgid "Parent Shipping Class:" -msgstr "Батьківський клас доставки:" - -#: woocommerce.php:897 -#@ woocommerce -msgid "Edit Shipping Class" -msgstr "Редагувати клас доставки" - -#: woocommerce.php:898 -#@ woocommerce -msgid "Update Shipping Class" -msgstr "Оновити клас доставки" - -#: woocommerce.php:899 -#@ woocommerce -msgid "Add New Shipping Class" -msgstr "Додати новий клас доставки" - -#: woocommerce.php:900 -#@ woocommerce -msgid "New Shipping Class Name" -msgstr "Назва нового класу доставки" - -#: woocommerce.php:948 -#@ woocommerce -msgid "All" -msgstr "Всі" - -#: woocommerce.php:949 -#: woocommerce.php:950 -#@ woocommerce -msgid "Parent" -msgstr "Батьківський" - -#: woocommerce.php:953 -#@ woocommerce -msgid "Add New" -msgstr "Додати новий" - -#: woocommerce.php:954 -#@ woocommerce -msgid "New" -msgstr "Новий" - -#: woocommerce.php:984 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Products" -msgstr "Товари" - -#: woocommerce.php:985 -#@ woocommerce -msgid "Add Product" -msgstr "Додати товар" - -#: woocommerce.php:986 -#@ woocommerce -msgid "Add New Product" -msgstr "Додати новий товар" - -#: woocommerce.php:988 -#@ woocommerce -msgid "Edit Product" -msgstr "Редагувати товар" - -#: woocommerce.php:989 -#@ woocommerce -msgid "New Product" -msgstr "Новий товар" - -#: woocommerce.php:990 -#: woocommerce.php:991 -#@ woocommerce -msgid "View Product" -msgstr "Переглянути товар" - -#: woocommerce.php:992 -#@ woocommerce -msgid "Search Products" -msgstr "Пошук товарів" - -#: woocommerce.php:993 -#@ woocommerce -msgid "No Products found" -msgstr "Жодного товару не знайдено" - -#: woocommerce.php:994 -#@ woocommerce -msgid "No Products found in trash" -msgstr "Жодного товару у смітнику не знайдено" - -#: woocommerce.php:995 -#@ woocommerce -msgid "Parent Product" -msgstr "Головний товар" - -#: woocommerce.php:997 -#@ woocommerce -msgid "This is where you can add new products to your store." -msgstr "Тут ви можете додати новий товар у Ваш магазин." - -#: woocommerce.php:1021 -#@ woocommerce -msgid "Variation" -msgstr "Варіант" - -#: woocommerce.php:1023 -#@ woocommerce -msgid "Add New Variation" -msgstr "Додати новий варіант" - -#: woocommerce.php:1025 -#@ woocommerce -msgid "Edit Variation" -msgstr "Редагувати варіант" - -#: woocommerce.php:1026 -#@ woocommerce -msgid "New Variation" -msgstr "Новий варіант" - -#: woocommerce.php:1027 -#: woocommerce.php:1028 -#@ woocommerce -msgid "View Variation" -msgstr "Переглянути варіан" - -#: woocommerce.php:1029 -#@ woocommerce -msgid "Search Variations" -msgstr "Пошук варіантів" - -#: woocommerce.php:1030 -#@ woocommerce -msgid "No Variations found" -msgstr "Варіантів не знайдено" - -#: woocommerce.php:1031 -#@ woocommerce -msgid "No Variations found in trash" -msgstr "У смітнику варіантів не знайдено" - -#: woocommerce.php:1032 -#@ woocommerce -msgid "Parent Variation" -msgstr "Батьківський варіант" - -#: woocommerce.php:1060 -#@ woocommerce -msgid "Add Order" -msgstr "Додати замовлення" - -#: woocommerce.php:1061 -#@ woocommerce -msgid "Add New Order" -msgstr "Додати нове замовлення" - -#: woocommerce.php:1063 -#@ woocommerce -msgid "Edit Order" -msgstr "Редагувати замовлення" - -#: woocommerce.php:1064 -#@ woocommerce -msgid "New Order" -msgstr "Нове замовлення" - -#: woocommerce.php:1067 -#@ woocommerce -msgid "Search Orders" -msgstr "Пошук замовлень" - -#: woocommerce.php:1068 -#@ woocommerce -msgid "No Orders found" -msgstr "Замовлень не знайдено" - -#: woocommerce.php:1069 -#@ woocommerce -msgid "No Orders found in trash" -msgstr "Жодного замовлення у смітнику не знайдено" - -#: woocommerce.php:1070 -#@ woocommerce -msgid "Parent Orders" -msgstr "Головне замовлення" - -#: woocommerce.php:1073 -#@ woocommerce -msgid "This is where store orders are stored." -msgstr "Тут зберігаються замовелння магазину." - -#: woocommerce.php:1097 -#@ woocommerce -msgctxt "Admin menu name" -msgid "Coupons" -msgstr "Купони" - -#: woocommerce.php:1098 -#@ woocommerce -msgid "Add Coupon" -msgstr "Додати купон" - -#: woocommerce.php:1099 -#@ woocommerce -msgid "Add New Coupon" -msgstr "Додати новий купон" - -#: woocommerce.php:1101 -#@ woocommerce -msgid "Edit Coupon" -msgstr "Редагувати купон" - -#: woocommerce.php:1102 -#@ woocommerce -msgid "New Coupon" -msgstr "Новий купон" - -#: woocommerce.php:1103 -#@ woocommerce -msgid "View Coupons" -msgstr "Переглянути купони" - -#: woocommerce.php:1104 -#@ woocommerce -msgid "View Coupon" -msgstr "Переглянути купон" - -#: woocommerce.php:1105 -#@ woocommerce -msgid "Search Coupons" -msgstr "Пошук купонів" - -#: woocommerce.php:1106 -#@ woocommerce -msgid "No Coupons found" -msgstr "Купонів не знайдено" - -#: woocommerce.php:1107 -#@ woocommerce -msgid "No Coupons found in trash" -msgstr "У смітнику купонві не знайдено" - -#: woocommerce.php:1108 -#@ woocommerce -msgid "Parent Coupon" -msgstr "Головний купон" - -#: woocommerce.php:1110 -#@ woocommerce -msgid "This is where you can add new coupons that customers can use in your store." -msgstr "У цьому місці ви можете додати купони, які будуть використовуватись покупцями Вашого магазину." - -#: woocommerce.php:1206 -#@ woocommerce -msgid "Select an option…" -msgstr "Оберіть варіант…" - -#: woocommerce.php:1207 -#@ woocommerce -msgid "Please select a rating" -msgstr "Оберіть рейтинг" - -#: woocommerce.php:1208 -#@ woocommerce -msgid "Sorry, no products matched your selection. Please choose a different combination." -msgstr "Нам шкода, але жоден з товарів не відповідає вашому запиту. Будь ласка оберіть іншу комбінацію." - -#: woocommerce.php:1691 -#@ woocommerce -msgid "Cart % Discount" -msgstr "Знижка по кошику у %" - -#: woocommerce.php:1692 -#@ woocommerce -msgid "Product Discount" -msgstr "Знижка на товар" - -#: woocommerce.php:1693 -#@ woocommerce -msgid "Product % Discount" -msgstr "Знижка по товару у %" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -#@ woocommerce -msgid "Email restrictions" -msgstr "" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -#@ woocommerce -msgid "No restrictions" -msgstr "Немає обмежень" - -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -#@ woocommerce -msgid "List of emails to check against the customer's billing email when an order is placed." -msgstr "" - -#: classes/shortcodes/class-wc-shortcode-checkout.php:45 -#, php-format -#@ woocommerce -msgid "WooCommerce Config Error: The checkout thanks/pay pages are missing - these pages are required for the checkout to function correctly. Please configure the pages here." -msgstr "" - -#: woocommerce-core-functions.php:720 -#@ woocommerce -msgid "Russian Ruble" -msgstr "Російський рубль" - -#: woocommerce-functions.php:664 -#: woocommerce-functions.php:666 -#: woocommerce-functions.php:674 -#@ woocommerce -msgid "Error" -msgstr "Помилка" - -#: woocommerce-functions.php:674 -#@ woocommerce -msgid "A user could not be found with this email address." -msgstr "Немає користувача з цією адресою електронної пошти." - -#: admin/woocommerce-admin-status.php:418 -#@ woocommerce -msgid "Theme" -msgstr "" - -#: admin/woocommerce-admin-status.php:424 -#@ woocommerce -msgid "Theme Name" -msgstr "" - -#: admin/woocommerce-admin-status.php:431 -#@ woocommerce -msgid "Theme Version" -msgstr "" - -#: admin/woocommerce-admin-status.php:437 -#@ woocommerce -msgid "Author URL" -msgstr "" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:679 -#, php-format -#@ woocommerce -msgid "Payment pending: %s" -msgstr "" - -#: i18n/states/ES.php:13 -#@ woocommerce -msgid "A Coruña" -msgstr "" - -#: i18n/states/ES.php:14 -#@ woocommerce -msgid "Álava" -msgstr "" - -#: i18n/states/ES.php:15 -#@ woocommerce -msgid "Albacete" -msgstr "" - -#: i18n/states/ES.php:16 -#@ woocommerce -msgid "Alicante" -msgstr "" - -#: i18n/states/ES.php:17 -#@ woocommerce -msgid "Almería" -msgstr "" - -#: i18n/states/ES.php:18 -#@ woocommerce -msgid "Asturias" -msgstr "" - -#: i18n/states/ES.php:19 -#@ woocommerce -msgid "Ávila" -msgstr "" - -#: i18n/states/ES.php:20 -#@ woocommerce -msgid "Badajoz" -msgstr "" - -#: i18n/states/ES.php:21 -#@ woocommerce -msgid "Baleares" -msgstr "" - -#: i18n/states/ES.php:22 -#@ woocommerce -msgid "Barcelona" -msgstr "" - -#: i18n/states/ES.php:23 -#@ woocommerce -msgid "Burgos" -msgstr "" - -#: i18n/states/ES.php:24 -#@ woocommerce -msgid "Cáceres" -msgstr "" - -#: i18n/states/ES.php:25 -#@ woocommerce -msgid "Cádiz" -msgstr "" - -#: i18n/states/ES.php:26 -#@ woocommerce -msgid "Cantabria" -msgstr "" - -#: i18n/states/ES.php:27 -#@ woocommerce -msgid "Castellón" -msgstr "" - -#: i18n/states/ES.php:28 -#@ woocommerce -msgid "Ceuta" -msgstr "" - -#: i18n/states/ES.php:29 -#@ woocommerce -msgid "Ciudad Real" -msgstr "" - -#: i18n/states/ES.php:30 -#@ woocommerce -msgid "Córdoba" -msgstr "" - -#: i18n/states/ES.php:31 -#@ woocommerce -msgid "Cuenca" -msgstr "" - -#: i18n/states/ES.php:32 -#@ woocommerce -msgid "Girona" -msgstr "" - -#: i18n/states/ES.php:33 -#@ woocommerce -msgid "Granada" -msgstr "" - -#: i18n/states/ES.php:34 -#@ woocommerce -msgid "Guadalajara" -msgstr "" - -#: i18n/states/ES.php:35 -#@ woocommerce -msgid "Guipúzcoa" -msgstr "" - -#: i18n/states/ES.php:36 -#@ woocommerce -msgid "Huelva" -msgstr "" - -#: i18n/states/ES.php:37 -#@ woocommerce -msgid "Huesca" -msgstr "" - -#: i18n/states/ES.php:38 -#@ woocommerce -msgid "Jaén" -msgstr "" - -#: i18n/states/ES.php:39 -#@ woocommerce -msgid "La Rioja" -msgstr "" - -#: i18n/states/ES.php:40 -#@ woocommerce -msgid "Las Palmas" -msgstr "" - -#: i18n/states/ES.php:41 -#@ woocommerce -msgid "León" -msgstr "" - -#: i18n/states/ES.php:42 -#@ woocommerce -msgid "Lleida" -msgstr "" - -#: i18n/states/ES.php:43 -#@ woocommerce -msgid "Lugo" -msgstr "" - -#: i18n/states/ES.php:44 -#@ woocommerce -msgid "Madrid" -msgstr "" - -#: i18n/states/ES.php:45 -#@ woocommerce -msgid "Málaga" -msgstr "" - -#: i18n/states/ES.php:46 -#@ woocommerce -msgid "Melilla" -msgstr "" - -#: i18n/states/ES.php:47 -#@ woocommerce -msgid "Murcia" -msgstr "" - -#: i18n/states/ES.php:48 -#@ woocommerce -msgid "Navarra" -msgstr "" - -#: i18n/states/ES.php:49 -#@ woocommerce -msgid "Ourense" -msgstr "" - -#: i18n/states/ES.php:50 -#@ woocommerce -msgid "Palencia" -msgstr "" - -#: i18n/states/ES.php:51 -#@ woocommerce -msgid "Pontevedra" -msgstr "" - -#: i18n/states/ES.php:52 -#@ woocommerce -msgid "Salamanca" -msgstr "" - -#: i18n/states/ES.php:53 -#@ woocommerce -msgid "Santa Cruz de Tenerife" -msgstr "" - -#: i18n/states/ES.php:54 -#@ woocommerce -msgid "Segovia" -msgstr "" - -#: i18n/states/ES.php:55 -#@ woocommerce -msgid "Sevilla" -msgstr "" - -#: i18n/states/ES.php:56 -#@ woocommerce -msgid "Soria" -msgstr "" - -#: i18n/states/ES.php:57 -#@ woocommerce -msgid "Tarragona" -msgstr "" - -#: i18n/states/ES.php:58 -#@ woocommerce -msgid "Teruel" -msgstr "" - -#: i18n/states/ES.php:59 -#@ woocommerce -msgid "Toledo" -msgstr "" - -#: i18n/states/ES.php:60 -#@ woocommerce -msgid "Valencia" -msgstr "" - -#: i18n/states/ES.php:61 -#@ woocommerce -msgid "Valladolid" -msgstr "" - -#: i18n/states/ES.php:62 -#@ woocommerce -msgid "Vizcaya" -msgstr "" - -#: i18n/states/ES.php:63 -#@ woocommerce -msgid "Zamora" -msgstr "" - -#: i18n/states/ES.php:64 -#@ woocommerce -msgid "Zaragoza" -msgstr "" - -#. translators: plugin header field 'Version' -#: woocommerce.php:0 -#@ woocommerce -msgid "2.0.13" -msgstr "" - -#: woocommerce-core-functions.php:729 -#@ woocommerce -msgid "Ukrainian hryvna" -msgstr "Українська гривня" - diff --git a/i18n/languages/woocommerce-zh_CN.mo b/i18n/languages/woocommerce-zh_CN.mo deleted file mode 100755 index 921f4c5248b..00000000000 Binary files a/i18n/languages/woocommerce-zh_CN.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-zh_CN.po b/i18n/languages/woocommerce-zh_CN.po deleted file mode 100755 index 19c6867e508..00000000000 --- a/i18n/languages/woocommerce-zh_CN.po +++ /dev/null @@ -1,6707 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce 2.0.9 Front-end\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-04-29 16:02:06+00:00\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"PO-Revision-Date: 2013-08-29 17:20+0800\n" -"Last-Translator: whw \n" -"Language-Team: Comodo \n" -"X-Generator: Poedit 1.5.7\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"Language: zh_cn\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" -"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" -"X-Poedit-Basepath: ../\n" -"X-Poedit-SearchPath-0: .\n" - -#: assets/js/admin/editor_plugin_lang.php:5 -msgid "Insert Shortcode" -msgstr "插入图像" - -#: assets/js/admin/editor_plugin_lang.php:6 -msgid "Product price/cart button" -msgstr "产品成功添加到你的购物车。" - -#: assets/js/admin/editor_plugin_lang.php:7 -msgid "Product by SKU/ID" -msgstr "产品编码为必填项" - -#: assets/js/admin/editor_plugin_lang.php:8 -msgid "Products by SKU/ID" -msgstr "为产品启用编码字段" - -#: assets/js/admin/editor_plugin_lang.php:9 -msgid "Product categories" -msgstr "产品类别" - -#: assets/js/admin/editor_plugin_lang.php:10 -msgid "Products by category slug" -msgstr "商品分类小工具" - -#: assets/js/admin/editor_plugin_lang.php:11 -msgid "Recent products" -msgstr "WooCommerce最新产品" - -#: assets/js/admin/editor_plugin_lang.php:12 -msgid "Featured products" -msgstr "特色产品" - -#: assets/js/admin/editor_plugin_lang.php:13 -msgid "Shop Messages" -msgstr "商店管理" - -#: assets/js/admin/editor_plugin_lang.php:14 -msgid "Pages" -msgstr "页面" - -#: assets/js/admin/editor_plugin_lang.php:15 -#: classes/widgets/class-wc-widget-cart.php:61 -msgid "Cart" -msgstr "购物车" - -#: assets/js/admin/editor_plugin_lang.php:16 -msgid "Checkout" -msgstr "结算" - -#: assets/js/admin/editor_plugin_lang.php:17 -msgid "Order tracking" -msgstr "订单跟踪" - -#: assets/js/admin/editor_plugin_lang.php:18 -#: templates/checkout/thankyou.php:30 -msgid "My Account" -msgstr "我的帐户" - -#: assets/js/admin/editor_plugin_lang.php:19 -msgid "Edit Address" -msgstr "编辑地址" - -#: assets/js/admin/editor_plugin_lang.php:20 -msgid "Change Password" -msgstr "修改密码" - -#: assets/js/admin/editor_plugin_lang.php:21 woocommerce.php:1065 -#: woocommerce.php:1066 -msgid "View Order" -msgstr "查看订单" - -#: assets/js/admin/editor_plugin_lang.php:22 -#: templates/checkout/thankyou.php:28 templates/myaccount/my-orders.php:71 -msgid "Pay" -msgstr "付款" - -#: assets/js/admin/editor_plugin_lang.php:23 -msgid "Thankyou" -msgstr "谢谢" - -#: classes/abstracts/abstract-wc-email.php:431 -#: classes/emails/class-wc-email-customer-completed-order.php:135 -#: classes/emails/class-wc-email-customer-invoice.php:138 -#: classes/emails/class-wc-email-new-order.php:115 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:63 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:57 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:122 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:120 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:76 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:75 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:50 -msgid "Enable/Disable" -msgstr "启用/禁用" - -#: classes/abstracts/abstract-wc-email.php:433 -#: classes/emails/class-wc-email-customer-completed-order.php:137 -#: classes/emails/class-wc-email-customer-invoice.php:140 -#: classes/emails/class-wc-email-new-order.php:117 -msgid "Enable this email notification" -msgstr "启用此送货方法" - -#: classes/abstracts/abstract-wc-email.php:437 -#: classes/emails/class-wc-email-customer-invoice.php:144 -msgid "Email subject" -msgstr "Email标题" - -#: classes/abstracts/abstract-wc-email.php:439 -#: classes/abstracts/abstract-wc-email.php:446 -#: classes/emails/class-wc-email-customer-completed-order.php:143 -#: classes/emails/class-wc-email-customer-completed-order.php:150 -#: classes/emails/class-wc-email-customer-completed-order.php:157 -#: classes/emails/class-wc-email-customer-completed-order.php:164 -#: classes/emails/class-wc-email-customer-invoice.php:146 -#: classes/emails/class-wc-email-customer-invoice.php:153 -#: classes/emails/class-wc-email-customer-invoice.php:160 -#: classes/emails/class-wc-email-customer-invoice.php:167 -msgid "Defaults to %s" -msgstr "默认的 %s" - -#: classes/abstracts/abstract-wc-email.php:444 -#: classes/emails/class-wc-email-customer-invoice.php:151 -msgid "Email heading" -msgstr "Email heading" - -#: classes/abstracts/abstract-wc-email.php:451 -#: classes/emails/class-wc-email-customer-completed-order.php:169 -#: classes/emails/class-wc-email-customer-invoice.php:172 -#: classes/emails/class-wc-email-new-order.php:142 -msgid "Email type" -msgstr "E-mail类型" - -#: classes/abstracts/abstract-wc-email.php:453 -#: classes/emails/class-wc-email-customer-completed-order.php:171 -#: classes/emails/class-wc-email-customer-invoice.php:174 -#: classes/emails/class-wc-email-new-order.php:144 -msgid "Choose which format of email to send." -msgstr "选择发送电子邮件格式." - -#: classes/abstracts/abstract-wc-email.php:457 -#: classes/emails/class-wc-email-customer-completed-order.php:175 -#: classes/emails/class-wc-email-customer-invoice.php:178 -#: classes/emails/class-wc-email-new-order.php:148 -msgid "Plain text" -msgstr "以纯文本粘贴" - -#: classes/abstracts/abstract-wc-email.php:458 -#: classes/emails/class-wc-email-customer-completed-order.php:176 -#: classes/emails/class-wc-email-customer-invoice.php:179 -#: classes/emails/class-wc-email-new-order.php:149 -msgid "HTML" -msgstr "编辑 HTML 源码" - -#: classes/abstracts/abstract-wc-email.php:459 -#: classes/emails/class-wc-email-customer-completed-order.php:177 -#: classes/emails/class-wc-email-customer-invoice.php:180 -#: classes/emails/class-wc-email-new-order.php:150 -msgid "Multipart" -msgstr "多媒体部分" - -#: classes/abstracts/abstract-wc-email.php:495 -#: classes/abstracts/abstract-wc-email.php:516 -msgid "Could not write to template file." -msgstr "无法写入模板文件." - -#: classes/abstracts/abstract-wc-email.php:543 -msgid "Template file copied to theme." -msgstr "模板文件已拷贝到主题." - -#: classes/abstracts/abstract-wc-email.php:552 -msgid "Template file deleted from theme." -msgstr "模板文件已从主题中删除." - -#: classes/abstracts/abstract-wc-email.php:560 -#: classes/abstracts/abstract-wc-integration.php:30 -#: classes/abstracts/abstract-wc-settings-api.php:39 woocommerce.php:170 -msgid "Settings" -msgstr "设置" - -#: classes/abstracts/abstract-wc-email.php:572 -msgid "HTML template" -msgstr "HTML模板" - -#: classes/abstracts/abstract-wc-email.php:573 -msgid "Plain text template" -msgstr "以纯文本粘贴" - -#: classes/abstracts/abstract-wc-email.php:592 -msgid "Delete template file" -msgstr "删除模板文件" - -#: classes/abstracts/abstract-wc-email.php:595 -msgid "" -"This template has been overridden by your theme and can be found in: " -"%s." -msgstr "此模板已被你的主题覆盖,在 %s查找." - -#: classes/abstracts/abstract-wc-email.php:610 -msgid "Copy file to theme" -msgstr "复制到一个新的草稿" - -#: classes/abstracts/abstract-wc-email.php:613 -msgid "" -"To override and edit this email template copy %s to your theme " -"folder: %s." -msgstr "修改或编辑这个电子邮件模板复制%s 到:%s." - -#: classes/abstracts/abstract-wc-email.php:624 -msgid "File was not found." -msgstr "文件找不到了。" - -#: classes/abstracts/abstract-wc-email.php:649 -msgid "View template" -msgstr "查看模板" - -#: classes/abstracts/abstract-wc-email.php:650 -msgid "Hide template" -msgstr "隐藏模板" - -#: classes/abstracts/abstract-wc-email.php:661 -msgid "Are you sure you want to delete this template file?" -msgstr "确定删除此模板?" - -#: classes/abstracts/abstract-wc-product.php:33 -msgid "" -"The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class " -"directly." -msgstr "" -"此WC_Product类是一个摘要(抽象),使用 get_product()直" -"接实例化产品,而不是调用摘要." - -#: classes/abstracts/abstract-wc-product.php:545 -#: classes/abstracts/abstract-wc-product.php:550 -#: classes/abstracts/abstract-wc-product.php:569 -msgid "In stock" -msgstr "有货" - -#: classes/abstracts/abstract-wc-product.php:550 -msgid "Only %s left in stock" -msgstr "库存仅剩 %s" - -#: classes/abstracts/abstract-wc-product.php:553 -msgid "%s in stock" -msgstr "库存%s件" - -#: classes/abstracts/abstract-wc-product.php:560 -msgid "(backorders allowed)" -msgstr "(延期发货获准)" - -#: classes/abstracts/abstract-wc-product.php:566 -#: classes/abstracts/abstract-wc-product.php:579 templates/cart/cart.php:76 -msgid "Available on backorder" -msgstr "可用的延迟发货" - -#: classes/abstracts/abstract-wc-product.php:572 -#: classes/abstracts/abstract-wc-product.php:582 -#: classes/abstracts/abstract-wc-product.php:586 -msgid "Out of stock" -msgstr "无货" - -#: classes/abstracts/abstract-wc-product.php:846 -#: classes/abstracts/abstract-wc-product.php:852 -#: classes/class-wc-cart.php:1801 classes/class-wc-order.php:891 -#: classes/class-wc-product-variable.php:274 -#: classes/class-wc-product-variable.php:283 -#: classes/class-wc-product-variation.php:246 -msgid "Free!" -msgstr "免费!" - -#: classes/abstracts/abstract-wc-product.php:870 -msgctxt "min_price" -msgid "From:" -msgstr "来自:" - -#: classes/abstracts/abstract-wc-product.php:959 -#: templates/single-product-reviews.php:28 -msgid "Rated %s out of 5" -msgstr "评分 %s 超出5" - -#: classes/abstracts/abstract-wc-product.php:961 -#: templates/single-product/review.php:27 -#: templates/single-product-reviews.php:28 -msgid "out of 5" -msgstr "超出5" - -#: classes/class-wc-cache-helper.php:92 -msgid "" -"In order for database caching to work with WooCommerce you " -"must add _wc_session_ to the \"Ignored Query Strings\" option " -"in W3 Total Cache settings here." -msgstr "" -"为了 WooCommerce 能使用 数据库缓存,你必须添加 " -"_wc_session_到 \"Ignored Query Strings\"选项 , W3 Total Cache设" -"置 here." - -#: classes/class-wc-cart.php:460 -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -"对不起,我们没有足够的 \"%s\"现货来满足你的订单(%s 有货).请编辑你的订单并重" -"试。给你造成的不便我们深表歉意。" - -#: classes/class-wc-cart.php:479 classes/class-wc-cart.php:488 -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfil your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -"对不起,我们没有足够的 \"%s\"现货来满足你的订单(%s 有货).请编辑你的订单并重" -"试。给你造成的不便我们深表歉意。" - -#: classes/class-wc-cart.php:523 -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfil your order right now. " -"Please try again in %d minutes or edit your cart and try again. We apologise " -"for any inconvenience caused." -msgstr "" -"对不起,您的订单中,我们 \"%s\"库存不足,请在 %d分钟后重试,或者在您的购物车内修" -"改所购商品,然后再试一次。造成的任何不便,我们深表歉意。" - -#: classes/class-wc-cart.php:533 -msgid "" -"Sorry, \"%s\" is not in stock. Please edit your cart and try again. We " -"apologise for any inconvenience caused." -msgstr "" -"对不起,\"%s\"缺货了,请修改购物车内所购商品,然后再试一次。造成的任何不便,我们" -"深表歉意。" - -#: classes/class-wc-cart.php:845 -msgid "Sorry, "%s" cannot be purchased." -msgstr "抱歉,不能更新此用户的信息。" - -#: classes/class-wc-cart.php:852 -msgid "" -"You cannot add "%s" to the cart because the product is out of " -"stock." -msgstr "你不能添加此产品到购物车,因为产品已脱销。" - -#: classes/class-wc-cart.php:857 -msgid "" -"You cannot add that amount of "%s" to the cart because there is " -"not enough stock (%s remaining)." -msgstr "你能购买的数量不能超过"%s" 因为我们的库存不足, (库存为%s)." - -#: classes/class-wc-cart.php:869 classes/class-wc-cart.php:883 -#: classes/class-wc-cart.php:891 templates/cart/mini-cart.php:68 -#: woocommerce-functions.php:497 woocommerce.php:1210 -msgid "View Cart →" -msgstr "查看购物车 →" - -#: classes/class-wc-cart.php:869 -msgid "You already have this item in your cart." -msgstr "在你的购物车已经有它了。" - -#: classes/class-wc-cart.php:883 classes/class-wc-cart.php:891 -msgid "" -"%s You cannot add that amount to the " -"cart — we have %s in stock and you already have %s in your cart." -msgstr "" -"%s你不能添加这么多数量到购物车 — 我" -"们库存只有 %s 但是你的购物车已经有%s ." - -#: classes/class-wc-cart.php:1813 -msgid "via" -msgstr "通过" - -#: classes/class-wc-checkout.php:64 -msgid "Account username" -msgstr "账户名" - -#: classes/class-wc-checkout.php:65 -msgctxt "placeholder" -msgid "Username" -msgstr "用户名" - -#: classes/class-wc-checkout.php:72 -msgid "Account password" -msgstr "账户密码" - -#: classes/class-wc-checkout.php:73 -msgctxt "placeholder" -msgid "Password" -msgstr "密码" - -#: classes/class-wc-checkout.php:79 -msgid "Confirm password" -msgstr "确认新密码" - -#: classes/class-wc-checkout.php:80 -msgctxt "placeholder" -msgid "Confirm password" -msgstr "确认新密码" - -#: classes/class-wc-checkout.php:89 -msgid "Order Notes" -msgstr "订单备注" - -#: classes/class-wc-checkout.php:90 -msgctxt "placeholder" -msgid "Notes about your order, e.g. special notes for delivery." -msgstr "为您的订单添加备注,例如:送货特别注意事项。" - -#: classes/class-wc-checkout.php:152 -msgid "Order – %s" -msgstr "添加订单" - -#: classes/class-wc-checkout.php:152 -msgctxt "Order date parsed by strftime" -msgid "%b %d, %Y @ %I:%M %p" -msgstr "%b %d, %Y @ %I:%M %p" - -#: classes/class-wc-checkout.php:278 -msgid "Backordered" -msgstr "延时交货" - -#: classes/class-wc-checkout.php:388 -msgid "" -"Sorry, your session has expired. Return to homepage →" -msgstr "对不起,会话超时。 返回首页 →" - -#: classes/class-wc-checkout.php:440 woocommerce-functions.php:1696 -msgid "is a required field." -msgstr "为必填项" - -#: classes/class-wc-checkout.php:453 -msgid "(%s) is not a valid postcode/ZIP." -msgstr "请输入一个有效的邮政编码。" - -#: classes/class-wc-checkout.php:474 -msgid "is not valid. Please enter one of the following:" -msgstr "无效。请按以下方法输入:" - -#: classes/class-wc-checkout.php:482 -msgid "is not a valid number." -msgstr "不是有效数字" - -#: classes/class-wc-checkout.php:489 -msgid "is not a valid email address." -msgstr "无效email 地址。" - -#: classes/class-wc-checkout.php:545 -msgid "Please enter an account username." -msgstr "请输入一个账户名。" - -#: classes/class-wc-checkout.php:549 -msgid "Invalid email/username." -msgstr "无效的Email/用户名" - -#: classes/class-wc-checkout.php:552 -msgid "" -"An account is already registered with that username. Please choose another." -msgstr "这个用户名已被注册,请用其它用户名注册。" - -#: classes/class-wc-checkout.php:562 -msgid "Please enter an account password." -msgstr "请输入一个账户密码。" - -#: classes/class-wc-checkout.php:565 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:83 -#: woocommerce-functions.php:758 woocommerce-functions.php:1626 -msgid "Passwords do not match." -msgstr "密码不匹配." - -#: classes/class-wc-checkout.php:569 -msgid "An account is already registered with your email address. Please login." -msgstr "这个账户的email 地址已被注册。请登录。" - -#: classes/class-wc-checkout.php:575 -msgid "You must accept our Terms & Conditions." -msgstr "你必须接受我们的条款及条件。" - -#: classes/class-wc-checkout.php:584 -msgid "Invalid shipping method." -msgstr "无效的送货方式。" - -#: classes/class-wc-checkout.php:597 -msgid "Invalid payment method." -msgstr "无效的支付方式。" - -#: classes/class-wc-checkout.php:637 woocommerce-functions.php:730 -#: woocommerce-functions.php:732 woocommerce-functions.php:735 -#: woocommerce-functions.php:747 woocommerce-functions.php:749 -#: woocommerce-functions.php:752 woocommerce-functions.php:786 -msgid "ERROR" -msgstr "错误" - -#: classes/class-wc-checkout.php:637 woocommerce-functions.php:786 -msgid "" -"Couldn’t register you… please contact us if you continue to " -"have problems." -msgstr "Couldn’t注册 you… 如果您还有其它任何问题,请联系我们." - -#: classes/class-wc-countries.php:37 -msgid "Afghanistan" -msgstr "阿富汗" - -#: classes/class-wc-countries.php:38 -msgid "Åland Islands" -msgstr "英属维尔京群岛" - -#: classes/class-wc-countries.php:39 -msgid "Albania" -msgstr "阿尔巴尼亚" - -#: classes/class-wc-countries.php:40 -msgid "Algeria" -msgstr "阿尔及利亚" - -#: classes/class-wc-countries.php:41 -msgid "Andorra" -msgstr "安道尔" - -#: classes/class-wc-countries.php:42 -msgid "Angola" -msgstr "安哥拉" - -#: classes/class-wc-countries.php:43 -msgid "Anguilla" -msgstr "安圭拉" - -#: classes/class-wc-countries.php:44 -msgid "Antarctica" -msgstr "南极洲" - -#: classes/class-wc-countries.php:45 -msgid "Antigua and Barbuda" -msgstr "安提瓜和巴布达" - -#: classes/class-wc-countries.php:46 -msgid "Argentina" -msgstr "阿根廷" - -#: classes/class-wc-countries.php:47 -msgid "Armenia" -msgstr "亚美尼亚" - -#: classes/class-wc-countries.php:48 -msgid "Aruba" -msgstr "阿鲁巴" - -#: classes/class-wc-countries.php:49 -msgid "Australia" -msgstr "澳大利亚" - -#: classes/class-wc-countries.php:50 -msgid "Austria" -msgstr "奥地利" - -#: classes/class-wc-countries.php:51 -msgid "Azerbaijan" -msgstr "阿塞拜疆" - -#: classes/class-wc-countries.php:52 -msgid "Bahamas" -msgstr "巴哈马" - -#: classes/class-wc-countries.php:53 -msgid "Bahrain" -msgstr "巴林" - -#: classes/class-wc-countries.php:54 -msgid "Bangladesh" -msgstr "孟加拉国" - -#: classes/class-wc-countries.php:55 -msgid "Barbados" -msgstr "巴巴多斯" - -#: classes/class-wc-countries.php:56 -msgid "Belarus" -msgstr "白俄罗斯" - -#: classes/class-wc-countries.php:57 -msgid "Belgium" -msgstr "比利时" - -#: classes/class-wc-countries.php:58 -msgid "Belau" -msgstr "Belau" - -#: classes/class-wc-countries.php:59 -msgid "Belize" -msgstr "伯利兹" - -#: classes/class-wc-countries.php:60 -msgid "Benin" -msgstr "贝宁" - -#: classes/class-wc-countries.php:61 -msgid "Bermuda" -msgstr "百慕大" - -#: classes/class-wc-countries.php:62 -msgid "Bhutan" -msgstr "不丹" - -#: classes/class-wc-countries.php:63 -msgid "Bolivia" -msgstr "玻利维亚" - -#: classes/class-wc-countries.php:64 -msgid "Bonaire, Saint Eustatius and Saba" -msgstr "Bonaire, Saint Eustatius and Saba" - -#: classes/class-wc-countries.php:65 -msgid "Bosnia and Herzegovina" -msgstr "波斯尼亚和黑塞哥维那" - -#: classes/class-wc-countries.php:66 -msgid "Botswana" -msgstr "博茨瓦纳" - -#: classes/class-wc-countries.php:67 -msgid "Bouvet Island" -msgstr "圣诞岛" - -#: classes/class-wc-countries.php:68 -msgid "Brazil" -msgstr "巴西" - -#: classes/class-wc-countries.php:69 -msgid "British Indian Ocean Territory" -msgstr "英属印度洋领地" - -#: classes/class-wc-countries.php:70 -msgid "British Virgin Islands" -msgstr "英属维尔京群岛" - -#: classes/class-wc-countries.php:71 -msgid "Brunei" -msgstr "文莱" - -#: classes/class-wc-countries.php:72 -msgid "Bulgaria" -msgstr "保加利亚" - -#: classes/class-wc-countries.php:73 -msgid "Burkina Faso" -msgstr "布基纳法索" - -#: classes/class-wc-countries.php:74 -msgid "Burundi" -msgstr "布隆迪" - -#: classes/class-wc-countries.php:75 -msgid "Cambodia" -msgstr "柬埔寨" - -#: classes/class-wc-countries.php:76 -msgid "Cameroon" -msgstr "喀麦隆" - -#: classes/class-wc-countries.php:77 -msgid "Canada" -msgstr "加拿大" - -#: classes/class-wc-countries.php:78 -msgid "Cape Verde" -msgstr "佛得角" - -#: classes/class-wc-countries.php:79 -msgid "Cayman Islands" -msgstr "开曼群岛" - -#: classes/class-wc-countries.php:80 -msgid "Central African Republic" -msgstr "中非共和国" - -#: classes/class-wc-countries.php:81 -msgid "Chad" -msgstr "乍得" - -#: classes/class-wc-countries.php:82 -msgid "Chile" -msgstr "智利" - -#: classes/class-wc-countries.php:83 -msgid "China" -msgstr "中国" - -#: classes/class-wc-countries.php:84 -msgid "Christmas Island" -msgstr "圣诞岛" - -#: classes/class-wc-countries.php:85 -msgid "Cocos (Keeling) Islands" -msgstr "科科斯(基林)群岛" - -#: classes/class-wc-countries.php:86 -msgid "Colombia" -msgstr "哥伦比亚" - -#: classes/class-wc-countries.php:87 -msgid "Comoros" -msgstr "科摩罗" - -#: classes/class-wc-countries.php:88 -msgid "Congo (Brazzaville)" -msgstr "刚果(布)" - -#: classes/class-wc-countries.php:89 -msgid "Congo (Kinshasa)" -msgstr "刚果(金)" - -#: classes/class-wc-countries.php:90 -msgid "Cook Islands" -msgstr "库克群岛" - -#: classes/class-wc-countries.php:91 -msgid "Costa Rica" -msgstr "哥斯达黎加" - -#: classes/class-wc-countries.php:92 -msgid "Croatia" -msgstr "克罗地亚" - -#: classes/class-wc-countries.php:93 -msgid "Cuba" -msgstr "古巴" - -#: classes/class-wc-countries.php:94 -msgid "CuraÇao" -msgstr "CuraÇao" - -#: classes/class-wc-countries.php:95 -msgid "Cyprus" -msgstr "塞浦路斯" - -#: classes/class-wc-countries.php:96 -msgid "Czech Republic" -msgstr "捷克共和国" - -#: classes/class-wc-countries.php:97 -msgid "Denmark" -msgstr "丹麦" - -#: classes/class-wc-countries.php:98 -msgid "Djibouti" -msgstr "吉布提" - -#: classes/class-wc-countries.php:99 -msgid "Dominica" -msgstr "多米尼克" - -#: classes/class-wc-countries.php:100 -msgid "Dominican Republic" -msgstr "多米尼加共和国" - -#: classes/class-wc-countries.php:101 -msgid "Ecuador" -msgstr "厄瓜多尔" - -#: classes/class-wc-countries.php:102 -msgid "Egypt" -msgstr "埃及" - -#: classes/class-wc-countries.php:103 -msgid "El Salvador" -msgstr "萨尔瓦多" - -#: classes/class-wc-countries.php:104 -msgid "Equatorial Guinea" -msgstr "赤道几内亚" - -#: classes/class-wc-countries.php:105 -msgid "Eritrea" -msgstr "厄立特里亚" - -#: classes/class-wc-countries.php:106 -msgid "Estonia" -msgstr "爱沙尼亚" - -#: classes/class-wc-countries.php:107 -msgid "Ethiopia" -msgstr "埃塞俄比亚" - -#: classes/class-wc-countries.php:108 -msgid "Falkland Islands" -msgstr "福克兰群岛" - -#: classes/class-wc-countries.php:109 -msgid "Faroe Islands" -msgstr "法罗群岛" - -#: classes/class-wc-countries.php:110 -msgid "Fiji" -msgstr "斐" - -#: classes/class-wc-countries.php:111 -msgid "Finland" -msgstr "芬兰" - -#: classes/class-wc-countries.php:112 -msgid "France" -msgstr "法国" - -#: classes/class-wc-countries.php:113 -msgid "French Guiana" -msgstr "法属圭亚那" - -#: classes/class-wc-countries.php:114 -msgid "French Polynesia" -msgstr "法属波利尼西亚" - -#: classes/class-wc-countries.php:115 -msgid "French Southern Territories" -msgstr "法国南部领土" - -#: classes/class-wc-countries.php:116 -msgid "Gabon" -msgstr "加蓬" - -#: classes/class-wc-countries.php:117 -msgid "Gambia" -msgstr "冈比亚" - -#: classes/class-wc-countries.php:118 i18n/states/US.php:23 -msgid "Georgia" -msgstr "格鲁吉亚" - -#: classes/class-wc-countries.php:119 -msgid "Germany" -msgstr "德国" - -#: classes/class-wc-countries.php:120 -msgid "Ghana" -msgstr "加纳" - -#: classes/class-wc-countries.php:121 -msgid "Gibraltar" -msgstr "直布罗陀" - -#: classes/class-wc-countries.php:122 -msgid "Greece" -msgstr "希腊" - -#: classes/class-wc-countries.php:123 -msgid "Greenland" -msgstr "格陵兰" - -#: classes/class-wc-countries.php:124 -msgid "Grenada" -msgstr "格林纳达" - -#: classes/class-wc-countries.php:125 -msgid "Guadeloupe" -msgstr "瓜德罗普岛" - -#: classes/class-wc-countries.php:126 -msgid "Guatemala" -msgstr "危地马拉" - -#: classes/class-wc-countries.php:127 -msgid "Guernsey" -msgstr "格恩西" - -#: classes/class-wc-countries.php:128 -msgid "Guinea" -msgstr "几内亚" - -#: classes/class-wc-countries.php:129 -msgid "Guinea-Bissau" -msgstr "几内亚比绍" - -#: classes/class-wc-countries.php:130 -msgid "Guyana" -msgstr "圭亚那" - -#: classes/class-wc-countries.php:131 -msgid "Haiti" -msgstr "海地" - -#: classes/class-wc-countries.php:132 -msgid "Heard Island and McDonald Islands" -msgstr "Heard Island and McDonald Islands" - -#: classes/class-wc-countries.php:133 -msgid "Honduras" -msgstr "洪都拉斯" - -#: classes/class-wc-countries.php:134 -msgid "Hong Kong" -msgstr "香港特别行政区,中国" - -#: classes/class-wc-countries.php:135 -msgid "Hungary" -msgstr "匈牙利" - -#: classes/class-wc-countries.php:136 -msgid "Iceland" -msgstr "冰岛" - -#: classes/class-wc-countries.php:137 -msgid "India" -msgstr "印度" - -#: classes/class-wc-countries.php:138 -msgid "Indonesia" -msgstr "印尼" - -#: classes/class-wc-countries.php:139 -msgid "Iran" -msgstr "伊朗" - -#: classes/class-wc-countries.php:140 -msgid "Iraq" -msgstr "伊拉克" - -#: classes/class-wc-countries.php:141 -msgid "Republic of Ireland" -msgstr "爱尔兰共和国" - -#: classes/class-wc-countries.php:142 -msgid "Isle of Man" -msgstr "马恩岛" - -#: classes/class-wc-countries.php:143 -msgid "Israel" -msgstr "以色列" - -#: classes/class-wc-countries.php:144 -msgid "Italy" -msgstr "意大利" - -#: classes/class-wc-countries.php:145 -msgid "Ivory Coast" -msgstr "象牙海岸" - -#: classes/class-wc-countries.php:146 -msgid "Jamaica" -msgstr "牙买加" - -#: classes/class-wc-countries.php:147 -msgid "Japan" -msgstr "日本" - -#: classes/class-wc-countries.php:148 -msgid "Jersey" -msgstr "新泽西" - -#: classes/class-wc-countries.php:149 -msgid "Jordan" -msgstr "约旦" - -#: classes/class-wc-countries.php:150 -msgid "Kazakhstan" -msgstr "哈萨克斯坦" - -#: classes/class-wc-countries.php:151 -msgid "Kenya" -msgstr "肯尼亚" - -#: classes/class-wc-countries.php:152 -msgid "Kiribati" -msgstr "基里巴斯" - -#: classes/class-wc-countries.php:153 -msgid "Kuwait" -msgstr "科威特" - -#: classes/class-wc-countries.php:154 -msgid "Kyrgyzstan" -msgstr "吉尔吉斯斯坦" - -#: classes/class-wc-countries.php:155 -msgid "Laos" -msgstr "老挝" - -#: classes/class-wc-countries.php:156 -msgid "Latvia" -msgstr "拉脱维亚" - -#: classes/class-wc-countries.php:157 -msgid "Lebanon" -msgstr "黎巴嫩" - -#: classes/class-wc-countries.php:158 -msgid "Lesotho" -msgstr "莱索托" - -#: classes/class-wc-countries.php:159 -msgid "Liberia" -msgstr "利比里亚" - -#: classes/class-wc-countries.php:160 -msgid "Libya" -msgstr "利比亚" - -#: classes/class-wc-countries.php:161 -msgid "Liechtenstein" -msgstr "列支敦士登" - -#: classes/class-wc-countries.php:162 -msgid "Lithuania" -msgstr "立陶宛" - -#: classes/class-wc-countries.php:163 -msgid "Luxembourg" -msgstr "卢森堡" - -#: classes/class-wc-countries.php:164 -msgid "Macao S.A.R., China" -msgstr "澳门特别行政区,中国" - -#: classes/class-wc-countries.php:165 -msgid "Macedonia" -msgstr "马其顿" - -#: classes/class-wc-countries.php:166 -msgid "Madagascar" -msgstr "马达加斯加" - -#: classes/class-wc-countries.php:167 -msgid "Malawi" -msgstr "马拉维" - -#: classes/class-wc-countries.php:168 -msgid "Malaysia" -msgstr "马来西亚" - -#: classes/class-wc-countries.php:169 -msgid "Maldives" -msgstr "马尔代夫" - -#: classes/class-wc-countries.php:170 -msgid "Mali" -msgstr "马里" - -#: classes/class-wc-countries.php:171 -msgid "Malta" -msgstr "马耳他" - -#: classes/class-wc-countries.php:172 -msgid "Marshall Islands" -msgstr "马绍尔群岛" - -#: classes/class-wc-countries.php:173 -msgid "Martinique" -msgstr "马提尼克" - -#: classes/class-wc-countries.php:174 -msgid "Mauritania" -msgstr "毛里塔尼亚" - -#: classes/class-wc-countries.php:175 -msgid "Mauritius" -msgstr "毛里求斯" - -#: classes/class-wc-countries.php:176 -msgid "Mayotte" -msgstr "马约特岛" - -#: classes/class-wc-countries.php:177 -msgid "Mexico" -msgstr "墨西哥" - -#: classes/class-wc-countries.php:178 -msgid "Micronesia" -msgstr "密克罗尼西亚" - -#: classes/class-wc-countries.php:179 -msgid "Moldova" -msgstr "摩尔多瓦" - -#: classes/class-wc-countries.php:180 -msgid "Monaco" -msgstr "摩纳哥" - -#: classes/class-wc-countries.php:181 -msgid "Mongolia" -msgstr "蒙古" - -#: classes/class-wc-countries.php:182 -msgid "Montenegro" -msgstr "黑山" - -#: classes/class-wc-countries.php:183 -msgid "Montserrat" -msgstr "蒙特塞拉特" - -#: classes/class-wc-countries.php:184 -msgid "Morocco" -msgstr "摩洛哥" - -#: classes/class-wc-countries.php:185 -msgid "Mozambique" -msgstr "莫桑比克" - -#: classes/class-wc-countries.php:186 -msgid "Myanmar" -msgstr "缅甸" - -#: classes/class-wc-countries.php:187 -msgid "Namibia" -msgstr "纳米比亚" - -#: classes/class-wc-countries.php:188 -msgid "Nauru" -msgstr "瑙鲁" - -#: classes/class-wc-countries.php:189 -msgid "Nepal" -msgstr "尼泊尔" - -#: classes/class-wc-countries.php:190 -msgid "Netherlands" -msgstr "荷兰" - -#: classes/class-wc-countries.php:191 -msgid "Netherlands Antilles" -msgstr "荷属安的列斯" - -#: classes/class-wc-countries.php:192 -msgid "New Caledonia" -msgstr "新喀里多尼亚" - -#: classes/class-wc-countries.php:193 -msgid "New Zealand" -msgstr "新西兰" - -#: classes/class-wc-countries.php:194 -msgid "Nicaragua" -msgstr "尼加拉瓜" - -#: classes/class-wc-countries.php:195 -msgid "Niger" -msgstr "尼日尔" - -#: classes/class-wc-countries.php:196 -msgid "Nigeria" -msgstr "尼日利亚" - -#: classes/class-wc-countries.php:197 -msgid "Niue" -msgstr "纽埃" - -#: classes/class-wc-countries.php:198 -msgid "Norfolk Island" -msgstr "诺福克岛" - -#: classes/class-wc-countries.php:199 -msgid "North Korea" -msgstr "北朝鲜" - -#: classes/class-wc-countries.php:200 -msgid "Norway" -msgstr "挪威" - -#: classes/class-wc-countries.php:201 -msgid "Oman" -msgstr "阿曼" - -#: classes/class-wc-countries.php:202 -msgid "Pakistan" -msgstr "巴基斯坦" - -#: classes/class-wc-countries.php:203 -msgid "Palestinian Territory" -msgstr "巴勒斯坦领土" - -#: classes/class-wc-countries.php:204 -msgid "Panama" -msgstr "巴拿马" - -#: classes/class-wc-countries.php:205 -msgid "Papua New Guinea" -msgstr "巴布亚新几内亚" - -#: classes/class-wc-countries.php:206 -msgid "Paraguay" -msgstr "巴拉圭" - -#: classes/class-wc-countries.php:207 -msgid "Peru" -msgstr "秘鲁" - -#: classes/class-wc-countries.php:208 -msgid "Philippines" -msgstr "菲律宾" - -#: classes/class-wc-countries.php:209 -msgid "Pitcairn" -msgstr "皮特凯恩" - -#: classes/class-wc-countries.php:210 -msgid "Poland" -msgstr "波兰" - -#: classes/class-wc-countries.php:211 -msgid "Portugal" -msgstr "葡萄牙" - -#: classes/class-wc-countries.php:212 -msgid "Qatar" -msgstr "卡塔尔" - -#: classes/class-wc-countries.php:213 -msgid "Reunion" -msgstr "留尼旺" - -#: classes/class-wc-countries.php:214 -msgid "Romania" -msgstr "罗马尼亚" - -#: classes/class-wc-countries.php:215 -msgid "Russia" -msgstr "俄罗斯" - -#: classes/class-wc-countries.php:216 -msgid "Rwanda" -msgstr "卢旺达" - -#: classes/class-wc-countries.php:217 -msgid "Saint Barthélemy" -msgstr "Saint Barthélemy" - -#: classes/class-wc-countries.php:218 -msgid "Saint Helena" -msgstr "圣赫勒拿" - -#: classes/class-wc-countries.php:219 -msgid "Saint Kitts and Nevis" -msgstr "圣基茨和尼维斯" - -#: classes/class-wc-countries.php:220 -msgid "Saint Lucia" -msgstr "圣卢西亚" - -#: classes/class-wc-countries.php:221 -msgid "Saint Martin (French part)" -msgstr "圣马丁(法国部分)" - -#: classes/class-wc-countries.php:222 -msgid "Saint Martin (Dutch part)" -msgstr "圣马丁(法国部分)" - -#: classes/class-wc-countries.php:223 -msgid "Saint Pierre and Miquelon" -msgstr "圣皮埃尔和密克隆" - -#: classes/class-wc-countries.php:224 -msgid "Saint Vincent and the Grenadines" -msgstr "圣文森特和格林纳丁斯" - -#: classes/class-wc-countries.php:225 -msgid "San Marino" -msgstr "圣马力诺" - -#: classes/class-wc-countries.php:226 -msgid "São Tomé and Príncipe" -msgstr "São Tomé and Príncipe" - -#: classes/class-wc-countries.php:227 -msgid "Saudi Arabia" -msgstr "沙特阿拉伯" - -#: classes/class-wc-countries.php:228 -msgid "Senegal" -msgstr "塞内加尔" - -#: classes/class-wc-countries.php:229 -msgid "Serbia" -msgstr "塞尔维亚" - -#: classes/class-wc-countries.php:230 -msgid "Seychelles" -msgstr "塞舌尔" - -#: classes/class-wc-countries.php:231 -msgid "Sierra Leone" -msgstr "塞拉利昂" - -#: classes/class-wc-countries.php:232 -msgid "Singapore" -msgstr "新加坡" - -#: classes/class-wc-countries.php:233 -msgid "Slovakia" -msgstr "斯洛伐克" - -#: classes/class-wc-countries.php:234 -msgid "Slovenia" -msgstr "斯洛文尼亚" - -#: classes/class-wc-countries.php:235 -msgid "Solomon Islands" -msgstr "所罗门群岛" - -#: classes/class-wc-countries.php:236 -msgid "Somalia" -msgstr "索马里" - -#: classes/class-wc-countries.php:237 -msgid "South Africa" -msgstr "南非" - -#: classes/class-wc-countries.php:238 -msgid "South Georgia/Sandwich Islands" -msgstr "南乔治亚/南桑威奇群岛" - -#: classes/class-wc-countries.php:239 -msgid "South Korea" -msgstr "韩国" - -#: classes/class-wc-countries.php:240 -msgid "South Sudan" -msgstr "南非" - -#: classes/class-wc-countries.php:241 -msgid "Spain" -msgstr "西班牙" - -#: classes/class-wc-countries.php:242 -msgid "Sri Lanka" -msgstr "斯里兰卡" - -#: classes/class-wc-countries.php:243 -msgid "Sudan" -msgstr "苏丹" - -#: classes/class-wc-countries.php:244 -msgid "Suriname" -msgstr "苏里南" - -#: classes/class-wc-countries.php:245 -msgid "Svalbard and Jan Mayen" -msgstr "斯瓦尔巴岛和扬马延岛" - -#: classes/class-wc-countries.php:246 -msgid "Swaziland" -msgstr "斯威士兰" - -#: classes/class-wc-countries.php:247 -msgid "Sweden" -msgstr "瑞典" - -#: classes/class-wc-countries.php:248 -msgid "Switzerland" -msgstr "瑞士" - -#: classes/class-wc-countries.php:249 -msgid "Syria" -msgstr "叙利亚" - -#: classes/class-wc-countries.php:250 -msgid "Taiwan" -msgstr "台湾" - -#: classes/class-wc-countries.php:251 -msgid "Tajikistan" -msgstr "塔吉克斯坦" - -#: classes/class-wc-countries.php:252 -msgid "Tanzania" -msgstr "坦桑尼亚" - -#: classes/class-wc-countries.php:253 -msgid "Thailand" -msgstr "泰国" - -#: classes/class-wc-countries.php:254 -msgid "Timor-Leste" -msgstr "东帝汶" - -#: classes/class-wc-countries.php:255 -msgid "Togo" -msgstr "多哥" - -#: classes/class-wc-countries.php:256 -msgid "Tokelau" -msgstr "托克劳" - -#: classes/class-wc-countries.php:257 -msgid "Tonga" -msgstr "汤加" - -#: classes/class-wc-countries.php:258 -msgid "Trinidad and Tobago" -msgstr "特里尼达和多巴哥" - -#: classes/class-wc-countries.php:259 -msgid "Tunisia" -msgstr "突尼斯" - -#: classes/class-wc-countries.php:260 -msgid "Turkey" -msgstr "土耳其" - -#: classes/class-wc-countries.php:261 -msgid "Turkmenistan" -msgstr "土库曼斯坦" - -#: classes/class-wc-countries.php:262 -msgid "Turks and Caicos Islands" -msgstr "特克斯和凯科斯群岛" - -#: classes/class-wc-countries.php:263 -msgid "Tuvalu" -msgstr "图瓦卢" - -#: classes/class-wc-countries.php:264 -msgid "Uganda" -msgstr "乌干达" - -#: classes/class-wc-countries.php:265 -msgid "Ukraine" -msgstr "乌克兰" - -#: classes/class-wc-countries.php:266 -msgid "United Arab Emirates" -msgstr "阿拉伯联合酋长国" - -#: classes/class-wc-countries.php:267 -msgid "United Kingdom" -msgstr "英国" - -#: classes/class-wc-countries.php:268 -msgid "United States" -msgstr "美国" - -#: classes/class-wc-countries.php:269 -msgid "Uruguay" -msgstr "乌拉圭" - -#: classes/class-wc-countries.php:270 -msgid "Uzbekistan" -msgstr "乌兹别克斯坦" - -#: classes/class-wc-countries.php:271 -msgid "Vanuatu" -msgstr "瓦努阿图" - -#: classes/class-wc-countries.php:272 -msgid "Vatican" -msgstr "梵帝冈" - -#: classes/class-wc-countries.php:273 -msgid "Venezuela" -msgstr "委内瑞拉" - -#: classes/class-wc-countries.php:274 -msgid "Vietnam" -msgstr "越南" - -#: classes/class-wc-countries.php:275 -msgid "Wallis and Futuna" -msgstr "瓦利斯群岛和富图纳群岛" - -#: classes/class-wc-countries.php:276 -msgid "Western Sahara" -msgstr "西撒哈拉" - -#: classes/class-wc-countries.php:277 -msgid "Western Samoa" -msgstr "美属萨摩亚" - -#: classes/class-wc-countries.php:278 -msgid "Yemen" -msgstr "也门" - -#: classes/class-wc-countries.php:279 -msgid "Zambia" -msgstr "赞比亚" - -#: classes/class-wc-countries.php:280 -msgid "Zimbabwe" -msgstr "津巴布韦" - -#: classes/class-wc-countries.php:418 -msgid "to the" -msgstr "to the" - -#: classes/class-wc-countries.php:419 -msgid "to" -msgstr "to" - -#: classes/class-wc-countries.php:432 -msgid "the" -msgstr "the" - -#: classes/class-wc-countries.php:444 -msgid "VAT" -msgstr "增值税" - -#: classes/class-wc-countries.php:444 -msgid "Tax" -msgstr "税" - -#: classes/class-wc-countries.php:457 -msgid "(incl. VAT)" -msgstr "(包含. 增值税)" - -#: classes/class-wc-countries.php:457 -msgid "(incl. tax)" -msgstr "(包含.税)" - -#: classes/class-wc-countries.php:470 -msgid "(ex. VAT)" -msgstr "(不含. 增值税)" - -#: classes/class-wc-countries.php:470 -msgid "(ex. tax)" -msgstr "(税前)" - -#: classes/class-wc-countries.php:678 -msgid "Country" -msgstr "国家" - -#: classes/class-wc-countries.php:683 -msgid "First Name" -msgstr "名" - -#: classes/class-wc-countries.php:688 -msgid "Last Name" -msgstr "姓" - -#: classes/class-wc-countries.php:694 -msgid "Company Name" -msgstr "公司名称" - -#: classes/class-wc-countries.php:698 -msgid "Address" -msgstr "地址" - -#: classes/class-wc-countries.php:699 -msgctxt "placeholder" -msgid "Street address" -msgstr "编辑地址" - -#: classes/class-wc-countries.php:707 -msgctxt "placeholder" -msgid "Apartment, suite, unit etc. (optional)" -msgstr "Apartment, suite, unit etc. (optional)" - -#: classes/class-wc-countries.php:715 classes/class-wc-countries.php:716 -msgid "Town / City" -msgstr "镇/市" - -#: classes/class-wc-countries.php:725 classes/class-wc-countries.php:726 -msgid "State / County" -msgstr "地区/县" - -#: classes/class-wc-countries.php:734 classes/class-wc-countries.php:735 -#: templates/cart/shipping-calculator.php:80 -msgid "Postcode / Zip" -msgstr "邮政编码" - -#: classes/class-wc-countries.php:774 classes/class-wc-countries.php:784 -#: classes/class-wc-countries.php:804 classes/class-wc-countries.php:859 -#: classes/class-wc-countries.php:883 classes/class-wc-countries.php:933 -#: classes/class-wc-countries.php:957 classes/class-wc-countries.php:998 -msgid "Province" -msgstr "省" - -#: classes/class-wc-countries.php:790 -msgid "Canton" -msgstr "Canton" - -#: classes/class-wc-countries.php:799 classes/class-wc-countries.php:939 -msgid "Municipality" -msgstr "市" - -#: classes/class-wc-countries.php:846 -msgid "Town / District" -msgstr "镇/街道" - -#: classes/class-wc-countries.php:849 -msgid "Region" -msgstr "地区" - -#: classes/class-wc-countries.php:962 -msgid "Zip" -msgstr "邮政编码" - -#: classes/class-wc-countries.php:965 -msgid "State" -msgstr "地区" - -#: classes/class-wc-countries.php:970 -msgid "Postcode" -msgstr "邮编" - -#: classes/class-wc-countries.php:973 -msgid "County" -msgstr "县" - -#: classes/class-wc-countries.php:1074 -msgid "Email Address" -msgstr "Email 地址" - -#: classes/class-wc-countries.php:1080 -msgid "Phone" -msgstr "电话" - -#: classes/class-wc-coupon.php:421 -msgid "Coupon code applied successfully." -msgstr "优惠代码使用成功。" - -#: classes/class-wc-coupon.php:442 -msgid "Coupon is not valid." -msgstr "不是有效优惠券代码" - -#: classes/class-wc-coupon.php:445 classes/class-wc-coupon.php:495 -msgid "Coupon does not exist!" -msgstr "优惠券不存在!" - -#: classes/class-wc-coupon.php:448 -msgid "" -"Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from " -"your order." -msgstr "对不起, 优惠券 \"%s\" 不是你的 - 它已从你的订单中删除。" - -#: classes/class-wc-coupon.php:451 -msgid "" -"Sorry, it seems the coupon \"%s\" is not yours - it has now been removed " -"from your order." -msgstr "对不起, 优惠券 \"%s\" 不是你的 - 它已从你的订单中删除。" - -#: classes/class-wc-coupon.php:454 -msgid "Coupon code already applied!" -msgstr "优惠代码已经使用过了!" - -#: classes/class-wc-coupon.php:457 -msgid "" -"Sorry, coupon \"%s\" has already been applied and cannot be used in " -"conjunction with other coupons." -msgstr "对不起,优惠券\"%s\"已经使用过了,而且不能和其它优惠券一起使用." - -#: classes/class-wc-coupon.php:460 -msgid "Coupon usage limit has been reached." -msgstr "优惠券已过期。" - -#: classes/class-wc-coupon.php:463 -msgid "This coupon has expired." -msgstr "对不起,此下载已失效" - -#: classes/class-wc-coupon.php:466 -msgid "The minimum spend for this coupon is %s." -msgstr "此券的最低消费是 %s." - -#: classes/class-wc-coupon.php:469 -msgid "Sorry, this coupon is not applicable to your cart contents." -msgstr "很抱歉,您所购商品不能使用此优惠券。" - -#: classes/class-wc-coupon.php:472 -msgid "Sorry, this coupon is not valid for sale items." -msgstr "对不起,此优惠券对所售商品无效." - -#: classes/class-wc-coupon.php:498 -msgid "Please enter a coupon code." -msgstr "请输入站点名称。" - -#: classes/class-wc-customer.php:628 classes/class-wc-customer.php:638 -msgid "File %d" -msgstr "文件已取消。" - -#: classes/class-wc-emails.php:246 -msgid "Note" -msgstr "注意" - -#: classes/class-wc-emails.php:281 -msgid "Product low in stock" -msgstr "产品库存不足" - -#: classes/class-wc-emails.php:286 classes/class-wc-emails.php:318 -#: classes/class-wc-emails.php:362 -msgid "Variation #%s of %s" -msgstr "#%s 变更为 %s" - -#: classes/class-wc-emails.php:288 classes/class-wc-emails.php:320 -#: classes/class-wc-emails.php:364 -msgid "Product #%s - %s" -msgstr "产品#%s - %s" - -#: classes/class-wc-emails.php:290 -msgid "is low in stock." -msgstr "库存不足。" - -#: classes/class-wc-emails.php:313 -msgid "Product out of stock" -msgstr "产品无货。" - -#: classes/class-wc-emails.php:322 -msgid "is out of stock." -msgstr "无货。" - -#: classes/class-wc-emails.php:357 -msgid "Product Backorder" -msgstr "产品缺货" - -#: classes/class-wc-emails.php:366 -msgid "%s units of %s have been backordered in order #%s." -msgstr "%s 单位 of %s 订单已经被延迟发货 #%s." - -#: classes/class-wc-order.php:283 -msgctxt "hash before order number" -msgid "#" -msgstr "#" - -#: classes/class-wc-order.php:886 -msgid " %svia %s" -msgstr "电子邮件地址:" - -#: classes/class-wc-order.php:950 -msgid "Cart Subtotal:" -msgstr "购物小计:" - -#: classes/class-wc-order.php:956 -msgid "Cart Discount:" -msgstr "购物优惠:" - -#: classes/class-wc-order.php:962 -msgid "Shipping:" -msgstr "配送:" - -#: classes/class-wc-order.php:998 -msgid "Order Discount:" -msgstr "订购优惠:" - -#: classes/class-wc-order.php:1003 -msgid "Order Total:" -msgstr "订单合计:" - -#: classes/class-wc-order.php:1017 templates/cart/totals.php:105 -#: templates/checkout/review-order.php:104 -msgid "(Includes %s)" -msgstr "(包含 %s)" - -#: classes/class-wc-order.php:1168 classes/class-wc-order.php:1170 -#: classes/class-wc-order.php:1173 -msgid "WooCommerce" -msgstr "WooCommerce
    商店设置" - -#: classes/class-wc-order.php:1220 -msgid "Order status changed from %s to %s." -msgstr "订单状态从%s改为 %s." - -#: classes/class-wc-order.php:1452 woocommerce-ajax.php:1089 -#: woocommerce-ajax.php:1090 -msgid "Item #%s stock reduced from %s to %s." -msgstr "#%s 库存从 %s 减少到 %s." - -#: classes/class-wc-order.php:1464 -msgid "Order item stock reduced successfully." -msgstr "订单库存减少成功." - -#: classes/class-wc-product-external.php:56 -msgid "Buy product" -msgstr "买产品" - -#: classes/class-wc-shortcodes.php:571 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:274 -#: templates/loop/add-to-cart.php:46 -#: templates/single-product/add-to-cart/grouped.php:45 -#: templates/single-product/add-to-cart/grouped.php:77 -#: templates/single-product/add-to-cart/simple.php:42 -#: templates/single-product/add-to-cart/variable.php:83 -msgid "Add to cart" -msgstr "添加到购物车" - -#: classes/emails/class-wc-email-customer-completed-order.php:24 -msgid "Completed order" -msgstr "添加订单" - -#: classes/emails/class-wc-email-customer-completed-order.php:25 -msgid "" -"Order complete emails are sent to the customer when the order is marked " -"complete and usual indicates that the order has been shipped." -msgstr "" -"订单完成的电子邮件已发送给客户,订单标记为完成时,通常表示该订单已发货。" - -#: classes/emails/class-wc-email-customer-completed-order.php:27 -msgid "Your order is complete" -msgstr "[%s] 订单完成/下载链接" - -#: classes/emails/class-wc-email-customer-completed-order.php:28 -msgid "Your {blogname} order from {order_date} is complete" -msgstr "你从 {order_date} 的{blogname}订单,已经完成." - -#: classes/emails/class-wc-email-customer-completed-order.php:37 -msgid "Your order is complete - download your files" -msgstr "您的订单已完成。您订单的详细信息如下:" - -#: classes/emails/class-wc-email-customer-completed-order.php:38 -msgid "" -"Your {blogname} order from {order_date} is complete - download your files" -msgstr "你从 {order_date} 的{blogname}订单,已经完成-下载你的文件." - -#: classes/emails/class-wc-email-customer-completed-order.php:141 -#: classes/emails/class-wc-email-new-order.php:128 -msgid "Subject" -msgstr "主题" - -#: classes/emails/class-wc-email-customer-completed-order.php:148 -#: classes/emails/class-wc-email-new-order.php:135 -msgid "Email Heading" -msgstr "Email账单" - -#: classes/emails/class-wc-email-customer-completed-order.php:155 -msgid "Subject (downloadable)" -msgstr "按标题" - -#: classes/emails/class-wc-email-customer-completed-order.php:162 -msgid "Email Heading (downloadable)" -msgstr "电子邮件地址:" - -#: classes/emails/class-wc-email-customer-invoice.php:27 -msgid "Customer invoice" -msgstr "Email账单" - -#: classes/emails/class-wc-email-customer-invoice.php:28 -msgid "" -"Customer invoice emails can be sent to the user containing order info and " -"payment links." -msgstr "顾客的单证可以通过电子邮件发送,包含订单信息和支付信息。" - -#: classes/emails/class-wc-email-customer-invoice.php:33 -msgid "Invoice for order {order_number} from {order_date}" -msgstr "订单票据 {order_number} 从 {order_date}" - -#: classes/emails/class-wc-email-customer-invoice.php:34 -msgid "Invoice for order {order_number}" -msgstr "订单计划为:%1$s." - -#: classes/emails/class-wc-email-customer-invoice.php:36 -msgid "Your {blogname} order from {order_date}" -msgstr "你从 {order_date} 的{blogname}订单" - -#: classes/emails/class-wc-email-customer-invoice.php:37 -msgid "Order {order_number} details" -msgstr "新添订单" - -#: classes/emails/class-wc-email-customer-invoice.php:158 -msgid "Email subject (paid)" -msgstr "按标题" - -#: classes/emails/class-wc-email-customer-invoice.php:165 -msgid "Email heading (paid)" -msgstr "电子邮件地址:" - -#: classes/emails/class-wc-email-customer-new-account.php:31 -msgid "New account" -msgstr "我的帐户" - -#: classes/emails/class-wc-email-customer-new-account.php:32 -msgid "" -"Customer new account emails are sent when a customer signs up via the " -"checkout or My Account page." -msgstr "当顾客注册结帐或者通过\"我的帐户\"结帐时,将会发送电子邮件通知顾客." - -#: classes/emails/class-wc-email-customer-new-account.php:37 -msgid "Your account on {blogname}" -msgstr "您在 {blogname}的帐号" - -#: classes/emails/class-wc-email-customer-new-account.php:38 -msgid "Welcome to {blogname}" -msgstr "欢迎光临 {blogname}" - -#: classes/emails/class-wc-email-customer-note.php:29 -msgid "Customer note" -msgstr "客户注意" - -#: classes/emails/class-wc-email-customer-note.php:30 -msgid "Customer note emails are sent when you add a note to an order." -msgstr "当你为订单添加备注时,发送电子邮件通知顾客." - -#: classes/emails/class-wc-email-customer-note.php:35 -msgid "Note added to your {blogname} order from {order_date}" -msgstr "备注添加到你的 {blogname} 从 {order_date}" - -#: classes/emails/class-wc-email-customer-note.php:36 -msgid "A note has been added to your order" -msgstr "一个注释已经添加到你的订单" - -#: classes/emails/class-wc-email-customer-processing-order.php:24 -msgid "Processing order" -msgstr "添加订单" - -#: classes/emails/class-wc-email-customer-processing-order.php:25 -msgid "" -"This is an order notification sent to the customer after payment containing " -"order details." -msgstr "这是一个订单付款后发送给顾客的一个通知." - -#: classes/emails/class-wc-email-customer-processing-order.php:27 -msgid "Thank you for your order" -msgstr "谢谢。您的订单已收到。" - -#: classes/emails/class-wc-email-customer-processing-order.php:28 -msgid "Your {blogname} order receipt from {order_date}" -msgstr "你的 {blogname} 订单收据 {order_date}" - -#: classes/emails/class-wc-email-customer-reset-password.php:36 -msgid "Reset password" -msgstr "密码重置" - -#: classes/emails/class-wc-email-customer-reset-password.php:37 -msgid "" -"Customer reset password emails are sent when a customer resets their " -"password." -msgstr "当顾客重设密码时,给顾客发送密码重置电子邮件." - -#: classes/emails/class-wc-email-customer-reset-password.php:42 -msgid "Password Reset for {blogname}" -msgstr "您的密码已被{blogname}重置。" - -#: classes/emails/class-wc-email-customer-reset-password.php:43 -msgid "Password Reset Instructions" -msgstr "您的密码已被重置。" - -#: classes/emails/class-wc-email-new-order.php:24 -msgid "New order" -msgstr "新订单" - -#: classes/emails/class-wc-email-new-order.php:25 -msgid "New order emails are sent when an order is received/paid by a customer." -msgstr "顾客对订单支付后,给顾客发送电子邮件." - -#: classes/emails/class-wc-email-new-order.php:27 -msgid "New customer order" -msgstr "新客户订单" - -#: classes/emails/class-wc-email-new-order.php:28 -msgid "[{blogname}] New customer order ({order_number}) - {order_date}" -msgstr "[{blogname}] 顾客新订单({order_number}) - {order_date}" - -#: classes/emails/class-wc-email-new-order.php:121 -msgid "Recipient(s)" -msgstr "电子邮件收件人选项" - -#: classes/emails/class-wc-email-new-order.php:123 -msgid "" -"Enter recipients (comma separated) for this email. Defaults to %s." -msgstr "输入此邮件的收件人(用逗号隔开),默认%s." - -#: classes/emails/class-wc-email-new-order.php:130 -msgid "" -"This controls the email subject line. Leave blank to use the default " -"subject: %s." -msgstr "此控制邮件的主题行,留空将使用默认的主题:%s." - -#: classes/emails/class-wc-email-new-order.php:137 -msgid "" -"This controls the main heading contained within the email notification. " -"Leave blank to use the default heading: %s." -msgstr "控制主标题包含在电子邮件通知。留空使用默认的标题:%s." - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:28 -msgid "Bacs" -msgstr "跨行转帐" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:65 -msgid "Enable Bank Transfer" -msgstr "启用银行转帐" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:69 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:63 -#: classes/gateways/cod/class-wc-gateway-cod.php:87 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:135 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:126 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:104 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:84 -msgid "Title" -msgstr "标题" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:71 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:65 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:137 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:128 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:83 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:58 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:106 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:86 -msgid "This controls the title which the user sees during checkout." -msgstr "这控制用户在结帐时看到的标题。" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:72 -msgid "Direct Bank Transfer" -msgstr "直接银行汇款" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:76 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:70 -msgid "Customer Message" -msgstr "自定义信息" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:78 -msgid "" -"Give the customer instructions for paying via BACS, and let them know that " -"their order won't be shipping until the money is received." -msgstr "给客户通过跨行转帐付款的说明,并让他们知道收到款才发货" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:79 -msgid "" -"Make your payment directly into our bank account. Please use your Order ID " -"as the payment reference. Your order wont be shipped until the funds have " -"cleared in our account." -msgstr "" -"请将资金直接汇入我们账户,并在支付时附注你的订单ID号。你的订单暂时不会发货直" -"到我们收到资金。" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:82 -msgid "Account Details" -msgstr "查看详情" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:84 -msgid "Optionally enter your bank details below for customers to pay into." -msgstr "输入您的银行客户付成(可选)。" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:88 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:163 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:203 -msgid "Account Name" -msgstr "帐户名" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:94 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:164 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:204 -msgid "Account Number" -msgstr "帐号" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:100 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:165 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:205 -msgid "Sort Code" -msgstr "分类编号" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:106 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:166 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:206 -msgid "Bank Name" -msgstr "银行名称" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:112 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:167 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:207 -msgid "IBAN" -msgstr "国际银行标准账号" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:117 -msgid "BIC (formerly Swift)" -msgstr "BIC (formerly Swift)" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:136 -msgid "BACS Payment" -msgstr "跨行转帐付款" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:137 -msgid "" -"Allows payments by BACS (Bank Account Clearing System), more commonly known " -"as direct bank/wire transfer." -msgstr "允许跨行转帐付款(银行帐户结算系统),俗称直接银行转帐/电汇。" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:158 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:200 -msgid "Our Details" -msgstr "我们的详情" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:168 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:208 -msgid "BIC" -msgstr "BIC" - -#: classes/gateways/bacs/class-wc-gateway-bacs.php:234 -msgid "Awaiting BACS payment" -msgstr "等待跨行转帐付款" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:28 -msgid "Cheque" -msgstr "支票" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:59 -msgid "Enable Cheque Payment" -msgstr "启用支票付款" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:66 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:90 -msgid "Cheque Payment" -msgstr "支票付款" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:72 -msgid "" -"Let the customer know the payee and where they should be sending the cheque " -"to and that their order won't be shipping until you receive it." -msgstr "让顾客知道收款人并且在收到支票之前他们的订单不会发货。" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:73 -msgid "" -"Please send your cheque to Store Name, Store Street, Store Town, Store " -"State / County, Store Postcode." -msgstr "请发送您的支票到商店名称,商店街,商店镇,商店州/县,商店邮编。" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:91 -msgid "" -"Allows cheque payments. Why would you take cheques in this day and age? Well " -"you probably wouldn't but it does allow you to make test purchases for " -"testing order emails and the 'success' pages etc." -msgstr "" -"允许支票付款。在当今这个时代你会接受支票吗?你也许不会。但是它允许您进行尝试" -"购买、尝试订单电子邮件和“成功”页面等" - -#: classes/gateways/cheque/class-wc-gateway-cheque.php:147 -msgid "Awaiting cheque payment" -msgstr "等待支票付款" - -#: classes/gateways/cod/class-wc-gateway-cod.php:27 -#: classes/gateways/cod/class-wc-gateway-cod.php:54 -#: classes/gateways/cod/class-wc-gateway-cod.php:90 -msgid "Cash on Delivery" -msgstr "货到付款" - -#: classes/gateways/cod/class-wc-gateway-cod.php:55 -msgid "Have your customers pay with cash (or by other means) upon delivery." -msgstr "在交付时由你的客户支付现金(或其他方式)。" - -#: classes/gateways/cod/class-wc-gateway-cod.php:80 -msgid "Enable COD" -msgstr "启用COD" - -#: classes/gateways/cod/class-wc-gateway-cod.php:81 -msgid "Enable Cash on Delivery" -msgstr "启用货到付款" - -#: classes/gateways/cod/class-wc-gateway-cod.php:89 -msgid "Payment method title that the customer will see on your website." -msgstr "顾客会在您网站上看到的付款方式的标题。" - -#: classes/gateways/cod/class-wc-gateway-cod.php:94 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:142 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:133 -#: woocommerce-template.php:751 -msgid "Description" -msgstr "描述" - -#: classes/gateways/cod/class-wc-gateway-cod.php:96 -msgid "Payment method description that the customer will see on your website." -msgstr "顾客在你网站上看到的付款方式描述。" - -#: classes/gateways/cod/class-wc-gateway-cod.php:97 -#: classes/gateways/cod/class-wc-gateway-cod.php:103 -msgid "Pay with cash upon delivery." -msgstr "交货时使用现金支付." - -#: classes/gateways/cod/class-wc-gateway-cod.php:100 -msgid "Instructions" -msgstr "说明" - -#: classes/gateways/cod/class-wc-gateway-cod.php:102 -msgid "Instructions that will be added to the thank you page." -msgstr "说明将被添加到感谢页面。" - -#: classes/gateways/cod/class-wc-gateway-cod.php:106 -msgid "Enable for shipping methods" -msgstr "启用此送货方法" - -#: classes/gateways/cod/class-wc-gateway-cod.php:111 -msgid "" -"If COD is only available for certain methods, set it up here. Leave blank to " -"enable for all methods." -msgstr "如果COD只适用于特定的方法,请在这里设置。留空启用的所有方法。" - -#: classes/gateways/cod/class-wc-gateway-cod.php:176 -msgid "Payment to be made upon delivery." -msgstr "交货时支付。" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:31 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:160 -msgid "Mijireh Checkout" -msgstr "结账页" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:107 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:285 -msgid "Mijireh error:" -msgstr "Mijireh错误:" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:124 -msgid "Enable Mijireh Checkout" -msgstr "使用Mijireh结帐" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:128 -msgid "Access Key" -msgstr "激活密钥:" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:130 -msgid "The Mijireh access key for your store." -msgstr "您商店的 Mijireh access key ." - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:138 -msgid "Credit Card" -msgstr "信用卡" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:144 -msgid "Pay securely with your credit card." -msgstr "使用信用卡安全付费。" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:145 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:135 -msgid "This controls the description which the user sees during checkout." -msgstr "控制用户在结帐时看到的描述。" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:164 -msgid "Get started with Mijireh Checkout" -msgstr "使用Mijireh结帐" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:165 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site. Mijireh supports a wide variety of payment gateways: Stripe, " -"Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and more." -msgstr "" -"提供了充分的PCI规范,安全的方法来收集和传输信用卡数据到您的支付网关,同时让您" -"控制您的网站的设计。 Mijireh支持多种支付网关:Stripe,Authorize.net,贝宝," -"eWay, SagePay,Braintree, PayLeap,等。" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:167 -msgid "Join for free" -msgstr "免费注册" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:167 -msgid "Learn more about WooCommerce and Mijireh" -msgstr "了解更多关于WooCommerce和Mijireh" - -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:171 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site." -msgstr "" -"提供了充分的PCI规范,安全的方法来收集和传输信用卡数据到您的支付网关,而让你控" -"制你的网站的设计。" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:34 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:129 -msgid "PayPal" -msgstr "贝宝" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:91 -msgid "PayPal standard" -msgstr "贝宝标准" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:92 -msgid "" -"PayPal standard works by sending the user to PayPal to enter their payment " -"information." -msgstr "贝宝标准通过发送用户到PayPal输入他们的付款信息。" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:104 -msgid "Gateway Disabled" -msgstr "网关已禁用" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:104 -msgid "PayPal does not support your store currency." -msgstr "贝宝不支持你的商铺货币。" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:122 -msgid "Enable PayPal standard" -msgstr "启用贝宝标准版" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:136 -msgid "" -"Pay via PayPal; you can pay with your credit card if you don't have a PayPal " -"account" -msgstr "通过贝宝支付;如果你没有一个PayPal帐户您可以用您的信用卡支付" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:139 -msgid "PayPal Email" -msgstr "贝宝 Email" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:141 -msgid "" -"Please enter your PayPal email address; this is needed in order to take " -"payment." -msgstr "请输入你的贝宝email 地址;这是为订单付款所必须的。" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:147 -msgid "Receiver Email" -msgstr "Email账单" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:149 -msgid "" -"If this differs from the email entered above, input your main receiver email " -"for your PayPal account. This is used to validate IPN requests." -msgstr "" -"如果不使用上面的电子邮件地址,输入你的PayPal帐户接收电子邮件。这是用于验证IPN" -"请求。" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:155 -msgid "Invoice Prefix" -msgstr "帐单前缀" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:157 -msgid "" -"Please enter a prefix for your invoice numbers. If you use your PayPal " -"account for multiple stores ensure this prefix is unique as PayPal will not " -"allow orders with the same invoice number." -msgstr "" -"请输入您的帐单前缀。如果您使用PayPal帐户为多个店铺,确保这前缀是unqiue的,因" -"为PayPal将不会允许相同的编号的订单前缀。" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:162 -msgid "Submission method" -msgstr "提交方法" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:164 -msgid "Use form submission method." -msgstr "使用表单提交方法。" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:165 -msgid "" -"Enable this to post order data to PayPal via a form instead of using a " -"redirect/querystring." -msgstr "启用此文章订单数据到贝宝通过表单,而不是使用重定向/querystring。" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:169 -msgid "Page Style" -msgstr "页面样式" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:171 -msgid "" -"Optionally enter the name of the page style you wish to use. These are " -"defined within your PayPal account." -msgstr "(可选)输入您要使用的页面样式的名称。这些被定义在你的PayPal帐户内。" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:174 -msgid "Optional" -msgstr "公司(可选)" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:177 -msgid "Shipping options" -msgstr "配送选项" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:182 -msgid "Shipping details" -msgstr "配送详情" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:184 -msgid "Send shipping details to PayPal instead of billing." -msgstr "发送送货详情到贝宝而不是账单。" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:186 -msgid "" -"PayPal allows us to send 1 address. If you are using PayPal for shipping " -"labels you may prefer to send the shipping address rather than billing." -msgstr "" -"贝宝允许我们发送1个地址。如果您使用的是贝宝送货标签,你可能更喜欢发送的送货地" -"址,而不是账单。" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:190 -msgid "Address override" -msgstr "重复地址" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:192 -msgid "" -"Enable \"address_override\" to prevent address information from being " -"changed." -msgstr "启用\"address_override\"以防止被更改的地址信息。" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:193 -msgid "" -"PayPal verifies addresses therefore this setting can cause errors (we " -"recommend keeping it disabled)." -msgstr "贝宝验证地址,此设置可能会导致错误(我们建议保持禁用它)。" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:197 -msgid "Gateway Testing" -msgstr "网关ID" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:202 -msgid "PayPal sandbox" -msgstr "PayPal sandbox" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:204 -msgid "Enable PayPal sandbox" -msgstr "启用PayPal sandbox" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:206 -msgid "" -"PayPal sandbox can be used to test payments. Sign up for a developer account " -"here." -msgstr "贝宝Sandbox用于测试付款。注册一个开发者账户 点这里." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:209 -msgid "Debug Log" -msgstr "调试日志" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:211 -msgid "Enable logging" -msgstr "启用日志记录" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:213 -msgid "" -"Log PayPal events, such as IPN requests, inside woocommerce/logs/" -"paypal-%s.txt" -msgstr "" -"登录贝宝的活动,例如IPN请求,内部 woocommerce/logs/paypal.txt" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:322 -msgid "Order %s" -msgstr "订单 %s" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:332 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:386 -msgid "Shipping via" -msgstr "配送渠道" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:427 -msgid "" -"Thank you for your order. We are now redirecting you to PayPal to make " -"payment." -msgstr "感谢您的订单。我们现在正在重定向到贝宝付款。" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:448 -msgid "Pay via PayPal" -msgstr "通过贝宝支付" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:448 -msgid "Cancel order & restore cart" -msgstr "取消订单 & 恢复购物车" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:502 -msgid "" -"Thank you for your order, please click the button below to pay with PayPal." -msgstr "感谢您的订单,请点击下面的贝宝支付按钮。" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:644 -msgid "Validation error: PayPal amounts do not match (gross %s)." -msgstr "验证错误:贝宝金额不匹配, (gross %s)." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:655 -msgid "" -"Validation error: PayPal IPN response from a different email address (%s)." -msgstr "验证错误:PayPal IPN响应从不同的电子邮件地址 (%s)." - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:673 -msgid "IPN payment completed" -msgstr "IPN支付完成" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:685 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:693 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:711 -msgid "Payment %s via IPN." -msgstr "付款 %s 通过IPN。" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:698 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:716 -msgid "Order refunded/reversed" -msgstr "订单被退款" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:699 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:717 -msgid "Order %s has been marked as refunded - PayPal reason code: %s" -msgstr "订单%s 已被标记为退回 - 贝宝的原因代码:%s" - -#: classes/gateways/paypal/class-wc-gateway-paypal.php:702 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:720 -msgid "Payment for order %s refunded/reversed" -msgstr "为订单 %s 退款付款" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:26 -msgid "Google Analytics" -msgstr "谷歌分析" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:27 -msgid "" -"Google Analytics is a free service offered by Google that generates detailed " -"statistics about the visitors to a website." -msgstr "" -"Google Analytics(分析)是由Google提供的一项免费服务,用于统计有关网站访客详" -"细统计。" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:63 -msgid "Google Analytics ID" -msgstr "谷歌分析ID" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:64 -msgid "" -"Log into your google analytics account to find your ID. e.g. UA-XXXXX-" -"X" -msgstr "" -"登录到您的Google Analytics帐户,找到您的ID。例如UA-XXXXX-X" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:69 -msgid "Set Domain Name" -msgstr "新分类目录名" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:70 -msgid "" -"(Optional) Sets the _setDomainName variable. See " -"here for more information." -msgstr "" -"(可选项)设置_setDomainName变量.查看更多信息." - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:75 -msgid "Tracking code" -msgstr "跟踪代码" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:76 -msgid "" -"Add tracking code to your site's footer. You don't need to enable this if " -"using a 3rd party analytics plugin." -msgstr "将跟踪代码添加到您的网站的页脚。如果使用第三方分析插件你不需要启用它。" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:82 -msgid "Add eCommerce tracking code to the thankyou page" -msgstr "添加电子商务跟踪代码到谢谢页面" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:88 -msgid "Add event tracking code for add to cart actions" -msgstr "为添加到购物车增加跟踪编码" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:120 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:180 -#: woocommerce-ajax.php:1652 -msgid "Guest" -msgstr "访客" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:218 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:275 -#: templates/single-product/meta.php:19 -msgid "SKU:" -msgstr "编码:" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:273 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:293 -#: woocommerce.php:982 -msgid "Products" -msgstr "商品" - -#: classes/integrations/google-analytics/class-wc-google-analytics.php:294 -msgid "Add to Cart" -msgstr "添加到购物车" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:26 -msgid "ShareDaddy" -msgstr "ShareDaddy" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:27 -msgid "ShareDaddy is a sharing plugin bundled with JetPack." -msgstr "ShareDaddy是共享插件和JetPack捆绑." - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:51 -msgid "Output ShareDaddy button?" -msgstr "输出ShareDaddy按钮?" - -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:52 -msgid "Enable this option to show the ShareDaddy button on the product page." -msgstr "在商品页显示 ShareDaddy 按钮." - -#: classes/integrations/sharethis/class-wc-sharethis.php:29 -msgid "ShareThis" -msgstr "分享" - -#: classes/integrations/sharethis/class-wc-sharethis.php:30 -msgid "" -"ShareThis offers a sharing widget which will allow customers to share links " -"to products with their friends." -msgstr "ShareThis提供了一个共享小工具,这将允许客户分享你的产品给他们的朋友。" - -#: classes/integrations/sharethis/class-wc-sharethis.php:63 -msgid "ShareThis Publisher ID" -msgstr "ShareThis发布者ID" - -#: classes/integrations/sharethis/class-wc-sharethis.php:64 -msgid "" -"Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons on " -"product pages." -msgstr "" -"输入你的 %1$s ShareThis发布者ID%%2$s 用于在产品页面显示社交网站共享按钮。" - -#: classes/integrations/sharethis/class-wc-sharethis.php:69 -msgid "ShareThis Code" -msgstr "分享代码" - -#: classes/integrations/sharethis/class-wc-sharethis.php:70 -msgid "You can tweak the ShareThis code by editing this option." -msgstr "通过编辑此项选项,你可以调整分享代码。" - -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:22 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:329 -msgid "ShareYourCart" -msgstr "购物分享" - -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:23 -msgid "" -"Increase your social media exposure by 10 percent! ShareYourCart helps you " -"get more customers by motivating satisfied customers to talk with their " -"friends about your products. For help with ShareYourCart view the documentation." -msgstr "" -"增加你在社交网站10%曝光度!购物分享在顾客和他们朋谈论你的商品的时候,有助于你获" -"得更多客户.查看购物分享帮助 帮助文档." - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:328 -msgid "Share your cart settings" -msgstr "你的设置已保存。" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:342 -msgid "Button" -msgstr "按钮" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:343 -msgid "Customize Button" -msgstr "自定义按钮" - -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:351 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:352 -msgid "Documentation" -msgstr "文档" - -#: classes/integrations/shareyourcart/views/admin-page.php:33 -msgid "Setup your ShareYourCart account" -msgstr "注册分享帐号" - -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Create an account" -msgstr "创建一个帐户?" - -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Can't access your account?" -msgstr "找回您的分享帐号" - -#: classes/integrations/shareyourcart/views/admin-page.php:100 -msgid "Configure" -msgstr "修改分享帐号" - -#: classes/integrations/shareyourcart/views/admin-page.php:110 -#: classes/integrations/shareyourcart/views/button-settings-page.php:120 -msgid "Save changes" -msgstr "保存" - -#: classes/integrations/shareyourcart/views/button-settings-page.php:8 -#: classes/integrations/shareyourcart/views/button-settings-page.php:11 -msgid "Button style" -msgstr "按钮风格" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:25 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:85 -msgid "Flat Rate" -msgstr "标准运费" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:27 -msgid "Flat rates let you define a standard rate per item, or per order." -msgstr "统一运费让你为每个项目或每个订单定义了一个运费标准。" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:78 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:52 -msgid "Enable this shipping method" -msgstr "启用此送货方法" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:82 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:81 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:56 -msgid "Method Title" -msgstr "方法名称" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:89 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:63 -msgid "Availability" -msgstr "可用性" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:93 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:148 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:104 -msgid "All allowed countries" -msgstr "全部允许的国家" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:95 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:99 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:98 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:149 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:153 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:105 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:109 -msgid "Specific Countries" -msgstr "特定国家" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:107 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:81 -msgid "Tax Status" -msgstr "税费状态" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:111 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:85 -msgid "Taxable" -msgstr "应纳税" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:112 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:86 -msgid "None" -msgstr "无" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:116 -msgid "Cost per order" -msgstr "新添订单" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:122 -msgid "" -"Enter a cost (excluding tax) per order, e.g. 5.00. Leave blank to disable." -msgstr "输入每个订单的成本(不含税/运费),例如5.00元。留空禁用。" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:128 -msgid "Additional Rates" -msgstr "税率" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:130 -msgid "" -"Optional extra shipping options with additional costs (one per line): Option " -"Name | Additional Cost | Per Cost Type (order, class, or item) Example: " -"Priority Mail | 6.95 | order." -msgstr "" -"可选额外的配送选项的额外费用(每行一个):选项名称|额外费用,按成本类型(顺" -"序,类别或项目)例:Priority Mail | 6.95 | order." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:133 -msgid "Option Name | Additional Cost | Per Cost Type (order, class, or item)" -msgstr "选项​名称|额外费用|按成本类型(顺序,类别或项目)" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:136 -msgid "Additional Costs" -msgstr "其他信息" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:138 -msgid "" -"Additional costs can be added below - these will all be added to the per-" -"order cost above." -msgstr "下面可以添加额外的费用 - 这些都将被添加到每个订单的成本上面。" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:141 -msgid "Costs Added..." -msgstr "商品已添加" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:145 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:94 -msgid "Per Order - charge shipping for the entire order as a whole" -msgstr "每单 - 整个订单作为一个整体收取配送费" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:146 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:95 -msgid "Per Item - charge shipping for each item individually" -msgstr "每项 - 单独为每项收取配送费" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:147 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:96 -msgid "Per Class - charge shipping for each shipping class in an order" -msgstr "每类 - 为一个订单的每个配送类收取配送费" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:154 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:120 -msgid "Minimum Handling Fee" -msgstr "默认手续费" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:160 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:126 -msgid "" -"Enter a minimum fee amount. Fee's less than this will be increased. Leave " -"blank to disable." -msgstr "输入一个最低费用数额。费用将在此基础上增加。留空以禁用。" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:479 -msgid "Costs" -msgstr "总运费" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:485 -#: woocommerce.php:891 -msgid "Shipping Class" -msgstr "配送类型" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:486 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:100 -msgid "Cost" -msgstr "成本" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:486 -msgid "Cost, excluding tax." -msgstr "成本,不含税/运费." - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:487 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:112 -msgid "Handling Fee" -msgstr "手续费" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:487 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -msgstr "费用不含税/运费。输入金额,例如2.50,或一个百分比,例如: 5%。" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:492 -msgid "+ Add Cost" -msgstr "默认成本" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:492 -msgid "Delete selected costs" -msgstr "删除选定的行" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:498 -msgid "Any class" -msgstr "CSS 类" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:499 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:500 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:110 -#: templates/order/order-details.php:119 templates/order/order-details.php:134 -msgid "N/A" -msgstr "N/A" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:518 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:548 -msgid "Select a class…" -msgstr "选择一个类…" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:523 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:524 -msgid "0.00" -msgstr "0.00" - -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:562 -msgid "Delete the selected rates?" -msgstr "删除选择的费率?" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:25 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:145 -msgid "Free Shipping" -msgstr "免运费" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:77 -msgid "Enable Free Shipping" -msgstr "启用免运费" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:88 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:143 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:99 -msgid "Method availability" -msgstr "方法的可行性" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:106 -msgid "Free Shipping Requires..." -msgstr "免费送货需要免费送货券" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:111 -msgid "A valid free shipping coupon" -msgstr "免费送货需要免费送货券" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:112 -msgid "A minimum order amount (defined below)" -msgstr "最小订单金额(定义见下文)" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:113 -msgid "A minimum order amount OR a coupon" -msgstr "最小订单金额或优惠券" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:114 -msgid "A minimum order amount AND a coupon" -msgstr "最小订单金额和优惠券" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:118 -msgid "Minimum Order Amount" -msgstr "最小购买量" - -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:124 -msgid "" -"Users will need to spend this amount to get free shipping (if enabled above)." -msgstr "免运费的最低消费额(如果启用)。" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:29 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:59 -msgid "International Delivery" -msgstr "国际投递" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:30 -msgid "International delivery based on flat rate shipping." -msgstr "基于标准运费国际投递。" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:68 -msgid "Selected countries" -msgstr "选定的国家" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:69 -msgid "Excluding selected countries" -msgstr "排除选定的国家" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:73 -msgid "Countries" -msgstr "国家" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:90 -msgid "Cost Added..." -msgstr "商品已添加" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:106 -msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -msgstr "成本不含税。输入金额,例如2.50。" - -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:114 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. " -"Leave blank to disable." -msgstr "费用不含税。输入金额,例如2.50,或一个百分比,例如:5%。留空以禁用。" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:25 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:107 -msgid "Local Delivery" -msgstr "本地送货" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:98 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:78 -msgid "Enable" -msgstr "启用" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:100 -msgid "Enable local delivery" -msgstr "启用本地送货" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:111 -msgid "Fee Type" -msgstr "费用类型" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:113 -msgid "How to calculate delivery charges" -msgstr "如何计算送货费" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 -msgid "Fixed amount" -msgstr "每个产品的固定数额" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:117 -msgid "Percentage of cart total" -msgstr "平均订单总额" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:118 -msgid "Fixed amount per product" -msgstr "每个产品的固定数额" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:123 -msgid "Delivery Fee" -msgstr "运送费用" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:129 -msgid "" -"What fee do you want to charge for local delivery, disregarded if you choose " -"free. Leave blank to disable." -msgstr "你想要收取本地送货什么费,如果你选择免费将被无视。留空以禁用。" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:135 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:91 -msgid "Zip/Post Codes" -msgstr "邮政编码" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:137 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:93 -msgid "" -"What zip/post codes would you like to offer delivery to? Separate codes with " -"a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -msgstr "" -"请问您收货地址邮件是多少?接受模糊数字及通配符,比如您输入2*,包含了所有2开头的" -"邮编!" - -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:172 -msgid "" -"Local delivery is a simple shipping method for delivering orders locally." -msgstr "本地送货是为本地提供订单提供的一个超简单的配送方式。" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:25 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:87 -msgid "Local Pickup" -msgstr "当地取件" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:80 -msgid "Enable local pickup" -msgstr "启用本地取件" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:117 -msgid "Apply base tax rate" -msgstr "适用基本运费" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:119 -msgid "" -"When this shipping method is chosen, apply the base tax rate rather than for " -"the customer's given address." -msgstr "" -"如果选定了这个配送方式,适用的基本运费,而不是根据客户给出地址另计运费。" - -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:134 -msgid "" -"Local pickup is a simple method which allows the customer to pick up their " -"order themselves." -msgstr "本地取件是一个让顾客自己提取他们的订单的简单方法。" - -#: classes/shortcodes/class-wc-shortcode-cart.php:53 -#: woocommerce-functions.php:1701 -msgid "Please enter a valid postcode/ZIP." -msgstr "请输入一个有效的邮政编码。" - -#: classes/shortcodes/class-wc-shortcode-cart.php:64 -#: classes/shortcodes/class-wc-shortcode-cart.php:70 -msgid "Shipping costs updated." -msgstr "运费已更新。" - -#: classes/shortcodes/class-wc-shortcode-checkout.php:45 -msgid "" -"WooCommerce Config Error: The checkout thanks/pay pages are missing - these " -"pages are required for the checkout to function correctly. Please configure " -"the pages here." -msgstr "" -"WooCommerce配置错误: 付款感谢页丢失了 - 此页为正常结帐必须页面,. 请点此处设置." - -#: classes/shortcodes/class-wc-shortcode-checkout.php:73 -msgid "" -"The order totals have been updated. Please confirm your order by pressing " -"the Place Order button at the bottom of the page." -msgstr "订单总数已更新。请在页面底部按下单按钮确认您的订单。" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:78 -#: woocommerce-functions.php:1623 -msgid "Please enter your password." -msgstr "请输入你的密码。" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:93 -msgid "Your password has been reset." -msgstr "您的密码已被重置。" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:93 -msgid "Log in" -msgstr "登录" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:114 -msgid "Enter a username or e-mail address." -msgstr "错误:请输入用户名或电子邮件地址。" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:121 -msgid "There is no user registered with that email address." -msgstr "错误:未能通过电子邮件地址找到用户。" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:136 -msgid "Invalid username or e-mail." -msgstr "错误:用户名或电子邮件地址无效。" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:150 -msgid "Password reset is not allowed for this user" -msgstr "不能重设该用户的密码" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:178 -msgid "Check your e-mail for the confirmation link." -msgstr "请检查您的邮件,内有确认激活链接。" - -#: classes/shortcodes/class-wc-shortcode-lost-password.php:198 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:203 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:210 -msgid "Invalid key" -msgstr "无效 key" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:51 -msgid "Please enter a valid order ID" -msgstr "请输入正确的电子邮件地址。" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:55 -msgid "Please enter a valid order email" -msgstr "请输入正确的电子邮件地址。" - -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:74 -msgid "Sorry, we could not find that order id in our database." -msgstr "很抱歉,我们在数据库中找不到订单的ID." - -#: classes/shortcodes/class-wc-shortcode-pay.php:64 -#: classes/shortcodes/class-wc-shortcode-pay.php:118 -msgid "" -"Your order has already been paid for. Please contact us if you need " -"assistance." -msgstr "您的订单已经支付。如果您需要帮助请联系我们。" - -#: classes/shortcodes/class-wc-shortcode-pay.php:69 -#: classes/shortcodes/class-wc-shortcode-pay.php:125 -#: classes/shortcodes/class-wc-shortcode-view-order.php:51 -#: woocommerce-functions.php:909 woocommerce-functions.php:989 -msgid "Invalid order." -msgstr "无效订单。" - -#: classes/shortcodes/class-wc-shortcode-pay.php:90 -#: templates/checkout/thankyou.php:40 -#: templates/emails/customer-completed-order.php:18 -#: templates/emails/customer-invoice.php:22 -#: templates/emails/customer-note.php:22 -#: templates/emails/customer-processing-order.php:18 -msgid "Order:" -msgstr "订单:" - -#: classes/shortcodes/class-wc-shortcode-pay.php:94 -#: templates/checkout/thankyou.php:44 -msgid "Date:" -msgstr "日期:" - -#: classes/shortcodes/class-wc-shortcode-pay.php:98 -#: templates/checkout/thankyou.php:48 -msgid "Total:" -msgstr "总计:" - -#: classes/shortcodes/class-wc-shortcode-pay.php:103 -#: templates/checkout/thankyou.php:53 -msgid "Payment method:" -msgstr "付款方式:" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:51 -msgid "My Account →" -msgstr "我的账户 →" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:58 -msgid "" -"Order %s made on %s" -msgstr "" -"订单 %s 生成 " -"%s" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:59 -msgid "Order status: %s" -msgstr "添加新订单状态" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:65 -#: templates/order/tracking.php:31 -msgid "Order Updates" -msgstr "订单更新" - -#: classes/shortcodes/class-wc-shortcode-view-order.php:71 -msgid "l jS \\of F Y, h:ia" -msgstr "JS 回调" - -#: classes/widgets/class-wc-widget-best-sellers.php:31 -msgid "Display a list of your best selling products on your site." -msgstr "显示畅销产品列表在你网站。" - -#: classes/widgets/class-wc-widget-best-sellers.php:33 -msgid "WooCommerce Best Sellers" -msgstr "WooCommerce 畅销产品" - -#: classes/widgets/class-wc-widget-best-sellers.php:71 -msgid "Best Sellers" -msgstr "畅销产品" - -#: classes/widgets/class-wc-widget-best-sellers.php:189 -#: classes/widgets/class-wc-widget-cart.php:109 -#: classes/widgets/class-wc-widget-featured-products.php:169 -#: classes/widgets/class-wc-widget-layered-nav.php:349 -#: classes/widgets/class-wc-widget-onsale.php:176 -#: classes/widgets/class-wc-widget-price-filter.php:179 -#: classes/widgets/class-wc-widget-product-categories.php:185 -#: classes/widgets/class-wc-widget-product-search.php:91 -#: classes/widgets/class-wc-widget-product-tag-cloud.php:101 -#: classes/widgets/class-wc-widget-random-products.php:134 -#: classes/widgets/class-wc-widget-recent-products.php:170 -#: classes/widgets/class-wc-widget-recent-reviews.php:158 -#: classes/widgets/class-wc-widget-recently-viewed.php:166 -#: classes/widgets/class-wc-widget-top-rated-products.php:156 -msgid "Title:" -msgstr "标题:" - -#: classes/widgets/class-wc-widget-best-sellers.php:192 -#: classes/widgets/class-wc-widget-featured-products.php:172 -#: classes/widgets/class-wc-widget-onsale.php:179 -#: classes/widgets/class-wc-widget-random-products.php:139 -#: classes/widgets/class-wc-widget-recent-products.php:173 -#: classes/widgets/class-wc-widget-recent-reviews.php:161 -#: classes/widgets/class-wc-widget-recently-viewed.php:169 -#: classes/widgets/class-wc-widget-top-rated-products.php:159 -msgid "Number of products to show:" -msgstr "产品数量显示:" - -#: classes/widgets/class-wc-widget-best-sellers.php:196 -msgid "Hide free products" -msgstr "当正显示子类别,隐藏产品" - -#: classes/widgets/class-wc-widget-cart.php:33 -msgid "Display the user's Cart in the sidebar." -msgstr "在侧边栏显示顾客购物车." - -#: classes/widgets/class-wc-widget-cart.php:35 -msgid "WooCommerce Cart" -msgstr "页面内容: [woocommerce_cart]" - -#: classes/widgets/class-wc-widget-cart.php:113 -msgid "Hide if cart is empty" -msgstr "如果购物车是空的则隐藏" - -#: classes/widgets/class-wc-widget-featured-products.php:35 -msgid "Display a list of featured products on your site." -msgstr "显示特色产品列表在你网站。" - -#: classes/widgets/class-wc-widget-featured-products.php:37 -msgid "WooCommerce Featured Products" -msgstr "WooCommerce 特色产品" - -#: classes/widgets/class-wc-widget-featured-products.php:75 -msgid "Featured Products" -msgstr "特色产品" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:31 -msgid "Shows active layered nav filters so users can see and deactivate them." -msgstr "显示active layered nav过滤器,用户可以看到及关闭它们." - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:33 -msgid "WooCommerce Layered Nav Filters" -msgstr "WooCommerce Layered Nav 过滤器" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:62 -msgid "Active filters" -msgstr "该站点已经在正常状态了。" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:93 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Remove filter" -msgstr "删除图像" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -msgid "Min" -msgstr "%s 分钟" - -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -msgid "Max" -msgstr "最高价格" - -#: classes/widgets/class-wc-widget-layered-nav.php:31 -msgid "" -"Shows a custom attribute in a widget which lets you narrow down the list of " -"products when viewing product categories." -msgstr "" -"显示一个自定义属性在一个小工具,它允许你在查看产品类别的时候缩小产品列表。" - -#: classes/widgets/class-wc-widget-layered-nav.php:33 -msgid "WooCommerce Layered Nav" -msgstr "WooCommerce 分层导航" - -#: classes/widgets/class-wc-widget-layered-nav.php:100 -msgid "Any %s" -msgstr "任何 %s" - -#: classes/widgets/class-wc-widget-layered-nav.php:352 -msgid "Attribute:" -msgstr "属性:" - -#: classes/widgets/class-wc-widget-layered-nav.php:363 -msgid "Display Type:" -msgstr "显示类型:" - -#: classes/widgets/class-wc-widget-layered-nav.php:365 -msgid "List" -msgstr "列表" - -#: classes/widgets/class-wc-widget-layered-nav.php:366 -msgid "Dropdown" -msgstr "下拉" - -#: classes/widgets/class-wc-widget-layered-nav.php:369 -msgid "Query Type:" -msgstr "查询类型:" - -#: classes/widgets/class-wc-widget-layered-nav.php:371 -msgid "AND" -msgstr "和" - -#: classes/widgets/class-wc-widget-layered-nav.php:372 -msgid "OR" -msgstr "或" - -#: classes/widgets/class-wc-widget-onsale.php:31 -msgid "Display a list of your on-sale products on your site." -msgstr "显示一个促销产品列表在你的网站" - -#: classes/widgets/class-wc-widget-onsale.php:33 -msgid "WooCommerce On-sale" -msgstr "WooCommerce 热卖" - -#: classes/widgets/class-wc-widget-onsale.php:70 -msgid "On Sale" -msgstr "热卖" - -#: classes/widgets/class-wc-widget-price-filter.php:33 -msgid "" -"Shows a price filter slider in a widget which lets you narrow down the list " -"of shown products when viewing product categories." -msgstr "" -"显示一个价格筛选滑块在一个小工具,它允许您在查看产品类别时缩小显示产品列表。" - -#: classes/widgets/class-wc-widget-price-filter.php:35 -msgid "WooCommerce Price Filter" -msgstr "WooCommerce 价格筛选" - -#: classes/widgets/class-wc-widget-price-filter.php:136 -msgid "Min price" -msgstr "最低价格" - -#: classes/widgets/class-wc-widget-price-filter.php:137 -msgid "Max price" -msgstr "最高价格" - -#: classes/widgets/class-wc-widget-price-filter.php:138 -msgid "Filter" -msgstr "筛选" - -#: classes/widgets/class-wc-widget-price-filter.php:140 -msgid "Price:" -msgstr "价格:" - -#: classes/widgets/class-wc-widget-price-filter.php:162 -msgid "Filter by price" -msgstr "按价格筛选" - -#: classes/widgets/class-wc-widget-product-categories.php:33 -msgid "A list or dropdown of product categories." -msgstr "产品类别列表或下拉。" - -#: classes/widgets/class-wc-widget-product-categories.php:35 -msgid "WooCommerce Product Categories" -msgstr "WooCommerce 产品类别" - -#: classes/widgets/class-wc-widget-product-categories.php:57 -#: woocommerce.php:821 woocommerce.php:823 -msgid "Product Categories" -msgstr "产品类别" - -#: classes/widgets/class-wc-widget-product-categories.php:129 -msgid "No product categories exist." -msgstr "没有产品类别存在。" - -#: classes/widgets/class-wc-widget-product-categories.php:188 -msgid "Order by:" -msgstr "排序方式为:" - -#: classes/widgets/class-wc-widget-product-categories.php:190 -msgid "Category Order" -msgstr "类别排序" - -#: classes/widgets/class-wc-widget-product-categories.php:191 -#: templates/single-product-reviews.php:84 woocommerce-ajax.php:1171 -msgid "Name" -msgstr "姓名" - -#: classes/widgets/class-wc-widget-product-categories.php:195 -msgid "Show as dropdown" -msgstr "显示为下拉菜单" - -#: classes/widgets/class-wc-widget-product-categories.php:198 -msgid "Show post counts" -msgstr "显示文章数目" - -#: classes/widgets/class-wc-widget-product-categories.php:201 -msgid "Show hierarchy" -msgstr "体现层级关系" - -#: classes/widgets/class-wc-widget-product-categories.php:204 -msgid "Only show children for the current category" -msgstr "只显示当前分类的子类" - -#: classes/widgets/class-wc-widget-product-search.php:31 -msgid "A Search box for products only." -msgstr "仅用于产品的搜索框" - -#: classes/widgets/class-wc-widget-product-search.php:33 -msgid "WooCommerce Product Search" -msgstr "WooCommerce 产品搜索" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:31 -msgid "Your most used product tags in cloud format." -msgstr "您最常用的产品标签,以云格式。" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:33 -msgid "WooCommerce Product Tags" -msgstr "WooCommerce 产品标签" - -#: classes/widgets/class-wc-widget-product-tag-cloud.php:58 -#: woocommerce.php:857 woocommerce.php:859 -msgid "Product Tags" -msgstr "产品标签" - -#: classes/widgets/class-wc-widget-random-products.php:24 -msgid "WooCommerce Random Products" -msgstr "WooCommerce 随机产品" - -#: classes/widgets/class-wc-widget-random-products.php:27 -msgid "Display a list of random products on your site." -msgstr "显示随机产品列表在你网站。" - -#: classes/widgets/class-wc-widget-random-products.php:46 -msgid "Random Products" -msgstr "随机产品" - -#: classes/widgets/class-wc-widget-random-products.php:145 -#: classes/widgets/class-wc-widget-recent-products.php:177 -msgid "Show hidden product variations" -msgstr "显示隐藏产品变更" - -#: classes/widgets/class-wc-widget-recent-products.php:31 -msgid "Display a list of your most recent products on your site." -msgstr "显示最新产品列表在你网站。" - -#: classes/widgets/class-wc-widget-recent-products.php:33 -msgid "WooCommerce Recent Products" -msgstr "WooCommerce最新产品" - -#: classes/widgets/class-wc-widget-recent-products.php:70 -msgid "New Products" -msgstr "新产品" - -#: classes/widgets/class-wc-widget-recent-reviews.php:31 -msgid "Display a list of your most recent reviews on your site." -msgstr "显示最新评论列表在你网站" - -#: classes/widgets/class-wc-widget-recent-reviews.php:33 -msgid "WooCommerce Recent Reviews" -msgstr "WooCommerce最近评论" - -#: classes/widgets/class-wc-widget-recent-reviews.php:71 -msgid "Recent Reviews" -msgstr "最近评论" - -#: classes/widgets/class-wc-widget-recent-reviews.php:97 -msgctxt "by comment author" -msgid "by %1$s" -msgstr "by %1$s" - -#: classes/widgets/class-wc-widget-recently-viewed.php:31 -msgid "Display a list of recently viewed products." -msgstr "显示最近浏览过的产品列表。" - -#: classes/widgets/class-wc-widget-recently-viewed.php:33 -msgid "WooCommerce Recently Viewed Products" -msgstr "WooCommerce最近浏览过的产品" - -#: classes/widgets/class-wc-widget-recently-viewed.php:76 -msgid "Recently viewed" -msgstr "最近浏览" - -#: classes/widgets/class-wc-widget-top-rated-products.php:33 -msgid "Display a list of top rated products on your site." -msgstr "显示热门评价产品列表在你网站。" - -#: classes/widgets/class-wc-widget-top-rated-products.php:35 -msgid "WooCommerce Top Rated Products" -msgstr "WooCommerce热门评分产品" - -#: classes/widgets/class-wc-widget-top-rated-products.php:72 -msgid "Top Rated Products" -msgstr "评分最高的产品" - -#: i18n/states/AU.php:13 -msgid "Australian Capital Territory" -msgstr "澳大利亚首都直辖区" - -#: i18n/states/AU.php:14 -msgid "New South Wales" -msgstr "新南威尔士州" - -#: i18n/states/AU.php:15 -msgid "Northern Territory" -msgstr "北领地" - -#: i18n/states/AU.php:16 -msgid "Queensland" -msgstr "昆士兰" - -#: i18n/states/AU.php:17 -msgid "South Australia" -msgstr "南澳大利亚" - -#: i18n/states/AU.php:18 -msgid "Tasmania" -msgstr "塔斯马尼亚" - -#: i18n/states/AU.php:19 -msgid "Victoria" -msgstr "维多利亚" - -#: i18n/states/AU.php:20 -msgid "Western Australia" -msgstr "西澳大利亚州" - -#: i18n/states/BR.php:13 -msgid "Acre" -msgstr "英亩" - -#: i18n/states/BR.php:14 -msgid "Alagoas" -msgstr "阿拉戈斯州" - -#: i18n/states/BR.php:15 -msgid "Amapá" -msgstr "阿马帕州" - -#: i18n/states/BR.php:16 -msgid "Amazonas" -msgstr "亚马逊" - -#: i18n/states/BR.php:17 -msgid "Bahia" -msgstr "巴伊亚" - -#: i18n/states/BR.php:18 -msgid "Ceará" -msgstr "塞阿拉州" - -#: i18n/states/BR.php:19 -msgid "Distrito Federal" -msgstr "联邦首都区" - -#: i18n/states/BR.php:20 -msgid "Espírito Santo" -msgstr "圣埃斯皮里图" - -#: i18n/states/BR.php:21 -msgid "Goiás" -msgstr "戈亚斯" - -#: i18n/states/BR.php:22 -msgid "Maranhão" -msgstr "马拉尼昂州" - -#: i18n/states/BR.php:23 -msgid "Mato Grosso" -msgstr "马托格罗索" - -#: i18n/states/BR.php:24 -msgid "Mato Grosso do Sul" -msgstr "Mato Grosso do Sul" - -#: i18n/states/BR.php:25 -msgid "Minas Gerais" -msgstr "Minas Gerais" - -#: i18n/states/BR.php:26 -msgid "Pará" -msgstr "帕拉" - -#: i18n/states/BR.php:27 -msgid "Paraíba" -msgstr "Paraíba" - -#: i18n/states/BR.php:28 -msgid "Paraná" -msgstr "巴拉那州" - -#: i18n/states/BR.php:29 -msgid "Pernambuco" -msgstr "伯南布哥" - -#: i18n/states/BR.php:30 -msgid "Piauí" -msgstr "皮奥伊" - -#: i18n/states/BR.php:31 -msgid "Rio de Janeiro" -msgstr "不是垃圾评论 »" - -#: i18n/states/BR.php:32 -msgid "Rio Grande do Norte" -msgstr "Rio Grande do Norte" - -#: i18n/states/BR.php:33 -msgid "Rio Grande do Sul" -msgstr "Rio Grande do Sul" - -#: i18n/states/BR.php:34 -msgid "Rondônia" -msgstr "朗多尼亚" - -#: i18n/states/BR.php:35 -msgid "Roraima" -msgstr "罗赖马" - -#: i18n/states/BR.php:36 -msgid "Santa Catarina" -msgstr "Santa Catarina" - -#: i18n/states/BR.php:37 -msgid "São Paulo" -msgstr "马拉尼昂州" - -#: i18n/states/BR.php:38 -msgid "Sergipe" -msgstr "塞尔希培" - -#: i18n/states/BR.php:39 -msgid "Tocantins" -msgstr "托坎廷斯" - -#: i18n/states/CA.php:13 -msgid "Alberta" -msgstr "阿尔伯塔" - -#: i18n/states/CA.php:14 -msgid "British Columbia" -msgstr "不列颠哥伦比亚" - -#: i18n/states/CA.php:15 -msgid "Manitoba" -msgstr "马尼托巴" - -#: i18n/states/CA.php:16 -msgid "New Brunswick" -msgstr "新不伦瑞克" - -#: i18n/states/CA.php:17 -msgid "Newfoundland" -msgstr "纽芬兰" - -#: i18n/states/CA.php:18 -msgid "Northwest Territories" -msgstr "西北地区" - -#: i18n/states/CA.php:19 -msgid "Nova Scotia" -msgstr "新斯科舍" - -#: i18n/states/CA.php:20 -msgid "Nunavut" -msgstr "努纳武特地区" - -#: i18n/states/CA.php:21 -msgid "Ontario" -msgstr "安大略" - -#: i18n/states/CA.php:22 -msgid "Prince Edward Island" -msgstr "爱德华王子岛" - -#: i18n/states/CA.php:23 -msgid "Quebec" -msgstr "魁北克" - -#: i18n/states/CA.php:24 -msgid "Saskatchewan" -msgstr "萨斯喀彻温省" - -#: i18n/states/CA.php:25 -msgid "Yukon Territory" -msgstr "Yukon Territory" - -#: i18n/states/CN.php:13 -msgid "Yunnan / 云南" -msgstr "Yunnan / 云南" - -#: i18n/states/CN.php:14 -msgid "Beijing / 北京" -msgstr "Beijing / 北京" - -#: i18n/states/CN.php:15 -msgid "Tianjin / 天津" -msgstr "Tianjin / 天津" - -#: i18n/states/CN.php:16 -msgid "Hebei / 河北" -msgstr "Hebei / 河北" - -#: i18n/states/CN.php:17 -msgid "Shanxi / 山西" -msgstr "Shanxi / 山西" - -#: i18n/states/CN.php:18 -msgid "Inner Mongolia / 內蒙古" -msgstr "Inner Mongolia / 內蒙古" - -#: i18n/states/CN.php:19 -msgid "Liaoning / 辽宁" -msgstr "Liaoning / 辽宁" - -#: i18n/states/CN.php:20 -msgid "Jilin / 吉林" -msgstr "Jilin / 吉林" - -#: i18n/states/CN.php:21 -msgid "Heilongjiang / 黑龙江" -msgstr "Heilongjiang / 黑龙江" - -#: i18n/states/CN.php:22 -msgid "Shanghai / 上海" -msgstr "Shanghai / 上海" - -#: i18n/states/CN.php:23 -msgid "Jiangsu / 江苏" -msgstr "Jiangsu / 江苏" - -#: i18n/states/CN.php:24 -msgid "Zhejiang / 浙江" -msgstr "Zhejiang / 浙江" - -#: i18n/states/CN.php:25 -msgid "Anhui / 安徽" -msgstr "Anhui / 安徽" - -#: i18n/states/CN.php:26 -msgid "Fujian / 福建" -msgstr "Fujian / 福建" - -#: i18n/states/CN.php:27 -msgid "Jiangxi / 江西" -msgstr "Jiangxi / 江西" - -#: i18n/states/CN.php:28 -msgid "Shandong / 山东" -msgstr "Shandong / 山东" - -#: i18n/states/CN.php:29 -msgid "Henan / 河南" -msgstr "Henan / 河南" - -#: i18n/states/CN.php:30 -msgid "Hubei / 湖北" -msgstr "Hubei / 湖北" - -#: i18n/states/CN.php:31 -msgid "Hunan / 湖南" -msgstr "Hunan / 湖南" - -#: i18n/states/CN.php:32 -msgid "Guangdong / 广东" -msgstr "Guangdong / 广东" - -#: i18n/states/CN.php:33 -msgid "Guangxi Zhuang / 广西壮族" -msgstr "Guangxi Zhuang / 广西壮族" - -#: i18n/states/CN.php:34 -msgid "Hainan / 海南" -msgstr "Hainan / 海南" - -#: i18n/states/CN.php:35 -msgid "Chongqing / 重庆" -msgstr "Chongqing / 重庆" - -#: i18n/states/CN.php:36 -msgid "Sichuan / 四川" -msgstr "Sichuan / 四川" - -#: i18n/states/CN.php:37 -msgid "Guizhou / 贵州" -msgstr "Guizhou / 贵州" - -#: i18n/states/CN.php:38 -msgid "Shaanxi / 陕西" -msgstr "Shaanxi / 陕西" - -#: i18n/states/CN.php:39 -msgid "Gansu / 甘肃" -msgstr "Gansu / 甘肃" - -#: i18n/states/CN.php:40 -msgid "Qinghai / 青海" -msgstr "Qinghai / 青海" - -#: i18n/states/CN.php:41 -msgid "Ningxia Hui / 宁夏" -msgstr "Ningxia Hui / 宁夏" - -#: i18n/states/CN.php:42 -msgid "Macau / 澳门" -msgstr "Macau / 澳门" - -#: i18n/states/CN.php:43 -msgid "Tibet / 西藏" -msgstr "Tibet / 西藏" - -#: i18n/states/CN.php:44 -msgid "Xinjiang / 新疆" -msgstr "Xinjiang / 新疆" - -#: i18n/states/HK.php:13 -msgid "Hong Kong Island" -msgstr "香港岛" - -#: i18n/states/HK.php:14 -msgid "Kowloon" -msgstr "Kowloon" - -#: i18n/states/HK.php:15 -msgid "New Territories" -msgstr "新界" - -#: i18n/states/HU.php:13 -msgid "Bács-Kiskun" -msgstr "Bács-Kiskun" - -#: i18n/states/HU.php:14 -msgid "Békés" -msgstr "Békés" - -#: i18n/states/HU.php:15 -msgid "Baranya" -msgstr "Baranya" - -#: i18n/states/HU.php:16 -msgid "Borsod-Abaúj-Zemplén" -msgstr "Borsod-Abaúj-Zemplén" - -#: i18n/states/HU.php:17 -msgid "Budapest" -msgstr "Budapest" - -#: i18n/states/HU.php:18 -msgid "Csongrád" -msgstr "Csongrád" - -#: i18n/states/HU.php:19 -msgid "Fejér" -msgstr "Fejér" - -#: i18n/states/HU.php:20 -msgid "Győr-Moson-Sopron" -msgstr "Győr-Moson-Sopron" - -#: i18n/states/HU.php:21 -msgid "Hajdú-Bihar" -msgstr "Hajdú-Bihar" - -#: i18n/states/HU.php:22 -msgid "Heves" -msgstr "Heves" - -#: i18n/states/HU.php:23 -msgid "Jász-Nagykun-Szolnok" -msgstr "Jász-Nagykun-Szolnok" - -#: i18n/states/HU.php:24 -msgid "Komárom-Esztergom" -msgstr "Komárom-Esztergom" - -#: i18n/states/HU.php:25 -msgid "Nógrád" -msgstr "Nógrád" - -#: i18n/states/HU.php:26 -msgid "Pest" -msgstr "Pest" - -#: i18n/states/HU.php:27 -msgid "Somogy" -msgstr "Somogy" - -#: i18n/states/HU.php:28 -msgid "Szabolcs-Szatmár-Bereg" -msgstr "Szabolcs-Szatmár-Bereg" - -#: i18n/states/HU.php:29 -msgid "Tolna" -msgstr "Tolna" - -#: i18n/states/HU.php:30 -msgid "Vas" -msgstr "Vas" - -#: i18n/states/HU.php:31 -msgid "Veszprém" -msgstr "Veszprém" - -#: i18n/states/HU.php:32 -msgid "Zala" -msgstr "Zala" - -#: i18n/states/HZ.php:13 i18n/states/NZ.php:14 -msgid "Auckland" -msgstr "Auckland" - -#: i18n/states/HZ.php:14 i18n/states/NZ.php:16 -msgid "Bay of Plenty" -msgstr "Bay of Plenty" - -#: i18n/states/HZ.php:15 i18n/states/NZ.php:25 -msgid "Canterbury" -msgstr "Canterbury" - -#: i18n/states/HZ.php:16 i18n/states/NZ.php:18 -msgid "Hawke’s Bay" -msgstr "Hawke’s Bay" - -#: i18n/states/HZ.php:17 i18n/states/NZ.php:19 -msgid "Manawatu-Wanganui" -msgstr "Manawatu-Wanganui" - -#: i18n/states/HZ.php:18 i18n/states/NZ.php:22 -msgid "Marlborough" -msgstr "Marlborough" - -#: i18n/states/HZ.php:19 i18n/states/NZ.php:21 -msgid "Nelson" -msgstr "Nelson" - -#: i18n/states/HZ.php:20 i18n/states/NZ.php:13 -msgid "Northland" -msgstr "Northland" - -#: i18n/states/HZ.php:21 i18n/states/NZ.php:26 -msgid "Otago" -msgstr "Otago" - -#: i18n/states/HZ.php:22 i18n/states/NZ.php:27 -msgid "Southland" -msgstr "Southland" - -#: i18n/states/HZ.php:23 i18n/states/NZ.php:17 -msgid "Taranaki" -msgstr "Taranaki" - -#: i18n/states/HZ.php:24 i18n/states/NZ.php:23 -msgid "Tasman" -msgstr "Tasman" - -#: i18n/states/HZ.php:25 i18n/states/NZ.php:15 -msgid "Waikato" -msgstr "Waikato" - -#: i18n/states/HZ.php:26 i18n/states/NZ.php:20 -msgid "Wellington" -msgstr "Wellington" - -#: i18n/states/HZ.php:27 i18n/states/NZ.php:24 -msgid "West Coast" -msgstr "象牙海岸" - -#: i18n/states/ID.php:13 -msgid "Daerah Istimewa Aceh" -msgstr "Daerah Istimewa Aceh" - -#: i18n/states/ID.php:14 -msgid "Sumatera Utara" -msgstr "Sumatera Utara" - -#: i18n/states/ID.php:15 -msgid "Sumatera Barat" -msgstr "Sumatera Barat" - -#: i18n/states/ID.php:16 -msgid "Riau" -msgstr "Riau" - -#: i18n/states/ID.php:17 -msgid "Kepulauan Riau" -msgstr "Kepulauan Riau" - -#: i18n/states/ID.php:18 -msgid "Jambi" -msgstr "Jambi" - -#: i18n/states/ID.php:19 -msgid "Sumatera Selatan" -msgstr "Sumatera Selatan" - -#: i18n/states/ID.php:20 -msgid "Bangka Belitung" -msgstr "Bangka Belitung" - -#: i18n/states/ID.php:21 -msgid "Bengkulu" -msgstr "Bengkulu" - -#: i18n/states/ID.php:22 -msgid "Lampung" -msgstr "Lampung" - -#: i18n/states/ID.php:23 -msgid "DKI Jakarta" -msgstr "DKI Jakarta" - -#: i18n/states/ID.php:24 -msgid "Jawa Barat" -msgstr "Jawa Barat" - -#: i18n/states/ID.php:25 -msgid "Banten" -msgstr "Banten" - -#: i18n/states/ID.php:26 -msgid "Jawa Tengah" -msgstr "Jawa Tengah" - -#: i18n/states/ID.php:27 -msgid "Jawa Timur" -msgstr "Jawa Timur" - -#: i18n/states/ID.php:28 -msgid "Daerah Istimewa Yogyakarta" -msgstr "Daerah Istimewa Yogyakarta" - -#: i18n/states/ID.php:29 -msgid "Bali" -msgstr "Bali" - -#: i18n/states/ID.php:30 -msgid "Nusa Tenggara Barat" -msgstr "Nusa Tenggara Barat" - -#: i18n/states/ID.php:31 -msgid "Nusa Tenggara Timur" -msgstr "Nusa Tenggara Timur" - -#: i18n/states/ID.php:32 -msgid "Kalimantan Barat" -msgstr "Kalimantan Barat" - -#: i18n/states/ID.php:33 -msgid "Kalimantan Tengah" -msgstr "Kalimantan Tengah" - -#: i18n/states/ID.php:34 -msgid "Kalimantan Timur" -msgstr "Kalimantan Timur" - -#: i18n/states/ID.php:35 -msgid "Kalimantan Selatan" -msgstr "Kalimantan Selatan" - -#: i18n/states/ID.php:36 -msgid "Kalimantan Utara" -msgstr "Kalimantan Utara" - -#: i18n/states/ID.php:37 -msgid "Sulawesi Utara" -msgstr "Sulawesi Utara" - -#: i18n/states/ID.php:38 -msgid "Sulawesi Tengah" -msgstr "Sulawesi Tengah" - -#: i18n/states/ID.php:39 -msgid "Sulawesi Tenggara" -msgstr "Sulawesi Tenggara" - -#: i18n/states/ID.php:40 -msgid "Sulawesi Barat" -msgstr "Sulawesi Barat" - -#: i18n/states/ID.php:41 -msgid "Sulawesi Selatan" -msgstr "Sulawesi Selatan" - -#: i18n/states/ID.php:42 -msgid "Gorontalo" -msgstr "Gorontalo" - -#: i18n/states/ID.php:43 -msgid "Maluku" -msgstr "Maluku" - -#: i18n/states/ID.php:44 -msgid "Maluku Utara" -msgstr "Maluku Utara" - -#: i18n/states/ID.php:45 -msgid "Papua" -msgstr "巴布亚新几内亚" - -#: i18n/states/ID.php:46 -msgid "Papua Barat" -msgstr "巴布亚新几内亚" - -#: i18n/states/IN.php:13 -msgid "Andra Pradesh" -msgstr "Andra Pradesh" - -#: i18n/states/IN.php:14 -msgid "Arunachal Pradesh" -msgstr "Arunachal Pradesh" - -#: i18n/states/IN.php:15 -msgid "Assam" -msgstr "Assam" - -#: i18n/states/IN.php:16 -msgid "Bihar" -msgstr "Bihar" - -#: i18n/states/IN.php:17 -msgid "Chhattisgarh" -msgstr "Chhattisgarh" - -#: i18n/states/IN.php:18 -msgid "Goa" -msgstr "Goa" - -#: i18n/states/IN.php:19 -msgid "Gujarat" -msgstr "Gujarat" - -#: i18n/states/IN.php:20 -msgid "Haryana" -msgstr "Haryana" - -#: i18n/states/IN.php:21 -msgid "Himachal Pradesh" -msgstr "Himachal Pradesh" - -#: i18n/states/IN.php:22 -msgid "Jammu and Kashmir" -msgstr "批准并回复" - -#: i18n/states/IN.php:23 -msgid "Jharkhand" -msgstr "Jharkhand" - -#: i18n/states/IN.php:24 -msgid "Karnataka" -msgstr "Karnataka" - -#: i18n/states/IN.php:25 -msgid "Kerala" -msgstr "Kerala" - -#: i18n/states/IN.php:26 -msgid "Madhya Pradesh" -msgstr "Madhya Pradesh" - -#: i18n/states/IN.php:27 -msgid "Maharashtra" -msgstr "Maharashtra" - -#: i18n/states/IN.php:28 -msgid "Manipur" -msgstr "Manipur" - -#: i18n/states/IN.php:29 -msgid "Meghalaya" -msgstr "Meghalaya" - -#: i18n/states/IN.php:30 -msgid "Mizoram" -msgstr "Mizoram" - -#: i18n/states/IN.php:31 -msgid "Nagaland" -msgstr "Nagaland" - -#: i18n/states/IN.php:32 -msgid "Orissa" -msgstr "Orissa" - -#: i18n/states/IN.php:33 -msgid "Punjab" -msgstr "Punjab" - -#: i18n/states/IN.php:34 -msgid "Rajasthan" -msgstr "Rajasthan" - -#: i18n/states/IN.php:35 -msgid "Sikkim" -msgstr "Sikkim" - -#: i18n/states/IN.php:36 -msgid "Tamil Nadu" -msgstr "Tamil Nadu" - -#: i18n/states/IN.php:37 -msgid "Tripura" -msgstr "Tripura" - -#: i18n/states/IN.php:38 -msgid "Uttaranchal" -msgstr "Uttaranchal" - -#: i18n/states/IN.php:39 -msgid "Uttar Pradesh" -msgstr "Uttar Pradesh" - -#: i18n/states/IN.php:40 -msgid "West Bengal" -msgstr "西弗吉尼亚州" - -#: i18n/states/IN.php:41 -msgid "Andaman and Nicobar Islands" -msgstr "特克斯和凯科斯群岛" - -#: i18n/states/IN.php:42 -msgid "Chandigarh" -msgstr "Chandigarh" - -#: i18n/states/IN.php:43 -msgid "Dadar and Nagar Haveli" -msgstr "Dadar and Nagar Haveli" - -#: i18n/states/IN.php:44 -msgid "Daman and Diu" -msgstr "批准并回复" - -#: i18n/states/IN.php:45 -msgid "Delhi" -msgstr "Delhi" - -#: i18n/states/IN.php:46 -msgid "Lakshadeep" -msgstr "Lakshadeep" - -#: i18n/states/IN.php:47 -msgid "Pondicherry (Puducherry)" -msgstr "Pondicherry (Puducherry)" - -#: i18n/states/MY.php:13 -msgid "Johor" -msgstr "Johor" - -#: i18n/states/MY.php:14 -msgid "Kedah" -msgstr "Kedah" - -#: i18n/states/MY.php:15 -msgid "Kelantan" -msgstr "Kelantan" - -#: i18n/states/MY.php:16 -msgid "Melaka" -msgstr "Melaka" - -#: i18n/states/MY.php:17 -msgid "Negeri Sembilan" -msgstr "Negeri Sembilan" - -#: i18n/states/MY.php:18 -msgid "Pahang" -msgstr "Pahang" - -#: i18n/states/MY.php:19 -msgid "Perak" -msgstr "Perak" - -#: i18n/states/MY.php:20 -msgid "Perlis" -msgstr "Perlis" - -#: i18n/states/MY.php:21 -msgid "Pulau Pinang" -msgstr "Pulau Pinang" - -#: i18n/states/MY.php:22 -msgid "Sabah" -msgstr "Sabah" - -#: i18n/states/MY.php:23 -msgid "Sarawak" -msgstr "Sarawak" - -#: i18n/states/MY.php:24 -msgid "Selangor" -msgstr "Selangor" - -#: i18n/states/MY.php:25 -msgid "Terengganu" -msgstr "Terengganu" - -#: i18n/states/MY.php:26 -msgid "W.P. Kuala Lumpur" -msgstr "W.P. Kuala Lumpur" - -#: i18n/states/MY.php:27 -msgid "W.P. Labuan" -msgstr "W.P. Labuan" - -#: i18n/states/MY.php:28 -msgid "W.P. Putrajaya" -msgstr "W.P. Putrajaya" - -#: i18n/states/TH.php:13 -msgid "" -"Amnat Charoen (อำนาจเจร" -"ิญ)" -msgstr "" -"Amnat Charoen (อำนาจเจร" -"ิญ)" - -#: i18n/states/TH.php:14 -msgid "Ang Thong (อ่างทอง)" -msgstr "Ang Thong (อ่างทอง)" - -#: i18n/states/TH.php:15 -msgid "" -"Ayutthaya (พระนครศรี" -"อยุธยา)" -msgstr "" -"Ayutthaya (พระนครศรี" -"อยุธยา)" - -#: i18n/states/TH.php:16 -msgid "" -"Bangkok (กรุงเทพมห" -"านคร)" -msgstr "" -"Bangkok (กรุงเทพมห" -"านคร)" - -#: i18n/states/TH.php:17 -msgid "Bueng Kan (บึงกาฬ)" -msgstr "Bueng Kan (บึงกาฬ)" - -#: i18n/states/TH.php:18 -msgid "" -"Buri Ram (บุรีรัมย์)" -msgstr "" -"Buri Ram (บุรีรัมย์)" - -#: i18n/states/TH.php:19 -msgid "" -"Chachoengsao (ฉะเชิงเทร" -"า)" -msgstr "" -"Chachoengsao (ฉะเชิงเทร" -"า)" - -#: i18n/states/TH.php:20 -msgid "Chai Nat (ชัยนาท)" -msgstr "Chai Nat (ชัยนาท)" - -#: i18n/states/TH.php:21 -msgid "Chaiyaphum (ชัยภูมิ)" -msgstr "Chaiyaphum (ชัยภูมิ)" - -#: i18n/states/TH.php:22 -msgid "Chanthaburi (จันทบุรี)" -msgstr "Chanthaburi (จันทบุรี)" - -#: i18n/states/TH.php:23 -msgid "" -"Chiang Mai (เชียงใหม่)" -msgstr "" -"Chiang Mai (เชียงใหม่)" - -#: i18n/states/TH.php:24 -msgid "Chiang Rai (เชียงราย)" -msgstr "Chiang Rai (เชียงราย)" - -#: i18n/states/TH.php:25 -msgid "Chonburi (ชลบุรี)" -msgstr "Chonburi (ชลบุรี)" - -#: i18n/states/TH.php:26 -msgid "Chumphon (ชุมพร)" -msgstr "Chumphon (ชุมพร)" - -#: i18n/states/TH.php:27 -msgid "" -"Kalasin (กาฬสินธุ์)" -msgstr "" -"Kalasin (กาฬสินธุ์)" - -#: i18n/states/TH.php:28 -msgid "" -"Kamphaeng Phet (กำแพงเพช" -"ร)" -msgstr "" -"Kamphaeng Phet (กำแพงเพช" -"ร)" - -#: i18n/states/TH.php:29 -msgid "" -"Kanchanaburi (กาญจนบุร" -"ี)" -msgstr "" -"Kanchanaburi (กาญจนบุร" -"ี)" - -#: i18n/states/TH.php:30 -msgid "Khon Kaen (ขอนแก่น)" -msgstr "Khon Kaen (ขอนแก่น)" - -#: i18n/states/TH.php:31 -msgid "Krabi (กระบี่)" -msgstr "Krabi (กระบี่)" - -#: i18n/states/TH.php:32 -msgid "Lampang (ลำปาง)" -msgstr "Lampang (ลำปาง)" - -#: i18n/states/TH.php:33 -msgid "Lamphun (ลำพูน)" -msgstr "Lamphun (ลำพูน)" - -#: i18n/states/TH.php:34 -msgid "Loei (เลย)" -msgstr "Loei (เลย)" - -#: i18n/states/TH.php:35 -msgid "Lopburi (ลพบุรี)" -msgstr "Lopburi (ลพบุรี)" - -#: i18n/states/TH.php:36 -msgid "" -"Mae Hong Son (แม่ฮ่องสอ" -"น)" -msgstr "" -"Mae Hong Son (แม่ฮ่องสอ" -"น)" - -#: i18n/states/TH.php:37 -msgid "" -"Maha Sarakham (มหาสารคา" -"ม)" -msgstr "" -"Maha Sarakham (มหาสารคา" -"ม)" - -#: i18n/states/TH.php:38 -msgid "Mukdahan (มุกดาหาร)" -msgstr "Mukdahan (มุกดาหาร)" - -#: i18n/states/TH.php:39 -msgid "Nakhon Nayok (นครนายก)" -msgstr "Nakhon Nayok (นครนายก)" - -#: i18n/states/TH.php:40 -msgid "Nakhon Pathom (นครปฐม)" -msgstr "Nakhon Pathom (นครปฐม)" - -#: i18n/states/TH.php:41 -msgid "Nakhon Phanom (นครพนม)" -msgstr "Nakhon Phanom (นครพนม)" - -#: i18n/states/TH.php:42 -msgid "" -"Nakhon Ratchasima (นครราชสี" -"มา)" -msgstr "" -"Nakhon Ratchasima (นครราชสี" -"มา)" - -#: i18n/states/TH.php:43 -msgid "" -"Nakhon Sawan (นครสวรรค" -"์)" -msgstr "" -"Nakhon Sawan (นครสวรรค" -"์)" - -#: i18n/states/TH.php:44 -msgid "" -"Nakhon Si Thammarat (นครศรีธร" -"รมราช)" -msgstr "" -"Nakhon Si Thammarat (นครศรีธร" -"รมราช)" - -#: i18n/states/TH.php:45 -msgid "Nan (น่าน)" -msgstr "Nan (น่าน)" - -#: i18n/states/TH.php:46 -msgid "Narathiwat (นราธิวาส)" -msgstr "Narathiwat (นราธิวาส)" - -#: i18n/states/TH.php:47 -msgid "" -"Nong Bua Lam Phu (หนองบัวล" -"ำภู)" -msgstr "" -"Nong Bua Lam Phu (หนองบัวล" -"ำภู)" - -#: i18n/states/TH.php:48 -msgid "Nong Khai (หนองคาย)" -msgstr "Nong Khai (หนองคาย)" - -#: i18n/states/TH.php:49 -msgid "Nonthaburi (นนทบุรี)" -msgstr "Nonthaburi (นนทบุรี)" - -#: i18n/states/TH.php:50 -msgid "Pathum Thani (ปทุมธานี)" -msgstr "" -"Pathum Thani (ปทุมธานี)" - -#: i18n/states/TH.php:51 -msgid "Pattani (ปัตตานี)" -msgstr "Pattani (ปัตตานี)" - -#: i18n/states/TH.php:52 -msgid "Phang Nga (พังงา)" -msgstr "Phang Nga (พังงา)" - -#: i18n/states/TH.php:53 -msgid "Phatthalung (พัทลุง)" -msgstr "Phatthalung (พัทลุง)" - -#: i18n/states/TH.php:54 -msgid "Phayao (พะเยา)" -msgstr "Phayao (พะเยา)" - -#: i18n/states/TH.php:55 -msgid "" -"Phetchabun (เพชรบูรณ์)" -msgstr "" -"Phetchabun (เพชรบูรณ์)" - -#: i18n/states/TH.php:56 -msgid "Phetchaburi (เพชรบุรี)" -msgstr "Phetchaburi (เพชรบุรี)" - -#: i18n/states/TH.php:57 -msgid "Phichit (พิจิตร)" -msgstr "Phichit (พิจิตร)" - -#: i18n/states/TH.php:58 -msgid "Phitsanulok (พิษณุโลก)" -msgstr "Phitsanulok (พิษณุโลก)" - -#: i18n/states/TH.php:59 -msgid "Phrae (แพร่)" -msgstr "Phrae (แพร่)" - -#: i18n/states/TH.php:60 -msgid "Phuket (ภูเก็ต)" -msgstr "Phuket (ภูเก็ต)" - -#: i18n/states/TH.php:61 -msgid "" -"Prachin Buri (ปราจีนบุร" -"ี)" -msgstr "" -"Prachin Buri (ปราจีนบุร" -"ี)" - -#: i18n/states/TH.php:62 -msgid "" -"Prachuap Khiri Khan (ประจวบคี" -"รีขันธ์)" -msgstr "" -"Prachuap Khiri Khan (ประจวบคี" -"รีขันธ์)" - -#: i18n/states/TH.php:63 -msgid "Ranong (ระนอง)" -msgstr "Ranong (ระนอง)" - -#: i18n/states/TH.php:64 -msgid "Ratchaburi (ราชบุรี)" -msgstr "Ratchaburi (ราชบุรี)" - -#: i18n/states/TH.php:65 -msgid "Rayong (ระยอง)" -msgstr "Rayong (ระยอง)" - -#: i18n/states/TH.php:66 -msgid "Roi Et (ร้อยเอ็ด)" -msgstr "Roi Et (ร้อยเอ็ด)" - -#: i18n/states/TH.php:67 -msgid "Sa Kaeo (สระแก้ว)" -msgstr "Sa Kaeo (สระแก้ว)" - -#: i18n/states/TH.php:68 -msgid "Sakon Nakhon (สกลนคร)" -msgstr "Sakon Nakhon (สกลนคร)" - -#: i18n/states/TH.php:69 -msgid "" -"Samut Prakan (สมุทรปราก" -"าร)" -msgstr "" -"Samut Prakan (สมุทรปราก" -"าร)" - -#: i18n/states/TH.php:70 -msgid "" -"Samut Sakhon (สมุทรสาค" -"ร)" -msgstr "" -"Samut Sakhon (สมุทรสาค" -"ร)" - -#: i18n/states/TH.php:71 -msgid "" -"Samut Songkhram (สมุทรสงค" -"ราม)" -msgstr "" -"Samut Songkhram (สมุทรสงค" -"ราม)" - -#: i18n/states/TH.php:72 -msgid "Saraburi (สระบุรี)" -msgstr "Saraburi (สระบุรี)" - -#: i18n/states/TH.php:73 -msgid "Satun (สตูล)" -msgstr "Satun (สตูล)" - -#: i18n/states/TH.php:74 -msgid "" -"Sing Buri (สิงห์บุรี)" -msgstr "" -"Sing Buri (สิงห์บุรี)" - -#: i18n/states/TH.php:75 -msgid "Sisaket (ศรีสะเกษ)" -msgstr "Sisaket (ศรีสะเกษ)" - -#: i18n/states/TH.php:76 -msgid "Songkhla (สงขลา)" -msgstr "Songkhla (สงขลา)" - -#: i18n/states/TH.php:77 -msgid "Sukhothai (สุโขทัย)" -msgstr "Sukhothai (สุโขทัย)" - -#: i18n/states/TH.php:78 -msgid "" -"Suphan Buri (สุพรรณบุร" -"ี)" -msgstr "" -"Suphan Buri (สุพรรณบุร" -"ี)" - -#: i18n/states/TH.php:79 -msgid "" -"Surat Thani (สุราษฎร์ธ" -"านี)" -msgstr "" -"Surat Thani (สุราษฎร์ธ" -"านี)" - -#: i18n/states/TH.php:80 -msgid "Surin (สุรินทร์)" -msgstr "Surin (สุรินทร์)" - -#: i18n/states/TH.php:81 -msgid "Tak (ตาก)" -msgstr "Tak (ตาก)" - -#: i18n/states/TH.php:82 -msgid "Trang (ตรัง)" -msgstr "Trang (ตรัง)" - -#: i18n/states/TH.php:83 -msgid "Trat (ตราด)" -msgstr "Trat (ตราด)" - -#: i18n/states/TH.php:84 -msgid "" -"Ubon Ratchathani (อุบลราชธ" -"านี)" -msgstr "" -"Ubon Ratchathani (อุบลราชธ" -"านี)" - -#: i18n/states/TH.php:85 -msgid "Udon Thani (อุดรธานี)" -msgstr "Udon Thani (อุดรธานี)" - -#: i18n/states/TH.php:86 -msgid "" -"Uthai Thani (อุทัยธานี)" -msgstr "" -"Uthai Thani (อุทัยธานี)" - -#: i18n/states/TH.php:87 -msgid "" -"Uttaradit (อุตรดิตถ์)" -msgstr "" -"Uttaradit (อุตรดิตถ์)" - -#: i18n/states/TH.php:88 -msgid "Yala (ยะลา)" -msgstr "Yala (ยะลา)" - -#: i18n/states/TH.php:89 -msgid "Yasothon (ยโสธร)" -msgstr "Yasothon (ยโสธร)" - -#: i18n/states/US.php:13 -msgid "Alabama" -msgstr "阿拉巴马州" - -#: i18n/states/US.php:14 -msgid "Alaska" -msgstr "阿拉斯加州" - -#: i18n/states/US.php:15 -msgid "Arizona" -msgstr "亚利桑那" - -#: i18n/states/US.php:16 -msgid "Arkansas" -msgstr "阿肯色州" - -#: i18n/states/US.php:17 -msgid "California" -msgstr "加州" - -#: i18n/states/US.php:18 -msgid "Colorado" -msgstr "科罗拉多州" - -#: i18n/states/US.php:19 -msgid "Connecticut" -msgstr "康涅狄格" - -#: i18n/states/US.php:20 -msgid "Delaware" -msgstr "特拉华州" - -#: i18n/states/US.php:21 -msgid "District Of Columbia" -msgstr "哥伦比亚特区" - -#: i18n/states/US.php:22 -msgid "Florida" -msgstr "佛罗里达" - -#: i18n/states/US.php:24 -msgid "Hawaii" -msgstr "夏威夷" - -#: i18n/states/US.php:25 -msgid "Idaho" -msgstr "爱达荷州" - -#: i18n/states/US.php:26 -msgid "Illinois" -msgstr "伊利诺伊州" - -#: i18n/states/US.php:27 -msgid "Indiana" -msgstr "印地安那" - -#: i18n/states/US.php:28 -msgid "Iowa" -msgstr "爱荷华州" - -#: i18n/states/US.php:29 -msgid "Kansas" -msgstr "堪萨斯" - -#: i18n/states/US.php:30 -msgid "Kentucky" -msgstr "肯塔基州" - -#: i18n/states/US.php:31 -msgid "Louisiana" -msgstr "路易斯安那州" - -#: i18n/states/US.php:32 -msgid "Maine" -msgstr "缅因州" - -#: i18n/states/US.php:33 -msgid "Maryland" -msgstr "马里兰" - -#: i18n/states/US.php:34 -msgid "Massachusetts" -msgstr "美国马萨诸塞州" - -#: i18n/states/US.php:35 -msgid "Michigan" -msgstr "密歇根" - -#: i18n/states/US.php:36 -msgid "Minnesota" -msgstr "明尼苏达州" - -#: i18n/states/US.php:37 -msgid "Mississippi" -msgstr "密西西比河" - -#: i18n/states/US.php:38 -msgid "Missouri" -msgstr "密苏里州" - -#: i18n/states/US.php:39 -msgid "Montana" -msgstr "蒙大拿" - -#: i18n/states/US.php:40 -msgid "Nebraska" -msgstr "内布拉斯加州" - -#: i18n/states/US.php:41 -msgid "Nevada" -msgstr "内华达州" - -#: i18n/states/US.php:42 -msgid "New Hampshire" -msgstr "新罕布什尔州" - -#: i18n/states/US.php:43 -msgid "New Jersey" -msgstr "新泽西" - -#: i18n/states/US.php:44 -msgid "New Mexico" -msgstr "新墨西哥" - -#: i18n/states/US.php:45 -msgid "New York" -msgstr "纽约" - -#: i18n/states/US.php:46 -msgid "North Carolina" -msgstr "北卡罗莱纳州" - -#: i18n/states/US.php:47 -msgid "North Dakota" -msgstr "北达科他州" - -#: i18n/states/US.php:48 -msgid "Ohio" -msgstr "俄亥俄州" - -#: i18n/states/US.php:49 -msgid "Oklahoma" -msgstr "俄克拉何马" - -#: i18n/states/US.php:50 -msgid "Oregon" -msgstr "俄勒冈州" - -#: i18n/states/US.php:51 -msgid "Pennsylvania" -msgstr "宾夕法尼亚州" - -#: i18n/states/US.php:52 -msgid "Rhode Island" -msgstr "罗德岛" - -#: i18n/states/US.php:53 -msgid "South Carolina" -msgstr "南卡罗来纳州" - -#: i18n/states/US.php:54 -msgid "South Dakota" -msgstr "南达科他州" - -#: i18n/states/US.php:55 -msgid "Tennessee" -msgstr "田纳西州" - -#: i18n/states/US.php:56 -msgid "Texas" -msgstr "得克萨斯州" - -#: i18n/states/US.php:57 -msgid "Utah" -msgstr "犹他州" - -#: i18n/states/US.php:58 -msgid "Vermont" -msgstr "佛蒙特" - -#: i18n/states/US.php:59 -msgid "Virginia" -msgstr "弗吉尼亚州" - -#: i18n/states/US.php:60 -msgid "Washington" -msgstr "华盛顿" - -#: i18n/states/US.php:61 -msgid "West Virginia" -msgstr "西弗吉尼亚州" - -#: i18n/states/US.php:62 -msgid "Wisconsin" -msgstr "威斯康星州" - -#: i18n/states/US.php:63 -msgid "Wyoming" -msgstr "怀俄明州" - -#: i18n/states/US.php:64 -msgid "Armed Forces (AA)" -msgstr "美国武装部队" - -#: i18n/states/US.php:65 -msgid "Armed Forces (AE)" -msgstr "美国武装部队" - -#: i18n/states/US.php:66 -msgid "Armed Forces (AP)" -msgstr "美国武装部队" - -#: i18n/states/US.php:67 -msgid "American Samoa" -msgstr "美属萨摩亚" - -#: i18n/states/US.php:68 -msgid "Guam" -msgstr "关岛" - -#: i18n/states/US.php:69 -msgid "Northern Mariana Islands" -msgstr "北马里亚纳群岛" - -#: i18n/states/US.php:70 -msgid "Puerto Rico" -msgstr "波多黎各" - -#: i18n/states/US.php:71 -msgid "US Minor Outlying Islands" -msgstr "美国本土外小岛屿" - -#: i18n/states/US.php:72 -msgid "US Virgin Islands" -msgstr "英属维尔京群岛" - -#: i18n/states/ZA.php:13 -msgid "Eastern Cape" -msgstr "佛得角" - -#: i18n/states/ZA.php:14 -msgid "Free State" -msgstr "地区/县" - -#: i18n/states/ZA.php:15 -msgid "Gauteng" -msgstr "Gauteng" - -#: i18n/states/ZA.php:16 -msgid "KwaZulu-Natal" -msgstr "KwaZulu-Natal" - -#: i18n/states/ZA.php:17 -msgid "Limpopo" -msgstr "Limpopo" - -#: i18n/states/ZA.php:18 -msgid "Mpumalanga" -msgstr "Mpumalanga" - -#: i18n/states/ZA.php:19 -msgid "Northern Cape" -msgstr "佛得角" - -#: i18n/states/ZA.php:20 -msgid "North West" -msgstr "西弗吉尼亚州" - -#: i18n/states/ZA.php:21 -msgid "Western Cape" -msgstr "佛得角" - -#: i18n/strings.php:16 -msgid "pending" -msgstr "等待中" - -#: i18n/strings.php:17 -msgid "failed" -msgstr "失败" - -#: i18n/strings.php:18 -msgid "on-hold" -msgstr "保留" - -#: i18n/strings.php:19 -msgid "processing" -msgstr "处理中" - -#: i18n/strings.php:20 -msgid "completed" -msgstr "已完成" - -#: i18n/strings.php:21 -msgid "refunded" -msgstr "退款" - -#: i18n/strings.php:22 -msgid "cancelled" -msgstr "已取消" - -#: templates/cart/cart-empty.php:14 -msgid "Your cart is currently empty." -msgstr "您的购物车目前是空的。" - -#: templates/cart/cart-empty.php:18 -msgid "← Return To Shop" -msgstr "← 返回商店" - -#: templates/cart/cart.php:28 templates/checkout/form-pay.php:19 -#: templates/checkout/review-order.php:21 -#: templates/emails/admin-new-order.php:22 -#: templates/emails/customer-completed-order.php:23 -#: templates/emails/customer-invoice.php:27 -#: templates/emails/customer-note.php:27 -#: templates/emails/customer-processing-order.php:23 -#: templates/order/order-details.php:20 woocommerce.php:983 -msgid "Product" -msgstr "商品" - -#: templates/cart/cart.php:29 templates/emails/admin-new-order.php:24 -#: templates/emails/customer-completed-order.php:25 -#: templates/emails/customer-invoice.php:29 -#: templates/emails/customer-note.php:29 -#: templates/emails/customer-processing-order.php:25 -msgid "Price" -msgstr "价格" - -#: templates/cart/cart.php:30 templates/emails/admin-new-order.php:23 -#: templates/emails/customer-completed-order.php:24 -#: templates/emails/customer-invoice.php:28 -#: templates/emails/customer-note.php:28 -#: templates/emails/customer-processing-order.php:24 -msgid "Quantity" -msgstr "数量" - -#: templates/cart/cart.php:31 templates/checkout/review-order.php:22 -#: templates/myaccount/my-orders.php:35 templates/order/order-details.php:21 -msgid "Total" -msgstr "合计" - -#: templates/cart/cart.php:47 -msgid "Remove this item" -msgstr "移除本项" - -#: templates/cart/cart.php:100 -#: templates/single-product/add-to-cart/quantity.php:12 -msgctxt "Product quantity input tooltip" -msgid "Qty" -msgstr "数量" - -#: templates/cart/cart.php:127 woocommerce.php:1096 -msgid "Coupon" -msgstr "优惠券" - -#: templates/cart/cart.php:127 templates/checkout/form-coupon.php:29 -msgid "Apply Coupon" -msgstr "使用优惠券" - -#: templates/cart/cart.php:134 -msgid "Update Cart" -msgstr "更新购物车" - -#: templates/cart/cart.php:134 -msgid "Proceed to Checkout →" -msgstr "前往收银台→" - -#: templates/cart/cross-sells.php:38 -msgid "You may be interested in…" -msgstr "你也许还对这些有兴趣…" - -#: templates/cart/mini-cart.php:55 -msgid "No products in the cart." -msgstr "购物车里没有产品" - -#: templates/cart/mini-cart.php:63 -msgid "Subtotal" -msgstr "小计" - -#: templates/cart/mini-cart.php:69 -msgid "Checkout →" -msgstr "结账 →" - -#: templates/cart/shipping-calculator.php:22 -msgid "Calculate Shipping" -msgstr "计算运费" - -#: templates/cart/shipping-calculator.php:28 woocommerce-template.php:1334 -msgid "Select a country…" -msgstr "选择国家…" - -#: templates/cart/shipping-calculator.php:45 -#: templates/cart/shipping-calculator.php:51 -#: templates/cart/shipping-calculator.php:63 -msgid "State / county" -msgstr "地区/县" - -#: templates/cart/shipping-calculator.php:52 woocommerce-template.php:1384 -msgid "Select a state…" -msgstr "选择地区…" - -#: templates/cart/shipping-calculator.php:72 -msgid "City" -msgstr "城市" - -#: templates/cart/shipping-calculator.php:85 -msgid "Update Totals" -msgstr "更新总计" - -#: templates/cart/shipping-methods.php:32 -msgid "Free" -msgstr "免费!" - -#: templates/cart/shipping-methods.php:68 -msgid "Please fill in your details to see available shipping methods." -msgstr "请参阅可用的配送方法填写您的详细资料。" - -#: templates/cart/shipping-methods.php:76 templates/cart/totals.php:147 -msgid "" -"Sorry, it seems that there are no available shipping methods for your " -"location (%s)." -msgstr "很抱歉,似乎你的位置没有可用的配送方式 (%s)." - -#: templates/cart/shipping-methods.php:76 templates/cart/totals.php:147 -msgid "" -"If you require assistance or wish to make alternate arrangements please " -"contact us." -msgstr "如果您需要帮助,或希望作出其他安排,请与我们联系。" - -#: templates/cart/totals.php:22 -msgid "Cart Totals" -msgstr "购物车总计" - -#: templates/cart/totals.php:28 templates/checkout/review-order.php:27 -msgid "Cart Subtotal" -msgstr "购物车小计" - -#: templates/cart/totals.php:35 templates/checkout/review-order.php:34 -#: woocommerce.php:1690 -msgid "Cart Discount" -msgstr "购物返现" - -#: templates/cart/totals.php:35 templates/cart/totals.php:83 -msgid "[Remove]" -msgstr "[Remove]" - -#: templates/cart/totals.php:46 templates/checkout/review-order.php:45 -msgid "Shipping" -msgstr "配送" - -#: templates/cart/totals.php:83 templates/checkout/review-order.php:82 -msgid "Order Discount" -msgstr "订单折扣" - -#: templates/cart/totals.php:92 templates/checkout/review-order.php:91 -msgid "Order Total" -msgstr "订单总计" - -#: templates/cart/totals.php:121 -msgid " (taxes estimated for %s)" -msgstr "(税费估计为 %s)" - -#: templates/cart/totals.php:123 -msgid "" -"Note: Shipping and taxes are estimated%s and will be updated during checkout " -"based on your billing and shipping information." -msgstr "" -"注意:运费和税费估计值为%s并且将在将在结帐时更新到帐单和配送信息的基础上。" - -#: templates/cart/totals.php:135 -msgid "" -"No shipping methods were found; please recalculate your shipping and enter " -"your state/county and zip/postcode to ensure there are no other available " -"methods for your location." -msgstr "" -"没有发现可用的配送方式,请重新计算您的运费,并输入你的州/县/邮政编码,以确保" -"您的位置没有其他可用的配送方法。" - -#: templates/checkout/cart-errors.php:16 -msgid "" -"There are some issues with the items in your cart (shown above). Please go " -"back to the cart page and resolve these issues before checking out." -msgstr "" -"您购物车中的项目有一些问题(如上所示)。请回到购物车页,并在结账之前解决这些" -"问题。" - -#: templates/checkout/cart-errors.php:20 -msgid "← Return To Cart" -msgstr "← 返回购物车" - -#: templates/checkout/form-billing.php:17 -msgid "Billing & Shipping" -msgstr "搜索配送类型" - -#: templates/checkout/form-billing.php:21 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:19 templates/myaccount/my-address.php:25 -#: templates/order/order-details.php:115 -msgid "Billing Address" -msgstr "账单地址" - -#: templates/checkout/form-billing.php:42 -msgid "Create an account?" -msgstr "创建一个帐户?" - -#: templates/checkout/form-billing.php:51 -msgid "" -"Create an account by entering the information below. If you are a returning " -"customer please login at the top of the page." -msgstr "请输入以下信息在本站注册帐号,如果您已有帐号,可以在网站的顶部登录." - -#: templates/checkout/form-checkout.php:20 -msgid "You must be logged in to checkout." -msgstr "你必须登录才能结帐。" - -#: templates/checkout/form-checkout.php:51 -msgid "Your order" -msgstr "你的订单" - -#: templates/checkout/form-coupon.php:17 -msgid "Have a coupon?" -msgstr "您有优惠券?" - -#: templates/checkout/form-coupon.php:20 -msgid "Click here to enter your code" -msgstr "点这里输入你的代码" - -#: templates/checkout/form-coupon.php:25 -msgid "Coupon code" -msgstr "优惠券代码" - -#: templates/checkout/form-login.php:14 -msgid "Returning customer?" -msgstr "客户详情" - -#: templates/checkout/form-login.php:17 -msgid "Click here to login" -msgstr "单击这里登录" - -#: templates/checkout/form-login.php:22 -msgid "" -"If you have shopped with us before, please enter your details in the boxes " -"below. If you are a new customer please proceed to the Billing & " -"Shipping section." -msgstr "" -"如果您之前在我们网站购物过,请在下边框内输入详细资料.如果您是一个新顾客,请继续" -"完成帐单&配送部分." - -#: templates/checkout/form-pay.php:20 -msgid "Qty" -msgstr "数量" - -#: templates/checkout/form-pay.php:21 -msgid "Totals" -msgstr "总计" - -#: templates/checkout/form-pay.php:78 -msgid "" -"Sorry, it seems that there are no available payment methods for your " -"location. Please contact us if you require assistance or wish to make " -"alternate arrangements." -msgstr "" -"很抱歉,似乎你所在的位置没有可用的付款方式。如果您需要帮助请联系我们,或希望" -"使其他安排。" - -#: templates/checkout/form-pay.php:87 -msgid "Pay for order" -msgstr "为订单付款" - -#: templates/checkout/form-shipping.php:32 -msgid "Ship to billing address?" -msgstr "只运送到用户的帐单地址" - -#: templates/checkout/form-shipping.php:35 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:20 templates/order/order-details.php:130 -msgid "Shipping Address" -msgstr "配送地址" - -#: templates/checkout/form-shipping.php:59 -#: templates/single-product/tabs/additional-information.php:14 -#: woocommerce-template.php:759 -msgid "Additional Information" -msgstr "其他信息" - -#: templates/checkout/review-order.php:174 -msgid "Please fill in your details above to see available payment methods." -msgstr "请在上面填写您的详细资料,看到可用的付款方式。" - -#: templates/checkout/review-order.php:176 -msgid "" -"Sorry, it seems that there are no available payment methods for your state. " -"Please contact us if you require assistance or wish to make alternate " -"arrangements." -msgstr "" -"很抱歉,似乎你的地区没有可用的付款方式。如果您需要帮助请联系我们,或希望使其" -"他安排。" - -#: templates/checkout/review-order.php:185 -msgid "" -"Since your browser does not support JavaScript, or it is disabled, please " -"ensure you click the Update Totals button before placing your " -"order. You may be charged more than the amount stated above if you fail to " -"do so." -msgstr "" -"由于您的浏览器不支持JavaScript,或者它被禁用,在你付款之前请确保你单击的" -"更新总计按钮,如果你不这样做,你可能会支付超过上述金额。" - -#: templates/checkout/review-order.php:185 -msgid "Update totals" -msgstr "更新总数" - -#: templates/checkout/review-order.php:192 -msgid "Place order" -msgstr "下单" - -#: templates/checkout/review-order.php:199 -msgid "I have read and accept the" -msgstr "批准并回复" - -#: templates/checkout/review-order.php:199 -msgid "terms & conditions" -msgstr "条款& 条件" - -#: templates/checkout/thankyou.php:18 -msgid "" -"Unfortunately your order cannot be processed as the originating bank/" -"merchant has declined your transaction." -msgstr "糟糕,您的订单无法处理,作为发起银行/商人拒绝您的交易。" - -#: templates/checkout/thankyou.php:22 -msgid "Please attempt your purchase again or go to your account page." -msgstr "请再次尝试购买,或到您的帐户页面。" - -#: templates/checkout/thankyou.php:24 -msgid "Please attempt your purchase again." -msgstr "请再次尝试购买。" - -#: templates/checkout/thankyou.php:36 templates/checkout/thankyou.php:67 -msgid "Thank you. Your order has been received." -msgstr "谢谢。您的订单已收到。" - -#: templates/emails/admin-new-order.php:13 -#: templates/emails/plain/admin-new-order.php:13 -msgid "You have received an order from %s. Their order is as follows:" -msgstr "您在%s 有新订单,订单信息为:" - -#: templates/emails/admin-new-order.php:17 -msgid "Order: %s" -msgstr "订单" - -#: templates/emails/admin-new-order.php:50 -#: templates/emails/customer-completed-order.php:51 -#: templates/emails/customer-note.php:55 -#: templates/emails/customer-processing-order.php:51 -#: templates/emails/plain/admin-new-order.php:38 -#: templates/order/order-details.php:97 -msgid "Customer details" -msgstr "客户详情" - -#: templates/emails/admin-new-order.php:53 -#: templates/emails/customer-completed-order.php:54 -#: templates/emails/customer-note.php:58 -#: templates/emails/customer-processing-order.php:54 -#: templates/emails/plain/admin-new-order.php:41 -#: templates/emails/plain/customer-completed-order.php:41 -#: templates/emails/plain/customer-note.php:49 -#: templates/emails/plain/customer-processing-order.php:41 -#: templates/order/order-details.php:101 -msgid "Email:" -msgstr "Email:" - -#: templates/emails/admin-new-order.php:56 -#: templates/emails/customer-completed-order.php:57 -#: templates/emails/customer-note.php:61 -#: templates/emails/customer-processing-order.php:57 -#: templates/emails/plain/admin-new-order.php:44 -#: templates/emails/plain/customer-completed-order.php:44 -#: templates/emails/plain/customer-note.php:52 -#: templates/emails/plain/customer-processing-order.php:44 -msgid "Tel:" -msgstr "电话:" - -#: templates/emails/customer-completed-order.php:14 -#: templates/emails/plain/customer-completed-order.php:13 -msgid "" -"Hi there. Your recent order on %s has been completed. Your order details are " -"shown below for your reference:" -msgstr "您好。您在%s最新的订单已经完成。您的订单详情如下,供您参考:" - -#: templates/emails/customer-invoice.php:16 -#: templates/emails/plain/customer-invoice.php:14 -msgid "" -"An order has been created for you on %s. To pay for this order please use " -"the following link: %s" -msgstr "您在%s订单已生成。支付此订单,请使用下面的链接:%s" - -#: templates/emails/customer-invoice.php:16 -msgid "pay" -msgstr "支付" - -#: templates/emails/customer-new-account.php:14 -#: templates/emails/plain/customer-new-account.php:13 -msgid "" -"Thanks for creating an account on %s. Your username is %s." -msgstr "感谢在 %s 创建账户。你的用户名为%s." - -#: templates/emails/customer-new-account.php:16 -#: templates/emails/plain/customer-new-account.php:15 -msgid "You can access your account area here: %s." -msgstr "您可以查看您的帐户资料:%s." - -#: templates/emails/customer-note.php:14 -#: templates/emails/plain/customer-note.php:13 -msgid "Hello, a note has just been added to your order:" -msgstr "你好,一个说明刚刚已经添加到您的订单:" - -#: templates/emails/customer-note.php:18 -#: templates/emails/plain/customer-note.php:21 -msgid "For your reference, your order details are shown below." -msgstr "供您参考,您的订单的详细信息如下所示。" - -#: templates/emails/customer-processing-order.php:14 -#: templates/emails/plain/customer-processing-order.php:13 -msgid "" -"Your order has been received and is now being processed. Your order details " -"are shown below for your reference:" -msgstr "您的订单已收到,正在处理中。您的订单详情如下,供您参考:" - -#: templates/emails/customer-reset-password.php:14 -#: templates/emails/plain/customer-reset-password.php:13 -msgid "Someone requested that the password be reset for the following account:" -msgstr "有人要求重设如下帐号的密码:" - -#: templates/emails/customer-reset-password.php:15 -#: templates/emails/plain/customer-reset-password.php:15 -msgid "Username: %s" -msgstr "用户名:%s" - -#: templates/emails/customer-reset-password.php:16 -#: templates/emails/plain/customer-reset-password.php:16 -msgid "If this was a mistake, just ignore this email and nothing will happen." -msgstr "若这不是您本人要求的,请忽略本邮件,一切如常。" - -#: templates/emails/customer-reset-password.php:17 -#: templates/emails/plain/customer-reset-password.php:17 -msgid "To reset your password, visit the following address:" -msgstr "要重置您的密码,请打开下面的链接:" - -#: templates/emails/customer-reset-password.php:20 -msgid "Click here to reset your password" -msgstr "点这里输入你的代码" - -#: templates/emails/email-addresses.php:18 -#: templates/emails/plain/email-addresses.php:12 -msgid "Billing address" -msgstr "账单地址" - -#: templates/emails/email-addresses.php:28 -#: templates/emails/plain/email-addresses.php:17 -msgid "Shipping address" -msgstr "送货地址" - -#: templates/emails/email-order-items.php:47 -msgid "Download %d:" -msgstr "下载%d:" - -#: templates/emails/email-order-items.php:49 -msgid "Download:" -msgstr "下载" - -#: templates/emails/plain/admin-new-order.php:19 -#: templates/emails/plain/customer-completed-order.php:19 -#: templates/emails/plain/customer-invoice.php:20 -#: templates/emails/plain/customer-note.php:27 -#: templates/emails/plain/customer-processing-order.php:19 -msgid "Order number: %s" -msgstr "销售数量:%s" - -#: templates/emails/plain/admin-new-order.php:20 -#: templates/emails/plain/customer-completed-order.php:20 -#: templates/emails/plain/customer-invoice.php:21 -#: templates/emails/plain/customer-note.php:28 -#: templates/emails/plain/customer-processing-order.php:20 -msgid "Order date: %s" -msgstr "订单日期:%s" - -#: templates/emails/plain/admin-new-order.php:20 -msgid "jS F Y" -msgstr "jS F Y" - -#: templates/emails/plain/customer-completed-order.php:38 -#: templates/emails/plain/customer-note.php:46 -#: templates/emails/plain/customer-processing-order.php:38 -msgid "Your details" -msgstr "查看详情" - -#: templates/emails/plain/email-order-items.php:28 -msgid "Quantity: %s" -msgstr "数量" - -#: templates/emails/plain/email-order-items.php:31 -msgid "Cost: %s" -msgstr "成本" - -#: templates/loop/add-to-cart.php:17 templates/loop/add-to-cart.php:41 -#: templates/loop/add-to-cart.php:50 -msgid "Read More" -msgstr "查看更多" - -#: templates/loop/add-to-cart.php:33 -msgid "Select options" -msgstr "选择选项" - -#: templates/loop/add-to-cart.php:37 -msgid "View options" -msgstr "查看选项" - -#: templates/loop/no-products-found.php:14 templates/loop-shop.php:40 -msgid "No products found which match your selection." -msgstr "没有找到符合您选择的产品。" - -#: templates/loop/orderby.php:21 -msgid "Default sorting" -msgstr "默认产品排序" - -#: templates/loop/orderby.php:22 -msgid "Sort by popularity" -msgstr "按受关注度排序" - -#: templates/loop/orderby.php:23 -msgid "Sort by average rating" -msgstr "按好评度排序" - -#: templates/loop/orderby.php:24 -msgid "Sort by newness" -msgstr "按更新时间排序" - -#: templates/loop/orderby.php:25 -msgid "Sort by price: low to high" -msgstr "按价格从低到高" - -#: templates/loop/orderby.php:26 -msgid "Sort by price: high to low" -msgstr "按价格从高到低" - -#: templates/loop/result-count.php:28 -msgid "Showing the single result" -msgstr "搜索结果: " - -#: templates/loop/result-count.php:30 -msgid "Showing all %d results" -msgstr "搜索结果 %d: " - -#: templates/loop/result-count.php:32 -msgctxt "%1$d = first, %2$d = last, %3$d = total" -msgid "Showing %1$d–%2$d of %3$d results" -msgstr "显示%1$d–%2$d of %3$d搜索结果: " - -#: templates/loop/sale-flash.php:16 templates/single-product/sale-flash.php:16 -msgid "Sale!" -msgstr "促销!" - -#: templates/myaccount/form-change-password.php:20 -#: templates/myaccount/form-lost-password.php:31 -msgid "New password" -msgstr "新密码" - -#: templates/myaccount/form-change-password.php:24 -#: templates/myaccount/form-lost-password.php:35 -msgid "Re-enter new password" -msgstr "再次输入新密码" - -#: templates/myaccount/form-change-password.php:29 -#: templates/myaccount/form-lost-password.php:45 -msgid "Save" -msgstr "保存" - -#: templates/myaccount/form-edit-address.php:43 -msgid "Save Address" -msgstr "保存地址" - -#: templates/myaccount/form-login.php:26 templates/myaccount/form-login.php:40 -#: templates/shop/form-login.php:31 -msgid "Login" -msgstr "登录" - -#: templates/myaccount/form-login.php:29 -#: templates/myaccount/form-lost-password.php:24 -#: templates/shop/form-login.php:20 -msgid "Username or email" -msgstr "用户名或E-mail" - -#: templates/myaccount/form-login.php:33 templates/myaccount/form-login.php:85 -#: templates/shop/form-login.php:24 -msgid "Password" -msgstr "密码" - -#: templates/myaccount/form-login.php:50 templates/shop/form-login.php:33 -msgid "Lost Password?" -msgstr "丢失密码?" - -#: templates/myaccount/form-login.php:60 -#: templates/myaccount/form-login.php:101 -msgid "Register" -msgstr "注册" - -#: templates/myaccount/form-login.php:66 -msgid "Username" -msgstr "用户名" - -#: templates/myaccount/form-login.php:78 -#: templates/single-product-reviews.php:86 -msgid "Email" -msgstr "电子邮件" - -#: templates/myaccount/form-login.php:89 -msgid "Re-enter password" -msgstr "再次输入密码" - -#: templates/myaccount/form-lost-password.php:22 -msgid "" -"Lost your password? Please enter your username or email address. You will " -"receive a link to create a new password via email." -msgstr "" -"忘记密码了?请输入您的用户名或者电子邮件地址,我们将密码重置邮件发送到您的邮箱." - -#: templates/myaccount/form-lost-password.php:28 -msgid "Enter a new password below." -msgstr "请在下方输入您的新密码。" - -#: templates/myaccount/form-lost-password.php:45 -msgid "Reset Password" -msgstr "重置密码" - -#: templates/myaccount/my-account.php:19 -msgid "" -"Hello, %s. From your account dashboard you can view your " -"recent orders, manage your shipping and billing addresses and change your password." -msgstr "" -"Hello, %s. 从您帐户控制面板你可以查看你最近的订单,管理您的" -"配送、账单地址和的。 更改您的密码." - -#: templates/myaccount/my-address.php:17 -msgid "My Addresses" -msgstr "我的帐户" - -#: templates/myaccount/my-address.php:23 -msgid "My Address" -msgstr "我的地址" - -#: templates/myaccount/my-address.php:35 -msgid "The following addresses will be used on the checkout page by default." -msgstr "下列地址默认情况下将用在结帐页面上" - -#: templates/myaccount/my-address.php:45 woocommerce.php:951 -#: woocommerce.php:987 woocommerce.php:1024 woocommerce.php:1062 -#: woocommerce.php:1100 -msgid "Edit" -msgstr "编辑" - -#: templates/myaccount/my-address.php:64 -msgid "You have not set up this type of address yet." -msgstr "您没有设置过此类型的地址." - -#: templates/myaccount/my-downloads.php:18 -msgid "Available downloads" -msgstr "可用的下载" - -#: templates/myaccount/my-downloads.php:27 -msgid "%s download remaining" -msgid_plural "%s downloads remaining" -msgstr[0] "下载剩余 %s" -msgstr[1] "下载剩余 %s" - -#: templates/myaccount/my-orders.php:26 -msgid "Recent Orders" -msgstr "最近的订单" - -#: templates/myaccount/my-orders.php:32 woocommerce.php:1059 -msgid "Order" -msgstr "订单" - -#: templates/myaccount/my-orders.php:33 -msgid "Date" -msgstr "日期" - -#: templates/myaccount/my-orders.php:34 -msgid "Status" -msgstr "状态" - -#: templates/myaccount/my-orders.php:62 -msgid "%s for %s item" -msgid_plural "%s for %s items" -msgstr[0] "%s for %s item" -msgstr[1] "%s for %s items" - -#: templates/myaccount/my-orders.php:77 -msgid "Cancel" -msgstr "取消" - -#: templates/myaccount/my-orders.php:82 -msgid "View" -msgstr "查看" - -#: templates/order/form-tracking.php:17 -msgid "" -"To track your order please enter your Order ID in the box below and press " -"return. This was given to you on your receipt and in the confirmation email " -"you should have received." -msgstr "" -"跟踪您的订单,请在框中输入你的订单 ID编号,按回车键。这是给你收据,并已经通过" -"确认电子邮件发送给您。" - -#: templates/order/form-tracking.php:19 -msgid "Order ID" -msgstr "订单 ID" - -#: templates/order/form-tracking.php:19 -msgid "Found in your order confirmation email." -msgstr "在你的电子邮件订单确认中找到。" - -#: templates/order/form-tracking.php:20 -msgid "Billing Email" -msgstr "帐单Email" - -#: templates/order/form-tracking.php:20 -msgid "Email you used during checkout." -msgstr "用于在结帐的Email " - -#: templates/order/form-tracking.php:23 -msgid "Track" -msgstr "Track" - -#: templates/order/order-details.php:16 -msgid "Order Details" -msgstr "订单详情" - -#: templates/order/order-details.php:64 -msgid "Download file%s" -msgstr "文件下载方式" - -#: templates/order/order-details.php:90 -msgid "Order Again" -msgstr "再订货" - -#: templates/order/order-details.php:102 -msgid "Telephone:" -msgstr "电话:" - -#: templates/order/tracking.php:18 -msgid "Order %s which was made %s has the status “%s”" -msgstr "订单 %s 用于 %s 已经是状态 “%s”" - -#: templates/order/tracking.php:18 -msgid "ago" -msgstr "%s前" - -#: templates/order/tracking.php:20 -msgid "and was completed" -msgstr "并且已完成" - -#: templates/order/tracking.php:20 -msgid " ago" -msgstr "前" - -#: templates/shop/breadcrumb.php:63 -msgid "Products tagged “" -msgstr "产品标签 “" - -#: templates/shop/breadcrumb.php:91 templates/shop/breadcrumb.php:188 -msgid "Search results for “" -msgstr "搜索结果 “" - -#: templates/shop/breadcrumb.php:146 -msgid "Error 404" -msgstr "Error 404" - -#: templates/shop/breadcrumb.php:192 -msgid "Posts tagged “" -msgstr "文章标签 “" - -#: templates/shop/breadcrumb.php:197 -msgid "Author:" -msgstr "作者:" - -#: templates/shop/breadcrumb.php:202 -msgid "Page" -msgstr "页面" - -#: templates/single-product/add-to-cart/variable.php:24 -msgid "Choose an option" -msgstr "选择一个选项" - -#: templates/single-product/add-to-cart/variable.php:69 -msgid "Clear selection" -msgstr "清除临时状态" - -#: templates/single-product/meta.php:24 -msgid "Category:" -msgid_plural "Categories:" -msgstr[0] "类别:" -msgstr[1] "类别:" - -#: templates/single-product/meta.php:29 -msgid "Tag:" -msgid_plural "Tags:" -msgstr[0] "标签" -msgstr[1] "标签:" - -#: templates/single-product/product-attributes.php:28 -msgid "Weight" -msgstr "重量" - -#: templates/single-product/product-attributes.php:37 -msgid "Dimensions" -msgstr "尺寸" - -#: templates/single-product/related.php:36 -msgid "Related Products" -msgstr "相关产品" - -#: templates/single-product/review.php:26 -msgid "Rated %d out of 5" -msgstr "评分 %s 超出5" - -#: templates/single-product/review.php:33 -msgid "Your comment is awaiting approval" -msgstr "您的评论正在等待批准" - -#: templates/single-product/review.php:40 -msgid "verified owner" -msgstr "验证用户" - -#: templates/single-product/tabs/description.php:14 -msgid "Product Description" -msgstr "产品描述" - -#: templates/single-product/up-sells.php:39 -msgid "You may also like…" -msgstr "你可能还会喜欢…" - -#: templates/single-product-reviews.php:30 -msgid "%s review for %s" -msgid_plural "%s reviews for %s" -msgstr[0] "%s review for %s" -msgstr[1] "%s reviews for %s" - -#: templates/single-product-reviews.php:36 -#: templates/single-product-reviews.php:42 -msgid "Reviews" -msgstr "评论" - -#: templates/single-product-reviews.php:58 -msgid " Previous" -msgstr " 更早" - -#: templates/single-product-reviews.php:59 -msgid "Next " -msgstr "较旧 " - -#: templates/single-product-reviews.php:63 -msgid "Add Your Review" -msgstr "检查您的拼写。" - -#: templates/single-product-reviews.php:63 -msgid "Add Review" -msgstr "添加评价" - -#: templates/single-product-reviews.php:65 -msgid "Add a review" -msgstr "添加评论" - -#: templates/single-product-reviews.php:69 -msgid "Be the first to review" -msgstr "我要第一个评论!" - -#: templates/single-product-reviews.php:71 -msgid "" -"There are no reviews yet, would you like to submit yours?" -msgstr "" -"还没有评论,你想提" -"交你的评论?" - -#: templates/single-product-reviews.php:89 -msgid "Submit Review" -msgstr "提交评论" - -#: templates/single-product-reviews.php:96 -msgid "Rating" -msgstr "评级" - -#: templates/single-product-reviews.php:97 -msgid "Rate…" -msgstr "处理中…" - -#: templates/single-product-reviews.php:98 -msgid "Perfect" -msgstr "完美" - -#: templates/single-product-reviews.php:99 -msgid "Good" -msgstr "很好" - -#: templates/single-product-reviews.php:100 -msgid "Average" -msgstr "普通" - -#: templates/single-product-reviews.php:101 -msgid "Not that bad" -msgstr "还行" - -#: templates/single-product-reviews.php:102 -msgid "Very Poor" -msgstr "极差" - -#: templates/single-product-reviews.php:107 -msgid "Your Review" -msgstr "你的评价" - -#: woocommerce-ajax.php:119 -msgid "Sorry, your session has expired." -msgstr "对不起,你的会话已过期。" - -#: woocommerce-ajax.php:119 -msgid "Return to homepage →" -msgstr "返回首页 →" - -#: woocommerce-ajax.php:256 woocommerce-ajax.php:290 woocommerce-ajax.php:313 -msgid "You do not have sufficient permissions to access this page." -msgstr "你没有足够的权限访问此页面。" - -#: woocommerce-ajax.php:258 woocommerce-ajax.php:291 woocommerce-ajax.php:314 -msgid "You have taken too long. Please go back and retry." -msgstr "你已经获取太久,请返回并重试。" - -#: woocommerce-ajax.php:550 -msgid "Same as parent" -msgstr "与父级相同" - -#: woocommerce-ajax.php:551 -msgid "Standard" -msgstr "标准" - -#: woocommerce-ajax.php:1098 -msgid "" -"No products had their stock reduced - they may not have stock management " -"enabled." -msgstr "没有产品库存减少 - 他们可能没有启用库存管理。" - -#: woocommerce-ajax.php:1142 woocommerce-ajax.php:1143 -msgid "Item #%s stock increased from %s to %s." -msgstr "#%s 的库存从 %s 恢复到 %s." - -#: woocommerce-ajax.php:1150 -msgid "" -"No products had their stock increased - they may not have stock management " -"enabled." -msgstr "没有产品库存增加 - 他们可能没有启用库存管理。" - -#: woocommerce-ajax.php:1171 -msgid "Value" -msgstr "值(s)" - -#: woocommerce-ajax.php:1485 -msgid "Delete note" -msgstr "删除注释" - -#: woocommerce-core-functions.php:275 -msgid "%s – %s%s" -msgstr " –页 %s" - -#: woocommerce-core-functions.php:698 -msgid "Australian Dollars" -msgstr "澳元 ($)" - -#: woocommerce-core-functions.php:699 -msgid "Brazilian Real" -msgstr "巴西雷亚尔 ($)" - -#: woocommerce-core-functions.php:700 -msgid "Canadian Dollars" -msgstr "加元($)" - -#: woocommerce-core-functions.php:701 -msgid "Chinese Yuan" -msgstr "中国人民币(¥)" - -#: woocommerce-core-functions.php:702 -msgid "Czech Koruna" -msgstr "捷克克朗 (Kč)" - -#: woocommerce-core-functions.php:703 -msgid "Danish Krone" -msgstr "丹麦克朗" - -#: woocommerce-core-functions.php:704 -msgid "Euros" -msgstr "欧元 (€)" - -#: woocommerce-core-functions.php:705 -msgid "Hong Kong Dollar" -msgstr "港元($)" - -#: woocommerce-core-functions.php:706 -msgid "Hungarian Forint" -msgstr "匈牙利福林" - -#: woocommerce-core-functions.php:707 -msgid "Indonesia Rupiah" -msgstr "印尼盾" - -#: woocommerce-core-functions.php:708 -msgid "Indian Rupee" -msgstr "英属印度洋领地" - -#: woocommerce-core-functions.php:709 -msgid "Israeli Shekel" -msgstr "以色列谢克尔" - -#: woocommerce-core-functions.php:710 -msgid "Japanese Yen" -msgstr "日元 (¥)" - -#: woocommerce-core-functions.php:711 -msgid "South Korean Won" -msgstr "南非兰特 (R)" - -#: woocommerce-core-functions.php:712 -msgid "Malaysian Ringgits" -msgstr "马来西亚林吉特" - -#: woocommerce-core-functions.php:713 -msgid "Mexican Peso" -msgstr "墨西哥比索 ($)" - -#: woocommerce-core-functions.php:714 -msgid "Norwegian Krone" -msgstr "挪威克朗" - -#: woocommerce-core-functions.php:715 -msgid "New Zealand Dollar" -msgstr "新西兰元 ($)" - -#: woocommerce-core-functions.php:716 -msgid "Philippine Pesos" -msgstr "菲律宾比索" - -#: woocommerce-core-functions.php:717 -msgid "Polish Zloty" -msgstr "波兰兹罗提" - -#: woocommerce-core-functions.php:718 -msgid "Pounds Sterling" -msgstr "英镑 (£)" - -#: woocommerce-core-functions.php:719 -msgid "Romanian Leu" -msgstr "罗马尼亚" - -#: woocommerce-core-functions.php:720 -msgid "Singapore Dollar" -msgstr "新加坡元($)" - -#: woocommerce-core-functions.php:721 -msgid "South African rand" -msgstr "南非兰特 (R)" - -#: woocommerce-core-functions.php:722 -msgid "Swedish Krona" -msgstr "瑞典克郎" - -#: woocommerce-core-functions.php:723 -msgid "Swiss Franc" -msgstr "瑞士法郎" - -#: woocommerce-core-functions.php:724 -msgid "Taiwan New Dollars" -msgstr "新台币" - -#: woocommerce-core-functions.php:725 -msgid "Thai Baht" -msgstr "泰铢" - -#: woocommerce-core-functions.php:726 -msgid "Turkish Lira" -msgstr "土耳其里拉 (TL)" - -#: woocommerce-core-functions.php:727 -msgid "US Dollars" -msgstr "美元 ($)" - -#: woocommerce-core-functions.php:1215 woocommerce-core-functions.php:1241 -msgid "Download Permissions Granted" -msgstr "下载授予的权限" - -#: woocommerce-core-functions.php:1365 -msgctxt "slug" -msgid "uncategorized" -msgstr "未分类" - -#: woocommerce-core-functions.php:1554 -msgid "Select a category" -msgstr "选择一个类别" - -#: woocommerce-core-functions.php:1558 -msgid "Uncategorized" -msgstr "未分类" - -#: woocommerce-core-functions.php:1930 -msgid "Customer" -msgstr "顾客" - -#: woocommerce-core-functions.php:1937 -msgid "Shop Manager" -msgstr "商店管理" - -#: woocommerce-core-functions.php:2494 -msgid "Unpaid order cancelled - time limit reached." -msgstr "未付款订单已逾期自动取消." - -#: woocommerce-functions.php:226 woocommerce-functions.php:271 -msgid "Cart updated." -msgstr "购物车已更新。" - -#: woocommerce-functions.php:257 -msgid "You can only have 1 %s in your cart." -msgstr "你只能有 1 %s在购物车。" - -#: woocommerce-functions.php:315 woocommerce-functions.php:373 -msgid "Please choose product options…" -msgstr "请选择产品选项…" - -#: woocommerce-functions.php:406 -msgid "" -"Please choose the quantity of items you wish to add to your cart…" -msgstr "请选择您要购买的数量…" - -#: woocommerce-functions.php:413 -msgid "Please choose a product to add to your cart…" -msgstr "请选择商品添加到购物车…" - -#: woocommerce-functions.php:482 -msgid "Added "%s" to your cart." -msgstr "产品成功添加到你的购物车。" - -#: woocommerce-functions.php:482 -msgid "" and "" -msgstr "and 1 state" - -#: woocommerce-functions.php:485 -msgid ""%s" was successfully added to your cart." -msgstr ""%s" 成功添加进您的购物车." - -#: woocommerce-functions.php:493 -msgid "Continue Shopping →" -msgstr "继续购物 →" - -#: woocommerce-functions.php:660 -msgid "Username is required." -msgstr "用户名为必填。" - -#: woocommerce-functions.php:661 woocommerce-functions.php:756 -msgid "Password is required." -msgstr "密码为必填。" - -#: woocommerce-functions.php:730 -msgid "Please enter a username." -msgstr "请输入用户名。" - -#: woocommerce-functions.php:732 -msgid "" -"This username is invalid because it uses illegal characters. Please enter a " -"valid username." -msgstr "这个用户名使用了非法字符,所以是无效的。请输入有效的用户名。" - -#: woocommerce-functions.php:735 -msgid "This username is already registered, please choose another one." -msgstr "这个用户名已被注册,请选择另一个。" - -#: woocommerce-functions.php:747 -msgid "Please type your e-mail address." -msgstr "请输入你的e-mail 地址。" - -#: woocommerce-functions.php:749 -msgid "The email address isn’t correct." -msgstr "这个email 地址 ’t正确." - -#: woocommerce-functions.php:752 -msgid "This email is already registered, please choose another one." -msgstr "这个email 已经被注册,请选择另一个。" - -#: woocommerce-functions.php:757 -msgid "Re-enter your password." -msgstr "再次输入你的密码。" - -#: woocommerce-functions.php:762 -msgid "Anti-spam field was filled in." -msgstr "验证码字段已填写。" - -#: woocommerce-functions.php:870 -msgid "The cart has been filled with the items from your previous order." -msgstr "你的购物车里累计数量已满。" - -#: woocommerce-functions.php:896 -msgid "Order cancelled by customer." -msgstr "订单已被客户取消。" - -#: woocommerce-functions.php:899 -msgid "Your order was cancelled." -msgstr "你的订单已被取消。" - -#: woocommerce-functions.php:905 -msgid "" -"Your order is no longer pending and could not be cancelled. Please contact " -"us if you need assistance." -msgstr "你的订单已不在排的等待中,并且无法取消。如果有需要,请联系我们。" - -#: woocommerce-functions.php:940 -msgid "Invalid email address." -msgstr "无效email 地址。" - -#: woocommerce-functions.php:940 woocommerce-functions.php:963 -#: woocommerce-functions.php:983 woocommerce-functions.php:989 -#: woocommerce-functions.php:993 woocommerce-functions.php:996 -#: woocommerce-functions.php:1026 woocommerce-functions.php:1158 -msgid "Go to homepage →" -msgstr "回首页 →" - -#: woocommerce-functions.php:963 -msgid "Invalid download." -msgstr "无效的下载。" - -#: woocommerce-functions.php:975 -msgid "You must be logged in to download files." -msgstr "你必须登录才能下载此文件" - -#: woocommerce-functions.php:975 -msgid "Login →" -msgstr "登录 →" - -#: woocommerce-functions.php:978 -msgid "This is not your download link." -msgstr "这不是你的下载链接。" - -#: woocommerce-functions.php:983 -msgid "Product no longer exists." -msgstr "产品不再存在" - -#: woocommerce-functions.php:993 -msgid "Sorry, you have reached your download limit for this file" -msgstr "对不起,你已经达到这个文件的​​下载限制" - -#: woocommerce-functions.php:996 -msgid "Sorry, this download has expired" -msgstr "对不起,此下载已失效" - -#: woocommerce-functions.php:1026 -msgid "No file defined" -msgstr "无效的文件类型" - -#: woocommerce-functions.php:1158 -msgid "File not found" -msgstr "文件无法找到" - -#: woocommerce-functions.php:1274 -msgid "New products" -msgstr "新产品" - -#: woocommerce-functions.php:1282 -msgid "New products added to %s" -msgstr "新产品已添加到 %s" - -#: woocommerce-functions.php:1290 -msgid "New products tagged %s" -msgstr "新产品标签 %s" - -#: woocommerce-functions.php:1328 -msgid "You have taken too long. Please go back and refresh the page." -msgstr "获取时间太长,请返回并刷新页面。" - -#: woocommerce-functions.php:1331 -msgid "Please rate the product." -msgstr "请对产品评分。" - -#: woocommerce-functions.php:1639 -msgid "Password changed successfully." -msgstr "[%s] 密码丢失/找回" - -#: woocommerce-functions.php:1715 -msgid "Address changed successfully." -msgstr "插件激活成功。" - -#: woocommerce-template.php:200 -msgid "" -"This is a demo store for testing purposes — no orders shall be " -"fulfilled." -msgstr "这是一个用于测试的演示商店 - 应该没有订单能完成。" - -#: woocommerce-template.php:219 -msgid "Search Results: “%s”" -msgstr "搜索结果 “" - -#: woocommerce-template.php:222 -msgid " – Page %s" -msgstr " –页 %s" - -#: woocommerce-template.php:767 -msgid "Reviews (%d)" -msgstr "评论" - -#: woocommerce-template.php:993 -msgctxt "breadcrumb" -msgid "Home" -msgstr "首页" - -#: woocommerce-template.php:1292 woocommerce.php:1209 -msgid "required" -msgstr "(必填)" - -#: woocommerce-template.php:1341 -msgid "Update country" -msgstr "%d 个插件更新" - -#: woocommerce-template.php:1496 -msgid "Search for:" -msgstr "搜索:" - -#: woocommerce-template.php:1497 -msgid "Search for products" -msgstr "搜索产品" - -#: woocommerce-template.php:1498 woocommerce.php:947 -msgid "Search" -msgstr "搜索" - -#: woocommerce.php:171 -msgid "Docs" -msgstr "Docs" - -#: woocommerce.php:172 -msgid "Premium Support" -msgstr "支持论坛" - -#: woocommerce.php:786 -msgctxt "slug" -msgid "product-category" -msgstr "商品分类" - -#: woocommerce.php:787 -msgctxt "slug" -msgid "product-tag" -msgstr "商品标签" - -#: woocommerce.php:789 -msgctxt "slug" -msgid "product" -msgstr "商品" - -#: woocommerce.php:824 -msgid "Product Category" -msgstr "商品分类" - -#: woocommerce.php:825 -msgctxt "Admin menu name" -msgid "Categories" -msgstr "分类" - -#: woocommerce.php:826 -msgid "Search Product Categories" -msgstr "查找商品分类" - -#: woocommerce.php:827 -msgid "All Product Categories" -msgstr "所有商品分类" - -#: woocommerce.php:828 -msgid "Parent Product Category" -msgstr "Parent Product Category" - -#: woocommerce.php:829 -msgid "Parent Product Category:" -msgstr "Parent Product Category:" - -#: woocommerce.php:830 -msgid "Edit Product Category" -msgstr "编辑商品分类" - -#: woocommerce.php:831 -msgid "Update Product Category" -msgstr "更新商品分类" - -#: woocommerce.php:832 -msgid "Add New Product Category" -msgstr "添加新商品分类" - -#: woocommerce.php:833 -msgid "New Product Category Name" -msgstr "新商品分类名称" - -#: woocommerce.php:860 -msgid "Product Tag" -msgstr "商品标签" - -#: woocommerce.php:861 -msgctxt "Admin menu name" -msgid "Tags" -msgstr "标签" - -#: woocommerce.php:862 -msgid "Search Product Tags" -msgstr "查找商品标签" - -#: woocommerce.php:863 -msgid "All Product Tags" -msgstr "所有商品标签" - -#: woocommerce.php:864 -msgid "Parent Product Tag" -msgstr "Parent Product Tag" - -#: woocommerce.php:865 -msgid "Parent Product Tag:" -msgstr "商品父标签" - -#: woocommerce.php:866 -msgid "Edit Product Tag" -msgstr "编辑商品标签" - -#: woocommerce.php:867 -msgid "Update Product Tag" -msgstr "更新商品标签" - -#: woocommerce.php:868 -msgid "Add New Product Tag" -msgstr "添加新的商品标签" - -#: woocommerce.php:869 -msgid "New Product Tag Name" -msgstr "新商品标签" - -#: woocommerce.php:888 woocommerce.php:890 -msgid "Shipping Classes" -msgstr "配送类型" - -#: woocommerce.php:892 -msgctxt "Admin menu name" -msgid "Shipping Classes" -msgstr "配送类型" - -#: woocommerce.php:893 -msgid "Search Shipping Classes" -msgstr "搜索配送类型" - -#: woocommerce.php:894 -msgid "All Shipping Classes" -msgstr "全部配送类型" - -#: woocommerce.php:895 -msgid "Parent Shipping Class" -msgstr "父级配送类型" - -#: woocommerce.php:896 -msgid "Parent Shipping Class:" -msgstr "父级配送类型:" - -#: woocommerce.php:897 -msgid "Edit Shipping Class" -msgstr "编辑配送类型" - -#: woocommerce.php:898 -msgid "Update Shipping Class" -msgstr "更新配送类型" - -#: woocommerce.php:899 -msgid "Add New Shipping Class" -msgstr "添加新的配送类型" - -#: woocommerce.php:900 -msgid "New Shipping Class Name" -msgstr "新配送类型名称" - -#: woocommerce.php:948 -msgid "All" -msgstr "所有" - -#: woocommerce.php:949 woocommerce.php:950 -msgid "Parent" -msgstr "父类" - -#: woocommerce.php:952 -msgid "Update" -msgstr "更新" - -#: woocommerce.php:953 -msgid "Add New" -msgstr "新添" - -#: woocommerce.php:954 -msgid "New" -msgstr "新建" - -#: woocommerce.php:984 -msgctxt "Admin menu name" -msgid "Products" -msgstr "商品" - -#: woocommerce.php:985 -msgid "Add Product" -msgstr "添加商品" - -#: woocommerce.php:986 -msgid "Add New Product" -msgstr "添加新商品" - -#: woocommerce.php:988 -msgid "Edit Product" -msgstr "编辑商品" - -#: woocommerce.php:989 -msgid "New Product" -msgstr "新建商品" - -#: woocommerce.php:990 woocommerce.php:991 -msgid "View Product" -msgstr "查看商品" - -#: woocommerce.php:992 -msgid "Search Products" -msgstr "查找商品" - -#: woocommerce.php:993 -msgid "No Products found" -msgstr "没找到商品" - -#: woocommerce.php:994 -msgid "No Products found in trash" -msgstr "垃圾箱里没有商品" - -#: woocommerce.php:995 -msgid "Parent Product" -msgstr "Parent Product" - -#: woocommerce.php:997 -msgid "This is where you can add new products to your store." -msgstr "在这里为你的商店添加新商品" - -#: woocommerce.php:1020 -msgid "Variations" -msgstr "Variations" - -#: woocommerce.php:1021 -msgid "Variation" -msgstr "Variation" - -#: woocommerce.php:1022 -msgid "Add Variation" -msgstr "Add Variation" - -#: woocommerce.php:1023 -msgid "Add New Variation" -msgstr "Add New Variation" - -#: woocommerce.php:1025 -msgid "Edit Variation" -msgstr "Edit Variation" - -#: woocommerce.php:1026 -msgid "New Variation" -msgstr "New Variation" - -#: woocommerce.php:1027 woocommerce.php:1028 -msgid "View Variation" -msgstr "View Variation" - -#: woocommerce.php:1029 -msgid "Search Variations" -msgstr "查找变更" - -#: woocommerce.php:1030 -msgid "No Variations found" -msgstr "没有变更" - -#: woocommerce.php:1031 -msgid "No Variations found in trash" -msgstr "No Variations found in trash" - -#: woocommerce.php:1032 -msgid "Parent Variation" -msgstr "Parent Variation" - -#: woocommerce.php:1049 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "订单" - -#: woocommerce.php:1058 -msgid "Orders" -msgstr "订单" - -#: woocommerce.php:1060 -msgid "Add Order" -msgstr "添加订单" - -#: woocommerce.php:1061 -msgid "Add New Order" -msgstr "新添订单" - -#: woocommerce.php:1063 -msgid "Edit Order" -msgstr "编辑订单" - -#: woocommerce.php:1064 -msgid "New Order" -msgstr "新订单" - -#: woocommerce.php:1067 -msgid "Search Orders" -msgstr "查找订单" - -#: woocommerce.php:1068 -msgid "No Orders found" -msgstr "没有找到订单" - -#: woocommerce.php:1069 -msgid "No Orders found in trash" -msgstr "垃圾箱里没有订单" - -#: woocommerce.php:1070 -msgid "Parent Orders" -msgstr "Parent Orders" - -#: woocommerce.php:1073 -msgid "This is where store orders are stored." -msgstr "这里保存商店订单" - -#: woocommerce.php:1095 -msgid "Coupons" -msgstr "优惠券" - -#: woocommerce.php:1097 -msgctxt "Admin menu name" -msgid "Coupons" -msgstr "优惠券" - -#: woocommerce.php:1098 -msgid "Add Coupon" -msgstr "添加优惠券" - -#: woocommerce.php:1099 -msgid "Add New Coupon" -msgstr "添加新优惠券" - -#: woocommerce.php:1101 -msgid "Edit Coupon" -msgstr "编辑优惠券" - -#: woocommerce.php:1102 -msgid "New Coupon" -msgstr "新建优惠券" - -#: woocommerce.php:1103 -msgid "View Coupons" -msgstr "查看优惠券" - -#: woocommerce.php:1104 -msgid "View Coupon" -msgstr "查看优惠券" - -#: woocommerce.php:1105 -msgid "Search Coupons" -msgstr "搜索优惠券" - -#: woocommerce.php:1106 -msgid "No Coupons found" -msgstr "没有找到优惠券" - -#: woocommerce.php:1107 -msgid "No Coupons found in trash" -msgstr "No Coupons found in trash" - -#: woocommerce.php:1108 -msgid "Parent Coupon" -msgstr "Parent Coupon" - -#: woocommerce.php:1110 -msgid "" -"This is where you can add new coupons that customers can use in your store." -msgstr "在这里添加让客户使用的优惠券" - -#: woocommerce.php:1206 -msgid "Select an option…" -msgstr "选择一个选项…" - -#: woocommerce.php:1207 -msgid "Please select a rating" -msgstr "显示链接评级" - -#: woocommerce.php:1208 -msgid "" -"Sorry, no products matched your selection. Please choose a different " -"combination." -msgstr "很抱歉,没有商品符合您的选择条件,请尝试其它搜选条件." - -#: woocommerce.php:1691 -msgid "Cart % Discount" -msgstr "购物 % 返现" - -#: woocommerce.php:1692 -msgid "Product Discount" -msgstr "产品折扣" - -#: woocommerce.php:1693 -msgid "Product % Discount" -msgstr "产品%折扣" - -#: woocommerce.php:1758 -msgid "Action failed. Please refresh the page and retry." -msgstr "操作失败。请刷新页面然后重试。" diff --git a/i18n/languages/woocommerce-zh_TW.mo b/i18n/languages/woocommerce-zh_TW.mo deleted file mode 100644 index e06d052d066..00000000000 Binary files a/i18n/languages/woocommerce-zh_TW.mo and /dev/null differ diff --git a/i18n/languages/woocommerce-zh_TW.po b/i18n/languages/woocommerce-zh_TW.po deleted file mode 100644 index 21c18020e14..00000000000 --- a/i18n/languages/woocommerce-zh_TW.po +++ /dev/null @@ -1,14251 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: WooCommerce v2.0.0\n" -"Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-01-09 09:36:51+00:00\n" -"PO-Revision-Date: 2013-04-22 22:17+0800\n" -"Last-Translator: Tsz Ming WONG \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=1;\n" -"X-Generator: Poedit 1.5.5\n" -"X-Poedit-SourceCharset: utf-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" -"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" -"X-Poedit-Basepath: ../\n" -"X-Textdomain-Support: yes\n" -"X-Poedit-SearchPath-0: .\n" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:5 -msgid "Insert Shortcode" -msgstr "" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:6 -#, fuzzy -msgid "Product price/cart button" -msgstr "商品介紹" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:7 -#, fuzzy -msgid "Product by SKU/ID" -msgstr "商品 SKU:" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:8 -#, fuzzy -msgid "Products by SKU/ID" -msgstr "商品 SKU:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:116 -#: assets/js/admin/editor_plugin_lang.php:9 -#, fuzzy -msgid "Product categories" -msgstr "商品分類" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:10 -#, fuzzy -msgid "Products by category slug" -msgstr "商品分類縮略名" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:11 -#, fuzzy -msgid "Recent products" -msgstr "最新到貨" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:12 -#, fuzzy -msgid "Featured products" -msgstr "特色商品" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:13 -#, fuzzy -msgid "Shop Messages" -msgstr "商店頁面" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:45 -#: admin/woocommerce-admin-settings.php:182 -#: assets/js/admin/editor_plugin_lang.php:14 -msgid "Pages" -msgstr "頁面" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:195 -#: admin/woocommerce-admin-status.php:277 -#: assets/js/admin/editor_plugin_lang.php:15 -#: classes/widgets/class-wc-widget-cart.php:61 -msgid "Cart" -msgstr "購物車" - -# @ woocommerce -#: admin/settings/settings-init.php:114 -#: admin/woocommerce-admin-install.php:198 -#: admin/woocommerce-admin-status.php:281 -#: assets/js/admin/editor_plugin_lang.php:16 -msgid "Checkout" -msgstr "結帳" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:17 -#, fuzzy -msgid "Order tracking" -msgstr "訂單追蹤" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:201 -#: admin/woocommerce-admin-status.php:293 -#: assets/js/admin/editor_plugin_lang.php:18 -#: templates/checkout/thankyou.php:30 -msgid "My Account" -msgstr "帳號設定" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:297 -#: assets/js/admin/editor_plugin_lang.php:19 -#, fuzzy -msgid "Edit Address" -msgstr "編輯我的地址資訊" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:213 -#: admin/woocommerce-admin-status.php:305 -#: assets/js/admin/editor_plugin_lang.php:20 -msgid "Change Password" -msgstr "修改密碼" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:210 -#: admin/woocommerce-admin-status.php:301 -#: assets/js/admin/editor_plugin_lang.php:21 woocommerce.php:1031 -#: woocommerce.php:1032 -msgid "View Order" -msgstr "查看訂單" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:285 -#: assets/js/admin/editor_plugin_lang.php:22 -#: templates/checkout/thankyou.php:28 templates/myaccount/my-orders.php:71 -msgid "Pay" -msgstr "付款" - -# @ woocommerce -#: assets/js/admin/editor_plugin_lang.php:23 -msgid "Thankyou" -msgstr "" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:421 -#: classes/emails/class-wc-email-customer-completed-order.php:135 -#: classes/emails/class-wc-email-customer-invoice.php:138 -#: classes/emails/class-wc-email-new-order.php:115 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:63 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:57 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:158 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:119 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:77 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:75 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:52 -msgid "Enable/Disable" -msgstr "啓用/關閉" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:423 -#: classes/emails/class-wc-email-customer-completed-order.php:137 -#: classes/emails/class-wc-email-customer-invoice.php:140 -#: classes/emails/class-wc-email-new-order.php:117 -#, fuzzy -msgid "Enable this email notification" -msgstr "啓用低庫存通知" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:427 -#: classes/emails/class-wc-email-customer-invoice.php:144 -#, fuzzy -msgid "Email subject" -msgstr "電子郵件" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:429 -#: classes/abstracts/abstract-wc-email.php:436 -#: classes/emails/class-wc-email-customer-completed-order.php:143 -#: classes/emails/class-wc-email-customer-completed-order.php:150 -#: classes/emails/class-wc-email-customer-completed-order.php:157 -#: classes/emails/class-wc-email-customer-completed-order.php:164 -#: classes/emails/class-wc-email-customer-invoice.php:146 -#: classes/emails/class-wc-email-customer-invoice.php:153 -#: classes/emails/class-wc-email-customer-invoice.php:160 -#: classes/emails/class-wc-email-customer-invoice.php:167 -#, php-format -msgid "Defaults to %s" -msgstr "" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:434 -#: classes/emails/class-wc-email-customer-invoice.php:151 -#, fuzzy -msgid "Email heading" -msgstr "電子郵件明細" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:441 -#: classes/emails/class-wc-email-customer-completed-order.php:169 -#: classes/emails/class-wc-email-customer-invoice.php:172 -#: classes/emails/class-wc-email-new-order.php:142 -#, fuzzy -msgid "Email type" -msgstr "電子郵件模板" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:443 -#: classes/emails/class-wc-email-customer-completed-order.php:171 -#: classes/emails/class-wc-email-customer-invoice.php:174 -#: classes/emails/class-wc-email-new-order.php:144 -msgid "Choose which format of email to send." -msgstr "" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:447 -#: classes/emails/class-wc-email-customer-completed-order.php:175 -#: classes/emails/class-wc-email-customer-invoice.php:178 -#: classes/emails/class-wc-email-new-order.php:148 -msgid "Plain text" -msgstr "" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:448 -#: classes/emails/class-wc-email-customer-completed-order.php:176 -#: classes/emails/class-wc-email-customer-invoice.php:179 -#: classes/emails/class-wc-email-new-order.php:149 -msgid "HTML" -msgstr "" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:449 -#: classes/emails/class-wc-email-customer-completed-order.php:177 -#: classes/emails/class-wc-email-customer-invoice.php:180 -#: classes/emails/class-wc-email-new-order.php:150 -msgid "Multipart" -msgstr "" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:485 -#: classes/abstracts/abstract-wc-email.php:506 -msgid "Could not write to template file." -msgstr "" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:533 -msgid "Template file copied to theme." -msgstr "" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:542 -msgid "Template file deleted from theme." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:146 admin/woocommerce-admin-content.php:41 -#: admin/woocommerce-admin-init.php:86 admin/woocommerce-admin-status.php:252 -#: classes/abstracts/abstract-wc-email.php:550 -#: classes/abstracts/abstract-wc-integration.php:30 -#: classes/abstracts/abstract-wc-settings-api.php:39 -msgid "Settings" -msgstr "設定" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:562 -#, fuzzy -msgid "HTML template" -msgstr "電子郵件模板" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:563 -#, fuzzy -msgid "Plain text template" -msgstr "電子郵件模板" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:582 -#, fuzzy -msgid "Delete template file" -msgstr "刪除商品" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:585 -#, php-format -msgid "" -"This template has been overridden by your theme and can be found in: " -"%s." -msgstr "" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:600 -msgid "Copy file to theme" -msgstr "" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:603 -#, php-format -msgid "" -"To override and edit this email template copy %s to your theme " -"folder: %s." -msgstr "" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:614 -#, fuzzy -msgid "File was not found." -msgstr "找不到檔案" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:639 -#, fuzzy -msgid "View template" -msgstr "電子郵件模板" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:640 -#, fuzzy -msgid "Hide template" -msgstr "電子郵件模板" - -# @ woocommerce -#: classes/abstracts/abstract-wc-email.php:651 -#, fuzzy -msgid "Are you sure you want to delete this template file?" -msgstr "你確定要刪除這個屬性嗎?" - -# @ woocommerce -#: admin/post-types/product.php:262 admin/post-types/product.php:641 -#: admin/post-types/product.php:928 -#: admin/post-types/writepanels/writepanel-product_data.php:231 -#: classes/abstracts/abstract-wc-product.php:545 -#: classes/abstracts/abstract-wc-product.php:550 -#: classes/abstracts/abstract-wc-product.php:569 -msgid "In stock" -msgstr "尚有庫存" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:550 -#, php-format -msgid "Only %s left in stock" -msgstr "庫存只剩 %s" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:553 -#, php-format -msgid "%s in stock" -msgstr "%s 件庫存" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:560 -msgid "(backorders allowed)" -msgstr "(允許延期出貨)" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:566 -#: classes/abstracts/abstract-wc-product.php:579 templates/cart/cart.php:76 -msgid "Available on backorder" -msgstr "可延期出貨" - -# @ woocommerce -#: admin/post-types/product.php:264 admin/post-types/product.php:642 -#: admin/post-types/product.php:929 -#: admin/post-types/writepanels/writepanel-product_data.php:232 -#: admin/woocommerce-admin-reports.php:2103 -#: classes/abstracts/abstract-wc-product.php:572 -#: classes/abstracts/abstract-wc-product.php:582 -#: classes/abstracts/abstract-wc-product.php:586 -msgid "Out of stock" -msgstr "已售完" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:849 -#: classes/abstracts/abstract-wc-product.php:855 -#: classes/class-wc-cart.php:1743 classes/class-wc-order.php:863 -#: classes/class-wc-product-variable.php:274 -#: classes/class-wc-product-variable.php:283 -#: classes/class-wc-product-variation.php:246 -msgid "Free!" -msgstr "免費!" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:873 -msgctxt "min_price" -msgid "From:" -msgstr "來自:" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:965 -#: templates/single-product-reviews.php:43 -#, php-format -msgid "Rated %s out of 5" -msgstr "評分 %s / 5" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:279 -#: classes/abstracts/abstract-wc-product.php:967 -#: templates/single-product/review.php:27 -#: templates/single-product-reviews.php:43 -msgid "out of 5" -msgstr "由 5 個之中" - -# @ woocommerce -#: classes/class-wc-coupon.php:447 -#, php-format -msgid "" -"Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from " -"your order." -msgstr "抱歉, 該優惠券 \"%s\" 似乎無效 - 已經由您的訂單中移除." - -# @ woocommerce -#: classes/class-wc-coupon.php:450 -#, php-format -msgid "" -"Sorry, it seems the coupon \"%s\" is not yours - it has now been removed " -"from your order." -msgstr "抱歉, 該優惠券 \"%s\" 似乎不是您的 - 已經由您的訂單中移除." - -# @ woocommerce -#: classes/class-wc-cart.php:464 -#, php-format -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -"抱歉, \"%s\" 的庫存量 (%s) 無法滿足您的訂單. 請更改您的購物車並且再次嘗試. 我" -"們對所造成的不便表示歉意." - -# @ woocommerce -#: classes/class-wc-cart.php:483 classes/class-wc-cart.php:492 -#, fuzzy, php-format -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfil your order (%s in " -"stock). Please edit your cart and try again. We apologise for any " -"inconvenience caused." -msgstr "" -"抱歉, \"%s\" 的庫存量 (%s) 無法滿足您的訂單. 請更改您的購物車並且再次嘗試. 我" -"們對所造成的不便表示歉意." - -# @ woocommerce -#: classes/class-wc-cart.php:527 -#, fuzzy, php-format -msgid "" -"Sorry, we do not have enough \"%s\" in stock to fulfil your order right now. " -"Please try again in %d minutes or edit your cart and try again. We apologise " -"for any inconvenience caused." -msgstr "" -"抱歉, \"%s\" 的庫存量無法滿足您的訂單. 請更改您的購物車並且再次嘗試. 我們對所" -"造成的不便表示歉意." - -# @ woocommerce -#: classes/class-wc-cart.php:537 -#, fuzzy, php-format -msgid "" -"Sorry, \"%s\" is not in stock. Please edit your cart and try again. We " -"apologise for any inconvenience caused." -msgstr "" -"抱歉, \"%s\" 的庫存量無法滿足您的訂單. 請更改您的購物車並且再次嘗試. 我們對所" -"造成的不便表示歉意." - -# @ woocommerce -#: classes/class-wc-cart.php:818 -#, fuzzy, php-format -msgid "Sorry, "%s" cannot be purchased." -msgstr "抱歉, 此商品無法被購買." - -# @ woocommerce -#: classes/class-wc-cart.php:825 -#, fuzzy, php-format -msgid "" -"You cannot add "%s" to the cart because the product is out of " -"stock." -msgstr "無法將此商品加入購物車 (已無庫存)." - -# @ woocommerce -#: classes/class-wc-cart.php:830 -#, fuzzy, php-format -msgid "" -"You cannot add that amount of "%s" to the cart because there is " -"not enough stock (%s remaining)." -msgstr "我們無法將此數量加到購物車內 (庫存不足). 目前庫存只剩 %s." - -# @ woocommerce -#: classes/class-wc-cart.php:842 classes/class-wc-cart.php:856 -#: classes/class-wc-cart.php:864 templates/cart/mini-cart.php:68 -#: woocommerce-functions.php:470 woocommerce.php:1176 -msgid "View Cart →" -msgstr "前往購物車 →" - -# @ woocommerce -#: classes/class-wc-cart.php:842 -msgid "You already have this item in your cart." -msgstr "購物車內已經有這個商品." - -# @ woocommerce -#: classes/class-wc-cart.php:856 classes/class-wc-cart.php:864 -#, php-format -msgid "" -"%s You cannot add that amount to the " -"cart — we have %s in stock and you already have %s in your cart." -msgstr "" -"%s 您無法將此數量加入購物車內 — 我" -"們庫存有 %s 而您購物車內已經有 %s." - -# @ woocommerce -#: classes/class-wc-cart.php:1755 -msgid "via" -msgstr "透過" - -# @ woocommerce -#: classes/class-wc-coupon.php:444 classes/class-wc-coupon.php:494 -msgid "Coupon does not exist!" -msgstr "優惠券不存在!" - -# @ woocommerce -#: classes/class-wc-checkout.php:64 -msgid "Account username" -msgstr "帳號使用者名稱" - -# @ woocommerce -#: classes/class-wc-checkout.php:65 -msgctxt "placeholder" -msgid "Username" -msgstr "使用者名稱" - -# @ woocommerce -#: classes/class-wc-checkout.php:72 classes/class-wc-checkout.php:79 -msgid "Account password" -msgstr "帳號密碼" - -# @ woocommerce -#: classes/class-wc-checkout.php:73 classes/class-wc-checkout.php:80 -msgctxt "placeholder" -msgid "Password" -msgstr "密碼" - -# @ woocommerce -#: admin/post-types/shop_order.php:48 -#: admin/post-types/writepanels/writepanels-init.php:71 -#: classes/class-wc-checkout.php:89 -msgid "Order Notes" -msgstr "訂單備註" - -# @ woocommerce -#: classes/class-wc-checkout.php:90 -msgctxt "placeholder" -msgid "Notes about your order, e.g. special notes for delivery." -msgstr "您的訂單的備註, 例如: 運送時的特殊備註." - -# @ woocommerce -#: classes/class-wc-checkout.php:152 -#, php-format -msgid "Order – %s" -msgstr "訂單 – %s" - -# @ woocommerce -#: classes/class-wc-checkout.php:152 -#, php-format -msgctxt "Order date parsed by strftime" -msgid "%b %d, %Y @ %I:%M %p" -msgstr "" - -# @ woocommerce -#: classes/class-wc-checkout.php:276 -msgid "Backordered" -msgstr "延期出貨" - -# @ woocommerce -#: classes/class-wc-checkout.php:386 -#, php-format -msgid "" -"Sorry, your session has expired. Return to homepage →" -msgstr "很抱歉, 您的會話已經逾期. 回到首頁 →" - -# @ woocommerce -#: classes/class-wc-checkout.php:438 woocommerce-functions.php:1632 -msgid "is a required field." -msgstr "爲必要欄位." - -# @ woocommerce -#: classes/class-wc-checkout.php:451 -#, php-format -msgid "(%s) is not a valid postcode/ZIP." -msgstr "(%s) 為不正確的郵遞區號" - -# @ woocommerce -#: classes/class-wc-checkout.php:472 -msgid "is not valid. Please enter one of the following:" -msgstr "無效. 請輸入一下其中那個之一:" - -# @ woocommerce -#: classes/class-wc-checkout.php:480 -msgid "is not a valid number." -msgstr "不是有效的數值." - -# @ woocommerce -#: classes/class-wc-checkout.php:487 -msgid "is not a valid email address." -msgstr "不是有效的電子郵件地址." - -# @ woocommerce -#: classes/class-wc-checkout.php:543 -msgid "Please enter an account username." -msgstr "請輸入一個帳號使用者名稱" - -# @ woocommerce -#: classes/class-wc-checkout.php:547 -msgid "Invalid email/username." -msgstr "無效的 電子郵件/使用者名稱" - -# @ woocommerce -#: classes/class-wc-checkout.php:550 -msgid "" -"An account is already registered with that username. Please choose another." -msgstr "已有帳號使用改比使用者名稱。請選擇其他名稱。" - -# @ woocommerce -#: classes/class-wc-checkout.php:560 -msgid "Please enter an account password." -msgstr "請輸入一個帳號密碼" - -# @ woocommerce -#: classes/class-wc-checkout.php:563 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:85 -#: woocommerce-functions.php:731 woocommerce-functions.php:1562 -msgid "Passwords do not match." -msgstr "密碼不相符合" - -# @ woocommerce -#: classes/class-wc-checkout.php:567 -msgid "An account is already registered with your email address. Please login." -msgstr "已經有帳號註冊在該電子郵件地址之下。請登錄。" - -# @ woocommerce -#: classes/class-wc-checkout.php:573 -msgid "You must accept our Terms & Conditions." -msgstr "您必須同意我們的條款 & 條件." - -# @ woocommerce -#: classes/class-wc-checkout.php:582 -msgid "Invalid shipping method." -msgstr "無效的送貨方法." - -# @ woocommerce -#: classes/class-wc-checkout.php:595 -msgid "Invalid payment method." -msgstr "無效的付費方法." - -# @ woocommerce -#: classes/class-wc-checkout.php:635 woocommerce-core-functions.php:2485 -#: woocommerce-core-functions.php:2488 woocommerce-functions.php:703 -#: woocommerce-functions.php:705 woocommerce-functions.php:708 -#: woocommerce-functions.php:720 woocommerce-functions.php:722 -#: woocommerce-functions.php:725 woocommerce-functions.php:759 -msgid "ERROR" -msgstr "錯誤" - -# @ woocommerce -#: classes/class-wc-checkout.php:635 woocommerce-functions.php:759 -msgid "" -"Couldn’t register you… please contact us if you continue to " -"have problems." -msgstr "無法註冊… 若您持續遇到這個問題,請聯絡我們。" - -# @ woocommerce -#: classes/class-wc-countries.php:37 -msgid "Afghanistan" -msgstr "阿富汗" - -# @ woocommerce -#: classes/class-wc-countries.php:38 -msgid "Åland Islands" -msgstr "奧蘭群島" - -# @ woocommerce -#: classes/class-wc-countries.php:39 -msgid "Albania" -msgstr "阿爾巴尼亞" - -# @ woocommerce -#: classes/class-wc-countries.php:40 -msgid "Algeria" -msgstr "阿爾及利亞" - -# @ woocommerce -#: i18n/states/US.php:67 -msgid "American Samoa" -msgstr "美屬薩摩亞" - -# @ woocommerce -#: classes/class-wc-countries.php:41 -msgid "Andorra" -msgstr "安道爾" - -# @ woocommerce -#: classes/class-wc-countries.php:42 -msgid "Angola" -msgstr "安哥拉" - -# @ woocommerce -#: classes/class-wc-countries.php:43 -msgid "Anguilla" -msgstr "安圭拉" - -# @ woocommerce -#: classes/class-wc-countries.php:44 -msgid "Antarctica" -msgstr "南極洲" - -# @ woocommerce -#: classes/class-wc-countries.php:45 -msgid "Antigua and Barbuda" -msgstr "安提瓜和巴布達" - -# @ woocommerce -#: classes/class-wc-countries.php:46 -msgid "Argentina" -msgstr "阿根廷" - -# @ woocommerce -#: classes/class-wc-countries.php:47 -msgid "Armenia" -msgstr "亞美尼亞" - -# @ woocommerce -#: classes/class-wc-countries.php:48 -msgid "Aruba" -msgstr "阿魯巴" - -# @ woocommerce -#: classes/class-wc-countries.php:49 -msgid "Australia" -msgstr "澳大利亞" - -# @ woocommerce -#: classes/class-wc-countries.php:50 -msgid "Austria" -msgstr "奧地利" - -# @ woocommerce -#: classes/class-wc-countries.php:51 -msgid "Azerbaijan" -msgstr "阿塞拜疆" - -# @ woocommerce -#: classes/class-wc-countries.php:52 -msgid "Bahamas" -msgstr "巴哈馬" - -# @ woocommerce -#: classes/class-wc-countries.php:53 -msgid "Bahrain" -msgstr "巴林" - -# @ woocommerce -#: classes/class-wc-countries.php:54 -msgid "Bangladesh" -msgstr "孟加拉國" - -# @ woocommerce -#: classes/class-wc-countries.php:55 -msgid "Barbados" -msgstr "巴巴多斯" - -# @ woocommerce -#: classes/class-wc-countries.php:56 -msgid "Belarus" -msgstr "白俄羅斯" - -# @ woocommerce -#: classes/class-wc-countries.php:57 -msgid "Belgium" -msgstr "比利時" - -# @ woocommerce -#: classes/class-wc-countries.php:59 -msgid "Belize" -msgstr "伯利茲" - -# @ woocommerce -#: classes/class-wc-countries.php:60 -msgid "Benin" -msgstr "貝寧" - -# @ woocommerce -#: classes/class-wc-countries.php:61 -msgid "Bermuda" -msgstr "百慕大" - -# @ woocommerce -#: classes/class-wc-countries.php:62 -msgid "Bhutan" -msgstr "不丹" - -# @ woocommerce -#: classes/class-wc-countries.php:63 -msgid "Bolivia" -msgstr "玻利維亞" - -# @ woocommerce -#: classes/class-wc-countries.php:64 -msgid "Bonaire, Saint Eustatius and Saba" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:65 -msgid "Bosnia and Herzegovina" -msgstr "波斯尼亞和黑塞哥維那" - -# @ woocommerce -#: classes/class-wc-countries.php:66 -msgid "Botswana" -msgstr "博茨瓦納" - -# @ woocommerce -#: classes/class-wc-countries.php:67 -#, fuzzy -msgid "Bouvet Island" -msgstr "羅得島" - -# @ woocommerce -#: classes/class-wc-countries.php:68 -msgid "Brazil" -msgstr "巴西" - -# @ woocommerce -#: classes/class-wc-countries.php:69 -msgid "British Indian Ocean Territory" -msgstr "英屬印度洋領地" - -# @ woocommerce -#: classes/class-wc-countries.php:70 -msgid "British Virgin Islands" -msgstr "英屬維爾京群島" - -# @ woocommerce -#: classes/class-wc-countries.php:71 -msgid "Brunei" -msgstr "文萊" - -# @ woocommerce -#: classes/class-wc-countries.php:72 -msgid "Bulgaria" -msgstr "保加利亞" - -# @ woocommerce -#: classes/class-wc-countries.php:73 -msgid "Burkina Faso" -msgstr "布基納法索" - -# @ woocommerce -#: classes/class-wc-countries.php:74 -msgid "Burundi" -msgstr "布隆迪" - -# @ woocommerce -#: classes/class-wc-countries.php:75 -msgid "Cambodia" -msgstr "柬埔寨" - -# @ woocommerce -#: classes/class-wc-countries.php:76 -msgid "Cameroon" -msgstr "喀麥隆" - -# @ woocommerce -#: classes/class-wc-countries.php:77 -msgid "Canada" -msgstr "加拿大" - -# @ woocommerce -#: classes/class-wc-countries.php:78 -msgid "Cape Verde" -msgstr "佛得角" - -# @ woocommerce -#: classes/class-wc-countries.php:79 -msgid "Cayman Islands" -msgstr "開曼群島" - -# @ woocommerce -#: classes/class-wc-countries.php:80 -msgid "Central African Republic" -msgstr "中非共和國" - -# @ woocommerce -#: classes/class-wc-countries.php:81 -msgid "Chad" -msgstr "乍得" - -# @ woocommerce -#: classes/class-wc-countries.php:82 -msgid "Chile" -msgstr "智利" - -# @ woocommerce -#: classes/class-wc-countries.php:83 -msgid "China" -msgstr "中國" - -# @ woocommerce -#: classes/class-wc-countries.php:84 -msgid "Christmas Island" -msgstr "聖誕島" - -# @ woocommerce -#: classes/class-wc-countries.php:85 -msgid "Cocos (Keeling) Islands" -msgstr "科科斯群島" - -# @ woocommerce -#: classes/class-wc-countries.php:86 -msgid "Colombia" -msgstr "哥倫比亞" - -# @ woocommerce -#: classes/class-wc-countries.php:87 -msgid "Comoros" -msgstr "科摩羅" - -# @ woocommerce -#: classes/class-wc-countries.php:88 -msgid "Congo (Brazzaville)" -msgstr "剛果(布)" - -# @ woocommerce -#: classes/class-wc-countries.php:89 -msgid "Congo (Kinshasa)" -msgstr "剛果(金)" - -# @ woocommerce -#: classes/class-wc-countries.php:90 -msgid "Cook Islands" -msgstr "庫克群島" - -# @ woocommerce -#: classes/class-wc-countries.php:91 -msgid "Costa Rica" -msgstr "哥斯達黎加" - -# @ woocommerce -#: classes/class-wc-countries.php:92 -msgid "Croatia" -msgstr "克羅地亞" - -# @ woocommerce -#: classes/class-wc-countries.php:93 -msgid "Cuba" -msgstr "古巴" - -# @ woocommerce -#: classes/class-wc-countries.php:94 -msgid "CuraÇao" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:95 -msgid "Cyprus" -msgstr "塞浦路斯" - -# @ woocommerce -#: classes/class-wc-countries.php:96 -msgid "Czech Republic" -msgstr "捷克共和國" - -# @ woocommerce -#: classes/class-wc-countries.php:97 -msgid "Denmark" -msgstr "丹麥" - -# @ woocommerce -#: classes/class-wc-countries.php:98 -msgid "Djibouti" -msgstr "吉布提" - -# @ woocommerce -#: classes/class-wc-countries.php:99 -msgid "Dominica" -msgstr "多米尼加" - -# @ woocommerce -#: classes/class-wc-countries.php:100 -msgid "Dominican Republic" -msgstr "多米尼加共和國" - -# @ woocommerce -#: classes/class-wc-countries.php:101 -msgid "Ecuador" -msgstr "厄瓜多爾" - -# @ woocommerce -#: classes/class-wc-countries.php:102 -msgid "Egypt" -msgstr "埃及" - -# @ woocommerce -#: classes/class-wc-countries.php:103 -msgid "El Salvador" -msgstr "薩爾瓦多" - -# @ woocommerce -#: classes/class-wc-countries.php:104 -msgid "Equatorial Guinea" -msgstr "赤道幾內亞" - -# @ woocommerce -#: classes/class-wc-countries.php:105 -msgid "Eritrea" -msgstr "厄立特里亞" - -# @ woocommerce -#: classes/class-wc-countries.php:106 -msgid "Estonia" -msgstr "愛沙尼亞" - -# @ woocommerce -#: classes/class-wc-countries.php:107 -msgid "Ethiopia" -msgstr "埃塞俄比亞" - -# @ woocommerce -#: classes/class-wc-countries.php:108 -msgid "Falkland Islands" -msgstr "福克蘭群島" - -# @ woocommerce -#: classes/class-wc-countries.php:109 -msgid "Faroe Islands" -msgstr "法羅群島" - -# @ woocommerce -#: classes/class-wc-countries.php:110 -msgid "Fiji" -msgstr "斐" - -# @ woocommerce -#: classes/class-wc-countries.php:111 -msgid "Finland" -msgstr "芬蘭" - -# @ woocommerce -#: classes/class-wc-countries.php:112 -msgid "France" -msgstr "法國" - -# @ woocommerce -#: classes/class-wc-countries.php:113 -msgid "French Guiana" -msgstr "法屬圭亞那" - -# @ woocommerce -#: classes/class-wc-countries.php:114 -msgid "French Polynesia" -msgstr "法屬波利尼西亞" - -# @ woocommerce -#: classes/class-wc-countries.php:115 -msgid "French Southern Territories" -msgstr "法國南部領土" - -# @ woocommerce -#: classes/class-wc-countries.php:116 -msgid "Gabon" -msgstr "加蓬" - -# @ woocommerce -#: classes/class-wc-countries.php:117 -msgid "Gambia" -msgstr "岡比亞" - -# @ woocommerce -#: classes/class-wc-countries.php:118 i18n/states/US.php:23 -msgid "Georgia" -msgstr "格魯吉亞" - -# @ woocommerce -#: classes/class-wc-countries.php:119 -msgid "Germany" -msgstr "德國" - -# @ woocommerce -#: classes/class-wc-countries.php:120 -msgid "Ghana" -msgstr "加納" - -# @ woocommerce -#: classes/class-wc-countries.php:121 -msgid "Gibraltar" -msgstr "直布羅陀" - -# @ woocommerce -#: classes/class-wc-countries.php:122 -msgid "Greece" -msgstr "希臘" - -# @ woocommerce -#: classes/class-wc-countries.php:123 -msgid "Greenland" -msgstr "格陵蘭" - -# @ woocommerce -#: classes/class-wc-countries.php:124 -msgid "Grenada" -msgstr "格林納達" - -# @ woocommerce -#: classes/class-wc-countries.php:125 -msgid "Guadeloupe" -msgstr "瓜德羅普島" - -# @ woocommerce -#: i18n/states/US.php:68 -msgid "Guam" -msgstr "關島" - -# @ woocommerce -#: classes/class-wc-countries.php:126 -msgid "Guatemala" -msgstr "危地馬拉" - -# @ woocommerce -#: classes/class-wc-countries.php:127 -msgid "Guernsey" -msgstr "根西島" - -# @ woocommerce -#: classes/class-wc-countries.php:128 -msgid "Guinea" -msgstr "幾內亞" - -# @ woocommerce -#: classes/class-wc-countries.php:129 -msgid "Guinea-Bissau" -msgstr "幾內亞比紹" - -# @ woocommerce -#: classes/class-wc-countries.php:130 -msgid "Guyana" -msgstr "圭亞那" - -# @ woocommerce -#: classes/class-wc-countries.php:131 -msgid "Haiti" -msgstr "海地" - -# @ woocommerce -#: classes/class-wc-countries.php:132 -msgid "Heard Island and McDonald Islands" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:133 -msgid "Honduras" -msgstr "洪都拉斯" - -# @ woocommerce -#: classes/class-wc-countries.php:134 -msgid "Hong Kong" -msgstr "香港" - -# @ woocommerce -#: classes/class-wc-countries.php:135 -msgid "Hungary" -msgstr "匈牙利" - -# @ woocommerce -#: classes/class-wc-countries.php:136 -msgid "Iceland" -msgstr "冰島" - -# @ woocommerce -#: classes/class-wc-countries.php:137 -msgid "India" -msgstr "印度" - -# @ woocommerce -#: classes/class-wc-countries.php:138 -msgid "Indonesia" -msgstr "印尼" - -# @ woocommerce -#: classes/class-wc-countries.php:139 -msgid "Iran" -msgstr "伊朗" - -# @ woocommerce -#: classes/class-wc-countries.php:140 -msgid "Iraq" -msgstr "伊拉克" - -# @ woocommerce -#: classes/class-wc-countries.php:141 -msgid "Republic of Ireland" -msgstr "愛爾蘭共和國" - -# @ woocommerce -#: classes/class-wc-countries.php:142 -msgid "Isle of Man" -msgstr "馬恩島" - -# @ woocommerce -#: classes/class-wc-countries.php:143 -msgid "Israel" -msgstr "以色列" - -# @ woocommerce -#: classes/class-wc-countries.php:144 -msgid "Italy" -msgstr "意大利" - -# @ woocommerce -#: classes/class-wc-countries.php:145 -msgid "Ivory Coast" -msgstr "象牙海岸" - -# @ woocommerce -#: classes/class-wc-countries.php:146 -msgid "Jamaica" -msgstr "牙買加" - -# @ woocommerce -#: classes/class-wc-countries.php:147 -msgid "Japan" -msgstr "日本" - -# @ woocommerce -#: classes/class-wc-countries.php:148 -msgid "Jersey" -msgstr "新澤西州" - -# @ woocommerce -#: classes/class-wc-countries.php:149 -msgid "Jordan" -msgstr "約旦" - -# @ woocommerce -#: classes/class-wc-countries.php:150 -msgid "Kazakhstan" -msgstr "哈薩克斯坦" - -# @ woocommerce -#: classes/class-wc-countries.php:151 -msgid "Kenya" -msgstr "肯尼亞" - -# @ woocommerce -#: classes/class-wc-countries.php:152 -msgid "Kiribati" -msgstr "基里巴斯" - -# @ woocommerce -#: classes/class-wc-countries.php:153 -msgid "Kuwait" -msgstr "科威特" - -# @ woocommerce -#: classes/class-wc-countries.php:154 -msgid "Kyrgyzstan" -msgstr "吉爾吉斯斯坦" - -# @ woocommerce -#: classes/class-wc-countries.php:155 -msgid "Laos" -msgstr "老撾" - -# @ woocommerce -#: classes/class-wc-countries.php:156 -msgid "Latvia" -msgstr "拉脫維亞" - -# @ woocommerce -#: classes/class-wc-countries.php:157 -msgid "Lebanon" -msgstr "黎巴嫩" - -# @ woocommerce -#: classes/class-wc-countries.php:158 -msgid "Lesotho" -msgstr "萊索托" - -# @ woocommerce -#: classes/class-wc-countries.php:159 -msgid "Liberia" -msgstr "利比里亞" - -# @ woocommerce -#: classes/class-wc-countries.php:160 -msgid "Libya" -msgstr "利比亞" - -# @ woocommerce -#: classes/class-wc-countries.php:161 -msgid "Liechtenstein" -msgstr "列支敦士登" - -# @ woocommerce -#: classes/class-wc-countries.php:162 -msgid "Lithuania" -msgstr "立陶宛" - -# @ woocommerce -#: classes/class-wc-countries.php:163 -msgid "Luxembourg" -msgstr "盧森堡" - -# @ woocommerce -#: classes/class-wc-countries.php:164 -msgid "Macao S.A.R., China" -msgstr "中國澳門特別行政區" - -# @ woocommerce -#: classes/class-wc-countries.php:165 -msgid "Macedonia" -msgstr "馬其頓" - -# @ woocommerce -#: classes/class-wc-countries.php:166 -msgid "Madagascar" -msgstr "馬達加斯加" - -# @ woocommerce -#: classes/class-wc-countries.php:167 -msgid "Malawi" -msgstr "馬拉維" - -# @ woocommerce -#: classes/class-wc-countries.php:168 -msgid "Malaysia" -msgstr "馬來西亞" - -# @ woocommerce -#: classes/class-wc-countries.php:169 -msgid "Maldives" -msgstr "馬爾代夫" - -# @ woocommerce -#: classes/class-wc-countries.php:170 -msgid "Mali" -msgstr "馬里" - -# @ woocommerce -#: classes/class-wc-countries.php:171 -msgid "Malta" -msgstr "馬耳他" - -# @ woocommerce -#: classes/class-wc-countries.php:172 -msgid "Marshall Islands" -msgstr "馬紹爾群島" - -# @ woocommerce -#: classes/class-wc-countries.php:173 -msgid "Martinique" -msgstr "馬提尼克島" - -# @ woocommerce -#: classes/class-wc-countries.php:174 -msgid "Mauritania" -msgstr "毛里塔尼亞" - -# @ woocommerce -#: classes/class-wc-countries.php:175 -msgid "Mauritius" -msgstr "毛里求斯" - -# @ woocommerce -#: classes/class-wc-countries.php:176 -msgid "Mayotte" -msgstr "馬約特島" - -# @ woocommerce -#: classes/class-wc-countries.php:177 -msgid "Mexico" -msgstr "墨西哥" - -# @ woocommerce -#: classes/class-wc-countries.php:178 -msgid "Micronesia" -msgstr "密克羅尼西亞" - -# @ woocommerce -#: classes/class-wc-countries.php:179 -msgid "Moldova" -msgstr "摩爾多瓦" - -# @ woocommerce -#: classes/class-wc-countries.php:180 -msgid "Monaco" -msgstr "摩納哥" - -# @ woocommerce -#: classes/class-wc-countries.php:181 -msgid "Mongolia" -msgstr "蒙古" - -# @ woocommerce -#: classes/class-wc-countries.php:182 -msgid "Montenegro" -msgstr "黑山" - -# @ woocommerce -#: classes/class-wc-countries.php:183 -msgid "Montserrat" -msgstr "蒙特塞拉特" - -# @ woocommerce -#: classes/class-wc-countries.php:184 -msgid "Morocco" -msgstr "摩洛哥" - -# @ woocommerce -#: classes/class-wc-countries.php:185 -msgid "Mozambique" -msgstr "莫桑比克" - -# @ woocommerce -#: classes/class-wc-countries.php:186 -msgid "Myanmar" -msgstr "緬甸" - -# @ woocommerce -#: classes/class-wc-countries.php:187 -msgid "Namibia" -msgstr "納米比亞" - -# @ woocommerce -#: classes/class-wc-countries.php:188 -msgid "Nauru" -msgstr "瑙魯" - -# @ woocommerce -#: classes/class-wc-countries.php:189 -msgid "Nepal" -msgstr "尼泊爾" - -# @ woocommerce -#: classes/class-wc-countries.php:190 -msgid "Netherlands" -msgstr "荷蘭" - -# @ woocommerce -#: classes/class-wc-countries.php:191 -msgid "Netherlands Antilles" -msgstr "荷屬安的列斯群島" - -# @ woocommerce -#: classes/class-wc-countries.php:192 -msgid "New Caledonia" -msgstr "新喀裡多尼亞" - -# @ woocommerce -#: classes/class-wc-countries.php:193 -msgid "New Zealand" -msgstr "新西蘭" - -# @ woocommerce -#: classes/class-wc-countries.php:194 -msgid "Nicaragua" -msgstr "尼加拉瓜" - -# @ woocommerce -#: classes/class-wc-countries.php:195 -msgid "Niger" -msgstr "尼日爾" - -# @ woocommerce -#: classes/class-wc-countries.php:196 -msgid "Nigeria" -msgstr "尼日利亞" - -# @ woocommerce -#: classes/class-wc-countries.php:197 -msgid "Niue" -msgstr "紐埃" - -# @ woocommerce -#: classes/class-wc-countries.php:198 -msgid "Norfolk Island" -msgstr "諾福克島" - -# @ woocommerce -#: classes/class-wc-countries.php:199 -msgid "North Korea" -msgstr "北朝鮮" - -# @ woocommerce -#: i18n/states/US.php:69 -msgid "Northern Mariana Islands" -msgstr "北馬里亞納群島" - -# @ woocommerce -#: classes/class-wc-countries.php:200 -msgid "Norway" -msgstr "挪威" - -# @ woocommerce -#: classes/class-wc-countries.php:201 -msgid "Oman" -msgstr "阿曼" - -# @ woocommerce -#: classes/class-wc-countries.php:202 -msgid "Pakistan" -msgstr "巴基斯坦" - -# @ woocommerce -#: classes/class-wc-countries.php:203 -msgid "Palestinian Territory" -msgstr "巴勒斯坦領土" - -# @ woocommerce -#: classes/class-wc-countries.php:204 -msgid "Panama" -msgstr "巴拿馬" - -# @ woocommerce -#: classes/class-wc-countries.php:205 -msgid "Papua New Guinea" -msgstr "巴布亞新幾內亞" - -# @ woocommerce -#: classes/class-wc-countries.php:206 -msgid "Paraguay" -msgstr "巴拉圭" - -# @ woocommerce -#: classes/class-wc-countries.php:207 -msgid "Peru" -msgstr "秘魯" - -# @ woocommerce -#: classes/class-wc-countries.php:208 -msgid "Philippines" -msgstr "菲律賓" - -# @ woocommerce -#: classes/class-wc-countries.php:209 -msgid "Pitcairn" -msgstr "皮特凱恩" - -# @ woocommerce -#: classes/class-wc-countries.php:210 -msgid "Poland" -msgstr "波蘭" - -# @ woocommerce -#: classes/class-wc-countries.php:211 -msgid "Portugal" -msgstr "葡萄牙" - -# @ woocommerce -#: i18n/states/US.php:70 -msgid "Puerto Rico" -msgstr "波多黎各" - -# @ woocommerce -#: classes/class-wc-countries.php:212 -msgid "Qatar" -msgstr "卡塔爾" - -# @ woocommerce -#: classes/class-wc-countries.php:213 -msgid "Reunion" -msgstr "留尼旺島" - -# @ woocommerce -#: classes/class-wc-countries.php:214 -msgid "Romania" -msgstr "羅馬尼亞" - -# @ woocommerce -#: classes/class-wc-countries.php:215 -msgid "Russia" -msgstr "俄國" - -# @ woocommerce -#: classes/class-wc-countries.php:216 -msgid "Rwanda" -msgstr "盧旺達" - -# @ woocommerce -#: classes/class-wc-countries.php:217 -msgid "Saint Barthélemy" -msgstr "聖巴泰勒米" - -# @ woocommerce -#: classes/class-wc-countries.php:218 -msgid "Saint Helena" -msgstr "聖赫勒拿島" - -# @ woocommerce -#: classes/class-wc-countries.php:219 -msgid "Saint Kitts and Nevis" -msgstr "聖基茨和尼維斯" - -# @ woocommerce -#: classes/class-wc-countries.php:220 -msgid "Saint Lucia" -msgstr "聖盧西亞" - -# @ woocommerce -#: classes/class-wc-countries.php:221 -msgid "Saint Martin (French part)" -msgstr "聖馬丁(法國部分)" - -# @ woocommerce -#: classes/class-wc-countries.php:222 -#, fuzzy -msgid "Saint Martin (Dutch part)" -msgstr "聖馬丁(法國部分)" - -# @ woocommerce -#: classes/class-wc-countries.php:223 -msgid "Saint Pierre and Miquelon" -msgstr "聖皮埃爾和密克隆" - -# @ woocommerce -#: classes/class-wc-countries.php:224 -msgid "Saint Vincent and the Grenadines" -msgstr "聖文森特和格林納丁斯" - -# @ woocommerce -#: classes/class-wc-countries.php:225 -msgid "Samoa" -msgstr "薩摩亞" - -# @ woocommerce -#: classes/class-wc-countries.php:226 -msgid "San Marino" -msgstr "聖馬力諾" - -# @ woocommerce -#: classes/class-wc-countries.php:227 -msgid "São Tomé and Príncipe" -msgstr "聖多美及普林西比" - -# @ woocommerce -#: classes/class-wc-countries.php:228 -msgid "Saudi Arabia" -msgstr "沙特阿拉伯" - -# @ woocommerce -#: classes/class-wc-countries.php:229 -msgid "Senegal" -msgstr "塞內加爾" - -# @ woocommerce -#: classes/class-wc-countries.php:230 -msgid "Serbia" -msgstr "塞爾維亞" - -# @ woocommerce -#: classes/class-wc-countries.php:231 -msgid "Seychelles" -msgstr "塞舌爾" - -# @ woocommerce -#: classes/class-wc-countries.php:232 -msgid "Sierra Leone" -msgstr "塞拉利昂" - -# @ woocommerce -#: classes/class-wc-countries.php:233 -msgid "Singapore" -msgstr "新加坡" - -# @ woocommerce -#: classes/class-wc-countries.php:234 -msgid "Slovakia" -msgstr "斯洛伐克" - -# @ woocommerce -#: classes/class-wc-countries.php:235 -msgid "Slovenia" -msgstr "斯洛文尼亞" - -# @ woocommerce -#: classes/class-wc-countries.php:236 -msgid "Solomon Islands" -msgstr "索羅門群島" - -# @ woocommerce -#: classes/class-wc-countries.php:237 -msgid "Somalia" -msgstr "索馬里" - -# @ woocommerce -#: classes/class-wc-countries.php:238 -msgid "South Africa" -msgstr "南非" - -# @ woocommerce -#: classes/class-wc-countries.php:239 -msgid "South Georgia/Sandwich Islands" -msgstr "南喬治亞島/南桑威奇群島" - -# @ woocommerce -#: classes/class-wc-countries.php:240 -msgid "South Korea" -msgstr "韓國" - -# @ woocommerce -#: classes/class-wc-countries.php:241 -#, fuzzy -msgid "South Sudan" -msgstr "南國" - -# @ woocommerce -#: classes/class-wc-countries.php:242 -msgid "Spain" -msgstr "西班牙" - -# @ woocommerce -#: classes/class-wc-countries.php:243 -msgid "Sri Lanka" -msgstr "斯里蘭卡" - -# @ woocommerce -#: classes/class-wc-countries.php:244 -msgid "Sudan" -msgstr "蘇丹" - -# @ woocommerce -#: classes/class-wc-countries.php:245 -msgid "Suriname" -msgstr "蘇里南" - -# @ woocommerce -#: classes/class-wc-countries.php:246 -msgid "Svalbard and Jan Mayen" -msgstr "斯瓦爾巴群島和揚馬延島" - -# @ woocommerce -#: classes/class-wc-countries.php:247 -msgid "Swaziland" -msgstr "斯威士蘭" - -# @ woocommerce -#: classes/class-wc-countries.php:248 -msgid "Sweden" -msgstr "瑞典" - -# @ woocommerce -#: classes/class-wc-countries.php:249 -msgid "Switzerland" -msgstr "瑞士" - -# @ woocommerce -#: classes/class-wc-countries.php:250 -msgid "Syria" -msgstr "敘利亞" - -# @ woocommerce -#: classes/class-wc-countries.php:251 -msgid "Taiwan" -msgstr "台灣" - -# @ woocommerce -#: classes/class-wc-countries.php:252 -msgid "Tajikistan" -msgstr "塔吉克斯坦" - -# @ woocommerce -#: classes/class-wc-countries.php:253 -msgid "Tanzania" -msgstr "坦桑尼亞" - -# @ woocommerce -#: classes/class-wc-countries.php:254 -msgid "Thailand" -msgstr "泰國" - -# @ woocommerce -#: classes/class-wc-countries.php:255 -msgid "Timor-Leste" -msgstr "東帝汶" - -# @ woocommerce -#: classes/class-wc-countries.php:256 -msgid "Togo" -msgstr "多哥" - -# @ woocommerce -#: classes/class-wc-countries.php:257 -msgid "Tokelau" -msgstr "托克勞" - -# @ woocommerce -#: classes/class-wc-countries.php:258 -msgid "Tonga" -msgstr "湯加" - -# @ woocommerce -#: classes/class-wc-countries.php:259 -msgid "Trinidad and Tobago" -msgstr "特里尼達和多巴哥" - -# @ woocommerce -#: classes/class-wc-countries.php:260 -msgid "Tunisia" -msgstr "突尼斯" - -# @ woocommerce -#: classes/class-wc-countries.php:261 -msgid "Turkey" -msgstr "土耳其" - -# @ woocommerce -#: classes/class-wc-countries.php:262 -msgid "Turkmenistan" -msgstr "土庫曼斯坦" - -# @ woocommerce -#: classes/class-wc-countries.php:263 -msgid "Turks and Caicos Islands" -msgstr "特克斯和凱科斯群島" - -# @ woocommerce -#: classes/class-wc-countries.php:264 -msgid "Tuvalu" -msgstr "圖瓦盧" - -# @ woocommerce -#: i18n/states/US.php:71 -msgid "US Minor Outlying Islands" -msgstr "美國本土外小島嶼" - -# @ woocommerce -#: classes/class-wc-countries.php:265 -msgid "Uganda" -msgstr "烏干達" - -# @ woocommerce -#: classes/class-wc-countries.php:266 -msgid "Ukraine" -msgstr "烏克蘭" - -# @ woocommerce -#: classes/class-wc-countries.php:267 -msgid "United Arab Emirates" -msgstr "阿拉伯聯合大公國" - -# @ woocommerce -#: classes/class-wc-countries.php:268 -msgid "United Kingdom" -msgstr "聯合王國" - -# @ woocommerce -#: classes/class-wc-countries.php:269 -msgid "United States" -msgstr "美國" - -# @ woocommerce -#: classes/class-wc-countries.php:270 -msgid "Uruguay" -msgstr "烏拉圭" - -# @ woocommerce -#: classes/class-wc-countries.php:271 -msgid "Uzbekistan" -msgstr "烏茲別克斯坦" - -# @ woocommerce -#: classes/class-wc-countries.php:272 -msgid "Vanuatu" -msgstr "瓦努阿圖" - -# @ woocommerce -#: classes/class-wc-countries.php:273 -msgid "Vatican" -msgstr "梵帝岡" - -# @ woocommerce -#: classes/class-wc-countries.php:274 -msgid "Venezuela" -msgstr "委內瑞拉" - -# @ woocommerce -#: classes/class-wc-countries.php:275 -msgid "Vietnam" -msgstr "越南" - -# @ woocommerce -#: classes/class-wc-countries.php:276 -msgid "Wallis and Futuna" -msgstr "瓦利斯群島和富圖納群島" - -# @ woocommerce -#: classes/class-wc-countries.php:277 -msgid "Western Sahara" -msgstr "西撒哈拉" - -# @ woocommerce -#: classes/class-wc-countries.php:278 -msgid "Yemen" -msgstr "也門" - -# @ woocommerce -#: classes/class-wc-countries.php:279 -msgid "Zambia" -msgstr "贊比亞" - -# @ woocommerce -#: classes/class-wc-countries.php:280 -msgid "Zimbabwe" -msgstr "津巴布韋" - -# @ woocommerce -#: classes/class-wc-countries.php:418 -msgid "to the" -msgstr "到" - -# @ woocommerce -#: classes/class-wc-countries.php:419 -msgid "to" -msgstr "到" - -# @ woocommerce -#: classes/class-wc-countries.php:432 -msgid "the" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:444 -msgid "VAT" -msgstr "增值稅 (VAT)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:352 -#: admin/settings/settings-tax-rates.php:387 -#: admin/settings/settings-tax-rates.php:466 -#: admin/woocommerce-admin-content.php:48 -#: admin/woocommerce-admin-settings.php:184 classes/class-wc-countries.php:444 -#: templates/cart/totals.php:110 templates/checkout/review-order.php:113 -msgid "Tax" -msgstr "稅金" - -# @ woocommerce -#: classes/class-wc-countries.php:457 -msgid "(incl. VAT)" -msgstr "(包含增值稅)" - -# @ woocommerce -#: classes/class-wc-countries.php:457 -msgid "(incl. tax)" -msgstr "(包含稅)" - -# @ woocommerce -#: classes/class-wc-countries.php:470 -msgid "(ex. VAT)" -msgstr "(不包稅)" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:549 -#: classes/class-wc-countries.php:470 -msgid "(ex. tax)" -msgstr "(不計稅)" - -# @ woocommerce -#: classes/class-wc-countries.php:694 classes/class-wc-countries.php:704 -#: classes/class-wc-countries.php:724 classes/class-wc-countries.php:779 -#: classes/class-wc-countries.php:803 classes/class-wc-countries.php:848 -#: classes/class-wc-countries.php:872 -msgid "Province" -msgstr "省" - -# @ woocommerce -#: classes/class-wc-countries.php:710 -msgid "Canton" -msgstr "郡" - -# @ woocommerce -#: classes/class-wc-countries.php:719 classes/class-wc-countries.php:854 -msgid "Municipality" -msgstr "市" - -# @ woocommerce -#: classes/class-wc-countries.php:766 -#, fuzzy -msgid "Town / District" -msgstr "市/區" - -# @ woocommerce -#: classes/class-wc-countries.php:769 -msgid "Region" -msgstr "區域" - -# @ woocommerce -#: classes/class-wc-countries.php:877 -msgid "Zip" -msgstr "郵政編碼" - -# @ woocommerce -#: classes/class-wc-countries.php:880 -msgid "State" -msgstr "州" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:168 -#: admin/post-types/writepanels/writepanel-order_data.php:258 -#: admin/woocommerce-admin-users.php:171 admin/woocommerce-admin-users.php:220 -#: classes/class-wc-countries.php:885 -#: templates/cart/shipping-calculator.php:68 -msgid "Postcode" -msgstr "郵遞區號" - -# @ woocommerce -#: classes/class-wc-countries.php:888 -msgid "County" -msgstr "縣" - -# @ woocommerce -#: classes/class-wc-countries.php:920 classes/class-wc-countries.php:921 -#: classes/class-wc-countries.php:996 -#: templates/cart/shipping-calculator.php:68 -#, fuzzy -msgid "Postcode / Zip" -msgstr "郵遞區號" - -# @ woocommerce -#: classes/class-wc-countries.php:925 classes/class-wc-countries.php:926 -#: classes/class-wc-countries.php:985 -#, fuzzy -msgid "Town / City" -msgstr "縣市" - -# @ woocommerce -#: classes/class-wc-countries.php:930 classes/class-wc-countries.php:931 -#: classes/class-wc-countries.php:991 -#, fuzzy -msgid "State / County" -msgstr "鄉/鎮/區" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:172 -#: admin/post-types/writepanels/writepanel-order_data.php:262 -#: admin/woocommerce-admin-users.php:179 admin/woocommerce-admin-users.php:228 -#: classes/class-wc-countries.php:955 -msgid "Country" -msgstr "國家" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:144 -#: admin/post-types/writepanels/writepanel-order_data.php:234 -#: classes/class-wc-countries.php:960 -msgid "First Name" -msgstr "名字" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:148 -#: admin/post-types/writepanels/writepanel-order_data.php:238 -#: classes/class-wc-countries.php:965 -msgid "Last Name" -msgstr "姓氏" - -# @ woocommerce -#: classes/class-wc-countries.php:971 -msgid "Company Name" -msgstr "公司名稱" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:193 -#: admin/post-types/writepanels/writepanel-order_data.php:195 -#: admin/post-types/writepanels/writepanel-order_data.php:277 -#: admin/post-types/writepanels/writepanel-order_data.php:279 -#: classes/class-wc-countries.php:975 -msgid "Address" -msgstr "地址" - -# @ woocommerce -#: classes/class-wc-countries.php:976 -#, fuzzy -msgctxt "placeholder" -msgid "Street address" -msgstr "儲存地址" - -# @ woocommerce -#: classes/class-wc-countries.php:981 -msgctxt "placeholder" -msgid "Apartment, suite, unit etc. (optional)" -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:1038 -msgid "Email Address" -msgstr "電子郵件地址" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:185 -#: classes/class-wc-countries.php:1044 -msgid "Phone" -msgstr "聯絡電話" - -# @ woocommerce -#: classes/class-wc-coupon.php:459 -msgid "Coupon usage limit has been reached." -msgstr "已到達優惠券使用次數限制." - -# @ woocommerce -#: classes/class-wc-coupon.php:462 -msgid "This coupon has expired." -msgstr "此優惠券已過了使用期限." - -# @ woocommerce -#: classes/class-wc-coupon.php:465 -#, php-format -msgid "The minimum spend for this coupon is %s." -msgstr "此優惠券的最低花費爲 %s." - -# @ woocommerce -#: classes/class-wc-coupon.php:468 -msgid "Sorry, this coupon is not applicable to your cart contents." -msgstr "" - -# @ woocommerce -#: classes/class-wc-customer.php:628 classes/class-wc-customer.php:638 -#, fuzzy, php-format -msgid "File %d" -msgstr "檔案路徑" - -# @ woocommerce -#: classes/class-wc-emails.php:246 -msgid "Note" -msgstr "備註" - -# @ woocommerce -#: classes/class-wc-emails.php:281 -msgid "Product low in stock" -msgstr "商品庫存量低" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:623 -#: classes/class-wc-emails.php:286 classes/class-wc-emails.php:318 -#: classes/class-wc-emails.php:362 -#, php-format -msgid "Variation #%s of %s" -msgstr "#%s 變化類新的 %s" - -# @ woocommerce -#: classes/class-wc-emails.php:288 classes/class-wc-emails.php:320 -#: classes/class-wc-emails.php:364 -#, php-format -msgid "Product #%s - %s" -msgstr "商品 #%s - %s" - -# @ woocommerce -#: classes/class-wc-emails.php:290 -msgid "is low in stock." -msgstr "已無庫存。" - -# @ woocommerce -#: classes/class-wc-emails.php:313 -msgid "Product out of stock" -msgstr "商品已無庫存" - -# @ woocommerce -#: classes/class-wc-emails.php:322 -msgid "is out of stock." -msgstr "已無庫存。" - -# @ woocommerce -#: classes/class-wc-emails.php:357 -msgid "Product Backorder" -msgstr "商品延期出貨單" - -# @ woocommerce -#: classes/class-wc-emails.php:366 -#, php-format -msgid "%s units of %s have been backordered in order #%s." -msgstr "%s 個單位的 %s 在訂單 #%s 裡延期出貨." - -# @ woocommerce -#: classes/class-wc-order.php:283 -msgctxt "hash before order number" -msgid "#" -msgstr "" - -# @ woocommerce -#: classes/class-wc-order.php:858 -#, php-format -msgid " %svia %s" -msgstr " %s 透過 %s" - -# @ woocommerce -#: classes/class-wc-order.php:923 -msgid "Cart Subtotal:" -msgstr "購物車小計:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:499 -#: classes/class-wc-order.php:929 -msgid "Cart Discount:" -msgstr "購物車折價:" - -# @ woocommerce -#: classes/class-wc-order.php:935 -msgid "Shipping:" -msgstr "運送方式:" - -# @ woocommerce -#: classes/class-wc-order.php:980 -msgid "Subtotal:" -msgstr "小計:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:507 -#: classes/class-wc-order.php:1006 -msgid "Order Discount:" -msgstr "訂單折價:" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:653 -#: classes/class-wc-order.php:1011 -msgid "Order Total:" -msgstr "訂單總計:" - -# @ woocommerce -#: classes/class-wc-order.php:1034 templates/cart/totals.php:145 -#: templates/checkout/review-order.php:151 -#, php-format -msgid "(Includes %s)" -msgstr "" - -# @ woocommerce -#. translators: plugin header field 'Name' -#: admin/woocommerce-admin-content.php:83 admin/woocommerce-admin-init.php:62 -#: classes/class-wc-order.php:1183 classes/class-wc-order.php:1185 -#: classes/class-wc-order.php:1188 woocommerce.php:0 -msgid "WooCommerce" -msgstr "" - -# @ woocommerce -#: classes/class-wc-order.php:1235 -#, php-format -msgid "Order status changed from %s to %s." -msgstr "訂單狀態由 %s 更改到 %s." - -# @ woocommerce -#: classes/class-wc-order.php:1461 woocommerce-ajax.php:1163 -#: woocommerce-ajax.php:1164 -#, php-format -msgid "Item #%s stock reduced from %s to %s." -msgstr "商品 #%s 庫存由 %s 減少到 %s。" - -# @ woocommerce -#: classes/class-wc-order.php:1473 -msgid "Order item stock reduced successfully." -msgstr "訂單商品庫存已成功減少。" - -# @ woocommerce -#: classes/class-wc-product-external.php:56 -msgid "Buy product" -msgstr "購買商品" - -# @ woocommerce -#: admin/settings/settings-init.php:500 classes/class-wc-shortcodes.php:571 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:257 -#: templates/loop/add-to-cart.php:46 -#: templates/single-product/add-to-cart/grouped.php:45 -#: templates/single-product/add-to-cart/grouped.php:75 -#: templates/single-product/add-to-cart/simple.php:42 -#: templates/single-product/add-to-cart/variable.php:78 -msgid "Add to cart" -msgstr "加入購物車" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:24 -#, fuzzy -msgid "Completed order" -msgstr "已完成" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:25 -msgid "" -"Order complete emails are sent to the customer when the order is marked " -"complete and usual indicates that the order has been shipped." -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:27 -#, fuzzy -msgid "Your order is complete" -msgstr "您的訂單已被取消。" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:28 -msgid "Your {blogname} order from {order_date} is complete" -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:37 -#, fuzzy -msgid "Your order is complete - download your files" -msgstr "您的訂單已經完成。訂單細節如下:" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:38 -msgid "" -"Your {blogname} order from {order_date} is complete - download your files" -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:141 -#: classes/emails/class-wc-email-new-order.php:128 -msgid "Subject" -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:148 -#: classes/emails/class-wc-email-new-order.php:135 -#, fuzzy -msgid "Email Heading" -msgstr "電子郵件明細" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:155 -#, fuzzy -msgid "Subject (downloadable)" -msgstr "可下載" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-completed-order.php:162 -msgid "Email Heading (downloadable)" -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:27 -#, fuzzy -msgid "Customer invoice" -msgstr "顧客備註" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:28 -#, fuzzy -msgid "" -"Customer invoice emails can be sent to the user containing order info and " -"payment links." -msgstr "用電子郵件寄訂單給顧客. 尚未付款的訂單將包含一個付費連結." - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:33 -msgid "Invoice for order {order_number} from {order_date}" -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:34 -#, fuzzy -msgid "Invoice for order {order_number}" -msgstr "訂單編號 %s 的明細" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:36 -msgid "Your {blogname} order from {order_date}" -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:37 -msgid "Order {order_number} details" -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:158 -msgid "Email subject (paid)" -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-invoice.php:165 -msgid "Email heading (paid)" -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:31 -#, fuzzy -msgid "New account" -msgstr "帳號設定" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:32 -msgid "" -"Customer new account emails are sent when a customer signs up via the " -"checkout or My Account page." -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:37 -#, fuzzy -msgid "Your account on {blogname}" -msgstr "您在 %s 的帳號" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-new-account.php:38 -#, fuzzy -msgid "Welcome to {blogname}" -msgstr "歡迎來到 %s" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:62 -#: classes/emails/class-wc-email-customer-note.php:29 -msgid "Customer note" -msgstr "顧客備註" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:30 -msgid "Customer note emails are sent when you add a note to an order." -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:35 -msgid "Note added to your {blogname} order from {order_date}" -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-note.php:36 -msgid "A note has been added to your order" -msgstr "您的訂單添加了一筆備註" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:24 -#, fuzzy -msgid "Processing order" -msgstr "處理中" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:25 -msgid "" -"This is an order notification sent to the customer after payment containing " -"order details." -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:27 -#, fuzzy -msgid "Thank you for your order" -msgstr "追蹤你的訂單" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-processing-order.php:28 -msgid "Your {blogname} order receipt from {order_date}" -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:36 -#, fuzzy -msgid "Reset password" -msgstr "再次輸入密碼" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:37 -msgid "" -"Customer reset password emails are sent when a customer resets their " -"password." -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:42 -msgid "Password Reset for {blogname}" -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-customer-reset-password.php:43 -#, fuzzy -msgid "Password Reset Instructions" -msgstr "指示" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:24 -#, fuzzy -msgid "New order" -msgstr "新訂單" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:25 -msgid "New order emails are sent when an order is received/paid by a customer." -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:27 -#, fuzzy -msgid "New customer order" -msgstr "新的顧客訂單" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:28 -msgid "[{blogname}] New customer order ({order_number}) - {order_date}" -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:121 -msgid "Recipient(s)" -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:123 -#, php-format -msgid "" -"Enter recipients (comma separated) for this email. Defaults to %s." -msgstr "" - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:130 -#, fuzzy, php-format -msgid "" -"This controls the email subject line. Leave blank to use the default " -"subject: %s." -msgstr "顯示於商品標籤 URL. 留白則使用預設縮略名." - -# @ woocommerce -#: classes/emails/class-wc-email-new-order.php:137 -#, php-format -msgid "" -"This controls the main heading contained within the email notification. " -"Leave blank to use the default heading: %s." -msgstr "" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:28 -msgid "Bacs" -msgstr "" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:65 -msgid "Enable Bank Transfer" -msgstr "啓用銀行轉帳" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:69 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:63 -#: classes/gateways/cod/class-wc-gateway-cod.php:87 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:171 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:125 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:104 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:84 -msgid "Title" -msgstr "標題" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:71 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:65 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:173 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:127 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:85 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:83 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:60 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:106 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:86 -msgid "This controls the title which the user sees during checkout." -msgstr "控制使用者在結帳時所看到的標題." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:72 -msgid "Direct Bank Transfer" -msgstr "直接銀行轉帳" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:76 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:70 -msgid "Customer Message" -msgstr "顧客訊息" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:78 -msgid "" -"Give the customer instructions for paying via BACS, and let them know that " -"their order won't be shipping until the money is received." -msgstr "給顧客使用 BACS 付款的指示, 並且讓他們知道收到錢之前訂單不會出貨." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:79 -msgid "" -"Make your payment directly into our bank account. Please use your Order ID " -"as the payment reference. Your order wont be shipped until the funds have " -"cleared in our account." -msgstr "" -"直接將貨款匯入我們的銀行帳號. 請使用您的訂單 ID 作爲付款參考. 您的訂單在我們" -"賬戶內的貨款清除前不會出貨." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:82 -msgid "Account Details" -msgstr "帳號詳細訊息" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:84 -msgid "Optionally enter your bank details below for customers to pay into." -msgstr "額外的可以在以下填入您的銀行詳細資料以利顧客付款." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:88 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:163 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:203 -msgid "Account Name" -msgstr "帳號名稱" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:94 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:164 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:204 -msgid "Account Number" -msgstr "帳號號碼" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:100 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:165 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:205 -msgid "Sort Code" -msgstr "排序代碼" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:106 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:166 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:206 -msgid "Bank Name" -msgstr "銀行名稱" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:112 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:167 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:207 -msgid "IBAN" -msgstr "" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:117 -msgid "BIC (formerly Swift)" -msgstr "BIC (原: Swift)" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:136 -msgid "BACS Payment" -msgstr "BACS 付款" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:137 -msgid "" -"Allows payments by BACS (Bank Account Clearing System), more commonly known " -"as direct bank/wire transfer." -msgstr "允許使用 BACS (Bank Account Clearing System) 付款, 一般通常稱爲電匯." - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:158 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:200 -msgid "Our Details" -msgstr "我們的詳細資訊" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:168 -#: classes/gateways/bacs/class-wc-gateway-bacs.php:208 -msgid "BIC" -msgstr "" - -# @ woocommerce -#: classes/gateways/bacs/class-wc-gateway-bacs.php:234 -msgid "Awaiting BACS payment" -msgstr "等待 BACS 付款" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:28 -msgid "Cheque" -msgstr "支票" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:59 -msgid "Enable Cheque Payment" -msgstr "啓用支票付款" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:66 -#: classes/gateways/cheque/class-wc-gateway-cheque.php:90 -msgid "Cheque Payment" -msgstr "支票付款" - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:72 -msgid "" -"Let the customer know the payee and where they should be sending the cheque " -"to and that their order won't be shipping until you receive it." -msgstr "讓顧客知道誰是收款人, 該將支票送至何處以及在收到支票前訂單不會出貨." - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:73 -msgid "" -"Please send your cheque to Store Name, Store Street, Store Town, Store " -"State / County, Store Postcode." -msgstr "請將您的支票寄到 商店名稱, 商店街道, 商店市鎮, 商店國家, 商店郵政編碼." - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:91 -msgid "" -"Allows cheque payments. Why would you take cheques in this day and age? Well " -"you probably wouldn't but it does allow you to make test purchases for " -"testing order emails and the 'success' pages etc." -msgstr "" -"允許支票付款. 什麼時代了爲何你還要接受支票? 應該不會吧. 不過支票付款可以讓你" -"測試購買流程, 檢查訂單電子郵件以及 '成功' 頁面等等." - -# @ woocommerce -#: classes/gateways/cheque/class-wc-gateway-cheque.php:147 -msgid "Awaiting cheque payment" -msgstr "等候支票付款" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:27 -#: classes/gateways/cod/class-wc-gateway-cod.php:54 -#: classes/gateways/cod/class-wc-gateway-cod.php:90 -msgid "Cash on Delivery" -msgstr "貨到付款" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:55 -msgid "Have your customers pay with cash (or by other means) upon delivery." -msgstr "讓你的顧客在收到貨物的時候以現金 (或其他方式) 付款." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:80 -msgid "Enable COD" -msgstr "啓用貨到付款" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:81 -msgid "Enable Cash on Delivery" -msgstr "啓用貨到付款" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:89 -msgid "Payment method title that the customer will see on your website." -msgstr "顧客在您的網站上會看到的付款方式標題." - -# @ woocommerce -#: admin/post-types/shop_coupon.php:28 -#: classes/gateways/cod/class-wc-gateway-cod.php:94 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:178 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:132 -#: woocommerce-template.php:748 -msgid "Description" -msgstr "商品資訊" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:96 -msgid "Payment method description that the customer will see on your website." -msgstr "顧客會在您的網站上看到的付款方式敘述." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:100 -msgid "Instructions" -msgstr "指示" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:102 -msgid "Instructions that will be added to the thank you page." -msgstr "會被加在感謝頁面的指示." - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:106 -#, fuzzy -msgid "Enable for shipping methods" -msgstr "啓用該發貨方式" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:111 -msgid "" -"If COD is only available for certain methods, set it up here. Leave blank to " -"enable for all methods." -msgstr "" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:176 -msgid "Payment to be made upon delivery." -msgstr "出貨時付款." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:31 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:196 -msgid "Mijireh Checkout" -msgstr "Mijireh 結帳" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:143 -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:321 -msgid "Mijireh error:" -msgstr "Mijireh 錯誤:" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:160 -msgid "Enable Mijireh Checkout" -msgstr "啓用 Mijireh 結帳" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:164 -msgid "Access Key" -msgstr "啓用金鑰" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:166 -msgid "The Mijireh access key for your store." -msgstr "你的商店的 Mijireh 啓用金鑰" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:174 -msgid "Credit Card" -msgstr "信用卡" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:180 -msgid "Pay securely with you credit card." -msgstr "使用您的信用卡來安全付款." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:181 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:134 -msgid "This controls the description which the user sees during checkout." -msgstr "此項目控制使用者在結帳時說看到的敘述." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:200 -msgid "Get started with Mijireh Checkout" -msgstr "開始使用 Mijireh 結帳" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:201 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site. Mijireh supports a wide variety of payment gateways: Stripe, " -"Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and more." -msgstr "" -"提供一個 PCI 合格, 安全的方式來收集以及傳輸信用卡資訊到您的付費通道. 同時讓您" -"控制網站的設計. Mijireh 支援多項付費通道: Stripe, Authorize.net, PayPal, " -"eWay, SagePay, Braintree, PayLeap, 以及更多." - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:203 -msgid "Join for free" -msgstr "免費參加" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:203 -msgid "Learn more about WooCommerce and Mijireh" -msgstr "瞭解更多關於 WooCommerce 以及 Mijireh" - -# @ woocommerce -#: classes/gateways/mijireh/class-wc-gateway-mijireh.php:207 -msgid "" -"provides a fully PCI Compliant, secure way to collect and transmit credit " -"card data to your payment gateway while keeping you in control of the design " -"of your site." -msgstr "" -"提供一個 PCI 合格, 安全的方式來收集以及傳輸信用卡資訊到您的付費通道. 同時讓您" -"保留網站設計的控制權." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:34 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:128 -msgid "PayPal" -msgstr "" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:90 -msgid "PayPal standard" -msgstr "PayPal 標準" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:91 -msgid "" -"PayPal standard works by sending the user to PayPal to enter their payment " -"information." -msgstr "PayPal 標準是將使用者送往 PayPal 使其輸入付費資訊." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:103 -msgid "Gateway Disabled" -msgstr "通道被關閉" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:103 -msgid "PayPal does not support your store currency." -msgstr "PayPal 不支援您商店的貨幣." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:121 -msgid "Enable PayPal standard" -msgstr "啓用 PayPal 標準" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:135 -msgid "" -"Pay via PayPal; you can pay with your credit card if you don't have a PayPal " -"account" -msgstr "透過 PayPal 付款; 如果沒有 PayPal 帳號可以用信用卡付款" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:138 -msgid "PayPal Email" -msgstr "PayPal 電子郵件" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:140 -msgid "" -"Please enter your PayPal email address; this is needed in order to take " -"payment." -msgstr "請輸入您的 PayPal 電子郵件信箱,繼續進行結帳手續" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:146 -msgid "Invoice Prefix" -msgstr "發票前綴" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:153 -msgid "Submission method" -msgstr "提交方式" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:155 -msgid "Use form submission method." -msgstr "使用表單提交方式." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:156 -msgid "" -"Enable this to post order data to PayPal via a form instead of using a " -"redirect/querystring." -msgstr "" -"啓用此欄來透過表單使用 POST 方式來傳遞訂單資料到 PayPal, 而非使用 redirect/" -"querystring." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:160 -msgid "Page Style" -msgstr "頁面樣式" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:162 -msgid "" -"Optionally enter the name of the page style you wish to use. These are " -"defined within your PayPal account." -msgstr "額外選項: 輸入希望使用的頁面樣式名稱. 這些定義在您的 PayPal 帳號." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:168 -msgid "Shipping options" -msgstr "運送選項" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:173 -msgid "Shipping details" -msgstr "運送資訊" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:175 -msgid "Send shipping details to PayPal instead of billing." -msgstr "寄送發貨細節給 PayPal 而非帳單細節." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:177 -msgid "" -"PayPal allows us to send 1 address. If you are using PayPal for shipping " -"labels you may prefer to send the shipping address rather than billing." -msgstr "" -"PayPal 允許我們使用一個地址. 如果您使用 PayPal 爲運輸標籤, 您可能會偏向使用發" -"貨地址而非帳單地址." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:181 -msgid "Address override" -msgstr "覆蓋地址" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:183 -msgid "" -"Enable \"address_override\" to prevent address information from being " -"changed." -msgstr "啓用 \"覆蓋地址\" 來避免地址資訊被更變." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:184 -msgid "" -"PayPal verifies addresses therefore this setting can cause errors (we " -"recommend keeping it disabled)." -msgstr "PayPal 會驗證地址所以此選項可能會造成錯誤 (我們建議關閉它)." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:188 -msgid "Gateway Testing" -msgstr "通道測試" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:193 -msgid "PayPal sandbox" -msgstr "PayPal 沙盒" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:195 -msgid "Enable PayPal sandbox" -msgstr "啓用 PayPal 沙盒" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:197 -#, php-format -msgid "" -"PayPal sandbox can be used to test payments. Sign up for a developer account " -"here." -msgstr "PayPal 沙盒可用於付款測試. 在此 報名一個開發者帳號." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:200 -msgid "Debug Log" -msgstr "除錯記錄" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:202 -msgid "Enable logging" -msgstr "啓用記錄" - -# @ default -#: classes/gateways/paypal/class-wc-gateway-paypal.php:204 -msgid "" -"Log PayPal events, such as IPN requests, inside woocommerce/logs/" -"paypal.txt" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:98 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:313 -#, php-format -msgid "Order %s" -msgstr "訂單 %s" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:323 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:373 -msgid "Shipping via" -msgstr "運送透過" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:414 -msgid "" -"Thank you for your order. We are now redirecting you to PayPal to make " -"payment." -msgstr "感謝您的訂單. 我們正將您重新傳送到 PayPal 以便付款." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:435 -msgid "Pay via PayPal" -msgstr "透過 PayPal 付款" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:435 -msgid "Cancel order & restore cart" -msgstr "取消訂單 & 恢復購物車" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:489 -msgid "" -"Thank you for your order, please click the button below to pay with PayPal." -msgstr "感謝您的訂購,請點擊底下按鈕前往 PayPal 付款。" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:634 -#, php-format -msgid "Validation error: PayPal amounts do not match (gross %s)." -msgstr "驗證錯誤: PayPal 數量不符合 (總計 %s)." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:652 -msgid "IPN payment completed" -msgstr "IPN 付費完成" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:664 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:672 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:690 -#, php-format -msgid "Payment %s via IPN." -msgstr "透過 IPN 的款項 %s." - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:677 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:695 -msgid "Order refunded/reversed" -msgstr "訂單已退費/撤銷" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:678 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:696 -#, php-format -msgid "Order %s has been marked as refunded - PayPal reason code: %s" -msgstr "訂單 %s 已被標識爲“已退費” - PayPal 原因代碼:%s" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:681 -#: classes/gateways/paypal/class-wc-gateway-paypal.php:699 -#, php-format -msgid "Payment for order %s refunded/reversed" -msgstr "訂單 %s 的付費已退費/撤銷" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:26 -msgid "Google Analytics" -msgstr "谷歌分析" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:27 -msgid "" -"Google Analytics is a free service offered by Google that generates detailed " -"statistics about the visitors to a website." -msgstr "" -"谷歌分析 (Google Analytics) 爲谷歌所提供的免費服務. 其功能爲生成網站訪客的詳" -"細數據." - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:62 -msgid "Google Analytics ID" -msgstr "谷歌分析 ID" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:63 -msgid "" -"Log into your google analytics account to find your ID. e.g. UA-XXXXX-" -"X" -msgstr "登錄至您的谷歌分析帳號來查詢您的 ID. 例如: UA-XXXXX-X" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:68 -msgid "Tracking code" -msgstr "追蹤代碼" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:69 -msgid "" -"Add tracking code to your site's footer. You don't need to enable this if " -"using a 3rd party analytics plugin." -msgstr "" -"新增追蹤代碼至您網站的腳頁. 如果您使用第三方分析套件這不需要啓用此欄位." - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:75 -msgid "Add eCommerce tracking code to the thankyou page" -msgstr "新增電子商務追蹤代碼至感謝頁面" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:81 -msgid "Add event tracking code for add to cart actions" -msgstr "在 加入購物車 動作裡加入事件追蹤代碼." - -# @ woocommerce -#: admin/post-types/shop_order.php:95 -#: admin/post-types/writepanels/writepanel-order_data.php:93 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:113 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:168 -#: woocommerce-ajax.php:1725 -msgid "Guest" -msgstr "訪客" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:201 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:258 -#: templates/single-product/meta.php:19 -msgid "SKU:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:74 -#: admin/woocommerce-admin-taxonomies.php:28 -#: admin/woocommerce-admin-taxonomies.php:122 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:256 -#: classes/integrations/google-analytics/class-wc-google-analytics.php:276 -#: woocommerce.php:948 -msgid "Products" -msgstr "商品" - -# @ woocommerce -#: classes/integrations/google-analytics/class-wc-google-analytics.php:277 -msgid "Add to Cart" -msgstr "加入購物車" - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:26 -msgid "ShareDaddy" -msgstr "" - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:27 -msgid "ShareDaddy is a sharing plugin bundled with JetPack." -msgstr "ShareDaddy 是個與 JetPack 包裹在一起的套件." - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:51 -msgid "Output ShareDaddy button?" -msgstr "輸出 ShareDabby 按鍵?" - -# @ woocommerce -#: classes/integrations/sharedaddy/class-wc-sharedaddy.php:52 -msgid "Enable this option to show the ShareDaddy button on the product page." -msgstr "啓用此選項來在商品頁面顯示 ShareDaddy 按鍵." - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:29 -msgid "ShareThis" -msgstr "" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:30 -msgid "" -"ShareThis offers a sharing widget which will allow customers to share links " -"to products with their friends." -msgstr "ShareThis 提供允許顧客與朋友分享商品的分享小工具." - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:63 -msgid "ShareThis Publisher ID" -msgstr "ShareThis 發佈者 ID" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:64 -#, php-format -msgid "" -"Enter your %1$sShareThis publisher ID%2$s to show social sharing buttons on " -"product pages." -msgstr "輸入您的 %1$sShareThis 發佈者 ID%2$s 來在商品頁面顯示社交分享按鍵." - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:69 -msgid "ShareThis Code" -msgstr "ShareThis 代碼" - -# @ woocommerce -#: classes/integrations/sharethis/class-wc-sharethis.php:70 -msgid "You can tweak the ShareThis code by editing this option." -msgstr "您可透過編輯此選先來更改 ShareThis 的代碼." - -# @ woocommerce -# @ default -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:22 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:329 -msgid "ShareYourCart" -msgstr "" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:328 -msgid "Share your cart settings" -msgstr "" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:342 -#, fuzzy -msgid "Button" -msgstr "按鍵文字" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:343 -#, fuzzy -msgid "Customize Button" -msgstr "顧客登錄" - -# @ default -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:351 -#: classes/integrations/shareyourcart/class.shareyourcart-wp.php:352 -msgid "Documentation" -msgstr "文件" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:33 -msgid "Setup your ShareYourCart account" -msgstr "設置您的 ShareYourCart 帳號" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Create an account" -msgstr "建立帳號" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:35 -msgid "Can't access your account?" -msgstr "無法開啓您的帳號?" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/admin-page.php:100 -msgid "Configure" -msgstr "選項設定" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:386 -#: classes/integrations/shareyourcart/views/admin-page.php:110 -#: classes/integrations/shareyourcart/views/button-settings-page.php:120 -msgid "Save changes" -msgstr "儲存修改" - -# @ woocommerce -#: classes/integrations/shareyourcart/views/button-settings-page.php:8 -#: classes/integrations/shareyourcart/views/button-settings-page.php:11 -msgid "Button style" -msgstr "按鍵樣式" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:25 -msgid "Flat rate" -msgstr "平價" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:28 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:461 -msgid "Flat Rates" -msgstr "平價" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:29 -msgid "Flat rates let you define a standard rate per item, or per order." -msgstr "平價讓您爲每個商品或每筆訂單定義一個標準價格." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:79 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:54 -msgid "Enable this shipping method" -msgstr "啓用該發貨方式" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:83 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:81 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:58 -msgid "Method Title" -msgstr "方式標題" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:86 -msgid "Flat Rate" -msgstr "平價" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:90 -msgid "Cost per order" -msgstr "每筆訂單的花費" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:96 -#, fuzzy -msgid "" -"Enter a cost (excluding tax) per order, e.g. 5.00. Leave blank to disable." -msgstr "輸入每筆訂單的花費, 例如: 5.00. 留白以關閉功能." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:102 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:88 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:143 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:99 -msgid "Method availability" -msgstr "方式的可得性" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:107 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:93 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:148 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:104 -msgid "All allowed countries" -msgstr "所有允許的國家" - -# @ woocommerce -#: admin/settings/settings-init.php:68 admin/settings/settings-init.php:73 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:108 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:112 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:94 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:98 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:149 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:153 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:105 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:109 -msgid "Specific Countries" -msgstr "特定國家" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:120 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:83 -msgid "Calculation Type" -msgstr "計算類別" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:124 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:87 -msgid "Per Order - charge shipping for the entire order as a whole" -msgstr "每筆訂單 - 以整筆訂單來計算運費" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:125 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:88 -msgid "Per Item - charge shipping for each item individually" -msgstr "每個商品 - 以個別商品來計算運費" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:126 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:89 -msgid "Per Class - charge shipping for each shipping class in an order" -msgstr "每個課別 - 以訂單內的各個運送課別來計算運費" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:178 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:130 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:93 -msgid "Tax Status" -msgstr "稅金狀態" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:20 -#: admin/post-types/writepanels/writepanel-product_data.php:179 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:134 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:97 -msgid "Taxable" -msgstr "應課稅" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:181 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:135 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:98 -msgid "None" -msgstr "無" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:139 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:102 -msgid "Default Cost" -msgstr "預設花費" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:145 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:108 -msgid "Cost excluding tax. Enter an amount, e.g. 2.50." -msgstr "不含稅花費. 輸入一個數量, 例如: 2.50." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:151 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:114 -msgid "Default Handling Fee" -msgstr "預設手續費" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:153 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:116 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. " -"Leave blank to disable." -msgstr "" -"不包稅費用. 輸入一個數量, 例如: 2.50, 或者百分比, 例如: 5%. 留白以關閉功能." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:159 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:122 -msgid "Minimum Fee" -msgstr "最低費用" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:165 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:128 -msgid "" -"Enter a minimum fee amount. Fee's less than this will be increased. Leave " -"blank to disable." -msgstr "輸入一個最低費用. 低於此的費用會被增加. 留白以關閉功能." - -# @ woocommerce -#: admin/settings/settings-init.php:833 -#: admin/woocommerce-admin-settings.php:290 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:171 -msgid "Shipping Options" -msgstr "運送選項" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:173 -msgid "" -"Optional extra shipping options with additional costs (one per line). " -"Example: Option Name|Cost|Per-order (yes or no). Example: " -"Priority Mail|6.95|yes. If per-order is set to no, it will use " -"the \"Calculation Type\" setting." -msgstr "" -"額外花費的額外運送選項 (按照每行). 例如: 選項名稱|花費|按照每筆訂單 " -"(yes 或 no). Example: Priority Mail|6.95|yes. 如果 按照每" -"筆訂單 設爲 no, 將使用 \"計算類別\" 的設定." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:467 -#: woocommerce.php:857 -msgid "Shipping Class" -msgstr "運送課別" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:349 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:468 -msgid "Cost" -msgstr "成本" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:468 -msgid "Cost, excluding tax." -msgstr "費用, 不包稅." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:469 -msgid "Handling Fee" -msgstr "手續費" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:469 -msgid "" -"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." -msgstr "不含稅的費用. 輸入一個數量, 例如: 2.50, 或者百分比, 例如: 5%." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:474 -msgid "+ Add Flat Rate" -msgstr "+ 添加平價" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:475 -msgid "" -"Add rates for shipping classes here — they will override the default " -"costs defined above." -msgstr "爲運送課別新增個別費用 — 他們將取代上面定義的預設費用." - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:475 -msgid "Delete selected rates" -msgstr "移除選取的費用" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:495 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:528 -msgid "Select a class…" -msgstr "選擇課別…" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:500 -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:501 -msgid "0.00" -msgstr "" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:542 -msgid "Delete the selected rates?" -msgstr "刪除選中的利率?" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:25 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:84 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:145 -msgid "Free Shipping" -msgstr "免費運送" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:77 -msgid "Enable Free Shipping" -msgstr "啓用免費運送" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:106 -#, fuzzy -msgid "Free Shipping Requires..." -msgstr "免費運送" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:19 -#: admin/post-types/writepanels/order-tax-html.php:8 -#: admin/post-types/writepanels/writepanel-order_data.php:558 -#: admin/post-types/writepanels/writepanel-order_data.php:663 -#: admin/woocommerce-admin-reports.php:1642 -#: admin/woocommerce-admin-reports.php:2655 -#: admin/woocommerce-admin-reports.php:2664 -#: admin/woocommerce-admin-users.php:90 admin/woocommerce-admin-users.php:112 -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:110 -#: templates/order/order-details.php:110 templates/order/order-details.php:125 -msgid "N/A" -msgstr "無法提供" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:111 -#, fuzzy -msgid "A valid free shipping coupon" -msgstr "開啓免費運送" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:112 -msgid "A minimum order amount (defined below)" -msgstr "" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:113 -#, fuzzy -msgid "A minimum order amount OR a coupon" -msgstr "最低訂單量" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:114 -#, fuzzy -msgid "A minimum order amount AND a coupon" -msgstr "最低訂單量" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:118 -msgid "Minimum Order Amount" -msgstr "最低訂單量" - -# @ woocommerce -#: classes/shipping/free-shipping/class-wc-shipping-free-shipping.php:124 -#, fuzzy -msgid "" -"Users will need to spend this amount to get free shipping (if enabled above)." -msgstr "使用者需要花費比這多才能使用免費運送. 留白以關閉選項." - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:28 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:31 -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:61 -msgid "International Delivery" -msgstr "國際運送" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:32 -msgid "International delivery based on flat rate shipping." -msgstr "基於平價運費的國際運送." - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:65 -msgid "Availability" -msgstr "可得度" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:70 -msgid "Selected countries" -msgstr "選取的國家" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:71 -msgid "Excluding selected countries" -msgstr "排除選取的國家" - -# @ woocommerce -#: classes/shipping/international-delivery/class-wc-shipping-international-delivery.php:75 -msgid "Countries" -msgstr "國家" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:25 -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:107 -msgid "Local Delivery" -msgstr "本地運送" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:98 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:78 -msgid "Enable" -msgstr "啓用" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:100 -msgid "Enable local delivery" -msgstr "啓用本地運送" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:111 -msgid "Fee Type" -msgstr "費用類別" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:113 -msgid "How to calculate delivery charges" -msgstr "如何計算運送費用" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 -msgid "Fixed amount" -msgstr "固定數量" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:117 -msgid "Percentage of cart total" -msgstr "購物車總數百分比" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:118 -msgid "Fixed amount per product" -msgstr "按照每個商品的固定價格" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:123 -msgid "Delivery Fee" -msgstr "運送費用" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:129 -msgid "" -"What fee do you want to charge for local delivery, disregarded if you choose " -"free. Leave blank to disable." -msgstr "你想收取的本地運送費用, 如果選擇免費則無視. 留白以關閉選項." - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:135 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:91 -msgid "Zip/Post Codes" -msgstr "郵政編碼" - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:137 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:93 -#, fuzzy -msgid "" -"What zip/post codes would you like to offer delivery to? Separate codes with " -"a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." -msgstr "您想送到那些郵政編碼? 用逗號 (,) 分離編碼." - -# @ woocommerce -#: classes/shipping/local-delivery/class-wc-shipping-local-delivery.php:172 -msgid "" -"Local delivery is a simple shipping method for delivering orders locally." -msgstr "本地運送是個簡易的運送方法用於遞送地方訂單." - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:25 -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:87 -msgid "Local Pickup" -msgstr "本地拾取" - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:80 -msgid "Enable local pickup" -msgstr "啓用本地拾取" - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:117 -#, fuzzy -msgid "Apply base tax rate" -msgstr "計稅前實施" - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:119 -msgid "" -"When this shipping method is chosen, apply the base tax rate rather than for " -"the customer's given address." -msgstr "" - -# @ woocommerce -#: classes/shipping/local-pickup/class-wc-shipping-local-pickup.php:134 -msgid "" -"Local pickup is a simple method which allows the customer to pick up their " -"order themselves." -msgstr "本地拾取是個簡易的方法可以讓顧客自己來拿取訂單." - -# @ woocommerce -#: classes/class-wc-coupon.php:497 -msgid "Please enter a coupon code." -msgstr "請輸入有效的優惠券代碼." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-cart.php:54 -#: woocommerce-functions.php:1637 -msgid "Please enter a valid postcode/ZIP." -msgstr "請輸入有效的郵政編碼" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-cart.php:65 -#: classes/shortcodes/class-wc-shortcode-cart.php:71 -msgid "Shipping costs updated." -msgstr "運費更新完成." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-checkout.php:64 -msgid "" -"The order totals have been updated. Please confirm your order by pressing " -"the Place Order button at the bottom of the page." -msgstr "訂單已經更新完成. 請按下頁面底部的 下定單 按鈕來確認訂單." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:80 -#: woocommerce-core-functions.php:2488 woocommerce-functions.php:1559 -msgid "Please enter your password." -msgstr "請輸入您的密碼" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:95 -#, fuzzy -msgid "Your password has been reset." -msgstr "您的設定已經儲存完成。" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:95 -msgid "Log in" -msgstr "" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:116 -#, fuzzy -msgid "Enter a username or e-mail address." -msgstr "請輸入您的電子郵件." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:123 -#, fuzzy -msgid "There is no user registered with that email address." -msgstr "已經有帳號註冊在該電子郵件地址之下。請登錄。" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:138 -#, fuzzy -msgid "Invalid username or e-mail." -msgstr "使用者名稱或密碼" - -# @ default -#: classes/shortcodes/class-wc-shortcode-lost-password.php:152 -msgid "Password reset is not allowed for this user" -msgstr "" - -# @ default -#: classes/shortcodes/class-wc-shortcode-lost-password.php:180 -#, fuzzy -msgid "Check your e-mail for the confirmation link." -msgstr "您可以在確認訂單的電子郵件裡找到訂單編號" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-lost-password.php:200 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:205 -#: classes/shortcodes/class-wc-shortcode-lost-password.php:212 -#, fuzzy -msgid "Invalid key" -msgstr "無效的訂單." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:53 -msgid "Please enter a valid order ID" -msgstr "請輸入正確的訂單編號" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:57 -msgid "Please enter a valid order email" -msgstr "請輸入有效的電子郵件" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-order-tracking.php:76 -msgid "Sorry, we could not find that order id in our database." -msgstr "很抱歉,我們無法找到該訂單資訊。" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:65 -#: classes/shortcodes/class-wc-shortcode-pay.php:118 -msgid "" -"Your order has already been paid for. Please contact us if you need " -"assistance." -msgstr "您的訂單已經付款完畢. 如需幫助請聯絡我們." - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:70 -#: classes/shortcodes/class-wc-shortcode-pay.php:125 -#: classes/shortcodes/class-wc-shortcode-view-order.php:49 -#: woocommerce-functions.php:880 woocommerce-functions.php:959 -msgid "Invalid order." -msgstr "無效的訂單." - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:188 -#: classes/shortcodes/class-wc-shortcode-pay.php:90 -#: templates/checkout/thankyou.php:40 -#: templates/emails/customer-completed-order.php:18 -#: templates/emails/customer-invoice.php:22 -#: templates/emails/customer-note.php:22 -#: templates/emails/customer-processing-order.php:18 -msgid "Order:" -msgstr "訂單:" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:94 -#: templates/checkout/thankyou.php:44 -msgid "Date:" -msgstr "日期:" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:239 -#: classes/shortcodes/class-wc-shortcode-pay.php:98 -#: templates/checkout/thankyou.php:48 -msgid "Total:" -msgstr "總計:" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-pay.php:103 -#: templates/checkout/thankyou.php:53 -msgid "Payment method:" -msgstr "付款方式:" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:49 -msgid "My Account →" -msgstr "帳號設定 →" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:56 -#, php-format -msgid "" -"Order %s made on %s" -msgstr "" -"訂單 %s" -"%s 提出" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:57 -#, php-format -msgid "Order status: %s" -msgstr "訂單狀態: %s" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:63 -#: templates/order/tracking.php:31 -msgid "Order Updates" -msgstr "訂單更新訊息" - -# @ woocommerce -#: classes/shortcodes/class-wc-shortcode-view-order.php:69 -msgid "l jS \\of F Y, h:ia" -msgstr "" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:31 -msgid "Display a list of your best selling products on your site." -msgstr "在網站上排列顯示暢銷商品." - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:33 -msgid "WooCommerce Best Sellers" -msgstr "WooCommerce 最暢銷商品" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:71 -msgid "Best Sellers" -msgstr "暢銷商品" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:192 -#: classes/widgets/class-wc-widget-cart.php:115 -#: classes/widgets/class-wc-widget-featured-products.php:172 -#: classes/widgets/class-wc-widget-layered-nav.php:349 -#: classes/widgets/class-wc-widget-onsale.php:177 -#: classes/widgets/class-wc-widget-price-filter.php:179 -#: classes/widgets/class-wc-widget-product-categories.php:185 -#: classes/widgets/class-wc-widget-product-search.php:91 -#: classes/widgets/class-wc-widget-product-tag-cloud.php:101 -#: classes/widgets/class-wc-widget-random-products.php:133 -#: classes/widgets/class-wc-widget-recent-products.php:169 -#: classes/widgets/class-wc-widget-recent-reviews.php:158 -#: classes/widgets/class-wc-widget-recently-viewed.php:166 -#: classes/widgets/class-wc-widget-top-rated-products.php:159 -msgid "Title:" -msgstr "標題:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:195 -#: classes/widgets/class-wc-widget-featured-products.php:175 -#: classes/widgets/class-wc-widget-onsale.php:180 -#: classes/widgets/class-wc-widget-random-products.php:138 -#: classes/widgets/class-wc-widget-recent-products.php:172 -#: classes/widgets/class-wc-widget-recent-reviews.php:161 -#: classes/widgets/class-wc-widget-recently-viewed.php:169 -#: classes/widgets/class-wc-widget-top-rated-products.php:162 -msgid "Number of products to show:" -msgstr "顯示商品數量:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-best-sellers.php:199 -msgid "Hide free products" -msgstr "隱藏免費商品" - -# @ woocommerce -#: classes/widgets/class-wc-widget-cart.php:33 -msgid "Display the user's Cart in the sidebar." -msgstr "在側邊欄顯示使用者的購物車." - -# @ woocommerce -#: classes/widgets/class-wc-widget-cart.php:35 -msgid "WooCommerce Cart" -msgstr "WooCommerce 購物車" - -# @ woocommerce -#: classes/widgets/class-wc-widget-cart.php:119 -msgid "Hide if cart is empty" -msgstr "隱藏空的購物車" - -# @ woocommerce -#: classes/widgets/class-wc-widget-featured-products.php:35 -msgid "Display a list of featured products on your site." -msgstr "在網站上排列顯示特色商品." - -# @ woocommerce -#: classes/widgets/class-wc-widget-featured-products.php:37 -msgid "WooCommerce Featured Products" -msgstr "WooCommerce 特色商品" - -# @ woocommerce -#: classes/widgets/class-wc-widget-featured-products.php:75 -msgid "Featured Products" -msgstr "特色商品" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:31 -msgid "Shows active layered nav filters so users can see and deactivate them." -msgstr "" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:33 -#, fuzzy -msgid "WooCommerce Layered Nav Filters" -msgstr "WooCommerce 分層導覽" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:62 -msgid "Active filters" -msgstr "" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:93 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -#, fuzzy -msgid "Remove filter" -msgstr "移除圖像" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:99 -#, fuzzy -msgid "Min" -msgstr "英寸" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav-filters.php:104 -#, fuzzy -msgid "Max" -msgstr "稅金" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:31 -msgid "" -"Shows a custom attribute in a widget which lets you narrow down the list of " -"products when viewing product categories." -msgstr "在小工具裡顯示定製屬性, 可使您在檢視商品類別時縮小檢視範圍." - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:33 -msgid "WooCommerce Layered Nav" -msgstr "WooCommerce 分層導覽" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:100 -#, php-format -msgid "Any %s" -msgstr "任何 %s" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:352 -msgid "Attribute:" -msgstr "屬性:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:363 -msgid "Display Type:" -msgstr "顯示類別:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:365 -msgid "List" -msgstr "排列" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:366 -msgid "Dropdown" -msgstr "下拉" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:369 -msgid "Query Type:" -msgstr "搜尋類型:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:371 -msgid "AND" -msgstr "以及" - -# @ woocommerce -#: classes/widgets/class-wc-widget-layered-nav.php:372 -msgid "OR" -msgstr "或者" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:31 -msgid "Display a login area and \"My Account\" links in the sidebar." -msgstr "在 sidebar 的 \"帳號設定\" 連接顯示登錄區域。" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:33 -msgid "WooCommerce Login" -msgstr "WooCommerce 登錄" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:59 -#: classes/widgets/class-wc-widget-login.php:223 -msgid "Customer Login" -msgstr "顧客登錄" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:60 -#: classes/widgets/class-wc-widget-login.php:226 -#, php-format -msgid "Welcome %s" -msgstr "%s 歡迎您" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:76 -msgid "My account" -msgstr "帳號設定" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:77 -msgid "Change my password" -msgstr "更變我的密碼" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:216 -#: classes/widgets/class-wc-widget-login.php:78 -msgid "Logout" -msgstr "登出" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:116 -#: templates/myaccount/form-login.php:29 -#: templates/myaccount/form-lost-password.php:24 -#: templates/shop/form-login.php:20 -msgid "Username or email" -msgstr "使用者名稱或密碼" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:118 -#: templates/myaccount/form-login.php:33 templates/myaccount/form-login.php:85 -#: templates/shop/form-login.php:24 -msgid "Password" -msgstr "密碼" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:120 woocommerce-functions.php:945 -msgid "Login →" -msgstr "登錄 →" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:120 -msgid "Lost password?" -msgstr "忘記密碼?" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:222 -msgid "Logged out title:" -msgstr "登出標題:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-login.php:225 -msgid "Logged in title:" -msgstr "登入標題:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-onsale.php:31 -msgid "Display a list of your on-sale products on your site." -msgstr "在網站上排列顯示折扣商品." - -# @ woocommerce -#: classes/widgets/class-wc-widget-onsale.php:33 -msgid "WooCommerce On-sale" -msgstr "WooCommerce 折扣中" - -# @ woocommerce -#: classes/widgets/class-wc-widget-onsale.php:70 -msgid "On Sale" -msgstr "折扣中" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:33 -msgid "" -"Shows a price filter slider in a widget which lets you narrow down the list " -"of shown products when viewing product categories." -msgstr "顯示一個價格篩選滑動杆, 可使您在檢視商品時縮小列表範圍." - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:35 -msgid "WooCommerce Price Filter" -msgstr "WooCommerce 價格篩選器" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:136 -msgid "Min price" -msgstr "最低價格" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:137 -msgid "Max price" -msgstr "最高價格" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:138 -msgid "Filter" -msgstr "篩選器" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:140 -msgid "Price:" -msgstr "價格:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-price-filter.php:162 -msgid "Filter by price" -msgstr "由價格篩選" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:33 -msgid "A list or dropdown of product categories." -msgstr "商品類別的排列/下拉式列表." - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:35 -msgid "WooCommerce Product Categories" -msgstr "WooCommerce 商品類別" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:57 -#: woocommerce.php:787 woocommerce.php:789 -msgid "Product Categories" -msgstr "商品分類" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:129 -msgid "No product categories exist." -msgstr "沒有商品分類" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:188 -msgid "Order by:" -msgstr "排序基準:" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:190 -msgid "Category Order" -msgstr "類別順序" - -# @ woocommerce -#: admin/post-types/product.php:88 -#: admin/post-types/writepanels/writepanel-product_data.php:372 -#: admin/post-types/writepanels/writepanel-product_data.php:451 -#: admin/woocommerce-admin-attributes.php:232 -#: admin/woocommerce-admin-attributes.php:268 -#: admin/woocommerce-admin-attributes.php:306 -#: admin/woocommerce-admin-attributes.php:329 -#: admin/woocommerce-admin-attributes.php:373 -#: admin/woocommerce-admin-attributes.php:398 -#: admin/woocommerce-admin-init.php:450 -#: classes/widgets/class-wc-widget-product-categories.php:191 -#: templates/single-product-reviews.php:99 woocommerce-ajax.php:1244 -msgid "Name" -msgstr "名字" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:195 -msgid "Show as dropdown" -msgstr "下拉式顯示" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:198 -msgid "Show post counts" -msgstr "顯示文章數量" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:201 -msgid "Show hierarchy" -msgstr "顯示階層" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-categories.php:204 -msgid "Only show children for the current category" -msgstr "只顯示目前類別的子類別" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-search.php:31 -msgid "A Search box for products only." -msgstr "只給商品的搜尋框." - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-search.php:33 -msgid "WooCommerce Product Search" -msgstr "WooCommerce 三品搜尋" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-tag-cloud.php:31 -msgid "Your most used product tags in cloud format." -msgstr "您最常用的雲模式商品標籤." - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-tag-cloud.php:33 -msgid "WooCommerce Product Tags" -msgstr "WooCommerce 商品標籤" - -# @ woocommerce -#: classes/widgets/class-wc-widget-product-tag-cloud.php:58 -#: woocommerce.php:823 woocommerce.php:825 -msgid "Product Tags" -msgstr "商品標籤" - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:24 -msgid "WooCommerce Random Products" -msgstr "WooCommerce 隨機商品" - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:27 -msgid "Display a list of random products on your site." -msgstr "在網站上排列顯示隨機的商品." - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:46 -msgid "Random Products" -msgstr "隨機商品" - -# @ woocommerce -#: classes/widgets/class-wc-widget-random-products.php:144 -#: classes/widgets/class-wc-widget-recent-products.php:176 -msgid "Show hidden product variations" -msgstr "顯示隱藏的商品變化類型" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-products.php:31 -msgid "Display a list of your most recent products on your site." -msgstr "在您的網站排列顯示最近的商品." - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-products.php:33 -msgid "WooCommerce Recent Products" -msgstr "WooCommerce 近期商品" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-products.php:70 -msgid "New Products" -msgstr "最新到貨" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:31 -msgid "Display a list of your most recent reviews on your site." -msgstr "在您的網站排列顯示最近的評論." - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:45 -#: classes/widgets/class-wc-widget-recent-reviews.php:33 -msgid "WooCommerce Recent Reviews" -msgstr "WooCommerce 近期評論" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:71 -msgid "Recent Reviews" -msgstr "近期評論" - -# @ woocommerce -#: templates/single-product/review.php:26 -#, fuzzy, php-format -msgid "Rated %d out of 5" -msgstr "評分 %s / 5" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recent-reviews.php:97 -#, php-format -msgctxt "by comment author" -msgid "by %1$s" -msgstr "由 %1$s" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recently-viewed.php:31 -msgid "Display a list of recently viewed products." -msgstr "排列顯示近期被檢視的商品." - -# @ woocommerce -#: classes/widgets/class-wc-widget-recently-viewed.php:33 -msgid "WooCommerce Recently Viewed Products" -msgstr "WooCommerce 近期被檢視的商品" - -# @ woocommerce -#: classes/widgets/class-wc-widget-recently-viewed.php:76 -msgid "Recently viewed" -msgstr "最近瀏覽商品" - -# @ woocommerce -#: classes/widgets/class-wc-widget-top-rated-products.php:33 -msgid "Display a list of top rated products on your site." -msgstr "在您的網站排列顯示得分最高的商品." - -# @ woocommerce -#: classes/widgets/class-wc-widget-top-rated-products.php:35 -msgid "WooCommerce Top Rated Products" -msgstr "WooCommerce 最受好評商品" - -# @ woocommerce -#: classes/widgets/class-wc-widget-top-rated-products.php:72 -msgid "Top Rated Products" -msgstr "最受好評商品" - -# @ woocommerce -#: i18n/states/AU.php:13 -msgid "Australian Capital Territory" -msgstr "澳大利亞首都直轄區" - -# @ woocommerce -#: i18n/states/AU.php:14 -msgid "New South Wales" -msgstr "新南威爾士州" - -# @ woocommerce -#: i18n/states/AU.php:15 -msgid "Northern Territory" -msgstr "北領地" - -# @ woocommerce -#: i18n/states/AU.php:16 -msgid "Queensland" -msgstr "昆士蘭" - -# @ woocommerce -#: i18n/states/AU.php:17 -msgid "South Australia" -msgstr "南澳大利亞" - -# @ woocommerce -#: i18n/states/AU.php:18 -msgid "Tasmania" -msgstr "塔斯馬尼亞" - -# @ woocommerce -#: i18n/states/AU.php:19 -msgid "Victoria" -msgstr "維多利亞" - -# @ woocommerce -#: i18n/states/AU.php:20 -msgid "Western Australia" -msgstr "西澳大利亞州" - -# @ woocommerce -#: i18n/states/BR.php:13 -msgid "Acre" -msgstr "阿卡" - -# @ woocommerce -#: i18n/states/BR.php:14 -msgid "Alagoas" -msgstr "阿拉戈斯" - -# @ woocommerce -#: i18n/states/BR.php:15 -msgid "Amapá" -msgstr "阿馬帕" - -# @ woocommerce -#: i18n/states/BR.php:16 -msgid "Amazonas" -msgstr "亞馬遜" - -# @ woocommerce -#: i18n/states/BR.php:17 -msgid "Bahia" -msgstr "巴伊亞" - -# @ woocommerce -#: i18n/states/BR.php:18 -msgid "Ceará" -msgstr "塞阿拉" - -# @ woocommerce -#: i18n/states/BR.php:19 -msgid "Distrito Federal" -msgstr "聯邦首都區" - -# @ woocommerce -#: i18n/states/BR.php:20 -msgid "Espírito Santo" -msgstr "聖埃斯皮裡圖" - -# @ woocommerce -#: i18n/states/BR.php:21 -msgid "Goiás" -msgstr "戈亞斯" - -# @ woocommerce -#: i18n/states/BR.php:22 -msgid "Maranhão" -msgstr "馬拉尼昂州" - -# @ woocommerce -#: i18n/states/BR.php:23 -msgid "Mato Grosso" -msgstr "馬托格羅索" - -# @ woocommerce -#: i18n/states/BR.php:24 -msgid "Mato Grosso do Sul" -msgstr "南馬托格羅索州" - -# @ woocommerce -#: i18n/states/BR.php:25 -msgid "Minas Gerais" -msgstr "米納斯吉拉斯州" - -# @ woocommerce -#: i18n/states/BR.php:26 -msgid "Pará" -msgstr "帕拉" - -# @ woocommerce -#: i18n/states/BR.php:27 -msgid "Paraíba" -msgstr "帕拉伊巴" - -# @ woocommerce -#: i18n/states/BR.php:28 -msgid "Paraná" -msgstr "巴拉那州" - -# @ woocommerce -#: i18n/states/BR.php:29 -msgid "Pernambuco" -msgstr "伯南布哥" - -# @ woocommerce -#: i18n/states/BR.php:30 -msgid "Piauí" -msgstr "皮奧伊" - -# @ woocommerce -#: i18n/states/BR.php:31 -msgid "Rio de Janeiro" -msgstr "里約熱內盧" - -# @ woocommerce -#: i18n/states/BR.php:32 -msgid "Rio Grande do Norte" -msgstr "北里奧格蘭德" - -# @ woocommerce -#: i18n/states/BR.php:33 -msgid "Rio Grande do Sul" -msgstr "南里奧格蘭德州" - -# @ woocommerce -#: i18n/states/BR.php:34 -msgid "Rondônia" -msgstr "朗多尼亞州" - -# @ woocommerce -#: i18n/states/BR.php:35 -msgid "Roraima" -msgstr "羅賴馬" - -# @ woocommerce -#: i18n/states/BR.php:36 -msgid "Santa Catarina" -msgstr "聖卡塔琳娜" - -# @ woocommerce -#: i18n/states/BR.php:37 -msgid "São Paulo" -msgstr "聖保羅" - -# @ woocommerce -#: i18n/states/BR.php:38 -msgid "Sergipe" -msgstr "塞爾希培" - -# @ woocommerce -#: i18n/states/BR.php:39 -msgid "Tocantins" -msgstr "托坎廷斯" - -# @ woocommerce -#: i18n/states/CA.php:13 -msgid "Alberta" -msgstr "阿爾伯塔" - -# @ woocommerce -#: i18n/states/CA.php:14 -msgid "British Columbia" -msgstr "不列顛哥倫比亞省" - -# @ woocommerce -#: i18n/states/CA.php:15 -msgid "Manitoba" -msgstr "馬尼托巴" - -# @ woocommerce -#: i18n/states/CA.php:16 -msgid "New Brunswick" -msgstr "新不倫瑞克省" - -# @ woocommerce -#: i18n/states/CA.php:17 -msgid "Newfoundland" -msgstr "紐芬蘭" - -# @ woocommerce -#: i18n/states/CA.php:18 -msgid "Northwest Territories" -msgstr "西北地區" - -# @ woocommerce -#: i18n/states/CA.php:19 -msgid "Nova Scotia" -msgstr "新斯科舍省" - -# @ woocommerce -#: i18n/states/CA.php:20 -msgid "Nunavut" -msgstr "努納武特地區" - -# @ woocommerce -#: i18n/states/CA.php:21 -msgid "Ontario" -msgstr "安大略省" - -# @ woocommerce -#: i18n/states/CA.php:22 -msgid "Prince Edward Island" -msgstr "愛德華王子島" - -# @ woocommerce -#: i18n/states/CA.php:23 -msgid "Quebec" -msgstr "魁北克" - -# @ woocommerce -#: i18n/states/CA.php:24 -msgid "Saskatchewan" -msgstr "薩斯喀徹溫省" - -# @ woocommerce -#: i18n/states/CA.php:25 -msgid "Yukon Territory" -msgstr "育空地區" - -# @ woocommerce -#: i18n/states/CN.php:13 -msgid "Yunnan / 云南" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:14 -msgid "Beijing / 北京" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:15 -msgid "Tianjin / 天津" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:16 -msgid "Hebei / 河北" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:17 -msgid "Shanxi / 山西" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:18 -msgid "Inner Mongolia / 內蒙古" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:19 -msgid "Liaoning / 辽宁" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:20 -msgid "Jilin / 吉林" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:21 -msgid "Heilongjiang / 黑龙江" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:22 -msgid "Shanghai / 上海" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:23 -msgid "Jiangsu / 江苏" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:24 -msgid "Zhejiang / 浙江" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:25 -msgid "Anhui / 安徽" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:26 -msgid "Fujian / 福建" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:27 -msgid "Jiangxi / 江西" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:28 -msgid "Shandong / 山东" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:29 -msgid "Henan / 河南" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:30 -msgid "Hubei / 湖北" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:31 -msgid "Hunan / 湖南" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:32 -msgid "Guangdong / 广东" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:33 -msgid "Guangxi Zhuang / 广西壮族" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:34 -msgid "Hainan / 海南" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:35 -msgid "Chongqing / 重庆" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:36 -msgid "Sichuan / 四川" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:37 -msgid "Guizhou / 贵州" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:38 -msgid "Shaanxi / 陕西" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:39 -msgid "Gansu / 甘肃" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:40 -msgid "Qinghai / 青海" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:41 -msgid "Ningxia Hui / 宁夏" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:42 -msgid "Macau / 澳门" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:43 -msgid "Tibet / 西藏" -msgstr "" - -# @ woocommerce -#: i18n/states/CN.php:44 -msgid "Xinjiang / 新疆" -msgstr "" - -# @ woocommerce -#: i18n/states/HK.php:13 -msgid "Hong Kong Island" -msgstr "香港島" - -# @ woocommerce -#: i18n/states/HK.php:14 -msgid "Kowloon" -msgstr "九龍" - -# @ woocommerce -#: i18n/states/HK.php:15 -msgid "New Territories" -msgstr "新界" - -# @ woocommerce -#: i18n/states/HZ.php:13 -msgid "Auckland" -msgstr "奧克蘭" - -# @ woocommerce -#: i18n/states/HZ.php:14 -msgid "Bay of Plenty" -msgstr "豐盛灣" - -# @ woocommerce -#: i18n/states/HZ.php:15 -msgid "Canterbury" -msgstr "坎特伯雷" - -# @ woocommerce -#: i18n/states/HZ.php:16 -msgid "Hawke’s Bay" -msgstr "霍克斯灣" - -# @ woocommerce -#: i18n/states/HZ.php:17 -msgid "Manawatu-Wanganui" -msgstr "馬納瓦圖 - 旺格努伊" - -# @ woocommerce -#: i18n/states/HZ.php:18 -msgid "Marlborough" -msgstr "馬爾堡" - -# @ woocommerce -#: i18n/states/HZ.php:19 -msgid "Nelson" -msgstr "尼爾森" - -# @ woocommerce -#: i18n/states/HZ.php:20 -msgid "Northland" -msgstr "北國" - -# @ woocommerce -#: i18n/states/HZ.php:21 -msgid "Otago" -msgstr "奧塔哥" - -# @ woocommerce -#: i18n/states/HZ.php:22 -msgid "Southland" -msgstr "南國" - -# @ woocommerce -#: i18n/states/HZ.php:23 -msgid "Taranaki" -msgstr "塔拉納基" - -# @ woocommerce -#: i18n/states/HZ.php:24 -msgid "Tasman" -msgstr "塔斯曼" - -# @ woocommerce -#: i18n/states/HZ.php:25 -msgid "Waikato" -msgstr "懷卡托" - -# @ woocommerce -#: i18n/states/HZ.php:26 -msgid "Wellington" -msgstr "惠靈頓" - -# @ woocommerce -#: i18n/states/HZ.php:27 -msgid "West Coast" -msgstr "西海岸" - -# @ woocommerce -#: i18n/states/IN.php:13 -msgid "Andra Pradesh" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:14 -msgid "Arunachal Pradesh" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:15 -msgid "Assam" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:16 -msgid "Bihar" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:17 -msgid "Chhattisgarh" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:18 -#, fuzzy -msgid "Goa" -msgstr "格魯吉亞" - -# @ woocommerce -#: i18n/states/IN.php:19 -msgid "Gujarat" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:20 -#, fuzzy -msgid "Haryana" -msgstr "圭亞那" - -# @ woocommerce -#: i18n/states/IN.php:21 -msgid "Himachal Pradesh" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:22 -msgid "Jammu and Kashmir" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:23 -msgid "Jharkhand" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:24 -msgid "Karnataka" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:25 -#, fuzzy -msgid "Kerala" -msgstr "通用" - -# @ woocommerce -#: i18n/states/IN.php:26 -msgid "Madhya Pradesh" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:27 -msgid "Maharashtra" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:28 -msgid "Manipur" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:29 -#, fuzzy -msgid "Meghalaya" -msgstr "馬來西亞" - -# @ woocommerce -#: i18n/states/IN.php:30 -msgid "Mizoram" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:31 -#, fuzzy -msgid "Nagaland" -msgstr "新西蘭" - -# @ woocommerce -#: i18n/states/IN.php:32 -msgid "Orissa" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:33 -msgid "Punjab" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:34 -msgid "Rajasthan" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:35 -msgid "Sikkim" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:36 -msgid "Tamil Nadu" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:37 -msgid "Tripura" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:38 -msgid "Uttaranchal" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:39 -msgid "Uttar Pradesh" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:40 -msgid "West Bengal" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:41 -#, fuzzy -msgid "Andaman and Nicobar Islands" -msgstr "特克斯和凱科斯群島" - -# @ woocommerce -#: i18n/states/IN.php:42 -#, fuzzy -msgid "Chandigarh" -msgstr "變化" - -# @ woocommerce -#: i18n/states/IN.php:43 -msgid "Dadar and Nagar Haveli" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:44 -msgid "Daman and Diu" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:45 -msgid "Delhi" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:46 -msgid "Lakshadeep" -msgstr "" - -# @ woocommerce -#: i18n/states/IN.php:47 -msgid "Pondicherry (Puducherry)" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:13 -msgid "Johor" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:14 -msgid "Kedah" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:15 -msgid "Kelantan" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:16 -msgid "Melaka" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:17 -msgid "Negeri Sembilan" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:18 -#, fuzzy -msgid "Pahang" -msgstr "變化" - -# @ woocommerce -#: i18n/states/MY.php:19 -msgid "Perak" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:20 -msgid "Perlis" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:21 -msgid "Pulau Pinang" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:22 -msgid "Sabah" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:23 -msgid "Sarawak" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:24 -msgid "Selangor" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:25 -msgid "Terengganu" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:26 -msgid "W.P. Kuala Lumpur" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:27 -msgid "W.P. Labuan" -msgstr "" - -# @ woocommerce -#: i18n/states/MY.php:28 -msgid "W.P. Putrajaya" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:13 -msgid "" -"Amnat Charoen (อำนาจเจร" -"ิญ)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:14 -msgid "Ang Thong (อ่างทอง)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:15 -msgid "" -"Ayutthaya (พระนครศรี" -"อยุธยา)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:16 -msgid "" -"Bangkok (กรุงเทพมห" -"านคร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:17 -msgid "Bueng Kan (บึงกาฬ)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:18 -msgid "" -"Buri Ram (บุรีรัมย์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:19 -msgid "" -"Chachoengsao (ฉะเชิงเทร" -"า)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:20 -msgid "Chai Nat (ชัยนาท)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:21 -msgid "Chaiyaphum (ชัยภูมิ)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:22 -msgid "Chanthaburi (จันทบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:23 -msgid "" -"Chiang Mai (เชียงใหม่)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:24 -msgid "Chiang Rai (เชียงราย)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:25 -msgid "Chonburi (ชลบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:26 -msgid "Chumphon (ชุมพร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:27 -msgid "" -"Kalasin (กาฬสินธุ์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:28 -msgid "" -"Kamphaeng Phet (กำแพงเพช" -"ร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:29 -msgid "" -"Kanchanaburi (กาญจนบุร" -"ี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:30 -msgid "Khon Kaen (ขอนแก่น)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:31 -msgid "Krabi (กระบี่)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:32 -msgid "Lampang (ลำปาง)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:33 -msgid "Lamphun (ลำพูน)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:34 -msgid "Loei (เลย)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:35 -msgid "Lopburi (ลพบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:36 -msgid "" -"Mae Hong Son (แม่ฮ่องสอ" -"น)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:37 -msgid "" -"Maha Sarakham (มหาสารคา" -"ม)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:38 -msgid "Mukdahan (มุกดาหาร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:39 -msgid "Nakhon Nayok (นครนายก)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:40 -msgid "Nakhon Pathom (นครปฐม)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:41 -msgid "Nakhon Phanom (นครพนม)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:42 -msgid "" -"Nakhon Ratchasima (นครราชสี" -"มา)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:43 -msgid "" -"Nakhon Sawan (นครสวรรค" -"์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:44 -msgid "" -"Nakhon Si Thammarat (นครศรีธร" -"รมราช)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:45 -msgid "Nan (น่าน)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:46 -msgid "Narathiwat (นราธิวาส)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:47 -msgid "" -"Nong Bua Lam Phu (หนองบัวล" -"ำภู)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:48 -msgid "Nong Khai (หนองคาย)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:49 -msgid "Nonthaburi (นนทบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:50 -msgid "Pathum Thani (ปทุมธานี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:51 -msgid "Pattani (ปัตตานี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:52 -msgid "Phang Nga (พังงา)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:53 -msgid "Phatthalung (พัทลุง)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:54 -msgid "Phayao (พะเยา)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:55 -msgid "" -"Phetchabun (เพชรบูรณ์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:56 -msgid "Phetchaburi (เพชรบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:57 -msgid "Phichit (พิจิตร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:58 -msgid "Phitsanulok (พิษณุโลก)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:59 -msgid "Phrae (แพร่)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:60 -msgid "Phuket (ภูเก็ต)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:61 -msgid "" -"Prachin Buri (ปราจีนบุร" -"ี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:62 -msgid "" -"Prachuap Khiri Khan (ประจวบคี" -"รีขันธ์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:63 -msgid "Ranong (ระนอง)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:64 -msgid "Ratchaburi (ราชบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:65 -msgid "Rayong (ระยอง)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:66 -msgid "Roi Et (ร้อยเอ็ด)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:67 -msgid "Sa Kaeo (สระแก้ว)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:68 -msgid "Sakon Nakhon (สกลนคร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:69 -msgid "" -"Samut Prakan (สมุทรปราก" -"าร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:70 -msgid "" -"Samut Sakhon (สมุทรสาค" -"ร)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:71 -msgid "" -"Samut Songkhram (สมุทรสงค" -"ราม)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:72 -msgid "Saraburi (สระบุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:73 -msgid "Satun (สตูล)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:74 -msgid "" -"Sing Buri (สิงห์บุรี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:75 -msgid "Sisaket (ศรีสะเกษ)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:76 -msgid "Songkhla (สงขลา)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:77 -msgid "Sukhothai (สุโขทัย)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:78 -msgid "" -"Suphan Buri (สุพรรณบุร" -"ี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:79 -msgid "" -"Surat Thani (สุราษฎร์ธ" -"านี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:80 -msgid "Surin (สุรินทร์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:81 -msgid "Tak (ตาก)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:82 -msgid "Trang (ตรัง)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:83 -msgid "Trat (ตราด)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:84 -msgid "" -"Ubon Ratchathani (อุบลราชธ" -"านี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:85 -msgid "Udon Thani (อุดรธานี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:86 -msgid "" -"Uthai Thani (อุทัยธานี)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:87 -msgid "" -"Uttaradit (อุตรดิตถ์)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:88 -msgid "Yala (ยะลา)" -msgstr "" - -# @ woocommerce -#: i18n/states/TH.php:89 -msgid "Yasothon (ยโสธร)" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:13 -msgid "Alabama" -msgstr "阿拉巴馬州" - -# @ woocommerce -#: i18n/states/US.php:14 -msgid "Alaska" -msgstr "阿拉斯加州" - -# @ woocommerce -#: i18n/states/US.php:15 -msgid "Arizona" -msgstr "亞利桑那" - -# @ woocommerce -#: i18n/states/US.php:16 -msgid "Arkansas" -msgstr "阿肯色" - -# @ woocommerce -#: i18n/states/US.php:17 -msgid "California" -msgstr "加州" - -# @ woocommerce -#: i18n/states/US.php:18 -msgid "Colorado" -msgstr "科羅拉多州" - -# @ woocommerce -#: i18n/states/US.php:19 -msgid "Connecticut" -msgstr "康涅狄格" - -# @ woocommerce -#: i18n/states/US.php:20 -msgid "Delaware" -msgstr "特拉華州" - -# @ woocommerce -#: i18n/states/US.php:21 -msgid "District Of Columbia" -msgstr "哥倫比亞特區" - -# @ woocommerce -#: i18n/states/US.php:22 -msgid "Florida" -msgstr "佛羅里達" - -# @ woocommerce -#: i18n/states/US.php:24 -msgid "Hawaii" -msgstr "夏威夷" - -# @ woocommerce -#: i18n/states/US.php:25 -msgid "Idaho" -msgstr "美國愛達荷州" - -# @ woocommerce -#: i18n/states/US.php:26 -msgid "Illinois" -msgstr "伊利諾伊州" - -# @ woocommerce -#: i18n/states/US.php:27 -msgid "Indiana" -msgstr "印地安那" - -# @ woocommerce -#: i18n/states/US.php:28 -msgid "Iowa" -msgstr "愛荷華州" - -# @ woocommerce -#: i18n/states/US.php:29 -msgid "Kansas" -msgstr "堪薩斯州" - -# @ woocommerce -#: i18n/states/US.php:30 -msgid "Kentucky" -msgstr "肯塔基州" - -# @ woocommerce -#: i18n/states/US.php:31 -msgid "Louisiana" -msgstr "路易斯安那州" - -# @ woocommerce -#: i18n/states/US.php:32 -msgid "Maine" -msgstr "緬因州" - -# @ woocommerce -#: i18n/states/US.php:33 -msgid "Maryland" -msgstr "馬里蘭州" - -# @ woocommerce -#: i18n/states/US.php:34 -msgid "Massachusetts" -msgstr "馬薩諸塞州" - -# @ woocommerce -#: i18n/states/US.php:35 -msgid "Michigan" -msgstr "密歇根州" - -# @ woocommerce -#: i18n/states/US.php:36 -msgid "Minnesota" -msgstr "明尼蘇達州" - -# @ woocommerce -#: i18n/states/US.php:37 -msgid "Mississippi" -msgstr "密西西比" - -# @ woocommerce -#: i18n/states/US.php:38 -msgid "Missouri" -msgstr "密蘇里州" - -# @ woocommerce -#: i18n/states/US.php:39 -msgid "Montana" -msgstr "蒙大拿" - -# @ woocommerce -#: i18n/states/US.php:40 -msgid "Nebraska" -msgstr "內布拉斯加州" - -# @ woocommerce -#: i18n/states/US.php:41 -msgid "Nevada" -msgstr "內華達州" - -# @ woocommerce -#: i18n/states/US.php:42 -msgid "New Hampshire" -msgstr "新罕布什爾州" - -# @ woocommerce -#: i18n/states/US.php:43 -msgid "New Jersey" -msgstr "新澤西州" - -# @ woocommerce -#: i18n/states/US.php:44 -msgid "New Mexico" -msgstr "新墨西哥" - -# @ woocommerce -#: i18n/states/US.php:45 -msgid "New York" -msgstr "紐約" - -# @ woocommerce -#: i18n/states/US.php:46 -msgid "North Carolina" -msgstr "北卡羅萊納州" - -# @ woocommerce -#: i18n/states/US.php:47 -msgid "North Dakota" -msgstr "北達科他州" - -# @ woocommerce -#: i18n/states/US.php:48 -msgid "Ohio" -msgstr "美國俄亥俄州" - -# @ woocommerce -#: i18n/states/US.php:49 -msgid "Oklahoma" -msgstr "俄克拉何馬州" - -# @ woocommerce -#: i18n/states/US.php:50 -msgid "Oregon" -msgstr "俄勒岡州" - -# @ woocommerce -#: i18n/states/US.php:51 -msgid "Pennsylvania" -msgstr "賓夕法尼亞州" - -# @ woocommerce -#: i18n/states/US.php:52 -msgid "Rhode Island" -msgstr "羅得島" - -# @ woocommerce -#: i18n/states/US.php:53 -msgid "South Carolina" -msgstr "南卡羅來納州" - -# @ woocommerce -#: i18n/states/US.php:54 -msgid "South Dakota" -msgstr "南達科他州" - -# @ woocommerce -#: i18n/states/US.php:55 -msgid "Tennessee" -msgstr "美國田納西州" - -# @ woocommerce -#: i18n/states/US.php:56 -msgid "Texas" -msgstr "得克薩斯州" - -# @ woocommerce -#: i18n/states/US.php:57 -msgid "Utah" -msgstr "猶他州" - -# @ woocommerce -#: i18n/states/US.php:58 -msgid "Vermont" -msgstr "佛蒙特" - -# @ woocommerce -#: i18n/states/US.php:59 -msgid "Virginia" -msgstr "弗吉尼亞州" - -# @ woocommerce -#: i18n/states/US.php:60 -msgid "Washington" -msgstr "華盛頓" - -# @ woocommerce -#: i18n/states/US.php:61 -msgid "West Virginia" -msgstr "西弗吉尼亞州" - -# @ woocommerce -#: i18n/states/US.php:62 -msgid "Wisconsin" -msgstr "威斯康星州" - -# @ woocommerce -#: i18n/states/US.php:63 -msgid "Wyoming" -msgstr "懷俄明州" - -# @ woocommerce -#: i18n/states/US.php:64 -#, fuzzy -msgid "Armed Forces (AA)" -msgstr "美國武裝部隊" - -# @ woocommerce -#: i18n/states/US.php:65 -#, fuzzy -msgid "Armed Forces (AE)" -msgstr "美國武裝部隊" - -# @ woocommerce -#: i18n/states/US.php:66 -#, fuzzy -msgid "Armed Forces (AP)" -msgstr "美國武裝部隊" - -# @ woocommerce -#: i18n/states/ZA.php:13 -msgid "Eastern Cape" -msgstr "" - -# @ woocommerce -#: i18n/states/ZA.php:14 -#, fuzzy -msgid "Free State" -msgstr "訂單狀態" - -# @ woocommerce -#: i18n/states/ZA.php:15 -msgid "Gauteng" -msgstr "" - -# @ woocommerce -#: i18n/states/ZA.php:16 -msgid "KwaZulu-Natal" -msgstr "" - -# @ woocommerce -#: i18n/states/ZA.php:17 -msgid "Limpopo" -msgstr "" - -# @ woocommerce -#: i18n/states/ZA.php:18 -msgid "Mpumalanga" -msgstr "" - -# @ woocommerce -#: i18n/states/ZA.php:19 -#, fuzzy -msgid "Northern Cape" -msgstr "北領地" - -# @ woocommerce -#: i18n/states/ZA.php:20 -#, fuzzy -msgid "North West" -msgstr "北朝鮮" - -# @ woocommerce -#: i18n/states/ZA.php:21 -#, fuzzy -msgid "Western Cape" -msgstr "西撒哈拉" - -# @ woocommerce -#: i18n/strings.php:16 -msgid "pending" -msgstr "待處理中" - -# @ woocommerce -#: i18n/strings.php:17 -msgid "failed" -msgstr "失敗" - -# @ woocommerce -#: i18n/strings.php:18 -msgid "on-hold" -msgstr "凍結中" - -# @ woocommerce -#: i18n/strings.php:19 -msgid "processing" -msgstr "處理中" - -# @ woocommerce -#: i18n/strings.php:20 -msgid "completed" -msgstr "已完成" - -# @ woocommerce -#: i18n/strings.php:21 -msgid "refunded" -msgstr "已退費" - -# @ woocommerce -#: i18n/strings.php:22 -msgid "cancelled" -msgstr "已取消" - -# @ woocommerce -#: templates/loop/no-products-found.php:14 templates/loop-shop.php:40 -msgid "No products found which match your selection." -msgstr "搜尋不到符合您條件的商品." - -# @ woocommerce -#: admin/post-types/product.php:96 admin/post-types/product.php:568 -#: admin/post-types/product.php:787 admin/woocommerce-admin-functions.php:196 -#: templates/cart/cart.php:29 templates/emails/admin-new-order.php:24 -#: templates/emails/customer-completed-order.php:25 -#: templates/emails/customer-invoice.php:29 -#: templates/emails/customer-note.php:29 -#: templates/emails/customer-processing-order.php:25 -msgid "Price" -msgstr "價格" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:195 templates/cart/cart.php:30 -#: templates/emails/admin-new-order.php:23 -#: templates/emails/customer-completed-order.php:24 -#: templates/emails/customer-invoice.php:28 -#: templates/emails/customer-note.php:28 -#: templates/emails/customer-processing-order.php:24 -msgid "Quantity" -msgstr "數量" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:43 -#: admin/post-types/writepanels/order-item-html.php:110 -#: admin/woocommerce-admin-reports.php:1546 -#: admin/woocommerce-admin-reports.php:1599 -#: admin/woocommerce-admin-reports.php:2370 -#: admin/woocommerce-admin-reports.php:2539 -#: admin/woocommerce-admin-reports.php:2617 templates/cart/cart.php:31 -#: templates/checkout/review-order.php:22 templates/myaccount/my-orders.php:35 -#: templates/order/order-details.php:21 -msgid "Total" -msgstr "總計" - -# @ woocommerce -#: templates/cart/cart.php:47 -msgid "Remove this item" -msgstr "移除這個商品" - -# @ woocommerce -#: templates/cart/cart.php:100 -#: templates/single-product/add-to-cart/quantity.php:13 -#, fuzzy -msgctxt "Product quantity input tooltip" -msgid "Qty" -msgstr "數量" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1531 templates/cart/cart.php:127 -#: woocommerce.php:1062 -msgid "Coupon" -msgstr "優惠券" - -# @ woocommerce -#: templates/cart/cart.php:127 templates/checkout/form-coupon.php:29 -msgid "Apply Coupon" -msgstr "使用折價券" - -# @ woocommerce -#: templates/cart/cart.php:134 -msgid "Update Cart" -msgstr "更新購物車" - -# @ woocommerce -#: templates/cart/cart.php:134 -msgid "Proceed to Checkout →" -msgstr "繼續結帳 →" - -# @ woocommerce -#: templates/cart/cross-sells.php:40 -msgid "You may be interested in…" -msgstr "您可能對此有興趣…" - -# @ woocommerce -#: templates/cart/cart-empty.php:14 -msgid "Your cart is currently empty." -msgstr "您的購物車裡還沒有任何商品。" - -# @ woocommerce -#: templates/cart/cart-empty.php:18 -msgid "← Return To Shop" -msgstr "← 繼續購物" - -# @ woocommerce -#: templates/cart/mini-cart.php:55 -msgid "No products in the cart." -msgstr "購物車內無任何商品" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:112 -#: templates/cart/mini-cart.php:63 templates/cart/totals.php:92 -#: templates/checkout/review-order.php:93 -msgid "Subtotal" -msgstr "小計" - -# @ woocommerce -#: templates/cart/mini-cart.php:69 -msgid "Checkout →" -msgstr "前往結帳 →" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:20 -msgid "Calculate Shipping" -msgstr "計算運費" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:175 -#: admin/post-types/writepanels/writepanel-order_data.php:265 -#: templates/cart/shipping-calculator.php:24 woocommerce-template.php:1327 -msgid "Select a country…" -msgstr "選擇國家…" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:50 woocommerce-template.php:1377 -msgid "Select a state…" -msgstr "選擇一個狀態…" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:42 -#: templates/cart/shipping-calculator.php:50 -#: templates/cart/shipping-calculator.php:61 -#, fuzzy -msgid "State / county" -msgstr "鄉/鎮/區" - -# @ woocommerce -#: templates/cart/shipping-calculator.php:71 -msgid "Update Totals" -msgstr "更新總計" - -# @ woocommerce -#: templates/cart/shipping-methods.php:32 -#, fuzzy -msgid "Free" -msgstr "免費!" - -# @ woocommerce -#: templates/cart/shipping-methods.php:67 -msgid "Please fill in your details to see available shipping methods." -msgstr "請先填完資料後在此選擇商品運送方式。" - -# @ woocommerce -#: templates/cart/shipping-methods.php:69 -msgid "" -"Sorry, it seems that there are no available shipping methods for your state. " -"Please contact us if you require assistance or wish to make alternate " -"arrangements." -msgstr "" -"很抱歉, 對於您的所在國家無法提供任何運送方式. 如果有需要請聯絡我們以爲您做特" -"別的安排." - -# @ woocommerce -#: templates/cart/totals.php:22 -msgid "Cart Totals" -msgstr "購物車總覽" - -# @ woocommerce -#: templates/cart/totals.php:28 templates/checkout/review-order.php:27 -msgid "Cart Subtotal" -msgstr "購物車小計" - -# @ woocommerce -#: templates/cart/totals.php:35 templates/checkout/review-order.php:34 -#: woocommerce.php:1655 -msgid "Cart Discount" -msgstr "購物車折扣" - -# @ woocommerce -#: templates/cart/totals.php:35 templates/cart/totals.php:120 -msgid "[Remove]" -msgstr "[移除]" - -# @ woocommerce -#: admin/post-types/shop_order.php:46 -#: admin/post-types/writepanels/writepanel-order_data.php:536 -#: admin/post-types/writepanels/writepanel-product_data.php:81 -#: admin/settings/settings-tax-rates.php:52 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-content.php:49 -#: admin/woocommerce-admin-settings.php:185 templates/cart/totals.php:46 -#: templates/checkout/review-order.php:45 -msgid "Shipping" -msgstr "運送方式" - -# @ woocommerce -#: templates/cart/totals.php:120 templates/checkout/review-order.php:124 -msgid "Order Discount" -msgstr "訂單折扣" - -# @ woocommerce -#: admin/post-types/shop_order.php:47 templates/cart/totals.php:129 -#: templates/checkout/review-order.php:133 -msgid "Order Total" -msgstr "訂單總計" - -# @ woocommerce -#: templates/cart/totals.php:161 -#, fuzzy, php-format -msgid " (taxes estimated for %s)" -msgstr "(爲 %s 估算的稅金)" - -# @ woocommerce -#: templates/cart/totals.php:163 -#, php-format -msgid "" -"Note: Shipping and taxes are estimated%s and will be updated during checkout " -"based on your billing and shipping information." -msgstr "注意: 運費與稅金皆爲估計%s 並且會在結帳時根據賬單以及運送資訊而更新." - -# @ woocommerce -#: templates/cart/totals.php:175 -#, fuzzy -msgid "" -"No shipping methods were found; please recalculate your shipping and enter " -"your state/county and zip/postcode to ensure there are no other available " -"methods for your location." -msgstr "" -"找不到任何運送方式; 請再次計算您的運費並且輸入您的國家以及郵政編碼以確定您的" -"所在地區沒後任何其他的運送方式." - -# @ woocommerce -#: templates/cart/totals.php:183 -#, php-format -msgid "" -"Sorry, it seems that there are no available shipping methods for your " -"location (%s)." -msgstr "很抱歉, 你的所在地 (%s) 無法適用任何一種運送方式." - -# @ woocommerce -#: templates/cart/totals.php:185 -msgid "" -"If you require assistance or wish to make alternate arrangements please " -"contact us." -msgstr "如需幫助或者需要另做安排請聯絡我們." - -# @ woocommerce -#: templates/checkout/cart-errors.php:16 -msgid "" -"There are some issues with the items in your cart (shown above). Please go " -"back to the cart page and resolve these issues before checking out." -msgstr "" -"您的購物車商品包含某些問題 (如上面顯示). 請在結帳前回到購物車頁面並且解決這些" -"問題." - -# @ woocommerce -#: templates/checkout/cart-errors.php:20 -msgid "← Return To Cart" -msgstr "← 返回購物車" - -# @ woocommerce -#: templates/checkout/form-billing.php:17 -msgid "Billing & Shipping" -msgstr "帳單和運送" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:26 templates/checkout/form-billing.php:21 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:19 templates/myaccount/my-address.php:25 -#: templates/order/order-details.php:106 -msgid "Billing Address" -msgstr "帳單地址" - -# @ woocommerce -#: templates/checkout/form-billing.php:42 -msgid "Create an account?" -msgstr "建立帳號?" - -# @ woocommerce -#: templates/checkout/form-billing.php:51 -msgid "" -"Create an account by entering the information below. If you are a returning " -"customer please login at the top of the page." -msgstr "請在下方輸入資料來建立帳號。如果是第二次消費的客人,請在網頁上方登錄。" - -# @ woocommerce -#: templates/checkout/form-checkout.php:20 -msgid "You must be logged in to checkout." -msgstr "您必須登錄才可結帳。" - -# @ woocommerce -#: templates/checkout/form-checkout.php:51 -msgid "Your order" -msgstr "您的訂單" - -# @ woocommerce -#: templates/checkout/form-coupon.php:17 -msgid "Have a coupon?" -msgstr "有優惠券嗎?" - -# @ woocommerce -#: templates/checkout/form-coupon.php:20 -msgid "Click here to enter your code" -msgstr "按此輸入您的代碼" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:100 -#: templates/checkout/form-coupon.php:25 -msgid "Coupon code" -msgstr "優惠券代碼" - -# @ woocommerce -#: templates/checkout/form-login.php:17 -msgid "Click here to login" -msgstr "按這裏登錄" - -# @ woocommerce -#: templates/checkout/form-login.php:22 -msgid "" -"If you have shopped with us before, please enter your details in the boxes " -"below. If you are a new customer please proceed to the Billing & " -"Shipping section." -msgstr "" -"如果您曾經在我們這購物過, 請在以下框格輸入您的資料. 如果您是新的顧客請繼續到" -"賬單 & 運送區段." - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:347 -#: templates/checkout/form-pay.php:20 -msgid "Qty" -msgstr "數量" - -# @ woocommerce -#: templates/checkout/form-pay.php:21 -msgid "Totals" -msgstr "總計" - -# @ woocommerce -#: templates/checkout/form-pay.php:78 -msgid "" -"Sorry, it seems that there are no available payment methods for your " -"location. Please contact us if you require assistance or wish to make " -"alternate arrangements." -msgstr "" -"很抱歉, 貌似無法辦法提供您的所在位置任何的付款方式. 如果需要協助或者額外安排" -"請聯絡我們." - -# @ woocommerce -#: templates/checkout/form-pay.php:87 -msgid "Pay for order" -msgstr "前往付款" - -# @ woocommerce -#: templates/checkout/form-shipping.php:32 -msgid "Ship to billing address?" -msgstr "同帳單地址" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:27 -#: templates/checkout/form-shipping.php:35 -#: templates/myaccount/form-edit-address.php:27 -#: templates/myaccount/my-address.php:20 templates/order/order-details.php:121 -msgid "Shipping Address" -msgstr "運送地址" - -# @ woocommerce -#: templates/checkout/form-shipping.php:59 -#: templates/single-product/tabs/additional-information.php:14 -#: woocommerce-template.php:756 -msgid "Additional Information" -msgstr "其它資訊" - -# @ woocommerce -#: templates/checkout/review-order.php:217 -msgid "Please fill in your details above to see available payment methods." -msgstr "請先填完上列表格後在此選擇商品付款方式。" - -# @ woocommerce -#: templates/checkout/review-order.php:219 -msgid "" -"Sorry, it seems that there are no available payment methods for your state. " -"Please contact us if you require assistance or wish to make alternate " -"arrangements." -msgstr "" -"很抱歉, 貌似無法辦法提供您的所在區域任何的付款方式. 如果需要協助或者額外安排" -"請聯絡我們." - -# @ woocommerce -#: templates/checkout/review-order.php:228 -msgid "" -"Since your browser does not support JavaScript, or it is disabled, please " -"ensure you click the Update Totals button before placing your " -"order. You may be charged more than the amount stated above if you fail to " -"do so." -msgstr "" -"因爲您的瀏覽器不支援 JavaScript, 或者被關閉, 請確保您下定單前按下 更新總" -"計 按鍵. 如果漏掉此步驟, 您可能會被收取比上面顯示還要多的金額." - -# @ woocommerce -#: templates/checkout/review-order.php:228 -msgid "Update totals" -msgstr "更新總計" - -# @ woocommerce -#: templates/checkout/review-order.php:234 -msgid "Place order" -msgstr "下單" - -# @ woocommerce -#: templates/checkout/review-order.php:238 -#, fuzzy -msgid "I have read and accept the" -msgstr "我接受" - -# @ woocommerce -#: templates/checkout/review-order.php:238 -msgid "terms & conditions" -msgstr "條款 & 條件" - -# @ woocommerce -#: templates/checkout/thankyou.php:18 -msgid "" -"Unfortunately your order cannot be processed as the originating bank/" -"merchant has declined your transaction." -msgstr "很不幸的您的賬單因爲發起銀行/商人拒絕了您的交易而無法被處理." - -# @ woocommerce -#: templates/checkout/thankyou.php:22 -msgid "Please attempt your purchase again or go to your account page." -msgstr "請在一次嘗試付款或者去您的帳號頁面。" - -# @ woocommerce -#: templates/checkout/thankyou.php:24 -msgid "Please attempt your purchase again." -msgstr "請再次嘗試購買." - -# @ woocommerce -#: templates/checkout/thankyou.php:36 templates/checkout/thankyou.php:67 -msgid "Thank you. Your order has been received." -msgstr "謝謝,我們已經收到您的訂單。" - -# @ woocommerce -#: templates/emails/admin-new-order.php:13 -#: templates/emails/plain/admin-new-order.php:13 -#, fuzzy, php-format -msgid "You have received an order from %s. Their order is as follows:" -msgstr "您收到了一封訂單來自" - -# @ woocommerce -#: templates/emails/admin-new-order.php:17 -#, fuzzy, php-format -msgid "Order: %s" -msgstr "訂單 %s" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:214 -#: templates/emails/admin-new-order.php:50 -#: templates/emails/customer-completed-order.php:51 -#: templates/emails/customer-note.php:55 -#: templates/emails/customer-processing-order.php:51 -#: templates/emails/plain/admin-new-order.php:38 -#: templates/order/order-details.php:88 -msgid "Customer details" -msgstr "顧客資訊" - -# @ woocommerce -#: admin/post-types/shop_order.php:101 templates/emails/admin-new-order.php:53 -#: templates/emails/customer-completed-order.php:54 -#: templates/emails/customer-note.php:58 -#: templates/emails/customer-processing-order.php:54 -#: templates/emails/plain/admin-new-order.php:41 -#: templates/emails/plain/customer-completed-order.php:41 -#: templates/emails/plain/customer-note.php:49 -#: templates/emails/plain/customer-processing-order.php:41 -#: templates/order/order-details.php:92 -msgid "Email:" -msgstr "電子郵件信箱:" - -# @ woocommerce -#: admin/post-types/shop_order.php:104 templates/emails/admin-new-order.php:56 -#: templates/emails/customer-completed-order.php:57 -#: templates/emails/customer-note.php:61 -#: templates/emails/customer-processing-order.php:57 -#: templates/emails/plain/admin-new-order.php:44 -#: templates/emails/plain/customer-completed-order.php:44 -#: templates/emails/plain/customer-note.php:52 -#: templates/emails/plain/customer-processing-order.php:44 -msgid "Tel:" -msgstr "電話:" - -# @ woocommerce -#: templates/emails/customer-completed-order.php:14 -#: templates/emails/plain/customer-completed-order.php:13 -#, fuzzy, php-format -msgid "" -"Hi there. Your recent order on %s has been completed. Your order details are " -"shown below for your reference:" -msgstr "您的訂單已經完成。訂單細節如下:" - -# @ woocommerce -#: templates/emails/customer-invoice.php:16 -#: templates/emails/plain/customer-invoice.php:14 -#, fuzzy, php-format -msgid "" -"An order has been created for you on %s. To pay for this order please use " -"the following link: %s" -msgstr "" -"您在 “%s” 上建立了一筆訂單. 若要付費請到此連接:付" -"費" - -# @ woocommerce -#: templates/emails/customer-invoice.php:16 -#, fuzzy -msgid "pay" -msgstr "付款" - -# @ woocommerce -#: templates/emails/customer-new-account.php:14 -#: templates/emails/plain/customer-new-account.php:13 -#, php-format -msgid "" -"Thanks for creating an account on %s. Your username is %s." -msgstr "感謝您在 %s 上建立帳號,您的帳號名稱為 %s。" - -# @ woocommerce -#: templates/emails/customer-new-account.php:16 -#: templates/emails/plain/customer-new-account.php:15 -#, php-format -msgid "You can access your account area here: %s." -msgstr "您可由此處 %s 進入您的帳號區域。" - -# @ woocommerce -#: templates/emails/customer-note.php:14 -#: templates/emails/plain/customer-note.php:13 -msgid "Hello, a note has just been added to your order:" -msgstr "您好,您的訂單內剛剛新增了一項備註:" - -# @ woocommerce -#: templates/emails/customer-note.php:18 -#: templates/emails/plain/customer-note.php:21 -msgid "For your reference, your order details are shown below." -msgstr "爲提供您參考,您的訂單細節如下:" - -# @ woocommerce -#: templates/emails/customer-processing-order.php:14 -#: templates/emails/plain/customer-processing-order.php:13 -msgid "" -"Your order has been received and is now being processed. Your order details " -"are shown below for your reference:" -msgstr "" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:14 -#: templates/emails/plain/customer-reset-password.php:13 -msgid "Someone requested that the password be reset for the following account:" -msgstr "" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:15 -#: templates/emails/plain/customer-reset-password.php:15 -#, fuzzy, php-format -msgid "Username: %s" -msgstr "使用者名稱" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:16 -#: templates/emails/plain/customer-reset-password.php:16 -msgid "If this was a mistake, just ignore this email and nothing will happen." -msgstr "" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:17 -#: templates/emails/plain/customer-reset-password.php:17 -msgid "To reset your password, visit the following address:" -msgstr "" - -# @ woocommerce -#: templates/emails/customer-reset-password.php:20 -#, fuzzy -msgid "Click here to reset your password" -msgstr "按此輸入您的代碼" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:220 -#: templates/emails/email-addresses.php:18 -#: templates/emails/plain/email-addresses.php:12 -msgid "Billing address" -msgstr "帳單地址" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:227 -#: templates/emails/email-addresses.php:28 -#: templates/emails/plain/email-addresses.php:17 -msgid "Shipping address" -msgstr "運送地址" - -# @ woocommerce -#: templates/emails/email-order-items.php:40 -#, fuzzy, php-format -msgid "Download %d:" -msgstr "下載:" - -# @ woocommerce -#: templates/emails/email-order-items.php:42 -msgid "Download:" -msgstr "下載:" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:19 -#: templates/emails/plain/customer-completed-order.php:19 -#: templates/emails/plain/customer-invoice.php:20 -#: templates/emails/plain/customer-note.php:27 -#: templates/emails/plain/customer-processing-order.php:19 -#, fuzzy, php-format -msgid "Order number: %s" -msgstr "訂單備註" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:20 -#: templates/emails/plain/customer-completed-order.php:20 -#: templates/emails/plain/customer-invoice.php:21 -#: templates/emails/plain/customer-note.php:28 -#: templates/emails/plain/customer-processing-order.php:20 -#, fuzzy, php-format -msgid "Order date: %s" -msgstr "訂單更新訊息" - -# @ woocommerce -#: templates/emails/plain/admin-new-order.php:20 -msgid "jS F Y" -msgstr "F j號, Y" - -# @ woocommerce -#: templates/emails/plain/customer-completed-order.php:38 -#: templates/emails/plain/customer-note.php:46 -#: templates/emails/plain/customer-processing-order.php:38 -#, fuzzy -msgid "Your details" -msgstr "我們的詳細資訊" - -# @ woocommerce -#: templates/emails/plain/email-order-items.php:28 -#, fuzzy, php-format -msgid "Quantity: %s" -msgstr "數量" - -# @ woocommerce -#: templates/emails/plain/email-order-items.php:31 -#, fuzzy, php-format -msgid "Cost: %s" -msgstr "成本" - -# @ woocommerce -#: templates/loop/add-to-cart.php:17 templates/loop/add-to-cart.php:41 -#: templates/loop/add-to-cart.php:50 -msgid "Read More" -msgstr "閱讀更多" - -# @ woocommerce -#: templates/loop/add-to-cart.php:33 -msgid "Select options" -msgstr "選擇選項" - -# @ woocommerce -#: templates/loop/add-to-cart.php:37 -msgid "View options" -msgstr "檢視選項" - -# @ woocommerce -#: templates/loop/result-count.php:28 -msgid "Showing the single result" -msgstr "" - -# @ woocommerce -#: templates/loop/result-count.php:30 -#, fuzzy, php-format -msgid "Showing all %d results" -msgstr "顯示所有副類型" - -# @ woocommerce -#: templates/loop/result-count.php:32 -#, php-format -msgctxt "%1$d = first, %2$d = last, %3$d = total" -msgid "Showing %1$d–%2$d of %3$d results" -msgstr "" - -# @ woocommerce -#: templates/loop/sale-flash.php:16 templates/single-product/sale-flash.php:16 -msgid "Sale!" -msgstr "折扣!" - -# @ woocommerce -#: templates/loop/orderby.php:21 -msgid "Default sorting" -msgstr "預設排序" - -# @ woocommerce -#: admin/settings/settings-init.php:462 -msgid "Sort by most recent" -msgstr "依最近新增" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:20 -#: templates/myaccount/form-lost-password.php:31 -msgid "New password" -msgstr "新密碼" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:24 -#: templates/myaccount/form-lost-password.php:35 -msgid "Re-enter new password" -msgstr "請再次輸入新密碼" - -# @ woocommerce -#: templates/myaccount/form-change-password.php:29 -#: templates/myaccount/form-lost-password.php:45 -msgid "Save" -msgstr "儲存" - -# @ woocommerce -#: templates/myaccount/form-edit-address.php:43 -msgid "Save Address" -msgstr "儲存地址" - -# @ woocommerce -#: templates/myaccount/form-login.php:26 templates/myaccount/form-login.php:40 -#: templates/shop/form-login.php:31 -msgid "Login" -msgstr "登錄" - -# @ woocommerce -#: templates/myaccount/form-login.php:50 templates/shop/form-login.php:33 -msgid "Lost Password?" -msgstr "忘記密碼?" - -# @ woocommerce -#: templates/myaccount/form-login.php:60 -#: templates/myaccount/form-login.php:101 -msgid "Register" -msgstr "註冊" - -# @ woocommerce -#: templates/myaccount/form-login.php:66 -msgid "Username" -msgstr "使用者名稱" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:182 -#: admin/woocommerce-admin-users.php:187 templates/myaccount/form-login.php:78 -#: templates/single-product-reviews.php:101 -msgid "Email" -msgstr "電子郵件" - -# @ woocommerce -#: templates/myaccount/form-login.php:89 -msgid "Re-enter password" -msgstr "再次輸入密碼" - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:22 -msgid "" -"Lost your password? Please enter your username or email address. You will " -"receive a link to create a new password via email." -msgstr "" - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:28 -#, fuzzy -msgid "Enter a new password below." -msgstr "請再次輸入新密碼" - -# @ woocommerce -#: templates/myaccount/form-lost-password.php:45 -#, fuzzy -msgid "Reset Password" -msgstr "忘記密碼?" - -# @ woocommerce -#: templates/myaccount/my-account.php:19 -#, php-format -msgid "" -"Hello, %s. From your account dashboard you can view your " -"recent orders, manage your shipping and billing addresses and change your password." -msgstr "" -"%s 您好,您可以在這裡找到訂單的歷史紀錄,管理帳單、運送地址" -"以及修改密碼。" - -# @ woocommerce -#: templates/myaccount/my-address.php:17 -#, fuzzy -msgid "My Addresses" -msgstr "我的地址" - -# @ woocommerce -#: templates/myaccount/my-address.php:23 -msgid "My Address" -msgstr "我的地址" - -# @ woocommerce -#: templates/myaccount/my-address.php:35 -msgid "The following addresses will be used on the checkout page by default." -msgstr "下列的地址將會在您結帳時自動使用,但您還是可以在結帳時修改成其它地址。" - -# @ default -# @ woocommerce -#: admin/post-types/product.php:151 -#: admin/post-types/writepanels/writepanel-order_data.php:140 -#: admin/post-types/writepanels/writepanel-order_data.php:230 -#: admin/post-types/writepanels/writepanel-order_data.php:387 -#: admin/post-types/writepanels/writepanel-product_data.php:1043 -#: admin/woocommerce-admin-attributes.php:322 -#: templates/myaccount/my-address.php:45 woocommerce.php:917 -#: woocommerce.php:953 woocommerce.php:990 woocommerce.php:1028 -#: woocommerce.php:1066 -msgid "Edit" -msgstr "編輯" - -# @ woocommerce -#: templates/myaccount/my-address.php:64 -#, fuzzy -msgid "You have not set up this type of address yet." -msgstr "您還沒有設定運送地址。" - -# @ woocommerce -#: templates/myaccount/my-downloads.php:18 -msgid "Available downloads" -msgstr "可提供的下載" - -# @ woocommerce -#: templates/myaccount/my-downloads.php:27 -#, fuzzy, php-format -msgid "%s download remaining" -msgid_plural "%s downloads remaining" -msgstr[0] " 個剩餘下載" -msgstr[1] " 個剩餘下載" - -# @ woocommerce -#: templates/myaccount/my-orders.php:26 -msgid "Recent Orders" -msgstr "近期訂單" - -# @ woocommerce -#: admin/post-types/shop_order.php:44 templates/myaccount/my-orders.php:32 -#: woocommerce.php:1025 -msgid "Order" -msgstr "訂單" - -# @ woocommerce -#: admin/post-types/shop_order.php:43 -#: admin/settings/settings-payment-gateways.php:29 -#: admin/settings/settings-shipping-methods.php:31 -#: templates/myaccount/my-orders.php:34 -msgid "Status" -msgstr "狀態" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:138 -#: admin/post-types/writepanels/writepanel-product_data.php:1064 -#: templates/myaccount/my-orders.php:77 -msgid "Cancel" -msgstr "取消" - -# @ default -# @ woocommerce -#: admin/post-types/product.php:167 admin/post-types/shop_order.php:171 -#: templates/myaccount/my-orders.php:82 -msgid "View" -msgstr "檢視" - -# @ woocommerce -#: templates/order/form-tracking.php:17 -msgid "" -"To track your order please enter your Order ID in the box below and press " -"return. This was given to you on your receipt and in the confirmation email " -"you should have received." -msgstr "" -"請輸入您的訂單編號來追蹤訂單,您可以在收據和確認訂單的電子郵件裡找到訂單編" -"號。" - -# @ woocommerce -#: templates/order/form-tracking.php:19 -msgid "Order ID" -msgstr "訂單編號" - -# @ woocommerce -#: templates/order/form-tracking.php:19 -msgid "Found in your order confirmation email." -msgstr "您可以在確認訂單的電子郵件裡找到訂單編號" - -# @ woocommerce -#: templates/order/form-tracking.php:20 -msgid "Billing Email" -msgstr "帳單電子郵件信箱" - -# @ woocommerce -#: templates/order/form-tracking.php:20 -msgid "Email you used during checkout." -msgstr "您在結帳時所輸入的電子郵件信箱" - -# @ woocommerce -#: templates/order/form-tracking.php:23 -#, fuzzy -msgid "Track" -msgstr "追蹤\"" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:59 -#: templates/order/order-details.php:16 -msgid "Order Details" -msgstr "訂單資訊" - -# @ woocommerce -#: templates/order/order-details.php:57 -#, fuzzy, php-format -msgid "Download file %s →" -msgstr "下載檔案 →" - -# @ woocommerce -#: templates/order/order-details.php:81 -msgid "Order Again" -msgstr "再次訂貨" - -# @ woocommerce -#: templates/order/order-details.php:93 -msgid "Telephone:" -msgstr "電話:" - -# @ woocommerce -#: templates/order/tracking.php:18 -#, php-format -msgid "Order %s which was made %s has the status “%s”" -msgstr "訂單編號 %s 在 %s 前下單,狀態爲 “%s”" - -# @ woocommerce -#: templates/order/tracking.php:18 -msgid "ago" -msgstr "前" - -# @ woocommerce -#: templates/order/tracking.php:20 -msgid "and was completed" -msgstr "並且已完成" - -# @ woocommerce -#: templates/order/tracking.php:20 -msgid " ago" -msgstr " 前" - -# @ woocommerce -#: templates/shop/breadcrumb.php:66 -msgid "Products tagged “" -msgstr "商品被標示 “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:94 templates/shop/breadcrumb.php:196 -msgid "Search results for “" -msgstr "搜尋條件: “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:154 -msgid "Error 404" -msgstr "錯誤 404" - -# @ woocommerce -#: templates/shop/breadcrumb.php:200 -msgid "Posts tagged “" -msgstr "文章被標示 “" - -# @ woocommerce -#: templates/shop/breadcrumb.php:205 -msgid "Author:" -msgstr "作者:" - -# @ woocommerce -#: templates/shop/breadcrumb.php:210 -msgid "Page" -msgstr "頁面" - -# @ woocommerce -#: templates/single-product/add-to-cart/variable.php:24 -msgid "Choose an option" -msgstr "請選擇..." - -# @ woocommerce -#: templates/single-product/add-to-cart/variable.php:64 -msgid "Clear selection" -msgstr "清除已選項目" - -# @ product_cat -#: templates/single-product/meta.php:22 -#, fuzzy -msgid "Category:" -msgid_plural "Categories:" -msgstr[0] "商品分類:" -msgstr[1] "商品分類:" - -# @ product_tag -#: templates/single-product/meta.php:24 -msgid "Tag:" -msgid_plural "Tags:" -msgstr[0] "" -msgstr[1] "" - -# @ woocommerce -#: admin/post-types/product.php:588 admin/post-types/product.php:837 -#: admin/post-types/writepanels/variation-admin-html.php:90 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:84 -#: admin/post-types/writepanels/writepanel-product_data.php:273 -#: templates/single-product/product-attributes.php:28 -msgid "Weight" -msgstr "重量" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:284 -#: templates/single-product/product-attributes.php:37 -msgid "Dimensions" -msgstr "尺寸" - -# @ woocommerce -#: templates/single-product/related.php:36 -msgid "Related Products" -msgstr "相關商品" - -# @ woocommerce -#: templates/single-product/review.php:33 -msgid "Your comment is awaiting approval" -msgstr "您的評論目前尚待批准中" - -# @ woocommerce -#: templates/single-product/review.php:40 -msgid "verified owner" -msgstr "經過驗證的所有者" - -# @ woocommerce -#: templates/single-product/tabs/description.php:14 -msgid "Product Description" -msgstr "商品介紹" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:64 -#: templates/single-product-reviews.php:51 -#: templates/single-product-reviews.php:57 -msgid "Reviews" -msgstr "商品評論" - -# @ woocommerce -#: templates/single-product/up-sells.php:41 -msgid "You may also like…" -msgstr "您可能也喜歡…" - -# @ woocommerce -#: templates/single-product-reviews.php:45 -#, php-format -msgid "%s review for %s" -msgid_plural "%s reviews for %s" -msgstr[0] "%s 評論: %s" -msgstr[1] "%s 評論: %s" - -# @ woocommerce -#: templates/single-product-reviews.php:73 -msgid " Previous" -msgstr " 上一頁" - -# @ woocommerce -#: templates/single-product-reviews.php:74 -msgid "Next " -msgstr "下一頁 " - -# @ woocommerce -#: templates/single-product-reviews.php:78 -msgid "Add Review" -msgstr "添加評論" - -# @ woocommerce -#: templates/single-product-reviews.php:80 -msgid "Add a review" -msgstr "添加評論" - -# @ woocommerce -#: templates/single-product-reviews.php:84 -msgid "Be the first to review" -msgstr "搶先評論" - -# @ woocommerce -#: templates/single-product-reviews.php:86 -msgid "" -"There are no reviews yet, would you like to submit yours?" -msgstr "" -"目前還沒有任何評論,立刻發表您的評論。" - -# @ woocommerce -#: templates/single-product-reviews.php:104 -msgid "Submit Review" -msgstr "送出評論" - -# @ woocommerce -#: templates/single-product-reviews.php:111 -msgid "Rating" -msgstr "評分" - -# @ woocommerce -#: templates/single-product-reviews.php:112 -msgid "Rate…" -msgstr "評分…" - -# @ woocommerce -#: templates/single-product-reviews.php:113 -msgid "Perfect" -msgstr "完美" - -# @ woocommerce -#: templates/single-product-reviews.php:114 -msgid "Good" -msgstr "很好" - -# @ woocommerce -#: templates/single-product-reviews.php:115 -msgid "Average" -msgstr "一般" - -# @ woocommerce -#: templates/single-product-reviews.php:116 -msgid "Not that bad" -msgstr "不錯" - -# @ woocommerce -#: templates/single-product-reviews.php:117 -msgid "Very Poor" -msgstr "很差" - -# @ woocommerce -#: templates/single-product-reviews.php:122 -msgid "Your Review" -msgstr "您的評論" - -# @ woocommerce -#: woocommerce-ajax.php:111 -msgid "Please enter your username and password to login." -msgstr "請輸入使用者名稱以及密碼來登錄。" - -# @ woocommerce -#: woocommerce-ajax.php:191 -msgid "Sorry, your session has expired." -msgstr "很抱歉, 您的會話已經逾期." - -# @ woocommerce -#: woocommerce-ajax.php:191 -msgid "Return to homepage →" -msgstr "回到首頁 →" - -# @ woocommerce -#: woocommerce-ajax.php:332 woocommerce-ajax.php:366 woocommerce-ajax.php:389 -msgid "You do not have sufficient permissions to access this page." -msgstr "您不夠權限拜訪此頁面." - -# @ woocommerce -#: woocommerce-ajax.php:334 woocommerce-ajax.php:367 woocommerce-ajax.php:390 -msgid "You have taken too long. Please go back and retry." -msgstr "您花費過久的時間. 請回頭重新嘗試." - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:113 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:53 -#: woocommerce-ajax.php:626 -msgid "Same as parent" -msgstr "與父母相同" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:25 -#: admin/post-types/writepanels/order-item-html.php:91 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:54 -#: admin/post-types/writepanels/writepanel-product_data.php:186 -#: admin/settings/settings-init.php:982 -#: admin/settings/settings-tax-rates.php:29 -#: admin/woocommerce-admin-settings.php:226 woocommerce-ajax.php:627 -msgid "Standard" -msgstr "標準" - -# @ woocommerce -#: woocommerce-ajax.php:1215 woocommerce-ajax.php:1216 -#, php-format -msgid "Item #%s stock increased from %s to %s." -msgstr "商品 #%s 庫存由 %s 恢復到 %s。" - -# @ woocommerce -#: woocommerce-ajax.php:1244 -#, fuzzy -msgid "Value" -msgstr "數值" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -#: woocommerce-ajax.php:1558 -msgid "Delete note" -msgstr "刪除備註" - -# @ woocommerce -#: woocommerce-core-functions.php:1189 woocommerce-core-functions.php:1215 -msgid "Download Permissions Granted" -msgstr "獲得下載權限" - -# @ woocommerce -#: woocommerce-core-functions.php:1328 -#, fuzzy -msgctxt "slug" -msgid "uncategorized" -msgstr "無類別" - -# @ woocommerce -#: woocommerce-core-functions.php:1517 -msgid "Select a category" -msgstr "請選擇分類" - -# @ woocommerce -#: woocommerce-core-functions.php:1521 -msgid "Uncategorized" -msgstr "無類別" - -# @ woocommerce -#: woocommerce-core-functions.php:1893 -msgid "Customer" -msgstr "顧客" - -# @ woocommerce -#: woocommerce-core-functions.php:1900 -msgid "Shop Manager" -msgstr "商店管理員" - -# @ woocommerce -#: woocommerce-core-functions.php:2433 -msgid "Unpaid order cancelled - time limit reached." -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:2485 woocommerce-functions.php:703 -msgid "Please enter a username." -msgstr "請輸入使用者名稱。" - -# @ woocommerce -#: woocommerce-functions.php:208 woocommerce-functions.php:253 -msgid "Cart updated." -msgstr "購物車更新完成" - -# @ woocommerce -#: woocommerce-functions.php:239 -#, php-format -msgid "You can only have 1 %s in your cart." -msgstr "您的購物車只能有 1 個 %s." - -# @ woocommerce -#: woocommerce-functions.php:296 woocommerce-functions.php:343 -msgid "Please choose product options…" -msgstr "請選擇商品選項…" - -# @ woocommerce -#: woocommerce-functions.php:378 -msgid "" -"Please choose the quantity of items you wish to add to your cart…" -msgstr "" - -# @ woocommerce -#: woocommerce-functions.php:386 -#, fuzzy -msgid "Please choose a product to add to your cart…" -msgstr "請選擇商品…" - -# @ woocommerce -#: woocommerce-functions.php:455 -#, php-format -msgid "Added "%s" to your cart." -msgstr "" - -# @ default -#: woocommerce-functions.php:455 -msgid "" and "" -msgstr "" - -# @ woocommerce -#: woocommerce-functions.php:458 -#, fuzzy, php-format -msgid ""%s" was successfully added to your cart." -msgstr "商品已經成功加入到您的購物車。" - -# @ woocommerce -#: woocommerce-functions.php:466 -msgid "Continue Shopping →" -msgstr "繼續購物 →" - -# @ woocommerce -#: woocommerce-functions.php:633 -msgid "Username is required." -msgstr "必須填入使用者名稱。" - -# @ woocommerce -#: woocommerce-functions.php:634 woocommerce-functions.php:729 -msgid "Password is required." -msgstr "必須填入密碼。" - -# @ woocommerce -#: woocommerce-functions.php:705 -msgid "" -"This username is invalid because it uses illegal characters. Please enter a " -"valid username." -msgstr "此筆使用者名稱因爲包含違規字元而無法使用。請輸入有效的使用者名稱。" - -# @ woocommerce -#: woocommerce-functions.php:708 -msgid "This username is already registered, please choose another one." -msgstr "此筆使用者名稱已被註冊,請選擇其他名稱。" - -# @ woocommerce -#: woocommerce-functions.php:720 -msgid "Please type your e-mail address." -msgstr "請輸入您的電子郵件." - -# @ woocommerce -#: woocommerce-functions.php:722 -msgid "The email address isn’t correct." -msgstr "電子郵件信箱不符" - -# @ woocommerce -#: woocommerce-functions.php:725 -msgid "This email is already registered, please choose another one." -msgstr "您輸入的電子郵件信箱已被使用,請選擇其它信箱並再次嘗試。" - -# @ woocommerce -#: woocommerce-functions.php:730 -msgid "Re-enter your password." -msgstr "再次輸入密碼。" - -# @ woocommerce -#: woocommerce-functions.php:735 -msgid "Anti-spam field was filled in." -msgstr "防垃圾訊息欄位被填入了." - -# @ woocommerce -#: woocommerce-functions.php:841 -msgid "The cart has been filled with the items from your previous order." -msgstr "購物車已經匯入您上次訂單的商品." - -# @ woocommerce -#: woocommerce-functions.php:867 -msgid "Order cancelled by customer." -msgstr "訂單由顧客取消。" - -# @ woocommerce -#: woocommerce-functions.php:870 -msgid "Your order was cancelled." -msgstr "您的訂單已被取消。" - -# @ woocommerce -#: woocommerce-functions.php:876 -msgid "" -"Your order is no longer pending and could not be cancelled. Please contact " -"us if you need assistance." -msgstr "您的訂單已經不再“待處理中”的狀態並且無法取消。請聯絡我們的服務電話。" - -# @ woocommerce -#: woocommerce-functions.php:911 -msgid "Invalid email address." -msgstr "電子郵件信箱格式不正確" - -# @ woocommerce -#: woocommerce-functions.php:911 woocommerce-functions.php:933 -#: woocommerce-functions.php:953 woocommerce-functions.php:959 -#: woocommerce-functions.php:963 woocommerce-functions.php:966 -#: woocommerce-functions.php:996 woocommerce-functions.php:1099 -msgid "Go to homepage →" -msgstr "前往首頁 →" - -# @ woocommerce -#: woocommerce-functions.php:933 -msgid "Invalid download." -msgstr "無效的下載." - -# @ woocommerce -#: woocommerce-functions.php:945 -msgid "You must be logged in to download files." -msgstr "您必須登入才可下載檔案." - -# @ woocommerce -#: woocommerce-functions.php:948 -msgid "This is not your download link." -msgstr "這不是您的下載連結." - -# @ woocommerce -#: woocommerce-functions.php:953 -#, fuzzy -msgid "Product no longer exists." -msgstr "商品不再存在" - -# @ woocommerce -#: woocommerce-functions.php:963 -msgid "Sorry, you have reached your download limit for this file" -msgstr "很抱歉, 您已經達到此檔案的下載上限" - -# @ woocommerce -#: woocommerce-functions.php:966 -msgid "Sorry, this download has expired" -msgstr "很抱歉, 此下載已經逾期." - -# @ woocommerce -#: woocommerce-functions.php:1099 -msgid "File not found" -msgstr "找不到檔案" - -# @ woocommerce -#: woocommerce-functions.php:1209 -msgid "New products" -msgstr "最新到貨" - -# @ woocommerce -#: woocommerce-functions.php:1217 -#, php-format -msgid "New products added to %s" -msgstr "新商品加到了 %s" - -# @ woocommerce -#: woocommerce-functions.php:1225 -#, php-format -msgid "New products tagged %s" -msgstr "新商品標示上 %s" - -# @ woocommerce -#: woocommerce-functions.php:1264 -msgid "You have taken too long. Please go back and refresh the page." -msgstr "您花費了過多的時間. 請回到上一頁並刷新這一頁." - -# @ woocommerce -#: woocommerce-functions.php:1267 -msgid "Please rate the product." -msgstr "請爲商品評分." - -# @ woocommerce -#: admin/settings/settings-init.php:95 woocommerce-template.php:196 -msgid "" -"This is a demo store for testing purposes — no orders shall be " -"fulfilled." -msgstr "這是一個測試用的範例網站 — 沒有任何訂單會被實現。" - -# @ woocommerce -#: woocommerce-template.php:215 -#, php-format -msgid "Search Results: “%s”" -msgstr "搜尋結果: “%s”" - -# @ woocommerce -#: woocommerce-template.php:218 -#, php-format -msgid " – Page %s" -msgstr " – 第 %s 頁" - -# @ woocommerce -#: woocommerce-template.php:990 -msgctxt "breadcrumb" -msgid "Home" -msgstr "家" - -# @ woocommerce -#: woocommerce-template.php:1288 woocommerce.php:1175 -msgid "required" -msgstr "必要欄位" - -# @ woocommerce -#: woocommerce-template.php:1334 -msgid "Update country" -msgstr "更新國家" - -# @ woocommerce -#: woocommerce-template.php:1489 -msgid "Search for:" -msgstr "尋找:" - -# @ woocommerce -#: woocommerce-template.php:1490 -msgid "Search for products" -msgstr "尋找商品" - -# @ woocommerce -#: admin/post-types/product.php:620 admin/post-types/product.php:893 -#: admin/post-types/writepanels/writepanel-product_data.php:1030 -#: woocommerce-template.php:1491 woocommerce.php:913 -msgid "Search" -msgstr "搜尋" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:50 -#: admin/woocommerce-admin-init.php:895 woocommerce.php:752 -msgctxt "slug" -msgid "product-category" -msgstr "商品類別" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:51 -#: admin/woocommerce-admin-init.php:908 woocommerce.php:753 -msgctxt "slug" -msgid "product-tag" -msgstr "商品標籤" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:59 woocommerce.php:755 -msgctxt "slug" -msgid "product" -msgstr "商品" - -# @ woocommerce -#: woocommerce.php:791 -msgctxt "Admin menu name" -msgid "Categories" -msgstr "類別" - -# @ woocommerce -#: woocommerce.php:792 -msgid "Search Product Categories" -msgstr "搜尋商品分類" - -# @ woocommerce -#: woocommerce.php:793 -msgid "All Product Categories" -msgstr "所有商品分類" - -# @ woocommerce -#: woocommerce.php:794 -msgid "Parent Product Category" -msgstr "父母商品類別" - -# @ woocommerce -#: woocommerce.php:795 -msgid "Parent Product Category:" -msgstr "父母商品類別:" - -# @ woocommerce -#: woocommerce.php:796 -msgid "Edit Product Category" -msgstr "編輯商品分類" - -# @ woocommerce -#: woocommerce.php:797 -msgid "Update Product Category" -msgstr "更新商品分類" - -# @ woocommerce -#: woocommerce.php:798 -msgid "Add New Product Category" -msgstr "新增商品分類" - -# @ woocommerce -#: woocommerce.php:799 -msgid "New Product Category Name" -msgstr "新增商品分類名稱" - -# @ woocommerce -#: woocommerce.php:827 -msgctxt "Admin menu name" -msgid "Tags" -msgstr "標籤" - -# @ woocommerce -#: woocommerce.php:828 -msgid "Search Product Tags" -msgstr "搜尋商品標籤" - -# @ woocommerce -#: woocommerce.php:829 -msgid "All Product Tags" -msgstr "所有商品標籤" - -# @ woocommerce -#: woocommerce.php:830 -msgid "Parent Product Tag" -msgstr "父母商品標籤" - -# @ woocommerce -#: woocommerce.php:831 -msgid "Parent Product Tag:" -msgstr "父母商品標籤:" - -# @ woocommerce -#: woocommerce.php:832 -msgid "Edit Product Tag" -msgstr "編輯商品標籤" - -# @ woocommerce -#: woocommerce.php:833 -msgid "Update Product Tag" -msgstr "更新商品標籤" - -# @ woocommerce -#: woocommerce.php:834 -msgid "Add New Product Tag" -msgstr "新增商品標籤" - -# @ woocommerce -#: woocommerce.php:835 -msgid "New Product Tag Name" -msgstr "新商品標簽的名稱" - -# @ woocommerce -#: woocommerce.php:854 woocommerce.php:856 -msgid "Shipping Classes" -msgstr "運送課別" - -# @ woocommerce -#: woocommerce.php:858 -msgctxt "Admin menu name" -msgid "Shipping Classes" -msgstr "運送課別" - -# @ woocommerce -#: woocommerce.php:859 -msgid "Search Shipping Classes" -msgstr "搜尋運送課別" - -# @ woocommerce -#: woocommerce.php:860 -msgid "All Shipping Classes" -msgstr "全部運送課別" - -# @ woocommerce -#: woocommerce.php:861 -msgid "Parent Shipping Class" -msgstr "父母運送課別" - -# @ woocommerce -#: woocommerce.php:862 -msgid "Parent Shipping Class:" -msgstr "父母運送課別:" - -# @ woocommerce -#: woocommerce.php:863 -msgid "Edit Shipping Class" -msgstr "編輯運送課別" - -# @ woocommerce -#: woocommerce.php:864 -msgid "Update Shipping Class" -msgstr "更新運送課別" - -# @ woocommerce -#: woocommerce.php:865 -msgid "Add New Shipping Class" -msgstr "新增運送課別" - -# @ woocommerce -#: woocommerce.php:866 -msgid "New Shipping Class Name" -msgstr "新運送課別的名稱" - -# @ woocommerce -#: woocommerce.php:914 -msgid "All" -msgstr "全部" - -# @ woocommerce -#: woocommerce.php:915 woocommerce.php:916 -msgid "Parent" -msgstr "父母" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:276 woocommerce.php:918 -msgid "Update" -msgstr "更新" - -# @ woocommerce -#: woocommerce.php:919 -msgid "Add New" -msgstr "新增" - -# @ woocommerce -#: woocommerce.php:920 -msgid "New" -msgstr "新" - -# @ woocommerce -#: woocommerce.php:950 -msgctxt "Admin menu name" -msgid "Products" -msgstr "商品" - -# @ woocommerce -#: woocommerce.php:951 -msgid "Add Product" -msgstr "添加商品" - -# @ woocommerce -#: woocommerce.php:952 -msgid "Add New Product" -msgstr "新增商品" - -# @ woocommerce -#: woocommerce.php:954 -msgid "Edit Product" -msgstr "編輯商品" - -# @ woocommerce -#: woocommerce.php:955 -msgid "New Product" -msgstr "新商品" - -# @ woocommerce -#: woocommerce.php:956 woocommerce.php:957 -msgid "View Product" -msgstr "檢視商品" - -# @ woocommerce -#: woocommerce.php:958 -msgid "Search Products" -msgstr "搜尋商品" - -# @ woocommerce -#: woocommerce.php:959 -msgid "No Products found" -msgstr "找不到商品" - -# @ woocommerce -#: woocommerce.php:960 -msgid "No Products found in trash" -msgstr "垃圾桶裡找不到商品" - -# @ woocommerce -#: woocommerce.php:961 -msgid "Parent Product" -msgstr "父母商品" - -# @ woocommerce -#: woocommerce.php:963 -msgid "This is where you can add new products to your store." -msgstr "在此可以新增商品到您的商店" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -#: woocommerce.php:986 -msgid "Variations" -msgstr "變化類型" - -# @ woocommerce -#: woocommerce.php:987 -msgid "Variation" -msgstr "變化類型" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:193 -#: woocommerce.php:988 -msgid "Add Variation" -msgstr "添加變化類型" - -# @ woocommerce -#: woocommerce.php:989 -msgid "Add New Variation" -msgstr "新增變化類型" - -# @ woocommerce -#: woocommerce.php:991 -msgid "Edit Variation" -msgstr "編輯變化類型" - -# @ woocommerce -#: woocommerce.php:992 -msgid "New Variation" -msgstr "新變化類型" - -# @ woocommerce -#: woocommerce.php:993 woocommerce.php:994 -msgid "View Variation" -msgstr "檢視變化類型" - -# @ woocommerce -#: woocommerce.php:995 -msgid "Search Variations" -msgstr "搜尋變化類型" - -# @ woocommerce -#: woocommerce.php:996 -msgid "No Variations found" -msgstr "找不到任何變化類型" - -# @ woocommerce -#: woocommerce.php:997 -msgid "No Variations found in trash" -msgstr "垃圾桶裡找不到變化類型" - -# @ woocommerce -#: woocommerce.php:998 -msgid "Parent Variation" -msgstr "父母變化類型" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:140 admin/woocommerce-admin-init.php:142 -#: woocommerce.php:1015 -msgctxt "Admin menu name" -msgid "Orders" -msgstr "訂單" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:68 -#: admin/woocommerce-admin-dashboard.php:142 woocommerce.php:1024 -msgid "Orders" -msgstr "訂單" - -# @ woocommerce -#: woocommerce.php:1026 -msgid "Add Order" -msgstr "添加訂單" - -# @ woocommerce -#: woocommerce.php:1027 -msgid "Add New Order" -msgstr "新增訂單" - -# @ woocommerce -#: woocommerce.php:1029 -msgid "Edit Order" -msgstr "編輯訂單" - -# @ woocommerce -#: woocommerce.php:1030 -msgid "New Order" -msgstr "新訂單" - -# @ woocommerce -#: woocommerce.php:1033 -msgid "Search Orders" -msgstr "搜尋訂單" - -# @ woocommerce -#: woocommerce.php:1034 -msgid "No Orders found" -msgstr "找不到訂單" - -# @ woocommerce -#: woocommerce.php:1035 -msgid "No Orders found in trash" -msgstr "垃圾桶裡找不到訂單" - -# @ woocommerce -#: woocommerce.php:1036 -msgid "Parent Orders" -msgstr "父母訂單" - -# @ woocommerce -#: woocommerce.php:1039 -msgid "This is where store orders are stored." -msgstr "商店訂單儲存在此." - -# @ woocommerce -#: admin/settings/settings-init.php:105 admin/woocommerce-admin-content.php:61 -#: admin/woocommerce-admin-content.php:76 -#: admin/woocommerce-admin-reports.php:72 woocommerce.php:1061 -msgid "Coupons" -msgstr "優惠券" - -# @ woocommerce -#: woocommerce.php:1063 -msgctxt "Admin menu name" -msgid "Coupons" -msgstr "優惠券" - -# @ woocommerce -#: woocommerce.php:1064 -msgid "Add Coupon" -msgstr "添加優惠券" - -# @ woocommerce -#: woocommerce.php:1065 -msgid "Add New Coupon" -msgstr "新增優惠券" - -# @ woocommerce -#: woocommerce.php:1067 -msgid "Edit Coupon" -msgstr "編輯優惠券" - -# @ woocommerce -#: woocommerce.php:1068 -msgid "New Coupon" -msgstr "新優惠券" - -# @ woocommerce -#: woocommerce.php:1069 -msgid "View Coupons" -msgstr "檢視優惠券" - -# @ woocommerce -#: woocommerce.php:1070 -msgid "View Coupon" -msgstr "檢視優惠券" - -# @ woocommerce -#: woocommerce.php:1071 -msgid "Search Coupons" -msgstr "搜尋優惠券" - -# @ woocommerce -#: woocommerce.php:1072 -msgid "No Coupons found" -msgstr "找不到優惠券" - -# @ woocommerce -#: woocommerce.php:1073 -msgid "No Coupons found in trash" -msgstr "垃圾桶裡找不到優惠券" - -# @ woocommerce -#: woocommerce.php:1074 -msgid "Parent Coupon" -msgstr "父母優惠券" - -# @ woocommerce -#: woocommerce.php:1076 -msgid "" -"This is where you can add new coupons that customers can use in your store." -msgstr "在此可新增給顧客在商店用的優惠券." - -# @ woocommerce -#: woocommerce.php:1172 -msgid "Select an option…" -msgstr "選擇一個選項…" - -# @ woocommerce -#: woocommerce.php:1173 -msgid "Please select a rating" -msgstr "請選擇評分" - -# @ woocommerce -#: woocommerce.php:1174 -msgid "" -"Sorry, no products matched your selection. Please choose a different " -"combination." -msgstr "" - -# @ woocommerce -#: woocommerce.php:1656 -msgid "Cart % Discount" -msgstr "購物車 % 折扣" - -# @ woocommerce -#: woocommerce.php:1657 -msgid "Product Discount" -msgstr "商品折扣" - -# @ woocommerce -#: woocommerce.php:1658 -msgid "Product % Discount" -msgstr "商品 % 折扣" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:45 woocommerce.php:1723 -msgid "Action failed. Please refresh the page and retry." -msgstr "動作失敗。請更新此頁面 (F5) 並重試。" - -# @ woocommerce -#: admin/importers/importers-init.php:13 -msgid "WooCommerce Tax Rates (CSV)" -msgstr "" - -# @ woocommerce -#: admin/importers/importers-init.php:13 -msgid "Import tax rates to your store via a csv file." -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:103 -#: admin/importers/tax-rates-importer.php:186 -#: admin/importers/tax-rates-importer.php:226 -#: admin/importers/tax-rates-importer.php:241 -msgid "Sorry, there has been an error." -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:104 -msgid "The file does not exist, please try again." -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:187 -msgid "The CSV is invalid." -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:198 -#, php-format -msgid "" -"Import complete - imported %s tax rates and skipped " -"%s." -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:208 -msgid "All done!" -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:208 -msgid "View Tax Rates" -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:259 -msgid "Import Tax Rates" -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:282 -msgid "" -"Hi there! Upload a CSV file containing tax rates to import the contents into " -"your shop. Choose a .csv file to upload, then click \"Upload file and import" -"\"." -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:284 -#, php-format -msgid "" -"Tax rates need to be defined with columns in a specific order (10 columns). " -"Click here to download a sample." -msgstr "" - -# @ default -#: admin/importers/tax-rates-importer.php:292 -msgid "" -"Before you can upload your import file, you will need to fix the following " -"error:" -msgstr "" - -# @ default -#: admin/importers/tax-rates-importer.php:301 -msgid "Choose a file from your computer:" -msgstr "" - -# @ default -#: admin/importers/tax-rates-importer.php:307 -#, php-format -msgid "Maximum size: %s" -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:312 -msgid "OR enter path to file:" -msgstr "" - -# @ woocommerce -#: admin/importers/tax-rates-importer.php:319 -msgid "Delimiter" -msgstr "" - -# @ default -#: admin/importers/tax-rates-importer.php:325 -msgid "Upload file and import" -msgstr "" - -# @ woocommerce -#: admin/includes/duplicate_product.php:23 -msgid "No product to duplicate has been supplied!" -msgstr "" - -# @ woocommerce -#: admin/includes/duplicate_product.php:43 -msgid "Product creation failed, could not find original product:" -msgstr "" - -# @ woocommerce -#: admin/includes/duplicate_product.php:89 -msgid "(Copy)" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-install.php:6 -msgid "" -"Welcome to WooCommerce – You're almost ready to start " -"selling :)" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-install.php:7 -msgid "Install WooCommerce Pages" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-install.php:7 -msgid "Skip setup" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-theme-support.php:6 -msgid "" -"Your theme does not declare WooCommerce support – if " -"you encounter layout issues please read our integration guide or choose a " -"WooCommerce theme :)" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-theme-support.php:7 -msgid "Theme Integration Guide" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-theme-support.php:7 -msgid "Hide this notice" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-update.php:6 -msgid "" -"Data Update Required – We just need to update your " -"install to the latest version" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-update.php:7 -msgid "Run the updater" -msgstr "" - -# @ woocommerce -#: admin/includes/notice-update.php:12 -msgid "" -"It is strongly recommended that you backup your database before proceeding. " -"Are you sure you wish to run the updater now?" -msgstr "" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:180 -#: admin/woocommerce-admin-install.php:204 -msgctxt "page_slug" -msgid "lost-password" -msgstr "" - -# @ woocommerce -#: admin/includes/updates/woocommerce-update-2.0.php:180 -#: admin/woocommerce-admin-install.php:204 -#: admin/woocommerce-admin-status.php:309 -msgid "Lost Password" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:33 -msgid "Welcome to WooCommerce" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:128 -#, php-format -msgid "Welcome to WooCommerce %s" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:133 -msgid "Thanks, all done!" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:135 -msgid "Thank you for updating to the latest version!" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:137 -msgid "Thanks for installing!" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:139 -#, php-format -msgid "" -"%s WooCommerce %s is more powerful, stable, and secure than ever before. We " -"hope you enjoy it." -msgstr "" - -# @ default -#: admin/includes/welcome.php:143 -#, php-format -msgid "Version %s" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:147 -msgid "Docs" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:154 -msgid "What's New" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:156 -msgid "Credits" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:179 -msgid "Security in mind" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:183 -msgid "Sucuri Safe Plugin" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:184 -msgid "" -"You will be happy to learn that WooCommerce has been audited and certified " -"by the Sucuri Security team. Whilst there is not much to be seen visually to " -"understand the amount of work that went into this audit, rest assured that " -"your website is powered by one of the most powerful and stable eCommerce " -"plugins available." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:187 -msgid "A Smoother Admin Experience" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:193 -msgid "New Product Panel" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:194 -msgid "" -"We have revised the product data panel making it cleaner, more streamlined, " -"and more logical. Adding products is a breeze!" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:199 -msgid "Nicer Order Screens" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:200 -msgid "" -"Order pages have had a cleanup, with a more easily scannable interface. We " -"particularly like the new status icons!" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:205 -msgid "Multi-Download Support" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:206 -msgid "" -"Products can have multiple downloadable files - purchasers will get access " -"to all the files added." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:211 -msgid "Less Taxing Taxes" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:217 -msgid "New Tax Input Panel" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:218 -msgid "" -"The tax input pages have been streamlined to make inputting taxes simpler - " -"adding multiple taxes for a single jurisdiction is now much easier using the " -"priority system. There is also CSV import/export support." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:222 -msgid "Improved Tax Options" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:223 -msgid "" -"As requested by some users, we now support taxing the billing address " -"instead of shipping (optional), and we allow you to choose which tax class " -"applies to shipping." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:228 -msgid "Product Listing Improvements Customers Will Love" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:234 -msgid "New Sorting Options" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:235 -msgid "Customers can now sort products by popularity and ratings." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:240 -msgid "Better Pagination and Result Counts" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:241 -msgid "" -"Numbered pagination has been added to core, and we show the number of " -"results found above the listings." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:246 -msgid "Inline Star Rating Display" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:247 -msgid "" -"We have added star ratings to the catalog which are pulled from reviews." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:255 -msgid "Under the Hood" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:259 -msgid "New product classes" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:260 -msgid "" -"The product classes have been rewritten and are now factory based. Much more " -"extendable, and easier to query products using the new get_product() function." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:264 -msgid "Capability overhaul" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:265 -msgid "" -"More granular capabilities for admin/shop manager roles covering products, " -"orders and coupons." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:269 -msgid "API Improvements" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:270 -msgid "" -"WC-API now has real endpoints, and we've optimised the gateways " -"API significantly by only loading gateways when needed." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:276 -msgid "Cache-friendly cart widgets" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:277 -msgid "" -"Cart widgets and other \"fragments\" are now pulled in via AJAX - this works " -"wonders with static page caching." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:281 -msgid "Session handling" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:282 -msgid "" -"PHP SESSIONS have been a problem for many users in the past, so we've " -"developed our own handler using cookies and options to make these more " -"reliable." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:286 -msgid "Retina Ready" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:287 -msgid "All graphics within WC have been optimised for HiDPI displays." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:294 -msgid "Better stock handling" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:295 -msgid "" -"We have added an option to hold stock for unpaid orders (defaults to " -"60mins). When this time limit is reached, and the order is not paid for, " -"stock is released and the order is cancelled." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:299 -msgid "Improved Line-item storage" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:300 -msgid "" -"We have changed how order items get stored making them easier (and faster) " -"to access for reporting. Order items are no longer serialised within an " -"order - they are stored within their own table." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:304 -msgid "Autoload" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:305 -msgid "" -"We have setup autoloading for classes - this has dramatically reduced memory " -"usage in 2.0." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:312 -msgid "Go to WooCommerce Settings" -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:330 -msgid "" -"WooCommerce is developed and maintained by a worldwide team of passionate " -"individuals and backed by an awesome developer community. Want to see your " -"name? Contribute to WooCommerce." -msgstr "" - -# @ woocommerce -#: admin/includes/welcome.php:356 -#, php-format -msgid "View %s" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:31 -msgid "Make a duplicate from this product" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:32 -msgid "Duplicate" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:61 -msgid "Copy to a new draft" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:86 admin/woocommerce-admin-taxonomies.php:297 -msgid "Image" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:91 admin/post-types/product.php:557 -#: admin/post-types/writepanels/variation-admin-html.php:46 -#: admin/post-types/writepanels/writepanel-product_data.php:98 -#: admin/woocommerce-admin-reports.php:2083 -#: admin/woocommerce-admin-reports.php:2119 -msgid "SKU" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:94 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:83 -#: admin/woocommerce-admin-content.php:63 -#: admin/woocommerce-admin-reports.php:99 -msgid "Stock" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:98 -msgid "Categories" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:99 -msgid "Tags" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:100 admin/post-types/product.php:632 -#: admin/post-types/product.php:904 -#: admin/post-types/writepanels/writepanel-product_data.php:1040 -#: admin/woocommerce-admin-init.php:463 -msgid "Featured" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:101 admin/woocommerce-admin-attributes.php:250 -#: admin/woocommerce-admin-attributes.php:308 -#: admin/woocommerce-admin-attributes.php:385 -msgid "Type" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:102 admin/post-types/shop_order.php:50 -#: templates/myaccount/my-orders.php:33 -msgid "Date" -msgstr "" - -# @ default -#: admin/post-types/product.php:151 -msgid "Edit this item" -msgstr "" - -# @ default -#: admin/post-types/product.php:152 -msgid "Edit this item inline" -msgstr "" - -# @ default -#: admin/post-types/product.php:152 -msgid "Quick Edit" -msgstr "" - -# @ default -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore this item from the Trash" -msgstr "" - -# @ default -#: admin/post-types/product.php:156 admin/post-types/shop_coupon.php:65 -msgid "Restore" -msgstr "" - -# @ default -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Move this item to the Trash" -msgstr "" - -# @ default -#: admin/post-types/product.php:158 admin/post-types/shop_coupon.php:67 -msgid "Trash" -msgstr "" - -# @ default -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -msgid "Delete this item permanently" -msgstr "" - -# @ default -# @ woocommerce -#: admin/post-types/product.php:160 admin/post-types/shop_coupon.php:69 -#: admin/post-types/writepanels/writepanel-order_data.php:463 -msgid "Delete Permanently" -msgstr "" - -# @ default -#: admin/post-types/product.php:165 -#, php-format -msgid "Preview “%s”" -msgstr "" - -# @ default -#: admin/post-types/product.php:165 -msgid "Preview" -msgstr "" - -# @ default -#: admin/post-types/product.php:167 -#, php-format -msgid "View “%s”" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:214 -msgid "Grouped" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:216 -msgid "External/Affiliate" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:220 admin/post-types/product.php:407 -#: admin/post-types/writepanels/variation-admin-html.php:168 -#: admin/post-types/writepanels/writepanel-product_data.php:52 -msgid "Virtual" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:222 admin/post-types/product.php:403 -#: admin/post-types/writepanels/variation-admin-html.php:166 -#: admin/post-types/writepanels/writepanel-product_data.php:58 -msgid "Downloadable" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:224 -msgid "Simple" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:228 admin/post-types/product.php:387 -msgid "Variable" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:251 -msgid "Toggle featured" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:253 -msgid "yes" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:255 -msgid "no" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:373 -msgid "Show all product types" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:381 -#: admin/post-types/writepanels/writepanel-product_data.php:39 -msgid "Grouped product" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:383 -#: admin/post-types/writepanels/writepanel-product_data.php:40 -msgid "External/Affiliate product" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:385 -#: admin/post-types/writepanels/writepanel-product_data.php:38 -msgid "Simple product" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:399 -msgid "Show all sub-types" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:520 -#, php-format -msgid "[%s with SKU of %s]" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:526 -#, php-format -msgid "[%s with ID of %d]" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:552 admin/post-types/product.php:783 -#: admin/post-types/writepanels/writepanels-init.php:46 -#: admin/settings/settings-init.php:518 -msgid "Product Data" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:570 -msgid "Regular price" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:575 admin/post-types/product.php:811 -msgid "Sale" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:577 -msgid "Sale price" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:599 admin/post-types/product.php:861 -msgid "L/W/H" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:601 admin/post-types/product.php:877 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:85 -#: admin/post-types/writepanels/writepanel-product_data.php:286 -msgid "Length" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:602 admin/post-types/product.php:878 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:86 -#: admin/post-types/writepanels/writepanel-product_data.php:287 -#: admin/woocommerce-admin-settings.php:795 -msgid "Width" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:603 admin/post-types/product.php:879 -#: admin/post-types/writepanels/writepanel-product-type-variable.php:87 -#: admin/post-types/writepanels/writepanel-product_data.php:288 -#: admin/woocommerce-admin-settings.php:797 -msgid "Height" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:613 admin/post-types/product.php:885 -msgid "Visibility" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:618 admin/post-types/product.php:891 -msgid "Catalog & search" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:619 admin/post-types/product.php:892 -#: admin/post-types/writepanels/writepanel-product_data.php:1029 -#: admin/woocommerce-admin-content.php:46 -#: admin/woocommerce-admin-settings.php:181 -msgid "Catalog" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:621 admin/post-types/product.php:894 -#: admin/post-types/writepanels/writepanel-product_data.php:1031 -msgid "Hidden" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:636 admin/post-types/product.php:922 -msgid "In stock?" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:657 admin/post-types/product.php:940 -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Manage stock?" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:661 admin/post-types/product.php:959 -#: admin/post-types/product.php:975 -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "Stock Qty" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:792 admin/post-types/product.php:816 -#: admin/post-types/product.php:842 admin/post-types/product.php:866 -#: admin/post-types/product.php:890 admin/post-types/product.php:909 -#: admin/post-types/product.php:927 admin/post-types/product.php:945 -#: admin/post-types/product.php:964 -msgid "— No Change —" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:793 admin/post-types/product.php:817 -#: admin/post-types/product.php:843 admin/post-types/product.php:867 -#: admin/post-types/product.php:965 -msgid "Change to:" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:794 admin/post-types/product.php:818 -msgid "Increase by (fixed amount or %):" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:795 admin/post-types/product.php:819 -msgid "Decrease by (fixed amount or %):" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:805 admin/post-types/product.php:830 -msgid "Enter price" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:820 -msgid "Decrease regular price by (fixed amount or %):" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:910 admin/post-types/product.php:946 -#: admin/post-types/shop_order.php:190 admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:260 -msgid "Yes" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:911 admin/post-types/product.php:947 -#: admin/post-types/shop_order.php:192 admin/woocommerce-admin-status.php:122 -#: admin/woocommerce-admin-status.php:260 -msgid "No" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:1175 -msgid "Sort Products" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:1214 -msgid "Insert into product" -msgstr "" - -# @ woocommerce -#: admin/post-types/product.php:1215 -msgid "Uploaded to this product" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:25 -msgid "Code" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:26 -msgid "Coupon type" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:27 -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Coupon amount" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:29 -msgid "Product IDs" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:30 -msgid "Usage / Limit" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:31 -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "Expiry date" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:56 -msgid "Edit coupon" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:114 -#, php-format -msgid "%s / %s" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:116 -#, php-format -msgid "%s / ∞" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_coupon.php:149 admin/post-types/shop_order.php:282 -msgid "Show all statuses" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:45 -msgid "Billing" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:49 -msgid "Customer Notes" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:51 -#: admin/post-types/writepanels/writepanel-order_data.php:386 -#: admin/post-types/writepanels/writepanel-order_data.php:433 -msgid "Actions" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:98 -msgid "made by" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:114 admin/post-types/shop_order.php:123 -msgid "Via" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:131 -msgid "Unpublished" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:133 -msgid "Y/m/d g:i:s A" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:139 -#, php-format -msgid "%s ago" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:141 -msgid "Y/m/d" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:158 -#: admin/woocommerce-admin-dashboard.php:176 -msgid "Processing" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:165 -msgid "Complete" -msgstr "" - -# @ woocommerce -#: admin/post-types/shop_order.php:301 admin/post-types/shop_order.php:326 -msgid "Show all customers" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:6 -msgid "Revoke Access" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:7 -#: admin/post-types/writepanels/variation-admin-html.php:7 -#: admin/post-types/writepanels/writepanel-product_data.php:365 -#: admin/post-types/writepanels/writepanel-product_data.php:444 -#: admin/woocommerce-admin-init.php:452 -msgid "Click to toggle" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:9 -#, php-format -msgid "File %d: %s" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:9 -#, php-format -msgid "Downloaded %s time" -msgid_plural "Downloaded %s times" -msgstr[0] "" -msgstr[1] "" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:16 -msgid "Downloads Remaining" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:19 -#: admin/post-types/writepanels/variation-admin-html.php:143 -#: admin/post-types/writepanels/variation-admin-html.php:151 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Unlimited" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:22 -msgid "Access Expires" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-download-permission-html.php:23 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Never" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:10 -msgid "Fee Name" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-fee-html.php:17 -#: admin/post-types/writepanels/order-item-html.php:84 -msgid "Tax class" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:9 -msgid "Product ID:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:12 -msgid "Variation ID:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:15 -msgid "Product SKU:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-item-html.php:33 -msgid "Add meta" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:6 -msgid "Tax Rate:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:16 -#: admin/post-types/writepanels/writepanel-order_data.php:627 -msgid "Sales Tax:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/order-tax-html.php:20 -#: admin/post-types/writepanels/writepanel-order_data.php:635 -msgid "Shipping Tax:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:6 -#: admin/post-types/writepanels/writepanel-product_data.php:364 -#: admin/post-types/writepanels/writepanel-product_data.php:443 -#: admin/woocommerce-admin-init.php:451 -msgid "Remove" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:20 -msgid "Any" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:46 -msgid "" -"Enter a SKU for this variation or leave blank to use the parent product SKU." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:57 -msgid "Stock Qty:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:57 -msgid "" -"Enter a quantity to enable stock management at variation level, or leave " -"blank to use the parent product's options." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:66 -msgid "Regular Price:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:67 -msgid "Variation price (required)" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:70 -msgid "Sale Price:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:70 -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Schedule" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:70 -msgid "Cancel schedule" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:77 -msgid "Sale start date:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:78 -#: admin/post-types/writepanels/writepanel-product_data.php:136 -msgctxt "placeholder" -msgid "From…" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:81 -msgid "Sale end date:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:82 -#: admin/post-types/writepanels/writepanel-product_data.php:137 -msgctxt "placeholder" -msgid "To…" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:90 -msgid "" -"Enter a weight for this variation or leave blank to use the parent product " -"weight." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:98 -msgid "Dimensions (L×W×H)" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:109 -msgid "Shipping class:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:124 -msgid "Tax class:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:135 -msgid "File paths:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:135 -msgid "" -"Enter one or more File Paths, one per line, to make this variation a " -"downloadable product, or leave blank." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:136 -#: admin/post-types/writepanels/writepanel-product_data.php:153 -msgid "File paths/URLs, one per line" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:137 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Choose a file" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:137 -msgid "Upload" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:137 -#: admin/post-types/writepanels/writepanel-product_data.php:154 -msgid "Insert file URL" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:142 -msgid "Download Limit:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:142 -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Leave blank for unlimited re-downloads." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:150 -msgid "Download Expiry:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:150 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "" -"Enter the number of days before a download link expires, or leave blank." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:164 -msgid "Enabled" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:166 -msgid "" -"Enable this option if access is given to a downloadable file upon purchase " -"of a product" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/variation-admin-html.php:168 -msgid "" -"Enable this option if a product is not shipped or there is no shipping cost" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Coupon description" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:37 -msgid "Optionally enter a description for this coupon for your reference." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:42 -msgid "Discount type" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:45 -msgid "Enter an amount or percentage e.g. 2.99 or 15%" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -msgid "Enable free shipping" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:51 -#, php-format -msgid "" -"Check this box if the coupon grants free shipping. The free " -"shipping method must be enabled with the \"must use coupon\" setting " -"checked." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "Individual use" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:54 -msgid "" -"Check this box if the coupon cannot be used in conjunction with other " -"coupons." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "Apply before tax" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:57 -msgid "" -"Check this box if the coupon should be applied before calculating cart tax." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "Exclude sale items" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:60 -msgid "" -"Check this box if the coupon should not apply to items on sale. Per-item " -"coupons will only work if the item is not on sale. Per-cart coupons will " -"only work if there are no sale items in the cart." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "Minimum amount" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "No minimum" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:65 -msgid "" -"This field allows you to set the minimum subtotal needed to use the coupon." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:75 -#: admin/post-types/writepanels/writepanel-order_data.php:400 -#: admin/post-types/writepanels/writepanel-product_data.php:504 -#: admin/post-types/writepanels/writepanel-product_data.php:521 -#: admin/woocommerce-admin-reports.php:1229 -msgid "Search for a product…" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:89 -msgid "" -"Products which need to be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are discounted." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:94 -msgid "Exclude products" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:95 -msgid "Search for a product…" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:109 -msgid "" -"Products which must not be in the cart to use this coupon or, for \"Product " -"Discounts\", which products are not discounted." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:117 -msgid "Any category" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:125 -msgid "" -"A product must be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will be discounted." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:130 -msgid "Exclude categories" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:131 -msgid "No categories" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:139 -msgid "" -"Product must not be in this category for the coupon to remain valid or, for " -"\"Product Discounts\", products in these categories will not be discounted." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "Customer emails" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "Any customer" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:145 -msgid "" -"Comma separate email addresses to restrict this coupon to specific billing " -"and user emails." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "Usage limit" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgctxt "placeholder" -msgid "Unlimited usage" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:152 -msgid "How many times this coupon can be used before it is void." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgctxt "placeholder" -msgid "Never expire" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:158 -msgid "The date this coupon will expire, YYYY-MM-DD." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-coupon_data.php:195 -msgid "" -"Coupon code already exists - customers will use the latest coupon with this " -"code." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:62 -msgid "Order number" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:67 -msgid "Customer IP:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:74 -msgid "General Details" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:76 -msgid "Order status:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:86 -msgid "Order Date:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:87 -msgid "h" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:87 -#: admin/settings/settings-init.php:577 -msgid "m" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:91 -msgid "Customer:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:131 -msgid "Customer Note:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:132 -msgid "Customer's notes about the order" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:140 -msgid "Billing Details" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:152 -#: admin/post-types/writepanels/writepanel-order_data.php:242 -#: admin/woocommerce-admin-users.php:155 admin/woocommerce-admin-users.php:204 -msgid "Company" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:156 -#: admin/post-types/writepanels/writepanel-order_data.php:246 -#: admin/woocommerce-admin-users.php:159 admin/woocommerce-admin-users.php:208 -msgid "Address 1" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:160 -#: admin/post-types/writepanels/writepanel-order_data.php:250 -#: admin/woocommerce-admin-users.php:163 admin/woocommerce-admin-users.php:212 -msgid "Address 2" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:164 -#: admin/post-types/writepanels/writepanel-order_data.php:254 -#: admin/settings/settings-tax-rates.php:42 -#: admin/settings/settings-tax-rates.php:217 -#: admin/woocommerce-admin-users.php:167 admin/woocommerce-admin-users.php:216 -msgid "City" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:178 -#: admin/post-types/writepanels/writepanel-order_data.php:268 -#: admin/woocommerce-admin-users.php:175 admin/woocommerce-admin-users.php:224 -msgid "State/County" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:195 -msgid "No billing address set." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:208 -msgid "Load billing address" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:230 -msgid "Shipping Details" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:279 -msgid "No shipping address set." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Load shipping address" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:292 -msgid "Copy from billing" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:339 -msgid "Item" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:344 -#: admin/post-types/writepanels/writepanel-product_data.php:191 -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Class" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:344 -msgid "Tax class for the line item" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:349 -msgid "Line subtotals are before pre-tax discounts, totals are after." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:388 -msgid "Delete Lines" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:390 -msgid "Stock Actions" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:391 -msgid "Reduce Line Stock" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:392 -msgid "Increase Line Stock" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:396 -#: admin/post-types/writepanels/writepanel-order_data.php:456 -msgid "Apply" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:402 -msgid "Add item(s)" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:403 -msgid "Add fee" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:434 -msgid "Resend order emails" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:465 -msgid "Move to Trash" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save Order" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:470 -msgid "Save/update the order" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:495 -msgid "Discounts" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:499 -msgid "Discounts before tax - calculated by comparing subtotals to totals." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:507 -msgid "Discounts after tax - user defined." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:540 -msgid "Label:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:541 -msgid "The shipping title the customer sees" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:548 -msgid "Cost:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:556 -msgid "Method:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:578 -#: admin/post-types/writepanels/writepanel-order_data.php:580 -#: admin/post-types/writepanels/writepanel-order_data.php:679 -#: admin/post-types/writepanels/writepanel-order_data.php:681 -msgid "Other" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:594 -msgid "Tax Rows" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:619 -msgid "+ Add tax row" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:619 -msgid "" -"These rows contain taxes for this order. This allows you to display multiple " -"or compound taxes rather than a single total." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:623 -msgid "Tax Totals" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:627 -msgid "Total tax for line items + fees." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:649 -#: admin/post-types/writepanels/writepanels-init.php:70 -msgid "Order Totals" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:661 -msgid "Payment Method:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:692 -msgid "Calc taxes" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_data.php:694 -msgid "Calc totals" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:57 -msgid "Choose a downloadable product…" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:87 -msgid "Grant Access" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:125 -msgid "" -"Could not grant access - the user may already have permission for this file " -"or billing email is not set. Ensure the billing email is set, and the order " -"has been saved." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_downloads.php:148 -msgid "Are you sure you want to revoke access to this download?" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:44 -#, php-format -msgid "added %s ago" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:50 -msgid "There are no notes for this order yet." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "Add note" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:56 -msgid "" -"Add a note for your reference, or add a customer note (the user will be " -"notified)." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:63 -msgid "Private note" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-order_notes.php:65 -#: admin/post-types/writepanels/writepanel-product_data.php:482 -msgid "Add" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:23 -msgid "Variations for variable products are defined here." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:65 -msgid "" -"Before adding variations, add and save some attributes on the " -"Attributes tab." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:67 -msgid "Learn more" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Close all" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:74 -#: admin/post-types/writepanels/writepanel-product_data.php:329 -msgid "Expand all" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:75 -msgid "Bulk edit:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:77 -msgid "Toggle "Enabled"" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:78 -msgid "Toggle "Downloadable"" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:79 -msgid "Toggle "Virtual"" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:80 -msgid "Delete all variations" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:81 -msgid "Prices" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:82 -msgid "Sale prices" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:88 -msgid "File Path" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:89 -msgid "Download limit" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:90 -#: admin/post-types/writepanels/writepanel-product_data.php:164 -msgid "Download Expiry" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:93 -msgid "Go" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:195 -msgid "Link all variations" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:197 -msgid "Default selections:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:210 -msgid "No default" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:293 -msgid "" -"Are you sure you want to link all variations? This will create a new " -"variation for each and every possible combination of variation attributes " -"(max 50 per run)." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:310 -msgid "variation added" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:312 -msgid "variations added" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:314 -msgid "No variations added" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:337 -msgid "Are you sure you want to remove this variation?" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:393 -msgid "Are you sure you want to delete all variations? This cannot be undone." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:396 -msgid "Last warning, are you sure?" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:433 -msgid "Enter a value" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:511 -#: admin/woocommerce-admin-taxonomies.php:62 -#: admin/woocommerce-admin-taxonomies.php:154 -msgid "Choose an image" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:513 -msgid "Set variation image" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product-type-variable.php:557 -msgid "Variable product" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:43 -msgid "Product Type" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:53 -msgid "Virtual products are intangible and aren't shipped." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:59 -msgid "Downloadable products give access to a file upon purchase." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:77 -#: admin/woocommerce-admin-content.php:44 -#: admin/woocommerce-admin-settings.php:180 -msgid "General" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:79 -#: admin/woocommerce-admin-content.php:47 -#: admin/woocommerce-admin-settings.php:183 -msgid "Inventory" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:83 -msgid "Linked Products" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:85 -#: admin/woocommerce-admin-attributes.php:298 -#: admin/woocommerce-admin-init.php:66 -msgid "Attributes" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:87 -msgid "Advanced" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "Stock Keeping Unit" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:98 -msgid "" -"SKU refers to a Stock-keeping unit, a unique identifier for each distinct " -"product and service that can be purchased." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Product URL" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:109 -msgid "Enter the external URL to the product." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "Button text" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgctxt "placeholder" -msgid "Buy product" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:112 -msgid "This text will be shown on the button linking to the external product." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:119 -msgid "Regular Price" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:125 -msgid "Sale Price" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:135 -msgid "Sale Price Dates" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:152 -msgid "File paths (one per line)" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:158 -msgid "Download Limit" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:180 -msgid "Shipping only" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:212 -msgid "Enable stock management at product level" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:219 -msgid "" -"Stock quantity. If this is a variable product this value will be used to " -"control stock for all variations, unless you define stock at variation level." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:230 -msgid "Stock status" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:233 -msgid "" -"Controls whether or not the product is listed as \"in stock\" or \"out of " -"stock\" on the frontend." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:240 -msgid "Allow Backorders?" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:241 -msgid "Do not allow" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:242 -msgid "Allow, but notify customer" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:243 -msgid "Allow" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:244 -msgid "" -"If managing stock, this controls whether or not backorders are allowed for " -"this product and variations. If enabled, stock quantity can go below 0." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "Sold Individually" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:255 -msgid "" -"Enable this to only allow one of this item to be bought in a single order" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:273 -msgid "Weight in decimal form" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:290 -msgid "LxWxH in decimal form" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:311 -msgid "No shipping class" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "Shipping class" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:317 -msgid "" -"Shipping classes are used by certain shipping methods to group similar " -"products." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:380 -#: admin/post-types/writepanels/writepanel-product_data.php:457 -#: admin/woocommerce-admin-init.php:453 -msgid "Value(s)" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:382 -msgid "Select terms" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:394 -msgid "Select all" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:394 -msgid "Select none" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:396 -msgid "Add new" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:409 -msgid "Pipe separate terms" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:416 -#: admin/post-types/writepanels/writepanel-product_data.php:463 -#: admin/woocommerce-admin-init.php:455 -msgid "Visible on the product page" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:422 -#: admin/post-types/writepanels/writepanel-product_data.php:469 -#: admin/woocommerce-admin-init.php:456 -msgid "Used for variations" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:458 -#: admin/woocommerce-admin-init.php:454 -msgid "Enter some text, or some attributes by pipe (|) separating values." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:484 -msgid "Custom product attribute" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:496 -msgid "Save attributes" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:503 -msgid "Up-Sells" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:518 -msgid "" -"Up-sells are products which you recommend instead of the currently viewed " -"product, for example, products that are more profitable or better quality or " -"more expensive." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:520 -msgid "Cross-Sells" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:535 -msgid "" -"Cross-sells are products which you promote in the cart, based on the current " -"product." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:545 -msgid "Choose a grouped product…" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:571 -msgid "Grouping" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:571 -msgid "Set this option to make this product part of a grouped product." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:591 -msgid "Purchase Note" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:591 -msgid "Enter an optional note to send the customer after purchase." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:598 -msgid "Menu order" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:598 -msgid "Custom ordering position." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:606 -msgid "Enable reviews" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:695 -msgid "Product SKU must be unique." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1028 -msgid "Catalog/search" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1035 -msgid "Catalog visibility:" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1051 -msgid "" -"Define the loops this product should be visible in. The product will still " -"be accessible directly." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1057 -msgid "Enable this option to feature this product." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1059 -msgid "Featured Product" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_data.php:1063 -msgid "OK" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -msgid "Delete image" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:42 -#: admin/post-types/writepanels/writepanel-product_images.php:102 -#: admin/woocommerce-admin-attributes.php:322 -msgid "Delete" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:53 -msgid "Add product gallery images" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:79 -msgid "Add Images to Product Gallery" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanel-product_images.php:81 -msgid "Add to gallery" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:47 -msgid "Product Gallery" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:55 -msgid "Product Short Description" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:68 -msgid "Order Data" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "Order Items" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:69 -msgid "" -"Note: if you edit quantities or remove items from the order you will need to " -"manually update stock levels." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "Downloadable Product Permissions" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:72 -msgid "" -"Note: Permissions for order items will automatically be granted when the " -"order status changes to processing/completed." -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:73 -msgid "Order Actions" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:81 -msgid "Coupon Data" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:101 -msgid "Product name" -msgstr "" - -# @ woocommerce -#: admin/post-types/writepanels/writepanels-init.php:185 -msgid "Allow reviews." -msgstr "" - -# @ default -#: admin/post-types/writepanels/writepanels-init.php:186 -#, php-format -msgid "" -"Allow trackbacks and pingbacks on this " -"page." -msgstr "" - -# @ default -#: admin/post-types/writepanels/writepanels-init.php:186 -msgid "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:23 -msgid "Styles" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:43 -msgid "Primary" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:43 -msgid "Call to action buttons/price slider/layered nav UI" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:44 -msgid "Secondary" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:44 -msgid "Buttons and tabs" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:45 -msgid "Highlight" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:45 -msgid "Price labels and Sale Flashes" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:46 -msgid "Content" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:46 -msgid "Your themes page background - used for tab active states" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:47 -msgid "Subtext" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:47 -msgid "Used for certain text and asides - breadcrumbs, small text etc." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-frontend-styles.php:51 -msgid "" -"To edit colours woocommerce/assets/css/woocommerce-base.less " -"and woocommerce.css need to be writable. See the Codex for more " -"information." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:18 -msgid "Localisation" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:19 -#, php-format -msgid "Use informal localisation for %s" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:33 -msgid "General Options" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:36 -msgid "Base Location" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:37 -msgid "" -"This is the base location for your business. Tax rates will be based on this " -"country." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:46 -msgid "Currency" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:47 -msgid "" -"This controls what currency prices are listed at in the catalog and which " -"currency gateways will take payments in." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:58 -msgid "Allowed Countries" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:59 -msgid "These are countries that you are willing to ship to." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:67 -msgid "All Countries" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:84 -msgid "Store Notice" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:85 -msgid "Enable site-wide store notice text" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:92 -msgid "Store Notice Text" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:102 -msgid "Cart, Checkout and Accounts" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:106 -msgid "Enable the use of coupons" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:110 -msgid "Coupons can be applied from the cart and checkout pages." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:115 -msgid "Enable guest checkout (no account required)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:123 -msgid "Enable customer note field on checkout" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:131 -msgid "Force secure checkout" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:137 -msgid "" -"Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required)." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:141 -msgid "Un-force HTTPS when leaving the checkout" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:150 -msgid "Registration" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:151 -msgid "Allow registration on the checkout page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:159 -msgid "Allow registration on the \"My Account\" page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:167 -msgid "Register using the email address for the username" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:175 -msgid "Customer Accounts" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:176 -msgid "Prevent customers from accessing WordPress admin" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:184 -msgid "Clear cart when logging out" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:192 -msgid "Allow customers to repurchase orders from their account page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:201 -msgid "Styles and Scripts" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:204 -msgid "Styling" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:205 -msgid "Enable WooCommerce CSS" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:216 -msgid "Scripts" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:217 -msgid "Enable Lightbox" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:220 -msgid "" -"Include WooCommerce's lightbox. Product gallery images and the add review " -"form will open in a lightbox." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:226 -msgid "Enable enhanced country select boxes" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:231 -msgid "This will enable a script allowing the country fields to be searchable." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:236 -msgid "Downloadable Products" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:239 -msgid "File Download Method" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:240 -msgid "" -"Forcing downloads will keep URLs hidden, but some servers may serve large " -"files unreliably. If supported, X-Accel-Redirect/ X-" -"Sendfile can be used to serve downloads instead (server requires " -"mod_xsendfile)." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:248 -msgid "Force Downloads" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:249 -msgid "X-Accel-Redirect/X-Sendfile" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:250 -msgid "Redirect only" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:255 -msgid "Access Restriction" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:256 -msgid "Downloads require login" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:260 -msgid "This setting does not apply to guest purchases." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:265 -msgid "Grant access to downloadable products after payment" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:269 -msgid "" -"Enable this option to grant access to downloads when orders are \"processing" -"\", rather than \"completed\"." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:285 -msgid "" -"Note: The shop page has children - child pages will not work if you enable " -"this option." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:290 -msgid "Page Setup" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:292 -#, php-format -msgid "" -"Set up core WooCommerce pages here, for example the base page. The base page " -"can also be used in your %sproduct permalinks%s." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:297 -msgid "Shop Base Page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:298 -msgid "" -"This sets the base page of your shop - this is where your product archive " -"will be." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:308 -msgid "Base Page Title" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:309 -msgid "" -"This title to show on the shop base page. Leave blank to use the page title." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:318 -msgid "Terms Page ID" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:319 -msgid "" -"If you define a \"Terms\" page the customer will be asked if they accept " -"them when checking out." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:330 -msgid "Shop Pages" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:330 -msgid "" -"The following pages need selecting so that WooCommerce knows where they are. " -"These pages should have been created upon installation of the plugin, if not " -"you will need to create them." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:333 -msgid "Cart Page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:334 -msgid "Page contents: [woocommerce_cart]" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:344 -msgid "Checkout Page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:345 -msgid "Page contents: [woocommerce_checkout]" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:355 -msgid "Pay Page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:356 -msgid "Page contents: [woocommerce_pay] Parent: \"Checkout\"" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:366 -msgid "Thanks Page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:367 -msgid "Page contents: [woocommerce_thankyou] Parent: \"Checkout\"" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:377 -msgid "My Account Page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:378 -msgid "Page contents: [woocommerce_my_account]" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:388 -msgid "Edit Address Page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:389 -msgid "Page contents: [woocommerce_edit_address] Parent: \"My Account\"" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:399 -msgid "View Order Page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:400 -msgid "Page contents: [woocommerce_view_order] Parent: \"My Account\"" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:410 -msgid "Change Password Page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:411 -msgid "Page contents: [woocommerce_change_password] Parent: \"My Account\"" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:421 -msgid "Logout Page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:422 -msgid "Parent: \"My Account\"" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:432 -msgid "Lost Password Page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:433 -msgid "Page contents: [woocommerce_lost_password] Parent: \"My Account\"" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:449 -msgid "Catalog Options" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:452 -msgid "Default Product Sorting" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:453 -msgid "This controls the default sort order of the catalog." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:459 -msgid "Default sorting (custom ordering + name)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:460 -msgid "Popularity (sales)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:461 -msgid "Average Rating" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:463 -msgid "Sort by price (asc)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:464 -msgid "Sort by price (desc)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:470 -msgid "Shop Page Display" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:471 -msgid "This controls what is shown on the product archive." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:477 admin/settings/settings-init.php:492 -msgid "Show products" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:478 admin/settings/settings-init.php:493 -msgid "Show subcategories" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:479 admin/settings/settings-init.php:494 -msgid "Show both" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:485 -msgid "Default Category Display" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:486 -msgid "This controls what is shown on category archives." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:501 -msgid "Redirect to the cart page after successful addition" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:509 -msgid "Enable AJAX add to cart buttons on archives" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:518 -msgid "" -"The following options affect the fields available on the edit product page." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:521 -msgid "Product Fields" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:522 -msgid "Enable the SKU field for products" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:530 -msgid "" -"Enable the weight field for products (some shipping methods " -"may require this)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:538 -msgid "" -"Enable the dimension fields for products (some shipping " -"methods may require this)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:546 -msgid "" -"Show weight and dimension values on the Additional " -"Information tab" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:554 -msgid "Weight Unit" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:555 -msgid "This controls what unit you will define weights in." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:561 -msgid "kg" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:562 -msgid "g" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:563 -msgid "lbs" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:564 -msgid "oz" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:570 -msgid "Dimensions Unit" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:571 -msgid "This controls what unit you will define lengths in." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:578 -msgid "cm" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:579 -msgid "mm" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:580 -msgid "in" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:581 -msgid "yd" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:587 -msgid "Product Ratings" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:588 -msgid "Enable ratings on reviews" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:597 -msgid "Ratings are required to leave a review" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:606 -msgid "Show \"verified owner\" label for customer reviews" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:616 -msgid "Pricing Options" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:616 -msgid "The following options affect how prices are displayed on the frontend." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:619 -msgid "Currency Position" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:620 -msgid "This controls the position of the currency symbol." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:626 -msgid "Left" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:627 -msgid "Right" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:628 -msgid "Left (with space)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:629 -msgid "Right (with space)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:635 -msgid "Thousand Separator" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:636 -msgid "This sets the thousand separator of displayed prices." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:645 -msgid "Decimal Separator" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:646 -msgid "This sets the decimal separator of displayed prices." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:655 -msgid "Number of Decimals" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:656 -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:669 -msgid "Trailing Zeros" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:670 -msgid "" -"Remove zeros after the decimal point. e.g. $10.00 becomes " -"$10" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:678 -msgid "Image Options" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:678 -#, php-format -msgid "" -"These settings affect the actual dimensions of images in your catalog - the " -"display on the front-end will still be affected by CSS styles. After " -"changing these settings you may need to regenerate your " -"thumbnails." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:681 -msgid "Catalog Images" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:682 -msgid "This size is usually used in product listings" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:695 -msgid "Single Product Image" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:696 -msgid "This is the size used by the main image on the product page." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:709 -msgid "Product Thumbnails" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:710 -msgid "" -"This size is usually used for the gallery of images on the product page." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:729 -msgid "Inventory Options" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:732 -msgid "Manage Stock" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:733 -msgid "Enable stock management" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:740 -msgid "Hold Stock (minutes)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:741 -msgid "" -"Hold stock (for unpaid orders) for x minutes. When this limit is reached, " -"the pending order will be cancelled. Leave blank to disable." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:753 -msgid "Notifications" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:754 -msgid "Enable low stock notifications" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:762 -msgid "Enable out of stock notifications" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:770 -msgid "Notification Recipient" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:778 -msgid "Low Stock Threshold" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:791 -msgid "Out Of Stock Threshold" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:804 -msgid "Out Of Stock Visibility" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:805 -msgid "Hide out of stock items from the catalog" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:812 -msgid "Stock Display Format" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:813 -msgid "This controls how stock is displayed on the frontend." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:819 -msgid "Always show stock e.g. \"12 in stock\"" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:820 -msgid "Only show stock when low e.g. \"Only 2 left in stock\" vs. \"In Stock\"" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:821 -msgid "Never show stock amount" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:836 -msgid "Shipping Calculations" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:837 -msgid "Enable shipping" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:845 -msgid "Enable the shipping calculator on the cart page" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:853 -msgid "Hide shipping costs until an address is entered" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:861 -msgid "Shipping Method Display" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:862 -msgid "" -"This controls how multiple shipping methods are displayed on the frontend." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:868 -msgid "Radio buttons" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:869 -msgid "Select box" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:875 -msgid "Shipping Destination" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:876 -msgid "Only ship to the users billing address" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:884 -msgid "Ship to billing address by default" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:892 -msgid "Collect shipping address even when not required" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:910 -#: admin/woocommerce-admin-settings.php:186 -#: admin/woocommerce-admin-settings.php:327 -msgid "Payment Gateways" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:910 -msgid "" -"Installed payment gateways are displayed below. Drag and drop payment " -"gateways to control their display order on the checkout." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:928 -#: admin/woocommerce-admin-settings.php:220 -msgid "Tax Options" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:931 -msgid "Enable Taxes" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:932 -msgid "Enable taxes and tax calculations" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:939 -msgid "Prices Entered With Tax" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:943 -msgid "" -"This option is important as it will affect how you input prices. Changing it " -"will not update existing products." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:945 -msgid "Yes, I will enter prices inclusive of tax" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:946 -msgid "No, I will enter prices exclusive of tax" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:951 -msgid "Calculate Tax Based On:" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:953 -msgid "This option determines which address is used to calculate tax." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:957 -msgid "Customer shipping address" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:958 -msgid "Customer billing address" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:959 admin/settings/settings-init.php:971 -msgid "Shop base address" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:964 -msgid "Default Customer Address:" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:966 -msgid "" -"This option determines the customers default address (before they input " -"their own)." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:970 -msgid "No address" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:976 -msgid "Shipping Tax Class:" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:977 -msgid "" -"Optionally control which tax class shipping gets, or leave it so shipping " -"tax is based on the cart items themselves." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:982 -msgid "Shipping tax class based on cart items" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:987 -msgid "Rounding" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:988 -msgid "Round tax at subtotal level, instead of rounding per line" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:995 -msgid "Additional Tax Classes" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:996 -msgid "" -"List additonal tax classes below (1 per line). This is in addition to the " -"default Standard Rate. Tax classes can be assigned to products." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1000 -#, php-format -msgid "Reduced Rate%sZero Rate" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1004 -msgid "Display prices during cart/checkout:" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1009 -msgid "Including tax" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1010 -msgid "Excluding tax" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1022 -msgid "Email Sender Options" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1022 -msgid "" -"The following options affect the sender (email address and name) used in " -"WooCommerce emails." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1025 -msgid "\"From\" Name" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1034 -msgid "\"From\" Email Address" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1047 -msgid "Email Template" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1047 -#, php-format -msgid "" -"This section lets you customise the WooCommerce emails. Click here to preview your email template. For more " -"advanced control copy woocommerce/templates/emails/ to " -"yourtheme/woocommerce/emails/." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1050 -msgid "Header Image" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1051 -#, php-format -msgid "" -"Enter a URL to an image you want to show in the email's header. Upload your " -"image using the media uploader." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1059 -msgid "Email Footer Text" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1060 -msgid "The text to appear in the footer of WooCommerce emails." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1064 -msgid "Powered by WooCommerce" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1068 -msgid "Base Colour" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1069 -msgid "" -"The base colour for WooCommerce email templates. Default #557da1." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1077 -msgid "Background Colour" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1078 -msgid "" -"The background colour for WooCommerce email templates. Default " -"#f5f5f5." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1086 -msgid "Email Body Background Colour" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1087 -msgid "The main body background colour. Default #fdfdfd." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1095 -msgid "Email Body Text Colour" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-init.php:1096 -msgid "The main body text colour. Default #505050." -msgstr "" - -# @ woocommerce -# @ default -#: admin/settings/settings-payment-gateways.php:27 -#: admin/settings/settings-shipping-methods.php:29 -#: admin/woocommerce-admin-init.php:767 -#: admin/woocommerce-admin-taxonomies.php:27 -#: admin/woocommerce-admin-taxonomies.php:121 -msgid "Default" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-payment-gateways.php:28 -msgid "Gateway" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-payment-gateways.php:45 -msgid "Gateway ID" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:23 -msgid "Shipping Methods" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:25 -msgid "Drag and drop methods to control their display order." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:30 -msgid "Shipping Method" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-shipping-methods.php:46 -msgid "Method ID" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:29 -#, php-format -msgid "Tax Rates for the \"%s\" Class" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:30 -#, php-format -msgid "" -"Define tax rates for countries and states below. See here " -"for available alpha-2 country codes." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:36 -msgid "Country Code" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:36 -msgid "A 2 digit country code, e.g. US. Leave blank to apply to all." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:38 -msgid "State Code" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:38 -msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:40 -#: admin/settings/settings-tax-rates.php:217 -msgid "ZIP/Postcode" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:40 -msgid "" -"Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all areas. Wildcards (*) can be used. Ranges for numeric " -"postcodes (e.g. 12345-12350) will be expanded into individual postcodes." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:42 -msgid "" -"Cities for this rule. Semi-colon (;) separate multiple values. Leave blank " -"to apply to all cities." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:44 -msgid "Rate %" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:44 -msgid "Enter a tax rate (percentage) to 4 decimal places." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:46 -msgid "Tax Name" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:46 -msgid "Enter a name for this tax rate." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:48 -#: admin/settings/settings-tax-rates.php:217 -msgid "Priority" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:48 -msgid "" -"Choose a priority for this tax rate. Only 1 matching rate per priority will " -"be used. To define multiple tax rates for a single area you need to specify " -"a different priority per rate." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:50 -#: admin/settings/settings-tax-rates.php:217 -msgid "Compound" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:50 -msgid "" -"Choose whether or not this is a compound rate. Compound tax rates are " -"applied on top of other tax rates." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:52 -msgid "Choose whether or not this tax rate also gets applied to shipping." -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:59 -msgid "Insert row" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:60 -msgid "Remove selected row(s)" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:62 -msgid "Export CSV" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:63 -msgid "Import CSV" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:163 -msgid "No row(s) selected" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Country Code" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "State Code" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Rate %" -msgstr "" - -# @ woocommerce -#: admin/settings/settings-tax-rates.php:217 -msgid "Tax Name" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:77 -msgid "Please, provide an attribute name, slug and type." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:79 -#, php-format -msgid "Slug “%s” is too long (28 characters max). Shorten it, please." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:81 -#, php-format -msgid "" -"Slug “%s” is not allowed because it is a reserved term. Change it, please." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:85 -#: admin/woocommerce-admin-attributes.php:90 -#, php-format -msgid "Slug “%s” is already in use. Change it, please." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:226 -msgid "Edit Attribute" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:236 -#: admin/woocommerce-admin-attributes.php:375 -msgid "Name for the attribute (shown on the front-end)." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:241 -#: admin/woocommerce-admin-attributes.php:307 -#: admin/woocommerce-admin-attributes.php:379 -msgid "Slug" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:245 -#: admin/woocommerce-admin-attributes.php:381 -msgid "" -"Unique slug/reference for the attribute; must be shorter than 28 characters." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:254 -#: admin/woocommerce-admin-attributes.php:387 -msgid "Select" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:255 -#: admin/woocommerce-admin-attributes.php:388 -msgid "Text" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:258 -#: admin/woocommerce-admin-attributes.php:391 -msgid "" -"Determines how you select attributes for products. Text " -"allows manual entry via the product page, whereas select " -"attribute terms can be defined from this section. If you plan on using an " -"attribute for variations use select." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:263 -#: admin/woocommerce-admin-attributes.php:395 -msgid "Default sort order" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:267 -#: admin/woocommerce-admin-attributes.php:335 -#: admin/woocommerce-admin-attributes.php:397 -msgid "Custom ordering" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:269 -#: admin/woocommerce-admin-attributes.php:332 -#: admin/woocommerce-admin-attributes.php:399 -msgid "Term ID" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:271 -#: admin/woocommerce-admin-attributes.php:401 -msgid "" -"Determines the sort order on the frontend for this attribute. If using " -"custom ordering, you can drag and drop the terms in this attribute" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:309 -msgid "Order by" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:310 -msgid "Terms" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:355 -msgid "Configure terms" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:359 -msgid "No attributes currently exist." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:369 -msgid "Add New Attribute" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:370 -msgid "" -"Attributes let you define extra product data, such as size or colour. You " -"can use these attributes in the shop sidebar using the \"layered nav\" " -"widgets. Please note: you cannot rename an attribute later on." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:404 -msgid "Add Attribute" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-attributes.php:415 -msgid "Are you sure you want to delete this attribute?" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:26 -#: admin/woocommerce-admin-reports.php:30 -#: admin/woocommerce-admin-reports.php:75 -#: admin/woocommerce-admin-reports.php:91 -#: admin/woocommerce-admin-reports.php:102 -msgid "Overview" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:29 -#, php-format -msgid "" -"Thank you for using WooCommerce :) Should you need help using or extending " -"WooCommerce please read the documentation. For further " -"assistance you can use the community forum or if you have " -"access, our support desk." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:31 -msgid "" -"If you are having problems, or to assist us with support, please check the " -"status page to identify any problems with your configuration:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:33 admin/woocommerce-admin-init.php:87 -#: admin/woocommerce-admin-status.php:26 -msgid "System Status" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:35 -#, php-format -msgid "" -"If you come across a bug, or wish to contribute to the project you can also " -"get involved on GitHub." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:43 -msgid "" -"Here you can set up your store and customise it to fit your needs. The " -"sections available from the settings page include:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:44 -msgid "" -"General settings such as your shop base, currency, and script/styling " -"options which affect features used in your store." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:45 -msgid "" -"This is where important store page are defined. You can also set up other " -"pages (such as a Terms page) here." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:46 -msgid "" -"Options for how things like price, images and weights appear in your product " -"catalog." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:47 -msgid "Options concerning stock and stock notices." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:48 -msgid "Options concerning tax, including international and local tax rates." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:49 -msgid "" -"This is where shipping options are defined, and shipping methods are set up." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:50 -msgid "Payment Methods" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:50 -msgid "" -"This is where payment gateway options are defined, and individual payment " -"gateways are set up." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:51 -#: admin/woocommerce-admin-settings.php:187 -msgid "Emails" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:51 -msgid "Here you can customise the way WooCommerce emails appear." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:52 -#: admin/woocommerce-admin-settings.php:188 -msgid "Integration" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:52 -msgid "" -"The integration section contains options for third party services which " -"integrate with WooCommerce." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:57 admin/woocommerce-admin-init.php:64 -msgid "Reports" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:59 -msgid "" -"The reports section can be accessed from the left-hand navigation menu. Here " -"you can generate reports for sales and customers." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:60 -#: admin/woocommerce-admin-reports.php:27 -#: admin/woocommerce-admin-reports.php:986 -#: admin/woocommerce-admin-reports.php:1082 -#: admin/woocommerce-admin-reports.php:1199 -msgid "Sales" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:60 -msgid "Reports for sales based on date, top sellers and top earners." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:61 -msgid "Coupon usage reports." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:62 -#: admin/woocommerce-admin-reports.php:88 -msgid "Customers" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:62 -msgid "Customer reports, such as signups per day." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:63 -msgid "Stock reports for low stock and out of stock items." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:70 -msgid "" -"The orders section can be accessed from the left-hand navigation menu. Here " -"you can view and manage customer orders." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:71 -msgid "" -"Orders can also be added from this section if you want to set them up for a " -"customer manually." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:78 -msgid "" -"Coupons can be managed from this section. Once added, customers will be able " -"to enter coupon codes on the cart/checkout page. If a customer uses a coupon " -"code they will be viewable when viewing orders." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:82 -msgid "For more information:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:84 -msgid "Project on WordPress.org" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:85 -msgid "Project on Github" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:86 -msgid "WooCommerce Docs" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:87 -msgid "Official Extensions" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-content.php:88 -msgid "Official Themes" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:40 -msgid "Monthly Sales" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:43 -msgid "WooCommerce Right Now" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:44 -msgid "WooCommerce Recent Orders" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:78 -msgid "Shop Content" -msgstr "" - -# @ woocommerce -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:84 -#: admin/woocommerce-admin-functions.php:194 -#: admin/woocommerce-admin-init.php:771 -#: admin/woocommerce-admin-reports.php:985 -#: admin/woocommerce-admin-reports.php:1081 templates/cart/cart.php:28 -#: templates/checkout/form-pay.php:19 templates/checkout/review-order.php:21 -#: templates/emails/admin-new-order.php:22 -#: templates/emails/customer-completed-order.php:23 -#: templates/emails/customer-invoice.php:27 -#: templates/emails/customer-note.php:27 -#: templates/emails/customer-processing-order.php:23 -#: templates/order/order-details.php:20 woocommerce.php:949 -msgid "Product" -msgid_plural "Products" -msgstr[0] "" -msgstr[1] "" - -# @ woocommerce -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:98 woocommerce.php:790 -msgid "Product Category" -msgid_plural "Product Categories" -msgstr[0] "" -msgstr[1] "" - -# @ woocommerce -#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code! -#: admin/woocommerce-admin-dashboard.php:112 woocommerce.php:826 -msgid "Product Tag" -msgid_plural "Product Tags" -msgstr[0] "" -msgstr[1] "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:126 -msgid "Attribute" -msgid_plural "Attributes" -msgstr[0] "" -msgstr[1] "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:148 -msgid "Pending" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:162 -msgid "On-Hold" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:190 -msgid "Completed" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:207 -#, php-format -msgid "You are using WooCommerce %s." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:238 -msgid "l jS \\of F Y h:i:s A" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:239 -msgid "item" -msgid_plural "items" -msgstr[0] "" -msgstr[1] "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:245 -msgid "There are no product orders yet." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:287 -msgid "There are no product reviews yet." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:428 -msgid "Sold" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-dashboard.php:429 -msgid "Earned" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:184 -#: admin/woocommerce-admin-install.php:222 -msgid "Order Received" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:186 -msgid "" -"Thank you, we are now processing your order. Your order's details are below." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:208 -msgid "Order total:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:459 -msgid "Could not compile woocommerce.less:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:480 -#: admin/woocommerce-admin-functions.php:481 -msgid "Mark processing" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:483 -#: admin/woocommerce-admin-functions.php:484 -msgid "Mark completed" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-functions.php:521 -msgid "Order status changed by bulk edit:" -msgstr "" - -# @ default -#: admin/woocommerce-admin-functions.php:544 -#, php-format -msgid "Order status changed." -msgid_plural "%s order statuses changed." -msgstr[0] "" -msgstr[1] "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:86 -msgid "WooCommerce Settings" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:87 -msgid "WooCommerce Status" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:446 -msgid "" -"Are you sure you want to remove the selected items? If you have previously " -"reduced this item's stock, or this order was submitted by a customer, you " -"will need to manually restore the item's stock." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:447 -msgid "Please select some items." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:448 -msgid "Remove this item meta?" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:449 -msgid "Remove this attribute?" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:457 -msgid "Enter a name for the new attribute term:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:458 -msgid "Calculate totals based on order items, discounts, and shipping?" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:459 -msgid "" -"Calculate line taxes? This will calculate taxes based on the customers " -"country. If no billing/shipping is set it will use the store base country." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:460 -msgid "" -"Copy billing information to shipping information? This will remove any " -"currently entered shipping information." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:461 -msgid "" -"Load the customer's billing information? This will remove any currently " -"entered billing information." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:462 -msgid "" -"Load the customer's shipping information? This will remove any currently " -"entered shipping information." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:466 -msgid "No customer selected" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:675 -#, php-format -msgid "Product updated. View Product" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:676 admin/woocommerce-admin-init.php:691 -#: admin/woocommerce-admin-init.php:706 -msgid "Custom field updated." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:677 admin/woocommerce-admin-init.php:692 -#: admin/woocommerce-admin-init.php:707 -msgid "Custom field deleted." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:678 -msgid "Product updated." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:679 -#, php-format -msgid "Product restored to revision from %s" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:680 -#, php-format -msgid "Product published. View Product" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:681 -msgid "Product saved." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:682 -#, php-format -msgid "Product submitted. Preview Product" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:683 -#, php-format -msgid "" -"Product scheduled for: %1$s. Preview Product" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:684 admin/woocommerce-admin-init.php:699 -#: admin/woocommerce-admin-init.php:714 -msgid "M j, Y @ G:i" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:685 -#, php-format -msgid "" -"Product draft updated. Preview Product" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:690 admin/woocommerce-admin-init.php:693 -#: admin/woocommerce-admin-init.php:695 -msgid "Order updated." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:694 -#, php-format -msgid "Order restored to revision from %s" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:696 -msgid "Order saved." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:697 -msgid "Order submitted." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:698 -#, php-format -msgid "Order scheduled for: %1$s." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:700 -msgid "Order draft updated." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:705 admin/woocommerce-admin-init.php:708 -#: admin/woocommerce-admin-init.php:710 -msgid "Coupon updated." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:709 -#, php-format -msgid "Coupon restored to revision from %s" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:711 -msgid "Coupon saved." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:712 -msgid "Coupon submitted." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:713 -#, php-format -msgid "Coupon scheduled for: %1$s." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:715 -msgid "Coupon draft updated." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:732 -msgid "Order notes" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:747 -msgid "" -"These settings control the permalinks used for products. These settings only " -"apply when not using \"default\" permalinks above." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:754 -msgctxt "default-slug" -msgid "shop" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:755 -msgctxt "default-slug" -msgid "product" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:776 -msgid "Shop base" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:780 -msgid "Shop base with category" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:786 -msgid "Custom Base" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:788 -msgid "" -"Enter a custom base to use. A base must be set or WordPress " -"will use default instead." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:816 -msgid "Product permalink base" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:821 -msgid "Product category base" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:828 -msgid "Product tag base" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-init.php:835 -msgid "Product attribute base" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:192 -msgctxt "page_slug" -msgid "shop" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:192 -msgid "Shop" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:195 -msgctxt "page_slug" -msgid "cart" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:198 -msgctxt "page_slug" -msgid "checkout" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:201 -msgctxt "page_slug" -msgid "my-account" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:207 -msgctxt "page_slug" -msgid "edit-address" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:207 -msgid "Edit My Address" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:210 -msgctxt "page_slug" -msgid "view-order" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:213 -msgctxt "page_slug" -msgid "change-password" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:216 -msgctxt "page_slug" -msgid "logout" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:219 -msgctxt "page_slug" -msgid "pay" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:219 -msgid "Checkout → Pay" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-install.php:222 -msgctxt "page_slug" -msgid "order-received" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:36 -msgid "Sales by day" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:41 -msgid "Sales by month" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:46 -msgid "Taxes by month" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:51 -msgid "Product Sales" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:56 -msgid "Top sellers" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:61 -msgid "Top earners" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:66 -msgid "Sales by category" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:81 -msgid "Discounts by coupon" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:232 -#: admin/woocommerce-admin-reports.php:497 -#: admin/woocommerce-admin-reports.php:702 -#: admin/woocommerce-admin-reports.php:883 -msgid "Sales amount" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:237 -#: admin/woocommerce-admin-reports.php:497 -#: admin/woocommerce-admin-reports.php:702 -#: admin/woocommerce-admin-reports.php:883 -msgid "Number of sales" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:369 -msgid "Total sales" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:371 -#: admin/woocommerce-admin-reports.php:377 -#: admin/woocommerce-admin-reports.php:383 -#: admin/woocommerce-admin-reports.php:389 -#: admin/woocommerce-admin-reports.php:395 -#: admin/woocommerce-admin-reports.php:401 -#: admin/woocommerce-admin-reports.php:644 -#: admin/woocommerce-admin-reports.php:650 -#: admin/woocommerce-admin-reports.php:656 -#: admin/woocommerce-admin-reports.php:662 -#: admin/woocommerce-admin-reports.php:828 -#: admin/woocommerce-admin-reports.php:834 -#: admin/woocommerce-admin-reports.php:840 -#: admin/woocommerce-admin-reports.php:846 -#: admin/woocommerce-admin-reports.php:1364 -#: admin/woocommerce-admin-reports.php:1370 -#: admin/woocommerce-admin-reports.php:1376 -#: admin/woocommerce-admin-reports.php:1810 -#: admin/woocommerce-admin-reports.php:1816 -#: admin/woocommerce-admin-reports.php:1822 -#: admin/woocommerce-admin-reports.php:1828 -#: admin/woocommerce-admin-reports.php:1834 -#: admin/woocommerce-admin-reports.php:1840 -#: admin/woocommerce-admin-reports.php:2304 -#: admin/woocommerce-admin-reports.php:2315 -#: admin/woocommerce-admin-reports.php:2326 -msgid "n/a" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:375 -msgid "Total orders" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:377 -#: admin/woocommerce-admin-reports.php:650 -#: admin/woocommerce-admin-reports.php:834 -msgid "items" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:381 -msgid "Average order total" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:387 -msgid "Average order items" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:393 -msgid "Discounts used" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:399 -msgid "Total shipping costs" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:407 -msgid "This month's sales" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1356 -msgid "From:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1356 -msgid "To:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:636 -#: admin/woocommerce-admin-reports.php:821 -#: admin/woocommerce-admin-reports.php:980 -#: admin/woocommerce-admin-reports.php:1076 -#: admin/woocommerce-admin-reports.php:1229 -#: admin/woocommerce-admin-reports.php:1356 -#: admin/woocommerce-admin-reports.php:1489 -#: admin/woocommerce-admin-reports.php:2293 -#: admin/woocommerce-admin-reports.php:2476 -msgid "Show" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:642 -msgid "Total sales in range" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:648 -msgid "Total orders in range" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:654 -msgid "Average order total in range" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:660 -msgid "Average order items in range" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:668 -msgid "Sales in range" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:815 -#: admin/woocommerce-admin-reports.php:2287 -msgid "Year:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:826 -msgid "Total sales for year" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:832 -msgid "Total orders for year" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:838 -msgid "Average order total for year" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:844 -msgid "Average order items for year" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:852 -msgid "Monthly sales for year" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1000 -msgid "Product does not exist" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1097 -msgid "Product no longer exists" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1194 -#, php-format -msgid "Sales for %s:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1198 -#: admin/woocommerce-admin-reports.php:2335 -msgid "Month" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1219 -msgid "No sales :(" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1362 -msgid "Total orders containing coupons" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1368 -msgid "Percent of orders containing coupons" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1374 -msgid "Total coupon discount" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1383 -msgid "Most popular coupons" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1393 -#, php-format -msgid "Used 1 time" -msgid_plural "Used %d times" -msgstr[0] "" -msgstr[1] "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1396 -#: admin/woocommerce-admin-reports.php:1418 -msgid "No coupons found" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1405 -msgid "Greatest discount amount" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1415 -#, php-format -msgid "Discounted %s" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1474 -#: admin/woocommerce-admin-reports.php:2453 -msgid "Show:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1614 -msgid "Top coupon" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1622 -msgid "Worst coupon" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1630 -msgid "Discount average" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1638 -msgid "Discount median" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1658 -msgid "Monthly discounts by coupon" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1808 -msgid "Total customers" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1814 -msgid "Total customer sales" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1820 -msgid "Total guest sales" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1826 -msgid "Total customer orders" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1832 -msgid "Total guest orders" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1838 -msgid "Average orders per customer" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:1846 -msgid "Signups per day" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2067 -msgid "Low stock" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2090 -#: admin/woocommerce-admin-reports.php:2129 -#, php-format -msgid "%d in stock" -msgid_plural "%d in stock" -msgstr[0] "" -msgstr[1] "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2095 -msgid "No products are low in stock." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2127 -msgid "Marked out of stock" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2134 -msgid "No products are out in stock." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2298 -msgid "Total taxes for year" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2309 -msgid "Total product taxes for year" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2320 -msgid "Total shipping tax for year" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2336 -msgid "Total Sales" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2336 -msgid "This is the sum of the 'Order Total' field within your orders." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2337 -msgid "Total Shipping" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2337 -msgid "This is the sum of the 'Shipping Total' field within your orders." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2338 -msgid "Total Product Taxes" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2338 -msgid "This is the sum of the 'Cart Tax' field within your orders." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2339 -msgid "Total Shipping Taxes" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2339 -msgid "This is the sum of the 'Shipping Tax' field within your orders." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2340 -msgid "Total Taxes" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2340 -msgid "" -"This is the sum of the 'Cart Tax' and 'Shipping Tax' fields within your " -"orders." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2341 -msgid "Net profit" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2341 -msgid "Total sales minus shipping and tax." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2386 -msgid "Toggle tax rows" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2529 -msgid "Category" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2632 -msgid "Top category" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2641 -msgid "Worst category" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2649 -msgid "Category sales average" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2660 -msgid "Category sales median" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-reports.php:2680 -msgid "Monthly sales by category" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:162 -msgid "Your settings have been saved." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:208 -#, php-format -msgid "" -"More functionality and gateway options available via WC official extensions." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:226 -msgid "Tax Rates" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:253 -msgid "Email Options" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:427 -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:799 -msgid "Hard Crop" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:824 -msgid "Select a page…" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:847 -msgid "Choose a country…" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-settings.php:867 -msgid "Choose countries…" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:27 -#: admin/woocommerce-admin-status.php:622 -msgid "Tools" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:62 -msgid "Please include this information when requesting support:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:63 -msgid "Download System Report File" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:71 -msgid "Environment" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:77 -msgid "Home URL" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:81 -msgid "Site URL" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:85 -msgid "WC Version" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:89 -msgid "WC Database Version" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:93 -msgid "WP Version" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:97 -msgid "Web Server Info" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:101 -msgid "PHP Version" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:105 -msgid "MySQL Version" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:109 -msgid "WP Memory Limit" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:114 -#, php-format -msgid "" -"%s - We recommend setting memory to at least 64MB. See: Increasing memory allocated to PHP" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:121 -msgid "WP Debug Mode" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:125 -msgid "WP Max Upload Size" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:129 -msgid "PHP Post Max Size" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:133 -msgid "PHP Time Limit" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:137 -msgid "WC Logging" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:140 -msgid "Log directory is writable." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:142 -msgid "" -"Log directory (woocommerce/logs/) is not writable. Logging will " -"not be possible." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:149 -msgid "fsockopen/cURL" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:152 -msgid "Your server has fsockopen and cURL enabled." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:154 -msgid "Your server has fsockopen enabled, cURL is disabled." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:156 -msgid "Your server has cURL enabled, fsockopen is disabled." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:160 -msgid "" -"Your server does not have fsockopen or cURL enabled - PayPal IPN and other " -"scripts which communicate with other servers will not work. Contact your " -"hosting provider." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:165 -msgid "SOAP Client" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:167 -msgid "Your server has the SOAP Client class enabled." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:170 -#, php-format -msgid "" -"Your server does not have the SOAP Client class enabled - " -"some gateway plugins which use SOAP may not work as expected." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:175 -msgid "WP Remote Post" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:186 -msgid "wp_remote_post() was successful - PayPal IPN is working." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:189 -msgid "" -"wp_remote_post() failed. PayPal IPN won't work with your server. Contact " -"your hosting provider. Error:" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:192 -msgid "wp_remote_post() failed. PayPal IPN may not work with your server." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:215 -msgid "Plugins" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:221 -msgid "Installed Plugins" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:236 -msgid "by" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:236 -msgid "version" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:259 -msgid "Force SSL" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:266 -msgid "WC Pages" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:273 -msgid "Shop Base" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:289 -msgid "Thanks" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:329 -msgid "Page not set" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:339 -msgid "Page does not exist" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:344 -#, php-format -msgid "Page does not contain the shortcode: %s" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:363 -msgid "WC Taxonomies" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:369 -msgid "Order Statuses" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:379 -msgid "Product Types" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:392 -msgid "Templates" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:398 -msgid "Template Overrides" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:416 -msgid "No core overrides present in theme." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:510 -msgid "WC Transients" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:511 -msgid "Clear transients" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:512 -msgid "This tool will clear the product/shop transients cache." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:515 -msgid "Expired Transients" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:516 -msgid "Clear expired transients" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:517 -msgid "This tool will clear ALL expired transients from Wordpress." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:520 -msgid "Term counts" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:521 -msgid "Recount terms" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:522 -msgid "" -"This tool will recount product terms - useful when changing your settings in " -"a way which hides products from the catalog." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:525 -msgid "Capabilities" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:526 -msgid "Reset capabilities" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:527 -msgid "" -"This tool will reset the admin, customer and shop_manager roles to default. " -"Use this if your users cannot access all of the WooCommerce admin pages." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:537 -msgid "Product Transients Cleared" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:578 -#, php-format -msgid "%d Transients Rows Cleared" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:586 -msgid "Roles successfully reset" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:598 -msgid "Terms successfully recounted" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:607 -#, php-format -msgid "There was an error calling %s::%s" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-status.php:610 -#, php-format -msgid "There was an error calling %s" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:25 -#: admin/woocommerce-admin-taxonomies.php:118 -msgid "Display type" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:29 -#: admin/woocommerce-admin-taxonomies.php:123 -msgid "Subcategories" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:30 -#: admin/woocommerce-admin-taxonomies.php:124 -msgid "Both" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:34 -#: admin/woocommerce-admin-taxonomies.php:129 -msgid "Thumbnail" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:38 -#: admin/woocommerce-admin-taxonomies.php:134 -msgid "Upload/Add image" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:39 -#: admin/woocommerce-admin-taxonomies.php:135 -msgid "Remove image" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:64 -#: admin/woocommerce-admin-taxonomies.php:156 -msgid "Use image" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:222 -msgid "" -"Product categories for your store can be managed here. To change the order " -"of categories on the front-end you can drag and drop to sort them. To see " -"more categories listed click the \"screen options\" link at the top of the " -"page." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:237 -msgid "" -"Shipping classes can be used to group products of similar type. These groups " -"can then be used by certain shipping methods to provide different rates to " -"different products." -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-taxonomies.php:365 -msgid "Configure shipping class" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:28 -msgid "Paying Customer?" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:29 -msgid "Completed Orders" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:144 -msgid "Customer Billing Address" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:147 admin/woocommerce-admin-users.php:196 -msgid "First name" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:151 admin/woocommerce-admin-users.php:200 -msgid "Last name" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:176 -msgid "Country or state code" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:180 admin/woocommerce-admin-users.php:229 -msgid "2 letter Country code" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:183 -msgid "Telephone" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:193 -msgid "Customer Shipping Address" -msgstr "" - -# @ woocommerce -#: admin/woocommerce-admin-users.php:225 -msgid "State/County or state code" -msgstr "" - -# @ woocommerce -#: classes/abstracts/abstract-wc-product.php:33 -msgid "" -"The WC_Product class is now abstract. Use get_product() to instantiate an instance of a product instead of calling this class " -"directly." -msgstr "" - -# @ woocommerce -#: classes/class-wc-countries.php:58 -msgid "Belau" -msgstr "" - -# @ woocommerce -#: classes/class-wc-coupon.php:420 -msgid "Coupon code applied successfully." -msgstr "" - -# @ woocommerce -#: classes/class-wc-coupon.php:441 -msgid "Coupon is not valid." -msgstr "" - -# @ woocommerce -#: classes/class-wc-coupon.php:453 -msgid "Coupon code already applied!" -msgstr "" - -# @ woocommerce -#: classes/class-wc-coupon.php:456 -#, php-format -msgid "" -"Sorry, coupon \"%s\" has already been applied and cannot be used in " -"conjunction with other coupons." -msgstr "" - -# @ woocommerce -#: classes/class-wc-coupon.php:471 -msgid "Sorry, this coupon is not valid for sale items." -msgstr "" - -# @ woocommerce -#: classes/gateways/cod/class-wc-gateway-cod.php:97 -#: classes/gateways/cod/class-wc-gateway-cod.php:103 -msgid "Pay with cash upon delivery." -msgstr "" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:148 -msgid "" -"Please enter a prefix for your invoice numbers. If you use your PayPal " -"account for multiple stores ensure this prefix is unique as PayPal will not " -"allow orders with the same invoice number." -msgstr "" - -# @ woocommerce -#: classes/gateways/paypal/class-wc-gateway-paypal.php:165 -msgid "Optional" -msgstr "" - -# @ woocommerce -#: classes/integrations/shareyourcart/class-wc-shareyourcart.php:23 -msgid "" -"Increase your social media exposure by 10 percent! ShareYourCart helps you " -"get more customers by motivating satisfied customers to talk with their " -"friends about your products. For help with ShareYourCart view the documentation." -msgstr "" - -# @ woocommerce -#: classes/shipping/flat-rate/class-wc-shipping-flat-rate.php:176 -msgid "Option Name|Cost|Per-order (yes or no)" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:13 -msgid "Bács-Kiskun" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:14 -msgid "Békés" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:15 -msgid "Baranya" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:16 -msgid "Borsod-Abaúj-Zemplén" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:17 -msgid "Budapest" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:18 -msgid "Csongrád" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:19 -msgid "Fejér" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:20 -msgid "Győr-Moson-Sopron" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:21 -msgid "Hajdú-Bihar" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:22 -msgid "Heves" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:23 -msgid "Jász-Nagykun-Szolnok" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:24 -msgid "Komárom-Esztergom" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:25 -msgid "Nógrád" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:26 -msgid "Pest" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:27 -msgid "Somogy" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:28 -msgid "Szabolcs-Szatmár-Bereg" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:29 -msgid "Tolna" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:30 -msgid "Vas" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:31 -msgid "Veszprém" -msgstr "" - -# @ woocommerce -#: i18n/states/HU.php:32 -msgid "Zala" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:13 -msgid "Daerah Istimewa Aceh" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:14 -msgid "Sumatera Utara" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:15 -msgid "Sumatera Barat" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:16 -msgid "Riau" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:17 -msgid "Kepulauan Riau" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:18 -msgid "Jambi" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:19 -msgid "Sumatera Selatan" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:20 -msgid "Bangka Belitung" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:21 -msgid "Bengkulu" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:22 -msgid "Lampung" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:23 -msgid "DKI Jakarta" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:24 -msgid "Jawa Barat" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:25 -msgid "Banten" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:26 -msgid "Jawa Tengah" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:27 -msgid "Jawa Timur" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:28 -msgid "Daerah Istimewa Yogyakarta" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:29 -msgid "Bali" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:30 -msgid "Nusa Tenggara Barat" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:31 -msgid "Nusa Tenggara Timur" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:32 -msgid "Kalimantan Barat" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:33 -msgid "Kalimantan Tengah" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:34 -msgid "Kalimantan Timur" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:35 -msgid "Kalimantan Selatan" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:36 -msgid "Kalimantan Utara" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:37 -msgid "Sulawesi Utara" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:38 -msgid "Sulawesi Tengah" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:39 -msgid "Sulawesi Tenggara" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:40 -msgid "Sulawesi Barat" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:41 -msgid "Sulawesi Selatan" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:42 -msgid "Gorontalo" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:43 -msgid "Maluku" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:44 -msgid "Maluku Utara" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:45 -msgid "Papua" -msgstr "" - -# @ woocommerce -#: i18n/states/ID.php:46 -msgid "Papua Barat" -msgstr "" - -# @ woocommerce -#: i18n/states/US.php:72 -msgid "US Virgin Islands" -msgstr "" - -# @ woocommerce -#: templates/checkout/form-login.php:14 -msgid "Returning customer?" -msgstr "" - -# @ woocommerce -#: templates/loop/orderby.php:22 -msgid "Sort by popularity" -msgstr "" - -# @ woocommerce -#: templates/loop/orderby.php:23 -msgid "Sort by average rating" -msgstr "" - -# @ woocommerce -#: templates/loop/orderby.php:24 -msgid "Sort by newness" -msgstr "" - -# @ woocommerce -#: templates/loop/orderby.php:25 -msgid "Sort by price: low to high" -msgstr "" - -# @ woocommerce -#: templates/loop/orderby.php:26 -msgid "Sort by price: high to low" -msgstr "" - -# @ woocommerce -#: templates/myaccount/my-orders.php:62 -#, php-format -msgid "%s for %s item" -msgid_plural "%s for %s items" -msgstr[0] "" -msgstr[1] "" - -# @ woocommerce -#: templates/single-product-reviews.php:78 -msgid "Add Your Review" -msgstr "" - -# @ woocommerce -#: woocommerce-ajax.php:1172 -msgid "" -"No products had their stock reduced - they may not have stock management " -"enabled." -msgstr "" - -# @ woocommerce -#: woocommerce-ajax.php:1223 -msgid "" -"No products had their stock increased - they may not have stock management " -"enabled." -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:268 -#, php-format -msgid "%s – %s%s" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:675 -msgid "Australian Dollars" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:676 -msgid "Brazilian Real" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:677 -msgid "Canadian Dollars" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:678 -msgid "Chinese Yuan" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:679 -msgid "Czech Koruna" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:680 -msgid "Danish Krone" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:681 -msgid "Euros" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:682 -msgid "Hong Kong Dollar" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:683 -msgid "Hungarian Forint" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:684 -msgid "Indonesia Rupiah" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:685 -msgid "Israeli Shekel" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:686 -msgid "Japanese Yen" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:687 -msgid "Malaysian Ringgits" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:688 -msgid "Mexican Peso" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:689 -msgid "Norwegian Krone" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:690 -msgid "New Zealand Dollar" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:691 -msgid "Philippine Pesos" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:692 -msgid "Polish Zloty" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:693 -msgid "Pounds Sterling" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:694 -msgid "Romanian Leu" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:695 -msgid "Singapore Dollar" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:696 -msgid "South African rand" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:697 -msgid "Swedish Krona" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:698 -msgid "Swiss Franc" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:699 -msgid "Taiwan New Dollars" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:700 -msgid "Thai Baht" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:701 -msgid "Turkish Lira" -msgstr "" - -# @ woocommerce -#: woocommerce-core-functions.php:702 -msgid "US Dollars" -msgstr "" - -# @ woocommerce -#: woocommerce-functions.php:996 -msgid "No file defined" -msgstr "" - -# @ woocommerce -#: woocommerce-functions.php:1575 -msgid "Password changed successfully." -msgstr "" - -# @ woocommerce -#: woocommerce-functions.php:1651 -msgid "Address changed successfully." -msgstr "" - -# @ woocommerce -#: woocommerce-template.php:764 -#, php-format -msgid "Reviews (%d)" -msgstr "" - -# @ woocommerce -#. translators: plugin header field 'PluginURI' -#: woocommerce.php:0 -msgid "http://www.woothemes.com/woocommerce/" -msgstr "" - -# @ woocommerce -#. translators: plugin header field 'Description' -#: woocommerce.php:0 -msgid "An e-commerce toolkit that helps you sell anything. Beautifully." -msgstr "" - -# @ woocommerce -#. translators: plugin header field 'Author' -#: woocommerce.php:0 -msgid "WooThemes" -msgstr "" - -# @ woocommerce -#. translators: plugin header field 'AuthorURI' -#: woocommerce.php:0 -msgid "http://woothemes.com" -msgstr "" - -# @ woocommerce -#. translators: plugin header field 'Version' -#: woocommerce.php:0 -msgid "2.0.0" -msgstr "" diff --git a/i18n/languages/woocommerce.pot b/i18n/languages/woocommerce.pot index 8693ea66e30..924933a49d4 100644 --- a/i18n/languages/woocommerce.pot +++ b/i18n/languages/woocommerce.pot @@ -1,70 +1,992 @@ +# Copyright (C) 2014 WooThemes +# This file is distributed under the same license as the WooCommerce package. msgid "" msgstr "" -"Project-Id-Version: WooCommerce 2.1-beta-2 Front-end\n" +"Project-Id-Version: WooCommerce 2.2.4 Frontend\n" "Report-Msgid-Bugs-To: https://github.com/woothemes/woocommerce/issues\n" -"POT-Creation-Date: 2013-12-23 15:38:01+00:00\n" +"POT-Creation-Date: 2014-09-18 12:40:24+00:00\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"PO-Revision-Date: 2013-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2014-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" +"X-Generator: grunt-wp-i18n 0.4.8\n" -#: assets/js/admin/editor_plugin_lang.php:5 -msgid "Insert Shortcode" +#: i18n/countries.php:16 +msgid "Afghanistan" msgstr "" -#: assets/js/admin/editor_plugin_lang.php:6 -msgid "Product price/cart button" +#: i18n/countries.php:17 +msgid "Åland Islands" msgstr "" -#: assets/js/admin/editor_plugin_lang.php:7 -msgid "Product by SKU/ID" +#: i18n/countries.php:18 +msgid "Albania" msgstr "" -#: assets/js/admin/editor_plugin_lang.php:8 -msgid "Products by SKU/ID" +#: i18n/countries.php:19 +msgid "Algeria" msgstr "" -#: assets/js/admin/editor_plugin_lang.php:9 -msgid "Product categories" +#: i18n/countries.php:20 +msgid "Andorra" msgstr "" -#: assets/js/admin/editor_plugin_lang.php:10 -msgid "Products by category slug" +#: i18n/countries.php:21 +msgid "Angola" msgstr "" -#: assets/js/admin/editor_plugin_lang.php:11 -msgid "Recent products" +#: i18n/countries.php:22 +msgid "Anguilla" msgstr "" -#: assets/js/admin/editor_plugin_lang.php:12 -msgid "Featured products" +#: i18n/countries.php:23 +msgid "Antarctica" msgstr "" -#: assets/js/admin/editor_plugin_lang.php:13 -msgid "Shop Messages" +#: i18n/countries.php:24 +msgid "Antigua and Barbuda" msgstr "" -#: assets/js/admin/editor_plugin_lang.php:14 -msgid "Order tracking" +#: i18n/countries.php:25 +msgid "Argentina" msgstr "" -#: assets/js/admin/editor_plugin_lang.php:15 includes/class-wc-install.php:225 -#: includes/shortcodes/class-wc-shortcode-checkout.php:86 -#: includes/shortcodes/class-wc-shortcode-my-account.php:106 -#: includes/shortcodes/class-wc-shortcode-view-order.php:49 -#: templates/checkout/thankyou.php:30 -msgid "My Account" +#: i18n/countries.php:26 +msgid "Armenia" msgstr "" -#: classes/class-wc-product-variable.php:273 -#: classes/class-wc-product-variable.php:282 -#: includes/abstracts/abstract-wc-product.php:909 -#: includes/abstracts/abstract-wc-product.php:915 -#: includes/class-wc-cart.php:1387 includes/class-wc-order.php:800 -#: includes/class-wc-product-variation.php:312 -msgid "Free!" +#: i18n/countries.php:27 +msgid "Aruba" +msgstr "" + +#: i18n/countries.php:28 +msgid "Australia" +msgstr "" + +#: i18n/countries.php:29 +msgid "Austria" +msgstr "" + +#: i18n/countries.php:30 +msgid "Azerbaijan" +msgstr "" + +#: i18n/countries.php:31 +msgid "Bahamas" +msgstr "" + +#: i18n/countries.php:32 +msgid "Bahrain" +msgstr "" + +#: i18n/countries.php:33 +msgid "Bangladesh" +msgstr "" + +#: i18n/countries.php:34 +msgid "Barbados" +msgstr "" + +#: i18n/countries.php:35 +msgid "Belarus" +msgstr "" + +#: i18n/countries.php:36 +msgid "Belgium" +msgstr "" + +#: i18n/countries.php:37 +msgid "Belau" +msgstr "" + +#: i18n/countries.php:38 +msgid "Belize" +msgstr "" + +#: i18n/countries.php:39 +msgid "Benin" +msgstr "" + +#: i18n/countries.php:40 +msgid "Bermuda" +msgstr "" + +#: i18n/countries.php:41 +msgid "Bhutan" +msgstr "" + +#: i18n/countries.php:42 +msgid "Bolivia" +msgstr "" + +#: i18n/countries.php:43 +msgid "Bonaire, Saint Eustatius and Saba" +msgstr "" + +#: i18n/countries.php:44 +msgid "Bosnia and Herzegovina" +msgstr "" + +#: i18n/countries.php:45 +msgid "Botswana" +msgstr "" + +#: i18n/countries.php:46 +msgid "Bouvet Island" +msgstr "" + +#: i18n/countries.php:47 +msgid "Brazil" +msgstr "" + +#: i18n/countries.php:48 +msgid "British Indian Ocean Territory" +msgstr "" + +#: i18n/countries.php:49 +msgid "British Virgin Islands" +msgstr "" + +#: i18n/countries.php:50 +msgid "Brunei" +msgstr "" + +#: i18n/countries.php:51 +msgid "Bulgaria" +msgstr "" + +#: i18n/countries.php:52 +msgid "Burkina Faso" +msgstr "" + +#: i18n/countries.php:53 +msgid "Burundi" +msgstr "" + +#: i18n/countries.php:54 +msgid "Cambodia" +msgstr "" + +#: i18n/countries.php:55 +msgid "Cameroon" +msgstr "" + +#: i18n/countries.php:56 +msgid "Canada" +msgstr "" + +#: i18n/countries.php:57 +msgid "Cape Verde" +msgstr "" + +#: i18n/countries.php:58 +msgid "Cayman Islands" +msgstr "" + +#: i18n/countries.php:59 +msgid "Central African Republic" +msgstr "" + +#: i18n/countries.php:60 +msgid "Chad" +msgstr "" + +#: i18n/countries.php:61 +msgid "Chile" +msgstr "" + +#: i18n/countries.php:62 +msgid "China" +msgstr "" + +#: i18n/countries.php:63 +msgid "Christmas Island" +msgstr "" + +#: i18n/countries.php:64 +msgid "Cocos (Keeling) Islands" +msgstr "" + +#: i18n/countries.php:65 +msgid "Colombia" +msgstr "" + +#: i18n/countries.php:66 +msgid "Comoros" +msgstr "" + +#: i18n/countries.php:67 +msgid "Congo (Brazzaville)" +msgstr "" + +#: i18n/countries.php:68 +msgid "Congo (Kinshasa)" +msgstr "" + +#: i18n/countries.php:69 +msgid "Cook Islands" +msgstr "" + +#: i18n/countries.php:70 +msgid "Costa Rica" +msgstr "" + +#: i18n/countries.php:71 +msgid "Croatia" +msgstr "" + +#: i18n/countries.php:72 +msgid "Cuba" +msgstr "" + +#: i18n/countries.php:73 +msgid "CuraÇao" +msgstr "" + +#: i18n/countries.php:74 +msgid "Cyprus" +msgstr "" + +#: i18n/countries.php:75 +msgid "Czech Republic" +msgstr "" + +#: i18n/countries.php:76 +msgid "Denmark" +msgstr "" + +#: i18n/countries.php:77 +msgid "Djibouti" +msgstr "" + +#: i18n/countries.php:78 +msgid "Dominica" +msgstr "" + +#: i18n/countries.php:79 +msgid "Dominican Republic" +msgstr "" + +#: i18n/countries.php:80 +msgid "Ecuador" +msgstr "" + +#: i18n/countries.php:81 +msgid "Egypt" +msgstr "" + +#: i18n/countries.php:82 +msgid "El Salvador" +msgstr "" + +#: i18n/countries.php:83 +msgid "Equatorial Guinea" +msgstr "" + +#: i18n/countries.php:84 +msgid "Eritrea" +msgstr "" + +#: i18n/countries.php:85 +msgid "Estonia" +msgstr "" + +#: i18n/countries.php:86 +msgid "Ethiopia" +msgstr "" + +#: i18n/countries.php:87 +msgid "Falkland Islands" +msgstr "" + +#: i18n/countries.php:88 +msgid "Faroe Islands" +msgstr "" + +#: i18n/countries.php:89 +msgid "Fiji" +msgstr "" + +#: i18n/countries.php:90 +msgid "Finland" +msgstr "" + +#: i18n/countries.php:91 +msgid "France" +msgstr "" + +#: i18n/countries.php:92 +msgid "French Guiana" +msgstr "" + +#: i18n/countries.php:93 +msgid "French Polynesia" +msgstr "" + +#: i18n/countries.php:94 +msgid "French Southern Territories" +msgstr "" + +#: i18n/countries.php:95 +msgid "Gabon" +msgstr "" + +#: i18n/countries.php:96 +msgid "Gambia" +msgstr "" + +#: i18n/countries.php:97 +msgid "Georgia" +msgstr "" + +#: i18n/countries.php:98 +msgid "Germany" +msgstr "" + +#: i18n/countries.php:99 +msgid "Ghana" +msgstr "" + +#: i18n/countries.php:100 +msgid "Gibraltar" +msgstr "" + +#: i18n/countries.php:101 +msgid "Greece" +msgstr "" + +#: i18n/countries.php:102 +msgid "Greenland" +msgstr "" + +#: i18n/countries.php:103 +msgid "Grenada" +msgstr "" + +#: i18n/countries.php:104 +msgid "Guadeloupe" +msgstr "" + +#: i18n/countries.php:105 +msgid "Guatemala" +msgstr "" + +#: i18n/countries.php:106 +msgid "Guernsey" +msgstr "" + +#: i18n/countries.php:107 +msgid "Guinea" +msgstr "" + +#: i18n/countries.php:108 +msgid "Guinea-Bissau" +msgstr "" + +#: i18n/countries.php:109 +msgid "Guyana" +msgstr "" + +#: i18n/countries.php:110 +msgid "Haiti" +msgstr "" + +#: i18n/countries.php:111 +msgid "Heard Island and McDonald Islands" +msgstr "" + +#: i18n/countries.php:112 +msgid "Honduras" +msgstr "" + +#: i18n/countries.php:113 +msgid "Hong Kong" +msgstr "" + +#: i18n/countries.php:114 +msgid "Hungary" +msgstr "" + +#: i18n/countries.php:115 +msgid "Iceland" +msgstr "" + +#: i18n/countries.php:116 +msgid "India" +msgstr "" + +#: i18n/countries.php:117 +msgid "Indonesia" +msgstr "" + +#: i18n/countries.php:118 +msgid "Iran" +msgstr "" + +#: i18n/countries.php:119 +msgid "Iraq" +msgstr "" + +#: i18n/countries.php:120 +msgid "Republic of Ireland" +msgstr "" + +#: i18n/countries.php:121 +msgid "Isle of Man" +msgstr "" + +#: i18n/countries.php:122 +msgid "Israel" +msgstr "" + +#: i18n/countries.php:123 +msgid "Italy" +msgstr "" + +#: i18n/countries.php:124 +msgid "Ivory Coast" +msgstr "" + +#: i18n/countries.php:125 +msgid "Jamaica" +msgstr "" + +#: i18n/countries.php:126 +msgid "Japan" +msgstr "" + +#: i18n/countries.php:127 +msgid "Jersey" +msgstr "" + +#: i18n/countries.php:128 +msgid "Jordan" +msgstr "" + +#: i18n/countries.php:129 +msgid "Kazakhstan" +msgstr "" + +#: i18n/countries.php:130 +msgid "Kenya" +msgstr "" + +#: i18n/countries.php:131 +msgid "Kiribati" +msgstr "" + +#: i18n/countries.php:132 +msgid "Kuwait" +msgstr "" + +#: i18n/countries.php:133 +msgid "Kyrgyzstan" +msgstr "" + +#: i18n/countries.php:134 +msgid "Laos" +msgstr "" + +#: i18n/countries.php:135 +msgid "Latvia" +msgstr "" + +#: i18n/countries.php:136 +msgid "Lebanon" +msgstr "" + +#: i18n/countries.php:137 +msgid "Lesotho" +msgstr "" + +#: i18n/countries.php:138 +msgid "Liberia" +msgstr "" + +#: i18n/countries.php:139 +msgid "Libya" +msgstr "" + +#: i18n/countries.php:140 +msgid "Liechtenstein" +msgstr "" + +#: i18n/countries.php:141 +msgid "Lithuania" +msgstr "" + +#: i18n/countries.php:142 +msgid "Luxembourg" +msgstr "" + +#: i18n/countries.php:143 +msgid "Macao S.A.R., China" +msgstr "" + +#: i18n/countries.php:144 +msgid "Macedonia" +msgstr "" + +#: i18n/countries.php:145 +msgid "Madagascar" +msgstr "" + +#: i18n/countries.php:146 +msgid "Malawi" +msgstr "" + +#: i18n/countries.php:147 +msgid "Malaysia" +msgstr "" + +#: i18n/countries.php:148 +msgid "Maldives" +msgstr "" + +#: i18n/countries.php:149 +msgid "Mali" +msgstr "" + +#: i18n/countries.php:150 +msgid "Malta" +msgstr "" + +#: i18n/countries.php:151 +msgid "Marshall Islands" +msgstr "" + +#: i18n/countries.php:152 +msgid "Martinique" +msgstr "" + +#: i18n/countries.php:153 +msgid "Mauritania" +msgstr "" + +#: i18n/countries.php:154 +msgid "Mauritius" +msgstr "" + +#: i18n/countries.php:155 +msgid "Mayotte" +msgstr "" + +#: i18n/countries.php:156 +msgid "Mexico" +msgstr "" + +#: i18n/countries.php:157 +msgid "Micronesia" +msgstr "" + +#: i18n/countries.php:158 +msgid "Moldova" +msgstr "" + +#: i18n/countries.php:159 +msgid "Monaco" +msgstr "" + +#: i18n/countries.php:160 +msgid "Mongolia" +msgstr "" + +#: i18n/countries.php:161 +msgid "Montenegro" +msgstr "" + +#: i18n/countries.php:162 +msgid "Montserrat" +msgstr "" + +#: i18n/countries.php:163 +msgid "Morocco" +msgstr "" + +#: i18n/countries.php:164 +msgid "Mozambique" +msgstr "" + +#: i18n/countries.php:165 +msgid "Myanmar" +msgstr "" + +#: i18n/countries.php:166 +msgid "Namibia" +msgstr "" + +#: i18n/countries.php:167 +msgid "Nauru" +msgstr "" + +#: i18n/countries.php:168 +msgid "Nepal" +msgstr "" + +#: i18n/countries.php:169 +msgid "Netherlands" +msgstr "" + +#: i18n/countries.php:170 +msgid "Netherlands Antilles" +msgstr "" + +#: i18n/countries.php:171 +msgid "New Caledonia" +msgstr "" + +#: i18n/countries.php:172 +msgid "New Zealand" +msgstr "" + +#: i18n/countries.php:173 +msgid "Nicaragua" +msgstr "" + +#: i18n/countries.php:174 +msgid "Niger" +msgstr "" + +#: i18n/countries.php:175 +msgid "Nigeria" +msgstr "" + +#: i18n/countries.php:176 +msgid "Niue" +msgstr "" + +#: i18n/countries.php:177 +msgid "Norfolk Island" +msgstr "" + +#: i18n/countries.php:178 +msgid "North Korea" +msgstr "" + +#: i18n/countries.php:179 +msgid "Norway" +msgstr "" + +#: i18n/countries.php:180 +msgid "Oman" +msgstr "" + +#: i18n/countries.php:181 +msgid "Pakistan" +msgstr "" + +#: i18n/countries.php:182 +msgid "Palestinian Territory" +msgstr "" + +#: i18n/countries.php:183 +msgid "Panama" +msgstr "" + +#: i18n/countries.php:184 +msgid "Papua New Guinea" +msgstr "" + +#: i18n/countries.php:185 +msgid "Paraguay" +msgstr "" + +#: i18n/countries.php:186 +msgid "Peru" +msgstr "" + +#: i18n/countries.php:187 +msgid "Philippines" +msgstr "" + +#: i18n/countries.php:188 +msgid "Pitcairn" +msgstr "" + +#: i18n/countries.php:189 +msgid "Poland" +msgstr "" + +#: i18n/countries.php:190 +msgid "Portugal" +msgstr "" + +#: i18n/countries.php:191 +msgid "Qatar" +msgstr "" + +#: i18n/countries.php:192 +msgid "Reunion" +msgstr "" + +#: i18n/countries.php:193 +msgid "Romania" +msgstr "" + +#: i18n/countries.php:194 +msgid "Russia" +msgstr "" + +#: i18n/countries.php:195 +msgid "Rwanda" +msgstr "" + +#: i18n/countries.php:196 +msgid "Saint Barthélemy" +msgstr "" + +#: i18n/countries.php:197 +msgid "Saint Helena" +msgstr "" + +#: i18n/countries.php:198 +msgid "Saint Kitts and Nevis" +msgstr "" + +#: i18n/countries.php:199 +msgid "Saint Lucia" +msgstr "" + +#: i18n/countries.php:200 +msgid "Saint Martin (French part)" +msgstr "" + +#: i18n/countries.php:201 +msgid "Saint Martin (Dutch part)" +msgstr "" + +#: i18n/countries.php:202 +msgid "Saint Pierre and Miquelon" +msgstr "" + +#: i18n/countries.php:203 +msgid "Saint Vincent and the Grenadines" +msgstr "" + +#: i18n/countries.php:204 +msgid "San Marino" +msgstr "" + +#: i18n/countries.php:205 +msgid "São Tomé and Príncipe" +msgstr "" + +#: i18n/countries.php:206 +msgid "Saudi Arabia" +msgstr "" + +#: i18n/countries.php:207 +msgid "Senegal" +msgstr "" + +#: i18n/countries.php:208 +msgid "Serbia" +msgstr "" + +#: i18n/countries.php:209 +msgid "Seychelles" +msgstr "" + +#: i18n/countries.php:210 +msgid "Sierra Leone" +msgstr "" + +#: i18n/countries.php:211 +msgid "Singapore" +msgstr "" + +#: i18n/countries.php:212 +msgid "Slovakia" +msgstr "" + +#: i18n/countries.php:213 +msgid "Slovenia" +msgstr "" + +#: i18n/countries.php:214 +msgid "Solomon Islands" +msgstr "" + +#: i18n/countries.php:215 +msgid "Somalia" +msgstr "" + +#: i18n/countries.php:216 +msgid "South Africa" +msgstr "" + +#: i18n/countries.php:217 +msgid "South Georgia/Sandwich Islands" +msgstr "" + +#: i18n/countries.php:218 +msgid "South Korea" +msgstr "" + +#: i18n/countries.php:219 +msgid "South Sudan" +msgstr "" + +#: i18n/countries.php:220 +msgid "Spain" +msgstr "" + +#: i18n/countries.php:221 +msgid "Sri Lanka" +msgstr "" + +#: i18n/countries.php:222 +msgid "Sudan" +msgstr "" + +#: i18n/countries.php:223 +msgid "Suriname" +msgstr "" + +#: i18n/countries.php:224 +msgid "Svalbard and Jan Mayen" +msgstr "" + +#: i18n/countries.php:225 +msgid "Swaziland" +msgstr "" + +#: i18n/countries.php:226 +msgid "Sweden" +msgstr "" + +#: i18n/countries.php:227 +msgid "Switzerland" +msgstr "" + +#: i18n/countries.php:228 +msgid "Syria" +msgstr "" + +#: i18n/countries.php:229 +msgid "Taiwan" +msgstr "" + +#: i18n/countries.php:230 +msgid "Tajikistan" +msgstr "" + +#: i18n/countries.php:231 +msgid "Tanzania" +msgstr "" + +#: i18n/countries.php:232 +msgid "Thailand" +msgstr "" + +#: i18n/countries.php:233 +msgid "Timor-Leste" +msgstr "" + +#: i18n/countries.php:234 +msgid "Togo" +msgstr "" + +#: i18n/countries.php:235 +msgid "Tokelau" +msgstr "" + +#: i18n/countries.php:236 +msgid "Tonga" +msgstr "" + +#: i18n/countries.php:237 +msgid "Trinidad and Tobago" +msgstr "" + +#: i18n/countries.php:238 +msgid "Tunisia" +msgstr "" + +#: i18n/countries.php:239 +msgid "Turkey" +msgstr "" + +#: i18n/countries.php:240 +msgid "Turkmenistan" +msgstr "" + +#: i18n/countries.php:241 +msgid "Turks and Caicos Islands" +msgstr "" + +#: i18n/countries.php:242 +msgid "Tuvalu" +msgstr "" + +#: i18n/countries.php:243 +msgid "Uganda" +msgstr "" + +#: i18n/countries.php:244 +msgid "Ukraine" +msgstr "" + +#: i18n/countries.php:245 +msgid "United Arab Emirates" +msgstr "" + +#: i18n/countries.php:246 +msgid "United Kingdom (UK)" +msgstr "" + +#: i18n/countries.php:247 +msgid "United States (US)" +msgstr "" + +#: i18n/countries.php:248 +msgid "Uruguay" +msgstr "" + +#: i18n/countries.php:249 +msgid "Uzbekistan" +msgstr "" + +#: i18n/countries.php:250 +msgid "Vanuatu" +msgstr "" + +#: i18n/countries.php:251 +msgid "Vatican" +msgstr "" + +#: i18n/countries.php:252 +msgid "Venezuela" +msgstr "" + +#: i18n/countries.php:253 +msgid "Vietnam" +msgstr "" + +#: i18n/countries.php:254 +msgid "Wallis and Futuna" +msgstr "" + +#: i18n/countries.php:255 +msgid "Western Sahara" +msgstr "" + +#: i18n/countries.php:256 +msgid "Western Samoa" +msgstr "" + +#: i18n/countries.php:257 +msgid "Yemen" +msgstr "" + +#: i18n/countries.php:258 +msgid "Zambia" +msgstr "" + +#: i18n/countries.php:259 +msgid "Zimbabwe" msgstr "" #: i18n/states/AU.php:13 @@ -99,6 +1021,262 @@ msgstr "" msgid "Western Australia" msgstr "" +#: i18n/states/BD.php:13 +msgid "Bagerhat" +msgstr "" + +#: i18n/states/BD.php:14 +msgid "Bandarban" +msgstr "" + +#: i18n/states/BD.php:15 +msgid "Barguna" +msgstr "" + +#: i18n/states/BD.php:16 +msgid "Barisal" +msgstr "" + +#: i18n/states/BD.php:17 +msgid "Bhola" +msgstr "" + +#: i18n/states/BD.php:18 +msgid "Bogra" +msgstr "" + +#: i18n/states/BD.php:19 +msgid "Brahmanbaria" +msgstr "" + +#: i18n/states/BD.php:20 +msgid "Chandpur" +msgstr "" + +#: i18n/states/BD.php:21 +msgid "Chittagong" +msgstr "" + +#: i18n/states/BD.php:22 +msgid "Chuadanga" +msgstr "" + +#: i18n/states/BD.php:23 +msgid "Comilla" +msgstr "" + +#: i18n/states/BD.php:24 +msgid "Cox's Bazar" +msgstr "" + +#: i18n/states/BD.php:25 +msgid "Dhaka" +msgstr "" + +#: i18n/states/BD.php:26 +msgid "Dinajpur" +msgstr "" + +#: i18n/states/BD.php:27 +msgid "Faridpur " +msgstr "" + +#: i18n/states/BD.php:28 +msgid "Feni" +msgstr "" + +#: i18n/states/BD.php:29 +msgid "Gaibandha" +msgstr "" + +#: i18n/states/BD.php:30 +msgid "Gazipur" +msgstr "" + +#: i18n/states/BD.php:31 +msgid "Gopalganj" +msgstr "" + +#: i18n/states/BD.php:32 +msgid "Habiganj" +msgstr "" + +#: i18n/states/BD.php:33 +msgid "Jamalpur" +msgstr "" + +#: i18n/states/BD.php:34 +msgid "Jessore" +msgstr "" + +#: i18n/states/BD.php:35 +msgid "Jhalokati" +msgstr "" + +#: i18n/states/BD.php:36 +msgid "Jhenaidah" +msgstr "" + +#: i18n/states/BD.php:37 +msgid "Joypurhat" +msgstr "" + +#: i18n/states/BD.php:38 +msgid "Khagrachhari" +msgstr "" + +#: i18n/states/BD.php:39 +msgid "Khulna" +msgstr "" + +#: i18n/states/BD.php:40 +msgid "Kishoreganj" +msgstr "" + +#: i18n/states/BD.php:41 +msgid "Kurigram" +msgstr "" + +#: i18n/states/BD.php:42 +msgid "Kushtia" +msgstr "" + +#: i18n/states/BD.php:43 +msgid "Lakshmipur" +msgstr "" + +#: i18n/states/BD.php:44 +msgid "Lalmonirhat" +msgstr "" + +#: i18n/states/BD.php:45 +msgid "Madaripur" +msgstr "" + +#: i18n/states/BD.php:46 +msgid "Magura" +msgstr "" + +#: i18n/states/BD.php:47 +msgid "Manikganj " +msgstr "" + +#: i18n/states/BD.php:48 +msgid "Meherpur" +msgstr "" + +#: i18n/states/BD.php:49 +msgid "Moulvibazar" +msgstr "" + +#: i18n/states/BD.php:50 +msgid "Munshiganj" +msgstr "" + +#: i18n/states/BD.php:51 +msgid "Mymensingh" +msgstr "" + +#: i18n/states/BD.php:52 +msgid "Naogaon" +msgstr "" + +#: i18n/states/BD.php:53 +msgid "Narail" +msgstr "" + +#: i18n/states/BD.php:54 +msgid "Narayanganj" +msgstr "" + +#: i18n/states/BD.php:55 +msgid "Narsingdi" +msgstr "" + +#: i18n/states/BD.php:56 +msgid "Natore" +msgstr "" + +#: i18n/states/BD.php:57 +msgid "Nawabganj" +msgstr "" + +#: i18n/states/BD.php:58 +msgid "Netrakona" +msgstr "" + +#: i18n/states/BD.php:59 +msgid "Nilphamari" +msgstr "" + +#: i18n/states/BD.php:60 +msgid "Noakhali" +msgstr "" + +#: i18n/states/BD.php:61 +msgid "Pabna" +msgstr "" + +#: i18n/states/BD.php:62 +msgid "Panchagarh" +msgstr "" + +#: i18n/states/BD.php:63 +msgid "Patuakhali" +msgstr "" + +#: i18n/states/BD.php:64 +msgid "Pirojpur" +msgstr "" + +#: i18n/states/BD.php:65 +msgid "Rajbari" +msgstr "" + +#: i18n/states/BD.php:66 +msgid "Rajshahi" +msgstr "" + +#: i18n/states/BD.php:67 +msgid "Rangamati" +msgstr "" + +#: i18n/states/BD.php:68 +msgid "Rangpur" +msgstr "" + +#: i18n/states/BD.php:69 +msgid "Satkhira" +msgstr "" + +#: i18n/states/BD.php:70 +msgid "Shariatpur" +msgstr "" + +#: i18n/states/BD.php:71 +msgid "Sherpur" +msgstr "" + +#: i18n/states/BD.php:72 +msgid "Sirajganj" +msgstr "" + +#: i18n/states/BD.php:73 +msgid "Sunamganj" +msgstr "" + +#: i18n/states/BD.php:74 +msgid "Sylhet" +msgstr "" + +#: i18n/states/BD.php:75 +msgid "Tangail" +msgstr "" + +#: i18n/states/BD.php:76 +msgid "Thakurgaon" +msgstr "" + #: i18n/states/BG.php:13 msgid "Blagoevgrad" msgstr "" @@ -235,7 +1413,7 @@ msgstr "" msgid "Ceará" msgstr "" -#: i18n/states/BR.php:19 +#: i18n/states/BR.php:19 i18n/states/MX.php:13 msgid "Distrito Federal" msgstr "" @@ -504,7 +1682,7 @@ msgid "A Coruña" msgstr "" #: i18n/states/ES.php:14 -msgid "Álava" +msgid "Araba/Álava" msgstr "" #: i18n/states/ES.php:15 @@ -588,7 +1766,7 @@ msgid "Guadalajara" msgstr "" #: i18n/states/ES.php:35 -msgid "Guipúzcoa" +msgid "Gipuzkoa" msgstr "" #: i18n/states/ES.php:36 @@ -696,7 +1874,7 @@ msgid "Valladolid" msgstr "" #: i18n/states/ES.php:62 -msgid "Vizcaya" +msgid "Bizkaia" msgstr "" #: i18n/states/ES.php:63 @@ -799,66 +1977,6 @@ msgstr "" msgid "Zala" msgstr "" -#: i18n/states/HZ.php:13 i18n/states/NZ.php:14 -msgid "Auckland" -msgstr "" - -#: i18n/states/HZ.php:14 i18n/states/NZ.php:16 -msgid "Bay of Plenty" -msgstr "" - -#: i18n/states/HZ.php:15 i18n/states/NZ.php:25 -msgid "Canterbury" -msgstr "" - -#: i18n/states/HZ.php:16 i18n/states/NZ.php:18 -msgid "Hawke’s Bay" -msgstr "" - -#: i18n/states/HZ.php:17 i18n/states/NZ.php:19 -msgid "Manawatu-Wanganui" -msgstr "" - -#: i18n/states/HZ.php:18 i18n/states/NZ.php:22 -msgid "Marlborough" -msgstr "" - -#: i18n/states/HZ.php:19 i18n/states/NZ.php:21 -msgid "Nelson" -msgstr "" - -#: i18n/states/HZ.php:20 i18n/states/NZ.php:13 -msgid "Northland" -msgstr "" - -#: i18n/states/HZ.php:21 i18n/states/NZ.php:26 -msgid "Otago" -msgstr "" - -#: i18n/states/HZ.php:22 i18n/states/NZ.php:27 -msgid "Southland" -msgstr "" - -#: i18n/states/HZ.php:23 i18n/states/NZ.php:17 -msgid "Taranaki" -msgstr "" - -#: i18n/states/HZ.php:24 i18n/states/NZ.php:23 -msgid "Tasman" -msgstr "" - -#: i18n/states/HZ.php:25 i18n/states/NZ.php:15 -msgid "Waikato" -msgstr "" - -#: i18n/states/HZ.php:26 i18n/states/NZ.php:20 -msgid "Wellington" -msgstr "" - -#: i18n/states/HZ.php:27 i18n/states/NZ.php:24 -msgid "West Coast" -msgstr "" - #: i18n/states/ID.php:13 msgid "Daerah Istimewa Aceh" msgstr "" @@ -1096,7 +2214,7 @@ msgid "Tripura" msgstr "" #: i18n/states/IN.php:38 -msgid "Uttaranchal" +msgid "Uttarakhand" msgstr "" #: i18n/states/IN.php:39 @@ -1135,6 +2253,130 @@ msgstr "" msgid "Pondicherry (Puducherry)" msgstr "" +#: i18n/states/IR.php:13 +msgid "Khuzestan (خوزستان)" +msgstr "" + +#: i18n/states/IR.php:14 +msgid "Tehran (تهران)" +msgstr "" + +#: i18n/states/IR.php:15 +msgid "Ilaam (ایلام)" +msgstr "" + +#: i18n/states/IR.php:16 +msgid "Bushehr (بوشهر)" +msgstr "" + +#: i18n/states/IR.php:17 +msgid "Ardabil (اردبیل)" +msgstr "" + +#: i18n/states/IR.php:18 +msgid "Isfahan (اصفهان)" +msgstr "" + +#: i18n/states/IR.php:19 +msgid "Yazd (یزد)" +msgstr "" + +#: i18n/states/IR.php:20 +msgid "Kermanshah (کرمانشاه)" +msgstr "" + +#: i18n/states/IR.php:21 +msgid "Kerman (کرمان)" +msgstr "" + +#: i18n/states/IR.php:22 +msgid "Hamadan (همدان)" +msgstr "" + +#: i18n/states/IR.php:23 +msgid "Ghazvin (قزوین)" +msgstr "" + +#: i18n/states/IR.php:24 +msgid "Zanjan (زنجان)" +msgstr "" + +#: i18n/states/IR.php:25 +msgid "Luristan (لرستان)" +msgstr "" + +#: i18n/states/IR.php:26 +msgid "Alborz (البرز)" +msgstr "" + +#: i18n/states/IR.php:27 +msgid "East Azarbaijan (آذربایجان شرقی)" +msgstr "" + +#: i18n/states/IR.php:28 +msgid "West Azarbaijan (آذربایجان غربی)" +msgstr "" + +#: i18n/states/IR.php:29 +msgid "Chaharmahal and Bakhtiari (چهارمحال و بختیاری)" +msgstr "" + +#: i18n/states/IR.php:30 +msgid "South Khorasan (خراسان جنوبی)" +msgstr "" + +#: i18n/states/IR.php:31 +msgid "Razavi Khorasan (خراسان رضوی)" +msgstr "" + +#: i18n/states/IR.php:32 +msgid "North Khorasan (خراسان جنوبی)" +msgstr "" + +#: i18n/states/IR.php:33 +msgid "Semnan (سمنان)" +msgstr "" + +#: i18n/states/IR.php:34 +msgid "Fars (فارس)" +msgstr "" + +#: i18n/states/IR.php:35 +msgid "Qom (قم)" +msgstr "" + +#: i18n/states/IR.php:36 +msgid "Kurdistan / کردستان)" +msgstr "" + +#: i18n/states/IR.php:37 +msgid "Kohgiluyeh and BoyerAhmad (کهگیلوییه و بویراحمد)" +msgstr "" + +#: i18n/states/IR.php:38 +msgid "Golestan (گلستان)" +msgstr "" + +#: i18n/states/IR.php:39 +msgid "Gilan (گیلان)" +msgstr "" + +#: i18n/states/IR.php:40 +msgid "Mazandaran (مازندران)" +msgstr "" + +#: i18n/states/IR.php:41 +msgid "Markazi (مرکزی)" +msgstr "" + +#: i18n/states/IR.php:42 +msgid "Hormozgan (هرمزگان)" +msgstr "" + +#: i18n/states/IR.php:43 +msgid "Sistan and Baluchestan (سیستان و بلوچستان)" +msgstr "" + #: i18n/states/IT.php:13 msgid "Agrigento" msgstr "" @@ -1763,6 +3005,130 @@ msgstr "" msgid "Okinawa" msgstr "" +#: i18n/states/MX.php:14 +msgid "Jalisco" +msgstr "" + +#: i18n/states/MX.php:15 +msgid "Nuevo León" +msgstr "" + +#: i18n/states/MX.php:16 +msgid "Aguascalientes" +msgstr "" + +#: i18n/states/MX.php:17 +msgid "Baja California Norte" +msgstr "" + +#: i18n/states/MX.php:18 +msgid "Baja California Sur" +msgstr "" + +#: i18n/states/MX.php:19 +msgid "Campeche" +msgstr "" + +#: i18n/states/MX.php:20 +msgid "Chiapas" +msgstr "" + +#: i18n/states/MX.php:21 +msgid "Chihuahua" +msgstr "" + +#: i18n/states/MX.php:22 +msgid "Coahuila" +msgstr "" + +#: i18n/states/MX.php:23 +msgid "Colima" +msgstr "" + +#: i18n/states/MX.php:24 +msgid "Durango" +msgstr "" + +#: i18n/states/MX.php:25 +msgid "Guanajuato" +msgstr "" + +#: i18n/states/MX.php:26 +msgid "Guerrero" +msgstr "" + +#: i18n/states/MX.php:27 +msgid "Hidalgo" +msgstr "" + +#: i18n/states/MX.php:28 +msgid "Edo. de México" +msgstr "" + +#: i18n/states/MX.php:29 +msgid "Michoacán" +msgstr "" + +#: i18n/states/MX.php:30 +msgid "Morelos" +msgstr "" + +#: i18n/states/MX.php:31 +msgid "Nayarit" +msgstr "" + +#: i18n/states/MX.php:32 +msgid "Oaxaca" +msgstr "" + +#: i18n/states/MX.php:33 +msgid "Puebla" +msgstr "" + +#: i18n/states/MX.php:34 +msgid "Querétaro" +msgstr "" + +#: i18n/states/MX.php:35 +msgid "Quintana Roo" +msgstr "" + +#: i18n/states/MX.php:36 +msgid "San Luis Potosí" +msgstr "" + +#: i18n/states/MX.php:37 +msgid "Sinaloa" +msgstr "" + +#: i18n/states/MX.php:38 +msgid "Sonora" +msgstr "" + +#: i18n/states/MX.php:39 +msgid "Tabasco" +msgstr "" + +#: i18n/states/MX.php:40 +msgid "Tamaulipas" +msgstr "" + +#: i18n/states/MX.php:41 +msgid "Tlaxcala" +msgstr "" + +#: i18n/states/MX.php:42 +msgid "Veracruz" +msgstr "" + +#: i18n/states/MX.php:43 +msgid "Yucatán" +msgstr "" + +#: i18n/states/MX.php:44 +msgid "Zacatecas" +msgstr "" + #: i18n/states/MY.php:13 msgid "Johor" msgstr "" @@ -1827,6 +3193,366 @@ msgstr "" msgid "W.P. Putrajaya" msgstr "" +#: i18n/states/NP.php:15 +msgid "Illam" +msgstr "" + +#: i18n/states/NP.php:16 +msgid "Jhapa" +msgstr "" + +#: i18n/states/NP.php:17 +msgid "Panchthar" +msgstr "" + +#: i18n/states/NP.php:18 +msgid "Taplejung" +msgstr "" + +#: i18n/states/NP.php:21 +msgid "Bhojpur" +msgstr "" + +#: i18n/states/NP.php:22 +msgid "Dhankuta" +msgstr "" + +#: i18n/states/NP.php:23 +msgid "Morang" +msgstr "" + +#: i18n/states/NP.php:24 +msgid "Sunsari" +msgstr "" + +#: i18n/states/NP.php:25 +msgid "Sankhuwa" +msgstr "" + +#: i18n/states/NP.php:26 +msgid "Terhathum" +msgstr "" + +#: i18n/states/NP.php:29 +msgid "Khotang" +msgstr "" + +#: i18n/states/NP.php:30 +msgid "Okhaldhunga" +msgstr "" + +#: i18n/states/NP.php:31 +msgid "Saptari" +msgstr "" + +#: i18n/states/NP.php:32 +msgid "Siraha" +msgstr "" + +#: i18n/states/NP.php:33 +msgid "Solukhumbu" +msgstr "" + +#: i18n/states/NP.php:34 +msgid "Udayapur" +msgstr "" + +#: i18n/states/NP.php:37 +msgid "Dhanusa" +msgstr "" + +#: i18n/states/NP.php:38 +msgid "Dolakha" +msgstr "" + +#: i18n/states/NP.php:39 +msgid "Mohottari" +msgstr "" + +#: i18n/states/NP.php:40 +msgid "Ramechha" +msgstr "" + +#: i18n/states/NP.php:41 +msgid "Sarlahi" +msgstr "" + +#: i18n/states/NP.php:42 +msgid "Sindhuli" +msgstr "" + +#: i18n/states/NP.php:45 +msgid "Bhaktapur" +msgstr "" + +#: i18n/states/NP.php:46 +msgid "Dhading" +msgstr "" + +#: i18n/states/NP.php:47 +msgid "Kathmandu" +msgstr "" + +#: i18n/states/NP.php:48 +msgid "Kavrepalanchowk" +msgstr "" + +#: i18n/states/NP.php:49 +msgid "Lalitpur" +msgstr "" + +#: i18n/states/NP.php:50 +msgid "Nuwakot" +msgstr "" + +#: i18n/states/NP.php:51 +msgid "Rasuwa" +msgstr "" + +#: i18n/states/NP.php:52 +msgid "Sindhupalchowk" +msgstr "" + +#: i18n/states/NP.php:55 +msgid "Bara" +msgstr "" + +#: i18n/states/NP.php:56 +msgid "Chitwan" +msgstr "" + +#: i18n/states/NP.php:57 +msgid "Makwanpur" +msgstr "" + +#: i18n/states/NP.php:58 +msgid "Parsa" +msgstr "" + +#: i18n/states/NP.php:59 +msgid "Rautahat" +msgstr "" + +#: i18n/states/NP.php:62 +msgid "Gorkha" +msgstr "" + +#: i18n/states/NP.php:63 +msgid "Kaski" +msgstr "" + +#: i18n/states/NP.php:64 +msgid "Lamjung" +msgstr "" + +#: i18n/states/NP.php:65 +msgid "Manang" +msgstr "" + +#: i18n/states/NP.php:66 +msgid "Syangja" +msgstr "" + +#: i18n/states/NP.php:67 +msgid "Tanahun" +msgstr "" + +#: i18n/states/NP.php:70 +msgid "Baglung" +msgstr "" + +#: i18n/states/NP.php:71 +msgid "Parbat" +msgstr "" + +#: i18n/states/NP.php:72 +msgid "Mustang" +msgstr "" + +#: i18n/states/NP.php:73 +msgid "Myagdi" +msgstr "" + +#: i18n/states/NP.php:76 +msgid "Agrghakanchi" +msgstr "" + +#: i18n/states/NP.php:77 +msgid "Gulmi" +msgstr "" + +#: i18n/states/NP.php:78 +msgid "Kapilbastu" +msgstr "" + +#: i18n/states/NP.php:79 +msgid "Nawalparasi" +msgstr "" + +#: i18n/states/NP.php:80 +msgid "Palpa" +msgstr "" + +#: i18n/states/NP.php:81 +msgid "Rupandehi" +msgstr "" + +#: i18n/states/NP.php:84 +msgid "Dang" +msgstr "" + +#: i18n/states/NP.php:85 +msgid "Pyuthan" +msgstr "" + +#: i18n/states/NP.php:86 +msgid "Rolpa" +msgstr "" + +#: i18n/states/NP.php:87 +msgid "Rukum" +msgstr "" + +#: i18n/states/NP.php:88 +msgid "Salyan" +msgstr "" + +#: i18n/states/NP.php:91 +msgid "Banke" +msgstr "" + +#: i18n/states/NP.php:92 +msgid "Bardiya" +msgstr "" + +#: i18n/states/NP.php:93 +msgid "Dailekh" +msgstr "" + +#: i18n/states/NP.php:94 +msgid "Jajarkot" +msgstr "" + +#: i18n/states/NP.php:95 +msgid "Surkhet" +msgstr "" + +#: i18n/states/NP.php:98 +msgid "Dolpa" +msgstr "" + +#: i18n/states/NP.php:99 +msgid "Humla" +msgstr "" + +#: i18n/states/NP.php:100 +msgid "Jumla" +msgstr "" + +#: i18n/states/NP.php:101 +msgid "Kalikot" +msgstr "" + +#: i18n/states/NP.php:102 +msgid "Mugu" +msgstr "" + +#: i18n/states/NP.php:105 +msgid "Achham" +msgstr "" + +#: i18n/states/NP.php:106 +msgid "Bajhang" +msgstr "" + +#: i18n/states/NP.php:107 +msgid "Bajura" +msgstr "" + +#: i18n/states/NP.php:108 +msgid "Doti" +msgstr "" + +#: i18n/states/NP.php:109 +msgid "Kailali" +msgstr "" + +#: i18n/states/NP.php:112 +msgid "Baitadi" +msgstr "" + +#: i18n/states/NP.php:113 +msgid "Dadeldhura" +msgstr "" + +#: i18n/states/NP.php:114 +msgid "Darchula" +msgstr "" + +#: i18n/states/NP.php:115 +msgid "Kanchanpur" +msgstr "" + +#: i18n/states/NZ.php:13 +msgid "Northland" +msgstr "" + +#: i18n/states/NZ.php:14 +msgid "Auckland" +msgstr "" + +#: i18n/states/NZ.php:15 +msgid "Waikato" +msgstr "" + +#: i18n/states/NZ.php:16 +msgid "Bay of Plenty" +msgstr "" + +#: i18n/states/NZ.php:17 +msgid "Taranaki" +msgstr "" + +#: i18n/states/NZ.php:18 +msgid "Hawke’s Bay" +msgstr "" + +#: i18n/states/NZ.php:19 +msgid "Manawatu-Wanganui" +msgstr "" + +#: i18n/states/NZ.php:20 +msgid "Wellington" +msgstr "" + +#: i18n/states/NZ.php:21 +msgid "Nelson" +msgstr "" + +#: i18n/states/NZ.php:22 +msgid "Marlborough" +msgstr "" + +#: i18n/states/NZ.php:23 +msgid "Tasman" +msgstr "" + +#: i18n/states/NZ.php:24 +msgid "West Coast" +msgstr "" + +#: i18n/states/NZ.php:25 +msgid "Canterbury" +msgstr "" + +#: i18n/states/NZ.php:26 +msgid "Otago" +msgstr "" + +#: i18n/states/NZ.php:27 +msgid "Southland" +msgstr "" + #: i18n/states/PE.php:13 msgid "El Callao" msgstr "" @@ -1928,7 +3654,9 @@ msgid "Ucayali" msgstr "" #: i18n/states/TH.php:13 -msgid "Amnat Charoen (อำนาจเจริญ)" +msgid "" +"Amnat Charoen " +"(อำนาจเจริญ)" msgstr "" #: i18n/states/TH.php:14 @@ -1936,11 +3664,17 @@ msgid "Ang Thong (อ่างทอง)" msgstr "" #: i18n/states/TH.php:15 -msgid "Ayutthaya (พระนครศรีอยุธยา)" +msgid "" +"Ayutthaya " +"(พระนครศรีอũ" +"8;ุธยา)" msgstr "" #: i18n/states/TH.php:16 -msgid "Bangkok (กรุงเทพมหานคร)" +msgid "" +"Bangkok " +"(กรุงเทพมหาŨ" +"9;คร)" msgstr "" #: i18n/states/TH.php:17 @@ -1952,7 +3686,9 @@ msgid "Buri Ram (บุรีรัมย์ msgstr "" #: i18n/states/TH.php:19 -msgid "Chachoengsao (ฉะเชิงเทรา)" +msgid "" +"Chachoengsao " +"(ฉะเชิงเทรา)" msgstr "" #: i18n/states/TH.php:20 @@ -1988,11 +3724,15 @@ msgid "Kalasin (กาฬสินธุ์) msgstr "" #: i18n/states/TH.php:28 -msgid "Kamphaeng Phet (กำแพงเพชร)" +msgid "" +"Kamphaeng Phet " +"(กำแพงเพชร)" msgstr "" #: i18n/states/TH.php:29 -msgid "Kanchanaburi (กาญจนบุรี)" +msgid "" +"Kanchanaburi " +"(กาญจนบุรี)" msgstr "" #: i18n/states/TH.php:30 @@ -2020,11 +3760,15 @@ msgid "Lopburi (ลพบุรี)" msgstr "" #: i18n/states/TH.php:36 -msgid "Mae Hong Son (แม่ฮ่องสอน)" +msgid "" +"Mae Hong Son " +"(แม่ฮ่องสอน)" msgstr "" #: i18n/states/TH.php:37 -msgid "Maha Sarakham (มหาสารคาม)" +msgid "" +"Maha Sarakham " +"(มหาสารคาม)" msgstr "" #: i18n/states/TH.php:38 @@ -2044,15 +3788,22 @@ msgid "Nakhon Phanom (นครพนม)" msgstr "" #: i18n/states/TH.php:42 -msgid "Nakhon Ratchasima (นครราชสีมา)" +msgid "" +"Nakhon Ratchasima " +"(นครราชสีมา)" msgstr "" #: i18n/states/TH.php:43 -msgid "Nakhon Sawan (นครสวรรค์)" +msgid "" +"Nakhon Sawan " +"(นครสวรรค์)" msgstr "" #: i18n/states/TH.php:44 -msgid "Nakhon Si Thammarat (นครศรีธรรมราช)" +msgid "" +"Nakhon Si Thammarat " +"(นครศรีธรรมũ" +"9;าช)" msgstr "" #: i18n/states/TH.php:45 @@ -2064,7 +3815,10 @@ msgid "Narathiwat (นราธิวาส)" msgstr "" #: i18n/states/TH.php:47 -msgid "Nong Bua Lam Phu (หนองบัวลำภู)" +msgid "" +"Nong Bua Lam Phu " +"(หนองบัวลำภŬ" +"1;)" msgstr "" #: i18n/states/TH.php:48 @@ -2120,11 +3874,16 @@ msgid "Phuket (ภูเก็ต)" msgstr "" #: i18n/states/TH.php:61 -msgid "Prachin Buri (ปราจีนบุรี)" +msgid "" +"Prachin Buri " +"(ปราจีนบุรี)" msgstr "" #: i18n/states/TH.php:62 -msgid "Prachuap Khiri Khan (ประจวบคีรีขันธ์)" +msgid "" +"Prachuap Khiri Khan " +"(ประจวบคีรีŦ" +"6;ันธ์)" msgstr "" #: i18n/states/TH.php:63 @@ -2152,15 +3911,23 @@ msgid "Sakon Nakhon (สกลนคร)" msgstr "" #: i18n/states/TH.php:69 -msgid "Samut Prakan (สมุทรปราการ)" +msgid "" +"Samut Prakan " +"(สมุทรปรากาũ" +"9;)" msgstr "" #: i18n/states/TH.php:70 -msgid "Samut Sakhon (สมุทรสาคร)" +msgid "" +"Samut Sakhon " +"(สมุทรสาคร)" msgstr "" #: i18n/states/TH.php:71 -msgid "Samut Songkhram (สมุทรสงคราม)" +msgid "" +"Samut Songkhram " +"(สมุทรสงคราũ" +"7;)" msgstr "" #: i18n/states/TH.php:72 @@ -2188,11 +3955,16 @@ msgid "Sukhothai (สุโขทัย)" msgstr "" #: i18n/states/TH.php:78 -msgid "Suphan Buri (สุพรรณบุรี)" +msgid "" +"Suphan Buri " +"(สุพรรณบุรี)" msgstr "" #: i18n/states/TH.php:79 -msgid "Surat Thani (สุราษฎร์ธานี)" +msgid "" +"Surat Thani " +"(สุราษฎร์ธาŨ" +"9;ี)" msgstr "" #: i18n/states/TH.php:80 @@ -2212,7 +3984,10 @@ msgid "Trat (ตราด)" msgstr "" #: i18n/states/TH.php:84 -msgid "Ubon Ratchathani (อุบลราชธานี)" +msgid "" +"Ubon Ratchathani " +"(อุบลราชธานū" +"7;)" msgstr "" #: i18n/states/TH.php:85 @@ -2220,7 +3995,9 @@ msgid "Udon Thani (อุดรธานี)" msgstr "" #: i18n/states/TH.php:86 -msgid "Uthai Thani (อุทัยธานี)" +msgid "" +"Uthai Thani " +"(อุทัยธานี)" msgstr "" #: i18n/states/TH.php:87 @@ -2235,6 +4012,330 @@ msgstr "" msgid "Yasothon (ยโสธร)" msgstr "" +#: i18n/states/TR.php:13 +msgid "Adana" +msgstr "" + +#: i18n/states/TR.php:14 +msgid "Adıyaman" +msgstr "" + +#: i18n/states/TR.php:15 +msgid "Afyon" +msgstr "" + +#: i18n/states/TR.php:16 +msgid "Ağrı" +msgstr "" + +#: i18n/states/TR.php:17 +msgid "Amasya" +msgstr "" + +#: i18n/states/TR.php:18 +msgid "Ankara" +msgstr "" + +#: i18n/states/TR.php:19 +msgid "Antalya" +msgstr "" + +#: i18n/states/TR.php:20 +msgid "Artvin" +msgstr "" + +#: i18n/states/TR.php:21 +msgid "Aydın" +msgstr "" + +#: i18n/states/TR.php:22 +msgid "Balıkesir" +msgstr "" + +#: i18n/states/TR.php:23 +msgid "Bilecik" +msgstr "" + +#: i18n/states/TR.php:24 +msgid "Bingöl" +msgstr "" + +#: i18n/states/TR.php:25 +msgid "Bitlis" +msgstr "" + +#: i18n/states/TR.php:26 +msgid "Bolu" +msgstr "" + +#: i18n/states/TR.php:27 +msgid "Burdur" +msgstr "" + +#: i18n/states/TR.php:28 +msgid "Bursa" +msgstr "" + +#: i18n/states/TR.php:29 +msgid "Çanakkale" +msgstr "" + +#: i18n/states/TR.php:30 +msgid "Çankırı" +msgstr "" + +#: i18n/states/TR.php:31 +msgid "Çorum" +msgstr "" + +#: i18n/states/TR.php:32 +msgid "Denizli" +msgstr "" + +#: i18n/states/TR.php:33 +msgid "Diyarbakır" +msgstr "" + +#: i18n/states/TR.php:34 +msgid "Edirne" +msgstr "" + +#: i18n/states/TR.php:35 +msgid "Elazığ" +msgstr "" + +#: i18n/states/TR.php:36 +msgid "Erzincan" +msgstr "" + +#: i18n/states/TR.php:37 +msgid "Erzurum" +msgstr "" + +#: i18n/states/TR.php:38 +msgid "Eskişehir" +msgstr "" + +#: i18n/states/TR.php:39 +msgid "Gaziantep" +msgstr "" + +#: i18n/states/TR.php:40 +msgid "Giresun" +msgstr "" + +#: i18n/states/TR.php:41 +msgid "Gümüşhane" +msgstr "" + +#: i18n/states/TR.php:42 +msgid "Hakkari" +msgstr "" + +#: i18n/states/TR.php:43 +msgid "Hatay" +msgstr "" + +#: i18n/states/TR.php:44 +msgid "Isparta" +msgstr "" + +#: i18n/states/TR.php:45 +msgid "İçel" +msgstr "" + +#: i18n/states/TR.php:46 +msgid "İstanbul" +msgstr "" + +#: i18n/states/TR.php:47 +msgid "İzmir" +msgstr "" + +#: i18n/states/TR.php:48 +msgid "Kars" +msgstr "" + +#: i18n/states/TR.php:49 +msgid "Kastamonu" +msgstr "" + +#: i18n/states/TR.php:50 +msgid "Kayseri" +msgstr "" + +#: i18n/states/TR.php:51 +msgid "Kırklareli" +msgstr "" + +#: i18n/states/TR.php:52 +msgid "Kırşehir" +msgstr "" + +#: i18n/states/TR.php:53 +msgid "Kocaeli" +msgstr "" + +#: i18n/states/TR.php:54 +msgid "Konya" +msgstr "" + +#: i18n/states/TR.php:55 +msgid "Kütahya" +msgstr "" + +#: i18n/states/TR.php:56 +msgid "Malatya" +msgstr "" + +#: i18n/states/TR.php:57 +msgid "Manisa" +msgstr "" + +#: i18n/states/TR.php:58 +msgid "Kahramanmaraş" +msgstr "" + +#: i18n/states/TR.php:59 +msgid "Mardin" +msgstr "" + +#: i18n/states/TR.php:60 +msgid "Muğla" +msgstr "" + +#: i18n/states/TR.php:61 +msgid "Muş" +msgstr "" + +#: i18n/states/TR.php:62 +msgid "Nevşehir" +msgstr "" + +#: i18n/states/TR.php:63 +msgid "Niğde" +msgstr "" + +#: i18n/states/TR.php:64 +msgid "Ordu" +msgstr "" + +#: i18n/states/TR.php:65 +msgid "Rize" +msgstr "" + +#: i18n/states/TR.php:66 +msgid "Sakarya" +msgstr "" + +#: i18n/states/TR.php:67 +msgid "Samsun" +msgstr "" + +#: i18n/states/TR.php:68 +msgid "Siirt" +msgstr "" + +#: i18n/states/TR.php:69 +msgid "Sinop" +msgstr "" + +#: i18n/states/TR.php:70 +msgid "Sivas" +msgstr "" + +#: i18n/states/TR.php:71 +msgid "Tekirdağ" +msgstr "" + +#: i18n/states/TR.php:72 +msgid "Tokat" +msgstr "" + +#: i18n/states/TR.php:73 +msgid "Trabzon" +msgstr "" + +#: i18n/states/TR.php:74 +msgid "Tunceli" +msgstr "" + +#: i18n/states/TR.php:75 +msgid "Şanlıurfa" +msgstr "" + +#: i18n/states/TR.php:76 +msgid "Uşak" +msgstr "" + +#: i18n/states/TR.php:77 +msgid "Van" +msgstr "" + +#: i18n/states/TR.php:78 +msgid "Yozgat" +msgstr "" + +#: i18n/states/TR.php:79 +msgid "Zonguldak" +msgstr "" + +#: i18n/states/TR.php:80 +msgid "Aksaray" +msgstr "" + +#: i18n/states/TR.php:81 +msgid "Bayburt" +msgstr "" + +#: i18n/states/TR.php:82 +msgid "Karaman" +msgstr "" + +#: i18n/states/TR.php:83 +msgid "Kırıkkale" +msgstr "" + +#: i18n/states/TR.php:84 +msgid "Batman" +msgstr "" + +#: i18n/states/TR.php:85 +msgid "Şırnak" +msgstr "" + +#: i18n/states/TR.php:86 +msgid "Bartın" +msgstr "" + +#: i18n/states/TR.php:87 +msgid "Ardahan" +msgstr "" + +#: i18n/states/TR.php:88 +msgid "Iğdır" +msgstr "" + +#: i18n/states/TR.php:89 +msgid "Yalova" +msgstr "" + +#: i18n/states/TR.php:90 +msgid "Karabük" +msgstr "" + +#: i18n/states/TR.php:91 +msgid "Kilis" +msgstr "" + +#: i18n/states/TR.php:92 +msgid "Osmaniye" +msgstr "" + +#: i18n/states/TR.php:93 +msgid "Düzce" +msgstr "" + #: i18n/states/US.php:13 msgid "Alabama" msgstr "" @@ -2275,10 +4376,6 @@ msgstr "" msgid "Florida" msgstr "" -#: i18n/states/US.php:23 includes/class-wc-countries.php:118 -msgid "Georgia" -msgstr "" - #: i18n/states/US.php:24 msgid "Hawaii" msgstr "" @@ -2507,135 +4604,109 @@ msgstr "" msgid "Western Cape" msgstr "" -#: i18n/strings.php:16 -msgid "pending" -msgstr "" - -#: i18n/strings.php:17 -msgid "failed" -msgstr "" - -#: i18n/strings.php:18 -msgid "on-hold" -msgstr "" - -#: i18n/strings.php:19 -msgid "processing" -msgstr "" - -#: i18n/strings.php:20 -msgid "completed" -msgstr "" - -#: i18n/strings.php:21 -msgid "refunded" -msgstr "" - -#: i18n/strings.php:22 -msgid "cancelled" -msgstr "" - -#: includes/abstracts/abstract-wc-email.php:562 -#: includes/emails/class-wc-email-customer-completed-order.php:136 -#: includes/emails/class-wc-email-new-order.php:116 +#: includes/abstracts/abstract-wc-email.php:553 +#: includes/emails/class-wc-email-customer-completed-order.php:141 +#: includes/emails/class-wc-email-new-order.php:121 #: includes/gateways/bacs/class-wc-gateway-bacs.php:66 #: includes/gateways/cheque/class-wc-gateway-cheque.php:52 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:129 +#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:124 #: includes/gateways/paypal/class-wc-gateway-paypal.php:120 +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:170 #: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:75 #: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:64 #: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:49 msgid "Enable/Disable" msgstr "" -#: includes/abstracts/abstract-wc-email.php:564 -#: includes/emails/class-wc-email-customer-completed-order.php:138 -#: includes/emails/class-wc-email-new-order.php:118 +#: includes/abstracts/abstract-wc-email.php:555 +#: includes/emails/class-wc-email-customer-completed-order.php:143 +#: includes/emails/class-wc-email-new-order.php:123 msgid "Enable this email notification" msgstr "" -#: includes/abstracts/abstract-wc-email.php:568 -#: includes/emails/class-wc-email-customer-invoice.php:142 +#: includes/abstracts/abstract-wc-email.php:559 +#: includes/emails/class-wc-email-customer-invoice.php:149 msgid "Email subject" msgstr "" -#: includes/abstracts/abstract-wc-email.php:570 -#: includes/abstracts/abstract-wc-email.php:577 -#: includes/emails/class-wc-email-customer-completed-order.php:144 -#: includes/emails/class-wc-email-customer-completed-order.php:151 -#: includes/emails/class-wc-email-customer-completed-order.php:158 -#: includes/emails/class-wc-email-customer-completed-order.php:165 -#: includes/emails/class-wc-email-customer-invoice.php:144 +#: includes/abstracts/abstract-wc-email.php:561 +#: includes/abstracts/abstract-wc-email.php:568 +#: includes/emails/class-wc-email-customer-completed-order.php:149 +#: includes/emails/class-wc-email-customer-completed-order.php:156 +#: includes/emails/class-wc-email-customer-completed-order.php:163 +#: includes/emails/class-wc-email-customer-completed-order.php:170 #: includes/emails/class-wc-email-customer-invoice.php:151 #: includes/emails/class-wc-email-customer-invoice.php:158 #: includes/emails/class-wc-email-customer-invoice.php:165 +#: includes/emails/class-wc-email-customer-invoice.php:172 msgid "Defaults to %s" msgstr "" -#: includes/abstracts/abstract-wc-email.php:575 -#: includes/emails/class-wc-email-customer-invoice.php:149 +#: includes/abstracts/abstract-wc-email.php:566 +#: includes/emails/class-wc-email-customer-invoice.php:156 msgid "Email heading" msgstr "" -#: includes/abstracts/abstract-wc-email.php:582 -#: includes/emails/class-wc-email-customer-completed-order.php:170 -#: includes/emails/class-wc-email-customer-invoice.php:170 -#: includes/emails/class-wc-email-new-order.php:143 +#: includes/abstracts/abstract-wc-email.php:573 +#: includes/emails/class-wc-email-customer-completed-order.php:175 +#: includes/emails/class-wc-email-customer-invoice.php:177 +#: includes/emails/class-wc-email-new-order.php:148 msgid "Email type" msgstr "" -#: includes/abstracts/abstract-wc-email.php:584 -#: includes/emails/class-wc-email-customer-completed-order.php:172 -#: includes/emails/class-wc-email-customer-invoice.php:172 -#: includes/emails/class-wc-email-new-order.php:145 +#: includes/abstracts/abstract-wc-email.php:575 +#: includes/emails/class-wc-email-customer-completed-order.php:177 +#: includes/emails/class-wc-email-customer-invoice.php:179 +#: includes/emails/class-wc-email-new-order.php:150 msgid "Choose which format of email to send." msgstr "" -#: includes/abstracts/abstract-wc-email.php:588 -#: includes/emails/class-wc-email-customer-completed-order.php:176 -#: includes/emails/class-wc-email-customer-invoice.php:176 -#: includes/emails/class-wc-email-new-order.php:149 +#: includes/abstracts/abstract-wc-email.php:579 +#: includes/emails/class-wc-email-customer-completed-order.php:181 +#: includes/emails/class-wc-email-customer-invoice.php:183 +#: includes/emails/class-wc-email-new-order.php:154 msgid "Plain text" msgstr "" -#: includes/abstracts/abstract-wc-email.php:589 -#: includes/emails/class-wc-email-customer-completed-order.php:177 -#: includes/emails/class-wc-email-customer-invoice.php:177 -#: includes/emails/class-wc-email-new-order.php:150 +#: includes/abstracts/abstract-wc-email.php:580 +#: includes/emails/class-wc-email-customer-completed-order.php:182 +#: includes/emails/class-wc-email-customer-invoice.php:184 +#: includes/emails/class-wc-email-new-order.php:155 msgid "HTML" msgstr "" -#: includes/abstracts/abstract-wc-email.php:590 -#: includes/emails/class-wc-email-customer-completed-order.php:178 -#: includes/emails/class-wc-email-customer-invoice.php:178 -#: includes/emails/class-wc-email-new-order.php:151 +#: includes/abstracts/abstract-wc-email.php:581 +#: includes/emails/class-wc-email-customer-completed-order.php:183 +#: includes/emails/class-wc-email-customer-invoice.php:185 +#: includes/emails/class-wc-email-new-order.php:156 msgid "Multipart" msgstr "" -#: includes/abstracts/abstract-wc-email.php:626 -#: includes/abstracts/abstract-wc-email.php:647 +#: includes/abstracts/abstract-wc-email.php:618 +#: includes/abstracts/abstract-wc-email.php:642 msgid "Could not write to template file." msgstr "" -#: includes/abstracts/abstract-wc-email.php:678 +#: includes/abstracts/abstract-wc-email.php:674 msgid "Template file copied to theme." msgstr "" -#: includes/abstracts/abstract-wc-email.php:687 +#: includes/abstracts/abstract-wc-email.php:685 msgid "Template file deleted from theme." msgstr "" -#: includes/abstracts/abstract-wc-email.php:695 -#: includes/abstracts/abstract-wc-integration.php:30 -#: includes/abstracts/abstract-wc-settings-api.php:39 woocommerce.php:180 +#: includes/abstracts/abstract-wc-email.php:693 +#: includes/abstracts/abstract-wc-integration.php:27 +#: includes/abstracts/abstract-wc-settings-api.php:38 +#: includes/class-wc-install.php:701 msgid "Settings" msgstr "" -#: includes/abstracts/abstract-wc-email.php:707 +#: includes/abstracts/abstract-wc-email.php:705 msgid "HTML template" msgstr "" -#: includes/abstracts/abstract-wc-email.php:708 +#: includes/abstracts/abstract-wc-email.php:706 msgid "Plain text template" msgstr "" @@ -2644,2346 +4715,1784 @@ msgid "Delete template file" msgstr "" #: includes/abstracts/abstract-wc-email.php:732 -msgid "This template has been overridden by your theme and can be found in: %s." +msgid "" +"This template has been overridden by your theme and can be found in: " +"%s." msgstr "" -#: includes/abstracts/abstract-wc-email.php:747 +#: includes/abstracts/abstract-wc-email.php:745 msgid "Copy file to theme" msgstr "" -#: includes/abstracts/abstract-wc-email.php:750 -msgid "To override and edit this email template copy %s to your theme folder: %s." +#: includes/abstracts/abstract-wc-email.php:748 +msgid "" +"To override and edit this email template copy %s to your theme " +"folder: %s." msgstr "" -#: includes/abstracts/abstract-wc-email.php:761 +#: includes/abstracts/abstract-wc-email.php:757 msgid "File was not found." msgstr "" -#: includes/abstracts/abstract-wc-email.php:786 +#: includes/abstracts/abstract-wc-email.php:782 msgid "View template" msgstr "" -#: includes/abstracts/abstract-wc-email.php:787 +#: includes/abstracts/abstract-wc-email.php:783 msgid "Hide template" msgstr "" -#: includes/abstracts/abstract-wc-email.php:798 +#: includes/abstracts/abstract-wc-email.php:794 msgid "Are you sure you want to delete this template file?" msgstr "" -#: includes/abstracts/abstract-wc-payment-gateway.php:204 +#: includes/abstracts/abstract-wc-order.php:162 +#: includes/abstracts/abstract-wc-order.php:217 +msgid "Backordered" +msgstr "" + +#: includes/abstracts/abstract-wc-order.php:1615 +msgid " %svia %s" +msgstr "" + +#: includes/abstracts/abstract-wc-order.php:1620 +#: includes/abstracts/abstract-wc-product.php:887 +#: includes/abstracts/abstract-wc-product.php:893 +#: includes/class-wc-cart.php:1443 includes/class-wc-product-variation.php:293 +msgid "Free!" +msgstr "" + +#: includes/abstracts/abstract-wc-order.php:1682 +msgid "Cart Subtotal:" +msgstr "" + +#: includes/abstracts/abstract-wc-order.php:1689 +msgid "Cart Discount:" +msgstr "" + +#: includes/abstracts/abstract-wc-order.php:1696 +msgid "Shipping:" +msgstr "" + +#: includes/abstracts/abstract-wc-order.php:1749 +msgid "Order Discount:" +msgstr "" + +#: includes/abstracts/abstract-wc-order.php:1756 +msgid "Payment Method:" +msgstr "" + +#: includes/abstracts/abstract-wc-order.php:1762 +msgid "Order Total:" +msgstr "" + +#: includes/abstracts/abstract-wc-order.php:1782 +#: includes/wc-cart-functions.php:250 +msgid "(Includes %s)" +msgstr "" + +#. Plugin Name of the plugin/theme +msgid "WooCommerce" +msgstr "" + +#: includes/abstracts/abstract-wc-order.php:2080 +msgid "Order status changed from %s to %s." +msgstr "" + +#: includes/abstracts/abstract-wc-order.php:2343 +#: includes/class-wc-ajax.php:1167 includes/class-wc-ajax.php:1168 +msgid "Item #%s stock reduced from %s to %s." +msgstr "" + +#: includes/abstracts/abstract-wc-order.php:2353 +msgid "Order item stock reduced successfully." +msgstr "" + +#: includes/abstracts/abstract-wc-payment-gateway.php:273 +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:259 msgid "Card Number" msgstr "" -#: includes/abstracts/abstract-wc-payment-gateway.php:208 +#: includes/abstracts/abstract-wc-payment-gateway.php:277 msgid "Expiry (MM/YY)" msgstr "" -#: includes/abstracts/abstract-wc-payment-gateway.php:212 +#: includes/abstracts/abstract-wc-payment-gateway.php:278 +msgid "MM / YY" +msgstr "" + +#: includes/abstracts/abstract-wc-payment-gateway.php:281 msgid "Card Code" msgstr "" -#: includes/abstracts/abstract-wc-product.php:456 +#: includes/abstracts/abstract-wc-payment-gateway.php:282 +msgid "CVC" +msgstr "" + +#: includes/abstracts/abstract-wc-product.php:472 #: includes/class-wc-product-simple.php:48 -#: includes/class-wc-product-variation.php:211 +#: includes/class-wc-product-variation.php:201 msgid "Add to cart" msgstr "" -#: includes/abstracts/abstract-wc-product.php:466 +#: includes/abstracts/abstract-wc-product.php:481 msgid "Read more" msgstr "" -#: includes/abstracts/abstract-wc-product.php:574 -#: includes/abstracts/abstract-wc-product.php:579 -#: includes/abstracts/abstract-wc-product.php:599 +#: includes/abstracts/abstract-wc-product.php:562 +#: includes/abstracts/abstract-wc-product.php:573 +#: includes/abstracts/abstract-wc-product.php:595 +#: includes/class-wc-ajax.php:627 includes/class-wc-product-variation.php:511 +#: includes/class-wc-product-variation.php:521 +#: includes/class-wc-product-variation.php:537 msgid "In stock" msgstr "" -#: includes/abstracts/abstract-wc-product.php:579 +#: includes/abstracts/abstract-wc-product.php:567 +#: includes/class-wc-product-variation.php:515 msgid "Only %s left in stock" msgstr "" -#: includes/abstracts/abstract-wc-product.php:582 +#: includes/abstracts/abstract-wc-product.php:570 +#: includes/abstracts/abstract-wc-product.php:581 +#: includes/class-wc-product-variation.php:518 +#: includes/class-wc-product-variation.php:528 +msgid "(can be backordered)" +msgstr "" + +#: includes/abstracts/abstract-wc-product.php:578 +#: includes/class-wc-product-variation.php:525 msgid "%s in stock" msgstr "" -#: includes/abstracts/abstract-wc-product.php:589 -msgid "(backorders allowed)" -msgstr "" - -#: includes/abstracts/abstract-wc-product.php:596 -#: includes/abstracts/abstract-wc-product.php:609 templates/cart/cart.php:74 +#: includes/abstracts/abstract-wc-product.php:590 +#: includes/class-wc-product-variation.php:534 templates/cart/cart.php:72 msgid "Available on backorder" msgstr "" -#: includes/abstracts/abstract-wc-product.php:602 -#: includes/abstracts/abstract-wc-product.php:612 -#: includes/abstracts/abstract-wc-product.php:616 +#: includes/abstracts/abstract-wc-product.php:600 +#: includes/abstracts/abstract-wc-product.php:606 +#: includes/class-wc-ajax.php:628 includes/class-wc-product-variation.php:540 +#: includes/class-wc-product-variation.php:544 msgid "Out of stock" msgstr "" -#: includes/abstracts/abstract-wc-product.php:931 -msgctxt "min_price" -msgid "From:" -msgstr "" - -#: includes/abstracts/abstract-wc-product.php:1041 +#: includes/abstracts/abstract-wc-product.php:1021 #: templates/single-product/rating.php:23 msgid "Rated %s out of 5" msgstr "" -#: includes/abstracts/abstract-wc-product.php:1043 +#: includes/abstracts/abstract-wc-product.php:1023 #: templates/single-product/rating.php:25 #: templates/single-product/review.php:27 msgid "out of 5" msgstr "" -#: includes/abstracts/abstract-wc-product.php:1380 +#: includes/abstracts/abstract-wc-product.php:1377 msgid "%s – %s" msgstr "" -#: includes/api/class-wc-api-authentication.php:69 +#: includes/api/class-wc-api-authentication.php:85 +#: includes/api/v1/class-wc-api-authentication.php:86 msgid "Consumer Key is missing" msgstr "" -#: includes/api/class-wc-api-authentication.php:72 +#: includes/api/class-wc-api-authentication.php:101 +#: includes/api/v1/class-wc-api-authentication.php:102 msgid "Consumer Secret is missing" msgstr "" -#: includes/api/class-wc-api-authentication.php:80 +#: includes/api/class-wc-api-authentication.php:107 +#: includes/api/v1/class-wc-api-authentication.php:108 msgid "Consumer Secret is invalid" msgstr "" -#: includes/api/class-wc-api-authentication.php:112 +#: includes/api/class-wc-api-authentication.php:140 +#: includes/api/v1/class-wc-api-authentication.php:141 msgid "%s parameter is missing" msgstr "" -#: includes/api/class-wc-api-authentication.php:151 +#: includes/api/class-wc-api-authentication.php:174 +#: includes/api/v1/class-wc-api-authentication.php:175 msgid "Consumer Key is invalid" msgstr "" -#: includes/api/class-wc-api-authentication.php:192 +#: includes/api/class-wc-api-authentication.php:224 +#: includes/api/v1/class-wc-api-authentication.php:225 msgid "Invalid Signature - failed to sort parameters" msgstr "" -#: includes/api/class-wc-api-authentication.php:205 +#: includes/api/class-wc-api-authentication.php:238 +#: includes/api/v1/class-wc-api-authentication.php:239 msgid "Invalid Signature - signature method is invalid" msgstr "" -#: includes/api/class-wc-api-authentication.php:212 +#: includes/api/class-wc-api-authentication.php:246 +#: includes/api/v1/class-wc-api-authentication.php:247 msgid "Invalid Signature - provided signature does not match" msgstr "" -#: includes/api/class-wc-api-authentication.php:247 +#: includes/api/class-wc-api-authentication.php:303 +#: includes/api/v1/class-wc-api-authentication.php:304 msgid "Invalid timestamp" msgstr "" -#: includes/api/class-wc-api-authentication.php:255 +#: includes/api/class-wc-api-authentication.php:311 +#: includes/api/v1/class-wc-api-authentication.php:312 msgid "Invalid nonce - nonce has already been used" msgstr "" -#: includes/api/class-wc-api-authentication.php:284 +#: includes/api/class-wc-api-authentication.php:340 +#: includes/api/v1/class-wc-api-authentication.php:341 msgid "The API key provided does not have read permissions" msgstr "" -#: includes/api/class-wc-api-authentication.php:293 +#: includes/api/class-wc-api-authentication.php:349 +#: includes/api/v1/class-wc-api-authentication.php:350 msgid "The API key provided does not have write permissions" msgstr "" -#: includes/api/class-wc-api-coupons.php:107 +#: includes/api/class-wc-api-coupons.php:112 +#: includes/api/v1/class-wc-api-coupons.php:108 msgid "Invalid coupon ID" msgstr "" -#: includes/api/class-wc-api-coupons.php:152 +#: includes/api/class-wc-api-coupons.php:160 +#: includes/api/v1/class-wc-api-coupons.php:153 msgid "You do not have permission to read the coupons count" msgstr "" -#: includes/api/class-wc-api-coupons.php:171 +#: includes/api/class-wc-api-coupons.php:180 +#: includes/api/v1/class-wc-api-coupons.php:172 msgid "Invalid coupon code" msgstr "" -#: includes/api/class-wc-api-customers.php:192 -msgid "You do not have permission to read the customers count" +#: includes/api/class-wc-api-coupons.php:200 +msgid "You do not have permission to create coupons" +msgstr "" + +#: includes/api/class-wc-api-coupons.php:207 +#: includes/api/class-wc-api-customers.php:341 +#: includes/api/class-wc-api-products.php:187 +#: includes/api/class-wc-api-server.php:416 +#: includes/api/v1/class-wc-api-server.php:405 +msgid "Missing parameter %s" +msgstr "" + +#: includes/api/class-wc-api-coupons.php:222 +#: includes/api/class-wc-api-coupons.php:331 +msgid "The coupon code already exists" +msgstr "" + +#: includes/api/class-wc-api-coupons.php:250 +#: includes/api/class-wc-api-coupons.php:343 +msgid "Invalid coupon type - the coupon type must be any of these: %s" +msgstr "" + +#: includes/api/class-wc-api-coupons.php:336 +msgid "Failed to update coupon" msgstr "" #: includes/api/class-wc-api-customers.php:208 +#: includes/api/class-wc-api-customers.php:211 +msgid "Invalid customer Email" +msgstr "" + +#: includes/api/class-wc-api-customers.php:229 +#: includes/api/v1/class-wc-api-customers.php:193 +msgid "You do not have permission to read the customers count" +msgstr "" + +#: includes/api/class-wc-api-customers.php:334 +#: includes/api/v1/class-wc-api-customers.php:209 msgid "You do not have permission to create this customer" msgstr "" -#: includes/api/class-wc-api-customers.php:425 +#: includes/api/class-wc-api-customers.php:688 +#: includes/api/v1/class-wc-api-customers.php:459 msgid "Invalid customer ID" msgstr "" -#: includes/api/class-wc-api-customers.php:431 +#: includes/api/class-wc-api-customers.php:695 +#: includes/api/v1/class-wc-api-customers.php:465 msgid "Invalid customer" msgstr "" -#: includes/api/class-wc-api-customers.php:438 +#: includes/api/class-wc-api-customers.php:703 +#: includes/api/v1/class-wc-api-customers.php:472 msgid "You do not have permission to read this customer" msgstr "" -#: includes/api/class-wc-api-customers.php:443 +#: includes/api/class-wc-api-customers.php:709 +#: includes/api/v1/class-wc-api-customers.php:477 msgid "You do not have permission to edit this customer" msgstr "" -#: includes/api/class-wc-api-customers.php:448 +#: includes/api/class-wc-api-customers.php:715 +#: includes/api/v1/class-wc-api-customers.php:482 msgid "You do not have permission to delete this customer" msgstr "" #: includes/api/class-wc-api-json-handler.php:56 +#: includes/api/v1/class-wc-api-json-handler.php:57 msgid "JSONP support is disabled on this site" msgstr "" #: includes/api/class-wc-api-json-handler.php:64 +#: includes/api/v1/class-wc-api-json-handler.php:65 msgid "The JSONP callback function is invalid" msgstr "" -#: includes/api/class-wc-api-orders.php:253 +#: includes/api/class-wc-api-orders.php:302 +#: includes/api/v1/class-wc-api-orders.php:256 msgid "You do not have permission to read the orders count" msgstr "" -#: includes/api/class-wc-api-products.php:140 +#: includes/api/class-wc-api-orders.php:344 +msgid "You do not have permission to create orders" +msgstr "" + +#: includes/api/class-wc-api-orders.php:360 +#: includes/api/class-wc-api-orders.php:496 +msgid "Customer ID is invalid" +msgstr "" + +#: includes/api/class-wc-api-orders.php:370 +msgid "Cannot create order: %s" +msgstr "" + +#: includes/api/class-wc-api-orders.php:404 +msgid "Payment method ID and title are required" +msgstr "" + +#: includes/api/class-wc-api-orders.php:420 +#: includes/api/class-wc-api-orders.php:567 +msgid "Provided order currency is invalid" +msgstr "" + +#: includes/api/class-wc-api-orders.php:522 +msgid "Order item ID is required" +msgstr "" + +#: includes/api/class-wc-api-orders.php:793 +msgid "Order item ID provided is not associated with order" +msgstr "" + +#: includes/api/class-wc-api-orders.php:815 +msgid "Product ID is required" +msgstr "" + +#: includes/api/class-wc-api-orders.php:825 +msgid "Product ID provided does not match this line item" +msgstr "" + +#: includes/api/class-wc-api-orders.php:833 +msgid "Product is invalid" +msgstr "" + +#: includes/api/class-wc-api-orders.php:838 +msgid "Product quantity must be a positive float" +msgstr "" + +#: includes/api/class-wc-api-orders.php:843 +msgid "Product quantity is required" +msgstr "" + +#: includes/api/class-wc-api-orders.php:857 +msgid "The product variation is invalid" +msgstr "" + +#: includes/api/class-wc-api-orders.php:888 +msgid "Cannot create line item, try again" +msgstr "" + +#: includes/api/class-wc-api-orders.php:896 +msgid "Cannot update line item, try again" +msgstr "" + +#: includes/api/class-wc-api-orders.php:914 +msgid "Shipping total must be a positive amount" +msgstr "" + +#: includes/api/class-wc-api-orders.php:921 +msgid "Shipping method ID is required" +msgstr "" + +#: includes/api/class-wc-api-orders.php:929 +msgid "Cannot create shipping method, try again" +msgstr "" + +#: includes/api/class-wc-api-orders.php:951 +msgid "Cannot update shipping method, try again" +msgstr "" + +#: includes/api/class-wc-api-orders.php:971 +msgid "Fee title is required" +msgstr "" + +#: includes/api/class-wc-api-orders.php:983 +msgid "Fee tax class is required when fee is taxable" +msgstr "" + +#: includes/api/class-wc-api-orders.php:994 +msgid "Cannot create fee, try again" +msgstr "" + +#: includes/api/class-wc-api-orders.php:1020 +msgid "Cannot update fee, try again" +msgstr "" + +#: includes/api/class-wc-api-orders.php:1038 +msgid "Coupon discount total must be a positive amount" +msgstr "" + +#: includes/api/class-wc-api-orders.php:1045 +msgid "Coupon code is required" +msgstr "" + +#: includes/api/class-wc-api-orders.php:1051 +msgid "Cannot create coupon, try again" +msgstr "" + +#: includes/api/class-wc-api-orders.php:1069 +msgid "Cannot update coupon, try again" +msgstr "" + +#: includes/api/class-wc-api-orders.php:1134 +#: includes/api/class-wc-api-orders.php:1228 +#: includes/api/class-wc-api-orders.php:1287 +msgid "Invalid order note ID" +msgstr "" + +#: includes/api/class-wc-api-orders.php:1140 +#: includes/api/class-wc-api-orders.php:1235 +#: includes/api/class-wc-api-orders.php:1294 +msgid "An order note with the provided ID could not be found" +msgstr "" + +#: includes/api/class-wc-api-orders.php:1167 +msgid "You do not have permission to create order notes" +msgstr "" + +#: includes/api/class-wc-api-orders.php:1173 +#: includes/api/class-wc-api-orders.php:1447 +msgid "Order ID is invalid" +msgstr "" + +#: includes/api/class-wc-api-orders.php:1182 +msgid "Order note is required" +msgstr "" + +#: includes/api/class-wc-api-orders.php:1191 +msgid "Cannot create order note, please try again" +msgstr "" + +#: includes/api/class-wc-api-orders.php:1240 +#: includes/api/class-wc-api-orders.php:1299 +msgid "The order note ID provided is not associated with the order" +msgstr "" + +#: includes/api/class-wc-api-orders.php:1309 +msgid "Permanently deleted order note" +msgstr "" + +#: includes/api/class-wc-api-orders.php:1313 +msgid "This order note cannot be deleted" +msgstr "" + +#: includes/api/class-wc-api-orders.php:1372 +#: includes/api/class-wc-api-orders.php:1520 +#: includes/api/class-wc-api-orders.php:1576 +msgid "Invalid order refund ID" +msgstr "" + +#: includes/api/class-wc-api-orders.php:1379 +#: includes/api/class-wc-api-orders.php:1527 +#: includes/api/class-wc-api-orders.php:1583 +msgid "An order refund with the provided ID could not be found" +msgstr "" + +#: includes/api/class-wc-api-orders.php:1441 +msgid "You do not have permission to create order refunds" +msgstr "" + +#: includes/api/class-wc-api-orders.php:1454 +msgid "Refund amount is required" +msgstr "" + +#: includes/api/class-wc-api-orders.php:1456 +msgid "Refund amount must be positive" +msgstr "" + +#: includes/api/class-wc-api-orders.php:1466 +msgid "Cannot create order refund, please try again" +msgstr "" + +#: includes/api/class-wc-api-orders.php:1483 +msgid "" +"An error occurred while attempting to create the refund using the payment " +"gateway API" +msgstr "" + +#: includes/api/class-wc-api-orders.php:1532 +#: includes/api/class-wc-api-orders.php:1588 +msgid "The order refund ID provided is not associated with the order" +msgstr "" + +#: includes/api/class-wc-api-products.php:159 +#: includes/api/v1/class-wc-api-products.php:141 msgid "You do not have permission to read the products count" msgstr "" -#: includes/api/class-wc-api-products.php:458 -#: includes/api/class-wc-api-products.php:459 -msgid "Placeholder" +#: includes/api/class-wc-api-products.php:180 +msgid "You do not have permission to create products" msgstr "" -#: includes/api/class-wc-api-reports.php:396 -msgid "You do not have permission to read this report" +#: includes/api/class-wc-api-products.php:197 +#: includes/api/class-wc-api-products.php:293 +msgid "Invalid product type - the product type must be any of these: %s" msgstr "" -#: includes/api/class-wc-api-resource.php:71 -msgid "Invalid %s ID" +#: includes/api/class-wc-api-products.php:401 +#: includes/api/class-wc-api-products.php:435 +msgid "You do not have permission to read product categories" msgstr "" -#: includes/api/class-wc-api-resource.php:83 -msgid "Invalid %s" +#: includes/api/class-wc-api-products.php:430 +msgid "Invalid product category ID" msgstr "" -#: includes/api/class-wc-api-resource.php:90 -msgid "You do not have permission to read this %s" +#: includes/api/class-wc-api-products.php:441 +msgid "A product category with the provided ID could not be found" msgstr "" -#: includes/api/class-wc-api-resource.php:95 -msgid "You do not have permission to edit this %s" +#: includes/api/class-wc-api-products.php:691 +#: includes/api/class-wc-api-products.php:1132 +msgid "The SKU already exists on another product" msgstr "" -#: includes/api/class-wc-api-resource.php:100 -msgid "You do not have permission to delete this %s" -msgstr "" - -#: includes/api/class-wc-api-resource.php:302 -msgid "Permanently deleted customer" -msgstr "" - -#: includes/api/class-wc-api-resource.php:304 -msgid "The customer cannot be deleted" -msgstr "" - -#: includes/api/class-wc-api-resource.php:313 -msgid "This %s cannot be deleted" -msgstr "" - -#: includes/api/class-wc-api-resource.php:316 -msgid "Permanently deleted %s" -msgstr "" - -#: includes/api/class-wc-api-resource.php:322 -msgid "Deleted %s" -msgstr "" - -#: includes/api/class-wc-api-server.php:165 -msgid "Invalid authentication method" -msgstr "" - -#: includes/api/class-wc-api-server.php:316 -msgid "Unsupported request method" -msgstr "" - -#: includes/api/class-wc-api-server.php:333 -msgid "The handler for the route is invalid" -msgstr "" - -#: includes/api/class-wc-api-server.php:369 -msgid "No route was found matching the URL and request method" -msgstr "" - -#: includes/api/class-wc-api-server.php:404 -msgid "Missing parameter %s" -msgstr "" - -#: includes/class-wc-ajax.php:158 -msgid "Sorry, your session has expired." -msgstr "" - -#: includes/class-wc-ajax.php:158 -msgid "Return to homepage" -msgstr "" - -#: includes/class-wc-ajax.php:269 includes/class-wc-ajax.php:298 -#: includes/class-wc-ajax.php:315 -msgid "You do not have sufficient permissions to access this page." -msgstr "" - -#: includes/class-wc-ajax.php:272 includes/class-wc-ajax.php:299 -#: includes/class-wc-ajax.php:316 -msgid "You have taken too long. Please go back and retry." -msgstr "" - -#: includes/class-wc-ajax.php:529 -msgid "Same as parent" -msgstr "" - -#: includes/class-wc-ajax.php:530 -msgid "Standard" -msgstr "" - -#: includes/class-wc-ajax.php:792 includes/class-wc-customer.php:624 -#: includes/class-wc-customer.php:636 -msgid "File %d" -msgstr "" - -#: includes/class-wc-ajax.php:982 includes/class-wc-ajax.php:983 -#: includes/class-wc-order.php:1471 -msgid "Item #%s stock reduced from %s to %s." -msgstr "" - -#: includes/class-wc-ajax.php:991 -msgid "No products had their stock reduced - they may not have stock management enabled." -msgstr "" - -#: includes/class-wc-ajax.php:1030 includes/class-wc-ajax.php:1031 -msgid "Item #%s stock increased from %s to %s." -msgstr "" - -#: includes/class-wc-ajax.php:1038 -msgid "No products had their stock increased - they may not have stock management enabled." -msgstr "" - -#: includes/class-wc-ajax.php:1119 -#: includes/widgets/class-wc-widget-product-categories.php:39 -#: templates/single-product-reviews.php:59 -msgid "Name" -msgstr "" - -#: includes/class-wc-ajax.php:1119 -msgid "Value" -msgstr "" - -#: includes/class-wc-ajax.php:1337 -msgid "Delete note" -msgstr "" - -#: includes/class-wc-ajax.php:1482 -msgid "Guest" -msgstr "" - -#: includes/class-wc-cache-helper.php:99 -msgid "In order for database caching to work with WooCommerce you must add _wc_session_ to the \"Ignored Query Strings\" option in W3 Total Cache settings here." -msgstr "" - -#: includes/class-wc-cart.php:163 -msgid "%s has been removed from your cart because it can no longer be purchased. Please contact us if you need assistance." -msgstr "" - -#: includes/class-wc-cart.php:358 -msgid "An item which is no longer available was removed from your cart." -msgstr "" - -#: includes/class-wc-cart.php:392 includes/class-wc-cart.php:411 -#: includes/class-wc-cart.php:420 -msgid "Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in stock). Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "" - -#: includes/class-wc-cart.php:455 -msgid "Sorry, we do not have enough \"%s\" in stock to fulfill your order right now. Please try again in %d minutes or edit your cart and try again. We apologise for any inconvenience caused." -msgstr "" - -#: includes/class-wc-cart.php:465 -msgid "Sorry, \"%s\" is not in stock. Please edit your cart and try again. We apologise for any inconvenience caused." -msgstr "" - -#: includes/class-wc-cart.php:781 -msgid "Sorry, "%s" cannot be purchased." -msgstr "" - -#: includes/class-wc-cart.php:788 -msgid "You cannot add "%s" to the cart because the product is out of stock." -msgstr "" - -#: includes/class-wc-cart.php:793 -msgid "You cannot add that amount of "%s" to the cart because there is not enough stock (%s remaining)." -msgstr "" - -#: includes/class-wc-cart.php:804 includes/class-wc-cart.php:818 -#: includes/class-wc-cart.php:826 includes/class-wc-frontend-scripts.php:140 -#: includes/wc-cart-functions.php:102 templates/cart/mini-cart.php:64 -msgid "View Cart" -msgstr "" - -#: includes/class-wc-cart.php:804 -msgid "You cannot add another "%s" to your cart." -msgstr "" - -#: includes/class-wc-cart.php:818 includes/class-wc-cart.php:826 -msgid "%s You cannot add that amount to the cart — we have %s in stock and you already have %s in your cart." -msgstr "" - -#: includes/class-wc-checkout.php:64 includes/class-wc-checkout.php:73 -#: includes/class-wc-emails.php:67 includes/class-wc-emails.php:76 -#: includes/class-wc-payment-gateways.php:46 -#: includes/class-wc-payment-gateways.php:55 includes/class-wc-shipping.php:64 -#: includes/class-wc-shipping.php:73 woocommerce.php:101 woocommerce.php:110 -msgid "Cheatin’ huh?" -msgstr "" - -#: includes/class-wc-checkout.php:97 -msgid "Account username" -msgstr "" - -#: includes/class-wc-checkout.php:99 -msgctxt "placeholder" -msgid "Username" -msgstr "" - -#: includes/class-wc-checkout.php:106 -msgid "Account password" -msgstr "" - -#: includes/class-wc-checkout.php:108 -msgctxt "placeholder" -msgid "Password" -msgstr "" - -#: includes/class-wc-checkout.php:116 -msgid "Order Notes" -msgstr "" - -#: includes/class-wc-checkout.php:117 -msgctxt "placeholder" -msgid "Notes about your order, e.g. special notes for delivery." -msgstr "" - -#: includes/class-wc-checkout.php:176 -msgid "Order – %s" -msgstr "" - -#: includes/class-wc-checkout.php:176 -msgctxt "Order date parsed by strftime" -msgid "%b %d, %Y @ %I:%M %p" -msgstr "" - -#: includes/class-wc-checkout.php:284 -msgid "Backordered" -msgstr "" - -#: includes/class-wc-checkout.php:408 -msgid "Sorry, your session has expired. Return to homepage" -msgstr "" - -#: includes/class-wc-checkout.php:483 includes/class-wc-form-handler.php:82 -msgid "is a required field." -msgstr "" - -#: includes/class-wc-checkout.php:495 includes/class-wc-form-handler.php:92 -#: includes/shortcodes/class-wc-shortcode-cart.php:51 -msgid "Please enter a valid postcode/ZIP." -msgstr "" - -#: includes/class-wc-checkout.php:504 includes/class-wc-form-handler.php:101 -msgid "is not a valid phone number." -msgstr "" - -#: includes/class-wc-checkout.php:510 includes/class-wc-form-handler.php:107 -msgid "is not a valid email address." -msgstr "" - -#: includes/class-wc-checkout.php:525 -msgid "is not valid. Please enter one of the following:" -msgstr "" - -#: includes/class-wc-checkout.php:570 -msgid "You must accept our Terms & Conditions." -msgstr "" - -#: includes/class-wc-checkout.php:575 -msgid "Unfortunately we do not ship to %s. Please enter an alternative shipping address." -msgstr "" - -#: includes/class-wc-checkout.php:583 -msgid "Invalid shipping method." -msgstr "" - -#: includes/class-wc-checkout.php:596 -msgid "Invalid payment method." -msgstr "" - -#: includes/class-wc-comments.php:110 -msgid "You have taken too long. Please go back and refresh the page." -msgstr "" - -#: includes/class-wc-comments.php:113 -msgid "Please rate the product." -msgstr "" - -#: includes/class-wc-countries.php:37 -msgid "Afghanistan" -msgstr "" - -#: includes/class-wc-countries.php:38 -msgid "Åland Islands" -msgstr "" - -#: includes/class-wc-countries.php:39 -msgid "Albania" -msgstr "" - -#: includes/class-wc-countries.php:40 -msgid "Algeria" -msgstr "" - -#: includes/class-wc-countries.php:41 -msgid "Andorra" -msgstr "" - -#: includes/class-wc-countries.php:42 -msgid "Angola" -msgstr "" - -#: includes/class-wc-countries.php:43 -msgid "Anguilla" -msgstr "" - -#: includes/class-wc-countries.php:44 -msgid "Antarctica" -msgstr "" - -#: includes/class-wc-countries.php:45 -msgid "Antigua and Barbuda" -msgstr "" - -#: includes/class-wc-countries.php:46 -msgid "Argentina" -msgstr "" - -#: includes/class-wc-countries.php:47 -msgid "Armenia" -msgstr "" - -#: includes/class-wc-countries.php:48 -msgid "Aruba" -msgstr "" - -#: includes/class-wc-countries.php:49 -msgid "Australia" -msgstr "" - -#: includes/class-wc-countries.php:50 -msgid "Austria" -msgstr "" - -#: includes/class-wc-countries.php:51 -msgid "Azerbaijan" -msgstr "" - -#: includes/class-wc-countries.php:52 -msgid "Bahamas" -msgstr "" - -#: includes/class-wc-countries.php:53 -msgid "Bahrain" -msgstr "" - -#: includes/class-wc-countries.php:54 -msgid "Bangladesh" -msgstr "" - -#: includes/class-wc-countries.php:55 -msgid "Barbados" -msgstr "" - -#: includes/class-wc-countries.php:56 -msgid "Belarus" -msgstr "" - -#: includes/class-wc-countries.php:57 -msgid "Belgium" -msgstr "" - -#: includes/class-wc-countries.php:58 -msgid "Belau" -msgstr "" - -#: includes/class-wc-countries.php:59 -msgid "Belize" -msgstr "" - -#: includes/class-wc-countries.php:60 -msgid "Benin" -msgstr "" - -#: includes/class-wc-countries.php:61 -msgid "Bermuda" -msgstr "" - -#: includes/class-wc-countries.php:62 -msgid "Bhutan" -msgstr "" - -#: includes/class-wc-countries.php:63 -msgid "Bolivia" -msgstr "" - -#: includes/class-wc-countries.php:64 -msgid "Bonaire, Saint Eustatius and Saba" -msgstr "" - -#: includes/class-wc-countries.php:65 -msgid "Bosnia and Herzegovina" -msgstr "" - -#: includes/class-wc-countries.php:66 -msgid "Botswana" -msgstr "" - -#: includes/class-wc-countries.php:67 -msgid "Bouvet Island" -msgstr "" - -#: includes/class-wc-countries.php:68 -msgid "Brazil" -msgstr "" - -#: includes/class-wc-countries.php:69 -msgid "British Indian Ocean Territory" -msgstr "" - -#: includes/class-wc-countries.php:70 -msgid "British Virgin Islands" -msgstr "" - -#: includes/class-wc-countries.php:71 -msgid "Brunei" -msgstr "" - -#: includes/class-wc-countries.php:72 -msgid "Bulgaria" -msgstr "" - -#: includes/class-wc-countries.php:73 -msgid "Burkina Faso" -msgstr "" - -#: includes/class-wc-countries.php:74 -msgid "Burundi" -msgstr "" - -#: includes/class-wc-countries.php:75 -msgid "Cambodia" -msgstr "" - -#: includes/class-wc-countries.php:76 -msgid "Cameroon" -msgstr "" - -#: includes/class-wc-countries.php:77 -msgid "Canada" -msgstr "" - -#: includes/class-wc-countries.php:78 -msgid "Cape Verde" -msgstr "" - -#: includes/class-wc-countries.php:79 -msgid "Cayman Islands" -msgstr "" - -#: includes/class-wc-countries.php:80 -msgid "Central African Republic" -msgstr "" - -#: includes/class-wc-countries.php:81 -msgid "Chad" -msgstr "" - -#: includes/class-wc-countries.php:82 -msgid "Chile" -msgstr "" - -#: includes/class-wc-countries.php:83 -msgid "China" -msgstr "" - -#: includes/class-wc-countries.php:84 -msgid "Christmas Island" -msgstr "" - -#: includes/class-wc-countries.php:85 -msgid "Cocos (Keeling) Islands" -msgstr "" - -#: includes/class-wc-countries.php:86 -msgid "Colombia" -msgstr "" - -#: includes/class-wc-countries.php:87 -msgid "Comoros" -msgstr "" - -#: includes/class-wc-countries.php:88 -msgid "Congo (Brazzaville)" -msgstr "" - -#: includes/class-wc-countries.php:89 -msgid "Congo (Kinshasa)" -msgstr "" - -#: includes/class-wc-countries.php:90 -msgid "Cook Islands" -msgstr "" - -#: includes/class-wc-countries.php:91 -msgid "Costa Rica" -msgstr "" - -#: includes/class-wc-countries.php:92 -msgid "Croatia" -msgstr "" - -#: includes/class-wc-countries.php:93 -msgid "Cuba" -msgstr "" - -#: includes/class-wc-countries.php:94 -msgid "CuraÇao" -msgstr "" - -#: includes/class-wc-countries.php:95 -msgid "Cyprus" -msgstr "" - -#: includes/class-wc-countries.php:96 -msgid "Czech Republic" -msgstr "" - -#: includes/class-wc-countries.php:97 -msgid "Denmark" -msgstr "" - -#: includes/class-wc-countries.php:98 -msgid "Djibouti" -msgstr "" - -#: includes/class-wc-countries.php:99 -msgid "Dominica" -msgstr "" - -#: includes/class-wc-countries.php:100 -msgid "Dominican Republic" -msgstr "" - -#: includes/class-wc-countries.php:101 -msgid "Ecuador" -msgstr "" - -#: includes/class-wc-countries.php:102 -msgid "Egypt" -msgstr "" - -#: includes/class-wc-countries.php:103 -msgid "El Salvador" -msgstr "" - -#: includes/class-wc-countries.php:104 -msgid "Equatorial Guinea" -msgstr "" - -#: includes/class-wc-countries.php:105 -msgid "Eritrea" -msgstr "" - -#: includes/class-wc-countries.php:106 -msgid "Estonia" -msgstr "" - -#: includes/class-wc-countries.php:107 -msgid "Ethiopia" -msgstr "" - -#: includes/class-wc-countries.php:108 -msgid "Falkland Islands" -msgstr "" - -#: includes/class-wc-countries.php:109 -msgid "Faroe Islands" -msgstr "" - -#: includes/class-wc-countries.php:110 -msgid "Fiji" -msgstr "" - -#: includes/class-wc-countries.php:111 -msgid "Finland" -msgstr "" - -#: includes/class-wc-countries.php:112 -msgid "France" -msgstr "" - -#: includes/class-wc-countries.php:113 -msgid "French Guiana" -msgstr "" - -#: includes/class-wc-countries.php:114 -msgid "French Polynesia" -msgstr "" - -#: includes/class-wc-countries.php:115 -msgid "French Southern Territories" -msgstr "" - -#: includes/class-wc-countries.php:116 -msgid "Gabon" -msgstr "" - -#: includes/class-wc-countries.php:117 -msgid "Gambia" -msgstr "" - -#: includes/class-wc-countries.php:119 -msgid "Germany" -msgstr "" - -#: includes/class-wc-countries.php:120 -msgid "Ghana" -msgstr "" - -#: includes/class-wc-countries.php:121 -msgid "Gibraltar" -msgstr "" - -#: includes/class-wc-countries.php:122 -msgid "Greece" -msgstr "" - -#: includes/class-wc-countries.php:123 -msgid "Greenland" -msgstr "" - -#: includes/class-wc-countries.php:124 -msgid "Grenada" -msgstr "" - -#: includes/class-wc-countries.php:125 -msgid "Guadeloupe" -msgstr "" - -#: includes/class-wc-countries.php:126 -msgid "Guatemala" -msgstr "" - -#: includes/class-wc-countries.php:127 -msgid "Guernsey" -msgstr "" - -#: includes/class-wc-countries.php:128 -msgid "Guinea" -msgstr "" - -#: includes/class-wc-countries.php:129 -msgid "Guinea-Bissau" -msgstr "" - -#: includes/class-wc-countries.php:130 -msgid "Guyana" -msgstr "" - -#: includes/class-wc-countries.php:131 -msgid "Haiti" -msgstr "" - -#: includes/class-wc-countries.php:132 -msgid "Heard Island and McDonald Islands" -msgstr "" - -#: includes/class-wc-countries.php:133 -msgid "Honduras" -msgstr "" - -#: includes/class-wc-countries.php:134 -msgid "Hong Kong" -msgstr "" - -#: includes/class-wc-countries.php:135 -msgid "Hungary" -msgstr "" - -#: includes/class-wc-countries.php:136 -msgid "Iceland" -msgstr "" - -#: includes/class-wc-countries.php:137 -msgid "India" -msgstr "" - -#: includes/class-wc-countries.php:138 -msgid "Indonesia" -msgstr "" - -#: includes/class-wc-countries.php:139 -msgid "Iran" -msgstr "" - -#: includes/class-wc-countries.php:140 -msgid "Iraq" -msgstr "" - -#: includes/class-wc-countries.php:141 -msgid "Republic of Ireland" -msgstr "" - -#: includes/class-wc-countries.php:142 -msgid "Isle of Man" -msgstr "" - -#: includes/class-wc-countries.php:143 -msgid "Israel" -msgstr "" - -#: includes/class-wc-countries.php:144 -msgid "Italy" -msgstr "" - -#: includes/class-wc-countries.php:145 -msgid "Ivory Coast" -msgstr "" - -#: includes/class-wc-countries.php:146 -msgid "Jamaica" -msgstr "" - -#: includes/class-wc-countries.php:147 -msgid "Japan" -msgstr "" - -#: includes/class-wc-countries.php:148 -msgid "Jersey" -msgstr "" - -#: includes/class-wc-countries.php:149 -msgid "Jordan" -msgstr "" - -#: includes/class-wc-countries.php:150 -msgid "Kazakhstan" -msgstr "" - -#: includes/class-wc-countries.php:151 -msgid "Kenya" -msgstr "" - -#: includes/class-wc-countries.php:152 -msgid "Kiribati" -msgstr "" - -#: includes/class-wc-countries.php:153 -msgid "Kuwait" -msgstr "" - -#: includes/class-wc-countries.php:154 -msgid "Kyrgyzstan" -msgstr "" - -#: includes/class-wc-countries.php:155 -msgid "Laos" -msgstr "" - -#: includes/class-wc-countries.php:156 -msgid "Latvia" -msgstr "" - -#: includes/class-wc-countries.php:157 -msgid "Lebanon" -msgstr "" - -#: includes/class-wc-countries.php:158 -msgid "Lesotho" -msgstr "" - -#: includes/class-wc-countries.php:159 -msgid "Liberia" -msgstr "" - -#: includes/class-wc-countries.php:160 -msgid "Libya" -msgstr "" - -#: includes/class-wc-countries.php:161 -msgid "Liechtenstein" -msgstr "" - -#: includes/class-wc-countries.php:162 -msgid "Lithuania" -msgstr "" - -#: includes/class-wc-countries.php:163 -msgid "Luxembourg" -msgstr "" - -#: includes/class-wc-countries.php:164 -msgid "Macao S.A.R., China" -msgstr "" - -#: includes/class-wc-countries.php:165 -msgid "Macedonia" -msgstr "" - -#: includes/class-wc-countries.php:166 -msgid "Madagascar" -msgstr "" - -#: includes/class-wc-countries.php:167 -msgid "Malawi" -msgstr "" - -#: includes/class-wc-countries.php:168 -msgid "Malaysia" -msgstr "" - -#: includes/class-wc-countries.php:169 -msgid "Maldives" -msgstr "" - -#: includes/class-wc-countries.php:170 -msgid "Mali" -msgstr "" - -#: includes/class-wc-countries.php:171 -msgid "Malta" -msgstr "" - -#: includes/class-wc-countries.php:172 -msgid "Marshall Islands" -msgstr "" - -#: includes/class-wc-countries.php:173 -msgid "Martinique" -msgstr "" - -#: includes/class-wc-countries.php:174 -msgid "Mauritania" -msgstr "" - -#: includes/class-wc-countries.php:175 -msgid "Mauritius" -msgstr "" - -#: includes/class-wc-countries.php:176 -msgid "Mayotte" -msgstr "" - -#: includes/class-wc-countries.php:177 -msgid "Mexico" -msgstr "" - -#: includes/class-wc-countries.php:178 -msgid "Micronesia" -msgstr "" - -#: includes/class-wc-countries.php:179 -msgid "Moldova" -msgstr "" - -#: includes/class-wc-countries.php:180 -msgid "Monaco" -msgstr "" - -#: includes/class-wc-countries.php:181 -msgid "Mongolia" -msgstr "" - -#: includes/class-wc-countries.php:182 -msgid "Montenegro" -msgstr "" - -#: includes/class-wc-countries.php:183 -msgid "Montserrat" -msgstr "" - -#: includes/class-wc-countries.php:184 -msgid "Morocco" -msgstr "" - -#: includes/class-wc-countries.php:185 -msgid "Mozambique" -msgstr "" - -#: includes/class-wc-countries.php:186 -msgid "Myanmar" -msgstr "" - -#: includes/class-wc-countries.php:187 -msgid "Namibia" -msgstr "" - -#: includes/class-wc-countries.php:188 -msgid "Nauru" -msgstr "" - -#: includes/class-wc-countries.php:189 -msgid "Nepal" -msgstr "" - -#: includes/class-wc-countries.php:190 -msgid "Netherlands" -msgstr "" - -#: includes/class-wc-countries.php:191 -msgid "Netherlands Antilles" -msgstr "" - -#: includes/class-wc-countries.php:192 -msgid "New Caledonia" -msgstr "" - -#: includes/class-wc-countries.php:193 -msgid "New Zealand" -msgstr "" - -#: includes/class-wc-countries.php:194 -msgid "Nicaragua" -msgstr "" - -#: includes/class-wc-countries.php:195 -msgid "Niger" -msgstr "" - -#: includes/class-wc-countries.php:196 -msgid "Nigeria" -msgstr "" - -#: includes/class-wc-countries.php:197 -msgid "Niue" -msgstr "" - -#: includes/class-wc-countries.php:198 -msgid "Norfolk Island" -msgstr "" - -#: includes/class-wc-countries.php:199 -msgid "North Korea" -msgstr "" - -#: includes/class-wc-countries.php:200 -msgid "Norway" -msgstr "" - -#: includes/class-wc-countries.php:201 -msgid "Oman" -msgstr "" - -#: includes/class-wc-countries.php:202 -msgid "Pakistan" -msgstr "" - -#: includes/class-wc-countries.php:203 -msgid "Palestinian Territory" -msgstr "" - -#: includes/class-wc-countries.php:204 -msgid "Panama" -msgstr "" - -#: includes/class-wc-countries.php:205 -msgid "Papua New Guinea" -msgstr "" - -#: includes/class-wc-countries.php:206 -msgid "Paraguay" -msgstr "" - -#: includes/class-wc-countries.php:207 -msgid "Peru" -msgstr "" - -#: includes/class-wc-countries.php:208 -msgid "Philippines" -msgstr "" - -#: includes/class-wc-countries.php:209 -msgid "Pitcairn" -msgstr "" - -#: includes/class-wc-countries.php:210 -msgid "Poland" -msgstr "" - -#: includes/class-wc-countries.php:211 -msgid "Portugal" -msgstr "" - -#: includes/class-wc-countries.php:212 -msgid "Qatar" -msgstr "" - -#: includes/class-wc-countries.php:213 -msgid "Reunion" -msgstr "" - -#: includes/class-wc-countries.php:214 -msgid "Romania" -msgstr "" - -#: includes/class-wc-countries.php:215 -msgid "Russia" -msgstr "" - -#: includes/class-wc-countries.php:216 -msgid "Rwanda" -msgstr "" - -#: includes/class-wc-countries.php:217 -msgid "Saint Barthélemy" -msgstr "" - -#: includes/class-wc-countries.php:218 -msgid "Saint Helena" -msgstr "" - -#: includes/class-wc-countries.php:219 -msgid "Saint Kitts and Nevis" -msgstr "" - -#: includes/class-wc-countries.php:220 -msgid "Saint Lucia" -msgstr "" - -#: includes/class-wc-countries.php:221 -msgid "Saint Martin (French part)" -msgstr "" - -#: includes/class-wc-countries.php:222 -msgid "Saint Martin (Dutch part)" -msgstr "" - -#: includes/class-wc-countries.php:223 -msgid "Saint Pierre and Miquelon" -msgstr "" - -#: includes/class-wc-countries.php:224 -msgid "Saint Vincent and the Grenadines" -msgstr "" - -#: includes/class-wc-countries.php:225 -msgid "San Marino" -msgstr "" - -#: includes/class-wc-countries.php:226 -msgid "São Tomé and Príncipe" -msgstr "" - -#: includes/class-wc-countries.php:227 -msgid "Saudi Arabia" -msgstr "" - -#: includes/class-wc-countries.php:228 -msgid "Senegal" -msgstr "" - -#: includes/class-wc-countries.php:229 -msgid "Serbia" -msgstr "" - -#: includes/class-wc-countries.php:230 -msgid "Seychelles" -msgstr "" - -#: includes/class-wc-countries.php:231 -msgid "Sierra Leone" -msgstr "" - -#: includes/class-wc-countries.php:232 -msgid "Singapore" -msgstr "" - -#: includes/class-wc-countries.php:233 -msgid "Slovakia" -msgstr "" - -#: includes/class-wc-countries.php:234 -msgid "Slovenia" -msgstr "" - -#: includes/class-wc-countries.php:235 -msgid "Solomon Islands" -msgstr "" - -#: includes/class-wc-countries.php:236 -msgid "Somalia" -msgstr "" - -#: includes/class-wc-countries.php:237 -msgid "South Africa" -msgstr "" - -#: includes/class-wc-countries.php:238 -msgid "South Georgia/Sandwich Islands" -msgstr "" - -#: includes/class-wc-countries.php:239 -msgid "South Korea" -msgstr "" - -#: includes/class-wc-countries.php:240 -msgid "South Sudan" -msgstr "" - -#: includes/class-wc-countries.php:241 -msgid "Spain" -msgstr "" - -#: includes/class-wc-countries.php:242 -msgid "Sri Lanka" -msgstr "" - -#: includes/class-wc-countries.php:243 -msgid "Sudan" -msgstr "" - -#: includes/class-wc-countries.php:244 -msgid "Suriname" -msgstr "" - -#: includes/class-wc-countries.php:245 -msgid "Svalbard and Jan Mayen" -msgstr "" - -#: includes/class-wc-countries.php:246 -msgid "Swaziland" -msgstr "" - -#: includes/class-wc-countries.php:247 -msgid "Sweden" -msgstr "" - -#: includes/class-wc-countries.php:248 -msgid "Switzerland" -msgstr "" - -#: includes/class-wc-countries.php:249 -msgid "Syria" -msgstr "" - -#: includes/class-wc-countries.php:250 -msgid "Taiwan" -msgstr "" - -#: includes/class-wc-countries.php:251 -msgid "Tajikistan" -msgstr "" - -#: includes/class-wc-countries.php:252 -msgid "Tanzania" -msgstr "" - -#: includes/class-wc-countries.php:253 -msgid "Thailand" -msgstr "" - -#: includes/class-wc-countries.php:254 -msgid "Timor-Leste" -msgstr "" - -#: includes/class-wc-countries.php:255 -msgid "Togo" -msgstr "" - -#: includes/class-wc-countries.php:256 -msgid "Tokelau" -msgstr "" - -#: includes/class-wc-countries.php:257 -msgid "Tonga" -msgstr "" - -#: includes/class-wc-countries.php:258 -msgid "Trinidad and Tobago" -msgstr "" - -#: includes/class-wc-countries.php:259 -msgid "Tunisia" -msgstr "" - -#: includes/class-wc-countries.php:260 -msgid "Turkey" -msgstr "" - -#: includes/class-wc-countries.php:261 -msgid "Turkmenistan" -msgstr "" - -#: includes/class-wc-countries.php:262 -msgid "Turks and Caicos Islands" -msgstr "" - -#: includes/class-wc-countries.php:263 -msgid "Tuvalu" -msgstr "" - -#: includes/class-wc-countries.php:264 -msgid "Uganda" -msgstr "" - -#: includes/class-wc-countries.php:265 -msgid "Ukraine" -msgstr "" - -#: includes/class-wc-countries.php:266 -msgid "United Arab Emirates" -msgstr "" - -#: includes/class-wc-countries.php:267 -msgid "United Kingdom (UK)" -msgstr "" - -#: includes/class-wc-countries.php:268 -msgid "United States (US)" -msgstr "" - -#: includes/class-wc-countries.php:269 -msgid "Uruguay" -msgstr "" - -#: includes/class-wc-countries.php:270 -msgid "Uzbekistan" -msgstr "" - -#: includes/class-wc-countries.php:271 -msgid "Vanuatu" -msgstr "" - -#: includes/class-wc-countries.php:272 -msgid "Vatican" -msgstr "" - -#: includes/class-wc-countries.php:273 -msgid "Venezuela" -msgstr "" - -#: includes/class-wc-countries.php:274 -msgid "Vietnam" -msgstr "" - -#: includes/class-wc-countries.php:275 -msgid "Wallis and Futuna" -msgstr "" - -#: includes/class-wc-countries.php:276 -msgid "Western Sahara" -msgstr "" - -#: includes/class-wc-countries.php:277 -msgid "Western Samoa" -msgstr "" - -#: includes/class-wc-countries.php:278 -msgid "Yemen" -msgstr "" - -#: includes/class-wc-countries.php:279 -msgid "Zambia" -msgstr "" - -#: includes/class-wc-countries.php:280 -msgid "Zimbabwe" -msgstr "" - -#: includes/class-wc-countries.php:485 -msgid "to the" -msgstr "" - -#: includes/class-wc-countries.php:486 -msgid "to" -msgstr "" - -#: includes/class-wc-countries.php:499 -msgid "the" -msgstr "" - -#: includes/class-wc-countries.php:511 -msgid "VAT" -msgstr "" - -#: includes/class-wc-countries.php:511 -msgid "Tax" -msgstr "" - -#: includes/class-wc-countries.php:524 -msgid "(incl. VAT)" -msgstr "" - -#: includes/class-wc-countries.php:524 -msgid "(incl. tax)" -msgstr "" - -#: includes/class-wc-countries.php:537 -msgid "(ex. VAT)" -msgstr "" - -#: includes/class-wc-countries.php:537 -msgid "(ex. tax)" -msgstr "" - -#: includes/class-wc-countries.php:719 -msgid "Country" -msgstr "" - -#: includes/class-wc-countries.php:724 -msgid "First Name" -msgstr "" - -#: includes/class-wc-countries.php:729 -msgid "Last Name" -msgstr "" - -#: includes/class-wc-countries.php:735 -msgid "Company Name" -msgstr "" - -#: includes/class-wc-countries.php:739 -msgid "Address" -msgstr "" - -#: includes/class-wc-countries.php:740 -msgctxt "placeholder" -msgid "Street address" -msgstr "" - -#: includes/class-wc-countries.php:745 -msgctxt "placeholder" -msgid "Apartment, suite, unit etc. (optional)" -msgstr "" - -#: includes/class-wc-countries.php:750 includes/class-wc-countries.php:751 -msgid "Town / City" -msgstr "" - -#: includes/class-wc-countries.php:757 includes/class-wc-countries.php:758 -msgid "State / County" -msgstr "" - -#: includes/class-wc-countries.php:764 includes/class-wc-countries.php:765 -#: templates/cart/shipping-calculator.php:80 -msgid "Postcode / Zip" -msgstr "" - -#: includes/class-wc-countries.php:826 includes/class-wc-countries.php:842 -#: includes/class-wc-countries.php:862 includes/class-wc-countries.php:923 -#: includes/class-wc-countries.php:942 includes/class-wc-countries.php:970 -#: includes/class-wc-countries.php:1020 includes/class-wc-countries.php:1044 -#: includes/class-wc-countries.php:1085 -msgid "Province" -msgstr "" - -#: includes/class-wc-countries.php:848 -msgid "Canton" -msgstr "" - -#: includes/class-wc-countries.php:857 includes/class-wc-countries.php:1026 -msgid "Municipality" -msgstr "" - -#: includes/class-wc-countries.php:910 -msgid "Town / District" -msgstr "" - -#: includes/class-wc-countries.php:913 -msgid "Region" -msgstr "" - -#: includes/class-wc-countries.php:918 includes/class-wc-countries.php:1060 -msgid "County" -msgstr "" - -#: includes/class-wc-countries.php:1049 -msgid "Zip" -msgstr "" - -#: includes/class-wc-countries.php:1052 -msgid "State" -msgstr "" - -#: includes/class-wc-countries.php:1057 -msgid "Postcode" -msgstr "" - -#: includes/class-wc-countries.php:1165 -msgid "Email Address" -msgstr "" - -#: includes/class-wc-countries.php:1171 -msgid "Phone" -msgstr "" - -#: includes/class-wc-coupon.php:568 -msgid "Coupon code applied successfully." -msgstr "" - -#: includes/class-wc-coupon.php:571 -msgid "Coupon code removed successfully." -msgstr "" - -#: includes/class-wc-coupon.php:592 -msgid "Coupon is not valid." -msgstr "" - -#: includes/class-wc-coupon.php:595 includes/class-wc-coupon.php:645 -msgid "Coupon does not exist!" -msgstr "" - -#: includes/class-wc-coupon.php:598 -msgid "Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from your order." -msgstr "" - -#: includes/class-wc-coupon.php:601 -msgid "Sorry, it seems the coupon \"%s\" is not yours - it has now been removed from your order." -msgstr "" - -#: includes/class-wc-coupon.php:604 -msgid "Coupon code already applied!" -msgstr "" - -#: includes/class-wc-coupon.php:607 -msgid "Sorry, coupon \"%s\" has already been applied and cannot be used in conjunction with other coupons." -msgstr "" - -#: includes/class-wc-coupon.php:610 -msgid "Coupon usage limit has been reached." -msgstr "" - -#: includes/class-wc-coupon.php:613 -msgid "This coupon has expired." -msgstr "" - -#: includes/class-wc-coupon.php:616 -msgid "The minimum spend for this coupon is %s." -msgstr "" - -#: includes/class-wc-coupon.php:619 -msgid "Sorry, this coupon is not applicable to your cart contents." -msgstr "" - -#: includes/class-wc-coupon.php:622 -msgid "Sorry, this coupon is not valid for sale items." -msgstr "" - -#: includes/class-wc-coupon.php:648 -msgid "Please enter a coupon code." -msgstr "" - -#: includes/class-wc-download-handler.php:37 -msgid "Invalid email address." -msgstr "" - -#: includes/class-wc-download-handler.php:37 -#: includes/class-wc-download-handler.php:61 -#: includes/class-wc-download-handler.php:81 -#: includes/class-wc-download-handler.php:87 -#: includes/class-wc-download-handler.php:91 -#: includes/class-wc-download-handler.php:94 -#: includes/class-wc-download-handler.php:137 -#: includes/class-wc-download-handler.php:274 -msgid "Go to homepage" -msgstr "" - -#: includes/class-wc-download-handler.php:61 -msgid "Invalid download." -msgstr "" - -#: includes/class-wc-download-handler.php:73 -msgid "You must be logged in to download files." -msgstr "" - -#: includes/class-wc-download-handler.php:73 templates/global/form-login.php:35 -#: templates/myaccount/form-login.php:25 templates/myaccount/form-login.php:44 -#: templates/shop/form-login.php:35 -msgid "Login" -msgstr "" - -#: includes/class-wc-download-handler.php:73 -msgid "Log in to Download Files" -msgstr "" - -#: includes/class-wc-download-handler.php:76 -msgid "This is not your download link." -msgstr "" - -#: includes/class-wc-download-handler.php:81 -msgid "Product no longer exists." -msgstr "" - -#: includes/class-wc-download-handler.php:87 -#: includes/class-wc-form-handler.php:470 -#: includes/shortcodes/class-wc-shortcode-checkout.php:86 -#: includes/shortcodes/class-wc-shortcode-checkout.php:167 -#: includes/shortcodes/class-wc-shortcode-my-account.php:106 -#: includes/shortcodes/class-wc-shortcode-view-order.php:49 -msgid "Invalid order." -msgstr "" - -#: includes/class-wc-download-handler.php:91 -msgid "Sorry, you have reached your download limit for this file" -msgstr "" - -#: includes/class-wc-download-handler.php:94 -msgid "Sorry, this download has expired" -msgstr "" - -#: includes/class-wc-download-handler.php:137 -msgid "No file defined" -msgstr "" - -#: includes/class-wc-download-handler.php:274 -msgid "File not found" -msgstr "" - -#: includes/class-wc-emails.php:289 -msgid "Note" -msgstr "" - -#: includes/class-wc-emails.php:325 -msgid "Product low in stock" -msgstr "" - -#: includes/class-wc-emails.php:330 includes/class-wc-emails.php:362 -#: includes/class-wc-emails.php:406 +#: includes/api/class-wc-api-products.php:1085 includes/class-wc-emails.php:334 +#: includes/class-wc-emails.php:366 includes/class-wc-emails.php:410 msgid "Variation #%s of %s" msgstr "" -#: includes/class-wc-emails.php:332 includes/class-wc-emails.php:364 -#: includes/class-wc-emails.php:408 +#: includes/api/class-wc-api-products.php:1529 +#: includes/api/class-wc-api-products.php:1530 +#: includes/api/v1/class-wc-api-products.php:459 +#: includes/api/v1/class-wc-api-products.php:460 +#: includes/wc-product-functions.php:267 +#: templates/single-product/product-image.php:38 +msgid "Placeholder" +msgstr "" + +#: includes/api/class-wc-api-products.php:1603 +msgid "Invalid URL %s" +msgstr "" + +#: includes/api/class-wc-api-products.php:1615 +msgid "Error getting remote image %s" +msgstr "" + +#: includes/api/class-wc-api-products.php:1644 +msgid "Zero size file downloaded" +msgstr "" + +#: includes/api/class-wc-api-reports.php:471 +#: includes/api/v1/class-wc-api-reports.php:470 +msgid "You do not have permission to read this report" +msgstr "" + +#: includes/api/class-wc-api-resource.php:82 +#: includes/api/v1/class-wc-api-resource.php:72 +msgid "Invalid %s ID" +msgstr "" + +#: includes/api/class-wc-api-resource.php:94 +#: includes/api/v1/class-wc-api-resource.php:84 +msgid "Invalid %s" +msgstr "" + +#: includes/api/class-wc-api-resource.php:101 +#: includes/api/v1/class-wc-api-resource.php:91 +msgid "You do not have permission to read this %s" +msgstr "" + +#: includes/api/class-wc-api-resource.php:106 +#: includes/api/v1/class-wc-api-resource.php:96 +msgid "You do not have permission to edit this %s" +msgstr "" + +#: includes/api/class-wc-api-resource.php:111 +#: includes/api/v1/class-wc-api-resource.php:101 +msgid "You do not have permission to delete this %s" +msgstr "" + +#: includes/api/class-wc-api-resource.php:343 +#: includes/api/v1/class-wc-api-resource.php:303 +msgid "Permanently deleted customer" +msgstr "" + +#: includes/api/class-wc-api-resource.php:345 +#: includes/api/v1/class-wc-api-resource.php:305 +msgid "The customer cannot be deleted" +msgstr "" + +#: includes/api/class-wc-api-resource.php:354 +#: includes/api/v1/class-wc-api-resource.php:314 +msgid "This %s cannot be deleted" +msgstr "" + +#: includes/api/class-wc-api-resource.php:357 +#: includes/api/v1/class-wc-api-resource.php:317 +msgid "Permanently deleted %s" +msgstr "" + +#: includes/api/class-wc-api-resource.php:363 +#: includes/api/v1/class-wc-api-resource.php:323 +msgid "Deleted %s" +msgstr "" + +#: includes/api/class-wc-api-server.php:158 +#: includes/api/v1/class-wc-api-server.php:166 +msgid "Invalid authentication method" +msgstr "" + +#: includes/api/class-wc-api-server.php:309 +#: includes/api/v1/class-wc-api-server.php:317 +msgid "Unsupported request method" +msgstr "" + +#: includes/api/class-wc-api-server.php:326 +#: includes/api/v1/class-wc-api-server.php:334 +msgid "The handler for the route is invalid" +msgstr "" + +#: includes/api/class-wc-api-server.php:362 +#: includes/api/v1/class-wc-api-server.php:370 +msgid "No route was found matching the URL and request method" +msgstr "" + +#: includes/api/class-wc-api-webhooks.php:147 +msgid "You do not have permission to read the webhooks count" +msgstr "" + +#: includes/api/class-wc-api-webhooks.php:168 +msgid "You do not have permission to create webhooks" +msgstr "" + +#: includes/api/class-wc-api-webhooks.php:175 +msgid "Webhook topic is required and must be valid" +msgstr "" + +#: includes/api/class-wc-api-webhooks.php:180 +#: includes/api/class-wc-api-webhooks.php:266 +msgid "Webhook delivery URL must be a valid URL starting with http:// or https://" +msgstr "" + +#: includes/api/class-wc-api-webhooks.php:189 +msgid "Webhook created on %s" +msgstr "" + +#: includes/api/class-wc-api-webhooks.php:195 +msgid "Cannot create webhook: %s" +msgstr "" + +#: includes/api/class-wc-api-webhooks.php:255 +msgid "Webhook topic must be valid" +msgstr "" + +#: includes/api/class-wc-api-webhooks.php:479 +msgid "Invalid webhook delivery ID" +msgstr "" + +#: includes/api/class-wc-api-webhooks.php:487 +msgid "Invalid webhook delivery" +msgstr "" + +#: includes/class-wc-ajax.php:164 +msgid "Sorry, your session has expired." +msgstr "" + +#: includes/class-wc-ajax.php:164 +msgid "Return to homepage" +msgstr "" + +#: includes/class-wc-ajax.php:318 includes/class-wc-ajax.php:351 +#: includes/class-wc-ajax.php:376 +msgid "You do not have sufficient permissions to access this page." +msgstr "" + +#: includes/class-wc-ajax.php:322 includes/class-wc-ajax.php:355 +#: includes/class-wc-ajax.php:380 +msgid "You have taken too long. Please go back and retry." +msgstr "" + +#: includes/class-wc-ajax.php:611 +msgid "Same as parent" +msgstr "" + +#: includes/class-wc-ajax.php:612 +msgid "Standard" +msgstr "" + +#: includes/class-wc-ajax.php:621 +msgid "Do not allow" +msgstr "" + +#: includes/class-wc-ajax.php:622 +msgid "Allow, but notify customer" +msgstr "" + +#: includes/class-wc-ajax.php:623 +msgid "Allow" +msgstr "" + +#: includes/class-wc-ajax.php:902 +msgid "File %d" +msgstr "" + +#: includes/class-wc-ajax.php:1176 +msgid "" +"No products had their stock reduced - they may not have stock management " +"enabled." +msgstr "" + +#: includes/class-wc-ajax.php:1215 includes/class-wc-ajax.php:1216 +#: includes/class-wc-ajax.php:1863 +msgid "Item #%s stock increased from %s to %s." +msgstr "" + +#: includes/class-wc-ajax.php:1223 +msgid "" +"No products had their stock increased - they may not have stock management " +"enabled." +msgstr "" + +#: includes/class-wc-ajax.php:1238 +#: includes/widgets/class-wc-widget-product-categories.php:39 +#: templates/single-product-reviews.php:62 +msgid "Name" +msgstr "" + +#: includes/class-wc-ajax.php:1238 +msgid "Value" +msgstr "" + +#: includes/class-wc-ajax.php:1472 +msgid "Delete note" +msgstr "" + +#: includes/class-wc-ajax.php:1617 +msgid "Guest" +msgstr "" + +#: includes/class-wc-ajax.php:1842 +msgid "Invalid refund amount" +msgstr "" + +#: includes/class-wc-ajax.php:1897 +msgid "Refund failed" +msgstr "" + +#: includes/class-wc-cache-helper.php:137 +msgid "" +"In order for database caching to work with WooCommerce you " +"must add _wc_session_ to the \"Ignored Query Strings\" option " +"in W3 Total Cache settings here." +msgstr "" + +#: includes/class-wc-cart.php:206 +msgid "" +"%s has been removed from your cart because it can no longer be purchased. " +"Please contact us if you need assistance." +msgstr "" + +#: includes/class-wc-cart.php:413 +msgid "An item which is no longer available was removed from your cart." +msgstr "" + +#: includes/class-wc-cart.php:444 +msgid "" +"Sorry, \"%s\" is not in stock. Please edit your cart and try again. We " +"apologise for any inconvenience caused." +msgstr "" + +#: includes/class-wc-cart.php:458 +msgid "" +"Sorry, we do not have enough \"%s\" in stock to fulfill your order (%s in " +"stock). Please edit your cart and try again. We apologise for any " +"inconvenience caused." +msgstr "" + +#: includes/class-wc-cart.php:493 +msgid "" +"Sorry, we do not have enough \"%s\" in stock to fulfill your order right " +"now. Please try again in %d minutes or edit your cart and try again. We " +"apologise for any inconvenience caused." +msgstr "" + +#: includes/class-wc-cart.php:825 +msgid "Sorry, this product cannot be purchased." +msgstr "" + +#: includes/class-wc-cart.php:832 +msgid "" +"You cannot add "%s" to the cart because the product is out of " +"stock." +msgstr "" + +#: includes/class-wc-cart.php:837 +msgid "" +"You cannot add that amount of "%s" to the cart because there is " +"not enough stock (%s remaining)." +msgstr "" + +#: includes/class-wc-cart.php:851 includes/class-wc-cart.php:875 +#: includes/class-wc-frontend-scripts.php:188 includes/wc-cart-functions.php:96 +#: templates/cart/mini-cart.php:65 +msgid "View Cart" +msgstr "" + +#: includes/class-wc-cart.php:852 +msgid "You cannot add another "%s" to your cart." +msgstr "" + +#: includes/class-wc-cart.php:876 +msgid "" +"You cannot add that amount to the cart — we have %s in stock and you " +"already have %s in your cart." +msgstr "" + +#: includes/class-wc-checkout.php:63 includes/class-wc-checkout.php:72 +#: includes/class-wc-emails.php:66 includes/class-wc-emails.php:75 +#: includes/class-wc-payment-gateways.php:46 +#: includes/class-wc-payment-gateways.php:55 includes/class-wc-shipping.php:63 +#: includes/class-wc-shipping.php:72 woocommerce.php:107 woocommerce.php:116 +msgid "Cheatin’ huh?" +msgstr "" + +#: includes/class-wc-checkout.php:96 +msgid "Account username" +msgstr "" + +#: includes/class-wc-checkout.php:105 +msgid "Account password" +msgstr "" + +#: includes/class-wc-checkout.php:115 +msgid "Order Notes" +msgstr "" + +#: includes/class-wc-checkout.php:187 includes/class-wc-checkout.php:198 +#: includes/class-wc-checkout.php:223 includes/class-wc-checkout.php:235 +#: includes/class-wc-checkout.php:248 includes/class-wc-checkout.php:259 +#: includes/class-wc-checkout.php:266 +msgid "Error: Unable to create order. Please try again." +msgstr "" + +#: includes/class-wc-checkout.php:344 +msgid "" +"Sorry, your session has expired. Return to homepage" +msgstr "" + +#: includes/class-wc-checkout.php:421 includes/class-wc-form-handler.php:84 +msgid "is a required field." +msgstr "" + +#: includes/class-wc-checkout.php:433 includes/class-wc-form-handler.php:97 +#: includes/shortcodes/class-wc-shortcode-cart.php:43 +msgid "Please enter a valid postcode/ZIP." +msgstr "" + +#: includes/class-wc-checkout.php:442 includes/class-wc-form-handler.php:106 +msgid "is not a valid phone number." +msgstr "" + +#: includes/class-wc-checkout.php:448 includes/class-wc-form-handler.php:113 +msgid "is not a valid email address." +msgstr "" + +#: includes/class-wc-checkout.php:463 +msgid "is not valid. Please enter one of the following:" +msgstr "" + +#: includes/class-wc-checkout.php:508 +msgid "You must accept our Terms & Conditions." +msgstr "" + +#: includes/class-wc-checkout.php:513 +msgid "" +"Unfortunately we do not ship %s. Please enter an " +"alternative shipping address." +msgstr "" + +#: includes/class-wc-checkout.php:521 +msgid "Invalid shipping method." +msgstr "" + +#: includes/class-wc-checkout.php:534 +msgid "Invalid payment method." +msgstr "" + +#: includes/class-wc-comments.php:187 +msgid "Please rate the product." +msgstr "" + +#: includes/class-wc-countries.php:269 +msgid "to the" +msgstr "" + +#: includes/class-wc-countries.php:270 +msgid "to" +msgstr "" + +#: includes/class-wc-countries.php:282 +msgid "the" +msgstr "" + +#: includes/class-wc-countries.php:294 +msgid "VAT" +msgstr "" + +#: includes/class-wc-countries.php:294 +msgid "Tax" +msgstr "" + +#: includes/class-wc-countries.php:306 +msgid "(incl. VAT)" +msgstr "" + +#: includes/class-wc-countries.php:306 +msgid "(incl. tax)" +msgstr "" + +#: includes/class-wc-countries.php:318 +msgid "(ex. VAT)" +msgstr "" + +#: includes/class-wc-countries.php:318 +msgid "(ex. tax)" +msgstr "" + +#: includes/class-wc-countries.php:492 +msgid "Country" +msgstr "" + +#: includes/class-wc-countries.php:497 +msgid "First Name" +msgstr "" + +#: includes/class-wc-countries.php:502 +msgid "Last Name" +msgstr "" + +#: includes/class-wc-countries.php:508 +msgid "Company Name" +msgstr "" + +#: includes/class-wc-countries.php:512 +msgid "Address" +msgstr "" + +#: includes/class-wc-countries.php:523 includes/class-wc-countries.php:524 +msgid "Town / City" +msgstr "" + +#: includes/class-wc-countries.php:530 includes/class-wc-countries.php:531 +msgid "State / County" +msgstr "" + +#: includes/class-wc-countries.php:537 includes/class-wc-countries.php:538 +#: templates/cart/shipping-calculator.php:78 +msgid "Postcode / Zip" +msgstr "" + +#: includes/class-wc-countries.php:597 +msgid "Suburb" +msgstr "" + +#: includes/class-wc-countries.php:600 includes/class-wc-countries.php:844 +msgid "Postcode" +msgstr "" + +#: includes/class-wc-countries.php:603 includes/class-wc-countries.php:839 +msgid "State" +msgstr "" + +#: includes/class-wc-countries.php:611 +msgid "District" +msgstr "" + +#: includes/class-wc-countries.php:618 includes/class-wc-countries.php:640 +#: includes/class-wc-countries.php:660 includes/class-wc-countries.php:721 +#: includes/class-wc-countries.php:740 includes/class-wc-countries.php:757 +#: includes/class-wc-countries.php:807 includes/class-wc-countries.php:831 +#: includes/class-wc-countries.php:872 +msgid "Province" +msgstr "" + +#: includes/class-wc-countries.php:646 +msgid "Canton" +msgstr "" + +#: includes/class-wc-countries.php:655 includes/class-wc-countries.php:813 +msgid "Municipality" +msgstr "" + +#: includes/class-wc-countries.php:708 +msgid "Town / District" +msgstr "" + +#: includes/class-wc-countries.php:711 +msgid "Region" +msgstr "" + +#: includes/class-wc-countries.php:716 includes/class-wc-countries.php:847 +msgid "County" +msgstr "" + +#: includes/class-wc-countries.php:745 +msgid "Prefecture" +msgstr "" + +#: includes/class-wc-countries.php:836 +msgid "Zip" +msgstr "" + +#: includes/class-wc-countries.php:952 +msgid "Email Address" +msgstr "" + +#: includes/class-wc-countries.php:958 +msgid "Phone" +msgstr "" + +#: includes/class-wc-coupon.php:609 +msgid "Coupon code applied successfully." +msgstr "" + +#: includes/class-wc-coupon.php:612 +msgid "Coupon code removed successfully." +msgstr "" + +#: includes/class-wc-coupon.php:633 +msgid "Coupon is not valid." +msgstr "" + +#: includes/class-wc-coupon.php:636 includes/class-wc-coupon.php:689 +msgid "Coupon does not exist!" +msgstr "" + +#: includes/class-wc-coupon.php:639 +msgid "" +"Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from " +"your order." +msgstr "" + +#: includes/class-wc-coupon.php:642 +msgid "" +"Sorry, it seems the coupon \"%s\" is not yours - it has now been removed " +"from your order." +msgstr "" + +#: includes/class-wc-coupon.php:645 +msgid "Coupon code already applied!" +msgstr "" + +#: includes/class-wc-coupon.php:648 +msgid "" +"Sorry, coupon \"%s\" has already been applied and cannot be used in " +"conjunction with other coupons." +msgstr "" + +#: includes/class-wc-coupon.php:651 +msgid "Coupon usage limit has been reached." +msgstr "" + +#: includes/class-wc-coupon.php:654 +msgid "This coupon has expired." +msgstr "" + +#: includes/class-wc-coupon.php:657 +msgid "The minimum spend for this coupon is %s." +msgstr "" + +#: includes/class-wc-coupon.php:660 +msgid "The maximum spend for this coupon is %s." +msgstr "" + +#: includes/class-wc-coupon.php:663 +msgid "Sorry, this coupon is not applicable to your cart contents." +msgstr "" + +#: includes/class-wc-coupon.php:666 +msgid "Sorry, this coupon is not valid for sale items." +msgstr "" + +#: includes/class-wc-coupon.php:692 +msgid "Please enter a coupon code." +msgstr "" + +#: includes/class-wc-download-handler.php:42 +msgid "Invalid email address." +msgstr "" + +#: includes/class-wc-download-handler.php:42 +#: includes/class-wc-download-handler.php:67 +#: includes/class-wc-download-handler.php:88 +#: includes/class-wc-download-handler.php:95 +#: includes/class-wc-download-handler.php:100 +#: includes/class-wc-download-handler.php:104 +#: includes/class-wc-download-handler.php:149 +#: includes/class-wc-download-handler.php:313 +msgid "Go to homepage" +msgstr "" + +#: includes/class-wc-download-handler.php:67 +msgid "Invalid download." +msgstr "" + +#: includes/class-wc-download-handler.php:80 +msgid "You must be logged in to download files." +msgstr "" + +#: includes/class-wc-download-handler.php:80 templates/global/form-login.php:35 +#: templates/myaccount/form-login.php:27 templates/myaccount/form-login.php:46 +msgid "Login" +msgstr "" + +#: includes/class-wc-download-handler.php:80 +msgid "Log in to Download Files" +msgstr "" + +#: includes/class-wc-download-handler.php:82 +msgid "This is not your download link." +msgstr "" + +#: includes/class-wc-download-handler.php:88 +msgid "Product no longer exists." +msgstr "" + +#: includes/class-wc-download-handler.php:95 +#: includes/class-wc-form-handler.php:542 +#: includes/shortcodes/class-wc-shortcode-checkout.php:167 +#: includes/shortcodes/class-wc-shortcode-my-account.php:111 +msgid "Invalid order." +msgstr "" + +#: includes/class-wc-download-handler.php:100 +msgid "Sorry, you have reached your download limit for this file" +msgstr "" + +#: includes/class-wc-download-handler.php:104 +msgid "Sorry, this download has expired" +msgstr "" + +#: includes/class-wc-download-handler.php:149 +msgid "No file defined" +msgstr "" + +#: includes/class-wc-download-handler.php:313 +msgid "File not found" +msgstr "" + +#: includes/class-wc-emails.php:287 +msgid "Note" +msgstr "" + +#: includes/class-wc-emails.php:329 +msgid "Product low in stock" +msgstr "" + +#: includes/class-wc-emails.php:336 includes/class-wc-emails.php:368 +#: includes/class-wc-emails.php:412 msgid "Product #%s - %s" msgstr "" -#: includes/class-wc-emails.php:334 +#: includes/class-wc-emails.php:338 msgid "is low in stock." msgstr "" -#: includes/class-wc-emails.php:357 +#: includes/class-wc-emails.php:361 msgid "Product out of stock" msgstr "" -#: includes/class-wc-emails.php:366 +#: includes/class-wc-emails.php:370 msgid "is out of stock." msgstr "" -#: includes/class-wc-emails.php:401 +#: includes/class-wc-emails.php:405 msgid "Product Backorder" msgstr "" -#: includes/class-wc-emails.php:411 +#: includes/class-wc-emails.php:415 msgid "%s units of %s have been backordered in order %s." msgstr "" -#: includes/class-wc-form-handler.php:119 +#: includes/class-wc-form-handler.php:128 msgid "Address changed successfully." msgstr "" -#: includes/class-wc-form-handler.php:166 +#: includes/class-wc-form-handler.php:177 msgid "Please enter your name." msgstr "" -#: includes/class-wc-form-handler.php:169 includes/wc-customer-functions.php:46 +#: includes/class-wc-form-handler.php:181 includes/wc-user-functions.php:48 msgid "Please provide a valid email address." msgstr "" -#: includes/class-wc-form-handler.php:172 +#: includes/class-wc-form-handler.php:183 msgid "This email address is already registered." msgstr "" -#: includes/class-wc-form-handler.php:175 +#: includes/class-wc-form-handler.php:187 +msgid "Your current password is incorrect." +msgstr "" + +#: includes/class-wc-form-handler.php:192 +msgid "Please fill out all password fields." +msgstr "" + +#: includes/class-wc-form-handler.php:196 +msgid "Please enter your current password." +msgstr "" + +#: includes/class-wc-form-handler.php:200 msgid "Please re-enter your password." msgstr "" -#: includes/class-wc-form-handler.php:178 -#: includes/class-wc-form-handler.php:747 +#: includes/class-wc-form-handler.php:204 +#: includes/class-wc-form-handler.php:832 msgid "Passwords do not match." msgstr "" -#: includes/class-wc-form-handler.php:191 +#: includes/class-wc-form-handler.php:226 msgid "Account details changed successfully." msgstr "" -#: includes/class-wc-form-handler.php:311 +#: includes/class-wc-form-handler.php:351 msgid "Payment method added." msgstr "" -#: includes/class-wc-form-handler.php:331 -#: includes/class-wc-form-handler.php:378 +#: includes/class-wc-form-handler.php:384 +#: includes/class-wc-form-handler.php:443 msgid "Cart updated." msgstr "" -#: includes/class-wc-form-handler.php:362 +#: includes/class-wc-form-handler.php:419 msgid "You can only have 1 %s in your cart." msgstr "" -#: includes/class-wc-form-handler.php:440 +#: includes/class-wc-form-handler.php:509 msgid "The cart has been filled with the items from your previous order." msgstr "" -#: includes/class-wc-form-handler.php:460 +#: includes/class-wc-form-handler.php:532 msgid "Order cancelled by customer." msgstr "" -#: includes/class-wc-form-handler.php:463 +#: includes/class-wc-form-handler.php:535 msgid "Your order was cancelled." msgstr "" -#: includes/class-wc-form-handler.php:468 -msgid "Your order can no longer be cancelled. Please contact us if you need assistance." +#: includes/class-wc-form-handler.php:540 +msgid "" +"Your order can no longer be cancelled. Please contact us if you need " +"assistance." msgstr "" -#: includes/class-wc-form-handler.php:505 -#: includes/class-wc-form-handler.php:563 +#: includes/class-wc-form-handler.php:580 +#: includes/class-wc-form-handler.php:640 msgid "Please choose product options…" msgstr "" -#: includes/class-wc-form-handler.php:596 +#: includes/class-wc-form-handler.php:674 msgid "Please choose the quantity of items you wish to add to your cart…" msgstr "" -#: includes/class-wc-form-handler.php:603 +#: includes/class-wc-form-handler.php:681 msgid "Please choose a product to add to your cart…" msgstr "" -#: includes/class-wc-form-handler.php:663 -#: includes/class-wc-form-handler.php:666 -#: includes/class-wc-form-handler.php:669 -#: includes/class-wc-form-handler.php:677 +#: includes/class-wc-form-handler.php:741 +#: includes/class-wc-form-handler.php:745 +#: includes/class-wc-form-handler.php:749 +#: includes/class-wc-form-handler.php:758 +#: includes/class-wc-form-handler.php:884 msgid "Error" msgstr "" -#: includes/class-wc-form-handler.php:666 +#: includes/class-wc-form-handler.php:745 msgid "Username is required." msgstr "" -#: includes/class-wc-form-handler.php:669 +#: includes/class-wc-form-handler.php:749 msgid "Password is required." msgstr "" -#: includes/class-wc-form-handler.php:677 +#: includes/class-wc-form-handler.php:758 msgid "A user could not be found with this email address." msgstr "" -#: includes/class-wc-form-handler.php:700 +#: includes/class-wc-form-handler.php:783 msgid "You are now logged in as %s" msgstr "" -#: includes/class-wc-form-handler.php:742 +#: includes/class-wc-form-handler.php:827 msgid "Please enter your password." msgstr "" -#: includes/class-wc-form-handler.php:763 -msgid "Your password has been reset." -msgstr "" - -#: includes/class-wc-form-handler.php:763 -msgid "Log in" -msgstr "" - -#: includes/class-wc-form-handler.php:787 -#: includes/wc-customer-functions.php:107 +#: includes/class-wc-form-handler.php:900 includes/wc-user-functions.php:112 msgid "ERROR" msgstr "" -#: includes/class-wc-form-handler.php:787 +#: includes/class-wc-form-handler.php:900 msgid "Anti-spam field was filled in." msgstr "" -#: includes/class-wc-frontend-scripts.php:109 +#: includes/class-wc-frontend-scripts.php:149 msgid "Please select a rating" msgstr "" -#: includes/class-wc-frontend-scripts.php:116 -#: includes/wc-template-functions.php:1556 +#: includes/class-wc-frontend-scripts.php:168 +#: includes/wc-template-functions.php:1621 msgid "required" msgstr "" -#: includes/class-wc-frontend-scripts.php:147 -msgid "Sorry, no products matched your selection. Please choose a different combination." +#: includes/class-wc-frontend-scripts.php:196 +msgid "" +"Sorry, no products matched your selection. Please choose a different " +"combination." msgstr "" -#: includes/class-wc-frontend-scripts.php:148 +#: includes/class-wc-frontend-scripts.php:197 msgid "Sorry, this product is unavailable. Please choose a different combination." msgstr "" -#: includes/class-wc-frontend-scripts.php:153 +#: includes/class-wc-frontend-scripts.php:204 msgid "Select an option…" msgstr "" -#: includes/class-wc-install.php:209 -msgctxt "page_slug" -msgid "shop" -msgstr "" - -#: includes/class-wc-install.php:210 -msgid "Shop" -msgstr "" - -#: includes/class-wc-install.php:214 -msgctxt "page_slug" -msgid "cart" -msgstr "" - -#: includes/class-wc-install.php:215 -#: includes/widgets/class-wc-widget-cart.php:29 -#: includes/widgets/class-wc-widget-cart.php:56 -msgid "Cart" -msgstr "" - -#: includes/class-wc-install.php:219 -msgctxt "page_slug" -msgid "checkout" -msgstr "" - -#: includes/class-wc-install.php:220 templates/cart/mini-cart.php:65 -msgid "Checkout" -msgstr "" - -#: includes/class-wc-install.php:224 -msgctxt "page_slug" -msgid "my-account" -msgstr "" - -#: includes/class-wc-install.php:422 +#: includes/class-wc-install.php:458 msgid "Customer" msgstr "" -#: includes/class-wc-install.php:429 +#: includes/class-wc-install.php:465 msgid "Shop Manager" msgstr "" -#: includes/class-wc-install.php:663 -msgid "What's new:" +#: includes/class-wc-install.php:701 +msgid "View WooCommerce Settings" msgstr "" -#: includes/class-wc-order.php:130 -msgctxt "hash before order number" -msgid "#" +#: includes/class-wc-install.php:718 +msgid "View WooCommerce Documentation" msgstr "" -#: includes/class-wc-order.php:795 -msgid " %svia %s" +#: includes/class-wc-install.php:718 +msgid "Docs" msgstr "" -#: includes/class-wc-order.php:856 -msgid "Cart Subtotal:" +#: includes/class-wc-install.php:719 +msgid "View WooCommerce API Docs" msgstr "" -#: includes/class-wc-order.php:862 -msgid "Cart Discount:" +#: includes/class-wc-install.php:719 +msgid "API Docs" msgstr "" -#: includes/class-wc-order.php:868 -msgid "Shipping:" +#: includes/class-wc-install.php:720 +msgid "Visit Premium Customer Support Forum" msgstr "" -#: includes/class-wc-order.php:913 -msgid "Order Discount:" +#: includes/class-wc-install.php:720 +msgid "Premium Support" msgstr "" -#: includes/class-wc-order.php:918 -msgid "Order Total:" -msgstr "" - -#: includes/class-wc-order.php:936 includes/wc-cart-functions.php:219 -msgid "(Includes %s)" -msgstr "" - -#: includes/class-wc-order.php:1173 includes/class-wc-order.php:1174 -msgid "WooCommerce" -msgstr "" - -#: includes/class-wc-order.php:1227 -msgid "Order status changed from %s to %s." -msgstr "" - -#: includes/class-wc-order.php:1483 -msgid "Order item stock reduced successfully." -msgstr "" - -#: includes/class-wc-post-types.php:62 includes/class-wc-post-types.php:64 +#: includes/class-wc-post-types.php:58 includes/class-wc-post-types.php:60 #: includes/widgets/class-wc-widget-product-categories.php:30 msgid "Product Categories" msgstr "" -#: includes/class-wc-post-types.php:65 +#: includes/class-wc-post-types.php:61 msgid "Product Category" msgstr "" -#: includes/class-wc-post-types.php:66 -msgctxt "Admin menu name" -msgid "Categories" -msgstr "" - -#: includes/class-wc-post-types.php:67 +#: includes/class-wc-post-types.php:63 msgid "Search Product Categories" msgstr "" -#: includes/class-wc-post-types.php:68 +#: includes/class-wc-post-types.php:64 msgid "All Product Categories" msgstr "" -#: includes/class-wc-post-types.php:69 +#: includes/class-wc-post-types.php:65 msgid "Parent Product Category" msgstr "" -#: includes/class-wc-post-types.php:70 +#: includes/class-wc-post-types.php:66 msgid "Parent Product Category:" msgstr "" -#: includes/class-wc-post-types.php:71 +#: includes/class-wc-post-types.php:67 msgid "Edit Product Category" msgstr "" -#: includes/class-wc-post-types.php:72 +#: includes/class-wc-post-types.php:68 msgid "Update Product Category" msgstr "" -#: includes/class-wc-post-types.php:73 +#: includes/class-wc-post-types.php:69 msgid "Add New Product Category" msgstr "" -#: includes/class-wc-post-types.php:74 +#: includes/class-wc-post-types.php:70 msgid "New Product Category Name" msgstr "" -#: includes/class-wc-post-types.php:85 -#: includes/updates/woocommerce-update-2.0.php:49 -msgctxt "slug" -msgid "product-category" -msgstr "" - -#: includes/class-wc-post-types.php:97 includes/class-wc-post-types.php:99 +#: includes/class-wc-post-types.php:93 includes/class-wc-post-types.php:95 #: includes/widgets/class-wc-widget-product-tag-cloud.php:27 msgid "Product Tags" msgstr "" -#: includes/class-wc-post-types.php:100 +#: includes/class-wc-post-types.php:96 msgid "Product Tag" msgstr "" -#: includes/class-wc-post-types.php:101 -msgctxt "Admin menu name" -msgid "Tags" -msgstr "" - -#: includes/class-wc-post-types.php:102 +#: includes/class-wc-post-types.php:98 msgid "Search Product Tags" msgstr "" -#: includes/class-wc-post-types.php:103 +#: includes/class-wc-post-types.php:99 msgid "All Product Tags" msgstr "" -#: includes/class-wc-post-types.php:104 -msgid "Parent Product Tag" -msgstr "" - -#: includes/class-wc-post-types.php:105 -msgid "Parent Product Tag:" -msgstr "" - -#: includes/class-wc-post-types.php:106 +#: includes/class-wc-post-types.php:100 msgid "Edit Product Tag" msgstr "" -#: includes/class-wc-post-types.php:107 +#: includes/class-wc-post-types.php:101 msgid "Update Product Tag" msgstr "" -#: includes/class-wc-post-types.php:108 +#: includes/class-wc-post-types.php:102 msgid "Add New Product Tag" msgstr "" -#: includes/class-wc-post-types.php:109 +#: includes/class-wc-post-types.php:103 msgid "New Product Tag Name" msgstr "" -#: includes/class-wc-post-types.php:120 -#: includes/updates/woocommerce-update-2.0.php:50 -msgctxt "slug" -msgid "product-tag" +#: includes/class-wc-post-types.php:104 +msgid "Popular Product Tags" msgstr "" -#: includes/class-wc-post-types.php:131 includes/class-wc-post-types.php:133 +#: includes/class-wc-post-types.php:105 +msgid "Separate Product Tags with commas" +msgstr "" + +#: includes/class-wc-post-types.php:106 +msgid "Add or remove Product Tags" +msgstr "" + +#: includes/class-wc-post-types.php:107 +msgid "Choose from the most used Product tags" +msgstr "" + +#: includes/class-wc-post-types.php:108 +msgid "No Product Tags found" +msgstr "" + +#: includes/class-wc-post-types.php:130 includes/class-wc-post-types.php:132 msgid "Shipping Classes" msgstr "" -#: includes/class-wc-post-types.php:134 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:522 +#: includes/class-wc-post-types.php:133 +#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:547 msgid "Shipping Class" msgstr "" #: includes/class-wc-post-types.php:135 -msgctxt "Admin menu name" -msgid "Shipping Classes" -msgstr "" - -#: includes/class-wc-post-types.php:136 msgid "Search Shipping Classes" msgstr "" -#: includes/class-wc-post-types.php:137 +#: includes/class-wc-post-types.php:136 msgid "All Shipping Classes" msgstr "" -#: includes/class-wc-post-types.php:138 +#: includes/class-wc-post-types.php:137 msgid "Parent Shipping Class" msgstr "" -#: includes/class-wc-post-types.php:139 +#: includes/class-wc-post-types.php:138 msgid "Parent Shipping Class:" msgstr "" -#: includes/class-wc-post-types.php:140 +#: includes/class-wc-post-types.php:139 msgid "Edit Shipping Class" msgstr "" -#: includes/class-wc-post-types.php:141 +#: includes/class-wc-post-types.php:140 msgid "Update Shipping Class" msgstr "" -#: includes/class-wc-post-types.php:142 +#: includes/class-wc-post-types.php:141 msgid "Add New Shipping Class" msgstr "" -#: includes/class-wc-post-types.php:143 +#: includes/class-wc-post-types.php:142 msgid "New Shipping Class Name" msgstr "" -#: includes/class-wc-post-types.php:191 +#: includes/class-wc-post-types.php:177 msgid "Search %s" msgstr "" -#: includes/class-wc-post-types.php:192 +#: includes/class-wc-post-types.php:178 msgid "All %s" msgstr "" -#: includes/class-wc-post-types.php:193 +#: includes/class-wc-post-types.php:179 msgid "Parent %s" msgstr "" -#: includes/class-wc-post-types.php:194 +#: includes/class-wc-post-types.php:180 msgid "Parent %s:" msgstr "" -#: includes/class-wc-post-types.php:195 +#: includes/class-wc-post-types.php:181 msgid "Edit %s" msgstr "" -#: includes/class-wc-post-types.php:196 +#: includes/class-wc-post-types.php:182 msgid "Update %s" msgstr "" -#: includes/class-wc-post-types.php:197 +#: includes/class-wc-post-types.php:183 msgid "Add New %s" msgstr "" -#: includes/class-wc-post-types.php:198 +#: includes/class-wc-post-types.php:184 msgid "New %s" msgstr "" -#: includes/class-wc-post-types.php:234 -#: includes/updates/woocommerce-update-2.0.php:58 -msgctxt "slug" -msgid "product" -msgstr "" - -#: includes/class-wc-post-types.php:240 +#: includes/class-wc-post-types.php:226 #: includes/widgets/class-wc-widget-products.php:27 msgid "Products" msgstr "" -#: includes/class-wc-post-types.php:241 templates/cart/cart.php:27 -#: templates/checkout/form-pay.php:19 templates/checkout/review-order.php:18 +#: includes/class-wc-post-types.php:227 templates/cart/cart.php:25 +#: templates/checkout/form-pay.php:17 templates/checkout/review-order.php:18 #: templates/emails/admin-new-order.php:22 #: templates/emails/customer-completed-order.php:23 #: templates/emails/customer-invoice.php:27 #: templates/emails/customer-note.php:27 #: templates/emails/customer-processing-order.php:23 -#: templates/order/order-details.php:20 +#: templates/order/order-details.php:18 msgid "Product" msgstr "" -#: includes/class-wc-post-types.php:242 -msgctxt "Admin menu name" -msgid "Products" -msgstr "" - -#: includes/class-wc-post-types.php:243 +#: includes/class-wc-post-types.php:229 msgid "Add Product" msgstr "" -#: includes/class-wc-post-types.php:244 +#: includes/class-wc-post-types.php:230 msgid "Add New Product" msgstr "" -#: includes/class-wc-post-types.php:245 includes/class-wc-post-types.php:297 -#: includes/class-wc-post-types.php:336 templates/myaccount/my-address.php:45 +#: includes/class-wc-post-types.php:231 includes/class-wc-post-types.php:278 +#: includes/class-wc-post-types.php:335 templates/myaccount/my-address.php:45 msgid "Edit" msgstr "" -#: includes/class-wc-post-types.php:246 +#: includes/class-wc-post-types.php:232 msgid "Edit Product" msgstr "" -#: includes/class-wc-post-types.php:247 +#: includes/class-wc-post-types.php:233 msgid "New Product" msgstr "" -#: includes/class-wc-post-types.php:248 includes/class-wc-post-types.php:249 +#: includes/class-wc-post-types.php:234 includes/class-wc-post-types.php:235 msgid "View Product" msgstr "" -#: includes/class-wc-post-types.php:250 +#: includes/class-wc-post-types.php:236 #: includes/widgets/class-wc-widget-product-search.php:27 msgid "Search Products" msgstr "" -#: includes/class-wc-post-types.php:251 +#: includes/class-wc-post-types.php:237 msgid "No Products found" msgstr "" -#: includes/class-wc-post-types.php:252 +#: includes/class-wc-post-types.php:238 msgid "No Products found in trash" msgstr "" -#: includes/class-wc-post-types.php:253 +#: includes/class-wc-post-types.php:239 msgid "Parent Product" msgstr "" -#: includes/class-wc-post-types.php:255 +#: includes/class-wc-post-types.php:241 msgid "This is where you can add new products to your store." msgstr "" -#: includes/class-wc-post-types.php:275 +#: includes/class-wc-post-types.php:261 msgid "Variations" msgstr "" -#: includes/class-wc-post-types.php:283 -msgctxt "Admin menu name" +#: includes/class-wc-post-types.php:274 msgid "Orders" msgstr "" -#: includes/class-wc-post-types.php:293 -msgid "Orders" -msgstr "" - -#: includes/class-wc-post-types.php:294 templates/myaccount/my-orders.php:32 +#: includes/class-wc-post-types.php:275 templates/myaccount/my-orders.php:32 msgid "Order" msgstr "" -#: includes/class-wc-post-types.php:295 +#: includes/class-wc-post-types.php:276 msgid "Add Order" msgstr "" -#: includes/class-wc-post-types.php:296 +#: includes/class-wc-post-types.php:277 msgid "Add New Order" msgstr "" -#: includes/class-wc-post-types.php:298 +#: includes/class-wc-post-types.php:279 msgid "Edit Order" msgstr "" -#: includes/class-wc-post-types.php:299 +#: includes/class-wc-post-types.php:280 msgid "New Order" msgstr "" -#: includes/class-wc-post-types.php:300 includes/class-wc-post-types.php:301 +#: includes/class-wc-post-types.php:281 includes/class-wc-post-types.php:282 msgid "View Order" msgstr "" -#: includes/class-wc-post-types.php:302 +#: includes/class-wc-post-types.php:283 msgid "Search Orders" msgstr "" -#: includes/class-wc-post-types.php:303 +#: includes/class-wc-post-types.php:284 msgid "No Orders found" msgstr "" -#: includes/class-wc-post-types.php:304 +#: includes/class-wc-post-types.php:285 msgid "No Orders found in trash" msgstr "" -#: includes/class-wc-post-types.php:305 +#: includes/class-wc-post-types.php:286 msgid "Parent Orders" msgstr "" -#: includes/class-wc-post-types.php:308 +#: includes/class-wc-post-types.php:289 msgid "This is where store orders are stored." msgstr "" -#: includes/class-wc-post-types.php:331 +#: includes/class-wc-post-types.php:311 +msgid "Refunds" +msgstr "" + +#: includes/class-wc-post-types.php:330 msgid "Coupons" msgstr "" -#: includes/class-wc-post-types.php:332 templates/cart/cart.php:118 +#: includes/class-wc-post-types.php:331 templates/cart/cart.php:117 msgid "Coupon" msgstr "" #: includes/class-wc-post-types.php:333 -msgctxt "Admin menu name" -msgid "Coupons" -msgstr "" - -#: includes/class-wc-post-types.php:334 msgid "Add Coupon" msgstr "" -#: includes/class-wc-post-types.php:335 +#: includes/class-wc-post-types.php:334 msgid "Add New Coupon" msgstr "" -#: includes/class-wc-post-types.php:337 +#: includes/class-wc-post-types.php:336 msgid "Edit Coupon" msgstr "" -#: includes/class-wc-post-types.php:338 +#: includes/class-wc-post-types.php:337 msgid "New Coupon" msgstr "" -#: includes/class-wc-post-types.php:339 +#: includes/class-wc-post-types.php:338 msgid "View Coupons" msgstr "" -#: includes/class-wc-post-types.php:340 +#: includes/class-wc-post-types.php:339 msgid "View Coupon" msgstr "" -#: includes/class-wc-post-types.php:341 +#: includes/class-wc-post-types.php:340 msgid "Search Coupons" msgstr "" -#: includes/class-wc-post-types.php:342 +#: includes/class-wc-post-types.php:341 msgid "No Coupons found" msgstr "" -#: includes/class-wc-post-types.php:343 +#: includes/class-wc-post-types.php:342 msgid "No Coupons found in trash" msgstr "" -#: includes/class-wc-post-types.php:344 +#: includes/class-wc-post-types.php:343 msgid "Parent Coupon" msgstr "" -#: includes/class-wc-post-types.php:346 +#: includes/class-wc-post-types.php:345 msgid "This is where you can add new coupons that customers can use in your store." msgstr "" +#: includes/class-wc-post-types.php:367 +msgid "Webhooks" +msgstr "" + +#: includes/class-wc-post-types.php:396 +msgid "Pending payment (%s)" +msgid_plural "Pending payment (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/class-wc-post-types.php:404 +msgid "Processing (%s)" +msgid_plural "Processing (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/class-wc-post-types.php:412 +msgid "On hold (%s)" +msgid_plural "On hold (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/class-wc-post-types.php:420 +msgid "Completed (%s)" +msgid_plural "Completed (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/class-wc-post-types.php:428 +msgid "Cancelled (%s)" +msgid_plural "Cancelled (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/class-wc-post-types.php:436 +msgid "Refunded (%s)" +msgid_plural "Refunded (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/class-wc-post-types.php:444 +msgid "Failed (%s)" +msgid_plural "Failed (%s)" +msgstr[0] "" +msgstr[1] "" + #: includes/class-wc-product-external.php:86 msgid "Buy product" msgstr "" @@ -4992,15 +6501,8 @@ msgstr "" msgid "View products" msgstr "" -#: includes/class-wc-product-grouped.php:194 -#: includes/class-wc-product-variable.php:251 -#: includes/class-wc-product-variable.php:256 -msgctxt "Price range: from-to" -msgid "%1$s–%2$s" -msgstr "" - #: includes/class-wc-product-simple.php:48 -#: includes/class-wc-product-variation.php:211 +#: includes/class-wc-product-variation.php:201 msgid "Read More" msgstr "" @@ -5008,16 +6510,20 @@ msgstr "" msgid "Select options" msgstr "" -#: includes/class-wc-product-variable.php:455 -msgid "This variable product has no active variations and will not be published." +#: includes/class-wc-product-variable.php:554 +msgid "" +"This variable product has no active variations so cannot be published. " +"Changing status to draft." msgstr "" -#: includes/class-wc-product-variation.php:492 +#: includes/class-wc-product-variation.php:648 msgid "%s – %s%s" msgstr "" -#: includes/class-wc-shortcodes.php:959 -msgid "Use $args[\"posts_per_page\"] instead. Deprecated argument will be removed in WC 2.2." +#: includes/class-wc-shortcodes.php:980 +msgid "" +"Use $args[\"posts_per_page\"] instead. Deprecated argument will be removed " +"in WC 2.2." msgstr "" #: includes/emails/class-wc-email-customer-completed-order.php:26 @@ -5025,7 +6531,9 @@ msgid "Completed order" msgstr "" #: includes/emails/class-wc-email-customer-completed-order.php:27 -msgid "Order complete emails are sent to the customer when the order is marked complete and usual indicates that the order has been shipped." +msgid "" +"Order complete emails are sent to the customer when the order is marked " +"complete and usual indicates that the order has been shipped." msgstr "" #: includes/emails/class-wc-email-customer-completed-order.php:29 @@ -5044,21 +6552,21 @@ msgstr "" msgid "Your {site_title} order from {order_date} is complete - download your files" msgstr "" -#: includes/emails/class-wc-email-customer-completed-order.php:142 -#: includes/emails/class-wc-email-new-order.php:129 +#: includes/emails/class-wc-email-customer-completed-order.php:147 +#: includes/emails/class-wc-email-new-order.php:134 msgid "Subject" msgstr "" -#: includes/emails/class-wc-email-customer-completed-order.php:149 -#: includes/emails/class-wc-email-new-order.php:136 +#: includes/emails/class-wc-email-customer-completed-order.php:154 +#: includes/emails/class-wc-email-new-order.php:141 msgid "Email Heading" msgstr "" -#: includes/emails/class-wc-email-customer-completed-order.php:156 +#: includes/emails/class-wc-email-customer-completed-order.php:161 msgid "Subject (downloadable)" msgstr "" -#: includes/emails/class-wc-email-customer-completed-order.php:163 +#: includes/emails/class-wc-email-customer-completed-order.php:168 msgid "Email Heading (downloadable)" msgstr "" @@ -5067,7 +6575,9 @@ msgid "Customer invoice" msgstr "" #: includes/emails/class-wc-email-customer-invoice.php:30 -msgid "Customer invoice emails can be sent to the user containing order info and payment links." +msgid "" +"Customer invoice emails can be sent to the user containing order info and " +"payment links." msgstr "" #: includes/emails/class-wc-email-customer-invoice.php:35 @@ -5086,11 +6596,11 @@ msgstr "" msgid "Order {order_number} details" msgstr "" -#: includes/emails/class-wc-email-customer-invoice.php:156 +#: includes/emails/class-wc-email-customer-invoice.php:163 msgid "Email subject (paid)" msgstr "" -#: includes/emails/class-wc-email-customer-invoice.php:163 +#: includes/emails/class-wc-email-customer-invoice.php:170 msgid "Email heading (paid)" msgstr "" @@ -5099,7 +6609,9 @@ msgid "New account" msgstr "" #: includes/emails/class-wc-email-customer-new-account.php:34 -msgid "Customer new account emails are sent when a customer signs up via the checkout or My Account page." +msgid "" +"Customer new account emails are sent when a customer signs up via the " +"checkout or My Account page." msgstr "" #: includes/emails/class-wc-email-customer-new-account.php:39 @@ -5131,7 +6643,9 @@ msgid "Processing order" msgstr "" #: includes/emails/class-wc-email-customer-processing-order.php:27 -msgid "This is an order notification sent to the customer after payment containing order details." +msgid "" +"This is an order notification sent to the customer after payment containing " +"order details." msgstr "" #: includes/emails/class-wc-email-customer-processing-order.php:29 @@ -5147,7 +6661,9 @@ msgid "Reset password" msgstr "" #: includes/emails/class-wc-email-customer-reset-password.php:39 -msgid "Customer reset password emails are sent when a customer resets their password." +msgid "" +"Customer reset password emails are sent when a customer resets their " +"password." msgstr "" #: includes/emails/class-wc-email-customer-reset-password.php:44 @@ -5174,20 +6690,26 @@ msgstr "" msgid "[{site_title}] New customer order ({order_number}) - {order_date}" msgstr "" -#: includes/emails/class-wc-email-new-order.php:122 +#: includes/emails/class-wc-email-new-order.php:127 msgid "Recipient(s)" msgstr "" -#: includes/emails/class-wc-email-new-order.php:124 -msgid "Enter recipients (comma separated) for this email. Defaults to %s." +#: includes/emails/class-wc-email-new-order.php:129 +msgid "" +"Enter recipients (comma separated) for this email. Defaults to " +"%s." msgstr "" -#: includes/emails/class-wc-email-new-order.php:131 -msgid "This controls the email subject line. Leave blank to use the default subject: %s." +#: includes/emails/class-wc-email-new-order.php:136 +msgid "" +"This controls the email subject line. Leave blank to use the default " +"subject: %s." msgstr "" -#: includes/emails/class-wc-email-new-order.php:138 -msgid "This controls the main heading contained within the email notification. Leave blank to use the default heading: %s." +#: includes/emails/class-wc-email-new-order.php:143 +msgid "" +"This controls the main heading contained within the email notification. " +"Leave blank to use the default heading: %s." msgstr "" #: includes/gateways/bacs/class-wc-gateway-bacs.php:25 @@ -5204,10 +6726,11 @@ msgstr "" #: includes/gateways/bacs/class-wc-gateway-bacs.php:72 #: includes/gateways/cheque/class-wc-gateway-cheque.php:58 -#: includes/gateways/cod/class-wc-gateway-cod.php:64 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:142 +#: includes/gateways/cod/class-wc-gateway-cod.php:66 +#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:137 #: includes/gateways/paypal/class-wc-gateway-paypal.php:126 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:102 +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:177 +#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:103 #: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:81 #: includes/widgets/class-wc-widget-cart.php:30 #: includes/widgets/class-wc-widget-layered-nav-filters.php:28 @@ -5225,12 +6748,13 @@ msgstr "" #: includes/gateways/bacs/class-wc-gateway-bacs.php:74 #: includes/gateways/cheque/class-wc-gateway-cheque.php:60 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:144 +#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:139 #: includes/gateways/paypal/class-wc-gateway-paypal.php:128 +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:179 #: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:83 #: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:72 #: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:57 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:104 +#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:105 #: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:83 msgid "This controls the title which the user sees during checkout." msgstr "" @@ -5241,26 +6765,30 @@ msgstr "" #: includes/gateways/bacs/class-wc-gateway-bacs.php:79 #: includes/gateways/cheque/class-wc-gateway-cheque.php:65 -#: includes/gateways/cod/class-wc-gateway-cod.php:71 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:149 +#: includes/gateways/cod/class-wc-gateway-cod.php:73 +#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:144 #: includes/gateways/paypal/class-wc-gateway-paypal.php:133 -#: includes/wc-template-functions.php:965 +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:184 +#: includes/wc-template-functions.php:1004 msgid "Description" msgstr "" #: includes/gateways/bacs/class-wc-gateway-bacs.php:81 #: includes/gateways/cheque/class-wc-gateway-cheque.php:67 -#: includes/gateways/cod/class-wc-gateway-cod.php:66 +#: includes/gateways/cod/class-wc-gateway-cod.php:68 msgid "Payment method description that the customer will see on your checkout." msgstr "" #: includes/gateways/bacs/class-wc-gateway-bacs.php:82 -msgid "Make your payment directly into our bank account. Please use your Order ID as the payment reference. Your order won't be shipped until the funds have cleared in our account." +msgid "" +"Make your payment directly into our bank account. Please use your Order ID " +"as the payment reference. Your order won't be shipped until the funds have " +"cleared in our account." msgstr "" #: includes/gateways/bacs/class-wc-gateway-bacs.php:86 #: includes/gateways/cheque/class-wc-gateway-cheque.php:72 -#: includes/gateways/cod/class-wc-gateway-cod.php:78 +#: includes/gateways/cod/class-wc-gateway-cod.php:80 msgid "Instructions" msgstr "" @@ -5278,7 +6806,7 @@ msgid "Account Name" msgstr "" #: includes/gateways/bacs/class-wc-gateway-bacs.php:112 -#: includes/gateways/bacs/class-wc-gateway-bacs.php:253 +#: includes/gateways/bacs/class-wc-gateway-bacs.php:258 msgid "Account Number" msgstr "" @@ -5287,12 +6815,12 @@ msgid "Bank Name" msgstr "" #: includes/gateways/bacs/class-wc-gateway-bacs.php:114 -#: includes/gateways/bacs/class-wc-gateway-bacs.php:257 +#: includes/gateways/bacs/class-wc-gateway-bacs.php:262 msgid "Sort Code" msgstr "" #: includes/gateways/bacs/class-wc-gateway-bacs.php:115 -#: includes/gateways/bacs/class-wc-gateway-bacs.php:261 +#: includes/gateways/bacs/class-wc-gateway-bacs.php:266 msgid "IBAN" msgstr "" @@ -5300,23 +6828,23 @@ msgstr "" msgid "BIC / Swift" msgstr "" -#: includes/gateways/bacs/class-wc-gateway-bacs.php:121 +#: includes/gateways/bacs/class-wc-gateway-bacs.php:141 msgid "+ Add Account" msgstr "" -#: includes/gateways/bacs/class-wc-gateway-bacs.php:121 +#: includes/gateways/bacs/class-wc-gateway-bacs.php:141 msgid "Remove selected account(s)" msgstr "" -#: includes/gateways/bacs/class-wc-gateway-bacs.php:240 +#: includes/gateways/bacs/class-wc-gateway-bacs.php:241 msgid "Our Bank Details" msgstr "" -#: includes/gateways/bacs/class-wc-gateway-bacs.php:265 +#: includes/gateways/bacs/class-wc-gateway-bacs.php:270 msgid "BIC" msgstr "" -#: includes/gateways/bacs/class-wc-gateway-bacs.php:295 +#: includes/gateways/bacs/class-wc-gateway-bacs.php:297 msgid "Awaiting BACS payment" msgstr "" @@ -5325,7 +6853,10 @@ msgid "Cheque" msgstr "" #: includes/gateways/cheque/class-wc-gateway-cheque.php:26 -msgid "Allows cheque payments. Why would you take cheques in this day and age? Well you probably wouldn't but it does allow you to make test purchases for testing order emails and the 'success' pages etc." +msgid "" +"Allows cheque payments. Why would you take cheques in this day and age? " +"Well you probably wouldn't but it does allow you to make test purchases for " +"testing order emails and the 'success' pages etc." msgstr "" #: includes/gateways/cheque/class-wc-gateway-cheque.php:54 @@ -5337,15 +6868,17 @@ msgid "Cheque Payment" msgstr "" #: includes/gateways/cheque/class-wc-gateway-cheque.php:68 -msgid "Please send your cheque to Store Name, Store Street, Store Town, Store State / County, Store Postcode." +msgid "" +"Please send your cheque to Store Name, Store Street, Store Town, Store " +"State / County, Store Postcode." msgstr "" -#: includes/gateways/cheque/class-wc-gateway-cheque.php:115 +#: includes/gateways/cheque/class-wc-gateway-cheque.php:114 msgid "Awaiting cheque payment" msgstr "" #: includes/gateways/cod/class-wc-gateway-cod.php:24 -#: includes/gateways/cod/class-wc-gateway-cod.php:67 +#: includes/gateways/cod/class-wc-gateway-cod.php:69 msgid "Cash on Delivery" msgstr "" @@ -5353,96 +6886,95 @@ msgstr "" msgid "Have your customers pay with cash (or by other means) upon delivery." msgstr "" -#: includes/gateways/cod/class-wc-gateway-cod.php:57 +#: includes/gateways/cod/class-wc-gateway-cod.php:59 msgid "Enable COD" msgstr "" -#: includes/gateways/cod/class-wc-gateway-cod.php:58 +#: includes/gateways/cod/class-wc-gateway-cod.php:60 msgid "Enable Cash on Delivery" msgstr "" -#: includes/gateways/cod/class-wc-gateway-cod.php:73 +#: includes/gateways/cod/class-wc-gateway-cod.php:75 msgid "Payment method description that the customer will see on your website." msgstr "" -#: includes/gateways/cod/class-wc-gateway-cod.php:74 -#: includes/gateways/cod/class-wc-gateway-cod.php:81 +#: includes/gateways/cod/class-wc-gateway-cod.php:76 +#: includes/gateways/cod/class-wc-gateway-cod.php:83 msgid "Pay with cash upon delivery." msgstr "" -#: includes/gateways/cod/class-wc-gateway-cod.php:80 +#: includes/gateways/cod/class-wc-gateway-cod.php:82 msgid "Instructions that will be added to the thank you page." msgstr "" -#: includes/gateways/cod/class-wc-gateway-cod.php:85 +#: includes/gateways/cod/class-wc-gateway-cod.php:87 msgid "Enable for shipping methods" msgstr "" -#: includes/gateways/cod/class-wc-gateway-cod.php:90 -msgid "If COD is only available for certain methods, set it up here. Leave blank to enable for all methods." +#: includes/gateways/cod/class-wc-gateway-cod.php:92 +msgid "" +"If COD is only available for certain methods, set it up here. Leave blank " +"to enable for all methods." msgstr "" -#: includes/gateways/cod/class-wc-gateway-cod.php:94 +#: includes/gateways/cod/class-wc-gateway-cod.php:96 msgid "Select shipping methods" msgstr "" -#: includes/gateways/cod/class-wc-gateway-cod.php:157 +#: includes/gateways/cod/class-wc-gateway-cod.php:100 +msgid "Enable for virtual orders" +msgstr "" + +#: includes/gateways/cod/class-wc-gateway-cod.php:101 +msgid "Enable COD if the order is virtual" +msgstr "" + +#: includes/gateways/cod/class-wc-gateway-cod.php:204 msgid "Payment to be made upon delivery." msgstr "" -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:30 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:167 +#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:31 msgid "Mijireh Checkout" msgstr "" -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:107 -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:291 +#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:105 +#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:268 msgid "Mijireh error:" msgstr "" -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:131 +#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:126 msgid "Enable Mijireh Checkout" msgstr "" -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:135 +#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:130 msgid "Access Key" msgstr "" -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:137 +#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:132 msgid "The Mijireh access key for your store." msgstr "" -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:145 +#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:140 msgid "Credit Card" msgstr "" -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:151 +#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:146 msgid "Pay securely with your credit card." msgstr "" -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:152 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:135 +#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:147 +#: includes/gateways/paypal/class-wc-gateway-paypal.php:136 +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:186 msgid "This controls the description which the user sees during checkout." msgstr "" -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:171 -msgid "Get started with Mijireh Checkout" +#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:181 +#: includes/gateways/paypal/class-wc-gateway-paypal.php:376 +msgid "Order %s" msgstr "" -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:172 -msgid "provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site. Mijireh supports a wide variety of payment gateways: Stripe, Authorize.net, PayPal, eWay, SagePay, Braintree, PayLeap, and more." -msgstr "" - -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:174 -msgid "Join for free" -msgstr "" - -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:174 -msgid "Learn more about WooCommerce and Mijireh" -msgstr "" - -#: includes/gateways/mijireh/class-wc-gateway-mijireh.php:178 -msgid "provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +#: includes/gateways/paypal/class-wc-gateway-paypal.php:30 +msgid "Proceed to PayPal" msgstr "" #: includes/gateways/paypal/class-wc-gateway-paypal.php:33 @@ -5450,19 +6982,17 @@ msgstr "" msgid "PayPal" msgstr "" -#: includes/gateways/paypal/class-wc-gateway-paypal.php:92 -msgid "PayPal standard" +#: includes/gateways/paypal/class-wc-gateway-paypal.php:34 +msgid "" +"PayPal standard works by sending the user to PayPal to enter their payment " +"information." msgstr "" -#: includes/gateways/paypal/class-wc-gateway-paypal.php:93 -msgid "PayPal standard works by sending the user to PayPal to enter their payment information." -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:105 +#: includes/gateways/paypal/class-wc-gateway-paypal.php:106 msgid "Gateway Disabled" msgstr "" -#: includes/gateways/paypal/class-wc-gateway-paypal.php:105 +#: includes/gateways/paypal/class-wc-gateway-paypal.php:106 msgid "PayPal does not support your store currency." msgstr "" @@ -5470,230 +7000,469 @@ msgstr "" msgid "Enable PayPal standard" msgstr "" -#: includes/gateways/paypal/class-wc-gateway-paypal.php:136 -msgid "Pay via PayPal; you can pay with your credit card if you don't have a PayPal account" +#: includes/gateways/paypal/class-wc-gateway-paypal.php:137 +msgid "" +"Pay via PayPal; you can pay with your credit card if you don't have a " +"PayPal account" msgstr "" -#: includes/gateways/paypal/class-wc-gateway-paypal.php:139 +#: includes/gateways/paypal/class-wc-gateway-paypal.php:140 msgid "PayPal Email" msgstr "" -#: includes/gateways/paypal/class-wc-gateway-paypal.php:141 -msgid "Please enter your PayPal email address; this is needed in order to take payment." +#: includes/gateways/paypal/class-wc-gateway-paypal.php:142 +msgid "" +"Please enter your PayPal email address; this is needed in order to take " +"payment." msgstr "" -#: includes/gateways/paypal/class-wc-gateway-paypal.php:147 -msgid "Receiver Email" -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:149 -msgid "If this differs from the email entered above, input your main receiver email for your PayPal account. This is used to validate IPN requests." -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:155 -msgid "PayPal Identity Token" -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:157 -msgid "Optionally enable \"Payment Data Transfer\" (Profile > Website Payment Preferences) and then copy your identity token here. This will allow payments to be verified without the need for PayPal IPN." -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:160 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:193 -msgid "Optional" -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:163 -msgid "Invoice Prefix" -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:165 -msgid "Please enter a prefix for your invoice numbers. If you use your PayPal account for multiple stores ensure this prefix is unique as PayPal will not allow orders with the same invoice number." -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:170 -msgid "Payment Action" -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:172 -msgid "Choose whether you wish to capture funds immediately or authorize payment only." -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:176 -msgid "Capture" -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:177 -msgid "Authorize" -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:181 -msgid "Submission method" -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:183 -msgid "Use form submission method." -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:184 -msgid "Enable this to post order data to PayPal via a form instead of using a redirect/querystring." -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:188 -msgid "Page Style" -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:190 -msgid "Optionally enter the name of the page style you wish to use. These are defined within your PayPal account." -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:196 -msgid "Shipping options" -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:201 -msgid "Shipping details" -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:203 -msgid "Send shipping details to PayPal instead of billing." -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:204 -msgid "PayPal allows us to send 1 address. If you are using PayPal for shipping labels you may prefer to send the shipping address rather than billing." -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:208 -msgid "Address override" -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:210 -msgid "Enable \"address_override\" to prevent address information from being changed." -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:211 -msgid "PayPal verifies addresses therefore this setting can cause errors (we recommend keeping it disabled)." -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:215 -msgid "Gateway Testing" -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:220 +#: includes/gateways/paypal/class-wc-gateway-paypal.php:148 msgid "PayPal sandbox" msgstr "" -#: includes/gateways/paypal/class-wc-gateway-paypal.php:222 +#: includes/gateways/paypal/class-wc-gateway-paypal.php:150 msgid "Enable PayPal sandbox" msgstr "" -#: includes/gateways/paypal/class-wc-gateway-paypal.php:224 -msgid "PayPal sandbox can be used to test payments. Sign up for a developer account here." +#: includes/gateways/paypal/class-wc-gateway-paypal.php:152 +msgid "" +"PayPal sandbox can be used to test payments. Sign up for a developer " +"account here." msgstr "" -#: includes/gateways/paypal/class-wc-gateway-paypal.php:227 +#: includes/gateways/paypal/class-wc-gateway-paypal.php:155 msgid "Debug Log" msgstr "" -#: includes/gateways/paypal/class-wc-gateway-paypal.php:229 +#: includes/gateways/paypal/class-wc-gateway-paypal.php:157 msgid "Enable logging" msgstr "" -#: includes/gateways/paypal/class-wc-gateway-paypal.php:231 -msgid "Log PayPal events, such as IPN requests, inside woocommerce/logs/paypal-%s.txt" +#: includes/gateways/paypal/class-wc-gateway-paypal.php:159 +msgid "Log PayPal events, such as IPN requests, inside %s" msgstr "" -#: includes/gateways/paypal/class-wc-gateway-paypal.php:339 -msgid "Order %s" +#: includes/gateways/paypal/class-wc-gateway-paypal.php:162 +msgid "Shipping options" msgstr "" -#: includes/gateways/paypal/class-wc-gateway-paypal.php:348 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:402 +#: includes/gateways/paypal/class-wc-gateway-paypal.php:167 +msgid "Shipping details" +msgstr "" + +#: includes/gateways/paypal/class-wc-gateway-paypal.php:169 +msgid "Send shipping details to PayPal instead of billing." +msgstr "" + +#: includes/gateways/paypal/class-wc-gateway-paypal.php:170 +msgid "" +"PayPal allows us to send 1 address. If you are using PayPal for shipping " +"labels you may prefer to send the shipping address rather than billing." +msgstr "" + +#: includes/gateways/paypal/class-wc-gateway-paypal.php:174 +msgid "Address override" +msgstr "" + +#: includes/gateways/paypal/class-wc-gateway-paypal.php:176 +msgid "" +"Enable \"address_override\" to prevent address information from being " +"changed." +msgstr "" + +#: includes/gateways/paypal/class-wc-gateway-paypal.php:177 +msgid "" +"PayPal verifies addresses therefore this setting can cause errors (we " +"recommend keeping it disabled)." +msgstr "" + +#: includes/gateways/paypal/class-wc-gateway-paypal.php:181 +msgid "Advanced options" +msgstr "" + +#: includes/gateways/paypal/class-wc-gateway-paypal.php:186 +msgid "Receiver Email" +msgstr "" + +#: includes/gateways/paypal/class-wc-gateway-paypal.php:188 +msgid "" +"If your main PayPal email differs from the PayPal email entered above, " +"input your main receiver email for your PayPal account here. This is used " +"to validate IPN requests." +msgstr "" + +#: includes/gateways/paypal/class-wc-gateway-paypal.php:194 +msgid "Invoice Prefix" +msgstr "" + +#: includes/gateways/paypal/class-wc-gateway-paypal.php:196 +msgid "" +"Please enter a prefix for your invoice numbers. If you use your PayPal " +"account for multiple stores ensure this prefix is unique as PayPal will not " +"allow orders with the same invoice number." +msgstr "" + +#: includes/gateways/paypal/class-wc-gateway-paypal.php:201 +msgid "Payment Action" +msgstr "" + +#: includes/gateways/paypal/class-wc-gateway-paypal.php:203 +msgid "" +"Choose whether you wish to capture funds immediately or authorize payment " +"only." +msgstr "" + +#: includes/gateways/paypal/class-wc-gateway-paypal.php:207 +msgid "Capture" +msgstr "" + +#: includes/gateways/paypal/class-wc-gateway-paypal.php:208 +msgid "Authorize" +msgstr "" + +#: includes/gateways/paypal/class-wc-gateway-paypal.php:212 +msgid "Page Style" +msgstr "" + +#: includes/gateways/paypal/class-wc-gateway-paypal.php:214 +msgid "" +"Optionally enter the name of the page style you wish to use. These are " +"defined within your PayPal account." +msgstr "" + +#: includes/gateways/paypal/class-wc-gateway-paypal.php:217 +#: includes/gateways/paypal/class-wc-gateway-paypal.php:225 +#: includes/gateways/paypal/class-wc-gateway-paypal.php:238 +#: includes/gateways/paypal/class-wc-gateway-paypal.php:246 +#: includes/gateways/paypal/class-wc-gateway-paypal.php:254 +msgid "Optional" +msgstr "" + +#: includes/gateways/paypal/class-wc-gateway-paypal.php:220 +msgid "PayPal Identity Token" +msgstr "" + +#: includes/gateways/paypal/class-wc-gateway-paypal.php:222 +msgid "" +"Optionally enable \"Payment Data Transfer\" (Profile > Website Payment " +"Preferences) and then copy your identity token here. This will allow " +"payments to be verified without the need for PayPal IPN." +msgstr "" + +#: includes/gateways/paypal/class-wc-gateway-paypal.php:228 +msgid "API Credentials" +msgstr "" + +#: includes/gateways/paypal/class-wc-gateway-paypal.php:230 +msgid "" +"Enter your PayPal API credentials to process refunds via PayPal. Learn how " +"to access your PayPal API Credentials %shere%s." +msgstr "" + +#: includes/gateways/paypal/class-wc-gateway-paypal.php:233 +msgid "API Username" +msgstr "" + +#: includes/gateways/paypal/class-wc-gateway-paypal.php:235 +#: includes/gateways/paypal/class-wc-gateway-paypal.php:243 +#: includes/gateways/paypal/class-wc-gateway-paypal.php:251 +msgid "Get your API credentials from PayPal." +msgstr "" + +#: includes/gateways/paypal/class-wc-gateway-paypal.php:241 +msgid "API Password" +msgstr "" + +#: includes/gateways/paypal/class-wc-gateway-paypal.php:249 +msgid "API Signature" +msgstr "" + +#: includes/gateways/paypal/class-wc-gateway-paypal.php:385 msgid "Shipping via" msgstr "" -#: includes/gateways/paypal/class-wc-gateway-paypal.php:441 -msgid "Thank you for your order. We are now redirecting you to PayPal to make payment." +#: includes/gateways/paypal/class-wc-gateway-paypal.php:473 +msgid "Shipping via %s" msgstr "" -#: includes/gateways/paypal/class-wc-gateway-paypal.php:466 +#: includes/gateways/paypal/class-wc-gateway-paypal.php:508 +msgid "" +"Thank you for your order. We are now redirecting you to PayPal to make " +"payment." +msgstr "" + +#: includes/gateways/paypal/class-wc-gateway-paypal.php:533 msgid "Pay via PayPal" msgstr "" -#: includes/gateways/paypal/class-wc-gateway-paypal.php:466 +#: includes/gateways/paypal/class-wc-gateway-paypal.php:533 msgid "Cancel order & restore cart" msgstr "" -#: includes/gateways/paypal/class-wc-gateway-paypal.php:522 -msgid "Thank you - your order is now pending payment. You should be automatically redirected to PayPal to make payment." +#: includes/gateways/paypal/class-wc-gateway-paypal.php:617 +msgid "Empty Paypal response." msgstr "" -#: includes/gateways/paypal/class-wc-gateway-paypal.php:661 +#: includes/gateways/paypal/class-wc-gateway-paypal.php:625 +msgid "Refunded %s - Refund ID: %s" +msgstr "" + +#: includes/gateways/paypal/class-wc-gateway-paypal.php:640 +msgid "" +"Thank you - your order is now pending payment. You should be automatically " +"redirected to PayPal to make payment." +msgstr "" + +#: includes/gateways/paypal/class-wc-gateway-paypal.php:794 +msgid "Validation error: PayPal currencies do not match (code %s)." +msgstr "" + +#: includes/gateways/paypal/class-wc-gateway-paypal.php:805 msgid "Validation error: PayPal amounts do not match (gross %s)." msgstr "" -#: includes/gateways/paypal/class-wc-gateway-paypal.php:672 +#: includes/gateways/paypal/class-wc-gateway-paypal.php:816 msgid "Validation error: PayPal IPN response from a different email address (%s)." msgstr "" -#: includes/gateways/paypal/class-wc-gateway-paypal.php:690 +#: includes/gateways/paypal/class-wc-gateway-paypal.php:836 msgid "IPN payment completed" msgstr "" -#: includes/gateways/paypal/class-wc-gateway-paypal.php:693 +#: includes/gateways/paypal/class-wc-gateway-paypal.php:840 msgid "Payment pending: %s" msgstr "" -#: includes/gateways/paypal/class-wc-gateway-paypal.php:705 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:713 -#: includes/gateways/paypal/class-wc-gateway-paypal.php:730 +#: includes/gateways/paypal/class-wc-gateway-paypal.php:853 +#: includes/gateways/paypal/class-wc-gateway-paypal.php:861 +#: includes/gateways/paypal/class-wc-gateway-paypal.php:873 msgid "Payment %s via IPN." msgstr "" -#: includes/gateways/paypal/class-wc-gateway-paypal.php:718 -msgid "Order refunded/reversed" -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:719 -msgid "Order %s has been marked as refunded - PayPal reason code: %s" -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:722 +#: includes/gateways/paypal/class-wc-gateway-paypal.php:864 msgid "Payment for order %s refunded/reversed" msgstr "" -#: includes/gateways/paypal/class-wc-gateway-paypal.php:735 -msgid "Order reversed" +#: includes/gateways/paypal/class-wc-gateway-paypal.php:865 +msgid "Order %s has been marked as refunded - PayPal reason code: %s" msgstr "" -#: includes/gateways/paypal/class-wc-gateway-paypal.php:736 -msgid "Order %s has been marked on-hold due to a reversal - PayPal reason code: %s" -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:739 +#: includes/gateways/paypal/class-wc-gateway-paypal.php:876 msgid "Payment for order %s reversed" msgstr "" -#: includes/gateways/paypal/class-wc-gateway-paypal.php:747 -msgid "Reversal Cancelled" +#: includes/gateways/paypal/class-wc-gateway-paypal.php:877 +msgid "Order %s has been marked on-hold due to a reversal - PayPal reason code: %s" msgstr "" -#: includes/gateways/paypal/class-wc-gateway-paypal.php:748 -msgid "Order %s has had a reversal cancelled. Please check the status of payment and update the order status accordingly." -msgstr "" - -#: includes/gateways/paypal/class-wc-gateway-paypal.php:751 +#: includes/gateways/paypal/class-wc-gateway-paypal.php:883 msgid "Reversal cancelled for order %s" msgstr "" -#: includes/gateways/paypal/class-wc-gateway-paypal.php:818 +#: includes/gateways/paypal/class-wc-gateway-paypal.php:884 +msgid "" +"Order %s has had a reversal cancelled. Please check the status of payment " +"and update the order status accordingly." +msgstr "" + +#: includes/gateways/paypal/class-wc-gateway-paypal.php:968 msgid "Validation error: PayPal amounts do not match (amt %s)." msgstr "" -#: includes/gateways/paypal/class-wc-gateway-paypal.php:826 +#: includes/gateways/paypal/class-wc-gateway-paypal.php:974 msgid "PDT payment completed" msgstr "" +#: includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:47 +#: includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:131 +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:277 +msgid "" +"Please make sure your card details have been entered correctly and that " +"your browser supports JavaScript." +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:50 +#: includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:134 +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:280 +msgid "" +"Developers: Please make sure that you're including jQuery and there are no " +"JavaScript errors on the page." +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:70 +#: includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:154 +msgid "Error creating user in Simplify Commerce." +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:125 +#: includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:228 +msgid "Sorry, the minimum allowed order total is 0.50 to use this payment method." +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:225 +msgid "%s - Subscription for \"%s\"" +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:225 +#: includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:328 +msgid "(Order %s)" +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:234 +#: includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:333 +msgid "Customer not found" +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:257 +#: includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:356 +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:305 +msgid "Simplify payment approved (ID: %s, Auth Code: %s)" +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:261 +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:316 +msgid "Simplify payment declined" +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:263 +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:318 +msgid "Payment was declined - please try another card." +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:328 +msgid "%s - Pre-order for \"%s\"" +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:358 +msgid "Payment was declined - the customer need to try another card." +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:361 +msgid "Simplify Transaction Failed (%s)" +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:23 +msgid "Simplify Commerce" +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:24 +msgid "" +"Take payments via Simplify Commerce - uses simplify.js to create card " +"tokens and the Simplify Commerce SDK. Requires SSL when sandbox is disabled." +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:86 +msgid "Simplify Commerce by Mastercard" +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:91 +msgid "Getting started" +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:92 +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:98 +msgid "" +"Simplify Commerce is your merchant account and payment gateway all rolled " +"into one. Choose Simplify Commerce as your WooCommerce payment gateway to " +"get access to your money quickly with a powerful, secure payment engine " +"backed by MasterCard." +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:94 +msgid "Sign up for Simplify Commerce" +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:94 +msgid "Learn more" +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:131 +msgid "" +"Simplify Commerce Error: Simplify commerce requires PHP 5.3 and above. You " +"are using version %s." +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:136 +msgid "Simplify Commerce Error: Please enter your public and private keys" +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:141 +msgid "" +"Simplify Commerce is enabled, but the force SSL option " +"is disabled; your checkout may not be secure! Please enable SSL and ensure " +"your server has a valid SSL certificate - Simplify Commerce will only work " +"in sandbox mode." +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:171 +msgid "Enable Simplify Commerce" +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:180 +msgid "Credit card" +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:191 +msgid "Sandbox" +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:192 +msgid "Enable Sandbox Mode" +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:194 +msgid "" +"Place the payment gateway in sandbox mode using sandbox API keys (real " +"payments will not be taken)." +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:198 +msgid "Sandbox Public Key" +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:200 +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:207 +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:214 +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:221 +msgid "Get your API keys from your Simplify account: Settings > API Keys." +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:205 +msgid "Sandbox Private Key" +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:212 +msgid "Public Key" +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:219 +msgid "Private Key" +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:235 +msgid "TEST MODE ENABLED. Use a test card: %s" +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:260 +msgid "Expiry Month" +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:261 +msgid "Expiry Year" +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:262 +msgid "is invalid" +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:289 +msgid "%s - Order %s" +msgstr "" + +#: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:360 +msgid "Refund was declined." +msgstr "" + #: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:25 #: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:84 msgid "Flat Rate" @@ -5721,7 +7490,7 @@ msgstr "" #: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:93 #: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:82 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:142 +#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:143 #: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:101 msgid "All allowed countries" msgstr "" @@ -5730,8 +7499,8 @@ msgstr "" #: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:98 #: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:83 #: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:87 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:143 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:147 +#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:144 +#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:148 #: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:102 #: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:106 msgid "Specific Countries" @@ -5740,7 +7509,7 @@ msgstr "" #: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:105 #: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:94 #: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:79 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:154 +#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:155 #: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:113 msgid "Select some countries" msgstr "" @@ -5755,11 +7524,6 @@ msgstr "" msgid "Taxable" msgstr "" -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:114 -#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:88 -msgid "None" -msgstr "" - #: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:118 msgid "Cost per order" msgstr "" @@ -5773,11 +7537,16 @@ msgid "Additional Rates" msgstr "" #: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:128 -msgid "Optional extra shipping options with additional costs (one per line): Option Name | Additional Cost [+- Percents] | Per Cost Type (order, class, or item) Example: Priority Mail | 6.95 [+ 0.2%] | order." +msgid "" +"Optional extra shipping options with additional costs (one per line): " +"Option Name | Additional Cost [+- Percents] | Per Cost Type (order, class, " +"or item) Example: Priority Mail | 6.95 [+ 0.2%] | order." msgstr "" #: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:131 -msgid "Option Name | Additional Cost [+- Percents%] | Per Cost Type (order, class, or item)" +msgid "" +"Option Name | Additional Cost [+- Percents%] | Per Cost Type (order, class, " +"or item)" msgstr "" #: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:134 @@ -5785,7 +7554,9 @@ msgid "Additional Costs" msgstr "" #: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:136 -msgid "Additional costs can be added below - these will all be added to the per-order cost above." +msgid "" +"Additional costs can be added below - these will all be added to the " +"per-order cost above." msgstr "" #: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:139 @@ -5814,56 +7585,61 @@ msgstr "" #: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:155 #: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:120 -msgid "Enter a minimum fee amount. Fee's less than this will be increased. Leave blank to disable." +msgid "" +"Enter a minimum fee amount. Fee's less than this will be increased. Leave " +"blank to disable." msgstr "" -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:516 +#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:541 msgid "Costs" msgstr "" -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:523 +#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:548 #: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:102 msgid "Cost" msgstr "" -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:523 +#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:548 msgid "Cost, excluding tax." msgstr "" -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:524 +#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:549 #: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:110 msgid "Handling Fee" msgstr "" -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:524 +#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:549 msgid "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%." msgstr "" -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:529 -msgid "+ Add Cost" -msgstr "" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:529 -msgid "Delete selected costs" -msgstr "" - -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:535 +#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:555 msgid "Any class" msgstr "" -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:536 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:537 +#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:556 +#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:557 #: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:102 -#: templates/order/order-details.php:122 templates/order/order-details.php:137 +#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:115 +#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:123 +#: templates/order/order-details.php:120 templates/order/order-details.php:135 +#: templates/single-product/meta.php:23 msgid "N/A" msgstr "" -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:555 -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:585 +#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:575 +#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:610 msgid "Select a class…" msgstr "" -#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:599 +#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:589 +msgid "Add Cost" +msgstr "" + +#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:589 +msgid "Delete selected costs" +msgstr "" + +#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:624 msgid "Delete the selected rates?" msgstr "" @@ -5878,7 +7654,7 @@ msgid "Enable Free Shipping" msgstr "" #: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:77 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:137 +#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:138 #: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:96 msgid "Method availability" msgstr "" @@ -5908,7 +7684,9 @@ msgid "Minimum Order Amount" msgstr "" #: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:113 -msgid "Users will need to spend this amount to get free shipping (if enabled above)." +msgid "" +"Users will need to spend this amount to get free shipping (if enabled " +"above)." msgstr "" #: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:29 @@ -5941,61 +7719,67 @@ msgid "Cost excluding tax. Enter an amount, e.g. 2.50. Default is 0" msgstr "" #: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:112 -msgid "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. Leave blank to disable." +msgid "" +"Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. " +"Leave blank to disable." msgstr "" #: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:25 -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:105 +#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:106 msgid "Local Delivery" msgstr "" -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:96 +#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:97 #: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:75 msgid "Enable" msgstr "" -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:98 +#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:99 msgid "Enable local delivery" msgstr "" -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:109 +#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:110 msgid "Fee Type" msgstr "" -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:111 +#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:112 msgid "How to calculate delivery charges" msgstr "" -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:114 +#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:115 msgid "Fixed amount" msgstr "" -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:115 +#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 msgid "Percentage of cart total" msgstr "" -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:116 +#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:117 msgid "Fixed amount per product" msgstr "" -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:121 +#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:122 msgid "Delivery Fee" msgstr "" -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:123 -msgid "What fee do you want to charge for local delivery, disregarded if you choose free. Leave blank to disable." +#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:124 +msgid "" +"What fee do you want to charge for local delivery, disregarded if you " +"choose free. Leave blank to disable." msgstr "" -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:129 +#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:130 #: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:88 msgid "Zip/Post Codes" msgstr "" -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:131 -msgid "What zip/post codes would you like to offer delivery to? Separate codes with a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." +#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:132 +msgid "" +"What zip/post codes would you like to offer delivery to? Separate codes " +"with a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." msgstr "" -#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:169 +#: includes/shipping/local-delivery/class-wc-shipping-local-delivery.php:170 msgid "Local delivery is a simple shipping method for delivering orders locally." msgstr "" @@ -6009,29 +7793,45 @@ msgid "Enable local pickup" msgstr "" #: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:90 -msgid "What zip/post codes are available for local pickup? Separate codes with a comma. Accepts wildcards, e.g. P* will match a postcode of PE30." +msgid "" +"What zip/post codes are available for local pickup? Separate codes with a " +"comma. Accepts wildcards, e.g. P* will match a postcode of PE30." msgstr "" #: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:128 -msgid "Local pickup is a simple method which allows the customer to pick up their order themselves." +msgid "" +"Local pickup is a simple method which allows the customer to pick up their " +"order themselves." msgstr "" -#: includes/shortcodes/class-wc-shortcode-cart.php:66 +#: includes/shortcodes/class-wc-shortcode-cart.php:58 msgid "Shipping costs updated." msgstr "" -#: includes/shortcodes/class-wc-shortcode-checkout.php:108 -#: includes/shortcodes/class-wc-shortcode-checkout.php:159 -msgid "This order’s status is “%s”—it cannot be paid for. Please contact us if you need assistance." +#: includes/shortcodes/class-wc-shortcode-checkout.php:92 +msgid "Invalid order. If you have an account please log in and try again." msgstr "" -#: includes/shortcodes/class-wc-shortcode-checkout.php:112 +#: includes/shortcodes/class-wc-shortcode-checkout.php:92 +#: includes/shortcodes/class-wc-shortcode-my-account.php:111 +#: templates/checkout/thankyou.php:28 +msgid "My Account" +msgstr "" + +#: includes/shortcodes/class-wc-shortcode-checkout.php:111 +#: includes/shortcodes/class-wc-shortcode-checkout.php:159 +msgid "" +"This order’s status is “%s”—it cannot be paid for. " +"Please contact us if you need assistance." +msgstr "" + +#: includes/shortcodes/class-wc-shortcode-checkout.php:115 #: includes/shortcodes/class-wc-shortcode-checkout.php:163 msgid "Sorry, this order is invalid and cannot be paid for." msgstr "" -#: includes/shortcodes/class-wc-shortcode-checkout.php:129 -#: templates/checkout/thankyou.php:40 +#: includes/shortcodes/class-wc-shortcode-checkout.php:132 +#: templates/checkout/thankyou.php:38 #: templates/emails/customer-completed-order.php:18 #: templates/emails/customer-invoice.php:22 #: templates/emails/customer-note.php:22 @@ -6039,79 +7839,70 @@ msgstr "" msgid "Order:" msgstr "" -#: includes/shortcodes/class-wc-shortcode-checkout.php:133 -#: templates/checkout/thankyou.php:44 +#: includes/shortcodes/class-wc-shortcode-checkout.php:136 +#: templates/checkout/thankyou.php:42 msgid "Date:" msgstr "" -#: includes/shortcodes/class-wc-shortcode-checkout.php:137 -#: templates/checkout/thankyou.php:48 +#: includes/shortcodes/class-wc-shortcode-checkout.php:140 +#: templates/checkout/thankyou.php:46 msgid "Total:" msgstr "" -#: includes/shortcodes/class-wc-shortcode-checkout.php:142 -#: templates/checkout/thankyou.php:53 +#: includes/shortcodes/class-wc-shortcode-checkout.php:145 +#: templates/checkout/thankyou.php:51 msgid "Payment method:" msgstr "" #: includes/shortcodes/class-wc-shortcode-checkout.php:230 -msgid "The order totals have been updated. Please confirm your order by pressing the Place Order button at the bottom of the page." +msgid "" +"The order totals have been updated. Please confirm your order by pressing " +"the Place Order button at the bottom of the page." msgstr "" -#: includes/shortcodes/class-wc-shortcode-my-account.php:112 -#: templates/myaccount/view-order.php:12 -msgid "Order %s was placed on %s and is currently %s." +#: includes/shortcodes/class-wc-shortcode-my-account.php:206 +msgid "Your password has been reset." msgstr "" -#: includes/shortcodes/class-wc-shortcode-my-account.php:116 -#: templates/myaccount/view-order.php:17 templates/order/tracking.php:31 -msgid "Order Updates" +#: includes/shortcodes/class-wc-shortcode-my-account.php:206 +msgid "Log in" msgstr "" -#: includes/shortcodes/class-wc-shortcode-my-account.php:122 -#: templates/myaccount/view-order.php:23 templates/order/tracking.php:37 -msgid "l jS \\o\\f F Y, h:ia" -msgstr "" - -#: includes/shortcodes/class-wc-shortcode-my-account.php:231 +#: includes/shortcodes/class-wc-shortcode-my-account.php:226 msgid "Enter a username or e-mail address." msgstr "" -#: includes/shortcodes/class-wc-shortcode-my-account.php:238 -msgid "There is no user registered with that email address." -msgstr "" - -#: includes/shortcodes/class-wc-shortcode-my-account.php:253 +#: includes/shortcodes/class-wc-shortcode-my-account.php:242 msgid "Invalid username or e-mail." msgstr "" -#: includes/shortcodes/class-wc-shortcode-my-account.php:267 +#: includes/shortcodes/class-wc-shortcode-my-account.php:256 msgid "Password reset is not allowed for this user" msgstr "" -#: includes/shortcodes/class-wc-shortcode-my-account.php:295 +#: includes/shortcodes/class-wc-shortcode-my-account.php:285 msgid "Check your e-mail for the confirmation link." msgstr "" -#: includes/shortcodes/class-wc-shortcode-my-account.php:315 -#: includes/shortcodes/class-wc-shortcode-my-account.php:320 -#: includes/shortcodes/class-wc-shortcode-my-account.php:327 +#: includes/shortcodes/class-wc-shortcode-my-account.php:305 +#: includes/shortcodes/class-wc-shortcode-my-account.php:310 +#: includes/shortcodes/class-wc-shortcode-my-account.php:326 msgid "Invalid key" msgstr "" -#: includes/shortcodes/class-wc-shortcode-my-account.php:364 +#: includes/shortcodes/class-wc-shortcode-my-account.php:363 msgid "Add a new payment method." msgstr "" -#: includes/shortcodes/class-wc-shortcode-order-tracking.php:49 +#: includes/shortcodes/class-wc-shortcode-order-tracking.php:54 msgid "Please enter a valid order ID" msgstr "" -#: includes/shortcodes/class-wc-shortcode-order-tracking.php:53 +#: includes/shortcodes/class-wc-shortcode-order-tracking.php:58 msgid "Please enter a valid order email" msgstr "" -#: includes/shortcodes/class-wc-shortcode-order-tracking.php:72 +#: includes/shortcodes/class-wc-shortcode-order-tracking.php:77 msgid "Sorry, we could not find that order id in our database." msgstr "" @@ -6119,296 +7910,408 @@ msgstr "" msgid "This product is protected and cannot be purchased." msgstr "" -#: includes/wc-cart-functions.php:87 +#: includes/wc-cart-functions.php:81 msgid "Added "%s" to your cart." msgstr "" -#: includes/wc-cart-functions.php:87 +#: includes/wc-cart-functions.php:81 msgid "" and "" msgstr "" -#: includes/wc-cart-functions.php:90 +#: includes/wc-cart-functions.php:84 msgid ""%s" was successfully added to your cart." msgstr "" -#: includes/wc-cart-functions.php:98 +#: includes/wc-cart-functions.php:92 msgid "Continue Shopping" msgstr "" -#: includes/wc-cart-functions.php:193 +#: includes/wc-cart-functions.php:192 +msgid "Coupon:" +msgstr "" + +#: includes/wc-cart-functions.php:218 msgid "Free shipping coupon" msgstr "" -#: includes/wc-cart-functions.php:195 +#: includes/wc-cart-functions.php:224 msgid "[Remove]" msgstr "" -#: includes/wc-cart-functions.php:254 +#: includes/wc-cart-functions.php:287 msgid "Free" msgstr "" -#: includes/wc-core-functions.php:148 +#: includes/wc-core-functions.php:73 +msgid "Order – %s" +msgstr "" + +#: includes/wc-core-functions.php:78 +msgid "Invalid order status" +msgstr "" + +#: includes/wc-core-functions.php:121 +msgid "Invalid order ID" +msgstr "" + +#: includes/wc-core-functions.php:249 tests/unit-tests/core-functions.php:28 +msgid "United Arab Emirates Dirham" +msgstr "" + +#: includes/wc-core-functions.php:250 tests/unit-tests/core-functions.php:29 msgid "Australian Dollars" msgstr "" -#: includes/wc-core-functions.php:149 +#: includes/wc-core-functions.php:251 tests/unit-tests/core-functions.php:30 +msgid "Bangladeshi Taka" +msgstr "" + +#: includes/wc-core-functions.php:252 tests/unit-tests/core-functions.php:31 msgid "Brazilian Real" msgstr "" -#: includes/wc-core-functions.php:150 +#: includes/wc-core-functions.php:253 tests/unit-tests/core-functions.php:32 msgid "Bulgarian Lev" msgstr "" -#: includes/wc-core-functions.php:151 +#: includes/wc-core-functions.php:254 tests/unit-tests/core-functions.php:33 msgid "Canadian Dollars" msgstr "" -#: includes/wc-core-functions.php:152 +#: includes/wc-core-functions.php:255 tests/unit-tests/core-functions.php:34 +msgid "Chilean Peso" +msgstr "" + +#: includes/wc-core-functions.php:256 tests/unit-tests/core-functions.php:35 msgid "Chinese Yuan" msgstr "" -#: includes/wc-core-functions.php:153 +#: includes/wc-core-functions.php:257 tests/unit-tests/core-functions.php:36 +msgid "Colombian Peso" +msgstr "" + +#: includes/wc-core-functions.php:258 tests/unit-tests/core-functions.php:37 msgid "Czech Koruna" msgstr "" -#: includes/wc-core-functions.php:154 +#: includes/wc-core-functions.php:259 tests/unit-tests/core-functions.php:38 msgid "Danish Krone" msgstr "" -#: includes/wc-core-functions.php:155 +#: includes/wc-core-functions.php:260 tests/unit-tests/core-functions.php:39 +msgid "Dominican Peso" +msgstr "" + +#: includes/wc-core-functions.php:261 tests/unit-tests/core-functions.php:40 msgid "Euros" msgstr "" -#: includes/wc-core-functions.php:156 +#: includes/wc-core-functions.php:262 tests/unit-tests/core-functions.php:41 msgid "Hong Kong Dollar" msgstr "" -#: includes/wc-core-functions.php:157 +#: includes/wc-core-functions.php:263 tests/unit-tests/core-functions.php:42 +msgid "Croatia kuna" +msgstr "" + +#: includes/wc-core-functions.php:264 tests/unit-tests/core-functions.php:43 msgid "Hungarian Forint" msgstr "" -#: includes/wc-core-functions.php:158 +#: includes/wc-core-functions.php:265 tests/unit-tests/core-functions.php:44 msgid "Icelandic krona" msgstr "" -#: includes/wc-core-functions.php:159 +#: includes/wc-core-functions.php:266 tests/unit-tests/core-functions.php:45 msgid "Indonesia Rupiah" msgstr "" -#: includes/wc-core-functions.php:160 +#: includes/wc-core-functions.php:267 tests/unit-tests/core-functions.php:46 msgid "Indian Rupee" msgstr "" -#: includes/wc-core-functions.php:161 +#: includes/wc-core-functions.php:268 tests/unit-tests/core-functions.php:47 +msgid "Nepali Rupee" +msgstr "" + +#: includes/wc-core-functions.php:269 tests/unit-tests/core-functions.php:48 msgid "Israeli Shekel" msgstr "" -#: includes/wc-core-functions.php:162 +#: includes/wc-core-functions.php:270 tests/unit-tests/core-functions.php:49 msgid "Japanese Yen" msgstr "" -#: includes/wc-core-functions.php:163 +#: includes/wc-core-functions.php:271 tests/unit-tests/core-functions.php:50 +msgid "Lao Kip" +msgstr "" + +#: includes/wc-core-functions.php:272 tests/unit-tests/core-functions.php:51 msgid "South Korean Won" msgstr "" -#: includes/wc-core-functions.php:164 +#: includes/wc-core-functions.php:273 tests/unit-tests/core-functions.php:52 msgid "Malaysian Ringgits" msgstr "" -#: includes/wc-core-functions.php:165 +#: includes/wc-core-functions.php:274 tests/unit-tests/core-functions.php:53 msgid "Mexican Peso" msgstr "" -#: includes/wc-core-functions.php:166 +#: includes/wc-core-functions.php:275 tests/unit-tests/core-functions.php:54 +msgid "Nigerian Naira" +msgstr "" + +#: includes/wc-core-functions.php:276 tests/unit-tests/core-functions.php:55 msgid "Norwegian Krone" msgstr "" -#: includes/wc-core-functions.php:167 +#: includes/wc-core-functions.php:277 tests/unit-tests/core-functions.php:56 msgid "New Zealand Dollar" msgstr "" -#: includes/wc-core-functions.php:168 +#: includes/wc-core-functions.php:278 tests/unit-tests/core-functions.php:57 +msgid "Paraguayan Guaraní" +msgstr "" + +#: includes/wc-core-functions.php:279 tests/unit-tests/core-functions.php:58 msgid "Philippine Pesos" msgstr "" -#: includes/wc-core-functions.php:169 +#: includes/wc-core-functions.php:280 tests/unit-tests/core-functions.php:59 msgid "Polish Zloty" msgstr "" -#: includes/wc-core-functions.php:170 +#: includes/wc-core-functions.php:281 tests/unit-tests/core-functions.php:60 msgid "Pounds Sterling" msgstr "" -#: includes/wc-core-functions.php:171 +#: includes/wc-core-functions.php:282 tests/unit-tests/core-functions.php:61 msgid "Romanian Leu" msgstr "" -#: includes/wc-core-functions.php:172 +#: includes/wc-core-functions.php:283 tests/unit-tests/core-functions.php:62 msgid "Russian Ruble" msgstr "" -#: includes/wc-core-functions.php:173 +#: includes/wc-core-functions.php:284 tests/unit-tests/core-functions.php:63 msgid "Singapore Dollar" msgstr "" -#: includes/wc-core-functions.php:174 +#: includes/wc-core-functions.php:285 tests/unit-tests/core-functions.php:64 msgid "South African rand" msgstr "" -#: includes/wc-core-functions.php:175 +#: includes/wc-core-functions.php:286 tests/unit-tests/core-functions.php:65 msgid "Swedish Krona" msgstr "" -#: includes/wc-core-functions.php:176 +#: includes/wc-core-functions.php:287 tests/unit-tests/core-functions.php:66 msgid "Swiss Franc" msgstr "" -#: includes/wc-core-functions.php:177 +#: includes/wc-core-functions.php:288 tests/unit-tests/core-functions.php:67 msgid "Taiwan New Dollars" msgstr "" -#: includes/wc-core-functions.php:178 +#: includes/wc-core-functions.php:289 tests/unit-tests/core-functions.php:68 msgid "Thai Baht" msgstr "" -#: includes/wc-core-functions.php:179 +#: includes/wc-core-functions.php:290 tests/unit-tests/core-functions.php:69 msgid "Turkish Lira" msgstr "" -#: includes/wc-core-functions.php:180 +#: includes/wc-core-functions.php:291 tests/unit-tests/core-functions.php:70 msgid "US Dollars" msgstr "" -#: includes/wc-core-functions.php:181 +#: includes/wc-core-functions.php:292 tests/unit-tests/core-functions.php:71 msgid "Vietnamese Dong" msgstr "" -#: includes/wc-coupon-functions.php:22 +#: includes/wc-core-functions.php:293 tests/unit-tests/core-functions.php:72 +msgid "Egyptian Pound" +msgstr "" + +#: includes/wc-coupon-functions.php:22 tests/unit-tests/coupon-functions.php:17 msgid "Cart Discount" msgstr "" -#: includes/wc-coupon-functions.php:23 +#: includes/wc-coupon-functions.php:23 tests/unit-tests/coupon-functions.php:18 msgid "Cart % Discount" msgstr "" -#: includes/wc-coupon-functions.php:24 +#: includes/wc-coupon-functions.php:24 tests/unit-tests/coupon-functions.php:19 msgid "Product Discount" msgstr "" -#: includes/wc-coupon-functions.php:25 +#: includes/wc-coupon-functions.php:25 tests/unit-tests/coupon-functions.php:20 msgid "Product % Discount" msgstr "" -#: includes/wc-customer-functions.php:49 -msgid "An account is already registered with your email address. Please login." +#: includes/wc-deprecated-functions.php:709 +msgid "" +"The shop_order_status taxonomy is no more in WooCommerce 2.2! You should " +"use the new WooCommerce post_status instead, read more..." msgstr "" -#: includes/wc-customer-functions.php:59 -msgid "Please enter a valid account username." +#: includes/wc-deprecated-functions.php:713 +msgid "" +"The \"publish\" order status is no more in WooCommerce 2.2! You should use " +"the new WooCommerce post_status instead, read more..." msgstr "" -#: includes/wc-customer-functions.php:62 -msgid "An account is already registered with that username. Please choose another." -msgstr "" - -#: includes/wc-customer-functions.php:82 -msgid "Please enter an account password." -msgstr "" - -#: includes/wc-customer-functions.php:107 -msgid "Couldn’t register you… please contact us if you continue to have problems." -msgstr "" - -#: includes/wc-order-functions.php:294 +#: includes/wc-order-functions.php:481 msgid "Unpaid order cancelled - time limit reached." msgstr "" -#: includes/wc-product-functions.php:235 -msgctxt "slug" -msgid "uncategorized" +#: includes/wc-order-functions.php:576 +msgid "Refund – %s" msgstr "" -#: includes/wc-template-functions.php:101 +#: includes/wc-product-functions.php:492 +msgid "Simple product" +msgstr "" + +#: includes/wc-product-functions.php:493 +msgid "Grouped product" +msgstr "" + +#: includes/wc-product-functions.php:494 +msgid "External/Affiliate product" +msgstr "" + +#: includes/wc-product-functions.php:495 +msgid "Variable product" +msgstr "" + +#: includes/wc-template-functions.php:120 msgid "New products" msgstr "" -#: includes/wc-template-functions.php:109 +#: includes/wc-template-functions.php:128 msgid "New products added to %s" msgstr "" -#: includes/wc-template-functions.php:117 +#: includes/wc-template-functions.php:136 msgid "New products tagged %s" msgstr "" -#: includes/wc-template-functions.php:350 -msgid "This is a demo store for testing purposes — no orders shall be fulfilled." +#: includes/wc-template-functions.php:382 +msgid "" +"This is a demo store for testing purposes — no orders shall be " +"fulfilled." msgstr "" -#: includes/wc-template-functions.php:369 +#: includes/wc-template-functions.php:401 msgid "Search Results: “%s”" msgstr "" -#: includes/wc-template-functions.php:372 +#: includes/wc-template-functions.php:404 msgid " – Page %s" msgstr "" -#: includes/wc-template-functions.php:973 -#: templates/checkout/form-shipping.php:57 -#: templates/single-product/tabs/additional-information.php:14 +#: includes/wc-template-functions.php:655 +msgid "Default sorting" +msgstr "" + +#: includes/wc-template-functions.php:656 +msgid "Sort by popularity" +msgstr "" + +#: includes/wc-template-functions.php:657 +msgid "Sort by average rating" +msgstr "" + +#: includes/wc-template-functions.php:658 +msgid "Sort by newness" +msgstr "" + +#: includes/wc-template-functions.php:659 +msgid "Sort by price: low to high" +msgstr "" + +#: includes/wc-template-functions.php:660 +msgid "Sort by price: high to low" +msgstr "" + +#: includes/wc-template-functions.php:1013 +#: templates/checkout/form-shipping.php:55 +#: templates/single-product/tabs/additional-information.php:17 msgid "Additional Information" msgstr "" -#: includes/wc-template-functions.php:981 +#: includes/wc-template-functions.php:1022 msgid "Reviews (%d)" msgstr "" -#: includes/wc-template-functions.php:1071 -msgid "Use $args argument as an array instead. Deprecated argument will be removed in WC 2.2." +#: includes/wc-template-functions.php:1113 +msgid "" +"Use $args argument as an array instead. Deprecated argument will be removed " +"in WC 2.2." msgstr "" -#: includes/wc-template-functions.php:1239 -msgctxt "breadcrumb" -msgid "Home" -msgstr "" - -#: includes/wc-template-functions.php:1512 +#: includes/wc-template-functions.php:1575 msgid "Order Again" msgstr "" -#: includes/wc-template-functions.php:1603 -#: templates/cart/shipping-calculator.php:28 +#: includes/wc-template-functions.php:1671 +#: templates/cart/shipping-calculator.php:26 msgid "Select a country…" msgstr "" -#: includes/wc-template-functions.php:1610 +#: includes/wc-template-functions.php:1678 msgid "Update country" msgstr "" -#: includes/wc-template-functions.php:1653 -#: templates/cart/shipping-calculator.php:52 +#: includes/wc-template-functions.php:1728 +#: templates/cart/shipping-calculator.php:50 msgid "Select a state…" msgstr "" -#: includes/wc-template-functions.php:1766 +#: includes/wc-template-functions.php:1886 msgid "Search for:" msgstr "" -#: includes/wc-template-functions.php:1767 +#: includes/wc-template-functions.php:1887 msgid "Search for products" msgstr "" -#: includes/wc-template-functions.php:1768 +#: includes/wc-template-functions.php:1888 msgid "Search" msgstr "" -#: includes/wc-term-functions.php:113 +#: includes/wc-term-functions.php:144 msgid "Select a category" msgstr "" -#: includes/wc-term-functions.php:117 +#: includes/wc-term-functions.php:147 msgid "Uncategorized" msgstr "" +#: includes/wc-user-functions.php:52 +msgid "An account is already registered with your email address. Please login." +msgstr "" + +#: includes/wc-user-functions.php:61 +msgid "Please enter a valid account username." +msgstr "" + +#: includes/wc-user-functions.php:65 +msgid "An account is already registered with that username. Please choose another." +msgstr "" + +#: includes/wc-user-functions.php:86 +msgid "Please enter an account password." +msgstr "" + +#: includes/wc-user-functions.php:112 +msgid "" +"Couldn’t register you… please contact us if you continue to " +"have problems." +msgstr "" + #: includes/widgets/class-wc-widget-cart.php:23 msgid "Display the user's Cart in the sidebar." msgstr "" @@ -6417,6 +8320,11 @@ msgstr "" msgid "WooCommerce Cart" msgstr "" +#: includes/widgets/class-wc-widget-cart.php:29 +#: includes/widgets/class-wc-widget-cart.php:56 +msgid "Cart" +msgstr "" + #: includes/widgets/class-wc-widget-cart.php:35 msgid "Hide if cart is empty" msgstr "" @@ -6433,22 +8341,24 @@ msgstr "" msgid "Active Filters" msgstr "" -#: includes/widgets/class-wc-widget-layered-nav-filters.php:84 -#: includes/widgets/class-wc-widget-layered-nav-filters.php:91 -#: includes/widgets/class-wc-widget-layered-nav-filters.php:96 +#: includes/widgets/class-wc-widget-layered-nav-filters.php:85 +#: includes/widgets/class-wc-widget-layered-nav-filters.php:92 +#: includes/widgets/class-wc-widget-layered-nav-filters.php:97 msgid "Remove filter" msgstr "" -#: includes/widgets/class-wc-widget-layered-nav-filters.php:91 +#: includes/widgets/class-wc-widget-layered-nav-filters.php:92 msgid "Min" msgstr "" -#: includes/widgets/class-wc-widget-layered-nav-filters.php:96 +#: includes/widgets/class-wc-widget-layered-nav-filters.php:97 msgid "Max" msgstr "" #: includes/widgets/class-wc-widget-layered-nav.php:21 -msgid "Shows a custom attribute in a widget which lets you narrow down the list of products when viewing product categories." +msgid "" +"Shows a custom attribute in a widget which lets you narrow down the list of " +"products when viewing product categories." msgstr "" #: includes/widgets/class-wc-widget-layered-nav.php:23 @@ -6492,7 +8402,9 @@ msgid "Any %s" msgstr "" #: includes/widgets/class-wc-widget-price-filter.php:23 -msgid "Shows a price filter slider in a widget which lets you narrow down the list of shown products when viewing product categories." +msgid "" +"Shows a price filter slider in a widget which lets you narrow down the list " +"of shown products when viewing product categories." msgstr "" #: includes/widgets/class-wc-widget-price-filter.php:25 @@ -6549,10 +8461,10 @@ msgid "Show hierarchy" msgstr "" #: includes/widgets/class-wc-widget-product-categories.php:60 -msgid "Only show children for the current category" +msgid "Only show children of the current category" msgstr "" -#: includes/widgets/class-wc-widget-product-categories.php:156 +#: includes/widgets/class-wc-widget-product-categories.php:218 msgid "No product categories exist." msgstr "" @@ -6607,7 +8519,7 @@ msgstr "" msgid "Date" msgstr "" -#: includes/widgets/class-wc-widget-products.php:54 templates/cart/cart.php:28 +#: includes/widgets/class-wc-widget-products.php:54 templates/cart/cart.php:26 #: templates/emails/admin-new-order.php:24 #: templates/emails/customer-completed-order.php:25 #: templates/emails/customer-invoice.php:29 @@ -6624,11 +8536,6 @@ msgstr "" msgid "Sales" msgstr "" -#: includes/widgets/class-wc-widget-products.php:62 -msgctxt "Sorting order" -msgid "Order" -msgstr "" - #: includes/widgets/class-wc-widget-products.php:64 msgid "ASC" msgstr "" @@ -6661,11 +8568,6 @@ msgstr "" msgid "Number of reviews to show" msgstr "" -#: includes/widgets/class-wc-widget-recent-reviews.php:85 -msgctxt "by comment author" -msgid "by %1$s" -msgstr "" - #: includes/widgets/class-wc-widget-recently-viewed.php:21 msgid "Display a list of recently viewed products." msgstr "" @@ -6707,19 +8609,23 @@ msgid "Shipping and Handling" msgstr "" #: templates/cart/cart-shipping.php:55 -msgid "No shipping methods were found; please recalculate your shipping or continue to checkout and enter your full address to see if there is shipping available to your location." +msgid "Please use the shipping calculator to see available shipping methods." msgstr "" #: templates/cart/cart-shipping.php:59 +msgid "" +"Please continue to the checkout and enter your full address to see if there " +"are any available shipping methods." +msgstr "" + +#: templates/cart/cart-shipping.php:63 msgid "Please fill in your details to see available shipping methods." msgstr "" -#: templates/cart/cart-shipping.php:69 templates/cart/cart-shipping.php:77 -msgid "Sorry, shipping is unavailable %s." -msgstr "" - -#: templates/cart/cart-shipping.php:69 templates/cart/cart-shipping.php:77 -msgid "If you require assistance or wish to make alternate arrangements please contact us." +#: templates/cart/cart-shipping.php:72 templates/cart/cart-shipping.php:78 +msgid "" +"There doesn‘t seem to be any available shipping methods. Please " +"double check your address, or contact us if you need any help." msgstr "" #: templates/cart/cart-shipping.php:93 @@ -6730,11 +8636,11 @@ msgstr "" msgid "Cart Totals" msgstr "" -#: templates/cart/cart-totals.php:21 templates/checkout/review-order.php:25 +#: templates/cart/cart-totals.php:21 templates/checkout/review-order.php:51 msgid "Cart Subtotal" msgstr "" -#: templates/cart/cart-totals.php:75 templates/checkout/review-order.php:79 +#: templates/cart/cart-totals.php:75 templates/checkout/review-order.php:105 msgid "Order Total" msgstr "" @@ -6743,10 +8649,12 @@ msgid " (taxes estimated for %s)" msgstr "" #: templates/cart/cart-totals.php:90 -msgid "Note: Shipping and taxes are estimated%s and will be updated during checkout based on your billing and shipping information." +msgid "" +"Note: Shipping and taxes are estimated%s and will be updated during " +"checkout based on your billing and shipping information." msgstr "" -#: templates/cart/cart.php:29 templates/emails/admin-new-order.php:23 +#: templates/cart/cart.php:27 templates/emails/admin-new-order.php:23 #: templates/emails/customer-completed-order.php:24 #: templates/emails/customer-invoice.php:28 #: templates/emails/customer-note.php:28 @@ -6754,24 +8662,28 @@ msgstr "" msgid "Quantity" msgstr "" -#: templates/cart/cart.php:30 templates/checkout/review-order.php:19 -#: templates/myaccount/my-orders.php:35 templates/order/order-details.php:21 +#: templates/cart/cart.php:28 templates/checkout/review-order.php:19 +#: templates/myaccount/my-orders.php:35 templates/order/order-details.php:19 msgid "Total" msgstr "" -#: templates/cart/cart.php:47 +#: templates/cart/cart.php:45 msgid "Remove this item" msgstr "" -#: templates/cart/cart.php:118 templates/checkout/form-coupon.php:29 +#: templates/cart/cart.php:117 templates/checkout/form-coupon.php:23 +msgid "Coupon code" +msgstr "" + +#: templates/cart/cart.php:117 templates/checkout/form-coupon.php:27 msgid "Apply Coupon" msgstr "" -#: templates/cart/cart.php:125 +#: templates/cart/cart.php:124 msgid "Update Cart" msgstr "" -#: templates/cart/cart.php:125 +#: templates/cart/cart.php:124 msgid "Proceed to Checkout" msgstr "" @@ -6779,79 +8691,80 @@ msgstr "" msgid "You may be interested in…" msgstr "" -#: templates/cart/mini-cart.php:51 +#: templates/cart/mini-cart.php:52 msgid "No products in the cart." msgstr "" -#: templates/cart/mini-cart.php:59 +#: templates/cart/mini-cart.php:60 msgid "Subtotal" msgstr "" -#: templates/cart/shipping-calculator.php:22 +#: templates/cart/mini-cart.php:66 +msgid "Checkout" +msgstr "" + +#: templates/cart/shipping-calculator.php:20 msgid "Calculate Shipping" msgstr "" -#: templates/cart/shipping-calculator.php:45 -#: templates/cart/shipping-calculator.php:51 -#: templates/cart/shipping-calculator.php:63 +#: templates/cart/shipping-calculator.php:43 +#: templates/cart/shipping-calculator.php:49 +#: templates/cart/shipping-calculator.php:61 msgid "State / county" msgstr "" -#: templates/cart/shipping-calculator.php:72 +#: templates/cart/shipping-calculator.php:70 msgid "City" msgstr "" -#: templates/cart/shipping-calculator.php:85 +#: templates/cart/shipping-calculator.php:83 msgid "Update Totals" msgstr "" #: templates/checkout/cart-errors.php:16 -msgid "There are some issues with the items in your cart (shown above). Please go back to the cart page and resolve these issues before checking out." +msgid "" +"There are some issues with the items in your cart (shown above). Please go " +"back to the cart page and resolve these issues before checking out." msgstr "" #: templates/checkout/cart-errors.php:20 msgid "Return To Cart" msgstr "" -#: templates/checkout/form-billing.php:17 +#: templates/checkout/form-billing.php:15 msgid "Billing & Shipping" msgstr "" -#: templates/checkout/form-billing.php:21 -#: templates/myaccount/form-edit-address.php:14 -#: templates/myaccount/my-address.php:19 templates/myaccount/my-address.php:25 -#: templates/order/order-details.php:118 -msgid "Billing Address" +#: templates/checkout/form-billing.php:19 +msgid "Billing Details" msgstr "" -#: templates/checkout/form-billing.php:40 +#: templates/checkout/form-billing.php:38 msgid "Create an account?" msgstr "" -#: templates/checkout/form-billing.php:51 -msgid "Create an account by entering the information below. If you are a returning customer please login at the top of the page." +#: templates/checkout/form-billing.php:49 +msgid "" +"Create an account by entering the information below. If you are a returning " +"customer please login at the top of the page." msgstr "" -#: templates/checkout/form-checkout.php:20 +#: templates/checkout/form-checkout.php:18 msgid "You must be logged in to checkout." msgstr "" -#: templates/checkout/form-checkout.php:51 +#: templates/checkout/form-checkout.php:49 msgid "Your order" msgstr "" -#: templates/checkout/form-coupon.php:17 +#: templates/checkout/form-coupon.php:16 msgid "Have a coupon?" msgstr "" -#: templates/checkout/form-coupon.php:18 +#: templates/checkout/form-coupon.php:16 msgid "Click here to enter your code" msgstr "" -#: templates/checkout/form-coupon.php:25 -msgid "Coupon code" -msgstr "" - #: templates/checkout/form-login.php:14 msgid "Returning customer?" msgstr "" @@ -6861,30 +8774,36 @@ msgid "Click here to login" msgstr "" #: templates/checkout/form-login.php:22 -msgid "If you have shopped with us before, please enter your details in the boxes below. If you are a new customer please proceed to the Billing & Shipping section." +msgid "" +"If you have shopped with us before, please enter your details in the boxes " +"below. If you are a new customer please proceed to the Billing & " +"Shipping section." msgstr "" -#: templates/checkout/form-pay.php:20 +#: templates/checkout/form-pay.php:18 msgid "Qty" msgstr "" -#: templates/checkout/form-pay.php:21 +#: templates/checkout/form-pay.php:19 msgid "Totals" msgstr "" -#: templates/checkout/form-pay.php:54 +#: templates/checkout/form-pay.php:52 msgid "Payment" msgstr "" -#: templates/checkout/form-pay.php:79 -msgid "Sorry, it seems that there are no available payment methods for your location. Please contact us if you require assistance or wish to make alternate arrangements." +#: templates/checkout/form-pay.php:77 +msgid "" +"Sorry, it seems that there are no available payment methods for your " +"location. Please contact us if you require assistance or wish to make " +"alternate arrangements." msgstr "" -#: templates/checkout/form-pay.php:89 +#: templates/checkout/form-pay.php:87 msgid "Pay for order" msgstr "" -#: templates/checkout/form-shipping.php:31 +#: templates/checkout/form-shipping.php:29 msgid "Ship to a different address?" msgstr "" @@ -6893,46 +8812,53 @@ msgid "Please fill in your details above to see available payment methods." msgstr "" #: templates/checkout/review-order.php:152 -msgid "Sorry, it seems that there are no available payment methods for your state. Please contact us if you require assistance or wish to make alternate arrangements." +msgid "" +"Sorry, it seems that there are no available payment methods for your state. " +"Please contact us if you require assistance or wish to make alternate " +"arrangements." msgstr "" -#: templates/checkout/review-order.php:161 -msgid "Since your browser does not support JavaScript, or it is disabled, please ensure you click the Update Totals button before placing your order. You may be charged more than the amount stated above if you fail to do so." +#: templates/checkout/review-order.php:163 +msgid "" +"Since your browser does not support JavaScript, or it is disabled, please " +"ensure you click the Update Totals button before placing your " +"order. You may be charged more than the amount stated above if you fail to " +"do so." msgstr "" -#: templates/checkout/review-order.php:161 +#: templates/checkout/review-order.php:163 msgid "Update totals" msgstr "" -#: templates/checkout/review-order.php:168 +#: templates/checkout/review-order.php:170 msgid "Place order" msgstr "" -#: templates/checkout/review-order.php:177 -msgid "I have read and accept the" +#: templates/checkout/review-order.php:179 +msgid "" +"I’ve read and accept the terms & " +"conditions" msgstr "" -#: templates/checkout/review-order.php:177 -msgid "terms & conditions" +#: templates/checkout/thankyou.php:16 +msgid "" +"Unfortunately your order cannot be processed as the originating " +"bank/merchant has declined your transaction." msgstr "" -#: templates/checkout/thankyou.php:18 -msgid "Unfortunately your order cannot be processed as the originating bank/merchant has declined your transaction." -msgstr "" - -#: templates/checkout/thankyou.php:22 +#: templates/checkout/thankyou.php:20 msgid "Please attempt your purchase again or go to your account page." msgstr "" -#: templates/checkout/thankyou.php:24 +#: templates/checkout/thankyou.php:22 msgid "Please attempt your purchase again." msgstr "" -#: templates/checkout/thankyou.php:28 templates/myaccount/my-orders.php:71 +#: templates/checkout/thankyou.php:26 templates/myaccount/my-orders.php:68 msgid "Pay" msgstr "" -#: templates/checkout/thankyou.php:36 templates/checkout/thankyou.php:67 +#: templates/checkout/thankyou.php:34 templates/checkout/thankyou.php:65 msgid "Thank you. Your order has been received." msgstr "" @@ -6950,7 +8876,7 @@ msgstr "" #: templates/emails/customer-note.php:55 #: templates/emails/customer-processing-order.php:51 #: templates/emails/plain/admin-new-order.php:39 -#: templates/order/order-details.php:97 +#: templates/order/order-details.php:95 msgid "Customer details" msgstr "" @@ -6962,7 +8888,7 @@ msgstr "" #: templates/emails/plain/customer-completed-order.php:41 #: templates/emails/plain/customer-note.php:49 #: templates/emails/plain/customer-processing-order.php:41 -#: templates/order/order-details.php:101 +#: templates/order/order-details.php:99 msgid "Email:" msgstr "" @@ -6979,12 +8905,16 @@ msgstr "" #: templates/emails/customer-completed-order.php:14 #: templates/emails/plain/customer-completed-order.php:13 -msgid "Hi there. Your recent order on %s has been completed. Your order details are shown below for your reference:" +msgid "" +"Hi there. Your recent order on %s has been completed. Your order details " +"are shown below for your reference:" msgstr "" #: templates/emails/customer-invoice.php:16 #: templates/emails/plain/customer-invoice.php:14 -msgid "An order has been created for you on %s. To pay for this order please use the following link: %s" +msgid "" +"An order has been created for you on %s. To pay for this order please use " +"the following link: %s" msgstr "" #: templates/emails/customer-invoice.php:16 @@ -7002,7 +8932,9 @@ msgstr "" #: templates/emails/customer-new-account.php:22 #: templates/emails/plain/customer-new-account.php:18 -msgid "You can access your account area to view your orders and change your password here: %s." +msgid "" +"You can access your account area to view your orders and change your " +"password here: %s." msgstr "" #: templates/emails/customer-note.php:14 @@ -7017,7 +8949,9 @@ msgstr "" #: templates/emails/customer-processing-order.php:14 #: templates/emails/plain/customer-processing-order.php:13 -msgid "Your order has been received and is now being processed. Your order details are shown below for your reference:" +msgid "" +"Your order has been received and is now being processed. Your order details " +"are shown below for your reference:" msgstr "" #: templates/emails/customer-reset-password.php:14 @@ -7044,23 +8978,27 @@ msgstr "" msgid "Click here to reset your password" msgstr "" -#: templates/emails/email-addresses.php:18 -#: templates/emails/plain/email-addresses.php:12 +#: templates/emails/email-addresses.php:20 +#: templates/emails/plain/email-addresses.php:14 msgid "Billing address" msgstr "" -#: templates/emails/email-addresses.php:28 -#: templates/emails/plain/email-addresses.php:17 +#: templates/emails/email-addresses.php:30 +#: templates/emails/plain/email-addresses.php:19 msgid "Shipping address" msgstr "" -#: templates/emails/email-order-items.php:42 -#: templates/emails/plain/email-order-items.php:43 -msgid "Download %d" +#: templates/emails/email-order-items.php:23 +msgid "Product Image" msgstr "" #: templates/emails/email-order-items.php:44 -#: templates/emails/plain/email-order-items.php:45 +#: templates/emails/plain/email-order-items.php:44 +msgid "Download %d" +msgstr "" + +#: templates/emails/email-order-items.php:46 +#: templates/emails/plain/email-order-items.php:46 msgid "Download" msgstr "" @@ -7098,94 +9036,60 @@ msgstr "" msgid "Your password is %s." msgstr "" -#: templates/emails/plain/email-order-items.php:29 +#: templates/emails/plain/email-order-items.php:30 msgid "Quantity: %s" msgstr "" -#: templates/emails/plain/email-order-items.php:32 +#: templates/emails/plain/email-order-items.php:33 msgid "Cost: %s" msgstr "" -#: templates/global/breadcrumb.php:63 templates/shop/breadcrumb.php:63 +#: templates/global/breadcrumb.php:72 msgid "Products tagged “" msgstr "" -#: templates/global/breadcrumb.php:91 templates/global/breadcrumb.php:189 -#: templates/shop/breadcrumb.php:91 templates/shop/breadcrumb.php:189 +#: templates/global/breadcrumb.php:100 templates/global/breadcrumb.php:202 msgid "Search results for “" msgstr "" -#: templates/global/breadcrumb.php:147 templates/shop/breadcrumb.php:147 +#: templates/global/breadcrumb.php:156 msgid "Error 404" msgstr "" -#: templates/global/breadcrumb.php:193 templates/shop/breadcrumb.php:193 +#: templates/global/breadcrumb.php:206 msgid "Posts tagged “" msgstr "" -#: templates/global/breadcrumb.php:198 templates/shop/breadcrumb.php:198 +#: templates/global/breadcrumb.php:211 msgid "Author:" msgstr "" -#: templates/global/breadcrumb.php:203 templates/shop/breadcrumb.php:203 +#: templates/global/breadcrumb.php:216 msgid "Page" msgstr "" #: templates/global/form-login.php:22 -#: templates/myaccount/form-lost-password.php:24 -#: templates/shop/form-login.php:22 +#: templates/myaccount/form-lost-password.php:23 msgid "Username or email" msgstr "" -#: templates/global/form-login.php:26 templates/myaccount/form-login.php:36 -#: templates/myaccount/form-login.php:84 templates/shop/form-login.php:26 +#: templates/global/form-login.php:26 templates/myaccount/form-login.php:38 +#: templates/myaccount/form-login.php:88 msgid "Password" msgstr "" -#: templates/global/form-login.php:38 templates/myaccount/form-login.php:46 -#: templates/shop/form-login.php:38 +#: templates/global/form-login.php:38 templates/myaccount/form-login.php:48 msgid "Remember me" msgstr "" -#: templates/global/form-login.php:42 templates/myaccount/form-login.php:50 -#: templates/shop/form-login.php:42 +#: templates/global/form-login.php:42 templates/myaccount/form-login.php:52 msgid "Lost your password?" msgstr "" -#: templates/global/quantity-input.php:12 -#: templates/single-product/add-to-cart/quantity.php:12 -msgctxt "Product quantity input tooltip" -msgid "Qty" -msgstr "" - #: templates/loop/no-products-found.php:14 msgid "No products were found matching your selection." msgstr "" -#: templates/loop/orderby.php:21 -msgid "Default sorting" -msgstr "" - -#: templates/loop/orderby.php:22 -msgid "Sort by popularity" -msgstr "" - -#: templates/loop/orderby.php:23 -msgid "Sort by average rating" -msgstr "" - -#: templates/loop/orderby.php:24 -msgid "Sort by newness" -msgstr "" - -#: templates/loop/orderby.php:25 -msgid "Sort by price: low to high" -msgstr "" - -#: templates/loop/orderby.php:26 -msgid "Sort by price: high to low" -msgstr "" - #: templates/loop/result-count.php:28 msgid "Showing the single result" msgstr "" @@ -7194,106 +9098,120 @@ msgstr "" msgid "Showing all %d results" msgstr "" -#: templates/loop/result-count.php:32 -msgctxt "%1$d = first, %2$d = last, %3$d = total" -msgid "Showing %1$d–%2$d of %3$d results" -msgstr "" - #: templates/loop/sale-flash.php:16 templates/single-product/sale-flash.php:16 msgid "Sale!" msgstr "" #: templates/myaccount/form-add-payment-method.php:40 -msgid "Sorry, it seems that there are no payment methods which support adding a new payment method. Please contact us if you require assistance or wish to make alternate arrangements." +msgid "" +"Sorry, it seems that there are no payment methods which support adding a " +"new payment method. Please contact us if you require assistance or wish to " +"make alternate arrangements." msgstr "" #: templates/myaccount/form-add-payment-method.php:48 msgid "Add Payment Method" msgstr "" -#: templates/myaccount/form-change-password.php:20 -#: templates/myaccount/form-lost-password.php:31 -msgid "New password" -msgstr "" - -#: templates/myaccount/form-change-password.php:24 -#: templates/myaccount/form-lost-password.php:35 -msgid "Re-enter new password" -msgstr "" - -#: templates/myaccount/form-change-password.php:29 -#: templates/myaccount/form-lost-password.php:46 -msgid "Save" -msgstr "" - -#: templates/myaccount/form-edit-account.php:20 +#: templates/myaccount/form-edit-account.php:22 msgid "First name" msgstr "" -#: templates/myaccount/form-edit-account.php:24 +#: templates/myaccount/form-edit-account.php:26 msgid "Last name" msgstr "" -#: templates/myaccount/form-edit-account.php:28 -#: templates/myaccount/form-login.php:79 +#: templates/myaccount/form-edit-account.php:30 +#: templates/myaccount/form-login.php:81 msgid "Email address" msgstr "" -#: templates/myaccount/form-edit-account.php:32 -msgid "Password (leave blank to leave unchanged)" +#: templates/myaccount/form-edit-account.php:35 +msgid "Password Change" msgstr "" -#: templates/myaccount/form-edit-account.php:36 -msgid "Confirm new password" +#: templates/myaccount/form-edit-account.php:38 +msgid "Current Password (leave blank to leave unchanged)" msgstr "" -#: templates/myaccount/form-edit-account.php:41 +#: templates/myaccount/form-edit-account.php:42 +msgid "New Password (leave blank to leave unchanged)" +msgstr "" + +#: templates/myaccount/form-edit-account.php:46 +msgid "Confirm New Password" +msgstr "" + +#: templates/myaccount/form-edit-account.php:56 msgid "Save changes" msgstr "" -#: templates/myaccount/form-edit-address.php:14 -#: templates/myaccount/my-address.php:20 templates/order/order-details.php:133 +#: templates/myaccount/form-edit-address.php:16 +#: templates/myaccount/my-address.php:19 templates/myaccount/my-address.php:25 +#: templates/order/order-details.php:116 +msgid "Billing Address" +msgstr "" + +#: templates/myaccount/form-edit-address.php:16 +#: templates/myaccount/my-address.php:20 templates/order/order-details.php:131 msgid "Shipping Address" msgstr "" -#: templates/myaccount/form-edit-address.php:38 +#: templates/myaccount/form-edit-address.php:44 msgid "Save Address" msgstr "" -#: templates/myaccount/form-login.php:32 +#: templates/myaccount/form-login.php:34 msgid "Username or email address" msgstr "" -#: templates/myaccount/form-login.php:63 templates/myaccount/form-login.php:96 +#: templates/myaccount/form-login.php:65 templates/myaccount/form-login.php:102 msgid "Register" msgstr "" -#: templates/myaccount/form-login.php:72 +#: templates/myaccount/form-login.php:74 msgid "Username" msgstr "" -#: templates/myaccount/form-login.php:89 +#: templates/myaccount/form-login.php:95 msgid "Anti-spam" msgstr "" -#: templates/myaccount/form-lost-password.php:22 -msgid "Lost your password? Please enter your username or email address. You will receive a link to create a new password via email." +#: templates/myaccount/form-lost-password.php:21 +msgid "" +"Lost your password? Please enter your username or email address. You will " +"receive a link to create a new password via email." msgstr "" -#: templates/myaccount/form-lost-password.php:28 +#: templates/myaccount/form-lost-password.php:27 msgid "Enter a new password below." msgstr "" -#: templates/myaccount/form-lost-password.php:46 +#: templates/myaccount/form-lost-password.php:30 +msgid "New password" +msgstr "" + +#: templates/myaccount/form-lost-password.php:34 +msgid "Re-enter new password" +msgstr "" + +#: templates/myaccount/form-lost-password.php:45 msgid "Reset Password" msgstr "" -#: templates/myaccount/my-account.php:19 -msgid "Hello %s (not %s? Sign out)." +#: templates/myaccount/form-lost-password.php:45 +msgid "Save" msgstr "" -#: templates/myaccount/my-account.php:25 -msgid "From your account dashboard you can view your recent orders, manage your shipping and billing addresses and edit your password and account details." +#: templates/myaccount/my-account.php:19 +msgid "Hello %1$s (not %1$s? Sign out)." +msgstr "" + +#: templates/myaccount/my-account.php:24 +msgid "" +"From your account dashboard you can view your recent orders, manage your " +"shipping and billing addresses and edit your password and " +"account details." msgstr "" #: templates/myaccount/my-address.php:17 @@ -7312,11 +9230,11 @@ msgstr "" msgid "You have not set up this type of address yet." msgstr "" -#: templates/myaccount/my-downloads.php:18 +#: templates/myaccount/my-downloads.php:20 msgid "Available downloads" msgstr "" -#: templates/myaccount/my-downloads.php:27 +#: templates/myaccount/my-downloads.php:29 msgid "%s download remaining" msgid_plural "%s downloads remaining" msgstr[0] "" @@ -7330,22 +9248,40 @@ msgstr "" msgid "Status" msgstr "" -#: templates/myaccount/my-orders.php:62 +#: templates/myaccount/my-orders.php:59 msgid "%s for %s item" msgid_plural "%s for %s items" msgstr[0] "" msgstr[1] "" -#: templates/myaccount/my-orders.php:77 +#: templates/myaccount/my-orders.php:75 msgid "Cancel" msgstr "" -#: templates/myaccount/my-orders.php:82 +#: templates/myaccount/my-orders.php:81 msgid "View" msgstr "" +#: templates/myaccount/view-order.php:19 +msgid "" +"Order %s was placed on %s and is currently %s." +msgstr "" + +#: templates/myaccount/view-order.php:23 templates/order/tracking.php:23 +msgid "Order Updates" +msgstr "" + +#: templates/myaccount/view-order.php:29 templates/order/tracking.php:29 +msgid "l jS \\o\\f F Y, h:ia" +msgstr "" + #: templates/order/form-tracking.php:17 -msgid "To track your order please enter your Order ID in the box below and press return. This was given to you on your receipt and in the confirmation email you should have received." +msgid "" +"To track your order please enter your Order ID in the box below and press " +"return. This was given to you on your receipt and in the confirmation email " +"you should have received." msgstr "" #: templates/order/form-tracking.php:19 @@ -7368,31 +9304,31 @@ msgstr "" msgid "Track" msgstr "" -#: templates/order/order-details.php:16 +#: templates/order/order-details.php:14 msgid "Order Details" msgstr "" -#: templates/order/order-details.php:66 +#: templates/order/order-details.php:52 msgid "Download file%s" msgstr "" -#: templates/order/order-details.php:102 +#: templates/order/order-details.php:100 msgid "Telephone:" msgstr "" -#: templates/order/tracking.php:18 +#: templates/order/tracking.php:12 msgid "Order %s which was made %s has the status “%s”" msgstr "" -#: templates/order/tracking.php:18 +#: templates/order/tracking.php:12 msgid "ago" msgstr "" -#: templates/order/tracking.php:20 +#: templates/order/tracking.php:14 msgid "and was completed" msgstr "" -#: templates/order/tracking.php:20 +#: templates/order/tracking.php:14 msgid " ago" msgstr "" @@ -7408,21 +9344,17 @@ msgstr "" msgid "This product is currently out of stock and unavailable." msgstr "" -#: templates/single-product/meta.php:20 +#: templates/single-product/meta.php:23 msgid "SKU:" msgstr "" -#: templates/single-product/meta.php:20 -msgid "n/a" -msgstr "" - -#: templates/single-product/meta.php:24 +#: templates/single-product/meta.php:27 msgid "Category:" msgid_plural "Categories:" msgstr[0] "" msgstr[1] "" -#: templates/single-product/meta.php:26 +#: templates/single-product/meta.php:29 msgid "Tag:" msgid_plural "Tags:" msgstr[0] "" @@ -7432,7 +9364,7 @@ msgstr[1] "" msgid "Weight" msgstr "" -#: templates/single-product/product-attributes.php:37 +#: templates/single-product/product-attributes.php:35 msgid "Dimensions" msgstr "" @@ -7442,7 +9374,7 @@ msgid_plural "%s customer reviews" msgstr[0] "" msgstr[1] "" -#: templates/single-product/related.php:36 +#: templates/single-product/related.php:40 msgid "Related Products" msgstr "" @@ -7476,78 +9408,306 @@ msgstr[1] "" msgid "Reviews" msgstr "" -#: templates/single-product-reviews.php:34 -msgid "Previous" -msgstr "" - -#: templates/single-product-reviews.php:35 -msgid "Next" -msgstr "" - -#: templates/single-product-reviews.php:41 +#: templates/single-product-reviews.php:44 msgid "There are no reviews yet." msgstr "" -#: templates/single-product-reviews.php:54 +#: templates/single-product-reviews.php:57 msgid "Add a review" msgstr "" -#: templates/single-product-reviews.php:54 +#: templates/single-product-reviews.php:57 msgid "Be the first to review" msgstr "" -#: templates/single-product-reviews.php:55 +#: templates/single-product-reviews.php:58 msgid "Leave a Reply to %s" msgstr "" -#: templates/single-product-reviews.php:61 +#: templates/single-product-reviews.php:64 msgid "Email" msgstr "" -#: templates/single-product-reviews.php:64 +#: templates/single-product-reviews.php:67 msgid "Submit" msgstr "" -#: templates/single-product-reviews.php:70 +#: templates/single-product-reviews.php:73 msgid "Your Rating" msgstr "" -#: templates/single-product-reviews.php:71 +#: templates/single-product-reviews.php:74 msgid "Rate…" msgstr "" -#: templates/single-product-reviews.php:72 +#: templates/single-product-reviews.php:75 msgid "Perfect" msgstr "" -#: templates/single-product-reviews.php:73 +#: templates/single-product-reviews.php:76 msgid "Good" msgstr "" -#: templates/single-product-reviews.php:74 +#: templates/single-product-reviews.php:77 msgid "Average" msgstr "" -#: templates/single-product-reviews.php:75 +#: templates/single-product-reviews.php:78 msgid "Not that bad" msgstr "" -#: templates/single-product-reviews.php:76 +#: templates/single-product-reviews.php:79 msgid "Very Poor" msgstr "" -#: templates/single-product-reviews.php:80 +#: templates/single-product-reviews.php:83 msgid "Your Review" msgstr "" -#: templates/single-product-reviews.php:89 +#: templates/single-product-reviews.php:92 msgid "Only logged in customers who have purchased this product may leave a review." msgstr "" -#: woocommerce.php:181 -msgid "Docs" +#. Plugin URI of the plugin/theme +msgid "http://www.woothemes.com/woocommerce/" msgstr "" -#: woocommerce.php:182 -msgid "Premium Support" +#. Description of the plugin/theme +msgid "An e-commerce toolkit that helps you sell anything. Beautifully." +msgstr "" + +#. Author of the plugin/theme +msgid "WooThemes" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://woothemes.com" +msgstr "" + +#: i18n/states/US.php:23 +msgctxt "US state of Georgia" +msgid "Georgia" +msgstr "" + +#: includes/abstracts/abstract-wc-order.php:871 +msgctxt "hash before order number" +msgid "#" +msgstr "" + +#: includes/abstracts/abstract-wc-product.php:909 +msgctxt "min_price" +msgid "From:" +msgstr "" + +#: includes/api/class-wc-api-webhooks.php:189 +msgctxt "Webhook created on date parsed by strftime" +msgid "%b %d, %Y @ %I:%M %p" +msgstr "" + +#: includes/class-wc-checkout.php:98 +msgctxt "placeholder" +msgid "Username" +msgstr "" + +#: includes/class-wc-checkout.php:107 +msgctxt "placeholder" +msgid "Password" +msgstr "" + +#: includes/class-wc-checkout.php:116 +msgctxt "placeholder" +msgid "Notes about your order, e.g. special notes for delivery." +msgstr "" + +#: includes/class-wc-countries.php:513 +msgctxt "placeholder" +msgid "Street address" +msgstr "" + +#: includes/class-wc-countries.php:518 +msgctxt "placeholder" +msgid "Apartment, suite, unit etc. (optional)" +msgstr "" + +#: includes/class-wc-install.php:225 +msgctxt "Page slug" +msgid "shop" +msgstr "" + +#: includes/class-wc-install.php:230 +msgctxt "Page slug" +msgid "cart" +msgstr "" + +#: includes/class-wc-install.php:235 +msgctxt "Page slug" +msgid "checkout" +msgstr "" + +#: includes/class-wc-install.php:240 +msgctxt "Page slug" +msgid "my-account" +msgstr "" + +#: includes/class-wc-install.php:226 +msgctxt "Page title" +msgid "Shop" +msgstr "" + +#: includes/class-wc-install.php:231 +msgctxt "Page title" +msgid "Cart" +msgstr "" + +#: includes/class-wc-install.php:236 +msgctxt "Page title" +msgid "Checkout" +msgstr "" + +#: includes/class-wc-install.php:241 +msgctxt "Page title" +msgid "My Account" +msgstr "" + +#: includes/class-wc-post-types.php:62 +msgctxt "Admin menu name" +msgid "Categories" +msgstr "" + +#: includes/class-wc-post-types.php:97 +msgctxt "Admin menu name" +msgid "Tags" +msgstr "" + +#: includes/class-wc-post-types.php:134 +msgctxt "Admin menu name" +msgid "Shipping Classes" +msgstr "" + +#: includes/class-wc-post-types.php:228 +msgctxt "Admin menu name" +msgid "Products" +msgstr "" + +#: includes/class-wc-post-types.php:287 +msgctxt "Admin menu name" +msgid "Orders" +msgstr "" + +#: includes/class-wc-post-types.php:332 +msgctxt "Admin menu name" +msgid "Coupons" +msgstr "" + +#: includes/class-wc-post-types.php:81 +#: includes/updates/woocommerce-update-2.0.php:44 +msgctxt "slug" +msgid "product-category" +msgstr "" + +#: includes/class-wc-post-types.php:119 +#: includes/updates/woocommerce-update-2.0.php:45 +msgctxt "slug" +msgid "product-tag" +msgstr "" + +#: includes/class-wc-post-types.php:220 +#: includes/updates/woocommerce-update-2.0.php:53 +#: includes/wc-core-functions.php:507 includes/wc-core-functions.php:526 +#: includes/wc-core-functions.php:560 +msgctxt "slug" +msgid "product" +msgstr "" + +#: includes/wc-product-functions.php:208 +msgctxt "slug" +msgid "uncategorized" +msgstr "" + +#: includes/class-wc-post-types.php:391 includes/wc-order-functions.php:23 +msgctxt "Order status" +msgid "Pending payment" +msgstr "" + +#: includes/class-wc-post-types.php:399 includes/wc-order-functions.php:24 +msgctxt "Order status" +msgid "Processing" +msgstr "" + +#: includes/class-wc-post-types.php:407 includes/wc-order-functions.php:25 +msgctxt "Order status" +msgid "On hold" +msgstr "" + +#: includes/class-wc-post-types.php:415 includes/wc-order-functions.php:26 +msgctxt "Order status" +msgid "Completed" +msgstr "" + +#: includes/class-wc-post-types.php:423 includes/wc-order-functions.php:27 +msgctxt "Order status" +msgid "Cancelled" +msgstr "" + +#: includes/class-wc-post-types.php:431 includes/wc-order-functions.php:28 +msgctxt "Order status" +msgid "Refunded" +msgstr "" + +#: includes/class-wc-post-types.php:439 includes/wc-order-functions.php:29 +msgctxt "Order status" +msgid "Failed" +msgstr "" + +#: includes/class-wc-product-grouped.php:190 +#: includes/class-wc-product-variable.php:309 +#: includes/class-wc-product-variable.php:314 +msgctxt "Price range: from-to" +msgid "%1$s–%2$s" +msgstr "" + +#: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:114 +#: includes/shipping/international-delivery/class-wc-shipping-international-delivery.php:88 +msgctxt "Tax status" +msgid "None" +msgstr "" + +#: includes/wc-core-functions.php:73 includes/wc-order-functions.php:576 +msgctxt "Order date parsed by strftime" +msgid "%b %d, %Y @ %I:%M %p" +msgstr "" + +#: includes/wc-page-functions.php:77 +msgctxt "edit-address-slug" +msgid "billing" +msgstr "" + +#: includes/wc-page-functions.php:78 +msgctxt "edit-address-slug" +msgid "shipping" +msgstr "" + +#: includes/wc-template-functions.php:1281 +msgctxt "breadcrumb" +msgid "Home" +msgstr "" + +#: includes/widgets/class-wc-widget-products.php:62 +msgctxt "Sorting order" +msgid "Order" +msgstr "" + +#: includes/widgets/class-wc-widget-recent-reviews.php:85 +msgctxt "by comment author" +msgid "by %1$s" +msgstr "" + +#: templates/global/quantity-input.php:12 +msgctxt "Product quantity input tooltip" +msgid "Qty" +msgstr "" + +#: templates/loop/result-count.php:32 +msgctxt "%1$d = first, %2$d = last, %3$d = total" +msgid "Showing %1$d–%2$d of %3$d results" msgstr "" \ No newline at end of file diff --git a/i18n/makepot/extract/extract.php b/i18n/makepot/extract/extract.php deleted file mode 100644 index 9bed3308692..00000000000 --- a/i18n/makepot/extract/extract.php +++ /dev/null @@ -1,211 +0,0 @@ -rules = $rules; - } - - function extract_from_directory( $dir, $excludes = array(), $includes = array(), $prefix = '' ) { - $old_cwd = getcwd(); - chdir( $dir ); - $translations = new Translations; - $file_names = (array) scandir( '.' ); - foreach ( $file_names as $file_name ) { - if ( '.' == $file_name || '..' == $file_name ) continue; - if ( preg_match( '/\.php$/', $file_name ) && $this->does_file_name_match( $prefix . $file_name, $excludes, $includes ) ) { - $t = $this->extract_from_file( $file_name, $prefix ); - $translations->merge_originals_with( $t ); - } - if ( is_dir( $file_name ) ) { - $t = $this->extract_from_directory( $file_name, $excludes, $includes, $prefix . $file_name . '/' ); - $translations->merge_originals_with( $t ); - } - } - chdir( $old_cwd ); - return $translations; - } - - function extract_from_file( $file_name, $prefix ) { - $code = file_get_contents( $file_name ); - return $this->extract_entries( $code, $prefix . $file_name ); - } - - function does_file_name_match( $path, $excludes, $includes ) { - if ( $includes ) { - $matched_any_include = false; - foreach( $includes as $include ) { - if ( preg_match( '|^'.$include.'$|', $path ) ) { - $matched_any_include = true; - break; - } - } - if ( !$matched_any_include ) return false; - } - if ( $excludes ) { - foreach( $excludes as $exclude ) { - if ( preg_match( '|^'.$exclude.'$|', $path ) ) { - return false; - } - } - } - return true; - } - - function entry_from_call( $call, $file_name ) { - $rule = isset( $this->rules[$call['name']] )? $this->rules[$call['name']] : null; - if ( !$rule ) return null; - $entry = new Translation_Entry; - $multiple = array(); - $complete = false; - for( $i = 0; $i < count( $rule ); ++$i ) { - if ( $rule[$i] && ( !isset( $call['args'][$i] ) || !is_string( $call['args'][$i] ) || '' == $call['args'][$i] ) ) return false; - switch( $rule[$i] ) { - case 'string': - if ( $complete ) { - $multiple[] = $entry; - $entry = new Translation_Entry; - $complete = false; - } - $entry->singular = $call['args'][$i]; - $complete = true; - break; - case 'singular': - if ( $complete ) { - $multiple[] = $entry; - $entry = new Translation_Entry; - $complete = false; - } - $entry->singular = $call['args'][$i]; - $entry->is_plural = true; - break; - case 'plural': - $entry->plural = $call['args'][$i]; - $entry->is_plural = true; - $complete = true; - break; - case 'context': - $entry->context = $call['args'][$i]; - foreach( $multiple as &$single_entry ) { - $single_entry->context = $entry->context; - } - break; - } - } - if ( isset( $call['line'] ) && $call['line'] ) { - $references = array( $file_name . ':' . $call['line'] ); - $entry->references = $references; - foreach( $multiple as &$single_entry ) { - $single_entry->references = $references; - } - } - if ( isset( $call['comment'] ) && $call['comment'] ) { - $comments = rtrim( $call['comment'] ) . "\n"; - $entry->extracted_comments = $comments; - foreach( $multiple as &$single_entry ) { - $single_entry->extracted_comments = $comments; - } - } - if ( $multiple && $entry ) { - $multiple[] = $entry; - return $multiple; - } - - return $entry; - } - - function extract_entries( $code, $file_name ) { - $translations = new Translations; - $function_calls = $this->find_function_calls( array_keys( $this->rules ), $code ); - foreach( $function_calls as $call ) { - $entry = $this->entry_from_call( $call, $file_name ); - if ( is_array( $entry ) ) - foreach( $entry as $single_entry ) - $translations->add_entry_or_merge( $single_entry ); - elseif ( $entry) - $translations->add_entry_or_merge( $entry ); - } - return $translations; - } - - /** - * Finds all function calls in $code and returns an array with an associative array for each function: - * - name - name of the function - * - args - array for the function arguments. Each string literal is represented by itself, other arguments are represented by null. - * - line - line number - */ - function find_function_calls( $function_names, $code ) { - $tokens = token_get_all( $code ); - $function_calls = array(); - $latest_comment = false; - $in_func = false; - foreach( $tokens as $token ) { - $id = $text = null; - if ( is_array( $token ) ) list( $id, $text, $line ) = $token; - if ( T_WHITESPACE == $id ) continue; - if ( T_STRING == $id && in_array( $text, $function_names ) && !$in_func ) { - $in_func = true; - $paren_level = -1; - $args = array(); - $func_name = $text; - $func_line = $line; - $func_comment = $latest_comment? $latest_comment : ''; - - $just_got_into_func = true; - $latest_comment = false; - continue; - } - if ( T_COMMENT == $id ) { - $text = trim( preg_replace( '%^/\*|//%', '', preg_replace( '%\*/$%', '', $text ) ) ); - if ( 0 === strpos( $text, $this->comment_prefix ) ) { - $latest_comment = $text; - } - } - if ( !$in_func ) continue; - if ( '(' == $token ) { - $paren_level++; - if ( 0 == $paren_level ) { // start of first argument - $just_got_into_func = false; - $current_argument = null; - $current_argument_is_just_literal = true; - } - continue; - } - if ( $just_got_into_func ) { - // there wasn't a opening paren just after the function name -- this means it is not a function - $in_func = false; - $just_got_into_func = false; - } - if ( ')' == $token ) { - if ( 0 == $paren_level ) { - $in_func = false; - $args[] = $current_argument; - $call = array( 'name' => $func_name, 'args' => $args, 'line' => $func_line ); - if ( $func_comment ) $call['comment'] = $func_comment; - $function_calls[] = $call; - } - $paren_level--; - continue; - } - if ( ',' == $token && 0 == $paren_level ) { - $args[] = $current_argument; - $current_argument = null; - $current_argument_is_just_literal = true; - continue; - } - if ( T_CONSTANT_ENCAPSED_STRING == $id && $current_argument_is_just_literal ) { - // we can use eval safely, because we are sure $text is just a string literal - eval('$current_argument = '.$text.';' ); - continue; - } - $current_argument_is_just_literal = false; - $current_argument = null; - } - return $function_calls; - } -} diff --git a/i18n/makepot/index.php b/i18n/makepot/index.php deleted file mode 100644 index def6cc79b15..00000000000 --- a/i18n/makepot/index.php +++ /dev/null @@ -1,148 +0,0 @@ -projects as $name => $project ) { - $results[ $name ] = $makepot->generate_pot( $name ); - } -} - -// Load WooCommerce POT-files info -$pot_files = array(); -foreach( $makepot->projects as $name => $project ) { - $pot_files[ $name ] = array( - 'file' => $project['file'], - 'file_exists' => file_exists( $project['file'] ), - 'is_readable' => is_readable( $project['file'] ), - 'is_writable' => is_writable( $project['file'] ), - 'filemtime' => ( is_readable( $project['file'] ) ) ? filemtime( $project['file'] ) : false, - 'filesize' => ( is_readable( $project['file'] ) ) ? filesize( $project['file'] ) : false, - ); -} - -if($is_shell) { - printf("WooCommerce %s POT Generator\n\n", $makepot->woocommerce_version()); - if ( ! empty( $results ) ) { - foreach ( $results as $pot_file => $succeeded ) { - printf(" * %s %s\n", basename( $pot_files[ $pot_file ]['file'] ), $succeeded ? 'successfully generated' : 'could not be generated'); - } - echo "\n"; - } - echo "This tool will (re)generate and overwrite the following WooCommerce POT-files:\n\n"; - foreach ( $pot_files as $pot_file ) { - printf(" - %-30s\t[%swritable]\n", basename( $pot_file['file'] ), $pot_file['is_writable'] ? "" : "not "); - printf(" * Path: %s\n", dirname( $pot_file['file'] ) . '/'); - printf(" * Size: %s\n", $pot_file['file_exists'] ? number_format( $pot_file['filesize'], 0 ) : '--'); - printf(" * Last updated: %s\n", $pot_file['filemtime'] ? @date( 'F jS Y H:i:s', $pot_file['filemtime'] ) : '--'); - } - - printf("\nTo Generate POT-files now you must run:\n\n"); - printf("\tphp %s generate\n\n", $argv[0]); -} else { -?> - - - - - - WooCommerce POT Generator - - - - - -

    WooCommerce woocommerce_version() ?> POT Generator

    - - -
      - $succeeded ) { ?> - -
    • successfully generated.
    • - -
    • could not be generated.
    • - - -
    - - -

    This tool will (re)generate and overwrite the following WooCommerce POT-files:

    - -
      - -
    • - - - [writable] - - [not writable] - -
        -
      • Path:
      • -
      • Size:
      • -
      • Last updated:
      • -
      -
    • - -
    - -

    - Generate POT-files now -

    - - - - - - diff --git a/i18n/makepot/makepot.php b/i18n/makepot/makepot.php deleted file mode 100644 index 3fe9e38276e..00000000000 --- a/i18n/makepot/makepot.php +++ /dev/null @@ -1,205 +0,0 @@ - array( 'string' ), - '__' => array( 'string' ), - '_e' => array( 'string' ), - '_c' => array( 'string' ), - '_n' => array( 'singular', 'plural' ), - '_n_noop' => array( 'singular', 'plural' ), - '_nc' => array( 'singular', 'plural' ), - '__ngettext' => array( 'singular', 'plural' ), - '__ngettext_noop' => array( 'singular', 'plural' ), - '_x' => array( 'string', 'context' ), - '_ex' => array( 'string', 'context' ), - '_nx' => array( 'singular', 'plural', null, 'context' ), - '_nx_noop' => array( 'singular', 'plural', 'context' ), - '_n_js' => array( 'singular', 'plural' ), - '_nx_js' => array( 'singular', 'plural', 'context' ), - 'esc_attr__' => array( 'string' ), - 'esc_html__' => array( 'string' ), - 'esc_attr_e' => array( 'string' ), - 'esc_html_e' => array( 'string' ), - 'esc_attr_x' => array( 'string', 'context' ), - 'esc_html_x' => array( 'string', 'context' ), - ); - - /** - * Constructor - * - * @access public - * @return void - */ - public function __construct() { - // Default path - $this->set_woocommerce_path( dirname(__FILE__) . '/../..' ); - - // All available projects with their settings - $this->projects = array( - 'woocommerce' => array( - 'title' => 'Front-end', - 'file' => $this->woocommerce_path . 'i18n/languages/woocommerce.pot', - 'excludes' => array( 'includes/admin/.*' ), - 'includes' => array(), - ), - 'woocommerce-admin' => array( - 'title' => 'Admin', - 'file' => $this->woocommerce_path . 'i18n/languages/woocommerce-admin.pot', - 'excludes' => array(), - 'includes' => array( 'includes/admin/.*' ), - ), - ); - - // Ignore some strict standards notices caused by extract/extract.php - error_reporting(E_ALL); - - // Load required files and objects - require_once 'not-gettexted.php'; - require_once 'pot-ext-meta.php'; - require_once 'extract/extract.php'; - $this->extractor = new StringExtractor( $this->rules ); - } - - /** - * Sets the WooCommerce filesystem directory path - * - * @param string $path - * @return void - */ - public function set_woocommerce_path( $path ) { - $this->woocommerce_path = realpath( $path ) . '/'; - } - - /** - * POT generator - * - * @param string $project "woocommerce" or "woocommerce-admin" - * @return bool true on success, false on error - */ - public function generate_pot( $project = 'woocommerce' ) { - // Unknown project - if ( empty( $this->projects[ $project ] ) ) - return false; - - // Project config - $config = $this->projects[ $project ]; - - // Extract translatable strings from the WooCommerce plugin - $originals = $this->extractor->extract_from_directory( $this->woocommerce_path, $config['excludes'], $config['includes'] ); - - // Build POT file - $pot = new PO; - $pot->entries = $originals->entries; - $pot->set_header( 'Project-Id-Version', 'WooCommerce ' . $this->woocommerce_version() . ' ' . $config['title'] ); - $pot->set_header( 'Report-Msgid-Bugs-To', 'https://github.com/woothemes/woocommerce/issues' ); - $pot->set_header( 'POT-Creation-Date', gmdate( 'Y-m-d H:i:s+00:00' ) ); - $pot->set_header( 'MIME-Version', '1.0' ); - $pot->set_header( 'Content-Type', 'text/plain; charset=UTF-8' ); - $pot->set_header( 'Content-Transfer-Encoding', '8bit' ); - $pot->set_header( 'PO-Revision-Date', gmdate( 'Y' ) . '-MO-DA HO:MI+ZONE' ); - $pot->set_header( 'Last-Translator', 'FULL NAME ' ); - $pot->set_header( 'Language-Team', 'LANGUAGE ' ); - - // Write POT file - $result = $pot->export_to_file( $config['file'] ); - - // Add plugin header - if ( $project == 'woocommerce-admin' ) { - $potextmeta = new PotExtMeta; - $potextmeta->append( $this->woocommerce_path . 'woocommerce.php', $config['file'] ); - } - - return $result; - } - - /** - * Retrieves the WooCommerce version from the woocommerce.php file. - * - * @access public - * @return string|false WooCommerce version number, false if not found - */ - public function woocommerce_version() { - // Only run this method once - static $version; - if ( null !== $version ) - return $version; - - // File that contains the WooCommerce version number - $file = $this->woocommerce_path . 'woocommerce.php'; - - if ( is_readable( $file ) && preg_match( '/\bVersion:\s*+(\S+)/i', file_get_contents( $file ), $matches ) ) - $version = $matches[1]; - else - $version = false; - - return $version; - } - - /** - * get_first_lines function. - * - * @access public - * @param mixed $filename - * @param int $lines (default: 30) - * @return string|bool - */ - public static function get_first_lines($filename, $lines = 30) { - $extf = fopen($filename, 'r'); - if (!$extf) return false; - $first_lines = ''; - foreach(range(1, $lines) as $x) { - $line = fgets($extf); - if (feof($extf)) break; - if (false === $line) { - return false; - } - $first_lines .= $line; - } - return $first_lines; - } - - /** - * get_addon_header function. - * - * @access public - * @param mixed $header - * @param mixed &$source - * @return string|bool - */ - public static function get_addon_header($header, &$source) { - if (preg_match('|'.$header.':(.*)$|mi', $source, $matches)) - return trim($matches[1]); - else - return false; - } -} diff --git a/i18n/makepot/not-gettexted.php b/i18n/makepot/not-gettexted.php deleted file mode 100644 index 7f081808874..00000000000 --- a/i18n/makepot/not-gettexted.php +++ /dev/null @@ -1,240 +0,0 @@ - 'command_extract', 'replace' => 'command_replace' ); - - - function logmsg() { - $args = func_get_args(); - if ($this->enable_logging) error_log(implode(' ', $args)); - } - - function stderr($msg, $nl=true) { - fwrite(STDERR, $msg.($nl? "\n" : "")); - } - - function cli_die($msg) { - $this->stderr($msg); - exit(1); - } - - function unchanged_token($token, $s='') { - return is_array($token)? $token[1] : $token; - } - - function ignore_token($token, $s='') { - return ''; - } - - function list_php_files($dir) { - $files = array(); - $items = scandir( $dir ); - foreach ( (array) $items as $item ) { - $full_item = $dir . '/' . $item; - if ('.' == $item || '..' == $item) - continue; - if ('.php' == substr($item, -4)) - $files[] = $full_item; - if (is_dir($full_item)) - $files += array_merge($files, NotGettexted::list_php_files($full_item, $files)); - } - return $files; - } - - - function make_string_aggregator($global_array_name, $filename) { - $a = $global_array_name; - return create_function('$string, $comment_id, $line_number', 'global $'.$a.'; $'.$a.'[] = array($string, $comment_id, '.var_export($filename, true).', $line_number);'); - } - - function make_mo_replacer($global_mo_name) { - $m = $global_mo_name; - return create_function('$token, $string', 'global $'.$m.'; return var_export($'.$m.'->translate($string), true);'); - } - - function walk_tokens(&$tokens, $string_action, $other_action, $register_action=null) { - - $current_comment_id = ''; - $current_string = ''; - $current_string_line = 0; - - $result = ''; - $line = 1; - - foreach($tokens as $token) { - if (is_array($token)) { - list($id, $text) = $token; - $line += substr_count($text, "\n"); - if ((T_ML_COMMENT == $id || T_COMMENT == $id) && preg_match('|/\*\s*(/?WP_I18N_[a-z_]+)\s*\*/|i', $text, $matches)) { - if ($this->STAGE_OUTSIDE == $stage) { - $stage = $this->STAGE_START_COMMENT; - $current_comment_id = $matches[1]; - $this->logmsg('start comment', $current_comment_id); - $result .= call_user_func($other_action, $token); - continue; - } - if ($this->STAGE_START_COMMENT <= $stage && $stage <= $this->STAGE_WHITESPACE_AFTER && '/'.$current_comment_id == $matches[1]) { - $stage = $this->STAGE_END_COMMENT; - $this->logmsg('end comment', $current_comment_id); - $result .= call_user_func($other_action, $token); - if (!is_null($register_action)) call_user_func($register_action, $current_string, $current_comment_id, $current_string_line); - continue; - } - } else if (T_CONSTANT_ENCAPSED_STRING == $id) { - if ($this->STAGE_START_COMMENT <= $stage && $stage < $this->STAGE_WHITESPACE_AFTER) { - eval('$current_string='.$text.';'); - $this->logmsg('string', $current_string); - $current_string_line = $line; - $result .= call_user_func($string_action, $token, $current_string); - continue; - } - } else if (T_WHITESPACE == $id) { - if ($this->STAGE_START_COMMENT <= $stage && $stage < $this->STAGE_STRING) { - $stage = $this->STAGE_WHITESPACE_BEFORE; - $this->logmsg('whitespace before'); - $result .= call_user_func($other_action, $token); - continue; - } - if ($this->STAGE_STRING < $stage && $stage < $this->STAGE_END_COMMENT) { - $stage = $this->STAGE_WHITESPACE_AFTER; - $this->logmsg('whitespace after'); - $result .= call_user_func($other_action, $token); - continue; - } - } - } - $result .= call_user_func($other_action, $token); - $stage = $this->STAGE_OUTSIDE; - $current_comment_id = ''; - $current_string = ''; - $current_string_line = 0; - } - return $result; - } - - - function command_extract() { - $args = func_get_args(); - $pot_filename = $args[0]; - if (isset($args[1]) && is_array($args[1])) - $filenames = $args[1]; - else - $filenames = array_slice($args, 1); - - $global_name = '__entries_'.mt_rand(1, 1000); - $GLOBALS[$global_name] = array(); - - foreach($filenames as $filename) { - $tokens = token_get_all(file_get_contents($filename)); - $aggregator = $this->make_string_aggregator($global_name, $filename); - $this->walk_tokens($tokens, array(&$this, 'ignore_token'), array(&$this, 'ignore_token'), $aggregator); - } - - $potf = '-' == $pot_filename? STDOUT : @fopen($pot_filename, 'a'); - if (false === $potf) { - $this->cli_die("Couldn't open pot file: $pot_filename"); - } - - foreach($GLOBALS[$global_name] as $item) { - @list($string, $comment_id, $filename, $line_number) = $item; - $filename = isset($filename)? preg_replace('|^\./|', '', $filename) : ''; - $ref_line_number = isset($line_number)? ":$line_number" : ''; - $args = array( - 'singular' => $string, - 'extracted_comments' => "Not gettexted string $comment_id", - 'references' => array("$filename$ref_line_number"), - ); - $entry = new Translation_Entry($args); - fwrite($potf, "\n".PO::export_entry($entry)."\n"); - } - if ('-' != $pot_filename) fclose($potf); - return true; - } - - function command_replace() { - $args = func_get_args(); - $mo_filename = $args[0]; - if (isset($args[1]) && is_array($args[1])) - $filenames = $args[1]; - else - $filenames = array_slice($args, 1); - - $global_name = '__mo_'.mt_rand(1, 1000); - $GLOBALS[$global_name] = new MO(); - $replacer = $this->make_mo_replacer($global_name); - - $res = $GLOBALS[$global_name]->import_from_file($mo_filename); - if (false === $res) { - $this->cli_die("Couldn't read MO file '$mo_filename'!"); - } - foreach($filenames as $filename) { - $source = file_get_contents($filename); - if ( strlen($source) > 150000 ) continue; - $tokens = token_get_all($source); - $new_file = $this->walk_tokens($tokens, $replacer, array(&$this, 'unchanged_token')); - $f = fopen($filename, 'w'); - fwrite($f, $new_file); - fclose($f); - } - return true; - } - - function usage() { - $this->stderr('php i18n-comments.php COMMAND OUTPUTFILE INPUTFILES'); - $this->stderr('Extracts and replaces strings, which cannot be gettexted'); - $this->stderr('Commands:'); - $this->stderr(' extract POTFILE PHPFILES appends the strings to POTFILE'); - $this->stderr(' replace MOFILE PHPFILES replaces strings in PHPFILES with translations from MOFILE'); - } - - function cli() { - global $argv, $commands; - if (count($argv) < 4 || !in_array($argv[1], array_keys($this->commands))) { - $this->usage(); - exit(1); - } - call_user_func_array(array(&$this, $this->commands[$argv[1]]), array_slice($argv, 2)); - } -} - -// run the CLI only if the file -// wasn't included -$included_files = get_included_files(); -if ( $included_files[0] == __FILE__ ) { - - /** - * Note: this file is locked by default since it should not be publicly accessible - * on a live website. You can unlock it by temporarily removing the following line. - */ - exit( 'Locked' ); - - error_reporting(E_ALL); - $not_gettexted = new NotGettexted; - $not_gettexted->cli(); -} \ No newline at end of file diff --git a/i18n/makepot/pomo/entry.php b/i18n/makepot/pomo/entry.php deleted file mode 100644 index 097e92ca55f..00000000000 --- a/i18n/makepot/pomo/entry.php +++ /dev/null @@ -1,78 +0,0 @@ - $value) { - $this->$varname = $value; - } - if (isset($args['plural'])) $this->is_plural = true; - if (!is_array($this->translations)) $this->translations = array(); - if (!is_array($this->references)) $this->references = array(); - if (!is_array($this->flags)) $this->flags = array(); - } - - /** - * Generates a unique key for this entry - * - * @return string|bool the key or false if the entry is empty - */ - function key() { - if (is_null($this->singular)) return false; - // prepend context and EOT, like in MO files - return is_null($this->context)? $this->singular : $this->context.chr(4).$this->singular; - } - - function merge_with(&$other) { - $this->flags = array_unique( array_merge( $this->flags, $other->flags ) ); - $this->references = array_unique( array_merge( $this->references, $other->references ) ); - if ( $this->extracted_comments != $other->extracted_comments ) { - $this->extracted_comments .= $other->extracted_comments; - } - - } -} -endif; \ No newline at end of file diff --git a/i18n/makepot/pomo/mo.php b/i18n/makepot/pomo/mo.php deleted file mode 100644 index 68c0792fdcf..00000000000 --- a/i18n/makepot/pomo/mo.php +++ /dev/null @@ -1,257 +0,0 @@ -is_resource()) - return false; - return $this->import_from_reader($reader); - } - - function export_to_file($filename) { - $fh = fopen($filename, 'wb'); - if ( !$fh ) return false; - $res = $this->export_to_file_handle( $fh ); - fclose($fh); - return $res; - } - - function export() { - $tmp_fh = fopen("php://temp", 'r+'); - if ( !$tmp_fh ) return false; - $this->export_to_file_handle( $tmp_fh ); - rewind( $tmp_fh ); - return stream_get_contents( $tmp_fh ); - } - - function is_entry_good_for_export( $entry ) { - if ( empty( $entry->translations ) ) { - return false; - } - - if ( !array_filter( $entry->translations ) ) { - return false; - } - - return true; - } - - function export_to_file_handle($fh) { - $entries = array_filter( $this->entries, array( $this, 'is_entry_good_for_export' ) ); - ksort($entries); - $magic = 0x950412de; - $revision = 0; - $total = count($entries) + 1; // all the headers are one entry - $originals_lenghts_addr = 28; - $translations_lenghts_addr = $originals_lenghts_addr + 8 * $total; - $size_of_hash = 0; - $hash_addr = $translations_lenghts_addr + 8 * $total; - $current_addr = $hash_addr; - fwrite($fh, pack('V*', $magic, $revision, $total, $originals_lenghts_addr, - $translations_lenghts_addr, $size_of_hash, $hash_addr)); - fseek($fh, $originals_lenghts_addr); - - // headers' msgid is an empty string - fwrite($fh, pack('VV', 0, $current_addr)); - $current_addr++; - $originals_table = chr(0); - - foreach($entries as $entry) { - $originals_table .= $this->export_original($entry) . chr(0); - $length = strlen($this->export_original($entry)); - fwrite($fh, pack('VV', $length, $current_addr)); - $current_addr += $length + 1; // account for the NULL byte after - } - - $exported_headers = $this->export_headers(); - fwrite($fh, pack('VV', strlen($exported_headers), $current_addr)); - $current_addr += strlen($exported_headers) + 1; - $translations_table = $exported_headers . chr(0); - - foreach($entries as $entry) { - $translations_table .= $this->export_translations($entry) . chr(0); - $length = strlen($this->export_translations($entry)); - fwrite($fh, pack('VV', $length, $current_addr)); - $current_addr += $length + 1; - } - - fwrite($fh, $originals_table); - fwrite($fh, $translations_table); - return true; - } - - function export_original($entry) { - //TODO: warnings for control characters - $exported = $entry->singular; - if ($entry->is_plural) $exported .= chr(0).$entry->plural; - if (!is_null($entry->context)) $exported = $entry->context . chr(4) . $exported; - return $exported; - } - - function export_translations($entry) { - //TODO: warnings for control characters - return implode(chr(0), $entry->translations); - } - - function export_headers() { - $exported = ''; - foreach($this->headers as $header => $value) { - $exported.= "$header: $value\n"; - } - return $exported; - } - - function get_byteorder($magic) { - // The magic is 0x950412de - - // bug in PHP 5.0.2, see https://savannah.nongnu.org/bugs/?func=detailitem&item_id=10565 - $magic_little = (int) - 1794895138; - $magic_little_64 = (int) 2500072158; - // 0xde120495 - $magic_big = ((int) - 569244523) & 0xFFFFFFFF; - if ($magic_little == $magic || $magic_little_64 == $magic) { - return 'little'; - } else if ($magic_big == $magic) { - return 'big'; - } else { - return false; - } - } - - function import_from_reader($reader) { - $endian_string = MO::get_byteorder($reader->readint32()); - if (false === $endian_string) { - return false; - } - $reader->setEndian($endian_string); - - $endian = ('big' == $endian_string)? 'N' : 'V'; - - $header = $reader->read(24); - if ($reader->strlen($header) != 24) - return false; - - // parse header - $header = unpack("{$endian}revision/{$endian}total/{$endian}originals_lenghts_addr/{$endian}translations_lenghts_addr/{$endian}hash_length/{$endian}hash_addr", $header); - if (!is_array($header)) - return false; - - extract( $header ); - - // support revision 0 of MO format specs, only - if ($revision != 0) - return false; - - // seek to data blocks - $reader->seekto($originals_lenghts_addr); - - // read originals' indices - $originals_lengths_length = $translations_lenghts_addr - $originals_lenghts_addr; - if ( $originals_lengths_length != $total * 8 ) - return false; - - $originals = $reader->read($originals_lengths_length); - if ( $reader->strlen( $originals ) != $originals_lengths_length ) - return false; - - // read translations' indices - $translations_lenghts_length = $hash_addr - $translations_lenghts_addr; - if ( $translations_lenghts_length != $total * 8 ) - return false; - - $translations = $reader->read($translations_lenghts_length); - if ( $reader->strlen( $translations ) != $translations_lenghts_length ) - return false; - - // transform raw data into set of indices - $originals = $reader->str_split( $originals, 8 ); - $translations = $reader->str_split( $translations, 8 ); - - // skip hash table - $strings_addr = $hash_addr + $hash_length * 4; - - $reader->seekto($strings_addr); - - $strings = $reader->read_all(); - $reader->close(); - - for ( $i = 0; $i < $total; $i++ ) { - $o = unpack( "{$endian}length/{$endian}pos", $originals[$i] ); - $t = unpack( "{$endian}length/{$endian}pos", $translations[$i] ); - if ( !$o || !$t ) return false; - - // adjust offset due to reading strings to separate space before - $o['pos'] -= $strings_addr; - $t['pos'] -= $strings_addr; - - $original = $reader->substr( $strings, $o['pos'], $o['length'] ); - $translation = $reader->substr( $strings, $t['pos'], $t['length'] ); - - if ('' === $original) { - $this->set_headers($this->make_headers($translation)); - } else { - $entry = &$this->make_entry($original, $translation); - $this->entries[$entry->key()] = &$entry; - } - } - return true; - } - - /** - * Build a Translation_Entry from original string and translation strings, - * found in a MO file - * - * @static - * @param string $original original string to translate from MO file. Might contain - * 0x04 as context separator or 0x00 as singular/plural separator - * @param string $translation translation string from MO file. Might contain - * 0x00 as a plural translations separator - */ - function &make_entry($original, $translation) { - $entry = new Translation_Entry(); - // look for context - $parts = explode(chr(4), $original); - if (isset($parts[1])) { - $original = $parts[1]; - $entry->context = $parts[0]; - } - // look for plural original - $parts = explode(chr(0), $original); - $entry->singular = $parts[0]; - if (isset($parts[1])) { - $entry->is_plural = true; - $entry->plural = $parts[1]; - } - // plural translations are also separated by \0 - $entry->translations = explode(chr(0), $translation); - return $entry; - } - - function select_plural_form($count) { - return $this->gettext_select_plural_form($count); - } - - function get_plural_forms_count() { - return $this->_nplurals; - } -} -endif; \ No newline at end of file diff --git a/i18n/makepot/pomo/po.php b/i18n/makepot/pomo/po.php deleted file mode 100644 index 4c673590753..00000000000 --- a/i18n/makepot/pomo/po.php +++ /dev/null @@ -1,384 +0,0 @@ -headers as $header => $value) { - $header_string.= "$header: $value\n"; - } - $poified = PO::poify($header_string); - if ($this->comments_before_headers) - $before_headers = $this->prepend_each_line(rtrim($this->comments_before_headers)."\n", '# '); - else - $before_headers = ''; - return rtrim("{$before_headers}msgid \"\"\nmsgstr $poified"); - } - - /** - * Exports all entries to PO format - * - * @return string sequence of mgsgid/msgstr PO strings, doesn't containt newline at the end - */ - function export_entries() { - //TODO sorting - return implode("\n\n", array_map(array('PO', 'export_entry'), $this->entries)); - } - - /** - * Exports the whole PO file as a string - * - * @param bool $include_headers whether to include the headers in the export - * @return string ready for inclusion in PO file string for headers and all the enrtries - */ - function export($include_headers = true) { - $res = ''; - if ($include_headers) { - $res .= $this->export_headers(); - $res .= "\n\n"; - } - $res .= $this->export_entries(); - return $res; - } - - /** - * Same as {@link export}, but writes the result to a file - * - * @param string $filename where to write the PO string - * @param bool $include_headers whether to include tje headers in the export - * @return bool true on success, false on error - */ - function export_to_file($filename, $include_headers = true) { - $fh = fopen($filename, 'w'); - if (false === $fh) return false; - $export = $this->export($include_headers); - $res = fwrite($fh, $export); - if (false === $res) return false; - return fclose($fh); - } - - /** - * Text to include as a comment before the start of the PO contents - * - * Doesn't need to include # in the beginning of lines, these are added automatically - */ - function set_comment_before_headers( $text ) { - $this->comments_before_headers = $text; - } - - /** - * Formats a string in PO-style - * - * @static - * @param string $string the string to format - * @return string the poified string - */ - public static function poify($string) { - $quote = '"'; - $slash = '\\'; - $newline = "\n"; - - $replaces = array( - "$slash" => "$slash$slash", - "$quote" => "$slash$quote", - "\t" => '\t', - ); - - $string = str_replace(array_keys($replaces), array_values($replaces), $string); - - $po = $quote.implode("${slash}n$quote$newline$quote", explode($newline, $string)).$quote; - // add empty string on first line for readbility - if (false !== strpos($string, $newline) && - (substr_count($string, $newline) > 1 || !($newline === substr($string, -strlen($newline))))) { - $po = "$quote$quote$newline$po"; - } - // remove empty strings - $po = str_replace("$newline$quote$quote", '', $po); - return $po; - } - - /** - * Gives back the original string from a PO-formatted string - * - * @static - * @param string $string PO-formatted string - * @return string enascaped string - */ - public static function unpoify($string) { - $escapes = array('t' => "\t", 'n' => "\n", '\\' => '\\'); - $lines = array_map('trim', explode("\n", $string)); - $lines = array_map(array('PO', 'trim_quotes'), $lines); - $unpoified = ''; - $previous_is_backslash = false; - foreach($lines as $line) { - preg_match_all('/./u', $line, $chars); - $chars = $chars[0]; - foreach($chars as $char) { - if (!$previous_is_backslash) { - if ('\\' == $char) - $previous_is_backslash = true; - else - $unpoified .= $char; - } else { - $previous_is_backslash = false; - $unpoified .= isset($escapes[$char])? $escapes[$char] : $char; - } - } - } - return $unpoified; - } - - /** - * Inserts $with in the beginning of every new line of $string and - * returns the modified string - * - * @static - * @param string $string prepend lines in this string - * @param string $with prepend lines with this string - */ - public static function prepend_each_line($string, $with) { - $php_with = var_export($with, true); - $lines = explode("\n", $string); - // do not prepend the string on the last empty line, artefact by explode - if ("\n" == substr($string, -1)) unset($lines[count($lines) - 1]); - $res = implode("\n", array_map(create_function('$x', "return $php_with.\$x;"), $lines)); - // give back the empty line, we ignored above - if ("\n" == substr($string, -1)) $res .= "\n"; - return $res; - } - - /** - * Prepare a text as a comment -- wraps the lines and prepends # - * and a special character to each line - * - * @access private - * @param string $text the comment text - * @param string $char character to denote a special PO comment, - * like :, default is a space - */ - public static function comment_block($text, $char=' ') { - $text = wordwrap($text, PO_MAX_LINE_LEN - 3); - return PO::prepend_each_line($text, "#$char "); - } - - /** - * Builds a string from the entry for inclusion in PO file - * - * @static - * @param object &$entry the entry to convert to po string - * @return string|bool PO-style formatted string for the entry or - * false if the entry is empty - */ - public static function export_entry(&$entry) { - if (is_null($entry->singular)) return false; - $po = array(); - if (!empty($entry->translator_comments)) $po[] = PO::comment_block($entry->translator_comments); - if (!empty($entry->extracted_comments)) $po[] = PO::comment_block($entry->extracted_comments, '.'); - if (!empty($entry->references)) $po[] = PO::comment_block(implode(' ', $entry->references), ':'); - if (!empty($entry->flags)) $po[] = PO::comment_block(implode(", ", $entry->flags), ','); - if (!is_null($entry->context)) $po[] = 'msgctxt '.PO::poify($entry->context); - $po[] = 'msgid '.PO::poify($entry->singular); - if (!$entry->is_plural) { - $translation = empty($entry->translations)? '' : $entry->translations[0]; - $po[] = 'msgstr '.PO::poify($translation); - } else { - $po[] = 'msgid_plural '.PO::poify($entry->plural); - $translations = empty($entry->translations)? array('', '') : $entry->translations; - foreach($translations as $i => $translation) { - $po[] = "msgstr[$i] ".PO::poify($translation); - } - } - return implode("\n", $po); - } - - function import_from_file($filename) { - $f = fopen($filename, 'r'); - if (!$f) return false; - $lineno = 0; - while (true) { - $res = $this->read_entry($f, $lineno); - if (!$res) break; - if ($res['entry']->singular == '') { - $this->set_headers($this->make_headers($res['entry']->translations[0])); - } else { - $this->add_entry($res['entry']); - } - } - PO::read_line($f, 'clear'); - if ( false === $res ) { - return false; - } - if ( ! $this->headers && ! $this->entries ) { - return false; - } - return true; - } - - function read_entry($f, $lineno = 0) { - $entry = new Translation_Entry(); - // where were we in the last step - // can be: comment, msgctxt, msgid, msgid_plural, msgstr, msgstr_plural - $context = ''; - $msgstr_index = 0; - $is_final = create_function('$context', 'return $context == "msgstr" || $context == "msgstr_plural";'); - while (true) { - $lineno++; - $line = PO::read_line($f); - if (!$line) { - if (feof($f)) { - if ($is_final($context)) - break; - elseif (!$context) // we haven't read a line and eof came - return null; - else - return false; - } else { - return false; - } - } - if ($line == "\n") continue; - $line = trim($line); - if (preg_match('/^#/', $line, $m)) { - // the comment is the start of a new entry - if ($is_final($context)) { - PO::read_line($f, 'put-back'); - $lineno--; - break; - } - // comments have to be at the beginning - if ($context && $context != 'comment') { - return false; - } - // add comment - $this->add_comment_to_entry($entry, $line);; - } elseif (preg_match('/^msgctxt\s+(".*")/', $line, $m)) { - if ($is_final($context)) { - PO::read_line($f, 'put-back'); - $lineno--; - break; - } - if ($context && $context != 'comment') { - return false; - } - $context = 'msgctxt'; - $entry->context .= PO::unpoify($m[1]); - } elseif (preg_match('/^msgid\s+(".*")/', $line, $m)) { - if ($is_final($context)) { - PO::read_line($f, 'put-back'); - $lineno--; - break; - } - if ($context && $context != 'msgctxt' && $context != 'comment') { - return false; - } - $context = 'msgid'; - $entry->singular .= PO::unpoify($m[1]); - } elseif (preg_match('/^msgid_plural\s+(".*")/', $line, $m)) { - if ($context != 'msgid') { - return false; - } - $context = 'msgid_plural'; - $entry->is_plural = true; - $entry->plural .= PO::unpoify($m[1]); - } elseif (preg_match('/^msgstr\s+(".*")/', $line, $m)) { - if ($context != 'msgid') { - return false; - } - $context = 'msgstr'; - $entry->translations = array(PO::unpoify($m[1])); - } elseif (preg_match('/^msgstr\[(\d+)\]\s+(".*")/', $line, $m)) { - if ($context != 'msgid_plural' && $context != 'msgstr_plural') { - return false; - } - $context = 'msgstr_plural'; - $msgstr_index = $m[1]; - $entry->translations[$m[1]] = PO::unpoify($m[2]); - } elseif (preg_match('/^".*"$/', $line)) { - $unpoified = PO::unpoify($line); - switch ($context) { - case 'msgid': - $entry->singular .= $unpoified; break; - case 'msgctxt': - $entry->context .= $unpoified; break; - case 'msgid_plural': - $entry->plural .= $unpoified; break; - case 'msgstr': - $entry->translations[0] .= $unpoified; break; - case 'msgstr_plural': - $entry->translations[$msgstr_index] .= $unpoified; break; - default: - return false; - } - } else { - return false; - } - } - if (array() == array_filter($entry->translations, create_function('$t', 'return $t || "0" === $t;'))) { - $entry->translations = array(); - } - return array('entry' => $entry, 'lineno' => $lineno); - } - - public static function read_line($f, $action = 'read') { - static $last_line = ''; - static $use_last_line = false; - if ('clear' == $action) { - $last_line = ''; - return true; - } - if ('put-back' == $action) { - $use_last_line = true; - return true; - } - $line = $use_last_line? $last_line : fgets($f); - $line = gp_endswith( $line, "\r\n" )? rtrim( $line, "\r\n" ) . "\n" : $line; - $last_line = $line; - $use_last_line = false; - return $line; - } - - public static function add_comment_to_entry(&$entry, $po_comment_line) { - $first_two = substr($po_comment_line, 0, 2); - $comment = trim(substr($po_comment_line, 2)); - if ('#:' == $first_two) { - $entry->references = array_merge($entry->references, preg_split('/\s+/', $comment)); - } elseif ('#.' == $first_two) { - $entry->extracted_comments = trim($entry->extracted_comments . "\n" . $comment); - } elseif ('#,' == $first_two) { - $entry->flags = array_merge($entry->flags, preg_split('/,\s*/', $comment)); - } else { - $entry->translator_comments = trim($entry->translator_comments . "\n" . $comment); - } - } - - public static function trim_quotes($s) { - if ( substr($s, 0, 1) == '"') $s = substr($s, 1); - if ( substr($s, -1, 1) == '"') $s = substr($s, 0, -1); - return $s; - } -} -endif; diff --git a/i18n/makepot/pomo/streams.php b/i18n/makepot/pomo/streams.php deleted file mode 100644 index dbb1de809d4..00000000000 --- a/i18n/makepot/pomo/streams.php +++ /dev/null @@ -1,209 +0,0 @@ - - * - * @version $Id: streams.php 718 2012-10-31 00:32:02Z nbachiyski $ - * @package pomo - * @subpackage streams - */ - -if ( !class_exists( 'POMO_Reader' ) ): -class POMO_Reader { - - var $endian = 'little'; - var $_post = ''; - - function POMO_Reader() { - $this->is_overloaded = ((ini_get("mbstring.func_overload") & 2) != 0) && function_exists('mb_substr'); - $this->_pos = 0; - } - - /** - * Sets the endianness of the file. - * - * @param $endian string 'big' or 'little' - */ - function setEndian($endian) { - $this->endian = $endian; - } - - /** - * Reads a 32bit Integer from the Stream - * - * @return mixed The integer, corresponding to the next 32 bits from - * the stream of false if there are not enough bytes or on error - */ - function readint32() { - $bytes = $this->read(4); - if (4 != $this->strlen($bytes)) - return false; - $endian_letter = ('big' == $this->endian)? 'N' : 'V'; - $int = unpack($endian_letter, $bytes); - return array_shift($int); - } - - /** - * Reads an array of 32-bit Integers from the Stream - * - * @param integer count How many elements should be read - * @return mixed Array of integers or false if there isn't - * enough data or on error - */ - function readint32array($count) { - $bytes = $this->read(4 * $count); - if (4*$count != $this->strlen($bytes)) - return false; - $endian_letter = ('big' == $this->endian)? 'N' : 'V'; - return unpack($endian_letter.$count, $bytes); - } - - - function substr($string, $start, $length) { - if ($this->is_overloaded) { - return mb_substr($string, $start, $length, 'ascii'); - } else { - return substr($string, $start, $length); - } - } - - function strlen($string) { - if ($this->is_overloaded) { - return mb_strlen($string, 'ascii'); - } else { - return strlen($string); - } - } - - function str_split($string, $chunk_size) { - if (!function_exists('str_split')) { - $length = $this->strlen($string); - $out = array(); - for ($i = 0; $i < $length; $i += $chunk_size) - $out[] = $this->substr($string, $i, $chunk_size); - return $out; - } else { - return str_split( $string, $chunk_size ); - } - } - - - function pos() { - return $this->_pos; - } - - function is_resource() { - return true; - } - - function close() { - return true; - } -} -endif; - -if ( !class_exists( 'POMO_FileReader' ) ): -class POMO_FileReader extends POMO_Reader { - function POMO_FileReader($filename) { - parent::POMO_Reader(); - $this->_f = fopen($filename, 'rb'); - } - - function read($bytes) { - return fread($this->_f, $bytes); - } - - function seekto($pos) { - if ( -1 == fseek($this->_f, $pos, SEEK_SET)) { - return false; - } - $this->_pos = $pos; - return true; - } - - function is_resource() { - return is_resource($this->_f); - } - - function feof() { - return feof($this->_f); - } - - function close() { - return fclose($this->_f); - } - - function read_all() { - $all = ''; - while ( !$this->feof() ) - $all .= $this->read(4096); - return $all; - } -} -endif; - -if ( !class_exists( 'POMO_StringReader' ) ): -/** - * Provides file-like methods for manipulating a string instead - * of a physical file. - */ -class POMO_StringReader extends POMO_Reader { - - var $_str = ''; - - function POMO_StringReader($str = '') { - parent::POMO_Reader(); - $this->_str = $str; - $this->_pos = 0; - } - - - function read($bytes) { - $data = $this->substr($this->_str, $this->_pos, $bytes); - $this->_pos += $bytes; - if ($this->strlen($this->_str) < $this->_pos) $this->_pos = $this->strlen($this->_str); - return $data; - } - - function seekto($pos) { - $this->_pos = $pos; - if ($this->strlen($this->_str) < $this->_pos) $this->_pos = $this->strlen($this->_str); - return $this->_pos; - } - - function length() { - return $this->strlen($this->_str); - } - - function read_all() { - return $this->substr($this->_str, $this->_pos, $this->strlen($this->_str)); - } - -} -endif; - -if ( !class_exists( 'POMO_CachedFileReader' ) ): -/** - * Reads the contents of the file in the beginning. - */ -class POMO_CachedFileReader extends POMO_StringReader { - function POMO_CachedFileReader($filename) { - parent::POMO_StringReader(); - $this->_str = file_get_contents($filename); - if (false === $this->_str) - return false; - $this->_pos = 0; - } -} -endif; - -if ( !class_exists( 'POMO_CachedIntFileReader' ) ): -/** - * Reads the contents of the file in the beginning. - */ -class POMO_CachedIntFileReader extends POMO_CachedFileReader { - function POMO_CachedIntFileReader($filename) { - parent::POMO_CachedFileReader($filename); - } -} -endif; \ No newline at end of file diff --git a/i18n/makepot/pomo/translations.php b/i18n/makepot/pomo/translations.php deleted file mode 100644 index 56ce7968253..00000000000 --- a/i18n/makepot/pomo/translations.php +++ /dev/null @@ -1,275 +0,0 @@ -key(); - if (false === $key) return false; - $this->entries[$key] = &$entry; - return true; - } - - function add_entry_or_merge($entry) { - if (is_array($entry)) { - $entry = new Translation_Entry($entry); - } - $key = $entry->key(); - if (false === $key) return false; - if (isset($this->entries[$key])) - $this->entries[$key]->merge_with($entry); - else - $this->entries[$key] = &$entry; - return true; - } - - /** - * Sets $header PO header to $value - * - * If the header already exists, it will be overwritten - * - * TODO: this should be out of this class, it is gettext specific - * - * @param string $header header name, without trailing : - * @param string $value header value, without trailing \n - */ - function set_header($header, $value) { - $this->headers[$header] = $value; - } - - function set_headers(&$headers) { - foreach($headers as $header => $value) { - $this->set_header($header, $value); - } - } - - function get_header($header) { - return isset($this->headers[$header])? $this->headers[$header] : false; - } - - function translate_entry(&$entry) { - $key = $entry->key(); - return isset($this->entries[$key])? $this->entries[$key] : false; - } - - function translate($singular, $context=null) { - $entry = new Translation_Entry(array('singular' => $singular, 'context' => $context)); - $translated = $this->translate_entry($entry); - return ($translated && !empty($translated->translations))? $translated->translations[0] : $singular; - } - - /** - * Given the number of items, returns the 0-based index of the plural form to use - * - * Here, in the base Translations class, the commong logic for English is implmented: - * 0 if there is one element, 1 otherwise - * - * This function should be overrided by the sub-classes. For example MO/PO can derive the logic - * from their headers. - * - * @param integer $count number of items - */ - function select_plural_form($count) { - return 1 == $count? 0 : 1; - } - - function get_plural_forms_count() { - return 2; - } - - function translate_plural($singular, $plural, $count, $context = null) { - $entry = new Translation_Entry(array('singular' => $singular, 'plural' => $plural, 'context' => $context)); - $translated = $this->translate_entry($entry); - $index = $this->select_plural_form($count); - $total_plural_forms = $this->get_plural_forms_count(); - if ($translated && 0 <= $index && $index < $total_plural_forms && - is_array($translated->translations) && - isset($translated->translations[$index])) - return $translated->translations[$index]; - else - return 1 == $count? $singular : $plural; - } - - /** - * Merge $other in the current object. - * - * @param Object &$other Another Translation object, whose translations will be merged in this one - * @return void - **/ - function merge_with(&$other) { - foreach( $other->entries as $entry ) { - $this->entries[$entry->key()] = $entry; - } - } - - function merge_originals_with(&$other) { - foreach( $other->entries as $entry ) { - if ( !isset( $this->entries[$entry->key()] ) ) - $this->entries[$entry->key()] = $entry; - else - $this->entries[$entry->key()]->merge_with($entry); - } - } -} - -class Gettext_Translations extends Translations { - /** - * The gettext implmentation of select_plural_form. - * - * It lives in this class, because there are more than one descendand, which will use it and - * they can't share it effectively. - * - */ - function gettext_select_plural_form($count) { - if (!isset($this->_gettext_select_plural_form) || is_null($this->_gettext_select_plural_form)) { - list( $nplurals, $expression ) = $this->nplurals_and_expression_from_header($this->get_header('Plural-Forms')); - $this->_nplurals = $nplurals; - $this->_gettext_select_plural_form = $this->make_plural_form_function($nplurals, $expression); - } - return call_user_func($this->_gettext_select_plural_form, $count); - } - - function nplurals_and_expression_from_header($header) { - if (preg_match('/^\s*nplurals\s*=\s*(\d+)\s*;\s+plural\s*=\s*(.+)$/', $header, $matches)) { - $nplurals = (int)$matches[1]; - $expression = trim($this->parenthesize_plural_exression($matches[2])); - return array($nplurals, $expression); - } else { - return array(2, 'n != 1'); - } - } - - /** - * Makes a function, which will return the right translation index, according to the - * plural forms header - */ - function make_plural_form_function($nplurals, $expression) { - $expression = str_replace('n', '$n', $expression); - $func_body = " - \$index = (int)($expression); - return (\$index < $nplurals)? \$index : $nplurals - 1;"; - return create_function('$n', $func_body); - } - - /** - * Adds parantheses to the inner parts of ternary operators in - * plural expressions, because PHP evaluates ternary oerators from left to right - * - * @param string $expression the expression without parentheses - * @return string the expression with parentheses added - */ - function parenthesize_plural_exression($expression) { - $expression .= ';'; - $res = ''; - $depth = 0; - for ($i = 0; $i < strlen($expression); ++$i) { - $char = $expression[$i]; - switch ($char) { - case '?': - $res .= ' ? ('; - $depth++; - break; - case ':': - $res .= ') : ('; - break; - case ';': - $res .= str_repeat(')', $depth) . ';'; - $depth= 0; - break; - default: - $res .= $char; - } - } - return rtrim($res, ';'); - } - - function make_headers($translation) { - $headers = array(); - // sometimes \ns are used instead of real new lines - $translation = str_replace('\n', "\n", $translation); - $lines = explode("\n", $translation); - foreach($lines as $line) { - $parts = explode(':', $line, 2); - if (!isset($parts[1])) continue; - $headers[trim($parts[0])] = trim($parts[1]); - } - return $headers; - } - - function set_header($header, $value) { - parent::set_header($header, $value); - if ('Plural-Forms' == $header) { - list( $nplurals, $expression ) = $this->nplurals_and_expression_from_header($this->get_header('Plural-Forms')); - $this->_nplurals = $nplurals; - $this->_gettext_select_plural_form = $this->make_plural_form_function($nplurals, $expression); - } - } -} -endif; - -if ( !class_exists( 'NOOP_Translations' ) ): -/** - * Provides the same interface as Translations, but doesn't do anything - */ -class NOOP_Translations { - var $entries = array(); - var $headers = array(); - - function add_entry($entry) { - return true; - } - - function set_header($header, $value) { - } - - function set_headers(&$headers) { - } - - function get_header($header) { - return false; - } - - function translate_entry(&$entry) { - return false; - } - - function translate($singular, $context=null) { - return $singular; - } - - function select_plural_form($count) { - return 1 == $count? 0 : 1; - } - - function get_plural_forms_count() { - return 2; - } - - function translate_plural($singular, $plural, $count, $context = null) { - return 1 == $count? $singular : $plural; - } - - function merge_with(&$other) { - } -} -endif; diff --git a/i18n/makepot/pot-ext-meta.php b/i18n/makepot/pot-ext-meta.php deleted file mode 100644 index 31d13a6b53b..00000000000 --- a/i18n/makepot/pot-ext-meta.php +++ /dev/null @@ -1,80 +0,0 @@ -headers as $header) { - $string = WC_Makepot::get_addon_header($header, $source); - if (!$string) continue; - $args = array( - 'singular' => $string, - 'extracted_comments' => $header.' of the plugin/theme', - ); - $entry = new Translation_Entry($args); - $pot .= "\n".PO::export_entry($entry)."\n"; - } - return $pot; - } - - function append( $ext_filename, $pot_filename, $headers = null ) { - if ( $headers ) - $this->headers = (array) $headers; - if ( is_dir( $ext_filename ) ) { - $pot = implode('', array_map(array(&$this, 'load_from_file'), glob("$ext_filename/*.php"))); - } else { - $pot = $this->load_from_file($ext_filename); - } - $potf = '-' == $pot_filename? STDOUT : fopen( $pot_filename, 'a' ); - if (!$potf) return false; - fwrite($potf, $pot); - if ('-' != $pot_filename) fclose($potf); - return true; - } -} - -$included_files = get_included_files(); -if ( $included_files[0] == __FILE__ ) { - - /** - * Note: this file is locked by default since it should not be publicly accessible - * on a live website. You can unlock it by temporarily removing the following line. - */ - exit( 'Locked' ); - - ini_set('display_errors', 1); - $potextmeta = new PotExtMeta; - if (!isset($argv[1])) { - $potextmeta->usage(); - } - $potextmeta->append( $argv[1], isset( $argv[2] ) ? $argv[2] : '-', isset( $argv[3] ) ? $argv[3] : null ); -} \ No newline at end of file diff --git a/i18n/states/AU.php b/i18n/states/AU.php index 59fe57be954..175dc87faf4 100644 --- a/i18n/states/AU.php +++ b/i18n/states/AU.php @@ -2,9 +2,9 @@ /** * Australian states * - * @author WooThemes - * @category i18n - * @package WooCommerce/i18n + * @author WooThemes + * @category i18n + * @package WooCommerce/i18n * @version 2.0.0 */ global $states; diff --git a/i18n/states/BD.php b/i18n/states/BD.php new file mode 100644 index 00000000000..d140e9636a8 --- /dev/null +++ b/i18n/states/BD.php @@ -0,0 +1,77 @@ + __( 'Bagerhat', 'woocommerce' ), + 'BAN' => __( 'Bandarban', 'woocommerce' ), + 'BAR' => __( 'Barguna', 'woocommerce' ), + 'BARI' => __( 'Barisal', 'woocommerce' ), + 'BHO' => __( 'Bhola', 'woocommerce' ), + 'BOG' => __( 'Bogra', 'woocommerce' ), + 'BRA' => __( 'Brahmanbaria', 'woocommerce' ), + 'CHA' => __( 'Chandpur', 'woocommerce' ), + 'CHI' => __( 'Chittagong', 'woocommerce' ), + 'CHU' => __( 'Chuadanga', 'woocommerce' ), + 'COM' => __( 'Comilla', 'woocommerce' ), + 'COX' => __( 'Cox\'s Bazar', 'woocommerce' ), + 'DHA' => __( 'Dhaka', 'woocommerce' ), + 'DIN' => __( 'Dinajpur', 'woocommerce' ), + 'FAR' => __( 'Faridpur ', 'woocommerce' ), + 'FEN' => __( 'Feni', 'woocommerce' ), + 'GAI' => __( 'Gaibandha', 'woocommerce' ), + 'GAZI' => __( 'Gazipur', 'woocommerce' ), + 'GOP' => __( 'Gopalganj', 'woocommerce' ), + 'HAB' => __( 'Habiganj', 'woocommerce' ), + 'JAM' => __( 'Jamalpur', 'woocommerce' ), + 'JES' => __( 'Jessore', 'woocommerce' ), + 'JHA' => __( 'Jhalokati', 'woocommerce' ), + 'JHE' => __( 'Jhenaidah', 'woocommerce' ), + 'JOY' => __( 'Joypurhat', 'woocommerce' ), + 'KHA' => __( 'Khagrachhari', 'woocommerce' ), + 'KHU' => __( 'Khulna', 'woocommerce' ), + 'KIS' => __( 'Kishoreganj', 'woocommerce' ), + 'KUR' => __( 'Kurigram', 'woocommerce' ), + 'KUS' => __( 'Kushtia', 'woocommerce' ), + 'LAK' => __( 'Lakshmipur', 'woocommerce' ), + 'LAL' => __( 'Lalmonirhat', 'woocommerce' ), + 'MAD' => __( 'Madaripur', 'woocommerce' ), + 'MAG' => __( 'Magura', 'woocommerce' ), + 'MAN' => __( 'Manikganj ', 'woocommerce' ), + 'MEH' => __( 'Meherpur', 'woocommerce' ), + 'MOU' => __( 'Moulvibazar', 'woocommerce' ), + 'MUN' => __( 'Munshiganj', 'woocommerce' ), + 'MYM' => __( 'Mymensingh', 'woocommerce' ), + 'NAO' => __( 'Naogaon', 'woocommerce' ), + 'NAR' => __( 'Narail', 'woocommerce' ), + 'NARG' => __( 'Narayanganj', 'woocommerce' ), + 'NARD' => __( 'Narsingdi', 'woocommerce' ), + 'NAT' => __( 'Natore', 'woocommerce' ), + 'NAW' => __( 'Nawabganj', 'woocommerce' ), + 'NET' => __( 'Netrakona', 'woocommerce' ), + 'NIL' => __( 'Nilphamari', 'woocommerce' ), + 'NOA' => __( 'Noakhali', 'woocommerce' ), + 'PAB' => __( 'Pabna', 'woocommerce' ), + 'PAN' => __( 'Panchagarh', 'woocommerce' ), + 'PAT' => __( 'Patuakhali', 'woocommerce' ), + 'PIR' => __( 'Pirojpur', 'woocommerce' ), + 'RAJB' => __( 'Rajbari', 'woocommerce' ), + 'RAJ' => __( 'Rajshahi', 'woocommerce' ), + 'RAN' => __( 'Rangamati', 'woocommerce' ), + 'RANP' => __( 'Rangpur', 'woocommerce' ), + 'SAT' => __( 'Satkhira', 'woocommerce' ), + 'SHA' => __( 'Shariatpur', 'woocommerce' ), + 'SHE' => __( 'Sherpur', 'woocommerce' ), + 'SIR' => __( 'Sirajganj', 'woocommerce' ), + 'SUN' => __( 'Sunamganj', 'woocommerce' ), + 'SYL' => __( 'Sylhet', 'woocommerce' ), + 'TAN' => __( 'Tangail', 'woocommerce' ), + 'THA' => __( 'Thakurgaon', 'woocommerce' ) +); diff --git a/i18n/states/BG.php b/i18n/states/BG.php index 69a38e2d2ca..14feebeec82 100644 --- a/i18n/states/BG.php +++ b/i18n/states/BG.php @@ -2,40 +2,40 @@ /** * Bulgarian states * - * @author WooThemes - * @category i18n - * @package WooCommerce/i18n + * @author WooThemes + * @category i18n + * @package WooCommerce/i18n * @version 2.0.0 */ global $states; $states['BG'] = array( - 'BG-01' => __( 'Blagoevgrad', 'woocommerce' ), - 'BG-02' => __( 'Burgas', 'woocommerce' ), - 'BG-08' => __( 'Dobrich', 'woocommerce' ), - 'BG-07' => __( 'Gabrovo', 'woocommerce' ), - 'BG-26' => __( 'Haskovo', 'woocommerce' ), - 'BG-09' => __( 'Kardzhali', 'woocommerce' ), - 'BG-10' => __( 'Kyustendil', 'woocommerce' ), - 'BG-11' => __( 'Lovech', 'woocommerce' ), - 'BG-12' => __( 'Montana', 'woocommerce' ), - 'BG-13' => __( 'Pazardzhik', 'woocommerce' ), - 'BG-14' => __( 'Pernik', 'woocommerce' ), - 'BG-15' => __( 'Pleven', 'woocommerce' ), - 'BG-16' => __( 'Plovdiv', 'woocommerce' ), - 'BG-17' => __( 'Razgrad', 'woocommerce' ), - 'BG-18' => __( 'Ruse', 'woocommerce' ), - 'BG-27' => __( 'Shumen', 'woocommerce' ), - 'BG-19' => __( 'Silistra', 'woocommerce' ), - 'BG-20' => __( 'Sliven', 'woocommerce' ), - 'BG-21' => __( 'Smolyan', 'woocommerce' ), - 'BG-23' => __( 'Sofia', 'woocommerce' ), - 'BG-22' => __( 'Sofia-Grad', 'woocommerce' ), - 'BG-24' => __( 'Stara Zagora', 'woocommerce' ), - 'BG-25' => __( 'Targovishte', 'woocommerce' ), - 'BG-03' => __( 'Varna', 'woocommerce' ), - 'BG-04' => __( 'Veliko Tarnovo', 'woocommerce' ), - 'BG-05' => __( 'Vidin', 'woocommerce' ), - 'BG-06' => __( 'Vratsa', 'woocommerce' ), - 'BG-28' => __( 'Yambol', 'woocommerce' ), + 'BG-01' => __( 'Blagoevgrad', 'woocommerce' ), + 'BG-02' => __( 'Burgas', 'woocommerce' ), + 'BG-08' => __( 'Dobrich', 'woocommerce' ), + 'BG-07' => __( 'Gabrovo', 'woocommerce' ), + 'BG-26' => __( 'Haskovo', 'woocommerce' ), + 'BG-09' => __( 'Kardzhali', 'woocommerce' ), + 'BG-10' => __( 'Kyustendil', 'woocommerce' ), + 'BG-11' => __( 'Lovech', 'woocommerce' ), + 'BG-12' => __( 'Montana', 'woocommerce' ), + 'BG-13' => __( 'Pazardzhik', 'woocommerce' ), + 'BG-14' => __( 'Pernik', 'woocommerce' ), + 'BG-15' => __( 'Pleven', 'woocommerce' ), + 'BG-16' => __( 'Plovdiv', 'woocommerce' ), + 'BG-17' => __( 'Razgrad', 'woocommerce' ), + 'BG-18' => __( 'Ruse', 'woocommerce' ), + 'BG-27' => __( 'Shumen', 'woocommerce' ), + 'BG-19' => __( 'Silistra', 'woocommerce' ), + 'BG-20' => __( 'Sliven', 'woocommerce' ), + 'BG-21' => __( 'Smolyan', 'woocommerce' ), + 'BG-23' => __( 'Sofia', 'woocommerce' ), + 'BG-22' => __( 'Sofia-Grad', 'woocommerce' ), + 'BG-24' => __( 'Stara Zagora', 'woocommerce' ), + 'BG-25' => __( 'Targovishte', 'woocommerce' ), + 'BG-03' => __( 'Varna', 'woocommerce' ), + 'BG-04' => __( 'Veliko Tarnovo', 'woocommerce' ), + 'BG-05' => __( 'Vidin', 'woocommerce' ), + 'BG-06' => __( 'Vratsa', 'woocommerce' ), + 'BG-28' => __( 'Yambol', 'woocommerce' ), ); diff --git a/i18n/states/BR.php b/i18n/states/BR.php index 13a67ce8ba9..9e0097b63b4 100644 --- a/i18n/states/BR.php +++ b/i18n/states/BR.php @@ -2,9 +2,9 @@ /** * Brazillian states * - * @author WooThemes - * @category i18n - * @package WooCommerce/i18n + * @author WooThemes + * @category i18n + * @package WooCommerce/i18n * @version 2.0.0 */ global $states; diff --git a/i18n/states/CA.php b/i18n/states/CA.php index 513c4362f4c..55efcca6105 100644 --- a/i18n/states/CA.php +++ b/i18n/states/CA.php @@ -2,9 +2,9 @@ /** * Canadian states * - * @author WooThemes - * @category i18n - * @package WooCommerce/i18n + * @author WooThemes + * @category i18n + * @package WooCommerce/i18n * @version 2.0.0 */ global $states; diff --git a/i18n/states/CN.php b/i18n/states/CN.php index 29b8c280a16..4f8a85d4190 100644 --- a/i18n/states/CN.php +++ b/i18n/states/CN.php @@ -2,44 +2,44 @@ /** * Chinese states * - * @author WooThemes - * @category i18n - * @package WooCommerce/i18n + * @author WooThemes + * @category i18n + * @package WooCommerce/i18n * @version 2.0.0 */ global $states; $states['CN'] = array( - 'CN1' => __( 'Yunnan / 云南', 'woocommerce' ), - 'CN2' => __( 'Beijing / 北京', 'woocommerce' ), - 'CN3' => __( 'Tianjin / 天津', 'woocommerce' ), - 'CN4' => __( 'Hebei / 河北', 'woocommerce' ), - 'CN5' => __( 'Shanxi / 山西', 'woocommerce' ), - 'CN6' => __( 'Inner Mongolia / 內蒙古', 'woocommerce' ), - 'CN7' => __( 'Liaoning / 辽宁', 'woocommerce' ), - 'CN8' => __( 'Jilin / 吉林', 'woocommerce' ), - 'CN9' => __( 'Heilongjiang / 黑龙江', 'woocommerce' ), - 'CN10' => __( 'Shanghai / 上海', 'woocommerce' ), - 'CN11' => __( 'Jiangsu / 江苏', 'woocommerce' ), - 'CN12' => __( 'Zhejiang / 浙江', 'woocommerce' ), - 'CN13' => __( 'Anhui / 安徽', 'woocommerce' ), - 'CN14' => __( 'Fujian / 福建', 'woocommerce' ), - 'CN15' => __( 'Jiangxi / 江西', 'woocommerce' ), - 'CN16' => __( 'Shandong / 山东', 'woocommerce' ), - 'CN17' => __( 'Henan / 河南', 'woocommerce' ), - 'CN18' => __( 'Hubei / 湖北', 'woocommerce' ), - 'CN19' => __( 'Hunan / 湖南', 'woocommerce' ), - 'CN20' => __( 'Guangdong / 广东', 'woocommerce' ), - 'CN21' => __( 'Guangxi Zhuang / 广西壮族', 'woocommerce' ), - 'CN22' => __( 'Hainan / 海南', 'woocommerce' ), - 'CN23' => __( 'Chongqing / 重庆', 'woocommerce' ), - 'CN24' => __( 'Sichuan / 四川', 'woocommerce' ), - 'CN25' => __( 'Guizhou / 贵州', 'woocommerce' ), - 'CN26' => __( 'Shaanxi / 陕西', 'woocommerce' ), - 'CN27' => __( 'Gansu / 甘肃', 'woocommerce' ), - 'CN28' => __( 'Qinghai / 青海', 'woocommerce' ), - 'CN29' => __( 'Ningxia Hui / 宁夏', 'woocommerce' ), - 'CN30' => __( 'Macau / 澳门', 'woocommerce' ), - 'CN31' => __( 'Tibet / 西藏', 'woocommerce' ), - 'CN32' => __( 'Xinjiang / 新疆', 'woocommerce' ) -); \ No newline at end of file + 'CN1' => __( 'Yunnan / 云南', 'woocommerce' ), + 'CN2' => __( 'Beijing / 北京', 'woocommerce' ), + 'CN3' => __( 'Tianjin / 天津', 'woocommerce' ), + 'CN4' => __( 'Hebei / 河北', 'woocommerce' ), + 'CN5' => __( 'Shanxi / 山西', 'woocommerce' ), + 'CN6' => __( 'Inner Mongolia / 內蒙古', 'woocommerce' ), + 'CN7' => __( 'Liaoning / 辽宁', 'woocommerce' ), + 'CN8' => __( 'Jilin / 吉林', 'woocommerce' ), + 'CN9' => __( 'Heilongjiang / 黑龙江', 'woocommerce' ), + 'CN10' => __( 'Shanghai / 上海', 'woocommerce' ), + 'CN11' => __( 'Jiangsu / 江苏', 'woocommerce' ), + 'CN12' => __( 'Zhejiang / 浙江', 'woocommerce' ), + 'CN13' => __( 'Anhui / 安徽', 'woocommerce' ), + 'CN14' => __( 'Fujian / 福建', 'woocommerce' ), + 'CN15' => __( 'Jiangxi / 江西', 'woocommerce' ), + 'CN16' => __( 'Shandong / 山东', 'woocommerce' ), + 'CN17' => __( 'Henan / 河南', 'woocommerce' ), + 'CN18' => __( 'Hubei / 湖北', 'woocommerce' ), + 'CN19' => __( 'Hunan / 湖南', 'woocommerce' ), + 'CN20' => __( 'Guangdong / 广东', 'woocommerce' ), + 'CN21' => __( 'Guangxi Zhuang / 广西壮族', 'woocommerce' ), + 'CN22' => __( 'Hainan / 海南', 'woocommerce' ), + 'CN23' => __( 'Chongqing / 重庆', 'woocommerce' ), + 'CN24' => __( 'Sichuan / 四川', 'woocommerce' ), + 'CN25' => __( 'Guizhou / 贵州', 'woocommerce' ), + 'CN26' => __( 'Shaanxi / 陕西', 'woocommerce' ), + 'CN27' => __( 'Gansu / 甘肃', 'woocommerce' ), + 'CN28' => __( 'Qinghai / 青海', 'woocommerce' ), + 'CN29' => __( 'Ningxia Hui / 宁夏', 'woocommerce' ), + 'CN30' => __( 'Macau / 澳门', 'woocommerce' ), + 'CN31' => __( 'Tibet / 西藏', 'woocommerce' ), + 'CN32' => __( 'Xinjiang / 新疆', 'woocommerce' ) +); diff --git a/i18n/states/ES.php b/i18n/states/ES.php index 9d1824a21f5..64ea9ced467 100644 --- a/i18n/states/ES.php +++ b/i18n/states/ES.php @@ -2,64 +2,64 @@ /** * Spain states * - * @author Samuel Aguilera - * @category i18n - * @package WooCommerce/i18n + * @author WooThemes + * @category i18n + * @package WooCommerce/i18n * @version 2.0.11 */ global $states; -$states["ES"] = array( - 'C' => __('A Coruña', 'woocommerce'), - 'VI' => __('Álava', 'woocommerce'), - 'AB' => __('Albacete', 'woocommerce'), - 'A' => __('Alicante', 'woocommerce'), - 'AL' => __('Almería', 'woocommerce'), - 'O' => __('Asturias', 'woocommerce'), - 'AV' => __('Ávila', 'woocommerce'), - 'BA' => __('Badajoz', 'woocommerce'), - 'PM' => __('Baleares', 'woocommerce'), - 'B' => __('Barcelona', 'woocommerce'), - 'BU' => __('Burgos', 'woocommerce'), - 'CC' => __('Cáceres', 'woocommerce'), - 'CA' => __('Cádiz', 'woocommerce'), - 'S' => __('Cantabria', 'woocommerce'), - 'CS' => __('Castellón', 'woocommerce'), - 'CE' => __('Ceuta', 'woocommerce'), - 'CR' => __('Ciudad Real', 'woocommerce'), - 'CO' => __('Córdoba', 'woocommerce'), - 'CU' => __('Cuenca', 'woocommerce'), - 'GI' => __('Girona', 'woocommerce'), - 'GR' => __('Granada', 'woocommerce'), - 'GU' => __('Guadalajara', 'woocommerce'), - 'SS' => __('Guipúzcoa', 'woocommerce'), - 'H' => __('Huelva', 'woocommerce'), - 'HU' => __('Huesca', 'woocommerce'), - 'J' => __('Jaén', 'woocommerce'), - 'LO' => __('La Rioja', 'woocommerce'), - 'GC' => __('Las Palmas', 'woocommerce'), - 'LE' => __('León', 'woocommerce'), - 'L' => __('Lleida', 'woocommerce'), - 'LU' => __('Lugo', 'woocommerce'), - 'M' => __('Madrid', 'woocommerce'), - 'MA' => __('Málaga', 'woocommerce'), - 'ML' => __('Melilla', 'woocommerce'), - 'MU' => __('Murcia', 'woocommerce'), - 'NA' => __('Navarra', 'woocommerce'), - 'OR' => __('Ourense', 'woocommerce'), - 'P' => __('Palencia', 'woocommerce'), - 'PO' => __('Pontevedra', 'woocommerce'), - 'SA' => __('Salamanca', 'woocommerce'), - 'TF' => __('Santa Cruz de Tenerife', 'woocommerce'), - 'SG' => __('Segovia', 'woocommerce'), - 'SE' => __('Sevilla', 'woocommerce'), - 'SO' => __('Soria', 'woocommerce'), - 'T' => __('Tarragona', 'woocommerce'), - 'TE' => __('Teruel', 'woocommerce'), - 'TO' => __('Toledo', 'woocommerce'), - 'V' => __('Valencia', 'woocommerce'), - 'VA' => __('Valladolid', 'woocommerce'), - 'BI' => __('Vizcaya', 'woocommerce'), - 'ZA' => __('Zamora', 'woocommerce'), - 'Z' => __('Zaragoza', 'woocommerce') -); +$states['ES'] = array( + 'C' => __( 'A Coruña', 'woocommerce' ), + 'VI' => __( 'Araba/Álava', 'woocommerce' ), + 'AB' => __( 'Albacete', 'woocommerce' ), + 'A' => __( 'Alicante', 'woocommerce' ), + 'AL' => __( 'Almería', 'woocommerce' ), + 'O' => __( 'Asturias', 'woocommerce' ), + 'AV' => __( 'Ávila', 'woocommerce' ), + 'BA' => __( 'Badajoz', 'woocommerce' ), + 'PM' => __( 'Baleares', 'woocommerce' ), + 'B' => __( 'Barcelona', 'woocommerce' ), + 'BU' => __( 'Burgos', 'woocommerce' ), + 'CC' => __( 'Cáceres', 'woocommerce' ), + 'CA' => __( 'Cádiz', 'woocommerce' ), + 'S' => __( 'Cantabria', 'woocommerce' ), + 'CS' => __( 'Castellón', 'woocommerce' ), + 'CE' => __( 'Ceuta', 'woocommerce' ), + 'CR' => __( 'Ciudad Real', 'woocommerce' ), + 'CO' => __( 'Córdoba', 'woocommerce' ), + 'CU' => __( 'Cuenca', 'woocommerce' ), + 'GI' => __( 'Girona', 'woocommerce' ), + 'GR' => __( 'Granada', 'woocommerce' ), + 'GU' => __( 'Guadalajara', 'woocommerce' ), + 'SS' => __( 'Gipuzkoa', 'woocommerce' ), + 'H' => __( 'Huelva', 'woocommerce' ), + 'HU' => __( 'Huesca', 'woocommerce' ), + 'J' => __( 'Jaén', 'woocommerce' ), + 'LO' => __( 'La Rioja', 'woocommerce' ), + 'GC' => __( 'Las Palmas', 'woocommerce' ), + 'LE' => __( 'León', 'woocommerce' ), + 'L' => __( 'Lleida', 'woocommerce' ), + 'LU' => __( 'Lugo', 'woocommerce' ), + 'M' => __( 'Madrid', 'woocommerce' ), + 'MA' => __( 'Málaga', 'woocommerce' ), + 'ML' => __( 'Melilla', 'woocommerce' ), + 'MU' => __( 'Murcia', 'woocommerce' ), + 'NA' => __( 'Navarra', 'woocommerce' ), + 'OR' => __( 'Ourense', 'woocommerce' ), + 'P' => __( 'Palencia', 'woocommerce' ), + 'PO' => __( 'Pontevedra', 'woocommerce' ), + 'SA' => __( 'Salamanca', 'woocommerce' ), + 'TF' => __( 'Santa Cruz de Tenerife', 'woocommerce' ), + 'SG' => __( 'Segovia', 'woocommerce' ), + 'SE' => __( 'Sevilla', 'woocommerce' ), + 'SO' => __( 'Soria', 'woocommerce' ), + 'T' => __( 'Tarragona', 'woocommerce' ), + 'TE' => __( 'Teruel', 'woocommerce' ), + 'TO' => __( 'Toledo', 'woocommerce' ), + 'V' => __( 'Valencia', 'woocommerce' ), + 'VA' => __( 'Valladolid', 'woocommerce' ), + 'BI' => __( 'Bizkaia', 'woocommerce' ), + 'ZA' => __( 'Zamora', 'woocommerce' ), + 'Z' => __( 'Zaragoza', 'woocommerce' ) +); diff --git a/i18n/states/HK.php b/i18n/states/HK.php index 9922116c50e..f55b322b42c 100644 --- a/i18n/states/HK.php +++ b/i18n/states/HK.php @@ -2,9 +2,9 @@ /** * Hong Kong states * - * @author WooThemes - * @category i18n - * @package WooCommerce/i18n + * @author WooThemes + * @category i18n + * @package WooCommerce/i18n * @version 2.0.0 */ global $states; diff --git a/i18n/states/HU.php b/i18n/states/HU.php index f54cb023ff5..22a27b568fe 100644 --- a/i18n/states/HU.php +++ b/i18n/states/HU.php @@ -2,9 +2,9 @@ /** * Hungary states * - * @author WooThemes - * @category i18n - * @package WooCommerce/i18n + * @author WooThemes + * @category i18n + * @package WooCommerce/i18n * @version 2.0.0 */ global $states; diff --git a/i18n/states/HZ.php b/i18n/states/HZ.php deleted file mode 100644 index 3dd25f03e34..00000000000 --- a/i18n/states/HZ.php +++ /dev/null @@ -1,28 +0,0 @@ - __( 'Auckland', 'woocommerce' ), - 'BP' => __( 'Bay of Plenty', 'woocommerce' ), - 'CT' => __( 'Canterbury', 'woocommerce' ), - 'HB' => __( 'Hawke’s Bay', 'woocommerce' ), - 'MW' => __( 'Manawatu-Wanganui', 'woocommerce' ), - 'MB' => __( 'Marlborough', 'woocommerce' ), - 'NS' => __( 'Nelson', 'woocommerce' ), - 'NL' => __( 'Northland', 'woocommerce' ), - 'OT' => __( 'Otago', 'woocommerce' ), - 'SL' => __( 'Southland', 'woocommerce' ), - 'TK' => __( 'Taranaki', 'woocommerce' ), - 'TM' => __( 'Tasman', 'woocommerce' ), - 'WA' => __( 'Waikato', 'woocommerce' ), - 'WE' => __( 'Wellington', 'woocommerce' ), - 'WC' => __( 'West Coast', 'woocommerce' ) -); diff --git a/i18n/states/ID.php b/i18n/states/ID.php index b4241428a82..bd0c4af1293 100644 --- a/i18n/states/ID.php +++ b/i18n/states/ID.php @@ -2,46 +2,46 @@ /** * Indonesia Provinces * - * @author WooThemes - * @category i18n - * @package WooCommerce/i18n + * @author WooThemes + * @category i18n + * @package WooCommerce/i18n * @version 2.0.0 */ global $states; $states['ID'] = array( - 'AC' => __( 'Daerah Istimewa Aceh', 'woocommerce' ), - 'SU' => __( 'Sumatera Utara', 'woocommerce' ), - 'SB' => __( 'Sumatera Barat', 'woocommerce' ), - 'RI' => __( 'Riau', 'woocommerce' ), - 'KR' => __( 'Kepulauan Riau', 'woocommerce' ), - 'JA' => __( 'Jambi', 'woocommerce' ), - 'SS' => __( 'Sumatera Selatan', 'woocommerce' ), - 'BB' => __( 'Bangka Belitung', 'woocommerce' ), - 'BE' => __( 'Bengkulu', 'woocommerce' ), - 'LA' => __( 'Lampung', 'woocommerce' ), - 'JK' => __( 'DKI Jakarta', 'woocommerce' ), - 'JB' => __( 'Jawa Barat', 'woocommerce' ), - 'BT' => __( 'Banten', 'woocommerce' ), - 'JT' => __( 'Jawa Tengah', 'woocommerce' ), - 'JI' => __( 'Jawa Timur', 'woocommerce' ), - 'YO' => __( 'Daerah Istimewa Yogyakarta', 'woocommerce' ), - 'BA' => __( 'Bali', 'woocommerce' ), - 'NB' => __( 'Nusa Tenggara Barat', 'woocommerce' ), - 'NT' => __( 'Nusa Tenggara Timur', 'woocommerce' ), - 'KB' => __( 'Kalimantan Barat', 'woocommerce' ), - 'KT' => __( 'Kalimantan Tengah', 'woocommerce' ), - 'KI' => __( 'Kalimantan Timur', 'woocommerce' ), - 'KS' => __( 'Kalimantan Selatan', 'woocommerce' ), - 'KU' => __( 'Kalimantan Utara', 'woocommerce' ), - 'SA' => __( 'Sulawesi Utara', 'woocommerce' ), - 'ST' => __( 'Sulawesi Tengah', 'woocommerce' ), - 'SG' => __( 'Sulawesi Tenggara', 'woocommerce' ), - 'SR' => __( 'Sulawesi Barat', 'woocommerce' ), - 'SN' => __( 'Sulawesi Selatan', 'woocommerce' ), - 'GO' => __( 'Gorontalo', 'woocommerce' ), - 'MA' => __( 'Maluku', 'woocommerce' ), - 'MU' => __( 'Maluku Utara', 'woocommerce' ), - 'PA' => __( 'Papua', 'woocommerce' ), - 'PB' => __( 'Papua Barat', 'woocommerce' ) -); \ No newline at end of file + 'AC' => __( 'Daerah Istimewa Aceh', 'woocommerce' ), + 'SU' => __( 'Sumatera Utara', 'woocommerce' ), + 'SB' => __( 'Sumatera Barat', 'woocommerce' ), + 'RI' => __( 'Riau', 'woocommerce' ), + 'KR' => __( 'Kepulauan Riau', 'woocommerce' ), + 'JA' => __( 'Jambi', 'woocommerce' ), + 'SS' => __( 'Sumatera Selatan', 'woocommerce' ), + 'BB' => __( 'Bangka Belitung', 'woocommerce' ), + 'BE' => __( 'Bengkulu', 'woocommerce' ), + 'LA' => __( 'Lampung', 'woocommerce' ), + 'JK' => __( 'DKI Jakarta', 'woocommerce' ), + 'JB' => __( 'Jawa Barat', 'woocommerce' ), + 'BT' => __( 'Banten', 'woocommerce' ), + 'JT' => __( 'Jawa Tengah', 'woocommerce' ), + 'JI' => __( 'Jawa Timur', 'woocommerce' ), + 'YO' => __( 'Daerah Istimewa Yogyakarta', 'woocommerce' ), + 'BA' => __( 'Bali', 'woocommerce' ), + 'NB' => __( 'Nusa Tenggara Barat', 'woocommerce' ), + 'NT' => __( 'Nusa Tenggara Timur', 'woocommerce' ), + 'KB' => __( 'Kalimantan Barat', 'woocommerce' ), + 'KT' => __( 'Kalimantan Tengah', 'woocommerce' ), + 'KI' => __( 'Kalimantan Timur', 'woocommerce' ), + 'KS' => __( 'Kalimantan Selatan', 'woocommerce' ), + 'KU' => __( 'Kalimantan Utara', 'woocommerce' ), + 'SA' => __( 'Sulawesi Utara', 'woocommerce' ), + 'ST' => __( 'Sulawesi Tengah', 'woocommerce' ), + 'SG' => __( 'Sulawesi Tenggara', 'woocommerce' ), + 'SR' => __( 'Sulawesi Barat', 'woocommerce' ), + 'SN' => __( 'Sulawesi Selatan', 'woocommerce' ), + 'GO' => __( 'Gorontalo', 'woocommerce' ), + 'MA' => __( 'Maluku', 'woocommerce' ), + 'MU' => __( 'Maluku Utara', 'woocommerce' ), + 'PA' => __( 'Papua', 'woocommerce' ), + 'PB' => __( 'Papua Barat', 'woocommerce' ) +); diff --git a/i18n/states/IN.php b/i18n/states/IN.php index 63e2405d3d0..e8b55c1e292 100644 --- a/i18n/states/IN.php +++ b/i18n/states/IN.php @@ -2,9 +2,9 @@ /** * Indian states * - * @author WooThemes - * @category i18n - * @package WooCommerce/i18n + * @author WooThemes + * @category i18n + * @package WooCommerce/i18n * @version 2.0.0 */ global $states; @@ -35,7 +35,7 @@ $states['IN'] = array( 'SK' => __( 'Sikkim', 'woocommerce' ), 'TN' => __( 'Tamil Nadu', 'woocommerce' ), 'TR' => __( 'Tripura', 'woocommerce' ), - 'UT' => __( 'Uttaranchal', 'woocommerce' ), + 'UK' => __( 'Uttarakhand', 'woocommerce' ), 'UP' => __( 'Uttar Pradesh', 'woocommerce' ), 'WB' => __( 'West Bengal', 'woocommerce' ), 'AN' => __( 'Andaman and Nicobar Islands', 'woocommerce' ), @@ -45,4 +45,4 @@ $states['IN'] = array( 'DL' => __( 'Delhi', 'woocommerce' ), 'LD' => __( 'Lakshadeep', 'woocommerce' ), 'PY' => __( 'Pondicherry (Puducherry)', 'woocommerce' ) -); \ No newline at end of file +); diff --git a/i18n/states/IR.php b/i18n/states/IR.php new file mode 100644 index 00000000000..ce8ca23711e --- /dev/null +++ b/i18n/states/IR.php @@ -0,0 +1,44 @@ + __( 'Khuzestan (خوزستان)', 'woocommerce' ), + 'THR' => __( 'Tehran (تهران)', 'woocommerce' ), + 'ILM' => __( 'Ilaam (ایلام)', 'woocommerce' ), + 'BHR' => __( 'Bushehr (بوشهر)', 'woocommerce' ), + 'ADL' => __( 'Ardabil (اردبیل)', 'woocommerce' ), + 'ESF' => __( 'Isfahan (اصفهان)', 'woocommerce' ), + 'YZD' => __( 'Yazd (یزد)', 'woocommerce' ), + 'KRH' => __( 'Kermanshah (کرمانشاه)', 'woocommerce' ), + 'KRN' => __( 'Kerman (کرمان)', 'woocommerce' ), + 'HDN' => __( 'Hamadan (همدان)', 'woocommerce' ), + 'GZN' => __( 'Ghazvin (قزوین)', 'woocommerce' ), + 'ZJN' => __( 'Zanjan (زنجان)', 'woocommerce' ), + 'LRS' => __( 'Luristan (لرستان)', 'woocommerce' ), + 'ABZ' => __( 'Alborz (البرز)', 'woocommerce' ), + 'EAZ' => __( 'East Azarbaijan (آذربایجان شرقی)', 'woocommerce' ), + 'WAZ' => __( 'West Azarbaijan (آذربایجان غربی)', 'woocommerce' ), + 'CHB' => __( 'Chaharmahal and Bakhtiari (چهارمحال و بختیاری)', 'woocommerce' ), + 'SKH' => __( 'South Khorasan (خراسان جنوبی)', 'woocommerce' ), + 'RKH' => __( 'Razavi Khorasan (خراسان رضوی)', 'woocommerce' ), + 'NKH' => __( 'North Khorasan (خراسان جنوبی)', 'woocommerce' ), + 'SMN' => __( 'Semnan (سمنان)', 'woocommerce' ), + 'FRS' => __( 'Fars (فارس)', 'woocommerce' ), + 'QHM' => __( 'Qom (قم)', 'woocommerce' ), + 'KRD' => __( 'Kurdistan / کردستان)', 'woocommerce' ), + 'KBD' => __( 'Kohgiluyeh and BoyerAhmad (کهگیلوییه و بویراحمد)', 'woocommerce' ), + 'GLS' => __( 'Golestan (گلستان)', 'woocommerce' ), + 'GIL' => __( 'Gilan (گیلان)', 'woocommerce' ), + 'MZN' => __( 'Mazandaran (مازندران)', 'woocommerce' ), + 'MKZ' => __( 'Markazi (مرکزی)', 'woocommerce' ), + 'HRZ' => __( 'Hormozgan (هرمزگان)', 'woocommerce' ), + 'SBN' => __( 'Sistan and Baluchestan (سیستان و بلوچستان)', 'woocommerce' ) +); diff --git a/i18n/states/IT.php b/i18n/states/IT.php index bb648f010bb..62a5259e520 100644 --- a/i18n/states/IT.php +++ b/i18n/states/IT.php @@ -2,122 +2,122 @@ /** * Italy Provinces * - * @author Teo Maragakis - * @category i18n - * @package WooCommerce/i18n + * @author WooThemes + * @category i18n + * @package WooCommerce/i18n * @version 2.0.0 */ global $states; $states['IT'] = array( - 'AG' => __( 'Agrigento', 'woocommerce' ), - 'AL' => __( 'Alessandria', 'woocommerce' ), - 'AN' => __( 'Ancona', 'woocommerce' ), - 'AO' => __( 'Aosta', 'woocommerce' ), - 'AR' => __( 'Arezzo', 'woocommerce' ), - 'AP' => __( 'Ascoli Piceno', 'woocommerce' ), - 'AT' => __( 'Asti', 'woocommerce' ), - 'AV' => __( 'Avellino', 'woocommerce' ), - 'BA' => __( 'Bari', 'woocommerce' ), - 'BT' => __( 'Barletta-Andria-Trani', 'woocommerce' ), - 'BL' => __( 'Belluno', 'woocommerce' ), - 'BN' => __( 'Benevento', 'woocommerce' ), - 'BG' => __( 'Bergamo', 'woocommerce' ), - 'BI' => __( 'Biella', 'woocommerce' ), - 'BO' => __( 'Bologna', 'woocommerce' ), - 'BZ' => __( 'Bolzano', 'woocommerce' ), - 'BS' => __( 'Brescia', 'woocommerce' ), - 'BR' => __( 'Brindisi', 'woocommerce' ), - 'CA' => __( 'Cagliari', 'woocommerce' ), - 'CL' => __( 'Caltanissetta', 'woocommerce' ), - 'CB' => __( 'Campobasso', 'woocommerce' ), - 'CI' => __( 'Carbonia-Iglesias', 'woocommerce' ), - 'CE' => __( 'Caserta', 'woocommerce' ), - 'CT' => __( 'Catania', 'woocommerce' ), - 'CZ' => __( 'Catanzaro', 'woocommerce' ), - 'CH' => __( 'Chieti', 'woocommerce' ), - 'CO' => __( 'Como', 'woocommerce' ), - 'CS' => __( 'Cosenza', 'woocommerce' ), - 'CR' => __( 'Cremona', 'woocommerce' ), - 'KR' => __( 'Crotone', 'woocommerce' ), - 'CN' => __( 'Cuneo', 'woocommerce' ), - 'EN' => __( 'Enna', 'woocommerce' ), - 'FM' => __( 'Fermo', 'woocommerce' ), - 'FE' => __( 'Ferrara', 'woocommerce' ), - 'FI' => __( 'Firenze', 'woocommerce' ), - 'FG' => __( 'Foggia', 'woocommerce' ), - 'FC' => __( 'Forlì-Cesena', 'woocommerce' ), - 'FR' => __( 'Frosinone', 'woocommerce' ), - 'GE' => __( 'Genova', 'woocommerce' ), - 'GO' => __( 'Gorizia', 'woocommerce' ), - 'GR' => __( 'Grosseto', 'woocommerce' ), - 'IM' => __( 'Imperia', 'woocommerce' ), - 'IS' => __( 'Isernia', 'woocommerce' ), - 'SP' => __( 'La Spezia', 'woocommerce' ), - 'AQ' => __( 'L'Aquila', 'woocommerce' ), - 'LT' => __( 'Latina', 'woocommerce' ), - 'LE' => __( 'Lecce', 'woocommerce' ), - 'LC' => __( 'Lecco', 'woocommerce' ), - 'LI' => __( 'Livorno', 'woocommerce' ), - 'LO' => __( 'Lodi', 'woocommerce' ), - 'LU' => __( 'Lucca', 'woocommerce' ), - 'MC' => __( 'Macerata', 'woocommerce' ), - 'MN' => __( 'Mantova', 'woocommerce' ), - 'MS' => __( 'Massa-Carrara', 'woocommerce' ), - 'MT' => __( 'Matera', 'woocommerce' ), - 'ME' => __( 'Messina', 'woocommerce' ), - 'MI' => __( 'Milano', 'woocommerce' ), - 'MO' => __( 'Modena', 'woocommerce' ), - 'MB' => __( 'Monza e della Brianza', 'woocommerce' ), - 'NA' => __( 'Napoli', 'woocommerce' ), - 'NO' => __( 'Novara', 'woocommerce' ), - 'NU' => __( 'Nuoro', 'woocommerce' ), - 'OT' => __( 'Olbia-Tempio', 'woocommerce' ), - 'OR' => __( 'Oristano', 'woocommerce' ), - 'PD' => __( 'Padova', 'woocommerce' ), - 'PA' => __( 'Palermo', 'woocommerce' ), - 'PR' => __( 'Parma', 'woocommerce' ), - 'PV' => __( 'Pavia', 'woocommerce' ), - 'PG' => __( 'Perugia', 'woocommerce' ), - 'PU' => __( 'Pesaro e Urbino', 'woocommerce' ), - 'PE' => __( 'Pescara', 'woocommerce' ), - 'PC' => __( 'Piacenza', 'woocommerce' ), - 'PI' => __( 'Pisa', 'woocommerce' ), - 'PT' => __( 'Pistoia', 'woocommerce' ), - 'PN' => __( 'Pordenone', 'woocommerce' ), - 'PZ' => __( 'Potenza', 'woocommerce' ), - 'PO' => __( 'Prato', 'woocommerce' ), - 'RG' => __( 'Ragusa', 'woocommerce' ), - 'RA' => __( 'Ravenna', 'woocommerce' ), - 'RC' => __( 'Reggio Calabria', 'woocommerce' ), - 'RE' => __( 'Reggio Emilia', 'woocommerce' ), - 'RI' => __( 'Rieti', 'woocommerce' ), - 'RN' => __( 'Rimini', 'woocommerce' ), - 'RM' => __( 'Roma', 'woocommerce' ), - 'RO' => __( 'Rovigo', 'woocommerce' ), - 'SA' => __( 'Salerno', 'woocommerce' ), - 'VS' => __( 'Medio Campidano', 'woocommerce' ), - 'SS' => __( 'Sassari', 'woocommerce' ), - 'SV' => __( 'Savona', 'woocommerce' ), - 'SI' => __( 'Siena', 'woocommerce' ), - 'SR' => __( 'Siracusa', 'woocommerce' ), - 'SO' => __( 'Sondrio', 'woocommerce' ), - 'TA' => __( 'Taranto', 'woocommerce' ), - 'TE' => __( 'Teramo', 'woocommerce' ), - 'TR' => __( 'Terni', 'woocommerce' ), - 'TO' => __( 'Torino', 'woocommerce' ), - 'OG' => __( 'Ogliastra', 'woocommerce' ), - 'TP' => __( 'Trapani', 'woocommerce' ), - 'TN' => __( 'Trento', 'woocommerce' ), - 'TV' => __( 'Treviso', 'woocommerce' ), - 'TS' => __( 'Trieste', 'woocommerce' ), - 'UD' => __( 'Udine', 'woocommerce' ), - 'VA' => __( 'Varese', 'woocommerce' ), - 'VE' => __( 'Venezia', 'woocommerce' ), - 'VB' => __( 'Verbano-Cusio-Ossola', 'woocommerce' ), - 'VC' => __( 'Vercelli', 'woocommerce' ), - 'VR' => __( 'Verona', 'woocommerce' ), - 'VV' => __( 'Vibo Valentia', 'woocommerce' ), - 'VI' => __( 'Vicenza', 'woocommerce' ), - 'VT' => __( 'Viterbo', 'woocommerce' ) -); \ No newline at end of file + 'AG' => __( 'Agrigento', 'woocommerce' ), + 'AL' => __( 'Alessandria', 'woocommerce' ), + 'AN' => __( 'Ancona', 'woocommerce' ), + 'AO' => __( 'Aosta', 'woocommerce' ), + 'AR' => __( 'Arezzo', 'woocommerce' ), + 'AP' => __( 'Ascoli Piceno', 'woocommerce' ), + 'AT' => __( 'Asti', 'woocommerce' ), + 'AV' => __( 'Avellino', 'woocommerce' ), + 'BA' => __( 'Bari', 'woocommerce' ), + 'BT' => __( 'Barletta-Andria-Trani', 'woocommerce' ), + 'BL' => __( 'Belluno', 'woocommerce' ), + 'BN' => __( 'Benevento', 'woocommerce' ), + 'BG' => __( 'Bergamo', 'woocommerce' ), + 'BI' => __( 'Biella', 'woocommerce' ), + 'BO' => __( 'Bologna', 'woocommerce' ), + 'BZ' => __( 'Bolzano', 'woocommerce' ), + 'BS' => __( 'Brescia', 'woocommerce' ), + 'BR' => __( 'Brindisi', 'woocommerce' ), + 'CA' => __( 'Cagliari', 'woocommerce' ), + 'CL' => __( 'Caltanissetta', 'woocommerce' ), + 'CB' => __( 'Campobasso', 'woocommerce' ), + 'CI' => __( 'Carbonia-Iglesias', 'woocommerce' ), + 'CE' => __( 'Caserta', 'woocommerce' ), + 'CT' => __( 'Catania', 'woocommerce' ), + 'CZ' => __( 'Catanzaro', 'woocommerce' ), + 'CH' => __( 'Chieti', 'woocommerce' ), + 'CO' => __( 'Como', 'woocommerce' ), + 'CS' => __( 'Cosenza', 'woocommerce' ), + 'CR' => __( 'Cremona', 'woocommerce' ), + 'KR' => __( 'Crotone', 'woocommerce' ), + 'CN' => __( 'Cuneo', 'woocommerce' ), + 'EN' => __( 'Enna', 'woocommerce' ), + 'FM' => __( 'Fermo', 'woocommerce' ), + 'FE' => __( 'Ferrara', 'woocommerce' ), + 'FI' => __( 'Firenze', 'woocommerce' ), + 'FG' => __( 'Foggia', 'woocommerce' ), + 'FC' => __( 'Forlì-Cesena', 'woocommerce' ), + 'FR' => __( 'Frosinone', 'woocommerce' ), + 'GE' => __( 'Genova', 'woocommerce' ), + 'GO' => __( 'Gorizia', 'woocommerce' ), + 'GR' => __( 'Grosseto', 'woocommerce' ), + 'IM' => __( 'Imperia', 'woocommerce' ), + 'IS' => __( 'Isernia', 'woocommerce' ), + 'SP' => __( 'La Spezia', 'woocommerce' ), + 'AQ' => __( 'L'Aquila', 'woocommerce' ), + 'LT' => __( 'Latina', 'woocommerce' ), + 'LE' => __( 'Lecce', 'woocommerce' ), + 'LC' => __( 'Lecco', 'woocommerce' ), + 'LI' => __( 'Livorno', 'woocommerce' ), + 'LO' => __( 'Lodi', 'woocommerce' ), + 'LU' => __( 'Lucca', 'woocommerce' ), + 'MC' => __( 'Macerata', 'woocommerce' ), + 'MN' => __( 'Mantova', 'woocommerce' ), + 'MS' => __( 'Massa-Carrara', 'woocommerce' ), + 'MT' => __( 'Matera', 'woocommerce' ), + 'ME' => __( 'Messina', 'woocommerce' ), + 'MI' => __( 'Milano', 'woocommerce' ), + 'MO' => __( 'Modena', 'woocommerce' ), + 'MB' => __( 'Monza e della Brianza', 'woocommerce' ), + 'NA' => __( 'Napoli', 'woocommerce' ), + 'NO' => __( 'Novara', 'woocommerce' ), + 'NU' => __( 'Nuoro', 'woocommerce' ), + 'OT' => __( 'Olbia-Tempio', 'woocommerce' ), + 'OR' => __( 'Oristano', 'woocommerce' ), + 'PD' => __( 'Padova', 'woocommerce' ), + 'PA' => __( 'Palermo', 'woocommerce' ), + 'PR' => __( 'Parma', 'woocommerce' ), + 'PV' => __( 'Pavia', 'woocommerce' ), + 'PG' => __( 'Perugia', 'woocommerce' ), + 'PU' => __( 'Pesaro e Urbino', 'woocommerce' ), + 'PE' => __( 'Pescara', 'woocommerce' ), + 'PC' => __( 'Piacenza', 'woocommerce' ), + 'PI' => __( 'Pisa', 'woocommerce' ), + 'PT' => __( 'Pistoia', 'woocommerce' ), + 'PN' => __( 'Pordenone', 'woocommerce' ), + 'PZ' => __( 'Potenza', 'woocommerce' ), + 'PO' => __( 'Prato', 'woocommerce' ), + 'RG' => __( 'Ragusa', 'woocommerce' ), + 'RA' => __( 'Ravenna', 'woocommerce' ), + 'RC' => __( 'Reggio Calabria', 'woocommerce' ), + 'RE' => __( 'Reggio Emilia', 'woocommerce' ), + 'RI' => __( 'Rieti', 'woocommerce' ), + 'RN' => __( 'Rimini', 'woocommerce' ), + 'RM' => __( 'Roma', 'woocommerce' ), + 'RO' => __( 'Rovigo', 'woocommerce' ), + 'SA' => __( 'Salerno', 'woocommerce' ), + 'VS' => __( 'Medio Campidano', 'woocommerce' ), + 'SS' => __( 'Sassari', 'woocommerce' ), + 'SV' => __( 'Savona', 'woocommerce' ), + 'SI' => __( 'Siena', 'woocommerce' ), + 'SR' => __( 'Siracusa', 'woocommerce' ), + 'SO' => __( 'Sondrio', 'woocommerce' ), + 'TA' => __( 'Taranto', 'woocommerce' ), + 'TE' => __( 'Teramo', 'woocommerce' ), + 'TR' => __( 'Terni', 'woocommerce' ), + 'TO' => __( 'Torino', 'woocommerce' ), + 'OG' => __( 'Ogliastra', 'woocommerce' ), + 'TP' => __( 'Trapani', 'woocommerce' ), + 'TN' => __( 'Trento', 'woocommerce' ), + 'TV' => __( 'Treviso', 'woocommerce' ), + 'TS' => __( 'Trieste', 'woocommerce' ), + 'UD' => __( 'Udine', 'woocommerce' ), + 'VA' => __( 'Varese', 'woocommerce' ), + 'VE' => __( 'Venezia', 'woocommerce' ), + 'VB' => __( 'Verbano-Cusio-Ossola', 'woocommerce' ), + 'VC' => __( 'Vercelli', 'woocommerce' ), + 'VR' => __( 'Verona', 'woocommerce' ), + 'VV' => __( 'Vibo Valentia', 'woocommerce' ), + 'VI' => __( 'Vicenza', 'woocommerce' ), + 'VT' => __( 'Viterbo', 'woocommerce' ) +); diff --git a/i18n/states/JP.php b/i18n/states/JP.php index 8f2822a2d62..20470f8c939 100644 --- a/i18n/states/JP.php +++ b/i18n/states/JP.php @@ -1,10 +1,10 @@ __( 'Distrito Federal', 'woocommerce' ), + 'JAL' => __( 'Jalisco', 'woocommerce' ), + 'NLE' => __( 'Nuevo León', 'woocommerce' ), + 'AGU' => __( 'Aguascalientes', 'woocommerce' ), + 'BCN' => __( 'Baja California Norte', 'woocommerce' ), + 'BCS' => __( 'Baja California Sur', 'woocommerce' ), + 'CAM' => __( 'Campeche', 'woocommerce' ), + 'CHP' => __( 'Chiapas', 'woocommerce' ), + 'CHH' => __( 'Chihuahua', 'woocommerce' ), + 'COA' => __( 'Coahuila', 'woocommerce' ), + 'COL' => __( 'Colima', 'woocommerce' ), + 'DUR' => __( 'Durango', 'woocommerce' ), + 'GUA' => __( 'Guanajuato', 'woocommerce' ), + 'GRO' => __( 'Guerrero', 'woocommerce' ), + 'HID' => __( 'Hidalgo', 'woocommerce' ), + 'MEX' => __( 'Edo. de México', 'woocommerce' ), + 'MIC' => __( 'Michoacán', 'woocommerce' ), + 'MOR' => __( 'Morelos', 'woocommerce' ), + 'NAY' => __( 'Nayarit', 'woocommerce' ), + 'OAX' => __( 'Oaxaca', 'woocommerce' ), + 'PUE' => __( 'Puebla', 'woocommerce' ), + 'QUE' => __( 'Querétaro', 'woocommerce' ), + 'ROO' => __( 'Quintana Roo', 'woocommerce' ), + 'SLP' => __( 'San Luis Potosí', 'woocommerce' ), + 'SIN' => __( 'Sinaloa', 'woocommerce' ), + 'SON' => __( 'Sonora', 'woocommerce' ), + 'TAB' => __( 'Tabasco', 'woocommerce' ), + 'TAM' => __( 'Tamaulipas', 'woocommerce' ), + 'TLA' => __( 'Tlaxcala', 'woocommerce' ), + 'VER' => __( 'Veracruz', 'woocommerce' ), + 'YUC' => __( 'Yucatán', 'woocommerce' ), + 'ZAC' => __( 'Zacatecas', 'woocommerce' ) +); diff --git a/i18n/states/MY.php b/i18n/states/MY.php index 001f4d48d54..532f102dc86 100644 --- a/i18n/states/MY.php +++ b/i18n/states/MY.php @@ -2,9 +2,9 @@ /** * Malaysian states * - * @author WooThemes - * @category i18n - * @package WooCommerce/i18n + * @author WooThemes + * @category i18n + * @package WooCommerce/i18n * @version 2.0.0 */ global $states; @@ -26,4 +26,4 @@ $states['MY'] = array( 'KUL' => __( 'W.P. Kuala Lumpur', 'woocommerce' ), 'LBN' => __( 'W.P. Labuan', 'woocommerce' ), 'PJY' => __( 'W.P. Putrajaya', 'woocommerce' ) -); \ No newline at end of file +); diff --git a/i18n/states/NP.php b/i18n/states/NP.php new file mode 100644 index 00000000000..4f1f8f11ad8 --- /dev/null +++ b/i18n/states/NP.php @@ -0,0 +1,116 @@ + __( 'Illam', 'woocommerce' ), + 'JHA' => __( 'Jhapa', 'woocommerce' ), + 'PAN' => __( 'Panchthar', 'woocommerce' ), + 'TAP' => __( 'Taplejung', 'woocommerce' ), + + // Koshi + 'BHO' => __( 'Bhojpur', 'woocommerce' ), + 'DKA' => __( 'Dhankuta', 'woocommerce' ), + 'MOR' => __( 'Morang', 'woocommerce' ), + 'SUN' => __( 'Sunsari', 'woocommerce' ), + 'SAN' => __( 'Sankhuwa', 'woocommerce' ), + 'TER' => __( 'Terhathum', 'woocommerce' ), + + // Sagarmatha + 'KHO' => __( 'Khotang', 'woocommerce' ), + 'OKH' => __( 'Okhaldhunga', 'woocommerce' ), + 'SAP' => __( 'Saptari', 'woocommerce' ), + 'SIR' => __( 'Siraha', 'woocommerce' ), + 'SOL' => __( 'Solukhumbu', 'woocommerce' ), + 'UDA' => __( 'Udayapur', 'woocommerce' ), + + // Janakpur + 'DHA' => __( 'Dhanusa', 'woocommerce' ), + 'DLK' => __( 'Dolakha', 'woocommerce' ), + 'MOH' => __( 'Mohottari', 'woocommerce' ), + 'RAM' => __( 'Ramechha', 'woocommerce' ), + 'SAR' => __( 'Sarlahi', 'woocommerce' ), + 'SIN' => __( 'Sindhuli', 'woocommerce' ), + + // Bagmati + 'BHA' => __( 'Bhaktapur', 'woocommerce' ), + 'DHD' => __( 'Dhading', 'woocommerce' ), + 'KTM' => __( 'Kathmandu', 'woocommerce' ), + 'KAV' => __( 'Kavrepalanchowk', 'woocommerce' ), + 'LAL' => __( 'Lalitpur', 'woocommerce' ), + 'NUW' => __( 'Nuwakot', 'woocommerce' ), + 'RAS' => __( 'Rasuwa', 'woocommerce' ), + 'SPC' => __( 'Sindhupalchowk', 'woocommerce' ), + + // Narayani + 'BAR' => __( 'Bara', 'woocommerce' ), + 'CHI' => __( 'Chitwan', 'woocommerce' ), + 'MAK' => __( 'Makwanpur', 'woocommerce' ), + 'PAR' => __( 'Parsa', 'woocommerce' ), + 'RAU' => __( 'Rautahat', 'woocommerce' ), + + // Gandaki + 'GOR' => __( 'Gorkha', 'woocommerce' ), + 'KAS' => __( 'Kaski', 'woocommerce' ), + 'LAM' => __( 'Lamjung', 'woocommerce' ), + 'MAN' => __( 'Manang', 'woocommerce' ), + 'SYN' => __( 'Syangja', 'woocommerce' ), + 'TAN' => __( 'Tanahun', 'woocommerce' ), + + // Dhawalagiri + 'BAG' => __( 'Baglung', 'woocommerce' ), + 'PBT' => __( 'Parbat', 'woocommerce' ), + 'MUS' => __( 'Mustang', 'woocommerce' ), + 'MYG' => __( 'Myagdi', 'woocommerce' ), + + // Lumbini + 'AGR' => __( 'Agrghakanchi', 'woocommerce' ), + 'GUL' => __( 'Gulmi', 'woocommerce' ), + 'KAP' => __( 'Kapilbastu', 'woocommerce' ), + 'NAW' => __( 'Nawalparasi', 'woocommerce' ), + 'PAL' => __( 'Palpa', 'woocommerce' ), + 'RUP' => __( 'Rupandehi', 'woocommerce' ), + + // Rapti + 'DAN' => __( 'Dang', 'woocommerce' ), + 'PYU' => __( 'Pyuthan', 'woocommerce' ), + 'ROL' => __( 'Rolpa', 'woocommerce' ), + 'RUK' => __( 'Rukum', 'woocommerce' ), + 'SAL' => __( 'Salyan', 'woocommerce' ), + + // Bheri + 'BAN' => __( 'Banke', 'woocommerce' ), + 'BDA' => __( 'Bardiya', 'woocommerce' ), + 'DAI' => __( 'Dailekh', 'woocommerce' ), + 'JAJ' => __( 'Jajarkot', 'woocommerce' ), + 'SUR' => __( 'Surkhet', 'woocommerce' ), + + // Karnali + 'DOL' => __( 'Dolpa', 'woocommerce' ), + 'HUM' => __( 'Humla', 'woocommerce' ), + 'JUM' => __( 'Jumla', 'woocommerce' ), + 'KAL' => __( 'Kalikot', 'woocommerce' ), + 'MUG' => __( 'Mugu', 'woocommerce' ), + + // Seti + 'ACH' => __( 'Achham', 'woocommerce' ), + 'BJH' => __( 'Bajhang', 'woocommerce' ), + 'BJU' => __( 'Bajura', 'woocommerce' ), + 'DOT' => __( 'Doti', 'woocommerce' ), + 'KAI' => __( 'Kailali', 'woocommerce' ), + + // Mahakali + 'BAI' => __( 'Baitadi', 'woocommerce' ), + 'DAD' => __( 'Dadeldhura', 'woocommerce' ), + 'DAR' => __( 'Darchula', 'woocommerce' ), + 'KAN' => __( 'Kanchanpur', 'woocommerce' ) +); diff --git a/i18n/states/NZ.php b/i18n/states/NZ.php index 91ab33139ba..547bec93b61 100644 --- a/i18n/states/NZ.php +++ b/i18n/states/NZ.php @@ -1,10 +1,10 @@ __( 'Uttaradit (อุตรดิตถ์)', 'woocommerce' ), 'TH-95' => __( 'Yala (ยะลา)', 'woocommerce' ), 'TH-35' => __( 'Yasothon (ยโสธร)', 'woocommerce' ) -); \ No newline at end of file +); diff --git a/i18n/states/TR.php b/i18n/states/TR.php index f74ccba9ff1..c8dc7dbd353 100644 --- a/i18n/states/TR.php +++ b/i18n/states/TR.php @@ -1,94 +1,94 @@ __( 'Adana', 'woocommerce' ), -'TR02' => __( 'Adıyaman', 'woocommerce' ), -'TR03' => __( 'Afyon', 'woocommerce' ), -'TR04' => __( 'Ağrı', 'woocommerce' ), -'TR05' => __( 'Amasya', 'woocommerce' ), -'TR06' => __( 'Ankara', 'woocommerce' ), -'TR07' => __( 'Antalya', 'woocommerce' ), -'TR08' => __( 'Artvin', 'woocommerce' ), -'TR09' => __( 'Aydın', 'woocommerce' ), -'TR10' => __( 'Balıkesir', 'woocommerce' ), -'TR11' => __( 'Bilecik', 'woocommerce' ), -'TR12' => __( 'Bingöl', 'woocommerce' ), -'TR13' => __( 'Bitlis', 'woocommerce' ), -'TR14' => __( 'Bolu', 'woocommerce' ), -'TR15' => __( 'Burdur', 'woocommerce' ), -'TR16' => __( 'Bursa', 'woocommerce' ), -'TR17' => __( 'Çanakkale', 'woocommerce' ), -'TR18' => __( 'Çankırı', 'woocommerce' ), -'TR19' => __( 'Çorum', 'woocommerce' ), -'TR20' => __( 'Denizli', 'woocommerce' ), -'TR21' => __( 'Diyarbakır', 'woocommerce' ), -'TR22' => __( 'Edirne', 'woocommerce' ), -'TR23' => __( 'Elazığ', 'woocommerce' ), -'TR24' => __( 'Erzincan', 'woocommerce' ), -'TR25' => __( 'Erzurum', 'woocommerce' ), -'TR26' => __( 'Eskişehir', 'woocommerce' ), -'TR27' => __( 'Gaziantep', 'woocommerce' ), -'TR28' => __( 'Giresun', 'woocommerce' ), -'TR29' => __( 'Gümüşhane', 'woocommerce' ), -'TR30' => __( 'Hakkari', 'woocommerce' ), -'TR31' => __( 'Hatay', 'woocommerce' ), -'TR32' => __( 'Isparta', 'woocommerce' ), -'TR33' => __( 'İçel', 'woocommerce' ), -'TR34' => __( 'İstanbul', 'woocommerce' ), -'TR35' => __( 'İzmir', 'woocommerce' ), -'TR36' => __( 'Kars', 'woocommerce' ), -'TR37' => __( 'Kastamonu', 'woocommerce' ), -'TR38' => __( 'Kayseri', 'woocommerce' ), -'TR39' => __( 'Kırklareli', 'woocommerce' ), -'TR40' => __( 'Kırşehir', 'woocommerce' ), -'TR41' => __( 'Kocaeli', 'woocommerce' ), -'TR42' => __( 'Konya', 'woocommerce' ), -'TR43' => __( 'Kütahya', 'woocommerce' ), -'TR44' => __( 'Malatya', 'woocommerce' ), -'TR45' => __( 'Manisa', 'woocommerce' ), -'TR46' => __( 'Kahramanmaraş', 'woocommerce' ), -'TR47' => __( 'Mardin', 'woocommerce' ), -'TR48' => __( 'Muğla', 'woocommerce' ), -'TR49' => __( 'Muş', 'woocommerce' ), -'TR50' => __( 'Nevşehir', 'woocommerce' ), -'TR51' => __( 'Niğde', 'woocommerce' ), -'TR52' => __( 'Ordu', 'woocommerce' ), -'TR53' => __( 'Rize', 'woocommerce' ), -'TR54' => __( 'Sakarya', 'woocommerce' ), -'TR55' => __( 'Samsun', 'woocommerce' ), -'TR56' => __( 'Siirt', 'woocommerce' ), -'TR57' => __( 'Sinop', 'woocommerce' ), -'TR58' => __( 'Sivas', 'woocommerce' ), -'TR59' => __( 'Tekirdağ', 'woocommerce' ), -'TR60' => __( 'Tokat', 'woocommerce' ), -'TR61' => __( 'Trabzon', 'woocommerce' ), -'TR62' => __( 'Tunceli', 'woocommerce' ), -'TR63' => __( 'Şanlıurfa', 'woocommerce' ), -'TR64' => __( 'Uşak', 'woocommerce' ), -'TR65' => __( 'Van', 'woocommerce' ), -'TR66' => __( 'Yozgat', 'woocommerce' ), -'TR67' => __( 'Zonguldak', 'woocommerce' ), -'TR68' => __( 'Aksaray', 'woocommerce' ), -'TR69' => __( 'Bayburt', 'woocommerce' ), -'TR70' => __( 'Karaman', 'woocommerce' ), -'TR71' => __( 'Kırıkkale', 'woocommerce' ), -'TR72' => __( 'Batman', 'woocommerce' ), -'TR73' => __( 'Şırnak', 'woocommerce' ), -'TR74' => __( 'Bartın', 'woocommerce' ), -'TR75' => __( 'Ardahan', 'woocommerce' ), -'TR76' => __( 'Iğdır', 'woocommerce' ), -'TR77' => __( 'Yalova', 'woocommerce' ), -'TR78' => __( 'Karabük', 'woocommerce' ), -'TR79' => __( 'Kilis', 'woocommerce' ), -'TR80' => __( 'Osmaniye', 'woocommerce' ), -'TR81' => __( 'Düzce', 'woocommerce' ), -); \ No newline at end of file + 'TR01' => __( 'Adana', 'woocommerce' ), + 'TR02' => __( 'Adıyaman', 'woocommerce' ), + 'TR03' => __( 'Afyon', 'woocommerce' ), + 'TR04' => __( 'Ağrı', 'woocommerce' ), + 'TR05' => __( 'Amasya', 'woocommerce' ), + 'TR06' => __( 'Ankara', 'woocommerce' ), + 'TR07' => __( 'Antalya', 'woocommerce' ), + 'TR08' => __( 'Artvin', 'woocommerce' ), + 'TR09' => __( 'Aydın', 'woocommerce' ), + 'TR10' => __( 'Balıkesir', 'woocommerce' ), + 'TR11' => __( 'Bilecik', 'woocommerce' ), + 'TR12' => __( 'Bingöl', 'woocommerce' ), + 'TR13' => __( 'Bitlis', 'woocommerce' ), + 'TR14' => __( 'Bolu', 'woocommerce' ), + 'TR15' => __( 'Burdur', 'woocommerce' ), + 'TR16' => __( 'Bursa', 'woocommerce' ), + 'TR17' => __( 'Çanakkale', 'woocommerce' ), + 'TR18' => __( 'Çankırı', 'woocommerce' ), + 'TR19' => __( 'Çorum', 'woocommerce' ), + 'TR20' => __( 'Denizli', 'woocommerce' ), + 'TR21' => __( 'Diyarbakır', 'woocommerce' ), + 'TR22' => __( 'Edirne', 'woocommerce' ), + 'TR23' => __( 'Elazığ', 'woocommerce' ), + 'TR24' => __( 'Erzincan', 'woocommerce' ), + 'TR25' => __( 'Erzurum', 'woocommerce' ), + 'TR26' => __( 'Eskişehir', 'woocommerce' ), + 'TR27' => __( 'Gaziantep', 'woocommerce' ), + 'TR28' => __( 'Giresun', 'woocommerce' ), + 'TR29' => __( 'Gümüşhane', 'woocommerce' ), + 'TR30' => __( 'Hakkari', 'woocommerce' ), + 'TR31' => __( 'Hatay', 'woocommerce' ), + 'TR32' => __( 'Isparta', 'woocommerce' ), + 'TR33' => __( 'İçel', 'woocommerce' ), + 'TR34' => __( 'İstanbul', 'woocommerce' ), + 'TR35' => __( 'İzmir', 'woocommerce' ), + 'TR36' => __( 'Kars', 'woocommerce' ), + 'TR37' => __( 'Kastamonu', 'woocommerce' ), + 'TR38' => __( 'Kayseri', 'woocommerce' ), + 'TR39' => __( 'Kırklareli', 'woocommerce' ), + 'TR40' => __( 'Kırşehir', 'woocommerce' ), + 'TR41' => __( 'Kocaeli', 'woocommerce' ), + 'TR42' => __( 'Konya', 'woocommerce' ), + 'TR43' => __( 'Kütahya', 'woocommerce' ), + 'TR44' => __( 'Malatya', 'woocommerce' ), + 'TR45' => __( 'Manisa', 'woocommerce' ), + 'TR46' => __( 'Kahramanmaraş', 'woocommerce' ), + 'TR47' => __( 'Mardin', 'woocommerce' ), + 'TR48' => __( 'Muğla', 'woocommerce' ), + 'TR49' => __( 'Muş', 'woocommerce' ), + 'TR50' => __( 'Nevşehir', 'woocommerce' ), + 'TR51' => __( 'Niğde', 'woocommerce' ), + 'TR52' => __( 'Ordu', 'woocommerce' ), + 'TR53' => __( 'Rize', 'woocommerce' ), + 'TR54' => __( 'Sakarya', 'woocommerce' ), + 'TR55' => __( 'Samsun', 'woocommerce' ), + 'TR56' => __( 'Siirt', 'woocommerce' ), + 'TR57' => __( 'Sinop', 'woocommerce' ), + 'TR58' => __( 'Sivas', 'woocommerce' ), + 'TR59' => __( 'Tekirdağ', 'woocommerce' ), + 'TR60' => __( 'Tokat', 'woocommerce' ), + 'TR61' => __( 'Trabzon', 'woocommerce' ), + 'TR62' => __( 'Tunceli', 'woocommerce' ), + 'TR63' => __( 'Şanlıurfa', 'woocommerce' ), + 'TR64' => __( 'Uşak', 'woocommerce' ), + 'TR65' => __( 'Van', 'woocommerce' ), + 'TR66' => __( 'Yozgat', 'woocommerce' ), + 'TR67' => __( 'Zonguldak', 'woocommerce' ), + 'TR68' => __( 'Aksaray', 'woocommerce' ), + 'TR69' => __( 'Bayburt', 'woocommerce' ), + 'TR70' => __( 'Karaman', 'woocommerce' ), + 'TR71' => __( 'Kırıkkale', 'woocommerce' ), + 'TR72' => __( 'Batman', 'woocommerce' ), + 'TR73' => __( 'Şırnak', 'woocommerce' ), + 'TR74' => __( 'Bartın', 'woocommerce' ), + 'TR75' => __( 'Ardahan', 'woocommerce' ), + 'TR76' => __( 'Iğdır', 'woocommerce' ), + 'TR77' => __( 'Yalova', 'woocommerce' ), + 'TR78' => __( 'Karabük', 'woocommerce' ), + 'TR79' => __( 'Kilis', 'woocommerce' ), + 'TR80' => __( 'Osmaniye', 'woocommerce' ), + 'TR81' => __( 'Düzce', 'woocommerce' ), +); diff --git a/i18n/states/US.php b/i18n/states/US.php index 573ebd6e98a..52378a9f59c 100644 --- a/i18n/states/US.php +++ b/i18n/states/US.php @@ -2,9 +2,9 @@ /** * United States * - * @author WooThemes - * @category i18n - * @package WooCommerce/i18n + * @author WooThemes + * @category i18n + * @package WooCommerce/i18n * @version 2.0.0 */ global $states; @@ -20,7 +20,7 @@ $states['US'] = array( 'DE' => __( 'Delaware', 'woocommerce' ), 'DC' => __( 'District Of Columbia', 'woocommerce' ), 'FL' => __( 'Florida', 'woocommerce' ), - 'GA' => __( 'Georgia', 'woocommerce' ), + 'GA' => _x( 'Georgia', 'US state of Georgia', 'woocommerce' ), 'HI' => __( 'Hawaii', 'woocommerce' ), 'ID' => __( 'Idaho', 'woocommerce' ), 'IL' => __( 'Illinois', 'woocommerce' ), diff --git a/i18n/states/ZA.php b/i18n/states/ZA.php index 8bca5553213..c157bcf2fb0 100644 --- a/i18n/states/ZA.php +++ b/i18n/states/ZA.php @@ -2,21 +2,21 @@ /** * South African states * - * @author WooThemes - * @category i18n - * @package WooCommerce/i18n + * @author WooThemes + * @category i18n + * @package WooCommerce/i18n * @version 2.0.0 */ global $states; $states['ZA'] = array( - 'EC' => __( 'Eastern Cape', 'woocommerce' ) , - 'FS' => __( 'Free State', 'woocommerce' ) , - 'GP' => __( 'Gauteng', 'woocommerce' ) , - 'KZN' => __( 'KwaZulu-Natal', 'woocommerce' ) , - 'LP' => __( 'Limpopo', 'woocommerce' ) , - 'MP' => __( 'Mpumalanga', 'woocommerce' ) , - 'NC' => __( 'Northern Cape', 'woocommerce' ) , - 'NW' => __( 'North West', 'woocommerce' ) , + 'EC' => __( 'Eastern Cape', 'woocommerce' ), + 'FS' => __( 'Free State', 'woocommerce' ), + 'GP' => __( 'Gauteng', 'woocommerce' ), + 'KZN' => __( 'KwaZulu-Natal', 'woocommerce' ), + 'LP' => __( 'Limpopo', 'woocommerce' ), + 'MP' => __( 'Mpumalanga', 'woocommerce' ), + 'NC' => __( 'Northern Cape', 'woocommerce' ), + 'NW' => __( 'North West', 'woocommerce' ), 'WC' => __( 'Western Cape', 'woocommerce' ) -); \ No newline at end of file +); diff --git a/i18n/strings.php b/i18n/strings.php deleted file mode 100644 index 563ffbbe885..00000000000 --- a/i18n/strings.php +++ /dev/null @@ -1,22 +0,0 @@ -', - '<', - '&', - '(c)', - '(tm)', - '(R)', - '--', - '-', - '*', - '£', - 'EUR', // Euro sign. € ? - '', // Unknown/unhandled entities - ' ' // Runs of spaces, post-handling - ); + /** + * List of pattern replacements corresponding to patterns searched. + * + * @var array $replace + * @see $search + */ + public $plain_replace = array( + '', // Non-legal carriage return + ' ', // Non-breaking space + '"', // Double quotes + "'", // Single quotes + '>', // Greater-than + '<', // Less-than + '&', // Ampersand + '&', // Ampersand + '&', // Ampersand + '(c)', // Copyright + '(tm)', // Trademark + '(R)', // Registered + '--', // mdash + '-', // ndash + '*', // Bullet + '£', // Pound sign + 'EUR', // Euro sign. € ? + '$', // Dollar sign + '', // Unknown/unhandled entities + ' ' // Runs of spaces, post-handling + ); /** * Constructor - * - * @access public */ - function __construct() { + public function __construct() { // Init settings $this->init_form_fields(); @@ -141,35 +142,37 @@ abstract class WC_Email extends WC_Settings_API { } // Settings - $this->heading = $this->get_option( 'heading', $this->heading ); - $this->subject = $this->get_option( 'subject', $this->subject ); - $this->email_type = $this->get_option( 'email_type' ); - $this->enabled = $this->get_option( 'enabled' ); + $this->heading = $this->get_option( 'heading', $this->heading ); + $this->subject = $this->get_option( 'subject', $this->subject ); + $this->email_type = $this->get_option( 'email_type' ); + $this->enabled = $this->get_option( 'enabled' ); // Find/replace - $this->find = array( '{blogname}', '{site_title}' ); - $this->replace = array( $this->get_blogname(), $this->get_blogname() ); + $this->find['blogname'] = '{blogname}'; + $this->find['site-title'] = '{site_title}'; + + $this->replace['blogname'] = $this->get_blogname(); + $this->replace['site-title'] = $this->get_blogname(); // For multipart messages add_filter( 'phpmailer_init', array( $this, 'handle_multipart' ) ); // For default inline styles - add_filter( 'woocommerce_email_style_inline_tags', array( $this, 'style_inline_tags' ) ); - add_filter( 'woocommerce_email_style_inline_h1_tag', array( $this, 'style_inline_h1_tag' ) ); - add_filter( 'woocommerce_email_style_inline_h2_tag', array( $this, 'style_inline_h2_tag' ) ); - add_filter( 'woocommerce_email_style_inline_h3_tag', array( $this, 'style_inline_h3_tag' ) ); - add_filter( 'woocommerce_email_style_inline_a_tag', array( $this, 'style_inline_a_tag' ) ); + add_filter( 'woocommerce_email_style_inline_tags', array( $this, 'style_inline_tags' ) ); + add_filter( 'woocommerce_email_style_inline_h1_tag', array( $this, 'style_inline_h1_tag' ) ); + add_filter( 'woocommerce_email_style_inline_h2_tag', array( $this, 'style_inline_h2_tag' ) ); + add_filter( 'woocommerce_email_style_inline_h3_tag', array( $this, 'style_inline_h3_tag' ) ); + add_filter( 'woocommerce_email_style_inline_a_tag', array( $this, 'style_inline_a_tag' ) ); add_filter( 'woocommerce_email_style_inline_img_tag', array( $this, 'style_inline_img_tag' ) ); } /** * handle_multipart function. * - * @access public * @param PHPMailer $mailer * @return PHPMailer */ - function handle_multipart( $mailer ) { + public function handle_multipart( $mailer ) { if ( $this->sending && $this->get_email_type() == 'multipart' ) { @@ -184,80 +187,74 @@ abstract class WC_Email extends WC_Settings_API { /** * format_string function. * - * @access public * @param mixed $string * @return string */ - function format_string( $string ) { + public function format_string( $string ) { return str_replace( $this->find, $this->replace, $string ); } + /** * get_subject function. * - * @access public * @return string */ - function get_subject() { + public function get_subject() { return apply_filters( 'woocommerce_email_subject_' . $this->id, $this->format_string( $this->subject ), $this->object ); } /** * get_heading function. * - * @access public * @return string */ - function get_heading() { + public function get_heading() { return apply_filters( 'woocommerce_email_heading_' . $this->id, $this->format_string( $this->heading ), $this->object ); } /** * get_recipient function. * - * @access public * @return string */ - function get_recipient() { + public function get_recipient() { return apply_filters( 'woocommerce_email_recipient_' . $this->id, $this->recipient, $this->object ); } /** * get_headers function. * - * @access public * @return string */ - function get_headers() { + public function get_headers() { return apply_filters( 'woocommerce_email_headers', "Content-Type: " . $this->get_content_type() . "\r\n", $this->id, $this->object ); } /** * get_attachments function. * - * @access public - * @return string + * @return string|array */ - function get_attachments() { - return apply_filters( 'woocommerce_email_attachments', '', $this->id, $this->object ); + public function get_attachments() { + return apply_filters( 'woocommerce_email_attachments', array(), $this->id, $this->object ); } /** * get_type function. * - * @access public * @return string */ - function get_email_type() { + public function get_email_type() { return $this->email_type ? $this->email_type : 'plain'; } /** * get_content_type function. * - * @access public * @return string */ - function get_content_type() { + public function get_content_type() { + switch ( $this->get_email_type() ) { case "html" : return 'text/html'; @@ -270,22 +267,21 @@ abstract class WC_Email extends WC_Settings_API { /** * Proxy to parent's get_option and attempt to localize the result using gettext. - * @access public + * * @param string $key * @param mixed $empty_value * @return string */ - function get_option( $key, $empty_value = null ) { + public function get_option( $key, $empty_value = null ) { return __( parent::get_option( $key, $empty_value ) ); } /** * Checks if this email is enabled and will be sent. * - * @access public * @return bool */ - function is_enabled() { + public function is_enabled() { $enabled = $this->enabled == "yes" ? true : false; return apply_filters( 'woocommerce_email_enabled_' . $this->id, $enabled, $this->object ); @@ -294,20 +290,18 @@ abstract class WC_Email extends WC_Settings_API { /** * get_blogname function. * - * @access public * @return string */ - function get_blogname() { + public function get_blogname() { return wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES ); } /** * get_content function. * - * @access public * @return string */ - function get_content() { + public function get_content() { $this->sending = true; @@ -317,60 +311,61 @@ abstract class WC_Email extends WC_Settings_API { $email_content = $this->style_inline( $this->get_content_html() ); } - return $email_content; + return wordwrap( $email_content, 70 ); } /** * style_inline_tags function. * - * @access public * @param array $tags * @return array */ - function style_inline_tags($tags) { + public function style_inline_tags( $tags ) { return array_unique( array_merge( $tags, array( 'h1', 'h2', 'h3', 'a', 'img' ) ) ); } /** * style_inline_h1_tag function. - * @access public + * * @param array $styles * @return array */ - function style_inline_h1_tag($styles) { - $styles['color'] = get_option( 'woocommerce_email_text_color' ); - $styles['display'] = 'block'; - $styles['font-family'] = 'Arial'; - $styles['font-size'] = '34px'; - $styles['font-weight'] = 'bold'; - $styles['margin-top'] = '10px'; - $styles['margin-right'] = '0'; + public function style_inline_h1_tag( $styles ) { + + $styles['color'] = get_option( 'woocommerce_email_text_color' ); + $styles['display'] = 'block'; + $styles['font-family'] = 'Arial'; + $styles['font-size'] = '34px'; + $styles['font-weight'] = 'bold'; + $styles['margin-top'] = '10px'; + $styles['margin-right'] = '0'; $styles['margin-bottom'] = '10px'; - $styles['margin-left'] = '0'; - $styles['text-align'] = 'left'; - $styles['line-height'] = '150%'; + $styles['margin-left'] = '0'; + $styles['text-align'] = 'left'; + $styles['line-height'] = '150%'; return $styles; } /** * style_inline_h2_tag function. - * @access public + * * @param array $styles * @return array */ - function style_inline_h2_tag($styles) { - $styles['color'] = get_option( 'woocommerce_email_text_color' ); - $styles['display'] = 'block'; - $styles['font-family'] = 'Arial'; - $styles['font-size'] = '30px'; - $styles['font-weight'] = 'bold'; - $styles['margin-top'] = '10px'; - $styles['margin-right'] = '0'; + public function style_inline_h2_tag( $styles ) { + + $styles['color'] = get_option( 'woocommerce_email_text_color' ); + $styles['display'] = 'block'; + $styles['font-family'] = 'Arial'; + $styles['font-size'] = '30px'; + $styles['font-weight'] = 'bold'; + $styles['margin-top'] = '10px'; + $styles['margin-right'] = '0'; $styles['margin-bottom'] = '10px'; - $styles['margin-left'] = '0'; - $styles['text-align'] = 'left'; - $styles['line-height'] = '150%'; + $styles['margin-left'] = '0'; + $styles['text-align'] = 'left'; + $styles['line-height'] = '150%'; return $styles; } @@ -378,22 +373,22 @@ abstract class WC_Email extends WC_Settings_API { /** * style_inline_h3_tag function. * - * @access public * @param array $styles * @return array */ - function style_inline_h3_tag($styles) { - $styles['color'] = get_option( 'woocommerce_email_text_color' ); - $styles['display'] = 'block'; - $styles['font-family'] = 'Arial'; - $styles['font-size'] = '26px'; - $styles['font-weight'] = 'bold'; - $styles['margin-top'] = '10px'; - $styles['margin-right'] = '0'; + public function style_inline_h3_tag( $styles ) { + + $styles['color'] = get_option( 'woocommerce_email_text_color' ); + $styles['display'] = 'block'; + $styles['font-family'] = 'Arial'; + $styles['font-size'] = '26px'; + $styles['font-weight'] = 'bold'; + $styles['margin-top'] = '10px'; + $styles['margin-right'] = '0'; $styles['margin-bottom'] = '10px'; - $styles['margin-left'] = '0'; - $styles['text-align'] = 'left'; - $styles['line-height'] = '150%'; + $styles['margin-left'] = '0'; + $styles['text-align'] = 'left'; + $styles['line-height'] = '150%'; return $styles; } @@ -402,9 +397,10 @@ abstract class WC_Email extends WC_Settings_API { * @param array $styles * @return array */ - function style_inline_a_tag($styles) { - $styles['color'] = get_option( 'woocommerce_email_text_color' ); - $styles['font-weight'] = 'normal'; + public function style_inline_a_tag( $styles ) { + + $styles['color'] = get_option( 'woocommerce_email_text_color' ); + $styles['font-weight'] = 'normal'; $styles['text-decoration'] = 'underline'; return $styles; @@ -413,20 +409,20 @@ abstract class WC_Email extends WC_Settings_API { /** * style_inline_img_tag function. * - * @access public * @param array $styles * @return array */ - function style_inline_img_tag($styles) { - $styles['display'] = 'inline'; - $styles['border'] = 'none'; - $styles['font-size'] = '14px'; - $styles['font-weight'] = 'bold'; - $styles['height'] = 'auto'; - $styles['line-height'] = '100%'; - $styles['outline'] = 'none'; + public function style_inline_img_tag( $styles ) { + + $styles['display'] = 'inline'; + $styles['border'] = 'none'; + $styles['font-size'] = '14px'; + $styles['font-weight'] = 'bold'; + $styles['height'] = 'auto'; + $styles['line-height'] = '100%'; + $styles['outline'] = 'none'; $styles['text-decoration'] = 'none'; - $styles['text-transform'] = 'capitalize'; + $styles['text-transform'] = 'capitalize'; return $styles; } @@ -434,21 +430,20 @@ abstract class WC_Email extends WC_Settings_API { /** * get_style_inline_tags function. * - * @access public * @return array */ - function get_style_inline_tags() { + public function get_style_inline_tags() { return apply_filters( 'woocommerce_email_style_inline_tags', array() ); } /** * get_style_inline_for_tag function. * - * @access public * @param string $tag * @return string */ - function get_style_inline_for_tag($tag) { + public function get_style_inline_for_tag( $tag ) { + $styles = apply_filters( 'woocommerce_email_style_inline_' . $tag . '_tag', array() ); $css = array(); @@ -462,19 +457,19 @@ abstract class WC_Email extends WC_Settings_API { /** * Apply inline styles to dynamic content. * - * @access public - * @param mixed $content + * @param string|null $content * @return string */ - function style_inline( $content ) { + public function style_inline( $content ) { + if ( ! class_exists( 'DOMDocument' ) ) { return $content; } $dom = new DOMDocument(); libxml_use_internal_errors( true ); - @$dom->loadHTML( $content ); - libxml_clear_errors(); + @$dom->loadHTML( $content ); + libxml_clear_errors(); foreach( $this->get_style_inline_tags() as $tag ) { $nodes = $dom->getElementsByTagName($tag); @@ -494,162 +489,162 @@ abstract class WC_Email extends WC_Settings_API { /** * get_content_plain function. * - * @access public * @return string */ - function get_content_plain() {} + public function get_content_plain() {} /** * get_content_html function. * - * @access public * @return string */ - function get_content_html() {} + public function get_content_html() {} /** * Get from name for email. * - * @access public * @return string */ - function get_from_name() { + public function get_from_name() { return wp_specialchars_decode( esc_html( get_option( 'woocommerce_email_from_name' ) ), ENT_QUOTES ); } /** * Get from email address. * - * @access public * @return string */ - function get_from_address() { + public function get_from_address() { return sanitize_email( get_option( 'woocommerce_email_from_address' ) ); } /** * Send the email. * - * @access public - * @param mixed $to - * @param mixed $subject - * @param mixed $message + * @param string $to + * @param string $subject + * @param string $message * @param string $headers * @param string $attachments - * @return void + * @return bool */ - function send( $to, $subject, $message, $headers, $attachments ) { + public function send( $to, $subject, $message, $headers, $attachments ) { + add_filter( 'wp_mail_from', array( $this, 'get_from_address' ) ); add_filter( 'wp_mail_from_name', array( $this, 'get_from_name' ) ); add_filter( 'wp_mail_content_type', array( $this, 'get_content_type' ) ); - wp_mail( $to, $subject, $message, $headers, $attachments ); + $return = wp_mail( $to, $subject, $message, $headers, $attachments ); remove_filter( 'wp_mail_from', array( $this, 'get_from_address' ) ); remove_filter( 'wp_mail_from_name', array( $this, 'get_from_name' ) ); remove_filter( 'wp_mail_content_type', array( $this, 'get_content_type' ) ); + + return $return; } - /** - * Initialise Settings Form Fields - these are generic email options most will use. - * - * @access public - * @return void - */ - function init_form_fields() { - $this->form_fields = array( + /** + * Initialise Settings Form Fields - these are generic email options most will use. + */ + function init_form_fields() { + + $this->form_fields = array( 'enabled' => array( - 'title' => __( 'Enable/Disable', 'woocommerce' ), - 'type' => 'checkbox', - 'label' => __( 'Enable this email notification', 'woocommerce' ), - 'default' => 'yes' + 'title' => __( 'Enable/Disable', 'woocommerce' ), + 'type' => 'checkbox', + 'label' => __( 'Enable this email notification', 'woocommerce' ), + 'default' => 'yes' ), 'subject' => array( - 'title' => __( 'Email subject', 'woocommerce' ), - 'type' => 'text', - 'description' => sprintf( __( 'Defaults to %s', 'woocommerce' ), $this->subject ), - 'placeholder' => '', - 'default' => '' + 'title' => __( 'Email subject', 'woocommerce' ), + 'type' => 'text', + 'description' => sprintf( __( 'Defaults to %s', 'woocommerce' ), $this->subject ), + 'placeholder' => '', + 'default' => '' ), 'heading' => array( - 'title' => __( 'Email heading', 'woocommerce' ), - 'type' => 'text', - 'description' => sprintf( __( 'Defaults to %s', 'woocommerce' ), $this->heading ), - 'placeholder' => '', - 'default' => '' + 'title' => __( 'Email heading', 'woocommerce' ), + 'type' => 'text', + 'description' => sprintf( __( 'Defaults to %s', 'woocommerce' ), $this->heading ), + 'placeholder' => '', + 'default' => '' ), 'email_type' => array( - 'title' => __( 'Email type', 'woocommerce' ), - 'type' => 'select', - 'description' => __( 'Choose which format of email to send.', 'woocommerce' ), - 'default' => 'html', - 'class' => 'email_type', - 'options' => array( - 'plain' => __( 'Plain text', 'woocommerce' ), - 'html' => __( 'HTML', 'woocommerce' ), - 'multipart' => __( 'Multipart', 'woocommerce' ), + 'title' => __( 'Email type', 'woocommerce' ), + 'type' => 'select', + 'description' => __( 'Choose which format of email to send.', 'woocommerce' ), + 'default' => 'html', + 'class' => 'email_type', + 'options' => array( + 'plain' => __( 'Plain text', 'woocommerce' ), + 'html' => __( 'HTML', 'woocommerce' ), + 'multipart' => __( 'Multipart', 'woocommerce' ), ) ) ); - } + } /** * Admin Panel Options Processing * - Saves the options to the DB * * @since 1.0.0 - * @access public - * @return bool + * @return boolean|null */ - public function process_admin_options() { + public function process_admin_options() { - // Save regular options - parent::process_admin_options(); + // Save regular options + parent::process_admin_options(); - // Save templates + // Save templates if ( ! empty( $_POST['template_html_code'] ) && ! empty( $this->template_html ) ) { - $saved = false; - $file = get_stylesheet_directory() . '/woocommerce/' . $this->template_html; - $code = stripslashes( $_POST['template_html_code'] ); + $saved = false; + $file = get_stylesheet_directory() . '/woocommerce/' . $this->template_html; + $code = stripslashes( $_POST['template_html_code'] ); if ( is_writeable( $file ) ) { + $f = fopen( $file, 'w+' ); + if ( $f !== FALSE ) { - fwrite( $f, $code ); - fclose( $f ); - $saved = true; - } + fwrite( $f, $code ); + fclose( $f ); + $saved = true; + } } if ( ! $saved ) { - $redirect = add_query_arg( 'wc_error', urlencode( __( 'Could not write to template file.', 'woocommerce' ) ) ); - wp_redirect( $redirect ); - exit; - } + $redirect = add_query_arg( 'wc_error', urlencode( __( 'Could not write to template file.', 'woocommerce' ) ) ); + wp_redirect( $redirect ); + exit; + } } + if ( ! empty( $_POST['template_plain_code'] ) && ! empty( $this->template_plain ) ) { - $saved = false; - $file = get_stylesheet_directory() . '/woocommerce/' . $this->template_plain; - $code = stripslashes( $_POST['template_plain_code'] ); + $saved = false; + $file = get_stylesheet_directory() . '/woocommerce/' . $this->template_plain; + $code = stripslashes( $_POST['template_plain_code'] ); if ( is_writeable( $file ) ) { + $f = fopen( $file, 'w+' ); + if ( $f !== FALSE ) { - fwrite( $f, $code ); - fclose( $f ); - $saved = true; - } + fwrite( $f, $code ); + fclose( $f ); + $saved = true; + } } if ( ! $saved ) { - $redirect = add_query_arg( 'wc_error', __( 'Could not write to template file.', 'woocommerce' ) ); - wp_redirect( $redirect ); - exit; - } + $redirect = add_query_arg( 'wc_error', __( 'Could not write to template file.', 'woocommerce' ) ); + wp_redirect( $redirect ); + exit; + } } - } + } /** * Admin Options @@ -658,17 +653,18 @@ abstract class WC_Email extends WC_Settings_API { * Override this in your gateway. * * @since 1.0.0 - * @access public - * @return void */ - function admin_options() { + public function admin_options() { // Handle any actions if ( ! empty( $this->template_html ) || ! empty( $this->template_plain ) ) { if ( ! empty( $_GET['move_template'] ) && ( $template = esc_attr( basename( $_GET['move_template'] ) ) ) ) { + if ( ! empty( $this->$template ) ) { + if ( wp_mkdir_p( dirname( get_stylesheet_directory() . '/woocommerce/' . $this->$template ) ) && ! file_exists( get_stylesheet_directory() . '/woocommerce/' . $this->$template ) ) { + // Locate template file $core_file = $this->template_base . $this->$template; $template_file = apply_filters( 'woocommerce_locate_core_template', $core_file, $this->$template, $this->template_base ); @@ -681,7 +677,9 @@ abstract class WC_Email extends WC_Settings_API { } if ( ! empty( $_GET['delete_template'] ) && ( $template = esc_attr( basename( $_GET['delete_template'] ) ) ) ) { + if ( ! empty( $this->$template ) ) { + if ( file_exists( get_stylesheet_directory() . '/woocommerce/' . $this->$template ) ) { unlink( get_stylesheet_directory() . '/woocommerce/' . $this->$template ); echo '

    ' . __( 'Template file deleted from theme.', 'woocommerce' ) . '

    '; @@ -704,17 +702,19 @@ abstract class WC_Email extends WC_Settings_API {
    __( 'HTML template', 'woocommerce' ), - 'template_plain' => __( 'Plain text template', 'woocommerce' ) + 'template_html' => __( 'HTML template', 'woocommerce' ), + 'template_plain' => __( 'Plain text template', 'woocommerce' ) ); + foreach ( $templates as $template => $title ) : + if ( empty( $this->$template ) ) { continue; } - $local_file = get_stylesheet_directory() . '/woocommerce/' . $this->$template; - $core_file = $this->template_base . $this->$template; - $template_file = apply_filters( 'woocommerce_locate_core_template', $core_file, $this->$template, $this->template_base ); + $local_file = get_stylesheet_directory() . '/woocommerce/' . $this->$template; + $core_file = $this->template_base . $this->$template; + $template_file = apply_filters( 'woocommerce_locate_core_template', $core_file, $this->$template, $this->template_base ); ?>
    @@ -733,9 +733,7 @@ abstract class WC_Email extends WC_Settings_API {

    @@ -751,9 +749,7 @@ abstract class WC_Email extends WC_Settings_API {

    @@ -769,7 +765,7 @@ abstract class WC_Email extends WC_Settings_API {
    @@ -40,4 +37,4 @@ abstract class WC_Integration extends WC_Settings_API { prices_include_tax = get_option('woocommerce_prices_include_tax') == 'yes' ? true : false; + $this->tax_display_cart = get_option( 'woocommerce_tax_display_cart' ); + + $this->display_totals_ex_tax = $this->tax_display_cart == 'excl' ? true : false; + $this->display_cart_ex_tax = $this->tax_display_cart == 'excl' ? true : false; + + $this->order_type = 'simple'; + + if ( is_numeric( $order ) ) { + + $this->id = absint( $order ); + $this->post = get_post( $order ); + $this->get_order( $this->id ); + + } elseif ( $order instanceof WC_Order ) { + + $this->id = absint( $order->id ); + $this->post = $order->post; + $this->get_order( $this->id ); + + } elseif ( $order instanceof WP_Post || isset( $order->ID ) ) { + + $this->id = absint( $order->ID ); + $this->post = $order; + $this->get_order( $this->id ); + } + } + + /** + * Remove all line items (products, coupons, shipping, taxes) from the order. + * + * @param string $type Order item type. Default null. + */ + public function remove_order_items( $type = null ) { + global $wpdb; + + if ( $type ) { + $wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->prefix}woocommerce_order_itemmeta WHERE order_item_id IN ( SELECT order_item_id FROM {$wpdb->prefix}woocommerce_order_items WHERE order_id = %d AND order_item_type = %s )", $this->id, $type ) ); + $wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->prefix}woocommerce_order_items WHERE order_id = %d AND order_item_type = %s", $this->id, $type ) ); + } else { + $wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->prefix}woocommerce_order_itemmeta WHERE order_item_id IN ( SELECT order_item_id FROM {$wpdb->prefix}woocommerce_order_items WHERE order_id = %d )", $this->id ) ); + $wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->prefix}woocommerce_order_items WHERE order_id = %d", $this->id ) ); + } + } + + /** + * Set the payment method for the order + * + * @param WC_Payment_Gateway + * @param WC_Payment_Gateway $payment_method + */ + public function set_payment_method( $payment_method ) { + + if ( is_object( $payment_method ) ) { + update_post_meta( $this->id, '_payment_method', $payment_method->id ); + update_post_meta( $this->id, '_payment_method_title', $payment_method->get_title() ); + } + } + + /** + * Set the customer address + * + * @param array $address Address data + * @param string $type billing or shipping + */ + public function set_address( $address, $type = 'billing' ) { + + foreach ( $address as $key => $value ) { + update_post_meta( $this->id, "_{$type}_" . $key, $value ); + } + } + + /** + * Add a product line item to the order + * + * @since 2.2 + * @param \WC_Product $product + * @param int $qty Line item quantity + * @param array $args + * @return int|bool Item ID or false + */ + public function add_product( $product, $qty = 1, $args = array() ) { + + $default_args = array( + 'variation' => array(), + 'totals' => array() + ); + + $args = wp_parse_args( $args, $default_args ); + $item_id = wc_add_order_item( $this->id, array( + 'order_item_name' => $product->get_title(), + 'order_item_type' => 'line_item' + ) ); + + if ( ! $item_id ) { + return false; + } + + wc_add_order_item_meta( $item_id, '_qty', wc_stock_amount( $qty ) ); + wc_add_order_item_meta( $item_id, '_tax_class', $product->get_tax_class() ); + wc_add_order_item_meta( $item_id, '_product_id', $product->id ); + wc_add_order_item_meta( $item_id, '_variation_id', isset( $product->variation_id ) ? $product->variation_id : 0 ); + + // Set line item totals, either passed in or from the product + wc_add_order_item_meta( $item_id, '_line_subtotal', wc_format_decimal( isset( $args['totals']['subtotal'] ) ? $args['totals']['subtotal'] : $product->get_price_excluding_tax( $qty ) ) ); + wc_add_order_item_meta( $item_id, '_line_total', wc_format_decimal( isset( $args['totals']['total'] ) ? $args['totals']['total'] : $product->get_price_excluding_tax( $qty ) ) ); + wc_add_order_item_meta( $item_id, '_line_subtotal_tax', wc_format_decimal( isset( $args['totals']['subtotal_tax'] ) ? $args['totals']['subtotal_tax'] : 0 ) ); + wc_add_order_item_meta( $item_id, '_line_tax', wc_format_decimal( isset( $args['totals']['tax'] ) ? $args['totals']['tax'] : 0 ) ); + + // Save tax data - Since 2.2 + if ( isset( $args['totals']['tax_data'] ) ) { + + $tax_data = array(); + $tax_data['total'] = array_map( 'wc_format_decimal', $args['totals']['tax_data']['total'] ); + $tax_data['subtotal'] = array_map( 'wc_format_decimal', $args['totals']['tax_data']['subtotal'] ); + + wc_add_order_item_meta( $item_id, '_line_tax_data', $tax_data ); + } else { + wc_add_order_item_meta( $item_id, '_line_tax_data', array( 'total' => array(), 'subtotal' => array() ) ); + } + + // Add variation meta + if ( ! empty( $args['variation'] ) ) { + + foreach ( $args['variation'] as $key => $value ) { + wc_add_order_item_meta( $item_id, str_replace( 'attribute_', '', $key ), $value ); + } + } + + // Backorders + if ( $product->backorders_require_notification() && $product->is_on_backorder( $qty ) ) { + wc_add_order_item_meta( $item_id, apply_filters( 'woocommerce_backordered_item_meta_name', __( 'Backordered', 'woocommerce' ) ), $qty - max( 0, $product->get_total_stock() ) ); + } + + do_action( 'woocommerce_order_add_product', $this->id, $item_id, $product, $qty, $args ); + + return $item_id; + } + + + /** + * Update a line item for the order + * + * Note this does not update order totals + * + * @since 2.2 + * @param int $item_id order item ID + * @param array $args data to update + * @return bool + */ + public function update_product( $item_id, $product, $args ) { + + if ( ! $item_id || ! is_object( $product ) ) { + return false; + } + + // quantity + if ( isset( $args['qty'] ) ) { + wc_update_order_item_meta( $item_id, '_qty', wc_stock_amount( $args['qty'] ) ); + } + + // tax class + if ( isset( $args['tax_class'] ) ) { + wc_update_order_item_meta( $item_id, '_tax_class', $args['tax_class'] ); + } + + // set item totals, either provided or from product + if ( isset( $args['qty'] ) ) { + wc_update_order_item_meta( $item_id, '_line_subtotal', wc_format_decimal( isset( $args['totals']['subtotal'] ) ? $args['totals']['subtotal'] : $product->get_price_excluding_tax( $args['qty'] ) ) ); + wc_update_order_item_meta( $item_id, '_line_total', wc_format_decimal( isset( $args['totals']['total'] ) ? $args['totals']['total'] : $product->get_price_excluding_tax( $args['qty'] ) ) ); + } + + // set item tax totals + wc_update_order_item_meta( $item_id, '_line_subtotal_tax', wc_format_decimal( isset( $args['totals']['subtotal_tax'] ) ? $args['totals']['subtotal_tax'] : 0 ) ); + wc_update_order_item_meta( $item_id, '_line_tax', wc_format_decimal( isset( $args['totals']['tax'] ) ? $args['totals']['tax'] : 0 ) ); + + // variation meta + if ( isset( $args['variation'] ) && is_array( $args['variation'] ) ) { + + foreach ( $args['variation'] as $key => $value ) { + wc_update_order_item_meta( $item_id, str_replace( 'attribute_', '', $key ), $value ); + } + } + + // backorders + if ( isset( $args['qty'] ) && $product->backorders_require_notification() && $product->is_on_backorder( $args['qty'] ) ) { + wc_update_order_item_meta( $item_id, apply_filters( 'woocommerce_backordered_item_meta_name', __( 'Backordered', 'woocommerce' ) ), $args['qty'] - max( 0, $product->get_total_stock() ) ); + } + + do_action( 'woocommerce_order_edit_product', $this->id, $item_id, $args, $product ); + + return true; + } + + + /** + * Add coupon code to the order + * + * @param string $code + * @param integer $discount_amount + * @return int|bool Item ID or false + */ + public function add_coupon( $code, $discount_amount = 0 ) { + + $item_id = wc_add_order_item( $this->id, array( + 'order_item_name' => $code, + 'order_item_type' => 'coupon' + ) ); + + if ( ! $item_id ) { + return false; + } + + wc_add_order_item_meta( $item_id, 'discount_amount', $discount_amount ); + + do_action( 'woocommerce_order_add_coupon', $this->id, $item_id, $code, $discount_amount ); + + return $item_id; + } + + /** + * Update coupon for order + * + * Note this does not update order totals + * + * @since 2.2 + * @param int $item_id + * @param array $args + * @return bool + */ + public function update_coupon( $item_id, $args ) { + + if ( ! $item_id ) { + return false; + } + + // code + if ( isset( $args['code'] ) ) { + wc_update_order_item( $item_id, array( 'order_item_name' => $args['code'] ) ); + } + + // amount + if ( isset( $args['discount_amount'] ) ) { + wc_update_order_item_meta( $item_id, 'discount_amount', wc_format_decimal( $args['discount_amount'] ) ); + } + + do_action( 'woocommerce_order_update_coupon', $this->id, $item_id, $args ); + + return true; + } + + /** + * Add a tax row to the order + * + * @since 2.2 + * @param int tax_rate_id + * @return int|bool Item ID or false + */ + public function add_tax( $tax_rate_id, $tax_amount = 0, $shipping_tax_amount = 0 ) { + + $code = WC_Tax::get_rate_code( $tax_rate_id ); + + if ( ! $code ) { + return false; + } + + $item_id = wc_add_order_item( $this->id, array( + 'order_item_name' => $code, + 'order_item_type' => 'tax' + ) ); + + if ( ! $item_id ) { + return false; + } + + wc_add_order_item_meta( $item_id, 'rate_id', $tax_rate_id ); + wc_add_order_item_meta( $item_id, 'label', WC_Tax::get_rate_label( $tax_rate_id ) ); + wc_add_order_item_meta( $item_id, 'compound', WC_Tax::is_compound( $tax_rate_id ) ? 1 : 0 ); + wc_add_order_item_meta( $item_id, 'tax_amount', wc_format_decimal( $tax_amount ) ); + wc_add_order_item_meta( $item_id, 'shipping_tax_amount', wc_format_decimal( $shipping_tax_amount ) ); + + do_action( 'woocommerce_order_add_tax', $this->id, $item_id, $tax_rate_id, $tax_amount, $shipping_tax_amount ); + + return $item_id; + } + + /** + * Add a shipping row to the order + * + * @param WC_Shipping_Rate shipping_rate + * @return int|bool Item ID or false + */ + public function add_shipping( $shipping_rate ) { + + $item_id = wc_add_order_item( $this->id, array( + 'order_item_name' => $shipping_rate->label, + 'order_item_type' => 'shipping' + ) ); + + if ( ! $item_id ) { + return false; + } + + wc_add_order_item_meta( $item_id, 'method_id', $shipping_rate->id ); + wc_add_order_item_meta( $item_id, 'cost', wc_format_decimal( $shipping_rate->cost ) ); + + // Save shipping taxes - Since 2.2 + $taxes = array_map( 'wc_format_decimal', $shipping_rate->taxes ); + wc_add_order_item_meta( $item_id, 'taxes', $taxes ); + + do_action( 'woocommerce_order_add_shipping', $this->id, $item_id, $shipping_rate ); + + // Update total + $this->set_total( $this->order_shipping + wc_format_decimal( $shipping_rate->cost ), 'shipping' ); + + return $item_id; + } + + /** + * Update shipping method for order + * + * Note this does not update the order total + * + * @since 2.2 + * @param int $item_id + * @param array $args + * @return bool + */ + public function update_shipping( $item_id, $args ) { + + if ( ! $item_id ) { + return false; + } + + // method title + if ( isset( $args['method_title'] ) ) { + wc_update_order_item( $item_id, array( 'order_item_name' => $args['method_title'] ) ); + } + + // method ID + if ( isset( $args['method_id'] ) ) { + wc_update_order_item_meta( $item_id, 'method_id', $args['method_id'] ); + } + + // method cost + if ( isset( $args['cost'] ) ) { + wc_update_order_item_meta( $item_id, 'cost', wc_format_decimal( $args['cost'] ) ); + } + + do_action( 'woocommerce_order_update_shipping', $this->id, $item_id, $args ); + + return true; + } + + /** + * Add a fee to the order + * + * @param object $fee + * @return int|bool Item ID or false + */ + public function add_fee( $fee ) { + + $item_id = wc_add_order_item( $this->id, array( + 'order_item_name' => $fee->name, + 'order_item_type' => 'fee' + ) ); + + if ( ! $item_id ) { + return false; + } + + if ( $fee->taxable ) { + wc_add_order_item_meta( $item_id, '_tax_class', $fee->tax_class ); + } else { + wc_add_order_item_meta( $item_id, '_tax_class', '0' ); + } + + wc_add_order_item_meta( $item_id, '_line_total', wc_format_decimal( $fee->amount ) ); + wc_add_order_item_meta( $item_id, '_line_tax', wc_format_decimal( $fee->tax ) ); + + // Save tax data - Since 2.2 + $tax_data = array_map( 'wc_format_decimal', $fee->tax_data ); + wc_add_order_item_meta( $item_id, '_line_tax_data', array( 'total' => $tax_data ) ); + + do_action( 'woocommerce_order_add_fee', $this->id, $item_id, $fee ); + + return $item_id; + } + + /** + * Update fee for order + * + * Note this does not update order totals + * + * @since 2.2 + * @param int $item_id + * @param array $args + * @return bool + */ + public function update_fee( $item_id, $args ) { + + if ( ! $item_id ) { + return false; + } + + // name + if ( isset( $args['name'] ) ) { + wc_update_order_item( $item_id, array( 'order_item_name' => $args['name'] ) ); + } + + // tax class + if ( isset( $args['tax_class'] ) ) { + wc_update_order_item_meta( $item_id, '_tax_class', $args['tax_class'] ); + } + + // total + if ( isset( $args['line_total'] ) ) { + wc_update_order_item_meta( $item_id, '_line_total', wc_format_decimal( $args['line_total'] ) ); + } + + // total tax + if ( isset( $args['line_tax'] ) ) { + wc_update_order_item_meta( $item_id, '_line_tax', wc_format_decimal( $args['line_tax'] ) ); + } + + do_action( 'woocommerce_order_update_fee', $this->id, $item_id, $args ); + + return true; + } + + /** + * Set an order total + * + * @param float $amount + * @param string $total_type + */ + public function set_total( $amount, $total_type = 'total' ) { + + if ( ! in_array( $total_type, array( 'shipping', 'order_discount', 'tax', 'shipping_tax', 'total', 'cart_discount' ) ) ) { + return false; + } + + switch ( $total_type ) { + case 'total' : + $key = '_order_total'; + $amount = wc_format_decimal( $amount, get_option( 'woocommerce_price_num_decimals' ) ); + break; + case 'order_discount' : + case 'cart_discount' : + $key = '_' . $total_type; + $amount = wc_format_decimal( $amount ); + break; + default : + $key = '_order_' . $total_type; + $amount = wc_format_decimal( $amount ); + break; + } + + update_post_meta( $this->id, $key, $amount ); + } + + /** + * Calculate taxes for all line items and shipping, and store the totals and tax rows. + * + * Will use the base country unless customer addresses are set. + * + * @return bool success or fail + */ + public function calculate_taxes() { + + $shipping_tax_total = 0; + $tax_total = 0; + $taxes = array(); + $tax_based_on = get_option( 'woocommerce_tax_based_on' ); + + if ( 'base' === $tax_based_on ) { + + $default = get_option( 'woocommerce_default_country' ); + $postcode = ''; + $city = ''; + + if ( strstr( $default, ':' ) ) { + list( $country, $state ) = explode( ':', $default ); + } else { + $country = $default; + $state = ''; + } + + } elseif ( 'billing' === $tax_based_on ) { + + $country = $this->billing_country; + $state = $this->billing_state; + $postcode = $this->billing_postcode; + $city = $this->billing_city; + + } else { + + $country = $this->shipping_country; + $state = $this->shipping_state; + $postcode = $this->shipping_postcode; + $city = $this->shipping_city; + + } + + // Get items + foreach ( $this->get_items( array( 'line_item', 'fee' ) ) as $item_id => $item ) { + + $product = $this->get_product_from_item( $item ); + $line_total = isset( $item['line_total'] ) ? $item['line_total'] : 0; + $line_subtotal = isset( $item['line_subtotal'] ) ? $item['line_subtotal'] : 0; + $tax_class = $item['tax_class']; + $item_tax_status = $product ? $product->get_tax_status() : 'taxable'; + + if ( '0' !== $tax_class && 'taxable' === $item_tax_status ) { + + $tax_rates = WC_Tax::find_rates( array( + 'country' => $country, + 'state' => $state, + 'postcode' => $postcode, + 'city' => $city, + 'tax_class' => $tax_class + ) ); + + $line_subtotal_taxes = WC_Tax::calc_tax( $line_subtotal, $tax_rates, false ); + $line_taxes = WC_Tax::calc_tax( $line_total, $tax_rates, false ); + $line_subtotal_tax = max( 0, array_sum( $line_subtotal_taxes ) ); + $line_tax = max( 0, array_sum( $line_taxes ) ); + $tax_total += $line_tax; + + wc_update_order_item_meta( $item_id, '_line_subtotal_tax', wc_format_decimal( $line_subtotal_tax ) ); + wc_update_order_item_meta( $item_id, '_line_tax', wc_format_decimal( $line_tax ) ); + + // Sum the item taxes + foreach ( array_keys( $taxes + $line_taxes ) as $key ) { + $taxes[ $key ] = ( isset( $line_taxes[ $key ] ) ? $line_taxes[ $key ] : 0 ) + ( isset( $taxes[ $key ] ) ? $taxes[ $key ] : 0 ); + } + } + } + + // Now calculate shipping tax + $matched_tax_rates = array(); + $tax_rates = WC_Tax::find_rates( array( + 'country' => $country, + 'state' => $state, + 'postcode' => $postcode, + 'city' => $city, + 'tax_class' => '' + ) ); + + if ( $tax_rates ) { + foreach ( $tax_rates as $key => $rate ) { + if ( isset( $rate['shipping'] ) && 'yes' === $rate['shipping'] ) { + $matched_tax_rates[ $key ] = $rate; + } + } + } + + $shipping_taxes = WC_Tax::calc_shipping_tax( $this->order_shipping, $matched_tax_rates ); + $shipping_tax_total = WC_Tax::round( array_sum( $shipping_taxes ) ); + + // Save tax totals + $this->set_total( $shipping_tax_total, 'shipping_tax' ); + $this->set_total( $tax_total, 'tax' ); + + // Tax rows + $this->remove_order_items( 'tax' ); + + // Now merge to keep tax rows + foreach ( array_keys( $taxes + $shipping_taxes ) as $tax_rate_id ) { + $this->add_tax( $tax_rate_id, isset( $taxes[ $tax_rate_id ] ) ? $taxes[ $tax_rate_id ] : 0, isset( $shipping_taxes[ $tax_rate_id ] ) ? $shipping_taxes[ $tax_rate_id ] : 0 ); + } + + return true; + } + + + /** + * Calculate shipping total + * + * @since 2.2 + * @return float + */ + public function calculate_shipping() { + + $shipping_total = 0; + + foreach ( $this->get_shipping_methods() as $shipping ) { + $shipping_total += $shipping['cost']; + } + + $this->set_total( $shipping_total, 'shipping' ); + + return $this->get_total_shipping(); + } + + /** + * Update tax lines at order level by looking at the line item taxes themselves. + * + * @return bool success or fail + */ + public function update_taxes() { + $order_taxes = array(); + $order_shipping_taxes = array(); + + foreach ( $this->get_items( array( 'line_item', 'fee' ) ) as $item_id => $item ) { + + $line_tax_data = maybe_unserialize( $item['line_tax_data'] ); + + if ( isset( $line_tax_data['total'] ) ) { + + foreach ( $line_tax_data['total'] as $tax_rate_id => $tax ) { + + if ( ! isset( $order_taxes[ $tax_rate_id ] ) ) { + $order_taxes[ $tax_rate_id ] = 0; + } + + $order_taxes[ $tax_rate_id ] += $tax; + } + } + } + + foreach ( $this->get_items( array( 'shipping' ) ) as $item_id => $item ) { + + $line_tax_data = maybe_unserialize( $item['taxes'] ); + + if ( isset( $line_tax_data['total'] ) ) { + + foreach ( $line_tax_data['total'] as $tax_rate_id => $tax ) { + + if ( ! isset( $order_shipping_taxes[ $tax_rate_id ] ) ) { + $order_shipping_taxes[ $tax_rate_id ] = 0; + } + + $order_shipping_taxes[ $tax_rate_id ] += $tax; + } + } + } + + // Remove old existing tax rows + $this->remove_order_items( 'tax' ); + + // Now merge to keep tax rows + foreach ( array_keys( $order_taxes + $order_shipping_taxes ) as $tax_rate_id ) { + $this->add_tax( $tax_rate_id, isset( $order_taxes[ $tax_rate_id ] ) ? $order_taxes[ $tax_rate_id ] : 0, isset( $order_shipping_taxes[ $tax_rate_id ] ) ? $order_shipping_taxes[ $tax_rate_id ] : 0 ); + } + + // Save tax totals + $this->set_total( WC_Tax::round( array_sum( $order_shipping_taxes ) ), 'shipping_tax' ); + $this->set_total( WC_Tax::round( array_sum( $order_taxes ) ), 'tax' ); + + return true; + } + + /** + * Calculate totals by looking at the contents of the order. Stores the totals and returns the orders final total. + * + * @since 2.2 + * @param $and_taxes bool Calc taxes if true + * @return float calculated grand total + */ + public function calculate_totals( $and_taxes = true ) { + + $cart_subtotal = 0; + $cart_total = 0; + $fee_total = 0; + + if ( $and_taxes ) { + $this->calculate_taxes(); + } + + // line items + foreach ( $this->get_items() as $item ) { + $cart_subtotal += wc_format_decimal( isset( $item['line_subtotal'] ) ? $item['line_subtotal'] : 0 ); + $cart_total += wc_format_decimal( isset( $item['line_total'] ) ? $item['line_total'] : 0 ); + } + + $this->calculate_shipping(); + + foreach ( $this->get_fees() as $item ) { + $fee_total += $item['line_total']; + } + + $this->set_total( $cart_subtotal - $cart_total, 'cart_discount' ); + + $grand_total = round( $cart_total + $fee_total + $this->get_total_shipping() - $this->get_order_discount() + $this->get_cart_tax() + $this->get_shipping_tax(), absint( get_option( 'woocommerce_price_num_decimals' ) ) ); + + $this->set_total( $grand_total, 'total' ); + + return $grand_total; + } + + /** + * Gets an order from the database. + * + * @param int $id (default: 0) + * @return bool + */ + public function get_order( $id = 0 ) { + + if ( ! $id ) { + return false; + } + + if ( $result = get_post( $id ) ) { + $this->populate( $result ); + return true; + } + + return false; + } + + /** + * Populates an order from the loaded post data. + * + * @param mixed $result + */ + public function populate( $result ) { + + // Standard post data + $this->id = $result->ID; + $this->order_date = $result->post_date; + $this->modified_date = $result->post_modified; + $this->customer_message = $result->post_excerpt; + $this->customer_note = $result->post_excerpt; + $this->post_status = $result->post_status; + + // Billing email cam default to user if set + if ( empty( $this->billing_email ) && ! empty( $this->customer_user ) ) { + $user = get_user_by( 'id', $this->customer_user ); + $this->billing_email = $user->user_email; + } + } + + /** + * __isset function. + * + * @param mixed $key + * @return bool + */ + public function __isset( $key ) { + + if ( ! $this->id ) { + return false; + } + + return metadata_exists( 'post', $this->id, '_' . $key ); + } + + /** + * __get function. + * + * @param mixed $key + * @return mixed + */ + public function __get( $key ) { + + // Get values or default if not set + if ( 'completed_date' === $key ) { + $value = ( $value = get_post_meta( $this->id, '_completed_date', true ) ) ? $value : $this->modified_date; + } elseif ( 'user_id' === $key ) { + $value = ( $value = get_post_meta( $this->id, '_customer_user', true ) ) ? absint( $value ) : ''; + } elseif ( 'status' === $key ) { + $value = $this->get_status(); + } else { + $value = get_post_meta( $this->id, '_' . $key, true ); + } + + return $value; + } + + /** + * Return the order statuses without wc- internal prefix + * + * @return string + */ + public function get_status() { + return apply_filters( 'woocommerce_order_get_status', 'wc-' === substr( $this->post_status, 0, 3 ) ? substr( $this->post_status, 3 ) : $this->post_status, $this ); + } + + /** + * Checks the order status against a passed in status. + * + * @return bool + */ + public function has_status( $status ) { + return apply_filters( 'woocommerce_order_has_status', ( is_array( $status ) && in_array( $this->get_status(), $status ) ) || $this->get_status() === $status ? true : false, $this, $status ); + } + + /** + * Gets the user ID associated with the order. Guests are 0. + * + * @since 2.2 + * @return int|false + */ + public function get_user_id() { + return $this->customer_user ? $this->customer_user : 0; + } + + /** + * Get the user associated with the order. False for guests. + * + * @since 2.2 + * @return WP_User|false + */ + public function get_user() { + return $this->get_user_id() ? get_user_by( 'id', $this->get_user_id() ) : false; + } + + /** + * Get transaction id for the order + * + * @return string + */ + public function get_transaction_id() { + return get_post_meta( $this->id, '_transaction_id', true ); + } + + /** + * Check if an order key is valid. + * + * @param mixed $key + * @return bool + */ + public function key_is_valid( $key ) { + + if ( $key == $this->order_key ) { + return true; + } + + return false; + } + + /** + * get_order_number function. + * + * Gets the order number for display (by default, order ID) + * + * @return string + */ + public function get_order_number() { + return apply_filters( 'woocommerce_order_number', _x( '#', 'hash before order number', 'woocommerce' ) . $this->id, $this ); + } + + /** + * Get a formatted billing address for the order. + * + * @return string + */ + public function get_formatted_billing_address() { + + if ( ! $this->formatted_billing_address ) { + + // Formatted Addresses + $address = apply_filters( 'woocommerce_order_formatted_billing_address', array( + 'first_name' => $this->billing_first_name, + 'last_name' => $this->billing_last_name, + 'company' => $this->billing_company, + 'address_1' => $this->billing_address_1, + 'address_2' => $this->billing_address_2, + 'city' => $this->billing_city, + 'state' => $this->billing_state, + 'postcode' => $this->billing_postcode, + 'country' => $this->billing_country + ), $this ); + + $this->formatted_billing_address = WC()->countries->get_formatted_address( $address ); + } + + return $this->formatted_billing_address; + } + + /** + * Get the billing address in an array. + * + * @return string + */ + public function get_billing_address() { + + if ( ! $this->billing_address ) { + + // Formatted Addresses + $address = array( + 'address_1' => $this->billing_address_1, + 'address_2' => $this->billing_address_2, + 'city' => $this->billing_city, + 'state' => $this->billing_state, + 'postcode' => $this->billing_postcode, + 'country' => $this->billing_country + ); + + $joined_address = array(); + + foreach ( $address as $part ) { + + if ( ! empty( $part ) ) { + $joined_address[] = $part; + } + } + + $this->billing_address = implode( ', ', $joined_address ); + } + + return $this->billing_address; + } + + /** + * Get a formatted shipping address for the order. + * + * @return string + */ + public function get_formatted_shipping_address() { + + if ( ! $this->formatted_shipping_address ) { + + if ( $this->shipping_address_1 ) { + + // Formatted Addresses + $address = apply_filters( 'woocommerce_order_formatted_shipping_address', array( + 'first_name' => $this->shipping_first_name, + 'last_name' => $this->shipping_last_name, + 'company' => $this->shipping_company, + 'address_1' => $this->shipping_address_1, + 'address_2' => $this->shipping_address_2, + 'city' => $this->shipping_city, + 'state' => $this->shipping_state, + 'postcode' => $this->shipping_postcode, + 'country' => $this->shipping_country + ), $this ); + + $this->formatted_shipping_address = WC()->countries->get_formatted_address( $address ); + } + } + + return $this->formatted_shipping_address; + } + + /** + * Get the shipping address in an array. + * + * @return array + */ + public function get_shipping_address() { + + if ( ! $this->shipping_address ) { + + if ( $this->shipping_address_1 ) { + + // Formatted Addresses + $address = array( + 'address_1' => $this->shipping_address_1, + 'address_2' => $this->shipping_address_2, + 'city' => $this->shipping_city, + 'state' => $this->shipping_state, + 'postcode' => $this->shipping_postcode, + 'country' => $this->shipping_country + ); + + $joined_address = array(); + + foreach ( $address as $part ) { + + if ( ! empty( $part ) ) { + $joined_address[] = $part; + } + } + + $this->shipping_address = implode( ', ', $joined_address ); + } + } + + return $this->shipping_address; + } + + /** + * Return an array of items/products within this order. + * + * @param string|array $type Types of line items to get (array or string) + * @return array + */ + public function get_items( $type = '' ) { + global $wpdb; + + if ( empty( $type ) ) { + $type = array( 'line_item' ); + } + + if ( ! is_array( $type ) ) { + $type = array( $type ); + } + + $type = array_map( 'esc_attr', $type ); + + $line_items = $wpdb->get_results( $wpdb->prepare( " + SELECT order_item_id, order_item_name, order_item_type + FROM {$wpdb->prefix}woocommerce_order_items + WHERE order_id = %d + AND order_item_type IN ( '" . implode( "','", $type ) . "' ) + ORDER BY order_item_id + ", $this->id ) ); + + $items = array(); + + // Reserved meta keys + $reserved_item_meta_keys = array( + 'name', + 'type', + 'item_meta', + 'qty', + 'tax_class', + 'product_id', + 'variation_id', + 'line_subtotal', + 'line_total', + 'line_tax', + 'line_subtotal_tax' + ); + + // Loop items + foreach ( $line_items as $item ) { + + // Place line item into array to return + $items[ $item->order_item_id ]['name'] = $item->order_item_name; + $items[ $item->order_item_id ]['type'] = $item->order_item_type; + $items[ $item->order_item_id ]['item_meta'] = $this->get_item_meta( $item->order_item_id ); + + // Expand meta data into the array + foreach ( $items[ $item->order_item_id ]['item_meta'] as $name => $value ) { + + if ( in_array( $name, $reserved_item_meta_keys ) ) { + continue; + } + + if ( '_' === substr( $name, 0, 1 ) ) { + $items[ $item->order_item_id ][ substr( $name, 1 ) ] = $value[0]; + } elseif ( ! in_array( $name, $reserved_item_meta_keys ) ) { + $items[ $item->order_item_id ][ $name ] = $value[0]; + } + } + } + + return apply_filters( 'woocommerce_order_get_items', $items, $this ); + } + + /** + * Gets order total - formatted for display. + * + * @return string + */ + public function get_item_count( $type = '' ) { + + if ( empty( $type ) ) { + $type = array( 'line_item' ); + } + + if ( ! is_array( $type ) ) { + $type = array( $type ); + } + + $items = $this->get_items( $type ); + + $count = 0; + + foreach ( $items as $item ) { + + if ( ! empty( $item['qty'] ) ) { + $count += $item['qty']; + } else { + $count ++; + } + } + + return apply_filters( 'woocommerce_get_item_count', $count, $type, $this ); + } + + /** + * Return an array of fees within this order. + * + * @return array + */ + public function get_fees() { + return $this->get_items( 'fee' ); + } + + /** + * Return an array of taxes within this order. + * + * @return array + */ + public function get_taxes() { + return $this->get_items( 'tax' ); + } + + /** + * Return an array of shipping costs within this order. + * + * @return array + */ + public function get_shipping_methods() { + return $this->get_items( 'shipping' ); + } + + /** + * Check whether this order has a specific shipping method or not + * + * @param string $method_id + */ + public function has_shipping_method( $method_id ) { + + $shipping_methods = $this->get_shipping_methods(); + $has_method = false; + + if ( ! $shipping_methods ) { + return false; + } + + foreach ( $shipping_methods as $shipping_method ) { + + if ( $shipping_method['method_id'] == $method_id ) { + $has_method = true; + } + } + + return $has_method; + } + + /** + * Get taxes, merged by code, formatted ready for output. + * + * @return array + */ + public function get_tax_totals() { + + $taxes = $this->get_items( 'tax' ); + $tax_totals = array(); + + foreach ( $taxes as $key => $tax ) { + + $code = $tax[ 'name' ]; + + if ( ! isset( $tax_totals[ $code ] ) ) { + $tax_totals[ $code ] = new stdClass(); + $tax_totals[ $code ]->amount = 0; + } + + $tax_totals[ $code ]->id = $key; + $tax_totals[ $code ]->rate_id = $tax['rate_id']; + $tax_totals[ $code ]->is_compound = $tax[ 'compound' ]; + $tax_totals[ $code ]->label = isset( $tax[ 'label' ] ) ? $tax[ 'label' ] : $tax[ 'name' ]; + $tax_totals[ $code ]->amount += $tax[ 'tax_amount' ] + $tax[ 'shipping_tax_amount' ]; + $tax_totals[ $code ]->formatted_amount = wc_price( wc_round_tax_total( $tax_totals[ $code ]->amount ), array('currency' => $this->get_order_currency()) ); + } + + return apply_filters( 'woocommerce_order_tax_totals', $tax_totals, $this ); + } + + /** + * has_meta function for order items. + * + * @param string $order_item_id + * @return array of meta data + */ + public function has_meta( $order_item_id ) { + global $wpdb; + + return $wpdb->get_results( $wpdb->prepare( "SELECT meta_key, meta_value, meta_id, order_item_id + FROM {$wpdb->prefix}woocommerce_order_itemmeta WHERE order_item_id = %d + ORDER BY meta_id", absint( $order_item_id ) ), ARRAY_A ); + } + + /** + * Get order item meta. + * + * @param mixed $order_item_id + * @param string $key (default: '') + * @param bool $single (default: false) + * @return array|string + */ + public function get_item_meta( $order_item_id, $key = '', $single = false ) { + return get_metadata( 'order_item', $order_item_id, $key, $single ); + } + + /** Total Getters *******************************************************/ + + /** + * Gets the total (product) discount amount - these are applied before tax. + * + * @return float + */ + public function get_cart_discount() { + return apply_filters( 'woocommerce_order_amount_cart_discount', (double) $this->cart_discount, $this ); + } + + /** + * Gets the total (product) discount amount - these are applied before tax. + * + * @return float + */ + public function get_order_discount() { + return apply_filters( 'woocommerce_order_amount_order_discount', (double) $this->order_discount, $this ); + } + + /** + * Gets the total discount amount - both kinds + * + * @return float + */ + public function get_total_discount() { + return apply_filters( 'woocommerce_order_amount_total_discount', $this->get_cart_discount() + $this->get_order_discount(), $this ); + } + + /** + * Gets shipping tax amount. + * + * @return float + */ + public function get_cart_tax() { + return apply_filters( 'woocommerce_order_amount_cart_tax', (double) $this->order_tax, $this ); + } + + /** + * Gets shipping tax amount. + * + * @return float + */ + public function get_shipping_tax() { + return apply_filters( 'woocommerce_order_amount_shipping_tax', (double) $this->order_shipping_tax, $this ); + } + + /** + * Gets shipping and product tax. + * + * @return float + */ + public function get_total_tax() { + return apply_filters( 'woocommerce_order_amount_total_tax', wc_round_tax_total( $this->get_cart_tax() + $this->get_shipping_tax() ), $this ); + } + + /** + * Gets shipping total. + * + * @return float + */ + public function get_total_shipping() { + return apply_filters( 'woocommerce_order_amount_total_shipping', (double) $this->order_shipping, $this ); + } + + /** + * Gets order total. + * + * @return float + */ + public function get_total() { + return apply_filters( 'woocommerce_order_amount_total', (double) $this->order_total, $this ); + } + + /** + * Gets order subtotal. + * + * @return mixed|void + */ + public function get_subtotal() { + + $subtotal = 0; + + foreach ( $this->get_items() as $item ) { + $subtotal += ( isset( $item['line_subtotal'] ) ) ? $item['line_subtotal'] : 0; + } + + return apply_filters( 'woocommerce_order_amount_subtotal', (double) $subtotal, $this ); + } + + /** + * Get item subtotal - this is the cost before discount. + * + * @param mixed $item + * @param bool $inc_tax (default: false) + * @param bool $round (default: true) + * @return float + */ + public function get_item_subtotal( $item, $inc_tax = false, $round = true ) { + + if ( $inc_tax ) { + $price = ( $item['line_subtotal'] + $item['line_subtotal_tax'] ) / max( 1, $item['qty'] ); + } else { + $price = ( $item['line_subtotal'] / $item['qty'] ); + } + + $price = $round ? round( $price, 2 ) : $price; + + return apply_filters( 'woocommerce_order_amount_item_subtotal', $price, $this, $item ); + } + + /** + * Get line subtotal - this is the cost before discount. + * + * @param mixed $item + * @param bool $inc_tax (default: false) + * @param bool $round (default: true) + * @return float + */ + public function get_line_subtotal( $item, $inc_tax = false, $round = true ) { + + if ( $inc_tax ) { + $price = $item['line_subtotal'] + $item['line_subtotal_tax']; + } else { + $price = $item['line_subtotal']; + } + + $price = $round ? round( $price, 2 ) : $price; + + return apply_filters( 'woocommerce_order_amount_line_subtotal', $price, $this, $item ); + } + + /** + * Calculate item cost - useful for gateways. + * + * @param mixed $item + * @param bool $inc_tax (default: false) + * @param bool $round (default: true) + * @return float + */ + public function get_item_total( $item, $inc_tax = false, $round = true ) { + + $qty = ( ! empty( $item['qty'] ) ) ? $item['qty'] : 1; + + if ( $inc_tax ) { + $price = ( $item['line_total'] + $item['line_tax'] ) / max( 1, $qty ); + } else { + $price = $item['line_total'] / $qty; + } + + $price = $round ? round( $price, 2 ) : $price; + + return apply_filters( 'woocommerce_order_amount_item_total', $price, $this ); + } + + /** + * Calculate line total - useful for gateways. + * + * @param mixed $item + * @param bool $inc_tax (default: false) + * @return float + */ + public function get_line_total( $item, $inc_tax = false ) { + + $line_total = $inc_tax ? round( $item['line_total'] + $item['line_tax'], 2 ) : round( $item['line_total'], 2 ); + + return apply_filters( 'woocommerce_order_amount_line_total', $line_total, $this ); + } + + /** + * Calculate item tax - useful for gateways. + * + * @param mixed $item + * @param bool $round (default: true) + * @return float + */ + public function get_item_tax( $item, $round = true ) { + + $price = $item['line_tax'] / max( 1, $item['qty'] ); + $price = $round ? wc_round_tax_total( $price ) : $price; + + return apply_filters( 'woocommerce_order_amount_item_tax', $price, $item, $round, $this ); + } + + /** + * Calculate line tax - useful for gateways. + * + * @param mixed $item + * @return float + */ + public function get_line_tax( $item ) { + return apply_filters( 'woocommerce_order_amount_line_tax', wc_round_tax_total( $item['line_tax'] ), $item, $this ); + } + + /** + * Gets shipping total. + * + * @deprecated As of 2.1, use of get_total_shipping() is preferred + * @return float + */ + public function get_shipping() { + _deprecated_function( 'get_shipping', '2.1', 'get_total_shipping' ); + return $this->get_total_shipping(); + } + + /** + * get_order_total function. Alias for get_total() + * + * @deprecated As of 2.1, use of get_total() is preferred + * @return float + */ + public function get_order_total() { + _deprecated_function( 'get_order_total', '2.1', 'get_total' ); + return $this->get_total(); + } + + /** End Total Getters *******************************************************/ + + /** + * Gets formatted shipping method title. + * + * @return string + */ + public function get_shipping_method() { + + $labels = array(); + + // Backwards compat < 2.1 - get shipping title stored in meta + if ( $this->shipping_method_title ) { + + $labels[] = $this->shipping_method_title; + } else { + + // 2.1+ get line items for shipping + $shipping_methods = $this->get_shipping_methods(); + + foreach ( $shipping_methods as $shipping ) { + $labels[] = $shipping['name']; + } + } + + return apply_filters( 'woocommerce_order_shipping_method', implode( ', ', $labels ), $this ); + } + + /** + * Gets line subtotal - formatted for display. + * + * @param array $item + * @param string $tax_display + * @return string + */ + public function get_formatted_line_subtotal( $item, $tax_display = '' ) { + + if ( ! $tax_display ) { + $tax_display = $this->tax_display_cart; + } + + if ( ! isset( $item['line_subtotal'] ) || ! isset( $item['line_subtotal_tax'] ) ) { + return ''; + } + + if ( 'excl' == $tax_display ) { + $ex_tax_label = $this->prices_include_tax ? 1 : 0; + + $subtotal = wc_price( $this->get_line_subtotal( $item ), array( 'ex_tax_label' => $ex_tax_label, 'currency' => $this->get_order_currency() ) ); + } else { + $subtotal = wc_price( $this->get_line_subtotal( $item, true ), array('currency' => $this->get_order_currency()) ); + } + + return apply_filters( 'woocommerce_order_formatted_line_subtotal', $subtotal, $item, $this ); + } + + /** + * Gets order currency + * + * @return string + */ + public function get_order_currency() { + + $currency = $this->order_currency; + + return apply_filters( 'woocommerce_get_order_currency', $currency, $this ); + } + + /** + * Gets order total - formatted for display. + * + * @return string + */ + public function get_formatted_order_total() { + + $formatted_total = wc_price( $this->order_total , array('currency' => $this->get_order_currency())); + + return apply_filters( 'woocommerce_get_formatted_order_total', $formatted_total, $this ); + } + + + /** + * Gets subtotal - subtotal is shown before discounts, but with localised taxes. + * + * @param bool $compound (default: false) + * @param string $tax_display (default: the tax_display_cart value) + * @return string + */ + public function get_subtotal_to_display( $compound = false, $tax_display = '' ) { + + if ( ! $tax_display ) { + $tax_display = $this->tax_display_cart; + } + + $subtotal = 0; + + if ( ! $compound ) { + foreach ( $this->get_items() as $item ) { + + if ( ! isset( $item['line_subtotal'] ) || ! isset( $item['line_subtotal_tax'] ) ) { + return ''; + } + + $subtotal += $item['line_subtotal']; + + if ( 'incl' == $tax_display ) { + $subtotal += $item['line_subtotal_tax']; + } + } + + $subtotal = wc_price( $subtotal, array('currency' => $this->get_order_currency()) ); + + if ( $tax_display == 'excl' && $this->prices_include_tax ) { + $subtotal .= ' ' . WC()->countries->ex_tax_or_vat() . ''; + } + + } else { + + if ( 'incl' == $tax_display ) { + return ''; + } + + foreach ( $this->get_items() as $item ) { + + $subtotal += $item['line_subtotal']; + + } + + // Add Shipping Costs + $subtotal += $this->get_total_shipping(); + + // Remove non-compound taxes + foreach ( $this->get_taxes() as $tax ) { + + if ( ! empty( $tax['compound'] ) ) { + continue; + } + + $subtotal = $subtotal + $tax['tax_amount'] + $tax['shipping_tax_amount']; + + } + + // Remove discounts + $subtotal = $subtotal - $this->get_cart_discount(); + + $subtotal = wc_price( $subtotal, array('currency' => $this->get_order_currency()) ); + } + + return apply_filters( 'woocommerce_order_subtotal_to_display', $subtotal, $compound, $this ); + } + + + /** + * Gets shipping (formatted). + * + * @return string + */ + public function get_shipping_to_display( $tax_display = '' ) { + + if ( ! $tax_display ) { + $tax_display = $this->tax_display_cart; + } + + if ( $this->order_shipping > 0 ) { + + $tax_text = ''; + + if ( $tax_display == 'excl' ) { + + // Show shipping excluding tax + $shipping = wc_price( $this->order_shipping, array('currency' => $this->get_order_currency()) ); + + if ( $this->order_shipping_tax > 0 && $this->prices_include_tax ) { + $tax_text = WC()->countries->ex_tax_or_vat() . ' '; + } + + } else { + + // Show shipping including tax + $shipping = wc_price( $this->order_shipping + $this->order_shipping_tax, array('currency' => $this->get_order_currency()) ); + + if ( $this->order_shipping_tax > 0 && ! $this->prices_include_tax ) { + $tax_text = WC()->countries->inc_tax_or_vat() . ' '; + } + + } + + $shipping .= sprintf( __( ' %svia %s', 'woocommerce' ), $tax_text, $this->get_shipping_method() ); + + } elseif ( $this->get_shipping_method() ) { + $shipping = $this->get_shipping_method(); + } else { + $shipping = __( 'Free!', 'woocommerce' ); + } + + return apply_filters( 'woocommerce_order_shipping_to_display', $shipping, $this ); + } + + + /** + * Get cart discount (formatted). + * + * @return string. + */ + public function get_cart_discount_to_display() { + return apply_filters( 'woocommerce_order_cart_discount_to_display', wc_price( $this->get_cart_discount(), array( 'currency' => $this->get_order_currency() ) ), $this ); + } + + + /** + * Get cart discount (formatted). + * + * @return string + */ + public function get_order_discount_to_display() { + return apply_filters( 'woocommerce_order_discount_to_display', wc_price( $this->get_order_discount(), array( 'currency' => $this->get_order_currency() ) ), $this ); + } + + + /** + * Get a product (either product or variation). + * + * @param mixed $item + * @return WC_Product + */ + public function get_product_from_item( $item ) { + + if ( ! empty( $item['variation_id'] ) && 'product_variation' === get_post_type( $item['variation_id'] ) ) { + $_product = wc_get_product( $item['variation_id'] ); + } elseif ( ! empty( $item['product_id'] ) ) { + $_product = wc_get_product( $item['product_id'] ); + } else { + $_product = false; + } + + return apply_filters( 'woocommerce_get_product_from_item', $_product, $item, $this ); + } + + + /** + * Get totals for display on pages and in emails. + * + * @return array + */ + public function get_order_item_totals( $tax_display = '' ) { + + if ( ! $tax_display ) { + $tax_display = $this->tax_display_cart; + } + + $total_rows = array(); + + if ( $subtotal = $this->get_subtotal_to_display( false, $tax_display ) ) { + $total_rows['cart_subtotal'] = array( + 'label' => __( 'Cart Subtotal:', 'woocommerce' ), + 'value' => $subtotal + ); + } + + if ( $this->get_cart_discount() > 0 ) { + $total_rows['cart_discount'] = array( + 'label' => __( 'Cart Discount:', 'woocommerce' ), + 'value' => '-' . $this->get_cart_discount_to_display() + ); + } + + if ( $this->get_shipping_method() ) { + $total_rows['shipping'] = array( + 'label' => __( 'Shipping:', 'woocommerce' ), + 'value' => $this->get_shipping_to_display() + ); + } + + if ( $fees = $this->get_fees() ) + + foreach( $fees as $id => $fee ) { + + if ( apply_filters( 'woocommerce_get_order_item_totals_excl_free_fees', $fee['line_total'] + $fee['line_tax'] == 0, $id ) ) { + continue; + } + + if ( 'excl' == $tax_display ) { + + $total_rows[ 'fee_' . $id ] = array( + 'label' => $fee['name'] . ':', + 'value' => wc_price( $fee['line_total'], array('currency' => $this->get_order_currency()) ) + ); + + } else { + + $total_rows[ 'fee_' . $id ] = array( + 'label' => $fee['name'] . ':', + 'value' => wc_price( $fee['line_total'] + $fee['line_tax'], array('currency' => $this->get_order_currency()) ) + ); + } + } + + // Tax for tax exclusive prices + if ( 'excl' == $tax_display ) { + + if ( get_option( 'woocommerce_tax_total_display' ) == 'itemized' ) { + + foreach ( $this->get_tax_totals() as $code => $tax ) { + + $total_rows[ sanitize_title( $code ) ] = array( + 'label' => $tax->label . ':', + 'value' => $tax->formatted_amount + ); + } + + } else { + + $total_rows['tax'] = array( + 'label' => WC()->countries->tax_or_vat() . ':', + 'value' => wc_price( $this->get_total_tax(), array('currency' => $this->get_order_currency()) ) + ); + } + } + + if ( $this->get_order_discount() > 0 ) { + $total_rows['order_discount'] = array( + 'label' => __( 'Order Discount:', 'woocommerce' ), + 'value' => '-' . $this->get_order_discount_to_display() + ); + } + + if ( $this->get_total() > 0 ) { + $total_rows['payment_method'] = array( + 'label' => __( 'Payment Method:', 'woocommerce' ), + 'value' => $this->payment_method_title + ); + } + + $total_rows['order_total'] = array( + 'label' => __( 'Order Total:', 'woocommerce' ), + 'value' => $this->get_formatted_order_total() + ); + + // Tax for inclusive prices + if ( 'yes' == get_option( 'woocommerce_calc_taxes' ) && 'incl' == $tax_display ) { + + $tax_string_array = array(); + + if ( 'itemized' == get_option( 'woocommerce_tax_total_display' ) ) { + + foreach ( $this->get_tax_totals() as $code => $tax ) { + $tax_string_array[] = sprintf( '%s %s', $tax->formatted_amount, $tax->label ); + } + + } else { + $tax_string_array[] = sprintf( '%s %s', wc_price( $this->get_total_tax(), array('currency' => $this->get_order_currency()) ), WC()->countries->tax_or_vat() ); + } + + if ( ! empty( $tax_string_array ) ) { + $total_rows['order_total']['value'] .= ' ' . sprintf( __( '(Includes %s)', 'woocommerce' ), implode( ', ', $tax_string_array ) ); + } + } + + return apply_filters( 'woocommerce_get_order_item_totals', $total_rows, $this ); + } + + + /** + * Output items for display in html emails. + * + * @param bool $show_download_links (default: false) + * @param bool $show_sku (default: false) + * @param bool $show_purchase_note (default: false) + * @param bool $show_image (default: false) + * @param array $image_size (default: array( 32, 32 ) + * @param bool plain text + * @return string + */ + public function email_order_items_table( $show_download_links = false, $show_sku = false, $show_purchase_note = false, $show_image = false, $image_size = array( 32, 32 ), $plain_text = false ) { + + ob_start(); + + $template = $plain_text ? 'emails/plain/email-order-items.php' : 'emails/email-order-items.php'; + + wc_get_template( $template, array( + 'order' => $this, + 'items' => $this->get_items(), + 'show_download_links' => $show_download_links, + 'show_sku' => $show_sku, + 'show_purchase_note' => $show_purchase_note, + 'show_image' => $show_image, + 'image_size' => $image_size + ) ); + + $return = apply_filters( 'woocommerce_email_order_items_table', ob_get_clean(), $this ); + + return $return; + } + + /** + * Checks if product download is permitted + * + * @return bool + */ + public function is_download_permitted() { + return apply_filters( 'woocommerce_order_is_download_permitted', $this->has_status( 'completed' ) || ( get_option( 'woocommerce_downloads_grant_access_after_payment' ) == 'yes' && $this->has_status( 'processing' ) ), $this ); + } + + /** + * Returns true if the order contains a downloadable product. + * + * @return bool + */ + public function has_downloadable_item() { + + $has_downloadable_item = false; + + foreach ( $this->get_items() as $item ) { + + $_product = $this->get_product_from_item( $item ); + + if ( $_product && $_product->exists() && $_product->is_downloadable() && $_product->has_file() ) { + $has_downloadable_item = true; + } + + } + + return $has_downloadable_item; + } + + + /** + * Generates a URL so that a customer can pay for their (unpaid - pending) order. Pass 'true' for the checkout version which doesn't offer gateway choices. + * + * @param boolean $on_checkout + * @return string + */ + public function get_checkout_payment_url( $on_checkout = false ) { + + $pay_url = wc_get_endpoint_url( 'order-pay', $this->id, get_permalink( wc_get_page_id( 'checkout' ) ) ); + + if ( 'yes' == get_option( 'woocommerce_force_ssl_checkout' ) || is_ssl() ) { + $pay_url = str_replace( 'http:', 'https:', $pay_url ); + } + + if ( $on_checkout ) { + $pay_url = add_query_arg( 'key', $this->order_key, $pay_url ); + } else { + $pay_url = add_query_arg( array( 'pay_for_order' => 'true', 'key' => $this->order_key ), $pay_url ); + } + + return apply_filters( 'woocommerce_get_checkout_payment_url', $pay_url, $this ); + } + + + /** + * Generates a URL for the thanks page (order received) + * + * @return string + */ + public function get_checkout_order_received_url() { + + $order_received_url = wc_get_endpoint_url( 'order-received', $this->id, get_permalink( wc_get_page_id( 'checkout' ) ) ); + + if ( 'yes' == get_option( 'woocommerce_force_ssl_checkout' ) || is_ssl() ) { + $order_received_url = str_replace( 'http:', 'https:', $order_received_url ); + } + + $order_received_url = add_query_arg( 'key', $this->order_key, $order_received_url ); + + return apply_filters( 'woocommerce_get_checkout_order_received_url', $order_received_url, $this ); + } + + + /** + * Generates a URL so that a customer can cancel their (unpaid - pending) order. + * + * @return string + */ + public function get_cancel_order_url( $redirect = '' ) { + $cancel_endpoint = get_permalink( wc_get_page_id( 'cart' ) ); + if ( ! $cancel_endpoint ) { + $cancel_endpoint = home_url(); + } + + if ( false === strpos( $cancel_endpoint, '?' ) ) { + $cancel_endpoint = trailingslashit( $cancel_endpoint ); + } + + return apply_filters('woocommerce_get_cancel_order_url', wp_nonce_url( add_query_arg( array( 'cancel_order' => 'true', 'order' => $this->order_key, 'order_id' => $this->id, 'redirect' => $redirect ), $cancel_endpoint ), 'woocommerce-cancel_order' ) ); + } + + /** + * Generates a URL to view an order from the my account page + * + * @return string + */ + public function get_view_order_url() { + + $view_order_url = wc_get_endpoint_url( 'view-order', $this->id, get_permalink( wc_get_page_id( 'myaccount' ) ) ); + + return apply_filters( 'woocommerce_get_view_order_url', $view_order_url, $this ); + } + + /** + * Gets any downloadable product file urls. + * + * @deprecated as of 2.1 get_item_downloads is preferred as downloads are more than just file urls + * @param int $product_id product identifier + * @param int $variation_id variation identifier, or null + * @param array $item the item + * @return array available downloadable file urls + */ + public function get_downloadable_file_urls( $product_id, $variation_id, $item ) { + global $wpdb; + + _deprecated_function( 'get_downloadable_file_urls', '2.1', 'get_item_downloads' ); + + $download_file = $variation_id > 0 ? $variation_id : $product_id; + $_product = wc_get_product( $download_file ); + + $user_email = $this->billing_email; + + $results = $wpdb->get_results( $wpdb->prepare(" + SELECT download_id + FROM {$wpdb->prefix}woocommerce_downloadable_product_permissions + WHERE user_email = %s + AND order_key = %s + AND product_id = %s + ", $user_email, $this->order_key, $download_file ) ); + + $file_urls = array(); + + foreach ( $results as $result ) { + + if ( $_product->has_file( $result->download_id ) ) { + $file_urls[ $_product->get_file_download_path( $result->download_id ) ] = $this->get_download_url( $download_file, $result->download_id ); + } + } + + return apply_filters( 'woocommerce_get_downloadable_file_urls', $file_urls, $product_id, $variation_id, $item ); + } + + /** + * Get the downloadable files for an item in this order + * + * @param array $item + * @return array + */ + public function get_item_downloads( $item ) { + global $wpdb; + + $product_id = $item['variation_id'] > 0 ? $item['variation_id'] : $item['product_id']; + $product = wc_get_product( $product_id ); + $download_ids = $wpdb->get_col( $wpdb->prepare(" + SELECT download_id + FROM {$wpdb->prefix}woocommerce_downloadable_product_permissions + WHERE user_email = %s + AND order_key = %s + AND product_id = %s + ORDER BY permission_id + ", $this->billing_email, $this->order_key, $product_id ) ); + + $files = array(); + + foreach ( $download_ids as $download_id ) { + + if ( $product->has_file( $download_id ) ) { + $files[ $download_id ] = $product->get_file( $download_id ); + $files[ $download_id ]['download_url'] = $this->get_download_url( $product_id, $download_id ); + } + } + + return apply_filters( 'woocommerce_get_item_downloads', $files, $item, $this ); + } + + /** + * Get the Download URL + * + * @param int $product_id + * @param int $download_id + * @return string + */ + public function get_download_url( $product_id, $download_id ) { + return add_query_arg( array( + 'download_file' => $product_id, + 'order' => $this->order_key, + 'email' => urlencode( $this->billing_email ), + 'key' => $download_id + ), trailingslashit( home_url() ) ); + } + + /** + * Adds a note (comment) to the order + * + * @param string $note Note to add + * @param int $is_customer_note (default: 0) Is this a note for the customer? + * @return id Comment ID + */ + public function add_order_note( $note, $is_customer_note = 0 ) { + + $is_customer_note = intval( $is_customer_note ); + + if ( is_user_logged_in() && current_user_can( 'edit_shop_order', $this->id ) ) { + $user = get_user_by( 'id', get_current_user_id() ); + $comment_author = $user->display_name; + $comment_author_email = $user->user_email; + } else { + $comment_author = __( 'WooCommerce', 'woocommerce' ); + $comment_author_email = strtolower( __( 'WooCommerce', 'woocommerce' ) ) . '@'; + $comment_author_email .= isset( $_SERVER['HTTP_HOST'] ) ? str_replace( 'www.', '', $_SERVER['HTTP_HOST'] ) : 'noreply.com'; + $comment_author_email = sanitize_email( $comment_author_email ); + } + + $comment_post_ID = $this->id; + $comment_author_url = ''; + $comment_content = $note; + $comment_agent = 'WooCommerce'; + $comment_type = 'order_note'; + $comment_parent = 0; + $comment_approved = 1; + $commentdata = apply_filters( 'woocommerce_new_order_note_data', compact( 'comment_post_ID', 'comment_author', 'comment_author_email', 'comment_author_url', 'comment_content', 'comment_agent', 'comment_type', 'comment_parent', 'comment_approved' ), array( 'order_id' => $this->id, 'is_customer_note' => $is_customer_note ) ); + + $comment_id = wp_insert_comment( $commentdata ); + + add_comment_meta( $comment_id, 'is_customer_note', $is_customer_note ); + + if ( $is_customer_note ) { + do_action( 'woocommerce_new_customer_note', array( 'order_id' => $this->id, 'customer_note' => $note ) ); + } + + return $comment_id; + } + + /** + * Updates status of order + * + * @param string $new_status Status to change the order to. No internal wc- prefix is required. + * @param string $note (default: '') Optional note to add + */ + public function update_status( $new_status, $note = '' ) { + + if ( ! $this->id ) { + return; + } + + // Standardise status names. + $new_status = 'wc-' === substr( $new_status, 0, 3 ) ? substr( $new_status, 3 ) : $new_status; + $old_status = $this->get_status(); + + // Only update if they differ - and ensure post_status is a 'wc' status. + if ( $new_status !== $old_status || ! in_array( $this->post_status, array_keys( wc_get_order_statuses() ) ) ) { + + // Update the order + wp_update_post( array( 'ID' => $this->id, 'post_status' => 'wc-' . $new_status ) ); + $this->post_status = 'wc-' . $new_status; + + $this->add_order_note( trim( $note . ' ' . sprintf( __( 'Order status changed from %s to %s.', 'woocommerce' ), wc_get_order_status_name( $old_status ), wc_get_order_status_name( $new_status ) ) ) ); + + // Status was changed + do_action( 'woocommerce_order_status_' . $new_status, $this->id ); + do_action( 'woocommerce_order_status_' . $old_status . '_to_' . $new_status, $this->id ); + do_action( 'woocommerce_order_status_changed', $this->id, $old_status, $new_status ); + + switch ( $new_status ) { + + case 'completed' : + // Record the sales + $this->record_product_sales(); + + // Increase coupon usage counts + $this->increase_coupon_usage_counts(); + + // Record the completed date of the order + update_post_meta( $this->id, '_completed_date', current_time('mysql') ); + + // Update reports + wc_delete_shop_order_transients( $this->id ); + break; + + case 'processing' : + case 'on-hold' : + // Record the sales + $this->record_product_sales(); + + // Increase coupon usage counts + $this->increase_coupon_usage_counts(); + + // Update reports + wc_delete_shop_order_transients( $this->id ); + break; + + case 'cancelled' : + // If the order is cancelled, restore used coupons + $this->decrease_coupon_usage_counts(); + + // Update reports + wc_delete_shop_order_transients( $this->id ); + break; + } + } + } + + + /** + * Cancel the order and restore the cart (before payment) + * + * @param string $note (default: '') Optional note to add + */ + public function cancel_order( $note = '' ) { + + unset( WC()->session->order_awaiting_payment ); + + $this->update_status( 'cancelled', $note ); + } + + /** + * When a payment is complete this function is called + * + * Most of the time this should mark an order as 'processing' so that admin can process/post the items + * If the cart contains only downloadable items then the order is 'completed' since the admin needs to take no action + * Stock levels are reduced at this point + * Sales are also recorded for products + * Finally, record the date of payment + * + * @param $transaction_id string Optional transaction id to store in post meta + */ + public function payment_complete( $transaction_id = '' ) { + + do_action( 'woocommerce_pre_payment_complete', $this->id ); + + if ( ! empty( WC()->session->order_awaiting_payment ) ) { + unset( WC()->session->order_awaiting_payment ); + } + + $valid_order_statuses = apply_filters( 'woocommerce_valid_order_statuses_for_payment_complete', array( 'on-hold', 'pending', 'failed' ), $this ); + + if ( $this->id && $this->has_status( $valid_order_statuses ) ) { + + $order_needs_processing = true; + + if ( sizeof( $this->get_items() ) > 0 ) { + + foreach ( $this->get_items() as $item ) { + + if ( $item['product_id'] > 0 ) { + + $_product = $this->get_product_from_item( $item ); + + if ( false !== $_product && ! apply_filters( 'woocommerce_order_item_needs_processing', ! ( $_product->is_downloadable() && $_product->is_virtual() ), $_product, $this->id ) ) { + $order_needs_processing = false; + continue; + } + } + + $order_needs_processing = true; + break; + } + } + + $new_order_status = $order_needs_processing ? 'processing' : 'completed'; + + $new_order_status = apply_filters( 'woocommerce_payment_complete_order_status', $new_order_status, $this->id ); + + $this->update_status( $new_order_status ); + + add_post_meta( $this->id, '_paid_date', current_time('mysql'), true ); + + if ( ! empty( $transaction_id ) ) { + add_post_meta( $this->id, '_transaction_id', $transaction_id, true ); + } + + $this_order = array( + 'ID' => $this->id, + 'post_date' => current_time( 'mysql', 0 ), + 'post_date_gmt' => current_time( 'mysql', 1 ) + ); + wp_update_post( $this_order ); + + if ( apply_filters( 'woocommerce_payment_complete_reduce_order_stock', true, $this->id ) ) { + $this->reduce_order_stock(); // Payment is complete so reduce stock levels + } + + do_action( 'woocommerce_payment_complete', $this->id ); + + } else { + + do_action( 'woocommerce_payment_complete_order_status_' . $this->get_status(), $this->id ); + + } + } + + + /** + * Record sales + */ + public function record_product_sales() { + + if ( 'yes' == get_post_meta( $this->id, '_recorded_sales', true ) ) { + return; + } + + if ( sizeof( $this->get_items() ) > 0 ) { + + foreach ( $this->get_items() as $item ) { + + if ( $item['product_id'] > 0 ) { + $sales = (int) get_post_meta( $item['product_id'], 'total_sales', true ); + $sales += (int) $item['qty']; + + if ( $sales ) { + update_post_meta( $item['product_id'], 'total_sales', $sales ); + } + } + } + } + + update_post_meta( $this->id, '_recorded_sales', 'yes' ); + } + + + /** + * Get coupon codes only. + * + * @return array + */ + public function get_used_coupons() { + + $codes = array(); + $coupons = $this->get_items( 'coupon' ); + + foreach ( $coupons as $item_id => $item ) { + $codes[] = trim( $item['name'] ); + } + + return $codes; + } + + + /** + * Increase applied coupon counts + */ + public function increase_coupon_usage_counts() { + + if ( 'yes' == get_post_meta( $this->id, '_recorded_coupon_usage_counts', true ) ) { + return; + } + + if ( sizeof( $this->get_used_coupons() ) > 0 ) { + + foreach ( $this->get_used_coupons() as $code ) { + if ( ! $code ) { + continue; + } + + $coupon = new WC_Coupon( $code ); + + $used_by = $this->user_id; + + if ( ! $used_by ) { + $used_by = $this->billing_email; + } + + $coupon->inc_usage_count( $used_by ); + } + } + + update_post_meta( $this->id, '_recorded_coupon_usage_counts', 'yes' ); + } + + + /** + * Decrease applied coupon counts + */ + public function decrease_coupon_usage_counts() { + + if ( 'yes' != get_post_meta( $this->id, '_recorded_coupon_usage_counts', true ) ) { + return; + } + + if ( sizeof( $this->get_used_coupons() ) > 0 ) { + + foreach ( $this->get_used_coupons() as $code ) { + + if ( ! $code ) { + continue; + } + + $coupon = new WC_Coupon( $code ); + + $used_by = $this->user_id; + if ( ! $used_by ) { + $used_by = $this->billing_email; + } + + $coupon->dcr_usage_count( $used_by ); + } + } + + delete_post_meta( $this->id, '_recorded_coupon_usage_counts' ); + } + + + /** + * Reduce stock levels + */ + public function reduce_order_stock() { + + if ( 'yes' == get_option('woocommerce_manage_stock') && sizeof( $this->get_items() ) > 0 ) { + + // Reduce stock levels and do any other actions with products in the cart + foreach ( $this->get_items() as $item ) { + + if ( $item['product_id'] > 0 ) { + $_product = $this->get_product_from_item( $item ); + + if ( $_product && $_product->exists() && $_product->managing_stock() ) { + $qty = apply_filters( 'woocommerce_order_item_quantity', $item['qty'], $this, $item ); + $new_stock = $_product->reduce_stock( $qty ); + + $this->add_order_note( sprintf( __( 'Item #%s stock reduced from %s to %s.', 'woocommerce' ), $item['product_id'], $new_stock + $qty, $new_stock) ); + $this->send_stock_notifications( $_product, $new_stock, $item['qty'] ); + } + + } + + } + + do_action( 'woocommerce_reduce_order_stock', $this ); + + $this->add_order_note( __( 'Order item stock reduced successfully.', 'woocommerce' ) ); + } + } + + /** + * send_stock_notifications function. + * + * @param WC_Product $product + * @param int $new_stock + * @param int $qty_ordered + */ + public function send_stock_notifications( $product, $new_stock, $qty_ordered ) { + + // Backorders + if ( $new_stock < 0 ) { + do_action( 'woocommerce_product_on_backorder', array( 'product' => $product, 'order_id' => $this->id, 'quantity' => $qty_ordered ) ); + } + + // stock status notifications + $notification_sent = false; + + if ( 'yes' == get_option( 'woocommerce_notify_no_stock' ) && get_option('woocommerce_notify_no_stock_amount') >= $new_stock ) { + do_action( 'woocommerce_no_stock', $product ); + $notification_sent = true; + } + + if ( ! $notification_sent && 'yes' == get_option( 'woocommerce_notify_low_stock' ) && get_option('woocommerce_notify_low_stock_amount') >= $new_stock ) { + do_action( 'woocommerce_low_stock', $product ); + $notification_sent = true; + } + } + + + /** + * List order notes (public) for the customer + * + * @return array + */ + public function get_customer_order_notes() { + + $notes = array(); + + $args = array( + 'post_id' => $this->id, + 'approve' => 'approve', + 'type' => '' + ); + + remove_filter( 'comments_clauses', array( 'WC_Comments', 'exclude_order_comments' ) ); + + $comments = get_comments( $args ); + + foreach ( $comments as $comment ) { + + $is_customer_note = get_comment_meta( $comment->comment_ID, 'is_customer_note', true ); + $comment->comment_content = make_clickable( $comment->comment_content ); + + if ( $is_customer_note ) { + $notes[] = $comment; + } + } + + add_filter( 'comments_clauses', array( 'WC_Comments', 'exclude_order_comments' ) ); + + return (array) $notes; + + } + + /** + * Checks if an order needs payment, based on status and order total + * + * @return bool + */ + public function needs_payment() { + + $valid_order_statuses = apply_filters( 'woocommerce_valid_order_statuses_for_payment', array( 'pending', 'failed' ), $this ); + + if ( $this->has_status( $valid_order_statuses ) && $this->get_total() > 0 ) { + $needs_payment = true; + } else { + $needs_payment = false; + } + + return apply_filters( 'woocommerce_order_needs_payment', $needs_payment, $this, $valid_order_statuses ); + } + + /** + * Checks if an order needs display the shipping address, based on shipping method + * + * @return boolean + */ + public function needs_shipping_address() { + $hide = apply_filters( 'woocommerce_order_hide_shipping_address', array( 'local_pickup' ), $this ); + $needs = false; + + foreach ( $this->get_shipping_methods() as $shipping_method ) { + + if ( ! in_array( $shipping_method['method_id'], $hide ) ) { + $needs = true; + break; + } + } + + return $needs; + } + + /** + * Checks if an order can be edited, specifically for use on the Edit Order screen + * + * @access public + * @return bool + */ + public function is_editable() { + if ( ! isset( $this->editable ) ) { + $this->editable = in_array( $this->get_status(), array( 'pending', 'on-hold', 'auto-draft' ) ); + } + return apply_filters( 'wc_order_is_editable', $this->editable, $this ); + } +} diff --git a/includes/abstracts/abstract-wc-payment-gateway.php b/includes/abstracts/abstract-wc-payment-gateway.php index 8b8a6e665a2..cf5d1c252cf 100644 --- a/includes/abstracts/abstract-wc-payment-gateway.php +++ b/includes/abstracts/abstract-wc-payment-gateway.php @@ -7,53 +7,62 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly * * Extended by individual payment gateways to handle payments. * - * @class WC_Payment_Gateway - * @extends WC_Settings_API - * @version 2.1.0 - * @package WooCommerce/Abstracts - * @category Abstract Class - * @author WooThemes + * @class WC_Payment_Gateway + * @extends WC_Settings_API + * @version 2.1.0 + * @package WooCommerce/Abstracts + * @category Abstract Class + * @author WooThemes */ abstract class WC_Payment_Gateway extends WC_Settings_API { /** @var string Payment method ID. */ - var $id; + public $id; + + /** @var string Set if the place order button should be renamed on selection. */ + public $order_button_text; /** @var string Payment method title. */ - var $title; + public $title; /** @var string Chosen payment method id. */ - var $chosen; + public $chosen; /** @var bool True if the gateway shows fields on the checkout. */ - var $has_fields; + public $has_fields; /** @var array Array of countries this gateway is allowed for. */ - var $countries; + public $countries; /** @var string Available for all counties or specific. */ - var $availability; + public $availability; /** @var string 'yes' if the method is enabled. */ - var $enabled; + public $enabled; /** @var string Icon for the gateway. */ - var $icon; + public $icon; /** @var string Description for the gateway. */ - var $description; + public $description; - /** @var array Array of supported features such as 'default_credit_card_form' */ - var $supports = array( 'products' ); + /** @var array Array of supported features such as 'default_credit_card_form', 'refunds' */ + public $supports = array( 'products' ); + + /** @var int Maximum transaction amount, zero does not define a maximum */ + public $max_amount = 0; + + /** @var string Optional URL to view a transaction */ + public $view_transaction_url = ''; /** * Get the return url (thank you page) * - * @access public * @param string $order (default: '') * @return string */ public function get_return_url( $order = '' ) { + if ( $order ) { $return_url = $order->get_checkout_order_received_url(); } else { @@ -68,19 +77,65 @@ abstract class WC_Payment_Gateway extends WC_Settings_API { } /** - * Check If The Gateway Is Available For Use + * Get a link to the transaction on the 3rd party gateway size (if applicable) + * + * @param WC_Order $order the order object + * @return string transaction URL, or empty string + */ + public function get_transaction_url( $order ) { + + $return_url = ''; + $transaction_id = $order->get_transaction_id(); + + if ( ! empty( $this->view_transaction_url ) && ! empty( $transaction_id ) ) { + $return_url = sprintf( $this->view_transaction_url, $transaction_id ); + } + + return apply_filters( 'woocommerce_get_transaction_url', $return_url, $order, $this ); + } + + /** + * Get the order total in checkout and pay_for_order. + * + * @return bool + */ + protected function get_order_total() { + + $total = 0; + $order_id = absint( get_query_var( 'order-pay' ) ); + + // Gets order total from "pay for order" page. + if ( 0 < $order_id ) { + $order = wc_get_order( $order_id ); + $total = (float) $order->get_total(); + + // Gets order total from cart/checkout. + } elseif ( 0 < WC()->cart->total ) { + $total = (float) WC()->cart->total; + } + + return $total; + } + + /** + * Check if the gateway is available for use * - * @access public * @return bool */ public function is_available() { - return ( $this->enabled === "yes" ); + + $is_available = ( 'yes' === $this->enabled ) ? true : false; + + if ( WC()->cart && 0 < $this->get_order_total() && 0 < $this->max_amount && $this->max_amount < $this->get_order_total() ) { + $is_available = false; + } + + return $is_available; } /** * has_fields function. * - * @access public * @return bool */ public function has_fields() { @@ -88,9 +143,8 @@ abstract class WC_Payment_Gateway extends WC_Settings_API { } /** - * Return the gateways title + * Return the gateway's title * - * @access public * @return string */ public function get_title() { @@ -98,9 +152,8 @@ abstract class WC_Payment_Gateway extends WC_Settings_API { } /** - * Return the gateways description + * Return the gateway's description * - * @access public * @return string */ public function get_description() { @@ -110,7 +163,6 @@ abstract class WC_Payment_Gateway extends WC_Settings_API { /** * get_icon function. * - * @access public * @return string */ public function get_icon() { @@ -121,7 +173,7 @@ abstract class WC_Payment_Gateway extends WC_Settings_API { } /** - * Set As Current Gateway. + * Set as current gateway. * * Set this as the current gateway. * @@ -135,40 +187,57 @@ abstract class WC_Payment_Gateway extends WC_Settings_API { /** * Process Payment * - * Process the payment. Override this in your gateway. + * Process the payment. Override this in your gateway. When implemented, this should + * return the success and redirect in an array. e.g. + * + * return array( + * 'result' => 'success', + * 'redirect' => $this->get_return_url( $order ) + * ); * * @param int $order_id - * @access public - * @return void + * @return array */ - public function process_payment( $order_id ) {} + public function process_payment( $order_id ) { + return array(); + } /** - * Validate Frontend Fields + * Process refund + * + * If the gateway declares 'refunds' support, this will allow it to refund + * a passed in amount. + * + * @param int $order_id + * @param float $amount + * @param string $reason + * @return boolean True or false based on success, or a WP_Error object + */ + public function process_refund( $order_id, $amount = null, $reason = '' ) { + return false; + } + + /** + * Validate frontend fields * * Validate payment fields on the frontend. - * - * @access public - * @return bool */ public function validate_fields() { return true; } - /** - * If There are no payment fields show the description if set. - * Override this in your gateway if you have some. - * - * @access public - * @return void - */ - public function payment_fields() { - if ( $description = $this->get_description() ) { - echo wpautop( wptexturize( $description ) ); - } + /** + * If There are no payment fields show the description if set. + * Override this in your gateway if you have some. + */ + public function payment_fields() { - if ( $this->supports( 'default_credit_card_form' ) ) { - $this->credit_card_form(); - } - } + if ( $description = $this->get_description() ) { + echo wpautop( wptexturize( $description ) ); + } + + if ( $this->supports( 'default_credit_card_form' ) ) { + $this->credit_card_form(); + } + } /** * Check if a gateway supports a given feature. @@ -176,8 +245,7 @@ abstract class WC_Payment_Gateway extends WC_Settings_API { * Gateways should override this to declare support (or lack of support) for a feature. * For backward compatibility, gateways support 'products' by default, but nothing else. * - * @access public - * @param $feature string The name of a feature to test support for. + * @param string $feature string The name of a feature to test support for. * @return bool True if the gateway supports the feature, false otherwise. * @since 1.5.7 */ @@ -191,6 +259,7 @@ abstract class WC_Payment_Gateway extends WC_Settings_API { * @param array $args */ public function credit_card_form( $args = array(), $fields = array() ) { + wp_enqueue_script( 'wc-credit-card-form' ); $default_args = array( @@ -201,16 +270,16 @@ abstract class WC_Payment_Gateway extends WC_Settings_API { $default_fields = array( 'card-number-field' => '

    - +

    ', 'card-expiry-field' => '

    - - + +

    ', 'card-cvc-field' => '

    - - + +

    ' ); @@ -218,9 +287,11 @@ abstract class WC_Payment_Gateway extends WC_Settings_API { ?>
    id ); ?> - - - + id ); ?>
    diff --git a/includes/abstracts/abstract-wc-product.php b/includes/abstracts/abstract-wc-product.php index 696ce630dca..5825a0ac8b4 100644 --- a/includes/abstracts/abstract-wc-product.php +++ b/includes/abstracts/abstract-wc-product.php @@ -4,11 +4,11 @@ * * The WooCommerce product class handles individual product data. * - * @class WC_Product - * @version 2.1.0 - * @package WooCommerce/Abstracts - * @category Abstract Class - * @author WooThemes + * @class WC_Product + * @version 2.1.0 + * @package WooCommerce/Abstracts + * @category Abstract Class + * @author WooThemes */ class WC_Product { @@ -22,28 +22,27 @@ class WC_Product { public $product_type = null; /** - * __construct function. + * Constructor gets the post object and sets the ID for the loaded product. * - * @access public - * @param mixed $product + * @param int|WC_Product|WP_Post $product Product ID, post object, or product object */ public function __construct( $product ) { - if ( $product instanceof WP_Post ) { - $this->id = absint( $product->ID ); - $this->post = $product; + + if ( is_numeric( $product ) ) { + $this->id = absint( $product ); + $this->post = get_post( $this->id ); } elseif ( $product instanceof WC_Product ) { $this->id = absint( $product->id ); $this->post = $product; - } else { - $this->id = absint( $product ); - $this->post = get_post( $this->id ); + } elseif ( $product instanceof WP_Post || isset( $product->ID ) ) { + $this->id = absint( $product->ID ); + $this->post = $product; } } /** * __isset function. * - * @access public * @param mixed $key * @return bool */ @@ -54,8 +53,7 @@ class WC_Product { /** * __get function. * - * @access public - * @param mixed $key + * @param string $key * @return mixed */ public function __get( $key ) { @@ -89,7 +87,6 @@ class WC_Product { /** * Get the product's post data. * - * @access public * @return object */ public function get_post_data() { @@ -99,21 +96,24 @@ class WC_Product { /** * get_gallery_attachment_ids function. * - * @access public * @return array */ public function get_gallery_attachment_ids() { + if ( ! isset( $this->product_image_gallery ) ) { + // Backwards compat $attachment_ids = get_posts( 'post_parent=' . $this->id . '&numberposts=-1&post_type=attachment&orderby=menu_order&order=ASC&post_mime_type=image&fields=ids&meta_key=_woocommerce_exclude_image&meta_value=0' ); - $attachment_ids = array_diff( $attachment_ids, array( get_post_thumbnail_id() ) ); + $attachment_ids = array_diff( $attachment_ids, array( get_post_thumbnail_id( $this->id ) ) ); $this->product_image_gallery = implode( ',', $attachment_ids ); } + return apply_filters( 'woocommerce_product_gallery_attachment_ids', array_filter( (array) explode( ',', $this->product_image_gallery ) ), $this ); } /** * Wrapper for get_permalink + * * @return string */ public function get_permalink() { @@ -121,105 +121,128 @@ class WC_Product { } /** - * Get SKU (Stock-keeping unit) - product unique ID. - * - * @return string - */ - public function get_sku() { - return $this->sku; - } + * Get SKU (Stock-keeping unit) - product unique ID. + * + * @return string + */ + public function get_sku() { + return apply_filters( 'woocommerce_get_sku', $this->sku, $this ); + } - /** - * Returns number of items available for sale. - * - * @access public - * @return int - */ - public function get_stock_quantity() { - return $this->managing_stock() ? apply_filters( 'woocommerce_stock_amount', $this->stock ) : ''; - } + /** + * Returns number of items available for sale. + * + * @return int + */ + public function get_stock_quantity() { + return $this->managing_stock() ? wc_stock_amount( $this->stock ) : ''; + } - /** - * Get total stock. - * - * @access public - * @return int - */ - public function get_total_stock() { + /** + * Get total stock. + * + * @return int + */ + public function get_total_stock() { return $this->get_stock_quantity(); - } + } + + /** + * Check if the stock status needs changing + */ + protected function check_stock_status() { + + // Update stock status + if ( ! $this->backorders_allowed() && $this->get_total_stock() <= get_option( 'woocommerce_notify_no_stock_amount' ) ) { + $this->set_stock_status( 'outofstock' ); + + } elseif ( $this->backorders_allowed() || $this->get_total_stock() > get_option( 'woocommerce_notify_no_stock_amount' ) ) { + $this->set_stock_status( 'instock' ); + } + } /** * Set stock level of the product. * - * @param mixed $amount (default: null) - * @return int Stock + * Uses queries rather than update_post_meta so we can do this in one query (to avoid stock issues). + * We cannot rely on the original loaded value in case another order was made since then. + * + * @param int $amount (default: null) + * @param string $mode can be set, add, or subtract + * @return int new stock level */ - public function set_stock( $amount = null ) { - if ( is_null( $amount ) ) { - return 0; - } + public function set_stock( $amount = null, $mode = 'set' ) { + global $wpdb; - if ( $this->managing_stock() ) { + if ( ! is_null( $amount ) && $this->managing_stock() ) { - // Update stock amount - $this->stock = intval( $amount ); + // Ensure key exists + add_post_meta( $this->id, '_stock', 0, true ); - // Update meta - update_post_meta( $this->id, '_stock', $this->stock ); - - // Update stock status - if ( ! $this->backorders_allowed() && $this->get_total_stock() <= get_option( 'woocommerce_notify_no_stock_amount' ) ) { - $this->set_stock_status( 'outofstock' ); - - } elseif ( $this->backorders_allowed() || $this->get_total_stock() > get_option( 'woocommerce_notify_no_stock_amount' ) ) { - $this->set_stock_status( 'instock' ); + // Update stock in DB directly + switch ( $mode ) { + case 'add' : + $wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->postmeta} SET meta_value = meta_value + %d WHERE post_id = %d AND meta_key='_stock'", $amount, $this->id ) ); + break; + case 'subtract' : + $wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->postmeta} SET meta_value = meta_value - %d WHERE post_id = %d AND meta_key='_stock'", $amount, $this->id ) ); + break; + default : + $wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->postmeta} SET meta_value = %d WHERE post_id = %d AND meta_key='_stock'", $amount, $this->id ) ); + break; } - // Clear total stock transient - delete_transient( 'wc_product_total_stock_' . $this->id ); + // Clear caches + wp_cache_delete( $this->id, 'post_meta' ); + + // Stock status + $this->check_stock_status(); // Trigger action do_action( 'woocommerce_product_set_stock', $this ); - - return $this->get_stock_quantity(); } - return 0; + return $this->get_stock_quantity(); } /** * Reduce stock level of the product. * - * @param int $by (default: 1) Amount to reduce by. - * @return int Stock + * @param int $amount Amount to reduce by. Default: 1 + * @return int new stock level */ - public function reduce_stock( $by = 1 ) { - return $this->set_stock( $this->stock - $by ); + public function reduce_stock( $amount = 1 ) { + return $this->set_stock( $amount, 'subtract' ); } /** * Increase stock level of the product. * - * @param int $by (default: 1) Amount to increase by - * @return int Stock + * @param int $amount Amount to increase by. Default 1. + * @return int new stock level */ - public function increase_stock( $by = 1 ) { - return $this->set_stock( $this->stock + $by ); + public function increase_stock( $amount = 1 ) { + return $this->set_stock( $amount, 'add' ); } /** * set_stock_status function. * - * @access public + * @param string $status * @return void */ public function set_stock_status( $status ) { + $status = ( 'outofstock' === $status ) ? 'outofstock' : 'instock'; - if ( $this->stock_status != $status ) { - update_post_meta( $this->id, '_stock_status', $status ); + // Sanity check + if ( $this->managing_stock() ) { + if ( ! $this->backorders_allowed() && $this->get_stock_quantity() <= get_option( 'woocommerce_notify_no_stock_amount' ) ) { + $status = 'outofstock'; + } + } + if ( update_post_meta( $this->id, '_stock_status', $status ) ) { do_action( 'woocommerce_product_set_stock_status', $this->id, $status ); } } @@ -229,8 +252,7 @@ class WC_Product { * * Backwards compat with downloadable/virtual. * - * @access public - * @param mixed $type Array or string of types + * @param string $type Array or string of types * @return bool */ public function is_type( $type ) { @@ -240,7 +262,6 @@ class WC_Product { /** * Checks if a product is downloadable * - * @access public * @return bool */ public function is_downloadable() { @@ -252,7 +273,6 @@ class WC_Product { * * @since 1.6.2 * - * @access public * @param string $download_id file identifier * @return bool Whether downloadable product has a file attached. */ @@ -268,10 +288,13 @@ class WC_Product { * @return array */ public function get_files() { + $downloadable_files = array_filter( isset( $this->downloadable_files ) ? (array) maybe_unserialize( $this->downloadable_files ) : array() ); if ( $downloadable_files ) { + foreach ( $downloadable_files as $key => $file ) { + if ( ! is_array( $file ) ) { $downloadable_files[ $key ] = array( 'file' => $file, @@ -281,7 +304,7 @@ class WC_Product { // Set default name if ( empty( $file['name'] ) ) { - $downloadable_files[ $key ]['name'] = wc_get_filename_from_url( $file ); + $downloadable_files[ $key ]['name'] = wc_get_filename_from_url( $file['file'] ); } // Filter URL @@ -298,10 +321,13 @@ class WC_Product { * @param string $download_id file identifier * @return array|false if not found */ - public function get_file( $download_id ) { + public function get_file( $download_id = '' ) { + $files = $this->get_files(); - if ( isset( $files[ $download_id ] ) ) { + if ( '' === $download_id ) { + $file = sizeof( $files ) ? current( $files ) : false; + } elseif ( isset( $files[ $download_id ] ) ) { $file = $files[ $download_id ]; } else { $file = false; @@ -333,7 +359,6 @@ class WC_Product { /** * Checks if a product is virtual (has no shipping). * - * @access public * @return bool */ public function is_virtual() { @@ -343,7 +368,6 @@ class WC_Product { /** * Checks if a product needs shipping. * - * @access public * @return bool */ public function needs_shipping() { @@ -353,10 +377,10 @@ class WC_Product { /** * Check if a product is sold individually (no quantities) * - * @access public * @return bool */ public function is_sold_individually() { + $return = false; if ( 'yes' == $this->sold_individually || ( ! $this->backorders_allowed() && $this->get_stock_quantity() == 1 ) ) { @@ -369,8 +393,7 @@ class WC_Product { /** * get_children function. * - * @access public - * @return bool + * @return array */ public function get_children() { return array(); @@ -379,7 +402,6 @@ class WC_Product { /** * Returns whether or not the product has any child product. * - * @access public * @return bool */ public function has_child() { @@ -389,7 +411,6 @@ class WC_Product { /** * Returns whether or not the product post exists. * - * @access public * @return bool */ public function exists() { @@ -399,17 +420,16 @@ class WC_Product { /** * Returns whether or not the product is taxable. * - * @access public * @return bool */ public function is_taxable() { - return $this->tax_status == 'taxable' && get_option( 'woocommerce_calc_taxes' ) == 'yes' ? true : false; + $taxable = $this->tax_status == 'taxable' && get_option( 'woocommerce_calc_taxes' ) == 'yes' ? true : false; + return apply_filters( 'woocommerce_product_is_taxable', $taxable, $this ); } /** * Returns whether or not the product shipping is taxable. * - * @access public * @return bool */ public function is_shipping_taxable() { @@ -419,27 +439,24 @@ class WC_Product { /** * Get the title of the post. * - * @access public * @return string */ public function get_title() { - return apply_filters( 'woocommerce_product_title', $this->post->post_title, $this ); + return apply_filters( 'woocommerce_product_title', $this->post ? $this->post->post_title : '', $this ); } /** * Get the parent of the post. * - * @access public * @return int */ public function get_parent() { - return apply_filters('woocommerce_product_parent', $this->post->post_parent, $this); + return apply_filters( 'woocommerce_product_parent', absint( $this->post->post_parent ), $this ); } /** * Get the add to url used mainly in loops. * - * @access public * @return string */ public function add_to_cart_url() { @@ -449,7 +466,6 @@ class WC_Product { /** * Get the add to cart button text for the single page * - * @access public * @return string */ public function single_add_to_cart_text() { @@ -459,7 +475,6 @@ class WC_Product { /** * Get the add to cart button text * - * @access public * @return string */ public function add_to_cart_text() { @@ -469,71 +484,49 @@ class WC_Product { /** * Returns whether or not the product is stock managed. * - * @access public * @return bool */ public function managing_stock() { - return ( ! isset( $this->manage_stock ) || $this->manage_stock == 'no' || get_option('woocommerce_manage_stock') != 'yes' ) ? false : true; + return ( ! isset( $this->manage_stock ) || $this->manage_stock == 'no' || get_option( 'woocommerce_manage_stock' ) !== 'yes' ) ? false : true; } /** * Returns whether or not the product is in stock. * - * @access public * @return bool */ public function is_in_stock() { - if ( $this->managing_stock() ) { - - if ( $this->backorders_allowed() ) { - return true; - } else { - if ( $this->get_total_stock() <= get_option( 'woocommerce_notify_no_stock_amount' ) ) { - return false; - } else { - if ( $this->stock_status == 'instock' ) { - return true; - } else { - return false; - } - } - } + if ( $this->managing_stock() && $this->backorders_allowed() ) { + return true; + } elseif ( $this->managing_stock() && $this->get_total_stock() <= get_option( 'woocommerce_notify_no_stock_amount' ) ) { + return false; } else { - - if ( $this->stock_status == 'instock' ) { - return true; - } else { - return false; - } - + return $this->stock_status === 'instock'; } } /** * Returns whether or not the product can be backordered. * - * @access public * @return bool */ public function backorders_allowed() { - return $this->backorders == 'yes' || $this->backorders == 'notify' ? true : false; + return apply_filters( 'woocommerce_product_backorders_allowed', $this->backorders === 'yes' || $this->backorders === 'notify' ? true : false, $this->id ); } /** * Returns whether or not the product needs to notify the customer on backorder. * - * @access public * @return bool */ public function backorders_require_notification() { - return $this->managing_stock() && $this->backorders == 'notify' ? true : false; + return $this->managing_stock() && $this->backorders === 'notify' ? true : false; } /** * is_on_backorder function. * - * @access public * @param int $qty_in_cart (default: 0) * @return bool */ @@ -544,7 +537,6 @@ class WC_Product { /** * Returns whether or not the product has enough stock for the order. * - * @access public * @param mixed $quantity * @return bool */ @@ -555,64 +547,62 @@ class WC_Product { /** * Returns the availability of the product. * - * @access public * @return string */ public function get_availability() { - - $availability = $class = ""; + $availability = $class = ''; if ( $this->managing_stock() ) { - if ( $this->is_in_stock() ) { - if ( $this->get_total_stock() > get_option( 'woocommerce_notify_no_stock_amount' ) ) { + if ( $this->is_in_stock() && $this->get_total_stock() > get_option( 'woocommerce_notify_no_stock_amount' ) ) { - $format_option = get_option( 'woocommerce_stock_format' ); + switch ( get_option( 'woocommerce_stock_format' ) ) { - switch ( $format_option ) { - case 'no_amount' : - $format = __( 'In stock', 'woocommerce' ); - break; - case 'low_amount' : - $low_amount = get_option( 'woocommerce_notify_low_stock_amount' ); + case 'no_amount' : + $availability = __( 'In stock', 'woocommerce' ); + break; - $format = ( $this->get_total_stock() <= $low_amount ) ? __( 'Only %s left in stock', 'woocommerce' ) : __( 'In stock', 'woocommerce' ); - break; - default : - $format = __( '%s in stock', 'woocommerce' ); - break; - } + case 'low_amount' : + if ( $this->get_total_stock() <= get_option( 'woocommerce_notify_low_stock_amount' ) ) { + $availability = sprintf( __( 'Only %s left in stock', 'woocommerce' ), $this->get_total_stock() ); - $availability = sprintf( $format, $this->stock ); - - if ( $this->backorders_allowed() && $this->backorders_require_notification() ) { - $availability .= ' ' . __( '(backorders allowed)', 'woocommerce' ); - } - - } else { - - if ( $this->backorders_allowed() ) { - if ( $this->backorders_require_notification() ) { - $availability = __( 'Available on backorder', 'woocommerce' ); - $class = 'available-on-backorder'; + if ( $this->backorders_allowed() && $this->backorders_require_notification() ) { + $availability .= ' ' . __( '(can be backordered)', 'woocommerce' ); + } } else { $availability = __( 'In stock', 'woocommerce' ); } - } else { - $availability = __( 'Out of stock', 'woocommerce' ); - $class = 'out-of-stock'; - } + break; + default : + $availability = sprintf( __( '%s in stock', 'woocommerce' ), $this->get_total_stock() ); + + if ( $this->backorders_allowed() && $this->backorders_require_notification() ) { + $availability .= ' ' . __( '(can be backordered)', 'woocommerce' ); + } + break; } - } elseif ( $this->backorders_allowed() ) { + $class = 'in-stock'; + + } elseif ( $this->backorders_allowed() && $this->backorders_require_notification() ) { + $availability = __( 'Available on backorder', 'woocommerce' ); $class = 'available-on-backorder'; + + } elseif ( $this->backorders_allowed() ) { + + $availability = __( 'In stock', 'woocommerce' ); + $class = 'in-stock'; + } else { + $availability = __( 'Out of stock', 'woocommerce' ); $class = 'out-of-stock'; } + } elseif ( ! $this->is_in_stock() ) { + $availability = __( 'Out of stock', 'woocommerce' ); $class = 'out-of-stock'; } @@ -623,42 +613,39 @@ class WC_Product { /** * Returns whether or not the product is featured. * - * @access public * @return bool */ public function is_featured() { - return $this->featured == 'yes' ? true : false; + return $this->featured === 'yes' ? true : false; } /** - * Returns whether or not the product is visible. + * Returns whether or not the product is visible in the catalog. * - * @access public * @return bool */ public function is_visible() { - $visible = true; + // Published/private + if ( $this->post->post_status !== 'publish' && ! current_user_can( 'edit_post', $this->id ) ) { + $visible = false; + // Out of stock visibility - if ( get_option( 'woocommerce_hide_out_of_stock_items' ) == 'yes' && ! $this->is_in_stock() ) { + } elseif ( 'yes' === get_option( 'woocommerce_hide_out_of_stock_items' ) && ! $this->is_in_stock() ) { $visible = false; // visibility setting - } elseif ( $this->visibility == 'hidden' ) { + } elseif ( 'hidden' === $this->visibility ) { $visible = false; - } elseif ( $this->visibility == 'visible' ) { + } elseif ( 'visible' === $this->visibility ) { $visible = true; // Visibility in loop - } elseif ( $this->visibility == 'search' && is_search() ) { - $visible = true; - } elseif ( $this->visibility == 'search' && ! is_search() ) { - $visible = false; - } elseif ( $this->visibility == 'catalog' && is_search() ) { - $visible = false; - } elseif ( $this->visibility == 'catalog' && ! is_search() ) { - $visible = true; + } elseif ( is_search() ) { + $visible = 'search' === $this->visibility; + } else { + $visible = 'catalog' === $this->visibility; } return apply_filters( 'woocommerce_product_is_visible', $visible, $this->id ); @@ -667,7 +654,6 @@ class WC_Product { /** * Returns whether or not the product is on sale. * - * @access public * @return bool */ public function is_on_sale() { @@ -677,7 +663,6 @@ class WC_Product { /** * Returns the product's weight. * - * @access public * @return string */ public function get_weight() { @@ -687,8 +672,7 @@ class WC_Product { /** * Returns false if the product cannot be bought. * - * @access public - * @return cool + * @return bool */ public function is_purchasable() { @@ -713,7 +697,6 @@ class WC_Product { /** * Set a products price dynamically. * - * @access public * @param float $price Price to set. * @return void */ @@ -724,7 +707,6 @@ class WC_Product { /** * Adjust a products price dynamically. * - * @access public * @param mixed $price * @return void */ @@ -762,12 +744,10 @@ class WC_Product { /** * Returns the price (including tax). Uses customer tax rates. Can work for a specific $qty for more accurate taxes. * - * @access public * @param string $price to calculdate, left blank to just use get_price() * @return string */ public function get_price_including_tax( $qty = 1, $price = '' ) { - $_tax = new WC_Tax(); if ( ! $price ) { $price = $this->get_price(); @@ -775,29 +755,29 @@ class WC_Product { if ( $this->is_taxable() ) { - if ( get_option('woocommerce_prices_include_tax') == 'no' ) { + if ( get_option('woocommerce_prices_include_tax') === 'no' ) { - $tax_rates = $_tax->get_rates( $this->get_tax_class() ); - $taxes = $_tax->calc_tax( $price * $qty, $tax_rates, false ); - $tax_amount = $_tax->get_tax_total( $taxes ); + $tax_rates = WC_Tax::get_rates( $this->get_tax_class() ); + $taxes = WC_Tax::calc_tax( $price * $qty, $tax_rates, false ); + $tax_amount = WC_Tax::get_tax_total( $taxes ); $price = round( $price * $qty + $tax_amount, absint( get_option( 'woocommerce_price_num_decimals' ) ) ); } else { - $tax_rates = $_tax->get_rates( $this->get_tax_class() ); - $base_tax_rates = $_tax->get_shop_base_rate( $this->tax_class ); + $tax_rates = WC_Tax::get_rates( $this->get_tax_class() ); + $base_tax_rates = WC_Tax::get_shop_base_rate( $this->tax_class ); if ( ! empty( WC()->customer ) && WC()->customer->is_vat_exempt() ) { - $base_taxes = $_tax->calc_tax( $price * $qty, $base_tax_rates, true ); - $base_tax_amount = array_sum( $base_taxes ); - $price = round( $price * $qty - $base_tax_amount, absint( get_option( 'woocommerce_price_num_decimals' ) ) ); + $base_taxes = WC_Tax::calc_tax( $price * $qty, $base_tax_rates, true ); + $base_tax_amount = array_sum( $base_taxes ); + $price = round( $price * $qty - $base_tax_amount, absint( get_option( 'woocommerce_price_num_decimals' ) ) ); } elseif ( $tax_rates !== $base_tax_rates ) { - $base_taxes = $_tax->calc_tax( $price * $qty, $base_tax_rates, true ); - $modded_taxes = $_tax->calc_tax( ( $price * $qty ) - array_sum( $base_taxes ), $tax_rates, false ); - $price = round( ( $price * $qty ) - array_sum( $base_taxes ) + array_sum( $modded_taxes ), absint( get_option( 'woocommerce_price_num_decimals' ) ) ); + $base_taxes = WC_Tax::calc_tax( $price * $qty, $base_tax_rates, true ); + $modded_taxes = WC_Tax::calc_tax( ( $price * $qty ) - array_sum( $base_taxes ), $tax_rates, false ); + $price = round( ( $price * $qty ) - array_sum( $base_taxes ) + array_sum( $modded_taxes ), absint( get_option( 'woocommerce_price_num_decimals' ) ) ); } else { @@ -818,7 +798,6 @@ class WC_Product { * Returns the price (excluding tax) - ignores tax_class filters since the price may *include* tax and thus needs subtracting. * Uses store base tax rates. Can work for a specific $qty for more accurate taxes. * - * @access public * @param string $price to calculdate, left blank to just use get_price() * @return string */ @@ -828,13 +807,10 @@ class WC_Product { $price = $this->get_price(); } - if ( $this->is_taxable() && get_option('woocommerce_prices_include_tax') == 'yes' ) { - - $_tax = new WC_Tax(); - $tax_rates = $_tax->get_shop_base_rate( $this->tax_class ); - $taxes = $_tax->calc_tax( $price * $qty, $tax_rates, true ); - $price = $_tax->round( $price * $qty - array_sum( $taxes ) ); - + if ( $this->is_taxable() && get_option('woocommerce_prices_include_tax') === 'yes' ) { + $tax_rates = WC_Tax::get_shop_base_rate( $this->tax_class ); + $taxes = WC_Tax::calc_tax( $price * $qty, $tax_rates, true ); + $price = WC_Tax::round( $price * $qty - array_sum( $taxes ) ); } else { $price = $price * $qty; } @@ -844,12 +820,15 @@ class WC_Product { /** * Get the suffix to display after prices > 0 + * * @return string */ public function get_price_suffix() { + $price_display_suffix = get_option( 'woocommerce_price_display_suffix' ); if ( $price_display_suffix ) { + $price_display_suffix = ' ' . $price_display_suffix . ''; $find = array( @@ -871,7 +850,6 @@ class WC_Product { /** * Returns the price in html format. * - * @access public * @param string $price (default: '') * @return string */ @@ -924,7 +902,7 @@ class WC_Product { /** * Functions for getting parts of a price, in html, used by get_price_html. - * + * * @return string */ public function get_price_html_from_text() { @@ -934,7 +912,7 @@ class WC_Product { /** * Functions for getting parts of a price, in html, used by get_price_html. * - * @param mixed $from String or float to wrap with 'from' text + * @param string $from String or float to wrap with 'from' text * @param mixed $to String or float to wrap with 'to' text * @return string */ @@ -945,7 +923,6 @@ class WC_Product { /** * Returns the tax class. * - * @access public * @return string */ public function get_tax_class() { @@ -955,7 +932,6 @@ class WC_Product { /** * Returns the tax status. * - * @access public * @return string */ public function get_tax_status() { @@ -965,10 +941,10 @@ class WC_Product { /** * get_average_rating function. * - * @access public * @return string */ public function get_average_rating() { + if ( false === ( $average_rating = get_transient( 'wc_average_rating_' . $this->id ) ) ) { global $wpdb; @@ -988,10 +964,9 @@ class WC_Product { ", $this->id ) ); $average_rating = number_format( $ratings / $count, 2 ); - } - set_transient( 'wc_average_rating_' . $this->id, $average_rating ); + set_transient( 'wc_average_rating_' . $this->id, $average_rating, YEAR_IN_SECONDS ); } return $average_rating; @@ -1000,24 +975,30 @@ class WC_Product { /** * get_rating_count function. * - * @access public + * @param int $value Optional. Rating value to get the count for. By default + * returns the count of all rating values. * @return int */ - public function get_rating_count() { - if ( false === ( $count = get_transient( 'wc_rating_count_' . $this->id ) ) ) { + public function get_rating_count( $value = null ) { + + $value = intval( $value ); + $value_suffix = $value ? '_' . $value : ''; + + if ( false === ( $count = get_transient( 'wc_rating_count_' . $this->id . $value_suffix ) ) ) { global $wpdb; + $where_meta_value = $value ? $wpdb->prepare( " AND meta_value = %d", $value ) : " AND meta_value > 0"; + $count = $wpdb->get_var( $wpdb->prepare(" SELECT COUNT(meta_value) FROM $wpdb->commentmeta LEFT JOIN $wpdb->comments ON $wpdb->commentmeta.comment_id = $wpdb->comments.comment_ID WHERE meta_key = 'rating' AND comment_post_ID = %d AND comment_approved = '1' - AND meta_value > 0 - ", $this->id ) ); + ", $this->id ) . $where_meta_value ); - set_transient( 'wc_rating_count_' . $this->id, $count ); + set_transient( 'wc_rating_count_' . $this->id . $value_suffix, $count, YEAR_IN_SECONDS ); } return $count; @@ -1026,7 +1007,6 @@ class WC_Product { /** * Returns the product rating in html format. * - * @access public * @param string $rating (default: '') * @return string */ @@ -1054,7 +1034,6 @@ class WC_Product { /** * Returns the upsell product ids. * - * @access public * @return array */ public function get_upsells() { @@ -1064,7 +1043,6 @@ class WC_Product { /** * Returns the cross sell product ids. * - * @access public * @return array */ public function get_cross_sells() { @@ -1074,7 +1052,6 @@ class WC_Product { /** * Returns the product categories. * - * @access public * @param string $sep (default: ') * @param mixed ' * @param string $before (default: '') @@ -1088,7 +1065,6 @@ class WC_Product { /** * Returns the product tags. * - * @access public * @param string $sep (default: ', ') * @param string $before (default: '') * @param string $after (default: '') @@ -1101,11 +1077,12 @@ class WC_Product { /** * Returns the product shipping class. * - * @access public * @return string */ public function get_shipping_class() { + if ( ! $this->shipping_class ) { + $classes = get_the_terms( $this->id, 'product_shipping_class' ); if ( $classes && ! is_wp_error( $classes ) ) { @@ -1115,17 +1092,19 @@ class WC_Product { } } + return $this->shipping_class; } /** * Returns the product shipping class ID. * - * @access public * @return int */ public function get_shipping_class_id() { + if ( ! $this->shipping_class_id ) { + $classes = get_the_terms( $this->id, 'product_shipping_class' ); if ( $classes && ! is_wp_error( $classes ) ) { @@ -1134,13 +1113,13 @@ class WC_Product { $this->shipping_class_id = 0; } } + return absint( $this->shipping_class_id ); } /** * Get and return related products. * - * @access public * @param int $limit (default: 5) * @return array Array of post IDs */ @@ -1152,12 +1131,16 @@ class WC_Product { $cats_array = array(0); // Get tags - $terms = wp_get_post_terms($this->id, 'product_tag'); - foreach ( $terms as $term ) $tags_array[] = $term->term_id; + $terms = wp_get_post_terms( $this->id, 'product_tag' ); + foreach ( $terms as $term ) { + $tags_array[] = $term->term_id; + } // Get categories - $terms = wp_get_post_terms($this->id, 'product_cat'); - foreach ( $terms as $term ) $cats_array[] = $term->term_id; + $terms = wp_get_post_terms( $this->id, 'product_cat' ); + foreach ( $terms as $term ) { + $cats_array[] = $term->term_id; + } // Don't bother if none are set if ( sizeof( $cats_array ) == 1 && sizeof( $tags_array ) == 1 ) { @@ -1170,13 +1153,13 @@ class WC_Product { $exclude_ids = array_map( 'absint', array_merge( array( 0, $this->id ), $this->get_upsells() ) ); // Generate query - $query['fields'] = "SELECT ID FROM {$wpdb->posts} p"; + $query['fields'] = "SELECT DISTINCT ID FROM {$wpdb->posts} p"; $query['join'] = " INNER JOIN {$wpdb->postmeta} pm ON ( pm.post_id = p.ID AND pm.meta_key='_visibility' )"; $query['join'] .= " INNER JOIN {$wpdb->term_relationships} tr ON (p.ID = tr.object_id)"; $query['join'] .= " INNER JOIN {$wpdb->term_taxonomy} tt ON (tr.term_taxonomy_id = tt.term_taxonomy_id)"; $query['join'] .= " INNER JOIN {$wpdb->terms} t ON (t.term_id = tt.term_id)"; - if ( get_option( 'woocommerce_hide_out_of_stock_items' ) == 'yes' ) { + if ( get_option( 'woocommerce_hide_out_of_stock_items' ) === 'yes' ) { $query['join'] .= " INNER JOIN {$wpdb->postmeta} pm2 ON ( pm2.post_id = p.ID AND pm2.meta_key='_stock_status' )"; } @@ -1186,26 +1169,28 @@ class WC_Product { $query['where'] .= " AND p.ID NOT IN ( " . implode( ',', $exclude_ids ) . " )"; $query['where'] .= " AND pm.meta_value IN ( 'visible', 'catalog' )"; - if ( get_option( 'woocommerce_hide_out_of_stock_items' ) == 'yes' ) { + if ( get_option( 'woocommerce_hide_out_of_stock_items' ) === 'yes' ) { $query['where'] .= " AND pm2.meta_value = 'instock'"; } - if ( apply_filters( 'woocommerce_product_related_posts_relate_by_category', true ) ) { + if ( apply_filters( 'woocommerce_product_related_posts_relate_by_category', true, $this->id ) ) { $query['where'] .= " AND ( tt.taxonomy = 'product_cat' AND t.term_id IN ( " . implode( ',', $cats_array ) . " ) )"; $andor = 'OR'; } else { $andor = 'AND'; } - if ( apply_filters( 'woocommerce_product_related_posts_relate_by_tag', true ) ) { - $query['where'] .= " {$andor} ( tt.taxonomy = 'product_tag' AND t.term_id IN ( " . implode( ',', $tags_array ) . " ) )"; + // when query is OR - need to check against excluded ids again + if ( apply_filters( 'woocommerce_product_related_posts_relate_by_tag', true, $this->id ) ) { + $query['where'] .= " {$andor} ( ( tt.taxonomy = 'product_tag' AND t.term_id IN ( " . implode( ',', $tags_array ) . " ) )"; + $query['where'] .= " AND p.ID NOT IN ( " . implode( ',', $exclude_ids ) . " ) )"; } $query['orderby'] = " ORDER BY RAND()"; $query['limits'] = " LIMIT " . absint( $limit ) . " "; // Get the posts - $related_posts = $wpdb->get_col( implode( ' ', apply_filters('woocommerce_product_related_posts_query', $query ) ) ); + $related_posts = $wpdb->get_col( implode( ' ', apply_filters( 'woocommerce_product_related_posts_query', $query, $this->id ) ) ); return $related_posts; } @@ -1213,11 +1198,11 @@ class WC_Product { /** * Returns a single product attribute. * - * @access public * @param mixed $attr * @return string */ public function get_attribute( $attr ) { + $attributes = $this->get_attributes(); $attr = sanitize_title( $attr ); @@ -1233,7 +1218,6 @@ class WC_Product { } else { return $attribute['value']; - } } @@ -1244,7 +1228,6 @@ class WC_Product { /** * Returns product attributes. * - * @access public * @return array */ public function get_attributes() { @@ -1254,23 +1237,26 @@ class WC_Product { /** * Returns whether or not the product has any attributes set. * - * @access public - * @return mixed + * @return boolean */ public function has_attributes() { + if ( sizeof( $this->get_attributes() ) > 0 ) { + foreach ( $this->get_attributes() as $attribute ) { - if ( isset( $attribute['is_visible'] ) && $attribute['is_visible'] ) + + if ( isset( $attribute['is_visible'] ) && $attribute['is_visible'] ) { return true; + } } } + return false; } /** * Returns whether or not we are showing dimensions on the product page. * - * @access public * @return bool */ public function enable_dimensions_display() { @@ -1280,7 +1266,6 @@ class WC_Product { /** * Returns whether or not the product has dimensions set. * - * @access public * @return bool */ public function has_dimensions() { @@ -1290,7 +1275,6 @@ class WC_Product { /** * Returns whether or not the product has weight set. * - * @access public * @return bool */ public function has_weight() { @@ -1300,10 +1284,10 @@ class WC_Product { /** * Returns dimensions. * - * @access public * @return string */ public function get_dimensions() { + if ( ! $this->dimensions ) { $dimensions = array(); @@ -1326,14 +1310,12 @@ class WC_Product { } } + return $this->dimensions; } /** * Lists a table of attributes for the product page. - * - * @access public - * @return void */ public function list_attributes() { wc_get_template( 'single-product/product-attributes.php', array( @@ -1341,15 +1323,32 @@ class WC_Product { ) ); } - /** - * Returns the main product image - * - * @access public - * @param string $size (default: 'shop_thumbnail') - * @return string - */ - public function get_image( $size = 'shop_thumbnail', $attr = array() ) { - $image = ''; + /** + * Gets the main product image ID. + * + * @return int + */ + public function get_image_id() { + + if ( has_post_thumbnail( $this->id ) ) { + $image_id = get_post_thumbnail_id( $this->id ); + } elseif ( ( $parent_id = wp_get_post_parent_id( $this->id ) ) && has_post_thumbnail( $parent_id ) ) { + $image_id = get_post_thumbnail_id( $parent_id ); + } else { + $image_id = 0; + } + + return $image_id; + } + + /** + * Returns the main product image + * + * @param string $size (default: 'shop_thumbnail') + * @return string + */ + public function get_image( $size = 'shop_thumbnail', $attr = array() ) { + $image = ''; if ( has_post_thumbnail( $this->id ) ) { $image = get_the_post_thumbnail( $this->id, $size, $attr ); @@ -1360,13 +1359,11 @@ class WC_Product { } return $image; - } + } /** * Get product name with SKU or ID. Used within admin. * - * @access public - * @param mixed $product * @return string Formatted product name */ public function get_formatted_name() { diff --git a/includes/abstracts/abstract-wc-session.php b/includes/abstracts/abstract-wc-session.php index 56c2d1add4d..855dbbda0f9 100644 --- a/includes/abstracts/abstract-wc-session.php +++ b/includes/abstracts/abstract-wc-session.php @@ -2,95 +2,90 @@ /** * Handle data for the current customers session. * - * @class WC_Session - * @version 2.0.0 - * @package WooCommerce/Abstracts - * @category Abstract Class - * @author WooThemes + * @class WC_Session + * @version 2.0.0 + * @package WooCommerce/Abstracts + * @category Abstract Class + * @author WooThemes */ abstract class WC_Session { /** @var int $_customer_id */ protected $_customer_id; - /** @var array $_data */ - protected $_data = array(); + /** @var array $_data */ + protected $_data = array(); - /** @var bool $_dirty When something changes */ - protected $_dirty = false; + /** @var bool $_dirty When something changes */ + protected $_dirty = false; - /** - * __get function. - * - * @access public - * @param mixed $key - * @return mixed - */ - public function __get( $key ) { - return $this->get( $key ); - } + /** + * __get function. + * + * @param mixed $key + * @return mixed + */ + public function __get( $key ) { + return $this->get( $key ); + } - /** - * __set function. - * - * @access public - * @param mixed $key - * @param mixed $value - * @return void - */ - public function __set( $key, $value ) { - $this->set( $key, $value ); - } + /** + * __set function. + * + * @param mixed $key + * @param mixed $value + */ + public function __set( $key, $value ) { + $this->set( $key, $value ); + } - /** - * __isset function. - * - * @access public - * @param mixed $key - * @return bool - */ - public function __isset( $key ) { - return isset( $this->_data[ sanitize_title( $key ) ] ); - } + /** + * __isset function. + * + * @param mixed $key + * @return bool + */ + public function __isset( $key ) { + return isset( $this->_data[ sanitize_title( $key ) ] ); + } - /** - * __unset function. - * - * @access public - * @param mixed $key - * @return void - */ - public function __unset( $key ) { - if ( isset( $this->_data[ $key ] ) ) { - unset( $this->_data[ $key ] ); - $this->_dirty = true; - } - } + /** + * __unset function. + * + * @param mixed $key + * @return void + */ + public function __unset( $key ) { + if ( isset( $this->_data[ $key ] ) ) { + unset( $this->_data[ $key ] ); + $this->_dirty = true; + } + } - /** - * Get a session variable - * - * @param string $key - * @param mixed $default used if the session variable isn't set - * @return mixed value of session variable - */ - public function get( $key, $default = null ) { - $key = sanitize_key( $key ); - return isset( $this->_data[ $key ] ) ? maybe_unserialize( $this->_data[ $key ] ) : $default; - } + /** + * Get a session variable + * + * @param string $key + * @param mixed $default used if the session variable isn't set + * @return mixed value of session variable + */ + public function get( $key, $default = null ) { + $key = sanitize_key( $key ); + return isset( $this->_data[ $key ] ) ? maybe_unserialize( $this->_data[ $key ] ) : $default; + } - /** - * Set a session variable - * - * @param string $key - * @param mixed $value - */ - public function set( $key, $value ) { - $this->_data[ sanitize_key( $key ) ] = maybe_serialize( $value ); - $this->_dirty = true; - } + /** + * Set a session variable + * + * @param string $key + * @param mixed $value + */ + public function set( $key, $value ) { + $this->_data[ sanitize_key( $key ) ] = maybe_serialize( $value ); + $this->_dirty = true; + } - /** + /** * get_customer_id function. * * @access public @@ -99,4 +94,4 @@ abstract class WC_Session { public function get_customer_id() { return $this->_customer_id; } -} \ No newline at end of file +} diff --git a/includes/abstracts/abstract-wc-settings-api.php b/includes/abstracts/abstract-wc-settings-api.php index c033b755ca9..993de92ead1 100644 --- a/includes/abstracts/abstract-wc-settings-api.php +++ b/includes/abstracts/abstract-wc-settings-api.php @@ -2,11 +2,11 @@ /** * Admin Settings API used by Shipping Methods and Payment Gateways * - * @class WC_Settings_API - * @version 2.1.0 - * @package WooCommerce/Abstracts - * @category Abstract Class - * @author WooThemes + * @class WC_Settings_API + * @version 2.1.0 + * @package WooCommerce/Abstracts + * @category Abstract Class + * @author WooThemes */ abstract class WC_Settings_API { @@ -32,10 +32,9 @@ abstract class WC_Settings_API { * Override this in your gateway. * * @since 1.0.0 - * @access public - * @return void */ public function admin_options() { ?> +

    method_title ) ) ? $this->method_title : __( 'Settings', 'woocommerce' ) ; ?>

    method_description ) ) ? wpautop( $this->method_description ) : ''; ?> @@ -52,14 +51,13 @@ abstract class WC_Settings_API { * on the gateway's settings screen. * * @since 1.0.0 - * @access public * @return string */ public function init_form_fields() {} /** * Get the form fields after they are initialized - * + * * @return array of options */ public function get_form_fields() { @@ -71,138 +69,143 @@ abstract class WC_Settings_API { * - Saves the options to the DB * * @since 1.0.0 - * @access public * @return bool */ - public function process_admin_options() { - $this->validate_settings_fields(); + public function process_admin_options() { - if ( count( $this->errors ) > 0 ) { - $this->display_errors(); - return false; - } else { - update_option( $this->plugin_id . $this->id . '_settings', apply_filters( 'woocommerce_settings_api_sanitized_fields_' . $this->id, $this->sanitized_fields ) ); - $this->init_settings(); - return true; - } - } + $this->validate_settings_fields(); - /** - * Display admin error messages. - * - * @since 1.0.0 - * @access public - * @return void - */ - public function display_errors() {} + if ( count( $this->errors ) > 0 ) { + $this->display_errors(); + return false; + } else { + update_option( $this->plugin_id . $this->id . '_settings', apply_filters( 'woocommerce_settings_api_sanitized_fields_' . $this->id, $this->sanitized_fields ) ); + $this->init_settings(); + return true; + } + } /** - * Initialise Gateway Settings - * - * Store all settings in a single database entry - * and make sure the $settings array is either the default - * or the settings stored in the database. - * - * @since 1.0.0 - * @uses get_option(), add_option() - * @access public - * @return void + * Display admin error messages. + * + * @since 1.0.0 */ - public function init_settings() { - // Load form_field settings - $this->settings = get_option( $this->plugin_id . $this->id . '_settings', null ); + public function display_errors() {} - if ( ! $this->settings || ! is_array( $this->settings ) ) { + /** + * Initialise Gateway Settings + * + * Store all settings in a single database entry + * and make sure the $settings array is either the default + * or the settings stored in the database. + * + * @since 1.0.0 + * @uses get_option(), add_option() + */ + public function init_settings() { - $this->settings = array(); + // Load form_field settings + $this->settings = get_option( $this->plugin_id . $this->id . '_settings', null ); - // If there are no settings defined, load defaults - if ( $form_fields = $this->get_form_fields() ) - foreach ( $form_fields as $k => $v ) - $this->settings[ $k ] = isset( $v['default'] ) ? $v['default'] : ''; - } + if ( ! $this->settings || ! is_array( $this->settings ) ) { - if ( $this->settings && is_array( $this->settings ) ) { + $this->settings = array(); + + // If there are no settings defined, load defaults + if ( $form_fields = $this->get_form_fields() ) { + + foreach ( $form_fields as $k => $v ) { + $this->settings[ $k ] = isset( $v['default'] ) ? $v['default'] : ''; + } + } + } + + if ( $this->settings && is_array( $this->settings ) ) { $this->settings = array_map( array( $this, 'format_settings' ), $this->settings ); $this->enabled = isset( $this->settings['enabled'] ) && $this->settings['enabled'] == 'yes' ? 'yes' : 'no'; - } - } + } + } - /** - * get_option function. - * - * Gets and option from the settings API, using defaults if necessary to prevent undefined notices. - * - * @access public - * @param string $key - * @param mixed $empty_value - * @return string The value specified for the option or a default value for the option - */ - public function get_option( $key, $empty_value = null ) { - if ( empty( $this->settings ) ) - $this->init_settings(); + /** + * get_option function. + * + * Gets and option from the settings API, using defaults if necessary to prevent undefined notices. + * + * @param string $key + * @param mixed $empty_value + * @return string The value specified for the option or a default value for the option + */ + public function get_option( $key, $empty_value = null ) { - // Get option default if unset - if ( ! isset( $this->settings[ $key ] ) ) { + if ( empty( $this->settings ) ) { + $this->init_settings(); + } + + // Get option default if unset + if ( ! isset( $this->settings[ $key ] ) ) { $form_fields = $this->get_form_fields(); $this->settings[ $key ] = isset( $form_fields[ $key ]['default'] ) ? $form_fields[ $key ]['default'] : ''; - } + } - if ( ! is_null( $empty_value ) && empty( $this->settings[ $key ] ) ) - $this->settings[ $key ] = $empty_value; + if ( ! is_null( $empty_value ) && empty( $this->settings[ $key ] ) ) { + $this->settings[ $key ] = $empty_value; + } - return $this->settings[ $key ]; - } + return $this->settings[ $key ]; + } - /** - * Decode values for settings. - * - * @access public - * @param mixed $value - * @return array - */ - public function format_settings( $value ) { - return is_array( $value ) ? $value : $value; - } + /** + * Decode values for settings. + * + * @param mixed $value + * @return array + */ + public function format_settings( $value ) { + return is_array( $value ) ? $value : $value; + } - /** - * Generate Settings HTML. - * - * Generate the HTML for the fields on the "settings" screen. - * - * @access public - * @param bool $form_fields (default: false) - * @since 1.0.0 - * @uses method_exists() - * @access public + /** + * Generate Settings HTML. + * + * Generate the HTML for the fields on the "settings" screen. + * + * @param bool $form_fields (default: false) + * @since 1.0.0 + * @uses method_exists() * @return string the html for the settings - */ - public function generate_settings_html( $form_fields = false ) { - if ( ! $form_fields ) - $form_fields = $this->get_form_fields(); + */ + public function generate_settings_html( $form_fields = false ) { - $html = ''; - foreach ( $form_fields as $k => $v ) { - if ( ! isset( $v['type'] ) || ( $v['type'] == '' ) ) - $v['type'] = 'text'; // Default to "text" field type. + if ( ! $form_fields ) { + $form_fields = $this->get_form_fields(); + } - if ( method_exists( $this, 'generate_' . $v['type'] . '_html' ) ) { - $html .= $this->{'generate_' . $v['type'] . '_html'}( $k, $v ); - } else { - $html .= $this->{'generate_text_html'}( $k, $v ); - } - } + $html = ''; + foreach ( $form_fields as $k => $v ) { - echo $html; - } + if ( ! isset( $v['type'] ) || ( $v['type'] == '' ) ) { + $v['type'] = 'text'; // Default to "text" field type. + } - /** - * Get HTML for tooltips - * @param array $data - * @return string - */ - public function get_tooltip_html( $data ) { - if ( $data['desc_tip'] === true ) { + if ( method_exists( $this, 'generate_' . $v['type'] . '_html' ) ) { + $html .= $this->{'generate_' . $v['type'] . '_html'}( $k, $v ); + } else { + $html .= $this->{'generate_text_html'}( $k, $v ); + } + } + + echo $html; + } + + /** + * Get HTML for tooltips + * + * @param array $data + * @return string + */ + public function get_tooltip_html( $data ) { + + if ( $data['desc_tip'] === true ) { $tip = $data['description']; } elseif ( ! empty( $data['desc_tip'] ) ) { $tip = $data['desc_tip']; @@ -211,15 +214,17 @@ abstract class WC_Settings_API { } return $tip ? '' : ''; - } + } - /** - * Get HTML for descriptions - * @param array $data - * @return string - */ - public function get_description_html( $data ) { - if ( $data['desc_tip'] === true ) { + /** + * Get HTML for descriptions + * + * @param array $data + * @return string + */ + public function get_description_html( $data ) { + + if ( $data['desc_tip'] === true ) { $description = ''; } elseif ( ! empty( $data['desc_tip'] ) ) { $description = $data['description']; @@ -229,36 +234,41 @@ abstract class WC_Settings_API { $description = ''; } - return $description ? '

    ' . wp_kses_post( $description ) . '

    ' . "\n" : ''; - } + return $description ? '

    ' . wp_kses_post( $description ) . '

    ' . "\n" : ''; + } - /** - * Get custom attributes - * @param array $data - * @return string - */ - public function get_custom_attribute_html( $data ) { - $custom_attributes = array(); + /** + * Get custom attributes + * + * @param array $data + * @return string + */ + public function get_custom_attribute_html( $data ) { - if ( ! empty( $data['custom_attributes'] ) && is_array( $data['custom_attributes'] ) ) - foreach ( $data['custom_attributes'] as $attribute => $attribute_value ) + $custom_attributes = array(); + + if ( ! empty( $data['custom_attributes'] ) && is_array( $data['custom_attributes'] ) ) { + + foreach ( $data['custom_attributes'] as $attribute => $attribute_value ) { $custom_attributes[] = esc_attr( $attribute ) . '="' . esc_attr( $attribute_value ) . '"'; + } + } return implode( ' ', $custom_attributes ); - } + } - /** - * Generate Text Input HTML. - * - * @access public - * @param mixed $key - * @param mixed $data - * @since 1.0.0 - * @return string - */ - public function generate_text_html( $key, $data ) { - $field = $this->plugin_id . $this->id . '_' . $key; - $defaults = array( + /** + * Generate Text Input HTML. + * + * @param mixed $key + * @param mixed $data + * @since 1.0.0 + * @return string + */ + public function generate_text_html( $key, $data ) { + + $field = $this->plugin_id . $this->id . '_' . $key; + $defaults = array( 'title' => '', 'disabled' => false, 'class' => '', @@ -288,21 +298,22 @@ abstract class WC_Settings_API { plugin_id . $this->id . '_' . $key; - $defaults = array( + return ob_get_clean(); + } + + /** + * Generate Price Input HTML. + * + * @param mixed $key + * @param mixed $data + * @since 1.0.0 + * @return string + */ + public function generate_price_html( $key, $data ) { + + $field = $this->plugin_id . $this->id . '_' . $key; + $defaults = array( 'title' => '', 'disabled' => false, 'class' => '', @@ -332,21 +343,22 @@ abstract class WC_Settings_API { plugin_id . $this->id . '_' . $key; - $defaults = array( + return ob_get_clean(); + } + + /** + * Generate Decimal Input HTML. + * + * @param mixed $key + * @param mixed $data + * @since 1.0.0 + * @return string + */ + public function generate_decimal_html( $key, $data ) { + + $field = $this->plugin_id . $this->id . '_' . $key; + $defaults = array( 'title' => '', 'disabled' => false, 'class' => '', @@ -376,35 +388,35 @@ abstract class WC_Settings_API { generate_text_html( $key, $data ); - } + /** + * Generate Password Input HTML. + * + * @param mixed $key + * @param mixed $data + * @since 1.0.0 + * @return string + */ + public function generate_password_html( $key, $data ) { + $data['type'] = 'password'; + return $this->generate_text_html( $key, $data ); + } - /** - * Generate Textarea HTML. - * - * @access public - * @param mixed $key - * @param mixed $data - * @since 1.0.0 - * @return string - */ - public function generate_textarea_html( $key, $data ) { - $field = $this->plugin_id . $this->id . '_' . $key; - $defaults = array( + /** + * Generate Textarea HTML. + * + * @param mixed $key + * @param mixed $data + * @since 1.0.0 + * @return string + */ + public function generate_textarea_html( $key, $data ) { + + $field = $this->plugin_id . $this->id . '_' . $key; + $defaults = array( 'title' => '', 'disabled' => false, 'class' => '', @@ -434,21 +446,22 @@ abstract class WC_Settings_API { plugin_id . $this->id . '_' . $key; - $defaults = array( + return ob_get_clean(); + } + + /** + * Generate Checkbox HTML. + * + * @param mixed $key + * @param mixed $data + * @since 1.0.0 + * @return string + */ + public function generate_checkbox_html( $key, $data ) { + + $field = $this->plugin_id . $this->id . '_' . $key; + $defaults = array( 'title' => '', 'label' => '', 'disabled' => false, @@ -462,8 +475,9 @@ abstract class WC_Settings_API { $data = wp_parse_args( $data, $defaults ); - if ( ! $data['label'] ) + if ( ! $data['label'] ) { $data['label'] = $data['title']; + } ob_start(); ?> @@ -476,27 +490,28 @@ abstract class WC_Settings_API {

    + class="" type="checkbox" name="" id="" style="" value="1" get_option( $key ), 'yes' ); ?> get_custom_attribute_html( $data ); ?> />
    get_description_html( $data ); ?>
    plugin_id . $this->id . '_' . $key; - $defaults = array( + return ob_get_clean(); + } + + /** + * Generate Select HTML. + * + * @param mixed $key + * @param mixed $data + * @since 1.0.0 + * @return string + */ + public function generate_select_html( $key, $data ) { + + $field = $this->plugin_id . $this->id . '_' . $key; + $defaults = array( 'title' => '', 'disabled' => false, 'class' => '', @@ -531,21 +546,22 @@ abstract class WC_Settings_API { plugin_id . $this->id . '_' . $key; - $defaults = array( + return ob_get_clean(); + } + + /** + * Generate Multiselect HTML. + * + * @param mixed $key + * @param mixed $data + * @since 1.0.0 + * @return string + */ + public function generate_multiselect_html( $key, $data ) { + + $field = $this->plugin_id . $this->id . '_' . $key; + $defaults = array( 'title' => '', 'disabled' => false, 'class' => '', @@ -580,234 +596,255 @@ abstract class WC_Settings_API { '', - 'class' => '', - 'css' => '' + 'class' => '' ); $data = wp_parse_args( $data, $defaults ); - ob_start(); + ob_start(); ?> -

    +

    get_form_fields(); + /** + * Validate Settings Field Data. + * + * Validate the data on the "Settings" form. + * + * @since 1.0.0 + * @uses method_exists() + * @param bool $form_fields (default: false) + */ + public function validate_settings_fields( $form_fields = false ) { - $this->sanitized_fields = array(); + if ( ! $form_fields ) { + $form_fields = $this->get_form_fields(); + } - foreach ( $form_fields as $k => $v ) { - if ( empty( $v['type'] ) ) - $v['type'] = 'text'; // Default to "text" field type. + $this->sanitized_fields = array(); - // Look for a validate_FIELDID_field method for special handling - if ( method_exists( $this, 'validate_' . $k . '_field' ) ) { - $field = $this->{'validate_' . $k . '_field'}( $k ); - $this->sanitized_fields[ $k ] = $field; + foreach ( $form_fields as $k => $v ) { - // Look for a validate_FIELDTYPE_field method - } elseif ( method_exists( $this, 'validate_' . $v['type'] . '_field' ) ) { - $field = $this->{'validate_' . $v['type'] . '_field'}( $k ); - $this->sanitized_fields[ $k ] = $field; - - // Default to text - } else { - $field = $this->{'validate_text_field'}( $k ); - $this->sanitized_fields[ $k ] = $field; - } - } - } + if ( empty( $v['type'] ) ) { + $v['type'] = 'text'; // Default to "text" field type. + } - /** - * Validate Checkbox Field. - * - * If not set, return "no", otherwise return "yes". - * - * @access public - * @param mixed $key - * @since 1.0.0 - * @return string - */ - public function validate_checkbox_field( $key ) { - $status = 'no'; - if ( isset( $_POST[ $this->plugin_id . $this->id . '_' . $key ] ) && ( 1 == $_POST[ $this->plugin_id . $this->id . '_' . $key ] ) ) { - $status = 'yes'; - } + // Look for a validate_FIELDID_field method for special handling + if ( method_exists( $this, 'validate_' . $k . '_field' ) ) { + $field = $this->{'validate_' . $k . '_field'}( $k ); + $this->sanitized_fields[ $k ] = $field; - return $status; - } + // Look for a validate_FIELDTYPE_field method + } elseif ( method_exists( $this, 'validate_' . $v['type'] . '_field' ) ) { + $field = $this->{'validate_' . $v['type'] . '_field'}( $k ); + $this->sanitized_fields[ $k ] = $field; - /** - * Validate Text Field. - * - * @param mixed $key - * @return string - */ - public function validate_text_field( $key ) { - $text = $this->get_option( $key ); + // Default to text + } else { + $field = $this->{'validate_text_field'}( $k ); + $this->sanitized_fields[ $k ] = $field; + } + } + } - if ( isset( $_POST[ $this->plugin_id . $this->id . '_' . $key ] ) ) - $text = wp_kses_post( trim( stripslashes( $_POST[ $this->plugin_id . $this->id . '_' . $key ] ) ) ); + /** + * Validate Checkbox Field. + * + * If not set, return "no", otherwise return "yes". + * + * @param mixed $key + * @since 1.0.0 + * @return string + */ + public function validate_checkbox_field( $key ) { - return $text; - } + $status = 'no'; - /** - * Validate Price Field. - * - * @param mixed $key - * @return string - */ - public function validate_price_field( $key ) { - $text = $this->get_option( $key ); + if ( isset( $_POST[ $this->plugin_id . $this->id . '_' . $key ] ) && ( 1 == $_POST[ $this->plugin_id . $this->id . '_' . $key ] ) ) { + $status = 'yes'; + } - if ( isset( $_POST[ $this->plugin_id . $this->id . '_' . $key ] ) ) { - if ( $_POST[ $this->plugin_id . $this->id . '_' . $key ] !== '' ) - $text = wc_format_decimal( trim( stripslashes( $_POST[ $this->plugin_id . $this->id . '_' . $key ] ) ) ); - else - $text = ''; - } + return $status; + } - return $text; - } + /** + * Validate Text Field. + * + * Make sure the data is escaped correctly, etc. + * + * @param mixed $key + * @return string + */ + public function validate_text_field( $key ) { - /** - * Validate Price Field. - * - * @param mixed $key - * @return string - */ - public function validate_decimal_field( $key ) { - $text = $this->get_option( $key ); + $text = $this->get_option( $key ); - if ( isset( $_POST[ $this->plugin_id . $this->id . '_' . $key ] ) ) { - if ( $_POST[ $this->plugin_id . $this->id . '_' . $key ] !== '' ) - $text = wc_format_decimal( trim( stripslashes( $_POST[ $this->plugin_id . $this->id . '_' . $key ] ) ) ); - else - $text = ''; - } + if ( isset( $_POST[ $this->plugin_id . $this->id . '_' . $key ] ) ) { + $text = wp_kses_post( trim( stripslashes( $_POST[ $this->plugin_id . $this->id . '_' . $key ] ) ) ); + } - return $text; - } + return $text; + } - /** - * Validate Password Field. - * - * Make sure the data is escaped correctly, etc. - * - * @access public - * @param mixed $key - * @since 1.0.0 - * @return string - */ - public function validate_password_field( $key ) { - $text = $this->get_option( $key ); + /** + * Validate Price Field. + * + * Make sure the data is escaped correctly, etc. + * + * @param mixed $key + * @return string + */ + public function validate_price_field( $key ) { - if ( isset( $_POST[ $this->plugin_id . $this->id . '_' . $key ] ) ) { - $text = wc_clean( stripslashes( $_POST[ $this->plugin_id . $this->id . '_' . $key ] ) ); - } + $text = $this->get_option( $key ); - return $text; - } + if ( isset( $_POST[ $this->plugin_id . $this->id . '_' . $key ] ) ) { - /** - * Validate Textarea Field. - * - * Make sure the data is escaped correctly, etc. - * - * @access public - * @param mixed $key - * @since 1.0.0 - * @return string - */ - public function validate_textarea_field( $key ) { - $text = $this->get_option( $key ); + if ( $_POST[ $this->plugin_id . $this->id . '_' . $key ] !== '' ) { + $text = wc_format_decimal( trim( stripslashes( $_POST[ $this->plugin_id . $this->id . '_' . $key ] ) ) ); + } else { + $text = ''; + } + } - if ( isset( $_POST[ $this->plugin_id . $this->id . '_' . $key ] ) ) { - $text = wp_kses( trim( stripslashes( $_POST[ $this->plugin_id . $this->id . '_' . $key ] ) ), - array_merge( - array( - 'iframe' => array( 'src' => true, 'style' => true, 'id' => true, 'class' => true ) - ), - wp_kses_allowed_html( 'post' ) - ) - ); - } + return $text; + } - return $text; - } + /** + * Validate Decimal Field. + * + * Make sure the data is escaped correctly, etc. + * + * @param mixed $key + * @return string + */ + public function validate_decimal_field( $key ) { - /** - * Validate Select Field. - * - * Make sure the data is escaped correctly, etc. - * - * @access public - * @param mixed $key - * @since 1.0.0 - * @return string - */ - public function validate_select_field( $key ) { - $value = $this->get_option( $key ); + $text = $this->get_option( $key ); - if ( isset( $_POST[ $this->plugin_id . $this->id . '_' . $key ] ) ) { - $value = wc_clean( stripslashes( $_POST[ $this->plugin_id . $this->id . '_' . $key ] ) ); - } + if ( isset( $_POST[ $this->plugin_id . $this->id . '_' . $key ] ) ) { - return $value; - } + if ( $_POST[ $this->plugin_id . $this->id . '_' . $key ] !== '' ) { + $text = wc_format_decimal( trim( stripslashes( $_POST[ $this->plugin_id . $this->id . '_' . $key ] ) ) ); + } else { + $text = ''; + } + } - /** - * Validate Multiselect Field. - * - * Make sure the data is escaped correctly, etc. - * - * @access public - * @param mixed $key - * @since 1.0.0 - * @return string - */ - public function validate_multiselect_field( $key ) { - $value = $this->get_option( $key ); + return $text; + } - if ( isset( $_POST[ $this->plugin_id . $this->id . '_' . $key ] ) ) { - $value = array_map( 'wc_clean', array_map( 'stripslashes', (array) $_POST[ $this->plugin_id . $this->id . '_' . $key ] ) ); - } else { - $value = ''; - } + /** + * Validate Password Field. + * + * Make sure the data is escaped correctly, etc. + * + * @param mixed $key + * @since 1.0.0 + * @return string + */ + public function validate_password_field( $key ) { - return $value; - } -} \ No newline at end of file + $text = $this->get_option( $key ); + + if ( isset( $_POST[ $this->plugin_id . $this->id . '_' . $key ] ) ) { + $text = wc_clean( stripslashes( $_POST[ $this->plugin_id . $this->id . '_' . $key ] ) ); + } + + return $text; + } + + /** + * Validate Textarea Field. + * + * Make sure the data is escaped correctly, etc. + * + * @param mixed $key + * @since 1.0.0 + * @return string + */ + public function validate_textarea_field( $key ) { + + $text = $this->get_option( $key ); + + if ( isset( $_POST[ $this->plugin_id . $this->id . '_' . $key ] ) ) { + + $text = wp_kses( trim( stripslashes( $_POST[ $this->plugin_id . $this->id . '_' . $key ] ) ), + array_merge( + array( + 'iframe' => array( 'src' => true, 'style' => true, 'id' => true, 'class' => true ) + ), + wp_kses_allowed_html( 'post' ) + ) + ); + } + + return $text; + } + + /** + * Validate Select Field. + * + * Make sure the data is escaped correctly, etc. + * + * @param mixed $key + * @since 1.0.0 + * @return string + */ + public function validate_select_field( $key ) { + + $value = $this->get_option( $key ); + + if ( isset( $_POST[ $this->plugin_id . $this->id . '_' . $key ] ) ) { + $value = wc_clean( stripslashes( $_POST[ $this->plugin_id . $this->id . '_' . $key ] ) ); + } + + return $value; + } + + /** + * Validate Multiselect Field. + * + * Make sure the data is escaped correctly, etc. + * + * @param mixed $key + * @since 1.0.0 + * @return string + */ + public function validate_multiselect_field( $key ) { + + $value = $this->get_option( $key ); + + if ( isset( $_POST[ $this->plugin_id . $this->id . '_' . $key ] ) ) { + $value = array_map( 'wc_clean', array_map( 'stripslashes', (array) $_POST[ $this->plugin_id . $this->id . '_' . $key ] ) ); + } else { + $value = ''; + } + + return $value; + } +} diff --git a/includes/abstracts/abstract-wc-shipping-method.php b/includes/abstracts/abstract-wc-shipping-method.php index 07cb519961a..38a0cf622b3 100644 --- a/includes/abstracts/abstract-wc-shipping-method.php +++ b/includes/abstracts/abstract-wc-shipping-method.php @@ -7,11 +7,11 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly * * Extended by shipping methods to handle shipping calculations etc. * - * @class WC_Shipping_Method - * @version 1.6.4 - * @package WooCommerce/Abstracts - * @category Abstract Class - * @author WooThemes + * @class WC_Shipping_Method + * @version 1.6.4 + * @package WooCommerce/Abstracts + * @category Abstract Class + * @author WooThemes */ abstract class WC_Shipping_Method extends WC_Settings_API { @@ -31,31 +31,32 @@ abstract class WC_Shipping_Method extends WC_Settings_API { var $availability; /** @var array Array of countries this method is enabled for. */ - var $countries; + var $countries = array(); /** @var string If 'taxable' tax will be charged for this method (if applicable) */ - var $tax_status = 'taxable'; + var $tax_status = 'taxable'; /** @var mixed Fees for the method */ - var $fee = 0; + var $fee = 0; /** @var float Minimum fee for the method */ - var $minimum_fee = null; + var $minimum_fee = null; /** @var bool Enabled for disabled */ - var $enabled = false; + var $enabled = false; /** @var bool Whether the method has settings or not (In WooCommerce > Settings > Shipping) */ - var $has_settings = true; + var $has_settings = true; /** @var array Features this method supports. */ - var $supports = array(); // Features this method supports. + var $supports = array(); // Features this method supports. /** @var array This is an array of rates - methods must populate this array to register shipping costs */ - var $rates = array(); + var $rates = array(); /** * Whether or not we need to calculate tax on top of the shipping rate + * * @return boolean */ public function is_taxable() { @@ -67,18 +68,16 @@ abstract class WC_Shipping_Method extends WC_Settings_API { * * Add a shipping rate. If taxes are not set they will be calculated based on cost. * - * @access public * @param array $args (default: array()) - * @return void */ - function add_rate( $args = array() ) { + public function add_rate( $args = array() ) { $defaults = array( - 'id' => '', // ID for the rate - 'label' => '', // Label for the rate - 'cost' => '0', // Amount or array of costs (per item shipping) - 'taxes' => '', // Pass taxes, nothing to have it calculated for you, or 'false' to calc no tax - 'calc_tax' => 'per_order' // Calc tax per_order or per_item. Per item needs an array of costs + 'id' => '', // ID for the rate + 'label' => '', // Label for the rate + 'cost' => '0', // Amount or array of costs (per item shipping) + 'taxes' => '', // Pass taxes, nothing to have it calculated for you, or 'false' to calc no tax + 'calc_tax' => 'per_order' // Calc tax per_order or per_item. Per item needs an array of costs ); $args = wp_parse_args( $args, $defaults ); @@ -86,17 +85,16 @@ abstract class WC_Shipping_Method extends WC_Settings_API { extract( $args ); // Id and label are required - if ( ! $id || ! $label ) return; + if ( ! $id || ! $label ) { return; } // Handle cost - $total_cost = ( is_array( $cost ) ) ? array_sum( $cost ) : $cost; + $total_cost = round( ( is_array( $cost ) ) ? array_sum( $cost ) : $cost, absint( get_option( 'woocommerce_price_num_decimals' ) ) ); // Taxes - if not an array and not set to false, calc tax based on cost and passed calc_tax variable // This saves shipping methods having to do complex tax calculations if ( ! is_array( $taxes ) && $taxes !== false && $total_cost > 0 && $this->is_taxable() ) { - $_tax = new WC_Tax(); - $taxes = array(); + $taxes = array(); switch ( $calc_tax ) { @@ -109,44 +107,43 @@ abstract class WC_Shipping_Method extends WC_Settings_API { foreach ( $cost as $cost_key => $amount ) { - if ( ! isset( $cart[ $cost_key ] ) ) + if ( ! isset( $cart[ $cost_key ] ) ) { continue; + } $_product = $cart[ $cost_key ]['data']; - $rates = $_tax->get_shipping_tax_rates( $_product->get_tax_class() ); - $item_taxes = $_tax->calc_shipping_tax( $amount, $rates ); + $rates = WC_Tax::get_shipping_tax_rates( $_product->get_tax_class() ); + $item_taxes = WC_Tax::calc_shipping_tax( $amount, $rates ); // Sum the item taxes - foreach ( array_keys( $taxes + $item_taxes ) as $key ) + foreach ( array_keys( $taxes + $item_taxes ) as $key ) { $taxes[ $key ] = ( isset( $item_taxes[ $key ] ) ? $item_taxes[ $key ] : 0 ) + ( isset( $taxes[ $key ] ) ? $taxes[ $key ] : 0 ); - + } } // Add any cost for the order - order costs are in the key 'order' if ( isset( $cost['order'] ) ) { - $rates = $_tax->get_shipping_tax_rates(); - $item_taxes = $_tax->calc_shipping_tax( $cost['order'], $rates ); + $rates = WC_Tax::get_shipping_tax_rates(); + $item_taxes = WC_Tax::calc_shipping_tax( $cost['order'], $rates ); // Sum the item taxes - foreach ( array_keys( $taxes + $item_taxes ) as $key ) + foreach ( array_keys( $taxes + $item_taxes ) as $key ) { $taxes[ $key ] = ( isset( $item_taxes[ $key ] ) ? $item_taxes[ $key ] : 0 ) + ( isset( $taxes[ $key ] ) ? $taxes[ $key ] : 0 ); + } } - } break; default : - $rates = $_tax->get_shipping_tax_rates(); - $taxes = $_tax->calc_shipping_tax( $total_cost, $rates ); + $rates = WC_Tax::get_shipping_tax_rates(); + $taxes = WC_Tax::calc_shipping_tax( $total_cost, $rates ); break; - } - } $this->rates[] = new WC_Shipping_Rate( $id, $label, $total_cost, $taxes, $this->id ); @@ -155,42 +152,47 @@ abstract class WC_Shipping_Method extends WC_Settings_API { /** * has_settings function. * - * @access public * @return bool */ - function has_settings() { + public function has_settings() { return ( $this->has_settings ); } - /** - * is_available function. - * - * @param array $package - * @return bool - */ - public function is_available( $package ) { - if ( $this->enabled == "no" ) - return false; + /** + * is_available function. + * + * @param array $package + * @return bool + */ + public function is_available( $package ) { + + if ( "no" == $this->enabled ) { + return false; + } // Country availability switch ( $this->availability ) { + case 'specific' : case 'including' : $ship_to_countries = array_intersect( $this->countries, array_keys( WC()->countries->get_shipping_countries() ) ); break; + case 'excluding' : - $ship_to_countries = array_diff( $this->countries, array_keys( WC()->countries->get_shipping_countries() ) ); + $ship_to_countries = array_diff( array_keys( WC()->countries->get_shipping_countries() ), $this->countries ); break; + default : $ship_to_countries = array_keys( WC()->countries->get_shipping_countries() ); break; } - if ( ! in_array( $package['destination']['country'], $ship_to_countries ) ) + if ( ! in_array( $package['destination']['country'], $ship_to_countries ) ) { return false; + } return apply_filters( 'woocommerce_shipping_' . $this->id . '_is_available', true, $package ); - } + } /** * Return the gateways title @@ -201,19 +203,19 @@ abstract class WC_Shipping_Method extends WC_Settings_API { return apply_filters( 'woocommerce_shipping_method_title', $this->title, $this->id ); } - /** - * get_fee function. - * - * @access public - * @param mixed $fee - * @param mixed $total - * @return float - */ - function get_fee( $fee, $total ) { + /** + * get_fee function. + * + * @access public + * @param mixed $fee + * @param mixed $total + * @return float + */ + public function get_fee( $fee, $total ) { if ( strstr( $fee, '%' ) ) : $fee = ( $total / 100 ) * str_replace( '%', '', $fee ); endif; - if ( ! empty( $this->minimum_fee ) && $this->minimum_fee > $fee ) $fee = $this->minimum_fee; + if ( ! empty( $this->minimum_fee ) && $this->minimum_fee > $fee ) { $fee = $this->minimum_fee; } return $fee; } @@ -226,7 +228,7 @@ abstract class WC_Shipping_Method extends WC_Settings_API { * @return bool True if the gateway supports the feature, false otherwise. * @since 1.5.7 */ - function supports( $feature ) { + public function supports( $feature ) { return apply_filters( 'woocommerce_shipping_method_supports', in_array( $feature, $this->supports ) ? true : false, $feature, $this ); } } diff --git a/includes/abstracts/abstract-wc-widget.php b/includes/abstracts/abstract-wc-widget.php index 63fc25e8fe1..50f15b82cdf 100644 --- a/includes/abstracts/abstract-wc-widget.php +++ b/includes/abstracts/abstract-wc-widget.php @@ -2,11 +2,11 @@ /** * Abstract Widget Class * - * @author WooThemes - * @category Widgets - * @package WooCommerce/Abstracts - * @version 2.1.0 - * @extends WP_Widget + * @author WooThemes + * @category Widgets + * @package WooCommerce/Abstracts + * @version 2.1.0 + * @extends WP_Widget */ abstract class WC_Widget extends WP_Widget { @@ -20,6 +20,7 @@ abstract class WC_Widget extends WP_Widget { * Constructor */ public function __construct() { + $widget_ops = array( 'classname' => $this->widget_cssclass, 'description' => $this->widget_description @@ -36,10 +37,12 @@ abstract class WC_Widget extends WP_Widget { * get_cached_widget function. */ function get_cached_widget( $args ) { - $cache = wp_cache_get( $this->widget_id, 'widget' ); - if ( ! is_array( $cache ) ) + $cache = wp_cache_get( apply_filters( 'woocommerce_cached_widget_id', $this->widget_id ), 'widget' ); + + if ( ! is_array( $cache ) ) { $cache = array(); + } if ( isset( $cache[ $args['widget_id'] ] ) ) { echo $cache[ $args['widget_id'] ]; @@ -51,39 +54,45 @@ abstract class WC_Widget extends WP_Widget { /** * Cache the widget + * @param string $content */ public function cache_widget( $args, $content ) { $cache[ $args['widget_id'] ] = $content; - wp_cache_set( $this->widget_id, $cache, 'widget' ); + wp_cache_set( apply_filters( 'woocommerce_cached_widget_id', $this->widget_id ), $cache, 'widget' ); } /** * Flush the cache - * @return [type] + * + * @return void */ public function flush_widget_cache() { - wp_cache_delete( $this->widget_id, 'widget' ); + wp_cache_delete( apply_filters( 'woocommerce_cached_widget_id', $this->widget_id ), 'widget' ); } /** * update function. * * @see WP_Widget->update - * @access public * @param array $new_instance * @param array $old_instance * @return array */ - function update( $new_instance, $old_instance ) { + public function update( $new_instance, $old_instance ) { + $instance = $old_instance; - if ( ! $this->settings ) + if ( ! $this->settings ) { return $instance; + } foreach ( $this->settings as $key => $setting ) { - if ( isset( $new_instance[$key] ) ) { + + if ( isset( $new_instance[ $key ] ) ) { $instance[ $key ] = sanitize_text_field( $new_instance[ $key ] ); + } elseif ( 'checkbox' === $setting['type'] ) { + $instance[ $key ] = 0; } } @@ -96,20 +105,20 @@ abstract class WC_Widget extends WP_Widget { * form function. * * @see WP_Widget->form - * @access public * @param array $instance - * @return void */ - function form( $instance ) { + public function form( $instance ) { - if ( ! $this->settings ) + if ( ! $this->settings ) { return; + } foreach ( $this->settings as $key => $setting ) { $value = isset( $instance[ $key ] ) ? $instance[ $key ] : $setting['std']; switch ( $setting['type'] ) { + case "text" : ?>

    @@ -118,6 +127,7 @@ abstract class WC_Widget extends WP_Widget {

    @@ -126,6 +136,7 @@ abstract class WC_Widget extends WP_Widget {

    @@ -138,6 +149,7 @@ abstract class WC_Widget extends WP_Widget {

    @@ -149,4 +161,4 @@ abstract class WC_Widget extends WP_Widget { } } } -} \ No newline at end of file +} diff --git a/includes/admin/class-wc-admin-addons.php b/includes/admin/class-wc-admin-addons.php index 00668eeb011..255dedd02b8 100644 --- a/includes/admin/class-wc-admin-addons.php +++ b/includes/admin/class-wc-admin-addons.php @@ -10,8 +10,6 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly -if ( ! class_exists( 'WC_Admin_Addons' ) ) : - /** * WC_Admin_Addons Class */ @@ -20,39 +18,20 @@ class WC_Admin_Addons { /** * Handles output of the reports page in admin. */ - public function output() { + public static function output() { - $view = isset( $_GET['view'] ) ? sanitize_text_field( $_GET['view'] ) : ''; - - if ( false === ( $addons = get_transient( 'woocommerce_addons_html_' . $view ) ) ) { - - $raw_addons = wp_remote_get( 'http://www.woothemes.com/product-category/woocommerce-extensions/' . $view . '?orderby=popularity' ); - - if ( ! is_wp_error( $raw_addons ) ) { - - $raw_addons = wp_remote_retrieve_body( $raw_addons ); - - // Get Products - $dom = new DOMDocument(); - libxml_use_internal_errors(true); - $dom->loadHTML( $raw_addons ); - - $xpath = new DOMXPath( $dom ); - $tags = $xpath->query('//ul[@class="products"]'); - foreach ( $tags as $tag ) { - $addons = $tag->ownerDocument->saveXML( $tag ); - break; + if ( false === ( $addons = get_transient( 'woocommerce_addons_data' ) ) ) { + $addons_json = wp_remote_get( 'http://d3t0oesq8995hv.cloudfront.net/woocommerce-addons.json', array( 'user-agent' => 'WooCommerce Addons Page' ) ); + if ( ! is_wp_error( $addons_json ) ) { + $addons = json_decode( wp_remote_retrieve_body( $addons_json ) ); + if ( $addons ) { + set_transient( 'woocommerce_addons_data', $addons, 60*60*24*7 ); // 1 Week } - - if ( $addons ) - set_transient( 'woocommerce_addons_html_' . $view, wp_kses_post( $addons ), 60*60*24*7 ); // Cached for a week } } + $view = isset( $_GET['view'] ) ? sanitize_text_field( $_GET['view'] ) : ''; + include_once( 'views/html-admin-page-addons.php' ); } -} - -endif; - -return new WC_Admin_Addons(); \ No newline at end of file +} \ No newline at end of file diff --git a/includes/admin/class-wc-admin-assets.php b/includes/admin/class-wc-admin-assets.php index d412c4cbf16..49805e4de08 100644 --- a/includes/admin/class-wc-admin-assets.php +++ b/includes/admin/class-wc-admin-assets.php @@ -30,10 +30,10 @@ class WC_Admin_Assets { * Enqueue styles */ public function admin_styles() { - global $woocommerce, $wp_scripts; + global $wp_scripts; // Sitewide menu CSS - wp_enqueue_style( 'woocommerce_admin_menu_styles', WC()->plugin_url() . '/assets/css/menu.css' ); + wp_enqueue_style( 'woocommerce_admin_menu_styles', WC()->plugin_url() . '/assets/css/menu.css', array(), WC_VERSION ); $screen = get_current_screen(); @@ -42,13 +42,13 @@ class WC_Admin_Assets { $jquery_version = isset( $wp_scripts->registered['jquery-ui-core']->ver ) ? $wp_scripts->registered['jquery-ui-core']->ver : '1.9.2'; // Admin styles for WC pages only - wp_enqueue_style( 'woocommerce_admin_styles', WC()->plugin_url() . '/assets/css/admin.css' ); - wp_enqueue_style( 'jquery-ui-style', '//ajax.googleapis.com/ajax/libs/jqueryui/' . $jquery_version . '/themes/smoothness/jquery-ui.css' ); + wp_enqueue_style( 'woocommerce_admin_styles', WC()->plugin_url() . '/assets/css/admin.css', array(), WC_VERSION ); + wp_enqueue_style( 'jquery-ui-style', '//ajax.googleapis.com/ajax/libs/jqueryui/' . $jquery_version . '/themes/smoothness/jquery-ui.css', array(), WC_VERSION ); wp_enqueue_style( 'wp-color-picker' ); } if ( in_array( $screen->id, array( 'dashboard' ) ) ) { - wp_enqueue_style( 'woocommerce_admin_dashboard_styles', WC()->plugin_url() . '/assets/css/dashboard.css' ); + wp_enqueue_style( 'woocommerce_admin_dashboard_styles', WC()->plugin_url() . '/assets/css/dashboard.css', array(), WC_VERSION ); } do_action( 'woocommerce_admin_css' ); @@ -59,137 +59,76 @@ class WC_Admin_Assets { * Enqueue scripts */ public function admin_scripts() { - global $woocommerce, $wp_query, $post; + global $wp_query, $post; $screen = get_current_screen(); - $wc_screen_id = strtolower( __( 'WooCommerce', 'woocommerce' ) ); + $wc_screen_id = sanitize_title( __( 'WooCommerce', 'woocommerce' ) ); $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; // Register scripts - wp_register_script( 'woocommerce_admin', WC()->plugin_url() . '/assets/js/admin/woocommerce_admin' . $suffix . '.js', array( 'jquery', 'jquery-blockui', 'jquery-ui-sortable', 'jquery-ui-widget', 'jquery-ui-core', 'jquery-tiptip' ), WC()->version ); + wp_register_script( 'woocommerce_admin', WC()->plugin_url() . '/assets/js/admin/woocommerce_admin' . $suffix . '.js', array( 'jquery', 'jquery-blockui', 'jquery-ui-sortable', 'jquery-ui-widget', 'jquery-ui-core', 'jquery-tiptip' ), WC_VERSION ); - wp_register_script( 'jquery-blockui', WC()->plugin_url() . '/assets/js/jquery-blockui/jquery.blockUI' . $suffix . '.js', array( 'jquery' ), '2.60', true ); + wp_register_script( 'jquery-blockui', WC()->plugin_url() . '/assets/js/jquery-blockui/jquery.blockUI' . $suffix . '.js', array( 'jquery' ), '2.66', true ); - wp_register_script( 'jquery-tiptip', WC()->plugin_url() . '/assets/js/jquery-tiptip/jquery.tipTip' . $suffix . '.js', array( 'jquery' ), WC()->version, true ); + wp_register_script( 'jquery-tiptip', WC()->plugin_url() . '/assets/js/jquery-tiptip/jquery.tipTip' . $suffix . '.js', array( 'jquery' ), WC_VERSION, true ); - wp_register_script( 'accounting', WC()->plugin_url() . '/assets/js/admin/accounting' . $suffix . '.js', array( 'jquery' ), '1.3.2' ); + wp_register_script( 'accounting', WC()->plugin_url() . '/assets/js/admin/accounting' . $suffix . '.js', array( 'jquery' ), '0.3.2' ); - wp_register_script( 'round', WC()->plugin_url() . '/assets/js/admin/round' . $suffix . '.js', array( 'jquery' ), '1.0.0' ); + wp_register_script( 'round', WC()->plugin_url() . '/assets/js/admin/round' . $suffix . '.js', array( 'jquery' ), WC_VERSION ); - wp_register_script( 'woocommerce_admin_meta_boxes', WC()->plugin_url() . '/assets/js/admin/meta-boxes' . $suffix . '.js', array( 'jquery', 'jquery-ui-datepicker', 'jquery-ui-sortable', 'accounting', 'round' ), WC()->version ); + wp_register_script( 'wc-admin-meta-boxes', WC()->plugin_url() . '/assets/js/admin/meta-boxes' . $suffix . '.js', array( 'jquery', 'jquery-ui-datepicker', 'jquery-ui-sortable', 'accounting', 'round', 'ajax-chosen', 'chosen', 'plupload-all' ), WC_VERSION ); - wp_register_script( 'woocommerce_admin_meta_boxes_variations', WC()->plugin_url() . '/assets/js/admin/meta-boxes-variations' . $suffix . '.js', array( 'jquery', 'jquery-ui-sortable' ), WC()->version ); + wp_register_script( 'ajax-chosen', WC()->plugin_url() . '/assets/js/chosen/ajax-chosen.jquery' . $suffix . '.js', array('jquery', 'chosen'), WC_VERSION ); - wp_register_script( 'ajax-chosen', WC()->plugin_url() . '/assets/js/chosen/ajax-chosen.jquery' . $suffix . '.js', array('jquery', 'chosen'), WC()->version ); - - wp_register_script( 'chosen', WC()->plugin_url() . '/assets/js/chosen/chosen.jquery' . $suffix . '.js', array('jquery'), WC()->version ); + wp_register_script( 'chosen', WC()->plugin_url() . '/assets/js/chosen/chosen.jquery' . $suffix . '.js', array('jquery'), WC_VERSION ); // Accounting - $params = array( + $params = array( 'mon_decimal_point' => get_option( 'woocommerce_price_decimal_sep' ) - ); + ); - wp_localize_script( 'accounting', 'accounting_params', $params ); + wp_localize_script( 'accounting', 'accounting_params', $params ); // WooCommerce admin pages - if ( in_array( $screen->id, wc_get_screen_ids() ) ) { + if ( in_array( $screen->id, wc_get_screen_ids() ) ) { - wp_enqueue_script( 'woocommerce_admin' ); - wp_enqueue_script( 'iris' ); - wp_enqueue_script( 'ajax-chosen' ); - wp_enqueue_script( 'chosen' ); - wp_enqueue_script( 'jquery-ui-sortable' ); - wp_enqueue_script( 'jquery-ui-autocomplete' ); - - $locale = localeconv(); - $decimal = isset( $locale['decimal_point'] ) ? $locale['decimal_point'] : '.'; - - $params = array( - 'i18n_decimal_error' => sprintf( __( 'Please enter in decimal (%s) format without thousand separators.', 'woocommerce' ), $decimal ), - 'i18n_mon_decimal_error' => sprintf( __( 'Please enter in monetary decimal (%s) format without thousand separators and currency symbols.', 'woocommerce' ), get_option( 'woocommerce_price_decimal_sep' ) ), - 'decimal_point' => $decimal, - 'mon_decimal_point' => get_option( 'woocommerce_price_decimal_sep' ) - ); - - wp_localize_script( 'woocommerce_admin', 'woocommerce_admin', $params ); - } - - // Edit product category pages - if ( in_array( $screen->id, array( 'edit-product_cat' ) ) ) - wp_enqueue_media(); - - // Products - if ( in_array( $screen->id, array( 'edit-product' ) ) ) - wp_enqueue_script( 'woocommerce_quick-edit', WC()->plugin_url() . '/assets/js/admin/quick-edit' . $suffix . '.js', array('jquery'), WC()->version ); - - // Product/Coupon/Orders - if ( in_array( $screen->id, array( 'shop_coupon', 'shop_order', 'product', 'edit-shop_coupon', 'edit-shop_order', 'edit-product' ) ) ) { - - wp_enqueue_script( 'woocommerce_admin_meta_boxes' ); - wp_enqueue_script( 'jquery-ui-datepicker' ); - wp_enqueue_media(); + wp_enqueue_script( 'woocommerce_admin' ); + wp_enqueue_script( 'iris' ); wp_enqueue_script( 'ajax-chosen' ); wp_enqueue_script( 'chosen' ); - wp_enqueue_script( 'plupload-all' ); + wp_enqueue_script( 'jquery-ui-sortable' ); + wp_enqueue_script( 'jquery-ui-autocomplete' ); + + $locale = localeconv(); + $decimal = isset( $locale['decimal_point'] ) ? $locale['decimal_point'] : '.'; $params = array( - 'remove_item_notice' => __( 'Are you sure you want to remove the selected items? If you have previously reduced this item\'s stock, or this order was submitted by a customer, you will need to manually restore the item\'s stock.', 'woocommerce' ), - 'i18n_select_items' => __( 'Please select some items.', 'woocommerce' ), - 'remove_item_meta' => __( 'Remove this item meta?', 'woocommerce' ), - 'remove_attribute' => __( 'Remove this attribute?', 'woocommerce' ), - 'name_label' => __( 'Name', 'woocommerce' ), - 'remove_label' => __( 'Remove', 'woocommerce' ), - 'click_to_toggle' => __( 'Click to toggle', 'woocommerce' ), - 'values_label' => __( 'Value(s)', 'woocommerce' ), - 'text_attribute_tip' => __( 'Enter some text, or some attributes by pipe (|) separating values.', 'woocommerce' ), - 'visible_label' => __( 'Visible on the product page', 'woocommerce' ), - 'used_for_variations_label' => __( 'Used for variations', 'woocommerce' ), - 'new_attribute_prompt' => __( 'Enter a name for the new attribute term:', 'woocommerce' ), - 'calc_totals' => __( 'Calculate totals based on order items, discounts, and shipping?', 'woocommerce' ), - 'calc_line_taxes' => __( 'Calculate line taxes? This will calculate taxes based on the customers country. If no billing/shipping is set it will use the store base country.', 'woocommerce' ), - 'copy_billing' => __( 'Copy billing information to shipping information? This will remove any currently entered shipping information.', 'woocommerce' ), - 'load_billing' => __( 'Load the customer\'s billing information? This will remove any currently entered billing information.', 'woocommerce' ), - 'load_shipping' => __( 'Load the customer\'s shipping information? This will remove any currently entered shipping information.', 'woocommerce' ), - 'featured_label' => __( 'Featured', 'woocommerce' ), - 'prices_include_tax' => esc_attr( get_option('woocommerce_prices_include_tax') ), - 'round_at_subtotal' => esc_attr( get_option( 'woocommerce_tax_round_at_subtotal' ) ), - 'no_customer_selected' => __( 'No customer selected', 'woocommerce' ), - 'plugin_url' => WC()->plugin_url(), - 'ajax_url' => admin_url('admin-ajax.php'), - 'order_item_nonce' => wp_create_nonce("order-item"), - 'add_attribute_nonce' => wp_create_nonce("add-attribute"), - 'save_attributes_nonce' => wp_create_nonce("save-attributes"), - 'calc_totals_nonce' => wp_create_nonce("calc-totals"), - 'get_customer_details_nonce' => wp_create_nonce("get-customer-details"), - 'search_products_nonce' => wp_create_nonce("search-products"), - 'grant_access_nonce' => wp_create_nonce("grant-access"), - 'revoke_access_nonce' => wp_create_nonce("revoke-access"), - 'add_order_note_nonce' => wp_create_nonce("add-order-note"), - 'delete_order_note_nonce' => wp_create_nonce("delete-order-note"), - 'calendar_image' => WC()->plugin_url().'/assets/images/calendar.png', - 'post_id' => isset( $post->ID ) ? $post->ID : '', - 'base_country' => WC()->countries->get_base_country(), - 'currency_format_num_decimals' => absint( get_option( 'woocommerce_price_num_decimals' ) ), - 'currency_format_symbol' => get_woocommerce_currency_symbol(), - 'currency_format_decimal_sep' => esc_attr( stripslashes( get_option( 'woocommerce_price_decimal_sep' ) ) ), - 'currency_format_thousand_sep' => esc_attr( stripslashes( get_option( 'woocommerce_price_thousand_sep' ) ) ), - 'currency_format' => esc_attr( str_replace( array( '%1$s', '%2$s' ), array( '%s', '%v' ), get_woocommerce_price_format() ) ), // For accounting JS - 'rounding_precision' => WC_ROUNDING_PRECISION, - 'tax_rounding_mode' => WC_TAX_ROUNDING_MODE, - 'product_types' => array_map( 'sanitize_title', get_terms( 'product_type', array( 'hide_empty' => false, 'fields' => 'names' ) ) ), - 'default_attribute_visibility' => apply_filters( 'default_attribute_visibility', false ), - 'default_attribute_variation' => apply_filters( 'default_attribute_variation', false ), - 'i18n_download_permission_fail' => __( 'Could not grant access - the user may already have permission for this file or billing email is not set. Ensure the billing email is set, and the order has been saved.', 'woocommerce' ), - 'i18n_permission_revoke' => __( 'Are you sure you want to revoke access to this download?', 'woocommerce' ), + 'i18n_decimal_error' => sprintf( __( 'Please enter in decimal (%s) format without thousand separators.', 'woocommerce' ), $decimal ), + 'i18n_mon_decimal_error' => sprintf( __( 'Please enter in monetary decimal (%s) format without thousand separators and currency symbols.', 'woocommerce' ), get_option( 'woocommerce_price_decimal_sep' ) ), + 'i18n_country_iso_error' => __( 'Please enter in country code with two capital letters.', 'woocommerce' ), + 'i18_sale_less_than_regular_error' => __( 'Please enter in a value less than the regular price.', 'woocommerce' ), + 'decimal_point' => $decimal, + 'mon_decimal_point' => get_option( 'woocommerce_price_decimal_sep' ), ); - wp_localize_script( 'woocommerce_admin_meta_boxes', 'woocommerce_admin_meta_boxes', $params ); + wp_localize_script( 'woocommerce_admin', 'woocommerce_admin', $params ); } - // Product specific - if ( in_array( $screen->id, array( 'product', 'edit-product' ) ) ) { + // Edit product category pages + if ( in_array( $screen->id, array( 'edit-product_cat' ) ) ) { + wp_enqueue_media(); + } - wp_enqueue_script( 'woocommerce_admin_meta_boxes_variations' ); + // Products + if ( in_array( $screen->id, array( 'edit-product' ) ) ) { + wp_enqueue_script( 'woocommerce_quick-edit', WC()->plugin_url() . '/assets/js/admin/quick-edit' . $suffix . '.js', array('jquery'), WC_VERSION ); + } + + // Meta boxes + if ( in_array( $screen->id, array( 'product', 'edit-product' ) ) ) { + wp_enqueue_media(); + wp_enqueue_script( 'wc-admin-product-meta-boxes', WC()->plugin_url() . '/assets/js/admin/meta-boxes-product' . $suffix . '.js', array( 'wc-admin-meta-boxes' ), WC_VERSION ); + wp_enqueue_script( 'wc-admin-variation-meta-boxes', WC()->plugin_url() . '/assets/js/admin/meta-boxes-product-variation' . $suffix . '.js', array( 'wc-admin-meta-boxes' ), WC_VERSION ); $params = array( 'post_id' => isset( $post->ID ) ? $post->ID : '', @@ -213,13 +152,79 @@ class WC_Admin_Assets { 'i18n_remove_variation' => esc_js( __( 'Are you sure you want to remove this variation?', 'woocommerce' ) ) ); - wp_localize_script( 'woocommerce_admin_meta_boxes_variations', 'woocommerce_admin_meta_boxes_variations', $params ); + wp_localize_script( 'wc-admin-variation-meta-boxes', 'woocommerce_admin_meta_boxes_variations', $params ); + } + if ( in_array( str_replace( 'edit-', '', $screen->id ), wc_get_order_types( 'order-meta-boxes' ) ) ) { + wp_enqueue_script( 'wc-admin-order-meta-boxes', WC()->plugin_url() . '/assets/js/admin/meta-boxes-order' . $suffix . '.js', array( 'wc-admin-meta-boxes' ), WC_VERSION ); + wp_enqueue_script( 'wc-admin-order-meta-boxes-modal', WC()->plugin_url() . '/assets/js/admin/order-backbone-modal' . $suffix . '.js', array( 'underscore', 'backbone', 'wc-admin-order-meta-boxes' ), WC_VERSION ); + } + if ( in_array( $screen->id, array( 'shop_coupon', 'edit-shop_coupon' ) ) ) { + wp_enqueue_script( 'wc-admin-coupon-meta-boxes', WC()->plugin_url() . '/assets/js/admin/meta-boxes-coupon' . $suffix . '.js', array( 'wc-admin-meta-boxes' ), WC_VERSION ); + } + if ( in_array( str_replace( 'edit-', '', $screen->id ), array_merge( array( 'shop_coupon', 'product' ), wc_get_order_types( 'order-meta-boxes' ) ) ) ) { + $params = array( + 'remove_item_notice' => __( 'Are you sure you want to remove the selected items? If you have previously reduced this item\'s stock, or this order was submitted by a customer, you will need to manually restore the item\'s stock.', 'woocommerce' ), + 'i18n_select_items' => __( 'Please select some items.', 'woocommerce' ), + 'i18n_do_refund' => __( 'Are you sure you wish to process this refund? This action cannot be undone.', 'woocommerce' ), + 'i18n_delete_refund' => __( 'Are you sure you wish to delete this refund? This action cannot be undone.', 'woocommerce' ), + 'i18n_delete_tax' => __( 'Are you sure you wish to delete this tax column? This action cannot be undone.', 'woocommerce' ), + 'remove_item_meta' => __( 'Remove this item meta?', 'woocommerce' ), + 'remove_attribute' => __( 'Remove this attribute?', 'woocommerce' ), + 'name_label' => __( 'Name', 'woocommerce' ), + 'remove_label' => __( 'Remove', 'woocommerce' ), + 'click_to_toggle' => __( 'Click to toggle', 'woocommerce' ), + 'values_label' => __( 'Value(s)', 'woocommerce' ), + 'text_attribute_tip' => __( 'Enter some text, or some attributes by pipe (|) separating values.', 'woocommerce' ), + 'visible_label' => __( 'Visible on the product page', 'woocommerce' ), + 'used_for_variations_label' => __( 'Used for variations', 'woocommerce' ), + 'new_attribute_prompt' => __( 'Enter a name for the new attribute term:', 'woocommerce' ), + 'calc_totals' => __( 'Calculate totals based on order items, discounts, and shipping?', 'woocommerce' ), + 'calc_line_taxes' => __( 'Calculate line taxes? This will calculate taxes based on the customers country. If no billing/shipping is set it will use the store base country.', 'woocommerce' ), + 'copy_billing' => __( 'Copy billing information to shipping information? This will remove any currently entered shipping information.', 'woocommerce' ), + 'load_billing' => __( 'Load the customer\'s billing information? This will remove any currently entered billing information.', 'woocommerce' ), + 'load_shipping' => __( 'Load the customer\'s shipping information? This will remove any currently entered shipping information.', 'woocommerce' ), + 'featured_label' => __( 'Featured', 'woocommerce' ), + 'prices_include_tax' => esc_attr( get_option('woocommerce_prices_include_tax') ), + 'round_at_subtotal' => esc_attr( get_option( 'woocommerce_tax_round_at_subtotal' ) ), + 'no_customer_selected' => __( 'No customer selected', 'woocommerce' ), + 'plugin_url' => WC()->plugin_url(), + 'ajax_url' => admin_url('admin-ajax.php'), + 'order_item_nonce' => wp_create_nonce("order-item"), + 'add_attribute_nonce' => wp_create_nonce("add-attribute"), + 'save_attributes_nonce' => wp_create_nonce("save-attributes"), + 'calc_totals_nonce' => wp_create_nonce("calc-totals"), + 'get_customer_details_nonce' => wp_create_nonce("get-customer-details"), + 'search_products_nonce' => wp_create_nonce("search-products"), + 'grant_access_nonce' => wp_create_nonce("grant-access"), + 'revoke_access_nonce' => wp_create_nonce("revoke-access"), + 'add_order_note_nonce' => wp_create_nonce("add-order-note"), + 'delete_order_note_nonce' => wp_create_nonce("delete-order-note"), + 'calendar_image' => WC()->plugin_url().'/assets/images/calendar.png', + 'post_id' => isset( $post->ID ) ? $post->ID : '', + 'base_country' => WC()->countries->get_base_country(), + 'currency_format_num_decimals' => absint( get_option( 'woocommerce_price_num_decimals' ) ), + 'currency_format_symbol' => get_woocommerce_currency_symbol(), + 'currency_format_decimal_sep' => esc_attr( stripslashes( get_option( 'woocommerce_price_decimal_sep' ) ) ), + 'currency_format_thousand_sep' => esc_attr( stripslashes( get_option( 'woocommerce_price_thousand_sep' ) ) ), + 'currency_format' => esc_attr( str_replace( array( '%1$s', '%2$s' ), array( '%s', '%v' ), get_woocommerce_price_format() ) ), // For accounting JS + 'rounding_precision' => WC_ROUNDING_PRECISION, + 'tax_rounding_mode' => WC_TAX_ROUNDING_MODE, + 'product_types' => array_map( 'sanitize_title', get_terms( 'product_type', array( 'hide_empty' => false, 'fields' => 'names' ) ) ), + 'default_attribute_visibility' => apply_filters( 'default_attribute_visibility', false ), + 'default_attribute_variation' => apply_filters( 'default_attribute_variation', false ), + 'i18n_download_permission_fail' => __( 'Could not grant access - the user may already have permission for this file or billing email is not set. Ensure the billing email is set, and the order has been saved.', 'woocommerce' ), + 'i18n_permission_revoke' => __( 'Are you sure you want to revoke access to this download?', 'woocommerce' ), + 'i18n_tax_rate_already_exists' => __( 'You cannot add the same tax rate twice!', 'woocommerce' ), + 'i18n_product_type_alert' => __( 'Your product has variations! Before changing the product type, it is a good idea to delete the variations to avoid errors in the stock reports.', 'woocommerce' ) + ); + + wp_localize_script( 'wc-admin-meta-boxes', 'woocommerce_admin_meta_boxes', $params ); } // Term ordering - only when sorting by term_order if ( ( strstr( $screen->id, 'edit-pa_' ) || ( ! empty( $_GET['taxonomy'] ) && in_array( $_GET['taxonomy'], apply_filters( 'woocommerce_sortable_taxonomies', array( 'product_cat' ) ) ) ) ) && ! isset( $_GET['orderby'] ) ) { - wp_register_script( 'woocommerce_term_ordering', WC()->plugin_url() . '/assets/js/admin/term-ordering.js', array('jquery-ui-sortable'), WC()->version ); + wp_register_script( 'woocommerce_term_ordering', WC()->plugin_url() . '/assets/js/admin/term-ordering.js', array('jquery-ui-sortable'), WC_VERSION ); wp_enqueue_script( 'woocommerce_term_ordering' ); $taxonomy = isset( $_GET['taxonomy'] ) ? wc_clean( $_GET['taxonomy'] ) : ''; @@ -234,23 +239,28 @@ class WC_Admin_Assets { // Product sorting - only when sorting by menu order on the products page if ( current_user_can('edit_others_pages') && $screen->id == 'edit-product' && isset( $wp_query->query['orderby'] ) && $wp_query->query['orderby'] == 'menu_order title' ) { - wp_enqueue_script( 'woocommerce_product_ordering', WC()->plugin_url() . '/assets/js/admin/product-ordering.js', array('jquery-ui-sortable'), '1.0', true ); + wp_enqueue_script( 'woocommerce_product_ordering', WC()->plugin_url() . '/assets/js/admin/product-ordering.js', array('jquery-ui-sortable'), WC_VERSION, true ); } // Reports Pages if ( in_array( $screen->id, apply_filters( 'woocommerce_reports_screen_ids', array( $wc_screen_id . '_page_wc-reports', 'dashboard' ) ) ) ) { - wp_enqueue_script( 'wc-reports', WC()->plugin_url() . '/assets/js/admin/reports' . $suffix . '.js', array( 'jquery', 'jquery-ui-datepicker' ), '1.0' ); - wp_enqueue_script( 'flot', WC()->plugin_url() . '/assets/js/admin/jquery.flot' . $suffix . '.js', array( 'jquery' ), '1.0' ); - wp_enqueue_script( 'flot-resize', WC()->plugin_url() . '/assets/js/admin/jquery.flot.resize' . $suffix . '.js', array('jquery', 'flot'), '1.0' ); - wp_enqueue_script( 'flot-time', WC()->plugin_url() . '/assets/js/admin/jquery.flot.time' . $suffix . '.js', array( 'jquery', 'flot' ), '1.0' ); - wp_enqueue_script( 'flot-pie', WC()->plugin_url() . '/assets/js/admin/jquery.flot.pie' . $suffix . '.js', array( 'jquery', 'flot' ), '1.0' ); - wp_enqueue_script( 'flot-stack', WC()->plugin_url() . '/assets/js/admin/jquery.flot.stack' . $suffix . '.js', array( 'jquery', 'flot' ), '1.0' ); + wp_enqueue_script( 'wc-reports', WC()->plugin_url() . '/assets/js/admin/reports' . $suffix . '.js', array( 'jquery', 'jquery-ui-datepicker' ), WC_VERSION ); + wp_enqueue_script( 'flot', WC()->plugin_url() . '/assets/js/admin/jquery.flot' . $suffix . '.js', array( 'jquery' ), WC_VERSION ); + wp_enqueue_script( 'flot-resize', WC()->plugin_url() . '/assets/js/admin/jquery.flot.resize' . $suffix . '.js', array('jquery', 'flot'), WC_VERSION ); + wp_enqueue_script( 'flot-time', WC()->plugin_url() . '/assets/js/admin/jquery.flot.time' . $suffix . '.js', array( 'jquery', 'flot' ), WC_VERSION ); + wp_enqueue_script( 'flot-pie', WC()->plugin_url() . '/assets/js/admin/jquery.flot.pie' . $suffix . '.js', array( 'jquery', 'flot' ), WC_VERSION ); + wp_enqueue_script( 'flot-stack', WC()->plugin_url() . '/assets/js/admin/jquery.flot.stack' . $suffix . '.js', array( 'jquery', 'flot' ), WC_VERSION ); + } + + // System status + if ( 'woocommerce_page_wc-status' === $screen->id ) { + wp_enqueue_script( 'zeroclipboard', WC()->plugin_url() . '/assets/js/zeroclipboard/jquery.zeroclipboard' . $suffix . '.js', array( 'jquery' ), WC_VERSION ); } // Chosen RTL if ( is_rtl() ) { - wp_enqueue_script( 'chosen-rtl', WC()->plugin_url() . '/assets/js/chosen/chosen-rtl' . $suffix . '.js', array( 'jquery' ), WC()->version, true ); + wp_enqueue_script( 'chosen-rtl', WC()->plugin_url() . '/assets/js/chosen/chosen-rtl' . $suffix . '.js', array( 'jquery' ), WC_VERSION, true ); } } diff --git a/includes/admin/class-wc-admin-attributes.php b/includes/admin/class-wc-admin-attributes.php index 507d32bfbc4..d2b26d4b8e4 100644 --- a/includes/admin/class-wc-admin-attributes.php +++ b/includes/admin/class-wc-admin-attributes.php @@ -12,8 +12,6 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly -if ( ! class_exists( 'WC_Admin_Attributes' ) ) : - /** * WC_Admin_Attributes Class */ @@ -25,8 +23,8 @@ class WC_Admin_Attributes { * Shows the created attributes and lets you add new ones or edit existing ones. * The added attributes are stored in the database and can be used for layered navigation. */ - public function output() { - global $wpdb, $woocommerce; + public static function output() { + global $wpdb; // Action to perform: add, edit, delete or none $action = ''; @@ -206,9 +204,9 @@ class WC_Admin_Attributes { // Show admin interface if ( ! empty( $_GET['edit'] ) ) - $this->edit_attribute(); + self::edit_attribute(); else - $this->add_attribute(); + self::add_attribute(); } /** @@ -216,7 +214,7 @@ class WC_Admin_Attributes { * * Shows the interface for changing an attributes type between select and text */ - public function edit_attribute() { + public static function edit_attribute() { global $wpdb; $edit = absint( $_GET['edit'] ); @@ -292,7 +290,7 @@ class WC_Admin_Attributes { * * Shows the interface for adding new attributes */ - public function add_attribute() { + public static function add_attribute() { ?>


    @@ -423,8 +421,4 @@ class WC_Admin_Attributes {
    get_var( "SELECT SUM( postmeta.meta_value ) FROM {$wpdb->posts} as posts - LEFT JOIN {$wpdb->term_relationships} AS rel ON posts.ID=rel.object_ID - LEFT JOIN {$wpdb->term_taxonomy} AS tax USING( term_taxonomy_id ) - LEFT JOIN {$wpdb->terms} AS term USING( term_id ) - LEFT JOIN {$wpdb->postmeta} AS postmeta ON posts.ID = postmeta.post_id - WHERE posts.post_type = 'shop_order' - AND posts.post_status = 'publish' - AND tax.taxonomy = 'shop_order_status' - AND term.slug IN ( 'completed', 'processing', 'on-hold' ) - AND postmeta.meta_key = '_order_total' - AND posts.post_date >= '" . date( 'Y-m-01', current_time('timestamp') ) . "' - AND posts.post_date <= '" . date( 'Y-m-d H:i:s', current_time('timestamp') ) . "' - " ); + // Sales + $query = array(); + $query['fields'] = "SELECT SUM( postmeta.meta_value ) FROM {$wpdb->posts} as posts"; + $query['join'] = "INNER JOIN {$wpdb->postmeta} AS postmeta ON posts.ID = postmeta.post_id "; + $query['where'] = "WHERE posts.post_type IN ( '" . implode( "','", wc_get_order_types( 'reports' ) ) . "' ) "; + $query['where'] .= "AND posts.post_status IN ( 'wc-" . implode( "','wc-", apply_filters( 'woocommerce_reports_order_statuses', array( 'completed', 'processing', 'on-hold' ) ) ) . "' ) "; + $query['where'] .= "AND postmeta.meta_key = '_order_total' "; + $query['where'] .= "AND posts.post_date >= '" . date( 'Y-m-01', current_time( 'timestamp' ) ) . "' "; + $query['where'] .= "AND posts.post_date <= '" . date( 'Y-m-d H:i:s', current_time( 'timestamp' ) ) . "' "; + + $sales = $wpdb->get_var( implode( ' ', apply_filters( 'woocommerce_dashboard_status_widget_sales_query', $query ) ) ); // Get top seller - $top_seller = $wpdb->get_row( "SELECT SUM( order_item_meta.meta_value ) as qty, order_item_meta_2.meta_value as product_id - FROM {$wpdb->posts} as posts - LEFT JOIN {$wpdb->term_relationships} AS rel ON posts.ID=rel.object_ID - LEFT JOIN {$wpdb->term_taxonomy} AS tax USING( term_taxonomy_id ) - LEFT JOIN {$wpdb->terms} AS term USING( term_id ) - LEFT JOIN {$wpdb->prefix}woocommerce_order_items AS order_items ON posts.ID = order_id - LEFT JOIN {$wpdb->prefix}woocommerce_order_itemmeta AS order_item_meta ON order_items.order_item_id = order_item_meta.order_item_id - LEFT JOIN {$wpdb->prefix}woocommerce_order_itemmeta AS order_item_meta_2 ON order_items.order_item_id = order_item_meta_2.order_item_id - WHERE posts.post_type = 'shop_order' - AND posts.post_status = 'publish' - AND tax.taxonomy = 'shop_order_status' - AND term.slug IN ( 'completed', 'processing', 'on-hold' ) - AND order_item_meta.meta_key = '_qty' - AND order_item_meta_2.meta_key = '_product_id' - AND posts.post_date >= '" . date( 'Y-m-01', current_time('timestamp') ) . "' - AND posts.post_date <= '" . date( 'Y-m-d H:i:s', current_time('timestamp') ) . "' - GROUP BY product_id - ORDER BY qty DESC - LIMIT 1 - " ); + $query = array(); + $query['fields'] = "SELECT SUM( order_item_meta.meta_value ) as qty, order_item_meta_2.meta_value as product_id + FROM {$wpdb->posts} as posts"; + $query['join'] = "INNER JOIN {$wpdb->prefix}woocommerce_order_items AS order_items ON posts.ID = order_id "; + $query['join'] .= "INNER JOIN {$wpdb->prefix}woocommerce_order_itemmeta AS order_item_meta ON order_items.order_item_id = order_item_meta.order_item_id "; + $query['join'] .= "INNER JOIN {$wpdb->prefix}woocommerce_order_itemmeta AS order_item_meta_2 ON order_items.order_item_id = order_item_meta_2.order_item_id "; + $query['where'] = "WHERE posts.post_type IN ( '" . implode( "','", wc_get_order_types( 'order-count' ) ) . "' ) "; + $query['where'] .= "AND posts.post_status IN ( 'wc-" . implode( "','wc-", apply_filters( 'woocommerce_reports_order_statuses', array( 'completed', 'processing', 'on-hold' ) ) ) . "' ) "; + $query['where'] .= "AND order_item_meta.meta_key = '_qty' "; + $query['where'] .= "AND order_item_meta_2.meta_key = '_product_id' "; + $query['where'] .= "AND posts.post_date >= '" . date( 'Y-m-01', current_time( 'timestamp' ) ) . "' "; + $query['where'] .= "AND posts.post_date <= '" . date( 'Y-m-d H:i:s', current_time( 'timestamp' ) ) . "' "; + $query['groupby'] = "GROUP BY product_id"; + $query['orderby'] = "ORDER BY qty DESC"; + $query['limits'] = "LIMIT 1"; + + $top_seller = $wpdb->get_row( implode( ' ', apply_filters( 'woocommerce_dashboard_status_widget_top_seller_query', $query ) ) ); // Counts - $on_hold_count = get_term_by( 'slug', 'on-hold', 'shop_order_status' )->count; - $processing_count = get_term_by( 'slug', 'processing', 'shop_order_status' )->count; + $on_hold_count = 0; + $processing_count = 0; + + foreach ( wc_get_order_types( 'order-count' ) as $type ) { + $counts = (array) wp_count_posts( $type ); + $on_hold_count += isset( $counts['wc-on-hold'] ) ? $counts['wc-on-hold'] : 0; + $processing_count += isset( $counts['wc-processing'] ) ? $counts['wc-processing'] : 0; + } // Get products using a query - this is too advanced for get_posts :( $stock = absint( max( get_option( 'woocommerce_notify_low_stock_amount' ), 1 ) ); @@ -113,13 +114,13 @@ class WC_Admin_Dashboard { INNER JOIN {$wpdb->postmeta} AS postmeta2 ON posts.ID = postmeta2.post_id WHERE 1=1 AND posts.post_type IN ('product', 'product_variation') - AND posts.post_status = 'publish' - AND ( - postmeta.meta_key = '_stock' AND CAST(postmeta.meta_value AS SIGNED) <= '{$stock}' AND postmeta.meta_value != '' - ) - AND ( - ( postmeta2.meta_key = '_manage_stock' AND postmeta2.meta_value = 'yes' ) OR ( posts.post_type = 'product_variation' ) - ) + AND posts.post_status = 'publish' + AND ( + postmeta.meta_key = '_stock' AND CAST(postmeta.meta_value AS SIGNED) <= '{$nostock}' AND postmeta.meta_value != '' + ) + AND ( + ( postmeta2.meta_key = '_manage_stock' AND postmeta2.meta_value = 'yes' ) OR ( posts.post_type = 'product_variation' ) + ) "; $outofstock_count = absint( $wpdb->get_var( "SELECT COUNT( DISTINCT posts.ID ) {$query_from};" ) ); @@ -127,25 +128,25 @@ class WC_Admin_Dashboard {
    • - sales_sparkline( '', max( 7, date( 'd', current_time('timestamp') ) ) ); ?> + sales_sparkline( '', max( 7, date( 'd', current_time( 'timestamp' ) ) ) ); ?> %s sales this month", 'woocommerce' ), wc_price( $sales ) ); ?>
    • qty ) : ?>
    • - sales_sparkline( $top_seller->product_id, max( 7, date( 'd', current_time('timestamp') ) ), 'count' ); ?> + sales_sparkline( $top_seller->product_id, max( 7, date( 'd', current_time( 'timestamp' ) ) ), 'count' ); ?> " . get_the_title( $top_seller->product_id ) . "", $top_seller->qty ); ?>
    • - + %s order awaiting processing", "%s orders awaiting processing", $processing_count, 'woocommerce' ), $processing_count ); ?>
    • - + %s order on-hold", "%s orders on-hold", $on_hold_count, 'woocommerce' ), $on_hold_count ); ?>
    • @@ -191,7 +192,7 @@ class WC_Admin_Dashboard { echo '
      ' . $rating . ' ' . __( 'out of 5', 'woocommerce' ) . '
      '; - echo '

      ' . esc_html__( $comment->post_title ) . ' reviewed by ' . esc_html( $comment->comment_author ) .'

      '; + echo '

      ' . esc_html__( $comment->post_title ) . ' ' . __( 'reviewed by', 'woocommerce' ) . ' ' . esc_html( $comment->comment_author ) .'

      '; echo '
      ' . wp_kses_data( $comment->comment_excerpt ) . ' [...]
      '; } @@ -205,4 +206,4 @@ class WC_Admin_Dashboard { endif; -return new WC_Admin_Dashboard(); \ No newline at end of file +return new WC_Admin_Dashboard(); diff --git a/includes/admin/class-wc-admin-duplicate-product.php b/includes/admin/class-wc-admin-duplicate-product.php index db0d4b4694b..125db9f673d 100644 --- a/includes/admin/class-wc-admin-duplicate-product.php +++ b/includes/admin/class-wc-admin-duplicate-product.php @@ -28,9 +28,9 @@ class WC_Admin_Duplicate_Product { } /** - * Show the duplicate link in admin - * @param array of $actions - * @param array $post object + * Show the "Duplicate" link in admin products list + * @param array $actions + * @param WP_Post $post Post object * @return array */ public function dupe_link( $actions, $post ) { @@ -151,7 +151,7 @@ class WC_Admin_Duplicate_Product { $this->duplicate_post_meta( $post->ID, $new_post_id ); // Copy the children (variations) - if ( $children_products =& get_children( 'post_parent='.$post->ID.'&post_type=product_variation' ) ) { + if ( $children_products = get_children( 'post_parent='.$post->ID.'&post_type=product_variation' ) ) { if ( $children_products ) foreach ( $children_products as $child ) @@ -197,7 +197,6 @@ class WC_Admin_Duplicate_Product { * @return void */ private function duplicate_post_taxonomies( $id, $new_id, $post_type ) { - global $wpdb; $taxonomies = get_object_taxonomies($post_type); //array("category", "post_tag"); foreach ($taxonomies as $taxonomy) { $post_terms = wp_get_object_terms($id, $taxonomy); @@ -221,6 +220,7 @@ class WC_Admin_Duplicate_Product { $post_meta_infos = $wpdb->get_results("SELECT meta_key, meta_value FROM $wpdb->postmeta WHERE post_id=$id"); if (count($post_meta_infos)!=0) { + $sql_query_sel = array(); $sql_query = "INSERT INTO $wpdb->postmeta (post_id, meta_key, meta_value) "; foreach ($post_meta_infos as $meta_info) { $meta_key = $meta_info->meta_key; diff --git a/includes/admin/class-wc-admin-editor.php b/includes/admin/class-wc-admin-editor.php deleted file mode 100644 index d4496845ea3..00000000000 --- a/includes/admin/class-wc-admin-editor.php +++ /dev/null @@ -1,88 +0,0 @@ -plugin_path() . '/assets/js/admin/editor_plugin_lang.php'; - return $arr; - } - - /** - * Register the shortcode button. - * - * @param array $buttons - * @return array - */ - public function register_shortcode_button( $buttons ) { - array_push( $buttons, "|", "woocommerce_shortcodes_button" ); - return $buttons; - } - - /** - * Add the shortcode button to TinyMCE - * - * @param array $plugin_array - * @return array - */ - public function add_shortcode_tinymce_plugin( $plugin_array ) { - $plugin_array['WooCommerceShortcodes'] = WC()->plugin_url() . '/assets/js/admin/editor_plugin.js'; - return $plugin_array; - } - - /** - * Force TinyMCE to refresh. - * - * @param int $ver - * @return int - */ - public function refresh_mce( $ver ) { - $ver += 3; - return $ver; - } - -} - -new WC_Admin_Editor(); \ No newline at end of file diff --git a/includes/admin/class-wc-admin-help.php b/includes/admin/class-wc-admin-help.php index 3144c1aa0be..10606976c76 100644 --- a/includes/admin/class-wc-admin-help.php +++ b/includes/admin/class-wc-admin-help.php @@ -25,7 +25,7 @@ class WC_Admin_Help { } /** - * Add help tabs + * Add Contextual help tabs */ public function add_tabs() { $screen = get_current_screen(); @@ -34,48 +34,47 @@ class WC_Admin_Help { return; $screen->add_help_tab( array( - 'id' => 'woocommerce_docs_tab', - 'title' => __( 'Documentation', 'woocommerce' ), - 'content' => + 'id' => 'woocommerce_docs_tab', + 'title' => __( 'Documentation', 'woocommerce' ), + 'content' => - '

      ' . __( 'Thank you for using WooCommerce :) Should you need help using or extending WooCommerce please read the documentation.', 'woocommerce' ) . '

      ' . + '

      ' . __( 'Thank you for using WooCommerce :) Should you need help using or extending WooCommerce please read the documentation.', 'woocommerce' ) . '

      ' . - '

      ' . __( 'WooCommerce Documentation', 'woocommerce' ) . ' ' . __( 'Developer API Docs', 'woocommerce' ) . '

      ' + '

      ' . __( 'WooCommerce Documentation', 'woocommerce' ) . ' ' . __( 'Developer API Docs', 'woocommerce' ) . '

      ' ) ); $screen->add_help_tab( array( - 'id' => 'woocommerce_support_tab', - 'title' => __( 'Support', 'woocommerce' ), - 'content' => + 'id' => 'woocommerce_support_tab', + 'title' => __( 'Support', 'woocommerce' ), + 'content' => - '

      ' . sprintf(__( 'After reading the documentation, for further assistance you can use the community forum, or if you have access as a WooThemes customer, our support desk.', 'woocommerce' ), 'http://docs.woothemes.com/documentation/plugins/woocommerce/', 'http://wordpress.org/support/plugin/woocommerce', 'http://support.woothemes.com' ) . '

      ' . + '

      ' . sprintf( __( 'After %sreading the documentation%s, for further assistance you can use our %scommunity forum%s if you get stuck. For help with premium add-ons from WooThemes, or if you are a WooThemes customer, you can %suse our helpdesk%s.', 'woocommerce' ), '', '', '', '', '', '' ) . '

      ' . - '

      ' . __( 'Before asking for help we recommend checking the status page to identify any problems with your configuration.', 'woocommerce' ) . '

      ' . + '

      ' . __( 'Before asking for help we recommend checking the status page to identify any problems with your configuration.', 'woocommerce' ) . '

      ' . - '

      ' . __( 'System Status', 'woocommerce' ) . ' ' . __( 'Community Support', 'woocommerce' ) . ' ' . __( 'Customer Support', 'woocommerce' ) . '

      ' + '

      ' . __( 'System Status', 'woocommerce' ) . ' ' . __( 'WooThemes Community Support', 'woocommerce' ) . ' ' . __( 'WooThemes Customer Support', 'woocommerce' ) . '

      ' ) ); $screen->add_help_tab( array( - 'id' => 'woocommerce_bugs_tab', - 'title' => __( 'Found a bug?', 'woocommerce' ), - 'content' => + 'id' => 'woocommerce_bugs_tab', + 'title' => __( 'Found a bug?', 'woocommerce' ), + 'content' => - '

      ' . sprintf(__( 'If you find a bug within WooCommerce core you can create a ticket via Github issues. Ensure you read the contribution guide prior to submitting your report. Be as descriptive as possible and please include your system status report.', 'woocommerce' ), 'https://github.com/woothemes/woocommerce/issues?state=open', 'https://github.com/woothemes/woocommerce/blob/master/CONTRIBUTING.md', admin_url( 'admin.php?page=wc-status' ) ) . '

      ' . + '

      ' . sprintf( __( 'If you find a bug within WooCommerce core you can create a ticket via Github issues. Ensure you read the contribution guide prior to submitting your report. Be as descriptive as possible and please include your system status report.', 'woocommerce' ), 'https://github.com/woothemes/woocommerce/issues?state=open', 'https://github.com/woothemes/woocommerce/blob/master/CONTRIBUTING.md', admin_url( 'admin.php?page=wc-status' ) ) . '

      ' . - '

      ' . __( 'Report a bug', 'woocommerce' ) . ' ' . __( 'System Status', 'woocommerce' ) . '

      ' + '

      ' . __( 'Report a bug', 'woocommerce' ) . ' ' . __( 'System Status', 'woocommerce' ) . '

      ' ) ); - $screen->set_help_sidebar( '

      ' . __( 'For more information:', 'woocommerce' ) . '

      ' . - '

      ' . __( 'About WooCommerce', 'woocommerce' ) . '

      ' . - '

      ' . __( 'Project on WordPress.org', 'woocommerce' ) . '

      ' . - '

      ' . __( 'Project on Github', 'woocommerce' ) . '

      ' . - '

      ' . __( 'Official Extensions', 'woocommerce' ) . '

      ' . - '

      ' . __( 'Official Themes', 'woocommerce' ) . '

      ' + '

      ' . __( 'About WooCommerce', 'woocommerce' ) . '

      ' . + '

      ' . __( 'WordPress.org Project', 'woocommerce' ) . '

      ' . + '

      ' . __( 'Github Project', 'woocommerce' ) . '

      ' . + '

      ' . __( 'Official Themes', 'woocommerce' ) . '

      ' . + '

      ' . __( 'Official Extensions', 'woocommerce' ) . '

      ' ); } @@ -83,4 +82,4 @@ class WC_Admin_Help { endif; -return new WC_Admin_Help(); \ No newline at end of file +return new WC_Admin_Help(); diff --git a/includes/admin/class-wc-admin-menus.php b/includes/admin/class-wc-admin-menus.php index 9c7577c3c10..ec31caa6fa7 100644 --- a/includes/admin/class-wc-admin-menus.php +++ b/includes/admin/class-wc-admin-menus.php @@ -5,10 +5,12 @@ * @author WooThemes * @category Admin * @package WooCommerce/Admin - * @version 2.1.0 + * @version 2.2.3 */ -if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly +if ( ! defined( 'ABSPATH' ) ) { + exit; // Exit if accessed directly +} if ( ! class_exists( 'WC_Admin_Menus' ) ) : @@ -27,8 +29,9 @@ class WC_Admin_Menus { add_action( 'admin_menu', array( $this, 'settings_menu' ), 50 ); add_action( 'admin_menu', array( $this, 'status_menu' ), 60 ); - if ( apply_filters( 'woocommerce_show_addons_page', true ) ) + if ( apply_filters( 'woocommerce_show_addons_page', true ) ) { add_action( 'admin_menu', array( $this, 'addons_menu' ), 70 ); + } add_action( 'admin_head', array( $this, 'menu_highlight' ) ); add_filter( 'menu_order', array( $this, 'menu_order' ) ); @@ -39,14 +42,15 @@ class WC_Admin_Menus { * Add menu items */ public function admin_menu() { - global $menu, $woocommerce; + global $menu; - if ( current_user_can( 'manage_woocommerce' ) ) - $menu[] = array( '', 'read', 'separator-woocommerce', '', 'wp-menu-separator woocommerce' ); + if ( current_user_can( 'manage_woocommerce' ) ) { + $menu[] = array( '', 'read', 'separator-woocommerce', '', 'wp-menu-separator woocommerce' ); + } - $main_page = add_menu_page( __( 'WooCommerce', 'woocommerce' ), __( 'WooCommerce', 'woocommerce' ), 'manage_woocommerce', 'woocommerce' , array( $this, 'settings_page' ), null, '55.5' ); + $main_page = add_menu_page( __( 'WooCommerce', 'woocommerce' ), __( 'WooCommerce', 'woocommerce' ), 'manage_woocommerce', 'woocommerce', null, null, '55.5' ); - add_submenu_page( 'edit.php?post_type=product', __( 'Attributes', 'woocommerce' ), __( 'Attributes', 'woocommerce' ), 'manage_product_terms', 'product_attributes', array( $this, 'attributes_page' ) ); + add_submenu_page( 'edit.php?post_type=product', __( 'Attributes', 'woocommerce' ), __( 'Attributes', 'woocommerce' ), 'manage_product_terms', 'product_attributes', array( $this, 'attributes_page' ) ); } /** @@ -91,7 +95,6 @@ class WC_Admin_Menus { /** * Highlights the correct top level admin menu item for post type add screens. * - * @access public * @return void */ public function menu_highlight() { @@ -120,19 +123,16 @@ class WC_Admin_Menus { unset( $submenu['woocommerce'][1] ); } - // Sort out Orders menu when on the top level - if ( ! current_user_can( 'manage_woocommerce' ) ) { - foreach ( $menu as $key => $menu_item ) { - if ( strpos( $menu_item[0], _x('Orders', 'Admin menu name', 'woocommerce') ) === 0 ) { + if ( isset( $submenu['woocommerce'] ) && current_user_can( 'manage_woocommerce' ) ) { + foreach ( $submenu['woocommerce'] as $key => $menu_item ) { + if ( 0 === strpos( $menu_item[0], _x( 'Orders', 'Admin menu name', 'woocommerce' ) ) ) { - $menu_name = _x('Orders', 'Admin menu name', 'woocommerce'); - $menu_name_count = ''; + $menu_name = _x( 'Orders', 'Admin menu name', 'woocommerce' ); if ( $order_count = wc_processing_order_count() ) { - $menu_name_count = " " . number_format_i18n( $order_count ) . "" ; + $menu_name .= ' ' . number_format_i18n( $order_count ) . ''; } - $menu[$key][0] = $menu_name . $menu_name_count; - $submenu['edit.php?post_type=shop_order'][5][0] = $menu_name; + $submenu['woocommerce'][ $key ] [0] = $menu_name; break; } } @@ -156,31 +156,33 @@ class WC_Admin_Menus { $woocommerce_product = array_search( 'edit.php?post_type=product', $menu_order ); // Loop through menu order and do some rearranging - foreach ( $menu_order as $index => $item ) : + foreach ( $menu_order as $index => $item ) { - if ( ( ( 'woocommerce' ) == $item ) ) : + if ( ( ( 'woocommerce' ) == $item ) ) { $woocommerce_menu_order[] = 'separator-woocommerce'; $woocommerce_menu_order[] = $item; $woocommerce_menu_order[] = 'edit.php?post_type=product'; unset( $menu_order[$woocommerce_separator] ); unset( $menu_order[$woocommerce_product] ); - elseif ( !in_array( $item, array( 'separator-woocommerce' ) ) ) : + } elseif ( !in_array( $item, array( 'separator-woocommerce' ) ) ) { $woocommerce_menu_order[] = $item; - endif; + } - endforeach; + } // Return order return $woocommerce_menu_order; } /** - * custom_menu_order + * Custom menu order + * * @return bool */ public function custom_menu_order() { - if ( ! current_user_can( 'manage_woocommerce' ) ) + if ( ! current_user_can( 'manage_woocommerce' ) ) { return false; + } return true; } @@ -188,15 +190,13 @@ class WC_Admin_Menus { * Init the reports page */ public function reports_page() { - $page = include( 'class-wc-admin-reports.php' ); - $page->output(); + WC_Admin_Reports::output(); } /** * Init the settings page */ public function settings_page() { - include_once( 'class-wc-admin-settings.php' ); WC_Admin_Settings::output(); } @@ -204,27 +204,24 @@ class WC_Admin_Menus { * Init the attributes page */ public function attributes_page() { - $page = include( 'class-wc-admin-attributes.php' ); - $page->output(); + WC_Admin_Attributes::output(); } /** * Init the status page */ public function status_page() { - $page = include( 'class-wc-admin-status.php' ); - $page->output(); + WC_Admin_Status::output(); } /** * Init the addons page */ public function addons_page() { - $page = include( 'class-wc-admin-addons.php' ); - $page->output(); + WC_Admin_Addons::output(); } } endif; -return new WC_Admin_Menus(); \ No newline at end of file +return new WC_Admin_Menus(); diff --git a/includes/admin/post-types/class-wc-admin-meta-boxes.php b/includes/admin/class-wc-admin-meta-boxes.php similarity index 64% rename from includes/admin/post-types/class-wc-admin-meta-boxes.php rename to includes/admin/class-wc-admin-meta-boxes.php index 525c13259f8..b06849e5825 100644 --- a/includes/admin/post-types/class-wc-admin-meta-boxes.php +++ b/includes/admin/class-wc-admin-meta-boxes.php @@ -29,11 +29,19 @@ class WC_Admin_Meta_Boxes { add_action( 'add_meta_boxes', array( 'WC_Gateway_Mijireh', 'add_page_slurp_meta' ) ); add_action( 'save_post', array( $this, 'save_meta_boxes' ), 1, 2 ); - // Save Order Meta Boxes - add_action( 'woocommerce_process_shop_order_meta', 'WC_Meta_Box_Order_Data::save', 10, 2 ); - add_action( 'woocommerce_process_shop_order_meta', 'WC_Meta_Box_Order_Items::save', 20, 2 ); - add_action( 'woocommerce_process_shop_order_meta', 'WC_Meta_Box_Order_Totals::save', 30, 2 ); - add_action( 'woocommerce_process_shop_order_meta', 'WC_Meta_Box_Order_Downloads::save', 40, 2 ); + /** + * Save Order Meta Boxes + * + * In order: + * Save the order items + * Save the order totals + * Save the order downloads + * Save order data - also updates status and sends out admin emails if needed. Last to show latest data. + * Save actions - sends out other emails. Last to show latest data. + */ + add_action( 'woocommerce_process_shop_order_meta', 'WC_Meta_Box_Order_Items::save', 10, 2 ); + add_action( 'woocommerce_process_shop_order_meta', 'WC_Meta_Box_Order_Downloads::save', 30, 2 ); + add_action( 'woocommerce_process_shop_order_meta', 'WC_Meta_Box_Order_Data::save', 40, 2 ); add_action( 'woocommerce_process_shop_order_meta', 'WC_Meta_Box_Order_Actions::save', 50, 2 ); // Save Product Meta Boxes @@ -95,12 +103,13 @@ class WC_Admin_Meta_Boxes { add_meta_box( 'woocommerce-product-images', __( 'Product Gallery', 'woocommerce' ), 'WC_Meta_Box_Product_Images::output', 'product', 'side' ); // Orders - add_meta_box( 'woocommerce-order-data', __( 'Order Data', 'woocommerce' ), 'WC_Meta_Box_Order_Data::output', 'shop_order', 'normal', 'high' ); - add_meta_box( 'woocommerce-order-items', __( 'Order Items', 'woocommerce' ), 'WC_Meta_Box_Order_Items::output', 'shop_order', 'normal', 'high' ); - add_meta_box( 'woocommerce-order-totals', __( 'Order Totals', 'woocommerce' ), 'WC_Meta_Box_Order_Totals::output', 'shop_order', 'side', 'default' ); - add_meta_box( 'woocommerce-order-notes', __( 'Order Notes', 'woocommerce' ), 'WC_Meta_Box_Order_Notes::output', 'shop_order', 'side', 'default' ); - add_meta_box( 'woocommerce-order-downloads', __( 'Downloadable Product Permissions', 'woocommerce' ) . ' [?]', 'WC_Meta_Box_Order_Downloads::output', 'shop_order', 'normal', 'default' ); - add_meta_box( 'woocommerce-order-actions', __( 'Order Actions', 'woocommerce' ), 'WC_Meta_Box_Order_Actions::output', 'shop_order', 'side', 'high' ); + foreach ( wc_get_order_types( 'order-meta-boxes' ) as $type ) { + add_meta_box( 'woocommerce-order-data', __( 'Order Data', 'woocommerce' ), 'WC_Meta_Box_Order_Data::output', $type, 'normal', 'high' ); + add_meta_box( 'woocommerce-order-items', __( 'Order Items', 'woocommerce' ), 'WC_Meta_Box_Order_Items::output', $type, 'normal', 'high' ); + add_meta_box( 'woocommerce-order-notes', __( 'Order Notes', 'woocommerce' ), 'WC_Meta_Box_Order_Notes::output', $type, 'side', 'default' ); + add_meta_box( 'woocommerce-order-downloads', __( 'Downloadable Product Permissions', 'woocommerce' ) . ' [?]', 'WC_Meta_Box_Order_Downloads::output', $type, 'normal', 'default' ); + add_meta_box( 'woocommerce-order-actions', __( 'Order Actions', 'woocommerce' ), 'WC_Meta_Box_Order_Actions::output', $type, 'side', 'high' ); + } // Coupons add_meta_box( 'woocommerce-coupon-data', __( 'Coupon Data', 'woocommerce' ), 'WC_Meta_Box_Coupon_Data::output', 'shop_coupon', 'normal', 'high' ); @@ -125,10 +134,13 @@ class WC_Admin_Meta_Boxes { remove_meta_box( 'woothemes-settings', 'shop_coupon' , 'normal' ); remove_meta_box( 'commentstatusdiv', 'shop_coupon' , 'normal' ); remove_meta_box( 'slugdiv', 'shop_coupon' , 'normal' ); - remove_meta_box( 'commentsdiv', 'shop_order' , 'normal' ); - remove_meta_box( 'woothemes-settings', 'shop_order' , 'normal' ); - remove_meta_box( 'commentstatusdiv', 'shop_order' , 'normal' ); - remove_meta_box( 'slugdiv', 'shop_order' , 'normal' ); + + foreach ( wc_get_order_types( 'order-meta-boxes' ) as $type ) { + remove_meta_box( 'commentsdiv', $type, 'normal' ); + remove_meta_box( 'woothemes-settings', $type, 'normal' ); + remove_meta_box( 'commentstatusdiv', $type, 'normal' ); + remove_meta_box( 'slugdiv', $type, 'normal' ); + } } /** @@ -152,15 +164,37 @@ class WC_Admin_Meta_Boxes { * @param object $post */ public function save_meta_boxes( $post_id, $post ) { - if ( empty( $post_id ) || empty( $post ) ) return; - if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) return; - if ( is_int( wp_is_post_revision( $post ) ) ) return; - if ( is_int( wp_is_post_autosave( $post ) ) ) return; - if ( empty( $_POST['woocommerce_meta_nonce'] ) || ! wp_verify_nonce( $_POST['woocommerce_meta_nonce'], 'woocommerce_save_data' ) ) return; - if ( ! current_user_can( 'edit_post', $post_id )) return; - if ( $post->post_type != 'product' && $post->post_type != 'shop_order' && $post->post_type != 'shop_coupon' ) return; + // $post_id and $post are required + if ( empty( $post_id ) || empty( $post ) ) { + return; + } - do_action( 'woocommerce_process_' . $post->post_type . '_meta', $post_id, $post ); + // Dont' save meta boxes for revisions or autosaves + if ( defined( 'DOING_AUTOSAVE' ) || is_int( wp_is_post_revision( $post ) ) || is_int( wp_is_post_autosave( $post ) ) ) { + return; + } + + // Check the nonce + if ( empty( $_POST['woocommerce_meta_nonce'] ) || ! wp_verify_nonce( $_POST['woocommerce_meta_nonce'], 'woocommerce_save_data' ) ) { + return; + } + + // Check the post being saved == the $post_id to prevent triggering this call for other save_post events + if ( empty( $_POST['post_ID'] ) || $_POST['post_ID'] != $post_id ) { + return; + } + + // Check user has permission to edit + if ( ! current_user_can( 'edit_post', $post_id ) ) { + return; + } + + // Check the post type + if ( in_array( $post->post_type, wc_get_order_types( 'order-meta-boxes' ) ) ) { + do_action( 'woocommerce_process_shop_order_meta', $post_id, $post ); + } elseif ( in_array( $post->post_type, array( 'product', 'shop_coupon' ) ) ) { + do_action( 'woocommerce_process_' . $post->post_type . '_meta', $post_id, $post ); + } } } diff --git a/includes/admin/class-wc-admin-notices.php b/includes/admin/class-wc-admin-notices.php index 9c61de05eaa..966585e00f6 100644 --- a/includes/admin/class-wc-admin-notices.php +++ b/includes/admin/class-wc-admin-notices.php @@ -21,9 +21,18 @@ class WC_Admin_Notices { * Hook in tabs. */ public function __construct() { + add_action( 'switch_theme', array( $this, 'reset_admin_notices' ) ); + add_action( 'woocommerce_updated', array( $this, 'reset_admin_notices' ) ); add_action( 'admin_print_styles', array( $this, 'add_notices' ) ); } + /** + * Reset notices for themes when switched or a new version of WC is installed + */ + public function reset_admin_notices() { + update_option( 'woocommerce_admin_notices', array( 'template_files', 'theme_support' ) ); + } + /** * Add notices + styles if needed. */ @@ -33,27 +42,46 @@ class WC_Admin_Notices { add_action( 'admin_notices', array( $this, 'install_notice' ) ); } - $template = get_option( 'template' ); + $notices = get_option( 'woocommerce_admin_notices', array() ); - if ( ! current_theme_supports( 'woocommerce' ) && ! in_array( $template, array( 'twentyfourteen', 'twentythirteen', 'twentyeleven', 'twentytwelve', 'twentyten' ) ) ) { + if ( ! empty( $_GET['hide_theme_support_notice'] ) ) { + $notices = array_diff( $notices, array( 'theme_support' ) ); + update_option( 'woocommerce_admin_notices', $notices ); + } - if ( ! empty( $_GET['hide_woocommerce_theme_support_check'] ) ) { - update_option( 'woocommerce_theme_support_check', $template ); - return; - } + if ( ! empty( $_GET['hide_template_files_notice'] ) ) { + $notices = array_diff( $notices, array( 'template_files' ) ); + update_option( 'woocommerce_admin_notices', $notices ); + } - if ( get_option( 'woocommerce_theme_support_check' ) !== $template ) { + if ( in_array( 'theme_support', $notices ) && ! current_theme_supports( 'woocommerce' ) ) { + $template = get_option( 'template' ); + + if ( ! in_array( $template, wc_get_core_supported_themes() ) ) { wp_enqueue_style( 'woocommerce-activation', plugins_url( '/assets/css/activation.css', WC_PLUGIN_FILE ) ); add_action( 'admin_notices', array( $this, 'theme_check_notice' ) ); } } + + if ( in_array( 'template_files', $notices ) ) { + wp_enqueue_style( 'woocommerce-activation', plugins_url( '/assets/css/activation.css', WC_PLUGIN_FILE ) ); + add_action( 'admin_notices', array( $this, 'template_file_check_notice' ) ); + } + + if ( in_array( 'translation_upgrade', $notices ) ) { + wp_enqueue_style( 'woocommerce-activation', plugins_url( '/assets/css/activation.css', WC_PLUGIN_FILE ) ); + add_action( 'admin_notices', array( $this, 'translation_upgrade_notice' ) ); + } + + if ( ! class_exists( 'WC_Mijireh_Checkout' ) && ( $mijireh = get_option( 'woocommerce_mijireh_checkout_settings', false ) ) && ! empty( $mijireh['enabled'] ) && $mijireh['enabled'] === 'yes' && empty( $_GET['action'] ) ) { + add_action( 'admin_notices', array( $this, 'mijireh_notice' ) ); + } } /** * Show the install notices */ - function install_notice() { - + public function install_notice() { // If we need to update, include a message with the update button if ( get_option( '_wc_needs_update' ) == 1 ) { include( 'views/html-notice-update.php' ); @@ -68,11 +96,68 @@ class WC_Admin_Notices { /** * Show the Theme Check notice */ - function theme_check_notice() { + public function theme_check_notice() { include( 'views/html-notice-theme-support.php' ); } + + /** + * Show the translation upgrade notice + */ + public function translation_upgrade_notice() { + $screen = get_current_screen(); + + if ( 'update-core' !== $screen->id ) { + include( 'views/html-notice-translation-upgrade.php' ); + } + } + + /** + * Show a notice highlighting bad template files + */ + public function template_file_check_notice() { + if ( isset( $_GET['page'] ) && 'wc-status' == $_GET['page'] ) { + return; + } + + $core_templates = WC_Admin_Status::scan_template_files( WC()->plugin_path() . '/templates' ); + $outdated = false; + + foreach ( $core_templates as $file ) { + $theme_file = false; + if ( file_exists( get_stylesheet_directory() . '/' . $file ) ) { + $theme_file = get_stylesheet_directory() . '/' . $file; + } elseif ( file_exists( get_stylesheet_directory() . '/woocommerce/' . $file ) ) { + $theme_file = get_stylesheet_directory() . '/woocommerce/' . $file; + } elseif ( file_exists( get_template_directory() . '/' . $file ) ) { + $theme_file = get_template_directory() . '/' . $file; + } elseif( file_exists( get_template_directory() . '/woocommerce/' . $file ) ) { + $theme_file = get_template_directory() . '/woocommerce/' . $file; + } + + if ( $theme_file ) { + $core_version = WC_Admin_Status::get_file_version( WC()->plugin_path() . '/templates/' . $file ); + $theme_version = WC_Admin_Status::get_file_version( $theme_file ); + + if ( $core_version && $theme_version && version_compare( $theme_version, $core_version, '<' ) ) { + $outdated = true; + break; + } + } + } + + if ( $outdated ) { + include( 'views/html-notice-template-check.php' ); + } + } + + /** + * Notice to say Mijireh has been deprecated in 2.2 + */ + public function mijireh_notice() { + include( 'views/html-notice-mijireh.php' ); + } } endif; -return new WC_Admin_Notices(); \ No newline at end of file +return new WC_Admin_Notices(); diff --git a/includes/admin/class-wc-admin-permalink-settings.php b/includes/admin/class-wc-admin-permalink-settings.php index 62678156af4..acb7a43fa15 100644 --- a/includes/admin/class-wc-admin-permalink-settings.php +++ b/includes/admin/class-wc-admin-permalink-settings.php @@ -21,8 +21,8 @@ class WC_Admin_Permalink_Settings { * Hook in tabs. */ public function __construct() { - add_action( 'admin_init', array( $this, 'settings_init' ) ); - add_action( 'admin_init', array( $this, 'settings_save' ) ); + $this->settings_init(); + $this->settings_save(); } /** @@ -154,19 +154,22 @@ class WC_Admin_Permalink_Settings { * Save the settings */ public function settings_save() { - if ( ! is_admin() ) + if ( ! is_admin() ) { return; + } // We need to save the options ourselves; settings api does not trigger save for the permalinks page if ( isset( $_POST['permalink_structure'] ) || isset( $_POST['category_base'] ) && isset( $_POST['product_permalink'] ) ) { // Cat and tag bases - $woocommerce_product_category_slug = wc_clean( $_POST['woocommerce_product_category_slug'] ); - $woocommerce_product_tag_slug = wc_clean( $_POST['woocommerce_product_tag_slug'] ); + $woocommerce_product_category_slug = wc_clean( $_POST['woocommerce_product_category_slug'] ); + $woocommerce_product_tag_slug = wc_clean( $_POST['woocommerce_product_tag_slug'] ); $woocommerce_product_attribute_slug = wc_clean( $_POST['woocommerce_product_attribute_slug'] ); $permalinks = get_option( 'woocommerce_permalinks' ); - if ( ! $permalinks ) + + if ( ! $permalinks ) { $permalinks = array(); + } $permalinks['category_base'] = untrailingslashit( $woocommerce_product_category_slug ); $permalinks['tag_base'] = untrailingslashit( $woocommerce_product_tag_slug ); @@ -176,13 +179,29 @@ class WC_Admin_Permalink_Settings { $product_permalink = wc_clean( $_POST['product_permalink'] ); if ( $product_permalink == 'custom' ) { - $product_permalink = wc_clean( $_POST['product_permalink_structure'] ); + // Get permalink without slashes + $product_permalink = trim( wc_clean( $_POST['product_permalink_structure'] ), '/' ); + + // This is an invalid base structure and breaks pages + if ( '%product_cat%' == $product_permalink ) { + $product_permalink = _x( 'product', 'slug', 'woocommerce' ) . '/' . $product_permalink; + } + + // Prepending slash + $product_permalink = '/' . $product_permalink; } elseif ( empty( $product_permalink ) ) { $product_permalink = false; } $permalinks['product_base'] = untrailingslashit( $product_permalink ); + // Shop base may require verbose page rules if nesting pages + $shop_page_id = wc_get_page_id( 'shop' ); + $shop_permalink = ( $shop_page_id > 0 && get_page( $shop_page_id ) ) ? get_page_uri( $shop_page_id ) : _x( 'shop', 'default-slug', 'woocommerce' ); + if ( $shop_page_id && trim( $permalinks['product_base'], '/' ) === $shop_permalink ) { + $permalinks['use_verbose_page_rules'] = true; + } + update_option( 'woocommerce_permalinks', $permalinks ); } } diff --git a/includes/admin/class-wc-admin-post-types.php b/includes/admin/class-wc-admin-post-types.php index 1c5b0759cbe..6b4de0b5fa3 100644 --- a/includes/admin/class-wc-admin-post-types.php +++ b/includes/admin/class-wc-admin-post-types.php @@ -14,6 +14,8 @@ if ( ! class_exists( 'WC_Admin_Post_Types' ) ) : /** * WC_Admin_Post_Types Class + * + * Handles the edit posts views and some functionality on the edit post screen for WC post types. */ class WC_Admin_Post_Types { @@ -21,27 +23,1601 @@ class WC_Admin_Post_Types { * Constructor */ public function __construct() { - add_action( 'admin_init', array( $this, 'include_post_type_handlers' ) ); add_filter( 'post_updated_messages', array( $this, 'post_updated_messages' ) ); add_action( 'admin_print_scripts', array( $this, 'disable_autosave' ) ); + // WP List table columns. Defined here so they are always available for events such as inline editing. + add_filter( 'manage_edit-product_columns', array( $this, 'product_columns' ) ); + add_filter( 'manage_edit-shop_coupon_columns', array( $this, 'shop_coupon_columns' ) ); + add_filter( 'manage_edit-shop_order_columns', array( $this, 'shop_order_columns' ) ); + + add_action( 'manage_product_posts_custom_column', array( $this, 'render_product_columns' ), 2 ); + add_action( 'manage_shop_coupon_posts_custom_column', array( $this, 'render_shop_coupon_columns' ), 2 ); + add_action( 'manage_shop_order_posts_custom_column', array( $this, 'render_shop_order_columns' ), 2 ); + + add_filter( 'manage_edit-product_sortable_columns', array( $this, 'product_sortable_columns' ) ); + add_filter( 'manage_edit-shop_coupon_sortable_columns', array( $this, 'shop_coupon_sortable_columns' ) ); + add_filter( 'manage_edit-shop_order_sortable_columns', array( $this, 'shop_order_sortable_columns' ) ); + + add_filter( 'bulk_actions-edit-shop_order', array( $this, 'shop_order_bulk_actions' ) ); + + add_filter( 'views_edit-product', array( $this, 'product_sorting_link' ) ); + + // Bulk / quick edit + add_action( 'bulk_edit_custom_box', array( $this, 'bulk_edit' ), 10, 2 ); + add_action( 'quick_edit_custom_box', array( $this, 'quick_edit' ), 10, 2 ); + add_action( 'save_post', array( $this, 'bulk_and_quick_edit_save_post' ), 10, 2 ); + add_action( 'admin_footer', array( $this, 'bulk_admin_footer' ), 10 ); + add_action( 'load-edit.php', array( $this, 'bulk_action' ) ); + add_action( 'admin_notices', array( $this, 'bulk_admin_notices' ) ); + + // Order Search + add_filter( 'get_search_query', array( $this, 'shop_order_search_label' ) ); + add_filter( 'query_vars', array( $this, 'add_custom_query_var' ) ); + add_action( 'parse_query', array( $this, 'shop_order_search_custom_fields' ) ); + + // Filters + add_action( 'restrict_manage_posts', array( $this, 'restrict_manage_posts' ) ); + add_filter( 'request', array( $this, 'request_query' ) ); + add_filter( 'parse_query', array( $this, 'product_filters_query' ) ); + add_filter( 'posts_search', array( $this, 'product_search' ) ); + // Status transitions add_action( 'delete_post', array( $this, 'delete_post' ) ); add_action( 'wp_trash_post', array( $this, 'trash_post' ) ); add_action( 'untrash_post', array( $this, 'untrash_post' ) ); + add_action( 'before_delete_post', array( $this, 'delete_order_items' ) ); + + // Edit post screens + add_filter( 'media_view_strings', array( $this, 'media_view_strings' ), 10, 2 ); + add_filter( 'enter_title_here', array( $this, 'enter_title_here' ), 1, 2 ); + add_action( 'edit_form_after_title', array( $this, 'edit_form_after_title' ) ); + add_filter( 'media_view_strings', array( $this, 'change_insert_into_post' ) ); + add_action( 'post_submitbox_misc_actions', array( $this, 'product_data_visibility' ) ); + + $this->change_featured_image_text(); + + // Uploads + add_filter( 'upload_dir', array( $this, 'upload_dir' ) ); + add_action( 'media_upload_downloadable_product', array( $this, 'media_upload_downloadable_product' ) ); + + if ( ! function_exists( 'duplicate_post_plugin_activation' ) ) { + include( 'class-wc-admin-duplicate-product.php' ); + } + + include_once( 'class-wc-admin-meta-boxes.php' ); + + // Download permissions + add_action( 'woocommerce_process_product_file_download_paths', array( $this, 'process_product_file_download_paths' ), 10, 3 ); } /** - * Conditonally load classes and functions only needed when viewing a post type. + * Define custom columns for products + * @param array $existing_columns + * @return array */ - public function include_post_type_handlers() { - include( 'post-types/class-wc-admin-meta-boxes.php' ); - include( 'post-types/class-wc-admin-cpt-product.php' ); - include( 'post-types/class-wc-admin-cpt-shop_order.php' ); - include( 'post-types/class-wc-admin-cpt-shop_coupon.php' ); + public function product_columns( $existing_columns ) { + if ( empty( $existing_columns ) && ! is_array( $existing_columns ) ) { + $existing_columns = array(); + } - if ( ! function_exists( 'duplicate_post_plugin_activation' ) ) - include( 'class-wc-admin-duplicate-product.php' ); + unset( $existing_columns['title'], $existing_columns['comments'], $existing_columns['date'] ); + + $columns = array(); + $columns['cb'] = ''; + $columns['thumb'] = '' . __( 'Image', 'woocommerce' ) . ''; + $columns['name'] = __( 'Name', 'woocommerce' ); + + if ( wc_product_sku_enabled() ) { + $columns['sku'] = __( 'SKU', 'woocommerce' ); + } + + if ( 'yes' == get_option( 'woocommerce_manage_stock' ) ) { + $columns['is_in_stock'] = __( 'Stock', 'woocommerce' ); + } + + $columns['price'] = __( 'Price', 'woocommerce' ); + $columns['product_cat'] = __( 'Categories', 'woocommerce' ); + $columns['product_tag'] = __( 'Tags', 'woocommerce' ); + $columns['featured'] = '' . __( 'Featured', 'woocommerce' ) . ''; + $columns['product_type'] = '' . __( 'Type', 'woocommerce' ) . ''; + $columns['date'] = __( 'Date', 'woocommerce' ); + + return array_merge( $columns, $existing_columns ); + } + + /** + * Define custom columns for coupons + * @param array $existing_columns + * @return array + */ + public function shop_coupon_columns( $existing_columns ) { + $columns = array(); + $columns["cb"] = ""; + $columns["coupon_code"] = __( 'Code', 'woocommerce' ); + $columns["type"] = __( 'Coupon type', 'woocommerce' ); + $columns["amount"] = __( 'Coupon amount', 'woocommerce' ); + $columns["description"] = __( 'Description', 'woocommerce' ); + $columns["products"] = __( 'Product IDs', 'woocommerce' ); + $columns["usage"] = __( 'Usage / Limit', 'woocommerce' ); + $columns["expiry_date"] = __( 'Expiry date', 'woocommerce' ); + + return $columns; + } + + /** + * Define custom columns for orders + * @param array $existing_columns + * @return array + */ + public function shop_order_columns( $existing_columns ) { + $columns = array(); + $columns['cb'] = ''; + $columns['order_status'] = '' . esc_attr__( 'Status', 'woocommerce' ) . ''; + $columns['order_title'] = __( 'Order', 'woocommerce' ); + $columns['order_items'] = __( 'Purchased', 'woocommerce' ); + $columns['shipping_address'] = __( 'Ship to', 'woocommerce' ); + $columns['customer_message'] = '' . esc_attr__( 'Customer Message', 'woocommerce' ) . ''; + $columns['order_notes'] = '' . esc_attr__( 'Order Notes', 'woocommerce' ) . ''; + $columns['order_date'] = __( 'Date', 'woocommerce' ); + $columns['order_total'] = __( 'Total', 'woocommerce' ); + $columns['order_actions'] = __( 'Actions', 'woocommerce' ); + + return $columns; + } + + /** + * Ouput custom columns for products + * @param string $column + */ + public function render_product_columns( $column ) { + global $post; + + if ( empty( $the_product ) || $the_product->id != $post->ID ) { + $the_product = wc_get_product( $post ); + } + + switch ( $column ) { + case 'thumb' : + echo '' . $the_product->get_image() . ''; + break; + case 'name' : + $edit_link = get_edit_post_link( $post->ID ); + $title = _draft_or_post_title(); + $post_type_object = get_post_type_object( $post->post_type ); + $can_edit_post = current_user_can( $post_type_object->cap->edit_post, $post->ID ); + + echo '' . $title.''; + + _post_states( $post ); + + echo ''; + + if ( $post->post_parent > 0 ) { + echo '  ← '. get_the_title( $post->post_parent ) .''; + } + + // Excerpt view + if ( isset( $_GET['mode'] ) && 'excerpt' == $_GET['mode'] ) { + echo apply_filters( 'the_excerpt', $post->post_excerpt ); + } + + // Get actions + $actions = array(); + + $actions['id'] = 'ID: ' . $post->ID; + + if ( $can_edit_post && 'trash' != $post->post_status ) { + $actions['edit'] = '' . __( 'Edit', 'woocommerce' ) . ''; + $actions['inline hide-if-no-js'] = '' . __( 'Quick Edit', 'woocommerce' ) . ''; + } + if ( current_user_can( $post_type_object->cap->delete_post, $post->ID ) ) { + if ( 'trash' == $post->post_status ) { + $actions['untrash'] = '' . __( 'Restore', 'woocommerce' ) . ''; + } elseif ( EMPTY_TRASH_DAYS ) { + $actions['trash'] = '' . __( 'Trash', 'woocommerce' ) . ''; + } + + if ( 'trash' == $post->post_status || ! EMPTY_TRASH_DAYS ) { + $actions['delete'] = '' . __( 'Delete Permanently', 'woocommerce' ) . ''; + } + } + if ( $post_type_object->public ) { + if ( in_array( $post->post_status, array( 'pending', 'draft', 'future' ) ) ) { + if ( $can_edit_post ) + $actions['view'] = '' . __( 'Preview', 'woocommerce' ) . ''; + } elseif ( 'trash' != $post->post_status ) { + $actions['view'] = '' . __( 'View', 'woocommerce' ) . ''; + } + } + + $actions = apply_filters( 'post_row_actions', $actions, $post ); + + echo '
      '; + + $i = 0; + $action_count = sizeof($actions); + + foreach ( $actions as $action => $link ) { + ++$i; + ( $i == $action_count ) ? $sep = '' : $sep = ' | '; + echo '' . $link . $sep . ''; + } + echo '
      '; + + get_inline_data( $post ); + + /* Custom inline data for woocommerce */ + echo ' + + '; + + break; + case 'sku' : + echo $the_product->get_sku() ? $the_product->get_sku() : ''; + break; + case 'product_type' : + if ( 'grouped' == $the_product->product_type ) { + echo ''; + } elseif ( 'external' == $the_product->product_type ) { + echo ''; + } elseif ( 'simple' == $the_product->product_type ) { + + if ( $the_product->is_virtual() ) { + echo ''; + } elseif ( $the_product->is_downloadable() ) { + echo ''; + } else { + echo ''; + } + + } elseif ( 'variable' == $the_product->product_type ) { + echo ''; + } else { + // Assuming that we have other types in future + echo ''; + } + break; + case 'price' : + echo $the_product->get_price_html() ? $the_product->get_price_html() : ''; + break; + case 'product_cat' : + case 'product_tag' : + if ( ! $terms = get_the_terms( $post->ID, $column ) ) { + echo ''; + } else { + foreach ( $terms as $term ) { + $termlist[] = '' . $term->name . ''; + } + + echo implode( ', ', $termlist ); + } + break; + case 'featured' : + $url = wp_nonce_url( admin_url( 'admin-ajax.php?action=woocommerce_feature_product&product_id=' . $post->ID ), 'woocommerce-feature-product' ); + echo ''; + if ( $the_product->is_featured() ) { + echo '' . __( 'Yes', 'woocommerce' ) . ''; + } else { + echo '' . __( 'No', 'woocommerce' ) . ''; + } + echo ''; + break; + case 'is_in_stock' : + + if ( $the_product->is_in_stock() ) { + echo '' . __( 'In stock', 'woocommerce' ) . ''; + } else { + echo '' . __( 'Out of stock', 'woocommerce' ) . ''; + } + + if ( $the_product->managing_stock() ) { + echo ' × ' . $the_product->get_total_stock(); + } + + break; + + default : + break; + } + } + + /** + * Output custom columns for coupons + * @param string $column + */ + public function render_shop_coupon_columns( $column ) { + global $post, $woocommerce; + + switch ( $column ) { + case "coupon_code" : + $edit_link = get_edit_post_link( $post->ID ); + $title = _draft_or_post_title(); + $post_type_object = get_post_type_object( $post->post_type ); + $can_edit_post = current_user_can( $post_type_object->cap->edit_post, $post->ID ); + + echo ''; + + _post_states( $post ); + + // Get actions + $actions = array(); + + if ( current_user_can( $post_type_object->cap->delete_post, $post->ID ) ) { + if ( 'trash' == $post->post_status ) + $actions['untrash'] = "ID ) ), 'untrash-post_' . $post->ID ) . "'>" . __( 'Restore', 'woocommerce' ) . ""; + elseif ( EMPTY_TRASH_DAYS ) + $actions['trash'] = "" . __( 'Trash', 'woocommerce' ) . ""; + if ( 'trash' == $post->post_status || !EMPTY_TRASH_DAYS ) + $actions['delete'] = "" . __( 'Delete Permanently', 'woocommerce' ) . ""; + } + + $actions = apply_filters( 'post_row_actions', $actions, $post ); + + echo '
      '; + + $i = 0; + $action_count = sizeof($actions); + + foreach ( $actions as $action => $link ) { + ++$i; + ( $i == $action_count ) ? $sep = '' : $sep = ' | '; + echo "$link$sep"; + } + echo '
      '; + + break; + case "type" : + echo esc_html( wc_get_coupon_type( get_post_meta( $post->ID, 'discount_type', true ) ) ); + break; + case "amount" : + echo esc_html( get_post_meta( $post->ID, 'coupon_amount', true ) ); + break; + case "products" : + $product_ids = get_post_meta( $post->ID, 'product_ids', true ); + $product_ids = $product_ids ? array_map( 'absint', explode( ',', $product_ids ) ) : array(); + if ( sizeof( $product_ids ) > 0 ) + echo esc_html( implode( ', ', $product_ids ) ); + else + echo '–'; + break; + case "usage_limit" : + $usage_limit = get_post_meta( $post->ID, 'usage_limit', true ); + + if ( $usage_limit ) + echo esc_html( $usage_limit ); + else + echo '–'; + break; + case "usage" : + $usage_count = absint( get_post_meta( $post->ID, 'usage_count', true ) ); + $usage_limit = esc_html( get_post_meta($post->ID, 'usage_limit', true) ); + + if ( $usage_limit ) + printf( __( '%s / %s', 'woocommerce' ), $usage_count, $usage_limit ); + else + printf( __( '%s / ∞', 'woocommerce' ), $usage_count ); + break; + case "expiry_date" : + $expiry_date = get_post_meta($post->ID, 'expiry_date', true); + + if ( $expiry_date ) + echo esc_html( date_i18n( 'F j, Y', strtotime( $expiry_date ) ) ); + else + echo '–'; + break; + case "description" : + echo wp_kses_post( $post->post_excerpt ); + break; + } + } + + /** + * Output custom columns for coupons + * @param string $column + */ + public function render_shop_order_columns( $column ) { + global $post, $woocommerce, $the_order; + + if ( empty( $the_order ) || $the_order->id != $post->ID ) { + $the_order = wc_get_order( $post->ID ); + } + + switch ( $column ) { + case 'order_status' : + + printf( '%s', sanitize_title( $the_order->get_status() ), wc_get_order_status_name( $the_order->get_status() ), wc_get_order_status_name( $the_order->get_status() ) ); + + break; + case 'order_date' : + + if ( '0000-00-00 00:00:00' == $post->post_date ) { + $t_time = $h_time = __( 'Unpublished', 'woocommerce' ); + } else { + $t_time = get_the_time( __( 'Y/m/d g:i:s A', 'woocommerce' ), $post ); + $gmt_time = strtotime( $post->post_date_gmt . ' UTC' ); + $time_diff = current_time( 'timestamp', 1 ) - $gmt_time; + $h_time = get_the_time( __( 'Y/m/d', 'woocommerce' ), $post ); + } + + echo '' . esc_html( apply_filters( 'post_date_column_time', $h_time, $post ) ) . ''; + + break; + case 'customer_message' : + + if ( $the_order->customer_message ) + echo '' . __( 'Yes', 'woocommerce' ) . ''; + else + echo ''; + + break; + case 'order_items' : + + echo '' . apply_filters( 'woocommerce_admin_order_item_count', sprintf( _n( '%d item', '%d items', $the_order->get_item_count(), 'woocommerce' ), $the_order->get_item_count() ), $the_order ) . ''; + + if ( sizeof( $the_order->get_items() ) > 0 ) { + + echo '
    '; + + foreach ( $the_order->get_items() as $item ) { + $_product = apply_filters( 'woocommerce_order_item_product', $the_order->get_product_from_item( $item ), $item ); + $item_meta = new WC_Order_Item_Meta( $item['item_meta'] ); + $item_meta_html = $item_meta->display( true, true ); + ?> + + + + + '; + + } else echo '–'; + break; + case 'shipping_address' : + if ( $the_order->get_formatted_shipping_address() ) + echo ''. esc_html( preg_replace( '##i', ', ', $the_order->get_formatted_shipping_address() ) ) .''; + else + echo '–'; + + if ( $the_order->get_shipping_method() ) + echo '' . __( 'Via', 'woocommerce' ) . ' ' . esc_html( $the_order->get_shipping_method() ) . ''; + + break; + case 'order_notes' : + + if ( $post->comment_count ) { + + // check the status of the post + ( $post->post_status !== 'trash' ) ? $status = '' : $status = 'post-trashed'; + + $latest_notes = get_comments( array( + 'post_id' => $post->ID, + 'number' => 1, + 'status' => $status + ) ); + + $latest_note = current( $latest_notes ); + + if ( $post->comment_count == 1 ) { + echo '' . __( 'Yes', 'woocommerce' ) . ''; + } else { + $note_tip = isset( $latest_note->comment_content ) ? esc_attr( $latest_note->comment_content . '' . sprintf( _n( 'plus %d other note', 'plus %d other notes', ( $post->comment_count - 1 ), 'woocommerce' ), ( $post->comment_count - 1 ) ) . '' ) : sprintf( _n( '%d note', '%d notes', $post->comment_count, 'woocommerce' ), $post->comment_count ); + + echo '' . __( 'Yes', 'woocommerce' ) . ''; + } + + } else { + echo ''; + } + + break; + case 'order_total' : + echo esc_html( strip_tags( $the_order->get_formatted_order_total() ) ); + + if ( $the_order->payment_method_title ) { + echo '' . __( 'Via', 'woocommerce' ) . ' ' . esc_html( $the_order->payment_method_title ) . ''; + } + break; + case 'order_title' : + + $customer_tip = ''; + + if ( $address = $the_order->get_formatted_billing_address() ) { + $customer_tip .= __( 'Billing:', 'woocommerce' ) . ' ' . $address . '

    '; + } + + if ( $the_order->billing_phone ) { + $customer_tip .= __( 'Tel:', 'woocommerce' ) . ' ' . $the_order->billing_phone; + } + + echo '
    '; + + if ( $the_order->user_id ) { + $user_info = get_userdata( $the_order->user_id ); + } + + if ( ! empty( $user_info ) ) { + + $username = ''; + + if ( $user_info->first_name || $user_info->last_name ) { + $username .= esc_html( ucfirst( $user_info->first_name ) . ' ' . ucfirst( $user_info->last_name ) ); + } else { + $username .= esc_html( ucfirst( $user_info->display_name ) ); + } + + $username .= ''; + + } else { + if ( $the_order->billing_first_name || $the_order->billing_last_name ) { + $username = trim( $the_order->billing_first_name . ' ' . $the_order->billing_last_name ); + } else { + $username = __( 'Guest', 'woocommerce' ); + } + } + + printf( __( '%s by %s', 'woocommerce' ), '' . esc_attr( $the_order->get_order_number() ) . '', $username ); + + if ( $the_order->billing_email ) { + echo ''; + } + + echo '
    '; + + break; + case 'order_actions' : + + ?>

    + has_status( array( 'pending', 'on-hold' ) ) ) { + $actions['processing'] = array( + 'url' => wp_nonce_url( admin_url( 'admin-ajax.php?action=woocommerce_mark_order_processing&order_id=' . $post->ID ), 'woocommerce-mark-order-processing' ), + 'name' => __( 'Processing', 'woocommerce' ), + 'action' => "processing" + ); + } + + if ( $the_order->has_status( array( 'pending', 'on-hold', 'processing' ) ) ) { + $actions['complete'] = array( + 'url' => wp_nonce_url( admin_url( 'admin-ajax.php?action=woocommerce_mark_order_complete&order_id=' . $post->ID ), 'woocommerce-mark-order-complete' ), + 'name' => __( 'Complete', 'woocommerce' ), + 'action' => "complete" + ); + } + + $actions['view'] = array( + 'url' => admin_url( 'post.php?post=' . $post->ID . '&action=edit' ), + 'name' => __( 'View', 'woocommerce' ), + 'action' => "view" + ); + + $actions = apply_filters( 'woocommerce_admin_order_actions', $actions, $the_order ); + + foreach ( $actions as $action ) { + printf( '%s', esc_attr( $action['action'] ), esc_url( $action['url'] ), esc_attr( $action['name'] ), esc_attr( $action['name'] ) ); + } + + do_action( 'woocommerce_admin_order_actions_end', $the_order ); + ?> +

    'price', + 'featured' => 'featured', + 'sku' => 'sku', + 'name' => 'title' + ); + return wp_parse_args( $custom, $columns ); + } + + /** + * Make columns sortable - https://gist.github.com/906872 + * + * @param array $columns + * @return array + */ + public function shop_coupon_sortable_columns( $columns ) { + return $columns; + } + + /** + * Make columns sortable - https://gist.github.com/906872 + * + * @param array $columns + * @return array + */ + public function shop_order_sortable_columns( $columns ) { + $custom = array( + 'order_title' => 'ID', + 'order_total' => 'order_total', + 'order_date' => 'date' + ); + unset( $columns['comments'] ); + + return wp_parse_args( $custom, $columns ); + } + + /** + * Remove edit from the bulk actions. + * + * @param array $actions + * @return array + */ + public function shop_order_bulk_actions( $actions ) { + if ( isset( $actions['edit'] ) ) { + unset( $actions['edit'] ); + } + return $actions; + } + + /** + * Product sorting link + * + * Based on Simple Page Ordering by 10up (http://wordpress.org/extend/plugins/simple-page-ordering/) + * + * @param array $views + * @return array + */ + public function product_sorting_link( $views ) { + global $post_type, $wp_query; + + if ( ! current_user_can('edit_others_pages') ) { + return $views; + } + + $class = ( isset( $wp_query->query['orderby'] ) && $wp_query->query['orderby'] == 'menu_order title' ) ? 'current' : ''; + $query_string = remove_query_arg(array( 'orderby', 'order' )); + $query_string = add_query_arg( 'orderby', urlencode('menu_order title'), $query_string ); + $query_string = add_query_arg( 'order', urlencode('ASC'), $query_string ); + $views['byorder'] = '' . __( 'Sort Products', 'woocommerce' ) . ''; + + return $views; + } + + + /** + * Custom bulk edit - form + * + * @access public + * @param mixed $column_name + * @param mixed $post_type + */ + public function bulk_edit( $column_name, $post_type ) { + if ( 'price' != $column_name || 'product' != $post_type ) { + return; + } + + include( WC()->plugin_path() . '/includes/admin/views/html-bulk-edit-product.php' ); + } + + /** + * Custom quick edit - form + * + * @access public + * @param mixed $column_name + * @param mixed $post_type + */ + public function quick_edit( $column_name, $post_type ) { + if ( 'price' != $column_name || 'product' != $post_type ) { + return; + } + + include( WC()->plugin_path() . '/includes/admin/views/html-quick-edit-product.php' ); + } + + /** + * Quick and bulk edit saving + * + * @access public + * @param int $post_id + * @param WP_Post $post + * @return int + */ + public function bulk_and_quick_edit_save_post( $post_id, $post ) { + // If this is an autosave, our form has not been submitted, so we don't want to do anything. + if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { + return $post_id; + } + + // Don't save revisions and autosaves + if ( wp_is_post_revision( $post_id ) || wp_is_post_autosave( $post_id ) ) { + return $post_id; + } + + // Check post type is product + if ( 'product' != $post->post_type ) { + return $post_id; + } + + // Check user permission + if ( ! current_user_can( 'edit_post', $post_id ) ) { + return $post_id; + } + + // Check nonces + if ( ! isset( $_REQUEST['woocommerce_quick_edit_nonce'] ) && ! isset( $_REQUEST['woocommerce_bulk_edit_nonce'] ) ) { + return $post_id; + } + if ( isset( $_REQUEST['woocommerce_quick_edit_nonce'] ) && ! wp_verify_nonce( $_REQUEST['woocommerce_quick_edit_nonce'], 'woocommerce_quick_edit_nonce' ) ) { + return $post_id; + } + if ( isset( $_REQUEST['woocommerce_bulk_edit_nonce'] ) && ! wp_verify_nonce( $_REQUEST['woocommerce_bulk_edit_nonce'], 'woocommerce_bulk_edit_nonce' ) ) { + return $post_id; + } + + // Get the product and save + $product = wc_get_product( $post ); + + if ( ! empty( $_REQUEST['woocommerce_quick_edit'] ) ) { + $this->quick_edit_save( $post_id, $product ); + } else { + $this->bulk_edit_save( $post_id, $product ); + } + + // Clear transient + wc_delete_product_transients( $post_id ); + + return $post_id; + } + + /** + * Quick edit + * @param integer $post_id + */ + private function quick_edit_save( $post_id, $product ) { + global $wpdb; + + $old_regular_price = $product->regular_price; + $old_sale_price = $product->sale_price; + + // Save fields + if ( isset( $_REQUEST['_sku'] ) ) { + $sku = get_post_meta( $post_id, '_sku', true ); + $new_sku = wc_clean( stripslashes( $_REQUEST['_sku'] ) ); + + if ( $new_sku !== $sku ) { + if ( ! empty( $new_sku ) ) { + $unique_sku = wc_product_has_unique_sku( $post_id, $new_sku ); + if ( $unique_sku ) { + update_post_meta( $post_id, '_sku', $new_sku ); + } + } else { + update_post_meta( $post_id, '_sku', '' ); + } + } + } + + if ( isset( $_REQUEST['_weight'] ) ) { + update_post_meta( $post_id, '_weight', wc_clean( $_REQUEST['_weight'] ) ); + } + + if ( isset( $_REQUEST['_length'] ) ) { + update_post_meta( $post_id, '_length', wc_clean( $_REQUEST['_length'] ) ); + } + + if ( isset( $_REQUEST['_width'] ) ) { + update_post_meta( $post_id, '_width', wc_clean( $_REQUEST['_width'] ) ); + } + + if ( isset( $_REQUEST['_height'] ) ) { + update_post_meta( $post_id, '_height', wc_clean( $_REQUEST['_height'] ) ); + } + + if ( isset( $_REQUEST['_visibility'] ) ) { + if ( update_post_meta( $post_id, '_visibility', wc_clean( $_REQUEST['_visibility'] ) ) ) { + do_action( 'woocommerce_product_set_visibility', $post_id, wc_clean( $_REQUEST['_visibility'] ) ); + } + } + + if ( isset( $_REQUEST['_featured'] ) ) { + if ( update_post_meta( $post_id, '_featured', isset( $_REQUEST['_featured'] ) ? 'yes' : 'no' ) ) { + delete_transient( 'wc_featured_products' ); + } + } + + if ( isset( $_REQUEST['_tax_status'] ) ) { + update_post_meta( $post_id, '_tax_status', wc_clean( $_REQUEST['_tax_status'] ) ); + } + + if ( isset( $_REQUEST['_tax_class'] ) ) { + update_post_meta( $post_id, '_tax_class', wc_clean( $_REQUEST['_tax_class'] ) ); + } + + if ( $product->is_type('simple') || $product->is_type('external') ) { + + if ( isset( $_REQUEST['_regular_price'] ) ) { + $new_regular_price = $_REQUEST['_regular_price'] === '' ? '' : wc_format_decimal( $_REQUEST['_regular_price'] ); + update_post_meta( $post_id, '_regular_price', $new_regular_price ); + } else { + $new_regular_price = null; + } + if ( isset( $_REQUEST['_sale_price'] ) ) { + $new_sale_price = $_REQUEST['_sale_price'] === '' ? '' : wc_format_decimal( $_REQUEST['_sale_price'] ); + update_post_meta( $post_id, '_sale_price', $new_sale_price ); + } else { + $new_sale_price = null; + } + + // Handle price - remove dates and set to lowest + $price_changed = false; + + if ( ! is_null( $new_regular_price ) && $new_regular_price != $old_regular_price ) { + $price_changed = true; + } elseif ( ! is_null( $new_sale_price ) && $new_sale_price != $old_sale_price ) { + $price_changed = true; + } + + if ( $price_changed ) { + update_post_meta( $post_id, '_sale_price_dates_from', '' ); + update_post_meta( $post_id, '_sale_price_dates_to', '' ); + + if ( ! is_null( $new_sale_price ) && $new_sale_price !== '' ) { + update_post_meta( $post_id, '_price', $new_sale_price ); + } else { + update_post_meta( $post_id, '_price', $new_regular_price ); + } + } + } + + // Handle stock status + if ( isset( $_REQUEST['_stock_status'] ) ) { + wc_update_product_stock_status( $post_id, wc_clean( $_REQUEST['_stock_status'] ) ); + } + + // Handle stock + if ( ! $product->is_type('grouped') ) { + if ( isset( $_REQUEST['_manage_stock'] ) ) { + update_post_meta( $post_id, '_manage_stock', 'yes' ); + wc_update_product_stock( $post_id, wc_stock_amount( $_REQUEST['_stock'] ) ); + } else { + update_post_meta( $post_id, '_manage_stock', 'no' ); + wc_update_product_stock( $post_id, 0 ); + } + + if ( ! empty( $_REQUEST['_backorders'] ) ) { + update_post_meta( $post_id, '_backorders', wc_clean( $_REQUEST['_backorders'] ) ); + } + } + + do_action( 'woocommerce_product_quick_edit_save', $product ); + } + + /** + * Bulk edit + * @param integer $post_id + */ + public function bulk_edit_save( $post_id, $product ) { + + $old_regular_price = $product->regular_price; + $old_sale_price = $product->sale_price; + + // Save fields + if ( ! empty( $_REQUEST['change_weight'] ) && isset( $_REQUEST['_weight'] ) ) { + update_post_meta( $post_id, '_weight', wc_clean( stripslashes( $_REQUEST['_weight'] ) ) ); + } + + if ( ! empty( $_REQUEST['change_dimensions'] ) ) { + if ( isset( $_REQUEST['_length'] ) ) { + update_post_meta( $post_id, '_length', wc_clean( stripslashes( $_REQUEST['_length'] ) ) ); + } + if ( isset( $_REQUEST['_width'] ) ) { + update_post_meta( $post_id, '_width', wc_clean( stripslashes( $_REQUEST['_width'] ) ) ); + } + if ( isset( $_REQUEST['_height'] ) ) { + update_post_meta( $post_id, '_height', wc_clean( stripslashes( $_REQUEST['_height'] ) ) ); + } + } + + if ( ! empty( $_REQUEST['_tax_status'] ) ) { + update_post_meta( $post_id, '_tax_status', wc_clean( $_REQUEST['_tax_status'] ) ); + } + + if ( ! empty( $_REQUEST['_tax_class'] ) ) { + $tax_class = wc_clean( $_REQUEST['_tax_class'] ); + if ( 'standard' == $tax_class ) { + $tax_class = ''; + } + update_post_meta( $post_id, '_tax_class', $tax_class ); + } + + if ( ! empty( $_REQUEST['_stock_status'] ) ) { + wc_update_product_stock_status( $post_id, wc_clean( $_REQUEST['_stock_status'] ) ); + } + + if ( ! empty( $_REQUEST['_visibility'] ) ) { + if ( update_post_meta( $post_id, '_visibility', wc_clean( $_REQUEST['_visibility'] ) ) ) { + do_action( 'woocommerce_product_set_visibility', $post_id, wc_clean( $_REQUEST['_visibility'] ) ); + } + } + + if ( ! empty( $_REQUEST['_featured'] ) ) { + if ( update_post_meta( $post_id, '_featured', stripslashes( $_REQUEST['_featured'] ) ) ) { + delete_transient( 'wc_featured_products' ); + } + } + + // Sold Individually + if ( ! empty( $_REQUEST['_sold_individually'] ) ) { + if ( $_REQUEST['_sold_individually'] == 'yes' ) { + update_post_meta( $post_id, '_sold_individually', 'yes' ); + } + else { + update_post_meta( $post_id, '_sold_individually', '' ); + } + } + + // Handle price - remove dates and set to lowest + if ( $product->is_type( 'simple' ) || $product->is_type( 'external' ) ) { + + $price_changed = false; + + if ( ! empty( $_REQUEST['change_regular_price'] ) ) { + + $change_regular_price = absint( $_REQUEST['change_regular_price'] ); + $regular_price = esc_attr( stripslashes( $_REQUEST['_regular_price'] ) ); + + switch ( $change_regular_price ) { + case 1 : + $new_price = $regular_price; + break; + case 2 : + if ( strstr( $regular_price, '%' ) ) { + $percent = str_replace( '%', '', $regular_price ) / 100; + $new_price = $old_regular_price + ( round( $old_regular_price * $percent, absint( get_option( 'woocommerce_price_num_decimals' ) ) ) ); + } else { + $new_price = $old_regular_price + $regular_price; + } + break; + case 3 : + if ( strstr( $regular_price, '%' ) ) { + $percent = str_replace( '%', '', $regular_price ) / 100; + $new_price = max( 0, $old_regular_price - ( round ( $old_regular_price * $percent, absint( get_option( 'woocommerce_price_num_decimals' ) ) ) ) ); + } else { + $new_price = max( 0, $old_regular_price - $regular_price ); + } + break; + + default : + break; + } + + if ( isset( $new_price ) && $new_price != $old_regular_price ) { + $price_changed = true; + $new_price = round( $new_price, absint( get_option( 'woocommerce_price_num_decimals' ) ) ); + update_post_meta( $post_id, '_regular_price', $new_price ); + $product->regular_price = $new_price; + } + } + + if ( ! empty( $_REQUEST['change_sale_price'] ) ) { + + $change_sale_price = absint( $_REQUEST['change_sale_price'] ); + $sale_price = esc_attr( stripslashes( $_REQUEST['_sale_price'] ) ); + + switch ( $change_sale_price ) { + case 1 : + $new_price = $sale_price; + break; + case 2 : + if ( strstr( $sale_price, '%' ) ) { + $percent = str_replace( '%', '', $sale_price ) / 100; + $new_price = $old_sale_price + ( $old_sale_price * $percent ); + } else { + $new_price = $old_sale_price + $sale_price; + } + break; + case 3 : + if ( strstr( $sale_price, '%' ) ) { + $percent = str_replace( '%', '', $sale_price ) / 100; + $new_price = max( 0, $old_sale_price - ( $old_sale_price * $percent ) ); + } else { + $new_price = max( 0, $old_sale_price - $sale_price ); + } + break; + case 4 : + if ( strstr( $sale_price, '%' ) ) { + $percent = str_replace( '%', '', $sale_price ) / 100; + $new_price = max( 0, $product->regular_price - ( $product->regular_price * $percent ) ); + } else { + $new_price = max( 0, $product->regular_price - $sale_price ); + } + break; + + default : + break; + } + + if ( isset( $new_price ) && $new_price != $old_sale_price ) { + $price_changed = true; + $new_price = round( $new_price, absint( get_option( 'woocommerce_price_num_decimals' ) ) ); + update_post_meta( $post_id, '_sale_price', $new_price ); + $product->sale_price = $new_price; + } + } + + if ( $price_changed ) { + update_post_meta( $post_id, '_sale_price_dates_from', '' ); + update_post_meta( $post_id, '_sale_price_dates_to', '' ); + + if ( $product->regular_price < $product->sale_price ) { + $product->sale_price = ''; + update_post_meta( $post_id, '_sale_price', '' ); + } + + if ( $product->sale_price ) { + update_post_meta( $post_id, '_price', $product->sale_price ); + } else { + update_post_meta( $post_id, '_price', $product->regular_price ); + } + } + } + + // Handle stock + if ( ! $product->is_type( 'grouped' ) ) { + + if ( ! empty( $_REQUEST['change_stock'] ) ) { + update_post_meta( $post_id, '_manage_stock', 'yes' ); + wc_update_product_stock( $post_id, wc_stock_amount( $_REQUEST['_stock'] ) ); + } + + if ( ! empty( $_REQUEST['_manage_stock'] ) ) { + + if ( $_REQUEST['_manage_stock'] == 'yes' ) { + update_post_meta( $post_id, '_manage_stock', 'yes' ); + } else { + update_post_meta( $post_id, '_manage_stock', 'no' ); + wc_update_product_stock( $post_id, 0 ); + } + } + + if ( ! empty( $_REQUEST['_backorders'] ) ) { + update_post_meta( $post_id, '_backorders', wc_clean( $_REQUEST['_backorders'] ) ); + } + + } + + do_action( 'woocommerce_product_bulk_edit_save', $product ); + } + + /** + * Add extra bulk action options to mark orders as complete or processing + * + * Using Javascript until WordPress core fixes: http://core.trac.wordpress.org/ticket/16031 + * + * @access public + * @return void + */ + public function bulk_admin_footer() { + global $post_type; + + if ( 'shop_order' == $post_type ) { + ?> + + current_action(); + + switch ( $action ) { + case 'mark_completed': + $new_status = 'completed'; + $report_action = 'marked_complete'; + break; + case 'mark_processing': + $new_status = 'processing'; + $report_action = 'marked_processing'; + break; + case 'mark_on-hold' : + $new_status = 'on-hold'; + $report_action = 'marked_on-hold'; + break; + break; + default: + return; + } + + $changed = 0; + + $post_ids = array_map( 'absint', (array) $_REQUEST['post'] ); + + foreach ( $post_ids as $post_id ) { + $order = wc_get_order( $post_id ); + $order->update_status( $new_status, __( 'Order status changed by bulk edit:', 'woocommerce' ) ); + $changed++; + } + + $sendback = add_query_arg( array( 'post_type' => 'shop_order', $report_action => true, 'changed' => $changed, 'ids' => join( ',', $post_ids ) ), '' ); + wp_redirect( $sendback ); + exit(); + } + + /** + * Show confirmation message that order status changed for number of orders + * + * @access public + * @return void + */ + public function bulk_admin_notices() { + global $post_type, $pagenow; + + if ( isset( $_REQUEST['marked_complete'] ) || isset( $_REQUEST['marked_processing'] ) || isset( $_REQUEST['marked_on-hold'] ) ) { + $number = isset( $_REQUEST['changed'] ) ? absint( $_REQUEST['changed'] ) : 0; + + if ( 'edit.php' == $pagenow && 'shop_order' == $post_type ) { + $message = sprintf( _n( 'Order status changed.', '%s order statuses changed.', $number, 'woocommerce' ), number_format_i18n( $number ) ); + echo '

    ' . $message . '

    '; + } + } + } + + + /** + * Search custom fields as well as content. + * + * @access public + * @param WP_Query $wp + * @return void + */ + public function shop_order_search_custom_fields( $wp ) { + global $pagenow, $wpdb; + + if ( 'edit.php' != $pagenow || empty( $wp->query_vars['s'] ) || $wp->query_vars['post_type'] != 'shop_order' ) { + return; + } + + $search_fields = array_map( 'wc_clean', apply_filters( 'woocommerce_shop_order_search_fields', array( + '_order_key', + '_billing_company', + '_billing_address_1', + '_billing_address_2', + '_billing_city', + '_billing_postcode', + '_billing_country', + '_billing_state', + '_billing_email', + '_billing_phone', + '_shipping_address_1', + '_shipping_address_2', + '_shipping_city', + '_shipping_postcode', + '_shipping_country', + '_shipping_state' + ) ) ); + + $search_order_id = str_replace( 'Order #', '', $_GET['s'] ); + if ( ! is_numeric( $search_order_id ) ) { + $search_order_id = 0; + } + + // Search orders + $post_ids = array_unique( array_merge( + $wpdb->get_col( + $wpdb->prepare( " + SELECT p1.post_id + FROM {$wpdb->postmeta} p1 + INNER JOIN {$wpdb->postmeta} p2 ON p1.post_id = p2.post_id + WHERE + ( p1.meta_key = '_billing_first_name' AND p2.meta_key = '_billing_last_name' AND CONCAT(p1.meta_value, ' ', p2.meta_value) LIKE '%%%s%%' ) + OR + ( p1.meta_key = '_shipping_first_name' AND p2.meta_key = '_shipping_last_name' AND CONCAT(p1.meta_value, ' ', p2.meta_value) LIKE '%%%s%%' ) + OR + ( p1.meta_key IN ('" . implode( "','", $search_fields ) . "') AND p1.meta_value LIKE '%%%s%%' ) + ", + esc_attr( $_GET['s'] ), esc_attr( $_GET['s'] ), esc_attr( $_GET['s'] ) + ) + ), + $wpdb->get_col( + $wpdb->prepare( " + SELECT order_id + FROM {$wpdb->prefix}woocommerce_order_items as order_items + WHERE order_item_name LIKE '%%%s%%' + ", + esc_attr( $_GET['s'] ) + ) + ), + array( $search_order_id ) + ) ); + + // Remove s - we don't want to search order name + unset( $wp->query_vars['s'] ); + + // so we know we're doing this + $wp->query_vars['shop_order_search'] = true; + + // Search by found posts + $wp->query_vars['post__in'] = $post_ids; + } + + /** + * Change the label when searching orders. + * + * @access public + * @param mixed $query + * @return string + */ + public function shop_order_search_label( $query ) { + global $pagenow, $typenow; + + if ( 'edit.php' != $pagenow ) { + return $query; + } + + if ( $typenow != 'shop_order' ) { + return $query; + } + + if ( ! get_query_var( 'shop_order_search' ) ) { + return $query; + } + + return wp_unslash( $_GET['s'] ); + } + + /** + * Query vars for custom searches. + * + * @access public + * @param mixed $public_query_vars + * @return array + */ + public function add_custom_query_var( $public_query_vars ) { + $public_query_vars[] = 'sku'; + $public_query_vars[] = 'shop_order_search'; + + return $public_query_vars; + } + + /** + * Filters for post types + */ + public function restrict_manage_posts() { + global $typenow, $wp_query; + + switch ( $typenow ) { + case 'product' : + $this->product_filters(); + break; + case 'shop_coupon' : + $this->shop_coupon_filters(); + break; + case 'shop_order' : + $this->shop_order_filters(); + break; + default : + break; + } + } + + /** + * Show a category filter box + */ + public function product_filters() { + global $wp_query; + + // Category Filtering + wc_product_dropdown_categories(); + + // Type filtering + $terms = get_terms( 'product_type' ); + $output = ''; + + echo apply_filters( 'woocommerce_product_filters', $output ); + } + + /** + * Show custom filters to filter coupons by type. + */ + public function shop_coupon_filters() { + ?> + + + + '_price', + 'orderby' => 'meta_value_num' + ) ); + } + if ( 'featured' == $vars['orderby'] ) { + $vars = array_merge( $vars, array( + 'meta_key' => '_featured', + 'orderby' => 'meta_value' + ) ); + } + if ( 'sku' == $vars['orderby'] ) { + $vars = array_merge( $vars, array( + 'meta_key' => '_sku', + 'orderby' => 'meta_value' + ) ); + } + } + + } elseif ( 'shop_coupon' === $typenow ) { + + if ( ! empty( $_GET['coupon_type'] ) ) { + $vars['meta_key'] = 'discount_type'; + $vars['meta_value'] = wc_clean( $_GET['coupon_type'] ); + } + + } elseif ( 'shop_order' === $typenow ) { + + // Filter the orders by the posted customer. + if ( isset( $_GET['_customer_user'] ) && $_GET['_customer_user'] > 0 ) { + $vars['meta_key'] = '_customer_user'; + $vars['meta_value'] = (int) $_GET['_customer_user']; + } + + // Sorting + if ( isset( $vars['orderby'] ) ) { + if ( 'order_total' == $vars['orderby'] ) { + $vars = array_merge( $vars, array( + 'meta_key' => '_order_total', + 'orderby' => 'meta_value_num' + ) ); + } + } + } + + return $vars; + } + + /** + * Filter the products in admin based on options + * + * @param mixed $query + */ + public function product_filters_query( $query ) { + global $typenow, $wp_query; + + if ( 'product' == $typenow ) { + + if ( isset( $query->query_vars['product_type'] ) ) { + // Subtypes + if ( 'downloadable' == $query->query_vars['product_type'] ) { + $query->query_vars['product_type'] = ''; + $query->query_vars['meta_value'] = 'yes'; + $query->query_vars['meta_key'] = '_downloadable'; + } elseif ( 'virtual' == $query->query_vars['product_type'] ) { + $query->query_vars['product_type'] = ''; + $query->query_vars['meta_value'] = 'yes'; + $query->query_vars['meta_key'] = '_virtual'; + } + } + + // Categories + if ( isset( $_GET['product_cat'] ) && '0' == $_GET['product_cat'] ) { + $query->query_vars['tax_query'][] = array( + 'taxonomy' => 'product_cat', + 'field' => 'id', + 'terms' => get_terms( 'product_cat', array( 'fields' => 'ids' ) ), + 'operator' => 'NOT IN' + ); + } + } + } + + /** + * Search by SKU or ID for products. + * @param string $where + * @return string + */ + public function product_search( $where ) { + global $pagenow, $wpdb, $wp; + + if ( 'edit.php' != $pagenow || ! is_search() || ! isset( $wp->query_vars['s'] ) || 'product' != $wp->query_vars['post_type'] ) { + return $where; + } + + $search_ids = array(); + $terms = explode( ',', $wp->query_vars['s'] ); + + foreach ( $terms as $term ) { + if ( is_numeric( $term ) ) { + $search_ids[] = $term; + } + // Attempt to get a SKU + $sku_to_id = $wpdb->get_col( $wpdb->prepare( "SELECT post_id FROM {$wpdb->postmeta} WHERE meta_key='_sku' AND meta_value LIKE '%%%s%%';", wc_clean( $term ) ) ); + + if ( $sku_to_id && sizeof( $sku_to_id ) > 0 ) { + $search_ids = array_merge( $search_ids, $sku_to_id ); + } + } + + $search_ids = array_filter( array_map( 'absint', $search_ids ) ); + + if ( sizeof( $search_ids ) > 0 ) { + $where = str_replace( ')))', ") OR ({$wpdb->posts}.ID IN (" . implode( ',', $search_ids ) . "))))", $where ); + } + + return $where; } /** @@ -135,27 +1711,39 @@ class WC_Admin_Post_Types { switch( $post_type ) { case 'product' : - if ( $child_product_variations =& get_children( 'post_parent=' . $id . '&post_type=product_variation' ) ) - if ( $child_product_variations ) - foreach ( $child_product_variations as $child ) - wp_delete_post( $child->ID, true ); + $child_product_variations = get_children( 'post_parent=' . $id . '&post_type=product_variation' ); - if ( $child_products =& get_children( 'post_parent=' . $id . '&post_type=product' ) ) - if ( $child_products ) - foreach ( $child_products as $child ) { - $child_post = array(); - $child_post['ID'] = $child->ID; - $child_post['post_parent'] = 0; - wp_update_post( $child_post ); - } + if ( $child_product_variations ) { + foreach ( $child_product_variations as $child ) { + wp_delete_post( $child->ID, true ); + } + } - wc_delete_product_transients(); + $child_products = get_children( 'post_parent=' . $id . '&post_type=product' ); + + if ( $child_products ) { + foreach ( $child_products as $child ) { + $child_post = array(); + $child_post['ID'] = $child->ID; + $child_post['post_parent'] = 0; + wp_update_post( $child_post ); + } + } + + if ( $parent_id = wp_get_post_parent_id( $id ) ) { + wc_delete_product_transients( $parent_id ); + } break; case 'product_variation' : + wc_delete_product_transients( wp_get_post_parent_id( $id ) ); + break; + case 'shop_order' : + $refunds = $wpdb->get_results( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type = 'shop_order_refund' AND post_parent = %d", $id ) ); - wc_delete_product_transients(); - + foreach ( $refunds as $refund ) { + wp_delete_post( $refund->ID, true ); + } break; } } @@ -169,6 +1757,8 @@ class WC_Admin_Post_Types { * @return void */ public function trash_post( $id ) { + global $wpdb; + if ( $id > 0 ) { $post_type = get_post_type( $id ); @@ -183,6 +1773,12 @@ class WC_Admin_Post_Types { update_user_meta( $user_id, '_money_spent', '' ); } + $refunds = $wpdb->get_results( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type = 'shop_order_refund' AND post_parent = %d", $id ) ); + + foreach ( $refunds as $refund ) { + $wpdb->update( $wpdb->posts, array( 'post_status' => 'trash' ), array( 'ID' => $refund->ID ) ); + } + delete_transient( 'woocommerce_processing_order_count' ); } @@ -197,6 +1793,8 @@ class WC_Admin_Post_Types { * @return void */ public function untrash_post( $id ) { + global $wpdb; + if ( $id > 0 ) { $post_type = get_post_type( $id ); @@ -211,13 +1809,272 @@ class WC_Admin_Post_Types { update_user_meta( $user_id, '_money_spent', '' ); } + $refunds = $wpdb->get_results( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type = 'shop_order_refund' AND post_parent = %d", $id ) ); + + foreach ( $refunds as $refund ) { + $wpdb->update( $wpdb->posts, array( 'post_status' => 'wc-completed' ), array( 'ID' => $refund->ID ) ); + } + delete_transient( 'woocommerce_processing_order_count' ); } } } + + /** + * Remove item meta on permanent deletion + * + * @access public + * @return void + **/ + public function delete_order_items( $postid ) { + global $wpdb; + + if ( get_post_type( $postid ) == 'shop_order' ) { + do_action( 'woocommerce_delete_order_items', $postid ); + + $wpdb->query( " + DELETE {$wpdb->prefix}woocommerce_order_items, {$wpdb->prefix}woocommerce_order_itemmeta + FROM {$wpdb->prefix}woocommerce_order_items + JOIN {$wpdb->prefix}woocommerce_order_itemmeta ON {$wpdb->prefix}woocommerce_order_items.order_item_id = {$wpdb->prefix}woocommerce_order_itemmeta.order_item_id + WHERE {$wpdb->prefix}woocommerce_order_items.order_id = '{$postid}'; + " ); + + do_action( 'woocommerce_deleted_order_items', $postid ); + } + } + + /** + * Change text without slow getext filter + */ + public function change_featured_image_text() { + global $l10n; + if ( isset( $l10n['default'] ) && isset( $l10n['default']->entries ) ) { + foreach ( $l10n['default']->entries as $entry_key => $entries ) { + foreach ( $entries->translations as $key => $value ) { + if ( 'Featured Image' == $value ) { + $l10n['default']->entries[ $entry_key ]->translations[ $key ] = __( 'Product Image', 'woocommerce' ); + } elseif ( 'Remove featured image' == $value ) { + $l10n['default']->entries[ $entry_key ]->translations[ $key ] = __( 'Remove product image', 'woocommerce' ); + } elseif ( 'Set featured image' == $value ) { + $l10n['default']->entries[ $entry_key ]->translations[ $key ] = __( 'Set product image', 'woocommerce' ); + } + } + } + } + } + + /** + * Change "Featured Image" to "Product Image" throughout media modals. + * + * @param array $strings Array of strings to translate. + * @param object $post + * @return array + */ + public function media_view_strings( $strings = array(), $post = null ) { + if ( isset( $post->post_type ) && 'product' == $post->post_type ) { + $strings['setFeaturedImageTitle'] = __( 'Set product image', 'woocommerce' ); + $strings['setFeaturedImage'] = __( 'Set product image', 'woocommerce' ); + } + + return $strings; + } + + /** + * Change title boxes in admin. + * @param string $text + * @param object $post + * @return string + */ + public function enter_title_here( $text, $post ) { + switch ( $post->post_type ) { + case 'product' : + return __( 'Product name', 'woocommerce' ); + break; + case 'shop_coupon' : + return __( 'Coupon code', 'woocommerce' ); + break; + } + return $text; + } + + /** + * Print coupon description textarea field + * @param WP_Post $post + */ + public function edit_form_after_title( $post ) { + if ( 'shop_coupon' === $post->post_type ) { + ?> + + labels->singular_name ); + $strings['uploadedToThisPost'] = sprintf( __( 'Uploaded to this %s', 'woocommerce' ), $obj->labels->singular_name ); + } + + return $strings; + } + + /** + * Output product visibility options. + * + * @access public + * @return void + */ + public function product_data_visibility() { + global $post; + + if ( 'product' != $post->post_type ) { + return; + } + + $current_visibility = ( $current_visibility = get_post_meta( $post->ID, '_visibility', true ) ) ? $current_visibility : apply_filters( 'woocommerce_product_visibility_default' , 'visible' ); + $current_featured = ( $current_featured = get_post_meta( $post->ID, '_featured', true ) ) ? $current_featured : 'no'; + + $visibility_options = apply_filters( 'woocommerce_product_visibility_options', array( + 'visible' => __( 'Catalog/search', 'woocommerce' ), + 'catalog' => __( 'Catalog', 'woocommerce' ), + 'search' => __( 'Search', 'woocommerce' ), + 'hidden' => __( 'Hidden', 'woocommerce' ) + ) ); + ?> +
    + + + + +
    + + + + + ' . __( 'Define the loops this product should be visible in. The product will still be accessible directly.', 'woocommerce' ) . '

    '; + + foreach ( $visibility_options as $name => $label ) { + echo '
    '; + } + + echo '

    ' . __( 'Enable this option to feature this product.', 'woocommerce' ) . '

    '; + + echo '
    '; + ?> +

    + + +

    +
    +
    + get_files() ); + $updated_download_ids = array_keys( (array) $downloadable_files ); + + $new_download_ids = array_filter( array_diff( $updated_download_ids, $existing_download_ids ) ); + $removed_download_ids = array_filter( array_diff( $existing_download_ids, $updated_download_ids ) ); + + if ( $new_download_ids || $removed_download_ids ) { + // determine whether downloadable file access has been granted via the typical order completion, or via the admin ajax method + $existing_permissions = $wpdb->get_results( $wpdb->prepare( "SELECT * from {$wpdb->prefix}woocommerce_downloadable_product_permissions WHERE product_id = %d GROUP BY order_id", $product_id ) ); + + foreach ( $existing_permissions as $existing_permission ) { + $order = wc_get_order( $existing_permission->order_id ); + + if ( $order->id ) { + // Remove permissions + if ( $removed_download_ids ) { + foreach ( $removed_download_ids as $download_id ) { + if ( apply_filters( 'woocommerce_process_product_file_download_paths_remove_access_to_old_file', true, $download_id, $product_id, $order ) ) { + $wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->prefix}woocommerce_downloadable_product_permissions WHERE order_id = %d AND product_id = %d AND download_id = %s", $order->id, $product_id, $download_id ) ); + } + } + } + // Add permissions + if ( $new_download_ids ) { + foreach ( $new_download_ids as $download_id ) { + if ( apply_filters( 'woocommerce_process_product_file_download_paths_grant_access_to_new_file', true, $download_id, $product_id, $order ) ) { + // grant permission if it doesn't already exist + if ( ! $wpdb->get_var( $wpdb->prepare( "SELECT 1 FROM {$wpdb->prefix}woocommerce_downloadable_product_permissions WHERE order_id = %d AND product_id = %d AND download_id = %s", $order->id, $product_id, $download_id ) ) ) { + wc_downloadable_file_permission( $download_id, $product_id, $order ); + } + } + } + } + } + } + } + } } endif; -return new WC_Admin_Post_Types(); \ No newline at end of file +new WC_Admin_Post_Types(); diff --git a/includes/admin/class-wc-admin-profile.php b/includes/admin/class-wc-admin-profile.php index 4dca081edfe..f507030a2fa 100644 --- a/includes/admin/class-wc-admin-profile.php +++ b/includes/admin/class-wc-admin-profile.php @@ -236,7 +236,7 @@ class WC_Admin_Profile { if ( current_user_can( 'edit_user', $user_id ) ) { - $user = wp_get_current_user(); + $user = get_userdata( $user_id ); // creating/deleting key if ( isset( $_POST['woocommerce_generate_api_key'] ) ) { @@ -268,7 +268,14 @@ class WC_Admin_Profile { // permissions if ( empty( $user->woocommerce_api_key_permissions ) ) { - $permissions = ( isset( $_POST['woocommerce_api_key_permissions'] ) && ! in_array( $_POST['woocommerce_api_key_permissions'], array( 'read', 'write', 'read_write' ) ) ) ? 'read' : $_POST['woocommerce_api_key_permissions']; + if ( isset( $_POST['woocommerce_api_key_permissions'] ) ) { + + $permissions = ( in_array( $_POST['woocommerce_api_key_permissions'], array( 'read', 'write', 'read_write' ) ) ) ? $_POST['woocommerce_api_key_permissions'] : 'read'; + + } else { + + $permissions = 'read'; + } update_user_meta( $user_id, 'woocommerce_api_key_permissions', $permissions ); diff --git a/includes/admin/class-wc-admin-reports.php b/includes/admin/class-wc-admin-reports.php index a2c75051860..4ca7d2430ce 100644 --- a/includes/admin/class-wc-admin-reports.php +++ b/includes/admin/class-wc-admin-reports.php @@ -19,17 +19,14 @@ if ( ! class_exists( 'WC_Admin_Reports' ) ) : */ class WC_Admin_Reports { - private $start_date; - private $end_date; - /** * Handles output of the reports page in admin. */ - public function output() { - $reports = $this->get_reports(); + public static function output() { + $reports = self::get_reports(); $first_tab = array_keys( $reports ); - $current_tab = ! empty( $_GET['tab'] ) ? sanitize_title( urldecode( $_GET['tab'] ) ) : $first_tab[0]; - $current_report = isset( $_GET['report'] ) ? sanitize_title( urldecode( $_GET['report'] ) ) : current( array_keys( $reports[ $current_tab ]['reports'] ) ); + $current_tab = ! empty( $_GET['tab'] ) ? sanitize_title( $_GET['tab'] ) : $first_tab[0]; + $current_report = isset( $_GET['report'] ) ? sanitize_title( $_GET['report'] ) : current( array_keys( $reports[ $current_tab ]['reports'] ) ); include_once( 'reports/class-wc-admin-report.php' ); include_once( 'views/html-admin-page-reports.php' ); @@ -40,7 +37,7 @@ class WC_Admin_Reports { * * @return array */ - public function get_reports() { + public static function get_reports() { $reports = array( 'orders' => array( 'title' => __( 'Orders', 'woocommerce' ), @@ -49,25 +46,25 @@ class WC_Admin_Reports { 'title' => __( 'Sales by date', 'woocommerce' ), 'description' => '', 'hide_title' => true, - 'callback' => array( $this, 'get_report' ) + 'callback' => array( __CLASS__, 'get_report' ) ), "sales_by_product" => array( 'title' => __( 'Sales by product', 'woocommerce' ), 'description' => '', 'hide_title' => true, - 'callback' => array( $this, 'get_report' ) + 'callback' => array( __CLASS__, 'get_report' ) ), "sales_by_category" => array( 'title' => __( 'Sales by category', 'woocommerce' ), 'description' => '', 'hide_title' => true, - 'callback' => array( $this, 'get_report' ) + 'callback' => array( __CLASS__, 'get_report' ) ), "coupon_usage" => array( 'title' => __( 'Coupons by date', 'woocommerce' ), 'description' => '', 'hide_title' => true, - 'callback' => array( $this, 'get_report' ) + 'callback' => array( __CLASS__, 'get_report' ) ) ) ), @@ -78,13 +75,13 @@ class WC_Admin_Reports { 'title' => __( 'Customers vs. Guests', 'woocommerce' ), 'description' => '', 'hide_title' => true, - 'callback' => array( $this, 'get_report' ) + 'callback' => array( __CLASS__, 'get_report' ) ), "customer_list" => array( 'title' => __( 'Customer List', 'woocommerce' ), 'description' => '', 'hide_title' => true, - 'callback' => array( $this, 'get_report' ) + 'callback' => array( __CLASS__, 'get_report' ) ), ) ), @@ -95,19 +92,19 @@ class WC_Admin_Reports { 'title' => __( 'Low in stock', 'woocommerce' ), 'description' => '', 'hide_title' => true, - 'callback' => array( $this, 'get_report' ) + 'callback' => array( __CLASS__, 'get_report' ) ), "out_of_stock" => array( 'title' => __( 'Out of stock', 'woocommerce' ), 'description' => '', 'hide_title' => true, - 'callback' => array( $this, 'get_report' ) + 'callback' => array( __CLASS__, 'get_report' ) ), "most_stocked" => array( 'title' => __( 'Most Stocked', 'woocommerce' ), 'description' => '', 'hide_title' => true, - 'callback' => array( $this, 'get_report' ) + 'callback' => array( __CLASS__, 'get_report' ) ), ) ) @@ -121,30 +118,30 @@ class WC_Admin_Reports { 'title' => __( 'Taxes by code', 'woocommerce' ), 'description' => '', 'hide_title' => true, - 'callback' => array( $this, 'get_report' ) + 'callback' => array( __CLASS__, 'get_report' ) ), "taxes_by_date" => array( 'title' => __( 'Taxes by date', 'woocommerce' ), 'description' => '', 'hide_title' => true, - 'callback' => array( $this, 'get_report' ) + 'callback' => array( __CLASS__, 'get_report' ) ), ) ); } $reports = apply_filters( 'woocommerce_admin_reports', $reports ); - - // Backwards compat - $reports = apply_filters( 'woocommerce_reports_charts', $reports ); + $reports = apply_filters( 'woocommerce_reports_charts', $reports ); // Backwards compat foreach ( $reports as $key => $report_group ) { - if ( isset( $reports[ $key ]['charts'] ) ) + if ( isset( $reports[ $key ]['charts'] ) ) { $reports[ $key ]['reports'] = $reports[ $key ]['charts']; + } foreach ( $reports[ $key ]['reports'] as $report_key => $report ) { - if ( isset( $reports[ $key ]['reports'][ $report_key ]['function'] ) ) + if ( isset( $reports[ $key ]['reports'][ $report_key ]['function'] ) ) { $reports[ $key ]['reports'][ $report_key ]['callback'] = $reports[ $key ]['reports'][ $report_key ]['function']; + } } } @@ -154,11 +151,11 @@ class WC_Admin_Reports { /** * Get a report from our reports subfolder */ - public function get_report( $name ) { + public static function get_report( $name ) { $name = sanitize_title( str_replace( '_', '-', $name ) ); $class = 'WC_Report_' . str_replace( '-', '_', $name ); - include_once( 'reports/class-wc-report-' . $name . '.php' ); + include_once( apply_filters( 'wc_admin_reports_path', 'reports/class-wc-report-' . $name . '.php', $name, $class ) ); if ( ! class_exists( $class ) ) return; @@ -168,6 +165,4 @@ class WC_Admin_Reports { } } -endif; - -return new WC_Admin_Reports(); \ No newline at end of file +endif; \ No newline at end of file diff --git a/includes/admin/class-wc-admin-settings.php b/includes/admin/class-wc-admin-settings.php index 398eb87ec18..a3e0e740a4a 100644 --- a/includes/admin/class-wc-admin-settings.php +++ b/includes/admin/class-wc-admin-settings.php @@ -5,10 +5,12 @@ * @author WooThemes * @category Admin * @package WooCommerce/Admin - * @version 2.1.0 + * @version 2.2.0 */ -if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly +if ( ! defined( 'ABSPATH' ) ) { + exit; // Exit if accessed directly +} if ( ! class_exists( 'WC_Admin_Settings' ) ) : @@ -17,6 +19,7 @@ if ( ! class_exists( 'WC_Admin_Settings' ) ) : */ class WC_Admin_Settings { + private static $settings = array(); private static $errors = array(); private static $messages = array(); @@ -24,40 +27,42 @@ class WC_Admin_Settings { * Include the settings page classes */ public static function get_settings_pages() { - $settings = array(); + if ( empty( self::$settings ) ) { + $settings = array(); - include_once( 'settings/class-wc-settings-page.php' ); + include_once( 'settings/class-wc-settings-page.php' ); - $settings[] = include( 'settings/class-wc-settings-general.php' ); - $settings[] = include( 'settings/class-wc-settings-products.php' ); - $settings[] = include( 'settings/class-wc-settings-tax.php' ); - $settings[] = include( 'settings/class-wc-settings-checkout.php' ); - $settings[] = include( 'settings/class-wc-settings-shipping.php' ); - $settings[] = include( 'settings/class-wc-settings-accounts.php' ); - $settings[] = include( 'settings/class-wc-settings-emails.php' ); - $settings[] = include( 'settings/class-wc-settings-integrations.php' ); + $settings[] = include( 'settings/class-wc-settings-general.php' ); + $settings[] = include( 'settings/class-wc-settings-products.php' ); + $settings[] = include( 'settings/class-wc-settings-tax.php' ); + $settings[] = include( 'settings/class-wc-settings-checkout.php' ); + $settings[] = include( 'settings/class-wc-settings-shipping.php' ); + $settings[] = include( 'settings/class-wc-settings-accounts.php' ); + $settings[] = include( 'settings/class-wc-settings-emails.php' ); + $settings[] = include( 'settings/class-wc-settings-integrations.php' ); - $settings = apply_filters( 'woocommerce_get_settings_pages', $settings ); + self::$settings = apply_filters( 'woocommerce_get_settings_pages', $settings ); + } - return $settings; + return self::$settings; } /** * Save the settings */ public static function save() { - global $current_section, $current_tab; + global $current_tab; - if ( empty( $_REQUEST['_wpnonce'] ) || ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'woocommerce-settings' ) ) - die( __( 'Action failed. Please refresh the page and retry.', 'woocommerce' ) ); + if ( empty( $_REQUEST['_wpnonce'] ) || ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'woocommerce-settings' ) ) { + die( __( 'Action failed. Please refresh the page and retry.', 'woocommerce' ) ); + } - // Trigger actions - do_action( 'woocommerce_settings_save_' . $current_tab ); - do_action( 'woocommerce_update_options_' . $current_tab ); - do_action( 'woocommerce_update_options' ); + // Trigger actions + do_action( 'woocommerce_settings_save_' . $current_tab ); + do_action( 'woocommerce_update_options_' . $current_tab ); + do_action( 'woocommerce_update_options' ); - // Clear any unwanted data - wc_delete_product_transients(); + // Clear any unwanted data delete_transient( 'woocommerce_cache_excluded_uris' ); self::add_message( __( 'Your settings have been saved.', 'woocommerce' ) ); @@ -89,14 +94,17 @@ class WC_Admin_Settings { /** * Output messages + errors + * @return string */ public static function show_messages() { if ( sizeof( self::$errors ) > 0 ) { - foreach ( self::$errors as $error ) + foreach ( self::$errors as $error ) { echo '

    ' . esc_html( $error ) . '

    '; + } } elseif ( sizeof( self::$messages ) > 0 ) { - foreach ( self::$messages as $message ) + foreach ( self::$messages as $message ) { echo '

    ' . esc_html( $message ) . '

    '; + } } } @@ -105,15 +113,14 @@ class WC_Admin_Settings { * * Handles the display of the main woocommerce settings page in admin. * - * @access public * @return void */ public static function output() { - global $current_section, $current_tab; + global $current_section, $current_tab; - do_action( 'woocommerce_settings_start' ); + do_action( 'woocommerce_settings_start' ); - wp_enqueue_script( 'woocommerce_settings', WC()->plugin_url() . '/assets/js/admin/settings.min.js', array( 'jquery', 'jquery-ui-datepicker', 'jquery-ui-sortable', 'iris' ), WC()->version, true ); + wp_enqueue_script( 'woocommerce_settings', WC()->plugin_url() . '/assets/js/admin/settings.min.js', array( 'jquery', 'jquery-ui-datepicker', 'jquery-ui-sortable', 'iris', 'chosen' ), WC()->version, true ); wp_localize_script( 'woocommerce_settings', 'woocommerce_settings_params', array( 'i18n_nav_warning' => __( 'The changes you made will be lost if you navigate away from this page.', 'woocommerce' ) @@ -123,32 +130,35 @@ class WC_Admin_Settings { self::get_settings_pages(); // Get current tab/section - $current_tab = empty( $_GET['tab'] ) ? 'general' : sanitize_text_field( urldecode( $_GET['tab'] ) ); - $current_section = empty( $_REQUEST['section'] ) ? '' : sanitize_text_field( urldecode( $_REQUEST['section'] ) ); + $current_tab = empty( $_GET['tab'] ) ? 'general' : sanitize_title( $_GET['tab'] ); + $current_section = empty( $_REQUEST['section'] ) ? '' : sanitize_title( $_REQUEST['section'] ); - // Save settings if data has been posted - if ( ! empty( $_POST ) ) - self::save(); + // Save settings if data has been posted + if ( ! empty( $_POST ) ) { + self::save(); + } - // Add any posted messages - if ( ! empty( $_GET['wc_error'] ) ) - self::add_error( urldecode( stripslashes( $_GET['wc_error'] ) ) ); + // Add any posted messages + if ( ! empty( $_GET['wc_error'] ) ) { + self::add_error( stripslashes( $_GET['wc_error'] ) ); + } - if ( ! empty( $_GET['wc_message'] ) ) - self::add_message( urldecode( stripslashes( $_GET['wc_message'] ) ) ); + if ( ! empty( $_GET['wc_message'] ) ) { + self::add_message( stripslashes( $_GET['wc_message'] ) ); + } - self::show_messages(); + self::show_messages(); - // Get tabs for the settings page - $tabs = apply_filters( 'woocommerce_settings_tabs_array', array() ); + // Get tabs for the settings page + $tabs = apply_filters( 'woocommerce_settings_tabs_array', array() ); - include 'views/html-admin-settings.php'; + include 'views/html-admin-settings.php'; } /** * Get a setting from the settings API. * - * @param mixed $option + * @param mixed $option_name * @return string */ public static function get_option( $option_name, $default = '' ) { @@ -165,20 +175,22 @@ class WC_Admin_Settings { $key = key( $option_array[ $option_name ] ); - if ( isset( $option_values[ $key ] ) ) + if ( isset( $option_values[ $key ] ) ) { $option_value = $option_values[ $key ]; - else + } else { $option_value = null; + } // Single value } else { $option_value = get_option( $option_name, null ); } - if ( is_array( $option_value ) ) + if ( is_array( $option_value ) ) { $option_value = array_map( 'stripslashes', $option_value ); - elseif ( ! is_null( $option_value ) ) + } elseif ( ! is_null( $option_value ) ) { $option_value = stripslashes( $option_value ); + } return $option_value === null ? $default : $option_value; } @@ -188,29 +200,46 @@ class WC_Admin_Settings { * * Loops though the woocommerce options array and outputs each field. * - * @access public * @param array $options Opens array to output */ public static function output_fields( $options ) { - foreach ( $options as $value ) { - if ( ! isset( $value['type'] ) ) continue; - if ( ! isset( $value['id'] ) ) $value['id'] = ''; - if ( ! isset( $value['title'] ) ) $value['title'] = isset( $value['name'] ) ? $value['name'] : ''; - if ( ! isset( $value['class'] ) ) $value['class'] = ''; - if ( ! isset( $value['css'] ) ) $value['css'] = ''; - if ( ! isset( $value['default'] ) ) $value['default'] = ''; - if ( ! isset( $value['desc'] ) ) $value['desc'] = ''; - if ( ! isset( $value['desc_tip'] ) ) $value['desc_tip'] = false; + foreach ( $options as $value ) { + if ( ! isset( $value['type'] ) ) { + continue; + } + if ( ! isset( $value['id'] ) ) { + $value['id'] = ''; + } + if ( ! isset( $value['title'] ) ) { + $value['title'] = isset( $value['name'] ) ? $value['name'] : ''; + } + if ( ! isset( $value['class'] ) ) { + $value['class'] = ''; + } + if ( ! isset( $value['css'] ) ) { + $value['css'] = ''; + } + if ( ! isset( $value['default'] ) ) { + $value['default'] = ''; + } + if ( ! isset( $value['desc'] ) ) { + $value['desc'] = ''; + } + if ( ! isset( $value['desc_tip'] ) ) { + $value['desc_tip'] = false; + } - // Custom attribute handling + // Custom attribute handling $custom_attributes = array(); - if ( ! empty( $value['custom_attributes'] ) && is_array( $value['custom_attributes'] ) ) - foreach ( $value['custom_attributes'] as $attribute => $attribute_value ) + if ( ! empty( $value['custom_attributes'] ) && is_array( $value['custom_attributes'] ) ) { + foreach ( $value['custom_attributes'] as $attribute => $attribute_value ) { $custom_attributes[] = esc_attr( $attribute ) . '="' . esc_attr( $attribute_value ) . '"'; + } + } // Description handling - if ( $value['desc_tip'] === true ) { + if ( true === $value['desc_tip'] ) { $description = ''; $tip = $value['desc']; } elseif ( ! empty( $value['desc_tip'] ) ) { @@ -225,6 +254,8 @@ class WC_Admin_Settings { if ( $description && in_array( $value['type'], array( 'textarea', 'radio' ) ) ) { $description = '

    ' . wp_kses_post( $description ) . '

    '; + } elseif ( $description && in_array( $value['type'], array( 'checkbox' ) ) ) { + $description = wp_kses_post( $description ); } elseif ( $description ) { $description = '' . wp_kses_post( $description ) . ''; } @@ -240,317 +271,353 @@ class WC_Admin_Settings { } // Switch based on type - switch( $value['type'] ) { + switch ( $value['type'] ) { - // Section Titles - case 'title': - if ( ! empty( $value['title'] ) ) echo '

    ' . esc_html( $value['title'] ) . '

    '; - if ( ! empty( $value['desc'] ) ) echo wpautop( wptexturize( wp_kses_post( $value['desc'] ) ) ); - echo '
    + get_sku() ) echo $_product->get_sku() . ' - '; ?> + + [?] + +
    '. "\n\n"; - if ( ! empty( $value['id'] ) ) do_action( 'woocommerce_settings_' . sanitize_title( $value['id'] ) ); - break; + // Section Titles + case 'title': + if ( ! empty( $value['title'] ) ) { + echo '

    ' . esc_html( $value['title'] ) . '

    '; + } + if ( ! empty( $value['desc'] ) ) { + echo wpautop( wptexturize( wp_kses_post( $value['desc'] ) ) ); + } + echo '
    '. "\n\n"; + if ( ! empty( $value['id'] ) ) { + do_action( 'woocommerce_settings_' . sanitize_title( $value['id'] ) ); + } + break; - // Section Ends - case 'sectionend': - if ( ! empty( $value['id'] ) ) do_action( 'woocommerce_settings_' . sanitize_title( $value['id'] ) . '_end' ); - echo '
    '; - if ( ! empty( $value['id'] ) ) do_action( 'woocommerce_settings_' . sanitize_title( $value['id'] ) . '_after' ); - break; + // Section Ends + case 'sectionend': + if ( ! empty( $value['id'] ) ) { + do_action( 'woocommerce_settings_' . sanitize_title( $value['id'] ) . '_end' ); + } + echo ''; + if ( ! empty( $value['id'] ) ) { + do_action( 'woocommerce_settings_' . sanitize_title( $value['id'] ) . '_after' ); + } + break; - // Standard text inputs and subtypes like 'number' - case 'text': - case 'email': - case 'number': - case 'color' : - case 'password' : + // Standard text inputs and subtypes like 'number' + case 'text': + case 'email': + case 'number': + case 'color' : + case 'password' : - $type = $value['type']; - $class = ''; - $option_value = self::get_option( $value['id'], $value['default'] ); + $type = $value['type']; + $class = ''; + $option_value = self::get_option( $value['id'], $value['default'] ); - if ( $value['type'] == 'color' ) { - $type = 'text'; - $value['class'] .= 'colorpick'; - $description .= ''; - } + if ( $value['type'] == 'color' ) { + $type = 'text'; + $value['class'] .= 'colorpick'; + $description .= ''; + } - ?> + ?> - - - /> - - "> + + /> + + + ?> - - + + - - - " + id="" + style="" + class="" + + > + + + ?> - - + + > + $val ) { + ?> + - - - - > + + + + + ?> - -
    - -
      - $val ) { - ?> -
    • - -
    • - -
    -
    - - - - - +
    - -
    - - - - - + +
      + $val ) { + ?> +
    • + +
    • + +
    - + + + + +
    -
    +
    + + + + +
    + + + +
    + + // Image width settings + case 'image_width' : + + $image_size = str_replace( '_image_size', '', $value[ 'id' ] ); + $size = wc_get_image_size( $image_size ); + $width = isset( $size[ 'width' ] ) ? $size[ 'width' ] : $value[ 'default' ][ 'width' ]; + $height = isset( $size[ 'height' ] ) ? $size[ 'height' ] : $value[ 'default' ][ 'height' ]; + $crop = isset( $size[ 'crop' ] ) ? $size[ 'crop' ] : $value[ 'default' ][ 'crop' ]; + + $disabled_attr = ''; + $disabled_message = ''; + + if ( has_filter( 'woocommerce_get_image_size_' . $image_size ) ) { + $disabled_attr = 'disabled="disabled"'; + $disabled_message = "

    " . __( 'The settings of this image size have been disabled because its values are being overwritten by a filter.', 'woocommerce' ) . "

    "; + } + + ?> + + + + id="-width" type="text" size="3" value="" /> × id="-height" type="text" size="3" value="" />px + + + + + $value['id'], + 'id' => $value['id'], + 'sort_column' => 'menu_order', + 'sort_order' => 'ASC', + 'show_option_none' => ' ', + 'class' => $value['class'], + 'echo' => false, + 'selected' => absint( self::get_option( $value['id'] ) ) + ); + + if ( isset( $value['args'] ) ) { + $args = wp_parse_args( $value['args'], $args ); + } + + ?> - + + + + [width]" id="-width" type="text" size="3" value="" /> × px - - - - - $value['id'], - 'id' => $value['id'], - 'sort_column' => 'menu_order', - 'sort_order' => 'ASC', - 'show_option_none' => ' ', - 'class' => $value['class'], - 'echo' => false, - 'selected' => absint( self::get_option( $value['id'] ) ) - ); - - if( isset( $value['args'] ) ) - $args = wp_parse_args( $value['args'], $args ); - - ?> - - - - - countries->countries; - if ( strstr( $country_setting, ':' ) ) { + if ( strstr( $country_setting, ':' ) ) { $country_setting = explode( ':', $country_setting ); $country = current( $country_setting ); $state = end( $country_setting ); - } else { + } else { $country = $country_setting; $state = '*'; - } - ?> + } + ?> - - - + + countries->countries; + if ( ! empty( $value['options'] ) ) { + $countries = $value['options']; + } else { + $countries = WC()->countries->countries; + } - asort( $countries ); - ?> + asort( $countries ); + ?> - -
    - - +
    + + 0 or set to '' - break; + wp_clear_scheduled_hook( 'woocommerce_cancel_unpaid_orders' ); - case "textarea" : + if ( '' !== $option_value ) { + wp_schedule_single_event( time() + ( absint( $option_value ) * 60 ), 'woocommerce_cancel_unpaid_orders' ); + } - if ( isset( $_POST[$value['id']] ) ) { - $option_value = wp_kses_post( trim( stripslashes( $_POST[ $value['id'] ] ) ) ); - } else { - $option_value = ''; - } + } else { + $option_value = wc_clean( $option_value ); + } + break; + case 'multiselect' : + case 'multi_select_countries' : + $option_value = array_filter( array_map( 'wc_clean', (array) $option_value ) ); + break; + case 'image_width' : + if ( isset( $option_value['width'] ) ) { + $update_options[ $value['id'] ]['width'] = wc_clean( $option_value['width'] ); + $update_options[ $value['id'] ]['height'] = wc_clean( $option_value['height'] ); + $update_options[ $value['id'] ]['crop'] = isset( $option_value['crop'] ) ? 1 : 0; + } else { + $update_options[ $value['id'] ]['width'] = $value['default']['width']; + $update_options[ $value['id'] ]['height'] = $value['default']['height']; + $update_options[ $value['id'] ]['crop'] = $value['default']['crop']; + } + break; + default : + do_action( 'woocommerce_update_option_' . sanitize_title( $value['type'] ), $value ); + break; + } - break; + if ( ! is_null( $option_value ) ) { + // Check if option is an array + if ( $option_name && $setting_name ) { + // Get old option value + if ( ! isset( $update_options[ $option_name ] ) ) { + $update_options[ $option_name ] = get_option( $option_name, array() ); + } - case "text" : - case 'email': - case 'number': - case "select" : - case "color" : - case 'password' : - case "single_select_page" : - case "single_select_country" : - case 'radio' : + if ( ! is_array( $update_options[ $option_name ] ) ) { + $update_options[ $option_name ] = array(); + } - if ( $value['id'] == 'woocommerce_price_thousand_sep' || $value['id'] == 'woocommerce_price_decimal_sep' ) { - - // price separators get a special treatment as they should allow a spaces (don't trim) - if ( isset( $_POST[ $value['id'] ] ) ) { - $option_value = wp_kses_post( stripslashes( $_POST[ $value['id'] ] ) ); - } else { - $option_value = ''; - } - - } elseif ( $value['id'] == 'woocommerce_price_num_decimals' ) { - - // price separators get a special treatment as they should allow a spaces (don't trim) - if ( isset( $_POST[ $value['id'] ] ) ) { - $option_value = absint( $_POST[ $value['id'] ] ); - } else { - $option_value = 2; - } - - } elseif ( $value['id'] == 'woocommerce_hold_stock_minutes' ) { - - // Allow > 0 or set to '' - if ( ! empty( $_POST[ $value['id'] ] ) ) { - $option_value = absint( $_POST[ $value['id'] ] ); - } else { - $option_value = ''; - } - - wp_clear_scheduled_hook( 'woocommerce_cancel_unpaid_orders' ); - - if ( $option_value != '' ) - wp_schedule_single_event( time() + ( absint( $option_value ) * 60 ), 'woocommerce_cancel_unpaid_orders' ); - - } else { - - if ( isset( $_POST[$value['id']] ) ) { - $option_value = wc_clean( stripslashes( $_POST[ $value['id'] ] ) ); - } else { - $option_value = ''; - } - - } - - break; - - // Special types - case "multiselect" : - case "multi_select_countries" : - - // Get countries array - if ( isset( $_POST[ $value['id'] ] ) ) - $selected_countries = array_map( 'wc_clean', array_map( 'stripslashes', (array) $_POST[ $value['id'] ] ) ); - else - $selected_countries = array(); - - $option_value = $selected_countries; - - break; - - case "image_width" : - - if ( isset( $_POST[$value['id'] ]['width'] ) ) { - - $update_options[ $value['id'] ]['width'] = wc_clean( stripslashes( $_POST[ $value['id'] ]['width'] ) ); - $update_options[ $value['id'] ]['height'] = wc_clean( stripslashes( $_POST[ $value['id'] ]['height'] ) ); - - if ( isset( $_POST[ $value['id'] ]['crop'] ) ) - $update_options[ $value['id'] ]['crop'] = 1; - else - $update_options[ $value['id'] ]['crop'] = 0; - - } else { - $update_options[ $value['id'] ]['width'] = $value['default']['width']; - $update_options[ $value['id'] ]['height'] = $value['default']['height']; - $update_options[ $value['id'] ]['crop'] = $value['default']['crop']; - } - - break; - - // Custom handling - default : - - do_action( 'woocommerce_update_option_' . $type, $value ); - - break; - - } - - if ( ! is_null( $option_value ) ) { - // Check if option is an array - if ( strstr( $value['id'], '[' ) ) { - - parse_str( $value['id'], $option_array ); - - // Option name is first key - $option_name = current( array_keys( $option_array ) ); - - // Get old option value - if ( ! isset( $update_options[ $option_name ] ) ) - $update_options[ $option_name ] = get_option( $option_name, array() ); - - if ( ! is_array( $update_options[ $option_name ] ) ) - $update_options[ $option_name ] = array(); - - // Set keys and value - $key = key( $option_array[ $option_name ] ); - - $update_options[ $option_name ][ $key ] = $option_value; + $update_options[ $option_name ][ $setting_name ] = $option_value; // Single value } else { - $update_options[ $value['id'] ] = $option_value; + $update_options[ $option_name ] = $option_value; } } - // Custom handling - do_action( 'woocommerce_update_option', $value ); - } + // Custom handling + do_action( 'woocommerce_update_option', $value ); + } - // Now save the options - foreach( $update_options as $name => $value ) - update_option( $name, $value ); + // Now save the options + foreach ( $update_options as $name => $value ) { + update_option( $name, $value ); + } - return true; + return true; } /** @@ -744,19 +750,19 @@ class WC_Admin_Settings { * * If using force or x-sendfile, this ensures the .htaccess is in place * - * @access public * @return void */ public static function check_download_folder_protection() { - $upload_dir = wp_upload_dir(); - $downloads_url = $upload_dir['basedir'] . '/woocommerce_uploads'; - $download_method = get_option('woocommerce_file_download_method'); + $upload_dir = wp_upload_dir(); + $downloads_url = $upload_dir['basedir'] . '/woocommerce_uploads'; + $download_method = get_option('woocommerce_file_download_method'); - if ( $download_method == 'redirect' ) { + if ( 'redirect' == $download_method ) { // Redirect method - don't protect - if ( file_exists( $downloads_url . '/.htaccess' ) ) + if ( file_exists( $downloads_url . '/.htaccess' ) ) { unlink( $downloads_url . '/.htaccess' ); + } } else { diff --git a/includes/admin/class-wc-admin-status.php b/includes/admin/class-wc-admin-status.php index a90b9ba686b..3ba09e2be9e 100644 --- a/includes/admin/class-wc-admin-status.php +++ b/includes/admin/class-wc-admin-status.php @@ -5,13 +5,11 @@ * @author WooThemes * @category Admin * @package WooCommerce/Admin/System Status - * @version 2.1.0 + * @version 2.2.0 */ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly -if ( ! class_exists( 'WC_Admin_Status' ) ) : - /** * WC_Admin_Status Class */ @@ -20,7 +18,7 @@ class WC_Admin_Status { /** * Handles output of the reports page in admin. */ - public function output() { + public static function output() { $current_tab = ! empty( $_REQUEST['tab'] ) ? sanitize_title( $_REQUEST['tab'] ) : 'status'; include_once( 'views/html-admin-page-status.php' ); @@ -29,29 +27,27 @@ class WC_Admin_Status { /** * Handles output of report */ - public function status_report() { - global $woocommerce, $wpdb; - + public static function status_report() { include_once( 'views/html-admin-page-status-report.php' ); } /** * Handles output of tools */ - public function status_tools() { + public static function status_tools() { global $woocommerce, $wpdb; - $tools = $this->get_tools(); + $tools = self::get_tools(); if ( ! empty( $_GET['action'] ) && ! empty( $_REQUEST['_wpnonce'] ) && wp_verify_nonce( $_REQUEST['_wpnonce'], 'debug_action' ) ) { switch ( $_GET['action'] ) { - case "clear_transients" : + case 'clear_transients' : wc_delete_product_transients(); echo '

    ' . __( 'Product Transients Cleared', 'woocommerce' ) . '

    '; break; - case "clear_expired_transients" : + case 'clear_expired_transients' : // http://w-shadow.com/blog/2012/04/17/delete-stale-transients/ $rows = $wpdb->query( " @@ -93,7 +89,7 @@ class WC_Admin_Status { echo '

    ' . sprintf( __( '%d Transients Rows Cleared', 'woocommerce' ), $rows + $rows2 ) . '

    '; break; - case "reset_roles" : + case 'reset_roles' : // Remove then re-add caps and roles $installer = include( WC()->plugin_path() . '/includes/class-wc-install.php' ); $installer->remove_roles(); @@ -101,19 +97,19 @@ class WC_Admin_Status { echo '

    ' . __( 'Roles successfully reset', 'woocommerce' ) . '

    '; break; - case "recount_terms" : + case 'recount_terms' : $product_cats = get_terms( 'product_cat', array( 'hide_empty' => false, 'fields' => 'id=>parent' ) ); - _wc_term_recount( $product_cats, get_taxonomy( 'product_cat' ), false, false ); + _wc_term_recount( $product_cats, get_taxonomy( 'product_cat' ), true, false ); $product_tags = get_terms( 'product_tag', array( 'hide_empty' => false, 'fields' => 'id=>parent' ) ); - _wc_term_recount( $product_tags, get_taxonomy( 'product_tag' ), false, false ); + _wc_term_recount( $product_tags, get_taxonomy( 'product_tag' ), true, false ); echo '

    ' . __( 'Terms successfully recounted', 'woocommerce' ) . '

    '; break; - case "clear_sessions" : + case 'clear_sessions' : $wpdb->query( " DELETE FROM {$wpdb->options} @@ -124,17 +120,33 @@ class WC_Admin_Status { echo '

    ' . __( 'Sessions successfully cleared', 'woocommerce' ) . '

    '; break; - case "install_pages" : + case 'install_pages' : WC_Install::create_pages(); echo '

    ' . __( 'All missing WooCommerce pages was installed successfully.', 'woocommerce' ) . '

    '; - break; - default: + break; + case 'delete_taxes' : + + $wpdb->query( "TRUNCATE " . $wpdb->prefix . "woocommerce_tax_rates" ); + + $wpdb->query( "TRUNCATE " . $wpdb->prefix . "woocommerce_tax_rate_locations" ); + + echo '

    ' . __( 'Tax rates successfully deleted', 'woocommerce' ) . '

    '; + break; + case 'hide_translation_upgrade' : + update_option( 'woocommerce_language_pack_version', array( WC_VERSION , get_locale() ) ); + $notices = get_option( 'woocommerce_admin_notices', array() ); + $notices = array_diff( $notices, array( 'translation_upgrade' ) ); + update_option( 'woocommerce_admin_notices', $notices ); + + echo '

    ' . __( 'Translation update message hidden successfully!', 'woocommerce' ) . '

    '; + break; + default : $action = esc_attr( $_GET['action'] ); - if( isset( $tools[ $action ]['callback'] ) ) { + if ( isset( $tools[ $action ]['callback'] ) ) { $callback = $tools[ $action ]['callback']; $return = call_user_func( $callback ); - if( $return === false ) { - if( is_array( $callback ) ) { + if ( $return === false ) { + if ( is_array( $callback ) ) { echo '

    ' . sprintf( __( 'There was an error calling %s::%s', 'woocommerce' ), get_class( $callback[0] ), $callback[1] ) . '

    '; } else { @@ -145,9 +157,31 @@ class WC_Admin_Status { break; } } - - // Display message if settings settings have been saved - if ( isset( $_REQUEST['settings-updated'] ) ) { + + // Manual translation update messages + if ( isset( $_GET['translation_updated'] ) ) { + switch ( $_GET['translation_updated'] ) { + case 2 : + echo '

    ' . __( 'Failed to install/update the translation:', 'woocommerce' ) . ' ' . __( 'Seems you don\'t have permission to do this!', 'woocommerce' ) . '

    '; + break; + case 3 : + echo '

    ' . __( 'Failed to install/update the translation:', 'woocommerce' ) . ' ' . sprintf( __( 'An authentication error occurred while updating the translation. Please try again or configure your %sUpgrade Constants%s.', 'woocommerce' ), '', '' ) . '

    '; + break; + case 4 : + echo '

    ' . __( 'Failed to install/update the translation:', 'woocommerce' ) . ' ' . __( 'Sorry but there is no translation available for your language =/', 'woocommerce' ) . '

    '; + break; + + default : + // Force WordPress find for new updates and hide the WooCommerce translation update + set_site_transient( 'update_plugins', null ); + + echo '

    ' . __( 'Translations installed/updated successfully!', 'woocommerce' ) . '

    '; + break; + } + } + + // Display message if settings settings have been saved + if ( isset( $_REQUEST['settings-updated'] ) ) { echo '

    ' . __( 'Your changes have been saved.', 'woocommerce' ) . '

    '; } @@ -159,8 +193,8 @@ class WC_Admin_Status { * * @return array of tools */ - public function get_tools() { - return apply_filters( 'woocommerce_debug_tools', array( + public static function get_tools() { + $tools = array( 'clear_transients' => array( 'name' => __( 'WC Transients','woocommerce'), 'button' => __('Clear transients','woocommerce'), @@ -169,7 +203,7 @@ class WC_Admin_Status { 'clear_expired_transients' => array( 'name' => __( 'Expired Transients','woocommerce'), 'button' => __('Clear expired transients','woocommerce'), - 'desc' => __( 'This tool will clear ALL expired transients from Wordpress.', 'woocommerce' ), + 'desc' => __( 'This tool will clear ALL expired transients from WordPress.', 'woocommerce' ), ), 'recount_terms' => array( 'name' => __('Term counts','woocommerce'), @@ -184,31 +218,85 @@ class WC_Admin_Status { 'clear_sessions' => array( 'name' => __('Customer Sessions','woocommerce'), 'button' => __('Clear all sessions','woocommerce'), - 'desc' => __( 'Warning This tool will delete all customer session data from the database, including any current live carts.', 'woocommerce' ), + 'desc' => __( 'Warning: This tool will delete all customer session data from the database, including any current live carts.', 'woocommerce' ), ), 'install_pages' => array( 'name' => __( 'Install WooCommerce Pages', 'woocommerce' ), 'button' => __( 'Install pages', 'woocommerce' ), - 'desc' => __( 'Note This tool will install all the missing WooCommerce pages. Pages already defined and set up will not be replaced.', 'woocommerce' ), + 'desc' => __( 'Note: This tool will install all the missing WooCommerce pages. Pages already defined and set up will not be replaced.', 'woocommerce' ), ), - ) ); + 'delete_taxes' => array( + 'name' => __( 'Delete all WooCommerce tax rates', 'woocommerce' ), + 'button' => __( 'Delete ALL tax rates', 'woocommerce' ), + 'desc' => __( 'Note: This option will delete ALL of your tax rates, use with caution.', 'woocommerce' ), + ) + ); + + if ( get_locale() !== 'en_US' ) { + $tools['translation_upgrade'] = array( + 'name' => __( 'Translation Upgrade', 'woocommerce' ), + 'button' => __( 'Force Translation Upgrade', 'woocommerce' ), + 'desc' => __( 'Note: This option will force the translation upgrade for your language if a translation is available.', 'woocommerce' ), + ); + } + + return apply_filters( 'woocommerce_debug_tools', $tools ); + } + + /** + * Show the logs page + */ + public static function status_logs() { + $logs = self::scan_log_files(); + if ( ! empty( $_POST['log_file'] ) && isset( $logs[ sanitize_title( $_POST['log_file'] ) ] ) ) { + $viewed_log = $logs[ sanitize_title( $_POST['log_file'] ) ]; + } elseif ( $logs ) { + $viewed_log = current( $logs ); + } + include_once( 'views/html-admin-page-status-logs.php' ); + } + + /** + * Retrieve metadata from a file. Based on WP Core's get_file_data function + * + * @since 2.1.1 + * @param string $file Path to the file + * @return string + */ + public static function get_file_version( $file ) { + // We don't need to write to the file, so just open for reading. + $fp = fopen( $file, 'r' ); + + // Pull only the first 8kiB of the file in. + $file_data = fread( $fp, 8192 ); + + // PHP will close file handle, but we are good citizens. + fclose( $fp ); + + // Make sure we catch CR-only line endings. + $file_data = str_replace( "\r", "\n", $file_data ); + $version = ''; + + if ( preg_match( '/^[ \t\/*#@]*' . preg_quote( '@version', '/' ) . '(.*)$/mi', $file_data, $match ) && $match[1] ) + $version = _cleanup_header_comment( $match[1] ); + + return $version ; } /** * Scan the template files * - * @access public - * @param string $template_path - * @return array + * @param string $template_path + * @return array */ - public function scan_template_files( $template_path ) { + public static function scan_template_files( $template_path ) { $files = scandir( $template_path ); $result = array(); if ( $files ) { foreach ( $files as $key => $value ) { if ( ! in_array( $value, array( ".",".." ) ) ) { if ( is_dir( $template_path . DIRECTORY_SEPARATOR . $value ) ) { - $sub_files = $this->scan_template_files( $template_path . DIRECTORY_SEPARATOR . $value ); + $sub_files = self::scan_template_files( $template_path . DIRECTORY_SEPARATOR . $value ); foreach ( $sub_files as $sub_file ) { $result[] = $value . DIRECTORY_SEPARATOR . $sub_file; } @@ -220,8 +308,24 @@ class WC_Admin_Status { } return $result; } + + /** + * Scan the log files + * + * @return array + */ + public static function scan_log_files() { + $files = @scandir( WC_LOG_DIR ); + $result = array(); + if ( $files ) { + foreach ( $files as $key => $value ) { + if ( ! in_array( $value, array( '.', '..' ) ) ) { + if ( ! is_dir( $value ) && strstr( $value, '.log' ) ) { + $result[ sanitize_title( $value ) ] = $value; + } + } + } + } + return $result; + } } - -endif; - -return new WC_Admin_Status(); \ No newline at end of file diff --git a/includes/admin/class-wc-admin-taxonomies.php b/includes/admin/class-wc-admin-taxonomies.php index f8aac2eca6b..1676b2bac5e 100644 --- a/includes/admin/class-wc-admin-taxonomies.php +++ b/includes/admin/class-wc-admin-taxonomies.php @@ -1,19 +1,16 @@ '; + // Prevent esc_url from breaking spaces in urls for image embeds + // Ref: http://core.trac.wordpress.org/ticket/23605 + $image = str_replace( ' ', '%20', $image ); + + $columns .= '' . __( 'Thumbnail', 'woocommerce' ) . ''; } return $columns; } + + /** + * Maintain term hierarchy when editing a product. + * @param array $args + * @return array + */ + public function disable_checked_ontop( $args ) { + if ( 'product_cat' == $args['taxonomy'] ) { + $args['checked_ontop'] = false; + } + return $args; + } } -endif; - -return new WC_Admin_Taxonomies(); +new WC_Admin_Taxonomies(); diff --git a/includes/admin/class-wc-admin-welcome.php b/includes/admin/class-wc-admin-welcome.php index fae8550b28d..dd04fb09bc0 100644 --- a/includes/admin/class-wc-admin-welcome.php +++ b/includes/admin/class-wc-admin-welcome.php @@ -42,17 +42,27 @@ class WC_Admin_Welcome { * @return void */ public function admin_menus() { + if ( empty( $_GET['page'] ) ) { + return; + } + $welcome_page_name = __( 'About WooCommerce', 'woocommerce' ); $welcome_page_title = __( 'Welcome to WooCommerce', 'woocommerce' ); - // About - $about = add_dashboard_page( $welcome_page_title, $welcome_page_title, 'manage_options', 'wc-about', array( $this, 'about_screen' ) ); - - // Credits - $credits = add_dashboard_page( $welcome_page_title, $welcome_page_title, 'manage_options', 'wc-credits', array( $this, 'credits_screen' ) ); - - add_action( 'admin_print_styles-'. $about, array( $this, 'admin_css' ) ); - add_action( 'admin_print_styles-'. $credits, array( $this, 'admin_css' ) ); + switch ( $_GET['page'] ) { + case 'wc-about' : + $page = add_dashboard_page( $welcome_page_title, $welcome_page_name, 'manage_options', 'wc-about', array( $this, 'about_screen' ) ); + add_action( 'admin_print_styles-'. $page, array( $this, 'admin_css' ) ); + break; + case 'wc-credits' : + $page = add_dashboard_page( $welcome_page_title, $welcome_page_name, 'manage_options', 'wc-credits', array( $this, 'credits_screen' ) ); + add_action( 'admin_print_styles-'. $page, array( $this, 'admin_css' ) ); + break; + case 'wc-translators' : + $page = add_dashboard_page( $welcome_page_title, $welcome_page_name, 'manage_options', 'wc-translators', array( $this, 'translators_screen' ) ); + add_action( 'admin_print_styles-'. $page, array( $this, 'admin_css' ) ); + break; + } } /** @@ -62,7 +72,7 @@ class WC_Admin_Welcome { * @return void */ public function admin_css() { - wp_enqueue_style( 'woocommerce-activation', plugins_url( '/assets/css/activation.css', WC_PLUGIN_FILE ) ); + wp_enqueue_style( 'woocommerce-activation', plugins_url( '/assets/css/activation.css', WC_PLUGIN_FILE ), array(), WC_VERSION ); } /** @@ -72,12 +82,10 @@ class WC_Admin_Welcome { * @return void */ public function admin_head() { - remove_submenu_page( 'index.php', 'wc-about' ); remove_submenu_page( 'index.php', 'wc-credits' ); + remove_submenu_page( 'index.php', 'wc-translators' ); - // Badge for welcome page - $badge_url = WC()->plugin_url() . '/assets/images/welcome/wc-badge.png'; ?>
    @@ -207,9 +237,9 @@ class WC_Admin_Welcome {

    - + - +

    @@ -237,128 +266,60 @@ class WC_Admin_Welcome {
    -
    -

    -

    -

    Orders, Coupons, Customers, Products and Reports in both XML and JSON formats.', 'woocommerce' ); ?>

    +

    +

    -

    -

    OAuth 1.0a specification if you don\'t have SSL. Data is only available to authenticated users.', 'woocommerce' ); ?>

    -
    -
    -
    -

    -
    -
    -

    -

    -
    -
    -

    -

    -

    -
    -
    -

    -

    filtering capabilities, a new customer report showing orders/spending, and the ability to export CSVs.', 'woocommerce' ); ?>

    -

    +

    +

    -

    +

    -

    -

    +

    +

    -

    -

    -

    +

    +

    -

    -

    -

    -
    -
    -

    -

    -

    -
    -
    -

    -

    -

    -
    -
    -

    -

    -

    +

    +

    -

    -
    -

    -

    +

    +

    -
    -

    -

    +

    +

    -
    -

    -

    +

    +

    -
    - -
    -

    -

    default_credit_card_form.', 'woocommerce' ); ?>

    -
    - -
    -

    -

    -
    - -
    -

    -

    -
    - -
    -
    - -
    -

    -

    -
    - -
    -

    -

    -
    - -
    -

    -

    -
    - -
    + current_time( 'timestamp' ) ) { ?> +
    +
    +

    +

    ', '' ); ?>

    +

    +
    +
    +
    @@ -369,9 +330,6 @@ class WC_Admin_Welcome { /** * Output the credits. - * - * @access public - * @return void */ public function credits_screen() { ?> @@ -379,10 +337,48 @@ class WC_Admin_Welcome { intro(); ?> -

    Contribute to WooCommerce.', 'woocommerce' ); ?>

    +

    Contribute to WooCommerce.', 'woocommerce' ), 'https://github.com/woothemes/woocommerce/blob/master/CONTRIBUTING.md' ); ?>

    contributors(); ?> +
    + +
    + + intro(); ?> + +

    Translate WooCommerce.', 'woocommerce' ), 'https://www.transifex.com/projects/p/woocommerce/' ); ?>

    + + ' . $contributor . ', ' ); + } + */ + ?> + +

    + ABSOLUTE_Web, AIRoman, Adam_Bajer, Aerendir, Aliom, Almaz, Andriy.Gusak, AngeloLazzari, Apelsinova, ArtGoddess, Ashleyking, AslanDoma, Axium, Bhuvanendran, Bitly, Bogusław, Chaos, Chea, Clausen, Closemarketing, CoachBirgit, Compute, DAJOHH, DJIO, Didierjr, Dimis13, Dmitrijb3, EmilEriksen, Fdu4, Flobin, FrancoBaccarini, Fredev, GabrielGil, GeertDD, Gonzalez74, Graya, Griga_M, Grześ, Gustavogcps, HelgaRakel, Ian_Razwadowski, JKKim, JamesIng, Janjaapvandijk, JoakimAndersen, Joeri, JohnRevel, KennethJ, Kiba_No_Ou, Kind, Komarovski, Lazybadger, Leones, M.Mellet, Mastersky, Miefos, Miodrag018, MondayStar, Morten, NANARUIZS1989, NeoTrafy, Nettpilot, Pal74, Promosnet, Pytlas, RealFugu, Rhys, Ricky1990, RistoNiinemets, Rudimidtgaard, Samf, Sasni, SeaBiz, SergeyBiryukov, Shimlesha, SilverXp, SkyHiRider, SzLegradi, TRFlavourart, Tarantulo, Thalitapinheiro, TheJoe, ThemeBoy, TomiToivio, TopOSScz, Triheads, Updulah, UrgentTranslation, Vaclad, Vinci, Violyne, WebArt.es, Wen89, Zouza, Zuige, aOOn, abdmc, abouolia, adamedotco, adiuvo, ahmedbadawy, akmalff, akorsar, alaa13212, alaershov, alichani, alvarogois, amisfranky, amitgilad, andercola, andrey.lima.ramos, anope, arhipaiva, arielk, aroland.hu, artprojectgroup, aruffini, asapvaleriy, audilu, aureliash, avarx, axdil, badsha_eee, badushich, banned, baobinh152, bergslay, blaagnu, blackieA, bluecafe, bohoejgaard, bornforlogic, busic, cadoo, calkut, carletto0282, cdevreugd, cegomez, cglaudel, claudiosmweb, clausRO, clausewitz45, coenjacobs, cool2014, corsonr, cpelham, cris701, cristi.dbr, culkman, dacthang1991, danielp, danitag78, darudar, deckerweb, deepinsource, dekaru, delitestudio, denarefyev, dhikkay14, dickysun, didikpri, difreo, disaada, dix.alex, doorbook, dualcore, dudlaj, e01, edea, eduardoarandah, egill, elct9620, ellena, elwins, embuck, emidiobattipaglia, endestaque, endomenec, ernexto, espellcaste, esspressions, estebanburgos, eugenpaun_ro, fantasy1612, fdaciuk, finnes, flyingoff, fnalescio, fquantium, funmist, fxbenard, gabejshn, gaspas, geerthoekzema, george_pt, gingermig, givitis, globalaperta, goksy973, gonzunigad, gopress.co.il, gordon168, greenbee, greencore, greguly, guxin, hafizero, hamalah, hangga, hannit, haruman, henryk.ibemeinhardt, hfelipe, hhaawwaa, hildago, hisoka512, huy.ng, huytuduy, iagomelanias, ideodora, idofri, ikadar, ilan256, imSuhaib, inceptive, inlaand, inpsyde, ironist, irsyadzaki, ishay1999, israel.cefrin, iwocs, jameskoster, jamesrod29, jeanmichell, jhn_rustan, jhovel, jlgd, jluisfreitas, joelbal, joesadaeng, joesalty, jolish, joseluis, josh_marom, joy.doctor, jpBenfica, jsparic, jugmar, jujjer, junedzhan, justina_ba, kampit, karama89, karistuck, keller2.m, khalil.delavaran, kikarina, kikehz, kjosenet, konglehong, kornienko, kraudio, kreatik, krzysko, kubik999, kweekarius, lahiponeja, lamibo, laszlo.espadas, laurbb, lincw, lingfeng, long.run.international, lopescmauro, louiseana, lubalee, lucasfreitas, lucaso, luciferbui, luisrull, m1k3lm, maayehkhaled, macbluy, madebyh, manuelvillagrdo, marciotoledo, marcosof, marioscrafts, maros336, martian36, martinezmr, martinproject, math_beck, mattyza, maxlam, me2you, meryjoearmstrong, metallicamu, michalvittek, michelle_zhang, mikaeldui, mikejolley, mikseris1001, milord, minimalstudio, mirkowhat, mjepson, mktunited, mobarak, mobiletalk, mod7, molfar, monferro, monsterporing, moon.modena, mortifactor, mostafizur, mruizoea, mucheroni, muhammetayten, muratbutun, mustafamsy, mylene, nabil_kadimi, nalvesrpd, nelblack, ng3but, nicolasleon, niels.heijman, njevdjo, nodarik, nsitbon, oisie, orlandobp31, pabambino, paletta, paoloalbera, pastynko, patjun, patrickheiloo, paulgor, paulofioratti, pdb, peboom, perdersongedal, pfrankov, pindi, pksupply, plaguna, platzh1rsch, playseebow, porclick, potgieterg, ppv1979, prepu, pulanito, rabas.marek, rafaelfunchal, rafalwolak, ragulka, rahmatilham, ramoonus, razorfish79, rbrock, rcovarru, read1, renatofrota, richardshaylor, rickbauck, rickserrat, ridhoyp, rkrizanovskis, rodrigoprior, roidayan, ronshe, rot13, rozumno, rpetkov, rvoogdgeert, s0w4, scottbasgaard, sennbrink, serpav, shady55, shoresh319, sindri, sirdaniel, slasher.art, smartdatasoft, snowre, soldier99, sovichet, srpski.dizajn, standoutmedia, stgoos, studionetting, stuk88, sukruozge, sumodirjo, supertommi, sverrirp, svetrov, swissky, swoboda, syao.pin, sylvie_janssens, t4rv1, tamvo, tanin, teddyostergaard, teotonioricardo, tetsu, the_fafa, tinaswelt, tinygiantstudios, tivnet, tntc1978, toblues, tomasha, tomboersma, tshowhey, tszming, tue.holm, tukangbajaksawah, tuzka, uah, urioste, uworx, valurthorgunnarsson, vanbo, vernandosimbolon, viamarket, viancu, viktorhanacek, vlinicx, w4advn, wachirakorn, wasim, wasley, webby1973, willemsiebe, woodyln, wpsk, xdosil, xepin, xevivb, y12studio, zaantar, zanguanga, zodiac1978, Натали +

    get_contributors(); - if ( empty( $contributors ) ) + if ( empty( $contributors ) ) { return ''; + } $contributor_list = '
      '; @@ -428,20 +425,23 @@ class WC_Admin_Welcome { public function get_contributors() { $contributors = get_transient( 'woocommerce_contributors' ); - if ( false !== $contributors ) + if ( false !== $contributors ) { return $contributors; + } $response = wp_remote_get( 'https://api.github.com/repos/woothemes/woocommerce/contributors', array( 'sslverify' => false ) ); - if ( is_wp_error( $response ) || 200 != wp_remote_retrieve_response_code( $response ) ) + if ( is_wp_error( $response ) || 200 != wp_remote_retrieve_response_code( $response ) ) { return array(); + } $contributors = json_decode( wp_remote_retrieve_body( $response ) ); - if ( ! is_array( $contributors ) ) + if ( ! is_array( $contributors ) ) { return array(); + } - set_transient( 'woocommerce_contributors', $contributors, 3600 ); + set_transient( 'woocommerce_contributors', $contributors, HOUR_IN_SECONDS ); return $contributors; } @@ -450,24 +450,27 @@ class WC_Admin_Welcome { * Sends user to the welcome page on first activation */ public function welcome() { - // Bail if no activation redirect transient is set - if ( ! get_transient( '_wc_activation_redirect' ) ) + if ( ! get_transient( '_wc_activation_redirect' ) ) { return; + } // Delete the redirect transient delete_transient( '_wc_activation_redirect' ); // Bail if we are waiting to install or update via the interface update/install links - if ( get_option( '_wc_needs_update' ) == 1 || get_option( '_wc_needs_pages' ) == 1 ) + if ( get_option( '_wc_needs_update' ) == 1 || get_option( '_wc_needs_pages' ) == 1 ) { return; + } // Bail if activating from network, or bulk, or within an iFrame - if ( is_network_admin() || isset( $_GET['activate-multi'] ) || defined( 'IFRAME_REQUEST' ) ) + if ( is_network_admin() || isset( $_GET['activate-multi'] ) || defined( 'IFRAME_REQUEST' ) ) { return; + } - if ( ( isset( $_GET['action'] ) && 'upgrade-plugin' == $_GET['action'] ) && ( isset( $_GET['plugin'] ) && strstr( $_GET['plugin'], 'woocommerce.php' ) ) ) + if ( ( isset( $_GET['action'] ) && 'upgrade-plugin' == $_GET['action'] ) && ( isset( $_GET['plugin'] ) && strstr( $_GET['plugin'], 'woocommerce.php' ) ) ) { return; + } wp_redirect( admin_url( 'index.php?page=wc-about' ) ); exit; diff --git a/includes/admin/class-wc-admin.php b/includes/admin/class-wc-admin.php index 43a4514d18c..2c3b0dec66c 100644 --- a/includes/admin/class-wc-admin.php +++ b/includes/admin/class-wc-admin.php @@ -1,17 +1,17 @@ import_page = 'woocommerce_tax_rate_csv'; @@ -36,7 +33,8 @@ if ( class_exists( 'WP_Importer' ) ) { * * Manages the three separate stages of the CSV import process */ - function dispatch() { + public function dispatch() { + $this->header(); if ( ! empty( $_POST['delimiter'] ) ) @@ -46,10 +44,13 @@ if ( class_exists( 'WP_Importer' ) ) { $this->delimiter = ','; $step = empty( $_GET['step'] ) ? 0 : (int) $_GET['step']; + switch ( $step ) { + case 0: $this->greet(); break; + case 1: check_admin_referer( 'import-upload' ); if ( $this->handle_upload() ) { @@ -72,30 +73,28 @@ if ( class_exists( 'WP_Importer' ) ) { } break; } + $this->footer(); } /** * format_data_from_csv function. * - * @access public * @param mixed $data * @param string $enc * @return string */ - function format_data_from_csv( $data, $enc ) { + public function format_data_from_csv( $data, $enc ) { return ( $enc == 'UTF-8' ) ? $data : utf8_encode( $data ); } /** * import function. * - * @access public * @param mixed $file - * @return void */ function import( $file ) { - global $woocommerce, $wpdb; + global $wpdb; $this->imported = $this->skipped = 0; @@ -152,7 +151,9 @@ if ( class_exists( 'WP_Importer' ) ) { $postcode = wc_clean( $postcode ); $postcodes = explode( ';', $postcode ); $postcodes = array_map( 'strtoupper', array_map( 'wc_clean', $postcodes ) ); + foreach( $postcodes as $postcode ) { + if ( ! empty( $postcode ) && $postcode != '*' ) { $wpdb->insert( $wpdb->prefix . "woocommerce_tax_rate_locations", @@ -168,7 +169,9 @@ if ( class_exists( 'WP_Importer' ) ) { $city = wc_clean( $city ); $cities = explode( ';', $city ); $cities = array_map( 'strtoupper', array_map( 'wc_clean', $cities ) ); + foreach( $cities as $city ) { + if ( ! empty( $city ) && $city != '*' ) { $wpdb->insert( $wpdb->prefix . "woocommerce_tax_rate_locations", @@ -183,7 +186,7 @@ if ( class_exists( 'WP_Importer' ) ) { $loop ++; $this->imported++; - } + } } else { @@ -194,7 +197,7 @@ if ( class_exists( 'WP_Importer' ) ) { } - fclose( $handle ); + fclose( $handle ); } // Show Result @@ -208,7 +211,7 @@ if ( class_exists( 'WP_Importer' ) ) { /** * Performs post-import cleanup of files and the cache */ - function import_end() { + public function import_end() { echo '

      ' . __( 'All done!', 'woocommerce' ) . ' ' . __( 'View Tax Rates', 'woocommerce' ) . '' . '

      '; do_action( 'import_end' ); @@ -220,7 +223,7 @@ if ( class_exists( 'WP_Importer' ) ) { * * @return bool False if error uploading or invalid file, true otherwise */ - function handle_upload() { + public function handle_upload() { if ( empty( $_POST['file_url'] ) ) { @@ -254,33 +257,24 @@ if ( class_exists( 'WP_Importer' ) ) { /** * header function. - * - * @access public - * @return void */ - function header() { + public function header() { echo '

      '; echo '

      ' . __( 'Import Tax Rates', 'woocommerce' ) . '

      '; } /** * footer function. - * - * @access public - * @return void */ - function footer() { + public function footer() { echo '
      '; } /** * greet function. - * - * @access public - * @return void */ - function greet() { - + public function greet() { + echo '
      '; echo '

      ' . __( 'Hi there! Upload a CSV file containing tax rates to import the contents into your shop. Choose a .csv file to upload, then click "Upload file and import".', 'woocommerce' ).'

      '; @@ -292,7 +286,7 @@ if ( class_exists( 'WP_Importer' ) ) { $size = size_format( $bytes ); $upload_dir = wp_upload_dir(); if ( ! empty( $upload_dir['error'] ) ) : - ?>

      + ?>

      @@ -301,13 +295,13 @@ if ( class_exists( 'WP_Importer' ) ) { - + - + @@ -325,7 +319,7 @@ if ( class_exists( 'WP_Importer' ) ) {

      - +

      'discount_type', 'label' => __( 'Discount type', 'woocommerce' ), 'options' => wc_get_coupon_types() ) ); + woocommerce_wp_select( array( 'id' => 'discount_type', 'label' => __( 'Discount type', 'woocommerce' ), 'options' => wc_get_coupon_types() ) ); // Amount woocommerce_wp_text_input( array( 'id' => 'coupon_amount', 'label' => __( 'Coupon amount', 'woocommerce' ), 'placeholder' => wc_format_localized_price( 0 ), 'description' => __( 'Value of the coupon.', 'woocommerce' ), 'data_type' => 'price', 'desc_tip' => true ) ); @@ -84,6 +84,9 @@ class WC_Meta_Box_Coupon_Data { // minimum spend woocommerce_wp_text_input( array( 'id' => 'minimum_amount', 'label' => __( 'Minimum spend', 'woocommerce' ), 'placeholder' => __( 'No minimum', 'woocommerce' ), 'description' => __( 'This field allows you to set the minimum subtotal needed to use the coupon.', 'woocommerce' ), 'data_type' => 'price', 'desc_tip' => true ) ); + // maximum spend + woocommerce_wp_text_input( array( 'id' => 'maximum_amount', 'label' => __( 'Maximum spend', 'woocommerce' ), 'placeholder' => __( 'No maximum', 'woocommerce' ), 'description' => __( 'This field allows you to set the maximum subtotal allowed when using the coupon.', 'woocommerce' ), 'data_type' => 'price', 'desc_tip' => true ) ); + // Individual use woocommerce_wp_checkbox( array( 'id' => 'individual_use', 'label' => __( 'Individual use only', 'woocommerce' ), 'description' => __( 'Check this box if the coupon cannot be used in conjunction with other coupons.', 'woocommerce' ) ) ); @@ -94,68 +97,77 @@ class WC_Meta_Box_Coupon_Data { // Product ids ?> -

      +

      ' src="plugin_url(); ?>/assets/images/help.png" height="16" width="16" />

      + ' src="plugin_url(); ?>/assets/images/help.png" height="16" width="16" />

      -

      +

      ' src="plugin_url(); ?>/assets/images/help.png" height="16" width="16" />

      + ' src="plugin_url(); ?>/assets/images/help.png" height="16" width="16" />

      '; // Categories ?> -

      +

      ' src="plugin_url(); ?>/assets/images/help.png" height="16" width="16" />

      + ' src="plugin_url(); ?>/assets/images/help.png" height="16" width="16" />

      -

      +

      ' src="plugin_url(); ?>/assets/images/help.png" height="16" width="16" />

      '; // Customers - woocommerce_wp_text_input( array( 'id' => 'customer_email', 'label' => __( 'Email restrictions', 'woocommerce' ), 'placeholder' => __( 'No restrictions', 'woocommerce' ), 'description' => __( 'List of emails to check against the customer\'s billing email when an order is placed.', 'woocommerce' ), 'value' => implode(', ', (array) get_post_meta( $post->ID, 'customer_email', true ) ), 'desc_tip' => true, 'type' => 'email', 'class' => '', 'custom_attributes' => array( + woocommerce_wp_text_input( array( 'id' => 'customer_email', 'label' => __( 'Email restrictions', 'woocommerce' ), 'placeholder' => __( 'No restrictions', 'woocommerce' ), 'description' => __( 'List of emails to check against the customer\'s billing email when an order is placed. Separate email addresses with commas.', 'woocommerce' ), 'value' => implode(', ', (array) get_post_meta( $post->ID, 'customer_email', true ) ), 'desc_tip' => true, 'type' => 'email', 'class' => '', 'custom_attributes' => array( 'multiple' => 'multiple' - ) ) ); + ) ) ); echo '
      '; + do_action( 'woocommerce_coupon_options_usage_restriction' ); + ?>
      '; // Usage limit per coupons - woocommerce_wp_text_input( array( 'id' => 'usage_limit', 'label' => __( 'Usage limit per coupon', 'woocommerce' ), 'placeholder' => _x('Unlimited usage', 'placeholder', 'woocommerce'), 'description' => __( 'How many times this coupon can be used before it is void.', 'woocommerce' ), 'type' => 'number', 'desc_tip' => true, 'class' => '', 'custom_attributes' => array( + woocommerce_wp_text_input( array( 'id' => 'usage_limit', 'label' => __( 'Usage limit per coupon', 'woocommerce' ), 'placeholder' => _x('Unlimited usage', 'placeholder', 'woocommerce'), 'description' => __( 'How many times this coupon can be used before it is void.', 'woocommerce' ), 'type' => 'number', 'desc_tip' => true, 'class' => 'short', 'custom_attributes' => array( 'step' => '1', 'min' => '0' - ) ) ); + ) ) ); // Usage limit per product - woocommerce_wp_text_input( array( 'id' => 'limit_usage_to_x_items', 'label' => __( 'Limit usage to X items', 'woocommerce' ), 'placeholder' => _x( 'Apply to all qualifying items in cart', 'placeholder', 'woocommerce' ), 'description' => __( 'The maximum number of individual items this coupon can apply to when using product discounts. Leave blank to apply to all qualifying items in cart.', 'woocommerce' ), 'desc_tip' => true, 'class' => '', 'type' => 'number', 'custom_attributes' => array( + woocommerce_wp_text_input( array( 'id' => 'limit_usage_to_x_items', 'label' => __( 'Limit usage to X items', 'woocommerce' ), 'placeholder' => _x( 'Apply to all qualifying items in cart', 'placeholder', 'woocommerce' ), 'description' => __( 'The maximum number of individual items this coupon can apply to when using product discounts. Leave blank to apply to all qualifying items in cart.', 'woocommerce' ), 'desc_tip' => true, 'class' => 'short', 'type' => 'number', 'custom_attributes' => array( 'step' => '1', 'min' => '0' - ) ) ); + ) ) ); // Usage limit per users - woocommerce_wp_text_input( array( 'id' => 'usage_limit_per_user', 'label' => __( 'Usage limit per user', 'woocommerce' ), 'placeholder' => _x( 'Unlimited usage', 'placeholder', 'woocommerce' ), 'description' => __( 'How many times this coupon can be used by an invidual user. Uses billing email for guests, and user ID for logged in users.', 'woocommerce' ), 'desc_tip' => true, 'class' => '', 'type' => 'number', 'custom_attributes' => array( + woocommerce_wp_text_input( array( 'id' => 'usage_limit_per_user', 'label' => __( 'Usage limit per user', 'woocommerce' ), 'placeholder' => _x( 'Unlimited usage', 'placeholder', 'woocommerce' ), 'description' => __( 'How many times this coupon can be used by an invidual user. Uses billing email for guests, and user ID for logged in users.', 'woocommerce' ), 'desc_tip' => true, 'class' => 'short', 'type' => 'number', 'custom_attributes' => array( 'step' => '1', 'min' => '0' - ) ) ); + ) ) ); echo '
      '; + do_action( 'woocommerce_coupon_options_usage_limit' ); + ?>
      +
      get_var( $wpdb->prepare( " SELECT $wpdb->posts.ID - FROM $wpdb->posts - WHERE $wpdb->posts.post_type = 'shop_coupon' - AND $wpdb->posts.post_status = 'publish' - AND $wpdb->posts.post_title = '%s' - AND $wpdb->posts.ID != %s + FROM $wpdb->posts + WHERE $wpdb->posts.post_type = 'shop_coupon' + AND $wpdb->posts.post_status = 'publish' + AND $wpdb->posts.post_title = '%s' + AND $wpdb->posts.ID != %s ", $post->post_title, $post_id ) ); - if ( $coupon_found ) + if ( $coupon_found ) { WC_Admin_Meta_Boxes::add_error( __( 'Coupon code already exists - customers will use the latest coupon with this code.', 'woocommerce' ) ); + } // Add/Replace data to array - $type = wc_clean( $_POST['discount_type'] ); - $amount = wc_format_decimal( $_POST['coupon_amount'] ); - $usage_limit = empty( $_POST['usage_limit'] ) ? '' : absint( $_POST['usage_limit'] ); - $usage_limit_per_user = empty( $_POST['usage_limit_per_user'] ) ? '' : absint( $_POST['usage_limit_per_user'] ); + $type = wc_clean( $_POST['discount_type'] ); + $amount = wc_format_decimal( $_POST['coupon_amount'] ); + $usage_limit = empty( $_POST['usage_limit'] ) ? '' : absint( $_POST['usage_limit'] ); + $usage_limit_per_user = empty( $_POST['usage_limit_per_user'] ) ? '' : absint( $_POST['usage_limit_per_user'] ); $limit_usage_to_x_items = empty( $_POST['limit_usage_to_x_items'] ) ? '' : absint( $_POST['limit_usage_to_x_items'] ); - $individual_use = isset( $_POST['individual_use'] ) ? 'yes' : 'no'; - $expiry_date = wc_clean( $_POST['expiry_date'] ); - $apply_before_tax = isset( $_POST['apply_before_tax'] ) ? 'yes' : 'no'; - $free_shipping = isset( $_POST['free_shipping'] ) ? 'yes' : 'no'; - $exclude_sale_items = isset( $_POST['exclude_sale_items'] ) ? 'yes' : 'no'; - $minimum_amount = wc_format_decimal( $_POST['minimum_amount'] ); - $customer_email = array_filter( array_map( 'trim', explode( ',', wc_clean( $_POST['customer_email'] ) ) ) ); + $individual_use = isset( $_POST['individual_use'] ) ? 'yes' : 'no'; + $expiry_date = wc_clean( $_POST['expiry_date'] ); + $apply_before_tax = isset( $_POST['apply_before_tax'] ) ? 'yes' : 'no'; + $free_shipping = isset( $_POST['free_shipping'] ) ? 'yes' : 'no'; + $exclude_sale_items = isset( $_POST['exclude_sale_items'] ) ? 'yes' : 'no'; + $minimum_amount = wc_format_decimal( $_POST['minimum_amount'] ); + $maximum_amount = wc_format_decimal( $_POST['maximum_amount'] ); + $customer_email = array_filter( array_map( 'trim', explode( ',', wc_clean( $_POST['customer_email'] ) ) ) ); if ( isset( $_POST['product_ids'] ) ) { - $product_ids = implode( ',', array_filter( array_map( 'intval', (array) $_POST['product_ids'] ) ) ); + $product_ids = implode( ',', array_filter( array_map( 'intval', (array) $_POST['product_ids'] ) ) ); } else { $product_ids = ''; } if ( isset( $_POST['exclude_product_ids'] ) ) { - $exclude_product_ids = implode( ',', array_filter( array_map( 'intval', (array) $_POST['exclude_product_ids'] ) ) ); + $exclude_product_ids = implode( ',', array_filter( array_map( 'intval', (array) $_POST['exclude_product_ids'] ) ) ); } else { $exclude_product_ids = ''; } - $product_categories = isset( $_POST['product_categories'] ) ? array_map( 'intval', $_POST['product_categories'] ) : array(); + $product_categories = isset( $_POST['product_categories'] ) ? array_map( 'intval', $_POST['product_categories'] ) : array(); $exclude_product_categories = isset( $_POST['exclude_product_categories'] ) ? array_map( 'intval', $_POST['exclude_product_categories'] ) : array(); // Save @@ -268,9 +287,9 @@ class WC_Meta_Box_Coupon_Data { update_post_meta( $post_id, 'product_categories', $product_categories ); update_post_meta( $post_id, 'exclude_product_categories', $exclude_product_categories ); update_post_meta( $post_id, 'minimum_amount', $minimum_amount ); + update_post_meta( $post_id, 'maximum_amount', $maximum_amount ); update_post_meta( $post_id, 'customer_email', $customer_email ); - /* Deprecated - same hook name as in the meta */ do_action( 'woocommerce_coupon_options' ); - do_action( 'woocommerce_coupon_options_save' ); + do_action( 'woocommerce_coupon_options_save', $post_id ); } -} \ No newline at end of file +} diff --git a/includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php b/includes/admin/meta-boxes/class-wc-meta-box-order-actions.php similarity index 84% rename from includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php rename to includes/admin/meta-boxes/class-wc-meta-box-order-actions.php index f8c8aae9576..c4d681d72a9 100644 --- a/includes/admin/post-types/meta-boxes/class-wc-meta-box-order-actions.php +++ b/includes/admin/meta-boxes/class-wc-meta-box-order-actions.php @@ -4,9 +4,9 @@ * * Functions for displaying the order actions meta box. * - * @author WooThemes - * @category Admin - * @package WooCommerce/Admin/Meta Boxes + * @author WooThemes + * @category Admin + * @package WooCommerce/Admin/Meta Boxes * @version 2.1.0 */ @@ -18,10 +18,11 @@ class WC_Meta_Box_Order_Actions { * Output the metabox */ public static function output( $post ) { - global $woocommerce, $theorder, $wpdb; + global $theorder; - if ( ! is_object( $theorder ) ) - $theorder = new WC_Order( $post->ID ); + if ( ! is_object( $theorder ) ) { + $theorder = wc_get_order( $post->ID ); + } $order = $theorder; ?> @@ -34,10 +35,9 @@ class WC_Meta_Box_Order_Actions { mailer(); - + $mailer = WC()->mailer(); $available_emails = apply_filters( 'woocommerce_resend_order_emails_available', array( 'new_order', 'customer_processing_order', 'customer_completed_order', 'customer_invoice' ) ); - $mails = $mailer->get_emails(); + $mails = $mailer->get_emails(); if ( ! empty( $mails ) ) { foreach ( $mails as $mail ) { @@ -48,7 +48,9 @@ class WC_Meta_Box_Order_Actions { } ?> - + + + $title ) { ?> @@ -59,11 +61,14 @@ class WC_Meta_Box_Order_Actions {
    • ID ) ) { - if ( ! EMPTY_TRASH_DAYS ) + + if ( ! EMPTY_TRASH_DAYS ) { $delete_text = __( 'Delete Permanently', 'woocommerce' ); - else + } else { $delete_text = __( 'Move to Trash', 'woocommerce' ); + } ?>
      @@ -81,8 +86,9 @@ class WC_Meta_Box_Order_Actions { * Save meta box data */ public static function save( $post_id, $post ) { + // Order data saved, now get it so we can manipulate status - $order = new WC_Order( $post_id ); + $order = wc_get_order( $post_id ); // Handle button actions if ( ! empty( $_POST['wc_order_action'] ) ) { @@ -93,6 +99,11 @@ class WC_Meta_Box_Order_Actions { do_action( 'woocommerce_before_resend_order_emails', $order ); + // Ensure gateways are loaded in case they need to insert data into the emails + WC()->payment_gateways(); + WC()->shipping(); + + // Load mailer $mailer = WC()->mailer(); $email_to_send = str_replace( 'send_email_', '', $action ); @@ -121,4 +132,4 @@ class WC_Meta_Box_Order_Actions { } } } -} \ No newline at end of file +} diff --git a/includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php b/includes/admin/meta-boxes/class-wc-meta-box-order-data.php similarity index 62% rename from includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php rename to includes/admin/meta-boxes/class-wc-meta-box-order-data.php index 19a5379e655..3b0d192e687 100644 --- a/includes/admin/post-types/meta-boxes/class-wc-meta-box-order-data.php +++ b/includes/admin/meta-boxes/class-wc-meta-box-order-data.php @@ -7,109 +7,123 @@ * @author WooThemes * @category Admin * @package WooCommerce/Admin/Meta Boxes - * @version 2.1.0 + * @version 2.2.0 */ -if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly +if ( ! defined( 'ABSPATH' ) ) { + exit; // Exit if accessed directly +} /** * WC_Meta_Box_Order_Data */ class WC_Meta_Box_Order_Data { - private static $billing_fields; - private static $shipping_fields; + /** + * Billing fields + * + * @var array + */ + private static $billing_fields = array(); + + /** + * Shipping fields + * + * @var array + */ + private static $shipping_fields = array(); /** * Init billing and shipping fields we display + save */ public static function init_address_fields() { + self::$billing_fields = apply_filters( 'woocommerce_admin_billing_fields', array( 'first_name' => array( 'label' => __( 'First Name', 'woocommerce' ), - 'show' => false - ), + 'show' => false + ), 'last_name' => array( 'label' => __( 'Last Name', 'woocommerce' ), - 'show' => false - ), + 'show' => false + ), 'company' => array( 'label' => __( 'Company', 'woocommerce' ), - 'show' => false - ), + 'show' => false + ), 'address_1' => array( 'label' => __( 'Address 1', 'woocommerce' ), - 'show' => false - ), + 'show' => false + ), 'address_2' => array( 'label' => __( 'Address 2', 'woocommerce' ), - 'show' => false - ), + 'show' => false + ), 'city' => array( 'label' => __( 'City', 'woocommerce' ), - 'show' => false - ), + 'show' => false + ), 'postcode' => array( 'label' => __( 'Postcode', 'woocommerce' ), - 'show' => false - ), + 'show' => false + ), 'country' => array( - 'label' => __( 'Country', 'woocommerce' ), - 'show' => false, - 'type' => 'select', + 'label' => __( 'Country', 'woocommerce' ), + 'show' => false, + 'type' => 'select', 'options' => array( '' => __( 'Select a country…', 'woocommerce' ) ) + WC()->countries->get_allowed_countries() - ), + ), 'state' => array( 'label' => __( 'State/County', 'woocommerce' ), - 'show' => false - ), + 'show' => false + ), 'email' => array( 'label' => __( 'Email', 'woocommerce' ), - ), + ), 'phone' => array( 'label' => __( 'Phone', 'woocommerce' ), - ), + ), ) ); self::$shipping_fields = apply_filters( 'woocommerce_admin_shipping_fields', array( 'first_name' => array( 'label' => __( 'First Name', 'woocommerce' ), - 'show' => false - ), + 'show' => false + ), 'last_name' => array( 'label' => __( 'Last Name', 'woocommerce' ), - 'show' => false - ), + 'show' => false + ), 'company' => array( 'label' => __( 'Company', 'woocommerce' ), - 'show' => false - ), + 'show' => false + ), 'address_1' => array( 'label' => __( 'Address 1', 'woocommerce' ), - 'show' => false - ), + 'show' => false + ), 'address_2' => array( 'label' => __( 'Address 2', 'woocommerce' ), - 'show' => false - ), + 'show' => false + ), 'city' => array( 'label' => __( 'City', 'woocommerce' ), - 'show' => false - ), + 'show' => false + ), 'postcode' => array( 'label' => __( 'Postcode', 'woocommerce' ), - 'show' => false - ), + 'show' => false + ), 'country' => array( - 'label' => __( 'Country', 'woocommerce' ), - 'show' => false, - 'type' => 'select', + 'label' => __( 'Country', 'woocommerce' ), + 'show' => false, + 'type' => 'select', 'options' => array( '' => __( 'Select a country…', 'woocommerce' ) ) + WC()->countries->get_shipping_countries() - ), + ), 'state' => array( 'label' => __( 'State/County', 'woocommerce' ), - 'show' => false - ), + 'show' => false + ), ) ); } @@ -119,13 +133,20 @@ class WC_Meta_Box_Order_Data { public static function output( $post ) { global $theorder; - if ( ! is_object( $theorder ) ) - $theorder = new WC_Order( $post->ID ); + if ( ! is_object( $theorder ) ) { + $theorder = wc_get_order( $post->ID ); + } $order = $theorder; self::init_address_fields(); + if ( WC()->payment_gateways() ) { + $payment_gateways = WC()->payment_gateways->payment_gateways(); + } + + $payment_method = ! empty( $order->payment_method ) ? $order->payment_method : ''; + wp_nonce_field( 'woocommerce_save_data', 'woocommerce_meta_nonce' ); ?>
      - +
      -

      +

      get_order_number() ) ); ?>

      get_order_number() ) . '. '; + if ( $payment_method ) { + printf( __( 'Payment via %s', 'woocommerce' ), ( isset( $payment_gateways[ $payment_method ] ) ? esc_html( $payment_gateways[ $payment_method ]->get_title() ) : esc_html( $payment_method ) ) ); - if ( $ip_address = get_post_meta( $post->ID, '_customer_ip_address', true ) ) - echo __( 'Customer IP:', 'woocommerce' ) . ' ' . esc_html( $ip_address ); + if ( $transaction_id = $order->get_transaction_id() ) { + if ( isset( $payment_gateways[ $payment_method ] ) && ( $url = $payment_gateways[ $payment_method ]->get_transaction_url( $order ) ) ) { + echo ' (' . esc_html( $transaction_id ) . ')'; + } else { + echo ' (' . esc_html( $transaction_id ) . ')'; + } + } + echo '. '; + } + + if ( $ip_address = get_post_meta( $post->ID, '_customer_ip_address', true ) ) { + echo __( 'Customer IP', 'woocommerce' ) . ': ' . esc_html( $ip_address ); + } ?>

      @@ -156,9 +189,9 @@ class WC_Meta_Box_Order_Data {

      @@ -179,48 +212,47 @@ class WC_Meta_Box_Order_Data {
      -

      Edit

      +

      <?php _e( 'Edit', 'woocommerce' ); ?>

      '; - if ( $order->get_formatted_billing_address() ) - echo '

      ' . __( 'Address', 'woocommerce' ) . ':' . esc_html( preg_replace( '##i', ', ', $order->get_formatted_billing_address() ) ) . '

      '; - else + if ( $order->get_formatted_billing_address() ) { + echo '

      ' . __( 'Address', 'woocommerce' ) . ':' . wp_kses( $order->get_formatted_billing_address(), array( 'br' => array() ) ) . '

      '; + } else { echo '

      ' . __( 'Address', 'woocommerce' ) . ': ' . __( 'No billing address set.', 'woocommerce' ) . '

      '; + } foreach ( self::$billing_fields as $key => $field ) { - if ( isset( $field['show'] ) && $field['show'] === false ) + if ( isset( $field['show'] ) && false === $field['show'] ) { continue; + } $field_name = 'billing_' . $key; - if ( $order->$field_name ) + if ( $order->$field_name ) { echo '

      ' . esc_html( $field['label'] ) . ': ' . make_clickable( esc_html( $order->$field_name ) ) . '

      '; + } } - if ( WC()->payment_gateways() ) - $payment_gateways = WC()->payment_gateways->payment_gateways(); - - $payment_method = ! empty( $order->payment_method ) ? $order->payment_method : ''; - - if ( $payment_method ) - echo '

      ' . __( 'Payment Method', 'woocommerce' ) . ': ' . ( isset( $payment_gateways[ $payment_method ] ) ? esc_html( $payment_gateways[ $payment_method ]->get_title() ) : esc_html( $payment_method ) ) . '

      '; - echo '
      '; // Display form - echo '

      '; + echo '

      '; foreach ( self::$billing_fields as $key => $field ) { - if ( ! isset( $field['type'] ) ) + if ( ! isset( $field['type'] ) ) { $field['type'] = 'text'; + } + switch ( $field['type'] ) { - case "select" : - woocommerce_wp_select( array( 'id' => '_billing_' . $key, 'label' => $field['label'], 'options' => $field['options'] ) ); + case 'select' : + // allow for setting a default value programaticaly, and draw the selectbox + woocommerce_wp_select( array( 'id' => '_billing_' . $key, 'label' => $field['label'], 'options' => $field['options'], 'value' => isset( $field['value'] ) ? $field['value'] : '' ) ); break; default : - woocommerce_wp_text_input( array( 'id' => '_billing_' . $key, 'label' => $field['label'] ) ); + // allow for setting a default value programaticaly, and draw the textbox + woocommerce_wp_text_input( array( 'id' => '_billing_' . $key, 'label' => $field['label'], 'value' => isset( $field['value'] ) ? $field['value'] : '' ) ); break; } } @@ -236,8 +268,9 @@ class WC_Meta_Box_Order_Data { foreach ( $payment_gateways as $gateway ) { if ( $gateway->enabled == "yes" ) { echo ''; - if ( $payment_method == $gateway->id ) + if ( $payment_method == $gateway->id ) { $found_method = true; + } } } @@ -251,6 +284,8 @@ class WC_Meta_Box_Order_Data {

      '_transaction_id', 'label' => __( 'Transaction ID', 'woocommerce' ) ) ); + echo '
      '; do_action( 'woocommerce_admin_order_data_after_billing_address', $order ); @@ -258,48 +293,58 @@ class WC_Meta_Box_Order_Data {
      -

      Edit

      +

      <?php _e( 'Edit', 'woocommerce' ); ?>

      '; - if ( $order->get_formatted_shipping_address() ) - echo '

      ' . __( 'Address', 'woocommerce' ) . ':' . esc_html( preg_replace( '##i', ', ', $order->get_formatted_shipping_address() ) ) . '

      '; - else + if ( $order->get_formatted_shipping_address() ) { + echo '

      ' . __( 'Address', 'woocommerce' ) . ':' . wp_kses( $order->get_formatted_shipping_address(), array( 'br' => array() ) ) . '

      '; + } else { echo '

      ' . __( 'Address', 'woocommerce' ) . ': ' . __( 'No shipping address set.', 'woocommerce' ) . '

      '; - - if ( self::$shipping_fields ) foreach ( self::$shipping_fields as $key => $field ) { - if ( isset( $field['show'] ) && $field['show'] === false ) - continue; - - $field_name = 'shipping_' . $key; - - if ( ! empty( $order->$field_name ) ) - echo '

      ' . esc_html( $field['label'] ) . ': ' . make_clickable( esc_html( $order->$field_name ) ) . '

      '; } - if ( apply_filters( 'woocommerce_enable_order_notes_field', get_option( 'woocommerce_enable_order_comments', 'yes' ) == 'yes' ) && $post->post_excerpt ) + if ( self::$shipping_fields ) { + foreach ( self::$shipping_fields as $key => $field ) { + if ( isset( $field['show'] ) && false === $field['show'] ) { + continue; + } + + $field_name = 'shipping_' . $key; + + if ( ! empty( $order->$field_name ) ) { + echo '

      ' . esc_html( $field['label'] ) . ': ' . make_clickable( esc_html( $order->$field_name ) ) . '

      '; + } + } + } + + if ( apply_filters( 'woocommerce_enable_order_notes_field', 'yes' == get_option( 'woocommerce_enable_order_comments', 'yes' ) ) && $post->post_excerpt ) { echo '

      ' . __( 'Customer Note', 'woocommerce' ) . ': ' . nl2br( esc_html( $post->post_excerpt ) ) . '

      '; + } echo '
      '; // Display form - echo '

      '; + echo '

      '; - if ( self::$shipping_fields ) foreach ( self::$shipping_fields as $key => $field ) { - if ( ! isset( $field['type'] ) ) - $field['type'] = 'text'; - switch ( $field['type'] ) { - case "select" : - woocommerce_wp_select( array( 'id' => '_shipping_' . $key, 'label' => $field['label'], 'options' => $field['options'] ) ); - break; - default : - woocommerce_wp_text_input( array( 'id' => '_shipping_' . $key, 'label' => $field['label'] ) ); - break; + if ( self::$shipping_fields ) { + foreach ( self::$shipping_fields as $key => $field ) { + if ( ! isset( $field['type'] ) ) { + $field['type'] = 'text'; + } + + switch ( $field['type'] ) { + case 'select' : + woocommerce_wp_select( array( 'id' => '_shipping_' . $key, 'label' => $field['label'], 'options' => $field['options'] ) ); + break; + default : + woocommerce_wp_text_input( array( 'id' => '_shipping_' . $key, 'label' => $field['label'] ) ); + break; + } } } - if ( apply_filters( 'woocommerce_enable_order_notes_field', get_option( 'woocommerce_enable_order_comments', 'yes' ) == 'yes' ) ) { + if ( apply_filters( 'woocommerce_enable_order_notes_field', 'yes' == get_option( 'woocommerce_enable_order_comments', 'yes' ) ) ) { ?>

      @@ -319,25 +364,25 @@ class WC_Meta_Box_Order_Data { // Ajax Chosen Customer Selectors JS wc_enqueue_js( " - jQuery('select.ajax_chosen_select_customer').ajaxChosen({ - method: 'GET', - url: '" . admin_url('admin-ajax.php') . "', - dataType: 'json', - afterTypeDelay: 100, - minTermLength: 1, - data: { - action: 'woocommerce_json_search_customers', - security: '" . wp_create_nonce("search-customers") . "' - } - }, function (data) { + jQuery( 'select.ajax_chosen_select_customer' ).ajaxChosen({ + method: 'GET', + url: '" . admin_url( 'admin-ajax.php' ) . "', + dataType: 'json', + afterTypeDelay: 100, + minTermLength: 1, + data: { + action: 'woocommerce_json_search_customers', + security: '" . wp_create_nonce( 'search-customers' ) . "' + } + }, function ( data ) { var terms = {}; - $.each(data, function (i, val) { - terms[i] = val; - }); + $.each( data, function ( i, val ) { + terms[i] = val; + }); - return terms; + return terms; }); " ); } @@ -356,23 +401,32 @@ class WC_Meta_Box_Order_Data { // Update meta update_post_meta( $post_id, '_customer_user', absint( $_POST['customer_user'] ) ); - if ( self::$billing_fields ) - foreach ( self::$billing_fields as $key => $field ) + if ( self::$billing_fields ) { + foreach ( self::$billing_fields as $key => $field ) { update_post_meta( $post_id, '_billing_' . $key, wc_clean( $_POST[ '_billing_' . $key ] ) ); + } + } - if ( self::$shipping_fields ) - foreach ( self::$shipping_fields as $key => $field ) + if ( self::$shipping_fields ) { + foreach ( self::$shipping_fields as $key => $field ) { update_post_meta( $post_id, '_shipping_' . $key, wc_clean( $_POST[ '_shipping_' . $key ] ) ); + } + } + + if ( isset( $_POST['_transaction_id'] ) ) { + update_post_meta( $post_id, '_transaction_id', wc_clean( $_POST[ '_transaction_id' ] ) ); + } // Payment method handling if ( get_post_meta( $post_id, '_payment_method', true ) !== stripslashes( $_POST['_payment_method'] ) ) { - $methods = WC()->payment_gateways->payment_gateways(); - $payment_method = wc_clean( $_POST['_payment_method'] ); - $payment_method_title = $payment_method; + $methods = WC()->payment_gateways->payment_gateways(); + $payment_method = wc_clean( $_POST['_payment_method'] ); + $payment_method_title = $payment_method; - if ( isset( $methods) && isset( $methods[ $payment_method ] ) ) + if ( isset( $methods) && isset( $methods[ $payment_method ] ) ) { $payment_method_title = $methods[ $payment_method ]->get_title(); + } update_post_meta( $post_id, '_payment_method', $payment_method ); update_post_meta( $post_id, '_payment_method_title', $payment_method_title ); @@ -390,13 +444,11 @@ class WC_Meta_Box_Order_Data { $wpdb->query( $wpdb->prepare( "UPDATE $wpdb->posts SET post_date = %s, post_date_gmt = %s WHERE ID = %s", $date, get_gmt_from_date( $date ), $post_id ) ); // Order data saved, now get it so we can manipulate status - $order = new WC_Order( $post_id ); + $order = wc_get_order( $post_id ); // Order status $order->update_status( $_POST['order_status'] ); - delete_transient( 'woocommerce_processing_order_count' ); - - $wpdb->query( "DELETE FROM `$wpdb->options` WHERE `option_name` LIKE ('_transient_wc_report_%') OR `option_name` LIKE ('_transient_timeout_wc_report_%')" ); + wc_delete_shop_order_transients( $post_id ); } -} \ No newline at end of file +} diff --git a/includes/admin/post-types/meta-boxes/class-wc-meta-box-order-downloads.php b/includes/admin/meta-boxes/class-wc-meta-box-order-downloads.php similarity index 69% rename from includes/admin/post-types/meta-boxes/class-wc-meta-box-order-downloads.php rename to includes/admin/meta-boxes/class-wc-meta-box-order-downloads.php index 06bfcdf477a..548452f6f24 100644 --- a/includes/admin/post-types/meta-boxes/class-wc-meta-box-order-downloads.php +++ b/includes/admin/meta-boxes/class-wc-meta-box-order-downloads.php @@ -2,9 +2,9 @@ /** * Order Downloads * - * @author WooThemes - * @category Admin - * @package WooCommerce/Admin/Meta Boxes + * @author WooThemes + * @category Admin + * @package WooCommerce/Admin/Meta Boxes * @version 2.1.0 */ @@ -19,7 +19,7 @@ class WC_Meta_Box_Order_Downloads { * Output the metabox */ public static function output( $post ) { - global $woocommerce, $post, $wpdb; + global $post, $wpdb; ?>
      @@ -32,10 +32,11 @@ class WC_Meta_Box_Order_Downloads { $product = null; $loop = 0; + if ( $download_permissions && sizeof( $download_permissions ) > 0 ) foreach ( $download_permissions as $download ) { if ( ! $product || $product->id != $download->product_id ) { - $product = get_product( absint( $download->product_id ) ); + $product = wc_get_product( absint( $download->product_id ) ); $file_counter = 1; } @@ -75,52 +76,53 @@ class WC_Meta_Box_Order_Downloads { * Save meta box data */ public static function save( $post_id, $post ) { - global $wpdb, $woocommerce; + global $wpdb; if ( isset( $_POST['download_id'] ) ) { // Download data - $download_ids = $_POST['download_id']; - $product_ids = $_POST['product_id']; - $downloads_remaining = $_POST['downloads_remaining']; - $access_expires = $_POST['access_expires']; + $download_ids = $_POST['download_id']; + $product_ids = $_POST['product_id']; + $downloads_remaining = $_POST['downloads_remaining']; + $access_expires = $_POST['access_expires']; // Order data - $order_key = get_post_meta( $post->ID, '_order_key', true ); - $customer_email = get_post_meta( $post->ID, '_billing_email', true ); - $customer_user = get_post_meta( $post->ID, '_customer_user', true ); - $product_ids_count = sizeof( $product_ids ); + $order_key = get_post_meta( $post->ID, '_order_key', true ); + $customer_email = get_post_meta( $post->ID, '_billing_email', true ); + $customer_user = get_post_meta( $post->ID, '_customer_user', true ); + $product_ids_count = sizeof( $product_ids ); for ( $i = 0; $i < $product_ids_count; $i ++ ) { - if ( ! isset( $product_ids[ $i ] ) ) - continue; - $data = array( + if ( ! isset( $product_ids[ $i ] ) ) { + continue; + } + + $data = array( 'user_id' => absint( $customer_user ), 'user_email' => wc_clean( $customer_email ), 'downloads_remaining' => wc_clean( $downloads_remaining[ $i ] ) - ); + ); - $format = array( '%d', '%s', '%s' ); + $format = array( '%d', '%s', '%s' ); - $expiry = ( array_key_exists( $i, $access_expires ) && $access_expires[ $i ] != '' ) ? date_i18n( 'Y-m-d', strtotime( $access_expires[ $i ] ) ) : null; + $expiry = ( array_key_exists( $i, $access_expires ) && $access_expires[ $i ] != '' ) ? date_i18n( 'Y-m-d', strtotime( $access_expires[ $i ] ) ) : null; - if ( ! is_null( $expiry ) ) { + if ( ! is_null( $expiry ) ) { $data['access_expires'] = $expiry; $format[] = '%s'; - } + } - $wpdb->update( $wpdb->prefix . "woocommerce_downloadable_product_permissions", - $data, - array( + $wpdb->update( $wpdb->prefix . "woocommerce_downloadable_product_permissions", + $data, + array( 'order_id' => $post_id, 'product_id' => absint( $product_ids[ $i ] ), 'download_id' => wc_clean( $download_ids[ $i ] ) ), $format, array( '%d', '%d', '%s' ) ); - } } } -} \ No newline at end of file +} diff --git a/includes/admin/meta-boxes/class-wc-meta-box-order-items.php b/includes/admin/meta-boxes/class-wc-meta-box-order-items.php new file mode 100644 index 00000000000..0a24cfe0b9a --- /dev/null +++ b/includes/admin/meta-boxes/class-wc-meta-box-order-items.php @@ -0,0 +1,39 @@ +ID ); + + include( 'views/html-order-items.php' ); + } + + /** + * Save meta box data + */ + public static function save( $post_id, $post ) { + wc_save_order_items( $post_id, $_POST ); + } +} diff --git a/includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php b/includes/admin/meta-boxes/class-wc-meta-box-order-notes.php similarity index 85% rename from includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php rename to includes/admin/meta-boxes/class-wc-meta-box-order-notes.php index 0b59c0c7036..c73e4a4f8a4 100644 --- a/includes/admin/post-types/meta-boxes/class-wc-meta-box-order-notes.php +++ b/includes/admin/meta-boxes/class-wc-meta-box-order-notes.php @@ -2,9 +2,9 @@ /** * Order Notes * - * @author WooThemes - * @category Admin - * @package WooCommerce/Admin/Meta Boxes + * @author WooThemes + * @category Admin + * @package WooCommerce/Admin/Meta Boxes * @version 2.1.0 */ @@ -19,20 +19,26 @@ class WC_Meta_Box_Order_Notes { * Output the metabox */ public static function output( $post ) { - global $woocommerce, $post; + global $post; $args = array( - 'post_id' => $post->ID, - 'approve' => 'approve', - 'type' => 'order_note' + 'post_id' => $post->ID, + 'approve' => 'approve', + 'type' => 'order_note' ); + remove_filter( 'comments_clauses', array( 'WC_Comments', 'exclude_order_comments' ), 10, 1 ); + $notes = get_comments( $args ); + add_filter( 'comments_clauses', array( 'WC_Comments', 'exclude_order_comments' ), 10, 1 ); + echo '
        '; if ( $notes ) { + foreach( $notes as $note ) { + $note_classes = get_comment_meta( $note->comment_ID, 'is_customer_note', true ) ? array( 'customer-note', 'note' ) : array( 'note' ); ?> @@ -48,6 +54,7 @@ class WC_Meta_Box_Order_Notes { ' . __( 'There are no notes for this order yet.', 'woocommerce' ) . ''; } @@ -69,4 +76,4 @@ class WC_Meta_Box_Order_Notes {
      ID; - if ( $terms = wp_get_object_terms( $post->ID, 'product_type' ) ) + if ( $terms = wp_get_object_terms( $post->ID, 'product_type' ) ) { $product_type = sanitize_title( current( $terms )->name ); - else - $product_type = 'simple'; + } else { + $product_type = apply_filters( 'default_product_type', 'simple' ); + } $product_type_selector = apply_filters( 'product_type_selector', array( - 'simple' => __( 'Simple product', 'woocommerce' ), - 'grouped' => __( 'Grouped product', 'woocommerce' ), - 'external' => __( 'External/Affiliate product', 'woocommerce' ), - 'variable' => __( 'Variable product', 'woocommerce' ) + 'simple' => __( 'Simple product', 'woocommerce' ), + 'grouped' => __( 'Grouped product', 'woocommerce' ), + 'external' => __( 'External/Affiliate product', 'woocommerce' ), + 'variable' => __( 'Variable product', 'woocommerce' ) ), $product_type ); - $type_box = ''; $product_type_options = apply_filters( 'product_type_options', array( @@ -64,8 +70,9 @@ class WC_Meta_Box_Product_Data { foreach ( $product_type_options as $key => $option ) { $selected_value = get_post_meta( $post->ID, '_' . $key, true ); - if ( $selected_value == '' ) + if ( '' == $selected_value && isset( $option['default'] ) ) { $selected_value = $option['default']; + } $type_box .= ''; } @@ -131,12 +138,13 @@ class WC_Meta_Box_Product_Data { echo '
      '; // SKU - if( wc_product_sku_enabled() ) + if ( wc_product_sku_enabled() ) { woocommerce_wp_text_input( array( 'id' => '_sku', 'label' => '' . __( 'SKU', 'woocommerce' ) . '', 'desc_tip' => 'true', 'description' => __( 'SKU refers to a Stock-keeping unit, a unique identifier for each distinct product and service that can be purchased.', 'woocommerce' ) ) ); - else + } else { echo ''; + } - do_action('woocommerce_product_options_sku'); + do_action( 'woocommerce_product_options_sku' ); echo '
      '; @@ -159,8 +167,8 @@ class WC_Meta_Box_Product_Data { woocommerce_wp_text_input( array( 'id' => '_sale_price', 'data_type' => 'price', 'label' => __( 'Sale Price', 'woocommerce' ) . ' ('.get_woocommerce_currency_symbol().')', 'description' => '' . __( 'Schedule', 'woocommerce' ) . '' ) ); // Special Price date range - $sale_price_dates_from = ( $date = get_post_meta( $thepostid, '_sale_price_dates_from', true ) ) ? date_i18n( 'Y-m-d', $date ) : ''; - $sale_price_dates_to = ( $date = get_post_meta( $thepostid, '_sale_price_dates_to', true ) ) ? date_i18n( 'Y-m-d', $date ) : ''; + $sale_price_dates_from = ( $date = get_post_meta( $thepostid, '_sale_price_dates_from', true ) ) ? date_i18n( 'Y-m-d', $date ) : ''; + $sale_price_dates_to = ( $date = get_post_meta( $thepostid, '_sale_price_dates_to', true ) ) ? date_i18n( 'Y-m-d', $date ) : ''; echo '

      @@ -187,6 +195,17 @@ class WC_Meta_Box_Product_Data {   + + ID, '_downloadable_files', true ); + + if ( $downloadable_files ) { + foreach ( $downloadable_files as $key => $file ) { + include( 'views/html-product-download.php' ); + } + } + ?> + @@ -202,17 +221,6 @@ class WC_Meta_Box_Product_Data { - - ID, '_downloadable_files', true ); - - if ( $downloadable_files ) { - foreach ( $downloadable_files as $key => $file ) { - include( 'views/html-product-download.php' ); - } - } - ?> -

      '; - if ( get_option( 'woocommerce_calc_taxes' ) == 'yes' ) { + if ( 'yes' == get_option( 'woocommerce_calc_taxes' ) ) { echo '
      '; @@ -248,15 +256,19 @@ class WC_Meta_Box_Product_Data { woocommerce_wp_select( array( 'id' => '_tax_status', 'label' => __( 'Tax Status', 'woocommerce' ), 'options' => array( 'taxable' => __( 'Taxable', 'woocommerce' ), 'shipping' => __( 'Shipping only', 'woocommerce' ), - 'none' => __( 'None', 'woocommerce' ) + 'none' => _x( 'None', 'Tax status', 'woocommerce' ) ) ) ); $tax_classes = array_filter( array_map( 'trim', explode( "\n", get_option( 'woocommerce_tax_classes' ) ) ) ); $classes_options = array(); $classes_options[''] = __( 'Standard', 'woocommerce' ); - if ( $tax_classes ) - foreach ( $tax_classes as $class ) - $classes_options[ sanitize_title( $class ) ] = esc_html( $class ); + + if ( $tax_classes ) { + + foreach ( $tax_classes as $class ) { + $classes_options[ sanitize_title( $class ) ] = esc_html( $class ); + } + } woocommerce_wp_select( array( 'id' => '_tax_class', 'label' => __( 'Tax Class', 'woocommerce' ), 'options' => $classes_options ) ); @@ -276,12 +288,12 @@ class WC_Meta_Box_Product_Data { echo '
      '; - if (get_option('woocommerce_manage_stock')=='yes') { + if ( 'yes' == get_option( 'woocommerce_manage_stock' ) ) { // manage stock - woocommerce_wp_checkbox( array( 'id' => '_manage_stock', 'wrapper_class' => 'show_if_simple show_if_variable', 'label' => __('Manage stock?', 'woocommerce' ), 'description' => __( 'Enable stock management at product level (not needed if managing stock at variation level)', 'woocommerce' ) ) ); + woocommerce_wp_checkbox( array( 'id' => '_manage_stock', 'wrapper_class' => 'show_if_simple show_if_variable', 'label' => __( 'Manage stock?', 'woocommerce' ), 'description' => __( 'Enable stock management at product level', 'woocommerce' ) ) ); - do_action('woocommerce_product_options_stock'); + do_action( 'woocommerce_product_options_stock' ); echo '
      '; @@ -290,44 +302,39 @@ class WC_Meta_Box_Product_Data { 'step' => 'any' ) ) ); - do_action('woocommerce_product_options_stock_fields'); + // Backorders? + woocommerce_wp_select( array( 'id' => '_backorders', 'label' => __( 'Allow Backorders?', 'woocommerce' ), 'options' => array( + 'no' => __( 'Do not allow', 'woocommerce' ), + 'notify' => __( 'Allow, but notify customer', 'woocommerce' ), + 'yes' => __( 'Allow', 'woocommerce' ) + ), 'desc_tip' => true, 'description' => __( 'If managing stock, this controls whether or not backorders are allowed. If enabled, stock quantity can go below 0.', 'woocommerce' ) ) ); + + do_action( 'woocommerce_product_options_stock_fields' ); echo '
      '; } // Stock status - woocommerce_wp_select( array( 'id' => '_stock_status', 'label' => __( 'Stock status', 'woocommerce' ), 'options' => array( + woocommerce_wp_select( array( 'id' => '_stock_status', 'wrapper_class' => 'hide_if_variable', 'label' => __( 'Stock status', 'woocommerce' ), 'options' => array( 'instock' => __( 'In stock', 'woocommerce' ), 'outofstock' => __( 'Out of stock', 'woocommerce' ) ), 'desc_tip' => true, 'description' => __( 'Controls whether or not the product is listed as "in stock" or "out of stock" on the frontend.', 'woocommerce' ) ) ); - if (get_option('woocommerce_manage_stock')=='yes') { - - echo '
      '; - - // Backorders? - woocommerce_wp_select( array( 'id' => '_backorders', 'label' => __( 'Allow Backorders?', 'woocommerce' ), 'options' => array( - 'no' => __( 'Do not allow', 'woocommerce' ), - 'notify' => __( 'Allow, but notify customer', 'woocommerce' ), - 'yes' => __( 'Allow', 'woocommerce' ) - ), 'desc_tip' => true, 'description' => __( 'If managing stock, this controls whether or not backorders are allowed for this product and variations. If enabled, stock quantity can go below 0.', 'woocommerce' ) ) ); - - echo '
      '; - - } + do_action( 'woocommerce_product_options_stock_status' ); echo '
      '; echo '
      '; // Individual product - woocommerce_wp_checkbox( array( 'id' => '_sold_individually', 'wrapper_class' => 'show_if_simple show_if_variable', 'label' => __('Sold Individually', 'woocommerce'), 'description' => __('Enable this to only allow one of this item to be bought in a single order', 'woocommerce') ) ); + woocommerce_wp_checkbox( array( 'id' => '_sold_individually', 'wrapper_class' => 'show_if_simple show_if_variable', 'label' => __( 'Sold Individually', 'woocommerce' ), 'description' => __( 'Enable this to only allow one of this item to be bought in a single order', 'woocommerce' ) ) ); - do_action('woocommerce_product_options_sold_individually'); + do_action( 'woocommerce_product_options_sold_individually' ); echo '
      '; + do_action( 'woocommerce_product_options_inventory_product_data' ); ?>
      @@ -339,8 +346,9 @@ class WC_Meta_Box_Product_Data { echo '
      '; // Weight - if ( wc_product_weight_enabled() ) - woocommerce_wp_text_input( array( 'id' => '_weight', 'label' => __( 'Weight', 'woocommerce' ) . ' (' . get_option('woocommerce_weight_unit') . ')', 'placeholder' => wc_format_localized_decimal( 0 ), 'desc_tip' => 'true', 'description' => __( 'Weight in decimal form', 'woocommerce' ), 'type' => 'text', 'data_type' => 'decimal' ) ); + if ( wc_product_weight_enabled() ) { + woocommerce_wp_text_input( array( 'id' => '_weight', 'label' => __( 'Weight', 'woocommerce' ) . ' (' . get_option( 'woocommerce_weight_unit' ) . ')', 'placeholder' => wc_format_localized_decimal( 0 ), 'desc_tip' => 'true', 'description' => __( 'Weight in decimal form', 'woocommerce' ), 'type' => 'text', 'data_type' => 'decimal' ) ); + } // Size fields if ( wc_product_dimensions_enabled() ) { @@ -363,16 +371,20 @@ class WC_Meta_Box_Product_Data { // Shipping Class $classes = get_the_terms( $thepostid, 'product_shipping_class' ); - if ( $classes && ! is_wp_error( $classes ) ) $current_shipping_class = current($classes)->term_id; else $current_shipping_class = ''; + if ( $classes && ! is_wp_error( $classes ) ) { + $current_shipping_class = current( $classes )->term_id; + } else { + $current_shipping_class = ''; + } $args = array( - 'taxonomy' => 'product_shipping_class', - 'hide_empty' => 0, - 'show_option_none' => __( 'No shipping class', 'woocommerce' ), - 'name' => 'product_shipping_class', - 'id' => 'product_shipping_class', - 'selected' => $current_shipping_class, - 'class' => 'select short' + 'taxonomy' => 'product_shipping_class', + 'hide_empty' => 0, + 'show_option_none' => __( 'No shipping class', 'woocommerce' ), + 'name' => 'product_shipping_class', + 'id' => 'product_shipping_class', + 'selected' => $current_shipping_class, + 'class' => 'select short' ); ?>

      attribute_name ); + // Get name of taxonomy we're now outputting (pa_xxx) + $attribute_taxonomy_name = wc_attribute_taxonomy_name( $tax->attribute_name ); - // Ensure it exists - if ( ! taxonomy_exists( $attribute_taxonomy_name ) ) - continue; + // Ensure it exists + if ( ! taxonomy_exists( $attribute_taxonomy_name ) ) { + continue; + } - $i++; + $i++; - // Get product data values for current taxonomy - this contains ordering and visibility data - if ( isset( $attributes[ sanitize_title( $attribute_taxonomy_name ) ] ) ) - $attribute = $attributes[ sanitize_title( $attribute_taxonomy_name ) ]; + // Get product data values for current taxonomy - this contains ordering and visibility data + if ( isset( $attributes[ sanitize_title( $attribute_taxonomy_name ) ] ) ) { + $attribute = $attributes[ sanitize_title( $attribute_taxonomy_name ) ]; + } - $position = empty( $attribute['position'] ) ? 0 : absint( $attribute['position'] ); + $position = empty( $attribute['position'] ) ? 0 : absint( $attribute['position'] ); - // Get terms of this taxonomy associated with current product - $post_terms = wp_get_post_terms( $thepostid, $attribute_taxonomy_name ); + // Get terms of this taxonomy associated with current product + $post_terms = wp_get_post_terms( $thepostid, $attribute_taxonomy_name ); - // Any set? - $has_terms = ( is_wp_error( $post_terms ) || ! $post_terms || sizeof( $post_terms ) == 0 ) ? 0 : 1; - ?> -
      > + // Any set? + $has_terms = ( is_wp_error( $post_terms ) || ! $post_terms || sizeof( $post_terms ) == 0 ) ? 0 : 1; + ?> +
      >

      @@ -444,14 +458,14 @@ class WC_Meta_Box_Product_Data { - attribute_type == "select" ) : ?> + attribute_type ) : ?> name="attribute_visibility[]" value="1" /> @@ -494,10 +509,11 @@ class WC_Meta_Box_Product_Data {
      @@ -506,55 +522,60 @@ class WC_Meta_Box_Product_Data {

      - -
      -

      - -
      - -

      - - - - - - - - - - - - - -
      - - - - - - - -
      - -
      -
      - -
      -
      -
      - +
      +

      + +
      + +

      + + + + + + + + + + + + + +
      + + + + + + + +
      + +
      +
      + +
      +
      +
      +
      @@ -565,17 +586,19 @@ class WC_Meta_Box_Product_Data { attribute_name ); - $label = $tax->attribute_label ? $tax->attribute_label : $tax->attribute_name; - echo ''; - } - } + + foreach ( $attribute_taxonomies as $tax ) { + $attribute_taxonomy_name = wc_attribute_taxonomy_name( $tax->attribute_name ); + $label = $tax->attribute_label ? $tax->attribute_label : $tax->attribute_name; + echo ''; + } + } ?>

      +
      @@ -586,13 +609,16 @@ class WC_Meta_Box_Product_Data { ID, '_upsell_ids', true ); $product_ids = ! empty( $upsell_ids ) ? array_map( 'absint', $upsell_ids ) : null; + if ( $product_ids ) { + foreach ( $product_ids as $product_id ) { - $product = get_product( $product_id ); + $product = wc_get_product( $product_id ); - if ( $product ) + if ( $product ) { echo ''; + } } } ?> @@ -603,13 +629,16 @@ class WC_Meta_Box_Product_Data { ID, '_crosssell_ids', true ); $product_ids = ! empty( $crosssell_ids ) ? array_map( 'absint', $crosssell_ids ) : null; + if ( $product_ids ) { + foreach ( $product_ids as $product_id ) { - $product = get_product( $product_id ); + $product = wc_get_product( $product_id ); - if ( $product ) + if ( $product ) { echo ''; + } } } ?> @@ -628,23 +657,29 @@ class WC_Meta_Box_Product_Data { if ( $grouped_term = get_term_by( 'slug', 'grouped', 'product_type' ) ) { $posts_in = array_unique( (array) get_objects_in_term( $grouped_term->term_id, 'product_type' ) ); + if ( sizeof( $posts_in ) > 0 ) { + $args = array( - 'post_type' => 'product', - 'post_status' => 'any', - 'numberposts' => -1, - 'orderby' => 'title', - 'order' => 'asc', - 'post_parent' => 0, - 'include' => $posts_in, + 'post_type' => 'product', + 'post_status' => 'any', + 'numberposts' => -1, + 'orderby' => 'title', + 'order' => 'asc', + 'post_parent' => 0, + 'suppress_filters' => 0, + 'include' => $posts_in, ); + $grouped_products = get_posts( $args ); if ( $grouped_products ) { + foreach ( $grouped_products as $product ) { - if ( $product->ID == $post->ID ) + if ( $product->ID == $post->ID ) { continue; + } $post_parents[ $product->ID ] = $product->post_title; } @@ -714,26 +749,47 @@ class WC_Meta_Box_Product_Data { * Show options for the variable product type */ public static function output_variations() { - global $post, $woocommerce; + global $post; $attributes = maybe_unserialize( get_post_meta( $post->ID, '_product_attributes', true ) ); // See if any are set $variation_attribute_found = false; - if ( $attributes ) foreach( $attributes as $attribute ) { - if ( isset( $attribute['is_variation'] ) ) { - $variation_attribute_found = true; - break; + + if ( $attributes ) { + + foreach ( $attributes as $attribute ) { + + if ( isset( $attribute['is_variation'] ) ) { + $variation_attribute_found = true; + break; + } } } // Get tax classes - $tax_classes = array_filter( array_map('trim', explode( "\n", get_option( 'woocommerce_tax_classes' ) ) ) ); - $tax_class_options = array(); + $tax_classes = array_filter( array_map('trim', explode( "\n", get_option( 'woocommerce_tax_classes' ) ) ) ); + $tax_class_options = array(); $tax_class_options[''] = __( 'Standard', 'woocommerce' ); - if ( $tax_classes ) - foreach ( $tax_classes as $class ) + + if ( $tax_classes ) { + + foreach ( $tax_classes as $class ) { $tax_class_options[ sanitize_title( $class ) ] = esc_attr( $class ); + } + } + + $backorder_options = array( + 'no' => __( 'Do not allow', 'woocommerce' ), + 'notify' => __( 'Allow, but notify customer', 'woocommerce' ), + 'yes' => __( 'Allow', 'woocommerce' ) + ); + + $stock_status_options = array( + 'instock' => __( 'In stock', 'woocommerce' ), + 'outofstock' => __( 'Out of stock', 'woocommerce' ) + ); + ?>
      @@ -749,25 +805,36 @@ class WC_Meta_Box_Product_Data {

      - @@ -777,88 +844,108 @@ class WC_Meta_Box_Product_Data { $post->ID, - 'attributes' => $attributes, - 'tax_class_options' => $tax_class_options, - 'sku' => get_post_meta( $post->ID, '_sku', true ), - 'weight' => wc_format_localized_decimal( get_post_meta( $post->ID, '_weight', true ) ), - 'length' => wc_format_localized_decimal( get_post_meta( $post->ID, '_length', true ) ), - 'width' => wc_format_localized_decimal( get_post_meta( $post->ID, '_width', true ) ), - 'height' => wc_format_localized_decimal( get_post_meta( $post->ID, '_height', true ) ), - 'tax_class' => get_post_meta( $post->ID, '_tax_class', true ) + 'id' => $post->ID, + 'attributes' => $attributes, + 'tax_class_options' => $tax_class_options, + 'sku' => get_post_meta( $post->ID, '_sku', true ), + 'weight' => wc_format_localized_decimal( get_post_meta( $post->ID, '_weight', true ) ), + 'length' => wc_format_localized_decimal( get_post_meta( $post->ID, '_length', true ) ), + 'width' => wc_format_localized_decimal( get_post_meta( $post->ID, '_width', true ) ), + 'height' => wc_format_localized_decimal( get_post_meta( $post->ID, '_height', true ) ), + 'tax_class' => get_post_meta( $post->ID, '_tax_class', true ), + 'backorder_options' => $backorder_options, + 'stock_status_options' => $stock_status_options ); - if ( ! $parent_data['weight'] ) + if ( ! $parent_data['weight'] ) { $parent_data['weight'] = wc_format_localized_decimal( 0 ); + } - if ( ! $parent_data['length'] ) + if ( ! $parent_data['length'] ) { $parent_data['length'] = wc_format_localized_decimal( 0 ); + } - if ( ! $parent_data['width'] ) + if ( ! $parent_data['width'] ) { $parent_data['width'] = wc_format_localized_decimal( 0 ); + } - if ( ! $parent_data['height'] ) + if ( ! $parent_data['height'] ) { $parent_data['height'] = wc_format_localized_decimal( 0 ); + } // Get variations $args = array( - 'post_type' => 'product_variation', - 'post_status' => array( 'private', 'publish' ), - 'numberposts' => -1, - 'orderby' => 'menu_order', - 'order' => 'asc', - 'post_parent' => $post->ID + 'post_type' => 'product_variation', + 'post_status' => array( 'private', 'publish' ), + 'numberposts' => -1, + 'orderby' => 'menu_order', + 'order' => 'asc', + 'post_parent' => $post->ID ); + $variations = get_posts( $args ); $loop = 0; - if ( $variations ) foreach ( $variations as $variation ) { - $variation_id = absint( $variation->ID ); - $variation_post_status = esc_attr( $variation->post_status ); - $variation_data = get_post_meta( $variation_id ); - $variation_data['variation_post_id'] = $variation_id; + if ( $variations ) { - // Grab shipping classes - $shipping_classes = get_the_terms( $variation_id, 'product_shipping_class' ); - $shipping_class = ( $shipping_classes && ! is_wp_error( $shipping_classes ) ) ? current( $shipping_classes )->term_id : ''; + foreach ( $variations as $variation ) { - $variation_fields = array( - '_sku', - '_stock', - '_regular_price', - '_sale_price', - '_weight', - '_length', - '_width', - '_height', - '_download_limit', - '_download_expiry', - '_downloadable_files', - '_downloadable', - '_virtual', - '_thumbnail_id', - '_sale_price_dates_from', - '_sale_price_dates_to' - ); + $variation_id = absint( $variation->ID ); + $variation_post_status = esc_attr( $variation->post_status ); + $variation_data = get_post_meta( $variation_id ); + $variation_data['variation_post_id'] = $variation_id; - foreach ( $variation_fields as $field ) - $$field = isset( $variation_data[ $field ][0] ) ? maybe_unserialize( $variation_data[ $field ][0] ) : ''; + // Grab shipping classes + $shipping_classes = get_the_terms( $variation_id, 'product_shipping_class' ); + $shipping_class = ( $shipping_classes && ! is_wp_error( $shipping_classes ) ) ? current( $shipping_classes )->term_id : ''; - $_tax_class = isset( $variation_data['_tax_class'][0] ) ? $variation_data['_tax_class'][0] : null; - $image_id = absint( $_thumbnail_id ); - $image = $image_id ? wp_get_attachment_thumb_url( $image_id ) : ''; + $variation_fields = array( + '_sku', + '_stock', + '_regular_price', + '_sale_price', + '_weight', + '_length', + '_width', + '_height', + '_download_limit', + '_download_expiry', + '_downloadable_files', + '_downloadable', + '_virtual', + '_thumbnail_id', + '_sale_price_dates_from', + '_sale_price_dates_to', + '_manage_stock', + '_stock_status' + ); - // Locale formatting - $_regular_price = wc_format_localized_price( $_regular_price ); - $_sale_price = wc_format_localized_price( $_sale_price ); - $_weight = wc_format_localized_decimal( $_weight ); - $_length = wc_format_localized_decimal( $_length ); - $_width = wc_format_localized_decimal( $_width ); - $_height = wc_format_localized_decimal( $_height ); + foreach ( $variation_fields as $field ) { + $$field = isset( $variation_data[ $field ][0] ) ? maybe_unserialize( $variation_data[ $field ][0] ) : ''; + } - include( 'views/html-variation-admin.php' ); + $_backorders = isset( $variation_data['_backorders'][0] ) ? $variation_data['_backorders'][0] : null; + $_tax_class = isset( $variation_data['_tax_class'][0] ) ? $variation_data['_tax_class'][0] : null; + $image_id = absint( $_thumbnail_id ); + $image = $image_id ? wp_get_attachment_thumb_url( $image_id ) : ''; - $loop++; + // Locale formatting + $_regular_price = wc_format_localized_price( $_regular_price ); + $_sale_price = wc_format_localized_price( $_sale_price ); + $_weight = wc_format_localized_decimal( $_weight ); + $_length = wc_format_localized_decimal( $_length ); + $_width = wc_format_localized_decimal( $_width ); + $_height = wc_format_localized_decimal( $_height ); + + // Stock BW compat + if ( '' !== $_stock ) { + $_manage_stock = 'yes'; + } + + include( 'views/html-variation-admin.php' ); + + $loop++; + } } ?>

      @@ -869,14 +956,16 @@ class WC_Meta_Box_Product_Data { - + : [?] ID, '_default_attributes', true ) ); + foreach ( $attributes as $attribute ) { // Only deal with attributes that are variations - if ( ! $attribute['is_variation'] ) + if ( ! $attribute['is_variation'] ) { continue; + } // Get current value for variation (if set) $variation_selected_value = isset( $default_attributes[ sanitize_title( $attribute['name'] ) ] ) ? $default_attributes[ sanitize_title( $attribute['name'] ) ] : ''; @@ -889,15 +978,17 @@ class WC_Meta_Box_Product_Data { $post_terms = wp_get_post_terms( $post->ID, $attribute['name'] ); - foreach ( $post_terms as $term ) + foreach ( $post_terms as $term ) { echo ''; + } } else { $options = array_map( 'trim', explode( WC_DELIMITER, $attribute['value'] ) ); - foreach ( $options as $option ) + foreach ( $options as $option ) { echo ''; + } } @@ -921,9 +1012,9 @@ class WC_Meta_Box_Product_Data { add_post_meta( $post_id, 'total_sales', '0', true ); // Get types - $product_type = empty( $_POST['product-type'] ) ? 'simple' : sanitize_title( stripslashes( $_POST['product-type'] ) ); - $is_downloadable = isset( $_POST['_downloadable'] ) ? 'yes' : 'no'; - $is_virtual = isset( $_POST['_virtual'] ) ? 'yes' : 'no'; + $product_type = empty( $_POST['product-type'] ) ? 'simple' : sanitize_title( stripslashes( $_POST['product-type'] ) ); + $is_downloadable = isset( $_POST['_downloadable'] ) ? 'yes' : 'no'; + $is_virtual = isset( $_POST['_virtual'] ) ? 'yes' : 'no'; // Product type + Downloadable/Virtual wp_set_object_terms( $post_id, $product_type, 'product_type' ); @@ -931,30 +1022,49 @@ class WC_Meta_Box_Product_Data { update_post_meta( $post_id, '_virtual', $is_virtual ); // Update post meta - if ( isset( $_POST['_regular_price'] ) ) + if ( isset( $_POST['_regular_price'] ) ) { update_post_meta( $post_id, '_regular_price', ( $_POST['_regular_price'] === '' ) ? '' : wc_format_decimal( $_POST['_regular_price'] ) ); - if ( isset( $_POST['_sale_price'] ) ) + } + + if ( isset( $_POST['_sale_price'] ) ) { update_post_meta( $post_id, '_sale_price', ( $_POST['_sale_price'] === '' ? '' : wc_format_decimal( $_POST['_sale_price'] ) ) ); - if ( isset( $_POST['_tax_status'] ) ) update_post_meta( $post_id, '_tax_status', stripslashes( $_POST['_tax_status'] ) ); - if ( isset( $_POST['_tax_class'] ) ) update_post_meta( $post_id, '_tax_class', stripslashes( $_POST['_tax_class'] ) ); - if ( isset( $_POST['_visibility'] ) ) update_post_meta( $post_id, '_visibility', stripslashes( $_POST['_visibility'] ) ); - if ( isset( $_POST['_purchase_note'] ) ) update_post_meta( $post_id, '_purchase_note', stripslashes( $_POST['_purchase_note'] ) ); - update_post_meta( $post_id, '_featured', isset( $_POST['_featured'] ) ? 'yes' : 'no' ); + } + + if ( isset( $_POST['_tax_status'] ) ) { + update_post_meta( $post_id, '_tax_status', stripslashes( $_POST['_tax_status'] ) ); + } + + if ( isset( $_POST['_tax_class'] ) ) { + update_post_meta( $post_id, '_tax_class', stripslashes( $_POST['_tax_class'] ) ); + } + + if ( isset( $_POST['_purchase_note'] ) ) { + update_post_meta( $post_id, '_purchase_note', stripslashes( $_POST['_purchase_note'] ) ); + } + + // Featured + if ( update_post_meta( $post_id, '_featured', isset( $_POST['_featured'] ) ? 'yes' : 'no' ) ) { + delete_transient( 'wc_featured_products' ); + } // Dimensions - if ( $is_virtual == 'no' ) { + if ( 'no' == $is_virtual ) { - if ( isset( $_POST['_weight'] ) ) - update_post_meta( $post_id, '_weight', ( $_POST['_weight'] === '' ) ? '' : wc_format_decimal( $_POST['_weight'] ) ); + if ( isset( $_POST['_weight'] ) ) { + update_post_meta( $post_id, '_weight', ( '' === $_POST['_weight'] ) ? '' : wc_format_decimal( $_POST['_weight'] ) ); + } - if ( isset( $_POST['_length'] ) ) - update_post_meta( $post_id, '_length', ( $_POST['_length'] === '' ) ? '' : wc_format_decimal( $_POST['_length'] ) ); + if ( isset( $_POST['_length'] ) ) { + update_post_meta( $post_id, '_length', ( '' === $_POST['_length'] ) ? '' : wc_format_decimal( $_POST['_length'] ) ); + } - if ( isset( $_POST['_width'] ) ) - update_post_meta( $post_id, '_width', ( $_POST['_width'] === '' ) ? '' : wc_format_decimal( $_POST['_width'] ) ); + if ( isset( $_POST['_width'] ) ) { + update_post_meta( $post_id, '_width', ( '' === $_POST['_width'] ) ? '' : wc_format_decimal( $_POST['_width'] ) ); + } - if ( isset( $_POST['_height'] ) ) - update_post_meta( $post_id, '_height', ( $_POST['_height'] === '' ) ? '' : wc_format_decimal( $_POST['_height'] ) ); + if ( isset( $_POST['_height'] ) ) { + update_post_meta( $post_id, '_height', ( '' === $_POST['_height'] ) ? '' : wc_format_decimal( $_POST['_height'] ) ); + } } else { update_post_meta( $post_id, '_weight', '' ); @@ -968,26 +1078,19 @@ class WC_Meta_Box_Product_Data { wp_set_object_terms( $post_id, $product_shipping_class, 'product_shipping_class'); // Unique SKU - $sku = get_post_meta( $post_id, '_sku', true ); - $new_sku = wc_clean( stripslashes( $_POST['_sku'] ) ); + $sku = get_post_meta( $post_id, '_sku', true ); + $new_sku = wc_clean( stripslashes( $_POST['_sku'] ) ); - if ( $new_sku == '' ) { + if ( '' == $new_sku ) { update_post_meta( $post_id, '_sku', '' ); } elseif ( $new_sku !== $sku ) { + if ( ! empty( $new_sku ) ) { - if ( - $wpdb->get_var( $wpdb->prepare(" - SELECT $wpdb->posts.ID - FROM $wpdb->posts - LEFT JOIN $wpdb->postmeta ON ($wpdb->posts.ID = $wpdb->postmeta.post_id) - WHERE $wpdb->posts.post_type = 'product' - AND $wpdb->posts.post_status = 'publish' - AND $wpdb->postmeta.meta_key = '_sku' AND $wpdb->postmeta.meta_value = '%s' - ", $new_sku ) ) - ) { + $unique_sku = wc_product_has_unique_sku( $post_id, $new_sku ); + + if ( ! $unique_sku ) { WC_Admin_Meta_Boxes::add_error( __( 'Product SKU must be unique.', 'woocommerce' ) ); - } else { update_post_meta( $post_id, '_sku', $new_sku ); } @@ -1000,87 +1103,95 @@ class WC_Meta_Box_Product_Data { $attributes = array(); if ( isset( $_POST['attribute_names'] ) && isset( $_POST['attribute_values'] ) ) { + $attribute_names = $_POST['attribute_names']; $attribute_values = $_POST['attribute_values']; - if ( isset( $_POST['attribute_visibility'] ) ) + if ( isset( $_POST['attribute_visibility'] ) ) { $attribute_visibility = $_POST['attribute_visibility']; + } - if ( isset( $_POST['attribute_variation'] ) ) + if ( isset( $_POST['attribute_variation'] ) ) { $attribute_variation = $_POST['attribute_variation']; + } $attribute_is_taxonomy = $_POST['attribute_is_taxonomy']; - $attribute_position = $_POST['attribute_position']; - + $attribute_position = $_POST['attribute_position']; $attribute_names_count = sizeof( $attribute_names ); - for ( $i=0; $i < $attribute_names_count; $i++ ) { - if ( ! $attribute_names[ $i ] ) - continue; + for ( $i = 0; $i < $attribute_names_count; $i++ ) { - $is_visible = isset( $attribute_visibility[ $i ] ) ? 1 : 0; - $is_variation = isset( $attribute_variation[ $i ] ) ? 1 : 0; - $is_taxonomy = $attribute_is_taxonomy[ $i ] ? 1 : 0; + if ( ! $attribute_names[ $i ] ) { + continue; + } + + $is_visible = isset( $attribute_visibility[ $i ] ) ? 1 : 0; + $is_variation = isset( $attribute_variation[ $i ] ) ? 1 : 0; + $is_taxonomy = $attribute_is_taxonomy[ $i ] ? 1 : 0; if ( $is_taxonomy ) { if ( isset( $attribute_values[ $i ] ) ) { - // Select based attributes - Format values (posted values are slugs) - if ( is_array( $attribute_values[ $i ] ) ) { - $values = array_map( 'sanitize_title', $attribute_values[ $i ] ); + // Select based attributes - Format values (posted values are slugs) + if ( is_array( $attribute_values[ $i ] ) ) { + $values = array_map( 'sanitize_title', $attribute_values[ $i ] ); - // Text based attributes - Posted values are term names - don't change to slugs - } else { - $values = array_map( 'stripslashes', array_map( 'strip_tags', explode( WC_DELIMITER, $attribute_values[ $i ] ) ) ); - } + // Text based attributes - Posted values are term names - don't change to slugs + } else { + $values = array_map( 'stripslashes', array_map( 'strip_tags', explode( WC_DELIMITER, $attribute_values[ $i ] ) ) ); + } - // Remove empty items in the array - $values = array_filter( $values, 'strlen' ); + // Remove empty items in the array + $values = array_filter( $values, 'strlen' ); - } else { - $values = array(); - } + } else { + $values = array(); + } - // Update post terms - if ( taxonomy_exists( $attribute_names[ $i ] ) ) - wp_set_object_terms( $post_id, $values, $attribute_names[ $i ] ); + // Update post terms + if ( taxonomy_exists( $attribute_names[ $i ] ) ) { + wp_set_object_terms( $post_id, $values, $attribute_names[ $i ] ); + } - if ( $values ) { - // Add attribute to array, but don't set values - $attributes[ sanitize_title( $attribute_names[ $i ] ) ] = array( - 'name' => wc_clean( $attribute_names[ $i ] ), - 'value' => '', - 'position' => $attribute_position[ $i ], - 'is_visible' => $is_visible, - 'is_variation' => $is_variation, - 'is_taxonomy' => $is_taxonomy - ); - } + if ( $values ) { + // Add attribute to array, but don't set values + $attributes[ sanitize_title( $attribute_names[ $i ] ) ] = array( + 'name' => wc_clean( $attribute_names[ $i ] ), + 'value' => '', + 'position' => $attribute_position[ $i ], + 'is_visible' => $is_visible, + 'is_variation' => $is_variation, + 'is_taxonomy' => $is_taxonomy + ); + } - } elseif ( isset( $attribute_values[ $i ] ) ) { + } elseif ( isset( $attribute_values[ $i ] ) ) { - // Text based, separate by pipe - $values = implode( ' ' . WC_DELIMITER . ' ', array_map( 'wc_clean', explode( WC_DELIMITER, $attribute_values[ $i ] ) ) ); + // Text based, separate by pipe + $values = implode( ' ' . WC_DELIMITER . ' ', array_map( 'wc_clean', explode( WC_DELIMITER, $attribute_values[ $i ] ) ) ); - // Custom attribute - Add attribute to array and set the values - $attributes[ sanitize_title( $attribute_names[ $i ] ) ] = array( - 'name' => wc_clean( $attribute_names[ $i ] ), - 'value' => $values, - 'position' => $attribute_position[ $i ], - 'is_visible' => $is_visible, - 'is_variation' => $is_variation, - 'is_taxonomy' => $is_taxonomy - ); - } + // Custom attribute - Add attribute to array and set the values + $attributes[ sanitize_title( $attribute_names[ $i ] ) ] = array( + 'name' => wc_clean( $attribute_names[ $i ] ), + 'value' => $values, + 'position' => $attribute_position[ $i ], + 'is_visible' => $is_visible, + 'is_variation' => $is_variation, + 'is_taxonomy' => $is_taxonomy + ); + } } } if ( ! function_exists( 'attributes_cmp' ) ) { function attributes_cmp( $a, $b ) { - if ( $a['position'] == $b['position'] ) return 0; - return ( $a['position'] < $b['position'] ) ? -1 : 1; + if ( $a['position'] == $b['position'] ) { + return 0; + } + + return ( $a['position'] < $b['position'] ) ? -1 : 1; } } uasort( $attributes, 'attributes_cmp' ); @@ -1100,30 +1211,35 @@ class WC_Meta_Box_Product_Data { } else { $date_from = isset( $_POST['_sale_price_dates_from'] ) ? $_POST['_sale_price_dates_from'] : ''; - $date_to = isset( $_POST['_sale_price_dates_to'] ) ? $_POST['_sale_price_dates_to'] : ''; + $date_to = isset( $_POST['_sale_price_dates_to'] ) ? $_POST['_sale_price_dates_to'] : ''; // Dates - if ( $date_from ) + if ( $date_from ) { update_post_meta( $post_id, '_sale_price_dates_from', strtotime( $date_from ) ); - else + } else { update_post_meta( $post_id, '_sale_price_dates_from', '' ); + } - if ( $date_to ) + if ( $date_to ) { update_post_meta( $post_id, '_sale_price_dates_to', strtotime( $date_to ) ); - else + } else { update_post_meta( $post_id, '_sale_price_dates_to', '' ); + } - if ( $date_to && ! $date_from ) + if ( $date_to && ! $date_from ) { update_post_meta( $post_id, '_sale_price_dates_from', strtotime( 'NOW', current_time( 'timestamp' ) ) ); + } // Update price if on sale - if ( $_POST['_sale_price'] !== '' && $date_to == '' && $date_from == '' ) + if ( '' !== $_POST['_sale_price'] && '' == $date_to && '' == $date_from ) { update_post_meta( $post_id, '_price', wc_format_decimal( $_POST['_sale_price'] ) ); - else + } else { update_post_meta( $post_id, '_price', ( $_POST['_regular_price'] === '' ) ? '' : wc_format_decimal( $_POST['_regular_price'] ) ); + } - if ( $_POST['_sale_price'] !== '' && $date_from && strtotime( $date_from ) < strtotime( 'NOW', current_time( 'timestamp' ) ) ) + if ( '' !== $_POST['_sale_price'] && $date_from && strtotime( $date_from ) < strtotime( 'NOW', current_time( 'timestamp' ) ) ) { update_post_meta( $post_id, '_price', wc_format_decimal( $_POST['_sale_price'] ) ); + } if ( $date_to && strtotime( $date_to ) < strtotime( 'NOW', current_time( 'timestamp' ) ) ) { update_post_meta( $post_id, '_price', ( $_POST['_regular_price'] === '' ) ? '' : wc_format_decimal( $_POST['_regular_price'] ) ); @@ -1133,30 +1249,32 @@ class WC_Meta_Box_Product_Data { } // Update parent if grouped so price sorting works and stays in sync with the cheapest child - if ( $post->post_parent > 0 || $product_type == 'grouped' || $_POST['previous_parent_id'] > 0 ) { + if ( $post->post_parent > 0 || 'grouped' == $product_type || $_POST['previous_parent_id'] > 0 ) { $clear_parent_ids = array(); - if ( $post->post_parent > 0 ) + if ( $post->post_parent > 0 ) { $clear_parent_ids[] = $post->post_parent; + } - if ( $product_type == 'grouped' ) + if ( 'grouped' == $product_type ) { $clear_parent_ids[] = $post_id; + } - if ( $_POST['previous_parent_id'] > 0 ) + if ( $_POST['previous_parent_id'] > 0 ) { $clear_parent_ids[] = absint( $_POST['previous_parent_id'] ); + } if ( $clear_parent_ids ) { - foreach( $clear_parent_ids as $clear_id ) { - + foreach ( $clear_parent_ids as $clear_id ) { $children_by_price = get_posts( array( - 'post_parent' => $clear_id, - 'orderby' => 'meta_value_num', - 'order' => 'asc', - 'meta_key' => '_price', - 'posts_per_page'=> 1, - 'post_type' => 'product', - 'fields' => 'ids' + 'post_parent' => $clear_id, + 'orderby' => 'meta_value_num', + 'order' => 'asc', + 'meta_key' => '_price', + 'posts_per_page' => 1, + 'post_type' => 'product', + 'fields' => 'ids' ) ); if ( $children_by_price ) { @@ -1166,7 +1284,6 @@ class WC_Meta_Box_Product_Data { } } - // Clear cache/transients wc_delete_product_transients( $clear_id ); } } @@ -1180,40 +1297,43 @@ class WC_Meta_Box_Product_Data { } // Stock Data - if ( get_option('woocommerce_manage_stock') == 'yes' ) { + if ( 'yes' === get_option( 'woocommerce_manage_stock' ) ) { - if ( $product_type == 'grouped' ) { + $manage_stock = 'no'; + $backorders = 'no'; + $stock = ''; + $stock_status = wc_clean( $_POST['_stock_status'] ); - update_post_meta( $post_id, '_manage_stock', 'no' ); - update_post_meta( $post_id, '_backorders', 'no' ); - update_post_meta( $post_id, '_stock', '' ); + if ( 'external' === $product_type ) { - wc_update_product_stock_status( $post_id, wc_clean( $_POST['_stock_status'] ) ); + $stock_status = 'instock'; - } elseif ( $product_type == 'external' ) { + } elseif ( 'variable' === $product_type ) { - update_post_meta( $post_id, '_manage_stock', 'no' ); - update_post_meta( $post_id, '_backorders', 'no' ); - update_post_meta( $post_id, '_stock', '' ); + // Stock status is always determined by children so sync later + $stock_status = ''; - wc_update_product_stock_status( $post_id, 'instock' ); + if ( ! empty( $_POST['_manage_stock'] ) ) { + $manage_stock = 'yes'; + $backorders = wc_clean( $_POST['_backorders'] ); + } - } elseif ( ! empty( $_POST['_manage_stock'] ) ) { + } elseif ( 'grouped' !== $product_type && ! empty( $_POST['_manage_stock'] ) ) { + $manage_stock = 'yes'; + $backorders = wc_clean( $_POST['_backorders'] ); + } - update_post_meta( $post_id, '_manage_stock', 'yes' ); - update_post_meta( $post_id, '_backorders', wc_clean( $_POST['_backorders'] ) ); + update_post_meta( $post_id, '_manage_stock', $manage_stock ); + update_post_meta( $post_id, '_backorders', $backorders ); - wc_update_product_stock_status( $post_id, wc_clean( $_POST['_stock_status'] ) ); - wc_update_product_stock( $post_id, intval( $_POST['_stock'] ) ); + if ( $stock_status ) { + wc_update_product_stock_status( $post_id, $stock_status ); + } + if ( ! empty( $_POST['_manage_stock'] ) ) { + wc_update_product_stock( $post_id, wc_stock_amount( $_POST['_stock'] ) ); } else { - - // Don't manage stock - update_post_meta( $post_id, '_manage_stock', 'no' ); - update_post_meta( $post_id, '_backorders', wc_clean( $_POST['_backorders'] ) ); update_post_meta( $post_id, '_stock', '' ); - - wc_update_product_stock_status( $post_id, wc_clean( $_POST['_stock_status'] ) ); } } else { @@ -1223,10 +1343,14 @@ class WC_Meta_Box_Product_Data { // Upsells if ( isset( $_POST['upsell_ids'] ) ) { $upsells = array(); - $ids = $_POST['upsell_ids']; - foreach ( $ids as $id ) - if ( $id && $id > 0 ) + $ids = $_POST['upsell_ids']; + + foreach ( $ids as $id ) { + + if ( $id && $id > 0 ) { $upsells[] = $id; + } + } update_post_meta( $post_id, '_upsell_ids', $upsells ); } else { @@ -1235,68 +1359,81 @@ class WC_Meta_Box_Product_Data { // Cross sells if ( isset( $_POST['crosssell_ids'] ) ) { + $crosssells = array(); - $ids = $_POST['crosssell_ids']; - foreach ( $ids as $id ) - if ( $id && $id > 0 ) + $ids = $_POST['crosssell_ids']; + + foreach ( $ids as $id ) { + if ( $id && $id > 0 ) { $crosssells[] = $id; + } + } update_post_meta( $post_id, '_crosssell_ids', $crosssells ); + } else { delete_post_meta( $post_id, '_crosssell_ids' ); } // Downloadable options - if ( $is_downloadable == 'yes' ) { + if ( 'yes' == $is_downloadable ) { $_download_limit = absint( $_POST['_download_limit'] ); - if ( ! $_download_limit ) + if ( ! $_download_limit ) { $_download_limit = ''; // 0 or blank = unlimited + } $_download_expiry = absint( $_POST['_download_expiry'] ); - if ( ! $_download_expiry ) + if ( ! $_download_expiry ) { $_download_expiry = ''; // 0 or blank = unlimited + } // file paths will be stored in an array keyed off md5(file path) - if ( isset( $_POST['_wc_file_urls'] ) ) { - $files = array(); + $files = array(); + if ( isset( $_POST['_wc_file_urls'] ) ) { $file_names = isset( $_POST['_wc_file_names'] ) ? array_map( 'wc_clean', $_POST['_wc_file_names'] ) : array(); - $file_urls = isset( $_POST['_wc_file_urls'] ) ? array_map( 'esc_url_raw', array_map( 'trim', $_POST['_wc_file_urls'] ) ) : array(); + $file_urls = isset( $_POST['_wc_file_urls'] ) ? array_map( 'wc_clean', $_POST['_wc_file_urls'] ) : array(); $file_url_size = sizeof( $file_urls ); for ( $i = 0; $i < $file_url_size; $i ++ ) { - if ( ! empty( $file_urls[ $i ] ) ) + if ( ! empty( $file_urls[ $i ] ) ) { $files[ md5( $file_urls[ $i ] ) ] = array( 'name' => $file_names[ $i ], 'file' => $file_urls[ $i ] ); + } } - - // grant permission to any newly added files on any existing orders for this product prior to saving - do_action( 'woocommerce_process_product_file_download_paths', $post_id, 0, $files ); - - update_post_meta( $post_id, '_downloadable_files', $files ); } + // grant permission to any newly added files on any existing orders for this product prior to saving + do_action( 'woocommerce_process_product_file_download_paths', $post_id, 0, $files ); + + update_post_meta( $post_id, '_downloadable_files', $files ); update_post_meta( $post_id, '_download_limit', $_download_limit ); update_post_meta( $post_id, '_download_expiry', $_download_expiry ); - if ( isset( $_POST['_download_type'] ) ) + if ( isset( $_POST['_download_type'] ) ) { update_post_meta( $post_id, '_download_type', wc_clean( $_POST['_download_type'] ) ); + } } // Product url - if ( $product_type == 'external' ) { - if ( isset( $_POST['_product_url'] ) ) + if ( 'external' == $product_type ) { + + if ( isset( $_POST['_product_url'] ) ) { update_post_meta( $post_id, '_product_url', esc_attr( $_POST['_product_url'] ) ); - if ( isset( $_POST['_button_text'] ) ) + } + + if ( isset( $_POST['_button_text'] ) ) { update_post_meta( $post_id, '_button_text', esc_attr( $_POST['_button_text'] ) ); + } } // Save variations - if ( $product_type == 'variable' ) + if ( 'variable' == $product_type ) { self::save_variations( $post_id, $post ); + } // Do action for product type do_action( 'woocommerce_process_product_meta_' . $product_type, $post_id ); @@ -1309,49 +1446,54 @@ class WC_Meta_Box_Product_Data { * Save meta box data */ public static function save_variations( $post_id, $post ) { - global $woocommerce, $wpdb; + global $wpdb; $attributes = (array) maybe_unserialize( get_post_meta( $post_id, '_product_attributes', true ) ); if ( isset( $_POST['variable_sku'] ) ) { - $variable_post_id = $_POST['variable_post_id']; - $variable_sku = $_POST['variable_sku']; - $variable_regular_price = $_POST['variable_regular_price']; - $variable_sale_price = $_POST['variable_sale_price']; - $upload_image_id = $_POST['upload_image_id']; - $variable_download_limit = $_POST['variable_download_limit']; - $variable_download_expiry = $_POST['variable_download_expiry']; - $variable_shipping_class = $_POST['variable_shipping_class']; - $variable_tax_class = isset( $_POST['variable_tax_class'] ) ? $_POST['variable_tax_class'] : array(); - $variable_menu_order = $_POST['variation_menu_order']; - $variable_sale_price_dates_from = $_POST['variable_sale_price_dates_from']; - $variable_sale_price_dates_to = $_POST['variable_sale_price_dates_to']; + $variable_post_id = $_POST['variable_post_id']; + $variable_sku = $_POST['variable_sku']; + $variable_regular_price = $_POST['variable_regular_price']; + $variable_sale_price = $_POST['variable_sale_price']; + $upload_image_id = $_POST['upload_image_id']; + $variable_download_limit = $_POST['variable_download_limit']; + $variable_download_expiry = $_POST['variable_download_expiry']; + $variable_shipping_class = $_POST['variable_shipping_class']; + $variable_tax_class = isset( $_POST['variable_tax_class'] ) ? $_POST['variable_tax_class'] : array(); + $variable_menu_order = $_POST['variation_menu_order']; + $variable_sale_price_dates_from = $_POST['variable_sale_price_dates_from']; + $variable_sale_price_dates_to = $_POST['variable_sale_price_dates_to']; - $variable_weight = isset( $_POST['variable_weight'] ) ? $_POST['variable_weight'] : array(); - $variable_length = isset( $_POST['variable_length'] ) ? $_POST['variable_length'] : array(); - $variable_width = isset( $_POST['variable_width'] ) ? $_POST['variable_width'] : array(); - $variable_height = isset( $_POST['variable_height'] ) ? $_POST['variable_height'] : array(); - $variable_stock = isset( $_POST['variable_stock'] ) ? $_POST['variable_stock'] : array(); - $variable_enabled = isset( $_POST['variable_enabled'] ) ? $_POST['variable_enabled'] : array(); - $variable_is_virtual = isset( $_POST['variable_is_virtual'] ) ? $_POST['variable_is_virtual'] : array(); - $variable_is_downloadable = isset( $_POST['variable_is_downloadable'] ) ? $_POST['variable_is_downloadable'] : array(); + $variable_weight = isset( $_POST['variable_weight'] ) ? $_POST['variable_weight'] : array(); + $variable_length = isset( $_POST['variable_length'] ) ? $_POST['variable_length'] : array(); + $variable_width = isset( $_POST['variable_width'] ) ? $_POST['variable_width'] : array(); + $variable_height = isset( $_POST['variable_height'] ) ? $_POST['variable_height'] : array(); + $variable_enabled = isset( $_POST['variable_enabled'] ) ? $_POST['variable_enabled'] : array(); + $variable_is_virtual = isset( $_POST['variable_is_virtual'] ) ? $_POST['variable_is_virtual'] : array(); + $variable_is_downloadable = isset( $_POST['variable_is_downloadable'] ) ? $_POST['variable_is_downloadable'] : array(); + + $variable_manage_stock = isset( $_POST['variable_manage_stock'] ) ? $_POST['variable_manage_stock'] : array(); + $variable_stock = isset( $_POST['variable_stock'] ) ? $_POST['variable_stock'] : array(); + $variable_backorders = isset( $_POST['variable_backorders'] ) ? $_POST['variable_backorders'] : array(); + $variable_stock_status = isset( $_POST['variable_stock_status'] ) ? $_POST['variable_stock_status'] : array(); $max_loop = max( array_keys( $_POST['variable_post_id'] ) ); for ( $i = 0; $i <= $max_loop; $i ++ ) { - if ( ! isset( $variable_post_id[ $i ] ) ) + if ( ! isset( $variable_post_id[ $i ] ) ) { continue; + } $variation_id = absint( $variable_post_id[ $i ] ); - // Virtal/Downloadable - $is_virtual = isset( $variable_is_virtual[ $i ] ) ? 'yes' : 'no'; - $is_downloadable = isset( $variable_is_downloadable[ $i ] ) ? 'yes' : 'no'; - - // Enabled or disabled - $post_status = isset( $variable_enabled[ $i ] ) ? 'publish' : 'private'; + // Checkboxes + $is_virtual = isset( $variable_is_virtual[ $i ] ) ? 'yes' : 'no'; + $is_downloadable = isset( $variable_is_downloadable[ $i ] ) ? 'yes' : 'no'; + $post_status = isset( $variable_enabled[ $i ] ) ? 'publish' : 'private'; + $parent_manage_stock = isset( $_POST['_manage_stock'] ) ? 'yes' : 'no'; + $manage_stock = isset( $variable_manage_stock[ $i ] ) ? 'yes' : 'no'; // Generate a useful post title $variation_post_title = sprintf( __( 'Variation #%s of %s', 'woocommerce' ), absint( $variation_id ), esc_html( get_the_title( $post_id ) ) ); @@ -1360,13 +1502,13 @@ class WC_Meta_Box_Product_Data { if ( ! $variation_id ) { $variation = array( - 'post_title' => $variation_post_title, - 'post_content' => '', - 'post_status' => $post_status, - 'post_author' => get_current_user_id(), - 'post_parent' => $post_id, - 'post_type' => 'product_variation', - 'menu_order' => $variable_menu_order[ $i ] + 'post_title' => $variation_post_title, + 'post_content' => '', + 'post_status' => $post_status, + 'post_author' => get_current_user_id(), + 'post_parent' => $post_id, + 'post_type' => 'product_variation', + 'menu_order' => $variable_menu_order[ $i ] ); $variation_id = wp_insert_post( $variation ); @@ -1381,56 +1523,96 @@ class WC_Meta_Box_Product_Data { } + // Only continue if we have a variation ID + if ( ! $variation_id ) { + continue; + } + + // Unique SKU + $sku = get_post_meta( $variation_id, '_sku', true ); + $new_sku = wc_clean( stripslashes( $variable_sku[ $i ] ) ); + + if ( '' == $new_sku ) { + update_post_meta( $variation_id, '_sku', '' ); + } elseif ( $new_sku !== $sku ) { + + if ( ! empty( $new_sku ) ) { + $unique_sku = wc_product_has_unique_sku( $variation_id, $new_sku ); + + if ( ! $unique_sku ) { + WC_Admin_Meta_Boxes::add_error( __( 'Variation SKU must be unique.', 'woocommerce' ) ); + } else { + update_post_meta( $variation_id, '_sku', $new_sku ); + } + } else { + update_post_meta( $variation_id, '_sku', '' ); + } + } + // Update post meta - update_post_meta( $variation_id, '_sku', wc_clean( $variable_sku[ $i ] ) ); update_post_meta( $variation_id, '_thumbnail_id', absint( $upload_image_id[ $i ] ) ); update_post_meta( $variation_id, '_virtual', wc_clean( $is_virtual ) ); update_post_meta( $variation_id, '_downloadable', wc_clean( $is_downloadable ) ); - if ( isset( $variable_weight[ $i ] ) ) - update_post_meta( $variation_id, '_weight', ( $variable_weight[ $i ] === '' ) ? '' : wc_format_decimal( $variable_weight[ $i ] ) ); - if ( isset( $variable_length[ $i ] ) ) - update_post_meta( $variation_id, '_length', ( $variable_length[ $i ] === '' ) ? '' : wc_format_decimal( $variable_length[ $i ] ) ); - if ( isset( $variable_width[ $i ] ) ) - update_post_meta( $variation_id, '_width', ( $variable_width[ $i ] === '' ) ? '' : wc_format_decimal( $variable_width[ $i ] ) ); - if ( isset( $variable_height[ $i ] ) ) - update_post_meta( $variation_id, '_height', ( $variable_height[ $i ] === '' ) ? '' : wc_format_decimal( $variable_height[ $i ] ) ); + if ( isset( $variable_weight[ $i ] ) ) { + update_post_meta( $variation_id, '_weight', ( '' === $variable_weight[ $i ] ) ? '' : wc_format_decimal( $variable_weight[ $i ] ) ); + } + + if ( isset( $variable_length[ $i ] ) ) { + update_post_meta( $variation_id, '_length', ( '' === $variable_length[ $i ] ) ? '' : wc_format_decimal( $variable_length[ $i ] ) ); + } + + if ( isset( $variable_width[ $i ] ) ) { + update_post_meta( $variation_id, '_width', ( '' === $variable_width[ $i ] ) ? '' : wc_format_decimal( $variable_width[ $i ] ) ); + } + + if ( isset( $variable_height[ $i ] ) ) { + update_post_meta( $variation_id, '_height', ( '' === $variable_height[ $i ] ) ? '' : wc_format_decimal( $variable_height[ $i ] ) ); + } // Stock handling - if ( isset($variable_stock[$i]) ) - wc_update_product_stock( $variation_id, wc_clean( $variable_stock[ $i ] ) ); + update_post_meta( $variation_id, '_manage_stock', $manage_stock ); + + // Only update stock status to user setting if changed by the user, but do so before looking at stock levels at variation level + if ( ! empty( $variable_stock_status[ $i ] ) ) { + wc_update_product_stock_status( $variation_id, $variable_stock_status[ $i ] ); + } + + if ( 'yes' === $manage_stock ) { + update_post_meta( $variation_id, '_backorders', wc_clean( $variable_backorders[ $i ] ) ); + wc_update_product_stock( $variation_id, wc_stock_amount( $variable_stock[ $i ] ) ); + } else { + delete_post_meta( $variation_id, '_backorders' ); + delete_post_meta( $variation_id, '_stock' ); + } // Price handling - $regular_price = wc_format_decimal( $variable_regular_price[ $i ] ); - $sale_price = ( $variable_sale_price[ $i ] === '' ? '' : wc_format_decimal( $variable_sale_price[ $i ] ) ); - $date_from = wc_clean( $variable_sale_price_dates_from[ $i ] ); - $date_to = wc_clean( $variable_sale_price_dates_to[ $i ] ); + $regular_price = wc_format_decimal( $variable_regular_price[ $i ] ); + $sale_price = $variable_sale_price[ $i ] === '' ? '' : wc_format_decimal( $variable_sale_price[ $i ] ); + $date_from = wc_clean( $variable_sale_price_dates_from[ $i ] ); + $date_to = wc_clean( $variable_sale_price_dates_to[ $i ] ); update_post_meta( $variation_id, '_regular_price', $regular_price ); update_post_meta( $variation_id, '_sale_price', $sale_price ); // Save Dates - if ( $date_from ) - update_post_meta( $variation_id, '_sale_price_dates_from', strtotime( $date_from ) ); - else - update_post_meta( $variation_id, '_sale_price_dates_from', '' ); + update_post_meta( $variation_id, '_sale_price_dates_from', $date_from ? strtotime( $date_from ) : '' ); + update_post_meta( $variation_id, '_sale_price_dates_to', $date_to ? strtotime( $date_to ) : '' ); - if ( $date_to ) - update_post_meta( $variation_id, '_sale_price_dates_to', strtotime( $date_to ) ); - else - update_post_meta( $variation_id, '_sale_price_dates_to', '' ); - - if ( $date_to && ! $date_from ) + if ( $date_to && ! $date_from ) { update_post_meta( $variation_id, '_sale_price_dates_from', strtotime( 'NOW', current_time( 'timestamp' ) ) ); + } // Update price if on sale - if ( $sale_price != '' && $date_to == '' && $date_from == '' ) + if ( '' !== $sale_price && '' === $date_to && '' === $date_from ) { update_post_meta( $variation_id, '_price', $sale_price ); - else + } else { update_post_meta( $variation_id, '_price', $regular_price ); + } - if ( $sale_price != '' && $date_from && strtotime( $date_from ) < strtotime( 'NOW', current_time( 'timestamp' ) ) ) + if ( '' !== $sale_price && $date_from && strtotime( $date_from ) < strtotime( 'NOW', current_time( 'timestamp' ) ) ) { update_post_meta( $variation_id, '_price', $sale_price ); + } if ( $date_to && strtotime( $date_to ) < strtotime( 'NOW', current_time( 'timestamp' ) ) ) { update_post_meta( $variation_id, '_price', $regular_price ); @@ -1438,26 +1620,30 @@ class WC_Meta_Box_Product_Data { update_post_meta( $variation_id, '_sale_price_dates_to', '' ); } - if ( isset( $variable_tax_class[ $i ] ) && $variable_tax_class[ $i ] !== 'parent' ) + if ( isset( $variable_tax_class[ $i ] ) && $variable_tax_class[ $i ] !== 'parent' ) { update_post_meta( $variation_id, '_tax_class', wc_clean( $variable_tax_class[ $i ] ) ); - else + } else { delete_post_meta( $variation_id, '_tax_class' ); + } - if ( $is_downloadable == 'yes' ) { + if ( 'yes' == $is_downloadable ) { update_post_meta( $variation_id, '_download_limit', wc_clean( $variable_download_limit[ $i ] ) ); update_post_meta( $variation_id, '_download_expiry', wc_clean( $variable_download_expiry[ $i ] ) ); $files = array(); $file_names = isset( $_POST['_wc_variation_file_names'][ $variation_id ] ) ? array_map( 'wc_clean', $_POST['_wc_variation_file_names'][ $variation_id ] ) : array(); - $file_urls = isset( $_POST['_wc_variation_file_urls'][ $variation_id ] ) ? array_map( 'esc_url_raw', array_map( 'trim', $_POST['_wc_variation_file_urls'][ $variation_id ] ) ) : array(); + $file_urls = isset( $_POST['_wc_variation_file_urls'][ $variation_id ] ) ? array_map( 'wc_clean', $_POST['_wc_variation_file_urls'][ $variation_id ] ) : array(); $file_url_size = sizeof( $file_urls ); for ( $ii = 0; $ii < $file_url_size; $ii ++ ) { - if ( ! empty( $file_urls[ $ii ] ) ) + + if ( ! empty( $file_urls[ $ii ] ) ) { + $files[ md5( $file_urls[ $ii ] ) ] = array( 'name' => $file_names[ $ii ], 'file' => $file_urls[ $ii ] ); + } } // grant permission to any newly added files on any existing orders for this product prior to saving @@ -1474,25 +1660,23 @@ class WC_Meta_Box_Product_Data { $variable_shipping_class[ $i ] = ! empty( $variable_shipping_class[ $i ] ) ? (int) $variable_shipping_class[ $i ] : ''; wp_set_object_terms( $variation_id, $variable_shipping_class[ $i ], 'product_shipping_class'); - // Remove old taxonomies attributes so data is kept up to date - if ( $variation_id ) { - $wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->postmeta} WHERE meta_key LIKE 'attribute_%%' AND post_id = %d;", $variation_id ) ); - wp_cache_delete( $variation_id, 'post_meta'); - } - - // Update taxonomies + // Update taxonomies - don't use wc_clean as it destroys sanitized characters + $updated_attribute_keys = array(); foreach ( $attributes as $attribute ) { if ( $attribute['is_variation'] ) { - // Don't use wc_clean as it destroys sanitized characters - if ( isset( $_POST[ 'attribute_' . sanitize_title( $attribute['name'] ) ][ $i ] ) ) - $value = sanitize_title( trim( stripslashes( $_POST[ 'attribute_' . sanitize_title( $attribute['name'] ) ][ $i ] ) ) ); - else - $value = ''; - - update_post_meta( $variation_id, 'attribute_' . sanitize_title( $attribute['name'] ), $value ); + $attribute_key = 'attribute_' . sanitize_title( $attribute['name'] ); + $value = isset( $_POST[ $attribute_key ][ $i ] ) ? sanitize_title( stripslashes( $_POST[ $attribute_key ][ $i ] ) ) : ''; + $updated_attribute_keys[] = $attribute_key; + update_post_meta( $variation_id, $attribute_key, $value ); } + } + // Remove old taxonomies attributes so data is kept up to date - first get attribute key names + $delete_attribute_keys = $wpdb->get_col( $wpdb->prepare( "SELECT meta_key FROM {$wpdb->postmeta} WHERE meta_key LIKE 'attribute_%%' AND meta_key NOT IN ( '" . implode( "','", $updated_attribute_keys ) . "' ) AND post_id = %d;", $variation_id ) ); + + foreach ( $delete_attribute_keys as $key ) { + delete_post_meta( $variation_id, $key ); } do_action( 'woocommerce_save_product_variation', $variation_id, $i ); @@ -1506,19 +1690,22 @@ class WC_Meta_Box_Product_Data { $default_attributes = array(); foreach ( $attributes as $attribute ) { + if ( $attribute['is_variation'] ) { // Don't use wc_clean as it destroys sanitized characters - if ( isset( $_POST[ 'default_attribute_' . sanitize_title( $attribute['name'] ) ] ) ) + if ( isset( $_POST[ 'default_attribute_' . sanitize_title( $attribute['name'] ) ] ) ) { $value = sanitize_title( trim( stripslashes( $_POST[ 'default_attribute_' . sanitize_title( $attribute['name'] ) ] ) ) ); - else + } else { $value = ''; + } - if ( $value ) + if ( $value ) { $default_attributes[ sanitize_title( $attribute['name'] ) ] = $value; + } } } update_post_meta( $post_id, '_default_attributes', $default_attributes ); } -} \ No newline at end of file +} diff --git a/includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php b/includes/admin/meta-boxes/class-wc-meta-box-product-images.php similarity index 94% rename from includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php rename to includes/admin/meta-boxes/class-wc-meta-box-product-images.php index e07c8044d39..ad1102a3dc9 100644 --- a/includes/admin/post-types/meta-boxes/class-wc-meta-box-product-images.php +++ b/includes/admin/meta-boxes/class-wc-meta-box-product-images.php @@ -4,9 +4,9 @@ * * Display the product images meta box. * - * @author WooThemes - * @category Admin - * @package WooCommerce/Admin/Meta Boxes + * @author WooThemes + * @category Admin + * @package WooCommerce/Admin/Meta Boxes * @version 2.1.0 */ @@ -36,7 +36,7 @@ class WC_Meta_Box_Product_Images { $attachments = array_filter( explode( ',', $product_image_gallery ) ); - if ( $attachments ) + if ( $attachments ) { foreach ( $attachments as $attachment_id ) { echo '
    • ' . wp_get_attachment_image( $attachment_id, 'thumbnail' ) . ' @@ -45,6 +45,7 @@ class WC_Meta_Box_Product_Images {
    '; } + } ?> @@ -65,4 +66,4 @@ class WC_Meta_Box_Product_Images { update_post_meta( $post_id, '_product_image_gallery', implode( ',', $attachment_ids ) ); } -} \ No newline at end of file +} diff --git a/includes/admin/meta-boxes/class-wc-meta-box-product-short-description.php b/includes/admin/meta-boxes/class-wc-meta-box-product-short-description.php new file mode 100644 index 00000000000..46f758e8a82 --- /dev/null +++ b/includes/admin/meta-boxes/class-wc-meta-box-product-short-description.php @@ -0,0 +1,38 @@ + 'excerpt', + 'quicktags' => array( 'buttons' => 'em,strong,link' ), + 'tinymce' => array( + 'theme_advanced_buttons1' => 'bold,italic,strikethrough,separator,bullist,numlist,separator,blockquote,separator,justifyleft,justifycenter,justifyright,separator,link,unlink,separator,undo,redo,separator', + 'theme_advanced_buttons2' => '', + ), + 'editor_css' => '' + ); + + wp_editor( htmlspecialchars_decode( $post->post_excerpt ), 'excerpt', apply_filters( 'woocommerce_product_short_description_editor_settings', $settings ) ); + } + +} diff --git a/includes/admin/post-types/meta-boxes/views/html-order-download-permission.php b/includes/admin/meta-boxes/views/html-order-download-permission.php similarity index 100% rename from includes/admin/post-types/meta-boxes/views/html-order-download-permission.php rename to includes/admin/meta-boxes/views/html-order-download-permission.php diff --git a/includes/admin/meta-boxes/views/html-order-fee.php b/includes/admin/meta-boxes/views/html-order-fee.php new file mode 100644 index 00000000000..789d347332f --- /dev/null +++ b/includes/admin/meta-boxes/views/html-order-fee.php @@ -0,0 +1,85 @@ + + + + +
    + + +
    + +
    + + + + + +   + + +
    + get_total_refunded_for_item( $item_id, 'fee' ) ) { + echo '-' . wc_price( $refunded ) . ''; + } + ?> +
    + + + + + + + +
    + get_tax_refunded_for_item( $item_id, $tax_item_id, 'fee' ) ) { + echo '-' . wc_price( $refunded ) . ''; + } + ?> +
    + + + + + + + + is_editable() ) : ?> +
    + +
    + + + diff --git a/includes/admin/meta-boxes/views/html-order-item.php b/includes/admin/meta-boxes/views/html-order-item.php new file mode 100644 index 00000000000..cba21ad0289 --- /dev/null +++ b/includes/admin/meta-boxes/views/html-order-item.php @@ -0,0 +1,254 @@ + + + + + + get_image( 'shop_thumbnail', array( 'title' => '' ) ); ?> + + + + + + + get_sku() ) ? esc_html( $_product->get_sku() ) . ' – ' : ''; ?> + + + + + + + + + + + + +
    + has_meta( $item_id ) ) { + echo ''; + foreach ( $metadata as $meta ) { + + // Skip hidden core fields + if ( in_array( $meta['meta_key'], apply_filters( 'woocommerce_hidden_order_itemmeta', array( + '_qty', + '_tax_class', + '_product_id', + '_variation_id', + '_line_subtotal', + '_line_subtotal_tax', + '_line_total', + '_line_tax', + ) ) ) ) { + continue; + } + + // Skip serialised meta + if ( is_serialized( $meta['meta_value'] ) ) { + continue; + } + + // Get attribute data + if ( taxonomy_exists( $meta['meta_key'] ) ) { + $term = get_term_by( 'slug', $meta['meta_value'], $meta['meta_key'] ); + $attribute_name = str_replace( 'pa_', '', wc_clean( $meta['meta_key'] ) ); + $attribute = $wpdb->get_var( + $wpdb->prepare( " + SELECT attribute_label + FROM {$wpdb->prefix}woocommerce_attribute_taxonomies + WHERE attribute_name = %s; + ", + $attribute_name + ) + ); + + $meta['meta_key'] = ( ! is_wp_error( $attribute ) && $attribute ) ? $attribute : $attribute_name; + $meta['meta_value'] = ( isset( $term->name ) ) ? $term->name : $meta['meta_value']; + } + + echo ''; + } + echo '
    ' . wp_kses_post( urldecode( $meta['meta_key'] ) ) . ':' . wp_kses_post( wpautop( urldecode( $meta['meta_value'] ) ) ) . '
    '; + } + ?> +
    + + + + + + +
    + get_qty_refunded_for_item( $item_id ) ) { + echo '-' . $refunded_qty . ''; + } + ?> +
    + + + + + +
    + ' . wc_price( $item['line_subtotal'] ) . ' '; + } + + echo wc_price( $item['line_total'] ); + } + + if ( $refunded = $order->get_total_refunded_for_item( $item_id ) ) { + echo '-' . wc_price( $refunded ) . ''; + } + ?> +
    + + + + + + +
    + ' . wc_price( wc_round_tax_total( $tax_item_subtotal ) ) . ' '; + } + + echo wc_price( wc_round_tax_total( $tax_item_total ) ); + } else { + echo '–'; + } + + if ( $refunded = $order->get_tax_refunded_for_item( $item_id, $tax_item_id ) ) { + echo '-' . wc_price( $refunded ) . ''; + } + ?> +
    + + + + + + + is_editable() ) : ?> +
    + +
    + + + diff --git a/includes/admin/meta-boxes/views/html-order-items.php b/includes/admin/meta-boxes/views/html-order-items.php new file mode 100644 index 00000000000..28437abc496 --- /dev/null +++ b/includes/admin/meta-boxes/views/html-order-items.php @@ -0,0 +1,358 @@ +get_items( apply_filters( 'woocommerce_admin_order_item_types', 'line_item' ) ); +$line_items_fee = $order->get_items( 'fee' ); +$line_items_shipping = $order->get_items( 'shipping' ); + +if ( 'yes' == get_option( 'woocommerce_calc_taxes' ) ) { + $order_taxes = $order->get_taxes(); + $tax_classes = array_filter( array_map( 'trim', explode( "\n", get_option( 'woocommerce_tax_classes' ) ) ) ); + $classes_options = array(); + $classes_options[''] = __( 'Standard', 'woocommerce' ); + + if ( $tax_classes ) { + foreach ( $tax_classes as $class ) { + $classes_options[ sanitize_title( $class ) ] = $class; + } + } + + // Older orders won't have line taxes so we need to handle them differently :( + $tax_data = ''; + if ( $line_items ) { + $check_item = current( $line_items ); + $tax_data = maybe_unserialize( isset( $check_item['line_tax_data'] ) ? $check_item['line_tax_data'] : '' ); + } elseif ( $line_items_shipping ) { + $check_item = current( $line_items_shipping ); + $tax_data = maybe_unserialize( isset( $check_item['taxes'] ) ? $check_item['taxes'] : '' ); + } elseif ( $line_items_fee ) { + $check_item = current( $line_items_fee ); + $tax_data = maybe_unserialize( isset( $check_item['line_tax_data'] ) ? $check_item['line_tax_data'] : '' ); + } + + $legacy_order = ! empty( $order_taxes ) && empty( $tax_data ) && ! is_array( $tax_data ); + $show_tax_columns = ! $legacy_order || sizeof( $order_taxes ) === 1; +} +?> +
    + + + + + + + + + + + + + $tax_item ) : + $tax_class = wc_get_tax_class_by_tax_id( $tax_item['rate_id'] ); + $tax_class_name = isset( $classes_options[ $tax_class ] ) ? $classes_options[ $tax_class ] : __( 'Tax', 'woocommerce' ); + $column_label = ! empty( $tax_item['label'] ) ? $tax_item['label'] : __( 'Tax', 'woocommerce' ); + ?> + + + + + + + + $item ) { + $_product = $order->get_product_from_item( $item ); + $item_meta = $order->get_item_meta( $item_id ); + + include( 'html-order-item.php' ); + + do_action( 'woocommerce_order_item_' . $item['type'] . '_html', $item_id, $item ); + } + ?> + + + shipping() ? WC()->shipping->load_shipping_methods() : array(); + foreach ( $line_items_shipping as $item_id => $item ) { + include( 'html-order-shipping.php' ); + } + ?> + + + $item ) { + include( 'html-order-fee.php' ); + } + ?> + + + get_refunds() ) { + foreach ( $refunds as $refund ) { + include( 'html-order-refund.php' ); + } + } + ?> + +
    + + + +  
    +
    +
    + get_items( array( 'coupon' ) ); + if ( $coupons ) { + ?> +
    +
      $item ) { + $post_id = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM {$wpdb->posts} WHERE post_title = %s AND post_type = 'shop_coupon' AND post_status = 'publish' LIMIT 1;", $item['name'] ) ); + + $link = $post_id ? add_query_arg( array( 'post' => $post_id, 'action' => 'edit' ), admin_url( 'post.php' ) ) : add_query_arg( array( 's' => $item['name'], 'post_status' => 'all', 'post_type' => 'shop_coupon' ), admin_url( 'edit.php' ) ); + + echo '
    • ' . esc_html( $item['name'] ). '
    • '; + } + ?>
    +
    + + + + + + + + + id ); ?> + + + get_tax_totals() as $code => $tax ) : ?> + + + + + + + + + id ); ?> + + + + + + + + id ); ?> + + + + + + + + id ); ?> + + + + + + + + id ); ?> + +
    [?]:get_total_shipping() ); ?>
    label; ?>:formatted_amount; ?>
    [?]: +
    get_total_discount() ); ?>
    + +
    is_editable() ) : ?>
    : +
    get_total() ); ?>
    + +
    is_editable() ) : ?>
    :-get_total_refunded() ); ?>
    +
    +
    +
    +

    + + + +

    +

    + is_editable() ) : ?> + + + "> + + is_editable() ) : ?> + + + get_total() - $order->get_total_refunded() ) > 0 ) : ?> + + + is_editable() ) : ?> + + + +

    +
    + +get_total() - $order->get_total_refunded() ) > 0 ) : ?> + + + + + + diff --git a/includes/admin/meta-boxes/views/html-order-refund.php b/includes/admin/meta-boxes/views/html-order-refund.php new file mode 100644 index 00000000000..4af7d8e0092 --- /dev/null +++ b/includes/admin/meta-boxes/views/html-order-refund.php @@ -0,0 +1,44 @@ +post->post_author ); +?> + + + +
    + + + post_date ) ) ); + if ( $who_refunded->exists() ){ + echo ' ' . esc_attr_x( 'by', 'Ex: Refund - $date >by< $username', 'woocommerce' ) . ' ' . '' . esc_attr( $who_refunded->display_name ) . '' ; + } + ?> + get_refund_reason() ) : ?> +

    get_refund_reason() ); ?>

    + + + + +   + + +
    + get_refund_amount() ); ?> +
    + + + + + + + + + +
    + +
    + + diff --git a/includes/admin/meta-boxes/views/html-order-shipping.php b/includes/admin/meta-boxes/views/html-order-shipping.php new file mode 100644 index 00000000000..8385c6503fd --- /dev/null +++ b/includes/admin/meta-boxes/views/html-order-shipping.php @@ -0,0 +1,110 @@ + + + + +
    + + +
    + +
    + + + + + +   + + +
    + get_total_refunded_for_item( $item_id, 'shipping' ) ) { + echo '-' . wc_price( $refunded ) . ''; + } + ?> +
    + + + + + + + +
    + get_tax_refunded_for_item( $item_id, $tax_item_id, 'shipping' ) ) { + echo '-' . wc_price( $refunded ) . ''; + } + ?> +
    + + + + + + + + is_editable() ) : ?> +
    + +
    + + + diff --git a/includes/admin/post-types/meta-boxes/views/html-product-download.php b/includes/admin/meta-boxes/views/html-product-download.php similarity index 100% rename from includes/admin/post-types/meta-boxes/views/html-product-download.php rename to includes/admin/meta-boxes/views/html-product-download.php diff --git a/includes/admin/post-types/meta-boxes/views/html-product-variation-download.php b/includes/admin/meta-boxes/views/html-product-variation-download.php similarity index 100% rename from includes/admin/post-types/meta-boxes/views/html-product-variation-download.php rename to includes/admin/meta-boxes/views/html-product-variation-download.php diff --git a/includes/admin/post-types/meta-boxes/views/html-variation-admin.php b/includes/admin/meta-boxes/views/html-variation-admin.php similarity index 88% rename from includes/admin/post-types/meta-boxes/views/html-variation-admin.php rename to includes/admin/meta-boxes/views/html-variation-admin.php index 321dc52edf2..a0435b7e9a0 100644 --- a/includes/admin/post-types/meta-boxes/views/html-variation-admin.php +++ b/includes/admin/meta-boxes/views/html-variation-admin.php @@ -58,16 +58,6 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly - - - - - - - + + + + + + + + + + @@ -113,7 +134,7 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly - - - - - - + + + + +
    - - -  
    @@ -90,6 +80,37 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
    + + + + + +
    + + +
    'product_shipping_class', 'hide_empty' => 0, @@ -150,21 +171,6 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly  
    - -
    + +
    @@ -213,6 +234,12 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly + + + + + + diff --git a/includes/admin/post-types/class-wc-admin-cpt-product.php b/includes/admin/post-types/class-wc-admin-cpt-product.php deleted file mode 100644 index 49cd4dde291..00000000000 --- a/includes/admin/post-types/class-wc-admin-cpt-product.php +++ /dev/null @@ -1,1014 +0,0 @@ -type = 'product'; - - // Post title fields - add_filter( 'enter_title_here', array( $this, 'enter_title_here' ), 1, 2 ); - - // Visibility option - add_action( 'post_submitbox_misc_actions', array( $this, 'product_data_visibility' ) ); - - // Before data updates - add_action( 'pre_post_update', array( $this, 'pre_post_update' ) ); - add_filter( 'wp_insert_post_data', array( $this, 'wp_insert_post_data' ) ); - - // Admin Columns - add_filter( 'manage_edit-product_columns', array( $this, 'edit_columns' ) ); - add_action( 'manage_product_posts_custom_column', array( $this, 'custom_columns' ), 2 ); - add_filter( 'manage_edit-product_sortable_columns', array( $this, 'custom_columns_sort' ) ); - add_filter( 'request', array( $this, 'custom_columns_orderby' ) ); - - // Sort link - add_filter( 'views_edit-product', array( $this, 'default_sorting_link' ) ); - - // Prouct filtering - add_action( 'restrict_manage_posts', array( $this, 'product_filters' ) ); - add_filter( 'parse_query', array( $this, 'product_filters_query' ) ); - - // Enhanced search - add_action( 'posts_where', array( $this, 'product_search' ) ); - - // Maintain hierarchy of terms - add_filter( 'wp_terms_checklist_args', array( $this, 'disable_checked_ontop' ) ); - - // Bulk / quick edit - add_action( 'bulk_edit_custom_box', array( $this, 'bulk_edit' ), 10, 2 ); - add_action( 'quick_edit_custom_box', array( $this, 'quick_edit' ), 10, 2 ); - add_action( 'save_post', array( $this, 'bulk_and_quick_edit_save_post' ), 10, 2 ); - - // Uploads - add_filter( 'upload_dir', array( $this, 'upload_dir' ) ); - add_action( 'media_upload_downloadable_product', array( $this, 'media_upload_downloadable_product' ) ); - add_filter( 'mod_rewrite_rules', array( $this, 'ms_protect_download_rewite_rules' ) ); - - // Download permissions - add_action( 'woocommerce_process_product_file_download_paths', array( $this, 'process_product_file_download_paths' ), 10, 3 ); - - // Call WC_Admin_CPT constructor - parent::__construct(); - } - - /** - * Change title boxes in admin. - * @param string $text - * @param object $post - * @return string - */ - public function enter_title_here( $text, $post ) { - if ( $post->post_type == 'product' ) - return __( 'Product name', 'woocommerce' ); - - return $text; - } - - /** - * Output product visibility options. - * - * @access public - * @return void - */ - public function product_data_visibility() { - global $post; - - if ( $post->post_type != 'product' ) - return; - - $current_visibility = ( $current_visibility = get_post_meta( $post->ID, '_visibility', true ) ) ? $current_visibility : 'visible'; - $current_featured = ( $current_featured = get_post_meta( $post->ID, '_featured', true ) ) ? $current_featured : 'no'; - - $visibility_options = apply_filters( 'woocommerce_product_visibility_options', array( - 'visible' => __( 'Catalog/search', 'woocommerce' ), - 'catalog' => __( 'Catalog', 'woocommerce' ), - 'search' => __( 'Search', 'woocommerce' ), - 'hidden' => __( 'Hidden', 'woocommerce' ) - ) ); - ?> -
    - - - - -
    - - - - - ' . __( 'Define the loops this product should be visible in. The product will still be accessible directly.', 'woocommerce' ) . '

    '; - - foreach ( $visibility_options as $name => $label ) { - echo '
    '; - } - - echo '

    ' . __( 'Enable this option to feature this product.', 'woocommerce' ) . '

    '; - - echo '
    '; - ?> -

    - - -

    -
    -
    - "; - $columns["thumb"] = '' . __( 'Image', 'woocommerce' ) . ''; - - $columns["name"] = __( 'Name', 'woocommerce' ); - - if ( wc_product_sku_enabled() ) - $columns["sku"] = __( 'SKU', 'woocommerce' ); - - if ( get_option( 'woocommerce_manage_stock' ) == 'yes' ) - $columns["is_in_stock"] = __( 'Stock', 'woocommerce' ); - - $columns["price"] = __( 'Price', 'woocommerce' ); - - $columns["product_cat"] = __( 'Categories', 'woocommerce' ); - $columns["product_tag"] = __( 'Tags', 'woocommerce' ); - $columns["featured"] = '' . __( 'Featured', 'woocommerce' ) . ''; - $columns["product_type"] = '' . __( 'Type', 'woocommerce' ) . ''; - $columns["date"] = __( 'Date', 'woocommerce' ); - - return array_merge( $columns, $existing_columns ); - } - - /** - * Define our custom columns shown in admin. - * @param string $column - */ - public function custom_columns( $column ) { - global $post, $woocommerce, $the_product; - - if ( empty( $the_product ) || $the_product->id != $post->ID ) - $the_product = get_product( $post ); - - switch ( $column ) { - case "thumb" : - echo '' . $the_product->get_image() . ''; - break; - case "name" : - $edit_link = get_edit_post_link( $post->ID ); - $title = _draft_or_post_title(); - $post_type_object = get_post_type_object( $post->post_type ); - $can_edit_post = current_user_can( $post_type_object->cap->edit_post, $post->ID ); - - echo '' . $title.''; - - _post_states( $post ); - - echo ''; - - if ( $post->post_parent > 0 ) - echo '  ← '. get_the_title($post->post_parent) .''; - - // Excerpt view - if (isset($_GET['mode']) && $_GET['mode']=='excerpt') echo apply_filters('the_excerpt', $post->post_excerpt); - - // Get actions - $actions = array(); - - $actions['id'] = 'ID: ' . $post->ID; - - if ( $can_edit_post && 'trash' != $post->post_status ) { - $actions['edit'] = '' . __( 'Edit' ) . ''; - $actions['inline hide-if-no-js'] = '' . __( 'Quick Edit' ) . ''; - } - if ( current_user_can( $post_type_object->cap->delete_post, $post->ID ) ) { - if ( 'trash' == $post->post_status ) - $actions['untrash'] = "ID ) ), 'untrash-post_' . $post->ID ) . "'>" . __( 'Restore' ) . ""; - elseif ( EMPTY_TRASH_DAYS ) - $actions['trash'] = "" . __( 'Trash' ) . ""; - if ( 'trash' == $post->post_status || !EMPTY_TRASH_DAYS ) - $actions['delete'] = "" . __( 'Delete Permanently' ) . ""; - } - if ( $post_type_object->public ) { - if ( in_array( $post->post_status, array( 'pending', 'draft', 'future' ) ) ) { - if ( $can_edit_post ) - $actions['view'] = '' . __( 'Preview' ) . ''; - } elseif ( 'trash' != $post->post_status ) { - $actions['view'] = '' . __( 'View' ) . ''; - } - } - - $actions = apply_filters( 'post_row_actions', $actions, $post ); - - echo '
    '; - - $i = 0; - $action_count = sizeof($actions); - - foreach ( $actions as $action => $link ) { - ++$i; - ( $i == $action_count ) ? $sep = '' : $sep = ' | '; - echo "$link$sep"; - } - echo '
    '; - - get_inline_data( $post ); - - /* Custom inline data for woocommerce */ - echo ' - - '; - - break; - case "sku" : - echo $the_product->get_sku() ? $the_product->get_sku() : ''; - break; - case "product_type" : - if( $the_product->product_type == 'grouped' ): - echo ''; - elseif ( $the_product->product_type == 'external' ): - echo ''; - elseif ( $the_product->product_type == 'simple' ): - - if ( $the_product->is_virtual() ) { - echo ''; - } elseif ( $the_product->is_downloadable() ) { - echo ''; - } else { - echo ''; - } - - elseif ( $the_product->product_type == 'variable' ): - echo ''; - else: - // Assuming that we have other types in future - echo ''; - endif; - break; - case "price": - echo $the_product->get_price_html() ? $the_product->get_price_html() : ''; - break; - case "product_cat" : - case "product_tag" : - if ( ! $terms = get_the_terms( $post->ID, $column ) ) { - echo ''; - } else { - foreach ( $terms as $term ) { - $termlist[] = '' . $term->name . ''; - } - - echo implode( ', ', $termlist ); - } - break; - case 'featured': - $url = wp_nonce_url( admin_url( 'admin-ajax.php?action=woocommerce_feature_product&product_id=' . $post->ID ), 'woocommerce-feature-product' ); - echo ''; - if ( $the_product->is_featured() ) { - echo '' . __( 'Yes', 'woocommerce' ) . ''; - } else { - echo '' . __( 'No', 'woocommerce' ) . ''; - } - echo ''; - break; - case "is_in_stock" : - - if ($the_product->is_in_stock()) { - echo '' . __( 'In stock', 'woocommerce' ) . ''; - } else { - echo '' . __( 'Out of stock', 'woocommerce' ) . ''; - } - - if ( $the_product->managing_stock() ) : - echo ' × ' . $the_product->get_total_stock(); - endif; - - break; - } - } - - /** - * Make product columns sortable - * - * https://gist.github.com/906872 - * - * @access public - * @param mixed $columns - * @return array - */ - public function custom_columns_sort( $columns ) { - $custom = array( - 'price' => 'price', - 'featured' => 'featured', - 'sku' => 'sku', - 'name' => 'title' - ); - return wp_parse_args( $custom, $columns ); - } - - /** - * Product column orderby - * - * http://scribu.net/wordpress/custom-sortable-columns.html#comment-4732 - * - * @access public - * @param mixed $vars - * @return array - */ - public function custom_columns_orderby( $vars ) { - if (isset( $vars['orderby'] )) : - if ( 'price' == $vars['orderby'] ) : - $vars = array_merge( $vars, array( - 'meta_key' => '_price', - 'orderby' => 'meta_value_num' - ) ); - endif; - if ( 'featured' == $vars['orderby'] ) : - $vars = array_merge( $vars, array( - 'meta_key' => '_featured', - 'orderby' => 'meta_value' - ) ); - endif; - if ( 'sku' == $vars['orderby'] ) : - $vars = array_merge( $vars, array( - 'meta_key' => '_sku', - 'orderby' => 'meta_value' - ) ); - endif; - endif; - - return $vars; - } - - /** - * Product sorting link - * - * Based on Simple Page Ordering by 10up (http://wordpress.org/extend/plugins/simple-page-ordering/) - * - * @param array $views - * @return array - */ - public function default_sorting_link( $views ) { - global $post_type, $wp_query; - - if ( ! current_user_can('edit_others_pages') ) - return $views; - - $class = ( isset( $wp_query->query['orderby'] ) && $wp_query->query['orderby'] == 'menu_order title' ) ? 'current' : ''; - $query_string = remove_query_arg(array( 'orderby', 'order' )); - $query_string = add_query_arg( 'orderby', urlencode('menu_order title'), $query_string ); - $query_string = add_query_arg( 'order', urlencode('ASC'), $query_string ); - $views['byorder'] = '' . __( 'Sort Products', 'woocommerce' ) . ''; - - return $views; - } - - /** - * Show a category filter box - */ - public function product_filters() { - global $typenow, $wp_query; - - if ( $typenow != 'product' ) - return; - - // Category Filtering - wc_product_dropdown_categories(); - - // Type filtering - $terms = get_terms( 'product_type' ); - $output = ""; - - echo $output; - } - - /** - * Filter the products in admin based on options - * - * @param mixed $query - */ - public function product_filters_query( $query ) { - global $typenow, $wp_query; - - if ( $typenow == 'product' ) { - - if ( isset( $query->query_vars['product_type'] ) ) { - // Subtypes - if ( $query->query_vars['product_type'] == 'downloadable' ) { - $query->query_vars['product_type'] = ''; - $query->query_vars['meta_value'] = 'yes'; - $query->query_vars['meta_key'] = '_downloadable'; - } elseif ( $query->query_vars['product_type'] == 'virtual' ) { - $query->query_vars['product_type'] = ''; - $query->query_vars['meta_value'] = 'yes'; - $query->query_vars['meta_key'] = '_virtual'; - } - } - - // Categories - if ( isset( $_GET['product_cat'] ) && $_GET['product_cat'] == '0' ) { - $query->query_vars['tax_query'][] = array( - 'taxonomy' => 'product_cat', - 'field' => 'id', - 'terms' => get_terms( 'product_cat', array( 'fields' => 'ids' ) ), - 'operator' => 'NOT IN' - ); - } - } - } - - /** - * Search by SKU or ID for products. - * @param string $where - * @return string - */ - public function product_search( $where ) { - global $pagenow, $wpdb, $wp; - - if ( 'edit.php' != $pagenow || ! is_search() || ! isset( $wp->query_vars['s'] ) || 'product' != $wp->query_vars['post_type'] ) - return $where; - - $search_ids = array(); - $terms = explode( ',', $wp->query_vars['s'] ); - - foreach ( $terms as $term ) { - if ( is_numeric( $term ) ) { - $search_ids[] = $term; - } - // Attempt to get a SKU - $sku_to_id = $wpdb->get_var( $wpdb->prepare( "SELECT post_id FROM {$wpdb->postmeta} WHERE meta_key='_sku' AND meta_value LIKE '%%%s%%' LIMIT 1;", wc_clean( $term ) ) ); - - if ( $sku_to_id ) - $search_ids[] = $sku_to_id; - } - - $search_ids = array_filter( array_map( 'absint', $search_ids ) ); - - if ( sizeof( $search_ids ) > 0 ) - $where .= ' OR ' . $wpdb->posts . '.ID IN (' . implode( ',', $search_ids ) . ')'; - - return $where; - } - - /** - * Maintain term hierarchy when editing a product. - * @param array $args - * @return array - */ - public function disable_checked_ontop( $args ) { - if ( $args['taxonomy'] == 'product_cat' ) - $args['checked_ontop'] = false; - - return $args; - } - - /** - * Custom bulk edit - form - * - * @access public - * @param mixed $column_name - * @param mixed $post_type - */ - public function bulk_edit( $column_name, $post_type ) { - if ( $column_name != 'price' || $post_type != 'product' ) - return; - - include( WC()->plugin_path() . '/includes/admin/views/html-bulk-edit-product.php'); - } - - /** - * Custom quick edit - form - * - * @access public - * @param mixed $column_name - * @param mixed $post_type - */ - public function quick_edit( $column_name, $post_type ) { - if ( $column_name != 'price' || $post_type != 'product' ) - return; - - include( WC()->plugin_path() . '/includes/admin/views/html-quick-edit-product.php'); - } - - /** - * Quick and bulk edit saving - * - * @access public - * @param int $post_id - * @param WP_Post $post - * @return int - */ - public function bulk_and_quick_edit_save_post( $post_id, $post ) { - - // Don't save revisions, autosaves - if ( is_int( wp_is_post_revision( $post_id ) ) || is_int( wp_is_post_autosave( $post_id ) ) || defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) - return $post_id; - - // Check post type - if ( $post->post_type != 'product' ) - return $post_id; - - // Check nonces - if ( ! isset( $_REQUEST['woocommerce_quick_edit_nonce'] ) && ! isset( $_REQUEST['woocommerce_bulk_edit_nonce'] ) ) - return $post_id; - if ( isset( $_REQUEST['woocommerce_quick_edit_nonce'] ) && ! wp_verify_nonce( $_REQUEST['woocommerce_quick_edit_nonce'], 'woocommerce_quick_edit_nonce' ) ) - return $post_id; - if ( isset( $_REQUEST['woocommerce_bulk_edit_nonce'] ) && ! wp_verify_nonce( $_REQUEST['woocommerce_bulk_edit_nonce'], 'woocommerce_bulk_edit_nonce' ) ) - return $post_id; - - // Check user permission - if ( ! current_user_can( 'edit_post', $post_id ) ) - return $post_id; - - $product = get_product( $post ); - - if ( ! empty( $_REQUEST['woocommerce_quick_edit'] ) ) - $this->quick_edit_save( $post_id, $product ); - else - $this->bulk_edit_save( $post_id, $product ); - - // Clear transient - wc_delete_product_transients( $post_id ); - - return $post_id; - } - - /** - * Quick edit - */ - private function quick_edit_save( $post_id, $product ) { - - $old_regular_price = $product->regular_price; - $old_sale_price = $product->sale_price; - - // Save fields - if ( isset( $_REQUEST['_sku'] ) ) update_post_meta( $post_id, '_sku', wc_clean( $_REQUEST['_sku'] ) ); - if ( isset( $_REQUEST['_weight'] ) ) update_post_meta( $post_id, '_weight', wc_clean( $_REQUEST['_weight'] ) ); - if ( isset( $_REQUEST['_length'] ) ) update_post_meta( $post_id, '_length', wc_clean( $_REQUEST['_length'] ) ); - if ( isset( $_REQUEST['_width'] ) ) update_post_meta( $post_id, '_width', wc_clean( $_REQUEST['_width'] ) ); - if ( isset( $_REQUEST['_height'] ) ) update_post_meta( $post_id, '_height', wc_clean( $_REQUEST['_height'] ) ); - if ( isset( $_REQUEST['_visibility'] ) ) update_post_meta( $post_id, '_visibility', wc_clean( $_REQUEST['_visibility'] ) ); - if ( isset( $_REQUEST['_featured'] ) ) update_post_meta( $post_id, '_featured', 'yes' ); else update_post_meta( $post_id, '_featured', 'no' ); - - if ( isset( $_REQUEST['_tax_status'] ) ) - update_post_meta( $post_id, '_tax_status', wc_clean( $_REQUEST['_tax_status'] ) ); - - if ( isset( $_REQUEST['_tax_class'] ) ) - update_post_meta( $post_id, '_tax_class', wc_clean( $_REQUEST['_tax_class'] ) ); - - if ( $product->is_type('simple') || $product->is_type('external') ) { - - if ( isset( $_REQUEST['_regular_price'] ) ) update_post_meta( $post_id, '_regular_price', wc_clean( $_REQUEST['_regular_price'] ) ); - if ( isset( $_REQUEST['_sale_price'] ) ) update_post_meta( $post_id, '_sale_price', wc_clean( $_REQUEST['_sale_price'] ) ); - - // Handle price - remove dates and set to lowest - $price_changed = false; - - if ( isset( $_REQUEST['_regular_price'] ) && wc_clean( $_REQUEST['_regular_price'] ) != $old_regular_price ) $price_changed = true; - if ( isset( $_REQUEST['_sale_price'] ) && wc_clean( $_REQUEST['_sale_price'] ) != $old_sale_price ) $price_changed = true; - - if ( $price_changed ) { - update_post_meta( $post_id, '_sale_price_dates_from', '' ); - update_post_meta( $post_id, '_sale_price_dates_to', '' ); - - if ( isset( $_REQUEST['_sale_price'] ) && $_REQUEST['_sale_price'] != '' ) { - update_post_meta( $post_id, '_price', wc_clean( $_REQUEST['_sale_price'] ) ); - } else { - update_post_meta( $post_id, '_price', wc_clean( $_REQUEST['_regular_price'] ) ); - } - } - } - - // Handle stock status - if ( isset( $_REQUEST['_stock_status'] ) ) - wc_update_product_stock_status( $post_id, wc_clean( $_REQUEST['_stock_status'] ) ); - - // Handle stock - if ( ! $product->is_type('grouped') ) { - if ( isset( $_REQUEST['_manage_stock'] ) ) { - update_post_meta( $post_id, '_manage_stock', 'yes' ); - wc_update_product_stock( $post_id, intval( $_REQUEST['_stock'] ) ); - } else { - update_post_meta( $post_id, '_manage_stock', 'no' ); - wc_update_product_stock( $post_id, 0 ); - } - - if ( ! empty( $_REQUEST['_backorders'] ) ) { - update_post_meta( $post_id, '_backorders', wc_clean( $_REQUEST['_backorders'] ) ); - } - } - - do_action( 'woocommerce_product_quick_edit_save', $product ); - } - - /** - * Bulk edit - */ - public function bulk_edit_save( $post_id, $product ) { - - $old_regular_price = $product->regular_price; - $old_sale_price = $product->sale_price; - - // Save fields - if ( ! empty( $_REQUEST['change_weight'] ) && isset( $_REQUEST['_weight'] ) ) - update_post_meta( $post_id, '_weight', wc_clean( stripslashes( $_REQUEST['_weight'] ) ) ); - - if ( ! empty( $_REQUEST['change_dimensions'] ) ) { - if ( isset( $_REQUEST['_length'] ) ) - update_post_meta( $post_id, '_length', wc_clean( stripslashes( $_REQUEST['_length'] ) ) ); - if ( isset( $_REQUEST['_width'] ) ) - update_post_meta( $post_id, '_width', wc_clean( stripslashes( $_REQUEST['_width'] ) ) ); - if ( isset( $_REQUEST['_height'] ) ) - update_post_meta( $post_id, '_height', wc_clean( stripslashes( $_REQUEST['_height'] ) ) ); - } - - if ( ! empty( $_REQUEST['_tax_status'] ) ) - update_post_meta( $post_id, '_tax_status', wc_clean( $_REQUEST['_tax_status'] ) ); - - if ( ! empty( $_REQUEST['_tax_class'] ) ) { - $tax_class = wc_clean( $_REQUEST['_tax_class'] ); - if ( $tax_class == 'standard' ) - $tax_class = ''; - update_post_meta( $post_id, '_tax_class', $tax_class ); - } - - if ( ! empty( $_REQUEST['_stock_status'] ) ) - wc_update_product_stock_status( $post_id, wc_clean( $_REQUEST['_stock_status'] ) ); - - if ( ! empty( $_REQUEST['_visibility'] ) ) - update_post_meta( $post_id, '_visibility', stripslashes( $_REQUEST['_visibility'] ) ); - - if ( ! empty( $_REQUEST['_featured'] ) ) - update_post_meta( $post_id, '_featured', stripslashes( $_REQUEST['_featured'] ) ); - - // Handle price - remove dates and set to lowest - if ( $product->is_type( 'simple' ) || $product->is_type( 'external' ) ) { - - $price_changed = false; - - if ( ! empty( $_REQUEST['change_regular_price'] ) ) { - - $change_regular_price = absint( $_REQUEST['change_regular_price'] ); - $regular_price = esc_attr( stripslashes( $_REQUEST['_regular_price'] ) ); - - switch ( $change_regular_price ) { - case 1 : - $new_price = $regular_price; - break; - case 2 : - if ( strstr( $regular_price, '%' ) ) { - $percent = str_replace( '%', '', $regular_price ) / 100; - $new_price = $old_regular_price + ( round( $old_regular_price * $percent, absint( get_option( 'woocommerce_price_num_decimals' ) ) ) ); - } else { - $new_price = $old_regular_price + $regular_price; - } - break; - case 3 : - if ( strstr( $regular_price, '%' ) ) { - $percent = str_replace( '%', '', $regular_price ) / 100; - $new_price = $old_regular_price - ( round ( $old_regular_price * $percent, absint( get_option( 'woocommerce_price_num_decimals' ) ) ) ); - } else { - $new_price = $old_regular_price - $regular_price; - } - break; - } - - if ( isset( $new_price ) && $new_price != $old_regular_price ) { - $price_changed = true; - $new_price = round( $new_price, absint( get_option( 'woocommerce_price_num_decimals' ) ) ); - update_post_meta( $post_id, '_regular_price', $new_price ); - $product->regular_price = $new_price; - } - } - - if ( ! empty( $_REQUEST['change_sale_price'] ) ) { - - $change_sale_price = absint( $_REQUEST['change_sale_price'] ); - $sale_price = esc_attr( stripslashes( $_REQUEST['_sale_price'] ) ); - - switch ( $change_sale_price ) { - case 1 : - $new_price = $sale_price; - break; - case 2 : - if ( strstr( $sale_price, '%' ) ) { - $percent = str_replace( '%', '', $sale_price ) / 100; - $new_price = $old_sale_price + ( $old_sale_price * $percent ); - } else { - $new_price = $old_sale_price + $sale_price; - } - break; - case 3 : - if ( strstr( $sale_price, '%' ) ) { - $percent = str_replace( '%', '', $sale_price ) / 100; - $new_price = $old_sale_price - ( $old_sale_price * $percent ); - } else { - $new_price = $old_sale_price - $sale_price; - } - break; - case 4 : - if ( strstr( $sale_price, '%' ) ) { - $percent = str_replace( '%', '', $sale_price ) / 100; - $new_price = $product->regular_price - ( $product->regular_price * $percent ); - } else { - $new_price = $product->regular_price - $sale_price; - } - break; - } - - if ( isset( $new_price ) && $new_price != $old_sale_price ) { - $price_changed = true; - $new_price = round( $new_price, absint( get_option( 'woocommerce_price_num_decimals' ) ) ); - update_post_meta( $post_id, '_sale_price', $new_price ); - $product->sale_price = $new_price; - } - } - - if ( $price_changed ) { - update_post_meta( $post_id, '_sale_price_dates_from', '' ); - update_post_meta( $post_id, '_sale_price_dates_to', '' ); - - if ( $product->regular_price < $product->sale_price ) { - $product->sale_price = ''; - update_post_meta( $post_id, '_sale_price', '' ); - } - - if ( $product->sale_price ) { - update_post_meta( $post_id, '_price', $product->sale_price ); - } else { - update_post_meta( $post_id, '_price', $product->regular_price ); - } - } - } - - // Handle stock - if ( ! $product->is_type( 'grouped' ) ) { - - if ( ! empty( $_REQUEST['change_stock'] ) ) { - update_post_meta( $post_id, '_manage_stock', 'yes' ); - wc_update_product_stock( $post_id, intval( $_REQUEST['_stock'] ) ); - } - - if ( ! empty( $_REQUEST['_manage_stock'] ) ) { - - if ( $_REQUEST['_manage_stock'] == 'yes' ) { - update_post_meta( $post_id, '_manage_stock', 'yes' ); - } else { - update_post_meta( $post_id, '_manage_stock', 'no' ); - wc_update_product_stock( $post_id, 0 ); - } - } - - if ( ! empty( $_REQUEST['_backorders'] ) ) { - update_post_meta( $post_id, '_backorders', wc_clean( $_REQUEST['_backorders'] ) ); - } - - } - - do_action( 'woocommerce_product_bulk_edit_save', $product ); - } - - /** - * Filter the directory for uploads. - * - * @param array $pathdata - * @return array - */ - public function upload_dir( $pathdata ) { - // Change upload dir for downloadable files - if ( isset( $_POST['type'] ) && $_POST['type'] == 'downloadable_product' ) { - if ( empty( $pathdata['subdir'] ) ) { - $pathdata['path'] = $pathdata['path'] . '/woocommerce_uploads'; - $pathdata['url'] = $pathdata['url']. '/woocommerce_uploads'; - $pathdata['subdir'] = '/woocommerce_uploads'; - } else { - $new_subdir = '/woocommerce_uploads' . $pathdata['subdir']; - - $pathdata['path'] = str_replace( $pathdata['subdir'], $new_subdir, $pathdata['path'] ); - $pathdata['url'] = str_replace( $pathdata['subdir'], $new_subdir, $pathdata['url'] ); - $pathdata['subdir'] = str_replace( $pathdata['subdir'], $new_subdir, $pathdata['subdir'] ); - } - } - - return $pathdata; - } - - /** - * Run a filter when uploading a downloadable product. - */ - public function woocommerce_media_upload_downloadable_product() { - do_action('media_upload_file'); - } - - /** - * Protect downloads from ms-files.php in multisite - * - * @param mixed $rewrite - * @return string - */ - public function ms_protect_download_rewite_rules( $rewrite ) { - global $wp_rewrite; - - if ( ! is_multisite() || get_option( 'woocommerce_file_download_method' ) == 'redirect' ) - return $rewrite; - - $rule = "\n# WooCommerce Rules - Protect Files from ms-files.php\n\n"; - $rule .= "\n"; - $rule .= "RewriteEngine On\n"; - $rule .= "RewriteCond %{QUERY_STRING} file=woocommerce_uploads/ [NC]\n"; - $rule .= "RewriteRule /ms-files.php$ - [F]\n"; - $rule .= "\n\n"; - - return $rule . $rewrite; - } - - /** - * Grant downloadable file access to any newly added files on any existing - * orders for this product that have previously been granted downloadable file access - * - * @param int $product_id product identifier - * @param int $variation_id optional product variation identifier - * @param array $downloadable_files newly set files - */ - public function process_product_file_download_paths( $product_id, $variation_id, $downloadable_files ) { - global $wpdb; - - if ( $variation_id ) - $product_id = $variation_id; - - $product = get_product( $product_id ); - $existing_download_ids = array_keys( (array) $product->get_files() ); - $updated_download_ids = array_keys( (array) $downloadable_files ); - - $new_download_ids = array_filter( array_diff( $updated_download_ids, $existing_download_ids ) ); - $removed_download_ids = array_filter( array_diff( $existing_download_ids, $updated_download_ids ) ); - - if ( $new_download_ids || $removed_download_ids ) { - // determine whether downloadable file access has been granted via the typical order completion, or via the admin ajax method - $existing_permissions = $wpdb->get_results( $wpdb->prepare( "SELECT * from {$wpdb->prefix}woocommerce_downloadable_product_permissions WHERE product_id = %d GROUP BY order_id", $product_id ) ); - - foreach ( $existing_permissions as $existing_permission ) { - $order = new WC_Order( $existing_permission->order_id ); - - if ( $order->id ) { - // Remove permissions - if ( $removed_download_ids ) { - foreach ( $removed_download_ids as $download_id ) { - $wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->prefix}woocommerce_downloadable_product_permissions WHERE order_id = %d AND product_id = %d AND download_id = %s", $order->id, $product_id, $download_id ) ); - } - } - // Add permissions - if ( $new_download_ids ) { - foreach ( $new_download_ids as $download_id ) { - // grant permission if it doesn't already exist - if ( ! $wpdb->get_var( $wpdb->prepare( "SELECT 1 FROM {$wpdb->prefix}woocommerce_downloadable_product_permissions WHERE order_id = %d AND product_id = %d AND download_id = %s", $order->id, $product_id, $download_id ) ) ) { - wc_downloadable_file_permission( $download_id, $product_id, $order ); - } - } - } - } - } - } - } -} - -endif; - -return new WC_Admin_CPT_Product(); diff --git a/includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php b/includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php deleted file mode 100644 index f92045f7c20..00000000000 --- a/includes/admin/post-types/class-wc-admin-cpt-shop_coupon.php +++ /dev/null @@ -1,232 +0,0 @@ -type = 'shop_coupon'; - - // Post title fields - add_filter( 'enter_title_here', array( $this, 'enter_title_here' ), 1, 2 ); - add_action( 'edit_form_after_title', array( $this, 'coupon_description_field' ) ); - - // Admin Columns - add_filter( 'manage_edit-shop_coupon_columns', array( $this, 'edit_columns' ) ); - add_action( 'manage_shop_coupon_posts_custom_column', array( $this, 'custom_columns' ), 2 ); - add_filter( 'request', array( $this, 'coupons_by_type_query' ) ); - - // Product filtering - add_action( 'restrict_manage_posts', array( $this, 'coupon_filters' ) ); - - // Call WC_Admin_CPT constructor - parent::__construct(); - } - - /** - * Change title boxes in admin. - * @param string $text - * @param object $post - * @return string - */ - public function enter_title_here( $text, $post ) { - if ( $post->post_type == 'shop_coupon' ) - return __( 'Coupon code', 'woocommerce' ); - - return $text; - } - - /** - * Print coupon description textarea field - * @param WP_Post $post - */ - public function coupon_description_field( $post ) { - if ( $post->post_type != 'shop_coupon' ) - return; - ?> - - "; - $columns["coupon_code"] = __( 'Code', 'woocommerce' ); - $columns["type"] = __( 'Coupon type', 'woocommerce' ); - $columns["amount"] = __( 'Coupon amount', 'woocommerce' ); - $columns["description"] = __( 'Description', 'woocommerce' ); - $columns["products"] = __( 'Product IDs', 'woocommerce' ); - $columns["usage"] = __( 'Usage / Limit', 'woocommerce' ); - $columns["expiry_date"] = __( 'Expiry date', 'woocommerce' ); - - return $columns; - } - - /** - * Define our custom columns shown in admin. - * @param string $column - */ - public function custom_columns( $column ) { - global $post, $woocommerce; - - switch ( $column ) { - case "coupon_code" : - $edit_link = get_edit_post_link( $post->ID ); - $title = _draft_or_post_title(); - $post_type_object = get_post_type_object( $post->post_type ); - $can_edit_post = current_user_can( $post_type_object->cap->edit_post, $post->ID ); - - echo ''; - - _post_states( $post ); - - // Get actions - $actions = array(); - - if ( current_user_can( $post_type_object->cap->delete_post, $post->ID ) ) { - if ( 'trash' == $post->post_status ) - $actions['untrash'] = "ID ) ), 'untrash-post_' . $post->ID ) . "'>" . __( 'Restore' ) . ""; - elseif ( EMPTY_TRASH_DAYS ) - $actions['trash'] = "" . __( 'Trash' ) . ""; - if ( 'trash' == $post->post_status || !EMPTY_TRASH_DAYS ) - $actions['delete'] = "" . __( 'Delete Permanently' ) . ""; - } - - $actions = apply_filters( 'post_row_actions', $actions, $post ); - - echo '
    '; - - $i = 0; - $action_count = sizeof($actions); - - foreach ( $actions as $action => $link ) { - ++$i; - ( $i == $action_count ) ? $sep = '' : $sep = ' | '; - echo "$link$sep"; - } - echo '
    '; - - break; - case "type" : - echo esc_html( wc_get_coupon_type( get_post_meta( $post->ID, 'discount_type', true ) ) ); - break; - case "amount" : - echo esc_html( get_post_meta( $post->ID, 'coupon_amount', true ) ); - break; - case "products" : - $product_ids = get_post_meta( $post->ID, 'product_ids', true ); - $product_ids = $product_ids ? array_map( 'absint', explode( ',', $product_ids ) ) : array(); - if ( sizeof( $product_ids ) > 0 ) - echo esc_html( implode( ', ', $product_ids ) ); - else - echo '–'; - break; - case "usage_limit" : - $usage_limit = get_post_meta( $post->ID, 'usage_limit', true ); - - if ( $usage_limit ) - echo esc_html( $usage_limit ); - else - echo '–'; - break; - case "usage" : - $usage_count = absint( get_post_meta( $post->ID, 'usage_count', true ) ); - $usage_limit = esc_html( get_post_meta($post->ID, 'usage_limit', true) ); - - if ( $usage_limit ) - printf( __( '%s / %s', 'woocommerce' ), $usage_count, $usage_limit ); - else - printf( __( '%s / ∞', 'woocommerce' ), $usage_count ); - break; - case "expiry_date" : - $expiry_date = get_post_meta($post->ID, 'expiry_date', true); - - if ( $expiry_date ) - echo esc_html( date_i18n( 'F j, Y', strtotime( $expiry_date ) ) ); - else - echo '–'; - break; - case "description" : - echo wp_kses_post( $post->post_excerpt ); - break; - } - } - - /** - * Filter the coupons by the type. - * - * @param array $vars - * @return array - */ - public function coupons_by_type_query( $vars ) { - global $typenow, $wp_query; - if ( $typenow == 'shop_coupon' && ! empty( $_GET['coupon_type'] ) ) { - - $vars['meta_key'] = 'discount_type'; - $vars['meta_value'] = wc_clean( $_GET['coupon_type'] ); - - } - - return $vars; - } - - /** - * Show custom filters to filter coupons by type. - */ - public function coupon_filters() { - global $woocommerce, $typenow, $wp_query; - - if ( $typenow != 'shop_coupon' ) - return; - - // Type - ?> - - type = 'shop_order'; - - // Before data updates - add_filter( 'wp_insert_post_data', array( $this, 'wp_insert_post_data' ) ); - - // Admin Columns - add_filter( 'manage_edit-' . $this->type . '_columns', array( $this, 'edit_columns' ) ); - add_action( 'manage_' . $this->type . '_posts_custom_column', array( $this, 'custom_columns' ), 2 ); - - // Views and filtering - add_filter( 'views_edit-shop_order', array( $this, 'custom_order_views' ) ); - add_filter( 'bulk_actions-edit-shop_order', array( $this, 'bulk_actions' ) ); - add_filter( 'post_row_actions', array( $this, 'remove_row_actions' ), 10, 1 ); - add_action( 'restrict_manage_posts', array( $this, 'restrict_manage_orders' ) ); - add_filter( 'request', array( $this, 'orders_by_customer_query' ) ); - add_filter( "manage_edit-shop_order_sortable_columns", array( $this, 'custom_shop_order_sort' ) ); - add_filter( 'request', array( $this, 'custom_shop_order_orderby' ) ); - add_filter( 'get_search_query', array( $this, 'shop_order_search_label' ) ); - add_filter( 'query_vars', array( $this, 'add_custom_query_var' ) ); - add_action( 'parse_query', array( $this, 'shop_order_search_custom_fields' ) ); - add_action( 'before_delete_post', array( $this, 'delete_order_items' ) ); - - // Bulk edit - add_action( 'admin_footer', array( $this, 'bulk_admin_footer' ), 10 ); - add_action( 'load-edit.php', array( $this, 'bulk_action' ) ); - add_action( 'admin_notices', array( $this, 'bulk_admin_notices' ) ); - - // Call WC_Admin_CPT constructor - parent::__construct(); - } - - /** - * Forces the order posts to have a title in a certain format (containing the date) - * - * @param array $data - * @return array - */ - public function wp_insert_post_data( $data ) { - global $post; - - if ( $data['post_type'] == 'shop_order' && isset( $data['post_date'] ) ) { - - $order_title = 'Order'; - if ( $data['post_date'] ) - $order_title.= ' – ' . date_i18n( 'F j, Y @ h:i A', strtotime( $data['post_date'] ) ); - - $data['post_title'] = $order_title; - } - - return $data; - } - - /** - * Change the columns shown in admin. - */ - public function edit_columns( $existing_columns ) { - $columns = array(); - - $columns["cb"] = ""; - $columns["order_status"] = '' . esc_attr__( 'Status', 'woocommerce' ) . ''; - $columns["order_title"] = __( 'Order', 'woocommerce' ); - $columns["order_items"] = __( 'Purchased', 'woocommerce' ); - $columns["shipping_address"] = __( 'Ship to', 'woocommerce' ); - - $columns["customer_message"] = '' . esc_attr__( 'Customer Message', 'woocommerce' ) . ''; - $columns["order_notes"] = '' . esc_attr__( 'Order Notes', 'woocommerce' ) . ''; - $columns["order_date"] = __( 'Date', 'woocommerce' ); - $columns["order_total"] = __( 'Total', 'woocommerce' ); - $columns["order_actions"] = __( 'Actions', 'woocommerce' ); - - return $columns; - } - - /** - * Define our custom columns shown in admin. - * @param string $column - */ - public function custom_columns( $column ) { - global $post, $woocommerce, $the_order; - - if ( empty( $the_order ) || $the_order->id != $post->ID ) - $the_order = new WC_Order( $post->ID ); - - switch ( $column ) { - case "order_status" : - - printf( '%s', sanitize_title( $the_order->status ), esc_html__( $the_order->status, 'woocommerce' ), esc_html__( $the_order->status, 'woocommerce' ) ); - - break; - case "order_date" : - - if ( '0000-00-00 00:00:00' == $post->post_date ) { - $t_time = $h_time = __( 'Unpublished', 'woocommerce' ); - } else { - $t_time = get_the_time( __( 'Y/m/d g:i:s A', 'woocommerce' ), $post ); - $gmt_time = strtotime( $post->post_date_gmt . ' UTC' ); - $time_diff = current_time( 'timestamp', 1 ) - $gmt_time; - $h_time = get_the_time( __( 'Y/m/d', 'woocommerce' ), $post ); - } - - echo '' . esc_html( apply_filters( 'post_date_column_time', $h_time, $post ) ) . ''; - - break; - case "customer_message" : - - if ( $the_order->customer_message ) - echo '' . __( 'Yes', 'woocommerce' ) . ''; - else - echo ''; - - break; - case "billing_address" : - if ( $the_order->get_formatted_billing_address() ) - echo '' . esc_html( preg_replace( '##i', ', ', $the_order->get_formatted_billing_address() ) ) .''; - else - echo '–'; - - if ( $the_order->payment_method_title ) - echo '' . __( 'Via', 'woocommerce' ) . ' ' . esc_html( $the_order->payment_method_title ) . ''; - break; - case "order_items" : - - printf( '' . _n( '%d item', '%d items', sizeof( $the_order->get_items() ), 'woocommerce' ) . '', sizeof( $the_order->get_items() ) ); - - if ( sizeof( $the_order->get_items() ) > 0 ) { - - echo ''; - - foreach( $the_order->get_items() as $item ) { - $_product = apply_filters( 'woocommerce_order_item_product', $the_order->get_product_from_item( $item ), $item ); - $item_meta = new WC_Order_Item_Meta( $item['item_meta'] ); - $item_meta_html = $item_meta->display( true, true ); - ?> - - - - - '; - - } else echo '–'; - break; - case "shipping_address" : - if ( $the_order->get_formatted_shipping_address() ) - echo ''. esc_html( preg_replace( '##i', ', ', $the_order->get_formatted_shipping_address() ) ) .''; - else - echo '–'; - - if ( $the_order->get_shipping_method() ) - echo '' . __( 'Via', 'woocommerce' ) . ' ' . esc_html( $the_order->get_shipping_method() ) . ''; - - break; - case "order_notes" : - - if ( $post->comment_count ) { - - $latest_notes = get_comments( array( - 'post_id' => $post->ID, - 'number' => 1 - ) ); - - $latest_note = current( $latest_notes ); - - if ( $post->comment_count == 1 ) - echo '' . __( 'Yes', 'woocommerce' ) . ''; - else - echo '' . sprintf( _n( 'plus %d other note', 'plus %d other notes', ( $post->comment_count - 1 ), 'woocommerce' ), ( $post->comment_count - 1 ) ) . '' ) . '">' . __( 'Yes', 'woocommerce' ) . ''; - - } else { - echo ''; - } - - break; - case "order_total" : - echo esc_html( strip_tags( $the_order->get_formatted_order_total() ) ); - - if ( $the_order->payment_method_title ) - echo '' . __( 'Via', 'woocommerce' ) . ' ' . esc_html( $the_order->payment_method_title ) . ''; - break; - case "order_title" : - - $customer_tip = ''; - - if ( $address = $the_order->get_formatted_billing_address() ) - $customer_tip .= __( 'Billing:', 'woocommerce' ) . ' ' . $address . '

    '; - - if ( $the_order->billing_phone ) - $customer_tip .= __( 'Tel:', 'woocommerce' ) . ' ' . $the_order->billing_phone; - - echo '
    '; - - if ( $the_order->user_id ) - $user_info = get_userdata( $the_order->user_id ); - - if ( ! empty( $user_info ) ) { - - $user = ''; - - if ( $user_info->first_name || $user_info->last_name ) - $user .= esc_html( $user_info->first_name . ' ' . $user_info->last_name ); - else - $user .= esc_html( $user_info->display_name ); - - $user .= ''; - - } else { - $user = __( 'Guest', 'woocommerce' ); - } - - if ( $the_order->user_id ) - $user_info = get_userdata( $the_order->user_id ); - - if ( ! empty( $user_info ) ) { - - $username = ''; - - if ( $user_info->first_name || $user_info->last_name ) - $username .= esc_html( ucfirst( $user_info->first_name ) . ' ' . ucfirst( $user_info->last_name ) ); - else - $username .= esc_html( ucfirst( $user_info->display_name ) ); - - $username .= ''; - - } else { - if ( $the_order->billing_first_name || $the_order->billing_last_name ) - $username = trim( $the_order->billing_first_name . ' ' . $the_order->billing_last_name ); - else - $username = __( 'Guest', 'woocommerce' ); - } - - printf( __( '%s by %s', 'woocommerce' ), '' . esc_attr( $the_order->get_order_number() ) . '', $username ); - - if ( $the_order->billing_email ) - echo ''; - - echo '
    '; - - break; - case "order_actions" : - - ?>

    - status, array( 'pending', 'on-hold' ) ) ) - $actions['processing'] = array( - 'url' => wp_nonce_url( admin_url( 'admin-ajax.php?action=woocommerce_mark_order_processing&order_id=' . $post->ID ), 'woocommerce-mark-order-processing' ), - 'name' => __( 'Processing', 'woocommerce' ), - 'action' => "processing" - ); - - if ( in_array( $the_order->status, array( 'pending', 'on-hold', 'processing' ) ) ) - $actions['complete'] = array( - 'url' => wp_nonce_url( admin_url( 'admin-ajax.php?action=woocommerce_mark_order_complete&order_id=' . $post->ID ), 'woocommerce-mark-order-complete' ), - 'name' => __( 'Complete', 'woocommerce' ), - 'action' => "complete" - ); - - $actions['view'] = array( - 'url' => admin_url( 'post.php?post=' . $post->ID . '&action=edit' ), - 'name' => __( 'View', 'woocommerce' ), - 'action' => "view" - ); - - $actions = apply_filters( 'woocommerce_admin_order_actions', $actions, $the_order ); - - foreach ( $actions as $action ) { - printf( '%s', esc_attr( $action['action'] ), esc_url( $action['url'] ), esc_attr( $action['name'] ), esc_attr( $action['name'] ) ); - } - - do_action( 'woocommerce_admin_order_actions_end', $the_order ); - ?> -

    - - - - 0 ) { - - $vars['meta_key'] = '_customer_user'; - $vars['meta_value'] = (int) $_GET['_customer_user']; - - } - - return $vars; - } - - /** - * Make order columns sortable. - * - * - * https://gist.github.com/906872 - * - * @access public - * @param mixed $columns - * @return array - */ - public function custom_shop_order_sort( $columns ) { - $custom = array( - 'order_title' => 'ID', - 'order_total' => 'order_total', - 'order_date' => 'date' - ); - unset( $columns['comments'] ); - return wp_parse_args( $custom, $columns ); - } - - /** - * Order column orderby/request. - * - * @access public - * @param mixed $vars - * @return array - */ - public function custom_shop_order_orderby( $vars ) { - global $typenow, $wp_query; - if ( $typenow != 'shop_order' ) - return $vars; - - // Sorting - if ( isset( $vars['orderby'] ) ) { - if ( 'order_total' == $vars['orderby'] ) { - $vars = array_merge( $vars, array( - 'meta_key' => '_order_total', - 'orderby' => 'meta_value_num' - ) ); - } - } - - return $vars; - } - - /** - * Search custom fields as well as content. - * - * @access public - * @param WP_Query $wp - * @return void - */ - public function shop_order_search_custom_fields( $wp ) { - global $pagenow, $wpdb; - - if ( 'edit.php' != $pagenow || empty( $wp->query_vars['s'] ) || $wp->query_vars['post_type'] != 'shop_order' ) - return; - - $search_fields = array_map( 'wc_clean', apply_filters( 'woocommerce_shop_order_search_fields', array( - '_order_key', - '_billing_company', - '_billing_address_1', - '_billing_address_2', - '_billing_city', - '_billing_postcode', - '_billing_country', - '_billing_state', - '_billing_email', - '_billing_phone', - '_shipping_address_1', - '_shipping_address_2', - '_shipping_city', - '_shipping_postcode', - '_shipping_country', - '_shipping_state' - ) ) ); - - $search_order_id = str_replace( 'Order #', '', $_GET['s'] ); - if ( ! is_numeric( $search_order_id ) ) - $search_order_id = 0; - - // Search orders - $post_ids = array_merge( - $wpdb->get_col( - $wpdb->prepare( " - SELECT post_id - FROM {$wpdb->postmeta} - WHERE meta_key IN ('" . implode( "','", $search_fields ) . "') AND meta_value LIKE '%%%s%%' - ", - esc_attr( $_GET['s'] ) - ) - ), - $wpdb->get_col( - $wpdb->prepare( " - SELECT p1.post_id - FROM {$wpdb->postmeta} p1, {$wpdb->postmeta} p2 - WHERE - ( p1.meta_key = '_billing_first_name' AND p2.meta_key = '_billing_last_name' AND CONCAT(p1.meta_value, ' ', p2.meta_value) LIKE '%%%s%%' ) - OR - ( p1.meta_key = '_shipping_first_name' AND p2.meta_key = '_shipping_last_name' AND CONCAT(p1.meta_value, ' ', p2.meta_value) LIKE '%%%s%%' ) - ", - esc_attr( $_GET['s'] ), esc_attr( $_GET['s'] ) - ) - ), - $wpdb->get_col( - $wpdb->prepare( " - SELECT order_id - FROM {$wpdb->prefix}woocommerce_order_items as order_items - WHERE order_item_name LIKE '%%%s%%' - ", - esc_attr( $_GET['s'] ) - ) - ), - array( $search_order_id ) - ); - - // Remove s - we don't want to search order name - unset( $wp->query_vars['s'] ); - - // so we know we're doing this - $wp->query_vars['shop_order_search'] = true; - - // Search by found posts - $wp->query_vars['post__in'] = $post_ids; - } - - /** - * Change the label when searching orders. - * - * @access public - * @param mixed $query - * @return string - */ - public function shop_order_search_label($query) { - global $pagenow, $typenow; - - if ( 'edit.php' != $pagenow ) return $query; - if ( $typenow != 'shop_order' ) return $query; - if ( ! get_query_var( 'shop_order_search' ) ) return $query; - - return wp_unslash( $_GET['s'] ); - } - - /** - * Query vars for custom searches. - * - * @access public - * @param mixed $public_query_vars - * @return array - */ - public function add_custom_query_var($public_query_vars) { - $public_query_vars[] = 'sku'; - $public_query_vars[] = 'shop_order_search'; - return $public_query_vars; - } - - /** - * Remove item meta on permanent deletion - * - * @access public - * @return void - **/ - public function delete_order_items( $postid ) { - global $wpdb; - - if ( get_post_type( $postid ) == 'shop_order' ) { - do_action( 'woocommerce_delete_order_items', $postid ); - - $wpdb->query( " - DELETE {$wpdb->prefix}woocommerce_order_items, {$wpdb->prefix}woocommerce_order_itemmeta - FROM {$wpdb->prefix}woocommerce_order_items - JOIN {$wpdb->prefix}woocommerce_order_itemmeta ON {$wpdb->prefix}woocommerce_order_items.order_item_id = {$wpdb->prefix}woocommerce_order_itemmeta.order_item_id - WHERE {$wpdb->prefix}woocommerce_order_items.order_id = '{$postid}'; - " ); - - do_action( 'woocommerce_deleted_order_items', $postid ); - } - } - - /** - * Add extra bulk action options to mark orders as complete or processing - * - * Using Javascript until WordPress core fixes: http://core.trac.wordpress.org/ticket/16031 - * - * @access public - * @return void - */ - public function bulk_admin_footer() { - global $post_type; - - if ( 'shop_order' == $post_type ) { - ?> - - current_action(); - - switch ( $action ) { - case 'mark_completed': - $new_status = 'completed'; - $report_action = 'marked_completed'; - break; - case 'mark_processing': - $new_status = 'processing'; - $report_action = 'marked_processing'; - break; - case 'mark_on-hold' : - $new_status = 'on-hold'; - $report_action = 'marked_on-hold'; - break; - break; - default: - return; - } - - $changed = 0; - - $post_ids = array_map( 'absint', (array) $_REQUEST['post'] ); - - foreach( $post_ids as $post_id ) { - $order = new WC_Order( $post_id ); - $order->update_status( $new_status, __( 'Order status changed by bulk edit:', 'woocommerce' ) ); - $changed++; - } - - $sendback = add_query_arg( array( 'post_type' => 'shop_order', $report_action => true, 'changed' => $changed, 'ids' => join( ',', $post_ids ) ), '' ); - wp_redirect( $sendback ); - exit(); - } - - /** - * Show confirmation message that order status changed for number of orders - * - * @access public - * @return void - */ - public function bulk_admin_notices() { - global $post_type, $pagenow; - - if ( isset( $_REQUEST['marked_completed'] ) || isset( $_REQUEST['marked_processing'] ) || isset( $_REQUEST['marked_on-hold'] ) ) { - $number = isset( $_REQUEST['changed'] ) ? absint( $_REQUEST['changed'] ) : 0; - - if ( 'edit.php' == $pagenow && 'shop_order' == $post_type ) { - $message = sprintf( _n( 'Order status changed.', '%s order statuses changed.', $number ), number_format_i18n( $number ) ); - echo '

    ' . $message . '

    '; - } - } - } - -} - -endif; - -return new WC_Admin_CPT_Shop_Order(); diff --git a/includes/admin/post-types/class-wc-admin-cpt.php b/includes/admin/post-types/class-wc-admin-cpt.php deleted file mode 100644 index 3399e07d12e..00000000000 --- a/includes/admin/post-types/class-wc-admin-cpt.php +++ /dev/null @@ -1,50 +0,0 @@ -type ) { - $obj = get_post_type_object( $this->type ); - - $strings['insertIntoPost'] = sprintf( __( 'Insert into %s', 'woocommerce' ), $obj->labels->singular_name ); - $strings['uploadedToThisPost'] = sprintf( __( 'Uploaded to this %s', 'woocommerce' ), $obj->labels->singular_name ); - } - - return $strings; - } -} - -endif; \ No newline at end of file diff --git a/includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php b/includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php deleted file mode 100644 index dd8134d1f45..00000000000 --- a/includes/admin/post-types/meta-boxes/class-wc-meta-box-order-items.php +++ /dev/null @@ -1,191 +0,0 @@ - -
    -
    - get_sku() ) echo $_product->get_sku() . ' - '; ?> - - [?] - -
    - - - - - - - - - - - - - - - - - - - - - - - - - get_items( apply_filters( 'woocommerce_admin_order_item_types', array( 'line_item', 'fee' ) ) ); - - foreach ( $order_items as $item_id => $item ) { - - switch ( $item['type'] ) { - case 'line_item' : - $_product = $order->get_product_from_item( $item ); - $item_meta = $order->get_item_meta( $item_id ); - - include( 'views/html-order-item.php' ); - break; - case 'fee' : - include( 'views/html-order-fee.php' ); - break; - } - - do_action( 'woocommerce_order_item_' . $item['type'] . '_html', $item_id, $item ); - } - ?> - -
     
    -
    - -

    - - - -

    - -

    - - - - -

    -
    - update( - $wpdb->prefix . "woocommerce_order_items", - array( 'order_item_name' => wc_clean( $order_item_name[ $item_id ] ) ), - array( 'order_item_id' => $item_id ), - array( '%s' ), - array( '%d' ) - ); - - if ( isset( $order_item_qty[ $item_id ] ) ) - wc_update_order_item_meta( $item_id, '_qty', apply_filters( 'woocommerce_stock_amount', $order_item_qty[ $item_id ] ) ); - - if ( isset( $order_item_tax_class[ $item_id ] ) ) - wc_update_order_item_meta( $item_id, '_tax_class', wc_clean( $order_item_tax_class[ $item_id ] ) ); - - if ( isset( $line_subtotal[ $item_id ] ) ) { - wc_update_order_item_meta( $item_id, '_line_subtotal', wc_format_decimal( $line_subtotal[ $item_id ] ) ); - - $subtotal += wc_format_decimal( $line_subtotal[ $item_id ] ); - } - - if ( isset( $line_subtotal_tax[ $item_id ] ) ) { - wc_update_order_item_meta( $item_id, '_line_subtotal_tax', wc_format_decimal( $line_subtotal_tax[ $item_id ] ) ); - - $subtotal += wc_format_decimal( $line_subtotal_tax[ $item_id ] ); - } - - if ( isset( $line_total[ $item_id ] ) ) { - wc_update_order_item_meta( $item_id, '_line_total', wc_format_decimal( $line_total[ $item_id ] ) ); - - $total += wc_format_decimal( $line_total[ $item_id ] ); - } - - if ( isset( $line_tax[ $item_id ] ) ) { - wc_update_order_item_meta( $item_id, '_line_tax', wc_format_decimal( $line_tax[ $item_id ] ) ); - - $total += wc_format_decimal( $line_tax[ $item_id ] ); - } - - // Clear meta cache - wp_cache_delete( $item_id, 'order_item_meta' ); - } - } - - // Save meta - $meta_keys = isset( $_POST['meta_key'] ) ? $_POST['meta_key'] : array(); - $meta_values = isset( $_POST['meta_value'] ) ? $_POST['meta_value'] : array(); - - foreach ( $meta_keys as $id => $meta_key ) { - $meta_value = ( empty( $meta_values[ $id ] ) && ! is_numeric( $meta_values[ $id ] ) ) ? '' : $meta_values[ $id ]; - $meta_value = stripslashes( $meta_value ); - $wpdb->update( - $wpdb->prefix . "woocommerce_order_itemmeta", - array( - 'meta_key' => $meta_key, - 'meta_value' => $meta_value - ), - array( 'meta_id' => $id ), - array( '%s', '%s' ), - array( '%d' ) - ); - } - - // Update cart discount from item totals - update_post_meta( $post_id, '_cart_discount', $subtotal - $total ); - } -} \ No newline at end of file diff --git a/includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php b/includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php deleted file mode 100644 index 9821894130d..00000000000 --- a/includes/admin/post-types/meta-boxes/class-wc-meta-box-order-totals.php +++ /dev/null @@ -1,344 +0,0 @@ -ID ); - - $order = $theorder; - - $data = get_post_meta( $post->ID ); - ?> -
    -

    - -
    - shipping() ) - $shipping_methods = WC()->shipping->load_shipping_methods(); - - foreach ( $order->get_shipping_methods() as $item_id => $item ) { - $chosen_method = $item['method_id']; - $shipping_title = $item['name']; - $shipping_cost = $item['cost']; - - include( 'views/html-order-shipping.php' ); - } - - // Pre 2.1 - if ( isset( $data['_shipping_method'] ) ) { - $item_id = ''; - $chosen_method = ! empty( $data['_shipping_method'][0] ) ? $data['_shipping_method'][0] : ''; - $shipping_title = ! empty( $data['_shipping_method_title'][0] ) ? $data['_shipping_method_title'][0] : ''; - $shipping_cost = ! empty( $data['_order_shipping'][0] ) ? $data['_order_shipping'][0] : ''; - - include( 'views/html-order-shipping.php' ); - } - ?> -
    - -

    [?]

    -
    - - ID ) ?> -
    - - - -
    -

    -
    - get_results( "SELECT tax_rate_id, tax_rate_country, tax_rate_state, tax_rate_name, tax_rate_priority FROM {$wpdb->prefix}woocommerce_tax_rates ORDER BY tax_rate_name" ); - - $tax_codes = array(); - - foreach( $rates as $rate ) { - $code = array(); - - $code[] = $rate->tax_rate_country; - $code[] = $rate->tax_rate_state; - $code[] = $rate->tax_rate_name ? sanitize_title( $rate->tax_rate_name ) : 'TAX'; - $code[] = absint( $rate->tax_rate_priority ); - - $tax_codes[ $rate->tax_rate_id ] = strtoupper( implode( '-', array_filter( $code ) ) ); - } - - foreach ( $order->get_taxes() as $item_id => $item ) { - include( 'views/html-order-tax.php' ); - } - ?> -
    -

    [?]

    -
    -
    - - - -
    -

    - -
    -
    -

    - -
    - get_items( array( 'coupon' ) ); - - if ( $coupons ) { - ?> -
    -
      $item ) { - - $post_id = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM {$wpdb->posts} WHERE post_title = %s AND post_type = 'shop_coupon' AND post_status = 'publish' LIMIT 1;", $item['name'] ) ); - - $link = $post_id ? add_query_arg( array( 'post' => $post_id, 'action' => 'edit' ), admin_url( 'post.php' ) ) : add_query_arg( array( 's' => $item['name'], 'post_status' => 'all', 'post_type' => 'shop_coupon' ), admin_url( 'edit.php' ) ); - - echo '
    • ' . esc_html( $item['name'] ). '
    • '; - } - ?>
    -
    - -

    - - - - -

    - $value ) { - - if ( $item_id == 'new' ) { - - foreach ( $value as $new_key => $new_value ) { - $rate_id = absint( $order_taxes_rate_id[ $item_id ][ $new_key ] ); - - if ( $rate_id ) { - $rate = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM {$wpdb->prefix}woocommerce_tax_rates WHERE tax_rate_id = %s", $rate_id ) ); - $label = $rate->tax_rate_name ? $rate->tax_rate_name : WC()->countries->tax_or_vat(); - $compound = $rate->tax_rate_compound ? 1 : 0; - - $code = array(); - - $code[] = $rate->tax_rate_country; - $code[] = $rate->tax_rate_state; - $code[] = $rate->tax_rate_name ? $rate->tax_rate_name : 'TAX'; - $code[] = absint( $rate->tax_rate_priority ); - $code = strtoupper( implode( '-', array_filter( $code ) ) ); - } else { - $code = ''; - $label = WC()->countries->tax_or_vat(); - } - - // Add line item - $new_id = wc_add_order_item( $post_id, array( - 'order_item_name' => wc_clean( $code ), - 'order_item_type' => 'tax' - ) ); - - // Add line item meta - if ( $new_id ) { - wc_update_order_item_meta( $new_id, 'rate_id', $rate_id ); - wc_update_order_item_meta( $new_id, 'label', $label ); - wc_update_order_item_meta( $new_id, 'compound', $compound ); - - if ( isset( $order_taxes_amount[ $item_id ][ $new_key ] ) ) { - wc_update_order_item_meta( $new_id, 'tax_amount', wc_format_decimal( $order_taxes_amount[ $item_id ][ $new_key ] ) ); - - $total_tax += wc_format_decimal( $order_taxes_amount[ $item_id ][ $new_key ] ); - } - - if ( isset( $order_taxes_shipping_amount[ $item_id ][ $new_key ] ) ) { - wc_update_order_item_meta( $new_id, 'shipping_tax_amount', wc_format_decimal( $order_taxes_shipping_amount[ $item_id ][ $new_key ] ) ); - - $total_shipping_tax += wc_format_decimal( $order_taxes_shipping_amount[ $item_id ][ $new_key ] ); - } - } - } - - } else { - - $item_id = absint( $item_id ); - $rate_id = absint( $order_taxes_rate_id[ $item_id ] ); - - if ( $rate_id ) { - $rate = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM {$wpdb->prefix}woocommerce_tax_rates WHERE tax_rate_id = %s", $rate_id ) ); - $label = $rate->tax_rate_name ? $rate->tax_rate_name : WC()->countries->tax_or_vat(); - $compound = $rate->tax_rate_compound ? 1 : 0; - - $code = array(); - - $code[] = $rate->tax_rate_country; - $code[] = $rate->tax_rate_state; - $code[] = $rate->tax_rate_name ? $rate->tax_rate_name : 'TAX'; - $code[] = absint( $rate->tax_rate_priority ); - $code = strtoupper( implode( '-', array_filter( $code ) ) ); - } else { - $code = ''; - $label = WC()->countries->tax_or_vat(); - } - - $wpdb->update( - $wpdb->prefix . "woocommerce_order_items", - array( 'order_item_name' => wc_clean( $code ) ), - array( 'order_item_id' => $item_id ), - array( '%s' ), - array( '%d' ) - ); - - wc_update_order_item_meta( $item_id, 'rate_id', $rate_id ); - wc_update_order_item_meta( $item_id, 'label', $label ); - wc_update_order_item_meta( $item_id, 'compound', $compound ); - - if ( isset( $order_taxes_amount[ $item_id ] ) ) { - wc_update_order_item_meta( $item_id, 'tax_amount', wc_format_decimal( $order_taxes_amount[ $item_id ] ) ); - - $total_tax += wc_format_decimal( $order_taxes_amount[ $item_id ] ); - } - - if ( isset( $order_taxes_shipping_amount[ $item_id ] ) ) { - wc_update_order_item_meta( $item_id, 'shipping_tax_amount', wc_format_decimal( $order_taxes_shipping_amount[ $item_id ] ) ); - - $total_shipping_tax += wc_format_decimal( $order_taxes_shipping_amount[ $item_id ] ); - } - } - } - } - - // Update totals - update_post_meta( $post_id, '_order_tax', wc_round_tax_total( $total_tax ) ); - update_post_meta( $post_id, '_order_shipping_tax', wc_round_tax_total( $total_shipping_tax ) ); - update_post_meta( $post_id, '_order_discount', wc_format_decimal( $_POST['_order_discount'] ) ); - update_post_meta( $post_id, '_order_total', wc_format_decimal( $_POST['_order_total'] ) ); - - // Shipping Rows - $order_shipping = 0; - - if ( isset( $_POST['shipping_method_id'] ) ) { - - $get_values = array( 'shipping_method_id', 'shipping_method_title', 'shipping_method', 'shipping_cost' ); - - foreach( $get_values as $value ) - $$value = isset( $_POST[ $value ] ) ? $_POST[ $value ] : array(); - - foreach( $shipping_method_id as $item_id => $value ) { - - if ( $item_id == 'new' ) { - - foreach ( $value as $new_key => $new_value ) { - $method_id = wc_clean( $shipping_method[ $item_id ][ $new_key ] ); - $method_title = wc_clean( $shipping_method_title[ $item_id ][ $new_key ] ); - $cost = wc_format_decimal( $shipping_cost[ $item_id ][ $new_key ] ); - - $new_id = wc_add_order_item( $post_id, array( - 'order_item_name' => $method_title, - 'order_item_type' => 'shipping' - ) ); - - if ( $new_id ) { - wc_add_order_item_meta( $new_id, 'method_id', $method_id ); - wc_add_order_item_meta( $new_id, 'cost', $cost ); - } - - $order_shipping += $cost; - } - - } else { - - $item_id = absint( $item_id ); - $method_id = wc_clean( $shipping_method[ $item_id ] ); - $method_title = wc_clean( $shipping_method_title[ $item_id ] ); - $cost = wc_format_decimal( $shipping_cost[ $item_id ] ); - - $wpdb->update( - $wpdb->prefix . "woocommerce_order_items", - array( 'order_item_name' => $method_title ), - array( 'order_item_id' => $item_id ), - array( '%s' ), - array( '%d' ) - ); - - wc_update_order_item_meta( $item_id, 'method_id', $method_id ); - wc_update_order_item_meta( $item_id, 'cost', $cost ); - - $order_shipping += $cost; - } - } - } - - // Delete rows - if ( isset( $_POST['delete_order_item_id'] ) ) { - $delete_ids = $_POST['delete_order_item_id']; - - foreach ( $delete_ids as $id ) - wc_delete_order_item( absint( $id ) ); - } - - delete_post_meta( $post_id, '_shipping_method' ); - delete_post_meta( $post_id, '_shipping_method_title' ); - update_post_meta( $post_id, '_order_shipping', $order_shipping ); - } -} \ No newline at end of file diff --git a/includes/admin/post-types/meta-boxes/class-wc-meta-box-product-short-description.php b/includes/admin/post-types/meta-boxes/class-wc-meta-box-product-short-description.php deleted file mode 100644 index ff8ff7c491d..00000000000 --- a/includes/admin/post-types/meta-boxes/class-wc-meta-box-product-short-description.php +++ /dev/null @@ -1,37 +0,0 @@ - 'excerpt', - 'quicktags' => array( 'buttons' => 'em,strong,link' ), - 'tinymce' => array( - 'theme_advanced_buttons1' => 'bold,italic,link,unlink', - 'theme_advanced_buttons2' => '', - ), - 'editor_css' => '' - ); - - wp_editor( htmlspecialchars_decode( $post->post_excerpt ), 'excerpt', $settings ); - } - -} diff --git a/includes/admin/post-types/meta-boxes/views/html-order-fee.php b/includes/admin/post-types/meta-boxes/views/html-order-fee.php deleted file mode 100644 index 94252ac7b1d..00000000000 --- a/includes/admin/post-types/meta-boxes/views/html-order-fee.php +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - -
    - -
    - - - - - - -
    - -
    - - - - - - 1 - - -
    - -
    - - - - - - -
    - -
    - - - - - - - Edit - - - \ No newline at end of file diff --git a/includes/admin/post-types/meta-boxes/views/html-order-item.php b/includes/admin/post-types/meta-boxes/views/html-order-item.php deleted file mode 100644 index a5a642063fb..00000000000 --- a/includes/admin/post-types/meta-boxes/views/html-order-item.php +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - get_image( 'shop_thumbnail', array( 'title' => '' ) ); ?> - - - - - - - get_sku() ) echo esc_html( $_product->get_sku() ) . ' – '; ?> - - - - - - - - - - - - variation_data ) ) - echo '
    ' . wc_get_formatted_variation( $_product->variation_data, true ); - ?> - -
    - has_meta( $item_id ) ) { - echo ''; - foreach ( $metadata as $meta ) { - - // Skip hidden core fields - if ( in_array( $meta['meta_key'], apply_filters( 'woocommerce_hidden_order_itemmeta', array( - '_qty', - '_tax_class', - '_product_id', - '_variation_id', - '_line_subtotal', - '_line_subtotal_tax', - '_line_total', - '_line_tax', - ) ) ) ) continue; - - // Skip serialised meta - if ( is_serialized( $meta['meta_value'] ) ) - continue; - - echo ''; - } - echo '
    ' . wp_kses_post( $meta['meta_key'] ) . ':' . wp_kses_post( wpautop( urldecode( $meta['meta_value'] ) ) ) . '
    '; - } - ?> -
    - - - - - - - -
    - -
    - - - - - -
    - -
    - - - - -
    - ' . wc_price( $item['line_subtotal'] ) . ' '; - - echo wc_price( $item['line_total'] ); - } - ?> -
    - - - - - - -
    - ' . wc_price( wc_round_tax_total( $item['line_subtotal_tax'] ) ) . ' '; - - echo wc_price( wc_round_tax_total( $item['line_tax'] ) ); - } - ?> -
    - - - - - - - Edit - - - \ No newline at end of file diff --git a/includes/admin/post-types/meta-boxes/views/html-order-shipping.php b/includes/admin/post-types/meta-boxes/views/html-order-shipping.php deleted file mode 100644 index 17c971abcbf..00000000000 --- a/includes/admin/post-types/meta-boxes/views/html-order-shipping.php +++ /dev/null @@ -1,44 +0,0 @@ - -
    -

    - - -

    -

    - -

    -

    - -

    - - × -
    -
    diff --git a/includes/admin/post-types/meta-boxes/views/html-order-tax.php b/includes/admin/post-types/meta-boxes/views/html-order-tax.php deleted file mode 100644 index f2083312460..00000000000 --- a/includes/admin/post-types/meta-boxes/views/html-order-tax.php +++ /dev/null @@ -1,26 +0,0 @@ - -
    -

    - - -

    -

    - - -

    -

    - - -

    - × -
    -
    \ No newline at end of file diff --git a/includes/admin/reports/class-wc-admin-report.php b/includes/admin/reports/class-wc-admin-report.php index ba86dfffd67..7dc8afc40da 100644 --- a/includes/admin/reports/class-wc-admin-report.php +++ b/includes/admin/reports/class-wc-admin-report.php @@ -1,22 +1,22 @@ array( - * 'type' => 'meta', - * 'function' => 'SUM', - * 'name' => 'total_sales' + * 'type' => 'meta', + * 'function' => 'SUM', + * 'name' => 'total_sales' * ) * * @param array $args - * @return array of results + * @return array|string depending on query_type */ public function get_order_report_data( $args = array() ) { global $wpdb; @@ -41,21 +41,23 @@ class WC_Admin_Report { 'data' => array(), 'where' => array(), 'where_meta' => array(), - 'query_type' => 'get_row', + 'query_type' => 'get_row', 'group_by' => '', 'order_by' => '', 'limit' => '', 'filter_range' => false, 'nocache' => false, - 'debug' => false + 'debug' => false, + 'order_types' => wc_get_order_types( 'reports' ) ); - $args = wp_parse_args( $args, $defaults ); + $args = apply_filters( 'woocommerce_reports_get_order_report_data_args', wp_parse_args( $args, $defaults ) ); extract( $args ); - if ( empty( $data ) ) + if ( empty( $data ) ) { return false; + } $select = array(); @@ -65,19 +67,21 @@ class WC_Admin_Report { if ( isset( $value['distinct'] ) ) $distinct = 'DISTINCT'; - if ( $value['type'] == 'meta' ) + if ( $value['type'] == 'meta' ) { $get_key = "meta_{$key}.meta_value"; - elseif( $value['type'] == 'post_data' ) + } elseif( $value['type'] == 'post_data' ) { $get_key = "posts.{$key}"; - elseif( $value['type'] == 'order_item_meta' ) + } elseif( $value['type'] == 'order_item_meta' ) { $get_key = "order_item_meta_{$key}.meta_value"; - elseif( $value['type'] == 'order_item' ) + } elseif( $value['type'] == 'order_item' ) { $get_key = "order_items.{$key}"; + } - if ( $value['function'] ) + if ( $value['function'] ) { $get = "{$value['function']}({$distinct} {$get_key})"; - else + } else { $get = "{$distinct} {$get_key}"; + } $select[] = "{$get} as {$value['name']}"; } @@ -86,38 +90,39 @@ class WC_Admin_Report { $query['from'] = "FROM {$wpdb->posts} AS posts"; // Joins - $joins = array(); - $joins['rel'] = "LEFT JOIN {$wpdb->term_relationships} AS rel ON posts.ID=rel.object_ID"; - $joins['tax'] = "LEFT JOIN {$wpdb->term_taxonomy} AS tax USING( term_taxonomy_id )"; - $joins['term'] = "LEFT JOIN {$wpdb->terms} AS term USING( term_id )"; + $joins = array(); foreach ( $data as $key => $value ) { + if ( $value['type'] == 'meta' ) { $joins["meta_{$key}"] = "LEFT JOIN {$wpdb->postmeta} AS meta_{$key} ON posts.ID = meta_{$key}.post_id"; } elseif ( $value['type'] == 'order_item_meta' ) { - $joins["order_items"] = "LEFT JOIN {$wpdb->prefix}woocommerce_order_items AS order_items ON posts.ID = order_id"; + $joins["order_items"] = "LEFT JOIN {$wpdb->prefix}woocommerce_order_items AS order_items ON posts.ID = order_items.order_id"; $joins["order_item_meta_{$key}"] = "LEFT JOIN {$wpdb->prefix}woocommerce_order_itemmeta AS order_item_meta_{$key} ON order_items.order_item_id = order_item_meta_{$key}.order_item_id"; } elseif ( $value['type'] == 'order_item' ) { - $joins["order_items"] = "LEFT JOIN {$wpdb->prefix}woocommerce_order_items AS order_items ON posts.ID = order_id"; + $joins["order_items"] = "LEFT JOIN {$wpdb->prefix}woocommerce_order_items AS order_items ON posts.ID = order_items.order_id"; } } if ( ! empty( $where_meta ) ) { - foreach ( $where_meta as $value ) { - if ( ! is_array( $value ) ) - continue; - $key = is_array( $value['meta_key'] ) ? $value['meta_key'][0] : $value['meta_key']; + foreach ( $where_meta as $value ) { + + if ( ! is_array( $value ) ) { + continue; + } + + $key = is_array( $value['meta_key'] ) ? $value['meta_key'][0] . '_array' : $value['meta_key']; if ( isset( $value['type'] ) && $value['type'] == 'order_item_meta' ) { - $joins["order_items"] = "LEFT JOIN {$wpdb->prefix}woocommerce_order_items AS order_items ON posts.ID = order_id"; + $joins["order_items"] = "LEFT JOIN {$wpdb->prefix}woocommerce_order_items AS order_items ON posts.ID = order_items.order_id"; $joins["order_item_meta_{$key}"] = "LEFT JOIN {$wpdb->prefix}woocommerce_order_itemmeta AS order_item_meta_{$key} ON order_items.order_item_id = order_item_meta_{$key}.order_item_id"; } else { @@ -130,13 +135,12 @@ class WC_Admin_Report { $query['join'] = implode( ' ', $joins ); $query['where'] = " - WHERE posts.post_type = 'shop_order' - AND posts.post_status = 'publish' - AND tax.taxonomy = 'shop_order_status' - AND term.slug IN ('" . implode( "','", apply_filters( 'woocommerce_reports_order_statuses', array( 'completed', 'processing', 'on-hold' ) ) ) . "') + WHERE posts.post_type IN ( '" . implode( "','", $order_types ) . "' ) + AND posts.post_status IN ( 'wc-" . implode( "','wc-", apply_filters( 'woocommerce_reports_order_statuses', array( 'completed', 'processing', 'on-hold' ) ) ) . "') "; if ( $filter_range ) { + $query['where'] .= " AND post_date >= '" . date('Y-m-d', $this->start_date ) . "' AND post_date < '" . date('Y-m-d', strtotime( '+1 DAY', $this->end_date ) ) . "' @@ -144,6 +148,7 @@ class WC_Admin_Report { } foreach ( $data as $key => $value ) { + if ( $value['type'] == 'meta' ) { $query['where'] .= " AND meta_{$key}.meta_key = '{$key}'"; @@ -157,41 +162,53 @@ class WC_Admin_Report { } if ( ! empty( $where_meta ) ) { + $relation = isset( $where_meta['relation'] ) ? $where_meta['relation'] : 'AND'; $query['where'] .= " AND ("; foreach ( $where_meta as $index => $value ) { - if ( ! is_array( $value ) ) - continue; - $key = is_array( $value['meta_key'] ) ? $value['meta_key'][0] : $value['meta_key']; + if ( ! is_array( $value ) ) { + continue; + } + + $key = is_array( $value['meta_key'] ) ? $value['meta_key'][0] . '_array' : $value['meta_key']; if ( strtolower( $value['operator'] ) == 'in' ) { - if ( is_array( $value['meta_value'] ) ) + + if ( is_array( $value['meta_value'] ) ) { $value['meta_value'] = implode( "','", $value['meta_value'] ); - if ( ! empty( $value['meta_value'] ) ) + } + + if ( ! empty( $value['meta_value'] ) ) { $where_value = "IN ('{$value['meta_value']}')"; + } } else { $where_value = "{$value['operator']} '{$value['meta_value']}'"; } if ( ! empty( $where_value ) ) { - if ( $index > 0 ) + if ( $index > 0 ) { $query['where'] .= ' ' . $relation; + } if ( isset( $value['type'] ) && $value['type'] == 'order_item_meta' ) { - if ( is_array( $value['meta_key'] ) ) + + if ( is_array( $value['meta_key'] ) ) { $query['where'] .= " ( order_item_meta_{$key}.meta_key IN ('" . implode( "','", $value['meta_key'] ) . "')"; - else + } else { $query['where'] .= " ( order_item_meta_{$key}.meta_key = '{$value['meta_key']}'"; + } $query['where'] .= " AND order_item_meta_{$key}.meta_value {$where_value} )"; } else { - if ( is_array( $value['meta_key'] ) ) + + if ( is_array( $value['meta_key'] ) ) { $query['where'] .= " ( meta_{$key}.meta_key IN ('" . implode( "','", $value['meta_key'] ) . "')"; - else + } else { $query['where'] .= " ( meta_{$key}.meta_key = '{$value['meta_key']}'"; + } $query['where'] .= " AND meta_{$key}.meta_value {$where_value} )"; } @@ -202,12 +219,18 @@ class WC_Admin_Report { } if ( ! empty( $where ) ) { + foreach ( $where as $value ) { + if ( strtolower( $value['operator'] ) == 'in' ) { - if ( is_array( $value['value'] ) ) + + if ( is_array( $value['value'] ) ) { $value['value'] = implode( "','", $value['value'] ); - if ( ! empty( $value['value'] ) ) + } + + if ( ! empty( $value['value'] ) ) { $where_value = "IN ('{$value['value']}')"; + } } else { $where_value = "{$value['operator']} '{$value['value']}'"; } @@ -229,28 +252,22 @@ class WC_Admin_Report { $query['limit'] = "LIMIT {$limit}"; } - $query = implode( ' ', $query ); - $query_hash = md5( $query_type . $query ); + $query = apply_filters( 'woocommerce_reports_get_order_report_query', $query ); + $query = implode( ' ', $query ); + $query_hash = md5( $query_type . $query ); + $cached_results = get_transient( strtolower( get_class( $this ) ) ); - if ( $debug ) + if ( $debug ) { var_dump( $query ); - - if ( $debug || $nocache || ( false === ( $result = get_transient( 'wc_report_' . $query_hash ) ) ) ) { - $result = apply_filters( 'woocommerce_reports_get_order_report_data', $wpdb->$query_type( $query ), $data ); - - if ( $filter_range ) { - if ( date('Y-m-d', strtotime( $this->end_date ) ) == date('Y-m-d', current_time( 'timestamp' ) ) ) { - $expiration = 60 * 60 * 1; // 1 hour - } else { - $expiration = 60 * 60 * 24; // 24 hour - } - } else { - $expiration = 60 * 60 * 24; // 24 hour - } - - set_transient( 'wc_report_' . $query_hash, $result, $expiration ); } + if ( $debug || $nocache || false === $cached_results || ! isset( $cached_results[ $query_hash ] ) ) { + $cached_results[ $query_hash ] = apply_filters( 'woocommerce_reports_get_order_report_data', $wpdb->$query_type( $query ), $data ); + set_transient( strtolower( get_class( $this ) ), $cached_results, DAY_IN_SECONDS ); + } + + $result = $cached_results[ $query_hash ]; + return $result; } @@ -266,40 +283,50 @@ class WC_Admin_Report { * @return string */ public function prepare_chart_data( $data, $date_key, $data_key, $interval, $start_date, $group_by ) { + $prepared_data = array(); + $time = ''; // Ensure all days (or months) have values first in this range for ( $i = 0; $i <= $interval; $i ++ ) { + switch ( $group_by ) { + case 'day' : - $time = strtotime( date( 'Ymd', strtotime( "+{$i} DAY", $start_date ) ) ) * 1000; + $time = strtotime( date( 'Ymd', strtotime( "+{$i} DAY", $start_date ) ) ) . '000'; break; + case 'month' : - $time = strtotime( date( 'Ym', strtotime( "+{$i} MONTH", $start_date ) ) . '01' ) * 1000; + $time = strtotime( date( 'Ym', strtotime( "+{$i} MONTH", $start_date ) ) . '01' ) . '000'; break; } - if ( ! isset( $prepared_data[ $time ] ) ) + if ( ! isset( $prepared_data[ $time ] ) ) { $prepared_data[ $time ] = array( esc_js( $time ), 0 ); + } } foreach ( $data as $d ) { switch ( $group_by ) { + case 'day' : - $time = strtotime( date( 'Ymd', strtotime( $d->$date_key ) ) ) * 1000; + $time = strtotime( date( 'Ymd', strtotime( $d->$date_key ) ) ) . '000'; break; + case 'month' : - $time = strtotime( date( 'Ym', strtotime( $d->$date_key ) ) . '01' ) * 1000; + $time = strtotime( date( 'Ym', strtotime( $d->$date_key ) ) . '01' ) . '000'; break; } - if ( ! isset( $prepared_data[ $time ] ) ) + if ( ! isset( $prepared_data[ $time ] ) ) { continue; + } - if ( $data_key ) + if ( $data_key ) { $prepared_data[ $time ][1] += $d->$data_key; - else + } else { $prepared_data[ $time ][1] ++; + } } return $prepared_data; @@ -355,6 +382,7 @@ class WC_Admin_Report { 'filter_range' => false ) ); } else { + $data = $this->get_order_report_data( array( 'data' => array( '_order_total' => array( @@ -382,8 +410,9 @@ class WC_Admin_Report { } $total = 0; - foreach ( $data as $d ) + foreach ( $data as $d ) { $total += $d->sparkline_value; + } if ( $type == 'sales' ) { $tooltip = sprintf( __( 'Sold %s worth in the last %d days', 'woocommerce' ), strip_tags( wc_price( $total ) ), $days ); @@ -402,75 +431,90 @@ class WC_Admin_Report { * @param string $current_range */ public function calculate_current_range( $current_range ) { + switch ( $current_range ) { + case 'custom' : $this->start_date = strtotime( sanitize_text_field( $_GET['start_date'] ) ); $this->end_date = strtotime( 'midnight', strtotime( sanitize_text_field( $_GET['end_date'] ) ) ); - if ( ! $this->end_date ) + if ( ! $this->end_date ) { $this->end_date = current_time('timestamp'); + } $interval = 0; $min_date = $this->start_date; + while ( ( $min_date = strtotime( "+1 MONTH", $min_date ) ) <= $this->end_date ) { - $interval ++; + $interval ++; } // 3 months max for day view - if ( $interval > 3 ) - $this->chart_groupby = 'month'; - else - $this->chart_groupby = 'day'; + if ( $interval > 3 ) { + $this->chart_groupby = 'month'; + } else { + $this->chart_groupby = 'day'; + } break; + case 'year' : $this->start_date = strtotime( date( 'Y-01-01', current_time('timestamp') ) ); $this->end_date = strtotime( 'midnight', current_time( 'timestamp' ) ); $this->chart_groupby = 'month'; break; + case 'last_month' : - $this->start_date = strtotime( date( 'Y-m-01', strtotime( '-1 MONTH', current_time('timestamp') ) ) ); - $this->end_date = strtotime( date( 'Y-m-t', strtotime( '-1 MONTH', current_time('timestamp') ) ) ); - $this->chart_groupby = 'day'; + $this->start_date = strtotime( date( 'Y-m-01', strtotime( '-1 MONTH', current_time('timestamp') ) ) ); + $this->end_date = strtotime( date( 'Y-m-t', strtotime( '-1 MONTH', current_time('timestamp') ) ) ); + $this->chart_groupby = 'day'; break; + case 'month' : - $this->start_date = strtotime( date( 'Y-m-01', current_time('timestamp') ) ); - $this->end_date = strtotime( 'midnight', current_time( 'timestamp' ) ); - $this->chart_groupby = 'day'; + $this->start_date = strtotime( date( 'Y-m-01', current_time('timestamp') ) ); + $this->end_date = strtotime( 'midnight', current_time( 'timestamp' ) ); + $this->chart_groupby = 'day'; break; + case '7day' : - $this->start_date = strtotime( '-6 days', current_time( 'timestamp' ) ); - $this->end_date = strtotime( 'midnight', current_time( 'timestamp' ) ); - $this->chart_groupby = 'day'; + $this->start_date = strtotime( '-6 days', current_time( 'timestamp' ) ); + $this->end_date = strtotime( 'midnight', current_time( 'timestamp' ) ); + $this->chart_groupby = 'day'; break; } // Group by switch ( $this->chart_groupby ) { + case 'day' : - $this->group_by_query = 'YEAR(post_date), MONTH(post_date), DAY(post_date)'; - $this->chart_interval = ceil( max( 0, ( $this->end_date - $this->start_date ) / ( 60 * 60 * 24 ) ) ); - $this->barwidth = 60 * 60 * 24 * 1000; + $this->group_by_query = 'YEAR(post_date), MONTH(post_date), DAY(post_date)'; + $this->chart_interval = ceil( max( 0, ( $this->end_date - $this->start_date ) / ( 60 * 60 * 24 ) ) ); + $this->barwidth = 60 * 60 * 24 * 1000; break; + case 'month' : - $this->group_by_query = 'YEAR(post_date), MONTH(post_date)'; + $this->group_by_query = 'YEAR(post_date), MONTH(post_date)'; $this->chart_interval = 0; $min_date = $this->start_date; + while ( ( $min_date = strtotime( "+1 MONTH", $min_date ) ) <= $this->end_date ) { $this->chart_interval ++; } - $this->barwidth = 60 * 60 * 24 * 7 * 4 * 1000; + + $this->barwidth = 60 * 60 * 24 * 7 * 4 * 1000; break; } } /** * Get the main chart + * * @return string */ public function get_main_chart() {} /** * Get the legend for the main chart sidebar + * * @return array */ public function get_chart_legend() { @@ -479,6 +523,7 @@ class WC_Admin_Report { /** * [get_chart_widgets description] + * * @return array */ public function get_chart_widgets() { diff --git a/includes/admin/reports/class-wc-report-coupon-usage.php b/includes/admin/reports/class-wc-report-coupon-usage.php index 6731e25a51f..3ff804ba78e 100644 --- a/includes/admin/reports/class-wc-report-coupon-usage.php +++ b/includes/admin/reports/class-wc-report-coupon-usage.php @@ -1,29 +1,39 @@ coupon_codes = array_filter( array_map( 'sanitize_text_field', $_GET['coupon_codes'] ) ); - elseif ( isset( $_GET['coupon_codes'] ) ) + } elseif ( isset( $_GET['coupon_codes'] ) ) { $this->coupon_codes = array_filter( array( sanitize_text_field( $_GET['coupon_codes'] ) ) ); + } } /** * Get the legend for the main chart sidebar + * * @return array */ public function get_chart_legend() { - $legend = array(); - $total_discount = $this->get_order_report_data( array( + $legend = array(); + + $total_discount = $this->get_order_report_data( array( 'data' => array( 'discount_amount' => array( 'type' => 'order_item_meta', @@ -44,7 +54,7 @@ class WC_Report_Coupon_Usage extends WC_Admin_Report { 'filter_range' => true ) ); - $total_coupons = absint( $this->get_order_report_data( array( + $total_coupons = absint( $this->get_order_report_data( array( 'data' => array( 'order_item_name' => array( 'type' => 'order_item', @@ -84,7 +94,6 @@ class WC_Report_Coupon_Usage extends WC_Admin_Report { * Output the report */ public function output_report() { - global $woocommerce, $wpdb, $wp_locale; $ranges = array( 'year' => __( 'Year', 'woocommerce' ), @@ -98,10 +107,11 @@ class WC_Report_Coupon_Usage extends WC_Admin_Report { 'coupon_count' => '#d4d9dc', ); - $current_range = ! empty( $_GET['range'] ) ? $_GET['range'] : '7day'; + $current_range = ! empty( $_GET['range'] ) ? sanitize_text_field( $_GET['range'] ) : '7day'; - if ( ! in_array( $current_range, array( 'custom', 'year', 'last_month', 'month', '7day' ) ) ) + if ( ! in_array( $current_range, array( 'custom', 'year', 'last_month', 'month', '7day' ) ) ) { $current_range = '7day'; + } $this->calculate_current_range( $current_range ); @@ -110,12 +120,12 @@ class WC_Report_Coupon_Usage extends WC_Admin_Report { /** * [get_chart_widgets description] + * * @return array */ public function get_chart_widgets() { $widgets = array(); - $widgets[] = array( 'title' => '', 'callback' => array( $this, 'coupons_widget' ) @@ -126,59 +136,62 @@ class WC_Report_Coupon_Usage extends WC_Admin_Report { /** * Product selection - * @return void */ public function coupons_widget() { + ?>

    - + + coupon_codes ), true, false ) . '>' . $coupon . ''; } - } else - echo ''; - ?> - - - - - - - - + ?> + + + + + + + + + + + +
    -

    @@ -263,6 +276,7 @@ class WC_Report_Coupon_Usage extends WC_Admin_Report { ) ); if ( $most_discount ) { + foreach ( $most_discount as $coupon ) { echo ' ' . wc_price( $coupon->discount_amount ) . ' @@ -303,11 +317,11 @@ class WC_Report_Coupon_Usage extends WC_Admin_Report { * Output an export link */ public function get_export_button() { - $current_range = ! empty( $_GET['range'] ) ? $_GET['range'] : '7day'; + $current_range = ! empty( $_GET['range'] ) ? sanitize_text_field( $_GET['range'] ) : '7day'; ?> chart_groupby == 'day' ) echo '%d %b'; else echo '%b'; ?>", monthNames: month_abbrev ) ) ?>, tickLength: 1, minTickSize: [1, "chart_groupby; ?>"], font: { - color: "#aaa" - } + color: "#aaa" + } } ], - yaxes: [ - { - min: 0, - minTickSize: 1, - tickDecimals: 0, - color: '#ecf0f1', - font: { color: "#aaa" } - }, - { - position: "right", - min: 0, - tickDecimals: 2, - alignTicksWithAxis: 1, - color: 'transparent', - font: { color: "#aaa" } - } - ], - } - ); + yaxes: [ + { + min: 0, + minTickSize: 1, + tickDecimals: 0, + color: '#ecf0f1', + font: { color: "#aaa" } + }, + { + position: "right", + min: 0, + tickDecimals: 2, + alignTicksWithAxis: 1, + color: 'transparent', + font: { color: "#aaa" } + } + ], + } + ); - jQuery('.chart-placeholder').resize(); + jQuery('.chart-placeholder').resize(); } drawGraph(); @@ -499,4 +514,4 @@ class WC_Report_Coupon_Usage extends WC_Admin_Report { __( 'Customer', 'woocommerce' ), @@ -59,7 +61,7 @@ class WC_Report_Customer_List extends WP_List_Table { /** * column_default function. - * @access public + * * @param mixed $user * @param string $column_name * @return int|string @@ -69,21 +71,24 @@ class WC_Report_Customer_List extends WP_List_Table { global $wpdb; switch( $column_name ) { + case 'customer_name' : if ( $user->last_name && $user->first_name ) { return $user->last_name . ', ' . $user->first_name; } else { return '-'; } + case 'username' : return $user->user_login; break; + case 'location' : $state_code = get_user_meta( $user->ID, 'billing_state', true ); $country_code = get_user_meta( $user->ID, 'billing_country', true ); - $state = isset( WC()->countries->states[ $country_code ][ $state_code ] ) ? WC()->countries->states[ $country_code ][ $state_code ] : $state_code; + $state = isset( WC()->countries->states[ $country_code ][ $state_code ] ) ? WC()->countries->states[ $country_code ][ $state_code ] : $state_code; $country = isset( WC()->countries->countries[ $country_code ] ) ? WC()->countries->countries[ $country_code ] : $country_code; $value = ''; @@ -100,8 +105,10 @@ class WC_Report_Customer_List extends WP_List_Table { return '-'; } break; + case 'email' : return '' . $user->user_email . ''; + case 'spent' : if ( ! $spent = get_user_meta( $user->ID, '_money_spent', true ) ) { @@ -110,17 +117,12 @@ class WC_Report_Customer_List extends WP_List_Table { LEFT JOIN {$wpdb->postmeta} AS meta ON posts.ID = meta.post_id LEFT JOIN {$wpdb->postmeta} AS meta2 ON posts.ID = meta2.post_id - LEFT JOIN {$wpdb->term_relationships} AS rel ON posts.ID=rel.object_ID - LEFT JOIN {$wpdb->term_taxonomy} AS tax USING( term_taxonomy_id ) - LEFT JOIN {$wpdb->terms} AS term USING( term_id ) - WHERE meta.meta_key = '_customer_user' - AND meta.meta_value = $user->ID - AND posts.post_type = 'shop_order' - AND posts.post_status = 'publish' - AND tax.taxonomy = 'shop_order_status' - AND term.slug IN ( 'completed' ) - AND meta2.meta_key = '_order_total' + WHERE meta.meta_key = '_customer_user' + AND meta.meta_value = $user->ID + AND posts.post_type IN ('" . implode( "','", wc_get_order_types( 'reports' ) ) . "') + AND posts.post_status = 'wc-completed' + AND meta2.meta_key = '_order_total' " ); update_user_meta( $user->ID, '_money_spent', $spent ); @@ -128,6 +130,7 @@ class WC_Report_Customer_List extends WP_List_Table { return wc_price( $spent ); break; + case 'orders' : if ( ! $count = get_user_meta( $user->ID, '_order_count', true ) ) { @@ -135,16 +138,11 @@ class WC_Report_Customer_List extends WP_List_Table { FROM $wpdb->posts as posts LEFT JOIN {$wpdb->postmeta} AS meta ON posts.ID = meta.post_id - LEFT JOIN {$wpdb->term_relationships} AS rel ON posts.ID=rel.object_ID - LEFT JOIN {$wpdb->term_taxonomy} AS tax USING( term_taxonomy_id ) - LEFT JOIN {$wpdb->terms} AS term USING( term_id ) - WHERE meta.meta_key = '_customer_user' - AND posts.post_type = 'shop_order' - AND posts.post_status = 'publish' - AND tax.taxonomy = 'shop_order_status' - AND term.slug IN ( 'completed' ) - AND meta_value = $user->ID + WHERE meta.meta_key = '_customer_user' + AND posts.post_type IN ('" . implode( "','", wc_get_order_types( 'order-count' ) ) . "') + AND posts.post_status = 'wc-completed' + AND meta_value = $user->ID " ); update_user_meta( $user->ID, '_order_count', $count ); @@ -152,6 +150,7 @@ class WC_Report_Customer_List extends WP_List_Table { return absint( $count ); break; + case 'last_order' : $order_ids = get_posts( array( @@ -159,6 +158,7 @@ class WC_Report_Customer_List extends WP_List_Table { 'post_type' => 'shop_order', 'orderby' => 'date', 'order' => 'desc', + 'post_status' => array_keys( wc_get_order_statuses() ), 'meta_query' => array( array( 'key' => '_customer_user', @@ -169,12 +169,13 @@ class WC_Report_Customer_List extends WP_List_Table { ) ); if ( $order_ids ) { - $order = new WC_Order( $order_ids[0] ); + $order = wc_get_order( $order_ids[0] ); - echo '' . $order->get_order_number() . ' – ' . date_i18n( get_option( 'date_format', strtotime( $order->order_date ) ) ); + echo '' . $order->get_order_number() . ' – ' . date_i18n( get_option( 'date_format' ), strtotime( $order->order_date ) ); } else echo '-'; break; + case 'user_actions' : ?>

    admin_url( 'user-edit.php?user_id=' . $user->ID ), - 'name' => __( 'Edit', 'woocommerce' ), - 'action' => "edit" + 'url' => admin_url( 'user-edit.php?user_id=' . $user->ID ), + 'name' => __( 'Edit', 'woocommerce' ), + 'action' => "edit" ); $actions['view'] = array( - 'url' => admin_url( 'edit.php?post_type=shop_order&_customer_user=' . $user->ID ), - 'name' => __( 'View orders', 'woocommerce' ), - 'action' => "view" + 'url' => admin_url( 'edit.php?post_type=shop_order&_customer_user=' . $user->ID ), + 'name' => __( 'View orders', 'woocommerce' ), + 'action' => "view" ); $order_ids = get_posts( array( 'posts_per_page' => 1, - 'post_type' => 'shop_order', + 'post_type' => wc_get_order_types(), + 'post_status' => array_keys( wc_get_order_statuses() ), 'meta_query' => array( array( 'key' => '_customer_user', @@ -212,10 +214,11 @@ class WC_Report_Customer_List extends WP_List_Table { ) ); if ( $order_ids ) { + $actions['link'] = array( - 'url' => wp_nonce_url( add_query_arg( 'link_orders', $user->ID ), 'link_orders' ), - 'name' => __( 'Link previous orders', 'woocommerce' ), - 'action' => "link" + 'url' => wp_nonce_url( add_query_arg( 'link_orders', $user->ID ), 'link_orders' ), + 'name' => __( 'Link previous orders', 'woocommerce' ), + 'action' => "link" ); } @@ -234,10 +237,8 @@ class WC_Report_Customer_List extends WP_List_Table { /** * get_columns function. - * - * @access public */ - function get_columns(){ + public function get_columns(){ $columns = array( 'customer_name' => __( 'Name (Last, First)', 'woocommerce' ), 'username' => __( 'Username', 'woocommerce' ), @@ -275,8 +276,6 @@ class WC_Report_Customer_List extends WP_List_Table { /** * prepare_items function. - * - * @access public */ public function prepare_items() { global $wpdb; diff --git a/includes/admin/reports/class-wc-report-customers.php b/includes/admin/reports/class-wc-report-customers.php index 4bd4f6b701c..b5f5d4ac225 100644 --- a/includes/admin/reports/class-wc-report-customers.php +++ b/includes/admin/reports/class-wc-report-customers.php @@ -1,11 +1,19 @@ ", - }, - legend: { - show: false - } - } - ); + pie: { + show: true, + radius: 1, + innerRadius: 0.6, + label: { + show: false + } + }, + enable_tooltip: true, + append_tooltip: "", + }, + legend: { + show: false + } + } + ); - jQuery('.chart-placeholder.customers_vs_guests').resize(); + jQuery('.chart-placeholder.customers_vs_guests').resize(); }); __( 'Year', 'woocommerce' ), @@ -147,10 +154,11 @@ class WC_Report_Customers extends WC_Admin_Report { 'guests' => '#8fdece' ); - $current_range = ! empty( $_GET['range'] ) ? $_GET['range'] : '7day'; + $current_range = ! empty( $_GET['range'] ) ? sanitize_text_field( $_GET['range'] ) : '7day'; - if ( ! in_array( $current_range, array( 'custom', 'year', 'last_month', 'month', '7day' ) ) ) + if ( ! in_array( $current_range, array( 'custom', 'year', 'last_month', 'month', '7day' ) ) ) { $current_range = '7day'; + } $this->calculate_current_range( $current_range ); @@ -178,8 +186,9 @@ class WC_Report_Customers extends WC_Admin_Report { $this->customers = $users_query->get_results(); foreach ( $this->customers as $key => $customer ) { - if ( strtotime( $customer->user_registered ) < $this->start_date || strtotime( $customer->user_registered ) > $this->end_date ) + if ( strtotime( $customer->user_registered ) < $this->start_date || strtotime( $customer->user_registered ) > $this->end_date ) { unset( $this->customers[ $key ] ); + } } include( WC()->plugin_path() . '/includes/admin/views/html-report-by-date.php' ); @@ -189,11 +198,12 @@ class WC_Report_Customers extends WC_Admin_Report { * Output an export link */ public function get_export_button() { - $current_range = ! empty( $_GET['range'] ) ? $_GET['range'] : '7day'; + + $current_range = ! empty( $_GET['range'] ) ? sanitize_text_field( $_GET['range'] ) : '7day'; ?> chart_groupby == 'day' ) echo '%d %b'; else echo '%b'; ?>", monthNames: month_abbrev ) ) ?>, @@ -355,21 +366,21 @@ class WC_Report_Customers extends WC_Admin_Report { minTickSize: [1, "chart_groupby; ?>"], tickSize: [1, "chart_groupby; ?>"], font: { - color: "#aaa" - } + color: "#aaa" + } } ], - yaxes: [ - { - min: 0, - minTickSize: 1, - tickDecimals: 0, - color: '#ecf0f1', - font: { color: "#aaa" } - } - ], - } - ); - jQuery('.chart-placeholder').resize(); + yaxes: [ + { + min: 0, + minTickSize: 1, + tickDecimals: 0, + color: '#ecf0f1', + font: { color: "#aaa" } + } + ], + } + ); + jQuery('.chart-placeholder').resize(); } drawGraph(); @@ -386,4 +397,4 @@ class WC_Report_Customers extends WC_Admin_Report { max_items = 0; $this->items = array(); @@ -50,5 +53,5 @@ class WC_Report_Low_In_Stock extends WC_Report_Stock { $this->items = $wpdb->get_results( $wpdb->prepare( "SELECT posts.ID as id, posts.post_parent as parent {$query_from} GROUP BY posts.ID ORDER BY posts.post_title DESC LIMIT %d, %d;", ( $current_page - 1 ) * $per_page, $per_page ) ); $this->max_items = $wpdb->get_var( "SELECT COUNT( DISTINCT posts.ID ) {$query_from};" ); - } -} \ No newline at end of file + } +} diff --git a/includes/admin/reports/class-wc-report-most-stocked.php b/includes/admin/reports/class-wc-report-most-stocked.php index affbee9985b..0d5baf5c2d6 100644 --- a/includes/admin/reports/class-wc-report-most-stocked.php +++ b/includes/admin/reports/class-wc-report-most-stocked.php @@ -6,41 +6,44 @@ if ( ! class_exists( 'WC_Report_Stock' ) ) require_once( 'class-wc-report-stock.php' ); /** - * WC_Report_Most_Stocked class + * WC_Report_Most_Stocked * - * @extends WC_Report_Stock + * @author WooThemes + * @category Admin + * @package WooCommerce/Admin/Reports + * @version 2.1.0 */ class WC_Report_Most_Stocked extends WC_Report_Stock { - /** - * Get Products matching stock criteria - * - * @access public - */ - public function get_items( $current_page, $per_page ) { - global $wpdb; + /** + * Get Products matching stock criteria + * + * @access public + */ + public function get_items( $current_page, $per_page ) { + global $wpdb; - $this->max_items = 0; - $this->items = array(); + $this->max_items = 0; + $this->items = array(); - // Get products using a query - this is too advanced for get_posts :( - $stock = absint( max( get_option( 'woocommerce_notify_low_stock_amount' ), 0 ) ); + // Get products using a query - this is too advanced for get_posts :( + $stock = absint( max( get_option( 'woocommerce_notify_low_stock_amount' ), 0 ) ); - $query_from = "FROM {$wpdb->posts} as posts - INNER JOIN {$wpdb->postmeta} AS postmeta ON posts.ID = postmeta.post_id - INNER JOIN {$wpdb->postmeta} AS postmeta2 ON posts.ID = postmeta2.post_id - WHERE 1=1 - AND posts.post_type IN ('product', 'product_variation') - AND posts.post_status = 'publish' - AND ( - postmeta.meta_key = '_stock' AND CAST(postmeta.meta_value AS SIGNED) > '{$stock}' AND postmeta.meta_value != '' - ) - AND ( - ( postmeta2.meta_key = '_manage_stock' AND postmeta2.meta_value = 'yes' ) OR ( posts.post_type = 'product_variation' ) - ) - "; + $query_from = "FROM {$wpdb->posts} as posts + INNER JOIN {$wpdb->postmeta} AS postmeta ON posts.ID = postmeta.post_id + INNER JOIN {$wpdb->postmeta} AS postmeta2 ON posts.ID = postmeta2.post_id + WHERE 1=1 + AND posts.post_type IN ('product', 'product_variation') + AND posts.post_status = 'publish' + AND ( + postmeta.meta_key = '_stock' AND CAST(postmeta.meta_value AS SIGNED) > '{$stock}' AND postmeta.meta_value != '' + ) + AND ( + ( postmeta2.meta_key = '_manage_stock' AND postmeta2.meta_value = 'yes' ) OR ( posts.post_type = 'product_variation' ) + ) + "; - $this->items = $wpdb->get_results( $wpdb->prepare( "SELECT posts.ID as id, posts.post_parent as parent {$query_from} GROUP BY posts.ID ORDER BY CAST(postmeta.meta_value AS SIGNED) DESC LIMIT %d, %d;", ( $current_page - 1 ) * $per_page, $per_page ) ); - $this->max_items = $wpdb->get_var( "SELECT COUNT( DISTINCT posts.ID ) {$query_from};" ); - } -} \ No newline at end of file + $this->items = $wpdb->get_results( $wpdb->prepare( "SELECT posts.ID as id, posts.post_parent as parent {$query_from} GROUP BY posts.ID ORDER BY CAST(postmeta.meta_value AS SIGNED) DESC LIMIT %d, %d;", ( $current_page - 1 ) * $per_page, $per_page ) ); + $this->max_items = $wpdb->get_var( "SELECT COUNT( DISTINCT posts.ID ) {$query_from};" ); + } +} diff --git a/includes/admin/reports/class-wc-report-out-of-stock.php b/includes/admin/reports/class-wc-report-out-of-stock.php index 475d966b891..b71ab13bddd 100644 --- a/includes/admin/reports/class-wc-report-out-of-stock.php +++ b/includes/admin/reports/class-wc-report-out-of-stock.php @@ -6,48 +6,51 @@ if ( ! class_exists( 'WC_Report_Stock' ) ) require_once( 'class-wc-report-stock.php' ); /** - * WC_Report_Out_Of_Stock class + * WC_Report_Out_Of_Stock * - * @extends WC_Report_Stock + * @author WooThemes + * @category Admin + * @package WooCommerce/Admin/Reports + * @version 2.1.0 */ class WC_Report_Out_Of_Stock extends WC_Report_Stock { - /** - * No items found text - */ - public function no_items() { - _e( 'No out of stock products found.', 'woocommerce' ); - } + /** + * No items found text + */ + public function no_items() { + _e( 'No out of stock products found.', 'woocommerce' ); + } - /** - * Get Products matching stock criteria - * - * @access public - */ - public function get_items( $current_page, $per_page ) { - global $wpdb; + /** + * Get Products matching stock criteria + * + * @access public + */ + public function get_items( $current_page, $per_page ) { + global $wpdb; - $this->max_items = 0; - $this->items = array(); + $this->max_items = 0; + $this->items = array(); - // Get products using a query - this is too advanced for get_posts :( - $stock = absint( max( get_option( 'woocommerce_notify_no_stock_amount' ), 0 ) ); + // Get products using a query - this is too advanced for get_posts :( + $stock = absint( max( get_option( 'woocommerce_notify_no_stock_amount' ), 0 ) ); - $query_from = "FROM {$wpdb->posts} as posts - INNER JOIN {$wpdb->postmeta} AS postmeta ON posts.ID = postmeta.post_id - INNER JOIN {$wpdb->postmeta} AS postmeta2 ON posts.ID = postmeta2.post_id - WHERE 1=1 - AND posts.post_type IN ('product', 'product_variation') - AND posts.post_status = 'publish' - AND ( - postmeta.meta_key = '_stock' AND CAST(postmeta.meta_value AS SIGNED) <= '{$stock}' AND postmeta.meta_value != '' - ) - AND ( - ( postmeta2.meta_key = '_manage_stock' AND postmeta2.meta_value = 'yes' ) OR ( posts.post_type = 'product_variation' ) - ) - "; + $query_from = "FROM {$wpdb->posts} as posts + INNER JOIN {$wpdb->postmeta} AS postmeta ON posts.ID = postmeta.post_id + INNER JOIN {$wpdb->postmeta} AS postmeta2 ON posts.ID = postmeta2.post_id + WHERE 1=1 + AND posts.post_type IN ('product', 'product_variation') + AND posts.post_status = 'publish' + AND ( + postmeta.meta_key = '_stock' AND CAST(postmeta.meta_value AS SIGNED) <= '{$stock}' AND postmeta.meta_value != '' + ) + AND ( + ( postmeta2.meta_key = '_manage_stock' AND postmeta2.meta_value = 'yes' ) OR ( posts.post_type = 'product_variation' ) + ) + "; - $this->items = $wpdb->get_results( $wpdb->prepare( "SELECT posts.ID as id, posts.post_parent as parent {$query_from} GROUP BY posts.ID ORDER BY posts.post_title DESC LIMIT %d, %d;", ( $current_page - 1 ) * $per_page, $per_page ) ); - $this->max_items = $wpdb->get_var( "SELECT COUNT( DISTINCT posts.ID ) {$query_from};" ); - } -} \ No newline at end of file + $this->items = $wpdb->get_results( $wpdb->prepare( "SELECT posts.ID as id, posts.post_parent as parent {$query_from} GROUP BY posts.ID ORDER BY posts.post_title DESC LIMIT %d, %d;", ( $current_page - 1 ) * $per_page, $per_page ) ); + $this->max_items = $wpdb->get_var( "SELECT COUNT( DISTINCT posts.ID ) {$query_from};" ); + } +} diff --git a/includes/admin/reports/class-wc-report-sales-by-category.php b/includes/admin/reports/class-wc-report-sales-by-category.php index 5c238c5f4d1..f33e155c452 100644 --- a/includes/admin/reports/class-wc-report-sales-by-category.php +++ b/includes/admin/reports/class-wc-report-sales-by-category.php @@ -1,51 +1,73 @@ show_categories = array_map( 'absint', $_GET['show_categories'] ); - elseif ( isset( $_GET['show_categories'] ) ) + } elseif ( isset( $_GET['show_categories'] ) ) { $this->show_categories = array( absint( $_GET['show_categories'] ) ); + } + } + + /** + * Get all product ids in a category (and its children) + * + * @param int $category_id + * @return array + */ + public function get_products_in_category( $category_id ) { + $term_ids = get_term_children( $category_id, 'product_cat' ); + $term_ids[] = $category_id; + $product_ids = get_objects_in_term( $term_ids, 'product_cat' ); + + return array_unique( apply_filters( 'woocommerce_report_sales_by_category_get_products_in_category', $product_ids, $category_id ) ); } /** * Get the legend for the main chart sidebar + * * @return array */ public function get_chart_legend() { - if ( ! $this->show_categories ) + + if ( ! $this->show_categories ) { return array(); + } - $legend = array(); - $index = 0; + $legend = array(); + $index = 0; - foreach( $this->show_categories as $category ) { - $category = get_term( $category, 'product_cat' ); - $term_ids = get_term_children( $category->term_id, 'product_cat' ); - $term_ids[] = $category->term_id; - $total = 0; - $product_ids = array_unique( get_objects_in_term( $term_ids, 'product_cat' ) ); + foreach ( $this->show_categories as $category ) { + + $category = get_term( $category, 'product_cat' ); + $total = 0; + $product_ids = $this->get_products_in_category( $category->term_id ); foreach ( $product_ids as $id ) { + if ( isset( $this->item_sales[ $id ] ) ) { $total += $this->item_sales[ $id ]; } } - //if ( ! $total ) - // continue; - $legend[] = array( - 'title' => sprintf( __( '%s sales in %s', 'woocommerce' ), '' . wc_price( $total ) . '', $category->name ), - 'color' => isset( $this->chart_colours[ $index ] ) ? $this->chart_colours[ $index ] : $this->chart_colours[ 0 ], + 'title' => sprintf( __( '%s sales in %s', 'woocommerce' ), '' . wc_price( $total ) . '', $category->name ), + 'color' => isset( $this->chart_colours[ $index ] ) ? $this->chart_colours[ $index ] : $this->chart_colours[ 0 ], 'highlight_series' => $index ); @@ -59,7 +81,6 @@ class WC_Report_Sales_By_Category extends WC_Admin_Report { * Output the report */ public function output_report() { - global $woocommerce, $wpdb, $wp_locale; $ranges = array( 'year' => __( 'Year', 'woocommerce' ), @@ -70,10 +91,11 @@ class WC_Report_Sales_By_Category extends WC_Admin_Report { $this->chart_colours = array( '#3498db', '#34495e', '#1abc9c', '#2ecc71', '#f1c40f', '#e67e22', '#e74c3c', '#2980b9', '#8e44ad', '#2c3e50', '#16a085', '#27ae60', '#f39c12', '#d35400', '#c0392b' ); - $current_range = ! empty( $_GET['range'] ) ? $_GET['range'] : '7day'; + $current_range = ! empty( $_GET['range'] ) ? sanitize_text_field( $_GET['range'] ) : '7day'; - if ( ! in_array( $current_range, array( 'custom', 'year', 'last_month', 'month', '7day' ) ) ) + if ( ! in_array( $current_range, array( 'custom', 'year', 'last_month', 'month', '7day' ) ) ) { $current_range = '7day'; + } $this->calculate_current_range( $current_range ); @@ -104,15 +126,19 @@ class WC_Report_Sales_By_Category extends WC_Admin_Report { 'filter_range' => true ) ); - $this->item_sales = array(); + $this->item_sales = array(); $this->item_sales_and_times = array(); if ( $order_items ) { + foreach ( $order_items as $order_item ) { + switch ( $this->chart_groupby ) { + case 'day' : $time = strtotime( date( 'Ymd', strtotime( $order_item->post_date ) ) ) * 1000; break; + case 'month' : $time = strtotime( date( 'Ym', strtotime( $order_item->post_date ) ) . '01' ) * 1000; break; @@ -125,14 +151,16 @@ class WC_Report_Sales_By_Category extends WC_Admin_Report { } } - include( WC()->plugin_path() . '/includes/admin/views/html-report-by-date.php'); + include( WC()->plugin_path() . '/includes/admin/views/html-report-by-date.php' ); } /** * [get_chart_widgets description] + * * @return array */ public function get_chart_widgets() { + return array( array( 'title' => __( 'Categories', 'woocommerce' ), @@ -146,11 +174,12 @@ class WC_Report_Sales_By_Category extends WC_Admin_Report { * @return void */ public function category_widget() { + $categories = get_terms( 'product_cat', array( 'orderby' => 'name' ) ); ?>

    - show_categories as $category ) { - $category = get_term( $category, 'product_cat' ); - $term_ids = get_term_children( $category->term_id, 'product_cat' ); - $term_ids[] = $category->term_id; - $product_ids = array_unique( get_objects_in_term( $term_ids, 'product_cat' ) ); - $category_total = 0; + + $category = get_term( $category, 'product_cat' ); + $product_ids = $this->get_products_in_category( $category->term_id ); + $category_total = 0; $category_chart_data = array(); for ( $i = 0; $i <= $this->chart_interval; $i ++ ) { + $interval_total = 0; switch ( $this->chart_groupby ) { + case 'day' : $time = strtotime( date( 'Ymd', strtotime( "+{$i} DAY", $this->start_date ) ) ) * 1000; break; + case 'month' : $time = strtotime( date( 'Ym', strtotime( "+{$i} MONTH", $this->start_date ) ) . '01' ) * 1000; break; } foreach ( $product_ids as $id ) { + if ( isset( $this->item_sales_and_times[ $time ][ $id ] ) ) { $interval_total += $this->item_sales_and_times[ $time ][ $id ]; $category_total += $this->item_sales_and_times[ $time ][ $id ]; @@ -310,8 +344,9 @@ class WC_Report_Sales_By_Category extends WC_Admin_Report { highlight_series.color = '#9c5d90'; - if ( highlight_series.bars ) + if ( highlight_series.bars ) { highlight_series.bars.fillColor = '#9c5d90'; + } if ( highlight_series.lines ) { highlight_series.lines.lineWidth = 5; @@ -325,41 +360,41 @@ class WC_Report_Sales_By_Category extends WC_Admin_Report { legend: { show: false }, - grid: { - color: '#aaa', - borderColor: 'transparent', - borderWidth: 0, - hoverable: true - }, - xaxes: [ { - color: '#aaa', - reserveSpace: true, - position: "bottom", - tickColor: 'transparent', + grid: { + color: '#aaa', + borderColor: 'transparent', + borderWidth: 0, + hoverable: true + }, + xaxes: [ { + color: '#aaa', + reserveSpace: true, + position: "bottom", + tickColor: 'transparent', mode: "time", timeformat: "chart_groupby == 'day' ) echo '%d %b'; else echo '%b'; ?>", - monthNames: month_abbrev ) ) ?>, + monthNames: month_abbrev ) ); ?>, tickLength: 1, minTickSize: [1, "chart_groupby; ?>"], tickSize: [1, "chart_groupby; ?>"], font: { - color: "#aaa" - } + color: "#aaa" + } } ], - yaxes: [ - { - min: 0, - tickDecimals: 2, - color: 'transparent', - font: { color: "#aaa" } - } - ], - } - ); + yaxes: [ + { + min: 0, + tickDecimals: 2, + color: 'transparent', + font: { color: "#aaa" } + } + ], + } + ); - jQuery('.chart-placeholder').resize(); + jQuery('.chart-placeholder').resize(); - } + } drawGraph(); @@ -376,4 +411,4 @@ class WC_Report_Sales_By_Category extends WC_Admin_Report { get_order_report_data( array( @@ -22,18 +30,26 @@ class WC_Report_Sales_By_Date extends WC_Admin_Report { 'type' => 'meta', 'function' => 'SUM', 'name' => 'total_shipping' - ), + ) + ), + 'filter_range' => true + ) ); + + $total_sales = $order_totals->total_sales; + $total_shipping = $order_totals->total_shipping; + $total_orders = absint( $this->get_order_report_data( array( + 'data' => array( 'ID' => array( 'type' => 'post_data', 'function' => 'COUNT', 'name' => 'total_orders' ) ), - 'filter_range' => true - ) ); - $total_sales = $order_totals->total_sales; - $total_shipping = $order_totals->total_shipping; - $total_orders = absint( $order_totals->total_orders ); + 'query_type' => 'get_var', + 'filter_range' => true, + 'order_types' => wc_get_order_types( 'order-count' ) + ) ) ); + $total_items = absint( $this->get_order_report_data( array( 'data' => array( '_qty' => array( @@ -44,8 +60,10 @@ class WC_Report_Sales_By_Date extends WC_Admin_Report { ) ), 'query_type' => 'get_var', + 'order_types' => wc_get_order_types( 'order-count' ), 'filter_range' => true ) ) ); + // Get discount amounts in range $total_coupons = $this->get_order_report_data( array( 'data' => array( @@ -58,21 +76,24 @@ class WC_Report_Sales_By_Date extends WC_Admin_Report { ), 'where' => array( array( - 'key' => 'order_item_type', + 'key' => 'order_items.order_item_type', 'value' => 'coupon', 'operator' => '=' ) ), - 'query_type' => 'get_var', + 'query_type' => 'get_var', + 'order_types' => wc_get_order_types( 'order-count' ), 'filter_range' => true ) ); $this->average_sales = $total_sales / ( $this->chart_interval + 1 ); switch ( $this->chart_groupby ) { + case 'day' : $average_sales_title = sprintf( __( '%s average daily sales', 'woocommerce' ), '' . wc_price( $this->average_sales ) . '' ); break; + case 'month' : $average_sales_title = sprintf( __( '%s average monthly sales', 'woocommerce' ), '' . wc_price( $this->average_sales ) . '' ); break; @@ -83,26 +104,31 @@ class WC_Report_Sales_By_Date extends WC_Admin_Report { 'color' => $this->chart_colours['sales_amount'], 'highlight_series' => 5 ); + $legend[] = array( 'title' => $average_sales_title, 'color' => $this->chart_colours['average'], 'highlight_series' => 2 ); + $legend[] = array( 'title' => sprintf( __( '%s orders placed', 'woocommerce' ), '' . $total_orders . '' ), 'color' => $this->chart_colours['order_count'], 'highlight_series' => 1 ); + $legend[] = array( 'title' => sprintf( __( '%s items purchased', 'woocommerce' ), '' . $total_items . '' ), 'color' => $this->chart_colours['item_count'], 'highlight_series' => 0 ); + $legend[] = array( 'title' => sprintf( __( '%s charged for shipping', 'woocommerce' ), '' . wc_price( $total_shipping ) . '' ), 'color' => $this->chart_colours['shipping_amount'], 'highlight_series' => 4 ); + $legend[] = array( 'title' => sprintf( __( '%s worth of coupons used', 'woocommerce' ), '' . wc_price( $total_coupons ) . '' ), 'color' => $this->chart_colours['coupon_amount'], @@ -116,7 +142,6 @@ class WC_Report_Sales_By_Date extends WC_Admin_Report { * Output the report */ public function output_report() { - global $woocommerce, $wpdb, $wp_locale; $ranges = array( 'year' => __( 'Year', 'woocommerce' ), @@ -134,10 +159,11 @@ class WC_Report_Sales_By_Date extends WC_Admin_Report { 'shipping_amount' => '#1abc9c' ); - $current_range = ! empty( $_GET['range'] ) ? $_GET['range'] : '7day'; + $current_range = ! empty( $_GET['range'] ) ? sanitize_text_field( $_GET['range'] ) : '7day'; - if ( ! in_array( $current_range, array( 'custom', 'year', 'last_month', 'month', '7day' ) ) ) + if ( ! in_array( $current_range, array( 'custom', 'year', 'last_month', 'month', '7day' ) ) ) { $current_range = '7day'; + } $this->calculate_current_range( $current_range ); @@ -148,11 +174,12 @@ class WC_Report_Sales_By_Date extends WC_Admin_Report { * Output an export link */ public function get_export_button() { - $current_range = ! empty( $_GET['range'] ) ? $_GET['range'] : '7day'; + + $current_range = ! empty( $_GET['range'] ) ? sanitize_text_field( $_GET['range'] ) : '7day'; ?> array( array( - 'key' => 'order_item_type', + 'key' => 'order_items.order_item_type', 'value' => 'line_item', 'operator' => '=' ) @@ -252,7 +280,7 @@ class WC_Report_Sales_By_Date extends WC_Admin_Report { ), 'where' => array( array( - 'key' => 'order_item_type', + 'key' => 'order_items.order_item_type', 'value' => 'coupon', 'operator' => '=' ) @@ -268,7 +296,7 @@ class WC_Report_Sales_By_Date extends WC_Admin_Report { $order_item_counts = $this->prepare_chart_data( $order_items, 'post_date', 'order_item_count', $this->chart_interval, $this->start_date, $this->chart_groupby ); $order_amounts = $this->prepare_chart_data( $orders, 'post_date', 'total_sales', $this->chart_interval, $this->start_date, $this->chart_groupby ); $coupon_amounts = $this->prepare_chart_data( $coupons, 'post_date', 'discount_amount', $this->chart_interval, $this->start_date, $this->chart_groupby ); - $shipping_amounts = $this->prepare_chart_data( $orders, 'post_date', 'total_shipping', $this->chart_interval, $this->start_date, $this->chart_groupby ); + $shipping_amounts = $this->prepare_chart_data( $orders, 'post_date', 'total_shipping', $this->chart_interval, $this->start_date, $this->chart_groupby ); // Encode in json format $chart_data = json_encode( array( @@ -368,44 +396,44 @@ class WC_Report_Sales_By_Date extends WC_Admin_Report { legend: { show: false }, - grid: { - color: '#aaa', - borderColor: 'transparent', - borderWidth: 0, - hoverable: true - }, - xaxes: [ { - color: '#aaa', - position: "bottom", - tickColor: 'transparent', + grid: { + color: '#aaa', + borderColor: 'transparent', + borderWidth: 0, + hoverable: true + }, + xaxes: [ { + color: '#aaa', + position: "bottom", + tickColor: 'transparent', mode: "time", timeformat: "chart_groupby == 'day' ) echo '%d %b'; else echo '%b'; ?>", monthNames: month_abbrev ) ) ?>, tickLength: 1, minTickSize: [1, "chart_groupby; ?>"], font: { - color: "#aaa" - } + color: "#aaa" + } } ], - yaxes: [ - { - min: 0, - minTickSize: 1, - tickDecimals: 0, - color: '#d4d9dc', - font: { color: "#aaa" } - }, - { - position: "right", - min: 0, - tickDecimals: 2, - alignTicksWithAxis: 1, - color: 'transparent', - font: { color: "#aaa" } - } - ], - } - ); + yaxes: [ + { + min: 0, + minTickSize: 1, + tickDecimals: 0, + color: '#d4d9dc', + font: { color: "#aaa" } + }, + { + position: "right", + min: 0, + tickDecimals: 2, + alignTicksWithAxis: 1, + color: 'transparent', + font: { color: "#aaa" } + } + ], + } + ); jQuery('.chart-placeholder').resize(); } @@ -424,4 +452,4 @@ class WC_Report_Sales_By_Date extends WC_Admin_Report { product_ids = array_map( 'absint', $_GET['product_ids'] ); - elseif ( isset( $_GET['product_ids'] ) ) + } elseif ( isset( $_GET['product_ids'] ) ) { $this->product_ids = array( absint( $_GET['product_ids'] ) ); + } } /** @@ -21,24 +29,20 @@ class WC_Report_Sales_By_Product extends WC_Admin_Report { * @return array */ public function get_chart_legend() { - if ( ! $this->product_ids ) + + if ( ! $this->product_ids ) { return array(); + } $legend = array(); - $total_sales = $this->get_order_report_data( array( + $total_sales = $this->get_order_report_data( array( 'data' => array( '_line_total' => array( 'type' => 'order_item_meta', 'order_item_type' => 'line_item', 'function' => 'SUM', 'name' => 'order_item_amount' - ), - '_product_id' => array( - 'type' => 'order_item_meta', - 'order_item_type' => 'line_item', - 'function' => '', - 'name' => 'product_id' ) ), 'where_meta' => array( @@ -50,24 +54,18 @@ class WC_Report_Sales_By_Product extends WC_Admin_Report { 'operator' => 'IN' ) ), - 'group_by' => 'product_id', 'query_type' => 'get_var', 'filter_range' => true ) ); - $total_items = absint( $this->get_order_report_data( array( + + $total_items = absint( $this->get_order_report_data( array( 'data' => array( '_qty' => array( 'type' => 'order_item_meta', 'order_item_type' => 'line_item', 'function' => 'SUM', 'name' => 'order_item_count' - ), - '_product_id' => array( - 'type' => 'order_item_meta', - 'order_item_type' => 'line_item', - 'function' => '', - 'name' => 'product_id' - ), + ) ), 'where_meta' => array( 'relation' => 'OR', @@ -78,8 +76,8 @@ class WC_Report_Sales_By_Product extends WC_Admin_Report { 'operator' => 'IN' ) ), - 'group_by' => 'product_id', 'query_type' => 'get_var', + 'order_types' => wc_get_order_types( 'order-count' ), 'filter_range' => true ) ) ); @@ -88,6 +86,7 @@ class WC_Report_Sales_By_Product extends WC_Admin_Report { 'color' => $this->chart_colours['sales_amount'], 'highlight_series' => 1 ); + $legend[] = array( 'title' => sprintf( __( '%s purchases for the selected items', 'woocommerce' ), '' . $total_items . '' ), 'color' => $this->chart_colours['item_count'], @@ -101,7 +100,6 @@ class WC_Report_Sales_By_Product extends WC_Admin_Report { * Output the report */ public function output_report() { - global $woocommerce, $wpdb, $wp_locale; $ranges = array( 'year' => __( 'Year', 'woocommerce' ), @@ -115,7 +113,7 @@ class WC_Report_Sales_By_Product extends WC_Admin_Report { 'item_count' => '#d4d9dc', ); - $current_range = ! empty( $_GET['range'] ) ? $_GET['range'] : '7day'; + $current_range = ! empty( $_GET['range'] ) ? sanitize_text_field( $_GET['range'] ) : '7day'; if ( ! in_array( $current_range, array( 'custom', 'year', 'last_month', 'month', '7day' ) ) ) $current_range = '7day'; @@ -127,6 +125,7 @@ class WC_Report_Sales_By_Product extends WC_Admin_Report { /** * [get_chart_widgets description] + * * @return array */ public function get_chart_widgets() { @@ -150,14 +149,20 @@ class WC_Report_Sales_By_Product extends WC_Admin_Report { /** * Show current filters - * @return void */ public function current_filters() { + $this->product_ids_titles = array(); foreach ( $this->product_ids as $product_id ) { - $product = get_product( $product_id ); - $this->product_ids_titles[] = $product->get_formatted_name(); + + $product = wc_get_product( $product_id ); + + if ( $product ) { + $this->product_ids_titles[] = $product->get_formatted_name(); + } else { + $this->product_ids_titles[] = '#' . $product_id; + } } echo '

    ' . ' ' . implode( ', ', $this->product_ids_titles ) . '

    '; @@ -166,7 +171,6 @@ class WC_Report_Sales_By_Product extends WC_Admin_Report { /** * Product selection - * @return void */ public function products_widget() { ?> @@ -187,21 +191,21 @@ class WC_Report_Sales_By_Product extends WC_Admin_Report { jQuery(function(){ // Ajax Chosen Product Selectors jQuery("select.ajax_chosen_select_products").ajaxChosen({ - method: 'GET', - url: '', - dataType: 'json', - afterTypeDelay: 100, - data: { - action: 'woocommerce_json_search_products_and_variations', - security: '' - } + method: 'GET', + url: '', + dataType: 'json', + afterTypeDelay: 100, + data: { + action: 'woocommerce_json_search_products_and_variations', + security: '' + } }, function (data) { var terms = {}; - jQuery.each(data, function (i, val) { - terms[i] = val; - }); - return terms; + jQuery.each(data, function (i, val) { + terms[i] = val; + }); + return terms; }); }); @@ -230,7 +234,8 @@ class WC_Report_Sales_By_Product extends WC_Admin_Report { 'group_by' => 'product_id', 'limit' => 12, 'query_type' => 'get_results', - 'filter_range' => true + 'filter_range' => true, + 'order_types' => wc_get_order_types( 'order-count' ), ) ); if ( $top_sellers ) { @@ -313,11 +318,12 @@ class WC_Report_Sales_By_Product extends WC_Admin_Report { * Output an export link */ public function get_export_button() { - $current_range = ! empty( $_GET['range'] ) ? $_GET['range'] : '7day'; + + $current_range = ! empty( $_GET['range'] ) ? sanitize_text_field( $_GET['range'] ) : '7day'; ?>
    array( '_product_id', '_variation_id' ), 'meta_value' => $this->product_ids, 'operator' => 'IN' - ) + ), ), 'group_by' => 'product_id,' . $this->group_by_query, 'order_by' => 'post_date ASC', @@ -405,13 +412,12 @@ class WC_Report_Sales_By_Product extends WC_Admin_Report { 'meta_key' => array( '_product_id', '_variation_id' ), 'meta_value' => $this->product_ids, 'operator' => 'IN' - ) + ), ), 'group_by' => 'product_id, ' . $this->group_by_query, 'order_by' => 'post_date ASC', 'query_type' => 'get_results', - 'filter_range' => true, - 'nocache' => true + 'filter_range' => true ) ); // Prepare data for report @@ -476,47 +482,47 @@ class WC_Report_Sales_By_Product extends WC_Admin_Report { legend: { show: false }, - grid: { - color: '#aaa', - borderColor: 'transparent', - borderWidth: 0, - hoverable: true - }, - xaxes: [ { - color: '#aaa', - position: "bottom", - tickColor: 'transparent', + grid: { + color: '#aaa', + borderColor: 'transparent', + borderWidth: 0, + hoverable: true + }, + xaxes: [ { + color: '#aaa', + position: "bottom", + tickColor: 'transparent', mode: "time", timeformat: "chart_groupby == 'day' ) echo '%d %b'; else echo '%b'; ?>", monthNames: month_abbrev ) ) ?>, tickLength: 1, minTickSize: [1, "chart_groupby; ?>"], font: { - color: "#aaa" - } + color: "#aaa" + } } ], - yaxes: [ - { - min: 0, - minTickSize: 1, - tickDecimals: 0, - color: '#ecf0f1', - font: { color: "#aaa" } - }, - { - position: "right", - min: 0, - tickDecimals: 2, - alignTicksWithAxis: 1, - color: 'transparent', - font: { color: "#aaa" } - } - ], - } - ); + yaxes: [ + { + min: 0, + minTickSize: 1, + tickDecimals: 0, + color: '#ecf0f1', + font: { color: "#aaa" } + }, + { + position: "right", + min: 0, + tickDecimals: 2, + alignTicksWithAxis: 1, + color: 'transparent', + font: { color: "#aaa" } + } + ], + } + ); - jQuery('.chart-placeholder').resize(); - } + jQuery('.chart-placeholder').resize(); + } drawGraph(); @@ -533,4 +539,4 @@ class WC_Report_Sales_By_Product extends WC_Admin_Report { __( 'Stock', 'woocommerce' ), - 'plural' => __( 'Stock', 'woocommerce' ), - 'ajax' => false - ) ); - } + /** + * __construct function. + * + * @access public + */ + public function __construct() { - /** - * No items found text - */ - public function no_items() { - _e( 'No products found.', 'woocommerce' ); - } + parent::__construct( array( + 'singular' => __( 'Stock', 'woocommerce' ), + 'plural' => __( 'Stock', 'woocommerce' ), + 'ajax' => false + ) ); + } - /** - * Don't need this - */ - public function display_tablenav( $position ) { - if ( $position != 'top' ) - parent::display_tablenav( $position ); - } + /** + * No items found text + */ + public function no_items() { + _e( 'No products found.', 'woocommerce' ); + } + + /** + * Don't need this + */ + public function display_tablenav( $position ) { + + if ( $position != 'top' ) { + parent::display_tablenav( $position ); + } + } /** * Output the report */ public function output_report() { + $this->prepare_items(); echo '
    '; $this->display(); echo '
    '; } - /** - * column_default function. - * - * @access public - * @param mixed $item - * @param mixed $column_name - */ - function column_default( $item, $column_name ) { - global $woocommerce, $wpdb, $product; + /** + * column_default function. + * + * @param mixed $item + * @param mixed $column_name + */ + public function column_default( $item, $column_name ) { + global $product; - if ( ! $product || $product->id !== $item->id ) - $product = get_product( $item->id ); + if ( ! $product || $product->id !== $item->id ) { + $product = wc_get_product( $item->id ); + } - switch( $column_name ) { - case 'product' : - if ( $sku = $product->get_sku() ) - echo $sku . ' - '; + switch( $column_name ) { - echo $product->get_title(); + case 'product' : + if ( $sku = $product->get_sku() ) { + echo $sku . ' - '; + } - // Get variation data - if ( $product->is_type( 'variation' ) ) { - $list_attributes = array(); - $attributes = $product->get_variation_attributes(); + echo $product->get_title(); - foreach ( $attributes as $name => $attribute ) { - $list_attributes[] = wc_attribute_label( str_replace( 'attribute_', '', $name ) ) . ': ' . $attribute . ''; - } + // Get variation data + if ( $product->is_type( 'variation' ) ) { + $list_attributes = array(); + $attributes = $product->get_variation_attributes(); - echo '
    ' . implode( ', ', $list_attributes ) . '
    '; - } - break; - case 'parent' : - if ( $item->parent ) - echo get_the_title( $item->parent ); - else - echo '-'; - break; - case 'stock_status' : - if ( $product->is_in_stock() ) { - echo '' . __( 'In stock', 'woocommerce' ) . ''; - } else { - echo '' . __( 'Out of stock', 'woocommerce' ) . ''; - } - break; - case 'stock_level' : - echo $product->get_stock_quantity(); - break; - case 'wc_actions' : - ?>

    - is_type( 'variation' ) ? $item->parent : $item->id; + foreach ( $attributes as $name => $attribute ) { + $list_attributes[] = wc_attribute_label( str_replace( 'attribute_', '', $name ) ) . ': ' . $attribute . ''; + } - $actions['edit'] = array( - 'url' => admin_url( 'post.php?post=' . $action_id . '&action=edit' ), - 'name' => __( 'Edit', 'woocommerce' ), - 'action' => "edit" - ); + echo '

    ' . implode( ', ', $list_attributes ) . '
    '; + } + break; - if ( $product->is_visible() ) - $actions['view'] = array( - 'url' => get_permalink( $action_id ), - 'name' => __( 'View', 'woocommerce' ), - 'action' => "view" - ); + case 'parent' : + if ( $item->parent ) { + echo get_the_title( $item->parent ); + } else { + echo '-'; + } + break; - $actions = apply_filters( 'woocommerce_admin_stock_report_product_actions', $actions, $product ); + case 'stock_status' : + if ( $product->is_in_stock() ) { + echo '' . __( 'In stock', 'woocommerce' ) . ''; + } else { + echo '' . __( 'Out of stock', 'woocommerce' ) . ''; + } + break; - foreach ( $actions as $action ) { - $image = ( isset( $action['image_url'] ) ) ? $action['image_url'] : WC()->plugin_url() . '/assets/images/icons/' . $action['action'] . '.png'; - printf( '
    %s', esc_url( $action['url'] ), esc_attr( $action['name'] ), esc_attr( $image ), esc_attr( $action['name'] ) ); - } - ?> -

    get_stock_quantity(); + break; + + case 'wc_actions' : + ?>

    + is_type( 'variation' ) ? $item->parent : $item->id; + + $actions['edit'] = array( + 'url' => admin_url( 'post.php?post=' . $action_id . '&action=edit' ), + 'name' => __( 'Edit', 'woocommerce' ), + 'action' => "edit" + ); + + if ( $product->is_visible() ) { + $actions['view'] = array( + 'url' => get_permalink( $action_id ), + 'name' => __( 'View', 'woocommerce' ), + 'action' => "view" + ); + } + + $actions = apply_filters( 'woocommerce_admin_stock_report_product_actions', $actions, $product ); + + foreach ( $actions as $action ) { + printf( '%s', $action['action'], esc_url( $action['url'] ), esc_attr( $action['name'] ), esc_attr( $action['name'] ) ); + } + ?> +

    __( 'Product', 'woocommerce' ), - 'parent' => __( 'Parent', 'woocommerce' ), - 'stock_level' => __( 'Units in stock', 'woocommerce' ), - 'stock_status' => __( 'Stock status', 'woocommerce' ), - 'wc_actions' => __( 'Actions', 'woocommerce' ), - ); + /** + * get_columns function. + */ + public function get_columns() { - return $columns; - } + $columns = array( + 'product' => __( 'Product', 'woocommerce' ), + 'parent' => __( 'Parent', 'woocommerce' ), + 'stock_level' => __( 'Units in stock', 'woocommerce' ), + 'stock_status' => __( 'Stock status', 'woocommerce' ), + 'wc_actions' => __( 'Actions', 'woocommerce' ), + ); - /** - * prepare_items function. - * - * @access public - */ - public function prepare_items() { - $this->_column_headers = array( $this->get_columns(), array(), $this->get_sortable_columns() ); - $current_page = absint( $this->get_pagenum() ); - $per_page = 20; + return $columns; + } - $this->get_items( $current_page, $per_page ); + /** + * prepare_items function. + */ + public function prepare_items() { - /** - * Pagination - */ - $this->set_pagination_args( array( - 'total_items' => $this->max_items, - 'per_page' => $per_page, - 'total_pages' => ceil( $this->max_items / $per_page ) - ) ); - } -} \ No newline at end of file + $this->_column_headers = array( $this->get_columns(), array(), $this->get_sortable_columns() ); + $current_page = absint( $this->get_pagenum() ); + $per_page = apply_filters( 'woocommerce_admin_stock_report_products_per_page', 20 ); + + $this->get_items( $current_page, $per_page ); + + /** + * Pagination + */ + $this->set_pagination_args( array( + 'total_items' => $this->max_items, + 'per_page' => $per_page, + 'total_pages' => ceil( $this->max_items / $per_page ) + ) ); + } +} diff --git a/includes/admin/reports/class-wc-report-taxes-by-code.php b/includes/admin/reports/class-wc-report-taxes-by-code.php index 727f2c3cce5..f8299a2c9d5 100644 --- a/includes/admin/reports/class-wc-report-taxes-by-code.php +++ b/includes/admin/reports/class-wc-report-taxes-by-code.php @@ -1,6 +1,11 @@ @@ -35,7 +42,6 @@ class WC_Report_Taxes_By_Code extends WC_Admin_Report { * Output the report */ public function output_report() { - global $woocommerce, $wpdb, $wp_locale; $ranges = array( 'year' => __( 'Year', 'woocommerce' ), @@ -43,10 +49,11 @@ class WC_Report_Taxes_By_Code extends WC_Admin_Report { 'month' => __( 'This Month', 'woocommerce' ), ); - $current_range = ! empty( $_GET['range'] ) ? $_GET['range'] : 'last_month'; + $current_range = ! empty( $_GET['range'] ) ? sanitize_text_field( $_GET['range'] ) : 'last_month'; - if ( ! in_array( $current_range, array( 'custom', 'year', 'last_month', 'month', '7day' ) ) ) + if ( ! in_array( $current_range, array( 'custom', 'year', 'last_month', 'month', '7day' ) ) ) { $current_range = 'last_month'; + } $this->calculate_current_range( $current_range ); @@ -57,6 +64,7 @@ class WC_Report_Taxes_By_Code extends WC_Admin_Report { /** * Get the main chart + * * @return string */ public function get_main_chart() { @@ -86,6 +94,11 @@ class WC_Report_Taxes_By_Code extends WC_Admin_Report { 'order_item_type' => 'tax', 'function' => '', 'name' => 'rate_id' + ), + 'order_id' => array( + 'type' => 'order_item', + 'function' => '', + 'name' => 'order_id' ) ), 'where' => array( @@ -117,19 +130,12 @@ class WC_Report_Taxes_By_Code extends WC_Admin_Report { - - - - - - - - rate_id ] ) ) { $grouped_tax_tows[ $tax_row->rate_id ] = (object) array( 'tax_rate' => $tax_row->tax_rate, @@ -138,8 +144,11 @@ class WC_Report_Taxes_By_Code extends WC_Admin_Report { 'shipping_tax_amount' => 0 ); } - - $grouped_tax_tows[ $tax_row->rate_id ]->total_orders ++; + + if ( 'shop_order' === get_post_type( $tax_row->order_id ) ) { + $grouped_tax_tows[ $tax_row->rate_id ]->total_orders ++; + } + $grouped_tax_tows[ $tax_row->rate_id ]->tax_amount += wc_round_tax_total( $tax_row->tax_amount ); $grouped_tax_tows[ $tax_row->rate_id ]->shipping_tax_amount += wc_round_tax_total( $tax_row->shipping_tax_amount ); } @@ -159,6 +168,14 @@ class WC_Report_Taxes_By_Code extends WC_Admin_Report { } ?> + + + + + + + + @@ -169,4 +186,4 @@ class WC_Report_Taxes_By_Code extends WC_Admin_Report { @@ -35,7 +42,6 @@ class WC_Report_Taxes_By_Date extends WC_Admin_Report { * Output the report */ public function output_report() { - global $woocommerce, $wpdb, $wp_locale; $ranges = array( 'year' => __( 'Year', 'woocommerce' ), @@ -43,10 +49,11 @@ class WC_Report_Taxes_By_Date extends WC_Admin_Report { 'month' => __( 'This Month', 'woocommerce' ), ); - $current_range = ! empty( $_GET['range'] ) ? $_GET['range'] : 'last_month'; + $current_range = ! empty( $_GET['range'] ) ? sanitize_text_field( $_GET['range'] ) : 'last_month'; - if ( ! in_array( $current_range, array( 'custom', 'year', 'last_month', 'month', '7day' ) ) ) + if ( ! in_array( $current_range, array( 'custom', 'year', 'last_month', 'month', '7day' ) ) ) { $current_range = 'last_month'; + } $this->calculate_current_range( $current_range ); @@ -57,10 +64,10 @@ class WC_Report_Taxes_By_Date extends WC_Admin_Report { /** * Get the main chart + * * @return string */ public function get_main_chart() { - global $wpdb; $tax_rows = $this->get_order_report_data( array( 'data' => array( @@ -106,27 +113,14 @@ class WC_Report_Taxes_By_Date extends WC_Admin_Report { - + " href="#">[?] " href="#">[?] [?] " href="#">[?] - - - - - - - - - - - + + + + + + + + + + + + @@ -160,4 +168,4 @@ class WC_Report_Taxes_By_Date extends WC_Admin_Report { id = 'account'; $this->label = __( 'Accounts', 'woocommerce' ); @@ -35,20 +36,19 @@ class WC_Settings_Accounts extends WC_Settings_Page { * @return array */ public function get_settings() { - - return apply_filters( 'woocommerce_' . $this->id . '_settings', array( + $settings = apply_filters( 'woocommerce_' . $this->id . '_settings', array( array( 'title' => __( 'Account Pages', 'woocommerce' ), 'type' => 'title', 'desc' => __( 'These pages need to be set so that WooCommerce knows where to send users to access account related functionality.', 'woocommerce' ), 'id' => 'account_page_options' ), array( - 'title' => __( 'My Account Page', 'woocommerce' ), - 'desc' => __( 'Page contents:', 'woocommerce' ) . ' [' . apply_filters( 'woocommerce_my_account_shortcode_tag', 'woocommerce_my_account' ) . ']', - 'id' => 'woocommerce_myaccount_page_id', - 'type' => 'single_select_page', - 'default' => '', - 'class' => 'chosen_select_nostd', - 'css' => 'min-width:300px;', - 'desc_tip' => true, + 'title' => __( 'My Account Page', 'woocommerce' ), + 'desc' => __( 'Page contents:', 'woocommerce' ) . ' [' . apply_filters( 'woocommerce_my_account_shortcode_tag', 'woocommerce_my_account' ) . ']', + 'id' => 'woocommerce_myaccount_page_id', + 'type' => 'single_select_page', + 'default' => '', + 'class' => 'chosen_select_nostd', + 'css' => 'min-width:300px;', + 'desc_tip' => true, ), array( 'type' => 'sectionend', 'id' => 'account_page_options' ), @@ -56,48 +56,48 @@ class WC_Settings_Accounts extends WC_Settings_Page { array( 'title' => __( 'My Account Endpoints', 'woocommerce' ), 'type' => 'title', 'desc' => __( 'Endpoints are appended to your page URLs to handle specific actions on the accounts pages. They should be unique.', 'woocommerce' ), 'id' => 'account_endpoint_options' ), array( - 'title' => __( 'View Order', 'woocommerce' ), - 'desc' => __( 'Endpoint for the My Account → View Order page', 'woocommerce' ), - 'id' => 'woocommerce_myaccount_view_order_endpoint', - 'type' => 'text', - 'default' => 'view-order', - 'desc_tip' => true, + 'title' => __( 'View Order', 'woocommerce' ), + 'desc' => __( 'Endpoint for the My Account → View Order page', 'woocommerce' ), + 'id' => 'woocommerce_myaccount_view_order_endpoint', + 'type' => 'text', + 'default' => 'view-order', + 'desc_tip' => true, ), array( - 'title' => __( 'Edit Account', 'woocommerce' ), - 'desc' => __( 'Endpoint for the My Account → Edit Account page', 'woocommerce' ), - 'id' => 'woocommerce_myaccount_edit_account_endpoint', - 'type' => 'text', - 'default' => 'edit-account', - 'desc_tip' => true, + 'title' => __( 'Edit Account', 'woocommerce' ), + 'desc' => __( 'Endpoint for the My Account → Edit Account page', 'woocommerce' ), + 'id' => 'woocommerce_myaccount_edit_account_endpoint', + 'type' => 'text', + 'default' => 'edit-account', + 'desc_tip' => true, ), array( - 'title' => __( 'Edit Address', 'woocommerce' ), - 'desc' => __( 'Endpoint for the My Account → Edit Address page', 'woocommerce' ), - 'id' => 'woocommerce_myaccount_edit_address_endpoint', - 'type' => 'text', - 'default' => 'edit-address', - 'desc_tip' => true, + 'title' => __( 'Edit Address', 'woocommerce' ), + 'desc' => __( 'Endpoint for the My Account → Edit Address page', 'woocommerce' ), + 'id' => 'woocommerce_myaccount_edit_address_endpoint', + 'type' => 'text', + 'default' => 'edit-address', + 'desc_tip' => true, ), array( - 'title' => __( 'Lost Password', 'woocommerce' ), - 'desc' => __( 'Endpoint for the My Account → Lost Password page', 'woocommerce' ), - 'id' => 'woocommerce_myaccount_lost_password_endpoint', - 'type' => 'text', - 'default' => 'lost-password', - 'desc_tip' => true, + 'title' => __( 'Lost Password', 'woocommerce' ), + 'desc' => __( 'Endpoint for the My Account → Lost Password page', 'woocommerce' ), + 'id' => 'woocommerce_myaccount_lost_password_endpoint', + 'type' => 'text', + 'default' => 'lost-password', + 'desc_tip' => true, ), array( 'title' => __( 'Logout', 'woocommerce' ), - 'desc' => __( 'Endpoint for the triggering logout. You can add this to your menus via a custom link: yoursite.com/?customer-logout=true', 'woocommerce' ), - 'id' => 'woocommerce_logout_endpoint', - 'type' => 'text', - 'default' => 'customer-logout', - 'desc_tip' => true, + 'desc' => __( 'Endpoint for the triggering logout. You can add this to your menus via a custom link: yoursite.com/?customer-logout=true', 'woocommerce' ), + 'id' => 'woocommerce_logout_endpoint', + 'type' => 'text', + 'default' => 'customer-logout', + 'desc_tip' => true, ), array( 'type' => 'sectionend', 'id' => 'account_endpoint_options' ), @@ -153,10 +153,12 @@ class WC_Settings_Accounts extends WC_Settings_Page { array( 'type' => 'sectionend', 'id' => 'account_registration_options'), - )); // End pages settings + ) ); + + return apply_filters( 'woocommerce_get_settings_' . $this->id, $settings ); } } endif; -return new WC_Settings_Accounts(); \ No newline at end of file +return new WC_Settings_Accounts(); diff --git a/includes/admin/settings/class-wc-settings-checkout.php b/includes/admin/settings/class-wc-settings-checkout.php index f7afebac65c..0702ee142f3 100644 --- a/includes/admin/settings/class-wc-settings-checkout.php +++ b/includes/admin/settings/class-wc-settings-checkout.php @@ -2,9 +2,9 @@ /** * WooCommerce Shipping Settings * - * @author WooThemes - * @category Admin - * @package WooCommerce/Admin + * @author WooThemes + * @category Admin + * @package WooCommerce/Admin * @version 2.1.0 */ @@ -21,8 +21,9 @@ class WC_Settings_Payment_Gateways extends WC_Settings_Page { * Constructor. */ public function __construct() { + $this->id = 'checkout'; - $this->label = __( 'Checkout', 'woocommerce' ); + $this->label = _x( 'Checkout', 'Settings tab label', 'woocommerce' ); add_filter( 'woocommerce_settings_tabs_array', array( $this, 'add_settings_page' ), 20 ); add_action( 'woocommerce_sections_' . $this->id, array( $this, 'output_sections' ) ); @@ -37,6 +38,7 @@ class WC_Settings_Payment_Gateways extends WC_Settings_Page { * @return array */ public function get_sections() { + $sections = array( '' => __( 'Checkout Options', 'woocommerce' ) ); @@ -51,7 +53,7 @@ class WC_Settings_Payment_Gateways extends WC_Settings_Page { $sections[ strtolower( get_class( $gateway ) ) ] = esc_html( $title ); } - return $sections; + return apply_filters( 'woocommerce_get_sections_' . $this->id, $sections ); } /** @@ -60,86 +62,86 @@ class WC_Settings_Payment_Gateways extends WC_Settings_Page { * @return array */ public function get_settings() { - return apply_filters( 'woocommerce_payment_gateways_settings', array( + $settings = apply_filters( 'woocommerce_payment_gateways_settings', array( array( 'title' => __( 'Checkout Process', 'woocommerce' ), 'type' => 'title', 'id' => 'checkout_process_options' ), array( - 'title' => __( 'Coupons', 'woocommerce' ), - 'desc' => __( 'Enable the use of coupons', 'woocommerce' ), - 'id' => 'woocommerce_enable_coupons', + 'title' => __( 'Coupons', 'woocommerce' ), + 'desc' => __( 'Enable the use of coupons', 'woocommerce' ), + 'id' => 'woocommerce_enable_coupons', + 'default' => 'yes', + 'type' => 'checkbox', + 'desc_tip' => __( 'Coupons can be applied from the cart and checkout pages.', 'woocommerce' ), + 'autoload' => false + ), + + array( + 'title' => _x( 'Checkout', 'Settings group label', 'woocommerce' ), + 'desc' => __( 'Enable guest checkout', 'woocommerce' ), + 'desc_tip' => __( 'Allows customers to checkout without creating an account.', 'woocommerce' ), + 'id' => 'woocommerce_enable_guest_checkout', 'default' => 'yes', 'type' => 'checkbox', - 'desc_tip' => __( 'Coupons can be applied from the cart and checkout pages.', 'woocommerce' ), + 'checkboxgroup' => 'start', 'autoload' => false ), array( - 'title' => __( 'Checkout', 'woocommerce' ), - 'desc' => __( 'Enable guest checkout', 'woocommerce' ), - 'desc_tip' => __( 'Allows customers to checkout without creating an account.', 'woocommerce' ), - 'id' => 'woocommerce_enable_guest_checkout', - 'default' => 'yes', - 'type' => 'checkbox', - 'checkboxgroup' => 'start', - 'autoload' => false - ), - - array( - 'desc' => __( 'Force secure checkout', 'woocommerce' ), - 'id' => 'woocommerce_force_ssl_checkout', - 'default' => 'no', - 'type' => 'checkbox', - 'checkboxgroup' => '', + 'desc' => __( 'Force secure checkout', 'woocommerce' ), + 'id' => 'woocommerce_force_ssl_checkout', + 'default' => 'no', + 'type' => 'checkbox', + 'checkboxgroup' => '', 'show_if_checked' => 'option', - 'desc_tip' => __( 'Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required).', 'woocommerce' ), + 'desc_tip' => __( 'Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required).', 'woocommerce' ), ), array( - 'desc' => __( 'Un-force HTTPS when leaving the checkout', 'woocommerce' ), - 'id' => 'woocommerce_unforce_ssl_checkout', - 'default' => 'no', - 'type' => 'checkbox', - 'checkboxgroup' => 'end', + 'desc' => __( 'Force HTTP when leaving the checkout', 'woocommerce' ), + 'id' => 'woocommerce_unforce_ssl_checkout', + 'default' => 'no', + 'type' => 'checkbox', + 'checkboxgroup' => 'end', 'show_if_checked' => 'yes', ), array( 'type' => 'sectionend', 'id' => 'checkout_process_options'), - array( 'title' => __( 'Checkout Pages', 'woocommerce' ), 'desc' => __( 'These pages need to be set so that WooCommerce knows where to send users to checkout.', 'woocommerce' ), 'type' => 'title', 'id' => 'checkout_page_options' ), + array( 'title' => __( 'Checkout Pages', 'woocommerce' ), 'desc' => __( 'These pages need to be set so that WooCommerce knows where to send users to checkout.', 'woocommerce' ), 'type' => 'title', 'id' => 'checkout_page_options' ), array( - 'title' => __( 'Cart Page', 'woocommerce' ), - 'desc' => __( 'Page contents:', 'woocommerce' ) . ' [' . apply_filters( 'woocommerce_cart_shortcode_tag', 'woocommerce_cart' ) . ']', - 'id' => 'woocommerce_cart_page_id', - 'type' => 'single_select_page', - 'default' => '', - 'class' => 'chosen_select_nostd', - 'css' => 'min-width:300px;', - 'desc_tip' => true, + 'title' => __( 'Cart Page', 'woocommerce' ), + 'desc' => __( 'Page contents:', 'woocommerce' ) . ' [' . apply_filters( 'woocommerce_cart_shortcode_tag', 'woocommerce_cart' ) . ']', + 'id' => 'woocommerce_cart_page_id', + 'type' => 'single_select_page', + 'default' => '', + 'class' => 'chosen_select_nostd', + 'css' => 'min-width:300px;', + 'desc_tip' => true, ), array( - 'title' => __( 'Checkout Page', 'woocommerce' ), - 'desc' => __( 'Page contents:', 'woocommerce' ) . ' [' . apply_filters( 'woocommerce_checkout_shortcode_tag', 'woocommerce_checkout' ) . ']', - 'id' => 'woocommerce_checkout_page_id', - 'type' => 'single_select_page', - 'default' => '', - 'class' => 'chosen_select_nostd', - 'css' => 'min-width:300px;', - 'desc_tip' => true, + 'title' => __( 'Checkout Page', 'woocommerce' ), + 'desc' => __( 'Page contents:', 'woocommerce' ) . ' [' . apply_filters( 'woocommerce_checkout_shortcode_tag', 'woocommerce_checkout' ) . ']', + 'id' => 'woocommerce_checkout_page_id', + 'type' => 'single_select_page', + 'default' => '', + 'class' => 'chosen_select_nostd', + 'css' => 'min-width:300px;', + 'desc_tip' => true, ), array( - 'title' => __( 'Terms and Conditions', 'woocommerce' ), - 'desc' => __( 'If you define a "Terms" page the customer will be asked if they accept them when checking out.', 'woocommerce' ), - 'id' => 'woocommerce_terms_page_id', - 'default' => '', - 'class' => 'chosen_select_nostd', - 'css' => 'min-width:300px;', - 'type' => 'single_select_page', - 'desc_tip' => true, - 'autoload' => false + 'title' => __( 'Terms and Conditions', 'woocommerce' ), + 'desc' => __( 'If you define a "Terms" page the customer will be asked if they accept them when checking out.', 'woocommerce' ), + 'id' => 'woocommerce_terms_page_id', + 'default' => '', + 'class' => 'chosen_select_nostd', + 'css' => 'min-width:300px;', + 'type' => 'single_select_page', + 'desc_tip' => true, + 'autoload' => false ), array( 'type' => 'sectionend', 'id' => 'checkout_page_options' ), @@ -147,21 +149,21 @@ class WC_Settings_Payment_Gateways extends WC_Settings_Page { array( 'title' => __( 'Checkout Endpoints', 'woocommerce' ), 'type' => 'title', 'desc' => __( 'Endpoints are appended to your page URLs to handle specific actions during the checkout process. They should be unique.', 'woocommerce' ), 'id' => 'account_endpoint_options' ), array( - 'title' => __( 'Pay', 'woocommerce' ), - 'desc' => __( 'Endpoint for the Checkout → Pay page', 'woocommerce' ), - 'id' => 'woocommerce_checkout_pay_endpoint', - 'type' => 'text', - 'default' => 'order-pay', - 'desc_tip' => true, + 'title' => __( 'Pay', 'woocommerce' ), + 'desc' => __( 'Endpoint for the Checkout → Pay page', 'woocommerce' ), + 'id' => 'woocommerce_checkout_pay_endpoint', + 'type' => 'text', + 'default' => 'order-pay', + 'desc_tip' => true, ), array( - 'title' => __( 'Order Received', 'woocommerce' ), - 'desc' => __( 'Endpoint for the Checkout → Pay page', 'woocommerce' ), - 'id' => 'woocommerce_checkout_order_received_endpoint', - 'type' => 'text', - 'default' => 'order-received', - 'desc_tip' => true, + 'title' => __( 'Order Received', 'woocommerce' ), + 'desc' => __( 'Endpoint for the Checkout → Order Received page', 'woocommerce' ), + 'id' => 'woocommerce_checkout_order_received_endpoint', + 'type' => 'text', + 'default' => 'order-received', + 'desc_tip' => true, ), array( @@ -181,7 +183,9 @@ class WC_Settings_Payment_Gateways extends WC_Settings_Page { array( 'type' => 'sectionend', 'id' => 'payment_gateways_options' ), - )); // End payment_gateway settings + ) ); + + return apply_filters( 'woocommerce_get_settings_' . $this->id, $settings ); } /** @@ -194,7 +198,9 @@ class WC_Settings_Payment_Gateways extends WC_Settings_Page { $payment_gateways = WC()->payment_gateways->payment_gateways(); if ( $current_section ) { + foreach ( $payment_gateways as $gateway ) { + if ( strtolower( get_class( $gateway ) ) == strtolower( $current_section ) ) { $gateway->admin_options(); break; @@ -209,14 +215,11 @@ class WC_Settings_Payment_Gateways extends WC_Settings_Page { /** * Output payment gateway settings. - * - * @access public - * @return void */ public function payment_gateways_setting() { ?> - + @@ -237,46 +240,53 @@ class WC_Settings_Payment_Gateways extends WC_Settings_Page { - payment_gateways->payment_gateways() as $gateway ) { + foreach ( WC()->payment_gateways->payment_gateways() as $gateway ) { - echo ''; + echo ''; + + foreach ( $columns as $key => $column ) { - foreach ( $columns as $key => $column ) { switch ( $key ) { + case 'default' : echo ''; + id ), false ) . ' /> + + '; break; + case 'name' : echo ''; + ' . $gateway->get_title() . ' + '; break; + case 'id' : echo ''; + ' . esc_html( $gateway->id ) . ' + '; break; + case 'status' : echo ''; + echo ''; break; + case 'settings' : echo ''; + ' . __( 'Settings', 'woocommerce' ) . ' + '; break; + default : do_action( 'woocommerce_payment_gateways_setting_column_' . $key, $gateway ); break; @@ -284,8 +294,8 @@ class WC_Settings_Payment_Gateways extends WC_Settings_Page { } echo ''; - } - ?> + } + ?>
    - id ), false ) . ' /> - - - ' . $gateway->get_title() . ' - - ' . esc_html( $gateway->id ) . ' - '; - if ( $gateway->enabled == 'yes' ) - echo '' . __ ( 'Enabled', 'woocommerce' ) . ''; - else - echo '-'; + if ( $gateway->enabled == 'yes' ) + echo '' . __ ( 'Enabled', 'woocommerce' ) . ''; + else + echo '-'; - echo ' - ' . __( 'Settings', 'woocommerce' ) . ' -
    @@ -319,4 +329,4 @@ class WC_Settings_Payment_Gateways extends WC_Settings_Page { endif; -return new WC_Settings_Payment_Gateways(); \ No newline at end of file +return new WC_Settings_Payment_Gateways(); diff --git a/includes/admin/settings/class-wc-settings-emails.php b/includes/admin/settings/class-wc-settings-emails.php index 45f7f3e4eef..a0ff2f45736 100644 --- a/includes/admin/settings/class-wc-settings-emails.php +++ b/includes/admin/settings/class-wc-settings-emails.php @@ -2,9 +2,9 @@ /** * WooCommerce Email Settings * - * @author WooThemes - * @category Admin - * @package WooCommerce/Admin + * @author WooThemes + * @category Admin + * @package WooCommerce/Admin * @version 2.1.0 */ @@ -36,21 +36,23 @@ class WC_Settings_Emails extends WC_Settings_Page { * @return array */ public function get_sections() { + $sections = array( - '' => __( 'Email Options', 'woocommerce' ) + '' => __( 'Email Options', 'woocommerce' ) ); // Define emails that can be customised here - $mailer = WC()->mailer(); - $email_templates = $mailer->get_emails(); + $mailer = WC()->mailer(); + $email_templates = $mailer->get_emails(); foreach ( $email_templates as $email ) { + $title = empty( $email->title ) ? ucfirst( $email->id ) : ucfirst( $email->title ); $sections[ strtolower( get_class( $email ) ) ] = esc_html( $title ); } - return $sections; + return apply_filters( 'woocommerce_get_sections_' . $this->id, $sections ); } /** @@ -59,102 +61,104 @@ class WC_Settings_Emails extends WC_Settings_Page { * @return array */ public function get_settings() { - return apply_filters('woocommerce_email_settings', array( + $settings = apply_filters('woocommerce_email_settings', array( array( 'type' => 'sectionend', 'id' => 'email_recipient_options' ), - array( 'title' => __( 'Email Sender Options', 'woocommerce' ), 'type' => 'title', 'desc' => __( 'The following options affect the sender (email address and name) used in WooCommerce emails.', 'woocommerce' ), 'id' => 'email_options' ), + array( 'title' => __( 'Email Sender Options', 'woocommerce' ), 'type' => 'title', 'desc' => __( 'The following options affect the sender (email address and name) used in WooCommerce emails.', 'woocommerce' ), 'id' => 'email_options' ), array( - 'title' => __( '"From" Name', 'woocommerce' ), - 'desc' => '', - 'id' => 'woocommerce_email_from_name', - 'type' => 'text', - 'css' => 'min-width:300px;', - 'default' => esc_attr(get_bloginfo('title')), - 'autoload' => false + 'title' => __( '"From" Name', 'woocommerce' ), + 'desc' => '', + 'id' => 'woocommerce_email_from_name', + 'type' => 'text', + 'css' => 'min-width:300px;', + 'default' => esc_attr(get_bloginfo('title')), + 'autoload' => false ), array( - 'title' => __( '"From" Email Address', 'woocommerce' ), - 'desc' => '', - 'id' => 'woocommerce_email_from_address', - 'type' => 'email', + 'title' => __( '"From" Email Address', 'woocommerce' ), + 'desc' => '', + 'id' => 'woocommerce_email_from_address', + 'type' => 'email', 'custom_attributes' => array( - 'multiple' => 'multiple' + 'multiple' => 'multiple' ), - 'css' => 'min-width:300px;', - 'default' => get_option('admin_email'), - 'autoload' => false + 'css' => 'min-width:300px;', + 'default' => get_option('admin_email'), + 'autoload' => false ), array( 'type' => 'sectionend', 'id' => 'email_options' ), - array( 'title' => __( 'Email Template', 'woocommerce' ), 'type' => 'title', 'desc' => sprintf(__( 'This section lets you customise the WooCommerce emails. Click here to preview your email template. For more advanced control copy woocommerce/templates/emails/ to yourtheme/woocommerce/emails/.', 'woocommerce' ), wp_nonce_url(admin_url('?preview_woocommerce_mail=true'), 'preview-mail')), 'id' => 'email_template_options' ), + array( 'title' => __( 'Email Template', 'woocommerce' ), 'type' => 'title', 'desc' => sprintf(__( 'This section lets you customise the WooCommerce emails. Click here to preview your email template. For more advanced control copy woocommerce/templates/emails/ to yourtheme/woocommerce/emails/.', 'woocommerce' ), wp_nonce_url(admin_url('?preview_woocommerce_mail=true'), 'preview-mail')), 'id' => 'email_template_options' ), array( - 'title' => __( 'Header Image', 'woocommerce' ), - 'desc' => sprintf(__( 'Enter a URL to an image you want to show in the email\'s header. Upload your image using the media uploader.', 'woocommerce' ), admin_url('media-new.php')), - 'id' => 'woocommerce_email_header_image', - 'type' => 'text', - 'css' => 'min-width:300px;', - 'default' => '', - 'autoload' => false + 'title' => __( 'Header Image', 'woocommerce' ), + 'desc' => sprintf(__( 'Enter a URL to an image you want to show in the email\'s header. Upload your image using the media uploader.', 'woocommerce' ), admin_url('media-new.php')), + 'id' => 'woocommerce_email_header_image', + 'type' => 'text', + 'css' => 'min-width:300px;', + 'default' => '', + 'autoload' => false ), array( - 'title' => __( 'Email Footer Text', 'woocommerce' ), - 'desc' => __( 'The text to appear in the footer of WooCommerce emails.', 'woocommerce' ), - 'id' => 'woocommerce_email_footer_text', - 'css' => 'width:100%; height: 75px;', - 'type' => 'textarea', - 'default' => get_bloginfo('title') . ' - ' . __( 'Powered by WooCommerce', 'woocommerce' ), - 'autoload' => false + 'title' => __( 'Email Footer Text', 'woocommerce' ), + 'desc' => __( 'The text to appear in the footer of WooCommerce emails.', 'woocommerce' ), + 'id' => 'woocommerce_email_footer_text', + 'css' => 'width:100%; height: 75px;', + 'type' => 'textarea', + 'default' => get_bloginfo('title') . ' - ' . __( 'Powered by WooCommerce', 'woocommerce' ), + 'autoload' => false ), array( - 'title' => __( 'Base Colour', 'woocommerce' ), - 'desc' => __( 'The base colour for WooCommerce email templates. Default #557da1.', 'woocommerce' ), - 'id' => 'woocommerce_email_base_color', - 'type' => 'color', - 'css' => 'width:6em;', - 'default' => '#557da1', - 'autoload' => false + 'title' => __( 'Base Colour', 'woocommerce' ), + 'desc' => __( 'The base colour for WooCommerce email templates. Default #557da1.', 'woocommerce' ), + 'id' => 'woocommerce_email_base_color', + 'type' => 'color', + 'css' => 'width:6em;', + 'default' => '#557da1', + 'autoload' => false ), array( - 'title' => __( 'Background Colour', 'woocommerce' ), - 'desc' => __( 'The background colour for WooCommerce email templates. Default #f5f5f5.', 'woocommerce' ), - 'id' => 'woocommerce_email_background_color', - 'type' => 'color', - 'css' => 'width:6em;', - 'default' => '#f5f5f5', - 'autoload' => false + 'title' => __( 'Background Colour', 'woocommerce' ), + 'desc' => __( 'The background colour for WooCommerce email templates. Default #f5f5f5.', 'woocommerce' ), + 'id' => 'woocommerce_email_background_color', + 'type' => 'color', + 'css' => 'width:6em;', + 'default' => '#f5f5f5', + 'autoload' => false ), array( - 'title' => __( 'Email Body Background Colour', 'woocommerce' ), - 'desc' => __( 'The main body background colour. Default #fdfdfd.', 'woocommerce' ), - 'id' => 'woocommerce_email_body_background_color', - 'type' => 'color', - 'css' => 'width:6em;', - 'default' => '#fdfdfd', - 'autoload' => false + 'title' => __( 'Email Body Background Colour', 'woocommerce' ), + 'desc' => __( 'The main body background colour. Default #fdfdfd.', 'woocommerce' ), + 'id' => 'woocommerce_email_body_background_color', + 'type' => 'color', + 'css' => 'width:6em;', + 'default' => '#fdfdfd', + 'autoload' => false ), array( - 'title' => __( 'Email Body Text Colour', 'woocommerce' ), - 'desc' => __( 'The main body text colour. Default #505050.', 'woocommerce' ), - 'id' => 'woocommerce_email_text_color', - 'type' => 'color', - 'css' => 'width:6em;', - 'default' => '#505050', - 'autoload' => false + 'title' => __( 'Email Body Text Colour', 'woocommerce' ), + 'desc' => __( 'The main body text colour. Default #505050.', 'woocommerce' ), + 'id' => 'woocommerce_email_text_color', + 'type' => 'color', + 'css' => 'width:6em;', + 'default' => '#505050', + 'autoload' => false ), array( 'type' => 'sectionend', 'id' => 'email_template_options' ), - )); // End email settings + ) ); + + return apply_filters( 'woocommerce_get_settings_' . $this->id, $settings ); } /** @@ -164,17 +168,19 @@ class WC_Settings_Emails extends WC_Settings_Page { global $current_section; // Define emails that can be customised here - $mailer = WC()->mailer(); - $email_templates = $mailer->get_emails(); + $mailer = WC()->mailer(); + $email_templates = $mailer->get_emails(); if ( $current_section ) { - foreach ( $email_templates as $email ) { + + foreach ( $email_templates as $email ) { + if ( strtolower( get_class( $email ) ) == $current_section ) { $email->admin_options(); break; } } - } else { + } else { $settings = $this->get_settings(); WC_Admin_Settings::output_fields( $settings ); @@ -198,6 +204,7 @@ class WC_Settings_Emails extends WC_Settings_Page { $mailer = WC()->mailer(); if ( class_exists( $current_section ) ) { + $current_section_class = new $current_section(); do_action( 'woocommerce_update_options_' . $this->id . '_' . $current_section_class->id ); WC()->mailer()->init(); @@ -210,4 +217,4 @@ class WC_Settings_Emails extends WC_Settings_Page { endif; -return new WC_Settings_Emails(); \ No newline at end of file +return new WC_Settings_Emails(); diff --git a/includes/admin/settings/class-wc-settings-general.php b/includes/admin/settings/class-wc-settings-general.php index e3bc9517f58..fa8fa9746ba 100644 --- a/includes/admin/settings/class-wc-settings-general.php +++ b/includes/admin/settings/class-wc-settings-general.php @@ -2,13 +2,15 @@ /** * WooCommerce General Settings * - * @author WooThemes - * @category Admin - * @package WooCommerce/Admin + * @author WooThemes + * @category Admin + * @package WooCommerce/Admin * @version 2.1.0 */ -if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly +if ( ! defined( 'ABSPATH' ) ) { + exit; // Exit if accessed directly +} if ( ! class_exists( 'WC_Settings_General' ) ) : @@ -21,6 +23,7 @@ class WC_Settings_General extends WC_Settings_Page { * Constructor. */ public function __construct() { + $this->id = 'general'; $this->label = __( 'General', 'woocommerce' ); @@ -28,8 +31,9 @@ class WC_Settings_General extends WC_Settings_Page { add_action( 'woocommerce_settings_' . $this->id, array( $this, 'output' ) ); add_action( 'woocommerce_settings_save_' . $this->id, array( $this, 'save' ) ); - if ( ( $styles = WC_Frontend_Scripts::get_styles() ) && array_key_exists( 'woocommerce-general', $styles ) ) + if ( ( $styles = WC_Frontend_Scripts::get_styles() ) && array_key_exists( 'woocommerce-general', $styles ) ) { add_action( 'woocommerce_admin_field_frontend_styles', array( $this, 'frontend_styles_setting' ) ); + } } /** @@ -38,65 +42,67 @@ class WC_Settings_General extends WC_Settings_Page { * @return array */ public function get_settings() { + $currency_code_options = get_woocommerce_currencies(); - foreach ( $currency_code_options as $code => $name ) + foreach ( $currency_code_options as $code => $name ) { $currency_code_options[ $code ] = $name . ' (' . get_woocommerce_currency_symbol( $code ) . ')'; + } - return apply_filters( 'woocommerce_general_settings', array( + $settings = apply_filters( 'woocommerce_general_settings', array( array( 'title' => __( 'General Options', 'woocommerce' ), 'type' => 'title', 'desc' => '', 'id' => 'general_options' ), array( - 'title' => __( 'Base Location', 'woocommerce' ), - 'desc' => __( 'This is the base location for your business. Tax rates will be based on this country.', 'woocommerce' ), - 'id' => 'woocommerce_default_country', - 'css' => 'min-width:350px;', - 'default' => 'GB', - 'type' => 'single_select_country', - 'desc_tip' => true, + 'title' => __( 'Base Location', 'woocommerce' ), + 'desc' => __( 'This is the base location for your business. Tax rates will be based on this country.', 'woocommerce' ), + 'id' => 'woocommerce_default_country', + 'css' => 'min-width:350px;', + 'default' => 'GB', + 'type' => 'single_select_country', + 'desc_tip' => true, ), array( - 'title' => __( 'Selling Location(s)', 'woocommerce' ), - 'desc' => __( 'This option lets you limit which countries you are willing to sell to.', 'woocommerce' ), - 'id' => 'woocommerce_allowed_countries', - 'default' => 'all', - 'type' => 'select', - 'class' => 'chosen_select', - 'css' => 'min-width: 350px;', - 'desc_tip' => true, - 'options' => array( + 'title' => __( 'Selling Location(s)', 'woocommerce' ), + 'desc' => __( 'This option lets you limit which countries you are willing to sell to.', 'woocommerce' ), + 'id' => 'woocommerce_allowed_countries', + 'default' => 'all', + 'type' => 'select', + 'class' => 'chosen_select', + 'css' => 'min-width: 350px;', + 'desc_tip' => true, + 'options' => array( 'all' => __( 'Sell to all countries', 'woocommerce' ), 'specific' => __( 'Sell to specific countries only', 'woocommerce' ) ) ), array( - 'title' => __( 'Specific Countries', 'woocommerce' ), - 'desc' => '', - 'id' => 'woocommerce_specific_allowed_countries', - 'css' => 'min-width: 350px;', - 'default' => '', - 'type' => 'multi_select_countries' + 'title' => __( 'Specific Countries', 'woocommerce' ), + 'desc' => '', + 'id' => 'woocommerce_specific_allowed_countries', + 'css' => 'min-width: 350px;', + 'default' => '', + 'type' => 'multi_select_countries' ), array( - 'title' => __( 'Store Notice', 'woocommerce' ), - 'desc' => __( 'Enable site-wide store notice text', 'woocommerce' ), - 'id' => 'woocommerce_demo_store', - 'default' => 'no', - 'type' => 'checkbox' + 'title' => __( 'Store Notice', 'woocommerce' ), + 'desc' => __( 'Enable site-wide store notice text', 'woocommerce' ), + 'id' => 'woocommerce_demo_store', + 'default' => 'no', + 'type' => 'checkbox' ), array( - 'title' => __( 'Store Notice Text', 'woocommerce' ), - 'desc' => '', - 'id' => 'woocommerce_demo_store_notice', - 'default' => __( 'This is a demo store for testing purposes — no orders shall be fulfilled.', 'woocommerce' ), - 'type' => 'text', - 'css' => 'min-width:300px;', - 'autoload' => false + 'title' => __( 'Store Notice Text', 'woocommerce' ), + 'desc' => '', + 'id' => 'woocommerce_demo_store_notice', + 'default' => __( 'This is a demo store for testing purposes — no orders shall be fulfilled.', 'woocommerce' ), + 'type' => 'text', + 'css' => 'min-width:300px;', + 'autoload' => false ), array( @@ -109,117 +115,117 @@ class WC_Settings_General extends WC_Settings_Page { array( 'type' => 'sectionend', 'id' => 'general_options'), - array( 'title' => __( 'Currency Options', 'woocommerce' ), 'type' => 'title', 'desc' => __( 'The following options affect how prices are displayed on the frontend.', 'woocommerce' ), 'id' => 'pricing_options' ), + array( 'title' => __( 'Currency Options', 'woocommerce' ), 'type' => 'title', 'desc' => __( 'The following options affect how prices are displayed on the frontend.', 'woocommerce' ), 'id' => 'pricing_options' ), array( - 'title' => __( 'Currency', 'woocommerce' ), - 'desc' => __( "This controls what currency prices are listed at in the catalog and which currency gateways will take payments in.", 'woocommerce' ), - 'id' => 'woocommerce_currency', - 'css' => 'min-width:350px;', - 'default' => 'GBP', - 'type' => 'select', - 'class' => 'chosen_select', - 'desc_tip' => true, - 'options' => $currency_code_options + 'title' => __( 'Currency', 'woocommerce' ), + 'desc' => __( 'This controls what currency prices are listed at in the catalog and which currency gateways will take payments in.', 'woocommerce' ), + 'id' => 'woocommerce_currency', + 'css' => 'min-width:350px;', + 'default' => 'GBP', + 'type' => 'select', + 'class' => 'chosen_select', + 'desc_tip' => true, + 'options' => $currency_code_options ), array( - 'title' => __( 'Currency Position', 'woocommerce' ), - 'desc' => __( 'This controls the position of the currency symbol.', 'woocommerce' ), - 'id' => 'woocommerce_currency_pos', - 'css' => 'min-width:350px;', - 'class' => 'chosen_select', - 'default' => 'left', - 'type' => 'select', - 'options' => array( + 'title' => __( 'Currency Position', 'woocommerce' ), + 'desc' => __( 'This controls the position of the currency symbol.', 'woocommerce' ), + 'id' => 'woocommerce_currency_pos', + 'css' => 'min-width:350px;', + 'class' => 'chosen_select', + 'default' => 'left', + 'type' => 'select', + 'options' => array( 'left' => __( 'Left', 'woocommerce' ) . ' (' . get_woocommerce_currency_symbol() . '99.99)', 'right' => __( 'Right', 'woocommerce' ) . ' (99.99' . get_woocommerce_currency_symbol() . ')', 'left_space' => __( 'Left with space', 'woocommerce' ) . ' (' . get_woocommerce_currency_symbol() . ' 99.99)', 'right_space' => __( 'Right with space', 'woocommerce' ) . ' (99.99 ' . get_woocommerce_currency_symbol() . ')' ), - 'desc_tip' => true, + 'desc_tip' => true, ), array( - 'title' => __( 'Thousand Separator', 'woocommerce' ), - 'desc' => __( 'This sets the thousand separator of displayed prices.', 'woocommerce' ), - 'id' => 'woocommerce_price_thousand_sep', - 'css' => 'width:50px;', - 'default' => ',', - 'type' => 'text', - 'desc_tip' => true, + 'title' => __( 'Thousand Separator', 'woocommerce' ), + 'desc' => __( 'This sets the thousand separator of displayed prices.', 'woocommerce' ), + 'id' => 'woocommerce_price_thousand_sep', + 'css' => 'width:50px;', + 'default' => ',', + 'type' => 'text', + 'desc_tip' => true, ), array( - 'title' => __( 'Decimal Separator', 'woocommerce' ), - 'desc' => __( 'This sets the decimal separator of displayed prices.', 'woocommerce' ), - 'id' => 'woocommerce_price_decimal_sep', - 'css' => 'width:50px;', - 'default' => '.', - 'type' => 'text', - 'desc_tip' => true, + 'title' => __( 'Decimal Separator', 'woocommerce' ), + 'desc' => __( 'This sets the decimal separator of displayed prices.', 'woocommerce' ), + 'id' => 'woocommerce_price_decimal_sep', + 'css' => 'width:50px;', + 'default' => '.', + 'type' => 'text', + 'desc_tip' => true, ), array( - 'title' => __( 'Number of Decimals', 'woocommerce' ), - 'desc' => __( 'This sets the number of decimal points shown in displayed prices.', 'woocommerce' ), - 'id' => 'woocommerce_price_num_decimals', - 'css' => 'width:50px;', - 'default' => '2', - 'desc_tip' => true, - 'type' => 'number', + 'title' => __( 'Number of Decimals', 'woocommerce' ), + 'desc' => __( 'This sets the number of decimal points shown in displayed prices.', 'woocommerce' ), + 'id' => 'woocommerce_price_num_decimals', + 'css' => 'width:50px;', + 'default' => '2', + 'desc_tip' => true, + 'type' => 'number', 'custom_attributes' => array( - 'min' => 0, - 'step' => 1 + 'min' => 0, + 'step' => 1 ) ), array( 'type' => 'sectionend', 'id' => 'pricing_options' ), - array( 'title' => __( 'Styles and Scripts', 'woocommerce' ), 'type' => 'title', 'id' => 'script_styling_options' ), + array( 'title' => __( 'Styles and Scripts', 'woocommerce' ), 'type' => 'title', 'id' => 'script_styling_options' ), - array( 'type' => 'frontend_styles' ), + array( 'type' => 'frontend_styles' ), array( - 'title' => __( 'Scripts', 'woocommerce' ), - 'desc' => __( 'Enable Lightbox', 'woocommerce' ), - 'id' => 'woocommerce_enable_lightbox', - 'default' => 'yes', - 'desc_tip' => __( 'Include WooCommerce\'s lightbox. Product gallery images will open in a lightbox.', 'woocommerce' ), - 'type' => 'checkbox', - 'checkboxgroup' => 'start' + 'title' => __( 'Scripts', 'woocommerce' ), + 'desc' => __( 'Enable Lightbox', 'woocommerce' ), + 'id' => 'woocommerce_enable_lightbox', + 'default' => 'yes', + 'desc_tip' => __( 'Include WooCommerce\'s lightbox. Product gallery images will open in a lightbox.', 'woocommerce' ), + 'type' => 'checkbox', + 'checkboxgroup' => 'start' ), array( - 'desc' => __( 'Enable enhanced country select boxes', 'woocommerce' ), - 'id' => 'woocommerce_enable_chosen', - 'default' => 'yes', - 'type' => 'checkbox', - 'checkboxgroup' => 'end', - 'desc_tip' => __( 'This will enable a script allowing the country fields to be searchable.', 'woocommerce' ), - 'autoload' => false + 'desc' => __( 'Enable enhanced country select boxes', 'woocommerce' ), + 'id' => 'woocommerce_enable_chosen', + 'default' => 'yes', + 'type' => 'checkbox', + 'checkboxgroup' => 'end', + 'desc_tip' => __( 'This will enable a script allowing the country fields to be searchable.', 'woocommerce' ), + 'autoload' => false ), array( 'type' => 'sectionend', 'id' => 'script_styling_options' ), - )); // End general settings + ) ); + + return apply_filters( 'woocommerce_get_settings_' . $this->id, $settings ); } /** * Output the frontend styles settings. - * - * @access public - * @return void */ public function frontend_styles_setting() { + ?> - plugin_path() . '/assets/css/woocommerce-base.less'; - $css_file = WC()->plugin_path() . '/assets/css/woocommerce.css'; + $base_file = WC()->plugin_path() . '/assets/css/woocommerce-base.less'; + $css_file = WC()->plugin_path() . '/assets/css/woocommerce.css'; if ( is_writable( $base_file ) && is_writable( $css_file ) ) { @@ -227,41 +233,49 @@ class WC_Settings_General extends WC_Settings_Page { $colors = array_map( 'esc_attr', (array) get_option( 'woocommerce_frontend_css_colors' ) ); // Defaults - if ( empty( $colors['primary'] ) ) $colors['primary'] = '#ad74a2'; - if ( empty( $colors['secondary'] ) ) $colors['secondary'] = '#f7f6f7'; - if ( empty( $colors['highlight'] ) ) $colors['highlight'] = '#85ad74'; - if ( empty( $colors['content_bg'] ) ) $colors['content_bg'] = '#ffffff'; - if ( empty( $colors['subtext'] ) ) $colors['subtext'] = '#777777'; + if ( empty( $colors['primary'] ) ) { + $colors['primary'] = '#ad74a2'; + } + if ( empty( $colors['secondary'] ) ) { + $colors['secondary'] = '#f7f6f7'; + } + if ( empty( $colors['highlight'] ) ) { + $colors['highlight'] = '#85ad74'; + } + if ( empty( $colors['content_bg'] ) ) { + $colors['content_bg'] = '#ffffff'; + } + if ( empty( $colors['subtext'] ) ) { + $colors['subtext'] = '#777777'; + } // Show inputs - $this->color_picker( __( 'Primary', 'woocommerce' ), 'woocommerce_frontend_css_primary', $colors['primary'], __( 'Call to action buttons/price slider/layered nav UI', 'woocommerce' ) ); - $this->color_picker( __( 'Secondary', 'woocommerce' ), 'woocommerce_frontend_css_secondary', $colors['secondary'], __( 'Buttons and tabs', 'woocommerce' ) ); - $this->color_picker( __( 'Highlight', 'woocommerce' ), 'woocommerce_frontend_css_highlight', $colors['highlight'], __( 'Price labels and Sale Flashes', 'woocommerce' ) ); - $this->color_picker( __( 'Content', 'woocommerce' ), 'woocommerce_frontend_css_content_bg', $colors['content_bg'], __( 'Your themes page background - used for tab active states', 'woocommerce' ) ); - $this->color_picker( __( 'Subtext', 'woocommerce' ), 'woocommerce_frontend_css_subtext', $colors['subtext'], __( 'Used for certain text and asides - breadcrumbs, small text etc.', 'woocommerce' ) ); + $this->color_picker( __( 'Primary', 'woocommerce' ), 'woocommerce_frontend_css_primary', $colors['primary'], __( 'Call to action buttons/price slider/layered nav UI', 'woocommerce' ) ); + $this->color_picker( __( 'Secondary', 'woocommerce' ), 'woocommerce_frontend_css_secondary', $colors['secondary'], __( 'Buttons and tabs', 'woocommerce' ) ); + $this->color_picker( __( 'Highlight', 'woocommerce' ), 'woocommerce_frontend_css_highlight', $colors['highlight'], __( 'Price labels and Sale Flashes', 'woocommerce' ) ); + $this->color_picker( __( 'Content', 'woocommerce' ), 'woocommerce_frontend_css_content_bg', $colors['content_bg'], __( 'Your themes page background - used for tab active states', 'woocommerce' ) ); + $this->color_picker( __( 'Subtext', 'woocommerce' ), 'woocommerce_frontend_css_subtext', $colors['subtext'], __( 'Used for certain text and asides - breadcrumbs, small text etc.', 'woocommerce' ) ); - } else { - echo '' . __( 'To edit colours woocommerce/assets/css/woocommerce-base.less and woocommerce.css need to be writable. See the Codex for more information.', 'woocommerce' ) . ''; - } + } else { + echo '' . __( 'To edit colours woocommerce/assets/css/woocommerce-base.less and woocommerce.css need to be writable. See the Codex for more information.', 'woocommerce' ) . ''; + } - ?> + ?> ' . esc_html( $name ) . ' -
    -
    '; +
    + '; } /** @@ -275,25 +289,39 @@ class WC_Settings_General extends WC_Settings_Page { if ( isset( $_POST['woocommerce_frontend_css_primary'] ) ) { // Save settings - $primary = ( ! empty( $_POST['woocommerce_frontend_css_primary'] ) ) ? wc_format_hex( $_POST['woocommerce_frontend_css_primary'] ) : ''; - $secondary = ( ! empty( $_POST['woocommerce_frontend_css_secondary'] ) ) ? wc_format_hex( $_POST['woocommerce_frontend_css_secondary'] ) : ''; - $highlight = ( ! empty( $_POST['woocommerce_frontend_css_highlight'] ) ) ? wc_format_hex( $_POST['woocommerce_frontend_css_highlight'] ) : ''; - $content_bg = ( ! empty( $_POST['woocommerce_frontend_css_content_bg'] ) ) ? wc_format_hex( $_POST['woocommerce_frontend_css_content_bg'] ) : ''; - $subtext = ( ! empty( $_POST['woocommerce_frontend_css_subtext'] ) ) ? wc_format_hex( $_POST['woocommerce_frontend_css_subtext'] ) : ''; + $primary = ( ! empty( $_POST['woocommerce_frontend_css_primary'] ) ) ? wc_format_hex( $_POST['woocommerce_frontend_css_primary'] ) : ''; + $secondary = ( ! empty( $_POST['woocommerce_frontend_css_secondary'] ) ) ? wc_format_hex( $_POST['woocommerce_frontend_css_secondary'] ) : ''; + $highlight = ( ! empty( $_POST['woocommerce_frontend_css_highlight'] ) ) ? wc_format_hex( $_POST['woocommerce_frontend_css_highlight'] ) : ''; + $content_bg = ( ! empty( $_POST['woocommerce_frontend_css_content_bg'] ) ) ? wc_format_hex( $_POST['woocommerce_frontend_css_content_bg'] ) : ''; + $subtext = ( ! empty( $_POST['woocommerce_frontend_css_subtext'] ) ) ? wc_format_hex( $_POST['woocommerce_frontend_css_subtext'] ) : ''; $colors = array( - 'primary' => $primary, - 'secondary' => $secondary, - 'highlight' => $highlight, - 'content_bg' => $content_bg, - 'subtext' => $subtext + 'primary' => $primary, + 'secondary' => $secondary, + 'highlight' => $highlight, + 'content_bg' => $content_bg, + 'subtext' => $subtext ); - $old_colors = get_option( 'woocommerce_frontend_css_colors' ); - update_option( 'woocommerce_frontend_css_colors', $colors ); + // Check the colors. + $valid_colors = true; + foreach ( $colors as $color ) { - if ( $old_colors != $colors ) - woocommerce_compile_less_styles(); + if ( ! preg_match( '/^#[a-f0-9]{6}$/i', $color ) ) { + $valid_colors = false; + WC_Admin_Settings::add_error( sprintf( __( 'Error saving the Frontend Styles, %s is not a valid color, please use only valid colors code.', 'woocommerce' ), $color ) ); + break; + } + } + + if ( $valid_colors ) { + $old_colors = get_option( 'woocommerce_frontend_css_colors' ); + update_option( 'woocommerce_frontend_css_colors', $colors ); + + if ( $old_colors != $colors ) { + woocommerce_compile_less_styles(); + } + } } } diff --git a/includes/admin/settings/class-wc-settings-integrations.php b/includes/admin/settings/class-wc-settings-integrations.php index de871fd412a..4557157ae26 100644 --- a/includes/admin/settings/class-wc-settings-integrations.php +++ b/includes/admin/settings/class-wc-settings-integrations.php @@ -2,9 +2,9 @@ /** * WooCommerce Integration Settings * - * @author WooThemes - * @category Admin - * @package WooCommerce/Admin + * @author WooThemes + * @category Admin + * @package WooCommerce/Admin * @version 2.1.0 */ @@ -21,6 +21,7 @@ class WC_Settings_Integrations extends WC_Settings_Page { * Constructor. */ public function __construct() { + $this->id = 'integration'; $this->label = __( 'Integration', 'woocommerce' ); @@ -44,8 +45,9 @@ class WC_Settings_Integrations extends WC_Settings_Page { $integrations = WC()->integrations->get_integrations(); - if ( ! $current_section ) + if ( ! $current_section && ! empty( $integrations ) ) { $current_section = current( $integrations )->id; + } foreach ( $integrations as $integration ) { $title = empty( $integration->method_title ) ? ucfirst( $integration->id ) : $integration->method_title; @@ -53,7 +55,7 @@ class WC_Settings_Integrations extends WC_Settings_Page { $sections[ strtolower( $integration->id ) ] = esc_html( $title ); } - return $sections; + return apply_filters( 'woocommerce_get_sections_' . $this->id, $sections ); } /** @@ -71,4 +73,4 @@ class WC_Settings_Integrations extends WC_Settings_Page { endif; -return new WC_Settings_Integrations(); \ No newline at end of file +return new WC_Settings_Integrations(); diff --git a/includes/admin/settings/class-wc-settings-page.php b/includes/admin/settings/class-wc-settings-page.php index fefcc162dcb..ef8a7db55f5 100644 --- a/includes/admin/settings/class-wc-settings-page.php +++ b/includes/admin/settings/class-wc-settings-page.php @@ -2,9 +2,9 @@ /** * WooCommerce Settings Page/Tab * - * @author WooThemes - * @category Admin - * @package WooCommerce/Admin + * @author WooThemes + * @category Admin + * @package WooCommerce/Admin * @version 2.1.0 */ @@ -35,7 +35,7 @@ class WC_Settings_Page { * @return array */ public function get_settings() { - return array(); + return apply_filters( 'woocommerce_get_settings_' . $this->id, array() ); } /** @@ -44,7 +44,7 @@ class WC_Settings_Page { * @return array */ public function get_sections() { - return array(); + return apply_filters( 'woocommerce_get_sections_' . $this->id, array() ); } /** @@ -55,15 +55,17 @@ class WC_Settings_Page { $sections = $this->get_sections(); - if ( empty( $sections ) ) + if ( empty( $sections ) ) { return; + } echo '
      '; $array_keys = array_keys( $sections ); - foreach ( $sections as $id => $label ) + foreach ( $sections as $id => $label ) { echo '
    • ' . $label . ' ' . ( end( $array_keys ) == $id ? '' : '|' ) . '
    • '; + } echo '

    '; } @@ -86,9 +88,10 @@ class WC_Settings_Page { $settings = $this->get_settings(); WC_Admin_Settings::save_fields( $settings ); - if ( $current_section ) - do_action( 'woocommerce_update_options_' . $this->id . '_' . $current_section ); + if ( $current_section ) { + do_action( 'woocommerce_update_options_' . $this->id . '_' . $current_section ); + } } } -endif; \ No newline at end of file +endif; diff --git a/includes/admin/settings/class-wc-settings-products.php b/includes/admin/settings/class-wc-settings-products.php index 9c2e3bb8188..87c8b59b8cc 100644 --- a/includes/admin/settings/class-wc-settings-products.php +++ b/includes/admin/settings/class-wc-settings-products.php @@ -2,9 +2,9 @@ /** * WooCommerce Product Settings * - * @author WooThemes - * @category Admin - * @package WooCommerce/Admin + * @author WooThemes + * @category Admin + * @package WooCommerce/Admin * @version 2.1.0 */ @@ -21,6 +21,7 @@ class WC_Settings_Products extends WC_Settings_Page { * Constructor. */ public function __construct() { + $this->id = 'products'; $this->label = __( 'Products', 'woocommerce' ); @@ -36,12 +37,13 @@ class WC_Settings_Products extends WC_Settings_Page { * @return array */ public function get_sections() { + $sections = array( '' => __( 'Product Options', 'woocommerce' ), 'inventory' => __( 'Inventory', 'woocommerce' ) ); - return $sections; + return apply_filters( 'woocommerce_get_sections_' . $this->id, $sections ); } /** @@ -71,112 +73,111 @@ class WC_Settings_Products extends WC_Settings_Page { * @return array */ public function get_settings( $current_section = '' ) { - if ( $current_section == 'inventory' ) { - return apply_filters('woocommerce_inventory_settings', array( + $settings = apply_filters( 'woocommerce_inventory_settings', array( - array( 'title' => __( 'Inventory Options', 'woocommerce' ), 'type' => 'title', 'desc' => '', 'id' => 'inventory_options' ), + array( 'title' => __( 'Inventory Options', 'woocommerce' ), 'type' => 'title', 'desc' => '', 'id' => 'inventory_options' ), array( - 'title' => __( 'Manage Stock', 'woocommerce' ), - 'desc' => __( 'Enable stock management', 'woocommerce' ), - 'id' => 'woocommerce_manage_stock', - 'default' => 'yes', - 'type' => 'checkbox' + 'title' => __( 'Manage Stock', 'woocommerce' ), + 'desc' => __( 'Enable stock management', 'woocommerce' ), + 'id' => 'woocommerce_manage_stock', + 'default' => 'yes', + 'type' => 'checkbox' ), array( - 'title' => __( 'Hold Stock (minutes)', 'woocommerce' ), - 'desc' => __( 'Hold stock (for unpaid orders) for x minutes. When this limit is reached, the pending order will be cancelled. Leave blank to disable.', 'woocommerce' ), - 'id' => 'woocommerce_hold_stock_minutes', - 'type' => 'number', + 'title' => __( 'Hold Stock (minutes)', 'woocommerce' ), + 'desc' => __( 'Hold stock (for unpaid orders) for x minutes. When this limit is reached, the pending order will be cancelled. Leave blank to disable.', 'woocommerce' ), + 'id' => 'woocommerce_hold_stock_minutes', + 'type' => 'number', 'custom_attributes' => array( - 'min' => 0, - 'step' => 1 + 'min' => 0, + 'step' => 1 ), - 'css' => 'width:50px;', - 'default' => '60', - 'autoload' => false + 'css' => 'width:50px;', + 'default' => '60', + 'autoload' => false ), array( - 'title' => __( 'Notifications', 'woocommerce' ), - 'desc' => __( 'Enable low stock notifications', 'woocommerce' ), - 'id' => 'woocommerce_notify_low_stock', - 'default' => 'yes', - 'type' => 'checkbox', + 'title' => __( 'Notifications', 'woocommerce' ), + 'desc' => __( 'Enable low stock notifications', 'woocommerce' ), + 'id' => 'woocommerce_notify_low_stock', + 'default' => 'yes', + 'type' => 'checkbox', 'checkboxgroup' => 'start', 'autoload' => false ), array( - 'desc' => __( 'Enable out of stock notifications', 'woocommerce' ), - 'id' => 'woocommerce_notify_no_stock', - 'default' => 'yes', - 'type' => 'checkbox', + 'desc' => __( 'Enable out of stock notifications', 'woocommerce' ), + 'id' => 'woocommerce_notify_no_stock', + 'default' => 'yes', + 'type' => 'checkbox', 'checkboxgroup' => 'end', 'autoload' => false ), array( - 'title' => __( 'Notification Recipient', 'woocommerce' ), - 'desc' => '', - 'id' => 'woocommerce_stock_email_recipient', - 'type' => 'email', - 'default' => get_option( 'admin_email' ), - 'autoload' => false + 'title' => __( 'Notification Recipient', 'woocommerce' ), + 'desc' => '', + 'id' => 'woocommerce_stock_email_recipient', + 'type' => 'email', + 'default' => get_option( 'admin_email' ), + 'autoload' => false ), array( - 'title' => __( 'Low Stock Threshold', 'woocommerce' ), - 'desc' => '', - 'id' => 'woocommerce_notify_low_stock_amount', - 'css' => 'width:50px;', - 'type' => 'number', + 'title' => __( 'Low Stock Threshold', 'woocommerce' ), + 'desc' => '', + 'id' => 'woocommerce_notify_low_stock_amount', + 'css' => 'width:50px;', + 'type' => 'number', 'custom_attributes' => array( - 'min' => 0, - 'step' => 1 + 'min' => 0, + 'step' => 1 ), - 'default' => '2', - 'autoload' => false + 'default' => '2', + 'autoload' => false ), array( - 'title' => __( 'Out Of Stock Threshold', 'woocommerce' ), - 'desc' => '', - 'id' => 'woocommerce_notify_no_stock_amount', - 'css' => 'width:50px;', - 'type' => 'number', + 'title' => __( 'Out Of Stock Threshold', 'woocommerce' ), + 'desc' => '', + 'id' => 'woocommerce_notify_no_stock_amount', + 'css' => 'width:50px;', + 'type' => 'number', 'custom_attributes' => array( - 'min' => 0, - 'step' => 1 + 'min' => 0, + 'step' => 1 ), - 'default' => '0', - 'autoload' => false + 'default' => '0', + 'autoload' => false ), array( - 'title' => __( 'Out Of Stock Visibility', 'woocommerce' ), - 'desc' => __( 'Hide out of stock items from the catalog', 'woocommerce' ), - 'id' => 'woocommerce_hide_out_of_stock_items', - 'default' => 'no', - 'type' => 'checkbox' + 'title' => __( 'Out Of Stock Visibility', 'woocommerce' ), + 'desc' => __( 'Hide out of stock items from the catalog', 'woocommerce' ), + 'id' => 'woocommerce_hide_out_of_stock_items', + 'default' => 'no', + 'type' => 'checkbox' ), array( - 'title' => __( 'Stock Display Format', 'woocommerce' ), - 'desc' => __( 'This controls how stock is displayed on the frontend.', 'woocommerce' ), - 'id' => 'woocommerce_stock_format', - 'css' => 'min-width:150px;', - 'default' => '', - 'type' => 'select', - 'options' => array( - '' => __( 'Always show stock e.g. "12 in stock"', 'woocommerce' ), - 'low_amount' => __( 'Only show stock when low e.g. "Only 2 left in stock" vs. "In Stock"', 'woocommerce' ), - 'no_amount' => __( 'Never show stock amount', 'woocommerce' ), + 'title' => __( 'Stock Display Format', 'woocommerce' ), + 'desc' => __( 'This controls how stock is displayed on the frontend.', 'woocommerce' ), + 'id' => 'woocommerce_stock_format', + 'css' => 'min-width:150px;', + 'default' => '', + 'type' => 'select', + 'options' => array( + '' => __( 'Always show stock e.g. "12 in stock"', 'woocommerce' ), + 'low_amount' => __( 'Only show stock when low e.g. "Only 2 left in stock" vs. "In Stock"', 'woocommerce' ), + 'no_amount' => __( 'Never show stock amount', 'woocommerce' ), ), - 'desc_tip' => true, + 'desc_tip' => true, ), array( 'type' => 'sectionend', 'id' => 'inventory_options'), @@ -192,65 +193,66 @@ class WC_Settings_Products extends WC_Settings_Page { $woocommerce_prepend_shop_page_to_products_warning = ''; - if ( $shop_page_id > 0 && sizeof(get_pages("child_of=$shop_page_id")) > 0 ) + if ( $shop_page_id > 0 && sizeof(get_pages("child_of=$shop_page_id")) > 0 ) { $woocommerce_prepend_shop_page_to_products_warning = ' ' . __( 'Note: The shop page has children - child pages will not work if you enable this option.', 'woocommerce' ) . ''; + } - return apply_filters( 'woocommerce_product_settings', array( + $settings = apply_filters( 'woocommerce_product_settings', array( - array( 'title' => __( 'Product Listings', 'woocommerce' ), 'type' => 'title','desc' => '', 'id' => 'catalog_options' ), + array( 'title' => __( 'Product Listings', 'woocommerce' ), 'type' => 'title','desc' => '', 'id' => 'catalog_options' ), array( - 'title' => __( 'Product Archive / Shop Page', 'woocommerce' ), - 'desc' => '
    ' . sprintf( __( 'The base page can also be used in your product permalinks.', 'woocommerce' ), admin_url( 'options-permalink.php' ) ), - 'id' => 'woocommerce_shop_page_id', - 'type' => 'single_select_page', - 'default' => '', - 'class' => 'chosen_select_nostd', - 'css' => 'min-width:300px;', - 'desc_tip' => __( 'This sets the base page of your shop - this is where your product archive will be.', 'woocommerce' ), + 'title' => __( 'Product Archive / Shop Page', 'woocommerce' ), + 'desc' => '
    ' . sprintf( __( 'The base page can also be used in your product permalinks.', 'woocommerce' ), admin_url( 'options-permalink.php' ) ), + 'id' => 'woocommerce_shop_page_id', + 'type' => 'single_select_page', + 'default' => '', + 'class' => 'chosen_select_nostd', + 'css' => 'min-width:300px;', + 'desc_tip' => __( 'This sets the base page of your shop - this is where your product archive will be.', 'woocommerce' ), ), array( - 'title' => __( 'Shop Page Display', 'woocommerce' ), - 'desc' => __( 'This controls what is shown on the product archive.', 'woocommerce' ), - 'id' => 'woocommerce_shop_page_display', - 'class' => 'chosen_select', - 'css' => 'min-width:300px;', - 'default' => '', - 'type' => 'select', - 'options' => array( - '' => __( 'Show products', 'woocommerce' ), + 'title' => __( 'Shop Page Display', 'woocommerce' ), + 'desc' => __( 'This controls what is shown on the product archive.', 'woocommerce' ), + 'id' => 'woocommerce_shop_page_display', + 'class' => 'chosen_select', + 'css' => 'min-width:300px;', + 'default' => '', + 'type' => 'select', + 'options' => array( + '' => __( 'Show products', 'woocommerce' ), 'subcategories' => __( 'Show subcategories', 'woocommerce' ), - 'both' => __( 'Show both', 'woocommerce' ), + 'both' => __( 'Show both', 'woocommerce' ), ), - 'desc_tip' => true, + 'desc_tip' => true, ), array( - 'title' => __( 'Default Category Display', 'woocommerce' ), - 'desc' => __( 'This controls what is shown on category archives.', 'woocommerce' ), - 'id' => 'woocommerce_category_archive_display', - 'class' => 'chosen_select', - 'css' => 'min-width:300px;', - 'default' => '', - 'type' => 'select', - 'options' => array( - '' => __( 'Show products', 'woocommerce' ), + 'title' => __( 'Default Category Display', 'woocommerce' ), + 'desc' => __( 'This controls what is shown on category archives.', 'woocommerce' ), + 'id' => 'woocommerce_category_archive_display', + 'class' => 'chosen_select', + 'css' => 'min-width:300px;', + 'default' => '', + 'type' => 'select', + 'options' => array( + '' => __( 'Show products', 'woocommerce' ), 'subcategories' => __( 'Show subcategories', 'woocommerce' ), - 'both' => __( 'Show both', 'woocommerce' ), + 'both' => __( 'Show both', 'woocommerce' ), ), - 'desc_tip' => true, + 'desc_tip' => true, ), array( - 'title' => __( 'Default Product Sorting', 'woocommerce' ), - 'desc' => __( 'This controls the default sort order of the catalog.', 'woocommerce' ), - 'id' => 'woocommerce_default_catalog_orderby', - 'class' => 'chosen_select', - 'css' => 'min-width:300px;', - 'default' => 'title', - 'type' => 'select', - 'options' => apply_filters('woocommerce_default_catalog_orderby_options', array( + 'title' => __( 'Default Product Sorting', 'woocommerce' ), + 'desc' => __( 'This controls the default sort order of the catalog.', 'woocommerce' ), + 'id' => 'woocommerce_default_catalog_orderby', + 'class' => 'chosen_select', + 'css' => 'min-width:300px;', + 'default' => 'title', + 'type' => 'select', + 'options' => apply_filters('woocommerce_default_catalog_orderby_options', array( 'menu_order' => __( 'Default sorting (custom ordering + name)', 'woocommerce' ), 'popularity' => __( 'Popularity (sales)', 'woocommerce' ), 'rating' => __( 'Average Rating', 'woocommerce' ), @@ -258,191 +260,191 @@ class WC_Settings_Products extends WC_Settings_Page { 'price' => __( 'Sort by price (asc)', 'woocommerce' ), 'price-desc' => __( 'Sort by price (desc)', 'woocommerce' ), )), - 'desc_tip' => true, + 'desc_tip' => true, ), array( - 'title' => __( 'Add to cart', 'woocommerce' ), - 'desc' => __( 'Redirect to the cart page after successful addition', 'woocommerce' ), - 'id' => 'woocommerce_cart_redirect_after_add', - 'default' => 'no', - 'type' => 'checkbox', - 'checkboxgroup' => 'start' + 'title' => __( 'Add to cart', 'woocommerce' ), + 'desc' => __( 'Redirect to the cart page after successful addition', 'woocommerce' ), + 'id' => 'woocommerce_cart_redirect_after_add', + 'default' => 'no', + 'type' => 'checkbox', + 'checkboxgroup' => 'start' ), array( - 'desc' => __( 'Enable AJAX add to cart buttons on archives', 'woocommerce' ), - 'id' => 'woocommerce_enable_ajax_add_to_cart', - 'default' => 'yes', - 'type' => 'checkbox', - 'checkboxgroup' => 'end' + 'desc' => __( 'Enable AJAX add to cart buttons on archives', 'woocommerce' ), + 'id' => 'woocommerce_enable_ajax_add_to_cart', + 'default' => 'yes', + 'type' => 'checkbox', + 'checkboxgroup' => 'end' ), array( 'type' => 'sectionend', 'id' => 'catalog_options' ), - array( 'title' => __( 'Product Data', 'woocommerce' ), 'type' => 'title', 'id' => 'product_data_options' ), + array( 'title' => __( 'Product Data', 'woocommerce' ), 'type' => 'title', 'id' => 'product_data_options' ), array( - 'title' => __( 'Weight Unit', 'woocommerce' ), - 'desc' => __( 'This controls what unit you will define weights in.', 'woocommerce' ), - 'id' => 'woocommerce_weight_unit', - 'class' => 'chosen_select', - 'css' => 'min-width:300px;', - 'default' => 'kg', - 'type' => 'select', - 'options' => array( + 'title' => __( 'Weight Unit', 'woocommerce' ), + 'desc' => __( 'This controls what unit you will define weights in.', 'woocommerce' ), + 'id' => 'woocommerce_weight_unit', + 'class' => 'chosen_select', + 'css' => 'min-width:300px;', + 'default' => 'kg', + 'type' => 'select', + 'options' => array( 'kg' => __( 'kg', 'woocommerce' ), 'g' => __( 'g', 'woocommerce' ), 'lbs' => __( 'lbs', 'woocommerce' ), - 'oz' => __( 'oz', 'woocommerce' ), + 'oz' => __( 'oz', 'woocommerce' ), ), - 'desc_tip' => true, + 'desc_tip' => true, ), array( - 'title' => __( 'Dimensions Unit', 'woocommerce' ), - 'desc' => __( 'This controls what unit you will define lengths in.', 'woocommerce' ), - 'id' => 'woocommerce_dimension_unit', - 'class' => 'chosen_select', - 'css' => 'min-width:300px;', - 'default' => 'cm', - 'type' => 'select', - 'options' => array( + 'title' => __( 'Dimensions Unit', 'woocommerce' ), + 'desc' => __( 'This controls what unit you will define lengths in.', 'woocommerce' ), + 'id' => 'woocommerce_dimension_unit', + 'class' => 'chosen_select', + 'css' => 'min-width:300px;', + 'default' => 'cm', + 'type' => 'select', + 'options' => array( 'm' => __( 'm', 'woocommerce' ), 'cm' => __( 'cm', 'woocommerce' ), 'mm' => __( 'mm', 'woocommerce' ), 'in' => __( 'in', 'woocommerce' ), 'yd' => __( 'yd', 'woocommerce' ), ), - 'desc_tip' => true, + 'desc_tip' => true, ), array( - 'title' => __( 'Product Ratings', 'woocommerce' ), - 'desc' => __( 'Enable ratings on reviews', 'woocommerce' ), - 'id' => 'woocommerce_enable_review_rating', - 'default' => 'yes', - 'type' => 'checkbox', - 'checkboxgroup' => 'start', + 'title' => __( 'Product Ratings', 'woocommerce' ), + 'desc' => __( 'Enable ratings on reviews', 'woocommerce' ), + 'id' => 'woocommerce_enable_review_rating', + 'default' => 'yes', + 'type' => 'checkbox', + 'checkboxgroup' => 'start', 'show_if_checked' => 'option', - 'autoload' => false + 'autoload' => false ), array( - 'desc' => __( 'Ratings are required to leave a review', 'woocommerce' ), - 'id' => 'woocommerce_review_rating_required', - 'default' => 'yes', - 'type' => 'checkbox', - 'checkboxgroup' => '', + 'desc' => __( 'Ratings are required to leave a review', 'woocommerce' ), + 'id' => 'woocommerce_review_rating_required', + 'default' => 'yes', + 'type' => 'checkbox', + 'checkboxgroup' => '', 'show_if_checked' => 'yes', - 'autoload' => false + 'autoload' => false ), array( - 'desc' => __( 'Show "verified owner" label for customer reviews', 'woocommerce' ), - 'id' => 'woocommerce_review_rating_verification_label', - 'default' => 'yes', - 'type' => 'checkbox', - 'checkboxgroup' => '', + 'desc' => __( 'Show "verified owner" label for customer reviews', 'woocommerce' ), + 'id' => 'woocommerce_review_rating_verification_label', + 'default' => 'yes', + 'type' => 'checkbox', + 'checkboxgroup' => '', 'show_if_checked' => 'yes', - 'autoload' => false + 'autoload' => false ), array( - 'desc' => __( 'Only allow reviews from "verified owners"', 'woocommerce' ), - 'id' => 'woocommerce_review_rating_verification_required', - 'default' => 'no', - 'type' => 'checkbox', - 'checkboxgroup' => 'end', + 'desc' => __( 'Only allow reviews from "verified owners"', 'woocommerce' ), + 'id' => 'woocommerce_review_rating_verification_required', + 'default' => 'no', + 'type' => 'checkbox', + 'checkboxgroup' => 'end', 'show_if_checked' => 'yes', - 'autoload' => false + 'autoload' => false ), array( 'type' => 'sectionend', 'id' => 'product_data_options' ), - array( 'title' => __( 'Product Image Sizes', 'woocommerce' ), 'type' => 'title','desc' => sprintf(__( 'These settings affect the actual dimensions of images in your catalog - the display on the front-end will still be affected by CSS styles. After changing these settings you may need to regenerate your thumbnails.', 'woocommerce' ), 'http://wordpress.org/extend/plugins/regenerate-thumbnails/'), 'id' => 'image_options' ), + array( 'title' => __( 'Product Image Sizes', 'woocommerce' ), 'type' => 'title','desc' => sprintf(__( 'These settings affect the actual dimensions of images in your catalog - the display on the front-end will still be affected by CSS styles. After changing these settings you may need to regenerate your thumbnails.', 'woocommerce' ), 'http://wordpress.org/extend/plugins/regenerate-thumbnails/'), 'id' => 'image_options' ), array( - 'title' => __( 'Catalog Images', 'woocommerce' ), - 'desc' => __( 'This size is usually used in product listings', 'woocommerce' ), - 'id' => 'shop_catalog_image_size', - 'css' => '', - 'type' => 'image_width', - 'default' => array( - 'width' => '150', - 'height' => '150', - 'crop' => true + 'title' => __( 'Catalog Images', 'woocommerce' ), + 'desc' => __( 'This size is usually used in product listings', 'woocommerce' ), + 'id' => 'shop_catalog_image_size', + 'css' => '', + 'type' => 'image_width', + 'default' => array( + 'width' => '150', + 'height' => '150', + 'crop' => 1 ), - 'desc_tip' => true, + 'desc_tip' => true, ), array( - 'title' => __( 'Single Product Image', 'woocommerce' ), - 'desc' => __( 'This is the size used by the main image on the product page.', 'woocommerce' ), - 'id' => 'shop_single_image_size', - 'css' => '', - 'type' => 'image_width', - 'default' => array( - 'width' => '300', - 'height' => '300', - 'crop' => 1 + 'title' => __( 'Single Product Image', 'woocommerce' ), + 'desc' => __( 'This is the size used by the main image on the product page.', 'woocommerce' ), + 'id' => 'shop_single_image_size', + 'css' => '', + 'type' => 'image_width', + 'default' => array( + 'width' => '300', + 'height' => '300', + 'crop' => 1 ), - 'desc_tip' => true, + 'desc_tip' => true, ), array( - 'title' => __( 'Product Thumbnails', 'woocommerce' ), - 'desc' => __( 'This size is usually used for the gallery of images on the product page.', 'woocommerce' ), - 'id' => 'shop_thumbnail_image_size', - 'css' => '', - 'type' => 'image_width', - 'default' => array( - 'width' => '90', - 'height' => '90', - 'crop' => 1 + 'title' => __( 'Product Thumbnails', 'woocommerce' ), + 'desc' => __( 'This size is usually used for the gallery of images on the product page.', 'woocommerce' ), + 'id' => 'shop_thumbnail_image_size', + 'css' => '', + 'type' => 'image_width', + 'default' => array( + 'width' => '90', + 'height' => '90', + 'crop' => 1 ), - 'desc_tip' => true, + 'desc_tip' => true, ), array( 'type' => 'sectionend', 'id' => 'image_options' ), - array( 'title' => __( 'Downloadable Products', 'woocommerce' ), 'type' => 'title', 'id' => 'digital_download_options' ), + array( 'title' => __( 'Downloadable Products', 'woocommerce' ), 'type' => 'title', 'id' => 'digital_download_options' ), array( - 'title' => __( 'File Download Method', 'woocommerce' ), - 'desc' => __( 'Forcing downloads will keep URLs hidden, but some servers may serve large files unreliably. If supported, X-Accel-Redirect/ X-Sendfile can be used to serve downloads instead (server requires mod_xsendfile).', 'woocommerce' ), - 'id' => 'woocommerce_file_download_method', - 'type' => 'select', - 'class' => 'chosen_select', - 'css' => 'min-width:300px;', - 'default' => 'force', - 'desc_tip' => true, - 'options' => array( - 'force' => __( 'Force Downloads', 'woocommerce' ), + 'title' => __( 'File Download Method', 'woocommerce' ), + 'desc' => __( 'Forcing downloads will keep URLs hidden, but some servers may serve large files unreliably. If supported, X-Accel-Redirect/ X-Sendfile can be used to serve downloads instead (server requires mod_xsendfile).', 'woocommerce' ), + 'id' => 'woocommerce_file_download_method', + 'type' => 'select', + 'class' => 'chosen_select', + 'css' => 'min-width:300px;', + 'default' => 'force', + 'desc_tip' => true, + 'options' => array( + 'force' => __( 'Force Downloads', 'woocommerce' ), 'xsendfile' => __( 'X-Accel-Redirect/X-Sendfile', 'woocommerce' ), 'redirect' => __( 'Redirect only', 'woocommerce' ), ), + 'autoload' => false + ), + + array( + 'title' => __( 'Access Restriction', 'woocommerce' ), + 'desc' => __( 'Downloads require login', 'woocommerce' ), + 'id' => 'woocommerce_downloads_require_login', + 'type' => 'checkbox', + 'default' => 'no', + 'desc_tip' => __( 'This setting does not apply to guest purchases.', 'woocommerce' ), + 'checkboxgroup' => 'start', 'autoload' => false ), array( - 'title' => __( 'Access Restriction', 'woocommerce' ), - 'desc' => __( 'Downloads require login', 'woocommerce' ), - 'id' => 'woocommerce_downloads_require_login', - 'type' => 'checkbox', - 'default' => 'no', - 'desc_tip' => __( 'This setting does not apply to guest purchases.', 'woocommerce' ), - 'checkboxgroup' => 'start', - 'autoload' => false - ), - - array( - 'desc' => __( 'Grant access to downloadable products after payment', 'woocommerce' ), - 'id' => 'woocommerce_downloads_grant_access_after_payment', - 'type' => 'checkbox', - 'default' => 'yes', - 'desc_tip' => __( 'Enable this option to grant access to downloads when orders are "processing", rather than "completed".', 'woocommerce' ), - 'checkboxgroup' => 'end', + 'desc' => __( 'Grant access to downloadable products after payment', 'woocommerce' ), + 'id' => 'woocommerce_downloads_grant_access_after_payment', + 'type' => 'checkbox', + 'default' => 'yes', + 'desc_tip' => __( 'Enable this option to grant access to downloads when orders are "processing", rather than "completed".', 'woocommerce' ), + 'checkboxgroup' => 'end', 'autoload' => false ), @@ -450,9 +452,11 @@ class WC_Settings_Products extends WC_Settings_Page { )); } + + return apply_filters( 'woocommerce_get_settings_' . $this->id, $settings, $current_section ); } } endif; -return new WC_Settings_Products(); \ No newline at end of file +return new WC_Settings_Products(); diff --git a/includes/admin/settings/class-wc-settings-shipping.php b/includes/admin/settings/class-wc-settings-shipping.php index da3e106989e..4ea44fb2b33 100644 --- a/includes/admin/settings/class-wc-settings-shipping.php +++ b/includes/admin/settings/class-wc-settings-shipping.php @@ -2,9 +2,9 @@ /** * WooCommerce Shipping Settings * - * @author WooThemes - * @category Admin - * @package WooCommerce/Admin + * @author WooThemes + * @category Admin + * @package WooCommerce/Admin * @version 2.1.0 */ @@ -37,8 +37,9 @@ class WC_Settings_Shipping extends WC_Settings_Page { * @return array */ public function get_sections() { + $sections = array( - '' => __( 'Shipping Options', 'woocommerce' ) + '' => __( 'Shipping Options', 'woocommerce' ) ); // Load shipping methods so we can show any global options they may have @@ -53,7 +54,7 @@ class WC_Settings_Shipping extends WC_Settings_Page { $sections[ strtolower( get_class( $method ) ) ] = esc_html( $title ); } - return $sections; + return apply_filters( 'woocommerce_get_sections_' . $this->id, $sections ); } /** @@ -62,81 +63,77 @@ class WC_Settings_Shipping extends WC_Settings_Page { * @return array */ public function get_settings() { - return apply_filters('woocommerce_shipping_settings', array( + + $settings = apply_filters('woocommerce_shipping_settings', array( array( 'title' => __( 'Shipping Options', 'woocommerce' ), 'type' => 'title', 'id' => 'shipping_options' ), array( - 'title' => __( 'Shipping Calculations', 'woocommerce' ), - 'desc' => __( 'Enable shipping', 'woocommerce' ), - 'id' => 'woocommerce_calc_shipping', - 'default' => 'yes', - 'type' => 'checkbox', - 'checkboxgroup' => 'start' + 'title' => __( 'Shipping Calculations', 'woocommerce' ), + 'desc' => __( 'Enable shipping', 'woocommerce' ), + 'id' => 'woocommerce_calc_shipping', + 'default' => 'yes', + 'type' => 'checkbox', + 'checkboxgroup' => 'start' ), array( - 'desc' => __( 'Enable the shipping calculator on the cart page', 'woocommerce' ), - 'id' => 'woocommerce_enable_shipping_calc', - 'default' => 'yes', - 'type' => 'checkbox', - 'checkboxgroup' => '', + 'desc' => __( 'Enable the shipping calculator on the cart page', 'woocommerce' ), + 'id' => 'woocommerce_enable_shipping_calc', + 'default' => 'yes', + 'type' => 'checkbox', + 'checkboxgroup' => '', 'autoload' => false ), array( - 'desc' => __( 'Hide shipping costs until an address is entered', 'woocommerce' ), - 'id' => 'woocommerce_shipping_cost_requires_address', - 'default' => 'no', - 'type' => 'checkbox', - 'checkboxgroup' => 'end', + 'desc' => __( 'Hide shipping costs until an address is entered', 'woocommerce' ), + 'id' => 'woocommerce_shipping_cost_requires_address', + 'default' => 'no', + 'type' => 'checkbox', + 'checkboxgroup' => 'end', 'autoload' => false ), array( - 'title' => __( 'Shipping Display Mode', 'woocommerce' ), - 'desc' => __( 'This controls how multiple shipping methods are displayed on the frontend.', 'woocommerce' ), - 'id' => 'woocommerce_shipping_method_format', - 'default' => '', - 'type' => 'radio', - 'options' => array( - '' => __( 'Display shipping methods with "radio" buttons', 'woocommerce' ), - 'select' => __( 'Display shipping methods in a dropdown', 'woocommerce' ), + 'title' => __( 'Shipping Display Mode', 'woocommerce' ), + 'desc' => __( 'This controls how multiple shipping methods are displayed on the frontend.', 'woocommerce' ), + 'id' => 'woocommerce_shipping_method_format', + 'default' => '', + 'type' => 'radio', + 'options' => array( + '' => __( 'Display shipping methods with "radio" buttons', 'woocommerce' ), + 'select' => __( 'Display shipping methods in a dropdown', 'woocommerce' ), ), - 'desc_tip' => true, - 'autoload' => false + 'desc_tip' => true, + 'autoload' => false ), array( - 'title' => __( 'Shipping Destination', 'woocommerce' ), - 'desc' => __( 'Ship to billing address by default', 'woocommerce' ), - 'id' => 'woocommerce_ship_to_billing', - 'default' => 'yes', - 'type' => 'checkbox', - 'checkboxgroup' => 'start', + 'title' => __( 'Shipping Destination', 'woocommerce' ), + 'desc' => __( 'This controls which shipping address is used by default.', 'woocommerce' ), + 'id' => 'woocommerce_ship_to_destination', + 'default' => 'shipping', + 'type' => 'radio', + 'options' => array( + 'shipping' => __( 'Default to shipping address', 'woocommerce' ), + 'billing' => __( 'Default to billing address', 'woocommerce' ), + 'billing_only' => __( 'Only ship to the users billing address', 'woocommerce' ), + ), 'autoload' => false, + 'desc_tip' => true, 'show_if_checked' => 'option', ), array( - 'desc' => __( 'Only ship to the users billing address', 'woocommerce' ), - 'id' => 'woocommerce_ship_to_billing_address_only', - 'default' => 'no', - 'type' => 'checkbox', - 'checkboxgroup' => 'end', - 'autoload' => false, - 'show_if_checked' => 'yes', - ), - - array( - 'title' => __( 'Restrict shipping to Location(s)', 'woocommerce' ), - 'desc' => sprintf( __( 'Choose which countries you want to ship to, or choose to ship to all locations you sell to.', 'woocommerce' ), admin_url( 'admin.php?page=wc-settings&tab=general' ) ), - 'id' => 'woocommerce_ship_to_countries', - 'default' => '', - 'type' => 'select', - 'class' => 'chosen_select', - 'desc_tip' => false, - 'options' => array( + 'title' => __( 'Restrict shipping to Location(s)', 'woocommerce' ), + 'desc' => sprintf( __( 'Choose which countries you want to ship to, or choose to ship to all locations you sell to.', 'woocommerce' ), admin_url( 'admin.php?page=wc-settings&tab=general' ) ), + 'id' => 'woocommerce_ship_to_countries', + 'default' => '', + 'type' => 'select', + 'class' => 'chosen_select', + 'desc_tip' => false, + 'options' => array( '' => __( 'Ship to all countries you sell to', 'woocommerce' ), 'all' => __( 'Ship to all countries', 'woocommerce' ), 'specific' => __( 'Ship to specific countries only', 'woocommerce' ) @@ -144,21 +141,23 @@ class WC_Settings_Shipping extends WC_Settings_Page { ), array( - 'title' => __( 'Specific Countries', 'woocommerce' ), - 'desc' => '', - 'id' => 'woocommerce_specific_ship_to_countries', - 'css' => '', - 'default' => '', - 'type' => 'multi_select_countries' + 'title' => __( 'Specific Countries', 'woocommerce' ), + 'desc' => '', + 'id' => 'woocommerce_specific_ship_to_countries', + 'css' => '', + 'default' => '', + 'type' => 'multi_select_countries' ), array( - 'type' => 'shipping_methods', + 'type' => 'shipping_methods', ), array( 'type' => 'sectionend', 'id' => 'shipping_options' ), - )); // End shipping settings + ) ); + + return apply_filters( 'woocommerce_get_settings_' . $this->id, $settings ); } /** @@ -171,7 +170,9 @@ class WC_Settings_Shipping extends WC_Settings_Page { $shipping_methods = WC()->shipping->load_shipping_methods(); if ( $current_section ) { + foreach ( $shipping_methods as $method ) { + if ( strtolower( get_class( $method ) ) == strtolower( $current_section ) && $method->has_settings() ) { $method->admin_options(); break; @@ -186,16 +187,14 @@ class WC_Settings_Shipping extends WC_Settings_Page { /** * Output shipping method settings. - * - * @access public - * @return void */ public function shipping_methods_setting() { + $default_shipping_method = esc_attr( get_option('woocommerce_default_shipping_method') ); ?> - + @@ -206,44 +205,49 @@ class WC_Settings_Shipping extends WC_Settings_Page { + + shipping->load_shipping_methods() as $key => $method ) { + echo ' + + + + + + '; + } + ?> + - + - - shipping->load_shipping_methods() as $key => $method ) { - echo ' - - - - - - '; - } - ?> -
     
    + id, false ) . ' /> + + + ' . $method->get_title() . ' + + ' . $method->id . ' + '; + + if ( $method->enabled == 'yes' ) { + echo '' . __ ( 'Enabled', 'woocommerce' ) . ''; + } else { + echo '-'; + } + + echo ''; + + if ( $method->has_settings ) { + echo '' . __( 'Settings', 'woocommerce' ) . ''; + } + + echo '
    /> [?]
    - id, false ) . ' /> - - - ' . $method->get_title() . ' - - ' . $method->id . ' - '; - - if ( $method->enabled == 'yes' ) - echo '' . __ ( 'Enabled', 'woocommerce' ) . ''; - else - echo '-'; - - echo ' - ' . __( 'Settings', 'woocommerce' ) . ' -
    diff --git a/includes/admin/settings/class-wc-settings-tax.php b/includes/admin/settings/class-wc-settings-tax.php index 830052c4104..fa7d04313a7 100644 --- a/includes/admin/settings/class-wc-settings-tax.php +++ b/includes/admin/settings/class-wc-settings-tax.php @@ -2,9 +2,9 @@ /** * WooCommerce Tax Settings * - * @author WooThemes - * @category Admin - * @package WooCommerce/Admin + * @author WooThemes + * @category Admin + * @package WooCommerce/Admin * @version 2.1.0 */ @@ -36,6 +36,7 @@ class WC_Settings_Tax extends WC_Settings_Page { * @return array */ public function get_sections() { + $sections = array( '' => __( 'Tax Options', 'woocommerce' ), 'standard' => __( 'Standard Rates', 'woocommerce' ) @@ -44,11 +45,13 @@ class WC_Settings_Tax extends WC_Settings_Page { // Get tax classes and display as links $tax_classes = array_filter( array_map( 'trim', explode( "\n", get_option('woocommerce_tax_classes' ) ) ) ); - if ( $tax_classes ) - foreach ( $tax_classes as $class ) + if ( $tax_classes ) { + foreach ( $tax_classes as $class ) { $sections[ sanitize_title( $class ) ] = sprintf( __( '%s Rates', 'woocommerce' ), $class ); + } + } - return $sections; + return apply_filters( 'woocommerce_get_sections_' . $this->id, $sections ); } /** @@ -57,43 +60,45 @@ class WC_Settings_Tax extends WC_Settings_Page { * @return array */ public function get_settings() { - $tax_classes = array_filter( array_map( 'trim', explode( "\n", get_option( 'woocommerce_tax_classes' ) ) ) ); + $tax_classes = array_filter( array_map( 'trim', explode( "\n", get_option( 'woocommerce_tax_classes' ) ) ) ); $classes_options = array(); - if ( $tax_classes ) - foreach ( $tax_classes as $class ) + if ( $tax_classes ) { + foreach ( $tax_classes as $class ) { $classes_options[ sanitize_title( $class ) ] = esc_html( $class ); + } + } - return apply_filters('woocommerce_tax_settings', array( + $settings = apply_filters('woocommerce_tax_settings', array( - array( 'title' => __( 'Tax Options', 'woocommerce' ), 'type' => 'title','desc' => '', 'id' => 'tax_options' ), + array( 'title' => __( 'Tax Options', 'woocommerce' ), 'type' => 'title','desc' => '', 'id' => 'tax_options' ), array( - 'title' => __( 'Enable Taxes', 'woocommerce' ), - 'desc' => __( 'Enable taxes and tax calculations', 'woocommerce' ), - 'id' => 'woocommerce_calc_taxes', - 'default' => 'no', - 'type' => 'checkbox' + 'title' => __( 'Enable Taxes', 'woocommerce' ), + 'desc' => __( 'Enable taxes and tax calculations', 'woocommerce' ), + 'id' => 'woocommerce_calc_taxes', + 'default' => 'no', + 'type' => 'checkbox' ), array( - 'title' => __( 'Prices Entered With Tax', 'woocommerce' ), - 'id' => 'woocommerce_prices_include_tax', - 'default' => 'no', - 'type' => 'radio', - 'desc_tip' => __( 'This option is important as it will affect how you input prices. Changing it will not update existing products.', 'woocommerce' ), - 'options' => array( + 'title' => __( 'Prices Entered With Tax', 'woocommerce' ), + 'id' => 'woocommerce_prices_include_tax', + 'default' => 'no', + 'type' => 'radio', + 'desc_tip' => __( 'This option is important as it will affect how you input prices. Changing it will not update existing products.', 'woocommerce' ), + 'options' => array( 'yes' => __( 'Yes, I will enter prices inclusive of tax', 'woocommerce' ), - 'no' => __( 'No, I will enter prices exclusive of tax', 'woocommerce' ) + 'no' => __( 'No, I will enter prices exclusive of tax', 'woocommerce' ) ), ), array( - 'title' => __( 'Calculate Tax Based On:', 'woocommerce' ), - 'id' => 'woocommerce_tax_based_on', - 'desc_tip' => __( 'This option determines which address is used to calculate tax.', 'woocommerce' ), - 'default' => 'shipping', - 'type' => 'select', - 'options' => array( + 'title' => __( 'Calculate Tax Based On:', 'woocommerce' ), + 'id' => 'woocommerce_tax_based_on', + 'desc_tip' => __( 'This option determines which address is used to calculate tax.', 'woocommerce' ), + 'default' => 'shipping', + 'type' => 'select', + 'options' => array( 'shipping' => __( 'Customer shipping address', 'woocommerce' ), 'billing' => __( 'Customer billing address', 'woocommerce' ), 'base' => __( 'Shop base address', 'woocommerce' ) @@ -101,43 +106,43 @@ class WC_Settings_Tax extends WC_Settings_Page { ), array( - 'title' => __( 'Default Customer Address:', 'woocommerce' ), - 'id' => 'woocommerce_default_customer_address', - 'desc_tip' => __( 'This option determines the customers default address (before they input their own).', 'woocommerce' ), - 'default' => 'base', - 'type' => 'select', - 'options' => array( + 'title' => __( 'Default Customer Address:', 'woocommerce' ), + 'id' => 'woocommerce_default_customer_address', + 'desc_tip' => __( 'This option determines the customers default address (before they input their own).', 'woocommerce' ), + 'default' => 'base', + 'type' => 'select', + 'options' => array( '' => __( 'No address', 'woocommerce' ), 'base' => __( 'Shop base address', 'woocommerce' ), ), ), array( - 'title' => __( 'Shipping Tax Class:', 'woocommerce' ), - 'desc' => __( 'Optionally control which tax class shipping gets, or leave it so shipping tax is based on the cart items themselves.', 'woocommerce' ), - 'id' => 'woocommerce_shipping_tax_class', - 'css' => 'min-width:150px;', - 'default' => 'title', - 'type' => 'select', - 'options' => array( '' => __( 'Shipping tax class based on cart items', 'woocommerce' ), 'standard' => __( 'Standard', 'woocommerce' ) ) + $classes_options, - 'desc_tip' => true, + 'title' => __( 'Shipping Tax Class:', 'woocommerce' ), + 'desc' => __( 'Optionally control which tax class shipping gets, or leave it so shipping tax is based on the cart items themselves.', 'woocommerce' ), + 'id' => 'woocommerce_shipping_tax_class', + 'css' => 'min-width:150px;', + 'default' => 'title', + 'type' => 'select', + 'options' => array( '' => __( 'Shipping tax class based on cart items', 'woocommerce' ), 'standard' => __( 'Standard', 'woocommerce' ) ) + $classes_options, + 'desc_tip' => true, ), array( - 'title' => __( 'Rounding', 'woocommerce' ), - 'desc' => __( 'Round tax at subtotal level, instead of rounding per line', 'woocommerce' ), - 'id' => 'woocommerce_tax_round_at_subtotal', - 'default' => 'no', - 'type' => 'checkbox', + 'title' => __( 'Rounding', 'woocommerce' ), + 'desc' => __( 'Round tax at subtotal level, instead of rounding per line', 'woocommerce' ), + 'id' => 'woocommerce_tax_round_at_subtotal', + 'default' => 'no', + 'type' => 'checkbox', ), array( - 'title' => __( 'Additional Tax Classes', 'woocommerce' ), - 'desc' => __( 'List additonal tax classes below (1 per line). This is in addition to the default Standard Rate. Tax classes can be assigned to products.', 'woocommerce' ), - 'id' => 'woocommerce_tax_classes', - 'css' => 'width:100%; height: 65px;', - 'type' => 'textarea', - 'default' => sprintf( __( 'Reduced Rate%sZero Rate', 'woocommerce' ), PHP_EOL ) + 'title' => __( 'Additional Tax Classes', 'woocommerce' ), + 'desc' => __( 'List additional tax classes below (1 per line). This is in addition to the default Standard Rate. Tax classes can be assigned to products.', 'woocommerce' ), + 'id' => 'woocommerce_tax_classes', + 'css' => 'width:100%; height: 65px;', + 'type' => 'textarea', + 'default' => sprintf( __( 'Reduced Rate%sZero Rate', 'woocommerce' ), PHP_EOL ) ), array( @@ -156,7 +161,7 @@ class WC_Settings_Tax extends WC_Settings_Page { 'id' => 'woocommerce_price_display_suffix', 'default' => '', 'type' => 'text', - 'desc' => __( 'Define text to show after your product prices. This could be, for example, "inc. Vat" to explain your pricing. You can also have prices substituted here using one of the following: {price_including_tax}, {price_excluding_tax}.', 'woocommerce' ), + 'desc' => __( 'Define text to show after your product prices. This could be, for example, "inc. Vat" to explain your pricing. You can also have prices substituted here using one of the following: {price_including_tax}, {price_excluding_tax}.', 'woocommerce' ), ), array( @@ -180,12 +185,14 @@ class WC_Settings_Tax extends WC_Settings_Page { 'single' => __( 'As a single total', 'woocommerce' ), 'itemized' => __( 'Itemized', 'woocommerce' ), ), - 'autoload' => false + 'autoload' => false ), array( 'type' => 'sectionend', 'id' => 'tax_options' ), - )); // End tax settings + ) ); + + return apply_filters( 'woocommerce_get_settings_' . $this->id, $settings ); } /** @@ -197,8 +204,8 @@ class WC_Settings_Tax extends WC_Settings_Page { $tax_classes = array_filter( array_map( 'trim', explode( "\n", get_option('woocommerce_tax_classes' ) ) ) ); if ( $current_section == 'standard' || in_array( $current_section, array_map( 'sanitize_title', $tax_classes ) ) ) { - $this->output_tax_rates(); - } else { + $this->output_tax_rates(); + } else { $settings = $this->get_settings(); WC_Admin_Settings::output_fields( $settings ); @@ -209,7 +216,7 @@ class WC_Settings_Tax extends WC_Settings_Page { * Save settings */ public function save() { - global $current_section; + global $current_section, $wpdb; if ( ! $current_section ) { @@ -221,22 +228,26 @@ class WC_Settings_Tax extends WC_Settings_Page { $this->save_tax_rates(); } + + $wpdb->query( "DELETE FROM `$wpdb->options` WHERE `option_name` LIKE ('_transient_wc_tax_rates_%') OR `option_name` LIKE ('_transient_timeout_wc_tax_rates_%')" ); } /** * Output tax rate tables */ public function output_tax_rates() { - global $woocommerce, $current_section, $wpdb; + global $current_section, $wpdb; $page = ! empty( $_GET['p'] ) ? absint( $_GET['p'] ) : 1; $limit = 100; $tax_classes = array_filter( array_map( 'trim', explode( "\n", get_option('woocommerce_tax_classes' ) ) ) ); $current_class = ''; - foreach( $tax_classes as $class ) - if ( sanitize_title( $class ) == $current_section ) + foreach( $tax_classes as $class ) { + if ( sanitize_title( $class ) == $current_section ) { $current_class = $class; + } + } ?>

    See here for available alpha-2 country codes.', 'woocommerce' ), 'http://en.wikipedia.org/wiki/ISO_3166-1#Current_codes' ); ?>

    @@ -265,30 +276,6 @@ class WC_Settings_Tax extends WC_Settings_Page { - - - - - - - - - - - - - get_results( $wpdb->prepare( @@ -304,11 +291,11 @@ class WC_Settings_Tax extends WC_Settings_Page { foreach ( $rates as $rate ) { ?> - + - + @@ -343,17 +330,41 @@ class WC_Settings_Tax extends WC_Settings_Page { - tax_rate_compound, '1' ); ?> /> - + tax_rate_compound, '1' ); ?> /> + - - tax_rate_shipping, '1' ); ?> /> - + + tax_rate_shipping, '1' ); ?> /> + + + + + + + + + + + + + + insert( - $wpdb->prefix . "woocommerce_tax_rates", - array( - 'tax_rate_country' => $country, - 'tax_rate_state' => $state, - 'tax_rate' => $rate, - 'tax_rate_name' => $name, - 'tax_rate_priority' => $priority, - 'tax_rate_compound' => $compound, - 'tax_rate_shipping' => $shipping, - 'tax_rate_order' => $i, - 'tax_rate_class' => sanitize_title( $current_class ) - ) + $_tax_rate = array( + 'tax_rate_country' => $country, + 'tax_rate_state' => $state, + 'tax_rate' => $rate, + 'tax_rate_name' => $name, + 'tax_rate_priority' => $priority, + 'tax_rate_compound' => $compound, + 'tax_rate_shipping' => $shipping, + 'tax_rate_order' => $i, + 'tax_rate_class' => sanitize_title( $current_class ) ); + $wpdb->insert( $wpdb->prefix . 'woocommerce_tax_rates', $_tax_rate ); + $tax_rate_id = $wpdb->insert_id; + do_action( 'woocommerce_tax_rate_added', $tax_rate_id, $_tax_rate ); + if ( ! empty( $postcode ) ) { $postcodes = explode( ';', $postcode ); $postcodes = array_map( 'strtoupper', array_map( 'wc_clean', $postcodes ) ); $postcode_query = array(); - foreach( $postcodes as $postcode ) + foreach( $postcodes as $postcode ) { if ( strstr( $postcode, '-' ) ) { $postcode_parts = explode( '-', $postcode ); @@ -587,7 +604,7 @@ class WC_Settings_Tax extends WC_Settings_Page { if ( strlen( $i ) < strlen( $postcode_parts[0] ) ) $i = str_pad( $i, strlen( $postcode_parts[0] ), "0", STR_PAD_LEFT ); - + $postcode_query[] = "( '" . esc_sql( $i ) . "', $tax_rate_id, 'postcode' )"; } } @@ -595,13 +612,16 @@ class WC_Settings_Tax extends WC_Settings_Page { if ( $postcode ) $postcode_query[] = "( '" . esc_sql( $postcode ) . "', $tax_rate_id, 'postcode' )"; } + } $wpdb->query( "INSERT INTO {$wpdb->prefix}woocommerce_tax_rate_locations ( location_code, tax_rate_id, location_type ) VALUES " . implode( ',', $postcode_query ) ); } if ( ! empty( $city ) ) { + $cities = explode( ';', $city ); $cities = array_map( 'strtoupper', array_map( 'wc_clean', $cities ) ); + foreach( $cities as $city ) { $wpdb->insert( $wpdb->prefix . "woocommerce_tax_rate_locations", @@ -623,47 +643,57 @@ class WC_Settings_Tax extends WC_Settings_Page { $tax_rate_id = absint( $key ); if ( $_POST['remove_tax_rate'][ $key ] == 1 ) { + do_action( 'woocommerce_tax_rate_deleted', $tax_rate_id ); + $wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->prefix}woocommerce_tax_rate_locations WHERE tax_rate_id = %d;", $tax_rate_id ) ); $wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->prefix}woocommerce_tax_rates WHERE tax_rate_id = %d;", $tax_rate_id ) ); + continue; } // Sanitize + format $country = strtoupper( wc_clean( $tax_rate_country[ $key ] ) ); $state = strtoupper( wc_clean( $tax_rate_state[ $key ] ) ); - $rate = number_format( wc_clean( $tax_rate[ $key ] ), 4, '.', '' ); + $rate = number_format( (double) wc_clean( $tax_rate[ $key ] ), 4, '.', '' ); $name = wc_clean( $tax_rate_name[ $key ] ); $priority = absint( wc_clean( $tax_rate_priority[ $key ] ) ); $compound = isset( $tax_rate_compound[ $key ] ) ? 1 : 0; $shipping = isset( $tax_rate_shipping[ $key ] ) ? 1 : 0; - if ( ! $name ) + if ( ! $name ) { $name = __( 'Tax', 'woocommerce' ); + } - if ( $country == '*' ) + if ( $country == '*' ) { $country = ''; + } - if ( $state == '*' ) + if ( $state == '*' ) { $state = ''; + } + + $_tax_rate = array( + 'tax_rate_country' => $country, + 'tax_rate_state' => $state, + 'tax_rate' => $rate, + 'tax_rate_name' => $name, + 'tax_rate_priority' => $priority, + 'tax_rate_compound' => $compound, + 'tax_rate_shipping' => $shipping, + 'tax_rate_order' => $i, + 'tax_rate_class' => sanitize_title( $current_class ) + ); $wpdb->update( $wpdb->prefix . "woocommerce_tax_rates", + $_tax_rate, array( - 'tax_rate_country' => $country, - 'tax_rate_state' => $state, - 'tax_rate' => $rate, - 'tax_rate_name' => $name, - 'tax_rate_priority' => $priority, - 'tax_rate_compound' => $compound, - 'tax_rate_shipping' => $shipping, - 'tax_rate_order' => $i, - 'tax_rate_class' => sanitize_title( $current_class ) - ), - array( - 'tax_rate_id' => $tax_rate_id + 'tax_rate_id' => $tax_rate_id ) ); + do_action( 'woocommerce_tax_rate_updated', $tax_rate_id, $_tax_rate ); + if ( isset( $tax_rate_postcode[ $key ] ) ) { // Delete old $wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->prefix}woocommerce_tax_rate_locations WHERE tax_rate_id = %d AND location_type = 'postcode';", $tax_rate_id ) ); @@ -675,7 +705,7 @@ class WC_Settings_Tax extends WC_Settings_Page { $postcode_query = array(); - foreach( $postcodes as $postcode ) + foreach( $postcodes as $postcode ) { if ( strstr( $postcode, '-' ) ) { $postcode_parts = explode( '-', $postcode ); @@ -686,7 +716,7 @@ class WC_Settings_Tax extends WC_Settings_Page { if ( strlen( $i ) < strlen( $postcode_parts[0] ) ) $i = str_pad( $i, strlen( $postcode_parts[0] ), "0", STR_PAD_LEFT ); - + $postcode_query[] = "( '" . esc_sql( $i ) . "', $tax_rate_id, 'postcode' )"; } } @@ -694,12 +724,16 @@ class WC_Settings_Tax extends WC_Settings_Page { if ( $postcode ) $postcode_query[] = "( '" . esc_sql( $postcode ) . "', $tax_rate_id, 'postcode' )"; } + } - $wpdb->query( "INSERT INTO {$wpdb->prefix}woocommerce_tax_rate_locations ( location_code, tax_rate_id, location_type ) VALUES " . implode( ',', $postcode_query ) ); + if ( !empty( $postcode_query ) ) { + $wpdb->query( "INSERT INTO {$wpdb->prefix}woocommerce_tax_rate_locations ( location_code, tax_rate_id, location_type ) VALUES " . implode( ',', $postcode_query ) ); + } } if ( isset( $tax_rate_city[ $key ] ) ) { + // Delete old $wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->prefix}woocommerce_tax_rate_locations WHERE tax_rate_id = %d AND location_type = 'city';", $tax_rate_id ) ); @@ -707,6 +741,7 @@ class WC_Settings_Tax extends WC_Settings_Page { $city = wc_clean( $tax_rate_city[ $key ] ); $cities = explode( ';', $city ); $cities = array_map( 'strtoupper', array_map( 'wc_clean', $cities ) ); + foreach( $cities as $city ) { if ( $city ) { $wpdb->insert( @@ -730,4 +765,4 @@ class WC_Settings_Tax extends WC_Settings_Page { endif; -return new WC_Settings_Tax(); \ No newline at end of file +return new WC_Settings_Tax(); diff --git a/includes/admin/views/html-admin-page-addons.php b/includes/admin/views/html-admin-page-addons.php index 28f6ed241b5..67354d79f1a 100644 --- a/includes/admin/views/html-admin-page-addons.php +++ b/includes/admin/views/html-admin-page-addons.php @@ -1,3 +1,14 @@ + +

    @@ -5,26 +16,78 @@

    -
      + +
        + __( 'Popular', 'woocommerce' ), + 'payment-gateways' => __( 'Gateways', 'woocommerce' ), + 'shipping-methods' => __( 'Shipping', 'woocommerce' ), + 'import-export-extensions' => __( 'Import/export', 'woocommerce' ), + 'product-extensions' => __( 'Products', 'woocommerce' ), + 'marketing-extensions' => __( 'Marketing', 'woocommerce' ), + 'accounting-extensions' => __( 'Accounting', 'woocommerce' ), + 'free-extensions' => __( 'Free', 'woocommerce' ), + 'third-party-extensions' => __( 'Third-party', 'woocommerce' ), + ); + + $i = 0; + + foreach ( $links as $link => $name ) { + $i ++; + ?>
      • +
      +
      +
        __( 'Popular', 'woocommerce' ), - 'payment-gateways' => __( 'Gateways', 'woocommerce' ), - 'shipping-methods' => __( 'Shipping', 'woocommerce' ), - 'import-export-extensions' => __( 'Import/export', 'woocommerce' ), - 'product-extensions' => __( 'Products', 'woocommerce' ), - 'marketing-extensions' => __( 'Marketing', 'woocommerce' ), - 'free-extensions' => __( 'Free', 'woocommerce' ) - ); + switch ( $view ) { + case '': + $addons = $addons->popular; + break; + case 'payment-gateways': + $addons = $addons->{'payment-gateways'}; + break; + case 'shipping-methods': + $addons = $addons->{'shipping-methods'}; + break; + case 'import-export-extensions': + $addons = $addons->{'import-export'}; + break; + case 'product-extensions': + $addons = $addons->product; + break; + case 'marketing-extensions': + $addons = $addons->marketing; + break; + case 'accounting-extensions': + $addons = $addons->accounting; + break; + case 'free-extensions': + $addons = $addons->free; + break; + case 'third-party-extensions': + $addons = $addons->{'third-party'}; + break; + } - $i = 0; - - foreach ( $links as $link => $name ) { - $i ++; - ?>
      • '; + echo ''; + if ( ! empty( $addon->image ) ) { + echo ''; + } else { + echo '

        ' . $addon->title . '

        '; + } + echo '' . $addon->price . ''; + echo '

        ' . $addon->excerpt . '

        '; + echo '
        '; + echo ''; } ?> -
      -
      - -
    \ No newline at end of file + + +

    WooCommerce Extensions Catalog', 'woocommerce' ), 'http://www.woothemes.com/product-category/woocommerce-extensions/' ); ?>

    + + diff --git a/includes/admin/views/html-admin-page-reports.php b/includes/admin/views/html-admin-page-reports.php index da2259054cd..9d3cc56b397 100644 --- a/includes/admin/views/html-admin-page-reports.php +++ b/includes/admin/views/html-admin-page-reports.php @@ -1,3 +1,14 @@ + +